/home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/Compressed/ruby27.zip
PK7H[�`[�		bin/rakenuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'rake' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('rake', 'rake', version)
else
gem "rake", version
load Gem.bin_path("rake", "rake", version)
end
PK7H[/���RRbin/raccnuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'racc' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

if ARGV.first
  str = ARGV.first
  str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
  if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
    version = $1
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('racc', 'racc', version)
else
gem "racc", version
load Gem.bin_path("racc", "racc", version)
end
PK7H[�
bin/rackupnuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'rackup' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('rackup', 'rackup', version)
else
gem "rackup", version
load Gem.bin_path("rackup", "rackup", version)
end
PK7H[[SB7bin/rinuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'rdoc' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('rdoc', 'ri', version)
else
gem "rdoc", version
load Gem.bin_path("rdoc", "ri", version)
end
PK7H[��P		bin/rdocnuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'rdoc' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('rdoc', 'rdoc', version)
else
gem "rdoc", version
load Gem.bin_path("rdoc", "rdoc", version)
end
PK7H[K��))bin/gemnuȯ��#!/opt/alt/ruby27/bin/ruby
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'
require 'rubygems/gem_runner'
require 'rubygems/exceptions'

required_version = Gem::Requirement.new ">= 1.8.7"

unless required_version.satisfied_by? Gem.ruby_version then
  abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}"
end

args = ARGV.clone

begin
  Gem::GemRunner.new.run args
rescue Gem::SystemExitException => e
  exit e.exit_code
end

PK7H[�����bin/erbnuȯ��#!/opt/alt/ruby27/bin/ruby
# Tiny eRuby --- ERB2
# Copyright (c) 1999-2000,2002 Masatoshi SEKI
# You can redistribute it and/or modify it under the same terms as Ruby.

require 'erb'

class ERB
  module Main
    def ARGV.switch
      return nil if self.empty?
      arg = self.shift
      return nil if arg == '--'
      case arg
      when /\A-(.)(.*)/
        if $1 == '-'
          arg, @maybe_arg = arg.split(/=/, 2)
          return arg
        end
        raise 'unknown switch "-"' if $2[0] == ?- and $1 != 'T'
        if $2.size > 0
          self.unshift "-#{$2}"
          @maybe_arg = $2
        else
          @maybe_arg = nil
        end
        "-#{$1}"
      when /\A(\w+)=/
        arg
      else
        self.unshift arg
        nil
      end
    end

    def ARGV.req_arg
      (@maybe_arg || self.shift || raise('missing argument')).tap {
        @maybe_arg = nil
      }
    end

    def trim_mode_opt(trim_mode, disable_percent)
      return trim_mode if disable_percent
      case trim_mode
      when 0
        return '%'
      when 1
        return '%>'
      when 2
        return '%<>'
      when '-'
        return '%-'
      end
    end
    module_function :trim_mode_opt

    def run(factory=ERB)
      trim_mode = 0
      disable_percent = false
      variables = {}
      begin
        while switch = ARGV.switch
          case switch
          when '-x'                        # ruby source
            output = true
          when '-n'                        # line number
            number = true
          when '-v'                        # verbose
            $VERBOSE = true
          when '--version'                 # version
            STDERR.puts factory.version
            exit
          when '-d', '--debug'             # debug
            $DEBUG = true
          when '-r'                        # require
            require ARGV.req_arg
          when '-S'                        # security level
            warn 'warning: -S option of erb command is deprecated. Please do not use this.'
            arg = ARGV.req_arg
            raise "invalid safe_level #{arg.dump}" unless arg =~ /\A[0-1]\z/
            safe_level = arg.to_i
          when '-T'                        # trim mode
            arg = ARGV.req_arg
            if arg == '-'
              trim_mode = arg
              next
            end
            raise "invalid trim mode #{arg.dump}" unless arg =~ /\A[0-2]\z/
            trim_mode = arg.to_i
          when '-E', '--encoding'
            arg = ARGV.req_arg
            set_encoding(*arg.split(/:/, 2))
          when '-U'
            set_encoding(Encoding::UTF_8, Encoding::UTF_8)
          when '-P'
            disable_percent = true
          when '--help'
            raise "print this help"
          when /\A-/
            raise "unknown switch #{switch.dump}"
          else
            var, val = *switch.split('=', 2)
            (variables ||= {})[var] = val
          end
        end
      rescue                               # usage
        STDERR.puts $!.to_s
        STDERR.puts File.basename($0) +
          " [switches] [var=value...] [inputfile]"
        STDERR.puts <<EOU
  -x               print ruby script
  -n               print ruby script with line number
  -v               enable verbose mode
  -d               set $DEBUG to true
  -r library       load a library
  -E ex[:in]       set default external/internal encodings
  -U               set default encoding to UTF-8
  -T trim_mode     specify trim_mode (0..2, -)
  -P               disable ruby code evaluation for lines beginning with %
  var=value        set variable
EOU
        exit 1
      end

      $<.set_encoding(Encoding::UTF_8, nil)
      src = $<.read
      filename = $FILENAME
      exit 2 unless src
      trim = trim_mode_opt(trim_mode, disable_percent)
      if safe_level.nil?
        erb = factory.new(src, trim_mode: trim)
      else
        # [deprecated] This will be removed at Ruby 2.7.
        erb = factory.new(src, safe_level, trim_mode: trim)
      end
      erb.filename = filename
      if output
        if number
          erb.src.each_line.with_index do |line, l|
            puts "%3d %s"%[l+1, line]
          end
        else
          puts erb.src
        end
      else
        bind = TOPLEVEL_BINDING
        if variables
          enc = erb.encoding
          for var, val in variables do
            val = val.encode(enc) if val
            bind.local_variable_set(var, val)
          end
        end
        erb.run(bind)
      end
    end
    module_function :run

    def set_encoding(extern, intern = nil)
      verbose, $VERBOSE = $VERBOSE, nil
      Encoding.default_external = extern unless extern.nil? || extern == ""
      Encoding.default_internal = intern unless intern.nil? || intern == ""
      [$stdin, $stdout, $stderr].each do |io|
        io.set_encoding(extern, intern)
      end
    ensure
      $VERBOSE = verbose
    end
    module_function :set_encoding
    class << self; private :set_encoding; end
  end
end

if __FILE__ == $0
  ERB::Main.run
end
PK7H[\�&/
bin/bundlenuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'bundler' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('bundler', 'bundle', version)
else
gem "bundler", version
load Gem.bin_path("bundler", "bundle", version)
end
PK7H[�/MJbin/irbnuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'irb' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('irb', 'irb', version)
else
gem "irb", version
load Gem.bin_path("irb", "irb", version)
end
PK7H[�vp�bin/bundlernuȯ��#!/opt/alt/ruby27/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'bundler' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = ">= 0.a"

str = ARGV.first
if str
  str = str.b[/\A_(.*)_\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('bundler', 'bundler', version)
else
gem "bundler", version
load Gem.bin_path("bundler", "bundler", version)
end
PK7H[4>�  bin/rubynuȯ��ELF>
@@P@8@@@@@@hh��@�@@@�� �
�
`�
`�� �
�
`�
`PP��@�@  ��@�@DDS�td��@�@  P�td��@�@DDQ�tdR�td�
�
`�
`��/lib64/ld-linux-x86-64.so.2GNU�GNUGNU����E�h�ٵ�& �IIr�Q! e�j	Cֺ�|CE��:�2b��K�����qX
�U cm ; ��z�PP`,X`T`R P`V
@/Ax@]�
@e T`1`@libruby.so.2.7__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTableruby_run_noderuby_initruby_optionsruby_init_stackruby_sysinitlibpthread.so.0librt.so.1libgmp.so.10libdl.so.2libcrypt.so.1libm.so.6libc.so.6setlocale__stack_chk_fail__libc_start_main_edata__bss_start_end__libc_csu_fini_IO_stdin_used__data_start__libc_csu_initGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�ii
mui	w�`�`�`�`` `(`0`8`	@`
H`��H��H�a H��t��H����5r �%s ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� D���%� D��H��(�|$1�H�4$H�5�dH�%(H�D$1�����H��H�|$���H�|$����V���H�4$�|$�Y���H���1���H�T$dH3%(uH��(��W������1�I��^H��H���PTI�`@H��
@H�ǀ	@�� ����f.��H�= H�
 H9�tH�� H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�] H��t��fD�����=� uUH���z����� ]�ff.�@���f.���AWI��AVI��AUA��ATL�%t UH�-t SL)�H���O���H��t1��L��L��D��A��H��H9�u�H��[]A\A]A^A_�ff.������H��H���;@�����������t���\����pd�������,zRx����/D0,���$Dx����FJw�?:*3$"l���p�(���yH0k
AD�x���eF�E�E �E(�H0�H8�G@n8A0A(B BBB������
@�
@��������p@
h@�
`�
`���o0@p@x@
�`��@h@`	���o8@���o�o
@�
`�@�@�@�@�@�@	@GA$3a1p@u@GA*�	@e@GA$annobin gcc 8.5.0 20210514GA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�	@�	@GA$plugin name: annobinGA*GOW*�GA$3p1067�
@e@GA$plugin name: gcc-annobinGA*GOW*GA+GLIBCXX_ASSERTIONS0
@e@
GA*FORTIFY�0
@5
@
GA*FORTIFY�
@e@ruby-2.7.8-141.el8.x86_64.debug�����7zXZ�ִF!t/���^]?�E�h=��ڊ̓�N�s_{^Q��u��kn|R'֩V���Ɏ6CE��t��0�!��QB0e��1~��G����_���l�}���Kf���*Q(ˈ��˺��oEue��U�)J���Q�F+�-E���"�E6��4���\��E���$�j�CG�`I�+��>�:JuP�0��mV%��i��ߊo���Xc�.p��"�w�%��G��cY�����9��`�i}�o�G����l	���������-����Eu:p�L�����X��������7n��L��9o��8��8g�rQߌ"�	HB��Hbz$E�$���nǟCXi���]��֟�x��/>Gl犬#�|<���wT��f��U8�N���N�vA�������'ޓou��2��.�X�h/;3߸f�m��Ūhɇ(rJ?l�N�+��|�Ø�eY�@j͈�E���>�Q�U�,��۩���	א����+"�	q
6EQY��_ZE����VC��$�]�*��(IXG�w�2]�-�E�$F�M�?�C��"�ۛ�p��:�7���?��� _�h�-"P	�����fnEX��^�!�#1�%d�{�	�������*��ʈ�gP��
~=��#2L���l� �	6z]��a��g=-+D"�*�y�}��=G?3^�m��pK�(:��N*:{&(A*/�NDbļ�B"�x���h�Nv�	����!�J�]A 
��x@"�ë�GtFů�`�ɫ)�5�j��9'�!�[�A#��1�+�#=�i�(��$҅�3��v�ŃY�ٲ�*i*�2��p���;�DN)��p4Ϯ�I��(���=}�����z�+{0���F2ɱ�g�YZ.shstrtab.interp.note.gnu.property.note.ABI-tag.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata�@��@� &�@� 4@$G���o0@0HQx@x�Yp@p�a���o
@
*n���o8@80}h@h`�B�@���p@p��@���	@	p��	@�	��h@h
�x@x��@�D��@���
`�
��
`�
��
`�
P��`� �`P�P`PT`TX�T�P$+t�:PK7H[��'��!�!)share/systemtap/tapset/libruby.so.2.7.stpnu�[���/* SystemTap tapset to make it easier to trace Ruby 2.0
 *
 * All probes provided by Ruby can be listed using following command
 * (the path to the library must be adjuste appropriately):
 *
 * stap -L 'process("/opt/alt/ruby27/lib*\/libruby.so.2.7").mark("*")'
 */

/**
 * probe ruby.array.create - Allocation of new array.
 *
 * @size: Number of elements (an int)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.array.create =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("array__create")
{
	size = $arg1
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.cmethod.entry - Fired just before a method implemented in C is entered.
 *
 * @classname: Name of the class (string)
 * @methodname: The method about bo be executed (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.cmethod.entry =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("cmethod__entry")
{
	classname  = user_string($arg1)
	methodname = user_string($arg2)
	file = user_string($arg3)
	line = $arg4
}

/**
 * probe ruby.cmethod.return - Fired just after a method implemented in C has returned.
 *
 * @classname: Name of the class (string)
 * @methodname: The executed method (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.cmethod.return =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("cmethod__return")
{
	classname  = user_string($arg1)
	methodname = user_string($arg2)
	file = user_string($arg3)
	line = $arg4
}

/**
 * probe ruby.find.require.entry - Fired when require starts to search load
 * path for suitable file to require.
 *
 * @requiredfile: The name of the file to be required (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.find.require.entry =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("find__require__entry")
{
	requiredfile = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.find.require.return - Fired just after require has finished
 * search of load path for suitable file to require.
 *
 * @requiredfile: The name of the file to be required (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.find.require.return =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("find__require__return")
{
	requiredfile = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.gc.mark.begin - Fired when a GC mark phase is about to start.
 *
 * It takes no arguments.
 */
probe ruby.gc.mark.begin =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("gc__mark__begin")
{
}

/**
 * probe ruby.gc.mark.end - Fired when a GC mark phase has ended.
 *
 * It takes no arguments.
 */
probe ruby.gc.mark.end =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("gc__mark__end")
{
}

/**
 * probe ruby.gc.sweep.begin - Fired when a GC sweep phase is about to start.
 *
 * It takes no arguments.
 */
probe ruby.gc.sweep.begin =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("gc__sweep__begin")
{
}

/**
 * probe ruby.gc.sweep.end - Fired when a GC sweep phase has ended.
 *
 * It takes no arguments.
 */
probe ruby.gc.sweep.end =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("gc__sweep__end")
{
}

/**
 * probe ruby.hash.create - Allocation of new hash.
 *
 * @size: Number of elements (int)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.hash.create =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("hash__create")
{
	size = $arg1
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.load.entry - Fired when calls to "load" are made.
 *
 * @loadedfile: The name of the file to be loaded (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.load.entry =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("load__entry")
{
	loadedfile = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.load.return - Fired just after require has finished
 * search of load path for suitable file to require.
 *
 * @loadedfile: The name of the file that was loaded (string)
 */
probe ruby.load.return =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("load__return")
{
	loadedfile = user_string($arg1)
}

/**
 * probe ruby.method.entry - Fired just before a method implemented in Ruby is entered.
 *
 * @classname: Name of the class (string)
 * @methodname: The method about bo be executed (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.method.entry =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("method__entry")
{
	classname  = user_string($arg1)
	methodname = user_string($arg2)
	file = user_string($arg3)
	line = $arg4
}

/**
 * probe ruby.method.return - Fired just after a method implemented in Ruby has returned.
 *
 * @classname: Name of the class (string)
 * @methodname: The executed method (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.method.return =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("method__return")
{
	classname  = user_string($arg1)
	methodname = user_string($arg2)
	file = user_string($arg3)
	line = $arg4
}

/**
 * probe ruby.object.create - Allocation of new object.
 *
 * @classname: Name of the class (string)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.object.create =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("object__create")
{
	classname = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.parse.begin - Fired just before a Ruby source file is parsed.
 *
 * @parsedfile: The name of the file to be parsed (string)
 * @parsedline: The line number of beginning of parsing (int)
 */
probe ruby.parse.begin =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("parse__begin")
{
	parsedfile = user_string($arg1)
	parsedline = $arg2
}

/**
 * probe ruby.parse.end - Fired just after a Ruby source file was parsed.
 *
 * @parsedfile: The name of parsed the file (string)
 * @parsedline: The line number of beginning of parsing (int)
 */
probe ruby.parse.end =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("parse__end")
{
	parsedfile = user_string($arg1)
	parsedline = $arg2
}

/**
 * probe ruby.raise - Fired when an exception is raised.
 *
 * @classname: The class name of the raised exception (string)
 * @file: The name of the file where the exception was raised (string)
 * @line: The line number in the file where the exception was raised (int)
 */
probe ruby.raise =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("raise")
{
	classname  = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.require.entry - Fired on calls to rb_require_safe (when a file
 * is required).
 *
 * @requiredfile: The name of the file to be required (string)
 * @file: The file that called "require" (string)
 * @line: The line number where the call to require was made(int)
 */
probe ruby.require.entry =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("require__entry")
{
	requiredfile = user_string($arg1)
	file = user_string($arg2)
	line = $arg3
}

/**
 * probe ruby.require.return - Fired just after require has finished
 * search of load path for suitable file to require.
 *
 * @requiredfile: The file that was required (string)
 */
probe ruby.require.return =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("require__return")
{
	requiredfile = user_string($arg1)
}

/**
 * probe ruby.string.create - Allocation of new string.
 *
 * @size: Number of elements (an int)
 * @file: The file name where the method is being called (string)
 * @line: The line number where the method is being called (int)
 */
probe ruby.string.create =
      process("/opt/alt/ruby27/lib*/libruby.so.2.7").mark("string__create")
{
	size = $arg1
	file = user_string($arg2)
	line = $arg3
}
PK7H[�6��gg#share/doc/alt-ruby27-libs/README.mdnu�[���[![Build Status](https://travis-ci.org/ruby/ruby.svg?branch=master)](https://travis-ci.org/ruby/ruby)
[![Build status](https://ci.appveyor.com/api/projects/status/0sy8rrxut4o0k960/branch/master?svg=true)](https://ci.appveyor.com/project/ruby/ruby/branch/master)
![](https://github.com/ruby/ruby/workflows/Cygwin/badge.svg)
![](https://github.com/ruby/ruby/workflows/macOS/badge.svg)
![](https://github.com/ruby/ruby/workflows/MJIT/badge.svg)
![](https://github.com/ruby/ruby/workflows/Ubuntu/badge.svg)
![](https://github.com/ruby/ruby/workflows/Windows/badge.svg)

# What's Ruby

Ruby is an interpreted object-oriented programming language often
used for web development. It also offers many scripting features
to process plain text and serialized files, or manage system tasks.
It is simple, straightforward, and extensible.

## Features of Ruby

*   Simple Syntax
*   **Normal** Object-oriented Features (e.g. class, method calls)
*   **Advanced** Object-oriented Features (e.g. mix-in, singleton-method)
*   Operator Overloading
*   Exception Handling
*   Iterators and Closures
*   Garbage Collection
*   Dynamic Loading of Object Files (on some architectures)
*   Highly Portable (works on many Unix-like/POSIX compatible platforms as
    well as Windows, macOS, Haiku, etc.) cf.
    https://github.com/ruby/ruby/blob/master/doc/contributing.rdoc#platform-maintainers


## How to get Ruby

For a complete list of ways to install Ruby, including using third-party tools
like rvm, see:

https://www.ruby-lang.org/en/downloads/

### Git

The mirror of the Ruby source tree can be checked out with the following command:

    $ git clone https://github.com/ruby/ruby.git

There are some other branches under development. Try the following command
to see the list of branches:

    $ git ls-remote https://github.com/ruby/ruby.git

You may also want to use https://git.ruby-lang.org/ruby.git (actual master of Ruby source)
if you are a committer.

### Subversion

Stable branches for older Ruby versions can be checked out with the following command:

    $ svn co https://svn.ruby-lang.org/repos/ruby/branches/ruby_2_6/ ruby

Try the following command to see the list of branches:

    $ svn ls https://svn.ruby-lang.org/repos/ruby/branches/


## Ruby home page

https://www.ruby-lang.org/

## Mailing list

There is a mailing list to discuss Ruby. To subscribe to this list, please
send the following phrase:

    subscribe

in the mail body (not subject) to the address
[ruby-talk-request@ruby-lang.org](mailto:ruby-talk-request@ruby-lang.org?subject=Join%20Ruby%20Mailing%20List&body=subscribe).

## How to compile and install

1.  If you want to use Microsoft Visual C++ to compile Ruby, read
    [win32/README.win32](win32/README.win32) instead of this document.

2.  If `./configure` does not exist or is older than `configure.ac`, run
    `autoconf` to (re)generate configure.

3.  Run `./configure`, which will generate `config.h` and `Makefile`.

    Some C compiler flags may be added by default depending on your
    environment. Specify `optflags=..` and `warnflags=..` as necessary to
    override them.

4.  Edit `defines.h` if you need. Usually this step will not be needed.

5.  Remove comment mark(`#`) before the module names from `ext/Setup` (or add
    module names if not present), if you want to link modules statically.

    If you don't want to compile non static extension modules (probably on
    architectures which do not allow dynamic loading), remove comment mark
    from the line "`#option nodynamic`" in `ext/Setup`.

    Usually this step will not be needed.

6.  Run `make`.

    * On Mac, set RUBY\_CODESIGN environment variable with a signing identity.
      It uses the identity to sign `ruby` binary. See also codesign(1).

7.  Optionally, run '`make check`' to check whether the compiled Ruby
    interpreter works well. If you see the message "`check succeeded`", your
    Ruby works as it should (hopefully).

8.  Optionally, run `make update-gems` and `make extract-gems`.

    If you want to install bundled gems, run `make update-gems` and
    `make extract-gems` before running `make install`.

9.  Run '`make install`'.

    This command will create the following directories and install files into
    them.

    *   `${DESTDIR}${prefix}/bin`
    *   `${DESTDIR}${prefix}/include/ruby-${MAJOR}.${MINOR}.${TEENY}`
    *   `${DESTDIR}${prefix}/include/ruby-${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}`
    *   `${DESTDIR}${prefix}/lib`
    *   `${DESTDIR}${prefix}/lib/ruby`
    *   `${DESTDIR}${prefix}/lib/ruby/${MAJOR}.${MINOR}.${TEENY}`
    *   `${DESTDIR}${prefix}/lib/ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}`
    *   `${DESTDIR}${prefix}/lib/ruby/site_ruby`
    *   `${DESTDIR}${prefix}/lib/ruby/site_ruby/${MAJOR}.${MINOR}.${TEENY}`
    *   `${DESTDIR}${prefix}/lib/ruby/site_ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}`
    *   `${DESTDIR}${prefix}/lib/ruby/vendor_ruby`
    *   `${DESTDIR}${prefix}/lib/ruby/vendor_ruby/${MAJOR}.${MINOR}.${TEENY}`
    *   `${DESTDIR}${prefix}/lib/ruby/vendor_ruby/${MAJOR}.${MINOR}.${TEENY}/${PLATFORM}`
    *   `${DESTDIR}${prefix}/lib/ruby/gems/${MAJOR}.${MINOR}.${TEENY}`
    *   `${DESTDIR}${prefix}/share/man/man1`
    *   `${DESTDIR}${prefix}/share/ri/${MAJOR}.${MINOR}.${TEENY}/system`


    If Ruby's API version is '*x.y.z*', the `${MAJOR}` is '*x*', the
    `${MINOR}` is '*y*', and the `${TEENY}` is '*z*'.

    **NOTE**: teeny of the API version may be different from one of Ruby's
    program version

    You may have to be a super user to install Ruby.

If you fail to compile Ruby, please send the detailed error report with the
error log and machine/OS type, to help others.

Some extension libraries may not get compiled because of lack of necessary
external libraries and/or headers, then you will need to run '`make distclean-ext`'
to remove old configuration after installing them in such case.

## Copying

See the file [COPYING](COPYING).

## Feedback

Questions about the Ruby language can be asked on the Ruby-Talk mailing list
(https://www.ruby-lang.org/en/community/mailing-lists) or on websites like
(https://stackoverflow.com).

Bugs should be reported at https://bugs.ruby-lang.org. Read [HowToReport] for more information.

[HowToReport]: https://bugs.ruby-lang.org/projects/ruby/wiki/HowToReport

## Contributing

See the file [CONTRIBUTING.md](CONTRIBUTING.md)

## The Author

Ruby was originally designed and developed by Yukihiro Matsumoto (Matz) in 1995.

<matz@ruby-lang.org>
PK7H[F��u`u`share/doc/alt-ruby27-libs/NEWSnu�[���# -*- rdoc -*-

= NEWS for Ruby 2.7.0

This document is a list of user visible feature changes made between
releases except for bug fixes.

Note that each entry is kept so brief that no reason behind or reference
information is supplied with.  For a full list of changes with all
sufficient information, see the ChangeLog file or Redmine
(e.g. <tt>https://bugs.ruby-lang.org/issues/$FEATURE_OR_BUG_NUMBER</tt>).

== Changes since the 2.6.0 release

=== Language changes

==== Pattern matching

* Pattern matching is introduced as an experimental feature. [Feature #14912]

    case [0, [1, 2, 3]]
    in [a, [b, *c]]
      p a #=> 0
      p b #=> 1
      p c #=> [2, 3]
    end

    case {a: 0, b: 1}
    in {a: 0, x: 1}
      :unreachable
    in {a: 0, b: var}
      p var #=> 1
    end

    case -1
    in 0 then :unreachable
    in 1 then :unreachable
    end #=> NoMatchingPatternError

    json = <<END
    {
      "name": "Alice",
      "age": 30,
      "children": [{ "name": "Bob", "age": 2 }]
    }
    END

    JSON.parse(json, symbolize_names: true) in {name: "Alice", children: [{name: name, age: age}]}

    p name #=> "Bob"
    p age  #=> 2

    JSON.parse(json, symbolize_names: true) in {name: "Alice", children: [{name: "Charlie", age: age}]}
    #=> NoMatchingPatternError

* See the following slides for more details:
  * https://speakerdeck.com/k_tsj/pattern-matching-new-feature-in-ruby-2-dot-7
  * Note that the slides are slightly obsolete.

* The warning against pattern matching can be suppressed with
  {-W:no-experimental option}[#label-Warning+option].

==== The spec of keyword arguments is changed towards 3.0

* Automatic conversion of keyword arguments and positional arguments is
  deprecated, and conversion will be removed in Ruby 3.  [Feature #14183]

  * When a method call passes a Hash at the last argument, and when it
    passes no keywords, and when the called method accepts keywords,
    a warning is emitted.  To continue treating the hash as keywords,
    add a double splat operator to avoid the warning and ensure
    correct behavior in Ruby 3.

      def foo(key: 42); end; foo({key: 42})   # warned
      def foo(**kw);    end; foo({key: 42})   # warned
      def foo(key: 42); end; foo(**{key: 42}) # OK
      def foo(**kw);    end; foo(**{key: 42}) # OK

  * When a method call passes keywords to a method that accepts keywords,
    but it does not pass enough required positional arguments, the
    keywords are treated as a final required positional argument, and a
    warning is emitted.  Pass the argument as a hash instead of keywords
    to avoid the warning and ensure correct behavior in Ruby 3.

      def foo(h, **kw); end; foo(key: 42)      # warned
      def foo(h, key: 42); end; foo(key: 42)   # warned
      def foo(h, **kw); end; foo({key: 42})    # OK
      def foo(h, key: 42); end; foo({key: 42}) # OK

  * When a method accepts specific keywords but not a keyword splat, and
    a hash or keywords splat is passed to the method that includes both
    Symbol and non-Symbol keys, the hash will continue to be split, and
    a warning will be emitted.  You will need to update the calling code
    to pass separate hashes to ensure correct behavior in Ruby 3.

      def foo(h={}, key: 42); end; foo("key" => 43, key: 42)   # warned
      def foo(h={}, key: 42); end; foo({"key" => 43, key: 42}) # warned
      def foo(h={}, key: 42); end; foo({"key" => 43}, key: 42) # OK

  * If a method does not accept keywords, and is called with keywords,
    the keywords are still treated as a positional hash, with no warning.
    This behavior will continue to work in Ruby 3.

      def foo(opt={});  end; foo( key: 42 )   # OK

* Non-symbols are allowed as keyword argument keys if the method accepts
  arbitrary keywords. [Feature #14183]

  * Non-Symbol keys in a keyword arguments hash were prohibited in 2.6.0,
    but are now allowed again.  [Bug #15658]

      def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1}

* <code>**nil</code> is allowed in method definitions to explicitly mark
  that the method accepts no keywords. Calling such a method with keywords
  will result in an ArgumentError. [Feature #14183]

    def foo(h, **nil); end; foo(key: 1)       # ArgumentError
    def foo(h, **nil); end; foo(**{key: 1})   # ArgumentError
    def foo(h, **nil); end; foo("str" => 1)   # ArgumentError
    def foo(h, **nil); end; foo({key: 1})     # OK
    def foo(h, **nil); end; foo({"str" => 1}) # OK

* Passing an empty keyword splat to a method that does not accept keywords
  no longer passes an empty hash, unless the empty hash is necessary for
  a required parameter, in which case a warning will be emitted.  Remove
  the double splat to continue passing a positional hash.  [Feature #14183]

    h = {}; def foo(*a) a end; foo(**h) # []
    h = {}; def foo(a) a end; foo(**h)  # {} and warning
    h = {}; def foo(*a) a end; foo(h)   # [{}]
    h = {}; def foo(a) a end; foo(h)    # {}

* Above warnings can be suppressed also with {-W:no-deprecated option}[#label-Warning+option].

==== Numbered parameters

* Numbered parameters as default block parameters are introduced.
  [Feature #4475]

    [1, 2, 10].map { _1.to_s(16) }    #=> ["1", "2", "a"]
    [[1, 2], [3, 4]].map { _1 + _2 }  #=> [3, 7]

  You can still define a local variable named +_1+ and so on,
  and that is honored when present, but renders a warning.

    _1 = 0            #=> warning: `_1' is reserved for numbered parameter; consider another name
    [1].each { p _1 } # prints 0 instead of 1

==== proc/lambda without block is deprecated

* Proc.new and Kernel#proc with no block in a method called with a block is
  warned now.

    def foo
      proc
    end
    foo { puts "Hello" } #=> warning: Capturing the given block using Kernel#proc is deprecated; use `&block` instead

  This warning can be suppressed with {-W:no-deprecated option}[#label-Warning+option].

* Kernel#lambda with no block in a method called with a block raises an exception.

    def bar
      lambda
    end
    bar { puts "Hello" } #=> tried to create Proc object without a block (ArgumentError)

==== Other miscellaneous changes

* A beginless range is experimentally introduced.  It might be useful
  in +case+, new call-sequence of the <code>Comparable#clamp</code>,
  constants and DSLs.  [Feature #14799]

     ary[..3]  # identical to ary[0..3]

     case RUBY_VERSION
     when ..."2.4" then puts "EOL"
     # ...
     end

     age.clamp(..100)

     where(sales: ..100)

* Setting <code>$;</code> to a non-nil value is warned now. [Feature #14240]
  Use of it in String#split is warned too.
  This warning can be suppressed with {-W:no-deprecated option}[#label-Warning+option].

* Setting <code>$,</code> to a non-nil value is warned now. [Feature #14240]
  Use of it in Array#join is warned too.
  This warning can be suppressed with {-W:no-deprecated option}[#label-Warning+option].

* Quoted here-document identifiers must end within the same line.

     <<"EOS
     " # This had been warned since 2.4; Now it raises a SyntaxError
     EOS

* The flip-flop syntax deprecation is reverted. [Feature #5400]

* Comment lines can be placed between fluent dot now.

    foo
      # .bar
      .baz # => foo.baz

* Calling a private method with a literal +self+ as the receiver
  is now allowed. [Feature #11297] [Feature #16123]

* Modifier rescue now operates the same for multiple assignment as single
  assignment. [Bug #8279]

    a, b = raise rescue [1, 2]
    # Previously parsed as: (a, b = raise) rescue [1, 2]
    # Now parsed as:         a, b = (raise rescue [1, 2])

* +yield+ in singleton class syntax is warned and will be deprecated later. [Feature #15575].

   def foo
     class << Object.new
       yield #=> warning: `yield' in class syntax will not be supported from Ruby 3.0. [Feature #15575]
     end
   end
   foo { p :ok }

  This warning can be suppressed with {-W:no-deprecated option}[#label-Warning+option].

* Argument forwarding by <code>(...)</code> is introduced. [Feature #16253]

    def foo(...)
      bar(...)
    end

  All arguments to +foo+ are forwarded to +bar+, including keyword and
  block arguments.
  Note that the parentheses are mandatory.  <code>bar ...</code> is parsed
  as an endless range.

* Access and setting of <code>$SAFE</code> is now always warned. <code>$SAFE</code>
  will become a normal global variable in Ruby 3.0. [Feature #16131]

* <code>Object#{taint,untaint,trust,untrust}</code> and related functions in the C-API
  no longer have an effect (all objects are always considered untainted), and are now
  warned in verbose mode. This warning will be disabled even in non-verbose mode in
  Ruby 3.0, and the methods and C functions will be removed in Ruby 3.2. [Feature #16131]

* Refinements take place at Object#method and Module#instance_method. [Feature #15373]

=== Command line options

==== Warning option

The +-W+ option has been extended with a following +:+, to manage categorized
warnings.  [Feature #16345] [Feature #16420]

* To suppress deprecation warnings:

    $ ruby -e '$; = ""'
    -e:1: warning: `$;' is deprecated

    $ ruby -W:no-deprecated -e '$; = //'

* It works with the +RUBYOPT+ environment variable:

    $ RUBYOPT=-W:no-deprecated ruby -e '$; = //'

* To suppress experimental feature warnings:

    $ ruby -e '0 in a'
    -e:1: warning: Pattern matching is experimental, and the behavior may change in future versions of Ruby!

    $ ruby -W:no-experimental -e '0 in a'

* To suppress both by using +RUBYOPT+, set space separated values:

    $ RUBYOPT='-W:no-deprecated -W:no-experimental' ruby -e '($; = "") in a'

See also Warning in {Core classes updates}[#label-Core+classes+updates+-28outstanding+ones+only-29].

=== Core classes updates (outstanding ones only)

Array::

  New methods::

    * Added Array#intersection. [Feature #16155]

    * Added Array#minmax, with a faster implementation than Enumerable#minmax. [Bug #15929]

Comparable::

  Modified method::

    * Comparable#clamp now accepts a Range argument. [Feature #14784]

        -1.clamp(0..2) #=> 0
         1.clamp(0..2) #=> 1
         3.clamp(0..2) #=> 2
        # With beginless and endless ranges:
        -1.clamp(0..)  #=> 0
         3.clamp(..2)  #=> 2


Complex::

  New method::

    * Added Complex#<=>.
      So <code>0 <=> 0i</code> will not raise NoMethodError. [Bug #15857]

Dir::

  Modified methods::

    * Dir.glob and Dir.[] no longer allow NUL-separated glob pattern.
      Use Array instead.  [Feature #14643]

Encoding::

  New encoding::

    * Added new encoding CESU-8. [Feature #15931]

Enumerable::

  New methods::

    * Added Enumerable#filter_map.  [Feature #15323]

        [1, 2, 3].filter_map {|x| x.odd? ? x.to_s : nil } #=> ["1", "3"]

    * Added Enumerable#tally.  [Feature #11076]

        ["A", "B", "C", "B", "A"].tally #=> {"A"=>2, "B"=>2, "C"=>1}

Enumerator::

  New methods::

    * Added Enumerator.produce to generate an Enumerator from any custom
      data transformation.  [Feature #14781]

        require "date"
        dates = Enumerator.produce(Date.today, &:succ) #=> infinite sequence of dates
        dates.detect(&:tuesday?) #=> next Tuesday

    * Added Enumerator::Lazy#eager that generates a non-lazy enumerator
      from a lazy enumerator.  [Feature #15901]

        a = %w(foo bar baz)
        e = a.lazy.map {|x| x.upcase }.map {|x| x + "!" }.eager
        p e.class               #=> Enumerator
        p e.map {|x| x + "?" }  #=> ["FOO!?", "BAR!?", "BAZ!?"]

    * Added Enumerator::Yielder#to_proc so that a Yielder object
      can be directly passed to another method as a block
      argument.  [Feature #15618]

Fiber::

  New method::

    * Added Fiber#raise that behaves like Fiber#resume but raises an
      exception on the resumed fiber.  [Feature #10344]

File::

  Modified method::

    * File.extname now returns a dot string for names ending with a dot on
      non-Windows platforms.  [Bug #15267]

          File.extname("foo.") #=> "."

FrozenError::

  New method::

    * Added FrozenError#receiver to return the frozen object on which
      modification was attempted.  To set this object when raising
      FrozenError in Ruby code, FrozenError.new accepts a +:receiver+
      option.  [Feature #15751]

GC::

  New method::

    * Added GC.compact method for compacting the heap.
      This function compacts live objects in the heap so that fewer pages may
      be used, and the heap may be more CoW (copy-on-write) friendly. [Feature #15626]

      Details on the algorithm and caveats can be found here:
      https://bugs.ruby-lang.org/issues/15626

IO::

  New method::

    * Added IO#set_encoding_by_bom to check the BOM and set the external
      encoding.  [Bug #15210]

Integer::

  Modified method::

    * Integer#[] now supports range operations.  [Feature #8842]

         0b01001101[2, 4]  #=> 0b0011
         0b01001100[2..5]  #=> 0b0011
         0b01001100[2...6] #=> 0b0011
         #   ^^^^

Method::

  Modified method::

    * Method#inspect shows more information. [Feature #14145]

Module::

  New methods::

    * Added Module#const_source_location to retrieve the location where a
      constant is defined.  [Feature #10771]

    * Added Module#ruby2_keywords for marking a method as passing keyword
      arguments through a regular argument splat, useful when delegating
      all arguments to another method in a way that can be backwards
      compatible with older Ruby versions.  [Bug #16154]

  Modified methods::

    * Module#autoload? now takes an +inherit+ optional argument, like
      Module#const_defined?.  [Feature #15777]

    * Module#name now always returns a frozen String. The returned String is
      always the same for a given Module. This change is
      experimental. [Feature #16150]

NilClass / TrueClass / FalseClass::

  Modified methods::

    * NilClass#to_s, TrueClass#to_s, and FalseClass#to_s now always return a
      frozen String. The returned String is always the same for each of these
      values. This change is experimental. [Feature #16150]

ObjectSpace::WeakMap::

  Modified method::

    * ObjectSpace::WeakMap#[]= now accepts special objects as either key or
      values.  [Feature #16035]

Proc::

  New method::

    * Added Proc#ruby2_keywords for marking the proc as passing keyword
      arguments through a regular argument splat, useful when delegating
      all arguments to another method or proc in a way that can be backwards
      compatible with older Ruby versions.  [Feature #16404]

Range::

  New method::

    * Added Range#minmax, with a faster implementation than Enumerable#minmax.
      It returns a maximum that now corresponds to Range#max. [Bug #15807]

  Modified method::

    * Range#=== now uses Range#cover? for String arguments, too (in Ruby 2.6, it was
      changed from Range#include? for all types except strings). [Bug #15449]


RubyVM::

  Removed method::

    * +RubyVM.resolve_feature_path+ moved to
      <code>$LOAD_PATH.resolve_feature_path</code>.  [Feature #15903] [Feature #15230]

String::

  Unicode::

    * Update Unicode version and Emoji version from 11.0.0 to
      12.0.0.  [Feature #15321]

    * Update Unicode version to 12.1.0, adding support for
      U+32FF SQUARE ERA NAME REIWA.  [Feature #15195]

    * Update Unicode Emoji version to 12.1. [Feature #16272]

Symbol::

  New methods::

    * Added Symbol#start_with? and Symbol#end_with? methods.  [Feature #16348]

Time::

  New methods::

    * Added Time#ceil method.  [Feature #15772]

    * Added Time#floor method.  [Feature #15653]

  Modified method::

    * Time#inspect is separated from Time#to_s and it shows
      the time's sub second.  [Feature #15958]

UnboundMethod::

  New method::

    * Added UnboundMethod#bind_call method.  [Feature #15955]

      <code>umethod.bind_call(obj, ...)</code> is semantically equivalent
      to <code>umethod.bind(obj).call(...)</code>.  This idiom is used in
      some libraries to call a method that is overridden.  The added
      method does the same without allocation of an intermediate Method
      object.

          class Foo
            def add_1(x)
              x + 1
            end
          end
          class Bar < Foo
            def add_1(x) # override
              x + 2
            end
          end

          obj = Bar.new
          p obj.add_1(1) #=> 3
          p Foo.instance_method(:add_1).bind(obj).call(1) #=> 2
          p Foo.instance_method(:add_1).bind_call(obj, 1) #=> 2

Warning::

  New methods::

    * Added Warning.[] and Warning.[]= to manage emitting/suppressing
      some categories of warnings.  [Feature #16345] [Feature #16420]

$LOAD_PATH::

  New method::

    * Added <code>$LOAD_PATH.resolve_feature_path</code>.  [Feature #15903] [Feature #15230]

=== Stdlib updates (outstanding ones only)

Bundler::

  * Upgrade to Bundler 2.1.2.
    See https://github.com/bundler/bundler/releases/tag/v2.1.2

CGI::

  * CGI.escapeHTML becomes 2~5x faster when there is at least one escaped character.
    See https://github.com/ruby/ruby/pull/2226

CSV::

  * Upgrade to 3.1.2.
    See https://github.com/ruby/csv/blob/master/NEWS.md.

Date::

  * Date.jisx0301, Date#jisx0301, and Date.parse support the new Japanese
    era.  [Feature #15742]

Delegator::

  * Object#DelegateClass accepts a block and module_evals it in the context
    of the returned class, similar to Class.new and Struct.new.

ERB::

  * Prohibit marshaling ERB instance.

IRB::

  * Introduce syntax highlighting inspired by the Pry gem to Binding#irb
    source lines, REPL input, and inspect output of some core-class objects.

  * Introduce multiline editing mode provided by Reline.

  * Show documentation when completion.

  * Enable auto indent and save/load history by default.

JSON::

  * Upgrade to 2.3.0.

Net::FTP::

  * Add Net::FTP#features to check available features, and Net::FTP#option to
    enable/disable each of them.  [Feature #15964]

Net::HTTP::

  * Add +ipaddr+ optional parameter to Net::HTTP#start to replace the address for
    the TCP/IP connection. [Feature #5180]

Net::IMAP::

  * Add Server Name Indication (SNI) support.  [Feature #15594]

open-uri::

  * Warn open-uri's "open" method at Kernel.
    Use URI.open instead.  [Misc #15893]

  * The default charset of "text/*" media type is UTF-8 instead of
    ISO-8859-1.  [Bug #15933]

OptionParser::

  * Now show "Did you mean?" for unknown options.  [Feature #16256]

    test.rb:

      require "optparse"
      OptionParser.new do |opts|
        opts.on("-f", "--foo", "foo") {|v| }
        opts.on("-b", "--bar", "bar") {|v| }
        opts.on("-c", "--baz", "baz") {|v| }
      end.parse!

    example:

      $ ruby test.rb --baa
      Traceback (most recent call last):
      test.rb:7:in `<main>': invalid option: --baa (OptionParser::InvalidOption)
      Did you mean?  baz
                     bar

Pathname::

  * Pathname.glob now delegates 3 arguments to Dir.glob
    to accept +base+ keyword. [Feature #14405]

Racc::

  * Merge 1.4.15 from upstream repository and added cli of racc.

Reline::

  * New stdlib that is compatible with the readline stdlib but is
    implemented in pure Ruby. It also provides a multiline editing mode.

REXML::

  * Upgrade to 3.2.3.
    See https://github.com/ruby/rexml/blob/master/NEWS.md.

RSS::

  * Upgrade to RSS 0.2.8.
    See https://github.com/ruby/rss/blob/master/NEWS.md.

RubyGems::

  * Upgrade to RubyGems 3.1.2.
    * https://github.com/rubygems/rubygems/releases/tag/v3.1.0
    * https://github.com/rubygems/rubygems/releases/tag/v3.1.1
    * https://github.com/rubygems/rubygems/releases/tag/v3.1.2

StringScanner::

  * Upgrade to 1.0.3.
    See https://github.com/ruby/strscan/blob/master/NEWS.md.

=== Compatibility issues (excluding feature bug fixes)

* The following libraries are no longer bundled gems.
  Install corresponding gems to use these features.
  * CMath (cmath gem)
  * Scanf (scanf gem)
  * Shell (shell gem)
  * Synchronizer (sync gem)
  * ThreadsWait (thwait gem)
  * E2MM (e2mmap gem)

Proc::
  * The Proc#to_s format was changed. [Feature #16101]

Range::
  * Range#minmax used to iterate on the range to determine the maximum.
    It now uses the same algorithm as Range#max. In rare cases (e.g.
    ranges of Floats or Strings), this may yield different results. [Bug #15807]

=== Stdlib compatibility issues (excluding feature bug fixes)

* Promote stdlib to default gems
  * The following default gems were published on rubygems.org
    * benchmark
    * cgi
    * delegate
    * getoptlong
    * net-pop
    * net-smtp
    * open3
    * pstore
    * readline
    * readline-ext
    * singleton
  * The following default gems were only promoted at ruby-core,
    but not yet published on rubygems.org.
    * monitor
    * observer
    * timeout
    * tracer
    * uri
    * yaml
* The <tt>did_you_mean</tt> gem has been promoted up to a default gem from a bundled gem

pathname::

  * Kernel#Pathname when called with a Pathname argument now returns
    the argument instead of creating a new Pathname. This is more
    similar to other Kernel methods, but can break code that modifies
    the return value and expects the argument not to be modified.

profile.rb, Profiler__::

  * Removed from standard library. It was unmaintained since Ruby 2.0.0.

=== C API updates

* Many <code>*_kw</code> functions have been added for setting whether
  the final argument being passed should be treated as keywords. You
  may need to switch to these functions to avoid keyword argument
  separation warnings, and to ensure correct behavior in Ruby 3.

* The <code>:</code> character in rb_scan_args format string is now
  treated as keyword arguments. Passing a positional hash instead of
  keyword arguments will emit a deprecation warning.

* C API declarations with +ANYARGS+ are changed not to use +ANYARGS+.
  See https://github.com/ruby/ruby/pull/2404

=== Implementation improvements

Fiber::

  * Allow selecting different coroutine implementations by using
    +--with-coroutine=+, e.g.

         $ ./configure --with-coroutine=ucontext
         $ ./configure --with-coroutine=copy

  * Replace previous stack cache with fiber pool cache. The fiber pool
    allocates many stacks in a single memory region. Stack allocation
    becomes O(log N) and fiber creation is amortized O(1). Around 10x
    performance improvement was measured in micro-benchmarks.
    https://github.com/ruby/ruby/pull/2224

File::
  * File.realpath now uses realpath(3) on many platforms, which can
    significantly improve performance. [Feature #15797]

Hash::
  * Change data structure of small Hash objects. [Feature #15602]

Monitor::
  * Monitor class is written in C-extension. [Feature #16255]

Thread::

  * VM stack memory allocation is now combined with native thread stack,
    improving thread allocation performance and reducing allocation related
    failures. Around 10x performance improvement was measured in micro-benchmarks.

JIT::

  * JIT-ed code is recompiled to less-optimized code when an optimization assumption is invalidated.

  * Method inlining is performed when a method is considered as pure.
    This optimization is still experimental and many methods are NOT considered as pure yet.

  * The default value of +--jit-max-cache+ is changed from 1,000 to 100.

  * The default value of +--jit-min-calls+ is changed from 5 to 10,000.

RubyVM::

  * Per-call-site method cache, which has been there since around 1.9, was
    improved: cache hit rate raised from 89% to 94%.
    See https://github.com/ruby/ruby/pull/2583

RubyVM::InstructionSequence::

  * RubyVM::InstructionSequence#to_binary method generates compiled binary.
    The binary size is reduced. [Feature #16163]

=== Miscellaneous changes

* Support for IA64 architecture has been removed. Hardware for testing was
  difficult to find, native fiber code is difficult to implement, and it added
  non-trivial complexity to the interpreter. [Feature #15894]

* Require compilers to support C99. [Misc #15347]

  * Details of our dialect: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/C99

* Ruby's upstream repository is changed from Subversion to Git.

  * https://git.ruby-lang.org/ruby.git

  * RUBY_REVISION class is changed from Integer to String.

  * RUBY_DESCRIPTION includes Git revision instead of Subversion's one.

* Support built-in methods in Ruby with the <code>_\_builtin_</code> syntax. [Feature #16254]

  Some methods are defined in *.rb (such as trace_point.rb).
  For example, it is easy to define a method which accepts keyword arguments.
PK7H[~�/5ĘĘshare/rubygems/rubygems.rbnu�[���# frozen_string_literal: true
# -*- ruby -*-
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rbconfig'

module Gem
  VERSION = "3.1.6".freeze
end

# Must be first since it unloads the prelude from 1.9.2
require 'rubygems/compatibility'

require 'rubygems/defaults'
require 'rubygems/deprecate'
require 'rubygems/errors'

##
# RubyGems is the Ruby standard for publishing and managing third party
# libraries.
#
# For user documentation, see:
#
# * <tt>gem help</tt> and <tt>gem help [command]</tt>
# * {RubyGems User Guide}[https://guides.rubygems.org/]
# * {Frequently Asked Questions}[https://guides.rubygems.org/faqs]
#
# For gem developer documentation see:
#
# * {Creating Gems}[https://guides.rubygems.org/make-your-own-gem]
# * Gem::Specification
# * Gem::Version for version dependency notes
#
# Further RubyGems documentation can be found at:
#
# * {RubyGems Guides}[https://guides.rubygems.org]
# * {RubyGems API}[https://www.rubydoc.info/github/rubygems/rubygems] (also available from
#   <tt>gem server</tt>)
#
# == RubyGems Plugins
#
# As of RubyGems 1.3.2, RubyGems will load plugins installed in gems or
# $LOAD_PATH.  Plugins must be named 'rubygems_plugin' (.rb, .so, etc) and
# placed at the root of your gem's #require_path.  Plugins are discovered via
# Gem::find_files and then loaded.
#
# For an example plugin, see the {Graph gem}[https://github.com/seattlerb/graph]
# which adds a `gem graph` command.
#
# == RubyGems Defaults, Packaging
#
# RubyGems defaults are stored in lib/rubygems/defaults.rb.  If you're packaging
# RubyGems or implementing Ruby you can change RubyGems' defaults.
#
# For RubyGems packagers, provide lib/rubygems/defaults/operating_system.rb
# and override any defaults from lib/rubygems/defaults.rb.
#
# For Ruby implementers, provide lib/rubygems/defaults/#{RUBY_ENGINE}.rb and
# override any defaults from lib/rubygems/defaults.rb.
#
# If you need RubyGems to perform extra work on install or uninstall, your
# defaults override file can set pre/post install and uninstall hooks.
# See Gem::pre_install, Gem::pre_uninstall, Gem::post_install,
# Gem::post_uninstall.
#
# == Bugs
#
# You can submit bugs to the
# {RubyGems bug tracker}[https://github.com/rubygems/rubygems/issues]
# on GitHub
#
# == Credits
#
# RubyGems is currently maintained by Eric Hodel.
#
# RubyGems was originally developed at RubyConf 2003 by:
#
# * Rich Kilmer  -- rich(at)infoether.com
# * Chad Fowler  -- chad(at)chadfowler.com
# * David Black  -- dblack(at)wobblini.net
# * Paul Brannan -- paul(at)atdesk.com
# * Jim Weirich   -- jim(at)weirichhouse.org
#
# Contributors:
#
# * Gavin Sinclair     -- gsinclair(at)soyabean.com.au
# * George Marrows     -- george.marrows(at)ntlworld.com
# * Dick Davies        -- rasputnik(at)hellooperator.net
# * Mauricio Fernandez -- batsman.geo(at)yahoo.com
# * Simon Strandgaard  -- neoneye(at)adslhome.dk
# * Dave Glasser       -- glasser(at)mit.edu
# * Paul Duncan        -- pabs(at)pablotron.org
# * Ville Aine         -- vaine(at)cs.helsinki.fi
# * Eric Hodel         -- drbrain(at)segment7.net
# * Daniel Berger      -- djberg96(at)gmail.com
# * Phil Hagelberg     -- technomancy(at)gmail.com
# * Ryan Davis         -- ryand-ruby(at)zenspider.com
# * Evan Phoenix       -- evan(at)fallingsnow.net
# * Steve Klabnik      -- steve(at)steveklabnik.com
#
# (If your name is missing, PLEASE let us know!)
#
# == License
#
# See {LICENSE.txt}[rdoc-ref:lib/rubygems/LICENSE.txt] for permissions.
#
# Thanks!
#
# -The RubyGems Team

module Gem
  RUBYGEMS_DIR = File.dirname File.expand_path(__FILE__)

  # Taint support is deprecated in Ruby 2.7.
  # This allows switching ".untaint" to ".tap(&Gem::UNTAINT)",
  # to avoid deprecation warnings in Ruby 2.7.
  UNTAINT = RUBY_VERSION < '2.7' ? :untaint.to_sym : proc{}

  ##
  # An Array of Regexps that match windows Ruby platforms.

  WIN_PATTERNS = [
    /bccwin/i,
    /cygwin/i,
    /djgpp/i,
    /mingw/i,
    /mswin/i,
    /wince/i,
  ].freeze

  GEM_DEP_FILES = %w[
    gem.deps.rb
    gems.rb
    Gemfile
    Isolate
  ].freeze

  ##
  # Subdirectories in a gem repository

  REPOSITORY_SUBDIRECTORIES = %w[
    build_info
    cache
    doc
    extensions
    gems
    specifications
  ].freeze

  ##
  # Subdirectories in a gem repository for default gems

  REPOSITORY_DEFAULT_GEM_SUBDIRECTORIES = %w[
    gems
    specifications/default
  ].freeze

  ##
  # Exception classes used in a Gem.read_binary +rescue+ statement

  READ_BINARY_ERRORS = [Errno::EACCES, Errno::EROFS, Errno::ENOSYS, Errno::ENOTSUP].freeze

  ##
  # Exception classes used in Gem.write_binary +rescue+ statement

  WRITE_BINARY_ERRORS = [Errno::ENOSYS, Errno::ENOTSUP].freeze

  @@win_platform = nil

  @configuration = nil
  @gemdeps = nil
  @loaded_specs = {}
  LOADED_SPECS_MUTEX = Mutex.new
  @path_to_default_spec_map = {}
  @platforms = []
  @ruby = nil
  @ruby_api_version = nil
  @sources = nil

  @post_build_hooks     ||= []
  @post_install_hooks   ||= []
  @post_uninstall_hooks ||= []
  @pre_uninstall_hooks  ||= []
  @pre_install_hooks    ||= []
  @pre_reset_hooks      ||= []
  @post_reset_hooks     ||= []

  @default_source_date_epoch = nil

  ##
  # Try to activate a gem containing +path+. Returns true if
  # activation succeeded or wasn't needed because it was already
  # activated. Returns false if it can't find the path in a gem.

  def self.try_activate(path)
    # finds the _latest_ version... regardless of loaded specs and their deps
    # if another gem had a requirement that would mean we shouldn't
    # activate the latest version, then either it would already be activated
    # or if it was ambiguous (and thus unresolved) the code in our custom
    # require will try to activate the more specific version.

    spec = Gem::Specification.find_by_path path
    return false unless spec
    return true if spec.activated?

    begin
      spec.activate
    rescue Gem::LoadError => e # this could fail due to gem dep collisions, go lax
      spec_by_name = Gem::Specification.find_by_name(spec.name)
      if spec_by_name.nil?
        raise e
      else
        spec_by_name.activate
      end
    end

    return true
  end

  def self.needs
    rs = Gem::RequestSet.new

    yield rs

    finish_resolve rs
  end

  def self.finish_resolve(request_set=Gem::RequestSet.new)
    request_set.import Gem::Specification.unresolved_deps.values
    request_set.import Gem.loaded_specs.values.map {|s| Gem::Dependency.new(s.name, s.version) }

    request_set.resolve_current.each do |s|
      s.full_spec.activate
    end
  end

  ##
  # Find the full path to the executable for gem +name+.  If the +exec_name+
  # is not given, an exception will be raised, otherwise the
  # specified executable's path is returned.  +requirements+ allows
  # you to specify specific gem versions.

  def self.bin_path(name, exec_name = nil, *requirements)
    # TODO: fails test_self_bin_path_bin_file_gone_in_latest
    # Gem::Specification.find_by_name(name, *requirements).bin_file exec_name

    requirements = Gem::Requirement.default if
      requirements.empty?

    find_spec_for_exe(name, exec_name, requirements).bin_file exec_name
  end

  def self.find_spec_for_exe(name, exec_name, requirements)
    raise ArgumentError, "you must supply exec_name" unless exec_name

    dep = Gem::Dependency.new name, requirements

    loaded = Gem.loaded_specs[name]

    return loaded if loaded && dep.matches_spec?(loaded)

    specs = dep.matching_specs(true)

    specs = specs.find_all do |spec|
      spec.executables.include? exec_name
    end if exec_name

    unless spec = specs.first
      msg = "can't find gem #{dep} with executable #{exec_name}"
      if name == "bundler" && bundler_message = Gem::BundlerVersionFinder.missing_version_message
        msg = bundler_message
      end
      raise Gem::GemNotFoundException, msg
    end

    spec
  end
  private_class_method :find_spec_for_exe

  ##
  # Find the full path to the executable for gem +name+.  If the +exec_name+
  # is not given, an exception will be raised, otherwise the
  # specified executable's path is returned.  +requirements+ allows
  # you to specify specific gem versions.
  #
  # A side effect of this method is that it will activate the gem that
  # contains the executable.
  #
  # This method should *only* be used in bin stub files.

  def self.activate_bin_path(name, exec_name = nil, *requirements) # :nodoc:
    spec = find_spec_for_exe name, exec_name, requirements
    Gem::LOADED_SPECS_MUTEX.synchronize do
      spec.activate
      finish_resolve
    end
    spec.bin_file exec_name
  end

  ##
  # The mode needed to read a file as straight binary.

  def self.binary_mode
    'rb'
  end

  ##
  # The path where gem executables are to be installed.

  def self.bindir(install_dir=Gem.dir)
    return File.join install_dir, 'bin' unless
      install_dir.to_s == Gem.default_dir.to_s
    Gem.default_bindir
  end

  ##
  # Reset the +dir+ and +path+ values.  The next time +dir+ or +path+
  # is requested, the values will be calculated from scratch.  This is
  # mainly used by the unit tests to provide test isolation.

  def self.clear_paths
    @paths         = nil
    @user_home     = nil
    Gem::Specification.reset
    Gem::Security.reset if defined?(Gem::Security)
  end

  ##
  # The path to standard location of the user's .gemrc file.

  def self.config_file
    @config_file ||= File.join Gem.user_home, '.gemrc'
  end

  ##
  # The standard configuration object for gems.

  def self.configuration
    @configuration ||= Gem::ConfigFile.new []
  end

  ##
  # Use the given configuration object (which implements the ConfigFile
  # protocol) as the standard configuration object.

  def self.configuration=(config)
    @configuration = config
  end

  ##
  # The path to the data directory specified by the gem name.  If the
  # package is not available as a gem, return nil.

  def self.datadir(gem_name)
    spec = @loaded_specs[gem_name]
    return nil if spec.nil?
    spec.datadir
  end

  ##
  # A Zlib::Deflate.deflate wrapper

  def self.deflate(data)
    require 'zlib'
    Zlib::Deflate.deflate data
  end

  # Retrieve the PathSupport object that RubyGems uses to
  # lookup files.

  def self.paths
    @paths ||= Gem::PathSupport.new(ENV)
  end

  # Initialize the filesystem paths to use from +env+.
  # +env+ is a hash-like object (typically ENV) that
  # is queried for 'GEM_HOME', 'GEM_PATH', and 'GEM_SPEC_CACHE'
  # Keys for the +env+ hash should be Strings, and values of the hash should
  # be Strings or +nil+.

  def self.paths=(env)
    clear_paths
    target = {}
    env.each_pair do |k,v|
      case k
      when 'GEM_HOME', 'GEM_PATH', 'GEM_SPEC_CACHE'
        case v
        when nil, String
          target[k] = v
        when Array
          unless Gem::Deprecate.skip
            warn <<-eowarn
Array values in the parameter to `Gem.paths=` are deprecated.
Please use a String or nil.
An Array (#{env.inspect}) was passed in from #{caller[3]}
            eowarn
          end
          target[k] = v.join File::PATH_SEPARATOR
        end
      else
        target[k] = v
      end
    end
    @paths = Gem::PathSupport.new ENV.to_hash.merge(target)
    Gem::Specification.dirs = @paths.path
  end

  ##
  # The path where gems are to be installed.
  #--
  # FIXME deprecate these once everything else has been done -ebh

  def self.dir
    paths.home
  end

  def self.path
    paths.path
  end

  def self.spec_cache_dir
    paths.spec_cache_dir
  end

  ##
  # Quietly ensure the Gem directory +dir+ contains all the proper
  # subdirectories.  If we can't create a directory due to a permission
  # problem, then we will silently continue.
  #
  # If +mode+ is given, missing directories are created with this mode.
  #
  # World-writable directories will never be created.

  def self.ensure_gem_subdirectories(dir = Gem.dir, mode = nil)
    ensure_subdirectories(dir, mode, REPOSITORY_SUBDIRECTORIES)
  end

  ##
  # Quietly ensure the Gem directory +dir+ contains all the proper
  # subdirectories for handling default gems.  If we can't create a
  # directory due to a permission problem, then we will silently continue.
  #
  # If +mode+ is given, missing directories are created with this mode.
  #
  # World-writable directories will never be created.

  def self.ensure_default_gem_subdirectories(dir = Gem.dir, mode = nil)
    ensure_subdirectories(dir, mode, REPOSITORY_DEFAULT_GEM_SUBDIRECTORIES)
  end

  def self.ensure_subdirectories(dir, mode, subdirs) # :nodoc:
    old_umask = File.umask
    File.umask old_umask | 002

    require 'fileutils'

    options = {}

    options[:mode] = mode if mode

    subdirs.each do |name|
      subdir = File.join dir, name
      next if File.exist? subdir
      FileUtils.mkdir_p subdir, **options rescue nil
    end
  ensure
    File.umask old_umask
  end

  ##
  # The extension API version of ruby.  This includes the static vs non-static
  # distinction as extensions cannot be shared between the two.

  def self.extension_api_version # :nodoc:
    if 'no' == RbConfig::CONFIG['ENABLE_SHARED']
      "#{ruby_api_version}-static"
    else
      ruby_api_version
    end
  end

  ##
  # Returns a list of paths matching +glob+ that can be used by a gem to pick
  # up features from other gems.  For example:
  #
  #   Gem.find_files('rdoc/discover').each do |path| load path end
  #
  # if +check_load_path+ is true (the default), then find_files also searches
  # $LOAD_PATH for files as well as gems.
  #
  # Note that find_files will return all files even if they are from different
  # versions of the same gem.  See also find_latest_files

  def self.find_files(glob, check_load_path=true)
    files = []

    files = find_files_from_load_path glob if check_load_path

    gem_specifications = @gemdeps ? Gem.loaded_specs.values : Gem::Specification.stubs

    files.concat gem_specifications.map { |spec|
      spec.matches_for_glob("#{glob}#{Gem.suffix_pattern}")
    }.flatten

    # $LOAD_PATH might contain duplicate entries or reference
    # the spec dirs directly, so we prune.
    files.uniq! if check_load_path

    return files
  end

  def self.find_files_from_load_path(glob) # :nodoc:
    glob_with_suffixes = "#{glob}#{Gem.suffix_pattern}"
    $LOAD_PATH.map do |load_path|
      Gem::Util.glob_files_in_dir(glob_with_suffixes, load_path)
    end.flatten.select { |file| File.file? file.tap(&Gem::UNTAINT) }
  end

  ##
  # Returns a list of paths matching +glob+ from the latest gems that can be
  # used by a gem to pick up features from other gems.  For example:
  #
  #   Gem.find_latest_files('rdoc/discover').each do |path| load path end
  #
  # if +check_load_path+ is true (the default), then find_latest_files also
  # searches $LOAD_PATH for files as well as gems.
  #
  # Unlike find_files, find_latest_files will return only files from the
  # latest version of a gem.

  def self.find_latest_files(glob, check_load_path=true)
    files = []

    files = find_files_from_load_path glob if check_load_path

    files.concat Gem::Specification.latest_specs(true).map { |spec|
      spec.matches_for_glob("#{glob}#{Gem.suffix_pattern}")
    }.flatten

    # $LOAD_PATH might contain duplicate entries or reference
    # the spec dirs directly, so we prune.
    files.uniq! if check_load_path

    return files
  end

  ##
  # Finds the user's home directory.
  #--
  # Some comments from the ruby-talk list regarding finding the home
  # directory:
  #
  #   I have HOME, USERPROFILE and HOMEDRIVE + HOMEPATH. Ruby seems
  #   to be depending on HOME in those code samples. I propose that
  #   it should fallback to USERPROFILE and HOMEDRIVE + HOMEPATH (at
  #   least on Win32).
  #++
  #--
  #
  #++

  def self.find_home
    Dir.home.dup
  rescue
    if Gem.win_platform?
      File.expand_path File.join(ENV['HOMEDRIVE'] || ENV['SystemDrive'], '/')
    else
      File.expand_path "/"
    end
  end

  private_class_method :find_home

  # TODO:  remove in RubyGems 4.0

  ##
  # Zlib::GzipReader wrapper that unzips +data+.

  def self.gunzip(data)
    Gem::Util.gunzip data
  end

  class << self

    extend Gem::Deprecate
    deprecate :gunzip, "Gem::Util.gunzip", 2018, 12

  end

  ##
  # Zlib::GzipWriter wrapper that zips +data+.

  def self.gzip(data)
    Gem::Util.gzip data
  end

  class << self

    extend Gem::Deprecate
    deprecate :gzip, "Gem::Util.gzip", 2018, 12

  end

  ##
  # A Zlib::Inflate#inflate wrapper

  def self.inflate(data)
    Gem::Util.inflate data
  end

  class << self

    extend Gem::Deprecate
    deprecate :inflate, "Gem::Util.inflate", 2018, 12

  end

  ##
  # Top level install helper method. Allows you to install gems interactively:
  #
  #   % irb
  #   >> Gem.install "minitest"
  #   Fetching: minitest-3.0.1.gem (100%)
  #   => [#<Gem::Specification:0x1013b4528 @name="minitest", ...>]

  def self.install(name, version = Gem::Requirement.default, *options)
    require "rubygems/dependency_installer"
    inst = Gem::DependencyInstaller.new(*options)
    inst.install name, version
    inst.installed_gems
  end

  ##
  # Get the default RubyGems API host. This is normally
  # <tt>https://rubygems.org</tt>.

  def self.host
    @host ||= Gem::DEFAULT_HOST
  end

  ## Set the default RubyGems API host.

  def self.host=(host)
    @host = host
  end

  ##
  # The index to insert activated gem paths into the $LOAD_PATH. The activated
  # gem's paths are inserted before site lib directory by default.

  def self.load_path_insert_index
    $LOAD_PATH.each_with_index do |path, i|
      return i if path.instance_variable_defined?(:@gem_prelude_index)
    end

    index = $LOAD_PATH.index RbConfig::CONFIG['sitelibdir']

    index || 0
  end

  ##
  # The number of paths in the `$LOAD_PATH` from activated gems. Used to
  # prioritize `-I` and `ENV['RUBYLIB`]` entries during `require`.

  def self.activated_gem_paths
    @activated_gem_paths ||= 0
  end

  ##
  # Add a list of paths to the $LOAD_PATH at the proper place.

  def self.add_to_load_path(*paths)
    @activated_gem_paths = activated_gem_paths + paths.size

    # gem directories must come after -I and ENV['RUBYLIB']
    $LOAD_PATH.insert(Gem.load_path_insert_index, *paths)
  end

  @yaml_loaded = false

  ##
  # Loads YAML, preferring Psych

  def self.load_yaml
    return if @yaml_loaded
    return unless defined?(gem)

    begin
      gem 'psych', '>= 2.0.0'
    rescue Gem::LoadError
      # It's OK if the user does not have the psych gem installed.  We will
      # attempt to require the stdlib version
    end

    begin
      # Try requiring the gem version *or* stdlib version of psych.
      require 'psych'
    rescue ::LoadError
      # If we can't load psych, thats fine, go on.
    else
      # If 'yaml' has already been required, then we have to
      # be sure to switch it over to the newly loaded psych.
      if defined?(YAML::ENGINE) && YAML::ENGINE.yamler != "psych"
        YAML::ENGINE.yamler = "psych"
      end

      require 'rubygems/psych_additions'
      require 'rubygems/psych_tree'
    end

    require 'yaml'
    require 'rubygems/safe_yaml'

    # Now that we're sure some kind of yaml library is loaded, pull
    # in our hack to deal with Syck's DefaultKey ugliness.
    require 'rubygems/syck_hack'

    @yaml_loaded = true
  end

  ##
  # The file name and line number of the caller of the caller of this method.
  #
  # +depth+ is how many layers up the call stack it should go.
  #
  # e.g.,
  #
  # def a; Gem.location_of_caller; end
  # a #=> ["x.rb", 2]  # (it'll vary depending on file name and line number)
  #
  # def b; c; end
  # def c; Gem.location_of_caller(2); end
  # b #=> ["x.rb", 6]  # (it'll vary depending on file name and line number)

  def self.location_of_caller(depth = 1)
    caller[depth] =~ /(.*?):(\d+).*?$/i
    file = $1
    lineno = $2.to_i

    [file, lineno]
  end

  ##
  # The version of the Marshal format for your Ruby.

  def self.marshal_version
    "#{Marshal::MAJOR_VERSION}.#{Marshal::MINOR_VERSION}"
  end

  ##
  # Set array of platforms this RubyGems supports (primarily for testing).

  def self.platforms=(platforms)
    @platforms = platforms
  end

  ##
  # Array of platforms this RubyGems supports.

  def self.platforms
    @platforms ||= []
    if @platforms.empty?
      @platforms = [Gem::Platform::RUBY, Gem::Platform.local]
    end
    @platforms
  end

  ##
  # Adds a post-build hook that will be passed an Gem::Installer instance
  # when Gem::Installer#install is called.  The hook is called after the gem
  # has been extracted and extensions have been built but before the
  # executables or gemspec has been written.  If the hook returns +false+ then
  # the gem's files will be removed and the install will be aborted.

  def self.post_build(&hook)
    @post_build_hooks << hook
  end

  ##
  # Adds a post-install hook that will be passed an Gem::Installer instance
  # when Gem::Installer#install is called

  def self.post_install(&hook)
    @post_install_hooks << hook
  end

  ##
  # Adds a post-installs hook that will be passed a Gem::DependencyInstaller
  # and a list of installed specifications when
  # Gem::DependencyInstaller#install is complete

  def self.done_installing(&hook)
    @done_installing_hooks << hook
  end

  ##
  # Adds a hook that will get run after Gem::Specification.reset is
  # run.

  def self.post_reset(&hook)
    @post_reset_hooks << hook
  end

  ##
  # Adds a post-uninstall hook that will be passed a Gem::Uninstaller instance
  # and the spec that was uninstalled when Gem::Uninstaller#uninstall is
  # called

  def self.post_uninstall(&hook)
    @post_uninstall_hooks << hook
  end

  ##
  # Adds a pre-install hook that will be passed an Gem::Installer instance
  # when Gem::Installer#install is called.  If the hook returns +false+ then
  # the install will be aborted.

  def self.pre_install(&hook)
    @pre_install_hooks << hook
  end

  ##
  # Adds a hook that will get run before Gem::Specification.reset is
  # run.

  def self.pre_reset(&hook)
    @pre_reset_hooks << hook
  end

  ##
  # Adds a pre-uninstall hook that will be passed an Gem::Uninstaller instance
  # and the spec that will be uninstalled when Gem::Uninstaller#uninstall is
  # called

  def self.pre_uninstall(&hook)
    @pre_uninstall_hooks << hook
  end

  ##
  # The directory prefix this RubyGems was installed at. If your
  # prefix is in a standard location (ie, rubygems is installed where
  # you'd expect it to be), then prefix returns nil.

  def self.prefix
    prefix = File.dirname RUBYGEMS_DIR

    if prefix != File.expand_path(RbConfig::CONFIG['sitelibdir']) and
       prefix != File.expand_path(RbConfig::CONFIG['libdir']) and
       'lib' == File.basename(RUBYGEMS_DIR)
      prefix
    end
  end

  ##
  # Refresh available gems from disk.

  def self.refresh
    Gem::Specification.reset
  end

  ##
  # Safely read a file in binary mode on all platforms.

  def self.read_binary(path)
    File.open path, 'rb+' do |f|
      f.flock(File::LOCK_EX)
      f.read
    end
  rescue *READ_BINARY_ERRORS
    File.open path, 'rb' do |f|
      f.read
    end
  rescue Errno::ENOLCK # NFS
    if Thread.main != Thread.current
      raise
    else
      File.open path, 'rb' do |f|
        f.read
      end
    end
  end

  ##
  # Safely write a file in binary mode on all platforms.
  def self.write_binary(path, data)
    open(path, 'wb') do |io|
      begin
        io.flock(File::LOCK_EX)
      rescue *WRITE_BINARY_ERRORS
      end
      io.write data
    end
  rescue Errno::ENOLCK # NFS
    if Thread.main != Thread.current
      raise
    else
      open(path, 'wb') do |io|
        io.write data
      end
    end
  end

  ##
  # The path to the running Ruby interpreter.

  def self.ruby
    if @ruby.nil?
      @ruby = File.join(RbConfig::CONFIG['bindir'],
                        "#{RbConfig::CONFIG['ruby_install_name']}#{RbConfig::CONFIG['EXEEXT']}")

      @ruby = "\"#{@ruby}\"" if @ruby =~ /\s/
    end

    @ruby
  end

  ##
  # Returns a String containing the API compatibility version of Ruby

  def self.ruby_api_version
    @ruby_api_version ||= RbConfig::CONFIG['ruby_version'].dup
  end

  def self.env_requirement(gem_name)
    @env_requirements_by_name ||= {}
    @env_requirements_by_name[gem_name] ||= begin
      req = ENV["GEM_REQUIREMENT_#{gem_name.upcase}"] || '>= 0'.freeze
      Gem::Requirement.create(req)
    end
  end
  post_reset { @env_requirements_by_name = {} }

  ##
  # Returns the latest release-version specification for the gem +name+.

  def self.latest_spec_for(name)
    dependency   = Gem::Dependency.new name
    fetcher      = Gem::SpecFetcher.fetcher
    spec_tuples, = fetcher.spec_for_dependency dependency

    spec, = spec_tuples.first

    spec
  end

  ##
  # Returns the latest release version of RubyGems.

  def self.latest_rubygems_version
    latest_version_for('rubygems-update') or
      raise "Can't find 'rubygems-update' in any repo. Check `gem source list`."
  end

  ##
  # Returns the version of the latest release-version of gem +name+

  def self.latest_version_for(name)
    spec = latest_spec_for name
    spec and spec.version
  end

  ##
  # A Gem::Version for the currently running Ruby.

  def self.ruby_version
    return @ruby_version if defined? @ruby_version
    version = RUBY_VERSION.dup

    if defined?(RUBY_PATCHLEVEL) && RUBY_PATCHLEVEL != -1
      version << ".#{RUBY_PATCHLEVEL}"
    elsif defined?(RUBY_DESCRIPTION)
      if RUBY_ENGINE == "ruby"
        desc = RUBY_DESCRIPTION[/\Aruby #{Regexp.quote(RUBY_VERSION)}([^ ]+) /, 1]
      else
        desc = RUBY_DESCRIPTION[/\A#{RUBY_ENGINE} #{Regexp.quote(RUBY_ENGINE_VERSION)} \(#{RUBY_VERSION}([^ ]+)\) /, 1]
      end
      version << ".#{desc}" if desc
    end

    @ruby_version = Gem::Version.new version
  end

  ##
  # A Gem::Version for the currently running RubyGems

  def self.rubygems_version
    return @rubygems_version if defined? @rubygems_version
    @rubygems_version = Gem::Version.new Gem::VERSION
  end

  ##
  # Returns an Array of sources to fetch remote gems from. Uses
  # default_sources if the sources list is empty.

  def self.sources
    source_list = configuration.sources || default_sources
    @sources ||= Gem::SourceList.from(source_list)
  end

  ##
  # Need to be able to set the sources without calling
  # Gem.sources.replace since that would cause an infinite loop.
  #
  # DOC: This comment is not documentation about the method itself, it's
  # more of a code comment about the implementation.

  def self.sources=(new_sources)
    if !new_sources
      @sources = nil
    else
      @sources = Gem::SourceList.from(new_sources)
    end
  end

  ##
  # Glob pattern for require-able path suffixes.

  def self.suffix_pattern
    @suffix_pattern ||= "{#{suffixes.join(',')}}"
  end

  def self.suffix_regexp
    @suffix_regexp ||= /#{Regexp.union(suffixes)}\z/
  end

  ##
  # Suffixes for require-able paths.

  def self.suffixes
    @suffixes ||= ['',
                   '.rb',
                   *%w(DLEXT DLEXT2).map do |key|
                     val = RbConfig::CONFIG[key]
                     next unless val and not val.empty?
                     ".#{val}"
                   end
                  ].compact.uniq
  end

  ##
  # Prints the amount of time the supplied block takes to run using the debug
  # UI output.

  def self.time(msg, width = 0, display = Gem.configuration.verbose)
    now = Time.now

    value = yield

    elapsed = Time.now - now

    ui.say "%2$*1$s: %3$3.3fs" % [-width, msg, elapsed] if display

    value
  end

  ##
  # Lazily loads DefaultUserInteraction and returns the default UI.

  def self.ui
    require 'rubygems/user_interaction'

    Gem::DefaultUserInteraction.ui
  end

  ##
  # Use the +home+ and +paths+ values for Gem.dir and Gem.path.  Used mainly
  # by the unit tests to provide environment isolation.

  def self.use_paths(home, *paths)
    paths.flatten!
    paths.compact!
    hash = { "GEM_HOME" => home, "GEM_PATH" => paths.empty? ? home : paths.join(File::PATH_SEPARATOR) }
    hash.delete_if { |_, v| v.nil? }
    self.paths = hash
  end

  ##
  # The home directory for the user.

  def self.user_home
    @user_home ||= find_home.tap(&Gem::UNTAINT)
  end

  ##
  # Is this a windows platform?

  def self.win_platform?
    if @@win_platform.nil?
      ruby_platform = RbConfig::CONFIG['host_os']
      @@win_platform = !!WIN_PATTERNS.find { |r| ruby_platform =~ r }
    end

    @@win_platform
  end

  ##
  # Is this a java platform?

  def self.java_platform?
    RUBY_PLATFORM == "java"
  end

  ##
  # Load +plugins+ as Ruby files

  def self.load_plugin_files(plugins) # :nodoc:
    plugins.each do |plugin|

      # Skip older versions of the GemCutter plugin: Its commands are in
      # RubyGems proper now.

      next if plugin =~ /gemcutter-0\.[0-3]/

      begin
        load plugin
      rescue ::Exception => e
        details = "#{plugin.inspect}: #{e.message} (#{e.class})"
        warn "Error loading RubyGems plugin #{details}"
      end
    end
  end

  ##
  # Find the 'rubygems_plugin' files in the latest installed gems and load
  # them

  def self.load_plugins
    # Remove this env var by at least 3.0
    if ENV['RUBYGEMS_LOAD_ALL_PLUGINS']
      load_plugin_files find_files('rubygems_plugin', false)
    else
      load_plugin_files find_latest_files('rubygems_plugin', false)
    end
  end

  ##
  # Find all 'rubygems_plugin' files in $LOAD_PATH and load them

  def self.load_env_plugins
    path = "rubygems_plugin"

    files = []
    glob = "#{path}#{Gem.suffix_pattern}"
    $LOAD_PATH.each do |load_path|
      globbed = Gem::Util.glob_files_in_dir(glob, load_path)

      globbed.each do |load_path_file|
        files << load_path_file if File.file?(load_path_file.tap(&Gem::UNTAINT))
      end
    end

    load_plugin_files files
  end

  ##
  # Looks for a gem dependency file at +path+ and activates the gems in the
  # file if found.  If the file is not found an ArgumentError is raised.
  #
  # If +path+ is not given the RUBYGEMS_GEMDEPS environment variable is used,
  # but if no file is found no exception is raised.
  #
  # If '-' is given for +path+ RubyGems searches up from the current working
  # directory for gem dependency files (gem.deps.rb, Gemfile, Isolate) and
  # activates the gems in the first one found.
  #
  # You can run this automatically when rubygems starts.  To enable, set
  # the <code>RUBYGEMS_GEMDEPS</code> environment variable to either the path
  # of your gem dependencies file or "-" to auto-discover in parent
  # directories.
  #
  # NOTE: Enabling automatic discovery on multiuser systems can lead to
  # execution of arbitrary code when used from directories outside your
  # control.

  def self.use_gemdeps(path = nil)
    raise_exception = path

    path ||= ENV['RUBYGEMS_GEMDEPS']
    return unless path

    path = path.dup

    if path == "-"
      Gem::Util.traverse_parents Dir.pwd do |directory|
        dep_file = GEM_DEP_FILES.find { |f| File.file?(f) }

        next unless dep_file

        path = File.join directory, dep_file
        break
      end
    end

    path.tap(&Gem::UNTAINT)

    unless File.file? path
      return unless raise_exception

      raise ArgumentError, "Unable to find gem dependencies file at #{path}"
    end

    ENV["BUNDLE_GEMFILE"] ||= File.expand_path(path)
    require 'rubygems/user_interaction'
    Gem::DefaultUserInteraction.use_ui(ui) do
      require "bundler"
      begin
        Bundler.ui.silence do
          @gemdeps = Bundler.setup
        end
      ensure
        Gem::DefaultUserInteraction.ui.close
      end
      @gemdeps.requested_specs.map(&:to_spec).sort_by(&:name)
    end

  rescue => e
    case e
    when Gem::LoadError, Gem::UnsatisfiableDependencyError, (defined?(Bundler::GemNotFound) ? Bundler::GemNotFound : Gem::LoadError)
      warn e.message
      warn "You may need to `gem install -g` to install missing gems"
      warn ""
    else
      raise
    end
  end

  class << self

    ##
    # TODO remove with RubyGems 4.0

    alias detect_gemdeps use_gemdeps # :nodoc:

    extend Gem::Deprecate
    deprecate :detect_gemdeps, "Gem.use_gemdeps", 2018, 12

  end

  ##
  # If the SOURCE_DATE_EPOCH environment variable is set, returns it's value.
  # Otherwise, returns the time that `Gem.source_date_epoch_string` was
  # first called in the same format as SOURCE_DATE_EPOCH.
  #
  # NOTE(@duckinator): The implementation is a tad weird because we want to:
  #   1. Make builds reproducible by default, by having this function always
  #      return the same result during a given run.
  #   2. Allow changing ENV['SOURCE_DATE_EPOCH'] at runtime, since multiple
  #      tests that set this variable will be run in a single process.
  #
  # If you simplify this function and a lot of tests fail, that is likely
  # due to #2 above.
  #
  # Details on SOURCE_DATE_EPOCH:
  # https://reproducible-builds.org/specs/source-date-epoch/

  def self.source_date_epoch_string
    # The value used if $SOURCE_DATE_EPOCH is not set.
    @default_source_date_epoch ||= Time.now.to_i.to_s

    specified_epoch = ENV["SOURCE_DATE_EPOCH"]

    # If it's empty or just whitespace, treat it like it wasn't set at all.
    specified_epoch = nil if !specified_epoch.nil? && specified_epoch.strip.empty?

    epoch = specified_epoch || @default_source_date_epoch

    epoch.strip
  end

  ##
  # Returns the value of Gem.source_date_epoch_string, as a Time object.
  #
  # This is used throughout RubyGems for enabling reproducible builds.

  def self.source_date_epoch
    Time.at(self.source_date_epoch_string.to_i).utc.freeze
  end

  # FIX: Almost everywhere else we use the `def self.` way of defining class
  # methods, and then we switch over to `class << self` here. Pick one or the
  # other.
  class << self

    ##
    # Hash of loaded Gem::Specification keyed by name

    attr_reader :loaded_specs

    ##
    # GemDependencyAPI object, which is set when .use_gemdeps is called.
    # This contains all the information from the Gemfile.

    attr_reader :gemdeps

    ##
    # Register a Gem::Specification for default gem.
    #
    # Two formats for the specification are supported:
    #
    # * MRI 2.0 style, where spec.files contains unprefixed require names.
    #   The spec's filenames will be registered as-is.
    # * New style, where spec.files contains files prefixed with paths
    #   from spec.require_paths. The prefixes are stripped before
    #   registering the spec's filenames. Unprefixed files are omitted.
    #

    def register_default_spec(spec)
      extended_require_paths = spec.require_paths.map {|f| f + "/"}
      new_format = extended_require_paths.any? {|path| spec.files.any? {|f| f.start_with? path } }

      if new_format
        prefix_group = extended_require_paths.join("|")
        prefix_pattern = /^(#{prefix_group})/
      end

      spec.files.each do |file|
        if new_format
          file = file.sub(prefix_pattern, "")
          next unless $~
        end

        @path_to_default_spec_map[file] = spec
        @path_to_default_spec_map[file.sub(suffix_regexp, "")] = spec
      end
    end

    ##
    # Find a Gem::Specification of default gem from +path+

    def find_unresolved_default_spec(path)
      default_spec = @path_to_default_spec_map[path]
      return default_spec if default_spec && loaded_specs[default_spec.name] != default_spec
    end

    ##
    # Clear default gem related variables. It is for test

    def clear_default_specs
      @path_to_default_spec_map.clear
    end

    ##
    # The list of hooks to be run after Gem::Installer#install extracts files
    # and builds extensions

    attr_reader :post_build_hooks

    ##
    # The list of hooks to be run after Gem::Installer#install completes
    # installation

    attr_reader :post_install_hooks

    ##
    # The list of hooks to be run after Gem::DependencyInstaller installs a
    # set of gems

    attr_reader :done_installing_hooks

    ##
    # The list of hooks to be run after Gem::Specification.reset is run.

    attr_reader :post_reset_hooks

    ##
    # The list of hooks to be run after Gem::Uninstaller#uninstall completes
    # installation

    attr_reader :post_uninstall_hooks

    ##
    # The list of hooks to be run before Gem::Installer#install does any work

    attr_reader :pre_install_hooks

    ##
    # The list of hooks to be run before Gem::Specification.reset is run.

    attr_reader :pre_reset_hooks

    ##
    # The list of hooks to be run before Gem::Uninstaller#uninstall does any
    # work

    attr_reader :pre_uninstall_hooks

  end

  ##
  # Location of Marshal quick gemspecs on remote repositories

  MARSHAL_SPEC_DIR = "quick/Marshal.#{Gem.marshal_version}/".freeze

  autoload :BundlerVersionFinder, File.expand_path('rubygems/bundler_version_finder', __dir__)
  autoload :ConfigFile,         File.expand_path('rubygems/config_file', __dir__)
  autoload :Dependency,         File.expand_path('rubygems/dependency', __dir__)
  autoload :DependencyList,     File.expand_path('rubygems/dependency_list', __dir__)
  autoload :Installer,          File.expand_path('rubygems/installer', __dir__)
  autoload :Licenses,           File.expand_path('rubygems/util/licenses', __dir__)
  autoload :NameTuple,          File.expand_path('rubygems/name_tuple', __dir__)
  autoload :PathSupport,        File.expand_path('rubygems/path_support', __dir__)
  autoload :Platform,           File.expand_path('rubygems/platform', __dir__)
  autoload :RequestSet,         File.expand_path('rubygems/request_set', __dir__)
  autoload :Requirement,        File.expand_path('rubygems/requirement', __dir__)
  autoload :Resolver,           File.expand_path('rubygems/resolver', __dir__)
  autoload :Source,             File.expand_path('rubygems/source', __dir__)
  autoload :SourceList,         File.expand_path('rubygems/source_list', __dir__)
  autoload :SpecFetcher,        File.expand_path('rubygems/spec_fetcher', __dir__)
  autoload :Specification,      File.expand_path('rubygems/specification', __dir__)
  autoload :Util,               File.expand_path('rubygems/util', __dir__)
  autoload :Version,            File.expand_path('rubygems/version', __dir__)

  require "rubygems/specification"
end

require 'rubygems/exceptions'

# REFACTOR: This should be pulled out into some kind of hacks file.
begin
  ##
  # Defaults the operating system (or packager) wants to provide for RubyGems.

  require 'rubygems/defaults/operating_system'
rescue LoadError
end

begin
  ##
  # Defaults the Ruby implementation wants to provide for RubyGems

  require "rubygems/defaults/#{RUBY_ENGINE}"
rescue LoadError
end

##
# Loads the default specs.
Gem::Specification.load_defaults

require 'rubygems/core_ext/kernel_gem'
require 'rubygems/core_ext/kernel_require'
require 'rubygems/core_ext/kernel_warn'

Gem.use_gemdeps
PK7H[�íM)?)?"share/rubygems/rubygems/command.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'optparse'
require 'rubygems/requirement'
require 'rubygems/user_interaction'

##
# Base class for all Gem commands.  When creating a new gem command, define
# #initialize, #execute, #arguments, #defaults_str, #description and #usage
# (as appropriate).  See the above mentioned methods for details.
#
# A very good example to look at is Gem::Commands::ContentsCommand

class Gem::Command

  include Gem::UserInteraction

  OptionParser.accept Symbol do |value|
    value.to_sym
  end

  ##
  # The name of the command.

  attr_reader :command

  ##
  # The options for the command.

  attr_reader :options

  ##
  # The default options for the command.

  attr_accessor :defaults

  ##
  # The name of the command for command-line invocation.

  attr_accessor :program_name

  ##
  # A short description of the command.

  attr_accessor :summary

  ##
  # Arguments used when building gems

  def self.build_args
    @build_args ||= []
  end

  def self.build_args=(value)
    @build_args = value
  end

  def self.common_options
    @common_options ||= []
  end

  def self.add_common_option(*args, &handler)
    Gem::Command.common_options << [args, handler]
  end

  def self.extra_args
    @extra_args ||= []
  end

  def self.extra_args=(value)
    case value
    when Array
      @extra_args = value
    when String
      @extra_args = value.split
    end
  end

  ##
  # Return an array of extra arguments for the command.  The extra arguments
  # come from the gem configuration file read at program startup.

  def self.specific_extra_args(cmd)
    specific_extra_args_hash[cmd]
  end

  ##
  # Add a list of extra arguments for the given command.  +args+ may be an
  # array or a string to be split on white space.

  def self.add_specific_extra_args(cmd,args)
    args = args.split(/\s+/) if args.kind_of? String
    specific_extra_args_hash[cmd] = args
  end

  ##
  # Accessor for the specific extra args hash (self initializing).

  def self.specific_extra_args_hash
    @specific_extra_args_hash ||= Hash.new do |h,k|
      h[k] = Array.new
    end
  end

  ##
  # Initializes a generic gem command named +command+.  +summary+ is a short
  # description displayed in `gem help commands`.  +defaults+ are the default
  # options.  Defaults should be mirrored in #defaults_str, unless there are
  # none.
  #
  # When defining a new command subclass, use add_option to add command-line
  # switches.
  #
  # Unhandled arguments (gem names, files, etc.) are left in
  # <tt>options[:args]</tt>.

  def initialize(command, summary=nil, defaults={})
    @command = command
    @summary = summary
    @program_name = "gem #{command}"
    @defaults = defaults
    @options = defaults.dup
    @option_groups = Hash.new { |h,k| h[k] = [] }
    @deprecated_options = { command => {} }
    @parser = nil
    @when_invoked = nil
  end

  ##
  # True if +long+ begins with the characters from +short+.

  def begins?(long, short)
    return false if short.nil?
    long[0, short.length] == short
  end

  ##
  # Override to provide command handling.
  #
  # #options will be filled in with your parsed options, unparsed options will
  # be left in <tt>options[:args]</tt>.
  #
  # See also: #get_all_gem_names, #get_one_gem_name,
  # #get_one_optional_argument

  def execute
    raise Gem::Exception, "generic command has no actions"
  end

  ##
  # Display to the user that a gem couldn't be found and reasons why
  #--

  def show_lookup_failure(gem_name, version, errors, suppress_suggestions = false, required_by = nil)
    gem = "'#{gem_name}' (#{version})"
    msg = String.new "Could not find a valid gem #{gem}"

    if errors and !errors.empty?
      msg << ", here is why:\n"
      errors.each { |x| msg << "          #{x.wordy}\n" }
    else
      if required_by and gem != required_by
        msg << " (required by #{required_by}) in any repository"
      else
        msg << " in any repository"
      end
    end

    alert_error msg

    unless suppress_suggestions
      suggestions = Gem::SpecFetcher.fetcher.suggest_gems_from_name gem_name

      unless suggestions.empty?
        alert_error "Possible alternatives: #{suggestions.join(", ")}"
      end
    end
  end

  ##
  # Get all gem names from the command line.

  def get_all_gem_names
    args = options[:args]

    if args.nil? or args.empty?
      raise Gem::CommandLineError,
            "Please specify at least one gem name (e.g. gem build GEMNAME)"
    end

    args.select { |arg| arg !~ /^-/ }
  end

  ##
  # Get all [gem, version] from the command line.
  #
  # An argument in the form gem:ver is pull apart into the gen name and version,
  # respectively.
  def get_all_gem_names_and_versions
    get_all_gem_names.map do |name|
      if /\A(.*):(#{Gem::Requirement::PATTERN_RAW})\z/ =~ name
        [$1, $2]
      else
        [name]
      end
    end
  end

  ##
  # Get a single gem name from the command line.  Fail if there is no gem name
  # or if there is more than one gem name given.

  def get_one_gem_name
    args = options[:args]

    if args.nil? or args.empty?
      raise Gem::CommandLineError,
            "Please specify a gem name on the command line (e.g. gem build GEMNAME)"
    end

    if args.size > 1
      raise Gem::CommandLineError,
            "Too many gem names (#{args.join(', ')}); please specify only one"
    end

    args.first
  end

  ##
  # Get a single optional argument from the command line.  If more than one
  # argument is given, return only the first. Return nil if none are given.

  def get_one_optional_argument
    args = options[:args] || []
    args.first
  end

  ##
  # Override to provide details of the arguments a command takes.  It should
  # return a left-justified string, one argument per line.
  #
  # For example:
  #
  #   def usage
  #     "#{program_name} FILE [FILE ...]"
  #   end
  #
  #   def arguments
  #     "FILE          name of file to find"
  #   end

  def arguments
    ""
  end

  ##
  # Override to display the default values of the command options. (similar to
  # +arguments+, but displays the default values).
  #
  # For example:
  #
  #   def defaults_str
  #     --no-gems-first --no-all
  #   end

  def defaults_str
    ""
  end

  ##
  # Override to display a longer description of what this command does.

  def description
    nil
  end

  ##
  # Override to display the usage for an individual gem command.
  #
  # The text "[options]" is automatically appended to the usage text.

  def usage
    program_name
  end

  ##
  # Display the help message for the command.

  def show_help
    parser.program_name = usage
    say parser
  end

  ##
  # Invoke the command with the given list of arguments.

  def invoke(*args)
    invoke_with_build_args args, nil
  end

  ##
  # Invoke the command with the given list of normal arguments
  # and additional build arguments.

  def invoke_with_build_args(args, build_args)
    handle_options args

    options[:build_args] = build_args

    if options[:silent]
      old_ui = self.ui
      self.ui = ui = Gem::SilentUI.new
    end

    if options[:help]
      show_help
    elsif @when_invoked
      @when_invoked.call options
    else
      execute
    end
  ensure
    if ui
      self.ui = old_ui
      ui.close
    end
  end

  ##
  # Call the given block when invoked.
  #
  # Normal command invocations just executes the +execute+ method of the
  # command.  Specifying an invocation block allows the test methods to
  # override the normal action of a command to determine that it has been
  # invoked correctly.

  def when_invoked(&block)
    @when_invoked = block
  end

  ##
  # Add a command-line option and handler to the command.
  #
  # See OptionParser#make_switch for an explanation of +opts+.
  #
  # +handler+ will be called with two values, the value of the argument and
  # the options hash.
  #
  # If the first argument of add_option is a Symbol, it's used to group
  # options in output.  See `gem help list` for an example.

  def add_option(*opts, &handler) # :yields: value, options
    group_name = Symbol === opts.first ? opts.shift : :options

    @option_groups[group_name] << [opts, handler]
  end

  ##
  # Remove previously defined command-line argument +name+.

  def remove_option(name)
    @option_groups.each do |_, option_list|
      option_list.reject! { |args, _| args.any? { |x| x.is_a?(String) && x =~ /^#{name}/ } }
    end
  end

  ##
  # Mark a command-line option as deprecated, and optionally specify a
  # deprecation horizon.
  #
  # Note that with the current implementation, every version of the option needs
  # to be explicitly deprecated, so to deprecate an option defined as
  #
  #   add_option('-t', '--[no-]test', 'Set test mode') do |value, options|
  #     # ... stuff ...
  #   end
  #
  # you would need to explicitly add a call to `deprecate_option` for every
  # version of the option you want to deprecate, like
  #
  #   deprecate_option('-t')
  #   deprecate_option('--test')
  #   deprecate_option('--no-test')

  def deprecate_option(name, version: nil, extra_msg: nil)
    @deprecated_options[command].merge!({ name => { "rg_version_to_expire" => version, "extra_msg" => extra_msg } })
  end

  def check_deprecated_options(options)
    options.each do |option|
      if option_is_deprecated?(option)
        deprecation = @deprecated_options[command][option]
        version_to_expire = deprecation["rg_version_to_expire"]

        deprecate_option_msg = if version_to_expire
                                 "The \"#{option}\" option has been deprecated and will be removed in Rubygems #{version_to_expire}."
                               else
                                 "The \"#{option}\" option has been deprecated and will be removed in future versions of Rubygems."
                               end

        extra_msg = deprecation["extra_msg"]

        deprecate_option_msg += " #{extra_msg}" if extra_msg

        alert_warning(deprecate_option_msg)
      end
    end
  end

  ##
  # Merge a set of command options with the set of default options (without
  # modifying the default option hash).

  def merge_options(new_options)
    @options = @defaults.clone
    new_options.each { |k,v| @options[k] = v }
  end

  ##
  # True if the command handles the given argument list.

  def handles?(args)
    begin
      parser.parse!(args.dup)
      return true
    rescue
      return false
    end
  end

  ##
  # Handle the given list of arguments by parsing them and recording the
  # results.

  def handle_options(args)
    args = add_extra_args(args)
    check_deprecated_options(args)
    @options = Marshal.load Marshal.dump @defaults # deep copy
    parser.parse!(args)
    @options[:args] = args
  end

  ##
  # Adds extra args from ~/.gemrc

  def add_extra_args(args)
    result = []

    s_extra = Gem::Command.specific_extra_args(@command)
    extra = Gem::Command.extra_args + s_extra

    until extra.empty? do
      ex = []
      ex << extra.shift
      ex << extra.shift if extra.first.to_s =~ /^[^-]/
      result << ex if handles?(ex)
    end

    result.flatten!
    result.concat(args)
    result
  end

  private

  def option_is_deprecated?(option)
    @deprecated_options[command].has_key?(option)
  end

  def add_parser_description # :nodoc:
    return unless description

    formatted = description.split("\n\n").map do |chunk|
      wrap chunk, 80 - 4
    end.join "\n"

    @parser.separator nil
    @parser.separator "  Description:"
    formatted.split("\n").each do |line|
      @parser.separator "    #{line.rstrip}"
    end
  end

  def add_parser_options # :nodoc:
    @parser.separator nil

    regular_options = @option_groups.delete :options

    configure_options "", regular_options

    @option_groups.sort_by { |n,_| n.to_s }.each do |group_name, option_list|
      @parser.separator nil
      configure_options group_name, option_list
    end
  end

  ##
  # Adds a section with +title+ and +content+ to the parser help view.  Used
  # for adding command arguments and default arguments.

  def add_parser_run_info(title, content)
    return if content.empty?

    @parser.separator nil
    @parser.separator "  #{title}:"
    content.split(/\n/).each do |line|
      @parser.separator "    #{line}"
    end
  end

  def add_parser_summary # :nodoc:
    return unless @summary

    @parser.separator nil
    @parser.separator "  Summary:"
    wrap(@summary, 80 - 4).split("\n").each do |line|
      @parser.separator "    #{line.strip}"
    end
  end

  ##
  # Create on demand parser.

  def parser
    create_option_parser if @parser.nil?
    @parser
  end

  ##
  # Creates an option parser and fills it in with the help info for the
  # command.

  def create_option_parser
    @parser = OptionParser.new

    add_parser_options

    @parser.separator nil
    configure_options "Common", Gem::Command.common_options

    add_parser_run_info "Arguments", arguments
    add_parser_summary
    add_parser_description
    add_parser_run_info "Defaults", defaults_str
  end

  def configure_options(header, option_list)
    return if option_list.nil? or option_list.empty?

    header = header.to_s.empty? ? '' : "#{header} "
    @parser.separator "  #{header}Options:"

    option_list.each do |args, handler|
      @parser.on(*args) do |value|
        handler.call(value, @options)
      end
    end

    @parser.separator ''
  end

  ##
  # Wraps +text+ to +width+

  def wrap(text, width) # :doc:
    text.gsub(/(.{1,#{width}})( +|$\n?)|(.{1,#{width}})/, "\\1\\3\n")
  end

  # ----------------------------------------------------------------
  # Add the options common to all commands.

  add_common_option('-h', '--help',
                    'Get help on this command') do |value, options|
    options[:help] = true
  end

  add_common_option('-V', '--[no-]verbose',
                    'Set the verbose level of output') do |value, options|
    # Set us to "really verbose" so the progress meter works
    if Gem.configuration.verbose and value
      Gem.configuration.verbose = 1
    else
      Gem.configuration.verbose = value
    end
  end

  add_common_option('-q', '--quiet', 'Silence command progress meter') do |value, options|
    Gem.configuration.verbose = false
  end

  add_common_option("--silent",
                    "Silence RubyGems output") do |value, options|
    options[:silent] = true
  end

  # Backtrace and config-file are added so they show up in the help
  # commands.  Both options are actually handled before the other
  # options get parsed.

  add_common_option('--config-file FILE',
                    'Use this config file instead of default') do
  end

  add_common_option('--backtrace',
                    'Show stack backtrace on errors') do
  end

  add_common_option('--debug',
                    'Turn on Ruby debugging') do
  end

  add_common_option('--norc',
                    'Avoid loading any .gemrc file') do
  end

  # :stopdoc:

  HELP = <<-HELP.freeze
RubyGems is a sophisticated package manager for Ruby.  This is a
basic help message containing pointers to more information.

  Usage:
    gem -h/--help
    gem -v/--version
    gem command [arguments...] [options...]

  Examples:
    gem install rake
    gem list --local
    gem build package.gemspec
    gem help install

  Further help:
    gem help commands            list all 'gem' commands
    gem help examples            show some examples of usage
    gem help gem_dependencies    gem dependencies file guide
    gem help platforms           gem platforms guide
    gem help <COMMAND>           show help on COMMAND
                                   (e.g. 'gem help install')
    gem server                   present a web page at
                                 http://localhost:8808/
                                 with info about installed gems
  Further information:
    https://guides.rubygems.org
  HELP

  # :startdoc:

end

##
# \Commands will be placed in this namespace

module Gem::Commands
end
PK7H[��T��!share/rubygems/rubygems/errors.rbnu�[���# frozen_string_literal: true
#--
# This file contains all the various exceptions and other errors that are used
# inside of RubyGems.
#
# DOC: Confirm _all_
#++

module Gem
  ##
  # Raised when RubyGems is unable to load or activate a gem.  Contains the
  # name and version requirements of the gem that either conflicts with
  # already activated gems or that RubyGems is otherwise unable to activate.

  class LoadError < ::LoadError

    # Name of gem
    attr_accessor :name

    # Version requirement of gem
    attr_accessor :requirement

  end

  ##
  # Raised when trying to activate a gem, and that gem does not exist on the
  # system.  Instead of rescuing from this class, make sure to rescue from the
  # superclass Gem::LoadError to catch all types of load errors.
  class MissingSpecError < Gem::LoadError

    def initialize(name, requirement)
      @name        = name
      @requirement = requirement
    end

    def message # :nodoc:
      build_message +
        "Checked in 'GEM_PATH=#{Gem.path.join(File::PATH_SEPARATOR)}', execute `gem env` for more information"
    end

    private

    def build_message
      total = Gem::Specification.stubs.size
      "Could not find '#{name}' (#{requirement}) among #{total} total gem(s)\n"
    end

  end

  ##
  # Raised when trying to activate a gem, and the gem exists on the system, but
  # not the requested version. Instead of rescuing from this class, make sure to
  # rescue from the superclass Gem::LoadError to catch all types of load errors.
  class MissingSpecVersionError < MissingSpecError

    attr_reader :specs

    def initialize(name, requirement, specs)
      super(name, requirement)
      @specs = specs
    end

    private

    def build_message
      if name == "bundler" && message = Gem::BundlerVersionFinder.missing_version_message
        return message
      end
      names = specs.map(&:full_name)
      "Could not find '#{name}' (#{requirement}) - did find: [#{names.join ','}]\n"
    end

  end

  # Raised when there are conflicting gem specs loaded

  class ConflictError < LoadError

    ##
    # A Hash mapping conflicting specifications to the dependencies that
    # caused the conflict

    attr_reader :conflicts

    ##
    # The specification that had the conflict

    attr_reader :target

    def initialize(target, conflicts)
      @target    = target
      @conflicts = conflicts
      @name      = target.name

      reason = conflicts.map do |act, dependencies|
        "#{act.full_name} conflicts with #{dependencies.join(", ")}"
      end.join ", "

      # TODO: improve message by saying who activated `con`

      super("Unable to activate #{target.full_name}, because #{reason}")
    end

  end

  class ErrorReason; end

  # Generated when trying to lookup a gem to indicate that the gem
  # was found, but that it isn't usable on the current platform.
  #
  # fetch and install read these and report them to the user to aid
  # in figuring out why a gem couldn't be installed.
  #
  class PlatformMismatch < ErrorReason

    ##
    # the name of the gem
    attr_reader :name

    ##
    # the version
    attr_reader :version

    ##
    # The platforms that are mismatched
    attr_reader :platforms

    def initialize(name, version)
      @name = name
      @version = version
      @platforms = []
    end

    ##
    # append a platform to the list of mismatched platforms.
    #
    # Platforms are added via this instead of injected via the constructor
    # so that we can loop over a list of mismatches and just add them rather
    # than perform some kind of calculation mismatch summary before creation.
    def add_platform(platform)
      @platforms << platform
    end

    ##
    # A wordy description of the error.
    def wordy
      "Found %s (%s), but was for platform%s %s" %
        [@name,
         @version,
         @platforms.size == 1 ? '' : 's',
         @platforms.join(' ,')]
    end

  end

  ##
  # An error that indicates we weren't able to fetch some
  # data from a source

  class SourceFetchProblem < ErrorReason

    ##
    # Creates a new SourceFetchProblem for the given +source+ and +error+.

    def initialize(source, error)
      @source = source
      @error = error
    end

    ##
    # The source that had the fetch problem.

    attr_reader :source

    ##
    # The fetch error which is an Exception subclass.

    attr_reader :error

    ##
    # An English description of the error.

    def wordy
      @source.uri.password = 'REDACTED' unless @source.uri.password.nil?
      "Unable to download data from #{@source.uri} - #{@error.message}"
    end

    ##
    # The "exception" alias allows you to call raise on a SourceFetchProblem.

    alias exception error

  end
end
PK7H[���!!(share/rubygems/rubygems/specification.rbnu�[���# frozen_string_literal: true
# -*- coding: utf-8 -*-
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/version'
require 'rubygems/requirement'
require 'rubygems/platform'
require 'rubygems/deprecate'
require 'rubygems/basic_specification'
require 'rubygems/stub_specification'
require 'rubygems/specification_policy'
require 'rubygems/util/list'

##
# The Specification class contains the information for a gem.  Typically
# defined in a .gemspec file or a Rakefile, and looks like this:
#
#   Gem::Specification.new do |s|
#     s.name        = 'example'
#     s.version     = '0.1.0'
#     s.licenses    = ['MIT']
#     s.summary     = "This is an example!"
#     s.description = "Much longer explanation of the example!"
#     s.authors     = ["Ruby Coder"]
#     s.email       = 'rubycoder@example.com'
#     s.files       = ["lib/example.rb"]
#     s.homepage    = 'https://rubygems.org/gems/example'
#     s.metadata    = { "source_code_uri" => "https://github.com/example/example" }
#   end
#
# Starting in RubyGems 2.0, a Specification can hold arbitrary
# metadata.  See #metadata for restrictions on the format and size of metadata
# items you may add to a specification.

class Gem::Specification < Gem::BasicSpecification

  extend Gem::Deprecate

  # REFACTOR: Consider breaking out this version stuff into a separate
  # module. There's enough special stuff around it that it may justify
  # a separate class.

  ##
  # The version number of a specification that does not specify one
  # (i.e. RubyGems 0.7 or earlier).

  NONEXISTENT_SPECIFICATION_VERSION = -1

  ##
  # The specification version applied to any new Specification instances
  # created.  This should be bumped whenever something in the spec format
  # changes.
  #
  # Specification Version History:
  #
  #   spec   ruby
  #    ver    ver yyyy-mm-dd description
  #     -1 <0.8.0            pre-spec-version-history
  #      1  0.8.0 2004-08-01 Deprecated "test_suite_file" for "test_files"
  #                          "test_file=x" is a shortcut for "test_files=[x]"
  #      2  0.9.5 2007-10-01 Added "required_rubygems_version"
  #                          Now forward-compatible with future versions
  #      3  1.3.2 2009-01-03 Added Fixnum validation to specification_version
  #      4  1.9.0 2011-06-07 Added metadata
  #--
  # When updating this number, be sure to also update #to_ruby.
  #
  # NOTE RubyGems < 1.2 cannot load specification versions > 2.

  CURRENT_SPECIFICATION_VERSION = 4 # :nodoc:

  ##
  # An informal list of changes to the specification.  The highest-valued
  # key should be equal to the CURRENT_SPECIFICATION_VERSION.

  SPECIFICATION_VERSION_HISTORY = { # :nodoc:
    -1 => ['(RubyGems versions up to and including 0.7 did not have versioned specifications)'],
    1  => [
      'Deprecated "test_suite_file" in favor of the new, but equivalent, "test_files"',
      '"test_file=x" is a shortcut for "test_files=[x]"'
    ],
    2 => [
      'Added "required_rubygems_version"',
      'Now forward-compatible with future versions',
    ],
    3 => [
      'Added Fixnum validation to the specification_version'
    ],
    4 => [
      'Added sandboxed freeform metadata to the specification version.'
    ]
  }.freeze

  MARSHAL_FIELDS = { # :nodoc:
    -1 => 16,
     1 => 16,
     2 => 16,
     3 => 17,
     4 => 18,
  }.freeze

  today = Time.now.utc
  TODAY = Time.utc(today.year, today.month, today.day) # :nodoc:

  # rubocop:disable Style/MutableConstant
  LOAD_CACHE = {} # :nodoc:
  # rubocop:enable Style/MutableConstant
  LOAD_CACHE_MUTEX = Mutex.new

  private_constant :LOAD_CACHE if defined? private_constant

  VALID_NAME_PATTERN = /\A[a-zA-Z0-9\.\-\_]+\z/.freeze # :nodoc:

  # :startdoc:

  ##
  # List of attribute names: [:name, :version, ...]

  @@required_attributes = [:rubygems_version,
                           :specification_version,
                           :name,
                           :version,
                           :date,
                           :summary,
                           :require_paths]

  ##
  # Map of attribute names to default values.

  @@default_value = {
    :authors                   => [],
    :autorequire               => nil,
    :bindir                    => 'bin',
    :cert_chain                => [],
    :date                      => nil,
    :dependencies              => [],
    :description               => nil,
    :email                     => nil,
    :executables               => [],
    :extensions                => [],
    :extra_rdoc_files          => [],
    :files                     => [],
    :homepage                  => nil,
    :licenses                  => [],
    :metadata                  => {},
    :name                      => nil,
    :platform                  => Gem::Platform::RUBY,
    :post_install_message      => nil,
    :rdoc_options              => [],
    :require_paths             => ['lib'],
    :required_ruby_version     => Gem::Requirement.default,
    :required_rubygems_version => Gem::Requirement.default,
    :requirements              => [],
    :rubygems_version          => Gem::VERSION,
    :signing_key               => nil,
    :specification_version     => CURRENT_SPECIFICATION_VERSION,
    :summary                   => nil,
    :test_files                => [],
    :version                   => nil,
  }.freeze

  # rubocop:disable Style/MutableConstant
  INITIALIZE_CODE_FOR_DEFAULTS = { } # :nodoc:
  # rubocop:enable Style/MutableConstant

  @@default_value.each do |k,v|
    INITIALIZE_CODE_FOR_DEFAULTS[k] = case v
                                      when [], {}, true, false, nil, Numeric, Symbol
                                        v.inspect
                                      when String
                                        v.dump
                                      when Numeric
                                        "default_value(:#{k})"
                                      else
                                        "default_value(:#{k}).dup"
                                      end
  end

  @@attributes = @@default_value.keys.sort_by { |s| s.to_s }
  @@array_attributes = @@default_value.reject { |k,v| v != [] }.keys
  @@nil_attributes, @@non_nil_attributes = @@default_value.keys.partition do |k|
    @@default_value[k].nil?
  end

  @@stubs_by_name = {}

  # Sentinel object to represent "not found" stubs
  NOT_FOUND = Struct.new(:to_spec, :this).new # :nodoc:
  @@spec_with_requirable_file = {}
  @@active_stub_with_requirable_file = {}

  # Tracking removed method calls to warn users during build time.
  REMOVED_METHODS = [:rubyforge_project=].freeze # :nodoc:
  def removed_method_calls
    @removed_method_calls ||= []
  end

  ######################################################################
  # :section: Required gemspec attributes

  ##
  # This gem's name.
  #
  # Usage:
  #
  #   spec.name = 'rake'

  attr_accessor :name

  ##
  # This gem's version.
  #
  # The version string can contain numbers and periods, such as +1.0.0+.
  # A gem is a 'prerelease' gem if the version has a letter in it, such as
  # +1.0.0.pre+.
  #
  # Usage:
  #
  #   spec.version = '0.4.1'

  attr_reader :version

  ##
  # A short summary of this gem's description.  Displayed in `gem list -d`.
  #
  # The #description should be more detailed than the summary.
  #
  # Usage:
  #
  #   spec.summary = "This is a small summary of my gem"

  attr_reader :summary

  ##
  # Files included in this gem.  You cannot append to this accessor, you must
  # assign to it.
  #
  # Only add files you can require to this list, not directories, etc.
  #
  # Directories are automatically stripped from this list when building a gem,
  # other non-files cause an error.
  #
  # Usage:
  #
  #   require 'rake'
  #   spec.files = FileList['lib/**/*.rb',
  #                         'bin/*',
  #                         '[A-Z]*',
  #                         'test/**/*'].to_a
  #
  #   # or without Rake...
  #   spec.files = Dir['lib/**/*.rb'] + Dir['bin/*']
  #   spec.files += Dir['[A-Z]*'] + Dir['test/**/*']
  #   spec.files.reject! { |fn| fn.include? "CVS" }

  def files
    # DO NOT CHANGE TO ||= ! This is not a normal accessor. (yes, it sucks)
    # DOC: Why isn't it normal? Why does it suck? How can we fix this?
    @files = [@files,
              @test_files,
              add_bindir(@executables),
              @extra_rdoc_files,
              @extensions,
             ].flatten.compact.uniq.sort
  end

  ##
  # A list of authors for this gem.
  #
  # Alternatively, a single author can be specified by assigning a string to
  # `spec.author`
  #
  # Usage:
  #
  #   spec.authors = ['John Jones', 'Mary Smith']

  def authors=(value)
    @authors = Array(value).flatten.grep(String)
  end

  ######################################################################
  # :section: Recommended gemspec attributes

  ##
  # A long description of this gem
  #
  # The description should be more detailed than the summary but not
  # excessively long.  A few paragraphs is a recommended length with no
  # examples or formatting.
  #
  # Usage:
  #
  #   spec.description = <<-EOF
  #     Rake is a Make-like program implemented in Ruby. Tasks and
  #     dependencies are specified in standard Ruby syntax.
  #   EOF

  attr_reader :description

  ##
  # A contact email address (or addresses) for this gem
  #
  # Usage:
  #
  #   spec.email = 'john.jones@example.com'
  #   spec.email = ['jack@example.com', 'jill@example.com']

  attr_accessor :email

  ##
  # The URL of this gem's home page
  #
  # Usage:
  #
  #   spec.homepage = 'https://github.com/ruby/rake'

  attr_accessor :homepage

  ##
  # The license for this gem.
  #
  # The license must be no more than 64 characters.
  #
  # This should just be the name of your license. The full text of the license
  # should be inside of the gem (at the top level) when you build it.
  #
  # The simplest way, is to specify the standard SPDX ID
  # https://spdx.org/licenses/ for the license.
  # Ideally you should pick one that is OSI (Open Source Initiative)
  # http://opensource.org/licenses/alphabetical approved.
  #
  # The most commonly used OSI approved licenses are MIT and Apache-2.0.
  # GitHub also provides a license picker at http://choosealicense.com/.
  #
  # You should specify a license for your gem so that people know how they are
  # permitted to use it, and any restrictions you're placing on it.  Not
  # specifying a license means all rights are reserved; others have no rights
  # to use the code for any purpose.
  #
  # You can set multiple licenses with #licenses=
  #
  # Usage:
  #   spec.license = 'MIT'

  def license=(o)
    self.licenses = [o]
  end

  ##
  # The license(s) for the library.
  #
  # Each license must be a short name, no more than 64 characters.
  #
  # This should just be the name of your license. The full
  # text of the license should be inside of the gem when you build it.
  #
  # See #license= for more discussion
  #
  # Usage:
  #   spec.licenses = ['MIT', 'GPL-2.0']

  def licenses=(licenses)
    @licenses = Array licenses
  end

  ##
  # The metadata holds extra data for this gem that may be useful to other
  # consumers and is settable by gem authors.
  #
  # Metadata items have the following restrictions:
  #
  # * The metadata must be a Hash object
  # * All keys and values must be Strings
  # * Keys can be a maximum of 128 bytes and values can be a maximum of 1024
  #   bytes
  # * All strings must be UTF-8, no binary data is allowed
  #
  # You can use metadata to specify links to your gem's homepage, codebase,
  # documentation, wiki, mailing list, issue tracker and changelog.
  #
  #   s.metadata = {
  #     "bug_tracker_uri"   => "https://example.com/user/bestgemever/issues",
  #     "changelog_uri"     => "https://example.com/user/bestgemever/CHANGELOG.md",
  #     "documentation_uri" => "https://www.example.info/gems/bestgemever/0.0.1",
  #     "homepage_uri"      => "https://bestgemever.example.io",
  #     "mailing_list_uri"  => "https://groups.example.com/bestgemever",
  #     "source_code_uri"   => "https://example.com/user/bestgemever",
  #     "wiki_uri"          => "https://example.com/user/bestgemever/wiki"
  #   }
  #
  # These links will be used on your gem's page on rubygems.org and must pass
  # validation against following regex.
  #
  #   %r{\Ahttps?:\/\/([^\s:@]+:[^\s:@]*@)?[A-Za-z\d\-]+(\.[A-Za-z\d\-]+)+\.?(:\d{1,5})?([\/?]\S*)?\z}

  attr_accessor :metadata

  ######################################################################
  # :section: Optional gemspec attributes

  ##
  # Singular (alternative) writer for #authors
  #
  # Usage:
  #
  #   spec.author = 'John Jones'

  def author=(o)
    self.authors = [o]
  end

  ##
  # The path in the gem for executable scripts.  Usually 'bin'
  #
  # Usage:
  #
  #   spec.bindir = 'bin'

  attr_accessor :bindir

  ##
  # The certificate chain used to sign this gem.  See Gem::Security for
  # details.

  attr_accessor :cert_chain

  ##
  # A message that gets displayed after the gem is installed.
  #
  # Usage:
  #
  #   spec.post_install_message = "Thanks for installing!"

  attr_accessor :post_install_message

  ##
  # The platform this gem runs on.
  #
  # This is usually Gem::Platform::RUBY or Gem::Platform::CURRENT.
  #
  # Most gems contain pure Ruby code; they should simply leave the default
  # value in place.  Some gems contain C (or other) code to be compiled into a
  # Ruby "extension".  The gem should leave the default value in place unless
  # the code will only compile on a certain type of system.  Some gems consist
  # of pre-compiled code ("binary gems").  It's especially important that they
  # set the platform attribute appropriately.  A shortcut is to set the
  # platform to Gem::Platform::CURRENT, which will cause the gem builder to set
  # the platform to the appropriate value for the system on which the build is
  # being performed.
  #
  # If this attribute is set to a non-default value, it will be included in
  # the filename of the gem when it is built such as:
  # nokogiri-1.6.0-x86-mingw32.gem
  #
  # Usage:
  #
  #   spec.platform = Gem::Platform.local

  def platform=(platform)
    if @original_platform.nil? or
       @original_platform == Gem::Platform::RUBY
      @original_platform = platform
    end

    case platform
    when Gem::Platform::CURRENT then
      @new_platform = Gem::Platform.local
      @original_platform = @new_platform.to_s

    when Gem::Platform then
      @new_platform = platform

    # legacy constants
    when nil, Gem::Platform::RUBY then
      @new_platform = Gem::Platform::RUBY
    when 'mswin32' then # was Gem::Platform::WIN32
      @new_platform = Gem::Platform.new 'x86-mswin32'
    when 'i586-linux' then # was Gem::Platform::LINUX_586
      @new_platform = Gem::Platform.new 'x86-linux'
    when 'powerpc-darwin' then # was Gem::Platform::DARWIN
      @new_platform = Gem::Platform.new 'ppc-darwin'
    else
      @new_platform = Gem::Platform.new platform
    end

    @platform = @new_platform.to_s

    invalidate_memoized_attributes

    @new_platform
  end

  ##
  # Paths in the gem to add to <code>$LOAD_PATH</code> when this gem is
  # activated.
  #--
  # See also #require_paths
  #++
  # If you have an extension you do not need to add <code>"ext"</code> to the
  # require path, the extension build process will copy the extension files
  # into "lib" for you.
  #
  # The default value is <code>"lib"</code>
  #
  # Usage:
  #
  #   # If all library files are in the root directory...
  #   spec.require_paths = ['.']

  def require_paths=(val)
    @require_paths = Array(val)
  end

  ##
  # The version of Ruby required by this gem

  attr_reader :required_ruby_version

  ##
  # The RubyGems version required by this gem

  attr_reader :required_rubygems_version

  ##
  # The version of RubyGems used to create this gem.
  #
  # Do not set this, it is set automatically when the gem is packaged.

  attr_accessor :rubygems_version

  ##
  # The key used to sign this gem.  See Gem::Security for details.

  attr_accessor :signing_key

  ##
  # Adds a development dependency named +gem+ with +requirements+ to this
  # gem.
  #
  # Usage:
  #
  #   spec.add_development_dependency 'example', '~> 1.1', '>= 1.1.4'
  #
  # Development dependencies aren't installed by default and aren't
  # activated when a gem is required.

  def add_development_dependency(gem, *requirements)
    add_dependency_with_type(gem, :development, requirements)
  end

  ##
  # Adds a runtime dependency named +gem+ with +requirements+ to this gem.
  #
  # Usage:
  #
  #   spec.add_runtime_dependency 'example', '~> 1.1', '>= 1.1.4'

  def add_runtime_dependency(gem, *requirements)
    add_dependency_with_type(gem, :runtime, requirements)
  end

  ##
  # Executables included in the gem.
  #
  # For example, the rake gem has rake as an executable. You don’t specify the
  # full path (as in bin/rake); all application-style files are expected to be
  # found in bindir.  These files must be executable Ruby files.  Files that
  # use bash or other interpreters will not work.
  #
  # Executables included may only be ruby scripts, not scripts for other
  # languages or compiled binaries.
  #
  # Usage:
  #
  #   spec.executables << 'rake'

  def executables
    @executables ||= []
  end

  ##
  # Extensions to build when installing the gem, specifically the paths to
  # extconf.rb-style files used to compile extensions.
  #
  # These files will be run when the gem is installed, causing the C (or
  # whatever) code to be compiled on the user’s machine.
  #
  # Usage:
  #
  #  spec.extensions << 'ext/rmagic/extconf.rb'
  #
  # See Gem::Ext::Builder for information about writing extensions for gems.

  def extensions
    @extensions ||= []
  end

  ##
  # Extra files to add to RDoc such as README or doc/examples.txt
  #
  # When the user elects to generate the RDoc documentation for a gem (typically
  # at install time), all the library files are sent to RDoc for processing.
  # This option allows you to have some non-code files included for a more
  # complete set of documentation.
  #
  # Usage:
  #
  #  spec.extra_rdoc_files = ['README', 'doc/user-guide.txt']

  def extra_rdoc_files
    @extra_rdoc_files ||= []
  end

  ##
  # The version of RubyGems that installed this gem.  Returns
  # <code>Gem::Version.new(0)</code> for gems installed by versions earlier
  # than RubyGems 2.2.0.

  def installed_by_version # :nodoc:
    @installed_by_version ||= Gem::Version.new(0)
  end

  ##
  # Sets the version of RubyGems that installed this gem.  See also
  # #installed_by_version.

  def installed_by_version=(version) # :nodoc:
    @installed_by_version = Gem::Version.new version
  end

  ##
  # Specifies the rdoc options to be used when generating API documentation.
  #
  # Usage:
  #
  #   spec.rdoc_options << '--title' << 'Rake -- Ruby Make' <<
  #     '--main' << 'README' <<
  #     '--line-numbers'

  def rdoc_options
    @rdoc_options ||= []
  end

  ##
  # The version of Ruby required by this gem.  The ruby version can be
  # specified to the patch-level:
  #
  #   $ ruby -v -e 'p Gem.ruby_version'
  #   ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin12.4.0]
  #   #<Gem::Version "2.0.0.247">
  #
  # Prereleases can also be specified.
  #
  # Usage:
  #
  #  # This gem will work with 1.8.6 or greater...
  #  spec.required_ruby_version = '>= 1.8.6'
  #
  #  # Only with final releases of major version 2 where minor version is at least 3
  #  spec.required_ruby_version = '~> 2.3'
  #
  #  # Only prereleases or final releases after 2.6.0.preview2
  #  spec.required_ruby_version = '> 2.6.0.preview2'

  def required_ruby_version=(req)
    @required_ruby_version = Gem::Requirement.create req
  end

  ##
  # The RubyGems version required by this gem

  def required_rubygems_version=(req)
    @required_rubygems_version = Gem::Requirement.create req
  end

  ##
  # Lists the external (to RubyGems) requirements that must be met for this gem
  # to work.  It's simply information for the user.
  #
  # Usage:
  #
  #   spec.requirements << 'libmagick, v6.0'
  #   spec.requirements << 'A good graphics card'

  def requirements
    @requirements ||= []
  end

  ##
  # A collection of unit test files.  They will be loaded as unit tests when
  # the user requests a gem to be unit tested.
  #
  # Usage:
  #   spec.test_files = Dir.glob('test/tc_*.rb')
  #   spec.test_files = ['tests/test-suite.rb']

  def test_files=(files) # :nodoc:
    @test_files = Array files
  end

  ######################################################################
  # :section: Specification internals

  ##
  # True when this gemspec has been activated. This attribute is not persisted.

  attr_accessor :activated

  alias :activated? :activated

  ##
  # Autorequire was used by old RubyGems to automatically require a file.
  #
  # Deprecated: It is neither supported nor functional.

  attr_accessor :autorequire # :nodoc:

  ##
  # Sets the default executable for this gem.
  #
  # Deprecated: You must now specify the executable name to  Gem.bin_path.

  attr_writer :default_executable
  deprecate :default_executable=, :none,       2018, 12

  ##
  # Allows deinstallation of gems with legacy platforms.

  attr_writer :original_platform # :nodoc:

  ##
  # The Gem::Specification version of this gemspec.
  #
  # Do not set this, it is set automatically when the gem is packaged.

  attr_accessor :specification_version

  def self._all # :nodoc:
    unless defined?(@@all) && @@all
      @@all = stubs.map(&:to_spec)

      # After a reset, make sure already loaded specs
      # are still marked as activated.
      specs = {}
      Gem.loaded_specs.each_value{|s| specs[s] = true}
      @@all.each{|s| s.activated = true if specs[s]}
    end
    @@all
  end

  def self._clear_load_cache # :nodoc:
    LOAD_CACHE_MUTEX.synchronize do
      LOAD_CACHE.clear
    end
  end

  def self.each_gemspec(dirs) # :nodoc:
    dirs.each do |dir|
      Gem::Util.glob_files_in_dir("*.gemspec", dir).each do |path|
        yield path.tap(&Gem::UNTAINT)
      end
    end
  end

  def self.gemspec_stubs_in(dir, pattern)
    Gem::Util.glob_files_in_dir(pattern, dir).map { |path| yield path }.select(&:valid?)
  end
  private_class_method :gemspec_stubs_in

  def self.installed_stubs(dirs, pattern)
    map_stubs(dirs, pattern) do |path, base_dir, gems_dir|
      Gem::StubSpecification.gemspec_stub(path, base_dir, gems_dir)
    end
  end
  private_class_method :installed_stubs

  def self.map_stubs(dirs, pattern) # :nodoc:
    dirs.flat_map do |dir|
      base_dir = File.dirname dir
      gems_dir = File.join base_dir, "gems"
      gemspec_stubs_in(dir, pattern) { |path| yield path, base_dir, gems_dir }
    end
  end
  private_class_method :map_stubs

  def self.uniq_by(list, &block) # :nodoc:
    list.uniq(&block)
  end
  private_class_method :uniq_by

  def self.sort_by!(list, &block)
    list.sort_by!(&block)
  end
  private_class_method :sort_by!

  def self.each_spec(dirs) # :nodoc:
    each_gemspec(dirs) do |path|
      spec = self.load path
      yield spec if spec
    end
  end

  ##
  # Returns a Gem::StubSpecification for every installed gem

  def self.stubs
    @@stubs ||= begin
      pattern = "*.gemspec"
      stubs = Gem.loaded_specs.values + installed_stubs(dirs, pattern) + default_stubs(pattern)
      stubs = uniq_by(stubs) { |stub| stub.full_name }

      _resort!(stubs)
      @@stubs_by_name = stubs.select { |s| Gem::Platform.match s.platform }.group_by(&:name)
      stubs
    end
  end

  ##
  # Returns a Gem::StubSpecification for default gems

  def self.default_stubs(pattern = "*.gemspec")
    base_dir = Gem.default_dir
    gems_dir = File.join base_dir, "gems"
    gemspec_stubs_in(Gem.default_specifications_dir, pattern) do |path|
      Gem::StubSpecification.default_gemspec_stub(path, base_dir, gems_dir)
    end
  end

  EMPTY = [].freeze # :nodoc:

  ##
  # Returns a Gem::StubSpecification for installed gem named +name+
  # only returns stubs that match Gem.platforms

  def self.stubs_for(name)
    if @@stubs
      @@stubs_by_name[name] || []
    else
      pattern = "#{name}-*.gemspec"
      stubs = Gem.loaded_specs.values +
        installed_stubs(dirs, pattern).select { |s| Gem::Platform.match s.platform } +
        default_stubs(pattern)
      stubs = uniq_by(stubs) { |stub| stub.full_name }.group_by(&:name)
      stubs.each_value { |v| _resort!(v) }

      @@stubs_by_name.merge! stubs
      @@stubs_by_name[name] ||= EMPTY
    end
  end

  def self._resort!(specs) # :nodoc:
    specs.sort! do |a, b|
      names = a.name <=> b.name
      next names if names.nonzero?
      b.version <=> a.version
    end
  end

  ##
  # Loads the default specifications. It should be called only once.

  def self.load_defaults
    each_spec([Gem.default_specifications_dir]) do |spec|
      # #load returns nil if the spec is bad, so we just ignore
      # it at this stage
      Gem.register_default_spec(spec)
    end
  end

  ##
  # Returns all specifications. This method is discouraged from use.
  # You probably want to use one of the Enumerable methods instead.

  def self.all
    warn "NOTE: Specification.all called from #{caller.first}" unless
      Gem::Deprecate.skip
    _all
  end

  ##
  # Sets the known specs to +specs+. Not guaranteed to work for you in
  # the future. Use at your own risk. Caveat emptor. Doomy doom doom.
  # Etc etc.
  #
  #--
  # Makes +specs+ the known specs
  # Listen, time is a river
  # Winter comes, code breaks
  #
  # -- wilsonb

  def self.all=(specs)
    @@stubs_by_name = specs.group_by(&:name)
    @@all = @@stubs = specs
  end

  ##
  # Return full names of all specs in sorted order.

  def self.all_names
    self._all.map(&:full_name)
  end

  ##
  # Return the list of all array-oriented instance variables.
  #--
  # Not sure why we need to use so much stupid reflection in here...

  def self.array_attributes
    @@array_attributes.dup
  end

  ##
  # Return the list of all instance variables.
  #--
  # Not sure why we need to use so much stupid reflection in here...

  def self.attribute_names
    @@attributes.dup
  end

  ##
  # Return the directories that Specification uses to find specs.

  def self.dirs
    @@dirs ||= Gem.path.collect do |dir|
      File.join dir.dup.tap(&Gem::UNTAINT), "specifications"
    end
  end

  ##
  # Set the directories that Specification uses to find specs. Setting
  # this resets the list of known specs.

  def self.dirs=(dirs)
    self.reset

    @@dirs = Array(dirs).map { |dir| File.join dir, "specifications" }
  end

  extend Enumerable

  ##
  # Enumerate every known spec.  See ::dirs= and ::add_spec to set the list of
  # specs.

  def self.each
    return enum_for(:each) unless block_given?

    self._all.each do |x|
      yield x
    end
  end

  ##
  # Returns every spec that matches +name+ and optional +requirements+.

  def self.find_all_by_name(name, *requirements)
    requirements = Gem::Requirement.default if requirements.empty?

    # TODO: maybe try: find_all { |s| spec === dep }

    Gem::Dependency.new(name, *requirements).matching_specs
  end

  ##
  # Returns every spec that has the given +full_name+

  def self.find_all_by_full_name(full_name)
    stubs.select {|s| s.full_name == full_name }.map(&:to_spec)
  end

  ##
  # Find the best specification matching a +name+ and +requirements+. Raises
  # if the dependency doesn't resolve to a valid specification.

  def self.find_by_name(name, *requirements)
    requirements = Gem::Requirement.default if requirements.empty?

    # TODO: maybe try: find { |s| spec === dep }

    Gem::Dependency.new(name, *requirements).to_spec
  end

  ##
  # Return the best specification that contains the file matching +path+.

  def self.find_by_path(path)
    path = path.dup.freeze
    spec = @@spec_with_requirable_file[path] ||= (stubs.find do |s|
      next unless Gem::BundlerVersionFinder.compatible?(s)
      s.contains_requirable_file? path
    end || NOT_FOUND)
    spec.to_spec
  end

  ##
  # Return the best specification that contains the file matching +path+
  # amongst the specs that are not activated.

  def self.find_inactive_by_path(path)
    stub = stubs.find do |s|
      next if s.activated?
      next unless Gem::BundlerVersionFinder.compatible?(s)
      s.contains_requirable_file? path
    end
    stub && stub.to_spec
  end

  def self.find_active_stub_by_path(path)
    stub = @@active_stub_with_requirable_file[path] ||= (stubs.find do |s|
      s.activated? and s.contains_requirable_file? path
    end || NOT_FOUND)
    stub.this
  end

  ##
  # Return currently unresolved specs that contain the file matching +path+.

  def self.find_in_unresolved(path)
    # TODO: do we need these?? Kill it
    specs = unresolved_deps.values.map { |dep| dep.to_specs }.flatten

    specs.find_all { |spec| spec.contains_requirable_file? path }
  end

  ##
  # Search through all unresolved deps and sub-dependencies and return
  # specs that contain the file matching +path+.

  def self.find_in_unresolved_tree(path)
    specs = unresolved_deps.values.map { |dep| dep.to_specs }.flatten

    specs.each do |spec|
      spec.traverse do |from_spec, dep, to_spec, trail|
        if to_spec.has_conflicts? || to_spec.conficts_when_loaded_with?(trail)
          :next
        else
          return trail.reverse if to_spec.contains_requirable_file? path
        end
      end
    end

    []
  end

  ##
  # Special loader for YAML files.  When a Specification object is loaded
  # from a YAML file, it bypasses the normal Ruby object initialization
  # routine (#initialize).  This method makes up for that and deals with
  # gems of different ages.
  #
  # +input+ can be anything that YAML.load() accepts: String or IO.

  def self.from_yaml(input)
    Gem.load_yaml

    input = normalize_yaml_input input
    spec = Gem::SafeYAML.safe_load input

    if spec && spec.class == FalseClass
      raise Gem::EndOfYAMLException
    end

    unless Gem::Specification === spec
      raise Gem::Exception, "YAML data doesn't evaluate to gem specification"
    end

    spec.specification_version ||= NONEXISTENT_SPECIFICATION_VERSION
    spec.reset_nil_attributes_to_default

    spec
  end

  ##
  # Return the latest specs, optionally including prerelease specs if
  # +prerelease+ is true.

  def self.latest_specs(prerelease = false)
    _latest_specs Gem::Specification._all, prerelease
  end

  def self._latest_specs(specs, prerelease = false) # :nodoc:
    result = Hash.new { |h,k| h[k] = {} }
    native = {}

    specs.reverse_each do |spec|
      next if spec.version.prerelease? unless prerelease

      native[spec.name] = spec.version if spec.platform == Gem::Platform::RUBY
      result[spec.name][spec.platform] = spec
    end

    result.map(&:last).map(&:values).flatten.reject do |spec|
      minimum = native[spec.name]
      minimum && spec.version < minimum
    end.sort_by{ |tup| tup.name }
  end

  ##
  # Loads Ruby format gemspec from +file+.

  def self.load(file)
    return unless file

    _spec = LOAD_CACHE_MUTEX.synchronize { LOAD_CACHE[file] }
    return _spec if _spec

    file = file.dup.tap(&Gem::UNTAINT)
    return unless File.file?(file)

    code = File.read file, :mode => 'r:UTF-8:-'

    code.tap(&Gem::UNTAINT)

    begin
      _spec = eval code, binding, file

      if Gem::Specification === _spec
        _spec.loaded_from = File.expand_path file.to_s
        LOAD_CACHE_MUTEX.synchronize do
          prev = LOAD_CACHE[file]
          if prev
            _spec = prev
          else
            LOAD_CACHE[file] = _spec
          end
        end
        return _spec
      end

      warn "[#{file}] isn't a Gem::Specification (#{_spec.class} instead)."
    rescue SignalException, SystemExit
      raise
    rescue SyntaxError, Exception => e
      warn "Invalid gemspec in [#{file}]: #{e}"
    end

    nil
  end

  ##
  # Specification attributes that must be non-nil

  def self.non_nil_attributes
    @@non_nil_attributes.dup
  end

  ##
  # Make sure the YAML specification is properly formatted with dashes

  def self.normalize_yaml_input(input)
    result = input.respond_to?(:read) ? input.read : input
    result = "--- " + result unless result =~ /\A--- /
    result = result.dup
    result.gsub!(/ !!null \n/, " \n")
    # date: 2011-04-26 00:00:00.000000000Z
    # date: 2011-04-26 00:00:00.000000000 Z
    result.gsub!(/^(date: \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d+?)Z/, '\1 Z')
    result
  end

  ##
  # Return a list of all outdated local gem names.  This method is HEAVY
  # as it must go fetch specifications from the server.
  #
  # Use outdated_and_latest_version if you wish to retrieve the latest remote
  # version as well.

  def self.outdated
    outdated_and_latest_version.map { |local, _| local.name }
  end

  ##
  # Enumerates the outdated local gems yielding the local specification and
  # the latest remote version.
  #
  # This method may take some time to return as it must check each local gem
  # against the server's index.

  def self.outdated_and_latest_version
    return enum_for __method__ unless block_given?

    # TODO: maybe we should switch to rubygems' version service?
    fetcher = Gem::SpecFetcher.fetcher

    latest_specs(true).each do |local_spec|
      dependency =
        Gem::Dependency.new local_spec.name, ">= #{local_spec.version}"

      remotes, = fetcher.search_for_dependency dependency
      remotes  = remotes.map { |n, _| n.version }

      latest_remote = remotes.sort.last

      yield [local_spec, latest_remote] if
        latest_remote and local_spec.version < latest_remote
    end

    nil
  end

  ##
  # Is +name+ a required attribute?

  def self.required_attribute?(name)
    @@required_attributes.include? name.to_sym
  end

  ##
  # Required specification attributes

  def self.required_attributes
    @@required_attributes.dup
  end

  ##
  # Reset the list of known specs, running pre and post reset hooks
  # registered in Gem.

  def self.reset
    @@dirs = nil
    Gem.pre_reset_hooks.each { |hook| hook.call }
    @@all = nil
    @@stubs = nil
    @@stubs_by_name = {}
    @@spec_with_requirable_file = {}
    @@active_stub_with_requirable_file = {}
    _clear_load_cache
    unresolved = unresolved_deps
    unless unresolved.empty?
      w = "W" + "ARN"
      warn "#{w}: Unresolved or ambiguous specs during Gem::Specification.reset:"
      unresolved.values.each do |dep|
        warn "      #{dep}"

        versions = find_all_by_name(dep.name)
        unless versions.empty?
          warn "      Available/installed versions of this gem:"
          versions.each { |s| warn "      - #{s.version}" }
        end
      end
      warn "#{w}: Clearing out unresolved specs. Try 'gem cleanup <gem>'"
      warn "Please report a bug if this causes problems."
      unresolved.clear
    end
    Gem.post_reset_hooks.each { |hook| hook.call }
  end

  # DOC: This method needs documented or nodoc'd
  def self.unresolved_deps
    @unresolved_deps ||= Hash.new { |h, n| h[n] = Gem::Dependency.new n }
  end

  ##
  # Load custom marshal format, re-initializing defaults as needed

  def self._load(str)
    Gem.load_yaml

    array = Marshal.load str

    spec = Gem::Specification.new
    spec.instance_variable_set :@specification_version, array[1]

    current_version = CURRENT_SPECIFICATION_VERSION

    field_count = if spec.specification_version > current_version
                    spec.instance_variable_set :@specification_version,
                                               current_version
                    MARSHAL_FIELDS[current_version]
                  else
                    MARSHAL_FIELDS[spec.specification_version]
                  end

    if array.size < field_count
      raise TypeError, "invalid Gem::Specification format #{array.inspect}"
    end

    # Cleanup any YAML::PrivateType. They only show up for an old bug
    # where nil => null, so just convert them to nil based on the type.

    array.map! { |e| e.kind_of?(YAML::PrivateType) ? nil : e }

    spec.instance_variable_set :@rubygems_version,          array[0]
    # spec version
    spec.instance_variable_set :@name,                      array[2]
    spec.instance_variable_set :@version,                   array[3]
    spec.date =                                             array[4]
    spec.instance_variable_set :@summary,                   array[5]
    spec.instance_variable_set :@required_ruby_version,     array[6]
    spec.instance_variable_set :@required_rubygems_version, array[7]
    spec.instance_variable_set :@original_platform,         array[8]
    spec.instance_variable_set :@dependencies,              array[9]
    # offset due to rubyforge_project removal
    spec.instance_variable_set :@email,                     array[11]
    spec.instance_variable_set :@authors,                   array[12]
    spec.instance_variable_set :@description,               array[13]
    spec.instance_variable_set :@homepage,                  array[14]
    spec.instance_variable_set :@has_rdoc,                  array[15]
    spec.instance_variable_set :@new_platform,              array[16]
    spec.instance_variable_set :@platform,                  array[16].to_s
    spec.instance_variable_set :@license,                   array[17]
    spec.instance_variable_set :@metadata,                  array[18]
    spec.instance_variable_set :@loaded,                    false
    spec.instance_variable_set :@activated,                 false

    spec
  end

  def <=>(other) # :nodoc:
    sort_obj <=> other.sort_obj
  end

  def ==(other) # :nodoc:
    self.class === other &&
      name == other.name &&
      version == other.version &&
      platform == other.platform
  end

  ##
  # Dump only crucial instance variables.
  #--
  # MAINTAIN ORDER!
  # (down with the man)

  def _dump(limit)
    Marshal.dump [
      @rubygems_version,
      @specification_version,
      @name,
      @version,
      date,
      @summary,
      @required_ruby_version,
      @required_rubygems_version,
      @original_platform,
      @dependencies,
      '', # rubyforge_project
      @email,
      @authors,
      @description,
      @homepage,
      true, # has_rdoc
      @new_platform,
      @licenses,
      @metadata
    ]
  end

  ##
  # Activate this spec, registering it as a loaded spec and adding
  # it's lib paths to $LOAD_PATH. Returns true if the spec was
  # activated, false if it was previously activated. Freaks out if
  # there are conflicts upon activation.

  def activate
    other = Gem.loaded_specs[self.name]
    if other
      check_version_conflict other
      return false
    end

    raise_if_conflicts

    activate_dependencies
    add_self_to_load_path

    Gem.loaded_specs[self.name] = self
    @activated = true
    @loaded = true

    return true
  end

  ##
  # Activate all unambiguously resolved runtime dependencies of this
  # spec. Add any ambiguous dependencies to the unresolved list to be
  # resolved later, as needed.

  def activate_dependencies
    unresolved = Gem::Specification.unresolved_deps

    self.runtime_dependencies.each do |spec_dep|
      if loaded = Gem.loaded_specs[spec_dep.name]
        next if spec_dep.matches_spec? loaded

        msg = "can't satisfy '#{spec_dep}', already activated '#{loaded.full_name}'"
        e = Gem::LoadError.new msg
        e.name = spec_dep.name

        raise e
      end

      specs = spec_dep.to_specs

      if specs.size == 1
        specs.first.activate
      else
        name = spec_dep.name
        unresolved[name] = unresolved[name].merge spec_dep
      end
    end

    unresolved.delete self.name
  end

  ##
  # Abbreviate the spec for downloading.  Abbreviated specs are only used for
  # searching, downloading and related activities and do not need deployment
  # specific information (e.g. list of files).  So we abbreviate the spec,
  # making it much smaller for quicker downloads.

  def abbreviate
    self.files = []
    self.test_files = []
    self.rdoc_options = []
    self.extra_rdoc_files = []
    self.cert_chain = []
  end

  ##
  # Sanitize the descriptive fields in the spec.  Sometimes non-ASCII
  # characters will garble the site index.  Non-ASCII characters will
  # be replaced by their XML entity equivalent.

  def sanitize
    self.summary              = sanitize_string(summary)
    self.description          = sanitize_string(description)
    self.post_install_message = sanitize_string(post_install_message)
    self.authors              = authors.collect { |a| sanitize_string(a) }
  end

  ##
  # Sanitize a single string.

  def sanitize_string(string)
    return string unless string

    # HACK the #to_s is in here because RSpec has an Array of Arrays of
    # Strings for authors.  Need a way to disallow bad values on gemspec
    # generation.  (Probably won't happen.)
    string = string.to_s

    begin
      Builder::XChar.encode string
    rescue NameError, NoMethodError
      string.to_xs
    end
  end

  ##
  # Returns an array with bindir attached to each executable in the
  # +executables+ list

  def add_bindir(executables)
    return nil if executables.nil?

    if @bindir
      Array(executables).map { |e| File.join(@bindir, e) }
    else
      executables
    end
  rescue
    return nil
  end

  ##
  # Adds a dependency on gem +dependency+ with type +type+ that requires
  # +requirements+.  Valid types are currently <tt>:runtime</tt> and
  # <tt>:development</tt>.

  def add_dependency_with_type(dependency, type, requirements)
    requirements = if requirements.empty?
                     Gem::Requirement.default
                   else
                     requirements.flatten
                   end

    unless dependency.respond_to?(:name) &&
           dependency.respond_to?(:requirement)
      dependency = Gem::Dependency.new(dependency.to_s, requirements, type)
    end

    dependencies << dependency
  end

  private :add_dependency_with_type

  alias add_dependency add_runtime_dependency

  ##
  # Adds this spec's require paths to LOAD_PATH, in the proper location.

  def add_self_to_load_path
    return if default_gem?

    paths = full_require_paths

    Gem.add_to_load_path(*paths)
  end

  ##
  # Singular reader for #authors.  Returns the first author in the list

  def author
    val = authors and val.first
  end

  ##
  # The list of author names who wrote this gem.
  #
  #   spec.authors = ['Chad Fowler', 'Jim Weirich', 'Rich Kilmer']

  def authors
    @authors ||= []
  end

  ##
  # Returns the full path to installed gem's bin directory.
  #
  # NOTE: do not confuse this with +bindir+, which is just 'bin', not
  # a full path.

  def bin_dir
    @bin_dir ||= File.join gem_dir, bindir
  end

  ##
  # Returns the full path to an executable named +name+ in this gem.

  def bin_file(name)
    File.join bin_dir, name
  end

  ##
  # Returns the build_args used to install the gem

  def build_args
    if File.exist? build_info_file
      build_info = File.readlines build_info_file
      build_info = build_info.map { |x| x.strip }
      build_info.delete ""
      build_info
    else
      []
    end
  end

  ##
  # Builds extensions for this platform if the gem has extensions listed and
  # the gem.build_complete file is missing.

  def build_extensions # :nodoc:
    return if default_gem?
    return if extensions.empty?
    return if installed_by_version < Gem::Version.new('2.2.0.preview.2')
    return if File.exist? gem_build_complete_path
    return if !File.writable?(base_dir)
    return if !File.exist?(File.join(base_dir, 'extensions'))

    begin
      # We need to require things in $LOAD_PATH without looking for the
      # extension we are about to build.
      unresolved_deps = Gem::Specification.unresolved_deps.dup
      Gem::Specification.unresolved_deps.clear

      require 'rubygems/config_file'
      require 'rubygems/ext'
      require 'rubygems/user_interaction'

      ui = Gem::SilentUI.new
      Gem::DefaultUserInteraction.use_ui ui do
        builder = Gem::Ext::Builder.new self
        builder.build_extensions
      end
    ensure
      ui.close if ui
      Gem::Specification.unresolved_deps.replace unresolved_deps
    end
  end

  ##
  # Returns the full path to the build info directory

  def build_info_dir
    File.join base_dir, "build_info"
  end

  ##
  # Returns the full path to the file containing the build
  # information generated when the gem was installed

  def build_info_file
    File.join build_info_dir, "#{full_name}.info"
  end

  ##
  # Returns the full path to the cache directory containing this
  # spec's cached gem.

  def cache_dir
    @cache_dir ||= File.join base_dir, "cache"
  end

  ##
  # Returns the full path to the cached gem for this spec.

  def cache_file
    @cache_file ||= File.join cache_dir, "#{full_name}.gem"
  end

  ##
  # Return any possible conflicts against the currently loaded specs.

  def conflicts
    conflicts = {}
    self.runtime_dependencies.each do |dep|
      spec = Gem.loaded_specs[dep.name]
      if spec and not spec.satisfies_requirement? dep
        (conflicts[spec] ||= []) << dep
      end
    end
    env_req = Gem.env_requirement(name)
    (conflicts[self] ||= []) << env_req unless env_req.satisfied_by? version
    conflicts
  end

  ##
  # return true if there will be conflict when spec if loaded together with the list of specs.

  def conficts_when_loaded_with?(list_of_specs) # :nodoc:
    result = list_of_specs.any? do |spec|
      spec.dependencies.any? { |dep| dep.runtime? && (dep.name == name) && !satisfies_requirement?(dep) }
    end
    result
  end

  ##
  # Return true if there are possible conflicts against the currently loaded specs.

  def has_conflicts?
    return true unless Gem.env_requirement(name).satisfied_by?(version)
    self.dependencies.any? do |dep|
      if dep.runtime?
        spec = Gem.loaded_specs[dep.name]
        spec and not spec.satisfies_requirement? dep
      else
        false
      end
    end
  end

  # The date this gem was created.
  #
  # If SOURCE_DATE_EPOCH is set as an environment variable, use that to support
  # reproducible builds; otherwise, default to the current UTC date.
  #
  # Details on SOURCE_DATE_EPOCH:
  # https://reproducible-builds.org/specs/source-date-epoch/

  def date
    @date ||= Time.utc(*Gem.source_date_epoch.utc.to_a[3..5].reverse)
  end

  DateLike = Object.new # :nodoc:
  def DateLike.===(obj) # :nodoc:
    defined?(::Date) and Date === obj
  end

  DateTimeFormat = # :nodoc:
    /\A
     (\d{4})-(\d{2})-(\d{2})
     (\s+ \d{2}:\d{2}:\d{2}\.\d+ \s* (Z | [-+]\d\d:\d\d) )?
     \Z/x.freeze

  ##
  # The date this gem was created
  #
  # DO NOT set this, it is set automatically when the gem is packaged.

  def date=(date)
    # We want to end up with a Time object with one-day resolution.
    # This is the cleanest, most-readable, faster-than-using-Date
    # way to do it.
    @date = case date
            when String then
              if DateTimeFormat =~ date
                Time.utc($1.to_i, $2.to_i, $3.to_i)

              # Workaround for where the date format output from psych isn't
              # parsed as a Time object by syck and thus comes through as a
              # string.
              elsif /\A(\d{4})-(\d{2})-(\d{2}) \d{2}:\d{2}:\d{2}\.\d+?Z\z/ =~ date
                Time.utc($1.to_i, $2.to_i, $3.to_i)
              else
                raise(Gem::InvalidSpecificationException,
                      "invalid date format in specification: #{date.inspect}")
              end
            when Time, DateLike then
              Time.utc(date.year, date.month, date.day)
            else
              TODAY
            end
  end

  ##
  # The default executable for this gem.
  #
  # Deprecated: The name of the gem is assumed to be the name of the
  # executable now.  See Gem.bin_path.

  def default_executable # :nodoc:
    if defined?(@default_executable) and @default_executable
      result = @default_executable
    elsif @executables and @executables.size == 1
      result = Array(@executables).first
    else
      result = nil
    end
    result
  end
  deprecate :default_executable,  :none,       2018, 12

  ##
  # The default value for specification attribute +name+

  def default_value(name)
    @@default_value[name]
  end

  ##
  # A list of Gem::Dependency objects this gem depends on.
  #
  # Use #add_dependency or #add_development_dependency to add dependencies to
  # a gem.

  def dependencies
    @dependencies ||= []
  end

  ##
  # Return a list of all gems that have a dependency on this gemspec.  The
  # list is structured with entries that conform to:
  #
  #   [depending_gem, dependency, [list_of_gems_that_satisfy_dependency]]

  def dependent_gems
    out = []
    Gem::Specification.each do |spec|
      spec.dependencies.each do |dep|
        if self.satisfies_requirement?(dep)
          sats = []
          find_all_satisfiers(dep) do |sat|
            sats << sat
          end
          out << [spec, dep, sats]
        end
      end
    end
    out
  end

  ##
  # Returns all specs that matches this spec's runtime dependencies.

  def dependent_specs
    runtime_dependencies.map { |dep| dep.to_specs }.flatten
  end

  ##
  # A detailed description of this gem.  See also #summary

  def description=(str)
    @description = str.to_s
  end

  ##
  # List of dependencies that are used for development

  def development_dependencies
    dependencies.select { |d| d.type == :development }
  end

  ##
  # Returns the full path to this spec's documentation directory.  If +type+
  # is given it will be appended to the end.  For example:
  #
  #   spec.doc_dir      # => "/path/to/gem_repo/doc/a-1"
  #
  #   spec.doc_dir 'ri' # => "/path/to/gem_repo/doc/a-1/ri"

  def doc_dir(type = nil)
    @doc_dir ||= File.join base_dir, 'doc', full_name

    if type
      File.join @doc_dir, type
    else
      @doc_dir
    end
  end

  def encode_with(coder) # :nodoc:
    mark_version

    coder.add 'name', @name
    coder.add 'version', @version
    platform = case @original_platform
               when nil, '' then
                 'ruby'
               when String then
                 @original_platform
               else
                 @original_platform.to_s
               end
    coder.add 'platform', platform

    attributes = @@attributes.map(&:to_s) - %w[name version platform]
    attributes.each do |name|
      coder.add name, instance_variable_get("@#{name}")
    end
  end

  def eql?(other) # :nodoc:
    self.class === other && same_attributes?(other)
  end

  ##
  # Singular accessor for #executables

  def executable
    val = executables and val.first
  end

  ##
  # Singular accessor for #executables

  def executable=(o)
    self.executables = [o]
  end

  ##
  # Sets executables to +value+, ensuring it is an array. Don't
  # use this, push onto the array instead.

  def executables=(value)
    # TODO: warn about setting instead of pushing
    @executables = Array(value)
  end

  ##
  # Sets extensions to +extensions+, ensuring it is an array. Don't
  # use this, push onto the array instead.

  def extensions=(extensions)
    # TODO: warn about setting instead of pushing
    @extensions = Array extensions
  end

  ##
  # Sets extra_rdoc_files to +files+, ensuring it is an array. Don't
  # use this, push onto the array instead.

  def extra_rdoc_files=(files)
    # TODO: warn about setting instead of pushing
    @extra_rdoc_files = Array files
  end

  ##
  # The default (generated) file name of the gem.  See also #spec_name.
  #
  #   spec.file_name # => "example-1.0.gem"

  def file_name
    "#{full_name}.gem"
  end

  ##
  # Sets files to +files+, ensuring it is an array.

  def files=(files)
    @files = Array files
  end

  ##
  # Finds all gems that satisfy +dep+

  def find_all_satisfiers(dep)
    Gem::Specification.each do |spec|
      yield spec if spec.satisfies_requirement? dep
    end
  end

  private :find_all_satisfiers

  ##
  # Creates a duplicate spec without large blobs that aren't used at runtime.

  def for_cache
    spec = dup

    spec.files = nil
    spec.test_files = nil

    spec
  end

  def full_name
    @full_name ||= super
  end

  ##
  # Work around bundler removing my methods

  def gem_dir # :nodoc:
    super
  end

  def gems_dir
    @gems_dir ||= File.join(base_dir, "gems")
  end

  ##
  # Deprecated and ignored, defaults to true.
  #
  # Formerly used to indicate this gem was RDoc-capable.

  def has_rdoc # :nodoc:
    true
  end
  deprecate :has_rdoc,            :none,       2018, 12

  ##
  # Deprecated and ignored.
  #
  # Formerly used to indicate this gem was RDoc-capable.

  def has_rdoc=(ignored) # :nodoc:
    @has_rdoc = true
  end
  deprecate :has_rdoc=,           :none,       2018, 12

  alias :has_rdoc? :has_rdoc # :nodoc:
  deprecate :has_rdoc?,           :none,       2018, 12

  ##
  # True if this gem has files in test_files

  def has_unit_tests? # :nodoc:
    not test_files.empty?
  end

  # :stopdoc:
  alias has_test_suite? has_unit_tests?
  # :startdoc:

  def hash # :nodoc:
    name.hash ^ version.hash
  end

  def init_with(coder) # :nodoc:
    @installed_by_version ||= nil
    yaml_initialize coder.tag, coder.map
  end

  eval <<-RB, binding, __FILE__, __LINE__ + 1
    def set_nil_attributes_to_nil
      #{@@nil_attributes.map {|key| "@#{key} = nil" }.join "; "}
    end
    private :set_nil_attributes_to_nil

    def set_not_nil_attributes_to_default_values
      #{@@non_nil_attributes.map {|key| "@#{key} = #{INITIALIZE_CODE_FOR_DEFAULTS[key]}" }.join ";"}
    end
    private :set_not_nil_attributes_to_default_values
  RB

  ##
  # Specification constructor. Assigns the default values to the attributes
  # and yields itself for further initialization.  Optionally takes +name+ and
  # +version+.

  def initialize(name = nil, version = nil)
    super()
    @gems_dir              = nil
    @base_dir              = nil
    @loaded = false
    @activated = false
    @loaded_from = nil
    @original_platform = nil
    @installed_by_version = nil

    set_nil_attributes_to_nil
    set_not_nil_attributes_to_default_values

    @new_platform = Gem::Platform::RUBY

    self.name = name if name
    self.version = version if version

    yield self if block_given?
  end

  ##
  # Duplicates array_attributes from +other_spec+ so state isn't shared.

  def initialize_copy(other_spec)
    self.class.array_attributes.each do |name|
      name = :"@#{name}"
      next unless other_spec.instance_variable_defined? name

      begin
        val = other_spec.instance_variable_get(name)
        if val
          instance_variable_set name, val.dup
        elsif Gem.configuration.really_verbose
          warn "WARNING: #{full_name} has an invalid nil value for #{name}"
        end
      rescue TypeError
        e = Gem::FormatException.new \
          "#{full_name} has an invalid value for #{name}"

        e.file_path = loaded_from
        raise e
      end
    end
  end

  def base_dir
    return Gem.dir unless loaded_from
    @base_dir ||= if default_gem?
                    File.dirname File.dirname File.dirname loaded_from
                  else
                    File.dirname File.dirname loaded_from
                  end
  end

  ##
  # Expire memoized instance variables that can incorrectly generate, replace
  # or miss files due changes in certain attributes used to compute them.

  def invalidate_memoized_attributes
    @full_name = nil
    @cache_file = nil
  end

  private :invalidate_memoized_attributes

  def inspect # :nodoc:
    if $DEBUG
      super
    else
      "#{super[0..-2]} #{full_name}>"
    end
  end

  ##
  # Files in the Gem under one of the require_paths

  def lib_files
    @files.select do |file|
      require_paths.any? do |path|
        file.start_with? path
      end
    end
  end

  ##
  # Singular accessor for #licenses

  def license
    licenses.first
  end

  ##
  # Plural accessor for setting licenses
  #
  # See #license= for details

  def licenses
    @licenses ||= []
  end

  def internal_init # :nodoc:
    super
    @bin_dir       = nil
    @cache_dir     = nil
    @cache_file    = nil
    @doc_dir       = nil
    @ri_dir        = nil
    @spec_dir      = nil
    @spec_file     = nil
  end

  ##
  # Sets the rubygems_version to the current RubyGems version.

  def mark_version
    @rubygems_version = Gem::VERSION
  end

  ##
  # Track removed method calls to warn about during build time.
  # Warn about unknown attributes while loading a spec.

  def method_missing(sym, *a, &b) # :nodoc:
    if REMOVED_METHODS.include?(sym)
      removed_method_calls << sym
      return
    end

    if @specification_version > CURRENT_SPECIFICATION_VERSION and
      sym.to_s =~ /=$/
      warn "ignoring #{sym} loading #{full_name}" if $DEBUG
    else
      super
    end
  end

  ##
  # Is this specification missing its extensions?  When this returns true you
  # probably want to build_extensions

  def missing_extensions?
    return false if default_gem?
    return false if extensions.empty?
    return false if installed_by_version < Gem::Version.new('2.2.0.preview.2')
    return false if File.exist? gem_build_complete_path

    true
  end

  ##
  # Normalize the list of files so that:
  # * All file lists have redundancies removed.
  # * Files referenced in the extra_rdoc_files are included in the package
  #   file list.

  def normalize
    if defined?(@extra_rdoc_files) and @extra_rdoc_files
      @extra_rdoc_files.uniq!
      @files ||= []
      @files.concat(@extra_rdoc_files)
    end

    @files            = @files.uniq if @files
    @extensions       = @extensions.uniq if @extensions
    @test_files       = @test_files.uniq if @test_files
    @executables      = @executables.uniq if @executables
    @extra_rdoc_files = @extra_rdoc_files.uniq if @extra_rdoc_files
  end

  ##
  # Return a NameTuple that represents this Specification

  def name_tuple
    Gem::NameTuple.new name, version, original_platform
  end

  ##
  # Returns the full name (name-version) of this gemspec using the original
  # platform.  For use with legacy gems.

  def original_name # :nodoc:
    if platform == Gem::Platform::RUBY or platform.nil?
      "#{@name}-#{@version}"
    else
      "#{@name}-#{@version}-#{@original_platform}"
    end
  end

  ##
  # Cruft. Use +platform+.

  def original_platform # :nodoc:
    @original_platform ||= platform
  end

  ##
  # The platform this gem runs on.  See Gem::Platform for details.

  def platform
    @new_platform ||= Gem::Platform::RUBY
  end

  def pretty_print(q) # :nodoc:
    q.group 2, 'Gem::Specification.new do |s|', 'end' do
      q.breakable

      attributes = @@attributes - [:name, :version]
      attributes.unshift :installed_by_version
      attributes.unshift :version
      attributes.unshift :name

      attributes.each do |attr_name|
        current_value = self.send attr_name
        current_value = current_value.sort if %i(files test_files).include? attr_name
        if current_value != default_value(attr_name) or
           self.class.required_attribute? attr_name

          q.text "s.#{attr_name} = "

          if attr_name == :date
            current_value = current_value.utc

            q.text "Time.utc(#{current_value.year}, #{current_value.month}, #{current_value.day})"
          else
            q.pp current_value
          end

          q.breakable
        end
      end
    end
  end

  ##
  # Raise an exception if the version of this spec conflicts with the one
  # that is already loaded (+other+)

  def check_version_conflict(other) # :nodoc:
    return if self.version == other.version

    # This gem is already loaded.  If the currently loaded gem is not in the
    # list of candidate gems, then we have a version conflict.

    msg = "can't activate #{full_name}, already activated #{other.full_name}"

    e = Gem::LoadError.new msg
    e.name = self.name

    raise e
  end

  private :check_version_conflict

  ##
  # Check the spec for possible conflicts and freak out if there are any.

  def raise_if_conflicts # :nodoc:
    if has_conflicts?
      raise Gem::ConflictError.new self, conflicts
    end
  end

  ##
  # Sets rdoc_options to +value+, ensuring it is an array. Don't
  # use this, push onto the array instead.

  def rdoc_options=(options)
    # TODO: warn about setting instead of pushing
    @rdoc_options = Array options
  end

  ##
  # Singular accessor for #require_paths

  def require_path
    val = require_paths and val.first
  end

  ##
  # Singular accessor for #require_paths

  def require_path=(path)
    self.require_paths = Array(path)
  end

  ##
  # Set requirements to +req+, ensuring it is an array. Don't
  # use this, push onto the array instead.

  def requirements=(req)
    # TODO: warn about setting instead of pushing
    @requirements = Array req
  end

  def respond_to_missing?(m, include_private = false) # :nodoc:
    false
  end

  ##
  # Returns the full path to this spec's ri directory.

  def ri_dir
    @ri_dir ||= File.join base_dir, 'ri', full_name
  end

  ##
  # Return a string containing a Ruby code representation of the given
  # object.

  def ruby_code(obj)
    case obj
    when String             then obj.dump + ".freeze"
    when Array              then '[' + obj.map { |x| ruby_code x }.join(", ") + ']'
    when Hash               then
      seg = obj.keys.sort.map { |k| "#{k.to_s.dump} => #{obj[k].to_s.dump}" }
      "{ #{seg.join(', ')} }"
    when Gem::Version       then obj.to_s.dump
    when DateLike           then obj.strftime('%Y-%m-%d').dump
    when Time               then obj.strftime('%Y-%m-%d').dump
    when Numeric            then obj.inspect
    when true, false, nil   then obj.inspect
    when Gem::Platform      then "Gem::Platform.new(#{obj.to_a.inspect})"
    when Gem::Requirement   then
      list = obj.as_list
      "Gem::Requirement.new(#{ruby_code(list.size == 1 ? obj.to_s : list)})"
    else raise Gem::Exception, "ruby_code case not handled: #{obj.class}"
    end
  end

  private :ruby_code

  ##
  # List of dependencies that will automatically be activated at runtime.

  def runtime_dependencies
    dependencies.select(&:runtime?)
  end

  ##
  # True if this gem has the same attributes as +other+.

  def same_attributes?(spec)
    @@attributes.all? { |name, default| self.send(name) == spec.send(name) }
  end

  private :same_attributes?

  ##
  # Checks if this specification meets the requirement of +dependency+.

  def satisfies_requirement?(dependency)
    return @name == dependency.name &&
      dependency.requirement.satisfied_by?(@version)
  end

  ##
  # Returns an object you can use to sort specifications in #sort_by.

  def sort_obj
    [@name, @version, @new_platform == Gem::Platform::RUBY ? -1 : 1]
  end

  ##
  # Used by Gem::Resolver to order Gem::Specification objects

  def source # :nodoc:
    Gem::Source::Installed.new
  end

  ##
  # Returns the full path to the directory containing this spec's
  # gemspec file. eg: /usr/local/lib/ruby/gems/1.8/specifications

  def spec_dir
    @spec_dir ||= File.join base_dir, "specifications"
  end

  ##
  # Returns the full path to this spec's gemspec file.
  # eg: /usr/local/lib/ruby/gems/1.8/specifications/mygem-1.0.gemspec

  def spec_file
    @spec_file ||= File.join spec_dir, "#{full_name}.gemspec"
  end

  ##
  # The default name of the gemspec.  See also #file_name
  #
  #   spec.spec_name # => "example-1.0.gemspec"

  def spec_name
    "#{full_name}.gemspec"
  end

  ##
  # A short summary of this gem's description.

  def summary=(str)
    @summary = str.to_s.strip.
      gsub(/(\w-)\n[ \t]*(\w)/, '\1\2').gsub(/\n[ \t]*/, " ") # so. weird.
  end

  ##
  # Singular accessor for #test_files

  def test_file # :nodoc:
    val = test_files and val.first
  end

  ##
  # Singular mutator for #test_files

  def test_file=(file) # :nodoc:
    self.test_files = [file]
  end

  ##
  # Test files included in this gem.  You cannot append to this accessor, you
  # must assign to it.

  def test_files # :nodoc:
    # Handle the possibility that we have @test_suite_file but not
    # @test_files.  This will happen when an old gem is loaded via
    # YAML.
    if defined? @test_suite_file
      @test_files = [@test_suite_file].flatten
      @test_suite_file = nil
    end
    if defined?(@test_files) and @test_files
      @test_files
    else
      @test_files = []
    end
  end

  ##
  # Returns a Ruby code representation of this specification, such that it can
  # be eval'ed and reconstruct the same specification later.  Attributes that
  # still have their default values are omitted.

  def to_ruby
    require 'openssl'
    mark_version
    result = []
    result << "# -*- encoding: utf-8 -*-"
    result << "#{Gem::StubSpecification::PREFIX}#{name} #{version} #{platform} #{raw_require_paths.join("\0")}"
    result << "#{Gem::StubSpecification::PREFIX}#{extensions.join "\0"}" unless
      extensions.empty?
    result << nil
    result << "Gem::Specification.new do |s|"

    result << "  s.name = #{ruby_code name}"
    result << "  s.version = #{ruby_code version}"
    unless platform.nil? or platform == Gem::Platform::RUBY
      result << "  s.platform = #{ruby_code original_platform}"
    end
    result << ""
    result << "  s.required_rubygems_version = #{ruby_code required_rubygems_version} if s.respond_to? :required_rubygems_version="

    if metadata and !metadata.empty?
      result << "  s.metadata = #{ruby_code metadata} if s.respond_to? :metadata="
    end
    result << "  s.require_paths = #{ruby_code raw_require_paths}"

    handled = [
      :dependencies,
      :name,
      :platform,
      :require_paths,
      :required_rubygems_version,
      :specification_version,
      :version,
      :has_rdoc,
      :default_executable,
      :metadata
    ]

    @@attributes.each do |attr_name|
      next if handled.include? attr_name
      current_value = self.send(attr_name)
      if current_value != default_value(attr_name) || self.class.required_attribute?(attr_name)
        result << "  s.#{attr_name} = #{ruby_code current_value}" unless current_value.is_a?(OpenSSL::PKey::RSA)
      end
    end

    if @installed_by_version
      result << nil
      result << "  s.installed_by_version = \"#{Gem::VERSION}\" if s.respond_to? :installed_by_version"
    end

    unless dependencies.empty?
      result << nil
      result << "  if s.respond_to? :specification_version then"
      result << "    s.specification_version = #{specification_version}"
      result << "  end"
      result << nil

      result << "  if s.respond_to? :add_runtime_dependency then"

      dependencies.each do |dep|
        req = dep.requirements_list.inspect
        dep.instance_variable_set :@type, :runtime if dep.type.nil? # HACK
        result << "    s.add_#{dep.type}_dependency(%q<#{dep.name}>.freeze, #{req})"
      end

      result << "  else"
      dependencies.each do |dep|
        version_reqs_param = dep.requirements_list.inspect
        result << "    s.add_dependency(%q<#{dep.name}>.freeze, #{version_reqs_param})"
      end
      result << "  end"
    end

    result << "end"
    result << nil

    result.join "\n"
  end

  ##
  # Returns a Ruby lighter-weight code representation of this specification,
  # used for indexing only.
  #
  # See #to_ruby.

  def to_ruby_for_cache
    for_cache.to_ruby
  end

  def to_s # :nodoc:
    "#<Gem::Specification name=#{@name} version=#{@version}>"
  end

  ##
  # Returns self

  def to_spec
    self
  end

  def to_yaml(opts = {}) # :nodoc:
    Gem.load_yaml

    # Because the user can switch the YAML engine behind our
    # back, we have to check again here to make sure that our
    # psych code was properly loaded, and load it if not.
    unless Gem.const_defined?(:NoAliasYAMLTree)
      require 'rubygems/psych_tree'
    end

    builder = Gem::NoAliasYAMLTree.create
    builder << self
    ast = builder.tree

    require 'stringio'
    io = StringIO.new
    io.set_encoding Encoding::UTF_8

    Psych::Visitors::Emitter.new(io).accept(ast)

    io.string.gsub(/ !!null \n/, " \n")
  end

  ##
  # Recursively walk dependencies of this spec, executing the +block+ for each
  # hop.

  def traverse(trail = [], visited = {}, &block)
    trail.push(self)
    begin
      dependencies.each do |dep|
        next unless dep.runtime?
        dep.to_specs.each do |dep_spec|
          next if visited.has_key?(dep_spec)
          visited[dep_spec] = true
          trail.push(dep_spec)
          begin
            result = block[self, dep, dep_spec, trail]
          ensure
            trail.pop
          end
          unless result == :next
            spec_name = dep_spec.name
            dep_spec.traverse(trail, visited, &block) unless
              trail.any? { |s| s.name == spec_name }
          end
        end
      end
    ensure
      trail.pop
    end
  end

  ##
  # Checks that the specification contains all required fields, and does a
  # very basic sanity check.
  #
  # Raises InvalidSpecificationException if the spec does not pass the
  # checks..

  def validate(packaging = true, strict = false)
    normalize

    validation_policy = Gem::SpecificationPolicy.new(self)
    validation_policy.packaging = packaging
    validation_policy.validate(strict)
  end

  def keep_only_files_and_directories
    @executables.delete_if      { |x| File.directory?(File.join(@bindir, x)) }
    @extensions.delete_if       { |x| File.directory?(x) && !File.symlink?(x) }
    @extra_rdoc_files.delete_if { |x| File.directory?(x) && !File.symlink?(x) }
    @files.delete_if            { |x| File.directory?(x) && !File.symlink?(x) }
    @test_files.delete_if       { |x| File.directory?(x) && !File.symlink?(x) }
  end

  def validate_metadata
    Gem::SpecificationPolicy.new(self).validate_metadata
  end

  ##
  # Checks that dependencies use requirements as we recommend.  Warnings are
  # issued when dependencies are open-ended or overly strict for semantic
  # versioning.
  def validate_dependencies
    Gem::SpecificationPolicy.new(self).validate_dependencies
  end

  ##
  # Checks to see if the files to be packaged are world-readable.
  def validate_permissions
    Gem::SpecificationPolicy.new(self).validate_permissions
  end

  ##
  # Set the version to +version+, potentially also setting
  # required_rubygems_version if +version+ indicates it is a
  # prerelease.

  def version=(version)
    @version = Gem::Version.create(version)
    # skip to set required_ruby_version when pre-released rubygems.
    # It caused to raise CircularDependencyError
    if @version.prerelease? && (@name.nil? || @name.strip != "rubygems")
      self.required_rubygems_version = '> 1.3.1'
    end
    invalidate_memoized_attributes

    return @version
  end

  def stubbed?
    false
  end

  def yaml_initialize(tag, vals) # :nodoc:
    vals.each do |ivar, val|
      case ivar
      when "date"
        # Force Date to go through the extra coerce logic in date=
        self.date = val.tap(&Gem::UNTAINT)
      else
        instance_variable_set "@#{ivar}", val.tap(&Gem::UNTAINT)
      end
    end

    @original_platform = @platform # for backwards compatibility
    self.platform = Gem::Platform.new @platform
  end

  ##
  # Reset nil attributes to their default values to make the spec valid

  def reset_nil_attributes_to_default
    nil_attributes = self.class.non_nil_attributes.find_all do |name|
      !instance_variable_defined?("@#{name}") || instance_variable_get("@#{name}").nil?
    end

    nil_attributes.each do |attribute|
      default = self.default_value attribute

      value = case default
              when Time, Numeric, Symbol, true, false, nil then default
              else default.dup
              end

      instance_variable_set "@#{attribute}", value
    end

    @installed_by_version ||= nil
  end

  def raw_require_paths # :nodoc:
    @require_paths
  end

end

# DOC: What is this and why is it here, randomly, at the end of this file?
Gem.clear_paths
PK7H[l���#share/rubygems/rubygems/defaults.rbnu�[���# frozen_string_literal: true
module Gem
  DEFAULT_HOST = "https://rubygems.org".freeze

  @post_install_hooks ||= []
  @done_installing_hooks ||= []
  @post_uninstall_hooks ||= []
  @pre_uninstall_hooks  ||= []
  @pre_install_hooks    ||= []

  ##
  # An Array of the default sources that come with RubyGems

  def self.default_sources
    %w[https://rubygems.org/]
  end

  ##
  # Default spec directory path to be used if an alternate value is not
  # specified in the environment

  def self.default_spec_cache_dir
    File.join Gem.user_home, '.gem', 'specs'
  end

  ##
  # Default home directory path to be used if an alternate value is not
  # specified in the environment

  def self.default_dir
    path = if defined? RUBY_FRAMEWORK_VERSION
             [
               File.dirname(RbConfig::CONFIG['sitedir']),
               'Gems',
               RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
             ]
           else
             [
               RbConfig::CONFIG['rubylibprefix'],
               'gems',
               RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
             ]
           end

    @default_dir ||= File.join(*path)
  end

  ##
  # Returns binary extensions dir for specified RubyGems base dir or nil
  # if such directory cannot be determined.
  #
  # By default, the binary extensions are located side by side with their
  # Ruby counterparts, therefore nil is returned

  def self.default_ext_dir_for(base_dir)
    nil
  end

  ##
  # Paths where RubyGems' .rb files and bin files are installed

  def self.default_rubygems_dirs
    nil # default to standard layout
  end

  ##
  # Path to specification files of default gems.

  def self.default_specifications_dir
    File.join(Gem.default_dir, "specifications", "default")
  end

  ##
  # Path for gems in the user's home directory

  def self.user_dir
    parts = [Gem.user_home, '.gem', ruby_engine]
    ruby_version_dir_name = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
    parts << ruby_version_dir_name unless ruby_version_dir_name.empty?
    File.join parts
  end

  ##
  # How String Gem paths should be split.  Overridable for esoteric platforms.

  def self.path_separator
    File::PATH_SEPARATOR
  end

  ##
  # Default gem load path

  def self.default_path
    path = []
    path << user_dir if user_home && File.exist?(user_home)
    path << default_dir
    path << vendor_dir if vendor_dir and File.directory? vendor_dir
    path
  end

  ##
  # Deduce Ruby's --program-prefix and --program-suffix from its install name

  def self.default_exec_format
    exec_format = RbConfig::CONFIG['ruby_install_name'].sub('ruby', '%s') rescue '%s'

    unless exec_format =~ /%s/
      raise Gem::Exception,
        "[BUG] invalid exec_format #{exec_format.inspect}, no %s"
    end

    exec_format
  end

  ##
  # The default directory for binaries

  def self.default_bindir
    if defined? RUBY_FRAMEWORK_VERSION  # mac framework support
      '/usr/bin'
    else # generic install
      RbConfig::CONFIG['bindir']
    end
  end

  def self.ruby_engine
    RUBY_ENGINE
  end

  ##
  # The default signing key path

  def self.default_key_path
    File.join Gem.user_home, ".gem", "gem-private_key.pem"
  end

  ##
  # The default signing certificate chain path

  def self.default_cert_path
    File.join Gem.user_home, ".gem", "gem-public_cert.pem"
  end

  ##
  # Install extensions into lib as well as into the extension directory.

  def self.install_extension_in_lib # :nodoc:
    true
  end

  ##
  # Directory where vendor gems are installed.

  def self.vendor_dir # :nodoc:
    if vendor_dir = ENV['GEM_VENDOR']
      return vendor_dir.dup
    end

    return nil unless RbConfig::CONFIG.key? 'vendordir'

    File.join RbConfig::CONFIG['vendordir'], 'gems',
              RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
  end

  ##
  # Default options for gem commands for Ruby packagers.
  #
  # The options here should be structured as an array of string "gem"
  # command names as keys and a string of the default options as values.
  #
  # Example:
  #
  # def self.operating_system_defaults
  #   {
  #       'install' => '--no-rdoc --no-ri --env-shebang',
  #       'update' => '--no-rdoc --no-ri --env-shebang'
  #   }
  # end

  def self.operating_system_defaults
    {}
  end

  ##
  # Default options for gem commands for Ruby implementers.
  #
  # The options here should be structured as an array of string "gem"
  # command names as keys and a string of the default options as values.
  #
  # Example:
  #
  # def self.platform_defaults
  #   {
  #       'install' => '--no-rdoc --no-ri --env-shebang',
  #       'update' => '--no-rdoc --no-ri --env-shebang'
  #   }
  # end

  def self.platform_defaults
    {}
  end
end
PK7H[xy�"00/share/rubygems/rubygems/dependency_installer.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/dependency_list'
require 'rubygems/package'
require 'rubygems/installer'
require 'rubygems/spec_fetcher'
require 'rubygems/user_interaction'
require 'rubygems/source'
require 'rubygems/available_set'
require 'rubygems/deprecate'

##
# Installs a gem along with all its dependencies from local and remote gems.

class Gem::DependencyInstaller

  include Gem::UserInteraction
  extend Gem::Deprecate

  DEFAULT_OPTIONS = { # :nodoc:
    :env_shebang         => false,
    :document            => %w[ri],
    :domain              => :both, # HACK dup
    :force               => false,
    :format_executable   => false, # HACK dup
    :ignore_dependencies => false,
    :prerelease          => false,
    :security_policy     => nil, # HACK NoSecurity requires OpenSSL. AlmostNo? Low?
    :wrappers            => true,
    :build_args          => nil,
    :build_docs_in_background => false,
    :install_as_default => false
  }.freeze

  ##
  # Documentation types.  For use by the Gem.done_installing hook

  attr_reader :document

  ##
  # Errors from SpecFetcher while searching for remote specifications

  attr_reader :errors

  ##
  # List of gems installed by #install in alphabetic order

  attr_reader :installed_gems

  ##
  # Creates a new installer instance.
  #
  # Options are:
  # :cache_dir:: Alternate repository path to store .gem files in.
  # :domain:: :local, :remote, or :both.  :local only searches gems in the
  #           current directory.  :remote searches only gems in Gem::sources.
  #           :both searches both.
  # :env_shebang:: See Gem::Installer::new.
  # :force:: See Gem::Installer#install.
  # :format_executable:: See Gem::Installer#initialize.
  # :ignore_dependencies:: Don't install any dependencies.
  # :install_dir:: See Gem::Installer#install.
  # :prerelease:: Allow prerelease versions.  See #install.
  # :security_policy:: See Gem::Installer::new and Gem::Security.
  # :user_install:: See Gem::Installer.new
  # :wrappers:: See Gem::Installer::new
  # :build_args:: See Gem::Installer::new

  def initialize(options = {})
    @only_install_dir = !!options[:install_dir]
    @install_dir = options[:install_dir] || Gem.dir
    @build_root = options[:build_root]

    options = DEFAULT_OPTIONS.merge options

    @bin_dir             = options[:bin_dir]
    @dev_shallow         = options[:dev_shallow]
    @development         = options[:development]
    @document            = options[:document]
    @domain              = options[:domain]
    @env_shebang         = options[:env_shebang]
    @force               = options[:force]
    @format_executable   = options[:format_executable]
    @ignore_dependencies = options[:ignore_dependencies]
    @prerelease          = options[:prerelease]
    @security_policy     = options[:security_policy]
    @user_install        = options[:user_install]
    @wrappers            = options[:wrappers]
    @build_args          = options[:build_args]
    @build_docs_in_background = options[:build_docs_in_background]
    @install_as_default = options[:install_as_default]
    @dir_mode = options[:dir_mode]
    @data_mode = options[:data_mode]
    @prog_mode = options[:prog_mode]

    # Indicates that we should not try to update any deps unless
    # we absolutely must.
    @minimal_deps = options[:minimal_deps]

    @available      = nil
    @installed_gems = []
    @toplevel_specs = nil

    @cache_dir = options[:cache_dir] || @install_dir

    @errors = []
  end

  ##
  # Creates an AvailableSet to install from based on +dep_or_name+ and
  # +version+

  def available_set_for(dep_or_name, version) # :nodoc:
    if String === dep_or_name
      Gem::Deprecate.skip_during do
        find_spec_by_name_and_version dep_or_name, version, @prerelease
      end
    else
      dep = dep_or_name.dup
      dep.prerelease = @prerelease
      @available = Gem::Deprecate.skip_during do
        find_gems_with_sources dep
      end
    end

    @available.pick_best!
  end
  deprecate :available_set_for, :none, 2019, 12

  ##
  # Indicated, based on the requested domain, if local
  # gems should be considered.

  def consider_local?
    @domain == :both or @domain == :local
  end

  ##
  # Indicated, based on the requested domain, if remote
  # gems should be considered.

  def consider_remote?
    @domain == :both or @domain == :remote
  end

  ##
  # Returns a list of pairs of gemspecs and source_uris that match
  # Gem::Dependency +dep+ from both local (Dir.pwd) and remote (Gem.sources)
  # sources.  Gems are sorted with newer gems preferred over older gems, and
  # local gems preferred over remote gems.

  def find_gems_with_sources(dep, best_only=false) # :nodoc:
    set = Gem::AvailableSet.new

    if consider_local?
      sl = Gem::Source::Local.new

      if spec = sl.find_gem(dep.name)
        if dep.matches_spec? spec
          set.add spec, sl
        end
      end
    end

    if consider_remote?
      begin
        # This is pulled from #spec_for_dependency to allow
        # us to filter tuples before fetching specs.
        tuples, errors = Gem::SpecFetcher.fetcher.search_for_dependency dep

        if best_only && !tuples.empty?
          tuples.sort! do |a,b|
            if b[0].version == a[0].version
              if b[0].platform != Gem::Platform::RUBY
                1
              else
                -1
              end
            else
              b[0].version <=> a[0].version
            end
          end
          tuples = [tuples.first]
        end

        specs = []
        tuples.each do |tup, source|
          begin
            spec = source.fetch_spec(tup)
          rescue Gem::RemoteFetcher::FetchError => e
            errors << Gem::SourceFetchProblem.new(source, e)
          else
            specs << [spec, source]
          end
        end

        if @errors
          @errors += errors
        else
          @errors = errors
        end

        set << specs

      rescue Gem::RemoteFetcher::FetchError => e
        # FIX if there is a problem talking to the network, we either need to always tell
        # the user (no really_verbose) or fail hard, not silently tell them that we just
        # couldn't find their requested gem.
        verbose do
          "Error fetching remote data:\t\t#{e.message}\n" \
            "Falling back to local-only install"
        end
        @domain = :local
      end
    end

    set
  end
  deprecate :find_gems_with_sources, :none, 2019, 12

  ##
  # Finds a spec and the source_uri it came from for gem +gem_name+ and
  # +version+.  Returns an Array of specs and sources required for
  # installation of the gem.

  def find_spec_by_name_and_version(gem_name,
                                    version = Gem::Requirement.default,
                                    prerelease = false)
    set = Gem::AvailableSet.new

    if consider_local?
      if gem_name =~ /\.gem$/ and File.file? gem_name
        src = Gem::Source::SpecificFile.new(gem_name)
        set.add src.spec, src
      elsif gem_name =~ /\.gem$/
        Dir[gem_name].each do |name|
          begin
            src = Gem::Source::SpecificFile.new name
            set.add src.spec, src
          rescue Gem::Package::FormatError
          end
        end
      else
        local = Gem::Source::Local.new

        if s = local.find_gem(gem_name, version)
          set.add s, local
        end
      end
    end

    if set.empty?
      dep = Gem::Dependency.new gem_name, version
      dep.prerelease = true if prerelease

      set = Gem::Deprecate.skip_during do
        find_gems_with_sources(dep, true)
      end

      set.match_platform!
    end

    if set.empty?
      raise Gem::SpecificGemNotFoundException.new(gem_name, version, @errors)
    end

    @available = set
  end
  deprecate :find_spec_by_name_and_version, :none, 2019, 12

  def in_background(what) # :nodoc:
    fork_happened = false
    if @build_docs_in_background and Process.respond_to?(:fork)
      begin
        Process.fork do
          yield
        end
        fork_happened = true
        say "#{what} in a background process."
      rescue NotImplementedError
      end
    end
    yield unless fork_happened
  end

  ##
  # Installs the gem +dep_or_name+ and all its dependencies.  Returns an Array
  # of installed gem specifications.
  #
  # If the +:prerelease+ option is set and there is a prerelease for
  # +dep_or_name+ the prerelease version will be installed.
  #
  # Unless explicitly specified as a prerelease dependency, prerelease gems
  # that +dep_or_name+ depend on will not be installed.
  #
  # If c-1.a depends on b-1 and a-1.a and there is a gem b-1.a available then
  # c-1.a, b-1 and a-1.a will be installed.  b-1.a will need to be installed
  # separately.

  def install(dep_or_name, version = Gem::Requirement.default)
    request_set = resolve_dependencies dep_or_name, version

    @installed_gems = []

    options = {
      :bin_dir             => @bin_dir,
      :build_args          => @build_args,
      :document            => @document,
      :env_shebang         => @env_shebang,
      :force               => @force,
      :format_executable   => @format_executable,
      :ignore_dependencies => @ignore_dependencies,
      :prerelease          => @prerelease,
      :security_policy     => @security_policy,
      :user_install        => @user_install,
      :wrappers            => @wrappers,
      :build_root          => @build_root,
      :install_as_default  => @install_as_default,
      :dir_mode            => @dir_mode,
      :data_mode           => @data_mode,
      :prog_mode           => @prog_mode,
    }
    options[:install_dir] = @install_dir if @only_install_dir

    request_set.install options do |_, installer|
      @installed_gems << installer.spec if installer
    end

    @installed_gems.sort!

    # Since this is currently only called for docs, we can be lazy and just say
    # it's documentation. Ideally the hook adder could decide whether to be in
    # the background or not, and what to call it.
    in_background "Installing documentation" do
      Gem.done_installing_hooks.each do |hook|
        hook.call self, @installed_gems
      end
    end unless Gem.done_installing_hooks.empty?

    @installed_gems
  end

  def install_development_deps # :nodoc:
    if @development and @dev_shallow
      :shallow
    elsif @development
      :all
    else
      :none
    end
  end

  def resolve_dependencies(dep_or_name, version) # :nodoc:
    request_set = Gem::RequestSet.new
    request_set.development         = @development
    request_set.development_shallow = @dev_shallow
    request_set.soft_missing = @force
    request_set.prerelease = @prerelease
    request_set.remote = false unless consider_remote?

    installer_set = Gem::Resolver::InstallerSet.new @domain
    installer_set.ignore_installed = @only_install_dir

    if consider_local?
      if dep_or_name =~ /\.gem$/ and File.file? dep_or_name
        src = Gem::Source::SpecificFile.new dep_or_name
        installer_set.add_local dep_or_name, src.spec, src
        version = src.spec.version if version == Gem::Requirement.default
      elsif dep_or_name =~ /\.gem$/
        Dir[dep_or_name].each do |name|
          begin
            src = Gem::Source::SpecificFile.new name
            installer_set.add_local dep_or_name, src.spec, src
          rescue Gem::Package::FormatError
          end
        end
        # else This is a dependency. InstallerSet handles this case
      end
    end

    dependency =
      if spec = installer_set.local?(dep_or_name)
        Gem::Dependency.new spec.name, version
      elsif String === dep_or_name
        Gem::Dependency.new dep_or_name, version
      else
        dep_or_name
      end

    dependency.prerelease = @prerelease

    request_set.import [dependency]

    installer_set.add_always_install dependency

    request_set.always_install = installer_set.always_install

    if @ignore_dependencies
      installer_set.ignore_dependencies = true
      request_set.ignore_dependencies   = true
      request_set.soft_missing          = true
    end

    request_set.resolve installer_set

    @errors.concat request_set.errors

    request_set
  end

end
PK7H[��T�T#share/rubygems/rubygems/security.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/exceptions'
require 'fileutils'

begin
  require 'openssl'
rescue LoadError => e
  raise unless (e.respond_to?(:path) && e.path == 'openssl') ||
               e.message =~ / -- openssl$/
end

##
# = Signing gems
#
# The Gem::Security implements cryptographic signatures for gems.  The section
# below is a step-by-step guide to using signed gems and generating your own.
#
# == Walkthrough
#
# === Building your certificate
#
# In order to start signing your gems, you'll need to build a private key and
# a self-signed certificate.  Here's how:
#
#   # build a private key and certificate for yourself:
#   $ gem cert --build you@example.com
#
# This could take anywhere from a few seconds to a minute or two, depending on
# the speed of your computer (public key algorithms aren't exactly the
# speediest crypto algorithms in the world).  When it's finished, you'll see
# the files "gem-private_key.pem" and "gem-public_cert.pem" in the current
# directory.
#
# First things first: Move both files to ~/.gem if you don't already have a
# key and certificate in that directory.  Ensure the file permissions make the
# key unreadable by others (by default the file is saved securely).
#
# Keep your private key hidden; if it's compromised, someone can sign packages
# as you (note: PKI has ways of mitigating the risk of stolen keys; more on
# that later).
#
# === Signing Gems
#
# In RubyGems 2 and newer there is no extra work to sign a gem.  RubyGems will
# automatically find your key and certificate in your home directory and use
# them to sign newly packaged gems.
#
# If your certificate is not self-signed (signed by a third party) RubyGems
# will attempt to load the certificate chain from the trusted certificates.
# Use <code>gem cert --add signing_cert.pem</code> to add your signers as
# trusted certificates.  See below for further information on certificate
# chains.
#
# If you build your gem it will automatically be signed.  If you peek inside
# your gem file, you'll see a couple of new files have been added:
#
#   $ tar tf your-gem-1.0.gem
#   metadata.gz
#   metadata.gz.sum
#   metadata.gz.sig # metadata signature
#   data.tar.gz
#   data.tar.gz.sum
#   data.tar.gz.sig # data signature
#
# === Manually signing gems
#
# If you wish to store your key in a separate secure location you'll need to
# set your gems up for signing by hand.  To do this, set the
# <code>signing_key</code> and <code>cert_chain</code> in the gemspec before
# packaging your gem:
#
#   s.signing_key = '/secure/path/to/gem-private_key.pem'
#   s.cert_chain = %w[/secure/path/to/gem-public_cert.pem]
#
# When you package your gem with these options set RubyGems will automatically
# load your key and certificate from the secure paths.
#
# === Signed gems and security policies
#
# Now let's verify the signature.  Go ahead and install the gem, but add the
# following options: <code>-P HighSecurity</code>, like this:
#
#   # install the gem with using the security policy "HighSecurity"
#   $ sudo gem install your.gem -P HighSecurity
#
# The <code>-P</code> option sets your security policy -- we'll talk about
# that in just a minute.  Eh, what's this?
#
#   $ gem install -P HighSecurity your-gem-1.0.gem
#   ERROR:  While executing gem ... (Gem::Security::Exception)
#       root cert /CN=you/DC=example is not trusted
#
# The culprit here is the security policy.  RubyGems has several different
# security policies.  Let's take a short break and go over the security
# policies.  Here's a list of the available security policies, and a brief
# description of each one:
#
# * NoSecurity - Well, no security at all.  Signed packages are treated like
#   unsigned packages.
# * LowSecurity - Pretty much no security.  If a package is signed then
#   RubyGems will make sure the signature matches the signing
#   certificate, and that the signing certificate hasn't expired, but
#   that's it.  A malicious user could easily circumvent this kind of
#   security.
# * MediumSecurity - Better than LowSecurity and NoSecurity, but still
#   fallible.  Package contents are verified against the signing
#   certificate, and the signing certificate is checked for validity,
#   and checked against the rest of the certificate chain (if you don't
#   know what a certificate chain is, stay tuned, we'll get to that).
#   The biggest improvement over LowSecurity is that MediumSecurity
#   won't install packages that are signed by untrusted sources.
#   Unfortunately, MediumSecurity still isn't totally secure -- a
#   malicious user can still unpack the gem, strip the signatures, and
#   distribute the gem unsigned.
# * HighSecurity - Here's the bugger that got us into this mess.
#   The HighSecurity policy is identical to the MediumSecurity policy,
#   except that it does not allow unsigned gems.  A malicious user
#   doesn't have a whole lot of options here; they can't modify the
#   package contents without invalidating the signature, and they can't
#   modify or remove signature or the signing certificate chain, or
#   RubyGems will simply refuse to install the package.  Oh well, maybe
#   they'll have better luck causing problems for CPAN users instead :).
#
# The reason RubyGems refused to install your shiny new signed gem was because
# it was from an untrusted source.  Well, your code is infallible (naturally),
# so you need to add yourself as a trusted source:
#
#   # add trusted certificate
#   gem cert --add ~/.gem/gem-public_cert.pem
#
# You've now added your public certificate as a trusted source.  Now you can
# install packages signed by your private key without any hassle.  Let's try
# the install command above again:
#
#   # install the gem with using the HighSecurity policy (and this time
#   # without any shenanigans)
#   $ gem install -P HighSecurity your-gem-1.0.gem
#   Successfully installed your-gem-1.0
#   1 gem installed
#
# This time RubyGems will accept your signed package and begin installing.
#
# While you're waiting for RubyGems to work it's magic, have a look at some of
# the other security commands by running <code>gem help cert</code>:
#
#   Options:
#     -a, --add CERT                   Add a trusted certificate.
#     -l, --list [FILTER]              List trusted certificates where the
#                                      subject contains FILTER
#     -r, --remove FILTER              Remove trusted certificates where the
#                                      subject contains FILTER
#     -b, --build EMAIL_ADDR           Build private key and self-signed
#                                      certificate for EMAIL_ADDR
#     -C, --certificate CERT           Signing certificate for --sign
#     -K, --private-key KEY            Key for --sign or --build
#     -s, --sign CERT                  Signs CERT with the key from -K
#                                      and the certificate from -C
#
# We've already covered the <code>--build</code> option, and the
# <code>--add</code>, <code>--list</code>, and <code>--remove</code> commands
# seem fairly straightforward; they allow you to add, list, and remove the
# certificates in your trusted certificate list.  But what's with this
# <code>--sign</code> option?
#
# === Certificate chains
#
# To answer that question, let's take a look at "certificate chains", a
# concept I mentioned earlier.  There are a couple of problems with
# self-signed certificates: first of all, self-signed certificates don't offer
# a whole lot of security.  Sure, the certificate says Yukihiro Matsumoto, but
# how do I know it was actually generated and signed by matz himself unless he
# gave me the certificate in person?
#
# The second problem is scalability.  Sure, if there are 50 gem authors, then
# I have 50 trusted certificates, no problem.  What if there are 500 gem
# authors?  1000?  Having to constantly add new trusted certificates is a
# pain, and it actually makes the trust system less secure by encouraging
# RubyGems users to blindly trust new certificates.
#
# Here's where certificate chains come in.  A certificate chain establishes an
# arbitrarily long chain of trust between an issuing certificate and a child
# certificate.  So instead of trusting certificates on a per-developer basis,
# we use the PKI concept of certificate chains to build a logical hierarchy of
# trust.  Here's a hypothetical example of a trust hierarchy based (roughly)
# on geography:
#
#                         --------------------------
#                         | rubygems@rubygems.org |
#                         --------------------------
#                                     |
#                   -----------------------------------
#                   |                                 |
#       ----------------------------    -----------------------------
#       |  seattlerb@seattlerb.org |    | dcrubyists@richkilmer.com |
#       ----------------------------    -----------------------------
#            |                |                 |             |
#     ---------------   ----------------   -----------   --------------
#     |   drbrain   |   |   zenspider  |   | pabs@dc |   | tomcope@dc |
#     ---------------   ----------------   -----------   --------------
#
#
# Now, rather than having 4 trusted certificates (one for drbrain, zenspider,
# pabs@dc, and tomecope@dc), a user could actually get by with one
# certificate, the "rubygems@rubygems.org" certificate.
#
# Here's how it works:
#
# I install "rdoc-3.12.gem", a package signed by "drbrain".  I've never heard
# of "drbrain", but his certificate has a valid signature from the
# "seattle.rb@seattlerb.org" certificate, which in turn has a valid signature
# from the "rubygems@rubygems.org" certificate.  Voila!  At this point, it's
# much more reasonable for me to trust a package signed by "drbrain", because
# I can establish a chain to "rubygems@rubygems.org", which I do trust.
#
# === Signing certificates
#
# The <code>--sign</code> option allows all this to happen.  A developer
# creates their build certificate with the <code>--build</code> option, then
# has their certificate signed by taking it with them to their next regional
# Ruby meetup (in our hypothetical example), and it's signed there by the
# person holding the regional RubyGems signing certificate, which is signed at
# the next RubyConf by the holder of the top-level RubyGems certificate.  At
# each point the issuer runs the same command:
#
#   # sign a certificate with the specified key and certificate
#   # (note that this modifies client_cert.pem!)
#   $ gem cert -K /mnt/floppy/issuer-priv_key.pem -C issuer-pub_cert.pem
#      --sign client_cert.pem
#
# Then the holder of issued certificate (in this case, your buddy "drbrain"),
# can start using this signed certificate to sign RubyGems.  By the way, in
# order to let everyone else know about his new fancy signed certificate,
# "drbrain" would save his newly signed certificate as
# <code>~/.gem/gem-public_cert.pem</code>
#
# Obviously this RubyGems trust infrastructure doesn't exist yet.  Also, in
# the "real world", issuers actually generate the child certificate from a
# certificate request, rather than sign an existing certificate.  And our
# hypothetical infrastructure is missing a certificate revocation system.
# These are that can be fixed in the future...
#
# At this point you should know how to do all of these new and interesting
# things:
#
# * build a gem signing key and certificate
# * adjust your security policy
# * modify your trusted certificate list
# * sign a certificate
#
# == Manually verifying signatures
#
# In case you don't trust RubyGems you can verify gem signatures manually:
#
# 1. Fetch and unpack the gem
#
#      gem fetch some_signed_gem
#      tar -xf some_signed_gem-1.0.gem
#
# 2. Grab the public key from the gemspec
#
#      gem spec some_signed_gem-1.0.gem cert_chain | \
#        ruby -ryaml -e 'puts YAML.load_documents($stdin)' > public_key.crt
#
# 3. Generate a SHA1 hash of the data.tar.gz
#
#      openssl dgst -sha1 < data.tar.gz > my.hash
#
# 4. Verify the signature
#
#      openssl rsautl -verify -inkey public_key.crt -certin \
#        -in data.tar.gz.sig > verified.hash
#
# 5. Compare your hash to the verified hash
#
#      diff -s verified.hash my.hash
#
# 6. Repeat 5 and 6 with metadata.gz
#
# == OpenSSL Reference
#
# The .pem files generated by --build and --sign are PEM files.  Here's a
# couple of useful OpenSSL commands for manipulating them:
#
#   # convert a PEM format X509 certificate into DER format:
#   # (note: Windows .cer files are X509 certificates in DER format)
#   $ openssl x509 -in input.pem -outform der -out output.der
#
#   # print out the certificate in a human-readable format:
#   $ openssl x509 -in input.pem -noout -text
#
# And you can do the same thing with the private key file as well:
#
#   # convert a PEM format RSA key into DER format:
#   $ openssl rsa -in input_key.pem -outform der -out output_key.der
#
#   # print out the key in a human readable format:
#   $ openssl rsa -in input_key.pem -noout -text
#
# == Bugs/TODO
#
# * There's no way to define a system-wide trust list.
# * custom security policies (from a YAML file, etc)
# * Simple method to generate a signed certificate request
# * Support for OCSP, SCVP, CRLs, or some other form of cert status check
#   (list is in order of preference)
# * Support for encrypted private keys
# * Some sort of semi-formal trust hierarchy (see long-winded explanation
#   above)
# * Path discovery (for gem certificate chains that don't have a self-signed
#   root) -- by the way, since we don't have this, THE ROOT OF THE CERTIFICATE
#   CHAIN MUST BE SELF SIGNED if Policy#verify_root is true (and it is for the
#   MediumSecurity and HighSecurity policies)
# * Better explanation of X509 naming (ie, we don't have to use email
#   addresses)
# * Honor AIA field (see note about OCSP above)
# * Honor extension restrictions
# * Might be better to store the certificate chain as a PKCS#7 or PKCS#12
#   file, instead of an array embedded in the metadata.
# * Flexible signature and key algorithms, not hard-coded to RSA and SHA1.
#
# == Original author
#
# Paul Duncan <pabs@pablotron.org>
# http://pablotron.org/

module Gem::Security

  ##
  # Gem::Security default exception type

  class Exception < Gem::Exception; end

  ##
  # Digest algorithm used to sign gems

  DIGEST_ALGORITHM =
    if defined?(OpenSSL::Digest::SHA256)
      OpenSSL::Digest::SHA256
    elsif defined?(OpenSSL::Digest::SHA1)
      OpenSSL::Digest::SHA1
    else
      require 'digest'
      Digest::SHA512
    end

  ##
  # Used internally to select the signing digest from all computed digests

  DIGEST_NAME = # :nodoc:
    if DIGEST_ALGORITHM.method_defined? :name
      DIGEST_ALGORITHM.new.name
    else
      DIGEST_ALGORITHM.name[/::([^:]+)\z/, 1]
    end

  ##
  # Algorithm for creating the key pair used to sign gems

  KEY_ALGORITHM =
    if defined?(OpenSSL::PKey::RSA)
      OpenSSL::PKey::RSA
    end

  ##
  # Length of keys created by KEY_ALGORITHM

  KEY_LENGTH = 3072

  ##
  # Cipher used to encrypt the key pair used to sign gems.
  # Must be in the list returned by OpenSSL::Cipher.ciphers

  KEY_CIPHER = OpenSSL::Cipher.new('AES-256-CBC') if defined?(OpenSSL::Cipher)

  ##
  # One day in seconds

  ONE_DAY = 86400

  ##
  # One year in seconds

  ONE_YEAR = ONE_DAY * 365

  ##
  # The default set of extensions are:
  #
  # * The certificate is not a certificate authority
  # * The key for the certificate may be used for key and data encipherment
  #   and digital signatures
  # * The certificate contains a subject key identifier

  EXTENSIONS = {
    'basicConstraints'     => 'CA:FALSE',
    'keyUsage'             =>
      'keyEncipherment,dataEncipherment,digitalSignature',
    'subjectKeyIdentifier' => 'hash',
  }.freeze

  def self.alt_name_or_x509_entry(certificate, x509_entry)
    alt_name = certificate.extensions.find do |extension|
      extension.oid == "#{x509_entry}AltName"
    end

    return alt_name.value if alt_name

    certificate.send x509_entry
  end

  ##
  # Creates an unsigned certificate for +subject+ and +key+.  The lifetime of
  # the key is from the current time to +age+ which defaults to one year.
  #
  # The +extensions+ restrict the key to the indicated uses.

  def self.create_cert(subject, key, age = ONE_YEAR, extensions = EXTENSIONS,
                       serial = 1)
    cert = OpenSSL::X509::Certificate.new

    cert.public_key = key.public_key
    cert.version    = 2
    cert.serial     = serial

    cert.not_before = Time.now
    cert.not_after  = Time.now + age

    cert.subject    = subject

    ef = OpenSSL::X509::ExtensionFactory.new nil, cert

    cert.extensions = extensions.map do |ext_name, value|
      ef.create_extension ext_name, value
    end

    cert
  end

  ##
  # Creates a self-signed certificate with an issuer and subject from +email+,
  # a subject alternative name of +email+ and the given +extensions+ for the
  # +key+.

  def self.create_cert_email(email, key, age = ONE_YEAR, extensions = EXTENSIONS)
    subject = email_to_name email

    extensions = extensions.merge "subjectAltName" => "email:#{email}"

    create_cert_self_signed subject, key, age, extensions
  end

  ##
  # Creates a self-signed certificate with an issuer and subject of +subject+
  # and the given +extensions+ for the +key+.

  def self.create_cert_self_signed(subject, key, age = ONE_YEAR,
                                   extensions = EXTENSIONS, serial = 1)
    certificate = create_cert subject, key, age, extensions

    sign certificate, key, certificate, age, extensions, serial
  end

  ##
  # Creates a new key pair of the specified +length+ and +algorithm+.  The
  # default is a 3072 bit RSA key.

  def self.create_key(length = KEY_LENGTH, algorithm = KEY_ALGORITHM)
    algorithm.new length
  end

  ##
  # Turns +email_address+ into an OpenSSL::X509::Name

  def self.email_to_name(email_address)
    email_address = email_address.gsub(/[^\w@.-]+/i, '_')

    cn, dcs = email_address.split '@'

    dcs = dcs.split '.'

    name = "CN=#{cn}/#{dcs.map { |dc| "DC=#{dc}" }.join '/'}"

    OpenSSL::X509::Name.parse name
  end

  ##
  # Signs +expired_certificate+ with +private_key+ if the keys match and the
  # expired certificate was self-signed.
  #--
  # TODO increment serial

  def self.re_sign(expired_certificate, private_key, age = ONE_YEAR,
                   extensions = EXTENSIONS)
    raise Gem::Security::Exception,
          "incorrect signing key for re-signing " +
          "#{expired_certificate.subject}" unless
      expired_certificate.public_key.to_pem == private_key.public_key.to_pem

    unless expired_certificate.subject.to_s ==
           expired_certificate.issuer.to_s
      subject = alt_name_or_x509_entry expired_certificate, :subject
      issuer  = alt_name_or_x509_entry expired_certificate, :issuer

      raise Gem::Security::Exception,
            "#{subject} is not self-signed, contact #{issuer} " +
            "to obtain a valid certificate"
    end

    serial = expired_certificate.serial + 1

    create_cert_self_signed(expired_certificate.subject, private_key, age,
                            extensions, serial)
  end

  ##
  # Resets the trust directory for verifying gems.

  def self.reset
    @trust_dir = nil
  end

  ##
  # Sign the public key from +certificate+ with the +signing_key+ and
  # +signing_cert+, using the Gem::Security::DIGEST_ALGORITHM.  Uses the
  # default certificate validity range and extensions.
  #
  # Returns the newly signed certificate.

  def self.sign(certificate, signing_key, signing_cert,
                age = ONE_YEAR, extensions = EXTENSIONS, serial = 1)
    signee_subject = certificate.subject
    signee_key     = certificate.public_key

    alt_name = certificate.extensions.find do |extension|
      extension.oid == 'subjectAltName'
    end

    extensions = extensions.merge 'subjectAltName' => alt_name.value if
      alt_name

    issuer_alt_name = signing_cert.extensions.find do |extension|
      extension.oid == 'subjectAltName'
    end

    extensions = extensions.merge 'issuerAltName' => issuer_alt_name.value if
      issuer_alt_name

    signed = create_cert signee_subject, signee_key, age, extensions, serial
    signed.issuer = signing_cert.subject

    signed.sign signing_key, Gem::Security::DIGEST_ALGORITHM.new
  end

  ##
  # Returns a Gem::Security::TrustDir which wraps the directory where trusted
  # certificates live.

  def self.trust_dir
    return @trust_dir if @trust_dir

    dir = File.join Gem.user_home, '.gem', 'trust'

    @trust_dir ||= Gem::Security::TrustDir.new dir
  end

  ##
  # Enumerates the trusted certificates via Gem::Security::TrustDir.

  def self.trusted_certificates(&block)
    trust_dir.each_certificate(&block)
  end

  ##
  # Writes +pemmable+, which must respond to +to_pem+ to +path+ with the given
  # +permissions+. If passed +cipher+ and +passphrase+ those arguments will be
  # passed to +to_pem+.

  def self.write(pemmable, path, permissions = 0600, passphrase = nil, cipher = KEY_CIPHER)
    path = File.expand_path path

    File.open path, 'wb', permissions do |io|
      if passphrase and cipher
        io.write pemmable.to_pem cipher, passphrase
      else
        io.write pemmable.to_pem
      end
    end

    path
  end

  reset

end

if defined?(OpenSSL::SSL)
  require 'rubygems/security/policy'
  require 'rubygems/security/policies'
  require 'rubygems/security/trust_dir'
end

require 'rubygems/security/signer'
PK7H[$(:ه�!share/rubygems/rubygems/source.rbnu�[���# frozen_string_literal: true
autoload :FileUtils, 'fileutils'

require "rubygems/text"
##
# A Source knows how to list and fetch gems from a RubyGems marshal index.
#
# There are other Source subclasses for installed gems, local gems, the
# bundler dependency API and so-forth.

class Gem::Source

  include Comparable
  include Gem::Text

  FILES = { # :nodoc:
    :released   => 'specs',
    :latest     => 'latest_specs',
    :prerelease => 'prerelease_specs',
  }.freeze

  ##
  # The URI this source will fetch gems from.

  attr_reader :uri

  ##
  # Creates a new Source which will use the index located at +uri+.

  def initialize(uri)
    begin
      unless uri.kind_of? URI
        uri = URI.parse(uri.to_s)
      end
    rescue URI::InvalidURIError
      raise if Gem::Source == self.class
    end

    @uri = uri
  end

  ##
  # Sources are ordered by installation preference.

  def <=>(other)
    case other
    when Gem::Source::Installed,
         Gem::Source::Local,
         Gem::Source::Lock,
         Gem::Source::SpecificFile,
         Gem::Source::Git,
         Gem::Source::Vendor then
      -1
    when Gem::Source then
      if !@uri
        return 0 unless other.uri
        return 1
      end

      return -1 if !other.uri

      # Returning 1 here ensures that when sorting a list of sources, the
      # original ordering of sources supplied by the user is preserved.
      return 1 unless @uri.to_s == other.uri.to_s

      0
    else
      nil
    end
  end

  def ==(other) # :nodoc:
    self.class === other and @uri == other.uri
  end

  alias_method :eql?, :== # :nodoc:

  ##
  # Returns a Set that can fetch specifications from this source.

  def dependency_resolver_set # :nodoc:
    return Gem::Resolver::IndexSet.new self if 'file' == uri.scheme

    bundler_api_uri = uri + './api/v1/dependencies'

    begin
      fetcher = Gem::RemoteFetcher.fetcher
      response = fetcher.fetch_path bundler_api_uri, nil, true
    rescue Gem::RemoteFetcher::FetchError
      Gem::Resolver::IndexSet.new self
    else
      if response.respond_to? :uri
        Gem::Resolver::APISet.new response.uri
      else
        Gem::Resolver::APISet.new bundler_api_uri
      end
    end
  end

  def hash # :nodoc:
    @uri.hash
  end

  ##
  # Returns the local directory to write +uri+ to.

  def cache_dir(uri)
    # Correct for windows paths
    escaped_path = uri.path.sub(/^\/([a-z]):\//i, '/\\1-/')
    escaped_path.tap(&Gem::UNTAINT)

    File.join Gem.spec_cache_dir, "#{uri.host}%#{uri.port}", File.dirname(escaped_path)
  end

  ##
  # Returns true when it is possible and safe to update the cache directory.

  def update_cache?
    @update_cache ||=
      begin
        File.stat(Gem.user_home).uid == Process.uid
      rescue Errno::ENOENT
        false
      end
  end

  ##
  # Fetches a specification for the given +name_tuple+.

  def fetch_spec(name_tuple)
    fetcher = Gem::RemoteFetcher.fetcher

    spec_file_name = name_tuple.spec_name

    source_uri = uri + "#{Gem::MARSHAL_SPEC_DIR}#{spec_file_name}"

    cache_dir = cache_dir source_uri

    local_spec = File.join cache_dir, spec_file_name

    if File.exist? local_spec
      spec = Gem.read_binary local_spec
      spec = Marshal.load(spec) rescue nil
      return spec if spec
    end

    source_uri.path << '.rz'

    spec = fetcher.fetch_path source_uri
    spec = Gem::Util.inflate spec

    if update_cache?
      FileUtils.mkdir_p cache_dir

      File.open local_spec, 'wb' do |io|
        io.write spec
      end
    end

    # TODO: Investigate setting Gem::Specification#loaded_from to a URI
    Marshal.load spec
  end

  ##
  # Loads +type+ kind of specs fetching from +@uri+ if the on-disk cache is
  # out of date.
  #
  # +type+ is one of the following:
  #
  # :released   => Return the list of all released specs
  # :latest     => Return the list of only the highest version of each gem
  # :prerelease => Return the list of all prerelease only specs
  #

  def load_specs(type)
    file       = FILES[type]
    fetcher    = Gem::RemoteFetcher.fetcher
    file_name  = "#{file}.#{Gem.marshal_version}"
    spec_path  = uri + "#{file_name}.gz"
    cache_dir  = cache_dir spec_path
    local_file = File.join(cache_dir, file_name)
    retried    = false

    FileUtils.mkdir_p cache_dir if update_cache?

    spec_dump = fetcher.cache_update_path spec_path, local_file, update_cache?

    begin
      Gem::NameTuple.from_list Marshal.load(spec_dump)
    rescue ArgumentError
      if update_cache? && !retried
        FileUtils.rm local_file
        retried = true
        retry
      else
        raise Gem::Exception.new("Invalid spec cache file in #{local_file}")
      end
    end
  end

  ##
  # Downloads +spec+ and writes it to +dir+.  See also
  # Gem::RemoteFetcher#download.

  def download(spec, dir=Dir.pwd)
    fetcher = Gem::RemoteFetcher.fetcher
    fetcher.download spec, uri.to_s, dir
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Remote:', ']' do
      q.breakable
      q.text @uri.to_s

      if api = uri
        q.breakable
        q.text 'API URI: '
        q.text api.to_s
      end
    end
  end

  def typo_squatting?(host, distance_threshold=4)
    return if @uri.host.nil?
    levenshtein_distance(@uri.host, host) <= distance_threshold
  end

end

require 'rubygems/source/git'
require 'rubygems/source/installed'
require 'rubygems/source/specific_file'
require 'rubygems/source/local'
require 'rubygems/source/lock'
require 'rubygems/source/vendor'
PK7H[�E%share/rubygems/rubygems/psych_tree.rbnu�[���# frozen_string_literal: true
module Gem
  if defined? ::Psych::Visitors
    class NoAliasYAMLTree < Psych::Visitors::YAMLTree

      def self.create
        new({})
      end unless respond_to? :create

      def visit_String(str)
        return super unless str == '=' # or whatever you want

        quote = Psych::Nodes::Scalar::SINGLE_QUOTED
        @emitter.scalar str, nil, nil, false, true, quote
      end

      # Noop this out so there are no anchors
      def register(target, obj)
      end

      # This is ported over from the yaml_tree in 1.9.3
      def format_time(time)
        if time.utc?
          time.strftime("%Y-%m-%d %H:%M:%S.%9N Z")
        else
          time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z")
        end
      end

      private :format_time

    end
  end
end
PK7H[���))*share/rubygems/rubygems/dependency_list.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'tsort'
require 'rubygems/deprecate'

##
# Gem::DependencyList is used for installing and uninstalling gems in the
# correct order to avoid conflicts.
#--
# TODO: It appears that all but topo-sort functionality is being duplicated
# (or is planned to be duplicated) elsewhere in rubygems.  Is the majority of
# this class necessary anymore?  Especially #ok?, #why_not_ok?

class Gem::DependencyList

  attr_reader :specs

  include Enumerable
  include TSort

  ##
  # Allows enabling/disabling use of development dependencies

  attr_accessor :development

  ##
  # Creates a DependencyList from the current specs.

  def self.from_specs
    list = new
    list.add(*Gem::Specification.to_a)
    list
  end

  ##
  # Creates a new DependencyList.  If +development+ is true, development
  # dependencies will be included.

  def initialize(development = false)
    @specs = []

    @development = development
  end

  ##
  # Adds +gemspecs+ to the dependency list.

  def add(*gemspecs)
    @specs.concat gemspecs
  end

  def clear
    @specs.clear
  end

  ##
  # Return a list of the gem specifications in the dependency list, sorted in
  # order so that no gemspec in the list depends on a gemspec earlier in the
  # list.
  #
  # This is useful when removing gems from a set of installed gems.  By
  # removing them in the returned order, you don't get into as many dependency
  # issues.
  #
  # If there are circular dependencies (yuck!), then gems will be returned in
  # order until only the circular dependents and anything they reference are
  # left.  Then arbitrary gemspecs will be returned until the circular
  # dependency is broken, after which gems will be returned in dependency
  # order again.

  def dependency_order
    sorted = strongly_connected_components.flatten

    result = []
    seen = {}

    sorted.each do |spec|
      if index = seen[spec.name]
        if result[index].version < spec.version
          result[index] = spec
        end
      else
        seen[spec.name] = result.length
        result << spec
      end
    end

    result.reverse
  end

  ##
  # Iterator over dependency_order

  def each(&block)
    dependency_order.each(&block)
  end

  def find_name(full_name)
    @specs.find { |spec| spec.full_name == full_name }
  end

  def inspect # :nodoc:
    "%s %p>" % [super[0..-2], map { |s| s.full_name }]
  end

  ##
  # Are all the dependencies in the list satisfied?

  def ok?
    why_not_ok?(:quick).empty?
  end

  def why_not_ok?(quick = false)
    unsatisfied = Hash.new { |h,k| h[k] = [] }
    each do |spec|
      spec.runtime_dependencies.each do |dep|
        inst = Gem::Specification.any? do |installed_spec|
          dep.name == installed_spec.name and
            dep.requirement.satisfied_by? installed_spec.version
        end

        unless inst or @specs.find { |s| s.satisfies_requirement? dep }
          unsatisfied[spec.name] << dep
          return unsatisfied if quick
        end
      end
    end

    unsatisfied
  end

  ##
  # It is ok to remove a gemspec from the dependency list?
  #
  # If removing the gemspec creates breaks a currently ok dependency, then it
  # is NOT ok to remove the gemspec.

  def ok_to_remove?(full_name, check_dev=true)
    gem_to_remove = find_name full_name

    # If the state is inconsistent, at least don't crash
    return true unless gem_to_remove

    siblings = @specs.find_all do |s|
      s.name == gem_to_remove.name &&
        s.full_name != gem_to_remove.full_name
    end

    deps = []

    @specs.each do |spec|
      check = check_dev ? spec.dependencies : spec.runtime_dependencies

      check.each do |dep|
        deps << dep if gem_to_remove.satisfies_requirement?(dep)
      end
    end

    deps.all? do |dep|
      siblings.any? do |s|
        s.satisfies_requirement? dep
      end
    end
  end

  ##
  # Remove everything in the DependencyList that matches but doesn't
  # satisfy items in +dependencies+ (a hash of gem names to arrays of
  # dependencies).

  def remove_specs_unsatisfied_by(dependencies)
    specs.reject! do |spec|
      dep = dependencies[spec.name]
      dep and not dep.requirement.satisfied_by? spec.version
    end
  end

  ##
  # Removes the gemspec matching +full_name+ from the dependency list

  def remove_by_name(full_name)
    @specs.delete_if { |spec| spec.full_name == full_name }
  end

  ##
  # Return a hash of predecessors.  <tt>result[spec]</tt> is an Array of
  # gemspecs that have a dependency satisfied by the named gemspec.

  def spec_predecessors
    result = Hash.new { |h,k| h[k] = [] }

    specs = @specs.sort.reverse

    specs.each do |spec|
      specs.each do |other|
        next if spec == other

        other.dependencies.each do |dep|
          if spec.satisfies_requirement? dep
            result[spec] << other
          end
        end
      end
    end

    result
  end

  def tsort_each_node(&block)
    @specs.each(&block)
  end

  def tsort_each_child(node)
    specs = @specs.sort.reverse

    dependencies = node.runtime_dependencies
    dependencies.push(*node.development_dependencies) if @development

    dependencies.each do |dep|
      specs.each do |spec|
        if spec.satisfies_requirement? dep
          yield spec
          break
        end
      end
    end
  end

  private

  ##
  # Count the number of gemspecs in the list +specs+ that are not in
  # +ignored+.

  def active_count(specs, ignored)
    specs.count { |spec| ignored[spec.full_name].nil? }
  end

end
PK7H[���1share/rubygems/rubygems/install_update_options.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'
require 'rubygems/security_option'

##
# Mixin methods for install and update options for Gem::Commands

module Gem::InstallUpdateOptions
  include Gem::SecurityOption

  ##
  # Add the install/update options to the option parser.

  def add_install_update_options
    add_option(:"Install/Update", '-i', '--install-dir DIR',
               'Gem repository directory to get installed',
               'gems') do |value, options|
      options[:install_dir] = File.expand_path(value)
    end

    add_option(:"Install/Update", '-n', '--bindir DIR',
               'Directory where executables are',
               'located') do |value, options|
      options[:bin_dir] = File.expand_path(value)
    end

    add_option(:"Install/Update",       '--document [TYPES]', Array,
               'Generate documentation for installed gems',
               'List the documentation types you wish to',
               'generate.  For example: rdoc,ri') do |value, options|
      options[:document] = case value
                           when nil   then %w[ri]
                           when false then []
                           else            value
                           end
    end

    add_option(:"Install/Update", '--build-root DIR',
               'Temporary installation root. Useful for building',
               'packages. Do not use this when installing remote gems.') do |value, options|
      options[:build_root] = File.expand_path(value)
    end

    add_option(:"Install/Update", '--vendor',
               'Install gem into the vendor directory.',
               'Only for use by gem repackagers.') do |value, options|
      unless Gem.vendor_dir
        raise OptionParser::InvalidOption.new 'your platform is not supported'
      end

      options[:vendor] = true
      options[:install_dir] = Gem.vendor_dir
    end

    add_option(:"Install/Update", '-N', '--no-document',
               'Disable documentation generation') do |value, options|
      options[:document] = []
    end

    add_option(:"Install/Update", '-E', '--[no-]env-shebang',
               "Rewrite the shebang line on installed",
               "scripts to use /usr/bin/env") do |value, options|
      options[:env_shebang] = value
    end

    add_option(:"Install/Update", '-f', '--[no-]force',
               'Force gem to install, bypassing dependency',
               'checks') do |value, options|
      options[:force] = value
    end

    add_option(:"Install/Update", '-w', '--[no-]wrappers',
               'Use bin wrappers for executables',
               'Not available on dosish platforms') do |value, options|
      options[:wrappers] = value
    end

    add_security_option

    add_option(:"Install/Update", '--ignore-dependencies',
               'Do not install any required dependent gems') do |value, options|
      options[:ignore_dependencies] = value
    end

    add_option(:"Install/Update",       '--[no-]format-executable',
               'Make installed executable names match Ruby.',
               'If Ruby is ruby18, foo_exec will be',
               'foo_exec18') do |value, options|
      options[:format_executable] = value
    end

    add_option(:"Install/Update",       '--[no-]user-install',
               'Install in user\'s home directory instead',
               'of GEM_HOME.') do |value, options|
      options[:user_install] = value
    end

    add_option(:"Install/Update", "--development",
                "Install additional development",
                "dependencies") do |value, options|
      options[:development] = true
      options[:dev_shallow] = true
    end

    add_option(:"Install/Update", "--development-all",
                "Install development dependencies for all",
                "gems (including dev deps themselves)") do |value, options|
      options[:development] = true
      options[:dev_shallow] = false
    end

    add_option(:"Install/Update", "--conservative",
                "Don't attempt to upgrade gems already",
                "meeting version requirement") do |value, options|
      options[:conservative] = true
      options[:minimal_deps] = true
    end

    add_option(:"Install/Update", "--minimal-deps",
                "Don't upgrade any dependencies that already",
                "meet version requirements") do |value, options|
      options[:minimal_deps] = true
    end

    add_option(:"Install/Update", "--[no-]post-install-message",
                "Print post install message") do |value, options|
      options[:post_install_message] = value
    end

    add_option(:"Install/Update", '-g', '--file [FILE]',
               'Read from a gem dependencies API file and',
               'install the listed gems') do |v,o|
      v = Gem::GEM_DEP_FILES.find do |file|
        File.exist? file
      end unless v

      unless v
        message = v ? v : "(tried #{Gem::GEM_DEP_FILES.join ', '})"

        raise OptionParser::InvalidArgument,
                "cannot find gem dependencies file #{message}"
      end

      options[:gemdeps] = v
    end

    add_option(:"Install/Update", '--without GROUPS', Array,
               'Omit the named groups (comma separated)',
               'when installing from a gem dependencies',
               'file') do |v,o|
      options[:without_groups].concat v.map { |without| without.intern }
    end

    add_option(:"Install/Update", '--default',
               'Add the gem\'s full specification to',
               'specifications/default and extract only its bin') do |v,o|
      options[:install_as_default] = v
    end

    add_option(:"Install/Update", '--explain',
               'Rather than install the gems, indicate which would',
               'be installed') do |v,o|
      options[:explain] = v
    end

    add_option(:"Install/Update", '--[no-]lock',
               'Create a lock file (when used with -g/--file)') do |v,o|
      options[:lock] = v
    end

    add_option(:"Install/Update", '--[no-]suggestions',
               'Suggest alternates when gems are not found') do |v,o|
      options[:suggest_alternate] = v
    end
  end

  ##
  # Default options for the gem install command.

  def install_update_defaults_str
    '--document=rdoc,ri --wrappers'
  end

end
PK7H[M��0share/rubygems/rubygems/ext/configure_builder.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

class Gem::Ext::ConfigureBuilder < Gem::Ext::Builder

  def self.build(extension, dest_path, results, args=[], lib_dir=nil)
    unless File.exist?('Makefile')
      cmd = "sh ./configure --prefix=#{dest_path}"
      cmd << " #{args.join ' '}" unless args.empty?

      run cmd, results
    end

    make dest_path, results

    results
  end

end
PK7H[)|� ��/share/rubygems/rubygems/ext/ext_conf_builder.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'fileutils'
require 'tempfile'
require 'shellwords'

class Gem::Ext::ExtConfBuilder < Gem::Ext::Builder

  FileEntry = FileUtils::Entry_ # :nodoc:

  def self.build(extension, dest_path, results, args=[], lib_dir=nil)
    tmp_dest = Dir.mktmpdir(".gem.", ".")

    # Some versions of `mktmpdir` return absolute paths, which will break make
    # if the paths contain spaces. However, on Ruby 1.9.x on Windows, relative
    # paths cause all C extension builds to fail.
    #
    # As such, we convert to a relative path unless we are using Ruby 1.9.x on
    # Windows. This means that when using Ruby 1.9.x on Windows, paths with
    # spaces do not work.
    #
    # Details: https://github.com/rubygems/rubygems/issues/977#issuecomment-171544940
    tmp_dest = get_relative_path(tmp_dest)

    Tempfile.open %w"siteconf .rb", "." do |siteconf|
      siteconf.puts "require 'rbconfig'"
      siteconf.puts "dest_path = #{tmp_dest.dump}"
      %w[sitearchdir sitelibdir].each do |dir|
        siteconf.puts "RbConfig::MAKEFILE_CONFIG['#{dir}'] = dest_path"
        siteconf.puts "RbConfig::CONFIG['#{dir}'] = dest_path"
      end

      siteconf.close

      destdir = ENV["DESTDIR"]

      begin
        cmd = Gem.ruby.shellsplit << "-I" << File.expand_path("../../..", __FILE__) <<
              "-r" << get_relative_path(siteconf.path) << File.basename(extension)
        cmd.push(*args)

        begin
          run(cmd, results) do |s, r|
            if File.exist? 'mkmf.log'
              unless s.success?
                r << "To see why this extension failed to compile, please check" \
                  " the mkmf.log which can be found here:\n"
                r << "  " + File.join(dest_path, 'mkmf.log') + "\n"
              end
              FileUtils.mv 'mkmf.log', dest_path
            end
          end
          siteconf.unlink
        end

        ENV["DESTDIR"] = nil

        make dest_path, results

        if tmp_dest
          # TODO remove in RubyGems 3
          if Gem.install_extension_in_lib and lib_dir
            FileUtils.mkdir_p lib_dir
            entries = Dir.entries(tmp_dest) - %w[. ..]
            entries = entries.map { |entry| File.join tmp_dest, entry }
            FileUtils.cp_r entries, lib_dir, :remove_destination => true
          end

          FileEntry.new(tmp_dest).traverse do |ent|
            destent = ent.class.new(dest_path, ent.rel)
            destent.exist? or FileUtils.mv(ent.path, destent.path)
          end
        end
      ensure
        ENV["DESTDIR"] = destdir
        siteconf.close!
      end
    end

    results
  ensure
    FileUtils.rm_rf tmp_dest if tmp_dest
  end

  private

  def self.get_relative_path(path)
    path[0..Dir.pwd.length - 1] = '.' if path.start_with?(Dir.pwd)
    path
  end

end
PK7H["�׾�,share/rubygems/rubygems/ext/cmake_builder.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Ext::CmakeBuilder < Gem::Ext::Builder

  def self.build(extension, dest_path, results, args=[], lib_dir=nil)
    unless File.exist?('Makefile')
      cmd = "cmake . -DCMAKE_INSTALL_PREFIX=#{dest_path}"
      cmd << " #{Gem::Command.build_args.join ' '}" unless Gem::Command.build_args.empty?

      run cmd, results
    end

    make dest_path, results

    results
  end

end
PK7H[j����&share/rubygems/rubygems/ext/builder.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/user_interaction'

class Gem::Ext::Builder

  include Gem::UserInteraction

  ##
  # The builder shells-out to run various commands after changing the
  # directory.  This means multiple installations cannot be allowed to build
  # extensions in parallel as they may change each other's directories leading
  # to broken extensions or failed installations.

  CHDIR_MUTEX = Mutex.new # :nodoc:

  attr_accessor :build_args # :nodoc:

  def self.class_name
    name =~ /Ext::(.*)Builder/
    $1.downcase
  end

  def self.make(dest_path, results)
    unless File.exist? 'Makefile'
      raise Gem::InstallError, 'Makefile not found'
    end

    # try to find make program from Ruby configure arguments first
    RbConfig::CONFIG['configure_args'] =~ /with-make-prog\=(\w+)/
    make_program = ENV['MAKE'] || ENV['make'] || $1
    unless make_program
      make_program = (/mswin/ =~ RUBY_PLATFORM) ? 'nmake' : 'make'
    end

    destdir = '"DESTDIR=%s"' % ENV['DESTDIR']

    ['clean', '', 'install'].each do |target|
      # Pass DESTDIR via command line to override what's in MAKEFLAGS
      cmd = [
        make_program,
        destdir,
        target
      ].join(' ').rstrip
      begin
        run(cmd, results, "make #{target}".rstrip)
      rescue Gem::InstallError
        raise unless target == 'clean' # ignore clean failure
      end
    end
  end

  def self.run(command, results, command_name = nil)
    verbose = Gem.configuration.really_verbose

    begin
      rubygems_gemdeps, ENV['RUBYGEMS_GEMDEPS'] = ENV['RUBYGEMS_GEMDEPS'], nil
      if verbose
        puts("current directory: #{Dir.pwd}")
        p(command)
      end
      results << "current directory: #{Dir.pwd}"
      results << (command.respond_to?(:shelljoin) ? command.shelljoin : command)

      require "open3"
      # Set $SOURCE_DATE_EPOCH for the subprocess.
      env = {'SOURCE_DATE_EPOCH' => Gem.source_date_epoch_string}
      output, status = Open3.capture2e(env, *command)
      if verbose
        puts output
      else
        results << output
      end
    rescue => error
      raise Gem::InstallError, "#{command_name || class_name} failed#{error.message}"
    ensure
      ENV['RUBYGEMS_GEMDEPS'] = rubygems_gemdeps
    end

    unless status.success?
      results << "Building has failed. See above output for more information on the failure." if verbose
    end

    yield(status, results) if block_given?

    unless status.success?
      exit_reason =
        if status.exited?
          ", exit code #{status.exitstatus}"
        elsif status.signaled?
          ", uncaught signal #{status.termsig}"
        end

      raise Gem::InstallError, "#{command_name || class_name} failed#{exit_reason}"
    end
  end

  ##
  # Creates a new extension builder for +spec+.  If the +spec+ does not yet
  # have build arguments, saved, set +build_args+ which is an ARGV-style
  # array.

  def initialize(spec, build_args = spec.build_args)
    @spec       = spec
    @build_args = build_args
    @gem_dir    = spec.full_gem_path

    @ran_rake = false
  end

  ##
  # Chooses the extension builder class for +extension+

  def builder_for(extension) # :nodoc:
    case extension
    when /extconf/ then
      Gem::Ext::ExtConfBuilder
    when /configure/ then
      Gem::Ext::ConfigureBuilder
    when /rakefile/i, /mkrf_conf/i then
      @ran_rake = true
      Gem::Ext::RakeBuilder
    when /CMakeLists.txt/ then
      Gem::Ext::CmakeBuilder
    else
      build_error("No builder for extension '#{extension}'")
    end
  end

  ##
  # Logs the build +output+, then raises Gem::Ext::BuildError.

  def build_error(output, backtrace = nil) # :nodoc:
    gem_make_out = write_gem_make_out output

    message = <<-EOF
ERROR: Failed to build gem native extension.

    #{output}

Gem files will remain installed in #{@gem_dir} for inspection.
Results logged to #{gem_make_out}
EOF

    raise Gem::Ext::BuildError, message, backtrace
  end

  def build_extension(extension, dest_path) # :nodoc:
    results = []

    builder = builder_for(extension)

    extension_dir =
      File.expand_path File.join(@gem_dir, File.dirname(extension))
    lib_dir = File.join @spec.full_gem_path, @spec.raw_require_paths.first

    begin
      FileUtils.mkdir_p dest_path

      CHDIR_MUTEX.synchronize do
        pwd = Dir.getwd
        Dir.chdir extension_dir
        begin
          results = builder.build(extension, dest_path,
                                  results, @build_args, lib_dir)

          verbose { results.join("\n") }
        ensure
          begin
            Dir.chdir pwd
          rescue SystemCallError
            Dir.chdir dest_path
          end
        end
      end

      write_gem_make_out results.join "\n"
    rescue => e
      results << e.message
      build_error(results.join("\n"), $@)
    end
  end

  ##
  # Builds extensions.  Valid types of extensions are extconf.rb files,
  # configure scripts and rakefiles or mkrf_conf files.

  def build_extensions
    return if @spec.extensions.empty?

    if @build_args.empty?
      say "Building native extensions. This could take a while..."
    else
      say "Building native extensions with: '#{@build_args.join ' '}'"
      say "This could take a while..."
    end

    dest_path = @spec.extension_dir

    FileUtils.rm_f @spec.gem_build_complete_path

    @spec.extensions.each do |extension|
      break if @ran_rake

      build_extension extension, dest_path
    end

    FileUtils.touch @spec.gem_build_complete_path
  end

  ##
  # Writes +output+ to gem_make.out in the extension install directory.

  def write_gem_make_out(output) # :nodoc:
    destination = File.join @spec.extension_dir, 'gem_make.out'

    FileUtils.mkdir_p @spec.extension_dir

    File.open destination, 'wb' do |io|
      io.puts output
    end

    destination
  end

end
PK7H[�JB\\+share/rubygems/rubygems/ext/rake_builder.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require "shellwords"

class Gem::Ext::RakeBuilder < Gem::Ext::Builder

  def self.build(extension, dest_path, results, args=[], lib_dir=nil)
    if File.basename(extension) =~ /mkrf_conf/i
      run([Gem.ruby, File.basename(extension), *args], results)
    end

    rake = ENV['rake']

    if rake
      rake = rake.shellsplit
    else
      begin
        rake = [Gem.ruby, "-I#{File.expand_path("..", __dir__)}", "-rrubygems", Gem.bin_path('rake', 'rake')]
      rescue Gem::Exception
        rake = [Gem.default_exec_format % 'rake']
      end
    end

    rake_args = ["RUBYARCHDIR=#{dest_path}", "RUBYLIBDIR=#{dest_path}", *args]
    run(rake + rake_args, results)

    results
  end

end
PK7H[�C�֐�*share/rubygems/rubygems/ext/build_error.rbnu�[���# frozen_string_literal: true
##
# Raised when there is an error while building extensions.

class Gem::Ext::BuildError < Gem::InstallError
end
PK7H[n����%�%)share/rubygems/rubygems/remote_fetcher.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/request'
require 'rubygems/request/connection_pools'
require 'rubygems/s3_uri_signer'
require 'rubygems/uri_formatter'
require 'rubygems/uri_parsing'
require 'rubygems/user_interaction'
require 'resolv'
require 'rubygems/deprecate'

##
# RemoteFetcher handles the details of fetching gems and gem information from
# a remote source.

class Gem::RemoteFetcher

  include Gem::UserInteraction
  extend Gem::Deprecate

  include Gem::UriParsing

  ##
  # A FetchError exception wraps up the various possible IO and HTTP failures
  # that could happen while downloading from the internet.

  class FetchError < Gem::Exception

    include Gem::UriParsing

    ##
    # The URI which was being accessed when the exception happened.

    attr_accessor :uri

    def initialize(message, uri)
      super message

      uri = parse_uri(uri)

      uri.password = 'REDACTED' if uri.respond_to?(:password) && uri.password

      @uri = uri.to_s
    end

    def to_s # :nodoc:
      "#{super} (#{uri})"
    end

  end

  ##
  # A FetchError that indicates that the reason for not being
  # able to fetch data was that the host could not be contacted

  class UnknownHostError < FetchError
  end

  @fetcher = nil

  ##
  # Cached RemoteFetcher instance.

  def self.fetcher
    @fetcher ||= self.new Gem.configuration[:http_proxy]
  end

  attr_accessor :headers

  ##
  # Initialize a remote fetcher using the source URI and possible proxy
  # information.
  #
  # +proxy+
  # * [String]: explicit specification of proxy; overrides any environment
  #             variable setting
  # * nil: respect environment variables (HTTP_PROXY, HTTP_PROXY_USER,
  #        HTTP_PROXY_PASS)
  # * <tt>:no_proxy</tt>: ignore environment variables and _don't_ use a proxy
  #
  # +headers+: A set of additional HTTP headers to be sent to the server when
  #            fetching the gem.

  def initialize(proxy=nil, dns=nil, headers={})
    require 'net/http'
    require 'stringio'
    require 'time'
    require 'uri'

    Socket.do_not_reverse_lookup = true

    @proxy = proxy
    @pools = {}
    @pool_lock = Mutex.new
    @cert_files = Gem::Request.get_cert_files

    @headers = headers
  end

  ##
  # Given a name and requirement, downloads this gem into cache and returns the
  # filename. Returns nil if the gem cannot be located.
  #--
  # Should probably be integrated with #download below, but that will be a
  # larger, more encompassing effort. -erikh

  def download_to_cache(dependency)
    found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dependency

    return if found.empty?

    spec, source = found.max_by { |(s,_)| s.version }

    download spec, source.uri
  end

  ##
  # Moves the gem +spec+ from +source_uri+ to the cache dir unless it is
  # already there.  If the source_uri is local the gem cache dir copy is
  # always replaced.

  def download(spec, source_uri, install_dir = Gem.dir)
    cache_dir =
      if Dir.pwd == install_dir  # see fetch_command
        install_dir
      elsif File.writable? install_dir
        File.join install_dir, "cache"
      else
        File.join Gem.user_dir, "cache"
      end

    gem_file_name = File.basename spec.cache_file
    local_gem_path = File.join cache_dir, gem_file_name

    FileUtils.mkdir_p cache_dir rescue nil unless File.exist? cache_dir

    source_uri = parse_uri(source_uri)

    scheme = source_uri.scheme

    # URI.parse gets confused by MS Windows paths with forward slashes.
    scheme = nil if scheme =~ /^[a-z]$/i

    # REFACTOR: split this up and dispatch on scheme (eg download_http)
    # REFACTOR: be sure to clean up fake fetcher when you do this... cleaner
    case scheme
    when 'http', 'https', 's3' then
      unless File.exist? local_gem_path
        begin
          verbose "Downloading gem #{gem_file_name}"

          remote_gem_path = source_uri + "gems/#{gem_file_name}"

          self.cache_update_path remote_gem_path, local_gem_path
        rescue FetchError
          raise if spec.original_platform == spec.platform

          alternate_name = "#{spec.original_name}.gem"

          verbose "Failed, downloading gem #{alternate_name}"

          remote_gem_path = source_uri + "gems/#{alternate_name}"

          self.cache_update_path remote_gem_path, local_gem_path
        end
      end
    when 'file' then
      begin
        path = source_uri.path
        path = File.dirname(path) if File.extname(path) == '.gem'

        remote_gem_path = Gem::Util.correct_for_windows_path(File.join(path, 'gems', gem_file_name))

        FileUtils.cp(remote_gem_path, local_gem_path)
      rescue Errno::EACCES
        local_gem_path = source_uri.to_s
      end

      verbose "Using local gem #{local_gem_path}"
    when nil then # TODO test for local overriding cache
      source_path = if Gem.win_platform? && source_uri.scheme &&
                       !source_uri.path.include?(':')
                      "#{source_uri.scheme}:#{source_uri.path}"
                    else
                      source_uri.path
                    end

      source_path = Gem::UriFormatter.new(source_path).unescape

      begin
        FileUtils.cp source_path, local_gem_path unless
          File.identical?(source_path, local_gem_path)
      rescue Errno::EACCES
        local_gem_path = source_uri.to_s
      end

      verbose "Using local gem #{local_gem_path}"
    else
      raise ArgumentError, "unsupported URI scheme #{source_uri.scheme}"
    end

    local_gem_path
  end

  ##
  # File Fetcher. Dispatched by +fetch_path+. Use it instead.

  def fetch_file(uri, *_)
    Gem.read_binary Gem::Util.correct_for_windows_path uri.path
  end

  ##
  # HTTP Fetcher. Dispatched by +fetch_path+. Use it instead.

  def fetch_http(uri, last_modified = nil, head = false, depth = 0)
    fetch_type = head ? Net::HTTP::Head : Net::HTTP::Get
    response   = request uri, fetch_type, last_modified do |req|
      headers.each { |k,v| req.add_field(k,v) }
    end

    case response
    when Net::HTTPOK, Net::HTTPNotModified then
      response.uri = uri if response.respond_to? :uri
      head ? response : response.body
    when Net::HTTPMovedPermanently, Net::HTTPFound, Net::HTTPSeeOther,
         Net::HTTPTemporaryRedirect then
      raise FetchError.new('too many redirects', uri) if depth > 10

      unless location = response['Location']
        raise FetchError.new("redirecting but no redirect location was given", uri)
      end
      location = parse_uri location

      if https?(uri) && !https?(location)
        raise FetchError.new("redirecting to non-https resource: #{location}", uri)
      end

      fetch_http(location, last_modified, head, depth + 1)
    else
      raise FetchError.new("bad response #{response.message} #{response.code}", uri)
    end
  end

  alias :fetch_https :fetch_http

  ##
  # Downloads +uri+ and returns it as a String.

  def fetch_path(uri, mtime = nil, head = false)
    uri = parse_uri uri

    unless uri.scheme
      raise ArgumentError, "uri scheme is invalid: #{uri.scheme.inspect}"
    end

    data = send "fetch_#{uri.scheme}", uri, mtime, head

    if data and !head and uri.to_s =~ /\.gz$/
      begin
        data = Gem::Util.gunzip data
      rescue Zlib::GzipFile::Error
        raise FetchError.new("server did not return a valid file", uri)
      end
    end

    data
  rescue Timeout::Error
    raise UnknownHostError.new('timed out', uri)
  rescue IOError, SocketError, SystemCallError,
         *(OpenSSL::SSL::SSLError if defined?(OpenSSL)) => e
    if e.message =~ /getaddrinfo/
      raise UnknownHostError.new('no such name', uri)
    else
      raise FetchError.new("#{e.class}: #{e}", uri)
    end
  end

  def fetch_s3(uri, mtime = nil, head = false)
    begin
      public_uri = s3_uri_signer(uri).sign
    rescue Gem::S3URISigner::ConfigurationError, Gem::S3URISigner::InstanceProfileError => e
      raise FetchError.new(e.message, "s3://#{uri.host}")
    end
    fetch_https public_uri, mtime, head
  end

  # we have our own signing code here to avoid a dependency on the aws-sdk gem
  def s3_uri_signer(uri)
    Gem::S3URISigner.new(uri)
  end

  ##
  # Downloads +uri+ to +path+ if necessary. If no path is given, it just
  # passes the data.

  def cache_update_path(uri, path = nil, update = true)
    mtime = path && File.stat(path).mtime rescue nil

    data = fetch_path(uri, mtime)

    if data == nil # indicates the server returned 304 Not Modified
      return Gem.read_binary(path)
    end

    if update and path
      Gem.write_binary(path, data)
    end

    data
  end

  ##
  # Returns the size of +uri+ in bytes.

  def fetch_size(uri)
    response = fetch_path(uri, nil, true)

    response['content-length'].to_i
  end

  deprecate :fetch_size, :none, 2019, 12

  ##
  # Performs a Net::HTTP request of type +request_class+ on +uri+ returning
  # a Net::HTTP response object.  request maintains a table of persistent
  # connections to reduce connect overhead.

  def request(uri, request_class, last_modified = nil)
    proxy = proxy_for @proxy, uri
    pool  = pools_for(proxy).pool_for uri

    request = Gem::Request.new uri, request_class, last_modified, pool

    request.fetch do |req|
      yield req if block_given?
    end
  end

  def https?(uri)
    uri.scheme.downcase == 'https'
  end

  def close_all
    @pools.each_value {|pool| pool.close_all}
  end

  private

  def proxy_for(proxy, uri)
    Gem::Request.proxy_uri(proxy || Gem::Request.get_proxy_from_env(uri.scheme))
  end

  def pools_for(proxy)
    @pool_lock.synchronize do
      @pools[proxy] ||= Gem::Request::ConnectionPools.new proxy, @cert_files
    end
  end

end
PK7H[X`���0share/rubygems/rubygems/commands/list_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/commands/query_command'

##
# An alternate to Gem::Commands::QueryCommand that searches for gems starting
# with the supplied argument.

class Gem::Commands::ListCommand < Gem::Commands::QueryCommand

  def initialize
    super 'list', 'Display local gems whose name matches REGEXP'

    remove_option('--name-matches')
  end

  def arguments # :nodoc:
    "REGEXP        regexp to look for in gem name"
  end

  def defaults_str # :nodoc:
    "--local --no-details"
  end

  def description # :nodoc:
    <<-EOF
The list command is used to view the gems you have installed locally.

The --details option displays additional details including the summary, the
homepage, the author, the locations of different versions of the gem.

To search for remote gems use the search command.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [REGEXP ...]"
  end

end
PK7H[�����:share/rubygems/rubygems/commands/generate_index_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/indexer'

##
# Generates a index files for use as a gem server.
#
# See `gem help generate_index`

class Gem::Commands::GenerateIndexCommand < Gem::Command

  def initialize
    super 'generate_index',
          'Generates the index files for a gem server directory',
          :directory => '.', :build_modern => true

    add_option '-d', '--directory=DIRNAME',
               'repository base dir containing gems subdir' do |dir, options|
      options[:directory] = File.expand_path dir
    end

    add_option '--[no-]modern',
               'Generate indexes for RubyGems',
               '(always true)' do |value, options|
      options[:build_modern] = value
    end

    deprecate_option('--modern', version: '4.0', extra_msg: 'Modern indexes (specs, latest_specs, and prerelease_specs) are always generated, so this option is not needed.')
    deprecate_option('--no-modern', version: '4.0', extra_msg: 'The `--no-modern` option is currently ignored. Modern indexes (specs, latest_specs, and prerelease_specs) are always generated.')

    add_option '--update',
               'Update modern indexes with gems added',
               'since the last update' do |value, options|
      options[:update] = value
    end
  end

  def defaults_str # :nodoc:
    "--directory . --modern"
  end

  def description # :nodoc:
    <<-EOF
The generate_index command creates a set of indexes for serving gems
statically.  The command expects a 'gems' directory under the path given to
the --directory option.  The given directory will be the directory you serve
as the gem repository.

For `gem generate_index --directory /path/to/repo`, expose /path/to/repo via
your HTTP server configuration (not /path/to/repo/gems).

When done, it will generate a set of files like this:

  gems/*.gem                                   # .gem files you want to
                                               # index

  specs.<version>.gz                           # specs index
  latest_specs.<version>.gz                    # latest specs index
  prerelease_specs.<version>.gz                # prerelease specs index
  quick/Marshal.<version>/<gemname>.gemspec.rz # Marshal quick index file

The .rz extension files are compressed with the inflate algorithm.
The Marshal version number comes from ruby's Marshal::MAJOR_VERSION and
Marshal::MINOR_VERSION constants.  It is used to ensure compatibility.
    EOF
  end

  def execute
    # This is always true because it's the only way now.
    options[:build_modern] = true

    if not File.exist?(options[:directory]) or
       not File.directory?(options[:directory])
      alert_error "unknown directory name #{options[:directory]}."
      terminate_interaction 1
    else
      indexer = Gem::Indexer.new options.delete(:directory), options

      if options[:update]
        indexer.update_index
      else
        indexer.generate_index
      end
    end
  end

end
PK7H[��3share/rubygems/rubygems/commands/sources_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/remote_fetcher'
require 'rubygems/spec_fetcher'
require 'rubygems/local_remote_options'

class Gem::Commands::SourcesCommand < Gem::Command

  include Gem::LocalRemoteOptions

  def initialize
    require 'fileutils'

    super 'sources',
          'Manage the sources and cache file RubyGems uses to search for gems'

    add_option '-a', '--add SOURCE_URI', 'Add source' do |value, options|
      options[:add] = value
    end

    add_option '-l', '--list', 'List sources' do |value, options|
      options[:list] = value
    end

    add_option '-r', '--remove SOURCE_URI', 'Remove source' do |value, options|
      options[:remove] = value
    end

    add_option '-c', '--clear-all',
               'Remove all sources (clear the cache)' do |value, options|
      options[:clear_all] = value
    end

    add_option '-u', '--update', 'Update source cache' do |value, options|
      options[:update] = value
    end

    add_proxy_option
  end

  def add_source(source_uri) # :nodoc:
    check_rubygems_https source_uri

    source = Gem::Source.new source_uri

    check_typo_squatting(source)

    begin
      if Gem.sources.include? source
        say "source #{source_uri} already present in the cache"
      else
        source.load_specs :released
        Gem.sources << source
        Gem.configuration.write

        say "#{source_uri} added to sources"
      end
    rescue URI::Error, ArgumentError
      say "#{source_uri} is not a URI"
      terminate_interaction 1
    rescue Gem::RemoteFetcher::FetchError => e
      say "Error fetching #{source_uri}:\n\t#{e.message}"
      terminate_interaction 1
    end
  end

  def check_typo_squatting(source)
    if source.typo_squatting?("rubygems.org")
      question = <<-QUESTION.chomp
#{source.uri.to_s} is too similar to https://rubygems.org

Do you want to add this source?
      QUESTION

      terminate_interaction 1 unless ask_yes_no question
    end
  end

  def check_rubygems_https(source_uri) # :nodoc:
    uri = URI source_uri

    if uri.scheme and uri.scheme.downcase == 'http' and
       uri.host.downcase == 'rubygems.org'
      question = <<-QUESTION.chomp
https://rubygems.org is recommended for security over #{uri}

Do you want to add this insecure source?
      QUESTION

      terminate_interaction 1 unless ask_yes_no question
    end
  end

  def clear_all # :nodoc:
    path = Gem.spec_cache_dir
    FileUtils.rm_rf path

    unless File.exist? path
      say "*** Removed specs cache ***"
    else
      unless File.writable? path
        say "*** Unable to remove source cache (write protected) ***"
      else
        say "*** Unable to remove source cache ***"
      end

      terminate_interaction 1
    end
  end

  def defaults_str # :nodoc:
    '--list'
  end

  def description # :nodoc:
    <<-EOF
RubyGems fetches gems from the sources you have configured (stored in your
~/.gemrc).

The default source is https://rubygems.org, but you may have other sources
configured.  This guide will help you update your sources or configure
yourself to use your own gem server.

Without any arguments the sources lists your currently configured sources:

  $ gem sources
  *** CURRENT SOURCES ***

  https://rubygems.org

This may list multiple sources or non-rubygems sources.  You probably
configured them before or have an old `~/.gemrc`.  If you have sources you
do not recognize you should remove them.

RubyGems has been configured to serve gems via the following URLs through
its history:

* http://gems.rubyforge.org (RubyGems 1.3.6 and earlier)
* https://rubygems.org/       (RubyGems 1.3.7 through 1.8.25)
* https://rubygems.org      (RubyGems 2.0.1 and newer)

Since all of these sources point to the same set of gems you only need one
of them in your list.  https://rubygems.org is recommended as it brings the
protections of an SSL connection to gem downloads.

To add a source use the --add argument:

    $ gem sources --add https://rubygems.org
    https://rubygems.org added to sources

RubyGems will check to see if gems can be installed from the source given
before it is added.

To remove a source use the --remove argument:

    $ gem sources --remove https://rubygems.org/
    https://rubygems.org/ removed from sources

    EOF
  end

  def list # :nodoc:
    say "*** CURRENT SOURCES ***"
    say

    Gem.sources.each do |src|
      say src
    end
  end

  def list? # :nodoc:
    !(options[:add] ||
      options[:clear_all] ||
      options[:remove] ||
      options[:update])
  end

  def execute
    clear_all if options[:clear_all]

    source_uri = options[:add]
    add_source source_uri if source_uri

    source_uri = options[:remove]
    remove_source source_uri if source_uri

    update if options[:update]

    list if list?
  end

  def remove_source(source_uri) # :nodoc:
    unless Gem.sources.include? source_uri
      say "source #{source_uri} not present in cache"
    else
      Gem.sources.delete source_uri
      Gem.configuration.write

      say "#{source_uri} removed from sources"
    end
  end

  def update # :nodoc:
    Gem.sources.each_source do |src|
      src.load_specs :released
      src.load_specs :latest
    end

    say "source cache successfully updated"
  end

  def remove_cache_file(desc, path) # :nodoc:
    FileUtils.rm_rf path

    if not File.exist?(path)
      say "*** Removed #{desc} source cache ***"
    elsif not File.writable?(path)
      say "*** Unable to remove #{desc} source cache (write protected) ***"
    else
      say "*** Unable to remove #{desc} source cache ***"
    end
  end

end
PK7H[E����2share/rubygems/rubygems/commands/unpack_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/version_option'
require 'rubygems/security_option'
require 'rubygems/remote_fetcher'
require 'rubygems/package'

# forward-declare

module Gem::Security # :nodoc:
  class Policy # :nodoc:
  end
end

class Gem::Commands::UnpackCommand < Gem::Command

  include Gem::VersionOption
  include Gem::SecurityOption

  def initialize
    require 'fileutils'

    super 'unpack', 'Unpack an installed gem to the current directory',
          :version => Gem::Requirement.default,
          :target  => Dir.pwd

    add_option('--target=DIR',
               'target directory for unpacking') do |value, options|
      options[:target] = value
    end

    add_option('--spec', 'unpack the gem specification') do |value, options|
      options[:spec] = true
    end

    add_security_option
    add_version_option
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to unpack"
  end

  def defaults_str # :nodoc:
    "--version '#{Gem::Requirement.default}'"
  end

  def description
    <<-EOF
The unpack command allows you to examine the contents of a gem or modify
them to help diagnose a bug.

You can add the contents of the unpacked gem to the load path using the
RUBYLIB environment variable or -I:

  $ gem unpack my_gem
  Unpacked gem: '.../my_gem-1.0'
  [edit my_gem-1.0/lib/my_gem.rb]
  $ ruby -Imy_gem-1.0/lib -S other_program

You can repackage an unpacked gem using the build command.  See the build
command help for an example.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME"
  end

  #--
  # TODO: allow, e.g., 'gem unpack rake-0.3.1'.  Find a general solution for
  # this, so that it works for uninstall as well.  (And check other commands
  # at the same time.)

  def execute
    security_policy = options[:security_policy]

    get_all_gem_names.each do |name|
      dependency = Gem::Dependency.new name, options[:version]
      path = get_path dependency

      unless path
        alert_error "Gem '#{name}' not installed nor fetchable."
        next
      end

      if @options[:spec]
        spec, metadata = Gem::Package.raw_spec(path, security_policy)

        if metadata.nil?
          alert_error "--spec is unsupported on '#{name}' (old format gem)"
          next
        end

        spec_file = File.basename spec.spec_file

        FileUtils.mkdir_p @options[:target] if @options[:target]

        destination = begin
          if @options[:target]
            File.join @options[:target], spec_file
          else
            spec_file
          end
        end

        File.open destination, 'w' do |io|
          io.write metadata
        end
      else
        basename = File.basename path, '.gem'
        target_dir = File.expand_path basename, options[:target]

        package = Gem::Package.new path, security_policy
        package.extract_files target_dir

        say "Unpacked gem: '#{target_dir}'"
      end
    end
  end

  ##
  #
  # Find cached filename in Gem.path. Returns nil if the file cannot be found.
  #
  #--
  # TODO: see comments in get_path() about general service.

  def find_in_cache(filename)
    Gem.path.each do |path|
      this_path = File.join(path, "cache", filename)
      return this_path if File.exist? this_path
    end

    return nil
  end

  ##
  # Return the full path to the cached gem file matching the given
  # name and version requirement.  Returns 'nil' if no match.
  #
  # Example:
  #
  #   get_path 'rake', '> 0.4' # "/usr/lib/ruby/gems/1.8/cache/rake-0.4.2.gem"
  #   get_path 'rake', '< 0.1' # nil
  #   get_path 'rak'           # nil (exact name required)
  #--
  # TODO: This should be refactored so that it's a general service. I don't
  # think any of our existing classes are the right place though.  Just maybe
  # 'Cache'?
  #
  # TODO: It just uses Gem.dir for now.  What's an easy way to get the list of
  # source directories?

  def get_path(dependency)
    return dependency.name if dependency.name =~ /\.gem$/i

    specs = dependency.matching_specs

    selected = specs.max_by { |s| s.version }

    return Gem::RemoteFetcher.fetcher.download_to_cache(dependency) unless
      selected

    return unless dependency.name =~ /^#{selected.name}$/i

    # We expect to find (basename).gem in the 'cache' directory.  Furthermore,
    # the name match must be exact (ignoring case).

    path = find_in_cache File.basename selected.cache_file

    return Gem::RemoteFetcher.fetcher.download_to_cache(dependency) unless path

    path
  end

end
PK7H[��%���3share/rubygems/rubygems/commands/cleanup_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/dependency_list'
require 'rubygems/uninstaller'

class Gem::Commands::CleanupCommand < Gem::Command

  def initialize
    super 'cleanup',
          'Clean up old versions of installed gems',
          :force => false, :install_dir => Gem.dir,
          :check_dev => true

    add_option('-n', '-d', '--dryrun',
               'Do not uninstall gems') do |value, options|
      options[:dryrun] = true
    end

    add_option('-D', '--[no-]check-development',
               'Check development dependencies while uninstalling',
               '(default: true)') do |value, options|
      options[:check_dev] = value
    end

    add_option('--[no-]user-install',
               'Cleanup in user\'s home directory instead',
               'of GEM_HOME.') do |value, options|
      options[:user_install] = value
    end

    @candidate_gems  = nil
    @default_gems    = []
    @full            = nil
    @gems_to_cleanup = nil
    @original_home   = nil
    @original_path   = nil
    @primary_gems    = nil
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to cleanup"
  end

  def defaults_str # :nodoc:
    "--no-dryrun"
  end

  def description # :nodoc:
    <<-EOF
The cleanup command removes old versions of gems from GEM_HOME that are not
required to meet a dependency.  If a gem is installed elsewhere in GEM_PATH
the cleanup command won't delete it.

If no gems are named all gems in GEM_HOME are cleaned.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [GEMNAME ...]"
  end

  def execute
    say "Cleaning up installed gems..."

    if options[:args].empty?
      done     = false
      last_set = nil

      until done do
        clean_gems

        this_set = @gems_to_cleanup.map { |spec| spec.full_name }.sort

        done = this_set.empty? || last_set == this_set

        last_set = this_set
      end
    else
      clean_gems
    end

    say "Clean up complete"

    verbose do
      skipped = @default_gems.map { |spec| spec.full_name }

      "Skipped default gems: #{skipped.join ', '}"
    end
  end

  def clean_gems
    @original_home = Gem.dir
    @original_path = Gem.path

    get_primary_gems
    get_candidate_gems
    get_gems_to_cleanup

    @full = Gem::DependencyList.from_specs

    deplist = Gem::DependencyList.new
    @gems_to_cleanup.each { |spec| deplist.add spec }

    deps = deplist.strongly_connected_components.flatten

    deps.reverse_each do |spec|
      uninstall_dep spec
    end

    Gem::Specification.reset
  end

  def get_candidate_gems
    @candidate_gems = unless options[:args].empty?
                        options[:args].map do |gem_name|
                          Gem::Specification.find_all_by_name gem_name
                        end.flatten
                      else
                        Gem::Specification.to_a
                      end
  end

  def get_gems_to_cleanup
    gems_to_cleanup = @candidate_gems.select do |spec|
      @primary_gems[spec.name].version != spec.version
    end

    default_gems, gems_to_cleanup = gems_to_cleanup.partition do |spec|
      spec.default_gem?
    end

    uninstall_from = options[:user_install] ? Gem.user_dir : @original_home

    gems_to_cleanup = gems_to_cleanup.select do |spec|
      spec.base_dir == uninstall_from
    end

    @default_gems += default_gems
    @default_gems.uniq!
    @gems_to_cleanup = gems_to_cleanup.uniq
  end

  def get_primary_gems
    @primary_gems = {}

    Gem::Specification.each do |spec|
      if @primary_gems[spec.name].nil? or
         @primary_gems[spec.name].version < spec.version
        @primary_gems[spec.name] = spec
      end
    end
  end

  def uninstall_dep(spec)
    return unless @full.ok_to_remove?(spec.full_name, options[:check_dev])

    if options[:dryrun]
      say "Dry Run Mode: Would uninstall #{spec.full_name}"
      return
    end

    say "Attempting to uninstall #{spec.full_name}"

    uninstall_options = {
      :executables => false,
      :version => "= #{spec.version}",
    }

    uninstall_options[:user_install] = Gem.user_dir == spec.base_dir

    uninstaller = Gem::Uninstaller.new spec.name, uninstall_options

    begin
      uninstaller.uninstall
    rescue Gem::DependencyRemovalException, Gem::InstallError,
           Gem::GemNotInHomeException, Gem::FilePermissionError => e
      say "Unable to uninstall #{spec.full_name}:"
      say "\t#{e.class}: #{e.message}"
    end
  ensure
    # Restore path Gem::Uninstaller may have changed
    Gem.use_paths @original_home, *@original_path
  end

end
PK7H[|r�P$$0share/rubygems/rubygems/commands/cert_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/security'
begin
  require 'openssl'
rescue LoadError => e
  raise unless (e.respond_to?(:path) && e.path == 'openssl') ||
               e.message =~ / -- openssl$/
end

class Gem::Commands::CertCommand < Gem::Command

  def initialize
    super 'cert', 'Manage RubyGems certificates and signing settings',
          :add => [], :remove => [], :list => [], :build => [], :sign => []

    OptionParser.accept OpenSSL::X509::Certificate do |certificate_file|
      begin
        certificate = OpenSSL::X509::Certificate.new File.read certificate_file
      rescue Errno::ENOENT
        raise OptionParser::InvalidArgument, "#{certificate_file}: does not exist"
      rescue OpenSSL::X509::CertificateError
        raise OptionParser::InvalidArgument,
          "#{certificate_file}: invalid X509 certificate"
      end
      [certificate, certificate_file]
    end

    OptionParser.accept OpenSSL::PKey::RSA do |key_file|
      begin
        passphrase = ENV['GEM_PRIVATE_KEY_PASSPHRASE']
        key = OpenSSL::PKey::RSA.new File.read(key_file), passphrase
      rescue Errno::ENOENT
        raise OptionParser::InvalidArgument, "#{key_file}: does not exist"
      rescue OpenSSL::PKey::RSAError
        raise OptionParser::InvalidArgument, "#{key_file}: invalid RSA key"
      end

      raise OptionParser::InvalidArgument,
            "#{key_file}: private key not found" unless key.private?

      key
    end

    add_option('-a', '--add CERT', OpenSSL::X509::Certificate,
               'Add a trusted certificate.') do |(cert, _), options|
      options[:add] << cert
    end

    add_option('-l', '--list [FILTER]',
               'List trusted certificates where the',
               'subject contains FILTER') do |filter, options|
      filter ||= ''

      options[:list] << filter
    end

    add_option('-r', '--remove FILTER',
               'Remove trusted certificates where the',
               'subject contains FILTER') do |filter, options|
      options[:remove] << filter
    end

    add_option('-b', '--build EMAIL_ADDR',
               'Build private key and self-signed',
               'certificate for EMAIL_ADDR') do |email_address, options|
      options[:build] << email_address
    end

    add_option('-C', '--certificate CERT', OpenSSL::X509::Certificate,
               'Signing certificate for --sign') do |(cert, cert_file), options|
      options[:issuer_cert] = cert
      options[:issuer_cert_file] = cert_file
    end

    add_option('-K', '--private-key KEY', OpenSSL::PKey::RSA,
               'Key for --sign or --build') do |key, options|
      options[:key] = key
    end

    add_option('-s', '--sign CERT',
               'Signs CERT with the key from -K',
               'and the certificate from -C') do |cert_file, options|
      raise OptionParser::InvalidArgument, "#{cert_file}: does not exist" unless
        File.file? cert_file

      options[:sign] << cert_file
    end

    add_option('-d', '--days NUMBER_OF_DAYS',
               'Days before the certificate expires') do |days, options|
      options[:expiration_length_days] = days.to_i
    end

    add_option('-R', '--re-sign',
               'Re-signs the certificate from -C with the key from -K') do |resign, options|
      options[:resign] = resign
    end
  end

  def add_certificate(certificate) # :nodoc:
    Gem::Security.trust_dir.trust_cert certificate

    say "Added '#{certificate.subject}'"
  end

  def execute
    options[:add].each do |certificate|
      add_certificate certificate
    end

    options[:remove].each do |filter|
      remove_certificates_matching filter
    end

    options[:list].each do |filter|
      list_certificates_matching filter
    end

    options[:build].each do |email|
      build email
    end

    if options[:resign]
      re_sign_cert(
        options[:issuer_cert],
        options[:issuer_cert_file],
        options[:key]
      )
    end

    sign_certificates unless options[:sign].empty?
  end

  def build(email)
    if !valid_email?(email)
      raise Gem::CommandLineError, "Invalid email address #{email}"
    end

    key, key_path = build_key
    cert_path = build_cert email, key

    say "Certificate: #{cert_path}"

    if key_path
      say "Private Key: #{key_path}"
      say "Don't forget to move the key file to somewhere private!"
    end
  end

  def build_cert(email, key) # :nodoc:
    expiration_length_days = options[:expiration_length_days] ||
      Gem.configuration.cert_expiration_length_days

    cert = Gem::Security.create_cert_email(
      email,
      key,
      (Gem::Security::ONE_DAY * expiration_length_days)
    )

    Gem::Security.write cert, "gem-public_cert.pem"
  end

  def build_key # :nodoc:
    return options[:key] if options[:key]

    passphrase = ask_for_password 'Passphrase for your Private Key:'
    say "\n"

    passphrase_confirmation = ask_for_password 'Please repeat the passphrase for your Private Key:'
    say "\n"

    raise Gem::CommandLineError,
          "Passphrase and passphrase confirmation don't match" unless passphrase == passphrase_confirmation

    key      = Gem::Security.create_key
    key_path = Gem::Security.write key, "gem-private_key.pem", 0600, passphrase

    return key, key_path
  end

  def certificates_matching(filter)
    return enum_for __method__, filter unless block_given?

    Gem::Security.trusted_certificates.select do |certificate, _|
      subject = certificate.subject.to_s
      subject.downcase.index filter
    end.sort_by do |certificate, _|
      certificate.subject.to_a.map { |name, data,| [name, data] }
    end.each do |certificate, path|
      yield certificate, path
    end
  end

  def description # :nodoc:
    <<-EOF
The cert command manages signing keys and certificates for creating signed
gems.  Your signing certificate and private key are typically stored in
~/.gem/gem-public_cert.pem and ~/.gem/gem-private_key.pem respectively.

To build a certificate for signing gems:

  gem cert --build you@example

If you already have an RSA key, or are creating a new certificate for an
existing key:

  gem cert --build you@example --private-key /path/to/key.pem

If you wish to trust a certificate you can add it to the trust list with:

  gem cert --add /path/to/cert.pem

You can list trusted certificates with:

  gem cert --list

or:

  gem cert --list cert_subject_substring

If you wish to remove a previously trusted certificate:

  gem cert --remove cert_subject_substring

To sign another gem author's certificate:

  gem cert --sign /path/to/other_cert.pem

For further reading on signing gems see `ri Gem::Security`.
    EOF
  end

  def list_certificates_matching(filter) # :nodoc:
    certificates_matching filter do |certificate, _|
      # this could probably be formatted more gracefully
      say certificate.subject.to_s
    end
  end

  def load_default_cert
    cert_file = File.join Gem.default_cert_path
    cert = File.read cert_file
    options[:issuer_cert] = OpenSSL::X509::Certificate.new cert
  rescue Errno::ENOENT
    alert_error \
      "--certificate not specified and ~/.gem/gem-public_cert.pem does not exist"

    terminate_interaction 1
  rescue OpenSSL::X509::CertificateError
    alert_error \
      "--certificate not specified and ~/.gem/gem-public_cert.pem is not valid"

    terminate_interaction 1
  end

  def load_default_key
    key_file = File.join Gem.default_key_path
    key = File.read key_file
    passphrase = ENV['GEM_PRIVATE_KEY_PASSPHRASE']
    options[:key] = OpenSSL::PKey::RSA.new key, passphrase
  rescue Errno::ENOENT
    alert_error \
      "--private-key not specified and ~/.gem/gem-private_key.pem does not exist"

    terminate_interaction 1
  rescue OpenSSL::PKey::RSAError
    alert_error \
      "--private-key not specified and ~/.gem/gem-private_key.pem is not valid"

    terminate_interaction 1
  end

  def load_defaults # :nodoc:
    load_default_cert unless options[:issuer_cert]
    load_default_key  unless options[:key]
  end

  def remove_certificates_matching(filter) # :nodoc:
    certificates_matching filter do |certificate, path|
      FileUtils.rm path
      say "Removed '#{certificate.subject}'"
    end
  end

  def sign(cert_file)
    cert = File.read cert_file
    cert = OpenSSL::X509::Certificate.new cert

    permissions = File.stat(cert_file).mode & 0777

    issuer_cert = options[:issuer_cert]
    issuer_key = options[:key]

    cert = Gem::Security.sign cert, issuer_key, issuer_cert

    Gem::Security.write cert, cert_file, permissions
  end

  def sign_certificates # :nodoc:
    load_defaults unless options[:sign].empty?

    options[:sign].each do |cert_file|
      sign cert_file
    end
  end

  def re_sign_cert(cert, cert_path, private_key)
    Gem::Security::Signer.re_sign_cert(cert, cert_path, private_key) do |expired_cert_path, new_expired_cert_path|
      alert("Your certificate #{expired_cert_path} has been re-signed")
      alert("Your expired certificate will be located at: #{new_expired_cert_path}")
    end
  end

  private

  def valid_email?(email)
    # It's simple, but is all we need
    email =~ /\A.+@.+\z/
  end

end if defined?(OpenSSL::SSL)
PK7H[�"e��5share/rubygems/rubygems/commands/uninstall_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/version_option'
require 'rubygems/uninstaller'
require 'fileutils'

##
# Gem uninstaller command line tool
#
# See `gem help uninstall`

class Gem::Commands::UninstallCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'uninstall', 'Uninstall gems from the local repository',
          :version => Gem::Requirement.default, :user_install => true,
          :check_dev => false, :vendor => false

    add_option('-a', '--[no-]all',
      'Uninstall all matching versions'
    ) do |value, options|
      options[:all] = value
    end

    add_option('-I', '--[no-]ignore-dependencies',
               'Ignore dependency requirements while',
               'uninstalling') do |value, options|
      options[:ignore] = value
    end

    add_option('-D', '--[no-]check-development',
               'Check development dependencies while uninstalling',
               '(default: false)') do |value, options|
      options[:check_dev] = value
    end

    add_option('-x', '--[no-]executables',
                 'Uninstall applicable executables without',
                 'confirmation') do |value, options|
      options[:executables] = value
    end

    add_option('-i', '--install-dir DIR',
               'Directory to uninstall gem from') do |value, options|
      options[:install_dir] = File.expand_path(value)
    end

    add_option('-n', '--bindir DIR',
               'Directory to remove executables from') do |value, options|
      options[:bin_dir] = File.expand_path(value)
    end

    add_option('--[no-]user-install',
               'Uninstall from user\'s home directory',
               'in addition to GEM_HOME.') do |value, options|
      options[:user_install] = value
    end

    add_option('--[no-]format-executable',
               'Assume executable names match Ruby\'s prefix and suffix.') do |value, options|
      options[:format_executable] = value
    end

    add_option('--[no-]force',
               'Uninstall all versions of the named gems',
               'ignoring dependencies') do |value, options|
      options[:force] = value
    end

    add_option('--[no-]abort-on-dependent',
               'Prevent uninstalling gems that are',
               'depended on by other gems.') do |value, options|
      options[:abort_on_dependent] = value
    end

    add_version_option
    add_platform_option

    add_option('--vendor',
               'Uninstall gem from the vendor directory.',
               'Only for use by gem repackagers.') do |value, options|
      unless Gem.vendor_dir
        raise OptionParser::InvalidOption.new 'your platform is not supported'
      end

      alert_warning 'Use your OS package manager to uninstall vendor gems'
      options[:vendor] = true
      options[:install_dir] = Gem.vendor_dir
    end
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to uninstall"
  end

  def defaults_str # :nodoc:
    "--version '#{Gem::Requirement.default}' --no-force " +
    "--user-install"
  end

  def description # :nodoc:
    <<-EOF
The uninstall command removes a previously installed gem.

RubyGems will ask for confirmation if you are attempting to uninstall a gem
that is a dependency of an existing gem.  You can use the
--ignore-dependencies option to skip this check.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [GEMNAME ...]"
  end

  def check_version # :nodoc:
    if options[:version] != Gem::Requirement.default and
         get_all_gem_names.size > 1
      alert_error "Can't use --version with multiple gems. You can specify multiple gems with" \
                  " version requirements using `gem uninstall 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'`"
      terminate_interaction 1
    end
  end

  def execute
    check_version

    if options[:all] and not options[:args].empty?
      uninstall_specific
    elsif options[:all]
      uninstall_all
    else
      uninstall_specific
    end
  end

  def uninstall_all
    specs = Gem::Specification.reject { |spec| spec.default_gem? }

    specs.each do |spec|
      options[:version] = spec.version
      uninstall_gem spec.name
    end

    alert "Uninstalled all gems in #{options[:install_dir] || Gem.dir}"
  end

  def uninstall_specific
    deplist = Gem::DependencyList.new
    original_gem_version = {}

    get_all_gem_names_and_versions.each do |name, version|
      original_gem_version[name] = version || options[:version]

      gem_specs = Gem::Specification.find_all_by_name(name, original_gem_version[name])

      say("Gem '#{name}' is not installed") if gem_specs.empty?
      gem_specs.each do |spec|
        deplist.add spec
      end
    end

    deps = deplist.strongly_connected_components.flatten.reverse

    gems_to_uninstall = {}

    deps.each do |dep|
      unless gems_to_uninstall[dep.name]
        gems_to_uninstall[dep.name] = true

        unless original_gem_version[dep.name] == Gem::Requirement.default
          options[:version] = dep.version
        end

        uninstall_gem(dep.name)
      end
    end
  end

  def uninstall_gem(gem_name)
    uninstall(gem_name)
  rescue Gem::GemNotInHomeException => e
    spec = e.spec
    alert("In order to remove #{spec.name}, please execute:\n" +
          "\tgem uninstall #{spec.name} --install-dir=#{spec.installation_path}")
  rescue Gem::UninstallError => e
    spec = e.spec
    alert_error("Error: unable to successfully uninstall '#{spec.name}' which is " +
          "located at '#{spec.full_gem_path}'. This is most likely because" +
          "the current user does not have the appropriate permissions")
    terminate_interaction 1
  end

  def uninstall(gem_name)
    Gem::Uninstaller.new(gem_name, options).uninstall
  end

end
PK7H[1����0share/rubygems/rubygems/commands/info_command.rbnu�[���# frozen_string_literal: true

require 'rubygems/command'
require 'rubygems/commands/query_command'

class Gem::Commands::InfoCommand < Gem::Commands::QueryCommand

  def initialize
    super "info", "Show information for the given gem"

    remove_option('--name-matches')
    remove_option('-d')

    defaults[:details] = true
    defaults[:exact] = true
  end

  def description # :nodoc:
    "Info prints information about the gem such as name,"\
    " description, website, license and installed paths"
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME"
  end

  def arguments # :nodoc:
    "GEMNAME        name of the gem to print information about"
  end

  def defaults_str
    "--local"
  end

end
PK7H[�[�h1share/rubygems/rubygems/commands/fetch_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/version_option'

class Gem::Commands::FetchCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  def initialize
    super 'fetch', 'Download a gem and place it in the current directory'

    add_bulk_threshold_option
    add_proxy_option
    add_source_option
    add_clear_sources_option

    add_version_option
    add_platform_option
    add_prerelease_option
  end

  def arguments # :nodoc:
    'GEMNAME       name of gem to download'
  end

  def defaults_str # :nodoc:
    "--version '#{Gem::Requirement.default}'"
  end

  def description # :nodoc:
    <<-EOF
The fetch command fetches gem files that can be stored for later use or
unpacked to examine their contents.

See the build command help for an example of unpacking a gem, modifying it,
then repackaging it.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [GEMNAME ...]"
  end

  def execute
    version = options[:version] || Gem::Requirement.default

    platform  = Gem.platforms.last
    gem_names = get_all_gem_names

    gem_names.each do |gem_name|
      dep = Gem::Dependency.new gem_name, version
      dep.prerelease = options[:prerelease]

      specs_and_sources, errors =
        Gem::SpecFetcher.fetcher.spec_for_dependency dep

      if platform
        filtered = specs_and_sources.select { |s,| s.platform == platform }
        specs_and_sources = filtered unless filtered.empty?
      end

      spec, source = specs_and_sources.max_by { |s,| s.version }

      if spec.nil?
        show_lookup_failure gem_name, version, errors, options[:domain]
        next
      end

      source.download spec

      say "Downloaded #{spec.full_name}"
    end
  end

end
PK7H[�'�H�H1share/rubygems/rubygems/commands/setup_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

##
# Installs RubyGems itself.  This command is ordinarily only available from a
# RubyGems checkout or tarball.

class Gem::Commands::SetupCommand < Gem::Command

  HISTORY_HEADER = /^===\s*[\d.a-zA-Z]+\s*\/\s*\d{4}-\d{2}-\d{2}\s*$/.freeze
  VERSION_MATCHER = /^===\s*([\d.a-zA-Z]+)\s*\/\s*\d{4}-\d{2}-\d{2}\s*$/.freeze

  ENV_PATHS = %w[/usr/bin/env /bin/env].freeze

  def initialize
    require 'tmpdir'

    super 'setup', 'Install RubyGems',
          :format_executable => true, :document => %w[ri],
          :force => true,
          :site_or_vendor => 'sitelibdir',
          :destdir => '', :prefix => '', :previous_version => '',
          :regenerate_binstubs => true

    add_option '--previous-version=VERSION',
               'Previous version of RubyGems',
               'Used for changelog processing' do |version, options|
      options[:previous_version] = version
    end

    add_option '--prefix=PREFIX',
               'Prefix path for installing RubyGems',
               'Will not affect gem repository location' do |prefix, options|
      options[:prefix] = File.expand_path prefix
    end

    add_option '--destdir=DESTDIR',
               'Root directory to install RubyGems into',
               'Mainly used for packaging RubyGems' do |destdir, options|
      options[:destdir] = File.expand_path destdir
    end

    add_option '--[no-]vendor',
               'Install into vendorlibdir not sitelibdir' do |vendor, options|
      options[:site_or_vendor] = vendor ? 'vendorlibdir' : 'sitelibdir'
    end

    add_option '--[no-]format-executable',
               'Makes `gem` match ruby',
               'If Ruby is ruby18, gem will be gem18' do |value, options|
      options[:format_executable] = value
    end

    add_option '--[no-]document [TYPES]', Array,
               'Generate documentation for RubyGems',
               'List the documentation types you wish to',
               'generate.  For example: rdoc,ri' do |value, options|
      options[:document] = case value
                           when nil   then %w[rdoc ri]
                           when false then []
                           else            value
                           end
    end

    add_option '--[no-]rdoc',
               'Generate RDoc documentation for RubyGems' do |value, options|
      if value
        options[:document] << 'rdoc'
      else
        options[:document].delete 'rdoc'
      end

      options[:document].uniq!
    end

    add_option '--[no-]ri',
               'Generate RI documentation for RubyGems' do |value, options|
      if value
        options[:document] << 'ri'
      else
        options[:document].delete 'ri'
      end

      options[:document].uniq!
    end

    add_option '--[no-]regenerate-binstubs',
               'Regenerate gem binstubs' do |value, options|
      options[:regenerate_binstubs] = value
    end

    add_option '-f', '--[no-]force',
               'Forcefully overwrite binstubs' do |value, options|
      options[:force] = value
    end

    add_option('-E', '--[no-]env-shebang',
               'Rewrite executables with a shebang',
               'of /usr/bin/env') do |value, options|
      options[:env_shebang] = value
    end

    @verbose = nil
  end

  def check_ruby_version
    required_version = Gem::Requirement.new '>= 2.3.0'

    unless required_version.satisfied_by? Gem.ruby_version
      alert_error "Expected Ruby version #{required_version}, is #{Gem.ruby_version}"
      terminate_interaction 1
    end
  end

  def defaults_str # :nodoc:
    "--format-executable --document ri --regenerate-binstubs"
  end

  def description # :nodoc:
    <<-EOF
Installs RubyGems itself.

RubyGems installs RDoc for itself in GEM_HOME.  By default this is:
  #{Gem.dir}

If you prefer a different directory, set the GEM_HOME environment variable.

RubyGems will install the gem command with a name matching ruby's
prefix and suffix.  If ruby was installed as `ruby18`, gem will be
installed as `gem18`.

By default, this RubyGems will install gem as:
  #{Gem.default_exec_format % 'gem'}
    EOF
  end

  module MakeDirs
    def mkdir_p(path, **opts)
      super
      (@mkdirs ||= []) << path
    end
  end

  def execute
    @verbose = Gem.configuration.really_verbose

    install_destdir = options[:destdir]

    unless install_destdir.empty?
      ENV['GEM_HOME'] ||= File.join(install_destdir,
                                    Gem.default_dir.gsub(/^[a-zA-Z]:/, ''))
    end

    check_ruby_version

    require 'fileutils'
    if Gem.configuration.really_verbose
      extend FileUtils::Verbose
    else
      extend FileUtils
    end
    extend MakeDirs

    lib_dir, bin_dir = make_destination_dirs install_destdir

    install_lib lib_dir

    install_executables bin_dir

    remove_old_bin_files bin_dir

    remove_old_lib_files lib_dir

    install_default_bundler_gem bin_dir

    if mode = options[:dir_mode]
      @mkdirs.uniq!
      File.chmod(mode, @mkdirs)
    end

    say "RubyGems #{Gem::VERSION} installed"

    regenerate_binstubs if options[:regenerate_binstubs]

    uninstall_old_gemcutter

    documentation_success = install_rdoc

    say
    if @verbose
      say "-" * 78
      say
    end

    if options[:previous_version].empty?
      options[:previous_version] = Gem::VERSION.sub(/[0-9]+$/, '0')
    end

    options[:previous_version] = Gem::Version.new(options[:previous_version])

    show_release_notes

    say
    say "-" * 78
    say

    say "RubyGems installed the following executables:"
    say bin_file_names.map { |name| "\t#{name}\n" }
    say

    unless bin_file_names.grep(/#{File::SEPARATOR}gem$/)
      say "If `gem` was installed by a previous RubyGems installation, you may need"
      say "to remove it by hand."
      say
    end

    if documentation_success
      if options[:document].include? 'rdoc'
        say "Rdoc documentation was installed. You may now invoke:"
        say "  gem server"
        say "and then peruse beautifully formatted documentation for your gems"
        say "with your web browser."
        say "If you do not wish to install this documentation in the future, use the"
        say "--no-document flag, or set it as the default in your ~/.gemrc file. See"
        say "'gem help env' for details."
        say
      end

      if options[:document].include? 'ri'
        say "Ruby Interactive (ri) documentation was installed. ri is kind of like man "
        say "pages for Ruby libraries. You may access it like this:"
        say "  ri Classname"
        say "  ri Classname.class_method"
        say "  ri Classname#instance_method"
        say "If you do not wish to install this documentation in the future, use the"
        say "--no-document flag, or set it as the default in your ~/.gemrc file. See"
        say "'gem help env' for details."
        say
      end
    end
  end

  def install_executables(bin_dir)
    prog_mode = options[:prog_mode] || 0755

    executables = { 'gem' => 'bin' }
    executables.each do |tool, path|
      say "Installing #{tool} executable" if @verbose

      Dir.chdir path do
        bin_files = Dir['*']

        bin_files -= %w[update_rubygems]

        bin_files.each do |bin_file|
          dest_file = target_bin_path(bin_dir, bin_file)
          bin_tmp_file = File.join Dir.tmpdir, "#{bin_file}.#{$$}"

          begin
            bin = File.readlines bin_file
            bin[0] = shebang

            File.open bin_tmp_file, 'w' do |fp|
              fp.puts bin.join
            end

            install bin_tmp_file, dest_file, :mode => prog_mode
            bin_file_names << dest_file
          ensure
            rm bin_tmp_file
          end

          next unless Gem.win_platform?

          begin
            bin_cmd_file = File.join Dir.tmpdir, "#{bin_file}.bat"

            File.open bin_cmd_file, 'w' do |file|
              file.puts <<-TEXT
  @ECHO OFF
  IF NOT "%~f0" == "~f0" GOTO :WinNT
  @"#{File.basename(Gem.ruby).chomp('"')}" "#{dest_file}" %1 %2 %3 %4 %5 %6 %7 %8 %9
  GOTO :EOF
  :WinNT
  @"#{File.basename(Gem.ruby).chomp('"')}" "%~dpn0" %*
  TEXT
            end

            install bin_cmd_file, "#{dest_file}.bat", :mode => prog_mode
          ensure
            rm bin_cmd_file
          end
        end
      end
    end
  end

  def shebang
    if options[:env_shebang]
      ruby_name = RbConfig::CONFIG['ruby_install_name']
      @env_path ||= ENV_PATHS.find {|env_path| File.executable? env_path }
      "#!#{@env_path} #{ruby_name}\n"
    else
      "#!#{Gem.ruby}\n"
    end
  end

  def install_file(file, dest_dir)
    dest_file = File.join dest_dir, file
    dest_dir = File.dirname dest_file
    unless File.directory? dest_dir
      mkdir_p dest_dir, :mode => 0755
    end

    install file, dest_file, :mode => options[:data_mode] || 0644
  end

  def install_lib(lib_dir)
    libs = { 'RubyGems' => 'lib' }
    libs['Bundler'] = 'bundler/lib'
    libs.each do |tool, path|
      say "Installing #{tool}" if @verbose

      lib_files = rb_files_in path
      lib_files.concat(template_files) if tool == 'Bundler'

      pem_files = pem_files_in path

      Dir.chdir path do
        lib_files.each do |lib_file|
          install_file lib_file, lib_dir
        end

        pem_files.each do |pem_file|
          install_file pem_file, lib_dir
        end
      end
    end
  end

  def install_rdoc
    gem_doc_dir = File.join Gem.dir, 'doc'
    rubygems_name = "rubygems-#{Gem::VERSION}"
    rubygems_doc_dir = File.join gem_doc_dir, rubygems_name

    begin
      Gem.ensure_gem_subdirectories Gem.dir
    rescue SystemCallError
      # ignore
    end

    if File.writable? gem_doc_dir and
       (not File.exist? rubygems_doc_dir or
        File.writable? rubygems_doc_dir)
      say "Removing old RubyGems RDoc and ri" if @verbose
      Dir[File.join(Gem.dir, 'doc', 'rubygems-[0-9]*')].each do |dir|
        rm_rf dir
      end

      require 'rubygems/rdoc'

      fake_spec = Gem::Specification.new 'rubygems', Gem::VERSION
      def fake_spec.full_gem_path
        File.expand_path '../../../..', __FILE__
      end

      generate_ri   = options[:document].include? 'ri'
      generate_rdoc = options[:document].include? 'rdoc'

      rdoc = Gem::RDoc.new fake_spec, generate_rdoc, generate_ri
      rdoc.generate

      return true
    elsif @verbose
      say "Skipping RDoc generation, #{gem_doc_dir} not writable"
      say "Set the GEM_HOME environment variable if you want RDoc generated"
    end

    return false
  end

  def install_default_bundler_gem(bin_dir)
    specs_dir = Gem.default_specifications_dir
    specs_dir = File.join(options[:destdir], specs_dir) unless Gem.win_platform?
    mkdir_p specs_dir, :mode => 0755

    # Workaround for non-git environment.
    gemspec = File.open('bundler/bundler.gemspec', 'rb'){|f| f.read.gsub(/`git ls-files -z`/, "''") }
    File.open('bundler/bundler.gemspec', 'w'){|f| f.write gemspec }

    bundler_spec = Gem::Specification.load("bundler/bundler.gemspec")
    bundler_spec.files = Dir.chdir("bundler") { Dir["{*.md,{lib,exe,man}/**/*}"] }
    bundler_spec.executables -= %w[bundler bundle_ruby]

    # Remove bundler-*.gemspec in default specification directory.
    Dir.entries(specs_dir).
      select {|gs| gs.start_with?("bundler-") }.
      each {|gs| File.delete(File.join(specs_dir, gs)) }

    default_spec_path = File.join(specs_dir, "#{bundler_spec.full_name}.gemspec")
    Gem.write_binary(default_spec_path, bundler_spec.to_ruby)

    bundler_spec = Gem::Specification.load(default_spec_path)

    # Remove gemspec that was same version of vendored bundler.
    normal_gemspec = File.join(Gem.default_dir, "specifications", "bundler-#{bundler_spec.version}.gemspec")
    if File.file? normal_gemspec
      File.delete normal_gemspec
    end

    # Remove gem files that were same version of vendored bundler.
    if File.directory? bundler_spec.gems_dir
      Dir.entries(bundler_spec.gems_dir).
        select {|default_gem| File.basename(default_gem) == "bundler-#{bundler_spec.version}" }.
        each {|default_gem| rm_r File.join(bundler_spec.gems_dir, default_gem) }
    end

    bundler_bin_dir = bundler_spec.bin_dir
    bundler_bin_dir = File.join(options[:destdir], bundler_bin_dir) unless Gem.win_platform?
    mkdir_p bundler_bin_dir, :mode => 0755
    bundler_spec.executables.each do |e|
      cp File.join("bundler", bundler_spec.bindir, e), File.join(bundler_bin_dir, e)
    end

    require 'rubygems/installer'

    Dir.chdir("bundler") do
      built_gem = Gem::Package.build(bundler_spec)
      begin
        installer = Gem::Installer.at(built_gem, env_shebang: options[:env_shebang], format_executable: options[:format_executable], force: options[:force], install_as_default: true, bin_dir: bin_dir, wrappers: true)
        installer.install
      ensure
        FileUtils.rm_f built_gem
      end
    end

    bundler_spec.executables.each {|executable| bin_file_names << target_bin_path(bin_dir, executable) }

    say "Bundler #{bundler_spec.version} installed"
  end

  def make_destination_dirs(install_destdir)
    lib_dir, bin_dir = Gem.default_rubygems_dirs

    unless lib_dir
      lib_dir, bin_dir = generate_default_dirs(install_destdir)
    end

    mkdir_p lib_dir, :mode => 0755
    mkdir_p bin_dir, :mode => 0755

    return lib_dir, bin_dir
  end

  def generate_default_dirs(install_destdir)
    prefix = options[:prefix]
    site_or_vendor = options[:site_or_vendor]

    if prefix.empty?
      lib_dir = RbConfig::CONFIG[site_or_vendor]
      bin_dir = RbConfig::CONFIG['bindir']
    else
      # Apple installed RubyGems into libdir, and RubyGems <= 1.1.0 gets
      # confused about installation location, so switch back to
      # sitelibdir/vendorlibdir.
      if defined?(APPLE_GEM_HOME) and
        # just in case Apple and RubyGems don't get this patched up proper.
        (prefix == RbConfig::CONFIG['libdir'] or
         # this one is important
         prefix == File.join(RbConfig::CONFIG['libdir'], 'ruby'))
        lib_dir = RbConfig::CONFIG[site_or_vendor]
        bin_dir = RbConfig::CONFIG['bindir']
      else
        lib_dir = File.join prefix, 'lib'
        bin_dir = File.join prefix, 'bin'
      end
    end

    unless install_destdir.empty?
      lib_dir = File.join install_destdir, lib_dir.gsub(/^[a-zA-Z]:/, '')
      bin_dir = File.join install_destdir, bin_dir.gsub(/^[a-zA-Z]:/, '')
    end

    [lib_dir, bin_dir]
  end

  def pem_files_in(dir)
    Dir.chdir dir do
      Dir[File.join('**', '*pem')]
    end
  end

  def rb_files_in(dir)
    Dir.chdir dir do
      Dir[File.join('**', '*rb')]
    end
  end

  # for installation of bundler as default gems
  def template_files
    Dir.chdir "bundler/lib" do
      (Dir[File.join('bundler', 'templates', '**', '{*,.*}')]).
        select{|f| !File.directory?(f)}
    end
  end

  # for cleanup old bundler files
  def template_files_in(dir)
    Dir.chdir dir do
      (Dir[File.join('templates', '**', '{*,.*}')]).
        select{|f| !File.directory?(f)}
    end
  end

  def remove_old_bin_files(bin_dir)
    old_bin_files = {
      'gem_mirror' => 'gem mirror',
      'gem_server' => 'gem server',
      'gemlock' => 'gem lock',
      'gemri' => 'ri',
      'gemwhich' => 'gem which',
      'index_gem_repository.rb' => 'gem generate_index',
    }

    old_bin_files.each do |old_bin_file, new_name|
      old_bin_path = File.join bin_dir, old_bin_file
      next unless File.exist? old_bin_path

      deprecation_message = "`#{old_bin_file}` has been deprecated. Use `#{new_name}` instead."

      File.open old_bin_path, 'w' do |fp|
        fp.write <<-EOF
#!#{Gem.ruby}

abort "#{deprecation_message}"
    EOF
      end

      next unless Gem.win_platform?

      File.open "#{old_bin_path}.bat", 'w' do |fp|
        fp.puts %{@ECHO.#{deprecation_message}}
      end
    end
  end

  def remove_old_lib_files(lib_dir)
    lib_dirs = { File.join(lib_dir, 'rubygems') => 'lib/rubygems' }
    lib_dirs[File.join(lib_dir, 'bundler')] = 'bundler/lib/bundler'
    lib_dirs.each do |old_lib_dir, new_lib_dir|
      lib_files = rb_files_in(new_lib_dir)
      lib_files.concat(template_files_in(new_lib_dir)) if new_lib_dir =~ /bundler/

      old_lib_files = rb_files_in(old_lib_dir)
      old_lib_files.concat(template_files_in(old_lib_dir)) if old_lib_dir =~ /bundler/

      to_remove = old_lib_files - lib_files

      to_remove.delete_if do |file|
        file.start_with? 'defaults'
      end

      Dir.chdir old_lib_dir do
        to_remove.each do |file|
          FileUtils.rm_f file

          warn "unable to remove old file #{file} please remove it by hand" if
            File.exist? file
        end
      end
    end
  end

  def show_release_notes
    release_notes = File.join Dir.pwd, 'History.txt'

    release_notes =
      if File.exist? release_notes
        history = File.read release_notes

        history.force_encoding Encoding::UTF_8

        history = history.sub(/^# coding:.*?(?=^=)/m, '')

        text = history.split(HISTORY_HEADER)
        text.shift # correct an off-by-one generated by split
        version_lines = history.scan(HISTORY_HEADER)
        versions = history.scan(VERSION_MATCHER).flatten.map do |x|
          Gem::Version.new(x)
        end

        history_string = ""

        until versions.length == 0 or
              versions.shift <= options[:previous_version] do
          history_string += version_lines.shift + text.shift
        end

        history_string
      else
        "Oh-no! Unable to find release notes!"
      end

    say release_notes
  end

  def uninstall_old_gemcutter
    require 'rubygems/uninstaller'

    ui = Gem::Uninstaller.new('gemcutter', :all => true, :ignore => true,
                              :version => '< 0.4')
    ui.uninstall
  rescue Gem::InstallError
  end

  def regenerate_binstubs
    require "rubygems/commands/pristine_command"
    say "Regenerating binstubs"

    args = %w[--all --only-executables --silent]
    if options[:env_shebang]
      args << "--env-shebang"
    end

    command = Gem::Commands::PristineCommand.new
    command.invoke(*args)
  end

  private

  def target_bin_path(bin_dir, bin_file)
    bin_file_formatted = if options[:format_executable]
                           Gem.default_exec_format % bin_file
                         else
                           bin_file
                         end
    File.join bin_dir, bin_file_formatted
  end

  def bin_file_names
    @bin_file_names ||= []
  end

end
PK7H[&��
�
1share/rubygems/rubygems/commands/owner_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/gemcutter_utilities'
require 'rubygems/text'

class Gem::Commands::OwnerCommand < Gem::Command

  include Gem::Text
  include Gem::LocalRemoteOptions
  include Gem::GemcutterUtilities

  def description # :nodoc:
    <<-EOF
The owner command lets you add and remove owners of a gem on a push
server (the default is https://rubygems.org).

The owner of a gem has the permission to push new versions, yank existing
versions or edit the HTML page of the gem.  Be careful of who you give push
permission to.
    EOF
  end

  def arguments # :nodoc:
    "GEM       gem to manage owners for"
  end

  def usage # :nodoc:
    "#{program_name} GEM"
  end

  def initialize
    super 'owner', 'Manage gem owners of a gem on the push server'
    add_proxy_option
    add_key_option
    add_otp_option
    defaults.merge! :add => [], :remove => []

    add_option '-a', '--add EMAIL', 'Add an owner' do |value, options|
      options[:add] << value
    end

    add_option '-r', '--remove EMAIL', 'Remove an owner' do |value, options|
      options[:remove] << value
    end

    add_option '-h', '--host HOST',
               'Use another gemcutter-compatible host',
               '  (e.g. https://rubygems.org)' do |value, options|
      options[:host] = value
    end
  end

  def execute
    @host = options[:host]

    sign_in
    name = get_one_gem_name

    add_owners    name, options[:add]
    remove_owners name, options[:remove]
    show_owners   name
  end

  def show_owners(name)
    Gem.load_yaml

    response = rubygems_api_request :get, "api/v1/gems/#{name}/owners.yaml" do |request|
      request.add_field "Authorization", api_key
    end

    with_response response do |resp|
      owners = Gem::SafeYAML.load clean_text(resp.body)

      say "Owners for gem: #{name}"
      owners.each do |owner|
        say "- #{owner['email'] || owner['handle'] || owner['id']}"
      end
    end
  end

  def add_owners(name, owners)
    manage_owners :post, name, owners
  end

  def remove_owners(name, owners)
    manage_owners :delete, name, owners
  end

  def manage_owners(method, name, owners)
    owners.each do |owner|
      begin
        response = send_owner_request(method, name, owner)
        action = method == :delete ? "Removing" : "Adding"

        with_response response, "#{action} #{owner}"
      rescue
        # ignore
      end
    end
  end

  private

  def send_owner_request(method, name, owner)
    rubygems_api_request method, "api/v1/gems/#{name}/owners" do |request|
      request.set_form_data 'email' => owner
      request.add_field "Authorization", api_key
      request.add_field "OTP", options[:otp] if options[:otp]
    end
  end

end
PK7H[��}��0share/rubygems/rubygems/commands/open_command.rbnu�[���# frozen_string_literal: true
require 'English'
require 'rubygems/command'
require 'rubygems/version_option'
require 'rubygems/util'

class Gem::Commands::OpenCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'open', 'Open gem sources in editor'

    add_option('-e', '--editor COMMAND', String,
               "Prepends COMMAND to gem path. Could be used to specify editor.") do |command, options|
      options[:editor] = command || get_env_editor
    end
    add_option('-v', '--version VERSION', String,
               "Opens specific gem version") do |version|
      options[:version] = version
    end
  end

  def arguments # :nodoc:
    "GEMNAME     name of gem to open in editor"
  end

  def defaults_str # :nodoc:
    "-e #{get_env_editor}"
  end

  def description # :nodoc:
    <<-EOF
        The open command opens gem in editor and changes current path
        to gem's source directory.
        Editor command can be specified with -e option, otherwise rubygems
        will look for editor in $EDITOR, $VISUAL and $GEM_EDITOR variables.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [-e COMMAND]"
  end

  def get_env_editor
    ENV['GEM_EDITOR'] ||
      ENV['VISUAL'] ||
      ENV['EDITOR'] ||
      'vi'
  end

  def execute
    @version = options[:version] || Gem::Requirement.default
    @editor  = options[:editor] || get_env_editor

    found = open_gem(get_one_gem_name)

    terminate_interaction 1 unless found
  end

  def open_gem(name)
    spec = spec_for name

    return false unless spec

    if spec.default_gem?
      say "'#{name}' is a default gem and can't be opened."
      return false
    end

    open_editor(spec.full_gem_path)
  end

  def open_editor(path)
    Dir.chdir(path) do
      system(*@editor.split(/\s+/) + [path])
    end
  end

  def spec_for(name)
    spec = Gem::Specification.find_all_by_name(name, @version).first

    return spec if spec

    say "Unable to find gem '#{name}'"
  end

end
PK7H[|���3share/rubygems/rubygems/commands/signout_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::SignoutCommand < Gem::Command

  def initialize
    super 'signout', 'Sign out from all the current sessions.'
  end

  def description # :nodoc:
    'The `signout` command is used to sign out from all current sessions,'\
    ' allowing you to sign in using a different set of credentials.'
  end

  def usage # :nodoc:
    program_name
  end

  def execute
    credentials_path = Gem.configuration.credentials_path

    if !File.exist?(credentials_path)
      alert_error 'You are not currently signed in.'
    elsif !File.writable?(credentials_path)
      alert_error "File '#{Gem.configuration.credentials_path}' is read-only."\
                  ' Please make sure it is writable.'
    else
      Gem.configuration.unset_api_key!
      say 'You have successfully signed out from all sessions.'
    end
  end

end
PK7H[E�Id�	�	2share/rubygems/rubygems/commands/server_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/server'

class Gem::Commands::ServerCommand < Gem::Command

  def initialize
    super 'server', 'Documentation and gem repository HTTP server',
          :port => 8808, :gemdir => [], :daemon => false

    OptionParser.accept :Port do |port|
      if port =~ /\A\d+\z/
        port = Integer port
        raise OptionParser::InvalidArgument, "#{port}: not a port number" if
          port > 65535

        port
      else
        begin
          Socket.getservbyname port
        rescue SocketError
          raise OptionParser::InvalidArgument, "#{port}: no such named service"
        end
      end
    end

    add_option '-p', '--port=PORT', :Port,
               'port to listen on' do |port, options|
      options[:port] = port
    end

    add_option '-d', '--dir=GEMDIR',
               'directories from which to serve gems',
               'multiple directories may be provided' do |gemdir, options|
      options[:gemdir] << File.expand_path(gemdir)
    end

    add_option '--[no-]daemon', 'run as a daemon' do |daemon, options|
      options[:daemon] = daemon
    end

    add_option '-b', '--bind=HOST,HOST',
               'addresses to bind', Array do |address, options|
      options[:addresses] ||= []
      options[:addresses].push(*address)
    end

    add_option '-l', '--launch[=COMMAND]',
               'launches a browser window',
               "COMMAND defaults to 'start' on Windows",
               "and 'open' on all other platforms" do |launch, options|
      launch ||= Gem.win_platform? ? 'start' : 'open'
      options[:launch] = launch
    end
  end

  def defaults_str # :nodoc:
    "--port 8808 --dir #{Gem.dir} --no-daemon"
  end

  def description # :nodoc:
    <<-EOF
The server command starts up a web server that hosts the RDoc for your
installed gems and can operate as a server for installation of gems on other
machines.

The cache files for installed gems must exist to use the server as a source
for gem installation.

To install gems from a running server, use `gem install GEMNAME --source
http://gem_server_host:8808`

You can set up a shortcut to gem server documentation using the URL:

  http://localhost:8808/rdoc?q=%s - Firefox
  http://localhost:8808/rdoc?q=* - LaunchBar

    EOF
  end

  def execute
    options[:gemdir] = Gem.path if options[:gemdir].empty?
    Gem::Server.run options
  end

end
PK7H[��*UU4share/rubygems/rubygems/commands/outdated_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/spec_fetcher'
require 'rubygems/version_option'

class Gem::Commands::OutdatedCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  def initialize
    super 'outdated', 'Display all gems that need updates'

    add_local_remote_options
    add_platform_option
  end

  def description # :nodoc:
    <<-EOF
The outdated command lists gems you may wish to upgrade to a newer version.

You can check for dependency mismatches using the dependency command and
update the gems with the update or install commands.
    EOF
  end

  def execute
    Gem::Specification.outdated_and_latest_version.each do |spec, remote_version|
      say "#{spec.name} (#{spec.version} < #{remote_version})"
    end
  end

end
PK7H[�vM�	�	0share/rubygems/rubygems/commands/yank_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/version_option'
require 'rubygems/gemcutter_utilities'

class Gem::Commands::YankCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::VersionOption
  include Gem::GemcutterUtilities

  def description # :nodoc:
    <<-EOF
The yank command permanently removes a gem you pushed to a server.

Once you have pushed a gem several downloads will happen automatically
via the webhooks. If you accidentally pushed passwords or other sensitive
data you will need to change them immediately and yank your gem.
    EOF
  end

  def arguments # :nodoc:
    "GEM       name of gem"
  end

  def usage # :nodoc:
    "#{program_name} GEM -v VERSION [-p PLATFORM] [--key KEY_NAME] [--host HOST]"
  end

  def initialize
    super 'yank', 'Remove a pushed gem from the index'

    add_version_option("remove")
    add_platform_option("remove")
    add_otp_option

    add_option('--host HOST',
               'Yank from another gemcutter-compatible host',
               '  (e.g. https://rubygems.org)') do |value, options|
      options[:host] = value
    end

    add_key_option
    @host = nil
  end

  def execute
    @host = options[:host]

    sign_in @host

    version   = get_version_from_requirements(options[:version])
    platform  = get_platform_from_requirements(options)

    if version
      yank_gem(version, platform)
    else
      say "A version argument is required: #{usage}"
      terminate_interaction
    end
  end

  def yank_gem(version, platform)
    say "Yanking gem from #{self.host}..."
    args = [:delete, version, platform, "api/v1/gems/yank"]
    response = yank_api_request(*args)

    say response.body
  end

  private

  def yank_api_request(method, version, platform, api)
    name = get_one_gem_name
    response = rubygems_api_request(method, api, host) do |request|
      request.add_field("Authorization", api_key)
      request.add_field("OTP", options[:otp]) if options[:otp]

      data = {
        'gem_name' => name,
        'version' => version,
      }
      data['platform'] = platform if platform

      request.set_form_data data
    end
    response
  end

  def get_version_from_requirements(requirements)
    requirements.requirements.first[1].version
  rescue
    nil
  end

  def get_platform_from_requirements(requirements)
    Gem.platforms[1].to_s if requirements.key? :added_platform
  end

end
PK7H[��a.ll0share/rubygems/rubygems/commands/push_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/gemcutter_utilities'
require 'rubygems/package'

class Gem::Commands::PushCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::GemcutterUtilities

  def description # :nodoc:
    <<-EOF
The push command uploads a gem to the push server (the default is
https://rubygems.org) and adds it to the index.

The gem can be removed from the index and deleted from the server using the yank
command.  For further discussion see the help for the yank command.

The push command will use ~/.gem/credentials to authenticate to a server, but you can use the RubyGems environment variable GEM_HOST_API_KEY to set the api key to authenticate.
    EOF
  end

  def arguments # :nodoc:
    "GEM       built gem to push up"
  end

  def usage # :nodoc:
    "#{program_name} GEM"
  end

  def initialize
    super 'push', 'Push a gem up to the gem server', :host => self.host

    @user_defined_host = false

    add_proxy_option
    add_key_option
    add_otp_option

    add_option('--host HOST',
               'Push to another gemcutter-compatible host',
               '  (e.g. https://rubygems.org)') do |value, options|
      options[:host] = value
      @user_defined_host = true
    end

    @host = nil
  end

  def execute
    gem_name = get_one_gem_name
    default_gem_server, push_host = get_hosts_for(gem_name)

    default_host = nil
    user_defined_host = nil

    if @user_defined_host
      user_defined_host = options[:host]
    else
      default_host = options[:host]
    end

    @host = if user_defined_host
              user_defined_host
            elsif default_gem_server
              default_gem_server
            elsif push_host
              push_host
            else
              default_host
            end

    sign_in @host

    send_gem(gem_name)
  end

  def send_gem(name)
    args = [:post, "api/v1/gems"]

    latest_rubygems_version = Gem.latest_rubygems_version

    if latest_rubygems_version < Gem.rubygems_version and
         Gem.rubygems_version.prerelease? and
         Gem::Version.new('2.0.0.rc.2') != Gem.rubygems_version
      alert_error <<-ERROR
You are using a beta release of RubyGems (#{Gem::VERSION}) which is not
allowed to push gems.  Please downgrade or upgrade to a release version.

The latest released RubyGems version is #{latest_rubygems_version}

You can upgrade or downgrade to the latest release version with:

  gem update --system=#{latest_rubygems_version}

      ERROR
      terminate_interaction 1
    end

    gem_data = Gem::Package.new(name)

    unless @host
      @host = gem_data.spec.metadata['default_gem_server']
    end

    push_host = nil

    if gem_data.spec.metadata.has_key?('allowed_push_host')
      push_host = gem_data.spec.metadata['allowed_push_host']
    end

    @host ||= push_host

    # Always include @host, even if it's nil
    args += [ @host, push_host ]

    say "Pushing gem to #{@host || Gem.host}..."

    response = send_push_request(name, args)

    with_response response
  end

  private

  def send_push_request(name, args)
    rubygems_api_request(*args) do |request|
      request.body = Gem.read_binary name
      request.add_field "Content-Length", request.body.size
      request.add_field "Content-Type",   "application/octet-stream"
      request.add_field "Authorization",  api_key
      request.add_field "OTP", options[:otp] if options[:otp]
    end
  end

  def get_hosts_for(name)
    gem_metadata = Gem::Package.new(name).spec.metadata

    [
      gem_metadata["default_gem_server"],
      gem_metadata["allowed_push_host"]
    ]
  end

end
PK7H[;.֕(�(0share/rubygems/rubygems/commands/help_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::HelpCommand < Gem::Command

  # :stopdoc:
  EXAMPLES = <<-EOF.freeze
Some examples of 'gem' usage.

* Install 'rake', either from local directory or remote server:

    gem install rake

* Install 'rake', only from remote server:

    gem install rake --remote

* Install 'rake', but only version 0.3.1, even if dependencies
  are not met, and into a user-specific directory:

    gem install rake --version 0.3.1 --force --user-install

* List local gems whose name begins with 'D':

    gem list D

* List local and remote gems whose name contains 'log':

    gem search log --both

* List only remote gems whose name contains 'log':

    gem search log --remote

* Uninstall 'rake':

    gem uninstall rake

* Create a gem:

    See https://guides.rubygems.org/make-your-own-gem/

* See information about RubyGems:

    gem environment

* Update all gems on your system:

    gem update

* Update your local version of RubyGems

    gem update --system
  EOF

  GEM_DEPENDENCIES = <<-EOF.freeze
A gem dependencies file allows installation of a consistent set of gems across
multiple environments.  The RubyGems implementation is designed to be
compatible with Bundler's Gemfile format.  You can see additional
documentation on the format at:

  http://bundler.io

RubyGems automatically looks for these gem dependencies files:

* gem.deps.rb
* Gemfile
* Isolate

These files are looked up automatically using `gem install -g`, or you can
specify a custom file.

When the RUBYGEMS_GEMDEPS environment variable is set to a gem dependencies
file the gems from that file will be activated at startup time.  Set it to a
specific filename or to "-" to have RubyGems automatically discover the gem
dependencies file by walking up from the current directory.

You can also activate gem dependencies at program startup using
Gem.use_gemdeps.

NOTE: Enabling automatic discovery on multiuser systems can lead to execution
of arbitrary code when used from directories outside your control.

Gem Dependencies
================

Use #gem to declare which gems you directly depend upon:

  gem 'rake'

To depend on a specific set of versions:

  gem 'rake', '~> 10.3', '>= 10.3.2'

RubyGems will require the gem name when activating the gem using
the RUBYGEMS_GEMDEPS environment variable or Gem::use_gemdeps.  Use the
require: option to override this behavior if the gem does not have a file of
that name or you don't want to require those files:

  gem 'my_gem', require: 'other_file'

To prevent RubyGems from requiring any files use:

  gem 'my_gem', require: false

To load dependencies from a .gemspec file:

  gemspec

RubyGems looks for the first .gemspec file in the current directory.  To
override this use the name: option:

  gemspec name: 'specific_gem'

To look in a different directory use the path: option:

  gemspec name: 'specific_gem', path: 'gemspecs'

To depend on a gem unpacked into a local directory:

  gem 'modified_gem', path: 'vendor/modified_gem'

To depend on a gem from git:

  gem 'private_gem', git: 'git@my.company.example:private_gem.git'

To depend on a gem from github:

  gem 'private_gem', github: 'my_company/private_gem'

To depend on a gem from a github gist:

  gem 'bang', gist: '1232884'

Git, github and gist support the ref:, branch: and tag: options to specify a
commit reference or hash, branch or tag respectively to use for the gem.

Setting the submodules: option to true for git, github and gist dependencies
causes fetching of submodules when fetching the repository.

You can depend on multiple gems from a single repository with the git method:

  git 'https://github.com/rails/rails.git' do
    gem 'activesupport'
    gem 'activerecord'
  end

Gem Sources
===========

RubyGems uses the default sources for regular `gem install` for gem
dependencies files.  Unlike bundler, you do need to specify a source.

You can override the sources used for downloading gems with:

  source 'https://gem_server.example'

You may specify multiple sources.  Unlike bundler the prepend: option is not
supported. Sources are used in-order, to prepend a source place it at the
front of the list.

Gem Platform
============

You can restrict gem dependencies to specific platforms with the #platform
and #platforms methods:

  platform :ruby_21 do
    gem 'debugger'
  end

See the bundler Gemfile manual page for a list of platforms supported in a gem
dependencies file.:

  http://bundler.io/v1.6/man/gemfile.5.html

Ruby Version and Engine Dependency
==================================

You can specify the version, engine and engine version of ruby to use with
your gem dependencies file.  If you are not running the specified version
RubyGems will raise an exception.

To depend on a specific version of ruby:

  ruby '2.1.2'

To depend on a specific ruby engine:

  ruby '1.9.3', engine: 'jruby'

To depend on a specific ruby engine version:

  ruby '1.9.3', engine: 'jruby', engine_version: '1.7.11'

Grouping Dependencies
=====================

Gem dependencies may be placed in groups that can be excluded from install.
Dependencies required for development or testing of your code may be excluded
when installed in a production environment.

A #gem dependency may be placed in a group using the group: option:

  gem 'minitest', group: :test

To install dependencies from a gemfile without specific groups use the
`--without` option for `gem install -g`:

  $ gem install -g --without test

The group: option also accepts multiple groups if the gem fits in multiple
categories.

Multiple groups may be excluded during install by comma-separating the groups for `--without` or by specifying `--without` multiple times.

The #group method can also be used to place gems in groups:

  group :test do
    gem 'minitest'
    gem 'minitest-emoji'
  end

The #group method allows multiple groups.

The #gemspec development dependencies are placed in the :development group by
default.  This may be overridden with the :development_group option:

  gemspec development_group: :other

  EOF

  PLATFORMS = <<-'EOF'.freeze
RubyGems platforms are composed of three parts, a CPU, an OS, and a
version.  These values are taken from values in rbconfig.rb.  You can view
your current platform by running `gem environment`.

RubyGems matches platforms as follows:

  * The CPU must match exactly unless one of the platforms has
    "universal" as the CPU or the local CPU starts with "arm" and the gem's
    CPU is exactly "arm" (for gems that support generic ARM architecture).
  * The OS must match exactly.
  * The versions must match exactly unless one of the versions is nil.

For commands that install, uninstall and list gems, you can override what
RubyGems thinks your platform is with the --platform option.  The platform
you pass must match "#{cpu}-#{os}" or "#{cpu}-#{os}-#{version}".  On mswin
platforms, the version is the compiler version, not the OS version.  (Ruby
compiled with VC6 uses "60" as the compiler version, VC8 uses "80".)

For the ARM architecture, gems with a platform of "arm-linux" should run on a
reasonable set of ARM CPUs and not depend on instructions present on a limited
subset of the architecture.  For example, the binary should run on platforms
armv5, armv6hf, armv6l, armv7, etc.  If you use the "arm-linux" platform
please test your gem on a variety of ARM hardware before release to ensure it
functions correctly.

Example platforms:

  x86-freebsd        # Any FreeBSD version on an x86 CPU
  universal-darwin-8 # Darwin 8 only gems that run on any CPU
  x86-mswin32-80     # Windows gems compiled with VC8
  armv7-linux        # Gem complied for an ARMv7 CPU running linux
  arm-linux          # Gem compiled for any ARM CPU running linux

When building platform gems, set the platform in the gem specification to
Gem::Platform::CURRENT.  This will correctly mark the gem with your ruby's
platform.
  EOF

  # NOTE when updating also update Gem::Command::HELP

  SUBCOMMANDS = [
    ["commands",         :show_commands],
    ["options",          Gem::Command::HELP],
    ["examples",         EXAMPLES],
    ["gem_dependencies", GEM_DEPENDENCIES],
    ["platforms",        PLATFORMS],
  ].freeze
  # :startdoc:

  def initialize
    super 'help', "Provide help on the 'gem' command"

    @command_manager = Gem::CommandManager.instance
  end

  def usage # :nodoc:
    "#{program_name} ARGUMENT"
  end

  def execute
    arg = options[:args][0]

    _, help = SUBCOMMANDS.find do |command,|
      begins? command, arg
    end

    if help
      if Symbol === help
        send help
      else
        say help
      end
      return
    end

    if options[:help]
      show_help

    elsif arg
      show_command_help arg

    else
      say Gem::Command::HELP
    end
  end

  def show_commands # :nodoc:
    out = []
    out << "GEM commands are:"
    out << nil

    margin_width = 4

    desc_width = @command_manager.command_names.map { |n| n.size }.max + 4

    summary_width = 80 - margin_width - desc_width
    wrap_indent = ' ' * (margin_width + desc_width)
    format = "#{' ' * margin_width}%-#{desc_width}s%s"

    @command_manager.command_names.each do |cmd_name|
      command = @command_manager[cmd_name]

      summary =
        if command
          command.summary
        else
          "[No command found for #{cmd_name}]"
        end

      summary = wrap(summary, summary_width).split "\n"
      out << sprintf(format, cmd_name, summary.shift)
      until summary.empty? do
        out << "#{wrap_indent}#{summary.shift}"
      end
    end

    out << nil
    out << "For help on a particular command, use 'gem help COMMAND'."
    out << nil
    out << "Commands may be abbreviated, so long as they are unambiguous."
    out << "e.g. 'gem i rake' is short for 'gem install rake'."

    say out.join("\n")
  end

  def show_command_help(command_name) # :nodoc:
    command_name = command_name.downcase

    possibilities = @command_manager.find_command_possibilities command_name

    if possibilities.size == 1
      command = @command_manager[possibilities.first]
      command.invoke("--help")
    elsif possibilities.size > 1
      alert_warning "Ambiguous command #{command_name} (#{possibilities.join(', ')})"
    else
      alert_warning "Unknown command #{command_name}. Try: gem help commands"
    end
  end

end
PK7H[!�����1share/rubygems/rubygems/commands/check_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/version_option'
require 'rubygems/validator'
require 'rubygems/doctor'

class Gem::Commands::CheckCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'check', 'Check a gem repository for added or missing files',
          :alien => true, :doctor => false, :dry_run => false, :gems => true

    add_option('-a', '--[no-]alien',
               'Report "unmanaged" or rogue files in the',
               'gem repository') do |value, options|
      options[:alien] = value
    end

    add_option('--[no-]doctor',
               'Clean up uninstalled gems and broken',
               'specifications') do |value, options|
      options[:doctor] = value
    end

    add_option('--[no-]dry-run',
               'Do not remove files, only report what',
               'would be removed') do |value, options|
      options[:dry_run] = value
    end

    add_option('--[no-]gems',
               'Check installed gems for problems') do |value, options|
      options[:gems] = value
    end

    add_version_option 'check'
  end

  def check_gems
    say 'Checking gems...'
    say
    gems = get_all_gem_names rescue []

    Gem::Validator.new.alien(gems).sort.each do |key, val|
      unless val.empty?
        say "#{key} has #{val.size} problems"
        val.each do |error_entry|
          say "  #{error_entry.path}:"
          say "    #{error_entry.problem}"
        end
      else
        say "#{key} is error-free" if Gem.configuration.verbose
      end
      say
    end
  end

  def doctor
    say 'Checking for files from uninstalled gems...'
    say

    Gem.path.each do |gem_repo|
      doctor = Gem::Doctor.new gem_repo, options[:dry_run]
      doctor.doctor
    end
  end

  def execute
    check_gems if options[:gems]
    doctor if options[:doctor]
  end

  def arguments # :nodoc:
    'GEMNAME       name of gem to check'
  end

  def defaults_str # :nodoc:
    '--gems --alien'
  end

  def description # :nodoc:
    <<-EOF
The check command can list and repair problems with installed gems and
specifications and will clean up gems that have been partially uninstalled.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [OPTIONS] [GEMNAME ...]"
  end

end
PK7H[InB��
�
0share/rubygems/rubygems/commands/lock_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::LockCommand < Gem::Command

  def initialize
    super 'lock', 'Generate a lockdown list of gems',
          :strict => false

    add_option '-s', '--[no-]strict',
               'fail if unable to satisfy a dependency' do |strict, options|
      options[:strict] = strict
    end
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to lock\nVERSION       version of gem to lock"
  end

  def defaults_str # :nodoc:
    "--no-strict"
  end

  def description # :nodoc:
    <<-EOF
The lock command will generate a list of +gem+ statements that will lock down
the versions for the gem given in the command line.  It will specify exact
versions in the requirements list to ensure that the gems loaded will always
be consistent.  A full recursive search of all effected gems will be
generated.

Example:

  gem lock rails-1.0.0 > lockdown.rb

will produce in lockdown.rb:

  require "rubygems"
  gem 'rails', '= 1.0.0'
  gem 'rake', '= 0.7.0.1'
  gem 'activesupport', '= 1.2.5'
  gem 'activerecord', '= 1.13.2'
  gem 'actionpack', '= 1.11.2'
  gem 'actionmailer', '= 1.1.5'
  gem 'actionwebservice', '= 1.0.0'

Just load lockdown.rb from your application to ensure that the current
versions are loaded.  Make sure that lockdown.rb is loaded *before* any
other require statements.

Notice that rails 1.0.0 only requires that rake 0.6.2 or better be used.
Rake-0.7.0.1 is the most recent version installed that satisfies that, so we
lock it down to the exact version.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME-VERSION [GEMNAME-VERSION ...]"
  end

  def complain(message)
    if options[:strict]
      raise Gem::Exception, message
    else
      say "# #{message}"
    end
  end

  def execute
    say "require 'rubygems'"

    locked = {}

    pending = options[:args]

    until pending.empty? do
      full_name = pending.shift

      spec = Gem::Specification.load spec_path(full_name)

      if spec.nil?
        complain "Could not find gem #{full_name}, try using the full name"
        next
      end

      say "gem '#{spec.name}', '= #{spec.version}'" unless locked[spec.name]
      locked[spec.name] = true

      spec.runtime_dependencies.each do |dep|
        next if locked[dep.name]
        candidates = dep.matching_specs

        if candidates.empty?
          complain "Unable to satisfy '#{dep}' from currently installed gems"
        else
          pending << candidates.last.full_name
        end
      end
    end
  end

  def spec_path(gem_full_name)
    gemspecs = Gem.path.map do |path|
      File.join path, "specifications", "#{gem_full_name}.gemspec"
    end

    gemspecs.find { |path| File.exist? path }
  end

end
PK7H[F��992share/rubygems/rubygems/commands/update_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/command_manager'
require 'rubygems/dependency_installer'
require 'rubygems/install_update_options'
require 'rubygems/local_remote_options'
require 'rubygems/spec_fetcher'
require 'rubygems/version_option'
require 'rubygems/install_message' # must come before rdoc for messaging
require 'rubygems/rdoc'

class Gem::Commands::UpdateCommand < Gem::Command

  include Gem::InstallUpdateOptions
  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  attr_reader :installer # :nodoc:

  attr_reader :updated # :nodoc:

  def initialize
    super 'update', 'Update installed gems to the latest version',
      :document => %w[rdoc ri],
      :force    => false

    add_install_update_options

    OptionParser.accept Gem::Version do |value|
      Gem::Version.new value

      value
    end

    add_option('--system [VERSION]', Gem::Version,
               'Update the RubyGems system software') do |value, options|
      value = true unless value

      options[:system] = value
    end

    add_local_remote_options
    add_platform_option
    add_prerelease_option "as update targets"

    @updated   = []
    @installer = nil
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to update"
  end

  def defaults_str # :nodoc:
    "--document --no-force --install-dir #{Gem.dir}"
  end

  def description # :nodoc:
    <<-EOF
The update command will update your gems to the latest version.

The update command does not remove the previous version. Use the cleanup
command to remove old versions.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [GEMNAME ...]"
  end

  def check_latest_rubygems(version) # :nodoc:
    if Gem.rubygems_version == version
      say "Latest version already installed. Done."
      terminate_interaction
    end

    options[:user_install] = false
  end

  def check_update_arguments # :nodoc:
    unless options[:args].empty?
      alert_error "Gem names are not allowed with the --system option"
      terminate_interaction 1
    end
  end

  def execute
    if options[:system]
      update_rubygems
      return
    end

    hig = highest_installed_gems

    gems_to_update = which_to_update hig, options[:args].uniq

    if options[:explain]
      say "Gems to update:"

      gems_to_update.each do |name_tuple|
        say "  #{name_tuple.full_name}"
      end

      return
    end

    say "Updating installed gems"

    updated = update_gems gems_to_update

    updated_names = updated.map { |spec| spec.name }
    not_updated_names = options[:args].uniq - updated_names

    if updated.empty?
      say "Nothing to update"
    else
      say "Gems updated: #{updated_names.join(' ')}"
      say "Gems already up-to-date: #{not_updated_names.join(' ')}" unless not_updated_names.empty?
    end
  end

  def fetch_remote_gems(spec) # :nodoc:
    dependency = Gem::Dependency.new spec.name, "> #{spec.version}"
    dependency.prerelease = options[:prerelease]

    fetcher = Gem::SpecFetcher.fetcher

    spec_tuples, errors = fetcher.search_for_dependency dependency

    error = errors.find { |e| e.respond_to? :exception }

    raise error if error

    spec_tuples
  end

  def highest_installed_gems # :nodoc:
    hig = {} # highest installed gems

    Gem::Specification.each do |spec|
      if hig[spec.name].nil? or hig[spec.name].version < spec.version
        hig[spec.name] = spec
      end
    end

    hig
  end

  def highest_remote_name_tuple(spec) # :nodoc:
    spec_tuples = fetch_remote_gems spec

    matching_gems = spec_tuples.select do |g,_|
      g.name == spec.name and g.match_platform?
    end

    highest_remote_gem = matching_gems.max

    highest_remote_gem ||= [Gem::NameTuple.null]

    highest_remote_gem.first
  end

  def install_rubygems(version) # :nodoc:
    args = update_rubygems_arguments

    update_dir = File.join Gem.dir, 'gems', "rubygems-update-#{version}"

    Dir.chdir update_dir do
      say "Installing RubyGems #{version}"

      installed = system Gem.ruby, '--disable-gems', 'setup.rb', *args
      say "RubyGems system software updated" if installed
    end
  end

  def rubygems_target_version
    version = options[:system]
    update_latest = version == true

    if update_latest
      version     = Gem::Version.new     Gem::VERSION
      requirement = Gem::Requirement.new ">= #{Gem::VERSION}"
    else
      version     = Gem::Version.new     version
      requirement = Gem::Requirement.new version
    end

    rubygems_update         = Gem::Specification.new
    rubygems_update.name    = 'rubygems-update'
    rubygems_update.version = version

    hig = {
      'rubygems-update' => rubygems_update
    }

    gems_to_update = which_to_update hig, options[:args], :system
    up_ver = gems_to_update.first.version

    target = if update_latest
               up_ver
             else
               version
             end

    return target, requirement
  end

  def update_gem(name, version = Gem::Requirement.default)
    return if @updated.any? { |spec| spec.name == name }

    update_options = options.dup
    update_options[:prerelease] = version.prerelease?

    @installer = Gem::DependencyInstaller.new update_options

    say "Updating #{name}"
    begin
      @installer.install name, Gem::Requirement.new(version)
    rescue Gem::InstallError, Gem::DependencyError => e
      alert_error "Error installing #{name}:\n\t#{e.message}"
    end

    @installer.installed_gems.each do |spec|
      @updated << spec
    end
  end

  def update_gems(gems_to_update)
    gems_to_update.uniq.sort.each do |name_tuple|
      update_gem name_tuple.name, name_tuple.version
    end

    @updated
  end

  ##
  # Update RubyGems software to the latest version.

  def update_rubygems
    check_update_arguments

    version, requirement = rubygems_target_version

    check_latest_rubygems version

    update_gem 'rubygems-update', version

    installed_gems = Gem::Specification.find_all_by_name 'rubygems-update', requirement
    version        = installed_gems.first.version

    install_rubygems version
  end

  def update_rubygems_arguments # :nodoc:
    args = []
    args << '--prefix' << Gem.prefix if Gem.prefix
    args << '--no-document' unless options[:document].include?('rdoc') || options[:document].include?('ri')
    args << '--no-format-executable' if options[:no_format_executable]
    args << '--previous-version' << Gem::VERSION if
      options[:system] == true or
        Gem::Version.new(options[:system]) >= Gem::Version.new(2)
    args
  end

  def which_to_update(highest_installed_gems, gem_names, system = false)
    result = []

    highest_installed_gems.each do |l_name, l_spec|
      next if not gem_names.empty? and
              gem_names.none? { |name| name == l_spec.name }

      highest_remote_tup = highest_remote_name_tuple l_spec
      highest_remote_ver = highest_remote_tup.version
      highest_installed_ver = l_spec.version

      if system or (highest_installed_ver < highest_remote_ver)
        result << Gem::NameTuple.new(l_spec.name, [highest_installed_ver, highest_remote_ver].max, highest_remote_tup.platform)
      end
    end

    result
  end

end
PK7H[��=���6share/rubygems/rubygems/commands/dependency_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/version_option'

class Gem::Commands::DependencyCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  def initialize
    super 'dependency',
          'Show the dependencies of an installed gem',
          :version => Gem::Requirement.default, :domain => :local

    add_version_option
    add_platform_option
    add_prerelease_option

    add_option('-R', '--[no-]reverse-dependencies',
               'Include reverse dependencies in the output') do
      |value, options|
      options[:reverse_dependencies] = value
    end

    add_option('-p', '--pipe',
               "Pipe Format (name --version ver)") do |value, options|
      options[:pipe_format] = value
    end

    add_local_remote_options
  end

  def arguments # :nodoc:
    "REGEXP        show dependencies for gems whose names start with REGEXP"
  end

  def defaults_str # :nodoc:
    "--local --version '#{Gem::Requirement.default}' --no-reverse-dependencies"
  end

  def description # :nodoc:
    <<-EOF
The dependency commands lists which other gems a given gem depends on.  For
local gems only the reverse dependencies can be shown (which gems depend on
the named gem).

The dependency list can be displayed in a format suitable for piping for
use with other commands.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} REGEXP"
  end

  def fetch_remote_specs(dependency) # :nodoc:
    fetcher = Gem::SpecFetcher.fetcher

    ss, = fetcher.spec_for_dependency dependency

    ss.map { |spec, _| spec }
  end

  def fetch_specs(name_pattern, dependency) # :nodoc:
    specs = []

    if local?
      specs.concat Gem::Specification.stubs.find_all { |spec|
        name_pattern =~ spec.name and
          dependency.requirement.satisfied_by? spec.version
      }.map(&:to_spec)
    end

    specs.concat fetch_remote_specs dependency if remote?

    ensure_specs specs

    specs.uniq.sort
  end

  def gem_dependency(pattern, version, prerelease) # :nodoc:
    dependency = Gem::Deprecate.skip_during do
      Gem::Dependency.new pattern, version
    end

    dependency.prerelease = prerelease

    dependency
  end

  def display_pipe(specs) # :nodoc:
    specs.each do |spec|
      unless spec.dependencies.empty?
        spec.dependencies.sort_by { |dep| dep.name }.each do |dep|
          say "#{dep.name} --version '#{dep.requirement}'"
        end
      end
    end
  end

  def display_readable(specs, reverse) # :nodoc:
    response = String.new

    specs.each do |spec|
      response << print_dependencies(spec)
      unless reverse[spec.full_name].empty?
        response << "  Used by\n"
        reverse[spec.full_name].each do |sp, dep|
          response << "    #{sp} (#{dep})\n"
        end
      end
      response << "\n"
    end

    say response
  end

  def execute
    ensure_local_only_reverse_dependencies

    pattern = name_pattern options[:args]

    dependency =
      gem_dependency pattern, options[:version], options[:prerelease]

    specs = fetch_specs pattern, dependency

    reverse = reverse_dependencies specs

    if options[:pipe_format]
      display_pipe specs
    else
      display_readable specs, reverse
    end
  end

  def ensure_local_only_reverse_dependencies # :nodoc:
    if options[:reverse_dependencies] and remote? and not local?
      alert_error 'Only reverse dependencies for local gems are supported.'
      terminate_interaction 1
    end
  end

  def ensure_specs(specs) # :nodoc:
    return unless specs.empty?

    patterns = options[:args].join ','
    say "No gems found matching #{patterns} (#{options[:version]})" if
      Gem.configuration.verbose

    terminate_interaction 1
  end

  def print_dependencies(spec, level = 0) # :nodoc:
    response = String.new
    response << '  ' * level + "Gem #{spec.full_name}\n"
    unless spec.dependencies.empty?
      spec.dependencies.sort_by { |dep| dep.name }.each do |dep|
        response << '  ' * level + "  #{dep}\n"
      end
    end
    response
  end

  def remote_specs(dependency) # :nodoc:
    fetcher = Gem::SpecFetcher.fetcher

    ss, _ = fetcher.spec_for_dependency dependency

    ss.map { |s,o| s }
  end

  def reverse_dependencies(specs) # :nodoc:
    reverse = Hash.new { |h, k| h[k] = [] }

    return reverse unless options[:reverse_dependencies]

    specs.each do |spec|
      reverse[spec.full_name] = find_reverse_dependencies spec
    end

    reverse
  end

  ##
  # Returns an Array of [specification, dep] that are satisfied by +spec+.

  def find_reverse_dependencies(spec) # :nodoc:
    result = []

    Gem::Specification.each do |sp|
      sp.dependencies.each do |dep|
        dep = Gem::Dependency.new(*dep) unless Gem::Dependency === dep

        if spec.name == dep.name and
           dep.requirement.satisfied_by?(spec.version)
          result << [sp.full_name, dep]
        end
      end
    end

    result
  end

  private

  def name_pattern(args)
    args << '' if args.empty?

    if args.length == 1 and args.first =~ /\A(.*)(i)?\z/m
      flags = $2 ? Regexp::IGNORECASE : nil
      Regexp.new $1, flags
    else
      /\A#{Regexp.union(*args)}/
    end
  end

end
PK8H[���tt2share/rubygems/rubygems/commands/search_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/commands/query_command'

class Gem::Commands::SearchCommand < Gem::Commands::QueryCommand

  def initialize
    super 'search', 'Display remote gems whose name matches REGEXP'

    remove_option '--name-matches'

    defaults[:domain] = :remote
  end

  def arguments # :nodoc:
    "REGEXP        regexp to search for in gem name"
  end

  def defaults_str # :nodoc:
    "--remote --no-details"
  end

  def description # :nodoc:
    <<-EOF
The search command displays remote gems whose name matches the given
regexp.

The --details option displays additional details from the gem but will
take a little longer to complete as it must download the information
individually from the index.

To list local gems use the list command.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [REGEXP]"
  end

end
PK8H[�Z�Q%Q%1share/rubygems/rubygems/commands/query_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/spec_fetcher'
require 'rubygems/version_option'
require 'rubygems/text'

class Gem::Commands::QueryCommand < Gem::Command

  include Gem::Text
  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  def initialize(name = 'query',
                 summary = 'Query gem information in local or remote repositories')
    super name, summary,
         :name => //, :domain => :local, :details => false, :versions => true,
         :installed => nil, :version => Gem::Requirement.default

    add_option('-i', '--[no-]installed',
               'Check for installed gem') do |value, options|
      options[:installed] = value
    end

    add_option('-I', 'Equivalent to --no-installed') do |value, options|
      options[:installed] = false
    end

    add_version_option command, "for use with --installed"

    add_option('-n', '--name-matches REGEXP',
               'Name of gem(s) to query on matches the',
               'provided REGEXP') do |value, options|
      options[:name] = /#{value}/i
    end

    add_option('-d', '--[no-]details',
               'Display detailed information of gem(s)') do |value, options|
      options[:details] = value
    end

    add_option('--[no-]versions',
               'Display only gem names') do |value, options|
      options[:versions] = value
      options[:details] = false unless value
    end

    add_option('-a', '--all',
               'Display all gem versions') do |value, options|
      options[:all] = value
    end

    add_option('-e', '--exact',
               'Name of gem(s) to query on matches the',
               'provided STRING') do |value, options|
      options[:exact] = value
    end

    add_option('--[no-]prerelease',
               'Display prerelease versions') do |value, options|
      options[:prerelease] = value
    end

    add_local_remote_options
  end

  def defaults_str # :nodoc:
    "--local --name-matches // --no-details --versions --no-installed"
  end

  def description # :nodoc:
    <<-EOF
The query command is the basis for the list and search commands.

You should really use the list and search commands instead.  This command
is too hard to use.
    EOF
  end

  def execute
    gem_names = Array(options[:name])

    if !args.empty?
      gem_names = options[:exact] ? args.map{|arg| /\A#{Regexp.escape(arg)}\Z/ } : args.map{|arg| /#{arg}/i }
    end

    terminate_interaction(check_installed_gems(gem_names)) if check_installed_gems?

    gem_names.each { |n| show_gems(n) }
  end

  private

  def check_installed_gems(gem_names)
    exit_code = 0

    if args.empty? && !gem_name?
      alert_error "You must specify a gem name"
      exit_code = 4
    elsif gem_names.count > 1
      alert_error "You must specify only ONE gem!"
      exit_code = 4
    else
      installed = installed?(gem_names.first, options[:version])
      installed = !installed unless options[:installed]

      say(installed)
      exit_code = 1 if !installed
    end

    exit_code
  end

  def check_installed_gems?
    !options[:installed].nil?
  end

  def gem_name?
    !options[:name].source.empty?
  end

  def prerelease
    options[:prerelease]
  end

  def show_prereleases?
    prerelease.nil? || prerelease
  end

  def args
    options[:args].to_a
  end

  def display_header(type)
    if (ui.outs.tty? and Gem.configuration.verbose) or both?
      say
      say "*** #{type} GEMS ***"
      say
    end
  end

  #Guts of original execute
  def show_gems(name)
    show_local_gems(name)  if local?
    show_remote_gems(name) if remote?
  end

  def show_local_gems(name, req = Gem::Requirement.default)
    display_header("LOCAL")

    specs = Gem::Specification.find_all do |s|
      s.name =~ name and req =~ s.version
    end

    dep = Gem::Deprecate.skip_during { Gem::Dependency.new name, req }
    specs.select! do |s|
      dep.match?(s.name, s.version, show_prereleases?)
    end

    spec_tuples = specs.map do |spec|
      [spec.name_tuple, spec]
    end

    output_query_results(spec_tuples)
  end

  def show_remote_gems(name)
    display_header("REMOTE")

    fetcher = Gem::SpecFetcher.fetcher

    spec_tuples = if name.respond_to?(:source) && name.source.empty?
                    fetcher.detect(specs_type) { true }
                  else
                    fetcher.detect(specs_type) do |name_tuple|
                      name === name_tuple.name
                    end
                  end

    output_query_results(spec_tuples)
  end

  def specs_type
    if options[:all]
      if options[:prerelease]
        :complete
      else
        :released
      end
    elsif options[:prerelease]
      :prerelease
    else
      :latest
    end
  end

  ##
  # Check if gem +name+ version +version+ is installed.

  def installed?(name, req = Gem::Requirement.default)
    Gem::Specification.any? { |s| s.name =~ name and req =~ s.version }
  end

  def output_query_results(spec_tuples)
    output = []
    versions = Hash.new { |h,name| h[name] = [] }

    spec_tuples.each do |spec_tuple, source|
      versions[spec_tuple.name] << [spec_tuple, source]
    end

    versions = versions.sort_by do |(n,_),_|
      n.downcase
    end

    output_versions output, versions

    say output.join(options[:details] ? "\n\n" : "\n")
  end

  def output_versions(output, versions)
    versions.each do |gem_name, matching_tuples|
      matching_tuples = matching_tuples.sort_by { |n,_| n.version }.reverse

      platforms = Hash.new { |h,version| h[version] = [] }

      matching_tuples.each do |n, _|
        platforms[n.version] << n.platform if n.platform
      end

      seen = {}

      matching_tuples.delete_if do |n,_|
        if seen[n.version]
          true
        else
          seen[n.version] = true
          false
        end
      end

      output << clean_text(make_entry(matching_tuples, platforms))
    end
  end

  def entry_details(entry, detail_tuple, specs, platforms)
    return unless options[:details]

    name_tuple, spec = detail_tuple

    spec = spec.fetch_spec(name_tuple)if spec.respond_to?(:fetch_spec)

    entry << "\n"

    spec_platforms   entry, platforms
    spec_authors     entry, spec
    spec_homepage    entry, spec
    spec_license     entry, spec
    spec_loaded_from entry, spec, specs
    spec_summary     entry, spec
  end

  def entry_versions(entry, name_tuples, platforms, specs)
    return unless options[:versions]

    list =
      if platforms.empty? or options[:details]
        name_tuples.map { |n| n.version }.uniq
      else
        platforms.sort.reverse.map do |version, pls|
          out = version.to_s

          if options[:domain] == :local
            default = specs.any? do |s|
              !s.is_a?(Gem::Source) && s.version == version && s.default_gem?
            end
            out = "default: #{out}" if default
          end

          if pls != [Gem::Platform::RUBY]
            platform_list = [pls.delete(Gem::Platform::RUBY), *pls.sort].compact
            out = platform_list.unshift(out).join(' ')
          end

          out
        end
      end

    entry << " (#{list.join ', '})"
  end

  def make_entry(entry_tuples, platforms)
    detail_tuple = entry_tuples.first

    name_tuples, specs = entry_tuples.flatten.partition do |item|
      Gem::NameTuple === item
    end

    entry = [name_tuples.first.name]

    entry_versions(entry, name_tuples, platforms, specs)
    entry_details(entry, detail_tuple, specs, platforms)

    entry.join
  end

  def spec_authors(entry, spec)
    authors = "Author#{spec.authors.length > 1 ? 's' : ''}: ".dup
    authors << spec.authors.join(', ')
    entry << format_text(authors, 68, 4)
  end

  def spec_homepage(entry, spec)
    return if spec.homepage.nil? or spec.homepage.empty?

    entry << "\n" << format_text("Homepage: #{spec.homepage}", 68, 4)
  end

  def spec_license(entry, spec)
    return if spec.license.nil? or spec.license.empty?

    licenses = "License#{spec.licenses.length > 1 ? 's' : ''}: ".dup
    licenses << spec.licenses.join(', ')
    entry << "\n" << format_text(licenses, 68, 4)
  end

  def spec_loaded_from(entry, spec, specs)
    return unless spec.loaded_from

    if specs.length == 1
      default = spec.default_gem? ? ' (default)' : nil
      entry << "\n" << "    Installed at#{default}: #{spec.base_dir}"
    else
      label = 'Installed at'
      specs.each do |s|
        version = s.version.to_s
        version << ', default' if s.default_gem?
        entry << "\n" << "    #{label} (#{version}): #{s.base_dir}"
        label = ' ' * label.length
      end
    end
  end

  def spec_platforms(entry, platforms)
    non_ruby = platforms.any? do |_, pls|
      pls.any? { |pl| pl != Gem::Platform::RUBY }
    end

    return unless non_ruby

    if platforms.length == 1
      title = platforms.values.length == 1 ? 'Platform' : 'Platforms'
      entry << "    #{title}: #{platforms.values.sort.join(', ')}\n"
    else
      entry << "    Platforms:\n"

      sorted_platforms = platforms.sort_by { |version,| version }

      sorted_platforms.each do |version, pls|
        label = "        #{version}: "
        data = format_text pls.sort.join(', '), 68, label.length
        data[0, label.length] = label
        entry << data << "\n"
      end
    end
  end

  def spec_summary(entry, spec)
    summary = truncate_text(spec.summary, "the summary for #{spec.full_name}")
    entry << "\n\n" << format_text(summary, 68, 4)
  end

end
PK8H[p��

9share/rubygems/rubygems/commands/specification_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/local_remote_options'
require 'rubygems/version_option'
require 'rubygems/package'

class Gem::Commands::SpecificationCommand < Gem::Command

  include Gem::LocalRemoteOptions
  include Gem::VersionOption

  def initialize
    Gem.load_yaml

    super 'specification', 'Display gem specification (in yaml)',
          :domain => :local, :version => Gem::Requirement.default,
          :format => :yaml

    add_version_option('examine')
    add_platform_option
    add_prerelease_option

    add_option('--all', 'Output specifications for all versions of',
               'the gem') do |value, options|
      options[:all] = true
    end

    add_option('--ruby', 'Output ruby format') do |value, options|
      options[:format] = :ruby
    end

    add_option('--yaml', 'Output YAML format') do |value, options|
      options[:format] = :yaml
    end

    add_option('--marshal', 'Output Marshal format') do |value, options|
      options[:format] = :marshal
    end

    add_local_remote_options
  end

  def arguments # :nodoc:
    <<-ARGS
GEMFILE       name of gem to show the gemspec for
FIELD         name of gemspec field to show
    ARGS
  end

  def defaults_str # :nodoc:
    "--local --version '#{Gem::Requirement.default}' --yaml"
  end

  def description # :nodoc:
    <<-EOF
The specification command allows you to extract the specification from
a gem for examination.

The specification can be output in YAML, ruby or Marshal formats.

Specific fields in the specification can be extracted in YAML format:

  $ gem spec rake summary
  --- Ruby based make-like utility.
  ...

    EOF
  end

  def usage # :nodoc:
    "#{program_name} [GEMFILE] [FIELD]"
  end

  def execute
    specs = []
    gem = options[:args].shift

    unless gem
      raise Gem::CommandLineError,
            "Please specify a gem name or file on the command line"
    end

    case v = options[:version]
    when String
      req = Gem::Requirement.create v
    when Gem::Requirement
      req = v
    else
      raise Gem::CommandLineError, "Unsupported version type: '#{v}'"
    end

    if !req.none? and options[:all]
      alert_error "Specify --all or -v, not both"
      terminate_interaction 1
    end

    if options[:all]
      dep = Gem::Dependency.new gem
    else
      dep = Gem::Dependency.new gem, req
    end

    field = get_one_optional_argument

    raise Gem::CommandLineError, "--ruby and FIELD are mutually exclusive" if
      field and options[:format] == :ruby

    if local?
      if File.exist? gem
        specs << Gem::Package.new(gem).spec rescue nil
      end

      if specs.empty?
        specs.push(*dep.matching_specs)
      end
    end

    if remote?
      dep.prerelease = options[:prerelease]
      found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dep

      specs.push(*found.map { |spec,| spec })
    end

    if specs.empty?
      alert_error "No gem matching '#{dep}' found"
      terminate_interaction 1
    end

    unless options[:all]
      specs = [specs.max_by { |s| s.version }]
    end

    specs.each do |s|
      s = s.send field if field

      say case options[:format]
          when :ruby then s.to_ruby
          when :marshal then Marshal.dump s
          else s.to_yaml
          end

      say "\n"
    end
  end

end
PK8H[�R�)��4share/rubygems/rubygems/commands/pristine_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/package'
require 'rubygems/installer'
require 'rubygems/version_option'

class Gem::Commands::PristineCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'pristine',
          'Restores installed gems to pristine condition from files located in the gem cache',
          :version => Gem::Requirement.default,
          :extensions => true,
          :extensions_set => false,
          :all => false

    add_option('--all',
               'Restore all installed gems to pristine',
               'condition') do |value, options|
      options[:all] = value
    end

    add_option('--skip=gem_name',
               'used on --all, skip if name == gem_name') do |value, options|
      options[:skip] ||= []
      options[:skip] << value
    end

    add_option('--[no-]extensions',
               'Restore gems with extensions',
               'in addition to regular gems') do |value, options|
      options[:extensions_set] = true
      options[:extensions]     = value
    end

    add_option('--only-executables',
               'Only restore executables') do |value, options|
      options[:only_executables] = value
    end

    add_option('-E', '--[no-]env-shebang',
               'Rewrite executables with a shebang',
               'of /usr/bin/env') do |value, options|
      options[:env_shebang] = value
    end

    add_option('-n', '--bindir DIR',
               'Directory where executables are',
               'located') do |value, options|
      options[:bin_dir] = File.expand_path(value)
    end

    add_version_option('restore to', 'pristine condition')
  end

  def arguments # :nodoc:
    "GEMNAME       gem to restore to pristine condition (unless --all)"
  end

  def defaults_str # :nodoc:
    '--extensions'
  end

  def description # :nodoc:
    <<-EOF
The pristine command compares an installed gem with the contents of its
cached .gem file and restores any files that don't match the cached .gem's
copy.

If you have made modifications to an installed gem, the pristine command
will revert them.  All extensions are rebuilt and all bin stubs for the gem
are regenerated after checking for modifications.

If the cached gem cannot be found it will be downloaded.

If --no-extensions is provided pristine will not attempt to restore a gem
with an extension.

If --extensions is given (but not --all or gem names) only gems with
extensions will be restored.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [GEMNAME ...]"
  end

  def execute
    specs = if options[:all]
              Gem::Specification.map

            # `--extensions` must be explicitly given to pristine only gems
            # with extensions.
            elsif options[:extensions_set] and
                  options[:extensions] and options[:args].empty?
              Gem::Specification.select do |spec|
                spec.extensions and not spec.extensions.empty?
              end
            else
              get_all_gem_names.sort.map do |gem_name|
                Gem::Specification.find_all_by_name(gem_name, options[:version]).reverse
              end.flatten
            end

    specs = specs.select{|spec| RUBY_ENGINE == spec.platform || Gem::Platform.local === spec.platform || spec.platform == Gem::Platform::RUBY }

    if specs.to_a.empty?
      raise Gem::Exception,
            "Failed to find gems #{options[:args]} #{options[:version]}"
    end

    say "Restoring gems to pristine condition..."

    specs.each do |spec|
      if spec.default_gem?
        say "Skipped #{spec.full_name}, it is a default gem"
        next
      end

      if options.has_key? :skip
        if options[:skip].include? spec.name
          say "Skipped #{spec.full_name}, it was given through options"
          next
        end
      end

      unless spec.extensions.empty? or options[:extensions] or options[:only_executables]
        say "Skipped #{spec.full_name}, it needs to compile an extension"
        next
      end

      gem = spec.cache_file

      unless File.exist? gem or options[:only_executables]
        require 'rubygems/remote_fetcher'

        say "Cached gem for #{spec.full_name} not found, attempting to fetch..."

        dep = Gem::Dependency.new spec.name, spec.version
        found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dep

        if found.empty?
          say "Skipped #{spec.full_name}, it was not found from cache and remote sources"
          next
        end

        spec_candidate, source = found.first
        Gem::RemoteFetcher.fetcher.download spec_candidate, source.uri.to_s, spec.base_dir
      end

      env_shebang =
        if options.include? :env_shebang
          options[:env_shebang]
        else
          install_defaults = Gem::ConfigFile::PLATFORM_DEFAULTS['install']
          install_defaults.to_s['--env-shebang']
        end

      bin_dir = options[:bin_dir] if options[:bin_dir]

      installer_options = {
        :wrappers => true,
        :force => true,
        :install_dir => spec.base_dir,
        :env_shebang => env_shebang,
        :build_args => spec.build_args,
        :bin_dir => bin_dir
      }

      if options[:only_executables]
        installer = Gem::Installer.for_spec(spec, installer_options)
        installer.generate_bin
      else
        installer = Gem::Installer.at(gem, installer_options)
        installer.install
      end

      say "Restored #{spec.full_name}"
    end
  end

end
PK8H['Laaa1share/rubygems/rubygems/commands/which_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::WhichCommand < Gem::Command

  def initialize
    super 'which', 'Find the location of a library file you can require',
          :search_gems_first => false, :show_all => false

    add_option '-a', '--[no-]all', 'show all matching files' do |show_all, options|
      options[:show_all] = show_all
    end

    add_option '-g', '--[no-]gems-first',
               'search gems before non-gems' do |gems_first, options|
      options[:search_gems_first] = gems_first
    end
  end

  def arguments # :nodoc:
    "FILE          name of file to find"
  end

  def defaults_str # :nodoc:
    "--no-gems-first --no-all"
  end

  def description # :nodoc:
    <<-EOF
The which command is like the shell which command and shows you where
the file you wish to require lives.

You can use the which command to help determine why you are requiring a
version you did not expect or to look at the content of a file you are
requiring to see why it does not behave as you expect.
    EOF
  end

  def execute
    found = true

    options[:args].each do |arg|
      arg = arg.sub(/#{Regexp.union(*Gem.suffixes)}$/, '')
      dirs = $LOAD_PATH

      spec = Gem::Specification.find_by_path arg

      if spec
        if options[:search_gems_first]
          dirs = spec.full_require_paths + $LOAD_PATH
        else
          dirs = $LOAD_PATH + spec.full_require_paths
        end
      end

      paths = find_paths arg, dirs

      if paths.empty?
        alert_error "Can't find Ruby library file or shared library #{arg}"
        found = false
      else
        say paths
      end
    end

    terminate_interaction 1 unless found
  end

  def find_paths(package_name, dirs)
    result = []

    dirs.each do |dir|
      Gem.suffixes.each do |ext|
        full_path = File.join dir, "#{package_name}#{ext}"
        if File.exist? full_path and not File.directory? full_path
          result << full_path
          return result unless options[:show_all]
        end
      end
    end

    result
  end

  def usage # :nodoc:
    "#{program_name} FILE [FILE ...]"
  end

end
PK8H[,���{{2share/rubygems/rubygems/commands/signin_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/gemcutter_utilities'

class Gem::Commands::SigninCommand < Gem::Command

  include Gem::GemcutterUtilities

  def initialize
    super 'signin', 'Sign in to any gemcutter-compatible host. '\
          'It defaults to https://rubygems.org'

    add_option('--host HOST', 'Push to another gemcutter-compatible host') do |value, options|
      options[:host] = value
    end

    add_otp_option
  end

  def description # :nodoc:
    'The signin command executes host sign in for a push server (the default is'\
    ' https://rubygems.org). The host can be provided with the host flag or can'\
    ' be inferred from the provided gem. Host resolution matches the resolution'\
    ' strategy for the push command.'
  end

  def usage # :nodoc:
    program_name
  end

  def execute
    sign_in options[:host]
  end

end
PK8H[#*M�++7share/rubygems/rubygems/commands/environment_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::EnvironmentCommand < Gem::Command

  def initialize
    super 'environment', 'Display information about the RubyGems environment'
  end

  def arguments # :nodoc:
    args = <<-EOF
          gemdir          display the path where gems are installed
          gempath         display path used to search for gems
          version         display the gem format version
          remotesources   display the remote gem servers
          platform        display the supported gem platforms
          <omitted>       display everything
    EOF
    return args.gsub(/^\s+/, '')
  end

  def description # :nodoc:
    <<-EOF
The environment command lets you query rubygems for its configuration for
use in shell scripts or as a debugging aid.

The RubyGems environment can be controlled through command line arguments,
gemrc files, environment variables and built-in defaults.

Command line argument defaults and some RubyGems defaults can be set in a
~/.gemrc file for individual users and a gemrc in the SYSTEM CONFIGURATION
DIRECTORY for all users. These files are YAML files with the following YAML
keys:

  :sources: A YAML array of remote gem repositories to install gems from
  :verbose: Verbosity of the gem command. false, true, and :really are the
            levels
  :update_sources: Enable/disable automatic updating of repository metadata
  :backtrace: Print backtrace when RubyGems encounters an error
  :gempath: The paths in which to look for gems
  :disable_default_gem_server: Force specification of gem server host on push
  <gem_command>: A string containing arguments for the specified gem command

Example:

  :verbose: false
  install: --no-wrappers
  update: --no-wrappers
  :disable_default_gem_server: true

RubyGems' default local repository can be overridden with the GEM_PATH and
GEM_HOME environment variables. GEM_HOME sets the default repository to
install into. GEM_PATH allows multiple local repositories to be searched for
gems.

If you are behind a proxy server, RubyGems uses the HTTP_PROXY,
HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables to discover the
proxy server.

If you would like to push gems to a private gem server the RUBYGEMS_HOST
environment variable can be set to the URI for that server.

If you are packaging RubyGems all of RubyGems' defaults are in
lib/rubygems/defaults.rb.  You may override these in
lib/rubygems/defaults/operating_system.rb
    EOF
  end

  def usage # :nodoc:
    "#{program_name} [arg]"
  end

  def execute
    out = String.new
    arg = options[:args][0]
    out <<
      case arg
      when /^version/ then
        Gem::VERSION
      when /^gemdir/, /^gemhome/, /^home/, /^GEM_HOME/ then
        Gem.dir
      when /^gempath/, /^path/, /^GEM_PATH/ then
        Gem.path.join(File::PATH_SEPARATOR)
      when /^remotesources/ then
        Gem.sources.to_a.join("\n")
      when /^platform/ then
        Gem.platforms.join(File::PATH_SEPARATOR)
      when nil then
        show_environment
      else
        raise Gem::CommandLineError, "Unknown environment option [#{arg}]"
      end
    say out
    true
  end

  def add_path(out, path)
    path.each do |component|
      out << "     - #{component}\n"
    end
  end

  def show_environment # :nodoc:
    out = "RubyGems Environment:\n".dup

    out << "  - RUBYGEMS VERSION: #{Gem::VERSION}\n"

    out << "  - RUBY VERSION: #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}"
    out << " patchlevel #{RUBY_PATCHLEVEL}" if defined? RUBY_PATCHLEVEL
    out << ") [#{RUBY_PLATFORM}]\n"

    out << "  - INSTALLATION DIRECTORY: #{Gem.dir}\n"

    out << "  - USER INSTALLATION DIRECTORY: #{Gem.user_dir}\n"

    out << "  - RUBYGEMS PREFIX: #{Gem.prefix}\n" unless Gem.prefix.nil?

    out << "  - RUBY EXECUTABLE: #{Gem.ruby}\n"

    out << "  - GIT EXECUTABLE: #{git_path}\n"

    out << "  - EXECUTABLE DIRECTORY: #{Gem.bindir}\n"

    out << "  - SPEC CACHE DIRECTORY: #{Gem.spec_cache_dir}\n"

    out << "  - SYSTEM CONFIGURATION DIRECTORY: #{Gem::ConfigFile::SYSTEM_CONFIG_PATH}\n"

    out << "  - RUBYGEMS PLATFORMS:\n"
    Gem.platforms.each do |platform|
      out << "    - #{platform}\n"
    end

    out << "  - GEM PATHS:\n"
    out << "     - #{Gem.dir}\n"

    gem_path = Gem.path.dup
    gem_path.delete Gem.dir
    add_path out, gem_path

    out << "  - GEM CONFIGURATION:\n"
    Gem.configuration.each do |name, value|
      value = value.gsub(/./, '*') if name == 'gemcutter_key'
      out << "     - #{name.inspect} => #{value.inspect}\n"
    end

    out << "  - REMOTE SOURCES:\n"
    Gem.sources.each do |s|
      out << "     - #{s}\n"
    end

    out << "  - SHELL PATH:\n"

    shell_path = ENV['PATH'].split(File::PATH_SEPARATOR)
    add_path out, shell_path

    out
  end

  private

  ##
  # Git binary path

  def git_path
    exts = ENV["PATHEXT"] ? ENV["PATHEXT"].split(";") : [""]
    ENV["PATH"].split(File::PATH_SEPARATOR).each do |path|
      exts.each do |ext|
        exe = File.join(path, "git#{ext}")
        return exe if File.executable?(exe) && !File.directory?(exe)
      end
    end

    return nil
  end

end
PK8H[B��Z884share/rubygems/rubygems/commands/contents_command.rbnu�[���# frozen_string_literal: true
require 'English'
require 'rubygems/command'
require 'rubygems/version_option'

class Gem::Commands::ContentsCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'contents', 'Display the contents of the installed gems',
          :specdirs => [], :lib_only => false, :prefix => true,
          :show_install_dir => false

    add_version_option

    add_option('--all',
               "Contents for all gems") do |all, options|
      options[:all] = all
    end

    add_option('-s', '--spec-dir a,b,c', Array,
               "Search for gems under specific paths") do |spec_dirs, options|
      options[:specdirs] = spec_dirs
    end

    add_option('-l', '--[no-]lib-only',
               "Only return files in the Gem's lib_dirs") do |lib_only, options|
      options[:lib_only] = lib_only
    end

    add_option('--[no-]prefix',
               "Don't include installed path prefix") do |prefix, options|
      options[:prefix] = prefix
    end

    add_option('--[no-]show-install-dir',
               'Show only the gem install dir') do |show, options|
      options[:show_install_dir] = show
    end

    @path_kind = nil
    @spec_dirs = nil
    @version   = nil
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to list contents for"
  end

  def defaults_str # :nodoc:
    "--no-lib-only --prefix"
  end

  def description # :nodoc:
    <<-EOF
The contents command lists the files in an installed gem.  The listing can
be given as full file names, file names without the installed directory
prefix or only the files that are requireable.
    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [GEMNAME ...]"
  end

  def execute
    @version   = options[:version] || Gem::Requirement.default
    @spec_dirs = specification_directories
    @path_kind = path_description @spec_dirs

    names = gem_names

    names.each do |name|
      found =
        if options[:show_install_dir]
          gem_install_dir name
        else
          gem_contents name
        end

      terminate_interaction 1 unless found or names.length > 1
    end
  end

  def files_in(spec)
    if spec.default_gem?
      files_in_default_gem spec
    else
      files_in_gem spec
    end
  end

  def files_in_gem(spec)
    gem_path  = spec.full_gem_path
    extra     = "/{#{spec.require_paths.join ','}}" if options[:lib_only]
    glob      = "#{gem_path}#{extra}/**/*"
    prefix_re = /#{Regexp.escape(gem_path)}\//

    Dir[glob].map do |file|
      [gem_path, file.sub(prefix_re, "")]
    end
  end

  def files_in_default_gem(spec)
    spec.files.map do |file|
      case file
      when /\A#{spec.bindir}\//
        [RbConfig::CONFIG['bindir'], $POSTMATCH]
      when /\.so\z/
        [RbConfig::CONFIG['archdir'], file]
      else
        [RbConfig::CONFIG['rubylibdir'], file]
      end
    end
  end

  def gem_contents(name)
    spec = spec_for name

    return false unless spec

    files = files_in spec

    show_files files

    true
  end

  def gem_install_dir(name)
    spec = spec_for name

    return false unless spec

    say spec.gem_dir

    true
  end

  def gem_names # :nodoc:
    if options[:all]
      Gem::Specification.map(&:name)
    else
      get_all_gem_names
    end
  end

  def path_description(spec_dirs) # :nodoc:
    if spec_dirs.empty?
      "default gem paths"
    else
      "specified path"
    end
  end

  def show_files(files)
    files.sort.each do |prefix, basename|
      absolute_path = File.join(prefix, basename)
      next if File.directory? absolute_path

      if options[:prefix]
        say absolute_path
      else
        say basename
      end
    end
  end

  def spec_for(name)
    spec = Gem::Specification.find_all_by_name(name, @version).last

    return spec if spec

    say "Unable to find gem '#{name}' in #{@path_kind}"

    if Gem.configuration.verbose
      say "\nDirectories searched:"
      @spec_dirs.sort.each { |dir| say dir }
    end

    return nil
  end

  def specification_directories # :nodoc:
    options[:specdirs].map do |i|
      [i, File.join(i, "specifications")]
    end.flatten
  end

end
PK8H[y�HG��3share/rubygems/rubygems/commands/install_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/install_update_options'
require 'rubygems/dependency_installer'
require 'rubygems/local_remote_options'
require 'rubygems/validator'
require 'rubygems/version_option'

##
# Gem installer command line tool
#
# See `gem help install`

class Gem::Commands::InstallCommand < Gem::Command

  attr_reader :installed_specs # :nodoc:

  include Gem::VersionOption
  include Gem::LocalRemoteOptions
  include Gem::InstallUpdateOptions

  def initialize
    defaults = Gem::DependencyInstaller::DEFAULT_OPTIONS.merge({
      :format_executable => false,
      :lock              => true,
      :suggest_alternate => true,
      :version           => Gem::Requirement.default,
      :without_groups    => [],
    })

    super 'install', 'Install a gem into the local repository', defaults

    add_install_update_options
    add_local_remote_options
    add_platform_option
    add_version_option
    add_prerelease_option "to be installed. (Only for listed gems)"

    @installed_specs = []
  end

  def arguments # :nodoc:
    "GEMNAME       name of gem to install"
  end

  def defaults_str # :nodoc:
    "--both --version '#{Gem::Requirement.default}' --document --no-force\n" +
    "--install-dir #{Gem.dir} --lock"
  end

  def description # :nodoc:
    <<-EOF
The install command installs local or remote gem into a gem repository.

For gems with executables ruby installs a wrapper file into the executable
directory by default.  This can be overridden with the --no-wrappers option.
The wrapper allows you to choose among alternate gem versions using _version_.

For example `rake _0.7.3_ --version` will run rake version 0.7.3 if a newer
version is also installed.

Gem Dependency Files
====================

RubyGems can install a consistent set of gems across multiple environments
using `gem install -g` when a gem dependencies file (gem.deps.rb, Gemfile or
Isolate) is present.  If no explicit file is given RubyGems attempts to find
one in the current directory.

When the RUBYGEMS_GEMDEPS environment variable is set to a gem dependencies
file the gems from that file will be activated at startup time.  Set it to a
specific filename or to "-" to have RubyGems automatically discover the gem
dependencies file by walking up from the current directory.

NOTE: Enabling automatic discovery on multiuser systems can lead to
execution of arbitrary code when used from directories outside your control.

Extension Install Failures
==========================

If an extension fails to compile during gem installation the gem
specification is not written out, but the gem remains unpacked in the
repository.  You may need to specify the path to the library's headers and
libraries to continue.  You can do this by adding a -- between RubyGems'
options and the extension's build options:

  $ gem install some_extension_gem
  [build fails]
  Gem files will remain installed in \\
  /path/to/gems/some_extension_gem-1.0 for inspection.
  Results logged to /path/to/gems/some_extension_gem-1.0/gem_make.out
  $ gem install some_extension_gem -- --with-extension-lib=/path/to/lib
  [build succeeds]
  $ gem list some_extension_gem

  *** LOCAL GEMS ***

  some_extension_gem (1.0)
  $

If you correct the compilation errors by editing the gem files you will need
to write the specification by hand.  For example:

  $ gem install some_extension_gem
  [build fails]
  Gem files will remain installed in \\
  /path/to/gems/some_extension_gem-1.0 for inspection.
  Results logged to /path/to/gems/some_extension_gem-1.0/gem_make.out
  $ [cd /path/to/gems/some_extension_gem-1.0]
  $ [edit files or what-have-you and run make]
  $ gem spec ../../cache/some_extension_gem-1.0.gem --ruby > \\
             ../../specifications/some_extension_gem-1.0.gemspec
  $ gem list some_extension_gem

  *** LOCAL GEMS ***

  some_extension_gem (1.0)
  $

Command Alias
==========================

You can use `i` command instead of `install`.

  $ gem i GEMNAME

    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMNAME [GEMNAME ...] [options] -- --build-flags"
  end

  def check_install_dir # :nodoc:
    if options[:install_dir] and options[:user_install]
      alert_error "Use --install-dir or --user-install but not both"
      terminate_interaction 1
    end
  end

  def check_version # :nodoc:
    if options[:version] != Gem::Requirement.default and
         get_all_gem_names.size > 1
      alert_error "Can't use --version with multiple gems. You can specify multiple gems with" \
                  " version requirements using `gem install 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'`"
      terminate_interaction 1
    end
  end

  def execute
    if options.include? :gemdeps
      install_from_gemdeps
      return # not reached
    end

    @installed_specs = []

    ENV.delete 'GEM_PATH' if options[:install_dir].nil?

    check_install_dir
    check_version

    load_hooks

    exit_code = install_gems

    show_installed

    terminate_interaction exit_code
  end

  def install_from_gemdeps # :nodoc:
    require 'rubygems/request_set'
    rs = Gem::RequestSet.new

    specs = rs.install_from_gemdeps options do |req, inst|
      s = req.full_spec

      if inst
        say "Installing #{s.name} (#{s.version})"
      else
        say "Using #{s.name} (#{s.version})"
      end
    end

    @installed_specs = specs

    terminate_interaction
  end

  def install_gem(name, version) # :nodoc:
    return if options[:conservative] and
      not Gem::Dependency.new(name, version).matching_specs.empty?

    req = Gem::Requirement.create(version)

    dinst = Gem::DependencyInstaller.new options

    request_set = dinst.resolve_dependencies name, req

    if options[:explain]
      say "Gems to install:"

      request_set.sorted_requests.each do |activation_request|
        say "  #{activation_request.full_name}"
      end
    else
      @installed_specs.concat request_set.install options
    end

    show_install_errors dinst.errors
  end

  def install_gems # :nodoc:
    exit_code = 0

    get_all_gem_names_and_versions.each do |gem_name, gem_version|
      gem_version ||= options[:version]
      domain = options[:domain]
      domain = :local unless options[:suggest_alternate]
      supress_suggestions = (domain == :local)

      begin
        install_gem gem_name, gem_version
      rescue Gem::InstallError => e
        alert_error "Error installing #{gem_name}:\n\t#{e.message}"
        exit_code |= 1
      rescue Gem::GemNotFoundException => e
        show_lookup_failure e.name, e.version, e.errors, supress_suggestions

        exit_code |= 2
      rescue Gem::UnsatisfiableDependencyError => e
        show_lookup_failure e.name, e.version, e.errors, supress_suggestions,
                            "'#{gem_name}' (#{gem_version})"

        exit_code |= 2
      end
    end

    exit_code
  end

  ##
  # Loads post-install hooks

  def load_hooks # :nodoc:
    if options[:install_as_default]
      require 'rubygems/install_default_message'
    else
      require 'rubygems/install_message'
    end
    require 'rubygems/rdoc'
  end

  def show_install_errors(errors) # :nodoc:
    return unless errors

    errors.each do |x|
      return unless Gem::SourceFetchProblem === x

      msg = "Unable to pull data from '#{x.source.uri}': #{x.error.message}"

      alert_warning msg
    end
  end

  def show_installed # :nodoc:
    return if @installed_specs.empty?

    gems = @installed_specs.length == 1 ? 'gem' : 'gems'
    say "#{@installed_specs.length} #{gems} installed"
  end

end
PK8H[Q����1share/rubygems/rubygems/commands/stale_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

class Gem::Commands::StaleCommand < Gem::Command

  def initialize
    super('stale', 'List gems along with access times')
  end

  def description # :nodoc:
    <<-EOF
The stale command lists the latest access time for all the files in your
installed gems.

You can use this command to discover gems and gem versions you are no
longer using.
    EOF
  end

  def usage # :nodoc:
    "#{program_name}"
  end

  def execute
    gem_to_atime = {}
    Gem::Specification.each do |spec|
      name = spec.full_name
      Dir["#{spec.full_gem_path}/**/*.*"].each do |file|
        next if File.directory?(file)
        stat = File.stat(file)
        gem_to_atime[name] ||= stat.atime
        gem_to_atime[name] = stat.atime if gem_to_atime[name] < stat.atime
      end
    end

    gem_to_atime.sort_by { |_, atime| atime }.each do |name, atime|
      say "#{name} at #{atime.strftime '%c'}"
    end
  end

end
PK8H[��$�
�
1share/rubygems/rubygems/commands/build_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/package'

class Gem::Commands::BuildCommand < Gem::Command

  def initialize
    super 'build', 'Build a gem from a gemspec'

    add_option '--force', 'skip validation of the spec' do |value, options|
      options[:force] = true
    end

    add_option '--strict', 'consider warnings as errors when validating the spec' do |value, options|
      options[:strict] = true
    end

    add_option '-o', '--output FILE', 'output gem with the given filename' do |value, options|
      options[:output] = value
    end

    add_option '-C PATH', '', 'Run as if gem build was started in <PATH> instead of the current working directory.' do |value, options|
      options[:build_path] = value
    end
  end

  def arguments # :nodoc:
    "GEMSPEC_FILE  gemspec file name to build a gem for"
  end

  def description # :nodoc:
    <<-EOF
The build command allows you to create a gem from a ruby gemspec.

The best way to build a gem is to use a Rakefile and the Gem::PackageTask
which ships with RubyGems.

The gemspec can either be created by hand or extracted from an existing gem
with gem spec:

  $ gem unpack my_gem-1.0.gem
  Unpacked gem: '.../my_gem-1.0'
  $ gem spec my_gem-1.0.gem --ruby > my_gem-1.0/my_gem-1.0.gemspec
  $ cd my_gem-1.0
  [edit gem contents]
  $ gem build my_gem-1.0.gemspec

Gems can be saved to a specified filename with the output option:

  $ gem build my_gem-1.0.gemspec --output=release.gem

    EOF
  end

  def usage # :nodoc:
    "#{program_name} GEMSPEC_FILE"
  end

  def execute
    gem_name = get_one_optional_argument || find_gemspec
    build_gem(gem_name)
  end

  private

  def find_gemspec
    gemspecs = Dir.glob("*.gemspec").sort

    if gemspecs.size > 1
      alert_error "Multiple gemspecs found: #{gemspecs}, please specify one"
      terminate_interaction(1)
    end

    gemspecs.first
  end

  def build_gem(gem_name)
    gemspec = File.exist?(gem_name) ? gem_name : "#{gem_name}.gemspec"

    if File.exist?(gemspec)
      spec = Gem::Specification.load(gemspec)

      if options[:build_path]
        Dir.chdir(File.dirname(gemspec)) do
          spec = Gem::Specification.load(File.basename(gemspec))
          build_package(spec)
        end
      else
        build_package(spec)
      end

    else
      alert_error "Gemspec file not found: #{gemspec}"
      terminate_interaction(1)
    end
  end

  def build_package(spec)
    if spec
      Gem::Package.build(
        spec,
        options[:force],
        options[:strict],
        options[:output]
      )
    else
      alert_error "Error loading gemspec. Aborting."
      terminate_interaction 1
    end
  end

end
PK8H[�����	�	0share/rubygems/rubygems/commands/rdoc_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'
require 'rubygems/version_option'
require 'rubygems/rdoc'
require 'fileutils'

class Gem::Commands::RdocCommand < Gem::Command

  include Gem::VersionOption

  def initialize
    super 'rdoc', 'Generates RDoc for pre-installed gems',
          :version => Gem::Requirement.default,
          :include_rdoc => false, :include_ri => true, :overwrite => false

    add_option('--all',
               'Generate RDoc/RI documentation for all',
               'installed gems') do |value, options|
      options[:all] = value
    end

    add_option('--[no-]rdoc',
               'Generate RDoc HTML') do |value, options|
      options[:include_rdoc] = value
    end

    add_option('--[no-]ri',
               'Generate RI data') do |value, options|
      options[:include_ri] = value
    end

    add_option('--[no-]overwrite',
               'Overwrite installed documents') do |value, options|
      options[:overwrite] = value
    end

    add_version_option
  end

  def arguments # :nodoc:
    "GEMNAME       gem to generate documentation for (unless --all)"
  end

  def defaults_str # :nodoc:
    "--version '#{Gem::Requirement.default}' --ri --no-overwrite"
  end

  def description # :nodoc:
    <<-DESC
The rdoc command builds documentation for installed gems.  By default
only documentation is built using rdoc, but additional types of
documentation may be built through rubygems plugins and the
Gem.post_installs hook.

Use --overwrite to force rebuilding of documentation.
    DESC
  end

  def usage # :nodoc:
    "#{program_name} [args]"
  end

  def execute
    specs = if options[:all]
              Gem::Specification.to_a
            else
              get_all_gem_names.map do |name|
                Gem::Specification.find_by_name name, options[:version]
              end.flatten.uniq
            end

    if specs.empty?
      alert_error 'No matching gems found'
      terminate_interaction 1
    end

    specs.each do |spec|
      doc = Gem::RDoc.new spec, options[:include_rdoc], options[:include_ri]

      doc.force = options[:overwrite]

      if options[:overwrite]
        FileUtils.rm_rf File.join(spec.doc_dir, 'ri')
        FileUtils.rm_rf File.join(spec.doc_dir, 'rdoc')
      end

      begin
        doc.generate
      rescue Errno::ENOENT => e
        e.message =~ / - /
        alert_error "Unable to document #{spec.full_name}, #{$'} is missing, skipping"
        terminate_interaction 1 if specs.length == 1
      end
    end
  end

end
PK8H[X��3qq2share/rubygems/rubygems/commands/mirror_command.rbnu�[���# frozen_string_literal: true
require 'rubygems/command'

unless defined? Gem::Commands::MirrorCommand
  class Gem::Commands::MirrorCommand < Gem::Command

    def initialize
      super('mirror', 'Mirror all gem files (requires rubygems-mirror)')
      begin
        Gem::Specification.find_by_name('rubygems-mirror').activate
      rescue Gem::LoadError
        # no-op
      end
    end

    def description # :nodoc:
      <<-EOF
The mirror command has been moved to the rubygems-mirror gem.
      EOF
    end

    def execute
      alert_error "Install the rubygems-mirror gem for the mirror command"
    end

  end
end
PK8H[��^#^#)share/rubygems/rubygems/test_utilities.rbnu�[���# frozen_string_literal: true
require 'tempfile'
require 'rubygems'
require 'rubygems/remote_fetcher'

##
# A fake Gem::RemoteFetcher for use in tests or to avoid real live HTTP
# requests when testing code that uses RubyGems.
#
# Example:
#
#   @fetcher = Gem::FakeFetcher.new
#   @fetcher.data['http://gems.example.com/yaml'] = source_index.to_yaml
#   Gem::RemoteFetcher.fetcher = @fetcher
#
#   use nested array if multiple response is needed
#
#   @fetcher.data['http://gems.example.com/sequence'] = [['Success', 200, 'OK'], ['Failed', 401, 'Unauthorized']]
#
#   @fetcher.fetch_path('http://gems.example.com/sequence') # => ['Success', 200, 'OK']
#   @fetcher.fetch_path('http://gems.example.com/sequence') # => ['Failed', 401, 'Unauthorized']
#
#   # invoke RubyGems code
#
#   paths = @fetcher.paths
#   assert_equal 'http://gems.example.com/yaml', paths.shift
#   assert paths.empty?, paths.join(', ')
#
# See RubyGems' tests for more examples of FakeFetcher.

class Gem::FakeFetcher

  attr_reader :data
  attr_reader :last_request
  attr_accessor :paths

  def initialize
    @data = {}
    @paths = []
  end

  def find_data(path, nargs = 3)
    return File.read path.path if URI === path and 'file' == path.scheme

    if URI === path and "URI::#{path.scheme.upcase}" != path.class.name
      raise ArgumentError,
        "mismatch for scheme #{path.scheme} and class #{path.class}"
    end

    path = path.to_s
    @paths << path
    raise ArgumentError, 'need full URI' unless path =~ %r'^https?://'

    unless @data.key? path
      raise Gem::RemoteFetcher::FetchError.new("no data for #{path}", path)
    end

    data = @data[path]

    data.flatten! and return data.shift(nargs) if data.respond_to?(:flatten!)
    data
  end

  def fetch_path(path, mtime = nil, head = false)
    data = find_data(path)

    if data.respond_to?(:call)
      data.call
    else
      if path.to_s =~ /gz$/ and not data.nil? and not data.empty?
        data = Gem::Util.gunzip data
      end
      data
    end
  end

  def cache_update_path(uri, path = nil, update = true)
    if data = fetch_path(uri)
      open(path, 'wb') { |io| io.write data } if path and update
      data
    else
      Gem.read_binary(path) if path
    end
  end

  # Thanks, FakeWeb!
  def open_uri_or_path(path)
    data = find_data(path)
    body, code, msg = data

    response = Net::HTTPResponse.send(:response_class, code.to_s).new("1.0", code.to_s, msg)
    response.instance_variable_set(:@body, body)
    response.instance_variable_set(:@read, true)
    response
  end

  def request(uri, request_class, last_modified = nil)
    data = find_data(uri)
    body, code, msg = (data.respond_to?(:call) ? data.call : data)

    @last_request = request_class.new uri.request_uri
    yield @last_request if block_given?

    response = Net::HTTPResponse.send(:response_class, code.to_s).new("1.0", code.to_s, msg)
    response.instance_variable_set(:@body, body)
    response.instance_variable_set(:@read, true)
    response
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[FakeFetcher', ']' do
      q.breakable
      q.text 'URIs:'

      q.breakable
      q.pp @data.keys
    end
  end

  def fetch_size(path)
    path = path.to_s
    @paths << path

    raise ArgumentError, 'need full URI' unless path =~ %r'^http://'

    unless @data.key? path
      raise Gem::RemoteFetcher::FetchError.new("no data for #{path}", path)
    end

    data = @data[path]

    data.respond_to?(:call) ? data.call : data.length
  end

  def download(spec, source_uri, install_dir = Gem.dir)
    name = File.basename spec.cache_file
    path = if Dir.pwd == install_dir  # see fetch_command
             install_dir
           else
             File.join install_dir, "cache"
           end

    path = File.join path, name

    if source_uri =~ /^http/
      File.open(path, "wb") do |f|
        f.write fetch_path(File.join(source_uri, "gems", name))
      end
    else
      FileUtils.cp source_uri, path
    end

    path
  end

  def download_to_cache(dependency)
    found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dependency

    return if found.empty?

    spec, source = found.first

    download spec, source.uri.to_s
  end

end

# :stopdoc:
class Gem::RemoteFetcher

  def self.fetcher=(fetcher)
    @fetcher = fetcher
  end

end
# :startdoc:

##
# The SpecFetcherSetup allows easy setup of a remote source in RubyGems tests:
#
#   spec_fetcher do |f|
#     f.gem  'a', 1
#     f.spec 'a', 2
#     f.gem  'b', 1' 'a' => '~> 1.0'
#   end
#
# The above declaration creates two gems, a-1 and b-1, with a dependency from
# b to a.  The declaration creates an additional spec a-2, but no gem for it
# (so it cannot be installed).
#
# After the gems are created they are removed from Gem.dir.

class Gem::TestCase::SpecFetcherSetup

  ##
  # Executes a SpecFetcher setup block.  Yields an instance then creates the
  # gems and specifications defined in the instance.

  def self.declare(test, repository)
    setup = new test, repository

    yield setup

    setup.execute
  end

  def initialize(test, repository) # :nodoc:
    @test       = test
    @repository = repository

    @gems       = {}
    @downloaded = []
    @installed  = []
    @operations = []
  end

  ##
  # Returns a Hash of created Specification full names and the corresponding
  # Specification.

  def created_specs
    created = {}

    @gems.keys.each do |spec|
      created[spec.full_name] = spec
    end

    created
  end

  ##
  # Creates any defined gems or specifications

  def execute # :nodoc:
    execute_operations

    setup_fetcher

    created_specs
  end

  def execute_operations # :nodoc:
    @operations.each do |operation, *arguments|
      block = arguments.pop
      case operation
      when :gem then
        spec, gem = @test.util_gem(*arguments, &block)

        write_spec spec

        @gems[spec] = gem
        @installed << spec
      when :download then
        spec, gem = @test.util_gem(*arguments, &block)

        @gems[spec] = gem
        @downloaded << spec
      when :spec then
        spec = @test.util_spec(*arguments, &block)

        write_spec spec

        @gems[spec] = nil
        @installed << spec
      end
    end
  end

  ##
  # Creates a gem with +name+, +version+ and +deps+.  The created gem can be
  # downloaded and installed.
  #
  # The specification will be yielded before gem creation for customization,
  # but only the block or the dependencies may be set, not both.

  def gem(name, version, dependencies = nil, &block)
    @operations << [:gem, name, version, dependencies, block]
  end

  ##
  # Creates a gem with +name+, +version+ and +deps+.  The created gem is
  # downloaded in to the cache directory but is not installed
  #
  # The specification will be yielded before gem creation for customization,
  # but only the block or the dependencies may be set, not both.

  def download(name, version, dependencies = nil, &block)
    @operations << [:download, name, version, dependencies, block]
  end

  ##
  # Creates a legacy platform spec with the name 'pl' and version 1

  def legacy_platform
    spec 'pl', 1 do |s|
      s.platform = Gem::Platform.new 'i386-linux'
      s.instance_variable_set :@original_platform, 'i386-linux'
    end
  end

  def setup_fetcher # :nodoc:
    require 'zlib'
    require 'socket'
    require 'rubygems/remote_fetcher'

    unless @test.fetcher
      @test.fetcher = Gem::FakeFetcher.new
      Gem::RemoteFetcher.fetcher = @test.fetcher
    end

    Gem::Specification.reset

    begin
      gem_repo, @test.gem_repo = @test.gem_repo, @repository
      @test.uri = URI @repository

      @test.util_setup_spec_fetcher(*@downloaded)
    ensure
      @test.gem_repo = gem_repo
      @test.uri = URI gem_repo
    end

    @gems.each do |spec, gem|
      next unless gem

      @test.fetcher.data["#{@repository}gems/#{spec.file_name}"] =
        Gem.read_binary(gem)

      FileUtils.cp gem, spec.cache_file
    end
  end

  ##
  # Creates a spec with +name+, +version+ and +deps+.  The created gem can be
  # downloaded and installed.
  #
  # The specification will be yielded before creation for customization,
  # but only the block or the dependencies may be set, not both.

  def spec(name, version, dependencies = nil, &block)
    @operations << [:spec, name, version, dependencies, block]
  end

  def write_spec(spec) # :nodoc:
    File.open spec.spec_file, 'w' do |io|
      io.write spec.to_ruby_for_cache
    end
  end

end

##
# A StringIO duck-typed class that uses Tempfile instead of String as the
# backing store.
#
# This is available when rubygems/test_utilities is required.
#--
# This class was added to flush out problems in Rubinius' IO implementation.

class TempIO < Tempfile

  ##
  # Creates a new TempIO that will be initialized to contain +string+.

  def initialize(string = '')
    super "TempIO"
    binmode
    write string
    rewind
  end

  ##
  # The content of the TempIO as a String.

  def string
    flush
    Gem.read_binary path
  end

end
PK8H[�Q�?PP2share/rubygems/rubygems/install_default_message.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/user_interaction'

##
# A post-install hook that displays "Successfully installed
# some_gem-1.0 as a default gem"

Gem.post_install do |installer|
  ui = Gem::DefaultUserInteraction.ui
  ui.say "Successfully installed #{installer.spec.full_name} as a default gem"
end
PK8H[.[���&share/rubygems/rubygems/requirement.rbnu�[���# frozen_string_literal: true
require "rubygems/version"
require "rubygems/deprecate"

##
# A Requirement is a set of one or more version restrictions. It supports a
# few (<tt>=, !=, >, <, >=, <=, ~></tt>) different restriction operators.
#
# See Gem::Version for a description on how versions and requirements work
# together in RubyGems.

class Gem::Requirement

  OPS = { #:nodoc:
    "="  =>  lambda { |v, r| v == r },
    "!=" =>  lambda { |v, r| v != r },
    ">"  =>  lambda { |v, r| v >  r },
    "<"  =>  lambda { |v, r| v <  r },
    ">=" =>  lambda { |v, r| v >= r },
    "<=" =>  lambda { |v, r| v <= r },
    "~>" =>  lambda { |v, r| v >= r && v.release < r.bump }
  }.freeze

  SOURCE_SET_REQUIREMENT = Struct.new(:for_lockfile).new "!" # :nodoc:

  quoted = OPS.keys.map { |k| Regexp.quote k }.join "|"
  PATTERN_RAW = "\\s*(#{quoted})?\\s*(#{Gem::Version::VERSION_PATTERN})\\s*".freeze # :nodoc:

  ##
  # A regular expression that matches a requirement

  PATTERN = /\A#{PATTERN_RAW}\z/.freeze

  ##
  # The default requirement matches any non-prerelease version

  DefaultRequirement = [">=", Gem::Version.new(0)].freeze

  ##
  # The default requirement matches any version

  DefaultPrereleaseRequirement = [">=", Gem::Version.new("0.a")].freeze

  ##
  # Raised when a bad requirement is encountered

  class BadRequirementError < ArgumentError; end

  ##
  # Factory method to create a Gem::Requirement object.  Input may be
  # a Version, a String, or nil.  Intended to simplify client code.
  #
  # If the input is "weird", the default version requirement is
  # returned.

  def self.create(*inputs)
    return new inputs if inputs.length > 1

    input = inputs.shift

    case input
    when Gem::Requirement then
      input
    when Gem::Version, Array then
      new input
    when '!' then
      source_set
    else
      if input.respond_to? :to_str
        new [input.to_str]
      else
        default
      end
    end
  end

  def self.default
    new '>= 0'
  end

  def self.default_prerelease
    new '>= 0.a'
  end

  ###
  # A source set requirement, used for Gemfiles and lockfiles

  def self.source_set # :nodoc:
    SOURCE_SET_REQUIREMENT
  end

  ##
  # Parse +obj+, returning an <tt>[op, version]</tt> pair. +obj+ can
  # be a String or a Gem::Version.
  #
  # If +obj+ is a String, it can be either a full requirement
  # specification, like <tt>">= 1.2"</tt>, or a simple version number,
  # like <tt>"1.2"</tt>.
  #
  #     parse("> 1.0")                 # => [">", Gem::Version.new("1.0")]
  #     parse("1.0")                   # => ["=", Gem::Version.new("1.0")]
  #     parse(Gem::Version.new("1.0")) # => ["=,  Gem::Version.new("1.0")]

  def self.parse(obj)
    return ["=", obj] if Gem::Version === obj

    unless PATTERN =~ obj.to_s
      raise BadRequirementError, "Illformed requirement [#{obj.inspect}]"
    end

    if $1 == ">=" && $2 == "0"
      DefaultRequirement
    elsif $1 == ">=" && $2 == "0.a"
      DefaultPrereleaseRequirement
    else
      [$1 || "=", Gem::Version.new($2)]
    end
  end

  ##
  # An array of requirement pairs. The first element of the pair is
  # the op, and the second is the Gem::Version.

  attr_reader :requirements #:nodoc:

  ##
  # Constructs a requirement from +requirements+. Requirements can be
  # Strings, Gem::Versions, or Arrays of those. +nil+ and duplicate
  # requirements are ignored. An empty set of +requirements+ is the
  # same as <tt>">= 0"</tt>.

  def initialize(*requirements)
    requirements = requirements.flatten
    requirements.compact!
    requirements.uniq!

    if requirements.empty?
      @requirements = [DefaultRequirement]
    else
      @requirements = requirements.map! { |r| self.class.parse r }
    end
  end

  ##
  # Concatenates the +new+ requirements onto this requirement.

  def concat(new)
    new = new.flatten
    new.compact!
    new.uniq!
    new = new.map { |r| self.class.parse r }

    @requirements.concat new
  end

  ##
  # Formats this requirement for use in a Gem::RequestSet::Lockfile.

  def for_lockfile # :nodoc:
    return if [DefaultRequirement] == @requirements

    list = requirements.sort_by do |_, version|
      version
    end.map do |op, version|
      "#{op} #{version}"
    end.uniq

    " (#{list.join ', '})"
  end

  ##
  # true if this gem has no requirements.

  def none?
    if @requirements.size == 1
      @requirements[0] == DefaultRequirement
    else
      false
    end
  end

  ##
  # true if the requirement is for only an exact version

  def exact?
    return false unless @requirements.size == 1
    @requirements[0][0] == "="
  end

  def as_list # :nodoc:
    requirements.map { |op, version| "#{op} #{version}" }
  end

  def hash # :nodoc:
    requirements.sort.hash
  end

  def marshal_dump # :nodoc:
    fix_syck_default_key_in_requirements

    [@requirements]
  end

  def marshal_load(array) # :nodoc:
    @requirements = array[0]

    fix_syck_default_key_in_requirements
  end

  def yaml_initialize(tag, vals) # :nodoc:
    vals.each do |ivar, val|
      instance_variable_set "@#{ivar}", val
    end

    Gem.load_yaml
    fix_syck_default_key_in_requirements
  end

  def init_with(coder) # :nodoc:
    yaml_initialize coder.tag, coder.map
  end

  def to_yaml_properties # :nodoc:
    ["@requirements"]
  end

  def encode_with(coder) # :nodoc:
    coder.add 'requirements', @requirements
  end

  ##
  # A requirement is a prerelease if any of the versions inside of it
  # are prereleases

  def prerelease?
    requirements.any? { |r| r.last.prerelease? }
  end

  def pretty_print(q) # :nodoc:
    q.group 1, 'Gem::Requirement.new(', ')' do
      q.pp as_list
    end
  end

  ##
  # True if +version+ satisfies this Requirement.

  def satisfied_by?(version)
    raise ArgumentError, "Need a Gem::Version: #{version.inspect}" unless
      Gem::Version === version
    # #28965: syck has a bug with unquoted '=' YAML.loading as YAML::DefaultKey
    requirements.all? { |op, rv| (OPS[op] || OPS["="]).call version, rv }
  end

  alias :=== :satisfied_by?
  alias :=~ :satisfied_by?

  ##
  # True if the requirement will not always match the latest version.

  def specific?
    return true if @requirements.length > 1 # GIGO, > 1, > 2 is silly

    not %w[> >=].include? @requirements.first.first # grab the operator
  end

  def to_s # :nodoc:
    as_list.join ", "
  end

  def ==(other) # :nodoc:
    return unless Gem::Requirement === other

    # An == check is always necessary
    return false unless requirements == other.requirements

    # An == check is sufficient unless any requirements use ~>
    return true unless _tilde_requirements.any?

    # If any requirements use ~> we use the stricter `#eql?` that also checks
    # that version precision is the same
    _tilde_requirements.eql?(other._tilde_requirements)
  end

  protected

  def _tilde_requirements
    requirements.select { |r| r.first == "~>" }
  end

  private

  def fix_syck_default_key_in_requirements # :nodoc:
    Gem.load_yaml

    # Fixup the Syck DefaultKey bug
    @requirements.each do |r|
      if r[0].kind_of? Gem::SyckDefaultKey
        r[0] = "="
      end
    end
  end

end

class Gem::Version

  # This is needed for compatibility with older yaml
  # gemspecs.

  Requirement = Gem::Requirement # :nodoc:

end
PK8H[�V��KK$share/rubygems/rubygems/util/list.rbnu�[���# frozen_string_literal: true
module Gem
  class List

    include Enumerable
    attr_accessor :value, :tail

    def initialize(value = nil, tail = nil)
      @value = value
      @tail = tail
    end

    def each
      n = self
      while n
        yield n.value
        n = n.tail
      end
    end

    def to_a
      super.reverse
    end

    def prepend(value)
      List.new value, self
    end

    def pretty_print(q) # :nodoc:
      q.pp to_a
    end

    def self.prepend(list, value)
      return List.new(value) unless list
      List.new value, list
    end

  end
end
PK8H[`�A���(share/rubygems/rubygems/util/licenses.rbnu�[���# frozen_string_literal: true
require 'rubygems/text'

class Gem::Licenses

  extend Gem::Text

  NONSTANDARD = 'Nonstandard'.freeze

  # Software Package Data Exchange (SPDX) standard open-source software
  # license identifiers
  LICENSE_IDENTIFIERS = %w(
    0BSD
    AAL
    ADSL
    AFL-1.1
    AFL-1.2
    AFL-2.0
    AFL-2.1
    AFL-3.0
    AGPL-1.0
    AGPL-3.0
    AGPL-3.0-only
    AGPL-3.0-or-later
    AMDPLPA
    AML
    AMPAS
    ANTLR-PD
    APAFML
    APL-1.0
    APSL-1.0
    APSL-1.1
    APSL-1.2
    APSL-2.0
    Abstyles
    Adobe-2006
    Adobe-Glyph
    Afmparse
    Aladdin
    Apache-1.0
    Apache-1.1
    Apache-2.0
    Artistic-1.0
    Artistic-1.0-Perl
    Artistic-1.0-cl8
    Artistic-2.0
    BSD-1-Clause
    BSD-2-Clause
    BSD-2-Clause-FreeBSD
    BSD-2-Clause-NetBSD
    BSD-2-Clause-Patent
    BSD-3-Clause
    BSD-3-Clause-Attribution
    BSD-3-Clause-Clear
    BSD-3-Clause-LBNL
    BSD-3-Clause-No-Nuclear-License
    BSD-3-Clause-No-Nuclear-License-2014
    BSD-3-Clause-No-Nuclear-Warranty
    BSD-4-Clause
    BSD-4-Clause-UC
    BSD-Protection
    BSD-Source-Code
    BSL-1.0
    Bahyph
    Barr
    Beerware
    BitTorrent-1.0
    BitTorrent-1.1
    Borceux
    CATOSL-1.1
    CC-BY-1.0
    CC-BY-2.0
    CC-BY-2.5
    CC-BY-3.0
    CC-BY-4.0
    CC-BY-NC-1.0
    CC-BY-NC-2.0
    CC-BY-NC-2.5
    CC-BY-NC-3.0
    CC-BY-NC-4.0
    CC-BY-NC-ND-1.0
    CC-BY-NC-ND-2.0
    CC-BY-NC-ND-2.5
    CC-BY-NC-ND-3.0
    CC-BY-NC-ND-4.0
    CC-BY-NC-SA-1.0
    CC-BY-NC-SA-2.0
    CC-BY-NC-SA-2.5
    CC-BY-NC-SA-3.0
    CC-BY-NC-SA-4.0
    CC-BY-ND-1.0
    CC-BY-ND-2.0
    CC-BY-ND-2.5
    CC-BY-ND-3.0
    CC-BY-ND-4.0
    CC-BY-SA-1.0
    CC-BY-SA-2.0
    CC-BY-SA-2.5
    CC-BY-SA-3.0
    CC-BY-SA-4.0
    CC0-1.0
    CDDL-1.0
    CDDL-1.1
    CDLA-Permissive-1.0
    CDLA-Sharing-1.0
    CECILL-1.0
    CECILL-1.1
    CECILL-2.0
    CECILL-2.1
    CECILL-B
    CECILL-C
    CNRI-Jython
    CNRI-Python
    CNRI-Python-GPL-Compatible
    CPAL-1.0
    CPL-1.0
    CPOL-1.02
    CUA-OPL-1.0
    Caldera
    ClArtistic
    Condor-1.1
    Crossword
    CrystalStacker
    Cube
    D-FSL-1.0
    DOC
    DSDP
    Dotseqn
    ECL-1.0
    ECL-2.0
    EFL-1.0
    EFL-2.0
    EPL-1.0
    EPL-2.0
    EUDatagrid
    EUPL-1.0
    EUPL-1.1
    EUPL-1.2
    Entessa
    ErlPL-1.1
    Eurosym
    FSFAP
    FSFUL
    FSFULLR
    FTL
    Fair
    Frameworx-1.0
    FreeImage
    GFDL-1.1
    GFDL-1.1-only
    GFDL-1.1-or-later
    GFDL-1.2
    GFDL-1.2-only
    GFDL-1.2-or-later
    GFDL-1.3
    GFDL-1.3-only
    GFDL-1.3-or-later
    GL2PS
    GPL-1.0
    GPL-1.0+
    GPL-1.0-only
    GPL-1.0-or-later
    GPL-2.0
    GPL-2.0+
    GPL-2.0-only
    GPL-2.0-or-later
    GPL-2.0-with-GCC-exception
    GPL-2.0-with-autoconf-exception
    GPL-2.0-with-bison-exception
    GPL-2.0-with-classpath-exception
    GPL-2.0-with-font-exception
    GPL-3.0
    GPL-3.0+
    GPL-3.0-only
    GPL-3.0-or-later
    GPL-3.0-with-GCC-exception
    GPL-3.0-with-autoconf-exception
    Giftware
    Glide
    Glulxe
    HPND
    HaskellReport
    IBM-pibs
    ICU
    IJG
    IPA
    IPL-1.0
    ISC
    ImageMagick
    Imlib2
    Info-ZIP
    Intel
    Intel-ACPI
    Interbase-1.0
    JSON
    JasPer-2.0
    LAL-1.2
    LAL-1.3
    LGPL-2.0
    LGPL-2.0+
    LGPL-2.0-only
    LGPL-2.0-or-later
    LGPL-2.1
    LGPL-2.1+
    LGPL-2.1-only
    LGPL-2.1-or-later
    LGPL-3.0
    LGPL-3.0+
    LGPL-3.0-only
    LGPL-3.0-or-later
    LGPLLR
    LPL-1.0
    LPL-1.02
    LPPL-1.0
    LPPL-1.1
    LPPL-1.2
    LPPL-1.3a
    LPPL-1.3c
    Latex2e
    Leptonica
    LiLiQ-P-1.1
    LiLiQ-R-1.1
    LiLiQ-Rplus-1.1
    Libpng
    MIT
    MIT-CMU
    MIT-advertising
    MIT-enna
    MIT-feh
    MITNFA
    MPL-1.0
    MPL-1.1
    MPL-2.0
    MPL-2.0-no-copyleft-exception
    MS-PL
    MS-RL
    MTLL
    MakeIndex
    MirOS
    Motosoto
    Multics
    Mup
    NASA-1.3
    NBPL-1.0
    NCSA
    NGPL
    NLOD-1.0
    NLPL
    NOSL
    NPL-1.0
    NPL-1.1
    NPOSL-3.0
    NRL
    NTP
    Naumen
    Net-SNMP
    NetCDF
    Newsletr
    Nokia
    Noweb
    Nunit
    OCCT-PL
    OCLC-2.0
    ODbL-1.0
    OFL-1.0
    OFL-1.1
    OGTSL
    OLDAP-1.1
    OLDAP-1.2
    OLDAP-1.3
    OLDAP-1.4
    OLDAP-2.0
    OLDAP-2.0.1
    OLDAP-2.1
    OLDAP-2.2
    OLDAP-2.2.1
    OLDAP-2.2.2
    OLDAP-2.3
    OLDAP-2.4
    OLDAP-2.5
    OLDAP-2.6
    OLDAP-2.7
    OLDAP-2.8
    OML
    OPL-1.0
    OSET-PL-2.1
    OSL-1.0
    OSL-1.1
    OSL-2.0
    OSL-2.1
    OSL-3.0
    OpenSSL
    PDDL-1.0
    PHP-3.0
    PHP-3.01
    Plexus
    PostgreSQL
    Python-2.0
    QPL-1.0
    Qhull
    RHeCos-1.1
    RPL-1.1
    RPL-1.5
    RPSL-1.0
    RSA-MD
    RSCPL
    Rdisc
    Ruby
    SAX-PD
    SCEA
    SGI-B-1.0
    SGI-B-1.1
    SGI-B-2.0
    SISSL
    SISSL-1.2
    SMLNJ
    SMPPL
    SNIA
    SPL-1.0
    SWL
    Saxpath
    Sendmail
    SimPL-2.0
    Sleepycat
    Spencer-86
    Spencer-94
    Spencer-99
    StandardML-NJ
    SugarCRM-1.1.3
    TCL
    TCP-wrappers
    TMate
    TORQUE-1.1
    TOSL
    UPL-1.0
    Unicode-DFS-2015
    Unicode-DFS-2016
    Unicode-TOU
    Unlicense
    VOSTROM
    VSL-1.0
    Vim
    W3C
    W3C-19980720
    W3C-20150513
    WTFPL
    Watcom-1.0
    Wsuipa
    X11
    XFree86-1.1
    XSkat
    Xerox
    Xnet
    YPL-1.0
    YPL-1.1
    ZPL-1.1
    ZPL-2.0
    ZPL-2.1
    Zed
    Zend-2.0
    Zimbra-1.3
    Zimbra-1.4
    Zlib
    bzip2-1.0.5
    bzip2-1.0.6
    curl
    diffmark
    dvipdfm
    eCos-2.0
    eGenix
    gSOAP-1.3b
    gnuplot
    iMatix
    libtiff
    mpich2
    psfrag
    psutils
    wxWindows
    xinetd
    xpp
    zlib-acknowledgement
  ).freeze

  # exception identifiers
  EXCEPTION_IDENTIFIERS = %w(
    389-exception
    Autoconf-exception-2.0
    Autoconf-exception-3.0
    Bison-exception-2.2
    Bootloader-exception
    CLISP-exception-2.0
    Classpath-exception-2.0
    DigiRule-FOSS-exception
    FLTK-exception
    Fawkes-Runtime-exception
    Font-exception-2.0
    GCC-exception-2.0
    GCC-exception-3.1
    LZMA-exception
    Libtool-exception
    Linux-syscall-note
    Nokia-Qt-exception-1.1
    OCCT-exception-1.0
    Qwt-exception-1.0
    WxWindows-exception-3.1
    eCos-exception-2.0
    freertos-exception-2.0
    gnu-javamail-exception
    i2p-gpl-java-exception
    mif-exception
    openvpn-openssl-exception
    u-boot-exception-2.0
  ).freeze

  REGEXP = %r{
    \A
    (
      #{Regexp.union(LICENSE_IDENTIFIERS)}
      \+?
      (\s WITH \s #{Regexp.union(EXCEPTION_IDENTIFIERS)})?
      | #{NONSTANDARD}
    )
    \Z
  }ox.freeze

  def self.match?(license)
    !REGEXP.match(license).nil?
  end

  def self.suggestions(license)
    by_distance = LICENSE_IDENTIFIERS.group_by do |identifier|
      levenshtein_distance(identifier, license)
    end
    lowest = by_distance.keys.min
    return unless lowest < license.size
    by_distance[lowest]
  end

end
PK8H[��+�share/rubygems/rubygems/rdoc.rbnu�[���# frozen_string_literal: true
require 'rubygems'

begin
  gem 'rdoc'
rescue Gem::LoadError
  # swallow
else
  # This will force any deps that 'rdoc' might have
  # (such as json) that are ambiguous to be activated, which
  # is important because we end up using Specification.reset
  # and we don't want the warning it pops out.
  Gem.finish_resolve
end

begin
  require 'rdoc/rubygems_hook'
  module Gem
    RDoc = ::RDoc::RubygemsHook
  end

  Gem.done_installing(&Gem::RDoc.method(:generation_hook))
rescue LoadError
end
PK8H[8�ʠffshare/rubygems/rubygems/text.rbnu�[���# frozen_string_literal: true

##
# A collection of text-wrangling methods

module Gem::Text

  ##
  # Remove any non-printable characters and make the text suitable for
  # printing.
  def clean_text(text)
    text.gsub(/[\000-\b\v-\f\016-\037\177]/, ".".freeze)
  end

  def truncate_text(text, description, max_length = 100_000)
    raise ArgumentError, "max_length must be positive" unless max_length > 0
    return text if text.size <= max_length
    "Truncating #{description} to #{max_length.to_s.reverse.gsub(/...(?=.)/,'\&,').reverse} characters:\n" + text[0, max_length]
  end

  ##
  # Wraps +text+ to +wrap+ characters and optionally indents by +indent+
  # characters

  def format_text(text, wrap, indent=0)
    result = []
    work = clean_text(text)

    while work.length > wrap do
      if work =~ /^(.{0,#{wrap}})[ \n]/
        result << $1.rstrip
        work.slice!(0, $&.length)
      else
        result << work.slice!(0, wrap)
      end
    end

    result << work if work.length.nonzero?
    result.join("\n").gsub(/^/, " " * indent)
  end

  def min3(a, b, c) # :nodoc:
    if a < b && a < c
      a
    elsif b < c
      b
    else
      c
    end
  end

  # This code is based directly on the Text gem implementation
  # Returns a value representing the "cost" of transforming str1 into str2
  def levenshtein_distance(str1, str2)
    s = str1
    t = str2
    n = s.length
    m = t.length

    return m if (0 == n)
    return n if (0 == m)

    d = (0..m).to_a
    x = nil

    str1.each_char.each_with_index do |char1,i|
      e = i + 1

      str2.each_char.each_with_index do |char2,j|
        cost = (char1 == char2) ? 0 : 1
        x = min3(
             d[j + 1] + 1, # insertion
             e + 1,      # deletion
             d[j] + cost # substitution
           )
        d[j] = e
        e = x
      end

      d[m] = x
    end

    return x
  end
end
PK8H[���x��.share/rubygems/rubygems/gemcutter_utilities.rbnu�[���# frozen_string_literal: true
require 'rubygems/remote_fetcher'
require 'rubygems/text'

##
# Utility methods for using the RubyGems API.

module Gem::GemcutterUtilities

  ERROR_CODE = 1

  include Gem::Text

  attr_writer :host

  ##
  # Add the --key option

  def add_key_option
    add_option('-k', '--key KEYNAME', Symbol,
               'Use the given API key',
               'from ~/.gem/credentials') do |value,options|
      options[:key] = value
    end
  end

  ##
  # Add the --otp option

  def add_otp_option
    add_option('--otp CODE',
               'Digit code for multifactor authentication') do |value, options|
      options[:otp] = value
    end
  end

  ##
  # The API key from the command options or from the user's configuration.

  def api_key
    if ENV["GEM_HOST_API_KEY"]
      ENV["GEM_HOST_API_KEY"]
    elsif options[:key]
      verify_api_key options[:key]
    elsif Gem.configuration.api_keys.key?(host)
      Gem.configuration.api_keys[host]
    else
      Gem.configuration.rubygems_api_key
    end
  end

  ##
  # The host to connect to either from the RUBYGEMS_HOST environment variable
  # or from the user's configuration

  def host
    configured_host = Gem.host unless
      Gem.configuration.disable_default_gem_server

    @host ||=
      begin
        env_rubygems_host = ENV['RUBYGEMS_HOST']
        env_rubygems_host = nil if
          env_rubygems_host and env_rubygems_host.empty?

        env_rubygems_host || configured_host
      end
  end

  ##
  # Creates an RubyGems API to +host+ and +path+ with the given HTTP +method+.
  #
  # If +allowed_push_host+ metadata is present, then it will only allow that host.

  def rubygems_api_request(method, path, host = nil, allowed_push_host = nil, &block)
    require 'net/http'

    self.host = host if host
    unless self.host
      alert_error "You must specify a gem server"
      terminate_interaction(ERROR_CODE)
    end

    if allowed_push_host
      allowed_host_uri = URI.parse(allowed_push_host)
      host_uri         = URI.parse(self.host)

      unless (host_uri.scheme == allowed_host_uri.scheme) && (host_uri.host == allowed_host_uri.host)
        alert_error "#{self.host.inspect} is not allowed by the gemspec, which only allows #{allowed_push_host.inspect}"
        terminate_interaction(ERROR_CODE)
      end
    end

    uri = URI.parse "#{self.host}/#{path}"

    request_method = Net::HTTP.const_get method.to_s.capitalize
    response = Gem::RemoteFetcher.fetcher.request(uri, request_method, &block)
    return response unless mfa_unauthorized?(response)

    Gem::RemoteFetcher.fetcher.request(uri, request_method) do |req|
      req.add_field "OTP", get_otp
      block.call(req)
    end
  end

  def mfa_unauthorized?(response)
    response.kind_of?(Net::HTTPUnauthorized) && response.body.start_with?('You have enabled multifactor authentication')
  end

  def get_otp
    say 'You have enabled multi-factor authentication. Please enter OTP code.'
    ask 'Code: '
  end

  ##
  # Signs in with the RubyGems API at +sign_in_host+ and sets the rubygems API
  # key.

  def sign_in(sign_in_host = nil)
    sign_in_host ||= self.host
    return if api_key

    pretty_host = if Gem::DEFAULT_HOST == sign_in_host
                    'RubyGems.org'
                  else
                    sign_in_host
                  end

    say "Enter your #{pretty_host} credentials."
    say "Don't have an account yet? " +
        "Create one at #{sign_in_host}/sign_up"

    email = ask "   Email: "
    password = ask_for_password "Password: "
    say "\n"

    response = rubygems_api_request(:get, "api/v1/api_key",
                                    sign_in_host) do |request|
      request.basic_auth email, password
      request.add_field "OTP", options[:otp] if options[:otp]
    end

    with_response response do |resp|
      say "Signed in."
      set_api_key host, resp.body
    end
  end

  ##
  # Retrieves the pre-configured API key +key+ or terminates interaction with
  # an error.

  def verify_api_key(key)
    if Gem.configuration.api_keys.key? key
      Gem.configuration.api_keys[key]
    else
      alert_error "No such API key. Please add it to your configuration (done automatically on initial `gem push`)."
      terminate_interaction(ERROR_CODE)
    end
  end

  ##
  # If +response+ is an HTTP Success (2XX) response, yields the response if a
  # block was given or shows the response body to the user.
  #
  # If the response was not successful, shows an error to the user including
  # the +error_prefix+ and the response body.

  def with_response(response, error_prefix = nil)
    case response
    when Net::HTTPSuccess then
      if block_given?
        yield response
      else
        say clean_text(response.body)
      end
    else
      message = response.body
      message = "#{error_prefix}: #{message}" if error_prefix

      say clean_text(message)
      terminate_interaction(ERROR_CODE)
    end
  end

  ##
  # Returns true when the user has enabled multifactor authentication from
  # +response+ text and no otp provided by options.

  def set_api_key(host, key)
    if host == Gem::DEFAULT_HOST
      Gem.configuration.rubygems_api_key = key
    else
      Gem.configuration.set_api_key host, key
    end
  end

end
PK8H[�a���%share/rubygems/rubygems/exceptions.rbnu�[���# frozen_string_literal: true

require 'rubygems/deprecate'

##
# Base exception class for RubyGems.  All exception raised by RubyGems are a
# subclass of this one.
class Gem::Exception < RuntimeError

  ##
  #--
  # TODO: remove in RubyGems 4, nobody sets this

  attr_accessor :source_exception # :nodoc:

  extend Gem::Deprecate
  deprecate :source_exception, :none, 2018, 12

end

class Gem::CommandLineError < Gem::Exception; end

class Gem::DependencyError < Gem::Exception; end

class Gem::DependencyRemovalException < Gem::Exception; end

##
# Raised by Gem::Resolver when a Gem::Dependency::Conflict reaches the
# toplevel.  Indicates which dependencies were incompatible through #conflict
# and #conflicting_dependencies

class Gem::DependencyResolutionError < Gem::DependencyError

  attr_reader :conflict

  def initialize(conflict)
    @conflict = conflict
    a, b = conflicting_dependencies

    super "conflicting dependencies #{a} and #{b}\n#{@conflict.explanation}"
  end

  def conflicting_dependencies
    @conflict.conflicting_dependencies
  end

end

##
# Raised when attempting to uninstall a gem that isn't in GEM_HOME.

class Gem::GemNotInHomeException < Gem::Exception

  attr_accessor :spec

end

###
# Raised when removing a gem with the uninstall command fails

class Gem::UninstallError < Gem::Exception

  attr_accessor :spec

end

class Gem::DocumentError < Gem::Exception; end

##
# Potentially raised when a specification is validated.
class Gem::EndOfYAMLException < Gem::Exception; end

##
# Signals that a file permission error is preventing the user from
# operating on the given directory.

class Gem::FilePermissionError < Gem::Exception

  attr_reader :directory

  def initialize(directory)
    @directory = directory

    super "You don't have write permissions for the #{directory} directory."
  end

end

##
# Used to raise parsing and loading errors
class Gem::FormatException < Gem::Exception

  attr_accessor :file_path

end

class Gem::GemNotFoundException < Gem::Exception; end

##
# Raised by the DependencyInstaller when a specific gem cannot be found

class Gem::SpecificGemNotFoundException < Gem::GemNotFoundException

  ##
  # Creates a new SpecificGemNotFoundException for a gem with the given +name+
  # and +version+.  Any +errors+ encountered when attempting to find the gem
  # are also stored.

  def initialize(name, version, errors=nil)
    super "Could not find a valid gem '#{name}' (#{version}) locally or in a repository"

    @name = name
    @version = version
    @errors = errors
  end

  ##
  # The name of the gem that could not be found.

  attr_reader :name

  ##
  # The version of the gem that could not be found.

  attr_reader :version

  ##
  # Errors encountered attempting to find the gem.

  attr_reader :errors

end

##
# Raised by Gem::Resolver when dependencies conflict and create the
# inability to find a valid possible spec for a request.

class Gem::ImpossibleDependenciesError < Gem::Exception

  attr_reader :conflicts
  attr_reader :request

  def initialize(request, conflicts)
    @request   = request
    @conflicts = conflicts

    super build_message
  end

  def build_message # :nodoc:
    requester  = @request.requester
    requester  = requester ? requester.spec.full_name : 'The user'
    dependency = @request.dependency

    message = "#{requester} requires #{dependency} but it conflicted:\n".dup

    @conflicts.each do |_, conflict|
      message << conflict.explanation
    end

    message
  end

  def dependency
    @request.dependency
  end

end

class Gem::InstallError < Gem::Exception; end
class Gem::RuntimeRequirementNotMetError < Gem::InstallError

  attr_accessor :suggestion
  def message
    [suggestion, super].compact.join("\n\t")
  end

end

##
# Potentially raised when a specification is validated.
class Gem::InvalidSpecificationException < Gem::Exception; end

class Gem::OperationNotSupportedError < Gem::Exception; end

##
# Signals that a remote operation cannot be conducted, probably due to not
# being connected (or just not finding host).
#--
# TODO: create a method that tests connection to the preferred gems server.
# All code dealing with remote operations will want this.  Failure in that
# method should raise this error.
class Gem::RemoteError < Gem::Exception; end

class Gem::RemoteInstallationCancelled < Gem::Exception; end

class Gem::RemoteInstallationSkipped < Gem::Exception; end

##
# Represents an error communicating via HTTP.
class Gem::RemoteSourceException < Gem::Exception; end

##
# Raised when a gem dependencies file specifies a ruby version that does not
# match the current version.

class Gem::RubyVersionMismatch < Gem::Exception; end

##
# Raised by Gem::Validator when something is not right in a gem.

class Gem::VerificationError < Gem::Exception; end

##
# Raised to indicate that a system exit should occur with the specified
# exit_code

class Gem::SystemExitException < SystemExit

  ##
  # The exit code for the process

  attr_accessor :exit_code

  ##
  # Creates a new SystemExitException with the given +exit_code+

  def initialize(exit_code)
    @exit_code = exit_code

    super "Exiting RubyGems with exit_code #{exit_code}"
  end

end

##
# Raised by Resolver when a dependency requests a gem for which
# there is no spec.

class Gem::UnsatisfiableDependencyError < Gem::DependencyError

  ##
  # The unsatisfiable dependency.  This is a
  # Gem::Resolver::DependencyRequest, not a Gem::Dependency

  attr_reader :dependency

  ##
  # Errors encountered which may have contributed to this exception

  attr_accessor :errors

  ##
  # Creates a new UnsatisfiableDependencyError for the unsatisfiable
  # Gem::Resolver::DependencyRequest +dep+

  def initialize(dep, platform_mismatch=nil)
    if platform_mismatch and !platform_mismatch.empty?
      plats = platform_mismatch.map { |x| x.platform.to_s }.sort.uniq
      super "Unable to resolve dependency: No match for '#{dep}' on this platform. Found: #{plats.join(', ')}"
    else
      if dep.explicit?
        super "Unable to resolve dependency: user requested '#{dep}'"
      else
        super "Unable to resolve dependency: '#{dep.request_context}' requires '#{dep}'"
      end
    end

    @dependency = dep
    @errors     = []
  end

  ##
  # The name of the unresolved dependency

  def name
    @dependency.name
  end

  ##
  # The Requirement of the unresolved dependency (not Version).

  def version
    @dependency.requirement
  end

end

##
# Backwards compatible typo'd exception class for early RubyGems 2.0.x

Gem::UnsatisfiableDepedencyError = Gem::UnsatisfiableDependencyError # :nodoc:
PK8H[8=�22'share/rubygems/rubygems/spec_fetcher.rbnu�[���# frozen_string_literal: true
require 'rubygems/remote_fetcher'
require 'rubygems/user_interaction'
require 'rubygems/errors'
require 'rubygems/text'
require 'rubygems/name_tuple'

##
# SpecFetcher handles metadata updates from remote gem repositories.

class Gem::SpecFetcher

  include Gem::UserInteraction
  include Gem::Text

  ##
  # Cache of latest specs

  attr_reader :latest_specs # :nodoc:

  ##
  # Sources for this SpecFetcher

  attr_reader :sources # :nodoc:

  ##
  # Cache of all released specs

  attr_reader :specs # :nodoc:

  ##
  # Cache of prerelease specs

  attr_reader :prerelease_specs # :nodoc:

  @fetcher = nil

  ##
  # Default fetcher instance.  Use this instead of ::new to reduce object
  # allocation.

  def self.fetcher
    @fetcher ||= new
  end

  def self.fetcher=(fetcher) # :nodoc:
    @fetcher = fetcher
  end

  ##
  # Creates a new SpecFetcher.  Ordinarily you want to use the default fetcher
  # from Gem::SpecFetcher::fetcher which uses the Gem.sources.
  #
  # If you need to retrieve specifications from a different +source+, you can
  # send it as an argument.

  def initialize(sources = nil)
    @sources = sources || Gem.sources

    @update_cache =
      begin
        File.stat(Gem.user_home).uid == Process.uid
      rescue Errno::EACCES, Errno::ENOENT
        false
      end

    @specs = {}
    @latest_specs = {}
    @prerelease_specs = {}

    @caches = {
      :latest => @latest_specs,
      :prerelease => @prerelease_specs,
      :released => @specs,
    }

    @fetcher = Gem::RemoteFetcher.fetcher
  end

  ##
  #
  # Find and fetch gem name tuples that match +dependency+.
  #
  # If +matching_platform+ is false, gems for all platforms are returned.

  def search_for_dependency(dependency, matching_platform=true)
    found = {}

    rejected_specs = {}

    list, errors = available_specs(dependency.identity)

    list.each do |source, specs|
      if dependency.name.is_a?(String) && specs.respond_to?(:bsearch)
        start_index = (0 ... specs.length).bsearch{ |i| specs[i].name >= dependency.name }
        end_index   = (0 ... specs.length).bsearch{ |i| specs[i].name > dependency.name }
        specs = specs[start_index ... end_index] if start_index && end_index
      end

      found[source] = specs.select do |tup|
        if dependency.match?(tup)
          if matching_platform and !Gem::Platform.match(tup.platform)
            pm = (
              rejected_specs[dependency] ||= \
                Gem::PlatformMismatch.new(tup.name, tup.version))
            pm.add_platform tup.platform
            false
          else
            true
          end
        end
      end
    end

    errors += rejected_specs.values

    tuples = []

    found.each do |source, specs|
      specs.each do |s|
        tuples << [s, source]
      end
    end

    tuples = tuples.sort_by { |x| x[0] }

    return [tuples, errors]
  end

  ##
  # Return all gem name tuples who's names match +obj+

  def detect(type=:complete)
    tuples = []

    list, _ = available_specs(type)
    list.each do |source, specs|
      specs.each do |tup|
        if yield(tup)
          tuples << [tup, source]
        end
      end
    end

    tuples
  end

  ##
  # Find and fetch specs that match +dependency+.
  #
  # If +matching_platform+ is false, gems for all platforms are returned.

  def spec_for_dependency(dependency, matching_platform=true)
    tuples, errors = search_for_dependency(dependency, matching_platform)

    specs = []
    tuples.each do |tup, source|
      begin
        spec = source.fetch_spec(tup)
      rescue Gem::RemoteFetcher::FetchError => e
        errors << Gem::SourceFetchProblem.new(source, e)
      else
        specs << [spec, source]
      end
    end

    return [specs, errors]
  end

  ##
  # Suggests gems based on the supplied +gem_name+. Returns an array of
  # alternative gem names.

  def suggest_gems_from_name(gem_name, type = :latest)
    gem_name        = gem_name.downcase.tr('_-', '')
    max             = gem_name.size / 2
    names           = available_specs(type).first.values.flatten(1)

    matches = names.map do |n|
      next unless n.match_platform?

      distance = levenshtein_distance gem_name, n.name.downcase.tr('_-', '')

      next if distance >= max

      return [n.name] if distance == 0

      [n.name, distance]
    end.compact

    matches = if matches.empty? && type != :prerelease
                suggest_gems_from_name gem_name, :prerelease
              else
                matches.uniq.sort_by { |name, dist| dist }
              end

    matches.first(5).map { |name, dist| name }
  end

  ##
  # Returns a list of gems available for each source in Gem::sources.
  #
  # +type+ can be one of 3 values:
  # :released   => Return the list of all released specs
  # :complete   => Return the list of all specs
  # :latest     => Return the list of only the highest version of each gem
  # :prerelease => Return the list of all prerelease only specs
  #

  def available_specs(type)
    errors = []
    list = {}

    @sources.each_source do |source|
      begin
        names = case type
                when :latest
                  tuples_for source, :latest
                when :released
                  tuples_for source, :released
                when :complete
                  names =
                    tuples_for(source, :prerelease, true) +
                    tuples_for(source, :released)

                  names.sort
                when :abs_latest
                  names =
                    tuples_for(source, :prerelease, true) +
                    tuples_for(source, :latest)

                  names.sort
                when :prerelease
                  tuples_for(source, :prerelease)
                else
                  raise Gem::Exception, "Unknown type - :#{type}"
                end
      rescue Gem::RemoteFetcher::FetchError => e
        errors << Gem::SourceFetchProblem.new(source, e)
      else
        list[source] = names
      end
    end

    [list, errors]
  end

  ##
  # Retrieves NameTuples from +source+ of the given +type+ (:prerelease,
  # etc.).  If +gracefully_ignore+ is true, errors are ignored.

  def tuples_for(source, type, gracefully_ignore=false) # :nodoc:
    @caches[type][source.uri] ||=
      source.load_specs(type).sort_by { |tup| tup.name }
  rescue Gem::RemoteFetcher::FetchError
    raise unless gracefully_ignore
    []
  end

end
PK8H[&��ȸ�%share/rubygems/rubygems/gem_runner.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'
require 'rubygems/command_manager'
require 'rubygems/config_file'
require 'rubygems/deprecate'

##
# Load additional plugins from $LOAD_PATH

Gem.load_env_plugins rescue nil

##
# Run an instance of the gem program.
#
# Gem::GemRunner is only intended for internal use by RubyGems itself.  It
# does not form any public API and may change at any time for any reason.
#
# If you would like to duplicate functionality of `gem` commands, use the
# classes they call directly.

class Gem::GemRunner

  def initialize(options={})
    if !options.empty? && !Gem::Deprecate.skip
      Kernel.warn "NOTE: passing options to Gem::GemRunner.new is deprecated with no replacement. It will be removed on or after 2016-10-01."
    end

    @command_manager_class = options[:command_manager] || Gem::CommandManager
    @config_file_class = options[:config_file] || Gem::ConfigFile
  end

  ##
  # Run the gem command with the following arguments.

  def run(args)
    build_args = extract_build_args args

    do_configuration args

    cmd = @command_manager_class.instance

    cmd.command_names.each do |command_name|
      config_args = Gem.configuration[command_name]
      config_args = case config_args
                    when String
                      config_args.split ' '
                    else
                      Array(config_args)
                    end
      Gem::Command.add_specific_extra_args command_name, config_args
    end

    cmd.run Gem.configuration.args, build_args
  end

  ##
  # Separates the build arguments (those following <code>--</code>) from the
  # other arguments in the list.

  def extract_build_args(args) # :nodoc:
    return [] unless offset = args.index('--')

    build_args = args.slice!(offset...args.length)

    build_args.shift

    build_args
  end

  private

  def do_configuration(args)
    Gem.configuration = @config_file_class.new(args)
    Gem.use_paths Gem.configuration[:gemhome], Gem.configuration[:gempath]
    Gem::Command.extra_args = Gem.configuration[:gem]
  end

end

Gem.load_plugins
PK8H[��(��.�./share/rubygems/rubygems/specification_policy.rbnu�[���require 'rubygems/user_interaction'

class Gem::SpecificationPolicy

  include Gem::UserInteraction

  VALID_NAME_PATTERN = /\A[a-zA-Z0-9\.\-\_]+\z/.freeze # :nodoc:

  SPECIAL_CHARACTERS = /\A[#{Regexp.escape('.-_')}]+/.freeze # :nodoc:

  VALID_URI_PATTERN = %r{\Ahttps?:\/\/([^\s:@]+:[^\s:@]*@)?[A-Za-z\d\-]+(\.[A-Za-z\d\-]+)+\.?(:\d{1,5})?([\/?]\S*)?\z}.freeze  # :nodoc:

  METADATA_LINK_KEYS = %w[
    bug_tracker_uri
    changelog_uri
    documentation_uri
    homepage_uri
    mailing_list_uri
    source_code_uri
    wiki_uri
  ].freeze # :nodoc:

  def initialize(specification)
    @warnings = 0

    @specification = specification
  end

  ##
  # If set to true, run packaging-specific checks, as well.

  attr_accessor :packaging

  ##
  # Checks that the specification contains all required fields, and does a
  # very basic sanity check.
  #
  # Raises InvalidSpecificationException if the spec does not pass the
  # checks.

  def validate(strict = false)
    validate_nil_attributes

    validate_rubygems_version

    validate_required_attributes

    validate_name

    validate_require_paths

    @specification.keep_only_files_and_directories

    validate_non_files

    validate_self_inclusion_in_files_list

    validate_specification_version

    validate_platform

    validate_array_attributes

    validate_authors_field

    validate_metadata

    validate_licenses

    validate_permissions

    validate_lazy_metadata

    validate_values

    validate_dependencies

    validate_removed_attributes

    if @warnings > 0
      if strict
        error "specification has warnings"
      else
        alert_warning help_text
      end
    end

    true
  end

  ##
  # Implementation for Specification#validate_metadata

  def validate_metadata
    metadata = @specification.metadata

    unless Hash === metadata
      error 'metadata must be a hash'
    end

    metadata.each do |key, value|
      if !key.kind_of?(String)
        error "metadata keys must be a String"
      end

      if key.size > 128
        error "metadata key too large (#{key.size} > 128)"
      end

      if !value.kind_of?(String)
        error "metadata values must be a String"
      end

      if value.size > 1024
        error "metadata value too large (#{value.size} > 1024)"
      end

      if METADATA_LINK_KEYS.include? key
        if value !~ VALID_URI_PATTERN
          error "metadata['#{key}'] has invalid link: #{value.inspect}"
        end
      end
    end
  end

  ##
  # Implementation for Specification#validate_dependencies

  def validate_dependencies # :nodoc:
    # NOTE: see REFACTOR note in Gem::Dependency about types - this might be brittle
    seen = Gem::Dependency::TYPES.inject({}) { |types, type| types.merge({ type => {}}) }

    error_messages = []
    warning_messages = []
    @specification.dependencies.each do |dep|
      if prev = seen[dep.type][dep.name]
        error_messages << <<-MESSAGE
duplicate dependency on #{dep}, (#{prev.requirement}) use:
    add_#{dep.type}_dependency '#{dep.name}', '#{dep.requirement}', '#{prev.requirement}'
        MESSAGE
      end

      seen[dep.type][dep.name] = dep

      prerelease_dep = dep.requirements_list.any? do |req|
        Gem::Requirement.new(req).prerelease?
      end

      warning_messages << "prerelease dependency on #{dep} is not recommended" if
          prerelease_dep && !@specification.version.prerelease?

      open_ended = dep.requirement.requirements.all? do |op, version|
        not version.prerelease? and (op == '>' or op == '>=')
      end

      if open_ended
        op, dep_version = dep.requirement.requirements.first

        segments = dep_version.segments

        base = segments.first 2

        recommendation = if (op == '>' || op == '>=') && segments == [0]
                           "  use a bounded requirement, such as '~> x.y'"
                         else
                           bugfix = if op == '>'
                                      ", '> #{dep_version}'"
                                    elsif op == '>=' and base != segments
                                      ", '>= #{dep_version}'"
                                    end

                           "  if #{dep.name} is semantically versioned, use:\n" \
                           "    add_#{dep.type}_dependency '#{dep.name}', '~> #{base.join '.'}'#{bugfix}"
                         end

        warning_messages << ["open-ended dependency on #{dep} is not recommended", recommendation].join("\n") + "\n"
      end
    end
    if error_messages.any?
      error error_messages.join
    end
    if warning_messages.any?
      warning_messages.each { |warning_message| warning warning_message }
    end
  end

  ##
  # Issues a warning for each file to be packaged which is world-readable.
  #
  # Implementation for Specification#validate_permissions

  def validate_permissions
    return if Gem.win_platform?

    @specification.files.each do |file|
      next unless File.file?(file)
      next if File.stat(file).mode & 0444 == 0444
      warning "#{file} is not world-readable"
    end

    @specification.executables.each do |name|
      exec = File.join @specification.bindir, name
      next unless File.file?(exec)
      next if File.stat(exec).executable?
      warning "#{exec} is not executable"
    end
  end

  private

  def validate_nil_attributes
    nil_attributes = Gem::Specification.non_nil_attributes.select do |attrname|
      @specification.instance_variable_get("@#{attrname}").nil?
    end
    return if nil_attributes.empty?
    error "#{nil_attributes.join ', '} must not be nil"
  end

  def validate_rubygems_version
    return unless packaging

    rubygems_version = @specification.rubygems_version

    return if rubygems_version == Gem::VERSION

    error "expected RubyGems version #{Gem::VERSION}, was #{rubygems_version}"
  end

  def validate_required_attributes
    Gem::Specification.required_attributes.each do |symbol|
      unless @specification.send symbol
        error "missing value for attribute #{symbol}"
      end
    end
  end

  def validate_name
    name = @specification.name

    if !name.is_a?(String)
      error "invalid value for attribute name: \"#{name.inspect}\" must be a string"
    elsif name !~ /[a-zA-Z]/
      error "invalid value for attribute name: #{name.dump} must include at least one letter"
    elsif name !~ VALID_NAME_PATTERN
      error "invalid value for attribute name: #{name.dump} can only include letters, numbers, dashes, and underscores"
    elsif name =~ SPECIAL_CHARACTERS
      error "invalid value for attribute name: #{name.dump} can not begin with a period, dash, or underscore"
    end
  end

  def validate_require_paths
    return unless @specification.raw_require_paths.empty?

    error 'specification must have at least one require_path'
  end

  def validate_non_files
    return unless packaging

    non_files = @specification.files.reject {|x| File.file?(x) || File.symlink?(x)}

    unless non_files.empty?
      error "[\"#{non_files.join "\", \""}\"] are not files"
    end
  end

  def validate_self_inclusion_in_files_list
    file_name = @specification.file_name

    return unless @specification.files.include?(file_name)

    error "#{@specification.full_name} contains itself (#{file_name}), check your files list"
  end

  def validate_specification_version
    return if @specification.specification_version.is_a?(Integer)

    error 'specification_version must be an Integer (did you mean version?)'
  end

  def validate_platform
    platform = @specification.platform

    case platform
    when Gem::Platform, Gem::Platform::RUBY  # ok
    else
      error "invalid platform #{platform.inspect}, see Gem::Platform"
    end
  end

  def validate_array_attributes
    Gem::Specification.array_attributes.each do |field|
      validate_array_attribute(field)
    end
  end

  def validate_array_attribute(field)
    val = @specification.send(field)
    klass = case field
            when :dependencies then
              Gem::Dependency
            else
              String
            end

    unless Array === val and val.all? {|x| x.kind_of?(klass)}
      raise(Gem::InvalidSpecificationException,
            "#{field} must be an Array of #{klass}")
    end
  end

  def validate_authors_field
    return unless @specification.authors.empty?

    error "authors may not be empty"
  end

  def validate_licenses
    licenses = @specification.licenses

    licenses.each do |license|
      if license.length > 64
        error "each license must be 64 characters or less"
      end

      if !Gem::Licenses.match?(license)
        suggestions = Gem::Licenses.suggestions(license)
        message = <<-warning
license value '#{license}' is invalid.  Use a license identifier from
http://spdx.org/licenses or '#{Gem::Licenses::NONSTANDARD}' for a nonstandard license.
        warning
        message += "Did you mean #{suggestions.map { |s| "'#{s}'"}.join(', ')}?\n" unless suggestions.nil?
        warning(message)
      end
    end

    warning <<-warning if licenses.empty?
licenses is empty, but is recommended.  Use a license identifier from
http://spdx.org/licenses or '#{Gem::Licenses::NONSTANDARD}' for a nonstandard license.
    warning
  end

  LAZY = '"FIxxxXME" or "TOxxxDO"'.gsub(/xxx/, '')
  LAZY_PATTERN = /FI XME|TO DO/x.freeze
  HOMEPAGE_URI_PATTERN = /\A[a-z][a-z\d+.-]*:/i.freeze

  def validate_lazy_metadata
    unless @specification.authors.grep(LAZY_PATTERN).empty?
      error "#{LAZY} is not an author"
    end

    unless Array(@specification.email).grep(LAZY_PATTERN).empty?
      error "#{LAZY} is not an email"
    end

    if @specification.description =~ LAZY_PATTERN
      error "#{LAZY} is not a description"
    end

    if @specification.summary =~ LAZY_PATTERN
      error "#{LAZY} is not a summary"
    end

    homepage = @specification.homepage

    # Make sure a homepage is valid HTTP/HTTPS URI
    if homepage and not homepage.empty?
      require 'uri'
      begin
        homepage_uri = URI.parse(homepage)
        unless [URI::HTTP, URI::HTTPS].member? homepage_uri.class
          error "\"#{homepage}\" is not a valid HTTP URI"
        end
      rescue URI::InvalidURIError
        error "\"#{homepage}\" is not a valid HTTP URI"
      end
    end
  end

  def validate_values
    %w[author homepage summary files].each do |attribute|
      validate_attribute_present(attribute)
    end

    if @specification.description == @specification.summary
      warning "description and summary are identical"
    end

    # TODO: raise at some given date
    warning "deprecated autorequire specified" if @specification.autorequire

    @specification.executables.each do |executable|
      validate_shebang_line_in(executable)
    end

    @specification.files.select { |f| File.symlink?(f) }.each do |file|
      warning "#{file} is a symlink, which is not supported on all platforms"
    end
  end

  def validate_attribute_present(attribute)
    value = @specification.send attribute
    warning("no #{attribute} specified") if value.nil? || value.empty?
  end

  def validate_shebang_line_in(executable)
    executable_path = File.join(@specification.bindir, executable)
    return if File.read(executable_path, 2) == '#!'

    warning "#{executable_path} is missing #! line"
  end

  def validate_removed_attributes # :nodoc:
    @specification.removed_method_calls.each do |attr|
      warning("#{attr} is deprecated and ignored. Please remove this from your gemspec to ensure that your gem continues to build in the future.")
    end
  end

  def warning(statement) # :nodoc:
    @warnings += 1

    alert_warning statement
  end

  def error(statement) # :nodoc:
    raise Gem::InvalidSpecificationException, statement
  ensure
    alert_warning help_text
  end

  def help_text # :nodoc:
    "See https://guides.rubygems.org/specification-reference/ for help"
  end

end
PK8H[p��)4share/rubygems/rubygems/defaults/operating_system.rbnu�[���module Gem
  class << self

    ##
    # Returns full path of previous but one directory of dir in path
    # E.g. for '/usr/share/ruby', 'ruby', it returns '/usr'

    def previous_but_one_dir_to(path, dir)
      return unless path

      split_path = path.split(File::SEPARATOR)
      File.join(split_path.take_while { |one_dir| one_dir !~ /^#{dir}$/ }[0..-2])
    end
    private :previous_but_one_dir_to

    ##
    # Detects --install-dir option specified on command line.

    def opt_install_dir?
      @opt_install_dir ||= ARGV.include?('--install-dir') || ARGV.include?('-i')
    end
    private :opt_install_dir?

    ##
    # Detects --build-root option specified on command line.

    def opt_build_root?
      @opt_build_root ||= ARGV.include?('--build-root')
    end
    private :opt_build_root?

    ##
    # Tries to detect, if arguments and environment variables suggest that
    # 'gem install' is executed from rpmbuild.

    def rpmbuild?
      @rpmbuild ||= ENV['RPM_PACKAGE_NAME'] && (opt_install_dir? || opt_build_root?)
    end
    private :rpmbuild?

    ##
    # Default gems locations allowed on FHS system (/usr, /usr/share).
    # The locations are derived from directories specified during build
    # configuration.

    def default_locations
      @default_locations ||= {
        :system => previous_but_one_dir_to(RbConfig::CONFIG['vendordir'], RbConfig::CONFIG['RUBY_INSTALL_NAME']),
        :local => previous_but_one_dir_to(RbConfig::CONFIG['sitedir'], RbConfig::CONFIG['RUBY_INSTALL_NAME'])
      }
    end

    ##
    # For each location provides set of directories for binaries (:bin_dir)
    # platform independent (:gem_dir) and dependent (:ext_dir) files.

    def default_dirs
      @libdir ||= case RUBY_PLATFORM
      when 'java'
        RbConfig::CONFIG['datadir']
      else
        RbConfig::CONFIG['libdir']
      end

      @default_dirs ||= default_locations.inject(Hash.new) do |hash, location|
        destination, path = location

        hash[destination] = if path
          {
            :bin_dir => File.join(path, RbConfig::CONFIG['bindir'].split(File::SEPARATOR).last),
            :gem_dir => File.join(path, RbConfig::CONFIG['datadir'].split(File::SEPARATOR).last, 'gems'),
            :ext_dir => File.join(path, @libdir.split(File::SEPARATOR).last, 'gems')
          }
        else
          {
            :bin_dir => '',
            :gem_dir => '',
            :ext_dir => ''
          }
        end

        hash
      end
    end

    ##
    # Remove methods we are going to override. This avoids "method redefined;"
    # warnings otherwise issued by Ruby.

    remove_method :operating_system_defaults if method_defined? :operating_system_defaults
    remove_method :default_dir if method_defined? :default_dir
    remove_method :default_path if method_defined? :default_path
    remove_method :default_ext_dir_for if method_defined? :default_ext_dir_for

    ##
    # Regular user installs into user directory, root manages /usr/local.

    def operating_system_defaults
      unless opt_build_root?
        options = if Process.uid == 0
          "--install-dir=#{Gem.default_dirs[:local][:gem_dir]} --bindir #{Gem.default_dirs[:local][:bin_dir]}"
        end

        {"gem" => options}
      else
        {}
      end
    end

    ##
    # RubyGems default overrides.

    def default_dir
      Gem.default_dirs[:system][:gem_dir]
    end

    def default_path
      path = default_dirs.collect {|location, paths| paths[:gem_dir]}
      path.unshift Gem.user_dir if File.exist? Gem.user_home
      path
    end

    def default_ext_dir_for base_dir
      dir = if rpmbuild?
        build_dir = base_dir.chomp Gem.default_dirs[:system][:gem_dir]
        if build_dir != base_dir
          File.join build_dir, Gem.default_dirs[:system][:ext_dir]
        end
      else
        dirs = Gem.default_dirs.detect {|location, paths| paths[:gem_dir] == base_dir}
        dirs && dirs.last[:ext_dir]
      end
      dir && File.join(dir, RbConfig::CONFIG['RUBY_INSTALL_NAME'])
    end

    # This method should be available since RubyGems 2.2 until RubyGems 3.0.
    # https://github.com/rubygems/rubygems/issues/749
    if method_defined? :install_extension_in_lib
      remove_method :install_extension_in_lib

      def install_extension_in_lib
        false
      end
    end
  end
end
PK8H[}'M,,*share/rubygems/rubygems/psych_additions.rbnu�[���# frozen_string_literal: true
# This exists just to satisfy bugs in marshal'd gemspecs that
# contain a reference to YAML::PrivateType. We prune these out
# in Specification._load, but if we don't have the constant, Marshal
# blows up.

module Psych # :nodoc:
  class PrivateType # :nodoc:
  end
end
PK8H[!�v\��(share/rubygems/rubygems/s3_uri_signer.rbnu�[���require 'base64'
require 'digest'
require 'openssl'

##
# S3URISigner implements AWS SigV4 for S3 Source to avoid a dependency on the aws-sdk-* gems
# More on AWS SigV4: https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html
class Gem::S3URISigner

  class ConfigurationError < Gem::Exception

    def initialize(message)
      super message
    end

    def to_s # :nodoc:
      "#{super}"
    end

  end

  class InstanceProfileError < Gem::Exception

    def initialize(message)
      super message
    end

    def to_s # :nodoc:
      "#{super}"
    end

  end

  attr_accessor :uri

  def initialize(uri)
    @uri = uri
  end

  ##
  # Signs S3 URI using query-params according to the reference: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
  def sign(expiration = 86400)
    s3_config = fetch_s3_config

    current_time = Time.now.utc
    date_time = current_time.strftime("%Y%m%dT%H%m%SZ")
    date = date_time[0,8]

    credential_info = "#{date}/#{s3_config.region}/s3/aws4_request"
    canonical_host = "#{uri.host}.s3.#{s3_config.region}.amazonaws.com"

    query_params = generate_canonical_query_params(s3_config, date_time, credential_info, expiration)
    canonical_request = generate_canonical_request(canonical_host, query_params)
    string_to_sign = generate_string_to_sign(date_time, credential_info, canonical_request)
    signature = generate_signature(s3_config, date, string_to_sign)

    URI.parse("https://#{canonical_host}#{uri.path}?#{query_params}&X-Amz-Signature=#{signature}")
  end

  private

  S3Config = Struct.new :access_key_id, :secret_access_key, :security_token, :region

  def generate_canonical_query_params(s3_config, date_time, credential_info, expiration)
    canonical_params = {}
    canonical_params["X-Amz-Algorithm"] = "AWS4-HMAC-SHA256"
    canonical_params["X-Amz-Credential"] = "#{s3_config.access_key_id}/#{credential_info}"
    canonical_params["X-Amz-Date"] = date_time
    canonical_params["X-Amz-Expires"] = expiration.to_s
    canonical_params["X-Amz-SignedHeaders"] = "host"
    canonical_params["X-Amz-Security-Token"] = s3_config.security_token if s3_config.security_token

    # Sorting is required to generate proper signature
    canonical_params.sort.to_h.map do |key, value|
      "#{base64_uri_escape(key)}=#{base64_uri_escape(value)}"
    end.join("&")
  end

  def generate_canonical_request(canonical_host, query_params)
    [
      "GET",
      uri.path,
      query_params,
      "host:#{canonical_host}",
      "", # empty params
      "host",
      "UNSIGNED-PAYLOAD",
    ].join("\n")
  end

  def generate_string_to_sign(date_time, credential_info, canonical_request)
    [
      "AWS4-HMAC-SHA256",
      date_time,
      credential_info,
      Digest::SHA256.hexdigest(canonical_request)
    ].join("\n")
  end

  def generate_signature(s3_config, date, string_to_sign)
    date_key = OpenSSL::HMAC.digest("sha256", "AWS4" + s3_config.secret_access_key, date)
    date_region_key = OpenSSL::HMAC.digest("sha256", date_key, s3_config.region)
    date_region_service_key = OpenSSL::HMAC.digest("sha256", date_region_key, "s3")
    signing_key = OpenSSL::HMAC.digest("sha256", date_region_service_key, "aws4_request")
    OpenSSL::HMAC.hexdigest("sha256", signing_key, string_to_sign)
  end

  ##
  # Extracts S3 configuration for S3 bucket
  def fetch_s3_config
    return S3Config.new(uri.user, uri.password, nil, "us-east-1") if uri.user && uri.password

    s3_source = Gem.configuration[:s3_source] || Gem.configuration["s3_source"]
    host = uri.host
    raise ConfigurationError.new("no s3_source key exists in .gemrc") unless s3_source

    auth = s3_source[host] || s3_source[host.to_sym]
    raise ConfigurationError.new("no key for host #{host} in s3_source in .gemrc") unless auth

    provider = auth[:provider] || auth["provider"]
    case provider
    when "env"
      id = ENV["AWS_ACCESS_KEY_ID"]
      secret = ENV["AWS_SECRET_ACCESS_KEY"]
      security_token = ENV["AWS_SESSION_TOKEN"]
    when "instance_profile"
      credentials = ec2_metadata_credentials_json
      id = credentials["AccessKeyId"]
      secret = credentials["SecretAccessKey"]
      security_token = credentials["Token"]
    else
      id = auth[:id] || auth["id"]
      secret = auth[:secret] || auth["secret"]
      security_token = auth[:security_token] || auth["security_token"]
    end

    raise ConfigurationError.new("s3_source for #{host} missing id or secret") unless id && secret

    region = auth[:region] || auth["region"] || "us-east-1"
    S3Config.new(id, secret, security_token, region)
  end

  def base64_uri_escape(str)
    str.gsub(/[\+\/=\n]/, BASE64_URI_TRANSLATE)
  end

  def ec2_metadata_credentials_json
    require 'net/http'
    require 'rubygems/request'
    require 'rubygems/request/connection_pools'
    require 'json'

    iam_info = ec2_metadata_request(EC2_IAM_INFO)
    # Expected format: arn:aws:iam::<id>:instance-profile/<role_name>
    role_name = iam_info['InstanceProfileArn'].split('/').last
    ec2_metadata_request(EC2_IAM_SECURITY_CREDENTIALS + role_name)
  end

  def ec2_metadata_request(url)
    uri = URI(url)
    @request_pool ||= create_request_pool(uri)
    request = Gem::Request.new(uri, Net::HTTP::Get, nil, @request_pool)
    response = request.fetch

    case response
    when Net::HTTPOK then
      JSON.parse(response.body)
    else
      raise InstanceProfileError.new("Unable to fetch AWS metadata from #{uri}: #{response.message} #{response.code}")
    end
  end

  def create_request_pool(uri)
    proxy_uri = Gem::Request.proxy_uri(Gem::Request.get_proxy_from_env(uri.scheme))
    certs = Gem::Request.get_cert_files
    Gem::Request::ConnectionPools.new(proxy_uri, certs).pool_for(uri)
  end

  BASE64_URI_TRANSLATE = { "+" => "%2B", "/" => "%2F", "=" => "%3D", "\n" => "" }.freeze
  EC2_IAM_INFO = "http://169.254.169.254/latest/meta-data/iam/info".freeze
  EC2_IAM_SECURITY_CREDENTIALS = "http://169.254.169.254/latest/meta-data/iam/security-credentials/".freeze

end
PK8H[�J6�#share/rubygems/rubygems/platform.rbnu�[���# frozen_string_literal: true
require "rubygems/deprecate"

##
# Available list of platforms for targeting Gem installations.
#
# See `gem help platform` for information on platform matching.

class Gem::Platform

  @local = nil

  attr_accessor :cpu

  attr_accessor :os

  attr_accessor :version

  def self.local
    arch = RbConfig::CONFIG['arch']
    arch = "#{arch}_60" if arch =~ /mswin(?:32|64)$/
    @local ||= new(arch)
  end

  def self.match(platform)
    Gem.platforms.any? do |local_platform|
      platform.nil? or
        local_platform == platform or
        (local_platform != Gem::Platform::RUBY and local_platform =~ platform)
    end
  end

  def self.installable?(spec)
    if spec.respond_to? :installable_platform?
      spec.installable_platform?
    else
      match spec.platform
    end
  end

  def self.new(arch) # :nodoc:
    case arch
    when Gem::Platform::CURRENT then
      Gem::Platform.local
    when Gem::Platform::RUBY, nil, '' then
      Gem::Platform::RUBY
    else
      super
    end
  end

  def initialize(arch)
    case arch
    when Array then
      @cpu, @os, @version = arch
    when String then
      arch = arch.split '-'

      if arch.length > 2 and arch.last !~ /\d/  # reassemble x86-linux-gnu
        extra = arch.pop
        arch.last << "-#{extra}"
      end

      cpu = arch.shift

      @cpu = case cpu
             when /i\d86/ then 'x86'
             else cpu
             end

      if arch.length == 2 and arch.last =~ /^\d+(\.\d+)?$/  # for command-line
        @os, @version = arch
        return
      end

      os, = arch
      @cpu, os = nil, cpu if os.nil? # legacy jruby

      @os, @version = case os
                      when /aix(\d+)?/ then             [ 'aix',       $1  ]
                      when /cygwin/ then                [ 'cygwin',    nil ]
                      when /darwin(\d+)?/ then          [ 'darwin',    $1  ]
                      when /^macruby$/ then             [ 'macruby',   nil ]
                      when /freebsd(\d+)?/ then         [ 'freebsd',   $1  ]
                      when /hpux(\d+)?/ then            [ 'hpux',      $1  ]
                      when /^java$/, /^jruby$/ then     [ 'java',      nil ]
                      when /^java([\d.]*)/ then         [ 'java',      $1  ]
                      when /^dalvik(\d+)?$/ then        [ 'dalvik',    $1  ]
                      when /^dotnet$/ then              [ 'dotnet',    nil ]
                      when /^dotnet([\d.]*)/ then       [ 'dotnet',    $1  ]
                      when /linux-?((?!gnu)\w+)?/ then  [ 'linux',     $1  ]
                      when /mingw32/ then               [ 'mingw32',   nil ]
                      when /(mswin\d+)(\_(\d+))?/ then
                        os, version = $1, $3
                        @cpu = 'x86' if @cpu.nil? and os =~ /32$/
                        [os, version]
                      when /netbsdelf/ then             [ 'netbsdelf', nil ]
                      when /openbsd(\d+\.\d+)?/ then    [ 'openbsd',   $1  ]
                      when /bitrig(\d+\.\d+)?/ then     [ 'bitrig',    $1  ]
                      when /solaris(\d+\.\d+)?/ then    [ 'solaris',   $1  ]
                      # test
                      when /^(\w+_platform)(\d+)?/ then [ $1,          $2  ]
                      else                              [ 'unknown',   nil ]
                      end
    when Gem::Platform then
      @cpu = arch.cpu
      @os = arch.os
      @version = arch.version
    else
      raise ArgumentError, "invalid argument #{arch.inspect}"
    end
  end

  def inspect
    "%s @cpu=%p, @os=%p, @version=%p>" % [super[0..-2], *to_a]
  end

  def to_a
    [@cpu, @os, @version]
  end

  def to_s
    to_a.compact.join '-'
  end

  ##
  # Is +other+ equal to this platform?  Two platforms are equal if they have
  # the same CPU, OS and version.

  def ==(other)
    self.class === other and to_a == other.to_a
  end

  alias :eql? :==

  def hash # :nodoc:
    to_a.hash
  end

  ##
  # Does +other+ match this platform?  Two platforms match if they have the
  # same CPU, or either has a CPU of 'universal', they have the same OS, and
  # they have the same version, or either has no version.
  #
  # Additionally, the platform will match if the local CPU is 'arm' and the
  # other CPU starts with "arm" (for generic ARM family support).

  def ===(other)
    return nil unless Gem::Platform === other

    # cpu
    ([nil,'universal'].include?(@cpu) or [nil, 'universal'].include?(other.cpu) or @cpu == other.cpu or
    (@cpu == 'arm' and other.cpu =~ /\Aarm/)) and

    # os
    @os == other.os and

    # version
    (@version.nil? or other.version.nil? or @version == other.version)
  end

  ##
  # Does +other+ match this platform?  If +other+ is a String it will be
  # converted to a Gem::Platform first.  See #=== for matching rules.

  def =~(other)
    case other
    when Gem::Platform then # nop
    when String then
      # This data is from http://gems.rubyforge.org/gems/yaml on 19 Aug 2007
      other = case other
              when /^i686-darwin(\d)/     then ['x86',       'darwin',  $1    ]
              when /^i\d86-linux/         then ['x86',       'linux',   nil   ]
              when 'java', 'jruby'        then [nil,         'java',    nil   ]
              when /^dalvik(\d+)?$/       then [nil,         'dalvik',  $1    ]
              when /dotnet(\-(\d+\.\d+))?/ then ['universal','dotnet',  $2    ]
              when /mswin32(\_(\d+))?/    then ['x86',       'mswin32', $2    ]
              when /mswin64(\_(\d+))?/    then ['x64',       'mswin64', $2    ]
              when 'powerpc-darwin'       then ['powerpc',   'darwin',  nil   ]
              when /powerpc-darwin(\d)/   then ['powerpc',   'darwin',  $1    ]
              when /sparc-solaris2.8/     then ['sparc',     'solaris', '2.8' ]
              when /universal-darwin(\d)/ then ['universal', 'darwin',  $1    ]
              else                             other
              end

      other = Gem::Platform.new other
    else
      return nil
    end

    self === other
  end

  ##
  # A pure-Ruby gem that may use Gem::Specification#extensions to build
  # binary files.

  RUBY = 'ruby'.freeze

  ##
  # A platform-specific gem that is built for the packaging Ruby's platform.
  # This will be replaced with Gem::Platform::local.

  CURRENT = 'current'.freeze

end
PK8H[�A�/��'share/rubygems/rubygems/path_support.rbnu�[���# frozen_string_literal: true
##
#
# Gem::PathSupport facilitates the GEM_HOME and GEM_PATH environment settings
# to the rest of RubyGems.
#
class Gem::PathSupport

  ##
  # The default system path for managing Gems.
  attr_reader :home

  ##
  # Array of paths to search for Gems.
  attr_reader :path

  ##
  # Directory with spec cache
  attr_reader :spec_cache_dir # :nodoc:

  ##
  #
  # Constructor. Takes a single argument which is to be treated like a
  # hashtable, or defaults to ENV, the system environment.
  #
  def initialize(env)
    @home = env["GEM_HOME"] || Gem.default_dir

    if File::ALT_SEPARATOR
      @home = @home.gsub(File::ALT_SEPARATOR, File::SEPARATOR)
    end

    @home = expand(@home)

    @path = split_gem_path env["GEM_PATH"], @home

    @spec_cache_dir = env["GEM_SPEC_CACHE"] || Gem.default_spec_cache_dir

    @spec_cache_dir = @spec_cache_dir.dup.tap(&Gem::UNTAINT)
  end

  private

  ##
  # Split the Gem search path (as reported by Gem.path).

  def split_gem_path(gpaths, home)
    # FIX: it should be [home, *path], not [*path, home]

    gem_path = []

    if gpaths
      gem_path = gpaths.split(Gem.path_separator)
      # Handle the path_separator being set to a regexp, which will cause
      # end_with? to error
      if gpaths =~ /#{Gem.path_separator}\z/
        gem_path += default_path
      end

      if File::ALT_SEPARATOR
        gem_path.map! do |this_path|
          this_path.gsub File::ALT_SEPARATOR, File::SEPARATOR
        end
      end

      gem_path << home
    else
      gem_path = default_path
    end

    gem_path.map { |path| expand(path) }.uniq
  end

  # Return the default Gem path
  def default_path
    gem_path = Gem.default_path + [@home]

    if defined?(APPLE_GEM_HOME)
      gem_path << APPLE_GEM_HOME
    end
    gem_path
  end

  def expand(path)
    if File.directory?(path)
      File.realpath(path)
    else
      path
    end
  end

end
PK8H[}�E  *share/rubygems/rubygems/security_option.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'

# forward-declare

module Gem::Security # :nodoc:
  class Policy # :nodoc:
  end
end

##
# Mixin methods for security option for Gem::Commands

module Gem::SecurityOption
  def add_security_option
    OptionParser.accept Gem::Security::Policy do |value|
      require 'rubygems/security'

      raise OptionParser::InvalidArgument, 'OpenSSL not installed' unless
        defined?(Gem::Security::HighSecurity)

      policy = Gem::Security::Policies[value]
      unless policy
        valid = Gem::Security::Policies.keys.sort
        raise OptionParser::InvalidArgument, "#{value} (#{valid.join ', '} are valid)"
      end
      policy
    end

    add_option(:"Install/Update", '-P', '--trust-policy POLICY',
               Gem::Security::Policy,
               'Specify gem trust policy') do |value, options|
      options[:security_policy] = value
    end
  end
end
PK8H[�cl)share/rubygems/rubygems/version_option.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems'

##
# Mixin methods for --version and --platform Gem::Command options.

module Gem::VersionOption

  ##
  # Add the --platform option to the option parser.

  def add_platform_option(task = command, *wrap)
    OptionParser.accept Gem::Platform do |value|
      if value == Gem::Platform::RUBY
        value
      else
        Gem::Platform.new value
      end
    end

    add_option('--platform PLATFORM', Gem::Platform,
               "Specify the platform of gem to #{task}", *wrap) do
                 |value, options|
      unless options[:added_platform]
        Gem.platforms = [Gem::Platform::RUBY]
        options[:added_platform] = true
      end

      Gem.platforms << value unless Gem.platforms.include? value
    end
  end

  ##
  # Add the --prerelease option to the option parser.

  def add_prerelease_option(*wrap)
    add_option("--[no-]prerelease",
               "Allow prerelease versions of a gem", *wrap) do |value, options|
      options[:prerelease] = value
      options[:explicit_prerelease] = true
    end
  end

  ##
  # Add the --version option to the option parser.

  def add_version_option(task = command, *wrap)
    OptionParser.accept Gem::Requirement do |value|
      Gem::Requirement.new(*value.split(/\s*,\s*/))
    end

    add_option('-v', '--version VERSION', Gem::Requirement,
               "Specify version of gem to #{task}", *wrap) do
                 |value, options|
      # Allow handling for multiple --version operators
      if options[:version] && !options[:version].none?
        options[:version].concat([value])
      else
        options[:version] = value
      end

      explicit_prerelease_set = !options[:explicit_prerelease].nil?
      options[:explicit_prerelease] = false unless explicit_prerelease_set

      options[:prerelease] = value.prerelease? unless
        options[:explicit_prerelease]
    end
  end

end
PK8H[\��,share/rubygems/rubygems/package/io_source.rbnu�[���# frozen_string_literal: true
##
# Supports reading and writing gems from/to a generic IO object.  This is
# useful for other applications built on top of rubygems, such as
# rubygems.org.
#
# This is a private class, do not depend on it directly. Instead, pass an IO
# object to `Gem::Package.new`.

class Gem::Package::IOSource < Gem::Package::Source # :nodoc: all

  attr_reader :io

  def initialize(io)
    @io = io
  end

  def start
    @start ||= begin
      if io.pos > 0
        raise Gem::Package::Error, "Cannot read start unless IO is at start"
      end

      value = io.read 20
      io.rewind
      value
    end
  end

  def present?
    true
  end

  def with_read_io
    yield io
  end

  def with_write_io
    yield io
  end

  def path
  end

end
PK8H[	3�~.
.
3share/rubygems/rubygems/package/tar_reader/entry.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: true
#++
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#--

##
# Class for reading entries out of a tar file

class Gem::Package::TarReader::Entry

  ##
  # Header for this tar entry

  attr_reader :header

  ##
  # Creates a new tar entry for +header+ that will be read from +io+

  def initialize(header, io)
    @closed = false
    @header = header
    @io = io
    @orig_pos = @io.pos
    @read = 0
  end

  def check_closed # :nodoc:
    raise IOError, "closed #{self.class}" if closed?
  end

  ##
  # Number of bytes read out of the tar entry

  def bytes_read
    @read
  end

  ##
  # Closes the tar entry

  def close
    @closed = true
  end

  ##
  # Is the tar entry closed?

  def closed?
    @closed
  end

  ##
  # Are we at the end of the tar entry?

  def eof?
    check_closed

    @read >= @header.size
  end

  ##
  # Full name of the tar entry

  def full_name
    if @header.prefix != ""
      File.join @header.prefix, @header.name
    else
      @header.name
    end
  rescue ArgumentError => e
    raise unless e.message == 'string contains null byte'
    raise Gem::Package::TarInvalidError,
          'tar is corrupt, name contains null byte'
  end

  ##
  # Read one byte from the tar entry

  def getc
    check_closed

    return nil if @read >= @header.size

    ret = @io.getc
    @read += 1 if ret

    ret
  end

  ##
  # Is this tar entry a directory?

  def directory?
    @header.typeflag == "5"
  end

  ##
  # Is this tar entry a file?

  def file?
    @header.typeflag == "0"
  end

  ##
  # Is this tar entry a symlink?

  def symlink?
    @header.typeflag == "2"
  end

  ##
  # The position in the tar entry

  def pos
    check_closed

    bytes_read
  end

  def size
    @header.size
  end

  alias length size

  ##
  # Reads +len+ bytes from the tar file entry, or the rest of the entry if
  # nil

  def read(len = nil)
    check_closed

    return nil if @read >= @header.size

    len ||= @header.size - @read
    max_read = [len, @header.size - @read].min

    ret = @io.read max_read
    @read += ret.size

    ret
  end

  def readpartial(maxlen = nil, outbuf = "".b)
    check_closed

    raise EOFError if @read >= @header.size

    maxlen ||= @header.size - @read
    max_read = [maxlen, @header.size - @read].min

    @io.readpartial(max_read, outbuf)
    @read += outbuf.size

    outbuf
  end

  ##
  # Rewinds to the beginning of the tar file entry

  def rewind
    check_closed

    @io.pos = @orig_pos
    @read = 0
  end

end
PK8H[�&-GG)share/rubygems/rubygems/package/source.rbnu�[���# frozen_string_literal: true
class Gem::Package::Source # :nodoc:
end
PK8H[�~͚��-share/rubygems/rubygems/package/tar_header.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: true
#--
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#++

##
#--
# struct tarfile_entry_posix {
#   char name[100];     # ASCII + (Z unless filled)
#   char mode[8];       # 0 padded, octal, null
#   char uid[8];        # ditto
#   char gid[8];        # ditto
#   char size[12];      # 0 padded, octal, null
#   char mtime[12];     # 0 padded, octal, null
#   char checksum[8];   # 0 padded, octal, null, space
#   char typeflag[1];   # file: "0"  dir: "5"
#   char linkname[100]; # ASCII + (Z unless filled)
#   char magic[6];      # "ustar\0"
#   char version[2];    # "00"
#   char uname[32];     # ASCIIZ
#   char gname[32];     # ASCIIZ
#   char devmajor[8];   # 0 padded, octal, null
#   char devminor[8];   # o padded, octal, null
#   char prefix[155];   # ASCII + (Z unless filled)
# };
#++
# A header for a tar file

class Gem::Package::TarHeader

  ##
  # Fields in the tar header

  FIELDS = [
    :checksum,
    :devmajor,
    :devminor,
    :gid,
    :gname,
    :linkname,
    :magic,
    :mode,
    :mtime,
    :name,
    :prefix,
    :size,
    :typeflag,
    :uid,
    :uname,
    :version,
  ].freeze

  ##
  # Pack format for a tar header

  PACK_FORMAT = 'a100' + # name
                'a8'   + # mode
                'a8'   + # uid
                'a8'   + # gid
                'a12'  + # size
                'a12'  + # mtime
                'a7a'  + # chksum
                'a'    + # typeflag
                'a100' + # linkname
                'a6'   + # magic
                'a2'   + # version
                'a32'  + # uname
                'a32'  + # gname
                'a8'   + # devmajor
                'a8'   + # devminor
                'a155'   # prefix

  ##
  # Unpack format for a tar header

  UNPACK_FORMAT = 'A100' + # name
                  'A8'   + # mode
                  'A8'   + # uid
                  'A8'   + # gid
                  'A12'  + # size
                  'A12'  + # mtime
                  'A8'   + # checksum
                  'A'    + # typeflag
                  'A100' + # linkname
                  'A6'   + # magic
                  'A2'   + # version
                  'A32'  + # uname
                  'A32'  + # gname
                  'A8'   + # devmajor
                  'A8'   + # devminor
                  'A155'   # prefix

  attr_reader(*FIELDS)

  EMPTY_HEADER = ("\0" * 512).freeze # :nodoc:

  ##
  # Creates a tar header from IO +stream+

  def self.from(stream)
    header = stream.read 512
    empty = (EMPTY_HEADER == header)

    fields = header.unpack UNPACK_FORMAT

    new :name     => fields.shift,
        :mode     => strict_oct(fields.shift),
        :uid      => oct_or_256based(fields.shift),
        :gid      => oct_or_256based(fields.shift),
        :size     => strict_oct(fields.shift),
        :mtime    => strict_oct(fields.shift),
        :checksum => strict_oct(fields.shift),
        :typeflag => fields.shift,
        :linkname => fields.shift,
        :magic    => fields.shift,
        :version  => strict_oct(fields.shift),
        :uname    => fields.shift,
        :gname    => fields.shift,
        :devmajor => strict_oct(fields.shift),
        :devminor => strict_oct(fields.shift),
        :prefix   => fields.shift,

        :empty => empty
  end

  def self.strict_oct(str)
    return str.oct if str =~ /\A[0-7]*\z/
    raise ArgumentError, "#{str.inspect} is not an octal string"
  end

  def self.oct_or_256based(str)
    # \x80 flags a positive 256-based number
    # \ff flags a negative 256-based number
    # In case we have a match, parse it as a signed binary value
    # in big-endian order, except that the high-order bit is ignored.
    return str.unpack('N2').last if str =~ /\A[\x80\xff]/n
    strict_oct(str)
  end

  ##
  # Creates a new TarHeader using +vals+

  def initialize(vals)
    unless vals[:name] && vals[:size] && vals[:prefix] && vals[:mode]
      raise ArgumentError, ":name, :size, :prefix and :mode required"
    end

    vals[:uid] ||= 0
    vals[:gid] ||= 0
    vals[:mtime] ||= 0
    vals[:checksum] ||= ""
    vals[:typeflag] = "0" if vals[:typeflag].nil? || vals[:typeflag].empty?
    vals[:magic] ||= "ustar"
    vals[:version] ||= "00"
    vals[:uname] ||= "wheel"
    vals[:gname] ||= "wheel"
    vals[:devmajor] ||= 0
    vals[:devminor] ||= 0

    FIELDS.each do |name|
      instance_variable_set "@#{name}", vals[name]
    end

    @empty = vals[:empty]
  end

  ##
  # Is the tar entry empty?

  def empty?
    @empty
  end

  def ==(other) # :nodoc:
    self.class === other and
    @checksum == other.checksum and
    @devmajor == other.devmajor and
    @devminor == other.devminor and
    @gid      == other.gid      and
    @gname    == other.gname    and
    @linkname == other.linkname and
    @magic    == other.magic    and
    @mode     == other.mode     and
    @mtime    == other.mtime    and
    @name     == other.name     and
    @prefix   == other.prefix   and
    @size     == other.size     and
    @typeflag == other.typeflag and
    @uid      == other.uid      and
    @uname    == other.uname    and
    @version  == other.version
  end

  def to_s # :nodoc:
    update_checksum
    header
  end

  ##
  # Updates the TarHeader's checksum

  def update_checksum
    header = header " " * 8
    @checksum = oct calculate_checksum(header), 6
  end

  private

  def calculate_checksum(header)
    header.unpack("C*").inject { |a, b| a + b }
  end

  def header(checksum = @checksum)
    header = [
      name,
      oct(mode, 7),
      oct(uid, 7),
      oct(gid, 7),
      oct(size, 11),
      oct(mtime, 11),
      checksum,
      " ",
      typeflag,
      linkname,
      magic,
      oct(version, 2),
      uname,
      gname,
      oct(devmajor, 7),
      oct(devminor, 7),
      prefix
    ]

    header = header.pack PACK_FORMAT

    header << ("\0" * ((512 - header.size) % 512))
  end

  def oct(num, len)
    "%0#{len}o" % num
  end

end
PK8H[�jބ	�	-share/rubygems/rubygems/package/tar_reader.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: true
#--
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#++

##
# TarReader reads tar files and allows iteration over their items

class Gem::Package::TarReader

  include Enumerable

  ##
  # Raised if the tar IO is not seekable

  class UnexpectedEOF < StandardError; end

  ##
  # Creates a new TarReader on +io+ and yields it to the block, if given.

  def self.new(io)
    reader = super

    return reader unless block_given?

    begin
      yield reader
    ensure
      reader.close
    end

    nil
  end

  ##
  # Creates a new tar file reader on +io+ which needs to respond to #pos,
  # #eof?, #read, #getc and #pos=

  def initialize(io)
    @io = io
    @init_pos = io.pos
  end

  ##
  # Close the tar file

  def close
  end

  ##
  # Iterates over files in the tarball yielding each entry

  def each
    return enum_for __method__ unless block_given?

    use_seek = @io.respond_to?(:seek)

    until @io.eof? do
      header = Gem::Package::TarHeader.from @io
      return if header.empty?

      entry = Gem::Package::TarReader::Entry.new header, @io
      size = entry.header.size

      yield entry

      skip = (512 - (size % 512)) % 512
      pending = size - entry.bytes_read

      if use_seek
        begin
          # avoid reading if the @io supports seeking
          @io.seek pending, IO::SEEK_CUR
          pending = 0
        rescue Errno::EINVAL
        end
      end

      # if seeking isn't supported or failed
      while pending > 0 do
        bytes_read = @io.read([pending, 4096].min).size
        raise UnexpectedEOF if @io.eof?
        pending -= bytes_read
      end

      @io.read skip # discard trailing zeros

      # make sure nobody can use #read, #getc or #rewind anymore
      entry.close
    end
  end

  alias each_entry each

  ##
  # NOTE: Do not call #rewind during #each

  def rewind
    if @init_pos == 0
      @io.rewind
    else
      @io.pos = @init_pos
    end
  end

  ##
  # Seeks through the tar file until it finds the +entry+ with +name+ and
  # yields it.  Rewinds the tar file to the beginning when the block
  # terminates.

  def seek(name) # :yields: entry
    found = find do |entry|
      entry.full_name == name
    end

    return unless found

    return yield found
  ensure
    rewind
  end

end

require 'rubygems/package/tar_reader/entry'
PK8H[�m�UU,share/rubygems/rubygems/package/digest_io.rbnu�[���# frozen_string_literal: true
##
# IO wrapper that creates digests of contents written to the IO it wraps.

class Gem::Package::DigestIO

  ##
  # Collected digests for wrapped writes.
  #
  #   {
  #     'SHA1'   => #<OpenSSL::Digest: [...]>,
  #     'SHA512' => #<OpenSSL::Digest: [...]>,
  #   }

  attr_reader :digests

  ##
  # Wraps +io+ and updates digest for each of the digest algorithms in
  # the +digests+ Hash.  Returns the digests hash.  Example:
  #
  #   io = StringIO.new
  #   digests = {
  #     'SHA1'   => OpenSSL::Digest.new('SHA1'),
  #     'SHA512' => OpenSSL::Digest.new('SHA512'),
  #   }
  #
  #   Gem::Package::DigestIO.wrap io, digests do |digest_io|
  #     digest_io.write "hello"
  #   end
  #
  #   digests['SHA1'].hexdigest   #=> "aaf4c61d[...]"
  #   digests['SHA512'].hexdigest #=> "9b71d224[...]"

  def self.wrap(io, digests)
    digest_io = new io, digests

    yield digest_io

    return digests
  end

  ##
  # Creates a new DigestIO instance.  Using ::wrap is recommended, see the
  # ::wrap documentation for documentation of +io+ and +digests+.

  def initialize(io, digests)
    @io = io
    @digests = digests
  end

  ##
  # Writes +data+ to the underlying IO and updates the digests

  def write(data)
    result = @io.write data

    @digests.each do |_, digest|
      digest << data
    end

    result
  end

end
PK8H[���<cc.share/rubygems/rubygems/package/file_source.rbnu�[���# frozen_string_literal: true
##
# The primary source of gems is a file on disk, including all usages
# internal to rubygems.
#
# This is a private class, do not depend on it directly. Instead, pass a path
# object to `Gem::Package.new`.

class Gem::Package::FileSource < Gem::Package::Source # :nodoc: all

  attr_reader :path

  def initialize(path)
    @path = path
  end

  def start
    @start ||= File.read path, 20
  end

  def present?
    File.exist? path
  end

  def with_write_io(&block)
    File.open path, 'wb', &block
  end

  def with_read_io(&block)
    File.open path, 'rb', &block
  end

end
PK8H[�?f�((-share/rubygems/rubygems/package/tar_writer.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: true
#--
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#++

require 'digest'

##
# Allows writing of tar files

class Gem::Package::TarWriter

  class FileOverflow < StandardError; end

  ##
  # IO wrapper that allows writing a limited amount of data

  class BoundedStream

    ##
    # Maximum number of bytes that can be written

    attr_reader :limit

    ##
    # Number of bytes written

    attr_reader :written

    ##
    # Wraps +io+ and allows up to +limit+ bytes to be written

    def initialize(io, limit)
      @io = io
      @limit = limit
      @written = 0
    end

    ##
    # Writes +data+ onto the IO, raising a FileOverflow exception if the
    # number of bytes will be more than #limit

    def write(data)
      if data.bytesize + @written > @limit
        raise FileOverflow, "You tried to feed more data than fits in the file."
      end
      @io.write data
      @written += data.bytesize
      data.bytesize
    end

  end

  ##
  # IO wrapper that provides only #write

  class RestrictedStream

    ##
    # Creates a new RestrictedStream wrapping +io+

    def initialize(io)
      @io = io
    end

    ##
    # Writes +data+ onto the IO

    def write(data)
      @io.write data
    end

  end

  ##
  # Creates a new TarWriter, yielding it if a block is given

  def self.new(io)
    writer = super

    return writer unless block_given?

    begin
      yield writer
    ensure
      writer.close
    end

    nil
  end

  ##
  # Creates a new TarWriter that will write to +io+

  def initialize(io)
    @io = io
    @closed = false
  end

  ##
  # Adds file +name+ with permissions +mode+, and yields an IO for writing the
  # file to

  def add_file(name, mode) # :yields: io
    check_closed

    name, prefix = split_name name

    init_pos = @io.pos
    @io.write Gem::Package::TarHeader::EMPTY_HEADER # placeholder for the header

    yield RestrictedStream.new(@io) if block_given?

    size = @io.pos - init_pos - 512

    remainder = (512 - (size % 512)) % 512
    @io.write "\0" * remainder

    final_pos = @io.pos
    @io.pos = init_pos

    header = Gem::Package::TarHeader.new :name => name, :mode => mode,
                                         :size => size, :prefix => prefix,
                                         :mtime => Gem.source_date_epoch

    @io.write header
    @io.pos = final_pos

    self
  end

  ##
  # Adds +name+ with permissions +mode+ to the tar, yielding +io+ for writing
  # the file.  The +digest_algorithm+ is written to a read-only +name+.sum
  # file following the given file contents containing the digest name and
  # hexdigest separated by a tab.
  #
  # The created digest object is returned.

  def add_file_digest(name, mode, digest_algorithms) # :yields: io
    digests = digest_algorithms.map do |digest_algorithm|
      digest = digest_algorithm.new
      digest_name =
        if digest.respond_to? :name
          digest.name
        else
          /::([^:]+)$/ =~ digest_algorithm.name
          $1
        end

      [digest_name, digest]
    end

    digests = Hash[*digests.flatten]

    add_file name, mode do |io|
      Gem::Package::DigestIO.wrap io, digests do |digest_io|
        yield digest_io
      end
    end

    digests
  end

  ##
  # Adds +name+ with permissions +mode+ to the tar, yielding +io+ for writing
  # the file.  The +signer+ is used to add a digest file using its
  # digest_algorithm per add_file_digest and a cryptographic signature in
  # +name+.sig.  If the signer has no key only the checksum file is added.
  #
  # Returns the digest.

  def add_file_signed(name, mode, signer)
    digest_algorithms = [
      signer.digest_algorithm,
      Digest::SHA512,
    ].compact.uniq

    digests = add_file_digest name, mode, digest_algorithms do |io|
      yield io
    end

    signature_digest = digests.values.compact.find do |digest|
      digest_name =
        if digest.respond_to? :name
          digest.name
        else
          digest.class.name[/::([^:]+)\z/, 1]
        end

      digest_name == signer.digest_name
    end

    raise "no #{signer.digest_name} in #{digests.values.compact}" unless signature_digest

    if signer.key
      signature = signer.sign signature_digest.digest

      add_file_simple "#{name}.sig", 0444, signature.length do |io|
        io.write signature
      end
    end

    digests
  end

  ##
  # Add file +name+ with permissions +mode+ +size+ bytes long.  Yields an IO
  # to write the file to.

  def add_file_simple(name, mode, size) # :yields: io
    check_closed

    name, prefix = split_name name

    header = Gem::Package::TarHeader.new(:name => name, :mode => mode,
                                         :size => size, :prefix => prefix,
                                         :mtime => Gem.source_date_epoch).to_s

    @io.write header
    os = BoundedStream.new @io, size

    yield os if block_given?

    min_padding = size - os.written
    @io.write("\0" * min_padding)

    remainder = (512 - (size % 512)) % 512
    @io.write("\0" * remainder)

    self
  end

  ##
  # Adds symlink +name+ with permissions +mode+, linking to +target+.

  def add_symlink(name, target, mode)
    check_closed

    name, prefix = split_name name

    header = Gem::Package::TarHeader.new(:name => name, :mode => mode,
                                         :size => 0, :typeflag => "2",
                                         :linkname => target,
                                         :prefix => prefix,
                                         :mtime => Gem.source_date_epoch).to_s

    @io.write header

    self
  end

  ##
  # Raises IOError if the TarWriter is closed

  def check_closed
    raise IOError, "closed #{self.class}" if closed?
  end

  ##
  # Closes the TarWriter

  def close
    check_closed

    @io.write "\0" * 1024
    flush

    @closed = true
  end

  ##
  # Is the TarWriter closed?

  def closed?
    @closed
  end

  ##
  # Flushes the TarWriter's IO

  def flush
    check_closed

    @io.flush if @io.respond_to? :flush
  end

  ##
  # Creates a new directory in the tar file +name+ with +mode+

  def mkdir(name, mode)
    check_closed

    name, prefix = split_name(name)

    header = Gem::Package::TarHeader.new :name => name, :mode => mode,
                                         :typeflag => "5", :size => 0,
                                         :prefix => prefix,
                                         :mtime => Gem.source_date_epoch

    @io.write header

    self
  end

  ##
  # Splits +name+ into a name and prefix that can fit in the TarHeader

  def split_name(name) # :nodoc:
    if name.bytesize > 256
      raise Gem::Package::TooLongFileName.new("File \"#{name}\" has a too long path (should be 256 or less)")
    end

    prefix = ''
    if name.bytesize > 100
      parts = name.split('/', -1) # parts are never empty here
      name = parts.pop            # initially empty for names with a trailing slash ("foo/.../bar/")
      prefix = parts.join('/')    # if empty, then it's impossible to split (parts is empty too)
      while !parts.empty? && (prefix.bytesize > 155 || name.empty?)
        name = parts.pop + '/' + name
        prefix = parts.join('/')
      end

      if name.bytesize > 100 or prefix.empty?
        raise Gem::Package::TooLongFileName.new("File \"#{prefix}/#{name}\" has a too long name (should be 100 or less)")
      end

      if prefix.bytesize > 155
        raise Gem::Package::TooLongFileName.new("File \"#{prefix}/#{name}\" has a too long base path (should be 155 or less)")
      end
    end

    return name, prefix
  end

end
PK8H[�����&share/rubygems/rubygems/package/old.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

##
# The format class knows the guts of the ancient .gem file format and provides
# the capability to read such ancient gems.
#
# Please pretend this doesn't exist.

class Gem::Package::Old < Gem::Package

  undef_method :spec=

  ##
  # Creates a new old-format package reader for +gem+.  Old-format packages
  # cannot be written.

  def initialize(gem, security_policy)
    require 'fileutils'
    require 'zlib'
    Gem.load_yaml

    @contents        = nil
    @gem             = gem
    @security_policy = security_policy
    @spec            = nil
  end

  ##
  # A list of file names contained in this gem

  def contents
    verify

    return @contents if @contents

    @gem.with_read_io do |io|
      read_until_dashes io # spec
      header = file_list io

      @contents = header.map { |file| file['path'] }
    end
  end

  ##
  # Extracts the files in this package into +destination_dir+

  def extract_files(destination_dir)
    verify

    errstr = "Error reading files from gem"

    @gem.with_read_io do |io|
      read_until_dashes io # spec
      header = file_list io
      raise Gem::Exception, errstr unless header

      header.each do |entry|
        full_name = entry['path']

        destination = install_location full_name, destination_dir

        file_data = String.new

        read_until_dashes io do |line|
          file_data << line
        end

        file_data = file_data.strip.unpack("m")[0]
        file_data = Zlib::Inflate.inflate file_data

        raise Gem::Package::FormatError, "#{full_name} in #{@gem} is corrupt" if
          file_data.length != entry['size'].to_i

        FileUtils.rm_rf destination

        FileUtils.mkdir_p File.dirname(destination), :mode => dir_mode && 0755

        File.open destination, 'wb', file_mode(entry['mode']) do |out|
          out.write file_data
        end

        verbose destination
      end
    end
  rescue Zlib::DataError
    raise Gem::Exception, errstr
  end

  ##
  # Reads the file list section from the old-format gem +io+

  def file_list(io) # :nodoc:
    header = String.new

    read_until_dashes io do |line|
      header << line
    end

    Gem::SafeYAML.safe_load header
  end

  ##
  # Reads lines until a "---" separator is found

  def read_until_dashes(io) # :nodoc:
    while (line = io.gets) && line.chomp.strip != "---" do
      yield line if block_given?
    end
  end

  ##
  # Skips the Ruby self-install header in +io+.

  def skip_ruby(io) # :nodoc:
    loop do
      line = io.gets

      return if line.chomp == '__END__'
      break unless line
    end

    raise Gem::Exception, "Failed to find end of Ruby script while reading gem"
  end

  ##
  # The specification for this gem

  def spec
    verify

    return @spec if @spec

    yaml = String.new

    @gem.with_read_io do |io|
      skip_ruby io
      read_until_dashes io do |line|
        yaml << line
      end
    end

    begin
      @spec = Gem::Specification.from_yaml yaml
    rescue YAML::SyntaxError
      raise Gem::Exception, "Failed to parse gem specification out of gem file"
    end
  rescue ArgumentError
    raise Gem::Exception, "Failed to parse gem specification out of gem file"
  end

  ##
  # Raises an exception if a security policy that verifies data is active.
  # Old format gems cannot be verified as signed.

  def verify
    return true unless @security_policy

    raise Gem::Security::Exception,
          'old format gems do not contain signatures and cannot be verified' if
      @security_policy.verify_data

    true
  end

end
PK8H[	繤��0share/rubygems/rubygems/package/tar_test_case.rbnu�[���# frozen_string_literal: true
require 'rubygems/test_case'
require 'rubygems/package'

##
# A test case for Gem::Package::Tar* classes

class Gem::Package::TarTestCase < Gem::TestCase

  def ASCIIZ(str, length)
    str + "\0" * (length - str.length)
  end

  def SP(s)
    s + " "
  end

  def SP_Z(s)
    s + " \0"
  end

  def Z(s)
    s + "\0"
  end

  def assert_headers_equal(expected, actual)
    expected = expected.to_s unless String === expected
    actual = actual.to_s unless String === actual

    fields = %w[
      name 100
      mode 8
      uid 8
      gid 8
      size 12
      mtime 12
      checksum 8
      typeflag 1
      linkname 100
      magic 6
      version 2
      uname 32
      gname 32
      devmajor 8
      devminor 8
      prefix 155
    ]

    offset = 0

    until fields.empty? do
      name = fields.shift
      length = fields.shift.to_i

      if name == "checksum"
        chksum_off = offset
        offset += length
        next
      end

      assert_equal expected[offset, length], actual[offset, length],
                   "Field #{name} of the tar header differs."

      offset += length
    end

    assert_equal expected[chksum_off, 8], actual[chksum_off, 8]
  end

  def calc_checksum(header)
    sum = header.unpack("C*").inject{|s,a| s + a}
    SP(Z(to_oct(sum, 6)))
  end

  def header(type, fname, dname, length, mode, mtime, checksum = nil, linkname = "")
    checksum ||= " " * 8

    arr = [                  # struct tarfile_entry_posix
      ASCIIZ(fname, 100),    # char name[100];     ASCII + (Z unless filled)
      Z(to_oct(mode, 7)),    # char mode[8];       0 padded, octal null
      Z(to_oct(0, 7)),       # char uid[8];        ditto
      Z(to_oct(0, 7)),       # char gid[8];        ditto
      Z(to_oct(length, 11)), # char size[12];      0 padded, octal, null
      Z(to_oct(mtime, 11)),  # char mtime[12];     0 padded, octal, null
      checksum,              # char checksum[8];   0 padded, octal, null, space
      type,                  # char typeflag[1];   file: "0"  dir: "5"
      ASCIIZ(linkname, 100), # char linkname[100]; ASCII + (Z unless filled)
      "ustar\0",             # char magic[6];      "ustar\0"
      "00",                  # char version[2];    "00"
      ASCIIZ("wheel", 32),   # char uname[32];     ASCIIZ
      ASCIIZ("wheel", 32),   # char gname[32];     ASCIIZ
      Z(to_oct(0, 7)),       # char devmajor[8];   0 padded, octal, null
      Z(to_oct(0, 7)),       # char devminor[8];   0 padded, octal, null
      ASCIIZ(dname, 155)     # char prefix[155];   ASCII + (Z unless filled)
    ]

    h = arr.join
    ret = h + "\0" * (512 - h.size)
    assert_equal(512, ret.size)
    ret
  end

  def tar_dir_header(name, prefix, mode, mtime)
    h = header("5", name, prefix, 0, mode, mtime)
    checksum = calc_checksum(h)
    header("5", name, prefix, 0, mode, mtime, checksum)
  end

  def tar_file_header(fname, dname, mode, length, mtime)
    h = header("0", fname, dname, length, mode, mtime)
    checksum = calc_checksum(h)
    header("0", fname, dname, length, mode, mtime, checksum)
  end

  def tar_symlink_header(fname, prefix, mode, mtime, linkname)
    h = header("2", fname, prefix, 0, mode, mtime, nil, linkname)
    checksum = calc_checksum(h)
    header("2", fname, prefix, 0, mode, mtime, checksum, linkname)
  end

  def to_oct(n, pad_size)
    "%0#{pad_size}o" % n
  end

  def util_entry(tar)
    io = TempIO.new tar

    header = Gem::Package::TarHeader.from io

    Gem::Package::TarReader::Entry.new header, io
  end

  def util_dir_entry
    util_entry tar_dir_header("foo", "bar", 0, Time.now)
  end

  def util_symlink_entry
    util_entry tar_symlink_header("foo", "bar", 0, Time.now, "link")
  end

end
PK8H[�.
�00'share/rubygems/rubygems/package_task.rbnu�[���# frozen_string_literal: true
# Copyright (c) 2003, 2004 Jim Weirich, 2009 Eric Hodel
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

require 'rubygems'
require 'rubygems/package'
begin
  gem 'rake'
rescue Gem::LoadError
end

require 'rake/packagetask'

##
# Create a package based upon a Gem::Specification.  Gem packages, as well as
# zip files and tar/gzipped packages can be produced by this task.
#
# In addition to the Rake targets generated by Rake::PackageTask, a
# Gem::PackageTask will also generate the following tasks:
#
# [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.gem"</b>]
#   Create a RubyGems package with the given name and version.
#
# Example using a Gem::Specification:
#
#   require 'rubygems'
#   require 'rubygems/package_task'
#
#   spec = Gem::Specification.new do |s|
#     s.summary = "Ruby based make-like utility."
#     s.name = 'rake'
#     s.version = PKG_VERSION
#     s.requirements << 'none'
#     s.files = PKG_FILES
#     s.description = <<-EOF
#   Rake is a Make-like program implemented in Ruby. Tasks
#   and dependencies are specified in standard Ruby syntax.
#     EOF
#   end
#
#   Gem::PackageTask.new(spec) do |pkg|
#     pkg.need_zip = true
#     pkg.need_tar = true
#   end

class Gem::PackageTask < Rake::PackageTask

  ##
  # Ruby Gem::Specification containing the metadata for this package.  The
  # name, version and package_files are automatically determined from the
  # gemspec and don't need to be explicitly provided.

  attr_accessor :gem_spec

  ##
  # Create a Gem Package task library.  Automatically define the gem if a
  # block is given.  If no block is supplied, then #define needs to be called
  # to define the task.

  def initialize(gem_spec)
    init gem_spec
    yield self if block_given?
    define if block_given?
  end

  ##
  # Initialization tasks without the "yield self" or define operations.

  def init(gem)
    super gem.full_name, :noversion
    @gem_spec = gem
    @package_files += gem_spec.files if gem_spec.files
  end

  ##
  # Create the Rake tasks and actions specified by this Gem::PackageTask.
  # (+define+ is automatically called if a block is given to +new+).

  def define
    super

    gem_file = File.basename gem_spec.cache_file
    gem_path = File.join package_dir, gem_file
    gem_dir  = File.join package_dir, gem_spec.full_name

    task :package => [:gem]

    directory package_dir
    directory gem_dir

    desc "Build the gem file #{gem_file}"
    task :gem => [gem_path]

    trace = Rake.application.options.trace
    Gem.configuration.verbose = trace

    file gem_path => [package_dir, gem_dir] + @gem_spec.files do
      chdir(gem_dir) do
        when_writing "Creating #{gem_spec.file_name}" do
          Gem::Package.build gem_spec

          verbose trace do
            mv gem_file, '..'
          end
        end
      end
    end
  end

end
PK8H[��DD&share/rubygems/rubygems/uri_parsing.rbnu�[���# frozen_string_literal: true

require "rubygems/uri_parser"

module Gem::UriParsing

  def parse_uri(source_uri)
    return source_uri unless source_uri.is_a?(String)

    uri_parser.parse(source_uri)
  end

  private :parse_uri

  def uri_parser
    require "uri"

    Gem::UriParser.new
  end

  private :uri_parser

end
PK8H[HM��"�""share/rubygems/rubygems/request.rbnu�[���# frozen_string_literal: true
require 'net/http'
require 'time'
require 'rubygems/user_interaction'

class Gem::Request

  extend Gem::UserInteraction
  include Gem::UserInteraction

  ###
  # Legacy.  This is used in tests.
  def self.create_with_proxy(uri, request_class, last_modified, proxy) # :nodoc:
    cert_files = get_cert_files
    proxy ||= get_proxy_from_env(uri.scheme)
    pool = ConnectionPools.new proxy_uri(proxy), cert_files

    new(uri, request_class, last_modified, pool.pool_for(uri))
  end

  def self.proxy_uri(proxy) # :nodoc:
    require "uri"
    case proxy
    when :no_proxy then nil
    when URI::HTTP then proxy
    else URI.parse(proxy)
    end
  end

  def initialize(uri, request_class, last_modified, pool)
    @uri = uri
    @request_class = request_class
    @last_modified = last_modified
    @requests = Hash.new 0
    @user_agent = user_agent

    @connection_pool = pool
  end

  def proxy_uri; @connection_pool.proxy_uri; end
  def cert_files; @connection_pool.cert_files; end

  def self.get_cert_files
    pattern = File.expand_path("./ssl_certs/*/*.pem", File.dirname(__FILE__))
    Dir.glob(pattern)
  end

  def self.configure_connection_for_https(connection, cert_files)
    require 'net/https'
    connection.use_ssl = true
    connection.verify_mode =
      Gem.configuration.ssl_verify_mode || OpenSSL::SSL::VERIFY_PEER
    store = OpenSSL::X509::Store.new

    if Gem.configuration.ssl_client_cert
      pem = File.read Gem.configuration.ssl_client_cert
      connection.cert = OpenSSL::X509::Certificate.new pem
      connection.key = OpenSSL::PKey::RSA.new pem
    end

    store.set_default_paths
    cert_files.each do |ssl_cert_file|
      store.add_file ssl_cert_file
    end
    if Gem.configuration.ssl_ca_cert
      if File.directory? Gem.configuration.ssl_ca_cert
        store.add_path Gem.configuration.ssl_ca_cert
      else
        store.add_file Gem.configuration.ssl_ca_cert
      end
    end
    connection.cert_store = store

    connection.verify_callback = proc do |preverify_ok, store_context|
      verify_certificate store_context unless preverify_ok

      preverify_ok
    end

    connection
  rescue LoadError => e
    raise unless (e.respond_to?(:path) && e.path == 'openssl') ||
                 e.message =~ / -- openssl$/

    raise Gem::Exception.new(
            'Unable to require openssl, install OpenSSL and rebuild Ruby (preferred) or use non-HTTPS sources')
  end

  def self.verify_certificate(store_context)
    depth  = store_context.error_depth
    error  = store_context.error_string
    number = store_context.error
    cert   = store_context.current_cert

    ui.alert_error "SSL verification error at depth #{depth}: #{error} (#{number})"

    extra_message = verify_certificate_message number, cert

    ui.alert_error extra_message if extra_message
  end

  def self.verify_certificate_message(error_number, cert)
    return unless cert
    case error_number
    when OpenSSL::X509::V_ERR_CERT_HAS_EXPIRED then
      "Certificate #{cert.subject} expired at #{cert.not_after.iso8601}"
    when OpenSSL::X509::V_ERR_CERT_NOT_YET_VALID then
      "Certificate #{cert.subject} not valid until #{cert.not_before.iso8601}"
    when OpenSSL::X509::V_ERR_CERT_REJECTED then
      "Certificate #{cert.subject} is rejected"
    when OpenSSL::X509::V_ERR_CERT_UNTRUSTED then
      "Certificate #{cert.subject} is not trusted"
    when OpenSSL::X509::V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT then
      "Certificate #{cert.issuer} is not trusted"
    when OpenSSL::X509::V_ERR_INVALID_CA then
      "Certificate #{cert.subject} is an invalid CA certificate"
    when OpenSSL::X509::V_ERR_INVALID_PURPOSE then
      "Certificate #{cert.subject} has an invalid purpose"
    when OpenSSL::X509::V_ERR_SELF_SIGNED_CERT_IN_CHAIN then
      "Root certificate is not trusted (#{cert.subject})"
    when OpenSSL::X509::V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY then
      "You must add #{cert.issuer} to your local trusted store"
    when
      OpenSSL::X509::V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE then
      "Cannot verify certificate issued by #{cert.issuer}"
    end
  end

  ##
  # Creates or an HTTP connection based on +uri+, or retrieves an existing
  # connection, using a proxy if needed.

  def connection_for(uri)
    @connection_pool.checkout
  rescue defined?(OpenSSL::SSL) ? OpenSSL::SSL::SSLError : Errno::EHOSTDOWN,
         Errno::EHOSTDOWN => e
    raise Gem::RemoteFetcher::FetchError.new(e.message, uri)
  end

  def fetch
    request = @request_class.new @uri.request_uri

    unless @uri.nil? || @uri.user.nil? || @uri.user.empty?
      request.basic_auth Gem::UriFormatter.new(@uri.user).unescape,
                         Gem::UriFormatter.new(@uri.password).unescape
    end

    request.add_field 'User-Agent', @user_agent
    request.add_field 'Connection', 'keep-alive'
    request.add_field 'Keep-Alive', '30'

    if @last_modified
      request.add_field 'If-Modified-Since', @last_modified.httpdate
    end

    yield request if block_given?

    perform_request request
  end

  ##
  # Returns a proxy URI for the given +scheme+ if one is set in the
  # environment variables.

  def self.get_proxy_from_env(scheme = 'http')
    _scheme = scheme.downcase
    _SCHEME = scheme.upcase
    env_proxy = ENV["#{_scheme}_proxy"] || ENV["#{_SCHEME}_PROXY"]

    no_env_proxy = env_proxy.nil? || env_proxy.empty?

    if no_env_proxy
      return (_scheme == 'https' || _scheme == 'http') ?
        :no_proxy : get_proxy_from_env('http')
    end

    require "uri"
    uri = URI(Gem::UriFormatter.new(env_proxy).normalize)

    if uri and uri.user.nil? and uri.password.nil?
      user     = ENV["#{_scheme}_proxy_user"] || ENV["#{_SCHEME}_PROXY_USER"]
      password = ENV["#{_scheme}_proxy_pass"] || ENV["#{_SCHEME}_PROXY_PASS"]

      uri.user     = Gem::UriFormatter.new(user).escape
      uri.password = Gem::UriFormatter.new(password).escape
    end

    uri
  end

  def perform_request(request) # :nodoc:
    connection = connection_for @uri

    retried = false
    bad_response = false

    begin
      @requests[connection.object_id] += 1

      verbose "#{request.method} #{@uri}"

      file_name = File.basename(@uri.path)
      # perform download progress reporter only for gems
      if request.response_body_permitted? && file_name =~ /\.gem$/
        reporter = ui.download_reporter
        response = connection.request(request) do |incomplete_response|
          if Net::HTTPOK === incomplete_response
            reporter.fetch(file_name, incomplete_response.content_length)
            downloaded = 0
            data = String.new

            incomplete_response.read_body do |segment|
              data << segment
              downloaded += segment.length
              reporter.update(downloaded)
            end
            reporter.done
            if incomplete_response.respond_to? :body=
              incomplete_response.body = data
            else
              incomplete_response.instance_variable_set(:@body, data)
            end
          end
        end
      else
        response = connection.request request
      end

      verbose "#{response.code} #{response.message}"

    rescue Net::HTTPBadResponse
      verbose "bad response"

      reset connection

      raise Gem::RemoteFetcher::FetchError.new('too many bad responses', @uri) if bad_response

      bad_response = true
      retry
    rescue Net::HTTPFatalError
      verbose "fatal error"

      raise Gem::RemoteFetcher::FetchError.new('fatal error', @uri)
    # HACK work around EOFError bug in Net::HTTP
    # NOTE Errno::ECONNABORTED raised a lot on Windows, and make impossible
    # to install gems.
    rescue EOFError, Timeout::Error,
           Errno::ECONNABORTED, Errno::ECONNRESET, Errno::EPIPE

      requests = @requests[connection.object_id]
      verbose "connection reset after #{requests} requests, retrying"

      raise Gem::RemoteFetcher::FetchError.new('too many connection resets', @uri) if retried

      reset connection

      retried = true
      retry
    end

    response
  ensure
    @connection_pool.checkin connection
  end

  ##
  # Resets HTTP connection +connection+.

  def reset(connection)
    @requests.delete connection.object_id

    connection.finish
    connection.start
  end

  def user_agent
    ua = "RubyGems/#{Gem::VERSION} #{Gem::Platform.local}".dup

    ruby_version = RUBY_VERSION
    ruby_version += 'dev' if RUBY_PATCHLEVEL == -1

    ua << " Ruby/#{ruby_version} (#{RUBY_RELEASE_DATE}"
    if RUBY_PATCHLEVEL >= 0
      ua << " patchlevel #{RUBY_PATCHLEVEL}"
    elsif defined?(RUBY_REVISION)
      ua << " revision #{RUBY_REVISION}"
    end
    ua << ")"

    ua << " #{RUBY_ENGINE}" if RUBY_ENGINE != 'ruby'

    ua
  end

end

require 'rubygems/request/http_pool'
require 'rubygems/request/https_pool'
require 'rubygems/request/connection_pools'
PK8H[.���1�1"share/rubygems/rubygems/version.rbnu�[���# frozen_string_literal: true
##
# The Version class processes string versions into comparable
# values. A version string should normally be a series of numbers
# separated by periods. Each part (digits separated by periods) is
# considered its own number, and these are used for sorting. So for
# instance, 3.10 sorts higher than 3.2 because ten is greater than
# two.
#
# If any part contains letters (currently only a-z are supported) then
# that version is considered prerelease. Versions with a prerelease
# part in the Nth part sort less than versions with N-1
# parts. Prerelease parts are sorted alphabetically using the normal
# Ruby string sorting rules. If a prerelease part contains both
# letters and numbers, it will be broken into multiple parts to
# provide expected sort behavior (1.0.a10 becomes 1.0.a.10, and is
# greater than 1.0.a9).
#
# Prereleases sort between real releases (newest to oldest):
#
# 1. 1.0
# 2. 1.0.b1
# 3. 1.0.a.2
# 4. 0.9
#
# If you want to specify a version restriction that includes both prereleases
# and regular releases of the 1.x series this is the best way:
#
#   s.add_dependency 'example', '>= 1.0.0.a', '< 2.0.0'
#
# == How Software Changes
#
# Users expect to be able to specify a version constraint that gives them
# some reasonable expectation that new versions of a library will work with
# their software if the version constraint is true, and not work with their
# software if the version constraint is false.  In other words, the perfect
# system will accept all compatible versions of the library and reject all
# incompatible versions.
#
# Libraries change in 3 ways (well, more than 3, but stay focused here!).
#
# 1. The change may be an implementation detail only and have no effect on
#    the client software.
# 2. The change may add new features, but do so in a way that client software
#    written to an earlier version is still compatible.
# 3. The change may change the public interface of the library in such a way
#    that old software is no longer compatible.
#
# Some examples are appropriate at this point.  Suppose I have a Stack class
# that supports a <tt>push</tt> and a <tt>pop</tt> method.
#
# === Examples of Category 1 changes:
#
# * Switch from an array based implementation to a linked-list based
#   implementation.
# * Provide an automatic (and transparent) backing store for large stacks.
#
# === Examples of Category 2 changes might be:
#
# * Add a <tt>depth</tt> method to return the current depth of the stack.
# * Add a <tt>top</tt> method that returns the current top of stack (without
#   changing the stack).
# * Change <tt>push</tt> so that it returns the item pushed (previously it
#   had no usable return value).
#
# === Examples of Category 3 changes might be:
#
# * Changes <tt>pop</tt> so that it no longer returns a value (you must use
#   <tt>top</tt> to get the top of the stack).
# * Rename the methods to <tt>push_item</tt> and <tt>pop_item</tt>.
#
# == RubyGems Rational Versioning
#
# * Versions shall be represented by three non-negative integers, separated
#   by periods (e.g. 3.1.4).  The first integers is the "major" version
#   number, the second integer is the "minor" version number, and the third
#   integer is the "build" number.
#
# * A category 1 change (implementation detail) will increment the build
#   number.
#
# * A category 2 change (backwards compatible) will increment the minor
#   version number and reset the build number.
#
# * A category 3 change (incompatible) will increment the major build number
#   and reset the minor and build numbers.
#
# * Any "public" release of a gem should have a different version.  Normally
#   that means incrementing the build number.  This means a developer can
#   generate builds all day long, but as soon as they make a public release,
#   the version must be updated.
#
# === Examples
#
# Let's work through a project lifecycle using our Stack example from above.
#
# Version 0.0.1:: The initial Stack class is release.
# Version 0.0.2:: Switched to a linked=list implementation because it is
#                 cooler.
# Version 0.1.0:: Added a <tt>depth</tt> method.
# Version 1.0.0:: Added <tt>top</tt> and made <tt>pop</tt> return nil
#                 (<tt>pop</tt> used to return the  old top item).
# Version 1.1.0:: <tt>push</tt> now returns the value pushed (it used it
#                 return nil).
# Version 1.1.1:: Fixed a bug in the linked list implementation.
# Version 1.1.2:: Fixed a bug introduced in the last fix.
#
# Client A needs a stack with basic push/pop capability.  They write to the
# original interface (no <tt>top</tt>), so their version constraint looks like:
#
#   gem 'stack', '>= 0.0'
#
# Essentially, any version is OK with Client A.  An incompatible change to
# the library will cause them grief, but they are willing to take the chance
# (we call Client A optimistic).
#
# Client B is just like Client A except for two things: (1) They use the
# <tt>depth</tt> method and (2) they are worried about future
# incompatibilities, so they write their version constraint like this:
#
#   gem 'stack', '~> 0.1'
#
# The <tt>depth</tt> method was introduced in version 0.1.0, so that version
# or anything later is fine, as long as the version stays below version 1.0
# where incompatibilities are introduced.  We call Client B pessimistic
# because they are worried about incompatible future changes (it is OK to be
# pessimistic!).
#
# == Preventing Version Catastrophe:
#
# From: http://blog.zenspider.com/2008/10/rubygems-howto-preventing-cata.html
#
# Let's say you're depending on the fnord gem version 2.y.z. If you
# specify your dependency as ">= 2.0.0" then, you're good, right? What
# happens if fnord 3.0 comes out and it isn't backwards compatible
# with 2.y.z? Your stuff will break as a result of using ">=". The
# better route is to specify your dependency with an "approximate" version
# specifier ("~>"). They're a tad confusing, so here is how the dependency
# specifiers work:
#
#   Specification From  ... To (exclusive)
#   ">= 3.0"      3.0   ... &infin;
#   "~> 3.0"      3.0   ... 4.0
#   "~> 3.0.0"    3.0.0 ... 3.1
#   "~> 3.5"      3.5   ... 4.0
#   "~> 3.5.0"    3.5.0 ... 3.6
#   "~> 3"        3.0   ... 4.0
#
# For the last example, single-digit versions are automatically extended with
# a zero to give a sensible result.

class Gem::Version

  autoload :Requirement, File.expand_path('requirement', __dir__)

  include Comparable

  VERSION_PATTERN = '[0-9]+(?>\.[0-9a-zA-Z]+)*(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?'.freeze # :nodoc:
  ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/.freeze # :nodoc:

  ##
  # A string representation of this Version.

  def version
    @version.dup
  end

  alias to_s version

  ##
  # True if the +version+ string matches RubyGems' requirements.

  def self.correct?(version)
    unless Gem::Deprecate.skip
      warn "nil versions are discouraged and will be deprecated in Rubygems 4" if version.nil?
    end

    !!(version.to_s =~ ANCHORED_VERSION_PATTERN)
  end

  ##
  # Factory method to create a Version object. Input may be a Version
  # or a String. Intended to simplify client code.
  #
  #   ver1 = Version.create('1.3.17')   # -> (Version object)
  #   ver2 = Version.create(ver1)       # -> (ver1)
  #   ver3 = Version.create(nil)        # -> nil

  def self.create(input)
    if self === input  # check yourself before you wreck yourself
      input
    elsif input.nil?
      nil
    else
      new input
    end
  end

  @@all = {}
  @@bump = {}
  @@release = {}

  def self.new(version) # :nodoc:
    return super unless Gem::Version == self

    @@all[version] ||= super
  end

  ##
  # Constructs a Version from the +version+ string.  A version string is a
  # series of digits or ASCII letters separated by dots.

  def initialize(version)
    unless self.class.correct?(version)
      raise ArgumentError, "Malformed version number string #{version}"
    end

    # If version is an empty string convert it to 0
    version = 0 if version.is_a?(String) && version =~ /\A\s*\Z/

    @version = version.to_s.strip.gsub("-",".pre.")
    @segments = nil
  end

  ##
  # Return a new version object where the next to the last revision
  # number is one greater (e.g., 5.3.1 => 5.4).
  #
  # Pre-release (alpha) parts, e.g, 5.3.1.b.2 => 5.4, are ignored.

  def bump
    @@bump[self] ||= begin
                       segments = self.segments
                       segments.pop while segments.any? { |s| String === s }
                       segments.pop if segments.size > 1

                       segments[-1] = segments[-1].succ
                       self.class.new segments.join(".")
                     end
  end

  ##
  # A Version is only eql? to another version if it's specified to the
  # same precision. Version "1.0" is not the same as version "1".

  def eql?(other)
    self.class === other and @version == other._version
  end

  def hash # :nodoc:
    canonical_segments.hash
  end

  def init_with(coder) # :nodoc:
    yaml_initialize coder.tag, coder.map
  end

  def inspect # :nodoc:
    "#<#{self.class} #{version.inspect}>"
  end

  ##
  # Dump only the raw version string, not the complete object. It's a
  # string for backwards (RubyGems 1.3.5 and earlier) compatibility.

  def marshal_dump
    [version]
  end

  ##
  # Load custom marshal format. It's a string for backwards (RubyGems
  # 1.3.5 and earlier) compatibility.

  def marshal_load(array)
    initialize array[0]
  end

  def yaml_initialize(tag, map) # :nodoc:
    @version = map['version']
    @segments = nil
    @hash = nil
  end

  def to_yaml_properties # :nodoc:
    ["@version"]
  end

  def encode_with(coder) # :nodoc:
    coder.add 'version', @version
  end

  ##
  # A version is considered a prerelease if it contains a letter.

  def prerelease?
    unless instance_variable_defined? :@prerelease
      @prerelease = !!(@version =~ /[a-zA-Z]/)
    end
    @prerelease
  end

  def pretty_print(q) # :nodoc:
    q.text "Gem::Version.new(#{version.inspect})"
  end

  ##
  # The release for this version (e.g. 1.2.0.a -> 1.2.0).
  # Non-prerelease versions return themselves.

  def release
    @@release[self] ||= if prerelease?
                          segments = self.segments
                          segments.pop while segments.any? { |s| String === s }
                          self.class.new segments.join('.')
                        else
                          self
                        end
  end

  def segments # :nodoc:
    _segments.dup
  end

  ##
  # A recommended version for use with a ~> Requirement.

  def approximate_recommendation
    segments = self.segments

    segments.pop    while segments.any? { |s| String === s }
    segments.pop    while segments.size > 2
    segments.push 0 while segments.size < 2

    recommendation = "~> #{segments.join(".")}"
    recommendation += ".a" if prerelease?
    recommendation
  end

  ##
  # Compares this version with +other+ returning -1, 0, or 1 if the
  # other version is larger, the same, or smaller than this
  # one. Attempts to compare to something that's not a
  # <tt>Gem::Version</tt> return +nil+.

  def <=>(other)
    return unless Gem::Version === other
    return 0 if @version == other._version || canonical_segments == other.canonical_segments

    lhsegments = canonical_segments
    rhsegments = other.canonical_segments

    lhsize = lhsegments.size
    rhsize = rhsegments.size
    limit  = (lhsize > rhsize ? lhsize : rhsize) - 1

    i = 0

    while i <= limit
      lhs, rhs = lhsegments[i] || 0, rhsegments[i] || 0
      i += 1

      next      if lhs == rhs
      return -1 if String  === lhs && Numeric === rhs
      return  1 if Numeric === lhs && String  === rhs

      return lhs <=> rhs
    end

    return 0
  end

  def canonical_segments
    @canonical_segments ||=
      _split_segments.map! do |segments|
        segments.reverse_each.drop_while {|s| s == 0 }.reverse
      end.reduce(&:concat)
  end

  def freeze
    prerelease?
    canonical_segments
    super
  end

  protected

  def _version
    @version
  end

  def _segments
    # segments is lazy so it can pick up version values that come from
    # old marshaled versions, which don't go through marshal_load.
    # since this version object is cached in @@all, its @segments should be frozen

    @segments ||= @version.scan(/[0-9]+|[a-z]+/i).map do |s|
      /^\d+$/ =~ s ? s.to_i : s
    end.freeze
  end

  def _split_segments
    string_start = _segments.index {|s| s.is_a?(String) }
    string_segments = segments
    numeric_segments = string_segments.slice!(0, string_start || string_segments.size)
    return numeric_segments, string_segments
  end

end
PK8H[�z5��Z�Z!share/rubygems/rubygems/server.rbnu�[���# frozen_string_literal: true
require 'webrick'
require 'zlib'
require 'erb'
require 'uri'

require 'rubygems'
require 'rubygems/rdoc'

##
# Gem::Server and allows users to serve gems for consumption by
# `gem --remote-install`.
#
# gem_server starts an HTTP server on the given port and serves the following:
# * "/" - Browsing of gem spec files for installed gems
# * "/specs.#{Gem.marshal_version}.gz" - specs name/version/platform index
# * "/latest_specs.#{Gem.marshal_version}.gz" - latest specs
#   name/version/platform index
# * "/quick/" - Individual gemspecs
# * "/gems" - Direct access to download the installable gems
# * "/rdoc?q=" - Search for installed rdoc documentation
#
# == Usage
#
#   gem_server = Gem::Server.new Gem.dir, 8089, false
#   gem_server.run
#
#--
# TODO Refactor into a real WEBrick servlet to remove code duplication.

class Gem::Server

  attr_reader :spec_dirs

  include ERB::Util
  include Gem::UserInteraction

  SEARCH = <<-ERB.freeze
      <form class="headerSearch" name="headerSearchForm" method="get" action="/rdoc">
        <div id="search" style="float:right">
          <label for="q">Filter/Search</label>
          <input id="q" type="text" style="width:10em" name="q">
          <button type="submit" style="display:none"></button>
        </div>
      </form>
  ERB

  DOC_TEMPLATE = <<-'ERB'.freeze
  <?xml version="1.0" encoding="iso-8859-1"?>
  <!DOCTYPE html
       PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>RubyGems Documentation Index</title>
    <link rel="stylesheet" href="gem-server-rdoc-style.css" type="text/css" media="screen" />
  </head>
  <body>
    <div id="fileHeader">
<%= SEARCH %>
      <h1>RubyGems Documentation Index</h1>
    </div>
    <!-- banner header -->

  <div id="bodyContent">
    <div id="contextContent">
      <div id="description">
        <h1>Summary</h1>
  <p>There are <%=values["gem_count"]%> gems installed:</p>
  <p>
  <%= values["specs"].map { |v| "<a href=\"##{u v["name"]}\">#{h v["name"]}</a>" }.join ', ' %>.
  <h1>Gems</h1>

  <dl>
  <% values["specs"].each do |spec| %>
    <dt>
    <% if spec["first_name_entry"] then %>
      <a name="<%=h spec["name"]%>"></a>
    <% end %>

    <b><%=h spec["name"]%> <%=h spec["version"]%></b>

    <% if spec["ri_installed"] || spec["rdoc_installed"] then %>
      <a href="<%=spec["doc_path"]%>">[rdoc]</a>
    <% else %>
      <span title="rdoc not installed">[rdoc]</span>
    <% end %>

    <% if spec["homepage"] then %>
      <a href="<%=uri_encode spec["homepage"]%>" title="<%=h spec["homepage"]%>">[www]</a>
    <% else %>
      <span title="no homepage available">[www]</span>
    <% end %>

    <% if spec["has_deps"] then %>
     - depends on
      <%= spec["dependencies"].map { |v| "<a href=\"##{u v["name"]}\">#{h v["name"]}</a>" }.join ', ' %>.
    <% end %>
    </dt>
    <dd>
    <%=spec["summary"]%>
    <% if spec["executables"] then %>
      <br/>

      <% if spec["only_one_executable"] then %>
          Executable is
      <% else %>
          Executables are
      <%end%>

      <%= spec["executables"].map { |v| "<span class=\"context-item-name\">#{h v["executable"]}</span>"}.join ', ' %>.

    <%end%>
    <br/>
    <br/>
    </dd>
  <% end %>
  </dl>

      </div>
     </div>
    </div>
  <div id="validator-badges">
    <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
  </div>
  </body>
  </html>
  ERB

  # CSS is copy & paste from rdoc-style.css, RDoc V1.0.1 - 20041108
  RDOC_CSS = <<-CSS.freeze
body {
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size:   90%;
    margin: 0;
    margin-left: 40px;
    padding: 0;
    background: white;
}

h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
h1 { font-size: 150%; }
h2,h3,h4 { margin-top: 1em; }

a { background: #eef; color: #039; text-decoration: none; }
a:hover { background: #039; color: #eef; }

/* Override the base stylesheets Anchor inside a table cell */
td > a {
  background: transparent;
  color: #039;
  text-decoration: none;
}

/* and inside a section title */
.section-title > a {
  background: transparent;
  color: #eee;
  text-decoration: none;
}

/* === Structural elements =================================== */

div#index {
    margin: 0;
    margin-left: -40px;
    padding: 0;
    font-size: 90%;
}


div#index a {
    margin-left: 0.7em;
}

div#index .section-bar {
   margin-left: 0px;
   padding-left: 0.7em;
   background: #ccc;
   font-size: small;
}


div#classHeader, div#fileHeader {
    width: auto;
    color: white;
    padding: 0.5em 1.5em 0.5em 1.5em;
    margin: 0;
    margin-left: -40px;
    border-bottom: 3px solid #006;
}

div#classHeader a, div#fileHeader a {
    background: inherit;
    color: white;
}

div#classHeader td, div#fileHeader td {
    background: inherit;
    color: white;
}


div#fileHeader {
    background: #057;
}

div#classHeader {
    background: #048;
}


.class-name-in-header {
  font-size:  180%;
  font-weight: bold;
}


div#bodyContent {
    padding: 0 1.5em 0 1.5em;
}

div#description {
    padding: 0.5em 1.5em;
    background: #efefef;
    border: 1px dotted #999;
}

div#description h1,h2,h3,h4,h5,h6 {
    color: #125;;
    background: transparent;
}

div#validator-badges {
    text-align: center;
}
div#validator-badges img { border: 0; }

div#copyright {
    color: #333;
    background: #efefef;
    font: 0.75em sans-serif;
    margin-top: 5em;
    margin-bottom: 0;
    padding: 0.5em 2em;
}


/* === Classes =================================== */

table.header-table {
    color: white;
    font-size: small;
}

.type-note {
    font-size: small;
    color: #DEDEDE;
}

.xxsection-bar {
    background: #eee;
    color: #333;
    padding: 3px;
}

.section-bar {
   color: #333;
   border-bottom: 1px solid #999;
    margin-left: -20px;
}


.section-title {
    background: #79a;
    color: #eee;
    padding: 3px;
    margin-top: 2em;
    margin-left: -30px;
    border: 1px solid #999;
}

.top-aligned-row {  vertical-align: top }
.bottom-aligned-row { vertical-align: bottom }

/* --- Context section classes ----------------------- */

.context-row { }
.context-item-name { font-family: monospace; font-weight: bold; color: black; }
.context-item-value { font-size: small; color: #448; }
.context-item-desc { color: #333; padding-left: 2em; }

/* --- Method classes -------------------------- */
.method-detail {
    background: #efefef;
    padding: 0;
    margin-top: 0.5em;
    margin-bottom: 1em;
    border: 1px dotted #ccc;
}
.method-heading {
  color: black;
  background: #ccc;
  border-bottom: 1px solid #666;
  padding: 0.2em 0.5em 0 0.5em;
}
.method-signature { color: black; background: inherit; }
.method-name { font-weight: bold; }
.method-args { font-style: italic; }
.method-description { padding: 0 0.5em 0 0.5em; }

/* --- Source code sections -------------------- */

a.source-toggle { font-size: 90%; }
div.method-source-code {
    background: #262626;
    color: #ffdead;
    margin: 1em;
    padding: 0.5em;
    border: 1px dashed #999;
    overflow: hidden;
}

div.method-source-code pre { color: #ffdead; overflow: hidden; }

/* --- Ruby keyword styles --------------------- */

.standalone-code { background: #221111; color: #ffdead; overflow: hidden; }

.ruby-constant  { color: #7fffd4; background: transparent; }
.ruby-keyword { color: #00ffff; background: transparent; }
.ruby-ivar    { color: #eedd82; background: transparent; }
.ruby-operator  { color: #00ffee; background: transparent; }
.ruby-identifier { color: #ffdead; background: transparent; }
.ruby-node    { color: #ffa07a; background: transparent; }
.ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
.ruby-regexp  { color: #ffa07a; background: transparent; }
.ruby-value   { color: #7fffd4; background: transparent; }
  CSS

  RDOC_NO_DOCUMENTATION = <<-'ERB'.freeze
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>Found documentation</title>
    <link rel="stylesheet" href="gem-server-rdoc-style.css" type="text/css" media="screen" />
  </head>
  <body>
    <div id="fileHeader">
<%= SEARCH %>
      <h1>No documentation found</h1>
    </div>

    <div id="bodyContent">
      <div id="contextContent">
        <div id="description">
          <p>No gems matched <%= h query.inspect %></p>

          <p>
            Back to <a href="/">complete gem index</a>
          </p>

        </div>
      </div>
    </div>
    <div id="validator-badges">
      <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
    </div>
  </body>
</html>
  ERB

  RDOC_SEARCH_TEMPLATE = <<-'ERB'.freeze
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>Found documentation</title>
    <link rel="stylesheet" href="gem-server-rdoc-style.css" type="text/css" media="screen" />
  </head>
  <body>
    <div id="fileHeader">
<%= SEARCH %>
      <h1>Found documentation</h1>
    </div>
    <!-- banner header -->

    <div id="bodyContent">
      <div id="contextContent">
        <div id="description">
          <h1>Summary</h1>
          <p><%=doc_items.length%> documentation topics found.</p>
          <h1>Topics</h1>

          <dl>
          <% doc_items.each do |doc_item| %>
            <dt>
              <b><%=doc_item[:name]%></b>
              <a href="<%=u doc_item[:url]%>">[rdoc]</a>
            </dt>
            <dd>
              <%=h doc_item[:summary]%>
              <br/>
              <br/>
            </dd>
          <% end %>
          </dl>

          <p>
            Back to <a href="/">complete gem index</a>
          </p>

        </div>
      </div>
    </div>
    <div id="validator-badges">
      <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
    </div>
  </body>
</html>
  ERB

  def self.run(options)
    new(options[:gemdir], options[:port], options[:daemon],
        options[:launch], options[:addresses]).run
  end

  def initialize(gem_dirs, port, daemon, launch = nil, addresses = nil)
    Gem::RDoc.load_rdoc
    Socket.do_not_reverse_lookup = true

    @gem_dirs  = Array gem_dirs
    @port      = port
    @daemon    = daemon
    @launch    = launch
    @addresses = addresses

    logger  = WEBrick::Log.new nil, WEBrick::BasicLog::FATAL
    @server = WEBrick::HTTPServer.new :DoNotListen => true, :Logger => logger

    @spec_dirs = @gem_dirs.map { |gem_dir| File.join gem_dir, 'specifications' }
    @spec_dirs.reject! { |spec_dir| !File.directory? spec_dir }

    reset_gems

    @have_rdoc_4_plus = nil
  end

  def add_date(res)
    res['date'] = @spec_dirs.map do |spec_dir|
      File.stat(spec_dir).mtime
    end.max
  end

  def uri_encode(str)
    str.gsub(URI::UNSAFE) do |match|
      match.each_byte.map { |c| sprintf('%%%02X', c.ord) }.join
    end
  end

  def doc_root(gem_name)
    if have_rdoc_4_plus?
      "/doc_root/#{u gem_name}/"
    else
      "/doc_root/#{u gem_name}/rdoc/index.html"
    end
  end

  def have_rdoc_4_plus?
    @have_rdoc_4_plus ||=
      Gem::Requirement.new('>= 4.0.0.preview2').satisfied_by? Gem::RDoc.rdoc_version
  end

  def latest_specs(req, res)
    reset_gems

    res['content-type'] = 'application/x-gzip'

    add_date res

    latest_specs = Gem::Specification.latest_specs

    specs = latest_specs.sort.map do |spec|
      platform = spec.original_platform || Gem::Platform::RUBY
      [spec.name, spec.version, platform]
    end

    specs = Marshal.dump specs

    if req.path =~ /\.gz$/
      specs = Gem::Util.gzip specs
      res['content-type'] = 'application/x-gzip'
    else
      res['content-type'] = 'application/octet-stream'
    end

    if req.request_method == 'HEAD'
      res['content-length'] = specs.length
    else
      res.body << specs
    end
  end

  ##
  # Creates server sockets based on the addresses option.  If no addresses
  # were given a server socket for all interfaces is created.

  def listen(addresses = @addresses)
    addresses = [nil] unless addresses

    listeners = 0

    addresses.each do |address|
      begin
        @server.listen address, @port
        @server.listeners[listeners..-1].each do |listener|
          host, port = listener.addr.values_at 2, 1
          host = "[#{host}]" if host =~ /:/ # we don't reverse lookup
          say "Server started at http://#{host}:#{port}"
        end

        listeners = @server.listeners.length
      rescue SystemCallError
        next
      end
    end

    if @server.listeners.empty?
      say "Unable to start a server."
      say "Check for running servers or your --bind and --port arguments"
      terminate_interaction 1
    end
  end

  def prerelease_specs(req, res)
    reset_gems

    res['content-type'] = 'application/x-gzip'

    add_date res

    specs = Gem::Specification.select do |spec|
      spec.version.prerelease?
    end.sort.map do |spec|
      platform = spec.original_platform || Gem::Platform::RUBY
      [spec.name, spec.version, platform]
    end

    specs = Marshal.dump specs

    if req.path =~ /\.gz$/
      specs = Gem::Util.gzip specs
      res['content-type'] = 'application/x-gzip'
    else
      res['content-type'] = 'application/octet-stream'
    end

    if req.request_method == 'HEAD'
      res['content-length'] = specs.length
    else
      res.body << specs
    end
  end

  def quick(req, res)
    reset_gems

    res['content-type'] = 'text/plain'
    add_date res

    case req.request_uri.path
    when %r|^/quick/(Marshal.#{Regexp.escape Gem.marshal_version}/)?(.*?)\.gemspec\.rz$| then
      marshal_format, full_name = $1, $2
      specs = Gem::Specification.find_all_by_full_name(full_name)

      selector = full_name.inspect

      if specs.empty?
        res.status = 404
        res.body = "No gems found matching #{selector}"
      elsif specs.length > 1
        res.status = 500
        res.body = "Multiple gems found matching #{selector}"
      elsif marshal_format
        res['content-type'] = 'application/x-deflate'
        res.body << Gem.deflate(Marshal.dump(specs.first))
      end
    else
      raise WEBrick::HTTPStatus::NotFound, "`#{req.path}' not found."
    end
  end

  def root(req, res)
    reset_gems

    add_date res

    raise WEBrick::HTTPStatus::NotFound, "`#{req.path}' not found." unless
      req.path == '/'

    specs = []
    total_file_count = 0

    Gem::Specification.each do |spec|
      total_file_count += spec.files.size
      deps = spec.dependencies.map do |dep|
        {
          "name"    => dep.name,
          "type"    => dep.type,
          "version" => dep.requirement.to_s,
        }
      end

      deps = deps.sort_by { |dep| [dep["name"].downcase, dep["version"]] }
      deps.last["is_last"] = true unless deps.empty?

      # executables
      executables = spec.executables.sort.collect { |exec| {"executable" => exec} }
      executables = nil if executables.empty?
      executables.last["is_last"] = true if executables

      # Pre-process spec homepage for safety reasons
      begin
        homepage_uri = URI.parse(spec.homepage)
        if [URI::HTTP, URI::HTTPS].member? homepage_uri.class
          homepage_uri = spec.homepage
        else
          homepage_uri = "."
        end
      rescue URI::InvalidURIError
        homepage_uri = "."
      end

      specs << {
        "authors"             => spec.authors.sort.join(", "),
        "date"                => spec.date.to_s,
        "dependencies"        => deps,
        "doc_path"            => doc_root(spec.full_name),
        "executables"         => executables,
        "only_one_executable" => (executables && executables.size == 1),
        "full_name"           => spec.full_name,
        "has_deps"            => !deps.empty?,
        "homepage"            => homepage_uri,
        "name"                => spec.name,
        "rdoc_installed"      => Gem::RDoc.new(spec).rdoc_installed?,
        "ri_installed"        => Gem::RDoc.new(spec).ri_installed?,
        "summary"             => spec.summary,
        "version"             => spec.version.to_s,
      }
    end

    specs << {
      "authors" => "Chad Fowler, Rich Kilmer, Jim Weirich, Eric Hodel and others",
      "dependencies" => [],
      "doc_path" => doc_root("rubygems-#{Gem::VERSION}"),
      "executables" => [{"executable" => 'gem', "is_last" => true}],
      "only_one_executable" => true,
      "full_name" => "rubygems-#{Gem::VERSION}",
      "has_deps" => false,
      "homepage" => "https://guides.rubygems.org/",
      "name" => 'rubygems',
      "ri_installed" => true,
      "summary" => "RubyGems itself",
      "version" => Gem::VERSION,
    }

    specs = specs.sort_by { |spec| [spec["name"].downcase, spec["version"]] }
    specs.last["is_last"] = true

    # tag all specs with first_name_entry
    last_spec = nil
    specs.each do |spec|
      is_first = last_spec.nil? || (last_spec["name"].downcase != spec["name"].downcase)
      spec["first_name_entry"] = is_first
      last_spec = spec
    end

    # create page from template
    template = ERB.new(DOC_TEMPLATE)
    res['content-type'] = 'text/html'

    values = { "gem_count" => specs.size.to_s, "specs" => specs,
               "total_file_count" => total_file_count.to_s }

    # suppress 1.9.3dev warning about unused variable
    values = values

    result = template.result binding
    res.body = result
  end

  ##
  # Can be used for quick navigation to the rdoc documentation.  You can then
  # define a search shortcut for your browser.  E.g. in Firefox connect
  # 'shortcut:rdoc' to http://localhost:8808/rdoc?q=%s template. Then you can
  # directly open the ActionPack documentation by typing 'rdoc actionp'. If
  # there are multiple hits for the search term, they are presented as a list
  # with links.
  #
  # Search algorithm aims for an intuitive search:
  # 1. first try to find the gems and documentation folders which name
  #    starts with the search term
  # 2. search for entries, that *contain* the search term
  # 3. show all the gems
  #
  # If there is only one search hit, user is immediately redirected to the
  # documentation for the particular gem, otherwise a list with results is
  # shown.
  #
  # === Additional trick - install documentation for Ruby core
  #
  # Note: please adjust paths accordingly use for example 'locate yaml.rb' and
  # 'gem environment' to identify directories, that are specific for your
  # local installation
  #
  # 1. install Ruby sources
  #      cd /usr/src
  #      sudo apt-get source ruby
  #
  # 2. generate documentation
  #      rdoc -o /usr/lib/ruby/gems/1.8/doc/core/rdoc \
  #        /usr/lib/ruby/1.8 ruby1.8-1.8.7.72
  #
  # By typing 'rdoc core' you can now access the core documentation

  def rdoc(req, res)
    query = req.query['q']
    show_rdoc_for_pattern("#{query}*", res) && return
    show_rdoc_for_pattern("*#{query}*", res) && return

    template = ERB.new RDOC_NO_DOCUMENTATION

    res['content-type'] = 'text/html'
    res.body = template.result binding
  end

  ##
  # Updates the server to use the latest installed gems.

  def reset_gems # :nodoc:
    Gem::Specification.dirs = @gem_dirs
  end

  ##
  # Returns true and prepares http response, if rdoc for the requested gem
  # name pattern was found.
  #
  # The search is based on the file system content, not on the gems metadata.
  # This allows additional documentation folders like 'core' for the Ruby core
  # documentation - just put it underneath the main doc folder.

  def show_rdoc_for_pattern(pattern, res)
    found_gems = Dir.glob("{#{@gem_dirs.join ','}}/doc/#{pattern}").select do |path|
      File.exist? File.join(path, 'rdoc/index.html')
    end
    case found_gems.length
    when 0
      return false
    when 1
      new_path = File.basename(found_gems[0])
      res.status = 302
      res['Location'] = doc_root new_path
      return true
    else
      doc_items = []
      found_gems.each do |file_name|
        base_name = File.basename(file_name)
        doc_items << {
          :name    => base_name,
          :url     => doc_root(new_path),
          :summary => ''
        }
      end

      template = ERB.new(RDOC_SEARCH_TEMPLATE)
      res['content-type'] = 'text/html'
      result = template.result binding
      res.body = result
      return true
    end
  end

  def run
    listen

    WEBrick::Daemon.start if @daemon

    @server.mount_proc "/specs.#{Gem.marshal_version}", method(:specs)
    @server.mount_proc "/specs.#{Gem.marshal_version}.gz", method(:specs)

    @server.mount_proc "/latest_specs.#{Gem.marshal_version}",
                       method(:latest_specs)
    @server.mount_proc "/latest_specs.#{Gem.marshal_version}.gz",
                       method(:latest_specs)

    @server.mount_proc "/prerelease_specs.#{Gem.marshal_version}",
                       method(:prerelease_specs)
    @server.mount_proc "/prerelease_specs.#{Gem.marshal_version}.gz",
                       method(:prerelease_specs)

    @server.mount_proc "/quick/", method(:quick)

    @server.mount_proc("/gem-server-rdoc-style.css") do |req, res|
      res['content-type'] = 'text/css'
      add_date res
      res.body << RDOC_CSS
    end

    @server.mount_proc "/", method(:root)

    @server.mount_proc "/rdoc", method(:rdoc)

    file_handlers = {
      '/gems' => '/cache/',
    }

    if have_rdoc_4_plus?
      @server.mount '/doc_root', RDoc::Servlet, '/doc_root'
    else
      file_handlers['/doc_root'] = '/doc/'
    end

    @gem_dirs.each do |gem_dir|
      file_handlers.each do |mount_point, mount_dir|
        @server.mount(mount_point, WEBrick::HTTPServlet::FileHandler,
                      File.join(gem_dir, mount_dir), true)
      end
    end

    trap("INT") { @server.shutdown; exit! }
    trap("TERM") { @server.shutdown; exit! }

    launch if @launch

    @server.start
  end

  def specs(req, res)
    reset_gems

    add_date res

    specs = Gem::Specification.sort_by(&:sort_obj).map do |spec|
      platform = spec.original_platform || Gem::Platform::RUBY
      [spec.name, spec.version, platform]
    end

    specs = Marshal.dump specs

    if req.path =~ /\.gz$/
      specs = Gem::Util.gzip specs
      res['content-type'] = 'application/x-gzip'
    else
      res['content-type'] = 'application/octet-stream'
    end

    if req.request_method == 'HEAD'
      res['content-length'] = specs.length
    else
      res.body << specs
    end
  end

  def launch
    listeners = @server.listeners.map{|l| l.addr[2] }

    # TODO: 0.0.0.0 == any, not localhost.
    host = listeners.any?{|l| l == '0.0.0.0'} ? 'localhost' : listeners.first

    say "Launching browser to http://#{host}:#{@port}"

    system("#{@launch} http://#{host}:#{@port}")
  end

end
PK8H[����/share/rubygems/rubygems/request_set/lockfile.rbnu�[���# frozen_string_literal: true
##
# Parses a gem.deps.rb.lock file and constructs a LockSet containing the
# dependencies found inside.  If the lock file is missing no LockSet is
# constructed.

class Gem::RequestSet::Lockfile

  ##
  # Raised when a lockfile cannot be parsed

  class ParseError < Gem::Exception

    ##
    # The column where the error was encountered

    attr_reader :column

    ##
    # The line where the error was encountered

    attr_reader :line

    ##
    # The location of the lock file

    attr_reader :path

    ##
    # Raises a ParseError with the given +message+ which was encountered at a
    # +line+ and +column+ while parsing.

    def initialize(message, column, line, path)
      @line   = line
      @column = column
      @path   = path
      super "#{message} (at line #{line} column #{column})"
    end

  end

  ##
  # Creates a new Lockfile for the given +request_set+ and +gem_deps_file+
  # location.

  def self.build(request_set, gem_deps_file, dependencies = nil)
    request_set.resolve
    dependencies ||= requests_to_deps request_set.sorted_requests
    new request_set, gem_deps_file, dependencies
  end

  def self.requests_to_deps(requests) # :nodoc:
    deps = {}

    requests.each do |request|
      spec        = request.spec
      name        = request.name
      requirement = request.request.dependency.requirement

      deps[name] = if [Gem::Resolver::VendorSpecification,
                       Gem::Resolver::GitSpecification].include? spec.class
                     Gem::Requirement.source_set
                   else
                     requirement
                   end
    end

    deps
  end

  ##
  # The platforms for this Lockfile

  attr_reader :platforms

  def initialize(request_set, gem_deps_file, dependencies)
    @set           = request_set
    @dependencies  = dependencies
    @gem_deps_file = File.expand_path(gem_deps_file)
    @gem_deps_dir  = File.dirname(@gem_deps_file)

    if RUBY_VERSION < '2.7'
      @gem_deps_file.untaint unless gem_deps_file.tainted?
    end

    @platforms = []
  end

  def add_DEPENDENCIES(out) # :nodoc:
    out << "DEPENDENCIES"

    out.concat @dependencies.sort_by { |name,| name }.map { |name, requirement|
      "  #{name}#{requirement.for_lockfile}"
    }

    out << nil
  end

  def add_GEM(out, spec_groups) # :nodoc:
    return if spec_groups.empty?

    source_groups = spec_groups.values.flatten.group_by do |request|
      request.spec.source.uri
    end

    source_groups.sort_by { |group,| group.to_s }.map do |group, requests|
      out << "GEM"
      out << "  remote: #{group}"
      out << "  specs:"

      requests.sort_by { |request| request.name }.each do |request|
        next if request.spec.name == 'bundler'
        platform = "-#{request.spec.platform}" unless
          Gem::Platform::RUBY == request.spec.platform

        out << "    #{request.name} (#{request.version}#{platform})"

        request.full_spec.dependencies.sort.each do |dependency|
          next if dependency.type == :development

          requirement = dependency.requirement
          out << "      #{dependency.name}#{requirement.for_lockfile}"
        end
      end
      out << nil
    end
  end

  def add_GIT(out, git_requests)
    return if git_requests.empty?

    by_repository_revision = git_requests.group_by do |request|
      source = request.spec.source
      [source.repository, source.rev_parse]
    end

    by_repository_revision.each do |(repository, revision), requests|
      out << "GIT"
      out << "  remote: #{repository}"
      out << "  revision: #{revision}"
      out << "  specs:"

      requests.sort_by { |request| request.name }.each do |request|
        out << "    #{request.name} (#{request.version})"

        dependencies = request.spec.dependencies.sort_by { |dep| dep.name }
        dependencies.each do |dep|
          out << "      #{dep.name}#{dep.requirement.for_lockfile}"
        end
      end
      out << nil
    end
  end

  def relative_path_from(dest, base) # :nodoc:
    dest = File.expand_path(dest)
    base = File.expand_path(base)

    if dest.index(base) == 0
      offset = dest[base.size + 1..-1]

      return '.' unless offset

      offset
    else
      dest
    end
  end

  def add_PATH(out, path_requests) # :nodoc:
    return if path_requests.empty?

    out << "PATH"
    path_requests.each do |request|
      directory = File.expand_path(request.spec.source.uri)

      out << "  remote: #{relative_path_from directory, @gem_deps_dir}"
      out << "  specs:"
      out << "    #{request.name} (#{request.version})"
    end

    out << nil
  end

  def add_PLATFORMS(out) # :nodoc:
    out << "PLATFORMS"

    platforms = requests.map { |request| request.spec.platform }.uniq

    platforms = platforms.sort_by { |platform| platform.to_s }

    platforms.each do |platform|
      out << "  #{platform}"
    end

    out << nil
  end

  def spec_groups
    requests.group_by { |request| request.spec.class }
  end

  ##
  # The contents of the lock file.

  def to_s
    out = []

    groups = spec_groups

    add_PATH out, groups.delete(Gem::Resolver::VendorSpecification) { [] }

    add_GIT out, groups.delete(Gem::Resolver::GitSpecification) { [] }

    add_GEM out, groups

    add_PLATFORMS out

    add_DEPENDENCIES out

    out.join "\n"
  end

  ##
  # Writes the lock file alongside the gem dependencies file

  def write
    content = to_s

    File.open "#{@gem_deps_file}.lock", 'w' do |io|
      io.write content
    end
  end

  private

  def requests
    @set.sorted_requests
  end

end

require 'rubygems/request_set/lockfile/tokenizer'
PK8H[���9share/rubygems/rubygems/request_set/lockfile/tokenizer.rbnu�[���# frozen_string_literal: true
require 'rubygems/request_set/lockfile/parser'

class Gem::RequestSet::Lockfile::Tokenizer

  Token = Struct.new :type, :value, :column, :line
  EOF   = Token.new :EOF

  def self.from_file(file)
    new File.read(file), file
  end

  def initialize(input, filename = nil, line = 0, pos = 0)
    @line     = line
    @line_pos = pos
    @tokens   = []
    @filename = filename
    tokenize input
  end

  def make_parser(set, platforms)
    Gem::RequestSet::Lockfile::Parser.new self, set, platforms, @filename
  end

  def to_a
    @tokens.map { |token| [token.type, token.value, token.column, token.line] }
  end

  def skip(type)
    @tokens.shift while not @tokens.empty? and peek.type == type
  end

  ##
  # Calculates the column (by byte) and the line of the current token based on
  # +byte_offset+.

  def token_pos(byte_offset) # :nodoc:
    [byte_offset - @line_pos, @line]
  end

  def empty?
    @tokens.empty?
  end

  def unshift(token)
    @tokens.unshift token
  end

  def next_token
    @tokens.shift
  end
  alias :shift :next_token

  def peek
    @tokens.first || EOF
  end

  private

  def tokenize(input)
    require 'strscan'
    s = StringScanner.new input

    until s.eos? do
      pos = s.pos

      pos = s.pos if leading_whitespace = s.scan(/ +/)

      if s.scan(/[<|=>]{7}/)
        message = "your #{@filename} contains merge conflict markers"
        column, line = token_pos pos

        raise Gem::RequestSet::Lockfile::ParseError.new message, column, line, @filename
      end

      @tokens <<
        case
        when s.scan(/\r?\n/) then
          token = Token.new(:newline, nil, *token_pos(pos))
          @line_pos = s.pos
          @line += 1
          token
        when s.scan(/[A-Z]+/) then
          if leading_whitespace
            text = s.matched
            text += s.scan(/[^\s)]*/).to_s # in case of no match
            Token.new(:text, text, *token_pos(pos))
          else
            Token.new(:section, s.matched, *token_pos(pos))
          end
        when s.scan(/([a-z]+):\s/) then
          s.pos -= 1 # rewind for possible newline
          Token.new(:entry, s[1], *token_pos(pos))
        when s.scan(/\(/) then
          Token.new(:l_paren, nil, *token_pos(pos))
        when s.scan(/\)/) then
          Token.new(:r_paren, nil, *token_pos(pos))
        when s.scan(/<=|>=|=|~>|<|>|!=/) then
          Token.new(:requirement, s.matched, *token_pos(pos))
        when s.scan(/,/) then
          Token.new(:comma, nil, *token_pos(pos))
        when s.scan(/!/) then
          Token.new(:bang, nil, *token_pos(pos))
        when s.scan(/[^\s),!]*/) then
          Token.new(:text, s.matched, *token_pos(pos))
        else
          raise "BUG: can't create token for: #{s.string[s.pos..-1].inspect}"
        end
    end

    @tokens
  end

end
PK8H[c�eL$$6share/rubygems/rubygems/request_set/lockfile/parser.rbnu�[���# frozen_string_literal: true
class Gem::RequestSet::Lockfile::Parser

  ###
  # Parses lockfiles

  def initialize(tokenizer, set, platforms, filename = nil)
    @tokens    = tokenizer
    @filename  = filename
    @set       = set
    @platforms = platforms
  end

  def parse
    until @tokens.empty? do
      token = get

      case token.type
      when :section then
        @tokens.skip :newline

        case token.value
        when 'DEPENDENCIES' then
          parse_DEPENDENCIES
        when 'GIT' then
          parse_GIT
        when 'GEM' then
          parse_GEM
        when 'PATH' then
          parse_PATH
        when 'PLATFORMS' then
          parse_PLATFORMS
        else
          token = get until @tokens.empty? or peek.first == :section
        end
      else
        raise "BUG: unhandled token #{token.type} (#{token.value.inspect}) at line #{token.line} column #{token.column}"
      end
    end
  end

  ##
  # Gets the next token for a Lockfile

  def get(expected_types = nil, expected_value = nil) # :nodoc:
    token = @tokens.shift

    if expected_types and not Array(expected_types).include? token.type
      unget token

      message = "unexpected token [#{token.type.inspect}, #{token.value.inspect}], " +
                "expected #{expected_types.inspect}"

      raise Gem::RequestSet::Lockfile::ParseError.new message, token.column, token.line, @filename
    end

    if expected_value and expected_value != token.value
      unget token

      message = "unexpected token [#{token.type.inspect}, #{token.value.inspect}], " +
                "expected [#{expected_types.inspect}, " +
                "#{expected_value.inspect}]"

      raise Gem::RequestSet::Lockfile::ParseError.new message, token.column, token.line, @filename
    end

    token
  end

  def parse_DEPENDENCIES # :nodoc:
    while not @tokens.empty? and :text == peek.type do
      token = get :text

      requirements = []

      case peek[0]
      when :bang then
        get :bang

        requirements << pinned_requirement(token.value)
      when :l_paren then
        get :l_paren

        loop do
          op      = get(:requirement).value
          version = get(:text).value

          requirements << "#{op} #{version}"

          break unless peek.type == :comma

          get :comma
        end

        get :r_paren

        if peek[0] == :bang
          requirements.clear
          requirements << pinned_requirement(token.value)

          get :bang
        end
      end

      @set.gem token.value, *requirements

      skip :newline
    end
  end

  def parse_GEM # :nodoc:
    sources = []

    while [:entry, 'remote'] == peek.first(2) do
      get :entry, 'remote'
      data = get(:text).value
      skip :newline

      sources << Gem::Source.new(data)
    end

    sources << Gem::Source.new(Gem::DEFAULT_HOST) if sources.empty?

    get :entry, 'specs'

    skip :newline

    set = Gem::Resolver::LockSet.new sources
    last_specs = nil

    while not @tokens.empty? and :text == peek.type do
      token = get :text
      name = token.value
      column = token.column

      case peek[0]
      when :newline then
        last_specs.each do |spec|
          spec.add_dependency Gem::Dependency.new name if column == 6
        end
      when :l_paren then
        get :l_paren

        token = get [:text, :requirement]
        type = token.type
        data = token.value

        if type == :text and column == 4
          version, platform = data.split '-', 2

          platform =
            platform ? Gem::Platform.new(platform) : Gem::Platform::RUBY

          last_specs = set.add name, version, platform
        else
          dependency = parse_dependency name, data

          last_specs.each do |spec|
            spec.add_dependency dependency
          end
        end

        get :r_paren
      else
        raise "BUG: unknown token #{peek}"
      end

      skip :newline
    end

    @set.sets << set
  end

  def parse_GIT # :nodoc:
    get :entry, 'remote'
    repository = get(:text).value

    skip :newline

    get :entry, 'revision'
    revision = get(:text).value

    skip :newline

    type = peek.type
    value = peek.value
    if type == :entry and %w[branch ref tag].include? value
      get
      get :text

      skip :newline
    end

    get :entry, 'specs'

    skip :newline

    set = Gem::Resolver::GitSet.new
    set.root_dir = @set.install_dir

    last_spec = nil

    while not @tokens.empty? and :text == peek.type do
      token = get :text
      name = token.value
      column = token.column

      case peek[0]
      when :newline then
        last_spec.add_dependency Gem::Dependency.new name if column == 6
      when :l_paren then
        get :l_paren

        token = get [:text, :requirement]
        type = token.type
        data = token.value

        if type == :text and column == 4
          last_spec = set.add_git_spec name, data, repository, revision, true
        else
          dependency = parse_dependency name, data

          last_spec.add_dependency dependency
        end

        get :r_paren
      else
        raise "BUG: unknown token #{peek}"
      end

      skip :newline
    end

    @set.sets << set
  end

  def parse_PATH # :nodoc:
    get :entry, 'remote'
    directory = get(:text).value

    skip :newline

    get :entry, 'specs'

    skip :newline

    set = Gem::Resolver::VendorSet.new
    last_spec = nil

    while not @tokens.empty? and :text == peek.first do
      token = get :text
      name = token.value
      column = token.column

      case peek[0]
      when :newline then
        last_spec.add_dependency Gem::Dependency.new name if column == 6
      when :l_paren then
        get :l_paren

        token = get [:text, :requirement]
        type = token.type
        data = token.value

        if type == :text and column == 4
          last_spec = set.add_vendor_gem name, directory
        else
          dependency = parse_dependency name, data

          last_spec.dependencies << dependency
        end

        get :r_paren
      else
        raise "BUG: unknown token #{peek}"
      end

      skip :newline
    end

    @set.sets << set
  end

  def parse_PLATFORMS # :nodoc:
    while not @tokens.empty? and :text == peek.first do
      name = get(:text).value

      @platforms << name

      skip :newline
    end
  end

  ##
  # Parses the requirements following the dependency +name+ and the +op+ for
  # the first token of the requirements and returns a Gem::Dependency object.

  def parse_dependency(name, op) # :nodoc:
    return Gem::Dependency.new name, op unless peek[0] == :text

    version = get(:text).value

    requirements = ["#{op} #{version}"]

    while peek.type == :comma do
      get :comma
      op      = get(:requirement).value
      version = get(:text).value

      requirements << "#{op} #{version}"
    end

    Gem::Dependency.new name, requirements
  end

  private

  def skip(type) # :nodoc:
    @tokens.skip type
  end

  ##
  # Peeks at the next token for Lockfile

  def peek # :nodoc:
    @tokens.peek
  end

  def pinned_requirement(name) # :nodoc:
    requirement = Gem::Dependency.new name
    specification = @set.sets.flat_map do |set|
      set.find_all(requirement)
    end.compact.first

    specification && specification.version
  end

  ##
  # Ungets the last token retrieved by #get

  def unget(token) # :nodoc:
    @tokens.unshift token
  end

end
PK8H[���vDZDZ9share/rubygems/rubygems/request_set/gem_dependency_api.rbnu�[���# frozen_string_literal: true
##
# A semi-compatible DSL for the Bundler Gemfile and Isolate gem dependencies
# files.
#
# To work with both the Bundler Gemfile and Isolate formats this
# implementation takes some liberties to allow compatibility with each, most
# notably in #source.
#
# A basic gem dependencies file will look like the following:
#
#   source 'https://rubygems.org'
#
#   gem 'rails', '3.2.14a
#   gem 'devise', '~> 2.1', '>= 2.1.3'
#   gem 'cancan'
#   gem 'airbrake'
#   gem 'pg'
#
# RubyGems recommends saving this as gem.deps.rb over Gemfile or Isolate.
#
# To install the gems in this Gemfile use `gem install -g` to install it and
# create a lockfile.  The lockfile will ensure that when you make changes to
# your gem dependencies file a minimum amount of change is made to the
# dependencies of your gems.
#
# RubyGems can activate all the gems in your dependencies file at startup
# using the RUBYGEMS_GEMDEPS environment variable or through Gem.use_gemdeps.
# See Gem.use_gemdeps for details and warnings.
#
# See `gem help install` and `gem help gem_dependencies` for further details.

class Gem::RequestSet::GemDependencyAPI

  ENGINE_MAP = { # :nodoc:
    :jruby        => %w[jruby],
    :jruby_18     => %w[jruby],
    :jruby_19     => %w[jruby],
    :maglev       => %w[maglev],
    :mri          => %w[ruby],
    :mri_18       => %w[ruby],
    :mri_19       => %w[ruby],
    :mri_20       => %w[ruby],
    :mri_21       => %w[ruby],
    :rbx          => %w[rbx],
    :truffleruby  => %w[truffleruby],
    :ruby         => %w[ruby rbx maglev truffleruby],
    :ruby_18      => %w[ruby rbx maglev truffleruby],
    :ruby_19      => %w[ruby rbx maglev truffleruby],
    :ruby_20      => %w[ruby rbx maglev truffleruby],
    :ruby_21      => %w[ruby rbx maglev truffleruby],
  }.freeze

  mswin     = Gem::Platform.new 'x86-mswin32'
  mswin64   = Gem::Platform.new 'x64-mswin64'
  x86_mingw = Gem::Platform.new 'x86-mingw32'
  x64_mingw = Gem::Platform.new 'x64-mingw32'

  PLATFORM_MAP = { # :nodoc:
    :jruby        => Gem::Platform::RUBY,
    :jruby_18     => Gem::Platform::RUBY,
    :jruby_19     => Gem::Platform::RUBY,
    :maglev       => Gem::Platform::RUBY,
    :mingw        => x86_mingw,
    :mingw_18     => x86_mingw,
    :mingw_19     => x86_mingw,
    :mingw_20     => x86_mingw,
    :mingw_21     => x86_mingw,
    :mri          => Gem::Platform::RUBY,
    :mri_18       => Gem::Platform::RUBY,
    :mri_19       => Gem::Platform::RUBY,
    :mri_20       => Gem::Platform::RUBY,
    :mri_21       => Gem::Platform::RUBY,
    :mswin        => mswin,
    :mswin_18     => mswin,
    :mswin_19     => mswin,
    :mswin_20     => mswin,
    :mswin_21     => mswin,
    :mswin64      => mswin64,
    :mswin64_19   => mswin64,
    :mswin64_20   => mswin64,
    :mswin64_21   => mswin64,
    :rbx          => Gem::Platform::RUBY,
    :ruby         => Gem::Platform::RUBY,
    :ruby_18      => Gem::Platform::RUBY,
    :ruby_19      => Gem::Platform::RUBY,
    :ruby_20      => Gem::Platform::RUBY,
    :ruby_21      => Gem::Platform::RUBY,
    :truffleruby  => Gem::Platform::RUBY,
    :x64_mingw    => x64_mingw,
    :x64_mingw_20 => x64_mingw,
    :x64_mingw_21 => x64_mingw
  }.freeze

  gt_eq_0        = Gem::Requirement.new '>= 0'
  tilde_gt_1_8_0 = Gem::Requirement.new '~> 1.8.0'
  tilde_gt_1_9_0 = Gem::Requirement.new '~> 1.9.0'
  tilde_gt_2_0_0 = Gem::Requirement.new '~> 2.0.0'
  tilde_gt_2_1_0 = Gem::Requirement.new '~> 2.1.0'

  VERSION_MAP = { # :nodoc:
    :jruby        => gt_eq_0,
    :jruby_18     => tilde_gt_1_8_0,
    :jruby_19     => tilde_gt_1_9_0,
    :maglev       => gt_eq_0,
    :mingw        => gt_eq_0,
    :mingw_18     => tilde_gt_1_8_0,
    :mingw_19     => tilde_gt_1_9_0,
    :mingw_20     => tilde_gt_2_0_0,
    :mingw_21     => tilde_gt_2_1_0,
    :mri          => gt_eq_0,
    :mri_18       => tilde_gt_1_8_0,
    :mri_19       => tilde_gt_1_9_0,
    :mri_20       => tilde_gt_2_0_0,
    :mri_21       => tilde_gt_2_1_0,
    :mswin        => gt_eq_0,
    :mswin_18     => tilde_gt_1_8_0,
    :mswin_19     => tilde_gt_1_9_0,
    :mswin_20     => tilde_gt_2_0_0,
    :mswin_21     => tilde_gt_2_1_0,
    :mswin64      => gt_eq_0,
    :mswin64_19   => tilde_gt_1_9_0,
    :mswin64_20   => tilde_gt_2_0_0,
    :mswin64_21   => tilde_gt_2_1_0,
    :rbx          => gt_eq_0,
    :ruby         => gt_eq_0,
    :ruby_18      => tilde_gt_1_8_0,
    :ruby_19      => tilde_gt_1_9_0,
    :ruby_20      => tilde_gt_2_0_0,
    :ruby_21      => tilde_gt_2_1_0,
    :truffleruby  => gt_eq_0,
    :x64_mingw    => gt_eq_0,
    :x64_mingw_20 => tilde_gt_2_0_0,
    :x64_mingw_21 => tilde_gt_2_1_0,
  }.freeze

  WINDOWS = { # :nodoc:
    :mingw        => :only,
    :mingw_18     => :only,
    :mingw_19     => :only,
    :mingw_20     => :only,
    :mingw_21     => :only,
    :mri          => :never,
    :mri_18       => :never,
    :mri_19       => :never,
    :mri_20       => :never,
    :mri_21       => :never,
    :mswin        => :only,
    :mswin_18     => :only,
    :mswin_19     => :only,
    :mswin_20     => :only,
    :mswin_21     => :only,
    :mswin64      => :only,
    :mswin64_19   => :only,
    :mswin64_20   => :only,
    :mswin64_21   => :only,
    :rbx          => :never,
    :ruby         => :never,
    :ruby_18      => :never,
    :ruby_19      => :never,
    :ruby_20      => :never,
    :ruby_21      => :never,
    :x64_mingw    => :only,
    :x64_mingw_20 => :only,
    :x64_mingw_21 => :only,
  }.freeze

  ##
  # The gems required by #gem statements in the gem.deps.rb file

  attr_reader :dependencies

  ##
  # A set of gems that are loaded via the +:git+ option to #gem

  attr_reader :git_set # :nodoc:

  ##
  # A Hash containing gem names and files to require from those gems.

  attr_reader :requires

  ##
  # A set of gems that are loaded via the +:path+ option to #gem

  attr_reader :vendor_set # :nodoc:

  ##
  # The groups of gems to exclude from installation

  attr_accessor :without_groups # :nodoc:

  ##
  # Creates a new GemDependencyAPI that will add dependencies to the
  # Gem::RequestSet +set+ based on the dependency API description in +path+.

  def initialize(set, path)
    @set = set
    @path = path

    @current_groups     = nil
    @current_platforms  = nil
    @current_repository = nil
    @dependencies       = {}
    @default_sources    = true
    @git_set            = @set.git_set
    @git_sources        = {}
    @installing         = false
    @requires           = Hash.new { |h, name| h[name] = [] }
    @vendor_set         = @set.vendor_set
    @source_set         = @set.source_set
    @gem_sources        = {}
    @without_groups     = []

    git_source :github do |repo_name|
      repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include? "/"

      "git://github.com/#{repo_name}.git"
    end

    git_source :bitbucket do |repo_name|
      repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include? "/"

      user, = repo_name.split "/", 2

      "https://#{user}@bitbucket.org/#{repo_name}.git"
    end
  end

  ##
  # Adds +dependencies+ to the request set if any of the +groups+ are allowed.
  # This is used for gemspec dependencies.

  def add_dependencies(groups, dependencies) # :nodoc:
    return unless (groups & @without_groups).empty?

    dependencies.each do |dep|
      @set.gem dep.name, *dep.requirement.as_list
    end
  end

  private :add_dependencies

  ##
  # Finds a gemspec with the given +name+ that lives at +path+.

  def find_gemspec(name, path) # :nodoc:
    glob = File.join path, "#{name}.gemspec"

    spec_files = Dir[glob]

    case spec_files.length
    when 1 then
      spec_file = spec_files.first

      spec = Gem::Specification.load spec_file

      return spec if spec

      raise ArgumentError, "invalid gemspec #{spec_file}"
    when 0 then
      raise ArgumentError, "no gemspecs found at #{Dir.pwd}"
    else
      raise ArgumentError,
        "found multiple gemspecs at #{Dir.pwd}, " +
        "use the name: option to specify the one you want"
    end
  end

  ##
  # Changes the behavior of gem dependency file loading to installing mode.
  # In installing mode certain restrictions are ignored such as ruby version
  # mismatch checks.

  def installing=(installing) # :nodoc:
    @installing = installing
  end

  ##
  # Loads the gem dependency file and returns self.

  def load
    instance_eval File.read(@path).tap(&Gem::UNTAINT), @path, 1

    self
  end

  ##
  # :category: Gem Dependencies DSL
  #
  # :call-seq:
  #   gem(name)
  #   gem(name, *requirements)
  #   gem(name, *requirements, options)
  #
  # Specifies a gem dependency with the given +name+ and +requirements+.  You
  # may also supply +options+ following the +requirements+
  #
  # +options+ include:
  #
  # require: ::
  #   RubyGems does not provide any autorequire features so requires in a gem
  #   dependencies file are recorded but ignored.
  #
  #   In bundler the require: option overrides the file to require during
  #   Bundler.require.  By default the name of the dependency is required in
  #   Bundler.  A single file or an Array of files may be given.
  #
  #   To disable requiring any file give +false+:
  #
  #     gem 'rake', require: false
  #
  # group: ::
  #   Place the dependencies in the given dependency group.  A single group or
  #   an Array of groups may be given.
  #
  #   See also #group
  #
  # platform: ::
  #   Only install the dependency on the given platform.  A single platform or
  #   an Array of platforms may be given.
  #
  #   See #platform for a list of platforms available.
  #
  # path: ::
  #   Install this dependency from an unpacked gem in the given directory.
  #
  #     gem 'modified_gem', path: 'vendor/modified_gem'
  #
  # git: ::
  #   Install this dependency from a git repository:
  #
  #     gem 'private_gem', git: git@my.company.example:private_gem.git'
  #
  # gist: ::
  #   Install this dependency from the gist ID:
  #
  #     gem 'bang', gist: '1232884'
  #
  # github: ::
  #   Install this dependency from a github git repository:
  #
  #     gem 'private_gem', github: 'my_company/private_gem'
  #
  # submodules: ::
  #   Set to +true+ to include submodules when fetching the git repository for
  #   git:, gist: and github: dependencies.
  #
  # ref: ::
  #   Use the given commit name or SHA for git:, gist: and github:
  #   dependencies.
  #
  # branch: ::
  #   Use the given branch for git:, gist: and github: dependencies.
  #
  # tag: ::
  #   Use the given tag for git:, gist: and github: dependencies.

  def gem(name, *requirements)
    options = requirements.pop if requirements.last.kind_of?(Hash)
    options ||= {}

    options[:git] = @current_repository if @current_repository

    source_set = false

    source_set ||= gem_path       name, options
    source_set ||= gem_git        name, options
    source_set ||= gem_git_source name, options
    source_set ||= gem_source     name, options

    duplicate = @dependencies.include? name

    @dependencies[name] =
      if requirements.empty? and not source_set
        Gem::Requirement.default
      elsif source_set
        Gem::Requirement.source_set
      else
        Gem::Requirement.create requirements
      end

    return unless gem_platforms options

    groups = gem_group name, options

    return unless (groups & @without_groups).empty?

    pin_gem_source name, :default unless source_set

    gem_requires name, options

    if duplicate
      warn <<-WARNING
Gem dependencies file #{@path} requires #{name} more than once.
      WARNING
    end

    @set.gem name, *requirements
  end

  ##
  # Handles the git: option from +options+ for gem +name+.
  #
  # Returns +true+ if the gist or git option was handled.

  def gem_git(name, options) # :nodoc:
    if gist = options.delete(:gist)
      options[:git] = "https://gist.github.com/#{gist}.git"
    end

    return unless repository = options.delete(:git)

    pin_gem_source name, :git, repository

    reference = gem_git_reference options

    submodules = options.delete :submodules

    @git_set.add_git_gem name, repository, reference, submodules

    true
  end

  ##
  # Handles the git options from +options+ for git gem.
  #
  # Returns reference for the git gem.

  def gem_git_reference(options) # :nodoc:
    ref    = options.delete :ref
    branch = options.delete :branch
    tag    = options.delete :tag

    reference = nil
    reference ||= ref
    reference ||= branch
    reference ||= tag
    reference ||= 'master'

    if ref && branch
      warn <<-WARNING
Gem dependencies file #{@path} includes git reference for both ref and branch but only ref is used.
      WARNING
    end
    if (ref || branch) && tag
      warn <<-WARNING
Gem dependencies file #{@path} includes git reference for both ref/branch and tag but only ref/branch is used.
      WARNING
    end

    reference
  end

  private :gem_git

  ##
  # Handles a git gem option from +options+ for gem +name+ for a git source
  # registered through git_source.
  #
  # Returns +true+ if the custom source option was handled.

  def gem_git_source(name, options) # :nodoc:
    return unless git_source = (@git_sources.keys & options.keys).last

    source_callback = @git_sources[git_source]
    source_param = options.delete git_source

    git_url = source_callback.call source_param

    options[:git] = git_url

    gem_git name, options

    true
  end

  private :gem_git_source

  ##
  # Handles the :group and :groups +options+ for the gem with the given
  # +name+.

  def gem_group(name, options) # :nodoc:
    g = options.delete :group
    all_groups = g ? Array(g) : []

    groups = options.delete :groups
    all_groups |= groups if groups

    all_groups |= @current_groups if @current_groups

    all_groups
  end

  private :gem_group

  ##
  # Handles the path: option from +options+ for gem +name+.
  #
  # Returns +true+ if the path option was handled.

  def gem_path(name, options) # :nodoc:
    return unless directory = options.delete(:path)

    pin_gem_source name, :path, directory

    @vendor_set.add_vendor_gem name, directory

    true
  end

  private :gem_path

  ##
  # Handles the source: option from +options+ for gem +name+.
  #
  # Returns +true+ if the source option was handled.

  def gem_source(name, options) # :nodoc:
    return unless source = options.delete(:source)

    pin_gem_source name, :source, source

    @source_set.add_source_gem name, source

    true
  end

  private :gem_source

  ##
  # Handles the platforms: option from +options+.  Returns true if the
  # platform matches the current platform.

  def gem_platforms(options) # :nodoc:
    platform_names = Array(options.delete :platform)
    platform_names.concat Array(options.delete :platforms)
    platform_names.concat @current_platforms if @current_platforms

    return true if platform_names.empty?

    platform_names.any? do |platform_name|
      raise ArgumentError, "unknown platform #{platform_name.inspect}" unless
        platform = PLATFORM_MAP[platform_name]

      next false unless Gem::Platform.match platform

      if engines = ENGINE_MAP[platform_name]
        next false unless engines.include? Gem.ruby_engine
      end

      case WINDOWS[platform_name]
      when :only then
        next false unless Gem.win_platform?
      when :never then
        next false if Gem.win_platform?
      end

      VERSION_MAP[platform_name].satisfied_by? Gem.ruby_version
    end
  end

  private :gem_platforms

  ##
  # Records the require: option from +options+ and adds those files, or the
  # default file to the require list for +name+.

  def gem_requires(name, options) # :nodoc:
    if options.include? :require
      if requires = options.delete(:require)
        @requires[name].concat Array requires
      end
    else
      @requires[name] << name
    end
    raise ArgumentError, "Unhandled gem options #{options.inspect}" unless options.empty?
  end

  private :gem_requires

  ##
  # :category: Gem Dependencies DSL
  #
  # Block form for specifying gems from a git +repository+.
  #
  #   git 'https://github.com/rails/rails.git' do
  #     gem 'activesupport'
  #     gem 'activerecord'
  #   end

  def git(repository)
    @current_repository = repository

    yield

  ensure
    @current_repository = nil
  end

  ##
  # Defines a custom git source that uses +name+ to expand git repositories
  # for use in gems built from git repositories.  You must provide a block
  # that accepts a git repository name for expansion.

  def git_source(name, &callback)
    @git_sources[name] = callback
  end

  ##
  # Returns the basename of the file the dependencies were loaded from

  def gem_deps_file # :nodoc:
    File.basename @path
  end

  ##
  # :category: Gem Dependencies DSL
  #
  # Loads dependencies from a gemspec file.
  #
  # +options+ include:
  #
  # name: ::
  #   The name portion of the gemspec file.  Defaults to searching for any
  #   gemspec file in the current directory.
  #
  #     gemspec name: 'my_gem'
  #
  # path: ::
  #   The path the gemspec lives in.  Defaults to the current directory:
  #
  #     gemspec 'my_gem', path: 'gemspecs', name: 'my_gem'
  #
  # development_group: ::
  #   The group to add development dependencies to.  By default this is
  #   :development.  Only one group may be specified.

  def gemspec(options = {})
    name              = options.delete(:name) || '{,*}'
    path              = options.delete(:path) || '.'
    development_group = options.delete(:development_group) || :development

    spec = find_gemspec name, path

    groups = gem_group spec.name, {}

    self_dep = Gem::Dependency.new spec.name, spec.version

    add_dependencies groups, [self_dep]
    add_dependencies groups, spec.runtime_dependencies

    @dependencies[spec.name] = Gem::Requirement.source_set

    spec.dependencies.each do |dep|
      @dependencies[dep.name] = dep.requirement
    end

    groups << development_group

    add_dependencies groups, spec.development_dependencies

    @vendor_set.add_vendor_gem spec.name, path
    gem_requires spec.name, options
  end

  ##
  # :category: Gem Dependencies DSL
  #
  # Block form for placing a dependency in the given +groups+.
  #
  #   group :development do
  #     gem 'debugger'
  #   end
  #
  #   group :development, :test do
  #     gem 'minitest'
  #   end
  #
  # Groups can be excluded at install time using `gem install -g --without
  # development`.  See `gem help install` and `gem help gem_dependencies` for
  # further details.

  def group(*groups)
    @current_groups = groups

    yield

  ensure
    @current_groups = nil
  end

  ##
  # Pins the gem +name+ to the given +source+.  Adding a gem with the same
  # name from a different +source+ will raise an exception.

  def pin_gem_source(name, type = :default, source = nil)
    source_description =
      case type
      when :default then '(default)'
      when :path    then "path: #{source}"
      when :git     then "git: #{source}"
      when :source  then "source: #{source}"
      else               '(unknown)'
      end

    raise ArgumentError,
      "duplicate source #{source_description} for gem #{name}" if
        @gem_sources.fetch(name, source) != source

    @gem_sources[name] = source
  end

  private :pin_gem_source

  ##
  # :category: Gem Dependencies DSL
  #
  # Block form for restricting gems to a set of platforms.
  #
  # The gem dependencies platform is different from Gem::Platform.  A platform
  # gem.deps.rb platform matches on the ruby engine, the ruby version and
  # whether or not windows is allowed.
  #
  # :ruby, :ruby_XY ::
  #   Matches non-windows, non-jruby implementations where X and Y can be used
  #   to match releases in the 1.8, 1.9, 2.0 or 2.1 series.
  #
  # :mri, :mri_XY ::
  #   Matches non-windows C Ruby (Matz Ruby) or only the 1.8, 1.9, 2.0 or
  #   2.1 series.
  #
  # :mingw, :mingw_XY ::
  #   Matches 32 bit C Ruby on MinGW or only the 1.8, 1.9, 2.0 or 2.1 series.
  #
  # :x64_mingw, :x64_mingw_XY ::
  #   Matches 64 bit C Ruby on MinGW or only the 1.8, 1.9, 2.0 or 2.1 series.
  #
  # :mswin, :mswin_XY ::
  #   Matches 32 bit C Ruby on Microsoft Windows or only the 1.8, 1.9, 2.0 or
  #   2.1 series.
  #
  # :mswin64, :mswin64_XY ::
  #   Matches 64 bit C Ruby on Microsoft Windows or only the 1.8, 1.9, 2.0 or
  #   2.1 series.
  #
  # :jruby, :jruby_XY ::
  #   Matches JRuby or JRuby in 1.8 or 1.9 mode.
  #
  # :maglev ::
  #   Matches Maglev
  #
  # :rbx ::
  #   Matches non-windows Rubinius
  #
  # NOTE:  There is inconsistency in what environment a platform matches.  You
  # may need to read the source to know the exact details.

  def platform(*platforms)
    @current_platforms = platforms

    yield

  ensure
    @current_platforms = nil
  end

  ##
  # :category: Gem Dependencies DSL
  #
  # Block form for restricting gems to a particular set of platforms.  See
  # #platform.

  alias :platforms :platform

  ##
  # :category: Gem Dependencies DSL
  #
  # Restricts this gem dependencies file to the given ruby +version+.
  #
  # You may also provide +engine:+ and +engine_version:+ options to restrict
  # this gem dependencies file to a particular ruby engine and its engine
  # version.  This matching is performed by using the RUBY_ENGINE and
  # RUBY_ENGINE_VERSION constants.

  def ruby(version, options = {})
    engine         = options[:engine]
    engine_version = options[:engine_version]

    raise ArgumentError,
          'You must specify engine_version along with the Ruby engine' if
            engine and not engine_version

    return true if @installing

    unless RUBY_VERSION == version
      message = "Your Ruby version is #{RUBY_VERSION}, " +
                "but your #{gem_deps_file} requires #{version}"

      raise Gem::RubyVersionMismatch, message
    end

    if engine and engine != Gem.ruby_engine
      message = "Your Ruby engine is #{Gem.ruby_engine}, " +
                "but your #{gem_deps_file} requires #{engine}"

      raise Gem::RubyVersionMismatch, message
    end

    if engine_version
      if engine_version != RUBY_ENGINE_VERSION
        message =
          "Your Ruby engine version is #{Gem.ruby_engine} #{RUBY_ENGINE_VERSION}, " +
          "but your #{gem_deps_file} requires #{engine} #{engine_version}"

        raise Gem::RubyVersionMismatch, message
      end
    end

    return true
  end

  ##
  # :category: Gem Dependencies DSL
  #
  # Sets +url+ as a source for gems for this dependency API.  RubyGems uses
  # the default configured sources if no source was given.  If a source is set
  # only that source is used.
  #
  # This method differs in behavior from Bundler:
  #
  # * The +:gemcutter+, # +:rubygems+ and +:rubyforge+ sources are not
  #   supported as they are deprecated in bundler.
  # * The +prepend:+ option is not supported.  If you wish to order sources
  #   then list them in your preferred order.

  def source(url)
    Gem.sources.clear if @default_sources

    @default_sources = false

    Gem.sources << url
  end

end
PK8H[q����1share/rubygems/rubygems/bundler_version_finder.rbnu�[���# frozen_string_literal: true

require "rubygems/util"

module Gem::BundlerVersionFinder
  def self.bundler_version
    version, _ = bundler_version_with_reason

    return unless version

    Gem::Version.new(version)
  end

  def self.bundler_version_with_reason
    if v = ENV["BUNDLER_VERSION"]
      return [v, "`$BUNDLER_VERSION`"]
    end
    if v = bundle_update_bundler_version
      return if v == true
      return [v, "`bundle update --bundler`"]
    end
    v, lockfile = lockfile_version
    if v
      return [v, "your #{lockfile}"]
    end
  end

  def self.missing_version_message
    return unless vr = bundler_version_with_reason
    <<-EOS
Could not find 'bundler' (#{vr.first}) required by #{vr.last}.
To update to the latest version installed on your system, run `bundle update --bundler`.
To install the missing version, run `gem install bundler:#{vr.first}`
    EOS
  end

  def self.compatible?(spec)
    return true unless spec.name == "bundler".freeze
    return true unless bundler_version = self.bundler_version

    spec.version.segments.first == bundler_version.segments.first
  end

  def self.filter!(specs)
    return unless bundler_version = self.bundler_version

    specs.reject! { |spec| spec.version.segments.first != bundler_version.segments.first }

    exact_match_index = specs.find_index { |spec| spec.version == bundler_version }
    return unless exact_match_index

    specs.unshift(specs.delete_at(exact_match_index))
  end

  def self.bundle_update_bundler_version
    return unless File.basename($0) == "bundle".freeze
    return unless "update".start_with?(ARGV.first || " ")
    bundler_version = nil
    update_index = nil
    ARGV.each_with_index do |a, i|
      if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
        bundler_version = a
      end
      next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
      bundler_version = $1 || true
      update_index = i
    end
    bundler_version
  end
  private_class_method :bundle_update_bundler_version

  def self.lockfile_version
    return unless lockfile = lockfile_contents
    lockfile, contents = lockfile
    lockfile ||= "lockfile"
    regexp = /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
    return unless contents =~ regexp
    [$1, lockfile]
  end
  private_class_method :lockfile_version

  def self.lockfile_contents
    gemfile = ENV["BUNDLE_GEMFILE"]
    gemfile = nil if gemfile && gemfile.empty?
    Gem::Util.traverse_parents Dir.pwd do |directory|
      next unless gemfile = Gem::GEM_DEP_FILES.find { |f| File.file?(f.tap(&Gem::UNTAINT)) }

      gemfile = File.join directory, gemfile
      break
    end unless gemfile

    return unless gemfile

    lockfile = case gemfile
               when "gems.rb" then "gems.locked"
               else "#{gemfile}.lock"
               end.dup.tap(&Gem::UNTAINT)

    return unless File.file?(lockfile)

    [lockfile, File.read(lockfile)]
  end
  private_class_method :lockfile_contents
end
PK8H[h��~j~j$share/rubygems/rubygems/installer.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/command'
require 'rubygems/exceptions'
require 'rubygems/deprecate'
require 'rubygems/package'
require 'rubygems/ext'
require 'rubygems/user_interaction'
require 'fileutils'

##
# The installer installs the files contained in the .gem into the Gem.home.
#
# Gem::Installer does the work of putting files in all the right places on the
# filesystem including unpacking the gem into its gem dir, installing the
# gemspec in the specifications dir, storing the cached gem in the cache dir,
# and installing either wrappers or symlinks for executables.
#
# The installer invokes pre and post install hooks.  Hooks can be added either
# through a rubygems_plugin.rb file in an installed gem or via a
# rubygems/defaults/#{RUBY_ENGINE}.rb or rubygems/defaults/operating_system.rb
# file.  See Gem.pre_install and Gem.post_install for details.

class Gem::Installer

  extend Gem::Deprecate

  ##
  # Paths where env(1) might live.  Some systems are broken and have it in
  # /bin

  ENV_PATHS = %w[/usr/bin/env /bin/env].freeze

  ##
  # Deprecated in favor of Gem::Ext::BuildError

  ExtensionBuildError = Gem::Ext::BuildError # :nodoc:

  include Gem::UserInteraction

  ##
  # Filename of the gem being installed.

  attr_reader :gem

  ##
  # The directory a gem's executables will be installed into

  attr_reader :bin_dir

  attr_reader :build_root # :nodoc:

  ##
  # The gem repository the gem will be installed into

  attr_reader :gem_home

  ##
  # The options passed when the Gem::Installer was instantiated.

  attr_reader :options

  ##
  # The gem package instance.

  attr_reader :package

  @path_warning = false

  @install_lock = Mutex.new

  class << self

    ##
    # True if we've warned about PATH not including Gem.bindir

    attr_accessor :path_warning

    ##
    # Certain aspects of the install process are not thread-safe. This lock is
    # used to allow multiple threads to install Gems at the same time.

    attr_reader :install_lock

    ##
    # Overrides the executable format.
    #
    # This is a sprintf format with a "%s" which will be replaced with the
    # executable name.  It is based off the ruby executable name's difference
    # from "ruby".

    attr_writer :exec_format

    # Defaults to use Ruby's program prefix and suffix.
    def exec_format
      @exec_format ||= Gem.default_exec_format
    end

  end

  ##
  # Construct an installer object for the gem file located at +path+

  def self.at(path, options = {})
    security_policy = options[:security_policy]
    package = Gem::Package.new path, security_policy
    new package, options
  end

  class FakePackage

    attr_accessor :spec

    attr_accessor :dir_mode
    attr_accessor :prog_mode
    attr_accessor :data_mode

    def initialize(spec)
      @spec = spec
    end

    def extract_files(destination_dir, pattern = '*')
      FileUtils.mkdir_p destination_dir

      spec.files.each do |file|
        file = File.join destination_dir, file
        next if File.exist? file
        FileUtils.mkdir_p File.dirname(file)
        File.open file, 'w' do |fp|
          fp.puts "# #{file}"
        end
      end
    end

    def copy_to(path)
    end

  end

  ##
  # Construct an installer object for an ephemeral gem (one where we don't
  # actually have a .gem file, just a spec)

  def self.for_spec(spec, options = {})
    # FIXME: we should have a real Package class for this
    new FakePackage.new(spec), options
  end

  ##
  # Constructs an Installer instance that will install the gem at +package+ which
  # can either be a path or an instance of Gem::Package.  +options+ is a Hash
  # with the following keys:
  #
  # :bin_dir:: Where to put a bin wrapper if needed.
  # :development:: Whether or not development dependencies should be installed.
  # :env_shebang:: Use /usr/bin/env in bin wrappers.
  # :force:: Overrides all version checks and security policy checks, except
  #          for a signed-gems-only policy.
  # :format_executable:: Format the executable the same as the Ruby executable.
  #                      If your Ruby is ruby18, foo_exec will be installed as
  #                      foo_exec18.
  # :ignore_dependencies:: Don't raise if a dependency is missing.
  # :install_dir:: The directory to install the gem into.
  # :security_policy:: Use the specified security policy.  See Gem::Security
  # :user_install:: Indicate that the gem should be unpacked into the users
  #                 personal gem directory.
  # :only_install_dir:: Only validate dependencies against what is in the
  #                     install_dir
  # :wrappers:: Install wrappers if true, symlinks if false.
  # :build_args:: An Array of arguments to pass to the extension builder
  #               process. If not set, then Gem::Command.build_args is used
  # :post_install_message:: Print gem post install message if true

  def initialize(package, options={})
    require 'fileutils'

    @options = options
    if package.is_a? String
      security_policy = options[:security_policy]
      @package = Gem::Package.new package, security_policy
      if $VERBOSE
        warn "constructing an Installer object with a string is deprecated. Please use Gem::Installer.at (called from: #{caller.first})"
      end
    else
      @package = package
    end

    process_options

    @package.dir_mode = options[:dir_mode]
    @package.prog_mode = options[:prog_mode]
    @package.data_mode = options[:data_mode]

    if options[:user_install]
      @gem_home = Gem.user_dir
      @bin_dir = Gem.bindir gem_home unless options[:bin_dir]
      check_that_user_bin_dir_is_in_path
    end
  end

  ##
  # Checks if +filename+ exists in +@bin_dir+.
  #
  # If +@force+ is set +filename+ is overwritten.
  #
  # If +filename+ exists and is a RubyGems wrapper for different gem the user
  # is consulted.
  #
  # If +filename+ exists and +@bin_dir+ is Gem.default_bindir (/usr/local) the
  # user is consulted.
  #
  # Otherwise +filename+ is overwritten.

  def check_executable_overwrite(filename) # :nodoc:
    return if @force

    generated_bin = File.join @bin_dir, formatted_program_filename(filename)

    return unless File.exist? generated_bin

    ruby_executable = false
    existing = nil

    File.open generated_bin, 'rb' do |io|
      next unless io.gets =~ /^#!/ # shebang
      io.gets # blankline

      # TODO detect a specially formatted comment instead of trying
      # to run a regexp against Ruby code.
      next unless io.gets =~ /This file was generated by RubyGems/

      ruby_executable = true
      existing = io.read.slice(%r{
          ^\s*(
            gem \s |
            load \s Gem\.bin_path\( |
            load \s Gem\.activate_bin_path\(
          )
          (['"])(.*?)(\2),
        }x, 3)
    end

    return if spec.name == existing

    # somebody has written to RubyGems' directory, overwrite, too bad
    return if Gem.default_bindir != @bin_dir and not ruby_executable

    question = "#{spec.name}'s executable \"#{filename}\" conflicts with ".dup

    if ruby_executable
      question << (existing || 'an unknown executable')

      return if ask_yes_no "#{question}\nOverwrite the executable?", false

      conflict = "installed executable from #{existing}"
    else
      question << generated_bin

      return if ask_yes_no "#{question}\nOverwrite the executable?", false

      conflict = generated_bin
    end

    raise Gem::InstallError,
      "\"#{filename}\" from #{spec.name} conflicts with #{conflict}"
  end

  ##
  # Lazy accessor for the spec's gem directory.

  def gem_dir
    @gem_dir ||= File.join(gem_home, "gems", spec.full_name)
  end

  ##
  # Lazy accessor for the installer's spec.

  def spec
    @package.spec
  rescue Gem::Package::Error => e
    raise Gem::InstallError, "invalid gem: #{e.message}"
  end

  ##
  # Installs the gem and returns a loaded Gem::Specification for the installed
  # gem.
  #
  # The gem will be installed with the following structure:
  #
  #   @gem_home/
  #     cache/<gem-version>.gem #=> a cached copy of the installed gem
  #     gems/<gem-version>/... #=> extracted files
  #     specifications/<gem-version>.gemspec #=> the Gem::Specification

  def install
    pre_install_checks

    FileUtils.rm_f File.join gem_home, 'specifications', spec.spec_name

    run_pre_install_hooks

    # Set loaded_from to ensure extension_dir is correct
    if @options[:install_as_default]
      spec.loaded_from = default_spec_file
    else
      spec.loaded_from = spec_file
    end

    # Completely remove any previous gem files
    FileUtils.rm_rf gem_dir
    FileUtils.rm_rf spec.extension_dir

    dir_mode = options[:dir_mode]
    FileUtils.mkdir_p gem_dir, :mode => dir_mode && 0755

    if @options[:install_as_default]
      extract_bin
      write_default_spec
    else
      extract_files

      build_extensions
      write_build_info_file
      run_post_build_hooks
    end

    generate_bin

    unless @options[:install_as_default]
      write_spec
      write_cache_file
    end

    File.chmod(dir_mode, gem_dir) if dir_mode

    say spec.post_install_message if options[:post_install_message] && !spec.post_install_message.nil?

    Gem::Installer.install_lock.synchronize { Gem::Specification.reset }

    run_post_install_hooks

    spec

  # TODO This rescue is in the wrong place. What is raising this exception?
  # move this rescue to around the code that actually might raise it.
  rescue Zlib::GzipFile::Error
    raise Gem::InstallError, "gzip error installing #{gem}"
  end

  def run_pre_install_hooks # :nodoc:
    Gem.pre_install_hooks.each do |hook|
      if hook.call(self) == false
        location = " at #{$1}" if hook.inspect =~ /[ @](.*:\d+)/

        message = "pre-install hook#{location} failed for #{spec.full_name}"
        raise Gem::InstallError, message
      end
    end
  end

  def run_post_build_hooks # :nodoc:
    Gem.post_build_hooks.each do |hook|
      if hook.call(self) == false
        FileUtils.rm_rf gem_dir

        location = " at #{$1}" if hook.inspect =~ /[ @](.*:\d+)/

        message = "post-build hook#{location} failed for #{spec.full_name}"
        raise Gem::InstallError, message
      end
    end
  end

  def run_post_install_hooks # :nodoc:
    Gem.post_install_hooks.each do |hook|
      hook.call self
    end
  end

  ##
  #
  # Return an Array of Specifications contained within the gem_home
  # we'll be installing into.

  def installed_specs
    @specs ||= begin
      specs = []

      Gem::Util.glob_files_in_dir("*.gemspec", File.join(gem_home, "specifications")).each do |path|
        spec = Gem::Specification.load path.tap(&Gem::UNTAINT)
        specs << spec if spec
      end

      specs
    end
  end

  ##
  # Ensure that the dependency is satisfied by the current installation of
  # gem.  If it is not an exception is raised.
  #
  # spec       :: Gem::Specification
  # dependency :: Gem::Dependency

  def ensure_dependency(spec, dependency)
    unless installation_satisfies_dependency? dependency
      raise Gem::InstallError, "#{spec.name} requires #{dependency}"
    end
    true
  end

  ##
  # True if the gems in the system satisfy +dependency+.

  def installation_satisfies_dependency?(dependency)
    return true if @options[:development] and dependency.type == :development
    return true if installed_specs.detect { |s| dependency.matches_spec? s }
    return false if @only_install_dir
    not dependency.matching_specs.empty?
  end

  ##
  # Unpacks the gem into the given directory.

  def unpack(directory)
    @gem_dir = directory
    extract_files
  end
  deprecate :unpack, :none, 2020, 04

  ##
  # The location of the spec file that is installed.
  #

  def spec_file
    File.join gem_home, "specifications", "#{spec.full_name}.gemspec"
  end

  ##
  # The location of the default spec file for default gems.
  #

  def default_spec_file
    File.join Gem.default_specifications_dir, "#{spec.full_name}.gemspec"
  end

  ##
  # Writes the .gemspec specification (in Ruby) to the gem home's
  # specifications directory.

  def write_spec
    File.open spec_file, 'w' do |file|
      spec.installed_by_version = Gem.rubygems_version

      file.puts spec.to_ruby_for_cache

      file.fsync rescue nil # for filesystems without fsync(2)
    end
  end

  ##
  # Writes the full .gemspec specification (in Ruby) to the gem home's
  # specifications/default directory.

  def write_default_spec
    File.open(default_spec_file, "w") do |file|
      file.puts spec.to_ruby
    end
  end

  ##
  # Creates windows .bat files for easy running of commands

  def generate_windows_script(filename, bindir)
    if Gem.win_platform?
      script_name = formatted_program_filename(filename) + ".bat"
      script_path = File.join bindir, File.basename(script_name)
      File.open script_path, 'w' do |file|
        file.puts windows_stub_script(bindir, filename)
      end

      verbose script_path
    end
  end

  def generate_bin # :nodoc:
    return if spec.executables.nil? or spec.executables.empty?

    begin
      Dir.mkdir @bin_dir, *[options[:dir_mode] && 0755].compact
    rescue SystemCallError
      raise unless File.directory? @bin_dir
    end

    raise Gem::FilePermissionError.new(@bin_dir) unless File.writable? @bin_dir

    spec.executables.each do |filename|
      filename.tap(&Gem::UNTAINT)
      bin_path = File.join gem_dir, spec.bindir, filename

      unless File.exist? bin_path
        # TODO change this to a more useful warning
        warn "`#{bin_path}` does not exist, maybe `gem pristine #{spec.name}` will fix it?"
        next
      end

      mode = File.stat(bin_path).mode
      dir_mode = options[:prog_mode] || (mode | 0111)
      FileUtils.chmod dir_mode, bin_path unless dir_mode == mode

      check_executable_overwrite filename

      if @wrappers
        generate_bin_script filename, @bin_dir
      else
        generate_bin_symlink filename, @bin_dir
      end

    end
  end

  ##
  # Creates the scripts to run the applications in the gem.
  #--
  # The Windows script is generated in addition to the regular one due to a
  # bug or misfeature in the Windows shell's pipe.  See
  # http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/193379

  def generate_bin_script(filename, bindir)
    bin_script_path = File.join bindir, formatted_program_filename(filename)

    FileUtils.rm_f bin_script_path # prior install may have been --no-wrappers

    File.open bin_script_path, 'wb', 0755 do |file|
      file.print app_script_text(filename)
      file.chmod(options[:prog_mode] || 0755)
    end

    verbose bin_script_path

    generate_windows_script filename, bindir
  end

  ##
  # Creates the symlinks to run the applications in the gem.  Moves
  # the symlink if the gem being installed has a newer version.

  def generate_bin_symlink(filename, bindir)
    src = File.join gem_dir, spec.bindir, filename
    dst = File.join bindir, formatted_program_filename(filename)

    if File.exist? dst
      if File.symlink? dst
        link = File.readlink(dst).split File::SEPARATOR
        cur_version = Gem::Version.create(link[-3].sub(/^.*-/, ''))
        return if spec.version < cur_version
      end
      File.unlink dst
    end

    FileUtils.symlink src, dst, :verbose => Gem.configuration.really_verbose
  rescue NotImplementedError, SystemCallError
    alert_warning "Unable to use symlinks, installing wrapper"
    generate_bin_script filename, bindir
  end

  ##
  # Generates a #! line for +bin_file_name+'s wrapper copying arguments if
  # necessary.
  #
  # If the :custom_shebang config is set, then it is used as a template
  # for how to create the shebang used for to run a gem's executables.
  #
  # The template supports 4 expansions:
  #
  #  $env    the path to the unix env utility
  #  $ruby   the path to the currently running ruby interpreter
  #  $exec   the path to the gem's executable
  #  $name   the name of the gem the executable is for
  #

  def shebang(bin_file_name)
    ruby_name = RbConfig::CONFIG['ruby_install_name'] if @env_shebang
    path = File.join gem_dir, spec.bindir, bin_file_name
    first_line = File.open(path, "rb") {|file| file.gets}

    if /\A#!/ =~ first_line
      # Preserve extra words on shebang line, like "-w".  Thanks RPA.
      shebang = first_line.sub(/\A\#!.*?ruby\S*((\s+\S+)+)/, "#!#{Gem.ruby}")
      opts = $1
      shebang.strip! # Avoid nasty ^M issues.
    end

    if which = Gem.configuration[:custom_shebang]
      # replace bin_file_name with "ruby" to avoid endless loops
      which = which.gsub(/ #{bin_file_name}$/," #{RbConfig::CONFIG['ruby_install_name']}")

      which = which.gsub(/\$(\w+)/) do
        case $1
        when "env"
          @env_path ||= ENV_PATHS.find {|env_path| File.executable? env_path }
        when "ruby"
          "#{Gem.ruby}#{opts}"
        when "exec"
          bin_file_name
        when "name"
          spec.name
        end
      end

      "#!#{which}"
    elsif not ruby_name
      "#!#{Gem.ruby}#{opts}"
    elsif opts
      "#!/bin/sh\n'exec' #{ruby_name.dump} '-x' \"$0\" \"$@\"\n#{shebang}"
    else
      # Create a plain shebang line.
      @env_path ||= ENV_PATHS.find {|env_path| File.executable? env_path }
      "#!#{@env_path} #{ruby_name}"
    end
  end

  ##
  # Ensures the Gem::Specification written out for this gem is loadable upon
  # installation.

  def ensure_loadable_spec
    ruby = spec.to_ruby_for_cache
    ruby.tap(&Gem::UNTAINT)

    begin
      eval ruby
    rescue StandardError, SyntaxError => e
      raise Gem::InstallError,
            "The specification for #{spec.full_name} is corrupt (#{e.class})"
    end
  end

  def ensure_required_ruby_version_met # :nodoc:
    if rrv = spec.required_ruby_version
      ruby_version = Gem.ruby_version
      unless rrv.satisfied_by? ruby_version
        raise Gem::RuntimeRequirementNotMetError,
          "#{spec.name} requires Ruby version #{rrv}. The current ruby version is #{ruby_version}."
      end
    end
  end

  def ensure_required_rubygems_version_met # :nodoc:
    if rrgv = spec.required_rubygems_version
      unless rrgv.satisfied_by? Gem.rubygems_version
        rg_version = Gem::VERSION
        raise Gem::RuntimeRequirementNotMetError,
          "#{spec.name} requires RubyGems version #{rrgv}. The current RubyGems version is #{rg_version}. " +
          "Try 'gem update --system' to update RubyGems itself."
      end
    end
  end

  def ensure_dependencies_met # :nodoc:
    deps = spec.runtime_dependencies
    deps |= spec.development_dependencies if @development

    deps.each do |dep_gem|
      ensure_dependency spec, dep_gem
    end
  end

  def process_options # :nodoc:
    @options = {
      :bin_dir      => nil,
      :env_shebang  => false,
      :force        => false,
      :only_install_dir => false,
      :post_install_message => true
    }.merge options

    @env_shebang         = options[:env_shebang]
    @force               = options[:force]
    @install_dir         = options[:install_dir]
    @gem_home            = options[:install_dir] || Gem.dir
    @ignore_dependencies = options[:ignore_dependencies]
    @format_executable   = options[:format_executable]
    @wrappers            = options[:wrappers]
    @only_install_dir    = options[:only_install_dir]

    # If the user has asked for the gem to be installed in a directory that is
    # the system gem directory, then use the system bin directory, else create
    # (or use) a new bin dir under the gem_home.
    @bin_dir             = options[:bin_dir] || Gem.bindir(gem_home)
    @development         = options[:development]
    @build_root          = options[:build_root]

    @build_args = options[:build_args] || Gem::Command.build_args

    unless @build_root.nil?
      require 'pathname'
      @build_root = Pathname.new(@build_root).expand_path
      @bin_dir = File.join(@build_root, options[:bin_dir] || Gem.bindir(@gem_home))
      @gem_home = File.join(@build_root, @gem_home)
      alert_warning "You build with buildroot.\n  Build root: #{@build_root}\n  Bin dir: #{@bin_dir}\n  Gem home: #{@gem_home}"
    end
  end

  def check_that_user_bin_dir_is_in_path # :nodoc:
    user_bin_dir = @bin_dir || Gem.bindir(gem_home)
    user_bin_dir = user_bin_dir.gsub(File::SEPARATOR, File::ALT_SEPARATOR) if
      File::ALT_SEPARATOR

    path = ENV['PATH']
    if Gem.win_platform?
      path = path.downcase
      user_bin_dir = user_bin_dir.downcase
    end

    path = path.split(File::PATH_SEPARATOR)

    unless path.include? user_bin_dir
      unless !Gem.win_platform? && (path.include? user_bin_dir.sub(ENV['HOME'], '~'))
        unless self.class.path_warning
          alert_warning "You don't have #{user_bin_dir} in your PATH,\n\t  gem executables will not run."
          self.class.path_warning = true
        end
      end
    end
  end

  def verify_gem_home # :nodoc:
    FileUtils.mkdir_p gem_home, :mode => options[:dir_mode] && 0755
    raise Gem::FilePermissionError, gem_home unless File.writable?(gem_home)
  end

  def verify_spec
    unless spec.name =~ Gem::Specification::VALID_NAME_PATTERN
      raise Gem::InstallError, "#{spec} has an invalid name"
    end

    if spec.raw_require_paths.any?{|path| path =~ /\R/ }
      raise Gem::InstallError, "#{spec} has an invalid require_paths"
    end

    if spec.extensions.any?{|ext| ext =~ /\R/ }
      raise Gem::InstallError, "#{spec} has an invalid extensions"
    end

    unless spec.specification_version.to_s =~ /\A\d+\z/
      raise Gem::InstallError, "#{spec} has an invalid specification_version"
    end

    if spec.dependencies.any? {|dep| dep.type != :runtime && dep.type != :development }
      raise Gem::InstallError, "#{spec} has an invalid dependencies"
    end

    if spec.dependencies.any? {|dep| dep.name =~ /(?:\R|[<>])/ }
      raise Gem::InstallError, "#{spec} has an invalid dependencies"
    end
  end

  ##
  # Return the text for an application file.

  def app_script_text(bin_file_name)
    # note that the `load` lines cannot be indented, as old RG versions match
    # against the beginning of the line
    return <<-TEXT
#{shebang bin_file_name}
#
# This file was generated by RubyGems.
#
# The application '#{spec.name}' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'rubygems'

version = "#{Gem::Requirement.default_prerelease}"

str = ARGV.first
if str
  str = str.b[/\\A_(.*)_\\z/, 1]
  if str and Gem::Version.correct?(str)
    version = str
    ARGV.shift
  end
end

if Gem.respond_to?(:activate_bin_path)
load Gem.activate_bin_path('#{spec.name}', '#{bin_file_name}', version)
else
gem #{spec.name.dump}, version
load Gem.bin_path(#{spec.name.dump}, #{bin_file_name.dump}, version)
end
TEXT
  end

  ##
  # return the stub script text used to launch the true Ruby script

  def windows_stub_script(bindir, bin_file_name)
    rb_config = RbConfig::CONFIG
    rb_topdir = RbConfig::TOPDIR || File.dirname(rb_config["bindir"])

    # get ruby executable file name from RbConfig
    ruby_exe = "#{rb_config['RUBY_INSTALL_NAME']}#{rb_config['EXEEXT']}"
    ruby_exe = "ruby.exe" if ruby_exe.empty?

    if File.exist?(File.join bindir, ruby_exe)
      # stub & ruby.exe withing same folder.  Portable
      <<-TEXT
@ECHO OFF
@"%~dp0#{ruby_exe}" "%~dpn0" %*
      TEXT
    elsif bindir.downcase.start_with? rb_topdir.downcase
      # stub within ruby folder, but not standard bin.  Portable
      require 'pathname'
      from = Pathname.new bindir
      to   = Pathname.new "#{rb_topdir}/bin"
      rel  = to.relative_path_from from
      <<-TEXT
@ECHO OFF
@"%~dp0#{rel}/#{ruby_exe}" "%~dpn0" %*
      TEXT
    else
      # outside ruby folder, maybe -user-install or bundler.  Portable, but ruby
      # is dependent on PATH
      <<-TEXT
@ECHO OFF
@#{ruby_exe} "%~dpn0" %*
      TEXT
    end
  end
  ##
  # Builds extensions.  Valid types of extensions are extconf.rb files,
  # configure scripts and rakefiles or mkrf_conf files.

  def build_extensions
    builder = Gem::Ext::Builder.new spec, @build_args

    builder.build_extensions
  end

  ##
  # Logs the build +output+ in +build_dir+, then raises Gem::Ext::BuildError.
  #
  # TODO:  Delete this for RubyGems 4.  It remains for API compatibility

  def extension_build_error(build_dir, output, backtrace = nil) # :nodoc:
    builder = Gem::Ext::Builder.new spec, @build_args

    builder.build_error build_dir, output, backtrace
  end
  deprecate :extension_build_error, :none, 2018, 12

  ##
  # Reads the file index and extracts each file into the gem directory.
  #
  # Ensures that files can't be installed outside the gem directory.

  def extract_files
    @package.extract_files gem_dir
  end

  ##
  # Extracts only the bin/ files from the gem into the gem directory.
  # This is used by default gems to allow a gem-aware stub to function
  # without the full gem installed.

  def extract_bin
    @package.extract_files gem_dir, "#{spec.bindir}/*"
  end

  ##
  # Prefix and suffix the program filename the same as ruby.

  def formatted_program_filename(filename)
    if @format_executable
      self.class.exec_format % File.basename(filename)
    else
      filename
    end
  end

  ##
  #
  # Return the target directory where the gem is to be installed. This
  # directory is not guaranteed to be populated.
  #

  def dir
    gem_dir.to_s
  end

  ##
  # Performs various checks before installing the gem such as the install
  # repository is writable and its directories exist, required Ruby and
  # rubygems versions are met and that dependencies are installed.
  #
  # Version and dependency checks are skipped if this install is forced.
  #
  # The dependent check will be skipped if the install is ignoring dependencies.

  def pre_install_checks
    verify_gem_home

    # The name and require_paths must be verified first, since it could contain
    # ruby code that would be eval'ed in #ensure_loadable_spec
    verify_spec

    ensure_loadable_spec

    if options[:install_as_default]
      Gem.ensure_default_gem_subdirectories gem_home
    else
      Gem.ensure_gem_subdirectories gem_home
    end

    return true if @force

    ensure_required_ruby_version_met
    ensure_required_rubygems_version_met
    ensure_dependencies_met unless @ignore_dependencies

    true
  end

  ##
  # Writes the file containing the arguments for building this gem's
  # extensions.

  def write_build_info_file
    return if @build_args.empty?

    build_info_dir = File.join gem_home, 'build_info'

    dir_mode = options[:dir_mode]
    FileUtils.mkdir_p build_info_dir, :mode => dir_mode && 0755

    build_info_file = File.join build_info_dir, "#{spec.full_name}.info"

    File.open build_info_file, 'w' do |io|
      @build_args.each do |arg|
        io.puts arg
      end
    end

    File.chmod(dir_mode, build_info_dir) if dir_mode
  end

  ##
  # Writes the .gem file to the cache directory

  def write_cache_file
    cache_file = File.join gem_home, 'cache', spec.file_name
    @package.copy_to cache_file
  end

end
PK8H[?G=�	�	%share/rubygems/rubygems/name_tuple.rbnu�[���# frozen_string_literal: true
##
#
# Represents a gem of name +name+ at +version+ of +platform+. These
# wrap the data returned from the indexes.

require 'rubygems/platform'

class Gem::NameTuple

  def initialize(name, version, platform="ruby")
    @name = name
    @version = version

    unless platform.kind_of? Gem::Platform
      platform = "ruby" if !platform or platform.empty?
    end

    @platform = platform
  end

  attr_reader :name, :version, :platform

  ##
  # Turn an array of [name, version, platform] into an array of
  # NameTuple objects.

  def self.from_list(list)
    list.map { |t| new(*t) }
  end

  ##
  # Turn an array of NameTuple objects back into an array of
  # [name, version, platform] tuples.

  def self.to_basic(list)
    list.map { |t| t.to_a }
  end

  ##
  # A null NameTuple, ie name=nil, version=0

  def self.null
    new nil, Gem::Version.new(0), nil
  end

  ##
  # Returns the full name (name-version) of this Gem.  Platform information is
  # included if it is not the default Ruby platform.  This mimics the behavior
  # of Gem::Specification#full_name.

  def full_name
    case @platform
    when nil, 'ruby', ''
      "#{@name}-#{@version}"
    else
      "#{@name}-#{@version}-#{@platform}"
    end.dup.tap(&Gem::UNTAINT)
  end

  ##
  # Indicate if this NameTuple matches the current platform.

  def match_platform?
    Gem::Platform.match @platform
  end

  ##
  # Indicate if this NameTuple is for a prerelease version.
  def prerelease?
    @version.prerelease?
  end

  ##
  # Return the name that the gemspec file would be

  def spec_name
    "#{full_name}.gemspec"
  end

  ##
  # Convert back to the [name, version, platform] tuple

  def to_a
    [@name, @version, @platform]
  end

  def inspect # :nodoc:
    "#<Gem::NameTuple #{@name}, #{@version}, #{@platform}>"
  end

  alias to_s inspect # :nodoc:

  def <=>(other)
    [@name, @version, @platform == Gem::Platform::RUBY ? -1 : 1] <=>
      [other.name, other.version,
       other.platform == Gem::Platform::RUBY ? -1 : 1]
  end

  include Comparable

  ##
  # Compare with +other+. Supports another NameTuple or an Array
  # in the [name, version, platform] format.

  def ==(other)
    case other
    when self.class
      @name == other.name and
        @version == other.version and
        @platform == other.platform
    when Array
      to_a == other
    else
      false
    end
  end

  alias_method :eql?, :==

  def hash
    to_a.hash
  end

end
PK8H[_�
�$share/rubygems/rubygems/deprecate.rbnu�[���# frozen_string_literal: true
##
# Provides a single method +deprecate+ to be used to declare when
# something is going away.
#
#     class Legacy
#       def self.klass_method
#         # ...
#       end
#
#       def instance_method
#         # ...
#       end
#
#       extend Gem::Deprecate
#       deprecate :instance_method, "X.z", 2011, 4
#
#       class << self
#         extend Gem::Deprecate
#         deprecate :klass_method, :none, 2011, 4
#       end
#     end

module Gem::Deprecate

  def self.skip # :nodoc:
    @skip ||= false
  end

  def self.skip=(v) # :nodoc:
    @skip = v
  end

  ##
  # Temporarily turn off warnings. Intended for tests only.

  def skip_during
    Gem::Deprecate.skip, original = true, Gem::Deprecate.skip
    yield
  ensure
    Gem::Deprecate.skip = original
  end

  ##
  # Simple deprecation method that deprecates +name+ by wrapping it up
  # in a dummy method. It warns on each call to the dummy method
  # telling the user of +repl+ (unless +repl+ is :none) and the
  # year/month that it is planned to go away.

  def deprecate(name, repl, year, month)
    class_eval do
      old = "_deprecated_#{name}"
      alias_method old, name
      define_method name do |*args, &block|
        klass = self.kind_of? Module
        target = klass ? "#{self}." : "#{self.class}#"
        msg = [ "NOTE: #{target}#{name} is deprecated",
                repl == :none ? " with no replacement" : "; use #{repl} instead",
                ". It will be removed on or after %4d-%02d-01." % [year, month],
                "\n#{target}#{name} called from #{Gem.location_of_caller.join(":")}",
        ]
        warn "#{msg.join}." unless Gem::Deprecate.skip
        send old, *args, &block
      end
    end
  end

  module_function :deprecate, :skip_during

end
PK8H[����/�/&share/rubygems/rubygems/request_set.rbnu�[���# frozen_string_literal: true
require 'tsort'

##
# A RequestSet groups a request to activate a set of dependencies.
#
#   nokogiri = Gem::Dependency.new 'nokogiri', '~> 1.6'
#   pg = Gem::Dependency.new 'pg', '~> 0.14'
#
#   set = Gem::RequestSet.new nokogiri, pg
#
#   requests = set.resolve
#
#   p requests.map { |r| r.full_name }
#   #=> ["nokogiri-1.6.0", "mini_portile-0.5.1", "pg-0.17.0"]

class Gem::RequestSet

  include TSort

  ##
  # Array of gems to install even if already installed

  attr_accessor :always_install

  attr_reader :dependencies

  attr_accessor :development

  ##
  # Errors fetching gems during resolution.

  attr_reader :errors

  ##
  # Set to true if you want to install only direct development dependencies.

  attr_accessor :development_shallow

  ##
  # The set of git gems imported via load_gemdeps.

  attr_reader :git_set # :nodoc:

  ##
  # When true, dependency resolution is not performed, only the requested gems
  # are installed.

  attr_accessor :ignore_dependencies

  attr_reader :install_dir # :nodoc:

  ##
  # If true, allow dependencies to match prerelease gems.

  attr_accessor :prerelease

  ##
  # When false no remote sets are used for resolving gems.

  attr_accessor :remote

  attr_reader :resolver # :nodoc:

  ##
  # Sets used for resolution

  attr_reader :sets # :nodoc:

  ##
  # Treat missing dependencies as silent errors

  attr_accessor :soft_missing

  ##
  # The set of vendor gems imported via load_gemdeps.

  attr_reader :vendor_set # :nodoc:

  ##
  # The set of source gems imported via load_gemdeps.

  attr_reader :source_set

  ##
  # Creates a RequestSet for a list of Gem::Dependency objects, +deps+.  You
  # can then #resolve and #install the resolved list of dependencies.
  #
  #   nokogiri = Gem::Dependency.new 'nokogiri', '~> 1.6'
  #   pg = Gem::Dependency.new 'pg', '~> 0.14'
  #
  #   set = Gem::RequestSet.new nokogiri, pg

  def initialize(*deps)
    @dependencies = deps

    @always_install      = []
    @conservative        = false
    @dependency_names    = {}
    @development         = false
    @development_shallow = false
    @errors              = []
    @git_set             = nil
    @ignore_dependencies = false
    @install_dir         = Gem.dir
    @prerelease          = false
    @remote              = true
    @requests            = []
    @sets                = []
    @soft_missing        = false
    @sorted              = nil
    @specs               = nil
    @vendor_set          = nil
    @source_set          = nil

    yield self if block_given?
  end

  ##
  # Declare that a gem of name +name+ with +reqs+ requirements is needed.

  def gem(name, *reqs)
    if dep = @dependency_names[name]
      dep.requirement.concat reqs
    else
      dep = Gem::Dependency.new name, *reqs
      @dependency_names[name] = dep
      @dependencies << dep
    end
  end

  ##
  # Add +deps+ Gem::Dependency objects to the set.

  def import(deps)
    @dependencies.concat deps
  end

  ##
  # Installs gems for this RequestSet using the Gem::Installer +options+.
  #
  # If a +block+ is given an activation +request+ and +installer+ are yielded.
  # The +installer+ will be +nil+ if a gem matching the request was already
  # installed.

  def install(options, &block) # :yields: request, installer
    if dir = options[:install_dir]
      requests = install_into dir, false, options, &block
      return requests
    end

    @prerelease = options[:prerelease]

    requests = []
    download_queue = Queue.new

    # Create a thread-safe list of gems to download
    sorted_requests.each do |req|
      download_queue << req
    end

    # Create N threads in a pool, have them download all the gems
    threads = Gem.configuration.concurrent_downloads.times.map do
      # When a thread pops this item, it knows to stop running. The symbol
      # is queued here so that there will be one symbol per thread.
      download_queue << :stop

      Thread.new do
        # The pop method will block waiting for items, so the only way
        # to stop a thread from running is to provide a final item that
        # means the thread should stop.
        while req = download_queue.pop
          break if req == :stop
          req.spec.download options unless req.installed?
        end
      end
    end

    # Wait for all the downloads to finish before continuing
    threads.each(&:value)

    # Install requested gems after they have been downloaded
    sorted_requests.each do |req|
      if req.installed?
        req.spec.spec.build_extensions

        if @always_install.none? { |spec| spec == req.spec.spec }
          yield req, nil if block_given?
          next
        end
      end

      spec =
        begin
          req.spec.install options do |installer|
            yield req, installer if block_given?
          end
        rescue Gem::RuntimeRequirementNotMetError => e
          recent_match = req.spec.set.find_all(req.request).sort_by(&:version).reverse_each.find do |s|
            s = s.spec
            s.required_ruby_version.satisfied_by?(Gem.ruby_version) &&
              s.required_rubygems_version.satisfied_by?(Gem.rubygems_version) &&
              Gem::Platform.installable?(s)
          end
          if recent_match
            suggestion = "The last version of #{req.request} to support your Ruby & RubyGems was #{recent_match.version}. Try installing it with `gem install #{recent_match.name} -v #{recent_match.version}`"
            suggestion += " and then running the current command again" unless @always_install.include?(req.spec.spec)
          else
            suggestion = "There are no versions of #{req.request} compatible with your Ruby & RubyGems"
            suggestion += ". Maybe try installing an older version of the gem you're looking for?" unless @always_install.include?(req.spec.spec)
          end
          e.suggestion = suggestion
          raise
        end

      requests << spec
    end

    return requests if options[:gemdeps]

    install_hooks requests, options

    requests
  end

  ##
  # Installs from the gem dependencies files in the +:gemdeps+ option in
  # +options+, yielding to the +block+ as in #install.
  #
  # If +:without_groups+ is given in the +options+, those groups in the gem
  # dependencies file are not used.  See Gem::Installer for other +options+.

  def install_from_gemdeps(options, &block)
    gemdeps = options[:gemdeps]

    @install_dir = options[:install_dir] || Gem.dir
    @prerelease  = options[:prerelease]
    @remote      = options[:domain] != :local
    @conservative = true if options[:conservative]

    gem_deps_api = load_gemdeps gemdeps, options[:without_groups], true

    resolve

    if options[:explain]
      puts "Gems to install:"

      sorted_requests.each do |spec|
        puts "  #{spec.full_name}"
      end

      if Gem.configuration.really_verbose
        @resolver.stats.display
      end
    else
      installed = install options, &block

      if options.fetch :lock, true
        lockfile =
          Gem::RequestSet::Lockfile.build self, gemdeps, gem_deps_api.dependencies
        lockfile.write
      end

      installed
    end
  end

  def install_into(dir, force = true, options = {})
    gem_home, ENV['GEM_HOME'] = ENV['GEM_HOME'], dir

    existing = force ? [] : specs_in(dir)
    existing.delete_if { |s| @always_install.include? s }

    dir = File.expand_path dir

    installed = []

    options[:development] = false
    options[:install_dir] = dir
    options[:only_install_dir] = true
    @prerelease = options[:prerelease]

    sorted_requests.each do |request|
      spec = request.spec

      if existing.find { |s| s.full_name == spec.full_name }
        yield request, nil if block_given?
        next
      end

      spec.install options do |installer|
        yield request, installer if block_given?
      end

      installed << request
    end

    install_hooks installed, options

    installed
  ensure
    ENV['GEM_HOME'] = gem_home
  end

  ##
  # Call hooks on installed gems

  def install_hooks(requests, options)
    specs = requests.map do |request|
      case request
      when Gem::Resolver::ActivationRequest then
        request.spec.spec
      else
        request
      end
    end

    require "rubygems/dependency_installer"
    inst = Gem::DependencyInstaller.new options
    inst.installed_gems.replace specs

    Gem.done_installing_hooks.each do |hook|
      hook.call inst, specs
    end unless Gem.done_installing_hooks.empty?
  end

  ##
  # Load a dependency management file.

  def load_gemdeps(path, without_groups = [], installing = false)
    @git_set    = Gem::Resolver::GitSet.new
    @vendor_set = Gem::Resolver::VendorSet.new
    @source_set = Gem::Resolver::SourceSet.new

    @git_set.root_dir = @install_dir

    lock_file = "#{File.expand_path(path)}.lock".dup.tap(&Gem::UNTAINT)
    begin
      tokenizer = Gem::RequestSet::Lockfile::Tokenizer.from_file lock_file
      parser = tokenizer.make_parser self, []
      parser.parse
    rescue Errno::ENOENT
    end

    gf = Gem::RequestSet::GemDependencyAPI.new self, path
    gf.installing = installing
    gf.without_groups = without_groups if without_groups
    gf.load
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[RequestSet:', ']' do
      q.breakable

      if @remote
        q.text 'remote'
        q.breakable
      end

      if @prerelease
        q.text 'prerelease'
        q.breakable
      end

      if @development_shallow
        q.text 'shallow development'
        q.breakable
      elsif @development
        q.text 'development'
        q.breakable
      end

      if @soft_missing
        q.text 'soft missing'
      end

      q.group 2, '[dependencies:', ']' do
        q.breakable
        @dependencies.map do |dep|
          q.text dep.to_s
          q.breakable
        end
      end

      q.breakable
      q.text 'sets:'

      q.breakable
      q.pp @sets.map { |set| set.class }
    end
  end

  ##
  # Resolve the requested dependencies and return an Array of Specification
  # objects to be activated.

  def resolve(set = Gem::Resolver::BestSet.new)
    @sets << set
    @sets << @git_set
    @sets << @vendor_set
    @sets << @source_set

    set = Gem::Resolver.compose_sets(*@sets)
    set.remote = @remote
    set.prerelease = @prerelease

    resolver = Gem::Resolver.new @dependencies, set
    resolver.development         = @development
    resolver.development_shallow = @development_shallow
    resolver.ignore_dependencies = @ignore_dependencies
    resolver.soft_missing        = @soft_missing

    if @conservative
      installed_gems = {}
      Gem::Specification.find_all do |spec|
        (installed_gems[spec.name] ||= []) << spec
      end
      resolver.skip_gems = installed_gems
    end

    @resolver = resolver

    @requests = resolver.resolve

    @errors = set.errors

    @requests
  end

  ##
  # Resolve the requested dependencies against the gems available via Gem.path
  # and return an Array of Specification objects to be activated.

  def resolve_current
    resolve Gem::Resolver::CurrentSet.new
  end

  def sorted_requests
    @sorted ||= strongly_connected_components.flatten
  end

  def specs
    @specs ||= @requests.map { |r| r.full_spec }
  end

  def specs_in(dir)
    Gem::Util.glob_files_in_dir("*.gemspec", File.join(dir, "specifications")).map do |g|
      Gem::Specification.load g
    end
  end

  def tsort_each_node(&block) # :nodoc:
    @requests.each(&block)
  end

  def tsort_each_child(node) # :nodoc:
    node.spec.dependencies.each do |dep|
      next if dep.type == :development and not @development

      match = @requests.find do |r|
        dep.match? r.spec.name, r.spec.version, @prerelease
      end

      unless match
        next if dep.type == :development and @development_shallow
        next if @soft_missing
        raise Gem::DependencyError,
              "Unresolved dependency found during sorting - #{dep} (requested by #{node.spec.full_name})"
      end

      yield match
    end
  end

end

require 'rubygems/request_set/gem_dependency_api'
require 'rubygems/request_set/lockfile'
require 'rubygems/request_set/lockfile/tokenizer'
PK8H[p�l�"�"%share/rubygems/rubygems/dependency.rbnu�[���# frozen_string_literal: true
##
# The Dependency class holds a Gem name and a Gem::Requirement.

require "rubygems/bundler_version_finder"
require "rubygems/requirement"

class Gem::Dependency

  ##
  # Valid dependency types.
  #--
  # When this list is updated, be sure to change
  # Gem::Specification::CURRENT_SPECIFICATION_VERSION as well.
  #
  # REFACTOR: This type of constant, TYPES, indicates we might want
  # two classes, used via inheritance or duck typing.

  TYPES = [
    :development,
    :runtime,
  ].freeze

  ##
  # Dependency name or regular expression.

  attr_accessor :name

  ##
  # Allows you to force this dependency to be a prerelease.

  attr_writer :prerelease

  ##
  # Constructs a dependency with +name+ and +requirements+. The last
  # argument can optionally be the dependency type, which defaults to
  # <tt>:runtime</tt>.

  def initialize(name, *requirements)
    case name
    when String then # ok
    when Regexp then
      msg = ["NOTE: Dependency.new w/ a regexp is deprecated.",
             "Dependency.new called from #{Gem.location_of_caller.join(":")}"]
      warn msg.join("\n") unless Gem::Deprecate.skip
    else
      raise ArgumentError,
            "dependency name must be a String, was #{name.inspect}"
    end

    type         = Symbol === requirements.last ? requirements.pop : :runtime
    requirements = requirements.first if 1 == requirements.length # unpack

    unless TYPES.include? type
      raise ArgumentError, "Valid types are #{TYPES.inspect}, " +
                           "not #{type.inspect}"
    end

    @name        = name
    @requirement = Gem::Requirement.create requirements
    @type        = type
    @prerelease  = false

    # This is for Marshal backwards compatibility. See the comments in
    # +requirement+ for the dirty details.

    @version_requirements = @requirement
  end

  ##
  # A dependency's hash is the XOR of the hashes of +name+, +type+,
  # and +requirement+.

  def hash # :nodoc:
    name.hash ^ type.hash ^ requirement.hash
  end

  def inspect # :nodoc:
    if prerelease?
      "<%s type=%p name=%p requirements=%p prerelease=ok>" %
        [self.class, self.type, self.name, requirement.to_s]
    else
      "<%s type=%p name=%p requirements=%p>" %
        [self.class, self.type, self.name, requirement.to_s]
    end
  end

  ##
  # Does this dependency require a prerelease?

  def prerelease?
    @prerelease || requirement.prerelease?
  end

  ##
  # Is this dependency simply asking for the latest version
  # of a gem?

  def latest_version?
    @requirement.none?
  end

  def pretty_print(q) # :nodoc:
    q.group 1, 'Gem::Dependency.new(', ')' do
      q.pp name
      q.text ','
      q.breakable

      q.pp requirement

      q.text ','
      q.breakable

      q.pp type
    end
  end

  ##
  # What does this dependency require?

  def requirement
    return @requirement if defined?(@requirement) and @requirement

    # @version_requirements and @version_requirement are legacy ivar
    # names, and supported here because older gems need to keep
    # working and Dependency doesn't implement marshal_dump and
    # marshal_load. In a happier world, this would be an
    # attr_accessor. The horrifying instance_variable_get you see
    # below is also the legacy of some old restructurings.
    #
    # Note also that because of backwards compatibility (loading new
    # gems in an old RubyGems installation), we can't add explicit
    # marshaling to this class until we want to make a big
    # break. Maybe 2.0.
    #
    # Children, define explicit marshal and unmarshal behavior for
    # public classes. Marshal formats are part of your public API.

    # REFACTOR: See above

    if defined?(@version_requirement) && @version_requirement
      version = @version_requirement.instance_variable_get :@version
      @version_requirement = nil
      @version_requirements = Gem::Requirement.new version
    end

    @requirement = @version_requirements if defined?(@version_requirements)
  end

  def requirements_list
    requirement.as_list
  end

  def to_s # :nodoc:
    if type != :runtime
      "#{name} (#{requirement}, #{type})"
    else
      "#{name} (#{requirement})"
    end
  end

  ##
  # Dependency type.

  def type
    @type ||= :runtime
  end

  def runtime?
    @type == :runtime || !@type
  end

  def ==(other) # :nodoc:
    Gem::Dependency === other &&
      self.name        == other.name &&
      self.type        == other.type &&
      self.requirement == other.requirement
  end

  ##
  # Dependencies are ordered by name.

  def <=>(other)
    self.name <=> other.name
  end

  ##
  # Uses this dependency as a pattern to compare to +other+. This
  # dependency will match if the name matches the other's name, and
  # other has only an equal version requirement that satisfies this
  # dependency.

  def =~(other)
    unless Gem::Dependency === other
      return unless other.respond_to?(:name) && other.respond_to?(:version)
      other = Gem::Dependency.new other.name, other.version
    end

    return false unless name === other.name

    reqs = other.requirement.requirements

    return false unless reqs.length == 1
    return false unless reqs.first.first == '='

    version = reqs.first.last

    requirement.satisfied_by? version
  end

  alias === =~

  ##
  # :call-seq:
  #   dep.match? name          => true or false
  #   dep.match? name, version => true or false
  #   dep.match? spec          => true or false
  #
  # Does this dependency match the specification described by +name+ and
  # +version+ or match +spec+?
  #
  # NOTE:  Unlike #matches_spec? this method does not return true when the
  # version is a prerelease version unless this is a prerelease dependency.

  def match?(obj, version=nil, allow_prerelease=false)
    if !version
      name = obj.name
      version = obj.version
    else
      name = obj
    end

    return false unless self.name === name

    version = Gem::Version.new version

    return true if requirement.none? and not version.prerelease?
    return false if version.prerelease? and
                    not allow_prerelease and
                    not prerelease?

    requirement.satisfied_by? version
  end

  ##
  # Does this dependency match +spec+?
  #
  # NOTE:  This is not a convenience method.  Unlike #match? this method
  # returns true when +spec+ is a prerelease version even if this dependency
  # is not a prerelease dependency.

  def matches_spec?(spec)
    return false unless name === spec.name
    return true  if requirement.none?

    requirement.satisfied_by?(spec.version)
  end

  ##
  # Merges the requirements of +other+ into this dependency

  def merge(other)
    unless name == other.name
      raise ArgumentError,
            "#{self} and #{other} have different names"
    end

    default = Gem::Requirement.default
    self_req = self.requirement
    other_req = other.requirement

    return self.class.new name, self_req  if other_req == default
    return self.class.new name, other_req if self_req  == default

    self.class.new name, self_req.as_list.concat(other_req.as_list)
  end

  def matching_specs(platform_only = false)
    env_req = Gem.env_requirement(name)
    matches = Gem::Specification.stubs_for(name).find_all do |spec|
      requirement.satisfied_by?(spec.version) && env_req.satisfied_by?(spec.version)
    end.map(&:to_spec)

    Gem::BundlerVersionFinder.filter!(matches) if name == "bundler".freeze && !requirement.specific?

    if platform_only
      matches.reject! do |spec|
        spec.nil? || !Gem::Platform.match(spec.platform)
      end
    end

    matches
  end

  ##
  # True if the dependency will not always match the latest version.

  def specific?
    @requirement.specific?
  end

  def to_specs
    matches = matching_specs true

    # TODO: check Gem.activated_spec[self.name] in case matches falls outside

    if matches.empty?
      specs = Gem::Specification.stubs_for name

      if specs.empty?
        raise Gem::MissingSpecError.new name, requirement
      else
        raise Gem::MissingSpecVersionError.new name, requirement, specs
      end
    end

    # TODO: any other resolver validations should go here

    matches
  end

  def to_spec
    matches = self.to_specs.compact

    active = matches.find { |spec| spec.activated? }
    return active if active

    return matches.first if prerelease?

    # Move prereleases to the end of the list for >= 0 requirements
    pre, matches = matches.partition { |spec| spec.version.prerelease? }
    matches += pre if requirement == Gem::Requirement.default

    matches.first
  end

  def identity
    if prerelease?
      if specific?
        :complete
      else
        :abs_latest
      end
    elsif latest_version?
      :latest
    else
      :released
    end
  end

end
PK8H[��W���share/rubygems/rubygems/ext.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

##
# Classes for building C extensions live here.

module Gem::Ext; end

require 'rubygems/ext/build_error'
require 'rubygems/ext/builder'
require 'rubygems/ext/configure_builder'
require 'rubygems/ext/ext_conf_builder'
require 'rubygems/ext/rake_builder'
require 'rubygems/ext/cmake_builder'
PK8H[�#�r

-share/rubygems/rubygems/security/trust_dir.rbnu�[���# frozen_string_literal: true
##
# The TrustDir manages the trusted certificates for gem signature
# verification.

class Gem::Security::TrustDir

  ##
  # Default permissions for the trust directory and its contents

  DEFAULT_PERMISSIONS = {
    :trust_dir    => 0700,
    :trusted_cert => 0600,
  }.freeze

  ##
  # The directory where trusted certificates will be stored.

  attr_reader :dir

  ##
  # Creates a new TrustDir using +dir+ where the directory and file
  # permissions will be checked according to +permissions+

  def initialize(dir, permissions = DEFAULT_PERMISSIONS)
    @dir = dir
    @permissions = permissions

    @digester = Gem::Security::DIGEST_ALGORITHM
  end

  ##
  # Returns the path to the trusted +certificate+

  def cert_path(certificate)
    name_path certificate.subject
  end

  ##
  # Enumerates trusted certificates.

  def each_certificate
    return enum_for __method__ unless block_given?

    glob = File.join @dir, '*.pem'

    Dir[glob].each do |certificate_file|
      begin
        certificate = load_certificate certificate_file

        yield certificate, certificate_file
      rescue OpenSSL::X509::CertificateError
        next # HACK warn
      end
    end
  end

  ##
  # Returns the issuer certificate of the given +certificate+ if it exists in
  # the trust directory.

  def issuer_of(certificate)
    path = name_path certificate.issuer

    return unless File.exist? path

    load_certificate path
  end

  ##
  # Returns the path to the trusted certificate with the given ASN.1 +name+

  def name_path(name)
    digest = @digester.hexdigest name.to_s

    File.join @dir, "cert-#{digest}.pem"
  end

  ##
  # Loads the given +certificate_file+

  def load_certificate(certificate_file)
    pem = File.read certificate_file

    OpenSSL::X509::Certificate.new pem
  end

  ##
  # Add a certificate to trusted certificate list.

  def trust_cert(certificate)
    verify

    destination = cert_path certificate

    File.open destination, 'wb', 0600 do |io|
      io.write certificate.to_pem
      io.chmod(@permissions[:trusted_cert])
    end
  end

  ##
  # Make sure the trust directory exists.  If it does exist, make sure it's
  # actually a directory.  If not, then create it with the appropriate
  # permissions.

  def verify
    if File.exist? @dir
      raise Gem::Security::Exception,
        "trust directory #{@dir} is not a directory" unless
          File.directory? @dir

      FileUtils.chmod 0700, @dir
    else
      FileUtils.mkdir_p @dir, :mode => @permissions[:trust_dir]
    end
  end

end
PK8H[\m�Q��*share/rubygems/rubygems/security/signer.rbnu�[���# frozen_string_literal: true
##
# Basic OpenSSL-based package signing class.

require "rubygems/user_interaction"

class Gem::Security::Signer

  include Gem::UserInteraction

  ##
  # The chain of certificates for signing including the signing certificate

  attr_accessor :cert_chain

  ##
  # The private key for the signing certificate

  attr_accessor :key

  ##
  # The digest algorithm used to create the signature

  attr_reader :digest_algorithm

  ##
  # The name of the digest algorithm, used to pull digests out of the hash by
  # name.

  attr_reader :digest_name # :nodoc:

  ##
  # Gem::Security::Signer options

  attr_reader :options

  DEFAULT_OPTIONS = {
    expiration_length_days: 365
  }.freeze

  ##
  # Attemps to re-sign an expired cert with a given private key
  def self.re_sign_cert(expired_cert, expired_cert_path, private_key)
    return unless expired_cert.not_after < Time.now

    expiry = expired_cert.not_after.strftime('%Y%m%d%H%M%S')
    expired_cert_file = "#{File.basename(expired_cert_path)}.expired.#{expiry}"
    new_expired_cert_path = File.join(Gem.user_home, ".gem", expired_cert_file)

    Gem::Security.write(expired_cert, new_expired_cert_path)

    re_signed_cert = Gem::Security.re_sign(
      expired_cert,
      private_key,
      (Gem::Security::ONE_DAY * Gem.configuration.cert_expiration_length_days)
    )

    Gem::Security.write(re_signed_cert, expired_cert_path)

    yield(expired_cert_path, new_expired_cert_path) if block_given?
  end

  ##
  # Creates a new signer with an RSA +key+ or path to a key, and a certificate
  # +chain+ containing X509 certificates, encoding certificates or paths to
  # certificates.

  def initialize(key, cert_chain, passphrase = nil, options = {})
    @cert_chain = cert_chain
    @key        = key
    @passphrase = passphrase
    @options = DEFAULT_OPTIONS.merge(options)

    unless @key
      default_key = File.join Gem.default_key_path
      @key = default_key if File.exist? default_key
    end

    unless @cert_chain
      default_cert = File.join Gem.default_cert_path
      @cert_chain = [default_cert] if File.exist? default_cert
    end

    @digest_algorithm = Gem::Security::DIGEST_ALGORITHM
    @digest_name      = Gem::Security::DIGEST_NAME

    if @key && !@key.is_a?(OpenSSL::PKey::RSA)
      @key = OpenSSL::PKey::RSA.new(File.read(@key), @passphrase)
    end

    if @cert_chain
      @cert_chain = @cert_chain.compact.map do |cert|
        next cert if OpenSSL::X509::Certificate === cert

        cert = File.read cert if File.exist? cert

        OpenSSL::X509::Certificate.new cert
      end

      load_cert_chain
    end
  end

  ##
  # Extracts the full name of +cert+.  If the certificate has a subjectAltName
  # this value is preferred, otherwise the subject is used.

  def extract_name(cert) # :nodoc:
    subject_alt_name = cert.extensions.find { |e| 'subjectAltName' == e.oid }

    if subject_alt_name
      /\Aemail:/ =~ subject_alt_name.value

      $' || subject_alt_name.value
    else
      cert.subject
    end
  end

  ##
  # Loads any missing issuers in the cert chain from the trusted certificates.
  #
  # If the issuer does not exist it is ignored as it will be checked later.

  def load_cert_chain # :nodoc:
    return if @cert_chain.empty?

    while @cert_chain.first.issuer.to_s != @cert_chain.first.subject.to_s do
      issuer = Gem::Security.trust_dir.issuer_of @cert_chain.first

      break unless issuer # cert chain is verified later

      @cert_chain.unshift issuer
    end
  end

  ##
  # Sign data with given digest algorithm

  def sign(data)
    return unless @key

    raise Gem::Security::Exception, 'no certs provided' if @cert_chain.empty?

    if @cert_chain.length == 1 and @cert_chain.last.not_after < Time.now
      alert("Your certificate has expired, trying to re-sign it...")

      re_sign_key(
        expiration_length: (Gem::Security::ONE_DAY * options[:expiration_length_days])
      )
    end

    full_name = extract_name @cert_chain.last

    Gem::Security::SigningPolicy.verify @cert_chain, @key, {}, {}, full_name

    @key.sign @digest_algorithm.new, data
  end

  ##
  # Attempts to re-sign the private key if the signing certificate is expired.
  #
  # The key will be re-signed if:
  # * The expired certificate is self-signed
  # * The expired certificate is saved at ~/.gem/gem-public_cert.pem
  #   and the private key is saved at ~/.gem/gem-private_key.pem
  # * There is no file matching the expiry date at
  #   ~/.gem/gem-public_cert.pem.expired.%Y%m%d%H%M%S
  #
  # If the signing certificate can be re-signed the expired certificate will
  # be saved as ~/.gem/gem-public_cert.pem.expired.%Y%m%d%H%M%S where the
  # expiry time (not after) is used for the timestamp.

  def re_sign_key(expiration_length: Gem::Security::ONE_YEAR) # :nodoc:
    old_cert = @cert_chain.last

    disk_cert_path = File.join(Gem.default_cert_path)
    disk_cert = File.read(disk_cert_path) rescue nil

    disk_key_path = File.join(Gem.default_key_path)
    disk_key =
      OpenSSL::PKey::RSA.new(File.read(disk_key_path), @passphrase) rescue nil

    return unless disk_key

    if disk_key.to_pem == @key.to_pem && disk_cert == old_cert.to_pem
      expiry = old_cert.not_after.strftime('%Y%m%d%H%M%S')
      old_cert_file = "gem-public_cert.pem.expired.#{expiry}"
      old_cert_path = File.join(Gem.user_home, ".gem", old_cert_file)

      unless File.exist?(old_cert_path)
        Gem::Security.write(old_cert, old_cert_path)

        cert = Gem::Security.re_sign(old_cert, @key, expiration_length)

        Gem::Security.write(cert, disk_cert_path)

        alert("Your cert: #{disk_cert_path} has been auto re-signed with the key: #{disk_key_path}")
        alert("Your expired cert will be located at: #{old_cert_path}")

        @cert_chain = [cert]
      end
    end
  end

end
PK8H[�Q�ۜ�*share/rubygems/rubygems/security/policy.rbnu�[���# frozen_string_literal: true
require 'rubygems/user_interaction'

##
# A Gem::Security::Policy object encapsulates the settings for verifying
# signed gem files.  This is the base class.  You can either declare an
# instance of this or use one of the preset security policies in
# Gem::Security::Policies.

class Gem::Security::Policy

  include Gem::UserInteraction

  attr_reader :name

  attr_accessor :only_signed
  attr_accessor :only_trusted
  attr_accessor :verify_chain
  attr_accessor :verify_data
  attr_accessor :verify_root
  attr_accessor :verify_signer

  ##
  # Create a new Gem::Security::Policy object with the given mode and
  # options.

  def initialize(name, policy = {}, opt = {})
    require 'openssl'

    @name = name

    @opt = opt

    # Default to security
    @only_signed   = true
    @only_trusted  = true
    @verify_chain  = true
    @verify_data   = true
    @verify_root   = true
    @verify_signer = true

    policy.each_pair do |key, val|
      case key
      when :verify_data   then @verify_data   = val
      when :verify_signer then @verify_signer = val
      when :verify_chain  then @verify_chain  = val
      when :verify_root   then @verify_root   = val
      when :only_trusted  then @only_trusted  = val
      when :only_signed   then @only_signed   = val
      end
    end
  end

  ##
  # Verifies each certificate in +chain+ has signed the following certificate
  # and is valid for the given +time+.

  def check_chain(chain, time)
    raise Gem::Security::Exception, 'missing signing chain' unless chain
    raise Gem::Security::Exception, 'empty signing chain' if chain.empty?

    begin
      chain.each_cons 2 do |issuer, cert|
        check_cert cert, issuer, time
      end

      true
    rescue Gem::Security::Exception => e
      raise Gem::Security::Exception, "invalid signing chain: #{e.message}"
    end
  end

  ##
  # Verifies that +data+ matches the +signature+ created by +public_key+ and
  # the +digest+ algorithm.

  def check_data(public_key, digest, signature, data)
    raise Gem::Security::Exception, "invalid signature" unless
      public_key.verify digest.new, signature, data.digest

    true
  end

  ##
  # Ensures that +signer+ is valid for +time+ and was signed by the +issuer+.
  # If the +issuer+ is +nil+ no verification is performed.

  def check_cert(signer, issuer, time)
    raise Gem::Security::Exception, 'missing signing certificate' unless
      signer

    message = "certificate #{signer.subject}"

    if not_before = signer.not_before and not_before > time
      raise Gem::Security::Exception,
            "#{message} not valid before #{not_before}"
    end

    if not_after = signer.not_after and not_after < time
      raise Gem::Security::Exception, "#{message} not valid after #{not_after}"
    end

    if issuer and not signer.verify issuer.public_key
      raise Gem::Security::Exception,
            "#{message} was not issued by #{issuer.subject}"
    end

    true
  end

  ##
  # Ensures the public key of +key+ matches the public key in +signer+

  def check_key(signer, key)
    unless signer and key
      return true unless @only_signed

      raise Gem::Security::Exception, 'missing key or signature'
    end

    raise Gem::Security::Exception,
      "certificate #{signer.subject} does not match the signing key" unless
        signer.public_key.to_pem == key.public_key.to_pem

    true
  end

  ##
  # Ensures the root certificate in +chain+ is self-signed and valid for
  # +time+.

  def check_root(chain, time)
    raise Gem::Security::Exception, 'missing signing chain' unless chain

    root = chain.first

    raise Gem::Security::Exception, 'missing root certificate' unless root

    raise Gem::Security::Exception,
          "root certificate #{root.subject} is not self-signed " +
          "(issuer #{root.issuer})" if
      root.issuer.to_s != root.subject.to_s # HACK to_s is for ruby 1.8

    check_cert root, root, time
  end

  ##
  # Ensures the root of +chain+ has a trusted certificate in +trust_dir+ and
  # the digests of the two certificates match according to +digester+

  def check_trust(chain, digester, trust_dir)
    raise Gem::Security::Exception, 'missing signing chain' unless chain

    root = chain.first

    raise Gem::Security::Exception, 'missing root certificate' unless root

    path = Gem::Security.trust_dir.cert_path root

    unless File.exist? path
      message = "root cert #{root.subject} is not trusted".dup

      message << " (root of signing cert #{chain.last.subject})" if
        chain.length > 1

      raise Gem::Security::Exception, message
    end

    save_cert = OpenSSL::X509::Certificate.new File.read path
    save_dgst = digester.digest save_cert.public_key.to_s

    pkey_str = root.public_key.to_s
    cert_dgst = digester.digest pkey_str

    raise Gem::Security::Exception,
          "trusted root certificate #{root.subject} checksum " +
          "does not match signing root certificate checksum" unless
      save_dgst == cert_dgst

    true
  end

  ##
  # Extracts the email or subject from +certificate+

  def subject(certificate) # :nodoc:
    certificate.extensions.each do |extension|
      next unless extension.oid == 'subjectAltName'

      return extension.value
    end

    certificate.subject.to_s
  end

  def inspect # :nodoc:
    ("[Policy: %s - data: %p signer: %p chain: %p root: %p " +
     "signed-only: %p trusted-only: %p]") % [
       @name, @verify_chain, @verify_data, @verify_root, @verify_signer,
       @only_signed, @only_trusted,
     ]
  end

  ##
  # For +full_name+, verifies the certificate +chain+ is valid, the +digests+
  # match the signatures +signatures+ created by the signer depending on the
  # +policy+ settings.
  #
  # If +key+ is given it is used to validate the signing certificate.

  def verify(chain, key = nil, digests = {}, signatures = {},
             full_name = '(unknown)')
    if signatures.empty?
      if @only_signed
        raise Gem::Security::Exception,
          "unsigned gems are not allowed by the #{name} policy"
      elsif digests.empty?
        # lack of signatures is irrelevant if there is nothing to check
        # against
      else
        alert_warning "#{full_name} is not signed"
        return
      end
    end

    opt       = @opt
    digester  = Gem::Security::DIGEST_ALGORITHM
    trust_dir = opt[:trust_dir]
    time      = Time.now

    _, signer_digests = digests.find do |algorithm, file_digests|
      file_digests.values.first.name == Gem::Security::DIGEST_NAME
    end

    if @verify_data
      raise Gem::Security::Exception, 'no digests provided (probable bug)' if
        signer_digests.nil? or signer_digests.empty?
    else
      signer_digests = {}
    end

    signer = chain.last

    check_key signer, key if key

    check_cert signer, nil, time if @verify_signer

    check_chain chain, time if @verify_chain

    check_root chain, time if @verify_root

    if @only_trusted
      check_trust chain, digester, trust_dir
    elsif signatures.empty? and digests.empty?
      # trust is irrelevant if there's no signatures to verify
    else
      alert_warning "#{subject signer} is not trusted for #{full_name}"
    end

    signatures.each do |file, _|
      digest = signer_digests[file]

      raise Gem::Security::Exception, "missing digest for #{file}" unless
        digest
    end

    signer_digests.each do |file, digest|
      signature = signatures[file]

      raise Gem::Security::Exception, "missing signature for #{file}" unless
        signature

      check_data signer.public_key, digester, signature, digest if @verify_data
    end

    true
  end

  ##
  # Extracts the certificate chain from the +spec+ and calls #verify to ensure
  # the signatures and certificate chain is valid according to the policy..

  def verify_signatures(spec, digests, signatures)
    chain = spec.cert_chain.map do |cert_pem|
      OpenSSL::X509::Certificate.new cert_pem
    end

    verify chain, nil, digests, signatures, spec.full_name

    true
  end

  alias to_s name # :nodoc:

end
PK8H[,�)bY
Y
,share/rubygems/rubygems/security/policies.rbnu�[���# frozen_string_literal: true
module Gem::Security

  ##
  # No security policy: all package signature checks are disabled.

  NoSecurity = Policy.new(
    'No Security',
    :verify_data      => false,
    :verify_signer    => false,
    :verify_chain     => false,
    :verify_root      => false,
    :only_trusted     => false,
    :only_signed      => false
  )

  ##
  # AlmostNo security policy: only verify that the signing certificate is the
  # one that actually signed the data.  Make no attempt to verify the signing
  # certificate chain.
  #
  # This policy is basically useless. better than nothing, but can still be
  # easily spoofed, and is not recommended.

  AlmostNoSecurity = Policy.new(
    'Almost No Security',
    :verify_data      => true,
    :verify_signer    => false,
    :verify_chain     => false,
    :verify_root      => false,
    :only_trusted     => false,
    :only_signed      => false
  )

  ##
  # Low security policy: only verify that the signing certificate is actually
  # the gem signer, and that the signing certificate is valid.
  #
  # This policy is better than nothing, but can still be easily spoofed, and
  # is not recommended.

  LowSecurity = Policy.new(
    'Low Security',
    :verify_data      => true,
    :verify_signer    => true,
    :verify_chain     => false,
    :verify_root      => false,
    :only_trusted     => false,
    :only_signed      => false
  )

  ##
  # Medium security policy: verify the signing certificate, verify the signing
  # certificate chain all the way to the root certificate, and only trust root
  # certificates that we have explicitly allowed trust for.
  #
  # This security policy is reasonable, but it allows unsigned packages, so a
  # malicious person could simply delete the package signature and pass the
  # gem off as unsigned.

  MediumSecurity = Policy.new(
    'Medium Security',
    :verify_data      => true,
    :verify_signer    => true,
    :verify_chain     => true,
    :verify_root      => true,
    :only_trusted     => true,
    :only_signed      => false
  )

  ##
  # High security policy: only allow signed gems to be installed, verify the
  # signing certificate, verify the signing certificate chain all the way to
  # the root certificate, and only trust root certificates that we have
  # explicitly allowed trust for.
  #
  # This security policy is significantly more difficult to bypass, and offers
  # a reasonable guarantee that the contents of the gem have not been altered.

  HighSecurity = Policy.new(
    'High Security',
    :verify_data      => true,
    :verify_signer    => true,
    :verify_chain     => true,
    :verify_root      => true,
    :only_trusted     => true,
    :only_signed      => true
  )

  ##
  # Policy used to verify a certificate and key when signing a gem

  SigningPolicy = Policy.new(
    'Signing Policy',
    :verify_data      => false,
    :verify_signer    => true,
    :verify_chain     => true,
    :verify_root      => true,
    :only_trusted     => false,
    :only_signed      => false
  )

  ##
  # Hash of configured security policies

  Policies = {
    'NoSecurity'       => NoSecurity,
    'AlmostNoSecurity' => AlmostNoSecurity,
    'LowSecurity'      => LowSecurity,
    'MediumSecurity'   => MediumSecurity,
    'HighSecurity'     => HighSecurity,
    # SigningPolicy is not intended for use by `gem -P` so do not list it
  }.freeze

end
PK8H[�_�@@!share/rubygems/rubygems/doctor.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/user_interaction'

##
# Cleans up after a partially-failed uninstall or for an invalid
# Gem::Specification.
#
# If a specification was removed by hand this will remove any remaining files.
#
# If a corrupt specification was installed this will clean up warnings by
# removing the bogus specification.

class Gem::Doctor

  include Gem::UserInteraction

  ##
  # Maps a gem subdirectory to the files that are expected to exist in the
  # subdirectory.

  REPOSITORY_EXTENSION_MAP = [ # :nodoc:
    ['specifications', '.gemspec'],
    ['build_info',     '.info'],
    ['cache',          '.gem'],
    ['doc',            ''],
    ['extensions',     ''],
    ['gems',           ''],
  ].freeze

  missing =
    Gem::REPOSITORY_SUBDIRECTORIES.sort -
      REPOSITORY_EXTENSION_MAP.map { |(k,_)| k }.sort

  raise "Update REPOSITORY_EXTENSION_MAP, missing: #{missing.join ', '}" unless
    missing.empty?

  ##
  # Creates a new Gem::Doctor that will clean up +gem_repository+.  Only one
  # gem repository may be cleaned at a time.
  #
  # If +dry_run+ is true no files or directories will be removed.

  def initialize(gem_repository, dry_run = false)
    @gem_repository = gem_repository
    @dry_run        = dry_run

    @installed_specs = nil
  end

  ##
  # Specs installed in this gem repository

  def installed_specs # :nodoc:
    @installed_specs ||= Gem::Specification.map { |s| s.full_name }
  end

  ##
  # Are we doctoring a gem repository?

  def gem_repository?
    not installed_specs.empty?
  end

  ##
  # Cleans up uninstalled files and invalid gem specifications

  def doctor
    @orig_home = Gem.dir
    @orig_path = Gem.path

    say "Checking #{@gem_repository}"

    Gem.use_paths @gem_repository.to_s

    unless gem_repository?
      say 'This directory does not appear to be a RubyGems repository, ' +
          'skipping'
      say
      return
    end

    doctor_children

    say
  ensure
    Gem.use_paths @orig_home, *@orig_path
  end

  ##
  # Cleans up children of this gem repository

  def doctor_children # :nodoc:
    REPOSITORY_EXTENSION_MAP.each do |sub_directory, extension|
      doctor_child sub_directory, extension
    end
  end

  ##
  # Removes files in +sub_directory+ with +extension+

  def doctor_child(sub_directory, extension) # :nodoc:
    directory = File.join(@gem_repository, sub_directory)

    Dir.entries(directory).sort.each do |ent|
      next if ent == "." || ent == ".."

      child = File.join(directory, ent)
      next unless File.exist?(child)

      basename = File.basename(child, extension)
      next if installed_specs.include? basename
      next if /^rubygems-\d/ =~ basename
      next if 'specifications' == sub_directory and 'default' == basename

      type = File.directory?(child) ? 'directory' : 'file'

      action = if @dry_run
                 'Extra'
               else
                 FileUtils.rm_r(child)
                 'Removed'
               end

      say "#{action} #{type} #{sub_directory}/#{File.basename(child)}"
    end
  rescue Errno::ENOENT
    # ignore
  end

end
PK8H[�77$share/rubygems/rubygems/safe_yaml.rbnu�[���module Gem

  ###
  # This module is used for safely loading YAML specs from a gem.  The
  # `safe_load` method defined on this module is specifically designed for
  # loading Gem specifications.  For loading other YAML safely, please see
  # Psych.safe_load

  module SafeYAML
    PERMITTED_CLASSES = %w(
      Symbol
      Time
      Date
      Gem::Dependency
      Gem::Platform
      Gem::Requirement
      Gem::Specification
      Gem::Version
      Gem::Version::Requirement
      YAML::Syck::DefaultKey
      Syck::DefaultKey
    ).freeze

    PERMITTED_SYMBOLS = %w(
      development
      runtime
    ).freeze

    if ::YAML.respond_to? :safe_load
      def self.safe_load(input)
        if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
          ::YAML.safe_load(input, permitted_classes: PERMITTED_CLASSES, permitted_symbols: PERMITTED_SYMBOLS, aliases: true)
        else
          ::YAML.safe_load(input, PERMITTED_CLASSES, PERMITTED_SYMBOLS, true)
        end
      end

      def self.load(input)
        if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
          ::YAML.safe_load(input, permitted_classes: [::Symbol])
        else
          ::YAML.safe_load(input, [::Symbol])
        end
      end
    else
      unless Gem::Deprecate.skip
        warn "YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)."
      end

      def self.safe_load(input, *args)
        ::YAML.load input
      end

      def self.load(input)
        ::YAML.load input
      end
    end
  end
end
PK8H[ ���2�2&share/rubygems/rubygems/config_file.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/user_interaction'
require 'rbconfig'

##
# Gem::ConfigFile RubyGems options and gem command options from gemrc.
#
# gemrc is a YAML file that uses strings to match gem command arguments and
# symbols to match RubyGems options.
#
# Gem command arguments use a String key that matches the command name and
# allow you to specify default arguments:
#
#   install: --no-rdoc --no-ri
#   update: --no-rdoc --no-ri
#
# You can use <tt>gem:</tt> to set default arguments for all commands.
#
# RubyGems options use symbol keys.  Valid options are:
#
# +:backtrace+:: See #backtrace
# +:sources+:: Sets Gem::sources
# +:verbose+:: See #verbose
# +:concurrent_downloads+:: See #concurrent_downloads
#
# gemrc files may exist in various locations and are read and merged in
# the following order:
#
# - system wide (/etc/gemrc)
# - per user (~/.gemrc)
# - per environment (gemrc files listed in the GEMRC environment variable)

class Gem::ConfigFile

  include Gem::UserInteraction

  DEFAULT_BACKTRACE = false
  DEFAULT_BULK_THRESHOLD = 1000
  DEFAULT_VERBOSITY = true
  DEFAULT_UPDATE_SOURCES = true
  DEFAULT_CONCURRENT_DOWNLOADS = 8
  DEFAULT_CERT_EXPIRATION_LENGTH_DAYS = 365

  ##
  # For Ruby packagers to set configuration defaults.  Set in
  # rubygems/defaults/operating_system.rb

  OPERATING_SYSTEM_DEFAULTS = Gem.operating_system_defaults

  ##
  # For Ruby implementers to set configuration defaults.  Set in
  # rubygems/defaults/#{RUBY_ENGINE}.rb

  PLATFORM_DEFAULTS = Gem.platform_defaults

  # :stopdoc:

  SYSTEM_CONFIG_PATH =
    begin
      require "etc"
      Etc.sysconfdir
    rescue LoadError, NoMethodError
      RbConfig::CONFIG["sysconfdir"] || "/etc"
    end

  # :startdoc:

  SYSTEM_WIDE_CONFIG_FILE = File.join SYSTEM_CONFIG_PATH, 'gemrc'

  ##
  # List of arguments supplied to the config file object.

  attr_reader :args

  ##
  # Where to look for gems (deprecated)

  attr_accessor :path

  ##
  # Where to install gems (deprecated)

  attr_accessor :home

  ##
  # True if we print backtraces on errors.

  attr_writer :backtrace

  ##
  # Bulk threshold value.  If the number of missing gems are above this
  # threshold value, then a bulk download technique is used.  (deprecated)

  attr_accessor :bulk_threshold

  ##
  # Verbose level of output:
  # * false -- No output
  # * true -- Normal output
  # * :loud -- Extra output

  attr_accessor :verbose

  ##
  # Number of gem downloads that should be performed concurrently.

  attr_accessor :concurrent_downloads

  ##
  # True if we want to update the SourceInfoCache every time, false otherwise

  attr_accessor :update_sources

  ##
  # True if we want to force specification of gem server when pushing a gem

  attr_accessor :disable_default_gem_server

  # openssl verify mode value, used for remote https connection

  attr_reader :ssl_verify_mode

  ##
  # Path name of directory or file of openssl CA certificate, used for remote
  # https connection

  attr_accessor :ssl_ca_cert

  ##
  # sources to look for gems
  attr_accessor :sources

  ##
  # Expiration length to sign a certificate

  attr_accessor :cert_expiration_length_days

  ##
  # Path name of directory or file of openssl client certificate, used for remote https connection with client authentication

  attr_reader :ssl_client_cert

  ##
  # Create the config file object.  +args+ is the list of arguments
  # from the command line.
  #
  # The following command line options are handled early here rather
  # than later at the time most command options are processed.
  #
  # <tt>--config-file</tt>, <tt>--config-file==NAME</tt>::
  #   Obviously these need to be handled by the ConfigFile object to ensure we
  #   get the right config file.
  #
  # <tt>--backtrace</tt>::
  #   Backtrace needs to be turned on early so that errors before normal
  #   option parsing can be properly handled.
  #
  # <tt>--debug</tt>::
  #   Enable Ruby level debug messages.  Handled early for the same reason as
  #   --backtrace.
  #--
  # TODO: parse options upstream, pass in options directly

  def initialize(args)
    set_config_file_name(args)

    @backtrace = DEFAULT_BACKTRACE
    @bulk_threshold = DEFAULT_BULK_THRESHOLD
    @verbose = DEFAULT_VERBOSITY
    @update_sources = DEFAULT_UPDATE_SOURCES
    @concurrent_downloads = DEFAULT_CONCURRENT_DOWNLOADS
    @cert_expiration_length_days = DEFAULT_CERT_EXPIRATION_LENGTH_DAYS

    operating_system_config = Marshal.load Marshal.dump(OPERATING_SYSTEM_DEFAULTS)
    platform_config = Marshal.load Marshal.dump(PLATFORM_DEFAULTS)
    system_config = load_file SYSTEM_WIDE_CONFIG_FILE
    user_config = load_file config_file_name.dup.tap(&Gem::UNTAINT)

    environment_config = (ENV['GEMRC'] || '')
      .split(File::PATH_SEPARATOR).inject({}) do |result, file|
        result.merge load_file file
      end

    @hash = operating_system_config.merge platform_config
    unless args.index '--norc'
      @hash = @hash.merge system_config
      @hash = @hash.merge user_config
      @hash = @hash.merge environment_config
    end

    # HACK these override command-line args, which is bad
    @backtrace                   = @hash[:backtrace]                   if @hash.key? :backtrace
    @bulk_threshold              = @hash[:bulk_threshold]              if @hash.key? :bulk_threshold
    @home                        = @hash[:gemhome]                     if @hash.key? :gemhome
    @path                        = @hash[:gempath]                     if @hash.key? :gempath
    @update_sources              = @hash[:update_sources]              if @hash.key? :update_sources
    @verbose                     = @hash[:verbose]                     if @hash.key? :verbose
    @disable_default_gem_server  = @hash[:disable_default_gem_server]  if @hash.key? :disable_default_gem_server
    @sources                     = @hash[:sources]                     if @hash.key? :sources
    @cert_expiration_length_days = @hash[:cert_expiration_length_days] if @hash.key? :cert_expiration_length_days

    @ssl_verify_mode  = @hash[:ssl_verify_mode]  if @hash.key? :ssl_verify_mode
    @ssl_ca_cert      = @hash[:ssl_ca_cert]      if @hash.key? :ssl_ca_cert
    @ssl_client_cert  = @hash[:ssl_client_cert]  if @hash.key? :ssl_client_cert

    @api_keys         = nil
    @rubygems_api_key = nil

    handle_arguments args
  end

  ##
  # Hash of RubyGems.org and alternate API keys

  def api_keys
    load_api_keys unless @api_keys

    @api_keys
  end

  ##
  # Checks the permissions of the credentials file.  If they are not 0600 an
  # error message is displayed and RubyGems aborts.

  def check_credentials_permissions
    return if Gem.win_platform? # windows doesn't write 0600 as 0600
    return unless File.exist? credentials_path

    existing_permissions = File.stat(credentials_path).mode & 0777

    return if existing_permissions == 0600

    alert_error <<-ERROR
Your gem push credentials file located at:

\t#{credentials_path}

has file permissions of 0#{existing_permissions.to_s 8} but 0600 is required.

To fix this error run:

\tchmod 0600 #{credentials_path}

You should reset your credentials at:

\thttps://rubygems.org/profile/edit

if you believe they were disclosed to a third party.
    ERROR

    terminate_interaction 1
  end

  ##
  # Location of RubyGems.org credentials

  def credentials_path
    File.join Gem.user_home, '.gem', 'credentials'
  end

  def load_api_keys
    check_credentials_permissions

    @api_keys = if File.exist? credentials_path
                  load_file(credentials_path)
                else
                  @hash
                end

    if @api_keys.key? :rubygems_api_key
      @rubygems_api_key    = @api_keys[:rubygems_api_key]
      @api_keys[:rubygems] = @api_keys.delete :rubygems_api_key unless
        @api_keys.key? :rubygems
    end
  end

  ##
  # Returns the RubyGems.org API key

  def rubygems_api_key
    load_api_keys unless @rubygems_api_key

    @rubygems_api_key
  end

  ##
  # Sets the RubyGems.org API key to +api_key+

  def rubygems_api_key=(api_key)
    set_api_key :rubygems_api_key, api_key

    @rubygems_api_key = api_key
  end

  ##
  # Set a specific host's API key to +api_key+

  def set_api_key(host, api_key)
    check_credentials_permissions

    config = load_file(credentials_path).merge(host => api_key)

    dirname = File.dirname credentials_path
    Dir.mkdir(dirname) unless File.exist? dirname

    Gem.load_yaml

    permissions = 0600 & (~File.umask)
    File.open(credentials_path, 'w', permissions) do |f|
      f.write config.to_yaml
    end

    load_api_keys # reload
  end

  ##
  # Remove the +~/.gem/credentials+ file to clear all the current sessions.

  def unset_api_key!
    return false unless File.exist?(credentials_path)

    File.delete(credentials_path)
  end

  def load_file(filename)
    Gem.load_yaml

    yaml_errors = [ArgumentError]
    yaml_errors << Psych::SyntaxError if defined?(Psych::SyntaxError)

    return {} unless filename && !filename.empty? && File.exist?(filename)

    begin
      content = Gem::SafeYAML.load(File.read(filename))
      unless content.kind_of? Hash
        warn "Failed to load #{filename} because it doesn't contain valid YAML hash"
        return {}
      end
      return content
    rescue *yaml_errors => e
      warn "Failed to load #{filename}, #{e}"
    rescue Errno::EACCES
      warn "Failed to load #{filename} due to permissions problem."
    end

    {}
  end

  # True if the backtrace option has been specified, or debug is on.
  def backtrace
    @backtrace or $DEBUG
  end

  # The name of the configuration file.
  def config_file_name
    @config_file_name || Gem.config_file
  end

  # Delegates to @hash
  def each(&block)
    hash = @hash.dup
    hash.delete :update_sources
    hash.delete :verbose
    hash.delete :backtrace
    hash.delete :bulk_threshold

    yield :update_sources, @update_sources
    yield :verbose, @verbose
    yield :backtrace, @backtrace
    yield :bulk_threshold, @bulk_threshold

    yield 'config_file_name', @config_file_name if @config_file_name

    hash.each(&block)
  end

  # Handle the command arguments.
  def handle_arguments(arg_list)
    @args = []

    arg_list.each do |arg|
      case arg
      when /^--(backtrace|traceback)$/ then
        @backtrace = true
      when /^--debug$/ then
        $DEBUG = true

        warn 'NOTE:  Debugging mode prints all exceptions even when rescued'
      else
        @args << arg
      end
    end
  end

  # Really verbose mode gives you extra output.
  def really_verbose
    case verbose
    when true, false, nil then
      false
    else
      true
    end
  end

  # to_yaml only overwrites things you can't override on the command line.
  def to_yaml # :nodoc:
    yaml_hash = {}
    yaml_hash[:backtrace] = @hash.fetch(:backtrace, DEFAULT_BACKTRACE)
    yaml_hash[:bulk_threshold] = @hash.fetch(:bulk_threshold, DEFAULT_BULK_THRESHOLD)
    yaml_hash[:sources] = Gem.sources.to_a
    yaml_hash[:update_sources] = @hash.fetch(:update_sources, DEFAULT_UPDATE_SOURCES)
    yaml_hash[:verbose] = @hash.fetch(:verbose, DEFAULT_VERBOSITY)

    yaml_hash[:concurrent_downloads] =
      @hash.fetch(:concurrent_downloads, DEFAULT_CONCURRENT_DOWNLOADS)

    yaml_hash[:ssl_verify_mode] =
      @hash[:ssl_verify_mode] if @hash.key? :ssl_verify_mode

    yaml_hash[:ssl_ca_cert] =
      @hash[:ssl_ca_cert] if @hash.key? :ssl_ca_cert

    yaml_hash[:ssl_client_cert] =
      @hash[:ssl_client_cert] if @hash.key? :ssl_client_cert

    keys = yaml_hash.keys.map { |key| key.to_s }
    keys << 'debug'
    re = Regexp.union(*keys)

    @hash.each do |key, value|
      key = key.to_s
      next if key =~ re
      yaml_hash[key.to_s] = value
    end

    yaml_hash.to_yaml
  end

  # Writes out this config file, replacing its source.
  def write
    File.open config_file_name, 'w' do |io|
      io.write to_yaml
    end
  end

  # Return the configuration information for +key+.
  def [](key)
    @hash[key.to_s]
  end

  # Set configuration option +key+ to +value+.
  def []=(key, value)
    @hash[key.to_s] = value
  end

  def ==(other) # :nodoc:
    self.class === other and
      @backtrace == other.backtrace and
      @bulk_threshold == other.bulk_threshold and
      @verbose == other.verbose and
      @update_sources == other.update_sources and
      @hash == other.hash
  end

  attr_reader :hash
  protected :hash

  private

  def set_config_file_name(args)
    @config_file_name = ENV["GEMRC"]
    need_config_file_name = false

    args.each do |arg|
      if need_config_file_name
        @config_file_name = arg
        need_config_file_name = false
      elsif arg =~ /^--config-file=(.*)/
        @config_file_name = $1
      elsif arg =~ /^--config-file$/
        need_config_file_name = true
      end
    end
  end

end
PK8H[�k���G�G"share/rubygems/rubygems/package.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: true
#--
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#++
#
# Example using a Gem::Package
#
# Builds a .gem file given a Gem::Specification. A .gem file is a tarball
# which contains a data.tar.gz and metadata.gz, and possibly signatures.
#
#   require 'rubygems'
#   require 'rubygems/package'
#
#   spec = Gem::Specification.new do |s|
#     s.summary = "Ruby based make-like utility."
#     s.name = 'rake'
#     s.version = PKG_VERSION
#     s.requirements << 'none'
#     s.files = PKG_FILES
#     s.description = <<-EOF
#   Rake is a Make-like program implemented in Ruby. Tasks
#   and dependencies are specified in standard Ruby syntax.
#     EOF
#   end
#
#   Gem::Package.build spec
#
# Reads a .gem file.
#
#   require 'rubygems'
#   require 'rubygems/package'
#
#   the_gem = Gem::Package.new(path_to_dot_gem)
#   the_gem.contents # get the files in the gem
#   the_gem.extract_files destination_directory # extract the gem into a directory
#   the_gem.spec # get the spec out of the gem
#   the_gem.verify # check the gem is OK (contains valid gem specification, contains a not corrupt contents archive)
#
# #files are the files in the .gem tar file, not the Ruby files in the gem
# #extract_files and #contents automatically call #verify

require 'rubygems/security'
require 'rubygems/specification'
require 'rubygems/user_interaction'
require 'zlib'

class Gem::Package

  include Gem::UserInteraction

  class Error < Gem::Exception; end

  class FormatError < Error

    attr_reader :path

    def initialize(message, source = nil)
      if source
        @path = source.path

        message = message + " in #{path}" if path
      end

      super message
    end

  end

  class PathError < Error

    def initialize(destination, destination_dir)
      super "installing into parent path %s of %s is not allowed" %
              [destination, destination_dir]
    end

  end

  class NonSeekableIO < Error; end

  class TooLongFileName < Error; end

  ##
  # Raised when a tar file is corrupt

  class TarInvalidError < Error; end

  attr_accessor :build_time # :nodoc:

  ##
  # Checksums for the contents of the package

  attr_reader :checksums

  ##
  # The files in this package.  This is not the contents of the gem, just the
  # files in the top-level container.

  attr_reader :files

  ##
  # Reference to the gem being packaged.

  attr_reader :gem

  ##
  # The security policy used for verifying the contents of this package.

  attr_accessor :security_policy

  ##
  # Sets the Gem::Specification to use to build this package.

  attr_writer :spec

  ##
  # Permission for directories
  attr_accessor :dir_mode

  ##
  # Permission for program files
  attr_accessor :prog_mode

  ##
  # Permission for other files
  attr_accessor :data_mode

  def self.build(spec, skip_validation = false, strict_validation = false, file_name = nil)
    gem_file = file_name || spec.file_name

    package = new gem_file
    package.spec = spec
    package.build skip_validation, strict_validation

    gem_file
  end

  ##
  # Creates a new Gem::Package for the file at +gem+. +gem+ can also be
  # provided as an IO object.
  #
  # If +gem+ is an existing file in the old format a Gem::Package::Old will be
  # returned.

  def self.new(gem, security_policy = nil)
    gem = if gem.is_a?(Gem::Package::Source)
            gem
          elsif gem.respond_to? :read
            Gem::Package::IOSource.new gem
          else
            Gem::Package::FileSource.new gem
          end

    return super unless Gem::Package == self
    return super unless gem.present?

    return super unless gem.start
    return super unless gem.start.include? 'MD5SUM ='

    Gem::Package::Old.new gem
  end

  ##
  # Extracts the Gem::Specification and raw metadata from the .gem file at
  # +path+.
  #--

  def self.raw_spec(path, security_policy = nil)
    format = new(path, security_policy)
    spec = format.spec

    metadata = nil

    File.open path, Gem.binary_mode do |io|
      tar = Gem::Package::TarReader.new io
      tar.each_entry do |entry|
        case entry.full_name
        when 'metadata' then
          metadata = entry.read
        when 'metadata.gz' then
          metadata = Gem::Util.gunzip entry.read
        end
      end
    end

    return spec, metadata
  end

  ##
  # Creates a new package that will read or write to the file +gem+.

  def initialize(gem, security_policy) # :notnew:
    @gem = gem

    @build_time      = Gem.source_date_epoch
    @checksums       = {}
    @contents        = nil
    @digests         = Hash.new { |h, algorithm| h[algorithm] = {} }
    @files           = nil
    @security_policy = security_policy
    @signatures      = {}
    @signer          = nil
    @spec            = nil
  end

  ##
  # Copies this package to +path+ (if possible)

  def copy_to(path)
    FileUtils.cp @gem.path, path unless File.exist? path
  end

  ##
  # Adds a checksum for each entry in the gem to checksums.yaml.gz.

  def add_checksums(tar)
    Gem.load_yaml

    checksums_by_algorithm = Hash.new { |h, algorithm| h[algorithm] = {} }

    @checksums.each do |name, digests|
      digests.each do |algorithm, digest|
        checksums_by_algorithm[algorithm][name] = digest.hexdigest
      end
    end

    tar.add_file_signed 'checksums.yaml.gz', 0444, @signer do |io|
      gzip_to io do |gz_io|
        YAML.dump checksums_by_algorithm, gz_io
      end
    end
  end

  ##
  # Adds the files listed in the packages's Gem::Specification to data.tar.gz
  # and adds this file to the +tar+.

  def add_contents(tar) # :nodoc:
    digests = tar.add_file_signed 'data.tar.gz', 0444, @signer do |io|
      gzip_to io do |gz_io|
        Gem::Package::TarWriter.new gz_io do |data_tar|
          add_files data_tar
        end
      end
    end

    @checksums['data.tar.gz'] = digests
  end

  ##
  # Adds files included the package's Gem::Specification to the +tar+ file

  def add_files(tar) # :nodoc:
    @spec.files.each do |file|
      stat = File.lstat file

      if stat.symlink?
        target_path = File.readlink(file)

        unless target_path.start_with? '.'
          relative_dir = File.dirname(file).sub("#{Dir.pwd}/", '')
          target_path = File.join(relative_dir, target_path)
        end

        tar.add_symlink file, target_path, stat.mode
      end

      next unless stat.file?

      tar.add_file_simple file, stat.mode, stat.size do |dst_io|
        File.open file, 'rb' do |src_io|
          dst_io.write src_io.read 16384 until src_io.eof?
        end
      end
    end
  end

  ##
  # Adds the package's Gem::Specification to the +tar+ file

  def add_metadata(tar) # :nodoc:
    digests = tar.add_file_signed 'metadata.gz', 0444, @signer do |io|
      gzip_to io do |gz_io|
        gz_io.write @spec.to_yaml
      end
    end

    @checksums['metadata.gz'] = digests
  end

  ##
  # Builds this package based on the specification set by #spec=

  def build(skip_validation = false, strict_validation = false)
    raise ArgumentError, "skip_validation = true and strict_validation = true are incompatible" if skip_validation && strict_validation

    Gem.load_yaml

    @spec.mark_version
    @spec.validate true, strict_validation unless skip_validation

    setup_signer(
      signer_options: {
        expiration_length_days: Gem.configuration.cert_expiration_length_days
      }
    )

    @gem.with_write_io do |gem_io|
      Gem::Package::TarWriter.new gem_io do |gem|
        add_metadata gem
        add_contents gem
        add_checksums gem
      end
    end

    say <<-EOM
  Successfully built RubyGem
  Name: #{@spec.name}
  Version: #{@spec.version}
  File: #{File.basename @gem.path}
EOM
  ensure
    @signer = nil
  end

  ##
  # A list of file names contained in this gem

  def contents
    return @contents if @contents

    verify unless @spec

    @contents = []

    @gem.with_read_io do |io|
      gem_tar = Gem::Package::TarReader.new io

      gem_tar.each do |entry|
        next unless entry.full_name == 'data.tar.gz'

        open_tar_gz entry do |pkg_tar|
          pkg_tar.each do |contents_entry|
            @contents << contents_entry.full_name
          end
        end

        return @contents
      end
    end
  end

  ##
  # Creates a digest of the TarEntry +entry+ from the digest algorithm set by
  # the security policy.

  def digest(entry) # :nodoc:
    algorithms = if @checksums
                   @checksums.keys
                 else
                   [Gem::Security::DIGEST_NAME].compact
                 end

    algorithms.each do |algorithm|
      digester =
        if defined?(OpenSSL::Digest)
          OpenSSL::Digest.new algorithm
        else
          Digest.const_get(algorithm).new
        end

      digester << entry.read(16384) until entry.eof?

      entry.rewind

      @digests[algorithm][entry.full_name] = digester
    end

    @digests
  end

  ##
  # Extracts the files in this package into +destination_dir+
  #
  # If +pattern+ is specified, only entries matching that glob will be
  # extracted.

  def extract_files(destination_dir, pattern = "*")
    verify unless @spec

    FileUtils.mkdir_p destination_dir, :mode => dir_mode && 0755

    @gem.with_read_io do |io|
      reader = Gem::Package::TarReader.new io

      reader.each do |entry|
        next unless entry.full_name == 'data.tar.gz'

        extract_tar_gz entry, destination_dir, pattern

        return # ignore further entries
      end
    end
  end

  ##
  # Extracts all the files in the gzipped tar archive +io+ into
  # +destination_dir+.
  #
  # If an entry in the archive contains a relative path above
  # +destination_dir+ or an absolute path is encountered an exception is
  # raised.
  #
  # If +pattern+ is specified, only entries matching that glob will be
  # extracted.

  def extract_tar_gz(io, destination_dir, pattern = "*") # :nodoc:
    directories = [] if dir_mode
    open_tar_gz io do |tar|
      tar.each do |entry|
        next unless File.fnmatch pattern, entry.full_name, File::FNM_DOTMATCH

        destination = install_location entry.full_name, destination_dir

        FileUtils.rm_rf destination

        mkdir_options = {}
        mkdir_options[:mode] = dir_mode ? 0755 : (entry.header.mode if entry.directory?)
        mkdir =
          if entry.directory?
            destination
          else
            File.dirname destination
          end
        directories << mkdir if directories

        mkdir_p_safe mkdir, mkdir_options, destination_dir, entry.full_name

        File.open destination, 'wb' do |out|
          out.write entry.read
          FileUtils.chmod file_mode(entry.header.mode), destination
        end if entry.file?

        File.symlink(entry.header.linkname, destination) if entry.symlink?

        verbose destination
      end
    end

    if directories
      directories.uniq!
      File.chmod(dir_mode, *directories)
    end
  end

  def file_mode(mode) # :nodoc:
    ((mode & 0111).zero? ? data_mode : prog_mode) || mode
  end

  ##
  # Gzips content written to +gz_io+ to +io+.
  #--
  # Also sets the gzip modification time to the package build time to ease
  # testing.

  def gzip_to(io) # :yields: gz_io
    gz_io = Zlib::GzipWriter.new io, Zlib::BEST_COMPRESSION
    gz_io.mtime = @build_time

    yield gz_io
  ensure
    gz_io.close
  end

  ##
  # Returns the full path for installing +filename+.
  #
  # If +filename+ is not inside +destination_dir+ an exception is raised.

  def install_location(filename, destination_dir) # :nodoc:
    raise Gem::Package::PathError.new(filename, destination_dir) if
      filename.start_with? '/'

    destination_dir = File.expand_path(File.realpath(destination_dir))
    destination = File.expand_path(File.join(destination_dir, filename))

    raise Gem::Package::PathError.new(destination, destination_dir) unless
      destination.start_with? destination_dir + '/'

    begin
      real_destination = File.expand_path(File.realpath(destination))
    rescue
      # it's fine if the destination doesn't exist, because rm -rf'ing it can't cause any damage
      nil
    else
      raise Gem::Package::PathError.new(real_destination, destination_dir) unless
        real_destination.start_with? destination_dir + '/'
    end

    destination.tap(&Gem::UNTAINT)
    destination
  end

  def normalize_path(pathname)
    if Gem.win_platform?
      pathname.downcase
    else
      pathname
    end
  end

  def mkdir_p_safe(mkdir, mkdir_options, destination_dir, file_name)
    destination_dir = File.realpath(File.expand_path(destination_dir))
    parts = mkdir.split(File::SEPARATOR)
    parts.reduce do |path, basename|
      path = File.realpath(path) unless path == ""
      path = File.expand_path(path + File::SEPARATOR + basename)
      lstat = File.lstat path rescue nil
      if !lstat || !lstat.directory?
        unless normalize_path(path).start_with? normalize_path(destination_dir) and (FileUtils.mkdir path, **mkdir_options rescue false)
          raise Gem::Package::PathError.new(file_name, destination_dir)
        end
      end
      path
    end
  end

  ##
  # Loads a Gem::Specification from the TarEntry +entry+

  def load_spec(entry) # :nodoc:
    case entry.full_name
    when 'metadata' then
      @spec = Gem::Specification.from_yaml entry.read
    when 'metadata.gz' then
      Zlib::GzipReader.wrap(entry, external_encoding: Encoding::UTF_8) do |gzio|
        @spec = Gem::Specification.from_yaml gzio.read
      end
    end
  end

  ##
  # Opens +io+ as a gzipped tar archive

  def open_tar_gz(io) # :nodoc:
    Zlib::GzipReader.wrap io do |gzio|
      tar = Gem::Package::TarReader.new gzio

      yield tar
    end
  end

  ##
  # Reads and loads checksums.yaml.gz from the tar file +gem+

  def read_checksums(gem)
    Gem.load_yaml

    @checksums = gem.seek 'checksums.yaml.gz' do |entry|
      Zlib::GzipReader.wrap entry do |gz_io|
        Gem::SafeYAML.safe_load gz_io.read
      end
    end
  end

  ##
  # Prepares the gem for signing and checksum generation.  If a signing
  # certificate and key are not present only checksum generation is set up.

  def setup_signer(signer_options: {})
    passphrase = ENV['GEM_PRIVATE_KEY_PASSPHRASE']
    if @spec.signing_key
      @signer =
        Gem::Security::Signer.new(
          @spec.signing_key,
          @spec.cert_chain,
          passphrase,
          signer_options
        )

      @spec.signing_key = nil
      @spec.cert_chain = @signer.cert_chain.map { |cert| cert.to_s }
    else
      @signer = Gem::Security::Signer.new nil, nil, passphrase
      @spec.cert_chain = @signer.cert_chain.map { |cert| cert.to_pem } if
        @signer.cert_chain
    end
  end

  ##
  # The spec for this gem.
  #
  # If this is a package for a built gem the spec is loaded from the
  # gem and returned.  If this is a package for a gem being built the provided
  # spec is returned.

  def spec
    verify unless @spec

    @spec
  end

  ##
  # Verifies that this gem:
  #
  # * Contains a valid gem specification
  # * Contains a contents archive
  # * The contents archive is not corrupt
  #
  # After verification the gem specification from the gem is available from
  # #spec

  def verify
    @files     = []
    @spec      = nil

    @gem.with_read_io do |io|
      Gem::Package::TarReader.new io do |reader|
        read_checksums reader

        verify_files reader
      end
    end

    verify_checksums @digests, @checksums

    @security_policy.verify_signatures @spec, @digests, @signatures if
      @security_policy

    true
  rescue Gem::Security::Exception
    @spec = nil
    @files = []
    raise
  rescue Errno::ENOENT => e
    raise Gem::Package::FormatError.new e.message
  rescue Gem::Package::TarInvalidError => e
    raise Gem::Package::FormatError.new e.message, @gem
  end

  ##
  # Verifies the +checksums+ against the +digests+.  This check is not
  # cryptographically secure.  Missing checksums are ignored.

  def verify_checksums(digests, checksums) # :nodoc:
    return unless checksums

    checksums.sort.each do |algorithm, gem_digests|
      gem_digests.sort.each do |file_name, gem_hexdigest|
        computed_digest = digests[algorithm][file_name]

        unless computed_digest.hexdigest == gem_hexdigest
          raise Gem::Package::FormatError.new \
            "#{algorithm} checksum mismatch for #{file_name}", @gem
        end
      end
    end
  end

  ##
  # Verifies +entry+ in a .gem file.

  def verify_entry(entry)
    file_name = entry.full_name
    @files << file_name

    case file_name
    when /\.sig$/ then
      @signatures[$`] = entry.read if @security_policy
      return
    else
      digest entry
    end

    case file_name
    when "metadata", "metadata.gz" then
      load_spec entry
    when 'data.tar.gz' then
      verify_gz entry
    end
  rescue => e
    message = "package is corrupt, exception while verifying: " +
              "#{e.message} (#{e.class})"
    raise Gem::Package::FormatError.new message, @gem
  end

  ##
  # Verifies the files of the +gem+

  def verify_files(gem)
    gem.each do |entry|
      verify_entry entry
    end

    unless @spec
      raise Gem::Package::FormatError.new 'package metadata is missing', @gem
    end

    unless @files.include? 'data.tar.gz'
      raise Gem::Package::FormatError.new \
              'package content (data.tar.gz) is missing', @gem
    end

    if duplicates = @files.group_by {|f| f }.select {|k,v| v.size > 1 }.map(&:first) and duplicates.any?
      raise Gem::Security::Exception, "duplicate files in the package: (#{duplicates.map(&:inspect).join(', ')})"
    end
  end

  ##
  # Verifies that +entry+ is a valid gzipped file.

  def verify_gz(entry) # :nodoc:
    Zlib::GzipReader.wrap entry do |gzio|
      gzio.read 16384 until gzio.eof? # gzip checksum verification
    end
  rescue Zlib::GzipFile::Error => e
    raise Gem::Package::FormatError.new(e.message, entry.full_name)
  end

end

require 'rubygems/package/digest_io'
require 'rubygems/package/source'
require 'rubygems/package/file_source'
require 'rubygems/package/io_source'
require 'rubygems/package/old'
require 'rubygems/package/tar_header'
require 'rubygems/package/tar_reader'
require 'rubygems/package/tar_reader/entry'
require 'rubygems/package/tar_writer'
PK8H[xp�f��*share/rubygems/rubygems/command_manager.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/command'
require 'rubygems/user_interaction'
require 'rubygems/text'

##
# The command manager registers and installs all the individual sub-commands
# supported by the gem command.
#
# Extra commands can be provided by writing a rubygems_plugin.rb
# file in an installed gem.  You should register your command against the
# Gem::CommandManager instance, like this:
#
#   # file rubygems_plugin.rb
#   require 'rubygems/command_manager'
#
#   Gem::CommandManager.instance.register_command :edit
#
# You should put the implementation of your command in rubygems/commands.
#
#   # file rubygems/commands/edit_command.rb
#   class Gem::Commands::EditCommand < Gem::Command
#     # ...
#   end
#
# See Gem::Command for instructions on writing gem commands.

class Gem::CommandManager

  include Gem::Text
  include Gem::UserInteraction

  BUILTIN_COMMANDS = [ # :nodoc:
    :build,
    :cert,
    :check,
    :cleanup,
    :contents,
    :dependency,
    :environment,
    :fetch,
    :generate_index,
    :help,
    :info,
    :install,
    :list,
    :lock,
    :mirror,
    :open,
    :outdated,
    :owner,
    :pristine,
    :push,
    :query,
    :rdoc,
    :search,
    :server,
    :signin,
    :signout,
    :sources,
    :specification,
    :stale,
    :uninstall,
    :unpack,
    :update,
    :which,
    :yank,
  ].freeze

  ALIAS_COMMANDS = {
    'i' => 'install'
  }.freeze

  ##
  # Return the authoritative instance of the command manager.

  def self.instance
    @command_manager ||= new
  end

  ##
  # Returns self. Allows a CommandManager instance to stand
  # in for the class itself.

  def instance
    self
  end

  ##
  # Reset the authoritative instance of the command manager.

  def self.reset
    @command_manager = nil
  end

  ##
  # Register all the subcommands supported by the gem command.

  def initialize
    require 'timeout'
    @commands = {}

    BUILTIN_COMMANDS.each do |name|
      register_command name
    end
  end

  ##
  # Register the Symbol +command+ as a gem command.

  def register_command(command, obj=false)
    @commands[command] = obj
  end

  ##
  # Unregister the Symbol +command+ as a gem command.

  def unregister_command(command)
    @commands.delete command
  end

  ##
  # Returns a Command instance for +command_name+

  def [](command_name)
    command_name = command_name.intern
    return nil if @commands[command_name].nil?
    @commands[command_name] ||= load_and_instantiate(command_name)
  end

  ##
  # Return a sorted list of all command names as strings.

  def command_names
    @commands.keys.collect {|key| key.to_s}.sort
  end

  ##
  # Run the command specified by +args+.

  def run(args, build_args=nil)
    process_args(args, build_args)
  rescue StandardError, Timeout::Error => ex
    alert_error clean_text("While executing gem ... (#{ex.class})\n    #{ex}")
    ui.backtrace ex

    terminate_interaction(1)
  rescue Interrupt
    alert_error clean_text("Interrupted")
    terminate_interaction(1)
  end

  def process_args(args, build_args=nil)
    if args.empty?
      say Gem::Command::HELP
      terminate_interaction 1
    end

    case args.first
    when '-h', '--help' then
      say Gem::Command::HELP
      terminate_interaction 0
    when '-v', '--version' then
      say Gem::VERSION
      terminate_interaction 0
    when /^-/ then
      alert_error clean_text("Invalid option: #{args.first}. See 'gem --help'.")
      terminate_interaction 1
    else
      cmd_name = args.shift.downcase
      cmd = find_command cmd_name
      cmd.invoke_with_build_args args, build_args
    end
  end

  def find_command(cmd_name)
    cmd_name = find_alias_command cmd_name

    possibilities = find_command_possibilities cmd_name

    if possibilities.size > 1
      raise Gem::CommandLineError,
            "Ambiguous command #{cmd_name} matches [#{possibilities.join(', ')}]"
    elsif possibilities.empty?
      raise Gem::CommandLineError, "Unknown command #{cmd_name}"
    end

    self[possibilities.first]
  end

  def find_alias_command(cmd_name)
    alias_name = ALIAS_COMMANDS[cmd_name]
    alias_name ? alias_name : cmd_name
  end

  def find_command_possibilities(cmd_name)
    len = cmd_name.length

    found = command_names.select { |name| cmd_name == name[0, len] }

    exact = found.find { |name| name == cmd_name }

    exact ? [exact] : found
  end

  private

  def load_and_instantiate(command_name)
    command_name = command_name.to_s
    const_name = command_name.capitalize.gsub(/_(.)/) { $1.upcase } << "Command"
    load_error = nil

    begin
      begin
        require "rubygems/commands/#{command_name}_command"
      rescue LoadError => e
        load_error = e
      end
      Gem::Commands.const_get(const_name).new
    rescue Exception => e
      e = load_error if load_error

      alert_error clean_text("Loading command: #{command_name} (#{e.class})\n\t#{e}")
      ui.backtrace e
    end
  end

end
PK8H[�O)66*share/rubygems/rubygems/install_message.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/user_interaction'

##
# A default post-install hook that displays "Successfully installed
# some_gem-1.0"

Gem.post_install do |installer|
  ui = Gem::DefaultUserInteraction.ui
  ui.say "Successfully installed #{installer.spec.full_name}"
end
PK8H[]g5X��$share/rubygems/rubygems/validator.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/package'
require 'rubygems/installer'

##
# Validator performs various gem file and gem database validation

class Gem::Validator

  include Gem::UserInteraction

  def initialize # :nodoc:
    require 'find'
  end

  private

  def find_files_for_gem(gem_directory)
    installed_files = []

    Find.find gem_directory do |file_name|
      fn = file_name[gem_directory.size..file_name.size - 1].sub(/^\//, "")
      installed_files << fn unless
        fn =~ /CVS/ || fn.empty? || File.directory?(file_name)
    end

    installed_files
  end

  public

  ##
  # Describes a problem with a file in a gem.

  ErrorData = Struct.new :path, :problem do
    def <=>(other) # :nodoc:
      return nil unless self.class === other

      [path, problem] <=> [other.path, other.problem]
    end
  end

  ##
  # Checks the gem directory for the following potential
  # inconsistencies/problems:
  #
  # * Checksum gem itself
  # * For each file in each gem, check consistency of installed versions
  # * Check for files that aren't part of the gem but are in the gems directory
  # * 1 cache - 1 spec - 1 directory.
  #
  # returns a hash of ErrorData objects, keyed on the problem gem's name.
  #--
  # TODO needs further cleanup

  def alien(gems=[])
    errors = Hash.new { |h,k| h[k] = {} }

    Gem::Specification.each do |spec|
      next unless gems.include? spec.name unless gems.empty?
      next if spec.default_gem?

      gem_name      = spec.file_name
      gem_path      = spec.cache_file
      spec_path     = spec.spec_file
      gem_directory = spec.full_gem_path

      unless File.directory? gem_directory
        errors[gem_name][spec.full_name] =
          "Gem registered but doesn't exist at #{gem_directory}"
        next
      end

      unless File.exist? spec_path
        errors[gem_name][spec_path] = "Spec file missing for installed gem"
      end

      begin
        unless File.readable?(gem_path)
          raise Gem::VerificationError, "missing gem file #{gem_path}"
        end

        good, gone, unreadable = nil, nil, nil, nil

        File.open gem_path, Gem.binary_mode do |file|
          package = Gem::Package.new gem_path

          good, gone = package.contents.partition do |file_name|
            File.exist? File.join(gem_directory, file_name)
          end

          gone.sort.each do |path|
            errors[gem_name][path] = "Missing file"
          end

          good, unreadable = good.partition do |file_name|
            File.readable? File.join(gem_directory, file_name)
          end

          unreadable.sort.each do |path|
            errors[gem_name][path] = "Unreadable file"
          end

          good.each do |entry, data|
            begin
              next unless data # HACK `gem check -a mkrf`

              source = File.join gem_directory, entry['path']

              File.open source, Gem.binary_mode do |f|
                unless f.read == data
                  errors[gem_name][entry['path']] = "Modified from original"
                end
              end
            end
          end
        end

        installed_files = find_files_for_gem(gem_directory)
        extras = installed_files - good - unreadable

        extras.each do |extra|
          errors[gem_name][extra] = "Extra file"
        end
      rescue Gem::VerificationError => e
        errors[gem_name][gem_path] = e.message
      end
    end

    errors.each do |name, subhash|
      errors[name] = subhash.map do |path, msg|
        ErrorData.new path, msg
      end.sort
    end

    errors
  end

end
PK8H[}-"�S#S#&share/rubygems/rubygems/uninstaller.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'fileutils'
require 'rubygems'
require 'rubygems/dependency_list'
require 'rubygems/rdoc'
require 'rubygems/user_interaction'

##
# An Uninstaller.
#
# The uninstaller fires pre and post uninstall hooks.  Hooks can be added
# either through a rubygems_plugin.rb file in an installed gem or via a
# rubygems/defaults/#{RUBY_ENGINE}.rb or rubygems/defaults/operating_system.rb
# file.  See Gem.pre_uninstall and Gem.post_uninstall for details.

class Gem::Uninstaller

  include Gem::UserInteraction

  ##
  # The directory a gem's executables will be installed into

  attr_reader :bin_dir

  ##
  # The gem repository the gem will be installed into

  attr_reader :gem_home

  ##
  # The Gem::Specification for the gem being uninstalled, only set during
  # #uninstall_gem

  attr_reader :spec

  ##
  # Constructs an uninstaller that will uninstall +gem+

  def initialize(gem, options = {})
    # TODO document the valid options
    @gem                = gem
    @version            = options[:version] || Gem::Requirement.default
    @gem_home           = File.realpath(options[:install_dir] || Gem.dir)
    @force_executables  = options[:executables]
    @force_all          = options[:all]
    @force_ignore       = options[:ignore]
    @bin_dir            = options[:bin_dir]
    @format_executable  = options[:format_executable]
    @abort_on_dependent = options[:abort_on_dependent]

    # Indicate if development dependencies should be checked when
    # uninstalling. (default: false)
    #
    @check_dev = options[:check_dev]

    if options[:force]
      @force_all = true
      @force_ignore = true
    end

    # only add user directory if install_dir is not set
    @user_install = false
    @user_install = options[:user_install] unless options[:install_dir]
  end

  ##
  # Performs the uninstall of the gem.  This removes the spec, the Gem
  # directory, and the cached .gem file.

  def uninstall
    dependency = Gem::Dependency.new @gem, @version

    list = []

    dirs =
      Gem::Specification.dirs +
      [Gem.default_specifications_dir]

    Gem::Specification.each_spec dirs do |spec|
      next unless dependency.matches_spec? spec

      list << spec
    end

    if list.empty?
      raise Gem::InstallError, "gem #{@gem.inspect} is not installed"
    end

    default_specs, list = list.partition do |spec|
      spec.default_gem?
    end

    default_specs.each do |default_spec|
      say "Gem #{default_spec.full_name} cannot be uninstalled because it is a default gem"
    end

    list, other_repo_specs = list.partition do |spec|
      @gem_home == spec.base_dir or
        (@user_install and spec.base_dir == Gem.user_dir)
    end

    list.sort!

    if list.empty?
      return unless other_repo_specs.any?

      other_repos = other_repo_specs.map { |spec| spec.base_dir }.uniq

      message = ["#{@gem} is not installed in GEM_HOME, try:"]
      message.concat other_repos.map { |repo|
        "\tgem uninstall -i #{repo} #{@gem}"
      }

      raise Gem::InstallError, message.join("\n")
    elsif @force_all
      remove_all list

    elsif list.size > 1
      gem_names = list.map { |gem| gem.full_name }
      gem_names << "All versions"

      say
      _, index = choose_from_list "Select gem to uninstall:", gem_names

      if index == list.size
        remove_all list
      elsif index >= 0 && index < list.size
        uninstall_gem list[index]
      else
        say "Error: must enter a number [1-#{list.size + 1}]"
      end
    else
      uninstall_gem list.first
    end
  end

  ##
  # Uninstalls gem +spec+

  def uninstall_gem(spec)
    @spec = spec

    unless dependencies_ok? spec
      if abort_on_dependent? || !ask_if_ok(spec)
        raise Gem::DependencyRemovalException,
          "Uninstallation aborted due to dependent gem(s)"
      end
    end

    Gem.pre_uninstall_hooks.each do |hook|
      hook.call self
    end

    remove_executables @spec
    remove @spec

    Gem.post_uninstall_hooks.each do |hook|
      hook.call self
    end

    @spec = nil
  end

  ##
  # Removes installed executables and batch files (windows only) for
  # +gemspec+.

  def remove_executables(spec)
    return if spec.nil? or spec.executables.empty?

    executables = spec.executables.clone

    # Leave any executables created by other installed versions
    # of this gem installed.

    list = Gem::Specification.find_all do |s|
      s.name == spec.name && s.version != spec.version
    end

    list.each do |s|
      s.executables.each do |exe_name|
        executables.delete exe_name
      end
    end

    return if executables.empty?

    executables = executables.map { |exec| formatted_program_filename exec }

    remove = if @force_executables.nil?
               ask_yes_no("Remove executables:\n" +
                          "\t#{executables.join ', '}\n\n" +
                          "in addition to the gem?",
                          true)
             else
               @force_executables
             end

    if remove
      bin_dir = @bin_dir || Gem.bindir(spec.base_dir)

      raise Gem::FilePermissionError, bin_dir unless File.writable? bin_dir

      executables.each do |exe_name|
        say "Removing #{exe_name}"

        exe_file = File.join bin_dir, exe_name

        safe_delete { FileUtils.rm exe_file }
        safe_delete { FileUtils.rm "#{exe_file}.bat" }
      end
    else
      say "Executables and scripts will remain installed."
    end
  end

  ##
  # Removes all gems in +list+.
  #
  # NOTE: removes uninstalled gems from +list+.

  def remove_all(list)
    list.each { |spec| uninstall_gem spec }
  end

  ##
  # spec:: the spec of the gem to be uninstalled
  # list:: the list of all such gems
  #
  # Warning: this method modifies the +list+ parameter.  Once it has
  # uninstalled a gem, it is removed from that list.

  def remove(spec)
    unless path_ok?(@gem_home, spec) or
           (@user_install and path_ok?(Gem.user_dir, spec))
      e = Gem::GemNotInHomeException.new \
            "Gem '#{spec.full_name}' is not installed in directory #{@gem_home}"
      e.spec = spec

      raise e
    end

    raise Gem::FilePermissionError, spec.base_dir unless
      File.writable?(spec.base_dir)

    safe_delete { FileUtils.rm_r spec.full_gem_path }
    safe_delete { FileUtils.rm_r spec.extension_dir }

    old_platform_name = spec.original_name

    gem = spec.cache_file
    gem = File.join(spec.cache_dir, "#{old_platform_name}.gem") unless
      File.exist? gem

    safe_delete { FileUtils.rm_r gem }

    Gem::RDoc.new(spec).remove

    gemspec = spec.spec_file

    unless File.exist? gemspec
      gemspec = File.join(File.dirname(gemspec), "#{old_platform_name}.gemspec")
    end

    safe_delete { FileUtils.rm_r gemspec }
    say "Successfully uninstalled #{spec.full_name}"

    Gem::Specification.reset
  end

  ##
  # Is +spec+ in +gem_dir+?

  def path_ok?(gem_dir, spec)
    full_path     = File.join gem_dir, 'gems', spec.full_name
    original_path = File.join gem_dir, 'gems', spec.original_name

    full_path == spec.full_gem_path || original_path == spec.full_gem_path
  end

  ##
  # Returns true if it is OK to remove +spec+ or this is a forced
  # uninstallation.

  def dependencies_ok?(spec) # :nodoc:
    return true if @force_ignore

    deplist = Gem::DependencyList.from_specs
    deplist.ok_to_remove?(spec.full_name, @check_dev)
  end

  ##
  # Should the uninstallation abort if a dependency will go unsatisfied?
  #
  # See ::new.

  def abort_on_dependent? # :nodoc:
    @abort_on_dependent
  end

  ##
  # Asks if it is OK to remove +spec+.  Returns true if it is OK.

  def ask_if_ok(spec) # :nodoc:
    msg = ['']
    msg << 'You have requested to uninstall the gem:'
    msg << "\t#{spec.full_name}"
    msg << ''

    siblings = Gem::Specification.select do |s|
      s.name == spec.name && s.full_name != spec.full_name
    end

    spec.dependent_gems.each do |dep_spec, dep, satlist|
      unless siblings.any? { |s| s.satisfies_requirement? dep }
        msg << "#{dep_spec.name}-#{dep_spec.version} depends on #{dep}"
      end
    end

    msg << 'If you remove this gem, these dependencies will not be met.'
    msg << 'Continue with Uninstall?'
    return ask_yes_no(msg.join("\n"), false)
  end

  ##
  # Returns the formatted version of the executable +filename+

  def formatted_program_filename(filename) # :nodoc:
    # TODO perhaps the installer should leave a small manifest
    # of what it did for us to find rather than trying to recreate
    # it again.
    if @format_executable
      require 'rubygems/installer'
      Gem::Installer.exec_format % File.basename(filename)
    else
      filename
    end
  end

  def safe_delete(&block)
    block.call
  rescue Errno::ENOENT
    nil
  rescue Errno::EPERM
    e = Gem::UninstallError.new
    e.spec = @spec

    raise e
  end

end
PK8H[��VN��-share/rubygems/rubygems/stub_specification.rbnu�[���# frozen_string_literal: true
##
# Gem::StubSpecification reads the stub: line from the gemspec.  This prevents
# us having to eval the entire gemspec in order to find out certain
# information.

class Gem::StubSpecification < Gem::BasicSpecification

  # :nodoc:
  PREFIX = "# stub: ".freeze

  # :nodoc:
  OPEN_MODE = 'r:UTF-8:-'.freeze

  class StubLine # :nodoc: all

    attr_reader :name, :version, :platform, :require_paths, :extensions,
                :full_name

    NO_EXTENSIONS = [].freeze

    # These are common require paths.
    REQUIRE_PATHS = { # :nodoc:
      'lib'  => 'lib'.freeze,
      'test' => 'test'.freeze,
      'ext'  => 'ext'.freeze,
    }.freeze

    # These are common require path lists.  This hash is used to optimize
    # and consolidate require_path objects.  Most specs just specify "lib"
    # in their require paths, so lets take advantage of that by pre-allocating
    # a require path list for that case.
    REQUIRE_PATH_LIST = { # :nodoc:
      'lib' => ['lib'].freeze
    }.freeze

    def initialize(data, extensions)
      parts          = data[PREFIX.length..-1].split(" ".freeze, 4)
      @name          = parts[0].freeze
      @version       = if Gem::Version.correct?(parts[1])
                         Gem::Version.new(parts[1])
                       else
                         Gem::Version.new(0)
                       end

      @platform      = Gem::Platform.new parts[2]
      @extensions    = extensions
      @full_name     = if platform == Gem::Platform::RUBY
                         "#{name}-#{version}"
                       else
                         "#{name}-#{version}-#{platform}"
                       end

      path_list = parts.last
      @require_paths = REQUIRE_PATH_LIST[path_list] || path_list.split("\0".freeze).map! do |x|
        REQUIRE_PATHS[x] || x
      end
    end

  end

  def self.default_gemspec_stub(filename, base_dir, gems_dir)
    new filename, base_dir, gems_dir, true
  end

  def self.gemspec_stub(filename, base_dir, gems_dir)
    new filename, base_dir, gems_dir, false
  end

  attr_reader :base_dir, :gems_dir

  def initialize(filename, base_dir, gems_dir, default_gem)
    super()
    filename.tap(&Gem::UNTAINT)

    self.loaded_from = filename
    @data            = nil
    @name            = nil
    @spec            = nil
    @base_dir        = base_dir
    @gems_dir        = gems_dir
    @default_gem     = default_gem
  end

  ##
  # True when this gem has been activated

  def activated?
    @activated ||=
    begin
      loaded = Gem.loaded_specs[name]
      loaded && loaded.version == version
    end
  end

  def default_gem?
    @default_gem
  end

  def build_extensions # :nodoc:
    return if default_gem?
    return if extensions.empty?

    to_spec.build_extensions
  end

  ##
  # If the gemspec contains a stubline, returns a StubLine instance. Otherwise
  # returns the full Gem::Specification.

  def data
    unless @data
      begin
        saved_lineno = $.

        File.open loaded_from, OPEN_MODE do |file|
          begin
            file.readline # discard encoding line
            stubline = file.readline.chomp
            if stubline.start_with?(PREFIX)
              extensions = if /\A#{PREFIX}/ =~ file.readline.chomp
                             $'.split "\0"
                           else
                             StubLine::NO_EXTENSIONS
                           end

              @data = StubLine.new stubline, extensions
            end
          rescue EOFError
          end
        end
      ensure
        $. = saved_lineno
      end
    end

    @data ||= to_spec
  end

  private :data

  def raw_require_paths # :nodoc:
    data.require_paths
  end

  def missing_extensions?
    return false if default_gem?
    return false if extensions.empty?
    return false if File.exist? gem_build_complete_path

    to_spec.missing_extensions?
  end

  ##
  # Name of the gem

  def name
    data.name
  end

  ##
  # Platform of the gem

  def platform
    data.platform
  end

  ##
  # Extensions for this gem

  def extensions
    data.extensions
  end

  ##
  # Version of the gem

  def version
    data.version
  end

  def full_name
    data.full_name
  end

  ##
  # The full Gem::Specification for this gem, loaded from evalling its gemspec

  def to_spec
    @spec ||= if @data
                loaded = Gem.loaded_specs[name]
                loaded if loaded && loaded.version == version
              end

    @spec ||= Gem::Specification.load(loaded_from)
    @spec.ignored = @ignored if @spec

    @spec
  end

  ##
  # Is this StubSpecification valid? i.e. have we found a stub line, OR does
  # the filename contain a valid gemspec?

  def valid?
    data
  end

  ##
  # Is there a stub line present for this StubSpecification?

  def stubbed?
    data.is_a? StubLine
  end

end
PK8H[\��%�%#share/rubygems/rubygems/resolver.rbnu�[���# frozen_string_literal: true
require 'rubygems/dependency'
require 'rubygems/exceptions'
require 'rubygems/util'
require 'rubygems/util/list'

##
# Given a set of Gem::Dependency objects as +needed+ and a way to query the
# set of available specs via +set+, calculates a set of ActivationRequest
# objects which indicate all the specs that should be activated to meet the
# all the requirements.

class Gem::Resolver

  require 'rubygems/resolver/molinillo'

  ##
  # If the DEBUG_RESOLVER environment variable is set then debugging mode is
  # enabled for the resolver.  This will display information about the state
  # of the resolver while a set of dependencies is being resolved.

  DEBUG_RESOLVER = !ENV['DEBUG_RESOLVER'].nil?

  ##
  # Set to true if all development dependencies should be considered.

  attr_accessor :development

  ##
  # Set to true if immediate development dependencies should be considered.

  attr_accessor :development_shallow

  ##
  # When true, no dependencies are looked up for requested gems.

  attr_accessor :ignore_dependencies

  ##
  # List of dependencies that could not be found in the configured sources.

  attr_reader :missing

  attr_reader :stats

  ##
  # Hash of gems to skip resolution.  Keyed by gem name, with arrays of
  # gem specifications as values.

  attr_accessor :skip_gems

  ##
  # When a missing dependency, don't stop. Just go on and record what was
  # missing.

  attr_accessor :soft_missing

  ##
  # Combines +sets+ into a ComposedSet that allows specification lookup in a
  # uniform manner.  If one of the +sets+ is itself a ComposedSet its sets are
  # flattened into the result ComposedSet.

  def self.compose_sets(*sets)
    sets.compact!

    sets = sets.map do |set|
      case set
      when Gem::Resolver::BestSet then
        set
      when Gem::Resolver::ComposedSet then
        set.sets
      else
        set
      end
    end.flatten

    case sets.length
    when 0 then
      raise ArgumentError, 'one set in the composition must be non-nil'
    when 1 then
      sets.first
    else
      Gem::Resolver::ComposedSet.new(*sets)
    end
  end

  ##
  # Creates a Resolver that queries only against the already installed gems
  # for the +needed+ dependencies.

  def self.for_current_gems(needed)
    new needed, Gem::Resolver::CurrentSet.new
  end

  ##
  # Create Resolver object which will resolve the tree starting
  # with +needed+ Dependency objects.
  #
  # +set+ is an object that provides where to look for specifications to
  # satisfy the Dependencies. This defaults to IndexSet, which will query
  # rubygems.org.

  def initialize(needed, set = nil)
    @set = set || Gem::Resolver::IndexSet.new
    @needed = needed

    @development         = false
    @development_shallow = false
    @ignore_dependencies = false
    @missing             = []
    @skip_gems           = {}
    @soft_missing        = false
    @stats               = Gem::Resolver::Stats.new
  end

  def explain(stage, *data) # :nodoc:
    return unless DEBUG_RESOLVER

    d = data.map { |x| x.pretty_inspect }.join(", ")
    $stderr.printf "%10s %s\n", stage.to_s.upcase, d
  end

  def explain_list(stage) # :nodoc:
    return unless DEBUG_RESOLVER

    data = yield
    $stderr.printf "%10s (%d entries)\n", stage.to_s.upcase, data.size
    unless data.empty?
      require 'pp'
      PP.pp data, $stderr
    end
  end

  ##
  # Creates an ActivationRequest for the given +dep+ and the last +possible+
  # specification.
  #
  # Returns the Specification and the ActivationRequest

  def activation_request(dep, possible) # :nodoc:
    spec = possible.pop

    explain :activate, [spec.full_name, possible.size]
    explain :possible, possible

    activation_request =
      Gem::Resolver::ActivationRequest.new spec, dep, possible

    return spec, activation_request
  end

  def requests(s, act, reqs=[]) # :nodoc:
    return reqs if @ignore_dependencies

    s.fetch_development_dependencies if @development

    s.dependencies.reverse_each do |d|
      next if d.type == :development and not @development
      next if d.type == :development and @development_shallow and
              act.development?
      next if d.type == :development and @development_shallow and
              act.parent

      reqs << Gem::Resolver::DependencyRequest.new(d, act)
      @stats.requirement!
    end

    @set.prefetch reqs

    @stats.record_requirements reqs

    reqs
  end

  include Molinillo::UI

  def output
    @output ||= debug? ? $stdout : File.open(IO::NULL, 'w')
  end

  def debug?
    DEBUG_RESOLVER
  end

  include Molinillo::SpecificationProvider

  ##
  # Proceed with resolution! Returns an array of ActivationRequest objects.

  def resolve
    locking_dg = Molinillo::DependencyGraph.new
    Molinillo::Resolver.new(self, self).resolve(@needed.map { |d| DependencyRequest.new d, nil }, locking_dg).tsort.map(&:payload).compact
  rescue Molinillo::VersionConflict => e
    conflict = e.conflicts.values.first
    raise Gem::DependencyResolutionError, Conflict.new(conflict.requirement_trees.first.first, conflict.existing, conflict.requirement)
  ensure
    @output.close if defined?(@output) and !debug?
  end

  ##
  # Extracts the specifications that may be able to fulfill +dependency+ and
  # returns those that match the local platform and all those that match.

  def find_possible(dependency) # :nodoc:
    all = @set.find_all dependency

    if (skip_dep_gems = skip_gems[dependency.name]) && !skip_dep_gems.empty?
      matching = all.select do |api_spec|
        skip_dep_gems.any? { |s| api_spec.version == s.version }
      end

      all = matching unless matching.empty?
    end

    matching_platform = select_local_platforms all

    return matching_platform, all
  end

  ##
  # Returns the gems in +specs+ that match the local platform.

  def select_local_platforms(specs) # :nodoc:
    specs.select do |spec|
      Gem::Platform.installable? spec
    end
  end

  def search_for(dependency)
    possibles, all = find_possible(dependency)
    if !@soft_missing && possibles.empty?
      @missing << dependency
      exc = Gem::UnsatisfiableDependencyError.new dependency, all
      exc.errors = @set.errors
      raise exc
    end

    groups = Hash.new { |hash, key| hash[key] = [] }

    # create groups & sources in the same loop
    sources = possibles.map do |spec|
      source = spec.source
      groups[source] << spec
      source
    end.uniq.reverse

    activation_requests = []

    sources.each do |source|
      groups[source].
        sort_by { |spec| [spec.version, Gem::Platform.local =~ spec.platform ? 1 : 0] }.
        map { |spec| ActivationRequest.new spec, dependency }.
        each { |activation_request| activation_requests << activation_request }
    end

    activation_requests
  end

  def dependencies_for(specification)
    return [] if @ignore_dependencies
    spec = specification.spec
    requests(spec, specification)
  end

  def requirement_satisfied_by?(requirement, activated, spec)
    requirement.matches_spec? spec
  end

  def name_for(dependency)
    dependency.name
  end

  def allow_missing?(dependency)
    @missing << dependency
    @soft_missing
  end

  def sort_dependencies(dependencies, activated, conflicts)
    dependencies.sort_by.with_index do |dependency, i|
      name = name_for(dependency)
      [
        activated.vertex_named(name).payload ? 0 : 1,
        amount_constrained(dependency),
        conflicts[name] ? 0 : 1,
        activated.vertex_named(name).payload ? 0 : search_for(dependency).count,
        i # for stable sort
      ]
    end
  end

  SINGLE_POSSIBILITY_CONSTRAINT_PENALTY = 1_000_000
  private_constant :SINGLE_POSSIBILITY_CONSTRAINT_PENALTY if defined?(private_constant)

  # returns an integer \in (-\infty, 0]
  # a number closer to 0 means the dependency is less constraining
  #
  # dependencies w/ 0 or 1 possibilities (ignoring version requirements)
  # are given very negative values, so they _always_ sort first,
  # before dependencies that are unconstrained
  def amount_constrained(dependency)
    @amount_constrained ||= {}
    @amount_constrained[dependency.name] ||= begin
      name_dependency = Gem::Dependency.new(dependency.name)
      dependency_request_for_name = Gem::Resolver::DependencyRequest.new(name_dependency, dependency.requester)
      all = @set.find_all(dependency_request_for_name).size

      if all <= 1
        all - SINGLE_POSSIBILITY_CONSTRAINT_PENALTY
      else
        search = search_for(dependency).size
        search - all
      end
    end
  end
  private :amount_constrained

end

require 'rubygems/resolver/activation_request'
require 'rubygems/resolver/conflict'
require 'rubygems/resolver/dependency_request'
require 'rubygems/resolver/requirement_list'
require 'rubygems/resolver/stats'

require 'rubygems/resolver/set'
require 'rubygems/resolver/api_set'
require 'rubygems/resolver/composed_set'
require 'rubygems/resolver/best_set'
require 'rubygems/resolver/current_set'
require 'rubygems/resolver/git_set'
require 'rubygems/resolver/index_set'
require 'rubygems/resolver/installer_set'
require 'rubygems/resolver/lock_set'
require 'rubygems/resolver/vendor_set'
require 'rubygems/resolver/source_set'

require 'rubygems/resolver/specification'
require 'rubygems/resolver/spec_specification'
require 'rubygems/resolver/api_specification'
require 'rubygems/resolver/git_specification'
require 'rubygems/resolver/index_specification'
require 'rubygems/resolver/installed_specification'
require 'rubygems/resolver/local_specification'
require 'rubygems/resolver/lock_specification'
require 'rubygems/resolver/vendor_specification'
PK8H[q+>��(share/rubygems/rubygems/compatibility.rbnu�[���# frozen_string_literal: true
# :stopdoc:

#--
# This file contains all sorts of little compatibility hacks that we've
# had to introduce over the years. Quarantining them into one file helps
# us know when we can get rid of them.
#
# Ruby 1.9.x has introduced some things that are awkward, and we need to
# support them, so we define some constants to use later.
#++

# TODO remove at RubyGems 4
module Gem
  RubyGemsVersion = VERSION
  deprecate_constant(:RubyGemsVersion)

  RbConfigPriorities = %w[
    MAJOR
    MINOR
    TEENY
    EXEEXT RUBY_SO_NAME arch bindir datadir libdir ruby_install_name
    ruby_version rubylibprefix sitedir sitelibdir vendordir vendorlibdir
    rubylibdir
  ].freeze

  unless defined?(ConfigMap)
    ##
    # Configuration settings from ::RbConfig
    ConfigMap = Hash.new do |cm, key|
      cm[key] = RbConfig::CONFIG[key.to_s]
    end
    deprecate_constant(:ConfigMap)
  else
    RbConfigPriorities.each do |key|
      ConfigMap[key.to_sym] = RbConfig::CONFIG[key]
    end
  end

end
PK8H[z�+�����$share/rubygems/rubygems/test_case.rbnu�[���# frozen_string_literal: true

require 'rubygems'

# If bundler gemspec exists, add to stubs
bundler_gemspec = File.expand_path("../../../bundler/bundler.gemspec", __FILE__)
if File.exist?(bundler_gemspec)
  Gem::Specification.dirs.unshift File.dirname(bundler_gemspec)
  Gem::Specification.class_variable_set :@@stubs, nil
  Gem::Specification.stubs
  Gem::Specification.dirs.shift
end

begin
  gem 'minitest', '~> 5.0'
rescue Gem::LoadError
end

begin
  require 'simplecov'
  SimpleCov.start do
    add_filter "/test/"
    add_filter "/bundler/"
    add_filter "/lib/rubygems/resolver/molinillo"
  end
rescue LoadError
end

require 'bundler'

require 'minitest/autorun'

require 'rubygems/deprecate'

require 'fileutils'
require 'pathname'
require 'pp'
require 'rubygems/package'
require 'shellwords'
require 'tmpdir'
require 'uri'
require 'zlib'
require 'benchmark' # stdlib
require 'rubygems/mock_gem_ui'

module Gem

  ##
  # Allows setting the gem path searcher.  This method is available when
  # requiring 'rubygems/test_case'

  def self.searcher=(searcher)
    @searcher = searcher
  end

  ##
  # Allows toggling Windows behavior.  This method is available when requiring
  # 'rubygems/test_case'

  def self.win_platform=(val)
    @@win_platform = val
  end

  ##
  # Allows setting path to Ruby.  This method is available when requiring
  # 'rubygems/test_case'

  def self.ruby=(ruby)
    @ruby = ruby
  end

  ##
  # When rubygems/test_case is required the default user interaction is a
  # MockGemUi.

  module DefaultUserInteraction
    @ui = Gem::MockGemUi.new
  end
end

##
# RubyGemTestCase provides a variety of methods for testing rubygems and
# gem-related behavior in a sandbox.  Through RubyGemTestCase you can install
# and uninstall gems, fetch remote gems through a stub fetcher and be assured
# your normal set of gems is not affected.

class Gem::TestCase < (defined?(Minitest::Test) ? Minitest::Test : MiniTest::Unit::TestCase)

  extend Gem::Deprecate

  attr_accessor :fetcher # :nodoc:

  attr_accessor :gem_repo # :nodoc:

  attr_accessor :uri # :nodoc:

  TEST_PATH = ENV.fetch('RUBYGEMS_TEST_PATH', File.expand_path('../../../test/rubygems', __FILE__))

  SPECIFICATIONS = File.expand_path(File.join(TEST_PATH, "specifications"), __FILE__)

  def assert_activate(expected, *specs)
    specs.each do |spec|
      case spec
      when String then
        Gem::Specification.find_by_name(spec).activate
      when Gem::Specification then
        spec.activate
      else
        flunk spec.inspect
      end
    end

    loaded = Gem.loaded_specs.values.map(&:full_name)

    assert_equal expected.sort, loaded.sort if expected
  end

  # TODO: move to minitest
  def assert_path_exists(path, msg = nil)
    msg = message(msg) { "Expected path '#{path}' to exist" }
    assert File.exist?(path), msg
  end

  def assert_directory_exists(path, msg = nil)
    msg = message(msg) { "Expected path '#{path}' to be a directory" }
    assert_path_exists path
    assert File.directory?(path), msg
  end

  ##
  # Sets the ENABLE_SHARED entry in RbConfig::CONFIG to +value+ and restores
  # the original value when the block ends

  def enable_shared(value)
    enable_shared = RbConfig::CONFIG['ENABLE_SHARED']
    RbConfig::CONFIG['ENABLE_SHARED'] = value

    yield
  ensure
    if enable_shared
      RbConfig::CONFIG['enable_shared'] = enable_shared
    else
      RbConfig::CONFIG.delete 'enable_shared'
    end
  end

  ##
  # Sets the vendordir entry in RbConfig::CONFIG to +value+ and restores the
  # original value when the block ends
  #
  def vendordir(value)
    vendordir = RbConfig::CONFIG['vendordir']

    if value
      RbConfig::CONFIG['vendordir'] = value
    else
      RbConfig::CONFIG.delete 'vendordir'
    end

    yield
  ensure
    if vendordir
      RbConfig::CONFIG['vendordir'] = vendordir
    else
      RbConfig::CONFIG.delete 'vendordir'
    end
  end

  ##
  # Sets the bindir entry in RbConfig::CONFIG to +value+ and restores the
  # original value when the block ends
  #
  def bindir(value)
    with_clean_path_to_ruby do
      bindir = RbConfig::CONFIG['bindir']

      if value
        RbConfig::CONFIG['bindir'] = value
      else
        RbConfig::CONFIG.delete 'bindir'
      end

      begin
        yield
      ensure
        if bindir
          RbConfig::CONFIG['bindir'] = bindir
        else
          RbConfig::CONFIG.delete 'bindir'
        end
      end
    end
  end

  ##
  # Sets the EXEEXT entry in RbConfig::CONFIG to +value+ and restores the
  # original value when the block ends
  #
  def exeext(value)
    exeext = RbConfig::CONFIG['EXEEXT']

    if value
      RbConfig::CONFIG['EXEEXT'] = value
    else
      RbConfig::CONFIG.delete 'EXEEXT'
    end

    yield
  ensure
    if exeext
      RbConfig::CONFIG['EXEEXT'] = exeext
    else
      RbConfig::CONFIG.delete 'EXEEXT'
    end
  end

  # TODO: move to minitest
  def refute_path_exists(path, msg = nil)
    msg = message(msg) { "Expected path '#{path}' to not exist" }
    refute File.exist?(path), msg
  end

  def scan_make_command_lines(output)
    output.scan(/^#{Regexp.escape make_command}(?:[[:blank:]].*)?$/)
  end

  def parse_make_command_line(line)
    command, *args = line.shellsplit

    targets = []
    macros = {}

    args.each do |arg|
      case arg
      when /\A(\w+)=/
        macros[$1] = $'
      else
        targets << arg
      end
    end

    targets << '' if targets.empty?

    {
      :command => command,
      :targets => targets,
      :macros => macros,
    }
  end

  def assert_contains_make_command(target, output, msg = nil)
    if output.match(/\n/)
      msg = message(msg) do
        'Expected output containing make command "%s": %s' % [
          ('%s %s' % [make_command, target]).rstrip,
          output.inspect
        ]
      end
    else
      msg = message(msg) do
        'Expected make command "%s": %s' % [
          ('%s %s' % [make_command, target]).rstrip,
          output.inspect
        ]
      end
    end

    assert scan_make_command_lines(output).any? { |line|
      make = parse_make_command_line(line)

      if make[:targets].include?(target)
        yield make, line if block_given?
        true
      else
        false
      end
    }, msg
  end

  include Gem::DefaultUserInteraction

  undef_method :default_test if instance_methods.include? 'default_test' or
                                instance_methods.include? :default_test

  ##
  # #setup prepares a sandboxed location to install gems.  All installs are
  # directed to a temporary directory.  All install plugins are removed.
  #
  # If the +RUBY+ environment variable is set the given path is used for
  # Gem::ruby.  The local platform is set to <tt>i386-mswin32</tt> for Windows
  # or <tt>i686-darwin8.10.1</tt> otherwise.

  def setup
    super

    @orig_env = ENV.to_hash

    ENV['GEM_VENDOR'] = nil
    ENV['GEMRC'] = nil
    ENV['SOURCE_DATE_EPOCH'] = nil

    @current_dir = Dir.pwd
    @fetcher     = nil

    @back_ui                       = Gem::DefaultUserInteraction.ui
    @ui                            = Gem::MockGemUi.new
    # This needs to be a new instance since we call use_ui(@ui) when we want to
    # capture output
    Gem::DefaultUserInteraction.ui = Gem::MockGemUi.new

    tmpdir = File.realpath Dir.tmpdir
    tmpdir.tap(&Gem::UNTAINT)

    @tempdir = File.join(tmpdir, "test_rubygems_#{$$}")
    @tempdir.tap(&Gem::UNTAINT)

    FileUtils.mkdir_p @tempdir

    # This makes the tempdir consistent on Windows.
    # Dir.tmpdir may return short path name, but Dir[Dir.tmpdir] returns long
    # path name. https://bugs.ruby-lang.org/issues/10819
    # File.expand_path or File.realpath doesn't convert path name to long path
    # name. Only Dir[] (= Dir.glob) works.
    # Short and long path name is specific to Windows filesystem.
    if win_platform?
      @tempdir = Dir[@tempdir][0]
      @tempdir.tap(&Gem::UNTAINT)
    end

    @gemhome  = File.join @tempdir, 'gemhome'
    @userhome = File.join @tempdir, 'userhome'
    ENV["GEM_SPEC_CACHE"] = File.join @tempdir, 'spec_cache'

    @orig_ruby = if ENV['RUBY']
                   ruby = Gem.ruby
                   Gem.ruby = ENV['RUBY']
                   ruby
                 end

    @git = ENV['GIT'] || 'git'

    Gem.ensure_gem_subdirectories @gemhome

    @orig_LOAD_PATH = $LOAD_PATH.dup
    $LOAD_PATH.map! do |s|
      expand_path = File.realpath(s) rescue File.expand_path(s)
      if expand_path != s
        expand_path.tap(&Gem::UNTAINT)
        if s.instance_variable_defined?(:@gem_prelude_index)
          expand_path.instance_variable_set(:@gem_prelude_index, expand_path)
        end
        expand_path.freeze if s.frozen?
        s = expand_path
      end
      s
    end

    Dir.chdir @tempdir

    ENV['HOME'] = @userhome
    Gem.instance_variable_set :@user_home, nil
    Gem.instance_variable_set :@gemdeps, nil
    Gem.instance_variable_set :@env_requirements_by_name, nil
    Gem.send :remove_instance_variable, :@ruby_version if
      Gem.instance_variables.include? :@ruby_version

    FileUtils.mkdir_p @gemhome
    FileUtils.mkdir_p @userhome

    ENV['GEM_PRIVATE_KEY_PASSPHRASE'] = PRIVATE_KEY_PASSPHRASE

    @default_dir = File.join @tempdir, 'default'
    @default_spec_dir = File.join @default_dir, "specifications", "default"
    if Gem.java_platform?
      @orig_default_gem_home = RbConfig::CONFIG['default_gem_home']
      RbConfig::CONFIG['default_gem_home'] = @default_dir
    else
      Gem.instance_variable_set(:@default_dir, @default_dir)
    end
    FileUtils.mkdir_p @default_spec_dir

    Gem::Specification.unresolved_deps.clear
    Gem.use_paths(@gemhome)

    Gem::Security.reset

    Gem.loaded_specs.clear
    Gem.instance_variable_set(:@activated_gem_paths, 0)
    Gem.clear_default_specs
    Bundler.reset!

    Gem.configuration.verbose = true
    Gem.configuration.update_sources = true

    Gem::RemoteFetcher.fetcher = Gem::FakeFetcher.new

    @gem_repo = "http://gems.example.com/"
    @uri = URI.parse @gem_repo
    Gem.sources.replace [@gem_repo]

    Gem.searcher = nil
    Gem::SpecFetcher.fetcher = nil

    @orig_arch = RbConfig::CONFIG['arch']

    if win_platform?
      util_set_arch 'i386-mswin32'
    else
      util_set_arch 'i686-darwin8.10.1'
    end

    @orig_hooks = {}
    %w[post_install_hooks done_installing_hooks post_uninstall_hooks pre_uninstall_hooks pre_install_hooks pre_reset_hooks post_reset_hooks post_build_hooks].each do |name|
      @orig_hooks[name] = Gem.send(name).dup
    end

    @marshal_version = "#{Marshal::MAJOR_VERSION}.#{Marshal::MINOR_VERSION}"
    @orig_LOADED_FEATURES = $LOADED_FEATURES.dup
  end

  ##
  # #teardown restores the process to its original state and removes the
  # tempdir

  def teardown
    $LOAD_PATH.replace @orig_LOAD_PATH if @orig_LOAD_PATH
    if @orig_LOADED_FEATURES
      if @orig_LOAD_PATH
        paths = @orig_LOAD_PATH.map {|path| File.join(File.expand_path(path), "/")}
        ($LOADED_FEATURES - @orig_LOADED_FEATURES).each do |feat|
          unless paths.any? {|path| feat.start_with?(path)}
            $LOADED_FEATURES.delete(feat)
          end
        end
      else
        $LOADED_FEATURES.replace @orig_LOADED_FEATURES
      end
    end

    RbConfig::CONFIG['arch'] = @orig_arch

    if defined? Gem::RemoteFetcher
      Gem::RemoteFetcher.fetcher = nil
    end

    Dir.chdir @current_dir

    FileUtils.rm_rf @tempdir

    ENV.replace(@orig_env)

    Gem.ruby = @orig_ruby if @orig_ruby

    if Gem.java_platform?
      RbConfig::CONFIG['default_gem_home'] = @orig_default_gem_home
    else
      Gem.instance_variable_set :@default_dir, nil
    end

    Gem::Specification._clear_load_cache
    Gem::Specification.unresolved_deps.clear
    Gem::refresh

    @orig_hooks.each do |name, hooks|
      Gem.send(name).replace hooks
    end

    @back_ui.close
  end

  def common_installer_setup
    common_installer_teardown

    Gem.post_build do |installer|
      @post_build_hook_arg = installer
      true
    end

    Gem.post_install do |installer|
      @post_install_hook_arg = installer
    end

    Gem.post_uninstall do |uninstaller|
      @post_uninstall_hook_arg = uninstaller
    end

    Gem.pre_install do |installer|
      @pre_install_hook_arg = installer
      true
    end

    Gem.pre_uninstall do |uninstaller|
      @pre_uninstall_hook_arg = uninstaller
    end
  end

  def common_installer_teardown
    Gem.post_build_hooks.clear
    Gem.post_install_hooks.clear
    Gem.done_installing_hooks.clear
    Gem.post_reset_hooks.clear
    Gem.post_uninstall_hooks.clear
    Gem.pre_install_hooks.clear
    Gem.pre_reset_hooks.clear
    Gem.pre_uninstall_hooks.clear
  end

  ##
  # A git_gem is used with a gem dependencies file.  The gem created here
  # has no files, just a gem specification for the given +name+ and +version+.
  #
  # Yields the +specification+ to the block, if given

  def git_gem(name = 'a', version = 1)
    have_git?

    directory = File.join 'git', name
    directory = File.expand_path directory

    git_spec = Gem::Specification.new name, version do |specification|
      yield specification if block_given?
    end

    FileUtils.mkdir_p directory

    gemspec = "#{name}.gemspec"

    File.open File.join(directory, gemspec), 'w' do |io|
      io.write git_spec.to_ruby
    end

    head = nil

    Dir.chdir directory do
      unless File.exist? '.git'
        system @git, 'init', '--quiet'
        system @git, 'config', 'user.name',  'RubyGems Tests'
        system @git, 'config', 'user.email', 'rubygems@example'
      end

      system @git, 'add', gemspec
      system @git, 'commit', '-a', '-m', 'a non-empty commit message', '--quiet'
      head = Gem::Util.popen(@git, 'rev-parse', 'master').strip
    end

    return name, git_spec.version, directory, head
  end

  ##
  # Skips this test unless you have a git executable

  def have_git?
    return if in_path? @git

    skip 'cannot find git executable, use GIT environment variable to set'
  end

  def in_path?(executable) # :nodoc:
    return true if %r%\A([A-Z]:|/)% =~ executable and File.exist? executable

    ENV['PATH'].split(File::PATH_SEPARATOR).any? do |directory|
      File.exist? File.join directory, executable
    end
  end

  ##
  # Builds and installs the Gem::Specification +spec+

  def install_gem(spec, options = {})
    require 'rubygems/installer'

    gem = File.join @tempdir, "gems", "#{spec.full_name}.gem"

    unless File.exist? gem
      use_ui Gem::MockGemUi.new do
        Dir.chdir @tempdir do
          Gem::Package.build spec
        end
      end

      gem = File.join(@tempdir, File.basename(spec.cache_file)).tap(&Gem::UNTAINT)
    end

    Gem::Installer.at(gem, options.merge({:wrappers => true})).install
  end

  ##
  # Builds and installs the Gem::Specification +spec+ into the user dir

  def install_gem_user(spec)
    install_gem spec, :user_install => true
  end

  ##
  # Uninstalls the Gem::Specification +spec+
  def uninstall_gem(spec)
    require 'rubygems/uninstaller'

    Class.new(Gem::Uninstaller) do
      def ask_if_ok(spec)
        true
      end
    end.new(spec.name, :executables => true, :user_install => true).uninstall
  end

  ##
  # Enables pretty-print for all tests

  def mu_pp(obj)
    s = String.new
    s = PP.pp obj, s
    s = s.force_encoding(Encoding.default_external)
    s.chomp
  end

  ##
  # Reads a Marshal file at +path+

  def read_cache(path)
    File.open path.dup.tap(&Gem::UNTAINT), 'rb' do |io|
      Marshal.load io.read
    end
  end

  ##
  # Reads a binary file at +path+

  def read_binary(path)
    Gem.read_binary path
  end

  ##
  # Writes a binary file to +path+ which is relative to +@gemhome+

  def write_file(path)
    path = File.join @gemhome, path unless Pathname.new(path).absolute?
    dir = File.dirname path
    FileUtils.mkdir_p dir unless File.directory? dir

    File.open path, 'wb' do |io|
      yield io if block_given?
    end

    path
  end

  def all_spec_names
    Gem::Specification.map(&:full_name)
  end

  ##
  # Creates a Gem::Specification with a minimum of extra work.  +name+ and
  # +version+ are the gem's name and version,  platform, author, email,
  # homepage, summary and description are defaulted.  The specification is
  # yielded for customization.
  #
  # The gem is added to the installed gems in +@gemhome+ and the runtime.
  #
  # Use this with #write_file to build an installed gem.

  def quick_gem(name, version='2')
    require 'rubygems/specification'

    spec = Gem::Specification.new do |s|
      s.platform    = Gem::Platform::RUBY
      s.name        = name
      s.version     = version
      s.author      = 'A User'
      s.email       = 'example@example.com'
      s.homepage    = 'http://example.com'
      s.summary     = "this is a summary"
      s.description = "This is a test description"

      yield(s) if block_given?
    end

    Gem::Specification.map # HACK: force specs to (re-)load before we write

    written_path = write_file spec.spec_file do |io|
      io.write spec.to_ruby_for_cache
    end

    spec.loaded_from = written_path

    Gem::Specification.reset

    return spec
  end

  ##
  # Builds a gem from +spec+ and places it in <tt>File.join @gemhome,
  # 'cache'</tt>.  Automatically creates files based on +spec.files+

  def util_build_gem(spec)
    dir = spec.gem_dir
    FileUtils.mkdir_p dir

    Dir.chdir dir do
      spec.files.each do |file|
        next if File.exist? file
        FileUtils.mkdir_p File.dirname(file)

        File.open file, 'w' do |fp|
          fp.puts "# #{file}"
        end
      end

      use_ui Gem::MockGemUi.new do
        Gem::Package.build spec
      end

      cache = spec.cache_file
      FileUtils.mv File.basename(cache), cache
    end
  end

  def util_remove_gem(spec)
    FileUtils.rm_rf spec.cache_file
    FileUtils.rm_rf spec.spec_file
  end

  ##
  # Removes all installed gems from +@gemhome+.

  def util_clear_gems
    FileUtils.rm_rf File.join(@gemhome, "gems")
    FileUtils.mkdir File.join(@gemhome, "gems")
    FileUtils.rm_rf File.join(@gemhome, "specifications")
    FileUtils.mkdir File.join(@gemhome, "specifications")
    Gem::Specification.reset
  end

  ##
  # Install the provided specs

  def install_specs(*specs)
    specs.each do |spec|
      Gem::Installer.for_spec(spec).install
    end

    Gem.searcher = nil
  end

  ##
  # Installs the provided default specs including writing the spec file

  def install_default_gems(*specs)
    install_default_specs(*specs)

    specs.each do |spec|
      File.open spec.loaded_from, 'w' do |io|
        io.write spec.to_ruby_for_cache
      end
    end
  end

  ##
  # Install the provided default specs

  def install_default_specs(*specs)
    specs.each do |spec|
      installer = Gem::Installer.for_spec(spec, :install_as_default => true)
      installer.install
      Gem.register_default_spec(spec)
    end
  end

  def loaded_spec_names
    Gem.loaded_specs.values.map(&:full_name).sort
  end

  def unresolved_names
    Gem::Specification.unresolved_deps.values.map(&:to_s).sort
  end

  def save_loaded_features
    old_loaded_features = $LOADED_FEATURES.dup
    yield
  ensure
    prefix = File.dirname(__FILE__) + "/"
    new_features = ($LOADED_FEATURES - old_loaded_features)
    old_loaded_features.concat(new_features.select {|f| f.rindex(prefix, 0)})
    $LOADED_FEATURES.replace old_loaded_features
  end

  def new_default_spec(name, version, deps = nil, *files)
    spec = util_spec name, version, deps

    spec.loaded_from = File.join(@default_spec_dir, spec.spec_name)
    spec.files = files

    lib_dir = File.join(@tempdir, "default_gems", "lib")
    lib_dir.instance_variable_set(:@gem_prelude_index, lib_dir)
    $LOAD_PATH.unshift(lib_dir)
    files.each do |file|
      rb_path = File.join(lib_dir, file)
      FileUtils.mkdir_p(File.dirname(rb_path))
      File.open(rb_path, "w") do |rb|
        rb << "# #{file}"
      end
    end

    spec
  end

  ##
  # Creates a spec with +name+, +version+.  +deps+ can specify the dependency
  # or a +block+ can be given for full customization of the specification.

  def util_spec(name, version = 2, deps = nil, *files) # :yields: specification
    raise "deps or block, not both" if deps and block_given?

    spec = Gem::Specification.new do |s|
      s.platform    = Gem::Platform::RUBY
      s.name        = name
      s.version     = version
      s.author      = 'A User'
      s.email       = 'example@example.com'
      s.homepage    = 'http://example.com'
      s.summary     = "this is a summary"
      s.description = "This is a test description"

      s.files.push(*files) unless files.empty?

      yield s if block_given?
    end

    if deps
      # Since Hash#each is unordered in 1.8, sort the keys and iterate that
      # way so the tests are deterministic on all implementations.
      deps.keys.sort.each do |n|
        spec.add_dependency n, (deps[n] || '>= 0')
      end
    end

    unless files.empty?
      write_file spec.spec_file do |io|
        io.write spec.to_ruby_for_cache
      end

      util_build_gem spec

      cache_file = File.join @tempdir, 'gems', "#{spec.full_name}.gem"
      FileUtils.mkdir_p File.dirname cache_file
      FileUtils.mv spec.cache_file, cache_file
      FileUtils.rm spec.spec_file
    end

    return spec
  end

  ##
  # Creates a gem with +name+, +version+ and +deps+.  The specification will
  # be yielded before gem creation for customization.  The gem will be placed
  # in <tt>File.join @tempdir, 'gems'</tt>.  The specification and .gem file
  # location are returned.

  def util_gem(name, version, deps = nil, &block)
    if deps
      block = proc do |s|
        # Since Hash#each is unordered in 1.8, sort
        # the keys and iterate that way so the tests are
        # deterministic on all implementations.
        deps.keys.sort.each do |n|
          s.add_dependency n, (deps[n] || '>= 0')
        end
      end
    end

    spec = quick_gem(name, version, &block)

    util_build_gem spec

    cache_file = File.join @tempdir, 'gems', "#{spec.original_name}.gem"
    FileUtils.mkdir_p File.dirname cache_file
    FileUtils.mv spec.cache_file, cache_file
    FileUtils.rm spec.spec_file

    spec.loaded_from = nil

    [spec, cache_file]
  end

  ##
  # Gzips +data+.

  def util_gzip(data)
    out = StringIO.new

    Zlib::GzipWriter.wrap out do |io|
      io.write data
    end

    out.string
  end

  ##
  # Creates several default gems which all have a lib/code.rb file.  The gems
  # are not installed but are available in the cache dir.
  #
  # +@a1+:: gem a version 1, this is the best-described gem.
  # +@a2+:: gem a version 2
  # +@a3a:: gem a version 3.a
  # +@a_evil9+:: gem a_evil version 9, use this to ensure similarly-named gems
  #              don't collide with a.
  # +@b2+:: gem b version 2
  # +@c1_2+:: gem c version 1.2
  # +@pl1+:: gem pl version 1, this gem has a legacy platform of i386-linux.
  #
  # Additional +prerelease+ gems may also be created:
  #
  # +@a2_pre+:: gem a version 2.a
  # TODO: nuke this and fix tests. this should speed up a lot

  def util_make_gems(prerelease = false)
    @a1 = quick_gem 'a', '1' do |s|
      s.files = %w[lib/code.rb]
      s.require_paths = %w[lib]
      s.date = Gem::Specification::TODAY - 86400
      s.homepage = 'http://a.example.com'
      s.email = %w[example@example.com example2@example.com]
      s.authors = %w[Example Example2]
      s.description = <<-DESC
This line is really, really long.  So long, in fact, that it is more than eighty characters long!  The purpose of this line is for testing wrapping behavior because sometimes people don't wrap their text to eighty characters.  Without the wrapping, the text might not look good in the RSS feed.

Also, a list:
  * An entry that\'s actually kind of sort
  * an entry that\'s really long, which will probably get wrapped funny.  That's ok, somebody wasn't thinking straight when they made it more than eighty characters.
      DESC
    end

    init = proc do |s|
      s.files = %w[lib/code.rb]
      s.require_paths = %w[lib]
    end

    @a2      = quick_gem('a', '2',      &init)
    @a3a     = quick_gem('a', '3.a',    &init)
    @a_evil9 = quick_gem('a_evil', '9', &init)
    @b2      = quick_gem('b', '2',      &init)
    @c1_2    = quick_gem('c', '1.2',    &init)
    @x       = quick_gem('x', '1',      &init)
    @dep_x   = quick_gem('dep_x', '1') do |s|
      s.files = %w[lib/code.rb]
      s.require_paths = %w[lib]
      s.add_dependency 'x', '>= 1'
    end

    @pl1 = quick_gem 'pl', '1' do |s| # l for legacy
      s.files = %w[lib/code.rb]
      s.require_paths = %w[lib]
      s.platform = Gem::Platform.new 'i386-linux'
      s.instance_variable_set :@original_platform, 'i386-linux'
    end

    if prerelease
      @a2_pre = quick_gem('a', '2.a', &init)
      write_file File.join(*%W[gems #{@a2_pre.original_name} lib code.rb])
      util_build_gem @a2_pre
    end

    write_file File.join(*%W[gems #{@a1.original_name}      lib code.rb])
    write_file File.join(*%W[gems #{@a2.original_name}      lib code.rb])
    write_file File.join(*%W[gems #{@a3a.original_name}     lib code.rb])
    write_file File.join(*%W[gems #{@a_evil9.original_name} lib code.rb])
    write_file File.join(*%W[gems #{@b2.original_name}      lib code.rb])
    write_file File.join(*%W[gems #{@c1_2.original_name}    lib code.rb])
    write_file File.join(*%W[gems #{@pl1.original_name}     lib code.rb])
    write_file File.join(*%W[gems #{@x.original_name}       lib code.rb])
    write_file File.join(*%W[gems #{@dep_x.original_name}   lib code.rb])

    [@a1, @a2, @a3a, @a_evil9, @b2, @c1_2, @pl1, @x, @dep_x].each do |spec|
      util_build_gem spec
    end

    FileUtils.rm_r File.join(@gemhome, "gems", @pl1.original_name)
  end

  ##
  # Set the platform to +arch+

  def util_set_arch(arch)
    RbConfig::CONFIG['arch'] = arch
    platform = Gem::Platform.new arch

    Gem.instance_variable_set :@platforms, nil
    Gem::Platform.instance_variable_set :@local, nil

    yield if block_given?

    platform
  end

  ##
  # Add +spec+ to +@fetcher+ serving the data in the file +path+.
  # +repo+ indicates which repo to make +spec+ appear to be in.

  def add_to_fetcher(spec, path=nil, repo=@gem_repo)
    path ||= spec.cache_file
    @fetcher.data["#{@gem_repo}gems/#{spec.file_name}"] = read_binary(path)
  end

  ##
  # Sets up Gem::SpecFetcher to return information from the gems in +specs+.

  def util_setup_spec_fetcher(*specs)
    all_specs = Gem::Specification.to_a + specs
    Gem::Specification._resort! all_specs

    spec_fetcher = Gem::SpecFetcher.fetcher

    prerelease, all = all_specs.partition { |spec| spec.version.prerelease?  }
    latest = Gem::Specification._latest_specs all_specs

    spec_fetcher.specs[@uri] = []
    all.each do |spec|
      spec_fetcher.specs[@uri] << spec.name_tuple
    end

    spec_fetcher.latest_specs[@uri] = []
    latest.each do |spec|
      spec_fetcher.latest_specs[@uri] << spec.name_tuple
    end

    spec_fetcher.prerelease_specs[@uri] = []
    prerelease.each do |spec|
      spec_fetcher.prerelease_specs[@uri] << spec.name_tuple
    end

    # HACK for test_download_to_cache
    unless Gem::RemoteFetcher === @fetcher
      v = Gem.marshal_version

      specs = all.map { |spec| spec.name_tuple }
      s_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic specs

      latest_specs = latest.map do |spec|
        spec.name_tuple
      end

      l_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic latest_specs

      prerelease_specs = prerelease.map { |spec| spec.name_tuple }
      p_zip = util_gzip Marshal.dump Gem::NameTuple.to_basic prerelease_specs

      @fetcher.data["#{@gem_repo}specs.#{v}.gz"]            = s_zip
      @fetcher.data["#{@gem_repo}latest_specs.#{v}.gz"]     = l_zip
      @fetcher.data["#{@gem_repo}prerelease_specs.#{v}.gz"] = p_zip

      v = Gem.marshal_version

      all_specs.each do |spec|
        path = "#{@gem_repo}quick/Marshal.#{v}/#{spec.original_name}.gemspec.rz"
        data = Marshal.dump spec
        data_deflate = Zlib::Deflate.deflate data
        @fetcher.data[path] = data_deflate
      end
    end

    nil # force errors
  end

  ##
  # Deflates +data+

  def util_zip(data)
    Zlib::Deflate.deflate data
  end

  def util_set_RUBY_VERSION(version, patchlevel = nil, revision = nil, description = nil, engine = "ruby", engine_version = nil)
    if Gem.instance_variables.include? :@ruby_version
      Gem.send :remove_instance_variable, :@ruby_version
    end

    @RUBY_VERSION        = RUBY_VERSION
    @RUBY_PATCHLEVEL     = RUBY_PATCHLEVEL     if defined?(RUBY_PATCHLEVEL)
    @RUBY_REVISION       = RUBY_REVISION       if defined?(RUBY_REVISION)
    @RUBY_DESCRIPTION    = RUBY_DESCRIPTION    if defined?(RUBY_DESCRIPTION)
    @RUBY_ENGINE         = RUBY_ENGINE
    @RUBY_ENGINE_VERSION = RUBY_ENGINE_VERSION if defined?(RUBY_ENGINE_VERSION)

    util_clear_RUBY_VERSION

    Object.const_set :RUBY_VERSION,        version
    Object.const_set :RUBY_PATCHLEVEL,     patchlevel     if patchlevel
    Object.const_set :RUBY_REVISION,       revision       if revision
    Object.const_set :RUBY_DESCRIPTION,    description    if description
    Object.const_set :RUBY_ENGINE,         engine
    Object.const_set :RUBY_ENGINE_VERSION, engine_version if engine_version
  end

  def util_restore_RUBY_VERSION
    util_clear_RUBY_VERSION

    Object.const_set :RUBY_VERSION,        @RUBY_VERSION
    Object.const_set :RUBY_PATCHLEVEL,     @RUBY_PATCHLEVEL  if
      defined?(@RUBY_PATCHLEVEL)
    Object.const_set :RUBY_REVISION,       @RUBY_REVISION    if
      defined?(@RUBY_REVISION)
    Object.const_set :RUBY_DESCRIPTION,    @RUBY_DESCRIPTION if
      defined?(@RUBY_DESCRIPTION)
    Object.const_set :RUBY_ENGINE,         @RUBY_ENGINE
    Object.const_set :RUBY_ENGINE_VERSION, @RUBY_ENGINE_VERSION if
      defined?(@RUBY_ENGINE_VERSION)
  end

  def util_clear_RUBY_VERSION
    Object.send :remove_const, :RUBY_VERSION
    Object.send :remove_const, :RUBY_PATCHLEVEL     if defined?(RUBY_PATCHLEVEL)
    Object.send :remove_const, :RUBY_REVISION       if defined?(RUBY_REVISION)
    Object.send :remove_const, :RUBY_DESCRIPTION    if defined?(RUBY_DESCRIPTION)
    Object.send :remove_const, :RUBY_ENGINE
    Object.send :remove_const, :RUBY_ENGINE_VERSION if defined?(RUBY_ENGINE_VERSION)
  end

  ##
  # Is this test being run on a Windows platform?

  def self.win_platform?
    Gem.win_platform?
  end

  ##
  # Is this test being run on a Windows platform?

  def win_platform?
    Gem.win_platform?
  end

  ##
  # Is this test being run on a Java platform?

  def self.java_platform?
    Gem.java_platform?
  end

  ##
  # Is this test being run on a Java platform?

  def java_platform?
    Gem.java_platform?
  end

  ##
  # Returns whether or not we're on a version of Ruby built with VC++ (or
  # Borland) versus Cygwin, Mingw, etc.

  def self.vc_windows?
    RUBY_PLATFORM.match('mswin')
  end

  ##
  # Returns whether or not we're on a version of Ruby built with VC++ (or
  # Borland) versus Cygwin, Mingw, etc.

  def vc_windows?
    RUBY_PLATFORM.match('mswin')
  end

  ##
  # Returns the make command for the current platform. For versions of Ruby
  # built on MS Windows with VC++ or Borland it will return 'nmake'. On all
  # other platforms, including Cygwin, it will return 'make'.

  def self.make_command
    ENV["make"] || ENV["MAKE"] || (vc_windows? ? 'nmake' : 'make')
  end

  ##
  # Returns the make command for the current platform. For versions of Ruby
  # built on MS Windows with VC++ or Borland it will return 'nmake'. On all
  # other platforms, including Cygwin, it will return 'make'.

  def make_command
    ENV["make"] || ENV["MAKE"] || (vc_windows? ? 'nmake' : 'make')
  end

  ##
  # Returns whether or not the nmake command could be found.

  def nmake_found?
    system('nmake /? 1>NUL 2>&1')
  end

  # In case we're building docs in a background process, this method waits for
  # that process to exit (or if it's already been reaped, or never happened,
  # swallows the Errno::ECHILD error).
  def wait_for_child_process_to_exit
    Process.wait if Process.respond_to?(:fork)
  rescue Errno::ECHILD
  end

  ##
  # Allows tests to use a random (but controlled) port number instead of
  # a hardcoded one. This helps CI tools when running parallels builds on
  # the same builder slave.

  def self.process_based_port
    @@process_based_port ||= 8000 + $$ % 1000
  end

  ##
  # See ::process_based_port

  def process_based_port
    self.class.process_based_port
  end

  ##
  # Allows the proper version of +rake+ to be used for the test.

  def build_rake_in(good=true)
    gem_ruby = Gem.ruby
    Gem.ruby = @@ruby
    env_rake = ENV["rake"]
    rake = (good ? @@good_rake : @@bad_rake)
    ENV["rake"] = rake
    yield rake
  ensure
    Gem.ruby = gem_ruby
    if env_rake
      ENV["rake"] = env_rake
    else
      ENV.delete("rake")
    end
  end

  ##
  # Finds the path to the Ruby executable

  def self.rubybin
    ruby = ENV["RUBY"]
    return ruby if ruby
    ruby = "ruby"
    rubyexe = "#{ruby}.exe"

    3.times do
      if File.exist? ruby and File.executable? ruby and !File.directory? ruby
        return File.expand_path(ruby)
      end
      if File.exist? rubyexe and File.executable? rubyexe
        return File.expand_path(rubyexe)
      end
      ruby = File.join("..", ruby)
    end

    begin
      require "rbconfig"
      File.join(RbConfig::CONFIG["bindir"],
                RbConfig::CONFIG["ruby_install_name"] +
                RbConfig::CONFIG["EXEEXT"])
    rescue LoadError
      "ruby"
    end
  end

  def with_clean_path_to_ruby
    orig_ruby = Gem.ruby

    Gem.instance_variable_set :@ruby, nil

    yield
  ensure
    Gem.instance_variable_set :@ruby, orig_ruby
  end

  class << self

    # :nodoc:
    ##
    # Return the join path, with escaping backticks, dollars, and
    # double-quotes.  Unlike `shellescape`, equal-sign is not escaped.
    private

    def escape_path(*path)
      path = File.join(*path)
      if %r'\A[-+:/=@,.\w]+\z' =~ path
        path
      else
        "\"#{path.gsub(/[`$"]/, '\\&')}\""
      end
    end

  end

  @@ruby = rubybin
  @@good_rake = "#{rubybin} #{escape_path(TEST_PATH, 'good_rake.rb')}"
  @@bad_rake = "#{rubybin} #{escape_path(TEST_PATH, 'bad_rake.rb')}"

  ##
  # Construct a new Gem::Dependency.

  def dep(name, *requirements)
    Gem::Dependency.new name, *requirements
  end

  ##
  # Constructs a Gem::Resolver::DependencyRequest from a
  # Gem::Dependency +dep+, a +from_name+ and +from_version+ requesting the
  # dependency and a +parent+ DependencyRequest

  def dependency_request(dep, from_name, from_version, parent = nil)
    remote = Gem::Source.new @uri

    unless parent
      parent_dep = dep from_name, from_version
      parent = Gem::Resolver::DependencyRequest.new parent_dep, nil
    end

    spec = Gem::Resolver::IndexSpecification.new \
      nil, from_name, from_version, remote, Gem::Platform::RUBY
    activation = Gem::Resolver::ActivationRequest.new spec, parent

    Gem::Resolver::DependencyRequest.new dep, activation
  end

  ##
  # Constructs a new Gem::Requirement.

  def req(*requirements)
    return requirements.first if Gem::Requirement === requirements.first
    Gem::Requirement.create requirements
  end

  ##
  # Constructs a new Gem::Specification.

  def spec(name, version, &block)
    Gem::Specification.new name, v(version), &block
  end

  ##
  # Creates a SpecFetcher pre-filled with the gems or specs defined in the
  # block.
  #
  # Yields a +fetcher+ object that responds to +spec+ and +gem+.  +spec+ adds
  # a specification to the SpecFetcher while +gem+ adds both a specification
  # and the gem data to the RemoteFetcher so the built gem can be downloaded.
  #
  # If only the a-3 gem is supposed to be downloaded you can save setup
  # time by creating only specs for the other versions:
  #
  #   spec_fetcher do |fetcher|
  #     fetcher.spec 'a', 1
  #     fetcher.spec 'a', 2, 'b' => 3 # dependency on b = 3
  #     fetcher.gem 'a', 3 do |spec|
  #       # spec is a Gem::Specification
  #       # ...
  #     end
  #   end

  def spec_fetcher(repository = @gem_repo)
    Gem::TestCase::SpecFetcherSetup.declare self, repository do |spec_fetcher_setup|
      yield spec_fetcher_setup if block_given?
    end
  end

  ##
  # Construct a new Gem::Version.

  def v(string)
    Gem::Version.create string
  end

  ##
  # A vendor_gem is used with a gem dependencies file.  The gem created here
  # has no files, just a gem specification for the given +name+ and +version+.
  #
  # Yields the +specification+ to the block, if given

  def vendor_gem(name = 'a', version = 1)
    directory = File.join 'vendor', name

    FileUtils.mkdir_p directory

    save_gemspec name, version, directory
  end

  ##
  # create_gemspec creates gem specification in given +directory+ or '.'
  # for the given +name+ and +version+.
  #
  # Yields the +specification+ to the block, if given

  def save_gemspec(name = 'a', version = 1, directory = '.')
    vendor_spec = Gem::Specification.new name, version do |specification|
      yield specification if block_given?
    end

    File.open File.join(directory, "#{name}.gemspec"), 'w' do |io|
      io.write vendor_spec.to_ruby
    end

    return name, vendor_spec.version, directory
  end

  ##
  # The StaticSet is a static set of gem specifications used for testing only.
  # It is available by requiring Gem::TestCase.

  class StaticSet < Gem::Resolver::Set

    ##
    # A StaticSet ignores remote because it has a fixed set of gems.

    attr_accessor :remote

    ##
    # Creates a new StaticSet for the given +specs+

    def initialize(specs)
      super()

      @specs = specs

      @remote = true
    end

    ##
    # Adds +spec+ to this set.

    def add(spec)
      @specs << spec
    end

    ##
    # Finds +dep+ in this set.

    def find_spec(dep)
      @specs.reverse_each do |s|
        return s if dep.matches_spec? s
      end
    end

    ##
    # Finds all gems matching +dep+ in this set.

    def find_all(dep)
      @specs.find_all { |s| dep.match? s, @prerelease }
    end

    ##
    # Loads a Gem::Specification from this set which has the given +name+,
    # version +ver+, +platform+.  The +source+ is ignored.

    def load_spec(name, ver, platform, source)
      dep = Gem::Dependency.new name, ver
      spec = find_spec dep

      Gem::Specification.new spec.name, spec.version do |s|
        s.platform = spec.platform
      end
    end

    def prefetch(reqs) # :nodoc:
    end

  end

  ##
  # Loads certificate named +cert_name+ from <tt>test/rubygems/</tt>.

  def self.load_cert(cert_name)
    cert_file = cert_path cert_name

    cert = File.read cert_file

    OpenSSL::X509::Certificate.new cert
  end

  ##
  # Returns the path to the certificate named +cert_name+ from
  # <tt>test/rubygems/</tt>.

  def self.cert_path(cert_name)
    if 32 == (Time.at(2**32) rescue 32)
      cert_file = "#{TEST_PATH}/#{cert_name}_cert_32.pem"

      return cert_file if File.exist? cert_file
    end

    "#{TEST_PATH}/#{cert_name}_cert.pem"
  end

  ##
  # Loads an RSA private key named +key_name+ with +passphrase+ in <tt>test/rubygems/</tt>

  def self.load_key(key_name, passphrase = nil)
    key_file = key_path key_name

    key = File.read key_file

    OpenSSL::PKey::RSA.new key, passphrase
  end

  ##
  # Returns the path to the key named +key_name+ from <tt>test/rubygems</tt>

  def self.key_path(key_name)
    "#{TEST_PATH}/#{key_name}_key.pem"
  end

  # :stopdoc:
  # only available in RubyGems tests

  PRIVATE_KEY_PASSPHRASE = 'Foo bar'.freeze

  begin
    PRIVATE_KEY                 = load_key 'private'
    PRIVATE_KEY_PATH            = key_path 'private'

    # ENCRYPTED_PRIVATE_KEY is PRIVATE_KEY encrypted with PRIVATE_KEY_PASSPHRASE
    ENCRYPTED_PRIVATE_KEY       = load_key 'encrypted_private', PRIVATE_KEY_PASSPHRASE
    ENCRYPTED_PRIVATE_KEY_PATH  = key_path 'encrypted_private'

    PUBLIC_KEY                  = PRIVATE_KEY.public_key

    PUBLIC_CERT                 = load_cert 'public'
    PUBLIC_CERT_PATH            = cert_path 'public'
  rescue Errno::ENOENT
    PRIVATE_KEY = nil
    PUBLIC_KEY  = nil
    PUBLIC_CERT = nil
  end if defined?(OpenSSL::SSL)

end

# require dependencies that are not discoverable once GEM_HOME and GEM_PATH
# are wiped
begin
  gem 'rake'
rescue Gem::LoadError
end

begin
  require 'rake/packagetask'
rescue LoadError
end

begin
  gem 'rdoc'
  require 'rdoc'

  require 'rubygems/rdoc'
rescue LoadError, Gem::LoadError
end

begin
  gem 'builder'
  require 'builder/xchar'
rescue LoadError, Gem::LoadError
end

require 'rubygems/test_utilities'
PK8H[c/�_/share/rubygems/rubygems/source_specific_file.rbnu�[���# frozen_string_literal: true
require 'rubygems/source/specific_file'

unless Gem::Deprecate.skip
  Kernel.warn "#{Gem.location_of_caller(3).join(':')}: Warning: Requiring rubygems/source_specific_file is deprecated; please use rubygems/source/specific_file instead."
end
PK8H[��%,share/rubygems/rubygems/request/http_pool.rbnu�[���# frozen_string_literal: true
##
# A connection "pool" that only manages one connection for now.  Provides
# thread safe `checkout` and `checkin` methods.  The pool consists of one
# connection that corresponds to `http_args`.  This class is private, do not
# use it.

class Gem::Request::HTTPPool # :nodoc:

  attr_reader :cert_files, :proxy_uri

  def initialize(http_args, cert_files, proxy_uri)
    @http_args  = http_args
    @cert_files = cert_files
    @proxy_uri  = proxy_uri
    @queue      = SizedQueue.new 1
    @queue << nil
  end

  def checkout
    @queue.pop || make_connection
  end

  def checkin(connection)
    @queue.push connection
  end

  def close_all
    until @queue.empty?
      if connection = @queue.pop(true) and connection.started?
        connection.finish
      end
    end
    @queue.push(nil)
  end

  private

  def make_connection
    setup_connection Gem::Request::ConnectionPools.client.new(*@http_args)
  end

  def setup_connection(connection)
    connection.start
    connection
  end

end
PK8H[����	�	3share/rubygems/rubygems/request/connection_pools.rbnu�[���# frozen_string_literal: true

class Gem::Request::ConnectionPools # :nodoc:

  @client = Net::HTTP

  class << self

    attr_accessor :client

  end

  def initialize(proxy_uri, cert_files)
    @proxy_uri  = proxy_uri
    @cert_files = cert_files
    @pools      = {}
    @pool_mutex = Mutex.new
  end

  def pool_for(uri)
    http_args = net_http_args(uri, @proxy_uri)
    key       = http_args + [https?(uri)]
    @pool_mutex.synchronize do
      @pools[key] ||=
        if https? uri
          Gem::Request::HTTPSPool.new(http_args, @cert_files, @proxy_uri)
        else
          Gem::Request::HTTPPool.new(http_args, @cert_files, @proxy_uri)
        end
    end
  end

  def close_all
    @pools.each_value {|pool| pool.close_all}
  end

  private

  ##
  # Returns list of no_proxy entries (if any) from the environment

  def get_no_proxy_from_env
    env_no_proxy = ENV['no_proxy'] || ENV['NO_PROXY']

    return [] if env_no_proxy.nil? or env_no_proxy.empty?

    env_no_proxy.split(/\s*,\s*/)
  end

  def https?(uri)
    uri.scheme.downcase == 'https'
  end

  def no_proxy?(host, env_no_proxy)
    host = host.downcase

    env_no_proxy.any? do |pattern|
      env_no_proxy_pattern = pattern.downcase.dup

      # Remove dot in front of pattern for wildcard matching
      env_no_proxy_pattern[0] = "" if env_no_proxy_pattern[0] == "."

      host_tokens = host.split(".")
      pattern_tokens = env_no_proxy_pattern.split(".")

      intersection = (host_tokens - pattern_tokens) | (pattern_tokens - host_tokens)

      # When we do the split into tokens we miss a dot character, so add it back if we need it
      missing_dot = intersection.length > 0 ? 1 : 0
      start = intersection.join(".").size + missing_dot

      no_proxy_host = host[start..-1]

      env_no_proxy_pattern == no_proxy_host
    end
  end

  def net_http_args(uri, proxy_uri)
    hostname = uri.hostname
    net_http_args = [hostname, uri.port]

    no_proxy = get_no_proxy_from_env

    if proxy_uri and not no_proxy?(hostname, no_proxy)
      proxy_hostname = proxy_uri.respond_to?(:hostname) ? proxy_uri.hostname : proxy_uri.host
      net_http_args + [
        proxy_hostname,
        proxy_uri.port,
        Gem::UriFormatter.new(proxy_uri.user).unescape,
        Gem::UriFormatter.new(proxy_uri.password).unescape,
      ]
    elsif no_proxy? hostname, no_proxy
      net_http_args + [nil, nil]
    else
      net_http_args
    end
  end

end
PK9H[��M���-share/rubygems/rubygems/request/https_pool.rbnu�[���# frozen_string_literal: true
class Gem::Request::HTTPSPool < Gem::Request::HTTPPool # :nodoc:

  private

  def setup_connection(connection)
    Gem::Request.configure_connection_for_https(connection, @cert_files)
    super
  end

end
PK9H[W�t��&share/rubygems/rubygems/source/lock.rbnu�[���# frozen_string_literal: true
##
# A Lock source wraps an installed gem's source and sorts before other sources
# during dependency resolution.  This allows RubyGems to prefer gems from
# dependency lock files.

class Gem::Source::Lock < Gem::Source

  ##
  # The wrapped Gem::Source

  attr_reader :wrapped

  ##
  # Creates a new Lock source that wraps +source+ and moves it earlier in the
  # sort list.

  def initialize(source)
    @wrapped = source
  end

  def <=>(other) # :nodoc:
    case other
    when Gem::Source::Lock then
      @wrapped <=> other.wrapped
    when Gem::Source then
      1
    else
      nil
    end
  end

  def ==(other) # :nodoc:
    0 == (self <=> other)
  end

  def hash # :nodoc:
    @wrapped.hash ^ 3
  end

  ##
  # Delegates to the wrapped source's fetch_spec method.

  def fetch_spec(name_tuple)
    @wrapped.fetch_spec name_tuple
  end

  def uri # :nodoc:
    @wrapped.uri
  end

end
PK9H[]]a�EE%share/rubygems/rubygems/source/git.rbnu�[���# frozen_string_literal: true
require 'rubygems/util'

##
# A git gem for use in a gem dependencies file.
#
# Example:
#
#   source =
#     Gem::Source::Git.new 'rake', 'git@example:rake.git', 'rake-10.1.0', false
#
#   source.specs

class Gem::Source::Git < Gem::Source

  ##
  # The name of the gem created by this git gem.

  attr_reader :name

  ##
  # The commit reference used for checking out this git gem.

  attr_reader :reference

  ##
  # When false the cache for this repository will not be updated.

  attr_accessor :remote

  ##
  # The git repository this gem is sourced from.

  attr_reader :repository

  ##
  # The directory for cache and git gem installation

  attr_accessor :root_dir

  ##
  # Does this repository need submodules checked out too?

  attr_reader :need_submodules

  ##
  # Creates a new git gem source for a gems from loaded from +repository+ at
  # the given +reference+.  The +name+ is only used to track the repository
  # back to a gem dependencies file, it has no real significance as a git
  # repository may contain multiple gems.  If +submodules+ is true, submodules
  # will be checked out when the gem is installed.

  def initialize(name, repository, reference, submodules = false)
    super repository

    @name            = name
    @repository      = repository
    @reference       = reference
    @need_submodules = submodules

    @remote   = true
    @root_dir = Gem.dir
    @git      = ENV['git'] || 'git'
  end

  def <=>(other)
    case other
    when Gem::Source::Git then
      0
    when Gem::Source::Vendor,
         Gem::Source::Lock then
      -1
    when Gem::Source then
      1
    else
      nil
    end
  end

  def ==(other) # :nodoc:
    super and
      @name            == other.name and
      @repository      == other.repository and
      @reference       == other.reference and
      @need_submodules == other.need_submodules
  end

  ##
  # Checks out the files for the repository into the install_dir.

  def checkout # :nodoc:
    cache

    return false unless File.exist? repo_cache_dir

    unless File.exist? install_dir
      system @git, 'clone', '--quiet', '--no-checkout',
             repo_cache_dir, install_dir
    end

    Dir.chdir install_dir do
      system @git, 'fetch', '--quiet', '--force', '--tags', install_dir

      success = system @git, 'reset', '--quiet', '--hard', rev_parse

      success &&=
        Gem::Util.silent_system @git, 'submodule', 'update',
               '--quiet', '--init', '--recursive' if @need_submodules

      success
    end
  end

  ##
  # Creates a local cache repository for the git gem.

  def cache # :nodoc:
    return unless @remote

    if File.exist? repo_cache_dir
      Dir.chdir repo_cache_dir do
        system @git, 'fetch', '--quiet', '--force', '--tags',
               @repository, 'refs/heads/*:refs/heads/*'
      end
    else
      system @git, 'clone', '--quiet', '--bare', '--no-hardlinks',
             @repository, repo_cache_dir
    end
  end

  ##
  # Directory where git gems get unpacked and so-forth.

  def base_dir # :nodoc:
    File.join @root_dir, 'bundler'
  end

  ##
  # A short reference for use in git gem directories

  def dir_shortref # :nodoc:
    rev_parse[0..11]
  end

  ##
  # Nothing to download for git gems

  def download(full_spec, path) # :nodoc:
  end

  ##
  # The directory where the git gem will be installed.

  def install_dir # :nodoc:
    return unless File.exist? repo_cache_dir

    File.join base_dir, 'gems', "#{@name}-#{dir_shortref}"
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Git: ', ']' do
      q.breakable
      q.text @repository

      q.breakable
      q.text @reference
    end
  end

  ##
  # The directory where the git gem's repository will be cached.

  def repo_cache_dir # :nodoc:
    File.join @root_dir, 'cache', 'bundler', 'git', "#{@name}-#{uri_hash}"
  end

  ##
  # Converts the git reference for the repository into a commit hash.

  def rev_parse # :nodoc:
    hash = nil

    Dir.chdir repo_cache_dir do
      hash = Gem::Util.popen(@git, 'rev-parse', @reference).strip
    end

    raise Gem::Exception,
          "unable to find reference #{@reference} in #{@repository}" unless
            $?.success?

    hash
  end

  ##
  # Loads all gemspecs in the repository

  def specs
    checkout

    return [] unless install_dir

    Dir.chdir install_dir do
      Dir['{,*,*/*}.gemspec'].map do |spec_file|
        directory = File.dirname spec_file
        file      = File.basename spec_file

        Dir.chdir directory do
          spec = Gem::Specification.load file
          if spec
            spec.base_dir = base_dir

            spec.extension_dir =
              File.join base_dir, 'extensions', Gem::Platform.local.to_s,
                Gem.extension_api_version, "#{name}-#{dir_shortref}"

            spec.full_gem_path = File.dirname spec.loaded_from if spec
          end
          spec
        end
      end.compact
    end
  end

  ##
  # A hash for the git gem based on the git repository URI.

  def uri_hash # :nodoc:
    require 'digest' # required here to avoid deadlocking in Gem.activate_bin_path (because digest is a gem on 2.5+)

    normalized =
      if @repository =~ %r%^\w+://(\w+@)?%
        uri = URI(@repository).normalize.to_s.sub %r%/$%,''
        uri.sub(/\A(\w+)/) { $1.downcase }
      else
        @repository
      end

    Digest::SHA1.hexdigest normalized
  end

end
PK9H[�'�M33'share/rubygems/rubygems/source/local.rbnu�[���# frozen_string_literal: true
##
# The local source finds gems in the current directory for fulfilling
# dependencies.

class Gem::Source::Local < Gem::Source

  def initialize # :nodoc:
    @specs   = nil
    @api_uri = nil
    @uri     = nil
    @load_specs_names = {}
  end

  ##
  # Local sorts before Gem::Source and after Gem::Source::Installed

  def <=>(other)
    case other
    when Gem::Source::Installed,
         Gem::Source::Lock then
      -1
    when Gem::Source::Local then
      0
    when Gem::Source then
      1
    else
      nil
    end
  end

  def inspect # :nodoc:
    keys = @specs ? @specs.keys.sort : 'NOT LOADED'
    "#<%s specs: %p>" % [self.class, keys]
  end

  def load_specs(type) # :nodoc:
    @load_specs_names[type] ||= begin
      names = []

      @specs = {}

      Dir["*.gem"].each do |file|
        begin
          pkg = Gem::Package.new(file)
        rescue SystemCallError, Gem::Package::FormatError
          # ignore
        else
          tup = pkg.spec.name_tuple
          @specs[tup] = [File.expand_path(file), pkg]

          case type
          when :released
            unless pkg.spec.version.prerelease?
              names << pkg.spec.name_tuple
            end
          when :prerelease
            if pkg.spec.version.prerelease?
              names << pkg.spec.name_tuple
            end
          when :latest
            tup = pkg.spec.name_tuple

            cur = names.find { |x| x.name == tup.name }
            if !cur
              names << tup
            elsif cur.version < tup.version
              names.delete cur
              names << tup
            end
          else
            names << pkg.spec.name_tuple
          end
        end
      end

      names
    end
  end

  def find_gem(gem_name, version = Gem::Requirement.default, # :nodoc:
               prerelease = false)
    load_specs :complete

    found = []

    @specs.each do |n, data|
      if n.name == gem_name
        s = data[1].spec

        if version.satisfied_by?(s.version)
          if prerelease
            found << s
          elsif !s.version.prerelease? || version.prerelease?
            found << s
          end
        end
      end
    end

    found.max_by { |s| s.version }
  end

  def fetch_spec(name) # :nodoc:
    load_specs :complete

    if data = @specs[name]
      data.last.spec
    else
      raise Gem::Exception, "Unable to find spec for #{name.inspect}"
    end
  end

  def download(spec, cache_dir = nil) # :nodoc:
    load_specs :complete

    @specs.each do |name, data|
      return data[0] if data[1].spec == spec
    end

    raise Gem::Exception, "Unable to find file for '#{spec.full_name}'"
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Local gems:', ']' do
      q.breakable
      q.seplist @specs.keys do |v|
        q.text v.full_name
      end
    end
  end

end
PK9H[�r2���(share/rubygems/rubygems/source/vendor.rbnu�[���# frozen_string_literal: true
##
# This represents a vendored source that is similar to an installed gem.

class Gem::Source::Vendor < Gem::Source::Installed

  ##
  # Creates a new Vendor source for a gem that was unpacked at +path+.

  def initialize(path)
    @uri = path
  end

  def <=>(other)
    case other
    when Gem::Source::Lock then
      -1
    when Gem::Source::Vendor then
      0
    when Gem::Source then
      1
    else
      nil
    end
  end

end
PK9H[�n��+share/rubygems/rubygems/source/installed.rbnu�[���# frozen_string_literal: true
##
# Represents an installed gem.  This is used for dependency resolution.

class Gem::Source::Installed < Gem::Source

  def initialize # :nodoc:
    @uri = nil
  end

  ##
  # Installed sources sort before all other sources

  def <=>(other)
    case other
    when Gem::Source::Git,
         Gem::Source::Lock,
         Gem::Source::Vendor then
      -1
    when Gem::Source::Installed then
      0
    when Gem::Source then
      1
    else
      nil
    end
  end

  ##
  # We don't need to download an installed gem

  def download(spec, path)
    nil
  end

  def pretty_print(q) # :nodoc:
    q.text '[Installed]'
  end

end
PK9H[�`I>��/share/rubygems/rubygems/source/specific_file.rbnu�[���# frozen_string_literal: true
##
# A source representing a single .gem file.  This is used for installation of
# local gems.

class Gem::Source::SpecificFile < Gem::Source

  ##
  # The path to the gem for this specific file.

  attr_reader :path

  ##
  # Creates a new SpecificFile for the gem in +file+

  def initialize(file)
    @uri = nil
    @path = ::File.expand_path(file)

    @package = Gem::Package.new @path
    @spec = @package.spec
    @name = @spec.name_tuple
  end

  ##
  # The Gem::Specification extracted from this .gem.

  attr_reader :spec

  def load_specs(*a) # :nodoc:
    [@name]
  end

  def fetch_spec(name) # :nodoc:
    return @spec if name == @name
    raise Gem::Exception, "Unable to find '#{name}'"
    @spec
  end

  def download(spec, dir = nil) # :nodoc:
    return @path if spec == @spec
    raise Gem::Exception, "Unable to download '#{spec.full_name}'"
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[SpecificFile:', ']' do
      q.breakable
      q.text @path
    end
  end

  ##
  # Orders this source against +other+.
  #
  # If +other+ is a SpecificFile from a different gem name +nil+ is returned.
  #
  # If +other+ is a SpecificFile from the same gem name the versions are
  # compared using Gem::Version#<=>
  #
  # Otherwise Gem::Source#<=> is used.

  def <=>(other)
    case other
    when Gem::Source::SpecificFile then
      return nil if @spec.name != other.spec.name

      @spec.version <=> other.spec.version
    else
      super
    end
  end

end
PK9H[�.-��5share/rubygems/rubygems/resolver/api_specification.rbnu�[���# frozen_string_literal: true
##
# Represents a specification retrieved via the rubygems.org API.
#
# This is used to avoid loading the full Specification object when all we need
# is the name, version, and dependencies.

class Gem::Resolver::APISpecification < Gem::Resolver::Specification

  ##
  # Creates an APISpecification for the given +set+ from the rubygems.org
  # +api_data+.
  #
  # See https://guides.rubygems.org/rubygems-org-api/#misc_methods for the
  # format of the +api_data+.

  def initialize(set, api_data)
    super()

    @set = set
    @name = api_data[:name]
    @version = Gem::Version.new api_data[:number]
    @platform = Gem::Platform.new api_data[:platform]
    @original_platform = api_data[:platform]
    @dependencies = api_data[:dependencies].map do |name, ver|
      Gem::Dependency.new name, ver.split(/\s*,\s*/)
    end
  end

  def ==(other) # :nodoc:
    self.class === other and
      @set          == other.set and
      @name         == other.name and
      @version      == other.version and
      @platform     == other.platform and
      @dependencies == other.dependencies
  end

  def fetch_development_dependencies # :nodoc:
    spec = source.fetch_spec Gem::NameTuple.new @name, @version, @platform

    @dependencies = spec.dependencies
  end

  def installable_platform? # :nodoc:
    Gem::Platform.match @platform
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[APISpecification', ']' do
      q.breakable
      q.text "name: #{name}"

      q.breakable
      q.text "version: #{version}"

      q.breakable
      q.text "platform: #{platform}"

      q.breakable
      q.text 'dependencies:'
      q.breakable
      q.pp @dependencies

      q.breakable
      q.text "set uri: #{@set.dep_uri}"
    end
  end

  ##
  # Fetches a Gem::Specification for this APISpecification.

  def spec # :nodoc:
    @spec ||=
      begin
        tuple = Gem::NameTuple.new @name, @version, @platform
        source.fetch_spec tuple
      rescue Gem::RemoteFetcher::FetchError
        raise if @original_platform == @platform

        tuple = Gem::NameTuple.new @name, @version, @original_platform
        source.fetch_spec tuple
      end
  end

  def source # :nodoc:
    @set.source
  end

end
PK9H[a��(X	X	1share/rubygems/rubygems/resolver/specification.rbnu�[���# frozen_string_literal: true
##
# A Resolver::Specification contains a subset of the information
# contained in a Gem::Specification.  Only the information necessary for
# dependency resolution in the resolver is included.

class Gem::Resolver::Specification

  ##
  # The dependencies of the gem for this specification

  attr_reader :dependencies

  ##
  # The name of the gem for this specification

  attr_reader :name

  ##
  # The platform this gem works on.

  attr_reader :platform

  ##
  # The set this specification came from.

  attr_reader :set

  ##
  # The source for this specification

  attr_reader :source

  ##
  # The Gem::Specification for this Resolver::Specification.
  #
  # Implementers, note that #install updates @spec, so be sure to cache the
  # Gem::Specification in @spec when overriding.

  attr_reader :spec

  ##
  # The version of the gem for this specification.

  attr_reader :version

  ##
  # Sets default instance variables for the specification.

  def initialize
    @dependencies = nil
    @name         = nil
    @platform     = nil
    @set          = nil
    @source       = nil
    @version      = nil
  end

  ##
  # Fetches development dependencies if the source does not provide them by
  # default (see APISpecification).

  def fetch_development_dependencies # :nodoc:
  end

  ##
  # The name and version of the specification.
  #
  # Unlike Gem::Specification#full_name, the platform is not included.

  def full_name
    "#{@name}-#{@version}"
  end

  ##
  # Installs this specification using the Gem::Installer +options+.  The
  # install method yields a Gem::Installer instance, which indicates the
  # gem will be installed, or +nil+, which indicates the gem is already
  # installed.
  #
  # After installation #spec is updated to point to the just-installed
  # specification.

  def install(options = {})
    require 'rubygems/installer'

    gem = download options

    installer = Gem::Installer.at gem, options

    yield installer if block_given?

    @spec = installer.install
  end

  def download(options)
    dir = options[:install_dir] || Gem.dir

    Gem.ensure_gem_subdirectories dir

    source.download spec, dir
  end

  ##
  # Returns true if this specification is installable on this platform.

  def installable_platform?
    Gem::Platform.match spec.platform
  end

  def local? # :nodoc:
    false
  end

end
PK9H[�ڠ'��-share/rubygems/rubygems/resolver/index_set.rbnu�[���# frozen_string_literal: true
##
# The global rubygems pool represented via the traditional
# source index.

class Gem::Resolver::IndexSet < Gem::Resolver::Set

  def initialize(source = nil) # :nodoc:
    super()

    @f =
      if source
        sources = Gem::SourceList.from [source]

        Gem::SpecFetcher.new sources
      else
        Gem::SpecFetcher.fetcher
      end

    @all = Hash.new { |h,k| h[k] = [] }

    list, errors = @f.available_specs :complete

    @errors.concat errors

    list.each do |uri, specs|
      specs.each do |n|
        @all[n.name] << [uri, n]
      end
    end

    @specs = {}
  end

  ##
  # Return an array of IndexSpecification objects matching
  # DependencyRequest +req+.

  def find_all(req)
    res = []

    return res unless @remote

    name = req.dependency.name

    @all[name].each do |uri, n|
      if req.match? n, @prerelease
        res << Gem::Resolver::IndexSpecification.new(
          self, n.name, n.version, uri, n.platform)
      end
    end

    res
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[IndexSet', ']' do
      q.breakable
      q.text 'sources:'
      q.breakable
      q.pp @f.sources

      q.breakable
      q.text 'specs:'

      q.breakable

      names = @all.values.map do |tuples|
        tuples.map do |_, tuple|
          tuple.full_name
        end
      end.flatten

      q.seplist names do |name|
        q.text name
      end
    end
  end

end
PK9H[J��{$	$	6share/rubygems/rubygems/resolver/dependency_request.rbnu�[���# frozen_string_literal: true
##
# Used Internally. Wraps a Dependency object to also track which spec
# contained the Dependency.

class Gem::Resolver::DependencyRequest

  ##
  # The wrapped Gem::Dependency

  attr_reader :dependency

  ##
  # The request for this dependency.

  attr_reader :requester

  ##
  # Creates a new DependencyRequest for +dependency+ from +requester+.
  # +requester may be nil if the request came from a user.

  def initialize(dependency, requester)
    @dependency = dependency
    @requester  = requester
  end

  def ==(other) # :nodoc:
    case other
    when Gem::Dependency
      @dependency == other
    when Gem::Resolver::DependencyRequest
      @dependency == other.dependency && @requester == other.requester
    else
      false
    end
  end

  ##
  # Is this dependency a development dependency?

  def development?
    @dependency.type == :development
  end

  ##
  # Does this dependency request match +spec+?
  #
  # NOTE:  #match? only matches prerelease versions when #dependency is a
  # prerelease dependency.

  def match?(spec, allow_prerelease = false)
    @dependency.match? spec, nil, allow_prerelease
  end

  ##
  # Does this dependency request match +spec+?
  #
  # NOTE:  #matches_spec? matches prerelease versions.  See also #match?

  def matches_spec?(spec)
    @dependency.matches_spec? spec
  end

  ##
  # The name of the gem this dependency request is requesting.

  def name
    @dependency.name
  end

  def type
    @dependency.type
  end

  ##
  # Indicate that the request is for a gem explicitly requested by the user

  def explicit?
    @requester.nil?
  end

  ##
  # Indicate that the request is for a gem requested as a dependency of
  # another gem

  def implicit?
    !explicit?
  end

  ##
  # Return a String indicating who caused this request to be added (only
  # valid for implicit requests)

  def request_context
    @requester ? @requester.request : "(unknown)"
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Dependency request ', ']' do
      q.breakable
      q.text @dependency.to_s

      q.breakable
      q.text ' requested by '
      q.pp @requester
    end
  end

  ##
  # The version requirement for this dependency request

  def requirement
    @dependency.requirement
  end

  def to_s # :nodoc:
    @dependency.to_s
  end

end
PK9H[�Gbk��.share/rubygems/rubygems/resolver/vendor_set.rbnu�[���# frozen_string_literal: true
##
# A VendorSet represents gems that have been unpacked into a specific
# directory that contains a gemspec.
#
# This is used for gem dependency file support.
#
# Example:
#
#   set = Gem::Resolver::VendorSet.new
#
#   set.add_vendor_gem 'rake', 'vendor/rake'
#
# The directory vendor/rake must contain an unpacked rake gem along with a
# rake.gemspec (watching the given name).

class Gem::Resolver::VendorSet < Gem::Resolver::Set

  ##
  # The specifications for this set.

  attr_reader :specs # :nodoc:

  def initialize # :nodoc:
    super()

    @directories = {}
    @specs       = {}
  end

  ##
  # Adds a specification to the set with the given +name+ which has been
  # unpacked into the given +directory+.

  def add_vendor_gem(name, directory) # :nodoc:
    gemspec = File.join directory, "#{name}.gemspec"

    spec = Gem::Specification.load gemspec

    raise Gem::GemNotFoundException,
          "unable to find #{gemspec} for gem #{name}" unless spec

    spec.full_gem_path = File.expand_path directory

    @specs[spec.name]  = spec
    @directories[spec] = directory

    spec
  end

  ##
  # Returns an Array of VendorSpecification objects matching the
  # DependencyRequest +req+.

  def find_all(req)
    @specs.values.select do |spec|
      req.match? spec
    end.map do |spec|
      source = Gem::Source::Vendor.new @directories[spec]
      Gem::Resolver::VendorSpecification.new self, spec, source
    end
  end

  ##
  # Loads a spec with the given +name+. +version+, +platform+ and +source+ are
  # ignored.

  def load_spec(name, version, platform, source) # :nodoc:
    @specs.fetch name
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[VendorSet', ']' do
      next if @directories.empty?
      q.breakable

      dirs = @directories.map do |spec, directory|
        "#{spec.full_name}: #{directory}"
      end

      q.seplist dirs do |dir|
        q.text dir
      end
    end
  end

end
PK9H[8犍��)share/rubygems/rubygems/resolver/stats.rbnu�[���# frozen_string_literal: true
class Gem::Resolver::Stats

  def initialize
    @max_depth = 0
    @max_requirements = 0
    @requirements = 0
    @backtracking = 0
    @iterations = 0
  end

  def record_depth(stack)
    if stack.size > @max_depth
      @max_depth = stack.size
    end
  end

  def record_requirements(reqs)
    if reqs.size > @max_requirements
      @max_requirements = reqs.size
    end
  end

  def requirement!
    @requirements += 1
  end

  def backtracking!
    @backtracking += 1
  end

  def iteration!
    @iterations += 1
  end

  PATTERN = "%20s: %d\n".freeze

  def display
    $stdout.puts "=== Resolver Statistics ==="
    $stdout.printf PATTERN, "Max Depth", @max_depth
    $stdout.printf PATTERN, "Total Requirements", @requirements
    $stdout.printf PATTERN, "Max Requirements", @max_requirements
    $stdout.printf PATTERN, "Backtracking #", @backtracking
    $stdout.printf PATTERN, "Iteration #", @iterations
  end

end
PK9H[<%t��,share/rubygems/rubygems/resolver/lock_set.rbnu�[���# frozen_string_literal: true
##
# A set of gems from a gem dependencies lockfile.

class Gem::Resolver::LockSet < Gem::Resolver::Set

  attr_reader :specs # :nodoc:

  ##
  # Creates a new LockSet from the given +sources+

  def initialize(sources)
    super()

    @sources = sources.map do |source|
      Gem::Source::Lock.new source
    end

    @specs = []
  end

  ##
  # Creates a new IndexSpecification in this set using the given +name+,
  # +version+ and +platform+.
  #
  # The specification's set will be the current set, and the source will be
  # the current set's source.

  def add(name, version, platform) # :nodoc:
    version = Gem::Version.new version
    specs = [
      Gem::Resolver::LockSpecification.new(self, name, version, @sources, platform)
    ]

    @specs.concat specs

    specs
  end

  ##
  # Returns an Array of IndexSpecification objects matching the
  # DependencyRequest +req+.

  def find_all(req)
    @specs.select do |spec|
      req.match? spec
    end
  end

  ##
  # Loads a Gem::Specification with the given +name+, +version+ and
  # +platform+.  +source+ is ignored.

  def load_spec(name, version, platform, source) # :nodoc:
    dep = Gem::Dependency.new name, version

    found = @specs.find do |spec|
      dep.matches_spec? spec and spec.platform == platform
    end

    tuple = Gem::NameTuple.new found.name, found.version, found.platform

    found.source.fetch_spec tuple
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[LockSet', ']' do
      q.breakable
      q.text 'source:'

      q.breakable
      q.pp @source

      q.breakable
      q.text 'specs:'

      q.breakable
      q.pp @specs.map { |spec| spec.full_name }
    end
  end

end
PK9H[������.share/rubygems/rubygems/resolver/source_set.rbnu�[���##
# The SourceSet chooses the best available method to query a remote index.
#
# Kind off like BestSet but filters the sources for gems

class Gem::Resolver::SourceSet < Gem::Resolver::Set

  ##
  # Creates a SourceSet for the given +sources+ or Gem::sources if none are
  # specified.  +sources+ must be a Gem::SourceList.

  def initialize
    super()

    @links = {}
    @sets  = {}
  end

  def find_all(req) # :nodoc:
    if set = get_set(req.dependency.name)
      set.find_all req
    else
      []
    end
  end

  # potentially no-op
  def prefetch(reqs) # :nodoc:
    reqs.each do |req|
      if set = get_set(req.dependency.name)
        set.prefetch reqs
      end
    end
  end

  def add_source_gem(name, source)
    @links[name] = source
  end

  private

  def get_set(name)
    link = @links[name]
    @sets[link] ||= Gem::Source.new(link).dependency_resolver_set if link
  end

end
PK9H[I�y��0share/rubygems/rubygems/resolver/composed_set.rbnu�[���# frozen_string_literal: true
##
# A ComposedSet allows multiple sets to be queried like a single set.
#
# To create a composed set with any number of sets use:
#
#   Gem::Resolver.compose_sets set1, set2
#
# This method will eliminate nesting of composed sets.

class Gem::Resolver::ComposedSet < Gem::Resolver::Set

  attr_reader :sets # :nodoc:

  ##
  # Creates a new ComposedSet containing +sets+.  Use
  # Gem::Resolver::compose_sets instead.

  def initialize(*sets)
    super()

    @sets = sets
  end

  ##
  # When +allow_prerelease+ is set to +true+ prereleases gems are allowed to
  # match dependencies.

  def prerelease=(allow_prerelease)
    super

    sets.each do |set|
      set.prerelease = allow_prerelease
    end
  end

  ##
  # Sets the remote network access for all composed sets.

  def remote=(remote)
    super

    @sets.each { |set| set.remote = remote }
  end

  def errors
    @errors + @sets.map { |set| set.errors }.flatten
  end

  ##
  # Finds all specs matching +req+ in all sets.

  def find_all(req)
    @sets.map do |s|
      s.find_all req
    end.flatten
  end

  ##
  # Prefetches +reqs+ in all sets.

  def prefetch(reqs)
    @sets.each { |s| s.prefetch(reqs) }
  end

end
PK9H[���Bshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/errors.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # An error that occurred during the resolution process
  class ResolverError < StandardError; end

  # An error caused by searching for a dependency that is completely unknown,
  # i.e. has no versions available whatsoever.
  class NoSuchDependencyError < ResolverError
    # @return [Object] the dependency that could not be found
    attr_accessor :dependency

    # @return [Array<Object>] the specifications that depended upon {#dependency}
    attr_accessor :required_by

    # Initializes a new error with the given missing dependency.
    # @param [Object] dependency @see {#dependency}
    # @param [Array<Object>] required_by @see {#required_by}
    def initialize(dependency, required_by = [])
      @dependency = dependency
      @required_by = required_by
      super()
    end

    # The error message for the missing dependency, including the specifications
    # that had this dependency.
    def message
      sources = required_by.map { |r| "`#{r}`" }.join(' and ')
      message = "Unable to find a specification for `#{dependency}`"
      message += " depended upon by #{sources}" unless sources.empty?
      message
    end
  end

  # An error caused by attempting to fulfil a dependency that was circular
  #
  # @note This exception will be thrown iff a {Vertex} is added to a
  #   {DependencyGraph} that has a {DependencyGraph::Vertex#path_to?} an
  #   existing {DependencyGraph::Vertex}
  class CircularDependencyError < ResolverError
    # [Set<Object>] the dependencies responsible for causing the error
    attr_reader :dependencies

    # Initializes a new error with the given circular vertices.
    # @param [Array<DependencyGraph::Vertex>] nodes the nodes in the dependency
    #   that caused the error
    def initialize(nodes)
      super "There is a circular dependency between #{nodes.map(&:name).join(' and ')}"
      @dependencies = nodes.map(&:payload).to_set
    end
  end

  # An error caused by conflicts in version
  class VersionConflict < ResolverError
    # @return [{String => Resolution::Conflict}] the conflicts that caused
    #   resolution to fail
    attr_reader :conflicts

    # Initializes a new error with the given version conflicts.
    # @param [{String => Resolution::Conflict}] conflicts see {#conflicts}
    def initialize(conflicts)
      pairs = []
      conflicts.values.flatten.map(&:requirements).flatten.each do |conflicting|
        conflicting.each do |source, conflict_requirements|
          conflict_requirements.each do |c|
            pairs << [c, source]
          end
        end
      end

      super "Unable to satisfy the following requirements:\n\n" \
        "#{pairs.map { |r, d| "- `#{r}` required by `#{d}`" }.join("\n")}"
      @conflicts = conflicts
    end
  end
end
PK9H[#X�nnAshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/state.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # A state that a {Resolution} can be in
  # @attr [String] name the name of the current requirement
  # @attr [Array<Object>] requirements currently unsatisfied requirements
  # @attr [DependencyGraph] activated the graph of activated dependencies
  # @attr [Object] requirement the current requirement
  # @attr [Object] possibilities the possibilities to satisfy the current requirement
  # @attr [Integer] depth the depth of the resolution
  # @attr [Set<Object>] conflicts unresolved conflicts
  ResolutionState = Struct.new(
    :name,
    :requirements,
    :activated,
    :requirement,
    :possibilities,
    :depth,
    :conflicts
  )

  class ResolutionState
    # Returns an empty resolution state
    # @return [ResolutionState] an empty state
    def self.empty
      new(nil, [], DependencyGraph.new, nil, nil, 0, Set.new)
    end
  end

  # A state that encapsulates a set of {#requirements} with an {Array} of
  # possibilities
  class DependencyState < ResolutionState
    # Removes a possibility from `self`
    # @return [PossibilityState] a state with a single possibility,
    #  the possibility that was removed from `self`
    def pop_possibility_state
      PossibilityState.new(
        name,
        requirements.dup,
        activated,
        requirement,
        [possibilities.pop],
        depth + 1,
        conflicts.dup
      ).tap do |state|
        state.activated.tag(state)
      end
    end
  end

  # A state that encapsulates a single possibility to fulfill the given
  # {#requirement}
  class PossibilityState < ResolutionState
  end
end
PK9H[��M��J�JFshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/resolution.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  class Resolver
    # A specific resolution from a given {Resolver}
    class Resolution
      # A conflict that the resolution process encountered
      # @attr [Object] requirement the requirement that immediately led to the conflict
      # @attr [{String,Nil=>[Object]}] requirements the requirements that caused the conflict
      # @attr [Object, nil] existing the existing spec that was in conflict with
      #   the {#possibility}
      # @attr [Object] possibility the spec that was unable to be activated due
      #   to a conflict
      # @attr [Object] locked_requirement the relevant locking requirement.
      # @attr [Array<Array<Object>>] requirement_trees the different requirement
      #   trees that led to every requirement for the conflicting name.
      # @attr [{String=>Object}] activated_by_name the already-activated specs.
      Conflict = Struct.new(
        :requirement,
        :requirements,
        :existing,
        :possibility,
        :locked_requirement,
        :requirement_trees,
        :activated_by_name
      )

      # @return [SpecificationProvider] the provider that knows about
      #   dependencies, requirements, specifications, versions, etc.
      attr_reader :specification_provider

      # @return [UI] the UI that knows how to communicate feedback about the
      #   resolution process back to the user
      attr_reader :resolver_ui

      # @return [DependencyGraph] the base dependency graph to which
      #   dependencies should be 'locked'
      attr_reader :base

      # @return [Array] the dependencies that were explicitly required
      attr_reader :original_requested

      # Initializes a new resolution.
      # @param [SpecificationProvider] specification_provider
      #   see {#specification_provider}
      # @param [UI] resolver_ui see {#resolver_ui}
      # @param [Array] requested see {#original_requested}
      # @param [DependencyGraph] base see {#base}
      def initialize(specification_provider, resolver_ui, requested, base)
        @specification_provider = specification_provider
        @resolver_ui = resolver_ui
        @original_requested = requested
        @base = base
        @states = []
        @iteration_counter = 0
        @parents_of = Hash.new { |h, k| h[k] = [] }
      end

      # Resolves the {#original_requested} dependencies into a full dependency
      #   graph
      # @raise [ResolverError] if successful resolution is impossible
      # @return [DependencyGraph] the dependency graph of successfully resolved
      #   dependencies
      def resolve
        start_resolution

        while state
          break unless state.requirements.any? || state.requirement
          indicate_progress
          if state.respond_to?(:pop_possibility_state) # DependencyState
            debug(depth) { "Creating possibility state for #{requirement} (#{possibilities.count} remaining)" }
            state.pop_possibility_state.tap do |s|
              if s
                states.push(s)
                activated.tag(s)
              end
            end
          end
          process_topmost_state
        end

        activated.freeze
      ensure
        end_resolution
      end

      # @return [Integer] the number of resolver iterations in between calls to
      #   {#resolver_ui}'s {UI#indicate_progress} method
      attr_accessor :iteration_rate
      private :iteration_rate

      # @return [Time] the time at which resolution began
      attr_accessor :started_at
      private :started_at

      # @return [Array<ResolutionState>] the stack of states for the resolution
      attr_accessor :states
      private :states

      private

      # Sets up the resolution process
      # @return [void]
      def start_resolution
        @started_at = Time.now

        handle_missing_or_push_dependency_state(initial_state)

        debug { "Starting resolution (#{@started_at})\nUser-requested dependencies: #{original_requested}" }
        resolver_ui.before_resolution
      end

      # Ends the resolution process
      # @return [void]
      def end_resolution
        resolver_ui.after_resolution
        debug do
          "Finished resolution (#{@iteration_counter} steps) " \
          "(Took #{(ended_at = Time.now) - @started_at} seconds) (#{ended_at})"
        end
        debug { 'Unactivated: ' + Hash[activated.vertices.reject { |_n, v| v.payload }].keys.join(', ') } if state
        debug { 'Activated: ' + Hash[activated.vertices.select { |_n, v| v.payload }].keys.join(', ') } if state
      end

      require 'rubygems/resolver/molinillo/lib/molinillo/state'
      require 'rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider'

      require 'rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state'
      require 'rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider'

      include Gem::Resolver::Molinillo::Delegates::ResolutionState
      include Gem::Resolver::Molinillo::Delegates::SpecificationProvider

      # Processes the topmost available {RequirementState} on the stack
      # @return [void]
      def process_topmost_state
        if possibility
          attempt_to_activate
        else
          create_conflict if state.is_a? PossibilityState
          unwind_for_conflict until possibility && state.is_a?(DependencyState)
        end
      end

      # @return [Object] the current possibility that the resolution is trying
      #   to activate
      def possibility
        possibilities.last
      end

      # @return [RequirementState] the current state the resolution is
      #   operating upon
      def state
        states.last
      end

      # Creates the initial state for the resolution, based upon the
      # {#requested} dependencies
      # @return [DependencyState] the initial state for the resolution
      def initial_state
        graph = DependencyGraph.new.tap do |dg|
          original_requested.each { |r| dg.add_vertex(name_for(r), nil, true).tap { |v| v.explicit_requirements << r } }
          dg.tag(:initial_state)
        end

        requirements = sort_dependencies(original_requested, graph, {})
        initial_requirement = requirements.shift
        DependencyState.new(
          initial_requirement && name_for(initial_requirement),
          requirements,
          graph,
          initial_requirement,
          initial_requirement && search_for(initial_requirement),
          0,
          {}
        )
      end

      # Unwinds the states stack because a conflict has been encountered
      # @return [void]
      def unwind_for_conflict
        debug(depth) { "Unwinding for conflict: #{requirement} to #{state_index_for_unwind / 2}" }
        conflicts.tap do |c|
          sliced_states = states.slice!((state_index_for_unwind + 1)..-1)
          raise VersionConflict.new(c) unless state
          activated.rewind_to(sliced_states.first || :initial_state) if sliced_states
          state.conflicts = c
          index = states.size - 1
          @parents_of.each { |_, a| a.reject! { |i| i >= index } }
        end
      end

      # @return [Integer] The index to which the resolution should unwind in the
      #   case of conflict.
      def state_index_for_unwind
        current_requirement = requirement
        existing_requirement = requirement_for_existing_name(name)
        index = -1
        [current_requirement, existing_requirement].each do |r|
          until r.nil?
            current_state = find_state_for(r)
            if state_any?(current_state)
              current_index = states.index(current_state)
              index = current_index if current_index > index
              break
            end
            r = parent_of(r)
          end
        end

        index
      end

      # @return [Object] the requirement that led to `requirement` being added
      #   to the list of requirements.
      def parent_of(requirement)
        return unless requirement
        return unless index = @parents_of[requirement].last
        return unless parent_state = @states[index]
        parent_state.requirement
      end

      # @return [Object] the requirement that led to a version of a possibility
      #   with the given name being activated.
      def requirement_for_existing_name(name)
        return nil unless activated.vertex_named(name).payload
        states.find { |s| s.name == name }.requirement
      end

      # @return [ResolutionState] the state whose `requirement` is the given
      #   `requirement`.
      def find_state_for(requirement)
        return nil unless requirement
        states.reverse_each.find { |i| requirement == i.requirement && i.is_a?(DependencyState) }
      end

      # @return [Boolean] whether or not the given state has any possibilities
      #   left.
      def state_any?(state)
        state && state.possibilities.any?
      end

      # @return [Conflict] a {Conflict} that reflects the failure to activate
      #   the {#possibility} in conjunction with the current {#state}
      def create_conflict
        vertex = activated.vertex_named(name)
        locked_requirement = locked_requirement_named(name)

        requirements = {}
        unless vertex.explicit_requirements.empty?
          requirements[name_for_explicit_dependency_source] = vertex.explicit_requirements
        end
        requirements[name_for_locking_dependency_source] = [locked_requirement] if locked_requirement
        vertex.incoming_edges.each { |edge| (requirements[edge.origin.payload] ||= []).unshift(edge.requirement) }

        activated_by_name = {}
        activated.each { |v| activated_by_name[v.name] = v.payload if v.payload }
        conflicts[name] = Conflict.new(
          requirement,
          requirements,
          vertex.payload,
          possibility,
          locked_requirement,
          requirement_trees,
          activated_by_name
        )
      end

      # @return [Array<Array<Object>>] The different requirement
      #   trees that led to every requirement for the current spec.
      def requirement_trees
        vertex = activated.vertex_named(name)
        vertex.requirements.map { |r| requirement_tree_for(r) }
      end

      # @return [Array<Object>] the list of requirements that led to
      #   `requirement` being required.
      def requirement_tree_for(requirement)
        tree = []
        while requirement
          tree.unshift(requirement)
          requirement = parent_of(requirement)
        end
        tree
      end

      # Indicates progress roughly once every second
      # @return [void]
      def indicate_progress
        @iteration_counter += 1
        @progress_rate ||= resolver_ui.progress_rate
        if iteration_rate.nil?
          if Time.now - started_at >= @progress_rate
            self.iteration_rate = @iteration_counter
          end
        end

        if iteration_rate && (@iteration_counter % iteration_rate) == 0
          resolver_ui.indicate_progress
        end
      end

      # Calls the {#resolver_ui}'s {UI#debug} method
      # @param [Integer] depth the depth of the {#states} stack
      # @param [Proc] block a block that yields a {#to_s}
      # @return [void]
      def debug(depth = 0, &block)
        resolver_ui.debug(depth, &block)
      end

      # Attempts to activate the current {#possibility}
      # @return [void]
      def attempt_to_activate
        debug(depth) { 'Attempting to activate ' + possibility.to_s }
        existing_node = activated.vertex_named(name)
        if existing_node.payload
          debug(depth) { "Found existing spec (#{existing_node.payload})" }
          attempt_to_activate_existing_spec(existing_node)
        else
          attempt_to_activate_new_spec
        end
      end

      # Attempts to activate the current {#possibility} (given that it has
      # already been activated)
      # @return [void]
      def attempt_to_activate_existing_spec(existing_node)
        existing_spec = existing_node.payload
        if requirement_satisfied_by?(requirement, activated, existing_spec)
          new_requirements = requirements.dup
          push_state_for_requirements(new_requirements, false)
        else
          return if attempt_to_swap_possibility
          create_conflict
          debug(depth) { "Unsatisfied by existing spec (#{existing_node.payload})" }
          unwind_for_conflict
        end
      end

      # Attempts to swp the current {#possibility} with the already-activated
      # spec with the given name
      # @return [Boolean] Whether the possibility was swapped into {#activated}
      def attempt_to_swap_possibility
        activated.tag(:swap)
        vertex = activated.vertex_named(name)
        activated.set_payload(name, possibility)
        if !vertex.requirements.
           all? { |r| requirement_satisfied_by?(r, activated, possibility) } ||
            !new_spec_satisfied?
          activated.rewind_to(:swap)
          return
        end
        fixup_swapped_children(vertex)
        activate_spec
      end

      # Ensures there are no orphaned successors to the given {vertex}.
      # @param [DependencyGraph::Vertex] vertex the vertex to fix up.
      # @return [void]
      def fixup_swapped_children(vertex) # rubocop:disable Metrics/CyclomaticComplexity
        payload = vertex.payload
        deps = dependencies_for(payload).group_by(&method(:name_for))
        vertex.outgoing_edges.each do |outgoing_edge|
          requirement = outgoing_edge.requirement
          parent_index = @parents_of[requirement].last
          succ = outgoing_edge.destination
          matching_deps = Array(deps[succ.name])
          dep_matched = matching_deps.include?(requirement)

          # only push the current index when it was originally required by the
          # same named spec
          if parent_index && states[parent_index].name == name
            @parents_of[requirement].push(states.size - 1)
          end

          if matching_deps.empty? && !succ.root? && succ.predecessors.to_a == [vertex]
            debug(depth) { "Removing orphaned spec #{succ.name} after swapping #{name}" }
            succ.requirements.each { |r| @parents_of.delete(r) }

            removed_names = activated.detach_vertex_named(succ.name).map(&:name)
            requirements.delete_if do |r|
              # the only removed vertices are those with no other requirements,
              # so it's safe to delete only based upon name here
              removed_names.include?(name_for(r))
            end
          elsif !dep_matched
            debug(depth) { "Removing orphaned dependency #{requirement} after swapping #{name}" }
            # also reset if we're removing the edge, but only if its parent has
            # already been fixed up
            @parents_of[requirement].push(states.size - 1) if @parents_of[requirement].empty?

            activated.delete_edge(outgoing_edge)
            requirements.delete(requirement)
          end
        end
      end

      # Attempts to activate the current {#possibility} (given that it hasn't
      # already been activated)
      # @return [void]
      def attempt_to_activate_new_spec
        if new_spec_satisfied?
          activate_spec
        else
          create_conflict
          unwind_for_conflict
        end
      end

      # @return [Boolean] whether the current spec is satisfied as a new
      # possibility.
      def new_spec_satisfied?
        unless requirement_satisfied_by?(requirement, activated, possibility)
          debug(depth) { 'Unsatisfied by requested spec' }
          return false
        end

        locked_requirement = locked_requirement_named(name)

        locked_spec_satisfied = !locked_requirement ||
          requirement_satisfied_by?(locked_requirement, activated, possibility)
        debug(depth) { 'Unsatisfied by locked spec' } unless locked_spec_satisfied

        locked_spec_satisfied
      end

      # @param [String] requirement_name the spec name to search for
      # @return [Object] the locked spec named `requirement_name`, if one
      #   is found on {#base}
      def locked_requirement_named(requirement_name)
        vertex = base.vertex_named(requirement_name)
        vertex && vertex.payload
      end

      # Add the current {#possibility} to the dependency graph of the current
      # {#state}
      # @return [void]
      def activate_spec
        conflicts.delete(name)
        debug(depth) { "Activated #{name} at #{possibility}" }
        activated.set_payload(name, possibility)
        require_nested_dependencies_for(possibility)
      end

      # Requires the dependencies that the recently activated spec has
      # @param [Object] activated_spec the specification that has just been
      #   activated
      # @return [void]
      def require_nested_dependencies_for(activated_spec)
        nested_dependencies = dependencies_for(activated_spec)
        debug(depth) { "Requiring nested dependencies (#{nested_dependencies.join(', ')})" }
        nested_dependencies.each do |d|
          activated.add_child_vertex(name_for(d), nil, [name_for(activated_spec)], d)
          parent_index = states.size - 1
          parents = @parents_of[d]
          parents << parent_index if parents.empty?
        end

        push_state_for_requirements(requirements + nested_dependencies, !nested_dependencies.empty?)
      end

      # Pushes a new {DependencyState} that encapsulates both existing and new
      # requirements
      # @param [Array] new_requirements
      # @return [void]
      def push_state_for_requirements(new_requirements, requires_sort = true, new_activated = activated)
        new_requirements = sort_dependencies(new_requirements.uniq, new_activated, conflicts) if requires_sort
        new_requirement = new_requirements.shift
        new_name = new_requirement ? name_for(new_requirement) : ''.freeze
        possibilities = new_requirement ? search_for(new_requirement) : []
        handle_missing_or_push_dependency_state DependencyState.new(
          new_name, new_requirements, new_activated,
          new_requirement, possibilities, depth, conflicts.dup
        )
      end

      # Pushes a new {DependencyState}.
      # If the {#specification_provider} says to
      # {SpecificationProvider#allow_missing?} that particular requirement, and
      # there are no possibilities for that requirement, then `state` is not
      # pushed, and the node in {#activated} is removed, and we continue
      # resolving the remaining requirements.
      # @param [DependencyState] state
      # @return [void]
      def handle_missing_or_push_dependency_state(state)
        if state.requirement && state.possibilities.empty? && allow_missing?(state.requirement)
          state.activated.detach_vertex_named(state.name)
          push_state_for_requirements(state.requirements.dup, false, state.activated)
        else
          states.push(state).tap { activated.tag(state) }
        end
      end
    end
  end
end
PK9H[�*���\share/rubygems/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  module Delegates
    # Delegates all {Gem::Resolver::Molinillo::SpecificationProvider} methods to a
    # `#specification_provider` property.
    module SpecificationProvider
      # (see Gem::Resolver::Molinillo::SpecificationProvider#search_for)
      def search_for(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.search_for(dependency)
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#dependencies_for)
      def dependencies_for(specification)
        with_no_such_dependency_error_handling do
          specification_provider.dependencies_for(specification)
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#requirement_satisfied_by?)
      def requirement_satisfied_by?(requirement, activated, spec)
        with_no_such_dependency_error_handling do
          specification_provider.requirement_satisfied_by?(requirement, activated, spec)
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#name_for)
      def name_for(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.name_for(dependency)
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#name_for_explicit_dependency_source)
      def name_for_explicit_dependency_source
        with_no_such_dependency_error_handling do
          specification_provider.name_for_explicit_dependency_source
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#name_for_locking_dependency_source)
      def name_for_locking_dependency_source
        with_no_such_dependency_error_handling do
          specification_provider.name_for_locking_dependency_source
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#sort_dependencies)
      def sort_dependencies(dependencies, activated, conflicts)
        with_no_such_dependency_error_handling do
          specification_provider.sort_dependencies(dependencies, activated, conflicts)
        end
      end

      # (see Gem::Resolver::Molinillo::SpecificationProvider#allow_missing?)
      def allow_missing?(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.allow_missing?(dependency)
        end
      end

      private

      # Ensures any raised {NoSuchDependencyError} has its
      # {NoSuchDependencyError#required_by} set.
      # @yield
      def with_no_such_dependency_error_handling
        yield
      rescue NoSuchDependencyError => error
        if state
          vertex = activated.vertex_named(name_for(error.dependency))
          error.required_by += vertex.incoming_edges.map { |e| e.origin.name }
          error.required_by << name_for_explicit_dependency_source unless vertex.explicit_requirements.empty?
        end
        raise
      end
    end
  end
end
PK9H[?"ۛ��Vshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # @!visibility private
  module Delegates
    # Delegates all {Gem::Resolver::Molinillo::ResolutionState} methods to a `#state` property.
    module ResolutionState
      # (see Gem::Resolver::Molinillo::ResolutionState#name)
      def name
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.name
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#requirements)
      def requirements
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.requirements
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#activated)
      def activated
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.activated
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#requirement)
      def requirement
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.requirement
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#possibilities)
      def possibilities
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.possibilities
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#depth)
      def depth
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.depth
      end

      # (see Gem::Resolver::Molinillo::ResolutionState#conflicts)
      def conflicts
        current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty
        current_state.conflicts
      end
    end
  end
end
PK9H[�ŋ:��Hshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # The version of Gem::Resolver::Molinillo.
  VERSION = '0.5.7'.freeze
end
PK9H[�k��ffDshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/resolver.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph'

module Gem::Resolver::Molinillo
  # This class encapsulates a dependency resolver.
  # The resolver is responsible for determining which set of dependencies to
  # activate, with feedback from the {#specification_provider}
  #
  #
  class Resolver
    require 'rubygems/resolver/molinillo/lib/molinillo/resolution'

    # @return [SpecificationProvider] the specification provider used
    #   in the resolution process
    attr_reader :specification_provider

    # @return [UI] the UI module used to communicate back to the user
    #   during the resolution process
    attr_reader :resolver_ui

    # Initializes a new resolver.
    # @param  [SpecificationProvider] specification_provider
    #   see {#specification_provider}
    # @param  [UI] resolver_ui
    #   see {#resolver_ui}
    def initialize(specification_provider, resolver_ui)
      @specification_provider = specification_provider
      @resolver_ui = resolver_ui
    end

    # Resolves the requested dependencies into a {DependencyGraph},
    # locking to the base dependency graph (if specified)
    # @param [Array] requested an array of 'requested' dependencies that the
    #   {#specification_provider} can understand
    # @param [DependencyGraph,nil] base the base dependency graph to which
    #   dependencies should be 'locked'
    def resolve(requested, base = DependencyGraph.new)
      Resolution.new(specification_provider,
                     resolver_ui,
                     requested,
                     base).
        resolve
    end
  end
end
PK9H[m>���Fshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # Conveys information about the resolution process to a user.
  module UI
    # The {IO} object that should be used to print output. `STDOUT`, by default.
    #
    # @return [IO]
    def output
      STDOUT
    end

    # Called roughly every {#progress_rate}, this method should convey progress
    # to the user.
    #
    # @return [void]
    def indicate_progress
      output.print '.' unless debug?
    end

    # How often progress should be conveyed to the user via
    # {#indicate_progress}, in seconds. A third of a second, by default.
    #
    # @return [Float]
    def progress_rate
      0.33
    end

    # Called before resolution begins.
    #
    # @return [void]
    def before_resolution
      output.print 'Resolving dependencies...'
    end

    # Called after resolution ends (either successfully or with an error).
    # By default, prints a newline.
    #
    # @return [void]
    def after_resolution
      output.puts
    end

    # Conveys debug information to the user.
    #
    # @param [Integer] depth the current depth of the resolution process.
    # @return [void]
    def debug(depth = 0)
      if debug?
        debug_info = yield
        debug_info = debug_info.inspect unless debug_info.is_a?(String)
        output.puts debug_info.split("\n").map { |s| ' ' * depth + s }
      end
    end

    # Whether or not debug messages should be printed.
    # By default, whether or not the `MOLINILLO_DEBUG` environment variable is
    # set.
    #
    # @return [Boolean]
    def debug?
      return @debug_mode if defined?(@debug_mode)
      @debug_mode = ENV['MOLINILLO_DEBUG']
    end
  end
end
PK9H[ftd���Zshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  # Provides information about specifcations and dependencies to the resolver,
  # allowing the {Resolver} class to remain generic while still providing power
  # and flexibility.
  #
  # This module contains the methods that users of Gem::Resolver::Molinillo must to implement,
  # using knowledge of their own model classes.
  module SpecificationProvider
    # Search for the specifications that match the given dependency.
    # The specifications in the returned array will be considered in reverse
    # order, so the latest version ought to be last.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `dependency` parameter.
    #
    # @param [Object] dependency
    # @return [Array<Object>] the specifications that satisfy the given
    #   `dependency`.
    def search_for(dependency)
      []
    end

    # Returns the dependencies of `specification`.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `specification` parameter.
    #
    # @param [Object] specification
    # @return [Array<Object>] the dependencies that are required by the given
    #   `specification`.
    def dependencies_for(specification)
      []
    end

    # Determines whether the given `requirement` is satisfied by the given
    # `spec`, in the context of the current `activated` dependency graph.
    #
    # @param [Object] requirement
    # @param [DependencyGraph] activated the current dependency graph in the
    #   resolution process.
    # @param [Object] spec
    # @return [Boolean] whether `requirement` is satisfied by `spec` in the
    #   context of the current `activated` dependency graph.
    def requirement_satisfied_by?(requirement, activated, spec)
      true
    end

    # Returns the name for the given `dependency`.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `dependency` parameter.
    #
    # @param [Object] dependency
    # @return [String] the name for the given `dependency`.
    def name_for(dependency)
      dependency.to_s
    end

    # @return [String] the name of the source of explicit dependencies, i.e.
    #   those passed to {Resolver#resolve} directly.
    def name_for_explicit_dependency_source
      'user-specified dependency'
    end

    # @return [String] the name of the source of 'locked' dependencies, i.e.
    #   those passed to {Resolver#resolve} directly as the `base`
    def name_for_locking_dependency_source
      'Lockfile'
    end

    # Sort dependencies so that the ones that are easiest to resolve are first.
    # Easiest to resolve is (usually) defined by:
    #   1) Is this dependency already activated?
    #   2) How relaxed are the requirements?
    #   3) Are there any conflicts for this dependency?
    #   4) How many possibilities are there to satisfy this dependency?
    #
    # @param [Array<Object>] dependencies
    # @param [DependencyGraph] activated the current dependency graph in the
    #   resolution process.
    # @param [{String => Array<Conflict>}] conflicts
    # @return [Array<Object>] a sorted copy of `dependencies`.
    def sort_dependencies(dependencies, activated, conflicts)
      dependencies.sort_by do |dependency|
        name = name_for(dependency)
        [
          activated.vertex_named(name).payload ? 0 : 1,
          conflicts[name] ? 0 : 1,
        ]
      end
    end

    # Returns whether this dependency, which has no possible matching
    # specifications, can safely be ignored.
    #
    # @param [Object] dependency
    # @return [Boolean] whether this dependency can safely be skipped.
    def allow_missing?(dependency)
      false
    end
  end
end
PK9H[�E�h��Xshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#set_payload
    class SetPayload < Action # :nodoc:
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :set_payload
      end

      # (see Action#up)
      def up(graph)
        vertex = graph.vertex_named(name)
        @old_payload = vertex.payload
        vertex.payload = payload
      end

      # (see Action#down)
      def down(graph)
        graph.vertex_named(name).payload = @old_payload
      end

      # @!group SetPayload

      # @return [String] the name of the vertex
      attr_reader :name

      # @return [Object] the payload for the vertex
      attr_reader :payload

      # Initialize an action to add set the payload for a vertex in a dependency
      # graph
      # @param [String] name the name of the vertex
      # @param [Object] payload the payload for the vertex
      def initialize(name, payload)
        @name = name
        @payload = payload
      end
    end
  end
end
PK9H[vHhȡ�Sshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  class DependencyGraph
    # An action that modifies a {DependencyGraph} that is reversible.
    # @abstract
    class Action
      # rubocop:disable Lint/UnusedMethodArgument

      # @return [Symbol] The name of the action.
      def self.action_name
        raise 'Abstract'
      end

      # Performs the action on the given graph.
      # @param  [DependencyGraph] graph the graph to perform the action on.
      # @return [Void]
      def up(graph)
        raise 'Abstract'
      end

      # Reverses the action on the given graph.
      # @param  [DependencyGraph] graph the graph to reverse the action on.
      # @return [Void]
      def down(graph)
        raise 'Abstract'
      end

      # @return [Action,Nil] The previous action
      attr_accessor :previous

      # @return [Action,Nil] The next action
      attr_accessor :next
    end
  end
end
PK9H[��``Sshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rbnu�[���# frozen_string_literal: true
module Gem::Resolver::Molinillo
  class DependencyGraph
    # A vertex in a {DependencyGraph} that encapsulates a {#name} and a
    # {#payload}
    class Vertex
      # @return [String] the name of the vertex
      attr_accessor :name

      # @return [Object] the payload the vertex holds
      attr_accessor :payload

      # @return [Array<Object>] the explicit requirements that required
      #   this vertex
      attr_reader :explicit_requirements

      # @return [Boolean] whether the vertex is considered a root vertex
      attr_accessor :root
      alias root? root

      # Initializes a vertex with the given name and payload.
      # @param [String] name see {#name}
      # @param [Object] payload see {#payload}
      def initialize(name, payload)
        @name = name.frozen? ? name : name.dup.freeze
        @payload = payload
        @explicit_requirements = []
        @outgoing_edges = []
        @incoming_edges = []
      end

      # @return [Array<Object>] all of the requirements that required
      #   this vertex
      def requirements
        incoming_edges.map(&:requirement) + explicit_requirements
      end

      # @return [Array<Edge>] the edges of {#graph} that have `self` as their
      #   {Edge#origin}
      attr_accessor :outgoing_edges

      # @return [Array<Edge>] the edges of {#graph} that have `self` as their
      #   {Edge#destination}
      attr_accessor :incoming_edges

      # @return [Array<Vertex>] the vertices of {#graph} that have an edge with
      #   `self` as their {Edge#destination}
      def predecessors
        incoming_edges.map(&:origin)
      end

      # @return [Array<Vertex>] the vertices of {#graph} where `self` is a
      #   {#descendent?}
      def recursive_predecessors
        vertices = predecessors
        vertices += vertices.map(&:recursive_predecessors).flatten(1)
        vertices.uniq!
        vertices
      end

      # @return [Array<Vertex>] the vertices of {#graph} that have an edge with
      #   `self` as their {Edge#origin}
      def successors
        outgoing_edges.map(&:destination)
      end

      # @return [Array<Vertex>] the vertices of {#graph} where `self` is an
      #   {#ancestor?}
      def recursive_successors
        vertices = successors
        vertices += vertices.map(&:recursive_successors).flatten(1)
        vertices.uniq!
        vertices
      end

      # @return [String] a string suitable for debugging
      def inspect
        "#{self.class}:#{name}(#{payload.inspect})"
      end

      # @return [Boolean] whether the two vertices are equal, determined
      #   by a recursive traversal of each {Vertex#successors}
      def ==(other)
        return true if equal?(other)
        shallow_eql?(other) &&
          successors.to_set == other.successors.to_set
      end

      # @param  [Vertex] other the other vertex to compare to
      # @return [Boolean] whether the two vertices are equal, determined
      #   solely by {#name} and {#payload} equality
      def shallow_eql?(other)
        return true if equal?(other)
        other &&
          name == other.name &&
          payload == other.payload
      end

      alias eql? ==

      # @return [Fixnum] a hash for the vertex based upon its {#name}
      def hash
        name.hash
      end

      # Is there a path from `self` to `other` following edges in the
      # dependency graph?
      # @return true iff there is a path following edges within this {#graph}
      def path_to?(other)
        equal?(other) || successors.any? { |v| v.path_to?(other) }
      end

      alias descendent? path_to?

      # Is there a path from `other` to `self` following edges in the
      # dependency graph?
      # @return true iff there is a path following edges within this {#graph}
      def ancestor?(other)
        other.path_to?(self)
      end

      alias is_reachable_from? ancestor?
    end
  end
end
PK9H[��%>��Wshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#add_vertex)
    class AddVertex < Action # :nodoc:
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        if existing = graph.vertices[name]
          @existing_payload = existing.payload
          @existing_root = existing.root
        end
        vertex = existing || Vertex.new(name, payload)
        graph.vertices[vertex.name] = vertex
        vertex.payload ||= payload
        vertex.root ||= root
        vertex
      end

      # (see Action#down)
      def down(graph)
        if defined?(@existing_payload)
          vertex = graph.vertices[name]
          vertex.payload = @existing_payload
          vertex.root = @existing_root
        else
          graph.vertices.delete(name)
        end
      end

      # @!group AddVertex

      # @return [String] the name of the vertex
      attr_reader :name

      # @return [Object] the payload for the vertex
      attr_reader :payload

      # @return [Boolean] whether the vertex is root or not
      attr_reader :root

      # Initialize an action to add a vertex to a dependency graph
      # @param [String] name the name of the vertex
      # @param [Object] payload the payload for the vertex
      # @param [Boolean] root whether the vertex is root or not
      def initialize(name, payload, root)
        @name = name
        @payload = payload
        @root = root
      end
    end
  end
end
PK9H[Vbd��Pshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#tag
    class Tag < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :tag
      end

      # (see Action#up)
      def up(_graph)
      end

      # (see Action#down)
      def down(_graph)
      end

      # @!group Tag

      # @return [Object] An opaque tag
      attr_reader :tag

      # Initialize an action to tag a state of a dependency graph
      # @param [Object] tag an opaque tag
      def initialize(tag)
        @tag = tag
      end
    end
  end
end
PK9H[�ڢ�YYXshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#delete_edge)
    class DeleteEdge < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :delete_edge
      end

      # (see Action#up)
      def up(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges.delete(edge)
        edge.destination.incoming_edges.delete(edge)
      end

      # (see Action#down)
      def down(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges << edge
        edge.destination.incoming_edges << edge
        edge
      end

      # @!group DeleteEdge

      # @return [String] the name of the origin of the edge
      attr_reader :origin_name

      # @return [String] the name of the destination of the edge
      attr_reader :destination_name

      # @return [Object] the requirement that the edge represents
      attr_reader :requirement

      # @param  [DependencyGraph] graph the graph to find vertices from
      # @return [Edge] The edge this action adds
      def make_edge(graph)
        Edge.new(
          graph.vertex_named(origin_name),
          graph.vertex_named(destination_name),
          requirement
        )
      end

      # Initialize an action to add an edge to a dependency graph
      # @param [String] origin_name the name of the origin of the edge
      # @param [String] destination_name the name of the destination of the edge
      # @param [Object] requirement the requirement that the edge represents
      def initialize(origin_name, destination_name, requirement)
        @origin_name = origin_name
        @destination_name = destination_name
        @requirement = requirement
      end
    end
  end
end
PK9H[�[�PPPshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag'

module Gem::Resolver::Molinillo
  class DependencyGraph
    # A log for dependency graph actions
    class Log
      # Initializes an empty log
      def initialize
        @current_action = @first_action = nil
      end

      # @!macro [new] action
      #   {include:DependencyGraph#$0}
      #   @param [Graph] graph the graph to perform the action on
      #   @param (see DependencyGraph#$0)
      #   @return (see DependencyGraph#$0)

      # @macro action
      def tag(graph, tag)
        push_action(graph, Tag.new(tag))
      end

      # @macro action
      def add_vertex(graph, name, payload, root)
        push_action(graph, AddVertex.new(name, payload, root))
      end

      # @macro action
      def detach_vertex_named(graph, name)
        push_action(graph, DetachVertexNamed.new(name))
      end

      # @macro action
      def add_edge_no_circular(graph, origin, destination, requirement)
        push_action(graph, AddEdgeNoCircular.new(origin, destination, requirement))
      end

      # {include:DependencyGraph#delete_edge}
      # @param [Graph] graph the graph to perform the action on
      # @param [String] origin_name
      # @param [String] destination_name
      # @param [Object] requirement
      # @return (see DependencyGraph#delete_edge)
      def delete_edge(graph, origin_name, destination_name, requirement)
        push_action(graph, DeleteEdge.new(origin_name, destination_name, requirement))
      end

      # @macro action
      def set_payload(graph, name, payload)
        push_action(graph, SetPayload.new(name, payload))
      end

      # Pops the most recent action from the log and undoes the action
      # @param [DependencyGraph] graph
      # @return [Action] the action that was popped off the log
      def pop!(graph)
        return unless action = @current_action
        unless @current_action = action.previous
          @first_action = nil
        end
        action.down(graph)
        action
      end

      extend Enumerable

      # @!visibility private
      # Enumerates each action in the log
      # @yield [Action]
      def each
        return enum_for unless block_given?
        action = @first_action
        loop do
          break unless action
          yield action
          action = action.next
        end
        self
      end

      # @!visibility private
      # Enumerates each action in the log in reverse order
      # @yield [Action]
      def reverse_each
        return enum_for(:reverse_each) unless block_given?
        action = @current_action
        loop do
          break unless action
          yield action
          action = action.previous
        end
        self
      end

      # @macro action
      def rewind_to(graph, tag)
        loop do
          action = pop!(graph)
          raise "No tag #{tag.inspect} found" unless action
          break if action.class.action_name == :tag && action.tag == tag
        end
      end

      private

      # Adds the given action to the log, running the action
      # @param [DependencyGraph] graph
      # @param [Action] action
      # @return The value returned by `action.up`
      def push_action(graph, action)
        action.previous = @current_action
        @current_action.next = action if @current_action
        @current_action = action
        @first_action ||= action
        action.up(graph)
      end
    end
  end
end
PK9H[�8�55`share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#detach_vertex_named
    class DetachVertexNamed < Action
      # @!group Action

      # (see Action#name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        return [] unless @vertex = graph.vertices.delete(name)

        removed_vertices = [@vertex]
        @vertex.outgoing_edges.each do |e|
          v = e.destination
          v.incoming_edges.delete(e)
          if !v.root? && v.incoming_edges.empty?
            removed_vertices.concat graph.detach_vertex_named(v.name)
          end
        end

        @vertex.incoming_edges.each do |e|
          v = e.origin
          v.outgoing_edges.delete(e)
        end

        removed_vertices
      end

      # (see Action#down)
      def down(graph)
        return unless @vertex
        graph.vertices[@vertex.name] = @vertex
        @vertex.outgoing_edges.each do |e|
          e.destination.incoming_edges << e
        end
        @vertex.incoming_edges.each do |e|
          e.origin.outgoing_edges << e
        end
      end

      # @!group DetachVertexNamed

      # @return [String] the name of the vertex to detach
      attr_reader :name

      # Initialize an action to detach a vertex from a dependency graph
      # @param [String] name the name of the vertex to detach
      def initialize(name)
        @name = name
      end
    end
  end
end
PK9H[������ashare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action'
module Gem::Resolver::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#add_edge_no_circular)
    class AddEdgeNoCircular < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges << edge
        edge.destination.incoming_edges << edge
        edge
      end

      # (see Action#down)
      def down(graph)
        edge = make_edge(graph)
        delete_first(edge.origin.outgoing_edges, edge)
        delete_first(edge.destination.incoming_edges, edge)
      end

      # @!group AddEdgeNoCircular

      # @return [String] the name of the origin of the edge
      attr_reader :origin

      # @return [String] the name of the destination of the edge
      attr_reader :destination

      # @return [Object] the requirement that the edge represents
      attr_reader :requirement

      # @param  [DependencyGraph] graph the graph to find vertices from
      # @return [Edge] The edge this action adds
      def make_edge(graph)
        Edge.new(graph.vertex_named(origin), graph.vertex_named(destination), requirement)
      end

      # Initialize an action to add an edge to a dependency graph
      # @param [String] origin the name of the origin of the edge
      # @param [String] destination the name of the destination of the edge
      # @param [Object] requirement the requirement that the edge represents
      def initialize(origin, destination, requirement)
        @origin = origin
        @destination = destination
        @requirement = requirement
      end

      private

      def delete_first(array, item)
        return unless index = array.index(item)
        array.delete_at(index)
      end
    end
  end
end
PK9H[`�kLshare/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rbnu�[���# frozen_string_literal: true
require 'set'
require 'tsort'

require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log'
require 'rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex'

module Gem::Resolver::Molinillo
  # A directed acyclic graph that is tuned to hold named dependencies
  class DependencyGraph
    include Enumerable

    # Enumerates through the vertices of the graph.
    # @return [Array<Vertex>] The graph's vertices.
    def each
      return vertices.values.each unless block_given?
      vertices.values.each { |v| yield v }
    end

    include TSort

    # @!visibility private
    alias tsort_each_node each

    # @!visibility private
    def tsort_each_child(vertex, &block)
      vertex.successors.each(&block)
    end

    # Topologically sorts the given vertices.
    # @param [Enumerable<Vertex>] vertices the vertices to be sorted, which must
    #   all belong to the same graph.
    # @return [Array<Vertex>] The sorted vertices.
    def self.tsort(vertices)
      TSort.tsort(
        lambda { |b| vertices.each(&b) },
        lambda { |v, &b| (v.successors & vertices).each(&b) }
      )
    end

    # A directed edge of a {DependencyGraph}
    # @attr [Vertex] origin The origin of the directed edge
    # @attr [Vertex] destination The destination of the directed edge
    # @attr [Object] requirement The requirement the directed edge represents
    Edge = Struct.new(:origin, :destination, :requirement)

    # @return [{String => Vertex}] the vertices of the dependency graph, keyed
    #   by {Vertex#name}
    attr_reader :vertices

    # @return [Log] the op log for this graph
    attr_reader :log

    # Initializes an empty dependency graph
    def initialize
      @vertices = {}
      @log = Log.new
    end

    # Tags the current state of the dependency as the given tag
    # @param  [Object] tag an opaque tag for the current state of the graph
    # @return [Void]
    def tag(tag)
      log.tag(self, tag)
    end

    # Rewinds the graph to the state tagged as `tag`
    # @param  [Object] tag the tag to rewind to
    # @return [Void]
    def rewind_to(tag)
      log.rewind_to(self, tag)
    end

    # Initializes a copy of a {DependencyGraph}, ensuring that all {#vertices}
    # are properly copied.
    # @param [DependencyGraph] other the graph to copy.
    def initialize_copy(other)
      super
      @vertices = {}
      @log = other.log.dup
      traverse = lambda do |new_v, old_v|
        return if new_v.outgoing_edges.size == old_v.outgoing_edges.size
        old_v.outgoing_edges.each do |edge|
          destination = add_vertex(edge.destination.name, edge.destination.payload)
          add_edge_no_circular(new_v, destination, edge.requirement)
          traverse.call(destination, edge.destination)
        end
      end
      other.vertices.each do |name, vertex|
        new_vertex = add_vertex(name, vertex.payload, vertex.root?)
        new_vertex.explicit_requirements.replace(vertex.explicit_requirements)
        traverse.call(new_vertex, vertex)
      end
    end

    # @return [String] a string suitable for debugging
    def inspect
      "#{self.class}:#{vertices.values.inspect}"
    end

    # @param [Hash] options options for dot output.
    # @return [String] Returns a dot format representation of the graph
    def to_dot(options = {})
      edge_label = options.delete(:edge_label)
      raise ArgumentError, "Unknown options: #{options.keys}" unless options.empty?

      dot_vertices = []
      dot_edges = []
      vertices.each do |n, v|
        dot_vertices << "  #{n} [label=\"{#{n}|#{v.payload}}\"]"
        v.outgoing_edges.each do |e|
          label = edge_label ? edge_label.call(e) : e.requirement
          dot_edges << "  #{e.origin.name} -> #{e.destination.name} [label=#{label.to_s.dump}]"
        end
      end

      dot_vertices.uniq!
      dot_vertices.sort!
      dot_edges.uniq!
      dot_edges.sort!

      dot = dot_vertices.unshift('digraph G {').push('') + dot_edges.push('}')
      dot.join("\n")
    end

    # @return [Boolean] whether the two dependency graphs are equal, determined
    #   by a recursive traversal of each {#root_vertices} and its
    #   {Vertex#successors}
    def ==(other)
      return false unless other
      return true if equal?(other)
      vertices.each do |name, vertex|
        other_vertex = other.vertex_named(name)
        return false unless other_vertex
        return false unless vertex.payload == other_vertex.payload
        return false unless other_vertex.successors.to_set == vertex.successors.to_set
      end
    end

    # @param [String] name
    # @param [Object] payload
    # @param [Array<String>] parent_names
    # @param [Object] requirement the requirement that is requiring the child
    # @return [void]
    def add_child_vertex(name, payload, parent_names, requirement)
      root = !parent_names.delete(nil) { true }
      vertex = add_vertex(name, payload, root)
      vertex.explicit_requirements << requirement if root
      parent_names.each do |parent_name|
        parent_node = vertex_named(parent_name)
        add_edge(parent_node, vertex, requirement)
      end
      vertex
    end

    # Adds a vertex with the given name, or updates the existing one.
    # @param [String] name
    # @param [Object] payload
    # @return [Vertex] the vertex that was added to `self`
    def add_vertex(name, payload, root = false)
      log.add_vertex(self, name, payload, root)
    end

    # Detaches the {#vertex_named} `name` {Vertex} from the graph, recursively
    # removing any non-root vertices that were orphaned in the process
    # @param [String] name
    # @return [Array<Vertex>] the vertices which have been detached
    def detach_vertex_named(name)
      log.detach_vertex_named(self, name)
    end

    # @param [String] name
    # @return [Vertex,nil] the vertex with the given name
    def vertex_named(name)
      vertices[name]
    end

    # @param [String] name
    # @return [Vertex,nil] the root vertex with the given name
    def root_vertex_named(name)
      vertex = vertex_named(name)
      vertex if vertex && vertex.root?
    end

    # Adds a new {Edge} to the dependency graph
    # @param [Vertex] origin
    # @param [Vertex] destination
    # @param [Object] requirement the requirement that this edge represents
    # @return [Edge] the added edge
    def add_edge(origin, destination, requirement)
      if destination.path_to?(origin)
        raise CircularDependencyError.new([origin, destination])
      end
      add_edge_no_circular(origin, destination, requirement)
    end

    # Deletes an {Edge} from the dependency graph
    # @param [Edge] edge
    # @return [Void]
    def delete_edge(edge)
      log.delete_edge(self, edge.origin.name, edge.destination.name, edge.requirement)
    end

    # Sets the payload of the vertex with the given name
    # @param [String] name the name of the vertex
    # @param [Object] payload the payload
    # @return [Void]
    def set_payload(name, payload)
      log.set_payload(self, name, payload)
    end

    private

    # Adds a new {Edge} to the dependency graph without checking for
    # circularity.
    # @param (see #add_edge)
    # @return (see #add_edge)
    def add_edge_no_circular(origin, destination, requirement)
      log.add_edge_no_circular(self, origin.name, destination.name, requirement)
    end
  end
end
PK9H[I=+��;share/rubygems/rubygems/resolver/molinillo/lib/molinillo.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo/gem_metadata'
require 'rubygems/resolver/molinillo/lib/molinillo/errors'
require 'rubygems/resolver/molinillo/lib/molinillo/resolver'
require 'rubygems/resolver/molinillo/lib/molinillo/modules/ui'
require 'rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider'

# Gem::Resolver::Molinillo is a generic dependency resolution algorithm.
module Gem::Resolver::Molinillo
end
PK9H[�iZ��;share/rubygems/rubygems/resolver/installed_specification.rbnu�[���# frozen_string_literal: true
##
# An InstalledSpecification represents a gem that is already installed
# locally.

class Gem::Resolver::InstalledSpecification < Gem::Resolver::SpecSpecification

  def ==(other) # :nodoc:
    self.class === other and
      @set  == other.set and
      @spec == other.spec
  end

  ##
  # This is a null install as this specification is already installed.
  # +options+ are ignored.

  def install(options = {})
    yield nil
  end

  ##
  # Returns +true+ if this gem is installable for the current platform.

  def installable_platform?
    # BACKCOMPAT If the file is coming out of a specified file, then we
    # ignore the platform. This code can be removed in RG 3.0.
    return true if @source.kind_of? Gem::Source::SpecificFile

    super
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[InstalledSpecification', ']' do
      q.breakable
      q.text "name: #{name}"

      q.breakable
      q.text "version: #{version}"

      q.breakable
      q.text "platform: #{platform}"

      q.breakable
      q.text 'dependencies:'
      q.breakable
      q.pp spec.dependencies
    end
  end

  ##
  # The source for this specification

  def source
    @source ||= Gem::Source::Installed.new
  end

end
PK9H[4�2�YY4share/rubygems/rubygems/resolver/requirement_list.rbnu�[���# frozen_string_literal: true
##
# The RequirementList is used to hold the requirements being considered
# while resolving a set of gems.
#
# The RequirementList acts like a queue where the oldest items are removed
# first.

class Gem::Resolver::RequirementList

  include Enumerable

  ##
  # Creates a new RequirementList.

  def initialize
    @exact = []
    @list = []
  end

  def initialize_copy(other) # :nodoc:
    @exact = @exact.dup
    @list = @list.dup
  end

  ##
  # Adds Resolver::DependencyRequest +req+ to this requirements list.

  def add(req)
    if req.requirement.exact?
      @exact.push req
    else
      @list.push req
    end
    req
  end

  ##
  # Enumerates requirements in the list

  def each # :nodoc:
    return enum_for __method__ unless block_given?

    @exact.each do |requirement|
      yield requirement
    end

    @list.each do |requirement|
      yield requirement
    end
  end

  ##
  # How many elements are in the list

  def size
    @exact.size + @list.size
  end

  ##
  # Is the list empty?

  def empty?
    @exact.empty? && @list.empty?
  end

  ##
  # Remove the oldest DependencyRequest from the list.

  def remove
    return @exact.shift unless @exact.empty?
    @list.shift
  end

  ##
  # Returns the oldest five entries from the list.

  def next5
    x = @exact[0,5]
    x + @list[0,5 - x.size]
  end

end
PK9H[*6�D��+share/rubygems/rubygems/resolver/git_set.rbnu�[���# frozen_string_literal: true
##
# A GitSet represents gems that are sourced from git repositories.
#
# This is used for gem dependency file support.
#
# Example:
#
#   set = Gem::Resolver::GitSet.new
#   set.add_git_gem 'rake', 'git://example/rake.git', tag: 'rake-10.1.0'

class Gem::Resolver::GitSet < Gem::Resolver::Set

  ##
  # The root directory for git gems in this set.  This is usually Gem.dir, the
  # installation directory for regular gems.

  attr_accessor :root_dir

  ##
  # Contains repositories needing submodules

  attr_reader :need_submodules # :nodoc:

  ##
  # A Hash containing git gem names for keys and a Hash of repository and
  # git commit reference as values.

  attr_reader :repositories # :nodoc:

  ##
  # A hash of gem names to Gem::Resolver::GitSpecifications

  attr_reader :specs # :nodoc:

  def initialize # :nodoc:
    super()

    @git             = ENV['git'] || 'git'
    @need_submodules = {}
    @repositories    = {}
    @root_dir        = Gem.dir
    @specs           = {}
  end

  def add_git_gem(name, repository, reference, submodules) # :nodoc:
    @repositories[name] = [repository, reference]
    @need_submodules[repository] = submodules
  end

  ##
  # Adds and returns a GitSpecification with the given +name+ and +version+
  # which came from a +repository+ at the given +reference+.  If +submodules+
  # is true they are checked out along with the repository.
  #
  # This fills in the prefetch information as enough information about the gem
  # is present in the arguments.

  def add_git_spec(name, version, repository, reference, submodules) # :nodoc:
    add_git_gem name, repository, reference, submodules

    source = Gem::Source::Git.new name, repository, reference
    source.root_dir = @root_dir

    spec = Gem::Specification.new do |s|
      s.name    = name
      s.version = version
    end

    git_spec = Gem::Resolver::GitSpecification.new self, spec, source

    @specs[spec.name] = git_spec

    git_spec
  end

  ##
  # Finds all git gems matching +req+

  def find_all(req)
    prefetch nil

    specs.values.select do |spec|
      req.match? spec
    end
  end

  ##
  # Prefetches specifications from the git repositories in this set.

  def prefetch(reqs)
    return unless @specs.empty?

    @repositories.each do |name, (repository, reference)|
      source = Gem::Source::Git.new name, repository, reference
      source.root_dir = @root_dir
      source.remote = @remote

      source.specs.each do |spec|
        git_spec = Gem::Resolver::GitSpecification.new self, spec, source

        @specs[spec.name] = git_spec
      end
    end
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[GitSet', ']' do
      next if @repositories.empty?
      q.breakable

      repos = @repositories.map do |name, (repository, reference)|
        "#{name}: #{repository}@#{reference}"
      end

      q.seplist repos do |repo|
        q.text repo
      end
    end
  end

end
PK9H[�M�DD6share/rubygems/rubygems/resolver/lock_specification.rbnu�[���# frozen_string_literal: true
##
# The LockSpecification comes from a lockfile (Gem::RequestSet::Lockfile).
#
# A LockSpecification's dependency information is pre-filled from the
# lockfile.

class Gem::Resolver::LockSpecification < Gem::Resolver::Specification

  attr_reader :sources

  def initialize(set, name, version, sources, platform)
    super()

    @name     = name
    @platform = platform
    @set      = set
    @source   = sources.first
    @sources  = sources
    @version  = version

    @dependencies = []
    @spec         = nil
  end

  ##
  # This is a null install as a locked specification is considered installed.
  # +options+ are ignored.

  def install(options = {})
    destination = options[:install_dir] || Gem.dir

    if File.exist? File.join(destination, 'specifications', spec.spec_name)
      yield nil
      return
    end

    super
  end

  ##
  # Adds +dependency+ from the lockfile to this specification

  def add_dependency(dependency) # :nodoc:
    @dependencies << dependency
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[LockSpecification', ']' do
      q.breakable
      q.text "name: #{@name}"

      q.breakable
      q.text "version: #{@version}"

      unless @platform == Gem::Platform::RUBY
        q.breakable
        q.text "platform: #{@platform}"
      end

      unless @dependencies.empty?
        q.breakable
        q.text 'dependencies:'
        q.breakable
        q.pp @dependencies
      end
    end
  end

  ##
  # A specification constructed from the lockfile is returned

  def spec
    @spec ||= Gem::Specification.find do |spec|
      spec.name == @name and spec.version == @version
    end

    @spec ||= Gem::Specification.new do |s|
      s.name     = @name
      s.version  = @version
      s.platform = @platform

      s.dependencies.concat @dependencies
    end
  end

end
PK9H[��E��'share/rubygems/rubygems/resolver/set.rbnu�[���# frozen_string_literal: true
##
# Resolver sets are used to look up specifications (and their
# dependencies) used in resolution.  This set is abstract.

class Gem::Resolver::Set

  ##
  # Set to true to disable network access for this set

  attr_accessor :remote

  ##
  # Errors encountered when resolving gems

  attr_accessor :errors

  ##
  # When true, allows matching of requests to prerelease gems.

  attr_accessor :prerelease

  def initialize # :nodoc:
    require 'uri'
    @prerelease = false
    @remote     = true
    @errors     = []
  end

  ##
  # The find_all method must be implemented.  It returns all Resolver
  # Specification objects matching the given DependencyRequest +req+.

  def find_all(req)
    raise NotImplementedError
  end

  ##
  # The #prefetch method may be overridden, but this is not necessary.  This
  # default implementation does nothing, which is suitable for sets where
  # looking up a specification is cheap (such as installed gems).
  #
  # When overridden, the #prefetch method should look up specifications
  # matching +reqs+.

  def prefetch(reqs)
  end

  ##
  # When true, this set is allowed to access the network when looking up
  # specifications or dependencies.

  def remote? # :nodoc:
    @remote
  end

end
PK9H[��I�

,share/rubygems/rubygems/resolver/conflict.rbnu�[���# frozen_string_literal: true
##
# Used internally to indicate that a dependency conflicted
# with a spec that would be activated.

class Gem::Resolver::Conflict

  ##
  # The specification that was activated prior to the conflict

  attr_reader :activated

  ##
  # The dependency that is in conflict with the activated gem.

  attr_reader :dependency

  attr_reader :failed_dep # :nodoc:

  ##
  # Creates a new resolver conflict when +dependency+ is in conflict with an
  # already +activated+ specification.

  def initialize(dependency, activated, failed_dep=dependency)
    @dependency = dependency
    @activated = activated
    @failed_dep = failed_dep
  end

  def ==(other) # :nodoc:
    self.class === other and
      @dependency == other.dependency and
      @activated  == other.activated  and
      @failed_dep == other.failed_dep
  end

  ##
  # A string explanation of the conflict.

  def explain
    "<Conflict wanted: #{@failed_dep}, had: #{activated.spec.full_name}>"
  end

  ##
  # Return the 2 dependency objects that conflicted

  def conflicting_dependencies
    [@failed_dep.dependency, @activated.request.dependency]
  end

  ##
  # Explanation of the conflict used by exceptions to print useful messages

  def explanation
    activated   = @activated.spec.full_name
    dependency  = @failed_dep.dependency
    requirement = dependency.requirement
    alternates  = dependency.matching_specs.map { |spec| spec.full_name }

    unless alternates.empty?
      matching = <<-MATCHING.chomp

  Gems matching %s:
    %s
      MATCHING

      matching = matching % [
        dependency,
        alternates.join(', '),
      ]
    end

    explanation = <<-EXPLANATION
  Activated %s
  which does not match conflicting dependency (%s)

  Conflicting dependency chains:
    %s

  versus:
    %s
%s
    EXPLANATION

    explanation % [
      activated, requirement,
      request_path(@activated).reverse.join(", depends on\n    "),
      request_path(@failed_dep).reverse.join(", depends on\n    "),
      matching,
    ]
  end

  ##
  # Returns true if the conflicting dependency's name matches +spec+.

  def for_spec?(spec)
    @dependency.name == spec.name
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Dependency conflict: ', ']' do
      q.breakable

      q.text 'activated '
      q.pp @activated

      q.breakable
      q.text ' dependency '
      q.pp @dependency

      q.breakable
      if @dependency == @failed_dep
        q.text ' failed'
      else
        q.text ' failed dependency '
        q.pp @failed_dep
      end
    end
  end

  ##
  # Path of activations from the +current+ list.

  def request_path(current)
    path = []

    while current do
      case current
      when Gem::Resolver::ActivationRequest then
        path <<
          "#{current.request.dependency}, #{current.spec.version} activated"

        current = current.parent
      when Gem::Resolver::DependencyRequest then
        path << "#{current.dependency}"

        current = current.requester
      else
        raise Gem::Exception, "[BUG] unknown request class #{current.class}"
      end
    end

    path = ['user request (gem command or Gemfile)'] if path.empty?

    path
  end

  ##
  # Return the Specification that listed the dependency

  def requester
    @failed_dep.requester
  end

end
PK9H[�����	�	+share/rubygems/rubygems/resolver/api_set.rbnu�[���# frozen_string_literal: true
##
# The global rubygems pool, available via the rubygems.org API.
# Returns instances of APISpecification.

class Gem::Resolver::APISet < Gem::Resolver::Set

  ##
  # The URI for the dependency API this APISet uses.

  attr_reader :dep_uri # :nodoc:

  ##
  # The Gem::Source that gems are fetched from

  attr_reader :source

  ##
  # The corresponding place to fetch gems.

  attr_reader :uri

  ##
  # Creates a new APISet that will retrieve gems from +uri+ using the RubyGems
  # API URL +dep_uri+ which is described at
  # https://guides.rubygems.org/rubygems-org-api

  def initialize(dep_uri = 'https://rubygems.org/api/v1/dependencies')
    super()

    dep_uri = URI dep_uri unless URI === dep_uri # for ruby 1.8

    @dep_uri = dep_uri
    @uri     = dep_uri + '../..'

    @data   = Hash.new { |h,k| h[k] = [] }
    @source = Gem::Source.new @uri

    @to_fetch = []
  end

  ##
  # Return an array of APISpecification objects matching
  # DependencyRequest +req+.

  def find_all(req)
    res = []

    return res unless @remote

    if @to_fetch.include?(req.name)
      prefetch_now
    end

    versions(req.name).each do |ver|
      if req.dependency.match? req.name, ver[:number]
        res << Gem::Resolver::APISpecification.new(self, ver)
      end
    end

    res
  end

  ##
  # A hint run by the resolver to allow the Set to fetch
  # data for DependencyRequests +reqs+.

  def prefetch(reqs)
    return unless @remote
    names = reqs.map { |r| r.dependency.name }
    needed = names - @data.keys - @to_fetch

    @to_fetch += needed
  end

  def prefetch_now # :nodoc:
    needed, @to_fetch = @to_fetch, []

    uri = @dep_uri + "?gems=#{needed.sort.join ','}"
    str = Gem::RemoteFetcher.fetcher.fetch_path uri

    loaded = []

    Marshal.load(str).each do |ver|
      name = ver[:name]

      @data[name] << ver
      loaded << name
    end

    (needed - loaded).each do |missing|
      @data[missing] = []
    end
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[APISet', ']' do
      q.breakable
      q.text "URI: #{@dep_uri}"

      q.breakable
      q.text 'gem names:'
      q.pp @data.keys
    end
  end

  ##
  # Return data for all versions of the gem +name+.

  def versions(name) # :nodoc:
    if @data.key?(name)
      return @data[name]
    end

    uri = @dep_uri + "?gems=#{name}"
    str = Gem::RemoteFetcher.fetcher.fetch_path uri

    Marshal.load(str).each do |ver|
      @data[ver[:name]] << ver
    end

    @data[name]
  end

end
PK9H[�w<1share/rubygems/rubygems/resolver/installer_set.rbnu�[���# frozen_string_literal: true
##
# A set of gems for installation sourced from remote sources and local .gem
# files

class Gem::Resolver::InstallerSet < Gem::Resolver::Set

  ##
  # List of Gem::Specification objects that must always be installed.

  attr_reader :always_install # :nodoc:

  ##
  # Only install gems in the always_install list

  attr_accessor :ignore_dependencies # :nodoc:

  ##
  # Do not look in the installed set when finding specifications.  This is
  # used by the --install-dir option to `gem install`

  attr_accessor :ignore_installed # :nodoc:

  ##
  # The remote_set looks up remote gems for installation.

  attr_reader :remote_set # :nodoc:

  ##
  # Creates a new InstallerSet that will look for gems in +domain+.

  def initialize(domain)
    super()

    @domain = domain
    @remote = consider_remote?

    @f = Gem::SpecFetcher.fetcher

    @always_install      = []
    @ignore_dependencies = false
    @ignore_installed    = false
    @local               = {}
    @local_source        = Gem::Source::Local.new
    @remote_set          = Gem::Resolver::BestSet.new
    @specs               = {}
  end

  ##
  # Looks up the latest specification for +dependency+ and adds it to the
  # always_install list.

  def add_always_install(dependency)
    request = Gem::Resolver::DependencyRequest.new dependency, nil

    found = find_all request

    found.delete_if do |s|
      s.version.prerelease? and not s.local?
    end unless dependency.prerelease?

    found = found.select do |s|
      Gem::Source::SpecificFile === s.source or
        Gem::Platform::RUBY == s.platform or
        Gem::Platform.local === s.platform
    end

    if found.empty?
      exc = Gem::UnsatisfiableDependencyError.new request
      exc.errors = errors

      raise exc
    end

    newest = found.max_by do |s|
      [s.version, s.platform == Gem::Platform::RUBY ? -1 : 1]
    end

    @always_install << newest.spec
  end

  ##
  # Adds a local gem requested using +dep_name+ with the given +spec+ that can
  # be loaded and installed using the +source+.

  def add_local(dep_name, spec, source)
    @local[dep_name] = [spec, source]
  end

  ##
  # Should local gems should be considered?

  def consider_local? # :nodoc:
    @domain == :both or @domain == :local
  end

  ##
  # Should remote gems should be considered?

  def consider_remote? # :nodoc:
    @domain == :both or @domain == :remote
  end

  ##
  # Errors encountered while resolving gems

  def errors
    @errors + @remote_set.errors
  end

  ##
  # Returns an array of IndexSpecification objects matching DependencyRequest
  # +req+.

  def find_all(req)
    res = []

    dep = req.dependency

    return res if @ignore_dependencies and
              @always_install.none? { |spec| dep.match? spec }

    name = dep.name

    dep.matching_specs.each do |gemspec|
      next if @always_install.any? { |spec| spec.name == gemspec.name }

      res << Gem::Resolver::InstalledSpecification.new(self, gemspec)
    end unless @ignore_installed

    if consider_local?
      matching_local = @local.values.select do |spec, _|
        req.match? spec
      end.map do |spec, source|
        Gem::Resolver::LocalSpecification.new self, spec, source
      end

      res.concat matching_local

      begin
        if local_spec = @local_source.find_gem(name, dep.requirement)
          res << Gem::Resolver::IndexSpecification.new(
            self, local_spec.name, local_spec.version,
            @local_source, local_spec.platform)
        end
      rescue Gem::Package::FormatError
        # ignore
      end
    end

    res.delete_if do |spec|
      spec.version.prerelease? and not dep.prerelease?
    end

    res.concat @remote_set.find_all req if consider_remote?

    res
  end

  def prefetch(reqs)
    @remote_set.prefetch(reqs) if consider_remote?
  end

  def prerelease=(allow_prerelease)
    super

    @remote_set.prerelease = allow_prerelease
  end

  def inspect # :nodoc:
    always_install = @always_install.map { |s| s.full_name }

    '#<%s domain: %s specs: %p always install: %p>' % [
      self.class, @domain, @specs.keys, always_install,
    ]
  end

  ##
  # Called from IndexSpecification to get a true Specification
  # object.

  def load_spec(name, ver, platform, source) # :nodoc:
    key = "#{name}-#{ver}-#{platform}"

    @specs.fetch key do
      tuple = Gem::NameTuple.new name, ver, platform

      @specs[key] = source.fetch_spec tuple
    end
  end

  ##
  # Has a local gem for +dep_name+ been added to this set?

  def local?(dep_name) # :nodoc:
    spec, _ = @local[dep_name]

    spec
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[InstallerSet', ']' do
      q.breakable
      q.text "domain: #{@domain}"

      q.breakable
      q.text 'specs: '
      q.pp @specs.keys

      q.breakable
      q.text 'always install: '
      q.pp @always_install
    end
  end

  def remote=(remote) # :nodoc:
    case @domain
    when :local then
      @domain = :both if remote
    when :remote then
      @domain = nil unless remote
    when :both then
      @domain = :local unless remote
    end
  end

end
PK9H[ۄ�U;;6share/rubygems/rubygems/resolver/spec_specification.rbnu�[���# frozen_string_literal: true
##
# The Resolver::SpecSpecification contains common functionality for
# Resolver specifications that are backed by a Gem::Specification.

class Gem::Resolver::SpecSpecification < Gem::Resolver::Specification

  ##
  # A SpecSpecification is created for a +set+ for a Gem::Specification in
  # +spec+.  The +source+ is either where the +spec+ came from, or should be
  # loaded from.

  def initialize(set, spec, source = nil)
    @set    = set
    @source = source
    @spec   = spec
  end

  ##
  # The dependencies of the gem for this specification

  def dependencies
    spec.dependencies
  end

  ##
  # The name and version of the specification.
  #
  # Unlike Gem::Specification#full_name, the platform is not included.

  def full_name
    "#{spec.name}-#{spec.version}"
  end

  ##
  # The name of the gem for this specification

  def name
    spec.name
  end

  ##
  # The platform this gem works on.

  def platform
    spec.platform
  end

  ##
  # The version of the gem for this specification.

  def version
    spec.version
  end

end
PK9H[]�Sm''7share/rubygems/rubygems/resolver/local_specification.rbnu�[���# frozen_string_literal: true
##
# A LocalSpecification comes from a .gem file on the local filesystem.

class Gem::Resolver::LocalSpecification < Gem::Resolver::SpecSpecification

  ##
  # Returns +true+ if this gem is installable for the current platform.

  def installable_platform?
    return true if @source.kind_of? Gem::Source::SpecificFile

    super
  end

  def local? # :nodoc:
    true
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[LocalSpecification', ']' do
      q.breakable
      q.text "name: #{name}"

      q.breakable
      q.text "version: #{version}"

      q.breakable
      q.text "platform: #{platform}"

      q.breakable
      q.text 'dependencies:'
      q.breakable
      q.pp dependencies

      q.breakable
      q.text "source: #{@source.path}"
    end
  end

end
PK9H[z��2tt,share/rubygems/rubygems/resolver/best_set.rbnu�[���# frozen_string_literal: true
##
# The BestSet chooses the best available method to query a remote index.
#
# It combines IndexSet and APISet

class Gem::Resolver::BestSet < Gem::Resolver::ComposedSet

  ##
  # Creates a BestSet for the given +sources+ or Gem::sources if none are
  # specified.  +sources+ must be a Gem::SourceList.

  def initialize(sources = Gem.sources)
    super()

    @sources = sources
  end

  ##
  # Picks which sets to use for the configured sources.

  def pick_sets # :nodoc:
    @sources.each_source do |source|
      @sets << source.dependency_resolver_set
    end
  end

  def find_all(req) # :nodoc:
    pick_sets if @remote and @sets.empty?

    super
  rescue Gem::RemoteFetcher::FetchError => e
    replace_failed_api_set e

    retry
  end

  def prefetch(reqs) # :nodoc:
    pick_sets if @remote and @sets.empty?

    super
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[BestSet', ']' do
      q.breakable
      q.text 'sets:'

      q.breakable
      q.pp @sets
    end
  end

  ##
  # Replaces a failed APISet for the URI in +error+ with an IndexSet.
  #
  # If no matching APISet can be found the original +error+ is raised.
  #
  # The calling method must retry the exception to repeat the lookup.

  def replace_failed_api_set(error) # :nodoc:
    uri = error.uri
    uri = URI uri unless URI === uri
    uri.query = nil

    raise error unless api_set = @sets.find do |set|
      Gem::Resolver::APISet === set and set.dep_uri == uri
    end

    index_set = Gem::Resolver::IndexSet.new api_set.source

    @sets.map! do |set|
      next set unless set == api_set
      index_set
    end
  end

end
PK9H[_��kk6share/rubygems/rubygems/resolver/activation_request.rbnu�[���# frozen_string_literal: true
##
# Specifies a Specification object that should be activated.  Also contains a
# dependency that was used to introduce this activation.

class Gem::Resolver::ActivationRequest

  ##
  # The parent request for this activation request.

  attr_reader :request

  ##
  # The specification to be activated.

  attr_reader :spec

  ##
  # Creates a new ActivationRequest that will activate +spec+.  The parent
  # +request+ is used to provide diagnostics in case of conflicts.

  def initialize(spec, request)
    @spec = spec
    @request = request
  end

  def ==(other) # :nodoc:
    case other
    when Gem::Specification
      @spec == other
    when Gem::Resolver::ActivationRequest
      @spec == other.spec && @request == other.request
    else
      false
    end
  end

  ##
  # Is this activation request for a development dependency?

  def development?
    @request.development?
  end

  ##
  # Downloads a gem at +path+ and returns the file path.

  def download(path)
    Gem.ensure_gem_subdirectories path

    if @spec.respond_to? :sources
      exception = nil
      path = @spec.sources.find do |source|
        begin
          source.download full_spec, path
        rescue exception
        end
      end
      return path      if path
      raise  exception if exception

    elsif @spec.respond_to? :source
      source = @spec.source
      source.download full_spec, path

    else
      source = Gem.sources.first
      source.download full_spec, path
    end
  end

  ##
  # The full name of the specification to be activated.

  def full_name
    name_tuple.full_name
  end

  alias_method :to_s, :full_name

  ##
  # The Gem::Specification for this activation request.

  def full_spec
    Gem::Specification === @spec ? @spec : @spec.spec
  end

  def inspect # :nodoc:
    '#<%s for %p from %s>' % [
      self.class, @spec, @request
    ]
  end

  ##
  # True if the requested gem has already been installed.

  def installed?
    case @spec
    when Gem::Resolver::VendorSpecification then
      true
    else
      this_spec = full_spec

      Gem::Specification.any? do |s|
        s == this_spec
      end
    end
  end

  ##
  # The name of this activation request's specification

  def name
    @spec.name
  end

  ##
  # Return the ActivationRequest that contained the dependency
  # that we were activated for.

  def parent
    @request.requester
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Activation request', ']' do
      q.breakable
      q.pp @spec

      q.breakable
      q.text ' for '
      q.pp @request
    end
  end

  ##
  # The version of this activation request's specification

  def version
    @spec.version
  end

  ##
  # The platform of this activation request's specification

  def platform
    @spec.platform
  end

  private

  def name_tuple
    @name_tuple ||= Gem::NameTuple.new(name, version, platform)
  end

end
PK9H[D���RR-share/rubygems/rubygems/resolver/molinillo.rbnu�[���# frozen_string_literal: true
require 'rubygems/resolver/molinillo/lib/molinillo'
PK9H[�3�$EE8share/rubygems/rubygems/resolver/vendor_specification.rbnu�[���# frozen_string_literal: true
##
# A VendorSpecification represents a gem that has been unpacked into a project
# and is being loaded through a gem dependencies file through the +path:+
# option.

class Gem::Resolver::VendorSpecification < Gem::Resolver::SpecSpecification

  def ==(other) # :nodoc:
    self.class === other and
      @set  == other.set and
      @spec == other.spec and
      @source == other.source
  end

  ##
  # This is a null install as this gem was unpacked into a directory.
  # +options+ are ignored.

  def install(options = {})
    yield nil
  end

end
PK9H[e���5share/rubygems/rubygems/resolver/git_specification.rbnu�[���# frozen_string_literal: true
##
# A GitSpecification represents a gem that is sourced from a git repository
# and is being loaded through a gem dependencies file through the +git:+
# option.

class Gem::Resolver::GitSpecification < Gem::Resolver::SpecSpecification

  def ==(other) # :nodoc:
    self.class === other and
      @set  == other.set and
      @spec == other.spec and
      @source == other.source
  end

  def add_dependency(dependency) # :nodoc:
    spec.dependencies << dependency
  end

  ##
  # Installing a git gem only involves building the extensions and generating
  # the executables.

  def install(options = {})
    require 'rubygems/installer'

    installer = Gem::Installer.for_spec spec, options

    yield installer if block_given?

    installer.run_pre_install_hooks
    installer.build_extensions
    installer.run_post_build_hooks
    installer.generate_bin
    installer.run_post_install_hooks
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[GitSpecification', ']' do
      q.breakable
      q.text "name: #{name}"

      q.breakable
      q.text "version: #{version}"

      q.breakable
      q.text 'dependencies:'
      q.breakable
      q.pp dependencies

      q.breakable
      q.text "source:"
      q.breakable
      q.pp @source
    end
  end

end
PK9H[�eL��7share/rubygems/rubygems/resolver/index_specification.rbnu�[���# frozen_string_literal: true
##
# Represents a possible Specification object returned from IndexSet.  Used to
# delay needed to download full Specification objects when only the +name+
# and +version+ are needed.

class Gem::Resolver::IndexSpecification < Gem::Resolver::Specification

  ##
  # An IndexSpecification is created from the index format described in `gem
  # help generate_index`.
  #
  # The +set+ contains other specifications for this (URL) +source+.
  #
  # The +name+, +version+ and +platform+ are the name, version and platform of
  # the gem.

  def initialize(set, name, version, source, platform)
    super()

    @set = set
    @name = name
    @version = version
    @source = source
    @platform = platform.to_s

    @spec = nil
  end

  ##
  # The dependencies of the gem for this specification

  def dependencies
    spec.dependencies
  end

  def inspect # :nodoc:
    '#<%s %s source %s>' % [self.class, full_name, @source]
  end

  def pretty_print(q) # :nodoc:
    q.group 2, '[Index specification', ']' do
      q.breakable
      q.text full_name

      unless Gem::Platform::RUBY == @platform
        q.breakable
        q.text @platform.to_s
      end

      q.breakable
      q.text 'source '
      q.pp @source
    end
  end

  ##
  # Fetches a Gem::Specification for this IndexSpecification from the #source.

  def spec # :nodoc:
    @spec ||=
      begin
        tuple = Gem::NameTuple.new @name, @version, @platform

        @source.fetch_spec tuple
      end
  end

end
PK9H[nE#/share/rubygems/rubygems/resolver/current_set.rbnu�[���# frozen_string_literal: true
##
# A set which represents the installed gems. Respects
# all the normal settings that control where to look
# for installed gems.

class Gem::Resolver::CurrentSet < Gem::Resolver::Set

  def find_all(req)
    req.dependency.matching_specs
  end

end
PK9H[��4�	�	share/rubygems/rubygems/util.rbnu�[���# frozen_string_literal: true
##
# This module contains various utility methods as module methods.

module Gem::Util

  @silent_mutex = nil

  ##
  # Zlib::GzipReader wrapper that unzips +data+.

  def self.gunzip(data)
    require 'zlib'
    require 'stringio'
    data = StringIO.new(data, 'r')

    gzip_reader = begin
                    Zlib::GzipReader.new(data)
                  rescue Zlib::GzipFile::Error => e
                    raise e.class, e.inspect, e.backtrace
                  end

    unzipped = gzip_reader.read
    unzipped.force_encoding Encoding::BINARY
    unzipped
  end

  ##
  # Zlib::GzipWriter wrapper that zips +data+.

  def self.gzip(data)
    require 'zlib'
    require 'stringio'
    zipped = StringIO.new(String.new, 'w')
    zipped.set_encoding Encoding::BINARY

    Zlib::GzipWriter.wrap zipped do |io|
      io.write data
    end

    zipped.string
  end

  ##
  # A Zlib::Inflate#inflate wrapper

  def self.inflate(data)
    require 'zlib'
    Zlib::Inflate.inflate data
  end

  ##
  # This calls IO.popen and reads the result

  def self.popen(*command)
    IO.popen command, &:read
  end

  ##
  # Invokes system, but silences all output.

  def self.silent_system(*command)
    opt = {:out => IO::NULL, :err => [:child, :out]}
    if Hash === command.last
      opt.update(command.last)
      cmds = command[0...-1]
    else
      cmds = command.dup
    end
    system(*(cmds << opt))
  end

  ##
  # Enumerates the parents of +directory+.

  def self.traverse_parents(directory, &block)
    return enum_for __method__, directory unless block_given?

    here = File.expand_path directory
    loop do
      Dir.chdir here, &block rescue Errno::EACCES

      new_here = File.expand_path('..', here)
      return if new_here == here # toplevel
      here = new_here
    end
  end

  ##
  # Globs for files matching +pattern+ inside of +directory+,
  # returning absolute paths to the matching files.

  def self.glob_files_in_dir(glob, base_path)
    if RUBY_VERSION >= "2.5"
      Dir.glob(glob, base: base_path).map! {|f| File.expand_path(f, base_path) }
    else
      Dir.glob(File.expand_path(glob, base_path))
    end
  end

  ##
  # Corrects +path+ (usually returned by `URI.parse().path` on Windows), that
  # comes with a leading slash.

  def self.correct_for_windows_path(path)
    if path[0].chr == '/' && path[1].chr =~ /[a-z]/i && path[2].chr == ':'
      path[1..-1]
    else
      path
    end
  end

end
PK9H[.[�'share/rubygems/rubygems/source_local.rbnu�[���# frozen_string_literal: true
require 'rubygems/source'
require 'rubygems/source_local'

unless Gem::Deprecate.skip
  Kernel.warn "#{Gem.location_of_caller(3).join(':')}: Warning: Requiring rubygems/source_local is deprecated; please use rubygems/source/local instead."
end
PK9H[&��*-*-"share/rubygems/rubygems/indexer.rbnu�[���# frozen_string_literal: true
require 'rubygems'
require 'rubygems/package'
require 'time'
require 'tmpdir'

rescue_exceptions = [LoadError]
begin
  require 'bundler/errors'
rescue LoadError # this rubygems + old ruby
else # this rubygems + ruby trunk with bundler
  rescue_exceptions << Bundler::GemfileNotFound
end
begin
  gem 'builder'
  require 'builder/xchar'
rescue *rescue_exceptions
end

##
# Top level class for building the gem repository index.

class Gem::Indexer

  include Gem::UserInteraction

  ##
  # Build indexes for RubyGems 1.2.0 and newer when true

  attr_accessor :build_modern

  ##
  # Index install location

  attr_reader :dest_directory

  ##
  # Specs index install location

  attr_reader :dest_specs_index

  ##
  # Latest specs index install location

  attr_reader :dest_latest_specs_index

  ##
  # Prerelease specs index install location

  attr_reader :dest_prerelease_specs_index

  ##
  # Index build directory

  attr_reader :directory

  ##
  # Create an indexer that will index the gems in +directory+.

  def initialize(directory, options = {})
    require 'fileutils'
    require 'tmpdir'
    require 'zlib'

    unless defined?(Builder::XChar)
      raise "Gem::Indexer requires that the XML Builder library be installed:" +
            "\n\tgem install builder"
    end

    options = { :build_modern => true }.merge options

    @build_modern = options[:build_modern]

    @dest_directory = directory
    @directory = Dir.mktmpdir 'gem_generate_index'

    marshal_name = "Marshal.#{Gem.marshal_version}"

    @master_index = File.join @directory, 'yaml'
    @marshal_index = File.join @directory, marshal_name

    @quick_dir = File.join @directory, 'quick'
    @quick_marshal_dir = File.join @quick_dir, marshal_name
    @quick_marshal_dir_base = File.join "quick", marshal_name # FIX: UGH

    @quick_index = File.join @quick_dir, 'index'
    @latest_index = File.join @quick_dir, 'latest_index'

    @specs_index = File.join @directory, "specs.#{Gem.marshal_version}"
    @latest_specs_index =
      File.join(@directory, "latest_specs.#{Gem.marshal_version}")
    @prerelease_specs_index =
      File.join(@directory, "prerelease_specs.#{Gem.marshal_version}")
    @dest_specs_index =
      File.join(@dest_directory, "specs.#{Gem.marshal_version}")
    @dest_latest_specs_index =
      File.join(@dest_directory, "latest_specs.#{Gem.marshal_version}")
    @dest_prerelease_specs_index =
      File.join(@dest_directory, "prerelease_specs.#{Gem.marshal_version}")

    @files = []
  end

  ##
  # Build various indices

  def build_indices
    specs = map_gems_to_specs gem_file_list
    Gem::Specification._resort! specs
    build_marshal_gemspecs specs
    build_modern_indices specs if @build_modern

    compress_indices
  end

  ##
  # Builds Marshal quick index gemspecs.

  def build_marshal_gemspecs(specs)
    count = specs.count
    progress = ui.progress_reporter count,
                                    "Generating Marshal quick index gemspecs for #{count} gems",
                                    "Complete"

    files = []

    Gem.time 'Generated Marshal quick index gemspecs' do
      specs.each do |spec|
        next if spec.default_gem?
        spec_file_name = "#{spec.original_name}.gemspec.rz"
        marshal_name = File.join @quick_marshal_dir, spec_file_name

        marshal_zipped = Gem.deflate Marshal.dump(spec)

        File.open marshal_name, 'wb' do |io|
          io.write marshal_zipped
        end

        files << marshal_name

        progress.updated spec.original_name
      end

      progress.done
    end

    @files << @quick_marshal_dir

    files
  end

  ##
  # Build a single index for RubyGems 1.2 and newer

  def build_modern_index(index, file, name)
    say "Generating #{name} index"

    Gem.time "Generated #{name} index" do
      open(file, 'wb') do |io|
        specs = index.map do |*spec|
          # We have to splat here because latest_specs is an array, while the
          # others are hashes.
          spec = spec.flatten.last
          platform = spec.original_platform

          # win32-api-1.0.4-x86-mswin32-60
          unless String === platform
            alert_warning "Skipping invalid platform in gem: #{spec.full_name}"
            next
          end

          platform = Gem::Platform::RUBY if platform.nil? or platform.empty?
          [spec.name, spec.version, platform]
        end

        specs = compact_specs(specs)
        Marshal.dump(specs, io)
      end
    end
  end

  ##
  # Builds indices for RubyGems 1.2 and newer. Handles full, latest, prerelease

  def build_modern_indices(specs)
    prerelease, released = specs.partition do |s|
      s.version.prerelease?
    end
    latest_specs =
      Gem::Specification._latest_specs specs

    build_modern_index(released.sort, @specs_index, 'specs')
    build_modern_index(latest_specs.sort, @latest_specs_index, 'latest specs')
    build_modern_index(prerelease.sort, @prerelease_specs_index,
                       'prerelease specs')

    @files += [@specs_index,
               "#{@specs_index}.gz",
               @latest_specs_index,
               "#{@latest_specs_index}.gz",
               @prerelease_specs_index,
               "#{@prerelease_specs_index}.gz"]
  end

  def map_gems_to_specs(gems)
    gems.map do |gemfile|
      if File.size(gemfile) == 0
        alert_warning "Skipping zero-length gem: #{gemfile}"
        next
      end

      begin
        spec = Gem::Package.new(gemfile).spec
        spec.loaded_from = gemfile

        spec.abbreviate
        spec.sanitize

        spec
      rescue SignalException
        alert_error "Received signal, exiting"
        raise
      rescue Exception => e
        msg = ["Unable to process #{gemfile}",
               "#{e.message} (#{e.class})",
               "\t#{e.backtrace.join "\n\t"}"].join("\n")
        alert_error msg
      end
    end.compact
  end

  ##
  # Compresses indices on disk
  #--
  # All future files should be compressed using gzip, not deflate

  def compress_indices
    say "Compressing indices"

    Gem.time 'Compressed indices' do
      if @build_modern
        gzip @specs_index
        gzip @latest_specs_index
        gzip @prerelease_specs_index
      end
    end
  end

  ##
  # Compacts Marshal output for the specs index data source by using identical
  # objects as much as possible.

  def compact_specs(specs)
    names = {}
    versions = {}
    platforms = {}

    specs.map do |(name, version, platform)|
      names[name] = name unless names.include? name
      versions[version] = version unless versions.include? version
      platforms[platform] = platform unless platforms.include? platform

      [names[name], versions[version], platforms[platform]]
    end
  end

  ##
  # Compress +filename+ with +extension+.

  def compress(filename, extension)
    data = Gem.read_binary filename

    zipped = Gem.deflate data

    File.open "#{filename}.#{extension}", 'wb' do |io|
      io.write zipped
    end
  end

  ##
  # List of gem file names to index.

  def gem_file_list
    Gem::Util.glob_files_in_dir("*.gem", File.join(@dest_directory, "gems"))
  end

  ##
  # Builds and installs indices.

  def generate_index
    make_temp_directories
    build_indices
    install_indices
  rescue SignalException
  ensure
    FileUtils.rm_rf @directory
  end

  ##
  # Zlib::GzipWriter wrapper that gzips +filename+ on disk.

  def gzip(filename)
    Zlib::GzipWriter.open "#{filename}.gz" do |io|
      io.write Gem.read_binary(filename)
    end
  end

  ##
  # Install generated indices into the destination directory.

  def install_indices
    verbose = Gem.configuration.really_verbose

    say "Moving index into production dir #{@dest_directory}" if verbose

    files = @files
    files.delete @quick_marshal_dir if files.include? @quick_dir

    if files.include? @quick_marshal_dir and not files.include? @quick_dir
      files.delete @quick_marshal_dir

      dst_name = File.join(@dest_directory, @quick_marshal_dir_base)

      FileUtils.mkdir_p File.dirname(dst_name), :verbose => verbose
      FileUtils.rm_rf dst_name, :verbose => verbose
      FileUtils.mv(@quick_marshal_dir, dst_name,
                   :verbose => verbose, :force => true)
    end

    files = files.map do |path|
      path.sub(/^#{Regexp.escape @directory}\/?/, '') # HACK?
    end

    files.each do |file|
      src_name = File.join @directory, file
      dst_name = File.join @dest_directory, file

      FileUtils.rm_rf dst_name, :verbose => verbose
      FileUtils.mv(src_name, @dest_directory,
                   :verbose => verbose, :force => true)
    end
  end

  ##
  # Make directories for index generation

  def make_temp_directories
    FileUtils.rm_rf @directory
    FileUtils.mkdir_p @directory, :mode => 0700
    FileUtils.mkdir_p @quick_marshal_dir
  end

  ##
  # Ensure +path+ and path with +extension+ are identical.

  def paranoid(path, extension)
    data = Gem.read_binary path
    compressed_data = Gem.read_binary "#{path}.#{extension}"

    unless data == Gem::Util.inflate(compressed_data)
      raise "Compressed file #{compressed_path} does not match uncompressed file #{path}"
    end
  end

  ##
  # Perform an in-place update of the repository from newly added gems.

  def update_index
    make_temp_directories

    specs_mtime = File.stat(@dest_specs_index).mtime
    newest_mtime = Time.at 0

    updated_gems = gem_file_list.select do |gem|
      gem_mtime = File.stat(gem).mtime
      newest_mtime = gem_mtime if gem_mtime > newest_mtime
      gem_mtime >= specs_mtime
    end

    if updated_gems.empty?
      say 'No new gems'
      terminate_interaction 0
    end

    specs = map_gems_to_specs updated_gems
    prerelease, released = specs.partition { |s| s.version.prerelease? }

    files = build_marshal_gemspecs specs

    Gem.time 'Updated indexes' do
      update_specs_index released, @dest_specs_index, @specs_index
      update_specs_index released, @dest_latest_specs_index, @latest_specs_index
      update_specs_index(prerelease,
                         @dest_prerelease_specs_index,
                         @prerelease_specs_index)
    end

    compress_indices

    verbose = Gem.configuration.really_verbose

    say "Updating production dir #{@dest_directory}" if verbose

    files << @specs_index
    files << "#{@specs_index}.gz"
    files << @latest_specs_index
    files << "#{@latest_specs_index}.gz"
    files << @prerelease_specs_index
    files << "#{@prerelease_specs_index}.gz"

    files = files.map do |path|
      path.sub(/^#{Regexp.escape @directory}\/?/, '') # HACK?
    end

    files.each do |file|
      src_name = File.join @directory, file
      dst_name = File.join @dest_directory, file # REFACTOR: duped above

      FileUtils.mv src_name, dst_name, :verbose => verbose,
                   :force => true

      File.utime newest_mtime, newest_mtime, dst_name
    end
  end

  ##
  # Combines specs in +index+ and +source+ then writes out a new copy to
  # +dest+.  For a latest index, does not ensure the new file is minimal.

  def update_specs_index(index, source, dest)
    specs_index = Marshal.load Gem.read_binary(source)

    index.each do |spec|
      platform = spec.original_platform
      platform = Gem::Platform::RUBY if platform.nil? or platform.empty?
      specs_index << [spec.name, spec.version, platform]
    end

    specs_index = compact_specs specs_index.uniq.sort

    File.open dest, 'wb' do |io|
      Marshal.dump specs_index, io
    end
  end

end
PK9H[;���	�	.share/rubygems/rubygems/core_ext/kernel_gem.rbnu�[���# frozen_string_literal: true
##
# RubyGems adds the #gem method to allow activation of specific gem versions
# and overrides the #require method on Kernel to make gems appear as if they
# live on the <code>$LOAD_PATH</code>.  See the documentation of these methods
# for further detail.

module Kernel

  ##
  # Use Kernel#gem to activate a specific version of +gem_name+.
  #
  # +requirements+ is a list of version requirements that the
  # specified gem must match, most commonly "= example.version.number".  See
  # Gem::Requirement for how to specify a version requirement.
  #
  # If you will be activating the latest version of a gem, there is no need to
  # call Kernel#gem, Kernel#require will do the right thing for you.
  #
  # Kernel#gem returns true if the gem was activated, otherwise false.  If the
  # gem could not be found, didn't match the version requirements, or a
  # different version was already activated, an exception will be raised.
  #
  # Kernel#gem should be called *before* any require statements (otherwise
  # RubyGems may load a conflicting library version).
  #
  # Kernel#gem only loads prerelease versions when prerelease +requirements+
  # are given:
  #
  #   gem 'rake', '>= 1.1.a', '< 2'
  #
  # In older RubyGems versions, the environment variable GEM_SKIP could be
  # used to skip activation of specified gems, for example to test out changes
  # that haven't been installed yet.  Now RubyGems defers to -I and the
  # RUBYLIB environment variable to skip activation of a gem.
  #
  # Example:
  #
  #   GEM_SKIP=libA:libB ruby -I../libA -I../libB ./mycode.rb

  def gem(gem_name, *requirements) # :doc:
    skip_list = (ENV['GEM_SKIP'] || "").split(/:/)
    raise Gem::LoadError, "skipping #{gem_name}" if skip_list.include? gem_name

    if gem_name.kind_of? Gem::Dependency
      unless Gem::Deprecate.skip
        warn "#{Gem.location_of_caller.join ':'}:Warning: Kernel.gem no longer "\
          "accepts a Gem::Dependency object, please pass the name "\
          "and requirements directly"
      end

      requirements = gem_name.requirement
      gem_name = gem_name.name
    end

    dep = Gem::Dependency.new(gem_name, *requirements)

    loaded = Gem.loaded_specs[gem_name]

    return false if loaded && dep.matches_spec?(loaded)

    spec = dep.to_spec

    if spec
      if Gem::LOADED_SPECS_MUTEX.owned?
        spec.activate
      else
        Gem::LOADED_SPECS_MUTEX.synchronize { spec.activate }
      end
    end
  end

  private :gem

end
PK9H[�� &��/share/rubygems/rubygems/core_ext/kernel_warn.rbnu�[���# frozen_string_literal: true

# `uplevel` keyword argument of Kernel#warn is available since ruby 2.5.
if RUBY_VERSION >= "2.5"

  module Kernel
    path = "#{__dir__}/" # Frames to be skipped start with this path.

    original_warn = method(:warn)

    remove_method :warn

    class << self

      remove_method :warn

    end

    module_function define_method(:warn) {|*messages, **kw|
      unless uplevel = kw[:uplevel]
        if Gem.java_platform?
          return original_warn.call(*messages)
        else
          return original_warn.call(*messages, **kw)
        end
      end

      # Ensure `uplevel` fits a `long`
      uplevel, = [uplevel].pack("l!").unpack("l!")

      if uplevel >= 0
        start = 0
        while uplevel >= 0
          loc, = caller_locations(start, 1)
          unless loc
            # No more backtrace
            start += uplevel
            break
          end

          start += 1

          unless loc.path.start_with?(path)
            # Non-rubygems frames
            uplevel -= 1
          end
        end
        uplevel = start
      end

      kw[:uplevel] = uplevel
      original_warn.call(*messages, **kw)
    }
  end
end
PK9H[D��nn2share/rubygems/rubygems/core_ext/kernel_require.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'monitor'

module Kernel

  RUBYGEMS_ACTIVATION_MONITOR = Monitor.new # :nodoc:

  # Make sure we have a reference to Ruby's original Kernel#require
  unless defined?(gem_original_require)
    alias gem_original_require require
    private :gem_original_require
  end

  ##
  # When RubyGems is required, Kernel#require is replaced with our own which
  # is capable of loading gems on demand.
  #
  # When you call <tt>require 'x'</tt>, this is what happens:
  # * If the file can be loaded from the existing Ruby loadpath, it
  #   is.
  # * Otherwise, installed gems are searched for a file that matches.
  #   If it's found in gem 'y', that gem is activated (added to the
  #   loadpath).
  #
  # The normal <tt>require</tt> functionality of returning false if
  # that file has already been loaded is preserved.

  def require(path)
    if RUBYGEMS_ACTIVATION_MONITOR.respond_to?(:mon_owned?)
      monitor_owned = RUBYGEMS_ACTIVATION_MONITOR.mon_owned?
    end
    RUBYGEMS_ACTIVATION_MONITOR.enter

    path = path.to_path if path.respond_to? :to_path

    if spec = Gem.find_unresolved_default_spec(path)
      # Ensure -I beats a default gem
      resolved_path = begin
        rp = nil
        load_path_check_index = Gem.load_path_insert_index - Gem.activated_gem_paths
        Gem.suffixes.each do |s|
          $LOAD_PATH[0...load_path_check_index].each do |lp|
            safe_lp = lp.dup.tap(&Gem::UNTAINT)
            begin
              if File.symlink? safe_lp # for backward compatibility
                next
              end
            rescue SecurityError
              RUBYGEMS_ACTIVATION_MONITOR.exit
              raise
            end

            full_path = File.expand_path(File.join(safe_lp, "#{path}#{s}"))
            if File.file?(full_path)
              rp = full_path
              break
            end
          end
          break if rp
        end
        rp
      end

      begin
        Kernel.send(:gem, spec.name, Gem::Requirement.default_prerelease)
      rescue Exception
        RUBYGEMS_ACTIVATION_MONITOR.exit
        raise
      end unless resolved_path
    end

    # If there are no unresolved deps, then we can use just try
    # normal require handle loading a gem from the rescue below.

    if Gem::Specification.unresolved_deps.empty?
      RUBYGEMS_ACTIVATION_MONITOR.exit
      return gem_original_require(path)
    end

    # If +path+ is for a gem that has already been loaded, don't
    # bother trying to find it in an unresolved gem, just go straight
    # to normal require.
    #--
    # TODO request access to the C implementation of this to speed up RubyGems

    if Gem::Specification.find_active_stub_by_path(path)
      RUBYGEMS_ACTIVATION_MONITOR.exit
      return gem_original_require(path)
    end

    # Attempt to find +path+ in any unresolved gems...

    found_specs = Gem::Specification.find_in_unresolved path

    # If there are no directly unresolved gems, then try and find +path+
    # in any gems that are available via the currently unresolved gems.
    # For example, given:
    #
    #   a => b => c => d
    #
    # If a and b are currently active with c being unresolved and d.rb is
    # requested, then find_in_unresolved_tree will find d.rb in d because
    # it's a dependency of c.
    #
    if found_specs.empty?
      found_specs = Gem::Specification.find_in_unresolved_tree path

      found_specs.each do |found_spec|
        found_spec.activate
      end

    # We found +path+ directly in an unresolved gem. Now we figure out, of
    # the possible found specs, which one we should activate.
    else

      # Check that all the found specs are just different
      # versions of the same gem
      names = found_specs.map(&:name).uniq

      if names.size > 1
        RUBYGEMS_ACTIVATION_MONITOR.exit
        raise Gem::LoadError, "#{path} found in multiple gems: #{names.join ', '}"
      end

      # Ok, now find a gem that has no conflicts, starting
      # at the highest version.
      valid = found_specs.find { |s| !s.has_conflicts? }

      unless valid
        le = Gem::LoadError.new "unable to find a version of '#{names.first}' to activate"
        le.name = names.first
        RUBYGEMS_ACTIVATION_MONITOR.exit
        raise le
      end

      valid.activate
    end

    RUBYGEMS_ACTIVATION_MONITOR.exit
    return gem_original_require(path)
  rescue LoadError => load_error
    RUBYGEMS_ACTIVATION_MONITOR.enter

    begin
      if load_error.message.end_with?(path) and Gem.try_activate(path)
        require_again = true
      end
    ensure
      RUBYGEMS_ACTIVATION_MONITOR.exit
    end

    return gem_original_require(path) if require_again

    raise load_error
  ensure
    if RUBYGEMS_ACTIVATION_MONITOR.respond_to?(:mon_owned?)
      if monitor_owned != (ow = RUBYGEMS_ACTIVATION_MONITOR.mon_owned?)
        STDERR.puts [$$, Thread.current, $!, $!.backtrace].inspect if $!
        raise "CRITICAL: RUBYGEMS_ACTIVATION_MONITOR.owned?: before #{monitor_owned} -> after #{ow}"
      end
    end
  end

  private :require

end
PK9H[P��2
2
&share/rubygems/rubygems/source_list.rbnu�[���# frozen_string_literal: true
require 'rubygems/source'

##
# The SourceList represents the sources rubygems has been configured to use.
# A source may be created from an array of sources:
#
#   Gem::SourceList.from %w[https://rubygems.example https://internal.example]
#
# Or by adding them:
#
#   sources = Gem::SourceList.new
#   sources << 'https://rubygems.example'
#
# The most common way to get a SourceList is Gem.sources.

class Gem::SourceList

  include Enumerable

  ##
  # Creates a new SourceList

  def initialize
    @sources = []
  end

  ##
  # The sources in this list

  attr_reader :sources

  ##
  # Creates a new SourceList from an array of sources.

  def self.from(ary)
    list = new

    list.replace ary

    return list
  end

  def initialize_copy(other) # :nodoc:
    @sources = @sources.dup
  end

  ##
  # Appends +obj+ to the source list which may be a Gem::Source, URI or URI
  # String.

  def <<(obj)
    require "uri"

    src = case obj
          when URI
            Gem::Source.new(obj)
          when Gem::Source
            obj
          else
            Gem::Source.new(URI.parse(obj))
          end

    @sources << src unless @sources.include?(src)
    src
  end

  ##
  # Replaces this SourceList with the sources in +other+  See #<< for
  # acceptable items in +other+.

  def replace(other)
    clear

    other.each do |x|
      self << x
    end

    self
  end

  ##
  # Removes all sources from the SourceList.

  def clear
    @sources.clear
  end

  ##
  # Yields each source URI in the list.

  def each
    @sources.each { |s| yield s.uri.to_s }
  end

  ##
  # Yields each source in the list.

  def each_source(&b)
    @sources.each(&b)
  end

  ##
  # Returns true if there are no sources in this SourceList.

  def empty?
    @sources.empty?
  end

  def ==(other) # :nodoc:
    to_a == other
  end

  ##
  # Returns an Array of source URI Strings.

  def to_a
    @sources.map { |x| x.uri.to_s }
  end

  alias_method :to_ary, :to_a

  ##
  # Returns the first source in the list.

  def first
    @sources.first
  end

  ##
  # Returns true if this source list includes +other+ which may be a
  # Gem::Source or a source URI.

  def include?(other)
    if other.kind_of? Gem::Source
      @sources.include? other
    else
      @sources.find { |x| x.uri.to_s == other.to_s }
    end
  end

  ##
  # Deletes +source+ from the source list which may be a Gem::Source or a URI.

  def delete(source)
    if source.kind_of? Gem::Source
      @sources.delete source
    else
      @sources.delete_if { |x| x.uri.to_s == source.to_s }
    end
  end

end
PK9H[@L///.share/rubygems/rubygems/installer_test_case.rbnu�[���# frozen_string_literal: true
require 'rubygems/test_case'
require 'rubygems/installer'

class Gem::Installer

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :bin_dir

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :build_args

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :gem_dir

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :force

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :format

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :gem_home

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :env_shebang

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :ignore_dependencies

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :format_executable

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :security_policy

  ##
  # Available through requiring rubygems/installer_test_case

  attr_writer :wrappers

end

##
# A test case for Gem::Installer.

class Gem::InstallerTestCase < Gem::TestCase

  def setup
    super

    Gem::Installer.path_warning = false
  end

  ##
  # The path where installed executables live

  def util_inst_bindir
    File.join @gemhome, "bin"
  end

  ##
  # Adds an executable named "executable" to +spec+ with the given +shebang+.
  #
  # The executable is also written to the bin dir in @tmpdir and the installed
  # gem directory for +spec+.

  def util_make_exec(spec = @spec, shebang = "#!/usr/bin/ruby", bindir = "bin")
    spec.executables = %w[executable]
    spec.bindir = bindir

    exec_path = spec.bin_file "executable"
    write_file exec_path do |io|
      io.puts shebang
    end

    bin_path = File.join @tempdir, "bin", "executable"
    write_file bin_path do |io|
      io.puts shebang
    end
  end

  ##
  # Creates the following instance variables:
  #
  # @spec::
  #   a spec named 'a', intended for regular installs
  #
  # @gem::
  #   the path to a built gem from @spec
  #
  # And returns a Gem::Installer for the @spec that installs into @gemhome

  def setup_base_installer
    @gem = setup_base_gem
    util_installer @spec, @gemhome
  end

  ##
  # Creates the following instance variables:
  #
  # @spec::
  #   a spec named 'a', intended for regular installs
  #
  # And returns a gem built for the @spec

  def setup_base_gem
    @spec = setup_base_spec
    util_build_gem @spec
    @spec.cache_file
  end

  ##
  # Sets up a generic specification for testing the rubygems installer
  #
  # And returns it

  def setup_base_spec
    quick_gem 'a' do |spec|
      util_make_exec spec
    end
  end

  ##
  # Creates the following instance variables:
  #
  # @spec::
  #   a spec named 'a', intended for regular installs
  # @user_spec::
  #   a spec named 'b', intended for user installs
  #
  # @gem::
  #   the path to a built gem from @spec
  # @user_gem::
  #   the path to a built gem from @user_spec
  #
  # And returns a Gem::Installer for the @user_spec that installs into Gem.user_dir

  def setup_base_user_installer
    @user_spec = quick_gem 'b' do |spec|
      util_make_exec spec
    end

    util_build_gem @user_spec

    @user_gem = @user_spec.cache_file

    util_installer @user_spec, Gem.user_dir, :user
  end

  ##
  # Sets up the base @gem, builds it and returns an installer for it.
  #
  def util_setup_installer
    @gem = setup_base_gem

    util_setup_gem
  end

  ##
  # Builds the @spec gem and returns an installer for it.  The built gem
  # includes:
  #
  #   bin/executable
  #   lib/code.rb
  #   ext/a/mkrf_conf.rb

  def util_setup_gem(ui = @ui)
    @spec.files << File.join('lib', 'code.rb')
    @spec.extensions << File.join('ext', 'a', 'mkrf_conf.rb')

    Dir.chdir @tempdir do
      FileUtils.mkdir_p 'bin'
      FileUtils.mkdir_p 'lib'
      FileUtils.mkdir_p File.join('ext', 'a')

      File.open File.join('bin', 'executable'), 'w' do |f|
        f.puts "raise 'ran executable'"
      end

      File.open File.join('lib', 'code.rb'), 'w' do |f|
        f.puts '1'
      end

      File.open File.join('ext', 'a', 'mkrf_conf.rb'), 'w' do |f|
        f << <<-EOF
          File.open 'Rakefile', 'w' do |rf| rf.puts "task :default" end
        EOF
      end

      yield @spec if block_given?

      use_ui ui do
        FileUtils.rm_f @gem

        @gem = Gem::Package.build @spec
      end
    end

    Gem::Installer.at @gem
  end

  ##
  # Creates an installer for +spec+ that will install into +gem_home+.  If
  # +user+ is true a user-install will be performed.

  def util_installer(spec, gem_home, user=false)
    Gem::Installer.at(spec.cache_file,
                       :install_dir => gem_home,
                       :user_install => user)
  end

end
PK9H[=��W8585+share/rubygems/rubygems/user_interaction.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'rubygems/util'
require 'rubygems/deprecate'
require 'rubygems/text'

##
# Module that defines the default UserInteraction.  Any class including this
# module will have access to the +ui+ method that returns the default UI.

module Gem::DefaultUserInteraction

  include Gem::Text

  ##
  # The default UI is a class variable of the singleton class for this
  # module.

  @ui = nil

  ##
  # Return the default UI.

  def self.ui
    @ui ||= Gem::ConsoleUI.new
  end

  ##
  # Set the default UI.  If the default UI is never explicitly set, a simple
  # console based UserInteraction will be used automatically.

  def self.ui=(new_ui)
    @ui = new_ui
  end

  ##
  # Use +new_ui+ for the duration of +block+.

  def self.use_ui(new_ui)
    old_ui = @ui
    @ui = new_ui
    yield
  ensure
    @ui = old_ui
  end

  ##
  # See DefaultUserInteraction::ui

  def ui
    Gem::DefaultUserInteraction.ui
  end

  ##
  # See DefaultUserInteraction::ui=

  def ui=(new_ui)
    Gem::DefaultUserInteraction.ui = new_ui
  end

  ##
  # See DefaultUserInteraction::use_ui

  def use_ui(new_ui, &block)
    Gem::DefaultUserInteraction.use_ui(new_ui, &block)
  end

end

##
# UserInteraction allows RubyGems to interact with the user through standard
# methods that can be replaced with more-specific UI methods for different
# displays.
#
# Since UserInteraction dispatches to a concrete UI class you may need to
# reference other classes for specific behavior such as Gem::ConsoleUI or
# Gem::SilentUI.
#
# Example:
#
#   class X
#     include Gem::UserInteraction
#
#     def get_answer
#       n = ask("What is the meaning of life?")
#     end
#   end

module Gem::UserInteraction

  include Gem::DefaultUserInteraction

  ##
  # Displays an alert +statement+.  Asks a +question+ if given.

  def alert(statement, question = nil)
    ui.alert statement, question
  end

  ##
  # Displays an error +statement+ to the error output location.  Asks a
  # +question+ if given.

  def alert_error(statement, question = nil)
    ui.alert_error statement, question
  end

  ##
  # Displays a warning +statement+ to the warning output location.  Asks a
  # +question+ if given.

  def alert_warning(statement, question = nil)
    ui.alert_warning statement, question
  end

  ##
  # Asks a +question+ and returns the answer.

  def ask(question)
    ui.ask question
  end

  ##
  # Asks for a password with a +prompt+

  def ask_for_password(prompt)
    ui.ask_for_password prompt
  end

  ##
  # Asks a yes or no +question+.  Returns true for yes, false for no.

  def ask_yes_no(question, default = nil)
    ui.ask_yes_no question, default
  end

  ##
  # Asks the user to answer +question+ with an answer from the given +list+.

  def choose_from_list(question, list)
    ui.choose_from_list question, list
  end

  ##
  # Displays the given +statement+ on the standard output (or equivalent).

  def say(statement = '')
    ui.say statement
  end

  ##
  # Terminates the RubyGems process with the given +exit_code+

  def terminate_interaction(exit_code = 0)
    ui.terminate_interaction exit_code
  end

  ##
  # Calls +say+ with +msg+ or the results of the block if really_verbose
  # is true.

  def verbose(msg = nil)
    say(clean_text(msg || yield)) if Gem.configuration.really_verbose
  end
end

##
# Gem::StreamUI implements a simple stream based user interface.

class Gem::StreamUI

  extend Gem::Deprecate

  ##
  # The input stream

  attr_reader :ins

  ##
  # The output stream

  attr_reader :outs

  ##
  # The error stream

  attr_reader :errs

  ##
  # Creates a new StreamUI wrapping +in_stream+ for user input, +out_stream+
  # for standard output, +err_stream+ for error output.  If +usetty+ is true
  # then special operations (like asking for passwords) will use the TTY
  # commands to disable character echo.

  def initialize(in_stream, out_stream, err_stream=STDERR, usetty=true)
    @ins = in_stream
    @outs = out_stream
    @errs = err_stream
    @usetty = usetty
  end

  ##
  # Returns true if TTY methods should be used on this StreamUI.

  def tty?
    @usetty && @ins.tty?
  end

  ##
  # Prints a formatted backtrace to the errors stream if backtraces are
  # enabled.

  def backtrace(exception)
    return unless Gem.configuration.backtrace

    @errs.puts "\t#{exception.backtrace.join "\n\t"}"
  end

  ##
  # Choose from a list of options.  +question+ is a prompt displayed above
  # the list.  +list+ is a list of option strings.  Returns the pair
  # [option_name, option_index].

  def choose_from_list(question, list)
    @outs.puts question

    list.each_with_index do |item, index|
      @outs.puts " #{index + 1}. #{item}"
    end

    @outs.print "> "
    @outs.flush

    result = @ins.gets

    return nil, nil unless result

    result = result.strip.to_i - 1
    return list[result], result
  end

  ##
  # Ask a question.  Returns a true for yes, false for no.  If not connected
  # to a tty, raises an exception if default is nil, otherwise returns
  # default.

  def ask_yes_no(question, default=nil)
    unless tty?
      if default.nil?
        raise Gem::OperationNotSupportedError,
              "Not connected to a tty and no default specified"
      else
        return default
      end
    end

    default_answer = case default
                     when nil
                       'yn'
                     when true
                       'Yn'
                     else
                       'yN'
                     end

    result = nil

    while result.nil? do
      result = case ask "#{question} [#{default_answer}]"
               when /^y/i then true
               when /^n/i then false
               when /^$/  then default
               else            nil
               end
    end

    return result
  end

  ##
  # Ask a question.  Returns an answer if connected to a tty, nil otherwise.

  def ask(question)
    return nil if not tty?

    @outs.print(question + "  ")
    @outs.flush

    result = @ins.gets
    result.chomp! if result
    result
  end

  ##
  # Ask for a password. Does not echo response to terminal.

  def ask_for_password(question)
    return nil if not tty?

    @outs.print(question, "  ")
    @outs.flush

    password = _gets_noecho
    @outs.puts
    password.chomp! if password
    password
  end

  def require_io_console
    @require_io_console ||= begin
      begin
        require 'io/console'
      rescue LoadError
      end
      true
    end
  end

  def _gets_noecho
    require_io_console
    @ins.noecho {@ins.gets}
  end

  ##
  # Display a statement.

  def say(statement="")
    @outs.puts statement
  end

  ##
  # Display an informational alert.  Will ask +question+ if it is not nil.

  def alert(statement, question=nil)
    @outs.puts "INFO:  #{statement}"
    ask(question) if question
  end

  ##
  # Display a warning on stderr.  Will ask +question+ if it is not nil.

  def alert_warning(statement, question=nil)
    @errs.puts "WARNING:  #{statement}"
    ask(question) if question
  end

  ##
  # Display an error message in a location expected to get error messages.
  # Will ask +question+ if it is not nil.

  def alert_error(statement, question=nil)
    @errs.puts "ERROR:  #{statement}"
    ask(question) if question
  end

  ##
  # Display a debug message on the same location as error messages.

  def debug(statement)
    @errs.puts statement
  end
  deprecate :debug, :none, 2018, 12

  ##
  # Terminate the application with exit code +status+, running any exit
  # handlers that might have been defined.

  def terminate_interaction(status = 0)
    close
    raise Gem::SystemExitException, status
  end

  def close
  end

  ##
  # Return a progress reporter object chosen from the current verbosity.

  def progress_reporter(*args)
    case Gem.configuration.verbose
    when nil, false
      SilentProgressReporter.new(@outs, *args)
    when true
      SimpleProgressReporter.new(@outs, *args)
    else
      VerboseProgressReporter.new(@outs, *args)
    end
  end

  ##
  # An absolutely silent progress reporter.

  class SilentProgressReporter

    ##
    # The count of items is never updated for the silent progress reporter.

    attr_reader :count

    ##
    # Creates a silent progress reporter that ignores all input arguments.

    def initialize(out_stream, size, initial_message, terminal_message = nil)
    end

    ##
    # Does not print +message+ when updated as this object has taken a vow of
    # silence.

    def updated(message)
    end

    ##
    # Does not print anything when complete as this object has taken a vow of
    # silence.

    def done
    end

  end

  ##
  # A basic dotted progress reporter.

  class SimpleProgressReporter

    include Gem::DefaultUserInteraction

    ##
    # The number of progress items counted so far.

    attr_reader :count

    ##
    # Creates a new progress reporter that will write to +out_stream+ for
    # +size+ items.  Shows the given +initial_message+ when progress starts
    # and the +terminal_message+ when it is complete.

    def initialize(out_stream, size, initial_message,
                   terminal_message = "complete")
      @out = out_stream
      @total = size
      @count = 0
      @terminal_message = terminal_message

      @out.puts initial_message
    end

    ##
    # Prints out a dot and ignores +message+.

    def updated(message)
      @count += 1
      @out.print "."
      @out.flush
    end

    ##
    # Prints out the terminal message.

    def done
      @out.puts "\n#{@terminal_message}"
    end

  end

  ##
  # A progress reporter that prints out messages about the current progress.

  class VerboseProgressReporter

    include Gem::DefaultUserInteraction

    ##
    # The number of progress items counted so far.

    attr_reader :count

    ##
    # Creates a new progress reporter that will write to +out_stream+ for
    # +size+ items.  Shows the given +initial_message+ when progress starts
    # and the +terminal_message+ when it is complete.

    def initialize(out_stream, size, initial_message,
                   terminal_message = 'complete')
      @out = out_stream
      @total = size
      @count = 0
      @terminal_message = terminal_message

      @out.puts initial_message
    end

    ##
    # Prints out the position relative to the total and the +message+.

    def updated(message)
      @count += 1
      @out.puts "#{@count}/#{@total}: #{message}"
    end

    ##
    # Prints out the terminal message.

    def done
      @out.puts @terminal_message
    end

  end

  ##
  # Return a download reporter object chosen from the current verbosity

  def download_reporter(*args)
    if [nil, false].include?(Gem.configuration.verbose) || !@outs.tty?
      SilentDownloadReporter.new(@outs, *args)
    else
      ThreadedDownloadReporter.new(@outs, *args)
    end
  end

  ##
  # An absolutely silent download reporter.

  class SilentDownloadReporter

    ##
    # The silent download reporter ignores all arguments

    def initialize(out_stream, *args)
    end

    ##
    # The silent download reporter does not display +filename+ or care about
    # +filesize+ because it is silent.

    def fetch(filename, filesize)
    end

    ##
    # Nothing can update the silent download reporter.

    def update(current)
    end

    ##
    # The silent download reporter won't tell you when the download is done.
    # Because it is silent.

    def done
    end

  end

  ##
  # A progress reporter that behaves nicely with threaded downloading.

  class ThreadedDownloadReporter

    MUTEX = Mutex.new

    ##
    # The current file name being displayed

    attr_reader :file_name

    ##
    # Creates a new threaded download reporter that will display on
    # +out_stream+.  The other arguments are ignored.

    def initialize(out_stream, *args)
      @file_name = nil
      @out = out_stream
    end

    ##
    # Tells the download reporter that the +file_name+ is being fetched.
    # The other arguments are ignored.

    def fetch(file_name, *args)
      if @file_name.nil?
        @file_name = file_name
        locked_puts "Fetching #{@file_name}"
      end
    end

    ##
    # Updates the threaded download reporter for the given number of +bytes+.

    def update(bytes)
      # Do nothing.
    end

    ##
    # Indicates the download is complete.

    def done
      # Do nothing.
    end

    private

    def locked_puts(message)
      MUTEX.synchronize do
        @out.puts message
      end
    end

  end

end

##
# Subclass of StreamUI that instantiates the user interaction using STDIN,
# STDOUT, and STDERR.

class Gem::ConsoleUI < Gem::StreamUI

  ##
  # The Console UI has no arguments as it defaults to reading input from
  # stdin, output to stdout and warnings or errors to stderr.

  def initialize
    super STDIN, STDOUT, STDERR, true
  end

end

##
# SilentUI is a UI choice that is absolutely silent.

class Gem::SilentUI < Gem::StreamUI

  ##
  # The SilentUI has no arguments as it does not use any stream.

  def initialize
    reader, writer = nil, nil

    reader = File.open(IO::NULL, 'r')
    writer = File.open(IO::NULL, 'w')

    super reader, writer, writer, false
  end

  def close
    super
    @ins.close
    @outs.close
  end

  def download_reporter(*args) # :nodoc:
    SilentDownloadReporter.new(@outs, *args)
  end

  def progress_reporter(*args) # :nodoc:
    SilentProgressReporter.new(@outs, *args)
  end

end
PK9H[���##/share/rubygems/rubygems/local_remote_options.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require 'uri'
require 'rubygems'

##
# Mixin methods for local and remote Gem::Command options.

module Gem::LocalRemoteOptions

  ##
  # Allows OptionParser to handle HTTP URIs.

  def accept_uri_http
    OptionParser.accept URI::HTTP do |value|
      begin
        uri = URI.parse value
      rescue URI::InvalidURIError
        raise OptionParser::InvalidArgument, value
      end

      valid_uri_schemes = ["http", "https", "file", "s3"]
      unless valid_uri_schemes.include?(uri.scheme)
        msg = "Invalid uri scheme for #{value}\nPreface URLs with one of #{valid_uri_schemes.map{|s| "#{s}://"}}"
        raise ArgumentError, msg
      end

      value
    end
  end

  ##
  # Add local/remote options to the command line parser.

  def add_local_remote_options
    add_option(:"Local/Remote", '-l', '--local',
               'Restrict operations to the LOCAL domain') do |value, options|
      options[:domain] = :local
    end

    add_option(:"Local/Remote", '-r', '--remote',
      'Restrict operations to the REMOTE domain') do |value, options|
      options[:domain] = :remote
    end

    add_option(:"Local/Remote", '-b', '--both',
               'Allow LOCAL and REMOTE operations') do |value, options|
      options[:domain] = :both
    end

    add_bulk_threshold_option
    add_clear_sources_option
    add_source_option
    add_proxy_option
    add_update_sources_option
  end

  ##
  # Add the --bulk-threshold option

  def add_bulk_threshold_option
    add_option(:"Local/Remote", '-B', '--bulk-threshold COUNT',
               "Threshold for switching to bulk",
               "synchronization (default #{Gem.configuration.bulk_threshold})") do
      |value, options|
      Gem.configuration.bulk_threshold = value.to_i
    end
  end

  ##
  # Add the --clear-sources option

  def add_clear_sources_option
    add_option(:"Local/Remote", '--clear-sources',
               'Clear the gem sources') do |value, options|

      Gem.sources = nil
      options[:sources_cleared] = true
    end
  end

  ##
  # Add the --http-proxy option

  def add_proxy_option
    accept_uri_http

    add_option(:"Local/Remote", '-p', '--[no-]http-proxy [URL]', URI::HTTP,
               'Use HTTP proxy for remote operations') do |value, options|
      options[:http_proxy] = (value == false) ? :no_proxy : value
      Gem.configuration[:http_proxy] = options[:http_proxy]
    end
  end

  ##
  # Add the --source option

  def add_source_option
    accept_uri_http

    add_option(:"Local/Remote", '-s', '--source URL', URI::HTTP,
               'Append URL to list of remote gem sources') do |source, options|

      source << '/' if source !~ /\/\z/

      if options.delete :sources_cleared
        Gem.sources = [source]
      else
        Gem.sources << source unless Gem.sources.include?(source)
      end
    end
  end

  ##
  # Add the --update-sources option

  def add_update_sources_option
    add_option(:Deprecated, '-u', '--[no-]update-sources',
               'Update local source cache') do |value, options|
      Gem.configuration.update_sources = value
    end
  end

  ##
  # Is fetching of local and remote information enabled?

  def both?
    options[:domain] == :both
  end

  ##
  # Is local fetching enabled?

  def local?
    options[:domain] == :local || options[:domain] == :both
  end

  ##
  # Is remote fetching enabled?

  def remote?
    options[:domain] == :remote || options[:domain] == :both
  end

end
PK9H[3k݃��&share/rubygems/rubygems/mock_gem_ui.rbnu�[���# frozen_string_literal: true
require 'rubygems/user_interaction'

##
# This Gem::StreamUI subclass records input and output to StringIO for
# retrieval during tests.

class Gem::MockGemUi < Gem::StreamUI

  ##
  # Raised when you haven't provided enough input to your MockGemUi

  class InputEOFError < RuntimeError

    def initialize(question)
      super "Out of input for MockGemUi on #{question.inspect}"
    end

  end

  class TermError < RuntimeError

    attr_reader :exit_code

    def initialize(exit_code)
      super
      @exit_code = exit_code
    end

  end
  class SystemExitException < RuntimeError; end

  module TTY

    attr_accessor :tty

    def tty?()
      @tty = true unless defined?(@tty)
      @tty
    end

    def noecho
      yield self
    end
  end

  def initialize(input = "")
    require 'stringio'
    ins = StringIO.new input
    outs = StringIO.new
    errs = StringIO.new

    ins.extend TTY
    outs.extend TTY
    errs.extend TTY

    super ins, outs, errs, true

    @terminated = false
  end

  def ask(question)
    raise InputEOFError, question if @ins.eof?

    super
  end

  def input
    @ins.string
  end

  def output
    @outs.string
  end

  def error
    @errs.string
  end

  def terminated?
    @terminated
  end

  def terminate_interaction(status=0)
    @terminated = true

    raise TermError, status if status != 0
    raise SystemExitException
  end

end
PK9H[T�a%share/rubygems/rubygems/uri_parser.rbnu�[���# frozen_string_literal: true

##
# The UriParser handles parsing URIs.
#

class Gem::UriParser

  ##
  # Parses the #uri, raising if it's invalid

  def parse!(uri)
    raise URI::InvalidURIError unless uri

    # Always escape URI's to deal with potential spaces and such
    # It should also be considered that source_uri may already be
    # a valid URI with escaped characters. e.g. "{DESede}" is encoded
    # as "%7BDESede%7D". If this is escaped again the percentage
    # symbols will be escaped.
    begin
      URI.parse(uri)
    rescue URI::InvalidURIError
      URI.parse(URI::DEFAULT_PARSER.escape(uri))
    end
  end

  ##
  # Parses the #uri, returning the original uri if it's invalid

  def parse(uri)
    parse!(uri)
  rescue URI::InvalidURIError
    uri
  end

end
PK9H[�$�(share/rubygems/rubygems/available_set.rbnu�[���# frozen_string_literal: true
class Gem::AvailableSet

  include Enumerable

  Tuple = Struct.new(:spec, :source)

  attr_accessor :remote # :nodoc:

  def initialize
    @set = []
    @sorted = nil
    @remote = true
  end

  attr_reader :set

  def add(spec, source)
    @set << Tuple.new(spec, source)
    @sorted = nil
    self
  end

  def <<(o)
    case o
    when Gem::AvailableSet
      s = o.set
    when Array
      s = o.map do |sp,so|
        if !sp.kind_of?(Gem::Specification) or !so.kind_of?(Gem::Source)
          raise TypeError, "Array must be in [[spec, source], ...] form"
        end

        Tuple.new(sp,so)
      end
    else
      raise TypeError, "must be a Gem::AvailableSet"
    end

    @set += s
    @sorted = nil

    self
  end

  ##
  # Yields each Tuple in this AvailableSet

  def each
    return enum_for __method__ unless block_given?

    @set.each do |tuple|
      yield tuple
    end
  end

  ##
  # Yields the Gem::Specification for each Tuple in this AvailableSet

  def each_spec
    return enum_for __method__ unless block_given?

    each do |tuple|
      yield tuple.spec
    end
  end

  def empty?
    @set.empty?
  end

  def all_specs
    @set.map { |t| t.spec }
  end

  def match_platform!
    @set.reject! { |t| !Gem::Platform.match(t.spec.platform) }
    @sorted = nil
    self
  end

  def sorted
    @sorted ||= @set.sort do |a,b|
      i = b.spec <=> a.spec
      i != 0 ? i : (a.source <=> b.source)
    end
  end

  def size
    @set.size
  end

  def source_for(spec)
    f = @set.find { |t| t.spec == spec }
    f.source
  end

  ##
  # Converts this AvailableSet into a RequestSet that can be used to install
  # gems.
  #
  # If +development+ is :none then no development dependencies are installed.
  # Other options are :shallow for only direct development dependencies of the
  # gems in this set or :all for all development dependencies.

  def to_request_set(development = :none)
    request_set = Gem::RequestSet.new
    request_set.development = :all == development

    each_spec do |spec|
      request_set.always_install << spec

      request_set.gem spec.name, spec.version
      request_set.import spec.development_dependencies if
        :shallow == development
    end

    request_set
  end

  ##
  #
  # Used by the Resolver, the protocol to use a AvailableSet as a
  # search Set.

  def find_all(req)
    dep = req.dependency

    match = @set.find_all do |t|
      dep.match? t.spec
    end

    match.map do |t|
      Gem::Resolver::LocalSpecification.new(self, t.spec, t.source)
    end
  end

  def prefetch(reqs)
  end

  def pick_best!
    return self if empty?

    @set = [sorted.first]
    @sorted = nil
    self
  end

  def remove_installed!(dep)
    @set.reject! do |t|
      # already locally installed
      Gem::Specification.any? do |installed_spec|
        dep.name == installed_spec.name and
          dep.requirement.satisfied_by? installed_spec.version
      end
    end

    @sorted = nil
    self
  end

  def inject_into_list(dep_list)
    @set.each { |t| dep_list.add t.spec }
  end

end
PK9H[og�

(share/rubygems/rubygems/uri_formatter.rbnu�[���# frozen_string_literal: true
require 'cgi'

##
# The UriFormatter handles URIs from user-input and escaping.
#
#   uf = Gem::UriFormatter.new 'example.com'
#
#   p uf.normalize #=> 'http://example.com'

class Gem::UriFormatter

  ##
  # The URI to be formatted.

  attr_reader :uri

  ##
  # Creates a new URI formatter for +uri+.

  def initialize(uri)
    @uri = uri
  end

  ##
  # Escapes the #uri for use as a CGI parameter

  def escape
    return unless @uri
    CGI.escape @uri
  end

  ##
  # Normalize the URI by adding "http://" if it is missing.

  def normalize
    (@uri =~ /^(https?|ftp|file):/i) ? @uri : "http://#{@uri}"
  end

  ##
  # Unescapes the #uri which came from a CGI parameter

  def unescape
    return unless @uri
    CGI.unescape @uri
  end

end
PK9H[N]�zz$share/rubygems/rubygems/syck_hack.rbnu�[���# frozen_string_literal: true
# :stopdoc:

# Hack to handle syck's DefaultKey bug
#
# This file is always loaded AFTER either syck or psych are already
# loaded. It then looks at what constants are available and creates
# a consistent view on all rubys.
#
# All this is so that there is always a YAML::Syck::DefaultKey
# class no matter if the full yaml library has loaded or not.
#

module YAML # :nodoc:
  # In newer 1.9.2, there is a Syck toplevel constant instead of it
  # being underneath YAML. If so, reference it back under YAML as
  # well.
  if defined? ::Syck
    # for tests that change YAML::ENGINE
    # 1.8 does not support the second argument to const_defined?
    remove_const :Syck rescue nil

    Syck = ::Syck

  # JRuby's "Syck" is called "Yecht"
  elsif defined? YAML::Yecht
    Syck = YAML::Yecht

  # Otherwise, if there is no YAML::Syck, then we've got just psych
  # loaded, so lets define a stub for DefaultKey.
  elsif !defined? YAML::Syck
    module Syck
      class DefaultKey # :nodoc:
      end
    end
  end

  # Now that we've got something that is always here, define #to_s
  # so when code tries to use this, it at least just shows up like it
  # should.
  module Syck
    class DefaultKey

      remove_method :to_s rescue nil

      def to_s
        '='
      end

    end
  end

  SyntaxError = Error unless defined? SyntaxError
end

# Sometime in the 1.9 dev cycle, the Syck constant was moved from under YAML
# to be a toplevel constant. So gemspecs created under these versions of Syck
# will have references to Syck::DefaultKey.
#
# So we need to be sure that we reference Syck at the toplevel too so that
# we can always load these kind of gemspecs.
#
if !defined?(Syck)
  Syck = YAML::Syck
end

# Now that we've got Syck setup in all the right places, store
# a reference to the DefaultKey class inside Gem. We do this so that
# if later on YAML, etc are redefined, we've still got a consistent
# place to find the DefaultKey class for comparison.

module Gem
  # for tests that change YAML::ENGINE
  remove_const :SyckDefaultKey if const_defined? :SyckDefaultKey

  SyckDefaultKey = YAML::Syck::DefaultKey
end

# :startdoc:
PK9H[_~Zyy.share/rubygems/rubygems/basic_specification.rbnu�[���# frozen_string_literal: true
##
# BasicSpecification is an abstract class which implements some common code
# used by both Specification and StubSpecification.

class Gem::BasicSpecification

  ##
  # Allows installation of extensions for git: gems.

  attr_writer :base_dir # :nodoc:

  ##
  # Sets the directory where extensions for this gem will be installed.

  attr_writer :extension_dir # :nodoc:

  ##
  # Is this specification ignored for activation purposes?

  attr_writer :ignored # :nodoc:

  ##
  # The path this gemspec was loaded from.  This attribute is not persisted.

  attr_accessor :loaded_from

  ##
  # Allows correct activation of git: and path: gems.

  attr_writer :full_gem_path # :nodoc:

  def initialize
    internal_init
  end

  def self.default_specifications_dir
    Gem.default_specifications_dir
  end

  class << self

    extend Gem::Deprecate
    deprecate :default_specifications_dir, "Gem.default_specifications_dir", 2020, 02

  end

  ##
  # The path to the gem.build_complete file within the extension install
  # directory.

  def gem_build_complete_path # :nodoc:
    File.join extension_dir, 'gem.build_complete'
  end

  ##
  # True when the gem has been activated

  def activated?
    raise NotImplementedError
  end

  ##
  # Returns the full path to the base gem directory.
  #
  # eg: /usr/local/lib/ruby/gems/1.8

  def base_dir
    raise NotImplementedError
  end

  ##
  # Return true if this spec can require +file+.

  def contains_requirable_file?(file)
    if @ignored
      return false
    elsif missing_extensions?
      @ignored = true

      if Gem::Platform::RUBY == platform || Gem::Platform.local === platform
        warn "Ignoring #{full_name} because its extensions are not built. " +
          "Try: gem pristine #{name} --version #{version}"
      end

      return false
    end

    have_file? file, Gem.suffixes
  end

  def default_gem?
    loaded_from &&
      File.dirname(loaded_from) == Gem.default_specifications_dir
  end

  ##
  # Returns full path to the directory where gem's extensions are installed.

  def extension_dir
    @extension_dir ||= File.expand_path(File.join(extensions_dir, full_name)).tap(&Gem::UNTAINT)
  end

  ##
  # Returns path to the extensions directory.

  def extensions_dir
    Gem.default_ext_dir_for(base_dir) ||
      File.join(base_dir, 'extensions', Gem::Platform.local.to_s,
                Gem.extension_api_version)
  end

  def find_full_gem_path # :nodoc:
    # TODO: also, shouldn't it default to full_name if it hasn't been written?
    path = File.expand_path File.join(gems_dir, full_name)
    path.tap(&Gem::UNTAINT)
    path
  end

  private :find_full_gem_path

  ##
  # The full path to the gem (install path + full name).

  def full_gem_path
    # TODO: This is a heavily used method by gems, so we'll need
    # to aleast just alias it to #gem_dir rather than remove it.
    @full_gem_path ||= find_full_gem_path
  end

  ##
  # Returns the full name (name-version) of this Gem.  Platform information
  # is included (name-version-platform) if it is specified and not the
  # default Ruby platform.

  def full_name
    if platform == Gem::Platform::RUBY or platform.nil?
      "#{name}-#{version}".dup.tap(&Gem::UNTAINT)
    else
      "#{name}-#{version}-#{platform}".dup.tap(&Gem::UNTAINT)
    end
  end

  ##
  # Full paths in the gem to add to <code>$LOAD_PATH</code> when this gem is
  # activated.

  def full_require_paths
    @full_require_paths ||=
    begin
      full_paths = raw_require_paths.map do |path|
        File.join full_gem_path, path.tap(&Gem::UNTAINT)
      end

      full_paths << extension_dir if have_extensions?

      full_paths
    end
  end

  ##
  # The path to the data directory for this gem.

  def datadir
    # TODO: drop the extra ", gem_name" which is uselessly redundant
    File.expand_path(File.join(gems_dir, full_name, "data", name)).tap(&Gem::UNTAINT)
  end

  ##
  # Full path of the target library file.
  # If the file is not in this gem, return nil.

  def to_fullpath(path)
    if activated?
      @paths_map ||= {}
      @paths_map[path] ||=
      begin
        fullpath = nil
        suffixes = Gem.suffixes
        suffixes.find do |suf|
          full_require_paths.find do |dir|
            File.file?(fullpath = "#{dir}/#{path}#{suf}")
          end
        end ? fullpath : nil
      end
    else
      nil
    end
  end

  ##
  # Returns the full path to this spec's gem directory.
  # eg: /usr/local/lib/ruby/1.8/gems/mygem-1.0

  def gem_dir
    @gem_dir ||= File.expand_path File.join(gems_dir, full_name)
  end

  ##
  # Returns the full path to the gems directory containing this spec's
  # gem directory. eg: /usr/local/lib/ruby/1.8/gems

  def gems_dir
    raise NotImplementedError
  end

  def internal_init # :nodoc:
    @extension_dir = nil
    @full_gem_path = nil
    @gem_dir = nil
    @ignored = nil
  end

  ##
  # Name of the gem

  def name
    raise NotImplementedError
  end

  ##
  # Platform of the gem

  def platform
    raise NotImplementedError
  end

  def raw_require_paths # :nodoc:
    raise NotImplementedError
  end

  ##
  # Paths in the gem to add to <code>$LOAD_PATH</code> when this gem is
  # activated.
  #
  # See also #require_paths=
  #
  # If you have an extension you do not need to add <code>"ext"</code> to the
  # require path, the extension build process will copy the extension files
  # into "lib" for you.
  #
  # The default value is <code>"lib"</code>
  #
  # Usage:
  #
  #   # If all library files are in the root directory...
  #   spec.require_path = '.'

  def require_paths
    return raw_require_paths unless have_extensions?

    [extension_dir].concat raw_require_paths
  end

  ##
  # Returns the paths to the source files for use with analysis and
  # documentation tools.  These paths are relative to full_gem_path.

  def source_paths
    paths = raw_require_paths.dup

    if have_extensions?
      ext_dirs = extensions.map do |extension|
        extension.split(File::SEPARATOR, 2).first
      end.uniq

      paths.concat ext_dirs
    end

    paths.uniq
  end

  ##
  # Return all files in this gem that match for +glob+.

  def matches_for_glob(glob) # TODO: rename?
    # TODO: do we need these?? Kill it
    glob = File.join(self.lib_dirs_glob, glob)

    Dir[glob].map { |f| f.tap(&Gem::UNTAINT) } # FIX our tests are broken, run w/ SAFE=1
  end

  ##
  # Returns a string usable in Dir.glob to match all requirable paths
  # for this spec.

  def lib_dirs_glob
    dirs = if self.raw_require_paths
             if self.raw_require_paths.size > 1
               "{#{self.raw_require_paths.join(',')}}"
             else
               self.raw_require_paths.first
             end
           else
             "lib" # default value for require_paths for bundler/inline
           end

    "#{self.full_gem_path}/#{dirs}".dup.tap(&Gem::UNTAINT)
  end

  ##
  # Return a Gem::Specification from this gem

  def to_spec
    raise NotImplementedError
  end

  ##
  # Version of the gem

  def version
    raise NotImplementedError
  end

  ##
  # Whether this specification is stubbed - i.e. we have information
  # about the gem from a stub line, without having to evaluate the
  # entire gemspec file.
  def stubbed?
    raise NotImplementedError
  end

  def this; self; end

  private

  def have_extensions?; !extensions.empty?; end

  def have_file?(file, suffixes)
    return true if raw_require_paths.any? do |path|
      base = File.join(gems_dir, full_name, path.tap(&Gem::UNTAINT), file).tap(&Gem::UNTAINT)
      suffixes.any? { |suf| File.file? base + suf }
    end

    if have_extensions?
      base = File.join extension_dir, file
      suffixes.any? { |suf| File.file? base + suf }
    else
      false
    end
  end

end
PK9H[P�Y��U�Ushare/man/man5/gemfile.5nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GEMFILE" "5" "January 2020" "" ""
.
.SH "NAME"
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
.
.SH "SYNOPSIS"
A \fBGemfile\fR describes the gem dependencies required to execute associated Ruby code\.
.
.P
Place the \fBGemfile\fR in the root of the directory containing the associated code\. For instance, in a Rails application, place the \fBGemfile\fR in the same directory as the \fBRakefile\fR\.
.
.SH "SYNTAX"
A \fBGemfile\fR is evaluated as Ruby code, in a context which makes available a number of methods used to describe the gem requirements\.
.
.SH "GLOBAL SOURCES"
At the top of the \fBGemfile\fR, add a line for the \fBRubygems\fR source that contains the gems listed in the \fBGemfile\fR\.
.
.IP "" 4
.
.nf

source "https://rubygems\.org"
.
.fi
.
.IP "" 0
.
.P
It is possible, but not recommended as of Bundler 1\.7, to add multiple global \fBsource\fR lines\. Each of these \fBsource\fRs \fBMUST\fR be a valid Rubygems repository\.
.
.P
Sources are checked for gems following the heuristics described in \fISOURCE PRIORITY\fR\. If a gem is found in more than one global source, Bundler will print a warning after installing the gem indicating which source was used, and listing the other sources where the gem is available\. A specific source can be selected for gems that need to use a non\-standard repository, suppressing this warning, by using the \fI\fB:source\fR option\fR or a \fI\fBsource\fR block\fR\.
.
.SS "CREDENTIALS"
Some gem sources require a username and password\. Use bundle config(1) \fIbundle\-config\.1\.html\fR to set the username and password for any of the sources that need it\. The command must be run once on each computer that will install the Gemfile, but this keeps the credentials from being stored in plain text in version control\.
.
.IP "" 4
.
.nf

bundle config gems\.example\.com user:password
.
.fi
.
.IP "" 0
.
.P
For some sources, like a company Gemfury account, it may be easier to include the credentials in the Gemfile as part of the source URL\.
.
.IP "" 4
.
.nf

source "https://user:password@gems\.example\.com"
.
.fi
.
.IP "" 0
.
.P
Credentials in the source URL will take precedence over credentials set using \fBconfig\fR\.
.
.SH "RUBY"
If your application requires a specific Ruby version or engine, specify your requirements using the \fBruby\fR method, with the following arguments\. All parameters are \fBOPTIONAL\fR unless otherwise specified\.
.
.SS "VERSION (required)"
The version of Ruby that your application requires\. If your application requires an alternate Ruby engine, such as JRuby, Rubinius or TruffleRuby, this should be the Ruby version that the engine is compatible with\.
.
.IP "" 4
.
.nf

ruby "1\.9\.3"
.
.fi
.
.IP "" 0
.
.SS "ENGINE"
Each application \fImay\fR specify a Ruby engine\. If an engine is specified, an engine version \fImust\fR also be specified\.
.
.P
What exactly is an Engine? \- A Ruby engine is an implementation of the Ruby language\.
.
.IP "\(bu" 4
For background: the reference or original implementation of the Ruby programming language is called Matz\'s Ruby Interpreter \fIhttps://en\.wikipedia\.org/wiki/Ruby_MRI\fR, or MRI for short\. This is named after Ruby creator Yukihiro Matsumoto, also known as Matz\. MRI is also known as CRuby, because it is written in C\. MRI is the most widely used Ruby engine\.
.
.IP "\(bu" 4
Other implementations \fIhttps://www\.ruby\-lang\.org/en/about/\fR of Ruby exist\. Some of the more well\-known implementations include Rubinius \fIhttps://rubinius\.com/\fR, and JRuby \fIhttp://jruby\.org/\fR\. Rubinius is an alternative implementation of Ruby written in Ruby\. JRuby is an implementation of Ruby on the JVM, short for Java Virtual Machine\.
.
.IP "" 0
.
.SS "ENGINE VERSION"
Each application \fImay\fR specify a Ruby engine version\. If an engine version is specified, an engine \fImust\fR also be specified\. If the engine is "ruby" the engine version specified \fImust\fR match the Ruby version\.
.
.IP "" 4
.
.nf

ruby "1\.8\.7", :engine => "jruby", :engine_version => "1\.6\.7"
.
.fi
.
.IP "" 0
.
.SS "PATCHLEVEL"
Each application \fImay\fR specify a Ruby patchlevel\.
.
.IP "" 4
.
.nf

ruby "2\.0\.0", :patchlevel => "247"
.
.fi
.
.IP "" 0
.
.SH "GEMS"
Specify gem requirements using the \fBgem\fR method, with the following arguments\. All parameters are \fBOPTIONAL\fR unless otherwise specified\.
.
.SS "NAME (required)"
For each gem requirement, list a single \fIgem\fR line\.
.
.IP "" 4
.
.nf

gem "nokogiri"
.
.fi
.
.IP "" 0
.
.SS "VERSION"
Each \fIgem\fR \fBMAY\fR have one or more version specifiers\.
.
.IP "" 4
.
.nf

gem "nokogiri", ">= 1\.4\.2"
gem "RedCloth", ">= 4\.1\.0", "< 4\.2\.0"
.
.fi
.
.IP "" 0
.
.SS "REQUIRE AS"
Each \fIgem\fR \fBMAY\fR specify files that should be used when autorequiring via \fBBundler\.require\fR\. You may pass an array with multiple files or \fBtrue\fR if file you want \fBrequired\fR has same name as \fIgem\fR or \fBfalse\fR to prevent any file from being autorequired\.
.
.IP "" 4
.
.nf

gem "redis", :require => ["redis/connection/hiredis", "redis"]
gem "webmock", :require => false
gem "byebug", :require => true
.
.fi
.
.IP "" 0
.
.P
The argument defaults to the name of the gem\. For example, these are identical:
.
.IP "" 4
.
.nf

gem "nokogiri"
gem "nokogiri", :require => "nokogiri"
gem "nokogiri", :require => true
.
.fi
.
.IP "" 0
.
.SS "GROUPS"
Each \fIgem\fR \fBMAY\fR specify membership in one or more groups\. Any \fIgem\fR that does not specify membership in any group is placed in the \fBdefault\fR group\.
.
.IP "" 4
.
.nf

gem "rspec", :group => :test
gem "wirble", :groups => [:development, :test]
.
.fi
.
.IP "" 0
.
.P
The Bundler runtime allows its two main methods, \fBBundler\.setup\fR and \fBBundler\.require\fR, to limit their impact to particular groups\.
.
.IP "" 4
.
.nf

# setup adds gems to Ruby\'s load path
Bundler\.setup                    # defaults to all groups
require "bundler/setup"          # same as Bundler\.setup
Bundler\.setup(:default)          # only set up the _default_ group
Bundler\.setup(:test)             # only set up the _test_ group (but `not` _default_)
Bundler\.setup(:default, :test)   # set up the _default_ and _test_ groups, but no others

# require requires all of the gems in the specified groups
Bundler\.require                  # defaults to the _default_ group
Bundler\.require(:default)        # identical
Bundler\.require(:default, :test) # requires the _default_ and _test_ groups
Bundler\.require(:test)           # requires the _test_ group
.
.fi
.
.IP "" 0
.
.P
The Bundler CLI allows you to specify a list of groups whose gems \fBbundle install\fR should not install with the \fBwithout\fR configuration\.
.
.P
To specify multiple groups to ignore, specify a list of groups separated by spaces\.
.
.IP "" 4
.
.nf

bundle config set without test
bundle config set without development test
.
.fi
.
.IP "" 0
.
.P
Also, calling \fBBundler\.setup\fR with no parameters, or calling \fBrequire "bundler/setup"\fR will setup all groups except for the ones you excluded via \fB\-\-without\fR (since they are not available)\.
.
.P
Note that on \fBbundle install\fR, bundler downloads and evaluates all gems, in order to create a single canonical list of all of the required gems and their dependencies\. This means that you cannot list different versions of the same gems in different groups\. For more details, see Understanding Bundler \fIhttps://bundler\.io/rationale\.html\fR\.
.
.SS "PLATFORMS"
If a gem should only be used in a particular platform or set of platforms, you can specify them\. Platforms are essentially identical to groups, except that you do not need to use the \fB\-\-without\fR install\-time flag to exclude groups of gems for other platforms\.
.
.P
There are a number of \fBGemfile\fR platforms:
.
.TP
\fBruby\fR
C Ruby (MRI), Rubinius or TruffleRuby, but \fBNOT\fR Windows
.
.TP
\fBmri\fR
Same as \fIruby\fR, but only C Ruby (MRI)
.
.TP
\fBmingw\fR
Windows 32 bit \'mingw32\' platform (aka RubyInstaller)
.
.TP
\fBx64_mingw\fR
Windows 64 bit \'mingw32\' platform (aka RubyInstaller x64)
.
.TP
\fBrbx\fR
Rubinius
.
.TP
\fBjruby\fR
JRuby
.
.TP
\fBtruffleruby\fR
TruffleRuby
.
.TP
\fBmswin\fR
Windows
.
.P
You can restrict further by platform and version for all platforms \fIexcept\fR for \fBrbx\fR, \fBjruby\fR, \fBtruffleruby\fR and \fBmswin\fR\.
.
.P
To specify a version in addition to a platform, append the version number without the delimiter to the platform\. For example, to specify that a gem should only be used on platforms with Ruby 2\.3, use:
.
.IP "" 4
.
.nf

ruby_23
.
.fi
.
.IP "" 0
.
.P
The full list of platforms and supported versions includes:
.
.TP
\fBruby\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBmri\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBmingw\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBx64_mingw\fR
2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.P
As with groups, you can specify one or more platforms:
.
.IP "" 4
.
.nf

gem "weakling",   :platforms => :jruby
gem "ruby\-debug", :platforms => :mri_18
gem "nokogiri",   :platforms => [:mri_18, :jruby]
.
.fi
.
.IP "" 0
.
.P
All operations involving groups (\fBbundle install\fR \fIbundle\-install\.1\.html\fR, \fBBundler\.setup\fR, \fBBundler\.require\fR) behave exactly the same as if any groups not matching the current platform were explicitly excluded\.
.
.SS "SOURCE"
You can select an alternate Rubygems repository for a gem using the \':source\' option\.
.
.IP "" 4
.
.nf

gem "some_internal_gem", :source => "https://gems\.example\.com"
.
.fi
.
.IP "" 0
.
.P
This forces the gem to be loaded from this source and ignores any global sources declared at the top level of the file\. If the gem does not exist in this source, it will not be installed\.
.
.P
Bundler will search for child dependencies of this gem by first looking in the source selected for the parent, but if they are not found there, it will fall back on global sources using the ordering described in \fISOURCE PRIORITY\fR\.
.
.P
Selecting a specific source repository this way also suppresses the ambiguous gem warning described above in \fIGLOBAL SOURCES (#source)\fR\.
.
.P
Using the \fB:source\fR option for an individual gem will also make that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when adding gems with explicit sources, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources\.
.
.SS "GIT"
If necessary, you can specify that a gem is located at a particular git repository using the \fB:git\fR parameter\. The repository can be accessed via several protocols:
.
.TP
\fBHTTP(S)\fR
gem "rails", :git => "https://github\.com/rails/rails\.git"
.
.TP
\fBSSH\fR
gem "rails", :git => "git@github\.com:rails/rails\.git"
.
.TP
\fBgit\fR
gem "rails", :git => "git://github\.com/rails/rails\.git"
.
.P
If using SSH, the user that you use to run \fBbundle install\fR \fBMUST\fR have the appropriate keys available in their \fB$HOME/\.ssh\fR\.
.
.P
\fBNOTE\fR: \fBhttp://\fR and \fBgit://\fR URLs should be avoided if at all possible\. These protocols are unauthenticated, so a man\-in\-the\-middle attacker can deliver malicious code and compromise your system\. HTTPS and SSH are strongly preferred\.
.
.P
The \fBgroup\fR, \fBplatforms\fR, and \fBrequire\fR options are available and behave exactly the same as they would for a normal gem\.
.
.P
A git repository \fBSHOULD\fR have at least one file, at the root of the directory containing the gem, with the extension \fB\.gemspec\fR\. This file \fBMUST\fR contain a valid gem specification, as expected by the \fBgem build\fR command\.
.
.P
If a git repository does not have a \fB\.gemspec\fR, bundler will attempt to create one, but it will not contain any dependencies, executables, or C extension compilation instructions\. As a result, it may fail to properly integrate into your application\.
.
.P
If a git repository does have a \fB\.gemspec\fR for the gem you attached it to, a version specifier, if provided, means that the git repository is only valid if the \fB\.gemspec\fR specifies a version matching the version specifier\. If not, bundler will print a warning\.
.
.IP "" 4
.
.nf

gem "rails", "2\.3\.8", :git => "https://github\.com/rails/rails\.git"
# bundle install will fail, because the \.gemspec in the rails
# repository\'s master branch specifies version 3\.0\.0
.
.fi
.
.IP "" 0
.
.P
If a git repository does \fBnot\fR have a \fB\.gemspec\fR for the gem you attached it to, a version specifier \fBMUST\fR be provided\. Bundler will use this version in the simple \fB\.gemspec\fR it creates\.
.
.P
Git repositories support a number of additional options\.
.
.TP
\fBbranch\fR, \fBtag\fR, and \fBref\fR
You \fBMUST\fR only specify at most one of these options\. The default is \fB:branch => "master"\fR\. For example:
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :branch => "5\-0\-stable"
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :tag => "v5\.0\.0"
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :ref => "4aded"
.
.TP
\fBsubmodules\fR
For reference, a git submodule \fIhttps://git\-scm\.com/book/en/v2/Git\-Tools\-Submodules\fR lets you have another git repository within a subfolder of your repository\. Specify \fB:submodules => true\fR to cause bundler to expand any submodules included in the git repository
.
.P
If a git repository contains multiple \fB\.gemspecs\fR, each \fB\.gemspec\fR represents a gem located at the same place in the file system as the \fB\.gemspec\fR\.
.
.IP "" 4
.
.nf

|~rails                   [git root]
| |\-rails\.gemspec         [rails gem located here]
|~actionpack
| |\-actionpack\.gemspec    [actionpack gem located here]
|~activesupport
| |\-activesupport\.gemspec [activesupport gem located here]
|\.\.\.
.
.fi
.
.IP "" 0
.
.P
To install a gem located in a git repository, bundler changes to the directory containing the gemspec, runs \fBgem build name\.gemspec\fR and then installs the resulting gem\. The \fBgem build\fR command, which comes standard with Rubygems, evaluates the \fB\.gemspec\fR in the context of the directory in which it is located\.
.
.SS "GIT SOURCE"
A custom git source can be defined via the \fBgit_source\fR method\. Provide the source\'s name as an argument, and a block which receives a single argument and interpolates it into a string to return the full repo address:
.
.IP "" 4
.
.nf

git_source(:stash){ |repo_name| "https://stash\.corp\.acme\.pl/#{repo_name}\.git" }
gem \'rails\', :stash => \'forks/rails\'
.
.fi
.
.IP "" 0
.
.P
In addition, if you wish to choose a specific branch:
.
.IP "" 4
.
.nf

gem "rails", :stash => "forks/rails", :branch => "branch_name"
.
.fi
.
.IP "" 0
.
.SS "GITHUB"
\fBNOTE\fR: This shorthand should be avoided until Bundler 2\.0, since it currently expands to an insecure \fBgit://\fR URL\. This allows a man\-in\-the\-middle attacker to compromise your system\.
.
.P
If the git repository you want to use is hosted on GitHub and is public, you can use the :github shorthand to specify the github username and repository name (without the trailing "\.git"), separated by a slash\. If both the username and repository name are the same, you can omit one\.
.
.IP "" 4
.
.nf

gem "rails", :github => "rails/rails"
gem "rails", :github => "rails"
.
.fi
.
.IP "" 0
.
.P
Are both equivalent to
.
.IP "" 4
.
.nf

gem "rails", :git => "git://github\.com/rails/rails\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBgithub\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "GIST"
If the git repository you want to use is hosted as a Github Gist and is public, you can use the :gist shorthand to specify the gist identifier (without the trailing "\.git")\.
.
.IP "" 4
.
.nf

gem "the_hatch", :gist => "4815162342"
.
.fi
.
.IP "" 0
.
.P
Is equivalent to:
.
.IP "" 4
.
.nf

gem "the_hatch", :git => "https://gist\.github\.com/4815162342\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBgist\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "BITBUCKET"
If the git repository you want to use is hosted on Bitbucket and is public, you can use the :bitbucket shorthand to specify the bitbucket username and repository name (without the trailing "\.git"), separated by a slash\. If both the username and repository name are the same, you can omit one\.
.
.IP "" 4
.
.nf

gem "rails", :bitbucket => "rails/rails"
gem "rails", :bitbucket => "rails"
.
.fi
.
.IP "" 0
.
.P
Are both equivalent to
.
.IP "" 4
.
.nf

gem "rails", :git => "https://rails@bitbucket\.org/rails/rails\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBbitbucket\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "PATH"
You can specify that a gem is located in a particular location on the file system\. Relative paths are resolved relative to the directory containing the \fBGemfile\fR\.
.
.P
Similar to the semantics of the \fB:git\fR option, the \fB:path\fR option requires that the directory in question either contains a \fB\.gemspec\fR for the gem, or that you specify an explicit version that bundler should use\.
.
.P
Unlike \fB:git\fR, bundler does not compile C extensions for gems specified as paths\.
.
.IP "" 4
.
.nf

gem "rails", :path => "vendor/rails"
.
.fi
.
.IP "" 0
.
.P
If you would like to use multiple local gems directly from the filesystem, you can set a global \fBpath\fR option to the path containing the gem\'s files\. This will automatically load gemspec files from subdirectories\.
.
.IP "" 4
.
.nf

path \'components\' do
  gem \'admin_ui\'
  gem \'public_ui\'
end
.
.fi
.
.IP "" 0
.
.SH "BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS"
The \fB:source\fR, \fB:git\fR, \fB:path\fR, \fB:group\fR, and \fB:platforms\fR options may be applied to a group of gems by using block form\.
.
.IP "" 4
.
.nf

source "https://gems\.example\.com" do
  gem "some_internal_gem"
  gem "another_internal_gem"
end

git "https://github\.com/rails/rails\.git" do
  gem "activesupport"
  gem "actionpack"
end

platforms :ruby do
  gem "ruby\-debug"
  gem "sqlite3"
end

group :development, :optional => true do
  gem "wirble"
  gem "faker"
end
.
.fi
.
.IP "" 0
.
.P
In the case of the group block form the :optional option can be given to prevent a group from being installed unless listed in the \fB\-\-with\fR option given to the \fBbundle install\fR command\.
.
.P
In the case of the \fBgit\fR block form, the \fB:ref\fR, \fB:branch\fR, \fB:tag\fR, and \fB:submodules\fR options may be passed to the \fBgit\fR method, and all gems in the block will inherit those options\.
.
.P
The presence of a \fBsource\fR block in a Gemfile also makes that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when defining source blocks, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources, either via source blocks or \fB:source\fR directives on individual gems\.
.
.SH "INSTALL_IF"
The \fBinstall_if\fR method allows gems to be installed based on a proc or lambda\. This is especially useful for optional gems that can only be used if certain software is installed or some other conditions are met\.
.
.IP "" 4
.
.nf

install_if \-> { RUBY_PLATFORM =~ /darwin/ } do
  gem "pasteboard"
end
.
.fi
.
.IP "" 0
.
.SH "GEMSPEC"
The \fB\.gemspec\fR \fIhttp://guides\.rubygems\.org/specification\-reference/\fR file is where you provide metadata about your gem to Rubygems\. Some required Gemspec attributes include the name, description, and homepage of your gem\. This is also where you specify the dependencies your gem needs to run\.
.
.P
If you wish to use Bundler to help install dependencies for a gem while it is being developed, use the \fBgemspec\fR method to pull in the dependencies listed in the \fB\.gemspec\fR file\.
.
.P
The \fBgemspec\fR method adds any runtime dependencies as gem requirements in the default group\. It also adds development dependencies as gem requirements in the \fBdevelopment\fR group\. Finally, it adds a gem requirement on your project (\fB:path => \'\.\'\fR)\. In conjunction with \fBBundler\.setup\fR, this allows you to require project files in your test code as you would if the project were installed as a gem; you need not manipulate the load path manually or require project files via relative paths\.
.
.P
The \fBgemspec\fR method supports optional \fB:path\fR, \fB:glob\fR, \fB:name\fR, and \fB:development_group\fR options, which control where bundler looks for the \fB\.gemspec\fR, the glob it uses to look for the gemspec (defaults to: "{,\fI,\fR/*}\.gemspec"), what named \fB\.gemspec\fR it uses (if more than one is present), and which group development dependencies are included in\.
.
.P
When a \fBgemspec\fR dependency encounters version conflicts during resolution, the local version under development will always be selected \-\- even if there are remote versions that better match other requirements for the \fBgemspec\fR gem\.
.
.SH "SOURCE PRIORITY"
When attempting to locate a gem to satisfy a gem requirement, bundler uses the following priority order:
.
.IP "1." 4
The source explicitly attached to the gem (using \fB:source\fR, \fB:path\fR, or \fB:git\fR)
.
.IP "2." 4
For implicit gems (dependencies of explicit gems), any source, git, or path repository declared on the parent\. This results in bundler prioritizing the ActiveSupport gem from the Rails git repository over ones from \fBrubygems\.org\fR
.
.IP "3." 4
The sources specified via global \fBsource\fR lines, searching each source in your \fBGemfile\fR from last added to first added\.
.
.IP "" 0

PK9H[߃71��share/man/man1/bundle-doctor.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-DOCTOR" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-doctor\fR \- Checks the bundle for common problems
.
.SH "SYNOPSIS"
\fBbundle doctor\fR [\-\-quiet] [\-\-gemfile=GEMFILE]
.
.SH "DESCRIPTION"
Checks your Gemfile and gem environment for common problems\. If issues are detected, Bundler prints them and exits status 1\. Otherwise, Bundler prints a success message and exits status 0\.
.
.P
Examples of common problems caught by bundle\-doctor include:
.
.IP "\(bu" 4
Invalid Bundler settings
.
.IP "\(bu" 4
Mismatched Ruby versions
.
.IP "\(bu" 4
Mismatched platforms
.
.IP "\(bu" 4
Uninstalled gems
.
.IP "\(bu" 4
Missing dependencies
.
.IP "" 0
.
.SH "OPTIONS"
.
.TP
\fB\-\-quiet\fR
Only output warnings and errors\.
.
.TP
\fB\-\-gemfile=<gemfile>\fR
The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project\'s root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.

PK9H[��#iishare/man/man1/bundle-exec.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-EXEC" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-exec\fR \- Execute a command in the context of the bundle
.
.SH "SYNOPSIS"
\fBbundle exec\fR [\-\-keep\-file\-descriptors] \fIcommand\fR
.
.SH "DESCRIPTION"
This command executes the command, making all gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] available to \fBrequire\fR in Ruby programs\.
.
.P
Essentially, if you would normally have run something like \fBrspec spec/my_spec\.rb\fR, and you want to use the gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] and installed via bundle install(1) \fIbundle\-install\.1\.html\fR, you should run \fBbundle exec rspec spec/my_spec\.rb\fR\.
.
.P
Note that \fBbundle exec\fR does not require that an executable is available on your shell\'s \fB$PATH\fR\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-keep\-file\-descriptors\fR
Exec in Ruby 2\.0 began discarding non\-standard file descriptors\. When this flag is passed, exec will revert to the 1\.9 behaviour of passing all file descriptors to the new process\.
.
.SH "BUNDLE INSTALL \-\-BINSTUBS"
If you use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR, Bundler will automatically create a directory (which defaults to \fBapp_root/bin\fR) containing all of the executables available from gems in the bundle\.
.
.P
After using \fB\-\-binstubs\fR, \fBbin/rspec spec/my_spec\.rb\fR is identical to \fBbundle exec rspec spec/my_spec\.rb\fR\.
.
.SH "ENVIRONMENT MODIFICATIONS"
\fBbundle exec\fR makes a number of changes to the shell environment, then executes the command you specify in full\.
.
.IP "\(bu" 4
make sure that it\'s still possible to shell out to \fBbundle\fR from inside a command invoked by \fBbundle exec\fR (using \fB$BUNDLE_BIN_PATH\fR)
.
.IP "\(bu" 4
put the directory containing executables (like \fBrails\fR, \fBrspec\fR, \fBrackup\fR) for your bundle on \fB$PATH\fR
.
.IP "\(bu" 4
make sure that if bundler is invoked in the subshell, it uses the same \fBGemfile\fR (by setting \fBBUNDLE_GEMFILE\fR)
.
.IP "\(bu" 4
add \fB\-rbundler/setup\fR to \fB$RUBYOPT\fR, which makes sure that Ruby programs invoked in the subshell can see the gems in the bundle
.
.IP "" 0
.
.P
It also modifies Rubygems:
.
.IP "\(bu" 4
disallow loading additional gems not in the bundle
.
.IP "\(bu" 4
modify the \fBgem\fR method to be a no\-op if a gem matching the requirements is in the bundle, and to raise a \fBGem::LoadError\fR if it\'s not
.
.IP "\(bu" 4
Define \fBGem\.refresh\fR to be a no\-op, since the source index is always frozen when using bundler, and to prevent gems from the system leaking into the environment
.
.IP "\(bu" 4
Override \fBGem\.bin_path\fR to use the gems in the bundle, making system executables work
.
.IP "\(bu" 4
Add all gems in the bundle into Gem\.loaded_specs
.
.IP "" 0
.
.P
Finally, \fBbundle exec\fR also implicitly modifies \fBGemfile\.lock\fR if the lockfile and the Gemfile do not match\. Bundler needs the Gemfile to determine things such as a gem\'s groups, \fBautorequire\fR, and platforms, etc\., and that information isn\'t stored in the lockfile\. The Gemfile and lockfile must be synced in order to \fBbundle exec\fR successfully, so \fBbundle exec\fR updates the lockfile beforehand\.
.
.SS "Loading"
By default, when attempting to \fBbundle exec\fR to a file with a ruby shebang, Bundler will \fBKernel\.load\fR that file instead of using \fBKernel\.exec\fR\. For the vast majority of cases, this is a performance improvement\. In a rare few cases, this could cause some subtle side\-effects (such as dependence on the exact contents of \fB$0\fR or \fB__FILE__\fR) and the optimization can be disabled by enabling the \fBdisable_exec_load\fR setting\.
.
.SS "Shelling out"
Any Ruby code that opens a subshell (like \fBsystem\fR, backticks, or \fB%x{}\fR) will automatically use the current Bundler environment\. If you need to shell out to a Ruby command that is not part of your current bundle, use the \fBwith_clean_env\fR method with a block\. Any subshells created inside the block will be given the environment present before Bundler was activated\. For example, Homebrew commands run Ruby, but don\'t work inside a bundle:
.
.IP "" 4
.
.nf

Bundler\.with_clean_env do
  `brew install wget`
end
.
.fi
.
.IP "" 0
.
.P
Using \fBwith_clean_env\fR is also necessary if you are shelling out to a different bundle\. Any Bundler commands run in a subshell will inherit the current Gemfile, so commands that need to run in the context of a different bundle also need to use \fBwith_clean_env\fR\.
.
.IP "" 4
.
.nf

Bundler\.with_clean_env do
  Dir\.chdir "/other/bundler/project" do
    `bundle exec \./script`
  end
end
.
.fi
.
.IP "" 0
.
.P
Bundler provides convenience helpers that wrap \fBsystem\fR and \fBexec\fR, and they can be used like this:
.
.IP "" 4
.
.nf

Bundler\.clean_system(\'brew install wget\')
Bundler\.clean_exec(\'brew install wget\')
.
.fi
.
.IP "" 0
.
.SH "RUBYGEMS PLUGINS"
At present, the Rubygems plugin system requires all files named \fBrubygems_plugin\.rb\fR on the load path of \fIany\fR installed gem when any Ruby code requires \fBrubygems\.rb\fR\. This includes executables installed into the system, like \fBrails\fR, \fBrackup\fR, and \fBrspec\fR\.
.
.P
Since Rubygems plugins can contain arbitrary Ruby code, they commonly end up activating themselves or their dependencies\.
.
.P
For instance, the \fBgemcutter 0\.5\fR gem depended on \fBjson_pure\fR\. If you had that version of gemcutter installed (even if you \fIalso\fR had a newer version without this problem), Rubygems would activate \fBgemcutter 0\.5\fR and \fBjson_pure <latest>\fR\.
.
.P
If your Gemfile(5) also contained \fBjson_pure\fR (or a gem with a dependency on \fBjson_pure\fR), the latest version on your system might conflict with the version in your Gemfile(5), or the snapshot version in your \fBGemfile\.lock\fR\.
.
.P
If this happens, bundler will say:
.
.IP "" 4
.
.nf

You have already activated json_pure 1\.4\.6 but your Gemfile
requires json_pure 1\.4\.3\. Consider using bundle exec\.
.
.fi
.
.IP "" 0
.
.P
In this situation, you almost certainly want to remove the underlying gem with the problematic gem plugin\. In general, the authors of these plugins (in this case, the \fBgemcutter\fR gem) have released newer versions that are more careful in their plugins\.
.
.P
You can find a list of all the gems containing gem plugins by running
.
.IP "" 4
.
.nf

ruby \-rrubygems \-e "puts Gem\.find_files(\'rubygems_plugin\.rb\')"
.
.fi
.
.IP "" 0
.
.P
At the very least, you should remove all but the newest version of each gem plugin, and also remove all gem plugins that you aren\'t using (\fBgem uninstall gem_name\fR)\.
PK9H[ڵ����share/man/man1/bundle-info.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INFO" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-info\fR \- Show information for the given gem in your bundle
.
.SH "SYNOPSIS"
\fBbundle info\fR [GEM] [\-\-path]
.
.SH "DESCRIPTION"
Print the basic information about the provided GEM such as homepage, version, path and summary\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-path\fR
Print the path of the given gem

PK9H[L�r4646share/man/man1/bundle-update.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-UPDATE" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-update\fR \- Update your gems to the latest available versions
.
.SH "SYNOPSIS"
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-full\-index] [\-\-jobs=JOBS] [\-\-quiet] [\-\-patch|\-\-minor|\-\-major] [\-\-redownload] [\-\-strict] [\-\-conservative]
.
.SH "DESCRIPTION"
Update the gems specified (all gems, if \fB\-\-all\fR flag is used), ignoring the previously installed gems specified in the \fBGemfile\.lock\fR\. In general, you should use bundle install(1) \fIbundle\-install\.1\.html\fR to install the same exact gems and versions across machines\.
.
.P
You would use \fBbundle update\fR to explicitly update the version of a gem\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-all\fR
Update all gems specified in Gemfile\.
.
.TP
\fB\-\-group=<name>\fR, \fB\-g=[<name>]\fR
Only update the gems in the specified group\. For instance, you can update all gems in the development group with \fBbundle update \-\-group development\fR\. You can also call \fBbundle update rails \-\-group test\fR to update the rails gem and all gems in the test group, for example\.
.
.TP
\fB\-\-source=<name>\fR
The name of a \fB:git\fR or \fB:path\fR source used in the Gemfile(5)\. For instance, with a \fB:git\fR source of \fBhttp://github\.com/rails/rails\.git\fR, you would call \fBbundle update \-\-source rails\fR
.
.TP
\fB\-\-local\fR
Do not attempt to fetch gems remotely and use the gem cache instead\.
.
.TP
\fB\-\-ruby\fR
Update the locked version of Ruby to the current version of Ruby\.
.
.TP
\fB\-\-bundler\fR
Update the locked version of bundler to the invoked bundler version\.
.
.TP
\fB\-\-full\-index\fR
Fall back to using the single\-file index of all gems\.
.
.TP
\fB\-\-jobs=[<number>]\fR, \fB\-j[<number>]\fR
Specify the number of jobs to run in parallel\. The default is \fB1\fR\.
.
.TP
\fB\-\-retry=[<number>]\fR
Retry failed network or git requests for \fInumber\fR times\.
.
.TP
\fB\-\-quiet\fR
Only output warnings and errors\.
.
.TP
\fB\-\-redownload\fR
Force downloading every gem\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
Do not allow any gem to be updated past latest \fB\-\-patch\fR | \fB\-\-minor\fR | \fB\-\-major\fR\.
.
.TP
\fB\-\-conservative\fR
Use bundle install conservative update behavior and do not allow shared dependencies to be updated\.
.
.SH "UPDATING ALL GEMS"
If you run \fBbundle update \-\-all\fR, bundler will ignore any previously installed gems and resolve all dependencies again based on the latest versions of all gems available in the sources\.
.
.P
Consider the following Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "rails", "3\.0\.0\.rc"
gem "nokogiri"
.
.fi
.
.IP "" 0
.
.P
When you run bundle install(1) \fIbundle\-install\.1\.html\fR the first time, bundler will resolve all of the dependencies, all the way down, and install what you need:
.
.IP "" 4
.
.nf

Fetching gem metadata from https://rubygems\.org/\.\.\.\.\.\.\.\.\.
Resolving dependencies\.\.\.
Installing builder 2\.1\.2
Installing abstract 1\.0\.0
Installing rack 1\.2\.8
Using bundler 1\.7\.6
Installing rake 10\.4\.0
Installing polyglot 0\.3\.5
Installing mime\-types 1\.25\.1
Installing i18n 0\.4\.2
Installing mini_portile 0\.6\.1
Installing tzinfo 0\.3\.42
Installing rack\-mount 0\.6\.14
Installing rack\-test 0\.5\.7
Installing treetop 1\.4\.15
Installing thor 0\.14\.6
Installing activesupport 3\.0\.0\.rc
Installing erubis 2\.6\.6
Installing activemodel 3\.0\.0\.rc
Installing arel 0\.4\.0
Installing mail 2\.2\.20
Installing activeresource 3\.0\.0\.rc
Installing actionpack 3\.0\.0\.rc
Installing activerecord 3\.0\.0\.rc
Installing actionmailer 3\.0\.0\.rc
Installing railties 3\.0\.0\.rc
Installing rails 3\.0\.0\.rc
Installing nokogiri 1\.6\.5

Bundle complete! 2 Gemfile dependencies, 26 gems total\.
Use `bundle show [gemname]` to see where a bundled gem is installed\.
.
.fi
.
.IP "" 0
.
.P
As you can see, even though you have two gems in the Gemfile(5), your application needs 26 different gems in order to run\. Bundler remembers the exact versions it installed in \fBGemfile\.lock\fR\. The next time you run bundle install(1) \fIbundle\-install\.1\.html\fR, bundler skips the dependency resolution and installs the same gems as it installed last time\.
.
.P
After checking in the \fBGemfile\.lock\fR into version control and cloning it on another machine, running bundle install(1) \fIbundle\-install\.1\.html\fR will \fIstill\fR install the gems that you installed last time\. You don\'t need to worry that a new release of \fBerubis\fR or \fBmail\fR changes the gems you use\.
.
.P
However, from time to time, you might want to update the gems you are using to the newest versions that still match the gems in your Gemfile(5)\.
.
.P
To do this, run \fBbundle update \-\-all\fR, which will ignore the \fBGemfile\.lock\fR, and resolve all the dependencies again\. Keep in mind that this process can result in a significantly different set of the 25 gems, based on the requirements of new gems that the gem authors released since the last time you ran \fBbundle update \-\-all\fR\.
.
.SH "UPDATING A LIST OF GEMS"
Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.P
For instance, in the scenario above, imagine that \fBnokogiri\fR releases version \fB1\.4\.4\fR, and you want to update it \fIwithout\fR updating Rails and all of its dependencies\. To do this, run \fBbundle update nokogiri\fR\.
.
.P
Bundler will update \fBnokogiri\fR and any of its dependencies, but leave alone Rails and its dependencies\.
.
.SH "OVERLAPPING DEPENDENCIES"
Sometimes, multiple gems declared in your Gemfile(5) are satisfied by the same second\-level dependency\. For instance, consider the case of \fBthin\fR and \fBrack\-perftools\-profiler\fR\.
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "thin"
gem "rack\-perftools\-profiler"
.
.fi
.
.IP "" 0
.
.P
The \fBthin\fR gem depends on \fBrack >= 1\.0\fR, while \fBrack\-perftools\-profiler\fR depends on \fBrack ~> 1\.0\fR\. If you run bundle install, you get:
.
.IP "" 4
.
.nf

Fetching source index for https://rubygems\.org/
Installing daemons (1\.1\.0)
Installing eventmachine (0\.12\.10) with native extensions
Installing open4 (1\.0\.1)
Installing perftools\.rb (0\.4\.7) with native extensions
Installing rack (1\.2\.1)
Installing rack\-perftools_profiler (0\.0\.2)
Installing thin (1\.2\.7) with native extensions
Using bundler (1\.0\.0\.rc\.3)
.
.fi
.
.IP "" 0
.
.P
In this case, the two gems have their own set of dependencies, but they share \fBrack\fR in common\. If you run \fBbundle update thin\fR, bundler will update \fBdaemons\fR, \fBeventmachine\fR and \fBrack\fR, which are dependencies of \fBthin\fR, but not \fBopen4\fR or \fBperftools\.rb\fR, which are dependencies of \fBrack\-perftools_profiler\fR\. Note that \fBbundle update thin\fR will update \fBrack\fR even though it\'s \fIalso\fR a dependency of \fBrack\-perftools_profiler\fR\.
.
.P
In short, by default, when you update a gem using \fBbundle update\fR, bundler will update all dependencies of that gem, including those that are also dependencies of another gem\.
.
.P
To prevent updating shared dependencies, prior to version 1\.14 the only option was the \fBCONSERVATIVE UPDATING\fR behavior in bundle install(1) \fIbundle\-install\.1\.html\fR:
.
.P
In this scenario, updating the \fBthin\fR version manually in the Gemfile(5), and then running bundle install(1) \fIbundle\-install\.1\.html\fR will only update \fBdaemons\fR and \fBeventmachine\fR, but not \fBrack\fR\. For more information, see the \fBCONSERVATIVE UPDATING\fR section of bundle install(1) \fIbundle\-install\.1\.html\fR\.
.
.P
Starting with 1\.14, specifying the \fB\-\-conservative\fR option will also prevent shared dependencies from being updated\.
.
.SH "PATCH LEVEL OPTIONS"
Version 1\.14 introduced 4 patch\-level options that will influence how gem versions are resolved\. One of the following options can be used: \fB\-\-patch\fR, \fB\-\-minor\fR or \fB\-\-major\fR\. \fB\-\-strict\fR can be added to further influence resolution\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
Do not allow any gem to be updated past latest \fB\-\-patch\fR | \fB\-\-minor\fR | \fB\-\-major\fR\.
.
.P
When Bundler is resolving what versions to use to satisfy declared requirements in the Gemfile or in parent gems, it looks up all available versions, filters out any versions that don\'t satisfy the requirement, and then, by default, sorts them from newest to oldest, considering them in that order\.
.
.P
Providing one of the patch level options (e\.g\. \fB\-\-patch\fR) changes the sort order of the satisfying versions, causing Bundler to consider the latest \fB\-\-patch\fR or \fB\-\-minor\fR version available before other versions\. Note that versions outside the stated patch level could still be resolved to if necessary to find a suitable dependency graph\.
.
.P
For example, if gem \'foo\' is locked at 1\.0\.2, with no gem requirement defined in the Gemfile, and versions 1\.0\.3, 1\.0\.4, 1\.1\.0, 1\.1\.1, 2\.0\.0 all exist, the default order of preference by default (\fB\-\-major\fR) will be "2\.0\.0, 1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2"\.
.
.P
If the \fB\-\-patch\fR option is used, the order of preference will change to "1\.0\.4, 1\.0\.3, 1\.0\.2, 1\.1\.1, 1\.1\.0, 2\.0\.0"\.
.
.P
If the \fB\-\-minor\fR option is used, the order of preference will change to "1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2, 2\.0\.0"\.
.
.P
Combining the \fB\-\-strict\fR option with any of the patch level options will remove any versions beyond the scope of the patch level option, to ensure that no gem is updated that far\.
.
.P
To continue the previous example, if both \fB\-\-patch\fR and \fB\-\-strict\fR options are used, the available versions for resolution would be "1\.0\.4, 1\.0\.3, 1\.0\.2"\. If \fB\-\-minor\fR and \fB\-\-strict\fR are used, it would be "1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2"\.
.
.P
Gem requirements as defined in the Gemfile will still be the first determining factor for what versions are available\. If the gem requirement for \fBfoo\fR in the Gemfile is \'~> 1\.0\', that will accomplish the same thing as providing the \fB\-\-minor\fR and \fB\-\-strict\fR options\.
.
.SH "PATCH LEVEL EXAMPLES"
Given the following gem specifications:
.
.IP "" 4
.
.nf

foo 1\.4\.3, requires: ~> bar 2\.0
foo 1\.4\.4, requires: ~> bar 2\.0
foo 1\.4\.5, requires: ~> bar 2\.1
foo 1\.5\.0, requires: ~> bar 2\.1
foo 1\.5\.1, requires: ~> bar 3\.0
bar with versions 2\.0\.3, 2\.0\.4, 2\.1\.0, 2\.1\.1, 3\.0\.0
.
.fi
.
.IP "" 0
.
.P
Gemfile:
.
.IP "" 4
.
.nf

gem \'foo\'
.
.fi
.
.IP "" 0
.
.P
Gemfile\.lock:
.
.IP "" 4
.
.nf

foo (1\.4\.3)
  bar (~> 2\.0)
bar (2\.0\.3)
.
.fi
.
.IP "" 0
.
.P
Cases:
.
.IP "" 4
.
.nf

#  Command Line                     Result
\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
1  bundle update \-\-patch            \'foo 1\.4\.5\', \'bar 2\.1\.1\'
2  bundle update \-\-patch foo        \'foo 1\.4\.5\', \'bar 2\.1\.1\'
3  bundle update \-\-minor            \'foo 1\.5\.1\', \'bar 3\.0\.0\'
4  bundle update \-\-minor \-\-strict   \'foo 1\.5\.0\', \'bar 2\.1\.1\'
5  bundle update \-\-patch \-\-strict   \'foo 1\.4\.4\', \'bar 2\.0\.4\'
.
.fi
.
.IP "" 0
.
.P
In case 1, bar is upgraded to 2\.1\.1, a minor version increase, because the dependency from foo 1\.4\.5 required it\.
.
.P
In case 2, only foo is requested to be unlocked, but bar is also allowed to move because it\'s not a declared dependency in the Gemfile\.
.
.P
In case 3, bar goes up a whole major release, because a minor increase is preferred now for foo, and when it goes to 1\.5\.1, it requires 3\.0\.0 of bar\.
.
.P
In case 4, foo is preferred up to a minor version, but 1\.5\.1 won\'t work because the \-\-strict flag removes bar 3\.0\.0 from consideration since it\'s a major increment\.
.
.P
In case 5, both foo and bar have any minor or major increments removed from consideration because of the \-\-strict flag, so the most they can move is up to 1\.4\.4 and 2\.0\.4\.
.
.SH "RECOMMENDED WORKFLOW"
In general, when working with an application managed with bundler, you should use the following workflow:
.
.IP "\(bu" 4
After you create your Gemfile(5) for the first time, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
Check the resulting \fBGemfile\.lock\fR into version control
.
.IP
$ git add Gemfile\.lock
.
.IP "\(bu" 4
When checking out this repository on another development machine, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
When checking out this repository on a deployment machine, run
.
.IP
$ bundle install \-\-deployment
.
.IP "\(bu" 4
After changing the Gemfile(5) to reflect a new or update dependency, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
Make sure to check the updated \fBGemfile\.lock\fR into version control
.
.IP
$ git add Gemfile\.lock
.
.IP "\(bu" 4
If bundle install(1) \fIbundle\-install\.1\.html\fR reports a conflict, manually update the specific gems that you changed in the Gemfile(5)
.
.IP
$ bundle update rails thin
.
.IP "\(bu" 4
If you want to update all the gems to the latest possible versions that still match the gems listed in the Gemfile(5), run
.
.IP
$ bundle update \-\-all
.
.IP "" 0

PK9H[�����share/man/man1/bundle-package.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-PACKAGE" "1" "September 2019" "" ""
.
.SH "NAME"
\fBbundle\-package\fR \- Package your needed \fB\.gem\fR files into your application
.
.SH "SYNOPSIS"
\fBbundle package\fR
.
.SH "DESCRIPTION"
Copy all of the \fB\.gem\fR files needed to run the application into the \fBvendor/cache\fR directory\. In the future, when running [bundle install(1)][bundle\-install], use the gems in the cache in preference to the ones on \fBrubygems\.org\fR\.
.
.SH "GIT AND PATH GEMS"
Since Bundler 1\.2, the \fBbundle package\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This needs to be explicitly enabled via the \fB\-\-all\fR option\. Once used, the \fB\-\-all\fR option will be remembered\.
.
.SH "SUPPORT FOR MULTIPLE PLATFORMS"
When using gems that have different packages for different platforms, Bundler 1\.8 and newer support caching of gems for other platforms where the Gemfile has been resolved (i\.e\. present in the lockfile) in \fBvendor/cache\fR\. This needs to be enabled via the \fB\-\-all\-platforms\fR option\. This setting will be remembered in your local bundler configuration\.
.
.SH "REMOTE FETCHING"
By default, if you run \fBbundle install(1)\fR](bundle\-install\.1\.html) after running bundle package(1) \fIbundle\-package\.1\.html\fR, bundler will still connect to \fBrubygems\.org\fR to check whether a platform\-specific gem exists for any of the gems in \fBvendor/cache\fR\.
.
.P
For instance, consider this Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "nokogiri"
.
.fi
.
.IP "" 0
.
.P
If you run \fBbundle package\fR under C Ruby, bundler will retrieve the version of \fBnokogiri\fR for the \fB"ruby"\fR platform\. If you deploy to JRuby and run \fBbundle install\fR, bundler is forced to check to see whether a \fB"java"\fR platformed \fBnokogiri\fR exists\.
.
.P
Even though the \fBnokogiri\fR gem for the Ruby platform is \fItechnically\fR acceptable on JRuby, it has a C extension that does not run on JRuby\. As a result, bundler will, by default, still connect to \fBrubygems\.org\fR to check whether it has a version of one of your gems more specific to your platform\.
.
.P
This problem is also not limited to the \fB"java"\fR platform\. A similar (common) problem can happen when developing on Windows and deploying to Linux, or even when developing on OSX and deploying to Linux\.
.
.P
If you know for sure that the gems packaged in \fBvendor/cache\fR are appropriate for the platform you are on, you can run \fBbundle install \-\-local\fR to skip checking for more appropriate gems, and use the ones in \fBvendor/cache\fR\.
.
.P
One way to be sure that you have the right platformed versions of all your gems is to run \fBbundle package\fR on an identical machine and check in the gems\. For instance, you can run \fBbundle package\fR on an identical staging box during your staging process, and check in the \fBvendor/cache\fR before deploying to production\.
.
.P
By default, bundle package(1) \fIbundle\-package\.1\.html\fR fetches and also installs the gems to the default location\. To package the dependencies to \fBvendor/cache\fR without installing them to the local install location, you can run \fBbundle package \-\-no\-install\fR\.
PK9H[�v�aDDshare/man/man1/bundle-open.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-OPEN" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
.
.SH "SYNOPSIS"
\fBbundle open\fR [GEM]
.
.SH "DESCRIPTION"
Opens the source directory of the provided GEM in your editor\.
.
.P
For this to work the \fBEDITOR\fR or \fBBUNDLER_EDITOR\fR environment variable has to be set\.
.
.P
Example:
.
.IP "" 4
.
.nf

bundle open \'rack\'
.
.fi
.
.IP "" 0
.
.P
Will open the source directory for the \'rack\' gem in your bundle\.
PK9H[��"��share/man/man1/bundle-show.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-SHOW" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
.
.SH "SYNOPSIS"
\fBbundle show\fR [GEM] [\-\-paths]
.
.SH "DESCRIPTION"
Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by name\.
.
.P
Calling show with [GEM] will list the exact location of that gem on your machine\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-paths\fR
List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by gem name\.

PK9H[�����share/man/man1/rake.1nu�[���.Dd June 12, 2016
.Dt RAKE 1
.Os rake 11.2.2
.Sh NAME
.Nm rake
.Nd make-like build utility for Ruby
.Sh SYNOPSIS
.Nm
.Op Fl f Ar rakefile
.Op Ar options
.Ar targets ...
.Sh DESCRIPTION
.Nm
is a
.Xr make 1 Ns -like
build utility for Ruby.
Tasks and dependencies are specified in standard Ruby syntax.
.Sh OPTIONS
.Bl -tag -width Ds
.It Fl m , Fl -multitask
Treat all tasks as multitasks.
.It Fl B , Fl -build-all
Build all prerequisites, including those which are up\-to\-date.
.It Fl j , Fl -jobs Ar num_jobs
Specifies the maximum number of tasks to execute in parallel (default is number of CPU cores + 4).
.El
.Ss Modules
.Bl -tag -width Ds
.It Fl I , Fl -libdir Ar libdir
Include
.Ar libdir
in the search path for required modules.
.It Fl r , Fl -require Ar module
Require
.Ar module
before executing
.Pa rakefile .
.El
.Ss Rakefile location
.Bl -tag -width Ds
.It Fl f , Fl -rakefile Ar filename
Use
.Ar filename
as the rakefile to search for.
.It Fl N , Fl -no-search , Fl -nosearch
Do not search parent directories for the Rakefile.
.It Fl G , Fl -no-system , Fl -nosystem
Use standard project Rakefile search paths, ignore system wide rakefiles.
.It Fl R , Fl -rakelib Ar rakelibdir , Fl -rakelibdir Ar rakelibdir
Auto-import any .rake files in
.Ar rakelibdir
(default is
.Sq rakelib )
.It Fl g , Fl -system
Use system-wide (global) rakefiles (usually
.Pa ~/.rake/*.rake ) .
.El
.Ss Debugging
.Bl -tag -width Ds
.It Fl -backtrace Ns = Ns Ar out
Enable full backtrace.
.Ar out
can be
.Dv stderr
(default) or
.Dv stdout .
.It Fl t , Fl -trace Ns = Ns Ar out
Turn on invoke/execute tracing, enable full backtrace.
.Ar out
can be
.Dv stderr
(default) or
.Dv stdout .
.It Fl -suppress-backtrace Ar pattern
Suppress backtrace lines matching regexp
.Ar pattern .
Ignored if
.Fl -trace
is on.
.It Fl -rules
Trace the rules resolution.
.It Fl n , Fl -dry-run
Do a dry run without executing actions.
.It Fl T , Fl -tasks Op Ar pattern
Display the tasks (matching optional
.Ar pattern )
with descriptions, then exit.
.It Fl D , Fl -describe Op Ar pattern
Describe the tasks (matching optional
.Ar pattern ) ,
then exit.
.It Fl W , Fl -where Op Ar pattern
Describe the tasks (matching optional
.Ar pattern ) ,
then exit.
.It Fl P , Fl -prereqs
Display the tasks and dependencies, then exit.
.It Fl e , Fl -execute Ar code
Execute some Ruby code and exit.
.It Fl p , Fl -execute-print Ar code
Execute some Ruby code, print the result, then exit.
.It Fl E , Fl -execute-continue Ar code
Execute some Ruby code, then continue with normal task processing.
.El
.Ss Information
.Bl -tag -width Ds
.It Fl v , Fl -verbose
Log message to standard output.
.It Fl q , Fl -quiet
Do not log messages to standard output.
.It Fl s , Fl -silent
Like
.Fl -quiet ,
but also suppresses the
.Sq in directory
announcement.
.It Fl X , Fl -no-deprecation-warnings
Disable the deprecation warnings.
.It Fl -comments
Show commented tasks only
.It Fl A , Fl -all
Show all tasks, even uncommented ones (in combination with
.Fl T
or
.Fl D )
.It Fl -job-stats Op Ar level
Display job statistics.
If
.Ar level
is
.Sq history ,
displays a complete job list.
.It Fl V , Fl -version
Display the program version.
.It Fl h , Fl H , Fl -help
Display a help message.
.El
.Sh SEE ALSO
The complete documentation for
.Nm rake
has been installed at
.Pa /usr/share/doc/rake-doc/html/index.html .
It is also available online at
.Lk https://ruby.github.io/rake .
.Sh AUTHORS
.An -nosplit
.Nm
was written by
.An Jim Weirich Aq Mt jim@weirichhouse.org .
.Pp
This manual was created by
.An Caitlin Matos Aq Mt caitlin.matos@zoho.com
for the Debian project (but may be used by others).
It was inspired by the manual by
.An Jani Monoses Aq Mt jani@iv.ro
for the Ubuntu project.
PK9H[j����share/man/man1/bundle-gem.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-GEM" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
.
.SH "SYNOPSIS"
\fBbundle gem\fR \fIGEM_NAME\fR \fIOPTIONS\fR
.
.SH "DESCRIPTION"
Generates a directory named \fBGEM_NAME\fR with a \fBRakefile\fR, \fBGEM_NAME\.gemspec\fR, and other supporting files and directories that can be used to develop a rubygem with that name\.
.
.P
Run \fBrake \-T\fR in the resulting project for a list of Rake tasks that can be used to test and publish the gem to rubygems\.org\.
.
.P
The generated project skeleton can be customized with OPTIONS, as explained below\. Note that these options can also be specified via Bundler\'s global configuration file using the following names:
.
.IP "\(bu" 4
\fBgem\.coc\fR
.
.IP "\(bu" 4
\fBgem\.mit\fR
.
.IP "\(bu" 4
\fBgem\.test\fR
.
.IP "" 0
.
.SH "OPTIONS"
.
.TP
\fB\-\-exe\fR or \fB\-b\fR or \fB\-\-bin\fR
Specify that Bundler should create a binary executable (as \fBexe/GEM_NAME\fR) in the generated rubygem project\. This binary will also be added to the \fBGEM_NAME\.gemspec\fR manifest\. This behavior is disabled by default\.
.
.TP
\fB\-\-no\-exe\fR
Do not create a binary (overrides \fB\-\-exe\fR specified in the global config)\.
.
.TP
\fB\-\-coc\fR
Add a \fBCODE_OF_CONDUCT\.md\fR file to the root of the generated project\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-\-no\-coc\fR
Do not create a \fBCODE_OF_CONDUCT\.md\fR (overrides \fB\-\-coc\fR specified in the global config)\.
.
.TP
\fB\-\-ext\fR
Add boilerplate for C extension code to the generated project\. This behavior is disabled by default\.
.
.TP
\fB\-\-no\-ext\fR
Do not add C extension code (overrides \fB\-\-ext\fR specified in the global config)\.
.
.TP
\fB\-\-mit\fR
Add an MIT license to a \fBLICENSE\.txt\fR file in the root of the generated project\. Your name from the global git config is used for the copyright statement\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-\-no\-mit\fR
Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
.
.TP
\fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR
Specify the test framework that Bundler should use when generating the project\. Acceptable values are \fBminitest\fR and \fBrspec\fR\. The \fBGEM_NAME\.gemspec\fR will be configured and a skeleton test/spec directory will be created based on this option\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\. If no option is specified, the default testing framework is RSpec\.
.
.TP
\fB\-e\fR, \fB\-\-edit[=EDITOR]\fR
Open the resulting GEM_NAME\.gemspec in EDITOR, or the default editor if not specified\. The default is \fB$BUNDLER_EDITOR\fR, \fB$VISUAL\fR, or \fB$EDITOR\fR\.
.
.SH "SEE ALSO"
.
.IP "\(bu" 4
bundle config(1) \fIbundle\-config\.1\.html\fR
.
.IP "" 0

PK9H[��\

share/man/man1/bundle.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\fR \- Ruby Dependency Management
.
.SH "SYNOPSIS"
\fBbundle\fR COMMAND [\-\-no\-color] [\-\-verbose] [ARGS]
.
.SH "DESCRIPTION"
Bundler manages an \fBapplication\'s dependencies\fR through its entire life across many machines systematically and repeatably\.
.
.P
See the bundler website \fIhttps://bundler\.io\fR for information on getting started, and Gemfile(5) for more information on the \fBGemfile\fR format\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-no\-color\fR
Print all output without color
.
.TP
\fB\-\-retry\fR, \fB\-r\fR
Specify the number of times you wish to attempt network commands
.
.TP
\fB\-\-verbose\fR, \fB\-V\fR
Print out additional logging information
.
.SH "BUNDLE COMMANDS"
We divide \fBbundle\fR subcommands into primary commands and utilities:
.
.SH "PRIMARY COMMANDS"
.
.TP
\fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR
Install the gems specified by the \fBGemfile\fR or \fBGemfile\.lock\fR
.
.TP
\fBbundle update(1)\fR \fIbundle\-update\.1\.html\fR
Update dependencies to their latest versions
.
.TP
\fBbundle package(1)\fR \fIbundle\-package\.1\.html\fR
Package the \.gem files required by your application into the \fBvendor/cache\fR directory
.
.TP
\fBbundle exec(1)\fR \fIbundle\-exec\.1\.html\fR
Execute a script in the current bundle
.
.TP
\fBbundle config(1)\fR \fIbundle\-config\.1\.html\fR
Specify and read configuration options for Bundler
.
.TP
\fBbundle help(1)\fR
Display detailed help for each subcommand
.
.SH "UTILITIES"
.
.TP
\fBbundle add(1)\fR \fIbundle\-add\.1\.html\fR
Add the named gem to the Gemfile and run \fBbundle install\fR
.
.TP
\fBbundle binstubs(1)\fR \fIbundle\-binstubs\.1\.html\fR
Generate binstubs for executables in a gem
.
.TP
\fBbundle check(1)\fR \fIbundle\-check\.1\.html\fR
Determine whether the requirements for your application are installed and available to Bundler
.
.TP
\fBbundle show(1)\fR \fIbundle\-show\.1\.html\fR
Show the source location of a particular gem in the bundle
.
.TP
\fBbundle outdated(1)\fR \fIbundle\-outdated\.1\.html\fR
Show all of the outdated gems in the current bundle
.
.TP
\fBbundle console(1)\fR
Start an IRB session in the current bundle
.
.TP
\fBbundle open(1)\fR \fIbundle\-open\.1\.html\fR
Open an installed gem in the editor
.
.TP
\fBbundle lock(1)\fR \fIbundle\-lock\.1\.html\fR
Generate a lockfile for your dependencies
.
.TP
\fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR
Generate a visual representation of your dependencies
.
.TP
\fBbundle init(1)\fR \fIbundle\-init\.1\.html\fR
Generate a simple \fBGemfile\fR, placed in the current directory
.
.TP
\fBbundle gem(1)\fR \fIbundle\-gem\.1\.html\fR
Create a simple gem, suitable for development with Bundler
.
.TP
\fBbundle platform(1)\fR \fIbundle\-platform\.1\.html\fR
Display platform compatibility information
.
.TP
\fBbundle clean(1)\fR \fIbundle\-clean\.1\.html\fR
Clean up unused gems in your Bundler directory
.
.TP
\fBbundle doctor(1)\fR \fIbundle\-doctor\.1\.html\fR
Display warnings about common problems
.
.TP
\fBbundle remove(1)\fR \fIbundle\-remove\.1\.html\fR
Removes gems from the Gemfile
.
.SH "PLUGINS"
When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
.
.SH "OBSOLETE"
These commands are obsolete and should no longer be used:
.
.IP "\(bu" 4
\fBbundle cache(1)\fR
.
.IP "\(bu" 4
\fBbundle show(1)\fR
.
.IP "" 0

PK9H[��@|�J�Jshare/man/man1/ruby.1nu�[���.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
.Dd April 14, 2018
.Dt RUBY \&1 "Ruby Programmer's Reference Guide"
.Os UNIX
.Sh NAME
.Nm ruby
.Nd Interpreted object-oriented scripting language
.Sh SYNOPSIS
.Nm
.Op Fl -copyright
.Op Fl -version
.Op Fl SUacdlnpswvy
.Op Fl 0 Ns Op Ar octal
.Op Fl C Ar directory
.Op Fl E Ar external Ns Op : Ns Ar internal
.Op Fl F Ns Op Ar pattern
.Op Fl I Ar directory
.Op Fl K Ns Op Ar c
.Op Fl T Ns Op Ar level
.Op Fl W Ns Op Ar level
.Op Fl e Ar command
.Op Fl i Ns Op Ar extension
.Op Fl r Ar library
.Op Fl x Ns Op Ar directory
.Op Fl - Ns Bro Cm enable Ns | Ns Cm disable Brc Ns - Ns Ar FEATURE
.Op Fl -dump Ns = Ns Ar target
.Op Fl -verbose
.Op Fl -
.Op Ar program_file
.Op Ar argument ...
.Sh DESCRIPTION
Ruby is an interpreted scripting language for quick and easy
object-oriented programming.  It has many features to process text
files and to do system management tasks (like in Perl).  It is simple,
straight-forward, and extensible.
.Pp
If you want a language for easy object-oriented programming, or you
don't like the Perl ugliness, or you do like the concept of LISP, but
don't like too many parentheses, Ruby might be your language of
choice.
.Sh FEATURES
Ruby's features are as follows:
.Bl -tag -width 6n
.It Sy "Interpretive"
Ruby is an interpreted language, so you don't have to recompile
programs written in Ruby to execute them.
.Pp
.It Sy "Variables have no type (dynamic typing)"
Variables in Ruby can contain data of any type.  You don't have to
worry about variable typing.  Consequently, it has a weaker compile
time check.
.Pp
.It Sy "No declaration needed"
You can use variables in your Ruby programs without any declarations.
Variable names denote their scope - global, class, instance, or local.
.Pp
.It Sy "Simple syntax"
Ruby has a simple syntax influenced slightly from Eiffel.
.Pp
.It Sy "No user-level memory management"
Ruby has automatic memory management.  Objects no longer referenced
from anywhere are automatically collected by the garbage collector
built into the interpreter.
.Pp
.It Sy "Everything is an object"
Ruby is a purely object-oriented language, and was so since its
creation.  Even such basic data as integers are seen as objects.
.Pp
.It Sy "Class, inheritance, and methods"
Being an object-oriented language, Ruby naturally has basic
features like classes, inheritance, and methods.
.Pp
.It Sy "Singleton methods"
Ruby has the ability to define methods for certain objects.  For
example, you can define a press-button action for certain widget by
defining a singleton method for the button.  Or, you can make up your
own prototype based object system using singleton methods, if you want
to.
.Pp
.It Sy "Mix-in by modules"
Ruby intentionally does not have the multiple inheritance as it is a
source of confusion.  Instead, Ruby has the ability to share
implementations across the inheritance tree.  This is often called a
.Sq Mix-in .
.Pp
.It Sy "Iterators"
Ruby has iterators for loop abstraction.
.Pp
.It Sy "Closures"
In Ruby, you can objectify the procedure.
.Pp
.It Sy "Text processing and regular expressions"
Ruby has a bunch of text processing features like in Perl.
.Pp
.It Sy "M17N, character set independent"
Ruby supports multilingualized programming. Easy to process texts
written in many different natural languages and encoded in many
different character encodings, without dependence on Unicode.
.Pp
.It Sy "Bignums"
With built-in bignums, you can for example calculate factorial(400).
.Pp
.It Sy "Reflection and domain specific languages"
Class is also an instance of the Class class. Definition of classes and methods
is an expression just as 1+1 is. So your programs can even write and modify programs.
Thus you can write your application in your own programming language on top of Ruby.
.Pp
.It Sy "Exception handling"
As in Java(tm).
.Pp
.It Sy "Direct access to the OS"
Ruby can use most
.Ux
system calls, often used in system programming.
.Pp
.It Sy "Dynamic loading"
On most
.Ux
systems, you can load object files into the Ruby interpreter
on-the-fly.
.It Sy "Rich libraries"
In addition to the
.Dq builtin libraries
and
.Dq standard libraries
that are bundled with Ruby, a vast amount of third-party libraries
.Pq Dq gems
are available via the package management system called
.Sq RubyGems ,
namely the
.Xr gem 1
command.  Visit RubyGems.org
.Pq Lk https://rubygems.org/
to find the gems you need, and explore GitHub
.Pq Lk https://github.com/
to see how they are being developed and used.
.El
.Pp
.Sh OPTIONS
The Ruby interpreter accepts the following command-line options (switches).
They are quite similar to those of
.Xr perl 1 .
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl -copyright
Prints the copyright notice, and quits immediately without running any
script.
.Pp
.It Fl -version
Prints the version of the Ruby interpreter, and quits immediately without
running any script.
.Pp
.It Fl 0 Ns Op Ar octal
(The digit
.Dq zero . )
Specifies the input record separator
.Pf ( Li "$/" )
as an octal number. If no digit is given, the null character is taken
as the separator.  Other switches may follow the digits.
.Fl 00
turns Ruby into paragraph mode.
.Fl 0777
makes Ruby read whole file at once as a single string since there is
no legal character with that value.
.Pp
.It Fl C Ar directory
.It Fl X Ar directory
Causes Ruby to switch to the directory.
.Pp
.It Fl E Ar external Ns Op : Ns Ar internal
.It Fl -encoding Ar external Ns Op : Ns Ar internal
Specifies the default value(s) for external encodings and internal encoding. Values should be separated with colon (:).
.Pp
You can omit the one for internal encodings, then the value
.Pf ( Li "Encoding.default_internal" ) will be nil.
.Pp
.It Fl -external-encoding Ns = Ns Ar encoding
.It Fl -internal-encoding Ns = Ns Ar encoding
Specify the default external or internal character encoding
.Pp
.It Fl F Ar pattern
Specifies input field separator
.Pf ( Li "$;" ) .
.Pp
.It Fl I Ar directory
Used to tell Ruby where to load the library scripts.  Directory path
will be added to the load-path variable
.Pf ( Li "$:" ) .
.Pp
.It Fl K Ar kcode
Specifies KANJI (Japanese) encoding. The default value for script encodings
.Pf ( Li "__ENCODING__" ) and external encodings ( Li "Encoding.default_external" ) will be the specified one.
.Ar kcode
can be one of
.Bl -hang -offset indent
.It Sy e
EUC-JP
.Pp
.It Sy s
Windows-31J (CP932)
.Pp
.It Sy u
UTF-8
.Pp
.It Sy n
ASCII-8BIT (BINARY)
.El
.Pp
.It Fl S
Makes Ruby use the
.Ev PATH
environment variable to search for script, unless its name begins
with a slash.  This is used to emulate
.Li #!
on machines that don't support it, in the following manner:
.Bd -literal -offset indent
#! /usr/local/bin/ruby
# This line makes the next one a comment in Ruby \e
  exec /usr/local/bin/ruby -S $0 $*
.Ed
.Pp
On some systems
.Li "$0"
does not always contain the full pathname, so you need the
.Fl S
switch to tell Ruby to search for the script if necessary (to handle embedded
spaces and such).  A better construct than
.Li "$*"
would be
.Li ${1+"$@"} ,
but it does not work if the script is being interpreted by
.Xr csh 1 .
.Pp
.It Fl T Ns Op Ar level=1
Turns on taint checks at the specified level (default 1).
.Pp
.It Fl U
Sets the default value for internal encodings
.Pf ( Li "Encoding.default_internal" ) to UTF-8.
.Pp
.It Fl W Ns Op Ar level=2
Turns on verbose mode at the specified level without printing the version
message at the beginning. The level can be;
.Bl -hang -offset indent
.It Sy 0
Verbose mode is "silence". It sets the
.Li "$VERBOSE"
to nil.
.Pp
.It Sy 1
Verbose mode is "medium". It sets the
.Li "$VERBOSE"
to false.
.Pp
.It Sy 2 (default)
Verbose mode is "verbose". It sets the
.Li "$VERBOSE"
to true.
.Fl W Ns
2 is same as
.Fl w
.
.El
.Pp
.It Fl a
Turns on auto-split mode when used with
.Fl n
or
.Fl p .
In auto-split mode, Ruby executes
.Dl $F = $_.split
at beginning of each loop.
.Pp
.It Fl c
Causes Ruby to check the syntax of the script and exit without
executing. If there are no syntax errors, Ruby will print
.Dq Syntax OK
to the standard output.
.Pp
.It Fl d
.It Fl -debug
Turns on debug mode.
.Li "$DEBUG"
will be set to true.
.Pp
.It Fl e Ar command
Specifies script from command-line while telling Ruby not to search
the rest of the arguments for a script file name.
.Pp
.It Fl h
.It Fl -help
Prints a summary of the options.
.Pp
.It Fl i Ar extension
Specifies in-place-edit mode.  The extension, if specified, is added
to old file name to make a backup copy.  For example:
.Bd -literal -offset indent
% echo matz > /tmp/junk
% cat /tmp/junk
matz
% ruby -p -i.bak -e '$_.upcase!' /tmp/junk
% cat /tmp/junk
MATZ
% cat /tmp/junk.bak
matz
.Ed
.Pp
.It Fl l
(The lowercase letter
.Dq ell . )
Enables automatic line-ending processing, which means to firstly set
.Li "$\e"
to the value of
.Li "$/" ,
and secondly chops every line read using
.Li chop! .
.Pp
.It Fl n
Causes Ruby to assume the following loop around your script, which
makes it iterate over file name arguments somewhat like
.Nm sed
.Fl n
or
.Nm awk .
.Bd -literal -offset indent
while gets
  ...
end
.Ed
.Pp
.It Fl p
Acts mostly same as -n switch, but print the value of variable
.Li "$_"
at the each end of the loop.  For example:
.Bd -literal -offset indent
% echo matz | ruby -p -e '$_.tr! "a-z", "A-Z"'
MATZ
.Ed
.Pp
.It Fl r Ar library
Causes Ruby to load the library using require.  It is useful when using
.Fl n
or
.Fl p .
.Pp
.It Fl s
Enables some switch parsing for switches after script name but before
any file name arguments (or before a
.Fl - ) .
Any switches found there are removed from
.Li ARGV
and set the corresponding variable in the script.  For example:
.Bd -literal -offset indent
#! /usr/local/bin/ruby -s
# prints "true" if invoked with `-xyz' switch.
print "true\en" if $xyz
.Ed
.Pp
.It Fl v
Enables verbose mode.  Ruby will print its version at the beginning
and set the variable
.Li "$VERBOSE"
to true.  Some methods print extra messages if this variable is true.
If this switch is given, and no other switches are present, Ruby quits
after printing its version.
.Pp
.It Fl w
Enables verbose mode without printing version message at the
beginning.  It sets the
.Li "$VERBOSE"
variable to true.
.Pp
.It Fl x Ns Op Ar directory
Tells Ruby that the script is embedded in a message.  Leading garbage
will be discarded until the first line that starts with
.Dq #!
and contains the string,
.Dq ruby .
Any meaningful switches on that line will be applied.  The end of the script
must be specified with either
.Li EOF ,
.Li "^D" ( Li "control-D" ) ,
.Li "^Z" ( Li "control-Z" ) ,
or the reserved word
.Li __END__ .
If the directory name is specified, Ruby will switch to that directory
before executing script.
.Pp
.It Fl y
.It Fl -yydebug
DO NOT USE.
.Pp
Turns on compiler debug mode.  Ruby will print a bunch of internal
state messages during compilation.  Only specify this switch you are going to
debug the Ruby interpreter.
.Pp
.It Fl -disable- Ns Ar FEATURE
.It Fl -enable- Ns Ar FEATURE
Disables (or enables) the specified
.Ar FEATURE .
.Bl -tag -width "--disable-rubyopt" -compact
.It Fl -disable-gems
.It Fl -enable-gems
Disables (or enables) RubyGems libraries.  By default, Ruby will load the latest
version of each installed gem. The
.Li Gem
constant is true if RubyGems is enabled, false if otherwise.
.Pp
.It Fl -disable-rubyopt
.It Fl -enable-rubyopt
Ignores (or considers) the
.Ev RUBYOPT
environment variable. By default, Ruby considers the variable.
.Pp
.It Fl -disable-all
.It Fl -enable-all
Disables (or enables) all features.
.Pp
.El
.Pp
.It Fl -dump Ns = Ns Ar target
Dump some information.
.Pp
Prints the specified target.
.Ar target
can be one of;
.Bl -hang -offset indent
.It Sy version
version description same as
.Fl -version
.It Sy usage
brief usage message same as
.Fl h
.It Sy help
Show long help message same as
.Fl -help
.It Sy syntax
check of syntax same as
.Fl c
.Fl -yydebug
.It Sy yydebug
compiler debug mode, same as
.Fl -yydebug
.Pp
Only specify this switch if you are going to debug the Ruby interpreter.
.It Sy parsetree
.It Sy parsetree_with_comment
AST nodes tree
.Pp
Only specify this switch if you are going to debug the Ruby interpreter.
.It Sy insns
disassembled instructions
.Pp
Only specify this switch if you are going to debug the Ruby interpreter.
.El
.Pp
.It Fl -verbose
Enables verbose mode without printing version message at the
beginning.  It sets the
.Li "$VERBOSE"
variable to true.
If this switch is given, and no script arguments (script file or
.Fl e
options) are present, Ruby quits immediately.
.El
.Pp
.Sh ENVIRONMENT
.Bl -tag -width "RUBYSHELL" -compact
.It Ev RUBYLIB
A colon-separated list of directories that are added to Ruby's
library load path
.Pf ( Li "$:" ) . Directories from this environment variable are searched
before the standard load path is searched.
.Pp
e.g.:
.Dl RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"
.Pp
.It Ev RUBYOPT
Additional Ruby options.
.Pp
e.g.
.Dl RUBYOPT="-w -Ke"
.Pp
Note that RUBYOPT can contain only
.Fl d , Fl E , Fl I , Fl K , Fl r , Fl T , Fl U , Fl v , Fl w , Fl W, Fl -debug ,
.Fl -disable- Ns Ar FEATURE
and
.Fl -enable- Ns Ar FEATURE .
.Pp
.It Ev RUBYPATH
A colon-separated list of directories that Ruby searches for
Ruby programs when the
.Fl S
flag is specified.  This variable precedes the
.Ev PATH
environment variable.
.Pp
.It Ev RUBYSHELL
The path to the system shell command.  This environment variable is
enabled for only mswin32, mingw32, and OS/2 platforms.  If this
variable is not defined, Ruby refers to
.Ev COMSPEC .
.Pp
.It Ev PATH
Ruby refers to the
.Ev PATH
environment variable on calling Kernel#system.
.El
.Pp
And Ruby depends on some RubyGems related environment variables unless RubyGems is disabled.
See the help of
.Xr gem 1
as below.
.Bd -literal -offset indent
% gem help
.Ed
.Pp
.Sh GC ENVIRONMENT
The Ruby garbage collector (GC) tracks objects in fixed-sized slots,
but each object may have auxiliary memory allocations handled by the
malloc family of C standard library calls (
.Xr malloc 3 ,
.Xr calloc 3 ,
and
.Xr realloc 3 ) .
In this documentatation, the "heap" refers to the Ruby object heap
of fixed-sized slots, while "malloc" refers to auxiliary
allocations commonly referred to as the "process heap".
Thus there are at least two possible ways to trigger GC:
.Bl -hang -offset indent
.It Sy 1
Reaching the object limit.
.It Sy 2
Reaching the malloc limit.
.Pp
.El
In Ruby 2.1, the generational GC was introduced and the limits are divided
into young and old generations, providing two additional ways to trigger
a GC:
.Bl -hang -offset indent
.It Sy 3
Reaching the old object limit.
.It Sy 4
Reaching the old malloc limit.
.El
.Pp
There are currently 4 possible areas where the GC may be tuned by
the following 11 environment variables:
.Bl -hang -compact -width "RUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTOR"
.It Ev RUBY_GC_HEAP_INIT_SLOTS
Initial allocation slots.  Introduced in Ruby 2.1, default: 10000.
.Pp
.It Ev RUBY_GC_HEAP_FREE_SLOTS
Prepare at least this amount of slots after GC.
Allocate this number slots if there are not enough slots.
Introduced in Ruby 2.1, default: 4096
.Pp
.It Ev RUBY_GC_HEAP_GROWTH_FACTOR
Increase allocation rate of heap slots by this factor.
Introduced in Ruby 2.1, default: 1.8, minimum: 1.0 (no growth)
.Pp
.It Ev RUBY_GC_HEAP_GROWTH_MAX_SLOTS
Allocation rate is limited to this number of slots,
preventing excessive allocation due to RUBY_GC_HEAP_GROWTH_FACTOR.
Introduced in Ruby 2.1, default: 0 (no limit)
.Pp
.It Ev RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR
Perform a full GC when the number of old objects is more than R * N,
where R is this factor and N is the number of old objects after the
last full GC.
Introduced in Ruby 2.1.1, default: 2.0
.Pp
.It Ev RUBY_GC_MALLOC_LIMIT
The initial limit of young generation allocation from the malloc-family.
GC will start when this limit is reached.
Default: 16MB
.Pp
.It Ev RUBY_GC_MALLOC_LIMIT_MAX
The maximum limit of young generation allocation from malloc before GC starts.
Prevents excessive malloc growth due to RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR.
Introduced in Ruby 2.1, default: 32MB.
.Pp
.It Ev RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR
Increases the limit of young generation malloc calls, reducing
GC frequency but increasing malloc growth until RUBY_GC_MALLOC_LIMIT_MAX
is reached.
Introduced in Ruby 2.1, default: 1.4, minimum: 1.0 (no growth)
.Pp
.It Ev RUBY_GC_OLDMALLOC_LIMIT
The initial limit of old generation allocation from malloc,
a full GC will start when this limit is reached.
Introduced in Ruby 2.1, default: 16MB
.Pp
.It Ev RUBY_GC_OLDMALLOC_LIMIT_MAX
The maximum limit of old generation allocation from malloc before a
full GC starts.
Prevents excessive malloc growth due to RUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTOR.
Introduced in Ruby 2.1, default: 128MB
.Pp
.It Ev RUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTOR
Increases the limit of old generation malloc allocation, reducing full
GC frequency but increasing malloc growth until RUBY_GC_OLDMALLOC_LIMIT_MAX
is reached.
Introduced in Ruby 2.1, default: 1.2, minimum: 1.0 (no growth)
.Pp
.El
.Sh STACK SIZE ENVIRONMENT
Stack size environment variables are implementation-dependent and
subject to change with different versions of Ruby.  The VM stack is used
for pure-Ruby code and managed by the virtual machine.  Machine stack is
used by the operating system and its usage is dependent on C extensions
as well as C compiler options.  Using lower values for these may allow
applications to keep more Fibers or Threads running; but increases the
chance of SystemStackError exceptions and segmentation faults (SIGSEGV).
These environment variables are available since Ruby 2.0.0.
All values are specified in bytes.
.Pp
.Bl -hang -compact -width "RUBY_THREAD_MACHINE_STACK_SIZE"
.It Ev RUBY_THREAD_VM_STACK_SIZE
VM stack size used at thread creation.
default: 131072 (32-bit CPU) or 262144 (64-bit)
.Pp
.It Ev RUBY_THREAD_MACHINE_STACK_SIZE
Machine stack size used at thread creation.
default: 524288 or 1048575
.Pp
.It Ev RUBY_FIBER_VM_STACK_SIZE
VM stack size used at fiber creation.
default: 65536 or 131072
.Pp
.It Ev RUBY_FIBER_MACHINE_STACK_SIZE
Machine stack size used at fiber creation.
default: 262144 or 524288
.Pp
.El
.Sh SEE ALSO
.Bl -hang -compact -width "https://www.ruby-toolbox.com/"
.It Lk https://www.ruby-lang.org/
The official web site.
.It Lk https://www.ruby-toolbox.com/
Comprehensive catalog of Ruby libraries.
.El
.Pp
.Sh REPORTING BUGS
.Bl -bullet
.It
Security vulnerabilities should be reported via an email to
.Mt security@ruby-lang.org .
Reported problems will be published after being fixed.
.Pp
.It
Other bugs and feature requests can be reported via the
Ruby Issue Tracking System
.Pq Lk https://bugs.ruby-lang.org/ .
Do not report security vulnerabilities
via this system because it publishes the vulnerabilities immediately.
.El
.Sh AUTHORS
Ruby is designed and implemented by
.An Yukihiro Matsumoto Aq matz@netlab.jp .
.Pp
See
.Aq Lk https://bugs.ruby-lang.org/projects/ruby/wiki/Contributors
for contributors to Ruby.
PK:H[_D��;; share/man/man1/bundle-platform.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-PLATFORM" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-platform\fR \- Displays platform compatibility information
.
.SH "SYNOPSIS"
\fBbundle platform\fR [\-\-ruby]
.
.SH "DESCRIPTION"
\fBplatform\fR will display information from your Gemfile, Gemfile\.lock, and Ruby VM about your platform\.
.
.P
For instance, using this Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

ruby "1\.9\.3"

gem "rack"
.
.fi
.
.IP "" 0
.
.P
If you run \fBbundle platform\fR on Ruby 1\.9\.3, it will display the following output:
.
.IP "" 4
.
.nf

Your platform is: x86_64\-linux

Your app has gems that work on these platforms:
* ruby

Your Gemfile specifies a Ruby version requirement:
* ruby 1\.9\.3

Your current platform satisfies the Ruby version requirement\.
.
.fi
.
.IP "" 0
.
.P
\fBplatform\fR will list all the platforms in your \fBGemfile\.lock\fR as well as the \fBruby\fR directive if applicable from your Gemfile(5)\. It will also let you know if the \fBruby\fR directive requirement has been met\. If \fBruby\fR directive doesn\'t match the running Ruby VM, it will tell you what part does not\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-ruby\fR
It will display the ruby directive information, so you don\'t have to parse it from the Gemfile(5)\.

PK:H[Y*yPPshare/man/man1/bundle-remove.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-REMOVE" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-remove\fR \- Removes gems from the Gemfile
.
.SH "SYNOPSIS"
\fBbundle remove [GEM [GEM \.\.\.]] [\-\-install]\fR
.
.SH "DESCRIPTION"
Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid\. If a gem cannot be removed, a warning is printed\. If a gem is already absent from the Gemfile, and error is raised\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-install\fR
Runs \fBbundle install\fR after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem(s)\.
.
.P
Example:
.
.P
bundle remove rails
.
.P
bundle remove rails rack
.
.P
bundle remove rails rack \-\-install
PK:H[0���share/man/man1/erb.1nu�[���.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
.Dd December 16, 2018
.Dt ERB \&1 "Ruby Programmer's Reference Guide"
.Os UNIX
.Sh NAME
.Nm erb
.Nd Ruby Templating
.Sh SYNOPSIS
.Nm
.Op Fl -version
.Op Fl UPdnvx
.Op Fl E Ar ext Ns Op Ns : Ns int
.Op Fl S Ar level
.Op Fl T Ar mode
.Op Fl r Ar library
.Op Fl -
.Op file ...
.Pp
.Sh DESCRIPTION
.Nm
is a command line front-end for
.Li "ERB"
library, which is an implementation of eRuby.
.Pp
ERB provides an easy to use but powerful templating system for Ruby.
Using ERB, actual Ruby code can be added to any plain text document for the
purposes of generating document information details and/or flow control.
.Pp
.Nm
is a part of
.Nm Ruby .
.Pp
.Sh OPTIONS
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl -version
Prints the version of
.Nm .
.Pp
.It Fl E Ar external Ns Op : Ns Ar internal
.It Fl -encoding Ar external Ns Op : Ns Ar internal
Specifies the default value(s) for external encodings and internal encoding. Values should be separated with colon (:).
.Pp
You can omit the one for internal encodings, then the value
.Pf ( Li "Encoding.default_internal" ) will be nil.
.Pp
.It Fl P
Disables ruby code evaluation for lines beginning with
.Li "%" .
.Pp
.It Fl S Ar level
Specifies the safe level in which eRuby script will run.
.Pp
.It Fl T Ar mode
Specifies trim mode (default 0).
.Ar mode
can be one of
.Bl -hang -offset indent
.It Sy 0
EOL remains after the embedded ruby script is evaluated.
.Pp
.It Sy 1
EOL is removed if the line ends with
.Li "%>" .
.Pp
.It Sy 2
EOL is removed if the line starts with
.Li "<%"
and ends with
.Li "%>" .
.Pp
.It Sy -
EOL is removed if the line ends with
.Li "-%>" .
And leading whitespaces are removed if the erb directive starts with
.Li "<%-" .
.Pp
.El
.It Fl r
Load a library
.Pp
.It Fl U
can be one of
Sets the default value for internal encodings
.Pf ( Li "Encoding.default_internal" ) to UTF-8.
.Pp
.It Fl d
.It Fl -debug
Turns on debug mode.
.Li "$DEBUG"
will be set to true.
.Pp
.It Fl h
.It Fl -help
Prints a summary of the options.
.Pp
.It Fl n
Used with
.Fl x .
Prepends the line number to each line in the output.
.Pp
.It Fl v
Enables verbose mode.
.Li "$VERBOSE"
will be set to true.
.Pp
.It Fl x
Converts the eRuby script into Ruby script and prints it without line numbers.
.Pp
.El
.Pp
.Sh EXAMPLES
Here is an eRuby script
.Bd -literal -offset indent
<?xml version="1.0" ?>
<% require 'prime' -%>
<erb-example>
  <calc><%= 1+1 %></calc>
  <var><%= __FILE__ %></var>
  <library><%= Prime.each(10).to_a.join(", ") %></library>
</erb-example>
.Ed
.Pp
Command
.Dl "% erb -T - example.erb"
prints
.Bd -literal -offset indent
<?xml version="1.0" ?>
<erb-example>
  <calc>2</calc>
  <var>example.erb</var>
  <library>2, 3, 5, 7</library>
</erb-example>
.Ed
.Pp
.Sh SEE ALSO
.Xr ruby 1 .
.Pp
And see
.Xr ri 1
documentation for
.Li "ERB"
class.
.Pp
.Sh REPORTING BUGS
.Bl -bullet
.It
Security vulnerabilities should be reported via an email to
.Mt security@ruby-lang.org .
Reported problems will be published after being fixed.
.Pp
.It
Other bugs and feature requests can be reported via the
Ruby Issue Tracking System
.Pq Lk https://bugs.ruby-lang.org/ .
Do not report security vulnerabilities
via this system because it publishes the vulnerabilities immediately.
.El
.Sh AUTHORS
Written by Masatoshi SEKI.
PK:H[��}��share/man/man1/bundle-inject.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INJECT" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
.
.SH "SYNOPSIS"
\fBbundle inject\fR [GEM] [VERSION]
.
.SH "DESCRIPTION"
Adds the named gem(s) with their version requirements to the resolved [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.P
This command will add the gem to both your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock if it isn\'t listed yet\.
.
.P
Example:
.
.IP "" 4
.
.nf

bundle install
bundle inject \'rack\' \'> 0\'
.
.fi
.
.IP "" 0
.
.P
This will inject the \'rack\' gem with a version greater than 0 in your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock
PK:H[�K��� share/man/man1/bundle-pristine.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-PRISTINE" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
.
.SH "SYNOPSIS"
\fBbundle pristine\fR
.
.SH "DESCRIPTION"
\fBpristine\fR restores the installed gems in the bundle to their pristine condition using the local gem cache from RubyGems\. For git gems, a forced checkout will be performed\.
.
.P
For further explanation, \fBbundle pristine\fR ignores unpacked files on disk\. In other words, this command utilizes the local \fB\.gem\fR cache or the gem\'s git repository as if one were installing from scratch\.
.
.P
Note: the Bundler gem cannot be restored to its original state with \fBpristine\fR\. One also cannot use \fBbundle pristine\fR on gems with a \'path\' option in the Gemfile, because bundler has no original copy it can restore from\.
.
.P
When is it practical to use \fBbundle pristine\fR?
.
.P
It comes in handy when a developer is debugging a gem\. \fBbundle pristine\fR is a great way to get rid of experimental changes to a gem that one may not want\.
.
.P
Why use \fBbundle pristine\fR over \fBgem pristine \-\-all\fR?
.
.P
Both commands are very similar\. For context: \fBbundle pristine\fR, without arguments, cleans all gems from the lockfile\. Meanwhile, \fBgem pristine \-\-all\fR cleans all installed gems for that Ruby version\.
.
.P
If a developer forgets which gems in their project they might have been debugging, the Rubygems \fBgem pristine [GEMNAME]\fR command may be inconvenient\. One can avoid waiting for \fBgem pristine \-\-all\fR, and instead run \fBbundle pristine\fR\.
PK:H[���� share/man/man1/bundle-binstubs.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-BINSTUBS" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
.
.SH "SYNOPSIS"
\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone]
.
.SH "DESCRIPTION"
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can be run directly, and one that will always run the correct gem version used by the application\.
.
.P
For example, if you run \fBbundle binstubs rspec\-core\fR, Bundler will create the file \fBbin/rspec\fR\. That file will contain enough code to load Bundler, tell it to load the bundled gems, and then run rspec\.
.
.P
This command generates binstubs for executables in \fBGEM_NAME\fR\. Binstubs are put into \fBbin\fR, or the \fB\-\-path\fR directory if one has been set\. Calling binstubs with [GEM [GEM]] will create binstubs for all given gems\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-force\fR
Overwrite existing binstubs if they exist\.
.
.TP
\fB\-\-path\fR
The location to install the specified binstubs to\. This defaults to \fBbin\fR\.
.
.TP
\fB\-\-standalone\fR
Makes binstubs that can work without depending on Rubygems or Bundler at runtime\.
.
.TP
\fB\-\-shebang\fR
Specify a different shebang executable name than the default (default \'ruby\')
.
.SH "BUNDLE INSTALL \-\-BINSTUBS"
To create binstubs for all the gems in the bundle you can use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR\.
PK:H[��H`��share/man/man1/bundle-check.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CHECK" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
.
.SH "SYNOPSIS"
\fBbundle check\fR [\-\-dry\-run] [\-\-gemfile=FILE] [\-\-path=PATH]
.
.SH "DESCRIPTION"
\fBcheck\fR searches the local machine for each of the gems requested in the Gemfile\. If all gems are found, Bundler prints a success message and exits with a status of 0\.
.
.P
If not, the first missing gem is listed and Bundler exits status 1\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-dry\-run\fR
Locks the [\fBGemfile(5)\fR][Gemfile(5)] before running the command\.
.
.TP
\fB\-\-gemfile\fR
Use the specified gemfile instead of the [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.TP
\fB\-\-path\fR
Specify a different path than the system default (\fB$BUNDLE_PATH\fR or \fB$GEM_HOME\fR)\. Bundler will remember this value for future installs on this machine\.

PK:H[�C�#TTshare/man/man1/bundle-config.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CONFIG" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-config\fR \- Set bundler configuration options
.
.SH "SYNOPSIS"
\fBbundle config\fR [list|get|set|unset] [\fIname\fR [\fIvalue\fR]]
.
.SH "DESCRIPTION"
This command allows you to interact with Bundler\'s configuration system\.
.
.P
Bundler loads configuration settings in this order:
.
.IP "1." 4
Local config (\fBapp/\.bundle/config\fR)
.
.IP "2." 4
Environmental variables (\fBENV\fR)
.
.IP "3." 4
Global config (\fB~/\.bundle/config\fR)
.
.IP "4." 4
Bundler default config
.
.IP "" 0
.
.P
Executing \fBbundle config list\fR with will print a list of all bundler configuration for the current bundle, and where that configuration was set\.
.
.P
Executing \fBbundle config get <name>\fR will print the value of that configuration setting, and where it was set\.
.
.P
Executing \fBbundle config set <name> <value>\fR will set that configuration to the value specified for all bundles executed as the current user\. The configuration will be stored in \fB~/\.bundle/config\fR\. If \fIname\fR already is set, \fIname\fR will be overridden and user will be warned\.
.
.P
Executing \fBbundle config set \-\-global <name> <value>\fR works the same as above\.
.
.P
Executing \fBbundle config set \-\-local <name> <value>\fR will set that configuration to the local application\. The configuration will be stored in \fBapp/\.bundle/config\fR\.
.
.P
Executing \fBbundle config unset <name>\fR will delete the configuration in both local and global sources\.
.
.P
Executing \fBbundle config unset \-\-global <name>\fR will delete the configuration only from the user configuration\.
.
.P
Executing \fBbundle config unset \-\-local <name> <value>\fR will delete the configuration only from the local application\.
.
.P
Executing bundle with the \fBBUNDLE_IGNORE_CONFIG\fR environment variable set will cause it to ignore all configuration\.
.
.P
Executing \fBbundle config set disable_multisource true\fR upgrades the warning about the Gemfile containing multiple primary sources to an error\. Executing \fBbundle config unset disable_multisource\fR downgrades this error to a warning\.
.
.SH "REMEMBERING OPTIONS"
Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application\'s configuration (normally, \fB\./\.bundle/config\fR)\.
.
.P
However, this will be changed in bundler 3, so it\'s better not to rely on this behavior\. If these options must be remembered, it\'s better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set path foo\fR)\.
.
.P
The options that can be configured are:
.
.TP
\fBbin\fR
Creates a directory (defaults to \fB~/bin\fR) and place any executables from the gem there\. These executables run in Bundler\'s context\. If used, you might add this directory to your environment\'s \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
.
.TP
\fBdeployment\fR
In deployment mode, Bundler will \'roll\-out\' the bundle for \fBproduction\fR use\. Please check carefully if you want to have this option enabled in \fBdevelopment\fR or \fBtest\fR environments\.
.
.TP
\fBpath\fR
The location to install the specified gems to\. This defaults to Rubygems\' setting\. Bundler shares this location with Rubygems, \fBgem install \.\.\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \.\.\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
.
.TP
\fBwithout\fR
A space\-separated list of groups referencing gems to skip during installation\.
.
.TP
\fBwith\fR
A space\-separated list of groups referencing gems to include during installation\.
.
.SH "BUILD OPTIONS"
You can use \fBbundle config\fR to give Bundler the flags to pass to the gem installer every time bundler tries to install a particular gem\.
.
.P
A very common example, the \fBmysql\fR gem, requires Snow Leopard users to pass configuration flags to \fBgem install\fR to specify where to find the \fBmysql_config\fR executable\.
.
.IP "" 4
.
.nf

gem install mysql \-\- \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
.
.fi
.
.IP "" 0
.
.P
Since the specific location of that executable can change from machine to machine, you can specify these flags on a per\-machine basis\.
.
.IP "" 4
.
.nf

bundle config set build\.mysql \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
.
.fi
.
.IP "" 0
.
.P
After running this command, every time bundler needs to install the \fBmysql\fR gem, it will pass along the flags you specified\.
.
.SH "CONFIGURATION KEYS"
Configuration keys in bundler have two forms: the canonical form and the environment variable form\.
.
.P
For instance, passing the \fB\-\-without\fR flag to bundle install(1) \fIbundle\-install\.1\.html\fR prevents Bundler from installing certain groups specified in the Gemfile(5)\. Bundler persists this value in \fBapp/\.bundle/config\fR so that calls to \fBBundler\.setup\fR do not try to find gems from the \fBGemfile\fR that you didn\'t install\. Additionally, subsequent calls to bundle install(1) \fIbundle\-install\.1\.html\fR remember this setting and skip those groups\.
.
.P
The canonical form of this configuration is \fB"without"\fR\. To convert the canonical form to the environment variable form, capitalize it, and prepend \fBBUNDLE_\fR\. The environment variable form of \fB"without"\fR is \fBBUNDLE_WITHOUT\fR\.
.
.P
Any periods in the configuration keys must be replaced with two underscores when setting it via environment variables\. The configuration key \fBlocal\.rack\fR becomes the environment variable \fBBUNDLE_LOCAL__RACK\fR\.
.
.SH "LIST OF AVAILABLE KEYS"
The following is a list of all configuration keys and their purpose\. You can learn more about their operation in bundle install(1) \fIbundle\-install\.1\.html\fR\.
.
.IP "\(bu" 4
\fBallow_bundler_dependency_conflicts\fR (\fBBUNDLE_ALLOW_BUNDLER_DEPENDENCY_CONFLICTS\fR): Allow resolving to specifications that have dependencies on \fBbundler\fR that are incompatible with the running Bundler version\.
.
.IP "\(bu" 4
\fBallow_deployment_source_credential_changes\fR (\fBBUNDLE_ALLOW_DEPLOYMENT_SOURCE_CREDENTIAL_CHANGES\fR): When in deployment mode, allow changing the credentials to a gem\'s source\. Ex: \fBhttps://some\.host\.com/gems/path/\fR \-> \fBhttps://user_name:password@some\.host\.com/gems/path\fR
.
.IP "\(bu" 4
\fBallow_offline_install\fR (\fBBUNDLE_ALLOW_OFFLINE_INSTALL\fR): Allow Bundler to use cached data when installing without network access\.
.
.IP "\(bu" 4
\fBauto_clean_without_path\fR (\fBBUNDLE_AUTO_CLEAN_WITHOUT_PATH\fR): Automatically run \fBbundle clean\fR after installing when an explicit \fBpath\fR has not been set and Bundler is not installing into the system gems\.
.
.IP "\(bu" 4
\fBauto_install\fR (\fBBUNDLE_AUTO_INSTALL\fR): Automatically run \fBbundle install\fR when gems are missing\.
.
.IP "\(bu" 4
\fBbin\fR (\fBBUNDLE_BIN\fR): Install executables from gems in the bundle to the specified directory\. Defaults to \fBfalse\fR\.
.
.IP "\(bu" 4
\fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR): Cache all gems, including path and git gems\.
.
.IP "\(bu" 4
\fBcache_all_platforms\fR (\fBBUNDLE_CACHE_ALL_PLATFORMS\fR): Cache gems for all platforms\.
.
.IP "\(bu" 4
\fBcache_path\fR (\fBBUNDLE_CACHE_PATH\fR): The directory that bundler will place cached gems in when running \fBbundle package\fR, and that bundler will look in when installing gems\. Defaults to \fBvendor/cache\fR\.
.
.IP "\(bu" 4
\fBclean\fR (\fBBUNDLE_CLEAN\fR): Whether Bundler should run \fBbundle clean\fR automatically after \fBbundle install\fR\.
.
.IP "\(bu" 4
\fBconsole\fR (\fBBUNDLE_CONSOLE\fR): The console that \fBbundle console\fR starts\. Defaults to \fBirb\fR\.
.
.IP "\(bu" 4
\fBdefault_install_uses_path\fR (\fBBUNDLE_DEFAULT_INSTALL_USES_PATH\fR): Whether a \fBbundle install\fR without an explicit \fB\-\-path\fR argument defaults to installing gems in \fB\.bundle\fR\.
.
.IP "\(bu" 4
\fBdeployment\fR (\fBBUNDLE_DEPLOYMENT\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\.
.
.IP "\(bu" 4
\fBdisable_checksum_validation\fR (\fBBUNDLE_DISABLE_CHECKSUM_VALIDATION\fR): Allow installing gems even if they do not match the checksum provided by RubyGems\.
.
.IP "\(bu" 4
\fBdisable_exec_load\fR (\fBBUNDLE_DISABLE_EXEC_LOAD\fR): Stop Bundler from using \fBload\fR to launch an executable in\-process in \fBbundle exec\fR\.
.
.IP "\(bu" 4
\fBdisable_local_branch_check\fR (\fBBUNDLE_DISABLE_LOCAL_BRANCH_CHECK\fR): Allow Bundler to use a local git override without a branch specified in the Gemfile\.
.
.IP "\(bu" 4
\fBdisable_multisource\fR (\fBBUNDLE_DISABLE_MULTISOURCE\fR): When set, Gemfiles containing multiple sources will produce errors instead of warnings\. Use \fBbundle config unset disable_multisource\fR to unset\.
.
.IP "\(bu" 4
\fBdisable_platform_warnings\fR (\fBBUNDLE_DISABLE_PLATFORM_WARNINGS\fR): Disable warnings during bundle install when a dependency is unused on the current platform\.
.
.IP "\(bu" 4
\fBdisable_shared_gems\fR (\fBBUNDLE_DISABLE_SHARED_GEMS\fR): Stop Bundler from accessing gems installed to RubyGems\' normal location\.
.
.IP "\(bu" 4
\fBdisable_version_check\fR (\fBBUNDLE_DISABLE_VERSION_CHECK\fR): Stop Bundler from checking if a newer Bundler version is available on rubygems\.org\.
.
.IP "\(bu" 4
\fBforce_ruby_platform\fR (\fBBUNDLE_FORCE_RUBY_PLATFORM\fR): Ignore the current machine\'s platform and install only \fBruby\fR platform gems\. As a result, gems with native extensions will be compiled from source\.
.
.IP "\(bu" 4
\fBfrozen\fR (\fBBUNDLE_FROZEN\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\. Defaults to \fBtrue\fR when \fB\-\-deployment\fR is used\.
.
.IP "\(bu" 4
\fBgem\.push_key\fR (\fBBUNDLE_GEM__PUSH_KEY\fR): Sets the \fB\-\-key\fR parameter for \fBgem push\fR when using the \fBrake release\fR command with a private gemstash server\.
.
.IP "\(bu" 4
\fBgemfile\fR (\fBBUNDLE_GEMFILE\fR): The name of the file that bundler should use as the \fBGemfile\fR\. This location of this file also sets the root of the project, which is used to resolve relative paths in the \fBGemfile\fR, among other things\. By default, bundler will search up from the current working directory until it finds a \fBGemfile\fR\.
.
.IP "\(bu" 4
\fBglobal_gem_cache\fR (\fBBUNDLE_GLOBAL_GEM_CACHE\fR): Whether Bundler should cache all gems globally, rather than locally to the installing Ruby installation\.
.
.IP "\(bu" 4
\fBignore_messages\fR (\fBBUNDLE_IGNORE_MESSAGES\fR): When set, no post install messages will be printed\. To silence a single gem, use dot notation like \fBignore_messages\.httparty true\fR\.
.
.IP "\(bu" 4
\fBinit_gems_rb\fR (\fBBUNDLE_INIT_GEMS_RB\fR) Generate a \fBgems\.rb\fR instead of a \fBGemfile\fR when running \fBbundle init\fR\.
.
.IP "\(bu" 4
\fBjobs\fR (\fBBUNDLE_JOBS\fR): The number of gems Bundler can install in parallel\. Defaults to 1\.
.
.IP "\(bu" 4
\fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR): Whether \fBbundle package\fR should skip installing gems\.
.
.IP "\(bu" 4
\fBno_prune\fR (\fBBUNDLE_NO_PRUNE\fR): Whether Bundler should leave outdated gems unpruned when caching\.
.
.IP "\(bu" 4
\fBonly_update_to_newer_versions\fR (\fBBUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS\fR): During \fBbundle update\fR, only resolve to newer versions of the gems in the lockfile\.
.
.IP "\(bu" 4
\fBpath\fR (\fBBUNDLE_PATH\fR): The location on disk where all gems in your bundle will be located regardless of \fB$GEM_HOME\fR or \fB$GEM_PATH\fR values\. Bundle gems not found in this location will be installed by \fBbundle install\fR\. Defaults to \fBGem\.dir\fR\. When \-\-deployment is used, defaults to vendor/bundle\.
.
.IP "\(bu" 4
\fBpath\.system\fR (\fBBUNDLE_PATH__SYSTEM\fR): Whether Bundler will install gems into the default system path (\fBGem\.dir\fR)\.
.
.IP "\(bu" 4
\fBpath_relative_to_cwd\fR (\fBBUNDLE_PATH_RELATIVE_TO_CWD\fR) Makes \fB\-\-path\fR relative to the CWD instead of the \fBGemfile\fR\.
.
.IP "\(bu" 4
\fBplugins\fR (\fBBUNDLE_PLUGINS\fR): Enable Bundler\'s experimental plugin system\.
.
.IP "\(bu" 4
\fBprefer_patch\fR (BUNDLE_PREFER_PATCH): Prefer updating only to next patch version during updates\. Makes \fBbundle update\fR calls equivalent to \fBbundler update \-\-patch\fR\.
.
.IP "\(bu" 4
\fBprint_only_version_number\fR (\fBBUNDLE_PRINT_ONLY_VERSION_NUMBER\fR) Print only version number from \fBbundler \-\-version\fR\.
.
.IP "\(bu" 4
\fBredirect\fR (\fBBUNDLE_REDIRECT\fR): The number of redirects allowed for network requests\. Defaults to \fB5\fR\.
.
.IP "\(bu" 4
\fBretry\fR (\fBBUNDLE_RETRY\fR): The number of times to retry failed network requests\. Defaults to \fB3\fR\.
.
.IP "\(bu" 4
\fBsetup_makes_kernel_gem_public\fR (\fBBUNDLE_SETUP_MAKES_KERNEL_GEM_PUBLIC\fR): Have \fBBundler\.setup\fR make the \fBKernel#gem\fR method public, even though RubyGems declares it as private\.
.
.IP "\(bu" 4
\fBshebang\fR (\fBBUNDLE_SHEBANG\fR): The program name that should be invoked for generated binstubs\. Defaults to the ruby install name used to generate the binstub\.
.
.IP "\(bu" 4
\fBsilence_deprecations\fR (\fBBUNDLE_SILENCE_DEPRECATIONS\fR): Whether Bundler should silence deprecation warnings for behavior that will be changed in the next major version\.
.
.IP "\(bu" 4
\fBsilence_root_warning\fR (\fBBUNDLE_SILENCE_ROOT_WARNING\fR): Silence the warning Bundler prints when installing gems as root\.
.
.IP "\(bu" 4
\fBskip_default_git_sources\fR (\fBBUNDLE_SKIP_DEFAULT_GIT_SOURCES\fR): Whether Bundler should skip adding default git source shortcuts to the Gemfile DSL\.
.
.IP "\(bu" 4
\fBspecific_platform\fR (\fBBUNDLE_SPECIFIC_PLATFORM\fR): Allow bundler to resolve for the specific running platform and store it in the lockfile, instead of only using a generic platform\. A specific platform is the exact platform triple reported by \fBGem::Platform\.local\fR, such as \fBx86_64\-darwin\-16\fR or \fBuniversal\-java\-1\.8\fR\. On the other hand, generic platforms are those such as \fBruby\fR, \fBmswin\fR, or \fBjava\fR\. In this example, \fBx86_64\-darwin\-16\fR would map to \fBruby\fR and \fBuniversal\-java\-1\.8\fR to \fBjava\fR\.
.
.IP "\(bu" 4
\fBssl_ca_cert\fR (\fBBUNDLE_SSL_CA_CERT\fR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format\.
.
.IP "\(bu" 4
\fBssl_client_cert\fR (\fBBUNDLE_SSL_CLIENT_CERT\fR): Path to a designated file containing a X\.509 client certificate and key in PEM format\.
.
.IP "\(bu" 4
\fBssl_verify_mode\fR (\fBBUNDLE_SSL_VERIFY_MODE\fR): The SSL verification mode Bundler uses when making HTTPS requests\. Defaults to verify peer\.
.
.IP "\(bu" 4
\fBsuppress_install_using_messages\fR (\fBBUNDLE_SUPPRESS_INSTALL_USING_MESSAGES\fR): Avoid printing \fBUsing \.\.\.\fR messages during installation when the version of a gem has not changed\.
.
.IP "\(bu" 4
\fBsystem_bindir\fR (\fBBUNDLE_SYSTEM_BINDIR\fR): The location where RubyGems installs binstubs\. Defaults to \fBGem\.bindir\fR\.
.
.IP "\(bu" 4
\fBtimeout\fR (\fBBUNDLE_TIMEOUT\fR): The seconds allowed before timing out for network requests\. Defaults to \fB10\fR\.
.
.IP "\(bu" 4
\fBunlock_source_unlocks_spec\fR (\fBBUNDLE_UNLOCK_SOURCE_UNLOCKS_SPEC\fR): Whether running \fBbundle update \-\-source NAME\fR unlocks a gem with the given name\. Defaults to \fBtrue\fR\.
.
.IP "\(bu" 4
\fBupdate_requires_all_flag\fR (\fBBUNDLE_UPDATE_REQUIRES_ALL_FLAG\fR) Require passing \fB\-\-all\fR to \fBbundle update\fR when everything should be updated, and disallow passing no options to \fBbundle update\fR\.
.
.IP "\(bu" 4
\fBuser_agent\fR (\fBBUNDLE_USER_AGENT\fR): The custom user agent fragment Bundler includes in API requests\.
.
.IP "\(bu" 4
\fBwith\fR (\fBBUNDLE_WITH\fR): A \fB:\fR\-separated list of groups whose gems bundler should install\.
.
.IP "\(bu" 4
\fBwithout\fR (\fBBUNDLE_WITHOUT\fR): A \fB:\fR\-separated list of groups whose gems bundler should not install\.
.
.IP "" 0
.
.P
In general, you should set these settings per\-application by using the applicable flag to the bundle install(1) \fIbundle\-install\.1\.html\fR or bundle package(1) \fIbundle\-package\.1\.html\fR command\.
.
.P
You can set them globally either via environment variables or \fBbundle config\fR, whichever is preferable for your setup\. If you use both, environment variables will take preference over global settings\.
.
.SH "LOCAL GIT REPOS"
Bundler also allows you to work against a git repository locally instead of using the remote version\. This can be achieved by setting up a local override:
.
.IP "" 4
.
.nf

bundle config set local\.GEM_NAME /path/to/local/git/repository
.
.fi
.
.IP "" 0
.
.P
For example, in order to use a local Rack repository, a developer could call:
.
.IP "" 4
.
.nf

bundle config set local\.rack ~/Work/git/rack
.
.fi
.
.IP "" 0
.
.P
Now instead of checking out the remote git repository, the local override will be used\. Similar to a path source, every time the local git repository change, changes will be automatically picked up by Bundler\. This means a commit in the local git repo will update the revision in the \fBGemfile\.lock\fR to the local git repo revision\. This requires the same attention as git submodules\. Before pushing to the remote, you need to ensure the local override was pushed, otherwise you may point to a commit that only exists in your local machine\. You\'ll also need to CGI escape your usernames and passwords as well\.
.
.P
Bundler does many checks to ensure a developer won\'t work with invalid references\. Particularly, we force a developer to specify a branch in the \fBGemfile\fR in order to use this feature\. If the branch specified in the \fBGemfile\fR and the current branch in the local git repository do not match, Bundler will abort\. This ensures that a developer is always working against the correct branches, and prevents accidental locking to a different branch\.
.
.P
Finally, Bundler also ensures that the current revision in the \fBGemfile\.lock\fR exists in the local git repository\. By doing this, Bundler forces you to fetch the latest changes in the remotes\.
.
.SH "MIRRORS OF GEM SOURCES"
Bundler supports overriding gem sources with mirrors\. This allows you to configure rubygems\.org as the gem source in your Gemfile while still using your mirror to fetch gems\.
.
.IP "" 4
.
.nf

bundle config set mirror\.SOURCE_URL MIRROR_URL
.
.fi
.
.IP "" 0
.
.P
For example, to use a mirror of rubygems\.org hosted at rubygems\-mirror\.org:
.
.IP "" 4
.
.nf

bundle config set mirror\.http://rubygems\.org http://rubygems\-mirror\.org
.
.fi
.
.IP "" 0
.
.P
Each mirror also provides a fallback timeout setting\. If the mirror does not respond within the fallback timeout, Bundler will try to use the original server instead of the mirror\.
.
.IP "" 4
.
.nf

bundle config set mirror\.SOURCE_URL\.fallback_timeout TIMEOUT
.
.fi
.
.IP "" 0
.
.P
For example, to fall back to rubygems\.org after 3 seconds:
.
.IP "" 4
.
.nf

bundle config set mirror\.https://rubygems\.org\.fallback_timeout 3
.
.fi
.
.IP "" 0
.
.P
The default fallback timeout is 0\.1 seconds, but the setting can currently only accept whole seconds (for example, 1, 15, or 30)\.
.
.SH "CREDENTIALS FOR GEM SOURCES"
Bundler allows you to configure credentials for any gem source, which allows you to avoid putting secrets into your Gemfile\.
.
.IP "" 4
.
.nf

bundle config set SOURCE_HOSTNAME USERNAME:PASSWORD
.
.fi
.
.IP "" 0
.
.P
For example, to save the credentials of user \fBclaudette\fR for the gem source at \fBgems\.longerous\.com\fR, you would run:
.
.IP "" 4
.
.nf

bundle config set gems\.longerous\.com claudette:s00pers3krit
.
.fi
.
.IP "" 0
.
.P
Or you can set the credentials as an environment variable like this:
.
.IP "" 4
.
.nf

export BUNDLE_GEMS__LONGEROUS__COM="claudette:s00pers3krit"
.
.fi
.
.IP "" 0
.
.P
For gems with a git source with HTTP(S) URL you can specify credentials like so:
.
.IP "" 4
.
.nf

bundle config set https://github\.com/bundler/bundler\.git username:password
.
.fi
.
.IP "" 0
.
.P
Or you can set the credentials as an environment variable like so:
.
.IP "" 4
.
.nf

export BUNDLE_GITHUB__COM=username:password
.
.fi
.
.IP "" 0
.
.P
This is especially useful for private repositories on hosts such as Github, where you can use personal OAuth tokens:
.
.IP "" 4
.
.nf

export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x\-oauth\-basic
.
.fi
.
.IP "" 0
.
.SH "CONFIGURE BUNDLER DIRECTORIES"
Bundler\'s home, config, cache and plugin directories are able to be configured through environment variables\. The default location for Bundler\'s home directory is \fB~/\.bundle\fR, which all directories inherit from by default\. The following outlines the available environment variables and their default values
.
.IP "" 4
.
.nf

BUNDLE_USER_HOME : $HOME/\.bundle
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
.
.fi
.
.IP "" 0

PK:H[�����share/man/man1/bundle-cache.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CACHE" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
.
.SH "SYNOPSIS"
\fBbundle cache\fR
.
.SH "DESCRIPTION"
Copy all of the \fB\.gem\fR files needed to run the application into the \fBvendor/cache\fR directory\. In the future, when running [bundle install(1)][bundle\-install], use the gems in the cache in preference to the ones on \fBrubygems\.org\fR\.
.
.SH "GIT AND PATH GEMS"
The \fBbundle cache\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This needs to be explicitly enabled via the \fB\-\-all\fR option\. Once used, the \fB\-\-all\fR option will be remembered\.
.
.SH "SUPPORT FOR MULTIPLE PLATFORMS"
When using gems that have different packages for different platforms, Bundler supports caching of gems for other platforms where the Gemfile has been resolved (i\.e\. present in the lockfile) in \fBvendor/cache\fR\. This needs to be enabled via the \fB\-\-all\-platforms\fR option\. This setting will be remembered in your local bundler configuration\.
.
.SH "REMOTE FETCHING"
By default, if you run \fBbundle install(1)\fR](bundle\-install\.1\.html) after running bundle cache(1) \fIbundle\-cache\.1\.html\fR, bundler will still connect to \fBrubygems\.org\fR to check whether a platform\-specific gem exists for any of the gems in \fBvendor/cache\fR\.
.
.P
For instance, consider this Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "nokogiri"
.
.fi
.
.IP "" 0
.
.P
If you run \fBbundle cache\fR under C Ruby, bundler will retrieve the version of \fBnokogiri\fR for the \fB"ruby"\fR platform\. If you deploy to JRuby and run \fBbundle install\fR, bundler is forced to check to see whether a \fB"java"\fR platformed \fBnokogiri\fR exists\.
.
.P
Even though the \fBnokogiri\fR gem for the Ruby platform is \fItechnically\fR acceptable on JRuby, it has a C extension that does not run on JRuby\. As a result, bundler will, by default, still connect to \fBrubygems\.org\fR to check whether it has a version of one of your gems more specific to your platform\.
.
.P
This problem is also not limited to the \fB"java"\fR platform\. A similar (common) problem can happen when developing on Windows and deploying to Linux, or even when developing on OSX and deploying to Linux\.
.
.P
If you know for sure that the gems packaged in \fBvendor/cache\fR are appropriate for the platform you are on, you can run \fBbundle install \-\-local\fR to skip checking for more appropriate gems, and use the ones in \fBvendor/cache\fR\.
.
.P
One way to be sure that you have the right platformed versions of all your gems is to run \fBbundle cache\fR on an identical machine and check in the gems\. For instance, you can run \fBbundle cache\fR on an identical staging box during your staging process, and check in the \fBvendor/cache\fR before deploying to production\.
.
.P
By default, bundle cache(1) \fIbundle\-cache\.1\.html\fR fetches and also installs the gems to the default location\. To package the dependencies to \fBvendor/cache\fR without installing them to the local install location, you can run \fBbundle cache \-\-no\-install\fR\.
PK:H[`��"ffshare/man/man1/bundle-list.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-LIST" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-list\fR \- List all the gems in the bundle
.
.SH "SYNOPSIS"
\fBbundle list\fR [\-\-name\-only] [\-\-paths] [\-\-without\-group=GROUP] [\-\-only\-group=GROUP]
.
.SH "DESCRIPTION"
Prints a list of all the gems in the bundle including their version\.
.
.P
Example:
.
.P
bundle list \-\-name\-only
.
.P
bundle list \-\-paths
.
.P
bundle list \-\-without\-group test
.
.P
bundle list \-\-only\-group dev
.
.P
bundle list \-\-only\-group dev \-\-paths
.
.SH "OPTIONS"
.
.TP
\fB\-\-name\-only\fR
Print only the name of each gem\.
.
.TP
\fB\-\-paths\fR
Print the path to each gem in the bundle\.
.
.TP
\fB\-\-without\-group\fR
Print all gems expect from a group\.
.
.TP
\fB\-\-only\-group\fR
Print gems from a particular group\.

PK:H[&��66share/man/man1/bundle-init.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INIT" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
.
.SH "SYNOPSIS"
\fBbundle init\fR [\-\-gemspec=FILE]
.
.SH "DESCRIPTION"
Init generates a default [\fBGemfile(5)\fR][Gemfile(5)] in the current working directory\. When adding a [\fBGemfile(5)\fR][Gemfile(5)] to a gem with a gemspec, the \fB\-\-gemspec\fR option will automatically add each dependency listed in the gemspec file to the newly created [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-gemspec\fR
Use the specified \.gemspec to create the [\fBGemfile(5)\fR][Gemfile(5)]
.
.SH "FILES"
Included in the default [\fBGemfile(5)\fR][Gemfile(5)] generated is the line \fB# frozen_string_literal: true\fR\. This is a magic comment supported for the first time in Ruby 2\.3\. The presence of this line results in all string literals in the file being implicitly frozen\.
.
.SH "SEE ALSO"
Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
PK:H[J4�MPPshare/man/man1/bundle-viz.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-VIZ" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
.
.SH "SYNOPSIS"
\fBbundle viz\fR [\-\-file=FILE] [\-\-format=FORMAT] [\-\-requirements] [\-\-version] [\-\-without=GROUP GROUP]
.
.SH "DESCRIPTION"
\fBviz\fR generates a PNG file of the current \fBGemfile(5)\fR as a dependency graph\. \fBviz\fR requires the ruby\-graphviz gem (and its dependencies)\.
.
.P
The associated gems must also be installed via \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-file\fR, \fB\-f\fR
The name to use for the generated file\. See \fB\-\-format\fR option
.
.TP
\fB\-\-format\fR, \fB\-F\fR
This is output format option\. Supported format is png, jpg, svg, dot \.\.\.
.
.TP
\fB\-\-requirements\fR, \fB\-R\fR
Set to show the version of each required dependency\.
.
.TP
\fB\-\-version\fR, \fB\-v\fR
Set to show each gem version\.
.
.TP
\fB\-\-without\fR, \fB\-W\fR
Exclude gems that are part of the specified named group\.

PK:H[�
[[share/man/man1/bundle-clean.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CLEAN" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
.
.SH "SYNOPSIS"
\fBbundle clean\fR [\-\-dry\-run] [\-\-force]
.
.SH "DESCRIPTION"
This command will remove all unused gems in your bundler directory\. This is useful when you have made many changes to your gem dependencies\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-dry\-run\fR
Print the changes, but do not clean the unused gems\.
.
.TP
\fB\-\-force\fR
Force a clean even if \fB\-\-path\fR is not set\.

PK:H[�<�M��share/man/man1/irb.1nu�[���.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
.Dd August 11, 2019
.Dt IRB \&1 "Ruby Programmer's Reference Guide"
.Os UNIX
.Sh NAME
.Nm irb
.Nd Interactive Ruby Shell
.Sh SYNOPSIS
.Nm
.Op Fl -version
.Op Fl dfUw
.Op Fl I Ar directory
.Op Fl r Ar library
.Op Fl E Ar external Ns Op : Ns Ar internal
.Op Fl W Ns Op Ar level
.Op Fl - Ns Oo no Oc Ns inspect
.Op Fl - Ns Oo no Oc Ns multiline
.Op Fl - Ns Oo no Oc Ns singleline
.Op Fl - Ns Oo no Oc Ns echo
.Op Fl - Ns Oo no Oc Ns colorize
.Op Fl - Ns Oo no Oc Ns verbose
.Op Fl -prompt Ar mode
.Op Fl -prompt-mode Ar mode
.Op Fl -inf-ruby-mode
.Op Fl -simple-prompt
.Op Fl -noprompt
.Op Fl -tracer
.Op Fl -back-trace-limit Ar n
.Op Fl -
.Op program_file
.Op argument ...
.Pp
.Sh DESCRIPTION
.Nm
is the REPL(read-eval-print loop) environment for Ruby programs.
.Pp
.Sh OPTIONS
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl -version
Prints the version of
.Nm .
.Pp
.It Fl E Ar external Ns Op : Ns Ar internal
.It Fl -encoding Ar external Ns Op : Ns Ar internal
Same as `ruby -E' .
Specifies the default value(s) for external encodings and internal encoding. Values should be separated with colon (:).
.Pp
You can omit the one for internal encodings, then the value
.Pf ( Li "Encoding.default_internal" ) will be nil.
.Pp
.It Fl I Ar path
Same as `ruby -I' .
Specifies
.Li $LOAD_PATH
directory
.Pp
.It Fl U
Same as `ruby -U' .
Sets the default value for internal encodings
.Pf ( Li "Encoding.default_internal" ) to UTF-8.
.Pp
.It Fl d
Same as `ruby -d' .
Sets
.Li $DEBUG
to true.
.Pp
.It Fl f
Suppresses read of
.Pa ~/.irbrc .
.Pp
.It Fl w
Same as `ruby -w' .
.Pp
.Pp
.It Fl W
Same as `ruby -W' .
.Pp
.It Fl h
.It Fl -help
Prints a summary of the options.
.Pp
.It Fl r Ar library
Same as `ruby -r'.
Causes irb to load the library using require.
.Pp
.It Fl -inspect
Uses `inspect' for output (default except for bc mode)
.Pp
.It Fl -noinspect
Doesn't use inspect for output
.Pp
.It Fl -multiline
Uses multiline editor module.
.Pp
.It Fl -nomultiline
Doesn't use multiline editor module.
.Pp
.It Fl -singleline
Uses singleline editor module.
.Pp
.It Fl -nosingleline
Doesn't use singleline editor module.
.Pp
.Pp
.It Fl -echo
Show result(default).
.Pp
.It Fl -noecho
Don't show result.
.Pp
.Pp
.It Fl -colorize
Use colorization.
.Pp
.It Fl -nocolorize
Don't use colorization.
.Pp
.Pp
.It Fl -verbose
Show details.
.Pp
.It Fl -noverbose
Don't show details.
.Pp
.It Fl -prompt Ar mode
.It Fl -prompt-mode Ar mode
Switch prompt mode. Pre-defined prompt modes are
`default', `simple', `xmp' and `inf-ruby'.
.Pp
.It Fl -inf-ruby-mode
Uses prompt appropriate for inf-ruby-mode on emacs.
Suppresses --multiline and --singleline.
.Pp
.It Fl -simple-prompt
Makes prompts simple.
.Pp
.It Fl -noprompt
No prompt mode.
.Pp
.It Fl -tracer
Displays trace for each execution of commands.
.Pp
.It Fl -back-trace-limit Ar n
Displays backtrace top
.Ar n
and tail
.Ar n Ns .
The default value is 16.
.El
.Pp
.Sh ENVIRONMENT
.Bl -tag -compact
.It Ev IRBRC
.Pp
.El
.Pp
Also
.Nm
depends on same variables as
.Xr ruby 1 .
.Pp
.Sh FILES
.Bl -tag -compact
.It Pa ~/.irbrc
Personal irb initialization.
.Pp
.El
.Pp
.Sh EXAMPLES
.Dl % irb
.Dl irb(main):001:0> Ic 1 + 1
.Dl 2
.Dl irb(main):002:0> Ic def t(x)
.Dl irb(main):003:1> Ic   x + 1
.Dl irb(main):004:1> Ic end
.Dl => :t
.Dl irb(main):005:0> Ic t(3)
.Dl => 4
.Dl irb(main):006:0> Ic if t(3) == 4
.Dl irb(main):007:1> Ic p :ok
.Dl irb(main):008:1> Ic end
.Dl :ok
.Dl => :ok
.Dl irb(main):009:0> Ic quit
.Dl %
.Pp
.Sh SEE ALSO
.Xr ruby 1 .
.Pp
.Sh REPORTING BUGS
.Bl -bullet
.It
Security vulnerabilities should be reported via an email to
.Mt security@ruby-lang.org .
Reported problems will be published after being fixed.
.Pp
.It
Other bugs and feature requests can be reported via the
Ruby Issue Tracking System
.Pq Lk https://bugs.ruby-lang.org/ .
Do not report security vulnerabilities
via this system because it publishes the vulnerabilities immediately.
.El
.Sh AUTHORS
Written by Keiju ISHITSUKA.
PK:H[3�8:��share/man/man1/ri.1nu�[���.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
.Dd April 20, 2017
.Dt RI \&1 "Ruby Programmer's Reference Guide"
.Os UNIX
.Sh NAME
.Nm ri
.Nd Ruby API reference front end
.Sh SYNOPSIS
.Nm
.Op Fl ahilTv
.Op Fl d Ar DIRNAME
.Op Fl f Ar FORMAT
.Op Fl w Ar WIDTH
.Op Fl - Ns Oo Cm no- Oc Ns Cm pager
.Op Fl -server Ns Oo = Ns Ar PORT Oc
.Op Fl - Ns Oo Cm no- Oc Ns Cm list-doc-dirs
.Op Fl -no-standard-docs
.Op Fl - Ns Oo Cm no- Oc Ns Bro Cm system Ns | Ns Cm site Ns | Ns Cm gems Ns | Ns Cm home Brc
.Op Fl - Ns Oo Cm no- Oc Ns Cm profile
.Op Fl -dump Ns = Ns Ar CACHE
.Op Ar name ...
.Sh DESCRIPTION
.Nm
is a command-line front end for the Ruby API reference.
You can search and read the API reference for classes and methods with
.Nm .
.Pp
.Nm
is a part of Ruby.
.Pp
.Ar name
can be:
.Bl -diag -offset indent
.It Class | Module | Module::Class
.Pp
.It Class::method | Class#method | Class.method | method
.Pp
.It gem_name: | gem_name:README | gem_name:History
.El
.Pp
All class names may be abbreviated to their minimum unambiguous form.
If a name is ambiguous, all valid options will be listed.
.Pp
A
.Ql \&.
matches either class or instance methods, while #method
matches only instance and ::method matches only class methods.
.Pp
README and other files may be displayed by prefixing them with the gem name
they're contained in.  If the gem name is followed by a
.Ql \&:
all files in the gem will be shown.
The file name extension may be omitted where it is unambiguous.
.Pp
For example:
.Bd -literal -offset indent
ri Fil
ri File
ri File.new
ri zip
ri rdoc:README
.Ed
.Pp
Note that shell quoting or escaping may be required for method names
containing punctuation:
.Bd -literal -offset indent
ri 'Array.[]'
ri compact\e!
.Ed
.Pp
To see the default directories
.Nm
will search, run:
.Bd -literal -offset indent
ri --list-doc-dirs
.Ed
.Pp
Specifying the
.Fl -system , Fl -site , Fl -home , Fl -gems ,
or
.Fl -doc-dir
options will limit
.Nm
to searching only the specified directories.
.Pp
.Nm
options may be set in the
.Ev RI
environment variable.
.Pp
The
.Nm
pager can be set with the
.Ev RI_PAGER
environment variable or the
.Ev PAGER
environment variable.
.Pp
.Sh OPTIONS
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl i
.It Fl - Ns Oo Cm no- Oc Ns Cm interactive
In interactive mode you can repeatedly
look up methods with autocomplete.
.Pp
.It Fl a
.It Fl - Ns Oo Cm no- Oc Ns Cm all
Show all documentation for a class or module.
.Pp
.It Fl l
.It Fl - Ns Oo Cm no- Oc Ns Cm list
List classes
.Nm
knows about.
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm pager
Send output to a pager,
rather than directly to stdout.
.Pp
.It Fl T
Synonym for
.Fl -no-pager .
.Pp
.It Fl w Ar WIDTH
.It Fl -width Ns = Ns Ar WIDTH
Set the width of the output.
.Pp
.It Fl -server Ns Oo = Ns Ar PORT Oc
Run RDoc server on the given port.
The default port is\~8214.
.Pp
.It Fl f Ar FORMAT
.It Fl -format Ns = Ns Ar FORMAT
Use the selected formatter.
The default formatter is
.Li bs
for paged output and
.Li ansi
otherwise.
Valid formatters are:
.Li ansi , Li bs , Li markdown , Li rdoc .
.Pp
.It Fl h
.It Fl -help
Show help and exit.
.Pp
.It Fl v
.It Fl -version
Output version information and exit.
.El
.Pp
Data source options:
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm list-doc-dirs
List the directories from which
.Nm
will source documentation on stdout and exit.
.Pp
.It Fl d Ar DIRNAME
.It Fl -doc-dir Ns = Ns Ar DIRNAME
List of directories from which to source
documentation in addition to the standard
directories.  May be repeated.
.Pp
.It Fl -no-standard-docs
Do not include documentation from the Ruby standard library,
.Pa site_lib ,
installed gems, or
.Pa ~/.rdoc .
Use with
.Fl -doc-dir .
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm system
Include documentation from Ruby's standard library.  Defaults to true.
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm site
Include documentation from libraries installed in
.Pa site_lib .
Defaults to true.
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm gems
Include documentation from RubyGems.  Defaults to true.
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm home
Include documentation stored in
.Pa ~/.rdoc .
Defaults to true.
.El
.Pp
Debug options:
.Bl -tag -width "1234567890123" -compact
.Pp
.It Fl - Ns Oo Cm no- Oc Ns Cm profile
Run with the Ruby profiler.
.Pp
.It Fl -dump Ns = Ns Ar CACHE
Dump data from an ri cache or data file.
.El
.Pp
.Sh ENVIRONMENT
.Bl -tag -width "USERPROFILE" -compact
.Pp
.It Ev RI
Options to prepend to those specified on the command-line.
.Pp
.It Ev RI_PAGER
.It Ev PAGER
Pager program to use for displaying.
.Pp
.It Ev HOME
.It Ev USERPROFILE
.It Ev HOMEPATH
Path to the user's home directory.
.El
.Pp
.Sh FILES
.Bl -tag -width "USERPROFILE" -compact
.Pp
.It Pa ~/.rdoc
Path for ri data in the user's home directory.
.Pp
.El
.Pp
.Sh SEE ALSO
.Xr ruby 1 ,
.Xr rdoc 1 ,
.Xr gem 1
.Pp
.Sh REPORTING BUGS
.Bl -bullet
.It
Security vulnerabilities should be reported via an email to
.Mt security@ruby-lang.org .
Reported problems will be published after being fixed.
.Pp
.It
Other bugs and feature requests can be reported via the
Ruby Issue Tracking System
.Pq Lk https://bugs.ruby-lang.org/ .
Do not report security vulnerabilities
via this system because it publishes the vulnerabilities immediately.
.El
.Sh AUTHORS
Written by
.An Dave Thomas Aq dave@pragmaticprogrammer.com .
PK:H[<=��qBqBshare/man/man1/bundle-install.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INSTALL" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
.
.SH "SYNOPSIS"
\fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-quiet] [\-\-redownload] [\-\-retry=NUMBER] [\-\-shebang] [\-\-standalone[=GROUP[ GROUP\.\.\.]]] [\-\-system] [\-\-trust\-policy=POLICY] [\-\-with=GROUP[ GROUP\.\.\.]] [\-\-without=GROUP[ GROUP\.\.\.]]
.
.SH "DESCRIPTION"
Install the gems specified in your Gemfile(5)\. If this is the first time you run bundle install (and a \fBGemfile\.lock\fR does not exist), Bundler will fetch all remote sources, resolve dependencies and install all needed gems\.
.
.P
If a \fBGemfile\.lock\fR does exist, and you have not updated your Gemfile(5), Bundler will fetch all remote sources, but use the dependencies specified in the \fBGemfile\.lock\fR instead of resolving dependencies\.
.
.P
If a \fBGemfile\.lock\fR does exist, and you have updated your Gemfile(5), Bundler will use the dependencies in the \fBGemfile\.lock\fR for all gems that you did not update, but will re\-resolve the dependencies of gems that you did update\. You can find more information about this update process below under \fICONSERVATIVE UPDATING\fR\.
.
.SH "OPTIONS"
To apply any of \fB\-\-binstubs\fR, \fB\-\-deployment\fR, \fB\-\-path\fR, or \fB\-\-without\fR every time \fBbundle install\fR is run, use \fBbundle config\fR (see bundle\-config(1))\.
.
.TP
\fB\-\-binstubs[=<directory>]\fR
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it in \fBbin/\fR\. This lets you link the binstub inside of an application to the exact gem version the application needs\.
.
.IP
Creates a directory (defaults to \fB~/bin\fR) and places any executables from the gem there\. These executables run in Bundler\'s context\. If used, you might add this directory to your environment\'s \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
.
.TP
\fB\-\-clean\fR
On finishing the installation Bundler is going to remove any gems not present in the current Gemfile(5)\. Don\'t worry, gems currently in use will not be removed\.
.
.TP
\fB\-\-deployment\fR
In \fIdeployment mode\fR, Bundler will \'roll\-out\' the bundle for production or CI use\. Please check carefully if you want to have this option enabled in your development environment\.
.
.TP
\fB\-\-redownload\fR
Force download every gem, even if the required versions are already available locally\.
.
.TP
\fB\-\-frozen\fR
Do not allow the Gemfile\.lock to be updated after this install\. Exits non\-zero if there are going to be changes to the Gemfile\.lock\.
.
.TP
\fB\-\-full\-index\fR
Bundler will not call Rubygems\' API endpoint (default) but download and cache a (currently big) index file of all gems\. Performance can be improved for large bundles that seldom change by enabling this option\.
.
.TP
\fB\-\-gemfile=<gemfile>\fR
The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project\'s root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.
.
.TP
\fB\-\-jobs=[<number>]\fR, \fB\-j[<number>]\fR
The maximum number of parallel download and install jobs\. The default is \fB1\fR\.
.
.TP
\fB\-\-local\fR
Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if a appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
.
.TP
\fB\-\-no\-cache\fR
Do not update the cache in \fBvendor/cache\fR with the newly bundled gems\. This does not remove any gems in the cache but keeps the newly bundled gems from being cached during the install\.
.
.TP
\fB\-\-no\-prune\fR
Don\'t remove stale gems from the cache when the installation finishes\.
.
.TP
\fB\-\-path=<path>\fR
The location to install the specified gems to\. This defaults to Rubygems\' setting\. Bundler shares this location with Rubygems, \fBgem install \.\.\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \.\.\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
.
.TP
\fB\-\-quiet\fR
Do not print progress information to the standard output\. Instead, Bundler will exit using a status code (\fB$?\fR)\.
.
.TP
\fB\-\-retry=[<number>]\fR
Retry failed network or git requests for \fInumber\fR times\.
.
.TP
\fB\-\-shebang=<ruby\-executable>\fR
Uses the specified ruby executable (usually \fBruby\fR) to execute the scripts created with \fB\-\-binstubs\fR\. In addition, if you use \fB\-\-binstubs\fR together with \fB\-\-shebang jruby\fR these executables will be changed to execute \fBjruby\fR instead\.
.
.TP
\fB\-\-standalone[=<list>]\fR
Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install has to be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler\'s own setup in the manner required\. Using this option implicitly sets \fBpath\fR, which is a [remembered option][REMEMBERED OPTIONS]\.
.
.TP
\fB\-\-system\fR
Installs the gems specified in the bundle to the system\'s Rubygems location\. This overrides any previous configuration of \fB\-\-path\fR\.
.
.TP
\fB\-\-trust\-policy=[<policy>]\fR
Apply the Rubygems security policy \fIpolicy\fR, where policy is one of \fBHighSecurity\fR, \fBMediumSecurity\fR, \fBLowSecurity\fR, \fBAlmostNoSecurity\fR, or \fBNoSecurity\fR\. For more details, please see the Rubygems signing documentation linked below in \fISEE ALSO\fR\.
.
.TP
\fB\-\-with=<list>\fR
A space\-separated list of groups referencing gems to install\. If an optional group is given it is installed\. If a group is given that is in the remembered list of groups given to \-\-without, it is removed from that list\.
.
.TP
\fB\-\-without=<list>\fR
A space\-separated list of groups referencing gems to skip during installation\. If a group is given that is in the remembered list of groups given to \-\-with, it is removed from that list\.
.
.SH "DEPLOYMENT MODE"
Bundler\'s defaults are optimized for development\. To switch to defaults optimized for deployment and for CI, use the \fB\-\-deployment\fR flag\. Do not activate deployment mode on development machines, as it will cause an error when the Gemfile(5) is modified\.
.
.IP "1." 4
A \fBGemfile\.lock\fR is required\.
.
.IP
To ensure that the same versions of the gems you developed with and tested with are also used in deployments, a \fBGemfile\.lock\fR is required\.
.
.IP
This is mainly to ensure that you remember to check your \fBGemfile\.lock\fR into version control\.
.
.IP "2." 4
The \fBGemfile\.lock\fR must be up to date
.
.IP
In development, you can modify your Gemfile(5) and re\-run \fBbundle install\fR to \fIconservatively update\fR your \fBGemfile\.lock\fR snapshot\.
.
.IP
In deployment, your \fBGemfile\.lock\fR should be up\-to\-date with changes made in your Gemfile(5)\.
.
.IP "3." 4
Gems are installed to \fBvendor/bundle\fR not your default system location
.
.IP
In development, it\'s convenient to share the gems used in your application with other applications and other scripts that run on the system\.
.
.IP
In deployment, isolation is a more important default\. In addition, the user deploying the application may not have permission to install gems to the system, or the web server may not have permission to read them\.
.
.IP
As a result, \fBbundle install \-\-deployment\fR installs gems to the \fBvendor/bundle\fR directory in the application\. This may be overridden using the \fB\-\-path\fR option\.
.
.IP "" 0
.
.SH "SUDO USAGE"
By default, Bundler installs gems to the same location as \fBgem install\fR\.
.
.P
In some cases, that location may not be writable by your Unix user\. In that case, Bundler will stage everything in a temporary directory, then ask you for your \fBsudo\fR password in order to copy the gems into their system location\.
.
.P
From your perspective, this is identical to installing the gems directly into the system\.
.
.P
You should never use \fBsudo bundle install\fR\. This is because several other steps in \fBbundle install\fR must be performed as the current user:
.
.IP "\(bu" 4
Updating your \fBGemfile\.lock\fR
.
.IP "\(bu" 4
Updating your \fBvendor/cache\fR, if necessary
.
.IP "\(bu" 4
Checking out private git repositories using your user\'s SSH keys
.
.IP "" 0
.
.P
Of these three, the first two could theoretically be performed by \fBchown\fRing the resulting files to \fB$SUDO_USER\fR\. The third, however, can only be performed by invoking the \fBgit\fR command as the current user\. Therefore, git gems are downloaded and installed into \fB~/\.bundle\fR rather than $GEM_HOME or $BUNDLE_PATH\.
.
.P
As a result, you should run \fBbundle install\fR as the current user, and Bundler will ask for your password if it is needed to put the gems into their final location\.
.
.SH "INSTALLING GROUPS"
By default, \fBbundle install\fR will install all gems in all groups in your Gemfile(5), except those declared for a different platform\.
.
.P
However, you can explicitly tell Bundler to skip installing certain groups with the \fB\-\-without\fR option\. This option takes a space\-separated list of groups\.
.
.P
While the \fB\-\-without\fR option will skip \fIinstalling\fR the gems in the specified groups, it will still \fIdownload\fR those gems and use them to resolve the dependencies of every gem in your Gemfile(5)\.
.
.P
This is so that installing a different set of groups on another machine (such as a production server) will not change the gems and versions that you have already developed and tested against\.
.
.P
\fBBundler offers a rock\-solid guarantee that the third\-party code you are running in development and testing is also the third\-party code you are running in production\. You can choose to exclude some of that code in different environments, but you will never be caught flat\-footed by different versions of third\-party code being used in different environments\.\fR
.
.P
For a simple illustration, consider the following Gemfile(5):
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'sinatra\'

group :production do
  gem \'rack\-perftools\-profiler\'
end
.
.fi
.
.IP "" 0
.
.P
In this case, \fBsinatra\fR depends on any version of Rack (\fB>= 1\.0\fR), while \fBrack\-perftools\-profiler\fR depends on 1\.x (\fB~> 1\.0\fR)\.
.
.P
When you run \fBbundle install \-\-without production\fR in development, we look at the dependencies of \fBrack\-perftools\-profiler\fR as well\. That way, you do not spend all your time developing against Rack 2\.0, using new APIs unavailable in Rack 1\.x, only to have Bundler switch to Rack 1\.2 when the \fBproduction\fR group \fIis\fR used\.
.
.P
This should not cause any problems in practice, because we do not attempt to \fBinstall\fR the gems in the excluded groups, and only evaluate as part of the dependency resolution process\.
.
.P
This also means that you cannot include different versions of the same gem in different groups, because doing so would result in different sets of dependencies used in development and production\. Because of the vagaries of the dependency resolution process, this usually affects more than the gems you list in your Gemfile(5), and can (surprisingly) radically change the gems you are using\.
.
.SH "THE GEMFILE\.LOCK"
When you run \fBbundle install\fR, Bundler will persist the full names and versions of all gems that you used (including dependencies of the gems specified in the Gemfile(5)) into a file called \fBGemfile\.lock\fR\.
.
.P
Bundler uses this file in all subsequent calls to \fBbundle install\fR, which guarantees that you always use the same exact code, even as your application moves across machines\.
.
.P
Because of the way dependency resolution works, even a seemingly small change (for instance, an update to a point\-release of a dependency of a gem in your Gemfile(5)) can result in radically different gems being needed to satisfy all dependencies\.
.
.P
As a result, you \fBSHOULD\fR check your \fBGemfile\.lock\fR into version control, in both applications and gems\. If you do not, every machine that checks out your repository (including your production server) will resolve all dependencies again, which will result in different versions of third\-party code being used if \fBany\fR of the gems in the Gemfile(5) or any of their dependencies have been updated\.
.
.P
When Bundler first shipped, the \fBGemfile\.lock\fR was included in the \fB\.gitignore\fR file included with generated gems\. Over time, however, it became clear that this practice forces the pain of broken dependencies onto new contributors, while leaving existing contributors potentially unaware of the problem\. Since \fBbundle install\fR is usually the first step towards a contribution, the pain of broken dependencies would discourage new contributors from contributing\. As a result, we have revised our guidance for gem authors to now recommend checking in the lock for gems\.
.
.SH "CONSERVATIVE UPDATING"
When you make a change to the Gemfile(5) and then run \fBbundle install\fR, Bundler will update only the gems that you modified\.
.
.P
In other words, if a gem that you \fBdid not modify\fR worked before you called \fBbundle install\fR, it will continue to use the exact same versions of all dependencies as it used before the update\.
.
.P
Let\'s take a look at an example\. Here\'s your original Gemfile(5):
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'actionpack\', \'2\.3\.8\'
gem \'activemerchant\'
.
.fi
.
.IP "" 0
.
.P
In this case, both \fBactionpack\fR and \fBactivemerchant\fR depend on \fBactivesupport\fR\. The \fBactionpack\fR gem depends on \fBactivesupport 2\.3\.8\fR and \fBrack ~> 1\.1\.0\fR, while the \fBactivemerchant\fR gem depends on \fBactivesupport >= 2\.3\.2\fR, \fBbraintree >= 2\.0\.0\fR, and \fBbuilder >= 2\.0\.0\fR\.
.
.P
When the dependencies are first resolved, Bundler will select \fBactivesupport 2\.3\.8\fR, which satisfies the requirements of both gems in your Gemfile(5)\.
.
.P
Next, you modify your Gemfile(5) to:
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'actionpack\', \'3\.0\.0\.rc\'
gem \'activemerchant\'
.
.fi
.
.IP "" 0
.
.P
The \fBactionpack 3\.0\.0\.rc\fR gem has a number of new dependencies, and updates the \fBactivesupport\fR dependency to \fB= 3\.0\.0\.rc\fR and the \fBrack\fR dependency to \fB~> 1\.2\.1\fR\.
.
.P
When you run \fBbundle install\fR, Bundler notices that you changed the \fBactionpack\fR gem, but not the \fBactivemerchant\fR gem\. It evaluates the gems currently being used to satisfy its requirements:
.
.TP
\fBactivesupport 2\.3\.8\fR
also used to satisfy a dependency in \fBactivemerchant\fR, which is not being updated
.
.TP
\fBrack ~> 1\.1\.0\fR
not currently being used to satisfy another dependency
.
.P
Because you did not explicitly ask to update \fBactivemerchant\fR, you would not expect it to suddenly stop working after updating \fBactionpack\fR\. However, satisfying the new \fBactivesupport 3\.0\.0\.rc\fR dependency of actionpack requires updating one of its dependencies\.
.
.P
Even though \fBactivemerchant\fR declares a very loose dependency that theoretically matches \fBactivesupport 3\.0\.0\.rc\fR, Bundler treats gems in your Gemfile(5) that have not changed as an atomic unit together with their dependencies\. In this case, the \fBactivemerchant\fR dependency is treated as \fBactivemerchant 1\.7\.1 + activesupport 2\.3\.8\fR, so \fBbundle install\fR will report that it cannot update \fBactionpack\fR\.
.
.P
To explicitly update \fBactionpack\fR, including its dependencies which other gems in the Gemfile(5) still depend on, run \fBbundle update actionpack\fR (see \fBbundle update(1)\fR)\.
.
.P
\fBSummary\fR: In general, after making a change to the Gemfile(5) , you should first try to run \fBbundle install\fR, which will guarantee that no other gem in the Gemfile(5) is impacted by the change\. If that does not work, run bundle update(1) \fIbundle\-update\.1\.html\fR\.
.
.SH "SEE ALSO"
.
.IP "\(bu" 4
Gem install docs \fIhttp://guides\.rubygems\.org/rubygems\-basics/#installing\-gems\fR
.
.IP "\(bu" 4
Rubygems signing docs \fIhttp://guides\.rubygems\.org/security/\fR
.
.IP "" 0

PK:H[�� share/man/man1/bundle-outdated.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-OUTDATED" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-outdated\fR \- List installed gems with newer versions available
.
.SH "SYNOPSIS"
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-update\-strict] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
.
.SH "DESCRIPTION"
Outdated lists the names and versions of gems that have a newer version available in the given source\. Calling outdated with [GEM [GEM]] will only check for newer versions of the given gems\. Prerelease gems are ignored by default\. If your gems are up to date, Bundler will exit with a status of 0\. Otherwise, it will exit 1\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-local\fR
Do not attempt to fetch gems remotely and use the gem cache instead\.
.
.TP
\fB\-\-pre\fR
Check for newer pre\-release gems\.
.
.TP
\fB\-\-source\fR
Check against a specific source\.
.
.TP
\fB\-\-strict\fR
Only list newer versions allowed by your Gemfile requirements\.
.
.TP
\fB\-\-parseable\fR, \fB\-\-porcelain\fR
Use minimal formatting for more parseable output\.
.
.TP
\fB\-\-group\fR
List gems from a specific group\.
.
.TP
\fB\-\-groups\fR
List gems organized by groups\.
.
.TP
\fB\-\-update\-strict\fR
Strict conservative resolution, do not allow any gem to be updated past latest \-\-patch | \-\-minor| \-\-major\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-filter\-major\fR
Only list major newer versions\.
.
.TP
\fB\-\-filter\-minor\fR
Only list minor newer versions\.
.
.TP
\fB\-\-filter\-patch\fR
Only list patch newer versions\.
.
.TP
\fB\-\-only\-explicit\fR
Only list gems specified in your Gemfile, not their dependencies\.
.
.SH "PATCH LEVEL OPTIONS"
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
.
.P
One difference between the patch level options in \fBbundle update\fR and here is the \fB\-\-strict\fR option\. \fB\-\-strict\fR was already an option on outdated before the patch level options were added\. \fB\-\-strict\fR wasn\'t altered, and the \fB\-\-update\-strict\fR option on \fBoutdated\fR reflects what \fB\-\-strict\fR does on \fBbundle update\fR\.
.
.SH "FILTERING OUTPUT"
The 3 filtering options do not affect the resolution of versions, merely what versions are shown in the output\.
.
.P
If the regular output shows the following:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-major\fR would only show:
.
.IP "" 4
.
.nf

* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-minor\fR would only show:
.
.IP "" 4
.
.nf

* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-patch\fR would only show:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
.
.fi
.
.IP "" 0
.
.P
Filter options can be combined\. \fB\-\-filter\-minor\fR and \fB\-\-filter\-patch\fR would show:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
Combining all three \fBfilter\fR options would be the same result as providing none of them\.
PK:H[Ԕ�Zvvshare/man/man1/bundle-lock.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-LOCK" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
.
.SH "SYNOPSIS"
\fBbundle lock\fR [\-\-update] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-add\-platform] [\-\-remove\-platform] [\-\-patch] [\-\-minor] [\-\-major] [\-\-strict] [\-\-conservative]
.
.SH "DESCRIPTION"
Lock the gems specified in Gemfile\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-update=<*gems>\fR
Ignores the existing lockfile\. Resolve then updates lockfile\. Taking a list of gems or updating all gems if no list is given\.
.
.TP
\fB\-\-local\fR
Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if a appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
.
.TP
\fB\-\-print\fR
Prints the lockfile to STDOUT instead of writing to the file system\.
.
.TP
\fB\-\-lockfile=<path>\fR
The path where the lockfile should be written to\.
.
.TP
\fB\-\-full\-index\fR
Fall back to using the single\-file index of all gems\.
.
.TP
\fB\-\-add\-platform\fR
Add a new platform to the lockfile, re\-resolving for the addition of that platform\.
.
.TP
\fB\-\-remove\-platform\fR
Remove a platform from the lockfile\.
.
.TP
\fB\-\-patch\fR
If updating, prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
If updating, prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
If updating, prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
If updating, do not allow any gem to be updated past latest \-\-patch | \-\-minor | \-\-major\.
.
.TP
\fB\-\-conservative\fR
If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated\.
.
.SH "UPDATING ALL GEMS"
If you run \fBbundle lock\fR with \fB\-\-update\fR option without list of gems, bundler will ignore any previously installed gems and resolve all dependencies again based on the latest versions of all gems available in the sources\.
.
.SH "UPDATING A LIST OF GEMS"
Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.P
For instance, you only want to update \fBnokogiri\fR, run \fBbundle lock \-\-update nokogiri\fR\.
.
.P
Bundler will update \fBnokogiri\fR and any of its dependencies, but leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.SH "SUPPORTING OTHER PLATFORMS"
If you want your bundle to support platforms other than the one you\'re running locally, you can run \fBbundle lock \-\-add\-platform PLATFORM\fR to add PLATFORM to the lockfile, force bundler to re\-resolve and consider the new platform when picking gems, all without needing to have a machine that matches PLATFORM handy to install those platform\-specific gems on\.
.
.P
For a full explanation of gem platforms, see \fBgem help platform\fR\.
.
.SH "PATCH LEVEL OPTIONS"
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
PK:H[-�����share/man/man1/bundle-add.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-ADD" "1" "January 2020" "" ""
.
.SH "NAME"
\fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
.
.SH "SYNOPSIS"
\fBbundle add\fR \fIGEM_NAME\fR [\-\-group=GROUP] [\-\-version=VERSION] [\-\-source=SOURCE] [\-\-git=GIT] [\-\-branch=BRANCH] [\-\-skip\-install] [\-\-strict] [\-\-optimistic]
.
.SH "DESCRIPTION"
Adds the named gem to the Gemfile and run \fBbundle install\fR\. \fBbundle install\fR can be avoided by using the flag \fB\-\-skip\-install\fR\.
.
.P
Example:
.
.P
bundle add rails
.
.P
bundle add rails \-\-version "< 3\.0, > 1\.1"
.
.P
bundle add rails \-\-version "~> 5\.0\.0" \-\-source "https://gems\.example\.com" \-\-group "development"
.
.P
bundle add rails \-\-skip\-install
.
.P
bundle add rails \-\-group "development, test"
.
.SH "OPTIONS"
.
.TP
\fB\-\-version\fR, \fB\-v\fR
Specify version requirements(s) for the added gem\.
.
.TP
\fB\-\-group\fR, \fB\-g\fR
Specify the group(s) for the added gem\. Multiple groups should be separated by commas\.
.
.TP
\fB\-\-source\fR, , \fB\-s\fR
Specify the source for the added gem\.
.
.TP
\fB\-\-git\fR
Specify the git source for the added gem\.
.
.TP
\fB\-\-branch\fR
Specify the git branch for the added gem\.
.
.TP
\fB\-\-skip\-install\fR
Adds the gem to the Gemfile but does not install it\.
.
.TP
\fB\-\-optimistic\fR
Adds optimistic declaration of version
.
.TP
\fB\-\-strict\fR
Adds strict declaration of version

PK:H[I��>>!share/gems/cache/rackup-2.1.0.gemnu�[���metadata.gz0000444000000000000000000000127114364637605013455 0ustar00wheelwheel00000000000000��?�c�W]o�0}��0{�S>�
�,1		�@�eC �Pt��&f�cl��B�۹��ڮe�+K+%���>>>��(���拤�?a��B�Y,�Ldc���;(�[���<�bG��C�2iO�Ya�8M�Pm�����'���=!�С^��s0��l~n�C�riJ��;+Ѕ��AR>�1��ӣ(�D�G<ME�����߳-�M!��|{ϖ�j��,4��k觫bJ�H��:$��ɓ�>�����K�	K|�kM�	���R��(�+�
{!|C}�`��_�����O����(�P�5�B�w'�k"�8G�ر�����e��Ȁ>����*�G�S�RM*�Z�B�d�{�ߍ�#o�4�^�+��s����K􅓶�.����m�\
;�qo�MW��J
d�l�l&����mC��^ĕ� ��_gc����*�ګ���+<)*�Ӳq�UN�Fv���R�C�[�(�/H&�u�I�P��ٓ�N�EՍF9��z�$�u��E�QF���zM_�|�4��<�����4>�R�F�Y?%M?�ä���,��o��/�2��]snٴ�Un����[;���g�D���=���|;Ŷ��	�2�T�9.���U�1����?�t���'N��ɑ��{��&���jl�Ǭ[3�^��t��~data.tar.gz0000444000000000000000000002611414364637605013376 0ustar00wheelwheel00000000000000��?�c�}�v7�`�.��2!�Pԇ�/�6%�mIԐ�G��M;jv���9�߾��9�o�>��}��$[U������q�L�4K�(��P�*T�lwͷ���⛯�������o��O���ƃ�o6��?�zx���u�۸�7l��?�'
B�T.g�;��T��?��ʽ�(��F��{��h�,����}��0}�=:v�}�i�Џx����l�}�X�}�Y��Xs�\G�R�~7�}�_p��K���#��y[�Y�ā��G_��nm����o=z�y��_��+��n|�"w�}�8;�؁=�n���-��}6�ls}ss��_g�%�[�;��8�5�ҥ廬����������V��K��c���P�DB��ҧ�GH��+��7�N�K�Mu�͚�Ts%�NJw���a��F��O�Ç[w�����ܒ���/Vp��e/:�Ww�o���*����R����Gw����,��w�B�݅P؞[����K>���y�f��])���g��������������9Z�[a�KM<���=���w2������7�j���v�N4�S
�����l�#v_u�Z1TD��,��sf���I�l��(������b�ȭΗ�bQ{�� k~��y�D�尙̠��8[X�+��r4�����=�6���>�|[�f%m�e����La��>_���ș�,1���z�Pl�@�
���)��L��"h��#H�@���aC�y�O+@2&��]I���7,��bb���\��i�jkr�vH���x���m�wK(��	���3V�u�M-'�
GT��8<����7�sU�O��*
��:9%J�nlv�wc�ӝ|���_��@��8��Jھ�qk+�s�z>oh��GW��4F0k���:��7ɞ�E*	/�#$� Y⛴P��$I�l�/0�&�D�Ϛ�D�m��
�Uc1@���f��:�;h�`���C�=N�$o*��~������}��]]Ds'�I
�֘���TcᓰҚ�ܐ5�6w�Aނ��~2�²k$Ef��g��� ��ǖ�[ˏ̋��,e�J;	�1&�G�h׋��Pl�d�5d=ƞ��ѓ
�Rg�2�� ���2�ٔ��\��RU�7$�Ԭ�4�`d�[��x��K�l̵��eM��UK����~Жc�:Ͳk°����H��l�"g�Vp��D��>�d+��1���n�v�(��Ê�0�hd�>@��ѻs)'G�s���mK�:���
&&rP�A�ǐ�D
*�+l�[n��j3&Y�X1���)��M�smPp��v8�B]6�.�G6�jRN��9E!~��3m�煂�n��;'�\��@3Ō/=~�U��W�_�X~R2Y����^�)�vGz9���'v�O&�O1�����V���.��`F�7,������Y��k;i��t��Z�}f_��/ Vyc�]�c�R�Uƒ^���
����R��M���6�/�s�m
AD�V+%���e�?�y_��o��z�{�����_��˱y�R@�M�c҆��\�.*`��mVg�/L� �ѿ
‰�6F���0��ݠ�f	�i;����P���������`p<��
�G��A���`�\�!O�����+4E�eک�%P�fVmD�	l�UM�=�st�v�ހ㮧�ڽ^��7���g������a[����<u���F��!��yur��ƞ��,A�5�_Ɏ^3I�׷�އa���BK	�`����[�}	��6���qF���h	��@#�
mԮ���PVM7����
� ������ރI��*.<�z�Y�ʮW�u��VM�f.l/
`O�Q�i������nBPY]hͰg���E�E�E����2T��p:L�ӕ��W��E�7ƮJٿR��*�p�D1W�[��	F�+��ꈛ=ciN��s�vF��O<��C֥��gWr�i�~:�����}��S����w���?K`����K־-�%G����U4(:��J�����^�9�b�[��o�^�)�S�4��Q�b�B��A��8�/~�^���{�lE&�pq�U��2�CUo� ���<μ �zz3�mu`3�8�[�
ݵ�d��m��ꤹc���d[^@}��P�T��5��{�BU�^
[����?��=?z����:�1H��v� MG)���H���%'�AI��S�7\~Y�̕�Ԙ���S/<3�k:)cK�;��OT,`>·t�<Ӽ��,�:/,Ǟ%v����ޠ�U�~�f�������ʨ{�#Ԅsp�u�粪���ZYWg˸.���=�>5�G�}u�"2�B<@�ڋ�i�67ih})!_ݨڮ�0���<����,� Z@c)^�Љ�������yc���P(ڕ�B����g϶���-���EH��$Đ�Z� ���%}��#��t�η%��—�H��x���h���'��Y䞛
-���ӪP3�O�������F��T����H"�ϸ)Ό��J��`��l%�u�=�{(i.&�`�h��i	�^H�6�n�.�5��=�V���N|��&6�o�yh
/,?�1���mҌ��.0���Jۜh�n�EIB��dH��0�71�AbP[�"0iP���fR�`P����օu���k��A�^d��j���҃�ãIz�G�ᷰ�Y��r
�*F��%z3�YG���Y83�"�C��ĭ�oY��2����OI+���"t�ݟҩ�ͧ/nw+�!�@����X�iGx.;81fZL�!dlo�X��ĂJT�(���yv�O-���"�k����ܮvn���m��숕JX	x�:��s�W�N����c+�
'"�T��f���qΗu����X���tZ䇸SR�
X� xi���w��())Ƃ/��6�zϫd�4*���b ف/=tZ�1_��)NE��T�9��D�
!X��eO�`�
j~l���0**��o�@�TC�����yk	�~�:�Yh�Y�W����Bo�9�tQB�ˢřVNM�A��BjwGO:��q�,�o�>P�YR���2�.�;��T3��$̽��*�(����7v�s�,WԖ�My��	XCV��
<2�p��E�)�"���&��>C�Zx�4}�v��E�B}��(5�@TT+�0
N�eWgIdŸ�}�{��9�����n�_���|�qw�����f�O��nq�'�2�}-dv%/��؂Ōq�`�{B��ŁX�Jʆ�/J�GY*�'ȵ��f��NؔA{���2���v�{�l�t�<�u��5^�og����/�����_�O��'�._���o��ww���G?��O��[�?����������𧋳����'?X�޿��_�޽�\���7�{[���G�\���~�<�\����
g��a���z�j�錬7����q��X<8�\�t��5��y���8���Ï�u��`���a{�q���o�n���e���vAYhD�(U-Ͽ/�N�O�^s@����Lj�`��^�%	R�xk�<u�E9��Nܘ1!��J�O���sl�a�o�����Y��}�xƄ��$�3LV0t����
�֦�d�aX�!��Q�4�C�?�
�cۋ�{O���r=����Ӆ�%
Pܞ��Wy�a�]Y����*�'�zVVf����^0���T]�`,�/�;?0��OH;�ˑuO6�����߃�d�CXrk�p���g�e�Wuէ��*	mK�R Þ<�A_+�050>_�'b�3��Ӱ����ԅh�h��_F�VM�G���p�A��R�+_�b�-�jP��_�ˮ��D�`�Г׭l��6���Cȱo���"�����J��?�*����ͽ���:�oc�|�O,�y�h�	��_zv
�A��*��+��Wnͩ���]-I�4��ڷ�8Q����A{8�����r��Mֽ�nU�ͼ�!�
P��C�k /�8a��&��,�b;n��W@+�#6#���ju�G�M�d�	�5cTw�������7�o>J���N����"\X>���+���B�	2v�(���潏ͅ��s��wv�WH��P(�Ҍh3��P3߅|�@A�Y�/U~]A\�-�#2&�0L��[O��^\Ԑ������9S��W\�^	�a��1=��-��������7B��1�\�(�
�3�dB|����=�G4��G���N˥t�̬��M�B���u�4ZA����tut�U�'�����r�A稍����!�B��؛�r-�̓.����l�=>h�kw:G{`�`�؃@¨%�D쪔��D`9���x���-O�3�Vŗ��w޾�k��5D��5�|��xRK����)��+�]���=@�9��.��g�طaq�X�ֽ���x��q��tʐ����n�Jn?�uDG��G�N��t���K��A��Gn#V�[K���0�{t���0�� ?��3s�TcDe��tZS�
reIˣY6\c����9���Z�����:����̧�=���#rg�&�>��E����e�kѿ-�k��YΥ�H�@nl�m�`����^������l<���%8�5��y�����הKcz ��[V
g���W�T�\QA2�Q�%�O B�:Z�I��a�h��Y�Ex��F�*�b!�X`��#�ÿ��Q�W��E]���m� 7w�]����'��ZoۧX�׵=�K`� ��J�u��$A�&�*�`��e`�}�~�V5���
B��'��p	��e�\4^����[��ttJ���6X���\g�{S)>"���%�<?^)�ru/0^�������^����j�ar��N�+Co�ܞ�<-z���v|�%~1a�K3<s��M<�ä����u��dV�FE��m!������A���ؒk���m2�SQCHKv�'�
���j
B��;{�6��@���-�]�&K��{lǾ!%r�=��3���~�u�F�����k-�_Ɣc�.�mN��B��8ܸ��y��#�#��k1����Z�����Bl;�=~�`��0o��)(�D����;ey�n�P�4���\�KR찻GxK��eu���\Z����yp2Z�/�'��	x=���v��	�n��_��U�K�,��]�1�)��W�k��`E"�J~p=}n�Nw��v�C�v��3b��r?��x(�������Bڋ��[i?bpo���t��o\

�Ui�Ƙ��|�����Y�Y�[�vz^�����J�Ն0q����׬t0�L@�yC�Y+�F��h�i���񢒆,��V
��)�'y�ȩ��<.�����̟�$�q�V��i)�� ��oѧuF��O���t 0
u.��b�:Sv`,�웉pUHe<h�fre���
�ɉ%Qɤx0�ܓp�DM����Kn���ߪ��~Aղv�7k�]o̭p<{^�ե[a6�{P�T	H��C���:��ZW �Lg�"I@7Ӧ�2c�]����
��Lob�m�N�")�Ĕ�2�E�L77���a��X�_�NUS�M�"�y/����[��z~9��UW>gLq퀖c媆;�ܟ�ͥZȬ�rq�>:"0S���*����}�(e��<ª5D`��
{I��z�+[����ƄN!����(�G[�K�)���ʚ��
?���V��E��=Dd�X���
E?�����R$��[es��T��7k��b�Us��UE2[�eɸ�Β9V�1���DM匯�\�����U��=u7�
E+ӭ�g*@�"V7rE߮���Pr�؏\����
잎�.=ߙTN��48�u�?%�J�'Kj�/#B?&�u�r�6��Z"C�1�$�̄b�	�ҕ%s��B��x�Za��C賦bV��<�ex%�^���諑�K^�?JX�H��}�ɝ�V�:�%-�7F�2��������S�N�4"��`��4h"��1�T�e4l4�Pk����'��+s{����t��X�>���Iq�
��F��3�H[�jS_�lU�jQ�Bx@n�:3}�u"3�;3-,o�m �z.�.��з�qjp 撒�$�6�y0u�H�K5a��A!ŵ{E�����M��R8�M�A�:k0�$=��V�hl�j����X8[�u�i�bp�:�UA
���
a����q�lI�ٶp�"ȴ?�����v���v�֖Z��_o14�i�ZS���@���:Sk�K�@�y��F���*����p�搓gO[���+ix!���}
��c@V�֪�*
<d/6�Af��k�\:�t��
G�C!^ѩJ�P^�ڨ��T���oW/���m�D�d"��ݓ���<��*��q�m��6Z��-�?�z�">���.����Jlu��!�g�BBs]���k�xv1��v� GI���ְvP�����5yQ-i|�F-���4�Ed�������&
�={�Pʹ��i�Z�����j��:�`���Zd;�H
2���X?��S�J1�ȋt*��Pѵ~I�TpU��j�e}4Ѥ{���Ο�ԛի*,j�c��0�~8Wɽ��\$<�5��3�Nu_���?�]oλ���Z��	]�O�$QI�;��Mɤ,��MX��k�5Y9��=�C��B/-P<�κ���� ������@�OkeM��hq�"��T�u�
����1q���uuk{
��آV����&Ҧ�s���r�ᄚi�X���M׷մ$hG�aZ���Kk�0�^����_����N�Ş��ͭL��xcdɘ9�P�S�Q��c=[} en�O�A��X��+�a*��9�֞��$#ȟ���u�9̕���D�^J��*3�k�-�%a����%(�!�h+(�Q�8��Zc]���*��
f�4�~�*�d��3�Zr���+5��ܛ���H�t�-�be�H�E,2^�h�����^�-��|b�������^F�(��0�J�	C�rQ+1�V��2SLD܊R녶T����&Ƴ���C��c�a��U�N�z�7�^�1N۳D��DY CR7�y�AK:#R���`T.����@ >6�Uj�Z�,6��"u'��	��
PFnU����t~L���ra�J���O��N��U�D@�n?UYsb_���3���C�l�h����U�Q��ﮐg��ٌ��:���K7[��-�-s���L_�8anM�a���@���3��L��&�A�G�1�PO|��ў_�6� �5�d�K���5���j�i�a�,�y1�4�R��BB�r^���?��:W�)5n5�5	y�d�8�!+9d�����n���n5gؓ�H�� �3����͌r	ÑB��
�kݻ���y��I+��ԧQ�L/�lAJ�5�{���|AΣ��閠�֖��P����3gCt%���0�
���B]*%�iQ L#֌D^a{�� >*F�B��9�k��a\!�b�+��t�p�_a��ؼ4�y���=��m���8�ՋGnN(K�hdd����Z>Օ9=r)�a>t�
���
�kf�M�ؓ\�Nխ�a�&U�ŧ�ok"�	.�����JW��*cDr�z����q���}��d�GKЉ"4sfu�(L�w��^����C�Җ�����<Bm��j(��u��%w�䑂��AC�[�>��^I�W���̠��W��}�.��j�[�%~n��{�=��u�>���;��^[���Y�Z�*뻦Q\�n+�x�w>�|85QH�H�s�]h����ӓ�*Е�<{�n��B��$�����*�gA���X)H��S�$����>���6[/e&��[�#����f�@��jE)�`����S�ɭ~����g���pL�4Ć�ҽQn��t�����!��ʋ8_մ�D`��
���w�������������3��x�'�����Z�$��:�U
�6��٠�`P�e����[�S�c��0�B��ޣ�[z�Gh�� t@��>:�;�(�f�5�����V��Y}������O���Τ�q[��#۵�%���3����x8�AQ�G`��Fv8ԖT��UPr8��Q��/�^��L�������P.�m�Cy����K��2	jk�9_�U�槉Z����y�*��� *�+��R<�:m���0g��<G8��C��L!I?���?*��E��*���ԛ��3bd��'��a�`'������:9�b
&���8��"�H��_�6�Zd���%}�����gثU-2���S6���~������A�����2Ŧ��ɖ|�=S��:��
�k(ꋿe+�n�KF��g�Ё��%�7XX$��\� ��'u�Dܛ��1/������U��(ƥ���L\j�q1���ԛƺ�rŕ.g9�(s�`F4I��;�`�>y&�	�=�&-�
1�iFߠ�;Z�0�8�������(��z��XƑ�+kw_J�I
��9������˾ad�?�&�Hv!�vSIU���ż�*J~Zֿ�s��r�NE�$,zqV1Q�#�p#^N/�lW���>7.D�ko*��dY�tU���@Ԕ���d�bkI+Ri�T%�5�4��J\[����uqSK���FxSG���<L��5@�����L�-�h6w:G�އ��ww`�a�&�vbv��H
pA3�#��\%�(�ad��$ړ@���0�,����l�c
�93�[a5�
�?�z���9��sS
��	����"����h`r X�P���&z���1��O`ܩ�(E
�S.eЅ��T�ɁhU��M�)��`F����'�{��Ndb��j�VB#}/����u9%%�)�Jb]�NS���Q��u�6���B�[��Hk�.<[�{�x�`H	v��~��W�������9x����!zj�a\������%o�o%(�c�����,���}����M<s�kKy1u>�J������PJ�0�Y9��S�0t����k��eW���<�����w��D�p����BT���,�u����}/
Wϋµ��T�73l.�ݩO�{v�o\�`��R�^C|h\5��ii%�
a恧0�I�=),�NW٠��T�_e�ƶ/��qЊ��s�|]�iM���"n�}��'�3^'&�a��Яm�Ь��}&�N���nr1�A".�d-�Y4{��0��䵹�%����ƒs��w	�5�p$�D<�>YO�W9}/אD2N+E<�T)W�12M'�
q쒆+�qt(��K,�����5
ʫD�������H2S�Z�fH{�	I)}�g�6��"�#�64r�a��Ex3wbS��ͽ-s���9��7����뛛[��-(�;�����]���t�0��fc��^��8��y�O�^7��ͭ�)�����G��ͥ���돀�ן/pkƎxtn��w��`ء�W[������}�[�Ÿm�,t��)���@�ƺh��Y.۱B�]g�g������_q��ƣX;��"��^0�,v�y�>�&{c���l�� ����u r�#�>���z9`8�֚�
��y�`e{{�H���l���AW���"�Y~�v<?�T��7é�]��Z�~4'�#���{���y�Nra	�t��}��"�O����A/�Q��#�&򽉕�R߭�5�EA`��^
|~��{��9/k��o��c�^Z�@����g���s����,��u�‚�؛��^�;�`���� Dg��A�n�ΛL
�x�q��@�Ȳ����_´�ܺE@5�)�AH����g�o��ʖ�K�bL^�E{օ=a�ܱ��YS.���x�o���E���凍߀������'�?���b<s�a��Lͽ0,��<��/r�N
�LA��zE@���d!���8!���bfs��?��)zc}��ۇvr�H�h�^�<���X!U����{�gE0@��K��ؾ
����u��dE䉾p
���z�Z�Bo
���l[�\�����jg�ܴ� �������w�Z�����~��o>�" <�,u�P�X�̑�
Hl1�ޙB��1�O���r��3D'���2�Š<Ä���~����[�+�H�M�Kq����7���2�$	I���Y�/k�ku���rJ2��*��8��H�#�VՇ��	.{ 7=� (A��u�u�*����Ӱ�DӬ�&66=�0�#����Qx�fhէ-؀7�5�N�`@/$h(ID7�/g���JS��l��
��Q��%]�S��6�\�!h�Je������	�*P���dVeQ0��KU�!�8!K�O�%��-��_P�j�`g�۬�}9x��Y����u��{����s���w�ݷ�����d���M�h���?��>�J���N�u�v�b�o�����5w@w�F]�ʦ:�>6v�����ck�s�|��^vG���n���q�7��=h�����q�߆�٣��K�R��6�Wx���0�j�up�]�Zo���v��z�W����L�}���Z;m�j���9����a�U�ju��^	�v�~_a-�ow�f9?�ӃGLy��U�w��:k���+���=����P�K�@���hI͌|~�o�
��v���ce�n�|�<��]�&�����ol�}�����a\�8��L�'6(>��1�*l_$�ZUq���sD�ɽ��$7�-��J��n������P}M|�O�Ec��v�`m;��Ț��FpqV���E�n�\��=��˗VVXmD�!�`�?��o��Sn?�,�:�R���f�0a}�r�}�o�dF�҅yϜ��4�қ��J:��|\���c����X˅M��H�B�ߤ�yH>6i��@*^�+��]oNW�e��C!+�J�o��1�6�a��P�\Ĉ�@��X�#̀�P�*��͗�.�\�pk��}l����h�*T��(Y��ҚL@�e�
V߂��Q0Sچ����<%!��yL�q�Ԫ����(�O�Ǒ���_q�������6��� �ߗ+�{ ��`n��	N�k�7��2����:)��������������ZC
��checksums.yaml.gz0000444000000000000000000000045014364637605014621 0ustar00wheelwheel00000000000000��?�ce�=V@���"�o�[�����Z�Ryz7)��cfn����
e�^�ׯ�NJ{�|��^c$A+���4��2�a���0�h����n)�rm�V��{|?y3=}�kMG�^���Th�LF�W����]����f��)��|"D�e�YK��ljZu-i���P��G��d�u�3�q��/j���RF3�m��.�4цaB��Z��oN+9p-^�����r.qT�m2K�uB���YN3�5�G�S?�`�R὎��[�I[@8���As��*u_~�
���PK:H[�c����#share/gems/cache/ruby-lsapi-5.6.gemnu�[���metadata.gz0000444000000000000000000000105514554465534013456 0ustar00wheelwheel00000000000000�\k�e�T�n�0��+L/{��.��HTT�BHpi+�@(r�I2�v�V�g�d���$��3~3�2�Y��n��s[�w���f�-*�f���GP6x9"���Fy$�Ӽ�8�^��Z���)���e�����[P����<o��0��焎�M����f
\�T/�*|���.�gYq��׼(��b{�/��LFQ�9�r8�D�G�鑉"��&�o�J��ZOfхo0�{�?C�o�ѹ-q(9�־�#"���`pj
���d�I�VʚV�:B��\cU�b�#���ۏW�3H=�sNSE���0���$V!��#e��鷁V��k�������	;��@�8�v$���$��j�?�_"+7C
'n�4�eo5����C�<�l6�@��
�H�Eu
AR�Ȓ���F�C��9��S6���?栥+��'��[gS%��L��`M��Y����'���s��݀������Ɯ+�u@�8��cg�t��'�����z���t�������Od�u�Y��data.tar.gz0000444000000000000000000013520514554465534013401 0ustar00wheelwheel00000000000000�\k�e�{_�Ȳ(��=�f���M3+��C|��6�X�\��-�Nl�K�!����oU��/�2��Y��a&`������������������j�Z/�?���1��w_�l�G���ϟ�|���k���>���?�g�f~������ܲ|�s�C~j�ԟ�d��:=|ʂ(
�L��W���%?�Z�l0윞ֶ�O�F���4���䊌�h^;2�H��H#��V�tN�5�$��ğ�ÓIGI8���k�Ԇ7��iF��$�A��;��d1Y��jeA2�G	S̙��prO��E���&�����`���1��x:�����60Ǭ�
��\�I@�R2?����&�r,���(�g��>��)ր���������h\�&�(���n��:��������(� �
�8�!%n�$�AJj>�
��G��0b=ݯ��|�0�4��%�l��8H���
$@��P�F�c�j�	6F�q�G��A�>�i��Qx�$w��B�p8�k�����q�x?$nDMƖ��d@��E�S�sV���i8�3�M�oD����)4U�9��\��t|�	�P��4%�0�����A�Z�0�a��5�]@�I�O���m�x���Ō̧~
�����j�`>��q����cj�?����0��-`C6�+�.NJym�t��^��S�5(Y��8�3�#"<	��r>��ﰗ8V�V`���0kQ$�����H�
x�I�ς�8��f�?
�e���:�܎#�u�C6[L��IJy=�lp�&�1š��'��cG�S^�/��Uf�M/0Xa�t����m�S���N?@�}l�@��B0�D�(�8[�ԝ�n�l�jg���n{fA:�~d��f{�v��|'��]�1���󛹐8��ȸ%�o�]Ĥ�Q�(Pc8��l�^x�o{�G��1~��`��_�V�V3��gI<e�9�?Q��+��	t?��;��5A��{��a�f���]��Lr���dXe�W����ZAu:hlbS!@��4�N�t�pXh+t6E�5��$
k��0H�6�kK�`&£B��6���;?�:&�@�5q��0�h�.
]��ʐ�\�L��CND�֟.`Mjk�O�0�8��aM'lS]��~��ą������2]�r~O�n�\XA�d�Ce(��0�^c
���rV�a���ޑw|�i9*ea
��I0N�ǀ�="�ߨ���!xcF%)%��Z�r|,�y����9��`Rb� 
�4f��LRm��
�4Lk�$�	�!\�n(?��lU�����Ѭ9���B��q81����E��l��	!:Q��8�o2�.��`�� p���o��a��6���w���(Q��D
�N����V3���P�fϕ�,EA�3�ED�Pf�o��
p1��Ȕ���6����?�&N���+���
""Uʤ�E�bNc>W!��:o��Zn�e���Z�H���-(��+�
�|he-}Fۣʅ:�D���5��
@�
�<�O�E�@t�P�q��������vL�l\pHg�,�y�Ha1��J��`����4@L��:9���e�x�2
���)�KB5M���q�0�q&S-�Q��.w>�uO�]�82:!�8UPaΣ�%j4��uѕR�-���X�ζ���]srB���S���hJ'D�h�`V��`�m������������o��7�R&U���Y�l����\�����7��~�� :E��K�*�Iҳi�d��K�	�8�,�����az�֋'yU1?�a@#��<H�5��TJm^`�tn\]%XUk��8��ȵ��q#���
�/N�.�`���s�O�]g��C��L�"蘪gt�U���F՚�$��g��ßj�7���{y��b�LX�q��c�b^9��9�?	'�q��>����b�4�n2�e%�d �r%C��:�M�/S��9� 
��i� �aJ?g��$�ak#�.`1�9d�eٜ�o�@�F�\<�ўQ�rF�8h	�d��D}��_C+�����m+�@eM��6h$Q�C��4�J���Bahz38�V�����j����jYa���/�����3Vߚ��v�\�o�w�=t��O�A�A�?�� 
��U�]OA��̫���_�W�L$���m�^�S�ѓn����Q<��Q��E#$�7��J�5Pz���F��vr�m�?�xQ`�o����5�/�����g�|�dg�&;����U� K�j��Z~�x
\Xl��
�}��n��HS"Џ!	2�?��O?0�$*��
�yA����
`-'�}��O��䀬����ZsQ�R�ϔuA�������V���?��)��,<t���ԯ4���^�ŋ�_��N��x+�>i���5OB(��v8��io�pI#�?����B	��Vv?�4�5{�&�M1��	�K�L�O���}���Hg0��W���mܭ{s?L��/��&�q���w�!�5��>Ӝ�>y��/��a���/�
8t�w�Z����_r��������_���}�q6yZ�����b�ö��:��o���u��ƣ�A�F
��Q:�,:��r���o�@��3���$��v�A*����ǧ���܇E~눖o�m
�'�ݥ�wy��@��&rRp��B�Z��O�ny��O��i�^���_����P��#����m�l��D;�)�����c؞��1l���:�!<��`��c
���G'���q�Z�~8��u�y�����b�ΩM?�hҳI�T��+�O��*V)Z"8:�^0[��o����b�د3�Zg!:P�l�3z2�4��A��h�3�q#
*��@/��H��1�����c$̙�x��36_��N,\Af 7�� �d�P���JgDς���|��㧨%̄�PXFj��G͐�D��i�=�);6���
0�M�����,	�1��+�'�2�<�g�D#� �D�0A~��)�^m��7 ����/�~����Ͻ��y���������C��V+�9;�Գa���rx���:��F3:g�����`@������z�s6�uM�;;<�<ꝝ4	 g���i�]oņ�Mڨ]���w��[��y�;�
����g���y��!���wxy�铋���K�[G���i���{�
�C���s�lHo;��z/k翜u����E�KN{�7�]l�v����7��C �wڬ
.��=���B_:�ߚ��K(���s]�/�\���e ����`�^�����y���;�����r�m֎:�m@� >���(�zg�n�y1��5�v��%.�%�U��y�7�4��o�_�v!���� 	@�áZ�ky�Y��w�=;�b�9B��7�6`�z,У���C����8D�U�~T�I��I�������z�M(��rro�6vj��w�$�������[��$�Q`�B�h4]�P}
�1���7aư�x��"�
��K��y#�QC�n���5�L�p�v�Ŭ��Nҷ^��{1�-i3O���PM��S�Q�N;�����~�]�#u�������o]3�{v2|��������v�׷���E�s�#�����~�/��(B6@��:�o���*Rz��;��1�ᰫft��o��g�V����@����^x����2E��+�{��O"�������%G�V{ؓ��N�?y�= �r�ժ��{�R���>-*���
��j;�g4��{�M��5.��=�qO�1c$���vA~u�<�)C弭�.��w���.*5�K�3&D��Ǘ���E$�I/�W���Ր�5��L�i�^:*�I^���{�;C���`XH����V�]�,���nVa�g�R ���wJ��R�Y�/LB[}�K����a�������d��G�]��:��{.����9m�H��Ŕ��Z/%q�.:�?u��x���ל��.x���&������&(�������э��ߙw$���i�1�w6��,�S�K [�����dN3
�K[D�%���5A3XҞ�z�O������E���9�z9���,H�?���x��n#4�0�jr�I��e{��6ѨE=�e���#K�����m�l�O&x��}��w�[�̼��o��}M���~��;�cz.������Q�-#n1'��3���{>
�
ˢ�3��7��#������|2�c#8�qOÜ^�[?����0���`�����~�;��~/�F�a4��6�Ur?��Mt���c�7�a����ڕ9�������(�Ԇ�Q��:R��4�왓��#6~�~��D��{�ڿ�`6��C'
�S<t4T~�(�+�bz>`��l>Z�&A:�p@�6)�
H�.����n�k8��>��5&qf4��Y˫��rQ�������;
��G���ً֋�m�����ǟc��ѵ���˓�_VῬ�Y���
�e��*\h��n��ʛ'���Q�'I�z�ɦz�4���i�}��Z��:���EO
�#��fc�i̴0�����LÍ��zJ۩�*��;���������P�Dt��S����0�3�a�_D ��R~2�w`�7�C��J�rP؝����D��פ�y���:�a����G`;R��yF�u��9
�dĹ�oct�qoGh9�A�M7���A���낒;�G����N���kAb���6�����u�"Nft�)�n�+��e���|w�z�}�H���ZW���O�$���wEZ��VOj�
��/�4�1�P	��Y��ō���3j]�Ǡ_,��4Ѐd�v6�fM���B� ��:kZ���� �޷_~h�
�Ss݆��י���F�?{Ln���^�WC�
���x��A��� �8�Ł,jS&x��_�,��U{w�]���osZB3�?/(���.�s��I������/���7��ޠ�f����]˴��Сf�筿�ԎE��a��YjZ���{dg��Cz*���zi�[pr�7���1��r�(�x���)o�)�����$-�N�P�����8�.���􎰑�c���o�4��B*�����&����2iY�S?���Eb�j6��/L9�
�'�0�G���}rvyz�W®]{��u?�20^�I[�I�9 -	/W�I0�y��s���Y�&�Y�RG��A0���lqlLƋ��W�kf�s6\�� .�:��=ܤVf}c��$�?�h��:oԩD�<�]��}o4�H���Dj�,����j
�n���"��C��^�����.)w=����7bl��
Zt������1�3
���:�R�8ږ�B�y�X\��8g)���dx�Z�8<*���0��Y�,���%L�vk��Y��]�������D�k��̛�O)SD�,�~&��	9D���(	�����"�����I��O��a(��$^̽����rƠls<]�7�X:��xI��n�9|$
�����NƇ��T6�󆂸�~x��ˠ��iB��d��ZS�*\M֚VI	ʕ��'������'Z��	�(���"A2����Pd戢�soY�Q<ꏢ�ȜRp{~��X�)��N1����u�9���L��*|%?w\�{e2\X���{:M,VY�=�-g-���L��ߚd���y����¿�M������?ra��	�x=������ yw��^�,PN�O���8����!�H�L���v�Q<�m$���$���@�A�$��B��U�!(eJ	�vD��
+��S��qJ1�H��/R�o&H0�2
���5����M�u���d�5;�l�h[���ܔBgqX�}b�|��f,��([�ix+S���n�ɝ���?��Cٯa�G)t-��ɓ���R�|�Y������`I��I����Y =}�'sNx�l�@�k��xKr��Z[�tɥ�k<j�}��‡8�b���;;>��g���.0����1�3�=*�;��)#[n��r_בB��԰ ��2����/
n�q����l�a%�~�;!�:�*[m�����xw�_��T���ɓ��E�5��	ߓ��y�O	�ɽ�7�߳Y�GK̂x2�����m�.������E`������&Y�fJ)�RI���,�YS�x%'���I}ޤJ�����[���_����[/�d�V8��v6�� �&�T�Ф�7i���[T�&^$�\�����

F��B��	}�Q���Q)P�b�-l���O,�O�?wO)O���
g�����x�ʣs��QG�`x���~��{R��8�W]/zGU����~��=��F����h���֜���k�A�	�㲽��q΀�[�x����b��?��i���h��L�T���J����P�-B=����7'b$H�h>~1���b�T@dZ�꺎�N�IP6*�5����:��,��h��gD�&��mT��k6���@�X���`Ij�	��5��(�qY�>mz2�|[����度�YMj
d�pPl����3{ç.���!}`��E[�
�؈C����mBZ��fV�G�`[��f�h(��b�"m��i’��r�%�_4�!*`��@Ff�f��#lb
+P2bv���g��Qa�+�8�0h�Ӕ�����@<���ؑ�凚��0#t�?����i�b�xFn��b?֍1W0
�q᮳=xMp���������Z�e����}(�C{�4Tr[��נbjO��;ZG�7o��R_2n�hPħ�9I}nS�Iu�R�������N}ODG��@[k�f����uVi���%���oz�lB�`O��c

hzЃ9�S����p�V9ͬ�P�,�,^@��&i���W�0������H�~�B�	Mj���N�p5�bZ_�$�v��ǔ&H���T�d�1G�FLbX-��(k�N��
�k�Z5�D4
K�˜('k�+r��<�SGG��2ഀ�a	B�QP�\���5�gl��
�g{5���p�Z0������?˓q�F0�;;��sx��]���ǧ�RA����
j'�s�
�?�Vjgxp[��{���þ��HӁd���Y#-G�2+"��WNM�`5UH\-����2��z��;(.��rs;Utp5hr?�K	��u�\� ��-��
�(��6(�#Jaz����R���z��*(oHl�kP��+��C�EW����V�ɘ�4/�*iҸ�tW�n(uZ��;��q���"��ƅT���:9G����ßDP{�ǔ��k�|р�;:�u��@�q8��;�(‚i���i�b4�CE����EԄJFk�+@�����:���ٰOӤ.��?݃�	�
1��@o��`hn���x:!����S6�b�����DXW���*zt�k���U��|\�G�$�F7^��2�6�Fj��]�����`�Pkg��t3�E���EOz0�,8�w�8P�ei*�~�+9����|��4eF2��[��t�\g��Ma��l��a�,z��S�mz5:��:��-��"q�v#��@�
ULr�M��ȢȦm�)�X.��\Zh�	�|���:L,��h��>״����.c�&�ŀ�CC���ڨDgX��$V�y��D��,*yme�I��7���|D�vƷ��l�����I̥��#=�=U8]��&H7Q0��BRwj��)�����5���t�+�G���5�ذ��f�[��-}��H�_��R'O�����[���󩍕���B�v��u����|r3�~��}v
I,6��9on�rv���"���Hh���"t�3ζ�6��qB��R�\�(���'ezuJp-����I�wVm�
�qp�*�V8"
��)��ڔ\E��Qޡ�Y��u�
y��!�L�%�Y��P8�K%.�(���g#-��	c�`�70{�lnb�%�i-[6S�����,	Hp�GJ����-��T~FXu���_��h�
Z�:�Ы!��:��'4{�0�E�.�7W�\��l\��,U��g���ሗ�PQ�Q��i��sK�i{MiRQ�7f��ɜX���n:�a�w����r��t�p�b���!��@�t>�6���51>�x���1�����v�D~
�E�R��A<��VA�EL=�[%�e����|��Y��� 	'�+ف��3t�!��n�����J$)\��丫��j�45�4
���K��M;к�ak��螘pO�\ �'a�����h}Pd`y�e��U�A��d�*�R$w���U��y���P�t�[��l�F�cp�ѐ
,h�]�i�b�u�-\���
T�Sڄ�0R��pO�r/g���Ы	%‰����qC�\��ᤁ�h��6���5KS�� �嫻��*4(raz!C��9�n.� y��Q�Dţ���y�<
�<ť����8݌�}�&�Rs�츉4P���"�rm��|����;�궭���
H]_Ɣr��|Ͳ�ol�靋�j���Ђ0��y��ͼE�����<L=_��6�`+U_���|�/��l��z�{�sc���Ȯlԍk[��sP���F�Q��?�~M~l�+��d{L�:��v����]���]P���y«3��(���|D��?�H��r)�	��>Gq�U���[R�V53��8�[��jF��V�]�b��MW|�o4�Kj7���-��ZY�K��١��rE�k�;��(L�Џ���)>�Y�_�2��RDu
��̹Z#u������m����C̥�PԓI�I��}e��K�j�͝)_t�ϱ��K��Βy���bZ0�
%y�Ғzp�eXj��J[q���~_V$��E�M0���F��4�T`mN�=��y���2,X#t��P���%�����iU_/o��۪>Ѥ8�me��]�s`*u�m�s���8O��k���I�JE���?�E�M@+AU���
�"? *s��Pg� �'��§�a_qa@n��ذ,��8m<
=��x7���$��}�ݱՙ[a�~�y����8����P_��*��}�BVl����`��:E��6CiߵY�d���D��U��9�R�Mb��ǻl^���pL/�.�[�"��dz��qkGy7O��{o�TT�֫��m�?�e��p�s�;�
�_������3�iE�8�t����;���\v��g2�Ix5�
�����!��T���*��Uѯ�37��s4Uߘ̱^�N�����x^>��h����Hy�1H�$�_�V���:M/�I�"o�i��%����@��4��4�c}�������a^I?l��ʱ�'�)^�����4���]x���B���'��o:��W�`
cǀ�F���;I�̚��Gu�S���g%���aI�5��[��h����g�X����O�%d���4�燽�:����U�tn�U@�"�djJ�.�>�d�%�sV�/P�_��KQ
�Y�Icc��3RO�$c�%\��C�B�Eu1ST�g���Y�f��(�@3�T��F��}���0'+�W��F��+b	`s�k³�"!n\��Ɍ$#�.V)$ZU�6~�o��՝R����[�1�'�ޣ��sM�|L� �t`�mk�j��$�����$�n��T4��&"�NRŗ�z�R٭Vk�s�t~v�i��˖�-o�&��?N����mӄ�E�O���*�K����^���u�u�ذ��[->����m�’?3��<�N3* ����\�$6�j`A,�E���s�f�w��Z?�P��v���ף��-
�a�I�/a�_�?+�7B�܇�i
N�6H[%���7&KaaN�c{G~0�#}=b�
�_�eVj}p������l��>jE�����r���4L��M�見@�c,��O��O.
I�!��0������ȸՖ�:`�Ou�u��W�B�y�.�㶔^�4�̩�\+��{��PY$���7`1)�:�vNi���q'm�{�ɨ��`��AS{���[,��VX�I�{'�{G��j=~�+�}K/CD����'zy�I�yo%�0�A��	���&�k^Ij^������W�VM
������u������Bsxr"�I�~rt~������Srq��wH~_����u��;;G�#��������v��v�0��5ơ������{�#��ȹ����^
)����VH�C!��(�����%0 W0�	�]p���^��f�8�pzORmB�J���|��O�
y�i��|����-����5H�=�1��æo�]����R���Q��$�����|�'�H��h�8&�5A�j�b��e�(�%|6��u�Cvv�8�0&{��/�1�j����Ɓ��;0��q��X��j�t������:�h��Ύ�J�}�Կ7`�þ�f4^�th�ԭ_�\�#�X�%���z	�<kr�Z��At��@�*�+0n���BӴؐ��y5%߱3O F�Yz�"*A�ښdPu��Mh~���h��>�e�#��C�$�+9S�-Fف�c��>ڴM9Ю-�_QW}�5K�����y��V�T�3P�.Kk�E�sR��5,~O�Ǐ��@�y�
(E(�����U��Q����� -�d��s�3ۂ���V��AJ'R}�4dF��pl�LJ7(��)y��#��\�q�Fi~'iH�?�ο0GX�uky�}7��K\��_0��l)B�%C�F�T���h-6%E�"�Ǯ�̾_t��h�Պ>aB7�q�ZL��ǃ&,�r��l7��L�L��i�U�Z/s�*�f�rS+�~�+f��z�6O��8C��8BS�A���e�%��;;�ߘ,�H�o4�d�Q�HnQ��_�`g�fx�^A�\���pH�5+h`�%�ͬ��n�`~�Q&٧�b��#�(iH���:x��dU�Y�����Ҿ(
9�S���a���fpQ�̩�M�΁;���~��'NJ�h�R�T�o�\�,E�CiQH,�	�.*����}͜^�����S0�Evc��(N�7��+C�^�Te�G��I�X�==Af����%ع@!|:C�7�h�ı|�f�mP�C���Q�bj�no��ѥu������MbyesJ!��e�Ѫ��)h����U78�=��FF��C�����<�Uz�OY�v@�h�M��O�kG�N����C�rH/�Ǎ�R��['��}�.e>����,�Z-��S�Q|��=��,a/ &a�O�E���\����i:B�qk�WK�+|3/&�)��M�B>��uB�(�К2�t	�/"�T��֋����K/zJ���ְ�'������EB�J��$�쓧��Z���uveƖr^|��5���kr
-`[[�zi����.�lm��j�W��I����~�jOr�~��x�pT赌"�^/��WY���A������$�P��	��[Ѯ�v	�(	6���)`t���I7E\ZQS%�~\���
n��ͦ[�l��LS��%�(���*M��X|�uL)��>
�4�����9j_G\M���*U�*��2[���V
�Y%H/G1�5,+q���*�9.�Rٮ�h��F���B#e�ʍB�Q��R�/�9�Ta�(ǐ\PGQ˛[���	��*[�v�	�
�\;�U'^b1-�?b<=?Q�������۫9<Y����T
��1L'~ߥ,���yu�_L޵�����~�W��p��w��q����T�#��[�S�üWe� �!���q,����Q�%�}+�ɦ<�*�#��qgu�����H�D�+��Xm��+�F�l�r��̩�6����jz���z��f�!�%��E�>�X/ƤY�zb���0B�>����+�a�;�ڣ�]Qf�� ^��˨�$~q�]��Ddb�6���&M;���0_�V��6�]�`߾�QVO\�ڎ(_��
��
�[�n�.o˪��Vr���K_.��}j�6�E�l�9�˱�v,I�l�\q�V���ր��|8V���?H�ze��Xq�R����"wˑ�L�uR��֧f$��]-��fY6w�BZd�4���%x�rn�ʗ�r��̸�R�j�FAؕj����[�4̊��w/Y Z��(u���Ӑ���2/��s�g��v9_��4�;ep!���S�����R��A�y����s�j�jw���������
�Z�ݵ-f�;�˽B7����Ű����=�)^M��8'��EB^ E��4()�rd�qa�_��q�2�#���J~z��I����x&������{����&�̾^t����Х�
ƛG�ݾ
:)�;<=tWB�)
�1'3� V�_gP8DV�S�"�j.��0�h2,fG;���$�m��ʊ����ϮI s4J�SF�ӹ�!�����'3��t8`����2
�/�1�{f�%(4�,/{WX[���5u�.���!�?Ԩ#������\���e��K]�qB��7��.�H�F��W;l?.���n{�;�[E��6#k���et�wFBC�\|MR���R/�
&��O�b�a��yW`�G�Łq������t�;b!�x�:}Lj�!��w?4���b�Vk��2)d\,�e�™�T�o!�jH�k�Ͳ^��3͈���
f63V���ڃh]i�j1�i�(7�VRN�m�M;������i�Z�kgb���ă�e
��}��t�g�7�EQ]/�؉��{�;C���P7�J�K\�������ɻί�C�j�@��A,Sg
L6飣?�1��قV���x!J�Lf�*FV��������㹡MZ�M6�1ޅR������q�.�jB��i�}ʉ5�u��e��0A��p���c�O+���
��J_$�(HS�D(Ҝ��i#����9�k[K�;��Q��gS��6GEV�;��k�V�����C��v�Mo�tP�cjhOAz'���h/Y6�K_���eÈ,�~=���dVҼ��YC}���IJM"
h.ptP7`Vex��rH&��=F������E�A��_�Ɓ�,��!e6�ϛ��x1߭�ymK�"��:U���u~���X�
]����?8��7����g��
?���G3��i,♜v������"��I�|�2D�R	�?����\:��� ��O�/��3 �L�
.kZ��y�?��:�{�pa�	�Oj�#�>���Ufţ��^F�GH��՞cnV85�;���ɸ���%#���E�A���xd����e�1Zl{�����q��0�<��4��������5b���+�`���6K�U(z�A?a�X$�܅�*�μ�/>8F�xF��g�����r�L�3D�d(�BژfUDD������3nw��t���g��W3QH�4��l�R��
�+q8{Xo�M�{��`�q0��IH�W[?n/
�K=�Z��_C�Ѝ�-
"��RQ,���Ƅ�a
Ͳ��+�]�ɒ}�q0���R�ږ��uk]z����D�=f9��9���J#R1a
Bl�ɿ��N{�WP��L�r+�J�6˟u��_7b��*���@_��L�x?�Q��~���X%W�q��W/͟^�\�z�v����3����;
��tc�~�y�8(��
����;ݓT��N.*��������0�T���� &���HqA��c�Z���wq�?�{�Ë&�_��Q���[��*�:�R5��}~p���Ы���cp��X�U�ͭs��{�b��/��J�GO�%nǥ���%HZ��V����*N������U_����=q��9�.Jl�xN�D�2
�ϗ�R�u�g��6ݐu~Y�'��Ƒ/���Y��\a�5�W��]-[ԟT_ԥ9l�i�Z�^/)Ac���~��x(�E�b=qly��r<]�p����לN.b�����

�C���G�CZ-^r��ě+nnZ��"�0�8����I�O�zJ�2e��
�V`u�/�9N��gGe�U�O�۵�^���W�jk��״��%j?zn:j���*?��@0^���A{U,�R ��o.>?6�����Ίƪ�W1��|����48�\:o]5�I��}�k�N'R��h`��46'�?���B��'�u�{��0�r.XK���.qVg/��,��8n��o�aQ���dbY��|!u���Z���H�����І�@�xXCCR5�>A%
����.��Ml�V�y|D��6mn����ؾ�a����[�)B��a�&Œy �����U���^�-Z����,ֈ�p�
G �&�����X�Ӥ�E3��⋻e&"
��uX�|��%�PF�Y��l���M�`����.��e�oJ29� �*I�\�h�ǭ�CbtϏ�Sc�����"2*�>���سC�Φ^��X�"�ka<��q�����f����a��<Ο�g�'���	�ڧ~x��8b��dsj�ɮ@�oq5����lR���\��'�l&���ۋ6I�|!�ů,��I	�m��)��[Ɇ�ʙ1�V�ke�A��S��PĂN����s�a�*����.v)#Y�����j��A0�$u���ߣ��ʧ��9{}J��aؐ69t�pU�z
�BE��5qX��>`E�e��j#�K-����Ⓦ.�|�
�@M���c�E��`���	c��s>sDJ5�U��u�X���Z<c�:�f��VY��u��}]I-g!�W�	�� j-���H-�k��(4�`�4+�c{>��Q���r�#Q,&�{$�<�E�%��Ϟ��Ų�݁�Nt�9��R�"Q9Th�8)�b�T�0/�R����ނ*U��H)��@��}�@�cW�����.�2f.�M7���1�+�V\TH�vکz���oT0š���Bw6�g�Q�c��i!�nn"O� �*@�RRp+�˾�o�\V�}]
�)]|C��8�m9�w&	s)jn

�a��5��j#L���{��"b	)׊]�g|'��s�xvW͒-p!V���`j궘p��R�B��)��;�Ҧ�d)�Bx��3�c3�2�`�8Jm�О!�e��&j����z�\�hB9t�+�w���@8���#���2����	@���Kp�y��8��պf2CѼ.2�W>�Zf��y{ZuĴ�r)~s�C�*�n�K���b��-�.��B�P�$*�Q�y�'UVD�}�q���
C�K��/�N��e���Lx���&ۮm���������/H�;��)�>�Y4� �6$hAl�WV����ά@�gMh��0Z�7�s�\�^��:��x����	�GM�ښ��	�/����.9�޳Bx9�s�AQh`|�3����Oޠ;�/����WGiG�q�ƐК�
�#[5��_^�/�^yĭ[I��ɇ�D7Ft��0f�u����)��;�-A]l?�w������w����9>���J(��$e�૚ʸ�<���P���������.W���<��&�k<,R)�
(7�n�0u��H�i�Ed�S�H4�.�y�ާ;�C�7�QT��&E��-����P~�o�_����7���a��y`PJ%��Ay偭���|77��RL)�U>P��.���$�e�>�Oh�j����)��[M�^g��1�ٻQ��9E<?/9E�ˍ�ۋ�_��W�UR��HA����b.�3B��G@)��(K*�y�52���`*�R-��i-y�uB��S��Mҡ)�H�[YU3*,֊ѭab�'�p�Wl��8sfV�08Z����R���ίf�(˷eU�$���7g��R[�ˎ�����+���R�h�6|�}+C�jF�U
��o�0`��Х!p����R�Frd9"�I�Ӣ�'�PpGL
t���[[zbWp{���o���{ŕB�9+�#\��J]����A"�w�P�HW�[}�Xw�u	ƨi���)X�X�ͪ�sr�
���?��
�u���O|�A~7_w�g��~j�w.޴g�B�.
���~pdl �V�͜�0$�2�)�w���{�V<(ڮ8�6=�;sK<�E� ����H?�QO[���G;Ul�o4�bȼG�(�{��d�ևm���~c��E�)UZ���|�U�6f�<p����۽�:Tr��I���?Al?[�ը�Dz��W���䥦�����B���j^���@�˃ �߇ʝU�3V��Ó��Y�y"�ͷ[��O��J��<ب�F������ﭧUC#�����@0�㙮��S�
�̝�Z{�/o�'�ܻҺ������k�,�;w�ܘk`L7T
w�o��F��o�g<
!�}��[w,B􍷂Ks�%��G��G���O����iO�׮cutH?�ݨ�گ%8��ژ/N����/�s\ �E�CY����u��&Y�ӭ���8 �e�Fѥ�&���YRR��e�G�%}:2i�T���}����o,#8�5�cec7�\W�#\�.hK�����*>�9��.N��nm~±,�QDʊ��v8��֚䅾�Y����h�t�Aex�~��
��I�+��yA�5���*
����&��i3�b�5��K9�W�ͱ�����O����OځӘ��f��Jnۂ�X��yvR����{�nl��ɖJ��Z���y��8	7�9O����t\�>|��������$j�N�ɵKG�ѭ'[i�nj��H�:��>��_�w?��d�=�hYĺ'������U۩�u��f,�K֒�Ve5���>�G.��!��M'��b)Wŗ�aZ�R
w�Kkފ�:Vg�S~�(2�h)cy�wK�-���Q7��t`�4�ۃ�d���ٳg�����d�T��k;�꿴��g�2��,�L�+t�J��
��Vi�g�K��F�Pǿ`BZ�._+�	,L�2oLc�}����|���Sw�
���	6Yߛ�{b�:�h:�����1";W1�fbC�M+�(@�Z�Q�Jrѵ��&-5}�3�S����T�l�RR�*)/�FB�h�\�WY‹�V#�Ik��||X�,��
�5�v�h�&/x@v_�B�GX�������n)p��t)��Y&�ʖ<�;���p,BMtQ�6曛���E�U*I"4Rpmcn>��m�R�4�e�K�y��!Uр����Ոk/_���mo�Yu*j���W���Cۛ�u��n,�l�
���t�
2�Z�.}^Z�?�v˟R�
=���4`j��\ef�G+\�5���iPl2Uy﫞#���N�򐞼�<�ۿ)sW��o��M2�֖GT.���ˉ�d��8!6�}���'�*�;=(��U>�J��j���hn�����ȅ�U�v}pyk�:��F�m��6
"��+��ܹoS���F�&N�2O��y��;��)tN/���Ý��U��t�qp�-�-,����q�-�U�

kIxyW=��iw��u��x�x�ʒ�e����UWM��zUa,e���Ma�A�˶�(�t��6jw9��
�4�'��+���9�J�(\�?f[���Ѧ��e?�&w,4�^;�1R�>ﷶ����eQ��vK�F�.r�U��~�Z_��[��Z��H�Pb"#�)ђT����-;�+^O��Z+\����}�	�y�o/+�\�־��=���~�����ƒ��p2j7��$�C�X�yS+�XX���_=�[#����0K1Rt	B-q��4
6��$�ru�u��Q�I���["�3�����z(�F�\Vq�5p%�za�.�|y=T�^}�ZŸ��V��[�������t���"Ҽ Q*�����C`�,`7M���n�hNL��[d>�� �7&}��i|m^�
o�S�̂���l�һ0�&���i/���K����W�S<CE��O?��KgEc�(z��KUD8`^��~]	�B�����a�F����='
>x��؅"7J�`�/�٫%_�k��}<�I�&���.F�ǃ���76��'4�1��|8�W���vICj�u�5Z|p~J_J��3��������N�u�c
y�_���m��
�1kN�m9x����(8��U���T��-�ep2�M�J�D���P�O��eq^�a�J����}��
��XX'��`�rj)�з*i��.�9|�R'I�_Mr8����8F�{B��<��LwD�K��+a��Q@cO�
Jts
#������MA��/8��ο���	Q�1���ӝ��Ĝ�Rn_��bQ(�hړ�ψ� *�n���v��X͎g��2
��$O?<�g��>�t�s�g�b]6��R�m�8�(��c���z��:��8Y?���mId�H.&Z)�^}c2�&�
�)�)����d;����,�����r�s�[�4"��:��d�9���l�z������Uɫi�1d#y��KʻojR��(ȼ9���	I�+�{����}�8�T�ϝ�Ϫ�����;G����!"��M�}�����
�l�g�BZ�z�5��:?�UCK�l�����z@^�x��#���gU�`��c��U���&4�\�)�~(f<=R1��]G(���}]Q��I�ţ�+�֚2�:�Ă[����uX�e���j��k�39
��)���‘����[���E���
�9'~�9@�M�sAz��zY��8��j��.�Ɗ�H���<���r)������xk����v4m_QXs���n$K�[�v�
��j2��4���y�h@��@t�a����p��%�6�=֪�K��{ʷ����q�ƈ���,�9��ę�z�i��c�^B�Ƌ�a8L����/+X�<�;��j��#�ɟ��ys�ʀ��PV�V+Τ�k�Ę�2ֵ���o��S��a_�r��,Z��ĐK�$Oe�ɜ�-_�J7�Z͖���fpQYjN+�[�WѲy���I=,�>���i��(��!����qи��ƌZ��Ҋ�,��%�rZ
∧%��BZҤb���EZd�1MRL�bs���!�-X	�x��e��
߮�+�n�R����%�J2L�i=lŮ��>��bR�������E�;@r
̤ �s��zQ.#
�+R�`�ơ�4����1�_�q�"u��5H9�u���g7���OpwC�A�"r풮8;�x�j�w_�X�	h*cZ�4��L6�j'��*R�T�����2�S(:A��(@�k�)�i8W웼Q<��}NL�@S�2v�X���utsBR�����՚1��3~Nh��d!�M��g9��(��X��v	��(�M�����i�7��|a��U�R���pj�;;��޻�?:Þ��巧R>�^g��^A�]�b�x8�FAxP�j�z�r��p,_�ʾ����T�c%B�O���TL(�D��(�y�"�O�G�y��V�-%�^L+Q�d�ϝzH�Ƹ����ޜiI��8�Yu5��*�6W���1(!��Ph!M�K��b�e������
�Y�N�D�z��F;ȎJ+Њ�i5]���ޞ3Ă:�:Λ�ZfA�E�'�q�et5���m���@�1;��)Y��-��x�H����WNu�w�*u���g�,��H/2
R~����]��t���
5. �at]	�U��U^)�%3NL�isʧ!PFYg�Os�9��gA��;îwx~v�=v��*a�J����I	�_s�����%�^���!��Ax�/:������ɗ_.φ��a��~�j�>��|jOV��w<蝜uN�GuNr��ٺ#�E�`�˰���z{����y�{t��V�:^�pQ�%s(�H�����kQ���0=� �-إ��=�
�
�4����)K�L�%wav�D|E�� ��c8�_]�s�,��kߏ�*	(BH��(�6���F��Չ��<,덃�ŵ�]�eCSZp�{�W鋚�~�4.[8�-h5�e�mB�t��5��)���x)��=v/��]��ZW����K�27m�gݔ;�UW�M���$���r��j/
/V���9�'A6���ŕ��W�v$���!��U.���Ճ�
F�k��d�_:�-`�7��)y�����ۤ"�`E=��&n��-���[��r��R�Yw�\�n��#Dӳ02	��ږvX��DHfk��Њ�{E���b]ǁ^�mڰ#/��Պc�.7�)o���
�t��-����gy1����2hu�6	��E��07�
�z���:��F��f��Ώ2��6h-�����>���
��L׹�:g�g��o;�5�F�;���i��q�w�z��UI�a>�:Q��b�$E�A&>̉�Û�re�fp���_3�����6�ș��b��b@0�6��5�l4V�:�$Zst�r_�z��ʟz�<=qP��0��,_��7uZ�-s�m�U7k�FZ/�i7�4��U6c�
��p6~�n�>��ƥ,�z
�����(���+���8Mëi@�E���bK�$��#�������c3���<D�\����Y)S�!�����FI�%�L���k@Ǩ�
5
���%(�a�#�&c6"[j~6�4z��Y��O�C��v�����h9�v�?�5Ã���=6��	�ά�N�k?��\��`��A/![�'�eP��5��v�� ���H�=�+w�A���Eg�v�?�E��Wa�O����Pf���h���I��,��\4����nh�;�f�|}x(��P64�\��J�R����՚�W��i�{fKiF��71�I/�jF����Cc8���Y_w$o����/
��D��?i#U�����-6\����Բ/_�T:��MZ�>)��`,�I���G�A��r�oW	7��F(ww��;�UHL`�|��3#��:,�$/�ۮ���
dZ�Tnr=8��F���ҿ�x�_��K3rP�j�ڍx���=���i#����5
�T-�Uq�W�q"r�Q�Vd*�E~�@�E�:��Q@�4\�J�Okˍk�"˛f���5��AK}U'��+���γ�U!o�:���R�f�%Fhং���0��@yhw�?|KUg[�I�n'r,�_-�W����t�ݫ< ˏ����I�E�)`���}�d��`�,�G�eÔ�%�
�"(iD>�Ӹv���<(��'�s���[�(���X����ڝ��g:�-_�E�y�0ද���5��-[��)I�����H���^Z�p�B�
���@ /0�'s�t��!��k��UUe�t~�a��!ecO)�N�`^g7Ε�`��Yƒ [�ߚ����a1鱅;��d�;Y.��&s+�Ύt)���9{kK�4�_�L�Zl�O�q���xq}�'�7�M�0����;;�0
g�i��!ql�=����
���^{�aC7�P�o��i5C�6�l@Kh��]4AEս1y��W9}D��\�G4��Z����K�ix��'�`Cb �͂d�>�s�44A8��Lث�Y1�����x଄	&��Z�"֋��)*�i�)yS?͸,i�K��^`��ڰ?��S��*���Z�Ȥ9��J��㞞'���J9��e�f����B�z�C�~��`6����:���7�E��sAe���ӣ&����_��*o�9,އ~�E�t+8a�
�wzTn��nJd@s	 ��#�Pa1^E�pYZ�6���ѤA%Q#
N�b*��izg�&Q+P�-��;D��]e�~�jp�
=��X�ƅ��O�g��\�⽳�w�ċ���!�FW��a���
��Uo�kj>G��=�u��(m�I_=�
��m%�����2�ި�A�F t\��2�.��-�*��VU��`�E����%��\N�B�I���q�pōC�j�R��H�:O�GB�M����]
Sc�ۃwTGa���6�/��QwQ>�ᅦ�T�ן�J�C�B�w���L��Í��G�^��t�SY2ݡ�t�1VGQ�6ng�U�U�X%o�2[{Vh�O������[�X�UV��~Q��S[�$������r�9�ă:�]�Qط�8,w�^���V�a�`����eC��o�݇�Tv���mΥ_ჶ�.d67u���ww۠t��=���y�P0��u��9��*��~ 5p����r4nj�����c��`��\�6�i8��!@���	f�X$�>��x��OgA��Q�F	����:��mX-�;�,�o@���]���/��Z�+ʅ:-�^�k���RP�|7�Oir�vB�+>)�%K�r�1���3�uT���v:�M�� .��ő�d
zoN�j���r�� ���-'�l�W�x�Q�f�5�p���p�1W���VSXT�u?�}or%�u��uv�(��z���AÈ���]x۞3FǥZ����'(08�7ň�Y���np�<�A}Vl��"�i^�p��:�nIk8Z��y�H��j뼖��7�Q��0ÙW�#���E���
4�N?L�R���6��2(ӆ�>LA
�m��i�aU��dN���*ڵ�CeS�����v���f�Vy�z᪊�[͊��0�4�^������K�V�����Y�+��@�h�Q��x�ۄ����n��f��q�qrkg�:�Β�E+���aA%U�pPnX-�
�`G���)��_ͥ���˧�l�<�m'
��{����rdt��%�ĝ��?���kl�羺�檩�kM��(��2㞛�\�W����%��U.�,
Nԥ�}Yq�)���V\��;�T+;�����OU�e��o��=NO[�4�J�N�?`n�1�Y��9���Uw�d�����@a��rV~�Q&Vȋ�M7Xt�A�$��|�����#T9��ɾ��5N��H�j�uf�z��x��,���{�	��M��@��5m��
�t�Q��`�P�=�UR����*���^�b�c��yuu|Eܭv둳t]�P��6:�2=ZyW��0f��^���,N@��u�.��ĭ��jl��Ҋ��K�vAO�J���f���t�ZR��%g����	ݒn�nRTɩ�<�\a<?`Fit���
�(�7?�����׺s(�]��X��ݖ;˿����S�^��Ϲ �ӷ���ȳ���ӯ���ӫ�9U0!ͣL=�O
v�ƽ/�m�/(쥮���������/����.�v!l�����\.�G�\�C��rQ�q�ۗ������p�[0o�o�l�	8C|���p��7�Nw��)4O����b�Vz��O�;N��y��,��q�'��ػ�h�U�>�s����\�lõ��>�`H���헾fo�]��y�K��_}���Ɗ���-֣c�x�7�C�#5Z{A�i#IAj�Q6{Q��n�a���<2,ܻ�e�4E�;�V ~�c�l���l�E�ݖ�W���`߁Cq�i�Dhq��*n<���-ە�ɢ5x�>Q�Q0�ٓCj��M@%��w��S+z�m�-|�mg�v90YD�錌\�	��8y��Ǯ�9mYɽ*kA�Q��QT|o������tM :E�asiَ�-��P�|�w���^�־l��t�%��^д�
*����k�[8��'U2��
�f�����&��k���[�ܟ�߇iX�Υ�f��-mU
�P�@,�Źċ�T	�*?����q�)0�;V0�-i�]�si���$˯��j��澵oܨ�d�I�n��`����,oZ���� ��^a0`���|��0J��6�����
��/�&���J��|]�J��ҋE��R;�#�>�
�e��ʊգ��*�薊��q�%������U�r���[D�}�V�QA[x�xvjnU�
�Z;�%�T���+�t�.�[��sEW�]��WE_Z��mUY�(ThXYqa�f�ƾ�5���wIɚ&��&Si�8�L�Nr��EG'��?����r�@��y�m-=�^�m�R5�A��MW�<no�6�Ї����|�'�Cl�E��]�r�r�����b��A�n�ƫ��@Ƀ:��3n�c������-.�q��-�E�0����Lq�$���GwU�y��"f��@������*2.l��Ɓ�~A�'8=R�������R�-�rZ1��6�)d{4Y���rj��8A�e�jJ|�#AA�!�+xO����A�њ�w81�w�Dh��i�X�ˌO�Y>��;����\pa���:�=*�G�A:�[~�شU�5Xg����f4�G!No����i�r+b����U�]���q@^��̃�$Q�}s��b	�U�
D�aG2ڛ�{�@e"ʹ�ـ�o�8]�[ �w6�un����+a�����x;}���ӏ'i�D�ټ�%�d�
(4/�ўg��“eڦ�]U����N�'ԕ�Q�X��q0e]���ql���(�~����T������,�jsS6�P�j�`��{�1������4��9������2�n���5��_�ރuOA}�m�.��u1�G�����л��~�l]���˺Y�2�h�!���I�Z�u	�'2�'+a9���CA�v�Tú��C�r�T�k�j�Pʗ*7���b�gO
���rmU�Sh��5u��_�6-w�@�@Z�w���]����U<�w��ݒ�P�٥<?��:����+�uR�D�u��%�*����q6�<�{�VAU��=����*��M�VLڔw'�x���I���[�(���#���X
h;곷h ^¾n�q�|��ԵJ+���u����~��`��̳>0 
#n��IL�A}�V��ΝV���`6�����{(�I�ZOo=mAدM��5��Cm��^�&��;�K�;̙�>��;��S:pм6�>�<�P�{v�=�Ix
=ha@͗\��chT��@a/����..��$���^���ƭ��t�z�(QpG��X�.K4ɹ�K����7�>����O�vώ����se�8��s�g�)����c�Çw�����"��aX�i|
���]B��]���b�˲���g\��J*-��$�>3��l)Z�Gl�*a��G�6�u�
��r~��,l��M���*�\Ӥ�+%��v��z��11,1:W8��Ux��Sh�b�@�F���9*1�-c����{���v��I�<��L�+i*U�>��E��Q_�˗ʽ,E������{��'k���_�Gyn���x-ě�s���|�s�{� (6��N���w�~�k�{�OTڡ��F-;4p�ֶ�فC�v#�;����]�So0�=#�y������#��Ӳ6U�)��,R�i!�k��C@}�W`?�EڮM-
��ST����E-G}c���F]+䟽��j��l�l��ZɖK�4�#�e��	Q�I�5����;;��[6��!�5���N��Y彃]�c�V�P�G���O{�zC�筸�p��a_�/
�!#��Z����5m�e�+���$�J��VD�̃�/�{�M�v~��V"���雟[��B�KR걣�z�ق��)���	ՄtAo�k�����b`e���*�2
E>��3%{B��'c�{�s�}�^걻�u�����I-S	O=�U�qG�/N�6GW0�-;��0�FwD�;��7��J��MfS2hp����vq)^�g�,bi�ν����}��f�+jSΪ�'׾#"u2;�����)5�����o.O�����J�*Ң�p�S��n7E�����ܭ���:�Y⦛$� ��&"(����O�����۠��m���V�b������{M���)��F�=h&��}}�S��$q��(T4�:s�Ō��y����JM��j���旘v)E��
�(��������Ʃ))�jE�
7�ʣ��^?Ja��0X�v��b�&�_٨����8sv6j0�gq�"�M����0�)��İ�ll!����`�t����U,��<O����+|T^��Kĩ` ��<8�ՀJxU��7H]�l�^=�@^�&?�/���~m�$_�5k��Z��I���A���L��	���������FM�	/�/f�)�̶Mh��P<���0~4F�g�/>'a���%F�O��l�(�����:�ze�ae�'��쓴<d��X�Q����/v����C�Yn0����f��ܿ�x�G���}�rۭg�/����g�f)oy�Hm����1F��N�Д4����dG�6�(Cz"��v�9ȖN��Jɦ0-3��c�sn�O�kT��E�#��,@�&�\%�>ΠY�뺜h�V~�x��s�J���=��t��IrO&I<��x���	�oDmH��,����r|�&=k�u�g�=��6�x�x�Q�ӛ�K��tߗ���oi'�{h��x<�J�Qj/���,N_V�	�eN%���`]	1rB�h	؁��ɖ:��1�ffȢY0�ŷ�&�O��z�\vx�u�k\���6A~)%R]L�&Q��ݰ�U��lɔ1�c��
P���-��$?�vS���J#�G�����nW_>��*�\�3?�WF�x@9�4ؖ]vw�
~.��!�]�Ϸs|�ڧ���W0��>L6�0�-��s?C��&�
R��r]@���H��&y7x�5	�g�%�(
��kPq�o�*��z-�(oꚳ,�f��l��F���;!f�,�������&��q��ŇC
ю�*�J\-?�؂Ut�j
������a4
�Z�Z��z�߃��S��Q@�ca�8ns!w��P:�1�ܤ+؏�{���đ,���O��$Y/?�1`����E���W;�F����j$���~���3=�������9k�U]]]]]]���	�8z��j�p������d����@(ᜎ�ͭ�(��I��jЮuӞ���2�M�g!2��t�a�#UE�?x����q�Ǩ����J����`ޔ��r���D���������X"�	E�x�ց�����
���LbE��9pr^۸p��ʛve4�};�4g�rbR�K>�YJɨ��B/a��)��A�X�4+D�!���G�Pak	cԪ2~��p���'���ă(�W>����
��C=����opa�<�$����Q�mg���?ye���
��T���m~+1�i��[��t��Q~���`1a��H�
�@=C���xL��1��x5*����V��ṕ�1Jt��
�T�]��׀<��]?~H�O�x��H���gV��\��mX�9	�J�������(V��#8�B�ŔޑqI��lx���=�j��Z�L��|Oӭ�����
�q�d�{|�����(%�ii��ݛSd}�h�,���
��W-���oi�����wO�^�;\.��Z���0x�>�#�����;%�-6�٦g4C�y�`�����܂\w4��Q�7�oԫ��|��F���:oԭuz� J��)6�
ި��ݭ��~�)m�6����V��6�-���Y�nl�ֳMi[@���z�Y�e��o��h��h��m��6;����6�!˔j���o�өe�SMP�Σ�no��q�j�$�:���Z�����%��l��g���	k���N�qZ�*u6�;u�Vv�zr^­ZP�ܪ�Y�^�MlZ���Սjg}�G�6�I���[����Y�E�UlRb��G�����UG�ؔ"z[�~����4%IJ��Fmcs=ۜ�H;~-���8'���vo����d����ZP��ls#u�׷�۽�Ls���۬�v��MI��M���w�,S���������$va��N�)	&���կ�{��MI�^����Hҳ����0$��F]K�f�؜�v��k}NE5G�����{��"~�$S�U|V����;U(��;Z�y���	c#Ӥ�@�^���MJ7[��Fg��qNb�v���j�9	��<�lݭL����k��mRb��F�_��lf��`�Ս��Z�F�9	&�ѫ�?�4%I�V���Q������~}���0ˤ�P�
����%'e��H���G�:R_b��Ĭ!m��~�r���Qڹہ���c�MG�ؤ��>Z�	��Q�4����|�]�4)AH;�j��}T�8)%#���v/ۤ��������ղMJ�}}g;��g��$�~P�[A5ۤ�,�^�m��62�I�o#���j~�II������ԳMJ���[�����l��w��ݫw:�&%�|����?�s�	1�}���u��?��CWX����;����,i=�d��v�����ø��Ŕ{��$R��$��N��ʆI#�.Yս��a���q,�Xg��a��<MF�b\YG �o�w�>�x�5���A�|�{�Q�Uџ�oU�/�������@@���޵�j�����X��@�<��S�*��-+�O��_e5wNn��˫�EI���z����`��I�X+�^��ax9"{��;������z�\�4�
��tЙ�=�����p>���~0Ƨ�E%�����p>ˍž
\,i`���`60&��Ӏ^PeI��p8�QK�
�\a��(��r���l�H9&�!+
L1����B�~�"��DK�n �th��ݘ��{1�`�����,�@H㭐!�Y��5�Ò��Dr����AC$���;��zU`)���G
��+�.zQop�d������	�t��	�C�%������
N#��u�J����_$�p�d�к��O�(�Ϯ����ht�ޠ� ��N��Ɯ򢈦�k�n������_N�~{z�s�E�{���^7������W�[��ы��;8~_�[����Z'�g�����S���{������;9e�7o����~zp�j6�J�y|x���e���I+G��P�uR�A����K��qz�~<o5[�i����1����4w�������N��w�oO����yvxt�|�xQ��aD���^ٳ̝�r�8E��)��
v�<x~��h�/�����F�u��J�����&��h�\NߗD�g��S:8b/�`�-�Z��;m�A�
g���w�{ur��|�8��y�8�cG'g��wg�R��A��.SP?w�$�5�[���wo[͓�",�/����� ��T�F'��S���~y݀杻O����0v�2��x��VNϑ7^5_5�Xz����<ka��gX�I���Ø�hʸDU��4�Dɚ/������K�dB(;|-�]��Zu�{A�1n�~�|�~�V�'�W����d8��M�N��]U cr��싲�Wq<x�-hY���G�}|b~��*���fP��x��B����΃��L��l�Sp�g}�kZ����Q0�>Aw��vO�%}��,�{�������
r���lļ�є���$`,I�]C>}�pN�
��ꠋO�{�d�,i��H2�r@4�|>遼1��o��^���fQ��t�^T�m-��.R�[>��J��5I�F���f��]�u�-)WХW9�O�Ui�d|kgj��]��*wEs��p��O��H6�`Cf;9$od��ڲ�Ac�	��-���V�$�����ڬ�"k0��-l\�f���x�gM�� � �U:j�n�q^�%*�	�;Lf/�`oY�c����������Z�a����dso�z�,���-�u2#�Xj�l���/�s
`�Ձ�m��K�Żɴ�X|'�o^�wR4�o%���LW�t��Xu@ɹ��/��_����?�1ܠ�Q�ao;Z����\�j�]���bs��~�a��z���D-�X�V���s�-����������ݥ�bw
:�y~����W�yI.31�ujώ����Fu�T��z����E�*<�m2�pjv"VG2���Y;Wd�|PV����U�8튒>�+���SLն��/�MB��'�8�^��`P�?t}&�����uQ��$
v�1\[ŰE���#�r�6v����	YtI�T�P?31�FG ��
`��G���K��e���!2T6��e�F�He@�7vw�W�w�.�0%:8�UDw��I�G��X
��e2+/r9�e�@F�Z�e=k��:�U�"�����
��=# �o�ֳ���B;��}�R/%�ο-gQ�?�s�<҉�g�3���T��`zdS�-0K�	cY���:1��K����$>ās����% ,nP�ȉK��z�	����.�]@�ߘ�	��}5�#4�M+U�<��[�L��e�$nd���;c��f䔜�~_X����/�6�&o��sO�58��
���D>b,<x�$~����l�����"u~k��s�c�;���p_��5!9�u��#�bW�,S3o^&�؁���E�ӧ���;��.&ޝ�TȬ�N
p�!k`��C�"�ѓ	}�Np컓��$K`8n@N��
%�J߰Q�6m_&��y{�y��ɓ�=�m��-e��Ce�:�L/q�y���\<�q��3�;�����'��L��{�$1%��&�)��e`�~ m�I-Bb���@u��o�
�EH�Db�%&�
f|�Eu\
���vi,\K�d�I1�9o��W[�=�s&���ˢٰ�*u�^JJ#�BC����hYtH�V%uե�e���h����KQ�8�Q�'e�����v���\��Dx�l6�3^6=L�RqXcZ �R��D�%�w�4҈�S�Q�yg9�y��&� m�~�9�Ԁ1��=����c{��Ȉ&\�5���٪�/�Ԇ�%��!�|�IDM���" `)ĸI5�#):�v�w{�q���˔l/S֯�������Q{ߞ�i�N����z�.ɜ�2�j��D�B�_��(;�,��7��*�OO�4�i{�/R�U$0�ۤ��{!��n���ND�C8Ľ�%���f��z�|���m룷���m�hkݥGVj�r���U���s���:C>�n1�J/�^��O���i5(�#֨��@��G=}�V��YO����1���V�qzzr�56�j�6[��VZ����#�����=k�y�1�!ު��š/1���іT|��*֗U�q֩��uT~�|a��ᩮ�
��K"�п���.�r�H����w��v�̲�-��v���ܟy�e�@���0.YQ�E�����V�U�?�_�c:�ܔ�����b�����z=�������ǟ�ϰ����V�fX�w�߷n��5O�ۇ'/���9����N��n>�;��N���0^�$��頱=%�sZ��R�hG�]��)�Uc��Yw3\�5i6�h���~�b_�c8{ɚ����
�
�	��EL|*N�,e^��99]%��0Y�<�ɢV�q�^q���*��pJ�|p�pqڀi���W�*Lf���ie�|��]���:��ŭ������Y@M�%0��6�k�dJ<h�Om�W1����3�����^�\r�����ժv��c)���	1D
�ef5�jt��h�<m��k(gs"`g���QǛ��EƉ��&Œ7,Z��u��=��F�ϭ��Z�#SC,�=i/d�G�X��*J�����I�TC��рė�K�ĿR�hX���CE����v��KD���]��3�Q�z�g�U
W7RQ?`�HH�O����U*���S��-�"I��2�)q���A�-*C���Ut|�!��נ�h���}��=�Q��SsD��-���=�O<�ޫT����*��e8��vw<[�ߝ]Χx=u�/�Q��>zE�*QZ!wyH�-��V�R/��v/E������A�q�b�/�[r:���u�#ś��C6ŒY<�����*cV,�`���(�&�ZV5�I���x��h˓~��Wq�N��e�y�+�R�1Wp�@��-��'�]Q֞`\R��a�YR_�~5~(Ø������/��{���2+�V�L���I�c�J�'�.�|�O(��$��0�t��Xx�7[�^����V�d"ZEX�{a7�������]��}=ߎ_a�#��;6�6WZ�S7'&��f���~u`�~܋A}���K����� Ҥۓ)���N�z.�&3���W�^,s�i!=?5���W�d��[��kL"
C��9�Upw���&�w�ot���T�}M+�����DZ��S�jwSL����KG��$�L0�b�Ǹ�Z�*9��<%٣<Bj�5�K�\t��]@�4���)R��+��������M�� )rJ�p�xg�p�����61��%������|%�Ĉ�jwgho3�	�
����T��i0p��!�E��#�I6��#	�n������Z���Ĭ��=���?��v����H<�	��4T�p������c?�<{�����=�O�)�12\IL��g��t�<���P��f�634����
�i����?��9������"֘Þ�")Ɓ\¥�]O%-���
���
o��ѓW�`�gf�&��H��|����R������T����T��>V�8��V_fN�X1��fno�P�m�BT�W@*�F�	��i��$`\�x䉕�=�]4�`���6
GS�q+�wd�0�<�4�5,�
8j+U˭i��&dM�o�cOS�iT�����.d��0��|��OhΧF��X3�4ᏏK���KƲ��z�L�ܸ�f֨_������Xĕ�%)h
~cY����3�"����2��臃yr|Y�،w~�.%(�.x��]*&1�W�\j6ED��<���j�icZ��0��"�D7�^nCт�3�XKȥ�d�F�:���ִtPbEG�l�$1A���ٔZ�8�Kc�"J�kWVu~i�#�@�q�[&2k��Y+���#t�9"&d4��]`ޫ%$q#�)�I�f�1.����j��@�6�:��FuC��U��V9��~�5�lP�%xM���g]]v-�M��S?|}�u�(�	i�*ǭ��6$��W%L
�t��n:m����'/���57�t�L%>��j���2oA�t�lD����M�~�:I~9j�C DT�޿m��p�=ofL��x�ί ċ}k�n���Tε�35�2����]�����1�Lyn`���%�u���C썢ȱ�'��@�_�s8&�7�թ��l��!�q�G3���Ȕ�f����]T^z.f
c��߇��q�y=Lvh�ы��I5M�2����d'�;d�@�.�i�����vw%���VW��|�.�LLI�z�w� �]�m<�g��(��s*�Q1�S�s�4��{���f76�v$z�=`��%y!�Y�ڞG�T�*�[\��Z�>�V�:m��q~����&S��.Զ关���50�-	8�"�$3ʾn��y�\�0�$��!$�<��MJ�Խt��ܘ��-O1X�{bf0�"ߡ�	�����9f��6焆̡�$�+�S�k0�l��4�@:c)�Ԟx�*��dY���>�oݶF?Yw�w�/05lP�tƸv���d$��S�c����L^�L$����8����&.�={��A�ʊ�����
��.�Gݔb�&(Tփ�cO����nKo�=��Ϡ�X9�gIqT�=��8�m�o�%ƅ��N�]vn�6���D=�P���N�@+#��i��X��Kch^�R�^v�_�T/���9���TEg�j�i+P���ڭ^���Ka�r����p�f7
��X�9��K���I0	��l>�
�y�WD�s�����/R�M��>�@�s�E�{�t��#%�1��
Q�����</���%-�O�W+�2�Z�#U*]�=b>�pƢf���=c6@Y�/�ӡ�i���N�Q�gҔhdƝ��c����'�2*��9�Z�>F�m�B_�o�,��.�!�0�ÖFgu��FȰ��Tf���0��4�)�����&��	ʇ&��aaI�w
�Lw�q�))xړ�p�W:^�9�٧#1�V@�y^J~�㴥p��_�݂���-�_�@������kgW>z+��G�#ʙ�z�T~���AGCa~v��q���8���j�9 6��B��'K	�;vڲ�o��h���{��
�a|�����^���"n[!����z����^)�Ӣ!jf0T�+�{,
vQf��nk��0�p��L'��5�{�8�O�"��ڧ���+����f�Q>��}����y\�US�%>�>�|y�<j��+�^���bLwE���D�lL[=.�a3�4�p,0�HH�_���4i�W�����G$�J��K�|#]��7�D����v�;1{�W�Xg���<��C*)q���b��SVe���*<4�~�X�� �r=3��JeX��d,Y6�ht!��Ŀ(�ͻ�}��=�:�Y1�"�Έ�p���@�Pr_.
�S{T7�μߧ�IM<t?`k��؎x����@��D|�U�߫�o�
�8d�B��]9o��'��8�_^V� tI8@�_�X������
���XM�8܌��j"�2I���m-��󩓔fȿf鄏kQ�@�0o���M���ژ*>�^g"�uF��%�i��hˠ
��&����A�I���<� �k/h��PY��W(�x�$����-ȹJ)e�����$�׸�O��9�8bӘP�2et A��@&ų��K7f
�5~2��v�Ė ������9��	��U���`�9�7�6�L����uv�����{\�M��^<ĩ&ʅ��~�c�\I�%��c�h'��}�œ�$bnC�0���IK��|�<�G��L��0�\�D�����n�p�A��hWT��㑡;i����%t�´ZW��@ת�0�����uٍd�>�HJn�#��	M�����6��:{�K�w�0��mD��H��ָ���Ӡ�`«kF��ǝ�bn����e��Y� %t�'����u	i�o�l�Ԍ>�;�H����/�i:�Q$D�5�3�L���ך���ߍC�^�J�Q�6ƶ%p�m_dMg2��=!�� L��52@$ϲG��j]Ţ���c:�
[�VH6+��c=W���o�.D�>GӢ�iѓ�ƒ�z0�YtJ�OX�Z}BݴNѸ�[z�YP=�nȊ�
�9����iH��#��A0��i��#�;�!��˯ltIB��l:�2���M���3��^�>�"�"6�Io�x��f�涀v�yI�	_���1���&��rK��&k���Kj�ޜ���Z��ho�6��Qa�����6�2��-1�O5�_b~���R9��yd��l�ޮ�i��"��:
�)h��]�9P�O��F���;����ޟX�U~_�1^��wW~���fi��|�[$�s�5����umY�d0<��΅
0xyO)_2�h�\.b���x�)�h��P��q�9��ՠM�X��E���vHK�����F�i����p?���Y��b�z�$�؟�*K���'5i~gS|П�E�M�"C_F�bR�2�Æ�%t��~J��΃����'%�R��$�`,-j�o޾l5�U�HՋ�4�>oWL��5�mL}BΞ�ф��*����my�;��o�%61�����%D��	�OF���ϋ0,�)�#/!Iz�
ƃY\��1�[_�.ʼL���=�p�3=���M"ל�)E�6��*KRҞ��$��u���i�8o�Ϗ?�=ΩF������Fe��+ZD��M(�2^�Y�Z��m
��0����Sf�Ӄßڧ''�e\N{tPi‘�x�by^����5{�a�8��ME�ӑ�B]�A���G�Eh$�o��2y^��Q�T�<x�8HJ���
���b�~�t~��4��<"G9(��}�SP�i����mAi�9�C��.�i���p������|�n��z!��L��MwGʬl��
�B�~��Z[��5�^���o7�
���M��9�_6P���4RBg��f�V�C��Ÿ���G��q�/h�vu�:p�hO+���C?�ʗj��LՌ�S�~�q{�����>�
鴩���q��лd�_�����p�ܶ9�2���i�l|G��o��3/�]˷n�{�O�����]�S��q6�`�����0vW�YW�?4��7"�PՊ~eiF�h�d�ub-c��ݰ���|���2�z�X���Y&G����Ҕ���NU+��-\���j�����H昑Sܗ[���.��h��b�LH���ˑ����C�n7O��c�N��ƣ�,�@5�����~��5��_�.��Ӽ��^�p��e�I��4X�z�6�JR��WFҡ���v�^F~!Tx����b��Ӭ�~fi՞~C3Ԇi6
?�6�׭��/�J����,�&�ɚ�$+�7����8�����:^��j%G,���T�b�T:��e��li�ˡF|��p�L���>Fir`djC�)��i��Ը4>��iUH��L�b"�Ck��x�Jh����Y5���?��B�2H�F9W@�\C��E�W�p�9JRp��lƥa"݁���D�>;�iP��	.dk�BS���r��R-��*���� ��o�U��2�2�{�4�����V���^�����g�{�vw)ua�%3�2�h����iGeJ+��~���kD0�T"���bs����o=&j׫���jm�^�{AD!4D�F�%�v˂ϳ`L���%��ft󱀊]fW��(��/A��|/e>p4��c|w�f`T�i/���G�9�S�T��u�Vн���rD�9��T�G�8a���l�#�?��e�����zW��d�R���.'jWxu���2��!^汝^^	�+8���S�҃oP͑>��	�3����3�fڱ
����1�T�L���[?*�p۾���M��W._9�c��n�D}����"O�Q�
��?�)�8FƟ�}{:�a�9��
�+�y6���������=~�2{�p���),�?��uaJ��:�[džU����L�����\����9�V�W�Ѵ2�����
n�\�W�@����מ�O�]T��C!׶��P��f�+����6Z����3|6)�S<Z�v���m��W��
�eŐ���l�P���;=h����a�>�	�蚋��0	8�"�^arU�P��%Z�fUZ~�N�343CC�q����]&o�
6.᪂|�R+��?h?�U�;�*U�;+���ښ������%u�*
��	_����z
Yy��Q0���;F��I���ܽ�]Yv��4i|�O��Z��[���_��q�K:+�r9zG`�a/8�r"�;���P���{�F��{�v8��,g�{�r���IR{�ž�e��=(C�`*�d���=a�A��=�K��Ro�\7A(�9����d�*�A(�wB�8@�q/�)�2�q��d:�2oNaDk��S��6��M��n�!RH��y���D��WYX��X:���D���(�M\B-�l,�	�H��a����^,1Ѱd`�Z��3���tCFdy '��;�IfE�\�bq��=rF��$^,I wO�>j�"�6x�p��(�����~�~����R^}Z�PY����r��6w�=��ԐkN��=�����`@�lȮ�xO؍�=�Q�*+�[*̀�wQ���d��l�*�]�� ��pB��e����aQ�'۬�=��}�5��u�ɷ2����E�/����_��+�ɻ�9�B�O���Y��[�ַ�:�����ZI9�qb�tpy5c^���0�5��M��i��G���4���#`)�v�g�4(C���uA��S䷬�$>��p1\6�bSa�;�=Ĝa����;v���Q�ar�){����<�hЅKw���^������*4��T�B�2muy���"p��'�Zy���������ܧ4SҔ%g�{b,�v��Ҕ�#�!p��*�'}~ܓv�|~���޲w'�4x�ޠ���GO�q|�&����_�$����4��P�㡤���M�Ls�
�/[�Oj�w	o*��g\��X�@�^Y��j� W�(�(�´S0�G�-�k�Tz�p:�O�b[L�@Ѯ�zQG�S�:H~!�������J��\R)�����?�8����H
yjG�prqQЛv���/�3��R�����#�0q	���h�qP�؎Dm|��h|3��ŏ˜�gj�_�s	a�m��\ӑ��*�m�\k��]{�d�Q5&U�a%Z�ϧL�qeS�l*~>�@�Mō�cpS�/Ï�	��?�U&�d�PV�dCLv���X�2r�/__ـk�o���#�B(��bߍ0�SO�N	e�Q[�ί1�><t?��R���8dzB�!B��V�`�ۼݷ��yXn>�GW��
���IM�Q+���*�Ȕ����1�p01���a��*�#i
�`Q�o�� ���MQ��@�Z32Ef>�
���k&�r�=˴w�݀��3�z*��1LZ�
pP*-��b\�;��`,�p��������o�*����`֫T3�3��_)��aB�:�������$'�g����sq���!�8n����܇s9����!��|�G����{P-�J�$_�|:��J�OVȗ�z�sF#��u䚝 �;�2�1Ði�"b'��
�D���T��GI�����S�H�
���s��A�2	$lTT�� *ޙ}$uͣH=�Ox�~Bޯ�`�u���.J~��P
����'4��h��U�(��F��!�9@	%*.\�ga{��cU�y�ͲY�ox%*6ˌ�Ǖ/4�m��ހ����E���A��x*��qrm��q�0�m�e��W� W}\Z�q0ԡ�@/��^t�}�'A$��R�	�����¶�~FO��Vy='c�vh��a�s�pq�T�y� E�p���S 6^�4+ExN�S%��$�T�b#�hHU�5FX��B
-/�����{#)�Ee勠��|*�24�Pl�߇���]˺:|s�axa!>��Yz��4ΘM��˷�[0��t��A�������B��L�.G�W�p���4�>O�����3�R�����@�,���vsz�)��4hç�-� ]ag�~e��5�XCs�5���WPՈ���nX�%<
3����dq^��S�Ѷ�l�����t�$o��UG슨�D�-T-+
NW���D;����GK/T�ǰ�x��'o��c�/_�/qK����R��QT����p1�M�xy�wAJ�(tU&*s
s�0�A���ѽk\Z�XO1A�@�e�>�/@iA>�K���
��~�j��n��~6�k��p+��i�0��N.�T%�v.	e�ʏq?`�33�s��JHnz(���C�)߹=�
fDjP�f4Q&JV�K���@�a��}�d��ES��j�G���iУ`+ic#B�-je�ؑi�F7��c5�0��0��1�5d������J� 
X��@
؎T��U��C|�:�K	�`Ή��cfd�۝G%n��mtm�Jy���O搎��h�|'�z������6Ϥ��w@�7
Cu���C�]8�4�I�#�NT,,R�.��.���яT7c�O�#�Q8Q*���ܧT���)6
|�QH]�d9MB�Y���M����*EZcT�i��P'G�`d-���3��7V�*�c��w�q �
߭��eK��[�_d��1�> ~�C=��l
`�n��2i�a
��€vbn)U'�H�/rR��7l7�:3�j��p6��ݏphZ�5W��
j����S_���,I%�\)��7����Qa�zA��_#xdÛp�򘶃@��������q���ψ	��VԉS�pp�<8k��sXN^�ֈ����	��_UϮ�R�P�-�'�Qi���r
�d`T�8-�V�%p�L��\��S:�)�ĺ)�Cڇ_�n�YKB./��L;�*TGO��UE�+�
9�Y�������щ`
�����D-b��V��YW-�ذ��L\�J��j儂����\M)HX�8(�~QO��	��vi>�Y�!�R�f��P���_�cq�šW>��y+_�Kb�u�����m�{���W�ŧ~��<d�(��]���Z|�3�/�м��]����������z,����C��F���k���=xo8�S�~6?/�8���*=��y���|_�3�!�oʗ�ػ�0�1~J2��u��3a�HL�?��h�O��OYğ��e���*0���ws|V�ws%����h�������U0��Lc
 �(*�b~m
ȋ�����Ą
��j�V�t*�!Y�BV��|�'�.Z�˗�u�a����h���Ⱦ�̓�sX�b�e`,@�%�ƿ��,u' �Q�!RI����ʿ,�����c���9��f"qX�@�Br�鋘��l���}��,bJO�S�񂈘0B�9��oq�z��{�Ѥ��J���6 o��-�3��1�`�M.O�5ױ&�b�aM�˄f�� �4d%WD��ǃ�~zP��O��|��lM�j���O�I�څ���-&�Y�3GR�Ma��|ȗ�g!TS-�C�w9��P󆅻�	�t�,,Şb17�(.��9��
ײ/��m1N��0������uK�4b�e���������
~Wl�}����%G��i�rnė�g�^�]c�5���hM04T�K�k�$z4���c�@�$�D��X�G�%�N:���Ӡ'����yHL&9(G,�d�'m:�K�'�R�C�2��e�0	�%��[}.��j�95�[���E͋��
_��r& ��DK4ԣ��}��VNK5�*�AK�L�U6��Ū�B
ІG������걬�9Z���n3��ڡ��^�غkM�`��D�&�ܩ�_tc��+fN�ْW5�6u���R�����Ću�y��,���V�?�#�
�p�+�� ��
��K -��m\��I>`�pEܷ��Y�V��|�=&�bU{��!Q�T�D�Y����P�p.=:��x�ۮI��8���.R��)�p�CAe�=J�
G�'pt����Oo8U�3�	��l�y��x�M��Z�o�t��?s�h�3�
e�へpxH��!�{8�1}��(�xQ����H��G�jO<�_b��ǩ(�Y��a�: ��|H�0��R*c\E������+Q�6�
,qi��(^��<T�N�Y!b�0d~g��ò9���.0����t�R|���x�v�K���PO�Ui$�D(���rt5���w�EEP��L���
5}m|��-�{�M�-�y�\����Sb1z�r$R�,�r)#�3j��r{a�#�ևU��lKB�t8�m��(��J��N�;���b���9�ԥ��f?�a�j�l�1iV�B�A�j!��Tܸ����[Z���C�8�<c�A���r!�@�`b+Nfy�t�:ᣒh-̼LzN�P�V,��5�XK�52�$��l�Zl��t$���!�٦ߧ1�2��8��G���ˋ�]�#�ᓄ��>Sz0 5�����sB�N@'V�r��.%�oͮ�Wp��E�8�W�9�*O��1���A��L��oL2m+ĺ4��noo2&�IN �Z��I��p��|u^��mo��w8�`%��D�O��HB 
���kg���l��Xd�ޓu�F�6��I���O=�bl7dr���7�x�i���#�A����B"h=�D
ओ1_F�O.1����+�6�0�y��JS�]=��A�
~|d[vQ~>Hr$�]��|9���$�,���u��"���b�� ��N���@��h�Ǜ���1�0��01Q���Y�"�PLln(Z���O�c��sd*�E�/��ȟ|��e>z�MЬ�V�t[��c.��Bk+�ì�X�dK�2*�,���>�PX8�����"j���ezC��b���v����Ī�Iڽ��98n�l���"W
#>\l���=�G�s��ȸs�Eڎ/$2��r8q���yb���i��-�x�2+����g�������i�X9�4fEM��(��r�XX�f�gC�ݲS/Gp�I��#�?��i0�D�z
��3z�로ݥR
h�bqi?���3-L��VX�!��(@�qE�.��ܲ���1�d�?ր�Ј|�>c�]�ӏ�Ek0f�p��^�(T���=̧�6��51P��u����Uj�G��c�yAc&&�O��7緇D�W4���s1��
kOT�l���(M4���,�τ�R}l�c���А�lc��E�ϩ)9h��ަ}�HŘ��j�O��1Ҁ0��w�Bk�-��qZᄲD7�j�,�Lѯ��^�(��j�����!S
�U���'4^㖁�d�)���I�;)�D�ui+DŽ/�N�%z��?��Mm�
���Z�CG2���j� �6a��-2�}�Z�I����;.F-�1+a��ǔz�EĠ�5�a�y�<���,c�g�ؑ=��-o��3���Vv�ϡe� �a���)���q�Q�Pؑ��O�ŒLͩt�i>�f�$�b�f+mg��(z�yV]��$f���e$QP�]ь��������
�Nb-	wl�}S��0-�um!�vk<8}�s܃M�d��h�G6��2?���ʑc̥Q�x��q2
r,��
q͑��(+,]��.',�������W��%)��
6C.�na���
몈��聹��1�)�e��EiI��'2�]~�1H��_&N���vj�a�$o��0�����A##!��"�����sʆ��+e��k�m"z�J�/�Y��ͮG_�i�D��+M�&��9oTק=���[S5�Y�ED����e%Y^t��=%��0c �6�+�|�yi�}�a�j���J�r��
 ��((rR�����v�d�_k���<�yǥ�Bi����.��e��Pq��!L[�Ր�E�B\u6Tj1��q­@���Ɨ��m�S���|� ����އ��Tx�9
�.Z,@��m�`$OM����h��#ѯ��fI�ׁ����j�&J5S&��Z������=��5x��<��jrP�H��s##��|�9� ��9c�+Q��|�-�4�	�Q�/\!���O��ʊs�:5@��v��j����_ɀ�{����hp�K����3�[Ӥ�mȎ�?�f 5A�D���,��ABO�S�Z,S(�r4t|L���у�P,<)�,�q�
>��G=�Yk�����A
�r<��\֤��;��3�.��Qt���r׏��qآ1k'b���'v��N�q7pq8����6�H����:��:���ʼn���K#�Uٕv����'��iiJ�X��K�{[ �K��	 }��rP[\t�|U�~�.2�����jIV�:_a��?�Ǽ��p�kk�||�q)�⊤L�L١%b!�D��B�<9�����k8F�0҃�#"M>�>o���wT1j�M�Mkpm^I•�x�+nR����v�=��>o=8kE����OZ7���7
\�B���4�-���p�����Te���]��T�-V�[�F����;2!��A��06� ���{�8q�0u��։�$����4zr��!�J�hT�E����r1��Z}#b&oѤ^Yݛ���?��]���z�'@�@�2� ���R��7-�o^[6�����fQ{�K�}S�S8\�ǒ�I,ɆR�C�Lj�����Jj`���C�-X'�Y.9�9IOb;ơ�5l���:����%��o$�۸.����t���苳`����K���fV�[f�iL�dCi�/5x�,��"�2�+i�y��㳖��cxy. ��C
�l��F/j����S@����]��B�C�a�8���[�G��HL\�W�ۧ��0E�����<"c��`��S��{�%��1k���f�>�D$�q;�F�5���V�
η0@����D�؍[Qo��ig+��ai�x�H{�����mw�AS�������'fC�#+	
a<��&鼢I���y�{�0�G���ȍ�o#���I��٧�eB��1�X�zi��(#�me�o�]dKLc��\B8~1q��&»�k��8�L	����H�ؤ�!_���6ٙՅ����X*��5a��TJ[bC�8g���w�hj#��c��'�@���ʃϓ3�D<n� "K�c����b�%�@=���b������,A?���eRЁ��%���%�&,�b3�{��$of������솷�0�O:D.G(+�:Տs[a�Vh�=����"�A�`
R���L+����,J �B�9F@\�^�Њ^Ҋ�%1�7��J�+S��yF�a4����Ć�?��L��sB�:\$��0�W��B!EC'F���
�~���kt �K��.5���%�TvR"
���d��E���Ş���֤:�:�v�pб�bʐ9������n�z�7���T�-�IyQd5�@�_�h*�r��4�6AKg��o�#��CQ���*7�`�K�
�rE�`$-��x�^�%�����+��ԥ�<�:™_�~�z�m]�yWl��ӌ�
�;���us�4~��o)�Z�vc$O<d)�'�(�iq�EC8�9.�Ѵ�o!a��%f���K�*z��ͥ�^l��T�e$^v��F������8'�4fz�f<I��Wje�����Ly���Cu(�3)�㿁���m"��|��xt�Y�^���ͧA.��Z�@�x���~�d�*x�s�ZA�Ee�R�6�m\tܦHe�2ܾTfQ�jI�82�����0���7��'֐��V��ĄN@��8���L���gA'�ȸ�"H����A�\#Oy	�(�ǭe);�‚���٦Ȟ.��~,�Sl4,�5�%���e�՝$�W�%WW���1o/�b�t9����U�R-�C���5�C����bR��n���x��)j�w�;��]��v�9�p�ƚ3�lo70J�wY���b�c#Z�s�	�(S&�x�j�w�
��k� j�z�l+hX��+�;i�H����ƛar�G�xC-����kł����uEyQ���8iN|hV�g�h���ě藯�q�k¿�ېǒ�+�e0���{i��:�?�-ј(��#�#K:�Љ�Z'n�@�}�x��.Vw�Vt1�K�L�q��D�����S��K�"*3"d��V.�I�$i!���Wv�2�7e�a�f�	�V�3���rj�n�DL��
�ez��������+a���ϩ���T���8�ҩ%�[%�IDm�WbN�bi1ӷXZ�ds�Hۙ�~p�p�`�+��F=��S�Q�-�2��d�Q�,�O57��9�y�����H�w�����k�*�C1-&�l`}�6jl���W�cP/h��!�h�}
Sc�,�H_l:u��ޤ�uM+�:(�nlG�B�`�V'I�p#H�YN����[Ğ���_&��non��bK�(P���5�F���H��S1U����J;��C�K�o@�C+��7B�~�n.��_w_�9;���g��l��McN�p>�*z% �ĥ_��s2
>
�9�8�g�2�r(M����Ȏ�}" ��_"L�Qx��`�7b6�#����/q�A�����CEPX�a��ۈJф�دAw�p�o�j��=�em ���6��r.��E�c�b��e�D21�蝉0)�m��x�����S�.�j��*+�B2=)�О���Mp�S�>��P��ƅ�k$#h#DL츇y�;!+�p��—�zHn�L{�g7]a�A�c"ۄ_`�Ƣ`�O�Z�\���@G���8�e44��w�?�Q'(����m�'���+�&����Wg���K�o���8
ڽ`2�C�����0�0�,����õU��a����~��;�G���?�)p�U��~e�P�?{��Ƭ�
_��l�� z=��R��쫾̓MAl�aP�|5�!b����O4U_�Ϣ ��H6���@�-��d��Wq����f*h@�?�$�Y��{�ӄJ�bXէ�w��a���Jo�|BQ�Xj���,�����i�U�:�D��i�P�����aE~X�ʫV�\ҏA������y�����V>�^TP��^}5`=�^]�[�ၯ��`t�Ɏ��V��y��g���|ۋ��H�xޤ��i��
=�Q��A$�q
��.�����Ҏ��1I�;�p�$��X�E�`PGp���$n��[��?F�o<A���pW�b��k��4�8�S����dQ�-�ޛh-H�E-�w���{0���T@�S4�.�QA�>я�u2�?n%�xs\Iy)u�x��ょ�!���bO)JaU���"�*W�94��,���%�&���R�%�������Bѹ���ʂ'a�BĞ�s1To����J\��{�h��g���$U��Iʰ�M�+�Q�L.	�
*��y<c-oU�n��i��kc*0f�bf�"3U�]y�0�8�L�B��*�P$򩰛w1W0��(������L#����1���@
L	�D����A>r���6�!Q�
,����0�B��yF���էp�V�~��xa��ي�=��f*��<�������h�K�0	m�=k��M9��"(r���J�������^Օ	�ż#l1���l�)��d�������`��/�P���,u�bdG�,�'�K*��ӹ�2�%T!)��]�� �Z�A�����nS@!A{�
��'��R�*��Ԓa!�y,����w�Rn�D��!I�P�0F��eᦲ8�p��� ��=fg"Z	����G?	�7�H���V�.y��I^�.E�v��ӂX+B�ӝ���c�Yl��Rkzc]酣�l���M�KD� �����׿���������D��Dchecksums.yaml.gz0000444000000000000000000000044414554465534014625 0ustar00wheelwheel00000000000000�\k�ee�+�@�a?��
���:�$�i���i���ח����+�}<�ϟ�]����ss�l�\��w(A�4u�1�9� �Q�N�ݥ�w���l���g�ti�	�mv�B8Cz�f����D��H�iچ��שH�9���iȽv樎y� D$,L*(�$2'�UѺ	�y��*��a�@��
r��]�涅,�$������N�^܌�T�ReWO��&dtt�mZH#�J�.�	Avo���(��,�<��jX/ĭV71�i���5�PK:H[�"����share/gems/cache/rack-3.0.8.gemnu�[���metadata.gz0000444000000000000000000000230414442217575013450 0ustar00wheelwheel00000000000000�}�d�X[O�F~����%���-!me�Q	Y$B�>�����=ݹ�saY��o��,��]����9gf�s�s>�1��b���7(]v
2ˮ(����q�"E%d��r݂�(�&�ԩ"B6F/�Y�]���H��DԻZ�E19Z��Kn�TPi�{n �
�7��Q	��eM9n�˯��_ijo⯏�l��?���1h@1P%���1�7�kD�y)���CA�D�rS�^=��x��������Y����ڄ��d��n� ���-��5�U*,<=߂�`��XǕ�9�aٹ����W��#�4���ƾ�	0��߆��%|��G�f`K��
�@�+A�Y�rT�6I���yA
���h�h!�p�,h	��=�VP�4�qm��K��5YT�y{ss��Mʶ��
�CX�Z�\6
Ȋ�I���x��x�3���[Dž���˳��M,��Aja�nV�,�9��z�V�gHn�ȗ�:.��p�^�`�UpZch,��H�a�H�L"����`��n��O��"��ҷ��l�;*�`�hhn�.�� ���y7O$��'o�/N���O��7Wg��9�h%�5O�����M|~v2��������$~�HIL��)
�"��E��Kk���6}V�l
jy9�`�ڱ�Ӥ��ܣUZ��G�P̽�c0���l�㥸[�6
CImI�GY{�6�j)�]U�}4ҳpwppW�����B�(���k��T���п*��#d���h3�8:D�-a'��hhVe"����+9�Q	OY�t��^���lJ.G��A�O�T��z�P��X�n�<�@��������n�o��H�|"�1]���0�5��r#y{��|*(;�a`�o*���\5~��+7N�E�0ᜭ�
ip	�гSZ�AΏ4�5{�ل30���荐�
qF
��Gr��ZBC+$�s��Ҵ�E����6�$�T�0#���GX�8�
���U:�L�
߿Sʭ�D�2|�S&���E�M�8�T�5t��=iG��F���:�j��]9�3Z{SB^jO#��8,�
֪kC̢v��.��l�����`a��,��=���kȾ�����ks�ar�̶AT �$�m
"6���~Y^)$<��Yd����(�^Jj�9�����8�cL��b�S�p�_�u:�(data.tar.gz0000444000000000000000000031257414442217575013403 0ustar00wheelwheel00000000000000�}�d��vٕ6��QT�-2��M��L�)���DIY�_�"@�$GHAU�V��?�{ܫ=�I�z�7�'���%��]]��U�L"��7��^���nO��+����t���#��������t�[�����[�{�{�~gko�A���yf���qM�i�������Qp4�Q4IG���d$i�&Q���H�b�,K��EpS�^�|%E4�D��I�^��2L�4	����4,��z��<��p0��8M���&Q�GA
�,J�Q��(��n����E1�67o�K�7����t3J6�ڝvgs��h<z|ܡ��?�`�����촶�6��mx�G�"��Y8��(�ig�8�A��n0o���ēnpN�Q��?>���=wQ�y�'�����l>�l��F3����h�Et&��
����Ңv���G�;n�O�{;�?��i<.���%�x��(Â�8y�-u8��Ωu�=��9:]�^���a2��o�~�}O�"�����w�����E������.g��`�ش��k���]�E43k�y��5�<�5���nP��|���[����mt>'I���9��t>)bZqq]�[�\�N�)m�Vo���`[E�b���־?�vkwwo���?���'I����Nk�3�E�R��ߝ:\���/�I�E�uoQD�?쥾۟�t{r�{���۠��䲸7'���I��,�9.o�+��������U7��Mx�<�{N��"�˜�}�eiF�~D��E؁PG��ϳ�ppBK�Mo,���D��&�R<� G!�`�^��:��N�[|�:�)AlWVL�<G����룳wW�ﮮ�~<?���*���{}���K��?lI�}^Ro��iQ�E>m`�ǟ�f�o#Bq��[Zp< D@��x *����s`�*M_�=��t�f�O�ԧ^������6=>|x�#�D��8}κ�<'pLҤ5�fY�A��W�tHM�Q�y�N�;9����JЎ�}�_�ݨ�����_g��~y��y<\'���q`7�=���l��Q��$D������O��DG{XuD�X2!rk_E>�&w<s��,��ƄZ�(�b�^:���іwx4;+1���9!�g՝W�o����$Mo��ЛM�s��~ۮ�B$��� 3+���:�*>d�l�ӌ`hF�=�π0��]&�A�H�C��fЍ���}bX����YX�W��.����z�϶v�϶Vb�b�y���ʻ�pc^�v��*5ݕ�<?>Rv)gZ���و�5�!t��8-������<`�{�q��I
���`WA)1z]4m��l^<p���{e
���8��q4���sy�A�9���9�G	��ٛ�t�9� �`y�*���EE��3�?=S�=#��|�2 �҂<��tBۧ�__9f�>�E�[�;{]Ԯ�o\�W��f3:-�ք�?��0K�DI�o�%I����R�� D�#9W�C:t�	��ķ�@Š.�4OdZ�Ƹ�E�כh�3iN�QJ�j^�o��߱uC(���{��i��I��vO�͘�T)1fA�	�5Ƹ>�(͉���SX`��#�
�%d�ؠ��L~1	֣�^^�x�1a��i�x���r�����$wE�q:�B�9$&,�m<��ށ���a]v�4����X#m�8�o�K�n6��j��}����ܛ�:�"> �^�]��m׍o�Qw����>qO�l�\�$���u넋��n�(���4a��	/�/~w|q}~qvuvtv���S�RׯIx��
����H�.��:L�ܾ�ƈ���;����/B=�6�dHO�}������&�p:�pN�3\�iס:�D.�I��dѾ���u��批��c�W概Y2-�i:����~?�� �o�����yQM�7��b���+_F�P���{�8pl�y����@��K������J��v^Q��H�P%(��T^M��1���
MF�����n��[�O�L-�����l<
c��^A���?�����0�q�y0� W�8	t�Ҕe#}��t�J��;#\�9i��m�mx�zI�;8�<zs����Û���ӓ�+,�B�( [�O�c�Q�
h�q�Į�}�M�����:�atG��
�
B���&���XD���W��һ°�j�8K�<"D=H1�,
F%�,�F��|�����v�rg	
N�e%SV֭���;�}T�R���H��L=����N���㾌2ZP����(�7�E�l��X�)"X���?p��5��#(�J"�ä���1�Ĥ(k1���%���4(��`��~]Fݎ���~8��i��`NT�
Y���	&�=s]X�y"ˎ��_"^e8N���������`�(h�R�G�	�[0P�ū�`{�9tG��,'eȭ��>Q�}�?{z�Ð0��u bC�Ce��L��d�&ΕՖ=�Sŷ�o��[��Ӯ(��C��z��)��.��<gu�Uw"��a<"�_��Q���$gѱȻ�_c��<�m�e
�o$���2+��ّfO;���U���x�y�#���a�=/����	�8�f�_�(�p�}�Jt/��a�0���0����DS��{��4��w�
/����GD'��0
�Ao�`y|<3BB�Q�n?Q�n/2��Wqh�=�����æ�v<݋	m�CL�$��rf��⽚�1<U%=��YHЮ����x�����'�^Gl�<.�ow��P9��ae	O�>l�Ԏ��N&���ڎ~ƬK+���hF({�y)qkK4��z�Ƈ�$�ȏME��T�����DԲ�\�����A(��0K�N�l���4/T5���J����Hu�3Zˠ���I��1dGX�� xu��^~�l���Wĉ��>��*l�2�*Y:���6+%�a�,���<IÁ|5���@`�Y^��t`S Y����]�x�UV��v$�V��Q���G#���q�Q/�	-�3�?��<�n�a-�U@��'=1��"z��-[}X�ELf���`J����!�Z�.�e����lؑd�Ω�2(�nZ�D.~��3��֛��<�w���$B�Zf@"��~���šО ������+W���vpp�fG�9�>�Vzq;~�;�]��4r�Qt
e��l�9�E����cz+a���DC�;h�o�xbxL��[ӡS;�-
�����K�qcc�1�և�1w
�%���3�"W,f�<5��5��>��Q��S\�&�g�h�"����$�ϋ�ޱ8�
���֝�gAwiv�G�@3ľ�!�Lϸ��~S[������ͩ�b�'l�](�#�@r���6��jz�U��{�2b��g.�0��}��)Z���0�����T,�q�z�U������|�j=k�����1�i�0�VQsR�Ԯ���u?����b�f�"���YDm#!~��^	v�;v$��p2��՛.Ia��}9,�a�*�=�< ��� S�Ή�����a�NՎ�2.�P_���u�g�PSB1��I5��P�aE�n�,!7���F���0��r!�Ō;C	}��ݧ�	|��vE4��N�
��[FbSB�l�?z��h��%�h�<�������&�Ô�E�=�j�F�Јz݃uV�
��#�E��>�8�T)������gG7�a����l��n:?�ug�ۀ��ԙvpu��@��JR�p'}9���]���&k7�����Y���z��#�ֳ�iڨ݆ȏ�T�m�����S=���K��%��M�h`T�Zwj�Y�
}UK�ѡjs0�����OkEc�I����g!�4�Y�cn��Z�� �\D���5����{p���"gxR�V�a)��t=�^�~�zD�l_;3�j�e�'¦��{�����SU;M�7a��v�O��](�xG�O���ᒱx���5{�+�c�q���@��g~7�E��9!4�ل��"����ΚO0֞��̸�Fb�&L�Io�(H@���/<�Yg7�g6���SCn�C�wy�8�w��&��]_�{�]7�?���N\�W����"L�„�~�0G-y�MJ^�K�/��u��nu��v:�¹'��{�n"1�v|���P,��@\�U�eu���
C�D�H�o���d�=
����=���L�Ny<�����ߎ�l��c7Aߟu����#���8"�7����
�x�N�5�.u�'b��U�������cp$7B�ͽu�:�֭�e���f�N��
n�����_���Mx�nsM��f���'��J�>3����bQ>�������>�Ў7����y�x������s�Ќ��A&<�#�nĬ6$2���z�t��;�vg	��
��Ɖ`�ՓL�i�a�&��S��1����݊BCg{�0����k��9XÐnb$@]P7�Ě	� |"Һ6O�=�X��XqƆFY��.GP�M8�g��O>m��|�r���<&�[�_�/���Y�N�R����/�̖0������UH�g����Nģ�R�mo��+�߯���;�>�w��17J
����g*M�|����TԹ佁K^�;��$y�@n?º�P+�U��*
�,����ɉS��%i={qre�J�'S�Vn#>�M��,P}��{�;|{�4��]\�i��͙x��e>} :x��_�a�����ʺ�R�50�e�(�Ɯ��@}*�оK��Y6���b&�o�)���wğ�!
]u3�{|�V�7tY�a�W�SG���
De����5�o�����O��=h��0m����D�OO��h����hA�b�U�����6u�^��/e���6F�i�����$���
�s��U�ʚ8�� r�o��։Q���A����a/g��E�x4�G��0*k���Ɨ@�W^����
�b��Ւo ;V�}���	ѷX����)㍾�S1۰}�{����׬�]C1����
yX��5�,�K��U�H�K�-f)m���ʊ1c<��X8:V����`*��c��w�%�k���:U��&���X=M�OP�|���9;h9…�M��x���Y�tث�.�xDwp1�W��d�/�uT����3i�R��&���K�4�ɰ��d��[���藷P�Ő&c�5TN|Q-���ͻ���o�Q�ϖX�	��Dt�(��������d��Oj�+�z7�h(^U�̊�G�B4�R<%y��r&�#ף���*_?�8�o��v�q�Ɨ���q��	^j��%���qUm�òӯ*���N�Ҿ��D�4���8(�ˉ"�*�n=X�������D���ݧ���g���
e�
T����X�5n�#�P�s�A�p�b��x��I�C���h���|�Fyy^J�r�r���K�*B߳���U^��	�JL@	2��-��E��b�ܢ��2ޘlc�|j�J�_����P໳�u%#��*�TK�̓�m��e�Rݥ�k9
�n�O0t�-U�IVQK�l��Y]ds�Sc��h��u�IwQ/O9�o�>�Tqn}��>�;��i���T����:���Q:x��,�2���͇Z!k��z��D�x
W�t旄*@ k����K���̈9"g��_�	�rJZ�{�m˒K��&�
�o��Y�^�4.Q������T�Rb_������l!k�@|Ì7��Ǔ�ۧ`F	�5�O-<�TBHٖH�'G���<�)~��v�v��6��t��
�h�(�����(n6��RV��7�uZ8E_@��u��~��_Z`���J���ᘨG�����(�V��.\�zP�œ����p�9<;4Zˍ���iz���P���.�tG�n���wꇗ郃�w�Nޝ\���d~~w�����w��;L�0�%��W��
�;��o�;�Jn��!Ur� �\Dڈ�qF"�1Fl��iDX&f��aM�D4���t
6|_f�Z>)�(LPr��v���e�g�,<��G�[����w'*bE5{�R�����8|���w�I�[�R��e��1�@E��&G_�X�f�/	�M᥎&i2Z�t�s�F�U��eU�n�!�د�Y1,�L�T�1*��[���(,�:iߋ�6KHJ�O���E4�;+#���5S��M���+�OUgV����y�fW2]�gMn��xU���87a��(��_٨�aq��s���a��"t����c�u������+�&,e42
��,��>�1�/d��
��3;����z!ZS����X.��m�5��M/QJ�>X�E!a_��"��ć��#���*�y�!t-��#��`3��PQC�aφ��r?�����x vM<'�q�:�W�9��^UnU(a0��f��c�t��`��kߋ�4����eè6����J����@��ރ����ܤ�Xԅ\S"R:!��2���ß��b=�$i{�{�O���O��ˣ��Ѻ/�dp(����^��qzwlTFFbe���8�J��Z%F��}���C�^+���aǠ
͒��
��ϵ~i%��9����N	A(~5�z/���4F�}yyz���g���r�4�k(���m4!A$a-+�+��$.�7�g��F��_�Y�3p�&�W]%8V�i����:<�4GQ�+�ON�e�G�I"��%�����0Oy���X����������o>ȩ��ʄI������tOk|�Ϛ��!��\�}Hwc�Y�/�]/5���ud�4(q��Y�S�uT>mh�=ُH:uq���ɻן���Ӂ(�V;�|r��N�y՘�<��#3��X`���"d�ya�`�vI�L-�ð�!�K��5d���"�G6���^�\d~p�x:Xo(���f>Y����(�|O�-�E);v�/���q/�(ψ?��A9��"&��덡�X�`�nTr����9��,�����_��3h&ƞ���/�' �aP�H���=q�]��T�ȖC/��i�b�1 �����ۨ�2���@��,2g�M�L�uF�"�}:�ƭ�/L�a~����,�[���gk��$����
�C�p3�LL�R�
lw�a�/jW'z�E���b���Nņ�W{�
�f�'��7�����.�����3Q���΄���Ţ>�$>,��|8�|˝9%\VD+q�g;P�8���b2���������K7;�#��&����4�!�w��V�h-�Q�i�VH�on��\���SΊ	.
�z}��|�G��!��]�~���/�)~��x�����-=U���A�x��4-Zln�e)
�LK8�4���m�� �b�M�����>���0Xn���o�o�z+s㽪�Y>���+$4��?_$}��…$u�[8&.1�@X�]���aE_�kZߖ�Y�����[�6����mA�U�xp���w+�c�!֨Eo=)��7���/��q���!t..�Z'-c�22<
��l\2ꅲ��f�a���Ȭf�p��1A���~��=�Qs����N��qC,���<J�i��!�M��G����Hd7�Y��$,�`�����L��	}�I�o��J��Q�ޱ��[�H�
���7ßLС	`�jF�`b$��(zG���H�I�P�b�z��Uq����F���%�ϋU�7�X�i=
�?��k�Oar�����$�ؤ^�^��/�r�A�6�կ�8{��tD���"~�7�(����s=%�W���ع�	{0�₄ޢ^�r��	u��>B[7]�0���8[���\�S�ޱ�3&a.�Q�|��W����\}�"N��7$y��:�i/���3*?��^�#*�Sb�&��u�Y���ݕ��4��|xzz���4��\|�!�".�7�����ܳw�tչ'�Xr�O�Do��q��
|�XZ�*����Kj�;��_�|J�3��xj�-I�
��z�d%��5np�^s-m�սF9QB+$�:!�}M�Qr���#�66���s6���i����[�8�{ͫ�r�h�֯ˑ�Bl��}-I	����(�!�'
�3�x�vq迢�������pcC���_��������JZ��Ed�j��
Y�����j�ue|M�u�[6cVZ��冷b��F����f-[Ǝ��J� ���}��>�W��S�(	J�Q��}c�
Hߊ��D�C����xs����

�i�������n��y8�ו��=�s�7�C���:���[��o贊/��j��\�[�@3�\���|4IZ]9<[����̤LdH�����
��}�Yg8v��=���=�E���K�K��W"E9~�� 9�(���RA8��A%+B�^�'ɉSE5{��㞉�����?[z�O��m?8��t����*@+���"(��f��jDN^rJ���&��ҵ�YY�>�Y�JV��ª��2pz?�{�OtE:��~��#�v�X����+mTBt�����t�=�p��B���x�nS|2bx`D�Xl+<�:�GF;^^���7U�	ZN�W�X-����2&�Ǵ�8Z�e���/U��F�����k�a1�\��$fA#�O�qb���I:�,�*��jH��8op�OD٠DU�t	��_õ̰��YEZ/�i4���h������=�-:�c�1�rnhXt�N��[	g�C�
�Lj��>u��y���j>ɉ˪�K��7{n�Qm�,=�>t�F� NB|�Lh�HC��3yZ�2
͎"~d��Y�D�O�jw�j�Z;[K��c��?M�B�`&
���S�����P2���p�B���
?�le,n��E�c�*;��$��)��%B�̗h�1����21�K8��<&nһ(��p�7R��Pj��\�毹=�N��A�6i:�j���J���*���P��
��}^�MBH������p2���xj�H]���)��%���|ّQ����Z8��Ұ�,Pq��7��ƒo�#��Ē/?�f�H��V/.Lu�?��Q>iä����"�H|��s��8��7��z�D`9��U�\��ȶ �sf$I�ж!"ͅ��Z�d|U�1��p֦E��L�!�͢D�M6�"j�z{Z	^�8fɆK4R�%���rW����Y=$�J�E$�,=6���d�g�d�z�ܜy4o�$��}*�Zf�-�20lw��j�
c��j{����H�[4
��&�d��v���˨T߽?=�r8_^.�fS���XH�l��U��o���V'1��vms"�B�$�+���z�����y
�뛸;���%��=Og�8D_�F|��};�l�Pi�i����o���04@�3`�+�Q�4��a<��M4%��ߧk����|·+��|�/�p��V�p��dx��##VE˨ѤtE�X�.����H�u'ї<�R�����)Ԧ�u�A�q�U�̑@I�>tz@�K��1k�\ֈ�fz�0�tE����S!���zj2�T����o/�ޭ`����8\�&I�a�ƣ�M�e,6�Ewyp���F��"�"M"0�%��{7Ń&�����Sx1�Qu�r|n�ZbL���Zd���M�Iz5��\j�J|���+����di�p2���=�� ��E�r�O�5��~a�t��80
�6f:�l�c�[�S����A
�1��$��������r��k3�pX_7XN:-zwC��y�<]���0M7��8�Œ����)���&��9���3M@�����?o�(N�R�M�������.Gz�ML�s�������øM��5t���hu���8T���ܫ0������ETĒ�E�NSxR��G��^b������/���~�0b�04��?�h�c*�x=>	��o��
�a�BP�#@�m�K���NJ�H<��U}B�$奱D��l�A'�0�/�RL�ۓ�6x�H��-D4rq�s�d��Zw��*��w����Di��'w���8�*i�U�8pҝ���)�Z+ɪ^���w$��+ş9Y�PKI�`j�{��E:ϪqA�WqH:Ϗ�Ĵ����Ҥt<\b��]9�-�{0�pa�4�w�T���G�E�Eawz�)�rA1��94ʡ���q�8w��y�da'��*"�1ۈI/�"��|5�����Wts���2xy|~q|txu���^�B~�!�>��m?���3�G㶲�O���vY`6%
ϑ^�{��w&��	e��MH�)�H
]~'l�ba]ġ^���c�T�ez��t&�&c�Y����k�k���4�-
���a��oV�E����=bN�K�(*J�Qˇ`v-���Hi���@^�-6�1�ջĞ�_�٫'�N�z���� �o�ž�^.8�Ðk]J���.^&`<��sޯ�'E���l|ٟ7�-'!��g��D�=��*d�fp�&E���8kȆ�2ߴ��m����=/ݪ(u���$�1g������K��E��#m�����!��~�j���ܽ\pH� �0�΍_�������b˸Ꭱ�ˀ�5~�yx������s����?��<�#z�
�7~���0��c~�G�3��>��U��a1.��
�A��Jq�X�{�FS���"$��u_]o�n��.�=0u�ck;oc#4	a�ڥ��$����Ϝ��+˥��Cɵ3瑘��l��j��OV�pb3GZ��N��#kᖠ��}�Ko�+42R؍\�pB+ȗs�$d��R��h�
Ns��=�e�?B�{�+�N����r^��6~�_E�s&=W)H�p<�0��D������4�������`��4�J��dG��~�=#
!�_��W�-}d$��3���}#W��$�I�œ�g�;P.�wG2�l.���d#��bԕ5�k{���Y}��_��dN!x�݉~�S�[��Ҋ��ǝG3�2SZa�u��ǽ����瑠°����j������fM,�Ȯ@g7��ӄ{���2)�2iB`�ϋ]��
�	~i�J�pNjã�߾?�:9?���>=y{r�!�|���v-c1�)�K�~����ow�o��#��xA?��
�5$�U��{����8�Ϻ�a,��0��'*f}��3;H�6R�}2����IK�A�A�̠EXXh��A*\~H��L�������4���t��������9V����g"uxtt|N�C����c��s���d���Mo30�OZ�FL4rl*�Oڣt �k4���\�zj3�c��-͌�%:o?ݒk��s���>�݅}�^�4�Gsv�^!<�y���ms�%
oJ������s��j���HXOk���?&k뛨L6
?��4H��^�I�O�	i@��xK�
g�v	�3���0=�Ay	xҙT��n�3./N�/�����%a�%���旰ñ�������4�.M�⅖S��D�T;�v�ל����tS���y�{��XR�򰌐������C#พE�~�u���2o#&)�>�I�L\ngg��RXQ��(4:]4a��O�A&Wo2\e��2�N�#Wi�yRw/�n�;�`1���a[�9�%��V@�=�9]t�H�Q D!��Q�����9�p�_�������λI���~��:�E�g�eF�jm+���<%��Q����0���#���f ���c�<�-%+��AU�DE{�5�;�>I[���2��ꪂ�3-W�&����1�����*��0I����w��Р�A���q�-�
��J<Q���Ph�7�!k�E*�l��,�h2��#o��WA�a��G?�'r�<�ưD�	��l{[?U7�N�-��"��b&����^�8��p�y	���k��&�O3��R������	�\�"��^�A4����-�u3}�O�{��H����#�Ǫ���תq��3����.
�t��ztq����.v�PY��G�\���d���0yܩWվ�#�ϧ��1�;�;�n�K*B�M�hMU͍����
�"S"��8 P�/�EBnK���*����JMZv&j���4�P�(�X]�w~�F$�_���QN&���{�-�fRc2����L��e���)���֍�#���$�qB{�2���5|�f�[Bdٰ���y�AQ����ʾ�X@��*��+.��@g�q[�g�DD�?wO��(vI{�Qk�
�;�+��P�}�k�Qd�Yvxꏗ�G��Ã~1XFy\��)"|·]Z؉"����yd��X��$����JI��?��<�!�!K��b�D�&�
B�B�u��u\:��Y'ͽ��>�*-恄Vӕ��la��s�l�L�8OM&Ŏ@%��^��b���ү֔k�R����v�<ȑ:Q:�j��Bb�=yƴW��u�8 z2b�W��Z�ƙ�N�g�D�ʉ��	�.���,vv�V8Nә�sڤ�D��??S��roN��&����;��
.q�"�E�
��@�G޶
��/���ٔ�חeRs�VX7y���u80��u��B�����j�2s(E��ih�9S��ޠ*�9I'��>=�Z.�����������i����L{,���]��U����5�j��{/�>[�f��+p҆O8h<8�T�,H��>yv���HV��M|}@	n���z�t�h8E~��q�㍟��Jm=�kj�;Q�1��+��J�� �g1�;�D1���[�2h�|�a-쑗s64��yR��m)���y_��^��Z\�.z��R��9Ѱ�k��w��.�iQ���`�W����2İ�똑A1"��[8�F+Jr�d�b�@�@��"~�^`�ё������
��籍����a�=��UX�O�:۬�VbPDr�j���W]���z����&4脮C6b�jbU\B��rL�LP�C0�ۚG]W9)���}�֊u�w;{u:	#��vvy]�..��2����J��&��7LJ/7I�W�y�EV�+qE�&�#�M�+az�z�q��x	��iUM�Y@�',��)��.$%f�ޟ�b���di>x)|�����!��p�I��޽���`e,��YsKI���$��$����Q:÷���k�]�Z�ȔY�Y��!�%f��W�٭���h9u2�	 �ˮ`�f.�j��D��txV���e�RΥ7���b���j�,E
�v�NJd*����3#�KA�d/S�-)���6M��X3��=�o\�=�q��Js�]�}8͛��DM��)xN��8'�x�\�ڀ�Y��)��1�s:�ѓ8����Ć����KZ�6眓�����#�����iI�3pDPU����|�K� j�Q�_Ei�L�����"kŊ@#�\m�'�������!��{D��R�0T������׏R�^�]�蝼
Q<y�c_E�w�W���gn��OL>�uN�Fh
���Q���%���ׯ�.>^��y��['����P��Mud���$�eh �^����<Ӽ��yg�q��i0�ln��ݵ�>IN�Mn�e�M���Ct:;m���c�+�$�\r�z) �fğh%
�7��7�����V�ik���8�=��Nk˙�P�`Zn�q���f�����p�
��*������D�&y�G�ic�$�v��!�_�p
tW'+{�����G8%f@K��]ˤ�2zM�A�
!�j�c��-w��³D��zK�
�F���b� ߃�u�ۤ#�'1�{�;����f�m����V�F[m(��
�S�!/0��Y����ܐ{a��c�aů�BD�q.�0�s(�����m�3�U�ct�NiۜҾJ�������YRzYA�q\{�ny���Q�[<쯿�m������r����^���#Ӌ�!���ke�65	�53oc>��R;��dB�&c_����e�9(]�/�r�ܢM���G�QV�+]��:a��U�t�@Y�]Έ�w"B���y�C�����2�e�)�O./�rR�{��E�1���n�
�$��jdz�84.���
Pʾ0�$X���r^\��hշ��!v���Z���Z}��r���v #�H.�%�{�n?�0�Ĥ��T�&�9�4��T�x�iv��u�
[I>g�-;�a�!%�|�R� N�άcaֶ6����F[l��Dg�9�]�a"$@��Lо���(��s���1OM�A��c>9u\�����د���7�$���(�M�fm{���zs�] �ɼ�v�<(�:�bC+��Of����?
�]`�e�4fδ������?G����>�h��?�d|B����p��hL�*���-ߣ�W:q4�V�-3����g�ط�<h�Î��>7�prk�}�w�'�*g�cY����`���FY�N6í���v+��A|�֞��69%��f�*�q(��\�E�p�����l�_�f� ��,XMֈV��ҞF��-eG�5�Q8�Z�pF t`�N���+�[q^��i�T��N��n�\�{!N�����-D�Va��]�S=q�}K	��{�����K
�bw�9p)�m�Gĵ���	��x�/g�(9y�z0�l�{m�iƒ�.Q�t��)�$��Čh��SP�kD�B�$Y!sy����B�%����eWV��U����� �bS����˺W�.����R��e�X�������#A�n�~暹�>����������A8��H����v:+�|��[/D=��~*����IBH�
*��=����������Oq�L�����=֐�0�������5x�K��sb��6��yb��~���Ü�*��P_��QR#�&V!)J$��4o��R�ᓶ���i��0$�����4�ȵ ʒ1S�E������Qqn��S6��lڹ�:�Ra����Y���9#:|M�_�L\�mHߪ�hՑ<�[u��4"��R�����k;�%>_8�!2ޥ8�a�=�3,���rć |���ͳuy-LJMlP�a3���
.D���id
��7h�f��!
%<��'2��|X0�"���v�HnS3�s"�@��h��;B�!iwL�Ë�t�)I���Q͎�n5������e�W �2H%є=�٬��\�n�@|��k���iji	�ma}���،<�R�Ѧ1�f�U��8�L���K��K�U��49;C�N�Ap
���=�l\���M�}
�ڷ߮��y���.���`����L��R�!to��U�0�����S:`�qO��=UQ<��������{U�{�؂�����;Vճ~�����ǭf�S{��:#�K�Qp�H3��cDSA�0�����!*�<b�.�"�pYJNO��u)D��{_�<����%�O*R��>��)�j��T)b�3�L�qUK��^��)N#ʔ�.���4���ڛ\Fs\�#�����#�2Ѯ��ή�}V���hd�s���;�w�������c+|Z^�i�B�Ϟ�,+꛱�H&��d��DN����%��%	+7]�վ����W5~S3.����@Ԋ�Wc��M���6�,ʱ>9+��(}�h��+��բ����Ic3�;��5���ڛ2�L�e8r�u�t�yE�y�[�2�j��(jM�5lC��^h�&���zT��^��r#W�sE�Q��NkŧrJ��F��^P�y��8�E�Zjg�r)q�\���� �Fc�/Xב�����gjd-U*���!�B`Xց�N}`C�
�і�ɨ�53�U�,�d�B�Y��OTʸ�YQ�4GG���8��exG$0���Z��B�y�d��R�x@�Δ0���g�!0����f���C�܀/7�-
7��y��D��3�?���u,��M��l)���+��a4E�Q�o��9�f��D����t��PbӚ�$��p�X�i�
�t��Z4��;�D�e\���1�����pJ���,�H(wt��,�]�E�C�<-�/�Ф
Oz^�O��j!������]ArFu��b(!�*��Ec�C��gk�e�cW�-�x,��1Z������ X��"�'e����I�C�v6�������L=�N����+vZ��@��h��V"z﬋�H�ۧn5u%z۞>�(?��!vv��UT�F�V�ͧ��G������4�X��SI�j���J��;l�t�j��OMV�)t`�qhOj˜��n
/}�X�+��WΘ7'�!�LbB�k�r����^�`�O�N�"����k�vxg!����w�m
¤��~ְPB���^L��1���Zj���~��*u��*st�:�������?����m�bkwww{{ko�����o�"�-`�Z
����v_�^���1J���ܤP�k4'ι
IR�Hr� /�}�%]�@�U���;�7����t�8����Y�yC�y�Q��za=��m�	"5Ys0�;g6�Wޟ#�;�|e4i�!X�v��,e�z���8�1�ķ����X2Xr�7T��ɰ�$D4S��m��7<A¤�Q�Ѻ%?���� �����F_Դ<bD�FH��>�oa<V�
��(�U:#���[ƍ�Sq�!z�Y�H[,+��L�;��3H�%w�YC����`p.�%�/v�g۰����ڒ��>^�٩�D\�xu�4���F�֗�"D=~J3��Ͳ[��C�\+Oѓ�գ.h���&�P1����{����vm�C���m�a�	�-� �%���d�x��Vm�<�V)�,W��W5�����6�����7��8�y+�����H���C�ks��(MC>NZׇH,h���`|$y�JO\���јM~�FtQ��+j6�U�|d��>��7�&Ѭ�]��K-{	�N}�-ʌ���ON�e���5IY��LJ/�Z��Ut�V.��6IG��L�/�- �iݯH���ZD/D��&�p�6�G"�	�����zF�k�d�%��9T�ͽ�~���?�V��a�<���9�z��q���Q��a$�4;�p���I���flu�;��ռۜ5j��S�v���(�����5�JZ��߃T�<C�j���.�C�&)�%�2F)����&�^�Q�?�c�Zb�d�e�-˰�G�=搲H�M2߀
�l����N.��&=�!?��H�� �r04v(�%�d��B3)��j��7���#�<p��$�V��SZ��_#����)�LM�s,�����'a$���i�j���-�Hy�{X	��Y��1��D�+��ɼ���+�˅��lR�Wh:��"m���E�Y��Y��
7�(iJ*�;�9���
�E
ݡ�����v}	�� ���쬍���gHlX,,pD��Q+�Gr�E��7�a~�D�=4X3�8�bz#�_qPG�Ch�oBV�78��?�Z98�����40���e�5�%9'o��(��;h�5p5�[S;��?*8�=�j����<�����o{k{�"�m�?������F#$a<���?6�#N2��֏6DմM�F�8x�o�c�ZA�n�؟9�a��������3z���H����EM����� �j�h��y:,��ǺH���'^��Gk��cm�4����f�e2�3b���]ċ����fS�|^&�n��ل>��o��m��&�R��ǜSp�9F{���1�4Bl����$�~8�B���k�n��8o�Y�;a�<�Y��8d1�i6M�F!`�i�E�A�M+��s߽S?��P�wj�[(����s�y�U��ﹼM�CWo��˳WW/��G����w'/�_k���Z3�pr���U@-.�]���
��p��e38������epv�8y{~zrL���;:}��S_P�wg�HBJ�^��P�:9��`o�/�l_�89=����xur�c�:� �YLO�ޟ^��/��.�i��4컓w�.h�����4+����.��������/.�Ǵ����2*������m3xy���5r�Q�n&	>�9�O
�����
~�bV�џM��ŕ����^�\b�.�hx���&'���ݱ��S
J�OM��c���LJ�4�%6�7n�]�_�+��縟�o?%�J��n���m����O�*�o"/��g��:��k���1�����R�L���n��S�WU��ADC��ǃ������/�[��.�C�r�!��Ɖv��-�ytS-�FR��,�+�H�«�xt3rQ�����4�
�M՚0�4-k[��D�$���pҔa&�
x�����f�P=�Q��؄���
�Vlu�~2���b���?�…-1܄(9O``���"�P>D�e�`ĉI�X��z�T��!�8��l
����,�-�#
?��
�g�Ě5�Zȗl�M��l��;���)��Sb(�s2n�6����IU}�g���G�Ԋ�6D�'�'3A�%6�1���?ڴ{|$��>�?�_Z��pC�k=�W�E�rFI�.��+4:e^r2(���h3qa��vK[���b,�^��e���E�h����5�H��RJ�.W!��ɦ8�t��<��
����
����]�W�x,�hV��s<�a()�8��k3,t5�O�i�S�*1�Ӏ�x����i�G�`��?�k3����X�4��f��ڧO
h�R��tn�����]X"9z� Аg�t���6�=�?���[��Xu�����톷h{b�%H4)I��έ��^e��G���[�R
�7���QZ_�8O�loo3�h�*��WT���l�9�6DD�yU;PS����7�`�8��W_��<E��17�i߽>y���}�!������,xr�����"�I��H,0��3�'����\���ΐ]�g�祪ŀ'�y���
=���q*K�#݊��0{&�"�6�����ޞy��**6��E��|}�m�.�-�v�6��>��i	Q�	���~���D���v������M��XچS:�p�� $�GvX˧uW��W�<([��Z�p��h�}�l�I�Z�	%���mDbRbpb���Lo�"�'6��9K�R%��/�ϙ�K��(K�Z�T�!7ϔ0���-���F``����~��gj��*)cNľS���0e���_\��n3���oy}Rŋ����/�S�D
a�����S���R�
�,B]�VT��o��wo�$�Ʈ����z�K��^�a����ɠ��"��Uk�fF���5ː&�a��HQm|��U]�p�M�������ޏ����e}8|1���ޅ�y��o���+�����6�.���E��,��xENv^_��У3�J�C������l�6'�y����$�/�-P|tM|�"�/�d�E���'�g���л"�&C^H^�"4���8��r>��$���zF�-IF"�����]u�G�z|�"�w�V��4�B�,d�����M`��Qo���n�tv��%�rũLj�P둊-��Hb��*`Ai8���f�"D�C��H4��-���Ec�Љ~Vo֞�,�	�P�zyL��VG4�v�y^��P�]�gS!�M��lqԕ����t�r��';�	Df%��t��,{N3m�paND.Mo�]�X����>��tN��Ħ�w�i��z%�Z��^���}<m*��r�'?���z��M�t��C��u�����]+�`�ꤙ'��E��ͽK}M3k���R�y��Eڗ_��_-���Vp�2��}!��nuXg�m,E��(����Ϛ��`"9P4HL�FlpPiR�7�irP�y�TN+%F������:��~t8�M�E�lC��H�hG��s��x�`������xdM�	�-�S�i�,��N
��X�<����8*Q'I� q����X5
�$�P��p�`��>'d��AP�,@��GW�M.(O���y�}���/���b6��=��s+���z�3-Ӕ�!@#�,��G�P��<3����8�����f��-���nӲ�e�h��4jE ��M��ͥhv��N���^��,Fy=f���zvA��p�4��6����_��}ȸ\m�͆��-91�YjRiIKJ�{NZ�N�5���)�ư�"�}���5��<uː0t[gT���b�]�7ժֆ~��e�-C��D��<����T3���@+q/g���"�4'���{)ih�%ʙj	rdUH��B���&I8���n!�6�겎e��F`�)��o
9-+G{0�ജV�r��ob" ˄[ޡ�f'2�����i�M��Q��
���P�}��$k�{YB`rp,u��ѰN�K)dY�Vx�bwprf�pۖMK�-2%��Py�K�״����\����<�e���(�2�^{����pk��_�J%/c�W��T��
�DSMf�x��c\�����_�i(�LwK����E�w��|\d(��h2g.e�.6���R�\).
v�
�u���k�	��X��}����c��w�z�+b}g������w��q�]\�7i�	��BAXg���R���U,�{�uM�з���w��b�Zn�F��glk�)�0rIMn�VQ*������\^ [��[Q0ǒ
�Fab2�ˌ� ���|��Tp�e���"�f ֆ���z:��L�˅�=:�������墮�NN���k�$f�4�4Ժ�B�e<ۭ͐+�ihƪ����rw�%�(�"������??��&'.�;���
N�34A�(>���j���oo���ï�,��_�e�4���ήOK���	�:�#��o%]���L�r�u+� �aWH�d�X���l��
h�0nBgHmқ��_>!���4�<\��Ͷq��b�J6op�m�����+#��3n���t��4Iٙ_����i�$����/��(|�lUSתI��mJR l]Y:�0+�L	L�<���_��J��5
���z�J	����8I#[��7�W�!gq.��J���
@rH����O!�ϗ��.��T��xzI�E�(vNvi71>�;|���1�#kP��^,�j��0xQ��k��lq)M���DqK�6>o�^�]�8Y6{
0f���X-��0ԖJ�q�T��p�h�6�~VܯϦ�����*y8��.�0���ۅ���!M�k���t%>9�h���kFO?09��5�p��DŽ���x�#V��cĿp������-�wL��2��|��߃@����0�
����O�[��"� \�8\�sF��r8�O��p� ��N��
!�����P?��`�A?�,=��� ?�:��V}�?�m03�5r֯�y�ǘ��Q���wH��r���H�Q��A��~Gǔ[G�0NWu��|�D����܇\0��l��~���3�\G)Ѩ%Fd�c>3�]��3�A5ѥ�	Ag>f7����	��R��U��e�A)WF�f�]J�٫&O��!��JY
|��*�1���	‚����bz%�J�ӕ���(N�X�G9_��?�9;L��J�^�I>��!�$�W7����򉴞D���F��0�B{�/!�?��ߨu�!��s�S�D3�[�4�[B�����ee��^���X?ZѩI���N���9���B��G�+���c��
��	�6��v�"�t���i�I�E�ӫ~K;������O��h}	���ī?��i3x%7qpE�����{�"Hܯ3��ǥ�~;�^�J'��I��?��H�Z�x1��u���"�d����9���y�*��G��|L�c�.�v�桻~���K��D�<�\ҡ�l�vrj��AV���!G�Oi��1�4�8#�2���71/�b�Ѭ	���Fq9:�T\:L8�ъ����i��l�R���RL�#TJ�C45�%�t�̹p�)�Ac��BCu��1�b�_��Q�M���V�p�$�s�V��G|d�۠a�%
-_gt=S�C����Iq2.�F��"�g��$�搄��)~ē@���#���E��(w43ʒbѪhی���%�s3�R^���8���5�&MS�B�T�m��ۤ+�DT��f����/4k��T��u4U�K�U�_QdN��T�roìO�~�dK�J`5!�f�@� ���ъ#���h�]���構3�
խZ��o �P5�� ��6`�{ ��䢠�w�	���}?7+p0]p9"P���q�U�%��H�O�^hĤZ��P��h[��O�Ǟ���������R�������6����2c�P�V~�qk�d
KIbf����:k$�{C2���(u���Y��:+Z��dHٱ8�,����<
���,bS�nXv�����8\�A�(Im�,����y�U
M�ʇ�.�Oڍ����8�s5T�16��O[�MC���%�a�~�LT6>�HH�i�������k�@IO��4��7p����Ʊ�Y��=ŝ�Os{�����`�9J>,�r�q��"��V�&�mB
ǎl��n/��)�Iٟ�)���Jѭ��t�>�K�������ο~�N��,o��8�hS��ա��6�j�R��l�`��Tlɣ��#�k7�-�__���˫��Wo�^~�I?����A��������>�Z�ip
I��p|�p8�E��f���)?I�V�M���9�Τ9\������'�����,^𥉽�l����_�>΃5�a��Y�?S��nu��+���dY��C�I��%h*��dU�58ϣ�9xx{Ǻ��9m�)��mtUo��eiZ����܅����D)���ć]?��@��(	-�zﱸC��DWZ �zŵk�ʁT��o��
��+�Y��2�Z�]������~q(@�땔��n$�!��%�=q�Ӥ �z����!�$WM������+���]���(@yV�m?�1��m��¢M����{��F���A�„Y0�k){j|{�P�-RQ��2�7��ޯ�P�������"8gTx%�a���6W�J ,��pG��`+�j���$��H\��t�8U���Y�-+����Ϛ����@~���e
�I��.�h&�]��	���({�<�
��0�ں�s7a�K{�6�=��}GU7�2\`qa6ൔ�rqvuvtvj�c��x��D�ͥ>t���fe�Hxr;�3@OS��=K[4��=�ƥB؃�e�:�<�}�����v�nz/�A|���J���,p��`���P���-����ϭц|��r�	�������+W�̬N���4��}�������a����z��[�I�Q1d�)T6�a}i����5���s�������	�ŪS����P��Y���:``礒�lr����42��	������?ij�C}�;VG_]�
3L���75��3$��E|�W�ݥ>�'��5�	�ؖl� 0,�jV���R�e���\��Ț��*�]�s�3�vUd[�rKj��M��J&[�nxe�}�)�r��f&	|�0����=���Iڞ8�Q���@n�o�
D���_��x�+D�-�牵m�IY�3�t���$���a�H�Y���z�&Z4�Aݰ_�=ߨ�����jF6ø}���1�B�ba�{�'Q���\��\nl��X���⁦�%!��e@�|W&��ϰ��t���RD�����d��Wo>zxsTxk�Eo>$��,7�'<�j���{�0,��S�ub�B��e\�><�c��nΓ���tW�߆1,p�ټ]�S �Z�[����..G��$�.�*7%X��}��vͮ��Gm82���u�kNG�QQ'g�t%� �)8}���g�r�#�kVS7%��Fp`5�&�R	Ɩ�`�w�&�V8�����6�H�ֲ�s#d�%����h��M��@I�A��%,e����Ǒ#-m�k"Ġ�l=���U��҉M��,�<�	�N:��X�`h�fPJKi(M�$R��Ę�i��Ge�mCJ` ��Ly$�!/�k���32UAY'�zS�>ā�]���/�Gc��吲�g��(M�����ݎ�,�����	82ڔ��"�p�:3���h�a�!<Nq3��,��&c!��7bŭDÉ�S��v�VZ��20
bNh�7����x	*����{}�F@h�'�*�6>�*��zP���z8d�%�&(N�Jf^�:������vL�/H���G''���(����R�hn�z����V��5f���xy	��&X�y��Č7���p5;^�8��^��Ww�9�Rg���z�Q;cɩ_8������`�B}���"����ש��bNw��2��‰��ՙ���?c�0�q�~5-����x֎�O��&8>�V/����Fs0fI�jM��݂E	S;
<[������UU�Z�Ҙh<��Q]#�<rXz�Bh�h�Q 7HIЌ�K���m��tdh�x�����s
���!e�\��p�-�RF7��X�t�0�HL�����bI�m�몃����J(5���m�J�
�Y$��fqTOl������8[�����	a�V�j�QS�y��#�@�Ys��E�޲~h၀=�'����ԣ(�	��NM�R�RR�7�*2>+/��7QH*"�5���t\mZ$9Vt+����r���5(e���5u�n�o��%��*��;���Z�Ti/o���
r>���I�.���'µ>���[���i�,K�Jהi
j��EL%��@s|��G�E]I�o:�G��<����4������G��>����ӆ�zt�(�4{��h �$ѩ�F��Z��wAgî�8�=����J�%���pz���l�D��S�QS�KP��r�$�*z�S��{��dI[V3-υd>D䬞
[C�0�П�]��������:hV���<S㚝�ٽ�(�VmYZg��������d���&$�8H�k����!�P�Tc3����2�1�?�A��#S!�G�
�OlbA+���Kf��s�h�v�YV�_fb6�����t̸��J%�g�)�X��Y@~"�<���e�\�uf1��p��H���3����/FΐG�E=�ʍ��m���g9�*��(�Y�K$c�*�ZY7���hI�ܭ��KP����uT
�fNkl�_�Ͳ�~KD��<f�.�d�I��yn�V�z��U!\���j�R���4����i.e��)^��`���6��������8�r�ڔ@����^�w��Q��1��t��Η6U�<�-J�]b�#Q?������q-�}q���y�.�y���bRN�%9lm�z@�woCੴ'_+n�p�H���J�X�����ܝu_[X�痗�̢�
��^2z�"m}M%a��]�r�N��;d�N��I8�j���y�w��iq�МQ��6�< ls�'��ē���">qjѱi��3����<S����JX
bC�k�0�,4=�.O��焰M"9%�o!)���
�[.���h�z�[�nA�+^����p�w���R��2�0�[4*9�<��_A� ��x�v-&��Ͽ��>v���}���W1^@�W�$`�8�X-��Ҩ�b�Y
.��R�*��T-��<�;Yk�彚�w)�r��DE
��w0,MI(��U�s�i�S�@eGDs�d�vi!
W�k��E�+jx7�P���@�ƒb��űQ~�գv����`O��IþKIH�N�G� }�
`" �捊˗�
�P�fm��j�<�%I��M�������(l9��(͡jMe���t<6NJ�k���'_�LXm����E����2#���ƻ]c�I�H�*��QvkJ���)/��-�U	d��`��ƛ��]mV'o�tD[V֤�oGm�am���Y��N`X0n/����1K��̓_}�ݯ����?|��]���_,��(wTU���a�o��q5G�:N+
h�M��t]��7�����0��K��&�����?����&5
��~+ђ9�r)��!������vg�%���n͔"�}}Ri�r�Fuڠ~Z /y1L��eug���XX�$���;vF@	!PNj֐�b�$��u��<K��7^O "�|F�tZ�ID��>A��g,?��*N��Vz�a�x���<�2����\����l��ۭr�{����a�2��[1
3��"�1eT�Z
�����Fem�@""*�A�m���Q���֛ٳ:���g�.�a�*L��0�砤uG�t���	�aϱI/E��ն �˻}̩$e�%����ud��cA�1�N�e֖��T�����W���:˩ָZ_7Io�J"րEIpV�M7�g��G�ro��XS����r.ڀ��۬ӎ����@�2e��$��T��R%�򄰼V�e��3�a��ܡ�R5}��D7|HG\�R�P��'v,d���JR�#+��Ir砬���ak��-��f-�g%�u=�l�S��5��^;�Tʏ�~���h�c?Q�`B�JKe@���˲���ș
#�0�N�F��m6
5�$r���^u��In������j2�[�o�A��pD%���
��\%����|R�ȥyA����N�vòdK�Gk�H��J]ʍV���4Nع?ĎF�P�)��;'9ǓxWd9�L� ����D⛥�8a�˂�ړP � >aJޔ=��#X�i�����蠤�p�XqH�����.�U��c҉k�l�3i�&lb�ڳ��)C���֙��e�i��U�:ްJniL��2�e�Zz����ɺk��ʜ������"<�%!���g�NM�5�o�m��n�D��ki$��Me!����Y�ӓ3�K� ؃KXM�i�1����ʫE��,��B6�MtV60���ES��Ͼ��m0Iγp$�WZ4fl�M$�M�	�y��h�i� ܏ɳ/&H�p�
QtBP��ھ�V�t�M�)���L�m���ٲ��b�@��9�����sg�x�c��!��A��jw��8y\�}�і��A�3�5e�Bs��?/W8�{��j�Ϫ����]�����������M�?Qm]�K���i�䀣P}�����@%�G�G�I"�����t2�� -q.�6Q�ؔ�#�d���,W��x�)ߤ��h�"ڧ�Rs�)�LRf�Qr��̸�K
�Lz���Ot����!ي��ca�Y�d��#�Y8/R��2YB�m�4ĭ��F�b�K���#��xɏ�-+1�ޑX��M�N�˂�n�%���}Mє?n4dK&ÌYnp��f��d��fO�\+�!��<K?/l+��z�_�
5O�i֗?+m�}?m#V�x�]lC��Z�
��r.����zK]��re��_K-\��!;�����'�-7����KL+�*��{��6�,Qt��S��q$Q�e;��1��Ӷ��L�JI*��B�QI�3���7����~V�$'��g:@ծ�_k����{�����=��@ՙz�Rd�mf���Vi�T����2i̥�z���n+I�U�*��6~��_q+�f�!�O����f��nL?��l�m>�4�o�w���vE��3��F�`��"&�5>���$97
�w���`�oO
�b~����R�����uE������f����I+o�����>��&�1��QJT�L��[�F����v��I@�/;�k�r �Vs6`yM)��nF�-�����c�N���NF����k���u���,���K=�,�
M��uD�W)h̪!�5?��DL�J.���[�T��eǘ�f�T�f;]tP퍽������U�G��o-���S��>=†X���e����T0��_}��?\{t���-�&�9_��E��Z>��N��>����K,��(p�Oyp�d���q�8u��X	��_���h<u�
�n\��.)�-��� �9��6���#����>����i�@��y'�(�1\����\�C�%$췸_����X0b�;C��46��Q���j�<��@�`�IPǟ�͋FU7;��BmW�&UͲ=�*6���jpczdRۋ`&ݍ�?х5���:��S�/��ߊ�����C��?Zٸ���0�W��fQ��
�TBZ��G�z�_@��Ť�'O�����[�����S�C����=ET��頿����8�p����`�G9P��d(�>7�am:N�Tv;U��F�V2=5@�o��c(��w!fJFk~�ȢswhX��@�Ͼ�v���������ޛ�_ۿ��U)$�y���r��N��c{�����c��!?�����p�|�F�i³(�O�);FpSt�k^.�'i竛f���G����x��������kBk���࣍[J
$�۲y���G^ ?
tE��,�z�����2K8�4䋨
�b���5��R���V~⊑���$h�E_�%���n
G$�Yl��&H�Ж�ގxX�~ҷ�(]w��g�ma���>	�
�b���D!�扺�j���P�Wu��z��yw�ޯ�ԃ0�-,�9��[��|�;)pf3����!
���N��V�~V����i7�7GW��a?��F1��D���r捗]íwD�}��a��V����z�`kK�ydQ�^C6/��U�u1X��Z����,܋hKz�Qc��x��̓���"e�����#��_�gm��f���+������Gw���-�ư�y��l�S��`8�Z���N�@9X�ʜ������j��y���@+X-R���[����V�M*Rv��!=�ee��T@��?�����|��_�
�%��#�@)�J+I
�����x;�V
�W�/�2��,�g���6����f	��d��M�*��R��+���\�ps3@/Y�v�Ա�A�L���Ax!)k�(6_�\��J�f�X=�N��8 ؀�`o�p�i9)UB��]21�W���<���W�"M\H�Bu�Ձ̏���*�צϛ`���T`�X*���q8X�ş���Ek�v��8���,��S��Z�-w��l�8�6�{�0�h�NMm�v�lmM=x~\�;�u{w�c}�c߲fe���!��I���B�{2t��Z���E�O��ij}v�����B�-��#�L)�& �>֏����8�8�
�	������#�k�P�#ӳ+��j�;�Z��^y��f��?}���ՠ����Ʌ�Qx�M������l���W+u�͌��,傓8=̀�B7�K�jۭ��?�W��*����8^�7�s����Z��8��"@�"y�C�`���q�IJ`��C
�ڪ!6�}	��@x���=��Bo�CEa����(��ر��@I>�l-^��P2Po��`�y0�
)�7-�;M�5ɔ}�%FVAF\��G�5�޿�-o��c�d���u�o#����}y�dͥ�)��������۝��ݟv�켒�� �Ic'A��,b���``$�)�$&g�;�Q���O��iQ(�	@A�r8�;�fEQ� ��
(�Ϫ�Sv��a�Zl��������Ј�8ݮeW��A��`-D�T�4�qŭ�<�0@`G�Ӭ�הp7���B-5�F�a�ײvhJ ��R:_؛�9esۑ0�v�~����%�t@��k
�X�ze�p?�C�~�\�<8�4�g�&Cz��VPD��Ԃ6�\����ǷP�i��J1F��mT�\���o)MI�^Dp�,�_�\��&0epy��sN_R 0�-�<�p���Bj�I��d��;.g��w�;Z���j�����.�)�Nl��8��WnG\1��FagK.�"
�2��Upn��uo��L��^ ف)t����D�=-]���4�Z�\�lJT��*�����I�P�%���}��S:�'��롋T�S�,�g�;�.�0'i�̯���5��U+ut<�B���|�=����7�֬�t�A�{oaTU��Zt�֨�Vp}�Z��l��<����t��m��F�@�7�MӘ��~Y�?�
��L�]h�RH�B��{��)������珙ƌ�e��]�xm-�����9������ڥ�C��{*G�U�a�#����`8����M�fQ���<*&�S6��)^@�Kد"�sD�/`y��!�"��E>�P��(��"4�u�u�)�p�X�<��9�4n;U
	Z/�t{����v��1~G/Q`㗨����ptgU�P�#����"��ǿ�WS�X�m��,��4@��W=���� �jV�Ȝ��s������N8��=��_{�
�8��RϿxj�$�v�;�ڝ��i�3_�8�gee��|�����O�W���hP�#	���揾�����û�w��Sο��������q�ww��s�W������������οI���l<Z����ο���C�b@9��د�|�`,U�R��T6pL+N����`_N�[�R����\�,6��9)q-�I�rLI��A\T
K�0
U���l�O9K�N��0JCa��g��R�T�^�S�x��׏��-�]=���
N"e�z��`��{0B��L.0��8�j��ی�����vM<NPՎ���˪�� cPS�N-4۞^
����3�0%��d���&-�"��ͱ���#.^F����E�̙�/8���D-tn�	�a7>M�&҇f�#��s�Тw&�k[Y_��:T���Y�lm+�L�]5�R-	��	�y�ȴ.�����d#���;o��%�^k|����b���Q���3�=�&Wȳ�𬄝�e�tf~k,i
�^�����&ݫ5�"SL�厢�[�l�۾����$s�sھ?"��mu��c����w��7p����Vͳlؖd�v�~�6�UN�`
O'�iԞ��sm�!t?�
4�\�F�y4J�U���i3X���h�D��3.�Dp8�+,����f��fg�Jon��qM'lq�fc���\G�lgE�5��-R��][�A���y�^#��%�v�J���+��C�&��ǃ�ۏ�%~����4��]d��g��iGս�V���_eѺ��o�v3�O�F3�����W���q/M�"C�Ǥ�	�D���K�&��.0�w�Ip�Ska�"EJpnK�9K.&G�Ӄ��T�	�~���@�Ź򪩫Ve��a��`�C��&�e�H4���ֿ�~�yy��e�r?�Z��/w��%�˓���ˀ���\��H���E�Ώ{�ч���n�wRUC���E�|Ҹ�L�4V��NJ���0���T,#�G�!y��4�����F��*�
���KN�C�5�EB�n(��٬q���WD 9
q_׍�Ȫ�C.��9���N'�.��T���Wan�q��P���<
�I����ת�^V�b�3d	ƒ�>G����G]�'Y4J;�n-�hx�ee��E5�>�D�E\#�aI	
,�;@|�rZ��:�D�J�<��L���@M�.zn	��?�Qf}2!U��q��g}�&��ʞ�	�qd<#\H�yc�\Wd��Pl�|5�؁�!��bUѽ����źh�Y�֢�á:.�Ti�UlZ�J�l��Z��"��W�H�j�^.Z�B�14��	r&}i0�R��@B�=���H!W%H c�^�t�o�w:@X2.m"�N���~ϔ���c�S�+��O\ ��.��S�>��_p�Ʀ��־��d����r.�+�{w..\�+���[��U��73L�};���i�@'M(�w����p	c�������E�|Po����(����+'�5�E����kzrmp LC����[�;>�>xv�L�"�!��~>x���9�}U��yz�!�^�I�q�F��1B�+�+�_鮓�F��xI�B6r~�X��b�n�hX�W|��G���`+���u��b�s�5�_Ag���Gp�޾j��������o~�h���3�\UZ
m�\�R��N�V�ZLu����H7k|�5���j�W
p���%$�`po�!�Q�ݤ�3�40��S)ukb.\�QR=���hk�L��*Y� X�leI�̢�*�SO�D�i�*#E�(Q<�=QJb��_K&��J���ib���"WՄ�e2{>E	�)z�$l+�� 6�O��X��X�c�"8�� 
cz��yFl��}��Vq��$e *����
_�^,u�햺M	zh4q�-����zW����/�P����S�rj]�Vz���E+ꆫ�f�y,Q���d�x�J'��Z�A5Jʢ��j̶\&*�P\A��b��J�Rqe���M_X�D�_����	�\�h?���+6Ք���Qj�O����(��c�YXXB�!�Wu5p��Q:�딫�&T��t�(hAK�[M<J�$1�ݰ�53��3����/Xa�DM��gHtcs���>��Y9T:��9�)�3��X ͧ�.�Lѭ6SJ����TU)6��wY��E�4)u=[�>m�*үϬ��1<���xi�s:��)=�j4T�S��0,>�E�ʇ�����h�Ηq4w�h<Ż�8�&l�(z(�ʀ쑓a��)<���7d�"̤��^��3��w߹��{�c�ϟ-�ú���>�#;��]���_���#AX�Z�7h�#^G`w㓴�N.���"�D`�*�/Ea8��XX{�fp���*o(2RϵQ�6-F񵄕�J�&R=����.F�VK3Lؤl��!�<��9?O�q��יU'�m��]B���W���KozXx�����}�UV_��p���C�	�q8�rnen-�M�ns������e�����T����-%K���iSL�4�isBdkFHSrUY��4J�F�r�q��1=�u5	�[��p�_�m�P�F��_$1F�V�yB:zZ�钙ƒ9�g :.�a.���MJj�7*�2��5�ښ�eKHm����s�Z�aX��M��D:*9��"�7=�[�	i�o�'G���q�(��9�j����0�:[7��Sq{:�~@���#R_�>�g"�
�څ&�TH��pJ�E���t���k���g�����_�Uz�o����޵�N]a���HD�M[��%�]~&C���%��ğ��(:��<��9�T4��b�ܕL���)?4}��N�5�
ws�}.�mI\	5̊���a2�r�c�������J�	T���R���[�R�F3i<�T='XJY�m&�S�l�;?�����X����b1�I���6ϊJ�HqE�^wr�
1Iؾa
;��P���`�O�E�52ۀ<���j?�4��B����.w?��R+�a�"G)q4��PS�R���o�-�V�|�����������w�_ߤ�Wy�7�&%|B�œ$;DyH<���d
K}�	��u�n�J��ace/�A-1�5H2��Al2O-��I�QVK�`�Rq�V�c���v)հ��$��dig���
U��e%�([�x_��ݣ��(([�����=��գG�_v��)ܺ	r:}�T��H��p<Gy|Ʃ�ic��8�BO#Y�83&he*�Y�h��瑂�[8�x�GT�>����w�m�D�;��odeOҨCL/��;b���-���4�!��L7
�J������^��Oi)-����fR�F�~�׭��v����X���|v������6�Hh�
=���][h�E��^.��7��%4'�T��3G7�Fjhs;2G��?U�o��C�4o��j["��mz�{G�7𩽻��B��o�ς,���#)��Oؤ"��\��.!�;��-*�K&%���+=�ab=��#ǭ�ǚ2��զO23&����k0|���<��h\�D���`��9�L����$���&+"�)�
{8$��7�F�}ats��i%�6�0��n�B��y���nb=�#'�$�X~M�<Ź�I��Ț��5�����1%$��F���ZA�L~��ξ�;���Td_q��f�%��Vaˍ�1�Ș�1+·�Y$��.�@jk]��X�W�
�����7�[Ji�-\ks�W_�N�)��&�p�|���ƣ�|��]��7��`Zéu\�1���.����o%� ��R�G�0;j�Q��Ƭ �i^�+M�
;�%C�j�W��� z)�|�B�� ��d��%�@Yj$��FH��]��d:j@�_��1q��U�8 cf��h8�tĬ�"?��y5�(X�g�d=��(�NU���)�t��[�&ر�elb�e�Qeˮ�!�Z�KyO��VC�q#צk�]�#�#B�<�b��&
�O��<@ͨE��}Y`�.F+���w�Y���/z|��
�j9�k�谽������C�Iz���
��,^�뛊I�~0Vv�\�sWcSX\�ݐW7h�I�B��A�9ڹ\�qr�o�[SD���sXn
����� ���q�^����	��S���s_a�jgn^��[�����8�w�]��G�
�� ��䐾P���a�湏:
�s��/l�<Ӂ�^T�I�C}ԓ���v|��9�K�..�S$�gd`˘H1nk�*#ҤR(�=:wy��oq��&��zET�PL^���7��2�Ue97��@��w}��諒��cf{U��QL����?�I��bDᮔ}Ձ@̾��;F�)7�K��!��I@#�
6mb�Â_��
��n��n�+�T��w��jQ>5TD��?�ش�/B�`R�iγ�D���0�>q>uj�n5\��P�t��b�]�_tD;���&���Pvs5\	jɐLf���BOW¿T�<&���'lkCT1+�k�4dz��!�)UU��;�TU_U+���9!AV~��S�tP��Ά�v���%�NƆ��{�q��|�.��PgL����w�)���\.�V�z�h
s��Ϡ�|�a+J%��|��[{��v�p��ޫc��n����ể�ϻ�/;o�:�7����t~�{�KH�axD�]p��1)ګ���_7:��ys���~�l��jO�m0�TV�j�V_h��ةY�ku���[ԇ��.��Rp?-���,������i�
��(2��jf���Wr����a�?��d+z��ĖY���E����ijDYE�)�n��t>%�^��j[��0q�����B�7G��j6�G?��Y��N�������D���|��_�بRSib ���n���{x�Bt�
nݽ�
8H�	��h,��<n�LN�p�k뭇߷Vւ啍����S�0hr��V��++������g�
�r?��T��}��~x��yAF����Z�l�����I�Atx���o7t�Ob׳6�1!혫}�w�v��nW�v.��7/�*�Q����.2m�c���iK�E,��D��0���/��_�•Q2m{��p����%��%+�݉�p4EKTAk	Y���Mŀkn�]������.wG�&���:1���^�)�6�XUal�3pgYt��3�-�BK<2}΁�h!��u�u���P�"��"�OV=�l��2�jC��[(���n50�lj�>��p��Z�ך�A6�E��n�=��n�/��	�e&ڡ�p���Ԣc����ۉ�T��ϔK�2ݍ�
�aׯ�$@�-�$V[qCA���W
u,x	�l��{LG�?-�v��Ke��3�D/gv��K%H�Ejˠd���W�U�`�\u7>��X�m+�J:=����{��<�H9
�\���FA/20���#�s하v��䆠���Dz����>�JnbhdQiv��vD���ߑ^��C�3��p|Rc
�X�&�SY��_�ƪ�n�b>!�Bkz�����*�����_Z�_��n�?�V��;��b̿�j�8�{�����࿣+�ı �*��T�����L_Oγ�bD��h%׏�+�$�<�.3xa6N�M>��Q�6�u�~x�$?��g�����?�Ti�K�M���+�U�m�����-��w�	��U�(���d�ĺC77U�.�4W.��}⇒	o�~�1�q|Q
�b�	FR%��O�cY�	=��fA���(��
�x�8���Ǩ�EV�Jw�N%��<̈́�;�"�9F��R�.C7J������%iu���V�/lv�	�
�_]��ӛ;����X���'�z��Q���õ�;���T�w��Bc~<D�'%M�yPFe�wr�<L���9���2><%�m���F�zI��� �8!�=�bH1�+�����
�qt�Ӊ�mӃP�
������Zu�}�y"$u���Fq6l���o��'
����xf���W6P`	^�؍{Ž����d
^�*�%�pC�G�!X�T�ˢ�
m�Z�t��i�/��	3p�
�L>�(���q�y?�ЉK^�-Ń௃$;K�0���k��SO�;��)�¤K�/�`��9|���n�6:уe�˸���ED��V�����W?��/�$I�񎴛��w�ό΢��Z5����̄��RdUBy}���������×{Ϗm�*��/�e{�y��B�@�"K�؅���?��ζY���G.[A���z�l��q�f��g7c��^j5��ZG<:���Y�ϵ��0���{/b'k;{��'[��/D�ň4e�=���R�Lh����Gt����a�H��lqEl�Rvv_t��iw@�|�Ҳ!��ٮ��s#�E�55����������睃�7��U2�|l�褷��ښ�Ϊ����7=?|ѕ��''�r�_	�����zY�h�����]]%6�w��em�i�W���cec�f|�$o�S䖭�� ��i:�B4����ӓ-d�%�
Di��T��Q��
��á	,�{�S0�_��^���(��Ț#�>���h��|�f�Ǧ"�(�π��n�"�m���|��8X�K���`�8$��u��XUO���
ٍ�VD��!��L;O%a#��JKɷ,OՐ�8��A
�{��Ȋ+x�w�n!��J�`>�U�Y���AB�1�[j)���,�bz�@��`\%�m�!W���}�3��܄h�z.��(��w��Y������h���׷X�G��|�B�21��<n�39�s4��`�q�3��s��s��O+�����z~��!����	f�[&�S��l��uUj���r�P��=��ϝY�_����
�l
�}�Y���$`V���
_��p����&Ͽ0Q����oY�_�j�f���aU�x���o�U�'<WZ�[m����•]����n��j@�Cld��F�Cl_��98��Ī������>��y��6,��,k;�������Vd��~�|�_y��<{��L�Oc��{�y����Q:�>\�Y�r�,�f�x�(I4B� �7ez�_ow���K	ՠ9t�J�?�`�	��yb��리
�Ɋg6�]\TI	d��0Q��O���;�~t}�R#�3B���W��6=�_i��;
W�W|���pw��>�_���7���+>z���#�Uf�����W���a�ϔN5�x&�$ht�%�9s�jU}v�~�������дEuy�lf�'�#�W{?��ޟ����W�o�M�*^L�����<r�� �YGm���B�.o>�����>oS�O��g饘��p^���n�U�α�$�&�A'��}�/_�o�1s�Β��fm�~�~��?�o?{��6lγW�?Ž	 ��X�j�߽:�}�����<��o��O���q؝��Y�w
�(<��yv���K	�ǝ���tX�9x�
���=x�~^6�8�3;ch�w:M ��:8�;.�:^��fC@)���v��Y�HV��lt�s���f�C`J_<a��S@0��zn1} ��Q8�<�0�7
f[��4��>ow��w�}��J�8=��B��(飗hr�Ŀ�:K����!�
3�`����G����I1��,n$5��=�P�$����^8g4���p̰�
:I>�r8�P�����l�������2��Ê�yBN�������v8+ 9䦹�#\�:��׾k��_�t��_�3���t��U@���#��룕G���3�G4+��l���I49�FA�J�C/�&�);�
'���:h�Q~�4]ڂ��rD���l*b�Z���?vz[���c�9L��
h���/�9:�\���67G)qF��1e�~��A�g�����-����:������w��o����Q*�O%��[�)V�܎��Ϩ�
��;���dETYޤD򵨐�����|\w��hj��E���=���N�'ϸr���T~�d&s҃���B~��e8FW���C���攲��&���hl$�K=!��J��J����(c�\����1����=u�Q5Z\p�}u�.�V���90,�B����ڏU�?��8���`a/�	�1jp�z�����Yv#���D�]R�N�\(YA���B��n�V����^M��5h;�n���n��Z��)'DH�������;�rZFEG��*���V�P���8<�0K���5��'V5�,~�U8�Z�!0i��eB���� Q�.7?У'��յ��6�;���[��6�&N�W�ů�:'��
V���\��Fү�a�S<�
��l�~߂���E�����e��mf���d���_�$����Q��hPd��!ؚ֪��j��t OfyV��9��L�u:<LP,����9�����0]�%`Jҋ3?�1�������2��,�S��4�#�A�FgJUcH�x�S����8�y��BVKxY,�G��*���x*[�n��X�8l>6�ep��w�n��[�.��I<��ho�w��E�eƩ���Q'����L�����7ucUY���xt��ŰG��v���W������y�)�u�C�6
�n�����Ð>2���>�sbV��+��6��ߕFEU�F�D+�dy������D�i4�ھ���
���|�10�Gkl�79!E�#@p�j��LՓ�H�q_Aqgv�禎=�w%ף���QQ���Ƴ\��)��ZT��r�k�n5zJ�IֹO�+�~��=ё�
���g�^���k�Ю2��]��tSN�
�������M�2Wq������r��
g���\��͑�\��_r:�`p:����7P���	f���e�2�c���/� 0�{���hV����U���p�L�G��^��%�Ճ�Cd��,��AuH�l���}��jgem�P�<5y7c?|��P�/\��~�Kusp���;�B��A�h1z!�[�ުdƔm���:����KCw��b����2+�9������R��3��=�_M��O�{Rzb�1!�iW�'�(J>ə�x��ҙ��d<V��))=������������Am��~��tr0�a�i���Ĩ��3�E;U(� ]񐂎�����$����/��mÈ^`
����Z�� �v��\��o�v��;����#N�uԯ9G��\�4�/��
^2��Ȭ���9ў:������h�C>kpO��L���?P�L'c���'�}e`�W� P�W��''T�5t@����{�j�ݫsS��-��b��Q�0�����R�)1�HK�F��'
_*�Ҹ�i�0?i�*I��l�:��j��iyK��N3[$F�r�f�5�Q�Rx�]-SB2>�pl�R��D�Kn�ne�l���
�}�R�Ҷ�r�+��`La��O
�P���	N�M]h�p��'d��,\.�R�e�ܻ���w����gQ֡ut�3�M����/�5������q�^8S%H�n=�E���k-[�����S|�ȫ��&�C�H���]Mو)��A~�\�`W�,,m�	��q�9�9��)w������)ȼr�����J.�c�߷d��"]�z��VE�ϩ��sq/�G{�p��;e�P�n�jm,��t���@��ޡ�T=�{)�o�s�������)�;��{.��{R*���Sl'�&�0@�(��a?�$���l$c�bA!+]\�ҝ�fl�'J����e�Pt��<��\/��7cQ����~��Qo�9=����VM0�'�Qp6�O������f3z�����M���R�d8�	ݪ��8��;?�;E�އQmn.ヅM\�'��mO��&pO��a�o��<Gd\&Ap�+[/mό@,Lj���d|��}%h�l|��$�m/��/�>��?>k%���?B\(x�-�Ar?��ɘ^��4d�&#̝Jm�CC]���D?��0�&����f��b9��l�~��#��&��k�w����o࿰�g�׼����׼��'S�Zv�f�PIlTC�o�����{{��7ejNM��&�%��Bu�9�BE(�\��d�'�0i�S������$�ϰi�ᑊ	@[{��o�k-.�"2W�U>�trv��^yZ��f�!��q֋.�.	���I����5����պW��������ܰ:9��8E[O}�΀�U��:�ؓ_���i�}Mf:<��3��0��)���^@j&�NQ�Hq?�|Q�Bd���m�Z���dN`�Ѩ�뷚M��f��J��UyD�����#e�	��a;+����Tşp�RI�Q��۝G۳��Q��*X����"��"�|��;��Ŵ���"tE[�QP��pϫ����a8�/�,@�_d����M;�1��a��tX苼UmYtK�x�4B�0���S�G�u��s�5	.�jA	%�8"��=�#/�+�7�h(����U8�1l�Ar���sD�B�s,(��X���Hp}i
���ì��*9{��\e�йZ5ɛai��3D|���$�H�I���;�{:ݨߑ�tdz�0�n���C�>G���=	�t!s�SF���נ'�-�v
{��d�wJIɓ*#'�n< ��3;w���|��ڔ����P��� Є���&p9���
��9��oS�az��F1R��H�ә֕O�R��B ���T8�����S�7:���3
6��x
��
[w1��j��jC�ٍb5!��)4�۵j�Ξ��{f�< ��Lj�6�9�H�:�� ��!��
9�Y���8�%k��c� �Ƶ�873!�/��4H�]��HF�Nb���l�F��>8�v���Ʀ0���ߚ�J�z��a��y�;E#�pЊ�ҟ2gs`���c��|�v)8ʭ��q�yA�$e�Z�ą��d�$%��U���/?X]��77�O�ŏ��X]7Ѡ~T�FTA�yQ����0��k�L�5.jgH?_Ӕa�k��gL���a'W2���[�᪘�o,�)����rP���(X+���2��H�� Gpr��"��[Mps�*���&�	)��p�)�Ѳ{!��$"����K���h4L[���=�FC��jo�K��'�<�K3�3	�b�n�\2�-�a&.��
�-'��84�7���Y�{��m�@�D�"B5�m������ϵ�
�.?��u��CJ<��g�&�Z{+7㌾��f�)��bK����8��Ʒr+��V#�4���y$�[)�����]��H
�z?\=9�6�U�v+�D��I�Y�߼Vo�7UoV՛c5��4�MΣa�w�T�8��dM��a2�b�7Sʖ�2!��3�rU��Xr��|4�%�,��lV�[_+�����ʝE��������3����7���}[��~r
k3;�֪_%,�һ;1M�����&6UG��n�������p�p�b��ݼ�:���jU��Er"&2��۲f�Ge��1G���O	�^��yv�r�b���Ε����d��nf�7�b6��tB���bƗ)
q�����R1Z*/��Ӓ�5��Oqa8��ui��ϴ����1QrɄ�dDU�t�3y�P�7�a�*_�㴨�G����x�p�M7���(&�<�h�b�0b�xL�R�(�h|�F����w�;nv��9�*
H�ZŽZ�-������),���ߪQQ�ޣ?6���fʩ�8�҄��F	�p��K�?%9�xɿt��W��N.��A�k?7�I��n*���yfF��w���p�ӝOp�}"���͉��s{�0w���� ����f�v�����`5�+I��1@��������w^z	���ݕc�F(�4<���\��0�s��;k�ª�l=�U��4�s�h)��-<�?�o$��^\[i���
�o��6���I�;�ku��F.���;��o3�˜���^1���hw���<M?wыG���D=2�:E�\�An�Ar��z����u3K9��+6ũf�1;V��ߋnD;��G��r`V1�I0�#�YW#k(DH���=v�C�"]�Gio�C��j�8"�j'Hq��4�dަ�I 3&\
y��*l\G4�n��Ak�d�{g���
��������3l��"8.U�.T�+?P���kx�ƒ��.��L��Fxl'��dDr]�Z�����A�GwU�>D2sY�|���r�ǰ�
���*_à�O&QH8�˸K�*��Y�•Wk���ݞ��O��(ҡ��*�E0a�{`���s���3��жdc�.�|2M�%a��{ۄ�j�&��õ%�G�pL��0��G�q��L(M�1�K��Tec��e2�Zs�co�����1ۢ6��m��w�r�ݫ�X�d�dr�
E
I`E���+��R�����CL.?*�̮���=�b�v�)��]�J���O2F_�1�H*�ܔ&i�Cl���Ў7R�$�+�5�=�/����7�#�{��Z��c�H����U�3��x����ݒLB��ݕ$�B6za���ЩV�i��	o�گ�B�t�������ڷ��m2r�!g�k �u��c"�̠�/#U������Q��rz�<��*Y_�ь4[���.�G�
pjdy_k�@��Z3o(b���q�WƼ_�����*Ulu�i>2�f��|D}Fn!�U������=1{ĝN�Q4���p��ĕ��*-��UI-iVԄKYc�‘Tn��1��5���,o�Gq���jdw��-��C�"$.�#��}FCu��hfHь���Q;8`��W����l��0��0�=��z5����cZ�x	P����;�H>�o+�H*(��wZ'�y������-�u�j:���P�JG�3ˋ�
Z(����LS��3?R���s��Q��r��P�}�~��
�k�5�����~�
�9�!?�"��ZsG�)��-%hَN�g��6�чXy
j��@�v�����&ÙuI�BT���9�!8��<p�3M]�fv�ա��S�;�c����b�S�S��8��>u�2��7�qښ=
��<Ү j
���2}B�[��—�����`��ݗ�LI�Sd~��T0w|Jz��h�~�e�RԹ}�m�(��w��F�>g��I�O�	h�I�����_
Z���W�6r�L	~�����ő���hTLl)����b�l��
�}Y�!$��z�Zi���w�3���;w�?�1柙���r�76nܝ�����0�/�̩J2p<�D���s.��x�~yN���=cuN�t��{rB7�ǃ�A����_�!��QF��f$�hp�f��_����Z{�RIU��?Kz�D�8���iB����X����5���I�_K8�%KÄ9��W��~n?�
�?bY��GX����ݱih"��8$s12�e�o�{���/˰����IRՔk[*�.L/�P.I�s��w��Y+��ĥ�E\�L˿�^o��^�&�4	���1)C1���\�N�d��y{FC�8!~o|���]m���,����ϖ�����j�Β��Je��Vɠ���T^��
��'3��cz�2�WQ�v��(Vzz0��n�P4���u]f:O�b�yw�����CA�OuW�~���F�CHl�wߩ�:�‰UQ���l�c�;�`X��P�u6_Rp�(+cS�Q
#�"���&��B�)�2���,FJ��!cph}����cK?��y��[�`��ވc���k����%��@�jI,E�T�K�TӺKt@�*�_9�x��cP��B1OG��9]
�du����6��bt���0�)L������abY�*Ļ/:������p���Y��@8=�
�Hz�%1��h�"W���O��<O(sqa�[L���p3[��oLϽ�@y��ǣ�^M�t��?\<t�[(���k�?��o�U�h��۬�ok�K����'Xn!�q����`�9��e)���������`�؜
�s��h�8��*�@;	m�,3���dZE�X>k�����T����J>�����N�C�PN�
�������MeV�u����F�y��@V�>=�4�[�=[^��:��[����3ڒ&G+����sY��G!��e�'��,�U�P�5o��	+GLP�}��x����^lGI����?FY�Kn)����5��k�_�[�@*'�	9�S��*�:Dm!O�m�G.���0�o�&iͣČSh��V��$%y��`ZrٔX�ܑK[�%�
�-c�S�c�N䅩
�z�m��k)��U�xeԭp��#��s��`��MuL�v��D4�NƦD�����K��d��ok�)�9 ��x�|�wz�7�������ƒ���/+�h�:��z�D"Y�d�>&��M69���s��1e맏b��4&Y�`�5!�l�E��e1a�y���_�,y�6a��Η�����r{����Bɼ��L]�DӋc�An��������xJb�֘���C��ؾ��A'ES<TȆ�~� X�nH:r�|�Xh$I�O�S;�~�/k
�����I E�,��v8�-oq@��^�z��W@�=6�� �2g�z�}�X$u'��o�D�p:FÊ�J|����ښ�����������7��VL����\wA>w:Խ�}���*}��̩�z�t�ʍ�c���%Q'��K��rNψA"Sч��X}G�F��c��|L"�F��Q�(�VtWy&{Fw�p�sʣP#�e�D?����#y��@S�z�)�/c��n�9INŽ:��{E��9E�˳T�'C���s�#������g[� �s������S쿫+�������;��7i��j�Z��(�E�f�Q�	�h5*��$�p_r�
0�+���{���7U��G���ݩ�N��61�ÏG��|�>8�n��{N��qf%�
�B;�W���PA�-�1_������B�ɧ��g����r���ʿr"M��6��@R�2e��I.��9�_e��b�MN�R~�c(!��hH�+���	�%������m?#@5�|�q���2�GTf�ѱ>G̬[+Ye��a2z)M�w.��&M�2�N£����3K�N�ҹ����ޖ%��
P�7~H�6��X
{s�M_*�j\/��r5-U���J����y����G��ѕ�;���q`Ge�Φ�w;�@]0g[V��@�";KNl��J8���1��\�SUE��Eg�S�+w��&�G��:c}"z[/�n_5�k�{x�댆'�8Ƅ�V;5��1F�<0/�}ٸ��PLX����C-�8��>���
�p)�*T����7#jV�K)�/t?9��|��4qg*�� t�f7*�-p�����p)њ?��\�w��|�C.r��E�n�LU�τ�c��?����
�ze�c���M��H_h7j�h��ş����x���͂w�\Ol�\5|��Jr�;���QL
h�s5@����^A�"��A�z�[�J�6�R��g��;(n:ߠP�7J{���Aן?}��9�t\�+���)lͯ����͚��c4mD���r��A
aF���6]v���u躠��$=T
ƣ��ˮ����T�qbēɚ���t�q�1��P�9�zx7���v3�����y:��{���k���B�G
ae�y`��,=�0�P�&�ȣ��KlZS��Z�ăi�Y抱�؃M|<�
��7�L�`l�g��g�:��c�U_t����ڞ�p�|{�w�ٟ�\�Jh�eXrE!W��!g��ہ�i-��w��Z�`8���{��a�������������N������l_F#r�z��}�IjUҾ]�GN^�!C�}\fѮ��yr��u�,�f��u�@�k���^˒�9�s3؟�W��4���λ×{��`v9�"���Q4l„/����<��)��(:Eg${�P��pU�
8�^BJ�K0
��@�Ŵᱯ��s�3�n�d��J&&��6 9�b��jX�c�%�e$s���<k�k<�:I�^c��!�AI����~��6��x 1M"�TĞ�!�c!�'���-��8��3c�0A�8���M�yu�^��\֋�O@d�T5܏�ѢNz
�����YBfg)̩��RA?�~]H}�y���8�#�|R쵣A�?s%<�a��v�J5�]�;���n�����+�[��ǢSw����~ /T籘p;J���D/[��S�jY)�[r԰c����)p�G���|�򄳔<�uJF��<p��
Q��MJN��W���S{��r����6%����<�kg���w��
���:X⵩|���2����?�FV�����F6�����`GS5>ű�ӭB<2��F�N$E,#�=��5T�+o����a���l�s��s#o*�n��+�a�{�䇩��Q!�1�`����D�s���RC���EH�����A��6~\{�����vK��ql6��%�
D��X])K��lk����b>���#���
?��Z;ns��4\��7EK�u#�����Ly���i��i�@�2��Dͫȏ���zL�J����B��h~�̯��,��+u�[*���M�?̡L�B�YB����U���
(@Q�qA�E�.�j�P@��)pe�I��<̥�U��`%ģ��f Y5�!��̆���e
�Sf1�_����v�F��0B
�Q8�z�%�x
�
a��{�o4٣�*��-<r��4�{i��eݸ�#/�dR�*b���Κʴ�N�@�~�+%�k��u0"/}g}kQ?�й�߶����7Gc���͋�"/��g�0LG����
�h�"�s&���R�ur$�d��		:�as<~���&<j�hn3�C�T�*�BrfQ���S����*o�+�P4�5c>0���"��Ldi��9�D��'�V�D{
��P��nN��9�~�����W���
d4���J��s�CT�r�=�����e`/���
�	��j1㞵3s�P{����Y�2 o+�W��)�a~guuK{_ٳ��&A;�.���!�~6���4ʼ�i��peLv<�0�f>���73���*�-�g���l�)g��Z�&+p4�RdԹ��&�Ӛ	8�����^�We �Qr��V!��	%����	��/���ƨb
�K��d�$�F�,�]m|ڕhx�盾�Uu����^�������w�) z�y7���EdR��(��H���f7�d�E�+����b����<��'��_�%e�\���Ɣ9��a~�Q������s.��R$U��d��Sr�/���q;���_H�=���}���?T�3�p(�{����i<ZB�^�J����y�I&\d�&�!y��<л&�>��3���@&9�h����;�{��J�XV�9�y�R!>S�!yA����N�:k�?Bz��c#��9��Vv҃��9�x^���\X����ҕՒ0��<K�yǁa��*f&^'�fNX�/(8���PO�]�{8fB3�����!�/͜@��0���*5��\�A<�'�/����!VO�+s#\
W�7b�8MY����z�hist��o�e��GAi��IR�U��2=�t�)E�4��?'S;ҝ
�/��~�r��X�7��<Vt`	Wa	7�~˖�˼���lM1C�'�BU����ӦwH����s�^�J��D+S�g�vs��k4�1�K��x.�O'~B���q���E{�:upSdž��2}:9���FQ�d����Kp��L�e<Lw;}]Z��[ǜ�	;�4���!�+,�
^Y%0v��f�f

ᣬK���U9�V�~�&�Ѳgq����ѭ��P	��]��3�k��A؜���XH��z.-��@�
��}�~v
�)�P�W�)�D;����d��h�T��݊e���FPN�u^G�&�x� h�-������X̎8�Jy�4��1�����{����d�_6}ˇt�	�'_q���O���Ł�/�8�gV�u�x�j%9)ƕ�|�m���3��f'w�&�5�
l�{q���d���ٓ4��� �2����n�#���Ϻ6ms��
�)��Ga��W{?��ޟ��R�1U>���j���i;5Y�F���@�6!�/%���N���js h_6	L���s�O��ؗ̀��t���2����0�E�/�}��&A�nM�tz��Ky�;�@`)�D�,��.��A�S*�J������G��
���q*�:��6=����F$+�ɻ/�,n�_U�T|]e�\�V����B���e�
�j�J��;|�_`��|�-k��|�s��ꤏ���:&���R�ކV�Q�Z�J�e6�d��nXwv���c�AFB"�m�[�ܤ���qp,��K��� �ҹ���Ɨ�(T�PV�H>����� ��j��HYDl�Q�/{���u(@<�׻�ۯ߾�}���yv������-�'ׅHi��o�1}д���[��Z!N4�pSK%�N47�*��~��[a��8���^�$u�cs��|γwh4r+*V�K��\��[�ҳp��Tj�a���	]F�w+�
1fԵ��V<h�H>�٘��W���A�C�4�>���L������'�"�N�?4e@p��C�,���:����Q'X'{��Q��/=������0�T�R)=[`�̎M�ҹ~�z2�a�<�2������s�Ƅ��K�K(�IEƗ������c`�,0Ly*���3ZV��)�&��QW\�zYWiv�{�>kQ��N�-I�\�z�
�^z�쉏!�g)\�W�i&ch�*����Í�Пh��nH�D�"	��]����Y��D��s��]K�7c�ϗ����̶������'��c���8����}�Ί�<֋��`~�뢚���k�MH�o�<��#��ul�+x:�v=aW�+�{��h�%�W+s*w"8�h��)ZX�E���!W���-z|o�_ۙaC�V��X�R�Q%g��p��r/�O�p�v��Dp�{���
�u7�[s��VJ�V��5��Ʋ{����������y�gG�py���L��_C�~�eƣ�,Z_/B��$�׹2Xp�xׇ��
����Ն��~����.���z���_)��F����q�0 �"�Y��^뢸�ʉӪS,�Z�JX�<���Z���J�j��g�[y��-e{���Pu)���	f���W�xٮ�,��:��r[~o�h�:�Pe����'h�����O''���N��/{�����J���x�6��ߴ�+�d~��U�dY��b�
��מ5�A�=X(oB2"܀9�p�>��o��
��:�\K\�_u��lQ�-��@�6:l�vX�������ۦfU
��~����ӗm�v����~g��T؛�]Jgl�� �.�b�gٗ���
�r}��l��9N?��v�a�y|�s������G˿�{����W}������Y>^z�[s*�xb��(nar~1I
}
���X�i�\�Q{�4��n�������"�J�Z����Ka}�_�R����w���3��|�o����?����F4]�J�tY��ʕ���X<>,�l�Z�s�_�)�g"���A!w�T��c��BGZa]P��5��,^��hbb�<;��4�b��9 ���2u�d���yz����8�a�R�]�Y�
��Uì��W�ؑ�h}�IZ"U��u��Ӭ�M$��ôT��j�gҕيwK(ee㾥o�T8*�:�j8�]�n�B&��N����c����_]HN9��(e�����YL-�*�gaE�,��[A$�w���ZR&9�O�!��������O4�DX�X;�9�C�@hdr��Z.�U�З^�:G#�D�m��������R�"�0*EC��Z���(�+���a��Ek!�-����bN3l�v��>x����y��f��e��&�2��6�&�K=�|Q�r�6Y�:S�z�y~~�"�\I$Aٖ�s��e��O�B�F�r(����jA�C�5��s6.v���:�����9�p&Ĕz����R�
�C���눝
E�RP1W��<q|�U3�c���M����>�����]b5���'�d��]�F��eD5�:g�†�wH�gH�%���xM?o�@'K،��u*�Ŋ�+���͎C�@=��HEU^���e��g	Ŗ@��.�%v	���<ja�F��6Xs^]G�~�+r+x��`�l[��5Û"��E�XXi(L�07��w�(��i��5�c�%�')�� sn�FF*��Pg0LK�C��{:c�^j\V���{<f0�J"<���]�+��[htEl&�1����a?�cb]�6�\�q�f.s���ݽE|깴펱F�R���Y7�����{g�=��d�^Sd�%�v��Q8Ƨ�aJ��jO(߁�q�Tr�6$Q����l�V�#�C�9�s���Kⵆ\��������4(��C!�@�9ǂ#��*L��4�����X
�c�wHW!�`�5�/,t���d1�;���J�wE/F�W���)%��Q{�:�k��y��ߥ��(EeL��%���s~���f>\�BH��,9�����i�6��)`���"B�'<9��}�!tGƙ��߮���z����N��2���ὯL)�V4\e_7�p�+�k���Bcfj�j��
�h��,��z���*��(\��ܜuA��]T|��
��f�W��G+�yD�1��E8Z��)��(�m�q�mJ\�|�
����/H�RuK��X�/�_5�:H��$�<e��T��g��<�"��Sn��[�o���[�|�,m����qx��G��q�\^�8��}w������[�朔Œ��M�\�='l�`�r�����^b��d0��q[��C��'5�C��*�_&�����Wx��yeOΧ�)�i�Ӽ`"�jU@�pj`��]y���ޒ�b�{�N��p{��Gv����|Lݑ((�0[�Ot&2ӱP�`7M�32[�5c����Qe���;�������#�D#���]#�??v�q9c���¥cnD�Th��p*۫���܎R�Tq�%�>�l��2S�0�
��%:��v��7�P8J*C
��ó!Gԇ���eJζɰ7�,X�y5�)[#�$�W2�M?*�Ct�I�guQ.:{&L�q+����
��n:>#+��I�$�tŗ�Z�xd�b� ��m/�U!��2}`�.v�[
uuk�a#'Þ
C0��c4�9p�{&�6�'8ҭ"@iΊc��wv�6���Xg�Z����ؒ׵rK�qw�g��E��u�c�U�L����0����A�]�Qـt��+� Q��X��h���L8��' �� dª��Q�D��I�
�Kt�°��Rn嗖���ϑ�!��.)��o�����U���|DY�r)Y��7��jɸq�� �ϒ$k�|P,Ӑ��M��"㊾��~��(E�"&�)eXu�.I����5˝\��wK�{K&)��N�V(K����s���Wx.�vJ�.��8��8�eN�,C���c�m�{��dv�LL�}"Qe{����Nf]][���R��i"�4��,sFUNTah��@�,�!�L٩&�PcЖ���W@�U�
�.ِ�(����X�ҌN�
��.ł��C�d&M0م��r:��.$*����;s���A!��\��AF�ZKŁ���94��h��PQ
�ch��E"v�"1}j4Ch��'R�W/W�*��&��K��S��|����7�"b(���<�"٧��,E3��{��@���wI�I�x@>��T��r�Tziǟ�`I�^[�]�Ƒ�tQ����=+����`+<���B�(���%bV}��'��謼.����9�a�.��U�ϹD^KހԕEL�@',+�o�ἇ�Q��X�����l&$�N	)�O�v�[��6Y�{Fpf�aL��E͵D�b�xW牾4u�+Q���w��)��`��r�H��;[�d��Ab7�� \��2T�����fZ]��r	�|��h4��Lϡ�S,�6߂o+���I��)7����e�W�� c�tR��VA㣓�e�Ur�Ϭ(8�y˓ո��t�Ce2Ic�dI
���:(�,1�8�yq����5�E�‡�q^S���`ng-1�}T�F/�����S�_�SKD~�Hm����HR?P�ɐX�CH<�w�ii�����E�x?��48nC�خ�0�����P�{��A�3�0��WdDH�*���K�%7��b���
�1� ��q(~�ޝo�e]����O�����|�wH^ÕZ��l����d�������&�-�в���YR,R�}��A��~���{��
ǣA�9c�e� WEu�r�H���ק��|��C6e�2��p���#�7s,���PLDý�ݘ�B{�M}��fAe`aC�����~Y��+�xc�\�]����h�>�wP���u��;خ20Xo��T��o�M����fSVL��^���7e͑0MzR؃���y����\+�7K�JMfeee�=48n����C\�֔�ùYI屌�<��ȍ��[/��v#W��w�=:��,%:
ذ��SÅ���A�?�+��H�݋kƚ�T\��l�w�t~�=|�y��i�9�=������_��V��8�$3M�v�jZ'�dH2��5���BD�1�D�f�K�,��o����2�~��D�)UwU������g|p>
�a͟�R��"E�Ɲ[�x&�P9�x��\�6=�-vJn9��
�<x�@:&'dHM�*�r��c�̣�K��8��ȏ1�\[4l��l�Kv��i�?t�b,�V���x)�}����#T׳.��r�Z[�8ҙ'���H[��MV�Y��v��̳�_�H1�VX�(�ͱp�9K�:�G.�$�Yc����>���
D�+�x�{��8��$��I��؅�"y[�����TO��:��u)�O�X4��p���{)����7|!,�0P�-O�.�A(����N��?���KOm����U�V�!�79�s�*�N� ���?�����]�B�����B/�G`�0��P�"���������0Y�uX�ȚNF�ˑ��T��K���9]��pO��Іއ��zHq3+_Y/���kHZe}w�r����L]����BG�'��r����W�tаM��rh�$�e~��I;��8��V^m�޲��/|�)�F!zy�5zE� .�g�Tv>!�2B螥`=Y�ɓ\�16V��w�4\vD��?[�ӟf����vٯ�n���O�b�*�#��'t�ڒ�W
:�}�a�j��J��C�vp����ρ�k��R�tN�q�%�鈪�k���YM�lV��*�%Ha��^)A�ݲ���#۝@kԥ��C[��K�
8fv���s���w	��cᛞ[Bm,��.Fi"��w���y��7����U�T�^R�G:����Px�p0���$�%d[x��|<�@^��C�|%6��D�h���_a֦sA	:
̂�Vy�0��d�m����b�9����T��ˆ`��B����&�]�E�w�W�{��0U�
�΂�L����{�0�2�(c��0����e�DA
�nypc���#v�/��(\7&O"��u��˕�)����BQurZ��šHmL��y!�~c�v�����Npni4�='�q�(��,�|5�rʷ��ϼ�%vTA���Z�]p]XoJ����)}�V)�N�)V^�?:DF*��jؕ]�Yմ\�’6a0�4�X`�v���8��mVs��*��ޢ�h��BS�gG0���ĕS��U$z��s9�����s,q�SEHQdF��Cg���aiK0��"�ɂ�A��Mx�*����[�W��C�����5K�-)ʄX�~GDQ�8����@�;�����(s���"�`+��?G���d;�a�-7�_B�=�.5�]�N�aynh��l]	u���7|N���dnH	�ms�GE��K��V(X��$/�kGق����՜Xw����T�'P����?
]$��y���8�્�� xG� 5���0�bƭ���aw@�FP��<l�\��s�9��su+��(�Na笜��u��4eǵ�H�s��ظB6���Qq��TODWr$9(�WV�G�"fD"�67��ˏ7�ߥ)�f�O�����y�G��zY���9I����HG?A*�|z~��K���Hh{!u�YdM&%�+j�t���>`�`aTc��u)xv2ׅgu������iig�R��H�1E�d��V/ý�r%{�E�ƅC�N
���>=C�.~��C*#(Ѣ��Xt��$FT�*0e[A3k�0���~��řYԯ���.�Z�V��M�-�Z���t��;t��u�N�q
��z�8܉?���@I�b"���[�m�>X#f1zu�����8�U��;���lzj��]���E~N���$�[���\�N
?d��Az���&�q���W�~J5(c���`}}=�����7x{#?�]A��h�VgW{\
WL�ً�"/�3�=/���1g���/̎
?ix��1��>�W1�]�����߷�o�t�(6��U8�}����<�����\]y��?V766��V?��WV7��u��g,�O&��,�S��z�O�_�ߢ��vXC���.��‚]�b�YP��>�[��Uua���~�̱��+@%TzȘJh��/�;ǟA&��ӊQ
�3��{*qs5읍�a:�8'.�-��B�M�n�{���5�D6H��zo/8D\s�VtR�A��
���-�%�L��-�xs�x����įi]�EzQ��~��)l�\b���v�Ӻ%�b0s���	Z�܋�|�;��m���ʣ�G>���zG���T=�E7��`Vp!`&��E`UΥ*����"�uZ	�r��K	�.
�D��
6l�(׻K�U#��l��+�*�D��n�Pu�=.,x��R���YE�ŸM`��?��ID��_��8�kx���p����
��b�5��!�DS���p' iIe2y�c�́m�2��A����}�{�y�sx����}����1�s
��e1c�5����M�T�2@���ʩ"唁Z49�W6@3�0��Ӱ���$�K%��4n^�d��d�xk2>Y���?��A��Z����F�{h$CΕ@3a3Ƅuef��qEZ#`�㸥�H������r�d��Rt,k�Nzk�V���Y�[���E��m �h��Z�V
?�б�a�]�՜]oku��8�.jߵ������Ջt+޾[�'ɂH5�l�辤E��s�x,@�~��`v���2����5l4�!���>�hhnbU1iBSd	�l�:9�* ��֓�Jp�Zj��`8�l�^^�P�|{�\%��ͬ�RU4��Q�_�U���:i�0!;��w��2xխ*�����>��u��E��N��T�q��>�H��Ajq
�x���o'~�Z�J��(�?{���6�$
�g�
�<Ӗ����n%nǝ(?��Yۙ�YۣP%1�-$uq�o�
	� %gһ}��>g'Q(�
��BUA�ڲ0� ��ػ���\d�k��t��mS%@��RXu�?�����?�=��C�$i�\�M8��F�4! �pң�@;7]\��;g%oߝ���^��{�����7g��̳�֫�7�޽�����?�;����{��N�^���'�m��7�Fpl�w��T���	��?z���7�f��]�ڨ�cd}��)�L|˂�x�S�;�ٱ�e�S���j�����Y-�c��O�����o�^/���_�鯳�y?���B��'�f�@���)#Y��ª��ӡل��
[~
�z���A�����Y<,����G�2��eU5Q��3��{��IV)H{۟FU��F�+�X��b�m��;�
��P��czv��_H� 7q��!���#+�1~��K�Ϩa����[D�p��<���n,O5�>q3tܔ漥�9��Er?ƛ�lՐ��;yq7�8��t.k
_�o#.����?�;��;���`�џ�?<���z�q��M����Lz	RS�`SS\l���-�B��c��>a�2�/�X��>^��[�=�-|�h����
���<2 ��M�"��ySy����3�d�P�7�#�
��E�Y�V�����irgJ�w�3�J7�7��™a�[�颭�R3Ou��d�Y��Q�����c7N9ʶ�%E`mG���:̲�Ւxv����%�λ��l�K-
v�	M�@(5��E�W��wcC�'�>��≙�:Ms!6�(��D,�+4�Z���ז��S�E:Bpf��=P�@�����&�X�N�D{�R|H���QHK�j���/7�S绠J�8r�Oo3}�K! ��q�f�K����`�ӏ`���f������r(�c���h�^�gO�JD�u%�K�&-6*=e�x�,�x�%���Q�^B�F/A�3��!{L�g�0 ����Q��ϭq��*m�G��9�5��.����yx���F�"�uu:��k�K�鋶9�!P�����t�(`�Tc��b��<),l�����q��M&�wMlD�Co�_l�$��
fa6c��bp>��Hq倅�� ��ʞ���}yB��J.s���,�0���Sc�x�o~:�4e*�AW|N�
{wo��Y?l���c��&*�����^g?��5�Q�7�J����G�P����
�e/�ޟ����$���;zOe6+���	tᄣ8�aJ�rm�����Xz�T�5�ms8F�H� Ǎkk�F^4I�x*�����
$2t���U��H��g
�Xi��#��cj�X
x�+�M���JA^�@,ئ�2h}�s҇N���~8YM��T��VRQ<�;�cmJ�q�����ʴ��G���K"N�z����f~�,W]�׍l��f���(h�+`�����6*��OC�t>��E�
������'��i�F!ȡr홺1��N�)�`��R�e�ŏ̀͆��)��xB�5����\�J���n:�+��Qp1P�q0ݫ�8�}�tfGNz��I*����ݘ�%f0~�&?J Q-
��{�ŏ�-��kdܧJ
���S��i�Q+�C�l�@���I��~^#P��^�A]5`a>Ɋó�Oå�t�T����h0�I�j�On��#׺vo�#��Ĕ��V����D�0FK�j �3�7J�Ei<7�K����[y����Md�4�e�Ǐ�4g&e:�B6XA
�9M]_!�iR�V���5ޔ*
���<�ʆz�rA�od|����/Mg�t��
>����O*��ܠ�Z#Mw�vC���f����/(�@ă�IFj�x��Y�v�:[�:0HP������cp�	���u�+��s*(�Ԋ1�(
"
�S�F2�)Kd@���U�Ԋ�7.^$�{8KA��b<S,�{[Q8V�Q��d�����e$�\�0�U��qc��WJ9�3�C�=��r����]�
�Rï稉�:I��a�'8KL8�V�BTQ�e"IU*I�zZE�M�*WJKS��d��b.C��n'���Z,*'s�C��\����3�e����%י�,��:�H;�Gäz�X�`$��ѨV�A�FF�U���M�%J��AM�܁�X�k��J���T;;Ú�� 0�Y8R�y��#U�y�:��ɔ9�0/s5�ȇ�L��5ց�;2�Q0���2
k,�����'H�HTa�F���lqgb�L�^���#{wO�Tw�F�ݲ˞�a~*7G���t^8A���(
dwV�ΰ�|Q;��� Ќ�JM�H'��j�/(�Lt#�l��[��Ljg��㌲�S/�;X,�e��!KU��a��
¹2´1�+0^
ߚ˺�h�0� �>kx�0�Ť�!,��Y�+��
�e�y��Q6�OpE-ש�����p
��\c�уwvڬ�37q�b�ʣ��P�V姇��P�\%p*v���n��(���ț'�Z�YKVݱb^)�f�a��g��=�5�L`:�/��J��}$�d<�qOf,n�Wlo�e��Y�֞*��8
3v�-W�+�H���Mk�a��>"��	!nZ+OA'����*�IHK]�C[�w<^��Z���SmQsB�Q��C��Қ�)���3�n?�T���F�F�'��7�=j����zp�����N�
�Q:u�9�j�`�(�c��;��O2�*�Ǹ'��h�u�Ēu��䇵���ێ}�	}�ld�U6��G��JT�o��K������+@�:�d��枊���h*��e��c���˒�8��P�蕇���a�d��)�I��d=���D��~��!�w�)P��U`W.��WUc���]3
��5�����j�'��q<��dD�ϕ�~J�ɧO7�F��+��fa�?v��8�s0I�h�vБc���o̰@s�;�IP�ڙBg���2YO��5:���'�A�(<a�k�eYѲ�dA�h3Q�o�xZO����S��㊑;c��;�BjJ�I�@��{�A�|L��{lB�6&Y..�e*�a�Y�,�|�Rd�
B�d{�d^���3O��'���n�^�MW��M��6t@�}̾
��@��ٙ�%�jA`ٙ*b������>�0�=G�Ǚ*�I�>6!������. �� �O2�'u��i�!��7ZU�)j>U������>>�����7͆&���a�]�u�v��8���4+{��}�
Rr��A浆�'p�@uF*����#O��y�^Œ��ջ�Aq�D�m��:��� ( ��JD>(��J��,א��F�AB�����.�ݓ�\Ù�%��`-L�zw��:6�vGa�>�2�I�+G���H�ޛ���\S�GH��7��p�q�!|SN ��Ou��?/HWB�����ݲ��%�*W�ěL�}⠪f��zO�č���[Ѷ&x�i⢗�w�7�׫�^��2>tT�8[��|��նt��@�T���،"f}pj��2;�l����;f��2���P��g+N���LMB?��G�ј�h��u*�Ҍ�L����l��\�!v˞��Q�����0�V�	ʺ!~�@�JYg�tLa�B��PQy�$[i�` R�q��܁[p��1]{�7c��(��DW����sbE��N�MVc4��;Ԗ���Э�m����Q�rJ��;S*�{S%���r^�;P�4��r��v*��ie�,F+[�.��.�<NY�<��� �1�x�7`c�3p||���y�E���J\���n�\>u$�7�}�FY4}>|X���h��r0��hR��n|�l\��c��1Y徇|6^��`R%�`�oH��oWu��_ī���T-؟��`��
�Xy��8e�A��A�
@�1e��SN6u1���Q*�^�CL5c�Β ��%�c�°x�u"�s�՚�]��z
���DU7��\wk��#�I��Jk
K��A�eH��%��
���h�)�Ѱ�jmܲ��S�cA���ɧz_�(sqE������x#�{꘼��X	S贈Xu0�����k�
�%����"pC@R���T@`��Y����Dװa�v�zm1P�тj	Ƽ����V#�sG{�AH�^81F�(�OAxSG�A*��Ad`xg��oLT@�m�O'^�I���*"1��U�6~�4L[I���X��u�a=�����I.�J�Jj9�T_U����gb��4A��F���.{<]�K��O�±o��y���R5\c6��J�x�D�Ns�⛕��^�T����:G�G�NR������q�ê��B�`L��H�~�u�S.��u�B�T�ܴl�>>U`�;����Τ��P������k�b@��|a(.q���47K����y�Zɂ���*���s�(��:P܂e�\�k)��I\6
�|�A���r��ڲv��_�]��k��W�e=��f~Bמc��	��vz�G��Z2�aͅ^�fC�+��D���65A4�kͅ�;��
J��"�T����>&ݐ+��z�����r��n�V��u��0\�Uq��ZU� �:����)�!&��*E���{J�����+�ҵ�����*
��G�v3,�kE臗�t�k�Q�O�C���&w�!3
�H���1pK�.nD�􎈘�MwӉF��h���`��&�:\A4�:�rM\�d�^ �R;�*z�nv��+	׌�k)،m�뮱�(���`�O�5�	�4�V����}�1b�w+F,���Γ�Ib�;�0CG(�ݝ�0�a����ք��|$ŏ�Џ���T���Q'P��Q�NK��a+��LINb'm�3��Wq�p�����|�TLQ����:/��6��_qW�
��&�/��\�,��H)Kd�J.+�k�w���Ǖ���
�l���~��'�h�=	kbb�n
��Dن��.���|�O��
���s�,���`���_{uQ�C�\_��FU�(�j�&�6�1�����)<0KNBg��N�N�?\CG(�θ~����$�����H�`��;,ŝR�vs�!�a��}5}T֓��TfeO�a�x�[
��Tg�y�i'�\pD,3��W�^�։����LY�6�_Ʊ�U����G�F^X7ĸ��`�X�Hq=���R#�8��a��3�A�O�Ѣv��7[ͼ=��m|���Q;�oG�jd�Բ���$qW�T��uɉA�X-"����|U\L��/N�>X�@5����l�qF���i�E@"�V�jݩ�G �}<���B��
�H2��4W�~�E�-�~`�v��d�*�#L�=�@;f�
$v߹���YV+��k�+l���rH��z�Cv!@7���+��A�wl��H5���5Ʋ���G�Uv�3r��|�*r���n��hJ��A��'�Ǚ�\��]R�4�j��	�v�s��@+n���S����0��Ph��8�9���hF�dPC�z�sWz3Uij0�g�	0���u�T+KP���ɨ�y���K�R�D��Y��R�`�\q20�~���=*|�b���+�9�9�v0�pZ�7\�� Q��5�j����G�&�H�9)��U$�A�P|�z�Ø<�)]���.Q���Y|lg�	'"5U'���_�Ut���7�k��M�L��s�|eW�i�Xu=�843(����ٝ*�u?V�`;�G8��\9%��F��>tK�V�Y:*��%�Ն�DqqL9o8Ռ��l}���j&ߴ>��TB������A�
.i�k7#zH��p�`:\ p�j�R��N+N]M;O��j	��uábeI��*��y��;���R��{�[�5��S5��'�6@�Y}��*�R�V·���nP�@�
�z�B���
t��2�1�ȭnP;2G�@�Lu�lK3
P�`\+lMoFID	^��J�v?��ӵ� �TkRu�o�
R
u�A�5N��ʯ�jHEI�#�H�Nor���W�1�f�g*���\>"���Hq�I�#��j�:�ң���PTb���#V��]İ�k N㵙y<�YY��&w�x�� �JA�]���ʰq-���o���յJ̸���,/-���j
N��i��E��/I���ԓ�ȹ6G��̥��\�V�i�H���^d!�W��Oob7���IY�"g3y�U��ᠸc�N�D�X?�*8�3��H���c�l���G}��7}-آ&uB:���g�v��\�g�A�9q����E]�ȜZ�S�2�������|��S}�z�^�W�gF�Mn{H�S�3�6�B3�*Qh��kԀ������
J6�g�(g�D5��=5SS��a���Ǜ;��ɖ>�j�f�!
�L�K5b�D-�k����%ވ`��jW�,q��\5sE��f���$�B�+!K
V� �S�jH��9Pl�q�6=
&˕Y5���#�����2w8�@�G*�ZVo���a�ܜ͖�H���:��3�9[f+�g��<ˋ0>�B�;�7ʠl��b<
�2�`�v��4D�Ff/,�9k��X�\�;�>�J(滋��0�8�H�ש�Ñ��o>v�C����p�C(�J͸K��|X{A0W�i����Q�Rs��
�-0O��1�B�t��y�vW��q���~�!f�,�����)V�����)&N��B5r��d2��ghi�M;�ܺ(�QM�'f�2l-��̏��>�d)�s2�}�5�UqA)��>*0��G	&0�_��PPNդ)��EPk��,C�"�G�d�v�P}qrM��H����KA�+�i�w�
��5V������US�j���S5��b�勦�z�Pr�[����kԃ��z���w��U��W���2�*�h�Z���Q!ˤ6��9t��R[��|����$� �#(�i��Y�^#�u=�M���|1����L]�z駰�?�`:1=#�ҩ�
@��9��uߴ��3Z^��4��.K���u�SgyY�O�Tmqǡɕݰ��a��T�_�Ro'�ӎ���ǣ:�=���y9�ɸKU�^��J�"�C^E���.�U�|�r�dx�+���J���޹��멶e
m@�鲾_�m&Q�Eu�~O뺘�y��o5(��`Y�˫�_T�F�;�l�h˨�Ű����˒�>���vB�_E�axle/V8OQ�8�rC�X�u'��q)B�>C�L�T'W��X�ي�O��;�W\����8D��LQ�7�*�2����qʗ~�M1���'�V���;�ֆ�y�+�)�?��2u���GJ6��HgRc��9y������?�l'��z;���v2�=�����y����wv=������>����`g�?����	 {te߯�[U���6�q}r�~�%^8��$�ߵ�J���7�^�ѵ,�段�t���[�_���ߘ��ݽ�k��������om�o��ŀ�h��!@ƒ9
�t��}0�
��.�S A8�7�n�5@�2Z��-����OhҺ�f	Y��`-�l�2�����7�;O����om,�£1�B�Q�wj˱8�[�Ʊޝ�"d���(�d;�eL������m�c�$n6K�*�޲!�ڳ��|�:4�лQjA��;F�L��*���hf
���U�y�S�5I��[��ݛ̘O��EV6e�*�L��'Y�s����6�ٵ��3ZH:v|��k�
\��rRY�Mu$c's|����`Ԏ�?��$!����)\"�L])�%\d8H%d>h��Ȯ
��X`���b��
�6	�dmI�B�!����u:1L�� (�M�n�Ց;�`�is���6�>�Р�����#ghh���?K��"�'sԍ���?�8z���{�w��N�������sIie�q|b��-�NOON��om�	��6���{�>�MXV1	O�Hp��^nZ��k$�_{�ŀ�;m��֙�Z���ۄ-��ն�8Kq��-6��	��V�R&,�ۓ���#M}]@�z�]x���`V?	�|�I8:�����#C/�> z��><������{!:��(u�e���wa�:�:j@쫨!�Nޞ��9��nn`�i�'���'�)�g'-��	�˿���ν��c���sAa�գ�OX�ykH$x^‰���v�y/�-��;v`��6�L��s�S��tJ���ف�L\��ˇ�j	���\�t�]�ܙ1=�0��|*�E�O]
���
�g*C�.$�,�B��Y�&�s�c�nõ� '5��hT�k쑱r����;�%��X���_L����٥����_}L=|e�Z�HN
=����¥�B:�amO_<���z(����q���IR��/A�>��/<�`���r�d<D(\���/_d�8
*CST�rʈ��DT�Z/��z�$*�	Ŷ��4��p�|_lL��dD��XO�o�Ӷ���Ԋ�A��'��,��~�}�(I#�-��|3	k\HóEMn�H"D|�|�2�S7P�,��s��́�z��ߞ���<;y���â�����������RA��yߋ�����y�����~N'��������OӦ ������mÚ���?�ع����
��Hb�=��R��i�?����{�/O�_�f5�a�teZ�o;���=��,y�^�H���\1��¡�S�]`GX
w�����=9=W�bR	��zM7~ܩ@�)�]&�+������%U��8�g���ͯWR��G��́����'WBz��P!���B�?{����!1��	���
�xve�A-3�V?m�45����@|��Z̍D�45 �����я@%i<�SNC-Y�/G�XlC�U���@�h���b�r4�2�O9����>-n�A��6m/�;�M��V	l���_%�=�d$ej}��_ƾ����Hb����yH\Sn�������y��y���o{
lFLY,�۠3K|�T9jHH�x�S���8�\y��b�6eC	���8�n��c��	"ȫޛ_�_6��tEh�=ɦ�?kkS��i���X��1C�̛����H�O��o�N����{���
�-�ҍ[{ye1����a�0W/�����'�ѹ�aY�A���@��,��>;�խܔ��R�RՀ\�j��}�Qh���t����i��8=��	J�m��'��7��H��<��-y~m�N��֗���E�_vH%�E*�'�J9����bY�P7�������`����%���ޟ�(��p�m���s�k����4�s�y�D�;��fsf/W�p
r��l�m�n��p+���7f.�F
v�=�r�A�e\9�T,�-��}»+>H��'OHY�;��='�.�,��%��%S�闓eI?�V��	��s��˦8U{��E5�S@0-]������J;���s�W��$�N��Rar`�|F:��ciL9Q
L��ZX.f@M�ymL9�~�',W��>Pu�%l�1�t;�#���E�<��f��qK�e�G�>��2h�j��B�#��
�*�"��{��6բ|ț֋���uq78
GW]�v�X�^w��L2�#+�d�M���q�������-���Fl-J%�#7bH�����#[��h�L�{}���V�n	�`����Z�}g�#�[�o5�5��:�e۶��l�pt�}��軆UH]l���.�"s	$�$7�"��p:���cnAQ���+S����!�����m[{;��΃+���l���Q��vC�DA�|��c�K�G�+lj7n�!���wW�Q�PeR�is������43��"��1��wV�V��GI��4K�[Œ�}M��,�;&5�f�2lH5�/��[a3��=�'	��ض�`�Z����=8�h���3o|�/�
(�hIF�`y��q��������la���N��ҔȰE��Z0�V�*�Q�k#�R�Q8^X_��T`��HZ�BU�`م�Qp��5v��U�ش�xLF��T�GY��Zʠ����I�������,�*� ��[�B�چ/�8��������@Co�Q��]i7��/�	~,��F�.k[��l�C��z�>�������ǣжZjF����p�Z����ު�xcƇgف�h���bǜ��o��º_���1��ٓ���^�w��Oɢg�-lxҔ����ʳ��s�7w^������?�?|�����h(���u�f����‘�á� `�l����gpT�u|��Q�[���NO��&y�d�5
[x�
Zދ3���
��m��Eټ�z������Qi)(������vq���L���:�� v�EV��!�/��>��s�-Ո�u�8Z�1u���kf7��7�F�-�gU�Q�r��<�~��U�������?邋��w�z��h�5׌�w/^�N�g��S��w�&�Y8�9}+��{Q[���2�v>���X�V�"M��Ұ9;b�ܴ�W
�X�(�|��e�;�H�_�9�d�n4-s���"���$�[U:�U�jROؖ�O��?}�����~+I`�����C���p���y��b|%�VdY���xR�c0�������(~*�x��� �o}����y@%�c%[{�j0�0�`�P�ըװȷ��_9�=_�P��u�1L0)0��ss/���u8;pbҎ�EW����T�|n��"�8��AC�f�v_`	�P7s�����Zԋ���x�;��]_��1[�*�W�z7�웑�*�+.�e�d�o�i��C�(6:���'�N�21\��lArb��v������%�'���W�#p��YR�!2��6�'�-��C�Y��f�_��,Ha
JbE���YDMӥX
u'�J{��ʁl=.���n�V�k���G��]����r�����UcC%7ӺU��X�H�mY��3F��"�
h�a$|>.��ۋ������vD�R�ۍ��f��5��=�^\[�-W���U��^!ulD�5]}��$&n��m�Q��P��[�c���(@%�q�����.=���Jc���l46�<��N^lT0��d��3��HJ)��kI>]�.4���¿�\�����lYC���
��!�_P|6p���E6�����e(s�o<h�@�&ʽ����A��n���X/�������?����b��Ѷg����6�{���<&[O��%����k��<֣4�z�Q��g����#��X��y�2�|����p�t� ͓?AnZL�x�M��R�u�Ɩz���gl{�n@�O^�����6��!<��tw���C'Q�q�b6�ef�NFxm�������;y�'�I��	���|�<*�}/w��l6/�u�xܾ�߂_Bf&<?�[�
�܆´�z�s�q��q�}yqyuxpu�����y~|��Lv�K��2����P�Ÿ��ߏ^��a�F�q~��W�u��E�2Կ��.�k�3o�־��\s�3a�mq��M�r���j�Z��a�n�ê�����1��U���_�+�ޛJ���e\��q�`X_���5���l�܊<Fcd�`*�wt~~z�˻�^��ˣSZ����.�;;����r�h�j���)[?�|[��zu���nm~V���U>�=�py�b��X��ޯ�^��a�G�{�<ECu���#�=���5`���n[��2b�L�����ˊF����Q���{�z9%������������D���7�����=},�o�֎^G�;��N�4Q)ʅ�t�/�e��ޖ���/X+G(�U�ң҂)
��r\����ˁ��FT�	a�4� *���!1j|�lo��}��������������E@��΃�?<z�KΡ��WGǸu���y�z'��ɩw�t�U
��_4�����F[��&"i
l�Φf�r@������j�A�N��������h
�y�
�|�"[
�z��pX^$���R@g	z�X;��,+쌚�2'�e��Xu���i�9Ɵ�~�J���t���#�˰ p�Ǭ�{bк�r݅�DOKpuU�,�\Y��B�(1��Xdn2W�n��"qHȅ1����gQS58�	g�]D�7�l�B�j[��C�3jc�rD�p�jx�!����C��!��Q�k<V	6�?%bU��njj[W-%�G�,����q[�ݘ��e���Y��\����DQ�O	���WyG��sSZ�(����f�l�t������;�`�7���\��<D��z���.N�?��Zg��D�G���ky�s.z<?ڱ�S/f1����Y�'A��+8_c�����ћ�Оg�����.�`�/�|*�ޓE�ĵ�4҆w+an5�ܐ�r6N�k��e�
�f��=XE
�z	�����-�w�;�"߇����5H/pQo$%H��f��t�'�)NͮJ�]ݺϳ��K1�|�I.���
��I�1�����נ�zé��@�;1u���6 ��ix��VK�u
�gk�����
���Q��9f!���:��O�p+���0o�.#��h1�������(j��c�"����:�Ġ��Y�%4��I	]��M�N�r�y�D�Pc%,g�;�%�YK˥yX3��Y����o~��c��AQ�<L�/@彼�n�@��>��T>絺���
�q���a+l�]��ݥ��m��)hY7������n����~[K�؛���2�X3��i��<^ՒT�j�W5MyJj�厹V/�n���7�W1犸*y9�?����K�w}!;a=��U&Kԋ�x�aF���/|e�h��F�}�@9��/̎�d$Զ̚D�������|^X�3�V�&�2�w̼��ծ�n�Q�Vi�AvݭX��?����P-nJ�tQ�2����b뮚w�fw��	q�G�h�z��e�y���p*
lbUV7��t*5�2�Q���[98vwž�1��,�/
ՄYe�M�RSe��u��^�������2��|`�bں���\I��Wa<U���6���#J1w�P��V�Q��IdŘ�_�1Kc!����Ʒ���/����~�>�D����avj�Dݲ���	�G���� �2hy�nɭA���U�ɇ����/���/NN;:}��.m]�`z:�6����I?�O>�
fKa��l�<�L��DG�T ��y�Ps�d�C���ˣ޴�bIl�EY1խ���im�d�m��݄sEH�+���C���ӁEư�$k[�G�#~�L���13��Ȭ���Y/�A`V��&O"�M����T
��t�Q��E�7��J�ֺ�ta^z�@�y2,^��]����7g�^��t
cƀQ U��vC���Ps!���bJU�_N����jI)��֞ax~򦷆2�2I��0c[�T�D�v�ׇ���;�p,"�N;�l����:�dΤp�)|�j!g�OUؠO����Y�Yv�� ����;o� 1�\�l5������c��<E�7G}.�'E���nP���Wz��ޜ.�*i��0�/�~�x賆)�Hf��K��k��W������T��ˮ�%�(�q����;�uٴ[�m�qy��P�aU�ab�["��ɺ�|�9:,�d���k�d@b�HC'�K���x~
�۲~�L#S2��uiPױ��Bߴ�#7'�b~�,qBvy*�!��2���
N�bF�.�C-�@�#�N�/Xʐk׍-��L�h�C�΄E
��GK=	��p�`bK�.��H�q.��zo�,�p@Y��L�7�b���t����d.<�'��\y^p�0������B�:s�=r}o�>ڈ~�8㌒UJ�O�#����7�r����Uf�t(;��m��뎔��X��/q~�\��Wڥ-@��m��
ZR�\.����!���{�_ѝz��՗��2�p�b��*2Sl��i
aXZD���%�yŀ6��k<*Y�W'���%6%H�����Pr�-i�0=����5[s�����tREm�
԰j����M��2}�MI�lii+Ў��ŭ�!/̮,mK��s�ϊ:��V�5őYr�	�����Z��%����#~6]k�<&;�C\n���SQ����l������O����UC9���B�Mj����mg���(ҭN�w2+Eb�;2A�����6.	�-�i���PT�2ګ܉�͝p���qDo�Y7�l঵r�6:lo~�ڸ������բ�CA�-��CQ�I�j�7,��,���������o�[{Ё�ڋ�^���"خn�W�J3�k��-�u�g�OӅ��4��N����>ᣀ�<���Ч�
�$$�u��g�u��Ԅ�1��J�b�WL�[�#��d3��#<q�J�'���T1��n�ҥ�����_+I"�&p�ӛ`����@�c15aq�,�]]����w�D��4��m՗�|{\�(�_��$i���/�eC/i6{'�P�ɏTP��ҐF�U�P��Bd5[3���CFE2�r�%��eJJ��)��
�NS8y�l�3}��p�Y�jc��#����m]iV����~[���/6�mk_;v�[�� A_U�����/��e�b�t1Wۍ
�_ߖr��~*�Mӆa~��l��>��[��$�1A_J����/氙��[R���`�q0���tU�G�����w0��ˋ]^6���M�^w��`�rw��eJ|�(ǀ`������d:i���*�>tr=롫x�JR7k�2N�!l�H �!���n�}�NLbgv�U��q�Jz�|�V���E��
��6;�ll����gt@�(�d�WܲJ��Hs��>,9��)�"6ðlSߩ�F�=P�5�ª�
̼�܆�b���z(�uۚ>S����Ŋ�Tw�k۝�+�!q�#f�� hos��o�GJ�N�eFk�#=��&��%���L(�A#���+�k�֤f�v}�YqXe7,�B����%E����45Y�L��P2<|�0�U��@����������=����9�O	��
\�r/��{�J<,��Lp��!H�aI^U�����$t���Z��V�v�?V�����0��6@b��G�*\�A��T��(	�n]��-9R�^�Uc�fU8�������*}�����gz�9��"7%��j�=��I��a����m�^]8��H�R#[ʨK�-�쪝�]�.WI��&{�ѢHP���Q|Cm7ي��Aȧ�S͢k,K�R�����/���܃�}Jj�or�ѐ����TA��α�s�����Ҹ���ܶ�
�5���s�{<u.�k[��_�-kS-*Z�S�
�u��ϊ���|��G��7
�_/�'��Z�χ�y����j�>;���"2�ʇ�@�=L�gO|u�믽�+�&��I{�R͉��f�D���o����}f��@�� )�m=Pz�m=�YxF�5��3ph=�ʃů��J�4���$��Y�	��T]������#����]_��O��#'s3�>F��L�}ī�{���Ωi�L�4韖����j{s��>�*�w��l����@�ì�7g4�:n�e7m񜆠��hΌÓ'� �h�����;硷�����_q�@�����ã�_;�ϟ�H��%^Ł��H8R&�n�Y��\|e��y��ׯO���V�q��ؾxL m��_����C#�lb��+�Y��²�� �Ag�t����@�Т�R��ʱ�[j5٣fX~"�E*���	ƾG1�dEHm5��޹'V���蘹��5��"��	���n2�r�y�¡+���'��[%���Q��u�5���Z1'{��]� �7!�͹�O��(ʤ�j��[8)�F�N�<Yv�,꧱3�;�0���ֈ'�}�ޒa���l�����D�\ܠ�<�x�B:|"��y�l\�q����?�0n
	Ƅ
�j[o}�|%A2f^�Q��X�*�y`+��\�o�z�:�xt�Z��hL��F'E~�֮AqG�÷:�p�X�ʰ�i����m�tiRw���d�(ǟ���T���)��T@�Yp��i�e�{���^ÈAal����i���ӯ9���tt`����;��"�PzX�b�[��[�e�3������;�r�\m�v��d�k8��.l�E��:b.��G��9���l87���-[{���V-u�bB�pH
z�(�,�K5��k~ќ{���\���7ѡ'쮵h��j'�E��^>ؾ����3�eu�C[zp).�x�%��;q��b��wMy�ʥ�,)R�5GT(�9y��0�t^�gZ@X�:zUuk�֕k���'@�2�wF��Ň�%�Ѽm�9+��YG�`H��3�4;@q茄��zN�
�;���1��q���'G�0�'�܅�mYI���eI��v��2�)�V"c'����k4��&,�O�c=��x9B
��
�a����:��L�[i�S#���U���ϒ�L�GI��/E\��+DڶvZ_E�&w���
���(�-����R�C%��7�˂^�K$j��!��<M�[*�GCa(0&	����	�x���%�r�͜��@���M��t<�"
lA=��B4��ϡ6k�4u�<i�r|���\����|�m*i�]�y�c�@�<�Օv��R�kT�&[
!�T�1�ӟMH��w���&�������V�(��h�n���)$
`+ҝ�0��`�#v�Cr�3J?�;yd�܅�5q�:�EQ������TJz5�.l�N�ܺv��R]��F
�ײ�$�LP��H
�(\�^�/�D��
]�Y��)�x44��y�_U���śn�gt���衡�f��L����?^*9�]\I^_��l,5��!�q�{��U6�<Ϛ�庢��g��>̭�za��5�2y��U��ԑbdʫt�j$�6y�Dg�6+�$
�3\c�]��+��V�BB��R5�|�A�W'#6.|yǕ�(��Gu��yE�`���6.۷�(�*8֋��W��Dy�
�*Q�]�qU�r}Ez��Hb��Զ�oX-F��	,zbpLL�����-Y�񱆭�/��go���F��-��v+��b5	1�dyquqse51b[��C-I�|^�w��ػb�I��ڔ<>��^N�Q$A�/���m�΃+��.���}��n�\p��2���3���C#3
S���S�ye���҇7��`|�O9lu0��HJ�����i�!��"�u_>5+�6u��9��[f	nŊ�Ҳ��ttx�[+g\�>��hN��9�3*CT����+�<ՉR	>�r_�ҊG����z�-���6o��h
���1�D4>l*
��4ϒVH4.�C�@�O�c=�K!@�l(O+@W��[��>�Z�ה���L8S��I;.��+)gJ�xj�]+�zO/bIx�h!�W�PfIn�Dg�6ޝ�#8JFn�XЅyE�(m��G[�*��)���IJ��ܜ���vq�T��S�gܛ����m(sM�=!
���U[/Q O%{.̐�O��l��#}51�y��NMlV�#㾳�a�S'vY��,�V�iˢ�ߐ�Up}�فsT��hbS�e���h[�-p<6i�,;��
�G/U�ijG��q���<�:O����b������0�6�o�"���91�M�]L�����c�J��60��X�F�Vn���
f껉f�HB7���%��	R�>N�W�6��{�fa�:��޷�_ܡ#T�f������I���|6M�ل%y�	��=�ca���Sf*wƮB�XE��	�#��:�r�8!��8V��qGņ̟�F��,,�m��E�	����~�O�r�$͡�g���Z���2v���X�SM�m�տ�y���p�Ӂ�|9�b͋�����s�fu��viHjr<	ѐ�7ٔ���ӆ���^m9S�:�xa	z��{�dTOKo1����T]�V�潔����o��w����������G�;�&��K�t���B���F��34�2�\$�IF�ȐR�2�>�&,y'C4� ��|���q�nn0��T*�a�ar�E�r"Q��͍܍I���'��*�*@{���pntQ�R($i1�v��D~z��W�cb_.�����yqr�c}��F���w�����O��z%��+=����0�]���ٹ�Q����?K�ޞ����vR��?�j���U������ޕ���n����O1,j��3�Ï@��ۆ�K%Z����E���r�����E(���1�`��X�oJ�HnLBP04�bI��*O��g�[t�RpP�k��¶�'��7�,���]�2���'<�s��G�
��G������
O�a��Y�{���=;=~{N8]����M&n�h�������{@��^�{���D��ō��Q�&� �yP���j �ܶ�X�\�ͦܰ'�E�<dWD���2�I�p��"/���B������Qp!o!A�h6���I�<$��t�y���<'���*�$�8�ʍVU9��:;�<y��~�W7D&�W�7���$���3Ր��ύ��ގ߼}w�p,�.���h��G�/9�K��&�^�[%�=��{����)���M�Y�$Jk�g-kog������k�O׷^���Ó��O'��0
~�(gFa���3��qAuj�]�����f7>zU�]�6�3ץ�W��zo�zx�N�,N���&�F�d�/RO�y�t�mI�E�Fi�T9��0>|,��A�d�,�%rɒ�?�<v���X�7�*��BC��)Z���
�hB!g�8�.1�8��D�� AUu�y�ܰ�jr%�?pY�=�FC���%Lc ���&��`��V=��*�̝R��py�Vp�W�͇�^3�N�hp�$,ɨ����IT�>Y`����I`E��5��<�_؈87��7C?O��N`�э����f}A�i\t���Q���\0wN���m�\;�&!m�+o�ڄ�PX�;m�LΆ9۝�B�p�S��>�0g%��$�7ħd#����إ������2ѿ��bE���%GA��j)�^7�F�{�3�@�<'ۚM��;JN!��vz�@����w�[5Z�`�z#�R����"`��o��z$����_�Dܘ�&=��-��	w�E��O�Q�a+u��.?Q����c�M	�zP�8���jC�:w
;"����,��ei��؏��F�5�����V�v4���E@D]��s�C�rTl�3ؔ
��t�]�aGxgIo�o	I5���W�೛0s��;����'�,q��—@^�|�ɀ�XNn��[I�F�6������:9�Ga_��ߝ�ή�Y�}ܐE}޲��x�m��E��g"*Y���ۗv3��fhn�%��	'�J�o�<Tyٻ�r&8Ʊ����"�S�Җ��s��h�ZD��_A��fӪ�]E��O;Ֆ��q�&��.��yEc�y:]�[�� �A��Q����}����E^�i���Z���z�<@|��6	xA*=MG)5�b��niFd�,�P�ܐ_'[1�lj�9+��n����-�nH�!b��Ln���5���
�����e�~�Dh���畆�>JA�px���6X���UI�E/�T/"i�����|fi<z��I�L<쟊WN��R�[�F�!?�R��.#�Y�C�jņ�U�]u��7'�����ϏO��g��^n�;������G ���3�ڟ��\�������ݝ�������?|��r!OW.ܑ�Q�=���.<�C�ip��
�2�����u%u�g�>I�֑���F}~܇C)MY�;�7�()TB2ǣ{4�-�z+r�ە����
�γC�7�Oo�-C�J6�
�U����_�B��S���d��/J(B�nҤ�{5hD�O��;�����h\ts���]��_�"�-?F���e��Q�>oϢ�f8^#���j��6���E��=a������.��zp�����I@���=��職§)��-|���T	���(8�xg��|�~2d+�>.��\$g��Bt�Id�,Һ;)YuX�6G��� %4�����@��10,�f�@y�b�f(MF?��!yX��$�3��w�p��e~:VDK-��uFW�2E���0�m�K��"'0 pv�(hYBr��suWEx�M]�r�a��v�gM���Z}A��x��b�e���{�>믲���K����PX�1��MG�&�W�1:#�rl�I�KL�O�)�@���	�J�*Uc���±�(�����h��kl�*�p��������
S�_}��ٽ:�?���
`�Z*6pw��$(�Q��3�}y���h�����}|��]}�iQE�c?~;`%���l��_��@g�h��ݭG�VsA�-��/��+���7���N��m����k+HE��d#wv,۶ƣ�X�����$��|�v�I����^<��c��+�2��'Z5c�g�>�wl��ߵ�~��Oj�'hq�Ᏽ���O���������nل��-uj���<B|\�[�r��CQh��������	#��������ɋ���W�N~�=�ng�ᯋ&���݌�)f���q⺟\����[P���>���S��vU�18�ǘj�y�51.�%{���&S���]���!S�����R���Y�P�L9�%���y5�l.��n�#�̕`�w-x	��������{i�����<<�	%�i������hDo��c���AJ6$z���;!5]l��]d0�Z�`�iͽgR�Lb��S���K��$v%�xM�+�4���cy��>;��w�pɭ�2�|�i���������QLa}���jXs��Xࠩ�cz���M������S���X/`x�,f��B���҅����g��3CpF�篢(Nso�F�m޿��q�X�H\*�kX[���'��xug��[0��{��.��K䕓C>�f�F#�Z`{8c��7�)/�����e��-�ʻ���X4�k�S���]��֖8w;'[kW��}o��*3>��q����F�v�R�h��UB��Cw{{�X؋}���e�t;��>�vRw���f��I�I�Pt���(�s���Eה�j�*m|->>U���
K�t���QuU�ן�z��92we%�h��&�\���㣏�Mr,�"��&�����G~��t��{eg2�%6퐫%Y�:<�?`�ۃx@�ח�UD�y��'���vr��]ߛxr�	Neѓm?�s8��}qr�������������P�)��$��e�CXg�O�h�h��S�*�ț��j�4W��3�̊���8��u�YCl�nT��O,�[|���W��XL�
�f�$	Ì=�>�k��LU�D#�����S�kˊ��b�Y�ެ�
�!i���
C9�H�~�g��r��^M���f�R���~
�����"�[r�i	^$���4��m�!�'<�湉�����j��蔮�ON1����1��UT#���d,Һ9�"�Y�it-7��y�T��Y��X[j��]�E�!s"_�oL[1��m�,v4�Tq�_��Z{{zr~bl�J�Ծ��>s3P �r���K�Ζ�'Ls��pXn��i<{e�óW[򩂏K=��UIB(�t[��mqH��U�?ֱI~�-z��.��i�,�I��%�J[&l��}�`��<�ܻ��kz�rl�k� Q`��Z�s\��Aj��uPܳ[kt�%�fWF����A)U�U��WMX��o[�7�Vke����)��!�Z��`$}�u��q	��wg��ѯ�ǭ�e��z
�k&*�W�����<��N�V-E%2|� G�85�Q��5����Y����
�(p��,�ʐmai���+�k�(��kz�?y�����+Q�]�IV������t�b8�94#ʶ6hIVн�a��;=�{�z罒p~��Ҷ!��0�oއ_{窡��1�&�;���$��=�-+�(�� �����R'8�A?ʝ��ߺ���MfN^x]5
�;L�K?X�S�C��;t�>�x)^1	�{L�;����!C�C΁�,��aV��~�.�{��,�X�.�j�)�Y��	�uFAs[Q�%qe�i6��.F����.ԺgUiV]F(�U[��R�r]��yz~�L��c/d��/���衭��0�%�"?�=7�]
_h
��LJhC���ϭ`�I�8$���m3͞'����{�2���Ӡ����luԪdv0�I.���R#�/ K�Q��0�L�:m�I��J���K|AU�H�2wS���"j;`Q_��R6RR�f��S����pi����汍��궻��nu9/4|�%Y��wYG*�U�@�yNu�t��Y�r`������oǽ�ˣ��-�#�,�13oS����%��Z�R�so]Qᠴ���qeF���N\�������S��l���y8�M�-��2R)�Oi�
/�k�H��+4�I
��ɵ���G�4�r�v�x�r9MM�༟��ߎ�_6��7���K���٨���:�#�S�C�>�ի��F�i��E�`O�#�Z
Ci[�v�90_[ы�TeC�L+�����p�
����x+�/��䏍�x�1P9(����V�%8�T�P���jst�sUۑ0��z@��ȟ3G�V9�H��HF�(.����Ֆ"��)��sϟ�8�����`��!��&�#N?Μ�@V$��'m�ak�O�¹WM�nEj9�{{ґ]"X9���j�HT
x��_��Ĝ�]�gFʒH �XK�q,%u*;�9����k)�'�*�Дs��,Q����--��h*�Y
,�W>��l��}�{�Q2��ʂ���C�����j�o��bl����\�#��1� �P=��z���Ua=��M%5){�������f�%*�3̬��ݩI��ا
rj~�IӼ�k��T��@�_1C /���J���[ִh��.W�J��Z
-�>ώ��"M�*�b)�.�2�Ϗjr�U�"Ƨ��'����[R���L
���\}�1��EiSo����Q�o��K`U�B�XX�~���|dY����<��"Fd��4C	L�Q��g��u�.�w�V�����g�"�AL�fO�ۤ��Z<'�@�c�}_Q�`m��	���X��(t��~)����&HJ�^���d��:�jc�*1o>>��3�M\�ޓ��A�o2��q�/�]�G�'D��.Kvb�7-oe0%M��6������l���HB�R�ʊ'��rD�iE��R�H�D������X���+��l���!y�/���}0�Ɲ��1��jP�e��@�ADQ7L���0J�1}@���}
��|�������ۏ$�V���k�?a�x?7ee���JI,��;R���%JCߖ�KD�KP���Dj5��b������VmK^���ˤ/�t�Z$iƈ����KX��&�*�}�=)?[[%9�lޭ<	�:�z�b	x��!�P�zɞ��:Aڛ��jH�&����qro`ti�|�"Eu��_J��7��3�ey
!l��{
i���A��]߼�{���8XD9�"z�_Z:>;��?uvm�ъW��4��]�='Yn�³�4�<�o*����,BM��g�x��ɧ;�1׼��+��>
�#`�"3sL�W���K�a_�މG��i��`L�����#��R�T�I�Y�{%Q��K�Wè y��]�'q��J�s���U�=�c�,�M��h��%������wzz���?9=����ѫ����jO��n2�~D��2J(��,Ҁ6+y�](v-b-&�r&X
��	�m?2Q��n��a@��6��.�� ��[u�=�-� q�.0���U�J�

O��Q��+nG�R��R�M�Z�n!�l�#��P^}��j��k����ޮ_�ۖ��Z��[�
2�U5�
��gIY��J���>Gc�|�K������[�}��U�K�Jum���?LIot�0���A��yxݧ���b���jq<1���s��1�%� �>��Ak�WIV�y���@_��[��n"�m��̦��f1	Ն6�Ve�N�	.<J�C��,T�Ѣxՙ]�k���Ҫ�e���ڒ!�~�哮^EJ���ƒ���ʷ���a�&�5��S�s��$GImcC�}�-I�9s�N�YG�%9��K�$�9�¹���3�r��"o�M�����nma6�<�&%Ӥ�R�V��N1{�w��n+��x�q��h�#�]޿���.pݥ�<����hJl�D��Q]�0{LWt�Ή����A��<���CV��&Z��i��:^9���3�8R�4��Ӧ8���9O�G��f��H�K� %�e{9P)�n,�0rY���Z�o/����_����u�Ϸ�k+�&X�0ˬ�۹��z�mC�I
��&1@��QrgM�-e���U)�x�h���Zi�L+��3��.Q�����D���𔻆�20����`�g�	E3������p)�#�,��&$����察��X��h����رZz9��zVCb#����J���<Ө@T^b.M)�I�w:3�ўgMd�/_�vG�2V��X�롋(dl��E�\�߈��I,:h��1Ɓ�L��<o�5�2Ԗ3��l͓q�W�R���ƮQn����;��t�5{�Pr� A�Lt��Ԗx /��_L�xw����ʝ��7�>%ؔ;1�H7Cœ�����+@���]�O%������	���e8Ӭ�c$�;����ۚ00��� �&�u��Y��y�����s�
��
�-�N8��&�-�:z�뻣_{�-�Y@n(�Gޘ��,O$��*�
�S���%J��Sxu�19��eE|�����n^\���Ɛ� �,�ܸ�
�X�:���8[$=G3�֛+<p2��F�����i��T��✮�v��i5%�W4�z�R_���qi�6�Oin��f��d��J��[�`����/��̜V-yI
�*O̊�A	�zR�c-]D��(�l�>����11+�g����_J~��^�5شzs�k��E.�j+�!��uX?f�ż�ro���+��D���¯�s�cEt�Fa�w'��f�Xpq��&��/�)![d�AY%�����
n)uN@�M�L9E
��/7K#dW��j�=I;�n\IG�D�8g���ap*�(�5���IMq߸��W��!T�*��J����N��+R<"��n�x*�.�_�w�Ö�>0�.�
f�ۖ���֙	t�a���#��3O�]{Gs�/p"+ؾ<�xм��W�[����J�Q�e�6ި�']H#൮VI���G$ċ�v�9�KO_<���d���\�)�|���
�Ybㅏk��;��n9��6�
�B��Bt�h�c1��i�mU��!�����`�R�yn������.16*+ I�m+mW/��6��H��Qz���6D�}��� �]�p��2/d|t��m��Ȑ��y$xV�p����Y�^Jl
�W!�C���Z�v���u^P�����n��#��T�x{ٮ�.R���Z�Z�VW��ݡު�����_��_���^]����ŋ��EϽ�qGAYnW���^t�����'���WU8�~�\�k�{��r5���UH�K��)�ų�w�/ON���y:s�G�}��<V.^��ax�N"Ϟ�KkZg�b��rYV��]^@\�y�3��֥�&���8�$� ̅,8�w��҃�z�-�גo?�Q�qqѝ��5�^}��ſ./.��{�S��_MX�'����ے���H&��$ξH�mu�/��Zo��N$��7-�11vwP,7�"Y���/���-~�Y*>�课GQ�ۨ�vQ�'��2�I_m�hȄy#2`������1��wJ)��g��,�V��ikޮݪ�5�m�Y�j���d���cg�視��/��Z(i���M��rM��3��*�s=\�n>�Չ���Z���Ѣ�R栒p.Xի
7��e��x�GI��y'�8M��zc}��?-㻚��f���o���Q\�Y%‘j	k��JuȈ��DWn���c ��f�(W���e"���]d���llZ�0F��!vo	.��`���ޒ���¢�l��������_�v�����k�z[��{0�Rn
�y*���:oŐ���O��.?C�3V�n��:{��)��B1�Fg�;�����XR������6�ݖ���C�0�;E[�$#�$�ؑ�1���?�I�aE;H�Z��jF1|����9�#�&�N���tW_���u�Ѽ�J���8��[
n�
�=
��D
�UJN��i��y���
�?�����㎸�7�`}H�J���>L.V<��f����Cԡ���dح�ST2�
Y��Ԟ(��f���"�?�,c�j"V�E��I�w�N��LKT���k�h)��+�d�1���lV�L�Н7����
EdËy�I%=:�>�pDQ���c���?x��]��u��ev&��Ü�G]��R. ����J�^�Y
���[��si� jqD�Ŕec�}�>��v��Tm͌b�T��D�}|Xy�3�Ɯ&Z��Q���4�
��ʒ�H�O����c7�q(+�R�4L�'��R�>���Kp���>����x���Zd{z��Pb�&)�d{�Xv������Iq��I��K��~�=�U��\�W�D�b�iN���S?+�0�N���ԏ��@�'
�/�9;^�� RVl�R�K�+x�Y� �ٚ�*.�2�YTfJڀaV��-i�jƁ�J
K��Ym�W$���*�p|-� �x�C���Ï�`	�(%�S%���b�^{�HEWP縂C��4e�~�i
?1��t8����?M�

n�az��T_d�j��0cE��&��K��Q�Ԣy�FmɊ��%� �J��H)<��k�Ji�u�]��tgɱYRc
���U{��٪���AD��I�Ӫ1X���E���3��6cz#{�9�u�6�Nf�E��z�Rّ3�4G2����TH���M#X@35s�Wͻ�[v��@�>�l�_�a��˾�s�3���-�������
8ig^
F�rF�c�ѶAȱ�]��K�#'}땢r�|
�k%�g�k�*�� ��j]���|+���D��wz���|�@��Z��r>:�-�xK�����|7��k[0D���݃V��j@�~[E	�9ya
�6�Aj�����dv��	�
]��!0���Q�Y"���p{��k*ȸ������p˱4u��I�cZ	��g�ip %B��E�BJ)-�|���]��/g�N$��/�R�%�K�ܹoz͊er�LR�殘��I�������C�Tu��}��L)����~:)�i�?I(�|ӕ�-��ێ!�p4Wȳ��Lf\�G�'��ch<3ۙ�*a�"
77���{O��l���ckϩ�y���R����/ڥE�&C���|��Fp����:�{�R!�*���ȏ/��uހs���2���0W��7�ø^�-C͊�t��"
ƒ;�l��3S/Բ�fg�B�u���re2��P�ǻ]�^L�k!��X���XfxtmzdUf�'(\#z����M�(sP�H�<GX/ ~:����i�oP�`
��:$�͔q���,I�|۞�ϑ��������#��P��Ƕ�
�Z�L��ߧ-���5�
��q���#@�U7}��4��*^�����I_tͤ�_zp�7�ʓ�0�M׏�箖��M�i�)X?�艍v�yI�+��?�MU�X�a�f@Y*�9mó������V
I�2�'������^
���ȡȀ2��3������֕Bz���`��O���A�z�ߓF�$�%x@�:��6�YP6��B�@�4 H��D���ď��Hkݩ?H�<B�zݓ"�����ʆ��>��;�+��)�!�=x�����Bz��7@���F�6�'_�'�)�?U�lH���F�:"�Q�mH�	�p8S~���ix��ꃱ@aۃ�!�.�T@�܍w������=ſ���[��<O�5���J��@�B)�3^���;��T�3Շ�c��)3��^�@���\�B�V�����l��������o#�ƀ��uC�+��2`V)�M����$���q��2O�	?��y��`,����I�Ʊgt�&��Z{�r�.�����z���o���v��8c�o��|�(K.�`d��@l�_$XƐ�%�DJ�U������n��~.���6�ǟʐ�k�ã]C�!�M�r��4'�A�I����f�
�Z��j%�
,h��0�[����36pԚ�:�v��u'H��5��ۡ?� ��t���Λ�"����X�'V����H�Se3`�+�9_47<��\{fd���z��r(N��8?��?r�t��M*� }Us���5��ڻ�|�w�{��zQ|��=2�P{S6Tk��
�r���E�'{P�<��I2�~H�b&iQ�q���ΊN��sPI�Z���Aޗ�ԇ�_���PC�D+��8ݨH{ߊ5iW��4�/�9�jz pa�@U�n��a׳���Y�>:l�T˭�l��]��ۻCk����얓�h�kj�Ŋ^�zv�8��^��v��(��h�a͒
�v��1w<�]���6i9l����R�J�;�)�8Дtns��(���\r(�|	�p�:�
��#H~�EY��/i��0١����@ �eD�@�q��'iks���-*��'(�+(.�gzZ��,��nВ����Z�����if����[gT��a{�X,���5T��d��{t����.1�H�c���*���>�-�V-̳^+40+2�����l6cM�f���r�\���]Nt_�:-�k�J��x���P�a����W3��_�шB�q���|��w{��t#c�����?c��|�J(��a��n��҃MÃ��,�k�3��!b�������(�F��
I��m����q��(�h�2�鍱�4O%Ǡ:�0���G~ː���k�Q/���&簛x^�I��GE�<��FM�3�M�� �|�bCv����oCI�(�s�C�����nd%=A�ųpIy�b�+�ʙ�|�2M�̯�X�؅H�p��#�"�g���T�D�o5�g7~E��	EX���^I�M�;���	=��LxBw����,
Z,����<��3�d�)�6�e��،L��X��C�zU���6��	��ĉZ3,��¹qn�]4�v���\���zJƘ����s͠��&��\[�Oq̊~CS9h�Qa��c@���gt
Ų��Az #�dɈe���s�t(꧈�F�ɐ>����x!.#`�MK��x*Et�ڄ�F%	[P\d4I9Hr�^�58\�N�E)��x�F8x�,�S��6�}q'۵/�ܬ��>*��`'稃��.�h��t�Q���c�G2�!�˗v�`}+;J1�P����$&k�$��b����9�{%Mt�5AR0O����)���&��$������4h�(���Z
+��Tl��ea�
�H�f���E��W��$
�c���nc��i@a������s�I��+#��j��T ��$j}aWpBk���;�b�j���~���}�cI`���~�k��Y�(܃)P��AL���VF�X���Úp���ȫ�c�u��O(K@X1�U��;(^�x��:���Ux�ΉN{u]<�
Y�>�S�3��1F5���ԃA>*�`{��[��e�l�B�)�)�{H��|��m�y��&ƽ+�d=�z�~��������Y<�?�U�$��q�n�7����[_/��?�.&���}��Γ��I{m����w��]�(�q$*�M�J��3^�Gt��,��x�.��I�ՠN�Z�J#�G:p�x��az6J�g���$�6�2uk�k�|��gn��7����E��B�	�\�ql�y�K2л�c��Ϲo���Y�O�Q<䓚c�����bk�L���o�3Z{�y��Xʋ���\Q��Bs�3�fU�(����B�*~�k��s�L�*������@O
��ʠ)���U+3l��,�����A�x�����}�c��N/�B���s��r�i��@?���O�謵�����+��S�_�/�@-st��ا�<��K�1���ѐ3�
Eȱ�x("Of��M^$9�,���!K<�A������ꑲh�^]��8;�G�'!
w���X�qԪr��G�Ȭ�$�m4�����g�h>�����m<����㆝��(�ƀ��L�Gr_t	+��s���D�pj(5�Q01k��a��Q"N�K]'!�%;z�nZ��b��T8����Ȟ��̅�1�є�fEإ�5^V��(Վ#�ԁ�I�̂*/�z=FG�8a@�(`�O�b1�	�"�б
d(abV !�~Lre���I%��>E��h��d��7��0��o�I�g��M������h��*�}Z�րp.!+�j�aإt�b��c�=}8|�Se�
/n<g����[��9�w�G�̓�@`I#�2�UZԱV��
8�Iꚝ��6Y�� 8�����:�;k�����zhB[v
�s�j��:E�\��P�~�_�K�&�o:��]ܖ�h�@//���Ξ[�T�v	��8I�>	�`���j��y����{���(���N�z���М�|��Av�(0cf��/�.,EPU+Г+W�
B�B�c@g��׆�u����ڭ���[�rDQ�	l�a�ԉ��_E�?�/�6K"T��ʤ1�&���K�*x��]�w"G�B�y�@�p�Z��0�� ����1o
b�J'�,�7	�7� ���(N��~~��a:������ؐz�q7��qwi��!�@{��VZ���Oa�.�4���$�IZ�I��@z:�Ke:�o��oH�
��(��o�67��V�,k]=��Y��C<�T�[ӂr�����$�Yg����`��
��J��9f���E9Xs�`o*�Y�.���:��􅤷3t5k���0*+L�-�j��{��ەF�ǎ���<�Xw6��0��5��)�������ļMŅd��٫�gW�x����g��	��XHD
�x
�(Hc՛֫x�t�ţ��۝x�"�-p�+gl\�t��X��e�(�}��9
���9�ԶJ��*;;A���1-]� ����쑡5	����k�`s�:�Ô�A`���k�/V[���*��o��}��h�����=��C�Zj�&�q���dy���0S�NY����d�{�Y��TLA�0�M�с�@b(�\�"B�6�d,:�6&��� Ē)vB���V�I��*�[L|�[SDϑ���3ND�A�R��xy&4*4���T����P��F)��YW�b񕡛2H�D�����z���h�P?u�5
=5Ƣ�����Ϫ�]+4e��,;�¯A&
�Cd[e1��32*d��k�BI�,��
-�e6�	�1y����PGn��;��F�Iv�c.-7D����F�(L������VU�:S��G�=Y��5A}��t)�l�t/vR�ٽ�,�J�٧��������{�Ԡ[
Q�v�u&�k\������
5�="�C�b@g����x욂�c����g�쥱%O=�{�9��*%L�$$�x�D{��IQ���:��]�N�߆^ŗ�ͬ}�"��%����j��,d-���C�)B^�:�����g�����1�,��DҎщIpV@N,2{{��U����s�eڂ��W�����i��'��Q��L�p�������C�49ܚ��H�-�H�٩k�%��?�4aw$���~�~o���	�$K��A�F��i�LXu�02��E�'T�W��Z6�. �@�+=��ê�����>�a��B�L�ͯ���y�?
��E���h��gmmm#���x�t����=�(�U�&�����孻4����N������ -۲Y
�����]O�u)˗}��D��4��L��H)�X�2����Jʜ�W��,�,�HאQi�rE&���h�8�(G
�Mڔ���y��pJ`Y�����R2v�QbE�>i<E�(�OS����R�L#�1G���p�<-35(��-�	X�72���c��Fפ!�ƾ�yD�N�w�{!��]uX")ta4�L
����B����P/+}6�'�Ō��$��޶�x([B�ha9ÒI^.�iz�MP/�LY��e���C8�U���&*�g�5�c��L��7
�1W�%�V��d$b�ߙ�jW=�~0'g��$י�G%��(]��w���8�.�����o�o�N��ݨ�J��uZ2�"��e�{o)��&6�ܺB��B{�ҵ���M��Ʈ�8UI����,6��d�u��gY��������i����J�<�������]E�y?�aT����?̞�N,PU}�S	���N��S��tϑf�@�s&�!��H;�P��<��AS,q+Q�����X�~� ��z}US�M��`<&�j
��j[�;ʔ����u/��@w+�ʟo0g(�D��h���J:F5��4�����"��f��U��=ުwk�߰�
#�*N��-;����m�tr_`���߬�����h(%�߬�>���y9�
��t�=s��H@Њ�^���2��8���@7v�ۑ�tC��0�׋��������E5$Y�^ēiQ�!����c$3�yP��P��J[�"��<� �erGd��䝎�!_�Up��Ш����,\�=S%e���wh5�[ӷ��\�G
t�F�<�.Y¦#�#PQ����.]tV������P��$���HuY�#�S$��ُ�c��j����br4�i|�����
��ֆuU�(>KIK�Ջ�ٲ"i^����`B��c�3~Y|H��Kj�8W�G�:ND�G��F��g��Z�ּ�����~xs���,�k(�{�=8�����wo�,9n�K&`m�jU'��|��`�8-,*����ގ�4[���Z��_�u���3?JB��j��WX��<>$ve�5��$�F騢2�n�1�Y�U��z
��d�ݜKAs�ě�e��Bo�jS>�S�\/0�vڛ�g�g��BC�֫���8M,�������Ý7{�u�a:^l~ۻ�C|��D'�/6[\�TOқ1�DdG�IR�S�\<��h�ȥ��\L��v�u��	c�촧�b�*,���+�Y������	�h3	f�Y���g(}J�uM��4�t;�tcF���h�V��H�ͫ�8@κ�)�
�x�
��,��
%S�$8$��g�o�S��Ywycc�-�閺�`"��{��dJ��Rm��
]��|�3��-{����s5��1\���P�����L�Wp�δBk����tӵ��^n��Q��s����Z5R�bT7�]�RPk���V�����s�x,�gd����a���!����a�5N�A"��˾7�S׭`�<`6��O��9Z���<�7=";��"���p|ӝ�Q�9�0"y�&�*W�(���
�[^�7*����U��"-u��><1�4��喻d�wMz�?��|�Af��G|5�tl&��H��ZD�*�C�r$��]L�&���D	��%�q�7��k�z�w��z�^��	.li���s8�%�0�I���E��I�06/��ar�=ܔ
-����c��܃�����VTzinv�S��v�ZØ
�
pg9�C��a}�ggÒ�t�ث �e($��%�ka/�d�(�-ij>^ve�	����� x<.���,����Օ�@�W�n�g��y1W��޼L��q���3p�k�D��:������0?�Q�6�k��L�
�_	��|l�6�/�,�hq���%=r�C��15��WG��1Eny
�(]Љ��F�r-��(%�sgk5�L�+�ŴfI<Jq�^��>w��5ʉao��x� �f�p�f�I�d���{�o-ָ��|�lڗa%9�]��H���M�pv������͎�s|A���z�&�Z��;��F�.3�P��(�?5�W�o���9���l�FM��`�����es@��C���e���A!՘PgFAf��+��C�U��h}�yݬ�L��L��g��?/��!)��5�#P�rU�)�P��ѓ>L���f�!*?6+�mƇ���T���J�_�?&��Xq[Y�|���z	8�<c:��8nZS�q�Fx���C9��ӳW�$�?/(��䈼vbMU�k#�|a#�]��~o:O.4�zQ{wK����E-����4�B�mT�A���ak�f��f4��
��`6s�9	��o&�%�5�"鬺�+�!ƃ���8���BN�ײ������Jt����33�p8�� � ���+�X᪥�8���W���z�2��rk�VY���o�F5
vDE�3Q�0r(�{��Bl�*Eɪ�n!�d��n�`�"����"���(�y9���*#��v'+a��b\E~�Z?i��5�K�ٔĤ�(w.��\k���'����3��I�0��I�z�S�;��0�����j6_�,�Z�ײ%}�$cR��M���^E�WC�y�y��*��~��*[
�f�_�ɭ�Z�SL��`�4_79U�H��Lg�q3�x����pޏ�I8g�4Š1��}�,�&J#��ݨ��s�o�����X��c7�S�.�$������iA�Jm�q&�`���͑5�s�
2`~"�(za��'P=̢�[�PK֢����|2�х5^�*��������8|�鋋Yp֫,9i"g_y����fˇ��{iq:9�����T���=$��
�KYew��⛭���}��ݮonw���&��5"U\B�:�|oo�R"
E�}$2��gqK����Wd	�
T^d{�����jtu����(7l^��|Y�E�UY�B�:���y����۴�ߖ��ѤW����qW:ؤ��q'�ŗu�,�ݘ^M����5��R�C��}P�W��z�WV�Mv�dz}W:��x\�(��-=t	4y�d���ye����K!�^�<O�^$'4�#��x�3��i!l�jl�Xk���z>Z���G�|���`w,ۑ��+sdHc+��O�,&���9�	��ȇO��G�.�,sg8�J���l�L]��z;+�0`Q�.m����]b</�LHf��L��.X.5�$���S���=��Vp�iq�q[�O(���I�Q*��|TR̐��-\{�
*�@
����dv>4gcr�Oݜ�؏�	Oo��n��Vȗc���W#��:�/$
֕�r-�D|(�nOT�8Რ��򜂰������+�>m�S���[Q\68UJ:���݁����Z:x�Zq����J��#�/F�?�f�|�4WM�g����b�[$
F������~�RP����#�AI��߅�`էr�W�M|c/r�u�bU�%�j��&(�
Z-�T��H�ٯ~���lc�w�{�??�tr񟟮=��g��=� R��z�	�?P�u���N�O��,��p�O� �F*T',㡹=ICl��	Ӊ�J0�49�L��߈\Jy�pY ���Y�n��92�[Bt
�Q�D2ǀ>�4LgĔ����Y�_�7�ޡ�;�R�,���=s�O���Td�>�L&�{x�e0dY�+C����A�G�/i-{e�A8��fO����SŐ�2:k�N�1�5�CF��5P.�{���6Z�P�u�ٵ��ћ�o8��=��{k|M~G��꟥|��!g�Z.��.yHʱ���=:�f	�}�,�9��w��Տ+�CR���8��(��!�=��
�M���/�<î�n���-�m�n�=闸(������t�_��e�K����=���[��T��d����R�H{�^>G�א��k+�{�k]G�/�\Z�t�w����-v.*1�B?�R��CѺ�u�*9W����[��{�X>
��|������B��z�,/�t�KĎ�5�@�g�H�RszY�~����]L���@�+k�Mu�.1!��Cֆ�F(���o_XvҐ�+�4�x��q�
�Y�t]ِ��ښ�[nR�Ƈ÷Nx��XӒ�iŝ�:K�Ƃb���Uii�F	`~��o���m_�Y���t�X��b�?"�׽�_�>}����o<���0��/�0	'AQ��L,	�_i�"�K�1��O���q�po��)���
�c	,]
A
����,���4#��By�A��y�X��_FZ��`,���$g`ђ�m�#!h*�.]�e@h.�〿)E��896�>��~K~�ȥve�S ;�'���d�^�I0
}�B��w��)e�H���U��10����׻N�u<\�Ul�.�l��N*�t�oz�l���@ �Q:tJ�$���g�
���^�%��jyu��D�v�Ӳc�#�\28�+�	/�r:�[1���L<�p@�S���̷��
Gu��?�\�s�~���p��Y��8���[=*$�h����(��kf�tpr`5o������s�E���r��O�aW��o�F�z���[�(`6]@tg�|�J��X]}�"9��F��x���#�F�Bo��J������)�l�P��.�`gA]�"�`Qϝ�B���,˝��xd��S��܇�~�� ��򆾈C��(�a��Sۀ��'����w�v}39��;����Z��re9�C�j]�&l*+1�|)|J~��^ru[\��dD=����zm5�Ԑ��ދ��������X%��ۺ�,B9�F�?�Aɟ�j{��U
���I=ߩ�d��7O�D�g��S����r��	Px�\���з����V���|����]j�~��izv�W���*�}�\�����/� ���S�/����LD̓fƒ�������6h�ČA]�xvHt	�E���D�,�0�!���nB��L��N�Α�P��\3�����C�\��6A���R�"<7(�"Q����%�(�@a�j��2���~���8!�̤tCET^��-���|�	wD��2�=�I��8��<g'F����ɤ�u�Y�p����8��º,v(u�%��	a��EB�Z��xT���hs���z:�T�UF�D�J�ɜ{���80o�u��Z����}����ZUH�� �YDfq�4c@�eCLӫjJ�D~��<>��Mj:|�"�i�Ɓs�6k���x���)fT̍���c��3
q?yWKN!�v�e*M�"/�'>ߕ+`�EP�O�e �0vg�e��ொ�G����A/����S�+>돚�5��+U���|�g�Ϋp�M�FF!k3"�l��
�=���l��q>��
2耋�,�S:��o��|���v�H����7����,�)�;�;ov�;<x�+n͊Յ����)ED�g5'/q��z�g�I�SY�v4���V�N� ����`\�Q��5�m�U����1,e��ʜ��i�

Ⳮ�?a��=fU�a�ʻ�4��kqK�jʏn��$nyh�enA�ڶ}g"�p���dA���B+�5�﷏���_�(�ŝ�O�;�Rm�b��y[ܑ�]��|ۯۡ.�a�h렳^pP���+�z��[O���ӖG�9EZ.�P���LJ�Vz���Z���������e�p�iU|�⭷��p:*7�N��Z���x��
f�m��/�#�dQ�
���i�߅��C�E���:)�-y�1‚���Zd��*�+eY��V)��o�$��cX�xI���ޖ.�����A�hi�W|��P��ea��_e_`����왜-|���(�m&��%��[�N�P7�[mMA�qn�ˁ��cH���b����5���3��[/��W�4���kg��=�C̱�jX&x�ڡ�f�l���tS�0���b��t�Ȇ��He��Gl,����`[���!���)��w����l�h�3�����j��a�k�F�^X>CK(P‚�Pq��N��̉��,������;��\����W������x�.I�nC|b�!��p	:���Ȥ�Ju�	rcJ�����B/Pw�w�s�vo�I���o��}�(�������2�bl�n�b��|�:�)LL�<��9mn.!�Ik�Q`"�0������6��|:�۳���Vr�щ��ם�U�Ոi���W��#ځa��>��'�'u����Z�J�H��KegZ����wl���-��SnWȶ���$vϱ�|x{�,��n���?�&����dh~V���J��L�I���Q�����;*R��]1���ιH����!į�{V�K�[2U�a<�+���H�GG������@(��$�G��3�����'��e��!MZ�U{��%�	�AH�\�~���w��.(�J�>J4MYje��qp�2@�
��RklX�(ނ֨�V`H)`�B�G�U��:�X�a�.Ђa�5-\
�cy�Rx�$7zk9ˆ�+��u�+��ד�P�PL��HB�,�E��,Q�O-�n��P��2��t`�L��H��~�c��^
.�%��T_�D�HU���y�d��_0c
���	u�w(}M��=�;A�c��%��4�7�V	�s��T���'d���,��^�����j'��p]��2[��N⌽cZ�▬���$��9q*"{O^m�H��k��|�e�AM�W��[�nl��}	U�r���dN�H�ĝ�7I��	\��/�gk�
��o]�bK4�_�X#��5Ň�����;��!�zԔ��K����T�)�ئ�\Ģ�b���C�7G�Ib8���=t��BDZ�B���@3$�ȱ��?�L�j�
���� 8�je��U����_w&)�+8�]��>+�-37K�}n�>�xs��OE�ſ��3��[S�Li��#Z�����¢�����~ ]�.P��`(�7uVY���f�?�)���,I�a�;�G�aU�'�+9="�� �*HTA>DuG��5�s6�GT����ѐ1�`o	���h��T*,F�vI�X&Si���#��R��760��sV��
���k���~���f�����&�d>�
{+ܤ�㷆�8�F�K8�.W�Z�F.g@��x!J<��Ɯr��:�'�|!Lj5/;�F��K6� $%<���<QC;*�V�R>*���V��U�����+<�cACK�)x3�{ y9]����Д��L���`o�o^��$���ߓ��Z������������57��u�i�c�\z��p>���(�r����Q?)I��������_��f0E/�Y�]y��TPTݍ5%_�8B�:��������*�4�������d���?�Wظ��Ư5)��N�/���3`��K��:@�潏Qaޏo��L�,����4'�n�U�1���º��L��q�
�iy�N	��j�����ǃ����'�x�ݻ������[ps��o;tu�5	��Iq���k$ܢ�`|&ɺ���������H�$f��2�8�S\���#����S`ya)I�1Us���%�r'�^���y�B��,<?'�7�<��$<e�:8�T�*	�n��],�m���̝,`�>Y���*4F�����t����8�w~�c�
A^�8
+u�TH՚N�u=�/����j���L�G0vU��g�E�~� iӑS�;跫m�Q`�#��0� ���pRݾ�L�
��t�M.toQ^�gp���!\��o�H�}� �,z�a=~,��>̀GA ���HB$8�
GA+g-.ra8uvbF�@=h,�����<ϴ+ꨀ�7�u��R���� �'�1Y��7bB��d$�p���,7�z�(h=����.<��
�[�`�������R7
�8���9'��:�V ŪStY���� �V�1��$�ĩ+E�B�#���#�C�U	�������� @�����=��V��Z/�eHR'�u8�OD4��e����{k�}nGÞئ$�Lvc	k�G7��SF��J��l��9x�U�\΍M��w*���N�(�y��iѸ𞹻���*��ۃ
F��x�v���q��ʠ��.�Y}V��sD�f�ԯ�${z07�/���5A�4V&#y� ;V8�,�M�����T����a�w75@d�iz��Z�1VRؑ���LX��d�7�Y���|ӟ����h0�M��}d
�D�n`����4��(���(_�!��������`A/�H�|׼N�!��1�����&`�ɓ����ޚ��G��
���^ם�?�9���Y��l���ƒ�������" �����ZKyd5�?��Y�$����q<ŶƗ���㦊�+�gKY���(�}���_��ܿ!�SG�L��^������C)h��`���6�S���<�2��#-�'���x��>�Rf��r&X6�K�V��뾸+���$���RL��|Z?���e��R�3���*�UJ����Jv�����R��}VC���M��	۹���~��C�ײ-4�.n�]���䨶�f�?��W`^?�͏t��g��2�4����t�рI�>�\*�X���u2���e�8�
�C�Ŏ�Z~َ���A���Jj�4�T�uߒ��K�c8nZ��
��U�IG��ķ�4�KC����s���f��GG��:^��O���	����_z���#��Roi!�*X�m)
���ӷɞkb|"�-+,Ԡ���pJN�y�N���)�B������N�W����|$��s����L6���考�>��i���0��,#�ί�VWM�pv�7����%P-
�uk�7��KRs�Ngq��m��l�N�U���l����Z`���o:�(�����D�L�5Y�K���ڴ@��f��:*Ɨs(�.���/+�`[�Km����9:�\Ldmd^�Ս�p��Tg��l�6 `�bg���h��j�ݐ����H̬sdN������4Lg���\̱��/�'��n�J1�1�hXJ(�,�:��r�*�̀@�-u���g�&;o$��VW��[���P@�-���âfOKj~O�%��wK���X��{��V�]mk��պx,��v]���V3���D}��\��{���~w ��T�p�;2}^i�����8�^��/��U�r�z��y]�T�5�;X�[����|x��ש����}cC1�0+�c���J׺,vY�cڌ��a����"������k�&��0
�$'+��,�1^)1�!�]����c9�����]@�F�ijU�+�#�0p�9�v�
S�)�0'���I����C�8&��`Vab�*e��x6��f�%��E�HZ;�MBz�M�q��GN��Wl邊���"ZA}��n�I2Yu
3J�t�d�
�kX�ꗹ�<�b��0��D�亃!�G~J䯬�%�^��p���7�߾E�p��yRmJ�Vд62�U�홛�md��@�������ˊZa�1��r�Ԭ��T�h6�+BE̦������~��B^eByZI�X4_�~�������*�X9ʋ_93��c���Ս'XII���(��I�'�_(o0��&l3���#;F�'����d�">��d� �+d)��'�3��qW'7WtrC��k/����,�҆�Vz/*�4�<�mW�&ͽ�p�]��B`�8�L��1��ǭh���4�Jݺ�?���i������ᨈ<�{U�"�@
���"�<��@>)S,���<���{:�r��Tr�#f:�
��*��.²���%D�d�Z͚!%A�z!�]��߷5�������Ƀ <�!B������G%Bb4�<�ʃip�����<NŲ��"<�_��Rd������ps�s�4!���<��-������9�p�N�.KjdUX�ZD\\{����)��!�B|��`}��63S���qI�#;Ŭ�7z�x^q��S$���U�;c�6�}jr�VN�8�Ŀ!�Q�/�hZ2$���x[aL^A^A�RfQ�j�Yw�NF8�K�т%��MF��W�$$�Eb���[�+�x�@X��e'�v����MKJ�T��������
�3�G�x��۫�i�̴'^c�x�@�$�i̖�hi��"N��$�W�!�e���j��[�ה�f�"�B$AzF��(R�Zd���r�U�P���v��f~~�V��PIeQF[��	�W7�F�"f�
ɳA!�����S �š�2j\iX�t����A���R턚���=�t�]AK�A��DŌ "����D�� ?S������p>��7dX�N��!Y9$���H緧���S8��I�`�!��ּ��<��\>�?˚�ܿ�He���
� $|0(�Uzo�wh6��.
C~E0�z�d]�(����|�p������D2��ؽ�W}+�F:%n�*�'j��Af���=��ԫ��گ�JY�I4��%�A�I��/��+�ލLt�y�L��}��8�N��s��z��P�ؿo�k���V�"�ڸ�����I!$�U
L\����SIQ$!��F3�9�-+AP�Y��)d3s�5�U�X��W��J��=�^$y���g�v�����d[�Ri�Pu���72l��������?���C�D|���ߩ��Lԣ�β�a�l�=�SL�=�hy��4Y���N9\���%�ŒX�������3��������hH�1r�-�G[�H�к� ���Qe+3�Kg�W~pϢ�夵D*�����:�0�*����P���+�oQ��n|���_�!�|�L�vd�_p�D�����}[�uF_����0�]�77�E�^�;5�.�pTrW(`�9}"����yP
!\3&�'[�ޢ��4�>�^A?0���vO���u�]OuE
�>j�p�D����7��Kӈ���ٺ����b�~6�1P0��q[����Y�C��,a%-1��m�/�
��;y��v��/~xw��4���Ԭ��7	f���,Y�jNh٫.�i�]o�ôZ�X�HSn���}�Қ_&�j�a��<R&��Ұ�j��w_�B�J1���+Ny�_9��b$O�CD�Nw�<���z}�q�tR�4h͋��v���16���=�Y��i�M�ą�2�p�a(���C�ݣ	E������~#��0k�lp�iR�K���aDbL����dЅ�-��N~���n���=4ݷ�5#���K#ǚk�d3�8�����jX������l��lu�����6���Y�AbxtV�NɊa)�@/����WŬ'�:,,ӯhS%~G[�0��*��
@U�2�N
�j��8"�&]9�@9�̰}����i��Q�S�4�����A�6Ռ��������?�V�\<?�����~�
,�;�毳�X�kO^�ۙv�x�zB�4J�ګ���9Z*<Ҟ���MG)(�pTv�T�v��
Δ2��j�jG!���~�)�n�YG;i���sߛ��V#���P�{X��ڔ�d~v^7qr��@{��W���R�[.�Z�f�2s�hb#�k��ږ���m똚��{'��e���d�D��7�]gָ�4�f��\fܿ����C
⋞�K��o|!'�́7��Tb�s6�\>�Yv���4����z��j4�yz1`1y�%1�wG:1�T�^.&q�\��u����ݮ1_Lda�2�Q�Nи��2�S"�'�����H��i�.��;�7�7�w<'B�RW$�qz�+�J-[9ch�fuCR}!�q�R�1��w�8#�]g���z�ɬ�
qZ���'!)���9���� ���i�x;�fC�A��L־7��0'�����NO�
�4���A��|��mO\���I�Ѻ;��Ԍ��)�%��(�U|�Ĕܝ��o>&�:#��TL�P�	^�7J�N�|Dq�=�]�ԛ��$�����Eh.�c��m��o���,e�9b-�6���JGa��m9���]7S��dB��j
������H�]`�l�^�3fs��!�F�B87���b
f�x����)�̍� �m-S��GMkU#'B����%���E�^���y��(��$T�^Z�S3�)���H�@�?
N�}*���=�s�yH$�mq5C!5���@N�eũ�'�{���C'�cC@#���O6�v�;�+)���Ge�����Z�P�]�"���\�Α2�%���Ҕ��J
��'�H.b��`�&�gE�D?�~j��*�|Ba��]�bd�	F������3м=e���H�
/
9�K�?�#��pIow�R�F@9�=ʿ)�h�=��a��@�2?��Q!���Ȥ�hS�Lt$h� �~��	�UxN4=iQ:{No�Ħ�4;�0��R5�,��Ԍ0�
�U���q�y�ިm=�q��c�C����znK
���A����i���ñUY��1�(���է��������F�ռt�<:�>�p4�9x�{d9Bt�m2�%��A��?t��!
��h�Y�2ҧ�M�Ok�iן��Ow�mU�y�7���á������;�~5����	q����S���j�^��U�(���t�qN���П�Z�)}�H�Mηm}|Ɲ�<�a��� V��;L�fޯ�	z��v.�f�*����Ƌ�/�7V	�8�?g��YC��2Y_����Yy����v[_x����������3lZExzt��E��D|��n}�9����o���
3��	C�(Qv�59?�S`"��bf�u9
���q�*솮�8�7��S�a�o�-:
H6����$j2[���xn�_��=���ux�~ �����-_��u�f&6�>��ñSfMM�8�59�c��X%x�0�}�-��ޑxI[}@�w���
�O"K�p*����*�s��~awW�6	F���VWe��햮���a�q�����<XnV�
� �y�8D
�/<�����ɯ��z���n��U��X_�8X�'�xM&�E+�D�+��u�o�s ����đ��D��=��Ā6G���}�TGo�=L������]q����c}S4kv	DPX����BȺ���D�\� ���%!��C�(���Qj�Ob���)����ʁ��nH��hݹݯgo�)�GJ(h}��u4�
G�)�R�L���r?c�)ѫ�Q�-';,�*��!ʸ9O�T���0SCV—RK��Ҡ�]o(���|�?�������{�?�?x�#���ߝ�j�dx^�/��0>���@��ԩ{��F�aZ;A��~]���������sQ �Xe���o(.P	�OW���ɑ��1�m�V[
QT���A�g��w6��u�-F����oK��/��ҫ�{@ሼ��=		F��
k���gզ2��BG
+KY��M!h�v��PO8'Y�_���B��������VLlL�B��(ʫ�_��A�Ș���?ڭ!9��T�v���%(�%��`��#
��^�2�UJ�↼)�ٮlpUF��܁������`n��
��t`�*�J]u4��4a�fW�``�+������?�>�|lW�"���j�饨�Q9n�\�_�Z
�^�c������|������t#�����_Pr?��޵�:�͟6�6��`|���%�J���"үI`�D{��+*�_,-/q�]�m����	�t$v.U_B_&+h컽�&G��L����Zl��vogw�hu�Jf�L�lP'd���=���JV�h�s2
q�.g1��p�˲�Jb�ɦ��>�q��/����,3G���	�<��oM�y�,�fA����.�0+��iLUue��U�g��B6��G:֣�J���@E
�Ҳ���`�NC��=\9Қj��@EV]Yz�T��po�<y:�Z�A�e��_�a-}�Ŗ\Y�z�e�GyA��>�w��n��浽gl��a`2 t:!D�i������bԔ���h���럯~�?����Ke�Bchecksums.yaml.gz0000444000000000000000000000045014442217575014616 0ustar00wheelwheel00000000000000�}�de�;r@D�=�^`���Μ�s}�H(G���CH�@�O�z�?������^���~�y{���-�y��x�r�L��N5"1���vNy��}�>��O|����2�Q�SL
cqD\vY �9�-3����ٟ>i�>tM�o8�[x͉]'?Ղ)�<I�u���%K�d�FGn6UQ�an�h��2u;�ZA��4h�Ap(݃ �͉s�i��̫m�R��b;��M�|oK���Vv�J4h��]��Xs3�魄#ԫ�n�is�'�ޅ����1e��PK:H[v��-��.share/gems/specifications/rackup-2.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rackup 2.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "rackup".freeze
  s.version = "2.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Samuel Williams".freeze, "Jeremy Evans".freeze]
  s.date = "2023-01-27"
  s.executables = ["rackup".freeze]
  s.files = ["bin/rackup".freeze]
  s.homepage = "https://github.com/rack/rackup".freeze
  s.licenses = ["MIT".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A general server command for Rack applications.".freeze

  s.installed_by_version = "3.1.6" if s.respond_to? :installed_by_version

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_runtime_dependency(%q<rack>.freeze, [">= 3"])
    s.add_runtime_dependency(%q<webrick>.freeze, ["~> 1.8"])
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<minitest>.freeze, ["~> 5.0"])
    s.add_development_dependency(%q<minitest-global_expectations>.freeze, [">= 0"])
    s.add_development_dependency(%q<minitest-sprint>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rack>.freeze, [">= 3"])
    s.add_dependency(%q<webrick>.freeze, ["~> 1.8"])
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<minitest>.freeze, ["~> 5.0"])
    s.add_dependency(%q<minitest-global_expectations>.freeze, [">= 0"])
    s.add_dependency(%q<minitest-sprint>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[]!���2share/gems/specifications/io-console-0.5.6.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: io-console 0.5.6 ruby lib
# stub: ext/io/console/extconf.rb

Gem::Specification.new do |s|
  s.name = "io-console".freeze
  s.version = "0.5.6"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "source_code_url" => "https://github.com/ruby/io-console" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Nobu Nakada".freeze]
  s.date = "2023-06-06"
  s.description = "add console capabilities to IO instances.".freeze
  s.email = "nobu@ruby-lang.org".freeze
  s.extensions = ["ext/io/console/extconf.rb".freeze]
  s.files = ["ext/io/console/extconf.rb".freeze, "io/console.so".freeze, "io/console/size.rb".freeze]
  s.homepage = "https://github.com/ruby/io-console".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Console interface".freeze
end
PK:H[�ʂ?ii8share/gems/specifications/default/stringio-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: stringio 0.1.0 ruby lib
# stub: ext/stringio/extconf.rb

Gem::Specification.new do |s|
  s.name = "stringio".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 2.6".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Nobu Nakada".freeze]
  s.date = "2023-06-06"
  s.description = "Pseudo `IO` class from/to `String`.".freeze
  s.email = "nobu@ruby-lang.org".freeze
  s.extensions = ["ext/stringio/extconf.rb".freeze]
  s.files = ["ext/stringio/extconf.rb".freeze, "stringio.so".freeze]
  s.homepage = "https://github.com/ruby/stringio".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.5".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Pseudo IO on String".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[��@F��<share/gems/specifications/default/did_you_mean-1.4.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: did_you_mean 1.4.0 ruby lib

Gem::Specification.new do |s|
  s.name = "did_you_mean".freeze
  s.version = "1.4.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yuki Nishijima".freeze]
  s.date = "2023-06-06"
  s.description = "The gem that has been saving people from typos since 2014.".freeze
  s.email = ["mail@yukinishijima.net".freeze]
  s.files = ["did_you_mean.rb".freeze, "did_you_mean/core_ext/name_error.rb".freeze, "did_you_mean/experimental.rb".freeze, "did_you_mean/experimental/initializer_name_correction.rb".freeze, "did_you_mean/experimental/ivar_name_correction.rb".freeze, "did_you_mean/formatters/plain_formatter.rb".freeze, "did_you_mean/formatters/verbose_formatter.rb".freeze, "did_you_mean/jaro_winkler.rb".freeze, "did_you_mean/levenshtein.rb".freeze, "did_you_mean/spell_checker.rb".freeze, "did_you_mean/spell_checkers/key_error_checker.rb".freeze, "did_you_mean/spell_checkers/method_name_checker.rb".freeze, "did_you_mean/spell_checkers/name_error_checkers.rb".freeze, "did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb".freeze, "did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb".freeze, "did_you_mean/spell_checkers/null_checker.rb".freeze, "did_you_mean/tree_spell_checker.rb".freeze, "did_you_mean/verbose.rb".freeze, "did_you_mean/version.rb".freeze]
  s.homepage = "https://github.com/ruby/did_you_mean".freeze
  s.licenses = ["MIT".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.5.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "\"Did you mean?\" experience in Ruby".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�N;oo6share/gems/specifications/default/logger-1.4.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: logger 1.4.2 ruby lib

Gem::Specification.new do |s|
  s.name = "logger".freeze
  s.version = "1.4.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Naotoshi Seo".freeze, "SHIBATA Hiroshi".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Provides a simple logging utility for outputting messages.".freeze
  s.email = ["sonots@gmail.com".freeze, "hsbt@ruby-lang.org".freeze]
  s.files = ["logger.rb".freeze, "logger/errors.rb".freeze, "logger/formatter.rb".freeze, "logger/log_device.rb".freeze, "logger/period.rb".freeze, "logger/severity.rb".freeze, "logger/version.rb".freeze]
  s.homepage = "https://github.com/ruby/logger".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides a simple logging utility for outputting messages.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
    s.add_development_dependency(%q<rdoc>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
    s.add_dependency(%q<rdoc>.freeze, [">= 0"])
  end
end
PK:H[��E3share/gems/specifications/default/etc-1.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: etc 1.1.0 ruby lib
# stub: ext/etc/extconf.rb

Gem::Specification.new do |s|
  s.name = "etc".freeze
  s.version = "1.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Provides access to information typically stored in UNIX /etc directory.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/etc/extconf.rb".freeze]
  s.files = ["etc.so".freeze, "ext/etc/extconf.rb".freeze]
  s.homepage = "https://github.com/ruby/etc".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides access to information typically stored in UNIX /etc directory.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H['1O;��9share/gems/specifications/default/fileutils-1.4.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: fileutils 1.4.1 ruby lib

Gem::Specification.new do |s|
  s.name = "fileutils".freeze
  s.version = "1.4.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "source_code_uri" => "https://github.com/ruby/fileutils" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Minero Aoki".freeze]
  s.date = "2023-06-06"
  s.description = "Several file utility methods for copying, moving, removing, etc.".freeze
  s.email = [nil]
  s.files = ["fileutils.rb".freeze]
  s.homepage = "https://github.com/ruby/fileutils".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Several file utility methods for copying, moving, removing, etc.".freeze
end
PK:H[vTH���7share/gems/specifications/default/mutex_m-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: mutex_m 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "mutex_m".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Keiju ISHITSUKA".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Mixin to extend objects to be handled like a Mutex.".freeze
  s.email = ["keiju@ruby-lang.org".freeze]
  s.files = ["mutex_m.rb".freeze]
  s.homepage = "https://github.com/ruby/mutex_m".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Mixin to extend objects to be handled like a Mutex.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[��e..7share/gems/specifications/default/strscan-1.0.3.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: strscan 1.0.3 ruby lib
# stub: ext/strscan/extconf.rb

Gem::Specification.new do |s|
  s.name = "strscan".freeze
  s.version = "1.0.3"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Minero Aoki".freeze, "Sutou Kouhei".freeze]
  s.date = "2023-06-06"
  s.description = "Provides lexical scanning operations on a String.".freeze
  s.email = [nil, "kou@cozmixng.org".freeze]
  s.extensions = ["ext/strscan/extconf.rb".freeze]
  s.files = ["ext/strscan/extconf.rb".freeze, "strscan.so".freeze]
  s.homepage = "https://github.com/ruby/strscan".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides lexical scanning operations on a String.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_development_dependency(%q<benchmark-driver>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_dependency(%q<benchmark-driver>.freeze, [">= 0"])
  end
end
PK:H[��0yy:share/gems/specifications/default/getoptlong-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: getoptlong 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "getoptlong".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/getoptlong", "source_code_uri" => "https://github.com/ruby/getoptlong" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "GetoptLong for Ruby".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["getoptlong.rb".freeze, "getoptlong/version.rb".freeze]
  s.homepage = "https://github.com/ruby/getoptlong".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "GetoptLong for Ruby".freeze
end
PK:H[��KE9
9
7share/gems/specifications/default/rexml-3.2.3.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rexml 3.2.3.1 ruby lib

Gem::Specification.new do |s|
  s.name = "rexml".freeze
  s.version = "3.2.3.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Kouhei Sutou".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "An XML toolkit for Ruby".freeze
  s.email = ["kou@cozmixng.org".freeze]
  s.files = ["rexml/attlistdecl.rb".freeze, "rexml/attribute.rb".freeze, "rexml/cdata.rb".freeze, "rexml/child.rb".freeze, "rexml/comment.rb".freeze, "rexml/doctype.rb".freeze, "rexml/document.rb".freeze, "rexml/dtd/attlistdecl.rb".freeze, "rexml/dtd/dtd.rb".freeze, "rexml/dtd/elementdecl.rb".freeze, "rexml/dtd/entitydecl.rb".freeze, "rexml/dtd/notationdecl.rb".freeze, "rexml/element.rb".freeze, "rexml/encoding.rb".freeze, "rexml/entity.rb".freeze, "rexml/formatters/default.rb".freeze, "rexml/formatters/pretty.rb".freeze, "rexml/formatters/transitive.rb".freeze, "rexml/functions.rb".freeze, "rexml/instruction.rb".freeze, "rexml/light/node.rb".freeze, "rexml/namespace.rb".freeze, "rexml/node.rb".freeze, "rexml/output.rb".freeze, "rexml/parent.rb".freeze, "rexml/parseexception.rb".freeze, "rexml/parsers/baseparser.rb".freeze, "rexml/parsers/lightparser.rb".freeze, "rexml/parsers/pullparser.rb".freeze, "rexml/parsers/sax2parser.rb".freeze, "rexml/parsers/streamparser.rb".freeze, "rexml/parsers/treeparser.rb".freeze, "rexml/parsers/ultralightparser.rb".freeze, "rexml/parsers/xpathparser.rb".freeze, "rexml/quickpath.rb".freeze, "rexml/rexml.rb".freeze, "rexml/sax2listener.rb".freeze, "rexml/security.rb".freeze, "rexml/source.rb".freeze, "rexml/streamlistener.rb".freeze, "rexml/text.rb".freeze, "rexml/undefinednamespaceexception.rb".freeze, "rexml/validation/relaxng.rb".freeze, "rexml/validation/validation.rb".freeze, "rexml/validation/validationexception.rb".freeze, "rexml/xmldecl.rb".freeze, "rexml/xmltokens.rb".freeze, "rexml/xpath.rb".freeze, "rexml/xpath_parser.rb".freeze]
  s.homepage = "https://github.com/ruby/rexml".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "An XML toolkit for Ruby".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�~V6��5share/gems/specifications/default/prime-0.1.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: prime 0.1.1 ruby lib

Gem::Specification.new do |s|
  s.name = "prime".freeze
  s.version = "0.1.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yuki Sonoda".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Prime numbers and factorization library.".freeze
  s.email = ["yugui@yugui.jp".freeze]
  s.files = ["prime.rb".freeze]
  s.homepage = "https://github.com/ruby/prime".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Prime numbers and factorization library.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[8�o��8share/gems/specifications/default/net-smtp-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: net-smtp 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "net-smtp".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/net-smtp", "source_code_uri" => "https://github.com/ruby/net-smtp" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Simple Mail Transfer Protocol client library for Ruby.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["net/smtp.rb".freeze, "net/smtp/version.rb".freeze]
  s.homepage = "https://github.com/ruby/net-smtp".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Simple Mail Transfer Protocol client library for Ruby.".freeze
end
PK:H['ei��5share/gems/specifications/default/fcntl-1.0.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: fcntl 1.0.0 ruby lib
# stub: ext/fcntl/extconf.rb

Gem::Specification.new do |s|
  s.name = "fcntl".freeze
  s.version = "1.0.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Loads constants defined in the OS fcntl.h C header file".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/fcntl/extconf.rb".freeze]
  s.files = ["ext/fcntl/extconf.rb".freeze, "fcntl.so".freeze]
  s.homepage = "https://github.com/ruby/fcntl".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Loads constants defined in the OS fcntl.h C header file".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, ["~> 1.14"])
    s.add_development_dependency(%q<rake>.freeze, ["~> 12"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, ["~> 1.14"])
    s.add_dependency(%q<rake>.freeze, ["~> 12"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[�V����9share/gems/specifications/default/benchmark-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: benchmark 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "benchmark".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/benchmark", "source_code_uri" => "https://github.com/ruby/benchmark" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "a performance benchmarking library".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["benchmark.rb".freeze, "benchmark/version.rb".freeze]
  s.homepage = "https://github.com/ruby/benchmark".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "a performance benchmarking library".freeze
end
PK:H[7}����8share/gems/specifications/default/observer-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: observer 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "observer".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/observer", "source_code_uri" => "https://github.com/ruby/observer" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Implementation of the Observer object-oriented design pattern.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["observer.rb".freeze, "observer/version.rb".freeze]
  s.homepage = "https://github.com/ruby/observer".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Implementation of the Observer object-oriented design pattern.".freeze
end
PK:H[R��3share/gems/specifications/default/dbm-1.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: dbm 1.1.0 ruby lib
# stub: ext/dbm/extconf.rb

Gem::Specification.new do |s|
  s.name = "dbm".freeze
  s.version = "1.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.date = "2023-06-06"
  s.description = "Provides a wrapper for the UNIX-style Database Manager Library".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/dbm/extconf.rb".freeze]
  s.files = ["dbm.so".freeze, "ext/dbm/extconf.rb".freeze]
  s.homepage = "https://github.com/ruby/dbm".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides a wrapper for the UNIX-style Database Manager Library".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[�Y�((4share/gems/specifications/default/sdbm-1.0.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: sdbm 1.0.0 ruby lib
# stub: ext/sdbm/extconf.rb

Gem::Specification.new do |s|
  s.name = "sdbm".freeze
  s.version = "1.0.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.date = "2023-06-06"
  s.description = "Provides a simple file-based key-value store with String keys and values.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/sdbm/extconf.rb".freeze]
  s.files = ["ext/sdbm/extconf.rb".freeze, "sdbm.so".freeze]
  s.homepage = "https://github.com/ruby/sdbm".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides a simple file-based key-value store with String keys and values.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[��V��4share/gems/specifications/default/zlib-1.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: zlib 1.1.0 ruby lib
# stub: ext/zlib/extconf.rb

Gem::Specification.new do |s|
  s.name = "zlib".freeze
  s.version = "1.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze, "UENO Katsuhiro".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Ruby interface for the zlib compression/decompression library".freeze
  s.email = ["matz@ruby-lang.org".freeze, nil]
  s.extensions = ["ext/zlib/extconf.rb".freeze]
  s.files = ["ext/zlib/extconf.rb".freeze, "zlib.so".freeze]
  s.homepage = "https://github.com/ruby/zlib".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Ruby interface for the zlib compression/decompression library".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[�+�Q��9share/gems/specifications/default/singleton-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: singleton 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "singleton".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/singleton", "source_code_uri" => "https://github.com/ruby/singleton" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "The Singleton module implements the Singleton pattern.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["singleton.rb".freeze, "singleton/version.rb".freeze]
  s.homepage = "https://github.com/ruby/singleton".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "The Singleton module implements the Singleton pattern.".freeze
end
PK:H[����	�	8share/gems/specifications/default/readline-0.0.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: readline 0.0.2 ruby lib

Gem::Specification.new do |s|
  s.name = "readline".freeze
  s.version = "0.0.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["aycabta".freeze]
  s.date = "2023-06-06"
  s.description = "This is just a loader for \"readline\". If Ruby has \"readline-ext\" gem that\nis a native extension, this gem will load it first. If Ruby doesn't have\nthe \"readline-ext\" gem this gem will load \"reline\" that is a compatible\nlibrary with \"readline-ext\" gem and is implemented by pure Ruby.\n".freeze
  s.email = ["aycabta@gmail.com".freeze]
  s.files = ["readline.rb".freeze]
  s.homepage = "https://github.com/ruby/readline".freeze
  s.licenses = ["Ruby license".freeze]
  s.post_install_message = "+---------------------------------------------------------------------------+\n| This is just a loader for \"readline\". If Ruby has \"readline-ext\" gem that |\n| is a native extension, this gem will load it first. If Ruby doesn't have  |\n| the \"readline-ext\" gem this gem will load \"reline\" that is a compatible \u00A0 |\n| library with \"readline-ext\" gem and is implemented by pure Ruby. \u00A0 \u00A0 \u00A0 \u00A0 \u00A0|\n| \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 |\n| If you intend to use GNU Readline by `require 'readline'`, please install |\n| \"readline-ext\" gem. \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 \u00A0 |\n+---------------------------------------------------------------------------+\n".freeze
  s.rubygems_version = "3.1.6".freeze
  s.summary = "It's a loader for \"readline\".".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_runtime_dependency(%q<reline>.freeze, [">= 0"])
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<reline>.freeze, [">= 0"])
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[��Rn	n	3share/gems/specifications/default/rss-0.2.8.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rss 0.2.8 ruby lib

Gem::Specification.new do |s|
  s.name = "rss".freeze
  s.version = "0.2.8"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Kouhei Sutou".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Family of libraries that support various formats of XML \"feeds\".".freeze
  s.email = ["kou@cozmixng.org".freeze]
  s.files = ["rss.rb".freeze, "rss/0.9.rb".freeze, "rss/1.0.rb".freeze, "rss/2.0.rb".freeze, "rss/atom.rb".freeze, "rss/content.rb".freeze, "rss/content/1.0.rb".freeze, "rss/content/2.0.rb".freeze, "rss/converter.rb".freeze, "rss/dublincore.rb".freeze, "rss/dublincore/1.0.rb".freeze, "rss/dublincore/2.0.rb".freeze, "rss/dublincore/atom.rb".freeze, "rss/image.rb".freeze, "rss/itunes.rb".freeze, "rss/maker.rb".freeze, "rss/maker/0.9.rb".freeze, "rss/maker/1.0.rb".freeze, "rss/maker/2.0.rb".freeze, "rss/maker/atom.rb".freeze, "rss/maker/base.rb".freeze, "rss/maker/content.rb".freeze, "rss/maker/dublincore.rb".freeze, "rss/maker/entry.rb".freeze, "rss/maker/feed.rb".freeze, "rss/maker/image.rb".freeze, "rss/maker/itunes.rb".freeze, "rss/maker/slash.rb".freeze, "rss/maker/syndication.rb".freeze, "rss/maker/taxonomy.rb".freeze, "rss/maker/trackback.rb".freeze, "rss/parser.rb".freeze, "rss/rexmlparser.rb".freeze, "rss/rss.rb".freeze, "rss/slash.rb".freeze, "rss/syndication.rb".freeze, "rss/taxonomy.rb".freeze, "rss/trackback.rb".freeze, "rss/utils.rb".freeze, "rss/version.rb".freeze, "rss/xml-stylesheet.rb".freeze, "rss/xml.rb".freeze, "rss/xmlparser.rb".freeze, "rss/xmlscanner.rb".freeze]
  s.homepage = "https://github.com/ruby/rss".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Family of libraries that support various formats of XML \"feeds\".".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[/���6share/gems/specifications/default/pstore-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: pstore 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "pstore".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/pstore", "source_code_uri" => "https://github.com/ruby/pstore" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Transactional File Storage for Ruby Objects".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["pstore.rb".freeze, "pstore/version.rb".freeze]
  s.homepage = "https://github.com/ruby/pstore".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Transactional File Storage for Ruby Objects".freeze
end
PK:H[,�5{{6share/gems/specifications/default/reline-0.1.5.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: reline 0.1.5 ruby lib

Gem::Specification.new do |s|
  s.name = "reline".freeze
  s.version = "0.1.5"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["aycabta".freeze]
  s.date = "2023-06-06"
  s.description = "Alternative GNU Readline or Editline implementation by pure Ruby.".freeze
  s.email = ["aycabta@gmail.com".freeze]
  s.files = ["reline.rb".freeze, "reline/ansi.rb".freeze, "reline/config.rb".freeze, "reline/general_io.rb".freeze, "reline/history.rb".freeze, "reline/key_actor.rb".freeze, "reline/key_actor/base.rb".freeze, "reline/key_actor/emacs.rb".freeze, "reline/key_actor/vi_command.rb".freeze, "reline/key_actor/vi_insert.rb".freeze, "reline/key_stroke.rb".freeze, "reline/kill_ring.rb".freeze, "reline/line_editor.rb".freeze, "reline/unicode.rb".freeze, "reline/unicode/east_asian_width.rb".freeze, "reline/version.rb".freeze, "reline/windows.rb".freeze]
  s.homepage = "https://github.com/ruby/reline".freeze
  s.licenses = ["Ruby".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.5".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Alternative GNU Readline or Editline implementation by pure Ruby.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_runtime_dependency(%q<io-console>.freeze, ["~> 0.5"])
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<io-console>.freeze, ["~> 0.5"])
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[�i�>5share/gems/specifications/default/cgi-0.1.0.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: cgi 0.1.0.2 ruby lib

Gem::Specification.new do |s|
  s.name = "cgi".freeze
  s.version = "0.1.0.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/cgi", "source_code_uri" => "https://github.com/ruby/cgi" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Support for the Common Gateway Interface protocol.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["cgi.rb".freeze, "cgi/cookie.rb".freeze, "cgi/core.rb".freeze, "cgi/html.rb".freeze, "cgi/session.rb".freeze, "cgi/session/pstore.rb".freeze, "cgi/util.rb".freeze, "cgi/version.rb".freeze]
  s.homepage = "https://github.com/ruby/cgi".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Support for the Common Gateway Interface protocol.".freeze
end
PK:H[&k�ff5share/gems/specifications/default/open3-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: open3 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "open3".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/open3", "source_code_uri" => "https://github.com/ruby/open3" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Popen, but with stderr, too".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["open3.rb".freeze, "open3/version.rb".freeze]
  s.homepage = "https://github.com/ruby/open3".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Popen, but with stderr, too".freeze
end
PK:H[�N��3share/gems/specifications/default/csv-3.1.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: csv 3.1.2 ruby lib

Gem::Specification.new do |s|
  s.name = "csv".freeze
  s.version = "3.1.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["James Edward Gray II".freeze, "Kouhei Sutou".freeze]
  s.date = "2023-06-06"
  s.description = "The CSV library provides a complete interface to CSV files and data. It offers tools to enable you to read and write to and from Strings or IO objects, as needed.".freeze
  s.email = [nil, "kou@cozmixng.org".freeze]
  s.files = ["csv.rb".freeze, "csv/core_ext/array.rb".freeze, "csv/core_ext/string.rb".freeze, "csv/delete_suffix.rb".freeze, "csv/fields_converter.rb".freeze, "csv/match_p.rb".freeze, "csv/parser.rb".freeze, "csv/row.rb".freeze, "csv/table.rb".freeze, "csv/version.rb".freeze, "csv/writer.rb".freeze]
  s.homepage = "https://github.com/ruby/csv".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "CSV Reading and Writing".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<benchmark_driver>.freeze, [">= 0"])
    s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<benchmark_driver>.freeze, [">= 0"])
    s.add_dependency(%q<simplecov>.freeze, [">= 0"])
  end
end
PK:H[n��SS;share/gems/specifications/default/forwardable-1.3.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: forwardable 1.3.1 ruby lib

Gem::Specification.new do |s|
  s.name = "forwardable".freeze
  s.version = "1.3.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Keiju ISHITSUKA".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Provides delegation of specified methods to a designated object.".freeze
  s.email = ["keiju@ruby-lang.org".freeze]
  s.files = ["forwardable.rb".freeze, "forwardable/impl.rb".freeze, "forwardable/version.rb".freeze]
  s.homepage = "https://github.com/ruby/forwardable".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides delegation of specified methods to a designated object.".freeze
end
PK:H[��+|006share/gems/specifications/default/ipaddr-1.2.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: ipaddr 1.2.2 ruby lib

Gem::Specification.new do |s|
  s.name = "ipaddr".freeze
  s.version = "1.2.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Akinori MUSHA".freeze, "Hajimu UMEMOTO".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "IPAddr provides a set of methods to manipulate an IP address.\nBoth IPv4 and IPv6 are supported.\n".freeze
  s.email = ["knu@idaemons.org".freeze, "ume@mahoroba.org".freeze]
  s.files = ["ipaddr.rb".freeze]
  s.homepage = "https://github.com/ruby/ipaddr".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A class to manipulate an IP address in ruby".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, ["~> 1.15"])
    s.add_development_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, ["~> 1.15"])
    s.add_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_dependency(%q<test-unit>.freeze, [">= 0"])
  end
end
PK:H[���4share/gems/specifications/default/yaml-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: yaml 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "yaml".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/yaml", "source_code_uri" => "https://github.com/ruby/yaml" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Aaron Patterson".freeze, "SHIBATA Hiroshi".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "YAML Ain't Markup Language".freeze
  s.email = ["aaron@tenderlovemaking.com".freeze, "hsbt@ruby-lang.org".freeze]
  s.files = ["yaml.rb".freeze, "yaml/dbm.rb".freeze, "yaml/store.rb".freeze]
  s.homepage = "https://github.com/ruby/yaml".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "YAML Ain't Markup Language".freeze
end
PK:H[.iAzz4share/gems/specifications/default/date-3.0.3.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: date 3.0.3 ruby lib
# stub: ext/date/extconf.rb

Gem::Specification.new do |s|
  s.name = "date".freeze
  s.version = "3.0.3"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Tadayoshi Funaba".freeze]
  s.date = "2023-06-06"
  s.description = "A subclass of Object includes Comparable module for handling dates.".freeze
  s.email = [nil]
  s.extensions = ["ext/date/extconf.rb".freeze]
  s.files = ["date.rb".freeze, "ext/date/extconf.rb".freeze]
  s.homepage = "https://github.com/ruby/date".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A subclass of Object includes Comparable module for handling dates.".freeze
end
PK:H[�^\�^^4share/gems/specifications/default/gdbm-2.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: gdbm 2.1.0 ruby lib
# stub: ext/gdbm/extconf.rb

Gem::Specification.new do |s|
  s.name = "gdbm".freeze
  s.version = "2.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Ruby extension for GNU dbm.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/gdbm/extconf.rb".freeze]
  s.files = ["ext/gdbm/extconf.rb".freeze, "gdbm.so".freeze]
  s.homepage = "https://github.com/ruby/gdbm".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Ruby extension for GNU dbm.".freeze
end
PK:H[���6share/gems/specifications/default/tracer-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: tracer 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "tracer".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Keiju ISHITSUKA".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Outputs a source level execution trace of a Ruby program.".freeze
  s.email = ["keiju@ruby-lang.org".freeze]
  s.files = ["tracer.rb".freeze, "tracer/version.rb".freeze]
  s.homepage = "https://github.com/ruby/tracer".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Outputs a source level execution trace of a Ruby program.".freeze
end
PK:H[��z�..<share/gems/specifications/default/readline-ext-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: readline-ext 0.1.0 ruby lib
# stub: ext/readline/extconf.rb

Gem::Specification.new do |s|
  s.name = "readline-ext".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/readline-ext", "source_code_uri" => "https://github.com/ruby/readline-ext" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Provides an interface for GNU Readline and Edit Line (libedit).".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.extensions = ["ext/readline/extconf.rb".freeze]
  s.files = ["ext/readline/extconf.rb".freeze, "readline.so".freeze]
  s.homepage = "https://github.com/ruby/readline-ext".freeze
  s.licenses = ["Ruby".freeze, "BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides an interface for GNU Readline and Edit Line (libedit).".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[]��K��6share/gems/specifications/default/matrix-0.2.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: matrix 0.2.0 ruby lib

Gem::Specification.new do |s|
  s.name = "matrix".freeze
  s.version = "0.2.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Marc-Andre Lafortune".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "An implementation of Matrix and Vector classes.".freeze
  s.email = ["ruby-core@marc-andre.ca".freeze]
  s.files = ["matrix.rb".freeze, "matrix/eigenvalue_decomposition.rb".freeze, "matrix/lup_decomposition.rb".freeze, "matrix/version.rb".freeze]
  s.homepage = "https://github.com/ruby/matrix".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "An implementation of Matrix and Vector classes.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[9�b_6share/gems/specifications/default/fiddle-1.0.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: fiddle 1.0.0 ruby lib

Gem::Specification.new do |s|
  s.name = "fiddle".freeze
  s.version = "1.0.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Aaron Patterson".freeze, "SHIBATA Hiroshi".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "A libffi wrapper for Ruby.".freeze
  s.email = ["aaron@tenderlovemaking.com".freeze, "hsbt@ruby-lang.org".freeze]
  s.files = ["fiddle.rb".freeze, "fiddle.so".freeze, "fiddle/closure.rb".freeze, "fiddle/cparser.rb".freeze, "fiddle/function.rb".freeze, "fiddle/import.rb".freeze, "fiddle/pack.rb".freeze, "fiddle/struct.rb".freeze, "fiddle/types.rb".freeze, "fiddle/value.rb".freeze]
  s.homepage = "https://github.com/ruby/fiddle".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A libffi wrapper for Ruby.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
  end
end
PK:H[��N��6share/gems/specifications/default/uri-0.10.0.2.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: uri 0.10.0.2 ruby lib

Gem::Specification.new do |s|
  s.name = "uri".freeze
  s.version = "0.10.0.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/uri", "source_code_uri" => "https://github.com/ruby/uri" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Akira Yamada".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "URI is a module providing classes to handle Uniform Resource Identifiers".freeze
  s.email = ["akira@ruby-lang.org".freeze]
  s.files = ["uri.rb".freeze, "uri/common.rb".freeze, "uri/file.rb".freeze, "uri/ftp.rb".freeze, "uri/generic.rb".freeze, "uri/http.rb".freeze, "uri/https.rb".freeze, "uri/ldap.rb".freeze, "uri/ldaps.rb".freeze, "uri/mailto.rb".freeze, "uri/rfc2396_parser.rb".freeze, "uri/rfc3986_parser.rb".freeze, "uri/version.rb".freeze]
  s.homepage = "https://github.com/ruby/uri".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "URI is a module providing classes to handle Uniform Resource Identifiers".freeze
end
PK:H[��2��7share/gems/specifications/default/ostruct-0.2.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: ostruct 0.2.0 ruby lib

Gem::Specification.new do |s|
  s.name = "ostruct".freeze
  s.version = "0.2.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Marc-Andre Lafortune".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Class to build custom data structures, similar to a Hash.".freeze
  s.email = ["ruby-core@marc-andre.ca".freeze]
  s.files = ["ostruct.rb".freeze, "ostruct/version.rb".freeze]
  s.homepage = "https://github.com/ruby/ostruct".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Class to build custom data structures, similar to a Hash.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�D��	�	7share/gems/specifications/default/webrick-1.6.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: webrick 1.6.1 ruby lib

Gem::Specification.new do |s|
  s.name = "webrick".freeze
  s.version = "1.6.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "bug_tracker_uri" => "https://bugs.ruby-lang.org/projects/ruby-trunk/issues", "homepage_uri" => "https://www.ruby-lang.org", "source_code_uri" => "https://git.ruby-lang.org/ruby.git/" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["TAKAHASHI Masayoshi".freeze, "GOTOU YUUZOU".freeze, "Eric Wong".freeze]
  s.date = "2023-06-06"
  s.description = "WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server.".freeze
  s.email = [nil, nil, "normal@ruby-lang.org".freeze]
  s.files = ["webrick.rb".freeze, "webrick/accesslog.rb".freeze, "webrick/cgi.rb".freeze, "webrick/compat.rb".freeze, "webrick/config.rb".freeze, "webrick/cookie.rb".freeze, "webrick/htmlutils.rb".freeze, "webrick/httpauth.rb".freeze, "webrick/httpauth/authenticator.rb".freeze, "webrick/httpauth/basicauth.rb".freeze, "webrick/httpauth/digestauth.rb".freeze, "webrick/httpauth/htdigest.rb".freeze, "webrick/httpauth/htgroup.rb".freeze, "webrick/httpauth/htpasswd.rb".freeze, "webrick/httpauth/userdb.rb".freeze, "webrick/httpproxy.rb".freeze, "webrick/httprequest.rb".freeze, "webrick/httpresponse.rb".freeze, "webrick/https.rb".freeze, "webrick/httpserver.rb".freeze, "webrick/httpservlet.rb".freeze, "webrick/httpservlet/abstract.rb".freeze, "webrick/httpservlet/cgi_runner.rb".freeze, "webrick/httpservlet/cgihandler.rb".freeze, "webrick/httpservlet/erbhandler.rb".freeze, "webrick/httpservlet/filehandler.rb".freeze, "webrick/httpservlet/prochandler.rb".freeze, "webrick/httpstatus.rb".freeze, "webrick/httputils.rb".freeze, "webrick/httpversion.rb".freeze, "webrick/log.rb".freeze, "webrick/server.rb".freeze, "webrick/ssl.rb".freeze, "webrick/utils.rb".freeze, "webrick/version.rb".freeze]
  s.homepage = "https://www.ruby-lang.org".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "HTTP server toolkit".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�C���8share/gems/specifications/default/delegate-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: delegate 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "delegate".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/delegate", "source_code_uri" => "https://github.com/ruby/delegate" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Provides three abilities to delegate method calls to an object.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["delegate.rb".freeze, "delegate/version.rb".freeze]
  s.homepage = "https://github.com/ruby/delegate".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Provides three abilities to delegate method calls to an object.".freeze
end
PK:H[~�����7share/gems/specifications/default/timeout-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: timeout 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "timeout".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/timeout", "source_code_uri" => "https://github.com/ruby/timeout" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Auto-terminate potentially long-running operations in Ruby.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["timeout.rb".freeze, "timeout/version.rb".freeze]
  s.homepage = "https://github.com/ruby/timeout".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Auto-terminate potentially long-running operations in Ruby.".freeze
end
PK:H[����xx7share/gems/specifications/default/net-pop-0.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: net-pop 0.1.0 ruby lib

Gem::Specification.new do |s|
  s.name = "net-pop".freeze
  s.version = "0.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "homepage_uri" => "https://github.com/ruby/net-pop", "source_code_uri" => "https://github.com/ruby/net-pop" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Yukihiro Matsumoto".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Ruby client library for POP3.".freeze
  s.email = ["matz@ruby-lang.org".freeze]
  s.files = ["net/pop.rb".freeze, "net/pop/version.rb".freeze]
  s.homepage = "https://github.com/ruby/net-pop".freeze
  s.licenses = ["BSD-2-Clause".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Ruby client library for POP3.".freeze
end
PK:H[��24885share/gems/specifications/default/racc-1.4.16.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: racc 1.4.16 ruby lib
# stub: ext/racc/extconf.rb

Gem::Specification.new do |s|
  s.name = "racc".freeze
  s.version = "1.4.16"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Minero Aoki".freeze, "Aaron Patterson".freeze]
  s.date = "2023-06-06"
  s.description = "Racc is a LALR(1) parser generator.\n  It is written in Ruby itself, and generates Ruby program.\n\n  NOTE: Ruby 1.8.x comes with Racc runtime module.  You\n  can run your parsers generated by racc 1.4.x out of the\n  box.\n".freeze
  s.email = [nil, "aaron@tenderlovemaking.com".freeze]
  s.executables = ["racc".freeze, "racc2y".freeze, "y2racc".freeze]
  s.extensions = ["ext/racc/extconf.rb".freeze]
  s.extra_rdoc_files = ["Manifest.txt".freeze, "README.ja.rdoc".freeze, "README.rdoc".freeze, "rdoc/en/NEWS.en.rdoc".freeze, "rdoc/en/grammar.en.rdoc".freeze, "rdoc/ja/NEWS.ja.rdoc".freeze, "rdoc/ja/debug.ja.rdoc".freeze, "rdoc/ja/grammar.ja.rdoc".freeze, "rdoc/ja/parser.ja.rdoc".freeze, "README.ja.rdoc".freeze, "README.rdoc".freeze]
  s.files = ["Manifest.txt".freeze, "README.ja.rdoc".freeze, "README.rdoc".freeze, "bin/racc".freeze, "bin/racc2y".freeze, "bin/y2racc".freeze, "ext/racc/extconf.rb".freeze, "racc.rb".freeze, "racc/compat.rb".freeze, "racc/debugflags.rb".freeze, "racc/exception.rb".freeze, "racc/grammar.rb".freeze, "racc/grammarfileparser.rb".freeze, "racc/info.rb".freeze, "racc/iset.rb".freeze, "racc/logfilegenerator.rb".freeze, "racc/parser-text.rb".freeze, "racc/parser.rb".freeze, "racc/parserfilegenerator.rb".freeze, "racc/sourcetext.rb".freeze, "racc/state.rb".freeze, "racc/statetransitiontable.rb".freeze, "racc/static.rb".freeze, "rdoc/en/NEWS.en.rdoc".freeze, "rdoc/en/grammar.en.rdoc".freeze, "rdoc/ja/NEWS.ja.rdoc".freeze, "rdoc/ja/debug.ja.rdoc".freeze, "rdoc/ja/grammar.ja.rdoc".freeze, "rdoc/ja/parser.ja.rdoc".freeze]
  s.homepage = "http://i.loveruby.net/en/projects/racc/".freeze
  s.licenses = ["MIT".freeze]
  s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Racc is a LALR(1) parser generator".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0.4.1"])
    s.add_development_dependency(%q<minitest>.freeze, ["~> 4.7"])
    s.add_development_dependency(%q<rdoc>.freeze, [">= 4.0", "< 7"])
    s.add_development_dependency(%q<hoe>.freeze, ["~> 3.18"])
  else
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0.4.1"])
    s.add_dependency(%q<minitest>.freeze, ["~> 4.7"])
    s.add_dependency(%q<rdoc>.freeze, [">= 4.0", "< 7"])
    s.add_dependency(%q<hoe>.freeze, ["~> 3.18"])
  end
end
PK:H[43g:\\-share/gems/specifications/rake-13.0.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rake 13.0.1 ruby lib

Gem::Specification.new do |s|
  s.name = "rake".freeze
  s.version = "13.0.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.2".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "bug_tracker_uri" => "https://github.com/ruby/rake/issues", "changelog_uri" => "https://github.com/ruby/rake/blob/v13.0.1/History.rdoc", "documentation_uri" => "https://ruby.github.io/rake", "source_code_uri" => "https://github.com/ruby/rake/tree/v13.0.1" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Hiroshi SHIBATA".freeze, "Eric Hodel".freeze, "Jim Weirich".freeze]
  s.bindir = "exe".freeze
  s.date = "2019-11-12"
  s.description = "Rake is a Make-like program implemented in Ruby. Tasks and dependencies are\nspecified in standard Ruby syntax.\nRake has the following features:\n  * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.\n    No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)\n  * Users can specify tasks with prerequisites.\n  * Rake supports rule patterns to synthesize implicit tasks.\n  * Flexible FileLists that act like arrays but know about manipulating file names and paths.\n  * Supports parallel execution of tasks.\n".freeze
  s.email = ["hsbt@ruby-lang.org".freeze, "drbrain@segment7.net".freeze, "".freeze]
  s.executables = ["rake".freeze]
  s.files = ["exe/rake".freeze]
  s.homepage = "https://github.com/ruby/rake".freeze
  s.licenses = ["MIT".freeze]
  s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Rake is a Make-like program implemented in Ruby".freeze

  s.installed_by_version = "3.1.6" if s.respond_to? :installed_by_version
end
PK:H[��lй�0share/gems/specifications/ruby-lsapi-5.6.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: ruby-lsapi 5.6 ruby lib
# stub: ext/lsapi/extconf.rb

Gem::Specification.new do |s|
  s.name = "ruby-lsapi".freeze
  s.version = "5.6"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["LiteSpeed Technologies Inc.".freeze]
  s.date = "2024-01-22"
  s.description = "This is a ruby extension for fast communication with LiteSpeed Web Server.".freeze
  s.email = "info@litespeedtech.com".freeze
  s.extensions = ["ext/lsapi/extconf.rb".freeze]
  s.extra_rdoc_files = ["README".freeze]
  s.files = ["README".freeze, "ext/lsapi/extconf.rb".freeze]
  s.homepage = "http://www.litespeedtech.com/".freeze
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A ruby extension for fast communication with LiteSpeed Web Server.".freeze

  s.installed_by_version = "3.1.6" if s.respond_to? :installed_by_version
end
PK:H[�K'�)�)0share/gems/specifications/bundler-2.2.24.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: bundler 2.2.24 ruby lib

Gem::Specification.new do |s|
  s.name = "bundler".freeze
  s.version = "2.2.24"

  s.required_rubygems_version = Gem::Requirement.new(">= 2.5.2".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler", "changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md", "homepage_uri" => "https://bundler.io/", "source_code_uri" => "https://github.com/rubygems/rubygems/" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Andr\u00E9 Arko".freeze, "Samuel Giddins".freeze, "Colby Swandale".freeze, "Hiroshi Shibata".freeze, "David Rodr\u00EDguez".freeze, "Grey Baker".freeze, "Stephanie Morillo".freeze, "Chris Morris".freeze, "James Wen".freeze, "Tim Moore".freeze, "Andr\u00E9 Medeiros".freeze, "Jessica Lynn Suttles".freeze, "Terence Lee".freeze, "Carl Lerche".freeze, "Yehuda Katz".freeze]
  s.bindir = "libexec".freeze
  s.date = "2023-06-06"
  s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably".freeze
  s.email = ["team@bundler.io".freeze]
  s.executables = ["bundle".freeze, "bundler".freeze]
  s.files = ["bundler.rb".freeze, "bundler/build_metadata.rb".freeze, "bundler/capistrano.rb".freeze, "bundler/cli.rb".freeze, "bundler/cli/add.rb".freeze, "bundler/cli/binstubs.rb".freeze, "bundler/cli/cache.rb".freeze, "bundler/cli/check.rb".freeze, "bundler/cli/clean.rb".freeze, "bundler/cli/common.rb".freeze, "bundler/cli/config.rb".freeze, "bundler/cli/console.rb".freeze, "bundler/cli/doctor.rb".freeze, "bundler/cli/exec.rb".freeze, "bundler/cli/fund.rb".freeze, "bundler/cli/gem.rb".freeze, "bundler/cli/info.rb".freeze, "bundler/cli/init.rb".freeze, "bundler/cli/inject.rb".freeze, "bundler/cli/install.rb".freeze, "bundler/cli/issue.rb".freeze, "bundler/cli/list.rb".freeze, "bundler/cli/lock.rb".freeze, "bundler/cli/open.rb".freeze, "bundler/cli/outdated.rb".freeze, "bundler/cli/platform.rb".freeze, "bundler/cli/plugin.rb".freeze, "bundler/cli/pristine.rb".freeze, "bundler/cli/remove.rb".freeze, "bundler/cli/show.rb".freeze, "bundler/cli/update.rb".freeze, "bundler/cli/viz.rb".freeze, "bundler/compact_index_client.rb".freeze, "bundler/compact_index_client/cache.rb".freeze, "bundler/compact_index_client/gem_parser.rb".freeze, "bundler/compact_index_client/updater.rb".freeze, "bundler/constants.rb".freeze, "bundler/current_ruby.rb".freeze, "bundler/definition.rb".freeze, "bundler/dep_proxy.rb".freeze, "bundler/dependency.rb".freeze, "bundler/deployment.rb".freeze, "bundler/deprecate.rb".freeze, "bundler/dsl.rb".freeze, "bundler/endpoint_specification.rb".freeze, "bundler/env.rb".freeze, "bundler/environment_preserver.rb".freeze, "bundler/errors.rb".freeze, "bundler/feature_flag.rb".freeze, "bundler/fetcher.rb".freeze, "bundler/fetcher/base.rb".freeze, "bundler/fetcher/compact_index.rb".freeze, "bundler/fetcher/dependency.rb".freeze, "bundler/fetcher/downloader.rb".freeze, "bundler/fetcher/index.rb".freeze, "bundler/friendly_errors.rb".freeze, "bundler/gem_helper.rb".freeze, "bundler/gem_helpers.rb".freeze, "bundler/gem_tasks.rb".freeze, "bundler/gem_version_promoter.rb".freeze, "bundler/gemdeps.rb".freeze, "bundler/graph.rb".freeze, "bundler/index.rb".freeze, "bundler/injector.rb".freeze, "bundler/inline.rb".freeze, "bundler/installer.rb".freeze, "bundler/installer/gem_installer.rb".freeze, "bundler/installer/parallel_installer.rb".freeze, "bundler/installer/standalone.rb".freeze, "bundler/lazy_specification.rb".freeze, "bundler/lockfile_generator.rb".freeze, "bundler/lockfile_parser.rb".freeze, "bundler/match_platform.rb".freeze, "bundler/mirror.rb".freeze, "bundler/plugin.rb".freeze, "bundler/plugin/api.rb".freeze, "bundler/plugin/api/source.rb".freeze, "bundler/plugin/dsl.rb".freeze, "bundler/plugin/events.rb".freeze, "bundler/plugin/index.rb".freeze, "bundler/plugin/installer.rb".freeze, "bundler/plugin/installer/git.rb".freeze, "bundler/plugin/installer/rubygems.rb".freeze, "bundler/plugin/source_list.rb".freeze, "bundler/process_lock.rb".freeze, "bundler/psyched_yaml.rb".freeze, "bundler/remote_specification.rb".freeze, "bundler/resolver.rb".freeze, "bundler/resolver/spec_group.rb".freeze, "bundler/retry.rb".freeze, "bundler/ruby_dsl.rb".freeze, "bundler/ruby_version.rb".freeze, "bundler/rubygems_ext.rb".freeze, "bundler/rubygems_gem_installer.rb".freeze, "bundler/rubygems_integration.rb".freeze, "bundler/runtime.rb".freeze, "bundler/settings.rb".freeze, "bundler/settings/validator.rb".freeze, "bundler/setup.rb".freeze, "bundler/shared_helpers.rb".freeze, "bundler/similarity_detector.rb".freeze, "bundler/source.rb".freeze, "bundler/source/gemspec.rb".freeze, "bundler/source/git.rb".freeze, "bundler/source/git/git_proxy.rb".freeze, "bundler/source/metadata.rb".freeze, "bundler/source/path.rb".freeze, "bundler/source/path/installer.rb".freeze, "bundler/source/rubygems.rb".freeze, "bundler/source/rubygems/remote.rb".freeze, "bundler/source/rubygems_aggregate.rb".freeze, "bundler/source_list.rb".freeze, "bundler/source_map.rb".freeze, "bundler/spec_set.rb".freeze, "bundler/stub_specification.rb".freeze, "bundler/templates/gems.rb".freeze, "bundler/ui.rb".freeze, "bundler/ui/rg_proxy.rb".freeze, "bundler/ui/shell.rb".freeze, "bundler/ui/silent.rb".freeze, "bundler/uri_credentials_filter.rb".freeze, "bundler/vendor/connection_pool/lib/connection_pool.rb".freeze, "bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb".freeze, "bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb".freeze, "bundler/vendor/connection_pool/lib/connection_pool/version.rb".freeze, "bundler/vendor/fileutils/lib/fileutils.rb".freeze, "bundler/vendor/molinillo/lib/molinillo.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/errors.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/modules/ui.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/resolution.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/resolver.rb".freeze, "bundler/vendor/molinillo/lib/molinillo/state.rb".freeze, "bundler/vendor/net-http-persistent/lib/net/http/persistent.rb".freeze, "bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb".freeze, "bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb".freeze, "bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb".freeze, "bundler/vendor/thor/lib/thor.rb".freeze, "bundler/vendor/thor/lib/thor/actions.rb".freeze, "bundler/vendor/thor/lib/thor/actions/create_file.rb".freeze, "bundler/vendor/thor/lib/thor/actions/create_link.rb".freeze, "bundler/vendor/thor/lib/thor/actions/directory.rb".freeze, "bundler/vendor/thor/lib/thor/actions/empty_directory.rb".freeze, "bundler/vendor/thor/lib/thor/actions/file_manipulation.rb".freeze, "bundler/vendor/thor/lib/thor/actions/inject_into_file.rb".freeze, "bundler/vendor/thor/lib/thor/base.rb".freeze, "bundler/vendor/thor/lib/thor/command.rb".freeze, "bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb".freeze, "bundler/vendor/thor/lib/thor/error.rb".freeze, "bundler/vendor/thor/lib/thor/group.rb".freeze, "bundler/vendor/thor/lib/thor/invocation.rb".freeze, "bundler/vendor/thor/lib/thor/line_editor.rb".freeze, "bundler/vendor/thor/lib/thor/line_editor/basic.rb".freeze, "bundler/vendor/thor/lib/thor/line_editor/readline.rb".freeze, "bundler/vendor/thor/lib/thor/nested_context.rb".freeze, "bundler/vendor/thor/lib/thor/parser.rb".freeze, "bundler/vendor/thor/lib/thor/parser/argument.rb".freeze, "bundler/vendor/thor/lib/thor/parser/arguments.rb".freeze, "bundler/vendor/thor/lib/thor/parser/option.rb".freeze, "bundler/vendor/thor/lib/thor/parser/options.rb".freeze, "bundler/vendor/thor/lib/thor/rake_compat.rb".freeze, "bundler/vendor/thor/lib/thor/runner.rb".freeze, "bundler/vendor/thor/lib/thor/shell.rb".freeze, "bundler/vendor/thor/lib/thor/shell/basic.rb".freeze, "bundler/vendor/thor/lib/thor/shell/color.rb".freeze, "bundler/vendor/thor/lib/thor/shell/html.rb".freeze, "bundler/vendor/thor/lib/thor/util.rb".freeze, "bundler/vendor/thor/lib/thor/version.rb".freeze, "bundler/vendor/tmpdir/lib/tmpdir.rb".freeze, "bundler/vendor/uri/lib/uri.rb".freeze, "bundler/vendor/uri/lib/uri/common.rb".freeze, "bundler/vendor/uri/lib/uri/file.rb".freeze, "bundler/vendor/uri/lib/uri/ftp.rb".freeze, "bundler/vendor/uri/lib/uri/generic.rb".freeze, "bundler/vendor/uri/lib/uri/http.rb".freeze, "bundler/vendor/uri/lib/uri/https.rb".freeze, "bundler/vendor/uri/lib/uri/ldap.rb".freeze, "bundler/vendor/uri/lib/uri/ldaps.rb".freeze, "bundler/vendor/uri/lib/uri/mailto.rb".freeze, "bundler/vendor/uri/lib/uri/rfc2396_parser.rb".freeze, "bundler/vendor/uri/lib/uri/rfc3986_parser.rb".freeze, "bundler/vendor/uri/lib/uri/version.rb".freeze, "bundler/vendored_fileutils.rb".freeze, "bundler/vendored_molinillo.rb".freeze, "bundler/vendored_persistent.rb".freeze, "bundler/vendored_thor.rb".freeze, "bundler/vendored_tmpdir.rb".freeze, "bundler/vendored_uri.rb".freeze, "bundler/version.rb".freeze, "bundler/version_ranges.rb".freeze, "bundler/vlad.rb".freeze, "bundler/worker.rb".freeze, "bundler/yaml_serializer.rb".freeze, "libexec/bundle".freeze, "libexec/bundler".freeze]
  s.homepage = "https://bundler.io".freeze
  s.licenses = ["MIT".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "The best way to manage your application's dependencies".freeze
end
PK:H[� ��2share/gems/specifications/bigdecimal-2.0.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: bigdecimal 2.0.0 ruby lib
# stub: ext/bigdecimal/extconf.rb

Gem::Specification.new do |s|
  s.name = "bigdecimal".freeze
  s.version = "2.0.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Kenta Murata".freeze, "Zachary Scott".freeze, "Shigeo Kobayashi".freeze]
  s.date = "2023-06-06"
  s.description = "This library provides arbitrary-precision decimal floating-point number class.".freeze
  s.email = ["mrkn@mrkn.jp".freeze]
  s.extensions = ["ext/bigdecimal/extconf.rb".freeze]
  s.files = ["bigdecimal.rb".freeze, "bigdecimal.so".freeze, "bigdecimal/jacobian.rb".freeze, "bigdecimal/ludcmp.rb".freeze, "bigdecimal/math.rb".freeze, "bigdecimal/newton.rb".freeze, "bigdecimal/util.rb".freeze, "ext/bigdecimal/extconf.rb".freeze]
  s.homepage = "https://github.com/ruby/bigdecimal".freeze
  s.licenses = ["ruby".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Arbitrary-precision decimal floating-point number library.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0.9"])
    s.add_development_dependency(%q<minitest>.freeze, ["< 5.0.0"])
    s.add_development_dependency(%q<pry>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake>.freeze, ["~> 10.0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0.9"])
    s.add_dependency(%q<minitest>.freeze, ["< 5.0.0"])
    s.add_dependency(%q<pry>.freeze, [">= 0"])
  end
end
PK:H[���Ք�,share/gems/specifications/json-2.3.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: json 2.3.0 ruby lib

Gem::Specification.new do |s|
  s.name = "json".freeze
  s.version = "2.3.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Florian Frank".freeze]
  s.date = "2019-12-11"
  s.description = "This is a JSON implementation as a Ruby extension in C.".freeze
  s.email = "flori@ping.de".freeze
  s.extensions = ["ext/json/ext/generator/extconf.rb".freeze, "ext/json/ext/parser/extconf.rb".freeze, "ext/json/extconf.rb".freeze]
  s.extra_rdoc_files = ["README.md".freeze]
  s.files = ["README.md".freeze, "ext/json/ext/generator/extconf.rb".freeze, "ext/json/ext/parser/extconf.rb".freeze, "ext/json/extconf.rb".freeze, "json.rb".freeze, "json/add/bigdecimal.rb".freeze, "json/add/complex.rb".freeze, "json/add/core.rb".freeze, "json/add/date.rb".freeze, "json/add/date_time.rb".freeze, "json/add/exception.rb".freeze, "json/add/ostruct.rb".freeze, "json/add/range.rb".freeze, "json/add/rational.rb".freeze, "json/add/regexp.rb".freeze, "json/add/set.rb".freeze, "json/add/struct.rb".freeze, "json/add/symbol.rb".freeze, "json/add/time.rb".freeze, "json/common.rb".freeze, "json/ext.rb".freeze, "json/ext/generator.so".freeze, "json/ext/parser.so".freeze, "json/generic_object.rb".freeze, "json/version.rb".freeze, "tests/test_helper.rb".freeze]
  s.homepage = "http://flori.github.com/json".freeze
  s.licenses = ["Ruby".freeze]
  s.rdoc_options = ["--title".freeze, "JSON implemention for Ruby".freeze, "--main".freeze, "README.md".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 1.9".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "JSON Implementation for Ruby".freeze
  s.test_files = ["tests/test_helper.rb".freeze]

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, ["~> 2.0"])
  else
    s.add_dependency(%q<rake>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, ["~> 2.0"])
  end
end
PK:H[`C#�	�	+share/gems/specifications/irb-1.2.6.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: irb 1.2.6 ruby lib

Gem::Specification.new do |s|
  s.name = "irb".freeze
  s.version = "1.2.6"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Keiju ISHITSUKA".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "Interactive Ruby command-line tool for REPL (Read Eval Print Loop).".freeze
  s.email = ["keiju@ruby-lang.org".freeze]
  s.executables = ["irb".freeze]
  s.files = ["exe/irb".freeze, "irb.rb".freeze, "irb/cmd/chws.rb".freeze, "irb/cmd/fork.rb".freeze, "irb/cmd/help.rb".freeze, "irb/cmd/info.rb".freeze, "irb/cmd/load.rb".freeze, "irb/cmd/nop.rb".freeze, "irb/cmd/pushws.rb".freeze, "irb/cmd/subirb.rb".freeze, "irb/color.rb".freeze, "irb/completion.rb".freeze, "irb/context.rb".freeze, "irb/easter-egg.rb".freeze, "irb/ext/change-ws.rb".freeze, "irb/ext/history.rb".freeze, "irb/ext/loader.rb".freeze, "irb/ext/multi-irb.rb".freeze, "irb/ext/save-history.rb".freeze, "irb/ext/tracer.rb".freeze, "irb/ext/use-loader.rb".freeze, "irb/ext/workspaces.rb".freeze, "irb/extend-command.rb".freeze, "irb/frame.rb".freeze, "irb/help.rb".freeze, "irb/init.rb".freeze, "irb/input-method.rb".freeze, "irb/inspector.rb".freeze, "irb/lc/error.rb".freeze, "irb/lc/ja/encoding_aliases.rb".freeze, "irb/lc/ja/error.rb".freeze, "irb/locale.rb".freeze, "irb/magic-file.rb".freeze, "irb/notifier.rb".freeze, "irb/output-method.rb".freeze, "irb/ruby-lex.rb".freeze, "irb/src_encoding.rb".freeze, "irb/version.rb".freeze, "irb/workspace.rb".freeze, "irb/ws-for-case-2.rb".freeze, "irb/xmp.rb".freeze]
  s.homepage = "https://github.com/ruby/irb".freeze
  s.licenses = ["Ruby".freeze, "BSD-2-Clause".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.5".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Interactive Ruby command-line tool for REPL (Read Eval Print Loop).".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_runtime_dependency(%q<reline>.freeze, [">= 0.1.5"])
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<reline>.freeze, [">= 0.1.5"])
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�ׂii/share/gems/specifications/openssl-2.1.4.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: openssl 2.1.4 ruby lib
# stub: ext/openssl/extconf.rb

Gem::Specification.new do |s|
  s.name = "openssl".freeze
  s.version = "2.1.4"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "msys2_mingw_dependencies" => "openssl" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Martin Bosslet".freeze, "SHIBATA Hiroshi".freeze, "Zachary Scott".freeze, "Kazuki Yamaguchi".freeze]
  s.date = "2023-06-06"
  s.description = "It wraps the OpenSSL library.".freeze
  s.email = ["ruby-core@ruby-lang.org".freeze]
  s.extensions = ["ext/openssl/extconf.rb".freeze]
  s.extra_rdoc_files = ["CONTRIBUTING.md".freeze, "README.ja.md".freeze, "README.md".freeze]
  s.files = ["CONTRIBUTING.md".freeze, "README.ja.md".freeze, "README.md".freeze, "ext/openssl/extconf.rb".freeze, "openssl.rb".freeze, "openssl.so".freeze, "openssl/bn.rb".freeze, "openssl/buffering.rb".freeze, "openssl/cipher.rb".freeze, "openssl/config.rb".freeze, "openssl/digest.rb".freeze, "openssl/pkcs5.rb".freeze, "openssl/pkey.rb".freeze, "openssl/ssl.rb".freeze, "openssl/x509.rb".freeze]
  s.homepage = "https://github.com/ruby/openssl".freeze
  s.licenses = ["Ruby".freeze]
  s.rdoc_options = ["--main".freeze, "README.md".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.3.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "OpenSSL provides SSL, TLS and general purpose cryptography.".freeze

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<rake>.freeze, [">= 11.2.0"])
    s.add_development_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_development_dependency(%q<test-unit>.freeze, ["~> 3.0"])
    s.add_development_dependency(%q<rdoc>.freeze, [">= 0"])
  else
    s.add_dependency(%q<rake>.freeze, [">= 11.2.0"])
    s.add_dependency(%q<rake-compiler>.freeze, [">= 0"])
    s.add_dependency(%q<test-unit>.freeze, ["~> 3.0"])
    s.add_dependency(%q<rdoc>.freeze, [">= 0"])
  end
end
PK:H[ş�߽�.share/gems/specifications/rdoc-6.2.1.1.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rdoc 6.2.1.1 ruby lib

Gem::Specification.new do |s|
  s.name = "rdoc".freeze
  s.version = "6.2.1.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 2.2".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Eric Hodel".freeze, "Dave Thomas".freeze, "Phil Hagelberg".freeze, "Tony Strauss".freeze, "Zachary Scott".freeze, "Hiroshi SHIBATA".freeze, "ITOYANAGI Sakura".freeze]
  s.bindir = "exe".freeze
  s.date = "2023-06-06"
  s.description = "RDoc produces HTML and command-line documentation for Ruby projects.\nRDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line.\n".freeze
  s.email = ["drbrain@segment7.net".freeze, "".freeze, "".freeze, "".freeze, "mail@zzak.io".freeze, "hsbt@ruby-lang.org".freeze, "aycabta@gmail.com".freeze]
  s.executables = ["rdoc".freeze, "ri".freeze]
  s.extra_rdoc_files = ["CVE-2013-0256.rdoc".freeze, "CONTRIBUTING.rdoc".freeze, "ExampleMarkdown.md".freeze, "ExampleRDoc.rdoc".freeze, "History.rdoc".freeze, "LEGAL.rdoc".freeze, "LICENSE.rdoc".freeze, "README.rdoc".freeze, "RI.rdoc".freeze, "TODO.rdoc".freeze]
  s.files = ["CONTRIBUTING.rdoc".freeze, "CVE-2013-0256.rdoc".freeze, "ExampleMarkdown.md".freeze, "ExampleRDoc.rdoc".freeze, "History.rdoc".freeze, "LEGAL.rdoc".freeze, "LICENSE.rdoc".freeze, "README.rdoc".freeze, "RI.rdoc".freeze, "TODO.rdoc".freeze, "exe/rdoc".freeze, "exe/ri".freeze, "rdoc.rb".freeze, "rdoc/alias.rb".freeze, "rdoc/anon_class.rb".freeze, "rdoc/any_method.rb".freeze, "rdoc/attr.rb".freeze, "rdoc/class_module.rb".freeze, "rdoc/code_object.rb".freeze, "rdoc/code_objects.rb".freeze, "rdoc/comment.rb".freeze, "rdoc/constant.rb".freeze, "rdoc/context.rb".freeze, "rdoc/context/section.rb".freeze, "rdoc/cross_reference.rb".freeze, "rdoc/encoding.rb".freeze, "rdoc/erb_partial.rb".freeze, "rdoc/erbio.rb".freeze, "rdoc/extend.rb".freeze, "rdoc/generator.rb".freeze, "rdoc/generator/darkfish.rb".freeze, "rdoc/generator/json_index.rb".freeze, "rdoc/generator/markup.rb".freeze, "rdoc/generator/pot.rb".freeze, "rdoc/generator/pot/message_extractor.rb".freeze, "rdoc/generator/pot/po.rb".freeze, "rdoc/generator/pot/po_entry.rb".freeze, "rdoc/generator/ri.rb".freeze, "rdoc/ghost_method.rb".freeze, "rdoc/i18n.rb".freeze, "rdoc/i18n/locale.rb".freeze, "rdoc/i18n/text.rb".freeze, "rdoc/include.rb".freeze, "rdoc/known_classes.rb".freeze, "rdoc/markdown.rb".freeze, "rdoc/markdown/entities.rb".freeze, "rdoc/markdown/literals.rb".freeze, "rdoc/markup.rb".freeze, "rdoc/markup/attr_changer.rb".freeze, "rdoc/markup/attr_span.rb".freeze, "rdoc/markup/attribute_manager.rb".freeze, "rdoc/markup/attributes.rb".freeze, "rdoc/markup/blank_line.rb".freeze, "rdoc/markup/block_quote.rb".freeze, "rdoc/markup/document.rb".freeze, "rdoc/markup/formatter.rb".freeze, "rdoc/markup/hard_break.rb".freeze, "rdoc/markup/heading.rb".freeze, "rdoc/markup/include.rb".freeze, "rdoc/markup/indented_paragraph.rb".freeze, "rdoc/markup/list.rb".freeze, "rdoc/markup/list_item.rb".freeze, "rdoc/markup/paragraph.rb".freeze, "rdoc/markup/parser.rb".freeze, "rdoc/markup/pre_process.rb".freeze, "rdoc/markup/raw.rb".freeze, "rdoc/markup/regexp_handling.rb".freeze, "rdoc/markup/rule.rb".freeze, "rdoc/markup/to_ansi.rb".freeze, "rdoc/markup/to_bs.rb".freeze, "rdoc/markup/to_html.rb".freeze, "rdoc/markup/to_html_crossref.rb".freeze, "rdoc/markup/to_html_snippet.rb".freeze, "rdoc/markup/to_joined_paragraph.rb".freeze, "rdoc/markup/to_label.rb".freeze, "rdoc/markup/to_markdown.rb".freeze, "rdoc/markup/to_rdoc.rb".freeze, "rdoc/markup/to_table_of_contents.rb".freeze, "rdoc/markup/to_test.rb".freeze, "rdoc/markup/to_tt_only.rb".freeze, "rdoc/markup/verbatim.rb".freeze, "rdoc/meta_method.rb".freeze, "rdoc/method_attr.rb".freeze, "rdoc/mixin.rb".freeze, "rdoc/normal_class.rb".freeze, "rdoc/normal_module.rb".freeze, "rdoc/options.rb".freeze, "rdoc/parser.rb".freeze, "rdoc/parser/c.rb".freeze, "rdoc/parser/changelog.rb".freeze, "rdoc/parser/markdown.rb".freeze, "rdoc/parser/rd.rb".freeze, "rdoc/parser/ripper_state_lex.rb".freeze, "rdoc/parser/ruby.rb".freeze, "rdoc/parser/ruby_tools.rb".freeze, "rdoc/parser/simple.rb".freeze, "rdoc/parser/text.rb".freeze, "rdoc/rd.rb".freeze, "rdoc/rd/block_parser.rb".freeze, "rdoc/rd/inline.rb".freeze, "rdoc/rd/inline_parser.rb".freeze, "rdoc/rdoc.rb".freeze, "rdoc/require.rb".freeze, "rdoc/ri.rb".freeze, "rdoc/ri/driver.rb".freeze, "rdoc/ri/formatter.rb".freeze, "rdoc/ri/paths.rb".freeze, "rdoc/ri/store.rb".freeze, "rdoc/ri/task.rb".freeze, "rdoc/rubygems_hook.rb".freeze, "rdoc/servlet.rb".freeze, "rdoc/single_class.rb".freeze, "rdoc/stats.rb".freeze, "rdoc/stats/normal.rb".freeze, "rdoc/stats/quiet.rb".freeze, "rdoc/stats/verbose.rb".freeze, "rdoc/store.rb".freeze, "rdoc/task.rb".freeze, "rdoc/text.rb".freeze, "rdoc/token_stream.rb".freeze, "rdoc/tom_doc.rb".freeze, "rdoc/top_level.rb".freeze, "rdoc/version.rb".freeze]
  s.homepage = "https://ruby.github.io/rdoc".freeze
  s.licenses = ["Ruby".freeze]
  s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "RDoc produces HTML and command-line documentation for Ruby projects".freeze
end
PK:H[&��߻	�	-share/gems/specifications/psych-3.1.0.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: psych 3.1.0 ruby lib
# stub: ext/psych/extconf.rb

Gem::Specification.new do |s|
  s.name = "psych".freeze
  s.version = "3.1.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib".freeze]
  s.authors = ["Aaron Patterson".freeze, "SHIBATA Hiroshi".freeze, "Charles Oliver Nutter".freeze]
  s.date = "2023-06-06"
  s.description = "Psych is a YAML parser and emitter. Psych leverages libyaml[https://pyyaml.org/wiki/LibYAML]\nfor its YAML parsing and emitting capabilities. In addition to wrapping libyaml,\nPsych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format.\n".freeze
  s.email = ["aaron@tenderlovemaking.com".freeze, "hsbt@ruby-lang.org".freeze, "headius@headius.com".freeze]
  s.extensions = ["ext/psych/extconf.rb".freeze]
  s.extra_rdoc_files = ["README.md".freeze]
  s.files = ["README.md".freeze, "ext/psych/extconf.rb".freeze, "psych.rb".freeze, "psych.so".freeze, "psych/class_loader.rb".freeze, "psych/coder.rb".freeze, "psych/core_ext.rb".freeze, "psych/exception.rb".freeze, "psych/handler.rb".freeze, "psych/handlers/document_stream.rb".freeze, "psych/handlers/recorder.rb".freeze, "psych/json/ruby_events.rb".freeze, "psych/json/stream.rb".freeze, "psych/json/tree_builder.rb".freeze, "psych/json/yaml_events.rb".freeze, "psych/nodes.rb".freeze, "psych/nodes/alias.rb".freeze, "psych/nodes/document.rb".freeze, "psych/nodes/mapping.rb".freeze, "psych/nodes/node.rb".freeze, "psych/nodes/scalar.rb".freeze, "psych/nodes/sequence.rb".freeze, "psych/nodes/stream.rb".freeze, "psych/omap.rb".freeze, "psych/parser.rb".freeze, "psych/scalar_scanner.rb".freeze, "psych/set.rb".freeze, "psych/stream.rb".freeze, "psych/streaming.rb".freeze, "psych/syntax_error.rb".freeze, "psych/tree_builder.rb".freeze, "psych/versions.rb".freeze, "psych/visitors.rb".freeze, "psych/visitors/depth_first.rb".freeze, "psych/visitors/emitter.rb".freeze, "psych/visitors/json_tree.rb".freeze, "psych/visitors/to_ruby.rb".freeze, "psych/visitors/visitor.rb".freeze, "psych/visitors/yaml_tree.rb".freeze, "psych/y.rb".freeze]
  s.homepage = "https://github.com/ruby/psych".freeze
  s.licenses = ["MIT".freeze]
  s.rdoc_options = ["--main".freeze, "README.md".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "Psych is a YAML parser and emitter".freeze
end
PK:H[l�zz,share/gems/specifications/rack-3.0.8.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rack 3.0.8 ruby lib

Gem::Specification.new do |s|
  s.name = "rack".freeze
  s.version = "3.0.8"

  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "bug_tracker_uri" => "https://github.com/rack/rack/issues", "changelog_uri" => "https://github.com/rack/rack/blob/main/CHANGELOG.md", "documentation_uri" => "https://rubydoc.info/github/rack/rack", "source_code_uri" => "https://github.com/rack/rack" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Leah Neukirchen".freeze]
  s.date = "2023-06-14"
  s.description = "Rack provides a minimal, modular and adaptable interface for developing\nweb applications in Ruby. By wrapping HTTP requests and responses in\nthe simplest way possible, it unifies and distills the API for web\nservers, web frameworks, and software in between (the so-called\nmiddleware) into a single method call.\n".freeze
  s.email = "leah@vuxu.org".freeze
  s.extra_rdoc_files = ["README.md".freeze, "CHANGELOG.md".freeze, "CONTRIBUTING.md".freeze]
  s.files = ["CHANGELOG.md".freeze, "CONTRIBUTING.md".freeze, "README.md".freeze]
  s.homepage = "https://github.com/rack/rack".freeze
  s.licenses = ["MIT".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
  s.rubygems_version = "3.1.6".freeze
  s.summary = "A modular Ruby webserver interface.".freeze

  s.installed_by_version = "3.1.6" if s.respond_to? :installed_by_version

  if s.respond_to? :specification_version then
    s.specification_version = 4
  end

  if s.respond_to? :add_runtime_dependency then
    s.add_development_dependency(%q<minitest>.freeze, ["~> 5.0"])
    s.add_development_dependency(%q<minitest-global_expectations>.freeze, [">= 0"])
    s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_development_dependency(%q<rake>.freeze, [">= 0"])
  else
    s.add_dependency(%q<minitest>.freeze, ["~> 5.0"])
    s.add_dependency(%q<minitest-global_expectations>.freeze, [">= 0"])
    s.add_dependency(%q<bundler>.freeze, [">= 0"])
    s.add_dependency(%q<rake>.freeze, [">= 0"])
  end
end
PK:H[�ʏM��-share/gems/gems/bundler-2.2.24/libexec/bundlenuȯ��#!/usr/bin/ruby
# frozen_string_literal: true

# Exit cleanly from an early interrupt
Signal.trap("INT") do
  Bundler.ui.debug("\n#{caller.join("\n")}") if defined?(Bundler)
  exit 1
end

base_path = File.expand_path("../lib", __dir__)

if File.exist?(base_path)
  require_relative "../lib/bundler"
else
  require "bundler"
end

# Check if an older version of bundler is installed
$LOAD_PATH.each do |path|
  next unless path =~ %r{/bundler-0\.(\d+)} && $1.to_i < 9
  err = String.new
  err << "Looks like you have a version of bundler that's older than 0.9.\n"
  err << "Please remove your old versions.\n"
  err << "An easy way to do this is by running `gem cleanup bundler`."
  abort(err)
end

if File.exist?(base_path)
  require_relative "../lib/bundler/friendly_errors"
else
  require "bundler/friendly_errors"
end

Bundler.with_friendly_errors do
  if File.exist?(base_path)
    require_relative "../lib/bundler/cli"
  else
    require "bundler/cli"
  end

  # Allow any command to use --help flag to show help for that command
  help_flags = %w[--help -h]
  help_flag_used = ARGV.any? {|a| help_flags.include? a }
  args = help_flag_used ? Bundler::CLI.reformatted_help_args(ARGV) : ARGV

  Bundler::CLI.start(args, :debug => true)
end
PK:H[�D�\\.share/gems/gems/bundler-2.2.24/libexec/bundlernuȯ��#!/usr/bin/ruby
# frozen_string_literal: true

load File.expand_path("../bundle", __FILE__)
PK:H[^�
�^�^-share/gems/gems/bundler-2.2.24/lib/bundler.rbnu�[���# frozen_string_literal: true

require_relative "bundler/vendored_fileutils"
require "pathname"
require "rbconfig"

require_relative "bundler/errors"
require_relative "bundler/environment_preserver"
require_relative "bundler/plugin"
require_relative "bundler/rubygems_ext"
require_relative "bundler/rubygems_integration"
require_relative "bundler/version"
require_relative "bundler/constants"
require_relative "bundler/current_ruby"
require_relative "bundler/build_metadata"

# Bundler provides a consistent environment for Ruby projects by
# tracking and installing the exact gems and versions that are needed.
#
# Since Ruby 2.6, Bundler is a part of Ruby's standard library.
#
# Bunder is used by creating _gemfiles_ listing all the project dependencies
# and (optionally) their versions and then using
#
#   require 'bundler/setup'
#
# or Bundler.setup to setup environment where only specified gems and their
# specified versions could be used.
#
# See {Bundler website}[https://bundler.io/docs.html] for extensive documentation
# on gemfiles creation and Bundler usage.
#
# As a standard library inside project, Bundler could be used for introspection
# of loaded and required modules.
#
module Bundler
  environment_preserver = EnvironmentPreserver.from_env
  ORIGINAL_ENV = environment_preserver.restore
  environment_preserver.replace_with_backup
  SUDO_MUTEX = Mutex.new

  autoload :Definition,             File.expand_path("bundler/definition", __dir__)
  autoload :Dependency,             File.expand_path("bundler/dependency", __dir__)
  autoload :DepProxy,               File.expand_path("bundler/dep_proxy", __dir__)
  autoload :Deprecate,              File.expand_path("bundler/deprecate", __dir__)
  autoload :Dsl,                    File.expand_path("bundler/dsl", __dir__)
  autoload :EndpointSpecification,  File.expand_path("bundler/endpoint_specification", __dir__)
  autoload :Env,                    File.expand_path("bundler/env", __dir__)
  autoload :Fetcher,                File.expand_path("bundler/fetcher", __dir__)
  autoload :FeatureFlag,            File.expand_path("bundler/feature_flag", __dir__)
  autoload :GemHelper,              File.expand_path("bundler/gem_helper", __dir__)
  autoload :GemHelpers,             File.expand_path("bundler/gem_helpers", __dir__)
  autoload :GemVersionPromoter,     File.expand_path("bundler/gem_version_promoter", __dir__)
  autoload :Graph,                  File.expand_path("bundler/graph", __dir__)
  autoload :Index,                  File.expand_path("bundler/index", __dir__)
  autoload :Injector,               File.expand_path("bundler/injector", __dir__)
  autoload :Installer,              File.expand_path("bundler/installer", __dir__)
  autoload :LazySpecification,      File.expand_path("bundler/lazy_specification", __dir__)
  autoload :LockfileParser,         File.expand_path("bundler/lockfile_parser", __dir__)
  autoload :MatchPlatform,          File.expand_path("bundler/match_platform", __dir__)
  autoload :ProcessLock,            File.expand_path("bundler/process_lock", __dir__)
  autoload :RemoteSpecification,    File.expand_path("bundler/remote_specification", __dir__)
  autoload :Resolver,               File.expand_path("bundler/resolver", __dir__)
  autoload :Retry,                  File.expand_path("bundler/retry", __dir__)
  autoload :RubyDsl,                File.expand_path("bundler/ruby_dsl", __dir__)
  autoload :RubyVersion,            File.expand_path("bundler/ruby_version", __dir__)
  autoload :Runtime,                File.expand_path("bundler/runtime", __dir__)
  autoload :Settings,               File.expand_path("bundler/settings", __dir__)
  autoload :SharedHelpers,          File.expand_path("bundler/shared_helpers", __dir__)
  autoload :Source,                 File.expand_path("bundler/source", __dir__)
  autoload :SourceList,             File.expand_path("bundler/source_list", __dir__)
  autoload :SourceMap,              File.expand_path("bundler/source_map", __dir__)
  autoload :SpecSet,                File.expand_path("bundler/spec_set", __dir__)
  autoload :StubSpecification,      File.expand_path("bundler/stub_specification", __dir__)
  autoload :UI,                     File.expand_path("bundler/ui", __dir__)
  autoload :URICredentialsFilter,   File.expand_path("bundler/uri_credentials_filter", __dir__)
  autoload :VersionRanges,          File.expand_path("bundler/version_ranges", __dir__)

  class << self
    def configure
      @configured ||= configure_gem_home_and_path
    end

    def ui
      (defined?(@ui) && @ui) || (self.ui = UI::Shell.new)
    end

    def ui=(ui)
      Bundler.rubygems.ui = UI::RGProxy.new(ui)
      @ui = ui
    end

    # Returns absolute path of where gems are installed on the filesystem.
    def bundle_path
      @bundle_path ||= Pathname.new(configured_bundle_path.path).expand_path(root)
    end

    def configured_bundle_path
      @configured_bundle_path ||= settings.path.tap(&:validate!)
    end

    # Returns absolute location of where binstubs are installed to.
    def bin_path
      @bin_path ||= begin
        path = settings[:bin] || "bin"
        path = Pathname.new(path).expand_path(root).expand_path
        SharedHelpers.filesystem_access(path) {|p| FileUtils.mkdir_p(p) }
        path
      end
    end

    # Turns on the Bundler runtime. After +Bundler.setup+ call, all +load+ or
    # +require+ of the gems would be allowed only if they are part of
    # the Gemfile or Ruby's standard library. If the versions specified
    # in Gemfile, only those versions would be loaded.
    #
    # Assuming Gemfile
    #
    #    gem 'first_gem', '= 1.0'
    #    group :test do
    #      gem 'second_gem', '= 1.0'
    #    end
    #
    # The code using Bundler.setup works as follows:
    #
    #    require 'third_gem' # allowed, required from global gems
    #    require 'first_gem' # allowed, loads the last installed version
    #    Bundler.setup
    #    require 'fourth_gem' # fails with LoadError
    #    require 'second_gem' # loads exactly version 1.0
    #
    # +Bundler.setup+ can be called only once, all subsequent calls are no-op.
    #
    # If _groups_ list is provided, only gems from specified groups would
    # be allowed (gems specified outside groups belong to special +:default+ group).
    #
    # To require all gems from Gemfile (or only some groups), see Bundler.require.
    #
    def setup(*groups)
      # Return if all groups are already loaded
      return @setup if defined?(@setup) && @setup

      definition.validate_runtime!

      SharedHelpers.print_major_deprecations!

      if groups.empty?
        # Load all groups, but only once
        @setup = load.setup
      else
        load.setup(*groups)
      end
    end

    # Setups Bundler environment (see Bundler.setup) if it is not already set,
    # and loads all gems from groups specified. Unlike ::setup, can be called
    # multiple times with different groups (if they were allowed by setup).
    #
    # Assuming Gemfile
    #
    #    gem 'first_gem', '= 1.0'
    #    group :test do
    #      gem 'second_gem', '= 1.0'
    #    end
    #
    # The code will work as follows:
    #
    #    Bundler.setup # allow all groups
    #    Bundler.require(:default) # requires only first_gem
    #    # ...later
    #    Bundler.require(:test)   # requires second_gem
    #
    def require(*groups)
      setup(*groups).require(*groups)
    end

    def load
      @load ||= Runtime.new(root, definition)
    end

    def environment
      SharedHelpers.major_deprecation 2, "Bundler.environment has been removed in favor of Bundler.load", :print_caller_location => true
      load
    end

    # Returns an instance of Bundler::Definition for given Gemfile and lockfile
    #
    # @param unlock [Hash, Boolean, nil] Gems that have been requested
    #   to be updated or true if all gems should be updated
    # @return [Bundler::Definition]
    def definition(unlock = nil)
      @definition = nil if unlock
      @definition ||= begin
        configure
        Definition.build(default_gemfile, default_lockfile, unlock)
      end
    end

    def frozen_bundle?
      frozen = settings[:deployment]
      frozen ||= settings[:frozen]
      frozen
    end

    def locked_gems
      @locked_gems ||=
        if defined?(@definition) && @definition
          definition.locked_gems
        elsif Bundler.default_lockfile.file?
          lock = Bundler.read_file(Bundler.default_lockfile)
          LockfileParser.new(lock)
        end
    end

    def most_specific_locked_platform?(platform)
      return false unless defined?(@definition) && @definition

      definition.most_specific_locked_platform == platform
    end

    def ruby_scope
      "#{Bundler.rubygems.ruby_engine}/#{RbConfig::CONFIG["ruby_version"]}"
    end

    def user_home
      @user_home ||= begin
        home = Bundler.rubygems.user_home
        bundle_home = home ? File.join(home, ".bundle") : nil

        warning = if home.nil?
          "Your home directory is not set."
        elsif !File.directory?(home)
          "`#{home}` is not a directory."
        elsif !File.writable?(home) && (!File.directory?(bundle_home) || !File.writable?(bundle_home))
          "`#{home}` is not writable."
        end

        if warning
          Bundler.ui.warn "#{warning}\n"
          user_home = tmp_home_path
          Bundler.ui.warn "Bundler will use `#{user_home}' as your home directory temporarily.\n"
          user_home
        else
          Pathname.new(home)
        end
      end
    end

    def user_bundle_path(dir = "home")
      env_var, fallback = case dir
                          when "home"
                            ["BUNDLE_USER_HOME", proc { Pathname.new(user_home).join(".bundle") }]
                          when "cache"
                            ["BUNDLE_USER_CACHE", proc { user_bundle_path.join("cache") }]
                          when "config"
                            ["BUNDLE_USER_CONFIG", proc { user_bundle_path.join("config") }]
                          when "plugin"
                            ["BUNDLE_USER_PLUGIN", proc { user_bundle_path.join("plugin") }]
                          else
                            raise BundlerError, "Unknown user path requested: #{dir}"
      end
      # `fallback` will already be a Pathname, but Pathname.new() is
      # idempotent so it's OK
      Pathname.new(ENV.fetch(env_var, &fallback))
    end

    def user_cache
      user_bundle_path("cache")
    end

    def home
      bundle_path.join("bundler")
    end

    def install_path
      home.join("gems")
    end

    def specs_path
      bundle_path.join("specifications")
    end

    def root
      @root ||= begin
                  SharedHelpers.root
                rescue GemfileNotFound
                  bundle_dir = default_bundle_dir
                  raise GemfileNotFound, "Could not locate Gemfile or .bundle/ directory" unless bundle_dir
                  Pathname.new(File.expand_path("..", bundle_dir))
                end
    end

    def app_config_path
      if app_config = ENV["BUNDLE_APP_CONFIG"]
        app_config_pathname = Pathname.new(app_config)

        if app_config_pathname.absolute?
          app_config_pathname
        else
          app_config_pathname.expand_path(root)
        end
      else
        root.join(".bundle")
      end
    end

    def app_cache(custom_path = nil)
      path = custom_path || root
      Pathname.new(path).join(settings.app_cache_path)
    end

    def tmp(name = Process.pid.to_s)
      Kernel.send(:require, "tmpdir")
      Pathname.new(Dir.mktmpdir(["bundler", name]))
    end

    def rm_rf(path)
      FileUtils.remove_entry_secure(path) if path && File.exist?(path)
    rescue ArgumentError
      message = <<EOF
It is a security vulnerability to allow your home directory to be world-writable, and bundler can not continue.
You should probably consider fixing this issue by running `chmod o-w ~` on *nix.
Please refer to https://ruby-doc.org/stdlib-2.1.2/libdoc/fileutils/rdoc/FileUtils.html#method-c-remove_entry_secure for details.
EOF
      File.world_writable?(path) ? Bundler.ui.warn(message) : raise
      raise PathError, "Please fix the world-writable issue with your #{path} directory"
    end

    def settings
      @settings ||= Settings.new(app_config_path)
    rescue GemfileNotFound
      @settings = Settings.new(Pathname.new(".bundle").expand_path)
    end

    # @return [Hash] Environment present before Bundler was activated
    def original_env
      ORIGINAL_ENV.clone
    end

    # @deprecated Use `unbundled_env` instead
    def clean_env
      Bundler::SharedHelpers.major_deprecation(
        2,
        "`Bundler.clean_env` has been deprecated in favor of `Bundler.unbundled_env`. " \
        "If you instead want the environment before bundler was originally loaded, use `Bundler.original_env`",
        :print_caller_location => true
      )

      unbundled_env
    end

    # @return [Hash] Environment with all bundler-related variables removed
    def unbundled_env
      env = original_env

      if env.key?("BUNDLER_ORIG_MANPATH")
        env["MANPATH"] = env["BUNDLER_ORIG_MANPATH"]
      end

      env.delete_if {|k, _| k[0, 7] == "BUNDLE_" }

      if env.key?("RUBYOPT")
        rubyopt = env["RUBYOPT"].split(" ")
        rubyopt.delete("-r#{File.expand_path("bundler/setup", __dir__)}")
        rubyopt.delete("-rbundler/setup")
        env["RUBYOPT"] = rubyopt.join(" ")
      end

      if env.key?("RUBYLIB")
        rubylib = env["RUBYLIB"].split(File::PATH_SEPARATOR)
        rubylib.delete(File.expand_path("..", __FILE__))
        env["RUBYLIB"] = rubylib.join(File::PATH_SEPARATOR)
      end

      env
    end

    # Run block with environment present before Bundler was activated
    def with_original_env
      with_env(original_env) { yield }
    end

    # @deprecated Use `with_unbundled_env` instead
    def with_clean_env
      Bundler::SharedHelpers.major_deprecation(
        2,
        "`Bundler.with_clean_env` has been deprecated in favor of `Bundler.with_unbundled_env`. " \
        "If you instead want the environment before bundler was originally loaded, use `Bundler.with_original_env`",
        :print_caller_location => true
      )

      with_env(unbundled_env) { yield }
    end

    # Run block with all bundler-related variables removed
    def with_unbundled_env
      with_env(unbundled_env) { yield }
    end

    # Run subcommand with the environment present before Bundler was activated
    def original_system(*args)
      with_original_env { Kernel.system(*args) }
    end

    # @deprecated Use `unbundled_system` instead
    def clean_system(*args)
      Bundler::SharedHelpers.major_deprecation(
        2,
        "`Bundler.clean_system` has been deprecated in favor of `Bundler.unbundled_system`. " \
        "If you instead want to run the command in the environment before bundler was originally loaded, use `Bundler.original_system`",
        :print_caller_location => true
      )

      with_env(unbundled_env) { Kernel.system(*args) }
    end

    # Run subcommand in an environment with all bundler related variables removed
    def unbundled_system(*args)
      with_unbundled_env { Kernel.system(*args) }
    end

    # Run a `Kernel.exec` to a subcommand with the environment present before Bundler was activated
    def original_exec(*args)
      with_original_env { Kernel.exec(*args) }
    end

    # @deprecated Use `unbundled_exec` instead
    def clean_exec(*args)
      Bundler::SharedHelpers.major_deprecation(
        2,
        "`Bundler.clean_exec` has been deprecated in favor of `Bundler.unbundled_exec`. " \
        "If you instead want to exec to a command in the environment before bundler was originally loaded, use `Bundler.original_exec`",
        :print_caller_location => true
      )

      with_env(unbundled_env) { Kernel.exec(*args) }
    end

    # Run a `Kernel.exec` to a subcommand in an environment with all bundler related variables removed
    def unbundled_exec(*args)
      with_env(unbundled_env) { Kernel.exec(*args) }
    end

    def local_platform
      return Gem::Platform::RUBY if settings[:force_ruby_platform] || Gem.platforms == [Gem::Platform::RUBY]
      Gem::Platform.local
    end

    def default_gemfile
      SharedHelpers.default_gemfile
    end

    def default_lockfile
      SharedHelpers.default_lockfile
    end

    def default_bundle_dir
      SharedHelpers.default_bundle_dir
    end

    def system_bindir
      # Gem.bindir doesn't always return the location that RubyGems will install
      # system binaries. If you put '-n foo' in your .gemrc, RubyGems will
      # install binstubs there instead. Unfortunately, RubyGems doesn't expose
      # that directory at all, so rather than parse .gemrc ourselves, we allow
      # the directory to be set as well, via `bundle config set --local bindir foo`.
      Bundler.settings[:system_bindir] || Bundler.rubygems.gem_bindir
    end

    def preferred_gemfile_name
      Bundler.settings[:init_gems_rb] ? "gems.rb" : "Gemfile"
    end

    def use_system_gems?
      configured_bundle_path.use_system_gems?
    end

    def requires_sudo?
      return @requires_sudo if defined?(@requires_sudo_ran)

      sudo_present = which "sudo" if settings.allow_sudo?

      if sudo_present
        # the bundle path and subdirectories need to be writable for RubyGems
        # to be able to unpack and install gems without exploding
        path = bundle_path
        path = path.parent until path.exist?

        # bins are written to a different location on OS X
        bin_dir = Pathname.new(Bundler.system_bindir)
        bin_dir = bin_dir.parent until bin_dir.exist?

        # if any directory is not writable, we need sudo
        files = [path, bin_dir] | Dir[bundle_path.join("build_info/*").to_s] | Dir[bundle_path.join("*").to_s]
        unwritable_files = files.reject {|f| File.writable?(f) }
        sudo_needed = !unwritable_files.empty?
        if sudo_needed
          Bundler.ui.warn "Following files may not be writable, so sudo is needed:\n  #{unwritable_files.map(&:to_s).sort.join("\n  ")}"
        end
      end

      @requires_sudo_ran = true
      @requires_sudo = settings.allow_sudo? && sudo_present && sudo_needed
    end

    def mkdir_p(path, options = {})
      if requires_sudo? && !options[:no_sudo]
        sudo "mkdir -p '#{path}'" unless File.exist?(path)
      else
        SharedHelpers.filesystem_access(path, :write) do |p|
          FileUtils.mkdir_p(p)
        end
      end
    end

    def which(executable)
      if File.file?(executable) && File.executable?(executable)
        executable
      elsif paths = ENV["PATH"]
        quote = '"'.freeze
        paths.split(File::PATH_SEPARATOR).find do |path|
          path = path[1..-2] if path.start_with?(quote) && path.end_with?(quote)
          executable_path = File.expand_path(executable, path)
          return executable_path if File.file?(executable_path) && File.executable?(executable_path)
        end
      end
    end

    def sudo(str)
      SUDO_MUTEX.synchronize do
        prompt = "\n\n" + <<-PROMPT.gsub(/^ {6}/, "").strip + " "
        Your user account isn't allowed to install to the system RubyGems.
        You can cancel this installation and run:

            bundle config set --local path 'vendor/bundle'
            bundle install

        to install the gems into ./vendor/bundle/, or you can enter your password
        and install the bundled gems to RubyGems using sudo.

        Password:
        PROMPT

        unless @prompted_for_sudo ||= system(%(sudo -k -p "#{prompt}" true))
          raise SudoNotPermittedError,
            "Bundler requires sudo access to install at the moment. " \
            "Try installing again, granting Bundler sudo access when prompted, or installing into a different path."
        end

        `sudo -p "#{prompt}" #{str}`
      end
    end

    def read_file(file)
      SharedHelpers.filesystem_access(file, :read) do
        File.open(file, "r:UTF-8", &:read)
      end
    end

    def load_marshal(data)
      Marshal.load(data)
    rescue StandardError => e
      raise MarshalError, "#{e.class}: #{e.message}"
    end

    def load_gemspec(file, validate = false)
      @gemspec_cache ||= {}
      key = File.expand_path(file)
      @gemspec_cache[key] ||= load_gemspec_uncached(file, validate)
      # Protect against caching side-effected gemspecs by returning a
      # new instance each time.
      @gemspec_cache[key].dup if @gemspec_cache[key]
    end

    def load_gemspec_uncached(file, validate = false)
      path = Pathname.new(file)
      contents = read_file(file)
      spec = if contents.start_with?("---") # YAML header
        eval_yaml_gemspec(path, contents)
      else
        # Eval the gemspec from its parent directory, because some gemspecs
        # depend on "./" relative paths.
        SharedHelpers.chdir(path.dirname.to_s) do
          eval_gemspec(path, contents)
        end
      end
      return unless spec
      spec.loaded_from = path.expand_path.to_s
      Bundler.rubygems.validate(spec) if validate
      spec
    end

    def clear_gemspec_cache
      @gemspec_cache = {}
    end

    def git_present?
      return @git_present if defined?(@git_present)
      @git_present = Bundler.which("git") || Bundler.which("git.exe")
    end

    def feature_flag
      @feature_flag ||= FeatureFlag.new(VERSION)
    end

    def reset!
      reset_paths!
      Plugin.reset!
      reset_rubygems!
    end

    def reset_settings_and_root!
      @settings = nil
      @root = nil
    end

    def reset_paths!
      @bin_path = nil
      @bundler_major_version = nil
      @bundle_path = nil
      @configured = nil
      @configured_bundle_path = nil
      @definition = nil
      @load = nil
      @locked_gems = nil
      @root = nil
      @settings = nil
      @setup = nil
      @user_home = nil
    end

    def reset_rubygems!
      return unless defined?(@rubygems) && @rubygems
      rubygems.undo_replacements
      rubygems.reset
      @rubygems = nil
    end

    private

    def eval_yaml_gemspec(path, contents)
      require_relative "bundler/psyched_yaml"

      # If the YAML is invalid, Syck raises an ArgumentError, and Psych
      # raises a Psych::SyntaxError. See psyched_yaml.rb for more info.
      Gem::Specification.from_yaml(contents)
    rescue YamlLibrarySyntaxError, ArgumentError, Gem::EndOfYAMLException, Gem::Exception
      eval_gemspec(path, contents)
    end

    def eval_gemspec(path, contents)
      eval(contents, TOPLEVEL_BINDING.dup, path.expand_path.to_s)
    rescue ScriptError, StandardError => e
      msg = "There was an error while loading `#{path.basename}`: #{e.message}"

      if e.is_a?(LoadError)
        msg += "\nDoes it try to require a relative path? That's been removed in Ruby 1.9"
      end

      raise GemspecError, Dsl::DSLError.new(msg, path, e.backtrace, contents)
    end

    def configure_gem_home_and_path
      configure_gem_path
      configure_gem_home
      bundle_path
    end

    def configure_gem_path(env = ENV)
      blank_home = env["GEM_HOME"].nil? || env["GEM_HOME"].empty?
      if !use_system_gems?
        # this needs to be empty string to cause
        # PathSupport.split_gem_path to only load up the
        # Bundler --path setting as the GEM_PATH.
        env["GEM_PATH"] = ""
      elsif blank_home
        possibles = [Bundler.rubygems.gem_dir, Bundler.rubygems.gem_path]
        paths = possibles.flatten.compact.uniq.reject(&:empty?)
        env["GEM_PATH"] = paths.join(File::PATH_SEPARATOR)
      end
    end

    def configure_gem_home
      Bundler::SharedHelpers.set_env "GEM_HOME", File.expand_path(bundle_path, root)
      Bundler.rubygems.clear_paths
    end

    def tmp_home_path
      Kernel.send(:require, "tmpdir")
      SharedHelpers.filesystem_access(Dir.tmpdir) do
        path = Bundler.tmp
        at_exit { Bundler.rm_rf(path) }
        path
      end
    end

    # @param env [Hash]
    def with_env(env)
      backup = ENV.to_hash
      ENV.replace(env)
      yield
    ensure
      ENV.replace(backup)
    end
  end
end
PK:H[+���3share/gems/gems/bundler-2.2.24/lib/bundler/index.rbnu�[���# frozen_string_literal: true

module Bundler
  class Index
    include Enumerable

    def self.build
      i = new
      yield i
      i
    end

    attr_reader :specs, :all_specs, :sources
    protected :specs, :all_specs

    RUBY = "ruby".freeze
    NULL = "\0".freeze

    def initialize
      @sources = []
      @cache = {}
      @specs = Hash.new {|h, k| h[k] = {} }
      @all_specs = Hash.new {|h, k| h[k] = EMPTY_SEARCH }
    end

    def initialize_copy(o)
      @sources = o.sources.dup
      @cache = {}
      @specs = Hash.new {|h, k| h[k] = {} }
      @all_specs = Hash.new {|h, k| h[k] = EMPTY_SEARCH }

      o.specs.each do |name, hash|
        @specs[name] = hash.dup
      end
      o.all_specs.each do |name, array|
        @all_specs[name] = array.dup
      end
    end

    def inspect
      "#<#{self.class}:0x#{object_id} sources=#{sources.map(&:inspect)} specs.size=#{specs.size}>"
    end

    def empty?
      each { return false }
      true
    end

    def search_all(name)
      all_matches = local_search(name) + @all_specs[name]
      @sources.each do |source|
        all_matches.concat(source.search_all(name))
      end
      all_matches
    end

    # Search this index's specs, and any source indexes that this index knows
    # about, returning all of the results.
    def search(query, base = nil)
      sort_specs(unsorted_search(query, base))
    end

    def unsorted_search(query, base)
      results = local_search(query, base)

      seen = results.map(&:full_name).uniq unless @sources.empty?

      @sources.each do |source|
        source.unsorted_search(query, base).each do |spec|
          next if seen.include?(spec.full_name)

          seen << spec.full_name
          results << spec
        end
      end

      results
    end
    protected :unsorted_search

    def self.sort_specs(specs)
      specs.sort_by do |s|
        platform_string = s.platform.to_s
        [s.version, platform_string == RUBY ? NULL : platform_string]
      end
    end

    def sort_specs(specs)
      self.class.sort_specs(specs)
    end

    def local_search(query, base = nil)
      case query
      when Gem::Specification, RemoteSpecification, LazySpecification, EndpointSpecification then search_by_spec(query)
      when String then specs_by_name(query)
      when Gem::Dependency then search_by_dependency(query, base)
      when DepProxy then search_by_dependency(query.dep, base)
      else
        raise "You can't search for a #{query.inspect}."
      end
    end

    alias_method :[], :search

    def <<(spec)
      @specs[spec.name][spec.full_name] = spec
      spec
    end

    def each(&blk)
      return enum_for(:each) unless blk
      specs.values.each do |spec_sets|
        spec_sets.values.each(&blk)
      end
      sources.each {|s| s.each(&blk) }
      self
    end

    def spec_names
      names = specs.keys + sources.map(&:spec_names)
      names.uniq!
      names
    end

    def unmet_dependency_names
      dependency_names.select do |name|
        search(name).empty?
      end
    end

    def dependency_names
      names = []
      each do |spec|
        spec.dependencies.each do |dep|
          next if dep.type == :development
          names << dep.name
        end
      end
      names.uniq
    end

    def use(other, override_dupes = false)
      return unless other
      other.each do |s|
        if (dupes = search_by_spec(s)) && !dupes.empty?
          # safe to << since it's a new array when it has contents
          @all_specs[s.name] = dupes << s
          next unless override_dupes
        end
        self << s
      end
      self
    end

    def size
      @sources.inject(@specs.size) do |size, source|
        size += source.size
      end
    end

    # Whether all the specs in self are in other
    # TODO: rename to #include?
    def ==(other)
      all? do |spec|
        other_spec = other[spec].first
        other_spec && dependencies_eql?(spec, other_spec) && spec.source == other_spec.source
      end
    end

    def dependencies_eql?(spec, other_spec)
      deps       = spec.dependencies.select {|d| d.type != :development }
      other_deps = other_spec.dependencies.select {|d| d.type != :development }
      deps.sort == other_deps.sort
    end

    def add_source(index)
      raise ArgumentError, "Source must be an index, not #{index.class}" unless index.is_a?(Index)
      @sources << index
      @sources.uniq! # need to use uniq! here instead of checking for the item before adding
    end

    private

    def specs_by_name(name)
      @specs[name].values
    end

    def search_by_dependency(dependency, base = nil)
      @cache[base || false] ||= {}
      @cache[base || false][dependency] ||= begin
        specs = specs_by_name(dependency.name)
        specs += base if base
        found = specs.select do |spec|
          next true if spec.source.is_a?(Source::Gemspec)
          if base # allow all platforms when searching from a lockfile
            dependency.matches_spec?(spec)
          else
            dependency.matches_spec?(spec) && Gem::Platform.match_spec?(spec)
          end
        end

        found
      end
    end

    EMPTY_SEARCH = [].freeze

    def search_by_spec(spec)
      spec = @specs[spec.name][spec.full_name]
      spec ? [spec] : EMPTY_SEARCH
    end
  end
end
PK:H[|��YY:share/gems/gems/bundler-2.2.24/lib/bundler/vendored_uri.rbnu�[���# frozen_string_literal: true

module Bundler; end
require_relative "vendor/uri/lib/uri"
PK:H[��F��=share/gems/gems/bundler-2.2.24/lib/bundler/lockfile_parser.rbnu�[���# frozen_string_literal: true

module Bundler
  class LockfileParser
    attr_reader :sources, :dependencies, :specs, :platforms, :bundler_version, :ruby_version

    BUNDLED      = "BUNDLED WITH".freeze
    DEPENDENCIES = "DEPENDENCIES".freeze
    PLATFORMS    = "PLATFORMS".freeze
    RUBY         = "RUBY VERSION".freeze
    GIT          = "GIT".freeze
    GEM          = "GEM".freeze
    PATH         = "PATH".freeze
    PLUGIN       = "PLUGIN SOURCE".freeze
    SPECS        = "  specs:".freeze
    OPTIONS      = /^  ([a-z]+): (.*)$/i.freeze
    SOURCE       = [GIT, GEM, PATH, PLUGIN].freeze

    SECTIONS_BY_VERSION_INTRODUCED = {
      Gem::Version.create("1.0") => [DEPENDENCIES, PLATFORMS, GIT, GEM, PATH].freeze,
      Gem::Version.create("1.10") => [BUNDLED].freeze,
      Gem::Version.create("1.12") => [RUBY].freeze,
      Gem::Version.create("1.13") => [PLUGIN].freeze,
    }.freeze

    KNOWN_SECTIONS = SECTIONS_BY_VERSION_INTRODUCED.values.flatten.freeze

    ENVIRONMENT_VERSION_SECTIONS = [BUNDLED, RUBY].freeze

    def self.sections_in_lockfile(lockfile_contents)
      lockfile_contents.scan(/^\w[\w ]*$/).uniq
    end

    def self.unknown_sections_in_lockfile(lockfile_contents)
      sections_in_lockfile(lockfile_contents) - KNOWN_SECTIONS
    end

    def self.sections_to_ignore(base_version = nil)
      base_version &&= base_version.release
      base_version ||= Gem::Version.create("1.0".dup)
      attributes = []
      SECTIONS_BY_VERSION_INTRODUCED.each do |version, introduced|
        next if version <= base_version
        attributes += introduced
      end
      attributes
    end

    def initialize(lockfile)
      @platforms    = []
      @sources      = []
      @dependencies = {}
      @state        = nil
      @specs        = {}

      if lockfile.match(/<<<<<<<|=======|>>>>>>>|\|\|\|\|\|\|\|/)
        raise LockfileError, "Your #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)} contains merge conflicts.\n" \
          "Run `git checkout HEAD -- #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)}` first to get a clean lock."
      end

      lockfile.split(/(?:\r?\n)+/).each do |line|
        if SOURCE.include?(line)
          @state = :source
          parse_source(line)
        elsif line == DEPENDENCIES
          @state = :dependency
        elsif line == PLATFORMS
          @state = :platform
        elsif line == RUBY
          @state = :ruby
        elsif line == BUNDLED
          @state = :bundled_with
        elsif line =~ /^[^\s]/
          @state = nil
        elsif @state
          send("parse_#{@state}", line)
        end
      end
      @specs = @specs.values.sort_by(&:identifier)
      warn_for_outdated_bundler_version
    rescue ArgumentError => e
      Bundler.ui.debug(e)
      raise LockfileError, "Your lockfile is unreadable. Run `rm #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)}` " \
        "and then `bundle install` to generate a new lockfile."
    end

    def warn_for_outdated_bundler_version
      return unless bundler_version
      prerelease_text = bundler_version.prerelease? ? " --pre" : ""
      current_version = Gem::Version.create(Bundler::VERSION)
      return unless current_version < bundler_version
      Bundler.ui.warn "Warning: the running version of Bundler (#{current_version}) is older " \
           "than the version that created the lockfile (#{bundler_version}). We suggest you to " \
           "upgrade to the version that created the lockfile by running `gem install " \
           "bundler:#{bundler_version}#{prerelease_text}`.\n"
    end

    private

    TYPES = {
      GIT    => Bundler::Source::Git,
      GEM    => Bundler::Source::Rubygems,
      PATH   => Bundler::Source::Path,
      PLUGIN => Bundler::Plugin,
    }.freeze

    def parse_source(line)
      case line
      when SPECS
        case @type
        when PATH
          @current_source = TYPES[@type].from_lock(@opts)
          @sources << @current_source
        when GIT
          @current_source = TYPES[@type].from_lock(@opts)
          @sources << @current_source
        when GEM
          @opts["remotes"] = Array(@opts.delete("remote")).reverse
          @current_source = TYPES[@type].from_lock(@opts)
          @sources << @current_source
        when PLUGIN
          @current_source = Plugin.source_from_lock(@opts)
          @sources << @current_source
        end
      when OPTIONS
        value = $2
        value = true if value == "true"
        value = false if value == "false"

        key = $1

        if @opts[key]
          @opts[key] = Array(@opts[key])
          @opts[key] << value
        else
          @opts[key] = value
        end
      when *SOURCE
        @current_source = nil
        @opts = {}
        @type = line
      else
        parse_spec(line)
      end
    end

    space = / /
    NAME_VERSION = /
      ^(#{space}{2}|#{space}{4}|#{space}{6})(?!#{space}) # Exactly 2, 4, or 6 spaces at the start of the line
      (.*?)                                              # Name
      (?:#{space}\(([^-]*)                               # Space, followed by version
      (?:-(.*))?\))?                                     # Optional platform
      (!)?                                               # Optional pinned marker
      $                                                  # Line end
    /xo.freeze

    def parse_dependency(line)
      return unless line =~ NAME_VERSION
      spaces = $1
      return unless spaces.size == 2
      name = $2
      version = $3
      pinned = $5

      version = version.split(",").map(&:strip) if version

      dep = Bundler::Dependency.new(name, version)

      if pinned && dep.name != "bundler"
        spec = @specs.find {|_, v| v.name == dep.name }
        dep.source = spec.last.source if spec

        # Path sources need to know what the default name / version
        # to use in the case that there are no gemspecs present. A fake
        # gemspec is created based on the version set on the dependency
        # TODO: Use the version from the spec instead of from the dependency
        if version && version.size == 1 && version.first =~ /^\s*= (.+)\s*$/ && dep.source.is_a?(Bundler::Source::Path)
          dep.source.name    = name
          dep.source.version = $1
        end
      end

      @dependencies[dep.name] = dep
    end

    def parse_spec(line)
      return unless line =~ NAME_VERSION
      spaces = $1
      name = $2
      version = $3
      platform = $4

      if spaces.size == 4
        version = Gem::Version.new(version)
        platform = platform ? Gem::Platform.new(platform) : Gem::Platform::RUBY
        @current_spec = LazySpecification.new(name, version, platform)
        @current_spec.source = @current_source

        @specs[@current_spec.identifier] = @current_spec
      elsif spaces.size == 6
        version = version.split(",").map(&:strip) if version
        dep = Gem::Dependency.new(name, version)
        @current_spec.dependencies << dep
      end
    end

    def parse_platform(line)
      @platforms << Gem::Platform.new($1) if line =~ /^  (.*)$/
    end

    def parse_bundled_with(line)
      line = line.strip
      return unless Gem::Version.correct?(line)
      @bundler_version = Gem::Version.create(line)
    end

    def parse_ruby(line)
      @ruby_version = line.strip
    end
  end
end
PK:H[ی�YYBshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client.rbnu�[���# frozen_string_literal: true

require "pathname"
require "set"

module Bundler
  class CompactIndexClient
    DEBUG_MUTEX = Mutex.new
    def self.debug
      return unless ENV["DEBUG_COMPACT_INDEX"]
      DEBUG_MUTEX.synchronize { warn("[#{self}] #{yield}") }
    end

    class Error < StandardError; end

    require_relative "compact_index_client/cache"
    require_relative "compact_index_client/updater"

    attr_reader :directory

    def initialize(directory, fetcher)
      @directory = Pathname.new(directory)
      @updater = Updater.new(fetcher)
      @cache = Cache.new(@directory)
      @endpoints = Set.new
      @info_checksums_by_name = {}
      @parsed_checksums = false
      @mutex = Mutex.new
    end

    def execution_mode=(block)
      Bundler::CompactIndexClient.debug { "execution_mode=" }
      @endpoints = Set.new

      @execution_mode = block
    end

    # @return [Lambda] A lambda that takes an array of inputs and a block, and
    #         maps the inputs with the block in parallel.
    #
    def execution_mode
      @execution_mode || sequentially
    end

    def sequential_execution_mode!
      self.execution_mode = sequentially
    end

    def sequentially
      @sequentially ||= lambda do |inputs, &blk|
        inputs.map(&blk)
      end
    end

    def names
      Bundler::CompactIndexClient.debug { "/names" }
      update(@cache.names_path, "names")
      @cache.names
    end

    def versions
      Bundler::CompactIndexClient.debug { "/versions" }
      update(@cache.versions_path, "versions")
      versions, @info_checksums_by_name = @cache.versions
      versions
    end

    def dependencies(names)
      Bundler::CompactIndexClient.debug { "dependencies(#{names})" }
      execution_mode.call(names) do |name|
        update_info(name)
        @cache.dependencies(name).map {|d| d.unshift(name) }
      end.flatten(1)
    end

    def spec(name, version, platform = nil)
      Bundler::CompactIndexClient.debug { "spec(name = #{name}, version = #{version}, platform = #{platform})" }
      update_info(name)
      @cache.specific_dependency(name, version, platform)
    end

    def update_and_parse_checksums!
      Bundler::CompactIndexClient.debug { "update_and_parse_checksums!" }
      return @info_checksums_by_name if @parsed_checksums
      update(@cache.versions_path, "versions")
      @info_checksums_by_name = @cache.checksums
      @parsed_checksums = true
    end

    private

    def update(local_path, remote_path)
      Bundler::CompactIndexClient.debug { "update(#{local_path}, #{remote_path})" }
      unless synchronize { @endpoints.add?(remote_path) }
        Bundler::CompactIndexClient.debug { "already fetched #{remote_path}" }
        return
      end
      @updater.update(local_path, url(remote_path))
    end

    def update_info(name)
      Bundler::CompactIndexClient.debug { "update_info(#{name})" }
      path = @cache.info_path(name)
      checksum = @updater.checksum_for_file(path)
      unless existing = @info_checksums_by_name[name]
        Bundler::CompactIndexClient.debug { "skipping updating info for #{name} since it is missing from versions" }
        return
      end
      if checksum == existing
        Bundler::CompactIndexClient.debug { "skipping updating info for #{name} since the versions checksum matches the local checksum" }
        return
      end
      Bundler::CompactIndexClient.debug { "updating info for #{name} since the versions checksum #{existing} != the local checksum #{checksum}" }
      update(path, "info/#{name}")
    end

    def url(path)
      path
    end

    def synchronize
      @mutex.synchronize { yield }
    end
  end
end
PK:H[�oJ��4share/gems/gems/bundler-2.2.24/lib/bundler/errors.rbnu�[���# frozen_string_literal: true

module Bundler
  class BundlerError < StandardError
    def self.status_code(code)
      define_method(:status_code) { code }
      if match = BundlerError.all_errors.find {|_k, v| v == code }
        error, _ = match
        raise ArgumentError,
          "Trying to register #{self} for status code #{code} but #{error} is already registered"
      end
      BundlerError.all_errors[self] = code
    end

    def self.all_errors
      @all_errors ||= {}
    end
  end

  class GemfileError < BundlerError; status_code(4); end
  class InstallError < BundlerError; status_code(5); end

  # Internal error, should be rescued
  class VersionConflict < BundlerError
    attr_reader :conflicts

    def initialize(conflicts, msg = nil)
      super(msg)
      @conflicts = conflicts
    end

    status_code(6)
  end

  class GemNotFound < BundlerError; status_code(7); end
  class InstallHookError < BundlerError; status_code(8); end
  class GemfileNotFound < BundlerError; status_code(10); end
  class GitError < BundlerError; status_code(11); end
  class DeprecatedError < BundlerError; status_code(12); end
  class PathError < BundlerError; status_code(13); end
  class GemspecError < BundlerError; status_code(14); end
  class InvalidOption < BundlerError; status_code(15); end
  class ProductionError < BundlerError; status_code(16); end
  class HTTPError < BundlerError
    status_code(17)
    def filter_uri(uri)
      URICredentialsFilter.credential_filtered_uri(uri)
    end
  end
  class RubyVersionMismatch < BundlerError; status_code(18); end
  class SecurityError < BundlerError; status_code(19); end
  class LockfileError < BundlerError; status_code(20); end
  class CyclicDependencyError < BundlerError; status_code(21); end
  class GemfileLockNotFound < BundlerError; status_code(22); end
  class PluginError < BundlerError; status_code(29); end
  class SudoNotPermittedError < BundlerError; status_code(30); end
  class ThreadCreationError < BundlerError; status_code(33); end
  class APIResponseMismatchError < BundlerError; status_code(34); end
  class APIResponseInvalidDependenciesError < BundlerError; status_code(35); end
  class GemfileEvalError < GemfileError; end
  class MarshalError < StandardError; end

  class PermissionError < BundlerError
    def initialize(path, permission_type = :write)
      @path = path
      @permission_type = permission_type
    end

    def action
      case @permission_type
      when :read then "read from"
      when :write then "write to"
      when :executable, :exec then "execute"
      else @permission_type.to_s
      end
    end

    def message
      "There was an error while trying to #{action} `#{@path}`. " \
      "It is likely that you need to grant #{@permission_type} permissions " \
      "for that path."
    end

    status_code(23)
  end

  class GemRequireError < BundlerError
    attr_reader :orig_exception

    def initialize(orig_exception, msg)
      full_message = msg + "\nGem Load Error is: #{orig_exception.message}\n"\
                      "Backtrace for gem load error is:\n"\
                      "#{orig_exception.backtrace.join("\n")}\n"\
                      "Bundler Error Backtrace:\n"
      super(full_message)
      @orig_exception = orig_exception
    end

    status_code(24)
  end

  class YamlSyntaxError < BundlerError
    attr_reader :orig_exception

    def initialize(orig_exception, msg)
      super(msg)
      @orig_exception = orig_exception
    end

    status_code(25)
  end

  class TemporaryResourceError < PermissionError
    def message
      "There was an error while trying to #{action} `#{@path}`. " \
      "Some resource was temporarily unavailable. It's suggested that you try" \
      "the operation again."
    end

    status_code(26)
  end

  class VirtualProtocolError < BundlerError
    def message
      "There was an error relating to virtualization and file access." \
      "It is likely that you need to grant access to or mount some file system correctly."
    end

    status_code(27)
  end

  class OperationNotSupportedError < PermissionError
    def message
      "Attempting to #{action} `#{@path}` is unsupported by your OS."
    end

    status_code(28)
  end

  class NoSpaceOnDeviceError < PermissionError
    def message
      "There was an error while trying to #{action} `#{@path}`. " \
      "There was insufficient space remaining on the device."
    end

    status_code(31)
  end

  class GenericSystemCallError < BundlerError
    attr_reader :underlying_error

    def initialize(underlying_error, message)
      @underlying_error = underlying_error
      super("#{message}\nThe underlying system error is #{@underlying_error.class}: #{@underlying_error}")
    end

    status_code(32)
  end
end
PK:H[��!6n	n	=share/gems/gems/bundler-2.2.24/lib/bundler/yaml_serializer.rbnu�[���# frozen_string_literal: true

module Bundler
  # A stub yaml serializer that can handle only hashes and strings (as of now).
  module YAMLSerializer
    module_function

    def dump(hash)
      yaml = String.new("---")
      yaml << dump_hash(hash)
    end

    def dump_hash(hash)
      yaml = String.new("\n")
      hash.each do |k, v|
        yaml << k << ":"
        if v.is_a?(Hash)
          yaml << dump_hash(v).gsub(/^(?!$)/, "  ") # indent all non-empty lines
        elsif v.is_a?(Array) # Expected to be array of strings
          yaml << "\n- " << v.map {|s| s.to_s.gsub(/\s+/, " ").inspect }.join("\n- ") << "\n"
        else
          yaml << " " << v.to_s.gsub(/\s+/, " ").inspect << "\n"
        end
      end
      yaml
    end

    ARRAY_REGEX = /
      ^
      (?:[ ]*-[ ]) # '- ' before array items
      (['"]?) # optional opening quote
      (.*) # value
      \1 # matching closing quote
      $
    /xo.freeze

    HASH_REGEX = /
      ^
      ([ ]*) # indentations
      (.+) # key
      (?::(?=(?:\s|$))) # :  (without the lookahead the #key includes this when : is present in value)
      [ ]?
      (['"]?) # optional opening quote
      (.*) # value
      \3 # matching closing quote
      $
    /xo.freeze

    def load(str)
      res = {}
      stack = [res]
      last_hash = nil
      last_empty_key = nil
      str.split(/\r?\n/).each do |line|
        if match = HASH_REGEX.match(line)
          indent, key, quote, val = match.captures
          key = convert_to_backward_compatible_key(key)
          depth = indent.scan(/  /).length
          if quote.empty? && val.empty?
            new_hash = {}
            stack[depth][key] = new_hash
            stack[depth + 1] = new_hash
            last_empty_key = key
            last_hash = stack[depth]
          else
            stack[depth][key] = val
          end
        elsif match = ARRAY_REGEX.match(line)
          _, val = match.captures
          last_hash[last_empty_key] = [] unless last_hash[last_empty_key].is_a?(Array)

          last_hash[last_empty_key].push(val)
        end
      end
      res
    end

    # for settings' keys
    def convert_to_backward_compatible_key(key)
      key = "#{key}/" if key =~ /https?:/i && key !~ %r{/\Z}
      key = key.gsub(".", "__") if key.include?(".")
      key
    end

    class << self
      private :dump_hash, :convert_to_backward_compatible_key
    end
  end
end
PK:H[<��,,@share/gems/gems/bundler-2.2.24/lib/bundler/settings/validator.rbnu�[���# frozen_string_literal: true

module Bundler
  class Settings
    class Validator
      class Rule
        attr_reader :description

        def initialize(keys, description, &validate)
          @keys = keys
          @description = description
          @validate = validate
        end

        def validate!(key, value, settings)
          instance_exec(key, value, settings, &@validate)
        end

        def fail!(key, value, *reasons)
          reasons.unshift @description
          raise InvalidOption, "Setting `#{key}` to #{value.inspect} failed:\n#{reasons.map {|r| " - #{r}" }.join("\n")}"
        end

        def set(settings, key, value, *reasons)
          hash_key = k(key)
          return if settings[hash_key] == value
          reasons.unshift @description
          Bundler.ui.info "Setting `#{key}` to #{value.inspect}, since #{reasons.join(", ")}"
          if value.nil?
            settings.delete(hash_key)
          else
            settings[hash_key] = value
          end
        end

        def k(key)
          Bundler.settings.key_for(key)
        end
      end

      def self.rules
        @rules ||= Hash.new {|h, k| h[k] = [] }
      end
      private_class_method :rules

      def self.rule(keys, description, &blk)
        rule = Rule.new(keys, description, &blk)
        keys.each {|k| rules[k] << rule }
      end
      private_class_method :rule

      def self.validate!(key, value, settings)
        rules_to_validate = rules[key]
        rules_to_validate.each {|rule| rule.validate!(key, value, settings) }
      end

      rule %w[path path.system], "path and path.system are mutually exclusive" do |key, value, settings|
        if key == "path" && value
          set(settings, "path.system", nil)
        elsif key == "path.system" && value
          set(settings, :path, nil)
        end
      end

      rule %w[with without], "a group cannot be in both `with` & `without` simultaneously" do |key, value, settings|
        with = settings.fetch(k(:with), "").split(":").map(&:to_sym)
        without = settings.fetch(k(:without), "").split(":").map(&:to_sym)

        other_key = key == "with" ? :without : :with
        other_setting = key == "with" ? without : with

        conflicting = with & without
        if conflicting.any?
          fail!(key, value, "`#{other_key}` is current set to #{other_setting.inspect}", "the `#{conflicting.join("`, `")}` groups conflict")
        end
      end

      rule %w[path], "relative paths are expanded relative to the current working directory" do |key, value, settings|
        next if value.nil?

        path = Pathname.new(value)
        next if !path.relative? || !Bundler.feature_flag.path_relative_to_cwd?

        path = path.expand_path

        root = begin
                 Bundler.root
               rescue GemfileNotFound
                 Pathname.pwd.expand_path
               end

        path = begin
                 path.relative_path_from(root)
               rescue ArgumentError
                 path
               end

        set(settings, key, path.to_s)
      end
    end
  end
end
PK:H[aXe�XX=share/gems/gems/bundler-2.2.24/lib/bundler/friendly_errors.rbnu�[���# frozen_string_literal: true

require_relative "vendored_thor"

module Bundler
  module FriendlyErrors
    module_function

    def enable!
      @disabled = false
    end

    def disabled?
      @disabled
    end

    def disable!
      @disabled = true
    end

    def log_error(error)
      case error
      when YamlSyntaxError
        Bundler.ui.error error.message
        Bundler.ui.trace error.orig_exception
      when Dsl::DSLError, GemspecError
        Bundler.ui.error error.message
      when GemRequireError
        Bundler.ui.error error.message
        Bundler.ui.trace error.orig_exception
      when BundlerError
        Bundler.ui.error error.message, :wrap => true
        Bundler.ui.trace error
      when Thor::Error
        Bundler.ui.error error.message
      when LoadError
        raise error unless error.message =~ /cannot load such file -- openssl|openssl.so|libcrypto.so/
        Bundler.ui.error "\nCould not load OpenSSL. #{error.class}: #{error}\n#{error.backtrace.join("\n  ")}"
      when Interrupt
        Bundler.ui.error "\nQuitting..."
        Bundler.ui.trace error
      when Gem::InvalidSpecificationException
        Bundler.ui.error error.message, :wrap => true
      when SystemExit
      when *[defined?(Java::JavaLang::OutOfMemoryError) && Java::JavaLang::OutOfMemoryError].compact
        Bundler.ui.error "\nYour JVM has run out of memory, and Bundler cannot continue. " \
          "You can decrease the amount of memory Bundler needs by removing gems from your Gemfile, " \
          "especially large gems. (Gems can be as large as hundreds of megabytes, and Bundler has to read those files!). " \
          "Alternatively, you can increase the amount of memory the JVM is able to use by running Bundler with jruby -J-Xmx1024m -S bundle (JRuby defaults to 500MB)."
      else request_issue_report_for(error)
      end
    end

    def exit_status(error)
      case error
      when BundlerError then error.status_code
      when Thor::Error then 15
      when SystemExit then error.status
      else 1
      end
    end

    def request_issue_report_for(e)
      Bundler.ui.error <<-EOS.gsub(/^ {8}/, ""), nil, nil
        --- ERROR REPORT TEMPLATE -------------------------------------------------------
        # Error Report

        ## Questions

        Please fill out answers to these questions, it'll help us figure out
        why things are going wrong.

        - **What did you do?**

          I ran the command `#{$PROGRAM_NAME} #{ARGV.join(" ")}`

        - **What did you expect to happen?**

          I expected Bundler to...

        - **What happened instead?**

          Instead, what happened was...

        - **Have you tried any solutions posted on similar issues in our issue tracker, stack overflow, or google?**

          I tried...

        - **Have you read our issues document, https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/ISSUES.md?**

          ...

        ## Backtrace

        ```
        #{e.class}: #{e.message}
          #{e.backtrace && e.backtrace.join("\n          ").chomp}
        ```

        #{Bundler::Env.report}
        --- TEMPLATE END ----------------------------------------------------------------

      EOS

      Bundler.ui.error "Unfortunately, an unexpected error occurred, and Bundler cannot continue."

      Bundler.ui.error <<-EOS.gsub(/^ {8}/, ""), nil, :yellow

        First, try this link to see if there are any existing issue reports for this error:
        #{issues_url(e)}

        If there aren't any reports for this error yet, please copy and paste the report template above into a new issue. Don't forget to anonymize any private data! The new issue form is located at:
        https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md
      EOS
    end

    def issues_url(exception)
      message = exception.message.lines.first.tr(":", " ").chomp
      message = message.split("-").first if exception.is_a?(Errno)
      require "cgi"
      "https://github.com/rubygems/rubygems/search?q=" \
        "#{CGI.escape(message)}&type=Issues"
    end
  end

  def self.with_friendly_errors
    FriendlyErrors.enable!
    yield
  rescue SignalException
    raise
  rescue Exception => e # rubocop:disable Lint/RescueException
    raise if FriendlyErrors.disabled?

    FriendlyErrors.log_error(e)
    exit FriendlyErrors.exit_status(e)
  end
end
PK:H[i�	*1share/gems/gems/bundler-2.2.24/lib/bundler/env.rbnu�[���# frozen_string_literal: true

require_relative "rubygems_integration"
require_relative "source/git/git_proxy"

module Bundler
  class Env
    def self.write(io)
      io.write report
    end

    def self.report(options = {})
      print_gemfile = options.delete(:print_gemfile) { true }
      print_gemspecs = options.delete(:print_gemspecs) { true }

      out = String.new
      append_formatted_table("Environment", environment, out)
      append_formatted_table("Bundler Build Metadata", BuildMetadata.to_h, out)

      unless Bundler.settings.all.empty?
        out << "\n## Bundler settings\n\n```\n"
        Bundler.settings.all.each do |setting|
          out << setting << "\n"
          Bundler.settings.pretty_values_for(setting).each do |line|
            out << "  " << line << "\n"
          end
        end
        out << "```\n"
      end

      return out unless SharedHelpers.in_bundle?

      if print_gemfile
        gemfiles = [Bundler.default_gemfile]
        begin
          gemfiles = Bundler.definition.gemfiles
        rescue GemfileNotFound
          nil
        end

        out << "\n## Gemfile\n"
        gemfiles.each do |gemfile|
          out << "\n### #{Pathname.new(gemfile).relative_path_from(SharedHelpers.pwd)}\n\n"
          out << "```ruby\n" << read_file(gemfile).chomp << "\n```\n"
        end

        out << "\n### #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)}\n\n"
        out << "```\n" << read_file(Bundler.default_lockfile).chomp << "\n```\n"
      end

      if print_gemspecs
        dsl = Dsl.new.tap {|d| d.eval_gemfile(Bundler.default_gemfile) }
        out << "\n## Gemspecs\n" unless dsl.gemspecs.empty?
        dsl.gemspecs.each do |gs|
          out << "\n### #{File.basename(gs.loaded_from)}"
          out << "\n\n```ruby\n" << read_file(gs.loaded_from).chomp << "\n```\n"
        end
      end

      out
    end

    def self.read_file(filename)
      Bundler.read_file(filename.to_s).strip
    rescue Errno::ENOENT
      "<No #{filename} found>"
    rescue RuntimeError => e
      "#{e.class}: #{e.message}"
    end

    def self.ruby_version
      str = String.new(RUBY_VERSION)
      str << "p#{RUBY_PATCHLEVEL}" if defined? RUBY_PATCHLEVEL
      str << " (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{RUBY_PLATFORM}]"
    end

    def self.git_version
      Bundler::Source::Git::GitProxy.new(nil, nil, nil).full_version
    rescue Bundler::Source::Git::GitNotInstalledError
      "not installed"
    end

    def self.version_of(script)
      return "not installed" unless Bundler.which(script)
      `#{script} --version`.chomp
    end

    def self.chruby_version
      return "not installed" unless Bundler.which("chruby-exec")
      `chruby-exec -- chruby --version`.
        sub(/.*^chruby: (#{Gem::Version::VERSION_PATTERN}).*/m, '\1')
    end

    def self.environment
      out = []

      out << ["Bundler", Bundler::VERSION]
      out << ["  Platforms", Gem.platforms.join(", ")]
      out << ["Ruby", ruby_version]
      out << ["  Full Path", Gem.ruby]
      out << ["  Config Dir", Pathname.new(Gem::ConfigFile::SYSTEM_WIDE_CONFIG_FILE).dirname]
      out << ["RubyGems", Gem::VERSION]
      out << ["  Gem Home", Gem.dir]
      out << ["  Gem Path", Gem.path.join(File::PATH_SEPARATOR)]
      out << ["  User Home", Gem.user_home]
      out << ["  User Path", Gem.user_dir]
      out << ["  Bin Dir", Gem.bindir]
      if defined?(OpenSSL::SSL)
        out << ["OpenSSL"]
        out << ["  Compiled", OpenSSL::OPENSSL_VERSION] if defined?(OpenSSL::OPENSSL_VERSION)
        out << ["  Loaded", OpenSSL::OPENSSL_LIBRARY_VERSION] if defined?(OpenSSL::OPENSSL_LIBRARY_VERSION)
        out << ["  Cert File", OpenSSL::X509::DEFAULT_CERT_FILE] if defined?(OpenSSL::X509::DEFAULT_CERT_FILE)
        out << ["  Cert Dir", OpenSSL::X509::DEFAULT_CERT_DIR] if defined?(OpenSSL::X509::DEFAULT_CERT_DIR)
      end
      out << ["Tools"]
      out << ["  Git", git_version]
      out << ["  RVM", ENV.fetch("rvm_version") { version_of("rvm") }]
      out << ["  rbenv", version_of("rbenv")]
      out << ["  chruby", chruby_version]

      %w[rubygems-bundler open_gem].each do |name|
        specs = Bundler.rubygems.find_name(name)
        out << ["  #{name}", "(#{specs.map(&:version).join(",")})"] unless specs.empty?
      end
      if (exe = caller.last.split(":").first) && exe =~ %r{(exe|bin)/bundler?\z}
        shebang = File.read(exe).lines.first
        shebang.sub!(/^#!\s*/, "")
        unless shebang.start_with?(Gem.ruby, "/usr/bin/env ruby")
          out << ["Gem.ruby", Gem.ruby]
          out << ["bundle #!", shebang]
        end
      end

      out
    end

    def self.append_formatted_table(title, pairs, out)
      return if pairs.empty?
      out << "\n" unless out.empty?
      out << "## #{title}\n\n```\n"
      ljust = pairs.map {|k, _v| k.to_s.length }.max
      pairs.each do |k, v|
        out << "#{k.to_s.ljust(ljust)}  #{v}\n"
      end
      out << "```\n"
    end

    private_class_method :read_file, :ruby_version, :git_version, :append_formatted_table, :version_of, :chruby_version
  end
end
PK:H[?�z��8share/gems/gems/bundler-2.2.24/lib/bundler/gem_helper.rbnu�[���# frozen_string_literal: true

require_relative "../bundler"
require "shellwords"

module Bundler
  class GemHelper
    include Rake::DSL if defined? Rake::DSL

    class << self
      # set when install'd.
      attr_accessor :instance

      def install_tasks(opts = {})
        new(opts[:dir], opts[:name]).install
      end

      def tag_prefix=(prefix)
        instance.tag_prefix = prefix
      end

      def gemspec(&block)
        gemspec = instance.gemspec
        block.call(gemspec) if block
        gemspec
      end
    end

    attr_reader :spec_path, :base, :gemspec

    attr_writer :tag_prefix

    def initialize(base = nil, name = nil)
      @base = File.expand_path(base || SharedHelpers.pwd)
      gemspecs = name ? [File.join(@base, "#{name}.gemspec")] : Gem::Util.glob_files_in_dir("{,*}.gemspec", @base)
      raise "Unable to determine name from existing gemspec. Use :name => 'gemname' in #install_tasks to manually set it." unless gemspecs.size == 1
      @spec_path = gemspecs.first
      @gemspec = Bundler.load_gemspec(@spec_path)
      @tag_prefix = ""
    end

    def install
      built_gem_path = nil

      desc "Build #{name}-#{version}.gem into the pkg directory."
      task "build" do
        built_gem_path = build_gem
      end

      desc "Generate SHA512 checksum if #{name}-#{version}.gem into the checksums directory."
      task "build:checksum" => "build" do
        build_checksum(built_gem_path)
      end

      desc "Build and install #{name}-#{version}.gem into system gems."
      task "install" => "build" do
        install_gem(built_gem_path)
      end

      desc "Build and install #{name}-#{version}.gem into system gems without network access."
      task "install:local" => "build" do
        install_gem(built_gem_path, :local)
      end

      desc "Create tag #{version_tag} and build and push #{name}-#{version}.gem to #{gem_push_host}\n" \
           "To prevent publishing in RubyGems use `gem_push=no rake release`"
      task "release", [:remote] => ["build", "release:guard_clean",
                                    "release:source_control_push", "release:rubygem_push"] do
      end

      task "release:guard_clean" do
        guard_clean
      end

      task "release:source_control_push", [:remote] do |_, args|
        tag_version { git_push(args[:remote]) } unless already_tagged?
      end

      task "release:rubygem_push" do
        rubygem_push(built_gem_path) if gem_push?
      end

      GemHelper.instance = self
    end

    def build_gem
      file_name = nil
      sh([*gem_command, "build", "-V", spec_path]) do
        file_name = File.basename(built_gem_path)
        SharedHelpers.filesystem_access(File.join(base, "pkg")) {|p| FileUtils.mkdir_p(p) }
        FileUtils.mv(built_gem_path, "pkg")
        Bundler.ui.confirm "#{name} #{version} built to pkg/#{file_name}."
      end
      File.join(base, "pkg", file_name)
    end

    def install_gem(built_gem_path = nil, local = false)
      built_gem_path ||= build_gem
      cmd = [*gem_command, "install", built_gem_path.to_s]
      cmd << "--local" if local
      _, status = sh_with_status(cmd)
      unless status.success?
        raise "Couldn't install gem, run `gem install #{built_gem_path}' for more detailed output"
      end
      Bundler.ui.confirm "#{name} (#{version}) installed."
    end

    def build_checksum(built_gem_path = nil)
      built_gem_path ||= build_gem
      SharedHelpers.filesystem_access(File.join(base, "checksums")) {|p| FileUtils.mkdir_p(p) }
      file_name = "#{File.basename(built_gem_path)}.sha512"
      require "digest/sha2"
      checksum = Digest::SHA512.new.hexdigest(built_gem_path.to_s)
      target = File.join(base, "checksums", file_name)
      File.write(target, checksum)
      Bundler.ui.confirm "#{name} #{version} checksum written to checksums/#{file_name}."
    end

    protected

    def rubygem_push(path)
      cmd = [*gem_command, "push", path]
      cmd << "--key" << gem_key if gem_key
      cmd << "--host" << allowed_push_host if allowed_push_host
      sh_with_input(cmd)
      Bundler.ui.confirm "Pushed #{name} #{version} to #{gem_push_host}"
    end

    def built_gem_path
      Gem::Util.glob_files_in_dir("#{name}-*.gem", base).sort_by {|f| File.mtime(f) }.last
    end

    def git_push(remote = nil)
      remote ||= default_remote
      perform_git_push "#{remote} refs/heads/#{current_branch}"
      perform_git_push "#{remote} refs/tags/#{version_tag}"
      Bundler.ui.confirm "Pushed git commits and release tag."
    end

    def default_remote
      remote_for_branch, status = sh_with_status(%W[git config --get branch.#{current_branch}.remote])
      return "origin" unless status.success?

      remote_for_branch.strip
    end

    def current_branch
      # We can replace this with `git branch --show-current` once we drop support for git < 2.22.0
      sh(%w[git rev-parse --abbrev-ref HEAD]).gsub(%r{\Aheads/}, "").strip
    end

    def allowed_push_host
      @gemspec.metadata["allowed_push_host"] if @gemspec.respond_to?(:metadata)
    end

    def gem_push_host
      env_rubygems_host = ENV["RUBYGEMS_HOST"]
      env_rubygems_host = nil if
        env_rubygems_host && env_rubygems_host.empty?

      allowed_push_host || env_rubygems_host || "rubygems.org"
    end

    def perform_git_push(options = "")
      cmd = "git push #{options}"
      out, status = sh_with_status(cmd.shellsplit)
      return if status.success?
      raise "Couldn't git push. `#{cmd}' failed with the following output:\n\n#{out}\n"
    end

    def already_tagged?
      return false unless sh(%w[git tag]).split(/\n/).include?(version_tag)
      Bundler.ui.confirm "Tag #{version_tag} has already been created."
      true
    end

    def guard_clean
      clean? && committed? || raise("There are files that need to be committed first.")
    end

    def clean?
      sh_with_status(%w[git diff --exit-code])[1].success?
    end

    def committed?
      sh_with_status(%w[git diff-index --quiet --cached HEAD])[1].success?
    end

    def tag_version
      sh %W[git tag -m Version\ #{version} #{version_tag}]
      Bundler.ui.confirm "Tagged #{version_tag}."
      yield if block_given?
    rescue RuntimeError
      Bundler.ui.error "Untagging #{version_tag} due to error."
      sh_with_status %W[git tag -d #{version_tag}]
      raise
    end

    def version
      gemspec.version
    end

    def version_tag
      "#{@tag_prefix}v#{version}"
    end

    def name
      gemspec.name
    end

    def sh_with_input(cmd)
      Bundler.ui.debug(cmd)
      SharedHelpers.chdir(base) do
        abort unless Kernel.system(*cmd)
      end
    end

    def sh(cmd, &block)
      out, status = sh_with_status(cmd, &block)
      unless status.success?
        cmd = cmd.shelljoin if cmd.respond_to?(:shelljoin)
        raise(out.empty? ? "Running `#{cmd}` failed. Run this command directly for more detailed output." : out)
      end
      out
    end

    def sh_with_status(cmd, &block)
      Bundler.ui.debug(cmd)
      SharedHelpers.chdir(base) do
        outbuf = IO.popen(cmd, :err => [:child, :out], &:read)
        status = $?
        block.call(outbuf) if status.success? && block
        [outbuf, status]
      end
    end

    def gem_key
      Bundler.settings["gem.push_key"].to_s.downcase if Bundler.settings["gem.push_key"]
    end

    def gem_push?
      !%w[n no nil false off 0].include?(ENV["gem_push"].to_s.downcase)
    end

    def gem_command
      ENV["GEM_COMMAND"]&.shellsplit || ["gem"]
    end
  end
end
PK:H[h�c��Cshare/gems/gems/bundler-2.2.24/lib/bundler/environment_preserver.rbnu�[���# frozen_string_literal: true

module Bundler
  class EnvironmentPreserver
    INTENTIONALLY_NIL = "BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL".freeze
    BUNDLER_KEYS = %w[
      BUNDLE_BIN_PATH
      BUNDLE_GEMFILE
      BUNDLER_VERSION
      GEM_HOME
      GEM_PATH
      MANPATH
      PATH
      RB_USER_INSTALL
      RUBYLIB
      RUBYOPT
    ].map(&:freeze).freeze
    BUNDLER_PREFIX = "BUNDLER_ORIG_".freeze

    def self.from_env
      new(env_to_hash(ENV), BUNDLER_KEYS)
    end

    def self.env_to_hash(env)
      to_hash = env.to_hash
      return to_hash unless Gem.win_platform?

      to_hash.each_with_object({}) {|(k,v), a| a[k.upcase] = v }
    end

    # @param env [Hash]
    # @param keys [Array<String>]
    def initialize(env, keys)
      @original = env
      @keys = keys
      @prefix = BUNDLER_PREFIX
    end

    # Replaces `ENV` with the bundler environment variables backed up
    def replace_with_backup
      ENV.replace(backup) unless Gem.win_platform?

      # Fallback logic for Windows below to workaround
      # https://bugs.ruby-lang.org/issues/16798. Can be dropped once all
      # supported rubies include the fix for that.

      ENV.clear

      backup.each {|k, v| ENV[k] = v }
    end

    # @return [Hash]
    def backup
      env = @original.clone
      @keys.each do |key|
        value = env[key]
        if !value.nil? && !value.empty?
          env[@prefix + key] ||= value
        elsif value.nil?
          env[@prefix + key] ||= INTENTIONALLY_NIL
        end
      end
      env
    end

    # @return [Hash]
    def restore
      env = @original.clone
      @keys.each do |key|
        value_original = env[@prefix + key]
        next if value_original.nil? || value_original.empty?
        if value_original == INTENTIONALLY_NIL
          env.delete(key)
        else
          env[key] = value_original
        end
        env.delete(@prefix + key)
      end
      env
    end
  end
end
PK:H[����--<share/gems/gems/bundler-2.2.24/lib/bundler/shared_helpers.rbnu�[���# frozen_string_literal: true

require "pathname"
require "rbconfig"

require_relative "version"
require_relative "constants"
require_relative "rubygems_integration"
require_relative "current_ruby"

module Bundler
  module SharedHelpers
    def root
      gemfile = find_gemfile
      raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
      Pathname.new(gemfile).tap{|x| x.untaint if RUBY_VERSION < "2.7" }.expand_path.parent
    end

    def default_gemfile
      gemfile = find_gemfile
      raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
      Pathname.new(gemfile).tap{|x| x.untaint if RUBY_VERSION < "2.7" }.expand_path
    end

    def default_lockfile
      gemfile = default_gemfile

      case gemfile.basename.to_s
      when "gems.rb" then Pathname.new(gemfile.sub(/.rb$/, ".locked"))
      else Pathname.new("#{gemfile}.lock")
      end.tap{|x| x.untaint if RUBY_VERSION < "2.7" }
    end

    def default_bundle_dir
      bundle_dir = find_directory(".bundle")
      return nil unless bundle_dir

      bundle_dir = Pathname.new(bundle_dir)

      global_bundle_dir = Bundler.user_home.join(".bundle")
      return nil if bundle_dir == global_bundle_dir

      bundle_dir
    end

    def in_bundle?
      find_gemfile
    end

    def chdir(dir, &blk)
      Bundler.rubygems.ext_lock.synchronize do
        Dir.chdir dir, &blk
      end
    end

    def pwd
      Bundler.rubygems.ext_lock.synchronize do
        Pathname.pwd
      end
    end

    def with_clean_git_env(&block)
      keys    = %w[GIT_DIR GIT_WORK_TREE]
      old_env = keys.inject({}) do |h, k|
        h.update(k => ENV[k])
      end

      keys.each {|key| ENV.delete(key) }

      block.call
    ensure
      keys.each {|key| ENV[key] = old_env[key] }
    end

    def set_bundle_environment
      set_bundle_variables
      set_path
      set_rubyopt
      set_rubylib
    end

    # Rescues permissions errors raised by file system operations
    # (ie. Errno:EACCESS, Errno::EAGAIN) and raises more friendly errors instead.
    #
    # @param path [String] the path that the action will be attempted to
    # @param action [Symbol, #to_s] the type of operation that will be
    #   performed. For example: :write, :read, :exec
    #
    # @yield path
    #
    # @raise [Bundler::PermissionError] if Errno:EACCES is raised in the
    #   given block
    # @raise [Bundler::TemporaryResourceError] if Errno:EAGAIN is raised in the
    #   given block
    #
    # @example
    #   filesystem_access("vendor/cache", :write) do
    #     FileUtils.mkdir_p("vendor/cache")
    #   end
    #
    # @see {Bundler::PermissionError}
    def filesystem_access(path, action = :write, &block)
      yield(path.dup.tap{|x| x.untaint if RUBY_VERSION < "2.7" })
    rescue Errno::EACCES
      raise PermissionError.new(path, action)
    rescue Errno::EAGAIN
      raise TemporaryResourceError.new(path, action)
    rescue Errno::EPROTO
      raise VirtualProtocolError.new
    rescue Errno::ENOSPC
      raise NoSpaceOnDeviceError.new(path, action)
    rescue *[const_get_safely(:ENOTSUP, Errno)].compact
      raise OperationNotSupportedError.new(path, action)
    rescue Errno::EEXIST, Errno::ENOENT
      raise
    rescue SystemCallError => e
      raise GenericSystemCallError.new(e, "There was an error accessing `#{path}`.")
    end

    def const_get_safely(constant_name, namespace)
      const_in_namespace = namespace.constants.include?(constant_name.to_s) ||
        namespace.constants.include?(constant_name.to_sym)
      return nil unless const_in_namespace
      namespace.const_get(constant_name)
    end

    def major_deprecation(major_version, message, print_caller_location: false)
      if print_caller_location
        caller_location = caller_locations(2, 2).first
        message = "#{message} (called at #{caller_location.path}:#{caller_location.lineno})"
      end

      bundler_major_version = Bundler.bundler_major_version
      if bundler_major_version > major_version
        require_relative "errors"
        raise DeprecatedError, "[REMOVED] #{message}"
      end

      return unless bundler_major_version >= major_version && prints_major_deprecations?
      Bundler.ui.warn("[DEPRECATED] #{message}")
    end

    def print_major_deprecations!
      multiple_gemfiles = search_up(".") do |dir|
        gemfiles = gemfile_names.select {|gf| File.file? File.expand_path(gf, dir) }
        next if gemfiles.empty?
        break gemfiles.size != 1
      end
      return unless multiple_gemfiles
      message = "Multiple gemfiles (gems.rb and Gemfile) detected. " \
                "Make sure you remove Gemfile and Gemfile.lock since bundler is ignoring them in favor of gems.rb and gems.rb.locked."
      Bundler.ui.warn message
    end

    def trap(signal, override = false, &block)
      prior = Signal.trap(signal) do
        block.call
        prior.call unless override
      end
    end

    def ensure_same_dependencies(spec, old_deps, new_deps)
      new_deps = new_deps.reject {|d| d.type == :development }
      old_deps = old_deps.reject {|d| d.type == :development }

      without_type = proc {|d| Gem::Dependency.new(d.name, d.requirements_list.sort) }
      new_deps.map!(&without_type)
      old_deps.map!(&without_type)

      extra_deps = new_deps - old_deps
      return if extra_deps.empty?

      Bundler.ui.debug "#{spec.full_name} from #{spec.remote} has either corrupted API or lockfile dependencies" \
        " (was expecting #{old_deps.map(&:to_s)}, but the real spec has #{new_deps.map(&:to_s)})"
      raise APIResponseMismatchError,
        "Downloading #{spec.full_name} revealed dependencies not in the API or the lockfile (#{extra_deps.join(", ")})." \
        "\nEither installing with `--full-index` or running `bundle update #{spec.name}` should fix the problem."
    end

    def pretty_dependency(dep, print_source = false)
      msg = String.new(dep.name)
      msg << " (#{dep.requirement})" unless dep.requirement == Gem::Requirement.default

      if dep.is_a?(Bundler::Dependency)
        platform_string = dep.platforms.join(", ")
        msg << " " << platform_string if !platform_string.empty? && platform_string != Gem::Platform::RUBY
      end

      msg << " from the `#{dep.source}` source" if print_source && dep.source
      msg
    end

    def md5_available?
      return @md5_available if defined?(@md5_available)
      @md5_available = begin
        require "openssl"
        ::OpenSSL::Digest.digest("MD5", "")
        true
      rescue LoadError
        true
      rescue ::OpenSSL::Digest::DigestError
        false
      end
    end

    def digest(name)
      require "digest"
      Digest(name)
    end

    def write_to_gemfile(gemfile_path, contents)
      filesystem_access(gemfile_path) {|g| File.open(g, "w") {|file| file.puts contents } }
    end

    private

    def validate_bundle_path
      path_separator = Bundler.rubygems.path_separator
      return unless Bundler.bundle_path.to_s.split(path_separator).size > 1
      message = "Your bundle path contains text matching #{path_separator.inspect}, " \
                "which is the path separator for your system. Bundler cannot " \
                "function correctly when the Bundle path contains the " \
                "system's PATH separator. Please change your " \
                "bundle path to not match #{path_separator.inspect}." \
                "\nYour current bundle path is '#{Bundler.bundle_path}'."
      raise Bundler::PathError, message
    end

    def find_gemfile
      given = ENV["BUNDLE_GEMFILE"]
      return given if given && !given.empty?
      find_file(*gemfile_names)
    end

    def gemfile_names
      ["gems.rb", "Gemfile"]
    end

    def find_file(*names)
      search_up(*names) do |filename|
        return filename if File.file?(filename)
      end
    end

    def find_directory(*names)
      search_up(*names) do |dirname|
        return dirname if File.directory?(dirname)
      end
    end

    def search_up(*names)
      previous = nil
      current  = File.expand_path(SharedHelpers.pwd).tap{|x| x.untaint if RUBY_VERSION < "2.7" }

      until !File.directory?(current) || current == previous
        if ENV["BUNDLE_SPEC_RUN"]
          # avoid stepping above the tmp directory when testing
          gemspec = if ENV["GEM_COMMAND"]
            # for Ruby Core
            "lib/bundler/bundler.gemspec"
          else
            "bundler.gemspec"
          end

          # avoid stepping above the tmp directory when testing
          return nil if File.file?(File.join(current, gemspec))
        end

        names.each do |name|
          filename = File.join(current, name)
          yield filename
        end
        previous = current
        current = File.expand_path("..", current)
      end
    end

    def set_env(key, value)
      raise ArgumentError, "new key #{key}" unless EnvironmentPreserver::BUNDLER_KEYS.include?(key)
      orig_key = "#{EnvironmentPreserver::BUNDLER_PREFIX}#{key}"
      orig = ENV[key]
      orig ||= EnvironmentPreserver::INTENTIONALLY_NIL
      ENV[orig_key] ||= orig

      ENV[key] = value
    end
    public :set_env

    def set_bundle_variables
      # bundler exe & lib folders have same root folder, typical gem installation
      exe_file = File.expand_path("../../../exe/bundle", __FILE__)

      # for Ruby core repository testing
      exe_file = File.expand_path("../../../libexec/bundle", __FILE__) unless File.exist?(exe_file)

      # bundler is a default gem, exe path is separate
      exe_file = Bundler.rubygems.bin_path("bundler", "bundle", VERSION) unless File.exist?(exe_file)

      Bundler::SharedHelpers.set_env "BUNDLE_BIN_PATH", exe_file
      Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", find_gemfile.to_s
      Bundler::SharedHelpers.set_env "BUNDLER_VERSION", Bundler::VERSION
    end

    def set_path
      validate_bundle_path
      paths = (ENV["PATH"] || "").split(File::PATH_SEPARATOR)
      paths.unshift "#{Bundler.bundle_path}/bin"
      Bundler::SharedHelpers.set_env "PATH", paths.uniq.join(File::PATH_SEPARATOR)
    end

    def set_rubyopt
      rubyopt = [ENV["RUBYOPT"]].compact
      setup_require = "-r#{File.expand_path("setup", __dir__)}"
      return if !rubyopt.empty? && rubyopt.first =~ /#{setup_require}/
      rubyopt.unshift setup_require
      Bundler::SharedHelpers.set_env "RUBYOPT", rubyopt.join(" ")
    end

    def set_rubylib
      rubylib = (ENV["RUBYLIB"] || "").split(File::PATH_SEPARATOR)
      rubylib.unshift bundler_ruby_lib unless RbConfig::CONFIG["rubylibdir"] == bundler_ruby_lib
      Bundler::SharedHelpers.set_env "RUBYLIB", rubylib.uniq.join(File::PATH_SEPARATOR)
    end

    def bundler_ruby_lib
      resolve_path File.expand_path("../..", __FILE__)
    end

    def clean_load_path
      bundler_lib = bundler_ruby_lib

      loaded_gem_paths = Bundler.rubygems.loaded_gem_paths

      $LOAD_PATH.reject! do |p|
        next if resolve_path(p).start_with?(bundler_lib)
        loaded_gem_paths.delete(p)
      end
      $LOAD_PATH.uniq!
    end

    def resolve_path(path)
      expanded = File.expand_path(path)
      return expanded unless File.respond_to?(:realpath) && File.exist?(expanded)

      File.realpath(expanded)
    end

    def prints_major_deprecations?
      require_relative "../bundler"
      return false if Bundler.settings[:silence_deprecations]
      require_relative "deprecate"
      return false if Bundler::Deprecate.skip
      true
    end

    extend self
  end
end
PK:H[ƣZ���6share/gems/gems/bundler-2.2.24/lib/bundler/spec_set.rbnu�[���# frozen_string_literal: true

require "tsort"

module Bundler
  class SpecSet
    include Enumerable
    include TSort

    def initialize(specs)
      @specs = specs
    end

    def for(dependencies, check = false, match_current_platform = false, raise_on_missing = true)
      handled = []
      deps = dependencies.dup
      specs = []

      loop do
        break unless dep = deps.shift
        next if handled.any?{|d| d.name == dep.name && (match_current_platform || d.__platform == dep.__platform) } || dep.name == "bundler"

        handled << dep

        specs_for_dep = spec_for_dependency(dep, match_current_platform)
        if specs_for_dep.any?
          specs += specs_for_dep

          specs_for_dep.first.dependencies.each do |d|
            next if d.type == :development
            d = DepProxy.get_proxy(d, dep.__platform) unless match_current_platform
            deps << d
          end
        elsif check
          return false
        elsif raise_on_missing
          others = lookup[dep.name] if match_current_platform
          message = "Unable to find a spec satisfying #{dep} in the set. Perhaps the lockfile is corrupted?"
          message += " Found #{others.join(", ")} that did not match the current platform." if others && !others.empty?
          raise GemNotFound, message
        end
      end

      if spec = lookup["bundler"].first
        specs << spec
      end

      check ? true : specs
    end

    def [](key)
      key = key.name if key.respond_to?(:name)
      lookup[key].reverse
    end

    def []=(key, value)
      @specs << value
      @lookup = nil
      @sorted = nil
    end

    def sort!
      self
    end

    def to_a
      sorted.dup
    end

    def to_hash
      lookup.dup
    end

    def materialize(deps, missing_specs = nil)
      materialized = self.for(deps, false, true, !missing_specs)

      materialized.group_by(&:source).each do |source, specs|
        next unless specs.any?{|s| s.is_a?(LazySpecification) }

        source.local!
        names = -> { specs.map(&:name).uniq }
        source.double_check_for(names)
      end

      materialized.map! do |s|
        next s unless s.is_a?(LazySpecification)
        spec = s.__materialize__
        unless spec
          unless missing_specs
            raise GemNotFound, "Could not find #{s.full_name} in any of the sources"
          end
          missing_specs << s
        end
        spec
      end
      SpecSet.new(missing_specs ? materialized.compact : materialized)
    end

    # Materialize for all the specs in the spec set, regardless of what platform they're for
    # This is in contrast to how for does platform filtering (and specifically different from how `materialize` calls `for` only for the current platform)
    # @return [Array<Gem::Specification>]
    def materialized_for_all_platforms
      @specs.group_by(&:source).each do |source, specs|
        next unless specs.any?{|s| s.is_a?(LazySpecification) }

        source.local!
        source.remote!
        names = -> { specs.map(&:name).uniq }
        source.double_check_for(names)
      end

      @specs.map do |s|
        next s unless s.is_a?(LazySpecification)
        spec = s.__materialize__
        raise GemNotFound, "Could not find #{s.full_name} in any of the sources" unless spec
        spec
      end
    end

    def merge(set)
      arr = sorted.dup
      set.each do |set_spec|
        full_name = set_spec.full_name
        next if arr.any? {|spec| spec.full_name == full_name }
        arr << set_spec
      end
      SpecSet.new(arr)
    end

    def find_by_name_and_platform(name, platform)
      @specs.detect {|spec| spec.name == name && spec.match_platform(platform) }
    end

    def what_required(spec)
      unless req = find {|s| s.dependencies.any? {|d| d.type == :runtime && d.name == spec.name } }
        return [spec]
      end
      what_required(req) << spec
    end

    def <<(spec)
      @specs << spec
    end

    def length
      @specs.length
    end

    def size
      @specs.size
    end

    def empty?
      @specs.empty?
    end

    def each(&b)
      sorted.each(&b)
    end

    private

    def sorted
      rake = @specs.find {|s| s.name == "rake" }
      begin
        @sorted ||= ([rake] + tsort).compact.uniq
      rescue TSort::Cyclic => error
        cgems = extract_circular_gems(error)
        raise CyclicDependencyError, "Your bundle requires gems that depend" \
          " on each other, creating an infinite loop. Please remove either" \
          " gem '#{cgems[1]}' or gem '#{cgems[0]}' and try again."
      end
    end

    def extract_circular_gems(error)
      error.message.scan(/@name="(.*?)"/).flatten
    end

    def lookup
      @lookup ||= begin
        lookup = Hash.new {|h, k| h[k] = [] }
        Index.sort_specs(@specs).reverse_each do |s|
          lookup[s.name] << s
        end
        lookup
      end
    end

    def tsort_each_node
      # MUST sort by name for backwards compatibility
      @specs.sort_by(&:name).each {|s| yield s }
    end

    def spec_for_dependency(dep, match_current_platform)
      specs_for_platforms = lookup[dep.name]
      if match_current_platform
        GemHelpers.select_best_platform_match(specs_for_platforms.select{|s| Gem::Platform.match_spec?(s) }, Bundler.local_platform)
      else
        GemHelpers.select_best_platform_match(specs_for_platforms, dep.__platform)
      end
    end

    def tsort_each_child(s)
      s.dependencies.sort_by(&:name).each do |d|
        next if d.type == :development
        lookup[d.name].each {|s2| yield s2 }
      end
    end
  end
end
PK:H[N��˾�:share/gems/gems/bundler-2.2.24/lib/bundler/process_lock.rbnu�[���# frozen_string_literal: true

module Bundler
  class ProcessLock
    def self.lock(bundle_path = Bundler.bundle_path)
      lock_file_path = File.join(bundle_path, "bundler.lock")
      has_lock = false

      File.open(lock_file_path, "w") do |f|
        f.flock(File::LOCK_EX)
        has_lock = true
        yield
        f.flock(File::LOCK_UN)
      end
    rescue Errno::EACCES, Errno::ENOLCK, *[SharedHelpers.const_get_safely(:ENOTSUP, Errno)].compact
      # In the case the user does not have access to
      # create the lock file or is using NFS where
      # locks are not available we skip locking.
      yield
    ensure
      FileUtils.rm_f(lock_file_path) if has_lock
    end
  end
end
PK:H[�q �ccJshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/updater.rbnu�[���# frozen_string_literal: true

require_relative "../vendored_fileutils"

module Bundler
  class CompactIndexClient
    class Updater
      class MisMatchedChecksumError < Error
        def initialize(path, server_checksum, local_checksum)
          @path = path
          @server_checksum = server_checksum
          @local_checksum = local_checksum
        end

        def message
          "The checksum of /#{@path} does not match the checksum provided by the server! Something is wrong " \
            "(local checksum is #{@local_checksum.inspect}, was expecting #{@server_checksum.inspect})."
        end
      end

      def initialize(fetcher)
        @fetcher = fetcher
        require_relative "../vendored_tmpdir"
      end

      def update(local_path, remote_path, retrying = nil)
        headers = {}

        Bundler::Dir.mktmpdir("bundler-compact-index-") do |local_temp_dir|
          local_temp_path = Pathname.new(local_temp_dir).join(local_path.basename)

          # first try to fetch any new bytes on the existing file
          if retrying.nil? && local_path.file?
            SharedHelpers.filesystem_access(local_temp_path) do
              FileUtils.cp local_path, local_temp_path
            end
            headers["If-None-Match"] = etag_for(local_temp_path)
            headers["Range"] =
              if local_temp_path.size.nonzero?
                # Subtract a byte to ensure the range won't be empty.
                # Avoids 416 (Range Not Satisfiable) responses.
                "bytes=#{local_temp_path.size - 1}-"
              else
                "bytes=#{local_temp_path.size}-"
              end
          end

          response = @fetcher.call(remote_path, headers)
          return nil if response.is_a?(Net::HTTPNotModified)

          content = response.body

          etag = (response["ETag"] || "").gsub(%r{\AW/}, "")
          correct_response = SharedHelpers.filesystem_access(local_temp_path) do
            if response.is_a?(Net::HTTPPartialContent) && local_temp_path.size.nonzero?
              local_temp_path.open("a") {|f| f << slice_body(content, 1..-1) }

              etag_for(local_temp_path) == etag
            else
              local_temp_path.open("wb") {|f| f << content }

              etag.length.zero? || etag_for(local_temp_path) == etag
            end
          end

          if correct_response
            SharedHelpers.filesystem_access(local_path) do
              FileUtils.mv(local_temp_path, local_path)
            end
            return nil
          end

          if retrying
            raise MisMatchedChecksumError.new(remote_path, etag, etag_for(local_temp_path))
          end

          update(local_path, remote_path, :retrying)
        end
      rescue Errno::EACCES
        raise Bundler::PermissionError,
          "Bundler does not have write access to create a temp directory " \
          "within #{Dir.tmpdir}. Bundler must have write access to your " \
          "systems temp directory to function properly. "
      rescue Zlib::GzipFile::Error
        raise Bundler::HTTPError
      end

      def etag_for(path)
        sum = checksum_for_file(path)
        sum ? %("#{sum}") : nil
      end

      def slice_body(body, range)
        body.byteslice(range)
      end

      def checksum_for_file(path)
        return nil unless path.file?
        # This must use File.read instead of Digest.file().hexdigest
        # because we need to preserve \n line endings on windows when calculating
        # the checksum
        SharedHelpers.filesystem_access(path, :read) do
          SharedHelpers.digest(:MD5).hexdigest(File.read(path))
        end
      end
    end
  end
end
PK:H[h����
�
Hshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/cache.rbnu�[���# frozen_string_literal: true

require_relative "gem_parser"

module Bundler
  class CompactIndexClient
    class Cache
      attr_reader :directory

      def initialize(directory)
        @directory = Pathname.new(directory).expand_path
        info_roots.each do |dir|
          SharedHelpers.filesystem_access(dir) do
            FileUtils.mkdir_p(dir)
          end
        end
      end

      def names
        lines(names_path)
      end

      def names_path
        directory.join("names")
      end

      def versions
        versions_by_name = Hash.new {|hash, key| hash[key] = [] }
        info_checksums_by_name = {}

        lines(versions_path).each do |line|
          name, versions_string, info_checksum = line.split(" ", 3)
          info_checksums_by_name[name] = info_checksum || ""
          versions_string.split(",").each do |version|
            if version.start_with?("-")
              version = version[1..-1].split("-", 2).unshift(name)
              versions_by_name[name].delete(version)
            else
              version = version.split("-", 2).unshift(name)
              versions_by_name[name] << version
            end
          end
        end

        [versions_by_name, info_checksums_by_name]
      end

      def versions_path
        directory.join("versions")
      end

      def checksums
        checksums = {}

        lines(versions_path).each do |line|
          name, _, checksum = line.split(" ", 3)
          checksums[name] = checksum
        end

        checksums
      end

      def dependencies(name)
        lines(info_path(name)).map do |line|
          parse_gem(line)
        end
      end

      def info_path(name)
        name = name.to_s
        if name =~ /[^a-z0-9_-]/
          name += "-#{SharedHelpers.digest(:MD5).hexdigest(name).downcase}"
          info_roots.last.join(name)
        else
          info_roots.first.join(name)
        end
      end

      def specific_dependency(name, version, platform)
        pattern = [version, platform].compact.join("-")
        return nil if pattern.empty?

        gem_lines = info_path(name).read
        gem_line = gem_lines[/^#{Regexp.escape(pattern)}\b.*/, 0]
        gem_line ? parse_gem(gem_line) : nil
      end

      private

      def lines(path)
        return [] unless path.file?
        lines = SharedHelpers.filesystem_access(path, :read, &:read).split("\n")
        header = lines.index("---")
        header ? lines[header + 1..-1] : lines
      end

      def parse_gem(line)
        @dependency_parser ||= GemParser.new
        @dependency_parser.parse(line)
      end

      def info_roots
        [
          directory.join("info"),
          directory.join("info-special-characters"),
        ]
      end
    end
  end
end
PK:H[CX�j��Mshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/gem_parser.rbnu�[���# frozen_string_literal: true

module Bundler
  class CompactIndexClient
    if defined?(Gem::Resolver::APISet::GemParser)
      GemParser = Gem::Resolver::APISet::GemParser
    else
      class GemParser
        def parse(line)
          version_and_platform, rest = line.split(" ", 2)
          version, platform = version_and_platform.split("-", 2)
          dependencies, requirements = rest.split("|", 2).map {|s| s.split(",") } if rest
          dependencies = dependencies ? dependencies.map {|d| parse_dependency(d) } : []
          requirements = requirements ? requirements.map {|d| parse_dependency(d) } : []
          [version, platform, dependencies, requirements]
        end

        private

        def parse_dependency(string)
          dependency = string.split(":")
          dependency[-1] = dependency[-1].split("&") if dependency.size > 1
          dependency
        end
      end
    end
  end
end
PK:H[���^cc9share/gems/gems/bundler-2.2.24/lib/bundler/gem_helpers.rbnu�[���# frozen_string_literal: true

module Bundler
  module GemHelpers
    GENERIC_CACHE = { Gem::Platform::RUBY => Gem::Platform::RUBY } # rubocop:disable Style/MutableConstant
    GENERICS = [
      [Gem::Platform.new("java"), Gem::Platform.new("java")],
      [Gem::Platform.new("mswin32"), Gem::Platform.new("mswin32")],
      [Gem::Platform.new("mswin64"), Gem::Platform.new("mswin64")],
      [Gem::Platform.new("universal-mingw32"), Gem::Platform.new("universal-mingw32")],
      [Gem::Platform.new("x64-mingw32"), Gem::Platform.new("x64-mingw32")],
      [Gem::Platform.new("x86_64-mingw32"), Gem::Platform.new("x64-mingw32")],
      [Gem::Platform.new("mingw32"), Gem::Platform.new("x86-mingw32")],
    ].freeze

    def generic(p)
      GENERIC_CACHE[p] ||= begin
        _, found = GENERICS.find do |match, _generic|
          p.os == match.os && (!match.cpu || p.cpu == match.cpu)
        end
        found || Gem::Platform::RUBY
      end
    end
    module_function :generic

    def generic_local_platform
      generic(local_platform)
    end
    module_function :generic_local_platform

    def local_platform
      Bundler.local_platform
    end
    module_function :local_platform

    def platform_specificity_match(spec_platform, user_platform)
      spec_platform = Gem::Platform.new(spec_platform)

      PlatformMatch.specificity_score(spec_platform, user_platform)
    end
    module_function :platform_specificity_match

    def select_best_platform_match(specs, platform)
      matching = specs.select {|spec| spec.match_platform(platform) }
      exact = matching.select {|spec| spec.platform == platform }
      return exact if exact.any?

      sorted_matching = matching.sort_by {|spec| platform_specificity_match(spec.platform, platform) }
      exemplary_spec = sorted_matching.first

      sorted_matching.take_while{|spec| same_specificity(platform, spec, exemplary_spec) && same_deps(spec, exemplary_spec) }
    end
    module_function :select_best_platform_match

    class PlatformMatch
      def self.specificity_score(spec_platform, user_platform)
        return -1 if spec_platform == user_platform
        return 1_000_000 if spec_platform.nil? || spec_platform == Gem::Platform::RUBY || user_platform == Gem::Platform::RUBY

        os_match(spec_platform, user_platform) +
          cpu_match(spec_platform, user_platform) * 10 +
          platform_version_match(spec_platform, user_platform) * 100
      end

      def self.os_match(spec_platform, user_platform)
        if spec_platform.os == user_platform.os
          0
        else
          1
        end
      end

      def self.cpu_match(spec_platform, user_platform)
        if spec_platform.cpu == user_platform.cpu
          0
        elsif spec_platform.cpu == "arm" && user_platform.cpu.to_s.start_with?("arm")
          0
        elsif spec_platform.cpu.nil? || spec_platform.cpu == "universal"
          1
        else
          2
        end
      end

      def self.platform_version_match(spec_platform, user_platform)
        if spec_platform.version == user_platform.version
          0
        elsif spec_platform.version.nil?
          1
        else
          2
        end
      end
    end

    def same_specificity(platform, spec, exemplary_spec)
      platform_specificity_match(spec.platform, platform) == platform_specificity_match(exemplary_spec.platform, platform)
    end
    module_function :same_specificity

    def same_deps(spec, exemplary_spec)
      same_runtime_deps = spec.dependencies.sort == exemplary_spec.dependencies.sort
      return same_runtime_deps unless spec.is_a?(Gem::Specification) && exemplary_spec.is_a?(Gem::Specification)

      same_metadata_deps = spec.required_ruby_version == exemplary_spec.required_ruby_version && spec.required_rubygems_version == exemplary_spec.required_rubygems_version
      same_runtime_deps && same_metadata_deps
    end
    module_function :same_deps
  end
end
PK:H[t�J�TT4share/gems/gems/bundler-2.2.24/lib/bundler/source.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    autoload :Gemspec,  File.expand_path("source/gemspec", __dir__)
    autoload :Git,      File.expand_path("source/git", __dir__)
    autoload :Metadata, File.expand_path("source/metadata", __dir__)
    autoload :Path,     File.expand_path("source/path", __dir__)
    autoload :Rubygems, File.expand_path("source/rubygems", __dir__)
    autoload :RubygemsAggregate, File.expand_path("source/rubygems_aggregate", __dir__)

    attr_accessor :dependency_names

    def unmet_deps
      specs.unmet_dependency_names
    end

    def version_message(spec)
      message = "#{spec.name} #{spec.version}"
      message += " (#{spec.platform})" if spec.platform != Gem::Platform::RUBY && !spec.platform.nil?

      if Bundler.locked_gems
        locked_spec = Bundler.locked_gems.specs.find {|s| s.name == spec.name }
        locked_spec_version = locked_spec.version if locked_spec
        if locked_spec_version && spec.version != locked_spec_version
          message += Bundler.ui.add_color(" (was #{locked_spec_version})", version_color(spec.version, locked_spec_version))
        end
      end

      message
    end

    def can_lock?(spec)
      spec.source == self
    end

    def local!; end

    def local_only!; end

    def cached!; end

    def remote!; end

    def add_dependency_names(names)
      @dependency_names = Array(dependency_names) | Array(names)
    end

    # it's possible that gems from one source depend on gems from some
    # other source, so now we download gemspecs and iterate over those
    # dependencies, looking for gems we don't have info on yet.
    def double_check_for(*); end

    def dependency_names_to_double_check
      specs.dependency_names
    end

    def spec_names
      specs.spec_names
    end

    def include?(other)
      other == self
    end

    def inspect
      "#<#{self.class}:0x#{object_id} #{self}>"
    end

    def path?
      instance_of?(Bundler::Source::Path)
    end

    def extension_cache_path(spec)
      return unless Bundler.feature_flag.global_gem_cache?
      return unless source_slug = extension_cache_slug(spec)
      Bundler.user_cache.join(
        "extensions", Gem::Platform.local.to_s, Bundler.ruby_scope,
        source_slug, spec.full_name
      )
    end

    private

    def version_color(spec_version, locked_spec_version)
      if Gem::Version.correct?(spec_version) && Gem::Version.correct?(locked_spec_version)
        # display yellow if there appears to be a regression
        earlier_version?(spec_version, locked_spec_version) ? :yellow : :green
      else
        # default to green if the versions cannot be directly compared
        :green
      end
    end

    def earlier_version?(spec_version, locked_spec_version)
      Gem::Version.new(spec_version) < Gem::Version.new(locked_spec_version)
    end

    def print_using_message(message)
      if !message.include?("(was ") && Bundler.feature_flag.suppress_install_using_messages?
        Bundler.ui.debug message
      else
        Bundler.ui.info message
      end
    end

    def extension_cache_slug(_)
      nil
    end
  end
end
PK:H[j�[�]
]
4share/gems/gems/bundler-2.2.24/lib/bundler/worker.rbnu�[���# frozen_string_literal: true

module Bundler
  class Worker
    POISON = Object.new

    class WrappedException < StandardError
      attr_reader :exception
      def initialize(exn)
        @exception = exn
      end
    end

    # @return [String] the name of the worker
    attr_reader :name

    # Creates a worker pool of specified size
    #
    # @param size [Integer] Size of pool
    # @param name [String] name the name of the worker
    # @param func [Proc] job to run in inside the worker pool
    def initialize(size, name, func)
      @name = name
      @request_queue = Queue.new
      @response_queue = Queue.new
      @func = func
      @size = size
      @threads = nil
      SharedHelpers.trap("INT") { abort_threads }
    end

    # Enqueue a request to be executed in the worker pool
    #
    # @param obj [String] mostly it is name of spec that should be downloaded
    def enq(obj)
      create_threads unless @threads
      @request_queue.enq obj
    end

    # Retrieves results of job function being executed in worker pool
    def deq
      result = @response_queue.deq
      raise result.exception if result.is_a?(WrappedException)
      result
    end

    def stop
      stop_threads
    end

    private

    def process_queue(i)
      loop do
        obj = @request_queue.deq
        break if obj.equal? POISON
        @response_queue.enq apply_func(obj, i)
      end
    end

    def apply_func(obj, i)
      @func.call(obj, i)
    rescue Exception => e # rubocop:disable Lint/RescueException
      WrappedException.new(e)
    end

    # Stop the worker threads by sending a poison object down the request queue
    # so as worker threads after retrieving it, shut themselves down
    def stop_threads
      return unless @threads
      @threads.each { @request_queue.enq POISON }
      @threads.each(&:join)
      @threads = nil
    end

    def abort_threads
      return unless @threads
      Bundler.ui.debug("\n#{caller.join("\n")}")
      @threads.each(&:exit)
      exit 1
    end

    def create_threads
      creation_errors = []

      @threads = Array.new(@size) do |i|
        begin
          Thread.start { process_queue(i) }.tap do |thread|
            thread.name = "#{name} Worker ##{i}" if thread.respond_to?(:name=)
          end
        rescue ThreadError => e
          creation_errors << e
          nil
        end
      end.compact

      return if creation_errors.empty?

      message = "Failed to create threads for the #{name} worker: #{creation_errors.map(&:to_s).uniq.join(", ")}"
      raise ThreadCreationError, message if @threads.empty?
      Bundler.ui.info message
    end
  end
end
PK:H[)PY�\\Ashare/gems/gems/bundler-2.2.24/lib/bundler/similarity_detector.rbnu�[���# frozen_string_literal: true

module Bundler
  class SimilarityDetector
    SimilarityScore = Struct.new(:string, :distance)

    # initialize with an array of words to be matched against
    def initialize(corpus)
      @corpus = corpus
    end

    # return an array of words similar to 'word' from the corpus
    def similar_words(word, limit = 3)
      words_by_similarity = @corpus.map {|w| SimilarityScore.new(w, levenshtein_distance(word, w)) }
      words_by_similarity.select {|s| s.distance <= limit }.sort_by(&:distance).map(&:string)
    end

    # return the result of 'similar_words', concatenated into a list
    # (eg "a, b, or c")
    def similar_word_list(word, limit = 3)
      words = similar_words(word, limit)
      if words.length == 1
        words[0]
      elsif words.length > 1
        [words[0..-2].join(", "), words[-1]].join(" or ")
      end
    end

    protected

    # https://www.informit.com/articles/article.aspx?p=683059&seqNum=36
    def levenshtein_distance(this, that, ins = 2, del = 2, sub = 1)
      # ins, del, sub are weighted costs
      return nil if this.nil?
      return nil if that.nil?
      dm = [] # distance matrix

      # Initialize first row values
      dm[0] = (0..this.length).collect {|i| i * ins }
      fill = [0] * (this.length - 1)

      # Initialize first column values
      (1..that.length).each do |i|
        dm[i] = [i * del, fill.flatten]
      end

      # populate matrix
      (1..that.length).each do |i|
        (1..this.length).each do |j|
          # critical comparison
          dm[i][j] = [
            dm[i - 1][j - 1] + (this[j - 1] == that[i - 1] ? 0 : sub),
            dm[i][j - 1] + ins,
            dm[i - 1][j] + del,
          ].min
        end
      end

      # The last value in matrix is the Levenshtein distance between the strings
      dm[that.length][this.length]
    end
  end
end
PK:H[Oɧ�5share/gems/gems/bundler-2.2.24/lib/bundler/gemdeps.rbnu�[���# frozen_string_literal: true

module Bundler
  class Gemdeps
    def initialize(runtime)
      @runtime = runtime
    end

    def requested_specs
      @runtime.requested_specs
    end

    def specs
      @runtime.specs
    end

    def dependencies
      @runtime.dependencies
    end

    def current_dependencies
      @runtime.current_dependencies
    end

    def requires
      @runtime.requires
    end
  end
end
PK:H[R�L��5share/gems/gems/bundler-2.2.24/lib/bundler/cli/add.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Add
    attr_reader :gems, :options, :version

    def initialize(options, gems)
      @gems = gems
      @options = options
      @options[:group] = options[:group].split(",").map(&:strip) unless options[:group].nil?
      @version = options[:version].split(",").map(&:strip) unless options[:version].nil?
    end

    def run
      validate_options!
      inject_dependencies
      perform_bundle_install unless options["skip-install"]
    end

    private

    def perform_bundle_install
      Installer.install(Bundler.root, Bundler.definition)
      Bundler.load.cache if Bundler.app_cache.exist?
    end

    def inject_dependencies
      dependencies = gems.map {|g| Bundler::Dependency.new(g, version, options) }

      Injector.inject(dependencies,
        :conservative_versioning => options[:version].nil?, # Perform conservative versioning only when version is not specified
        :optimistic => options[:optimistic],
        :strict => options[:strict])
    end

    def validate_options!
      raise InvalidOption, "You can not specify `--strict` and `--optimistic` at the same time." if options[:strict] && options[:optimistic]

      # raise error when no gems are specified
      raise InvalidOption, "Please specify gems to add." if gems.empty?

      version.to_a.each do |v|
        raise InvalidOption, "Invalid gem requirement pattern '#{v}'" unless Gem::Requirement::PATTERN =~ v.to_s
      end
    end
  end
end
PK:H[�`K��6share/gems/gems/bundler-2.2.24/lib/bundler/cli/lock.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Lock
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      unless Bundler.default_gemfile
        Bundler.ui.error "Unable to find a Gemfile to lock"
        exit 1
      end

      print = options[:print]
      ui = Bundler.ui
      Bundler.ui = UI::Silent.new if print

      Bundler::Fetcher.disable_endpoint = options["full-index"]

      update = options[:update]
      conservative = options[:conservative]

      if update.is_a?(Array) # unlocking specific gems
        Bundler::CLI::Common.ensure_all_gems_in_lockfile!(update)
        update = { :gems => update, :conservative => conservative }
      elsif update
        update = { :conservative => conservative } if conservative
      end
      definition = Bundler.definition(update)

      Bundler::CLI::Common.configure_gem_version_promoter(Bundler.definition, options) if options[:update]

      options["remove-platform"].each do |platform|
        definition.remove_platform(platform)
      end

      options["add-platform"].each do |platform_string|
        platform = Gem::Platform.new(platform_string)
        if platform.to_s == "unknown"
          Bundler.ui.warn "The platform `#{platform_string}` is unknown to RubyGems " \
            "and adding it will likely lead to resolution errors"
        end
        definition.add_platform(platform)
      end

      if definition.platforms.empty?
        raise InvalidOption, "Removing all platforms from the bundle is not allowed"
      end

      definition.resolve_remotely! unless options[:local]

      if print
        puts definition.to_lock
      else
        file = options[:lockfile]
        file = file ? File.expand_path(file) : Bundler.default_lockfile
        puts "Writing lockfile to #{file}"
        definition.lock(file)
      end

      Bundler.ui = ui
    end
  end
end
PK:H[��889share/gems/gems/bundler-2.2.24/lib/bundler/cli/console.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Console
    attr_reader :options, :group
    def initialize(options, group)
      @options = options
      @group = group
    end

    def run
      Bundler::SharedHelpers.major_deprecation 2, "bundle console will be replaced " \
                           "by `bin/console` generated by `bundle gem <name>`"

      group ? Bundler.require(:default, *group.split(" ").map!(&:to_sym)) : Bundler.require
      ARGV.clear

      console = get_console(Bundler.settings[:console] || "irb")
      console.start
    end

    def get_console(name)
      require name
      get_constant(name)
    rescue LoadError
      Bundler.ui.error "Couldn't load console #{name}, falling back to irb"
      require "irb"
      get_constant("irb")
    end

    def get_constant(name)
      const_name = {
        "pry"  => :Pry,
        "ripl" => :Ripl,
        "irb"  => :IRB,
      }[name]
      Object.const_get(const_name)
    rescue NameError
      Bundler.ui.error "Could not find constant #{const_name}"
      exit 1
    end
  end
end
PK:H["�G���:share/gems/gems/bundler-2.2.24/lib/bundler/cli/binstubs.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Binstubs
    attr_reader :options, :gems
    def initialize(options, gems)
      @options = options
      @gems = gems
    end

    def run
      Bundler.definition.validate_runtime!
      path_option = options["path"]
      path_option = nil if path_option && path_option.empty?
      Bundler.settings.set_command_option :bin, path_option if options["path"]
      Bundler.settings.set_command_option_if_given :shebang, options["shebang"]
      installer = Installer.new(Bundler.root, Bundler.definition)

      installer_opts = {
        :force => options[:force],
        :binstubs_cmd => true,
        :all_platforms => options["all-platforms"],
      }

      if options[:all]
        raise InvalidOption, "Cannot specify --all with specific gems" unless gems.empty?
        @gems = Bundler.definition.specs.map(&:name)
        installer_opts.delete(:binstubs_cmd)
      elsif gems.empty?
        Bundler.ui.error "`bundle binstubs` needs at least one gem to run."
        exit 1
      end

      gems.each do |gem_name|
        spec = Bundler.definition.specs.find {|s| s.name == gem_name }
        unless spec
          raise GemNotFound, Bundler::CLI::Common.gem_not_found_message(
            gem_name, Bundler.definition.specs
          )
        end

        if options[:standalone]
          next Bundler.ui.warn("Sorry, Bundler can only be run via RubyGems.") if gem_name == "bundler"
          Bundler.settings.temporary(:path => (Bundler.settings[:path] || Bundler.root)) do
            installer.generate_standalone_bundler_executable_stubs(spec, installer_opts)
          end
        else
          installer.generate_bundler_executable_stubs(spec, installer_opts)
        end
      end
    end
  end
end
PK:H[l���ww8share/gems/gems/bundler-2.2.24/lib/bundler/cli/remove.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Remove
    def initialize(gems, options)
      @gems = gems
      @options = options
    end

    def run
      raise InvalidOption, "Please specify gems to remove." if @gems.empty?

      Injector.remove(@gems, {})

      Installer.install(Bundler.root, Bundler.definition) if @options["install"]
    end
  end
end
PK:H[Ʊ�e}}8share/gems/gems/bundler-2.2.24/lib/bundler/cli/config.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Config < Thor
    class_option :parseable, :type => :boolean, :banner => "Use minimal formatting for more parseable output"

    def self.scope_options
      method_option :global, :type => :boolean, :banner => "Only change the global config"
      method_option :local, :type => :boolean, :banner => "Only change the local config"
    end
    private_class_method :scope_options

    desc "base NAME [VALUE]", "The Bundler 1 config interface", :hide => true
    scope_options
    method_option :delete, :type => :boolean, :banner => "delete"
    def base(name = nil, *value)
      new_args =
        if ARGV.size == 1
          ["config", "list"]
        elsif ARGV.include?("--delete")
          ARGV.map {|arg| arg == "--delete" ? "unset" : arg }
        elsif ARGV.include?("--global") || ARGV.include?("--local") || ARGV.size == 3
          ["config", "set", *ARGV[1..-1]]
        else
          ["config", "get", ARGV[1]]
        end

      SharedHelpers.major_deprecation 3,
        "Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle #{new_args.join(" ")}` instead."

      Base.new(options, name, value, self).run
    end

    desc "list", "List out all configured settings"
    def list
      Base.new(options, nil, nil, self).run
    end

    desc "get NAME", "Returns the value for the given key"
    def get(name)
      Base.new(options, name, nil, self).run
    end

    desc "set NAME VALUE", "Sets the given value for the given key"
    scope_options
    def set(name, value, *value_)
      Base.new(options, name, value_.unshift(value), self).run
    end

    desc "unset NAME", "Unsets the value for the given key"
    scope_options
    def unset(name)
      options[:delete] = true
      Base.new(options, name, nil, self).run
    end

    default_task :base

    class Base
      attr_reader :name, :value, :options, :scope, :thor

      def initialize(options, name, value, thor)
        @options = options
        @name = name
        value = Array(value)
        @value = value.empty? ? nil : value.join(" ")
        @thor = thor
        validate_scope!
      end

      def run
        unless name
          warn_unused_scope "Ignoring --#{scope}"
          confirm_all
          return
        end

        if options[:delete]
          if !explicit_scope? || scope != "global"
            Bundler.settings.set_local(name, nil)
          end
          if !explicit_scope? || scope != "local"
            Bundler.settings.set_global(name, nil)
          end
          return
        end

        if value.nil?
          warn_unused_scope "Ignoring --#{scope} since no value to set was given"

          if options[:parseable]
            if value = Bundler.settings[name]
              Bundler.ui.info("#{name}=#{value}")
            end
            return
          end

          confirm(name)
          return
        end

        Bundler.ui.info(message) if message
        Bundler.settings.send("set_#{scope}", name, new_value)
      end

      def confirm_all
        if @options[:parseable]
          thor.with_padding do
            Bundler.settings.all.each do |setting|
              val = Bundler.settings[setting]
              Bundler.ui.info "#{setting}=#{val}"
            end
          end
        else
          Bundler.ui.confirm "Settings are listed in order of priority. The top value will be used.\n"
          Bundler.settings.all.each do |setting|
            Bundler.ui.confirm setting
            show_pretty_values_for(setting)
            Bundler.ui.confirm ""
          end
        end
      end

      def confirm(name)
        Bundler.ui.confirm "Settings for `#{name}` in order of priority. The top value will be used"
        show_pretty_values_for(name)
      end

      def new_value
        pathname = Pathname.new(value)
        if name.start_with?("local.") && pathname.directory?
          pathname.expand_path.to_s
        else
          value
        end
      end

      def message
        locations = Bundler.settings.locations(name)
        if @options[:parseable]
          "#{name}=#{new_value}" if new_value
        elsif scope == "global"
          if !locations[:local].nil?
            "Your application has set #{name} to #{locations[:local].inspect}. " \
              "This will override the global value you are currently setting"
          elsif locations[:env]
            "You have a bundler environment variable for #{name} set to " \
              "#{locations[:env].inspect}. This will take precedence over the global value you are setting"
          elsif !locations[:global].nil? && locations[:global] != value
            "You are replacing the current global value of #{name}, which is currently " \
              "#{locations[:global].inspect}"
          end
        elsif scope == "local" && !locations[:local].nil? && locations[:local] != value
          "You are replacing the current local value of #{name}, which is currently " \
            "#{locations[:local].inspect}"
        end
      end

      def show_pretty_values_for(setting)
        thor.with_padding do
          Bundler.settings.pretty_values_for(setting).each do |line|
            Bundler.ui.info line
          end
        end
      end

      def explicit_scope?
        @explicit_scope
      end

      def warn_unused_scope(msg)
        return unless explicit_scope?
        return if options[:parseable]

        Bundler.ui.warn(msg)
      end

      def validate_scope!
        @explicit_scope = true
        scopes = %w[global local].select {|s| options[s] }
        case scopes.size
        when 0
          @scope = "global"
          @explicit_scope = false
        when 1
          @scope = scopes.first
        else
          raise InvalidOption,
            "The options #{scopes.join " and "} were specified. Please only use one of the switches at a time."
        end
      end
    end
  end
end
PK:H[��RR6share/gems/gems/bundler-2.2.24/lib/bundler/cli/list.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::List
    def initialize(options)
      @options = options
      @without_group = options["without-group"].map(&:to_sym)
      @only_group = options["only-group"].map(&:to_sym)
    end

    def run
      raise InvalidOption, "The `--only-group` and `--without-group` options cannot be used together" if @only_group.any? && @without_group.any?

      raise InvalidOption, "The `--name-only` and `--paths` options cannot be used together" if @options["name-only"] && @options[:paths]

      specs = if @only_group.any? || @without_group.any?
        filtered_specs_by_groups
      else
        Bundler.load.specs
      end.reject {|s| s.name == "bundler" }.sort_by(&:name)

      return Bundler.ui.info "No gems in the Gemfile" if specs.empty?

      return specs.each {|s| Bundler.ui.info s.name } if @options["name-only"]
      return specs.each {|s| Bundler.ui.info s.full_gem_path } if @options["paths"]

      Bundler.ui.info "Gems included by the bundle:"

      specs.each {|s| Bundler.ui.info "  * #{s.name} (#{s.version}#{s.git_version})" }

      Bundler.ui.info "Use `bundle info` to print more detailed information about a gem"
    end

    private

    def verify_group_exists(groups)
      (@without_group + @only_group).each do |group|
        raise InvalidOption, "`#{group}` group could not be found." unless groups.include?(group)
      end
    end

    def filtered_specs_by_groups
      definition = Bundler.definition
      groups = definition.groups

      verify_group_exists(groups)

      show_groups =
        if @without_group.any?
          groups.reject {|g| @without_group.include?(g) }
        elsif @only_group.any?
          groups.select {|g| @only_group.include?(g) }
        else
          groups
        end.map(&:to_sym)

      definition.specs_for(show_groups)
    end
  end
end
PK;H[�2�25share/gems/gems/bundler-2.2.24/lib/bundler/cli/gem.rbnu�[���# frozen_string_literal: true

require "pathname"

module Bundler
  class CLI
    Bundler.require_thor_actions
    include Thor::Actions
  end

  class CLI::Gem
    TEST_FRAMEWORK_VERSIONS = {
      "rspec" => "3.0",
      "minitest" => "5.0",
      "test-unit" => "3.0",
    }.freeze

    attr_reader :options, :gem_name, :thor, :name, :target

    def initialize(options, gem_name, thor)
      @options = options
      @gem_name = resolve_name(gem_name)

      @thor = thor
      thor.behavior = :invoke
      thor.destination_root = nil

      @name = @gem_name
      @target = SharedHelpers.pwd.join(gem_name)

      validate_ext_name if options[:ext]
    end

    def run
      Bundler.ui.confirm "Creating gem '#{name}'..."

      underscored_name = name.tr("-", "_")
      namespaced_path = name.tr("-", "/")
      constant_name = name.gsub(/-[_-]*(?![_-]|$)/) { "::" }.gsub(/([_-]+|(::)|^)(.|$)/) { $2.to_s + $3.upcase }
      constant_array = constant_name.split("::")

      use_git = Bundler.git_present? && options[:git]

      git_author_name = use_git ? `git config user.name`.chomp : ""
      git_username = use_git ? `git config github.user`.chomp : ""
      git_user_email = use_git ? `git config user.email`.chomp : ""

      github_username = if options[:github_username].nil?
        git_username
      elsif options[:github_username] == false
        ""
      else
        options[:github_username]
      end

      config = {
        :name             => name,
        :underscored_name => underscored_name,
        :namespaced_path  => namespaced_path,
        :makefile_path    => "#{underscored_name}/#{underscored_name}",
        :constant_name    => constant_name,
        :constant_array   => constant_array,
        :author           => git_author_name.empty? ? "TODO: Write your name" : git_author_name,
        :email            => git_user_email.empty? ? "TODO: Write your email address" : git_user_email,
        :test             => options[:test],
        :ext              => options[:ext],
        :exe              => options[:exe],
        :bundler_version  => bundler_dependency_version,
        :git              => use_git,
        :github_username  => github_username.empty? ? "[USERNAME]" : github_username,
        :required_ruby_version => Gem.ruby_version < Gem::Version.new("2.4.a") ? "2.3.0" : "2.4.0",
      }
      ensure_safe_gem_name(name, constant_array)

      templates = {
        "#{Bundler.preferred_gemfile_name}.tt" => Bundler.preferred_gemfile_name,
        "lib/newgem.rb.tt" => "lib/#{namespaced_path}.rb",
        "lib/newgem/version.rb.tt" => "lib/#{namespaced_path}/version.rb",
        "newgem.gemspec.tt" => "#{name}.gemspec",
        "Rakefile.tt" => "Rakefile",
        "README.md.tt" => "README.md",
        "bin/console.tt" => "bin/console",
        "bin/setup.tt" => "bin/setup",
      }

      executables = %w[
        bin/console
        bin/setup
      ]

      templates.merge!("gitignore.tt" => ".gitignore") if use_git

      if test_framework = ask_and_set_test_framework
        config[:test] = test_framework
        config[:test_framework_version] = TEST_FRAMEWORK_VERSIONS[test_framework]

        case test_framework
        when "rspec"
          templates.merge!(
            "rspec.tt" => ".rspec",
            "spec/spec_helper.rb.tt" => "spec/spec_helper.rb",
            "spec/newgem_spec.rb.tt" => "spec/#{namespaced_path}_spec.rb"
          )
          config[:test_task] = :spec
        when "minitest"
          templates.merge!(
            "test/minitest/test_helper.rb.tt" => "test/test_helper.rb",
            "test/minitest/newgem_test.rb.tt" => "test/#{namespaced_path}_test.rb"
          )
          config[:test_task] = :test
        when "test-unit"
          templates.merge!(
            "test/test-unit/test_helper.rb.tt" => "test/test_helper.rb",
            "test/test-unit/newgem_test.rb.tt" => "test/#{namespaced_path}_test.rb"
          )
          config[:test_task] = :test
        end
      end

      config[:ci] = ask_and_set_ci
      case config[:ci]
      when "github"
        templates.merge!("github/workflows/main.yml.tt" => ".github/workflows/main.yml")
      when "travis"
        templates.merge!("travis.yml.tt" => ".travis.yml")
      when "gitlab"
        templates.merge!("gitlab-ci.yml.tt" => ".gitlab-ci.yml")
      when "circle"
        templates.merge!("circleci/config.yml.tt" => ".circleci/config.yml")
      end

      if ask_and_set(:mit, "Do you want to license your code permissively under the MIT license?",
        "This means that any other developer or company will be legally allowed to use your code " \
        "for free as long as they admit you created it. You can read more about the MIT license " \
        "at https://choosealicense.com/licenses/mit.")
        config[:mit] = true
        Bundler.ui.info "MIT License enabled in config"
        templates.merge!("LICENSE.txt.tt" => "LICENSE.txt")
      end

      if ask_and_set(:coc, "Do you want to include a code of conduct in gems you generate?",
        "Codes of conduct can increase contributions to your project by contributors who " \
        "prefer collaborative, safe spaces. You can read more about the code of conduct at " \
        "contributor-covenant.org. Having a code of conduct means agreeing to the responsibility " \
        "of enforcing it, so be sure that you are prepared to do that. Be sure that your email " \
        "address is specified as a contact in the generated code of conduct so that people know " \
        "who to contact in case of a violation. For suggestions about " \
        "how to enforce codes of conduct, see https://bit.ly/coc-enforcement.")
        config[:coc] = true
        Bundler.ui.info "Code of conduct enabled in config"
        templates.merge!("CODE_OF_CONDUCT.md.tt" => "CODE_OF_CONDUCT.md")
      end

      if ask_and_set(:changelog, "Do you want to include a changelog?",
        "A changelog is a file which contains a curated, chronologically ordered list of notable " \
        "changes for each version of a project. To make it easier for users and contributors to" \
        " see precisely what notable changes have been made between each release (or version) of" \
        " the project. Whether consumers or developers, the end users of software are" \
        " human beings who care about what's in the software. When the software changes, people " \
        "want to know why and how. see https://keepachangelog.com")
        config[:changelog] = true
        Bundler.ui.info "Changelog enabled in config"
        templates.merge!("CHANGELOG.md.tt" => "CHANGELOG.md")
      end

      if ask_and_set(:rubocop, "Do you want to add rubocop as a dependency for gems you generate?",
        "RuboCop is a static code analyzer that has out-of-the-box rules for many " \
        "of the guidelines in the community style guide. " \
        "For more information, see the RuboCop docs (https://docs.rubocop.org/en/stable/) " \
        "and the Ruby Style Guides (https://github.com/rubocop-hq/ruby-style-guide).")
        config[:rubocop] = true
        config[:rubocop_version] = Gem.ruby_version < Gem::Version.new("2.4.a") ? "0.81.0" : "1.7"
        Bundler.ui.info "RuboCop enabled in config"
        templates.merge!("rubocop.yml.tt" => ".rubocop.yml")
      end

      templates.merge!("exe/newgem.tt" => "exe/#{name}") if config[:exe]

      if options[:ext]
        templates.merge!(
          "ext/newgem/extconf.rb.tt" => "ext/#{name}/extconf.rb",
          "ext/newgem/newgem.h.tt" => "ext/#{name}/#{underscored_name}.h",
          "ext/newgem/newgem.c.tt" => "ext/#{name}/#{underscored_name}.c"
        )
      end

      if File.exist?(target) && !File.directory?(target)
        Bundler.ui.error "Couldn't create a new gem named `#{gem_name}` because there's an existing file named `#{gem_name}`."
        exit Bundler::BundlerError.all_errors[Bundler::GenericSystemCallError]
      end

      if use_git
        Bundler.ui.info "Initializing git repo in #{target}"
        `git init #{target}`

        config[:git_default_branch] = File.read("#{target}/.git/HEAD").split("/").last.chomp
      end

      templates.each do |src, dst|
        destination = target.join(dst)
        thor.template("newgem/#{src}", destination, config)
      end

      executables.each do |file|
        path = target.join(file)
        executable = (path.stat.mode | 0o111)
        path.chmod(executable)
      end

      if use_git
        Dir.chdir(target) do
          `git add .`
        end
      end

      # Open gemspec in editor
      open_editor(options["edit"], target.join("#{name}.gemspec")) if options[:edit]

      Bundler.ui.info "Gem '#{name}' was successfully created. " \
        "For more information on making a RubyGem visit https://bundler.io/guides/creating_gem.html"
    end

    private

    def resolve_name(name)
      SharedHelpers.pwd.join(name).basename.to_s
    end

    def ask_and_set(key, header, message)
      choice = options[key]
      choice = Bundler.settings["gem.#{key}"] if choice.nil?

      if choice.nil?
        Bundler.ui.confirm header
        choice = Bundler.ui.yes? "#{message} y/(n):"
        Bundler.settings.set_global("gem.#{key}", choice)
      end

      choice
    end

    def validate_ext_name
      return unless gem_name.index("-")

      Bundler.ui.error "You have specified a gem name which does not conform to the \n" \
                       "naming guidelines for C extensions. For more information, \n" \
                       "see the 'Extension Naming' section at the following URL:\n" \
                       "https://guides.rubygems.org/gems-with-extensions/\n"
      exit 1
    end

    def ask_and_set_test_framework
      test_framework = options[:test] || Bundler.settings["gem.test"]

      if test_framework.to_s.empty?
        Bundler.ui.confirm "Do you want to generate tests with your gem?"
        Bundler.ui.info hint_text("test")

        result = Bundler.ui.ask "Enter a test framework. rspec/minitest/test-unit/(none):"
        if result =~ /rspec|minitest|test-unit/
          test_framework = result
        else
          test_framework = false
        end
      end

      if Bundler.settings["gem.test"].nil?
        Bundler.settings.set_global("gem.test", test_framework)
      end

      if options[:test] == Bundler.settings["gem.test"]
        Bundler.ui.info "#{options[:test]} is already configured, ignoring --test flag."
      end

      test_framework
    end

    def hint_text(setting)
      if Bundler.settings["gem.#{setting}"] == false
        "Your choice will only be applied to this gem."
      else
        "Future `bundle gem` calls will use your choice. " \
        "This setting can be changed anytime with `bundle config gem.#{setting}`."
      end
    end

    def ask_and_set_ci
      ci_template = options[:ci] || Bundler.settings["gem.ci"]

      if ci_template.to_s.empty?
        Bundler.ui.confirm "Do you want to set up continuous integration for your gem? " \
          "Supported services:\n" \
          "* CircleCI:       https://circleci.com/\n" \
          "* GitHub Actions: https://github.com/features/actions\n" \
          "* GitLab CI:      https://docs.gitlab.com/ee/ci/\n" \
          "* Travis CI:      https://travis-ci.org/\n" \
          "\n"
        Bundler.ui.info hint_text("ci")

        result = Bundler.ui.ask "Enter a CI service. github/travis/gitlab/circle/(none):"
        if result =~ /github|travis|gitlab|circle/
          ci_template = result
        else
          ci_template = false
        end
      end

      if Bundler.settings["gem.ci"].nil?
        Bundler.settings.set_global("gem.ci", ci_template)
      end

      if options[:ci] == Bundler.settings["gem.ci"]
        Bundler.ui.info "#{options[:ci]} is already configured, ignoring --ci flag."
      end

      ci_template
    end

    def bundler_dependency_version
      v = Gem::Version.new(Bundler::VERSION)
      req = v.segments[0..1]
      req << "a" if v.prerelease?
      req.join(".")
    end

    def ensure_safe_gem_name(name, constant_array)
      if name =~ /^\d/
        Bundler.ui.error "Invalid gem name #{name} Please give a name which does not start with numbers."
        exit 1
      end

      constant_name = constant_array.join("::")

      existing_constant = constant_array.inject(Object) do |c, s|
        defined = begin
          c.const_defined?(s)
        rescue NameError
          Bundler.ui.error "Invalid gem name #{name} -- `#{constant_name}` is an invalid constant name"
          exit 1
        end
        (defined && c.const_get(s)) || break
      end

      return unless existing_constant
      Bundler.ui.error "Invalid gem name #{name} constant #{constant_name} is already in use. Please choose another gem name."
      exit 1
    end

    def open_editor(editor, file)
      thor.run(%(#{editor} "#{file}"))
    end
  end
end
PK;H[lqOww8share/gems/gems/bundler-2.2.24/lib/bundler/cli/inject.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Inject
    attr_reader :options, :name, :version, :group, :source, :gems
    def initialize(options, name, version)
      @options = options
      @name = name
      @version = version || last_version_number
      @group = options[:group].split(",") unless options[:group].nil?
      @source = options[:source]
      @gems = []
    end

    def run
      # The required arguments allow Thor to give useful feedback when the arguments
      # are incorrect. This adds those first two arguments onto the list as a whole.
      gems.unshift(source).unshift(group).unshift(version).unshift(name)

      # Build an array of Dependency objects out of the arguments
      deps = []
      # when `inject` support addition of more than one gem, then this loop will
      # help. Currently this loop is running once.
      gems.each_slice(4) do |gem_name, gem_version, gem_group, gem_source|
        ops = Gem::Requirement::OPS.map {|key, _val| key }
        has_op = ops.any? {|op| gem_version.start_with? op }
        gem_version = "~> #{gem_version}" unless has_op
        deps << Bundler::Dependency.new(gem_name, gem_version, "group" => gem_group, "source" => gem_source)
      end

      added = Injector.inject(deps, options)

      if added.any?
        Bundler.ui.confirm "Added to Gemfile:"
        Bundler.ui.confirm(added.map do |d|
          name = "'#{d.name}'"
          requirement = ", '#{d.requirement}'"
          group = ", :group => #{d.groups.inspect}" if d.groups != Array(:default)
          source = ", :source => '#{d.source}'" unless d.source.nil?
          %(gem #{name}#{requirement}#{group}#{source})
        end.join("\n"))
      else
        Bundler.ui.confirm "All gems were already present in the Gemfile"
      end
    end

    private

    def last_version_number
      definition = Bundler.definition(true)
      definition.resolve_remotely!
      specs = definition.index[name].sort_by(&:version)
      unless options[:pre]
        specs.delete_if {|b| b.respond_to?(:version) && b.version.prerelease? }
      end
      spec = specs.last
      spec.version.to_s
    end
  end
end
PK;H[%4����:share/gems/gems/bundler-2.2.24/lib/bundler/cli/platform.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Platform
    attr_reader :options
    def initialize(options)
      @options = options
    end

    def run
      platforms, ruby_version = Bundler.ui.silence do
        locked_ruby_version = Bundler.locked_gems && Bundler.locked_gems.ruby_version
        gemfile_ruby_version = Bundler.definition.ruby_version && Bundler.definition.ruby_version.single_version_string
        [Bundler.definition.platforms.map {|p| "* #{p}" },
         locked_ruby_version || gemfile_ruby_version]
      end
      output = []

      if options[:ruby]
        if ruby_version
          output << ruby_version
        else
          output << "No ruby version specified"
        end
      else
        output << "Your platform is: #{RUBY_PLATFORM}"
        output << "Your app has gems that work on these platforms:\n#{platforms.join("\n")}"

        if ruby_version
          output << "Your Gemfile specifies a Ruby version requirement:\n* #{ruby_version}"

          begin
            Bundler.definition.validate_runtime!
            output << "Your current platform satisfies the Ruby version requirement."
          rescue RubyVersionMismatch => e
            output << e.message
          end
        else
          output << "Your Gemfile does not specify a Ruby version requirement."
        end
      end

      Bundler.ui.info output.join("\n\n")
    end
  end
end
PK;H[��)``7share/gems/gems/bundler-2.2.24/lib/bundler/cli/clean.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Clean
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      require_path_or_force unless options[:"dry-run"]
      Bundler.load.clean(options[:"dry-run"])
    end

    protected

    def require_path_or_force
      return unless Bundler.use_system_gems? && !options[:force]
      raise InvalidOption, "Cleaning all the gems on your system is dangerous! " \
        "If you're sure you want to remove every system gem not in this " \
        "bundle, run `bundle clean --force`."
    end
  end
end
PK;H[��,���8share/gems/gems/bundler-2.2.24/lib/bundler/cli/update.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Update
    attr_reader :options, :gems
    def initialize(options, gems)
      @options = options
      @gems = gems
    end

    def run
      Bundler.ui.level = "error" if options[:quiet]

      Plugin.gemfile_install(Bundler.default_gemfile) if Bundler.feature_flag.plugins?

      sources = Array(options[:source])
      groups  = Array(options[:group]).map(&:to_sym)

      full_update = gems.empty? && sources.empty? && groups.empty? && !options[:ruby] && !options[:bundler]

      if full_update && !options[:all]
        if Bundler.feature_flag.update_requires_all_flag?
          raise InvalidOption, "To update everything, pass the `--all` flag."
        end
        SharedHelpers.major_deprecation 3, "Pass --all to `bundle update` to update everything"
      elsif !full_update && options[:all]
        raise InvalidOption, "Cannot specify --all along with specific options."
      end

      conservative = options[:conservative]

      if full_update
        if conservative
          Bundler.definition(:conservative => conservative)
        else
          Bundler.definition(true)
        end
      else
        unless Bundler.default_lockfile.exist?
          raise GemfileLockNotFound, "This Bundle hasn't been installed yet. " \
            "Run `bundle install` to update and install the bundled gems."
        end
        Bundler::CLI::Common.ensure_all_gems_in_lockfile!(gems)

        if groups.any?
          deps = Bundler.definition.dependencies.select {|d| (d.groups & groups).any? }
          gems.concat(deps.map(&:name))
        end

        Bundler.definition(:gems => gems, :sources => sources, :ruby => options[:ruby],
                           :conservative => conservative,
                           :bundler => options[:bundler])
      end

      Bundler::CLI::Common.configure_gem_version_promoter(Bundler.definition, options)

      Bundler::Fetcher.disable_endpoint = options["full-index"]

      opts = options.dup
      opts["update"] = true
      opts["local"] = options[:local]

      Bundler.settings.set_command_option_if_given :jobs, opts["jobs"]

      Bundler.definition.validate_runtime!

      if locked_gems = Bundler.definition.locked_gems
        previous_locked_info = locked_gems.specs.reduce({}) do |h, s|
          h[s.name] = { :spec => s, :version => s.version, :source => s.source.to_s }
          h
        end
      end

      installer = Installer.install Bundler.root, Bundler.definition, opts
      Bundler.load.cache if Bundler.app_cache.exist?

      if CLI::Common.clean_after_install?
        require_relative "clean"
        Bundler::CLI::Clean.new(options).run
      end

      if locked_gems
        gems.each do |name|
          locked_info = previous_locked_info[name]
          next unless locked_info

          locked_spec = locked_info[:spec]
          new_spec = Bundler.definition.specs[name].first
          unless new_spec
            unless locked_spec.match_platform(Bundler.local_platform)
              Bundler.ui.warn "Bundler attempted to update #{name} but it was not considered because it is for a different platform from the current one"
            end

            next
          end

          locked_source = locked_info[:source]
          new_source = new_spec.source.to_s
          next if locked_source != new_source

          new_version = new_spec.version
          locked_version = locked_info[:version]
          if new_version < locked_version
            Bundler.ui.warn "Note: #{name} version regressed from #{locked_version} to #{new_version}"
          elsif new_version == locked_version
            Bundler.ui.warn "Bundler attempted to update #{name} but its version stayed the same"
          end
        end
      end

      Bundler.ui.confirm "Bundle updated!"
      Bundler::CLI::Common.output_without_groups_message(:update)
      Bundler::CLI::Common.output_post_install_messages installer.post_install_messages

      Bundler::CLI::Common.output_fund_metadata_summary
    end
  end
end
PK;H[��w#w#9share/gems/gems/bundler-2.2.24/lib/bundler/cli/install.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Install
    attr_reader :options
    def initialize(options)
      @options = options
    end

    def run
      Bundler.ui.level = "error" if options[:quiet]

      warn_if_root

      Bundler::SharedHelpers.set_env "RB_USER_INSTALL", "1" if Bundler::FREEBSD

      # Disable color in deployment mode
      Bundler.ui.shell = Thor::Shell::Basic.new if options[:deployment]

      check_for_options_conflicts

      check_trust_policy

      if options[:deployment] || options[:frozen] || Bundler.frozen_bundle?
        unless Bundler.default_lockfile.exist?
          flag   = "--deployment flag" if options[:deployment]
          flag ||= "--frozen flag"     if options[:frozen]
          flag ||= "deployment setting"
          raise ProductionError, "The #{flag} requires a #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)}. Please make " \
                                 "sure you have checked your #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)} into version control " \
                                 "before deploying."
        end

        options[:local] = true if Bundler.app_cache.exist?

        Bundler.settings.set_command_option :deployment, true if options[:deployment]
        Bundler.settings.set_command_option :frozen, true if options[:frozen]
      end

      # When install is called with --no-deployment, disable deployment mode
      if options[:deployment] == false
        Bundler.settings.set_command_option :frozen, nil
        options[:system] = true
      end

      normalize_settings

      Bundler::Fetcher.disable_endpoint = options["full-index"]

      if options["binstubs"]
        Bundler::SharedHelpers.major_deprecation 2,
          "The --binstubs option will be removed in favor of `bundle binstubs --all`"
      end

      Plugin.gemfile_install(Bundler.default_gemfile) if Bundler.feature_flag.plugins?

      definition = Bundler.definition
      definition.validate_runtime!

      installer = Installer.install(Bundler.root, definition, options)

      Bundler.settings.temporary(:cache_all_platforms => options[:local] ? false : Bundler.settings[:cache_all_platforms]) do
        Bundler.load.cache if Bundler.app_cache.exist? && !options["no-cache"] && !Bundler.frozen_bundle?
      end

      Bundler.ui.confirm "Bundle complete! #{dependencies_count_for(definition)}, #{gems_installed_for(definition)}."
      Bundler::CLI::Common.output_without_groups_message(:install)

      if Bundler.use_system_gems?
        Bundler.ui.confirm "Use `bundle info [gemname]` to see where a bundled gem is installed."
      else
        relative_path = Bundler.configured_bundle_path.base_path_relative_to_pwd
        Bundler.ui.confirm "Bundled gems are installed into `#{relative_path}`"
      end

      Bundler::CLI::Common.output_post_install_messages installer.post_install_messages

      warn_ambiguous_gems

      if CLI::Common.clean_after_install?
        require_relative "clean"
        Bundler::CLI::Clean.new(options).run
      end

      Bundler::CLI::Common.output_fund_metadata_summary
    rescue GemNotFound, VersionConflict => e
      if options[:local] && Bundler.app_cache.exist?
        Bundler.ui.warn "Some gems seem to be missing from your #{Bundler.settings.app_cache_path} directory."
      end

      unless Bundler.definition.has_rubygems_remotes?
        Bundler.ui.warn <<-WARN, :wrap => true
          Your Gemfile has no gem server sources. If you need gems that are \
          not already on your machine, add a line like this to your Gemfile:
          source 'https://rubygems.org'
        WARN
      end
      raise e
    rescue Gem::InvalidSpecificationException => e
      Bundler.ui.warn "You have one or more invalid gemspecs that need to be fixed."
      raise e
    end

    private

    def warn_if_root
      return if Bundler.settings[:silence_root_warning] || Gem.win_platform? || !Process.uid.zero?
      Bundler.ui.warn "Don't run Bundler as root. Bundler can ask for sudo " \
        "if it is needed, and installing your bundle as root will break this " \
        "application for all non-root users on this machine.", :wrap => true
    end

    def dependencies_count_for(definition)
      count = definition.dependencies.count
      "#{count} Gemfile #{count == 1 ? "dependency" : "dependencies"}"
    end

    def gems_installed_for(definition)
      count = definition.specs.count
      "#{count} #{count == 1 ? "gem" : "gems"} now installed"
    end

    def check_for_group_conflicts_in_cli_options
      conflicting_groups = Array(options[:without]) & Array(options[:with])
      return if conflicting_groups.empty?
      raise InvalidOption, "You can't list a group in both with and without." \
        " The offending groups are: #{conflicting_groups.join(", ")}."
    end

    def check_for_options_conflicts
      if (options[:path] || options[:deployment]) && options[:system]
        error_message = String.new
        error_message << "You have specified both --path as well as --system. Please choose only one option.\n" if options[:path]
        error_message << "You have specified both --deployment as well as --system. Please choose only one option.\n" if options[:deployment]
        raise InvalidOption.new(error_message)
      end
    end

    def check_trust_policy
      trust_policy = options["trust-policy"]
      unless Bundler.rubygems.security_policies.keys.unshift(nil).include?(trust_policy)
        raise InvalidOption, "RubyGems doesn't know about trust policy '#{trust_policy}'. " \
          "The known policies are: #{Bundler.rubygems.security_policies.keys.join(", ")}."
      end
      Bundler.settings.set_command_option_if_given :"trust-policy", trust_policy
    end

    def normalize_groups
      options[:with] &&= options[:with].join(":").tr(" ", ":").split(":")
      options[:without] &&= options[:without].join(":").tr(" ", ":").split(":")

      check_for_group_conflicts_in_cli_options

      Bundler.settings.set_command_option :with, nil if options[:with] == []
      Bundler.settings.set_command_option :without, nil if options[:without] == []

      with = options.fetch(:with, [])
      with |= Bundler.settings[:with].map(&:to_s)
      with -= options[:without] if options[:without]

      without = options.fetch(:without, [])
      without |= Bundler.settings[:without].map(&:to_s)
      without -= options[:with] if options[:with]

      options[:with]    = with
      options[:without] = without

      unless Bundler.settings[:without] == options[:without] && Bundler.settings[:with] == options[:with]
        # need to nil them out first to get around validation for backwards compatibility
        Bundler.settings.set_command_option :without, nil
        Bundler.settings.set_command_option :with,    nil
        Bundler.settings.set_command_option :without, options[:without] - options[:with]
        Bundler.settings.set_command_option :with,    options[:with]
      end
    end

    def normalize_settings
      Bundler.settings.set_command_option :path, nil if options[:system]
      Bundler.settings.temporary(:path_relative_to_cwd => false) do
        Bundler.settings.set_command_option :path, "vendor/bundle" if Bundler.settings[:deployment] && Bundler.settings[:path].nil?
      end
      Bundler.settings.set_command_option_if_given :path, options[:path]
      Bundler.settings.temporary(:path_relative_to_cwd => false) do
        Bundler.settings.set_command_option :path, "bundle" if options["standalone"] && Bundler.settings[:path].nil?
      end

      bin_option = options["binstubs"]
      bin_option = nil if bin_option && bin_option.empty?
      Bundler.settings.set_command_option :bin, bin_option if options["binstubs"]

      Bundler.settings.set_command_option_if_given :shebang, options["shebang"]

      Bundler.settings.set_command_option_if_given :jobs, options["jobs"]

      Bundler.settings.set_command_option_if_given :no_prune, options["no-prune"]

      Bundler.settings.set_command_option_if_given :no_install, options["no-install"]

      Bundler.settings.set_command_option_if_given :clean, options["clean"]

      normalize_groups

      options[:force] = options[:redownload]
    end

    def warn_ambiguous_gems
      # TODO: remove this when we drop Bundler 1.x support
      Installer.ambiguous_gems.to_a.each do |name, installed_from_uri, *also_found_in_uris|
        Bundler.ui.warn "Warning: the gem '#{name}' was found in multiple sources."
        Bundler.ui.warn "Installed from: #{installed_from_uri}"
        Bundler.ui.warn "Also found in:"
        also_found_in_uris.each {|uri| Bundler.ui.warn "  * #{uri}" }
        Bundler.ui.warn "You should add a source requirement to restrict this gem to your preferred source."
        Bundler.ui.warn "For example:"
        Bundler.ui.warn "    gem '#{name}', :source => '#{installed_from_uri}'"
        Bundler.ui.warn "Then uninstall the gem '#{name}' (or delete all bundled gems) and then install again."
      end
    end
  end
end
PK;H[�=��"$"$:share/gems/gems/bundler-2.2.24/lib/bundler/cli/outdated.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Outdated
    attr_reader :options, :gems, :options_include_groups, :filter_options_patch, :sources, :strict
    attr_accessor :outdated_gems

    def initialize(options, gems)
      @options = options
      @gems = gems
      @sources = Array(options[:source])

      @filter_options_patch = options.keys & %w[filter-major filter-minor filter-patch]

      @outdated_gems = []

      @options_include_groups = [:group, :groups].any? do |v|
        options.keys.include?(v.to_s)
      end

      # the patch level options imply strict is also true. It wouldn't make
      # sense otherwise.
      @strict = options["filter-strict"] || Bundler::CLI::Common.patch_level_options(options).any?
    end

    def run
      check_for_deployment_mode!

      gems.each do |gem_name|
        Bundler::CLI::Common.select_spec(gem_name)
      end

      Bundler.definition.validate_runtime!
      current_specs = Bundler.ui.silence { Bundler.definition.resolve }

      current_dependencies = Bundler.ui.silence do
        Bundler.load.dependencies.map {|dep| [dep.name, dep] }.to_h
      end

      definition = if gems.empty? && sources.empty?
        # We're doing a full update
        Bundler.definition(true)
      else
        Bundler.definition(:gems => gems, :sources => sources)
      end

      Bundler::CLI::Common.configure_gem_version_promoter(
        Bundler.definition,
        options
      )

      definition_resolution = proc do
        options[:local] ? definition.resolve_with_cache! : definition.resolve_remotely!
      end

      if options[:parseable]
        Bundler.ui.silence(&definition_resolution)
      else
        definition_resolution.call
      end

      Bundler.ui.info ""

      # Loop through the current specs
      gemfile_specs, dependency_specs = current_specs.partition do |spec|
        current_dependencies.key? spec.name
      end

      specs = if options["only-explicit"]
        gemfile_specs
      else
        gemfile_specs + dependency_specs
      end

      specs.sort_by(&:name).uniq(&:name).each do |current_spec|
        next unless gems.empty? || gems.include?(current_spec.name)

        active_spec = retrieve_active_spec(definition, current_spec)
        next unless active_spec

        next unless filter_options_patch.empty? || update_present_via_semver_portions(current_spec, active_spec, options)

        gem_outdated = Gem::Version.new(active_spec.version) > Gem::Version.new(current_spec.version)
        next unless gem_outdated || (current_spec.git_version != active_spec.git_version)

        dependency = current_dependencies[current_spec.name]
        groups = ""
        if dependency && !options[:parseable]
          groups = dependency.groups.join(", ")
        end

        outdated_gems << {
          :active_spec => active_spec,
          :current_spec => current_spec,
          :dependency => dependency,
          :groups => groups,
        }
      end

      if outdated_gems.empty?
        unless options[:parseable]
          Bundler.ui.info(nothing_outdated_message)
        end
      else
        if options_include_groups
          relevant_outdated_gems = outdated_gems.group_by {|g| g[:groups] }.sort.flat_map do |groups, gems|
            contains_group = groups.split(", ").include?(options[:group])
            next unless options[:groups] || contains_group

            gems
          end.compact

          if options[:parseable]
            relevant_outdated_gems.each do |gems|
              print_gems(gems)
            end
          else
            print_gems_table(relevant_outdated_gems)
          end
        elsif options[:parseable]
          print_gems(outdated_gems)
        else
          print_gems_table(outdated_gems)
        end

        exit 1
      end
    end

    private

    def groups_text(group_text, groups)
      "#{group_text}#{groups.split(",").size > 1 ? "s" : ""} \"#{groups}\""
    end

    def nothing_outdated_message
      if filter_options_patch.any?
        display = filter_options_patch.map do |o|
          o.sub("filter-", "")
        end.join(" or ")

        "No #{display} updates to display.\n"
      else
        "Bundle up to date!\n"
      end
    end

    def retrieve_active_spec(definition, current_spec)
      active_spec = definition.resolve.find_by_name_and_platform(current_spec.name, current_spec.platform)
      return unless active_spec

      return active_spec if strict

      active_specs = active_spec.source.specs.search(current_spec.name).select {|spec| spec.match_platform(current_spec.platform) }.sort_by(&:version)
      if !current_spec.version.prerelease? && !options[:pre] && active_specs.size > 1
        active_specs.delete_if {|b| b.respond_to?(:version) && b.version.prerelease? }
      end
      active_specs.last
    end

    def print_gems(gems_list)
      gems_list.each do |gem|
        print_gem(
          gem[:current_spec],
          gem[:active_spec],
          gem[:dependency],
          gem[:groups],
        )
      end
    end

    def print_gems_table(gems_list)
      data = gems_list.map do |gem|
        gem_column_for(
          gem[:current_spec],
          gem[:active_spec],
          gem[:dependency],
          gem[:groups],
        )
      end

      print_indented([table_header] + data)
    end

    def print_gem(current_spec, active_spec, dependency, groups)
      spec_version = "#{active_spec.version}#{active_spec.git_version}"
      spec_version += " (from #{active_spec.loaded_from})" if Bundler.ui.debug? && active_spec.loaded_from
      current_version = "#{current_spec.version}#{current_spec.git_version}"

      if dependency && dependency.specific?
        dependency_version = %(, requested #{dependency.requirement})
      end

      spec_outdated_info = "#{active_spec.name} (newest #{spec_version}, " \
        "installed #{current_version}#{dependency_version})"

      output_message = if options[:parseable]
        spec_outdated_info.to_s
      elsif options_include_groups || groups.empty?
        "  * #{spec_outdated_info}"
      else
        "  * #{spec_outdated_info} in #{groups_text("group", groups)}"
      end

      Bundler.ui.info output_message.rstrip
    end

    def gem_column_for(current_spec, active_spec, dependency, groups)
      current_version = "#{current_spec.version}#{current_spec.git_version}"
      spec_version = "#{active_spec.version}#{active_spec.git_version}"
      dependency = dependency.requirement if dependency

      ret_val = [active_spec.name, current_version, spec_version, dependency.to_s, groups.to_s]
      ret_val << active_spec.loaded_from.to_s if Bundler.ui.debug?
      ret_val
    end

    def check_for_deployment_mode!
      return unless Bundler.frozen_bundle?
      suggested_command = if Bundler.settings.locations("frozen").keys.&([:global, :local]).any?
        "bundle config unset frozen"
      elsif Bundler.settings.locations("deployment").keys.&([:global, :local]).any?
        "bundle config unset deployment"
      end
      raise ProductionError, "You are trying to check outdated gems in " \
        "deployment mode. Run `bundle outdated` elsewhere.\n" \
        "\nIf this is a development machine, remove the " \
        "#{Bundler.default_gemfile} freeze" \
        "\nby running `#{suggested_command}`."
    end

    def update_present_via_semver_portions(current_spec, active_spec, options)
      current_major = current_spec.version.segments.first
      active_major = active_spec.version.segments.first

      update_present = false
      update_present = active_major > current_major if options["filter-major"]

      if !update_present && (options["filter-minor"] || options["filter-patch"]) && current_major == active_major
        current_minor = get_version_semver_portion_value(current_spec, 1)
        active_minor = get_version_semver_portion_value(active_spec, 1)

        update_present = active_minor > current_minor if options["filter-minor"]

        if !update_present && options["filter-patch"] && current_minor == active_minor
          current_patch = get_version_semver_portion_value(current_spec, 2)
          active_patch = get_version_semver_portion_value(active_spec, 2)

          update_present = active_patch > current_patch
        end
      end

      update_present
    end

    def get_version_semver_portion_value(spec, version_portion_index)
      version_section = spec.version.segments[version_portion_index, 1]
      version_section.to_a[0].to_i
    end

    def print_indented(matrix)
      header = matrix[0]
      data = matrix[1..-1]

      column_sizes = Array.new(header.size) do |index|
        matrix.max_by {|row| row[index].length }[index].length
      end

      Bundler.ui.info justify(header, column_sizes)

      data.sort_by! {|row| row[0] }

      data.each do |row|
        Bundler.ui.info justify(row, column_sizes)
      end
    end

    def table_header
      header = ["Gem", "Current", "Latest", "Requested", "Groups"]
      header << "Path" if Bundler.ui.debug?
      header
    end

    def justify(row, sizes)
      row.each_with_index.map do |element, index|
        element.ljust(sizes[index])
      end.join("  ").strip + "\n"
    end
  end
end
PK;H[��W�{
{
6share/gems/gems/bundler-2.2.24/lib/bundler/cli/info.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Info
    attr_reader :gem_name, :options
    def initialize(options, gem_name)
      @options = options
      @gem_name = gem_name
    end

    def run
      Bundler.ui.silence do
        Bundler.definition.validate_runtime!
        Bundler.load.lock
      end

      spec = spec_for_gem(gem_name)

      if spec
        return print_gem_path(spec) if @options[:path]
        print_gem_info(spec)
      end
    end

    private

    def spec_for_gem(gem_name)
      spec = Bundler.definition.specs.find {|s| s.name == gem_name }
      spec || default_gem_spec(gem_name) || Bundler::CLI::Common.select_spec(gem_name, :regex_match)
    end

    def default_gem_spec(gem_name)
      return unless Gem::Specification.respond_to?(:find_all_by_name)
      gem_spec = Gem::Specification.find_all_by_name(gem_name).last
      return gem_spec if gem_spec && gem_spec.respond_to?(:default_gem?) && gem_spec.default_gem?
    end

    def spec_not_found(gem_name)
      raise GemNotFound, Bundler::CLI::Common.gem_not_found_message(gem_name, Bundler.definition.dependencies)
    end

    def print_gem_path(spec)
      if spec.name == "bundler"
        path = File.expand_path("../../../..", __FILE__)
      else
        path = spec.full_gem_path
        unless File.directory?(path)
          return Bundler.ui.warn "The gem #{gem_name} has been deleted. It was installed at: #{path}"
        end
      end

      Bundler.ui.info path
    end

    def print_gem_info(spec)
      metadata = spec.metadata
      gem_info = String.new
      gem_info << "  * #{spec.name} (#{spec.version}#{spec.git_version})\n"
      gem_info << "\tSummary: #{spec.summary}\n" if spec.summary
      gem_info << "\tHomepage: #{spec.homepage}\n" if spec.homepage
      gem_info << "\tDocumentation: #{metadata["documentation_uri"]}\n" if metadata.key?("documentation_uri")
      gem_info << "\tSource Code: #{metadata["source_code_uri"]}\n" if metadata.key?("source_code_uri")
      gem_info << "\tFunding: #{metadata["funding_uri"]}\n" if metadata.key?("funding_uri")
      gem_info << "\tWiki: #{metadata["wiki_uri"]}\n" if metadata.key?("wiki_uri")
      gem_info << "\tChangelog: #{metadata["changelog_uri"]}\n" if metadata.key?("changelog_uri")
      gem_info << "\tBug Tracker: #{metadata["bug_tracker_uri"]}\n" if metadata.key?("bug_tracker_uri")
      gem_info << "\tMailing List: #{metadata["mailing_list_uri"]}\n" if metadata.key?("mailing_list_uri")
      gem_info << "\tPath: #{spec.full_gem_path}\n"
      gem_info << "\tDefault Gem: yes" if spec.respond_to?(:default_gem?) && spec.default_gem?
      Bundler.ui.info gem_info
    end
  end
end
PK;H[j�����6share/gems/gems/bundler-2.2.24/lib/bundler/cli/show.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Show
    attr_reader :options, :gem_name, :latest_specs
    def initialize(options, gem_name)
      @options = options
      @gem_name = gem_name
      @verbose = options[:verbose] || options[:outdated]
      @latest_specs = fetch_latest_specs if @verbose
    end

    def run
      Bundler.ui.silence do
        Bundler.definition.validate_runtime!
        Bundler.load.lock
      end

      if gem_name
        if gem_name == "bundler"
          path = File.expand_path("../../../..", __FILE__)
        else
          spec = Bundler::CLI::Common.select_spec(gem_name, :regex_match)
          return unless spec
          path = spec.full_gem_path
          unless File.directory?(path)
            return Bundler.ui.warn "The gem #{gem_name} has been deleted. It was installed at: #{path}"
          end
        end
        return Bundler.ui.info(path)
      end

      if options[:paths]
        Bundler.load.specs.sort_by(&:name).map do |s|
          Bundler.ui.info s.full_gem_path
        end
      else
        Bundler.ui.info "Gems included by the bundle:"
        Bundler.load.specs.sort_by(&:name).each do |s|
          desc = "  * #{s.name} (#{s.version}#{s.git_version})"
          if @verbose
            latest = latest_specs.find {|l| l.name == s.name }
            Bundler.ui.info <<-END.gsub(/^ +/, "")
              #{desc}
              \tSummary:  #{s.summary || "No description available."}
              \tHomepage: #{s.homepage || "No website available."}
              \tStatus:   #{outdated?(s, latest) ? "Outdated - #{s.version} < #{latest.version}" : "Up to date"}
            END
          else
            Bundler.ui.info desc
          end
        end
      end
    end

    private

    def fetch_latest_specs
      definition = Bundler.definition(true)
      if options[:outdated]
        Bundler.ui.info "Fetching remote specs for outdated check...\n\n"
        Bundler.ui.silence { definition.resolve_remotely! }
      else
        definition.resolve_with_cache!
      end
      Bundler.reset!
      definition.specs
    end

    def outdated?(current, latest)
      return false unless latest
      Gem::Version.new(current.version) < Gem::Version.new(latest.version)
    end
  end
end
PK;H[�|�jj7share/gems/gems/bundler-2.2.24/lib/bundler/cli/cache.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Cache
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      Bundler.ui.level = "error" if options[:quiet]
      Bundler.settings.set_command_option_if_given :path, options[:path]
      Bundler.settings.set_command_option_if_given :cache_path, options["cache-path"]

      setup_cache_all
      install

      # TODO: move cache contents here now that all bundles are locked
      custom_path = Bundler.settings[:path] if options[:path]

      Bundler.settings.temporary(:cache_all_platforms => options["all-platforms"]) do
        Bundler.load.cache(custom_path)
      end
    end

    private

    def install
      require_relative "install"
      options = self.options.dup
      options["local"] = false if Bundler.settings[:cache_all_platforms]
      options["no-cache"] = true
      Bundler::CLI::Install.new(options).run
    end

    def setup_cache_all
      all = options.fetch(:all, Bundler.feature_flag.cache_all? || nil)

      Bundler.settings.set_command_option_if_given :cache_all, all
    end
  end
end
PK;H[V�9��6share/gems/gems/bundler-2.2.24/lib/bundler/cli/fund.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Fund
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      Bundler.definition.validate_runtime!

      groups = Array(options[:group]).map(&:to_sym)

      deps = if groups.any?
        Bundler.definition.dependencies_for(groups)
      else
        Bundler.definition.current_dependencies
      end

      fund_info = deps.each_with_object([]) do |dep, arr|
        spec = Bundler.definition.specs[dep.name].first
        if spec.metadata.key?("funding_uri")
          arr << "* #{spec.name} (#{spec.version})\n  Funding: #{spec.metadata["funding_uri"]}"
        end
      end

      if fund_info.empty?
        Bundler.ui.info "None of the installed gems you directly depend on are looking for funding."
      else
        Bundler.ui.info fund_info.join("\n")
      end
    end
  end
end
PK;H[�;�.>>5share/gems/gems/bundler-2.2.24/lib/bundler/cli/viz.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Viz
    attr_reader :options, :gem_name
    def initialize(options)
      @options = options
    end

    def run
      # make sure we get the right `graphviz`. There is also a `graphviz`
      # gem we're not built to support
      gem "ruby-graphviz"
      require "graphviz"

      options[:without] = options[:without].join(":").tr(" ", ":").split(":")
      output_file = File.expand_path(options[:file])

      graph = Graph.new(Bundler.load, output_file, options[:version], options[:requirements], options[:format], options[:without])
      graph.viz
    rescue LoadError => e
      Bundler.ui.error e.inspect
      Bundler.ui.warn "Make sure you have the graphviz ruby gem. You can install it with:"
      Bundler.ui.warn "`gem install ruby-graphviz`"
    rescue StandardError => e
      raise unless e.message =~ /GraphViz not installed or dot not in PATH/
      Bundler.ui.error e.message
      Bundler.ui.warn "Please install GraphViz. On a Mac with Homebrew, you can run `brew install graphviz`."
    end
  end
end
PK;H[3�LT��:share/gems/gems/bundler-2.2.24/lib/bundler/cli/pristine.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Pristine
    def initialize(gems)
      @gems = gems
    end

    def run
      CLI::Common.ensure_all_gems_in_lockfile!(@gems)
      definition = Bundler.definition
      definition.validate_runtime!
      installer = Bundler::Installer.new(Bundler.root, definition)

      Bundler.load.specs.each do |spec|
        next if spec.name == "bundler" # Source::Rubygems doesn't install bundler
        next if !@gems.empty? && !@gems.include?(spec.name)

        gem_name = "#{spec.name} (#{spec.version}#{spec.git_version})"
        gem_name += " (#{spec.platform})" if !spec.platform.nil? && spec.platform != Gem::Platform::RUBY

        case source = spec.source
        when Source::Rubygems
          cached_gem = spec.cache_file
          unless File.exist?(cached_gem)
            Bundler.ui.error("Failed to pristine #{gem_name}. Cached gem #{cached_gem} does not exist.")
            next
          end

          FileUtils.rm_rf spec.full_gem_path
        when Source::Git
          if source.local?
            Bundler.ui.warn("Cannot pristine #{gem_name}. Gem is locally overridden.")
            next
          end

          source.remote!
          if extension_cache_path = source.extension_cache_path(spec)
            FileUtils.rm_rf extension_cache_path
          end
          FileUtils.rm_rf spec.extension_dir
          FileUtils.rm_rf spec.full_gem_path
        else
          Bundler.ui.warn("Cannot pristine #{gem_name}. Gem is sourced from local path.")
          next
        end

        Bundler::GemInstaller.new(spec, installer, false, 0, true).install_from_spec
      end
    end
  end
end
PK;H[�����8share/gems/gems/bundler-2.2.24/lib/bundler/cli/doctor.rbnu�[���# frozen_string_literal: true

require "rbconfig"

module Bundler
  class CLI::Doctor
    DARWIN_REGEX = /\s+(.+) \(compatibility /.freeze
    LDD_REGEX = /\t\S+ => (\S+) \(\S+\)/.freeze

    attr_reader :options

    def initialize(options)
      @options = options
    end

    def otool_available?
      Bundler.which("otool")
    end

    def ldd_available?
      Bundler.which("ldd")
    end

    def dylibs_darwin(path)
      output = `/usr/bin/otool -L "#{path}"`.chomp
      dylibs = output.split("\n")[1..-1].map {|l| l.match(DARWIN_REGEX).captures[0] }.uniq
      # ignore @rpath and friends
      dylibs.reject {|dylib| dylib.start_with? "@" }
    end

    def dylibs_ldd(path)
      output = `/usr/bin/ldd "#{path}"`.chomp
      output.split("\n").map do |l|
        match = l.match(LDD_REGEX)
        next if match.nil?
        match.captures[0]
      end.compact
    end

    def dylibs(path)
      case RbConfig::CONFIG["host_os"]
      when /darwin/
        return [] unless otool_available?
        dylibs_darwin(path)
      when /(linux|solaris|bsd)/
        return [] unless ldd_available?
        dylibs_ldd(path)
      else # Windows, etc.
        Bundler.ui.warn("Dynamic library check not supported on this platform.")
        []
      end
    end

    def bundles_for_gem(spec)
      Dir.glob("#{spec.full_gem_path}/**/*.bundle")
    end

    def check!
      require_relative "check"
      Bundler::CLI::Check.new({}).run
    end

    def run
      Bundler.ui.level = "error" if options[:quiet]
      Bundler.settings.validate!
      check!

      definition = Bundler.definition
      broken_links = {}

      definition.specs.each do |spec|
        bundles_for_gem(spec).each do |bundle|
          bad_paths = dylibs(bundle).select {|f| !File.exist?(f) }
          if bad_paths.any?
            broken_links[spec] ||= []
            broken_links[spec].concat(bad_paths)
          end
        end
      end

      permissions_valid = check_home_permissions

      if broken_links.any?
        message = "The following gems are missing OS dependencies:"
        broken_links.map do |spec, paths|
          paths.uniq.map do |path|
            "\n * #{spec.name}: #{path}"
          end
        end.flatten.sort.each {|m| message += m }
        raise ProductionError, message
      elsif !permissions_valid
        Bundler.ui.info "No issues found with the installed bundle"
      end
    end

    private

    def check_home_permissions
      require "find"
      files_not_readable_or_writable = []
      files_not_rw_and_owned_by_different_user = []
      files_not_owned_by_current_user_but_still_rw = []
      broken_symlinks = []
      Find.find(Bundler.bundle_path.to_s).each do |f|
        if !File.exist?(f)
          broken_symlinks << f
        elsif !File.writable?(f) || !File.readable?(f)
          if File.stat(f).uid != Process.uid
            files_not_rw_and_owned_by_different_user << f
          else
            files_not_readable_or_writable << f
          end
        elsif File.stat(f).uid != Process.uid
          files_not_owned_by_current_user_but_still_rw << f
        end
      end

      ok = true

      if broken_symlinks.any?
        Bundler.ui.warn "Broken links exist in the Bundler home. Please report them to the offending gem's upstream repo. These files are:\n - #{broken_symlinks.join("\n - ")}"

        ok = false
      end

      if files_not_owned_by_current_user_but_still_rw.any?
        Bundler.ui.warn "Files exist in the Bundler home that are owned by another " \
          "user, but are still readable/writable. These files are:\n - #{files_not_owned_by_current_user_but_still_rw.join("\n - ")}"

        ok = false
      end

      if files_not_rw_and_owned_by_different_user.any?
        Bundler.ui.warn "Files exist in the Bundler home that are owned by another " \
          "user, and are not readable/writable. These files are:\n - #{files_not_rw_and_owned_by_different_user.join("\n - ")}"

        ok = false
      end

      if files_not_readable_or_writable.any?
        Bundler.ui.warn "Files exist in the Bundler home that are not " \
          "readable/writable by the current user. These files are:\n - #{files_not_readable_or_writable.join("\n - ")}"

        ok = false
      end

      ok
    end
  end
end
PK;H[��N�

6share/gems/gems/bundler-2.2.24/lib/bundler/cli/exec.rbnu�[���# frozen_string_literal: true

require_relative "../current_ruby"

module Bundler
  class CLI::Exec
    attr_reader :options, :args, :cmd

    TRAPPED_SIGNALS = %w[INT].freeze

    def initialize(options, args)
      @options = options
      @cmd = args.shift
      @args = args

      if !Bundler.current_ruby.jruby?
        @args << { :close_others => !options.keep_file_descriptors? }
      elsif options.keep_file_descriptors?
        Bundler.ui.warn "Ruby version #{RUBY_VERSION} defaults to keeping non-standard file descriptors on Kernel#exec."
      end
    end

    def run
      validate_cmd!
      SharedHelpers.set_bundle_environment
      if bin_path = Bundler.which(cmd)
        if !Bundler.settings[:disable_exec_load] && ruby_shebang?(bin_path)
          return kernel_load(bin_path, *args)
        end
        kernel_exec(bin_path, *args)
      else
        # exec using the given command
        kernel_exec(cmd, *args)
      end
    end

    private

    def validate_cmd!
      return unless cmd.nil?
      Bundler.ui.error "bundler: exec needs a command to run"
      exit 128
    end

    def kernel_exec(*args)
      Kernel.exec(*args)
    rescue Errno::EACCES, Errno::ENOEXEC
      Bundler.ui.error "bundler: not executable: #{cmd}"
      exit 126
    rescue Errno::ENOENT
      Bundler.ui.error "bundler: command not found: #{cmd}"
      Bundler.ui.warn "Install missing gem executables with `bundle install`"
      exit 127
    end

    def kernel_load(file, *args)
      args.pop if args.last.is_a?(Hash)
      ARGV.replace(args)
      $0 = file
      Process.setproctitle(process_title(file, args)) if Process.respond_to?(:setproctitle)
      require_relative "../setup"
      TRAPPED_SIGNALS.each {|s| trap(s, "DEFAULT") }
      Kernel.load(file)
    rescue SystemExit, SignalException
      raise
    rescue Exception # rubocop:disable Lint/RescueException
      Bundler.ui.error "bundler: failed to load command: #{cmd} (#{file})"
      Bundler::FriendlyErrors.disable!
      raise
    end

    def process_title(file, args)
      "#{file} #{args.join(" ")}".strip
    end

    def ruby_shebang?(file)
      possibilities = [
        "#!/usr/bin/env ruby\n",
        "#!/usr/bin/env jruby\n",
        "#!/usr/bin/env truffleruby\n",
        "#!#{Gem.ruby}\n",
      ]

      if File.zero?(file)
        Bundler.ui.warn "#{file} is empty"
        return false
      end

      first_line = File.open(file, "rb") {|f| f.read(possibilities.map(&:size).max) }
      possibilities.any? {|shebang| first_line.start_with?(shebang) }
    end
  end
end
PK;H[�u)7share/gems/gems/bundler-2.2.24/lib/bundler/cli/issue.rbnu�[���# frozen_string_literal: true

require "rbconfig"

module Bundler
  class CLI::Issue
    def run
      Bundler.ui.info <<-EOS.gsub(/^ {8}/, "")
        Did you find an issue with Bundler? Before filing a new issue,
        be sure to check out these resources:

        1. Check out our troubleshooting guide for quick fixes to common issues:
        https://github.com/rubygems/rubygems/blob/master/bundler/doc/TROUBLESHOOTING.md

        2. Instructions for common Bundler uses can be found on the documentation
        site: https://bundler.io/

        3. Information about each Bundler command can be found in the Bundler
        man pages: https://bundler.io/man/bundle.1.html

        Hopefully the troubleshooting steps above resolved your problem!  If things
        still aren't working the way you expect them to, please let us know so
        that we can diagnose and help fix the problem you're having. Please
        view the Filing Issues guide for more information:
        https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/ISSUES.md

      EOS

      Bundler.ui.info Bundler::Env.report

      Bundler.ui.info "\n## Bundle Doctor"
      doctor
    end

    def doctor
      require_relative "doctor"
      Bundler::CLI::Doctor.new({}).run
    end
  end
end
PK;H[Ak���8share/gems/gems/bundler-2.2.24/lib/bundler/cli/plugin.rbnu�[���# frozen_string_literal: true

require_relative "../vendored_thor"
module Bundler
  class CLI::Plugin < Thor
    desc "install PLUGINS", "Install the plugin from the source"
    long_desc <<-D
      Install plugins either from the rubygems source provided (with --source option) or from a git source provided with --git (for remote repos) or --local_git (for local repos). If no sources are provided, it uses Gem.sources
   D
    method_option "source", :type => :string, :default => nil, :banner =>
      "URL of the RubyGems source to fetch the plugin from"
    method_option "version", :type => :string, :default => nil, :banner =>
      "The version of the plugin to fetch"
    method_option "git", :type => :string, :default => nil, :banner =>
      "URL of the git repo to fetch from"
    method_option "local_git", :type => :string, :default => nil, :banner =>
      "Path of the local git repo to fetch from"
    method_option "branch", :type => :string, :default => nil, :banner =>
      "The git branch to checkout"
    method_option "ref", :type => :string, :default => nil, :banner =>
      "The git revision to check out"
    def install(*plugins)
      Bundler::Plugin.install(plugins, options)
    end

    desc "uninstall PLUGINS", "Uninstall the plugins"
    long_desc <<-D
      Uninstall given list of plugins. To uninstall all the plugins, use -all option.
    D
    method_option "all", :type => :boolean, :default => nil, :banner =>
      "Uninstall all the installed plugins. If no plugin is installed, then it does nothing."
    def uninstall(*plugins)
      Bundler::Plugin.uninstall(plugins, options)
    end

    desc "list", "List the installed plugins and available commands"
    def list
      Bundler::Plugin.list
    end
  end
end
PK;H[������6share/gems/gems/bundler-2.2.24/lib/bundler/cli/open.rbnu�[���# frozen_string_literal: true

require "shellwords"

module Bundler
  class CLI::Open
    attr_reader :options, :name
    def initialize(options, name)
      @options = options
      @name = name
    end

    def run
      editor = [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? }
      return Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR") unless editor
      return unless spec = Bundler::CLI::Common.select_spec(name, :regex_match)
      if spec.default_gem?
        Bundler.ui.info "Unable to open #{name} because it's a default gem, so the directory it would normally be installed to does not exist."
      else
        path = spec.full_gem_path
        Dir.chdir(path) do
          command = Shellwords.split(editor) + [path]
          Bundler.with_original_env do
            system(*command)
          end || Bundler.ui.info("Could not run '#{command.join(" ")}'")
        end
      end
    end
  end
end
PK;H[m�/Ċ�6share/gems/gems/bundler-2.2.24/lib/bundler/cli/init.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Init
    attr_reader :options
    def initialize(options)
      @options = options
    end

    def run
      if File.exist?(gemfile)
        Bundler.ui.error "#{gemfile} already exists at #{File.expand_path(gemfile)}"
        exit 1
      end

      unless File.writable?(Dir.pwd)
        Bundler.ui.error "Can not create #{gemfile} as the current directory is not writable."
        exit 1
      end

      if options[:gemspec]
        gemspec = File.expand_path(options[:gemspec])
        unless File.exist?(gemspec)
          Bundler.ui.error "Gem specification #{gemspec} doesn't exist"
          exit 1
        end

        spec = Bundler.load_gemspec_uncached(gemspec)

        File.open(gemfile, "wb") do |file|
          file << "# Generated from #{gemspec}\n"
          file << spec.to_gemfile
        end
      else
        FileUtils.cp(File.expand_path("../../templates/#{gemfile}", __FILE__), gemfile)
      end

      puts "Writing new #{gemfile} to #{SharedHelpers.pwd}/#{gemfile}"
    end

    private

    def gemfile
      @gemfile ||= Bundler.preferred_gemfile_name
    end
  end
end
PK;H[��8share/gems/gems/bundler-2.2.24/lib/bundler/cli/common.rbnu�[���# frozen_string_literal: true

module Bundler
  module CLI::Common
    def self.output_post_install_messages(messages)
      return if Bundler.settings["ignore_messages"]
      messages.to_a.each do |name, msg|
        print_post_install_message(name, msg) unless Bundler.settings["ignore_messages.#{name}"]
      end
    end

    def self.print_post_install_message(name, msg)
      Bundler.ui.confirm "Post-install message from #{name}:"
      Bundler.ui.info msg
    end

    def self.output_fund_metadata_summary
      definition = Bundler.definition
      current_dependencies = definition.requested_dependencies
      current_specs = definition.specs

      count = current_dependencies.count {|dep| current_specs[dep.name].first.metadata.key?("funding_uri") }

      return if count.zero?

      intro = count > 1 ? "#{count} installed gems you directly depend on are" : "#{count} installed gem you directly depend on is"
      message = "#{intro} looking for funding.\n  Run `bundle fund` for details"
      Bundler.ui.info message
    end

    def self.output_without_groups_message(command)
      return if Bundler.settings[:without].empty?
      Bundler.ui.confirm without_groups_message(command)
    end

    def self.without_groups_message(command)
      command_in_past_tense = command == :install ? "installed" : "updated"
      groups = Bundler.settings[:without]
      "Gems in the #{verbalize_groups(groups)} were not #{command_in_past_tense}."
    end

    def self.verbalize_groups(groups)
      groups.map!{|g| "'#{g}'" }
      group_list = [groups[0...-1].join(", "), groups[-1..-1]].
        reject {|s| s.to_s.empty? }.join(" and ")
      group_str = groups.size == 1 ? "group" : "groups"
      "#{group_str} #{group_list}"
    end

    def self.select_spec(name, regex_match = nil)
      specs = []
      regexp = Regexp.new(name) if regex_match

      Bundler.definition.specs.each do |spec|
        return spec if spec.name == name
        specs << spec if regexp && spec.name =~ regexp
      end

      case specs.count
      when 0
        dep_in_other_group = Bundler.definition.current_dependencies.find {|dep|dep.name == name }

        if dep_in_other_group
          raise GemNotFound, "Could not find gem '#{name}', because it's in the #{verbalize_groups(dep_in_other_group.groups)}, configured to be ignored."
        else
          raise GemNotFound, gem_not_found_message(name, Bundler.definition.dependencies)
        end
      when 1
        specs.first
      else
        ask_for_spec_from(specs)
      end
    rescue RegexpError
      raise GemNotFound, gem_not_found_message(name, Bundler.definition.dependencies)
    end

    def self.ask_for_spec_from(specs)
      specs.each_with_index do |spec, index|
        Bundler.ui.info "#{index.succ} : #{spec.name}", true
      end
      Bundler.ui.info "0 : - exit -", true

      num = Bundler.ui.ask("> ").to_i
      num > 0 ? specs[num - 1] : nil
    end

    def self.gem_not_found_message(missing_gem_name, alternatives)
      require_relative "../similarity_detector"
      message = "Could not find gem '#{missing_gem_name}'."
      alternate_names = alternatives.map {|a| a.respond_to?(:name) ? a.name : a }
      suggestions = SimilarityDetector.new(alternate_names).similar_word_list(missing_gem_name)
      message += "\nDid you mean #{suggestions}?" if suggestions
      message
    end

    def self.ensure_all_gems_in_lockfile!(names, locked_gems = Bundler.locked_gems)
      return unless locked_gems

      locked_names = locked_gems.specs.map(&:name).uniq
      names.-(locked_names).each do |g|
        raise GemNotFound, gem_not_found_message(g, locked_names)
      end
    end

    def self.configure_gem_version_promoter(definition, options)
      patch_level = patch_level_options(options)
      patch_level << :patch if patch_level.empty? && Bundler.settings[:prefer_patch]
      raise InvalidOption, "Provide only one of the following options: #{patch_level.join(", ")}" unless patch_level.length <= 1

      definition.gem_version_promoter.tap do |gvp|
        gvp.level = patch_level.first || :major
        gvp.strict = options[:strict] || options["update-strict"] || options["filter-strict"]
      end
    end

    def self.patch_level_options(options)
      [:major, :minor, :patch].select {|v| options.keys.include?(v.to_s) }
    end

    def self.clean_after_install?
      clean = Bundler.settings[:clean]
      return clean unless clean.nil?
      clean ||= Bundler.feature_flag.auto_clean_without_path? && Bundler.settings[:path].nil?
      clean &&= !Bundler.use_system_gems?
      clean
    end
  end
end
PK;H[���7share/gems/gems/bundler-2.2.24/lib/bundler/cli/check.rbnu�[���# frozen_string_literal: true

module Bundler
  class CLI::Check
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      Bundler.settings.set_command_option_if_given :path, options[:path]

      definition = Bundler.definition
      definition.validate_runtime!

      begin
        definition.resolve_only_locally!
        not_installed = definition.missing_specs
      rescue GemNotFound, VersionConflict
        Bundler.ui.error "Bundler can't satisfy your Gemfile's dependencies."
        Bundler.ui.warn "Install missing gems with `bundle install`."
        exit 1
      end

      if not_installed.any?
        Bundler.ui.error "The following gems are missing"
        not_installed.each {|s| Bundler.ui.error " * #{s.name} (#{s.version})" }
        Bundler.ui.warn "Install missing gems with `bundle install`"
        exit 1
      elsif !Bundler.default_lockfile.file? && Bundler.frozen_bundle?
        Bundler.ui.error "This bundle has been frozen, but there is no #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)} present"
        exit 1
      else
        Bundler.load.lock(:preserve_unknown_sections => true) unless options[:"dry-run"]
        Bundler.ui.info "The Gemfile's dependencies are satisfied"
      end
    end
  end
end
PK;H[B$h�HH4share/gems/gems/bundler-2.2.24/lib/bundler/mirror.rbnu�[���# frozen_string_literal: true

require "socket"

module Bundler
  class Settings
    # Class used to build the mirror set and then find a mirror for a given URI
    #
    # @param prober [Prober object, nil] by default a TCPSocketProbe, this object
    #   will be used to probe the mirror address to validate that the mirror replies.
    class Mirrors
      def initialize(prober = nil)
        @all = Mirror.new
        @prober = prober || TCPSocketProbe.new
        @mirrors = {}
      end

      # Returns a mirror for the given uri.
      #
      # Depending on the uri having a valid mirror or not, it may be a
      #   mirror that points to the provided uri
      def for(uri)
        if @all.validate!(@prober).valid?
          @all
        else
          fetch_valid_mirror_for(Settings.normalize_uri(uri))
        end
      end

      def each
        @mirrors.each do |k, v|
          yield k, v.uri.to_s
        end
      end

      def parse(key, value)
        config = MirrorConfig.new(key, value)
        mirror = if config.all?
          @all
        else
          @mirrors[config.uri] ||= Mirror.new
        end
        config.update_mirror(mirror)
      end

      private

      def fetch_valid_mirror_for(uri)
        downcased = uri.to_s.downcase
        mirror = @mirrors[downcased] || @mirrors[Bundler::URI(downcased).host] || Mirror.new(uri)
        mirror.validate!(@prober)
        mirror = Mirror.new(uri) unless mirror.valid?
        mirror
      end
    end

    # A mirror
    #
    # Contains both the uri that should be used as a mirror and the
    #   fallback timeout which will be used for probing if the mirror
    #   replies on time or not.
    class Mirror
      DEFAULT_FALLBACK_TIMEOUT = 0.1

      attr_reader :uri, :fallback_timeout

      def initialize(uri = nil, fallback_timeout = 0)
        self.uri = uri
        self.fallback_timeout = fallback_timeout
        @valid = nil
      end

      def uri=(uri)
        @uri = if uri.nil?
          nil
        else
          Bundler::URI(uri.to_s)
        end
        @valid = nil
      end

      def fallback_timeout=(timeout)
        case timeout
        when true, "true"
          @fallback_timeout = DEFAULT_FALLBACK_TIMEOUT
        when false, "false"
          @fallback_timeout = 0
        else
          @fallback_timeout = timeout.to_i
        end
        @valid = nil
      end

      def ==(other)
        !other.nil? && uri == other.uri && fallback_timeout == other.fallback_timeout
      end

      def valid?
        return false if @uri.nil?
        return @valid unless @valid.nil?
        false
      end

      def validate!(probe = nil)
        @valid = false if uri.nil?
        if @valid.nil?
          @valid = fallback_timeout == 0 || (probe || TCPSocketProbe.new).replies?(self)
        end
        self
      end
    end

    # Class used to parse one configuration line
    #
    # Gets the configuration line and the value.
    #   This object provides a `update_mirror` method
    #   used to setup the given mirror value.
    class MirrorConfig
      attr_accessor :uri, :value

      def initialize(config_line, value)
        uri, fallback =
          config_line.match(%r{\Amirror\.(all|.+?)(\.fallback_timeout)?\/?\z}).captures
        @fallback = !fallback.nil?
        @all = false
        if uri == "all"
          @all = true
        else
          @uri = Bundler::URI(uri).absolute? ? Settings.normalize_uri(uri) : uri
        end
        @value = value
      end

      def all?
        @all
      end

      def update_mirror(mirror)
        if @fallback
          mirror.fallback_timeout = @value
        else
          mirror.uri = Settings.normalize_uri(@value)
        end
      end
    end

    # Class used for probing TCP availability for a given mirror.
    class TCPSocketProbe
      def replies?(mirror)
        MirrorSockets.new(mirror).any? do |socket, address, timeout|
          begin
            socket.connect_nonblock(address)
          rescue Errno::EINPROGRESS
            wait_for_writtable_socket(socket, address, timeout)
          rescue RuntimeError # Connection failed somehow, again
            false
          end
        end
      end

      private

      def wait_for_writtable_socket(socket, address, timeout)
        if IO.select(nil, [socket], nil, timeout)
          probe_writtable_socket(socket, address)
        else # TCP Handshake timed out, or there is something dropping packets
          false
        end
      end

      def probe_writtable_socket(socket, address)
        socket.connect_nonblock(address)
      rescue Errno::EISCONN
        true
      rescue StandardError # Connection failed
        false
      end
    end
  end

  # Class used to build the list of sockets that correspond to
  #   a given mirror.
  #
  # One mirror may correspond to many different addresses, both
  #   because of it having many dns entries or because
  #   the network interface is both ipv4 and ipv5
  class MirrorSockets
    def initialize(mirror)
      @timeout = mirror.fallback_timeout
      @addresses = Socket.getaddrinfo(mirror.uri.host, mirror.uri.port).map do |address|
        SocketAddress.new(address[0], address[3], address[1])
      end
    end

    def any?
      @addresses.any? do |address|
        socket = Socket.new(Socket.const_get(address.type), Socket::SOCK_STREAM, 0)
        socket.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1)
        value = yield socket, address.to_socket_address, @timeout
        socket.close unless socket.closed?
        value
      end
    end
  end

  # Socket address builder.
  #
  # Given a socket type, a host and a port,
  #   provides a method to build sockaddr string
  class SocketAddress
    attr_reader :type, :host, :port

    def initialize(type, host, port)
      @type = type
      @host = host
      @port = port
    end

    def to_socket_address
      Socket.pack_sockaddr_in(@port, @host)
    end
  end
end
PK;H[�'��:share/gems/gems/bundler-2.2.24/lib/bundler/feature_flag.rbnu�[���# frozen_string_literal: true

module Bundler
  class FeatureFlag
    def self.settings_flag(flag, &default)
      unless Bundler::Settings::BOOL_KEYS.include?(flag.to_s)
        raise "Cannot use `#{flag}` as a settings feature flag since it isn't a bool key"
      end

      settings_method("#{flag}?", flag, &default)
    end
    private_class_method :settings_flag

    def self.settings_option(key, &default)
      settings_method(key, key, &default)
    end
    private_class_method :settings_option

    def self.settings_method(name, key, &default)
      define_method(name) do
        value = Bundler.settings[key]
        value = instance_eval(&default) if value.nil?
        value
      end
    end
    private_class_method :settings_method

    (1..10).each {|v| define_method("bundler_#{v}_mode?") { major_version >= v } }

    settings_flag(:allow_offline_install) { bundler_3_mode? }
    settings_flag(:auto_clean_without_path) { bundler_3_mode? }
    settings_flag(:cache_all) { bundler_3_mode? }
    settings_flag(:default_install_uses_path) { bundler_3_mode? }
    settings_flag(:forget_cli_options) { bundler_3_mode? }
    settings_flag(:global_gem_cache) { bundler_3_mode? }
    settings_flag(:path_relative_to_cwd) { bundler_3_mode? }
    settings_flag(:plugins) { @bundler_version >= Gem::Version.new("1.14") }
    settings_flag(:print_only_version_number) { bundler_3_mode? }
    settings_flag(:setup_makes_kernel_gem_public) { !bundler_3_mode? }
    settings_flag(:suppress_install_using_messages) { bundler_3_mode? }
    settings_flag(:update_requires_all_flag) { bundler_4_mode? }
    settings_flag(:use_gem_version_promoter_for_major_updates) { bundler_3_mode? }

    settings_option(:default_cli_command) { bundler_3_mode? ? :cli_help : :install }

    def initialize(bundler_version)
      @bundler_version = Gem::Version.create(bundler_version)
    end

    def major_version
      @bundler_version.segments.first
    end
    private :major_version
  end
end
PK;H[��,dd;share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/index.rbnu�[���# frozen_string_literal: true

require_relative "base"

module Bundler
  class Fetcher
    class Index < Base
      def specs(_gem_names)
        Bundler.rubygems.fetch_all_remote_specs(remote)
      rescue Gem::RemoteFetcher::FetchError => e
        case e.message
        when /certificate verify failed/
          raise CertificateFailureError.new(display_uri)
        when /401/
          raise BadAuthenticationError, remote_uri if remote_uri.userinfo
          raise AuthenticationRequiredError, remote_uri
        when /403/
          raise BadAuthenticationError, remote_uri if remote_uri.userinfo
          raise AuthenticationRequiredError, remote_uri
        else
          raise HTTPError, "Could not fetch specs from #{display_uri} due to underlying error <#{e.message}>"
        end
      end

      def fetch_spec(spec)
        spec -= [nil, "ruby", ""]
        spec_file_name = "#{spec.join "-"}.gemspec"

        uri = Bundler::URI.parse("#{remote_uri}#{Gem::MARSHAL_SPEC_DIR}#{spec_file_name}.rz")
        if uri.scheme == "file"
          path = Bundler.rubygems.correct_for_windows_path(uri.path)
          Bundler.load_marshal Bundler.rubygems.inflate(Gem.read_binary(path))
        elsif cached_spec_path = gemspec_cached_path(spec_file_name)
          Bundler.load_gemspec(cached_spec_path)
        else
          Bundler.load_marshal Bundler.rubygems.inflate(downloader.fetch(uri).body)
        end
      rescue MarshalError
        raise HTTPError, "Gemspec #{spec} contained invalid data.\n" \
          "Your network or your gem server is probably having issues right now."
      end

      private

      # cached gem specification path, if one exists
      def gemspec_cached_path(spec_file_name)
        paths = Bundler.rubygems.spec_cache_dirs.map {|dir| File.join(dir, spec_file_name) }
        paths.find {|path| File.file? path }
      end
    end
  end
end
PK;H[�Vw��Cshare/gems/gems/bundler-2.2.24/lib/bundler/fetcher/compact_index.rbnu�[���# frozen_string_literal: true

require_relative "base"
require_relative "../worker"

module Bundler
  autoload :CompactIndexClient, File.expand_path("../compact_index_client", __dir__)

  class Fetcher
    class CompactIndex < Base
      def self.compact_index_request(method_name)
        method = instance_method(method_name)
        undef_method(method_name)
        define_method(method_name) do |*args, &blk|
          begin
            method.bind(self).call(*args, &blk)
          rescue NetworkDownError, CompactIndexClient::Updater::MisMatchedChecksumError => e
            raise HTTPError, e.message
          rescue AuthenticationRequiredError
            # Fail since we got a 401 from the server.
            raise
          rescue HTTPError => e
            Bundler.ui.trace(e)
            nil
          end
        end
      end

      def specs(gem_names)
        specs_for_names(gem_names)
      end
      compact_index_request :specs

      def specs_for_names(gem_names)
        gem_info = []
        complete_gems = []
        remaining_gems = gem_names.dup

        until remaining_gems.empty?
          log_specs "Looking up gems #{remaining_gems.inspect}"

          deps = begin
                   parallel_compact_index_client.dependencies(remaining_gems)
                 rescue TooManyRequestsError
                   @bundle_worker.stop if @bundle_worker
                   @bundle_worker = nil # reset it.  Not sure if necessary
                   serial_compact_index_client.dependencies(remaining_gems)
                 end
          next_gems = deps.map {|d| d[3].map(&:first).flatten(1) }.flatten(1).uniq
          deps.each {|dep| gem_info << dep }
          complete_gems.concat(deps.map(&:first)).uniq!
          remaining_gems = next_gems - complete_gems
        end
        @bundle_worker.stop if @bundle_worker
        @bundle_worker = nil # reset it.  Not sure if necessary

        gem_info
      end

      def fetch_spec(spec)
        spec -= [nil, "ruby", ""]
        contents = compact_index_client.spec(*spec)
        return nil if contents.nil?
        contents.unshift(spec.first)
        contents[3].map! {|d| Gem::Dependency.new(*d) }
        EndpointSpecification.new(*contents)
      end
      compact_index_request :fetch_spec

      def available?
        return nil unless SharedHelpers.md5_available?
        user_home = Bundler.user_home
        return nil unless user_home.directory? && user_home.writable?
        # Read info file checksums out of /versions, so we can know if gems are up to date
        fetch_uri.scheme != "file" && compact_index_client.update_and_parse_checksums!
      rescue CompactIndexClient::Updater::MisMatchedChecksumError => e
        Bundler.ui.debug(e.message)
        nil
      end
      compact_index_request :available?

      def api_fetcher?
        true
      end

      private

      def compact_index_client
        @compact_index_client ||=
          SharedHelpers.filesystem_access(cache_path) do
            CompactIndexClient.new(cache_path, client_fetcher)
          end
      end

      def parallel_compact_index_client
        compact_index_client.execution_mode = lambda do |inputs, &blk|
          func = lambda {|object, _index| blk.call(object) }
          worker = bundle_worker(func)
          inputs.each {|input| worker.enq(input) }
          inputs.map { worker.deq }
        end

        compact_index_client
      end

      def serial_compact_index_client
        compact_index_client.sequential_execution_mode!
        compact_index_client
      end

      def bundle_worker(func = nil)
        @bundle_worker ||= begin
          worker_name = "Compact Index (#{display_uri.host})"
          Bundler::Worker.new(Bundler.settings.processor_count, worker_name, func)
        end
        @bundle_worker.tap do |worker|
          worker.instance_variable_set(:@func, func) if func
        end
      end

      def cache_path
        Bundler.user_cache.join("compact_index", remote.cache_slug)
      end

      def client_fetcher
        ClientFetcher.new(self, Bundler.ui)
      end

      ClientFetcher = Struct.new(:fetcher, :ui) do
        def call(path, headers)
          fetcher.downloader.fetch(fetcher.fetch_uri + path, headers)
        rescue NetworkDownError => e
          raise unless Bundler.feature_flag.allow_offline_install? && headers["If-None-Match"]
          ui.warn "Using the cached data for the new index because of a network error: #{e}"
          Net::HTTPNotModified.new(nil, nil, nil)
        end
      end
    end
  end
end
PK;H[�����:share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/base.rbnu�[���# frozen_string_literal: true

module Bundler
  class Fetcher
    class Base
      attr_reader :downloader
      attr_reader :display_uri
      attr_reader :remote

      def initialize(downloader, remote, display_uri)
        raise "Abstract class" if self.class == Base
        @downloader = downloader
        @remote = remote
        @display_uri = display_uri
      end

      def remote_uri
        @remote.uri
      end

      def fetch_uri
        @fetch_uri ||= begin
          if remote_uri.host == "rubygems.org"
            uri = remote_uri.dup
            uri.host = "index.rubygems.org"
            uri
          else
            remote_uri
          end
        end
      end

      def available?
        true
      end

      def api_fetcher?
        false
      end

      private

      def log_specs(debug_msg)
        if Bundler.ui.debug?
          Bundler.ui.debug debug_msg
        else
          Bundler.ui.info ".", false
        end
      end
    end
  end
end
PK;H[�]�YY@share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/downloader.rbnu�[���# frozen_string_literal: true

module Bundler
  class Fetcher
    class Downloader
      attr_reader :connection
      attr_reader :redirect_limit

      def initialize(connection, redirect_limit)
        @connection = connection
        @redirect_limit = redirect_limit
      end

      def fetch(uri, headers = {}, counter = 0)
        raise HTTPError, "Too many redirects" if counter >= redirect_limit

        filtered_uri = URICredentialsFilter.credential_filtered_uri(uri)

        response = request(uri, headers)
        Bundler.ui.debug("HTTP #{response.code} #{response.message} #{filtered_uri}")

        case response
        when Net::HTTPSuccess, Net::HTTPNotModified
          response
        when Net::HTTPRedirection
          new_uri = Bundler::URI.parse(response["location"])
          if new_uri.host == uri.host
            new_uri.user = uri.user
            new_uri.password = uri.password
          end
          fetch(new_uri, headers, counter + 1)
        when Net::HTTPRequestedRangeNotSatisfiable
          new_headers = headers.dup
          new_headers.delete("Range")
          new_headers["Accept-Encoding"] = "gzip"
          fetch(uri, new_headers)
        when Net::HTTPRequestEntityTooLarge
          raise FallbackError, response.body
        when Net::HTTPTooManyRequests
          raise TooManyRequestsError, response.body
        when Net::HTTPUnauthorized
          raise BadAuthenticationError, uri.host if uri.userinfo
          raise AuthenticationRequiredError, uri.host
        when Net::HTTPNotFound
          raise FallbackError, "Net::HTTPNotFound: #{filtered_uri}"
        else
          raise HTTPError, "#{response.class}#{": #{response.body}" unless response.body.empty?}"
        end
      end

      def request(uri, headers)
        validate_uri_scheme!(uri)

        filtered_uri = URICredentialsFilter.credential_filtered_uri(uri)

        Bundler.ui.debug "HTTP GET #{filtered_uri}"
        req = Net::HTTP::Get.new uri.request_uri, headers
        if uri.user
          user = CGI.unescape(uri.user)
          password = uri.password ? CGI.unescape(uri.password) : nil
          req.basic_auth(user, password)
        end
        connection.request(uri, req)
      rescue NoMethodError => e
        raise unless ["undefined method", "use_ssl="].all? {|snippet| e.message.include? snippet }
        raise LoadError.new("cannot load such file -- openssl")
      rescue OpenSSL::SSL::SSLError
        raise CertificateFailureError.new(uri)
      rescue *HTTP_ERRORS => e
        Bundler.ui.trace e
        if e.is_a?(SocketError) || e.message =~ /host down:/
          raise NetworkDownError, "Could not reach host #{uri.host}. Check your network " \
            "connection and try again."
        else
          raise HTTPError, "Network error while fetching #{filtered_uri}" \
            " (#{e})"
        end
      end

      private

      def validate_uri_scheme!(uri)
        return if uri.scheme =~ /\Ahttps?\z/
        raise InvalidOption,
          "The request uri `#{uri}` has an invalid scheme (`#{uri.scheme}`). " \
          "Did you mean `http` or `https`?"
      end
    end
  end
end
PK;H[L�;8�
�
@share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/dependency.rbnu�[���# frozen_string_literal: true

require_relative "base"
require "cgi"

module Bundler
  class Fetcher
    class Dependency < Base
      def available?
        @available ||= fetch_uri.scheme != "file" && downloader.fetch(dependency_api_uri)
      rescue NetworkDownError => e
        raise HTTPError, e.message
      rescue AuthenticationRequiredError
        # Fail since we got a 401 from the server.
        raise
      rescue HTTPError
        false
      end

      def api_fetcher?
        true
      end

      def specs(gem_names, full_dependency_list = [], last_spec_list = [])
        query_list = gem_names.uniq - full_dependency_list

        log_specs "Query List: #{query_list.inspect}"

        return last_spec_list if query_list.empty?

        spec_list, deps_list = Bundler::Retry.new("dependency api", FAIL_ERRORS).attempts do
          dependency_specs(query_list)
        end

        returned_gems = spec_list.map(&:first).uniq
        specs(deps_list, full_dependency_list + returned_gems, spec_list + last_spec_list)
      rescue MarshalError
        Bundler.ui.info "" unless Bundler.ui.debug? # new line now that the dots are over
        Bundler.ui.debug "could not fetch from the dependency API, trying the full index"
        nil
      rescue HTTPError, GemspecError
        Bundler.ui.info "" unless Bundler.ui.debug? # new line now that the dots are over
        Bundler.ui.debug "could not fetch from the dependency API\nit's suggested to retry using the full index via `bundle install --full-index`"
        nil
      end

      def dependency_specs(gem_names)
        Bundler.ui.debug "Query Gemcutter Dependency Endpoint API: #{gem_names.join(",")}"

        gem_list = unmarshalled_dep_gems(gem_names)
        get_formatted_specs_and_deps(gem_list)
      end

      def unmarshalled_dep_gems(gem_names)
        gem_list = []
        gem_names.each_slice(Source::Rubygems::API_REQUEST_SIZE) do |names|
          marshalled_deps = downloader.fetch(dependency_api_uri(names)).body
          gem_list.concat(Bundler.load_marshal(marshalled_deps))
        end
        gem_list
      end

      def get_formatted_specs_and_deps(gem_list)
        deps_list = []
        spec_list = []

        gem_list.each do |s|
          deps_list.concat(s[:dependencies].map(&:first))
          deps = s[:dependencies].map {|n, d| [n, d.split(", ")] }
          spec_list.push([s[:name], s[:number], s[:platform], deps])
        end
        [spec_list, deps_list]
      end

      def dependency_api_uri(gem_names = [])
        uri = fetch_uri + "api/v1/dependencies"
        uri.query = "gems=#{CGI.escape(gem_names.sort.join(","))}" if gem_names.any?
        uri
      end
    end
  end
end
PK;H[\�����2share/gems/gems/bundler-2.2.24/lib/bundler/vlad.rbnu�[���# frozen_string_literal: true

require_relative "shared_helpers"
Bundler::SharedHelpers.major_deprecation 2,
  "The Bundler task for Vlad"

# Vlad task for Bundler.
#
# Add "require 'bundler/vlad'" in your Vlad deploy.rb, and
# include the vlad:bundle:install task in your vlad:deploy task.
require_relative "deployment"

include Rake::DSL if defined? Rake::DSL

namespace :vlad do
  Bundler::Deployment.define_task(Rake::RemoteTask, :remote_task, :roles => :app)
end
PK;H[�0���:share/gems/gems/bundler-2.2.24/lib/bundler/rubygems_ext.rbnu�[���# frozen_string_literal: true

require "pathname"

require "rubygems/specification"

# Possible use in Gem::Specification#source below and require
# shouldn't be deferred.
require "rubygems/source"

require_relative "match_platform"

module Gem
  class Specification
    attr_accessor :remote, :location, :relative_loaded_from

    remove_method :source
    attr_writer :source
    def source
      (defined?(@source) && @source) || Gem::Source::Installed.new
    end

    alias_method :rg_full_gem_path, :full_gem_path
    alias_method :rg_loaded_from,   :loaded_from

    def full_gem_path
      # this cannot check source.is_a?(Bundler::Plugin::API::Source)
      # because that _could_ trip the autoload, and if there are unresolved
      # gems at that time, this method could be called inside another require,
      # thus raising with that constant being undefined. Better to check a method
      if source.respond_to?(:path) || (source.respond_to?(:bundler_plugin_api_source?) && source.bundler_plugin_api_source?)
        Pathname.new(loaded_from).dirname.expand_path(source.root).to_s.tap{|x| x.untaint if RUBY_VERSION < "2.7" }
      else
        rg_full_gem_path
      end
    end

    def loaded_from
      if relative_loaded_from
        source.path.join(relative_loaded_from).to_s
      else
        rg_loaded_from
      end
    end

    def load_paths
      full_require_paths
    end

    alias_method :rg_extension_dir, :extension_dir
    def extension_dir
      @bundler_extension_dir ||= if source.respond_to?(:extension_dir_name)
        unique_extension_dir = [source.extension_dir_name, File.basename(full_gem_path)].uniq.join("-")
        File.expand_path(File.join(extensions_dir, unique_extension_dir))
      else
        rg_extension_dir
      end
    end

    remove_method :gem_dir if instance_methods(false).include?(:gem_dir)
    def gem_dir
      full_gem_path
    end

    def groups
      @groups ||= []
    end

    def git_version
      return unless loaded_from && source.is_a?(Bundler::Source::Git)
      " #{source.revision[0..6]}"
    end

    def to_gemfile(path = nil)
      gemfile = String.new("source 'https://rubygems.org'\n")
      gemfile << dependencies_to_gemfile(nondevelopment_dependencies)
      unless development_dependencies.empty?
        gemfile << "\n"
        gemfile << dependencies_to_gemfile(development_dependencies, :development)
      end
      gemfile
    end

    def nondevelopment_dependencies
      dependencies - development_dependencies
    end

    private

    def dependencies_to_gemfile(dependencies, group = nil)
      gemfile = String.new
      if dependencies.any?
        gemfile << "group :#{group} do\n" if group
        dependencies.each do |dependency|
          gemfile << "  " if group
          gemfile << %(gem "#{dependency.name}")
          req = dependency.requirements_list.first
          gemfile << %(, "#{req}") if req
          gemfile << "\n"
        end
        gemfile << "end\n" if group
      end
      gemfile
    end
  end

  class Dependency
    attr_accessor :source, :groups

    alias_method :eql?, :==

    def encode_with(coder)
      to_yaml_properties.each do |ivar|
        coder[ivar.to_s.sub(/^@/, "")] = instance_variable_get(ivar)
      end
    end

    def to_yaml_properties
      instance_variables.reject {|p| ["@source", "@groups"].include?(p.to_s) }
    end

    def to_lock
      out = String.new("  #{name}")
      unless requirement.none?
        reqs = requirement.requirements.map {|o, v| "#{o} #{v}" }.sort.reverse
        out << " (#{reqs.join(", ")})"
      end
      out
    end
  end

  # comparison is done order independently since rubygems 3.2.0.rc.2
  unless Gem::Requirement.new("> 1", "< 2") == Gem::Requirement.new("< 2", "> 1")
    class Requirement
      module OrderIndependentComparison
        def ==(other)
          return unless Gem::Requirement === other

          if _requirements_sorted? && other._requirements_sorted?
            super
          else
            _with_sorted_requirements == other._with_sorted_requirements
          end
        end

        protected

        def _requirements_sorted?
          return @_are_requirements_sorted if defined?(@_are_requirements_sorted)
          strings = as_list
          @_are_requirements_sorted = strings == strings.sort
        end

        def _with_sorted_requirements
          @_with_sorted_requirements ||= _requirements_sorted? ? self : self.class.new(as_list.sort)
        end
      end

      prepend OrderIndependentComparison
    end
  end

  if Gem::Requirement.new("~> 2.0").hash == Gem::Requirement.new("~> 2.0.0").hash
    class Requirement
      module CorrectHashForLambdaOperator
        def hash
          if requirements.any? {|r| r.first == "~>" }
            requirements.map {|r| r.first == "~>" ? [r[0], r[1].to_s] : r }.sort.hash
          else
            super
          end
        end
      end

      prepend CorrectHashForLambdaOperator
    end
  end

  require "rubygems/platform"

  class Platform
    JAVA  = Gem::Platform.new("java") unless defined?(JAVA)
    MSWIN = Gem::Platform.new("mswin32") unless defined?(MSWIN)
    MSWIN64 = Gem::Platform.new("mswin64") unless defined?(MSWIN64)
    MINGW = Gem::Platform.new("x86-mingw32") unless defined?(MINGW)
    X64_MINGW = Gem::Platform.new("x64-mingw32") unless defined?(X64_MINGW)
  end

  Platform.singleton_class.module_eval do
    unless Platform.singleton_methods.include?(:match_spec?)
      def match_spec?(spec)
        match_gem?(spec.platform, spec.name)
      end

      def match_gem?(platform, gem_name)
        match_platforms?(platform, Gem.platforms)
      end

      private

      def match_platforms?(platform, platforms)
        platforms.any? do |local_platform|
          platform.nil? ||
            local_platform == platform ||
            (local_platform != Gem::Platform::RUBY && local_platform =~ platform)
        end
      end
    end
  end

  require "rubygems/util"

  Util.singleton_class.module_eval do
    if Util.singleton_methods.include?(:glob_files_in_dir) # since 3.0.0.beta.2
      remove_method :glob_files_in_dir
    end

    def glob_files_in_dir(glob, base_path)
      if RUBY_VERSION >= "2.5"
        Dir.glob(glob, :base => base_path).map! {|f| File.expand_path(f, base_path) }
      else
        Dir.glob(File.join(base_path.to_s.gsub(/[\[\]]/, '\\\\\\&'), glob)).map! {|f| File.expand_path(f) }
      end
    end
  end
end

module Gem
  class Specification
    include ::Bundler::MatchPlatform
  end
end
PK;H[e��o}O}O1share/gems/gems/bundler-2.2.24/lib/bundler/dsl.rbnu�[���# frozen_string_literal: true

require_relative "dependency"
require_relative "ruby_dsl"

module Bundler
  class Dsl
    include RubyDsl

    def self.evaluate(gemfile, lockfile, unlock)
      builder = new
      builder.eval_gemfile(gemfile)
      builder.to_definition(lockfile, unlock)
    end

    VALID_PLATFORMS = Bundler::Dependency::PLATFORM_MAP.keys.freeze

    VALID_KEYS = %w[group groups git path glob name branch ref tag require submodules
                    platform platforms type source install_if gemfile].freeze

    attr_reader :gemspecs
    attr_accessor :dependencies

    def initialize
      @source               = nil
      @sources              = SourceList.new
      @git_sources          = {}
      @dependencies         = []
      @groups               = []
      @install_conditionals = []
      @optional_groups      = []
      @platforms            = []
      @env                  = nil
      @ruby_version         = nil
      @gemspecs             = []
      @gemfile              = nil
      @gemfiles             = []
      add_git_sources
    end

    def eval_gemfile(gemfile, contents = nil)
      expanded_gemfile_path = Pathname.new(gemfile).expand_path(@gemfile && @gemfile.parent)
      original_gemfile = @gemfile
      @gemfile = expanded_gemfile_path
      @gemfiles << expanded_gemfile_path
      contents ||= Bundler.read_file(@gemfile.to_s)
      instance_eval(contents.dup.tap{|x| x.untaint if RUBY_VERSION < "2.7" }, gemfile.to_s, 1)
    rescue Exception => e # rubocop:disable Lint/RescueException
      message = "There was an error " \
        "#{e.is_a?(GemfileEvalError) ? "evaluating" : "parsing"} " \
        "`#{File.basename gemfile.to_s}`: #{e.message}"

      raise DSLError.new(message, gemfile, e.backtrace, contents)
    ensure
      @gemfile = original_gemfile
    end

    def gemspec(opts = nil)
      opts ||= {}
      path              = opts[:path] || "."
      glob              = opts[:glob]
      name              = opts[:name]
      development_group = opts[:development_group] || :development
      expanded_path     = gemfile_root.join(path)

      gemspecs = Gem::Util.glob_files_in_dir("{,*}.gemspec", expanded_path).map {|g| Bundler.load_gemspec(g) }.compact
      gemspecs.reject! {|s| s.name != name } if name
      Index.sort_specs(gemspecs)
      specs_by_name_and_version = gemspecs.group_by {|s| [s.name, s.version] }

      case specs_by_name_and_version.size
      when 1
        specs = specs_by_name_and_version.values.first
        spec = specs.find {|s| s.match_platform(Bundler.local_platform) } || specs.first

        @gemspecs << spec

        gem spec.name, :name => spec.name, :path => path, :glob => glob

        group(development_group) do
          spec.development_dependencies.each do |dep|
            gem dep.name, *(dep.requirement.as_list + [:type => :development])
          end
        end
      when 0
        raise InvalidOption, "There are no gemspecs at #{expanded_path}"
      else
        raise InvalidOption, "There are multiple gemspecs at #{expanded_path}. " \
          "Please use the :name option to specify which one should be used"
      end
    end

    def gem(name, *args)
      options = args.last.is_a?(Hash) ? args.pop.dup : {}
      options["gemfile"] = @gemfile
      version = args || [">= 0"]

      normalize_options(name, version, options)

      dep = Dependency.new(name, version, options)

      # if there's already a dependency with this name we try to prefer one
      if current = @dependencies.find {|d| d.name == dep.name }
        deleted_dep = @dependencies.delete(current) if current.type == :development

        unless deleted_dep
          if current.requirement != dep.requirement
            return if dep.type == :development

            update_prompt = ""

            if File.basename(@gemfile) == Injector::INJECTED_GEMS
              if dep.requirements_list.include?(">= 0") && !current.requirements_list.include?(">= 0")
                update_prompt = ". Gem already added"
              else
                update_prompt = ". If you want to update the gem version, run `bundle update #{current.name}`"

                update_prompt += ". You may also need to change the version requirement specified in the Gemfile if it's too restrictive." unless current.requirements_list.include?(">= 0")
              end
            end

            raise GemfileError, "You cannot specify the same gem twice with different version requirements.\n" \
                            "You specified: #{current.name} (#{current.requirement}) and #{dep.name} (#{dep.requirement})" \
                             "#{update_prompt}"
          else
            Bundler.ui.warn "Your Gemfile lists the gem #{current.name} (#{current.requirement}) more than once.\n" \
                            "You should probably keep only one of them.\n" \
                            "Remove any duplicate entries and specify the gem only once.\n" \
                            "While it's not a problem now, it could cause errors if you change the version of one of them later."
          end

          if current.source != dep.source
            return if dep.type == :development
            raise GemfileError, "You cannot specify the same gem twice coming from different sources.\n" \
                            "You specified that #{dep.name} (#{dep.requirement}) should come from " \
                            "#{current.source || "an unspecified source"} and #{dep.source}\n"
          end
        end
      end

      @dependencies << dep
    end

    def source(source, *args, &blk)
      options = args.last.is_a?(Hash) ? args.pop.dup : {}
      options = normalize_hash(options)
      source = normalize_source(source)

      if options.key?("type")
        options["type"] = options["type"].to_s
        unless Plugin.source?(options["type"])
          raise InvalidOption, "No plugin sources available for #{options["type"]}"
        end

        unless block_given?
          raise InvalidOption, "You need to pass a block to #source with :type option"
        end

        source_opts = options.merge("uri" => source)
        with_source(@sources.add_plugin_source(options["type"], source_opts), &blk)
      elsif block_given?
        with_source(@sources.add_rubygems_source("remotes" => source), &blk)
      else
        @sources.add_global_rubygems_remote(source)
      end
    end

    def git_source(name, &block)
      unless block_given?
        raise InvalidOption, "You need to pass a block to #git_source"
      end

      if valid_keys.include?(name.to_s)
        raise InvalidOption, "You cannot use #{name} as a git source. It " \
          "is a reserved key. Reserved keys are: #{valid_keys.join(", ")}"
      end

      @git_sources[name.to_s] = block
    end

    def path(path, options = {}, &blk)
      source_options = normalize_hash(options).merge(
        "path" => Pathname.new(path),
        "root_path" => gemfile_root,
        "gemspec" => gemspecs.find {|g| g.name == options["name"] }
      )

      source_options["global"] = true unless block_given?

      source = @sources.add_path_source(source_options)
      with_source(source, &blk)
    end

    def git(uri, options = {}, &blk)
      unless block_given?
        msg = "You can no longer specify a git source by itself. Instead, \n" \
              "either use the :git option on a gem, or specify the gems that \n" \
              "bundler should find in the git source by passing a block to \n" \
              "the git method, like: \n\n" \
              "  git 'git://github.com/rails/rails.git' do\n" \
              "    gem 'rails'\n" \
              "  end"
        raise DeprecatedError, msg
      end

      with_source(@sources.add_git_source(normalize_hash(options).merge("uri" => uri)), &blk)
    end

    def github(repo, options = {})
      raise ArgumentError, "GitHub sources require a block" unless block_given?
      github_uri  = @git_sources["github"].call(repo)
      git_options = normalize_hash(options).merge("uri" => github_uri)
      git_source  = @sources.add_git_source(git_options)
      with_source(git_source) { yield }
    end

    def to_definition(lockfile, unlock)
      check_primary_source_safety
      Definition.new(lockfile, @dependencies, @sources, unlock, @ruby_version, @optional_groups, @gemfiles)
    end

    def group(*args, &blk)
      options = args.last.is_a?(Hash) ? args.pop.dup : {}
      normalize_group_options(options, args)

      @groups.concat args

      if options["optional"]
        optional_groups = args - @optional_groups
        @optional_groups.concat optional_groups
      end

      yield
    ensure
      args.each { @groups.pop }
    end

    def install_if(*args)
      @install_conditionals.concat args
      yield
    ensure
      args.each { @install_conditionals.pop }
    end

    def platforms(*platforms)
      @platforms.concat platforms
      yield
    ensure
      platforms.each { @platforms.pop }
    end
    alias_method :platform, :platforms

    def env(name)
      old = @env
      @env = name
      yield
    ensure
      @env = old
    end

    def plugin(*args)
      # Pass on
    end

    def method_missing(name, *args)
      raise GemfileError, "Undefined local variable or method `#{name}' for Gemfile"
    end

    def check_primary_source_safety
      check_path_source_safety
      check_rubygems_source_safety
    end

    private

    def add_git_sources
      git_source(:github) do |repo_name|
        warn_deprecated_git_source(:github, <<-'RUBY'.strip, 'Change any "reponame" :github sources to "username/reponame".')
"https://github.com/#{repo_name}.git"
        RUBY
        repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
        "https://github.com/#{repo_name}.git"
      end

      git_source(:gist) do |repo_name|
        warn_deprecated_git_source(:gist, '"https://gist.github.com/#{repo_name}.git"')

        "https://gist.github.com/#{repo_name}.git"
      end

      git_source(:bitbucket) do |repo_name|
        warn_deprecated_git_source(:bitbucket, <<-'RUBY'.strip)
user_name, repo_name = repo_name.split("/")
repo_name ||= user_name
"https://#{user_name}@bitbucket.org/#{user_name}/#{repo_name}.git"
        RUBY

        user_name, repo_name = repo_name.split("/")
        repo_name ||= user_name
        "https://#{user_name}@bitbucket.org/#{user_name}/#{repo_name}.git"
      end
    end

    def with_source(source)
      old_source = @source
      if block_given?
        @source = source
        yield
      end
      source
    ensure
      @source = old_source
    end

    def normalize_hash(opts)
      opts.keys.each do |k|
        opts[k.to_s] = opts.delete(k) unless k.is_a?(String)
      end
      opts
    end

    def valid_keys
      @valid_keys ||= VALID_KEYS
    end

    def normalize_options(name, version, opts)
      if name.is_a?(Symbol)
        raise GemfileError, %(You need to specify gem names as Strings. Use 'gem "#{name}"' instead)
      end
      if name =~ /\s/
        raise GemfileError, %('#{name}' is not a valid gem name because it contains whitespace)
      end
      raise GemfileError, %(an empty gem name is not valid) if name.empty?

      normalize_hash(opts)

      git_names = @git_sources.keys.map(&:to_s)
      validate_keys("gem '#{name}'", opts, valid_keys + git_names)

      groups = @groups.dup
      opts["group"] = opts.delete("groups") || opts["group"]
      groups.concat Array(opts.delete("group"))
      groups = [:default] if groups.empty?

      install_if = @install_conditionals.dup
      install_if.concat Array(opts.delete("install_if"))
      install_if = install_if.reduce(true) do |memo, val|
        memo && (val.respond_to?(:call) ? val.call : val)
      end

      platforms = @platforms.dup
      opts["platforms"] = opts["platform"] || opts["platforms"]
      platforms.concat Array(opts.delete("platforms"))
      platforms.map!(&:to_sym)
      platforms.each do |p|
        next if VALID_PLATFORMS.include?(p)
        raise GemfileError, "`#{p}` is not a valid platform. The available options are: #{VALID_PLATFORMS.inspect}"
      end

      # Save sources passed in a key
      if opts.key?("source")
        source = normalize_source(opts["source"])
        opts["source"] = @sources.add_rubygems_source("remotes" => source)
      end

      git_name = (git_names & opts.keys).last
      if @git_sources[git_name]
        opts["git"] = @git_sources[git_name].call(opts[git_name])
      end

      %w[git path].each do |type|
        next unless param = opts[type]
        if version.first && version.first =~ /^\s*=?\s*(\d[^\s]*)\s*$/
          options = opts.merge("name" => name, "version" => $1)
        else
          options = opts.dup
        end
        source = send(type, param, options) {}
        opts["source"] = source
      end

      opts["source"]         ||= @source
      opts["env"]            ||= @env
      opts["platforms"]      = platforms.dup
      opts["group"]          = groups
      opts["should_include"] = install_if
    end

    def normalize_group_options(opts, groups)
      normalize_hash(opts)

      groups = groups.map {|group| ":#{group}" }.join(", ")
      validate_keys("group #{groups}", opts, %w[optional])

      opts["optional"] ||= false
    end

    def validate_keys(command, opts, valid_keys)
      invalid_keys = opts.keys - valid_keys

      git_source = opts.keys & @git_sources.keys.map(&:to_s)
      if opts["branch"] && !(opts["git"] || opts["github"] || git_source.any?)
        raise GemfileError, %(The `branch` option for `#{command}` is not allowed. Only gems with a git source can specify a branch)
      end

      return true unless invalid_keys.any?

      message = String.new
      message << "You passed #{invalid_keys.map {|k| ":" + k }.join(", ")} "
      message << if invalid_keys.size > 1
        "as options for #{command}, but they are invalid."
      else
        "as an option for #{command}, but it is invalid."
      end

      message << " Valid options are: #{valid_keys.join(", ")}."
      message << " You may be able to resolve this by upgrading Bundler to the newest version."
      raise InvalidOption, message
    end

    def normalize_source(source)
      case source
      when :gemcutter, :rubygems, :rubyforge
        Bundler::SharedHelpers.major_deprecation 2, "The source :#{source} is deprecated because HTTP " \
          "requests are insecure.\nPlease change your source to 'https://" \
          "rubygems.org' if possible, or 'http://rubygems.org' if not."
        "http://rubygems.org"
      when String
        source
      else
        raise GemfileError, "Unknown source '#{source}'"
      end
    end

    def check_path_source_safety
      return if @sources.global_path_source.nil?

      msg = "You can no longer specify a path source by itself. Instead, \n" \
              "either use the :path option on a gem, or specify the gems that \n" \
              "bundler should find in the path source by passing a block to \n" \
              "the path method, like: \n\n" \
              "    path 'dir/containing/rails' do\n" \
              "      gem 'rails'\n" \
              "    end\n\n"

      SharedHelpers.major_deprecation(2, msg.strip)
    end

    def check_rubygems_source_safety
      return unless @sources.aggregate_global_source?

      if Bundler.feature_flag.bundler_3_mode?
        msg = "This Gemfile contains multiple primary sources. " \
          "Each source after the first must include a block to indicate which gems " \
          "should come from that source"
        raise GemfileEvalError, msg
      else
        Bundler::SharedHelpers.major_deprecation 2, "Your Gemfile contains multiple primary sources. " \
          "Using `source` more than once without a block is a security risk, and " \
          "may result in installing unexpected gems. To resolve this warning, use " \
          "a block to indicate which gems should come from the secondary source."
      end
    end

    def warn_deprecated_git_source(name, replacement, additional_message = nil)
      additional_message &&= " #{additional_message}"
      replacement = if replacement.count("\n").zero?
        "{|repo_name| #{replacement} }"
      else
        "do |repo_name|\n#{replacement.to_s.gsub(/^/, "      ")}\n    end"
      end

      Bundler::SharedHelpers.major_deprecation 3, <<-EOS
The :#{name} git source is deprecated, and will be removed in the future.#{additional_message} Add this code to the top of your Gemfile to ensure it continues to work:

    git_source(:#{name}) #{replacement}

      EOS
    end

    class DSLError < GemfileError
      # @return [String] the description that should be presented to the user.
      #
      attr_reader :description

      # @return [String] the path of the dsl file that raised the exception.
      #
      attr_reader :dsl_path

      # @return [Exception] the backtrace of the exception raised by the
      #         evaluation of the dsl file.
      #
      attr_reader :backtrace

      # @param [Exception] backtrace @see backtrace
      # @param [String]    dsl_path  @see dsl_path
      #
      def initialize(description, dsl_path, backtrace, contents = nil)
        @status_code = $!.respond_to?(:status_code) && $!.status_code

        @description = description
        @dsl_path    = dsl_path
        @backtrace   = backtrace
        @contents    = contents
      end

      def status_code
        @status_code || super
      end

      # @return [String] the contents of the DSL that cause the exception to
      #         be raised.
      #
      def contents
        @contents ||= begin
          dsl_path && File.exist?(dsl_path) && File.read(dsl_path)
        end
      end

      # The message of the exception reports the content of podspec for the
      # line that generated the original exception.
      #
      # @example Output
      #
      #   Invalid podspec at `RestKit.podspec` - undefined method
      #   `exclude_header_search_paths=' for #<Pod::Specification for
      #   `RestKit/Network (0.9.3)`>
      #
      #       from spec-repos/master/RestKit/0.9.3/RestKit.podspec:36
      #       -------------------------------------------
      #           # because it would break: #import <CoreData/CoreData.h>
      #    >      ns.exclude_header_search_paths = 'Code/RestKit.h'
      #         end
      #       -------------------------------------------
      #
      # @return [String] the message of the exception.
      #
      def to_s
        @to_s ||= begin
          trace_line, description = parse_line_number_from_description

          m = String.new("\n[!] ")
          m << description
          m << ". Bundler cannot continue.\n"

          return m unless backtrace && dsl_path && contents

          trace_line = backtrace.find {|l| l.include?(dsl_path.to_s) } || trace_line
          return m unless trace_line
          line_numer = trace_line.split(":")[1].to_i - 1
          return m unless line_numer

          lines      = contents.lines.to_a
          indent     = " #  "
          indicator  = indent.tr("#", ">")
          first_line = line_numer.zero?
          last_line  = (line_numer == (lines.count - 1))

          m << "\n"
          m << "#{indent}from #{trace_line.gsub(/:in.*$/, "")}\n"
          m << "#{indent}-------------------------------------------\n"
          m << "#{indent}#{lines[line_numer - 1]}" unless first_line
          m << "#{indicator}#{lines[line_numer]}"
          m << "#{indent}#{lines[line_numer + 1]}" unless last_line
          m << "\n" unless m.end_with?("\n")
          m << "#{indent}-------------------------------------------\n"
        end
      end

      private

      def parse_line_number_from_description
        description = self.description
        if dsl_path && description =~ /((#{Regexp.quote File.expand_path(dsl_path)}|#{Regexp.quote dsl_path.to_s}):\d+)/
          trace_line = Regexp.last_match[1]
          description = description.sub(/\n.*\n(\.\.\.)? *\^~+$/, "").sub(/#{Regexp.quote trace_line}:\s*/, "").sub("\n", " - ")
        end
        [trace_line, description]
      end
    end

    def gemfile_root
      @gemfile ||= Bundler.default_gemfile
      @gemfile.dirname
    end
  end
end
PK;H[_l�__=share/gems/gems/bundler-2.2.24/lib/bundler/vendored_tmpdir.rbnu�[���# frozen_string_literal: true

module Bundler; end
require_relative "vendor/tmpdir/lib/tmpdir"
PK;H[�z�r�r�1share/gems/gems/bundler-2.2.24/lib/bundler/cli.rbnu�[���# frozen_string_literal: true

require_relative "vendored_thor"

module Bundler
  class CLI < Thor
    require_relative "cli/common"

    package_name "Bundler"

    AUTO_INSTALL_CMDS = %w[show binstubs outdated exec open console licenses clean].freeze
    PARSEABLE_COMMANDS = %w[check config help exec platform show version].freeze

    COMMAND_ALIASES = {
      "check" => "c",
      "install" => "i",
      "plugin" => "",
      "list" => "ls",
      "exec" => ["e", "ex", "exe"],
      "cache" => ["package", "pack"],
      "version" => ["-v", "--version"],
    }.freeze

    def self.start(*)
      super
    ensure
      Bundler::SharedHelpers.print_major_deprecations!
    end

    def self.dispatch(*)
      super do |i|
        i.send(:print_command)
        i.send(:warn_on_outdated_bundler)
      end
    end

    def self.all_aliases
      @all_aliases ||= begin
                         command_aliases = {}

                         COMMAND_ALIASES.each do |name, aliases|
                           Array(aliases).each do |one_alias|
                             command_aliases[one_alias] = name
                           end
                         end

                         command_aliases
                       end
    end

    def self.aliases_for(command_name)
      COMMAND_ALIASES.select {|k, _| k == command_name }.invert
    end

    def initialize(*args)
      super

      custom_gemfile = options[:gemfile] || Bundler.settings[:gemfile]
      if custom_gemfile && !custom_gemfile.empty?
        Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", File.expand_path(custom_gemfile)
        Bundler.reset_settings_and_root!
      end

      Bundler.settings.set_command_option_if_given :retry, options[:retry]

      current_cmd = args.last[:current_command].name
      auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
    rescue UnknownArgumentError => e
      raise InvalidOption, e.message
    ensure
      self.options ||= {}
      unprinted_warnings = Bundler.ui.unprinted_warnings
      Bundler.ui = UI::Shell.new(options)
      Bundler.ui.level = "debug" if options["verbose"]
      unprinted_warnings.each {|w| Bundler.ui.warn(w) }

      if ENV["RUBYGEMS_GEMDEPS"] && !ENV["RUBYGEMS_GEMDEPS"].empty?
        Bundler.ui.warn(
          "The RUBYGEMS_GEMDEPS environment variable is set. This enables RubyGems' " \
          "experimental Gemfile mode, which may conflict with Bundler and cause unexpected errors. " \
          "To remove this warning, unset RUBYGEMS_GEMDEPS.", :wrap => true
        )
      end
    end

    check_unknown_options!(:except => [:config, :exec])
    stop_on_unknown_option! :exec

    desc "cli_help", "Prints a summary of bundler commands", :hide => true
    def cli_help
      version
      Bundler.ui.info "\n"

      primary_commands = ["install", "update", "cache", "exec", "config", "help"]

      list = self.class.printable_commands(true)
      by_name = list.group_by {|name, _message| name.match(/^bundle (\w+)/)[1] }
      utilities = by_name.keys.sort - primary_commands
      primary_commands.map! {|name| (by_name[name] || raise("no primary command #{name}")).first }
      utilities.map! {|name| by_name[name].first }

      shell.say "Bundler commands:\n\n"

      shell.say "  Primary commands:\n"
      shell.print_table(primary_commands, :indent => 4, :truncate => true)
      shell.say
      shell.say "  Utilities:\n"
      shell.print_table(utilities, :indent => 4, :truncate => true)
      shell.say
      self.class.send(:class_options_help, shell)
    end
    default_task(Bundler.feature_flag.default_cli_command)

    class_option "no-color", :type => :boolean, :desc => "Disable colorization in output"
    class_option "retry",    :type => :numeric, :aliases => "-r", :banner => "NUM",
                             :desc => "Specify the number of times you wish to attempt network commands"
    class_option "verbose", :type => :boolean, :desc => "Enable verbose output mode", :aliases => "-V"

    def help(cli = nil)
      case cli
      when "gemfile" then command = "gemfile"
      when nil       then command = "bundle"
      else command = "bundle-#{cli}"
      end

      man_path = File.expand_path("man", __dir__)
      man_pages = Hash[Dir.glob(File.join(man_path, "**", "*")).grep(/.*\.\d*\Z/).collect do |f|
        [File.basename(f, ".*"), f]
      end]

      if man_pages.include?(command)
        man_page = man_pages[command]
        if Bundler.which("man") && man_path !~ %r{^file:/.+!/META-INF/jruby.home/.+}
          Kernel.exec "man #{man_page}"
        else
          puts File.read("#{man_path}/#{File.basename(man_page)}.ronn")
        end
      elsif command_path = Bundler.which("bundler-#{cli}")
        Kernel.exec(command_path, "--help")
      else
        super
      end
    end

    def self.handle_no_command_error(command, has_namespace = $thor_runner)
      if Bundler.feature_flag.plugins? && Bundler::Plugin.command?(command)
        return Bundler::Plugin.exec_command(command, ARGV[1..-1])
      end

      return super unless command_path = Bundler.which("bundler-#{command}")

      Kernel.exec(command_path, *ARGV[1..-1])
    end

    desc "init [OPTIONS]", "Generates a Gemfile into the current working directory"
    long_desc <<-D
      Init generates a default Gemfile in the current working directory. When adding a
      Gemfile to a gem with a gemspec, the --gemspec option will automatically add each
      dependency listed in the gemspec file to the newly created Gemfile.
    D
    method_option "gemspec", :type => :string, :banner => "Use the specified .gemspec to create the Gemfile"
    def init
      require_relative "cli/init"
      Init.new(options.dup).run
    end

    desc "check [OPTIONS]", "Checks if the dependencies listed in Gemfile are satisfied by currently installed gems"
    long_desc <<-D
      Check searches the local machine for each of the gems requested in the Gemfile. If
      all gems are found, Bundler prints a success message and exits with a status of 0.
      If not, the first missing gem is listed and Bundler exits status 1.
    D
    method_option "dry-run", :type => :boolean, :default => false, :banner =>
      "Lock the Gemfile"
    method_option "gemfile", :type => :string, :banner =>
      "Use the specified gemfile instead of Gemfile"
    method_option "path", :type => :string, :banner =>
      "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
    def check
      remembered_flag_deprecation("path")

      require_relative "cli/check"
      Check.new(options).run
    end

    map aliases_for("check")

    desc "remove [GEM [GEM ...]]", "Removes gems from the Gemfile"
    long_desc <<-D
      Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid. If the gem is not found, Bundler prints a error message and if gem could not be removed due to any reason Bundler will display a warning.
    D
    method_option "install", :type => :boolean, :banner =>
      "Runs 'bundle install' after removing the gems from the Gemfile"
    def remove(*gems)
      require_relative "cli/remove"
      Remove.new(gems, options).run
    end

    desc "install [OPTIONS]", "Install the current environment to the system"
    long_desc <<-D
      Install will install all of the gems in the current bundle, making them available
      for use. In a freshly checked out repository, this command will give you the same
      gem versions as the last person who updated the Gemfile and ran `bundle update`.

      Passing [DIR] to install (e.g. vendor) will cause the unpacked gems to be installed
      into the [DIR] directory rather than into system gems.

      If the bundle has already been installed, bundler will tell you so and then exit.
    D
    method_option "binstubs", :type => :string, :lazy_default => "bin", :banner =>
      "Generate bin stubs for bundled gems to ./bin"
    method_option "clean", :type => :boolean, :banner =>
      "Run bundle clean automatically after install"
    method_option "deployment", :type => :boolean, :banner =>
      "Install using defaults tuned for deployment environments"
    method_option "frozen", :type => :boolean, :banner =>
      "Do not allow the Gemfile.lock to be updated after this install"
    method_option "full-index", :type => :boolean, :banner =>
      "Fall back to using the single-file index of all gems"
    method_option "gemfile", :type => :string, :banner =>
      "Use the specified gemfile instead of Gemfile"
    method_option "jobs", :aliases => "-j", :type => :numeric, :banner =>
      "Specify the number of jobs to run in parallel"
    method_option "local", :type => :boolean, :banner =>
      "Do not attempt to fetch gems remotely and use the gem cache instead"
    method_option "no-cache", :type => :boolean, :banner =>
      "Don't update the existing gem cache."
    method_option "redownload", :type => :boolean, :aliases => "--force", :banner =>
      "Force downloading every gem."
    method_option "no-prune", :type => :boolean, :banner =>
      "Don't remove stale gems from the cache."
    method_option "path", :type => :string, :banner =>
      "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
    method_option "quiet", :type => :boolean, :banner =>
      "Only output warnings and errors."
    method_option "shebang", :type => :string, :banner =>
      "Specify a different shebang executable name than the default (usually 'ruby')"
    method_option "standalone", :type => :array, :lazy_default => [], :banner =>
      "Make a bundle that can work without the Bundler runtime"
    method_option "system", :type => :boolean, :banner =>
      "Install to the system location ($BUNDLE_PATH or $GEM_HOME) even if the bundle was previously installed somewhere else for this application"
    method_option "trust-policy", :alias => "P", :type => :string, :banner =>
      "Gem trust policy (like gem install -P). Must be one of " +
        Bundler.rubygems.security_policy_keys.join("|")
    method_option "without", :type => :array, :banner =>
      "Exclude gems that are part of the specified named group."
    method_option "with", :type => :array, :banner =>
      "Include gems that are part of the specified named group."
    def install
      SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")

      %w[clean deployment frozen no-prune path shebang system without with].each do |option|
        remembered_flag_deprecation(option)
      end

      remembered_negative_flag_deprecation("no-deployment")

      require_relative "cli/install"
      Bundler.settings.temporary(:no_install => false) do
        Install.new(options.dup).run
      end
    end

    map aliases_for("install")

    desc "update [OPTIONS]", "Update the current environment"
    long_desc <<-D
      Update will install the newest versions of the gems listed in the Gemfile. Use
      update when you have changed the Gemfile, or if you want to get the newest
      possible versions of the gems in the bundle.
    D
    method_option "full-index", :type => :boolean, :banner =>
      "Fall back to using the single-file index of all gems"
    method_option "gemfile", :type => :string, :banner =>
      "Use the specified gemfile instead of Gemfile"
    method_option "group", :aliases => "-g", :type => :array, :banner =>
      "Update a specific group"
    method_option "jobs", :aliases => "-j", :type => :numeric, :banner =>
      "Specify the number of jobs to run in parallel"
    method_option "local", :type => :boolean, :banner =>
      "Do not attempt to fetch gems remotely and use the gem cache instead"
    method_option "quiet", :type => :boolean, :banner =>
      "Only output warnings and errors."
    method_option "source", :type => :array, :banner =>
      "Update a specific source (and all gems associated with it)"
    method_option "redownload", :type => :boolean, :aliases => "--force", :banner =>
      "Force downloading every gem."
    method_option "ruby", :type => :boolean, :banner =>
      "Update ruby specified in Gemfile.lock"
    method_option "bundler", :type => :string, :lazy_default => "> 0.a", :banner =>
      "Update the locked version of bundler"
    method_option "patch", :type => :boolean, :banner =>
      "Prefer updating only to next patch version"
    method_option "minor", :type => :boolean, :banner =>
      "Prefer updating only to next minor version"
    method_option "major", :type => :boolean, :banner =>
      "Prefer updating to next major version (default)"
    method_option "strict", :type => :boolean, :banner =>
      "Do not allow any gem to be updated past latest --patch | --minor | --major"
    method_option "conservative", :type => :boolean, :banner =>
      "Use bundle install conservative update behavior and do not allow shared dependencies to be updated."
    method_option "all", :type => :boolean, :banner =>
      "Update everything."
    def update(*gems)
      SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
      require_relative "cli/update"
      Bundler.settings.temporary(:no_install => false) do
        Update.new(options, gems).run
      end
    end

    desc "show GEM [OPTIONS]", "Shows all gems that are part of the bundle, or the path to a given gem"
    long_desc <<-D
      Show lists the names and versions of all gems that are required by your Gemfile.
      Calling show with [GEM] will list the exact location of that gem on your machine.
    D
    method_option "paths", :type => :boolean,
                           :banner => "List the paths of all gems that are required by your Gemfile."
    method_option "outdated", :type => :boolean,
                              :banner => "Show verbose output including whether gems are outdated."
    def show(gem_name = nil)
      SharedHelpers.major_deprecation(2, "the `--outdated` flag to `bundle show` was undocumented and will be removed without replacement") if ARGV.include?("--outdated")
      require_relative "cli/show"
      Show.new(options, gem_name).run
    end

    desc "list", "List all gems in the bundle"
    method_option "name-only", :type => :boolean, :banner => "print only the gem names"
    method_option "only-group", :type => :array, :default => [], :banner => "print gems from a given set of groups"
    method_option "without-group", :type => :array, :default => [], :banner => "print all gems except from a given set of groups"
    method_option "paths", :type => :boolean, :banner => "print the path to each gem in the bundle"
    def list
      require_relative "cli/list"
      List.new(options).run
    end

    map aliases_for("list")

    desc "info GEM [OPTIONS]", "Show information for the given gem"
    method_option "path", :type => :boolean, :banner => "Print full path to gem"
    def info(gem_name)
      require_relative "cli/info"
      Info.new(options, gem_name).run
    end

    desc "binstubs GEM [OPTIONS]", "Install the binstubs of the listed gem"
    long_desc <<-D
      Generate binstubs for executables in [GEM]. Binstubs are put into bin,
      or the --binstubs directory if one has been set. Calling binstubs with [GEM [GEM]]
      will create binstubs for all given gems.
    D
    method_option "force", :type => :boolean, :default => false, :banner =>
      "Overwrite existing binstubs if they exist"
    method_option "path", :type => :string, :lazy_default => "bin", :banner =>
      "Binstub destination directory (default bin)"
    method_option "shebang", :type => :string, :banner =>
      "Specify a different shebang executable name than the default (usually 'ruby')"
    method_option "standalone", :type => :boolean, :banner =>
      "Make binstubs that can work without the Bundler runtime"
    method_option "all", :type => :boolean, :banner =>
      "Install binstubs for all gems"
    method_option "all-platforms", :type => :boolean, :default => false, :banner =>
      "Install binstubs for all platforms"
    def binstubs(*gems)
      require_relative "cli/binstubs"
      Binstubs.new(options, gems).run
    end

    desc "add GEM VERSION", "Add gem to Gemfile and run bundle install"
    long_desc <<-D
      Adds the specified gem to Gemfile (if valid) and run 'bundle install' in one step.
    D
    method_option "version", :aliases => "-v", :type => :string
    method_option "group", :aliases => "-g", :type => :string
    method_option "source", :aliases => "-s", :type => :string
    method_option "git", :type => :string
    method_option "branch", :type => :string
    method_option "skip-install", :type => :boolean, :banner =>
      "Adds gem to the Gemfile but does not install it"
    method_option "optimistic", :type => :boolean, :banner => "Adds optimistic declaration of version to gem"
    method_option "strict", :type => :boolean, :banner => "Adds strict declaration of version to gem"
    def add(*gems)
      require_relative "cli/add"
      Add.new(options.dup, gems).run
    end

    desc "outdated GEM [OPTIONS]", "List installed gems with newer versions available"
    long_desc <<-D
      Outdated lists the names and versions of gems that have a newer version available
      in the given source. Calling outdated with [GEM [GEM]] will only check for newer
      versions of the given gems. Prerelease gems are ignored by default. If your gems
      are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.

      For more information on patch level options (--major, --minor, --patch,
      --update-strict) see documentation on the same options on the update command.
    D
    method_option "group", :type => :string, :banner => "List gems from a specific group"
    method_option "groups", :type => :boolean, :banner => "List gems organized by groups"
    method_option "local", :type => :boolean, :banner =>
      "Do not attempt to fetch gems remotely and use the gem cache instead"
    method_option "pre", :type => :boolean, :banner => "Check for newer pre-release gems"
    method_option "source", :type => :array, :banner => "Check against a specific source"
    strict_is_update = Bundler.feature_flag.forget_cli_options?
    method_option "filter-strict", :type => :boolean, :aliases => strict_is_update ? [] : %w[--strict], :banner =>
      "Only list newer versions allowed by your Gemfile requirements"
    method_option "update-strict", :type => :boolean, :aliases => strict_is_update ? %w[--strict] : [], :banner =>
      "Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major"
    method_option "minor", :type => :boolean, :banner => "Prefer updating only to next minor version"
    method_option "major", :type => :boolean, :banner => "Prefer updating to next major version (default)"
    method_option "patch", :type => :boolean, :banner => "Prefer updating only to next patch version"
    method_option "filter-major", :type => :boolean, :banner => "Only list major newer versions"
    method_option "filter-minor", :type => :boolean, :banner => "Only list minor newer versions"
    method_option "filter-patch", :type => :boolean, :banner => "Only list patch newer versions"
    method_option "parseable", :aliases => "--porcelain", :type => :boolean, :banner =>
      "Use minimal formatting for more parseable output"
    method_option "only-explicit", :type => :boolean, :banner =>
      "Only list gems specified in your Gemfile, not their dependencies"
    def outdated(*gems)
      require_relative "cli/outdated"
      Outdated.new(options, gems).run
    end

    desc "fund [OPTIONS]", "Lists information about gems seeking funding assistance"
    method_option "group", :aliases => "-g", :type => :array, :banner =>
      "Fetch funding information for a specific group"
    def fund
      require_relative "cli/fund"
      Fund.new(options).run
    end

    desc "cache [OPTIONS]", "Locks and then caches all of the gems into vendor/cache"
    method_option "all",  :type => :boolean,
                          :default => Bundler.feature_flag.cache_all?,
                          :banner => "Include all sources (including path and git)."
    method_option "all-platforms", :type => :boolean, :banner => "Include gems for all platforms present in the lockfile, not only the current one"
    method_option "cache-path", :type => :string, :banner =>
      "Specify a different cache path than the default (vendor/cache)."
    method_option "gemfile", :type => :string, :banner => "Use the specified gemfile instead of Gemfile"
    method_option "no-install", :type => :boolean, :banner => "Don't install the gems, only update the cache."
    method_option "no-prune", :type => :boolean, :banner => "Don't remove stale gems from the cache."
    method_option "path", :type => :string, :banner =>
      "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
    method_option "quiet", :type => :boolean, :banner => "Only output warnings and errors."
    method_option "frozen", :type => :boolean, :banner =>
      "Do not allow the Gemfile.lock to be updated after this bundle cache operation's install"
    long_desc <<-D
      The cache command will copy the .gem files for every gem in the bundle into the
      directory ./vendor/cache. If you then check that directory into your source
      control repository, others who check out your source will be able to install the
      bundle without having to download any additional gems.
    D
    def cache
      SharedHelpers.major_deprecation 2,
        "The `--all` flag is deprecated because it relies on being " \
        "remembered across bundler invocations, which bundler will no longer " \
        "do in future versions. Instead please use `bundle config set cache_all true`, " \
        "and stop using this flag" if ARGV.include?("--all")

      require_relative "cli/cache"
      Cache.new(options).run
    end

    map aliases_for("cache")

    desc "exec [OPTIONS]", "Run the command in context of the bundle"
    method_option :keep_file_descriptors, :type => :boolean, :default => false
    method_option :gemfile, :type => :string, :required => false
    long_desc <<-D
      Exec runs a command, providing it access to the gems in the bundle. While using
      bundle exec you can require and call the bundled gems as if they were installed
      into the system wide RubyGems repository.
    D
    def exec(*args)
      require_relative "cli/exec"
      Exec.new(options, args).run
    end

    map aliases_for("exec")

    desc "config NAME [VALUE]", "Retrieve or set a configuration value"
    long_desc <<-D
      Retrieves or sets a configuration value. If only one parameter is provided, retrieve the value. If two parameters are provided, replace the
      existing value with the newly provided one.

      By default, setting a configuration value sets it for all projects
      on the machine.

      If a global setting is superseded by local configuration, this command
      will show the current value, as well as any superseded values and
      where they were specified.
    D
    require_relative "cli/config"
    subcommand "config", Config

    desc "open GEM", "Opens the source directory of the given bundled gem"
    def open(name)
      require_relative "cli/open"
      Open.new(options, name).run
    end

    unless Bundler.feature_flag.bundler_3_mode?
      desc "console [GROUP]", "Opens an IRB session with the bundle pre-loaded"
      def console(group = nil)
        require_relative "cli/console"
        Console.new(options, group).run
      end
    end

    desc "version", "Prints the bundler's version information"
    def version
      cli_help = current_command.name == "cli_help"
      if cli_help || ARGV.include?("version")
        build_info = " (#{BuildMetadata.built_at} commit #{BuildMetadata.git_commit_sha})"
      end

      if !cli_help && Bundler.feature_flag.print_only_version_number?
        Bundler.ui.info "#{Bundler::VERSION}#{build_info}"
      else
        Bundler.ui.info "Bundler version #{Bundler::VERSION}#{build_info}"
      end
    end

    map aliases_for("version")

    desc "licenses", "Prints the license of all gems in the bundle"
    def licenses
      Bundler.load.specs.sort_by {|s| s.license.to_s }.reverse_each do |s|
        gem_name = s.name
        license  = s.license || s.licenses

        if license.empty?
          Bundler.ui.warn "#{gem_name}: Unknown"
        else
          Bundler.ui.info "#{gem_name}: #{license}"
        end
      end
    end

    unless Bundler.feature_flag.bundler_3_mode?
      desc "viz [OPTIONS]", "Generates a visual dependency graph", :hide => true
      long_desc <<-D
        Viz generates a PNG file of the current Gemfile as a dependency graph.
        Viz requires the ruby-graphviz gem (and its dependencies).
        The associated gems must also be installed via 'bundle install'.
      D
      method_option :file, :type => :string, :default => "gem_graph", :aliases => "-f", :desc => "The name to use for the generated file. see format option"
      method_option :format, :type => :string, :default => "png", :aliases => "-F", :desc => "This is output format option. Supported format is png, jpg, svg, dot ..."
      method_option :requirements, :type => :boolean, :default => false, :aliases => "-R", :desc => "Set to show the version of each required dependency."
      method_option :version, :type => :boolean, :default => false, :aliases => "-v", :desc => "Set to show each gem version."
      method_option :without, :type => :array, :default => [], :aliases => "-W", :banner => "GROUP[ GROUP...]", :desc => "Exclude gems that are part of the specified named group."
      def viz
        SharedHelpers.major_deprecation 2, "The `viz` command has been moved to the `bundle-viz` gem, see https://github.com/bundler/bundler-viz"
        require_relative "cli/viz"
        Viz.new(options.dup).run
      end
    end

    old_gem = instance_method(:gem)

    desc "gem NAME [OPTIONS]", "Creates a skeleton for creating a rubygem"
    method_option :exe, :type => :boolean, :default => false, :aliases => ["--bin", "-b"], :desc => "Generate a binary executable for your library."
    method_option :coc, :type => :boolean, :desc => "Generate a code of conduct file. Set a default with `bundle config set --global gem.coc true`."
    method_option :edit, :type => :string, :aliases => "-e", :required => false, :banner => "EDITOR",
                         :lazy_default => [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? },
                         :desc => "Open generated gemspec in the specified editor (defaults to $EDITOR or $BUNDLER_EDITOR)"
    method_option :ext, :type => :boolean, :default => false, :desc => "Generate the boilerplate for C extension code"
    method_option :git, :type => :boolean, :default => true, :desc => "Initialize a git repo inside your library."
    method_option :mit, :type => :boolean, :desc => "Generate an MIT license file. Set a default with `bundle config set --global gem.mit true`."
    method_option :rubocop, :type => :boolean, :desc => "Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set --global gem.rubocop true`."
    method_option :changelog, :type => :boolean, :desc => "Generate changelog file. Set a default with `bundle config set --global gem.changelog true`."
    method_option :test, :type => :string, :lazy_default => Bundler.settings["gem.test"] || "", :aliases => "-t", :banner => "Use the specified test framework for your library",
                         :desc => "Generate a test directory for your library, either rspec, minitest or test-unit. Set a default with `bundle config set --global gem.test (rspec|minitest|test-unit)`."
    method_option :ci, :type => :string, :lazy_default => Bundler.settings["gem.ci"] || "",
                       :desc => "Generate CI configuration, either GitHub Actions, Travis CI, GitLab CI or CircleCI. Set a default with `bundle config set --global gem.ci (github|travis|gitlab|circle)`"
    method_option :github_username, :type => :string, :default => Bundler.settings["gem.github_username"], :banner => "Set your username on GitHub", :desc => "Fill in GitHub username on README so that you don't have to do it manually. Set a default with `bundle config set --global gem.github_username <your_username>`."

    def gem(name)
    end

    commands["gem"].tap do |gem_command|
      def gem_command.run(instance, args = [])
        arity = 1 # name

        require_relative "cli/gem"
        cmd_args = args + [instance]
        cmd_args.unshift(instance.options)

        cmd = begin
          Gem.new(*cmd_args)
        rescue ArgumentError => e
          instance.class.handle_argument_error(self, e, args, arity)
        end

        cmd.run
      end
    end

    undef_method(:gem)
    define_method(:gem, old_gem)
    private :gem

    def self.source_root
      File.expand_path(File.join(File.dirname(__FILE__), "templates"))
    end

    desc "clean [OPTIONS]", "Cleans up unused gems in your bundler directory", :hide => true
    method_option "dry-run", :type => :boolean, :default => false, :banner =>
      "Only print out changes, do not clean gems"
    method_option "force", :type => :boolean, :default => false, :banner =>
      "Forces clean even if --path is not set"
    def clean
      require_relative "cli/clean"
      Clean.new(options.dup).run
    end

    desc "platform [OPTIONS]", "Displays platform compatibility information"
    method_option "ruby", :type => :boolean, :default => false, :banner =>
      "only display ruby related platform information"
    def platform
      require_relative "cli/platform"
      Platform.new(options).run
    end

    desc "inject GEM VERSION", "Add the named gem, with version requirements, to the resolved Gemfile", :hide => true
    method_option "source", :type => :string, :banner =>
     "Install gem from the given source"
    method_option "group", :type => :string, :banner =>
     "Install gem into a bundler group"
    def inject(name, version)
      SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command"
      require_relative "cli/inject"
      Inject.new(options.dup, name, version).run
    end

    desc "lock", "Creates a lockfile without installing"
    method_option "update", :type => :array, :lazy_default => true, :banner =>
      "ignore the existing lockfile, update all gems by default, or update list of given gems"
    method_option "local", :type => :boolean, :default => false, :banner =>
      "do not attempt to fetch remote gemspecs and use the local gem cache only"
    method_option "print", :type => :boolean, :default => false, :banner =>
      "print the lockfile to STDOUT instead of writing to the file system"
    method_option "gemfile", :type => :string, :banner =>
      "Use the specified gemfile instead of Gemfile"
    method_option "lockfile", :type => :string, :default => nil, :banner =>
      "the path the lockfile should be written to"
    method_option "full-index", :type => :boolean, :default => false, :banner =>
      "Fall back to using the single-file index of all gems"
    method_option "add-platform", :type => :array, :default => [], :banner =>
      "Add a new platform to the lockfile"
    method_option "remove-platform", :type => :array, :default => [], :banner =>
      "Remove a platform from the lockfile"
    method_option "patch", :type => :boolean, :banner =>
      "If updating, prefer updating only to next patch version"
    method_option "minor", :type => :boolean, :banner =>
      "If updating, prefer updating only to next minor version"
    method_option "major", :type => :boolean, :banner =>
      "If updating, prefer updating to next major version (default)"
    method_option "strict", :type => :boolean, :banner =>
      "If updating, do not allow any gem to be updated past latest --patch | --minor | --major"
    method_option "conservative", :type => :boolean, :banner =>
      "If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated"
    def lock
      require_relative "cli/lock"
      Lock.new(options).run
    end

    desc "env", "Print information about the environment Bundler is running under"
    def env
      Env.write($stdout)
    end

    desc "doctor [OPTIONS]", "Checks the bundle for common problems"
    long_desc <<-D
      Doctor scans the OS dependencies of each of the gems requested in the Gemfile. If
      missing dependencies are detected, Bundler prints them and exits status 1.
      Otherwise, Bundler prints a success message and exits with a status of 0.
    D
    method_option "gemfile", :type => :string, :banner =>
      "Use the specified gemfile instead of Gemfile"
    method_option "quiet", :type => :boolean, :banner =>
        "Only output warnings and errors."
    def doctor
      require_relative "cli/doctor"
      Doctor.new(options).run
    end

    desc "issue", "Learn how to report an issue in Bundler"
    def issue
      require_relative "cli/issue"
      Issue.new.run
    end

    desc "pristine [GEMS...]", "Restores installed gems to pristine condition"
    long_desc <<-D
      Restores installed gems to pristine condition from files located in the
      gem cache. Gems installed from a git repository will be issued `git
      checkout --force`.
    D
    def pristine(*gems)
      require_relative "cli/pristine"
      Pristine.new(gems).run
    end

    if Bundler.feature_flag.plugins?
      require_relative "cli/plugin"
      desc "plugin", "Manage the bundler plugins"
      subcommand "plugin", Plugin
    end

    # Reformat the arguments passed to bundle that include a --help flag
    # into the corresponding `bundle help #{command}` call
    def self.reformatted_help_args(args)
      bundler_commands = (COMMAND_ALIASES.keys + COMMAND_ALIASES.values).flatten

      help_flags = %w[--help -h]
      exec_commands = ["exec"] + COMMAND_ALIASES["exec"]

      help_used = args.index {|a| help_flags.include? a }
      exec_used = args.index {|a| exec_commands.include? a }

      command = args.find {|a| bundler_commands.include? a }
      command = all_aliases[command] if all_aliases[command]

      if exec_used && help_used
        if exec_used + help_used == 1
          %w[help exec]
        else
          args
        end
      elsif help_used
        args = args.dup
        args.delete_at(help_used)
        ["help", command || args].flatten.compact
      else
        args
      end
    end

    private

    # Automatically invoke `bundle install` and resume if
    # Bundler.settings[:auto_install] exists. This is set through config cmd
    # `bundle config set --global auto_install 1`.
    #
    # Note that this method `nil`s out the global Definition object, so it
    # should be called first, before you instantiate anything like an
    # `Installer` that'll keep a reference to the old one instead.
    def auto_install
      return unless Bundler.settings[:auto_install]

      begin
        Bundler.definition.specs
      rescue GemNotFound
        Bundler.ui.info "Automatically installing missing gems."
        Bundler.reset!
        invoke :install, []
        Bundler.reset!
      end
    end

    def current_command
      _, _, config = @_initializer
      config[:current_command]
    end

    def print_command
      return unless Bundler.ui.debug?
      cmd = current_command
      command_name = cmd.name
      return if PARSEABLE_COMMANDS.include?(command_name)
      command = ["bundle", command_name] + args
      options_to_print = options.dup
      options_to_print.delete_if do |k, v|
        next unless o = cmd.options[k]
        o.default == v
      end
      command << Thor::Options.to_switches(options_to_print.sort_by(&:first)).strip
      command.reject!(&:empty?)
      Bundler.ui.info "Running `#{command * " "}` with bundler #{Bundler::VERSION}"
    end

    def warn_on_outdated_bundler
      return if Bundler.settings[:disable_version_check]

      command_name = current_command.name
      return if PARSEABLE_COMMANDS.include?(command_name)

      return unless SharedHelpers.md5_available?

      latest = Fetcher::CompactIndex.
               new(nil, Source::Rubygems::Remote.new(Bundler::URI("https://rubygems.org")), nil).
               send(:compact_index_client).
               instance_variable_get(:@cache).
               dependencies("bundler").
               map {|d| Gem::Version.new(d.first) }.
               max
      return unless latest

      current = Gem::Version.new(VERSION)
      return if current >= latest
      latest_installed = Bundler.rubygems.find_name("bundler").map(&:version).max

      installation = "To install the latest version, run `gem install bundler#{" --pre" if latest.prerelease?}`"
      if latest_installed && latest_installed > current
        suggestion = "To update to the most recent installed version (#{latest_installed}), run `bundle update --bundler`"
        suggestion = "#{installation}\n#{suggestion}" if latest_installed < latest
      else
        suggestion = installation
      end

      Bundler.ui.warn "The latest bundler is #{latest}, but you are currently running #{current}.\n#{suggestion}"
    rescue RuntimeError
      nil
    end

    def remembered_negative_flag_deprecation(name)
      positive_name = name.gsub(/\Ano-/, "")
      option = current_command.options[positive_name]
      flag_name = "--no-" + option.switch_name.gsub(/\A--/, "")

      flag_deprecation(positive_name, flag_name, option)
    end

    def remembered_flag_deprecation(name)
      option = current_command.options[name]
      flag_name = option.switch_name

      flag_deprecation(name, flag_name, option)
    end

    def flag_deprecation(name, flag_name, option)
      name_index = ARGV.find {|arg| flag_name == arg.split("=")[0] }
      return unless name_index

      value = options[name]
      value = value.join(" ").to_s if option.type == :array

      Bundler::SharedHelpers.major_deprecation 2,
        "The `#{flag_name}` flag is deprecated because it relies on being " \
        "remembered across bundler invocations, which bundler will no longer " \
        "do in future versions. Instead please use `bundle config set --local #{name.tr("-", "_")} " \
        "'#{value}'`, and stop using this flag"
    end
  end
end
PK;H[�-L00<share/gems/gems/bundler-2.2.24/lib/bundler/version_ranges.rbnu�[���# frozen_string_literal: true

module Bundler
  module VersionRanges
    NEq = Struct.new(:version)
    ReqR = Struct.new(:left, :right)
    class ReqR
      Endpoint = Struct.new(:version, :inclusive) do
        def <=>(other)
          if version.equal?(INFINITY)
            return 0 if other.version.equal?(INFINITY)
            return 1
          elsif other.version.equal?(INFINITY)
            return -1
          end

          comp = version <=> other.version
          return comp unless comp.zero?

          if inclusive && !other.inclusive
            1
          elsif !inclusive && other.inclusive
            -1
          else
            0
          end
        end
      end

      def to_s
        "#{left.inclusive ? "[" : "("}#{left.version}, #{right.version}#{right.inclusive ? "]" : ")"}"
      end
      INFINITY = begin
        inf = Object.new
        def inf.to_s
          "∞"
        end
        def inf.<=>(other)
          return 0 if other.equal?(self)
          1
        end
        inf.freeze
      end
      ZERO = Gem::Version.new("0.a")

      def cover?(v)
        return false if left.inclusive && left.version > v
        return false if !left.inclusive && left.version >= v

        if right.version != INFINITY
          return false if right.inclusive && right.version < v
          return false if !right.inclusive && right.version <= v
        end

        true
      end

      def empty?
        left.version == right.version && !(left.inclusive && right.inclusive)
      end

      def single?
        left.version == right.version
      end

      def <=>(other)
        return -1 if other.equal?(INFINITY)

        comp = left <=> other.left
        return comp unless comp.zero?

        right <=> other.right
      end

      UNIVERSAL = ReqR.new(ReqR::Endpoint.new(Gem::Version.new("0.a"), true), ReqR::Endpoint.new(ReqR::INFINITY, false)).freeze
    end

    def self.for_many(requirements)
      requirements = requirements.map(&:requirements).flatten(1).map {|r| r.join(" ") }
      requirements << ">= 0.a" if requirements.empty?
      requirement = Gem::Requirement.new(requirements)
      self.for(requirement)
    end

    def self.for(requirement)
      ranges = requirement.requirements.map do |op, v|
        case op
        when "=" then ReqR.new(ReqR::Endpoint.new(v, true), ReqR::Endpoint.new(v, true))
        when "!=" then NEq.new(v)
        when ">=" then ReqR.new(ReqR::Endpoint.new(v, true), ReqR::Endpoint.new(ReqR::INFINITY, false))
        when ">" then ReqR.new(ReqR::Endpoint.new(v, false), ReqR::Endpoint.new(ReqR::INFINITY, false))
        when "<" then ReqR.new(ReqR::Endpoint.new(ReqR::ZERO, true), ReqR::Endpoint.new(v, false))
        when "<=" then ReqR.new(ReqR::Endpoint.new(ReqR::ZERO, true), ReqR::Endpoint.new(v, true))
        when "~>" then ReqR.new(ReqR::Endpoint.new(v, true), ReqR::Endpoint.new(v.bump, false))
        else raise "unknown version op #{op} in requirement #{requirement}"
        end
      end.uniq
      ranges, neqs = ranges.partition {|r| !r.is_a?(NEq) }

      [ranges.sort, neqs.map(&:version)]
    end

    def self.empty?(ranges, neqs)
      !ranges.reduce(ReqR::UNIVERSAL) do |last_range, curr_range|
        next false unless last_range
        next false if curr_range.single? && neqs.include?(curr_range.left.version)
        next curr_range if last_range.right.version == ReqR::INFINITY
        case last_range.right.version <=> curr_range.left.version
        # higher
        when 1 then next ReqR.new(curr_range.left, last_range.right)
        # equal
        when 0
          if last_range.right.inclusive && curr_range.left.inclusive && !neqs.include?(curr_range.left.version)
            ReqR.new(curr_range.left, [curr_range.right, last_range.right].max)
          end
        # lower
        when -1 then next false
        end
      end
    end
  end
end
PK;H[9r�Q''4share/gems/gems/bundler-2.2.24/lib/bundler/inline.rbnu�[���# frozen_string_literal: true

# Allows for declaring a Gemfile inline in a ruby script, optionally installing
# any gems that aren't already installed on the user's system.
#
# @note Every gem that is specified in this 'Gemfile' will be `require`d, as if
#       the user had manually called `Bundler.require`. To avoid a requested gem
#       being automatically required, add the `:require => false` option to the
#       `gem` dependency declaration.
#
# @param install [Boolean] whether gems that aren't already installed on the
#                          user's system should be installed.
#                          Defaults to `false`.
#
# @param gemfile [Proc]    a block that is evaluated as a `Gemfile`.
#
# @example Using an inline Gemfile
#
#          #!/usr/bin/env ruby
#
#          require 'bundler/inline'
#
#          gemfile do
#            source 'https://rubygems.org'
#            gem 'json', require: false
#            gem 'nap', require: 'rest'
#            gem 'cocoapods', '~> 0.34.1'
#          end
#
#          puts Pod::VERSION # => "0.34.4"
#
def gemfile(install = false, options = {}, &gemfile)
  require_relative "../bundler"

  opts = options.dup
  ui = opts.delete(:ui) { Bundler::UI::Shell.new }
  ui.level = "silent" if opts.delete(:quiet)
  raise ArgumentError, "Unknown options: #{opts.keys.join(", ")}" unless opts.empty?

  begin
    old_root = Bundler.method(:root)
    bundler_module = class << Bundler; self; end
    bundler_module.send(:remove_method, :root)
    def Bundler.root
      Bundler::SharedHelpers.pwd.expand_path
    end
    old_gemfile = ENV["BUNDLE_GEMFILE"]
    Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", "Gemfile"

    Bundler::Plugin.gemfile_install(&gemfile) if Bundler.feature_flag.plugins?
    builder = Bundler::Dsl.new
    builder.instance_eval(&gemfile)
    builder.check_primary_source_safety

    Bundler.settings.temporary(:deployment => false, :frozen => false) do
      definition = builder.to_definition(nil, true)
      def definition.lock(*); end
      definition.validate_runtime!

      Bundler.ui = install ? ui : Bundler::UI::Silent.new
      if install || definition.missing_specs?
        Bundler.settings.temporary(:inline => true) do
          installer = Bundler::Installer.install(Bundler.root, definition, :system => true)
          installer.post_install_messages.each do |name, message|
            Bundler.ui.info "Post-install message from #{name}:\n#{message}"
          end
        end
      end

      runtime = Bundler::Runtime.new(nil, definition)
      runtime.setup.require
    end
  ensure
    if bundler_module
      bundler_module.send(:remove_method, :root)
      bundler_module.send(:define_method, :root, old_root)
    end

    if old_gemfile
      ENV["BUNDLE_GEMFILE"] = old_gemfile
    else
      ENV["BUNDLE_GEMFILE"] = ""
    end
  end
end
PK;H[�wj5��<share/gems/gems/bundler-2.2.24/lib/bundler/build_metadata.rbnu�[���# frozen_string_literal: true

module Bundler
  # Represents metadata from when the Bundler gem was built.
  module BuildMetadata
    # begin ivars
    @release = false
    # end ivars

    # A hash representation of the build metadata.
    def self.to_h
      {
        "Built At" => built_at,
        "Git SHA" => git_commit_sha,
        "Released Version" => release?,
      }
    end

    # A string representing the date the bundler gem was built.
    def self.built_at
      @built_at ||= Time.now.utc.strftime("%Y-%m-%d").freeze
    end

    # The SHA for the git commit the bundler gem was built from.
    def self.git_commit_sha
      return @git_commit_sha if instance_variable_defined? :@git_commit_sha

      # If Bundler has been installed without its .git directory and without a
      # commit instance variable then we can't determine its commits SHA.
      git_dir = File.join(File.expand_path("../../../..", __FILE__), ".git")
      if File.directory?(git_dir)
        return @git_commit_sha = Dir.chdir(git_dir) { `git rev-parse --short HEAD`.strip.freeze }
      end

      @git_commit_sha ||= "unknown"
    end

    # Whether this is an official release build of Bundler.
    def self.release?
      @release
    end
  end
end
PK;H[��xDshare/gems/gems/bundler-2.2.24/lib/bundler/uri_credentials_filter.rbnu�[���# frozen_string_literal: true

module Bundler
  module URICredentialsFilter
    module_function

    def credential_filtered_uri(uri_to_anonymize)
      return uri_to_anonymize if uri_to_anonymize.nil?
      uri = uri_to_anonymize.dup
      if uri.is_a?(String)
        return uri if File.exist?(uri)

        require_relative "vendored_uri"
        uri = Bundler::URI(uri)
      end

      if uri.userinfo
        # oauth authentication
        if uri.password == "x-oauth-basic" || uri.password == "x"
          # URI as string does not display with password if no user is set
          oauth_designation = uri.password
          uri.user = oauth_designation
        end
        uri.password = nil
      end
      return uri.to_s if uri_to_anonymize.is_a?(String)
      uri
    rescue Bundler::URI::InvalidURIError # uri is not canonical uri scheme
      uri
    end

    def credential_filtered_string(str_to_filter, uri)
      return str_to_filter if uri.nil? || str_to_filter.nil?
      str_with_no_credentials = str_to_filter.dup
      anonymous_uri_str = credential_filtered_uri(uri).to_s
      uri_str = uri.to_s
      if anonymous_uri_str != uri_str
        str_with_no_credentials = str_with_no_credentials.gsub(uri_str, anonymous_uri_str)
      end
      str_with_no_credentials
    end
  end
end
PK;H[3��,��3share/gems/gems/bundler-2.2.24/lib/bundler/graph.rbnu�[���# frozen_string_literal: true

require "set"
module Bundler
  class Graph
    GRAPH_NAME = :Gemfile

    def initialize(env, output_file, show_version = false, show_requirements = false, output_format = "png", without = [])
      @env               = env
      @output_file       = output_file
      @show_version      = show_version
      @show_requirements = show_requirements
      @output_format     = output_format
      @without_groups    = without.map(&:to_sym)

      @groups            = []
      @relations         = Hash.new {|h, k| h[k] = Set.new }
      @node_options      = {}
      @edge_options      = {}

      _populate_relations
    end

    attr_reader :groups, :relations, :node_options, :edge_options, :output_file, :output_format

    def viz
      GraphVizClient.new(self).run
    end

    private

    def _populate_relations
      parent_dependencies = _groups.values.to_set.flatten
      loop do
        break if parent_dependencies.empty?

        tmp = Set.new
        parent_dependencies.each do |dependency|
          child_dependencies = spec_for_dependency(dependency).runtime_dependencies.to_set
          @relations[dependency.name] += child_dependencies.map(&:name).to_set
          tmp += child_dependencies

          @node_options[dependency.name] = _make_label(dependency, :node)
          child_dependencies.each do |c_dependency|
            @edge_options["#{dependency.name}_#{c_dependency.name}"] = _make_label(c_dependency, :edge)
          end
        end
        parent_dependencies = tmp
      end
    end

    def _groups
      relations = Hash.new {|h, k| h[k] = Set.new }
      @env.current_dependencies.each do |dependency|
        dependency.groups.each do |group|
          next if @without_groups.include?(group)

          relations[group.to_s].add(dependency)
          @relations[group.to_s].add(dependency.name)

          @node_options[group.to_s] ||= _make_label(group, :node)
          @edge_options["#{group}_#{dependency.name}"] = _make_label(dependency, :edge)
        end
      end
      @groups = relations.keys
      relations
    end

    def _make_label(symbol_or_string_or_dependency, element_type)
      case element_type.to_sym
      when :node
        if symbol_or_string_or_dependency.is_a?(Gem::Dependency)
          label = symbol_or_string_or_dependency.name.dup
          label << "\n#{spec_for_dependency(symbol_or_string_or_dependency).version}" if @show_version
        else
          label = symbol_or_string_or_dependency.to_s
        end
      when :edge
        label = nil
        if symbol_or_string_or_dependency.respond_to?(:requirements_list) && @show_requirements
          tmp = symbol_or_string_or_dependency.requirements_list.join(", ")
          label = tmp if tmp != ">= 0"
        end
      else
        raise ArgumentError, "2nd argument is invalid"
      end
      label.nil? ? {} : { :label => label }
    end

    def spec_for_dependency(dependency)
      @env.requested_specs.find {|s| s.name == dependency.name }
    end

    class GraphVizClient
      def initialize(graph_instance)
        @graph_name    = graph_instance.class::GRAPH_NAME
        @groups        = graph_instance.groups
        @relations     = graph_instance.relations
        @node_options  = graph_instance.node_options
        @edge_options  = graph_instance.edge_options
        @output_file   = graph_instance.output_file
        @output_format = graph_instance.output_format
      end

      def g
        @g ||= ::GraphViz.digraph(@graph_name, :concentrate => true, :normalize => true, :nodesep => 0.55) do |g|
          g.edge[:weight]   = 2
          g.edge[:fontname] = g.node[:fontname] = "Arial, Helvetica, SansSerif"
          g.edge[:fontsize] = 12
        end
      end

      def run
        @groups.each do |group|
          g.add_nodes(
            group, {
              :style     => "filled",
              :fillcolor => "#B9B9D5",
              :shape     => "box3d",
              :fontsize  => 16,
            }.merge(@node_options[group])
          )
        end

        @relations.each do |parent, children|
          children.each do |child|
            if @groups.include?(parent)
              g.add_nodes(child, { :style => "filled", :fillcolor => "#B9B9D5" }.merge(@node_options[child]))
              g.add_edges(parent, child, { :constraint => false }.merge(@edge_options["#{parent}_#{child}"]))
            else
              g.add_nodes(child, @node_options[child])
              g.add_edges(parent, child, @edge_options["#{parent}_#{child}"])
            end
          end
        end

        if @output_format.to_s == "debug"
          $stdout.puts g.output :none => String
          Bundler.ui.info "debugging bundle viz..."
        else
          begin
            g.output @output_format.to_sym => "#{@output_file}.#{@output_format}"
            Bundler.ui.info "#{@output_file}.#{@output_format}"
          rescue ArgumentError => e
            warn "Unsupported output format. See Ruby-Graphviz/lib/graphviz/constants.rb"
            raise e
          end
        end
      end
    end
  end
end
PK;H[�wz��,�,5share/gems/gems/bundler-2.2.24/lib/bundler/fetcher.rbnu�[���# frozen_string_literal: true

require_relative "vendored_persistent"
require "cgi"
require "securerandom"
require "zlib"
require "rubygems/request"

module Bundler
  # Handles all the fetching with the rubygems server
  class Fetcher
    autoload :CompactIndex, File.expand_path("fetcher/compact_index", __dir__)
    autoload :Downloader, File.expand_path("fetcher/downloader", __dir__)
    autoload :Dependency, File.expand_path("fetcher/dependency", __dir__)
    autoload :Index, File.expand_path("fetcher/index", __dir__)

    # This error is raised when it looks like the network is down
    class NetworkDownError < HTTPError; end
    # This error is raised if we should rate limit our requests to the API
    class TooManyRequestsError < HTTPError; end
    # This error is raised if the API returns a 413 (only printed in verbose)
    class FallbackError < HTTPError; end
    # This is the error raised if OpenSSL fails the cert verification
    class CertificateFailureError < HTTPError
      def initialize(remote_uri)
        remote_uri = filter_uri(remote_uri)
        super "Could not verify the SSL certificate for #{remote_uri}.\nThere" \
          " is a chance you are experiencing a man-in-the-middle attack, but" \
          " most likely your system doesn't have the CA certificates needed" \
          " for verification. For information about OpenSSL certificates, see" \
          " http://bit.ly/ruby-ssl. To connect without using SSL, edit your Gemfile" \
          " sources and change 'https' to 'http'."
      end
    end
    # This is the error raised when a source is HTTPS and OpenSSL didn't load
    class SSLError < HTTPError
      def initialize(msg = nil)
        super msg || "Could not load OpenSSL.\n" \
            "You must recompile Ruby with OpenSSL support or change the sources in your " \
            "Gemfile from 'https' to 'http'. Instructions for compiling with OpenSSL " \
            "using RVM are available at rvm.io/packages/openssl."
      end
    end
    # This error is raised if HTTP authentication is required, but not provided.
    class AuthenticationRequiredError < HTTPError
      def initialize(remote_uri)
        remote_uri = filter_uri(remote_uri)
        super "Authentication is required for #{remote_uri}.\n" \
          "Please supply credentials for this source. You can do this by running:\n" \
          "`bundle config set --global #{remote_uri} username:password`\n" \
          "or by storing the credentials in the `#{Settings.key_for(remote_uri)}` environment variable"
      end
    end
    # This error is raised if HTTP authentication is provided, but incorrect.
    class BadAuthenticationError < HTTPError
      def initialize(remote_uri)
        remote_uri = filter_uri(remote_uri)
        super "Bad username or password for #{remote_uri}.\n" \
          "Please double-check your credentials and correct them."
      end
    end

    # Exceptions classes that should bypass retry attempts. If your password didn't work the
    # first time, it's not going to the third time.
    NET_ERRORS = [:HTTPBadGateway, :HTTPBadRequest, :HTTPFailedDependency,
                  :HTTPForbidden, :HTTPInsufficientStorage, :HTTPMethodNotAllowed,
                  :HTTPMovedPermanently, :HTTPNoContent, :HTTPNotFound,
                  :HTTPNotImplemented, :HTTPPreconditionFailed, :HTTPRequestEntityTooLarge,
                  :HTTPRequestURITooLong, :HTTPUnauthorized, :HTTPUnprocessableEntity,
                  :HTTPUnsupportedMediaType, :HTTPVersionNotSupported].freeze
    FAIL_ERRORS = begin
      fail_errors = [AuthenticationRequiredError, BadAuthenticationError, FallbackError]
      fail_errors << Gem::Requirement::BadRequirementError if defined?(Gem::Requirement::BadRequirementError)
      fail_errors.concat(NET_ERRORS.map {|e| SharedHelpers.const_get_safely(e, Net) }.compact)
    end.freeze

    class << self
      attr_accessor :disable_endpoint, :api_timeout, :redirect_limit, :max_retries
    end

    self.redirect_limit = Bundler.settings[:redirect] # How many redirects to allow in one request
    self.api_timeout    = Bundler.settings[:timeout] # How long to wait for each API call
    self.max_retries    = Bundler.settings[:retry] # How many retries for the API call

    def initialize(remote)
      @remote = remote

      Socket.do_not_reverse_lookup = true
      connection # create persistent connection
    end

    def uri
      @remote.anonymized_uri
    end

    # fetch a gem specification
    def fetch_spec(spec)
      spec -= [nil, "ruby", ""]
      spec_file_name = "#{spec.join "-"}.gemspec"

      uri = Bundler::URI.parse("#{remote_uri}#{Gem::MARSHAL_SPEC_DIR}#{spec_file_name}.rz")
      if uri.scheme == "file"
        path = Bundler.rubygems.correct_for_windows_path(uri.path)
        Bundler.load_marshal Bundler.rubygems.inflate(Gem.read_binary(path))
      elsif cached_spec_path = gemspec_cached_path(spec_file_name)
        Bundler.load_gemspec(cached_spec_path)
      else
        Bundler.load_marshal Bundler.rubygems.inflate(downloader.fetch(uri).body)
      end
    rescue MarshalError
      raise HTTPError, "Gemspec #{spec} contained invalid data.\n" \
        "Your network or your gem server is probably having issues right now."
    end

    # return the specs in the bundler format as an index with retries
    def specs_with_retry(gem_names, source)
      Bundler::Retry.new("fetcher", FAIL_ERRORS).attempts do
        specs(gem_names, source)
      end
    end

    # return the specs in the bundler format as an index
    def specs(gem_names, source)
      old = Bundler.rubygems.sources
      index = Bundler::Index.new

      if Bundler::Fetcher.disable_endpoint
        @use_api = false
        specs = fetchers.last.specs(gem_names)
      else
        specs = []
        fetchers.shift until fetchers.first.available? || fetchers.empty?
        fetchers.dup.each do |f|
          break unless f.api_fetcher? && !gem_names || !specs = f.specs(gem_names)
          fetchers.delete(f)
        end
        @use_api = false if fetchers.none?(&:api_fetcher?)
      end

      specs.each do |name, version, platform, dependencies, metadata|
        spec = if dependencies
          EndpointSpecification.new(name, version, platform, dependencies, metadata)
        else
          RemoteSpecification.new(name, version, platform, self)
        end
        spec.source = source
        spec.remote = @remote
        index << spec
      end

      index
    rescue CertificateFailureError
      Bundler.ui.info "" if gem_names && use_api # newline after dots
      raise
    ensure
      Bundler.rubygems.sources = old
    end

    def use_api
      return @use_api if defined?(@use_api)

      fetchers.shift until fetchers.first.available?

      @use_api = if remote_uri.scheme == "file" || Bundler::Fetcher.disable_endpoint
        false
      else
        fetchers.first.api_fetcher?
      end
    end

    def user_agent
      @user_agent ||= begin
        ruby = Bundler::RubyVersion.system

        agent = String.new("bundler/#{Bundler::VERSION}")
        agent << " rubygems/#{Gem::VERSION}"
        agent << " ruby/#{ruby.versions_string(ruby.versions)}"
        agent << " (#{ruby.host})"
        agent << " command/#{ARGV.first}"

        if ruby.engine != "ruby"
          # engine_version raises on unknown engines
          engine_version = begin
                             ruby.engine_versions
                           rescue RuntimeError
                             "???"
                           end
          agent << " #{ruby.engine}/#{ruby.versions_string(engine_version)}"
        end

        agent << " options/#{Bundler.settings.all.join(",")}"

        agent << " ci/#{cis.join(",")}" if cis.any?

        # add a random ID so we can consolidate runs server-side
        agent << " " << SecureRandom.hex(8)

        # add any user agent strings set in the config
        extra_ua = Bundler.settings[:user_agent]
        agent << " " << extra_ua if extra_ua

        agent
      end
    end

    def fetchers
      @fetchers ||= FETCHERS.map {|f| f.new(downloader, @remote, uri) }
    end

    def http_proxy
      return unless uri = connection.proxy_uri
      uri.to_s
    end

    def inspect
      "#<#{self.class}:0x#{object_id} uri=#{uri}>"
    end

    private

    FETCHERS = [CompactIndex, Dependency, Index].freeze

    def cis
      env_cis = {
        "TRAVIS" => "travis",
        "CIRCLECI" => "circle",
        "SEMAPHORE" => "semaphore",
        "JENKINS_URL" => "jenkins",
        "BUILDBOX" => "buildbox",
        "GO_SERVER_URL" => "go",
        "SNAP_CI" => "snap",
        "GITLAB_CI" => "gitlab",
        "CI_NAME" => ENV["CI_NAME"],
        "CI" => "ci",
      }
      env_cis.find_all {|env, _| ENV[env] }.map {|_, ci| ci }
    end

    def connection
      @connection ||= begin
        needs_ssl = remote_uri.scheme == "https" ||
          Bundler.settings[:ssl_verify_mode] ||
          Bundler.settings[:ssl_client_cert]
        raise SSLError if needs_ssl && !defined?(OpenSSL::SSL)

        con = PersistentHTTP.new :name => "bundler", :proxy => :ENV
        if gem_proxy = Bundler.rubygems.configuration[:http_proxy]
          con.proxy = Bundler::URI.parse(gem_proxy) if gem_proxy != :no_proxy
        end

        if remote_uri.scheme == "https"
          con.verify_mode = (Bundler.settings[:ssl_verify_mode] ||
            OpenSSL::SSL::VERIFY_PEER)
          con.cert_store = bundler_cert_store
        end

        ssl_client_cert = Bundler.settings[:ssl_client_cert] ||
          (Bundler.rubygems.configuration.ssl_client_cert if
            Bundler.rubygems.configuration.respond_to?(:ssl_client_cert))
        if ssl_client_cert
          pem = File.read(ssl_client_cert)
          con.cert = OpenSSL::X509::Certificate.new(pem)
          con.key  = OpenSSL::PKey::RSA.new(pem)
        end

        con.read_timeout = Fetcher.api_timeout
        con.open_timeout = Fetcher.api_timeout
        con.override_headers["User-Agent"] = user_agent
        con.override_headers["X-Gemfile-Source"] = @remote.original_uri.to_s if @remote.original_uri
        con
      end
    end

    # cached gem specification path, if one exists
    def gemspec_cached_path(spec_file_name)
      paths = Bundler.rubygems.spec_cache_dirs.map {|dir| File.join(dir, spec_file_name) }
      paths = paths.select {|path| File.file? path }
      paths.first
    end

    HTTP_ERRORS = [
      Timeout::Error, EOFError, SocketError, Errno::ENETDOWN, Errno::ENETUNREACH,
      Errno::EINVAL, Errno::ECONNRESET, Errno::ETIMEDOUT, Errno::EAGAIN,
      Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError,
      PersistentHTTP::Error, Zlib::BufError, Errno::EHOSTUNREACH
    ].freeze

    def bundler_cert_store
      store = OpenSSL::X509::Store.new
      ssl_ca_cert = Bundler.settings[:ssl_ca_cert] ||
        (Bundler.rubygems.configuration.ssl_ca_cert if
          Bundler.rubygems.configuration.respond_to?(:ssl_ca_cert))
      if ssl_ca_cert
        if File.directory? ssl_ca_cert
          store.add_path ssl_ca_cert
        else
          store.add_file ssl_ca_cert
        end
      else
        store.set_default_paths
        Gem::Request.get_cert_files.each {|c| store.add_file c }
      end
      store
    end

    private

    def remote_uri
      @remote.uri
    end

    def downloader
      @downloader ||= Downloader.new(connection, self.class.redirect_limit)
    end
  end
end
PK;H[�z�]EEBshare/gems/gems/bundler-2.2.24/lib/bundler/rubygems_integration.rbnu�[���# frozen_string_literal: true

require "rubygems" unless defined?(Gem)

module Bundler
  class RubygemsIntegration
    if defined?(Gem::Ext::Builder::CHDIR_MONITOR)
      EXT_LOCK = Gem::Ext::Builder::CHDIR_MONITOR
    else
      require "monitor"

      EXT_LOCK = Monitor.new
    end

    def self.version
      @version ||= Gem::Version.new(Gem::VERSION)
    end

    def self.provides?(req_str)
      Gem::Requirement.new(req_str).satisfied_by?(version)
    end

    def initialize
      @replaced_methods = {}
      backport_ext_builder_monitor
    end

    def version
      self.class.version
    end

    def provides?(req_str)
      self.class.provides?(req_str)
    end

    def build_args
      Gem::Command.build_args
    end

    def build_args=(args)
      Gem::Command.build_args = args
    end

    def loaded_specs(name)
      Gem.loaded_specs[name]
    end

    def add_to_load_path(paths)
      return Gem.add_to_load_path(*paths) if Gem.respond_to?(:add_to_load_path)

      if insert_index = Gem.load_path_insert_index
        # Gem directories must come after -I and ENV['RUBYLIB']
        $LOAD_PATH.insert(insert_index, *paths)
      else
        # We are probably testing in core, -I and RUBYLIB don't apply
        $LOAD_PATH.unshift(*paths)
      end
    end

    def mark_loaded(spec)
      if spec.respond_to?(:activated=)
        current = Gem.loaded_specs[spec.name]
        current.activated = false if current
        spec.activated = true
      end
      Gem.loaded_specs[spec.name] = spec
    end

    def validate(spec)
      Bundler.ui.silence { spec.validate(false) }
    rescue Gem::InvalidSpecificationException => e
      error_message = "The gemspec at #{spec.loaded_from} is not valid. Please fix this gemspec.\n" \
        "The validation error was '#{e.message}'\n"
      raise Gem::InvalidSpecificationException.new(error_message)
    rescue Errno::ENOENT
      nil
    end

    def set_installed_by_version(spec, installed_by_version = Gem::VERSION)
      return unless spec.respond_to?(:installed_by_version=)
      spec.installed_by_version = Gem::Version.create(installed_by_version)
    end

    def spec_missing_extensions?(spec, default = true)
      return spec.missing_extensions? if spec.respond_to?(:missing_extensions?)

      return false if spec_default_gem?(spec)
      return false if spec.extensions.empty?

      default
    end

    def spec_default_gem?(spec)
      spec.respond_to?(:default_gem?) && spec.default_gem?
    end

    def spec_matches_for_glob(spec, glob)
      return spec.matches_for_glob(glob) if spec.respond_to?(:matches_for_glob)

      spec.load_paths.map do |lp|
        Dir["#{lp}/#{glob}#{suffix_pattern}"]
      end.flatten(1)
    end

    def stub_set_spec(stub, spec)
      stub.instance_variable_set(:@spec, spec)
    end

    def path(obj)
      obj.to_s
    end

    def configuration
      require_relative "psyched_yaml"
      Gem.configuration
    rescue Gem::SystemExitException, LoadError => e
      Bundler.ui.error "#{e.class}: #{e.message}"
      Bundler.ui.trace e
      raise
    rescue YamlLibrarySyntaxError => e
      raise YamlSyntaxError.new(e, "Your RubyGems configuration, which is " \
        "usually located in ~/.gemrc, contains invalid YAML syntax.")
    end

    def ruby_engine
      Gem.ruby_engine
    end

    def read_binary(path)
      Gem.read_binary(path)
    end

    def inflate(obj)
      Gem::Util.inflate(obj)
    end

    def correct_for_windows_path(path)
      if Gem::Util.respond_to?(:correct_for_windows_path)
        Gem::Util.correct_for_windows_path(path)
      elsif path[0].chr == "/" && path[1].chr =~ /[a-z]/i && path[2].chr == ":"
        path[1..-1]
      else
        path
      end
    end

    def sources=(val)
      # Gem.configuration creates a new Gem::ConfigFile, which by default will read ~/.gemrc
      # If that file exists, its settings (including sources) will overwrite the values we
      # are about to set here. In order to avoid that, we force memoizing the config file now.
      configuration

      Gem.sources = val
    end

    def sources
      Gem.sources
    end

    def gem_dir
      Gem.dir
    end

    def gem_bindir
      Gem.bindir
    end

    def user_home
      Gem.user_home
    end

    def gem_path
      Gem.path
    end

    def reset
      Gem::Specification.reset
    end

    def post_reset_hooks
      Gem.post_reset_hooks
    end

    def suffix_pattern
      Gem.suffix_pattern
    end

    def gem_cache
      gem_path.map {|p| File.expand_path("cache", p) }
    end

    def spec_cache_dirs
      @spec_cache_dirs ||= begin
        dirs = gem_path.map {|dir| File.join(dir, "specifications") }
        dirs << Gem.spec_cache_dir if Gem.respond_to?(:spec_cache_dir) # Not in RubyGems 2.0.3 or earlier
        dirs.uniq.select {|dir| File.directory? dir }
      end
    end

    def marshal_spec_dir
      Gem::MARSHAL_SPEC_DIR
    end

    def clear_paths
      Gem.clear_paths
    end

    def bin_path(gem, bin, ver)
      Gem.bin_path(gem, bin, ver)
    end

    def loaded_gem_paths
      loaded_gem_paths = Gem.loaded_specs.map {|_, s| s.full_require_paths }
      loaded_gem_paths.flatten
    end

    def load_plugins
      Gem.load_plugins if Gem.respond_to?(:load_plugins)
    end

    def load_plugin_files(files)
      Gem.load_plugin_files(files) if Gem.respond_to?(:load_plugin_files)
    end

    def load_env_plugins
      Gem.load_env_plugins if Gem.respond_to?(:load_env_plugins)
    end

    def ui=(obj)
      Gem::DefaultUserInteraction.ui = obj
    end

    def ext_lock
      EXT_LOCK
    end

    def with_build_args(args)
      ext_lock.synchronize do
        old_args = build_args
        begin
          self.build_args = args
          yield
        ensure
          self.build_args = old_args
        end
      end
    end

    def spec_from_gem(path, policy = nil)
      require "rubygems/security"
      require_relative "psyched_yaml"
      gem_from_path(path, security_policies[policy]).spec
    rescue Exception, Gem::Exception, Gem::Security::Exception => e # rubocop:disable Lint/RescueException
      if e.is_a?(Gem::Security::Exception) ||
          e.message =~ /unknown trust policy|unsigned gem/i ||
          e.message =~ /couldn't verify (meta)?data signature/i
        raise SecurityError,
          "The gem #{File.basename(path, ".gem")} can't be installed because " \
          "the security policy didn't allow it, with the message: #{e.message}"
      else
        raise e
      end
    end

    def build_gem(gem_dir, spec)
      build(spec)
    end

    def security_policy_keys
      %w[High Medium Low AlmostNo No].map {|level| "#{level}Security" }
    end

    def security_policies
      @security_policies ||= begin
        require "rubygems/security"
        Gem::Security::Policies
      rescue LoadError, NameError
        {}
      end
    end

    def reverse_rubygems_kernel_mixin
      # Disable rubygems' gem activation system
      kernel = (class << ::Kernel; self; end)
      [kernel, ::Kernel].each do |k|
        if k.private_method_defined?(:gem_original_require)
          redefine_method(k, :require, k.instance_method(:gem_original_require))
        end
      end
    end

    def replace_gem(specs, specs_by_name)
      reverse_rubygems_kernel_mixin

      executables = nil

      kernel = (class << ::Kernel; self; end)
      [kernel, ::Kernel].each do |kernel_class|
        redefine_method(kernel_class, :gem) do |dep, *reqs|
          if executables && executables.include?(File.basename(caller.first.split(":").first))
            break
          end

          reqs.pop if reqs.last.is_a?(Hash)

          unless dep.respond_to?(:name) && dep.respond_to?(:requirement)
            dep = Gem::Dependency.new(dep, reqs)
          end

          if spec = specs_by_name[dep.name]
            return true if dep.matches_spec?(spec)
          end

          message = if spec.nil?
            target_file = begin
                            Bundler.default_gemfile.basename
                          rescue GemfileNotFound
                            "inline Gemfile"
                          end
            "#{dep.name} is not part of the bundle." \
            " Add it to your #{target_file}."
          else
            "can't activate #{dep}, already activated #{spec.full_name}. " \
            "Make sure all dependencies are added to Gemfile."
          end

          e = Gem::LoadError.new(message)
          e.name = dep.name
          if e.respond_to?(:requirement=)
            e.requirement = dep.requirement
          elsif e.respond_to?(:version_requirement=)
            e.version_requirement = dep.requirement
          end
          raise e
        end

        # backwards compatibility shim, see https://github.com/rubygems/bundler/issues/5102
        kernel_class.send(:public, :gem) if Bundler.feature_flag.setup_makes_kernel_gem_public?
      end
    end

    # Used to make bin stubs that are not created by bundler work
    # under bundler. The new Gem.bin_path only considers gems in
    # +specs+
    def replace_bin_path(specs_by_name)
      gem_class = (class << Gem; self; end)

      redefine_method(gem_class, :find_spec_for_exe) do |gem_name, *args|
        exec_name = args.first
        raise ArgumentError, "you must supply exec_name" unless exec_name

        spec_with_name = specs_by_name[gem_name]
        matching_specs_by_exec_name = specs_by_name.values.select {|s| s.executables.include?(exec_name) }
        spec = matching_specs_by_exec_name.delete(spec_with_name)

        unless spec || !matching_specs_by_exec_name.empty?
          message = "can't find executable #{exec_name} for gem #{gem_name}"
          if spec_with_name.nil?
            message += ". #{gem_name} is not currently included in the bundle, " \
                       "perhaps you meant to add it to your #{Bundler.default_gemfile.basename}?"
          end
          raise Gem::Exception, message
        end

        unless spec
          spec = matching_specs_by_exec_name.shift
          warn \
            "Bundler is using a binstub that was created for a different gem (#{spec.name}).\n" \
            "You should run `bundle binstub #{gem_name}` " \
            "to work around a system/bundle conflict."
        end

        unless matching_specs_by_exec_name.empty?
          conflicting_names = matching_specs_by_exec_name.map(&:name).join(", ")
          warn \
            "The `#{exec_name}` executable in the `#{spec.name}` gem is being loaded, but it's also present in other gems (#{conflicting_names}).\n" \
            "If you meant to run the executable for another gem, make sure you use a project specific binstub (`bundle binstub <gem_name>`).\n" \
            "If you plan to use multiple conflicting executables, generate binstubs for them and disambiguate their names."
        end

        spec
      end

      redefine_method(gem_class, :activate_bin_path) do |name, *args|
        exec_name = args.first
        return ENV["BUNDLE_BIN_PATH"] if exec_name == "bundle"

        # Copy of Rubygems activate_bin_path impl
        requirement = args.last
        spec = find_spec_for_exe name, exec_name, [requirement]

        gem_bin = File.join(spec.full_gem_path, spec.bindir, exec_name)
        gem_from_path_bin = File.join(File.dirname(spec.loaded_from), spec.bindir, exec_name)
        File.exist?(gem_bin) ? gem_bin : gem_from_path_bin
      end

      redefine_method(gem_class, :bin_path) do |name, *args|
        exec_name = args.first
        return ENV["BUNDLE_BIN_PATH"] if exec_name == "bundle"

        spec = find_spec_for_exe(name, *args)
        exec_name ||= spec.default_executable

        gem_bin = File.join(spec.full_gem_path, spec.bindir, exec_name)
        gem_from_path_bin = File.join(File.dirname(spec.loaded_from), spec.bindir, exec_name)
        File.exist?(gem_bin) ? gem_bin : gem_from_path_bin
      end
    end

    # Replace or hook into RubyGems to provide a bundlerized view
    # of the world.
    def replace_entrypoints(specs)
      specs_by_name = add_default_gems_to(specs)

      replace_gem(specs, specs_by_name)
      stub_rubygems(specs)
      replace_bin_path(specs_by_name)

      Gem.clear_paths
    end

    # Add default gems not already present in specs, and return them as a hash.
    def add_default_gems_to(specs)
      specs_by_name = specs.reduce({}) do |h, s|
        h[s.name] = s
        h
      end

      Bundler.rubygems.default_stubs.each do |stub|
        default_spec = stub.to_spec
        default_spec_name = default_spec.name
        next if specs_by_name.key?(default_spec_name)

        specs << default_spec
        specs_by_name[default_spec_name] = default_spec
      end

      specs_by_name
    end

    def undo_replacements
      @replaced_methods.each do |(sym, klass), method|
        redefine_method(klass, sym, method)
      end
      if Binding.public_method_defined?(:source_location)
        post_reset_hooks.reject! {|proc| proc.binding.source_location[0] == __FILE__ }
      else
        post_reset_hooks.reject! {|proc| proc.binding.eval("__FILE__") == __FILE__ }
      end
      @replaced_methods.clear
    end

    def redefine_method(klass, method, unbound_method = nil, &block)
      visibility = method_visibility(klass, method)
      begin
        if (instance_method = klass.instance_method(method)) && method != :initialize
          # doing this to ensure we also get private methods
          klass.send(:remove_method, method)
        end
      rescue NameError
        # method isn't defined
        nil
      end
      @replaced_methods[[method, klass]] = instance_method
      if unbound_method
        klass.send(:define_method, method, unbound_method)
        klass.send(visibility, method)
      elsif block
        klass.send(:define_method, method, &block)
        klass.send(visibility, method)
      end
    end

    def method_visibility(klass, method)
      if klass.private_method_defined?(method)
        :private
      elsif klass.protected_method_defined?(method)
        :protected
      else
        :public
      end
    end

    def stub_rubygems(specs)
      Gem::Specification.all = specs

      Gem.post_reset do
        Gem::Specification.all = specs
      end

      redefine_method((class << Gem; self; end), :finish_resolve) do |*|
        []
      end
    end

    def plain_specs
      Gem::Specification._all
    end

    def plain_specs=(specs)
      Gem::Specification.all = specs
    end

    def fetch_specs(remote, name)
      path = remote.uri.to_s + "#{name}.#{Gem.marshal_version}.gz"
      fetcher = gem_remote_fetcher
      fetcher.headers = { "X-Gemfile-Source" => remote.original_uri.to_s } if remote.original_uri
      string = fetcher.fetch_path(path)
      Bundler.load_marshal(string)
    rescue Gem::RemoteFetcher::FetchError => e
      # it's okay for prerelease to fail
      raise e unless name == "prerelease_specs"
    end

    def fetch_all_remote_specs(remote)
      specs = fetch_specs(remote, "specs")
      pres = fetch_specs(remote, "prerelease_specs") || []

      specs.concat(pres)
    end

    def download_gem(spec, uri, path)
      uri = Bundler.settings.mirror_for(uri)
      fetcher = gem_remote_fetcher
      fetcher.headers = { "X-Gemfile-Source" => spec.remote.original_uri.to_s } if spec.remote.original_uri
      Bundler::Retry.new("download gem from #{uri}").attempts do
        fetcher.download(spec, uri, path)
      end
    rescue Gem::RemoteFetcher::FetchError => e
      raise Bundler::HTTPError, "Could not download gem from #{uri} due to underlying error <#{e.message}>"
    end

    def gem_remote_fetcher
      require "rubygems/remote_fetcher"
      proxy = configuration[:http_proxy]
      Gem::RemoteFetcher.new(proxy)
    end

    def gem_from_path(path, policy = nil)
      require "rubygems/package"
      p = Gem::Package.new(path)
      p.security_policy = policy if policy
      p
    end

    def build(spec, skip_validation = false)
      require "rubygems/package"
      Gem::Package.build(spec, skip_validation)
    end

    def repository_subdirectories
      Gem::REPOSITORY_SUBDIRECTORIES
    end

    def install_with_build_args(args)
      yield
    end

    def path_separator
      Gem.path_separator
    end

    def all_specs
      Gem::Specification.stubs.map do |stub|
        StubSpecification.from_stub(stub)
      end
    end

    def backport_ext_builder_monitor
      # So we can avoid requiring "rubygems/ext" in its entirety
      Gem.module_eval <<-RUBY, __FILE__, __LINE__ + 1
        module Ext
        end
      RUBY

      require "rubygems/ext/builder"

      Gem::Ext::Builder.class_eval do
        unless const_defined?(:CHDIR_MONITOR)
          const_set(:CHDIR_MONITOR, EXT_LOCK)
        end

        remove_const(:CHDIR_MUTEX) if const_defined?(:CHDIR_MUTEX)
        const_set(:CHDIR_MUTEX, const_get(:CHDIR_MONITOR))
      end
    end

    def find_name(name)
      Gem::Specification.stubs_for(name).map(&:to_spec)
    end

    if Gem::Specification.respond_to?(:default_stubs)
      def default_stubs
        Gem::Specification.default_stubs("*.gemspec")
      end
    else
      def default_stubs
        Gem::Specification.send(:default_stubs, "*.gemspec")
      end
    end

    def use_gemdeps(gemfile)
      ENV["BUNDLE_GEMFILE"] ||= File.expand_path(gemfile)
      require_relative "gemdeps"
      runtime = Bundler.setup
      activated_spec_names = runtime.requested_specs.map(&:to_spec).sort_by(&:name)
      [Gemdeps.new(runtime), activated_spec_names]
    end
  end

  def self.rubygems
    @rubygems ||= RubygemsIntegration.new
  end
end
PK;H[��$��>share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-doctor.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-DOCTOR" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-doctor\fR \- Checks the bundle for common problems
.
.SH "SYNOPSIS"
\fBbundle doctor\fR [\-\-quiet] [\-\-gemfile=GEMFILE]
.
.SH "DESCRIPTION"
Checks your Gemfile and gem environment for common problems\. If issues are detected, Bundler prints them and exits status 1\. Otherwise, Bundler prints a success message and exits status 0\.
.
.P
Examples of common problems caught by bundle\-doctor include:
.
.IP "\(bu" 4
Invalid Bundler settings
.
.IP "\(bu" 4
Mismatched Ruby versions
.
.IP "\(bu" 4
Mismatched platforms
.
.IP "\(bu" 4
Uninstalled gems
.
.IP "\(bu" 4
Missing dependencies
.
.IP "" 0
.
.SH "OPTIONS"
.
.TP
\fB\-\-quiet\fR
Only output warnings and errors\.
.
.TP
\fB\-\-gemfile=<gemfile>\fR
The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project\'s root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.

PK;H[>�^gHH<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle.1.ronnnu�[���bundle(1) -- Ruby Dependency Management
=======================================

## SYNOPSIS

`bundle` COMMAND [--no-color] [--verbose] [ARGS]

## DESCRIPTION

Bundler manages an `application's dependencies` through its entire life
across many machines systematically and repeatably.

See [the bundler website](https://bundler.io) for information on getting
started, and Gemfile(5) for more information on the `Gemfile` format.

## OPTIONS

* `--no-color`:
  Print all output without color

* `--retry`, `-r`:
  Specify the number of times you wish to attempt network commands

* `--verbose`, `-V`:
  Print out additional logging information

## BUNDLE COMMANDS

We divide `bundle` subcommands into primary commands and utilities:

## PRIMARY COMMANDS

* [`bundle install(1)`](bundle-install.1.html):
  Install the gems specified by the `Gemfile` or `Gemfile.lock`

* [`bundle update(1)`](bundle-update.1.html):
  Update dependencies to their latest versions

* [`bundle package(1)`](bundle-package.1.html):
  Package the .gem files required by your application into the
  `vendor/cache` directory

* [`bundle exec(1)`](bundle-exec.1.html):
  Execute a script in the current bundle

* [`bundle config(1)`](bundle-config.1.html):
  Specify and read configuration options for Bundler

* `bundle help(1)`:
  Display detailed help for each subcommand

## UTILITIES

* [`bundle add(1)`](bundle-add.1.html):
  Add the named gem to the Gemfile and run `bundle install`

* [`bundle binstubs(1)`](bundle-binstubs.1.html):
  Generate binstubs for executables in a gem

* [`bundle check(1)`](bundle-check.1.html):
  Determine whether the requirements for your application are installed
  and available to Bundler

* [`bundle show(1)`](bundle-show.1.html):
  Show the source location of a particular gem in the bundle

* [`bundle outdated(1)`](bundle-outdated.1.html):
  Show all of the outdated gems in the current bundle

* `bundle console(1)`:
  Start an IRB session in the current bundle

* [`bundle open(1)`](bundle-open.1.html):
  Open an installed gem in the editor

* [`bundle lock(1)`](bundle-lock.1.html):
  Generate a lockfile for your dependencies

* [`bundle viz(1)`](bundle-viz.1.html):
  Generate a visual representation of your dependencies

* [`bundle init(1)`](bundle-init.1.html):
  Generate a simple `Gemfile`, placed in the current directory

* [`bundle gem(1)`](bundle-gem.1.html):
  Create a simple gem, suitable for development with Bundler

* [`bundle platform(1)`](bundle-platform.1.html):
  Display platform compatibility information

* [`bundle clean(1)`](bundle-clean.1.html):
  Clean up unused gems in your Bundler directory

* [`bundle doctor(1)`](bundle-doctor.1.html):
  Display warnings about common problems

* [`bundle remove(1)`](bundle-remove.1.html):
  Removes gems from the Gemfile

## PLUGINS

When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
Bundler will try to find an executable on your path named `bundler-<command>`
and execute it, passing down any extra arguments to it.

## OBSOLETE

These commands are obsolete and should no longer be used:

* `bundle cache(1)`
* `bundle show(1)`
PK;H[�ߕ}}Eshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-platform.1.ronnnu�[���bundle-platform(1) -- Displays platform compatibility information
=================================================================

## SYNOPSIS

`bundle platform` [--ruby]

## DESCRIPTION

`platform` will display information from your Gemfile, Gemfile.lock, and Ruby
VM about your platform.

For instance, using this Gemfile(5):

    source "https://rubygems.org"

    ruby "1.9.3"

    gem "rack"

If you run `bundle platform` on Ruby 1.9.3, it will display the following output:

    Your platform is: x86_64-linux

    Your app has gems that work on these platforms:
    * ruby

    Your Gemfile specifies a Ruby version requirement:
    * ruby 1.9.3

    Your current platform satisfies the Ruby version requirement.

`platform` will list all the platforms in your `Gemfile.lock` as well as the
`ruby` directive if applicable from your Gemfile(5). It will also let you know
if the `ruby` directive requirement has been met. If `ruby` directive doesn't
match the running Ruby VM, it will tell you what part does not.

## OPTIONS

* `--ruby`:
  It will display the ruby directive information, so you don't have to
  parse it from the Gemfile(5).
PK;H[9IG���Ashare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-lock.1.ronnnu�[���bundle-lock(1) -- Creates / Updates a lockfile without installing
=================================================================

## SYNOPSIS

`bundle lock` [--update]
              [--local]
              [--print]
              [--lockfile=PATH]
              [--full-index]
              [--add-platform]
              [--remove-platform]
              [--patch]
              [--minor]
              [--major]
              [--strict]
              [--conservative]

## DESCRIPTION

Lock the gems specified in Gemfile.

## OPTIONS

* `--update=<*gems>`:
  Ignores the existing lockfile. Resolve then updates lockfile. Taking a list
  of gems or updating all gems if no list is given.

* `--local`:
  Do not attempt to connect to `rubygems.org`. Instead, Bundler will use the
  gems already present in Rubygems' cache or in `vendor/cache`. Note that if a
  appropriate platform-specific gem exists on `rubygems.org` it will not be
  found.

* `--print`:
  Prints the lockfile to STDOUT instead of writing to the file system.

* `--lockfile=<path>`:
  The path where the lockfile should be written to.

* `--full-index`:
  Fall back to using the single-file index of all gems.

* `--add-platform`:
  Add a new platform to the lockfile, re-resolving for the addition of that
  platform.

* `--remove-platform`:
  Remove a platform from the lockfile.

* `--patch`:
  If updating, prefer updating only to next patch version.

* `--minor`:
  If updating, prefer updating only to next minor version.

* `--major`:
  If updating, prefer updating to next major version (default).

* `--strict`:
  If updating, do not allow any gem to be updated past latest --patch | --minor | --major.

* `--conservative`:
  If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated.

## UPDATING ALL GEMS

If you run `bundle lock` with `--update` option without list of gems, bundler will
ignore any previously installed gems and resolve all dependencies again based
on the latest versions of all gems available in the sources.

## UPDATING A LIST OF GEMS

Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of
the gems that you specified locked to the versions in the `Gemfile.lock`.

For instance, you only want to update `nokogiri`, run `bundle lock --update nokogiri`.

Bundler will update `nokogiri` and any of its dependencies, but leave the rest of the
gems that you specified locked to the versions in the `Gemfile.lock`.

## SUPPORTING OTHER PLATFORMS

If you want your bundle to support platforms other than the one you're running
locally, you can run `bundle lock --add-platform PLATFORM` to add PLATFORM to
the lockfile, force bundler to re-resolve and consider the new platform when
picking gems, all without needing to have a machine that matches PLATFORM handy
to install those platform-specific gems on.

For a full explanation of gem platforms, see `gem help platform`.

## PATCH LEVEL OPTIONS

See [bundle update(1)](bundle-update.1.html) for details.
PK;H[�^	;ff<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-exec.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-EXEC" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-exec\fR \- Execute a command in the context of the bundle
.
.SH "SYNOPSIS"
\fBbundle exec\fR [\-\-keep\-file\-descriptors] \fIcommand\fR
.
.SH "DESCRIPTION"
This command executes the command, making all gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] available to \fBrequire\fR in Ruby programs\.
.
.P
Essentially, if you would normally have run something like \fBrspec spec/my_spec\.rb\fR, and you want to use the gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] and installed via bundle install(1) \fIbundle\-install\.1\.html\fR, you should run \fBbundle exec rspec spec/my_spec\.rb\fR\.
.
.P
Note that \fBbundle exec\fR does not require that an executable is available on your shell\'s \fB$PATH\fR\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-keep\-file\-descriptors\fR
Exec in Ruby 2\.0 began discarding non\-standard file descriptors\. When this flag is passed, exec will revert to the 1\.9 behaviour of passing all file descriptors to the new process\.
.
.SH "BUNDLE INSTALL \-\-BINSTUBS"
If you use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR, Bundler will automatically create a directory (which defaults to \fBapp_root/bin\fR) containing all of the executables available from gems in the bundle\.
.
.P
After using \fB\-\-binstubs\fR, \fBbin/rspec spec/my_spec\.rb\fR is identical to \fBbundle exec rspec spec/my_spec\.rb\fR\.
.
.SH "ENVIRONMENT MODIFICATIONS"
\fBbundle exec\fR makes a number of changes to the shell environment, then executes the command you specify in full\.
.
.IP "\(bu" 4
make sure that it\'s still possible to shell out to \fBbundle\fR from inside a command invoked by \fBbundle exec\fR (using \fB$BUNDLE_BIN_PATH\fR)
.
.IP "\(bu" 4
put the directory containing executables (like \fBrails\fR, \fBrspec\fR, \fBrackup\fR) for your bundle on \fB$PATH\fR
.
.IP "\(bu" 4
make sure that if bundler is invoked in the subshell, it uses the same \fBGemfile\fR (by setting \fBBUNDLE_GEMFILE\fR)
.
.IP "\(bu" 4
add \fB\-rbundler/setup\fR to \fB$RUBYOPT\fR, which makes sure that Ruby programs invoked in the subshell can see the gems in the bundle
.
.IP "" 0
.
.P
It also modifies Rubygems:
.
.IP "\(bu" 4
disallow loading additional gems not in the bundle
.
.IP "\(bu" 4
modify the \fBgem\fR method to be a no\-op if a gem matching the requirements is in the bundle, and to raise a \fBGem::LoadError\fR if it\'s not
.
.IP "\(bu" 4
Define \fBGem\.refresh\fR to be a no\-op, since the source index is always frozen when using bundler, and to prevent gems from the system leaking into the environment
.
.IP "\(bu" 4
Override \fBGem\.bin_path\fR to use the gems in the bundle, making system executables work
.
.IP "\(bu" 4
Add all gems in the bundle into Gem\.loaded_specs
.
.IP "" 0
.
.P
Finally, \fBbundle exec\fR also implicitly modifies \fBGemfile\.lock\fR if the lockfile and the Gemfile do not match\. Bundler needs the Gemfile to determine things such as a gem\'s groups, \fBautorequire\fR, and platforms, etc\., and that information isn\'t stored in the lockfile\. The Gemfile and lockfile must be synced in order to \fBbundle exec\fR successfully, so \fBbundle exec\fR updates the lockfile beforehand\.
.
.SS "Loading"
By default, when attempting to \fBbundle exec\fR to a file with a ruby shebang, Bundler will \fBKernel\.load\fR that file instead of using \fBKernel\.exec\fR\. For the vast majority of cases, this is a performance improvement\. In a rare few cases, this could cause some subtle side\-effects (such as dependence on the exact contents of \fB$0\fR or \fB__FILE__\fR) and the optimization can be disabled by enabling the \fBdisable_exec_load\fR setting\.
.
.SS "Shelling out"
Any Ruby code that opens a subshell (like \fBsystem\fR, backticks, or \fB%x{}\fR) will automatically use the current Bundler environment\. If you need to shell out to a Ruby command that is not part of your current bundle, use the \fBwith_clean_env\fR method with a block\. Any subshells created inside the block will be given the environment present before Bundler was activated\. For example, Homebrew commands run Ruby, but don\'t work inside a bundle:
.
.IP "" 4
.
.nf

Bundler\.with_clean_env do
  `brew install wget`
end
.
.fi
.
.IP "" 0
.
.P
Using \fBwith_clean_env\fR is also necessary if you are shelling out to a different bundle\. Any Bundler commands run in a subshell will inherit the current Gemfile, so commands that need to run in the context of a different bundle also need to use \fBwith_clean_env\fR\.
.
.IP "" 4
.
.nf

Bundler\.with_clean_env do
  Dir\.chdir "/other/bundler/project" do
    `bundle exec \./script`
  end
end
.
.fi
.
.IP "" 0
.
.P
Bundler provides convenience helpers that wrap \fBsystem\fR and \fBexec\fR, and they can be used like this:
.
.IP "" 4
.
.nf

Bundler\.clean_system(\'brew install wget\')
Bundler\.clean_exec(\'brew install wget\')
.
.fi
.
.IP "" 0
.
.SH "RUBYGEMS PLUGINS"
At present, the Rubygems plugin system requires all files named \fBrubygems_plugin\.rb\fR on the load path of \fIany\fR installed gem when any Ruby code requires \fBrubygems\.rb\fR\. This includes executables installed into the system, like \fBrails\fR, \fBrackup\fR, and \fBrspec\fR\.
.
.P
Since Rubygems plugins can contain arbitrary Ruby code, they commonly end up activating themselves or their dependencies\.
.
.P
For instance, the \fBgemcutter 0\.5\fR gem depended on \fBjson_pure\fR\. If you had that version of gemcutter installed (even if you \fIalso\fR had a newer version without this problem), Rubygems would activate \fBgemcutter 0\.5\fR and \fBjson_pure <latest>\fR\.
.
.P
If your Gemfile(5) also contained \fBjson_pure\fR (or a gem with a dependency on \fBjson_pure\fR), the latest version on your system might conflict with the version in your Gemfile(5), or the snapshot version in your \fBGemfile\.lock\fR\.
.
.P
If this happens, bundler will say:
.
.IP "" 4
.
.nf

You have already activated json_pure 1\.4\.6 but your Gemfile
requires json_pure 1\.4\.3\. Consider using bundle exec\.
.
.fi
.
.IP "" 0
.
.P
In this situation, you almost certainly want to remove the underlying gem with the problematic gem plugin\. In general, the authors of these plugins (in this case, the \fBgemcutter\fR gem) have released newer versions that are more careful in their plugins\.
.
.P
You can find a list of all the gems containing gem plugins by running
.
.IP "" 4
.
.nf

ruby \-rrubygems \-e "puts Gem\.find_files(\'rubygems_plugin\.rb\')"
.
.fi
.
.IP "" 0
.
.P
At the very least, you should remove all but the newest version of each gem plugin, and also remove all gem plugins that you aren\'t using (\fBgem uninstall gem_name\fR)\.
PK<H[w,w��1�1Cshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-update.1.ronnnu�[���bundle-update(1) -- Update your gems to the latest available versions
=====================================================================

## SYNOPSIS

`bundle update` <*gems> [--all]
                        [--group=NAME]
                        [--source=NAME]
                        [--local]
                        [--ruby]
                        [--bundler[=VERSION]]
                        [--full-index]
                        [--jobs=JOBS]
                        [--quiet]
                        [--patch|--minor|--major]
                        [--redownload]
                        [--strict]
                        [--conservative]

## DESCRIPTION

Update the gems specified (all gems, if `--all` flag is used), ignoring
the previously installed gems specified in the `Gemfile.lock`. In
general, you should use [bundle install(1)](bundle-install.1.html) to install the same exact
gems and versions across machines.

You would use `bundle update` to explicitly update the version of a
gem.

## OPTIONS

* `--all`:
  Update all gems specified in Gemfile.

* `--group=<name>`, `-g=[<name>]`:
  Only update the gems in the specified group. For instance, you can update all gems
  in the development group with `bundle update --group development`. You can also
  call `bundle update rails --group test` to update the rails gem and all gems in
  the test group, for example.

* `--source=<name>`:
  The name of a `:git` or `:path` source used in the Gemfile(5). For
  instance, with a `:git` source of `http://github.com/rails/rails.git`,
  you would call `bundle update --source rails`

* `--local`:
  Do not attempt to fetch gems remotely and use the gem cache instead.

* `--ruby`:
  Update the locked version of Ruby to the current version of Ruby.

* `--bundler`:
  Update the locked version of bundler to the invoked bundler version.

* `--full-index`:
  Fall back to using the single-file index of all gems.

* `--jobs=[<number>]`, `-j[<number>]`:
  Specify the number of jobs to run in parallel. The default is `1`.

* `--retry=[<number>]`:
  Retry failed network or git requests for <number> times.

* `--quiet`:
  Only output warnings and errors.

* `--redownload`:
  Force downloading every gem.

* `--patch`:
  Prefer updating only to next patch version.

* `--minor`:
  Prefer updating only to next minor version.

* `--major`:
  Prefer updating to next major version (default).

* `--strict`:
  Do not allow any gem to be updated past latest `--patch` | `--minor` | `--major`.

* `--conservative`:
  Use bundle install conservative update behavior and do not allow indirect dependencies to be updated.

## UPDATING ALL GEMS

If you run `bundle update --all`, bundler will ignore
any previously installed gems and resolve all dependencies again
based on the latest versions of all gems available in the sources.

Consider the following Gemfile(5):

    source "https://rubygems.org"

    gem "rails", "3.0.0.rc"
    gem "nokogiri"

When you run [bundle install(1)](bundle-install.1.html) the first time, bundler will resolve
all of the dependencies, all the way down, and install what you need:

    Fetching gem metadata from https://rubygems.org/.........
    Resolving dependencies...
    Installing builder 2.1.2
    Installing abstract 1.0.0
    Installing rack 1.2.8
    Using bundler 1.7.6
    Installing rake 10.4.0
    Installing polyglot 0.3.5
    Installing mime-types 1.25.1
    Installing i18n 0.4.2
    Installing mini_portile 0.6.1
    Installing tzinfo 0.3.42
    Installing rack-mount 0.6.14
    Installing rack-test 0.5.7
    Installing treetop 1.4.15
    Installing thor 0.14.6
    Installing activesupport 3.0.0.rc
    Installing erubis 2.6.6
    Installing activemodel 3.0.0.rc
    Installing arel 0.4.0
    Installing mail 2.2.20
    Installing activeresource 3.0.0.rc
    Installing actionpack 3.0.0.rc
    Installing activerecord 3.0.0.rc
    Installing actionmailer 3.0.0.rc
    Installing railties 3.0.0.rc
    Installing rails 3.0.0.rc
    Installing nokogiri 1.6.5

    Bundle complete! 2 Gemfile dependencies, 26 gems total.
    Use `bundle show [gemname]` to see where a bundled gem is installed.

As you can see, even though you have two gems in the Gemfile(5), your application
needs 26 different gems in order to run. Bundler remembers the exact versions
it installed in `Gemfile.lock`. The next time you run [bundle install(1)](bundle-install.1.html), bundler skips
the dependency resolution and installs the same gems as it installed last time.

After checking in the `Gemfile.lock` into version control and cloning it on another
machine, running [bundle install(1)](bundle-install.1.html) will _still_ install the gems that you installed
last time. You don't need to worry that a new release of `erubis` or `mail` changes
the gems you use.

However, from time to time, you might want to update the gems you are using to the
newest versions that still match the gems in your Gemfile(5).

To do this, run `bundle update --all`, which will ignore the `Gemfile.lock`, and resolve
all the dependencies again. Keep in mind that this process can result in a significantly
different set of the 25 gems, based on the requirements of new gems that the gem
authors released since the last time you ran `bundle update --all`.

## UPDATING A LIST OF GEMS

Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the
gems that you specified locked to the versions in the `Gemfile.lock`.

For instance, in the scenario above, imagine that `nokogiri` releases version `1.4.4`, and
you want to update it _without_ updating Rails and all of its dependencies. To do this,
run `bundle update nokogiri`.

Bundler will update `nokogiri` and any of its dependencies, but leave alone Rails and
its dependencies.

## OVERLAPPING DEPENDENCIES

Sometimes, multiple gems declared in your Gemfile(5) are satisfied by the same
second-level dependency. For instance, consider the case of `thin` and
`rack-perftools-profiler`.

    source "https://rubygems.org"

    gem "thin"
    gem "rack-perftools-profiler"

The `thin` gem depends on `rack >= 1.0`, while `rack-perftools-profiler` depends
on `rack ~> 1.0`. If you run bundle install, you get:

    Fetching source index for https://rubygems.org/
    Installing daemons (1.1.0)
    Installing eventmachine (0.12.10) with native extensions
    Installing open4 (1.0.1)
    Installing perftools.rb (0.4.7) with native extensions
    Installing rack (1.2.1)
    Installing rack-perftools_profiler (0.0.2)
    Installing thin (1.2.7) with native extensions
    Using bundler (1.0.0.rc.3)

In this case, the two gems have their own set of dependencies, but they share
`rack` in common. If you run `bundle update thin`, bundler will update `daemons`,
`eventmachine` and `rack`, which are dependencies of `thin`, but not `open4` or
`perftools.rb`, which are dependencies of `rack-perftools_profiler`. Note that
`bundle update thin` will update `rack` even though it's _also_ a dependency of
`rack-perftools_profiler`.

In short, by default, when you update a gem using `bundle update`, bundler will
update all dependencies of that gem, including those that are also dependencies
of another gem.

To prevent updating indirect dependencies, prior to version 1.14 the only option
was the `CONSERVATIVE UPDATING` behavior in [bundle install(1)](bundle-install.1.html):

In this scenario, updating the `thin` version manually in the Gemfile(5),
and then running [bundle install(1)](bundle-install.1.html) will only update `daemons` and `eventmachine`,
but not `rack`. For more information, see the `CONSERVATIVE UPDATING` section
of [bundle install(1)](bundle-install.1.html).

Starting with 1.14, specifying the `--conservative` option will also prevent indirect
dependencies from being updated.

## PATCH LEVEL OPTIONS

Version 1.14 introduced 4 patch-level options that will influence how gem
versions are resolved. One of the following options can be used: `--patch`,
`--minor` or `--major`. `--strict` can be added to further influence resolution.

* `--patch`:
  Prefer updating only to next patch version.

* `--minor`:
  Prefer updating only to next minor version.

* `--major`:
  Prefer updating to next major version (default).

* `--strict`:
  Do not allow any gem to be updated past latest `--patch` | `--minor` | `--major`.

When Bundler is resolving what versions to use to satisfy declared
requirements in the Gemfile or in parent gems, it looks up all
available versions, filters out any versions that don't satisfy
the requirement, and then, by default, sorts them from newest to
oldest, considering them in that order.

Providing one of the patch level options (e.g. `--patch`) changes the
sort order of the satisfying versions, causing Bundler to consider the
latest `--patch` or `--minor` version available before other versions.
Note that versions outside the stated patch level could still be
resolved to if necessary to find a suitable dependency graph.

For example, if gem 'foo' is locked at 1.0.2, with no gem requirement
defined in the Gemfile, and versions 1.0.3, 1.0.4, 1.1.0, 1.1.1, 2.0.0
all exist, the default order of preference by default (`--major`) will
be "2.0.0, 1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2".

If the `--patch` option is used, the order of preference will change to
"1.0.4, 1.0.3, 1.0.2, 1.1.1, 1.1.0, 2.0.0".

If the `--minor` option is used, the order of preference will change to
"1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2, 2.0.0".

Combining the `--strict` option with any of the patch level options
will remove any versions beyond the scope of the patch level option,
to ensure that no gem is updated that far.

To continue the previous example, if both `--patch` and `--strict`
options are used, the available versions for resolution would be
"1.0.4, 1.0.3, 1.0.2". If `--minor` and `--strict` are used, it would
be "1.1.1, 1.1.0, 1.0.4, 1.0.3, 1.0.2".

Gem requirements as defined in the Gemfile will still be the first
determining factor for what versions are available. If the gem
requirement for `foo` in the Gemfile is '~> 1.0', that will accomplish
the same thing as providing the `--minor` and `--strict` options.

## PATCH LEVEL EXAMPLES

Given the following gem specifications:

    foo 1.4.3, requires: ~> bar 2.0
    foo 1.4.4, requires: ~> bar 2.0
    foo 1.4.5, requires: ~> bar 2.1
    foo 1.5.0, requires: ~> bar 2.1
    foo 1.5.1, requires: ~> bar 3.0
    bar with versions 2.0.3, 2.0.4, 2.1.0, 2.1.1, 3.0.0

Gemfile:

    gem 'foo'

Gemfile.lock:

    foo (1.4.3)
      bar (~> 2.0)
    bar (2.0.3)

Cases:

    #  Command Line                     Result
    ------------------------------------------------------------
    1  bundle update --patch            'foo 1.4.5', 'bar 2.1.1'
    2  bundle update --patch foo        'foo 1.4.5', 'bar 2.1.1'
    3  bundle update --minor            'foo 1.5.1', 'bar 3.0.0'
    4  bundle update --minor --strict   'foo 1.5.0', 'bar 2.1.1'
    5  bundle update --patch --strict   'foo 1.4.4', 'bar 2.0.4'

In case 1, bar is upgraded to 2.1.1, a minor version increase, because
the dependency from foo 1.4.5 required it.

In case 2, only foo is requested to be unlocked, but bar is also
allowed to move because it's not a declared dependency in the Gemfile.

In case 3, bar goes up a whole major release, because a minor increase
is preferred now for foo, and when it goes to 1.5.1, it requires 3.0.0
of bar.

In case 4, foo is preferred up to a minor version, but 1.5.1 won't work
because the --strict flag removes bar 3.0.0 from consideration since
it's a major increment.

In case 5, both foo and bar have any minor or major increments removed
from consideration because of the --strict flag, so the most they can
move is up to 1.4.4 and 2.0.4.

## RECOMMENDED WORKFLOW

In general, when working with an application managed with bundler, you should
use the following workflow:

* After you create your Gemfile(5) for the first time, run

    $ bundle install

* Check the resulting `Gemfile.lock` into version control

    $ git add Gemfile.lock

* When checking out this repository on another development machine, run

    $ bundle install

* When checking out this repository on a deployment machine, run

    $ bundle install --deployment

* After changing the Gemfile(5) to reflect a new or update dependency, run

    $ bundle install

* Make sure to check the updated `Gemfile.lock` into version control

    $ git add Gemfile.lock

* If [bundle install(1)](bundle-install.1.html) reports a conflict, manually update the specific
  gems that you changed in the Gemfile(5)

    $ bundle update rails thin

* If you want to update all the gems to the latest possible versions that
  still match the gems listed in the Gemfile(5), run

    $ bundle update --all
PK<H[n��½�<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-info.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INFO" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-info\fR \- Show information for the given gem in your bundle
.
.SH "SYNOPSIS"
\fBbundle info\fR [GEM] [\-\-path]
.
.SH "DESCRIPTION"
Print the basic information about the provided GEM such as homepage, version, path and summary\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-path\fR
Print the path of the given gem

PK<H[;��7676>share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-update.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-UPDATE" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-update\fR \- Update your gems to the latest available versions
.
.SH "SYNOPSIS"
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-full\-index] [\-\-jobs=JOBS] [\-\-quiet] [\-\-patch|\-\-minor|\-\-major] [\-\-redownload] [\-\-strict] [\-\-conservative]
.
.SH "DESCRIPTION"
Update the gems specified (all gems, if \fB\-\-all\fR flag is used), ignoring the previously installed gems specified in the \fBGemfile\.lock\fR\. In general, you should use bundle install(1) \fIbundle\-install\.1\.html\fR to install the same exact gems and versions across machines\.
.
.P
You would use \fBbundle update\fR to explicitly update the version of a gem\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-all\fR
Update all gems specified in Gemfile\.
.
.TP
\fB\-\-group=<name>\fR, \fB\-g=[<name>]\fR
Only update the gems in the specified group\. For instance, you can update all gems in the development group with \fBbundle update \-\-group development\fR\. You can also call \fBbundle update rails \-\-group test\fR to update the rails gem and all gems in the test group, for example\.
.
.TP
\fB\-\-source=<name>\fR
The name of a \fB:git\fR or \fB:path\fR source used in the Gemfile(5)\. For instance, with a \fB:git\fR source of \fBhttp://github\.com/rails/rails\.git\fR, you would call \fBbundle update \-\-source rails\fR
.
.TP
\fB\-\-local\fR
Do not attempt to fetch gems remotely and use the gem cache instead\.
.
.TP
\fB\-\-ruby\fR
Update the locked version of Ruby to the current version of Ruby\.
.
.TP
\fB\-\-bundler\fR
Update the locked version of bundler to the invoked bundler version\.
.
.TP
\fB\-\-full\-index\fR
Fall back to using the single\-file index of all gems\.
.
.TP
\fB\-\-jobs=[<number>]\fR, \fB\-j[<number>]\fR
Specify the number of jobs to run in parallel\. The default is \fB1\fR\.
.
.TP
\fB\-\-retry=[<number>]\fR
Retry failed network or git requests for \fInumber\fR times\.
.
.TP
\fB\-\-quiet\fR
Only output warnings and errors\.
.
.TP
\fB\-\-redownload\fR
Force downloading every gem\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
Do not allow any gem to be updated past latest \fB\-\-patch\fR | \fB\-\-minor\fR | \fB\-\-major\fR\.
.
.TP
\fB\-\-conservative\fR
Use bundle install conservative update behavior and do not allow indirect dependencies to be updated\.
.
.SH "UPDATING ALL GEMS"
If you run \fBbundle update \-\-all\fR, bundler will ignore any previously installed gems and resolve all dependencies again based on the latest versions of all gems available in the sources\.
.
.P
Consider the following Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "rails", "3\.0\.0\.rc"
gem "nokogiri"
.
.fi
.
.IP "" 0
.
.P
When you run bundle install(1) \fIbundle\-install\.1\.html\fR the first time, bundler will resolve all of the dependencies, all the way down, and install what you need:
.
.IP "" 4
.
.nf

Fetching gem metadata from https://rubygems\.org/\.\.\.\.\.\.\.\.\.
Resolving dependencies\.\.\.
Installing builder 2\.1\.2
Installing abstract 1\.0\.0
Installing rack 1\.2\.8
Using bundler 1\.7\.6
Installing rake 10\.4\.0
Installing polyglot 0\.3\.5
Installing mime\-types 1\.25\.1
Installing i18n 0\.4\.2
Installing mini_portile 0\.6\.1
Installing tzinfo 0\.3\.42
Installing rack\-mount 0\.6\.14
Installing rack\-test 0\.5\.7
Installing treetop 1\.4\.15
Installing thor 0\.14\.6
Installing activesupport 3\.0\.0\.rc
Installing erubis 2\.6\.6
Installing activemodel 3\.0\.0\.rc
Installing arel 0\.4\.0
Installing mail 2\.2\.20
Installing activeresource 3\.0\.0\.rc
Installing actionpack 3\.0\.0\.rc
Installing activerecord 3\.0\.0\.rc
Installing actionmailer 3\.0\.0\.rc
Installing railties 3\.0\.0\.rc
Installing rails 3\.0\.0\.rc
Installing nokogiri 1\.6\.5

Bundle complete! 2 Gemfile dependencies, 26 gems total\.
Use `bundle show [gemname]` to see where a bundled gem is installed\.
.
.fi
.
.IP "" 0
.
.P
As you can see, even though you have two gems in the Gemfile(5), your application needs 26 different gems in order to run\. Bundler remembers the exact versions it installed in \fBGemfile\.lock\fR\. The next time you run bundle install(1) \fIbundle\-install\.1\.html\fR, bundler skips the dependency resolution and installs the same gems as it installed last time\.
.
.P
After checking in the \fBGemfile\.lock\fR into version control and cloning it on another machine, running bundle install(1) \fIbundle\-install\.1\.html\fR will \fIstill\fR install the gems that you installed last time\. You don\'t need to worry that a new release of \fBerubis\fR or \fBmail\fR changes the gems you use\.
.
.P
However, from time to time, you might want to update the gems you are using to the newest versions that still match the gems in your Gemfile(5)\.
.
.P
To do this, run \fBbundle update \-\-all\fR, which will ignore the \fBGemfile\.lock\fR, and resolve all the dependencies again\. Keep in mind that this process can result in a significantly different set of the 25 gems, based on the requirements of new gems that the gem authors released since the last time you ran \fBbundle update \-\-all\fR\.
.
.SH "UPDATING A LIST OF GEMS"
Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.P
For instance, in the scenario above, imagine that \fBnokogiri\fR releases version \fB1\.4\.4\fR, and you want to update it \fIwithout\fR updating Rails and all of its dependencies\. To do this, run \fBbundle update nokogiri\fR\.
.
.P
Bundler will update \fBnokogiri\fR and any of its dependencies, but leave alone Rails and its dependencies\.
.
.SH "OVERLAPPING DEPENDENCIES"
Sometimes, multiple gems declared in your Gemfile(5) are satisfied by the same second\-level dependency\. For instance, consider the case of \fBthin\fR and \fBrack\-perftools\-profiler\fR\.
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "thin"
gem "rack\-perftools\-profiler"
.
.fi
.
.IP "" 0
.
.P
The \fBthin\fR gem depends on \fBrack >= 1\.0\fR, while \fBrack\-perftools\-profiler\fR depends on \fBrack ~> 1\.0\fR\. If you run bundle install, you get:
.
.IP "" 4
.
.nf

Fetching source index for https://rubygems\.org/
Installing daemons (1\.1\.0)
Installing eventmachine (0\.12\.10) with native extensions
Installing open4 (1\.0\.1)
Installing perftools\.rb (0\.4\.7) with native extensions
Installing rack (1\.2\.1)
Installing rack\-perftools_profiler (0\.0\.2)
Installing thin (1\.2\.7) with native extensions
Using bundler (1\.0\.0\.rc\.3)
.
.fi
.
.IP "" 0
.
.P
In this case, the two gems have their own set of dependencies, but they share \fBrack\fR in common\. If you run \fBbundle update thin\fR, bundler will update \fBdaemons\fR, \fBeventmachine\fR and \fBrack\fR, which are dependencies of \fBthin\fR, but not \fBopen4\fR or \fBperftools\.rb\fR, which are dependencies of \fBrack\-perftools_profiler\fR\. Note that \fBbundle update thin\fR will update \fBrack\fR even though it\'s \fIalso\fR a dependency of \fBrack\-perftools_profiler\fR\.
.
.P
In short, by default, when you update a gem using \fBbundle update\fR, bundler will update all dependencies of that gem, including those that are also dependencies of another gem\.
.
.P
To prevent updating indirect dependencies, prior to version 1\.14 the only option was the \fBCONSERVATIVE UPDATING\fR behavior in bundle install(1) \fIbundle\-install\.1\.html\fR:
.
.P
In this scenario, updating the \fBthin\fR version manually in the Gemfile(5), and then running bundle install(1) \fIbundle\-install\.1\.html\fR will only update \fBdaemons\fR and \fBeventmachine\fR, but not \fBrack\fR\. For more information, see the \fBCONSERVATIVE UPDATING\fR section of bundle install(1) \fIbundle\-install\.1\.html\fR\.
.
.P
Starting with 1\.14, specifying the \fB\-\-conservative\fR option will also prevent indirect dependencies from being updated\.
.
.SH "PATCH LEVEL OPTIONS"
Version 1\.14 introduced 4 patch\-level options that will influence how gem versions are resolved\. One of the following options can be used: \fB\-\-patch\fR, \fB\-\-minor\fR or \fB\-\-major\fR\. \fB\-\-strict\fR can be added to further influence resolution\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
Do not allow any gem to be updated past latest \fB\-\-patch\fR | \fB\-\-minor\fR | \fB\-\-major\fR\.
.
.P
When Bundler is resolving what versions to use to satisfy declared requirements in the Gemfile or in parent gems, it looks up all available versions, filters out any versions that don\'t satisfy the requirement, and then, by default, sorts them from newest to oldest, considering them in that order\.
.
.P
Providing one of the patch level options (e\.g\. \fB\-\-patch\fR) changes the sort order of the satisfying versions, causing Bundler to consider the latest \fB\-\-patch\fR or \fB\-\-minor\fR version available before other versions\. Note that versions outside the stated patch level could still be resolved to if necessary to find a suitable dependency graph\.
.
.P
For example, if gem \'foo\' is locked at 1\.0\.2, with no gem requirement defined in the Gemfile, and versions 1\.0\.3, 1\.0\.4, 1\.1\.0, 1\.1\.1, 2\.0\.0 all exist, the default order of preference by default (\fB\-\-major\fR) will be "2\.0\.0, 1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2"\.
.
.P
If the \fB\-\-patch\fR option is used, the order of preference will change to "1\.0\.4, 1\.0\.3, 1\.0\.2, 1\.1\.1, 1\.1\.0, 2\.0\.0"\.
.
.P
If the \fB\-\-minor\fR option is used, the order of preference will change to "1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2, 2\.0\.0"\.
.
.P
Combining the \fB\-\-strict\fR option with any of the patch level options will remove any versions beyond the scope of the patch level option, to ensure that no gem is updated that far\.
.
.P
To continue the previous example, if both \fB\-\-patch\fR and \fB\-\-strict\fR options are used, the available versions for resolution would be "1\.0\.4, 1\.0\.3, 1\.0\.2"\. If \fB\-\-minor\fR and \fB\-\-strict\fR are used, it would be "1\.1\.1, 1\.1\.0, 1\.0\.4, 1\.0\.3, 1\.0\.2"\.
.
.P
Gem requirements as defined in the Gemfile will still be the first determining factor for what versions are available\. If the gem requirement for \fBfoo\fR in the Gemfile is \'~> 1\.0\', that will accomplish the same thing as providing the \fB\-\-minor\fR and \fB\-\-strict\fR options\.
.
.SH "PATCH LEVEL EXAMPLES"
Given the following gem specifications:
.
.IP "" 4
.
.nf

foo 1\.4\.3, requires: ~> bar 2\.0
foo 1\.4\.4, requires: ~> bar 2\.0
foo 1\.4\.5, requires: ~> bar 2\.1
foo 1\.5\.0, requires: ~> bar 2\.1
foo 1\.5\.1, requires: ~> bar 3\.0
bar with versions 2\.0\.3, 2\.0\.4, 2\.1\.0, 2\.1\.1, 3\.0\.0
.
.fi
.
.IP "" 0
.
.P
Gemfile:
.
.IP "" 4
.
.nf

gem \'foo\'
.
.fi
.
.IP "" 0
.
.P
Gemfile\.lock:
.
.IP "" 4
.
.nf

foo (1\.4\.3)
  bar (~> 2\.0)
bar (2\.0\.3)
.
.fi
.
.IP "" 0
.
.P
Cases:
.
.IP "" 4
.
.nf

#  Command Line                     Result
\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
1  bundle update \-\-patch            \'foo 1\.4\.5\', \'bar 2\.1\.1\'
2  bundle update \-\-patch foo        \'foo 1\.4\.5\', \'bar 2\.1\.1\'
3  bundle update \-\-minor            \'foo 1\.5\.1\', \'bar 3\.0\.0\'
4  bundle update \-\-minor \-\-strict   \'foo 1\.5\.0\', \'bar 2\.1\.1\'
5  bundle update \-\-patch \-\-strict   \'foo 1\.4\.4\', \'bar 2\.0\.4\'
.
.fi
.
.IP "" 0
.
.P
In case 1, bar is upgraded to 2\.1\.1, a minor version increase, because the dependency from foo 1\.4\.5 required it\.
.
.P
In case 2, only foo is requested to be unlocked, but bar is also allowed to move because it\'s not a declared dependency in the Gemfile\.
.
.P
In case 3, bar goes up a whole major release, because a minor increase is preferred now for foo, and when it goes to 1\.5\.1, it requires 3\.0\.0 of bar\.
.
.P
In case 4, foo is preferred up to a minor version, but 1\.5\.1 won\'t work because the \-\-strict flag removes bar 3\.0\.0 from consideration since it\'s a major increment\.
.
.P
In case 5, both foo and bar have any minor or major increments removed from consideration because of the \-\-strict flag, so the most they can move is up to 1\.4\.4 and 2\.0\.4\.
.
.SH "RECOMMENDED WORKFLOW"
In general, when working with an application managed with bundler, you should use the following workflow:
.
.IP "\(bu" 4
After you create your Gemfile(5) for the first time, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
Check the resulting \fBGemfile\.lock\fR into version control
.
.IP
$ git add Gemfile\.lock
.
.IP "\(bu" 4
When checking out this repository on another development machine, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
When checking out this repository on a deployment machine, run
.
.IP
$ bundle install \-\-deployment
.
.IP "\(bu" 4
After changing the Gemfile(5) to reflect a new or update dependency, run
.
.IP
$ bundle install
.
.IP "\(bu" 4
Make sure to check the updated \fBGemfile\.lock\fR into version control
.
.IP
$ git add Gemfile\.lock
.
.IP "\(bu" 4
If bundle install(1) \fIbundle\-install\.1\.html\fR reports a conflict, manually update the specific gems that you changed in the Gemfile(5)
.
.IP
$ bundle update rails thin
.
.IP "\(bu" 4
If you want to update all the gems to the latest possible versions that still match the gems listed in the Gemfile(5), run
.
.IP
$ bundle update \-\-all
.
.IP "" 0

PK<H['uw^��@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-add.1.ronnnu�[���bundle-add(1) -- Add gem to the Gemfile and run bundle install
================================================================

## SYNOPSIS

`bundle add` <GEM_NAME> [--group=GROUP] [--version=VERSION] [--source=SOURCE] [--git=GIT] [--branch=BRANCH] [--skip-install] [--strict] [--optimistic]

## DESCRIPTION
Adds the named gem to the Gemfile and run `bundle install`. `bundle install` can be avoided by using the flag `--skip-install`.

Example:

bundle add rails

bundle add rails --version "< 3.0, > 1.1"

bundle add rails --version "~> 5.0.0" --source "https://gems.example.com" --group "development"

bundle add rails --skip-install

bundle add rails --group "development, test"

## OPTIONS
* `--version`, `-v`:
  Specify version requirements(s) for the added gem.

* `--group`, `-g`:
  Specify the group(s) for the added gem. Multiple groups should be separated by commas.

* `--source`, , `-s`:
  Specify the source for the added gem.

* `--git`:
  Specify the git source for the added gem.

* `--branch`:
  Specify the git branch for the added gem.

* `--skip-install`:
  Adds the gem to the Gemfile but does not install it.

* `--optimistic`:
  Adds optimistic declaration of version

* `--strict`:
  Adds strict declaration of version
PK<H[B��5UUCshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-inject.1.ronnnu�[���bundle-inject(1) -- Add named gem(s) with version requirements to Gemfile
=========================================================================

## SYNOPSIS

`bundle inject` [GEM] [VERSION]

## DESCRIPTION

Adds the named gem(s) with their version requirements to the resolved
[`Gemfile(5)`][Gemfile(5)].

This command will add the gem to both your [`Gemfile(5)`][Gemfile(5)] and Gemfile.lock if it
isn't listed yet.

Example:

    bundle install
    bundle inject 'rack' '> 0'

This will inject the 'rack' gem with a version greater than 0 in your
[`Gemfile(5)`][Gemfile(5)] and Gemfile.lock
PK<H[�P~�||Ashare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-exec.1.ronnnu�[���bundle-exec(1) -- Execute a command in the context of the bundle
================================================================

## SYNOPSIS

`bundle exec` [--keep-file-descriptors] <command>

## DESCRIPTION

This command executes the command, making all gems specified in the
[`Gemfile(5)`][Gemfile(5)] available to `require` in Ruby programs.

Essentially, if you would normally have run something like
`rspec spec/my_spec.rb`, and you want to use the gems specified
in the [`Gemfile(5)`][Gemfile(5)] and installed via [bundle install(1)](bundle-install.1.html), you
should run `bundle exec rspec spec/my_spec.rb`.

Note that `bundle exec` does not require that an executable is
available on your shell's `$PATH`.

## OPTIONS

* `--keep-file-descriptors`:
  Exec in Ruby 2.0 began discarding non-standard file descriptors. When this
  flag is passed, exec will revert to the 1.9 behaviour of passing all file
  descriptors to the new process.

## BUNDLE INSTALL --BINSTUBS

If you use the `--binstubs` flag in [bundle install(1)](bundle-install.1.html), Bundler will
automatically create a directory (which defaults to `app_root/bin`)
containing all of the executables available from gems in the bundle.

After using `--binstubs`, `bin/rspec spec/my_spec.rb` is identical
to `bundle exec rspec spec/my_spec.rb`.

## ENVIRONMENT MODIFICATIONS

`bundle exec` makes a number of changes to the shell environment,
then executes the command you specify in full.

* make sure that it's still possible to shell out to `bundle`
  from inside a command invoked by `bundle exec` (using
  `$BUNDLE_BIN_PATH`)
* put the directory containing executables (like `rails`, `rspec`,
  `rackup`) for your bundle on `$PATH`
* make sure that if bundler is invoked in the subshell, it uses
  the same `Gemfile` (by setting `BUNDLE_GEMFILE`)
* add `-rbundler/setup` to `$RUBYOPT`, which makes sure that
  Ruby programs invoked in the subshell can see the gems in
  the bundle

It also modifies Rubygems:

* disallow loading additional gems not in the bundle
* modify the `gem` method to be a no-op if a gem matching
  the requirements is in the bundle, and to raise a
  `Gem::LoadError` if it's not
* Define `Gem.refresh` to be a no-op, since the source
  index is always frozen when using bundler, and to
  prevent gems from the system leaking into the environment
* Override `Gem.bin_path` to use the gems in the bundle,
  making system executables work
* Add all gems in the bundle into Gem.loaded_specs

Finally, `bundle exec` also implicitly modifies `Gemfile.lock` if the lockfile
and the Gemfile do not match. Bundler needs the Gemfile to determine things
such as a gem's groups, `autorequire`, and platforms, etc., and that
information isn't stored in the lockfile. The Gemfile and lockfile must be
synced in order to `bundle exec` successfully, so `bundle exec`
updates the lockfile beforehand.

### Loading

By default, when attempting to `bundle exec` to a file with a ruby shebang,
Bundler will `Kernel.load` that file instead of using `Kernel.exec`. For the
vast majority of cases, this is a performance improvement. In a rare few cases,
this could cause some subtle side-effects (such as dependence on the exact
contents of `$0` or `__FILE__`) and the optimization can be disabled by enabling
the `disable_exec_load` setting.

### Shelling out

Any Ruby code that opens a subshell (like `system`, backticks, or `%x{}`) will
automatically use the current Bundler environment. If you need to shell out to
a Ruby command that is not part of your current bundle, use the
`with_clean_env` method with a block. Any subshells created inside the block
will be given the environment present before Bundler was activated. For
example, Homebrew commands run Ruby, but don't work inside a bundle:

    Bundler.with_clean_env do
      `brew install wget`
    end

Using `with_clean_env` is also necessary if you are shelling out to a different
bundle. Any Bundler commands run in a subshell will inherit the current
Gemfile, so commands that need to run in the context of a different bundle also
need to use `with_clean_env`.

    Bundler.with_clean_env do
      Dir.chdir "/other/bundler/project" do
        `bundle exec ./script`
      end
    end

Bundler provides convenience helpers that wrap `system` and `exec`, and they
can be used like this:

    Bundler.clean_system('brew install wget')
    Bundler.clean_exec('brew install wget')


## RUBYGEMS PLUGINS

At present, the Rubygems plugin system requires all files
named `rubygems_plugin.rb` on the load path of _any_ installed
gem when any Ruby code requires `rubygems.rb`. This includes
executables installed into the system, like `rails`, `rackup`,
and `rspec`.

Since Rubygems plugins can contain arbitrary Ruby code, they
commonly end up activating themselves or their dependencies.

For instance, the `gemcutter 0.5` gem depended on `json_pure`.
If you had that version of gemcutter installed (even if
you _also_ had a newer version without this problem), Rubygems
would activate `gemcutter 0.5` and `json_pure <latest>`.

If your Gemfile(5) also contained `json_pure` (or a gem
with a dependency on `json_pure`), the latest version on
your system might conflict with the version in your
Gemfile(5), or the snapshot version in your `Gemfile.lock`.

If this happens, bundler will say:

    You have already activated json_pure 1.4.6 but your Gemfile
    requires json_pure 1.4.3. Consider using bundle exec.

In this situation, you almost certainly want to remove the
underlying gem with the problematic gem plugin. In general,
the authors of these plugins (in this case, the `gemcutter`
gem) have released newer versions that are more careful in
their plugins.

You can find a list of all the gems containing gem plugins
by running

    ruby -rrubygems -e "puts Gem.find_files('rubygems_plugin.rb')"

At the very least, you should remove all but the newest
version of each gem plugin, and also remove all gem plugins
that you aren't using (`gem uninstall gem_name`).
PK<H[�?�OAA<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-open.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-OPEN" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
.
.SH "SYNOPSIS"
\fBbundle open\fR [GEM]
.
.SH "DESCRIPTION"
Opens the source directory of the provided GEM in your editor\.
.
.P
For this to work the \fBEDITOR\fR or \fBBUNDLER_EDITOR\fR environment variable has to be set\.
.
.P
Example:
.
.IP "" 4
.
.nf

bundle open \'rack\'
.
.fi
.
.IP "" 0
.
.P
Will open the source directory for the \'rack\' gem in your bundle\.
PK<H[��#s��Eshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-pristine.1.ronnnu�[���bundle-pristine(1) -- Restores installed gems to their pristine condition
===========================================================================

## SYNOPSIS

`bundle pristine`

## DESCRIPTION

`pristine` restores the installed gems in the bundle to their pristine condition
using the local gem cache from RubyGems. For git gems, a forced checkout will be performed.

For further explanation, `bundle pristine` ignores unpacked files on disk. In other
words, this command utilizes the local `.gem` cache or the gem's git repository
as if one were installing from scratch.

Note: the Bundler gem cannot be restored to its original state with `pristine`.
One also cannot use `bundle pristine` on gems with a 'path' option in the Gemfile,
because bundler has no original copy it can restore from.

When is it practical to use `bundle pristine`?

It comes in handy when a developer is debugging a gem. `bundle pristine` is a
great way to get rid of experimental changes to a gem that one may not want.

Why use `bundle pristine` over `gem pristine --all`?

Both commands are very similar.
For context: `bundle pristine`, without arguments, cleans all gems from the lockfile.
Meanwhile, `gem pristine --all` cleans all installed gems for that Ruby version.

If a developer forgets which gems in their project they might
have been debugging, the Rubygems `gem pristine [GEMNAME]` command may be inconvenient.
One can avoid waiting for `gem pristine --all`, and instead run `bundle pristine`.
PK<H[Iߚ�
�
Eshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-outdated.1.ronnnu�[���bundle-outdated(1) -- List installed gems with newer versions available
=======================================================================

## SYNOPSIS

`bundle outdated` [GEM] [--local]
                        [--pre]
                        [--source]
                        [--strict]
                        [--parseable | --porcelain]
                        [--group=GROUP]
                        [--groups]
                        [--update-strict]
                        [--patch|--minor|--major]
                        [--filter-major]
                        [--filter-minor]
                        [--filter-patch]
                        [--only-explicit]

## DESCRIPTION

Outdated lists the names and versions of gems that have a newer version available
in the given source. Calling outdated with [GEM [GEM]] will only check for newer
versions of the given gems. Prerelease gems are ignored by default. If your gems
are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.

## OPTIONS

* `--local`:
  Do not attempt to fetch gems remotely and use the gem cache instead.

* `--pre`:
  Check for newer pre-release gems.

* `--source`:
  Check against a specific source.

* `--strict`:
  Only list newer versions allowed by your Gemfile requirements.

* `--parseable`, `--porcelain`:
   Use minimal formatting for more parseable output.

* `--group`:
  List gems from a specific group.

* `--groups`:
  List gems organized by groups.

* `--update-strict`:
  Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor| --major.

* `--minor`:
  Prefer updating only to next minor version.

* `--major`:
  Prefer updating to next major version (default).

* `--patch`:
  Prefer updating only to next patch version.

* `--filter-major`:
  Only list major newer versions.

* `--filter-minor`:
  Only list minor newer versions.

* `--filter-patch`:
  Only list patch newer versions.

* `--only-explicit`:
  Only list gems specified in your Gemfile, not their dependencies.

## PATCH LEVEL OPTIONS

See [bundle update(1)](bundle-update.1.html) for details.

One difference between the patch level options in `bundle update` and here is the `--strict` option.
`--strict` was already an option on outdated before the patch level options were added. `--strict`
wasn't altered, and the `--update-strict` option on `outdated` reflects what `--strict` does on
`bundle update`.

## FILTERING OUTPUT

The 3 filtering options do not affect the resolution of versions, merely what versions are shown
in the output.

If the regular output shows the following:

    * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
    * hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"
    * headless (newest 2.3.1, installed 2.2.3) in groups "test"

`--filter-major` would only show:

    * hashie (newest 3.4.6, installed 1.2.0, requested = 1.2.0) in groups "default"

`--filter-minor` would only show:

    * headless (newest 2.3.1, installed 2.2.3) in groups "test"

`--filter-patch` would only show:

    * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"

Filter options can be combined. `--filter-minor` and `--filter-patch` would show:

    * faker (newest 1.6.6, installed 1.6.5, requested ~> 1.4) in groups "development, test"
    * headless (newest 2.3.1, installed 2.2.3) in groups "test"

Combining all three `filter` options would be the same result as providing none of them.
PK<H[�V�#Ashare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-list.1.ronnnu�[���bundle-list(1) -- List all the gems in the bundle
=========================================================================

## SYNOPSIS

`bundle list` [--name-only] [--paths] [--without-group=GROUP[ GROUP...]] [--only-group=GROUP[ GROUP...]]

## DESCRIPTION

Prints a list of all the gems in the bundle including their version.

Example:

bundle list --name-only

bundle list --paths

bundle list --without-group test

bundle list --only-group dev

bundle list --only-group dev test --paths

## OPTIONS

* `--name-only`:
  Print only the name of each gem.
* `--paths`:
  Print the path to each gem in the bundle.
* `--without-group=<list>`:
  A space-separated list of groups of gems to skip during printing.
* `--only-group=<list>`:
  A space-separated list of groups of gems to print.
PK<H[��H��<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-show.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-SHOW" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
.
.SH "SYNOPSIS"
\fBbundle show\fR [GEM] [\-\-paths]
.
.SH "DESCRIPTION"
Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by name\.
.
.P
Calling show with [GEM] will list the exact location of that gem on your machine\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-paths\fR
List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by gem name\.

PK<H[^�-;share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-gem.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-GEM" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
.
.SH "SYNOPSIS"
\fBbundle gem\fR \fIGEM_NAME\fR \fIOPTIONS\fR
.
.SH "DESCRIPTION"
Generates a directory named \fBGEM_NAME\fR with a \fBRakefile\fR, \fBGEM_NAME\.gemspec\fR, and other supporting files and directories that can be used to develop a rubygem with that name\.
.
.P
Run \fBrake \-T\fR in the resulting project for a list of Rake tasks that can be used to test and publish the gem to rubygems\.org\.
.
.P
The generated project skeleton can be customized with OPTIONS, as explained below\. Note that these options can also be specified via Bundler\'s global configuration file using the following names:
.
.IP "\(bu" 4
\fBgem\.coc\fR
.
.IP "\(bu" 4
\fBgem\.mit\fR
.
.IP "\(bu" 4
\fBgem\.test\fR
.
.IP "" 0
.
.SH "OPTIONS"
.
.TP
\fB\-\-exe\fR or \fB\-b\fR or \fB\-\-bin\fR
Specify that Bundler should create a binary executable (as \fBexe/GEM_NAME\fR) in the generated rubygem project\. This binary will also be added to the \fBGEM_NAME\.gemspec\fR manifest\. This behavior is disabled by default\.
.
.TP
\fB\-\-no\-exe\fR
Do not create a binary (overrides \fB\-\-exe\fR specified in the global config)\.
.
.TP
\fB\-\-coc\fR
Add a \fBCODE_OF_CONDUCT\.md\fR file to the root of the generated project\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-\-no\-coc\fR
Do not create a \fBCODE_OF_CONDUCT\.md\fR (overrides \fB\-\-coc\fR specified in the global config)\.
.
.TP
\fB\-\-ext\fR
Add boilerplate for C extension code to the generated project\. This behavior is disabled by default\.
.
.TP
\fB\-\-no\-ext\fR
Do not add C extension code (overrides \fB\-\-ext\fR specified in the global config)\.
.
.TP
\fB\-\-mit\fR
Add an MIT license to a \fBLICENSE\.txt\fR file in the root of the generated project\. Your name from the global git config is used for the copyright statement\. If this option is unspecified, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-\-no\-mit\fR
Do not create a \fBLICENSE\.txt\fR (overrides \fB\-\-mit\fR specified in the global config)\.
.
.TP
\fB\-t\fR, \fB\-\-test=minitest\fR, \fB\-\-test=rspec\fR, \fB\-\-test=test\-unit\fR
Specify the test framework that Bundler should use when generating the project\. Acceptable values are \fBminitest\fR, \fBrspec\fR and \fBtest\-unit\fR\. The \fBGEM_NAME\.gemspec\fR will be configured and a skeleton test/spec directory will be created based on this option\. Given no option is specified:
.
.IP
When Bundler is configured to generate tests, this defaults to Bundler\'s global config setting \fBgem\.test\fR\.
.
.IP
When Bundler is configured to not generate tests, an interactive prompt will be displayed and the answer will be used for the current rubygem project\.
.
.IP
When Bundler is unconfigured, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-\-ci\fR, \fB\-\-ci=github\fR, \fB\-\-ci=travis\fR, \fB\-\-ci=gitlab\fR, \fB\-\-ci=circle\fR
Specify the continuous integration service that Bundler should use when generating the project\. Acceptable values are \fBgithub\fR, \fBtravis\fR, \fBgitlab\fR and \fBcircle\fR\. A configuration file will be generated in the project directory\. Given no option is specified:
.
.IP
When Bundler is configured to generate CI files, this defaults to Bundler\'s global config setting \fBgem\.ci\fR\.
.
.IP
When Bundler is configured to not generate CI files, an interactive prompt will be displayed and the answer will be used for the current rubygem project\.
.
.IP
When Bundler is unconfigured, an interactive prompt will be displayed and the answer will be saved in Bundler\'s global config for future \fBbundle gem\fR use\.
.
.TP
\fB\-e\fR, \fB\-\-edit[=EDITOR]\fR
Open the resulting GEM_NAME\.gemspec in EDITOR, or the default editor if not specified\. The default is \fB$BUNDLER_EDITOR\fR, \fB$VISUAL\fR, or \fB$EDITOR\fR\.
.
.SH "SEE ALSO"
.
.IP "\(bu" 4
bundle config(1) \fIbundle\-config\.1\.html\fR
.
.IP "" 0

PK<H[N��-7share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\fR \- Ruby Dependency Management
.
.SH "SYNOPSIS"
\fBbundle\fR COMMAND [\-\-no\-color] [\-\-verbose] [ARGS]
.
.SH "DESCRIPTION"
Bundler manages an \fBapplication\'s dependencies\fR through its entire life across many machines systematically and repeatably\.
.
.P
See the bundler website \fIhttps://bundler\.io\fR for information on getting started, and Gemfile(5) for more information on the \fBGemfile\fR format\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-no\-color\fR
Print all output without color
.
.TP
\fB\-\-retry\fR, \fB\-r\fR
Specify the number of times you wish to attempt network commands
.
.TP
\fB\-\-verbose\fR, \fB\-V\fR
Print out additional logging information
.
.SH "BUNDLE COMMANDS"
We divide \fBbundle\fR subcommands into primary commands and utilities:
.
.SH "PRIMARY COMMANDS"
.
.TP
\fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR
Install the gems specified by the \fBGemfile\fR or \fBGemfile\.lock\fR
.
.TP
\fBbundle update(1)\fR \fIbundle\-update\.1\.html\fR
Update dependencies to their latest versions
.
.TP
\fBbundle package(1)\fR \fIbundle\-package\.1\.html\fR
Package the \.gem files required by your application into the \fBvendor/cache\fR directory
.
.TP
\fBbundle exec(1)\fR \fIbundle\-exec\.1\.html\fR
Execute a script in the current bundle
.
.TP
\fBbundle config(1)\fR \fIbundle\-config\.1\.html\fR
Specify and read configuration options for Bundler
.
.TP
\fBbundle help(1)\fR
Display detailed help for each subcommand
.
.SH "UTILITIES"
.
.TP
\fBbundle add(1)\fR \fIbundle\-add\.1\.html\fR
Add the named gem to the Gemfile and run \fBbundle install\fR
.
.TP
\fBbundle binstubs(1)\fR \fIbundle\-binstubs\.1\.html\fR
Generate binstubs for executables in a gem
.
.TP
\fBbundle check(1)\fR \fIbundle\-check\.1\.html\fR
Determine whether the requirements for your application are installed and available to Bundler
.
.TP
\fBbundle show(1)\fR \fIbundle\-show\.1\.html\fR
Show the source location of a particular gem in the bundle
.
.TP
\fBbundle outdated(1)\fR \fIbundle\-outdated\.1\.html\fR
Show all of the outdated gems in the current bundle
.
.TP
\fBbundle console(1)\fR
Start an IRB session in the current bundle
.
.TP
\fBbundle open(1)\fR \fIbundle\-open\.1\.html\fR
Open an installed gem in the editor
.
.TP
\fBbundle lock(1)\fR \fIbundle\-lock\.1\.html\fR
Generate a lockfile for your dependencies
.
.TP
\fBbundle viz(1)\fR \fIbundle\-viz\.1\.html\fR
Generate a visual representation of your dependencies
.
.TP
\fBbundle init(1)\fR \fIbundle\-init\.1\.html\fR
Generate a simple \fBGemfile\fR, placed in the current directory
.
.TP
\fBbundle gem(1)\fR \fIbundle\-gem\.1\.html\fR
Create a simple gem, suitable for development with Bundler
.
.TP
\fBbundle platform(1)\fR \fIbundle\-platform\.1\.html\fR
Display platform compatibility information
.
.TP
\fBbundle clean(1)\fR \fIbundle\-clean\.1\.html\fR
Clean up unused gems in your Bundler directory
.
.TP
\fBbundle doctor(1)\fR \fIbundle\-doctor\.1\.html\fR
Display warnings about common problems
.
.TP
\fBbundle remove(1)\fR \fIbundle\-remove\.1\.html\fR
Removes gems from the Gemfile
.
.SH "PLUGINS"
When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
.
.SH "OBSOLETE"
These commands are obsolete and should no longer be used:
.
.IP "\(bu" 4
\fBbundle cache(1)\fR
.
.IP "\(bu" 4
\fBbundle show(1)\fR
.
.IP "" 0

PK<H[�C��..@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-gem.1.ronnnu�[���bundle-gem(1) -- Generate a project skeleton for creating a rubygem
====================================================================

## SYNOPSIS

`bundle gem` <GEM_NAME> [OPTIONS]

## DESCRIPTION

Generates a directory named `GEM_NAME` with a `Rakefile`, `GEM_NAME.gemspec`,
and other supporting files and directories that can be used to develop a
rubygem with that name.

Run `rake -T` in the resulting project for a list of Rake tasks that can be used
to test and publish the gem to rubygems.org.

The generated project skeleton can be customized with OPTIONS, as explained
below. Note that these options can also be specified via Bundler's global
configuration file using the following names:

* `gem.coc`
* `gem.mit`
* `gem.test`

## OPTIONS

* `--exe` or `-b` or `--bin`:
  Specify that Bundler should create a binary executable (as `exe/GEM_NAME`)
  in the generated rubygem project. This binary will also be added to the
  `GEM_NAME.gemspec` manifest. This behavior is disabled by default.

* `--no-exe`:
  Do not create a binary (overrides `--exe` specified in the global config).

* `--coc`:
  Add a `CODE_OF_CONDUCT.md` file to the root of the generated project. If
  this option is unspecified, an interactive prompt will be displayed and the
  answer will be saved in Bundler's global config for future `bundle gem` use.

* `--no-coc`:
  Do not create a `CODE_OF_CONDUCT.md` (overrides `--coc` specified in the
  global config).

* `--ext`:
  Add boilerplate for C extension code to the generated project. This behavior
  is disabled by default.

* `--no-ext`:
  Do not add C extension code (overrides `--ext` specified in the global
  config).

* `--mit`:
  Add an MIT license to a `LICENSE.txt` file in the root of the generated
  project. Your name from the global git config is used for the copyright
  statement. If this option is unspecified, an interactive prompt will be
  displayed and the answer will be saved in Bundler's global config for future
  `bundle gem` use.

* `--no-mit`:
  Do not create a `LICENSE.txt` (overrides `--mit` specified in the global
  config).

* `-t`, `--test=minitest`, `--test=rspec`, `--test=test-unit`:
  Specify the test framework that Bundler should use when generating the
  project. Acceptable values are `minitest`, `rspec` and `test-unit`. The
  `GEM_NAME.gemspec` will be configured and a skeleton test/spec directory will
  be created based on this option. Given no option is specified:

  When Bundler is configured to generate tests, this defaults to Bundler's
  global config setting `gem.test`.

  When Bundler is configured to not generate tests, an interactive prompt will
  be displayed and the answer will be used for the current rubygem project.

  When Bundler is unconfigured, an interactive prompt will be displayed and
  the answer will be saved in Bundler's global config for future `bundle gem`
  use.

* `--ci`, `--ci=github`, `--ci=travis`, `--ci=gitlab`, `--ci=circle`:
  Specify the continuous integration service that Bundler should use when
  generating the project. Acceptable values are `github`, `travis`, `gitlab`
  and `circle`. A configuration file will be generated in the project directory.
  Given no option is specified:

  When Bundler is configured to generate CI files, this defaults to Bundler's
  global config setting `gem.ci`.

  When Bundler is configured to not generate CI files, an interactive prompt
  will be displayed and the answer will be used for the current rubygem project.

  When Bundler is unconfigured, an interactive prompt will be displayed and
  the answer will be saved in Bundler's global config for future `bundle gem`
  use.

* `-e`, `--edit[=EDITOR]`:
  Open the resulting GEM_NAME.gemspec in EDITOR, or the default editor if not
  specified. The default is `$BUNDLER_EDITOR`, `$VISUAL`, or `$EDITOR`.

## SEE ALSO

* [bundle config(1)](bundle-config.1.html)
PK<H[˱[y��Cshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-remove.1.ronnnu�[���bundle-remove(1) -- Removes gems from the Gemfile
===========================================================================

## SYNOPSIS

`bundle remove [GEM [GEM ...]] [--install]`

## DESCRIPTION

Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid. If a gem cannot be removed, a warning is printed. If a gem is already absent from the Gemfile, and error is raised.

## OPTIONS

* `--install`:
  Runs `bundle install` after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem(s).

Example:

bundle remove rails

bundle remove rails rack

bundle remove rails rack --install
PK<H[Ag��88@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-platform.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-PLATFORM" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-platform\fR \- Displays platform compatibility information
.
.SH "SYNOPSIS"
\fBbundle platform\fR [\-\-ruby]
.
.SH "DESCRIPTION"
\fBplatform\fR will display information from your Gemfile, Gemfile\.lock, and Ruby VM about your platform\.
.
.P
For instance, using this Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

ruby "1\.9\.3"

gem "rack"
.
.fi
.
.IP "" 0
.
.P
If you run \fBbundle platform\fR on Ruby 1\.9\.3, it will display the following output:
.
.IP "" 4
.
.nf

Your platform is: x86_64\-linux

Your app has gems that work on these platforms:
* ruby

Your Gemfile specifies a Ruby version requirement:
* ruby 1\.9\.3

Your current platform satisfies the Ruby version requirement\.
.
.fi
.
.IP "" 0
.
.P
\fBplatform\fR will list all the platforms in your \fBGemfile\.lock\fR as well as the \fBruby\fR directive if applicable from your Gemfile(5)\. It will also let you know if the \fBruby\fR directive requirement has been met\. If \fBruby\fR directive doesn\'t match the running Ruby VM, it will tell you what part does not\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-ruby\fR
It will display the ruby directive information, so you don\'t have to parse it from the Gemfile(5)\.

PK<H[3�dMM>share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-remove.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-REMOVE" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-remove\fR \- Removes gems from the Gemfile
.
.SH "SYNOPSIS"
\fBbundle remove [GEM [GEM \.\.\.]] [\-\-install]\fR
.
.SH "DESCRIPTION"
Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid\. If a gem cannot be removed, a warning is printed\. If a gem is already absent from the Gemfile, and error is raised\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-install\fR
Runs \fBbundle install\fR after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem(s)\.
.
.P
Example:
.
.P
bundle remove rails
.
.P
bundle remove rails rack
.
.P
bundle remove rails rack \-\-install
PK<H[�5���Ashare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-open.1.ronnnu�[���bundle-open(1) -- Opens the source directory for a gem in your bundle
=====================================================================

## SYNOPSIS

`bundle open` [GEM]

## DESCRIPTION

Opens the source directory of the provided GEM in your editor.

For this to work the `EDITOR` or `BUNDLER_EDITOR` environment variable has to
be set.

Example:

    bundle open 'rack'

Will open the source directory for the 'rack' gem in your bundle.
PK<H[�|=��>share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-inject.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INJECT" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
.
.SH "SYNOPSIS"
\fBbundle inject\fR [GEM] [VERSION]
.
.SH "DESCRIPTION"
Adds the named gem(s) with their version requirements to the resolved [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.P
This command will add the gem to both your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock if it isn\'t listed yet\.
.
.P
Example:
.
.IP "" 4
.
.nf

bundle install
bundle inject \'rack\' \'> 0\'
.
.fi
.
.IP "" 0
.
.P
This will inject the \'rack\' gem with a version greater than 0 in your [\fBGemfile(5)\fR][Gemfile(5)] and Gemfile\.lock
PK<H[��+B+BDshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-install.1.ronnnu�[���bundle-install(1) -- Install the dependencies specified in your Gemfile
=======================================================================

## SYNOPSIS

`bundle install` [--binstubs[=DIRECTORY]]
                 [--clean]
                 [--deployment]
                 [--frozen]
                 [--full-index]
                 [--gemfile=GEMFILE]
                 [--jobs=NUMBER]
                 [--local]
                 [--no-cache]
                 [--no-prune]
                 [--path PATH]
                 [--quiet]
                 [--redownload]
                 [--retry=NUMBER]
                 [--shebang]
                 [--standalone[=GROUP[ GROUP...]]]
                 [--system]
                 [--trust-policy=POLICY]
                 [--with=GROUP[ GROUP...]]
                 [--without=GROUP[ GROUP...]]

## DESCRIPTION

Install the gems specified in your Gemfile(5). If this is the first
time you run bundle install (and a `Gemfile.lock` does not exist),
Bundler will fetch all remote sources, resolve dependencies and
install all needed gems.

If a `Gemfile.lock` does exist, and you have not updated your Gemfile(5),
Bundler will fetch all remote sources, but use the dependencies
specified in the `Gemfile.lock` instead of resolving dependencies.

If a `Gemfile.lock` does exist, and you have updated your Gemfile(5),
Bundler will use the dependencies in the `Gemfile.lock` for all gems
that you did not update, but will re-resolve the dependencies of
gems that you did update. You can find more information about this
update process below under [CONSERVATIVE UPDATING][].

## OPTIONS

The `--clean`, `--deployment`, `--frozen`, `--no-prune`, `--path`, `--shebang`,
`--system`, `--without` and `--with` options are deprecated because they only
make sense if they are applied to every subsequent `bundle install` run
automatically and that requires `bundler` to silently remember them. Since
`bundler` will no longer remember CLI flags in future versions, `bundle config`
(see bundle-config(1)) should be used to apply them permanently.

* `--binstubs[=<directory>]`:
  Binstubs are scripts that wrap around executables. Bundler creates a small Ruby
  file (a binstub) that loads Bundler, runs the command, and puts it in `bin/`.
  This lets you link the binstub inside of an application to the exact gem
  version the application needs.

  Creates a directory (defaults to `~/bin`) and places any executables from the
  gem there. These executables run in Bundler's context. If used, you might add
  this directory to your environment's `PATH` variable. For instance, if the
  `rails` gem comes with a `rails` executable, this flag will create a
  `bin/rails` executable that ensures that all referred dependencies will be
  resolved using the bundled gems.

* `--clean`:
  On finishing the installation Bundler is going to remove any gems not present
  in the current Gemfile(5). Don't worry, gems currently in use will not be
  removed.

  This option is deprecated in favor of the `clean` setting.

* `--deployment`:
  In [deployment mode][DEPLOYMENT MODE], Bundler will 'roll-out' the bundle for
  production or CI use. Please check carefully if you want to have this option
  enabled in your development environment.

  This option is deprecated in favor of the `deployment` setting.

* `--redownload`:
  Force download every gem, even if the required versions are already available
  locally.

* `--frozen`:
  Do not allow the Gemfile.lock to be updated after this install. Exits
  non-zero if there are going to be changes to the Gemfile.lock.

  This option is deprecated in favor of the `frozen` setting.

* `--full-index`:
  Bundler will not call Rubygems' API endpoint (default) but download and cache
  a (currently big) index file of all gems. Performance can be improved for
  large bundles that seldom change by enabling this option.

* `--gemfile=<gemfile>`:
  The location of the Gemfile(5) which Bundler should use. This defaults
  to a Gemfile(5) in the current working directory. In general, Bundler
  will assume that the location of the Gemfile(5) is also the project's
  root and will try to find `Gemfile.lock` and `vendor/cache` relative
  to this location.

* `--jobs=[<number>]`, `-j[<number>]`:
  The maximum number of parallel download and install jobs. The default
  is `1`.

* `--local`:
  Do not attempt to connect to `rubygems.org`. Instead, Bundler will use the
  gems already present in Rubygems' cache or in `vendor/cache`. Note that if an
  appropriate platform-specific gem exists on `rubygems.org` it will not be
  found.

* `--no-cache`:
  Do not update the cache in `vendor/cache` with the newly bundled gems. This
  does not remove any gems in the cache but keeps the newly bundled gems from
  being cached during the install.

* `--no-prune`:
  Don't remove stale gems from the cache when the installation finishes.

  This option is deprecated in favor of the `no_prune` setting.

* `--path=<path>`:
  The location to install the specified gems to. This defaults to Rubygems'
  setting. Bundler shares this location with Rubygems, `gem install ...` will
  have gem installed there, too. Therefore, gems installed without a
  `--path ...` setting will show up by calling `gem list`. Accordingly, gems
  installed to other locations will not get listed.

  This option is deprecated in favor of the `path` setting.

* `--quiet`:
  Do not print progress information to the standard output. Instead, Bundler
  will exit using a status code (`$?`).

* `--retry=[<number>]`:
  Retry failed network or git requests for <number> times.

* `--shebang=<ruby-executable>`:
  Uses the specified ruby executable (usually `ruby`) to execute the scripts
  created with `--binstubs`. In addition, if you use `--binstubs` together with
  `--shebang jruby` these executables will be changed to execute `jruby`
  instead.

  This option is deprecated in favor of the `shebang` setting.

* `--standalone[=<list>]`:
  Makes a bundle that can work without depending on Rubygems or Bundler at
  runtime. A space separated list of groups to install has to be specified.
  Bundler creates a directory named `bundle` and installs the bundle there. It
  also generates a `bundle/bundler/setup.rb` file to replace Bundler's own setup
  in the manner required. Using this option implicitly sets `path`, which is a
  [remembered option][REMEMBERED OPTIONS].

* `--system`:
  Installs the gems specified in the bundle to the system's Rubygems location.
  This overrides any previous configuration of `--path`.

  This option is deprecated in favor of the `system` setting.

* `--trust-policy=[<policy>]`:
  Apply the Rubygems security policy <policy>, where policy is one of
  `HighSecurity`, `MediumSecurity`, `LowSecurity`, `AlmostNoSecurity`, or
  `NoSecurity`. For more details, please see the Rubygems signing documentation
  linked below in [SEE ALSO][].

* `--with=<list>`:
  A space-separated list of groups referencing gems to install. If an
  optional group is given it is installed. If a group is given that is
  in the remembered list of groups given to --without, it is removed
  from that list.

  This option is deprecated in favor of the `with` setting.

* `--without=<list>`:
  A space-separated list of groups referencing gems to skip during installation.
  If a group is given that is in the remembered list of groups given
  to --with, it is removed from that list.

  This option is deprecated in favor of the `without` setting.

## DEPLOYMENT MODE

Bundler's defaults are optimized for development. To switch to
defaults optimized for deployment and for CI, use the `--deployment`
flag. Do not activate deployment mode on development machines, as it
will cause an error when the Gemfile(5) is modified.

1. A `Gemfile.lock` is required.

   To ensure that the same versions of the gems you developed with
   and tested with are also used in deployments, a `Gemfile.lock`
   is required.

   This is mainly to ensure that you remember to check your
   `Gemfile.lock` into version control.

2. The `Gemfile.lock` must be up to date

   In development, you can modify your Gemfile(5) and re-run
   `bundle install` to [conservatively update][CONSERVATIVE UPDATING]
   your `Gemfile.lock` snapshot.

   In deployment, your `Gemfile.lock` should be up-to-date with
   changes made in your Gemfile(5).

3. Gems are installed to `vendor/bundle` not your default system location

   In development, it's convenient to share the gems used in your
   application with other applications and other scripts that run on
   the system.

   In deployment, isolation is a more important default. In addition,
   the user deploying the application may not have permission to install
   gems to the system, or the web server may not have permission to
   read them.

   As a result, `bundle install --deployment` installs gems to
   the `vendor/bundle` directory in the application. This may be
   overridden using the `--path` option.

## SUDO USAGE

By default, Bundler installs gems to the same location as `gem install`.

In some cases, that location may not be writable by your Unix user. In
that case, Bundler will stage everything in a temporary directory,
then ask you for your `sudo` password in order to copy the gems into
their system location.

From your perspective, this is identical to installing the gems
directly into the system.

You should never use `sudo bundle install`. This is because several
other steps in `bundle install` must be performed as the current user:

* Updating your `Gemfile.lock`
* Updating your `vendor/cache`, if necessary
* Checking out private git repositories using your user's SSH keys

Of these three, the first two could theoretically be performed by
`chown`ing the resulting files to `$SUDO_USER`. The third, however,
can only be performed by invoking the `git` command as
the current user. Therefore, git gems are downloaded and installed
into `~/.bundle` rather than $GEM_HOME or $BUNDLE_PATH.

As a result, you should run `bundle install` as the current user,
and Bundler will ask for your password if it is needed to put the
gems into their final location.

## INSTALLING GROUPS

By default, `bundle install` will install all gems in all groups
in your Gemfile(5), except those declared for a different platform.

However, you can explicitly tell Bundler to skip installing
certain groups with the `--without` option. This option takes
a space-separated list of groups.

While the `--without` option will skip _installing_ the gems in the
specified groups, it will still _download_ those gems and use them to
resolve the dependencies of every gem in your Gemfile(5).

This is so that installing a different set of groups on another
 machine (such as a production server) will not change the
gems and versions that you have already developed and tested against.

`Bundler offers a rock-solid guarantee that the third-party
code you are running in development and testing is also the
third-party code you are running in production. You can choose
to exclude some of that code in different environments, but you
will never be caught flat-footed by different versions of
third-party code being used in different environments.`

For a simple illustration, consider the following Gemfile(5):

    source 'https://rubygems.org'

    gem 'sinatra'

    group :production do
      gem 'rack-perftools-profiler'
    end

In this case, `sinatra` depends on any version of Rack (`>= 1.0`), while
`rack-perftools-profiler` depends on 1.x (`~> 1.0`).

When you run `bundle install --without production` in development, we
look at the dependencies of `rack-perftools-profiler` as well. That way,
you do not spend all your time developing against Rack 2.0, using new
APIs unavailable in Rack 1.x, only to have Bundler switch to Rack 1.2
when the `production` group _is_ used.

This should not cause any problems in practice, because we do not
attempt to `install` the gems in the excluded groups, and only evaluate
as part of the dependency resolution process.

This also means that you cannot include different versions of the same
gem in different groups, because doing so would result in different
sets of dependencies used in development and production. Because of
the vagaries of the dependency resolution process, this usually
affects more than the gems you list in your Gemfile(5), and can
(surprisingly) radically change the gems you are using.

## THE GEMFILE.LOCK

When you run `bundle install`, Bundler will persist the full names
and versions of all gems that you used (including dependencies of
the gems specified in the Gemfile(5)) into a file called `Gemfile.lock`.

Bundler uses this file in all subsequent calls to `bundle install`,
which guarantees that you always use the same exact code, even
as your application moves across machines.

Because of the way dependency resolution works, even a
seemingly small change (for instance, an update to a point-release
of a dependency of a gem in your Gemfile(5)) can result in radically
different gems being needed to satisfy all dependencies.

As a result, you `SHOULD` check your `Gemfile.lock` into version
control, in both applications and gems. If you do not, every machine that
checks out your repository (including your production server) will resolve all
dependencies again, which will result in different versions of
third-party code being used if `any` of the gems in the Gemfile(5)
or any of their dependencies have been updated.

When Bundler first shipped, the `Gemfile.lock` was included in the `.gitignore`
file included with generated gems.  Over time, however, it became clear that
this practice forces the pain of broken dependencies onto new contributors,
while leaving existing contributors potentially unaware of the problem. Since
`bundle install` is usually the first step towards a contribution, the pain of
broken dependencies would discourage new contributors from contributing. As a
result, we have revised our guidance for gem authors to now recommend checking
in the lock for gems.

## CONSERVATIVE UPDATING

When you make a change to the Gemfile(5) and then run `bundle install`,
Bundler will update only the gems that you modified.

In other words, if a gem that you `did not modify` worked before
you called `bundle install`, it will continue to use the exact
same versions of all dependencies as it used before the update.

Let's take a look at an example. Here's your original Gemfile(5):

    source 'https://rubygems.org'

    gem 'actionpack', '2.3.8'
    gem 'activemerchant'

In this case, both `actionpack` and `activemerchant` depend on
`activesupport`. The `actionpack` gem depends on `activesupport 2.3.8`
and `rack ~> 1.1.0`, while the `activemerchant` gem depends on
`activesupport >= 2.3.2`, `braintree >= 2.0.0`, and `builder >= 2.0.0`.

When the dependencies are first resolved, Bundler will select
`activesupport 2.3.8`, which satisfies the requirements of both
gems in your Gemfile(5).

Next, you modify your Gemfile(5) to:

    source 'https://rubygems.org'

    gem 'actionpack', '3.0.0.rc'
    gem 'activemerchant'

The `actionpack 3.0.0.rc` gem has a number of new dependencies,
and updates the `activesupport` dependency to `= 3.0.0.rc` and
the `rack` dependency to `~> 1.2.1`.

When you run `bundle install`, Bundler notices that you changed
the `actionpack` gem, but not the `activemerchant` gem. It
evaluates the gems currently being used to satisfy its requirements:

  * `activesupport 2.3.8`:
    also used to satisfy a dependency in `activemerchant`,
    which is not being updated
  * `rack ~> 1.1.0`:
    not currently being used to satisfy another dependency

Because you did not explicitly ask to update `activemerchant`,
you would not expect it to suddenly stop working after updating
`actionpack`. However, satisfying the new `activesupport 3.0.0.rc`
dependency of actionpack requires updating one of its dependencies.

Even though `activemerchant` declares a very loose dependency
that theoretically matches `activesupport 3.0.0.rc`, Bundler treats
gems in your Gemfile(5) that have not changed as an atomic unit
together with their dependencies. In this case, the `activemerchant`
dependency is treated as `activemerchant 1.7.1 + activesupport 2.3.8`,
so `bundle install` will report that it cannot update `actionpack`.

To explicitly update `actionpack`, including its dependencies
which other gems in the Gemfile(5) still depend on, run
`bundle update actionpack` (see `bundle update(1)`).

`Summary`: In general, after making a change to the Gemfile(5) , you
should first try to run `bundle install`, which will guarantee that no
other gem in the Gemfile(5) is impacted by the change. If that
does not work, run [bundle update(1)](bundle-update.1.html).

## SEE ALSO

* [Gem install docs](http://guides.rubygems.org/rubygems-basics/#installing-gems)
* [Rubygems signing docs](http://guides.rubygems.org/security/)
PK<H[�j����@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-pristine.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-PRISTINE" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
.
.SH "SYNOPSIS"
\fBbundle pristine\fR
.
.SH "DESCRIPTION"
\fBpristine\fR restores the installed gems in the bundle to their pristine condition using the local gem cache from RubyGems\. For git gems, a forced checkout will be performed\.
.
.P
For further explanation, \fBbundle pristine\fR ignores unpacked files on disk\. In other words, this command utilizes the local \fB\.gem\fR cache or the gem\'s git repository as if one were installing from scratch\.
.
.P
Note: the Bundler gem cannot be restored to its original state with \fBpristine\fR\. One also cannot use \fBbundle pristine\fR on gems with a \'path\' option in the Gemfile, because bundler has no original copy it can restore from\.
.
.P
When is it practical to use \fBbundle pristine\fR?
.
.P
It comes in handy when a developer is debugging a gem\. \fBbundle pristine\fR is a great way to get rid of experimental changes to a gem that one may not want\.
.
.P
Why use \fBbundle pristine\fR over \fBgem pristine \-\-all\fR?
.
.P
Both commands are very similar\. For context: \fBbundle pristine\fR, without arguments, cleans all gems from the lockfile\. Meanwhile, \fBgem pristine \-\-all\fR cleans all installed gems for that Ruby version\.
.
.P
If a developer forgets which gems in their project they might have been debugging, the Rubygems \fBgem pristine [GEMNAME]\fR command may be inconvenient\. One can avoid waiting for \fBgem pristine \-\-all\fR, and instead run \fBbundle pristine\fR\.
PK<H[�Y|LL@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-binstubs.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-BINSTUBS" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
.
.SH "SYNOPSIS"
\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone]
.
.SH "DESCRIPTION"
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can be run directly, and one that will always run the correct gem version used by the application\.
.
.P
For example, if you run \fBbundle binstubs rspec\-core\fR, Bundler will create the file \fBbin/rspec\fR\. That file will contain enough code to load Bundler, tell it to load the bundled gems, and then run rspec\.
.
.P
This command generates binstubs for executables in \fBGEM_NAME\fR\. Binstubs are put into \fBbin\fR, or the \fB\-\-path\fR directory if one has been set\. Calling binstubs with [GEM [GEM]] will create binstubs for all given gems\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-force\fR
Overwrite existing binstubs if they exist\.
.
.TP
\fB\-\-path\fR
The location to install the specified binstubs to\. This defaults to \fBbin\fR\.
.
.TP
\fB\-\-standalone\fR
Makes binstubs that can work without depending on Rubygems or Bundler at runtime\.
.
.TP
\fB\-\-shebang\fR
Specify a different shebang executable name than the default (default \'ruby\')
.
.TP
\fB\-\-all\fR
Create binstubs for all gems in the bundle\.

PK<H[m�����=share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-check.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CHECK" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
.
.SH "SYNOPSIS"
\fBbundle check\fR [\-\-dry\-run] [\-\-gemfile=FILE] [\-\-path=PATH]
.
.SH "DESCRIPTION"
\fBcheck\fR searches the local machine for each of the gems requested in the Gemfile\. If all gems are found, Bundler prints a success message and exits with a status of 0\.
.
.P
If not, the first missing gem is listed and Bundler exits status 1\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-dry\-run\fR
Locks the [\fBGemfile(5)\fR][Gemfile(5)] before running the command\.
.
.TP
\fB\-\-gemfile\fR
Use the specified gemfile instead of the [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.TP
\fB\-\-path\fR
Specify a different path than the system default (\fB$BUNDLE_PATH\fR or \fB$GEM_HOME\fR)\. Bundler will remember this value for future installs on this machine\.

PK<H["&Yx�S�S>share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-config.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CONFIG" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-config\fR \- Set bundler configuration options
.
.SH "SYNOPSIS"
\fBbundle config\fR [list|get|set|unset] [\fIname\fR [\fIvalue\fR]]
.
.SH "DESCRIPTION"
This command allows you to interact with Bundler\'s configuration system\.
.
.P
Bundler loads configuration settings in this order:
.
.IP "1." 4
Local config (\fB<project_root>/\.bundle/config\fR or \fB$BUNDLE_APP_CONFIG/config\fR)
.
.IP "2." 4
Environmental variables (\fBENV\fR)
.
.IP "3." 4
Global config (\fB~/\.bundle/config\fR)
.
.IP "4." 4
Bundler default config
.
.IP "" 0
.
.P
Executing \fBbundle config list\fR with will print a list of all bundler configuration for the current bundle, and where that configuration was set\.
.
.P
Executing \fBbundle config get <name>\fR will print the value of that configuration setting, and where it was set\.
.
.P
Executing \fBbundle config set <name> <value>\fR will set that configuration to the value specified for all bundles executed as the current user\. The configuration will be stored in \fB~/\.bundle/config\fR\. If \fIname\fR already is set, \fIname\fR will be overridden and user will be warned\.
.
.P
Executing \fBbundle config set \-\-global <name> <value>\fR works the same as above\.
.
.P
Executing \fBbundle config set \-\-local <name> <value>\fR will set that configuration in the directory for the local application\. The configuration will be stored in \fB<project_root>/\.bundle/config\fR\. If \fBBUNDLE_APP_CONFIG\fR is set, the configuration will be stored in \fB$BUNDLE_APP_CONFIG/config\fR\.
.
.P
Executing \fBbundle config unset <name>\fR will delete the configuration in both local and global sources\.
.
.P
Executing \fBbundle config unset \-\-global <name>\fR will delete the configuration only from the user configuration\.
.
.P
Executing \fBbundle config unset \-\-local <name> <value>\fR will delete the configuration only from the local application\.
.
.P
Executing bundle with the \fBBUNDLE_IGNORE_CONFIG\fR environment variable set will cause it to ignore all configuration\.
.
.SH "REMEMBERING OPTIONS"
Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application\'s configuration (normally, \fB\./\.bundle/config\fR)\.
.
.P
However, this will be changed in bundler 3, so it\'s better not to rely on this behavior\. If these options must be remembered, it\'s better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set \-\-local path foo\fR)\.
.
.P
The options that can be configured are:
.
.TP
\fBbin\fR
Creates a directory (defaults to \fB~/bin\fR) and place any executables from the gem there\. These executables run in Bundler\'s context\. If used, you might add this directory to your environment\'s \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
.
.TP
\fBdeployment\fR
In deployment mode, Bundler will \'roll\-out\' the bundle for \fBproduction\fR use\. Please check carefully if you want to have this option enabled in \fBdevelopment\fR or \fBtest\fR environments\.
.
.TP
\fBpath\fR
The location to install the specified gems to\. This defaults to Rubygems\' setting\. Bundler shares this location with Rubygems, \fBgem install \.\.\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \.\.\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
.
.TP
\fBwithout\fR
A space\-separated list of groups referencing gems to skip during installation\.
.
.TP
\fBwith\fR
A space\-separated list of groups referencing gems to include during installation\.
.
.SH "BUILD OPTIONS"
You can use \fBbundle config\fR to give Bundler the flags to pass to the gem installer every time bundler tries to install a particular gem\.
.
.P
A very common example, the \fBmysql\fR gem, requires Snow Leopard users to pass configuration flags to \fBgem install\fR to specify where to find the \fBmysql_config\fR executable\.
.
.IP "" 4
.
.nf

gem install mysql \-\- \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
.
.fi
.
.IP "" 0
.
.P
Since the specific location of that executable can change from machine to machine, you can specify these flags on a per\-machine basis\.
.
.IP "" 4
.
.nf

bundle config set \-\-global build\.mysql \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
.
.fi
.
.IP "" 0
.
.P
After running this command, every time bundler needs to install the \fBmysql\fR gem, it will pass along the flags you specified\.
.
.SH "CONFIGURATION KEYS"
Configuration keys in bundler have two forms: the canonical form and the environment variable form\.
.
.P
For instance, passing the \fB\-\-without\fR flag to bundle install(1) \fIbundle\-install\.1\.html\fR prevents Bundler from installing certain groups specified in the Gemfile(5)\. Bundler persists this value in \fBapp/\.bundle/config\fR so that calls to \fBBundler\.setup\fR do not try to find gems from the \fBGemfile\fR that you didn\'t install\. Additionally, subsequent calls to bundle install(1) \fIbundle\-install\.1\.html\fR remember this setting and skip those groups\.
.
.P
The canonical form of this configuration is \fB"without"\fR\. To convert the canonical form to the environment variable form, capitalize it, and prepend \fBBUNDLE_\fR\. The environment variable form of \fB"without"\fR is \fBBUNDLE_WITHOUT\fR\.
.
.P
Any periods in the configuration keys must be replaced with two underscores when setting it via environment variables\. The configuration key \fBlocal\.rack\fR becomes the environment variable \fBBUNDLE_LOCAL__RACK\fR\.
.
.SH "LIST OF AVAILABLE KEYS"
The following is a list of all configuration keys and their purpose\. You can learn more about their operation in bundle install(1) \fIbundle\-install\.1\.html\fR\.
.
.IP "\(bu" 4
\fBallow_deployment_source_credential_changes\fR (\fBBUNDLE_ALLOW_DEPLOYMENT_SOURCE_CREDENTIAL_CHANGES\fR): When in deployment mode, allow changing the credentials to a gem\'s source\. Ex: \fBhttps://some\.host\.com/gems/path/\fR \-> \fBhttps://user_name:password@some\.host\.com/gems/path\fR
.
.IP "\(bu" 4
\fBallow_offline_install\fR (\fBBUNDLE_ALLOW_OFFLINE_INSTALL\fR): Allow Bundler to use cached data when installing without network access\.
.
.IP "\(bu" 4
\fBauto_clean_without_path\fR (\fBBUNDLE_AUTO_CLEAN_WITHOUT_PATH\fR): Automatically run \fBbundle clean\fR after installing when an explicit \fBpath\fR has not been set and Bundler is not installing into the system gems\.
.
.IP "\(bu" 4
\fBauto_install\fR (\fBBUNDLE_AUTO_INSTALL\fR): Automatically run \fBbundle install\fR when gems are missing\.
.
.IP "\(bu" 4
\fBbin\fR (\fBBUNDLE_BIN\fR): Install executables from gems in the bundle to the specified directory\. Defaults to \fBfalse\fR\.
.
.IP "\(bu" 4
\fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR): Cache all gems, including path and git gems\. This needs to be explicitly configured on bundler 1 and bundler 2, but will be the default on bundler 3\.
.
.IP "\(bu" 4
\fBcache_all_platforms\fR (\fBBUNDLE_CACHE_ALL_PLATFORMS\fR): Cache gems for all platforms\.
.
.IP "\(bu" 4
\fBcache_path\fR (\fBBUNDLE_CACHE_PATH\fR): The directory that bundler will place cached gems in when running \fBbundle package\fR, and that bundler will look in when installing gems\. Defaults to \fBvendor/cache\fR\.
.
.IP "\(bu" 4
\fBclean\fR (\fBBUNDLE_CLEAN\fR): Whether Bundler should run \fBbundle clean\fR automatically after \fBbundle install\fR\.
.
.IP "\(bu" 4
\fBconsole\fR (\fBBUNDLE_CONSOLE\fR): The console that \fBbundle console\fR starts\. Defaults to \fBirb\fR\.
.
.IP "\(bu" 4
\fBdefault_install_uses_path\fR (\fBBUNDLE_DEFAULT_INSTALL_USES_PATH\fR): Whether a \fBbundle install\fR without an explicit \fB\-\-path\fR argument defaults to installing gems in \fB\.bundle\fR\.
.
.IP "\(bu" 4
\fBdeployment\fR (\fBBUNDLE_DEPLOYMENT\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\.
.
.IP "\(bu" 4
\fBdisable_checksum_validation\fR (\fBBUNDLE_DISABLE_CHECKSUM_VALIDATION\fR): Allow installing gems even if they do not match the checksum provided by RubyGems\.
.
.IP "\(bu" 4
\fBdisable_exec_load\fR (\fBBUNDLE_DISABLE_EXEC_LOAD\fR): Stop Bundler from using \fBload\fR to launch an executable in\-process in \fBbundle exec\fR\.
.
.IP "\(bu" 4
\fBdisable_local_branch_check\fR (\fBBUNDLE_DISABLE_LOCAL_BRANCH_CHECK\fR): Allow Bundler to use a local git override without a branch specified in the Gemfile\.
.
.IP "\(bu" 4
\fBdisable_local_revision_check\fR (\fBBUNDLE_DISABLE_LOCAL_REVISION_CHECK\fR): Allow Bundler to use a local git override without checking if the revision present in the lockfile is present in the repository\.
.
.IP "\(bu" 4
\fBdisable_shared_gems\fR (\fBBUNDLE_DISABLE_SHARED_GEMS\fR): Stop Bundler from accessing gems installed to RubyGems\' normal location\.
.
.IP "\(bu" 4
\fBdisable_version_check\fR (\fBBUNDLE_DISABLE_VERSION_CHECK\fR): Stop Bundler from checking if a newer Bundler version is available on rubygems\.org\.
.
.IP "\(bu" 4
\fBforce_ruby_platform\fR (\fBBUNDLE_FORCE_RUBY_PLATFORM\fR): Ignore the current machine\'s platform and install only \fBruby\fR platform gems\. As a result, gems with native extensions will be compiled from source\.
.
.IP "\(bu" 4
\fBfrozen\fR (\fBBUNDLE_FROZEN\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\. Defaults to \fBtrue\fR when \fB\-\-deployment\fR is used\.
.
.IP "\(bu" 4
\fBgem\.github_username\fR (\fBBUNDLE_GEM__GITHUB_USERNAME\fR): Sets a GitHub username or organization to be used in \fBREADME\fR file when you create a new gem via \fBbundle gem\fR command\. It can be overridden by passing an explicit \fB\-\-github\-username\fR flag to \fBbundle gem\fR\.
.
.IP "\(bu" 4
\fBgem\.push_key\fR (\fBBUNDLE_GEM__PUSH_KEY\fR): Sets the \fB\-\-key\fR parameter for \fBgem push\fR when using the \fBrake release\fR command with a private gemstash server\.
.
.IP "\(bu" 4
\fBgemfile\fR (\fBBUNDLE_GEMFILE\fR): The name of the file that bundler should use as the \fBGemfile\fR\. This location of this file also sets the root of the project, which is used to resolve relative paths in the \fBGemfile\fR, among other things\. By default, bundler will search up from the current working directory until it finds a \fBGemfile\fR\.
.
.IP "\(bu" 4
\fBglobal_gem_cache\fR (\fBBUNDLE_GLOBAL_GEM_CACHE\fR): Whether Bundler should cache all gems globally, rather than locally to the installing Ruby installation\.
.
.IP "\(bu" 4
\fBignore_messages\fR (\fBBUNDLE_IGNORE_MESSAGES\fR): When set, no post install messages will be printed\. To silence a single gem, use dot notation like \fBignore_messages\.httparty true\fR\.
.
.IP "\(bu" 4
\fBinit_gems_rb\fR (\fBBUNDLE_INIT_GEMS_RB\fR): Generate a \fBgems\.rb\fR instead of a \fBGemfile\fR when running \fBbundle init\fR\.
.
.IP "\(bu" 4
\fBjobs\fR (\fBBUNDLE_JOBS\fR): The number of gems Bundler can install in parallel\. Defaults to 1 on Windows, and to the the number of processors on other platforms\.
.
.IP "\(bu" 4
\fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR): Whether \fBbundle package\fR should skip installing gems\.
.
.IP "\(bu" 4
\fBno_prune\fR (\fBBUNDLE_NO_PRUNE\fR): Whether Bundler should leave outdated gems unpruned when caching\.
.
.IP "\(bu" 4
\fBpath\fR (\fBBUNDLE_PATH\fR): The location on disk where all gems in your bundle will be located regardless of \fB$GEM_HOME\fR or \fB$GEM_PATH\fR values\. Bundle gems not found in this location will be installed by \fBbundle install\fR\. Defaults to \fBGem\.dir\fR\. When \-\-deployment is used, defaults to vendor/bundle\.
.
.IP "\(bu" 4
\fBpath\.system\fR (\fBBUNDLE_PATH__SYSTEM\fR): Whether Bundler will install gems into the default system path (\fBGem\.dir\fR)\.
.
.IP "\(bu" 4
\fBpath_relative_to_cwd\fR (\fBBUNDLE_PATH_RELATIVE_TO_CWD\fR) Makes \fB\-\-path\fR relative to the CWD instead of the \fBGemfile\fR\.
.
.IP "\(bu" 4
\fBplugins\fR (\fBBUNDLE_PLUGINS\fR): Enable Bundler\'s experimental plugin system\.
.
.IP "\(bu" 4
\fBprefer_patch\fR (BUNDLE_PREFER_PATCH): Prefer updating only to next patch version during updates\. Makes \fBbundle update\fR calls equivalent to \fBbundler update \-\-patch\fR\.
.
.IP "\(bu" 4
\fBprint_only_version_number\fR (\fBBUNDLE_PRINT_ONLY_VERSION_NUMBER\fR): Print only version number from \fBbundler \-\-version\fR\.
.
.IP "\(bu" 4
\fBredirect\fR (\fBBUNDLE_REDIRECT\fR): The number of redirects allowed for network requests\. Defaults to \fB5\fR\.
.
.IP "\(bu" 4
\fBretry\fR (\fBBUNDLE_RETRY\fR): The number of times to retry failed network requests\. Defaults to \fB3\fR\.
.
.IP "\(bu" 4
\fBsetup_makes_kernel_gem_public\fR (\fBBUNDLE_SETUP_MAKES_KERNEL_GEM_PUBLIC\fR): Have \fBBundler\.setup\fR make the \fBKernel#gem\fR method public, even though RubyGems declares it as private\.
.
.IP "\(bu" 4
\fBshebang\fR (\fBBUNDLE_SHEBANG\fR): The program name that should be invoked for generated binstubs\. Defaults to the ruby install name used to generate the binstub\.
.
.IP "\(bu" 4
\fBsilence_deprecations\fR (\fBBUNDLE_SILENCE_DEPRECATIONS\fR): Whether Bundler should silence deprecation warnings for behavior that will be changed in the next major version\.
.
.IP "\(bu" 4
\fBsilence_root_warning\fR (\fBBUNDLE_SILENCE_ROOT_WARNING\fR): Silence the warning Bundler prints when installing gems as root\.
.
.IP "\(bu" 4
\fBssl_ca_cert\fR (\fBBUNDLE_SSL_CA_CERT\fR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format\.
.
.IP "\(bu" 4
\fBssl_client_cert\fR (\fBBUNDLE_SSL_CLIENT_CERT\fR): Path to a designated file containing a X\.509 client certificate and key in PEM format\.
.
.IP "\(bu" 4
\fBssl_verify_mode\fR (\fBBUNDLE_SSL_VERIFY_MODE\fR): The SSL verification mode Bundler uses when making HTTPS requests\. Defaults to verify peer\.
.
.IP "\(bu" 4
\fBsuppress_install_using_messages\fR (\fBBUNDLE_SUPPRESS_INSTALL_USING_MESSAGES\fR): Avoid printing \fBUsing \.\.\.\fR messages during installation when the version of a gem has not changed\.
.
.IP "\(bu" 4
\fBsystem_bindir\fR (\fBBUNDLE_SYSTEM_BINDIR\fR): The location where RubyGems installs binstubs\. Defaults to \fBGem\.bindir\fR\.
.
.IP "\(bu" 4
\fBtimeout\fR (\fBBUNDLE_TIMEOUT\fR): The seconds allowed before timing out for network requests\. Defaults to \fB10\fR\.
.
.IP "\(bu" 4
\fBupdate_requires_all_flag\fR (\fBBUNDLE_UPDATE_REQUIRES_ALL_FLAG\fR): Require passing \fB\-\-all\fR to \fBbundle update\fR when everything should be updated, and disallow passing no options to \fBbundle update\fR\.
.
.IP "\(bu" 4
\fBuser_agent\fR (\fBBUNDLE_USER_AGENT\fR): The custom user agent fragment Bundler includes in API requests\.
.
.IP "\(bu" 4
\fBwith\fR (\fBBUNDLE_WITH\fR): A \fB:\fR\-separated list of groups whose gems bundler should install\.
.
.IP "\(bu" 4
\fBwithout\fR (\fBBUNDLE_WITHOUT\fR): A \fB:\fR\-separated list of groups whose gems bundler should not install\.
.
.IP "" 0
.
.P
In general, you should set these settings per\-application by using the applicable flag to the bundle install(1) \fIbundle\-install\.1\.html\fR or bundle package(1) \fIbundle\-package\.1\.html\fR command\.
.
.P
You can set them globally either via environment variables or \fBbundle config\fR, whichever is preferable for your setup\. If you use both, environment variables will take preference over global settings\.
.
.SH "LOCAL GIT REPOS"
Bundler also allows you to work against a git repository locally instead of using the remote version\. This can be achieved by setting up a local override:
.
.IP "" 4
.
.nf

bundle config set \-\-local local\.GEM_NAME /path/to/local/git/repository
.
.fi
.
.IP "" 0
.
.P
For example, in order to use a local Rack repository, a developer could call:
.
.IP "" 4
.
.nf

bundle config set \-\-local local\.rack ~/Work/git/rack
.
.fi
.
.IP "" 0
.
.P
Now instead of checking out the remote git repository, the local override will be used\. Similar to a path source, every time the local git repository change, changes will be automatically picked up by Bundler\. This means a commit in the local git repo will update the revision in the \fBGemfile\.lock\fR to the local git repo revision\. This requires the same attention as git submodules\. Before pushing to the remote, you need to ensure the local override was pushed, otherwise you may point to a commit that only exists in your local machine\. You\'ll also need to CGI escape your usernames and passwords as well\.
.
.P
Bundler does many checks to ensure a developer won\'t work with invalid references\. Particularly, we force a developer to specify a branch in the \fBGemfile\fR in order to use this feature\. If the branch specified in the \fBGemfile\fR and the current branch in the local git repository do not match, Bundler will abort\. This ensures that a developer is always working against the correct branches, and prevents accidental locking to a different branch\.
.
.P
Finally, Bundler also ensures that the current revision in the \fBGemfile\.lock\fR exists in the local git repository\. By doing this, Bundler forces you to fetch the latest changes in the remotes\.
.
.SH "MIRRORS OF GEM SOURCES"
Bundler supports overriding gem sources with mirrors\. This allows you to configure rubygems\.org as the gem source in your Gemfile while still using your mirror to fetch gems\.
.
.IP "" 4
.
.nf

bundle config set \-\-global mirror\.SOURCE_URL MIRROR_URL
.
.fi
.
.IP "" 0
.
.P
For example, to use a mirror of rubygems\.org hosted at rubygems\-mirror\.org:
.
.IP "" 4
.
.nf

bundle config set \-\-global mirror\.http://rubygems\.org http://rubygems\-mirror\.org
.
.fi
.
.IP "" 0
.
.P
Each mirror also provides a fallback timeout setting\. If the mirror does not respond within the fallback timeout, Bundler will try to use the original server instead of the mirror\.
.
.IP "" 4
.
.nf

bundle config set \-\-global mirror\.SOURCE_URL\.fallback_timeout TIMEOUT
.
.fi
.
.IP "" 0
.
.P
For example, to fall back to rubygems\.org after 3 seconds:
.
.IP "" 4
.
.nf

bundle config set \-\-global mirror\.https://rubygems\.org\.fallback_timeout 3
.
.fi
.
.IP "" 0
.
.P
The default fallback timeout is 0\.1 seconds, but the setting can currently only accept whole seconds (for example, 1, 15, or 30)\.
.
.SH "CREDENTIALS FOR GEM SOURCES"
Bundler allows you to configure credentials for any gem source, which allows you to avoid putting secrets into your Gemfile\.
.
.IP "" 4
.
.nf

bundle config set \-\-global SOURCE_HOSTNAME USERNAME:PASSWORD
.
.fi
.
.IP "" 0
.
.P
For example, to save the credentials of user \fBclaudette\fR for the gem source at \fBgems\.longerous\.com\fR, you would run:
.
.IP "" 4
.
.nf

bundle config set \-\-global gems\.longerous\.com claudette:s00pers3krit
.
.fi
.
.IP "" 0
.
.P
Or you can set the credentials as an environment variable like this:
.
.IP "" 4
.
.nf

export BUNDLE_GEMS__LONGEROUS__COM="claudette:s00pers3krit"
.
.fi
.
.IP "" 0
.
.P
For gems with a git source with HTTP(S) URL you can specify credentials like so:
.
.IP "" 4
.
.nf

bundle config set \-\-global https://github\.com/rubygems/rubygems\.git username:password
.
.fi
.
.IP "" 0
.
.P
Or you can set the credentials as an environment variable like so:
.
.IP "" 4
.
.nf

export BUNDLE_GITHUB__COM=username:password
.
.fi
.
.IP "" 0
.
.P
This is especially useful for private repositories on hosts such as Github, where you can use personal OAuth tokens:
.
.IP "" 4
.
.nf

export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x\-oauth\-basic
.
.fi
.
.IP "" 0
.
.P
Note that any configured credentials will be redacted by informative commands such as \fBbundle config list\fR or \fBbundle config get\fR, unless you use the \fB\-\-parseable\fR flag\. This is to avoid unintentially leaking credentials when copy\-pasting bundler output\.
.
.P
Also note that to guarantee a sane mapping between valid environment variable names and valid host names, bundler makes the following transformations:
.
.IP "\(bu" 4
Any \fB\-\fR characters in a host name are mapped to a triple dash (\fB___\fR) in the corresponding enviroment variable\.
.
.IP "\(bu" 4
Any \fB\.\fR characters in a host name are mapped to a double dash (\fB__\fR) in the corresponding environment variable\.
.
.IP "" 0
.
.P
This means that if you have a gem server named \fBmy\.gem\-host\.com\fR, you\'ll need to use the \fBBUNDLE_MY__GEM___HOST__COM\fR variable to configure credentials for it through ENV\.
.
.SH "CONFIGURE BUNDLER DIRECTORIES"
Bundler\'s home, config, cache and plugin directories are able to be configured through environment variables\. The default location for Bundler\'s home directory is \fB~/\.bundle\fR, which all directories inherit from by default\. The following outlines the available environment variables and their default values
.
.IP "" 4
.
.nf

BUNDLE_USER_HOME : $HOME/\.bundle
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
.
.fi
.
.IP "" 0

PK<H[l�4��Bshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-clean.1.ronnnu�[���bundle-clean(1) -- Cleans up unused gems in your bundler directory
==================================================================

## SYNOPSIS

`bundle clean` [--dry-run] [--force]

## DESCRIPTION

This command will remove all unused gems in your bundler directory. This is
useful when you have made many changes to your gem dependencies.

## OPTIONS

* `--dry-run`:
  Print the changes, but do not clean the unused gems.
* `--force`:
  Force a clean even if `--path` is not set.
PK<H[�U�M��=share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-cache.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CACHE" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
.
.SH "SYNOPSIS"
\fBbundle cache\fR
.
.SH "DESCRIPTION"
Copy all of the \fB\.gem\fR files needed to run the application into the \fBvendor/cache\fR directory\. In the future, when running [bundle install(1)][bundle\-install], use the gems in the cache in preference to the ones on \fBrubygems\.org\fR\.
.
.SH "GIT AND PATH GEMS"
The \fBbundle cache\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This needs to be explicitly enabled via the \fB\-\-all\fR option\. Once used, the \fB\-\-all\fR option will be remembered\.
.
.SH "SUPPORT FOR MULTIPLE PLATFORMS"
When using gems that have different packages for different platforms, Bundler supports caching of gems for other platforms where the Gemfile has been resolved (i\.e\. present in the lockfile) in \fBvendor/cache\fR\. This needs to be enabled via the \fB\-\-all\-platforms\fR option\. This setting will be remembered in your local bundler configuration\.
.
.SH "REMOTE FETCHING"
By default, if you run \fBbundle install(1)\fR](bundle\-install\.1\.html) after running bundle cache(1) \fIbundle\-cache\.1\.html\fR, bundler will still connect to \fBrubygems\.org\fR to check whether a platform\-specific gem exists for any of the gems in \fBvendor/cache\fR\.
.
.P
For instance, consider this Gemfile(5):
.
.IP "" 4
.
.nf

source "https://rubygems\.org"

gem "nokogiri"
.
.fi
.
.IP "" 0
.
.P
If you run \fBbundle cache\fR under C Ruby, bundler will retrieve the version of \fBnokogiri\fR for the \fB"ruby"\fR platform\. If you deploy to JRuby and run \fBbundle install\fR, bundler is forced to check to see whether a \fB"java"\fR platformed \fBnokogiri\fR exists\.
.
.P
Even though the \fBnokogiri\fR gem for the Ruby platform is \fItechnically\fR acceptable on JRuby, it has a C extension that does not run on JRuby\. As a result, bundler will, by default, still connect to \fBrubygems\.org\fR to check whether it has a version of one of your gems more specific to your platform\.
.
.P
This problem is also not limited to the \fB"java"\fR platform\. A similar (common) problem can happen when developing on Windows and deploying to Linux, or even when developing on OSX and deploying to Linux\.
.
.P
If you know for sure that the gems packaged in \fBvendor/cache\fR are appropriate for the platform you are on, you can run \fBbundle install \-\-local\fR to skip checking for more appropriate gems, and use the ones in \fBvendor/cache\fR\.
.
.P
One way to be sure that you have the right platformed versions of all your gems is to run \fBbundle cache\fR on an identical machine and check in the gems\. For instance, you can run \fBbundle cache\fR on an identical staging box during your staging process, and check in the \fBvendor/cache\fR before deploying to production\.
.
.P
By default, bundle cache(1) \fIbundle\-cache\.1\.html\fR fetches and also installs the gems to the default location\. To package the dependencies to \fBvendor/cache\fR without installing them to the local install location, you can run \fBbundle cache \-\-no\-install\fR\.
PK<H[1�~��Eshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-binstubs.1.ronnnu�[���bundle-binstubs(1) -- Install the binstubs of the listed gems
=============================================================

## SYNOPSIS

`bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone]

## DESCRIPTION

Binstubs are scripts that wrap around executables. Bundler creates a
small Ruby file (a binstub) that loads Bundler, runs the command,
and puts it into `bin/`. Binstubs are a shortcut-or alternative-
to always using `bundle exec`. This gives you a file that can be run
directly, and one that will always run the correct gem version
used by the application.

For example, if you run `bundle binstubs rspec-core`, Bundler will create
the file `bin/rspec`. That file will contain enough code to load Bundler,
tell it to load the bundled gems, and then run rspec.

This command generates binstubs for executables in `GEM_NAME`.
Binstubs are put into `bin`, or the `--path` directory if one has been set.
Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.

## OPTIONS

* `--force`:
  Overwrite existing binstubs if they exist.

* `--path`:
  The location to install the specified binstubs to. This defaults to `bin`.

* `--standalone`:
  Makes binstubs that can work without depending on Rubygems or Bundler at
  runtime.

* `--shebang`:
  Specify a different shebang executable name than the default (default 'ruby')

* `--all`:
  Create binstubs for all gems in the bundle.
PK<H[��,��<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-list.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-LIST" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-list\fR \- List all the gems in the bundle
.
.SH "SYNOPSIS"
\fBbundle list\fR [\-\-name\-only] [\-\-paths] [\-\-without\-group=GROUP[ GROUP\.\.\.]] [\-\-only\-group=GROUP[ GROUP\.\.\.]]
.
.SH "DESCRIPTION"
Prints a list of all the gems in the bundle including their version\.
.
.P
Example:
.
.P
bundle list \-\-name\-only
.
.P
bundle list \-\-paths
.
.P
bundle list \-\-without\-group test
.
.P
bundle list \-\-only\-group dev
.
.P
bundle list \-\-only\-group dev test \-\-paths
.
.SH "OPTIONS"
.
.TP
\fB\-\-name\-only\fR
Print only the name of each gem\.
.
.TP
\fB\-\-paths\fR
Print the path to each gem in the bundle\.
.
.TP
\fB\-\-without\-group=<list>\fR
A space\-separated list of groups of gems to skip during printing\.
.
.TP
\fB\-\-only\-group=<list>\fR
A space\-separated list of groups of gems to print\.

PK<H[��h���Ashare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-init.1.ronnnu�[���bundle-init(1) -- Generates a Gemfile into the current working directory
========================================================================

## SYNOPSIS

`bundle init` [--gemspec=FILE]

## DESCRIPTION

Init generates a default [`Gemfile(5)`][Gemfile(5)] in the current working directory. When
adding a [`Gemfile(5)`][Gemfile(5)] to a gem with a gemspec, the `--gemspec` option will
automatically add each dependency listed in the gemspec file to the newly
created [`Gemfile(5)`][Gemfile(5)].

## OPTIONS

* `--gemspec`:
  Use the specified .gemspec to create the [`Gemfile(5)`][Gemfile(5)]

## FILES

Included in the default [`Gemfile(5)`][Gemfile(5)]
generated is the line `# frozen_string_literal: true`. This is a magic comment
supported for the first time in Ruby 2.3. The presence of this line
results in all string literals in the file being implicitly frozen.

## SEE ALSO

[Gemfile(5)](https://bundler.io/man/gemfile.5.html)
PK<H[�2P33<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-init.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INIT" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
.
.SH "SYNOPSIS"
\fBbundle init\fR [\-\-gemspec=FILE]
.
.SH "DESCRIPTION"
Init generates a default [\fBGemfile(5)\fR][Gemfile(5)] in the current working directory\. When adding a [\fBGemfile(5)\fR][Gemfile(5)] to a gem with a gemspec, the \fB\-\-gemspec\fR option will automatically add each dependency listed in the gemspec file to the newly created [\fBGemfile(5)\fR][Gemfile(5)]\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-gemspec\fR
Use the specified \.gemspec to create the [\fBGemfile(5)\fR][Gemfile(5)]
.
.SH "FILES"
Included in the default [\fBGemfile(5)\fR][Gemfile(5)] generated is the line \fB# frozen_string_literal: true\fR\. This is a magic comment supported for the first time in Ruby 2\.3\. The presence of this line results in all string literals in the file being implicitly frozen\.
.
.SH "SEE ALSO"
Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
PK<H[��MM;share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-viz.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-VIZ" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
.
.SH "SYNOPSIS"
\fBbundle viz\fR [\-\-file=FILE] [\-\-format=FORMAT] [\-\-requirements] [\-\-version] [\-\-without=GROUP GROUP]
.
.SH "DESCRIPTION"
\fBviz\fR generates a PNG file of the current \fBGemfile(5)\fR as a dependency graph\. \fBviz\fR requires the ruby\-graphviz gem (and its dependencies)\.
.
.P
The associated gems must also be installed via \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-file\fR, \fB\-f\fR
The name to use for the generated file\. See \fB\-\-format\fR option
.
.TP
\fB\-\-format\fR, \fB\-F\fR
This is output format option\. Supported format is png, jpg, svg, dot \.\.\.
.
.TP
\fB\-\-requirements\fR, \fB\-R\fR
Set to show the version of each required dependency\.
.
.TP
\fB\-\-version\fR, \fB\-v\fR
Set to show each gem version\.
.
.TP
\fB\-\-without\fR, \fB\-W\fR
Exclude gems that are part of the specified named group\.

PK<H[�8��XX=share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-clean.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-CLEAN" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
.
.SH "SYNOPSIS"
\fBbundle clean\fR [\-\-dry\-run] [\-\-force]
.
.SH "DESCRIPTION"
This command will remove all unused gems in your bundler directory\. This is useful when you have made many changes to your gem dependencies\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-dry\-run\fR
Print the changes, but do not clean the unused gems\.
.
.TP
\fB\-\-force\fR
Force a clean even if \fB\-\-path\fR is not set\.

PK<H[��(V��@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-viz.1.ronnnu�[���bundle-viz(1) -- Generates a visual dependency graph for your Gemfile
=====================================================================

## SYNOPSIS

`bundle viz` [--file=FILE]
             [--format=FORMAT]
             [--requirements]
             [--version]
             [--without=GROUP GROUP]

## DESCRIPTION

`viz` generates a PNG file of the current `Gemfile(5)` as a dependency graph.
`viz` requires the ruby-graphviz gem (and its dependencies).

The associated gems must also be installed via [`bundle install(1)`](bundle-install.1.html).

## OPTIONS

* `--file`, `-f`:
  The name to use for the generated file. See `--format` option
* `--format`, `-F`:
  This is output format option. Supported format is png, jpg, svg, dot ...
* `--requirements`, `-R`:
  Set to show the version of each required dependency.
* `--version`, `-v`:
  Set to show each gem version.
* `--without`, `-W`:
  Exclude gems that are part of the specified named group.
PK<H[6�H��Cshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-doctor.1.ronnnu�[���bundle-doctor(1) -- Checks the bundle for common problems
=========================================================

## SYNOPSIS

`bundle doctor` [--quiet]
                [--gemfile=GEMFILE]

## DESCRIPTION

Checks your Gemfile and gem environment for common problems. If issues
are detected, Bundler prints them and exits status 1. Otherwise,
Bundler prints a success message and exits status 0.

Examples of common problems caught by bundle-doctor include:

* Invalid Bundler settings
* Mismatched Ruby versions
* Mismatched platforms
* Uninstalled gems
* Missing dependencies

## OPTIONS

* `--quiet`:
  Only output warnings and errors.

* `--gemfile=<gemfile>`:
  The location of the Gemfile(5) which Bundler should use. This defaults
  to a Gemfile(5) in the current working directory. In general, Bundler
  will assume that the location of the Gemfile(5) is also the project's
  root and will try to find `Gemfile.lock` and `vendor/cache` relative
  to this location.
PK<H[�)&LYYBshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-check.1.ronnnu�[���bundle-check(1) -- Verifies if dependencies are satisfied by installed gems
===========================================================================

## SYNOPSIS

`bundle check` [--dry-run]
               [--gemfile=FILE]
               [--path=PATH]

## DESCRIPTION

`check` searches the local machine for each of the gems requested in the
Gemfile. If all gems are found, Bundler prints a success message and exits with
a status of 0.

If not, the first missing gem is listed and Bundler exits status 1.

## OPTIONS

* `--dry-run`:
  Locks the [`Gemfile(5)`][Gemfile(5)] before running the command.
* `--gemfile`:
  Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)].
* `--path`:
  Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`).
  Bundler will remember this value for future installs on this machine.
PK<H[����-N-N=share/gems/gems/bundler-2.2.24/lib/bundler/man/gemfile.5.ronnnu�[���Gemfile(5) -- A format for describing gem dependencies for Ruby programs
========================================================================

## SYNOPSIS

A `Gemfile` describes the gem dependencies required to execute associated
Ruby code.

Place the `Gemfile` in the root of the directory containing the associated
code. For instance, in a Rails application, place the `Gemfile` in the same
directory as the `Rakefile`.

## SYNTAX

A `Gemfile` is evaluated as Ruby code, in a context which makes available
a number of methods used to describe the gem requirements.

## GLOBAL SOURCES

At the top of the `Gemfile`, add a line for the `Rubygems` source that contains
the gems listed in the `Gemfile`.

    source "https://rubygems.org"

It is possible, but not recommended as of Bundler 1.7, to add multiple global
`source` lines. Each of these `source`s `MUST` be a valid Rubygems repository.

Sources are checked for gems following the heuristics described in
[SOURCE PRIORITY][]. If a gem is found in more than one global source, Bundler
will print a warning after installing the gem indicating which source was used,
and listing the other sources where the gem is available. A specific source can
be selected for gems that need to use a non-standard repository, suppressing
this warning, by using the [`:source` option](#SOURCE) or a
[`source` block](#BLOCK-FORM-OF-SOURCE-GIT-PATH-GROUP-and-PLATFORMS).

### CREDENTIALS

Some gem sources require a username and password. Use [bundle config(1)](bundle-config.1.html) to set
the username and password for any of the sources that need it. The command must
be run once on each computer that will install the Gemfile, but this keeps the
credentials from being stored in plain text in version control.

    bundle config gems.example.com user:password

For some sources, like a company Gemfury account, it may be easier to
include the credentials in the Gemfile as part of the source URL.

    source "https://user:password@gems.example.com"

Credentials in the source URL will take precedence over credentials set using
`config`.

## RUBY

If your application requires a specific Ruby version or engine, specify your
requirements using the `ruby` method, with the following arguments.
All parameters are `OPTIONAL` unless otherwise specified.

### VERSION (required)

The version of Ruby that your application requires. If your application
requires an alternate Ruby engine, such as JRuby, Rubinius or TruffleRuby, this
should be the Ruby version that the engine is compatible with.

    ruby "1.9.3"

### ENGINE

Each application _may_ specify a Ruby engine. If an engine is specified, an
engine version _must_ also be specified.

What exactly is an Engine?
  - A Ruby engine is an implementation of the Ruby language.

  - For background: the reference or original implementation of the Ruby
    programming language is called
    [Matz's Ruby Interpreter](https://en.wikipedia.org/wiki/Ruby_MRI), or  MRI
    for short. This is named after Ruby creator Yukihiro Matsumoto,
    also known as Matz. MRI is also known as CRuby, because it is written in C.
    MRI is the most widely used Ruby engine.

  - [Other implementations](https://www.ruby-lang.org/en/about/) of Ruby exist.
    Some of the more well-known implementations include
    [Rubinius](https://rubinius.com/), and [JRuby](http://jruby.org/).
    Rubinius is an alternative implementation of Ruby written in Ruby.
    JRuby is an implementation of Ruby on the JVM, short for Java Virtual Machine.

### ENGINE VERSION

Each application _may_ specify a Ruby engine version. If an engine version is
specified, an engine _must_ also be specified. If the engine is "ruby" the
engine version specified _must_ match the Ruby version.

    ruby "1.8.7", :engine => "jruby", :engine_version => "1.6.7"

### PATCHLEVEL

Each application _may_ specify a Ruby patchlevel.

    ruby "2.0.0", :patchlevel => "247"

## GEMS

Specify gem requirements using the `gem` method, with the following arguments.
All parameters are `OPTIONAL` unless otherwise specified.

### NAME (required)

For each gem requirement, list a single _gem_ line.

    gem "nokogiri"

### VERSION

Each _gem_ `MAY` have one or more version specifiers.

    gem "nokogiri", ">= 1.4.2"
    gem "RedCloth", ">= 4.1.0", "< 4.2.0"

### REQUIRE AS

Each _gem_ `MAY` specify files that should be used when autorequiring via
`Bundler.require`. You may pass an array with multiple files or `true` if the file
you want `required` has the same name as _gem_ or `false` to
prevent any file from being autorequired.

    gem "redis", :require => ["redis/connection/hiredis", "redis"]
    gem "webmock", :require => false
    gem "byebug", :require => true

The argument defaults to the name of the gem. For example, these are identical:

    gem "nokogiri"
    gem "nokogiri", :require => "nokogiri"
    gem "nokogiri", :require => true

### GROUPS

Each _gem_ `MAY` specify membership in one or more groups. Any _gem_ that does
not specify membership in any group is placed in the `default` group.

    gem "rspec", :group => :test
    gem "wirble", :groups => [:development, :test]

The Bundler runtime allows its two main methods, `Bundler.setup` and
`Bundler.require`, to limit their impact to particular groups.

    # setup adds gems to Ruby's load path
    Bundler.setup                    # defaults to all groups
    require "bundler/setup"          # same as Bundler.setup
    Bundler.setup(:default)          # only set up the _default_ group
    Bundler.setup(:test)             # only set up the _test_ group (but `not` _default_)
    Bundler.setup(:default, :test)   # set up the _default_ and _test_ groups, but no others

    # require requires all of the gems in the specified groups
    Bundler.require                  # defaults to the _default_ group
    Bundler.require(:default)        # identical
    Bundler.require(:default, :test) # requires the _default_ and _test_ groups
    Bundler.require(:test)           # requires the _test_ group

The Bundler CLI allows you to specify a list of groups whose gems `bundle install` should
not install with the `without` configuration.

To specify multiple groups to ignore, specify a list of groups separated by spaces.

    bundle config set --local without test
    bundle config set --local without development test

Also, calling `Bundler.setup` with no parameters, or calling `require "bundler/setup"`
will setup all groups except for the ones you excluded via `--without` (since they
are not available).

Note that on `bundle install`, bundler downloads and evaluates all gems, in order to
create a single canonical list of all of the required gems and their dependencies.
This means that you cannot list different versions of the same gems in different
groups. For more details, see [Understanding Bundler](https://bundler.io/rationale.html).

### PLATFORMS

If a gem should only be used in a particular platform or set of platforms, you can
specify them. Platforms are essentially identical to groups, except that you do not
need to use the `--without` install-time flag to exclude groups of gems for other
platforms.

There are a number of `Gemfile` platforms:

  * `ruby`:
    C Ruby (MRI), Rubinius or TruffleRuby, but `NOT` Windows
  * `mri`:
    Same as _ruby_, but only C Ruby (MRI)
  * `mingw`:
    Windows 32 bit 'mingw32' platform (aka RubyInstaller)
  * `x64_mingw`:
    Windows 64 bit 'mingw32' platform (aka RubyInstaller x64)
  * `rbx`:
    Rubinius
  * `jruby`:
    JRuby
  * `truffleruby`:
    TruffleRuby
  * `mswin`:
    Windows

You can restrict further by platform and version for all platforms *except* for
`rbx`, `jruby`, `truffleruby` and `mswin`.

To specify a version in addition to a platform, append the version number without
the delimiter to the platform. For example, to specify that a gem should only be
used on platforms with Ruby 2.3, use:

    ruby_23

The full list of platforms and supported versions includes:

  * `ruby`:
    1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
  * `mri`:
    1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
  * `mingw`:
    1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
  * `x64_mingw`:
    2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6

As with groups, you can specify one or more platforms:

    gem "weakling",   :platforms => :jruby
    gem "ruby-debug", :platforms => :mri_18
    gem "nokogiri",   :platforms => [:mri_18, :jruby]

All operations involving groups ([`bundle install`](bundle-install.1.html), `Bundler.setup`,
`Bundler.require`) behave exactly the same as if any groups not
matching the current platform were explicitly excluded.

### SOURCE

You can select an alternate Rubygems repository for a gem using the ':source'
option.

    gem "some_internal_gem", :source => "https://gems.example.com"

This forces the gem to be loaded from this source and ignores any global sources
declared at the top level of the file. If the gem does not exist in this source,
it will not be installed.

Bundler will search for child dependencies of this gem by first looking in the
source selected for the parent, but if they are not found there, it will fall
back on global sources using the ordering described in [SOURCE PRIORITY][].

Selecting a specific source repository this way also suppresses the ambiguous
gem warning described above in
[GLOBAL SOURCES (#source)](#GLOBAL-SOURCES).

Using the `:source` option for an individual gem will also make that source
available as a possible global source for any other gems which do not specify
explicit sources. Thus, when adding gems with explicit sources, it is
recommended that you also ensure all other gems in the Gemfile are using
explicit sources.

### GIT

If necessary, you can specify that a gem is located at a particular
git repository using the `:git` parameter. The repository can be accessed via
several protocols:

  * `HTTP(S)`:
    gem "rails", :git => "https://github.com/rails/rails.git"
  * `SSH`:
    gem "rails", :git => "git@github.com:rails/rails.git"
  * `git`:
    gem "rails", :git => "git://github.com/rails/rails.git"

If using SSH, the user that you use to run `bundle install` `MUST` have the
appropriate keys available in their `$HOME/.ssh`.

`NOTE`: `http://` and `git://` URLs should be avoided if at all possible. These
protocols are unauthenticated, so a man-in-the-middle attacker can deliver
malicious code and compromise your system. HTTPS and SSH are strongly
preferred.

The `group`, `platforms`, and `require` options are available and behave
exactly the same as they would for a normal gem.

A git repository `SHOULD` have at least one file, at the root of the
directory containing the gem, with the extension `.gemspec`. This file
`MUST` contain a valid gem specification, as expected by the `gem build`
command.

If a git repository does not have a `.gemspec`, bundler will attempt to
create one, but it will not contain any dependencies, executables, or
C extension compilation instructions. As a result, it may fail to properly
integrate into your application.

If a git repository does have a `.gemspec` for the gem you attached it
to, a version specifier, if provided, means that the git repository is
only valid if the `.gemspec` specifies a version matching the version
specifier. If not, bundler will print a warning.

    gem "rails", "2.3.8", :git => "https://github.com/rails/rails.git"
    # bundle install will fail, because the .gemspec in the rails
    # repository's master branch specifies version 3.0.0

If a git repository does `not` have a `.gemspec` for the gem you attached
it to, a version specifier `MUST` be provided. Bundler will use this
version in the simple `.gemspec` it creates.

Git repositories support a number of additional options.

  * `branch`, `tag`, and `ref`:
    You `MUST` only specify at most one of these options. The default
    is `:branch => "master"`.  For example:

      gem "rails", :git => "https://github.com/rails/rails.git", :branch => "5-0-stable"

      gem "rails", :git => "https://github.com/rails/rails.git", :tag => "v5.0.0"

      gem "rails", :git => "https://github.com/rails/rails.git", :ref => "4aded"

  * `submodules`:
    For reference, a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules)
    lets you have another git repository within a subfolder of your repository.
    Specify `:submodules => true` to cause bundler to expand any
    submodules included in the git repository

If a git repository contains multiple `.gemspecs`, each `.gemspec`
represents a gem located at the same place in the file system as
the `.gemspec`.

    |~rails                   [git root]
    | |-rails.gemspec         [rails gem located here]
    |~actionpack
    | |-actionpack.gemspec    [actionpack gem located here]
    |~activesupport
    | |-activesupport.gemspec [activesupport gem located here]
    |...

To install a gem located in a git repository, bundler changes to
the directory containing the gemspec, runs `gem build name.gemspec`
and then installs the resulting gem. The `gem build` command,
which comes standard with Rubygems, evaluates the `.gemspec` in
the context of the directory in which it is located.

### GIT SOURCE

A custom git source can be defined via the `git_source` method. Provide the source's name
as an argument, and a block which receives a single argument and interpolates it into a
string to return the full repo address:

    git_source(:stash){ |repo_name| "https://stash.corp.acme.pl/#{repo_name}.git" }
    gem 'rails', :stash => 'forks/rails'

In addition, if you wish to choose a specific branch:

    gem "rails", :stash => "forks/rails", :branch => "branch_name"

### GITHUB

`NOTE`: This shorthand should be avoided until Bundler 2.0, since it
currently expands to an insecure `git://` URL. This allows a
man-in-the-middle attacker to compromise your system.

If the git repository you want to use is hosted on GitHub and is public, you can use the
:github shorthand to specify the github username and repository name (without the
trailing ".git"), separated by a slash. If both the username and repository name are the
same, you can omit one.

    gem "rails", :github => "rails/rails"
    gem "rails", :github => "rails"

Are both equivalent to

    gem "rails", :git => "git://github.com/rails/rails.git"

Since the `github` method is a specialization of `git_source`, it accepts a `:branch` named argument.

### GIST

If the git repository you want to use is hosted as a Github Gist and is public, you can use
the :gist shorthand to specify the gist identifier (without the trailing ".git").

    gem "the_hatch", :gist => "4815162342"

Is equivalent to:

    gem "the_hatch", :git => "https://gist.github.com/4815162342.git"

Since the `gist` method is a specialization of `git_source`, it accepts a `:branch` named argument.

### BITBUCKET

If the git repository you want to use is hosted on Bitbucket and is public, you can use the
:bitbucket shorthand to specify the bitbucket username and repository name (without the
trailing ".git"), separated by a slash. If both the username and repository name are the
same, you can omit one.

    gem "rails", :bitbucket => "rails/rails"
    gem "rails", :bitbucket => "rails"

Are both equivalent to

    gem "rails", :git => "https://rails@bitbucket.org/rails/rails.git"

Since the `bitbucket` method is a specialization of `git_source`, it accepts a `:branch` named argument.

### PATH

You can specify that a gem is located in a particular location
on the file system. Relative paths are resolved relative to the
directory containing the `Gemfile`.

Similar to the semantics of the `:git` option, the `:path`
option requires that the directory in question either contains
a `.gemspec` for the gem, or that you specify an explicit
version that bundler should use.

Unlike `:git`, bundler does not compile C extensions for
gems specified as paths.

    gem "rails", :path => "vendor/rails"

If you would like to use multiple local gems directly from the filesystem, you can set a global `path` option to the path containing the gem's files. This will automatically load gemspec files from subdirectories.

    path 'components' do
      gem 'admin_ui'
      gem 'public_ui'
    end

## BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS

The `:source`, `:git`, `:path`, `:group`, and `:platforms` options may be
applied to a group of gems by using block form.

    source "https://gems.example.com" do
      gem "some_internal_gem"
      gem "another_internal_gem"
    end

    git "https://github.com/rails/rails.git" do
      gem "activesupport"
      gem "actionpack"
    end

    platforms :ruby do
      gem "ruby-debug"
      gem "sqlite3"
    end

    group :development, :optional => true do
      gem "wirble"
      gem "faker"
    end

In the case of the group block form the :optional option can be given
to prevent a group from being installed unless listed in the `--with`
option given to the `bundle install` command.

In the case of the `git` block form, the `:ref`, `:branch`, `:tag`,
and `:submodules` options may be passed to the `git` method, and
all gems in the block will inherit those options.

The presence of a `source` block in a Gemfile also makes that source
available as a possible global source for any other gems which do not specify
explicit sources. Thus, when defining source blocks, it is
recommended that you also ensure all other gems in the Gemfile are using
explicit sources, either via source blocks or `:source` directives on
individual gems.

## INSTALL_IF

The `install_if` method allows gems to be installed based on a proc or lambda.
This is especially useful for optional gems that can only be used if certain
software is installed or some other conditions are met.

    install_if -> { RUBY_PLATFORM =~ /darwin/ } do
      gem "pasteboard"
    end

## GEMSPEC

The [`.gemspec`](http://guides.rubygems.org/specification-reference/) file is where
 you provide metadata about your gem to Rubygems. Some required Gemspec
 attributes include the name, description, and homepage of your gem. This is
 also where you specify the dependencies your gem needs to run.

If you wish to use Bundler to help install dependencies for a gem while it is
being developed, use the `gemspec` method to pull in the dependencies listed in
the `.gemspec` file.

The `gemspec` method adds any runtime dependencies as gem requirements in the
default group. It also adds development dependencies as gem requirements in the
`development` group. Finally, it adds a gem requirement on your project (`:path
=> '.'`). In conjunction with `Bundler.setup`, this allows you to require project
files in your test code as you would if the project were installed as a gem; you
need not manipulate the load path manually or require project files via relative
paths.

The `gemspec` method supports optional `:path`, `:glob`, `:name`, and `:development_group`
options, which control where bundler looks for the `.gemspec`, the glob it uses to look
for the gemspec (defaults to: "{,*,*/*}.gemspec"), what named `.gemspec` it uses
(if more than one is present), and which group development dependencies are included in.

When a `gemspec` dependency encounters version conflicts during resolution, the
local version under development will always be selected -- even if there are
remote versions that better match other requirements for the `gemspec` gem.

## SOURCE PRIORITY

When attempting to locate a gem to satisfy a gem requirement,
bundler uses the following priority order:

  1. The source explicitly attached to the gem (using `:source`, `:path`, or
     `:git`)
  2. For implicit gems (dependencies of explicit gems), any source, git, or path
     repository declared on the parent. This results in bundler prioritizing the
     ActiveSupport gem from the Rails git repository over ones from
     `rubygems.org`
  3. The sources specified via global `source` lines, searching each source in
     your `Gemfile` from last added to first added.
PK<H[�8EDFDF?share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-install.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-INSTALL" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
.
.SH "SYNOPSIS"
\fBbundle install\fR [\-\-binstubs[=DIRECTORY]] [\-\-clean] [\-\-deployment] [\-\-frozen] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-local] [\-\-no\-cache] [\-\-no\-prune] [\-\-path PATH] [\-\-quiet] [\-\-redownload] [\-\-retry=NUMBER] [\-\-shebang] [\-\-standalone[=GROUP[ GROUP\.\.\.]]] [\-\-system] [\-\-trust\-policy=POLICY] [\-\-with=GROUP[ GROUP\.\.\.]] [\-\-without=GROUP[ GROUP\.\.\.]]
.
.SH "DESCRIPTION"
Install the gems specified in your Gemfile(5)\. If this is the first time you run bundle install (and a \fBGemfile\.lock\fR does not exist), Bundler will fetch all remote sources, resolve dependencies and install all needed gems\.
.
.P
If a \fBGemfile\.lock\fR does exist, and you have not updated your Gemfile(5), Bundler will fetch all remote sources, but use the dependencies specified in the \fBGemfile\.lock\fR instead of resolving dependencies\.
.
.P
If a \fBGemfile\.lock\fR does exist, and you have updated your Gemfile(5), Bundler will use the dependencies in the \fBGemfile\.lock\fR for all gems that you did not update, but will re\-resolve the dependencies of gems that you did update\. You can find more information about this update process below under \fICONSERVATIVE UPDATING\fR\.
.
.SH "OPTIONS"
The \fB\-\-clean\fR, \fB\-\-deployment\fR, \fB\-\-frozen\fR, \fB\-\-no\-prune\fR, \fB\-\-path\fR, \fB\-\-shebang\fR, \fB\-\-system\fR, \fB\-\-without\fR and \fB\-\-with\fR options are deprecated because they only make sense if they are applied to every subsequent \fBbundle install\fR run automatically and that requires \fBbundler\fR to silently remember them\. Since \fBbundler\fR will no longer remember CLI flags in future versions, \fBbundle config\fR (see bundle\-config(1)) should be used to apply them permanently\.
.
.TP
\fB\-\-binstubs[=<directory>]\fR
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it in \fBbin/\fR\. This lets you link the binstub inside of an application to the exact gem version the application needs\.
.
.IP
Creates a directory (defaults to \fB~/bin\fR) and places any executables from the gem there\. These executables run in Bundler\'s context\. If used, you might add this directory to your environment\'s \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
.
.TP
\fB\-\-clean\fR
On finishing the installation Bundler is going to remove any gems not present in the current Gemfile(5)\. Don\'t worry, gems currently in use will not be removed\.
.
.IP
This option is deprecated in favor of the \fBclean\fR setting\.
.
.TP
\fB\-\-deployment\fR
In \fIdeployment mode\fR, Bundler will \'roll\-out\' the bundle for production or CI use\. Please check carefully if you want to have this option enabled in your development environment\.
.
.IP
This option is deprecated in favor of the \fBdeployment\fR setting\.
.
.TP
\fB\-\-redownload\fR
Force download every gem, even if the required versions are already available locally\.
.
.TP
\fB\-\-frozen\fR
Do not allow the Gemfile\.lock to be updated after this install\. Exits non\-zero if there are going to be changes to the Gemfile\.lock\.
.
.IP
This option is deprecated in favor of the \fBfrozen\fR setting\.
.
.TP
\fB\-\-full\-index\fR
Bundler will not call Rubygems\' API endpoint (default) but download and cache a (currently big) index file of all gems\. Performance can be improved for large bundles that seldom change by enabling this option\.
.
.TP
\fB\-\-gemfile=<gemfile>\fR
The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project\'s root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.
.
.TP
\fB\-\-jobs=[<number>]\fR, \fB\-j[<number>]\fR
The maximum number of parallel download and install jobs\. The default is \fB1\fR\.
.
.TP
\fB\-\-local\fR
Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if an appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
.
.TP
\fB\-\-no\-cache\fR
Do not update the cache in \fBvendor/cache\fR with the newly bundled gems\. This does not remove any gems in the cache but keeps the newly bundled gems from being cached during the install\.
.
.TP
\fB\-\-no\-prune\fR
Don\'t remove stale gems from the cache when the installation finishes\.
.
.IP
This option is deprecated in favor of the \fBno_prune\fR setting\.
.
.TP
\fB\-\-path=<path>\fR
The location to install the specified gems to\. This defaults to Rubygems\' setting\. Bundler shares this location with Rubygems, \fBgem install \.\.\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \.\.\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
.
.IP
This option is deprecated in favor of the \fBpath\fR setting\.
.
.TP
\fB\-\-quiet\fR
Do not print progress information to the standard output\. Instead, Bundler will exit using a status code (\fB$?\fR)\.
.
.TP
\fB\-\-retry=[<number>]\fR
Retry failed network or git requests for \fInumber\fR times\.
.
.TP
\fB\-\-shebang=<ruby\-executable>\fR
Uses the specified ruby executable (usually \fBruby\fR) to execute the scripts created with \fB\-\-binstubs\fR\. In addition, if you use \fB\-\-binstubs\fR together with \fB\-\-shebang jruby\fR these executables will be changed to execute \fBjruby\fR instead\.
.
.IP
This option is deprecated in favor of the \fBshebang\fR setting\.
.
.TP
\fB\-\-standalone[=<list>]\fR
Makes a bundle that can work without depending on Rubygems or Bundler at runtime\. A space separated list of groups to install has to be specified\. Bundler creates a directory named \fBbundle\fR and installs the bundle there\. It also generates a \fBbundle/bundler/setup\.rb\fR file to replace Bundler\'s own setup in the manner required\. Using this option implicitly sets \fBpath\fR, which is a [remembered option][REMEMBERED OPTIONS]\.
.
.TP
\fB\-\-system\fR
Installs the gems specified in the bundle to the system\'s Rubygems location\. This overrides any previous configuration of \fB\-\-path\fR\.
.
.IP
This option is deprecated in favor of the \fBsystem\fR setting\.
.
.TP
\fB\-\-trust\-policy=[<policy>]\fR
Apply the Rubygems security policy \fIpolicy\fR, where policy is one of \fBHighSecurity\fR, \fBMediumSecurity\fR, \fBLowSecurity\fR, \fBAlmostNoSecurity\fR, or \fBNoSecurity\fR\. For more details, please see the Rubygems signing documentation linked below in \fISEE ALSO\fR\.
.
.TP
\fB\-\-with=<list>\fR
A space\-separated list of groups referencing gems to install\. If an optional group is given it is installed\. If a group is given that is in the remembered list of groups given to \-\-without, it is removed from that list\.
.
.IP
This option is deprecated in favor of the \fBwith\fR setting\.
.
.TP
\fB\-\-without=<list>\fR
A space\-separated list of groups referencing gems to skip during installation\. If a group is given that is in the remembered list of groups given to \-\-with, it is removed from that list\.
.
.IP
This option is deprecated in favor of the \fBwithout\fR setting\.
.
.SH "DEPLOYMENT MODE"
Bundler\'s defaults are optimized for development\. To switch to defaults optimized for deployment and for CI, use the \fB\-\-deployment\fR flag\. Do not activate deployment mode on development machines, as it will cause an error when the Gemfile(5) is modified\.
.
.IP "1." 4
A \fBGemfile\.lock\fR is required\.
.
.IP
To ensure that the same versions of the gems you developed with and tested with are also used in deployments, a \fBGemfile\.lock\fR is required\.
.
.IP
This is mainly to ensure that you remember to check your \fBGemfile\.lock\fR into version control\.
.
.IP "2." 4
The \fBGemfile\.lock\fR must be up to date
.
.IP
In development, you can modify your Gemfile(5) and re\-run \fBbundle install\fR to \fIconservatively update\fR your \fBGemfile\.lock\fR snapshot\.
.
.IP
In deployment, your \fBGemfile\.lock\fR should be up\-to\-date with changes made in your Gemfile(5)\.
.
.IP "3." 4
Gems are installed to \fBvendor/bundle\fR not your default system location
.
.IP
In development, it\'s convenient to share the gems used in your application with other applications and other scripts that run on the system\.
.
.IP
In deployment, isolation is a more important default\. In addition, the user deploying the application may not have permission to install gems to the system, or the web server may not have permission to read them\.
.
.IP
As a result, \fBbundle install \-\-deployment\fR installs gems to the \fBvendor/bundle\fR directory in the application\. This may be overridden using the \fB\-\-path\fR option\.
.
.IP "" 0
.
.SH "SUDO USAGE"
By default, Bundler installs gems to the same location as \fBgem install\fR\.
.
.P
In some cases, that location may not be writable by your Unix user\. In that case, Bundler will stage everything in a temporary directory, then ask you for your \fBsudo\fR password in order to copy the gems into their system location\.
.
.P
From your perspective, this is identical to installing the gems directly into the system\.
.
.P
You should never use \fBsudo bundle install\fR\. This is because several other steps in \fBbundle install\fR must be performed as the current user:
.
.IP "\(bu" 4
Updating your \fBGemfile\.lock\fR
.
.IP "\(bu" 4
Updating your \fBvendor/cache\fR, if necessary
.
.IP "\(bu" 4
Checking out private git repositories using your user\'s SSH keys
.
.IP "" 0
.
.P
Of these three, the first two could theoretically be performed by \fBchown\fRing the resulting files to \fB$SUDO_USER\fR\. The third, however, can only be performed by invoking the \fBgit\fR command as the current user\. Therefore, git gems are downloaded and installed into \fB~/\.bundle\fR rather than $GEM_HOME or $BUNDLE_PATH\.
.
.P
As a result, you should run \fBbundle install\fR as the current user, and Bundler will ask for your password if it is needed to put the gems into their final location\.
.
.SH "INSTALLING GROUPS"
By default, \fBbundle install\fR will install all gems in all groups in your Gemfile(5), except those declared for a different platform\.
.
.P
However, you can explicitly tell Bundler to skip installing certain groups with the \fB\-\-without\fR option\. This option takes a space\-separated list of groups\.
.
.P
While the \fB\-\-without\fR option will skip \fIinstalling\fR the gems in the specified groups, it will still \fIdownload\fR those gems and use them to resolve the dependencies of every gem in your Gemfile(5)\.
.
.P
This is so that installing a different set of groups on another machine (such as a production server) will not change the gems and versions that you have already developed and tested against\.
.
.P
\fBBundler offers a rock\-solid guarantee that the third\-party code you are running in development and testing is also the third\-party code you are running in production\. You can choose to exclude some of that code in different environments, but you will never be caught flat\-footed by different versions of third\-party code being used in different environments\.\fR
.
.P
For a simple illustration, consider the following Gemfile(5):
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'sinatra\'

group :production do
  gem \'rack\-perftools\-profiler\'
end
.
.fi
.
.IP "" 0
.
.P
In this case, \fBsinatra\fR depends on any version of Rack (\fB>= 1\.0\fR), while \fBrack\-perftools\-profiler\fR depends on 1\.x (\fB~> 1\.0\fR)\.
.
.P
When you run \fBbundle install \-\-without production\fR in development, we look at the dependencies of \fBrack\-perftools\-profiler\fR as well\. That way, you do not spend all your time developing against Rack 2\.0, using new APIs unavailable in Rack 1\.x, only to have Bundler switch to Rack 1\.2 when the \fBproduction\fR group \fIis\fR used\.
.
.P
This should not cause any problems in practice, because we do not attempt to \fBinstall\fR the gems in the excluded groups, and only evaluate as part of the dependency resolution process\.
.
.P
This also means that you cannot include different versions of the same gem in different groups, because doing so would result in different sets of dependencies used in development and production\. Because of the vagaries of the dependency resolution process, this usually affects more than the gems you list in your Gemfile(5), and can (surprisingly) radically change the gems you are using\.
.
.SH "THE GEMFILE\.LOCK"
When you run \fBbundle install\fR, Bundler will persist the full names and versions of all gems that you used (including dependencies of the gems specified in the Gemfile(5)) into a file called \fBGemfile\.lock\fR\.
.
.P
Bundler uses this file in all subsequent calls to \fBbundle install\fR, which guarantees that you always use the same exact code, even as your application moves across machines\.
.
.P
Because of the way dependency resolution works, even a seemingly small change (for instance, an update to a point\-release of a dependency of a gem in your Gemfile(5)) can result in radically different gems being needed to satisfy all dependencies\.
.
.P
As a result, you \fBSHOULD\fR check your \fBGemfile\.lock\fR into version control, in both applications and gems\. If you do not, every machine that checks out your repository (including your production server) will resolve all dependencies again, which will result in different versions of third\-party code being used if \fBany\fR of the gems in the Gemfile(5) or any of their dependencies have been updated\.
.
.P
When Bundler first shipped, the \fBGemfile\.lock\fR was included in the \fB\.gitignore\fR file included with generated gems\. Over time, however, it became clear that this practice forces the pain of broken dependencies onto new contributors, while leaving existing contributors potentially unaware of the problem\. Since \fBbundle install\fR is usually the first step towards a contribution, the pain of broken dependencies would discourage new contributors from contributing\. As a result, we have revised our guidance for gem authors to now recommend checking in the lock for gems\.
.
.SH "CONSERVATIVE UPDATING"
When you make a change to the Gemfile(5) and then run \fBbundle install\fR, Bundler will update only the gems that you modified\.
.
.P
In other words, if a gem that you \fBdid not modify\fR worked before you called \fBbundle install\fR, it will continue to use the exact same versions of all dependencies as it used before the update\.
.
.P
Let\'s take a look at an example\. Here\'s your original Gemfile(5):
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'actionpack\', \'2\.3\.8\'
gem \'activemerchant\'
.
.fi
.
.IP "" 0
.
.P
In this case, both \fBactionpack\fR and \fBactivemerchant\fR depend on \fBactivesupport\fR\. The \fBactionpack\fR gem depends on \fBactivesupport 2\.3\.8\fR and \fBrack ~> 1\.1\.0\fR, while the \fBactivemerchant\fR gem depends on \fBactivesupport >= 2\.3\.2\fR, \fBbraintree >= 2\.0\.0\fR, and \fBbuilder >= 2\.0\.0\fR\.
.
.P
When the dependencies are first resolved, Bundler will select \fBactivesupport 2\.3\.8\fR, which satisfies the requirements of both gems in your Gemfile(5)\.
.
.P
Next, you modify your Gemfile(5) to:
.
.IP "" 4
.
.nf

source \'https://rubygems\.org\'

gem \'actionpack\', \'3\.0\.0\.rc\'
gem \'activemerchant\'
.
.fi
.
.IP "" 0
.
.P
The \fBactionpack 3\.0\.0\.rc\fR gem has a number of new dependencies, and updates the \fBactivesupport\fR dependency to \fB= 3\.0\.0\.rc\fR and the \fBrack\fR dependency to \fB~> 1\.2\.1\fR\.
.
.P
When you run \fBbundle install\fR, Bundler notices that you changed the \fBactionpack\fR gem, but not the \fBactivemerchant\fR gem\. It evaluates the gems currently being used to satisfy its requirements:
.
.TP
\fBactivesupport 2\.3\.8\fR
also used to satisfy a dependency in \fBactivemerchant\fR, which is not being updated
.
.TP
\fBrack ~> 1\.1\.0\fR
not currently being used to satisfy another dependency
.
.P
Because you did not explicitly ask to update \fBactivemerchant\fR, you would not expect it to suddenly stop working after updating \fBactionpack\fR\. However, satisfying the new \fBactivesupport 3\.0\.0\.rc\fR dependency of actionpack requires updating one of its dependencies\.
.
.P
Even though \fBactivemerchant\fR declares a very loose dependency that theoretically matches \fBactivesupport 3\.0\.0\.rc\fR, Bundler treats gems in your Gemfile(5) that have not changed as an atomic unit together with their dependencies\. In this case, the \fBactivemerchant\fR dependency is treated as \fBactivemerchant 1\.7\.1 + activesupport 2\.3\.8\fR, so \fBbundle install\fR will report that it cannot update \fBactionpack\fR\.
.
.P
To explicitly update \fBactionpack\fR, including its dependencies which other gems in the Gemfile(5) still depend on, run \fBbundle update actionpack\fR (see \fBbundle update(1)\fR)\.
.
.P
\fBSummary\fR: In general, after making a change to the Gemfile(5) , you should first try to run \fBbundle install\fR, which will guarantee that no other gem in the Gemfile(5) is impacted by the change\. If that does not work, run bundle update(1) \fIbundle\-update\.1\.html\fR\.
.
.SH "SEE ALSO"
.
.IP "\(bu" 4
Gem install docs \fIhttp://guides\.rubygems\.org/rubygems\-basics/#installing\-gems\fR
.
.IP "\(bu" 4
Rubygems signing docs \fIhttp://guides\.rubygems\.org/security/\fR
.
.IP "" 0

PK<H[�Q�d�U�U8share/gems/gems/bundler-2.2.24/lib/bundler/man/gemfile.5nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GEMFILE" "5" "June 2021" "" ""
.
.SH "NAME"
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
.
.SH "SYNOPSIS"
A \fBGemfile\fR describes the gem dependencies required to execute associated Ruby code\.
.
.P
Place the \fBGemfile\fR in the root of the directory containing the associated code\. For instance, in a Rails application, place the \fBGemfile\fR in the same directory as the \fBRakefile\fR\.
.
.SH "SYNTAX"
A \fBGemfile\fR is evaluated as Ruby code, in a context which makes available a number of methods used to describe the gem requirements\.
.
.SH "GLOBAL SOURCES"
At the top of the \fBGemfile\fR, add a line for the \fBRubygems\fR source that contains the gems listed in the \fBGemfile\fR\.
.
.IP "" 4
.
.nf

source "https://rubygems\.org"
.
.fi
.
.IP "" 0
.
.P
It is possible, but not recommended as of Bundler 1\.7, to add multiple global \fBsource\fR lines\. Each of these \fBsource\fRs \fBMUST\fR be a valid Rubygems repository\.
.
.P
Sources are checked for gems following the heuristics described in \fISOURCE PRIORITY\fR\. If a gem is found in more than one global source, Bundler will print a warning after installing the gem indicating which source was used, and listing the other sources where the gem is available\. A specific source can be selected for gems that need to use a non\-standard repository, suppressing this warning, by using the \fI\fB:source\fR option\fR or a \fI\fBsource\fR block\fR\.
.
.SS "CREDENTIALS"
Some gem sources require a username and password\. Use bundle config(1) \fIbundle\-config\.1\.html\fR to set the username and password for any of the sources that need it\. The command must be run once on each computer that will install the Gemfile, but this keeps the credentials from being stored in plain text in version control\.
.
.IP "" 4
.
.nf

bundle config gems\.example\.com user:password
.
.fi
.
.IP "" 0
.
.P
For some sources, like a company Gemfury account, it may be easier to include the credentials in the Gemfile as part of the source URL\.
.
.IP "" 4
.
.nf

source "https://user:password@gems\.example\.com"
.
.fi
.
.IP "" 0
.
.P
Credentials in the source URL will take precedence over credentials set using \fBconfig\fR\.
.
.SH "RUBY"
If your application requires a specific Ruby version or engine, specify your requirements using the \fBruby\fR method, with the following arguments\. All parameters are \fBOPTIONAL\fR unless otherwise specified\.
.
.SS "VERSION (required)"
The version of Ruby that your application requires\. If your application requires an alternate Ruby engine, such as JRuby, Rubinius or TruffleRuby, this should be the Ruby version that the engine is compatible with\.
.
.IP "" 4
.
.nf

ruby "1\.9\.3"
.
.fi
.
.IP "" 0
.
.SS "ENGINE"
Each application \fImay\fR specify a Ruby engine\. If an engine is specified, an engine version \fImust\fR also be specified\.
.
.P
What exactly is an Engine? \- A Ruby engine is an implementation of the Ruby language\.
.
.IP "\(bu" 4
For background: the reference or original implementation of the Ruby programming language is called Matz\'s Ruby Interpreter \fIhttps://en\.wikipedia\.org/wiki/Ruby_MRI\fR, or MRI for short\. This is named after Ruby creator Yukihiro Matsumoto, also known as Matz\. MRI is also known as CRuby, because it is written in C\. MRI is the most widely used Ruby engine\.
.
.IP "\(bu" 4
Other implementations \fIhttps://www\.ruby\-lang\.org/en/about/\fR of Ruby exist\. Some of the more well\-known implementations include Rubinius \fIhttps://rubinius\.com/\fR, and JRuby \fIhttp://jruby\.org/\fR\. Rubinius is an alternative implementation of Ruby written in Ruby\. JRuby is an implementation of Ruby on the JVM, short for Java Virtual Machine\.
.
.IP "" 0
.
.SS "ENGINE VERSION"
Each application \fImay\fR specify a Ruby engine version\. If an engine version is specified, an engine \fImust\fR also be specified\. If the engine is "ruby" the engine version specified \fImust\fR match the Ruby version\.
.
.IP "" 4
.
.nf

ruby "1\.8\.7", :engine => "jruby", :engine_version => "1\.6\.7"
.
.fi
.
.IP "" 0
.
.SS "PATCHLEVEL"
Each application \fImay\fR specify a Ruby patchlevel\.
.
.IP "" 4
.
.nf

ruby "2\.0\.0", :patchlevel => "247"
.
.fi
.
.IP "" 0
.
.SH "GEMS"
Specify gem requirements using the \fBgem\fR method, with the following arguments\. All parameters are \fBOPTIONAL\fR unless otherwise specified\.
.
.SS "NAME (required)"
For each gem requirement, list a single \fIgem\fR line\.
.
.IP "" 4
.
.nf

gem "nokogiri"
.
.fi
.
.IP "" 0
.
.SS "VERSION"
Each \fIgem\fR \fBMAY\fR have one or more version specifiers\.
.
.IP "" 4
.
.nf

gem "nokogiri", ">= 1\.4\.2"
gem "RedCloth", ">= 4\.1\.0", "< 4\.2\.0"
.
.fi
.
.IP "" 0
.
.SS "REQUIRE AS"
Each \fIgem\fR \fBMAY\fR specify files that should be used when autorequiring via \fBBundler\.require\fR\. You may pass an array with multiple files or \fBtrue\fR if the file you want \fBrequired\fR has the same name as \fIgem\fR or \fBfalse\fR to prevent any file from being autorequired\.
.
.IP "" 4
.
.nf

gem "redis", :require => ["redis/connection/hiredis", "redis"]
gem "webmock", :require => false
gem "byebug", :require => true
.
.fi
.
.IP "" 0
.
.P
The argument defaults to the name of the gem\. For example, these are identical:
.
.IP "" 4
.
.nf

gem "nokogiri"
gem "nokogiri", :require => "nokogiri"
gem "nokogiri", :require => true
.
.fi
.
.IP "" 0
.
.SS "GROUPS"
Each \fIgem\fR \fBMAY\fR specify membership in one or more groups\. Any \fIgem\fR that does not specify membership in any group is placed in the \fBdefault\fR group\.
.
.IP "" 4
.
.nf

gem "rspec", :group => :test
gem "wirble", :groups => [:development, :test]
.
.fi
.
.IP "" 0
.
.P
The Bundler runtime allows its two main methods, \fBBundler\.setup\fR and \fBBundler\.require\fR, to limit their impact to particular groups\.
.
.IP "" 4
.
.nf

# setup adds gems to Ruby\'s load path
Bundler\.setup                    # defaults to all groups
require "bundler/setup"          # same as Bundler\.setup
Bundler\.setup(:default)          # only set up the _default_ group
Bundler\.setup(:test)             # only set up the _test_ group (but `not` _default_)
Bundler\.setup(:default, :test)   # set up the _default_ and _test_ groups, but no others

# require requires all of the gems in the specified groups
Bundler\.require                  # defaults to the _default_ group
Bundler\.require(:default)        # identical
Bundler\.require(:default, :test) # requires the _default_ and _test_ groups
Bundler\.require(:test)           # requires the _test_ group
.
.fi
.
.IP "" 0
.
.P
The Bundler CLI allows you to specify a list of groups whose gems \fBbundle install\fR should not install with the \fBwithout\fR configuration\.
.
.P
To specify multiple groups to ignore, specify a list of groups separated by spaces\.
.
.IP "" 4
.
.nf

bundle config set \-\-local without test
bundle config set \-\-local without development test
.
.fi
.
.IP "" 0
.
.P
Also, calling \fBBundler\.setup\fR with no parameters, or calling \fBrequire "bundler/setup"\fR will setup all groups except for the ones you excluded via \fB\-\-without\fR (since they are not available)\.
.
.P
Note that on \fBbundle install\fR, bundler downloads and evaluates all gems, in order to create a single canonical list of all of the required gems and their dependencies\. This means that you cannot list different versions of the same gems in different groups\. For more details, see Understanding Bundler \fIhttps://bundler\.io/rationale\.html\fR\.
.
.SS "PLATFORMS"
If a gem should only be used in a particular platform or set of platforms, you can specify them\. Platforms are essentially identical to groups, except that you do not need to use the \fB\-\-without\fR install\-time flag to exclude groups of gems for other platforms\.
.
.P
There are a number of \fBGemfile\fR platforms:
.
.TP
\fBruby\fR
C Ruby (MRI), Rubinius or TruffleRuby, but \fBNOT\fR Windows
.
.TP
\fBmri\fR
Same as \fIruby\fR, but only C Ruby (MRI)
.
.TP
\fBmingw\fR
Windows 32 bit \'mingw32\' platform (aka RubyInstaller)
.
.TP
\fBx64_mingw\fR
Windows 64 bit \'mingw32\' platform (aka RubyInstaller x64)
.
.TP
\fBrbx\fR
Rubinius
.
.TP
\fBjruby\fR
JRuby
.
.TP
\fBtruffleruby\fR
TruffleRuby
.
.TP
\fBmswin\fR
Windows
.
.P
You can restrict further by platform and version for all platforms \fIexcept\fR for \fBrbx\fR, \fBjruby\fR, \fBtruffleruby\fR and \fBmswin\fR\.
.
.P
To specify a version in addition to a platform, append the version number without the delimiter to the platform\. For example, to specify that a gem should only be used on platforms with Ruby 2\.3, use:
.
.IP "" 4
.
.nf

ruby_23
.
.fi
.
.IP "" 0
.
.P
The full list of platforms and supported versions includes:
.
.TP
\fBruby\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBmri\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBmingw\fR
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.TP
\fBx64_mingw\fR
2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
.
.P
As with groups, you can specify one or more platforms:
.
.IP "" 4
.
.nf

gem "weakling",   :platforms => :jruby
gem "ruby\-debug", :platforms => :mri_18
gem "nokogiri",   :platforms => [:mri_18, :jruby]
.
.fi
.
.IP "" 0
.
.P
All operations involving groups (\fBbundle install\fR \fIbundle\-install\.1\.html\fR, \fBBundler\.setup\fR, \fBBundler\.require\fR) behave exactly the same as if any groups not matching the current platform were explicitly excluded\.
.
.SS "SOURCE"
You can select an alternate Rubygems repository for a gem using the \':source\' option\.
.
.IP "" 4
.
.nf

gem "some_internal_gem", :source => "https://gems\.example\.com"
.
.fi
.
.IP "" 0
.
.P
This forces the gem to be loaded from this source and ignores any global sources declared at the top level of the file\. If the gem does not exist in this source, it will not be installed\.
.
.P
Bundler will search for child dependencies of this gem by first looking in the source selected for the parent, but if they are not found there, it will fall back on global sources using the ordering described in \fISOURCE PRIORITY\fR\.
.
.P
Selecting a specific source repository this way also suppresses the ambiguous gem warning described above in \fIGLOBAL SOURCES (#source)\fR\.
.
.P
Using the \fB:source\fR option for an individual gem will also make that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when adding gems with explicit sources, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources\.
.
.SS "GIT"
If necessary, you can specify that a gem is located at a particular git repository using the \fB:git\fR parameter\. The repository can be accessed via several protocols:
.
.TP
\fBHTTP(S)\fR
gem "rails", :git => "https://github\.com/rails/rails\.git"
.
.TP
\fBSSH\fR
gem "rails", :git => "git@github\.com:rails/rails\.git"
.
.TP
\fBgit\fR
gem "rails", :git => "git://github\.com/rails/rails\.git"
.
.P
If using SSH, the user that you use to run \fBbundle install\fR \fBMUST\fR have the appropriate keys available in their \fB$HOME/\.ssh\fR\.
.
.P
\fBNOTE\fR: \fBhttp://\fR and \fBgit://\fR URLs should be avoided if at all possible\. These protocols are unauthenticated, so a man\-in\-the\-middle attacker can deliver malicious code and compromise your system\. HTTPS and SSH are strongly preferred\.
.
.P
The \fBgroup\fR, \fBplatforms\fR, and \fBrequire\fR options are available and behave exactly the same as they would for a normal gem\.
.
.P
A git repository \fBSHOULD\fR have at least one file, at the root of the directory containing the gem, with the extension \fB\.gemspec\fR\. This file \fBMUST\fR contain a valid gem specification, as expected by the \fBgem build\fR command\.
.
.P
If a git repository does not have a \fB\.gemspec\fR, bundler will attempt to create one, but it will not contain any dependencies, executables, or C extension compilation instructions\. As a result, it may fail to properly integrate into your application\.
.
.P
If a git repository does have a \fB\.gemspec\fR for the gem you attached it to, a version specifier, if provided, means that the git repository is only valid if the \fB\.gemspec\fR specifies a version matching the version specifier\. If not, bundler will print a warning\.
.
.IP "" 4
.
.nf

gem "rails", "2\.3\.8", :git => "https://github\.com/rails/rails\.git"
# bundle install will fail, because the \.gemspec in the rails
# repository\'s master branch specifies version 3\.0\.0
.
.fi
.
.IP "" 0
.
.P
If a git repository does \fBnot\fR have a \fB\.gemspec\fR for the gem you attached it to, a version specifier \fBMUST\fR be provided\. Bundler will use this version in the simple \fB\.gemspec\fR it creates\.
.
.P
Git repositories support a number of additional options\.
.
.TP
\fBbranch\fR, \fBtag\fR, and \fBref\fR
You \fBMUST\fR only specify at most one of these options\. The default is \fB:branch => "master"\fR\. For example:
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :branch => "5\-0\-stable"
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :tag => "v5\.0\.0"
.
.IP
gem "rails", :git => "https://github\.com/rails/rails\.git", :ref => "4aded"
.
.TP
\fBsubmodules\fR
For reference, a git submodule \fIhttps://git\-scm\.com/book/en/v2/Git\-Tools\-Submodules\fR lets you have another git repository within a subfolder of your repository\. Specify \fB:submodules => true\fR to cause bundler to expand any submodules included in the git repository
.
.P
If a git repository contains multiple \fB\.gemspecs\fR, each \fB\.gemspec\fR represents a gem located at the same place in the file system as the \fB\.gemspec\fR\.
.
.IP "" 4
.
.nf

|~rails                   [git root]
| |\-rails\.gemspec         [rails gem located here]
|~actionpack
| |\-actionpack\.gemspec    [actionpack gem located here]
|~activesupport
| |\-activesupport\.gemspec [activesupport gem located here]
|\.\.\.
.
.fi
.
.IP "" 0
.
.P
To install a gem located in a git repository, bundler changes to the directory containing the gemspec, runs \fBgem build name\.gemspec\fR and then installs the resulting gem\. The \fBgem build\fR command, which comes standard with Rubygems, evaluates the \fB\.gemspec\fR in the context of the directory in which it is located\.
.
.SS "GIT SOURCE"
A custom git source can be defined via the \fBgit_source\fR method\. Provide the source\'s name as an argument, and a block which receives a single argument and interpolates it into a string to return the full repo address:
.
.IP "" 4
.
.nf

git_source(:stash){ |repo_name| "https://stash\.corp\.acme\.pl/#{repo_name}\.git" }
gem \'rails\', :stash => \'forks/rails\'
.
.fi
.
.IP "" 0
.
.P
In addition, if you wish to choose a specific branch:
.
.IP "" 4
.
.nf

gem "rails", :stash => "forks/rails", :branch => "branch_name"
.
.fi
.
.IP "" 0
.
.SS "GITHUB"
\fBNOTE\fR: This shorthand should be avoided until Bundler 2\.0, since it currently expands to an insecure \fBgit://\fR URL\. This allows a man\-in\-the\-middle attacker to compromise your system\.
.
.P
If the git repository you want to use is hosted on GitHub and is public, you can use the :github shorthand to specify the github username and repository name (without the trailing "\.git"), separated by a slash\. If both the username and repository name are the same, you can omit one\.
.
.IP "" 4
.
.nf

gem "rails", :github => "rails/rails"
gem "rails", :github => "rails"
.
.fi
.
.IP "" 0
.
.P
Are both equivalent to
.
.IP "" 4
.
.nf

gem "rails", :git => "git://github\.com/rails/rails\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBgithub\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "GIST"
If the git repository you want to use is hosted as a Github Gist and is public, you can use the :gist shorthand to specify the gist identifier (without the trailing "\.git")\.
.
.IP "" 4
.
.nf

gem "the_hatch", :gist => "4815162342"
.
.fi
.
.IP "" 0
.
.P
Is equivalent to:
.
.IP "" 4
.
.nf

gem "the_hatch", :git => "https://gist\.github\.com/4815162342\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBgist\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "BITBUCKET"
If the git repository you want to use is hosted on Bitbucket and is public, you can use the :bitbucket shorthand to specify the bitbucket username and repository name (without the trailing "\.git"), separated by a slash\. If both the username and repository name are the same, you can omit one\.
.
.IP "" 4
.
.nf

gem "rails", :bitbucket => "rails/rails"
gem "rails", :bitbucket => "rails"
.
.fi
.
.IP "" 0
.
.P
Are both equivalent to
.
.IP "" 4
.
.nf

gem "rails", :git => "https://rails@bitbucket\.org/rails/rails\.git"
.
.fi
.
.IP "" 0
.
.P
Since the \fBbitbucket\fR method is a specialization of \fBgit_source\fR, it accepts a \fB:branch\fR named argument\.
.
.SS "PATH"
You can specify that a gem is located in a particular location on the file system\. Relative paths are resolved relative to the directory containing the \fBGemfile\fR\.
.
.P
Similar to the semantics of the \fB:git\fR option, the \fB:path\fR option requires that the directory in question either contains a \fB\.gemspec\fR for the gem, or that you specify an explicit version that bundler should use\.
.
.P
Unlike \fB:git\fR, bundler does not compile C extensions for gems specified as paths\.
.
.IP "" 4
.
.nf

gem "rails", :path => "vendor/rails"
.
.fi
.
.IP "" 0
.
.P
If you would like to use multiple local gems directly from the filesystem, you can set a global \fBpath\fR option to the path containing the gem\'s files\. This will automatically load gemspec files from subdirectories\.
.
.IP "" 4
.
.nf

path \'components\' do
  gem \'admin_ui\'
  gem \'public_ui\'
end
.
.fi
.
.IP "" 0
.
.SH "BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS"
The \fB:source\fR, \fB:git\fR, \fB:path\fR, \fB:group\fR, and \fB:platforms\fR options may be applied to a group of gems by using block form\.
.
.IP "" 4
.
.nf

source "https://gems\.example\.com" do
  gem "some_internal_gem"
  gem "another_internal_gem"
end

git "https://github\.com/rails/rails\.git" do
  gem "activesupport"
  gem "actionpack"
end

platforms :ruby do
  gem "ruby\-debug"
  gem "sqlite3"
end

group :development, :optional => true do
  gem "wirble"
  gem "faker"
end
.
.fi
.
.IP "" 0
.
.P
In the case of the group block form the :optional option can be given to prevent a group from being installed unless listed in the \fB\-\-with\fR option given to the \fBbundle install\fR command\.
.
.P
In the case of the \fBgit\fR block form, the \fB:ref\fR, \fB:branch\fR, \fB:tag\fR, and \fB:submodules\fR options may be passed to the \fBgit\fR method, and all gems in the block will inherit those options\.
.
.P
The presence of a \fBsource\fR block in a Gemfile also makes that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when defining source blocks, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources, either via source blocks or \fB:source\fR directives on individual gems\.
.
.SH "INSTALL_IF"
The \fBinstall_if\fR method allows gems to be installed based on a proc or lambda\. This is especially useful for optional gems that can only be used if certain software is installed or some other conditions are met\.
.
.IP "" 4
.
.nf

install_if \-> { RUBY_PLATFORM =~ /darwin/ } do
  gem "pasteboard"
end
.
.fi
.
.IP "" 0
.
.SH "GEMSPEC"
The \fB\.gemspec\fR \fIhttp://guides\.rubygems\.org/specification\-reference/\fR file is where you provide metadata about your gem to Rubygems\. Some required Gemspec attributes include the name, description, and homepage of your gem\. This is also where you specify the dependencies your gem needs to run\.
.
.P
If you wish to use Bundler to help install dependencies for a gem while it is being developed, use the \fBgemspec\fR method to pull in the dependencies listed in the \fB\.gemspec\fR file\.
.
.P
The \fBgemspec\fR method adds any runtime dependencies as gem requirements in the default group\. It also adds development dependencies as gem requirements in the \fBdevelopment\fR group\. Finally, it adds a gem requirement on your project (\fB:path => \'\.\'\fR)\. In conjunction with \fBBundler\.setup\fR, this allows you to require project files in your test code as you would if the project were installed as a gem; you need not manipulate the load path manually or require project files via relative paths\.
.
.P
The \fBgemspec\fR method supports optional \fB:path\fR, \fB:glob\fR, \fB:name\fR, and \fB:development_group\fR options, which control where bundler looks for the \fB\.gemspec\fR, the glob it uses to look for the gemspec (defaults to: "{,\fI,\fR/*}\.gemspec"), what named \fB\.gemspec\fR it uses (if more than one is present), and which group development dependencies are included in\.
.
.P
When a \fBgemspec\fR dependency encounters version conflicts during resolution, the local version under development will always be selected \-\- even if there are remote versions that better match other requirements for the \fBgemspec\fR gem\.
.
.SH "SOURCE PRIORITY"
When attempting to locate a gem to satisfy a gem requirement, bundler uses the following priority order:
.
.IP "1." 4
The source explicitly attached to the gem (using \fB:source\fR, \fB:path\fR, or \fB:git\fR)
.
.IP "2." 4
For implicit gems (dependencies of explicit gems), any source, git, or path repository declared on the parent\. This results in bundler prioritizing the ActiveSupport gem from the Rails git repository over ones from \fBrubygems\.org\fR
.
.IP "3." 4
The sources specified via global \fBsource\fR lines, searching each source in your \fBGemfile\fR from last added to first added\.
.
.IP "" 0

PK<H[�|)$J$JCshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-config.1.ronnnu�[���bundle-config(1) -- Set bundler configuration options
=====================================================

## SYNOPSIS

`bundle config` [list|get|set|unset] [<name> [<value>]]

## DESCRIPTION

This command allows you to interact with Bundler's configuration system.

Bundler loads configuration settings in this order:

1. Local config (`<project_root>/.bundle/config` or `$BUNDLE_APP_CONFIG/config`)
2. Environmental variables (`ENV`)
3. Global config (`~/.bundle/config`)
4. Bundler default config

Executing `bundle config list` with will print a list of all bundler
configuration for the current bundle, and where that configuration
was set.

Executing `bundle config get <name>` will print the value of that configuration
setting, and where it was set.

Executing `bundle config set <name> <value>` will set that configuration to the
value specified for all bundles executed as the current user. The configuration
will be stored in `~/.bundle/config`. If <name> already is set, <name> will be
overridden and user will be warned.

Executing `bundle config set --global <name> <value>` works the same as above.

Executing `bundle config set --local <name> <value>` will set that configuration
in the directory for the local application. The configuration will be stored in
`<project_root>/.bundle/config`. If `BUNDLE_APP_CONFIG` is set, the configuration
will be stored in `$BUNDLE_APP_CONFIG/config`.

Executing `bundle config unset <name>` will delete the configuration in both
local and global sources.

Executing `bundle config unset --global <name>` will delete the configuration
only from the user configuration.

Executing `bundle config unset --local <name> <value>` will delete the
configuration only from the local application.

Executing bundle with the `BUNDLE_IGNORE_CONFIG` environment variable set will
cause it to ignore all configuration.

## REMEMBERING OPTIONS

Flags passed to `bundle install` or the Bundler runtime, such as `--path foo` or
`--without production`, are remembered between commands and saved to your local
application's configuration (normally, `./.bundle/config`).

However, this will be changed in bundler 3, so it's better not to rely on this
behavior. If these options must be remembered, it's better to set them using
`bundle config` (e.g., `bundle config set --local path foo`).

The options that can be configured are:

* `bin`:
   Creates a directory (defaults to `~/bin`) and place any executables from the
   gem there. These executables run in Bundler's context. If used, you might add
   this directory to your environment's `PATH` variable. For instance, if the
   `rails` gem comes with a `rails` executable, this flag will create a
   `bin/rails` executable that ensures that all referred dependencies will be
   resolved using the bundled gems.

* `deployment`:
   In deployment mode, Bundler will 'roll-out' the bundle for
   `production` use. Please check carefully if you want to have this option
   enabled in `development` or `test` environments.

* `path`:
   The location to install the specified gems to. This defaults to Rubygems'
   setting. Bundler shares this location with Rubygems, `gem install ...` will
   have gem installed there, too. Therefore, gems installed without a
   `--path ...` setting will show up by calling `gem list`. Accordingly, gems
   installed to other locations will not get listed.

* `without`:
   A space-separated list of groups referencing gems to skip during installation.

* `with`:
  A space-separated list of groups referencing gems to include during installation.

## BUILD OPTIONS

You can use `bundle config` to give Bundler the flags to pass to the gem
installer every time bundler tries to install a particular gem.

A very common example, the `mysql` gem, requires Snow Leopard users to
pass configuration flags to `gem install` to specify where to find the
`mysql_config` executable.

    gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config

Since the specific location of that executable can change from machine
to machine, you can specify these flags on a per-machine basis.

    bundle config set --global build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config

After running this command, every time bundler needs to install the
`mysql` gem, it will pass along the flags you specified.

## CONFIGURATION KEYS

Configuration keys in bundler have two forms: the canonical form and the
environment variable form.

For instance, passing the `--without` flag to [bundle install(1)](bundle-install.1.html)
prevents Bundler from installing certain groups specified in the Gemfile(5). Bundler
persists this value in `app/.bundle/config` so that calls to `Bundler.setup`
do not try to find gems from the `Gemfile` that you didn't install. Additionally,
subsequent calls to [bundle install(1)](bundle-install.1.html) remember this setting
and skip those groups.

The canonical form of this configuration is `"without"`. To convert the canonical
form to the environment variable form, capitalize it, and prepend `BUNDLE_`. The
environment variable form of `"without"` is `BUNDLE_WITHOUT`.

Any periods in the configuration keys must be replaced with two underscores when
setting it via environment variables. The configuration key `local.rack` becomes
the environment variable `BUNDLE_LOCAL__RACK`.

## LIST OF AVAILABLE KEYS

The following is a list of all configuration keys and their purpose. You can
learn more about their operation in [bundle install(1)](bundle-install.1.html).

* `allow_deployment_source_credential_changes` (`BUNDLE_ALLOW_DEPLOYMENT_SOURCE_CREDENTIAL_CHANGES`):
   When in deployment mode, allow changing the credentials to a gem's source.
   Ex: `https://some.host.com/gems/path/` -> `https://user_name:password@some.host.com/gems/path`
* `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
   Allow Bundler to use cached data when installing without network access.
* `auto_clean_without_path` (`BUNDLE_AUTO_CLEAN_WITHOUT_PATH`):
   Automatically run `bundle clean` after installing when an explicit `path`
   has not been set and Bundler is not installing into the system gems.
* `auto_install` (`BUNDLE_AUTO_INSTALL`):
   Automatically run `bundle install` when gems are missing.
* `bin` (`BUNDLE_BIN`):
   Install executables from gems in the bundle to the specified directory.
   Defaults to `false`.
* `cache_all` (`BUNDLE_CACHE_ALL`):
   Cache all gems, including path and git gems. This needs to be explicitly
   configured on bundler 1 and bundler 2, but will be the default on bundler 3.
* `cache_all_platforms` (`BUNDLE_CACHE_ALL_PLATFORMS`):
   Cache gems for all platforms.
* `cache_path` (`BUNDLE_CACHE_PATH`):
   The directory that bundler will place cached gems in when running
   <code>bundle package</code>, and that bundler will look in when installing gems.
   Defaults to `vendor/cache`.
* `clean` (`BUNDLE_CLEAN`):
   Whether Bundler should run `bundle clean` automatically after
   `bundle install`.
* `console` (`BUNDLE_CONSOLE`):
   The console that `bundle console` starts. Defaults to `irb`.
* `default_install_uses_path` (`BUNDLE_DEFAULT_INSTALL_USES_PATH`):
   Whether a `bundle install` without an explicit `--path` argument defaults
   to installing gems in `.bundle`.
* `deployment` (`BUNDLE_DEPLOYMENT`):
   Disallow changes to the `Gemfile`. When the `Gemfile` is changed and the
   lockfile has not been updated, running Bundler commands will be blocked.
* `disable_checksum_validation` (`BUNDLE_DISABLE_CHECKSUM_VALIDATION`):
   Allow installing gems even if they do not match the checksum provided by
   RubyGems.
* `disable_exec_load` (`BUNDLE_DISABLE_EXEC_LOAD`):
   Stop Bundler from using `load` to launch an executable in-process in
   `bundle exec`.
* `disable_local_branch_check` (`BUNDLE_DISABLE_LOCAL_BRANCH_CHECK`):
   Allow Bundler to use a local git override without a branch specified in the
   Gemfile.
* `disable_local_revision_check` (`BUNDLE_DISABLE_LOCAL_REVISION_CHECK`):
   Allow Bundler to use a local git override without checking if the revision
   present in the lockfile is present in the repository.
* `disable_shared_gems` (`BUNDLE_DISABLE_SHARED_GEMS`):
   Stop Bundler from accessing gems installed to RubyGems' normal location.
* `disable_version_check` (`BUNDLE_DISABLE_VERSION_CHECK`):
   Stop Bundler from checking if a newer Bundler version is available on
   rubygems.org.
* `force_ruby_platform` (`BUNDLE_FORCE_RUBY_PLATFORM`):
   Ignore the current machine's platform and install only `ruby` platform gems.
   As a result, gems with native extensions will be compiled from source.
* `frozen` (`BUNDLE_FROZEN`):
   Disallow changes to the `Gemfile`. When the `Gemfile` is changed and the
   lockfile has not been updated, running Bundler commands will be blocked.
   Defaults to `true` when `--deployment` is used.
* `gem.github_username` (`BUNDLE_GEM__GITHUB_USERNAME`):
   Sets a GitHub username or organization to be used in `README` file when you
   create a new gem via `bundle gem` command. It can be overridden by passing an
   explicit `--github-username` flag to `bundle gem`.
* `gem.push_key` (`BUNDLE_GEM__PUSH_KEY`):
   Sets the `--key` parameter for `gem push` when using the `rake release`
   command with a private gemstash server.
* `gemfile` (`BUNDLE_GEMFILE`):
   The name of the file that bundler should use as the `Gemfile`. This location
   of this file also sets the root of the project, which is used to resolve
   relative paths in the `Gemfile`, among other things. By default, bundler
   will search up from the current working directory until it finds a
   `Gemfile`.
* `global_gem_cache` (`BUNDLE_GLOBAL_GEM_CACHE`):
   Whether Bundler should cache all gems globally, rather than locally to the
   installing Ruby installation.
* `ignore_messages` (`BUNDLE_IGNORE_MESSAGES`):
   When set, no post install messages will be printed. To silence a single gem,
   use dot notation like `ignore_messages.httparty true`.
* `init_gems_rb` (`BUNDLE_INIT_GEMS_RB`):
   Generate a `gems.rb` instead of a `Gemfile` when running `bundle init`.
* `jobs` (`BUNDLE_JOBS`):
   The number of gems Bundler can install in parallel. Defaults to 1 on Windows,
   and to the the number of processors on other platforms.
* `no_install` (`BUNDLE_NO_INSTALL`):
   Whether `bundle package` should skip installing gems.
* `no_prune` (`BUNDLE_NO_PRUNE`):
   Whether Bundler should leave outdated gems unpruned when caching.
* `path` (`BUNDLE_PATH`):
   The location on disk where all gems in your bundle will be located regardless
   of `$GEM_HOME` or `$GEM_PATH` values. Bundle gems not found in this location
   will be installed by `bundle install`. Defaults to `Gem.dir`. When --deployment
   is used, defaults to vendor/bundle.
* `path.system` (`BUNDLE_PATH__SYSTEM`):
   Whether Bundler will install gems into the default system path (`Gem.dir`).
* `path_relative_to_cwd` (`BUNDLE_PATH_RELATIVE_TO_CWD`)
   Makes `--path` relative to the CWD instead of the `Gemfile`.
* `plugins` (`BUNDLE_PLUGINS`):
   Enable Bundler's experimental plugin system.
* `prefer_patch` (BUNDLE_PREFER_PATCH):
   Prefer updating only to next patch version during updates. Makes `bundle update` calls equivalent to `bundler update --patch`.
* `print_only_version_number` (`BUNDLE_PRINT_ONLY_VERSION_NUMBER`):
   Print only version number from `bundler --version`.
* `redirect` (`BUNDLE_REDIRECT`):
   The number of redirects allowed for network requests. Defaults to `5`.
* `retry` (`BUNDLE_RETRY`):
   The number of times to retry failed network requests. Defaults to `3`.
* `setup_makes_kernel_gem_public` (`BUNDLE_SETUP_MAKES_KERNEL_GEM_PUBLIC`):
   Have `Bundler.setup` make the `Kernel#gem` method public, even though
   RubyGems declares it as private.
* `shebang` (`BUNDLE_SHEBANG`):
   The program name that should be invoked for generated binstubs. Defaults to
   the ruby install name used to generate the binstub.
* `silence_deprecations` (`BUNDLE_SILENCE_DEPRECATIONS`):
   Whether Bundler should silence deprecation warnings for behavior that will
   be changed in the next major version.
* `silence_root_warning` (`BUNDLE_SILENCE_ROOT_WARNING`):
   Silence the warning Bundler prints when installing gems as root.
* `ssl_ca_cert` (`BUNDLE_SSL_CA_CERT`):
   Path to a designated CA certificate file or folder containing multiple
   certificates for trusted CAs in PEM format.
* `ssl_client_cert` (`BUNDLE_SSL_CLIENT_CERT`):
   Path to a designated file containing a X.509 client certificate
   and key in PEM format.
* `ssl_verify_mode` (`BUNDLE_SSL_VERIFY_MODE`):
   The SSL verification mode Bundler uses when making HTTPS requests.
   Defaults to verify peer.
* `suppress_install_using_messages` (`BUNDLE_SUPPRESS_INSTALL_USING_MESSAGES`):
   Avoid printing `Using ...` messages during installation when the version of
   a gem has not changed.
* `system_bindir` (`BUNDLE_SYSTEM_BINDIR`):
   The location where RubyGems installs binstubs. Defaults to `Gem.bindir`.
* `timeout` (`BUNDLE_TIMEOUT`):
   The seconds allowed before timing out for network requests. Defaults to `10`.
* `update_requires_all_flag` (`BUNDLE_UPDATE_REQUIRES_ALL_FLAG`):
   Require passing `--all` to `bundle update` when everything should be updated,
   and disallow passing no options to `bundle update`.
* `user_agent` (`BUNDLE_USER_AGENT`):
   The custom user agent fragment Bundler includes in API requests.
* `with` (`BUNDLE_WITH`):
   A `:`-separated list of groups whose gems bundler should install.
* `without` (`BUNDLE_WITHOUT`):
   A `:`-separated list of groups whose gems bundler should not install.

In general, you should set these settings per-application by using the applicable
flag to the [bundle install(1)](bundle-install.1.html) or [bundle package(1)](bundle-package.1.html) command.

You can set them globally either via environment variables or `bundle config`,
whichever is preferable for your setup. If you use both, environment variables
will take preference over global settings.

## LOCAL GIT REPOS

Bundler also allows you to work against a git repository locally
instead of using the remote version. This can be achieved by setting
up a local override:

    bundle config set --local local.GEM_NAME /path/to/local/git/repository

For example, in order to use a local Rack repository, a developer could call:

    bundle config set --local local.rack ~/Work/git/rack

Now instead of checking out the remote git repository, the local
override will be used. Similar to a path source, every time the local
git repository change, changes will be automatically picked up by
Bundler. This means a commit in the local git repo will update the
revision in the `Gemfile.lock` to the local git repo revision. This
requires the same attention as git submodules. Before pushing to
the remote, you need to ensure the local override was pushed, otherwise
you may point to a commit that only exists in your local machine.
You'll also need to CGI escape your usernames and passwords as well.

Bundler does many checks to ensure a developer won't work with
invalid references. Particularly, we force a developer to specify
a branch in the `Gemfile` in order to use this feature. If the branch
specified in the `Gemfile` and the current branch in the local git
repository do not match, Bundler will abort. This ensures that
a developer is always working against the correct branches, and prevents
accidental locking to a different branch.

Finally, Bundler also ensures that the current revision in the
`Gemfile.lock` exists in the local git repository. By doing this, Bundler
forces you to fetch the latest changes in the remotes.

## MIRRORS OF GEM SOURCES

Bundler supports overriding gem sources with mirrors. This allows you to
configure rubygems.org as the gem source in your Gemfile while still using your
mirror to fetch gems.

    bundle config set --global mirror.SOURCE_URL MIRROR_URL

For example, to use a mirror of rubygems.org hosted at rubygems-mirror.org:

    bundle config set --global mirror.http://rubygems.org http://rubygems-mirror.org

Each mirror also provides a fallback timeout setting. If the mirror does not
respond within the fallback timeout, Bundler will try to use the original
server instead of the mirror.

    bundle config set --global mirror.SOURCE_URL.fallback_timeout TIMEOUT

For example, to fall back to rubygems.org after 3 seconds:

    bundle config set --global mirror.https://rubygems.org.fallback_timeout 3

The default fallback timeout is 0.1 seconds, but the setting can currently
only accept whole seconds (for example, 1, 15, or 30).

## CREDENTIALS FOR GEM SOURCES

Bundler allows you to configure credentials for any gem source, which allows
you to avoid putting secrets into your Gemfile.

    bundle config set --global SOURCE_HOSTNAME USERNAME:PASSWORD

For example, to save the credentials of user `claudette` for the gem source at
`gems.longerous.com`, you would run:

    bundle config set --global gems.longerous.com claudette:s00pers3krit

Or you can set the credentials as an environment variable like this:

    export BUNDLE_GEMS__LONGEROUS__COM="claudette:s00pers3krit"

For gems with a git source with HTTP(S) URL you can specify credentials like so:

    bundle config set --global https://github.com/rubygems/rubygems.git username:password

Or you can set the credentials as an environment variable like so:

    export BUNDLE_GITHUB__COM=username:password

This is especially useful for private repositories on hosts such as Github,
where you can use personal OAuth tokens:

    export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x-oauth-basic

Note that any configured credentials will be redacted by informative commands
such as `bundle config list` or `bundle config get`, unless you use the
`--parseable` flag. This is to avoid unintentially leaking credentials when
copy-pasting bundler output.

Also note that to guarantee a sane mapping between valid environment variable
names and valid host names, bundler makes the following transformations:

* Any `-` characters in a host name are mapped to a triple dash (`___`) in the
  corresponding enviroment variable.

* Any `.` characters in a host name are mapped to a double dash (`__`) in the
  corresponding environment variable.

This means that if you have a gem server named `my.gem-host.com`, you'll need to
use the `BUNDLE_MY__GEM___HOST__COM` variable to configure credentials for it
through ENV.

## CONFIGURE BUNDLER DIRECTORIES

Bundler's home, config, cache and plugin directories are able to be configured
through environment variables. The default location for Bundler's home directory is
`~/.bundle`, which all directories inherit from by default. The following
outlines the available environment variables and their default values

    BUNDLE_USER_HOME : $HOME/.bundle
    BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
    BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
    BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
PK<H[���qqAshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-info.1.ronnnu�[���bundle-info(1) -- Show information for the given gem in your bundle
=========================================================================

## SYNOPSIS

`bundle info` [GEM]
              [--path]

## DESCRIPTION

Print the basic information about the provided GEM such as homepage, version,
path and summary.

## OPTIONS

* `--path`:
Print the path of the given gem
PK<H[��k�Bshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-cache.1.ronnnu�[���bundle-cache(1) -- Package your needed `.gem` files into your application
===========================================================================

## SYNOPSIS

`bundle cache`

## DESCRIPTION

Copy all of the `.gem` files needed to run the application into the
`vendor/cache` directory. In the future, when running [bundle install(1)][bundle-install],
use the gems in the cache in preference to the ones on `rubygems.org`.

## GIT AND PATH GEMS

The `bundle cache` command can also package `:git` and `:path` dependencies
besides .gem files. This needs to be explicitly enabled via the `--all` option.
Once used, the `--all` option will be remembered.

## SUPPORT FOR MULTIPLE PLATFORMS

When using gems that have different packages for different platforms, Bundler
supports caching of gems for other platforms where the Gemfile has been resolved
(i.e. present in the lockfile) in `vendor/cache`.  This needs to be enabled via
the `--all-platforms` option. This setting will be remembered in your local
bundler configuration.

## REMOTE FETCHING

By default, if you run `bundle install(1)`](bundle-install.1.html) after running
[bundle cache(1)](bundle-cache.1.html), bundler will still connect to `rubygems.org`
to check whether a platform-specific gem exists for any of the gems
in `vendor/cache`.

For instance, consider this Gemfile(5):

    source "https://rubygems.org"

    gem "nokogiri"

If you run `bundle cache` under C Ruby, bundler will retrieve
the version of `nokogiri` for the `"ruby"` platform. If you deploy
to JRuby and run `bundle install`, bundler is forced to check to
see whether a `"java"` platformed `nokogiri` exists.

Even though the `nokogiri` gem for the Ruby platform is
_technically_ acceptable on JRuby, it has a C extension
that does not run on JRuby. As a result, bundler will, by default,
still connect to `rubygems.org` to check whether it has a version
of one of your gems more specific to your platform.

This problem is also not limited to the `"java"` platform.
A similar (common) problem can happen when developing on Windows
and deploying to Linux, or even when developing on OSX and
deploying to Linux.

If you know for sure that the gems packaged in `vendor/cache`
are appropriate for the platform you are on, you can run
`bundle install --local` to skip checking for more appropriate
gems, and use the ones in `vendor/cache`.

One way to be sure that you have the right platformed versions
of all your gems is to run `bundle cache` on an identical
machine and check in the gems. For instance, you can run
`bundle cache` on an identical staging box during your
staging process, and check in the `vendor/cache` before
deploying to production.

By default, [bundle cache(1)](bundle-cache.1.html) fetches and also
installs the gems to the default location. To package the
dependencies to `vendor/cache` without installing them to the
local install location, you can run `bundle cache --no-install`.
PK<H[\'i�TTAshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-show.1.ronnnu�[���bundle-show(1) -- Shows all the gems in your bundle, or the path to a gem
=========================================================================

## SYNOPSIS

`bundle show` [GEM]
              [--paths]

## DESCRIPTION

Without the [GEM] option, `show` will print a list of the names and versions of
all gems that are required by your [`Gemfile(5)`][Gemfile(5)], sorted by name.

Calling show with [GEM] will list the exact location of that gem on your
machine.

## OPTIONS

* `--paths`:
  List the paths of all gems that are required by your [`Gemfile(5)`][Gemfile(5)],
  sorted by gem name.
PK<H[����@share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-outdated.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-OUTDATED" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-outdated\fR \- List installed gems with newer versions available
.
.SH "SYNOPSIS"
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-update\-strict] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
.
.SH "DESCRIPTION"
Outdated lists the names and versions of gems that have a newer version available in the given source\. Calling outdated with [GEM [GEM]] will only check for newer versions of the given gems\. Prerelease gems are ignored by default\. If your gems are up to date, Bundler will exit with a status of 0\. Otherwise, it will exit 1\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-local\fR
Do not attempt to fetch gems remotely and use the gem cache instead\.
.
.TP
\fB\-\-pre\fR
Check for newer pre\-release gems\.
.
.TP
\fB\-\-source\fR
Check against a specific source\.
.
.TP
\fB\-\-strict\fR
Only list newer versions allowed by your Gemfile requirements\.
.
.TP
\fB\-\-parseable\fR, \fB\-\-porcelain\fR
Use minimal formatting for more parseable output\.
.
.TP
\fB\-\-group\fR
List gems from a specific group\.
.
.TP
\fB\-\-groups\fR
List gems organized by groups\.
.
.TP
\fB\-\-update\-strict\fR
Strict conservative resolution, do not allow any gem to be updated past latest \-\-patch | \-\-minor| \-\-major\.
.
.TP
\fB\-\-minor\fR
Prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
Prefer updating to next major version (default)\.
.
.TP
\fB\-\-patch\fR
Prefer updating only to next patch version\.
.
.TP
\fB\-\-filter\-major\fR
Only list major newer versions\.
.
.TP
\fB\-\-filter\-minor\fR
Only list minor newer versions\.
.
.TP
\fB\-\-filter\-patch\fR
Only list patch newer versions\.
.
.TP
\fB\-\-only\-explicit\fR
Only list gems specified in your Gemfile, not their dependencies\.
.
.SH "PATCH LEVEL OPTIONS"
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
.
.P
One difference between the patch level options in \fBbundle update\fR and here is the \fB\-\-strict\fR option\. \fB\-\-strict\fR was already an option on outdated before the patch level options were added\. \fB\-\-strict\fR wasn\'t altered, and the \fB\-\-update\-strict\fR option on \fBoutdated\fR reflects what \fB\-\-strict\fR does on \fBbundle update\fR\.
.
.SH "FILTERING OUTPUT"
The 3 filtering options do not affect the resolution of versions, merely what versions are shown in the output\.
.
.P
If the regular output shows the following:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-major\fR would only show:
.
.IP "" 4
.
.nf

* hashie (newest 3\.4\.6, installed 1\.2\.0, requested = 1\.2\.0) in groups "default"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-minor\fR would only show:
.
.IP "" 4
.
.nf

* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
\fB\-\-filter\-patch\fR would only show:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
.
.fi
.
.IP "" 0
.
.P
Filter options can be combined\. \fB\-\-filter\-minor\fR and \fB\-\-filter\-patch\fR would show:
.
.IP "" 4
.
.nf

* faker (newest 1\.6\.6, installed 1\.6\.5, requested ~> 1\.4) in groups "development, test"
* headless (newest 2\.3\.1, installed 2\.2\.3) in groups "test"
.
.fi
.
.IP "" 0
.
.P
Combining all three \fBfilter\fR options would be the same result as providing none of them\.
PK<H[���mss<share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-lock.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-LOCK" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
.
.SH "SYNOPSIS"
\fBbundle lock\fR [\-\-update] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-add\-platform] [\-\-remove\-platform] [\-\-patch] [\-\-minor] [\-\-major] [\-\-strict] [\-\-conservative]
.
.SH "DESCRIPTION"
Lock the gems specified in Gemfile\.
.
.SH "OPTIONS"
.
.TP
\fB\-\-update=<*gems>\fR
Ignores the existing lockfile\. Resolve then updates lockfile\. Taking a list of gems or updating all gems if no list is given\.
.
.TP
\fB\-\-local\fR
Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems\' cache or in \fBvendor/cache\fR\. Note that if a appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
.
.TP
\fB\-\-print\fR
Prints the lockfile to STDOUT instead of writing to the file system\.
.
.TP
\fB\-\-lockfile=<path>\fR
The path where the lockfile should be written to\.
.
.TP
\fB\-\-full\-index\fR
Fall back to using the single\-file index of all gems\.
.
.TP
\fB\-\-add\-platform\fR
Add a new platform to the lockfile, re\-resolving for the addition of that platform\.
.
.TP
\fB\-\-remove\-platform\fR
Remove a platform from the lockfile\.
.
.TP
\fB\-\-patch\fR
If updating, prefer updating only to next patch version\.
.
.TP
\fB\-\-minor\fR
If updating, prefer updating only to next minor version\.
.
.TP
\fB\-\-major\fR
If updating, prefer updating to next major version (default)\.
.
.TP
\fB\-\-strict\fR
If updating, do not allow any gem to be updated past latest \-\-patch | \-\-minor | \-\-major\.
.
.TP
\fB\-\-conservative\fR
If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated\.
.
.SH "UPDATING ALL GEMS"
If you run \fBbundle lock\fR with \fB\-\-update\fR option without list of gems, bundler will ignore any previously installed gems and resolve all dependencies again based on the latest versions of all gems available in the sources\.
.
.SH "UPDATING A LIST OF GEMS"
Sometimes, you want to update a single gem in the Gemfile(5), and leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.P
For instance, you only want to update \fBnokogiri\fR, run \fBbundle lock \-\-update nokogiri\fR\.
.
.P
Bundler will update \fBnokogiri\fR and any of its dependencies, but leave the rest of the gems that you specified locked to the versions in the \fBGemfile\.lock\fR\.
.
.SH "SUPPORTING OTHER PLATFORMS"
If you want your bundle to support platforms other than the one you\'re running locally, you can run \fBbundle lock \-\-add\-platform PLATFORM\fR to add PLATFORM to the lockfile, force bundler to re\-resolve and consider the new platform when picking gems, all without needing to have a machine that matches PLATFORM handy to install those platform\-specific gems on\.
.
.P
For a full explanation of gem platforms, see \fBgem help platform\fR\.
.
.SH "PATCH LEVEL OPTIONS"
See bundle update(1) \fIbundle\-update\.1\.html\fR for details\.
PK<H[��&��;share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-add.1nu�[���.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "BUNDLE\-ADD" "1" "June 2021" "" ""
.
.SH "NAME"
\fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
.
.SH "SYNOPSIS"
\fBbundle add\fR \fIGEM_NAME\fR [\-\-group=GROUP] [\-\-version=VERSION] [\-\-source=SOURCE] [\-\-git=GIT] [\-\-branch=BRANCH] [\-\-skip\-install] [\-\-strict] [\-\-optimistic]
.
.SH "DESCRIPTION"
Adds the named gem to the Gemfile and run \fBbundle install\fR\. \fBbundle install\fR can be avoided by using the flag \fB\-\-skip\-install\fR\.
.
.P
Example:
.
.P
bundle add rails
.
.P
bundle add rails \-\-version "< 3\.0, > 1\.1"
.
.P
bundle add rails \-\-version "~> 5\.0\.0" \-\-source "https://gems\.example\.com" \-\-group "development"
.
.P
bundle add rails \-\-skip\-install
.
.P
bundle add rails \-\-group "development, test"
.
.SH "OPTIONS"
.
.TP
\fB\-\-version\fR, \fB\-v\fR
Specify version requirements(s) for the added gem\.
.
.TP
\fB\-\-group\fR, \fB\-g\fR
Specify the group(s) for the added gem\. Multiple groups should be separated by commas\.
.
.TP
\fB\-\-source\fR, , \fB\-s\fR
Specify the source for the added gem\.
.
.TP
\fB\-\-git\fR
Specify the git source for the added gem\.
.
.TP
\fB\-\-branch\fR
Specify the git branch for the added gem\.
.
.TP
\fB\-\-skip\-install\fR
Adds the gem to the Gemfile but does not install it\.
.
.TP
\fB\-\-optimistic\fR
Adds optimistic declaration of version
.
.TP
\fB\-\-strict\fR
Adds strict declaration of version

PK<H[�X6��5share/gems/gems/bundler-2.2.24/lib/bundler/version.rbnu�[���# frozen_string_literal: false

module Bundler
  VERSION = "2.2.24".freeze

  def self.bundler_major_version
    @bundler_major_version ||= VERSION.split(".").first.to_i
  end
end
PK<H[�6��@share/gems/gems/bundler-2.2.24/lib/bundler/lockfile_generator.rbnu�[���# frozen_string_literal: true

module Bundler
  class LockfileGenerator
    attr_reader :definition
    attr_reader :out

    # @private
    def initialize(definition)
      @definition = definition
      @out = String.new
    end

    def self.generate(definition)
      new(definition).generate!
    end

    def generate!
      add_sources
      add_platforms
      add_dependencies
      add_locked_ruby_version
      add_bundled_with

      out
    end

    private

    def add_sources
      definition.send(:sources).lock_sources.each_with_index do |source, idx|
        out << "\n" unless idx.zero?

        # Add the source header
        out << source.to_lock

        # Find all specs for this source
        specs = definition.resolve.select {|s| source.can_lock?(s) }
        add_specs(specs)
      end
    end

    def add_specs(specs)
      # This needs to be sorted by full name so that
      # gems with the same name, but different platform
      # are ordered consistently
      specs.sort_by(&:full_name).each do |spec|
        next if spec.name == "bundler".freeze
        out << spec.to_lock
      end
    end

    def add_platforms
      add_section("PLATFORMS", definition.platforms)
    end

    def add_dependencies
      out << "\nDEPENDENCIES\n"

      handled = []
      definition.dependencies.sort_by(&:to_s).each do |dep|
        next if handled.include?(dep.name)
        out << dep.to_lock
        handled << dep.name
      end
    end

    def add_locked_ruby_version
      return unless locked_ruby_version = definition.locked_ruby_version
      add_section("RUBY VERSION", locked_ruby_version.to_s)
    end

    def add_bundled_with
      add_section("BUNDLED WITH", definition.locked_bundler_version.to_s)
    end

    def add_section(name, value)
      out << "\n#{name}\n"
      case value
      when Array
        value.map(&:to_s).sort.each do |val|
          out << "  #{val}\n"
        end
      when Hash
        value.to_a.sort_by {|k, _| k.to_s }.each do |key, val|
          out << "  #{key}: #{val}\n"
        end
      when String
        out << "   #{value}\n"
      else
        raise ArgumentError, "#{value.inspect} can't be serialized in a lockfile"
      end
    end
  end
end
PK<H[�eA�ss8share/gems/gems/bundler-2.2.24/lib/bundler/capistrano.rbnu�[���# frozen_string_literal: true

require_relative "shared_helpers"
Bundler::SharedHelpers.major_deprecation 2,
  "The Bundler task for Capistrano. Please use https://github.com/capistrano/bundler"

# Capistrano task for Bundler.
#
# Add "require 'bundler/capistrano'" in your Capistrano deploy.rb, and
# Bundler will be activated after each new deployment.
require_relative "deployment"
require "capistrano/version"

if defined?(Capistrano::Version) && Gem::Version.new(Capistrano::Version).release >= Gem::Version.new("3.0")
  raise "For Capistrano 3.x integration, please use https://github.com/capistrano/bundler"
end

Capistrano::Configuration.instance(:must_exist).load do
  before "deploy:finalize_update", "bundle:install"
  Bundler::Deployment.define_task(self, :task, :except => { :no_release => true })
  set :rake, lambda { "#{fetch(:bundle_cmd, "bundle")} exec rake" }
end
PK<H[��[

7share/gems/gems/bundler-2.2.24/lib/bundler/ui/silent.rbnu�[���# frozen_string_literal: true

module Bundler
  module UI
    class Silent
      attr_writer :shell

      def initialize
        @warnings = []
      end

      def add_color(string, color)
        string
      end

      def info(message, newline = nil)
      end

      def confirm(message, newline = nil)
      end

      def warn(message, newline = nil)
        @warnings |= [message]
      end

      def error(message, newline = nil)
      end

      def debug(message, newline = nil)
      end

      def debug?
        false
      end

      def quiet?
        false
      end

      def ask(message)
      end

      def yes?(msg)
        raise "Cannot ask yes? with a silent shell"
      end

      def no?
        raise "Cannot ask no? with a silent shell"
      end

      def level=(name)
      end

      def level(name = nil)
      end

      def trace(message, newline = nil, force = false)
      end

      def silence
        yield
      end

      def unprinted_warnings
        @warnings
      end
    end
  end
end
PK<H[X�ȷr
r
6share/gems/gems/bundler-2.2.24/lib/bundler/ui/shell.rbnu�[���# frozen_string_literal: true

require_relative "../vendored_thor"

module Bundler
  module UI
    class Shell
      LEVELS = %w[silent error warn confirm info debug].freeze

      attr_writer :shell

      def initialize(options = {})
        Thor::Base.shell = options["no-color"] ? Thor::Shell::Basic : nil
        @shell = Thor::Base.shell.new
        @level = ENV["DEBUG"] ? "debug" : "info"
        @warning_history = []
      end

      def add_color(string, *color)
        @shell.set_color(string, *color)
      end

      def info(msg, newline = nil)
        tell_me(msg, nil, newline) if level("info")
      end

      def confirm(msg, newline = nil)
        tell_me(msg, :green, newline) if level("confirm")
      end

      def warn(msg, newline = nil, color = :yellow)
        return unless level("warn")
        return if @warning_history.include? msg
        @warning_history << msg

        tell_err(msg, color, newline)
      end

      def error(msg, newline = nil, color = :red)
        return unless level("error")
        tell_err(msg, color, newline)
      end

      def debug(msg, newline = nil)
        tell_me(msg, nil, newline) if debug?
      end

      def debug?
        level("debug")
      end

      def quiet?
        level("quiet")
      end

      def ask(msg)
        @shell.ask(msg)
      end

      def yes?(msg)
        @shell.yes?(msg)
      end

      def no?
        @shell.no?(msg)
      end

      def level=(level)
        raise ArgumentError unless LEVELS.include?(level.to_s)
        @level = level.to_s
      end

      def level(name = nil)
        return @level unless name
        unless index = LEVELS.index(name)
          raise "#{name.inspect} is not a valid level"
        end
        index <= LEVELS.index(@level)
      end

      def trace(e, newline = nil, force = false)
        return unless debug? || force
        msg = "#{e.class}: #{e.message}\n#{e.backtrace.join("\n  ")}"
        tell_me(msg, nil, newline)
      end

      def silence(&blk)
        with_level("silent", &blk)
      end

      def unprinted_warnings
        []
      end

      private

      # valimism
      def tell_me(msg, color = nil, newline = nil)
        msg = word_wrap(msg) if newline.is_a?(Hash) && newline[:wrap]
        if newline.nil?
          @shell.say(msg, color)
        else
          @shell.say(msg, color, newline)
        end
      end

      def tell_err(message, color = nil, newline = nil)
        return if @shell.send(:stderr).closed?

        newline ||= message.to_s !~ /( |\t)\Z/
        message = word_wrap(message) if newline.is_a?(Hash) && newline[:wrap]

        color = nil if color && !$stderr.tty?

        buffer = @shell.send(:prepare_message, message, *color)
        buffer << "\n" if newline && !message.to_s.end_with?("\n")

        @shell.send(:stderr).print(buffer)
        @shell.send(:stderr).flush
      end

      def strip_leading_spaces(text)
        spaces = text[/\A\s+/, 0]
        spaces ? text.gsub(/#{spaces}/, "") : text
      end

      def word_wrap(text, line_width = @shell.terminal_width)
        strip_leading_spaces(text).split("\n").collect do |line|
          line.length > line_width ? line.gsub(/(.{1,#{line_width}})(\s+|$)/, "\\1\n").strip : line
        end * "\n"
      end

      def with_level(level)
        original = @level
        @level = level
        yield
      ensure
        @level = original
      end
    end
  end
end
PK<H[��K669share/gems/gems/bundler-2.2.24/lib/bundler/ui/rg_proxy.rbnu�[���# frozen_string_literal: true

require_relative "../ui"
require "rubygems/user_interaction"

module Bundler
  module UI
    class RGProxy < ::Gem::SilentUI
      def initialize(ui)
        @ui = ui
        super()
      end

      def say(message)
        @ui && @ui.debug(message)
      end
    end
  end
end
PK<H[ؤ�-""8share/gems/gems/bundler-2.2.24/lib/bundler/source_map.rbnu�[���# frozen_string_literal: true

module Bundler
  class SourceMap
    attr_reader :sources, :dependencies

    def initialize(sources, dependencies)
      @sources = sources
      @dependencies = dependencies
    end

    def pinned_spec_names(skip = nil)
      direct_requirements.reject {|_, source| source == skip }.keys
    end

    def all_requirements
      requirements = direct_requirements.dup

      unmet_deps = sources.non_default_explicit_sources.map do |source|
        (source.spec_names - pinned_spec_names).each do |indirect_dependency_name|
          previous_source = requirements[indirect_dependency_name]
          if previous_source.nil?
            requirements[indirect_dependency_name] = source
          else
            no_ambiguous_sources = Bundler.feature_flag.bundler_3_mode?

            msg = ["The gem '#{indirect_dependency_name}' was found in multiple relevant sources."]
            msg.concat [previous_source, source].map {|s| "  * #{s}" }.sort
            msg << "You #{no_ambiguous_sources ? :must : :should} add this gem to the source block for the source you wish it to be installed from."
            msg = msg.join("\n")

            raise SecurityError, msg if no_ambiguous_sources
            Bundler.ui.warn "Warning: #{msg}"
          end
        end

        source.unmet_deps
      end

      sources.default_source.add_dependency_names(unmet_deps.flatten - requirements.keys)

      requirements
    end

    def direct_requirements
      @direct_requirements ||= begin
        requirements = {}
        default = sources.default_source
        dependencies.each do |dep|
          dep_source = dep.source || default
          dep_source.add_dependency_names(dep.name)
          requirements[dep.name] = dep_source
        end
        requirements
      end
    end
  end
end
PK<H[�y<22dshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rbnu�[���require 'thread'
require 'timeout'
require_relative 'monotonic_time'

##
# Raised when you attempt to retrieve a connection from a pool that has been
# shut down.

class Bundler::ConnectionPool::PoolShuttingDownError < RuntimeError; end

##
# The TimedStack manages a pool of homogeneous connections (or any resource
# you wish to manage).  Connections are created lazily up to a given maximum
# number.

# Examples:
#
#    ts = TimedStack.new(1) { MyConnection.new }
#
#    # fetch a connection
#    conn = ts.pop
#
#    # return a connection
#    ts.push conn
#
#    conn = ts.pop
#    ts.pop timeout: 5
#    #=> raises Timeout::Error after 5 seconds

class Bundler::ConnectionPool::TimedStack
  attr_reader :max

  ##
  # Creates a new pool with +size+ connections that are created from the given
  # +block+.

  def initialize(size = 0, &block)
    @create_block = block
    @created = 0
    @que = []
    @max = size
    @mutex = Mutex.new
    @resource = ConditionVariable.new
    @shutdown_block = nil
  end

  ##
  # Returns +obj+ to the stack.  +options+ is ignored in TimedStack but may be
  # used by subclasses that extend TimedStack.

  def push(obj, options = {})
    @mutex.synchronize do
      if @shutdown_block
        @shutdown_block.call(obj)
      else
        store_connection obj, options
      end

      @resource.broadcast
    end
  end
  alias_method :<<, :push

  ##
  # Retrieves a connection from the stack.  If a connection is available it is
  # immediately returned.  If no connection is available within the given
  # timeout a Timeout::Error is raised.
  #
  # +:timeout+ is the only checked entry in +options+ and is preferred over
  # the +timeout+ argument (which will be removed in a future release).  Other
  # options may be used by subclasses that extend TimedStack.

  def pop(timeout = 0.5, options = {})
    options, timeout = timeout, 0.5 if Hash === timeout
    timeout = options.fetch :timeout, timeout

    deadline = Bundler::ConnectionPool.monotonic_time + timeout
    @mutex.synchronize do
      loop do
        raise Bundler::ConnectionPool::PoolShuttingDownError if @shutdown_block
        return fetch_connection(options) if connection_stored?(options)

        connection = try_create(options)
        return connection if connection

        to_wait = deadline - Bundler::ConnectionPool.monotonic_time
        raise Timeout::Error, "Waited #{timeout} sec" if to_wait <= 0
        @resource.wait(@mutex, to_wait)
      end
    end
  end

  ##
  # Shuts down the TimedStack which prevents connections from being checked
  # out.  The +block+ is called once for each connection on the stack.

  def shutdown(&block)
    raise ArgumentError, "shutdown must receive a block" unless block_given?

    @mutex.synchronize do
      @shutdown_block = block
      @resource.broadcast

      shutdown_connections
    end
  end

  ##
  # Returns +true+ if there are no available connections.

  def empty?
    (@created - @que.length) >= @max
  end

  ##
  # The number of connections available on the stack.

  def length
    @max - @created + @que.length
  end

  private

  ##
  # This is an extension point for TimedStack and is called with a mutex.
  #
  # This method must returns true if a connection is available on the stack.

  def connection_stored?(options = nil)
    !@que.empty?
  end

  ##
  # This is an extension point for TimedStack and is called with a mutex.
  #
  # This method must return a connection from the stack.

  def fetch_connection(options = nil)
    @que.pop
  end

  ##
  # This is an extension point for TimedStack and is called with a mutex.
  #
  # This method must shut down all connections on the stack.

  def shutdown_connections(options = nil)
    while connection_stored?(options)
      conn = fetch_connection(options)
      @shutdown_block.call(conn)
    end
  end

  ##
  # This is an extension point for TimedStack and is called with a mutex.
  #
  # This method must return +obj+ to the stack.

  def store_connection(obj, options = nil)
    @que.push obj
  end

  ##
  # This is an extension point for TimedStack and is called with a mutex.
  #
  # This method must create a connection if and only if the total number of
  # connections allowed has not been met.

  def try_create(options = nil)
    unless @created == @max
      object = @create_block.call
      @created += 1
      object
    end
  end
end
PK<H[�\?�66`share/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rbnu�[���class Bundler::ConnectionPool
  VERSION = "2.2.2"
end
PK<H[�q�.YYgshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rbnu�[���# Global monotonic clock from Concurrent Ruby 1.0.
# Copyright (c) Jerry D'Antonio -- released under the MIT license.
# Slightly modified; used with permission.
# https://github.com/ruby-concurrency/concurrent-ruby

require 'thread'

class Bundler::ConnectionPool

  class_definition = Class.new do

    if defined?(Process::CLOCK_MONOTONIC)

      # @!visibility private
      def get_time
        Process.clock_gettime(Process::CLOCK_MONOTONIC)
      end

    elsif defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'

      # @!visibility private
      def get_time
        java.lang.System.nanoTime() / 1_000_000_000.0
      end

    else

      # @!visibility private
      def initialize
        @mutex = Mutex.new
        @last_time = Time.now.to_f
      end

      # @!visibility private
      def get_time
        @mutex.synchronize do
          now = Time.now.to_f
          if @last_time < now
            @last_time = now
          else # clock has moved back in time
            @last_time += 0.000_001
          end
        end
      end
    end
  end

  ##
  # Clock that cannot be set and represents monotonic time since
  # some unspecified starting point.
  #
  # @!visibility private
  GLOBAL_MONOTONIC_CLOCK = class_definition.new
  private_constant :GLOBAL_MONOTONIC_CLOCK

  class << self
    ##
    # Returns the current time a tracked by the application monotonic clock.
    #
    # @return [Float] The current monotonic time when `since` not given else
    #   the elapsed monotonic time between `since` and the current time
    def monotonic_time
      GLOBAL_MONOTONIC_CLOCK.get_time
    end
  end
end
PK<H[��e��
�
Xshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool.rbnu�[���require_relative 'connection_pool/version'
require_relative 'connection_pool/timed_stack'


# Generic connection pool class for e.g. sharing a limited number of network connections
# among many threads.  Note: Connections are lazily created.
#
# Example usage with block (faster):
#
#    @pool = Bundler::ConnectionPool.new { Redis.new }
#
#    @pool.with do |redis|
#      redis.lpop('my-list') if redis.llen('my-list') > 0
#    end
#
# Using optional timeout override (for that single invocation)
#
#    @pool.with(timeout: 2.0) do |redis|
#      redis.lpop('my-list') if redis.llen('my-list') > 0
#    end
#
# Example usage replacing an existing connection (slower):
#
#    $redis = Bundler::ConnectionPool.wrap { Redis.new }
#
#    def do_work
#      $redis.lpop('my-list') if $redis.llen('my-list') > 0
#    end
#
# Accepts the following options:
# - :size - number of connections to pool, defaults to 5
# - :timeout - amount of time to wait for a connection if none currently available, defaults to 5 seconds
#
class Bundler::ConnectionPool
  DEFAULTS = {size: 5, timeout: 5}

  class Error < RuntimeError
  end

  def self.wrap(options, &block)
    Wrapper.new(options, &block)
  end

  def initialize(options = {}, &block)
    raise ArgumentError, 'Connection pool requires a block' unless block

    options = DEFAULTS.merge(options)

    @size = options.fetch(:size)
    @timeout = options.fetch(:timeout)

    @available = TimedStack.new(@size, &block)
    @key = :"current-#{@available.object_id}"
    @key_count = :"current-#{@available.object_id}-count"
  end

if Thread.respond_to?(:handle_interrupt)

  # MRI
  def with(options = {})
    Thread.handle_interrupt(Exception => :never) do
      conn = checkout(options)
      begin
        Thread.handle_interrupt(Exception => :immediate) do
          yield conn
        end
      ensure
        checkin
      end
    end
  end

else

  # jruby 1.7.x
  def with(options = {})
    conn = checkout(options)
    begin
      yield conn
    ensure
      checkin
    end
  end

end

  def checkout(options = {})
    if ::Thread.current[@key]
      ::Thread.current[@key_count]+= 1
      ::Thread.current[@key]
    else
      ::Thread.current[@key_count]= 1
      ::Thread.current[@key]= @available.pop(options[:timeout] || @timeout)
    end
  end

  def checkin
    if ::Thread.current[@key]
      if ::Thread.current[@key_count] == 1
        @available.push(::Thread.current[@key])
        ::Thread.current[@key]= nil
      else
        ::Thread.current[@key_count]-= 1
      end
    else
      raise Bundler::ConnectionPool::Error, 'no connections are checked out'
    end

    nil
  end

  def shutdown(&block)
    @available.shutdown(&block)
  end

  # Size of this connection pool
  def size
    @size
  end

  # Number of pool entries available for checkout at this instant.
  def available
    @available.length
  end

  private

  class Wrapper < ::BasicObject
    METHODS = [:with, :pool_shutdown]

    def initialize(options = {}, &block)
      @pool = options.fetch(:pool) { ::Bundler::ConnectionPool.new(options, &block) }
    end

    def with(&block)
      @pool.with(&block)
    end

    def pool_shutdown(&block)
      @pool.shutdown(&block)
    end

    def pool_size
      @pool.size
    end

    def pool_available
      @pool.available
    end

    def respond_to?(id, *args)
      METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
    end

    def method_missing(name, *args, &block)
      with do |connection|
        connection.send(name, *args, &block)
      end
    end
  end
end
PK<H[6�lffrshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rbnu�[���class Bundler::Persistent::Net::HTTP::Persistent::TimedStackMulti < Bundler::ConnectionPool::TimedStack # :nodoc:

  ##
  # Returns a new hash that has arrays for keys
  #
  # Using a class method to limit the bindings referenced by the hash's
  # default_proc

  def self.hash_of_arrays # :nodoc:
    Hash.new { |h,k| h[k] = [] }
  end

  def initialize(size = 0, &block)
    super

    @enqueued = 0
    @ques = self.class.hash_of_arrays
    @lru = {}
    @key = :"connection_args-#{object_id}"
  end

  def empty?
    (@created - @enqueued) >= @max
  end

  def length
    @max - @created + @enqueued
  end

  private

  def connection_stored? options = {} # :nodoc:
    !@ques[options[:connection_args]].empty?
  end

  def fetch_connection options = {} # :nodoc:
    connection_args = options[:connection_args]

    @enqueued -= 1
    lru_update connection_args
    @ques[connection_args].pop
  end

  def lru_update connection_args # :nodoc:
    @lru.delete connection_args
    @lru[connection_args] = true
  end

  def shutdown_connections # :nodoc:
    @ques.each_key do |key|
      super connection_args: key
    end
  end

  def store_connection obj, options = {} # :nodoc:
    @ques[options[:connection_args]].push obj
    @enqueued += 1
  end

  def try_create options = {} # :nodoc:
    connection_args = options[:connection_args]

    if @created >= @max && @enqueued >= 1
      oldest, = @lru.first
      @lru.delete oldest
      @ques[oldest].pop

      @created -= 1
    end

    if @created < @max
      @created += 1
      lru_update connection_args
      return @create_block.call(connection_args)
    end
  end

end

PK<H[hO8��eshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rbnu�[���class Bundler::Persistent::Net::HTTP::Persistent::Pool < Bundler::ConnectionPool # :nodoc:

  attr_reader :available # :nodoc:
  attr_reader :key # :nodoc:

  def initialize(options = {}, &block)
    super

    @available = Bundler::Persistent::Net::HTTP::Persistent::TimedStackMulti.new(@size, &block)
    @key = "current-#{@available.object_id}"
  end

  def checkin net_http_args
    stack = Thread.current[@key][net_http_args] ||= []

    raise Bundler::ConnectionPool::Error, 'no connections are checked out' if
      stack.empty?

    conn = stack.pop

    if stack.empty?
      @available.push conn, connection_args: net_http_args

      Thread.current[@key].delete(net_http_args)
      Thread.current[@key] = nil if Thread.current[@key].empty?
    end

    nil
  end

  def checkout net_http_args
    stacks = Thread.current[@key] ||= {}
    stack  = stacks[net_http_args] ||= []

    if stack.empty? then
      conn = @available.pop connection_args: net_http_args
    else
      conn = stack.last
    end

    stack.push conn

    conn
  end

  def shutdown
    Thread.current[@key] = nil
    super
  end
end

require_relative 'timed_stack_multi'

PK<H[�(ц��kshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rbnu�[���##
# A Net::HTTP connection wrapper that holds extra information for managing the
# connection's lifetime.

class Bundler::Persistent::Net::HTTP::Persistent::Connection # :nodoc:

  attr_accessor :http

  attr_accessor :last_use

  attr_accessor :requests

  attr_accessor :ssl_generation

  def initialize http_class, http_args, ssl_generation
    @http           = http_class.new(*http_args)
    @ssl_generation = ssl_generation

    reset
  end

  def finish
    @http.finish
  rescue IOError
  ensure
    reset
  end

  def reset
    @last_use = Bundler::Persistent::Net::HTTP::Persistent::EPOCH
    @requests = 0
  end

  def ressl ssl_generation
    @ssl_generation = ssl_generation

    finish
  end

end
PK<H[C�}�m�m`share/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rbnu�[���require 'net/http'
require_relative '../../../../uri/lib/uri'
require 'cgi' # for escaping
require_relative '../../../../connection_pool/lib/connection_pool'

autoload :OpenSSL, 'openssl'

##
# Persistent connections for Net::HTTP
#
# Bundler::Persistent::Net::HTTP::Persistent maintains persistent connections across all the
# servers you wish to talk to.  For each host:port you communicate with a
# single persistent connection is created.
#
# Connections will be shared across threads through a connection pool to
# increase reuse of connections.
#
# You can shut down any remaining HTTP connections when done by calling
# #shutdown.
#
# Example:
#
#   require 'bundler/vendor/net-http-persistent/lib/net/http/persistent'
#
#   uri = Bundler::URI 'http://example.com/awesome/web/service'
#
#   http = Bundler::Persistent::Net::HTTP::Persistent.new
#
#   # perform a GET
#   response = http.request uri
#
#   # or
#
#   get = Net::HTTP::Get.new uri.request_uri
#   response = http.request get
#
#   # create a POST
#   post_uri = uri + 'create'
#   post = Net::HTTP::Post.new post_uri.path
#   post.set_form_data 'some' => 'cool data'
#
#   # perform the POST, the Bundler::URI is always required
#   response http.request post_uri, post
#
# Note that for GET, HEAD and other requests that do not have a body you want
# to use Bundler::URI#request_uri not Bundler::URI#path.  The request_uri contains the query
# params which are sent in the body for other requests.
#
# == TLS/SSL
#
# TLS connections are automatically created depending upon the scheme of the
# Bundler::URI.  TLS connections are automatically verified against the default
# certificate store for your computer.  You can override this by changing
# verify_mode or by specifying an alternate cert_store.
#
# Here are the TLS settings, see the individual methods for documentation:
#
# #certificate        :: This client's certificate
# #ca_file            :: The certificate-authorities
# #ca_path            :: Directory with certificate-authorities
# #cert_store         :: An SSL certificate store
# #ciphers            :: List of SSl ciphers allowed
# #private_key        :: The client's SSL private key
# #reuse_ssl_sessions :: Reuse a previously opened SSL session for a new
#                        connection
# #ssl_timeout        :: Session lifetime
# #ssl_version        :: Which specific SSL version to use
# #verify_callback    :: For server certificate verification
# #verify_depth       :: Depth of certificate verification
# #verify_mode        :: How connections should be verified
#
# == Proxies
#
# A proxy can be set through #proxy= or at initialization time by providing a
# second argument to ::new.  The proxy may be the Bundler::URI of the proxy server or
# <code>:ENV</code> which will consult environment variables.
#
# See #proxy= and #proxy_from_env for details.
#
# == Headers
#
# Headers may be specified for use in every request.  #headers are appended to
# any headers on the request.  #override_headers replace existing headers on
# the request.
#
# The difference between the two can be seen in setting the User-Agent.  Using
# <code>http.headers['User-Agent'] = 'MyUserAgent'</code> will send "Ruby,
# MyUserAgent" while <code>http.override_headers['User-Agent'] =
# 'MyUserAgent'</code> will send "MyUserAgent".
#
# == Tuning
#
# === Segregation
#
# Each Bundler::Persistent::Net::HTTP::Persistent instance has its own pool of connections.  There
# is no sharing with other instances (as was true in earlier versions).
#
# === Idle Timeout
#
# If a connection hasn't been used for this number of seconds it will
# automatically be reset upon the next use to avoid attempting to send to a
# closed connection.  The default value is 5 seconds. nil means no timeout.
# Set through #idle_timeout.
#
# Reducing this value may help avoid the "too many connection resets" error
# when sending non-idempotent requests while increasing this value will cause
# fewer round-trips.
#
# === Read Timeout
#
# The amount of time allowed between reading two chunks from the socket.  Set
# through #read_timeout
#
# === Max Requests
#
# The number of requests that should be made before opening a new connection.
# Typically many keep-alive capable servers tune this to 100 or less, so the
# 101st request will fail with ECONNRESET. If unset (default), this value has
# no effect, if set, connections will be reset on the request after
# max_requests.
#
# === Open Timeout
#
# The amount of time to wait for a connection to be opened.  Set through
# #open_timeout.
#
# === Socket Options
#
# Socket options may be set on newly-created connections.  See #socket_options
# for details.
#
# === Connection Termination
#
# If you are done using the Bundler::Persistent::Net::HTTP::Persistent instance you may shut down
# all the connections in the current thread with #shutdown.  This is not
# recommended for normal use, it should only be used when it will be several
# minutes before you make another HTTP request.
#
# If you are using multiple threads, call #shutdown in each thread when the
# thread is done making requests.  If you don't call shutdown, that's OK.
# Ruby will automatically garbage collect and shutdown your HTTP connections
# when the thread terminates.

class Bundler::Persistent::Net::HTTP::Persistent

  ##
  # The beginning of Time

  EPOCH = Time.at 0 # :nodoc:

  ##
  # Is OpenSSL available?  This test works with autoload

  HAVE_OPENSSL = defined? OpenSSL::SSL # :nodoc:

  ##
  # The default connection pool size is 1/4 the allowed open files
  # (<code>ulimit -n</code>) or 256 if your OS does not support file handle
  # limits (typically windows).

  if Process.const_defined? :RLIMIT_NOFILE
    open_file_limits = Process.getrlimit(Process::RLIMIT_NOFILE)

    # Under JRuby on Windows Process responds to `getrlimit` but returns something that does not match docs
    if open_file_limits.respond_to?(:first)
      DEFAULT_POOL_SIZE = open_file_limits.first / 4
    else
      DEFAULT_POOL_SIZE = 256
    end
  else
    DEFAULT_POOL_SIZE = 256
  end

  ##
  # The version of Bundler::Persistent::Net::HTTP::Persistent you are using

  VERSION = '4.0.0'

  ##
  # Error class for errors raised by Bundler::Persistent::Net::HTTP::Persistent.  Various
  # SystemCallErrors are re-raised with a human-readable message under this
  # class.

  class Error < StandardError; end

  ##
  # Use this method to detect the idle timeout of the host at +uri+.  The
  # value returned can be used to configure #idle_timeout.  +max+ controls the
  # maximum idle timeout to detect.
  #
  # After
  #
  # Idle timeout detection is performed by creating a connection then
  # performing a HEAD request in a loop until the connection terminates
  # waiting one additional second per loop.
  #
  # NOTE:  This may not work on ruby > 1.9.

  def self.detect_idle_timeout uri, max = 10
    uri = Bundler::URI uri unless Bundler::URI::Generic === uri
    uri += '/'

    req = Net::HTTP::Head.new uri.request_uri

    http = new 'net-http-persistent detect_idle_timeout'

    http.connection_for uri do |connection|
      sleep_time = 0

      http = connection.http

      loop do
        response = http.request req

        $stderr.puts "HEAD #{uri} => #{response.code}" if $DEBUG

        unless Net::HTTPOK === response then
          raise Error, "bad response code #{response.code} detecting idle timeout"
        end

        break if sleep_time >= max

        sleep_time += 1

        $stderr.puts "sleeping #{sleep_time}" if $DEBUG
        sleep sleep_time
      end
    end
  rescue
    # ignore StandardErrors, we've probably found the idle timeout.
  ensure
    return sleep_time unless $!
  end

  ##
  # This client's OpenSSL::X509::Certificate

  attr_reader :certificate

  ##
  # For Net::HTTP parity

  alias cert certificate

  ##
  # An SSL certificate authority.  Setting this will set verify_mode to
  # VERIFY_PEER.

  attr_reader :ca_file

  ##
  # A directory of SSL certificates to be used as certificate authorities.
  # Setting this will set verify_mode to VERIFY_PEER.

  attr_reader :ca_path

  ##
  # An SSL certificate store.  Setting this will override the default
  # certificate store.  See verify_mode for more information.

  attr_reader :cert_store

  ##
  # The ciphers allowed for SSL connections

  attr_reader :ciphers

  ##
  # Sends debug_output to this IO via Net::HTTP#set_debug_output.
  #
  # Never use this method in production code, it causes a serious security
  # hole.

  attr_accessor :debug_output

  ##
  # Current connection generation

  attr_reader :generation # :nodoc:

  ##
  # Headers that are added to every request using Net::HTTP#add_field

  attr_reader :headers

  ##
  # Maps host:port to an HTTP version.  This allows us to enable version
  # specific features.

  attr_reader :http_versions

  ##
  # Maximum time an unused connection can remain idle before being
  # automatically closed.

  attr_accessor :idle_timeout

  ##
  # Maximum number of requests on a connection before it is considered expired
  # and automatically closed.

  attr_accessor :max_requests

  ##
  # Number of retries to perform if a request fails.
  #
  # See also #max_retries=, Net::HTTP#max_retries=.

  attr_reader :max_retries

  ##
  # The value sent in the Keep-Alive header.  Defaults to 30.  Not needed for
  # HTTP/1.1 servers.
  #
  # This may not work correctly for HTTP/1.0 servers
  #
  # This method may be removed in a future version as RFC 2616 does not
  # require this header.

  attr_accessor :keep_alive

  ##
  # The name for this collection of persistent connections.

  attr_reader :name

  ##
  # Seconds to wait until a connection is opened.  See Net::HTTP#open_timeout

  attr_accessor :open_timeout

  ##
  # Headers that are added to every request using Net::HTTP#[]=

  attr_reader :override_headers

  ##
  # This client's SSL private key

  attr_reader :private_key

  ##
  # For Net::HTTP parity

  alias key private_key

  ##
  # The URL through which requests will be proxied

  attr_reader :proxy_uri

  ##
  # List of host suffixes which will not be proxied

  attr_reader :no_proxy

  ##
  # Test-only accessor for the connection pool

  attr_reader :pool # :nodoc:

  ##
  # Seconds to wait until reading one block.  See Net::HTTP#read_timeout

  attr_accessor :read_timeout

  ##
  # Seconds to wait until writing one block.  See Net::HTTP#write_timeout

  attr_accessor :write_timeout

  ##
  # By default SSL sessions are reused to avoid extra SSL handshakes.  Set
  # this to false if you have problems communicating with an HTTPS server
  # like:
  #
  #   SSL_connect [...] read finished A: unexpected message (OpenSSL::SSL::SSLError)

  attr_accessor :reuse_ssl_sessions

  ##
  # An array of options for Socket#setsockopt.
  #
  # By default the TCP_NODELAY option is set on sockets.
  #
  # To set additional options append them to this array:
  #
  #   http.socket_options << [Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, 1]

  attr_reader :socket_options

  ##
  # Current SSL connection generation

  attr_reader :ssl_generation # :nodoc:

  ##
  # SSL session lifetime

  attr_reader :ssl_timeout

  ##
  # SSL version to use.
  #
  # By default, the version will be negotiated automatically between client
  # and server.  Ruby 1.9 and newer only. Deprecated since Ruby 2.5.

  attr_reader :ssl_version

  ##
  # Minimum SSL version to use, e.g. :TLS1_1
  #
  # By default, the version will be negotiated automatically between client
  # and server.  Ruby 2.5 and newer only.

  attr_reader :min_version

  ##
  # Maximum SSL version to use, e.g. :TLS1_2
  #
  # By default, the version will be negotiated automatically between client
  # and server.  Ruby 2.5 and newer only.

  attr_reader :max_version

  ##
  # Where this instance's last-use times live in the thread local variables

  attr_reader :timeout_key # :nodoc:

  ##
  # SSL verification callback.  Used when ca_file or ca_path is set.

  attr_reader :verify_callback

  ##
  # Sets the depth of SSL certificate verification

  attr_reader :verify_depth

  ##
  # HTTPS verify mode.  Defaults to OpenSSL::SSL::VERIFY_PEER which verifies
  # the server certificate.
  #
  # If no ca_file, ca_path or cert_store is set the default system certificate
  # store is used.
  #
  # You can use +verify_mode+ to override any default values.

  attr_reader :verify_mode

  ##
  # Creates a new Bundler::Persistent::Net::HTTP::Persistent.
  #
  # Set a +name+ for fun.  Your library name should be good enough, but this
  # otherwise has no purpose.
  #
  # +proxy+ may be set to a Bundler::URI::HTTP or :ENV to pick up proxy options from
  # the environment.  See proxy_from_env for details.
  #
  # In order to use a Bundler::URI for the proxy you may need to do some extra work
  # beyond Bundler::URI parsing if the proxy requires a password:
  #
  #   proxy = Bundler::URI 'http://proxy.example'
  #   proxy.user     = 'AzureDiamond'
  #   proxy.password = 'hunter2'
  #
  # Set +pool_size+ to limit the maximum number of connections allowed.
  # Defaults to 1/4 the number of allowed file handles or 256 if your OS does
  # not support a limit on allowed file handles.  You can have no more than
  # this many threads with active HTTP transactions.

  def initialize name: nil, proxy: nil, pool_size: DEFAULT_POOL_SIZE
    @name = name

    @debug_output     = nil
    @proxy_uri        = nil
    @no_proxy         = []
    @headers          = {}
    @override_headers = {}
    @http_versions    = {}
    @keep_alive       = 30
    @open_timeout     = nil
    @read_timeout     = nil
    @write_timeout    = nil
    @idle_timeout     = 5
    @max_requests     = nil
    @max_retries      = 1
    @socket_options   = []
    @ssl_generation   = 0 # incremented when SSL session variables change

    @socket_options << [Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1] if
      Socket.const_defined? :TCP_NODELAY

    @pool = Bundler::Persistent::Net::HTTP::Persistent::Pool.new size: pool_size do |http_args|
      Bundler::Persistent::Net::HTTP::Persistent::Connection.new Net::HTTP, http_args, @ssl_generation
    end

    @certificate        = nil
    @ca_file            = nil
    @ca_path            = nil
    @ciphers            = nil
    @private_key        = nil
    @ssl_timeout        = nil
    @ssl_version        = nil
    @min_version        = nil
    @max_version        = nil
    @verify_callback    = nil
    @verify_depth       = nil
    @verify_mode        = nil
    @cert_store         = nil

    @generation         = 0 # incremented when proxy Bundler::URI changes

    if HAVE_OPENSSL then
      @verify_mode        = OpenSSL::SSL::VERIFY_PEER
      @reuse_ssl_sessions = OpenSSL::SSL.const_defined? :Session
    end

    self.proxy = proxy if proxy
  end

  ##
  # Sets this client's OpenSSL::X509::Certificate

  def certificate= certificate
    @certificate = certificate

    reconnect_ssl
  end

  # For Net::HTTP parity
  alias cert= certificate=

  ##
  # Sets the SSL certificate authority file.

  def ca_file= file
    @ca_file = file

    reconnect_ssl
  end

  ##
  # Sets the SSL certificate authority path.

  def ca_path= path
    @ca_path = path

    reconnect_ssl
  end

  ##
  # Overrides the default SSL certificate store used for verifying
  # connections.

  def cert_store= store
    @cert_store = store

    reconnect_ssl
  end

  ##
  # The ciphers allowed for SSL connections

  def ciphers= ciphers
    @ciphers = ciphers

    reconnect_ssl
  end

  ##
  # Creates a new connection for +uri+

  def connection_for uri
    use_ssl = uri.scheme.downcase == 'https'

    net_http_args = [uri.hostname, uri.port]

    # I'm unsure if uri.host or uri.hostname should be checked against
    # the proxy bypass list.
    if @proxy_uri and not proxy_bypass? uri.host, uri.port then
      net_http_args.concat @proxy_args
    else
      net_http_args.concat [nil, nil, nil, nil]
    end

    connection = @pool.checkout net_http_args

    http = connection.http

    connection.ressl @ssl_generation if
      connection.ssl_generation != @ssl_generation

    if not http.started? then
      ssl   http if use_ssl
      start http
    elsif expired? connection then
      reset connection
    end

    http.keep_alive_timeout = @idle_timeout  if @idle_timeout
    http.max_retries        = @max_retries   if http.respond_to?(:max_retries=)
    http.read_timeout       = @read_timeout  if @read_timeout
    http.write_timeout      = @write_timeout if
      @write_timeout && http.respond_to?(:write_timeout=)

    return yield connection
  rescue Errno::ECONNREFUSED
    address = http.proxy_address || http.address
    port    = http.proxy_port    || http.port

    raise Error, "connection refused: #{address}:#{port}"
  rescue Errno::EHOSTDOWN
    address = http.proxy_address || http.address
    port    = http.proxy_port    || http.port

    raise Error, "host down: #{address}:#{port}"
  ensure
    @pool.checkin net_http_args
  end

  ##
  # CGI::escape wrapper

  def escape str
    CGI.escape str if str
  end

  ##
  # CGI::unescape wrapper

  def unescape str
    CGI.unescape str if str
  end


  ##
  # Returns true if the connection should be reset due to an idle timeout, or
  # maximum request count, false otherwise.

  def expired? connection
    return true  if     @max_requests && connection.requests >= @max_requests
    return false unless @idle_timeout
    return true  if     @idle_timeout.zero?

    Time.now - connection.last_use > @idle_timeout
  end

  ##
  # Starts the Net::HTTP +connection+

  def start http
    http.set_debug_output @debug_output if @debug_output
    http.open_timeout = @open_timeout if @open_timeout

    http.start

    socket = http.instance_variable_get :@socket

    if socket then # for fakeweb
      @socket_options.each do |option|
        socket.io.setsockopt(*option)
      end
    end
  end

  ##
  # Finishes the Net::HTTP +connection+

  def finish connection
    connection.finish

    connection.http.instance_variable_set :@last_communicated, nil
    connection.http.instance_variable_set :@ssl_session, nil unless
      @reuse_ssl_sessions
  end

  ##
  # Returns the HTTP protocol version for +uri+

  def http_version uri
    @http_versions["#{uri.hostname}:#{uri.port}"]
  end

  ##
  # Adds "http://" to the String +uri+ if it is missing.

  def normalize_uri uri
    (uri =~ /^https?:/) ? uri : "http://#{uri}"
  end

  ##
  # Set the maximum number of retries for a request.
  #
  # Defaults to one retry.
  #
  # Set this to 0 to disable retries.

  def max_retries= retries
    retries = retries.to_int

    raise ArgumentError, "max_retries must be positive" if retries < 0

    @max_retries = retries

    reconnect
  end

  ##
  # Sets this client's SSL private key

  def private_key= key
    @private_key = key

    reconnect_ssl
  end

  # For Net::HTTP parity
  alias key= private_key=

  ##
  # Sets the proxy server.  The +proxy+ may be the Bundler::URI of the proxy server,
  # the symbol +:ENV+ which will read the proxy from the environment or nil to
  # disable use of a proxy.  See #proxy_from_env for details on setting the
  # proxy from the environment.
  #
  # If the proxy Bundler::URI is set after requests have been made, the next request
  # will shut-down and re-open all connections.
  #
  # The +no_proxy+ query parameter can be used to specify hosts which shouldn't
  # be reached via proxy; if set it should be a comma separated list of
  # hostname suffixes, optionally with +:port+ appended, for example
  # <tt>example.com,some.host:8080</tt>.

  def proxy= proxy
    @proxy_uri = case proxy
                 when :ENV      then proxy_from_env
                 when Bundler::URI::HTTP then proxy
                 when nil       then # ignore
                 else raise ArgumentError, 'proxy must be :ENV or a Bundler::URI::HTTP'
                 end

    @no_proxy.clear

    if @proxy_uri then
      @proxy_args = [
        @proxy_uri.hostname,
        @proxy_uri.port,
        unescape(@proxy_uri.user),
        unescape(@proxy_uri.password),
      ]

      @proxy_connection_id = [nil, *@proxy_args].join ':'

      if @proxy_uri.query then
        @no_proxy = CGI.parse(@proxy_uri.query)['no_proxy'].join(',').downcase.split(',').map { |x| x.strip }.reject { |x| x.empty? }
      end
    end

    reconnect
    reconnect_ssl
  end

  ##
  # Creates a Bundler::URI for an HTTP proxy server from ENV variables.
  #
  # If +HTTP_PROXY+ is set a proxy will be returned.
  #
  # If +HTTP_PROXY_USER+ or +HTTP_PROXY_PASS+ are set the Bundler::URI is given the
  # indicated user and password unless HTTP_PROXY contains either of these in
  # the Bundler::URI.
  #
  # The +NO_PROXY+ ENV variable can be used to specify hosts which shouldn't
  # be reached via proxy; if set it should be a comma separated list of
  # hostname suffixes, optionally with +:port+ appended, for example
  # <tt>example.com,some.host:8080</tt>. When set to <tt>*</tt> no proxy will
  # be returned.
  #
  # For Windows users, lowercase ENV variables are preferred over uppercase ENV
  # variables.

  def proxy_from_env
    env_proxy = ENV['http_proxy'] || ENV['HTTP_PROXY']

    return nil if env_proxy.nil? or env_proxy.empty?

    uri = Bundler::URI normalize_uri env_proxy

    env_no_proxy = ENV['no_proxy'] || ENV['NO_PROXY']

    # '*' is special case for always bypass
    return nil if env_no_proxy == '*'

    if env_no_proxy then
      uri.query = "no_proxy=#{escape(env_no_proxy)}"
    end

    unless uri.user or uri.password then
      uri.user     = escape ENV['http_proxy_user'] || ENV['HTTP_PROXY_USER']
      uri.password = escape ENV['http_proxy_pass'] || ENV['HTTP_PROXY_PASS']
    end

    uri
  end

  ##
  # Returns true when proxy should by bypassed for host.

  def proxy_bypass? host, port
    host = host.downcase
    host_port = [host, port].join ':'

    @no_proxy.each do |name|
      return true if host[-name.length, name.length] == name or
         host_port[-name.length, name.length] == name
    end

    false
  end

  ##
  # Forces reconnection of all HTTP connections, including TLS/SSL
  # connections.

  def reconnect
    @generation += 1
  end

  ##
  # Forces reconnection of only TLS/SSL connections.

  def reconnect_ssl
    @ssl_generation += 1
  end

  ##
  # Finishes then restarts the Net::HTTP +connection+

  def reset connection
    http = connection.http

    finish connection

    start http
  rescue Errno::ECONNREFUSED
    e = Error.new "connection refused: #{http.address}:#{http.port}"
    e.set_backtrace $@
    raise e
  rescue Errno::EHOSTDOWN
    e = Error.new "host down: #{http.address}:#{http.port}"
    e.set_backtrace $@
    raise e
  end

  ##
  # Makes a request on +uri+.  If +req+ is nil a Net::HTTP::Get is performed
  # against +uri+.
  #
  # If a block is passed #request behaves like Net::HTTP#request (the body of
  # the response will not have been read).
  #
  # +req+ must be a Net::HTTPGenericRequest subclass (see Net::HTTP for a list).

  def request uri, req = nil, &block
    uri      = Bundler::URI uri
    req      = request_setup req || uri
    response = nil

    connection_for uri do |connection|
      http = connection.http

      begin
        connection.requests += 1

        response = http.request req, &block

        if req.connection_close? or
          (response.http_version <= '1.0' and
            not response.connection_keep_alive?) or
            response.connection_close? then
          finish connection
        end
      rescue Exception # make sure to close the connection when it was interrupted
        finish connection

        raise
      ensure
        connection.last_use = Time.now
      end
    end

    @http_versions["#{uri.hostname}:#{uri.port}"] ||= response.http_version

    response
  end

  ##
  # Creates a GET request if +req_or_uri+ is a Bundler::URI and adds headers to the
  # request.
  #
  # Returns the request.

  def request_setup req_or_uri # :nodoc:
    req = if req_or_uri.respond_to? 'request_uri' then
            Net::HTTP::Get.new req_or_uri.request_uri
          else
            req_or_uri
          end

    @headers.each do |pair|
      req.add_field(*pair)
    end

    @override_headers.each do |name, value|
      req[name] = value
    end

    unless req['Connection'] then
      req.add_field 'Connection', 'keep-alive'
      req.add_field 'Keep-Alive', @keep_alive
    end

    req
  end

  ##
  # Shuts down all connections
  #
  # *NOTE*: Calling shutdown for can be dangerous!
  #
  # If any thread is still using a connection it may cause an error!  Call
  # #shutdown when you are completely done making requests!

  def shutdown
    @pool.shutdown { |http| http.finish }
  end

  ##
  # Enables SSL on +connection+

  def ssl connection
    connection.use_ssl = true

    connection.ciphers     = @ciphers     if @ciphers
    connection.ssl_timeout = @ssl_timeout if @ssl_timeout
    connection.ssl_version = @ssl_version if @ssl_version
    connection.min_version = @min_version if @min_version
    connection.max_version = @max_version if @max_version

    connection.verify_depth = @verify_depth
    connection.verify_mode  = @verify_mode

    if OpenSSL::SSL::VERIFY_PEER == OpenSSL::SSL::VERIFY_NONE and
       not Object.const_defined?(:I_KNOW_THAT_OPENSSL_VERIFY_PEER_EQUALS_VERIFY_NONE_IS_WRONG) then
      warn <<-WARNING
                             !!!SECURITY WARNING!!!

The SSL HTTP connection to:

  #{connection.address}:#{connection.port}

                           !!!MAY NOT BE VERIFIED!!!

On your platform your OpenSSL implementation is broken.

There is no difference between the values of VERIFY_NONE and VERIFY_PEER.

This means that attempting to verify the security of SSL connections may not
work.  This exposes you to man-in-the-middle exploits, snooping on the
contents of your connection and other dangers to the security of your data.

To disable this warning define the following constant at top-level in your
application:

  I_KNOW_THAT_OPENSSL_VERIFY_PEER_EQUALS_VERIFY_NONE_IS_WRONG = nil

      WARNING
    end

    connection.ca_file = @ca_file if @ca_file
    connection.ca_path = @ca_path if @ca_path

    if @ca_file or @ca_path then
      connection.verify_mode = OpenSSL::SSL::VERIFY_PEER
      connection.verify_callback = @verify_callback if @verify_callback
    end

    if @certificate and @private_key then
      connection.cert = @certificate
      connection.key  = @private_key
    end

    connection.cert_store = if @cert_store then
                              @cert_store
                            else
                              store = OpenSSL::X509::Store.new
                              store.set_default_paths
                              store
                            end
  end

  ##
  # SSL session lifetime

  def ssl_timeout= ssl_timeout
    @ssl_timeout = ssl_timeout

    reconnect_ssl
  end

  ##
  # SSL version to use

  def ssl_version= ssl_version
    @ssl_version = ssl_version

    reconnect_ssl
  end

  ##
  # Minimum SSL version to use

  def min_version= min_version
    @min_version = min_version

    reconnect_ssl
  end

  ##
  # maximum SSL version to use

  def max_version= max_version
    @max_version = max_version

    reconnect_ssl
  end

  ##
  # Sets the depth of SSL certificate verification

  def verify_depth= verify_depth
    @verify_depth = verify_depth

    reconnect_ssl
  end

  ##
  # Sets the HTTPS verify mode.  Defaults to OpenSSL::SSL::VERIFY_PEER.
  #
  # Setting this to VERIFY_NONE is a VERY BAD IDEA and should NEVER be used.
  # Securely transfer the correct certificate and update the default
  # certificate store or set the ca file instead.

  def verify_mode= verify_mode
    @verify_mode = verify_mode

    reconnect_ssl
  end

  ##
  # SSL verification callback.

  def verify_callback= callback
    @verify_callback = callback

    reconnect_ssl
  end
end

require_relative 'persistent/connection'
require_relative 'persistent/pool'

PK<H[�	IIFshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/tmpdir/lib/tmpdir.rbnu�[���# frozen_string_literal: true
#
# tmpdir - retrieve temporary directory path
#
# $Id$
#

require_relative '../../fileutils/lib/fileutils'
begin
  require 'etc.so'
rescue LoadError # rescue LoadError for miniruby
end

class Bundler::Dir < Dir

  @systmpdir ||= defined?(Etc.systmpdir) ? Etc.systmpdir : '/tmp'

  ##
  # Returns the operating system's temporary file path.

  def self.tmpdir
    tmp = nil
    ['TMPDIR', 'TMP', 'TEMP', ['system temporary path', @systmpdir], ['/tmp']*2, ['.']*2].each do |name, dir = ENV[name]|
      next if !dir
      dir = File.expand_path(dir)
      stat = File.stat(dir) rescue next
      case
      when !stat.directory?
        warn "#{name} is not a directory: #{dir}"
      when !stat.writable?
        warn "#{name} is not writable: #{dir}"
      when stat.world_writable? && !stat.sticky?
        warn "#{name} is world-writable: #{dir}"
      else
        tmp = dir
        break
      end
    end
    raise ArgumentError, "could not find a temporary directory" unless tmp
    tmp
  end

  # Bundler::Dir.mktmpdir creates a temporary directory.
  #
  # The directory is created with 0700 permission.
  # Application should not change the permission to make the temporary directory accessible from other users.
  #
  # The prefix and suffix of the name of the directory is specified by
  # the optional first argument, <i>prefix_suffix</i>.
  # - If it is not specified or nil, "d" is used as the prefix and no suffix is used.
  # - If it is a string, it is used as the prefix and no suffix is used.
  # - If it is an array, first element is used as the prefix and second element is used as a suffix.
  #
  #  Bundler::Dir.mktmpdir {|dir| dir is ".../d..." }
  #  Bundler::Dir.mktmpdir("foo") {|dir| dir is ".../foo..." }
  #  Bundler::Dir.mktmpdir(["foo", "bar"]) {|dir| dir is ".../foo...bar" }
  #
  # The directory is created under Bundler::Dir.tmpdir or
  # the optional second argument <i>tmpdir</i> if non-nil value is given.
  #
  #  Bundler::Dir.mktmpdir {|dir| dir is "#{Bundler::Dir.tmpdir}/d..." }
  #  Bundler::Dir.mktmpdir(nil, "/var/tmp") {|dir| dir is "/var/tmp/d..." }
  #
  # If a block is given,
  # it is yielded with the path of the directory.
  # The directory and its contents are removed
  # using Bundler::FileUtils.remove_entry before Bundler::Dir.mktmpdir returns.
  # The value of the block is returned.
  #
  #  Bundler::Dir.mktmpdir {|dir|
  #    # use the directory...
  #    open("#{dir}/foo", "w") { ... }
  #  }
  #
  # If a block is not given,
  # The path of the directory is returned.
  # In this case, Bundler::Dir.mktmpdir doesn't remove the directory.
  #
  #  dir = Bundler::Dir.mktmpdir
  #  begin
  #    # use the directory...
  #    open("#{dir}/foo", "w") { ... }
  #  ensure
  #    # remove the directory.
  #    Bundler::FileUtils.remove_entry dir
  #  end
  #
  def self.mktmpdir(prefix_suffix=nil, *rest, **options)
    base = nil
    path = Tmpname.create(prefix_suffix || "d", *rest, **options) {|p, _, _, d|
      base = d
      mkdir(p, 0700)
    }
    if block_given?
      begin
        yield path.dup
      ensure
        unless base
          stat = File.stat(File.dirname(path))
          if stat.world_writable? and !stat.sticky?
            raise ArgumentError, "parent directory is world writable but not sticky"
          end
        end
        Bundler::FileUtils.remove_entry path
      end
    else
      path
    end
  end

  module Tmpname # :nodoc:
    module_function

    def tmpdir
      Bundler::Dir.tmpdir
    end

    UNUSABLE_CHARS = "^,-.0-9A-Z_a-z~"

    class << (RANDOM = Random.new)
      MAX = 36**6 # < 0x100000000
      def next
        rand(MAX).to_s(36)
      end
    end
    private_constant :RANDOM

    def create(basename, tmpdir=nil, max_try: nil, **opts)
      origdir = tmpdir
      tmpdir ||= tmpdir()
      n = nil
      prefix, suffix = basename
      prefix = (String.try_convert(prefix) or
                raise ArgumentError, "unexpected prefix: #{prefix.inspect}")
      prefix = prefix.delete(UNUSABLE_CHARS)
      suffix &&= (String.try_convert(suffix) or
                  raise ArgumentError, "unexpected suffix: #{suffix.inspect}")
      suffix &&= suffix.delete(UNUSABLE_CHARS)
      begin
        t = Time.now.strftime("%Y%m%d")
        path = "#{prefix}#{t}-#{$$}-#{RANDOM.next}"\
               "#{n ? %[-#{n}] : ''}#{suffix||''}"
        path = File.join(tmpdir, path)
        yield(path, n, opts, origdir)
      rescue Errno::EEXIST
        n ||= 0
        n += 1
        retry if !max_try or n < max_try
        raise "cannot generate temporary name using `#{basename}' under `#{tmpdir}'"
      end
      path
    end
  end
end
PK<H[U�#�||Sshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/errors.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # An error that occurred during the resolution process
  class ResolverError < StandardError; end

  # An error caused by searching for a dependency that is completely unknown,
  # i.e. has no versions available whatsoever.
  class NoSuchDependencyError < ResolverError
    # @return [Object] the dependency that could not be found
    attr_accessor :dependency

    # @return [Array<Object>] the specifications that depended upon {#dependency}
    attr_accessor :required_by

    # Initializes a new error with the given missing dependency.
    # @param [Object] dependency @see {#dependency}
    # @param [Array<Object>] required_by @see {#required_by}
    def initialize(dependency, required_by = [])
      @dependency = dependency
      @required_by = required_by.uniq
      super()
    end

    # The error message for the missing dependency, including the specifications
    # that had this dependency.
    def message
      sources = required_by.map { |r| "`#{r}`" }.join(' and ')
      message = "Unable to find a specification for `#{dependency}`"
      message += " depended upon by #{sources}" unless sources.empty?
      message
    end
  end

  # An error caused by attempting to fulfil a dependency that was circular
  #
  # @note This exception will be thrown if and only if a {Vertex} is added to a
  #   {DependencyGraph} that has a {DependencyGraph::Vertex#path_to?} an
  #   existing {DependencyGraph::Vertex}
  class CircularDependencyError < ResolverError
    # [Set<Object>] the dependencies responsible for causing the error
    attr_reader :dependencies

    # Initializes a new error with the given circular vertices.
    # @param [Array<DependencyGraph::Vertex>] vertices the vertices in the dependency
    #   that caused the error
    def initialize(vertices)
      super "There is a circular dependency between #{vertices.map(&:name).join(' and ')}"
      @dependencies = vertices.map { |vertex| vertex.payload.possibilities.last }.to_set
    end
  end

  # An error caused by conflicts in version
  class VersionConflict < ResolverError
    # @return [{String => Resolution::Conflict}] the conflicts that caused
    #   resolution to fail
    attr_reader :conflicts

    # @return [SpecificationProvider] the specification provider used during
    #   resolution
    attr_reader :specification_provider

    # Initializes a new error with the given version conflicts.
    # @param [{String => Resolution::Conflict}] conflicts see {#conflicts}
    # @param [SpecificationProvider] specification_provider see {#specification_provider}
    def initialize(conflicts, specification_provider)
      pairs = []
      conflicts.values.flat_map(&:requirements).each do |conflicting|
        conflicting.each do |source, conflict_requirements|
          conflict_requirements.each do |c|
            pairs << [c, source]
          end
        end
      end

      super "Unable to satisfy the following requirements:\n\n" \
        "#{pairs.map { |r, d| "- `#{r}` required by `#{d}`" }.join("\n")}"

      @conflicts = conflicts
      @specification_provider = specification_provider
    end

    require_relative 'delegates/specification_provider'
    include Delegates::SpecificationProvider

    # @return [String] An error message that includes requirement trees,
    #   which is much more detailed & customizable than the default message
    # @param [Hash] opts the options to create a message with.
    # @option opts [String] :solver_name The user-facing name of the solver
    # @option opts [String] :possibility_type The generic name of a possibility
    # @option opts [Proc] :reduce_trees A proc that reduced the list of requirement trees
    # @option opts [Proc] :printable_requirement A proc that pretty-prints requirements
    # @option opts [Proc] :additional_message_for_conflict A proc that appends additional
    #   messages for each conflict
    # @option opts [Proc] :version_for_spec A proc that returns the version number for a
    #   possibility
    def message_with_trees(opts = {})
      solver_name = opts.delete(:solver_name) { self.class.name.split('::').first }
      possibility_type = opts.delete(:possibility_type) { 'possibility named' }
      reduce_trees = opts.delete(:reduce_trees) { proc { |trees| trees.uniq.sort_by(&:to_s) } }
      printable_requirement = opts.delete(:printable_requirement) { proc { |req| req.to_s } }
      additional_message_for_conflict = opts.delete(:additional_message_for_conflict) { proc {} }
      version_for_spec = opts.delete(:version_for_spec) { proc(&:to_s) }
      incompatible_version_message_for_conflict = opts.delete(:incompatible_version_message_for_conflict) do
        proc do |name, _conflict|
          %(#{solver_name} could not find compatible versions for #{possibility_type} "#{name}":)
        end
      end

      conflicts.sort.reduce(''.dup) do |o, (name, conflict)|
        o << "\n" << incompatible_version_message_for_conflict.call(name, conflict) << "\n"
        if conflict.locked_requirement
          o << %(  In snapshot (#{name_for_locking_dependency_source}):\n)
          o << %(    #{printable_requirement.call(conflict.locked_requirement)}\n)
          o << %(\n)
        end
        o << %(  In #{name_for_explicit_dependency_source}:\n)
        trees = reduce_trees.call(conflict.requirement_trees)

        o << trees.map do |tree|
          t = ''.dup
          depth = 2
          tree.each do |req|
            t << '  ' * depth << printable_requirement.call(req)
            unless tree.last == req
              if spec = conflict.activated_by_name[name_for(req)]
                t << %( was resolved to #{version_for_spec.call(spec)}, which)
              end
              t << %( depends on)
            end
            t << %(\n)
            depth += 1
          end
          t
        end.join("\n")

        additional_message_for_conflict.call(o, name, conflict)

        o
      end.strip
    end
  end
end
PK<H[c�Ou((Rshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/state.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # A state that a {Resolution} can be in
  # @attr [String] name the name of the current requirement
  # @attr [Array<Object>] requirements currently unsatisfied requirements
  # @attr [DependencyGraph] activated the graph of activated dependencies
  # @attr [Object] requirement the current requirement
  # @attr [Object] possibilities the possibilities to satisfy the current requirement
  # @attr [Integer] depth the depth of the resolution
  # @attr [Hash] conflicts unresolved conflicts, indexed by dependency name
  # @attr [Array<UnwindDetails>] unused_unwind_options unwinds for previous conflicts that weren't explored
  ResolutionState = Struct.new(
    :name,
    :requirements,
    :activated,
    :requirement,
    :possibilities,
    :depth,
    :conflicts,
    :unused_unwind_options
  )

  class ResolutionState
    # Returns an empty resolution state
    # @return [ResolutionState] an empty state
    def self.empty
      new(nil, [], DependencyGraph.new, nil, nil, 0, {}, [])
    end
  end

  # A state that encapsulates a set of {#requirements} with an {Array} of
  # possibilities
  class DependencyState < ResolutionState
    # Removes a possibility from `self`
    # @return [PossibilityState] a state with a single possibility,
    #  the possibility that was removed from `self`
    def pop_possibility_state
      PossibilityState.new(
        name,
        requirements.dup,
        activated,
        requirement,
        [possibilities.pop],
        depth + 1,
        conflicts.dup,
        unused_unwind_options.dup
      ).tap do |state|
        state.activated.tag(state)
      end
    end
  end

  # A state that encapsulates a single possibility to fulfill the given
  # {#requirement}
  class PossibilityState < ResolutionState
  end
end
PK<H[��=����Wshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  class Resolver
    # A specific resolution from a given {Resolver}
    class Resolution
      # A conflict that the resolution process encountered
      # @attr [Object] requirement the requirement that immediately led to the conflict
      # @attr [{String,Nil=>[Object]}] requirements the requirements that caused the conflict
      # @attr [Object, nil] existing the existing spec that was in conflict with
      #   the {#possibility}
      # @attr [Object] possibility_set the set of specs that was unable to be
      #   activated due to a conflict.
      # @attr [Object] locked_requirement the relevant locking requirement.
      # @attr [Array<Array<Object>>] requirement_trees the different requirement
      #   trees that led to every requirement for the conflicting name.
      # @attr [{String=>Object}] activated_by_name the already-activated specs.
      # @attr [Object] underlying_error an error that has occurred during resolution, and
      #    will be raised at the end of it if no resolution is found.
      Conflict = Struct.new(
        :requirement,
        :requirements,
        :existing,
        :possibility_set,
        :locked_requirement,
        :requirement_trees,
        :activated_by_name,
        :underlying_error
      )

      class Conflict
        # @return [Object] a spec that was unable to be activated due to a conflict
        def possibility
          possibility_set && possibility_set.latest_version
        end
      end

      # A collection of possibility states that share the same dependencies
      # @attr [Array] dependencies the dependencies for this set of possibilities
      # @attr [Array] possibilities the possibilities
      PossibilitySet = Struct.new(:dependencies, :possibilities)

      class PossibilitySet
        # String representation of the possibility set, for debugging
        def to_s
          "[#{possibilities.join(', ')}]"
        end

        # @return [Object] most up-to-date dependency in the possibility set
        def latest_version
          possibilities.last
        end
      end

      # Details of the state to unwind to when a conflict occurs, and the cause of the unwind
      # @attr [Integer] state_index the index of the state to unwind to
      # @attr [Object] state_requirement the requirement of the state we're unwinding to
      # @attr [Array] requirement_tree for the requirement we're relaxing
      # @attr [Array] conflicting_requirements the requirements that combined to cause the conflict
      # @attr [Array] requirement_trees for the conflict
      # @attr [Array] requirements_unwound_to_instead array of unwind requirements that were chosen over this unwind
      UnwindDetails = Struct.new(
        :state_index,
        :state_requirement,
        :requirement_tree,
        :conflicting_requirements,
        :requirement_trees,
        :requirements_unwound_to_instead
      )

      class UnwindDetails
        include Comparable

        # We compare UnwindDetails when choosing which state to unwind to. If
        # two options have the same state_index we prefer the one most
        # removed from a requirement that caused the conflict. Both options
        # would unwind to the same state, but a `grandparent` option will
        # filter out fewer of its possibilities after doing so - where a state
        # is both a `parent` and a `grandparent` to requirements that have
        # caused a conflict this is the correct behaviour.
        # @param [UnwindDetail] other UnwindDetail to be compared
        # @return [Integer] integer specifying ordering
        def <=>(other)
          if state_index > other.state_index
            1
          elsif state_index == other.state_index
            reversed_requirement_tree_index <=> other.reversed_requirement_tree_index
          else
            -1
          end
        end

        # @return [Integer] index of state requirement in reversed requirement tree
        #    (the conflicting requirement itself will be at position 0)
        def reversed_requirement_tree_index
          @reversed_requirement_tree_index ||=
            if state_requirement
              requirement_tree.reverse.index(state_requirement)
            else
              999_999
            end
        end

        # @return [Boolean] where the requirement of the state we're unwinding
        #    to directly caused the conflict. Note: in this case, it is
        #    impossible for the state we're unwinding to to be a parent of
        #    any of the other conflicting requirements (or we would have
        #    circularity)
        def unwinding_to_primary_requirement?
          requirement_tree.last == state_requirement
        end

        # @return [Array] array of sub-dependencies to avoid when choosing a
        #    new possibility for the state we've unwound to. Only relevant for
        #    non-primary unwinds
        def sub_dependencies_to_avoid
          @requirements_to_avoid ||=
            requirement_trees.map do |tree|
              index = tree.index(state_requirement)
              tree[index + 1] if index
            end.compact
        end

        # @return [Array] array of all the requirements that led to the need for
        #    this unwind
        def all_requirements
          @all_requirements ||= requirement_trees.flatten(1)
        end
      end

      # @return [SpecificationProvider] the provider that knows about
      #   dependencies, requirements, specifications, versions, etc.
      attr_reader :specification_provider

      # @return [UI] the UI that knows how to communicate feedback about the
      #   resolution process back to the user
      attr_reader :resolver_ui

      # @return [DependencyGraph] the base dependency graph to which
      #   dependencies should be 'locked'
      attr_reader :base

      # @return [Array] the dependencies that were explicitly required
      attr_reader :original_requested

      # Initializes a new resolution.
      # @param [SpecificationProvider] specification_provider
      #   see {#specification_provider}
      # @param [UI] resolver_ui see {#resolver_ui}
      # @param [Array] requested see {#original_requested}
      # @param [DependencyGraph] base see {#base}
      def initialize(specification_provider, resolver_ui, requested, base)
        @specification_provider = specification_provider
        @resolver_ui = resolver_ui
        @original_requested = requested
        @base = base
        @states = []
        @iteration_counter = 0
        @parents_of = Hash.new { |h, k| h[k] = [] }
      end

      # Resolves the {#original_requested} dependencies into a full dependency
      #   graph
      # @raise [ResolverError] if successful resolution is impossible
      # @return [DependencyGraph] the dependency graph of successfully resolved
      #   dependencies
      def resolve
        start_resolution

        while state
          break if !state.requirement && state.requirements.empty?
          indicate_progress
          if state.respond_to?(:pop_possibility_state) # DependencyState
            debug(depth) { "Creating possibility state for #{requirement} (#{possibilities.count} remaining)" }
            state.pop_possibility_state.tap do |s|
              if s
                states.push(s)
                activated.tag(s)
              end
            end
          end
          process_topmost_state
        end

        resolve_activated_specs
      ensure
        end_resolution
      end

      # @return [Integer] the number of resolver iterations in between calls to
      #   {#resolver_ui}'s {UI#indicate_progress} method
      attr_accessor :iteration_rate
      private :iteration_rate

      # @return [Time] the time at which resolution began
      attr_accessor :started_at
      private :started_at

      # @return [Array<ResolutionState>] the stack of states for the resolution
      attr_accessor :states
      private :states

      private

      # Sets up the resolution process
      # @return [void]
      def start_resolution
        @started_at = Time.now

        push_initial_state

        debug { "Starting resolution (#{@started_at})\nUser-requested dependencies: #{original_requested}" }
        resolver_ui.before_resolution
      end

      def resolve_activated_specs
        activated.vertices.each do |_, vertex|
          next unless vertex.payload

          latest_version = vertex.payload.possibilities.reverse_each.find do |possibility|
            vertex.requirements.all? { |req| requirement_satisfied_by?(req, activated, possibility) }
          end

          activated.set_payload(vertex.name, latest_version)
        end
        activated.freeze
      end

      # Ends the resolution process
      # @return [void]
      def end_resolution
        resolver_ui.after_resolution
        debug do
          "Finished resolution (#{@iteration_counter} steps) " \
          "(Took #{(ended_at = Time.now) - @started_at} seconds) (#{ended_at})"
        end
        debug { 'Unactivated: ' + Hash[activated.vertices.reject { |_n, v| v.payload }].keys.join(', ') } if state
        debug { 'Activated: ' + Hash[activated.vertices.select { |_n, v| v.payload }].keys.join(', ') } if state
      end

      require_relative 'state'
      require_relative 'modules/specification_provider'

      require_relative 'delegates/resolution_state'
      require_relative 'delegates/specification_provider'

      include Bundler::Molinillo::Delegates::ResolutionState
      include Bundler::Molinillo::Delegates::SpecificationProvider

      # Processes the topmost available {RequirementState} on the stack
      # @return [void]
      def process_topmost_state
        if possibility
          attempt_to_activate
        else
          create_conflict
          unwind_for_conflict
        end
      rescue CircularDependencyError => underlying_error
        create_conflict(underlying_error)
        unwind_for_conflict
      end

      # @return [Object] the current possibility that the resolution is trying
      #   to activate
      def possibility
        possibilities.last
      end

      # @return [RequirementState] the current state the resolution is
      #   operating upon
      def state
        states.last
      end

      # Creates and pushes the initial state for the resolution, based upon the
      # {#requested} dependencies
      # @return [void]
      def push_initial_state
        graph = DependencyGraph.new.tap do |dg|
          original_requested.each do |requested|
            vertex = dg.add_vertex(name_for(requested), nil, true)
            vertex.explicit_requirements << requested
          end
          dg.tag(:initial_state)
        end

        push_state_for_requirements(original_requested, true, graph)
      end

      # Unwinds the states stack because a conflict has been encountered
      # @return [void]
      def unwind_for_conflict
        details_for_unwind = build_details_for_unwind
        unwind_options = unused_unwind_options
        debug(depth) { "Unwinding for conflict: #{requirement} to #{details_for_unwind.state_index / 2}" }
        conflicts.tap do |c|
          sliced_states = states.slice!((details_for_unwind.state_index + 1)..-1)
          raise_error_unless_state(c)
          activated.rewind_to(sliced_states.first || :initial_state) if sliced_states
          state.conflicts = c
          state.unused_unwind_options = unwind_options
          filter_possibilities_after_unwind(details_for_unwind)
          index = states.size - 1
          @parents_of.each { |_, a| a.reject! { |i| i >= index } }
          state.unused_unwind_options.reject! { |uw| uw.state_index >= index }
        end
      end

      # Raises a VersionConflict error, or any underlying error, if there is no
      # current state
      # @return [void]
      def raise_error_unless_state(conflicts)
        return if state

        error = conflicts.values.map(&:underlying_error).compact.first
        raise error || VersionConflict.new(conflicts, specification_provider)
      end

      # @return [UnwindDetails] Details of the nearest index to which we could unwind
      def build_details_for_unwind
        # Get the possible unwinds for the current conflict
        current_conflict = conflicts[name]
        binding_requirements = binding_requirements_for_conflict(current_conflict)
        unwind_details = unwind_options_for_requirements(binding_requirements)

        last_detail_for_current_unwind = unwind_details.sort.last
        current_detail = last_detail_for_current_unwind

        # Look for past conflicts that could be unwound to affect the
        # requirement tree for the current conflict
        all_reqs = last_detail_for_current_unwind.all_requirements
        all_reqs_size = all_reqs.size
        relevant_unused_unwinds = unused_unwind_options.select do |alternative|
          diff_reqs = all_reqs - alternative.requirements_unwound_to_instead
          next if diff_reqs.size == all_reqs_size
          # Find the highest index unwind whilst looping through
          current_detail = alternative if alternative > current_detail
          alternative
        end

        # Add the current unwind options to the `unused_unwind_options` array.
        # The "used" option will be filtered out during `unwind_for_conflict`.
        state.unused_unwind_options += unwind_details.reject { |detail| detail.state_index == -1 }

        # Update the requirements_unwound_to_instead on any relevant unused unwinds
        relevant_unused_unwinds.each do |d|
          (d.requirements_unwound_to_instead << current_detail.state_requirement).uniq!
        end
        unwind_details.each do |d|
          (d.requirements_unwound_to_instead << current_detail.state_requirement).uniq!
        end

        current_detail
      end

      # @param [Array<Object>] binding_requirements array of requirements that combine to create a conflict
      # @return [Array<UnwindDetails>] array of UnwindDetails that have a chance
      #    of resolving the passed requirements
      def unwind_options_for_requirements(binding_requirements)
        unwind_details = []

        trees = []
        binding_requirements.reverse_each do |r|
          partial_tree = [r]
          trees << partial_tree
          unwind_details << UnwindDetails.new(-1, nil, partial_tree, binding_requirements, trees, [])

          # If this requirement has alternative possibilities, check if any would
          # satisfy the other requirements that created this conflict
          requirement_state = find_state_for(r)
          if conflict_fixing_possibilities?(requirement_state, binding_requirements)
            unwind_details << UnwindDetails.new(
              states.index(requirement_state),
              r,
              partial_tree,
              binding_requirements,
              trees,
              []
            )
          end

          # Next, look at the parent of this requirement, and check if the requirement
          # could have been avoided if an alternative PossibilitySet had been chosen
          parent_r = parent_of(r)
          next if parent_r.nil?
          partial_tree.unshift(parent_r)
          requirement_state = find_state_for(parent_r)
          if requirement_state.possibilities.any? { |set| !set.dependencies.include?(r) }
            unwind_details << UnwindDetails.new(
              states.index(requirement_state),
              parent_r,
              partial_tree,
              binding_requirements,
              trees,
              []
            )
          end

          # Finally, look at the grandparent and up of this requirement, looking
          # for any possibilities that wouldn't create their parent requirement
          grandparent_r = parent_of(parent_r)
          until grandparent_r.nil?
            partial_tree.unshift(grandparent_r)
            requirement_state = find_state_for(grandparent_r)
            if requirement_state.possibilities.any? { |set| !set.dependencies.include?(parent_r) }
              unwind_details << UnwindDetails.new(
                states.index(requirement_state),
                grandparent_r,
                partial_tree,
                binding_requirements,
                trees,
                []
              )
            end
            parent_r = grandparent_r
            grandparent_r = parent_of(parent_r)
          end
        end

        unwind_details
      end

      # @param [DependencyState] state
      # @param [Array] binding_requirements array of requirements
      # @return [Boolean] whether or not the given state has any possibilities
      #    that could satisfy the given requirements
      def conflict_fixing_possibilities?(state, binding_requirements)
        return false unless state

        state.possibilities.any? do |possibility_set|
          possibility_set.possibilities.any? do |poss|
            possibility_satisfies_requirements?(poss, binding_requirements)
          end
        end
      end

      # Filter's a state's possibilities to remove any that would not fix the
      # conflict we've just rewound from
      # @param [UnwindDetails] unwind_details details of the conflict just
      #   unwound from
      # @return [void]
      def filter_possibilities_after_unwind(unwind_details)
        return unless state && !state.possibilities.empty?

        if unwind_details.unwinding_to_primary_requirement?
          filter_possibilities_for_primary_unwind(unwind_details)
        else
          filter_possibilities_for_parent_unwind(unwind_details)
        end
      end

      # Filter's a state's possibilities to remove any that would not satisfy
      # the requirements in the conflict we've just rewound from
      # @param [UnwindDetails] unwind_details details of the conflict just unwound from
      # @return [void]
      def filter_possibilities_for_primary_unwind(unwind_details)
        unwinds_to_state = unused_unwind_options.select { |uw| uw.state_index == unwind_details.state_index }
        unwinds_to_state << unwind_details
        unwind_requirement_sets = unwinds_to_state.map(&:conflicting_requirements)

        state.possibilities.reject! do |possibility_set|
          possibility_set.possibilities.none? do |poss|
            unwind_requirement_sets.any? do |requirements|
              possibility_satisfies_requirements?(poss, requirements)
            end
          end
        end
      end

      # @param [Object] possibility a single possibility
      # @param [Array] requirements an array of requirements
      # @return [Boolean] whether the possibility satisfies all of the
      #    given requirements
      def possibility_satisfies_requirements?(possibility, requirements)
        name = name_for(possibility)

        activated.tag(:swap)
        activated.set_payload(name, possibility) if activated.vertex_named(name)
        satisfied = requirements.all? { |r| requirement_satisfied_by?(r, activated, possibility) }
        activated.rewind_to(:swap)

        satisfied
      end

      # Filter's a state's possibilities to remove any that would (eventually)
      # create a requirement in the conflict we've just rewound from
      # @param [UnwindDetails] unwind_details details of the conflict just unwound from
      # @return [void]
      def filter_possibilities_for_parent_unwind(unwind_details)
        unwinds_to_state = unused_unwind_options.select { |uw| uw.state_index == unwind_details.state_index }
        unwinds_to_state << unwind_details

        primary_unwinds = unwinds_to_state.select(&:unwinding_to_primary_requirement?).uniq
        parent_unwinds = unwinds_to_state.uniq - primary_unwinds

        allowed_possibility_sets = primary_unwinds.flat_map do |unwind|
          states[unwind.state_index].possibilities.select do |possibility_set|
            possibility_set.possibilities.any? do |poss|
              possibility_satisfies_requirements?(poss, unwind.conflicting_requirements)
            end
          end
        end

        requirements_to_avoid = parent_unwinds.flat_map(&:sub_dependencies_to_avoid)

        state.possibilities.reject! do |possibility_set|
          !allowed_possibility_sets.include?(possibility_set) &&
            (requirements_to_avoid - possibility_set.dependencies).empty?
        end
      end

      # @param [Conflict] conflict
      # @return [Array] minimal array of requirements that would cause the passed
      #    conflict to occur.
      def binding_requirements_for_conflict(conflict)
        return [conflict.requirement] if conflict.possibility.nil?

        possible_binding_requirements = conflict.requirements.values.flatten(1).uniq

        # When there's a `CircularDependency` error the conflicting requirement
        # (the one causing the circular) won't be `conflict.requirement`
        # (which won't be for the right state, because we won't have created it,
        # because it's circular).
        # We need to make sure we have that requirement in the conflict's list,
        # otherwise we won't be able to unwind properly, so we just return all
        # the requirements for the conflict.
        return possible_binding_requirements if conflict.underlying_error

        possibilities = search_for(conflict.requirement)

        # If all the requirements together don't filter out all possibilities,
        # then the only two requirements we need to consider are the initial one
        # (where the dependency's version was first chosen) and the last
        if binding_requirement_in_set?(nil, possible_binding_requirements, possibilities)
          return [conflict.requirement, requirement_for_existing_name(name_for(conflict.requirement))].compact
        end

        # Loop through the possible binding requirements, removing each one
        # that doesn't bind. Use a `reverse_each` as we want the earliest set of
        # binding requirements, and don't use `reject!` as we wish to refine the
        # array *on each iteration*.
        binding_requirements = possible_binding_requirements.dup
        possible_binding_requirements.reverse_each do |req|
          next if req == conflict.requirement
          unless binding_requirement_in_set?(req, binding_requirements, possibilities)
            binding_requirements -= [req]
          end
        end

        binding_requirements
      end

      # @param [Object] requirement we wish to check
      # @param [Array] possible_binding_requirements array of requirements
      # @param [Array] possibilities array of possibilities the requirements will be used to filter
      # @return [Boolean] whether or not the given requirement is required to filter
      #    out all elements of the array of possibilities.
      def binding_requirement_in_set?(requirement, possible_binding_requirements, possibilities)
        possibilities.any? do |poss|
          possibility_satisfies_requirements?(poss, possible_binding_requirements - [requirement])
        end
      end

      # @param [Object] requirement
      # @return [Object] the requirement that led to `requirement` being added
      #   to the list of requirements.
      def parent_of(requirement)
        return unless requirement
        return unless index = @parents_of[requirement].last
        return unless parent_state = @states[index]
        parent_state.requirement
      end

      # @param [String] name
      # @return [Object] the requirement that led to a version of a possibility
      #   with the given name being activated.
      def requirement_for_existing_name(name)
        return nil unless vertex = activated.vertex_named(name)
        return nil unless vertex.payload
        states.find { |s| s.name == name }.requirement
      end

      # @param [Object] requirement
      # @return [ResolutionState] the state whose `requirement` is the given
      #   `requirement`.
      def find_state_for(requirement)
        return nil unless requirement
        states.find { |i| requirement == i.requirement }
      end

      # @param [Object] underlying_error
      # @return [Conflict] a {Conflict} that reflects the failure to activate
      #   the {#possibility} in conjunction with the current {#state}
      def create_conflict(underlying_error = nil)
        vertex = activated.vertex_named(name)
        locked_requirement = locked_requirement_named(name)

        requirements = {}
        unless vertex.explicit_requirements.empty?
          requirements[name_for_explicit_dependency_source] = vertex.explicit_requirements
        end
        requirements[name_for_locking_dependency_source] = [locked_requirement] if locked_requirement
        vertex.incoming_edges.each do |edge|
          (requirements[edge.origin.payload.latest_version] ||= []).unshift(edge.requirement)
        end

        activated_by_name = {}
        activated.each { |v| activated_by_name[v.name] = v.payload.latest_version if v.payload }
        conflicts[name] = Conflict.new(
          requirement,
          requirements,
          vertex.payload && vertex.payload.latest_version,
          possibility,
          locked_requirement,
          requirement_trees,
          activated_by_name,
          underlying_error
        )
      end

      # @return [Array<Array<Object>>] The different requirement
      #   trees that led to every requirement for the current spec.
      def requirement_trees
        vertex = activated.vertex_named(name)
        vertex.requirements.map { |r| requirement_tree_for(r) }
      end

      # @param [Object] requirement
      # @return [Array<Object>] the list of requirements that led to
      #   `requirement` being required.
      def requirement_tree_for(requirement)
        tree = []
        while requirement
          tree.unshift(requirement)
          requirement = parent_of(requirement)
        end
        tree
      end

      # Indicates progress roughly once every second
      # @return [void]
      def indicate_progress
        @iteration_counter += 1
        @progress_rate ||= resolver_ui.progress_rate
        if iteration_rate.nil?
          if Time.now - started_at >= @progress_rate
            self.iteration_rate = @iteration_counter
          end
        end

        if iteration_rate && (@iteration_counter % iteration_rate) == 0
          resolver_ui.indicate_progress
        end
      end

      # Calls the {#resolver_ui}'s {UI#debug} method
      # @param [Integer] depth the depth of the {#states} stack
      # @param [Proc] block a block that yields a {#to_s}
      # @return [void]
      def debug(depth = 0, &block)
        resolver_ui.debug(depth, &block)
      end

      # Attempts to activate the current {#possibility}
      # @return [void]
      def attempt_to_activate
        debug(depth) { 'Attempting to activate ' + possibility.to_s }
        existing_vertex = activated.vertex_named(name)
        if existing_vertex.payload
          debug(depth) { "Found existing spec (#{existing_vertex.payload})" }
          attempt_to_filter_existing_spec(existing_vertex)
        else
          latest = possibility.latest_version
          possibility.possibilities.select! do |possibility|
            requirement_satisfied_by?(requirement, activated, possibility)
          end
          if possibility.latest_version.nil?
            # ensure there's a possibility for better error messages
            possibility.possibilities << latest if latest
            create_conflict
            unwind_for_conflict
          else
            activate_new_spec
          end
        end
      end

      # Attempts to update the existing vertex's `PossibilitySet` with a filtered version
      # @return [void]
      def attempt_to_filter_existing_spec(vertex)
        filtered_set = filtered_possibility_set(vertex)
        if !filtered_set.possibilities.empty?
          activated.set_payload(name, filtered_set)
          new_requirements = requirements.dup
          push_state_for_requirements(new_requirements, false)
        else
          create_conflict
          debug(depth) { "Unsatisfied by existing spec (#{vertex.payload})" }
          unwind_for_conflict
        end
      end

      # Generates a filtered version of the existing vertex's `PossibilitySet` using the
      # current state's `requirement`
      # @param [Object] vertex existing vertex
      # @return [PossibilitySet] filtered possibility set
      def filtered_possibility_set(vertex)
        PossibilitySet.new(vertex.payload.dependencies, vertex.payload.possibilities & possibility.possibilities)
      end

      # @param [String] requirement_name the spec name to search for
      # @return [Object] the locked spec named `requirement_name`, if one
      #   is found on {#base}
      def locked_requirement_named(requirement_name)
        vertex = base.vertex_named(requirement_name)
        vertex && vertex.payload
      end

      # Add the current {#possibility} to the dependency graph of the current
      # {#state}
      # @return [void]
      def activate_new_spec
        conflicts.delete(name)
        debug(depth) { "Activated #{name} at #{possibility}" }
        activated.set_payload(name, possibility)
        require_nested_dependencies_for(possibility)
      end

      # Requires the dependencies that the recently activated spec has
      # @param [Object] possibility_set the PossibilitySet that has just been
      #   activated
      # @return [void]
      def require_nested_dependencies_for(possibility_set)
        nested_dependencies = dependencies_for(possibility_set.latest_version)
        debug(depth) { "Requiring nested dependencies (#{nested_dependencies.join(', ')})" }
        nested_dependencies.each do |d|
          activated.add_child_vertex(name_for(d), nil, [name_for(possibility_set.latest_version)], d)
          parent_index = states.size - 1
          parents = @parents_of[d]
          parents << parent_index if parents.empty?
        end

        push_state_for_requirements(requirements + nested_dependencies, !nested_dependencies.empty?)
      end

      # Pushes a new {DependencyState} that encapsulates both existing and new
      # requirements
      # @param [Array] new_requirements
      # @param [Boolean] requires_sort
      # @param [Object] new_activated
      # @return [void]
      def push_state_for_requirements(new_requirements, requires_sort = true, new_activated = activated)
        new_requirements = sort_dependencies(new_requirements.uniq, new_activated, conflicts) if requires_sort
        new_requirement = nil
        loop do
          new_requirement = new_requirements.shift
          break if new_requirement.nil? || states.none? { |s| s.requirement == new_requirement }
        end
        new_name = new_requirement ? name_for(new_requirement) : ''.freeze
        possibilities = possibilities_for_requirement(new_requirement)
        handle_missing_or_push_dependency_state DependencyState.new(
          new_name, new_requirements, new_activated,
          new_requirement, possibilities, depth, conflicts.dup, unused_unwind_options.dup
        )
      end

      # Checks a proposed requirement with any existing locked requirement
      # before generating an array of possibilities for it.
      # @param [Object] requirement the proposed requirement
      # @param [Object] activated
      # @return [Array] possibilities
      def possibilities_for_requirement(requirement, activated = self.activated)
        return [] unless requirement
        if locked_requirement_named(name_for(requirement))
          return locked_requirement_possibility_set(requirement, activated)
        end

        group_possibilities(search_for(requirement))
      end

      # @param [Object] requirement the proposed requirement
      # @param [Object] activated
      # @return [Array] possibility set containing only the locked requirement, if any
      def locked_requirement_possibility_set(requirement, activated = self.activated)
        all_possibilities = search_for(requirement)
        locked_requirement = locked_requirement_named(name_for(requirement))

        # Longwinded way to build a possibilities array with either the locked
        # requirement or nothing in it. Required, since the API for
        # locked_requirement isn't guaranteed.
        locked_possibilities = all_possibilities.select do |possibility|
          requirement_satisfied_by?(locked_requirement, activated, possibility)
        end

        group_possibilities(locked_possibilities)
      end

      # Build an array of PossibilitySets, with each element representing a group of
      # dependency versions that all have the same sub-dependency version constraints
      # and are contiguous.
      # @param [Array] possibilities an array of possibilities
      # @return [Array<PossibilitySet>] an array of possibility sets
      def group_possibilities(possibilities)
        possibility_sets = []
        current_possibility_set = nil

        possibilities.reverse_each do |possibility|
          dependencies = dependencies_for(possibility)
          if current_possibility_set && dependencies_equal?(current_possibility_set.dependencies, dependencies)
            current_possibility_set.possibilities.unshift(possibility)
          else
            possibility_sets.unshift(PossibilitySet.new(dependencies, [possibility]))
            current_possibility_set = possibility_sets.first
          end
        end

        possibility_sets
      end

      # Pushes a new {DependencyState}.
      # If the {#specification_provider} says to
      # {SpecificationProvider#allow_missing?} that particular requirement, and
      # there are no possibilities for that requirement, then `state` is not
      # pushed, and the vertex in {#activated} is removed, and we continue
      # resolving the remaining requirements.
      # @param [DependencyState] state
      # @return [void]
      def handle_missing_or_push_dependency_state(state)
        if state.requirement && state.possibilities.empty? && allow_missing?(state.requirement)
          state.activated.detach_vertex_named(state.name)
          push_state_for_requirements(state.requirements.dup, false, state.activated)
        else
          states.push(state).tap { activated.tag(state) }
        end
      end
    end
  end
end
PK=H[�ۦ���mshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  module Delegates
    # Delegates all {Bundler::Molinillo::SpecificationProvider} methods to a
    # `#specification_provider` property.
    module SpecificationProvider
      # (see Bundler::Molinillo::SpecificationProvider#search_for)
      def search_for(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.search_for(dependency)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#dependencies_for)
      def dependencies_for(specification)
        with_no_such_dependency_error_handling do
          specification_provider.dependencies_for(specification)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#requirement_satisfied_by?)
      def requirement_satisfied_by?(requirement, activated, spec)
        with_no_such_dependency_error_handling do
          specification_provider.requirement_satisfied_by?(requirement, activated, spec)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#dependencies_equal?)
      def dependencies_equal?(dependencies, other_dependencies)
        with_no_such_dependency_error_handling do
          specification_provider.dependencies_equal?(dependencies, other_dependencies)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#name_for)
      def name_for(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.name_for(dependency)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#name_for_explicit_dependency_source)
      def name_for_explicit_dependency_source
        with_no_such_dependency_error_handling do
          specification_provider.name_for_explicit_dependency_source
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#name_for_locking_dependency_source)
      def name_for_locking_dependency_source
        with_no_such_dependency_error_handling do
          specification_provider.name_for_locking_dependency_source
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#sort_dependencies)
      def sort_dependencies(dependencies, activated, conflicts)
        with_no_such_dependency_error_handling do
          specification_provider.sort_dependencies(dependencies, activated, conflicts)
        end
      end

      # (see Bundler::Molinillo::SpecificationProvider#allow_missing?)
      def allow_missing?(dependency)
        with_no_such_dependency_error_handling do
          specification_provider.allow_missing?(dependency)
        end
      end

      private

      # Ensures any raised {NoSuchDependencyError} has its
      # {NoSuchDependencyError#required_by} set.
      # @yield
      def with_no_such_dependency_error_handling
        yield
      rescue NoSuchDependencyError => error
        if state
          vertex = activated.vertex_named(name_for(error.dependency))
          error.required_by += vertex.incoming_edges.map { |e| e.origin.name }
          error.required_by << name_for_explicit_dependency_source unless vertex.explicit_requirements.empty?
        end
        raise
      end
    end
  end
end
PK=H[9DD�??gshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # @!visibility private
  module Delegates
    # Delegates all {Bundler::Molinillo::ResolutionState} methods to a `#state` property.
    module ResolutionState
      # (see Bundler::Molinillo::ResolutionState#name)
      def name
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.name
      end

      # (see Bundler::Molinillo::ResolutionState#requirements)
      def requirements
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.requirements
      end

      # (see Bundler::Molinillo::ResolutionState#activated)
      def activated
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.activated
      end

      # (see Bundler::Molinillo::ResolutionState#requirement)
      def requirement
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.requirement
      end

      # (see Bundler::Molinillo::ResolutionState#possibilities)
      def possibilities
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.possibilities
      end

      # (see Bundler::Molinillo::ResolutionState#depth)
      def depth
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.depth
      end

      # (see Bundler::Molinillo::ResolutionState#conflicts)
      def conflicts
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.conflicts
      end

      # (see Bundler::Molinillo::ResolutionState#unused_unwind_options)
      def unused_unwind_options
        current_state = state || Bundler::Molinillo::ResolutionState.empty
        current_state.unused_unwind_options
      end
    end
  end
end
PK=H[.��"Yshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # The version of Bundler::Molinillo.
  VERSION = '0.7.0'.freeze
end
PK=H[~��Ushare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rbnu�[���# frozen_string_literal: true

require_relative 'dependency_graph'

module Bundler::Molinillo
  # This class encapsulates a dependency resolver.
  # The resolver is responsible for determining which set of dependencies to
  # activate, with feedback from the {#specification_provider}
  #
  #
  class Resolver
    require_relative 'resolution'

    # @return [SpecificationProvider] the specification provider used
    #   in the resolution process
    attr_reader :specification_provider

    # @return [UI] the UI module used to communicate back to the user
    #   during the resolution process
    attr_reader :resolver_ui

    # Initializes a new resolver.
    # @param  [SpecificationProvider] specification_provider
    #   see {#specification_provider}
    # @param  [UI] resolver_ui
    #   see {#resolver_ui}
    def initialize(specification_provider, resolver_ui)
      @specification_provider = specification_provider
      @resolver_ui = resolver_ui
    end

    # Resolves the requested dependencies into a {DependencyGraph},
    # locking to the base dependency graph (if specified)
    # @param [Array] requested an array of 'requested' dependencies that the
    #   {#specification_provider} can understand
    # @param [DependencyGraph,nil] base the base dependency graph to which
    #   dependencies should be 'locked'
    def resolve(requested, base = DependencyGraph.new)
      Resolution.new(specification_provider,
                     resolver_ui,
                     requested,
                     base).
        resolve
    end
  end
end
PK=H[+��4��Wshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # Conveys information about the resolution process to a user.
  module UI
    # The {IO} object that should be used to print output. `STDOUT`, by default.
    #
    # @return [IO]
    def output
      STDOUT
    end

    # Called roughly every {#progress_rate}, this method should convey progress
    # to the user.
    #
    # @return [void]
    def indicate_progress
      output.print '.' unless debug?
    end

    # How often progress should be conveyed to the user via
    # {#indicate_progress}, in seconds. A third of a second, by default.
    #
    # @return [Float]
    def progress_rate
      0.33
    end

    # Called before resolution begins.
    #
    # @return [void]
    def before_resolution
      output.print 'Resolving dependencies...'
    end

    # Called after resolution ends (either successfully or with an error).
    # By default, prints a newline.
    #
    # @return [void]
    def after_resolution
      output.puts
    end

    # Conveys debug information to the user.
    #
    # @param [Integer] depth the current depth of the resolution process.
    # @return [void]
    def debug(depth = 0)
      if debug?
        debug_info = yield
        debug_info = debug_info.inspect unless debug_info.is_a?(String)
        debug_info = debug_info.split("\n").map { |s| ":#{depth.to_s.rjust 4}: #{s}" }
        output.puts debug_info
      end
    end

    # Whether or not debug messages should be printed.
    # By default, whether or not the `MOLINILLO_DEBUG` environment variable is
    # set.
    #
    # @return [Boolean]
    def debug?
      return @debug_mode if defined?(@debug_mode)
      @debug_mode = ENV['MOLINILLO_DEBUG']
    end
  end
end
PK=H[!gpt[[kshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  # Provides information about specifications and dependencies to the resolver,
  # allowing the {Resolver} class to remain generic while still providing power
  # and flexibility.
  #
  # This module contains the methods that users of Bundler::Molinillo must to implement,
  # using knowledge of their own model classes.
  module SpecificationProvider
    # Search for the specifications that match the given dependency.
    # The specifications in the returned array will be considered in reverse
    # order, so the latest version ought to be last.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `dependency` parameter.
    #
    # @param [Object] dependency
    # @return [Array<Object>] the specifications that satisfy the given
    #   `dependency`.
    def search_for(dependency)
      []
    end

    # Returns the dependencies of `specification`.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `specification` parameter.
    #
    # @param [Object] specification
    # @return [Array<Object>] the dependencies that are required by the given
    #   `specification`.
    def dependencies_for(specification)
      []
    end

    # Determines whether the given `requirement` is satisfied by the given
    # `spec`, in the context of the current `activated` dependency graph.
    #
    # @param [Object] requirement
    # @param [DependencyGraph] activated the current dependency graph in the
    #   resolution process.
    # @param [Object] spec
    # @return [Boolean] whether `requirement` is satisfied by `spec` in the
    #   context of the current `activated` dependency graph.
    def requirement_satisfied_by?(requirement, activated, spec)
      true
    end

    # Determines whether two arrays of dependencies are equal, and thus can be
    # grouped.
    #
    # @param [Array<Object>] dependencies
    # @param [Array<Object>] other_dependencies
    # @return [Boolean] whether `dependencies` and `other_dependencies` should
    #   be considered equal.
    def dependencies_equal?(dependencies, other_dependencies)
      dependencies == other_dependencies
    end

    # Returns the name for the given `dependency`.
    # @note This method should be 'pure', i.e. the return value should depend
    #   only on the `dependency` parameter.
    #
    # @param [Object] dependency
    # @return [String] the name for the given `dependency`.
    def name_for(dependency)
      dependency.to_s
    end

    # @return [String] the name of the source of explicit dependencies, i.e.
    #   those passed to {Resolver#resolve} directly.
    def name_for_explicit_dependency_source
      'user-specified dependency'
    end

    # @return [String] the name of the source of 'locked' dependencies, i.e.
    #   those passed to {Resolver#resolve} directly as the `base`
    def name_for_locking_dependency_source
      'Lockfile'
    end

    # Sort dependencies so that the ones that are easiest to resolve are first.
    # Easiest to resolve is (usually) defined by:
    #   1) Is this dependency already activated?
    #   2) How relaxed are the requirements?
    #   3) Are there any conflicts for this dependency?
    #   4) How many possibilities are there to satisfy this dependency?
    #
    # @param [Array<Object>] dependencies
    # @param [DependencyGraph] activated the current dependency graph in the
    #   resolution process.
    # @param [{String => Array<Conflict>}] conflicts
    # @return [Array<Object>] a sorted copy of `dependencies`.
    def sort_dependencies(dependencies, activated, conflicts)
      dependencies.sort_by do |dependency|
        name = name_for(dependency)
        [
          activated.vertex_named(name).payload ? 0 : 1,
          conflicts[name] ? 0 : 1,
        ]
      end
    end

    # Returns whether this dependency, which has no possible matching
    # specifications, can safely be ignored.
    #
    # @param [Object] dependency
    # @return [Boolean] whether this dependency can safely be skipped.
    def allow_missing?(dependency)
      false
    end
  end
end
PK=H[�	?=WWishare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#set_payload
    class SetPayload < Action # :nodoc:
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :set_payload
      end

      # (see Action#up)
      def up(graph)
        vertex = graph.vertex_named(name)
        @old_payload = vertex.payload
        vertex.payload = payload
      end

      # (see Action#down)
      def down(graph)
        graph.vertex_named(name).payload = @old_payload
      end

      # @!group SetPayload

      # @return [String] the name of the vertex
      attr_reader :name

      # @return [Object] the payload for the vertex
      attr_reader :payload

      # Initialize an action to add set the payload for a vertex in a dependency
      # graph
      # @param [String] name the name of the vertex
      # @param [Object] payload the payload for the vertex
      def initialize(name, payload)
        @name = name
        @payload = payload
      end
    end
  end
end
PK=H[@G�{��dshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  class DependencyGraph
    # An action that modifies a {DependencyGraph} that is reversible.
    # @abstract
    class Action
      # rubocop:disable Lint/UnusedMethodArgument

      # @return [Symbol] The name of the action.
      def self.action_name
        raise 'Abstract'
      end

      # Performs the action on the given graph.
      # @param  [DependencyGraph] graph the graph to perform the action on.
      # @return [Void]
      def up(graph)
        raise 'Abstract'
      end

      # Reverses the action on the given graph.
      # @param  [DependencyGraph] graph the graph to reverse the action on.
      # @return [Void]
      def down(graph)
        raise 'Abstract'
      end

      # @return [Action,Nil] The previous action
      attr_accessor :previous

      # @return [Action,Nil] The next action
      attr_accessor :next
    end
  end
end
PK=H[Ի�HHdshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rbnu�[���# frozen_string_literal: true

module Bundler::Molinillo
  class DependencyGraph
    # A vertex in a {DependencyGraph} that encapsulates a {#name} and a
    # {#payload}
    class Vertex
      # @return [String] the name of the vertex
      attr_accessor :name

      # @return [Object] the payload the vertex holds
      attr_accessor :payload

      # @return [Array<Object>] the explicit requirements that required
      #   this vertex
      attr_reader :explicit_requirements

      # @return [Boolean] whether the vertex is considered a root vertex
      attr_accessor :root
      alias root? root

      # Initializes a vertex with the given name and payload.
      # @param [String] name see {#name}
      # @param [Object] payload see {#payload}
      def initialize(name, payload)
        @name = name.frozen? ? name : name.dup.freeze
        @payload = payload
        @explicit_requirements = []
        @outgoing_edges = []
        @incoming_edges = []
      end

      # @return [Array<Object>] all of the requirements that required
      #   this vertex
      def requirements
        (incoming_edges.map(&:requirement) + explicit_requirements).uniq
      end

      # @return [Array<Edge>] the edges of {#graph} that have `self` as their
      #   {Edge#origin}
      attr_accessor :outgoing_edges

      # @return [Array<Edge>] the edges of {#graph} that have `self` as their
      #   {Edge#destination}
      attr_accessor :incoming_edges

      # @return [Array<Vertex>] the vertices of {#graph} that have an edge with
      #   `self` as their {Edge#destination}
      def predecessors
        incoming_edges.map(&:origin)
      end

      # @return [Set<Vertex>] the vertices of {#graph} where `self` is a
      #   {#descendent?}
      def recursive_predecessors
        _recursive_predecessors
      end

      # @param [Set<Vertex>] vertices the set to add the predecessors to
      # @return [Set<Vertex>] the vertices of {#graph} where `self` is a
      #   {#descendent?}
      def _recursive_predecessors(vertices = new_vertex_set)
        incoming_edges.each do |edge|
          vertex = edge.origin
          next unless vertices.add?(vertex)
          vertex._recursive_predecessors(vertices)
        end

        vertices
      end
      protected :_recursive_predecessors

      # @return [Array<Vertex>] the vertices of {#graph} that have an edge with
      #   `self` as their {Edge#origin}
      def successors
        outgoing_edges.map(&:destination)
      end

      # @return [Set<Vertex>] the vertices of {#graph} where `self` is an
      #   {#ancestor?}
      def recursive_successors
        _recursive_successors
      end

      # @param [Set<Vertex>] vertices the set to add the successors to
      # @return [Set<Vertex>] the vertices of {#graph} where `self` is an
      #   {#ancestor?}
      def _recursive_successors(vertices = new_vertex_set)
        outgoing_edges.each do |edge|
          vertex = edge.destination
          next unless vertices.add?(vertex)
          vertex._recursive_successors(vertices)
        end

        vertices
      end
      protected :_recursive_successors

      # @return [String] a string suitable for debugging
      def inspect
        "#{self.class}:#{name}(#{payload.inspect})"
      end

      # @return [Boolean] whether the two vertices are equal, determined
      #   by a recursive traversal of each {Vertex#successors}
      def ==(other)
        return true if equal?(other)
        shallow_eql?(other) &&
          successors.to_set == other.successors.to_set
      end

      # @param  [Vertex] other the other vertex to compare to
      # @return [Boolean] whether the two vertices are equal, determined
      #   solely by {#name} and {#payload} equality
      def shallow_eql?(other)
        return true if equal?(other)
        other &&
          name == other.name &&
          payload == other.payload
      end

      alias eql? ==

      # @return [Fixnum] a hash for the vertex based upon its {#name}
      def hash
        name.hash
      end

      # Is there a path from `self` to `other` following edges in the
      # dependency graph?
      # @return whether there is a path following edges within this {#graph}
      def path_to?(other)
        _path_to?(other)
      end

      alias descendent? path_to?

      # @param [Vertex] other the vertex to check if there's a path to
      # @param [Set<Vertex>] visited the vertices of {#graph} that have been visited
      # @return [Boolean] whether there is a path to `other` from `self`
      def _path_to?(other, visited = new_vertex_set)
        return false unless visited.add?(self)
        return true if equal?(other)
        successors.any? { |v| v._path_to?(other, visited) }
      end
      protected :_path_to?

      # Is there a path from `other` to `self` following edges in the
      # dependency graph?
      # @return whether there is a path following edges within this {#graph}
      def ancestor?(other)
        other.path_to?(self)
      end

      alias is_reachable_from? ancestor?

      def new_vertex_set
        require 'set'
        Set.new
      end
      private :new_vertex_set
    end
  end
end
PK=H[�X�Acchshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#add_vertex)
    class AddVertex < Action # :nodoc:
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        if existing = graph.vertices[name]
          @existing_payload = existing.payload
          @existing_root = existing.root
        end
        vertex = existing || Vertex.new(name, payload)
        graph.vertices[vertex.name] = vertex
        vertex.payload ||= payload
        vertex.root ||= root
        vertex
      end

      # (see Action#down)
      def down(graph)
        if defined?(@existing_payload)
          vertex = graph.vertices[name]
          vertex.payload = @existing_payload
          vertex.root = @existing_root
        else
          graph.vertices.delete(name)
        end
      end

      # @!group AddVertex

      # @return [String] the name of the vertex
      attr_reader :name

      # @return [Object] the payload for the vertex
      attr_reader :payload

      # @return [Boolean] whether the vertex is root or not
      attr_reader :root

      # Initialize an action to add a vertex to a dependency graph
      # @param [String] name the name of the vertex
      # @param [Object] payload the payload for the vertex
      # @param [Boolean] root whether the vertex is root or not
      def initialize(name, payload, root)
        @name = name
        @payload = payload
        @root = root
      end
    end
  end
end
PK=H[�.mV��ashare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#tag
    class Tag < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :tag
      end

      # (see Action#up)
      def up(graph)
      end

      # (see Action#down)
      def down(graph)
      end

      # @!group Tag

      # @return [Object] An opaque tag
      attr_reader :tag

      # Initialize an action to tag a state of a dependency graph
      # @param [Object] tag an opaque tag
      def initialize(tag)
        @tag = tag
      end
    end
  end
end
PK=H[���D""ishare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#delete_edge)
    class DeleteEdge < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :delete_edge
      end

      # (see Action#up)
      def up(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges.delete(edge)
        edge.destination.incoming_edges.delete(edge)
      end

      # (see Action#down)
      def down(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges << edge
        edge.destination.incoming_edges << edge
        edge
      end

      # @!group DeleteEdge

      # @return [String] the name of the origin of the edge
      attr_reader :origin_name

      # @return [String] the name of the destination of the edge
      attr_reader :destination_name

      # @return [Object] the requirement that the edge represents
      attr_reader :requirement

      # @param  [DependencyGraph] graph the graph to find vertices from
      # @return [Edge] The edge this action adds
      def make_edge(graph)
        Edge.new(
          graph.vertex_named(origin_name),
          graph.vertex_named(destination_name),
          requirement
        )
      end

      # Initialize an action to add an edge to a dependency graph
      # @param [String] origin_name the name of the origin of the edge
      # @param [String] destination_name the name of the destination of the edge
      # @param [Object] requirement the requirement that the edge represents
      def initialize(origin_name, destination_name, requirement)
        @origin_name = origin_name
        @destination_name = destination_name
        @requirement = requirement
      end
    end
  end
end
PK=H[5	�ashare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rbnu�[���# frozen_string_literal: true

require_relative 'add_edge_no_circular'
require_relative 'add_vertex'
require_relative 'delete_edge'
require_relative 'detach_vertex_named'
require_relative 'set_payload'
require_relative 'tag'

module Bundler::Molinillo
  class DependencyGraph
    # A log for dependency graph actions
    class Log
      # Initializes an empty log
      def initialize
        @current_action = @first_action = nil
      end

      # @!macro [new] action
      #   {include:DependencyGraph#$0}
      #   @param [Graph] graph the graph to perform the action on
      #   @param (see DependencyGraph#$0)
      #   @return (see DependencyGraph#$0)

      # @macro action
      def tag(graph, tag)
        push_action(graph, Tag.new(tag))
      end

      # @macro action
      def add_vertex(graph, name, payload, root)
        push_action(graph, AddVertex.new(name, payload, root))
      end

      # @macro action
      def detach_vertex_named(graph, name)
        push_action(graph, DetachVertexNamed.new(name))
      end

      # @macro action
      def add_edge_no_circular(graph, origin, destination, requirement)
        push_action(graph, AddEdgeNoCircular.new(origin, destination, requirement))
      end

      # {include:DependencyGraph#delete_edge}
      # @param [Graph] graph the graph to perform the action on
      # @param [String] origin_name
      # @param [String] destination_name
      # @param [Object] requirement
      # @return (see DependencyGraph#delete_edge)
      def delete_edge(graph, origin_name, destination_name, requirement)
        push_action(graph, DeleteEdge.new(origin_name, destination_name, requirement))
      end

      # @macro action
      def set_payload(graph, name, payload)
        push_action(graph, SetPayload.new(name, payload))
      end

      # Pops the most recent action from the log and undoes the action
      # @param [DependencyGraph] graph
      # @return [Action] the action that was popped off the log
      def pop!(graph)
        return unless action = @current_action
        unless @current_action = action.previous
          @first_action = nil
        end
        action.down(graph)
        action
      end

      extend Enumerable

      # @!visibility private
      # Enumerates each action in the log
      # @yield [Action]
      def each
        return enum_for unless block_given?
        action = @first_action
        loop do
          break unless action
          yield action
          action = action.next
        end
        self
      end

      # @!visibility private
      # Enumerates each action in the log in reverse order
      # @yield [Action]
      def reverse_each
        return enum_for(:reverse_each) unless block_given?
        action = @current_action
        loop do
          break unless action
          yield action
          action = action.previous
        end
        self
      end

      # @macro action
      def rewind_to(graph, tag)
        loop do
          action = pop!(graph)
          raise "No tag #{tag.inspect} found" unless action
          break if action.class.action_name == :tag && action.tag == tag
        end
      end

      private

      # Adds the given action to the log, running the action
      # @param [DependencyGraph] graph
      # @param [Action] action
      # @return The value returned by `action.up`
      def push_action(graph, action)
        action.previous = @current_action
        @current_action.next = action if @current_action
        @current_action = action
        @first_action ||= action
        action.up(graph)
      end
    end
  end
end
PK=H[:ʘ!��qshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # @see DependencyGraph#detach_vertex_named
    class DetachVertexNamed < Action
      # @!group Action

      # (see Action#name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        return [] unless @vertex = graph.vertices.delete(name)

        removed_vertices = [@vertex]
        @vertex.outgoing_edges.each do |e|
          v = e.destination
          v.incoming_edges.delete(e)
          if !v.root? && v.incoming_edges.empty?
            removed_vertices.concat graph.detach_vertex_named(v.name)
          end
        end

        @vertex.incoming_edges.each do |e|
          v = e.origin
          v.outgoing_edges.delete(e)
        end

        removed_vertices
      end

      # (see Action#down)
      def down(graph)
        return unless @vertex
        graph.vertices[@vertex.name] = @vertex
        @vertex.outgoing_edges.each do |e|
          e.destination.incoming_edges << e
        end
        @vertex.incoming_edges.each do |e|
          e.origin.outgoing_edges << e
        end
      end

      # @!group DetachVertexNamed

      # @return [String] the name of the vertex to detach
      attr_reader :name

      # Initialize an action to detach a vertex from a dependency graph
      # @param [String] name the name of the vertex to detach
      def initialize(name)
        @name = name
      end
    end
  end
end
PK=H[D�Njoorshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rbnu�[���# frozen_string_literal: true

require_relative 'action'
module Bundler::Molinillo
  class DependencyGraph
    # @!visibility private
    # (see DependencyGraph#add_edge_no_circular)
    class AddEdgeNoCircular < Action
      # @!group Action

      # (see Action.action_name)
      def self.action_name
        :add_vertex
      end

      # (see Action#up)
      def up(graph)
        edge = make_edge(graph)
        edge.origin.outgoing_edges << edge
        edge.destination.incoming_edges << edge
        edge
      end

      # (see Action#down)
      def down(graph)
        edge = make_edge(graph)
        delete_first(edge.origin.outgoing_edges, edge)
        delete_first(edge.destination.incoming_edges, edge)
      end

      # @!group AddEdgeNoCircular

      # @return [String] the name of the origin of the edge
      attr_reader :origin

      # @return [String] the name of the destination of the edge
      attr_reader :destination

      # @return [Object] the requirement that the edge represents
      attr_reader :requirement

      # @param  [DependencyGraph] graph the graph to find vertices from
      # @return [Edge] The edge this action adds
      def make_edge(graph)
        Edge.new(graph.vertex_named(origin), graph.vertex_named(destination), requirement)
      end

      # Initialize an action to add an edge to a dependency graph
      # @param [String] origin the name of the origin of the edge
      # @param [String] destination the name of the destination of the edge
      # @param [Object] requirement the requirement that the edge represents
      def initialize(origin, destination, requirement)
        @origin = origin
        @destination = destination
        @requirement = requirement
      end

      private

      def delete_first(array, item)
        return unless index = array.index(item)
        array.delete_at(index)
      end
    end
  end
end
PK=H[���� � ]share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rbnu�[���# frozen_string_literal: true

require 'tsort'

require_relative 'dependency_graph/log'
require_relative 'dependency_graph/vertex'

module Bundler::Molinillo
  # A directed acyclic graph that is tuned to hold named dependencies
  class DependencyGraph
    include Enumerable

    # Enumerates through the vertices of the graph.
    # @return [Array<Vertex>] The graph's vertices.
    def each
      return vertices.values.each unless block_given?
      vertices.values.each { |v| yield v }
    end

    include TSort

    # @!visibility private
    alias tsort_each_node each

    # @!visibility private
    def tsort_each_child(vertex, &block)
      vertex.successors.each(&block)
    end

    # Topologically sorts the given vertices.
    # @param [Enumerable<Vertex>] vertices the vertices to be sorted, which must
    #   all belong to the same graph.
    # @return [Array<Vertex>] The sorted vertices.
    def self.tsort(vertices)
      TSort.tsort(
        lambda { |b| vertices.each(&b) },
        lambda { |v, &b| (v.successors & vertices).each(&b) }
      )
    end

    # A directed edge of a {DependencyGraph}
    # @attr [Vertex] origin The origin of the directed edge
    # @attr [Vertex] destination The destination of the directed edge
    # @attr [Object] requirement The requirement the directed edge represents
    Edge = Struct.new(:origin, :destination, :requirement)

    # @return [{String => Vertex}] the vertices of the dependency graph, keyed
    #   by {Vertex#name}
    attr_reader :vertices

    # @return [Log] the op log for this graph
    attr_reader :log

    # Initializes an empty dependency graph
    def initialize
      @vertices = {}
      @log = Log.new
    end

    # Tags the current state of the dependency as the given tag
    # @param  [Object] tag an opaque tag for the current state of the graph
    # @return [Void]
    def tag(tag)
      log.tag(self, tag)
    end

    # Rewinds the graph to the state tagged as `tag`
    # @param  [Object] tag the tag to rewind to
    # @return [Void]
    def rewind_to(tag)
      log.rewind_to(self, tag)
    end

    # Initializes a copy of a {DependencyGraph}, ensuring that all {#vertices}
    # are properly copied.
    # @param [DependencyGraph] other the graph to copy.
    def initialize_copy(other)
      super
      @vertices = {}
      @log = other.log.dup
      traverse = lambda do |new_v, old_v|
        return if new_v.outgoing_edges.size == old_v.outgoing_edges.size
        old_v.outgoing_edges.each do |edge|
          destination = add_vertex(edge.destination.name, edge.destination.payload)
          add_edge_no_circular(new_v, destination, edge.requirement)
          traverse.call(destination, edge.destination)
        end
      end
      other.vertices.each do |name, vertex|
        new_vertex = add_vertex(name, vertex.payload, vertex.root?)
        new_vertex.explicit_requirements.replace(vertex.explicit_requirements)
        traverse.call(new_vertex, vertex)
      end
    end

    # @return [String] a string suitable for debugging
    def inspect
      "#{self.class}:#{vertices.values.inspect}"
    end

    # @param [Hash] options options for dot output.
    # @return [String] Returns a dot format representation of the graph
    def to_dot(options = {})
      edge_label = options.delete(:edge_label)
      raise ArgumentError, "Unknown options: #{options.keys}" unless options.empty?

      dot_vertices = []
      dot_edges = []
      vertices.each do |n, v|
        dot_vertices << "  #{n} [label=\"{#{n}|#{v.payload}}\"]"
        v.outgoing_edges.each do |e|
          label = edge_label ? edge_label.call(e) : e.requirement
          dot_edges << "  #{e.origin.name} -> #{e.destination.name} [label=#{label.to_s.dump}]"
        end
      end

      dot_vertices.uniq!
      dot_vertices.sort!
      dot_edges.uniq!
      dot_edges.sort!

      dot = dot_vertices.unshift('digraph G {').push('') + dot_edges.push('}')
      dot.join("\n")
    end

    # @param [DependencyGraph] other
    # @return [Boolean] whether the two dependency graphs are equal, determined
    #   by a recursive traversal of each {#root_vertices} and its
    #   {Vertex#successors}
    def ==(other)
      return false unless other
      return true if equal?(other)
      vertices.each do |name, vertex|
        other_vertex = other.vertex_named(name)
        return false unless other_vertex
        return false unless vertex.payload == other_vertex.payload
        return false unless other_vertex.successors.to_set == vertex.successors.to_set
      end
    end

    # @param [String] name
    # @param [Object] payload
    # @param [Array<String>] parent_names
    # @param [Object] requirement the requirement that is requiring the child
    # @return [void]
    def add_child_vertex(name, payload, parent_names, requirement)
      root = !parent_names.delete(nil) { true }
      vertex = add_vertex(name, payload, root)
      vertex.explicit_requirements << requirement if root
      parent_names.each do |parent_name|
        parent_vertex = vertex_named(parent_name)
        add_edge(parent_vertex, vertex, requirement)
      end
      vertex
    end

    # Adds a vertex with the given name, or updates the existing one.
    # @param [String] name
    # @param [Object] payload
    # @return [Vertex] the vertex that was added to `self`
    def add_vertex(name, payload, root = false)
      log.add_vertex(self, name, payload, root)
    end

    # Detaches the {#vertex_named} `name` {Vertex} from the graph, recursively
    # removing any non-root vertices that were orphaned in the process
    # @param [String] name
    # @return [Array<Vertex>] the vertices which have been detached
    def detach_vertex_named(name)
      log.detach_vertex_named(self, name)
    end

    # @param [String] name
    # @return [Vertex,nil] the vertex with the given name
    def vertex_named(name)
      vertices[name]
    end

    # @param [String] name
    # @return [Vertex,nil] the root vertex with the given name
    def root_vertex_named(name)
      vertex = vertex_named(name)
      vertex if vertex && vertex.root?
    end

    # Adds a new {Edge} to the dependency graph
    # @param [Vertex] origin
    # @param [Vertex] destination
    # @param [Object] requirement the requirement that this edge represents
    # @return [Edge] the added edge
    def add_edge(origin, destination, requirement)
      if destination.path_to?(origin)
        raise CircularDependencyError.new(path(destination, origin))
      end
      add_edge_no_circular(origin, destination, requirement)
    end

    # Deletes an {Edge} from the dependency graph
    # @param [Edge] edge
    # @return [Void]
    def delete_edge(edge)
      log.delete_edge(self, edge.origin.name, edge.destination.name, edge.requirement)
    end

    # Sets the payload of the vertex with the given name
    # @param [String] name the name of the vertex
    # @param [Object] payload the payload
    # @return [Void]
    def set_payload(name, payload)
      log.set_payload(self, name, payload)
    end

    private

    # Adds a new {Edge} to the dependency graph without checking for
    # circularity.
    # @param (see #add_edge)
    # @return (see #add_edge)
    def add_edge_no_circular(origin, destination, requirement)
      log.add_edge_no_circular(self, origin.name, destination.name, requirement)
    end

    # Returns the path between two vertices
    # @raise [ArgumentError] if there is no path between the vertices
    # @param [Vertex] from
    # @param [Vertex] to
    # @return [Array<Vertex>] the shortest path from `from` to `to`
    def path(from, to)
      distances = Hash.new(vertices.size + 1)
      distances[from.name] = 0
      predecessors = {}
      each do |vertex|
        vertex.successors.each do |successor|
          if distances[successor.name] > distances[vertex.name] + 1
            distances[successor.name] = distances[vertex.name] + 1
            predecessors[successor] = vertex
          end
        end
      end

      path = [to]
      while before = predecessors[to]
        path << before
        to = before
        break if to == from
      end

      unless path.last.equal?(from)
        raise ArgumentError, "There is no path from #{from.name} to #{to.name}"
      end

      path.reverse
    end
  end
end
PK=H[l��HYYLshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo.rbnu�[���# frozen_string_literal: true

require_relative 'molinillo/gem_metadata'
require_relative 'molinillo/errors'
require_relative 'molinillo/resolver'
require_relative 'molinillo/modules/ui'
require_relative 'molinillo/modules/specification_provider'

# Bundler::Molinillo is a generic dependency resolution algorithm.
module Bundler::Molinillo
end
PK=H[�wL{{Eshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ldap.rbnu�[���# frozen_string_literal: false
# = uri/ldap.rb
#
# Author::
#  Takaaki Tateishi <ttate@jaist.ac.jp>
#  Akira Yamada <akira@ruby-lang.org>
# License::
#   Bundler::URI::LDAP is copyrighted free software by Takaaki Tateishi and Akira Yamada.
#   You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'generic'

module Bundler::URI

  #
  # LDAP Bundler::URI SCHEMA (described in RFC2255).
  #--
  # ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]
  #++
  class LDAP < Generic

    # A Default port of 389 for Bundler::URI::LDAP.
    DEFAULT_PORT = 389

    # An Array of the available components for Bundler::URI::LDAP.
    COMPONENT = [
      :scheme,
      :host, :port,
      :dn,
      :attributes,
      :scope,
      :filter,
      :extensions,
    ].freeze

    # Scopes available for the starting point.
    #
    # * SCOPE_BASE - the Base DN
    # * SCOPE_ONE  - one level under the Base DN, not including the base DN and
    #   not including any entries under this
    # * SCOPE_SUB  - subtrees, all entries at all levels
    #
    SCOPE = [
      SCOPE_ONE = 'one',
      SCOPE_SUB = 'sub',
      SCOPE_BASE = 'base',
    ].freeze

    #
    # == Description
    #
    # Creates a new Bundler::URI::LDAP object from components, with syntax checking.
    #
    # The components accepted are host, port, dn, attributes,
    # scope, filter, and extensions.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[host, port, dn, attributes, scope, filter, extensions]</code>.
    #
    # Example:
    #
    #     uri = Bundler::URI::LDAP.build({:host => 'ldap.example.com',
    #       :dn => '/dc=example'})
    #
    #     uri = Bundler::URI::LDAP.build(["ldap.example.com", nil,
    #       "/dc=example;dc=com", "query", nil, nil, nil])
    #
    def self.build(args)
      tmp = Util::make_components_hash(self, args)

      if tmp[:dn]
        tmp[:path] = tmp[:dn]
      end

      query = []
      [:extensions, :filter, :scope, :attributes].collect do |x|
        next if !tmp[x] && query.size == 0
        query.unshift(tmp[x])
      end

      tmp[:query] = query.join('?')

      return super(tmp)
    end

    #
    # == Description
    #
    # Creates a new Bundler::URI::LDAP object from generic Bundler::URI components as per
    # RFC 2396. No LDAP-specific syntax checking is performed.
    #
    # Arguments are +scheme+, +userinfo+, +host+, +port+, +registry+, +path+,
    # +opaque+, +query+, and +fragment+, in that order.
    #
    # Example:
    #
    #     uri = Bundler::URI::LDAP.new("ldap", nil, "ldap.example.com", nil, nil,
    #       "/dc=example;dc=com", nil, "query", nil)
    #
    # See also Bundler::URI::Generic.new.
    #
    def initialize(*arg)
      super(*arg)

      if @fragment
        raise InvalidURIError, 'bad LDAP URL'
      end

      parse_dn
      parse_query
    end

    # Private method to cleanup +dn+ from using the +path+ component attribute.
    def parse_dn
      @dn = @path[1..-1]
    end
    private :parse_dn

    # Private method to cleanup +attributes+, +scope+, +filter+, and +extensions+
    # from using the +query+ component attribute.
    def parse_query
      @attributes = nil
      @scope      = nil
      @filter     = nil
      @extensions = nil

      if @query
        attrs, scope, filter, extensions = @query.split('?')

        @attributes = attrs if attrs && attrs.size > 0
        @scope      = scope if scope && scope.size > 0
        @filter     = filter if filter && filter.size > 0
        @extensions = extensions if extensions && extensions.size > 0
      end
    end
    private :parse_query

    # Private method to assemble +query+ from +attributes+, +scope+, +filter+, and +extensions+.
    def build_path_query
      @path = '/' + @dn

      query = []
      [@extensions, @filter, @scope, @attributes].each do |x|
        next if !x && query.size == 0
        query.unshift(x)
      end
      @query = query.join('?')
    end
    private :build_path_query

    # Returns dn.
    def dn
      @dn
    end

    # Private setter for dn +val+.
    def set_dn(val)
      @dn = val
      build_path_query
      @dn
    end
    protected :set_dn

    # Setter for dn +val+.
    def dn=(val)
      set_dn(val)
      val
    end

    # Returns attributes.
    def attributes
      @attributes
    end

    # Private setter for attributes +val+.
    def set_attributes(val)
      @attributes = val
      build_path_query
      @attributes
    end
    protected :set_attributes

    # Setter for attributes +val+.
    def attributes=(val)
      set_attributes(val)
      val
    end

    # Returns scope.
    def scope
      @scope
    end

    # Private setter for scope +val+.
    def set_scope(val)
      @scope = val
      build_path_query
      @scope
    end
    protected :set_scope

    # Setter for scope +val+.
    def scope=(val)
      set_scope(val)
      val
    end

    # Returns filter.
    def filter
      @filter
    end

    # Private setter for filter +val+.
    def set_filter(val)
      @filter = val
      build_path_query
      @filter
    end
    protected :set_filter

    # Setter for filter +val+.
    def filter=(val)
      set_filter(val)
      val
    end

    # Returns extensions.
    def extensions
      @extensions
    end

    # Private setter for extensions +val+.
    def set_extensions(val)
      @extensions = val
      build_path_query
      @extensions
    end
    protected :set_extensions

    # Setter for extensions +val+.
    def extensions=(val)
      set_extensions(val)
      val
    end

    # Checks if Bundler::URI has a path.
    # For Bundler::URI::LDAP this will return +false+.
    def hierarchical?
      false
    end
  end

  @@schemes['LDAP'] = LDAP
end
PK=H[��IFshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ldaps.rbnu�[���# frozen_string_literal: false
# = uri/ldap.rb
#
# License:: You can redistribute it and/or modify it under the same term as Ruby.
#
# See Bundler::URI for general documentation
#

require_relative 'ldap'

module Bundler::URI

  # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
  # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
  # see Bundler::URI::LDAP.
  class LDAPS < LDAP
    # A Default port of 636 for Bundler::URI::LDAPS
    DEFAULT_PORT = 636
  end
  @@schemes['LDAPS'] = LDAPS
end
PK=H[]�F֖֖Hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/generic.rbnu�[���# frozen_string_literal: true

# = uri/generic.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'common'
autoload :IPSocket, 'socket'
autoload :IPAddr, 'ipaddr'

module Bundler::URI

  #
  # Base class for all Bundler::URI classes.
  # Implements generic Bundler::URI syntax as per RFC 2396.
  #
  class Generic
    include Bundler::URI

    #
    # A Default port of nil for Bundler::URI::Generic.
    #
    DEFAULT_PORT = nil

    #
    # Returns default port.
    #
    def self.default_port
      self::DEFAULT_PORT
    end

    #
    # Returns default port.
    #
    def default_port
      self.class.default_port
    end

    #
    # An Array of the available components for Bundler::URI::Generic.
    #
    COMPONENT = [
      :scheme,
      :userinfo, :host, :port, :registry,
      :path, :opaque,
      :query,
      :fragment
    ].freeze

    #
    # Components of the Bundler::URI in the order.
    #
    def self.component
      self::COMPONENT
    end

    USE_REGISTRY = false # :nodoc:

    def self.use_registry # :nodoc:
      self::USE_REGISTRY
    end

    #
    # == Synopsis
    #
    # See ::new.
    #
    # == Description
    #
    # At first, tries to create a new Bundler::URI::Generic instance using
    # Bundler::URI::Generic::build. But, if exception Bundler::URI::InvalidComponentError is raised,
    # then it does Bundler::URI::Escape.escape all Bundler::URI components and tries again.
    #
    def self.build2(args)
      begin
        return self.build(args)
      rescue InvalidComponentError
        if args.kind_of?(Array)
          return self.build(args.collect{|x|
            if x.is_a?(String)
              DEFAULT_PARSER.escape(x)
            else
              x
            end
          })
        elsif args.kind_of?(Hash)
          tmp = {}
          args.each do |key, value|
            tmp[key] = if value
                DEFAULT_PARSER.escape(value)
              else
                value
              end
          end
          return self.build(tmp)
        end
      end
    end

    #
    # == Synopsis
    #
    # See ::new.
    #
    # == Description
    #
    # Creates a new Bundler::URI::Generic instance from components of Bundler::URI::Generic
    # with check.  Components are: scheme, userinfo, host, port, registry, path,
    # opaque, query, and fragment. You can provide arguments either by an Array or a Hash.
    # See ::new for hash keys to use or for order of array items.
    #
    def self.build(args)
      if args.kind_of?(Array) &&
          args.size == ::Bundler::URI::Generic::COMPONENT.size
        tmp = args.dup
      elsif args.kind_of?(Hash)
        tmp = ::Bundler::URI::Generic::COMPONENT.collect do |c|
          if args.include?(c)
            args[c]
          else
            nil
          end
        end
      else
        component = self.class.component rescue ::Bundler::URI::Generic::COMPONENT
        raise ArgumentError,
        "expected Array of or Hash of components of #{self.class} (#{component.join(', ')})"
      end

      tmp << nil
      tmp << true
      return self.new(*tmp)
    end

    #
    # == Args
    #
    # +scheme+::
    #   Protocol scheme, i.e. 'http','ftp','mailto' and so on.
    # +userinfo+::
    #   User name and password, i.e. 'sdmitry:bla'.
    # +host+::
    #   Server host name.
    # +port+::
    #   Server port.
    # +registry+::
    #   Registry of naming authorities.
    # +path+::
    #   Path on server.
    # +opaque+::
    #   Opaque part.
    # +query+::
    #   Query data.
    # +fragment+::
    #   Part of the Bundler::URI after '#' character.
    # +parser+::
    #   Parser for internal use [Bundler::URI::DEFAULT_PARSER by default].
    # +arg_check+::
    #   Check arguments [false by default].
    #
    # == Description
    #
    # Creates a new Bundler::URI::Generic instance from ``generic'' components without check.
    #
    def initialize(scheme,
                   userinfo, host, port, registry,
                   path, opaque,
                   query,
                   fragment,
                   parser = DEFAULT_PARSER,
                   arg_check = false)
      @scheme = nil
      @user = nil
      @password = nil
      @host = nil
      @port = nil
      @path = nil
      @query = nil
      @opaque = nil
      @fragment = nil
      @parser = parser == DEFAULT_PARSER ? nil : parser

      if arg_check
        self.scheme = scheme
        self.userinfo = userinfo
        self.hostname = host
        self.port = port
        self.path = path
        self.query = query
        self.opaque = opaque
        self.fragment = fragment
      else
        self.set_scheme(scheme)
        self.set_userinfo(userinfo)
        self.set_host(host)
        self.set_port(port)
        self.set_path(path)
        self.query = query
        self.set_opaque(opaque)
        self.fragment=(fragment)
      end
      if registry
        raise InvalidURIError,
          "the scheme #{@scheme} does not accept registry part: #{registry} (or bad hostname?)"
      end

      @scheme&.freeze
      self.set_path('') if !@path && !@opaque # (see RFC2396 Section 5.2)
      self.set_port(self.default_port) if self.default_port && !@port
    end

    #
    # Returns the scheme component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz").scheme #=> "http"
    #
    attr_reader :scheme

    # Returns the host component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz").host #=> "foo"
    #
    # It returns nil if no host component exists.
    #
    #   Bundler::URI("mailto:foo@example.org").host #=> nil
    #
    # The component does not contain the port number.
    #
    #   Bundler::URI("http://foo:8080/bar/baz").host #=> "foo"
    #
    # Since IPv6 addresses are wrapped with brackets in URIs,
    # this method returns IPv6 addresses wrapped with brackets.
    # This form is not appropriate to pass to socket methods such as TCPSocket.open.
    # If unwrapped host names are required, use the #hostname method.
    #
    #   Bundler::URI("http://[::1]/bar/baz").host     #=> "[::1]"
    #   Bundler::URI("http://[::1]/bar/baz").hostname #=> "::1"
    #
    attr_reader :host

    # Returns the port component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz").port      #=> 80
    #   Bundler::URI("http://foo:8080/bar/baz").port #=> 8080
    #
    attr_reader :port

    def registry # :nodoc:
      nil
    end

    # Returns the path component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz").path #=> "/bar/baz"
    #
    attr_reader :path

    # Returns the query component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz?search=FooBar").query #=> "search=FooBar"
    #
    attr_reader :query

    # Returns the opaque part of the Bundler::URI.
    #
    #   Bundler::URI("mailto:foo@example.org").opaque #=> "foo@example.org"
    #   Bundler::URI("http://foo/bar/baz").opaque     #=> nil
    #
    # The portion of the path that does not make use of the slash '/'.
    # The path typically refers to an absolute path or an opaque part.
    # (See RFC2396 Section 3 and 5.2.)
    #
    attr_reader :opaque

    # Returns the fragment component of the Bundler::URI.
    #
    #   Bundler::URI("http://foo/bar/baz?search=FooBar#ponies").fragment #=> "ponies"
    #
    attr_reader :fragment

    # Returns the parser to be used.
    #
    # Unless a Bundler::URI::Parser is defined, DEFAULT_PARSER is used.
    #
    def parser
      if !defined?(@parser) || !@parser
        DEFAULT_PARSER
      else
        @parser || DEFAULT_PARSER
      end
    end

    # Replaces self by other Bundler::URI object.
    #
    def replace!(oth)
      if self.class != oth.class
        raise ArgumentError, "expected #{self.class} object"
      end

      component.each do |c|
        self.__send__("#{c}=", oth.__send__(c))
      end
    end
    private :replace!

    #
    # Components of the Bundler::URI in the order.
    #
    def component
      self.class.component
    end

    #
    # Checks the scheme +v+ component against the Bundler::URI::Parser Regexp for :SCHEME.
    #
    def check_scheme(v)
      if v && parser.regexp[:SCHEME] !~ v
        raise InvalidComponentError,
          "bad component(expected scheme component): #{v}"
      end

      return true
    end
    private :check_scheme

    # Protected setter for the scheme component +v+.
    #
    # See also Bundler::URI::Generic.scheme=.
    #
    def set_scheme(v)
      @scheme = v&.downcase
    end
    protected :set_scheme

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the scheme component +v+
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_scheme.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.scheme = "https"
    #   uri.to_s  #=> "https://my.example.com"
    #
    def scheme=(v)
      check_scheme(v)
      set_scheme(v)
      v
    end

    #
    # Checks the +user+ and +password+.
    #
    # If +password+ is not provided, then +user+ is
    # split, using Bundler::URI::Generic.split_userinfo, to
    # pull +user+ and +password.
    #
    # See also Bundler::URI::Generic.check_user, Bundler::URI::Generic.check_password.
    #
    def check_userinfo(user, password = nil)
      if !password
        user, password = split_userinfo(user)
      end
      check_user(user)
      check_password(password, user)

      return true
    end
    private :check_userinfo

    #
    # Checks the user +v+ component for RFC2396 compliance
    # and against the Bundler::URI::Parser Regexp for :USERINFO.
    #
    # Can not have a registry or opaque component defined,
    # with a user component defined.
    #
    def check_user(v)
      if @opaque
        raise InvalidURIError,
          "can not set user with opaque"
      end

      return v unless v

      if parser.regexp[:USERINFO] !~ v
        raise InvalidComponentError,
          "bad component(expected userinfo component or user component): #{v}"
      end

      return true
    end
    private :check_user

    #
    # Checks the password +v+ component for RFC2396 compliance
    # and against the Bundler::URI::Parser Regexp for :USERINFO.
    #
    # Can not have a registry or opaque component defined,
    # with a user component defined.
    #
    def check_password(v, user = @user)
      if @opaque
        raise InvalidURIError,
          "can not set password with opaque"
      end
      return v unless v

      if !user
        raise InvalidURIError,
          "password component depends user component"
      end

      if parser.regexp[:USERINFO] !~ v
        raise InvalidComponentError,
          "bad password component"
      end

      return true
    end
    private :check_password

    #
    # Sets userinfo, argument is string like 'name:pass'.
    #
    def userinfo=(userinfo)
      if userinfo.nil?
        return nil
      end
      check_userinfo(*userinfo)
      set_userinfo(*userinfo)
      # returns userinfo
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the +user+ component
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_user.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://john:S3nsit1ve@my.example.com")
    #   uri.user = "sam"
    #   uri.to_s  #=> "http://sam:V3ry_S3nsit1ve@my.example.com"
    #
    def user=(user)
      check_user(user)
      set_user(user)
      # returns user
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the +password+ component
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_password.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://john:S3nsit1ve@my.example.com")
    #   uri.password = "V3ry_S3nsit1ve"
    #   uri.to_s  #=> "http://john:V3ry_S3nsit1ve@my.example.com"
    #
    def password=(password)
      check_password(password)
      set_password(password)
      # returns password
    end

    # Protected setter for the +user+ component, and +password+ if available
    # (with validation).
    #
    # See also Bundler::URI::Generic.userinfo=.
    #
    def set_userinfo(user, password = nil)
      unless password
        user, password = split_userinfo(user)
      end
      @user     = user
      @password = password if password

      [@user, @password]
    end
    protected :set_userinfo

    # Protected setter for the user component +v+.
    #
    # See also Bundler::URI::Generic.user=.
    #
    def set_user(v)
      set_userinfo(v, @password)
      v
    end
    protected :set_user

    # Protected setter for the password component +v+.
    #
    # See also Bundler::URI::Generic.password=.
    #
    def set_password(v)
      @password = v
      # returns v
    end
    protected :set_password

    # Returns the userinfo +ui+ as <code>[user, password]</code>
    # if properly formatted as 'user:password'.
    def split_userinfo(ui)
      return nil, nil unless ui
      user, password = ui.split(':', 2)

      return user, password
    end
    private :split_userinfo

    # Escapes 'user:password' +v+ based on RFC 1738 section 3.1.
    def escape_userpass(v)
      parser.escape(v, /[@:\/]/o) # RFC 1738 section 3.1 #/
    end
    private :escape_userpass

    # Returns the userinfo, either as 'user' or 'user:password'.
    def userinfo
      if @user.nil?
        nil
      elsif @password.nil?
        @user
      else
        @user + ':' + @password
      end
    end

    # Returns the user component.
    def user
      @user
    end

    # Returns the password component.
    def password
      @password
    end

    #
    # Checks the host +v+ component for RFC2396 compliance
    # and against the Bundler::URI::Parser Regexp for :HOST.
    #
    # Can not have a registry or opaque component defined,
    # with a host component defined.
    #
    def check_host(v)
      return v unless v

      if @opaque
        raise InvalidURIError,
          "can not set host with registry or opaque"
      elsif parser.regexp[:HOST] !~ v
        raise InvalidComponentError,
          "bad component(expected host component): #{v}"
      end

      return true
    end
    private :check_host

    # Protected setter for the host component +v+.
    #
    # See also Bundler::URI::Generic.host=.
    #
    def set_host(v)
      @host = v
    end
    protected :set_host

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the host component +v+
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_host.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.host = "foo.com"
    #   uri.to_s  #=> "http://foo.com"
    #
    def host=(v)
      check_host(v)
      set_host(v)
      v
    end

    # Extract the host part of the Bundler::URI and unwrap brackets for IPv6 addresses.
    #
    # This method is the same as Bundler::URI::Generic#host except
    # brackets for IPv6 (and future IP) addresses are removed.
    #
    #   uri = Bundler::URI("http://[::1]/bar")
    #   uri.hostname      #=> "::1"
    #   uri.host          #=> "[::1]"
    #
    def hostname
      v = self.host
      /\A\[(.*)\]\z/ =~ v ? $1 : v
    end

    # Sets the host part of the Bundler::URI as the argument with brackets for IPv6 addresses.
    #
    # This method is the same as Bundler::URI::Generic#host= except
    # the argument can be a bare IPv6 address.
    #
    #   uri = Bundler::URI("http://foo/bar")
    #   uri.hostname = "::1"
    #   uri.to_s  #=> "http://[::1]/bar"
    #
    # If the argument seems to be an IPv6 address,
    # it is wrapped with brackets.
    #
    def hostname=(v)
      v = "[#{v}]" if /\A\[.*\]\z/ !~ v && /:/ =~ v
      self.host = v
    end

    #
    # Checks the port +v+ component for RFC2396 compliance
    # and against the Bundler::URI::Parser Regexp for :PORT.
    #
    # Can not have a registry or opaque component defined,
    # with a port component defined.
    #
    def check_port(v)
      return v unless v

      if @opaque
        raise InvalidURIError,
          "can not set port with registry or opaque"
      elsif !v.kind_of?(Integer) && parser.regexp[:PORT] !~ v
        raise InvalidComponentError,
          "bad component(expected port component): #{v.inspect}"
      end

      return true
    end
    private :check_port

    # Protected setter for the port component +v+.
    #
    # See also Bundler::URI::Generic.port=.
    #
    def set_port(v)
      v = v.empty? ? nil : v.to_i unless !v || v.kind_of?(Integer)
      @port = v
    end
    protected :set_port

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the port component +v+
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_port.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.port = 8080
    #   uri.to_s  #=> "http://my.example.com:8080"
    #
    def port=(v)
      check_port(v)
      set_port(v)
      port
    end

    def check_registry(v) # :nodoc:
      raise InvalidURIError, "can not set registry"
    end
    private :check_registry

    def set_registry(v) #:nodoc:
      raise InvalidURIError, "can not set registry"
    end
    protected :set_registry

    def registry=(v)
      raise InvalidURIError, "can not set registry"
    end

    #
    # Checks the path +v+ component for RFC2396 compliance
    # and against the Bundler::URI::Parser Regexp
    # for :ABS_PATH and :REL_PATH.
    #
    # Can not have a opaque component defined,
    # with a path component defined.
    #
    def check_path(v)
      # raise if both hier and opaque are not nil, because:
      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      if v && @opaque
        raise InvalidURIError,
          "path conflicts with opaque"
      end

      # If scheme is ftp, path may be relative.
      # See RFC 1738 section 3.2.2, and RFC 2396.
      if @scheme && @scheme != "ftp"
        if v && v != '' && parser.regexp[:ABS_PATH] !~ v
          raise InvalidComponentError,
            "bad component(expected absolute path component): #{v}"
        end
      else
        if v && v != '' && parser.regexp[:ABS_PATH] !~ v &&
           parser.regexp[:REL_PATH] !~ v
          raise InvalidComponentError,
            "bad component(expected relative path component): #{v}"
        end
      end

      return true
    end
    private :check_path

    # Protected setter for the path component +v+.
    #
    # See also Bundler::URI::Generic.path=.
    #
    def set_path(v)
      @path = v
    end
    protected :set_path

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the path component +v+
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_path.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com/pub/files")
    #   uri.path = "/faq/"
    #   uri.to_s  #=> "http://my.example.com/faq/"
    #
    def path=(v)
      check_path(v)
      set_path(v)
      v
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the query component +v+.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com/?id=25")
    #   uri.query = "id=1"
    #   uri.to_s  #=> "http://my.example.com/?id=1"
    #
    def query=(v)
      return @query = nil unless v
      raise InvalidURIError, "query conflicts with opaque" if @opaque

      x = v.to_str
      v = x.dup if x.equal? v
      v.encode!(Encoding::UTF_8) rescue nil
      v.delete!("\t\r\n")
      v.force_encoding(Encoding::ASCII_8BIT)
      raise InvalidURIError, "invalid percent escape: #{$1}" if /(%\H\H)/n.match(v)
      v.gsub!(/(?!%\h\h|[!$-&(-;=?-_a-~])./n.freeze){'%%%02X' % $&.ord}
      v.force_encoding(Encoding::US_ASCII)
      @query = v
    end

    #
    # Checks the opaque +v+ component for RFC2396 compliance and
    # against the Bundler::URI::Parser Regexp for :OPAQUE.
    #
    # Can not have a host, port, user, or path component defined,
    # with an opaque component defined.
    #
    def check_opaque(v)
      return v unless v

      # raise if both hier and opaque are not nil, because:
      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      if @host || @port || @user || @path  # userinfo = @user + ':' + @password
        raise InvalidURIError,
          "can not set opaque with host, port, userinfo or path"
      elsif v && parser.regexp[:OPAQUE] !~ v
        raise InvalidComponentError,
          "bad component(expected opaque component): #{v}"
      end

      return true
    end
    private :check_opaque

    # Protected setter for the opaque component +v+.
    #
    # See also Bundler::URI::Generic.opaque=.
    #
    def set_opaque(v)
      @opaque = v
    end
    protected :set_opaque

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the opaque component +v+
    # (with validation).
    #
    # See also Bundler::URI::Generic.check_opaque.
    #
    def opaque=(v)
      check_opaque(v)
      set_opaque(v)
      v
    end

    #
    # Checks the fragment +v+ component against the Bundler::URI::Parser Regexp for :FRAGMENT.
    #
    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the fragment component +v+
    # (with validation).
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com/?id=25#time=1305212049")
    #   uri.fragment = "time=1305212086"
    #   uri.to_s  #=> "http://my.example.com/?id=25#time=1305212086"
    #
    def fragment=(v)
      return @fragment = nil unless v

      x = v.to_str
      v = x.dup if x.equal? v
      v.encode!(Encoding::UTF_8) rescue nil
      v.delete!("\t\r\n")
      v.force_encoding(Encoding::ASCII_8BIT)
      v.gsub!(/(?!%\h\h|[!-~])./n){'%%%02X' % $&.ord}
      v.force_encoding(Encoding::US_ASCII)
      @fragment = v
    end

    #
    # Returns true if Bundler::URI is hierarchical.
    #
    # == Description
    #
    # Bundler::URI has components listed in order of decreasing significance from left to right,
    # see RFC3986 https://tools.ietf.org/html/rfc3986 1.2.3.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com/")
    #   uri.hierarchical?
    #   #=> true
    #   uri = Bundler::URI.parse("mailto:joe@example.com")
    #   uri.hierarchical?
    #   #=> false
    #
    def hierarchical?
      if @path
        true
      else
        false
      end
    end

    #
    # Returns true if Bundler::URI has a scheme (e.g. http:// or https://) specified.
    #
    def absolute?
      if @scheme
        true
      else
        false
      end
    end
    alias absolute absolute?

    #
    # Returns true if Bundler::URI does not have a scheme (e.g. http:// or https://) specified.
    #
    def relative?
      !absolute?
    end

    #
    # Returns an Array of the path split on '/'.
    #
    def split_path(path)
      path.split("/", -1)
    end
    private :split_path

    #
    # Merges a base path +base+, with relative path +rel+,
    # returns a modified base path.
    #
    def merge_path(base, rel)

      # RFC2396, Section 5.2, 5)
      # RFC2396, Section 5.2, 6)
      base_path = split_path(base)
      rel_path  = split_path(rel)

      # RFC2396, Section 5.2, 6), a)
      base_path << '' if base_path.last == '..'
      while i = base_path.index('..')
        base_path.slice!(i - 1, 2)
      end

      if (first = rel_path.first) and first.empty?
        base_path.clear
        rel_path.shift
      end

      # RFC2396, Section 5.2, 6), c)
      # RFC2396, Section 5.2, 6), d)
      rel_path.push('') if rel_path.last == '.' || rel_path.last == '..'
      rel_path.delete('.')

      # RFC2396, Section 5.2, 6), e)
      tmp = []
      rel_path.each do |x|
        if x == '..' &&
            !(tmp.empty? || tmp.last == '..')
          tmp.pop
        else
          tmp << x
        end
      end

      add_trailer_slash = !tmp.empty?
      if base_path.empty?
        base_path = [''] # keep '/' for root directory
      elsif add_trailer_slash
        base_path.pop
      end
      while x = tmp.shift
        if x == '..'
          # RFC2396, Section 4
          # a .. or . in an absolute path has no special meaning
          base_path.pop if base_path.size > 1
        else
          # if x == '..'
          #   valid absolute (but abnormal) path "/../..."
          # else
          #   valid absolute path
          # end
          base_path << x
          tmp.each {|t| base_path << t}
          add_trailer_slash = false
          break
        end
      end
      base_path.push('') if add_trailer_slash

      return base_path.join('/')
    end
    private :merge_path

    #
    # == Args
    #
    # +oth+::
    #    Bundler::URI or String
    #
    # == Description
    #
    # Destructive form of #merge.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.merge!("/main.rbx?page=1")
    #   uri.to_s  # => "http://my.example.com/main.rbx?page=1"
    #
    def merge!(oth)
      t = merge(oth)
      if self == t
        nil
      else
        replace!(t)
        self
      end
    end

    #
    # == Args
    #
    # +oth+::
    #    Bundler::URI or String
    #
    # == Description
    #
    # Merges two URIs.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.merge("/main.rbx?page=1")
    #   # => "http://my.example.com/main.rbx?page=1"
    #
    def merge(oth)
      rel = parser.send(:convert_to_uri, oth)

      if rel.absolute?
        #raise BadURIError, "both Bundler::URI are absolute" if absolute?
        # hmm... should return oth for usability?
        return rel
      end

      unless self.absolute?
        raise BadURIError, "both Bundler::URI are relative"
      end

      base = self.dup

      authority = rel.userinfo || rel.host || rel.port

      # RFC2396, Section 5.2, 2)
      if (rel.path.nil? || rel.path.empty?) && !authority && !rel.query
        base.fragment=(rel.fragment) if rel.fragment
        return base
      end

      base.query = nil
      base.fragment=(nil)

      # RFC2396, Section 5.2, 4)
      if !authority
        base.set_path(merge_path(base.path, rel.path)) if base.path && rel.path
      else
        # RFC2396, Section 5.2, 4)
        base.set_path(rel.path) if rel.path
      end

      # RFC2396, Section 5.2, 7)
      base.set_userinfo(rel.userinfo) if rel.userinfo
      base.set_host(rel.host)         if rel.host
      base.set_port(rel.port)         if rel.port
      base.query = rel.query       if rel.query
      base.fragment=(rel.fragment) if rel.fragment

      return base
    end # merge
    alias + merge

    # :stopdoc:
    def route_from_path(src, dst)
      case dst
      when src
        # RFC2396, Section 4.2
        return ''
      when %r{(?:\A|/)\.\.?(?:/|\z)}
        # dst has abnormal absolute path,
        # like "/./", "/../", "/x/../", ...
        return dst.dup
      end

      src_path = src.scan(%r{[^/]*/})
      dst_path = dst.scan(%r{[^/]*/?})

      # discard same parts
      while !dst_path.empty? && dst_path.first == src_path.first
        src_path.shift
        dst_path.shift
      end

      tmp = dst_path.join

      # calculate
      if src_path.empty?
        if tmp.empty?
          return './'
        elsif dst_path.first.include?(':') # (see RFC2396 Section 5)
          return './' + tmp
        else
          return tmp
        end
      end

      return '../' * src_path.size + tmp
    end
    private :route_from_path
    # :startdoc:

    # :stopdoc:
    def route_from0(oth)
      oth = parser.send(:convert_to_uri, oth)
      if self.relative?
        raise BadURIError,
          "relative Bundler::URI: #{self}"
      end
      if oth.relative?
        raise BadURIError,
          "relative Bundler::URI: #{oth}"
      end

      if self.scheme != oth.scheme
        return self, self.dup
      end
      rel = Bundler::URI::Generic.new(nil, # it is relative Bundler::URI
                             self.userinfo, self.host, self.port,
                             nil, self.path, self.opaque,
                             self.query, self.fragment, parser)

      if rel.userinfo != oth.userinfo ||
          rel.host.to_s.downcase != oth.host.to_s.downcase ||
          rel.port != oth.port

        if self.userinfo.nil? && self.host.nil?
          return self, self.dup
        end

        rel.set_port(nil) if rel.port == oth.default_port
        return rel, rel
      end
      rel.set_userinfo(nil)
      rel.set_host(nil)
      rel.set_port(nil)

      if rel.path && rel.path == oth.path
        rel.set_path('')
        rel.query = nil if rel.query == oth.query
        return rel, rel
      elsif rel.opaque && rel.opaque == oth.opaque
        rel.set_opaque('')
        rel.query = nil if rel.query == oth.query
        return rel, rel
      end

      # you can modify `rel', but can not `oth'.
      return oth, rel
    end
    private :route_from0
    # :startdoc:

    #
    # == Args
    #
    # +oth+::
    #    Bundler::URI or String
    #
    # == Description
    #
    # Calculates relative path from oth to self.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse('http://my.example.com/main.rbx?page=1')
    #   uri.route_from('http://my.example.com')
    #   #=> #<Bundler::URI::Generic /main.rbx?page=1>
    #
    def route_from(oth)
      # you can modify `rel', but can not `oth'.
      begin
        oth, rel = route_from0(oth)
      rescue
        raise $!.class, $!.message
      end
      if oth == rel
        return rel
      end

      rel.set_path(route_from_path(oth.path, self.path))
      if rel.path == './' && self.query
        # "./?foo" -> "?foo"
        rel.set_path('')
      end

      return rel
    end

    alias - route_from

    #
    # == Args
    #
    # +oth+::
    #    Bundler::URI or String
    #
    # == Description
    #
    # Calculates relative path to oth from self.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse('http://my.example.com')
    #   uri.route_to('http://my.example.com/main.rbx?page=1')
    #   #=> #<Bundler::URI::Generic /main.rbx?page=1>
    #
    def route_to(oth)
      parser.send(:convert_to_uri, oth).route_from(self)
    end

    #
    # Returns normalized Bundler::URI.
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   Bundler::URI("HTTP://my.EXAMPLE.com").normalize
    #   #=> #<Bundler::URI::HTTP http://my.example.com/>
    #
    # Normalization here means:
    #
    # * scheme and host are converted to lowercase,
    # * an empty path component is set to "/".
    #
    def normalize
      uri = dup
      uri.normalize!
      uri
    end

    #
    # Destructive version of #normalize.
    #
    def normalize!
      if path&.empty?
        set_path('/')
      end
      if scheme && scheme != scheme.downcase
        set_scheme(self.scheme.downcase)
      end
      if host && host != host.downcase
        set_host(self.host.downcase)
      end
    end

    #
    # Constructs String from Bundler::URI.
    #
    def to_s
      str = ''.dup
      if @scheme
        str << @scheme
        str << ':'
      end

      if @opaque
        str << @opaque
      else
        if @host || %w[file postgres].include?(@scheme)
          str << '//'
        end
        if self.userinfo
          str << self.userinfo
          str << '@'
        end
        if @host
          str << @host
        end
        if @port && @port != self.default_port
          str << ':'
          str << @port.to_s
        end
        str << @path
        if @query
          str << '?'
          str << @query
        end
      end
      if @fragment
        str << '#'
        str << @fragment
      end
      str
    end

    #
    # Compares two URIs.
    #
    def ==(oth)
      if self.class == oth.class
        self.normalize.component_ary == oth.normalize.component_ary
      else
        false
      end
    end

    def hash
      self.component_ary.hash
    end

    def eql?(oth)
      self.class == oth.class &&
      parser == oth.parser &&
      self.component_ary.eql?(oth.component_ary)
    end

=begin

--- Bundler::URI::Generic#===(oth)

=end
#    def ===(oth)
#      raise NotImplementedError
#    end

=begin
=end


    # Returns an Array of the components defined from the COMPONENT Array.
    def component_ary
      component.collect do |x|
        self.send(x)
      end
    end
    protected :component_ary

    # == Args
    #
    # +components+::
    #    Multiple Symbol arguments defined in Bundler::URI::HTTP.
    #
    # == Description
    #
    # Selects specified components from Bundler::URI.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse('http://myuser:mypass@my.example.com/test.rbx')
    #   uri.select(:userinfo, :host, :path)
    #   # => ["myuser:mypass", "my.example.com", "/test.rbx"]
    #
    def select(*components)
      components.collect do |c|
        if component.include?(c)
          self.send(c)
        else
          raise ArgumentError,
            "expected of components of #{self.class} (#{self.class.component.join(', ')})"
        end
      end
    end

    def inspect
      "#<#{self.class} #{self}>"
    end

    #
    # == Args
    #
    # +v+::
    #    Bundler::URI or String
    #
    # == Description
    #
    # Attempts to parse other Bundler::URI +oth+,
    # returns [parsed_oth, self].
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("http://my.example.com")
    #   uri.coerce("http://foo.com")
    #   #=> [#<Bundler::URI::HTTP http://foo.com>, #<Bundler::URI::HTTP http://my.example.com>]
    #
    def coerce(oth)
      case oth
      when String
        oth = parser.parse(oth)
      else
        super
      end

      return oth, self
    end

    # Returns a proxy Bundler::URI.
    # The proxy Bundler::URI is obtained from environment variables such as http_proxy,
    # ftp_proxy, no_proxy, etc.
    # If there is no proper proxy, nil is returned.
    #
    # If the optional parameter +env+ is specified, it is used instead of ENV.
    #
    # Note that capitalized variables (HTTP_PROXY, FTP_PROXY, NO_PROXY, etc.)
    # are examined, too.
    #
    # But http_proxy and HTTP_PROXY is treated specially under CGI environment.
    # It's because HTTP_PROXY may be set by Proxy: header.
    # So HTTP_PROXY is not used.
    # http_proxy is not used too if the variable is case insensitive.
    # CGI_HTTP_PROXY can be used instead.
    def find_proxy(env=ENV)
      raise BadURIError, "relative Bundler::URI: #{self}" if self.relative?
      name = self.scheme.downcase + '_proxy'
      proxy_uri = nil
      if name == 'http_proxy' && env.include?('REQUEST_METHOD') # CGI?
        # HTTP_PROXY conflicts with *_proxy for proxy settings and
        # HTTP_* for header information in CGI.
        # So it should be careful to use it.
        pairs = env.reject {|k, v| /\Ahttp_proxy\z/i !~ k }
        case pairs.length
        when 0 # no proxy setting anyway.
          proxy_uri = nil
        when 1
          k, _ = pairs.shift
          if k == 'http_proxy' && env[k.upcase] == nil
            # http_proxy is safe to use because ENV is case sensitive.
            proxy_uri = env[name]
          else
            proxy_uri = nil
          end
        else # http_proxy is safe to use because ENV is case sensitive.
          proxy_uri = env.to_hash[name]
        end
        if !proxy_uri
          # Use CGI_HTTP_PROXY.  cf. libwww-perl.
          proxy_uri = env["CGI_#{name.upcase}"]
        end
      elsif name == 'http_proxy'
        unless proxy_uri = env[name]
          if proxy_uri = env[name.upcase]
            warn 'The environment variable HTTP_PROXY is discouraged.  Use http_proxy.', uplevel: 1
          end
        end
      else
        proxy_uri = env[name] || env[name.upcase]
      end

      if proxy_uri.nil? || proxy_uri.empty?
        return nil
      end

      if self.hostname
        begin
          addr = IPSocket.getaddress(self.hostname)
          return nil if /\A127\.|\A::1\z/ =~ addr
        rescue SocketError
        end
      end

      name = 'no_proxy'
      if no_proxy = env[name] || env[name.upcase]
        return nil unless Bundler::URI::Generic.use_proxy?(self.hostname, addr, self.port, no_proxy)
      end
      Bundler::URI.parse(proxy_uri)
    end

    def self.use_proxy?(hostname, addr, port, no_proxy) # :nodoc:
      hostname = hostname.downcase
      dothostname = ".#{hostname}"
      no_proxy.scan(/([^:,\s]+)(?::(\d+))?/) {|p_host, p_port|
        if !p_port || port == p_port.to_i
          if p_host.start_with?('.')
            return false if hostname.end_with?(p_host.downcase)
          else
            return false if dothostname.end_with?(".#{p_host.downcase}")
          end
          if addr
            begin
              return false if IPAddr.new(p_host).include?(addr)
            rescue IPAddr::InvalidAddressError
              next
            end
          end
        end
      }
      true
    end
  end
end
PK=H[#TΉQQOshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rbnu�[���# frozen_string_literal: false
module Bundler::URI
  class RFC3986_Parser # :nodoc:
    # Bundler::URI defined in RFC3986
    # this regexp is modified not to host is not empty string
    RFC3986_URI = /\A(?<Bundler::URI>(?<scheme>[A-Za-z][+\-.0-9A-Za-z]*):(?<hier-part>\/\/(?<authority>(?:(?<userinfo>(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*)@)?(?<host>(?<IP-literal>\[(?:(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{1,4}?::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:)?\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h+\.[!$&-.0-;=A-Z_a-z~]+))\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])+))?(?::(?<port>\d*))?)(?<path-abempty>(?:\/(?<segment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*))*)|(?<path-absolute>\/(?:(?<segment-nz>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])+)(?:\/\g<segment>)*)?)|(?<path-rootless>\g<segment-nz>(?:\/\g<segment>)*)|(?<path-empty>))(?:\?(?<query>[^#]*))?(?:\#(?<fragment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*))?)\z/
    RFC3986_relative_ref = /\A(?<relative-ref>(?<relative-part>\/\/(?<authority>(?:(?<userinfo>(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*)@)?(?<host>(?<IP-literal>\[(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{1,4}?::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:){,1}\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h+\.[!$&-.0-;=A-Z_a-z~]+)\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])+))?(?::(?<port>\d*))?)(?<path-abempty>(?:\/(?<segment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*))*)|(?<path-absolute>\/(?:(?<segment-nz>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])+)(?:\/\g<segment>)*)?)|(?<path-noscheme>(?<segment-nz-nc>(?:%\h\h|[!$&-.0-9;=@-Z_a-z~])+)(?:\/\g<segment>)*)|(?<path-empty>))(?:\?(?<query>[^#]*))?(?:\#(?<fragment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*))?)\z/
    attr_reader :regexp

    def initialize
      @regexp = default_regexp.each_value(&:freeze).freeze
    end

    def split(uri) #:nodoc:
      begin
        uri = uri.to_str
      rescue NoMethodError
        raise InvalidURIError, "bad Bundler::URI(is not Bundler::URI?): #{uri.inspect}"
      end
      uri.ascii_only? or
        raise InvalidURIError, "Bundler::URI must be ascii only #{uri.dump}"
      if m = RFC3986_URI.match(uri)
        query = m["query".freeze]
        scheme = m["scheme".freeze]
        opaque = m["path-rootless".freeze]
        if opaque
          opaque << "?#{query}" if query
          [ scheme,
            nil, # userinfo
            nil, # host
            nil, # port
            nil, # registry
            nil, # path
            opaque,
            nil, # query
            m["fragment".freeze]
          ]
        else # normal
          [ scheme,
            m["userinfo".freeze],
            m["host".freeze],
            m["port".freeze],
            nil, # registry
            (m["path-abempty".freeze] ||
             m["path-absolute".freeze] ||
             m["path-empty".freeze]),
            nil, # opaque
            query,
            m["fragment".freeze]
          ]
        end
      elsif m = RFC3986_relative_ref.match(uri)
        [ nil, # scheme
          m["userinfo".freeze],
          m["host".freeze],
          m["port".freeze],
          nil, # registry,
          (m["path-abempty".freeze] ||
           m["path-absolute".freeze] ||
           m["path-noscheme".freeze] ||
           m["path-empty".freeze]),
          nil, # opaque
          m["query".freeze],
          m["fragment".freeze]
        ]
      else
        raise InvalidURIError, "bad Bundler::URI(is not Bundler::URI?): #{uri.inspect}"
      end
    end

    def parse(uri) # :nodoc:
      scheme, userinfo, host, port,
        registry, path, opaque, query, fragment = self.split(uri)
      scheme_list = Bundler::URI.scheme_list
      if scheme && scheme_list.include?(uc = scheme.upcase)
        scheme_list[uc].new(scheme, userinfo, host, port,
                            registry, path, opaque, query,
                            fragment, self)
      else
        Generic.new(scheme, userinfo, host, port,
                    registry, path, opaque, query,
                    fragment, self)
      end
    end


    def join(*uris) # :nodoc:
      uris[0] = convert_to_uri(uris[0])
      uris.inject :merge
    end

    @@to_s = Kernel.instance_method(:to_s)
    def inspect
      @@to_s.bind_call(self)
    end

    private

    def default_regexp # :nodoc:
      {
        SCHEME: /\A[A-Za-z][A-Za-z0-9+\-.]*\z/,
        USERINFO: /\A(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*\z/,
        HOST: /\A(?:(?<IP-literal>\[(?:(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{,4}::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:)?\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h+\.[!$&-.0-;=A-Z_a-z~]+))\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])*))\z/,
        ABS_PATH: /\A\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*(?:\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*)*\z/,
        REL_PATH: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~])+(?:\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*)*\z/,
        QUERY: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*\z/,
        FRAGMENT: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*\z/,
        OPAQUE: /\A(?:[^\/].*)?\z/,
        PORT: /\A[\x09\x0a\x0c\x0d ]*\d*[\x09\x0a\x0c\x0d ]*\z/,
      }
    end

    def convert_to_uri(uri)
      if uri.is_a?(Bundler::URI::Generic)
        uri
      elsif uri = String.try_convert(uri)
        parse(uri)
      else
        raise ArgumentError,
          "bad argument (expected Bundler::URI object or Bundler::URI string)"
      end
    end

  end # class Parser
end # module Bundler::URI
PK=H[�="�__Fshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/https.rbnu�[���# frozen_string_literal: false
# = uri/https.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'http'

module Bundler::URI

  # The default port for HTTPS URIs is 443, and the scheme is 'https:' rather
  # than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs;
  # see Bundler::URI::HTTP.
  class HTTPS < HTTP
    # A Default port of 443 for Bundler::URI::HTTPS
    DEFAULT_PORT = 443
  end
  @@schemes['HTTPS'] = HTTPS
end
PK=H[���3��Hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/version.rbnu�[���module Bundler::URI
  # :stopdoc:
  VERSION_CODE = '001000'.freeze
  VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
  # :startdoc:
end
PK=H[��
%%Dshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ftp.rbnu�[���# frozen_string_literal: false
# = uri/ftp.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'generic'

module Bundler::URI

  #
  # FTP Bundler::URI syntax is defined by RFC1738 section 3.2.
  #
  # This class will be redesigned because of difference of implementations;
  # the structure of its path. draft-hoffman-ftp-uri-04 is a draft but it
  # is a good summary about the de facto spec.
  # http://tools.ietf.org/html/draft-hoffman-ftp-uri-04
  #
  class FTP < Generic
    # A Default port of 21 for Bundler::URI::FTP.
    DEFAULT_PORT = 21

    #
    # An Array of the available components for Bundler::URI::FTP.
    #
    COMPONENT = [
      :scheme,
      :userinfo, :host, :port,
      :path, :typecode
    ].freeze

    #
    # Typecode is "a", "i", or "d".
    #
    # * "a" indicates a text file (the FTP command was ASCII)
    # * "i" indicates a binary file (FTP command IMAGE)
    # * "d" indicates the contents of a directory should be displayed
    #
    TYPECODE = ['a', 'i', 'd'].freeze

    # Typecode prefix ";type=".
    TYPECODE_PREFIX = ';type='.freeze

    def self.new2(user, password, host, port, path,
                  typecode = nil, arg_check = true) # :nodoc:
      # Do not use this method!  Not tested.  [Bug #7301]
      # This methods remains just for compatibility,
      # Keep it undocumented until the active maintainer is assigned.
      typecode = nil if typecode.size == 0
      if typecode && !TYPECODE.include?(typecode)
        raise ArgumentError,
          "bad typecode is specified: #{typecode}"
      end

      # do escape

      self.new('ftp',
               [user, password],
               host, port, nil,
               typecode ? path + TYPECODE_PREFIX + typecode : path,
               nil, nil, nil, arg_check)
    end

    #
    # == Description
    #
    # Creates a new Bundler::URI::FTP object from components, with syntax checking.
    #
    # The components accepted are +userinfo+, +host+, +port+, +path+, and
    # +typecode+.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[userinfo, host, port, path, typecode]</code>.
    #
    # If the path supplied is absolute, it will be escaped in order to
    # make it absolute in the Bundler::URI.
    #
    # Examples:
    #
    #     require 'bundler/vendor/uri/lib/uri'
    #
    #     uri1 = Bundler::URI::FTP.build(['user:password', 'ftp.example.com', nil,
    #       '/path/file.zip', 'i'])
    #     uri1.to_s  # => "ftp://user:password@ftp.example.com/%2Fpath/file.zip;type=i"
    #
    #     uri2 = Bundler::URI::FTP.build({:host => 'ftp.example.com',
    #       :path => 'ruby/src'})
    #     uri2.to_s  # => "ftp://ftp.example.com/ruby/src"
    #
    def self.build(args)

      # Fix the incoming path to be generic URL syntax
      # FTP path  ->  URL path
      # foo/bar       /foo/bar
      # /foo/bar      /%2Ffoo/bar
      #
      if args.kind_of?(Array)
        args[3] = '/' + args[3].sub(/^\//, '%2F')
      else
        args[:path] = '/' + args[:path].sub(/^\//, '%2F')
      end

      tmp = Util::make_components_hash(self, args)

      if tmp[:typecode]
        if tmp[:typecode].size == 1
          tmp[:typecode] = TYPECODE_PREFIX + tmp[:typecode]
        end
        tmp[:path] << tmp[:typecode]
      end

      return super(tmp)
    end

    #
    # == Description
    #
    # Creates a new Bundler::URI::FTP object from generic URL components with no
    # syntax checking.
    #
    # Unlike build(), this method does not escape the path component as
    # required by RFC1738; instead it is treated as per RFC2396.
    #
    # Arguments are +scheme+, +userinfo+, +host+, +port+, +registry+, +path+,
    # +opaque+, +query+, and +fragment+, in that order.
    #
    def initialize(scheme,
                   userinfo, host, port, registry,
                   path, opaque,
                   query,
                   fragment,
                   parser = nil,
                   arg_check = false)
      raise InvalidURIError unless path
      path = path.sub(/^\//,'')
      path.sub!(/^%2F/,'/')
      super(scheme, userinfo, host, port, registry, path, opaque,
            query, fragment, parser, arg_check)
      @typecode = nil
      if tmp = @path.index(TYPECODE_PREFIX)
        typecode = @path[tmp + TYPECODE_PREFIX.size..-1]
        @path = @path[0..tmp - 1]

        if arg_check
          self.typecode = typecode
        else
          self.set_typecode(typecode)
        end
      end
    end

    # typecode accessor.
    #
    # See Bundler::URI::FTP::COMPONENT.
    attr_reader :typecode

    # Validates typecode +v+,
    # returns +true+ or +false+.
    #
    def check_typecode(v)
      if TYPECODE.include?(v)
        return true
      else
        raise InvalidComponentError,
          "bad typecode(expected #{TYPECODE.join(', ')}): #{v}"
      end
    end
    private :check_typecode

    # Private setter for the typecode +v+.
    #
    # See also Bundler::URI::FTP.typecode=.
    #
    def set_typecode(v)
      @typecode = v
    end
    protected :set_typecode

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the typecode +v+
    # (with validation).
    #
    # See also Bundler::URI::FTP.check_typecode.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("ftp://john@ftp.example.com/my_file.img")
    #   #=> #<Bundler::URI::FTP ftp://john@ftp.example.com/my_file.img>
    #   uri.typecode = "i"
    #   uri
    #   #=> #<Bundler::URI::FTP ftp://john@ftp.example.com/my_file.img;type=i>
    #
    def typecode=(typecode)
      check_typecode(typecode)
      set_typecode(typecode)
      typecode
    end

    def merge(oth) # :nodoc:
      tmp = super(oth)
      if self != tmp
        tmp.set_typecode(oth.typecode)
      end

      return tmp
    end

    # Returns the path from an FTP Bundler::URI.
    #
    # RFC 1738 specifically states that the path for an FTP Bundler::URI does not
    # include the / which separates the Bundler::URI path from the Bundler::URI host. Example:
    #
    # <code>ftp://ftp.example.com/pub/ruby</code>
    #
    # The above Bundler::URI indicates that the client should connect to
    # ftp.example.com then cd to pub/ruby from the initial login directory.
    #
    # If you want to cd to an absolute directory, you must include an
    # escaped / (%2F) in the path. Example:
    #
    # <code>ftp://ftp.example.com/%2Fpub/ruby</code>
    #
    # This method will then return "/pub/ruby".
    #
    def path
      return @path.sub(/^\//,'').sub(/^%2F/,'/')
    end

    # Private setter for the path of the Bundler::URI::FTP.
    def set_path(v)
      super("/" + v.sub(/^\//, "%2F"))
    end
    protected :set_path

    # Returns a String representation of the Bundler::URI::FTP.
    def to_s
      save_path = nil
      if @typecode
        save_path = @path
        @path = @path + TYPECODE_PREFIX + @typecode
      end
      str = super
      if @typecode
        @path = save_path
      end

      return str
    end
  end
  @@schemes['FTP'] = FTP
end
PK=H[�ٍ�2G2GOshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rbnu�[���# frozen_string_literal: false
#--
# = uri/common.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Revision:: $Id$
# License::
#   You can redistribute it and/or modify it under the same term as Ruby.
#
# See Bundler::URI for general documentation
#

module Bundler::URI
  #
  # Includes Bundler::URI::REGEXP::PATTERN
  #
  module RFC2396_REGEXP
    #
    # Patterns used to parse Bundler::URI's
    #
    module PATTERN
      # :stopdoc:

      # RFC 2396 (Bundler::URI Generic Syntax)
      # RFC 2732 (IPv6 Literal Addresses in URL's)
      # RFC 2373 (IPv6 Addressing Architecture)

      # alpha         = lowalpha | upalpha
      ALPHA = "a-zA-Z"
      # alphanum      = alpha | digit
      ALNUM = "#{ALPHA}\\d"

      # hex           = digit | "A" | "B" | "C" | "D" | "E" | "F" |
      #                         "a" | "b" | "c" | "d" | "e" | "f"
      HEX     = "a-fA-F\\d"
      # escaped       = "%" hex hex
      ESCAPED = "%[#{HEX}]{2}"
      # mark          = "-" | "_" | "." | "!" | "~" | "*" | "'" |
      #                 "(" | ")"
      # unreserved    = alphanum | mark
      UNRESERVED = "\\-_.!~*'()#{ALNUM}"
      # reserved      = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
      #                 "$" | ","
      # reserved      = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
      #                 "$" | "," | "[" | "]" (RFC 2732)
      RESERVED = ";/?:@&=+$,\\[\\]"

      # domainlabel   = alphanum | alphanum *( alphanum | "-" ) alphanum
      DOMLABEL = "(?:[#{ALNUM}](?:[-#{ALNUM}]*[#{ALNUM}])?)"
      # toplabel      = alpha | alpha *( alphanum | "-" ) alphanum
      TOPLABEL = "(?:[#{ALPHA}](?:[-#{ALNUM}]*[#{ALNUM}])?)"
      # hostname      = *( domainlabel "." ) toplabel [ "." ]
      HOSTNAME = "(?:#{DOMLABEL}\\.)*#{TOPLABEL}\\.?"

      # :startdoc:
    end # PATTERN

    # :startdoc:
  end # REGEXP

  # Class that parses String's into Bundler::URI's.
  #
  # It contains a Hash set of patterns and Regexp's that match and validate.
  #
  class RFC2396_Parser
    include RFC2396_REGEXP

    #
    # == Synopsis
    #
    #   Bundler::URI::Parser.new([opts])
    #
    # == Args
    #
    # The constructor accepts a hash as options for parser.
    # Keys of options are pattern names of Bundler::URI components
    # and values of options are pattern strings.
    # The constructor generates set of regexps for parsing URIs.
    #
    # You can use the following keys:
    #
    #   * :ESCAPED (Bundler::URI::PATTERN::ESCAPED in default)
    #   * :UNRESERVED (Bundler::URI::PATTERN::UNRESERVED in default)
    #   * :DOMLABEL (Bundler::URI::PATTERN::DOMLABEL in default)
    #   * :TOPLABEL (Bundler::URI::PATTERN::TOPLABEL in default)
    #   * :HOSTNAME (Bundler::URI::PATTERN::HOSTNAME in default)
    #
    # == Examples
    #
    #   p = Bundler::URI::Parser.new(:ESCAPED => "(?:%[a-fA-F0-9]{2}|%u[a-fA-F0-9]{4})")
    #   u = p.parse("http://example.jp/%uABCD") #=> #<Bundler::URI::HTTP http://example.jp/%uABCD>
    #   Bundler::URI.parse(u.to_s) #=> raises Bundler::URI::InvalidURIError
    #
    #   s = "http://example.com/ABCD"
    #   u1 = p.parse(s) #=> #<Bundler::URI::HTTP http://example.com/ABCD>
    #   u2 = Bundler::URI.parse(s) #=> #<Bundler::URI::HTTP http://example.com/ABCD>
    #   u1 == u2 #=> true
    #   u1.eql?(u2) #=> false
    #
    def initialize(opts = {})
      @pattern = initialize_pattern(opts)
      @pattern.each_value(&:freeze)
      @pattern.freeze

      @regexp = initialize_regexp(@pattern)
      @regexp.each_value(&:freeze)
      @regexp.freeze
    end

    # The Hash of patterns.
    #
    # See also Bundler::URI::Parser.initialize_pattern.
    attr_reader :pattern

    # The Hash of Regexp.
    #
    # See also Bundler::URI::Parser.initialize_regexp.
    attr_reader :regexp

    # Returns a split Bundler::URI against regexp[:ABS_URI].
    def split(uri)
      case uri
      when ''
        # null uri

      when @regexp[:ABS_URI]
        scheme, opaque, userinfo, host, port,
          registry, path, query, fragment = $~[1..-1]

        # Bundler::URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]

        # absoluteURI   = scheme ":" ( hier_part | opaque_part )
        # hier_part     = ( net_path | abs_path ) [ "?" query ]
        # opaque_part   = uric_no_slash *uric

        # abs_path      = "/"  path_segments
        # net_path      = "//" authority [ abs_path ]

        # authority     = server | reg_name
        # server        = [ [ userinfo "@" ] hostport ]

        if !scheme
          raise InvalidURIError,
            "bad Bundler::URI(absolute but no scheme): #{uri}"
        end
        if !opaque && (!path && (!host && !registry))
          raise InvalidURIError,
            "bad Bundler::URI(absolute but no path): #{uri}"
        end

      when @regexp[:REL_URI]
        scheme = nil
        opaque = nil

        userinfo, host, port, registry,
          rel_segment, abs_path, query, fragment = $~[1..-1]
        if rel_segment && abs_path
          path = rel_segment + abs_path
        elsif rel_segment
          path = rel_segment
        elsif abs_path
          path = abs_path
        end

        # Bundler::URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]

        # relativeURI   = ( net_path | abs_path | rel_path ) [ "?" query ]

        # net_path      = "//" authority [ abs_path ]
        # abs_path      = "/"  path_segments
        # rel_path      = rel_segment [ abs_path ]

        # authority     = server | reg_name
        # server        = [ [ userinfo "@" ] hostport ]

      else
        raise InvalidURIError, "bad Bundler::URI(is not Bundler::URI?): #{uri}"
      end

      path = '' if !path && !opaque # (see RFC2396 Section 5.2)
      ret = [
        scheme,
        userinfo, host, port,         # X
        registry,                     # X
        path,                         # Y
        opaque,                       # Y
        query,
        fragment
      ]
      return ret
    end

    #
    # == Args
    #
    # +uri+::
    #    String
    #
    # == Description
    #
    # Parses +uri+ and constructs either matching Bundler::URI scheme object
    # (File, FTP, HTTP, HTTPS, LDAP, LDAPS, or MailTo) or Bundler::URI::Generic.
    #
    # == Usage
    #
    #   p = Bundler::URI::Parser.new
    #   p.parse("ldap://ldap.example.com/dc=example?user=john")
    #   #=> #<Bundler::URI::LDAP ldap://ldap.example.com/dc=example?user=john>
    #
    def parse(uri)
      scheme, userinfo, host, port,
        registry, path, opaque, query, fragment = self.split(uri)

      if scheme && Bundler::URI.scheme_list.include?(scheme.upcase)
        Bundler::URI.scheme_list[scheme.upcase].new(scheme, userinfo, host, port,
                                           registry, path, opaque, query,
                                           fragment, self)
      else
        Generic.new(scheme, userinfo, host, port,
                    registry, path, opaque, query,
                    fragment, self)
      end
    end


    #
    # == Args
    #
    # +uris+::
    #    an Array of Strings
    #
    # == Description
    #
    # Attempts to parse and merge a set of URIs.
    #
    def join(*uris)
      uris[0] = convert_to_uri(uris[0])
      uris.inject :merge
    end

    #
    # :call-seq:
    #   extract( str )
    #   extract( str, schemes )
    #   extract( str, schemes ) {|item| block }
    #
    # == Args
    #
    # +str+::
    #    String to search
    # +schemes+::
    #    Patterns to apply to +str+
    #
    # == Description
    #
    # Attempts to parse and merge a set of URIs.
    # If no +block+ given, then returns the result,
    # else it calls +block+ for each element in result.
    #
    # See also Bundler::URI::Parser.make_regexp.
    #
    def extract(str, schemes = nil)
      if block_given?
        str.scan(make_regexp(schemes)) { yield $& }
        nil
      else
        result = []
        str.scan(make_regexp(schemes)) { result.push $& }
        result
      end
    end

    # Returns Regexp that is default self.regexp[:ABS_URI_REF],
    # unless +schemes+ is provided. Then it is a Regexp.union with self.pattern[:X_ABS_URI].
    def make_regexp(schemes = nil)
      unless schemes
        @regexp[:ABS_URI_REF]
      else
        /(?=#{Regexp.union(*schemes)}:)#{@pattern[:X_ABS_URI]}/x
      end
    end

    #
    # :call-seq:
    #   escape( str )
    #   escape( str, unsafe )
    #
    # == Args
    #
    # +str+::
    #    String to make safe
    # +unsafe+::
    #    Regexp to apply. Defaults to self.regexp[:UNSAFE]
    #
    # == Description
    #
    # Constructs a safe String from +str+, removing unsafe characters,
    # replacing them with codes.
    #
    def escape(str, unsafe = @regexp[:UNSAFE])
      unless unsafe.kind_of?(Regexp)
        # perhaps unsafe is String object
        unsafe = Regexp.new("[#{Regexp.quote(unsafe)}]", false)
      end
      str.gsub(unsafe) do
        us = $&
        tmp = ''
        us.each_byte do |uc|
          tmp << sprintf('%%%02X', uc)
        end
        tmp
      end.force_encoding(Encoding::US_ASCII)
    end

    #
    # :call-seq:
    #   unescape( str )
    #   unescape( str, escaped )
    #
    # == Args
    #
    # +str+::
    #    String to remove escapes from
    # +escaped+::
    #    Regexp to apply. Defaults to self.regexp[:ESCAPED]
    #
    # == Description
    #
    # Removes escapes from +str+.
    #
    def unescape(str, escaped = @regexp[:ESCAPED])
      enc = str.encoding
      enc = Encoding::UTF_8 if enc == Encoding::US_ASCII
      str.gsub(escaped) { [$&[1, 2]].pack('H2').force_encoding(enc) }
    end

    @@to_s = Kernel.instance_method(:to_s)
    def inspect
      @@to_s.bind_call(self)
    end

    private

    # Constructs the default Hash of patterns.
    def initialize_pattern(opts = {})
      ret = {}
      ret[:ESCAPED] = escaped = (opts.delete(:ESCAPED) || PATTERN::ESCAPED)
      ret[:UNRESERVED] = unreserved = opts.delete(:UNRESERVED) || PATTERN::UNRESERVED
      ret[:RESERVED] = reserved = opts.delete(:RESERVED) || PATTERN::RESERVED
      ret[:DOMLABEL] = opts.delete(:DOMLABEL) || PATTERN::DOMLABEL
      ret[:TOPLABEL] = opts.delete(:TOPLABEL) || PATTERN::TOPLABEL
      ret[:HOSTNAME] = hostname = opts.delete(:HOSTNAME)

      # RFC 2396 (Bundler::URI Generic Syntax)
      # RFC 2732 (IPv6 Literal Addresses in URL's)
      # RFC 2373 (IPv6 Addressing Architecture)

      # uric          = reserved | unreserved | escaped
      ret[:URIC] = uric = "(?:[#{unreserved}#{reserved}]|#{escaped})"
      # uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" |
      #                 "&" | "=" | "+" | "$" | ","
      ret[:URIC_NO_SLASH] = uric_no_slash = "(?:[#{unreserved};?:@&=+$,]|#{escaped})"
      # query         = *uric
      ret[:QUERY] = query = "#{uric}*"
      # fragment      = *uric
      ret[:FRAGMENT] = fragment = "#{uric}*"

      # hostname      = *( domainlabel "." ) toplabel [ "." ]
      # reg-name      = *( unreserved / pct-encoded / sub-delims ) # RFC3986
      unless hostname
        ret[:HOSTNAME] = hostname = "(?:[a-zA-Z0-9\\-.]|%\\h\\h)+"
      end

      # RFC 2373, APPENDIX B:
      # IPv6address = hexpart [ ":" IPv4address ]
      # IPv4address   = 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT
      # hexpart = hexseq | hexseq "::" [ hexseq ] | "::" [ hexseq ]
      # hexseq  = hex4 *( ":" hex4)
      # hex4    = 1*4HEXDIG
      #
      # XXX: This definition has a flaw. "::" + IPv4address must be
      # allowed too.  Here is a replacement.
      #
      # IPv4address = 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT
      ret[:IPV4ADDR] = ipv4addr = "\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}"
      # hex4     = 1*4HEXDIG
      hex4 = "[#{PATTERN::HEX}]{1,4}"
      # lastpart = hex4 | IPv4address
      lastpart = "(?:#{hex4}|#{ipv4addr})"
      # hexseq1  = *( hex4 ":" ) hex4
      hexseq1 = "(?:#{hex4}:)*#{hex4}"
      # hexseq2  = *( hex4 ":" ) lastpart
      hexseq2 = "(?:#{hex4}:)*#{lastpart}"
      # IPv6address = hexseq2 | [ hexseq1 ] "::" [ hexseq2 ]
      ret[:IPV6ADDR] = ipv6addr = "(?:#{hexseq2}|(?:#{hexseq1})?::(?:#{hexseq2})?)"

      # IPv6prefix  = ( hexseq1 | [ hexseq1 ] "::" [ hexseq1 ] ) "/" 1*2DIGIT
      # unused

      # ipv6reference = "[" IPv6address "]" (RFC 2732)
      ret[:IPV6REF] = ipv6ref = "\\[#{ipv6addr}\\]"

      # host          = hostname | IPv4address
      # host          = hostname | IPv4address | IPv6reference (RFC 2732)
      ret[:HOST] = host = "(?:#{hostname}|#{ipv4addr}|#{ipv6ref})"
      # port          = *digit
      ret[:PORT] = port = '\d*'
      # hostport      = host [ ":" port ]
      ret[:HOSTPORT] = hostport = "#{host}(?::#{port})?"

      # userinfo      = *( unreserved | escaped |
      #                    ";" | ":" | "&" | "=" | "+" | "$" | "," )
      ret[:USERINFO] = userinfo = "(?:[#{unreserved};:&=+$,]|#{escaped})*"

      # pchar         = unreserved | escaped |
      #                 ":" | "@" | "&" | "=" | "+" | "$" | ","
      pchar = "(?:[#{unreserved}:@&=+$,]|#{escaped})"
      # param         = *pchar
      param = "#{pchar}*"
      # segment       = *pchar *( ";" param )
      segment = "#{pchar}*(?:;#{param})*"
      # path_segments = segment *( "/" segment )
      ret[:PATH_SEGMENTS] = path_segments = "#{segment}(?:/#{segment})*"

      # server        = [ [ userinfo "@" ] hostport ]
      server = "(?:#{userinfo}@)?#{hostport}"
      # reg_name      = 1*( unreserved | escaped | "$" | "," |
      #                     ";" | ":" | "@" | "&" | "=" | "+" )
      ret[:REG_NAME] = reg_name = "(?:[#{unreserved}$,;:@&=+]|#{escaped})+"
      # authority     = server | reg_name
      authority = "(?:#{server}|#{reg_name})"

      # rel_segment   = 1*( unreserved | escaped |
      #                     ";" | "@" | "&" | "=" | "+" | "$" | "," )
      ret[:REL_SEGMENT] = rel_segment = "(?:[#{unreserved};@&=+$,]|#{escaped})+"

      # scheme        = alpha *( alpha | digit | "+" | "-" | "." )
      ret[:SCHEME] = scheme = "[#{PATTERN::ALPHA}][\\-+.#{PATTERN::ALPHA}\\d]*"

      # abs_path      = "/"  path_segments
      ret[:ABS_PATH] = abs_path = "/#{path_segments}"
      # rel_path      = rel_segment [ abs_path ]
      ret[:REL_PATH] = rel_path = "#{rel_segment}(?:#{abs_path})?"
      # net_path      = "//" authority [ abs_path ]
      ret[:NET_PATH] = net_path = "//#{authority}(?:#{abs_path})?"

      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      ret[:HIER_PART] = hier_part = "(?:#{net_path}|#{abs_path})(?:\\?(?:#{query}))?"
      # opaque_part   = uric_no_slash *uric
      ret[:OPAQUE_PART] = opaque_part = "#{uric_no_slash}#{uric}*"

      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      ret[:ABS_URI] = abs_uri = "#{scheme}:(?:#{hier_part}|#{opaque_part})"
      # relativeURI   = ( net_path | abs_path | rel_path ) [ "?" query ]
      ret[:REL_URI] = rel_uri = "(?:#{net_path}|#{abs_path}|#{rel_path})(?:\\?#{query})?"

      # Bundler::URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]
      ret[:URI_REF] = "(?:#{abs_uri}|#{rel_uri})?(?:##{fragment})?"

      ret[:X_ABS_URI] = "
        (#{scheme}):                           (?# 1: scheme)
        (?:
           (#{opaque_part})                    (?# 2: opaque)
        |
           (?:(?:
             //(?:
                 (?:(?:(#{userinfo})@)?        (?# 3: userinfo)
                   (?:(#{host})(?::(\\d*))?))? (?# 4: host, 5: port)
               |
                 (#{reg_name})                 (?# 6: registry)
               )
             |
             (?!//))                           (?# XXX: '//' is the mark for hostport)
             (#{abs_path})?                    (?# 7: path)
           )(?:\\?(#{query}))?                 (?# 8: query)
        )
        (?:\\#(#{fragment}))?                  (?# 9: fragment)
      "

      ret[:X_REL_URI] = "
        (?:
          (?:
            //
            (?:
              (?:(#{userinfo})@)?       (?# 1: userinfo)
                (#{host})?(?::(\\d*))?  (?# 2: host, 3: port)
            |
              (#{reg_name})             (?# 4: registry)
            )
          )
        |
          (#{rel_segment})              (?# 5: rel_segment)
        )?
        (#{abs_path})?                  (?# 6: abs_path)
        (?:\\?(#{query}))?              (?# 7: query)
        (?:\\#(#{fragment}))?           (?# 8: fragment)
      "

      ret
    end

    # Constructs the default Hash of Regexp's.
    def initialize_regexp(pattern)
      ret = {}

      # for Bundler::URI::split
      ret[:ABS_URI] = Regexp.new('\A\s*' + pattern[:X_ABS_URI] + '\s*\z', Regexp::EXTENDED)
      ret[:REL_URI] = Regexp.new('\A\s*' + pattern[:X_REL_URI] + '\s*\z', Regexp::EXTENDED)

      # for Bundler::URI::extract
      ret[:URI_REF]     = Regexp.new(pattern[:URI_REF])
      ret[:ABS_URI_REF] = Regexp.new(pattern[:X_ABS_URI], Regexp::EXTENDED)
      ret[:REL_URI_REF] = Regexp.new(pattern[:X_REL_URI], Regexp::EXTENDED)

      # for Bundler::URI::escape/unescape
      ret[:ESCAPED] = Regexp.new(pattern[:ESCAPED])
      ret[:UNSAFE]  = Regexp.new("[^#{pattern[:UNRESERVED]}#{pattern[:RESERVED]}]")

      # for Generic#initialize
      ret[:SCHEME]   = Regexp.new("\\A#{pattern[:SCHEME]}\\z")
      ret[:USERINFO] = Regexp.new("\\A#{pattern[:USERINFO]}\\z")
      ret[:HOST]     = Regexp.new("\\A#{pattern[:HOST]}\\z")
      ret[:PORT]     = Regexp.new("\\A#{pattern[:PORT]}\\z")
      ret[:OPAQUE]   = Regexp.new("\\A#{pattern[:OPAQUE_PART]}\\z")
      ret[:REGISTRY] = Regexp.new("\\A#{pattern[:REG_NAME]}\\z")
      ret[:ABS_PATH] = Regexp.new("\\A#{pattern[:ABS_PATH]}\\z")
      ret[:REL_PATH] = Regexp.new("\\A#{pattern[:REL_PATH]}\\z")
      ret[:QUERY]    = Regexp.new("\\A#{pattern[:QUERY]}\\z")
      ret[:FRAGMENT] = Regexp.new("\\A#{pattern[:FRAGMENT]}\\z")

      ret
    end

    def convert_to_uri(uri)
      if uri.is_a?(Bundler::URI::Generic)
        uri
      elsif uri = String.try_convert(uri)
        parse(uri)
      else
        raise ArgumentError,
          "bad argument (expected Bundler::URI object or Bundler::URI string)"
      end
    end

  end # class Parser
end # module Bundler::URI
PK=H[���M0 0 Gshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/mailto.rbnu�[���# frozen_string_literal: false
# = uri/mailto.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'generic'

module Bundler::URI

  #
  # RFC6068, the mailto URL scheme.
  #
  class MailTo < Generic
    include REGEXP

    # A Default port of nil for Bundler::URI::MailTo.
    DEFAULT_PORT = nil

    # An Array of the available components for Bundler::URI::MailTo.
    COMPONENT = [ :scheme, :to, :headers ].freeze

    # :stopdoc:
    #  "hname" and "hvalue" are encodings of an RFC 822 header name and
    #  value, respectively. As with "to", all URL reserved characters must
    #  be encoded.
    #
    #  "#mailbox" is as specified in RFC 822 [RFC822]. This means that it
    #  consists of zero or more comma-separated mail addresses, possibly
    #  including "phrase" and "comment" components. Note that all URL
    #  reserved characters in "to" must be encoded: in particular,
    #  parentheses, commas, and the percent sign ("%"), which commonly occur
    #  in the "mailbox" syntax.
    #
    #  Within mailto URLs, the characters "?", "=", "&" are reserved.

    # ; RFC 6068
    # hfields      = "?" hfield *( "&" hfield )
    # hfield       = hfname "=" hfvalue
    # hfname       = *qchar
    # hfvalue      = *qchar
    # qchar        = unreserved / pct-encoded / some-delims
    # some-delims  = "!" / "$" / "'" / "(" / ")" / "*"
    #              / "+" / "," / ";" / ":" / "@"
    #
    # ; RFC3986
    # unreserved   = ALPHA / DIGIT / "-" / "." / "_" / "~"
    # pct-encoded  = "%" HEXDIG HEXDIG
    HEADER_REGEXP  = /\A(?<hfield>(?:%\h\h|[!$'-.0-;@-Z_a-z~])*=(?:%\h\h|[!$'-.0-;@-Z_a-z~])*)(?:&\g<hfield>)*\z/
    # practical regexp for email address
    # https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address
    EMAIL_REGEXP = /\A[a-zA-Z0-9.!\#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*\z/
    # :startdoc:

    #
    # == Description
    #
    # Creates a new Bundler::URI::MailTo object from components, with syntax checking.
    #
    # Components can be provided as an Array or Hash. If an Array is used,
    # the components must be supplied as <code>[to, headers]</code>.
    #
    # If a Hash is used, the keys are the component names preceded by colons.
    #
    # The headers can be supplied as a pre-encoded string, such as
    # <code>"subject=subscribe&cc=address"</code>, or as an Array of Arrays
    # like <code>[['subject', 'subscribe'], ['cc', 'address']]</code>.
    #
    # Examples:
    #
    #    require 'bundler/vendor/uri/lib/uri'
    #
    #    m1 = Bundler::URI::MailTo.build(['joe@example.com', 'subject=Ruby'])
    #    m1.to_s  # => "mailto:joe@example.com?subject=Ruby"
    #
    #    m2 = Bundler::URI::MailTo.build(['john@example.com', [['Subject', 'Ruby'], ['Cc', 'jack@example.com']]])
    #    m2.to_s  # => "mailto:john@example.com?Subject=Ruby&Cc=jack@example.com"
    #
    #    m3 = Bundler::URI::MailTo.build({:to => 'listman@example.com', :headers => [['subject', 'subscribe']]})
    #    m3.to_s  # => "mailto:listman@example.com?subject=subscribe"
    #
    def self.build(args)
      tmp = Util.make_components_hash(self, args)

      case tmp[:to]
      when Array
        tmp[:opaque] = tmp[:to].join(',')
      when String
        tmp[:opaque] = tmp[:to].dup
      else
        tmp[:opaque] = ''
      end

      if tmp[:headers]
        query =
          case tmp[:headers]
          when Array
            tmp[:headers].collect { |x|
              if x.kind_of?(Array)
                x[0] + '=' + x[1..-1].join
              else
                x.to_s
              end
            }.join('&')
          when Hash
            tmp[:headers].collect { |h,v|
              h + '=' + v
            }.join('&')
          else
            tmp[:headers].to_s
          end
        unless query.empty?
          tmp[:opaque] << '?' << query
        end
      end

      super(tmp)
    end

    #
    # == Description
    #
    # Creates a new Bundler::URI::MailTo object from generic URL components with
    # no syntax checking.
    #
    # This method is usually called from Bundler::URI::parse, which checks
    # the validity of each component.
    #
    def initialize(*arg)
      super(*arg)

      @to = nil
      @headers = []

      # The RFC3986 parser does not normally populate opaque
      @opaque = "?#{@query}" if @query && !@opaque

      unless @opaque
        raise InvalidComponentError,
          "missing opaque part for mailto URL"
      end
      to, header = @opaque.split('?', 2)
      # allow semicolon as a addr-spec separator
      # http://support.microsoft.com/kb/820868
      unless /\A(?:[^@,;]+@[^@,;]+(?:\z|[,;]))*\z/ =~ to
        raise InvalidComponentError,
          "unrecognised opaque part for mailtoURL: #{@opaque}"
      end

      if arg[10] # arg_check
        self.to = to
        self.headers = header
      else
        set_to(to)
        set_headers(header)
      end
    end

    # The primary e-mail address of the URL, as a String.
    attr_reader :to

    # E-mail headers set by the URL, as an Array of Arrays.
    attr_reader :headers

    # Checks the to +v+ component.
    def check_to(v)
      return true unless v
      return true if v.size == 0

      v.split(/[,;]/).each do |addr|
        # check url safety as path-rootless
        if /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*\z/ !~ addr
          raise InvalidComponentError,
            "an address in 'to' is invalid as Bundler::URI #{addr.dump}"
        end

        # check addr-spec
        # don't s/\+/ /g
        addr.gsub!(/%\h\h/, Bundler::URI::TBLDECWWWCOMP_)
        if EMAIL_REGEXP !~ addr
          raise InvalidComponentError,
            "an address in 'to' is invalid as uri-escaped addr-spec #{addr.dump}"
        end
      end

      true
    end
    private :check_to

    # Private setter for to +v+.
    def set_to(v)
      @to = v
    end
    protected :set_to

    # Setter for to +v+.
    def to=(v)
      check_to(v)
      set_to(v)
      v
    end

    # Checks the headers +v+ component against either
    # * HEADER_REGEXP
    def check_headers(v)
      return true unless v
      return true if v.size == 0
      if HEADER_REGEXP !~ v
        raise InvalidComponentError,
          "bad component(expected opaque component): #{v}"
      end

      true
    end
    private :check_headers

    # Private setter for headers +v+.
    def set_headers(v)
      @headers = []
      if v
        v.split('&').each do |x|
          @headers << x.split(/=/, 2)
        end
      end
    end
    protected :set_headers

    # Setter for headers +v+.
    def headers=(v)
      check_headers(v)
      set_headers(v)
      v
    end

    # Constructs String from Bundler::URI.
    def to_s
      @scheme + ':' +
        if @to
          @to
        else
          ''
        end +
        if @headers.size > 0
          '?' + @headers.collect{|x| x.join('=')}.join('&')
        else
          ''
        end +
        if @fragment
          '#' + @fragment
        else
          ''
        end
    end

    # Returns the RFC822 e-mail text equivalent of the URL, as a String.
    #
    # Example:
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   uri = Bundler::URI.parse("mailto:ruby-list@ruby-lang.org?Subject=subscribe&cc=myaddr")
    #   uri.to_mailtext
    #   # => "To: ruby-list@ruby-lang.org\nSubject: subscribe\nCc: myaddr\n\n\n"
    #
    def to_mailtext
      to = Bundler::URI.decode_www_form_component(@to)
      head = ''
      body = ''
      @headers.each do |x|
        case x[0]
        when 'body'
          body = Bundler::URI.decode_www_form_component(x[1])
        when 'to'
          to << ', ' + Bundler::URI.decode_www_form_component(x[1])
        else
          head << Bundler::URI.decode_www_form_component(x[0]).capitalize + ': ' +
            Bundler::URI.decode_www_form_component(x[1])  + "\n"
        end
      end

      "To: #{to}
#{head}
#{body}
"
    end
    alias to_rfc822text to_mailtext
  end

  @@schemes['MAILTO'] = MailTo
end
PK=H[M}����Eshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/file.rbnu�[���# frozen_string_literal: true

require_relative 'generic'

module Bundler::URI

  #
  # The "file" Bundler::URI is defined by RFC8089.
  #
  class File < Generic
    # A Default port of nil for Bundler::URI::File.
    DEFAULT_PORT = nil

    #
    # An Array of the available components for Bundler::URI::File.
    #
    COMPONENT = [
      :scheme,
      :host,
      :path
    ].freeze

    #
    # == Description
    #
    # Creates a new Bundler::URI::File object from components, with syntax checking.
    #
    # The components accepted are +host+ and +path+.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[host, path]</code>.
    #
    # Examples:
    #
    #     require 'bundler/vendor/uri/lib/uri'
    #
    #     uri1 = Bundler::URI::File.build(['host.example.com', '/path/file.zip'])
    #     uri1.to_s  # => "file://host.example.com/path/file.zip"
    #
    #     uri2 = Bundler::URI::File.build({:host => 'host.example.com',
    #       :path => '/ruby/src'})
    #     uri2.to_s  # => "file://host.example.com/ruby/src"
    #
    def self.build(args)
      tmp = Util::make_components_hash(self, args)
      super(tmp)
    end

    # Protected setter for the host component +v+.
    #
    # See also Bundler::URI::Generic.host=.
    #
    def set_host(v)
      v = "" if v.nil? || v == "localhost"
      @host = v
    end

    # do nothing
    def set_port(v)
    end

    # raise InvalidURIError
    def check_userinfo(user)
      raise Bundler::URI::InvalidURIError, "can not set userinfo for file Bundler::URI"
    end

    # raise InvalidURIError
    def check_user(user)
      raise Bundler::URI::InvalidURIError, "can not set user for file Bundler::URI"
    end

    # raise InvalidURIError
    def check_password(user)
      raise Bundler::URI::InvalidURIError, "can not set password for file Bundler::URI"
    end

    # do nothing
    def set_userinfo(v)
    end

    # do nothing
    def set_user(v)
    end

    # do nothing
    def set_password(v)
    end
  end

  @@schemes['FILE'] = File
end
PK=H[�*@�Q�QGshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/common.rbnu�[���# frozen_string_literal: true
#--
# = uri/common.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Revision:: $Id$
# License::
#   You can redistribute it and/or modify it under the same term as Ruby.
#
# See Bundler::URI for general documentation
#

require_relative "rfc2396_parser"
require_relative "rfc3986_parser"

module Bundler::URI
  REGEXP = RFC2396_REGEXP
  Parser = RFC2396_Parser
  RFC3986_PARSER = RFC3986_Parser.new

  # Bundler::URI::Parser.new
  DEFAULT_PARSER = Parser.new
  DEFAULT_PARSER.pattern.each_pair do |sym, str|
    unless REGEXP::PATTERN.const_defined?(sym)
      REGEXP::PATTERN.const_set(sym, str)
    end
  end
  DEFAULT_PARSER.regexp.each_pair do |sym, str|
    const_set(sym, str)
  end

  module Util # :nodoc:
    def make_components_hash(klass, array_hash)
      tmp = {}
      if array_hash.kind_of?(Array) &&
          array_hash.size == klass.component.size - 1
        klass.component[1..-1].each_index do |i|
          begin
            tmp[klass.component[i + 1]] = array_hash[i].clone
          rescue TypeError
            tmp[klass.component[i + 1]] = array_hash[i]
          end
        end

      elsif array_hash.kind_of?(Hash)
        array_hash.each do |key, value|
          begin
            tmp[key] = value.clone
          rescue TypeError
            tmp[key] = value
          end
        end
      else
        raise ArgumentError,
          "expected Array of or Hash of components of #{klass} (#{klass.component[1..-1].join(', ')})"
      end
      tmp[:scheme] = klass.to_s.sub(/\A.*::/, '').downcase

      return tmp
    end
    module_function :make_components_hash
  end

  # Module for escaping unsafe characters with codes.
  module Escape
    #
    # == Synopsis
    #
    #   Bundler::URI.escape(str [, unsafe])
    #
    # == Args
    #
    # +str+::
    #   String to replaces in.
    # +unsafe+::
    #   Regexp that matches all symbols that must be replaced with codes.
    #   By default uses <tt>UNSAFE</tt>.
    #   When this argument is a String, it represents a character set.
    #
    # == Description
    #
    # Escapes the string, replacing all unsafe characters with codes.
    #
    # This method is obsolete and should not be used. Instead, use
    # CGI.escape, Bundler::URI.encode_www_form or Bundler::URI.encode_www_form_component
    # depending on your specific use case.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   enc_uri = Bundler::URI.escape("http://example.com/?a=\11\15")
    #   # => "http://example.com/?a=%09%0D"
    #
    #   Bundler::URI.unescape(enc_uri)
    #   # => "http://example.com/?a=\t\r"
    #
    #   Bundler::URI.escape("@?@!", "!?")
    #   # => "@%3F@%21"
    #
    def escape(*arg)
      warn "Bundler::URI.escape is obsolete", uplevel: 1
      DEFAULT_PARSER.escape(*arg)
    end
    alias encode escape
    #
    # == Synopsis
    #
    #   Bundler::URI.unescape(str)
    #
    # == Args
    #
    # +str+::
    #   String to unescape.
    #
    # == Description
    #
    # This method is obsolete and should not be used. Instead, use
    # CGI.unescape, Bundler::URI.decode_www_form or Bundler::URI.decode_www_form_component
    # depending on your specific use case.
    #
    # == Usage
    #
    #   require 'bundler/vendor/uri/lib/uri'
    #
    #   enc_uri = Bundler::URI.escape("http://example.com/?a=\11\15")
    #   # => "http://example.com/?a=%09%0D"
    #
    #   Bundler::URI.unescape(enc_uri)
    #   # => "http://example.com/?a=\t\r"
    #
    def unescape(*arg)
      warn "Bundler::URI.unescape is obsolete", uplevel: 1
      DEFAULT_PARSER.unescape(*arg)
    end
    alias decode unescape
  end # module Escape

  extend Escape
  include REGEXP

  @@schemes = {}
  # Returns a Hash of the defined schemes.
  def self.scheme_list
    @@schemes
  end

  #
  # Base class for all Bundler::URI exceptions.
  #
  class Error < StandardError; end
  #
  # Not a Bundler::URI.
  #
  class InvalidURIError < Error; end
  #
  # Not a Bundler::URI component.
  #
  class InvalidComponentError < Error; end
  #
  # Bundler::URI is valid, bad usage is not.
  #
  class BadURIError < Error; end

  #
  # == Synopsis
  #
  #   Bundler::URI::split(uri)
  #
  # == Args
  #
  # +uri+::
  #   String with Bundler::URI.
  #
  # == Description
  #
  # Splits the string on following parts and returns array with result:
  #
  # * Scheme
  # * Userinfo
  # * Host
  # * Port
  # * Registry
  # * Path
  # * Opaque
  # * Query
  # * Fragment
  #
  # == Usage
  #
  #   require 'bundler/vendor/uri/lib/uri'
  #
  #   Bundler::URI.split("http://www.ruby-lang.org/")
  #   # => ["http", nil, "www.ruby-lang.org", nil, nil, "/", nil, nil, nil]
  #
  def self.split(uri)
    RFC3986_PARSER.split(uri)
  end

  #
  # == Synopsis
  #
  #   Bundler::URI::parse(uri_str)
  #
  # == Args
  #
  # +uri_str+::
  #   String with Bundler::URI.
  #
  # == Description
  #
  # Creates one of the Bundler::URI's subclasses instance from the string.
  #
  # == Raises
  #
  # Bundler::URI::InvalidURIError::
  #   Raised if Bundler::URI given is not a correct one.
  #
  # == Usage
  #
  #   require 'bundler/vendor/uri/lib/uri'
  #
  #   uri = Bundler::URI.parse("http://www.ruby-lang.org/")
  #   # => #<Bundler::URI::HTTP http://www.ruby-lang.org/>
  #   uri.scheme
  #   # => "http"
  #   uri.host
  #   # => "www.ruby-lang.org"
  #
  # It's recommended to first ::escape the provided +uri_str+ if there are any
  # invalid Bundler::URI characters.
  #
  def self.parse(uri)
    RFC3986_PARSER.parse(uri)
  end

  #
  # == Synopsis
  #
  #   Bundler::URI::join(str[, str, ...])
  #
  # == Args
  #
  # +str+::
  #   String(s) to work with, will be converted to RFC3986 URIs before merging.
  #
  # == Description
  #
  # Joins URIs.
  #
  # == Usage
  #
  #   require 'bundler/vendor/uri/lib/uri'
  #
  #   Bundler::URI.join("http://example.com/","main.rbx")
  #   # => #<Bundler::URI::HTTP http://example.com/main.rbx>
  #
  #   Bundler::URI.join('http://example.com', 'foo')
  #   # => #<Bundler::URI::HTTP http://example.com/foo>
  #
  #   Bundler::URI.join('http://example.com', '/foo', '/bar')
  #   # => #<Bundler::URI::HTTP http://example.com/bar>
  #
  #   Bundler::URI.join('http://example.com', '/foo', 'bar')
  #   # => #<Bundler::URI::HTTP http://example.com/bar>
  #
  #   Bundler::URI.join('http://example.com', '/foo/', 'bar')
  #   # => #<Bundler::URI::HTTP http://example.com/foo/bar>
  #
  def self.join(*str)
    RFC3986_PARSER.join(*str)
  end

  #
  # == Synopsis
  #
  #   Bundler::URI::extract(str[, schemes][,&blk])
  #
  # == Args
  #
  # +str+::
  #   String to extract URIs from.
  # +schemes+::
  #   Limit Bundler::URI matching to specific schemes.
  #
  # == Description
  #
  # Extracts URIs from a string. If block given, iterates through all matched URIs.
  # Returns nil if block given or array with matches.
  #
  # == Usage
  #
  #   require "bundler/vendor/uri/lib/uri"
  #
  #   Bundler::URI.extract("text here http://foo.example.org/bla and here mailto:test@example.com and here also.")
  #   # => ["http://foo.example.com/bla", "mailto:test@example.com"]
  #
  def self.extract(str, schemes = nil, &block)
    warn "Bundler::URI.extract is obsolete", uplevel: 1 if $VERBOSE
    DEFAULT_PARSER.extract(str, schemes, &block)
  end

  #
  # == Synopsis
  #
  #   Bundler::URI::regexp([match_schemes])
  #
  # == Args
  #
  # +match_schemes+::
  #   Array of schemes. If given, resulting regexp matches to URIs
  #   whose scheme is one of the match_schemes.
  #
  # == Description
  #
  # Returns a Regexp object which matches to Bundler::URI-like strings.
  # The Regexp object returned by this method includes arbitrary
  # number of capture group (parentheses).  Never rely on it's number.
  #
  # == Usage
  #
  #   require 'bundler/vendor/uri/lib/uri'
  #
  #   # extract first Bundler::URI from html_string
  #   html_string.slice(Bundler::URI.regexp)
  #
  #   # remove ftp URIs
  #   html_string.sub(Bundler::URI.regexp(['ftp']), '')
  #
  #   # You should not rely on the number of parentheses
  #   html_string.scan(Bundler::URI.regexp) do |*matches|
  #     p $&
  #   end
  #
  def self.regexp(schemes = nil)
    warn "Bundler::URI.regexp is obsolete", uplevel: 1 if $VERBOSE
    DEFAULT_PARSER.make_regexp(schemes)
  end

  TBLENCWWWCOMP_ = {} # :nodoc:
  256.times do |i|
    TBLENCWWWCOMP_[-i.chr] = -('%%%02X' % i)
  end
  TBLENCWWWCOMP_[' '] = '+'
  TBLENCWWWCOMP_.freeze
  TBLDECWWWCOMP_ = {} # :nodoc:
  256.times do |i|
    h, l = i>>4, i&15
    TBLDECWWWCOMP_[-('%%%X%X' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%x%X' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%X%x' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%x%x' % [h, l])] = -i.chr
  end
  TBLDECWWWCOMP_['+'] = ' '
  TBLDECWWWCOMP_.freeze

  # Encodes given +str+ to URL-encoded form data.
  #
  # This method doesn't convert *, -, ., 0-9, A-Z, _, a-z, but does convert SP
  # (ASCII space) to + and converts others to %XX.
  #
  # If +enc+ is given, convert +str+ to the encoding before percent encoding.
  #
  # This is an implementation of
  # http://www.w3.org/TR/2013/CR-html5-20130806/forms.html#url-encoded-form-data.
  #
  # See Bundler::URI.decode_www_form_component, Bundler::URI.encode_www_form.
  def self.encode_www_form_component(str, enc=nil)
    str = str.to_s.dup
    if str.encoding != Encoding::ASCII_8BIT
      if enc && enc != Encoding::ASCII_8BIT
        str.encode!(Encoding::UTF_8, invalid: :replace, undef: :replace)
        str.encode!(enc, fallback: ->(x){"&##{x.ord};"})
      end
      str.force_encoding(Encoding::ASCII_8BIT)
    end
    str.gsub!(/[^*\-.0-9A-Z_a-z]/, TBLENCWWWCOMP_)
    str.force_encoding(Encoding::US_ASCII)
  end

  # Decodes given +str+ of URL-encoded form data.
  #
  # This decodes + to SP.
  #
  # See Bundler::URI.encode_www_form_component, Bundler::URI.decode_www_form.
  def self.decode_www_form_component(str, enc=Encoding::UTF_8)
    raise ArgumentError, "invalid %-encoding (#{str})" if /%(?!\h\h)/ =~ str
    str.b.gsub(/\+|%\h\h/, TBLDECWWWCOMP_).force_encoding(enc)
  end

  # Generates URL-encoded form data from given +enum+.
  #
  # This generates application/x-www-form-urlencoded data defined in HTML5
  # from given an Enumerable object.
  #
  # This internally uses Bundler::URI.encode_www_form_component(str).
  #
  # This method doesn't convert the encoding of given items, so convert them
  # before calling this method if you want to send data as other than original
  # encoding or mixed encoding data. (Strings which are encoded in an HTML5
  # ASCII incompatible encoding are converted to UTF-8.)
  #
  # This method doesn't handle files.  When you send a file, use
  # multipart/form-data.
  #
  # This refers http://url.spec.whatwg.org/#concept-urlencoded-serializer
  #
  #    Bundler::URI.encode_www_form([["q", "ruby"], ["lang", "en"]])
  #    #=> "q=ruby&lang=en"
  #    Bundler::URI.encode_www_form("q" => "ruby", "lang" => "en")
  #    #=> "q=ruby&lang=en"
  #    Bundler::URI.encode_www_form("q" => ["ruby", "perl"], "lang" => "en")
  #    #=> "q=ruby&q=perl&lang=en"
  #    Bundler::URI.encode_www_form([["q", "ruby"], ["q", "perl"], ["lang", "en"]])
  #    #=> "q=ruby&q=perl&lang=en"
  #
  # See Bundler::URI.encode_www_form_component, Bundler::URI.decode_www_form.
  def self.encode_www_form(enum, enc=nil)
    enum.map do |k,v|
      if v.nil?
        encode_www_form_component(k, enc)
      elsif v.respond_to?(:to_ary)
        v.to_ary.map do |w|
          str = encode_www_form_component(k, enc)
          unless w.nil?
            str << '='
            str << encode_www_form_component(w, enc)
          end
        end.join('&')
      else
        str = encode_www_form_component(k, enc)
        str << '='
        str << encode_www_form_component(v, enc)
      end
    end.join('&')
  end

  # Decodes URL-encoded form data from given +str+.
  #
  # This decodes application/x-www-form-urlencoded data
  # and returns an array of key-value arrays.
  #
  # This refers http://url.spec.whatwg.org/#concept-urlencoded-parser,
  # so this supports only &-separator, and doesn't support ;-separator.
  #
  #    ary = Bundler::URI.decode_www_form("a=1&a=2&b=3")
  #    ary                   #=> [['a', '1'], ['a', '2'], ['b', '3']]
  #    ary.assoc('a').last   #=> '1'
  #    ary.assoc('b').last   #=> '3'
  #    ary.rassoc('a').last  #=> '2'
  #    Hash[ary]             #=> {"a"=>"2", "b"=>"3"}
  #
  # See Bundler::URI.decode_www_form_component, Bundler::URI.encode_www_form.
  def self.decode_www_form(str, enc=Encoding::UTF_8, separator: '&', use__charset_: false, isindex: false)
    raise ArgumentError, "the input of #{self.name}.#{__method__} must be ASCII only string" unless str.ascii_only?
    ary = []
    return ary if str.empty?
    enc = Encoding.find(enc)
    str.b.each_line(separator) do |string|
      string.chomp!(separator)
      key, sep, val = string.partition('=')
      if isindex
        if sep.empty?
          val = key
          key = +''
        end
        isindex = false
      end

      if use__charset_ and key == '_charset_' and e = get_encoding(val)
        enc = e
        use__charset_ = false
      end

      key.gsub!(/\+|%\h\h/, TBLDECWWWCOMP_)
      if val
        val.gsub!(/\+|%\h\h/, TBLDECWWWCOMP_)
      else
        val = +''
      end

      ary << [key, val]
    end
    ary.each do |k, v|
      k.force_encoding(enc)
      k.scrub!
      v.force_encoding(enc)
      v.scrub!
    end
    ary
  end

  private
=begin command for WEB_ENCODINGS_
  curl https://encoding.spec.whatwg.org/encodings.json|
  ruby -rjson -e 'H={}
  h={
    "shift_jis"=>"Windows-31J",
    "euc-jp"=>"cp51932",
    "iso-2022-jp"=>"cp50221",
    "x-mac-cyrillic"=>"macCyrillic",
  }
  JSON($<.read).map{|x|x["encodings"]}.flatten.each{|x|
    Encoding.find(n=h.fetch(n=x["name"].downcase,n))rescue next
    x["labels"].each{|y|H[y]=n}
  }
  puts "{"
  H.each{|k,v|puts %[  #{k.dump}=>#{v.dump},]}
  puts "}"
'
=end
  WEB_ENCODINGS_ = {
    "unicode-1-1-utf-8"=>"utf-8",
    "utf-8"=>"utf-8",
    "utf8"=>"utf-8",
    "866"=>"ibm866",
    "cp866"=>"ibm866",
    "csibm866"=>"ibm866",
    "ibm866"=>"ibm866",
    "csisolatin2"=>"iso-8859-2",
    "iso-8859-2"=>"iso-8859-2",
    "iso-ir-101"=>"iso-8859-2",
    "iso8859-2"=>"iso-8859-2",
    "iso88592"=>"iso-8859-2",
    "iso_8859-2"=>"iso-8859-2",
    "iso_8859-2:1987"=>"iso-8859-2",
    "l2"=>"iso-8859-2",
    "latin2"=>"iso-8859-2",
    "csisolatin3"=>"iso-8859-3",
    "iso-8859-3"=>"iso-8859-3",
    "iso-ir-109"=>"iso-8859-3",
    "iso8859-3"=>"iso-8859-3",
    "iso88593"=>"iso-8859-3",
    "iso_8859-3"=>"iso-8859-3",
    "iso_8859-3:1988"=>"iso-8859-3",
    "l3"=>"iso-8859-3",
    "latin3"=>"iso-8859-3",
    "csisolatin4"=>"iso-8859-4",
    "iso-8859-4"=>"iso-8859-4",
    "iso-ir-110"=>"iso-8859-4",
    "iso8859-4"=>"iso-8859-4",
    "iso88594"=>"iso-8859-4",
    "iso_8859-4"=>"iso-8859-4",
    "iso_8859-4:1988"=>"iso-8859-4",
    "l4"=>"iso-8859-4",
    "latin4"=>"iso-8859-4",
    "csisolatincyrillic"=>"iso-8859-5",
    "cyrillic"=>"iso-8859-5",
    "iso-8859-5"=>"iso-8859-5",
    "iso-ir-144"=>"iso-8859-5",
    "iso8859-5"=>"iso-8859-5",
    "iso88595"=>"iso-8859-5",
    "iso_8859-5"=>"iso-8859-5",
    "iso_8859-5:1988"=>"iso-8859-5",
    "arabic"=>"iso-8859-6",
    "asmo-708"=>"iso-8859-6",
    "csiso88596e"=>"iso-8859-6",
    "csiso88596i"=>"iso-8859-6",
    "csisolatinarabic"=>"iso-8859-6",
    "ecma-114"=>"iso-8859-6",
    "iso-8859-6"=>"iso-8859-6",
    "iso-8859-6-e"=>"iso-8859-6",
    "iso-8859-6-i"=>"iso-8859-6",
    "iso-ir-127"=>"iso-8859-6",
    "iso8859-6"=>"iso-8859-6",
    "iso88596"=>"iso-8859-6",
    "iso_8859-6"=>"iso-8859-6",
    "iso_8859-6:1987"=>"iso-8859-6",
    "csisolatingreek"=>"iso-8859-7",
    "ecma-118"=>"iso-8859-7",
    "elot_928"=>"iso-8859-7",
    "greek"=>"iso-8859-7",
    "greek8"=>"iso-8859-7",
    "iso-8859-7"=>"iso-8859-7",
    "iso-ir-126"=>"iso-8859-7",
    "iso8859-7"=>"iso-8859-7",
    "iso88597"=>"iso-8859-7",
    "iso_8859-7"=>"iso-8859-7",
    "iso_8859-7:1987"=>"iso-8859-7",
    "sun_eu_greek"=>"iso-8859-7",
    "csiso88598e"=>"iso-8859-8",
    "csisolatinhebrew"=>"iso-8859-8",
    "hebrew"=>"iso-8859-8",
    "iso-8859-8"=>"iso-8859-8",
    "iso-8859-8-e"=>"iso-8859-8",
    "iso-ir-138"=>"iso-8859-8",
    "iso8859-8"=>"iso-8859-8",
    "iso88598"=>"iso-8859-8",
    "iso_8859-8"=>"iso-8859-8",
    "iso_8859-8:1988"=>"iso-8859-8",
    "visual"=>"iso-8859-8",
    "csisolatin6"=>"iso-8859-10",
    "iso-8859-10"=>"iso-8859-10",
    "iso-ir-157"=>"iso-8859-10",
    "iso8859-10"=>"iso-8859-10",
    "iso885910"=>"iso-8859-10",
    "l6"=>"iso-8859-10",
    "latin6"=>"iso-8859-10",
    "iso-8859-13"=>"iso-8859-13",
    "iso8859-13"=>"iso-8859-13",
    "iso885913"=>"iso-8859-13",
    "iso-8859-14"=>"iso-8859-14",
    "iso8859-14"=>"iso-8859-14",
    "iso885914"=>"iso-8859-14",
    "csisolatin9"=>"iso-8859-15",
    "iso-8859-15"=>"iso-8859-15",
    "iso8859-15"=>"iso-8859-15",
    "iso885915"=>"iso-8859-15",
    "iso_8859-15"=>"iso-8859-15",
    "l9"=>"iso-8859-15",
    "iso-8859-16"=>"iso-8859-16",
    "cskoi8r"=>"koi8-r",
    "koi"=>"koi8-r",
    "koi8"=>"koi8-r",
    "koi8-r"=>"koi8-r",
    "koi8_r"=>"koi8-r",
    "koi8-ru"=>"koi8-u",
    "koi8-u"=>"koi8-u",
    "dos-874"=>"windows-874",
    "iso-8859-11"=>"windows-874",
    "iso8859-11"=>"windows-874",
    "iso885911"=>"windows-874",
    "tis-620"=>"windows-874",
    "windows-874"=>"windows-874",
    "cp1250"=>"windows-1250",
    "windows-1250"=>"windows-1250",
    "x-cp1250"=>"windows-1250",
    "cp1251"=>"windows-1251",
    "windows-1251"=>"windows-1251",
    "x-cp1251"=>"windows-1251",
    "ansi_x3.4-1968"=>"windows-1252",
    "ascii"=>"windows-1252",
    "cp1252"=>"windows-1252",
    "cp819"=>"windows-1252",
    "csisolatin1"=>"windows-1252",
    "ibm819"=>"windows-1252",
    "iso-8859-1"=>"windows-1252",
    "iso-ir-100"=>"windows-1252",
    "iso8859-1"=>"windows-1252",
    "iso88591"=>"windows-1252",
    "iso_8859-1"=>"windows-1252",
    "iso_8859-1:1987"=>"windows-1252",
    "l1"=>"windows-1252",
    "latin1"=>"windows-1252",
    "us-ascii"=>"windows-1252",
    "windows-1252"=>"windows-1252",
    "x-cp1252"=>"windows-1252",
    "cp1253"=>"windows-1253",
    "windows-1253"=>"windows-1253",
    "x-cp1253"=>"windows-1253",
    "cp1254"=>"windows-1254",
    "csisolatin5"=>"windows-1254",
    "iso-8859-9"=>"windows-1254",
    "iso-ir-148"=>"windows-1254",
    "iso8859-9"=>"windows-1254",
    "iso88599"=>"windows-1254",
    "iso_8859-9"=>"windows-1254",
    "iso_8859-9:1989"=>"windows-1254",
    "l5"=>"windows-1254",
    "latin5"=>"windows-1254",
    "windows-1254"=>"windows-1254",
    "x-cp1254"=>"windows-1254",
    "cp1255"=>"windows-1255",
    "windows-1255"=>"windows-1255",
    "x-cp1255"=>"windows-1255",
    "cp1256"=>"windows-1256",
    "windows-1256"=>"windows-1256",
    "x-cp1256"=>"windows-1256",
    "cp1257"=>"windows-1257",
    "windows-1257"=>"windows-1257",
    "x-cp1257"=>"windows-1257",
    "cp1258"=>"windows-1258",
    "windows-1258"=>"windows-1258",
    "x-cp1258"=>"windows-1258",
    "x-mac-cyrillic"=>"macCyrillic",
    "x-mac-ukrainian"=>"macCyrillic",
    "chinese"=>"gbk",
    "csgb2312"=>"gbk",
    "csiso58gb231280"=>"gbk",
    "gb2312"=>"gbk",
    "gb_2312"=>"gbk",
    "gb_2312-80"=>"gbk",
    "gbk"=>"gbk",
    "iso-ir-58"=>"gbk",
    "x-gbk"=>"gbk",
    "gb18030"=>"gb18030",
    "big5"=>"big5",
    "big5-hkscs"=>"big5",
    "cn-big5"=>"big5",
    "csbig5"=>"big5",
    "x-x-big5"=>"big5",
    "cseucpkdfmtjapanese"=>"cp51932",
    "euc-jp"=>"cp51932",
    "x-euc-jp"=>"cp51932",
    "csiso2022jp"=>"cp50221",
    "iso-2022-jp"=>"cp50221",
    "csshiftjis"=>"Windows-31J",
    "ms932"=>"Windows-31J",
    "ms_kanji"=>"Windows-31J",
    "shift-jis"=>"Windows-31J",
    "shift_jis"=>"Windows-31J",
    "sjis"=>"Windows-31J",
    "windows-31j"=>"Windows-31J",
    "x-sjis"=>"Windows-31J",
    "cseuckr"=>"euc-kr",
    "csksc56011987"=>"euc-kr",
    "euc-kr"=>"euc-kr",
    "iso-ir-149"=>"euc-kr",
    "korean"=>"euc-kr",
    "ks_c_5601-1987"=>"euc-kr",
    "ks_c_5601-1989"=>"euc-kr",
    "ksc5601"=>"euc-kr",
    "ksc_5601"=>"euc-kr",
    "windows-949"=>"euc-kr",
    "utf-16be"=>"utf-16be",
    "utf-16"=>"utf-16le",
    "utf-16le"=>"utf-16le",
  } # :nodoc:

  # :nodoc:
  # return encoding or nil
  # http://encoding.spec.whatwg.org/#concept-encoding-get
  def self.get_encoding(label)
    Encoding.find(WEB_ENCODINGS_[label.to_str.strip.downcase]) rescue nil
  end
end # module Bundler::URI

module Bundler

  #
  # Returns +uri+ converted to an Bundler::URI object.
  #
  def URI(uri)
    if uri.is_a?(Bundler::URI::Generic)
      uri
    elsif uri = String.try_convert(uri)
      Bundler::URI.parse(uri)
    else
      raise ArgumentError,
        "bad argument (expected Bundler::URI object or Bundler::URI string)"
    end
  end
  module_function :URI
end
PK=H[����	�	Eshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/http.rbnu�[���# frozen_string_literal: false
# = uri/http.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See Bundler::URI for general documentation
#

require_relative 'generic'

module Bundler::URI

  #
  # The syntax of HTTP URIs is defined in RFC1738 section 3.3.
  #
  # Note that the Ruby Bundler::URI library allows HTTP URLs containing usernames and
  # passwords. This is not legal as per the RFC, but used to be
  # supported in Internet Explorer 5 and 6, before the MS04-004 security
  # update. See <URL:http://support.microsoft.com/kb/834489>.
  #
  class HTTP < Generic
    # A Default port of 80 for Bundler::URI::HTTP.
    DEFAULT_PORT = 80

    # An Array of the available components for Bundler::URI::HTTP.
    COMPONENT = %i[
      scheme
      userinfo host port
      path
      query
      fragment
    ].freeze

    #
    # == Description
    #
    # Creates a new Bundler::URI::HTTP object from components, with syntax checking.
    #
    # The components accepted are userinfo, host, port, path, query, and
    # fragment.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[userinfo, host, port, path, query, fragment]</code>.
    #
    # Example:
    #
    #     uri = Bundler::URI::HTTP.build(host: 'www.example.com', path: '/foo/bar')
    #
    #     uri = Bundler::URI::HTTP.build([nil, "www.example.com", nil, "/path",
    #       "query", 'fragment'])
    #
    # Currently, if passed userinfo components this method generates
    # invalid HTTP URIs as per RFC 1738.
    #
    def self.build(args)
      tmp = Util.make_components_hash(self, args)
      super(tmp)
    end

    #
    # == Description
    #
    # Returns the full path for an HTTP request, as required by Net::HTTP::Get.
    #
    # If the Bundler::URI contains a query, the full path is Bundler::URI#path + '?' + Bundler::URI#query.
    # Otherwise, the path is simply Bundler::URI#path.
    #
    # Example:
    #
    #     uri = Bundler::URI::HTTP.build(path: '/foo/bar', query: 'test=true')
    #     uri.request_uri #  => "/foo/bar?test=true"
    #
    def request_uri
      return unless @path

      url = @query ? "#@path?#@query" : @path.dup
      url.start_with?(?/.freeze) ? url : ?/ + url
    end
  end

  @@schemes['HTTP'] = HTTP

end
PK=H[O�U0�
�
@share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri.rbnu�[���# frozen_string_literal: false
# Bundler::URI is a module providing classes to handle Uniform Resource Identifiers
# (RFC2396[http://tools.ietf.org/html/rfc2396]).
#
# == Features
#
# * Uniform way of handling URIs.
# * Flexibility to introduce custom Bundler::URI schemes.
# * Flexibility to have an alternate Bundler::URI::Parser (or just different patterns
#   and regexp's).
#
# == Basic example
#
#   require 'bundler/vendor/uri/lib/uri'
#
#   uri = Bundler::URI("http://foo.com/posts?id=30&limit=5#time=1305298413")
#   #=> #<Bundler::URI::HTTP http://foo.com/posts?id=30&limit=5#time=1305298413>
#
#   uri.scheme    #=> "http"
#   uri.host      #=> "foo.com"
#   uri.path      #=> "/posts"
#   uri.query     #=> "id=30&limit=5"
#   uri.fragment  #=> "time=1305298413"
#
#   uri.to_s      #=> "http://foo.com/posts?id=30&limit=5#time=1305298413"
#
# == Adding custom URIs
#
#   module Bundler::URI
#     class RSYNC < Generic
#       DEFAULT_PORT = 873
#     end
#     @@schemes['RSYNC'] = RSYNC
#   end
#   #=> Bundler::URI::RSYNC
#
#   Bundler::URI.scheme_list
#   #=> {"FILE"=>Bundler::URI::File, "FTP"=>Bundler::URI::FTP, "HTTP"=>Bundler::URI::HTTP,
#   #    "HTTPS"=>Bundler::URI::HTTPS, "LDAP"=>Bundler::URI::LDAP, "LDAPS"=>Bundler::URI::LDAPS,
#   #    "MAILTO"=>Bundler::URI::MailTo, "RSYNC"=>Bundler::URI::RSYNC}
#
#   uri = Bundler::URI("rsync://rsync.foo.com")
#   #=> #<Bundler::URI::RSYNC rsync://rsync.foo.com>
#
# == RFC References
#
# A good place to view an RFC spec is http://www.ietf.org/rfc.html.
#
# Here is a list of all related RFC's:
# - RFC822[http://tools.ietf.org/html/rfc822]
# - RFC1738[http://tools.ietf.org/html/rfc1738]
# - RFC2255[http://tools.ietf.org/html/rfc2255]
# - RFC2368[http://tools.ietf.org/html/rfc2368]
# - RFC2373[http://tools.ietf.org/html/rfc2373]
# - RFC2396[http://tools.ietf.org/html/rfc2396]
# - RFC2732[http://tools.ietf.org/html/rfc2732]
# - RFC3986[http://tools.ietf.org/html/rfc3986]
#
# == Class tree
#
# - Bundler::URI::Generic (in uri/generic.rb)
#   - Bundler::URI::File - (in uri/file.rb)
#   - Bundler::URI::FTP - (in uri/ftp.rb)
#   - Bundler::URI::HTTP - (in uri/http.rb)
#     - Bundler::URI::HTTPS - (in uri/https.rb)
#   - Bundler::URI::LDAP - (in uri/ldap.rb)
#     - Bundler::URI::LDAPS - (in uri/ldaps.rb)
#   - Bundler::URI::MailTo - (in uri/mailto.rb)
# - Bundler::URI::Parser - (in uri/common.rb)
# - Bundler::URI::REGEXP - (in uri/common.rb)
#   - Bundler::URI::REGEXP::PATTERN - (in uri/common.rb)
# - Bundler::URI::Util - (in uri/common.rb)
# - Bundler::URI::Escape - (in uri/common.rb)
# - Bundler::URI::Error - (in uri/common.rb)
#   - Bundler::URI::InvalidURIError - (in uri/common.rb)
#   - Bundler::URI::InvalidComponentError - (in uri/common.rb)
#   - Bundler::URI::BadURIError - (in uri/common.rb)
#
# == Copyright Info
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Documentation::
#   Akira Yamada <akira@ruby-lang.org>
#   Dmitry V. Sabanin <sdmitry@lrn.ru>
#   Vincent Batts <vbatts@hashbangbash.com>
# License::
#  Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
#  You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#

module Bundler::URI
end

require_relative 'uri/version'
require_relative 'uri/common'
require_relative 'uri/generic'
require_relative 'uri/file'
require_relative 'uri/ftp'
require_relative 'uri/http'
require_relative 'uri/https'
require_relative 'uri/ldap'
require_relative 'uri/ldaps'
require_relative 'uri/mailto'
PK=H[���t/�/�Lshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/fileutils/lib/fileutils.rbnu�[���# frozen_string_literal: true

begin
  require 'rbconfig'
rescue LoadError
  # for make mjit-headers
end

#
# = fileutils.rb
#
# Copyright (c) 2000-2007 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
#
# == module Bundler::FileUtils
#
# Namespace for several file utility methods for copying, moving, removing, etc.
#
# === Module Functions
#
#   require 'bundler/vendor/fileutils/lib/fileutils'
#
#   Bundler::FileUtils.cd(dir, **options)
#   Bundler::FileUtils.cd(dir, **options) {|dir| block }
#   Bundler::FileUtils.pwd()
#   Bundler::FileUtils.mkdir(dir, **options)
#   Bundler::FileUtils.mkdir(list, **options)
#   Bundler::FileUtils.mkdir_p(dir, **options)
#   Bundler::FileUtils.mkdir_p(list, **options)
#   Bundler::FileUtils.rmdir(dir, **options)
#   Bundler::FileUtils.rmdir(list, **options)
#   Bundler::FileUtils.ln(target, link, **options)
#   Bundler::FileUtils.ln(targets, dir, **options)
#   Bundler::FileUtils.ln_s(target, link, **options)
#   Bundler::FileUtils.ln_s(targets, dir, **options)
#   Bundler::FileUtils.ln_sf(target, link, **options)
#   Bundler::FileUtils.cp(src, dest, **options)
#   Bundler::FileUtils.cp(list, dir, **options)
#   Bundler::FileUtils.cp_r(src, dest, **options)
#   Bundler::FileUtils.cp_r(list, dir, **options)
#   Bundler::FileUtils.mv(src, dest, **options)
#   Bundler::FileUtils.mv(list, dir, **options)
#   Bundler::FileUtils.rm(list, **options)
#   Bundler::FileUtils.rm_r(list, **options)
#   Bundler::FileUtils.rm_rf(list, **options)
#   Bundler::FileUtils.install(src, dest, **options)
#   Bundler::FileUtils.chmod(mode, list, **options)
#   Bundler::FileUtils.chmod_R(mode, list, **options)
#   Bundler::FileUtils.chown(user, group, list, **options)
#   Bundler::FileUtils.chown_R(user, group, list, **options)
#   Bundler::FileUtils.touch(list, **options)
#
# Possible <tt>options</tt> are:
#
# <tt>:force</tt> :: forced operation (rewrite files if exist, remove
#                    directories if not empty, etc.);
# <tt>:verbose</tt> :: print command to be run, in bash syntax, before
#                      performing it;
# <tt>:preserve</tt> :: preserve object's group, user and modification
#                       time on copying;
# <tt>:noop</tt> :: no changes are made (usable in combination with
#                   <tt>:verbose</tt> which will print the command to run)
#
# Each method documents the options that it honours. See also ::commands,
# ::options and ::options_of methods to introspect which command have which
# options.
#
# All methods that have the concept of a "source" file or directory can take
# either one file or a list of files in that argument.  See the method
# documentation for examples.
#
# There are some `low level' methods, which do not accept keyword arguments:
#
#   Bundler::FileUtils.copy_entry(src, dest, preserve = false, dereference_root = false, remove_destination = false)
#   Bundler::FileUtils.copy_file(src, dest, preserve = false, dereference = true)
#   Bundler::FileUtils.copy_stream(srcstream, deststream)
#   Bundler::FileUtils.remove_entry(path, force = false)
#   Bundler::FileUtils.remove_entry_secure(path, force = false)
#   Bundler::FileUtils.remove_file(path, force = false)
#   Bundler::FileUtils.compare_file(path_a, path_b)
#   Bundler::FileUtils.compare_stream(stream_a, stream_b)
#   Bundler::FileUtils.uptodate?(file, cmp_list)
#
# == module Bundler::FileUtils::Verbose
#
# This module has all methods of Bundler::FileUtils module, but it outputs messages
# before acting.  This equates to passing the <tt>:verbose</tt> flag to methods
# in Bundler::FileUtils.
#
# == module Bundler::FileUtils::NoWrite
#
# This module has all methods of Bundler::FileUtils module, but never changes
# files/directories.  This equates to passing the <tt>:noop</tt> flag to methods
# in Bundler::FileUtils.
#
# == module Bundler::FileUtils::DryRun
#
# This module has all methods of Bundler::FileUtils module, but never changes
# files/directories.  This equates to passing the <tt>:noop</tt> and
# <tt>:verbose</tt> flags to methods in Bundler::FileUtils.
#
module Bundler::FileUtils
  VERSION = "1.4.1"

  def self.private_module_function(name)   #:nodoc:
    module_function name
    private_class_method name
  end

  #
  # Returns the name of the current directory.
  #
  def pwd
    Dir.pwd
  end
  module_function :pwd

  alias getwd pwd
  module_function :getwd

  #
  # Changes the current directory to the directory +dir+.
  #
  # If this method is called with block, resumes to the previous
  # working directory after the block execution has finished.
  #
  #   Bundler::FileUtils.cd('/')  # change directory
  #
  #   Bundler::FileUtils.cd('/', verbose: true)   # change directory and report it
  #
  #   Bundler::FileUtils.cd('/') do  # change directory
  #     # ...               # do something
  #   end                   # return to original directory
  #
  def cd(dir, verbose: nil, &block) # :yield: dir
    fu_output_message "cd #{dir}" if verbose
    result = Dir.chdir(dir, &block)
    fu_output_message 'cd -' if verbose and block
    result
  end
  module_function :cd

  alias chdir cd
  module_function :chdir

  #
  # Returns true if +new+ is newer than all +old_list+.
  # Non-existent files are older than any file.
  #
  #   Bundler::FileUtils.uptodate?('hello.o', %w(hello.c hello.h)) or \
  #       system 'make hello.o'
  #
  def uptodate?(new, old_list)
    return false unless File.exist?(new)
    new_time = File.mtime(new)
    old_list.each do |old|
      if File.exist?(old)
        return false unless new_time > File.mtime(old)
      end
    end
    true
  end
  module_function :uptodate?

  def remove_trailing_slash(dir)   #:nodoc:
    dir == '/' ? dir : dir.chomp(?/)
  end
  private_module_function :remove_trailing_slash

  #
  # Creates one or more directories.
  #
  #   Bundler::FileUtils.mkdir 'test'
  #   Bundler::FileUtils.mkdir %w(tmp data)
  #   Bundler::FileUtils.mkdir 'notexist', noop: true  # Does not really create.
  #   Bundler::FileUtils.mkdir 'tmp', mode: 0700
  #
  def mkdir(list, mode: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "mkdir #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
    return if noop

    list.each do |dir|
      fu_mkdir dir, mode
    end
  end
  module_function :mkdir

  #
  # Creates a directory and all its parent directories.
  # For example,
  #
  #   Bundler::FileUtils.mkdir_p '/usr/local/lib/ruby'
  #
  # causes to make following directories, if they do not exist.
  #
  # * /usr
  # * /usr/local
  # * /usr/local/lib
  # * /usr/local/lib/ruby
  #
  # You can pass several directories at a time in a list.
  #
  def mkdir_p(list, mode: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "mkdir -p #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
    return *list if noop

    list.map {|path| remove_trailing_slash(path)}.each do |path|
      # optimize for the most common case
      begin
        fu_mkdir path, mode
        next
      rescue SystemCallError
        next if File.directory?(path)
      end

      stack = []
      until path == stack.last   # dirname("/")=="/", dirname("C:/")=="C:/"
        stack.push path
        path = File.dirname(path)
      end
      stack.pop                 # root directory should exist
      stack.reverse_each do |dir|
        begin
          fu_mkdir dir, mode
        rescue SystemCallError
          raise unless File.directory?(dir)
        end
      end
    end

    return *list
  end
  module_function :mkdir_p

  alias mkpath    mkdir_p
  alias makedirs  mkdir_p
  module_function :mkpath
  module_function :makedirs

  def fu_mkdir(path, mode)   #:nodoc:
    path = remove_trailing_slash(path)
    if mode
      Dir.mkdir path, mode
      File.chmod mode, path
    else
      Dir.mkdir path
    end
  end
  private_module_function :fu_mkdir

  #
  # Removes one or more directories.
  #
  #   Bundler::FileUtils.rmdir 'somedir'
  #   Bundler::FileUtils.rmdir %w(somedir anydir otherdir)
  #   # Does not really remove directory; outputs message.
  #   Bundler::FileUtils.rmdir 'somedir', verbose: true, noop: true
  #
  def rmdir(list, parents: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "rmdir #{parents ? '-p ' : ''}#{list.join ' '}" if verbose
    return if noop
    list.each do |dir|
      Dir.rmdir(dir = remove_trailing_slash(dir))
      if parents
        begin
          until (parent = File.dirname(dir)) == '.' or parent == dir
            dir = parent
            Dir.rmdir(dir)
          end
        rescue Errno::ENOTEMPTY, Errno::EEXIST, Errno::ENOENT
        end
      end
    end
  end
  module_function :rmdir

  #
  # :call-seq:
  #   Bundler::FileUtils.ln(target, link, force: nil, noop: nil, verbose: nil)
  #   Bundler::FileUtils.ln(target,  dir, force: nil, noop: nil, verbose: nil)
  #   Bundler::FileUtils.ln(targets, dir, force: nil, noop: nil, verbose: nil)
  #
  # In the first form, creates a hard link +link+ which points to +target+.
  # If +link+ already exists, raises Errno::EEXIST.
  # But if the +force+ option is set, overwrites +link+.
  #
  #   Bundler::FileUtils.ln 'gcc', 'cc', verbose: true
  #   Bundler::FileUtils.ln '/usr/bin/emacs21', '/usr/bin/emacs'
  #
  # In the second form, creates a link +dir/target+ pointing to +target+.
  # In the third form, creates several hard links in the directory +dir+,
  # pointing to each item in +targets+.
  # If +dir+ is not a directory, raises Errno::ENOTDIR.
  #
  #   Bundler::FileUtils.cd '/sbin'
  #   Bundler::FileUtils.ln %w(cp mv mkdir), '/bin'   # Now /sbin/cp and /bin/cp are linked.
  #
  def ln(src, dest, force: nil, noop: nil, verbose: nil)
    fu_output_message "ln#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest0(src, dest) do |s,d|
      remove_file d, true if force
      File.link s, d
    end
  end
  module_function :ln

  alias link ln
  module_function :link

  #
  # Hard link +src+ to +dest+. If +src+ is a directory, this method links
  # all its contents recursively. If +dest+ is a directory, links
  # +src+ to +dest/src+.
  #
  # +src+ can be a list of files.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  #   Bundler::FileUtils.rm_r site_ruby + '/mylib', force: true
  #   Bundler::FileUtils.cp_lr 'lib/', site_ruby + '/mylib'
  #
  #   # Examples of linking several files to target directory.
  #   Bundler::FileUtils.cp_lr %w(mail.rb field.rb debug/), site_ruby + '/tmail'
  #   Bundler::FileUtils.cp_lr Dir.glob('*.rb'), '/home/aamine/lib/ruby', noop: true, verbose: true
  #
  #   # If you want to link all contents of a directory instead of the
  #   # directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
  #   # use the following code.
  #   Bundler::FileUtils.cp_lr 'src/.', 'dest'  # cp_lr('src', 'dest') makes dest/src, but this doesn't.
  #
  def cp_lr(src, dest, noop: nil, verbose: nil,
            dereference_root: true, remove_destination: false)
    fu_output_message "cp -lr#{remove_destination ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      link_entry s, d, dereference_root, remove_destination
    end
  end
  module_function :cp_lr

  #
  # :call-seq:
  #   Bundler::FileUtils.ln_s(target, link, force: nil, noop: nil, verbose: nil)
  #   Bundler::FileUtils.ln_s(target,  dir, force: nil, noop: nil, verbose: nil)
  #   Bundler::FileUtils.ln_s(targets, dir, force: nil, noop: nil, verbose: nil)
  #
  # In the first form, creates a symbolic link +link+ which points to +target+.
  # If +link+ already exists, raises Errno::EEXIST.
  # But if the <tt>force</tt> option is set, overwrites +link+.
  #
  #   Bundler::FileUtils.ln_s '/usr/bin/ruby', '/usr/local/bin/ruby'
  #   Bundler::FileUtils.ln_s 'verylongsourcefilename.c', 'c', force: true
  #
  # In the second form, creates a link +dir/target+ pointing to +target+.
  # In the third form, creates several symbolic links in the directory +dir+,
  # pointing to each item in +targets+.
  # If +dir+ is not a directory, raises Errno::ENOTDIR.
  #
  #   Bundler::FileUtils.ln_s Dir.glob('/bin/*.rb'), '/home/foo/bin'
  #
  def ln_s(src, dest, force: nil, noop: nil, verbose: nil)
    fu_output_message "ln -s#{force ? 'f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest0(src, dest) do |s,d|
      remove_file d, true if force
      File.symlink s, d
    end
  end
  module_function :ln_s

  alias symlink ln_s
  module_function :symlink

  #
  # :call-seq:
  #   Bundler::FileUtils.ln_sf(*args)
  #
  # Same as
  #
  #   Bundler::FileUtils.ln_s(*args, force: true)
  #
  def ln_sf(src, dest, noop: nil, verbose: nil)
    ln_s src, dest, force: true, noop: noop, verbose: verbose
  end
  module_function :ln_sf

  #
  # Hard links a file system entry +src+ to +dest+.
  # If +src+ is a directory, this method links its contents recursively.
  #
  # Both of +src+ and +dest+ must be a path name.
  # +src+ must exist, +dest+ must not exist.
  #
  # If +dereference_root+ is true, this method dereferences the tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  def link_entry(src, dest, dereference_root = false, remove_destination = false)
    Entry_.new(src, nil, dereference_root).traverse do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      File.unlink destent.path if remove_destination && File.file?(destent.path)
      ent.link destent.path
    end
  end
  module_function :link_entry

  #
  # Copies a file content +src+ to +dest+.  If +dest+ is a directory,
  # copies +src+ to +dest/src+.
  #
  # If +src+ is a list of files, then +dest+ must be a directory.
  #
  #   Bundler::FileUtils.cp 'eval.c', 'eval.c.org'
  #   Bundler::FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'
  #   Bundler::FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6', verbose: true
  #   Bundler::FileUtils.cp 'symlink', 'dest'   # copy content, "dest" is not a symlink
  #
  def cp(src, dest, preserve: nil, noop: nil, verbose: nil)
    fu_output_message "cp#{preserve ? ' -p' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      copy_file s, d, preserve
    end
  end
  module_function :cp

  alias copy cp
  module_function :copy

  #
  # Copies +src+ to +dest+. If +src+ is a directory, this method copies
  # all its contents recursively. If +dest+ is a directory, copies
  # +src+ to +dest/src+.
  #
  # +src+ can be a list of files.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  #   # Installing Ruby library "mylib" under the site_ruby
  #   Bundler::FileUtils.rm_r site_ruby + '/mylib', force: true
  #   Bundler::FileUtils.cp_r 'lib/', site_ruby + '/mylib'
  #
  #   # Examples of copying several files to target directory.
  #   Bundler::FileUtils.cp_r %w(mail.rb field.rb debug/), site_ruby + '/tmail'
  #   Bundler::FileUtils.cp_r Dir.glob('*.rb'), '/home/foo/lib/ruby', noop: true, verbose: true
  #
  #   # If you want to copy all contents of a directory instead of the
  #   # directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
  #   # use following code.
  #   Bundler::FileUtils.cp_r 'src/.', 'dest'     # cp_r('src', 'dest') makes dest/src,
  #                                      # but this doesn't.
  #
  def cp_r(src, dest, preserve: nil, noop: nil, verbose: nil,
           dereference_root: true, remove_destination: nil)
    fu_output_message "cp -r#{preserve ? 'p' : ''}#{remove_destination ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      copy_entry s, d, preserve, dereference_root, remove_destination
    end
  end
  module_function :cp_r

  #
  # Copies a file system entry +src+ to +dest+.
  # If +src+ is a directory, this method copies its contents recursively.
  # This method preserves file types, c.f. symlink, directory...
  # (FIFO, device files and etc. are not supported yet)
  #
  # Both of +src+ and +dest+ must be a path name.
  # +src+ must exist, +dest+ must not exist.
  #
  # If +preserve+ is true, this method preserves owner, group, and
  # modified time.  Permissions are copied regardless +preserve+.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  def copy_entry(src, dest, preserve = false, dereference_root = false, remove_destination = false)
    if dereference_root
      src = File.realpath(src)
    end

    Entry_.new(src, nil, false).wrap_traverse(proc do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      File.unlink destent.path if remove_destination && (File.file?(destent.path) || File.symlink?(destent.path))
      ent.copy destent.path
    end, proc do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      ent.copy_metadata destent.path if preserve
    end)
  end
  module_function :copy_entry

  #
  # Copies file contents of +src+ to +dest+.
  # Both of +src+ and +dest+ must be a path name.
  #
  def copy_file(src, dest, preserve = false, dereference = true)
    ent = Entry_.new(src, nil, dereference)
    ent.copy_file dest
    ent.copy_metadata dest if preserve
  end
  module_function :copy_file

  #
  # Copies stream +src+ to +dest+.
  # +src+ must respond to #read(n) and
  # +dest+ must respond to #write(str).
  #
  def copy_stream(src, dest)
    IO.copy_stream(src, dest)
  end
  module_function :copy_stream

  #
  # Moves file(s) +src+ to +dest+.  If +file+ and +dest+ exist on the different
  # disk partition, the file is copied then the original file is removed.
  #
  #   Bundler::FileUtils.mv 'badname.rb', 'goodname.rb'
  #   Bundler::FileUtils.mv 'stuff.rb', '/notexist/lib/ruby', force: true  # no error
  #
  #   Bundler::FileUtils.mv %w(junk.txt dust.txt), '/home/foo/.trash/'
  #   Bundler::FileUtils.mv Dir.glob('test*.rb'), 'test', noop: true, verbose: true
  #
  def mv(src, dest, force: nil, noop: nil, verbose: nil, secure: nil)
    fu_output_message "mv#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      destent = Entry_.new(d, nil, true)
      begin
        if destent.exist?
          if destent.directory?
            raise Errno::EEXIST, d
          end
        end
        begin
          File.rename s, d
        rescue Errno::EXDEV,
               Errno::EPERM # move from unencrypted to encrypted dir (ext4)
          copy_entry s, d, true
          if secure
            remove_entry_secure s, force
          else
            remove_entry s, force
          end
        end
      rescue SystemCallError
        raise unless force
      end
    end
  end
  module_function :mv

  alias move mv
  module_function :move

  #
  # Remove file(s) specified in +list+.  This method cannot remove directories.
  # All StandardErrors are ignored when the :force option is set.
  #
  #   Bundler::FileUtils.rm %w( junk.txt dust.txt )
  #   Bundler::FileUtils.rm Dir.glob('*.so')
  #   Bundler::FileUtils.rm 'NotExistFile', force: true   # never raises exception
  #
  def rm(list, force: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "rm#{force ? ' -f' : ''} #{list.join ' '}" if verbose
    return if noop

    list.each do |path|
      remove_file path, force
    end
  end
  module_function :rm

  alias remove rm
  module_function :remove

  #
  # Equivalent to
  #
  #   Bundler::FileUtils.rm(list, force: true)
  #
  def rm_f(list, noop: nil, verbose: nil)
    rm list, force: true, noop: noop, verbose: verbose
  end
  module_function :rm_f

  alias safe_unlink rm_f
  module_function :safe_unlink

  #
  # remove files +list+[0] +list+[1]... If +list+[n] is a directory,
  # removes its all contents recursively. This method ignores
  # StandardError when :force option is set.
  #
  #   Bundler::FileUtils.rm_r Dir.glob('/tmp/*')
  #   Bundler::FileUtils.rm_r 'some_dir', force: true
  #
  # WARNING: This method causes local vulnerability
  # if one of parent directories or removing directory tree are world
  # writable (including /tmp, whose permission is 1777), and the current
  # process has strong privilege such as Unix super user (root), and the
  # system has symbolic link.  For secure removing, read the documentation
  # of remove_entry_secure carefully, and set :secure option to true.
  # Default is <tt>secure: false</tt>.
  #
  # NOTE: This method calls remove_entry_secure if :secure option is set.
  # See also remove_entry_secure.
  #
  def rm_r(list, force: nil, noop: nil, verbose: nil, secure: nil)
    list = fu_list(list)
    fu_output_message "rm -r#{force ? 'f' : ''} #{list.join ' '}" if verbose
    return if noop
    list.each do |path|
      if secure
        remove_entry_secure path, force
      else
        remove_entry path, force
      end
    end
  end
  module_function :rm_r

  #
  # Equivalent to
  #
  #   Bundler::FileUtils.rm_r(list, force: true)
  #
  # WARNING: This method causes local vulnerability.
  # Read the documentation of rm_r first.
  #
  def rm_rf(list, noop: nil, verbose: nil, secure: nil)
    rm_r list, force: true, noop: noop, verbose: verbose, secure: secure
  end
  module_function :rm_rf

  alias rmtree rm_rf
  module_function :rmtree

  #
  # This method removes a file system entry +path+.  +path+ shall be a
  # regular file, a directory, or something.  If +path+ is a directory,
  # remove it recursively.  This method is required to avoid TOCTTOU
  # (time-of-check-to-time-of-use) local security vulnerability of rm_r.
  # #rm_r causes security hole when:
  #
  # * Parent directory is world writable (including /tmp).
  # * Removing directory tree includes world writable directory.
  # * The system has symbolic link.
  #
  # To avoid this security hole, this method applies special preprocess.
  # If +path+ is a directory, this method chown(2) and chmod(2) all
  # removing directories.  This requires the current process is the
  # owner of the removing whole directory tree, or is the super user (root).
  #
  # WARNING: You must ensure that *ALL* parent directories cannot be
  # moved by other untrusted users.  For example, parent directories
  # should not be owned by untrusted users, and should not be world
  # writable except when the sticky bit set.
  #
  # WARNING: Only the owner of the removing directory tree, or Unix super
  # user (root) should invoke this method.  Otherwise this method does not
  # work.
  #
  # For details of this security vulnerability, see Perl's case:
  #
  # * https://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0448
  # * https://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0452
  #
  # For fileutils.rb, this vulnerability is reported in [ruby-dev:26100].
  #
  def remove_entry_secure(path, force = false)
    unless fu_have_symlink?
      remove_entry path, force
      return
    end
    fullpath = File.expand_path(path)
    st = File.lstat(fullpath)
    unless st.directory?
      File.unlink fullpath
      return
    end
    # is a directory.
    parent_st = File.stat(File.dirname(fullpath))
    unless parent_st.world_writable?
      remove_entry path, force
      return
    end
    unless parent_st.sticky?
      raise ArgumentError, "parent directory is world writable, Bundler::FileUtils#remove_entry_secure does not work; abort: #{path.inspect} (parent directory mode #{'%o' % parent_st.mode})"
    end

    # freeze tree root
    euid = Process.euid
    dot_file = fullpath + "/."
    begin
      File.open(dot_file) {|f|
        unless fu_stat_identical_entry?(st, f.stat)
          # symlink (TOC-to-TOU attack?)
          File.unlink fullpath
          return
        end
        f.chown euid, -1
        f.chmod 0700
      }
    rescue Errno::EISDIR # JRuby in non-native mode can't open files as dirs
      File.lstat(dot_file).tap {|fstat|
        unless fu_stat_identical_entry?(st, fstat)
          # symlink (TOC-to-TOU attack?)
          File.unlink fullpath
          return
        end
        File.chown euid, -1, dot_file
        File.chmod 0700, dot_file
      }
    end

    unless fu_stat_identical_entry?(st, File.lstat(fullpath))
      # TOC-to-TOU attack?
      File.unlink fullpath
      return
    end

    # ---- tree root is frozen ----
    root = Entry_.new(path)
    root.preorder_traverse do |ent|
      if ent.directory?
        ent.chown euid, -1
        ent.chmod 0700
      end
    end
    root.postorder_traverse do |ent|
      begin
        ent.remove
      rescue
        raise unless force
      end
    end
  rescue
    raise unless force
  end
  module_function :remove_entry_secure

  def fu_have_symlink?   #:nodoc:
    File.symlink nil, nil
  rescue NotImplementedError
    return false
  rescue TypeError
    return true
  end
  private_module_function :fu_have_symlink?

  def fu_stat_identical_entry?(a, b)   #:nodoc:
    a.dev == b.dev and a.ino == b.ino
  end
  private_module_function :fu_stat_identical_entry?

  #
  # This method removes a file system entry +path+.
  # +path+ might be a regular file, a directory, or something.
  # If +path+ is a directory, remove it recursively.
  #
  # See also remove_entry_secure.
  #
  def remove_entry(path, force = false)
    Entry_.new(path).postorder_traverse do |ent|
      begin
        ent.remove
      rescue
        raise unless force
      end
    end
  rescue
    raise unless force
  end
  module_function :remove_entry

  #
  # Removes a file +path+.
  # This method ignores StandardError if +force+ is true.
  #
  def remove_file(path, force = false)
    Entry_.new(path).remove_file
  rescue
    raise unless force
  end
  module_function :remove_file

  #
  # Removes a directory +dir+ and its contents recursively.
  # This method ignores StandardError if +force+ is true.
  #
  def remove_dir(path, force = false)
    remove_entry path, force   # FIXME?? check if it is a directory
  end
  module_function :remove_dir

  #
  # Returns true if the contents of a file +a+ and a file +b+ are identical.
  #
  #   Bundler::FileUtils.compare_file('somefile', 'somefile')       #=> true
  #   Bundler::FileUtils.compare_file('/dev/null', '/dev/urandom')  #=> false
  #
  def compare_file(a, b)
    return false unless File.size(a) == File.size(b)
    File.open(a, 'rb') {|fa|
      File.open(b, 'rb') {|fb|
        return compare_stream(fa, fb)
      }
    }
  end
  module_function :compare_file

  alias identical? compare_file
  alias cmp compare_file
  module_function :identical?
  module_function :cmp

  #
  # Returns true if the contents of a stream +a+ and +b+ are identical.
  #
  def compare_stream(a, b)
    bsize = fu_stream_blksize(a, b)

    if RUBY_VERSION > "2.4"
      sa = String.new(capacity: bsize)
      sb = String.new(capacity: bsize)
    else
      sa = String.new
      sb = String.new
    end

    begin
      a.read(bsize, sa)
      b.read(bsize, sb)
      return true if sa.empty? && sb.empty?
    end while sa == sb
    false
  end
  module_function :compare_stream

  #
  # If +src+ is not same as +dest+, copies it and changes the permission
  # mode to +mode+.  If +dest+ is a directory, destination is +dest+/+src+.
  # This method removes destination before copy.
  #
  #   Bundler::FileUtils.install 'ruby', '/usr/local/bin/ruby', mode: 0755, verbose: true
  #   Bundler::FileUtils.install 'lib.rb', '/usr/local/lib/ruby/site_ruby', verbose: true
  #
  def install(src, dest, mode: nil, owner: nil, group: nil, preserve: nil,
              noop: nil, verbose: nil)
    if verbose
      msg = +"install -c"
      msg << ' -p' if preserve
      msg << ' -m ' << mode_to_s(mode) if mode
      msg << " -o #{owner}" if owner
      msg << " -g #{group}" if group
      msg << ' ' << [src,dest].flatten.join(' ')
      fu_output_message msg
    end
    return if noop
    uid = fu_get_uid(owner)
    gid = fu_get_gid(group)
    fu_each_src_dest(src, dest) do |s, d|
      st = File.stat(s)
      unless File.exist?(d) and compare_file(s, d)
        remove_file d, true
        copy_file s, d
        File.utime st.atime, st.mtime, d if preserve
        File.chmod fu_mode(mode, st), d if mode
        File.chown uid, gid, d if uid or gid
      end
    end
  end
  module_function :install

  def user_mask(target)  #:nodoc:
    target.each_char.inject(0) do |mask, chr|
      case chr
      when "u"
        mask | 04700
      when "g"
        mask | 02070
      when "o"
        mask | 01007
      when "a"
        mask | 07777
      else
        raise ArgumentError, "invalid `who' symbol in file mode: #{chr}"
      end
    end
  end
  private_module_function :user_mask

  def apply_mask(mode, user_mask, op, mode_mask)   #:nodoc:
    case op
    when '='
      (mode & ~user_mask) | (user_mask & mode_mask)
    when '+'
      mode | (user_mask & mode_mask)
    when '-'
      mode & ~(user_mask & mode_mask)
    end
  end
  private_module_function :apply_mask

  def symbolic_modes_to_i(mode_sym, path)  #:nodoc:
    mode = if File::Stat === path
             path.mode
           else
             File.stat(path).mode
           end
    mode_sym.split(/,/).inject(mode & 07777) do |current_mode, clause|
      target, *actions = clause.split(/([=+-])/)
      raise ArgumentError, "invalid file mode: #{mode_sym}" if actions.empty?
      target = 'a' if target.empty?
      user_mask = user_mask(target)
      actions.each_slice(2) do |op, perm|
        need_apply = op == '='
        mode_mask = (perm || '').each_char.inject(0) do |mask, chr|
          case chr
          when "r"
            mask | 0444
          when "w"
            mask | 0222
          when "x"
            mask | 0111
          when "X"
            if FileTest.directory? path
              mask | 0111
            else
              mask
            end
          when "s"
            mask | 06000
          when "t"
            mask | 01000
          when "u", "g", "o"
            if mask.nonzero?
              current_mode = apply_mask(current_mode, user_mask, op, mask)
            end
            need_apply = false
            copy_mask = user_mask(chr)
            (current_mode & copy_mask) / (copy_mask & 0111) * (user_mask & 0111)
          else
            raise ArgumentError, "invalid `perm' symbol in file mode: #{chr}"
          end
        end

        if mode_mask.nonzero? || need_apply
          current_mode = apply_mask(current_mode, user_mask, op, mode_mask)
        end
      end
      current_mode
    end
  end
  private_module_function :symbolic_modes_to_i

  def fu_mode(mode, path)  #:nodoc:
    mode.is_a?(String) ? symbolic_modes_to_i(mode, path) : mode
  end
  private_module_function :fu_mode

  def mode_to_s(mode)  #:nodoc:
    mode.is_a?(String) ? mode : "%o" % mode
  end
  private_module_function :mode_to_s

  #
  # Changes permission bits on the named files (in +list+) to the bit pattern
  # represented by +mode+.
  #
  # +mode+ is the symbolic and absolute mode can be used.
  #
  # Absolute mode is
  #   Bundler::FileUtils.chmod 0755, 'somecommand'
  #   Bundler::FileUtils.chmod 0644, %w(my.rb your.rb his.rb her.rb)
  #   Bundler::FileUtils.chmod 0755, '/usr/bin/ruby', verbose: true
  #
  # Symbolic mode is
  #   Bundler::FileUtils.chmod "u=wrx,go=rx", 'somecommand'
  #   Bundler::FileUtils.chmod "u=wr,go=rr", %w(my.rb your.rb his.rb her.rb)
  #   Bundler::FileUtils.chmod "u=wrx,go=rx", '/usr/bin/ruby', verbose: true
  #
  # "a" :: is user, group, other mask.
  # "u" :: is user's mask.
  # "g" :: is group's mask.
  # "o" :: is other's mask.
  # "w" :: is write permission.
  # "r" :: is read permission.
  # "x" :: is execute permission.
  # "X" ::
  #   is execute permission for directories only, must be used in conjunction with "+"
  # "s" :: is uid, gid.
  # "t" :: is sticky bit.
  # "+" :: is added to a class given the specified mode.
  # "-" :: Is removed from a given class given mode.
  # "=" :: Is the exact nature of the class will be given a specified mode.

  def chmod(mode, list, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message sprintf('chmod %s %s', mode_to_s(mode), list.join(' ')) if verbose
    return if noop
    list.each do |path|
      Entry_.new(path).chmod(fu_mode(mode, path))
    end
  end
  module_function :chmod

  #
  # Changes permission bits on the named files (in +list+)
  # to the bit pattern represented by +mode+.
  #
  #   Bundler::FileUtils.chmod_R 0700, "/tmp/app.#{$$}"
  #   Bundler::FileUtils.chmod_R "u=wrx", "/tmp/app.#{$$}"
  #
  def chmod_R(mode, list, noop: nil, verbose: nil, force: nil)
    list = fu_list(list)
    fu_output_message sprintf('chmod -R%s %s %s',
                              (force ? 'f' : ''),
                              mode_to_s(mode), list.join(' ')) if verbose
    return if noop
    list.each do |root|
      Entry_.new(root).traverse do |ent|
        begin
          ent.chmod(fu_mode(mode, ent.path))
        rescue
          raise unless force
        end
      end
    end
  end
  module_function :chmod_R

  #
  # Changes owner and group on the named files (in +list+)
  # to the user +user+ and the group +group+.  +user+ and +group+
  # may be an ID (Integer/String) or a name (String).
  # If +user+ or +group+ is nil, this method does not change
  # the attribute.
  #
  #   Bundler::FileUtils.chown 'root', 'staff', '/usr/local/bin/ruby'
  #   Bundler::FileUtils.chown nil, 'bin', Dir.glob('/usr/bin/*'), verbose: true
  #
  def chown(user, group, list, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message sprintf('chown %s %s',
                              (group ? "#{user}:#{group}" : user || ':'),
                              list.join(' ')) if verbose
    return if noop
    uid = fu_get_uid(user)
    gid = fu_get_gid(group)
    list.each do |path|
      Entry_.new(path).chown uid, gid
    end
  end
  module_function :chown

  #
  # Changes owner and group on the named files (in +list+)
  # to the user +user+ and the group +group+ recursively.
  # +user+ and +group+ may be an ID (Integer/String) or
  # a name (String).  If +user+ or +group+ is nil, this
  # method does not change the attribute.
  #
  #   Bundler::FileUtils.chown_R 'www', 'www', '/var/www/htdocs'
  #   Bundler::FileUtils.chown_R 'cvs', 'cvs', '/var/cvs', verbose: true
  #
  def chown_R(user, group, list, noop: nil, verbose: nil, force: nil)
    list = fu_list(list)
    fu_output_message sprintf('chown -R%s %s %s',
                              (force ? 'f' : ''),
                              (group ? "#{user}:#{group}" : user || ':'),
                              list.join(' ')) if verbose
    return if noop
    uid = fu_get_uid(user)
    gid = fu_get_gid(group)
    list.each do |root|
      Entry_.new(root).traverse do |ent|
        begin
          ent.chown uid, gid
        rescue
          raise unless force
        end
      end
    end
  end
  module_function :chown_R

  def fu_get_uid(user)   #:nodoc:
    return nil unless user
    case user
    when Integer
      user
    when /\A\d+\z/
      user.to_i
    else
      require 'etc'
      Etc.getpwnam(user) ? Etc.getpwnam(user).uid : nil
    end
  end
  private_module_function :fu_get_uid

  def fu_get_gid(group)   #:nodoc:
    return nil unless group
    case group
    when Integer
      group
    when /\A\d+\z/
      group.to_i
    else
      require 'etc'
      Etc.getgrnam(group) ? Etc.getgrnam(group).gid : nil
    end
  end
  private_module_function :fu_get_gid

  #
  # Updates modification time (mtime) and access time (atime) of file(s) in
  # +list+.  Files are created if they don't exist.
  #
  #   Bundler::FileUtils.touch 'timestamp'
  #   Bundler::FileUtils.touch Dir.glob('*.c');  system 'make'
  #
  def touch(list, noop: nil, verbose: nil, mtime: nil, nocreate: nil)
    list = fu_list(list)
    t = mtime
    if verbose
      fu_output_message "touch #{nocreate ? '-c ' : ''}#{t ? t.strftime('-t %Y%m%d%H%M.%S ') : ''}#{list.join ' '}"
    end
    return if noop
    list.each do |path|
      created = nocreate
      begin
        File.utime(t, t, path)
      rescue Errno::ENOENT
        raise if created
        File.open(path, 'a') {
          ;
        }
        created = true
        retry if t
      end
    end
  end
  module_function :touch

  private

  module StreamUtils_
    private

    case (defined?(::RbConfig) ? ::RbConfig::CONFIG['host_os'] : ::RUBY_PLATFORM)
    when /mswin|mingw/
      def fu_windows?; true end
    else
      def fu_windows?; false end
    end

    def fu_copy_stream0(src, dest, blksize = nil)   #:nodoc:
      IO.copy_stream(src, dest)
    end

    def fu_stream_blksize(*streams)
      streams.each do |s|
        next unless s.respond_to?(:stat)
        size = fu_blksize(s.stat)
        return size if size
      end
      fu_default_blksize()
    end

    def fu_blksize(st)
      s = st.blksize
      return nil unless s
      return nil if s == 0
      s
    end

    def fu_default_blksize
      1024
    end
  end

  include StreamUtils_
  extend StreamUtils_

  class Entry_   #:nodoc: internal use only
    include StreamUtils_

    def initialize(a, b = nil, deref = false)
      @prefix = @rel = @path = nil
      if b
        @prefix = a
        @rel = b
      else
        @path = a
      end
      @deref = deref
      @stat = nil
      @lstat = nil
    end

    def inspect
      "\#<#{self.class} #{path()}>"
    end

    def path
      if @path
        File.path(@path)
      else
        join(@prefix, @rel)
      end
    end

    def prefix
      @prefix || @path
    end

    def rel
      @rel
    end

    def dereference?
      @deref
    end

    def exist?
      begin
        lstat
        true
      rescue Errno::ENOENT
        false
      end
    end

    def file?
      s = lstat!
      s and s.file?
    end

    def directory?
      s = lstat!
      s and s.directory?
    end

    def symlink?
      s = lstat!
      s and s.symlink?
    end

    def chardev?
      s = lstat!
      s and s.chardev?
    end

    def blockdev?
      s = lstat!
      s and s.blockdev?
    end

    def socket?
      s = lstat!
      s and s.socket?
    end

    def pipe?
      s = lstat!
      s and s.pipe?
    end

    S_IF_DOOR = 0xD000

    def door?
      s = lstat!
      s and (s.mode & 0xF000 == S_IF_DOOR)
    end

    def entries
      opts = {}
      opts[:encoding] = ::Encoding::UTF_8 if fu_windows?

      files = if Dir.respond_to?(:children)
        Dir.children(path, **opts)
      else
        Dir.entries(path(), **opts)
           .reject {|n| n == '.' or n == '..' }
      end

      untaint = RUBY_VERSION < '2.7'
      files.map {|n| Entry_.new(prefix(), join(rel(), untaint ? n.untaint : n)) }
    end

    def stat
      return @stat if @stat
      if lstat() and lstat().symlink?
        @stat = File.stat(path())
      else
        @stat = lstat()
      end
      @stat
    end

    def stat!
      return @stat if @stat
      if lstat! and lstat!.symlink?
        @stat = File.stat(path())
      else
        @stat = lstat!
      end
      @stat
    rescue SystemCallError
      nil
    end

    def lstat
      if dereference?
        @lstat ||= File.stat(path())
      else
        @lstat ||= File.lstat(path())
      end
    end

    def lstat!
      lstat()
    rescue SystemCallError
      nil
    end

    def chmod(mode)
      if symlink?
        File.lchmod mode, path() if have_lchmod?
      else
        File.chmod mode, path()
      end
    end

    def chown(uid, gid)
      if symlink?
        File.lchown uid, gid, path() if have_lchown?
      else
        File.chown uid, gid, path()
      end
    end

    def link(dest)
      case
      when directory?
        if !File.exist?(dest) and descendant_directory?(dest, path)
          raise ArgumentError, "cannot link directory %s to itself %s" % [path, dest]
        end
        begin
          Dir.mkdir dest
        rescue
          raise unless File.directory?(dest)
        end
      else
        File.link path(), dest
      end
    end

    def copy(dest)
      lstat
      case
      when file?
        copy_file dest
      when directory?
        if !File.exist?(dest) and descendant_directory?(dest, path)
          raise ArgumentError, "cannot copy directory %s to itself %s" % [path, dest]
        end
        begin
          Dir.mkdir dest
        rescue
          raise unless File.directory?(dest)
        end
      when symlink?
        File.symlink File.readlink(path()), dest
      when chardev?, blockdev?
        raise "cannot handle device file"
      when socket?
        begin
          require 'socket'
        rescue LoadError
          raise "cannot handle socket"
        else
          raise "cannot handle socket" unless defined?(UNIXServer)
        end
        UNIXServer.new(dest).close
        File.chmod lstat().mode, dest
      when pipe?
        raise "cannot handle FIFO" unless File.respond_to?(:mkfifo)
        File.mkfifo dest, lstat().mode
      when door?
        raise "cannot handle door: #{path()}"
      else
        raise "unknown file type: #{path()}"
      end
    end

    def copy_file(dest)
      File.open(path()) do |s|
        File.open(dest, 'wb', s.stat.mode) do |f|
          IO.copy_stream(s, f)
        end
      end
    end

    def copy_metadata(path)
      st = lstat()
      if !st.symlink?
        File.utime st.atime, st.mtime, path
      end
      mode = st.mode
      begin
        if st.symlink?
          begin
            File.lchown st.uid, st.gid, path
          rescue NotImplementedError
          end
        else
          File.chown st.uid, st.gid, path
        end
      rescue Errno::EPERM, Errno::EACCES
        # clear setuid/setgid
        mode &= 01777
      end
      if st.symlink?
        begin
          File.lchmod mode, path
        rescue NotImplementedError
        end
      else
        File.chmod mode, path
      end
    end

    def remove
      if directory?
        remove_dir1
      else
        remove_file
      end
    end

    def remove_dir1
      platform_support {
        Dir.rmdir path().chomp(?/)
      }
    end

    def remove_file
      platform_support {
        File.unlink path
      }
    end

    def platform_support
      return yield unless fu_windows?
      first_time_p = true
      begin
        yield
      rescue Errno::ENOENT
        raise
      rescue => err
        if first_time_p
          first_time_p = false
          begin
            File.chmod 0700, path()   # Windows does not have symlink
            retry
          rescue SystemCallError
          end
        end
        raise err
      end
    end

    def preorder_traverse
      stack = [self]
      while ent = stack.pop
        yield ent
        stack.concat ent.entries.reverse if ent.directory?
      end
    end

    alias traverse preorder_traverse

    def postorder_traverse
      if directory?
        entries().each do |ent|
          ent.postorder_traverse do |e|
            yield e
          end
        end
      end
    ensure
      yield self
    end

    def wrap_traverse(pre, post)
      pre.call self
      if directory?
        entries.each do |ent|
          ent.wrap_traverse pre, post
        end
      end
      post.call self
    end

    private

    @@fileutils_rb_have_lchmod = nil

    def have_lchmod?
      # This is not MT-safe, but it does not matter.
      if @@fileutils_rb_have_lchmod == nil
        @@fileutils_rb_have_lchmod = check_have_lchmod?
      end
      @@fileutils_rb_have_lchmod
    end

    def check_have_lchmod?
      return false unless File.respond_to?(:lchmod)
      File.lchmod 0
      return true
    rescue NotImplementedError
      return false
    end

    @@fileutils_rb_have_lchown = nil

    def have_lchown?
      # This is not MT-safe, but it does not matter.
      if @@fileutils_rb_have_lchown == nil
        @@fileutils_rb_have_lchown = check_have_lchown?
      end
      @@fileutils_rb_have_lchown
    end

    def check_have_lchown?
      return false unless File.respond_to?(:lchown)
      File.lchown nil, nil
      return true
    rescue NotImplementedError
      return false
    end

    def join(dir, base)
      return File.path(dir) if not base or base == '.'
      return File.path(base) if not dir or dir == '.'
      File.join(dir, base)
    end

    if File::ALT_SEPARATOR
      DIRECTORY_TERM = "(?=[/#{Regexp.quote(File::ALT_SEPARATOR)}]|\\z)"
    else
      DIRECTORY_TERM = "(?=/|\\z)"
    end

    def descendant_directory?(descendant, ascendant)
      if File::FNM_SYSCASE.nonzero?
        File.expand_path(File.dirname(descendant)).casecmp(File.expand_path(ascendant)) == 0
      else
        File.expand_path(File.dirname(descendant)) == File.expand_path(ascendant)
      end
    end
  end   # class Entry_

  def fu_list(arg)   #:nodoc:
    [arg].flatten.map {|path| File.path(path) }
  end
  private_module_function :fu_list

  def fu_each_src_dest(src, dest)   #:nodoc:
    fu_each_src_dest0(src, dest) do |s, d|
      raise ArgumentError, "same file: #{s} and #{d}" if fu_same?(s, d)
      yield s, d
    end
  end
  private_module_function :fu_each_src_dest

  def fu_each_src_dest0(src, dest)   #:nodoc:
    if tmp = Array.try_convert(src)
      tmp.each do |s|
        s = File.path(s)
        yield s, File.join(dest, File.basename(s))
      end
    else
      src = File.path(src)
      if File.directory?(dest)
        yield src, File.join(dest, File.basename(src))
      else
        yield src, File.path(dest)
      end
    end
  end
  private_module_function :fu_each_src_dest0

  def fu_same?(a, b)   #:nodoc:
    File.identical?(a, b)
  end
  private_module_function :fu_same?

  def fu_output_message(msg)   #:nodoc:
    output = @fileutils_output if defined?(@fileutils_output)
    output ||= $stderr
    if defined?(@fileutils_label)
      msg = @fileutils_label + msg
    end
    output.puts msg
  end
  private_module_function :fu_output_message

  # This hash table holds command options.
  OPT_TABLE = {}    #:nodoc: internal use only
  (private_instance_methods & methods(false)).inject(OPT_TABLE) {|tbl, name|
    (tbl[name.to_s] = instance_method(name).parameters).map! {|t, n| n if t == :key}.compact!
    tbl
  }

  public

  #
  # Returns an Array of names of high-level methods that accept any keyword
  # arguments.
  #
  #   p Bundler::FileUtils.commands  #=> ["chmod", "cp", "cp_r", "install", ...]
  #
  def self.commands
    OPT_TABLE.keys
  end

  #
  # Returns an Array of option names.
  #
  #   p Bundler::FileUtils.options  #=> ["noop", "force", "verbose", "preserve", "mode"]
  #
  def self.options
    OPT_TABLE.values.flatten.uniq.map {|sym| sym.to_s }
  end

  #
  # Returns true if the method +mid+ have an option +opt+.
  #
  #   p Bundler::FileUtils.have_option?(:cp, :noop)     #=> true
  #   p Bundler::FileUtils.have_option?(:rm, :force)    #=> true
  #   p Bundler::FileUtils.have_option?(:rm, :preserve) #=> false
  #
  def self.have_option?(mid, opt)
    li = OPT_TABLE[mid.to_s] or raise ArgumentError, "no such method: #{mid}"
    li.include?(opt)
  end

  #
  # Returns an Array of option names of the method +mid+.
  #
  #   p Bundler::FileUtils.options_of(:rm)  #=> ["noop", "verbose", "force"]
  #
  def self.options_of(mid)
    OPT_TABLE[mid.to_s].map {|sym| sym.to_s }
  end

  #
  # Returns an Array of methods names which have the option +opt+.
  #
  #   p Bundler::FileUtils.collect_method(:preserve) #=> ["cp", "cp_r", "copy", "install"]
  #
  def self.collect_method(opt)
    OPT_TABLE.keys.select {|m| OPT_TABLE[m].include?(opt) }
  end

  private

  LOW_METHODS = singleton_methods(false) - collect_method(:noop).map(&:intern) # :nodoc:
  module LowMethods # :nodoc: internal use only
    private
    def _do_nothing(*)end
    ::Bundler::FileUtils::LOW_METHODS.map {|name| alias_method name, :_do_nothing}
  end

  METHODS = singleton_methods() - [:private_module_function,                  # :nodoc:
      :commands, :options, :have_option?, :options_of, :collect_method]

  #
  # This module has all methods of Bundler::FileUtils module, but it outputs messages
  # before acting.  This equates to passing the <tt>:verbose</tt> flag to
  # methods in Bundler::FileUtils.
  #
  module Verbose
    include Bundler::FileUtils
    names = ::Bundler::FileUtils.collect_method(:verbose)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, verbose: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::Bundler::FileUtils::METHODS)
    end
  end

  #
  # This module has all methods of Bundler::FileUtils module, but never changes
  # files/directories.  This equates to passing the <tt>:noop</tt> flag
  # to methods in Bundler::FileUtils.
  #
  module NoWrite
    include Bundler::FileUtils
    include LowMethods
    names = ::Bundler::FileUtils.collect_method(:noop)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, noop: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::Bundler::FileUtils::METHODS)
    end
  end

  #
  # This module has all methods of Bundler::FileUtils module, but never changes
  # files/directories, with printing message before acting.
  # This equates to passing the <tt>:noop</tt> and <tt>:verbose</tt> flag
  # to methods in Bundler::FileUtils.
  #
  module DryRun
    include Bundler::FileUtils
    include LowMethods
    names = ::Bundler::FileUtils.collect_method(:noop)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, noop: true, verbose: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::Bundler::FileUtils::METHODS)
    end
  end

end
PK=H[���q@q@Bshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor.rbnu�[���require_relative "thor/base"

class Bundler::Thor
  $thor_runner ||= false
  class << self
    # Allows for custom "Command" package naming.
    #
    # === Parameters
    # name<String>
    # options<Hash>
    #
    def package_name(name, _ = {})
      @package_name = name.nil? || name == "" ? nil : name
    end

    # Sets the default command when thor is executed without an explicit command to be called.
    #
    # ==== Parameters
    # meth<Symbol>:: name of the default command
    #
    def default_command(meth = nil)
      if meth
        @default_command = meth == :none ? "help" : meth.to_s
      else
        @default_command ||= from_superclass(:default_command, "help")
      end
    end
    alias_method :default_task, :default_command

    # Registers another Bundler::Thor subclass as a command.
    #
    # ==== Parameters
    # klass<Class>:: Bundler::Thor subclass to register
    # command<String>:: Subcommand name to use
    # usage<String>:: Short usage for the subcommand
    # description<String>:: Description for the subcommand
    def register(klass, subcommand_name, usage, description, options = {})
      if klass <= Bundler::Thor::Group
        desc usage, description, options
        define_method(subcommand_name) { |*args| invoke(klass, args) }
      else
        desc usage, description, options
        subcommand subcommand_name, klass
      end
    end

    # Defines the usage and the description of the next command.
    #
    # ==== Parameters
    # usage<String>
    # description<String>
    # options<String>
    #
    def desc(usage, description, options = {})
      if options[:for]
        command = find_and_refresh_command(options[:for])
        command.usage = usage             if usage
        command.description = description if description
      else
        @usage = usage
        @desc = description
        @hide = options[:hide] || false
      end
    end

    # Defines the long description of the next command.
    #
    # ==== Parameters
    # long description<String>
    #
    def long_desc(long_description, options = {})
      if options[:for]
        command = find_and_refresh_command(options[:for])
        command.long_description = long_description if long_description
      else
        @long_desc = long_description
      end
    end

    # Maps an input to a command. If you define:
    #
    #   map "-T" => "list"
    #
    # Running:
    #
    #   thor -T
    #
    # Will invoke the list command.
    #
    # ==== Parameters
    # Hash[String|Array => Symbol]:: Maps the string or the strings in the array to the given command.
    #
    def map(mappings = nil, **kw)
      @map ||= from_superclass(:map, {})

      if mappings && !kw.empty?
        mappings = kw.merge!(mappings)
      else
        mappings ||= kw
      end
      if mappings
        mappings.each do |key, value|
          if key.respond_to?(:each)
            key.each { |subkey| @map[subkey] = value }
          else
            @map[key] = value
          end
        end
      end

      @map
    end

    # Declares the options for the next command to be declared.
    #
    # ==== Parameters
    # Hash[Symbol => Object]:: The hash key is the name of the option and the value
    # is the type of the option. Can be :string, :array, :hash, :boolean, :numeric
    # or :required (string). If you give a value, the type of the value is used.
    #
    def method_options(options = nil)
      @method_options ||= {}
      build_options(options, @method_options) if options
      @method_options
    end

    alias_method :options, :method_options

    # Adds an option to the set of method options. If :for is given as option,
    # it allows you to change the options from a previous defined command.
    #
    #   def previous_command
    #     # magic
    #   end
    #
    #   method_option :foo => :bar, :for => :previous_command
    #
    #   def next_command
    #     # magic
    #   end
    #
    # ==== Parameters
    # name<Symbol>:: The name of the argument.
    # options<Hash>:: Described below.
    #
    # ==== Options
    # :desc     - Description for the argument.
    # :required - If the argument is required or not.
    # :default  - Default value for this argument. It cannot be required and have default values.
    # :aliases  - Aliases for this option.
    # :type     - The type of the argument, can be :string, :hash, :array, :numeric or :boolean.
    # :banner   - String to show on usage notes.
    # :hide     - If you want to hide this option from the help.
    #
    def method_option(name, options = {})
      scope = if options[:for]
        find_and_refresh_command(options[:for]).options
      else
        method_options
      end

      build_option(name, options, scope)
    end
    alias_method :option, :method_option

    # Prints help information for the given command.
    #
    # ==== Parameters
    # shell<Bundler::Thor::Shell>
    # command_name<String>
    #
    def command_help(shell, command_name)
      meth = normalize_command_name(command_name)
      command = all_commands[meth]
      handle_no_command_error(meth) unless command

      shell.say "Usage:"
      shell.say "  #{banner(command).split("\n").join("\n  ")}"
      shell.say
      class_options_help(shell, nil => command.options.values)
      if command.long_description
        shell.say "Description:"
        shell.print_wrapped(command.long_description, :indent => 2)
      else
        shell.say command.description
      end
    end
    alias_method :task_help, :command_help

    # Prints help information for this class.
    #
    # ==== Parameters
    # shell<Bundler::Thor::Shell>
    #
    def help(shell, subcommand = false)
      list = printable_commands(true, subcommand)
      Bundler::Thor::Util.thor_classes_in(self).each do |klass|
        list += klass.printable_commands(false)
      end
      list.sort! { |a, b| a[0] <=> b[0] }

      if defined?(@package_name) && @package_name
        shell.say "#{@package_name} commands:"
      else
        shell.say "Commands:"
      end

      shell.print_table(list, :indent => 2, :truncate => true)
      shell.say
      class_options_help(shell)
    end

    # Returns commands ready to be printed.
    def printable_commands(all = true, subcommand = false)
      (all ? all_commands : commands).map do |_, command|
        next if command.hidden?
        item = []
        item << banner(command, false, subcommand)
        item << (command.description ? "# #{command.description.gsub(/\s+/m, ' ')}" : "")
        item
      end.compact
    end
    alias_method :printable_tasks, :printable_commands

    def subcommands
      @subcommands ||= from_superclass(:subcommands, [])
    end
    alias_method :subtasks, :subcommands

    def subcommand_classes
      @subcommand_classes ||= {}
    end

    def subcommand(subcommand, subcommand_class)
      subcommands << subcommand.to_s
      subcommand_class.subcommand_help subcommand
      subcommand_classes[subcommand.to_s] = subcommand_class

      define_method(subcommand) do |*args|
        args, opts = Bundler::Thor::Arguments.split(args)
        invoke_args = [args, opts, {:invoked_via_subcommand => true, :class_options => options}]
        invoke_args.unshift "help" if opts.delete("--help") || opts.delete("-h")
        invoke subcommand_class, *invoke_args
      end
      subcommand_class.commands.each do |_meth, command|
        command.ancestor_name = subcommand
      end
    end
    alias_method :subtask, :subcommand

    # Extend check unknown options to accept a hash of conditions.
    #
    # === Parameters
    # options<Hash>: A hash containing :only and/or :except keys
    def check_unknown_options!(options = {})
      @check_unknown_options ||= {}
      options.each do |key, value|
        if value
          @check_unknown_options[key] = Array(value)
        else
          @check_unknown_options.delete(key)
        end
      end
      @check_unknown_options
    end

    # Overwrite check_unknown_options? to take subcommands and options into account.
    def check_unknown_options?(config) #:nodoc:
      options = check_unknown_options
      return false unless options

      command = config[:current_command]
      return true unless command

      name = command.name

      if subcommands.include?(name)
        false
      elsif options[:except]
        !options[:except].include?(name.to_sym)
      elsif options[:only]
        options[:only].include?(name.to_sym)
      else
        true
      end
    end

    # Stop parsing of options as soon as an unknown option or a regular
    # argument is encountered.  All remaining arguments are passed to the command.
    # This is useful if you have a command that can receive arbitrary additional
    # options, and where those additional options should not be handled by
    # Bundler::Thor.
    #
    # ==== Example
    #
    # To better understand how this is useful, let's consider a command that calls
    # an external command.  A user may want to pass arbitrary options and
    # arguments to that command.  The command itself also accepts some options,
    # which should be handled by Bundler::Thor.
    #
    #   class_option "verbose",  :type => :boolean
    #   stop_on_unknown_option! :exec
    #   check_unknown_options!  :except => :exec
    #
    #   desc "exec", "Run a shell command"
    #   def exec(*args)
    #     puts "diagnostic output" if options[:verbose]
    #     Kernel.exec(*args)
    #   end
    #
    # Here +exec+ can be called with +--verbose+ to get diagnostic output,
    # e.g.:
    #
    #   $ thor exec --verbose echo foo
    #   diagnostic output
    #   foo
    #
    # But if +--verbose+ is given after +echo+, it is passed to +echo+ instead:
    #
    #   $ thor exec echo --verbose foo
    #   --verbose foo
    #
    # ==== Parameters
    # Symbol ...:: A list of commands that should be affected.
    def stop_on_unknown_option!(*command_names)
      @stop_on_unknown_option = stop_on_unknown_option | command_names
    end

    def stop_on_unknown_option?(command) #:nodoc:
      command && stop_on_unknown_option.include?(command.name.to_sym)
    end

    # Disable the check for required options for the given commands.
    # This is useful if you have a command that does not need the required options
    # to work, like help.
    #
    # ==== Parameters
    # Symbol ...:: A list of commands that should be affected.
    def disable_required_check!(*command_names)
      @disable_required_check = disable_required_check | command_names
    end

    def disable_required_check?(command) #:nodoc:
      command && disable_required_check.include?(command.name.to_sym)
    end

  protected

    def stop_on_unknown_option #:nodoc:
      @stop_on_unknown_option ||= []
    end

    # help command has the required check disabled by default.
    def disable_required_check #:nodoc:
      @disable_required_check ||= [:help]
    end

    # The method responsible for dispatching given the args.
    def dispatch(meth, given_args, given_opts, config) #:nodoc: # rubocop:disable MethodLength
      meth ||= retrieve_command_name(given_args)
      command = all_commands[normalize_command_name(meth)]

      if !command && config[:invoked_via_subcommand]
        # We're a subcommand and our first argument didn't match any of our
        # commands. So we put it back and call our default command.
        given_args.unshift(meth)
        command = all_commands[normalize_command_name(default_command)]
      end

      if command
        args, opts = Bundler::Thor::Options.split(given_args)
        if stop_on_unknown_option?(command) && !args.empty?
          # given_args starts with a non-option, so we treat everything as
          # ordinary arguments
          args.concat opts
          opts.clear
        end
      else
        args = given_args
        opts = nil
        command = dynamic_command_class.new(meth)
      end

      opts = given_opts || opts || []
      config[:current_command] = command
      config[:command_options] = command.options

      instance = new(args, opts, config)
      yield instance if block_given?
      args = instance.args
      trailing = args[Range.new(arguments.size, -1)]
      instance.invoke_command(command, trailing || [])
    end

    # The banner for this class. You can customize it if you are invoking the
    # thor class by another ways which is not the Bundler::Thor::Runner. It receives
    # the command that is going to be invoked and a boolean which indicates if
    # the namespace should be displayed as arguments.
    #
    def banner(command, namespace = nil, subcommand = false)
      command.formatted_usage(self, $thor_runner, subcommand).split("\n").map do |formatted_usage|
        "#{basename} #{formatted_usage}"
      end.join("\n")
    end

    def baseclass #:nodoc:
      Bundler::Thor
    end

    def dynamic_command_class #:nodoc:
      Bundler::Thor::DynamicCommand
    end

    def create_command(meth) #:nodoc:
      @usage ||= nil
      @desc ||= nil
      @long_desc ||= nil
      @hide ||= nil

      if @usage && @desc
        base_class = @hide ? Bundler::Thor::HiddenCommand : Bundler::Thor::Command
        commands[meth] = base_class.new(meth, @desc, @long_desc, @usage, method_options)
        @usage, @desc, @long_desc, @method_options, @hide = nil
        true
      elsif all_commands[meth] || meth == "method_missing"
        true
      else
        puts "[WARNING] Attempted to create command #{meth.inspect} without usage or description. " \
             "Call desc if you want this method to be available as command or declare it inside a " \
             "no_commands{} block. Invoked from #{caller[1].inspect}."
        false
      end
    end
    alias_method :create_task, :create_command

    def initialize_added #:nodoc:
      class_options.merge!(method_options)
      @method_options = nil
    end

    # Retrieve the command name from given args.
    def retrieve_command_name(args) #:nodoc:
      meth = args.first.to_s unless args.empty?
      args.shift if meth && (map[meth] || meth !~ /^\-/)
    end
    alias_method :retrieve_task_name, :retrieve_command_name

    # receives a (possibly nil) command name and returns a name that is in
    # the commands hash. In addition to normalizing aliases, this logic
    # will determine if a shortened command is an unambiguous substring of
    # a command or alias.
    #
    # +normalize_command_name+ also converts names like +animal-prison+
    # into +animal_prison+.
    def normalize_command_name(meth) #:nodoc:
      return default_command.to_s.tr("-", "_") unless meth

      possibilities = find_command_possibilities(meth)
      raise AmbiguousTaskError, "Ambiguous command #{meth} matches [#{possibilities.join(', ')}]" if possibilities.size > 1

      if possibilities.empty?
        meth ||= default_command
      elsif map[meth]
        meth = map[meth]
      else
        meth = possibilities.first
      end

      meth.to_s.tr("-", "_") # treat foo-bar as foo_bar
    end
    alias_method :normalize_task_name, :normalize_command_name

    # this is the logic that takes the command name passed in by the user
    # and determines whether it is an unambiguous substrings of a command or
    # alias name.
    def find_command_possibilities(meth)
      len = meth.to_s.length
      possibilities = all_commands.merge(map).keys.select { |n| meth == n[0, len] }.sort
      unique_possibilities = possibilities.map { |k| map[k] || k }.uniq

      if possibilities.include?(meth)
        [meth]
      elsif unique_possibilities.size == 1
        unique_possibilities
      else
        possibilities
      end
    end
    alias_method :find_task_possibilities, :find_command_possibilities

    def subcommand_help(cmd)
      desc "help [COMMAND]", "Describe subcommands or one specific subcommand"
      class_eval "
        def help(command = nil, subcommand = true); super; end
"
    end
    alias_method :subtask_help, :subcommand_help
  end

  include Bundler::Thor::Base

  map HELP_MAPPINGS => :help

  desc "help [COMMAND]", "Describe available commands or one specific command"
  def help(command = nil, subcommand = false)
    if command
      if self.class.subcommands.include? command
        self.class.subcommand_classes[command].help(shell, true)
      else
        self.class.command_help(shell, command)
      end
    else
      self.class.help(shell, subcommand)
    end
  end
end
PK=H[�;��Jshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/command.rbnu�[���class Bundler::Thor
  class Command < Struct.new(:name, :description, :long_description, :usage, :options, :ancestor_name)
    FILE_REGEXP = /^#{Regexp.escape(File.dirname(__FILE__))}/

    def initialize(name, description, long_description, usage, options = nil)
      super(name.to_s, description, long_description, usage, options || {})
    end

    def initialize_copy(other) #:nodoc:
      super(other)
      self.options = other.options.dup if other.options
    end

    def hidden?
      false
    end

    # By default, a command invokes a method in the thor class. You can change this
    # implementation to create custom commands.
    def run(instance, args = [])
      arity = nil

      if private_method?(instance)
        instance.class.handle_no_command_error(name)
      elsif public_method?(instance)
        arity = instance.method(name).arity
        instance.__send__(name, *args)
      elsif local_method?(instance, :method_missing)
        instance.__send__(:method_missing, name.to_sym, *args)
      else
        instance.class.handle_no_command_error(name)
      end
    rescue ArgumentError => e
      handle_argument_error?(instance, e, caller) ? instance.class.handle_argument_error(self, e, args, arity) : (raise e)
    rescue NoMethodError => e
      handle_no_method_error?(instance, e, caller) ? instance.class.handle_no_command_error(name) : (raise e)
    end

    # Returns the formatted usage by injecting given required arguments
    # and required options into the given usage.
    def formatted_usage(klass, namespace = true, subcommand = false)
      if ancestor_name
        formatted = "#{ancestor_name} ".dup # add space
      elsif namespace
        namespace = klass.namespace
        formatted = "#{namespace.gsub(/^(default)/, '')}:".dup
      end
      formatted ||= "#{klass.namespace.split(':').last} ".dup if subcommand

      formatted ||= "".dup

      Array(usage).map do |specific_usage|
        formatted_specific_usage = formatted

        formatted_specific_usage += required_arguments_for(klass, specific_usage)

        # Add required options
        formatted_specific_usage += " #{required_options}"

        # Strip and go!
        formatted_specific_usage.strip
      end.join("\n")
    end

  protected

    # Add usage with required arguments
    def required_arguments_for(klass, usage)
      if klass && !klass.arguments.empty?
        usage.to_s.gsub(/^#{name}/) do |match|
          match << " " << klass.arguments.map(&:usage).compact.join(" ")
        end
      else
        usage.to_s
      end
    end

    def not_debugging?(instance)
      !(instance.class.respond_to?(:debugging) && instance.class.debugging)
    end

    def required_options
      @required_options ||= options.map { |_, o| o.usage if o.required? }.compact.sort.join(" ")
    end

    # Given a target, checks if this class name is a public method.
    def public_method?(instance) #:nodoc:
      !(instance.public_methods & [name.to_s, name.to_sym]).empty?
    end

    def private_method?(instance)
      !(instance.private_methods & [name.to_s, name.to_sym]).empty?
    end

    def local_method?(instance, name)
      methods = instance.public_methods(false) + instance.private_methods(false) + instance.protected_methods(false)
      !(methods & [name.to_s, name.to_sym]).empty?
    end

    def sans_backtrace(backtrace, caller) #:nodoc:
      saned = backtrace.reject { |frame| frame =~ FILE_REGEXP || (frame =~ /\.java:/ && RUBY_PLATFORM =~ /java/) || (frame =~ %r{^kernel/} && RUBY_ENGINE =~ /rbx/) }
      saned - caller
    end

    def handle_argument_error?(instance, error, caller)
      not_debugging?(instance) && (error.message =~ /wrong number of arguments/ || error.message =~ /given \d*, expected \d*/) && begin
        saned = sans_backtrace(error.backtrace, caller)
        saned.empty? || saned.size == 1
      end
    end

    def handle_no_method_error?(instance, error, caller)
      not_debugging?(instance) &&
        error.message =~ /^undefined method `#{name}' for #{Regexp.escape(instance.to_s)}$/
    end
  end
  Task = Command

  # A command that is hidden in help messages but still invocable.
  class HiddenCommand < Command
    def hidden?
      true
    end
  end
  HiddenTask = HiddenCommand

  # A dynamic command that handles method missing scenarios.
  class DynamicCommand < Command
    def initialize(name, options = nil)
      super(name.to_s, "A dynamically-generated command", name.to_s, name.to_s, options)
    end

    def run(instance, args = [])
      if (instance.methods & [name.to_s, name.to_sym]).empty?
        super
      else
        instance.class.handle_no_command_error(name)
      end
    end
  end
  DynamicTask = DynamicCommand
end
PK=H[#I`i#i#Hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/group.rbnu�[���require_relative "base"

# Bundler::Thor has a special class called Bundler::Thor::Group. The main difference to Bundler::Thor class
# is that it invokes all commands at once. It also include some methods that allows
# invocations to be done at the class method, which are not available to Bundler::Thor
# commands.
class Bundler::Thor::Group
  class << self
    # The description for this Bundler::Thor::Group. If none is provided, but a source root
    # exists, tries to find the USAGE one folder above it, otherwise searches
    # in the superclass.
    #
    # ==== Parameters
    # description<String>:: The description for this Bundler::Thor::Group.
    #
    def desc(description = nil)
      if description
        @desc = description
      else
        @desc ||= from_superclass(:desc, nil)
      end
    end

    # Prints help information.
    #
    # ==== Options
    # short:: When true, shows only usage.
    #
    def help(shell)
      shell.say "Usage:"
      shell.say "  #{banner}\n"
      shell.say
      class_options_help(shell)
      shell.say desc if desc
    end

    # Stores invocations for this class merging with superclass values.
    #
    def invocations #:nodoc:
      @invocations ||= from_superclass(:invocations, {})
    end

    # Stores invocation blocks used on invoke_from_option.
    #
    def invocation_blocks #:nodoc:
      @invocation_blocks ||= from_superclass(:invocation_blocks, {})
    end

    # Invoke the given namespace or class given. It adds an instance
    # method that will invoke the klass and command. You can give a block to
    # configure how it will be invoked.
    #
    # The namespace/class given will have its options showed on the help
    # usage. Check invoke_from_option for more information.
    #
    def invoke(*names, &block)
      options = names.last.is_a?(Hash) ? names.pop : {}
      verbose = options.fetch(:verbose, true)

      names.each do |name|
        invocations[name] = false
        invocation_blocks[name] = block if block_given?

        class_eval <<-METHOD, __FILE__, __LINE__ + 1
          def _invoke_#{name.to_s.gsub(/\W/, '_')}
            klass, command = self.class.prepare_for_invocation(nil, #{name.inspect})

            if klass
              say_status :invoke, #{name.inspect}, #{verbose.inspect}
              block = self.class.invocation_blocks[#{name.inspect}]
              _invoke_for_class_method klass, command, &block
            else
              say_status :error, %(#{name.inspect} [not found]), :red
            end
          end
        METHOD
      end
    end

    # Invoke a thor class based on the value supplied by the user to the
    # given option named "name". A class option must be created before this
    # method is invoked for each name given.
    #
    # ==== Examples
    #
    #   class GemGenerator < Bundler::Thor::Group
    #     class_option :test_framework, :type => :string
    #     invoke_from_option :test_framework
    #   end
    #
    # ==== Boolean options
    #
    # In some cases, you want to invoke a thor class if some option is true or
    # false. This is automatically handled by invoke_from_option. Then the
    # option name is used to invoke the generator.
    #
    # ==== Preparing for invocation
    #
    # In some cases you want to customize how a specified hook is going to be
    # invoked. You can do that by overwriting the class method
    # prepare_for_invocation. The class method must necessarily return a klass
    # and an optional command.
    #
    # ==== Custom invocations
    #
    # You can also supply a block to customize how the option is going to be
    # invoked. The block receives two parameters, an instance of the current
    # class and the klass to be invoked.
    #
    def invoke_from_option(*names, &block)
      options = names.last.is_a?(Hash) ? names.pop : {}
      verbose = options.fetch(:verbose, :white)

      names.each do |name|
        unless class_options.key?(name)
          raise ArgumentError, "You have to define the option #{name.inspect} " \
                              "before setting invoke_from_option."
        end

        invocations[name] = true
        invocation_blocks[name] = block if block_given?

        class_eval <<-METHOD, __FILE__, __LINE__ + 1
          def _invoke_from_option_#{name.to_s.gsub(/\W/, '_')}
            return unless options[#{name.inspect}]

            value = options[#{name.inspect}]
            value = #{name.inspect} if TrueClass === value
            klass, command = self.class.prepare_for_invocation(#{name.inspect}, value)

            if klass
              say_status :invoke, value, #{verbose.inspect}
              block = self.class.invocation_blocks[#{name.inspect}]
              _invoke_for_class_method klass, command, &block
            else
              say_status :error, %(\#{value} [not found]), :red
            end
          end
        METHOD
      end
    end

    # Remove a previously added invocation.
    #
    # ==== Examples
    #
    #   remove_invocation :test_framework
    #
    def remove_invocation(*names)
      names.each do |name|
        remove_command(name)
        remove_class_option(name)
        invocations.delete(name)
        invocation_blocks.delete(name)
      end
    end

    # Overwrite class options help to allow invoked generators options to be
    # shown recursively when invoking a generator.
    #
    def class_options_help(shell, groups = {}) #:nodoc:
      get_options_from_invocations(groups, class_options) do |klass|
        klass.send(:get_options_from_invocations, groups, class_options)
      end
      super(shell, groups)
    end

    # Get invocations array and merge options from invocations. Those
    # options are added to group_options hash. Options that already exists
    # in base_options are not added twice.
    #
    def get_options_from_invocations(group_options, base_options) #:nodoc: # rubocop:disable MethodLength
      invocations.each do |name, from_option|
        value = if from_option
          option = class_options[name]
          option.type == :boolean ? name : option.default
        else
          name
        end
        next unless value

        klass, _ = prepare_for_invocation(name, value)
        next unless klass && klass.respond_to?(:class_options)

        value = value.to_s
        human_name = value.respond_to?(:classify) ? value.classify : value

        group_options[human_name] ||= []
        group_options[human_name] += klass.class_options.values.select do |class_option|
          base_options[class_option.name.to_sym].nil? && class_option.group.nil? &&
            !group_options.values.flatten.any? { |i| i.name == class_option.name }
        end

        yield klass if block_given?
      end
    end

    # Returns commands ready to be printed.
    def printable_commands(*)
      item = []
      item << banner
      item << (desc ? "# #{desc.gsub(/\s+/m, ' ')}" : "")
      [item]
    end
    alias_method :printable_tasks, :printable_commands

    def handle_argument_error(command, error, _args, arity) #:nodoc:
      msg = "#{basename} #{command.name} takes #{arity} argument".dup
      msg << "s" if arity > 1
      msg << ", but it should not."
      raise error, msg
    end

  protected

    # The method responsible for dispatching given the args.
    def dispatch(command, given_args, given_opts, config) #:nodoc:
      if Bundler::Thor::HELP_MAPPINGS.include?(given_args.first)
        help(config[:shell])
        return
      end

      args, opts = Bundler::Thor::Options.split(given_args)
      opts = given_opts || opts

      instance = new(args, opts, config)
      yield instance if block_given?

      if command
        instance.invoke_command(all_commands[command])
      else
        instance.invoke_all
      end
    end

    # The banner for this class. You can customize it if you are invoking the
    # thor class by another ways which is not the Bundler::Thor::Runner.
    def banner
      "#{basename} #{self_command.formatted_usage(self, false)}"
    end

    # Represents the whole class as a command.
    def self_command #:nodoc:
      Bundler::Thor::DynamicCommand.new(namespace, class_options)
    end
    alias_method :self_task, :self_command

    def baseclass #:nodoc:
      Bundler::Thor::Group
    end

    def create_command(meth) #:nodoc:
      commands[meth.to_s] = Bundler::Thor::Command.new(meth, nil, nil, nil, nil)
      true
    end
    alias_method :create_task, :create_command
  end

  include Bundler::Thor::Base

protected

  # Shortcut to invoke with padding and block handling. Use internally by
  # invoke and invoke_from_option class methods.
  def _invoke_for_class_method(klass, command = nil, *args, &block) #:nodoc:
    with_padding do
      if block
        case block.arity
        when 3
          yield(self, klass, command)
        when 2
          yield(self, klass)
        when 1
          instance_exec(klass, &block)
        end
      else
        invoke klass, command, *args
      end
    end
  end
end
PK=H[(��_b'b'Ishare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/runner.rbnu�[���require_relative "../thor"
require_relative "group"

require "yaml"
require "digest/md5"
require "pathname"

class Bundler::Thor::Runner < Bundler::Thor #:nodoc: # rubocop:disable ClassLength
  autoload :OpenURI, "open-uri"

  map "-T" => :list, "-i" => :install, "-u" => :update, "-v" => :version

  def self.banner(command, all = false, subcommand = false)
    "thor " + command.formatted_usage(self, all, subcommand)
  end

  def self.exit_on_failure?
    true
  end

  # Override Bundler::Thor#help so it can give information about any class and any method.
  #
  def help(meth = nil)
    if meth && !respond_to?(meth)
      initialize_thorfiles(meth)
      klass, command = Bundler::Thor::Util.find_class_and_command_by_namespace(meth)
      self.class.handle_no_command_error(command, false) if klass.nil?
      klass.start(["-h", command].compact, :shell => shell)
    else
      super
    end
  end

  # If a command is not found on Bundler::Thor::Runner, method missing is invoked and
  # Bundler::Thor::Runner is then responsible for finding the command in all classes.
  #
  def method_missing(meth, *args)
    meth = meth.to_s
    initialize_thorfiles(meth)
    klass, command = Bundler::Thor::Util.find_class_and_command_by_namespace(meth)
    self.class.handle_no_command_error(command, false) if klass.nil?
    args.unshift(command) if command
    klass.start(args, :shell => shell)
  end

  desc "install NAME", "Install an optionally named Bundler::Thor file into your system commands"
  method_options :as => :string, :relative => :boolean, :force => :boolean
  def install(name) # rubocop:disable MethodLength
    initialize_thorfiles

    # If a directory name is provided as the argument, look for a 'main.thor'
    # command in said directory.
    begin
      if File.directory?(File.expand_path(name))
        base = File.join(name, "main.thor")
        package = :directory
        contents = open(base, &:read)
      else
        base = name
        package = :file
        contents = open(name, &:read)
      end
    rescue OpenURI::HTTPError
      raise Error, "Error opening URI '#{name}'"
    rescue Errno::ENOENT
      raise Error, "Error opening file '#{name}'"
    end

    say "Your Thorfile contains:"
    say contents

    unless options["force"]
      return false if no?("Do you wish to continue [y/N]?")
    end

    as = options["as"] || begin
      first_line = contents.split("\n")[0]
      (match = first_line.match(/\s*#\s*module:\s*([^\n]*)/)) ? match[1].strip : nil
    end

    unless as
      basename = File.basename(name)
      as = ask("Please specify a name for #{name} in the system repository [#{basename}]:")
      as = basename if as.empty?
    end

    location = if options[:relative] || name =~ %r{^https?://}
      name
    else
      File.expand_path(name)
    end

    thor_yaml[as] = {
      :filename   => Digest::MD5.hexdigest(name + as),
      :location   => location,
      :namespaces => Bundler::Thor::Util.namespaces_in_content(contents, base)
    }

    save_yaml(thor_yaml)
    say "Storing thor file in your system repository"
    destination = File.join(thor_root, thor_yaml[as][:filename])

    if package == :file
      File.open(destination, "w") { |f| f.puts contents }
    else
      require "fileutils"
      FileUtils.cp_r(name, destination)
    end

    thor_yaml[as][:filename] # Indicate success
  end

  desc "version", "Show Bundler::Thor version"
  def version
    require_relative "version"
    say "Bundler::Thor #{Bundler::Thor::VERSION}"
  end

  desc "uninstall NAME", "Uninstall a named Bundler::Thor module"
  def uninstall(name)
    raise Error, "Can't find module '#{name}'" unless thor_yaml[name]
    say "Uninstalling #{name}."
    require "fileutils"
    FileUtils.rm_rf(File.join(thor_root, (thor_yaml[name][:filename]).to_s))

    thor_yaml.delete(name)
    save_yaml(thor_yaml)

    puts "Done."
  end

  desc "update NAME", "Update a Bundler::Thor file from its original location"
  def update(name)
    raise Error, "Can't find module '#{name}'" if !thor_yaml[name] || !thor_yaml[name][:location]

    say "Updating '#{name}' from #{thor_yaml[name][:location]}"

    old_filename = thor_yaml[name][:filename]
    self.options = options.merge("as" => name)

    if File.directory? File.expand_path(name)
      require "fileutils"
      FileUtils.rm_rf(File.join(thor_root, old_filename))

      thor_yaml.delete(old_filename)
      save_yaml(thor_yaml)

      filename = install(name)
    else
      filename = install(thor_yaml[name][:location])
    end

    File.delete(File.join(thor_root, old_filename)) unless filename == old_filename
  end

  desc "installed", "List the installed Bundler::Thor modules and commands"
  method_options :internal => :boolean
  def installed
    initialize_thorfiles(nil, true)
    display_klasses(true, options["internal"])
  end

  desc "list [SEARCH]", "List the available thor commands (--substring means .*SEARCH)"
  method_options :substring => :boolean, :group => :string, :all => :boolean, :debug => :boolean
  def list(search = "")
    initialize_thorfiles

    search = ".*#{search}" if options["substring"]
    search = /^#{search}.*/i
    group  = options[:group] || "standard"

    klasses = Bundler::Thor::Base.subclasses.select do |k|
      (options[:all] || k.group == group) && k.namespace =~ search
    end

    display_klasses(false, false, klasses)
  end

private

  def thor_root
    Bundler::Thor::Util.thor_root
  end

  def thor_yaml
    @thor_yaml ||= begin
      yaml_file = File.join(thor_root, "thor.yml")
      yaml = YAML.load_file(yaml_file) if File.exist?(yaml_file)
      yaml || {}
    end
  end

  # Save the yaml file. If none exists in thor root, creates one.
  #
  def save_yaml(yaml)
    yaml_file = File.join(thor_root, "thor.yml")

    unless File.exist?(yaml_file)
      require "fileutils"
      FileUtils.mkdir_p(thor_root)
      yaml_file = File.join(thor_root, "thor.yml")
      FileUtils.touch(yaml_file)
    end

    File.open(yaml_file, "w") { |f| f.puts yaml.to_yaml }
  end

  # Load the Thorfiles. If relevant_to is supplied, looks for specific files
  # in the thor_root instead of loading them all.
  #
  # By default, it also traverses the current path until find Bundler::Thor files, as
  # described in thorfiles. This look up can be skipped by supplying
  # skip_lookup true.
  #
  def initialize_thorfiles(relevant_to = nil, skip_lookup = false)
    thorfiles(relevant_to, skip_lookup).each do |f|
      Bundler::Thor::Util.load_thorfile(f, nil, options[:debug]) unless Bundler::Thor::Base.subclass_files.keys.include?(File.expand_path(f))
    end
  end

  # Finds Thorfiles by traversing from your current directory down to the root
  # directory of your system. If at any time we find a Bundler::Thor file, we stop.
  #
  # We also ensure that system-wide Thorfiles are loaded first, so local
  # Thorfiles can override them.
  #
  # ==== Example
  #
  # If we start at /Users/wycats/dev/thor ...
  #
  # 1. /Users/wycats/dev/thor
  # 2. /Users/wycats/dev
  # 3. /Users/wycats <-- we find a Thorfile here, so we stop
  #
  # Suppose we start at c:\Documents and Settings\james\dev\thor ...
  #
  # 1. c:\Documents and Settings\james\dev\thor
  # 2. c:\Documents and Settings\james\dev
  # 3. c:\Documents and Settings\james
  # 4. c:\Documents and Settings
  # 5. c:\ <-- no Thorfiles found!
  #
  def thorfiles(relevant_to = nil, skip_lookup = false)
    thorfiles = []

    unless skip_lookup
      Pathname.pwd.ascend do |path|
        thorfiles = Bundler::Thor::Util.globs_for(path).map { |g| Dir[g] }.flatten
        break unless thorfiles.empty?
      end
    end

    files  = (relevant_to ? thorfiles_relevant_to(relevant_to) : Bundler::Thor::Util.thor_root_glob)
    files += thorfiles
    files -= ["#{thor_root}/thor.yml"]

    files.map! do |file|
      File.directory?(file) ? File.join(file, "main.thor") : file
    end
  end

  # Load Thorfiles relevant to the given method. If you provide "foo:bar" it
  # will load all thor files in the thor.yaml that has "foo" e "foo:bar"
  # namespaces registered.
  #
  def thorfiles_relevant_to(meth)
    lookup = [meth, meth.split(":")[0...-1].join(":")]

    files = thor_yaml.select do |_, v|
      v[:namespaces] && !(v[:namespaces] & lookup).empty?
    end

    files.map { |_, v| File.join(thor_root, (v[:filename]).to_s) }
  end

  # Display information about the given klasses. If with_module is given,
  # it shows a table with information extracted from the yaml file.
  #
  def display_klasses(with_modules = false, show_internal = false, klasses = Bundler::Thor::Base.subclasses)
    klasses -= [Bundler::Thor, Bundler::Thor::Runner, Bundler::Thor::Group] unless show_internal

    raise Error, "No Bundler::Thor commands available" if klasses.empty?
    show_modules if with_modules && !thor_yaml.empty?

    list = Hash.new { |h, k| h[k] = [] }
    groups = klasses.select { |k| k.ancestors.include?(Bundler::Thor::Group) }

    # Get classes which inherit from Bundler::Thor
    (klasses - groups).each { |k| list[k.namespace.split(":").first] += k.printable_commands(false) }

    # Get classes which inherit from Bundler::Thor::Base
    groups.map! { |k| k.printable_commands(false).first }
    list["root"] = groups

    # Order namespaces with default coming first
    list = list.sort { |a, b| a[0].sub(/^default/, "") <=> b[0].sub(/^default/, "") }
    list.each { |n, commands| display_commands(n, commands) unless commands.empty? }
  end

  def display_commands(namespace, list) #:nodoc:
    list.sort! { |a, b| a[0] <=> b[0] }

    say shell.set_color(namespace, :blue, true)
    say "-" * namespace.size

    print_table(list, :truncate => true)
    say
  end
  alias_method :display_tasks, :display_commands

  def show_modules #:nodoc:
    info = []
    labels = %w(Modules Namespaces)

    info << labels
    info << ["-" * labels[0].size, "-" * labels[1].size]

    thor_yaml.each do |name, hash|
      info << [name, hash[:namespaces].join(", ")]
    end

    print_table info
    say ""
  end
end
PK=H[����Ishare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser.rbnu�[���require_relative "parser/argument"
require_relative "parser/arguments"
require_relative "parser/option"
require_relative "parser/options"
PK=H[�dq=77Wshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rbnu�[���class Bundler::Thor
  module LineEditor
    class Readline < Basic
      def self.available?
        begin
          require "readline"
        rescue LoadError
        end

        Object.const_defined?(:Readline)
      end

      def readline
        if echo?
          ::Readline.completion_append_character = nil
          # rb-readline does not allow Readline.completion_proc= to receive nil.
          if complete = completion_proc
            ::Readline.completion_proc = complete
          end
          ::Readline.readline(prompt, add_to_history?)
        else
          super
        end
      end

    private

      def add_to_history?
        options.fetch(:add_to_history, true)
      end

      def completion_proc
        if use_path_completion?
          proc { |text| PathCompletion.new(text).matches }
        elsif completion_options.any?
          proc do |text|
            completion_options.select { |option| option.start_with?(text) }
          end
        end
      end

      def completion_options
        options.fetch(:limited_to, [])
      end

      def use_path_completion?
        options.fetch(:path, false)
      end

      class PathCompletion
        attr_reader :text
        private :text

        def initialize(text)
          @text = text
        end

        def matches
          relative_matches
        end

      private

        def relative_matches
          absolute_matches.map { |path| path.sub(base_path, "") }
        end

        def absolute_matches
          Dir[glob_pattern].map do |path|
            if File.directory?(path)
              "#{path}/"
            else
              path
            end
          end
        end

        def glob_pattern
          "#{base_path}#{text}*"
        end

        def base_path
          "#{Dir.pwd}/"
        end
      end
    end
  end
end
PK=H[Y�t}}Tshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rbnu�[���class Bundler::Thor
  module LineEditor
    class Basic
      attr_reader :prompt, :options

      def self.available?
        true
      end

      def initialize(prompt, options)
        @prompt = prompt
        @options = options
      end

      def readline
        $stdout.print(prompt)
        get_input
      end

    private

      def get_input
        if echo?
          $stdin.gets
        else
          # Lazy-load io/console since it is gem-ified as of 2.3
          require "io/console"
          $stdin.noecho(&:gets)
        end
      end

      def echo?
        options.fetch(:echo, true)
      end
    end
  end
end
PK=H[�ᡇ++Qshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/nested_context.rbnu�[���class Bundler::Thor
  class NestedContext
    def initialize
      @depth = 0
    end

    def enter
      push

      yield
    ensure
      pop
    end

    def entered?
      @depth > 0
    end

    private

    def push
      @depth += 1
    end

    def pop
      @depth -= 1
    end
  end
end
PK=H[��)�)Jshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions.rbnu�[���require_relative "actions/create_file"
require_relative "actions/create_link"
require_relative "actions/directory"
require_relative "actions/empty_directory"
require_relative "actions/file_manipulation"
require_relative "actions/inject_into_file"

class Bundler::Thor
  module Actions
    attr_accessor :behavior

    def self.included(base) #:nodoc:
      super(base)
      base.extend ClassMethods
    end

    module ClassMethods
      # Hold source paths for one Bundler::Thor instance. source_paths_for_search is the
      # method responsible to gather source_paths from this current class,
      # inherited paths and the source root.
      #
      def source_paths
        @_source_paths ||= []
      end

      # Stores and return the source root for this class
      def source_root(path = nil)
        @_source_root = path if path
        @_source_root ||= nil
      end

      # Returns the source paths in the following order:
      #
      #   1) This class source paths
      #   2) Source root
      #   3) Parents source paths
      #
      def source_paths_for_search
        paths = []
        paths += source_paths
        paths << source_root if source_root
        paths += from_superclass(:source_paths, [])
        paths
      end

      # Add runtime options that help actions execution.
      #
      def add_runtime_options!
        class_option :force, :type => :boolean, :aliases => "-f", :group => :runtime,
                             :desc => "Overwrite files that already exist"

        class_option :pretend, :type => :boolean, :aliases => "-p", :group => :runtime,
                               :desc => "Run but do not make any changes"

        class_option :quiet, :type => :boolean, :aliases => "-q", :group => :runtime,
                             :desc => "Suppress status output"

        class_option :skip, :type => :boolean, :aliases => "-s", :group => :runtime,
                            :desc => "Skip files that already exist"
      end
    end

    # Extends initializer to add more configuration options.
    #
    # ==== Configuration
    # behavior<Symbol>:: The actions default behavior. Can be :invoke or :revoke.
    #                    It also accepts :force, :skip and :pretend to set the behavior
    #                    and the respective option.
    #
    # destination_root<String>:: The root directory needed for some actions.
    #
    def initialize(args = [], options = {}, config = {})
      self.behavior = case config[:behavior].to_s
      when "force", "skip"
        _cleanup_options_and_set(options, config[:behavior])
        :invoke
      when "revoke"
        :revoke
      else
        :invoke
      end

      super
      self.destination_root = config[:destination_root]
    end

    # Wraps an action object and call it accordingly to the thor class behavior.
    #
    def action(instance) #:nodoc:
      if behavior == :revoke
        instance.revoke!
      else
        instance.invoke!
      end
    end

    # Returns the root for this thor class (also aliased as destination root).
    #
    def destination_root
      @destination_stack.last
    end

    # Sets the root for this thor class. Relatives path are added to the
    # directory where the script was invoked and expanded.
    #
    def destination_root=(root)
      @destination_stack ||= []
      @destination_stack[0] = File.expand_path(root || "")
    end

    # Returns the given path relative to the absolute root (ie, root where
    # the script started).
    #
    def relative_to_original_destination_root(path, remove_dot = true)
      root = @destination_stack[0]
      if path.start_with?(root) && [File::SEPARATOR, File::ALT_SEPARATOR, nil, ''].include?(path[root.size..root.size])
        path = path.dup
        path[0...root.size] = '.'
        remove_dot ? (path[2..-1] || "") : path
      else
        path
      end
    end

    # Holds source paths in instance so they can be manipulated.
    #
    def source_paths
      @source_paths ||= self.class.source_paths_for_search
    end

    # Receives a file or directory and search for it in the source paths.
    #
    def find_in_source_paths(file)
      possible_files = [file, file + TEMPLATE_EXTNAME]
      relative_root = relative_to_original_destination_root(destination_root, false)

      source_paths.each do |source|
        possible_files.each do |f|
          source_file = File.expand_path(f, File.join(source, relative_root))
          return source_file if File.exist?(source_file)
        end
      end

      message = "Could not find #{file.inspect} in any of your source paths. ".dup

      unless self.class.source_root
        message << "Please invoke #{self.class.name}.source_root(PATH) with the PATH containing your templates. "
      end

      message << if source_paths.empty?
                   "Currently you have no source paths."
                 else
                   "Your current source paths are: \n#{source_paths.join("\n")}"
                 end

      raise Error, message
    end

    # Do something in the root or on a provided subfolder. If a relative path
    # is given it's referenced from the current root. The full path is yielded
    # to the block you provide. The path is set back to the previous path when
    # the method exits.
    #
    # ==== Parameters
    # dir<String>:: the directory to move to.
    # config<Hash>:: give :verbose => true to log and use padding.
    #
    def inside(dir = "", config = {}, &block)
      verbose = config.fetch(:verbose, false)
      pretend = options[:pretend]

      say_status :inside, dir, verbose
      shell.padding += 1 if verbose
      @destination_stack.push File.expand_path(dir, destination_root)

      # If the directory doesnt exist and we're not pretending
      if !File.exist?(destination_root) && !pretend
        require "fileutils"
        FileUtils.mkdir_p(destination_root)
      end

      if pretend
        # In pretend mode, just yield down to the block
        block.arity == 1 ? yield(destination_root) : yield
      else
        require "fileutils"
        FileUtils.cd(destination_root) { block.arity == 1 ? yield(destination_root) : yield }
      end

      @destination_stack.pop
      shell.padding -= 1 if verbose
    end

    # Goes to the root and execute the given block.
    #
    def in_root
      inside(@destination_stack.first) { yield }
    end

    # Loads an external file and execute it in the instance binding.
    #
    # ==== Parameters
    # path<String>:: The path to the file to execute. Can be a web address or
    #                a relative path from the source root.
    #
    # ==== Examples
    #
    #   apply "http://gist.github.com/103208"
    #
    #   apply "recipes/jquery.rb"
    #
    def apply(path, config = {})
      verbose = config.fetch(:verbose, true)
      is_uri  = path =~ %r{^https?\://}
      path    = find_in_source_paths(path) unless is_uri

      say_status :apply, path, verbose
      shell.padding += 1 if verbose

      contents = if is_uri
        require "open-uri"
        URI.open(path, "Accept" => "application/x-thor-template", &:read)
      else
        open(path, &:read)
      end

      instance_eval(contents, path)
      shell.padding -= 1 if verbose
    end

    # Executes a command returning the contents of the command.
    #
    # ==== Parameters
    # command<String>:: the command to be executed.
    # config<Hash>:: give :verbose => false to not log the status, :capture => true to hide to output. Specify :with
    #                to append an executable to command execution.
    #
    # ==== Example
    #
    #   inside('vendor') do
    #     run('ln -s ~/edge rails')
    #   end
    #
    def run(command, config = {})
      return unless behavior == :invoke

      destination = relative_to_original_destination_root(destination_root, false)
      desc = "#{command} from #{destination.inspect}"

      if config[:with]
        desc = "#{File.basename(config[:with].to_s)} #{desc}"
        command = "#{config[:with]} #{command}"
      end

      say_status :run, desc, config.fetch(:verbose, true)

      return if options[:pretend]

      env_splat = [config[:env]] if config[:env]

      if config[:capture]
        require "open3"
        result, status = Open3.capture2e(*env_splat, command.to_s)
        success = status.success?
      else
        result = system(*env_splat, command.to_s)
        success = result
      end

      abort if !success && config.fetch(:abort_on_failure, self.class.exit_on_failure?)

      result
    end

    # Executes a ruby script (taking into account WIN32 platform quirks).
    #
    # ==== Parameters
    # command<String>:: the command to be executed.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    def run_ruby_script(command, config = {})
      return unless behavior == :invoke
      run command, config.merge(:with => Bundler::Thor::Util.ruby_command)
    end

    # Run a thor command. A hash of options can be given and it's converted to
    # switches.
    #
    # ==== Parameters
    # command<String>:: the command to be invoked
    # args<Array>:: arguments to the command
    # config<Hash>:: give :verbose => false to not log the status, :capture => true to hide to output.
    #                Other options are given as parameter to Bundler::Thor.
    #
    #
    # ==== Examples
    #
    #   thor :install, "http://gist.github.com/103208"
    #   #=> thor install http://gist.github.com/103208
    #
    #   thor :list, :all => true, :substring => 'rails'
    #   #=> thor list --all --substring=rails
    #
    def thor(command, *args)
      config  = args.last.is_a?(Hash) ? args.pop : {}
      verbose = config.key?(:verbose) ? config.delete(:verbose) : true
      pretend = config.key?(:pretend) ? config.delete(:pretend) : false
      capture = config.key?(:capture) ? config.delete(:capture) : false

      args.unshift(command)
      args.push Bundler::Thor::Options.to_switches(config)
      command = args.join(" ").strip

      run command, :with => :thor, :verbose => verbose, :pretend => pretend, :capture => capture
    end

  protected

    # Allow current root to be shared between invocations.
    #
    def _shared_configuration #:nodoc:
      super.merge!(:destination_root => destination_root)
    end

    def _cleanup_options_and_set(options, key) #:nodoc:
      case options
      when Array
        %w(--force -f --skip -s).each { |i| options.delete(i) }
        options << "--#{key}"
      when Hash
        [:force, :skip, "force", "skip"].each { |i| options.delete(i) }
        options.merge!(key => true)
      end
    end
  end
end
PK@H[��llSshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/arguments.rbnu�[���class Bundler::Thor
  class Arguments #:nodoc: # rubocop:disable ClassLength
    NUMERIC = /[-+]?(\d*\.\d+|\d+)/

    # Receives an array of args and returns two arrays, one with arguments
    # and one with switches.
    #
    def self.split(args)
      arguments = []

      args.each do |item|
        break if item.is_a?(String) && item =~ /^-/
        arguments << item
      end

      [arguments, args[Range.new(arguments.size, -1)]]
    end

    def self.parse(*args)
      to_parse = args.pop
      new(*args).parse(to_parse)
    end

    # Takes an array of Bundler::Thor::Argument objects.
    #
    def initialize(arguments = [])
      @assigns = {}
      @non_assigned_required = []
      @switches = arguments

      arguments.each do |argument|
        if !argument.default.nil?
          begin
            @assigns[argument.human_name] = argument.default.dup
          rescue TypeError  # Compatibility shim for un-dup-able Fixnum in Ruby < 2.4
            @assigns[argument.human_name] = argument.default
          end
        elsif argument.required?
          @non_assigned_required << argument
        end
      end
    end

    def parse(args)
      @pile = args.dup

      @switches.each do |argument|
        break unless peek
        @non_assigned_required.delete(argument)
        @assigns[argument.human_name] = send(:"parse_#{argument.type}", argument.human_name)
      end

      check_requirement!
      @assigns
    end

    def remaining
      @pile
    end

  private

    def no_or_skip?(arg)
      arg =~ /^--(no|skip)-([-\w]+)$/
      $2
    end

    def last?
      @pile.empty?
    end

    def peek
      @pile.first
    end

    def shift
      @pile.shift
    end

    def unshift(arg)
      if arg.is_a?(Array)
        @pile = arg + @pile
      else
        @pile.unshift(arg)
      end
    end

    def current_is_value?
      peek && peek.to_s !~ /^-{1,2}\S+/
    end

    # Runs through the argument array getting strings that contains ":" and
    # mark it as a hash:
    #
    #   [ "name:string", "age:integer" ]
    #
    # Becomes:
    #
    #   { "name" => "string", "age" => "integer" }
    #
    def parse_hash(name)
      return shift if peek.is_a?(Hash)
      hash = {}

      while current_is_value? && peek.include?(":")
        key, value = shift.split(":", 2)
        raise MalformattedArgumentError, "You can't specify '#{key}' more than once in option '#{name}'; got #{key}:#{hash[key]} and #{key}:#{value}" if hash.include? key
        hash[key] = value
      end
      hash
    end

    # Runs through the argument array getting all strings until no string is
    # found or a switch is found.
    #
    #   ["a", "b", "c"]
    #
    # And returns it as an array:
    #
    #   ["a", "b", "c"]
    #
    def parse_array(name)
      return shift if peek.is_a?(Array)
      array = []
      array << shift while current_is_value?
      array
    end

    # Check if the peek is numeric format and return a Float or Integer.
    # Check if the peek is included in enum if enum is provided.
    # Otherwise raises an error.
    #
    def parse_numeric(name)
      return shift if peek.is_a?(Numeric)

      unless peek =~ NUMERIC && $& == peek
        raise MalformattedArgumentError, "Expected numeric value for '#{name}'; got #{peek.inspect}"
      end

      value = $&.index(".") ? shift.to_f : shift.to_i
      if @switches.is_a?(Hash) && switch = @switches[name]
        if switch.enum && !switch.enum.include?(value)
          raise MalformattedArgumentError, "Expected '#{name}' to be one of #{switch.enum.join(', ')}; got #{value}"
        end
      end
      value
    end

    # Parse string:
    # for --string-arg, just return the current value in the pile
    # for --no-string-arg, nil
    # Check if the peek is included in enum if enum is provided. Otherwise raises an error.
    #
    def parse_string(name)
      if no_or_skip?(name)
        nil
      else
        value = shift
        if @switches.is_a?(Hash) && switch = @switches[name]
          if switch.enum && !switch.enum.include?(value)
            raise MalformattedArgumentError, "Expected '#{name}' to be one of #{switch.enum.join(', ')}; got #{value}"
          end
        end
        value
      end
    end

    # Raises an error if @non_assigned_required array is not empty.
    #
    def check_requirement!
      return if @non_assigned_required.empty?
      names = @non_assigned_required.map do |o|
        o.respond_to?(:switch_name) ? o.switch_name : o.human_name
      end.join("', '")
      class_name = self.class.name.split("::").last.downcase
      raise RequiredArgumentMissingError, "No value provided for required #{class_name} '#{names}'"
    end
  end
end
PK@H[�aq���Pshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/option.rbnu�[���class Bundler::Thor
  class Option < Argument #:nodoc:
    attr_reader :aliases, :group, :lazy_default, :hide, :repeatable

    VALID_TYPES = [:boolean, :numeric, :hash, :array, :string]

    def initialize(name, options = {})
      @check_default_type = options[:check_default_type]
      options[:required] = false unless options.key?(:required)
      @repeatable     = options.fetch(:repeatable, false)
      super
      @lazy_default   = options[:lazy_default]
      @group          = options[:group].to_s.capitalize if options[:group]
      @aliases        = Array(options[:aliases])
      @hide           = options[:hide]
    end

    # This parse quick options given as method_options. It makes several
    # assumptions, but you can be more specific using the option method.
    #
    #   parse :foo => "bar"
    #   #=> Option foo with default value bar
    #
    #   parse [:foo, :baz] => "bar"
    #   #=> Option foo with default value bar and alias :baz
    #
    #   parse :foo => :required
    #   #=> Required option foo without default value
    #
    #   parse :foo => 2
    #   #=> Option foo with default value 2 and type numeric
    #
    #   parse :foo => :numeric
    #   #=> Option foo without default value and type numeric
    #
    #   parse :foo => true
    #   #=> Option foo with default value true and type boolean
    #
    # The valid types are :boolean, :numeric, :hash, :array and :string. If none
    # is given a default type is assumed. This default type accepts arguments as
    # string (--foo=value) or booleans (just --foo).
    #
    # By default all options are optional, unless :required is given.
    #
    def self.parse(key, value)
      if key.is_a?(Array)
        name, *aliases = key
      else
        name = key
        aliases = []
      end

      name    = name.to_s
      default = value

      type = case value
      when Symbol
        default = nil
        if VALID_TYPES.include?(value)
          value
        elsif required = (value == :required) # rubocop:disable AssignmentInCondition
          :string
        end
      when TrueClass, FalseClass
        :boolean
      when Numeric
        :numeric
      when Hash, Array, String
        value.class.name.downcase.to_sym
      end

      new(name.to_s, :required => required, :type => type, :default => default, :aliases => aliases)
    end

    def switch_name
      @switch_name ||= dasherized? ? name : dasherize(name)
    end

    def human_name
      @human_name ||= dasherized? ? undasherize(name) : name
    end

    def usage(padding = 0)
      sample = if banner && !banner.to_s.empty?
        "#{switch_name}=#{banner}".dup
      else
        switch_name
      end

      sample = "[#{sample}]".dup unless required?

      if boolean?
        sample << ", [#{dasherize('no-' + human_name)}]" unless (name == "force") || name.start_with?("no-")
      end

      if aliases.empty?
        (" " * padding) << sample
      else
        "#{aliases.join(', ')}, #{sample}"
      end
    end

    VALID_TYPES.each do |type|
      class_eval <<-RUBY, __FILE__, __LINE__ + 1
        def #{type}?
          self.type == #{type.inspect}
        end
      RUBY
    end

  protected

    def validate!
      raise ArgumentError, "An option cannot be boolean and required." if boolean? && required?
      validate_default_type!
    end

    def validate_default_type!
      default_type = case @default
      when nil
        return
      when TrueClass, FalseClass
        required? ? :string : :boolean
      when Numeric
        :numeric
      when Symbol
        :string
      when Hash, Array, String
        @default.class.name.downcase.to_sym
      end

      expected_type = (@repeatable && @type != :hash) ? :array : @type

      if default_type != expected_type
        err = "Expected #{expected_type} default value for '#{switch_name}'; got #{@default.inspect} (#{default_type})"

        if @check_default_type
          raise ArgumentError, err
        elsif @check_default_type == nil
          Bundler::Thor.deprecation_warning "#{err}.\n" +
            'This will be rejected in the future unless you explicitly pass the options `check_default_type: false`' +
            ' or call `allow_incompatible_default_type!` in your code'
        end
      end
    end

    def dasherized?
      name.index("-") == 0
    end

    def undasherize(str)
      str.sub(/^-{1,2}/, "")
    end

    def dasherize(str)
      (str.length > 1 ? "--" : "-") + str.tr("_", "-")
    end
  end
end
PK@H[�$IJ;;Qshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/options.rbnu�[���class Bundler::Thor
  class Options < Arguments #:nodoc: # rubocop:disable ClassLength
    LONG_RE     = /^(--\w+(?:-\w+)*)$/
    SHORT_RE    = /^(-[a-z])$/i
    EQ_RE       = /^(--\w+(?:-\w+)*|-[a-z])=(.*)$/i
    SHORT_SQ_RE = /^-([a-z]{2,})$/i # Allow either -x -v or -xv style for single char args
    SHORT_NUM   = /^(-[a-z])#{NUMERIC}$/i
    OPTS_END    = "--".freeze

    # Receives a hash and makes it switches.
    def self.to_switches(options)
      options.map do |key, value|
        case value
        when true
          "--#{key}"
        when Array
          "--#{key} #{value.map(&:inspect).join(' ')}"
        when Hash
          "--#{key} #{value.map { |k, v| "#{k}:#{v}" }.join(' ')}"
        when nil, false
          nil
        else
          "--#{key} #{value.inspect}"
        end
      end.compact.join(" ")
    end

    # Takes a hash of Bundler::Thor::Option and a hash with defaults.
    #
    # If +stop_on_unknown+ is true, #parse will stop as soon as it encounters
    # an unknown option or a regular argument.
    def initialize(hash_options = {}, defaults = {}, stop_on_unknown = false, disable_required_check = false)
      @stop_on_unknown = stop_on_unknown
      @disable_required_check = disable_required_check
      options = hash_options.values
      super(options)

      # Add defaults
      defaults.each do |key, value|
        @assigns[key.to_s] = value
        @non_assigned_required.delete(hash_options[key])
      end

      @shorts = {}
      @switches = {}
      @extra = []
      @stopped_parsing_after_extra_index = nil

      options.each do |option|
        @switches[option.switch_name] = option

        option.aliases.each do |short|
          name = short.to_s.sub(/^(?!\-)/, "-")
          @shorts[name] ||= option.switch_name
        end
      end
    end

    def remaining
      @extra
    end

    def peek
      return super unless @parsing_options

      result = super
      if result == OPTS_END
        shift
        @parsing_options = false
        @stopped_parsing_after_extra_index ||= @extra.size
        super
      else
        result
      end
    end

    def parse(args) # rubocop:disable MethodLength
      @pile = args.dup
      @parsing_options = true

      while peek
        if parsing_options?
          match, is_switch = current_is_switch?
          shifted = shift

          if is_switch
            case shifted
            when SHORT_SQ_RE
              unshift($1.split("").map { |f| "-#{f}" })
              next
            when EQ_RE, SHORT_NUM
              unshift($2)
              switch = $1
            when LONG_RE, SHORT_RE
              switch = $1
            end

            switch = normalize_switch(switch)
            option = switch_option(switch)
            result = parse_peek(switch, option)
            assign_result!(option, result)
          elsif @stop_on_unknown
            @parsing_options = false
            @extra << shifted
            @stopped_parsing_after_extra_index ||= @extra.size
            @extra << shift while peek
            break
          elsif match
            @extra << shifted
            @extra << shift while peek && peek !~ /^-/
          else
            @extra << shifted
          end
        else
          @extra << shift
        end
      end

      check_requirement! unless @disable_required_check

      assigns = Bundler::Thor::CoreExt::HashWithIndifferentAccess.new(@assigns)
      assigns.freeze
      assigns
    end

    def check_unknown!
      to_check = @stopped_parsing_after_extra_index ? @extra[0...@stopped_parsing_after_extra_index] : @extra

      # an unknown option starts with - or -- and has no more --'s afterward.
      unknown = to_check.select { |str| str =~ /^--?(?:(?!--).)*$/ }
      raise UnknownArgumentError.new(@switches.keys, unknown) unless unknown.empty?
    end

  protected

    def assign_result!(option, result)
      if option.repeatable && option.type == :hash
        (@assigns[option.human_name] ||= {}).merge!(result)
      elsif option.repeatable
        (@assigns[option.human_name] ||= []) << result
      else
        @assigns[option.human_name] = result
      end
    end

    # Check if the current value in peek is a registered switch.
    #
    # Two booleans are returned.  The first is true if the current value
    # starts with a hyphen; the second is true if it is a registered switch.
    def current_is_switch?
      case peek
      when LONG_RE, SHORT_RE, EQ_RE, SHORT_NUM
        [true, switch?($1)]
      when SHORT_SQ_RE
        [true, $1.split("").any? { |f| switch?("-#{f}") }]
      else
        [false, false]
      end
    end

    def current_is_switch_formatted?
      case peek
      when LONG_RE, SHORT_RE, EQ_RE, SHORT_NUM, SHORT_SQ_RE
        true
      else
        false
      end
    end

    def current_is_value?
      peek && (!parsing_options? || super)
    end

    def switch?(arg)
      !switch_option(normalize_switch(arg)).nil?
    end

    def switch_option(arg)
      if match = no_or_skip?(arg) # rubocop:disable AssignmentInCondition
        @switches[arg] || @switches["--#{match}"]
      else
        @switches[arg]
      end
    end

    # Check if the given argument is actually a shortcut.
    #
    def normalize_switch(arg)
      (@shorts[arg] || arg).tr("_", "-")
    end

    def parsing_options?
      peek
      @parsing_options
    end

    # Parse boolean values which can be given as --foo=true, --foo or --no-foo.
    #
    def parse_boolean(switch)
      if current_is_value?
        if ["true", "TRUE", "t", "T", true].include?(peek)
          shift
          true
        elsif ["false", "FALSE", "f", "F", false].include?(peek)
          shift
          false
        else
          @switches.key?(switch) || !no_or_skip?(switch)
        end
      else
        @switches.key?(switch) || !no_or_skip?(switch)
      end
    end

    # Parse the value at the peek analyzing if it requires an input or not.
    #
    def parse_peek(switch, option)
      if parsing_options? && (current_is_switch_formatted? || last?)
        if option.boolean?
          # No problem for boolean types
        elsif no_or_skip?(switch)
          return nil # User set value to nil
        elsif option.string? && !option.required?
          # Return the default if there is one, else the human name
          return option.lazy_default || option.default || option.human_name
        elsif option.lazy_default
          return option.lazy_default
        else
          raise MalformattedArgumentError, "No value provided for option '#{switch}'"
        end
      end

      @non_assigned_required.delete(option)
      send(:"parse_#{option.type}", switch)
    end
  end
end
PK@H[i�Rshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/argument.rbnu�[���class Bundler::Thor
  class Argument #:nodoc:
    VALID_TYPES = [:numeric, :hash, :array, :string]

    attr_reader :name, :description, :enum, :required, :type, :default, :banner
    alias_method :human_name, :name

    def initialize(name, options = {})
      class_name = self.class.name.split("::").last

      type = options[:type]

      raise ArgumentError, "#{class_name} name can't be nil."                         if name.nil?
      raise ArgumentError, "Type :#{type} is not valid for #{class_name.downcase}s."  if type && !valid_type?(type)

      @name        = name.to_s
      @description = options[:desc]
      @required    = options.key?(:required) ? options[:required] : true
      @type        = (type || :string).to_sym
      @default     = options[:default]
      @banner      = options[:banner] || default_banner
      @enum        = options[:enum]

      validate! # Trigger specific validations
    end

    def usage
      required? ? banner : "[#{banner}]"
    end

    def required?
      required
    end

    def show_default?
      case default
      when Array, String, Hash
        !default.empty?
      else
        default
      end
    end

  protected

    def validate!
      raise ArgumentError, "An argument cannot be required and have default value." if required? && !default.nil?
      raise ArgumentError, "An argument cannot have an enum other than an array." if @enum && !@enum.is_a?(Array)
    end

    def valid_type?(type)
      self.class::VALID_TYPES.include?(type.to_sym)
    end

    def default_banner
      case type
      when :boolean
        nil
      when :string, :default
        human_name.upcase
      when :numeric
        "N"
      when :hash
        "key:value"
      when :array
        "one two three"
      end
    end
  end
end
PK@H[I���q3q3\share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rbnu�[���require "erb"

class Bundler::Thor
  module Actions
    # Copies the file from the relative source to the relative destination. If
    # the destination is not given it's assumed to be equal to the source.
    #
    # ==== Parameters
    # source<String>:: the relative path to the source root.
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status, and
    #                :mode => :preserve, to preserve the file mode from the source.

    #
    # ==== Examples
    #
    #   copy_file "README", "doc/README"
    #
    #   copy_file "doc/README"
    #
    def copy_file(source, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      destination = args.first || source
      source = File.expand_path(find_in_source_paths(source.to_s))

      resulting_destination = create_file destination, nil, config do
        content = File.binread(source)
        content = yield(content) if block
        content
      end
      if config[:mode] == :preserve
        mode = File.stat(source).mode
        chmod(resulting_destination, mode, config)
      end
    end

    # Links the file from the relative source to the relative destination. If
    # the destination is not given it's assumed to be equal to the source.
    #
    # ==== Parameters
    # source<String>:: the relative path to the source root.
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   link_file "README", "doc/README"
    #
    #   link_file "doc/README"
    #
    def link_file(source, *args)
      config = args.last.is_a?(Hash) ? args.pop : {}
      destination = args.first || source
      source = File.expand_path(find_in_source_paths(source.to_s))

      create_link destination, source, config
    end

    # Gets the content at the given address and places it at the given relative
    # destination. If a block is given instead of destination, the content of
    # the url is yielded and used as location.
    #
    # +get+ relies on open-uri, so passing application user input would provide
    # a command injection attack vector.
    #
    # ==== Parameters
    # source<String>:: the address of the given content.
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   get "http://gist.github.com/103208", "doc/README"
    #
    #   get "http://gist.github.com/103208" do |content|
    #     content.split("\n").first
    #   end
    #
    def get(source, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      destination = args.first

      render = if source =~ %r{^https?\://}
        require "open-uri"
        URI.send(:open, source) { |input| input.binmode.read }
      else
        source = File.expand_path(find_in_source_paths(source.to_s))
        open(source) { |input| input.binmode.read }
      end

      destination ||= if block_given?
        block.arity == 1 ? yield(render) : yield
      else
        File.basename(source)
      end

      create_file destination, render, config
    end

    # Gets an ERB template at the relative source, executes it and makes a copy
    # at the relative destination. If the destination is not given it's assumed
    # to be equal to the source removing .tt from the filename.
    #
    # ==== Parameters
    # source<String>:: the relative path to the source root.
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   template "README", "doc/README"
    #
    #   template "doc/README"
    #
    def template(source, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      destination = args.first || source.sub(/#{TEMPLATE_EXTNAME}$/, "")

      source  = File.expand_path(find_in_source_paths(source.to_s))
      context = config.delete(:context) || instance_eval("binding")

      create_file destination, nil, config do
        match = ERB.version.match(/(\d+\.\d+\.\d+)/)
        capturable_erb = if match && match[1] >= "2.2.0" # Ruby 2.6+
          CapturableERB.new(::File.binread(source), :trim_mode => "-", :eoutvar => "@output_buffer")
        else
          CapturableERB.new(::File.binread(source), nil, "-", "@output_buffer")
        end
        content = capturable_erb.tap do |erb|
          erb.filename = source
        end.result(context)
        content = yield(content) if block
        content
      end
    end

    # Changes the mode of the given file or directory.
    #
    # ==== Parameters
    # mode<Integer>:: the file mode
    # path<String>:: the name of the file to change mode
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   chmod "script/server", 0755
    #
    def chmod(path, mode, config = {})
      return unless behavior == :invoke
      path = File.expand_path(path, destination_root)
      say_status :chmod, relative_to_original_destination_root(path), config.fetch(:verbose, true)
      unless options[:pretend]
        require "fileutils"
        FileUtils.chmod_R(mode, path)
      end
    end

    # Prepend text to a file. Since it depends on insert_into_file, it's reversible.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # data<String>:: the data to prepend to the file, can be also given as a block.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   prepend_to_file 'config/environments/test.rb', 'config.gem "rspec"'
    #
    #   prepend_to_file 'config/environments/test.rb' do
    #     'config.gem "rspec"'
    #   end
    #
    def prepend_to_file(path, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      config[:after] = /\A/
      insert_into_file(path, *(args << config), &block)
    end
    alias_method :prepend_file, :prepend_to_file

    # Append text to a file. Since it depends on insert_into_file, it's reversible.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # data<String>:: the data to append to the file, can be also given as a block.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   append_to_file 'config/environments/test.rb', 'config.gem "rspec"'
    #
    #   append_to_file 'config/environments/test.rb' do
    #     'config.gem "rspec"'
    #   end
    #
    def append_to_file(path, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      config[:before] = /\z/
      insert_into_file(path, *(args << config), &block)
    end
    alias_method :append_file, :append_to_file

    # Injects text right after the class definition. Since it depends on
    # insert_into_file, it's reversible.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # klass<String|Class>:: the class to be manipulated
    # data<String>:: the data to append to the class, can be also given as a block.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   inject_into_class "app/controllers/application_controller.rb", ApplicationController, "  filter_parameter :password\n"
    #
    #   inject_into_class "app/controllers/application_controller.rb", ApplicationController do
    #     "  filter_parameter :password\n"
    #   end
    #
    def inject_into_class(path, klass, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      config[:after] = /class #{klass}\n|class #{klass} .*\n/
      insert_into_file(path, *(args << config), &block)
    end

    # Injects text right after the module definition. Since it depends on
    # insert_into_file, it's reversible.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # module_name<String|Class>:: the module to be manipulated
    # data<String>:: the data to append to the class, can be also given as a block.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   inject_into_module "app/helpers/application_helper.rb", ApplicationHelper, "  def help; 'help'; end\n"
    #
    #   inject_into_module "app/helpers/application_helper.rb", ApplicationHelper do
    #     "  def help; 'help'; end\n"
    #   end
    #
    def inject_into_module(path, module_name, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      config[:after] = /module #{module_name}\n|module #{module_name} .*\n/
      insert_into_file(path, *(args << config), &block)
    end

    # Run a regular expression replacement on a file.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # flag<Regexp|String>:: the regexp or string to be replaced
    # replacement<String>:: the replacement, can be also given as a block
    # config<Hash>:: give :verbose => false to not log the status, and
    #                :force => true, to force the replacement regardless of runner behavior.
    #
    # ==== Example
    #
    #   gsub_file 'app/controllers/application_controller.rb', /#\s*(filter_parameter_logging :password)/, '\1'
    #
    #   gsub_file 'README', /rake/, :green do |match|
    #     match << " no more. Use thor!"
    #   end
    #
    def gsub_file(path, flag, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}

      return unless behavior == :invoke || config.fetch(:force, false)

      path = File.expand_path(path, destination_root)
      say_status :gsub, relative_to_original_destination_root(path), config.fetch(:verbose, true)

      unless options[:pretend]
        content = File.binread(path)
        content.gsub!(flag, *args, &block)
        File.open(path, "wb") { |file| file.write(content) }
      end
    end

    # Uncomment all lines matching a given regex.  It will leave the space
    # which existed before the comment hash in tact but will remove any spacing
    # between the comment hash and the beginning of the line.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # flag<Regexp|String>:: the regexp or string used to decide which lines to uncomment
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   uncomment_lines 'config/initializers/session_store.rb', /active_record/
    #
    def uncomment_lines(path, flag, *args)
      flag = flag.respond_to?(:source) ? flag.source : flag

      gsub_file(path, /^(\s*)#[[:blank:]]*(.*#{flag})/, '\1\2', *args)
    end

    # Comment all lines matching a given regex.  It will leave the space
    # which existed before the beginning of the line in tact and will insert
    # a single space after the comment hash.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # flag<Regexp|String>:: the regexp or string used to decide which lines to comment
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   comment_lines 'config/initializers/session_store.rb', /cookie_store/
    #
    def comment_lines(path, flag, *args)
      flag = flag.respond_to?(:source) ? flag.source : flag

      gsub_file(path, /^(\s*)([^#\n]*#{flag})/, '\1# \2', *args)
    end

    # Removes a file at the given location.
    #
    # ==== Parameters
    # path<String>:: path of the file to be changed
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Example
    #
    #   remove_file 'README'
    #   remove_file 'app/controllers/application_controller.rb'
    #
    def remove_file(path, config = {})
      return unless behavior == :invoke
      path = File.expand_path(path, destination_root)

      say_status :remove, relative_to_original_destination_root(path), config.fetch(:verbose, true)
      if !options[:pretend] && File.exist?(path)
        require "fileutils"
        ::FileUtils.rm_rf(path)
      end
    end
    alias_method :remove_dir, :remove_file

    attr_accessor :output_buffer
    private :output_buffer, :output_buffer=

  private

    def concat(string)
      @output_buffer.concat(string)
    end

    def capture(*args)
      with_output_buffer { yield(*args) }
    end

    def with_output_buffer(buf = "".dup) #:nodoc:
      raise ArgumentError, "Buffer can not be a frozen object" if buf.frozen?
      old_buffer = output_buffer
      self.output_buffer = buf
      yield
      output_buffer
    ensure
      self.output_buffer = old_buffer
    end

    # Bundler::Thor::Actions#capture depends on what kind of buffer is used in ERB.
    # Thus CapturableERB fixes ERB to use String buffer.
    class CapturableERB < ERB
      def set_eoutvar(compiler, eoutvar = "_erbout")
        compiler.put_cmd = "#{eoutvar}.concat"
        compiler.insert_cmd = "#{eoutvar}.concat"
        compiler.pre_cmd = ["#{eoutvar} = ''.dup"]
        compiler.post_cmd = [eoutvar]
      end
    end
  end
end
PK@H[,;��		Tshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/directory.rbnu�[���require_relative "empty_directory"

class Bundler::Thor
  module Actions
    # Copies recursively the files from source directory to root directory.
    # If any of the files finishes with .tt, it's considered to be a template
    # and is placed in the destination without the extension .tt. If any
    # empty directory is found, it's copied and all .empty_directory files are
    # ignored. If any file name is wrapped within % signs, the text within
    # the % signs will be executed as a method and replaced with the returned
    # value. Let's suppose a doc directory with the following files:
    #
    #   doc/
    #     components/.empty_directory
    #     README
    #     rdoc.rb.tt
    #     %app_name%.rb
    #
    # When invoked as:
    #
    #   directory "doc"
    #
    # It will create a doc directory in the destination with the following
    # files (assuming that the `app_name` method returns the value "blog"):
    #
    #   doc/
    #     components/
    #     README
    #     rdoc.rb
    #     blog.rb
    #
    # <b>Encoded path note:</b> Since Bundler::Thor internals use Object#respond_to? to check if it can
    # expand %something%, this `something` should be a public method in the class calling
    # #directory. If a method is private, Bundler::Thor stack raises PrivateMethodEncodedError.
    #
    # ==== Parameters
    # source<String>:: the relative path to the source root.
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status.
    #                If :recursive => false, does not look for paths recursively.
    #                If :mode => :preserve, preserve the file mode from the source.
    #                If :exclude_pattern => /regexp/, prevents copying files that match that regexp.
    #
    # ==== Examples
    #
    #   directory "doc"
    #   directory "doc", "docs", :recursive => false
    #
    def directory(source, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      destination = args.first || source
      action Directory.new(self, source, destination || source, config, &block)
    end

    class Directory < EmptyDirectory #:nodoc:
      attr_reader :source

      def initialize(base, source, destination = nil, config = {}, &block)
        @source = File.expand_path(Dir[Util.escape_globs(base.find_in_source_paths(source.to_s))].first)
        @block  = block
        super(base, destination, {:recursive => true}.merge(config))
      end

      def invoke!
        base.empty_directory given_destination, config
        execute!
      end

      def revoke!
        execute!
      end

    protected

      def execute!
        lookup = Util.escape_globs(source)
        lookup = config[:recursive] ? File.join(lookup, "**") : lookup
        lookup = file_level_lookup(lookup)

        files(lookup).sort.each do |file_source|
          next if File.directory?(file_source)
          next if config[:exclude_pattern] && file_source.match(config[:exclude_pattern])
          file_destination = File.join(given_destination, file_source.gsub(source, "."))
          file_destination.gsub!("/./", "/")

          case file_source
          when /\.empty_directory$/
            dirname = File.dirname(file_destination).gsub(%r{/\.$}, "")
            next if dirname == given_destination
            base.empty_directory(dirname, config)
          when /#{TEMPLATE_EXTNAME}$/
            base.template(file_source, file_destination[0..-4], config, &@block)
          else
            base.copy_file(file_source, file_destination, config, &@block)
          end
        end
      end

      def file_level_lookup(previous_lookup)
        File.join(previous_lookup, "*")
      end

      def files(lookup)
        Dir.glob(lookup, File::FNM_DOTMATCH)
      end
    end
  end
end
PK@H[O�&��Zshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rbnu�[���class Bundler::Thor
  module Actions
    # Creates an empty directory.
    #
    # ==== Parameters
    # destination<String>:: the relative path to the destination root.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   empty_directory "doc"
    #
    def empty_directory(destination, config = {})
      action EmptyDirectory.new(self, destination, config)
    end

    # Class which holds create directory logic. This is the base class for
    # other actions like create_file and directory.
    #
    # This implementation is based in Templater actions, created by Jonas Nicklas
    # and Michael S. Klishin under MIT LICENSE.
    #
    class EmptyDirectory #:nodoc:
      attr_reader :base, :destination, :given_destination, :relative_destination, :config

      # Initializes given the source and destination.
      #
      # ==== Parameters
      # base<Bundler::Thor::Base>:: A Bundler::Thor::Base instance
      # source<String>:: Relative path to the source of this file
      # destination<String>:: Relative path to the destination of this file
      # config<Hash>:: give :verbose => false to not log the status.
      #
      def initialize(base, destination, config = {})
        @base = base
        @config = {:verbose => true}.merge(config)
        self.destination = destination
      end

      # Checks if the destination file already exists.
      #
      # ==== Returns
      # Boolean:: true if the file exists, false otherwise.
      #
      def exists?
        ::File.exist?(destination)
      end

      def invoke!
        invoke_with_conflict_check do
          require "fileutils"
          ::FileUtils.mkdir_p(destination)
        end
      end

      def revoke!
        say_status :remove, :red
        require "fileutils"
        ::FileUtils.rm_rf(destination) if !pretend? && exists?
        given_destination
      end

    protected

      # Shortcut for pretend.
      #
      def pretend?
        base.options[:pretend]
      end

      # Sets the absolute destination value from a relative destination value.
      # It also stores the given and relative destination. Let's suppose our
      # script is being executed on "dest", it sets the destination root to
      # "dest". The destination, given_destination and relative_destination
      # are related in the following way:
      #
      #   inside "bar" do
      #     empty_directory "baz"
      #   end
      #
      #   destination          #=> dest/bar/baz
      #   relative_destination #=> bar/baz
      #   given_destination    #=> baz
      #
      def destination=(destination)
        return unless destination
        @given_destination = convert_encoded_instructions(destination.to_s)
        @destination = ::File.expand_path(@given_destination, base.destination_root)
        @relative_destination = base.relative_to_original_destination_root(@destination)
      end

      # Filenames in the encoded form are converted. If you have a file:
      #
      #   %file_name%.rb
      #
      # It calls #file_name from the base and replaces %-string with the
      # return value (should be String) of #file_name:
      #
      #   user.rb
      #
      # The method referenced can be either public or private.
      #
      def convert_encoded_instructions(filename)
        filename.gsub(/%(.*?)%/) do |initial_string|
          method = $1.strip
          base.respond_to?(method, true) ? base.send(method) : initial_string
        end
      end

      # Receives a hash of options and just execute the block if some
      # conditions are met.
      #
      def invoke_with_conflict_check(&block)
        if exists?
          on_conflict_behavior(&block)
        else
          yield unless pretend?
          say_status :create, :green
        end

        destination
      rescue Errno::EISDIR, Errno::EEXIST
        on_file_clash_behavior
      end

      def on_file_clash_behavior
        say_status :file_clash, :red
      end

      # What to do when the destination file already exists.
      #
      def on_conflict_behavior
        say_status :exist, :blue
      end

      # Shortcut to say_status shell method.
      #
      def say_status(status, color)
        base.shell.say_status status, relative_destination, color if config[:verbose]
      end
    end
  end
end
PK@H[s	��mmVshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/create_link.rbnu�[���require_relative "create_file"

class Bundler::Thor
  module Actions
    # Create a new file relative to the destination root from the given source.
    #
    # ==== Parameters
    # destination<String>:: the relative path to the destination root.
    # source<String|NilClass>:: the relative path to the source root.
    # config<Hash>:: give :verbose => false to not log the status.
    #   :: give :symbolic => false for hard link.
    #
    # ==== Examples
    #
    #   create_link "config/apache.conf", "/etc/apache.conf"
    #
    def create_link(destination, *args)
      config = args.last.is_a?(Hash) ? args.pop : {}
      source = args.first
      action CreateLink.new(self, destination, source, config)
    end
    alias_method :add_link, :create_link

    # CreateLink is a subset of CreateFile, which instead of taking a block of
    # data, just takes a source string from the user.
    #
    class CreateLink < CreateFile #:nodoc:
      attr_reader :data

      # Checks if the content of the file at the destination is identical to the rendered result.
      #
      # ==== Returns
      # Boolean:: true if it is identical, false otherwise.
      #
      def identical?
        source = File.expand_path(render, File.dirname(destination))
        exists? && File.identical?(source, destination)
      end

      def invoke!
        invoke_with_conflict_check do
          require "fileutils"
          FileUtils.mkdir_p(File.dirname(destination))
          # Create a symlink by default
          config[:symbolic] = true if config[:symbolic].nil?
          File.unlink(destination) if exists?
          if config[:symbolic]
            File.symlink(render, destination)
          else
            File.link(render, destination)
          end
        end
        given_destination
      end

      def exists?
        super || File.symlink?(destination)
      end
    end
  end
end
PK@H[te�))Vshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/create_file.rbnu�[���require_relative "empty_directory"

class Bundler::Thor
  module Actions
    # Create a new file relative to the destination root with the given data,
    # which is the return value of a block or a data string.
    #
    # ==== Parameters
    # destination<String>:: the relative path to the destination root.
    # data<String|NilClass>:: the data to append to the file.
    # config<Hash>:: give :verbose => false to not log the status.
    #
    # ==== Examples
    #
    #   create_file "lib/fun_party.rb" do
    #     hostname = ask("What is the virtual hostname I should use?")
    #     "vhost.name = #{hostname}"
    #   end
    #
    #   create_file "config/apache.conf", "your apache config"
    #
    def create_file(destination, *args, &block)
      config = args.last.is_a?(Hash) ? args.pop : {}
      data = args.first
      action CreateFile.new(self, destination, block || data.to_s, config)
    end
    alias_method :add_file, :create_file

    # CreateFile is a subset of Template, which instead of rendering a file with
    # ERB, it gets the content from the user.
    #
    class CreateFile < EmptyDirectory #:nodoc:
      attr_reader :data

      def initialize(base, destination, data, config = {})
        @data = data
        super(base, destination, config)
      end

      # Checks if the content of the file at the destination is identical to the rendered result.
      #
      # ==== Returns
      # Boolean:: true if it is identical, false otherwise.
      #
      def identical?
        exists? && File.binread(destination) == render
      end

      # Holds the content to be added to the file.
      #
      def render
        @render ||= if data.is_a?(Proc)
          data.call
        else
          data
        end
      end

      def invoke!
        invoke_with_conflict_check do
          require "fileutils"
          FileUtils.mkdir_p(File.dirname(destination))
          File.open(destination, "wb") { |f| f.write render }
        end
        given_destination
      end

    protected

      # Now on conflict we check if the file is identical or not.
      #
      def on_conflict_behavior(&block)
        if identical?
          say_status :identical, :blue
        else
          options = base.options.merge(config)
          force_or_skip_or_conflict(options[:force], options[:skip], &block)
        end
      end

      # If force is true, run the action, otherwise check if it's not being
      # skipped. If both are false, show the file_collision menu, if the menu
      # returns true, force it, otherwise skip.
      #
      def force_or_skip_or_conflict(force, skip, &block)
        if force
          say_status :force, :yellow
          yield unless pretend?
        elsif skip
          say_status :skip, :yellow
        else
          say_status :conflict, :red
          force_or_skip_or_conflict(force_on_collision?, true, &block)
        end
      end

      # Shows the file collision menu to the user and gets the result.
      #
      def force_on_collision?
        base.shell.file_collision(destination) { render }
      end
    end
  end
end
PK@H[V�]�[share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rbnu�[���require_relative "empty_directory"

class Bundler::Thor
  module Actions
    # Injects the given content into a file. Different from gsub_file, this
    # method is reversible.
    #
    # ==== Parameters
    # destination<String>:: Relative path to the destination root
    # data<String>:: Data to add to the file. Can be given as a block.
    # config<Hash>:: give :verbose => false to not log the status and the flag
    #                for injection (:after or :before) or :force => true for
    #                insert two or more times the same content.
    #
    # ==== Examples
    #
    #   insert_into_file "config/environment.rb", "config.gem :thor", :after => "Rails::Initializer.run do |config|\n"
    #
    #   insert_into_file "config/environment.rb", :after => "Rails::Initializer.run do |config|\n" do
    #     gems = ask "Which gems would you like to add?"
    #     gems.split(" ").map{ |gem| "  config.gem :#{gem}" }.join("\n")
    #   end
    #
    WARNINGS = { unchanged_no_flag: 'File unchanged! The supplied flag value not found!' }

    def insert_into_file(destination, *args, &block)
      data = block_given? ? block : args.shift

      config = args.shift || {}
      config[:after] = /\z/ unless config.key?(:before) || config.key?(:after)

      action InjectIntoFile.new(self, destination, data, config)
    end
    alias_method :inject_into_file, :insert_into_file

    class InjectIntoFile < EmptyDirectory #:nodoc:
      attr_reader :replacement, :flag, :behavior

      def initialize(base, destination, data, config)
        super(base, destination, {:verbose => true}.merge(config))

        @behavior, @flag = if @config.key?(:after)
          [:after, @config.delete(:after)]
        else
          [:before, @config.delete(:before)]
        end

        @replacement = data.is_a?(Proc) ? data.call : data
        @flag = Regexp.escape(@flag) unless @flag.is_a?(Regexp)
      end

      def invoke!
        content = if @behavior == :after
          '\0' + replacement
        else
          replacement + '\0'
        end

        if exists?
          if replace!(/#{flag}/, content, config[:force])
            say_status(:invoke)
          else
            say_status(:unchanged, warning: WARNINGS[:unchanged_no_flag], color: :red)
          end
        else
          unless pretend?
            raise Bundler::Thor::Error, "The file #{ destination } does not appear to exist"
          end
        end
      end

      def revoke!
        say_status :revoke

        regexp = if @behavior == :after
          content = '\1\2'
          /(#{flag})(.*)(#{Regexp.escape(replacement)})/m
        else
          content = '\2\3'
          /(#{Regexp.escape(replacement)})(.*)(#{flag})/m
        end

        replace!(regexp, content, true)
      end

    protected

      def say_status(behavior, warning: nil, color: nil)
        status = if behavior == :invoke
          if flag == /\A/
            :prepend
          elsif flag == /\z/
            :append
          else
            :insert
          end
        elsif warning
          warning
        else
          :subtract
        end

        super(status, (color || config[:verbose]))
      end

      # Adds the content to the file.
      #
      def replace!(regexp, string, force)
        return if pretend?
        content = File.read(destination)
        if force || !content.include?(replacement)
          success = content.gsub!(regexp, string)

          File.open(destination, "wb") { |file| file.write(content) }
          success
        end
      end
    end
  end
end
PK@H[����`�`Gshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/base.rbnu�[���require_relative "command"
require_relative "core_ext/hash_with_indifferent_access"
require_relative "error"
require_relative "invocation"
require_relative "nested_context"
require_relative "parser"
require_relative "shell"
require_relative "line_editor"
require_relative "util"

class Bundler::Thor
  autoload :Actions,    File.expand_path("actions", __dir__)
  autoload :RakeCompat, File.expand_path("rake_compat", __dir__)
  autoload :Group,      File.expand_path("group", __dir__)

  # Shortcuts for help.
  HELP_MAPPINGS       = %w(-h -? --help -D)

  # Bundler::Thor methods that should not be overwritten by the user.
  THOR_RESERVED_WORDS = %w(invoke shell options behavior root destination_root relative_root
                           action add_file create_file in_root inside run run_ruby_script)

  TEMPLATE_EXTNAME = ".tt"

  class << self
    def deprecation_warning(message) #:nodoc:
      unless ENV['THOR_SILENCE_DEPRECATION']
        warn "Deprecation warning: #{message}\n" +
          'You can silence deprecations warning by setting the environment variable THOR_SILENCE_DEPRECATION.'
      end
    end
  end

  module Base
    attr_accessor :options, :parent_options, :args

    # It receives arguments in an Array and two hashes, one for options and
    # other for configuration.
    #
    # Notice that it does not check if all required arguments were supplied.
    # It should be done by the parser.
    #
    # ==== Parameters
    # args<Array[Object]>:: An array of objects. The objects are applied to their
    #                       respective accessors declared with <tt>argument</tt>.
    #
    # options<Hash>:: An options hash that will be available as self.options.
    #                 The hash given is converted to a hash with indifferent
    #                 access, magic predicates (options.skip?) and then frozen.
    #
    # config<Hash>:: Configuration for this Bundler::Thor class.
    #
    def initialize(args = [], local_options = {}, config = {})
      parse_options = self.class.class_options

      # The start method splits inbound arguments at the first argument
      # that looks like an option (starts with - or --). It then calls
      # new, passing in the two halves of the arguments Array as the
      # first two parameters.

      command_options = config.delete(:command_options) # hook for start
      parse_options = parse_options.merge(command_options) if command_options
      if local_options.is_a?(Array)
        array_options = local_options
        hash_options = {}
      else
        # Handle the case where the class was explicitly instantiated
        # with pre-parsed options.
        array_options = []
        hash_options = local_options
      end

      # Let Bundler::Thor::Options parse the options first, so it can remove
      # declared options from the array. This will leave us with
      # a list of arguments that weren't declared.
      stop_on_unknown = self.class.stop_on_unknown_option? config[:current_command]
      disable_required_check = self.class.disable_required_check? config[:current_command]
      opts = Bundler::Thor::Options.new(parse_options, hash_options, stop_on_unknown, disable_required_check)
      self.options = opts.parse(array_options)
      self.options = config[:class_options].merge(options) if config[:class_options]

      # If unknown options are disallowed, make sure that none of the
      # remaining arguments looks like an option.
      opts.check_unknown! if self.class.check_unknown_options?(config)

      # Add the remaining arguments from the options parser to the
      # arguments passed in to initialize. Then remove any positional
      # arguments declared using #argument (this is primarily used
      # by Bundler::Thor::Group). Tis will leave us with the remaining
      # positional arguments.
      to_parse  = args
      to_parse += opts.remaining unless self.class.strict_args_position?(config)

      thor_args = Bundler::Thor::Arguments.new(self.class.arguments)
      thor_args.parse(to_parse).each { |k, v| __send__("#{k}=", v) }
      @args = thor_args.remaining
    end

    class << self
      def included(base) #:nodoc:
        super(base)
        base.extend ClassMethods
        base.send :include, Invocation
        base.send :include, Shell
      end

      # Returns the classes that inherits from Bundler::Thor or Bundler::Thor::Group.
      #
      # ==== Returns
      # Array[Class]
      #
      def subclasses
        @subclasses ||= []
      end

      # Returns the files where the subclasses are kept.
      #
      # ==== Returns
      # Hash[path<String> => Class]
      #
      def subclass_files
        @subclass_files ||= Hash.new { |h, k| h[k] = [] }
      end

      # Whenever a class inherits from Bundler::Thor or Bundler::Thor::Group, we should track the
      # class and the file on Bundler::Thor::Base. This is the method responsible for it.
      #
      def register_klass_file(klass) #:nodoc:
        file = caller[1].match(/(.*):\d+/)[1]
        Bundler::Thor::Base.subclasses << klass unless Bundler::Thor::Base.subclasses.include?(klass)

        file_subclasses = Bundler::Thor::Base.subclass_files[File.expand_path(file)]
        file_subclasses << klass unless file_subclasses.include?(klass)
      end
    end

    module ClassMethods
      def attr_reader(*) #:nodoc:
        no_commands { super }
      end

      def attr_writer(*) #:nodoc:
        no_commands { super }
      end

      def attr_accessor(*) #:nodoc:
        no_commands { super }
      end

      # If you want to raise an error for unknown options, call check_unknown_options!
      # This is disabled by default to allow dynamic invocations.
      def check_unknown_options!
        @check_unknown_options = true
      end

      def check_unknown_options #:nodoc:
        @check_unknown_options ||= from_superclass(:check_unknown_options, false)
      end

      def check_unknown_options?(config) #:nodoc:
        !!check_unknown_options
      end

      # If you want to raise an error when the default value of an option does not match
      # the type call check_default_type!
      # This will be the default; for compatibility a deprecation warning is issued if necessary.
      def check_default_type!
        @check_default_type = true
      end

      # If you want to use defaults that don't match the type of an option,
      # either specify `check_default_type: false` or call `allow_incompatible_default_type!`
      def allow_incompatible_default_type!
        @check_default_type = false
      end

      def check_default_type #:nodoc:
        @check_default_type = from_superclass(:check_default_type, nil) unless defined?(@check_default_type)
        @check_default_type
      end

      # If true, option parsing is suspended as soon as an unknown option or a
      # regular argument is encountered.  All remaining arguments are passed to
      # the command as regular arguments.
      def stop_on_unknown_option?(command_name) #:nodoc:
        false
      end

      # If true, option set will not suspend the execution of the command when
      # a required option is not provided.
      def disable_required_check?(command_name) #:nodoc:
        false
      end

      # If you want only strict string args (useful when cascading thor classes),
      # call strict_args_position! This is disabled by default to allow dynamic
      # invocations.
      def strict_args_position!
        @strict_args_position = true
      end

      def strict_args_position #:nodoc:
        @strict_args_position ||= from_superclass(:strict_args_position, false)
      end

      def strict_args_position?(config) #:nodoc:
        !!strict_args_position
      end

      # Adds an argument to the class and creates an attr_accessor for it.
      #
      # Arguments are different from options in several aspects. The first one
      # is how they are parsed from the command line, arguments are retrieved
      # from position:
      #
      #   thor command NAME
      #
      # Instead of:
      #
      #   thor command --name=NAME
      #
      # Besides, arguments are used inside your code as an accessor (self.argument),
      # while options are all kept in a hash (self.options).
      #
      # Finally, arguments cannot have type :default or :boolean but can be
      # optional (supplying :optional => :true or :required => false), although
      # you cannot have a required argument after a non-required argument. If you
      # try it, an error is raised.
      #
      # ==== Parameters
      # name<Symbol>:: The name of the argument.
      # options<Hash>:: Described below.
      #
      # ==== Options
      # :desc     - Description for the argument.
      # :required - If the argument is required or not.
      # :optional - If the argument is optional or not.
      # :type     - The type of the argument, can be :string, :hash, :array, :numeric.
      # :default  - Default value for this argument. It cannot be required and have default values.
      # :banner   - String to show on usage notes.
      #
      # ==== Errors
      # ArgumentError:: Raised if you supply a required argument after a non required one.
      #
      def argument(name, options = {})
        is_thor_reserved_word?(name, :argument)
        no_commands { attr_accessor name }

        required = if options.key?(:optional)
          !options[:optional]
        elsif options.key?(:required)
          options[:required]
        else
          options[:default].nil?
        end

        remove_argument name

        if required
          arguments.each do |argument|
            next if argument.required?
            raise ArgumentError, "You cannot have #{name.to_s.inspect} as required argument after " \
                                "the non-required argument #{argument.human_name.inspect}."
          end
        end

        options[:required] = required

        arguments << Bundler::Thor::Argument.new(name, options)
      end

      # Returns this class arguments, looking up in the ancestors chain.
      #
      # ==== Returns
      # Array[Bundler::Thor::Argument]
      #
      def arguments
        @arguments ||= from_superclass(:arguments, [])
      end

      # Adds a bunch of options to the set of class options.
      #
      #   class_options :foo => false, :bar => :required, :baz => :string
      #
      # If you prefer more detailed declaration, check class_option.
      #
      # ==== Parameters
      # Hash[Symbol => Object]
      #
      def class_options(options = nil)
        @class_options ||= from_superclass(:class_options, {})
        build_options(options, @class_options) if options
        @class_options
      end

      # Adds an option to the set of class options
      #
      # ==== Parameters
      # name<Symbol>:: The name of the argument.
      # options<Hash>:: Described below.
      #
      # ==== Options
      # :desc::     -- Description for the argument.
      # :required:: -- If the argument is required or not.
      # :default::  -- Default value for this argument.
      # :group::    -- The group for this options. Use by class options to output options in different levels.
      # :aliases::  -- Aliases for this option. <b>Note:</b> Bundler::Thor follows a convention of one-dash-one-letter options. Thus aliases like "-something" wouldn't be parsed; use either "\--something" or "-s" instead.
      # :type::     -- The type of the argument, can be :string, :hash, :array, :numeric or :boolean.
      # :banner::   -- String to show on usage notes.
      # :hide::     -- If you want to hide this option from the help.
      #
      def class_option(name, options = {})
        build_option(name, options, class_options)
      end

      # Removes a previous defined argument. If :undefine is given, undefine
      # accessors as well.
      #
      # ==== Parameters
      # names<Array>:: Arguments to be removed
      #
      # ==== Examples
      #
      #   remove_argument :foo
      #   remove_argument :foo, :bar, :baz, :undefine => true
      #
      def remove_argument(*names)
        options = names.last.is_a?(Hash) ? names.pop : {}

        names.each do |name|
          arguments.delete_if { |a| a.name == name.to_s }
          undef_method name, "#{name}=" if options[:undefine]
        end
      end

      # Removes a previous defined class option.
      #
      # ==== Parameters
      # names<Array>:: Class options to be removed
      #
      # ==== Examples
      #
      #   remove_class_option :foo
      #   remove_class_option :foo, :bar, :baz
      #
      def remove_class_option(*names)
        names.each do |name|
          class_options.delete(name)
        end
      end

      # Defines the group. This is used when thor list is invoked so you can specify
      # that only commands from a pre-defined group will be shown. Defaults to standard.
      #
      # ==== Parameters
      # name<String|Symbol>
      #
      def group(name = nil)
        if name
          @group = name.to_s
        else
          @group ||= from_superclass(:group, "standard")
        end
      end

      # Returns the commands for this Bundler::Thor class.
      #
      # ==== Returns
      # Hash:: An ordered hash with commands names as keys and Bundler::Thor::Command
      #        objects as values.
      #
      def commands
        @commands ||= Hash.new
      end
      alias_method :tasks, :commands

      # Returns the commands for this Bundler::Thor class and all subclasses.
      #
      # ==== Returns
      # Hash:: An ordered hash with commands names as keys and Bundler::Thor::Command
      #        objects as values.
      #
      def all_commands
        @all_commands ||= from_superclass(:all_commands, Hash.new)
        @all_commands.merge!(commands)
      end
      alias_method :all_tasks, :all_commands

      # Removes a given command from this Bundler::Thor class. This is usually done if you
      # are inheriting from another class and don't want it to be available
      # anymore.
      #
      # By default it only remove the mapping to the command. But you can supply
      # :undefine => true to undefine the method from the class as well.
      #
      # ==== Parameters
      # name<Symbol|String>:: The name of the command to be removed
      # options<Hash>:: You can give :undefine => true if you want commands the method
      #                 to be undefined from the class as well.
      #
      def remove_command(*names)
        options = names.last.is_a?(Hash) ? names.pop : {}

        names.each do |name|
          commands.delete(name.to_s)
          all_commands.delete(name.to_s)
          undef_method name if options[:undefine]
        end
      end
      alias_method :remove_task, :remove_command

      # All methods defined inside the given block are not added as commands.
      #
      # So you can do:
      #
      #   class MyScript < Bundler::Thor
      #     no_commands do
      #       def this_is_not_a_command
      #       end
      #     end
      #   end
      #
      # You can also add the method and remove it from the command list:
      #
      #   class MyScript < Bundler::Thor
      #     def this_is_not_a_command
      #     end
      #     remove_command :this_is_not_a_command
      #   end
      #
      def no_commands(&block)
        no_commands_context.enter(&block)
      end

      alias_method :no_tasks, :no_commands

      def no_commands_context
        @no_commands_context ||= NestedContext.new
      end

      def no_commands?
        no_commands_context.entered?
      end

      # Sets the namespace for the Bundler::Thor or Bundler::Thor::Group class. By default the
      # namespace is retrieved from the class name. If your Bundler::Thor class is named
      # Scripts::MyScript, the help method, for example, will be called as:
      #
      #   thor scripts:my_script -h
      #
      # If you change the namespace:
      #
      #   namespace :my_scripts
      #
      # You change how your commands are invoked:
      #
      #   thor my_scripts -h
      #
      # Finally, if you change your namespace to default:
      #
      #   namespace :default
      #
      # Your commands can be invoked with a shortcut. Instead of:
      #
      #   thor :my_command
      #
      def namespace(name = nil)
        if name
          @namespace = name.to_s
        else
          @namespace ||= Bundler::Thor::Util.namespace_from_thor_class(self)
        end
      end

      # Parses the command and options from the given args, instantiate the class
      # and invoke the command. This method is used when the arguments must be parsed
      # from an array. If you are inside Ruby and want to use a Bundler::Thor class, you
      # can simply initialize it:
      #
      #   script = MyScript.new(args, options, config)
      #   script.invoke(:command, first_arg, second_arg, third_arg)
      #
      def start(given_args = ARGV, config = {})
        config[:shell] ||= Bundler::Thor::Base.shell.new
        dispatch(nil, given_args.dup, nil, config)
      rescue Bundler::Thor::Error => e
        config[:debug] || ENV["THOR_DEBUG"] == "1" ? (raise e) : config[:shell].error(e.message)
        exit(false) if exit_on_failure?
      rescue Errno::EPIPE
        # This happens if a thor command is piped to something like `head`,
        # which closes the pipe when it's done reading. This will also
        # mean that if the pipe is closed, further unnecessary
        # computation will not occur.
        exit(true)
      end

      # Allows to use private methods from parent in child classes as commands.
      #
      # ==== Parameters
      #   names<Array>:: Method names to be used as commands
      #
      # ==== Examples
      #
      #   public_command :foo
      #   public_command :foo, :bar, :baz
      #
      def public_command(*names)
        names.each do |name|
          class_eval "def #{name}(*); super end"
        end
      end
      alias_method :public_task, :public_command

      def handle_no_command_error(command, has_namespace = $thor_runner) #:nodoc:
        raise UndefinedCommandError.new(command, all_commands.keys, (namespace if has_namespace))
      end
      alias_method :handle_no_task_error, :handle_no_command_error

      def handle_argument_error(command, error, args, arity) #:nodoc:
        name = [command.ancestor_name, command.name].compact.join(" ")
        msg = "ERROR: \"#{basename} #{name}\" was called with ".dup
        msg << "no arguments"               if     args.empty?
        msg << "arguments " << args.inspect unless args.empty?
        msg << "\nUsage: \"#{banner(command).split("\n").join("\"\n       \"")}\""
        raise InvocationError, msg
      end

      # A flag that makes the process exit with status 1 if any error happens.
      def exit_on_failure?
        Bundler::Thor.deprecation_warning "Bundler::Thor exit with status 0 on errors. To keep this behavior, you must define `exit_on_failure?` in `#{self.name}`"
        false
      end

    protected

      # Prints the class options per group. If an option does not belong to
      # any group, it's printed as Class option.
      #
      def class_options_help(shell, groups = {}) #:nodoc:
        # Group options by group
        class_options.each do |_, value|
          groups[value.group] ||= []
          groups[value.group] << value
        end

        # Deal with default group
        global_options = groups.delete(nil) || []
        print_options(shell, global_options)

        # Print all others
        groups.each do |group_name, options|
          print_options(shell, options, group_name)
        end
      end

      # Receives a set of options and print them.
      def print_options(shell, options, group_name = nil)
        return if options.empty?

        list = []
        padding = options.map { |o| o.aliases.size }.max.to_i * 4

        options.each do |option|
          next if option.hide
          item = [option.usage(padding)]
          item.push(option.description ? "# #{option.description}" : "")

          list << item
          list << ["", "# Default: #{option.default}"] if option.show_default?
          list << ["", "# Possible values: #{option.enum.join(', ')}"] if option.enum
        end

        shell.say(group_name ? "#{group_name} options:" : "Options:")
        shell.print_table(list, :indent => 2)
        shell.say ""
      end

      # Raises an error if the word given is a Bundler::Thor reserved word.
      def is_thor_reserved_word?(word, type) #:nodoc:
        return false unless THOR_RESERVED_WORDS.include?(word.to_s)
        raise "#{word.inspect} is a Bundler::Thor reserved word and cannot be defined as #{type}"
      end

      # Build an option and adds it to the given scope.
      #
      # ==== Parameters
      # name<Symbol>:: The name of the argument.
      # options<Hash>:: Described in both class_option and method_option.
      # scope<Hash>:: Options hash that is being built up
      def build_option(name, options, scope) #:nodoc:
        scope[name] = Bundler::Thor::Option.new(name, {:check_default_type => check_default_type}.merge!(options))
      end

      # Receives a hash of options, parse them and add to the scope. This is a
      # fast way to set a bunch of options:
      #
      #   build_options :foo => true, :bar => :required, :baz => :string
      #
      # ==== Parameters
      # Hash[Symbol => Object]
      def build_options(options, scope) #:nodoc:
        options.each do |key, value|
          scope[key] = Bundler::Thor::Option.parse(key, value)
        end
      end

      # Finds a command with the given name. If the command belongs to the current
      # class, just return it, otherwise dup it and add the fresh copy to the
      # current command hash.
      def find_and_refresh_command(name) #:nodoc:
        if commands[name.to_s]
          commands[name.to_s]
        elsif command = all_commands[name.to_s] # rubocop:disable AssignmentInCondition
          commands[name.to_s] = command.clone
        else
          raise ArgumentError, "You supplied :for => #{name.inspect}, but the command #{name.inspect} could not be found."
        end
      end
      alias_method :find_and_refresh_task, :find_and_refresh_command

      # Everytime someone inherits from a Bundler::Thor class, register the klass
      # and file into baseclass.
      def inherited(klass)
        super(klass)
        Bundler::Thor::Base.register_klass_file(klass)
        klass.instance_variable_set(:@no_commands, 0)
      end

      # Fire this callback whenever a method is added. Added methods are
      # tracked as commands by invoking the create_command method.
      def method_added(meth)
        super(meth)
        meth = meth.to_s

        if meth == "initialize"
          initialize_added
          return
        end

        # Return if it's not a public instance method
        return unless public_method_defined?(meth.to_sym)

        return if no_commands? || !create_command(meth)

        is_thor_reserved_word?(meth, :command)
        Bundler::Thor::Base.register_klass_file(self)
      end

      # Retrieves a value from superclass. If it reaches the baseclass,
      # returns default.
      def from_superclass(method, default = nil)
        if self == baseclass || !superclass.respond_to?(method, true)
          default
        else
          value = superclass.send(method)

          # Ruby implements `dup` on Object, but raises a `TypeError`
          # if the method is called on immediates. As a result, we
          # don't have a good way to check whether dup will succeed
          # without calling it and rescuing the TypeError.
          begin
            value.dup
          rescue TypeError
            value
          end

        end
      end

      #
      # The basename of the program invoking the thor class.
      #
      def basename
        File.basename($PROGRAM_NAME).split(" ").first
      end

      # SIGNATURE: Sets the baseclass. This is where the superclass lookup
      # finishes.
      def baseclass #:nodoc:
      end

      # SIGNATURE: Creates a new command if valid_command? is true. This method is
      # called when a new method is added to the class.
      def create_command(meth) #:nodoc:
      end
      alias_method :create_task, :create_command

      # SIGNATURE: Defines behavior when the initialize method is added to the
      # class.
      def initialize_added #:nodoc:
      end

      # SIGNATURE: The hook invoked by start.
      def dispatch(command, given_args, given_opts, config) #:nodoc:
        raise NotImplementedError
      end
    end
  end
end
PK@H[��홇�Nshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor.rbnu�[���require_relative "line_editor/basic"
require_relative "line_editor/readline"

class Bundler::Thor
  module LineEditor
    def self.readline(prompt, options = {})
      best_available.new(prompt, options).readline
    end

    def self.best_available
      [
        Bundler::Thor::LineEditor::Readline,
        Bundler::Thor::LineEditor::Basic
      ].detect(&:available?)
    end
  end
end
PK@H[5�,,Jshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/version.rbnu�[���class Bundler::Thor
  VERSION = "1.1.0"
end
PK@H[��P?%	%	Hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell.rbnu�[���require "rbconfig"

class Bundler::Thor
  module Base
    class << self
      attr_writer :shell

      # Returns the shell used in all Bundler::Thor classes. If you are in a Unix platform
      # it will use a colored log, otherwise it will use a basic one without color.
      #
      def shell
        @shell ||= if ENV["THOR_SHELL"] && !ENV["THOR_SHELL"].empty?
          Bundler::Thor::Shell.const_get(ENV["THOR_SHELL"])
        elsif RbConfig::CONFIG["host_os"] =~ /mswin|mingw/ && !ENV["ANSICON"]
          Bundler::Thor::Shell::Basic
        else
          Bundler::Thor::Shell::Color
        end
      end
    end
  end

  module Shell
    SHELL_DELEGATED_METHODS = [:ask, :error, :set_color, :yes?, :no?, :say, :say_status, :print_in_columns, :print_table, :print_wrapped, :file_collision, :terminal_width]
    attr_writer :shell

    autoload :Basic, File.expand_path("shell/basic", __dir__)
    autoload :Color, File.expand_path("shell/color", __dir__)
    autoload :HTML,  File.expand_path("shell/html", __dir__)

    # Add shell to initialize config values.
    #
    # ==== Configuration
    # shell<Object>:: An instance of the shell to be used.
    #
    # ==== Examples
    #
    #   class MyScript < Bundler::Thor
    #     argument :first, :type => :numeric
    #   end
    #
    #   MyScript.new [1.0], { :foo => :bar }, :shell => Bundler::Thor::Shell::Basic.new
    #
    def initialize(args = [], options = {}, config = {})
      super
      self.shell = config[:shell]
      shell.base ||= self if shell.respond_to?(:base)
    end

    # Holds the shell for the given Bundler::Thor instance. If no shell is given,
    # it gets a default shell from Bundler::Thor::Base.shell.
    def shell
      @shell ||= Bundler::Thor::Base.shell.new
    end

    # Common methods that are delegated to the shell.
    SHELL_DELEGATED_METHODS.each do |method|
      module_eval <<-METHOD, __FILE__, __LINE__ + 1
        def #{method}(*args,&block)
          shell.#{method}(*args,&block)
        end
      METHOD
    end

    # Yields the given block with padding.
    def with_padding
      shell.padding += 1
      yield
    ensure
      shell.padding -= 1
    end

  protected

    # Allow shell to be shared between invocations.
    #
    def _shared_configuration #:nodoc:
      super.merge!(:shell => shell)
    end
  end
end
PK@H[.����Mshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/html.rbnu�[���require_relative "basic"

class Bundler::Thor
  module Shell
    # Inherit from Bundler::Thor::Shell::Basic and add set_color behavior. Check
    # Bundler::Thor::Shell::Basic to see all available methods.
    #
    class HTML < Basic
      # The start of an HTML bold sequence.
      BOLD       = "font-weight: bold"

      # Set the terminal's foreground HTML color to black.
      BLACK      = "color: black"
      # Set the terminal's foreground HTML color to red.
      RED        = "color: red"
      # Set the terminal's foreground HTML color to green.
      GREEN      = "color: green"
      # Set the terminal's foreground HTML color to yellow.
      YELLOW     = "color: yellow"
      # Set the terminal's foreground HTML color to blue.
      BLUE       = "color: blue"
      # Set the terminal's foreground HTML color to magenta.
      MAGENTA    = "color: magenta"
      # Set the terminal's foreground HTML color to cyan.
      CYAN       = "color: cyan"
      # Set the terminal's foreground HTML color to white.
      WHITE      = "color: white"

      # Set the terminal's background HTML color to black.
      ON_BLACK   = "background-color: black"
      # Set the terminal's background HTML color to red.
      ON_RED     = "background-color: red"
      # Set the terminal's background HTML color to green.
      ON_GREEN   = "background-color: green"
      # Set the terminal's background HTML color to yellow.
      ON_YELLOW  = "background-color: yellow"
      # Set the terminal's background HTML color to blue.
      ON_BLUE    = "background-color: blue"
      # Set the terminal's background HTML color to magenta.
      ON_MAGENTA = "background-color: magenta"
      # Set the terminal's background HTML color to cyan.
      ON_CYAN    = "background-color: cyan"
      # Set the terminal's background HTML color to white.
      ON_WHITE   = "background-color: white"

      # Set color by using a string or one of the defined constants. If a third
      # option is set to true, it also adds bold to the string. This is based
      # on Highline implementation and it automatically appends CLEAR to the end
      # of the returned String.
      #
      def set_color(string, *colors)
        if colors.all? { |color| color.is_a?(Symbol) || color.is_a?(String) }
          html_colors = colors.map { |color| lookup_color(color) }
          "<span style=\"#{html_colors.join('; ')};\">#{Bundler::Thor::Util.escape_html(string)}</span>"
        else
          color, bold = colors
          html_color = self.class.const_get(color.to_s.upcase) if color.is_a?(Symbol)
          styles = [html_color]
          styles << BOLD if bold
          "<span style=\"#{styles.join('; ')};\">#{Bundler::Thor::Util.escape_html(string)}</span>"
        end
      end

      # Ask something to the user and receives a response.
      #
      # ==== Example
      # ask("What is your name?")
      #
      # TODO: Implement #ask for Bundler::Thor::Shell::HTML
      def ask(statement, color = nil)
        raise NotImplementedError, "Implement #ask for Bundler::Thor::Shell::HTML"
      end

    protected

      def can_display_colors?
        true
      end

      # Overwrite show_diff to show diff with colors if Diff::LCS is
      # available.
      #
      def show_diff(destination, content) #:nodoc:
        if diff_lcs_loaded? && ENV["THOR_DIFF"].nil? && ENV["RAILS_DIFF"].nil?
          actual  = File.binread(destination).to_s.split("\n")
          content = content.to_s.split("\n")

          Diff::LCS.sdiff(actual, content).each do |diff|
            output_diff_line(diff)
          end
        else
          super
        end
      end

      def output_diff_line(diff) #:nodoc:
        case diff.action
        when "-"
          say "- #{diff.old_element.chomp}", :red, true
        when "+"
          say "+ #{diff.new_element.chomp}", :green, true
        when "!"
          say "- #{diff.old_element.chomp}", :red, true
          say "+ #{diff.new_element.chomp}", :green, true
        else
          say "  #{diff.old_element.chomp}", nil, true
        end
      end

      # Check if Diff::LCS is loaded. If it is, use it to create pretty output
      # for diff.
      #
      def diff_lcs_loaded? #:nodoc:
        return true if defined?(Diff::LCS)
        return @diff_lcs_loaded unless @diff_lcs_loaded.nil?

        @diff_lcs_loaded = begin
          require "diff/lcs"
          true
        rescue LoadError
          false
        end
      end
    end
  end
end
PK@H[1�UyXXNshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/color.rbnu�[���require_relative "basic"

class Bundler::Thor
  module Shell
    # Inherit from Bundler::Thor::Shell::Basic and add set_color behavior. Check
    # Bundler::Thor::Shell::Basic to see all available methods.
    #
    class Color < Basic
      # Embed in a String to clear all previous ANSI sequences.
      CLEAR      = "\e[0m"
      # The start of an ANSI bold sequence.
      BOLD       = "\e[1m"

      # Set the terminal's foreground ANSI color to black.
      BLACK      = "\e[30m"
      # Set the terminal's foreground ANSI color to red.
      RED        = "\e[31m"
      # Set the terminal's foreground ANSI color to green.
      GREEN      = "\e[32m"
      # Set the terminal's foreground ANSI color to yellow.
      YELLOW     = "\e[33m"
      # Set the terminal's foreground ANSI color to blue.
      BLUE       = "\e[34m"
      # Set the terminal's foreground ANSI color to magenta.
      MAGENTA    = "\e[35m"
      # Set the terminal's foreground ANSI color to cyan.
      CYAN       = "\e[36m"
      # Set the terminal's foreground ANSI color to white.
      WHITE      = "\e[37m"

      # Set the terminal's background ANSI color to black.
      ON_BLACK   = "\e[40m"
      # Set the terminal's background ANSI color to red.
      ON_RED     = "\e[41m"
      # Set the terminal's background ANSI color to green.
      ON_GREEN   = "\e[42m"
      # Set the terminal's background ANSI color to yellow.
      ON_YELLOW  = "\e[43m"
      # Set the terminal's background ANSI color to blue.
      ON_BLUE    = "\e[44m"
      # Set the terminal's background ANSI color to magenta.
      ON_MAGENTA = "\e[45m"
      # Set the terminal's background ANSI color to cyan.
      ON_CYAN    = "\e[46m"
      # Set the terminal's background ANSI color to white.
      ON_WHITE   = "\e[47m"

      # Set color by using a string or one of the defined constants. If a third
      # option is set to true, it also adds bold to the string. This is based
      # on Highline implementation and it automatically appends CLEAR to the end
      # of the returned String.
      #
      # Pass foreground, background and bold options to this method as
      # symbols.
      #
      # Example:
      #
      #   set_color "Hi!", :red, :on_white, :bold
      #
      # The available colors are:
      #
      #   :bold
      #   :black
      #   :red
      #   :green
      #   :yellow
      #   :blue
      #   :magenta
      #   :cyan
      #   :white
      #   :on_black
      #   :on_red
      #   :on_green
      #   :on_yellow
      #   :on_blue
      #   :on_magenta
      #   :on_cyan
      #   :on_white
      def set_color(string, *colors)
        if colors.compact.empty? || !can_display_colors?
          string
        elsif colors.all? { |color| color.is_a?(Symbol) || color.is_a?(String) }
          ansi_colors = colors.map { |color| lookup_color(color) }
          "#{ansi_colors.join}#{string}#{CLEAR}"
        else
          # The old API was `set_color(color, bold=boolean)`. We
          # continue to support the old API because you should never
          # break old APIs unnecessarily :P
          foreground, bold = colors
          foreground = self.class.const_get(foreground.to_s.upcase) if foreground.is_a?(Symbol)

          bold       = bold ? BOLD : ""
          "#{bold}#{foreground}#{string}#{CLEAR}"
        end
      end

    protected

      def can_display_colors?
        are_colors_supported? && !are_colors_disabled?
      end

      def are_colors_supported?
        stdout.tty? && ENV["TERM"] != "dumb"
      end

      def are_colors_disabled?
        !ENV['NO_COLOR'].nil?
      end

      # Overwrite show_diff to show diff with colors if Diff::LCS is
      # available.
      #
      def show_diff(destination, content) #:nodoc:
        if diff_lcs_loaded? && ENV["THOR_DIFF"].nil? && ENV["RAILS_DIFF"].nil?
          actual  = File.binread(destination).to_s.split("\n")
          content = content.to_s.split("\n")

          Diff::LCS.sdiff(actual, content).each do |diff|
            output_diff_line(diff)
          end
        else
          super
        end
      end

      def output_diff_line(diff) #:nodoc:
        case diff.action
        when "-"
          say "- #{diff.old_element.chomp}", :red, true
        when "+"
          say "+ #{diff.new_element.chomp}", :green, true
        when "!"
          say "- #{diff.old_element.chomp}", :red, true
          say "+ #{diff.new_element.chomp}", :green, true
        else
          say "  #{diff.old_element.chomp}", nil, true
        end
      end

      # Check if Diff::LCS is loaded. If it is, use it to create pretty output
      # for diff.
      #
      def diff_lcs_loaded? #:nodoc:
        return true if defined?(Diff::LCS)
        return @diff_lcs_loaded unless @diff_lcs_loaded.nil?

        @diff_lcs_loaded = begin
          require "diff/lcs"
          true
        rescue LoadError
          false
        end
      end
    end
  end
end
PK@H[�6���9�9Nshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/basic.rbnu�[���class Bundler::Thor
  module Shell
    class Basic
      DEFAULT_TERMINAL_WIDTH = 80

      attr_accessor :base
      attr_reader   :padding

      # Initialize base, mute and padding to nil.
      #
      def initialize #:nodoc:
        @base = nil
        @mute = false
        @padding = 0
        @always_force = false
      end

      # Mute everything that's inside given block
      #
      def mute
        @mute = true
        yield
      ensure
        @mute = false
      end

      # Check if base is muted
      #
      def mute?
        @mute
      end

      # Sets the output padding, not allowing less than zero values.
      #
      def padding=(value)
        @padding = [0, value].max
      end

      # Sets the output padding while executing a block and resets it.
      #
      def indent(count = 1)
        orig_padding = padding
        self.padding = padding + count
        yield
        self.padding = orig_padding
      end

      # Asks something to the user and receives a response.
      #
      # If a default value is specified it will be presented to the user
      # and allows them to select that value with an empty response. This
      # option is ignored when limited answers are supplied.
      #
      # If asked to limit the correct responses, you can pass in an
      # array of acceptable answers.  If one of those is not supplied,
      # they will be shown a message stating that one of those answers
      # must be given and re-asked the question.
      #
      # If asking for sensitive information, the :echo option can be set
      # to false to mask user input from $stdin.
      #
      # If the required input is a path, then set the path option to
      # true. This will enable tab completion for file paths relative
      # to the current working directory on systems that support
      # Readline.
      #
      # ==== Example
      # ask("What is your name?")
      #
      # ask("What is the planet furthest from the sun?", :default => "Pluto")
      #
      # ask("What is your favorite Neopolitan flavor?", :limited_to => ["strawberry", "chocolate", "vanilla"])
      #
      # ask("What is your password?", :echo => false)
      #
      # ask("Where should the file be saved?", :path => true)
      #
      def ask(statement, *args)
        options = args.last.is_a?(Hash) ? args.pop : {}
        color = args.first

        if options[:limited_to]
          ask_filtered(statement, color, options)
        else
          ask_simply(statement, color, options)
        end
      end

      # Say (print) something to the user. If the sentence ends with a whitespace
      # or tab character, a new line is not appended (print + flush). Otherwise
      # are passed straight to puts (behavior got from Highline).
      #
      # ==== Example
      # say("I know you knew that.")
      #
      def say(message = "", color = nil, force_new_line = (message.to_s !~ /( |\t)\Z/))
        return if quiet?

        buffer = prepare_message(message, *color)
        buffer << "\n" if force_new_line && !message.to_s.end_with?("\n")

        stdout.print(buffer)
        stdout.flush
      end

      # Say a status with the given color and appends the message. Since this
      # method is used frequently by actions, it allows nil or false to be given
      # in log_status, avoiding the message from being shown. If a Symbol is
      # given in log_status, it's used as the color.
      #
      def say_status(status, message, log_status = true)
        return if quiet? || log_status == false
        spaces = "  " * (padding + 1)
        color  = log_status.is_a?(Symbol) ? log_status : :green

        status = status.to_s.rjust(12)
        status = set_color status, color, true if color

        buffer = "#{status}#{spaces}#{message}"
        buffer = "#{buffer}\n" unless buffer.end_with?("\n")

        stdout.print(buffer)
        stdout.flush
      end

      # Make a question the to user and returns true if the user replies "y" or
      # "yes".
      #
      def yes?(statement, color = nil)
        !!(ask(statement, color, :add_to_history => false) =~ is?(:yes))
      end

      # Make a question the to user and returns true if the user replies "n" or
      # "no".
      #
      def no?(statement, color = nil)
        !!(ask(statement, color, :add_to_history => false) =~ is?(:no))
      end

      # Prints values in columns
      #
      # ==== Parameters
      # Array[String, String, ...]
      #
      def print_in_columns(array)
        return if array.empty?
        colwidth = (array.map { |el| el.to_s.size }.max || 0) + 2
        array.each_with_index do |value, index|
          # Don't output trailing spaces when printing the last column
          if ((((index + 1) % (terminal_width / colwidth))).zero? && !index.zero?) || index + 1 == array.length
            stdout.puts value
          else
            stdout.printf("%-#{colwidth}s", value)
          end
        end
      end

      # Prints a table.
      #
      # ==== Parameters
      # Array[Array[String, String, ...]]
      #
      # ==== Options
      # indent<Integer>:: Indent the first column by indent value.
      # colwidth<Integer>:: Force the first column to colwidth spaces wide.
      #
      def print_table(array, options = {}) # rubocop:disable MethodLength
        return if array.empty?

        formats = []
        indent = options[:indent].to_i
        colwidth = options[:colwidth]
        options[:truncate] = terminal_width if options[:truncate] == true

        formats << "%-#{colwidth + 2}s".dup if colwidth
        start = colwidth ? 1 : 0

        colcount = array.max { |a, b| a.size <=> b.size }.size

        maximas = []

        start.upto(colcount - 1) do |index|
          maxima = array.map { |row| row[index] ? row[index].to_s.size : 0 }.max
          maximas << maxima
          formats << if index == colcount - 1
                       # Don't output 2 trailing spaces when printing the last column
                       "%-s".dup
                     else
                       "%-#{maxima + 2}s".dup
                     end
        end

        formats[0] = formats[0].insert(0, " " * indent)
        formats << "%s"

        array.each do |row|
          sentence = "".dup

          row.each_with_index do |column, index|
            maxima = maximas[index]

            f = if column.is_a?(Numeric)
              if index == row.size - 1
                # Don't output 2 trailing spaces when printing the last column
                "%#{maxima}s"
              else
                "%#{maxima}s  "
              end
            else
              formats[index]
            end
            sentence << f % column.to_s
          end

          sentence = truncate(sentence, options[:truncate]) if options[:truncate]
          stdout.puts sentence
        end
      end

      # Prints a long string, word-wrapping the text to the current width of the
      # terminal display. Ideal for printing heredocs.
      #
      # ==== Parameters
      # String
      #
      # ==== Options
      # indent<Integer>:: Indent each line of the printed paragraph by indent value.
      #
      def print_wrapped(message, options = {})
        indent = options[:indent] || 0
        width = terminal_width - indent
        paras = message.split("\n\n")

        paras.map! do |unwrapped|
          words = unwrapped.split(" ")
          counter = words.first.length
          words.inject do |memo, word|
            word = word.gsub(/\n\005/, "\n").gsub(/\005/, "\n")
            counter = 0 if word.include? "\n"
            if (counter + word.length + 1) < width
              memo = "#{memo} #{word}"
              counter += (word.length + 1)
            else
              memo = "#{memo}\n#{word}"
              counter = word.length
            end
            memo
          end
        end.compact!

        paras.each do |para|
          para.split("\n").each do |line|
            stdout.puts line.insert(0, " " * indent)
          end
          stdout.puts unless para == paras.last
        end
      end

      # Deals with file collision and returns true if the file should be
      # overwritten and false otherwise. If a block is given, it uses the block
      # response as the content for the diff.
      #
      # ==== Parameters
      # destination<String>:: the destination file to solve conflicts
      # block<Proc>:: an optional block that returns the value to be used in diff and merge
      #
      def file_collision(destination)
        return true if @always_force
        options = block_given? ? "[Ynaqdhm]" : "[Ynaqh]"

        loop do
          answer = ask(
            %[Overwrite #{destination}? (enter "h" for help) #{options}],
            :add_to_history => false
          )

          case answer
          when nil
            say ""
            return true
          when is?(:yes), is?(:force), ""
            return true
          when is?(:no), is?(:skip)
            return false
          when is?(:always)
            return @always_force = true
          when is?(:quit)
            say "Aborting..."
            raise SystemExit
          when is?(:diff)
            show_diff(destination, yield) if block_given?
            say "Retrying..."
          when is?(:merge)
            if block_given? && !merge_tool.empty?
              merge(destination, yield)
              return nil
            end

            say "Please specify merge tool to `THOR_MERGE` env."
          else
            say file_collision_help
          end
        end
      end

      # This code was copied from Rake, available under MIT-LICENSE
      # Copyright (c) 2003, 2004 Jim Weirich
      def terminal_width
        result = if ENV["THOR_COLUMNS"]
          ENV["THOR_COLUMNS"].to_i
        else
          unix? ? dynamic_width : DEFAULT_TERMINAL_WIDTH
        end
        result < 10 ? DEFAULT_TERMINAL_WIDTH : result
      rescue
        DEFAULT_TERMINAL_WIDTH
      end

      # Called if something goes wrong during the execution. This is used by Bundler::Thor
      # internally and should not be used inside your scripts. If something went
      # wrong, you can always raise an exception. If you raise a Bundler::Thor::Error, it
      # will be rescued and wrapped in the method below.
      #
      def error(statement)
        stderr.puts statement
      end

      # Apply color to the given string with optional bold. Disabled in the
      # Bundler::Thor::Shell::Basic class.
      #
      def set_color(string, *) #:nodoc:
        string
      end

    protected

      def prepare_message(message, *color)
        spaces = "  " * padding
        spaces + set_color(message.to_s, *color)
      end

      def can_display_colors?
        false
      end

      def lookup_color(color)
        return color unless color.is_a?(Symbol)
        self.class.const_get(color.to_s.upcase)
      end

      def stdout
        $stdout
      end

      def stderr
        $stderr
      end

      def is?(value) #:nodoc:
        value = value.to_s

        if value.size == 1
          /\A#{value}\z/i
        else
          /\A(#{value}|#{value[0, 1]})\z/i
        end
      end

      def file_collision_help #:nodoc:
        <<-HELP
        Y - yes, overwrite
        n - no, do not overwrite
        a - all, overwrite this and all others
        q - quit, abort
        d - diff, show the differences between the old and the new
        h - help, show this help
        m - merge, run merge tool
        HELP
      end

      def show_diff(destination, content) #:nodoc:
        diff_cmd = ENV["THOR_DIFF"] || ENV["RAILS_DIFF"] || "diff -u"

        require "tempfile"
        Tempfile.open(File.basename(destination), File.dirname(destination)) do |temp|
          temp.write content
          temp.rewind
          system %(#{diff_cmd} "#{destination}" "#{temp.path}")
        end
      end

      def quiet? #:nodoc:
        mute? || (base && base.options[:quiet])
      end

      # Calculate the dynamic width of the terminal
      def dynamic_width
        @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
      end

      def dynamic_width_stty
        `stty size 2>/dev/null`.split[1].to_i
      end

      def dynamic_width_tput
        `tput cols 2>/dev/null`.to_i
      end

      def unix?
        RUBY_PLATFORM =~ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
      end

      def truncate(string, width)
        as_unicode do
          chars = string.chars.to_a
          if chars.length <= width
            chars.join
          else
            chars[0, width - 3].join + "..."
          end
        end
      end

      if "".respond_to?(:encode)
        def as_unicode
          yield
        end
      else
        def as_unicode
          old = $KCODE
          $KCODE = "U"
          yield
        ensure
          $KCODE = old
        end
      end

      def ask_simply(statement, color, options)
        default = options[:default]
        message = [statement, ("(#{default})" if default), nil].uniq.join(" ")
        message = prepare_message(message, *color)
        result = Bundler::Thor::LineEditor.readline(message, options)

        return unless result

        result = result.strip

        if default && result == ""
          default
        else
          result
        end
      end

      def ask_filtered(statement, color, options)
        answer_set = options[:limited_to]
        case_insensitive = options.fetch(:case_insensitive, false)
        correct_answer = nil
        until correct_answer
          answers = answer_set.join(", ")
          answer = ask_simply("#{statement} [#{answers}]", color, options)
          correct_answer = answer_match(answer_set, answer, case_insensitive)
          say("Your response must be one of: [#{answers}]. Please try again.") unless correct_answer
        end
        correct_answer
      end

      def answer_match(possibilities, answer, case_insensitive)
        if case_insensitive
          possibilities.detect{ |possibility| possibility.downcase == answer.downcase }
        else
          possibilities.detect{ |possibility| possibility == answer }
        end
      end

      def merge(destination, content) #:nodoc:
        require "tempfile"
        Tempfile.open([File.basename(destination), File.extname(destination)], File.dirname(destination)) do |temp|
          temp.write content
          temp.rewind
          system %(#{merge_tool} "#{temp.path}" "#{destination}")
        end
      end

      def merge_tool #:nodoc:
        @merge_tool ||= ENV["THOR_MERGE"] || git_merge_tool
      end

      def git_merge_tool #:nodoc:
        `git config merge.tool`.rstrip rescue ""
      end
    end
  end
end
PK@H[ɗc���Hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/error.rbnu�[���class Bundler::Thor
  Correctable = if defined?(DidYouMean::SpellChecker) && defined?(DidYouMean::Correctable) # rubocop:disable Naming/ConstantName
                  # In order to support versions of Ruby that don't have keyword
                  # arguments, we need our own spell checker class that doesn't take key
                  # words. Even though this code wouldn't be hit because of the check
                  # above, it's still necessary because the interpreter would otherwise be
                  # unable to parse the file.
                  class NoKwargSpellChecker < DidYouMean::SpellChecker # :nodoc:
                    def initialize(dictionary)
                      @dictionary = dictionary
                    end
                  end

                  DidYouMean::Correctable
                end

  # Bundler::Thor::Error is raised when it's caused by wrong usage of thor classes. Those
  # errors have their backtrace suppressed and are nicely shown to the user.
  #
  # Errors that are caused by the developer, like declaring a method which
  # overwrites a thor keyword, SHOULD NOT raise a Bundler::Thor::Error. This way, we
  # ensure that developer errors are shown with full backtrace.
  class Error < StandardError
  end

  # Raised when a command was not found.
  class UndefinedCommandError < Error
    class SpellChecker
      attr_reader :error

      def initialize(error)
        @error = error
      end

      def corrections
        @corrections ||= spell_checker.correct(error.command).map(&:inspect)
      end

      def spell_checker
        NoKwargSpellChecker.new(error.all_commands)
      end
    end

    attr_reader :command, :all_commands

    def initialize(command, all_commands, namespace)
      @command = command
      @all_commands = all_commands

      message = "Could not find command #{command.inspect}"
      message = namespace ? "#{message} in #{namespace.inspect} namespace." : "#{message}."

      super(message)
    end

    prepend Correctable if Correctable
  end
  UndefinedTaskError = UndefinedCommandError

  class AmbiguousCommandError < Error
  end
  AmbiguousTaskError = AmbiguousCommandError

  # Raised when a command was found, but not invoked properly.
  class InvocationError < Error
  end

  class UnknownArgumentError < Error
    class SpellChecker
      attr_reader :error

      def initialize(error)
        @error = error
      end

      def corrections
        @corrections ||=
          error.unknown.flat_map { |unknown| spell_checker.correct(unknown) }.uniq.map(&:inspect)
      end

      def spell_checker
        @spell_checker ||= NoKwargSpellChecker.new(error.switches)
      end
    end

    attr_reader :switches, :unknown

    def initialize(switches, unknown)
      @switches = switches
      @unknown = unknown

      super("Unknown switches #{unknown.map(&:inspect).join(', ')}")
    end

    prepend Correctable if Correctable
  end

  class RequiredArgumentMissingError < InvocationError
  end

  class MalformattedArgumentError < InvocationError
  end

  if Correctable
    DidYouMean::SPELL_CHECKERS.merge!(
      'Bundler::Thor::UndefinedCommandError' => UndefinedCommandError::SpellChecker,
      'Bundler::Thor::UnknownArgumentError' => UnknownArgumentError::SpellChecker
    )
  end
end
PK@H[��LuvvNshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/rake_compat.rbnu�[���require "rake"
require "rake/dsl_definition"

class Bundler::Thor
  # Adds a compatibility layer to your Bundler::Thor classes which allows you to use
  # rake package tasks. For example, to use rspec rake tasks, one can do:
  #
  #   require 'bundler/vendor/thor/lib/thor/rake_compat'
  #   require 'rspec/core/rake_task'
  #
  #   class Default < Bundler::Thor
  #     include Bundler::Thor::RakeCompat
  #
  #     RSpec::Core::RakeTask.new(:spec) do |t|
  #       t.spec_opts = ['--options', './.rspec']
  #       t.spec_files = FileList['spec/**/*_spec.rb']
  #     end
  #   end
  #
  module RakeCompat
    include Rake::DSL if defined?(Rake::DSL)

    def self.rake_classes
      @rake_classes ||= []
    end

    def self.included(base)
      super(base)
      # Hack. Make rakefile point to invoker, so rdoc task is generated properly.
      rakefile = File.basename(caller[0].match(/(.*):\d+/)[1])
      Rake.application.instance_variable_set(:@rakefile, rakefile)
      rake_classes << base
    end
  end
end

# override task on (main), for compatibility with Rake 0.9
instance_eval do
  alias rake_namespace namespace

  def task(*)
    task = super

    if klass = Bundler::Thor::RakeCompat.rake_classes.last # rubocop:disable AssignmentInCondition
      non_namespaced_name = task.name.split(":").last

      description = non_namespaced_name
      description << task.arg_names.map { |n| n.to_s.upcase }.join(" ")
      description.strip!

      klass.desc description, Rake.application.last_description || non_namespaced_name
      Rake.application.last_description = nil
      klass.send :define_method, non_namespaced_name do |*args|
        Rake::Task[task.name.to_sym].invoke(*args)
      end
    end

    task
  end

  def namespace(name)
    if klass = Bundler::Thor::RakeCompat.rake_classes.last # rubocop:disable AssignmentInCondition
      const_name = Bundler::Thor::Util.camel_case(name.to_s).to_sym
      klass.const_set(const_name, Class.new(Bundler::Thor))
      new_klass = klass.const_get(const_name)
      Bundler::Thor::RakeCompat.rake_classes << new_klass
    end

    super
    Bundler::Thor::RakeCompat.rake_classes.pop
  end
end
PK@H[��j�U#U#Gshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/util.rbnu�[���require "rbconfig"

class Bundler::Thor
  module Sandbox #:nodoc:
  end

  # This module holds several utilities:
  #
  # 1) Methods to convert thor namespaces to constants and vice-versa.
  #
  #   Bundler::Thor::Util.namespace_from_thor_class(Foo::Bar::Baz) #=> "foo:bar:baz"
  #
  # 2) Loading thor files and sandboxing:
  #
  #   Bundler::Thor::Util.load_thorfile("~/.thor/foo")
  #
  module Util
    class << self
      # Receives a namespace and search for it in the Bundler::Thor::Base subclasses.
      #
      # ==== Parameters
      # namespace<String>:: The namespace to search for.
      #
      def find_by_namespace(namespace)
        namespace = "default#{namespace}" if namespace.empty? || namespace =~ /^:/
        Bundler::Thor::Base.subclasses.detect { |klass| klass.namespace == namespace }
      end

      # Receives a constant and converts it to a Bundler::Thor namespace. Since Bundler::Thor
      # commands can be added to a sandbox, this method is also responsible for
      # removing the sandbox namespace.
      #
      # This method should not be used in general because it's used to deal with
      # older versions of Bundler::Thor. On current versions, if you need to get the
      # namespace from a class, just call namespace on it.
      #
      # ==== Parameters
      # constant<Object>:: The constant to be converted to the thor path.
      #
      # ==== Returns
      # String:: If we receive Foo::Bar::Baz it returns "foo:bar:baz"
      #
      def namespace_from_thor_class(constant)
        constant = constant.to_s.gsub(/^Bundler::Thor::Sandbox::/, "")
        constant = snake_case(constant).squeeze(":")
        constant
      end

      # Given the contents, evaluate it inside the sandbox and returns the
      # namespaces defined in the sandbox.
      #
      # ==== Parameters
      # contents<String>
      #
      # ==== Returns
      # Array[Object]
      #
      def namespaces_in_content(contents, file = __FILE__)
        old_constants = Bundler::Thor::Base.subclasses.dup
        Bundler::Thor::Base.subclasses.clear

        load_thorfile(file, contents)

        new_constants = Bundler::Thor::Base.subclasses.dup
        Bundler::Thor::Base.subclasses.replace(old_constants)

        new_constants.map!(&:namespace)
        new_constants.compact!
        new_constants
      end

      # Returns the thor classes declared inside the given class.
      #
      def thor_classes_in(klass)
        stringfied_constants = klass.constants.map(&:to_s)
        Bundler::Thor::Base.subclasses.select do |subclass|
          next unless subclass.name
          stringfied_constants.include?(subclass.name.gsub("#{klass.name}::", ""))
        end
      end

      # Receives a string and convert it to snake case. SnakeCase returns snake_case.
      #
      # ==== Parameters
      # String
      #
      # ==== Returns
      # String
      #
      def snake_case(str)
        return str.downcase if str =~ /^[A-Z_]+$/
        str.gsub(/\B[A-Z]/, '_\&').squeeze("_") =~ /_*(.*)/
        $+.downcase
      end

      # Receives a string and convert it to camel case. camel_case returns CamelCase.
      #
      # ==== Parameters
      # String
      #
      # ==== Returns
      # String
      #
      def camel_case(str)
        return str if str !~ /_/ && str =~ /[A-Z]+.*/
        str.split("_").map(&:capitalize).join
      end

      # Receives a namespace and tries to retrieve a Bundler::Thor or Bundler::Thor::Group class
      # from it. It first searches for a class using the all the given namespace,
      # if it's not found, removes the highest entry and searches for the class
      # again. If found, returns the highest entry as the class name.
      #
      # ==== Examples
      #
      #   class Foo::Bar < Bundler::Thor
      #     def baz
      #     end
      #   end
      #
      #   class Baz::Foo < Bundler::Thor::Group
      #   end
      #
      #   Bundler::Thor::Util.namespace_to_thor_class("foo:bar")     #=> Foo::Bar, nil # will invoke default command
      #   Bundler::Thor::Util.namespace_to_thor_class("baz:foo")     #=> Baz::Foo, nil
      #   Bundler::Thor::Util.namespace_to_thor_class("foo:bar:baz") #=> Foo::Bar, "baz"
      #
      # ==== Parameters
      # namespace<String>
      #
      def find_class_and_command_by_namespace(namespace, fallback = true)
        if namespace.include?(":") # look for a namespaced command
          pieces  = namespace.split(":")
          command = pieces.pop
          klass   = Bundler::Thor::Util.find_by_namespace(pieces.join(":"))
        end
        unless klass # look for a Bundler::Thor::Group with the right name
          klass = Bundler::Thor::Util.find_by_namespace(namespace)
          command = nil
        end
        if !klass && fallback # try a command in the default namespace
          command = namespace
          klass   = Bundler::Thor::Util.find_by_namespace("")
        end
        [klass, command]
      end
      alias_method :find_class_and_task_by_namespace, :find_class_and_command_by_namespace

      # Receives a path and load the thor file in the path. The file is evaluated
      # inside the sandbox to avoid namespacing conflicts.
      #
      def load_thorfile(path, content = nil, debug = false)
        content ||= File.binread(path)

        begin
          Bundler::Thor::Sandbox.class_eval(content, path)
        rescue StandardError => e
          $stderr.puts("WARNING: unable to load thorfile #{path.inspect}: #{e.message}")
          if debug
            $stderr.puts(*e.backtrace)
          else
            $stderr.puts(e.backtrace.first)
          end
        end
      end

      def user_home
        @@user_home ||= if ENV["HOME"]
          ENV["HOME"]
        elsif ENV["USERPROFILE"]
          ENV["USERPROFILE"]
        elsif ENV["HOMEDRIVE"] && ENV["HOMEPATH"]
          File.join(ENV["HOMEDRIVE"], ENV["HOMEPATH"])
        elsif ENV["APPDATA"]
          ENV["APPDATA"]
        else
          begin
            File.expand_path("~")
          rescue
            if File::ALT_SEPARATOR
              "C:/"
            else
              "/"
            end
          end
        end
      end

      # Returns the root where thor files are located, depending on the OS.
      #
      def thor_root
        File.join(user_home, ".thor").tr('\\', "/")
      end

      # Returns the files in the thor root. On Windows thor_root will be something
      # like this:
      #
      #   C:\Documents and Settings\james\.thor
      #
      # If we don't #gsub the \ character, Dir.glob will fail.
      #
      def thor_root_glob
        files = Dir["#{escape_globs(thor_root)}/*"]

        files.map! do |file|
          File.directory?(file) ? File.join(file, "main.thor") : file
        end
      end

      # Where to look for Bundler::Thor files.
      #
      def globs_for(path)
        path = escape_globs(path)
        ["#{path}/Thorfile", "#{path}/*.thor", "#{path}/tasks/*.thor", "#{path}/lib/tasks/*.thor"]
      end

      # Return the path to the ruby interpreter taking into account multiple
      # installations and windows extensions.
      #
      def ruby_command
        @ruby_command ||= begin
          ruby_name = RbConfig::CONFIG["ruby_install_name"]
          ruby = File.join(RbConfig::CONFIG["bindir"], ruby_name)
          ruby << RbConfig::CONFIG["EXEEXT"]

          # avoid using different name than ruby (on platforms supporting links)
          if ruby_name != "ruby" && File.respond_to?(:readlink)
            begin
              alternate_ruby = File.join(RbConfig::CONFIG["bindir"], "ruby")
              alternate_ruby << RbConfig::CONFIG["EXEEXT"]

              # ruby is a symlink
              if File.symlink? alternate_ruby
                linked_ruby = File.readlink alternate_ruby

                # symlink points to 'ruby_install_name'
                ruby = alternate_ruby if linked_ruby == ruby_name || linked_ruby == ruby
              end
            rescue NotImplementedError # rubocop:disable HandleExceptions
              # just ignore on windows
            end
          end

          # escape string in case path to ruby executable contain spaces.
          ruby.sub!(/.*\s.*/m, '"\&"')
          ruby
        end
      end

      # Returns a string that has had any glob characters escaped.
      # The glob characters are `* ? { } [ ]`.
      #
      # ==== Examples
      #
      #   Bundler::Thor::Util.escape_globs('[apps]')   # => '\[apps\]'
      #
      # ==== Parameters
      # String
      #
      # ==== Returns
      # String
      #
      def escape_globs(path)
        path.to_s.gsub(/[*?{}\[\]]/, '\\\\\\&')
      end

      # Returns a string that has had any HTML characters escaped.
      #
      # ==== Examples
      #
      #   Bundler::Thor::Util.escape_html('<div>')   # => "&lt;div&gt;"
      #
      # ==== Parameters
      # String
      #
      # ==== Returns
      # String
      #
      def escape_html(string)
        CGI.escapeHTML(string)
      end
    end
  end
end
PK@H[8��hshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rbnu�[���class Bundler::Thor
  module CoreExt #:nodoc:
    # A hash with indifferent access and magic predicates.
    #
    #   hash = Bundler::Thor::CoreExt::HashWithIndifferentAccess.new 'foo' => 'bar', 'baz' => 'bee', 'force' => true
    #
    #   hash[:foo]  #=> 'bar'
    #   hash['foo'] #=> 'bar'
    #   hash.foo?   #=> true
    #
    class HashWithIndifferentAccess < ::Hash #:nodoc:
      def initialize(hash = {})
        super()
        hash.each do |key, value|
          self[convert_key(key)] = value
        end
      end

      def [](key)
        super(convert_key(key))
      end

      def []=(key, value)
        super(convert_key(key), value)
      end

      def delete(key)
        super(convert_key(key))
      end

      def fetch(key, *args)
        super(convert_key(key), *args)
      end

      def key?(key)
        super(convert_key(key))
      end

      def values_at(*indices)
        indices.map { |key| self[convert_key(key)] }
      end

      def merge(other)
        dup.merge!(other)
      end

      def merge!(other)
        other.each do |key, value|
          self[convert_key(key)] = value
        end
        self
      end

      def reverse_merge(other)
        self.class.new(other).merge(self)
      end

      def reverse_merge!(other_hash)
        replace(reverse_merge(other_hash))
      end

      def replace(other_hash)
        super(other_hash)
      end

      # Convert to a Hash with String keys.
      def to_hash
        Hash.new(default).merge!(self)
      end

    protected

      def convert_key(key)
        key.is_a?(Symbol) ? key.to_s : key
      end

      # Magic predicates. For instance:
      #
      #   options.force?                  # => !!options['force']
      #   options.shebang                 # => "/usr/lib/local/ruby"
      #   options.test_framework?(:rspec) # => options[:test_framework] == :rspec
      #
      def method_missing(method, *args)
        method = method.to_s
        if method =~ /^(\w+)\?$/
          if args.empty?
            !!self[$1]
          else
            self[$1] == args.first
          end
        else
          self[method]
        end
      end
    end
  end
end
PK@H[_-[�IIMshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/invocation.rbnu�[���class Bundler::Thor
  module Invocation
    def self.included(base) #:nodoc:
      super(base)
      base.extend ClassMethods
    end

    module ClassMethods
      # This method is responsible for receiving a name and find the proper
      # class and command for it. The key is an optional parameter which is
      # available only in class methods invocations (i.e. in Bundler::Thor::Group).
      def prepare_for_invocation(key, name) #:nodoc:
        case name
        when Symbol, String
          Bundler::Thor::Util.find_class_and_command_by_namespace(name.to_s, !key)
        else
          name
        end
      end
    end

    # Make initializer aware of invocations and the initialization args.
    def initialize(args = [], options = {}, config = {}, &block) #:nodoc:
      @_invocations = config[:invocations] || Hash.new { |h, k| h[k] = [] }
      @_initializer = [args, options, config]
      super
    end

    # Make the current command chain accessible with in a Bundler::Thor-(sub)command
    def current_command_chain
      @_invocations.values.flatten.map(&:to_sym)
    end

    # Receives a name and invokes it. The name can be a string (either "command" or
    # "namespace:command"), a Bundler::Thor::Command, a Class or a Bundler::Thor instance. If the
    # command cannot be guessed by name, it can also be supplied as second argument.
    #
    # You can also supply the arguments, options and configuration values for
    # the command to be invoked, if none is given, the same values used to
    # initialize the invoker are used to initialize the invoked.
    #
    # When no name is given, it will invoke the default command of the current class.
    #
    # ==== Examples
    #
    #   class A < Bundler::Thor
    #     def foo
    #       invoke :bar
    #       invoke "b:hello", ["Erik"]
    #     end
    #
    #     def bar
    #       invoke "b:hello", ["Erik"]
    #     end
    #   end
    #
    #   class B < Bundler::Thor
    #     def hello(name)
    #       puts "hello #{name}"
    #     end
    #   end
    #
    # You can notice that the method "foo" above invokes two commands: "bar",
    # which belongs to the same class and "hello" which belongs to the class B.
    #
    # By using an invocation system you ensure that a command is invoked only once.
    # In the example above, invoking "foo" will invoke "b:hello" just once, even
    # if it's invoked later by "bar" method.
    #
    # When class A invokes class B, all arguments used on A initialization are
    # supplied to B. This allows lazy parse of options. Let's suppose you have
    # some rspec commands:
    #
    #   class Rspec < Bundler::Thor::Group
    #     class_option :mock_framework, :type => :string, :default => :rr
    #
    #     def invoke_mock_framework
    #       invoke "rspec:#{options[:mock_framework]}"
    #     end
    #   end
    #
    # As you noticed, it invokes the given mock framework, which might have its
    # own options:
    #
    #   class Rspec::RR < Bundler::Thor::Group
    #     class_option :style, :type => :string, :default => :mock
    #   end
    #
    # Since it's not rspec concern to parse mock framework options, when RR
    # is invoked all options are parsed again, so RR can extract only the options
    # that it's going to use.
    #
    # If you want Rspec::RR to be initialized with its own set of options, you
    # have to do that explicitly:
    #
    #   invoke "rspec:rr", [], :style => :foo
    #
    # Besides giving an instance, you can also give a class to invoke:
    #
    #   invoke Rspec::RR, [], :style => :foo
    #
    def invoke(name = nil, *args)
      if name.nil?
        warn "[Bundler::Thor] Calling invoke() without argument is deprecated. Please use invoke_all instead.\n#{caller.join("\n")}"
        return invoke_all
      end

      args.unshift(nil) if args.first.is_a?(Array) || args.first.nil?
      command, args, opts, config = args

      klass, command = _retrieve_class_and_command(name, command)
      raise "Missing Bundler::Thor class for invoke #{name}" unless klass
      raise "Expected Bundler::Thor class, got #{klass}" unless klass <= Bundler::Thor::Base

      args, opts, config = _parse_initialization_options(args, opts, config)
      klass.send(:dispatch, command, args, opts, config) do |instance|
        instance.parent_options = options
      end
    end

    # Invoke the given command if the given args.
    def invoke_command(command, *args) #:nodoc:
      current = @_invocations[self.class]

      unless current.include?(command.name)
        current << command.name
        command.run(self, *args)
      end
    end
    alias_method :invoke_task, :invoke_command

    # Invoke all commands for the current instance.
    def invoke_all #:nodoc:
      self.class.all_commands.map { |_, command| invoke_command(command) }
    end

    # Invokes using shell padding.
    def invoke_with_padding(*args)
      with_padding { invoke(*args) }
    end

  protected

    # Configuration values that are shared between invocations.
    def _shared_configuration #:nodoc:
      {:invocations => @_invocations}
    end

    # This method simply retrieves the class and command to be invoked.
    # If the name is nil or the given name is a command in the current class,
    # use the given name and return self as class. Otherwise, call
    # prepare_for_invocation in the current class.
    def _retrieve_class_and_command(name, sent_command = nil) #:nodoc:
      if name.nil?
        [self.class, nil]
      elsif self.class.all_commands[name.to_s]
        [self.class, name.to_s]
      else
        klass, command = self.class.prepare_for_invocation(nil, name)
        [klass, command || sent_command]
      end
    end
    alias_method :_retrieve_class_and_task, :_retrieve_class_and_command

    # Initialize klass using values stored in the @_initializer.
    def _parse_initialization_options(args, opts, config) #:nodoc:
      stored_args, stored_opts, stored_config = @_initializer

      args ||= stored_args.dup
      opts ||= stored_opts.dup

      config ||= {}
      config = stored_config.merge(_shared_configuration).merge!(config)

      [args, opts, config]
    end
  end
end
PK@H[�u��w-w-7share/gems/gems/bundler-2.2.24/lib/bundler/installer.rbnu�[���# frozen_string_literal: true

require "rubygems/dependency_installer"
require_relative "worker"
require_relative "installer/parallel_installer"
require_relative "installer/standalone"
require_relative "installer/gem_installer"

module Bundler
  class Installer
    class << self
      attr_accessor :ambiguous_gems

      Installer.ambiguous_gems = []
    end

    attr_reader :post_install_messages

    # Begins the installation process for Bundler.
    # For more information see the #run method on this class.
    def self.install(root, definition, options = {})
      installer = new(root, definition)
      Plugin.hook(Plugin::Events::GEM_BEFORE_INSTALL_ALL, definition.dependencies)
      installer.run(options)
      Plugin.hook(Plugin::Events::GEM_AFTER_INSTALL_ALL, definition.dependencies)
      installer
    end

    def initialize(root, definition)
      @root = root
      @definition = definition
      @post_install_messages = {}
    end

    # Runs the install procedures for a specific Gemfile.
    #
    # Firstly, this method will check to see if `Bundler.bundle_path` exists
    # and if not then Bundler will create the directory. This is usually the same
    # location as RubyGems which typically is the `~/.gem` directory
    # unless other specified.
    #
    # Secondly, it checks if Bundler has been configured to be "frozen".
    # Frozen ensures that the Gemfile and the Gemfile.lock file are matching.
    # This stops a situation where a developer may update the Gemfile but may not run
    # `bundle install`, which leads to the Gemfile.lock file not being correctly updated.
    # If this file is not correctly updated then any other developer running
    # `bundle install` will potentially not install the correct gems.
    #
    # Thirdly, Bundler checks if there are any dependencies specified in the Gemfile.
    # If there are no dependencies specified then Bundler returns a warning message stating
    # so and this method returns.
    #
    # Fourthly, Bundler checks if the Gemfile.lock exists, and if so
    # then proceeds to set up a definition based on the Gemfile and the Gemfile.lock.
    # During this step Bundler will also download information about any new gems
    # that are not in the Gemfile.lock and resolve any dependencies if needed.
    #
    # Fifthly, Bundler resolves the dependencies either through a cache of gems or by remote.
    # This then leads into the gems being installed, along with stubs for their executables,
    # but only if the --binstubs option has been passed or Bundler.options[:bin] has been set
    # earlier.
    #
    # Sixthly, a new Gemfile.lock is created from the installed gems to ensure that the next time
    # that a user runs `bundle install` they will receive any updates from this process.
    #
    # Finally, if the user has specified the standalone flag, Bundler will generate the needed
    # require paths and save them in a `setup.rb` file. See `bundle standalone --help` for more
    # information.
    def run(options)
      create_bundle_path

      ProcessLock.lock do
        if Bundler.frozen_bundle?
          @definition.ensure_equivalent_gemfile_and_lockfile(options[:deployment])
        end

        if @definition.dependencies.empty?
          Bundler.ui.warn "The Gemfile specifies no dependencies"
          lock
          return
        end

        if resolve_if_needed(options)
          ensure_specs_are_compatible!
          load_plugins
          options.delete(:jobs)
        else
          options[:jobs] = 1 # to avoid the overhead of Bundler::Worker
        end
        install(options)

        Gem::Specification.reset # invalidate gem specification cache so that installed gems are immediately available

        lock unless Bundler.frozen_bundle?
        Standalone.new(options[:standalone], @definition).generate if options[:standalone]
      end
    end

    def generate_bundler_executable_stubs(spec, options = {})
      if options[:binstubs_cmd] && spec.executables.empty?
        options = {}
        spec.runtime_dependencies.each do |dep|
          bins = @definition.specs[dep].first.executables
          options[dep.name] = bins unless bins.empty?
        end
        if options.any?
          Bundler.ui.warn "#{spec.name} has no executables, but you may want " \
            "one from a gem it depends on."
          options.each {|name, bins| Bundler.ui.warn "  #{name} has: #{bins.join(", ")}" }
        else
          Bundler.ui.warn "There are no executables for the gem #{spec.name}."
        end
        return
      end

      # double-assignment to avoid warnings about variables that will be used by ERB
      bin_path = Bundler.bin_path
      bin_path = bin_path
      relative_gemfile_path = Bundler.default_gemfile.relative_path_from(bin_path)
      relative_gemfile_path = relative_gemfile_path
      ruby_command = Thor::Util.ruby_command
      ruby_command = ruby_command
      template_path = File.expand_path("../templates/Executable", __FILE__)
      if spec.name == "bundler"
        template_path += ".bundler"
        spec.executables = %(bundle)
      end
      template = File.read(template_path)

      exists = []
      spec.executables.each do |executable|
        binstub_path = "#{bin_path}/#{executable}"
        if File.exist?(binstub_path) && !options[:force]
          exists << executable
          next
        end

        mode = Gem.win_platform? ? "wb:UTF-8" : "w"
        require "erb"
        content = if RUBY_VERSION >= "2.6"
          ERB.new(template, :trim_mode => "-").result(binding)
        else
          ERB.new(template, nil, "-").result(binding)
        end

        File.write(binstub_path, content, :mode => mode, :perm => 0o777 & ~File.umask)
        if Gem.win_platform? || options[:all_platforms]
          prefix = "@ruby -x \"%~f0\" %*\n@exit /b %ERRORLEVEL%\n\n"
          File.write("#{binstub_path}.cmd", prefix + content, :mode => mode)
        end
      end

      if options[:binstubs_cmd] && exists.any?
        case exists.size
        when 1
          Bundler.ui.warn "Skipped #{exists[0]} since it already exists."
        when 2
          Bundler.ui.warn "Skipped #{exists.join(" and ")} since they already exist."
        else
          items = exists[0...-1].empty? ? nil : exists[0...-1].join(", ")
          skipped = [items, exists[-1]].compact.join(" and ")
          Bundler.ui.warn "Skipped #{skipped} since they already exist."
        end
        Bundler.ui.warn "If you want to overwrite skipped stubs, use --force."
      end
    end

    def generate_standalone_bundler_executable_stubs(spec, options = {})
      # double-assignment to avoid warnings about variables that will be used by ERB
      bin_path = Bundler.bin_path
      unless path = Bundler.settings[:path]
        raise "Can't standalone without an explicit path set"
      end
      standalone_path = Bundler.root.join(path).relative_path_from(bin_path)
      standalone_path = standalone_path
      template = File.read(File.expand_path("../templates/Executable.standalone", __FILE__))
      ruby_command = Thor::Util.ruby_command
      ruby_command = ruby_command

      spec.executables.each do |executable|
        next if executable == "bundle"
        executable_path = Pathname(spec.full_gem_path).join(spec.bindir, executable).relative_path_from(bin_path)
        executable_path = executable_path

        mode = Gem.win_platform? ? "wb:UTF-8" : "w"
        require "erb"
        content = if RUBY_VERSION >= "2.6"
          ERB.new(template, :trim_mode => "-").result(binding)
        else
          ERB.new(template, nil, "-").result(binding)
        end

        File.write("#{bin_path}/#{executable}", content, :mode => mode, :perm => 0o755)
        if Gem.win_platform? || options[:all_platforms]
          prefix = "@ruby -x \"%~f0\" %*\n@exit /b %ERRORLEVEL%\n\n"
          File.write("#{bin_path}/#{executable}.cmd", prefix + content, :mode => mode)
        end
      end
    end

    private

    # the order that the resolver provides is significant, since
    # dependencies might affect the installation of a gem.
    # that said, it's a rare situation (other than rake), and parallel
    # installation is SO MUCH FASTER. so we let people opt in.
    def install(options)
      force = options["force"]
      jobs = installation_parallelization(options)
      install_in_parallel jobs, options[:standalone], force
    end

    def installation_parallelization(options)
      if jobs = options.delete(:jobs)
        return jobs
      end

      if jobs = Bundler.settings[:jobs]
        return jobs
      end

      # Parallelization has some issues on Windows, so it's not yet the default
      return 1 if Gem.win_platform?

      Bundler.settings.processor_count
    end

    def load_plugins
      Bundler.rubygems.load_plugins

      requested_path_gems = @definition.requested_specs.select {|s| s.source.is_a?(Source::Path) }
      path_plugin_files = requested_path_gems.map do |spec|
        begin
          Bundler.rubygems.spec_matches_for_glob(spec, "rubygems_plugin#{Bundler.rubygems.suffix_pattern}")
        rescue TypeError
          error_message = "#{spec.name} #{spec.version} has an invalid gemspec"
          raise Gem::InvalidSpecificationException, error_message
        end
      end.flatten
      Bundler.rubygems.load_plugin_files(path_plugin_files)
      Bundler.rubygems.load_env_plugins
    end

    def ensure_specs_are_compatible!
      system_ruby = Bundler::RubyVersion.system
      rubygems_version = Gem::Version.create(Gem::VERSION)
      @definition.specs.each do |spec|
        if required_ruby_version = spec.required_ruby_version
          unless required_ruby_version.satisfied_by?(system_ruby.gem_version)
            raise InstallError, "#{spec.full_name} requires ruby version #{required_ruby_version}, " \
              "which is incompatible with the current version, #{system_ruby}"
          end
        end
        next unless required_rubygems_version = spec.required_rubygems_version
        unless required_rubygems_version.satisfied_by?(rubygems_version)
          raise InstallError, "#{spec.full_name} requires rubygems version #{required_rubygems_version}, " \
            "which is incompatible with the current version, #{rubygems_version}"
        end
      end
    end

    def install_in_parallel(size, standalone, force = false)
      spec_installations = ParallelInstaller.call(self, @definition.specs, size, standalone, force)
      spec_installations.each do |installation|
        post_install_messages[installation.name] = installation.post_install_message if installation.has_post_install_message?
      end
    end

    def create_bundle_path
      SharedHelpers.filesystem_access(Bundler.bundle_path.to_s) do |p|
        Bundler.mkdir_p(p)
      end unless Bundler.bundle_path.exist?
    rescue Errno::EEXIST
      raise PathError, "Could not install to path `#{Bundler.bundle_path}` " \
        "because a file already exists at that path. Either remove or rename the file so the directory can be created."
    end

    # returns whether or not a re-resolve was needed
    def resolve_if_needed(options)
      if !@definition.unlocking? && !options["force"] && !Bundler.settings[:inline] && Bundler.default_lockfile.file?
        return false if @definition.nothing_changed? && !@definition.missing_specs?
      end

      options["local"] ? @definition.resolve_with_cache! : @definition.resolve_remotely!
      true
    end

    def lock(opts = {})
      @definition.lock(Bundler.default_lockfile, opts[:preserve_unknown_sections])
    end
  end
end
PK@H[W�|��0share/gems/gems/bundler-2.2.24/lib/bundler/ui.rbnu�[���# frozen_string_literal: true

module Bundler
  module UI
    autoload :RGProxy, File.expand_path("ui/rg_proxy", __dir__)
    autoload :Shell,   File.expand_path("ui/shell", __dir__)
    autoload :Silent,  File.expand_path("ui/silent", __dir__)
  end
end
PK@H[�h&(��Bshare/gems/gems/bundler-2.2.24/lib/bundler/remote_specification.rbnu�[���# frozen_string_literal: true

module Bundler
  # Represents a lazily loaded gem specification, where the full specification
  # is on the source server in rubygems' "quick" index. The proxy object is to
  # be seeded with what we're given from the source's abbreviated index - the
  # full specification will only be fetched when necessary.
  class RemoteSpecification
    include MatchPlatform
    include Comparable

    attr_reader :name, :version, :platform
    attr_writer :dependencies
    attr_accessor :source, :remote

    def initialize(name, version, platform, spec_fetcher)
      @name         = name
      @version      = Gem::Version.create version
      @platform     = platform
      @spec_fetcher = spec_fetcher
      @dependencies = nil
    end

    # Needed before installs, since the arch matters then and quick
    # specs don't bother to include the arch in the platform string
    def fetch_platform
      @platform = _remote_specification.platform
    end

    def full_name
      if platform == Gem::Platform::RUBY || platform.nil?
        "#{@name}-#{@version}"
      else
        "#{@name}-#{@version}-#{platform}"
      end
    end

    # Compare this specification against another object. Using sort_obj
    # is compatible with Gem::Specification and other Bundler or RubyGems
    # objects. Otherwise, use the default Object comparison.
    def <=>(other)
      if other.respond_to?(:sort_obj)
        sort_obj <=> other.sort_obj
      else
        super
      end
    end

    # Because Rubyforge cannot be trusted to provide valid specifications
    # once the remote gem is downloaded, the backend specification will
    # be swapped out.
    def __swap__(spec)
      raise APIResponseInvalidDependenciesError unless spec.dependencies.all? {|d| d.is_a?(Gem::Dependency) }

      SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies)
      @_remote_specification = spec
    end

    # Create a delegate used for sorting. This strategy is copied from
    # RubyGems 2.23 and ensures that Bundler's specifications can be
    # compared and sorted with RubyGems' own specifications.
    #
    # @see #<=>
    # @see Gem::Specification#sort_obj
    #
    # @return [Array] an object you can use to compare and sort this
    #   specification against other specifications
    def sort_obj
      [@name, @version, @platform == Gem::Platform::RUBY ? -1 : 1]
    end

    def to_s
      "#<#{self.class} name=#{name} version=#{version} platform=#{platform}>"
    end

    def dependencies
      @dependencies ||= begin
        deps = method_missing(:dependencies)

        # allow us to handle when the specs dependencies are an array of array of string
        # in order to delay the crash to `#__swap__` where it results in a friendlier error
        # see https://github.com/rubygems/bundler/issues/5797
        deps = deps.map {|d| d.is_a?(Gem::Dependency) ? d : Gem::Dependency.new(*d) }

        deps
      end
    end

    def git_version
      return unless loaded_from && source.is_a?(Bundler::Source::Git)
      " #{source.revision[0..6]}"
    end

    private

    def to_ary
      nil
    end

    def _remote_specification
      @_remote_specification ||= @spec_fetcher.fetch_spec([@name, @version, @platform])
      @_remote_specification || raise(GemspecError, "Gemspec data for #{full_name} was" \
        " missing from the server! Try installing with `--full-index` as a workaround.")
    end

    def method_missing(method, *args, &blk)
      _remote_specification.send(method, *args, &blk)
    end

    def respond_to?(method, include_all = false)
      super || _remote_specification.respond_to?(method, include_all)
    end
    public :respond_to?
  end
end
PK@H[١�"2)2)5share/gems/gems/bundler-2.2.24/lib/bundler/runtime.rbnu�[���# frozen_string_literal: true

module Bundler
  class Runtime
    include SharedHelpers

    def initialize(root, definition)
      @root = root
      @definition = definition
    end

    def setup(*groups)
      @definition.ensure_equivalent_gemfile_and_lockfile if Bundler.frozen_bundle?

      # Has to happen first
      clean_load_path

      specs = @definition.specs_for(groups)

      SharedHelpers.set_bundle_environment
      Bundler.rubygems.replace_entrypoints(specs)

      # Activate the specs
      load_paths = specs.map do |spec|
        unless spec.loaded_from
          raise GemNotFound, "#{spec.full_name} is missing. Run `bundle install` to get it."
        end

        check_for_activated_spec!(spec)

        Bundler.rubygems.mark_loaded(spec)
        spec.load_paths.reject {|path| $LOAD_PATH.include?(path) }
      end.reverse.flatten

      Bundler.rubygems.add_to_load_path(load_paths)

      setup_manpath

      lock(:preserve_unknown_sections => true)

      self
    end

    def require(*groups)
      groups.map!(&:to_sym)
      groups = [:default] if groups.empty?

      @definition.dependencies.each do |dep|
        # Skip the dependency if it is not in any of the requested groups, or
        # not for the current platform, or doesn't match the gem constraints.
        next unless (dep.groups & groups).any? && dep.should_include?

        required_file = nil

        begin
          # Loop through all the specified autorequires for the
          # dependency. If there are none, use the dependency's name
          # as the autorequire.
          Array(dep.autorequire || dep.name).each do |file|
            # Allow `require: true` as an alias for `require: <name>`
            file = dep.name if file == true
            required_file = file
            begin
              Kernel.require file
            rescue RuntimeError => e
              raise e if e.is_a?(LoadError) # we handle this a little later
              raise Bundler::GemRequireError.new e,
                "There was an error while trying to load the gem '#{file}'."
            end
          end
        rescue LoadError => e
          raise if dep.autorequire || e.path != required_file

          if dep.autorequire.nil? && dep.name.include?("-")
            begin
              namespaced_file = dep.name.tr("-", "/")
              Kernel.require namespaced_file
            rescue LoadError => e
              raise if e.path != namespaced_file
            end
          end
        end
      end
    end

    def self.definition_method(meth)
      define_method(meth) do
        raise ArgumentError, "no definition when calling Runtime##{meth}" unless @definition
        @definition.send(meth)
      end
    end
    private_class_method :definition_method

    definition_method :requested_specs
    definition_method :specs
    definition_method :dependencies
    definition_method :current_dependencies
    definition_method :requires

    def lock(opts = {})
      return if @definition.nothing_changed? && !@definition.unlocking?
      @definition.lock(Bundler.default_lockfile, opts[:preserve_unknown_sections])
    end

    alias_method :gems, :specs

    def cache(custom_path = nil)
      cache_path = Bundler.app_cache(custom_path)
      SharedHelpers.filesystem_access(cache_path) do |p|
        FileUtils.mkdir_p(p)
      end unless File.exist?(cache_path)

      Bundler.ui.info "Updating files in #{Bundler.settings.app_cache_path}"

      specs_to_cache = Bundler.settings[:cache_all_platforms] ? @definition.resolve.materialized_for_all_platforms : specs
      specs_to_cache.each do |spec|
        next if spec.name == "bundler"
        next if spec.source.is_a?(Source::Gemspec)
        spec.source.send(:fetch_gem, spec) if Bundler.settings[:cache_all_platforms] && spec.source.respond_to?(:fetch_gem, true)
        spec.source.cache(spec, custom_path) if spec.source.respond_to?(:cache)
      end

      Dir[cache_path.join("*/.git")].each do |git_dir|
        FileUtils.rm_rf(git_dir)
        FileUtils.touch(File.expand_path("../.bundlecache", git_dir))
      end

      prune_cache(cache_path) unless Bundler.settings[:no_prune]
    end

    def prune_cache(cache_path)
      SharedHelpers.filesystem_access(cache_path) do |p|
        FileUtils.mkdir_p(p)
      end unless File.exist?(cache_path)
      resolve = @definition.resolve
      prune_gem_cache(resolve, cache_path)
      prune_git_and_path_cache(resolve, cache_path)
    end

    def clean(dry_run = false)
      gem_bins             = Dir["#{Gem.dir}/bin/*"]
      git_dirs             = Dir["#{Gem.dir}/bundler/gems/*"]
      git_cache_dirs       = Dir["#{Gem.dir}/cache/bundler/git/*"]
      gem_dirs             = Dir["#{Gem.dir}/gems/*"]
      gem_files            = Dir["#{Gem.dir}/cache/*.gem"]
      gemspec_files        = Dir["#{Gem.dir}/specifications/*.gemspec"]
      extension_dirs       = Dir["#{Gem.dir}/extensions/*/*/*"] + Dir["#{Gem.dir}/bundler/gems/extensions/*/*/*"]
      spec_gem_paths       = []
      # need to keep git sources around
      spec_git_paths       = @definition.spec_git_paths
      spec_git_cache_dirs  = []
      spec_gem_executables = []
      spec_cache_paths     = []
      spec_gemspec_paths   = []
      spec_extension_paths = []
      Bundler.rubygems.add_default_gems_to(specs).values.each do |spec|
        spec_gem_paths << spec.full_gem_path
        # need to check here in case gems are nested like for the rails git repo
        md = %r{(.+bundler/gems/.+-[a-f0-9]{7,12})}.match(spec.full_gem_path)
        spec_git_paths << md[1] if md
        spec_gem_executables << spec.executables.collect do |executable|
          e = "#{Bundler.rubygems.gem_bindir}/#{executable}"
          [e, "#{e}.bat"]
        end
        spec_cache_paths << spec.cache_file
        spec_gemspec_paths << spec.spec_file
        spec_extension_paths << spec.extension_dir if spec.respond_to?(:extension_dir)
        spec_git_cache_dirs << spec.source.cache_path.to_s if spec.source.is_a?(Bundler::Source::Git)
      end
      spec_gem_paths.uniq!
      spec_gem_executables.flatten!

      stale_gem_bins       = gem_bins - spec_gem_executables
      stale_git_dirs       = git_dirs - spec_git_paths - ["#{Gem.dir}/bundler/gems/extensions"]
      stale_git_cache_dirs = git_cache_dirs - spec_git_cache_dirs
      stale_gem_dirs       = gem_dirs - spec_gem_paths
      stale_gem_files      = gem_files - spec_cache_paths
      stale_gemspec_files  = gemspec_files - spec_gemspec_paths
      stale_extension_dirs = extension_dirs - spec_extension_paths

      removed_stale_gem_dirs = stale_gem_dirs.collect {|dir| remove_dir(dir, dry_run) }
      removed_stale_git_dirs = stale_git_dirs.collect {|dir| remove_dir(dir, dry_run) }
      output = removed_stale_gem_dirs + removed_stale_git_dirs

      unless dry_run
        stale_files = stale_gem_bins + stale_gem_files + stale_gemspec_files
        stale_files.each do |file|
          SharedHelpers.filesystem_access(File.dirname(file)) do |_p|
            FileUtils.rm(file) if File.exist?(file)
          end
        end

        stale_dirs = stale_git_cache_dirs + stale_extension_dirs
        stale_dirs.each do |stale_dir|
          SharedHelpers.filesystem_access(stale_dir) do |dir|
            FileUtils.rm_rf(dir) if File.exist?(dir)
          end
        end
      end

      output
    end

    private

    def prune_gem_cache(resolve, cache_path)
      cached = Dir["#{cache_path}/*.gem"]

      cached = cached.delete_if do |path|
        spec = Bundler.rubygems.spec_from_gem path

        resolve.any? do |s|
          s.name == spec.name && s.version == spec.version && !s.source.is_a?(Bundler::Source::Git)
        end
      end

      if cached.any?
        Bundler.ui.info "Removing outdated .gem files from #{Bundler.settings.app_cache_path}"

        cached.each do |path|
          Bundler.ui.info "  * #{File.basename(path)}"
          File.delete(path)
        end
      end
    end

    def prune_git_and_path_cache(resolve, cache_path)
      cached = Dir["#{cache_path}/*/.bundlecache"]

      cached = cached.delete_if do |path|
        name = File.basename(File.dirname(path))

        resolve.any? do |s|
          source = s.source
          source.respond_to?(:app_cache_dirname) && source.app_cache_dirname == name
        end
      end

      if cached.any?
        Bundler.ui.info "Removing outdated git and path gems from #{Bundler.settings.app_cache_path}"

        cached.each do |path|
          path = File.dirname(path)
          Bundler.ui.info "  * #{File.basename(path)}"
          FileUtils.rm_rf(path)
        end
      end
    end

    def setup_manpath
      # Add man/ subdirectories from activated bundles to MANPATH for man(1)
      manuals = $LOAD_PATH.map do |path|
        man_subdir = path.sub(/lib$/, "man")
        man_subdir unless Dir[man_subdir + "/man?/"].empty?
      end.compact

      return if manuals.empty?
      Bundler::SharedHelpers.set_env "MANPATH", manuals.concat(
        ENV["MANPATH"].to_s.split(File::PATH_SEPARATOR)
      ).uniq.join(File::PATH_SEPARATOR)
    end

    def remove_dir(dir, dry_run)
      full_name = Pathname.new(dir).basename.to_s

      parts    = full_name.split("-")
      name     = parts[0..-2].join("-")
      version  = parts.last
      output   = "#{name} (#{version})"

      if dry_run
        Bundler.ui.info "Would have removed #{output}"
      else
        Bundler.ui.info "Removing #{output}"
        FileUtils.rm_rf(dir)
      end

      output
    end

    def check_for_activated_spec!(spec)
      return unless activated_spec = Bundler.rubygems.loaded_specs(spec.name)
      return if activated_spec.version == spec.version

      suggestion = if Bundler.rubygems.spec_default_gem?(activated_spec)
        "Since #{spec.name} is a default gem, you can either remove your dependency on it" \
        " or try updating to a newer version of bundler that supports #{spec.name} as a default gem."
      else
        "Prepending `bundle exec` to your command may solve this."
      end

      e = Gem::LoadError.new "You have already activated #{activated_spec.name} #{activated_spec.version}, " \
                             "but your Gemfile requires #{spec.name} #{spec.version}. #{suggestion}"
      e.name = spec.name
      if e.respond_to?(:requirement=)
        e.requirement = Gem::Requirement.new(spec.version.to_s)
      else
        e.version_requirement = Gem::Requirement.new(spec.version.to_s)
      end
      raise e
    end
  end
end
PK@H[6�e$ll7share/gems/gems/bundler-2.2.24/lib/bundler/deprecate.rbnu�[���# frozen_string_literal: true

begin
  require "rubygems/deprecate"
rescue LoadError
  # it's fine if it doesn't exist on the current RubyGems...
  nil
end

module Bundler
  # If Bundler::Deprecate is an autoload constant, we need to define it
  if defined?(Bundler::Deprecate) && !autoload?(:Deprecate)
    # nothing to do!
  elsif defined? ::Deprecate
    Deprecate = ::Deprecate
  elsif defined? Gem::Deprecate
    Deprecate = Gem::Deprecate
  else
    class Deprecate
    end
  end

  unless Deprecate.respond_to?(:skip_during)
    def Deprecate.skip_during
      original = skip
      self.skip = true
      yield
    ensure
      self.skip = original
    end
  end

  unless Deprecate.respond_to?(:skip)
    def Deprecate.skip
      @skip ||= false
    end
  end

  unless Deprecate.respond_to?(:skip=)
    def Deprecate.skip=(skip)
      @skip = skip
    end
  end
end
PK@H[�ω~%%8share/gems/gems/bundler-2.2.24/lib/bundler/dependency.rbnu�[���# frozen_string_literal: true

require "rubygems/dependency"
require_relative "shared_helpers"
require_relative "rubygems_ext"

module Bundler
  class Dependency < Gem::Dependency
    attr_reader :autorequire
    attr_reader :groups, :platforms, :gemfile, :git, :branch

    PLATFORM_MAP = {
      :ruby     => Gem::Platform::RUBY,
      :ruby_18  => Gem::Platform::RUBY,
      :ruby_19  => Gem::Platform::RUBY,
      :ruby_20  => Gem::Platform::RUBY,
      :ruby_21  => Gem::Platform::RUBY,
      :ruby_22  => Gem::Platform::RUBY,
      :ruby_23  => Gem::Platform::RUBY,
      :ruby_24  => Gem::Platform::RUBY,
      :ruby_25  => Gem::Platform::RUBY,
      :ruby_26  => Gem::Platform::RUBY,
      :mri      => Gem::Platform::RUBY,
      :mri_18   => Gem::Platform::RUBY,
      :mri_19   => Gem::Platform::RUBY,
      :mri_20   => Gem::Platform::RUBY,
      :mri_21   => Gem::Platform::RUBY,
      :mri_22   => Gem::Platform::RUBY,
      :mri_23   => Gem::Platform::RUBY,
      :mri_24   => Gem::Platform::RUBY,
      :mri_25   => Gem::Platform::RUBY,
      :mri_26   => Gem::Platform::RUBY,
      :rbx      => Gem::Platform::RUBY,
      :truffleruby => Gem::Platform::RUBY,
      :jruby    => Gem::Platform::JAVA,
      :jruby_18 => Gem::Platform::JAVA,
      :jruby_19 => Gem::Platform::JAVA,
      :mswin    => Gem::Platform::MSWIN,
      :mswin_18 => Gem::Platform::MSWIN,
      :mswin_19 => Gem::Platform::MSWIN,
      :mswin_20 => Gem::Platform::MSWIN,
      :mswin_21 => Gem::Platform::MSWIN,
      :mswin_22 => Gem::Platform::MSWIN,
      :mswin_23 => Gem::Platform::MSWIN,
      :mswin_24 => Gem::Platform::MSWIN,
      :mswin_25 => Gem::Platform::MSWIN,
      :mswin_26 => Gem::Platform::MSWIN,
      :mswin64    => Gem::Platform::MSWIN64,
      :mswin64_19 => Gem::Platform::MSWIN64,
      :mswin64_20 => Gem::Platform::MSWIN64,
      :mswin64_21 => Gem::Platform::MSWIN64,
      :mswin64_22 => Gem::Platform::MSWIN64,
      :mswin64_23 => Gem::Platform::MSWIN64,
      :mswin64_24 => Gem::Platform::MSWIN64,
      :mswin64_25 => Gem::Platform::MSWIN64,
      :mswin64_26 => Gem::Platform::MSWIN64,
      :mingw    => Gem::Platform::MINGW,
      :mingw_18 => Gem::Platform::MINGW,
      :mingw_19 => Gem::Platform::MINGW,
      :mingw_20 => Gem::Platform::MINGW,
      :mingw_21 => Gem::Platform::MINGW,
      :mingw_22 => Gem::Platform::MINGW,
      :mingw_23 => Gem::Platform::MINGW,
      :mingw_24 => Gem::Platform::MINGW,
      :mingw_25 => Gem::Platform::MINGW,
      :mingw_26 => Gem::Platform::MINGW,
      :x64_mingw    => Gem::Platform::X64_MINGW,
      :x64_mingw_20 => Gem::Platform::X64_MINGW,
      :x64_mingw_21 => Gem::Platform::X64_MINGW,
      :x64_mingw_22 => Gem::Platform::X64_MINGW,
      :x64_mingw_23 => Gem::Platform::X64_MINGW,
      :x64_mingw_24 => Gem::Platform::X64_MINGW,
      :x64_mingw_25 => Gem::Platform::X64_MINGW,
      :x64_mingw_26 => Gem::Platform::X64_MINGW,
    }.freeze

    def initialize(name, version, options = {}, &blk)
      type = options["type"] || :runtime
      super(name, version, type)

      @autorequire    = nil
      @groups         = Array(options["group"] || :default).map(&:to_sym)
      @source         = options["source"]
      @git            = options["git"]
      @branch         = options["branch"]
      @platforms      = Array(options["platforms"])
      @env            = options["env"]
      @should_include = options.fetch("should_include", true)
      @gemfile        = options["gemfile"]

      @autorequire = Array(options["require"] || []) if options.key?("require")
    end

    # Returns the platforms this dependency is valid for, in the same order as
    # passed in the `valid_platforms` parameter
    def gem_platforms(valid_platforms)
      return valid_platforms if @platforms.empty?

      valid_generic_platforms = valid_platforms.map {|p| [p, GemHelpers.generic(p)] }.to_h
      @gem_platforms ||= expanded_platforms.compact.uniq

      filtered_generic_platforms = valid_generic_platforms.values & @gem_platforms
      valid_generic_platforms.select {|_, v| filtered_generic_platforms.include?(v) }.keys
    end

    def expanded_platforms
      @platforms.map {|pl| PLATFORM_MAP[pl] }
    end

    def should_include?
      @should_include && current_env? && current_platform?
    end

    def current_env?
      return true unless @env
      if @env.is_a?(Hash)
        @env.all? do |key, val|
          ENV[key.to_s] && (val.is_a?(String) ? ENV[key.to_s] == val : ENV[key.to_s] =~ val)
        end
      else
        ENV[@env.to_s]
      end
    end

    def current_platform?
      return true if @platforms.empty?
      @platforms.any? do |p|
        Bundler.current_ruby.send("#{p}?")
      end
    end

    def to_lock
      out = super
      out << "!" if source
      out << "\n"
    end

    def specific?
      super
    rescue NoMethodError
      requirement != ">= 0"
    end
  end
end
PK@H[��Ǵ�;share/gems/gems/bundler-2.2.24/lib/bundler/vendored_thor.rbnu�[���# frozen_string_literal: true

module Bundler
  def self.require_thor_actions
    require_relative "vendor/thor/lib/thor/actions"
  end
end
require_relative "vendor/thor/lib/thor"
PK@H[un�uu3share/gems/gems/bundler-2.2.24/lib/bundler/retry.rbnu�[���# frozen_string_literal: true

module Bundler
  # General purpose class for retrying code that may fail
  class Retry
    attr_accessor :name, :total_runs, :current_run

    class << self
      def default_attempts
        default_retries + 1
      end
      alias_method :attempts, :default_attempts

      def default_retries
        Bundler.settings[:retry]
      end
    end

    def initialize(name, exceptions = nil, retries = self.class.default_retries)
      @name = name
      @retries = retries
      @exceptions = Array(exceptions) || []
      @total_runs = @retries + 1 # will run once, then upto attempts.times
    end

    def attempt(&block)
      @current_run = 0
      @failed      = false
      @error       = nil
      run(&block) while keep_trying?
      @result
    end
    alias_method :attempts, :attempt

    private

    def run(&block)
      @failed = false
      @current_run += 1
      @result = block.call
    rescue StandardError => e
      fail_attempt(e)
    end

    def fail_attempt(e)
      @failed = true
      if last_attempt? || @exceptions.any? {|k| e.is_a?(k) }
        Bundler.ui.info "" unless Bundler.ui.debug?
        raise e
      end
      return true unless name
      Bundler.ui.info "" unless Bundler.ui.debug? # Add new line in case dots preceded this
      Bundler.ui.warn "Retrying #{name} due to error (#{current_run.next}/#{total_runs}): #{e.class} #{e.message}", Bundler.ui.debug?
    end

    def keep_trying?
      return true  if current_run.zero?
      return false if last_attempt?
      return true  if @failed
    end

    def last_attempt?
      current_run >= total_runs
    end
  end
end
PK@H[PCm��:share/gems/gems/bundler-2.2.24/lib/bundler/ruby_version.rbnu�[���# frozen_string_literal: true

module Bundler
  class RubyVersion
    attr_reader :versions,
      :patchlevel,
      :engine,
      :engine_versions,
      :gem_version,
      :engine_gem_version

    def initialize(versions, patchlevel, engine, engine_version)
      # The parameters to this method must satisfy the
      # following constraints, which are verified in
      # the DSL:
      #
      # * If an engine is specified, an engine version
      #   must also be specified
      # * If an engine version is specified, an engine
      #   must also be specified
      # * If the engine is "ruby", the engine version
      #   must not be specified, or the engine version
      #   specified must match the version.

      @versions = Array(versions).map do |v|
        op, v = Gem::Requirement.parse(v)
        op == "=" ? v.to_s : "#{op} #{v}"
      end

      @gem_version        = Gem::Requirement.create(@versions.first).requirements.first.last
      @input_engine       = engine && engine.to_s
      @engine             = engine && engine.to_s || "ruby"
      @engine_versions    = (engine_version && Array(engine_version)) || @versions
      @engine_gem_version = Gem::Requirement.create(@engine_versions.first).requirements.first.last
      @patchlevel         = patchlevel
    end

    def to_s(versions = self.versions)
      output = String.new("ruby #{versions_string(versions)}")
      output << "p#{patchlevel}" if patchlevel
      output << " (#{engine} #{versions_string(engine_versions)})" unless engine == "ruby"

      output
    end

    # @private
    PATTERN = /
      ruby\s
      ([\d.]+) # ruby version
      (?:p(-?\d+))? # optional patchlevel
      (?:\s\((\S+)\s(.+)\))? # optional engine info
    /xo.freeze

    # Returns a RubyVersion from the given string.
    # @param [String] the version string to match.
    # @return [RubyVersion,Nil] The version if the string is a valid RubyVersion
    #         description, and nil otherwise.
    def self.from_string(string)
      new($1, $2, $3, $4) if string =~ PATTERN
    end

    def single_version_string
      to_s(gem_version)
    end

    def ==(other)
      versions == other.versions &&
        engine == other.engine &&
        engine_versions == other.engine_versions &&
        patchlevel == other.patchlevel
    end

    def host
      @host ||= [
        RbConfig::CONFIG["host_cpu"],
        RbConfig::CONFIG["host_vendor"],
        RbConfig::CONFIG["host_os"],
      ].join("-")
    end

    # Returns a tuple of these things:
    #   [diff, this, other]
    #   The priority of attributes are
    #   1. engine
    #   2. ruby_version
    #   3. engine_version
    def diff(other)
      raise ArgumentError, "Can only diff with a RubyVersion, not a #{other.class}" unless other.is_a?(RubyVersion)
      if engine != other.engine && @input_engine
        [:engine, engine, other.engine]
      elsif versions.empty? || !matches?(versions, other.gem_version)
        [:version, versions_string(versions), versions_string(other.versions)]
      elsif @input_engine && !matches?(engine_versions, other.engine_gem_version)
        [:engine_version, versions_string(engine_versions), versions_string(other.engine_versions)]
      elsif patchlevel && (!patchlevel.is_a?(String) || !other.patchlevel.is_a?(String) || !matches?(patchlevel, other.patchlevel))
        [:patchlevel, patchlevel, other.patchlevel]
      end
    end

    def versions_string(versions)
      Array(versions).join(", ")
    end

    def self.system
      ruby_engine = RUBY_ENGINE.dup
      ruby_version = ENV.fetch("BUNDLER_SPEC_RUBY_VERSION") { RUBY_VERSION }.dup
      ruby_engine_version = RUBY_ENGINE_VERSION.dup
      patchlevel = RUBY_PATCHLEVEL.to_s

      @ruby_version ||= RubyVersion.new(ruby_version, patchlevel, ruby_engine, ruby_engine_version)
    end

    def to_gem_version_with_patchlevel
      @gem_version_with_patch ||= begin
        Gem::Version.create("#{@gem_version}.#{@patchlevel}")
      rescue ArgumentError
        @gem_version
      end
    end

    def exact?
      return @exact if defined?(@exact)
      @exact = versions.all? {|v| Gem::Requirement.create(v).exact? }
    end

    private

    def matches?(requirements, version)
      # Handles RUBY_PATCHLEVEL of -1 for instances like ruby-head
      return requirements == version if requirements.to_s == "-1" || version.to_s == "-1"

      Array(requirements).all? do |requirement|
        Gem::Requirement.create(requirement).satisfied_by?(Gem::Version.create(version))
      end
    end
  end
end
PK@H[��[5��Ashare/gems/gems/bundler-2.2.24/lib/bundler/vendored_persistent.rbnu�[���# frozen_string_literal: true

module Bundler
  module Persistent
    module Net
      module HTTP
      end
    end
  end
end
require_relative "vendor/net-http-persistent/lib/net/http/persistent"

module Bundler
  class PersistentHTTP < Persistent::Net::HTTP::Persistent
    def connection_for(uri)
      super(uri) do |connection|
        result = yield connection
        warn_old_tls_version_rubygems_connection(uri, connection)
        result
      end
    end

    def warn_old_tls_version_rubygems_connection(uri, connection)
      return unless connection.http.use_ssl?
      return unless (uri.host || "").end_with?("rubygems.org")

      socket = connection.instance_variable_get(:@socket)
      return unless socket
      socket_io = socket.io
      return unless socket_io.respond_to?(:ssl_version)
      ssl_version = socket_io.ssl_version

      case ssl_version
      when /TLSv([\d\.]+)/
        version = Gem::Version.new($1)
        if version < Gem::Version.new("1.2")
          Bundler.ui.warn \
            "Warning: Your Ruby version is compiled against a copy of OpenSSL that is very old. " \
            "Starting in January 2018, RubyGems.org will refuse connection requests from these " \
            "very old versions of OpenSSL. If you will need to continue installing gems after " \
            "January 2018, please follow this guide to upgrade: http://ruby.to/tls-outdated.",
            :wrap => true
        end
      end
    end
  end
end
PK@H[��(|{{@share/gems/gems/bundler-2.2.24/lib/bundler/stub_specification.rbnu�[���# frozen_string_literal: true

module Bundler
  class StubSpecification < RemoteSpecification
    def self.from_stub(stub)
      return stub if stub.is_a?(Bundler::StubSpecification)
      spec = new(stub.name, stub.version, stub.platform, nil)
      spec.stub = stub
      spec
    end

    attr_accessor :stub, :ignored

    def source=(source)
      super
      # Stub has no concept of source, which means that extension_dir may be wrong
      # This is the case for git-based gems. So, instead manually assign the extension dir
      return unless source.respond_to?(:extension_dir_name)
      path = File.join(stub.extensions_dir, source.extension_dir_name)
      stub.extension_dir = File.expand_path(path)
    end

    def to_yaml
      _remote_specification.to_yaml
    end

    # @!group Stub Delegates

    def manually_installed?
      # This is for manually installed gems which are gems that were fixed in place after a
      # failed installation. Once the issue was resolved, the user then manually created
      # the gem specification using the instructions provided by `gem help install`
      installed_by_version == Gem::Version.new(0)
    end

    # This is defined directly to avoid having to loading the full spec
    def missing_extensions?
      return false if default_gem?
      return false if extensions.empty?
      return false if File.exist? gem_build_complete_path
      return false if manually_installed?

      true
    end

    def activated
      stub.activated
    end

    def activated=(activated)
      stub.instance_variable_set(:@activated, activated)
    end

    def extensions
      stub.extensions
    end

    def gem_build_complete_path
      File.join(extension_dir, "gem.build_complete")
    end

    def default_gem?
      stub.default_gem?
    end

    def full_gem_path
      # deleted gems can have their stubs return nil, so in that case grab the
      # expired path from the full spec
      stub.full_gem_path || method_missing(:full_gem_path)
    end

    def full_require_paths
      stub.full_require_paths
    end

    def load_paths
      full_require_paths
    end

    def loaded_from
      stub.loaded_from
    end

    def matches_for_glob(glob)
      stub.matches_for_glob(glob)
    end

    def raw_require_paths
      stub.raw_require_paths
    end

    private

    def _remote_specification
      @_remote_specification ||= begin
        rs = stub.to_spec
        if rs.equal?(self) # happens when to_spec gets the spec from Gem.loaded_specs
          rs = Gem::Specification.load(loaded_from)
          Bundler.rubygems.stub_set_spec(stub, rs)
        end

        unless rs
          raise GemspecError, "The gemspec for #{full_name} at #{loaded_from}" \
            " was missing or broken. Try running `gem pristine #{name} -v #{version}`" \
            " to fix the cached spec."
        end

        rs.source = source

        rs
      end
    end
  end
end
PK@H[�`f�<�<6share/gems/gems/bundler-2.2.24/lib/bundler/resolver.rbnu�[���# frozen_string_literal: true

module Bundler
  class Resolver
    require_relative "vendored_molinillo"
    require_relative "resolver/spec_group"

    include GemHelpers

    # Figures out the best possible configuration of gems that satisfies
    # the list of passed dependencies and any child dependencies without
    # causing any gem activation errors.
    #
    # ==== Parameters
    # *dependencies<Gem::Dependency>:: The list of dependencies to resolve
    #
    # ==== Returns
    # <GemBundle>,nil:: If the list of dependencies can be resolved, a
    #   collection of gemspecs is returned. Otherwise, nil is returned.
    def self.resolve(requirements, source_requirements = {}, base = [], gem_version_promoter = GemVersionPromoter.new, additional_base_requirements = [], platforms = nil)
      base = SpecSet.new(base) unless base.is_a?(SpecSet)
      resolver = new(source_requirements, base, gem_version_promoter, additional_base_requirements, platforms)
      result = resolver.start(requirements)
      SpecSet.new(SpecSet.new(result).for(requirements.reject{|dep| dep.name.end_with?("\0") }))
    end

    def initialize(source_requirements, base, gem_version_promoter, additional_base_requirements, platforms)
      @source_requirements = source_requirements
      @base = base
      @resolver = Molinillo::Resolver.new(self, self)
      @search_for = {}
      @base_dg = Molinillo::DependencyGraph.new
      aggregate_global_source = @source_requirements[:default].is_a?(Source::RubygemsAggregate)
      @base.each do |ls|
        dep = Dependency.new(ls.name, ls.version)
        ls.source = source_for(ls.name) unless aggregate_global_source
        @base_dg.add_vertex(ls.name, DepProxy.get_proxy(dep, ls.platform), true)
      end
      additional_base_requirements.each {|d| @base_dg.add_vertex(d.name, d) }
      @platforms = platforms.reject {|p| p != Gem::Platform::RUBY && (platforms - [p]).any? {|pl| generic(pl) == p } }
      @resolving_only_for_ruby = platforms == [Gem::Platform::RUBY]
      @gem_version_promoter = gem_version_promoter
      @use_gvp = Bundler.feature_flag.use_gem_version_promoter_for_major_updates? || !@gem_version_promoter.major?
    end

    def start(requirements)
      @gem_version_promoter.prerelease_specified = @prerelease_specified = {}
      requirements.each {|dep| @prerelease_specified[dep.name] ||= dep.prerelease? }

      verify_gemfile_dependencies_are_found!(requirements)
      dg = @resolver.resolve(requirements, @base_dg)
      dg.
        map(&:payload).
        reject {|sg| sg.name.end_with?("\0") }.
        map(&:to_specs).
        flatten
    rescue Molinillo::VersionConflict => e
      message = version_conflict_message(e)
      raise VersionConflict.new(e.conflicts.keys.uniq, message)
    rescue Molinillo::CircularDependencyError => e
      names = e.dependencies.sort_by(&:name).map {|d| "gem '#{d.name}'" }
      raise CyclicDependencyError, "Your bundle requires gems that depend" \
        " on each other, creating an infinite loop. Please remove" \
        " #{names.count > 1 ? "either " : ""}#{names.join(" or ")}" \
        " and try again."
    end

    include Molinillo::UI

    # Conveys debug information to the user.
    #
    # @param [Integer] depth the current depth of the resolution process.
    # @return [void]
    def debug(depth = 0)
      return unless debug?
      debug_info = yield
      debug_info = debug_info.inspect unless debug_info.is_a?(String)
      puts debug_info.split("\n").map {|s| depth == 0 ? "BUNDLER: #{s}" : "BUNDLER(#{depth}): #{s}" }
    end

    def debug?
      return @debug_mode if defined?(@debug_mode)
      @debug_mode =
        ENV["BUNDLER_DEBUG_RESOLVER"] ||
        ENV["BUNDLER_DEBUG_RESOLVER_TREE"] ||
        ENV["DEBUG_RESOLVER"] ||
        ENV["DEBUG_RESOLVER_TREE"] ||
        false
    end

    def before_resolution
      Bundler.ui.info "Resolving dependencies...", debug?
    end

    def after_resolution
      Bundler.ui.info ""
    end

    def indicate_progress
      Bundler.ui.info ".", false unless debug?
    end

    include Molinillo::SpecificationProvider

    def dependencies_for(specification)
      specification.dependencies_for_activated_platforms
    end

    def search_for(dependency_proxy)
      platform = dependency_proxy.__platform
      dependency = dependency_proxy.dep
      name = dependency.name
      @search_for[dependency_proxy] ||= begin
        results = results_for(dependency, @base[name])

        if vertex = @base_dg.vertex_named(name)
          locked_requirement = vertex.payload.requirement
        end

        if !@prerelease_specified[name] && (!@use_gvp || locked_requirement.nil?)
          # Move prereleases to the beginning of the list, so they're considered
          # last during resolution.
          pre, results = results.partition {|spec| spec.version.prerelease? }
          results = pre + results
        end

        spec_groups = if results.any?
          nested = []
          results.each do |spec|
            version, specs = nested.last
            if version == spec.version
              specs << spec
            else
              nested << [spec.version, [spec]]
            end
          end
          nested.reduce([]) do |groups, (version, specs)|
            next groups if locked_requirement && !locked_requirement.satisfied_by?(version)

            specs_by_platform = Hash.new do |current_specs, current_platform|
              current_specs[current_platform] = select_best_platform_match(specs, current_platform)
            end

            spec_group_ruby = SpecGroup.create_for(specs_by_platform, [Gem::Platform::RUBY], Gem::Platform::RUBY)
            groups << spec_group_ruby if spec_group_ruby

            next groups if @resolving_only_for_ruby

            spec_group = SpecGroup.create_for(specs_by_platform, @platforms, platform)
            groups << spec_group if spec_group

            groups
          end
        else
          []
        end
        # GVP handles major itself, but it's still a bit risky to trust it with it
        # until we get it settled with new behavior. For 2.x it can take over all cases.
        if !@use_gvp
          spec_groups
        else
          @gem_version_promoter.sort_versions(dependency, spec_groups)
        end
      end
    end

    def index_for(dependency)
      source_for(dependency.name).specs
    end

    def source_for(name)
      @source_requirements[name] || @source_requirements[:default]
    end

    def results_for(dependency, base)
      index_for(dependency).search(dependency, base)
    end

    def name_for(dependency)
      dependency.name
    end

    def name_for_explicit_dependency_source
      Bundler.default_gemfile.basename.to_s
    rescue StandardError
      "Gemfile"
    end

    def name_for_locking_dependency_source
      Bundler.default_lockfile.basename.to_s
    rescue StandardError
      "Gemfile.lock"
    end

    def requirement_satisfied_by?(requirement, activated, spec)
      requirement.matches_spec?(spec) || spec.source.is_a?(Source::Gemspec)
    end

    def dependencies_equal?(dependencies, other_dependencies)
      dependencies.map(&:dep) == other_dependencies.map(&:dep)
    end

    def sort_dependencies(dependencies, activated, conflicts)
      dependencies.sort_by do |dependency|
        name = name_for(dependency)
        vertex = activated.vertex_named(name)
        [
          @base_dg.vertex_named(name) ? 0 : 1,
          vertex.payload ? 0 : 1,
          vertex.root? ? 0 : 1,
          amount_constrained(dependency),
          conflicts[name] ? 0 : 1,
          vertex.payload ? 0 : search_for(dependency).count,
          self.class.platform_sort_key(dependency.__platform),
        ]
      end
    end

    def self.platform_sort_key(platform)
      # Prefer specific platform to not specific platform
      return ["99-LAST", "", "", ""] if Gem::Platform::RUBY == platform
      ["00", *platform.to_a.map {|part| part || "" }]
    end

    private

    # returns an integer \in (-\infty, 0]
    # a number closer to 0 means the dependency is less constraining
    #
    # dependencies w/ 0 or 1 possibilities (ignoring version requirements)
    # are given very negative values, so they _always_ sort first,
    # before dependencies that are unconstrained
    def amount_constrained(dependency)
      @amount_constrained ||= {}
      @amount_constrained[dependency.name] ||= begin
        if (base = @base[dependency.name]) && !base.empty?
          dependency.requirement.satisfied_by?(base.first.version) ? 0 : 1
        else
          all = index_for(dependency).search(dependency.name).size

          if all <= 1
            all - 1_000_000
          else
            search = search_for(dependency)
            search = @prerelease_specified[dependency.name] ? search.count : search.count {|s| !s.version.prerelease? }
            search - all
          end
        end
      end
    end

    def verify_gemfile_dependencies_are_found!(requirements)
      requirements.each do |requirement|
        name = requirement.name
        next if name == "bundler"
        next unless search_for(requirement).empty?

        cache_message = begin
                            " or in gems cached in #{Bundler.settings.app_cache_path}" if Bundler.app_cache.exist?
                          rescue GemfileNotFound
                            nil
                          end

        if (base = @base[name]) && !base.empty?
          version = base.first.version
          message = "You have requested:\n" \
            "  #{name} #{requirement.requirement}\n\n" \
            "The bundle currently has #{name} locked at #{version}.\n" \
            "Try running `bundle update #{name}`\n\n" \
            "If you are updating multiple gems in your Gemfile at once,\n" \
            "try passing them all to `bundle update`"
        elsif source = @source_requirements[name]
          specs = source.specs.search(name)
          versions_with_platforms = specs.map {|s| [s.version, s.platform] }
          message = String.new("Could not find gem '#{SharedHelpers.pretty_dependency(requirement)}' in #{source}#{cache_message}.\n")
          message << if versions_with_platforms.any?
            "The source contains the following versions of '#{name}': #{formatted_versions_with_platforms(versions_with_platforms)}"
          else
            "The source does not contain any versions of '#{name}'"
          end
        else
          message = "Could not find gem '#{SharedHelpers.pretty_dependency(requirement)}' in any of the gem sources " \
            "listed in your Gemfile#{cache_message}."
        end
        raise GemNotFound, message
      end
    end

    def formatted_versions_with_platforms(versions_with_platforms)
      version_platform_strs = versions_with_platforms.map do |vwp|
        version = vwp.first
        platform = vwp.last
        version_platform_str = String.new(version.to_s)
        version_platform_str << " #{platform}" unless platform.nil? || platform == Gem::Platform::RUBY
        version_platform_str
      end
      version_platform_strs.join(", ")
    end

    def version_conflict_message(e)
      # only show essential conflicts, if possible
      conflicts = e.conflicts.dup

      if conflicts["bundler"]
        conflicts.replace("bundler" => conflicts["bundler"])
      else
        conflicts.delete_if do |_name, conflict|
          deps = conflict.requirement_trees.map(&:last).flatten(1)
          !Bundler::VersionRanges.empty?(*Bundler::VersionRanges.for_many(deps.map(&:requirement)))
        end
      end

      e = Molinillo::VersionConflict.new(conflicts, e.specification_provider) unless conflicts.empty?

      solver_name = "Bundler"
      possibility_type = "gem"
      e.message_with_trees(
        :solver_name => solver_name,
        :possibility_type => possibility_type,
        :reduce_trees => lambda do |trees|
          # called first, because we want to reduce the amount of work required to find maximal empty sets
          trees = trees.uniq {|t| t.flatten.map {|dep| [dep.name, dep.requirement] } }

          # bail out if tree size is too big for Array#combination to make any sense
          return trees if trees.size > 15
          maximal = 1.upto(trees.size).map do |size|
            trees.map(&:last).flatten(1).combination(size).to_a
          end.flatten(1).select do |deps|
            Bundler::VersionRanges.empty?(*Bundler::VersionRanges.for_many(deps.map(&:requirement)))
          end.min_by(&:size)

          trees.reject! {|t| !maximal.include?(t.last) } if maximal

          trees.sort_by {|t| t.reverse.map(&:name) }
        end,
        :printable_requirement => lambda {|req| SharedHelpers.pretty_dependency(req) },
        :additional_message_for_conflict => lambda do |o, name, conflict|
          if name == "bundler"
            o << %(\n  Current Bundler version:\n    bundler (#{Bundler::VERSION}))

            conflict_dependency = conflict.requirement
            conflict_requirement = conflict_dependency.requirement
            other_bundler_required = !conflict_requirement.satisfied_by?(Gem::Version.new(Bundler::VERSION))

            if other_bundler_required
              o << "\n\n"

              candidate_specs = source_for(:default_bundler).specs.search(conflict_dependency)
              if candidate_specs.any?
                target_version = candidate_specs.last.version
                new_command = [File.basename($PROGRAM_NAME), "_#{target_version}_", *ARGV].join(" ")
                o << "Your bundle requires a different version of Bundler than the one you're running.\n"
                o << "Install the necessary version with `gem install bundler:#{target_version}` and rerun bundler using `#{new_command}`\n"
              else
                o << "Your bundle requires a different version of Bundler than the one you're running, and that version could not be found.\n"
              end
            end
          elsif conflict.locked_requirement
            o << "\n"
            o << %(Running `bundle update` will rebuild your snapshot from scratch, using only\n)
            o << %(the gems in your Gemfile, which may resolve the conflict.\n)
          elsif !conflict.existing
            o << "\n"

            relevant_source = conflict.requirement.source || source_for(name)

            metadata_requirement = name.end_with?("\0")

            o << "Could not find gem '" unless metadata_requirement
            o << SharedHelpers.pretty_dependency(conflict.requirement)
            o << "'" unless metadata_requirement
            if conflict.requirement_trees.first.size > 1
              o << ", which is required by "
              o << "gem '#{SharedHelpers.pretty_dependency(conflict.requirement_trees.first[-2])}',"
            end
            o << " "

            o << if metadata_requirement
              "is not available in #{relevant_source}"
            else
              "in #{relevant_source}.\n"
            end
          end
        end,
        :version_for_spec => lambda {|spec| spec.version },
        :incompatible_version_message_for_conflict => lambda do |name, _conflict|
          if name.end_with?("\0")
            %(#{solver_name} found conflicting requirements for the #{name} version:)
          else
            %(#{solver_name} could not find compatible versions for #{possibility_type} "#{name}":)
          end
        end
      )
    end
  end
end
PK@H[	G���7share/gems/gems/bundler-2.2.24/lib/bundler/dep_proxy.rbnu�[���# frozen_string_literal: true

module Bundler
  class DepProxy
    attr_reader :__platform, :dep

    @proxies = {}

    def self.get_proxy(dep, platform)
      @proxies[[dep, platform]] ||= new(dep, platform).freeze
    end

    def initialize(dep, platform)
      @dep = dep
      @__platform = platform
    end

    private_class_method :new

    alias_method :eql?, :==

    def type
      @dep.type
    end

    def name
      @dep.name
    end

    def requirement
      @dep.requirement
    end

    def to_s
      s = name.dup
      s << " (#{requirement})" unless requirement == Gem::Requirement.default
      s << " #{__platform}" unless __platform == Gem::Platform::RUBY
      s
    end

    def dup
      raise NoMethodError.new("DepProxy cannot be duplicated")
    end

    def clone
      raise NoMethodError.new("DepProxy cannot be cloned")
    end

    private

    def method_missing(*args, &blk)
      @dep.send(*args, &blk)
    end
  end
end
PK@H[Hu��""3share/gems/gems/bundler-2.2.24/lib/bundler/setup.rbnu�[���# frozen_string_literal: true

require_relative "shared_helpers"

if Bundler::SharedHelpers.in_bundle?
  require_relative "../bundler"

  if STDOUT.tty? || ENV["BUNDLER_FORCE_TTY"]
    begin
      Bundler.ui.silence { Bundler.setup }
    rescue Bundler::BundlerError => e
      Bundler.ui.warn "\e[31m#{e.message}\e[0m"
      Bundler.ui.warn e.backtrace.join("\n") if ENV["DEBUG"]
      if e.is_a?(Bundler::GemNotFound)
        Bundler.ui.warn "\e[33mRun `bundle install` to install missing gems.\e[0m"
      end
      exit e.status_code
    end
  else
    Bundler.ui.silence { Bundler.setup }
  end

  # We might be in the middle of shelling out to rubygems
  # (RUBYOPT=-rbundler/setup), so we need to give rubygems the opportunity of
  # not being silent.
  Gem::DefaultUserInteraction.ui = nil
end
PK@H[0�ee@share/gems/gems/bundler-2.2.24/lib/bundler/vendored_fileutils.rbnu�[���# frozen_string_literal: true

module Bundler; end
require_relative "vendor/fileutils/lib/fileutils"
PK@H[P����@share/gems/gems/bundler-2.2.24/lib/bundler/lazy_specification.rbnu�[���# frozen_string_literal: true

require_relative "match_platform"

module Bundler
  class LazySpecification
    include MatchPlatform

    attr_reader :name, :version, :dependencies, :platform
    attr_accessor :source, :remote

    def initialize(name, version, platform, source = nil)
      @name          = name
      @version       = version
      @dependencies  = []
      @platform      = platform || Gem::Platform::RUBY
      @source        = source
      @specification = nil
    end

    def full_name
      if platform == Gem::Platform::RUBY || platform.nil?
        "#{@name}-#{@version}"
      else
        "#{@name}-#{@version}-#{platform}"
      end
    end

    def ==(other)
      identifier == other.identifier
    end

    def eql?(other)
      identifier.eql?(other.identifier)
    end

    def hash
      identifier.hash
    end

    def satisfies?(dependency)
      @name == dependency.name && dependency.requirement.satisfied_by?(Gem::Version.new(@version))
    end

    def to_lock
      out = String.new

      if platform == Gem::Platform::RUBY || platform.nil?
        out << "    #{name} (#{version})\n"
      else
        out << "    #{name} (#{version}-#{platform})\n"
      end

      dependencies.sort_by(&:to_s).uniq.each do |dep|
        next if dep.type == :development
        out << "    #{dep.to_lock}\n"
      end

      out
    end

    def __materialize__
      @specification = if source.is_a?(Source::Gemspec) && source.gemspec.name == name
        source.gemspec.tap {|s| s.source = source }
      else
        search_object = if source.is_a?(Source::Path)
          Dependency.new(name, version)
        else
          ruby_platform_materializes_to_ruby_platform? ? self : Dependency.new(name, version)
        end
        platform_object = Gem::Platform.new(platform)
        candidates = source.specs.search(search_object)
        same_platform_candidates = candidates.select do |spec|
          MatchPlatform.platforms_match?(spec.platform, platform_object)
        end
        installable_candidates = same_platform_candidates.select do |spec|
          !spec.is_a?(EndpointSpecification) ||
            (spec.required_ruby_version.satisfied_by?(Gem.ruby_version) &&
              spec.required_rubygems_version.satisfied_by?(Gem.rubygems_version))
        end
        search = installable_candidates.last || same_platform_candidates.last
        search.dependencies = dependencies if search && (search.is_a?(RemoteSpecification) || search.is_a?(EndpointSpecification))
        search
      end
    end

    def respond_to?(*args)
      super || @specification ? @specification.respond_to?(*args) : nil
    end

    def to_s
      @__to_s ||= if platform == Gem::Platform::RUBY || platform.nil?
        "#{name} (#{version})"
      else
        "#{name} (#{version}-#{platform})"
      end
    end

    def identifier
      @__identifier ||= [name, version, platform_string]
    end

    def git_version
      return unless source.is_a?(Bundler::Source::Git)
      " #{source.revision[0..6]}"
    end

    protected

    def platform_string
      platform_string = platform.to_s
      platform_string == Index::RUBY ? Index::NULL : platform_string
    end

    private

    def to_ary
      nil
    end

    def method_missing(method, *args, &blk)
      raise "LazySpecification has not been materialized yet (calling :#{method} #{args.inspect})" unless @specification

      return super unless respond_to?(method)

      @specification.send(method, *args, &blk)
    end

    #
    # For backwards compatibility with existing lockfiles, if the most specific
    # locked platform is RUBY, we keep the previous behaviour of resolving the
    # best platform variant at materiliazation time. For previous bundler
    # versions (before 2.2.0) this was always the case (except when the lockfile
    # only included non-ruby platforms), but we're also keeping this behaviour
    # on newer bundlers unless users generate the lockfile from scratch or
    # explicitly add a more specific platform.
    #
    def ruby_platform_materializes_to_ruby_platform?
      !Bundler.most_specific_locked_platform?(Gem::Platform::RUBY) || Bundler.settings[:force_ruby_platform]
    end
  end
end
PK@H[�xsn}*}*4share/gems/gems/bundler-2.2.24/lib/bundler/plugin.rbnu�[���# frozen_string_literal: true

require_relative "plugin/api"

module Bundler
  module Plugin
    autoload :DSL,        File.expand_path("plugin/dsl", __dir__)
    autoload :Events,     File.expand_path("plugin/events", __dir__)
    autoload :Index,      File.expand_path("plugin/index", __dir__)
    autoload :Installer,  File.expand_path("plugin/installer", __dir__)
    autoload :SourceList, File.expand_path("plugin/source_list", __dir__)

    class MalformattedPlugin < PluginError; end
    class UndefinedCommandError < PluginError; end
    class UnknownSourceError < PluginError; end

    PLUGIN_FILE_NAME = "plugins.rb".freeze

    module_function

    def reset!
      instance_variables.each {|i| remove_instance_variable(i) }

      @sources = {}
      @commands = {}
      @hooks_by_event = Hash.new {|h, k| h[k] = [] }
      @loaded_plugin_names = []
    end

    reset!

    # Installs a new plugin by the given name
    #
    # @param [Array<String>] names the name of plugin to be installed
    # @param [Hash] options various parameters as described in description.
    #               Refer to cli/plugin for available options
    def install(names, options)
      specs = Installer.new.install(names, options)

      save_plugins names, specs
    rescue PluginError => e
      specs_to_delete = specs.select {|k, _v| names.include?(k) && !index.commands.values.include?(k) }
      specs_to_delete.each_value {|spec| Bundler.rm_rf(spec.full_gem_path) }

      names_list = names.map {|name| "`#{name}`" }.join(", ")
      Bundler.ui.error "Failed to install the following plugins: #{names_list}. The underlying error was: #{e.message}.\n #{e.backtrace.join("\n ")}"
    end

    # Uninstalls plugins by the given names
    #
    # @param [Array<String>] names the names of plugins to be uninstalled
    def uninstall(names, options)
      if names.empty? && !options[:all]
        Bundler.ui.error "No plugins to uninstall. Specify at least 1 plugin to uninstall.\n"\
          "Use --all option to uninstall all the installed plugins."
        return
      end

      names = index.installed_plugins if options[:all]
      if names.any?
        names.each do |name|
          if index.installed?(name)
            Bundler.rm_rf(index.plugin_path(name))
            index.unregister_plugin(name)
            Bundler.ui.info "Uninstalled plugin #{name}"
          else
            Bundler.ui.error "Plugin #{name} is not installed \n"
          end
        end
      else
        Bundler.ui.info "No plugins installed"
      end
    end

    # List installed plugins and commands
    #
    def list
      installed_plugins = index.installed_plugins
      if installed_plugins.any?
        output = String.new
        installed_plugins.each do |plugin|
          output << "#{plugin}\n"
          output << "-----\n"
          index.plugin_commands(plugin).each do |command|
            output << "  #{command}\n"
          end
          output << "\n"
        end
      else
        output = "No plugins installed"
      end
      Bundler.ui.info output
    end

    # Evaluates the Gemfile with a limited DSL and installs the plugins
    # specified by plugin method
    #
    # @param [Pathname] gemfile path
    # @param [Proc] block that can be evaluated for (inline) Gemfile
    def gemfile_install(gemfile = nil, &inline)
      Bundler.settings.temporary(:frozen => false, :deployment => false) do
        builder = DSL.new
        if block_given?
          builder.instance_eval(&inline)
        else
          builder.eval_gemfile(gemfile)
        end
        builder.check_primary_source_safety
        definition = builder.to_definition(nil, true)

        return if definition.dependencies.empty?

        plugins = definition.dependencies.map(&:name).reject {|p| index.installed? p }
        installed_specs = Installer.new.install_definition(definition)

        save_plugins plugins, installed_specs, builder.inferred_plugins
      end
    rescue RuntimeError => e
      unless e.is_a?(GemfileError)
        Bundler.ui.error "Failed to install plugin: #{e.message}\n  #{e.backtrace[0]}"
      end
      raise
    end

    # The index object used to store the details about the plugin
    def index
      @index ||= Index.new
    end

    # The directory root for all plugin related data
    #
    # If run in an app, points to local root, in app_config_path
    # Otherwise, points to global root, in Bundler.user_bundle_path("plugin")
    def root
      @root ||= if SharedHelpers.in_bundle?
        local_root
      else
        global_root
      end
    end

    def local_root
      Bundler.app_config_path.join("plugin")
    end

    # The global directory root for all plugin related data
    def global_root
      Bundler.user_bundle_path("plugin")
    end

    # The cache directory for plugin stuffs
    def cache
      @cache ||= root.join("cache")
    end

    # To be called via the API to register to handle a command
    def add_command(command, cls)
      @commands[command] = cls
    end

    # Checks if any plugin handles the command
    def command?(command)
      !index.command_plugin(command).nil?
    end

    # To be called from Cli class to pass the command and argument to
    # appropriate plugin class
    def exec_command(command, args)
      raise UndefinedCommandError, "Command `#{command}` not found" unless command? command

      load_plugin index.command_plugin(command) unless @commands.key? command

      @commands[command].new.exec(command, args)
    end

    # To be called via the API to register to handle a source plugin
    def add_source(source, cls)
      @sources[source] = cls
    end

    # Checks if any plugin declares the source
    def source?(name)
      !index.source_plugin(name.to_s).nil?
    end

    # @return [Class] that handles the source. The class includes API::Source
    def source(name)
      raise UnknownSourceError, "Source #{name} not found" unless source? name

      load_plugin(index.source_plugin(name)) unless @sources.key? name

      @sources[name]
    end

    # @param [Hash] The options that are present in the lock file
    # @return [API::Source] the instance of the class that handles the source
    #                       type passed in locked_opts
    def source_from_lock(locked_opts)
      src = source(locked_opts["type"])

      src.new(locked_opts.merge("uri" => locked_opts["remote"]))
    end

    # To be called via the API to register a hooks and corresponding block that
    # will be called to handle the hook
    def add_hook(event, &block)
      unless Events.defined_event?(event)
        raise ArgumentError, "Event '#{event}' not defined in Bundler::Plugin::Events"
      end
      @hooks_by_event[event.to_s] << block
    end

    # Runs all the hooks that are registered for the passed event
    #
    # It passes the passed arguments and block to the block registered with
    # the api.
    #
    # @param [String] event
    def hook(event, *args, &arg_blk)
      return unless Bundler.feature_flag.plugins?
      unless Events.defined_event?(event)
        raise ArgumentError, "Event '#{event}' not defined in Bundler::Plugin::Events"
      end

      plugins = index.hook_plugins(event)
      return unless plugins.any?

      (plugins - @loaded_plugin_names).each {|name| load_plugin(name) }

      @hooks_by_event[event].each {|blk| blk.call(*args, &arg_blk) }
    end

    # currently only intended for specs
    #
    # @return [String, nil] installed path
    def installed?(plugin)
      Index.new.installed?(plugin)
    end

    # Post installation processing and registering with index
    #
    # @param [Array<String>] plugins list to be installed
    # @param [Hash] specs of plugins mapped to installation path (currently they
    #               contain all the installed specs, including plugins)
    # @param [Array<String>] names of inferred source plugins that can be ignored
    def save_plugins(plugins, specs, optional_plugins = [])
      plugins.each do |name|
        spec = specs[name]
        validate_plugin! Pathname.new(spec.full_gem_path)
        installed = register_plugin(name, spec, optional_plugins.include?(name))
        Bundler.ui.info "Installed plugin #{name}" if installed
      end
    end

    # Checks if the gem is good to be a plugin
    #
    # At present it only checks whether it contains plugins.rb file
    #
    # @param [Pathname] plugin_path the path plugin is installed at
    # @raise [MalformattedPlugin] if plugins.rb file is not found
    def validate_plugin!(plugin_path)
      plugin_file = plugin_path.join(PLUGIN_FILE_NAME)
      raise MalformattedPlugin, "#{PLUGIN_FILE_NAME} was not found in the plugin." unless plugin_file.file?
    end

    # Runs the plugins.rb file in an isolated namespace, records the plugin
    # actions it registers for and then passes the data to index to be stored.
    #
    # @param [String] name the name of the plugin
    # @param [Specification] spec of installed plugin
    # @param [Boolean] optional_plugin, removed if there is conflict with any
    #                     other plugin (used for default source plugins)
    #
    # @raise [MalformattedPlugin] if plugins.rb raises any error
    def register_plugin(name, spec, optional_plugin = false)
      commands = @commands
      sources = @sources
      hooks = @hooks_by_event

      @commands = {}
      @sources = {}
      @hooks_by_event = Hash.new {|h, k| h[k] = [] }

      load_paths = spec.load_paths
      Bundler.rubygems.add_to_load_path(load_paths)
      path = Pathname.new spec.full_gem_path

      begin
        load path.join(PLUGIN_FILE_NAME), true
      rescue StandardError => e
        raise MalformattedPlugin, "#{e.class}: #{e.message}"
      end

      if optional_plugin && @sources.keys.any? {|s| source? s }
        Bundler.rm_rf(path)
        false
      else
        index.register_plugin(name, path.to_s, load_paths, @commands.keys,
          @sources.keys, @hooks_by_event.keys)
        true
      end
    ensure
      @commands = commands
      @sources = sources
      @hooks_by_event = hooks
    end

    # Executes the plugins.rb file
    #
    # @param [String] name of the plugin
    def load_plugin(name)
      return unless name && !name.empty?

      # Need to ensure before this that plugin root where the rest of gems
      # are installed to be on load path to support plugin deps. Currently not
      # done to avoid conflicts
      path = index.plugin_path(name)

      Bundler.rubygems.add_to_load_path(index.load_paths(name))

      load path.join(PLUGIN_FILE_NAME)

      @loaded_plugin_names << name
    rescue RuntimeError => e
      Bundler.ui.error "Failed loading plugin #{name}: #{e.message}"
      raise
    end

    class << self
      private :load_plugin, :register_plugin, :save_plugins, :validate_plugin!
    end
  end
end
PK@H[-)����6share/gems/gems/bundler-2.2.24/lib/bundler/ruby_dsl.rbnu�[���# frozen_string_literal: true

module Bundler
  module RubyDsl
    def ruby(*ruby_version)
      options = ruby_version.last.is_a?(Hash) ? ruby_version.pop : {}
      ruby_version.flatten!
      raise GemfileError, "Please define :engine_version" if options[:engine] && options[:engine_version].nil?
      raise GemfileError, "Please define :engine" if options[:engine_version] && options[:engine].nil?

      if options[:engine] == "ruby" && options[:engine_version] &&
          ruby_version != Array(options[:engine_version])
        raise GemfileEvalError, "ruby_version must match the :engine_version for MRI"
      end
      @ruby_version = RubyVersion.new(ruby_version, options[:patchlevel], options[:engine], options[:engine_version])
    end
  end
end
PK@H[h����8share/gems/gems/bundler-2.2.24/lib/bundler/deployment.rbnu�[���# frozen_string_literal: true

require_relative "shared_helpers"
Bundler::SharedHelpers.major_deprecation 2, "Bundler no longer integrates with " \
  "Capistrano, but Capistrano provides its own integration with " \
  "Bundler via the capistrano-bundler gem. Use it instead."

module Bundler
  class Deployment
    def self.define_task(context, task_method = :task, opts = {})
      if defined?(Capistrano) && context.is_a?(Capistrano::Configuration)
        context_name = "capistrano"
        role_default = "{:except => {:no_release => true}}"
        error_type = ::Capistrano::CommandError
      else
        context_name = "vlad"
        role_default = "[:app]"
        error_type = ::Rake::CommandFailedError
      end

      roles = context.fetch(:bundle_roles, false)
      opts[:roles] = roles if roles

      context.send :namespace, :bundle do
        send :desc, <<-DESC
          Install the current Bundler environment. By default, gems will be \
          installed to the shared/bundle path. Gems in the development and \
          test group will not be installed. The install command is executed \
          with the --deployment and --quiet flags. If the bundle cmd cannot \
          be found then you can override the bundle_cmd variable to specify \
          which one it should use. The base path to the app is fetched from \
          the :latest_release variable. Set it for custom deploy layouts.

          You can override any of these defaults by setting the variables shown below.

          N.B. bundle_roles must be defined before you require 'bundler/#{context_name}' \
          in your deploy.rb file.

            set :bundle_gemfile,  "Gemfile"
            set :bundle_dir,      File.join(fetch(:shared_path), 'bundle')
            set :bundle_flags,    "--deployment --quiet"
            set :bundle_without,  [:development, :test]
            set :bundle_with,     [:mysql]
            set :bundle_cmd,      "bundle" # e.g. "/opt/ruby/bin/bundle"
            set :bundle_roles,    #{role_default} # e.g. [:app, :batch]
        DESC
        send task_method, :install, opts do
          bundle_cmd     = context.fetch(:bundle_cmd, "bundle")
          bundle_flags   = context.fetch(:bundle_flags, "--deployment --quiet")
          bundle_dir     = context.fetch(:bundle_dir, File.join(context.fetch(:shared_path), "bundle"))
          bundle_gemfile = context.fetch(:bundle_gemfile, "Gemfile")
          bundle_without = [*context.fetch(:bundle_without, [:development, :test])].compact
          bundle_with    = [*context.fetch(:bundle_with, [])].compact
          app_path = context.fetch(:latest_release)
          if app_path.to_s.empty?
            raise error_type.new("Cannot detect current release path - make sure you have deployed at least once.")
          end
          args = ["--gemfile #{File.join(app_path, bundle_gemfile)}"]
          args << "--path #{bundle_dir}" unless bundle_dir.to_s.empty?
          args << bundle_flags.to_s
          args << "--without #{bundle_without.join(" ")}" unless bundle_without.empty?
          args << "--with #{bundle_with.join(" ")}" unless bundle_with.empty?

          run "cd #{app_path} && #{bundle_cmd} install #{args.join(" ")}"
        end
      end
    end
  end
end
PK@H[.��۬�=share/gems/gems/bundler-2.2.24/lib/bundler/source/metadata.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    class Metadata < Source
      def specs
        @specs ||= Index.build do |idx|
          idx << Gem::Specification.new("Ruby\0", RubyVersion.system.to_gem_version_with_patchlevel)
          idx << Gem::Specification.new("RubyGems\0", Gem::VERSION) do |s|
            s.required_rubygems_version = Gem::Requirement.default
          end

          idx << Gem::Specification.new do |s|
            s.name     = "bundler"
            s.version  = VERSION
            s.license  = "MIT"
            s.platform = Gem::Platform::RUBY
            s.source   = self
            s.authors  = ["bundler team"]
            s.bindir   = "exe"
            s.homepage = "https://bundler.io"
            s.summary  = "The best way to manage your application's dependencies"
            s.executables = %w[bundle]
            # can't point to the actual gemspec or else the require paths will be wrong
            s.loaded_from = File.expand_path("..", __FILE__)
          end

          if local_spec = Bundler.rubygems.find_name("bundler").find {|s| s.version.to_s == VERSION }
            idx << local_spec
          end

          idx.each {|s| s.source = self }
        end
      end

      def options
        {}
      end

      def install(spec, _opts = {})
        print_using_message "Using #{version_message(spec)}"
        nil
      end

      def to_s
        "the local ruby installation"
      end

      def ==(other)
        self.class == other.class
      end
      alias_method :eql?, :==

      def hash
        self.class.hash
      end

      def version_message(spec)
        "#{spec.name} #{spec.version}"
      end
    end
  end
end
PK@H[g�Y�G�G=share/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems.rbnu�[���# frozen_string_literal: true

require "rubygems/user_interaction"

module Bundler
  class Source
    class Rubygems < Source
      autoload :Remote, File.expand_path("rubygems/remote", __dir__)

      # Use the API when installing less than X gems
      API_REQUEST_LIMIT = 500
      # Ask for X gems per API request
      API_REQUEST_SIZE = 50

      attr_reader :remotes, :caches

      def initialize(options = {})
        @options = options
        @remotes = []
        @dependency_names = []
        @allow_remote = false
        @allow_cached = false
        @allow_local = options["allow_local"] || false
        @caches = [cache_path, *Bundler.rubygems.gem_cache]

        Array(options["remotes"]).reverse_each {|r| add_remote(r) }
      end

      def local_only!
        @specs = nil
        @allow_local = true
        @allow_remote = false
      end

      def local!
        return if @allow_local

        @specs = nil
        @allow_local = true
      end

      def remote!
        return if @allow_remote

        @specs = nil
        @allow_remote = true
      end

      def cached!
        return if @allow_cached

        @specs = nil
        @allow_cached = true
      end

      def hash
        @remotes.hash
      end

      def eql?(other)
        other.is_a?(Rubygems) && other.credless_remotes == credless_remotes
      end

      alias_method :==, :eql?

      def include?(o)
        o.is_a?(Rubygems) && (o.credless_remotes - credless_remotes).empty?
      end

      def multiple_remotes?
        @remotes.size > 1
      end

      def can_lock?(spec)
        return super unless multiple_remotes?
        include?(spec.source)
      end

      def options
        { "remotes" => @remotes.map(&:to_s) }
      end

      def self.from_lock(options)
        new(options)
      end

      def to_lock
        out = String.new("GEM\n")
        remotes.reverse_each do |remote|
          out << "  remote: #{suppress_configured_credentials remote}\n"
        end
        out << "  specs:\n"
      end

      def to_s
        if remotes.empty?
          "locally installed gems"
        else
          remote_names = remotes.map(&:to_s).join(", ")
          "rubygems repository #{remote_names} or installed locally"
        end
      end
      alias_method :name, :to_s

      def specs
        @specs ||= begin
          # remote_specs usually generates a way larger Index than the other
          # sources, and large_idx.use small_idx is way faster than
          # small_idx.use large_idx.
          idx = @allow_remote ? remote_specs.dup : Index.new
          idx.use(cached_specs, :override_dupes) if @allow_cached || @allow_remote
          idx.use(installed_specs, :override_dupes) if @allow_local
          idx
        end
      end

      def install(spec, opts = {})
        force = opts[:force]
        ensure_builtin_gems_cached = opts[:ensure_builtin_gems_cached]

        if ensure_builtin_gems_cached && builtin_gem?(spec)
          if !cached_path(spec)
            cached_built_in_gem(spec) unless spec.remote
            force = true
          else
            spec.loaded_from = loaded_from(spec)
          end
        end

        if (installed?(spec) || Plugin.installed?(spec.name)) && !force
          print_using_message "Using #{version_message(spec)}"
          return nil # no post-install message
        end

        # Download the gem to get the spec, because some specs that are returned
        # by rubygems.org are broken and wrong.
        if spec.remote
          # Check for this spec from other sources
          uris = [spec.remote.anonymized_uri]
          uris += remotes_for_spec(spec).map(&:anonymized_uri)
          uris.uniq!
          Installer.ambiguous_gems << [spec.name, *uris] if uris.length > 1

          path = fetch_gem(spec)
          begin
            s = Bundler.rubygems.spec_from_gem(path, Bundler.settings["trust-policy"])
            spec.__swap__(s)
          rescue StandardError
            Bundler.rm_rf(path)
            raise
          end
        end

        unless Bundler.settings[:no_install]
          message = "Installing #{version_message(spec)}"
          message += " with native extensions" if spec.extensions.any?
          Bundler.ui.confirm message

          path = cached_gem(spec)
          if requires_sudo?
            install_path = Bundler.tmp(spec.full_name)
            bin_path     = install_path.join("bin")
          else
            install_path = rubygems_dir
            bin_path     = Bundler.system_bindir
          end

          Bundler.mkdir_p bin_path, :no_sudo => true unless spec.executables.empty? || Bundler.rubygems.provides?(">= 2.7.5")

          require_relative "../rubygems_gem_installer"

          installed_spec = Bundler::RubyGemsGemInstaller.at(
            path,
            :install_dir         => install_path.to_s,
            :bin_dir             => bin_path.to_s,
            :ignore_dependencies => true,
            :wrappers            => true,
            :env_shebang         => true,
            :build_args          => opts[:build_args],
            :bundler_expected_checksum => spec.respond_to?(:checksum) && spec.checksum,
            :bundler_extension_cache_path => extension_cache_path(spec)
          ).install
          spec.full_gem_path = installed_spec.full_gem_path

          # SUDO HAX
          if requires_sudo?
            Bundler.rubygems.repository_subdirectories.each do |name|
              src = File.join(install_path, name, "*")
              dst = File.join(rubygems_dir, name)
              if name == "extensions" && Dir.glob(src).any?
                src = File.join(src, "*/*")
                ext_src = Dir.glob(src).first
                ext_src.gsub!(src[0..-6], "")
                dst = File.dirname(File.join(dst, ext_src))
              end
              SharedHelpers.filesystem_access(dst) do |p|
                Bundler.mkdir_p(p)
              end
              Bundler.sudo "cp -R #{src} #{dst}" if Dir[src].any?
            end

            spec.executables.each do |exe|
              SharedHelpers.filesystem_access(Bundler.system_bindir) do |p|
                Bundler.mkdir_p(p)
              end
              Bundler.sudo "cp -R #{install_path}/bin/#{exe} #{Bundler.system_bindir}/"
            end
          end
          installed_spec.loaded_from = loaded_from(spec)
        end
        spec.loaded_from = loaded_from(spec)

        spec.post_install_message
      ensure
        Bundler.rm_rf(install_path) if requires_sudo?
      end

      def cache(spec, custom_path = nil)
        if builtin_gem?(spec)
          cached_path = cached_built_in_gem(spec)
        else
          cached_path = cached_gem(spec)
        end
        raise GemNotFound, "Missing gem file '#{spec.full_name}.gem'." unless cached_path
        return if File.dirname(cached_path) == Bundler.app_cache.to_s
        Bundler.ui.info "  * #{File.basename(cached_path)}"
        FileUtils.cp(cached_path, Bundler.app_cache(custom_path))
      rescue Errno::EACCES => e
        Bundler.ui.debug(e)
        raise InstallError, e.message
      end

      def cached_built_in_gem(spec)
        cached_path = cached_path(spec)
        if cached_path.nil?
          remote_spec = remote_specs.search(spec).first
          if remote_spec
            cached_path = fetch_gem(remote_spec)
          else
            Bundler.ui.warn "#{spec.full_name} is built in to Ruby, and can't be cached because your Gemfile doesn't have any sources that contain it."
          end
        end
        cached_path
      end

      def add_remote(source)
        uri = normalize_uri(source)
        @remotes.unshift(uri) unless @remotes.include?(uri)
      end

      def equivalent_remotes?(other_remotes)
        other_remotes.map(&method(:remove_auth)) == @remotes.map(&method(:remove_auth))
      end

      def spec_names
        if @allow_remote && dependency_api_available?
          remote_specs.spec_names
        else
          []
        end
      end

      def unmet_deps
        if @allow_remote && dependency_api_available?
          remote_specs.unmet_dependency_names
        else
          []
        end
      end

      def fetchers
        @fetchers ||= remotes.map do |uri|
          remote = Source::Rubygems::Remote.new(uri)
          Bundler::Fetcher.new(remote)
        end
      end

      def double_check_for(unmet_dependency_names)
        return unless @allow_remote
        return unless dependency_api_available?

        unmet_dependency_names = unmet_dependency_names.call
        unless unmet_dependency_names.nil?
          if api_fetchers.size <= 1
            # can't do this when there are multiple fetchers because then we might not fetch from _all_
            # of them
            unmet_dependency_names -= remote_specs.spec_names # avoid re-fetching things we've already gotten
          end
          return if unmet_dependency_names.empty?
        end

        Bundler.ui.debug "Double checking for #{unmet_dependency_names || "all specs (due to the size of the request)"} in #{self}"

        fetch_names(api_fetchers, unmet_dependency_names, specs, false)
      end

      def dependency_names_to_double_check
        names = []
        remote_specs.each do |spec|
          case spec
          when EndpointSpecification, Gem::Specification, StubSpecification, LazySpecification
            names.concat(spec.runtime_dependencies.map(&:name))
          when RemoteSpecification # from the full index
            return nil
          else
            raise "unhandled spec type (#{spec.inspect})"
          end
        end
        names
      end

      def dependency_api_available?
        api_fetchers.any?
      end

      protected

      def credless_remotes
        remotes.map(&method(:suppress_configured_credentials))
      end

      def remotes_for_spec(spec)
        specs.search_all(spec.name).inject([]) do |uris, s|
          uris << s.remote if s.remote
          uris
        end
      end

      def loaded_from(spec)
        "#{rubygems_dir}/specifications/#{spec.full_name}.gemspec"
      end

      def cached_gem(spec)
        cached_gem = cached_path(spec)
        unless cached_gem
          raise Bundler::GemNotFound, "Could not find #{spec.file_name} for installation"
        end
        cached_gem
      end

      def cached_path(spec)
        possibilities = @caches.map {|p| "#{p}/#{spec.file_name}" }
        possibilities.find {|p| File.exist?(p) }
      end

      def normalize_uri(uri)
        uri = uri.to_s
        uri = "#{uri}/" unless uri =~ %r{/$}
        require_relative "../vendored_uri"
        uri = Bundler::URI(uri)
        raise ArgumentError, "The source must be an absolute URI. For example:\n" \
          "source 'https://rubygems.org'" if !uri.absolute? || (uri.is_a?(Bundler::URI::HTTP) && uri.host.nil?)
        uri
      end

      def suppress_configured_credentials(remote)
        remote_nouser = remove_auth(remote)
        if remote.userinfo && remote.userinfo == Bundler.settings[remote_nouser]
          remote_nouser
        else
          remote
        end
      end

      def remove_auth(remote)
        if remote.user || remote.password
          remote.dup.tap {|uri| uri.user = uri.password = nil }.to_s
        else
          remote.to_s
        end
      end

      def installed_specs
        @installed_specs ||= Index.build do |idx|
          Bundler.rubygems.all_specs.reverse_each do |spec|
            spec.source = self
            if Bundler.rubygems.spec_missing_extensions?(spec, false)
              Bundler.ui.debug "Source #{self} is ignoring #{spec} because it is missing extensions"
              next
            end
            idx << spec
          end
        end
      end

      def cached_specs
        @cached_specs ||= begin
          idx = @allow_local ? installed_specs.dup : Index.new

          Dir["#{cache_path}/*.gem"].each do |gemfile|
            next if gemfile =~ /^bundler\-[\d\.]+?\.gem/
            s ||= Bundler.rubygems.spec_from_gem(gemfile)
            s.source = self
            idx << s
          end

          idx
        end
      end

      def api_fetchers
        fetchers.select {|f| f.use_api && f.fetchers.first.api_fetcher? }
      end

      def remote_specs
        @remote_specs ||= Index.build do |idx|
          index_fetchers = fetchers - api_fetchers

          # gather lists from non-api sites
          fetch_names(index_fetchers, nil, idx, false)

          # because ensuring we have all the gems we need involves downloading
          # the gemspecs of those gems, if the non-api sites contain more than
          # about 500 gems, we treat all sites as non-api for speed.
          allow_api = idx.size < API_REQUEST_LIMIT && dependency_names.size < API_REQUEST_LIMIT
          Bundler.ui.debug "Need to query more than #{API_REQUEST_LIMIT} gems." \
            " Downloading full index instead..." unless allow_api

          fetch_names(api_fetchers, allow_api && dependency_names, idx, false)
        end
      end

      def fetch_names(fetchers, dependency_names, index, override_dupes)
        fetchers.each do |f|
          if dependency_names
            Bundler.ui.info "Fetching gem metadata from #{URICredentialsFilter.credential_filtered_uri(f.uri)}", Bundler.ui.debug?
            index.use f.specs_with_retry(dependency_names, self), override_dupes
            Bundler.ui.info "" unless Bundler.ui.debug? # new line now that the dots are over
          else
            Bundler.ui.info "Fetching source index from #{URICredentialsFilter.credential_filtered_uri(f.uri)}"
            index.use f.specs_with_retry(nil, self), override_dupes
          end
        end
      end

      def fetch_gem(spec)
        return false unless spec.remote

        spec.fetch_platform

        download_path = requires_sudo? ? Bundler.tmp(spec.full_name) : rubygems_dir
        gem_path = "#{rubygems_dir}/cache/#{spec.full_name}.gem"

        SharedHelpers.filesystem_access("#{download_path}/cache") do |p|
          FileUtils.mkdir_p(p)
        end
        download_gem(spec, download_path)

        if requires_sudo?
          SharedHelpers.filesystem_access("#{rubygems_dir}/cache") do |p|
            Bundler.mkdir_p(p)
          end
          Bundler.sudo "mv #{download_path}/cache/#{spec.full_name}.gem #{gem_path}"
        end

        gem_path
      ensure
        Bundler.rm_rf(download_path) if requires_sudo?
      end

      def builtin_gem?(spec)
        # Ruby 2.1, where all included gems have this summary
        return true if spec.summary =~ /is bundled with Ruby/

        # Ruby 2.0, where gemspecs are stored in specifications/default/
        spec.loaded_from && spec.loaded_from.include?("specifications/default/")
      end

      def installed?(spec)
        installed_specs[spec].any?
      end

      def requires_sudo?
        Bundler.requires_sudo?
      end

      def rubygems_dir
        Bundler.rubygems.gem_dir
      end

      def cache_path
        Bundler.app_cache
      end

      private

      # Checks if the requested spec exists in the global cache. If it does,
      # we copy it to the download path, and if it does not, we download it.
      #
      # @param  [Specification] spec
      #         the spec we want to download or retrieve from the cache.
      #
      # @param  [String] download_path
      #         the local directory the .gem will end up in.
      #
      def download_gem(spec, download_path)
        local_path = File.join(download_path, "cache/#{spec.full_name}.gem")

        if (cache_path = download_cache_path(spec)) && cache_path.file?
          SharedHelpers.filesystem_access(local_path) do
            FileUtils.cp(cache_path, local_path)
          end
        else
          uri = spec.remote.uri
          Bundler.ui.confirm("Fetching #{version_message(spec)}")
          rubygems_local_path = Bundler.rubygems.download_gem(spec, uri, download_path)

          # older rubygems return varying file:// variants depending on version
          rubygems_local_path = rubygems_local_path.gsub(/\Afile:/, "") unless Bundler.rubygems.provides?(">= 3.2.0.rc.2")
          rubygems_local_path = rubygems_local_path.gsub(%r{\A//}, "") if Bundler.rubygems.provides?("< 3.1.0")

          if rubygems_local_path != local_path
            SharedHelpers.filesystem_access(local_path) do
              FileUtils.mv(rubygems_local_path, local_path)
            end
          end
          cache_globally(spec, local_path)
        end
      end

      # Checks if the requested spec exists in the global cache. If it does
      # not, we create the relevant global cache subdirectory if it does not
      # exist and copy the spec from the local cache to the global cache.
      #
      # @param  [Specification] spec
      #         the spec we want to copy to the global cache.
      #
      # @param  [String] local_cache_path
      #         the local directory from which we want to copy the .gem.
      #
      def cache_globally(spec, local_cache_path)
        return unless cache_path = download_cache_path(spec)
        return if cache_path.exist?

        SharedHelpers.filesystem_access(cache_path.dirname, &:mkpath)
        SharedHelpers.filesystem_access(cache_path) do
          FileUtils.cp(local_cache_path, cache_path)
        end
      end

      # Returns the global cache path of the calling Rubygems::Source object.
      #
      # Note that the Source determines the path's subdirectory. We use this
      # subdirectory in the global cache path so that gems with the same name
      # -- and possibly different versions -- from different sources are saved
      # to their respective subdirectories and do not override one another.
      #
      # @param  [Gem::Specification] specification
      #
      # @return [Pathname] The global cache path.
      #
      def download_cache_path(spec)
        return unless Bundler.feature_flag.global_gem_cache?
        return unless remote = spec.remote
        return unless cache_slug = remote.cache_slug

        Bundler.user_cache.join("gems", cache_slug, spec.file_name)
      end

      def extension_cache_slug(spec)
        return unless remote = spec.remote
        remote.cache_slug
      end
    end
  end
end
PK@H[Ƌ�}(}(8share/gems/gems/bundler-2.2.24/lib/bundler/source/git.rbnu�[���# frozen_string_literal: true

require_relative "../vendored_fileutils"

module Bundler
  class Source
    class Git < Path
      autoload :GitProxy, File.expand_path("git/git_proxy", __dir__)

      attr_reader :uri, :ref, :branch, :options, :glob, :submodules

      def initialize(options)
        @options = options
        @glob = options["glob"] || DEFAULT_GLOB

        @allow_cached = false
        @allow_remote = false

        # Stringify options that could be set as symbols
        %w[ref branch tag revision].each {|k| options[k] = options[k].to_s if options[k] }

        @uri        = options["uri"] || ""
        @safe_uri   = URICredentialsFilter.credential_filtered_uri(@uri)
        @branch     = options["branch"]
        @ref        = options["ref"] || options["branch"] || options["tag"]
        @submodules = options["submodules"]
        @name       = options["name"]
        @version    = options["version"].to_s.strip.gsub("-", ".pre.")

        @copied     = false
        @local      = false
      end

      def self.from_lock(options)
        new(options.merge("uri" => options.delete("remote")))
      end

      def to_lock
        out = String.new("GIT\n")
        out << "  remote: #{@uri}\n"
        out << "  revision: #{revision}\n"
        %w[ref branch tag submodules].each do |opt|
          out << "  #{opt}: #{options[opt]}\n" if options[opt]
        end
        out << "  glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
        out << "  specs:\n"
      end

      def hash
        [self.class, uri, ref, branch, name, version, glob, submodules].hash
      end

      def eql?(other)
        other.is_a?(Git) && uri == other.uri && ref == other.ref &&
          branch == other.branch && name == other.name &&
          version == other.version && glob == other.glob &&
          submodules == other.submodules
      end

      alias_method :==, :eql?

      def to_s
        begin
          at = if local?
            path
          elsif user_ref = options["ref"]
            if ref =~ /\A[a-z0-9]{4,}\z/i
              shortref_for_display(user_ref)
            else
              user_ref
            end
          elsif ref
            ref
          else
            git_proxy.branch
          end

          rev = " (at #{at}@#{shortref_for_display(revision)})"
        rescue GitError
          ""
        end

        "#{@safe_uri}#{rev}"
      end

      def name
        File.basename(@uri, ".git")
      end

      # This is the path which is going to contain a specific
      # checkout of the git repository. When using local git
      # repos, this is set to the local repo.
      def install_path
        @install_path ||= begin
          git_scope = "#{base_name}-#{shortref_for_path(revision)}"

          path = Bundler.install_path.join(git_scope)

          if !path.exist? && Bundler.requires_sudo?
            Bundler.user_bundle_path.join(Bundler.ruby_scope).join(git_scope)
          else
            path
          end
        end
      end

      alias_method :path, :install_path

      def extension_dir_name
        "#{base_name}-#{shortref_for_path(revision)}"
      end

      def unlock!
        git_proxy.revision = nil
        options["revision"] = nil

        @unlocked = true
      end

      def local_override!(path)
        return false if local?

        original_path = path
        path = Pathname.new(path)
        path = path.expand_path(Bundler.root) unless path.relative?

        unless options["branch"] || Bundler.settings[:disable_local_branch_check]
          raise GitError, "Cannot use local override for #{name} at #{path} because " \
            ":branch is not specified in Gemfile. Specify a branch or run " \
            "`bundle config unset local.#{override_for(original_path)}` to remove the local override"
        end

        unless path.exist?
          raise GitError, "Cannot use local override for #{name} because #{path} " \
            "does not exist. Run `bundle config unset local.#{override_for(original_path)}` to remove the local override"
        end

        set_local!(path)

        # Create a new git proxy without the cached revision
        # so the Gemfile.lock always picks up the new revision.
        @git_proxy = GitProxy.new(path, uri, ref)

        if git_proxy.branch != options["branch"] && !Bundler.settings[:disable_local_branch_check]
          raise GitError, "Local override for #{name} at #{path} is using branch " \
            "#{git_proxy.branch} but Gemfile specifies #{options["branch"]}"
        end

        changed = cached_revision && cached_revision != git_proxy.revision

        if !Bundler.settings[:disable_local_revision_check] && changed && !@unlocked && !git_proxy.contains?(cached_revision)
          raise GitError, "The Gemfile lock is pointing to revision #{shortref_for_display(cached_revision)} " \
            "but the current branch in your local override for #{name} does not contain such commit. " \
            "Please make sure your branch is up to date."
        end

        changed
      end

      def specs(*)
        set_local!(app_cache_path) if has_app_cache? && !local?

        if requires_checkout? && !@copied
          fetch
          git_proxy.copy_to(install_path, submodules)
          serialize_gemspecs_in(install_path)
          @copied = true
        end

        local_specs
      end

      def install(spec, options = {})
        force = options[:force]

        print_using_message "Using #{version_message(spec)} from #{self}"

        if (requires_checkout? && !@copied) || force
          Bundler.ui.debug "  * Checking out revision: #{ref}"
          git_proxy.copy_to(install_path, submodules)
          serialize_gemspecs_in(install_path)
          @copied = true
        end

        generate_bin_options = { :disable_extensions => !Bundler.rubygems.spec_missing_extensions?(spec), :build_args => options[:build_args] }
        generate_bin(spec, generate_bin_options)

        requires_checkout? ? spec.post_install_message : nil
      end

      def cache(spec, custom_path = nil)
        app_cache_path = app_cache_path(custom_path)
        return unless Bundler.feature_flag.cache_all?
        return if path == app_cache_path
        cached!
        FileUtils.rm_rf(app_cache_path)
        git_proxy.checkout if requires_checkout?
        git_proxy.copy_to(app_cache_path, @submodules)
        serialize_gemspecs_in(app_cache_path)
      end

      def load_spec_files
        super
      rescue PathError => e
        Bundler.ui.trace e
        raise GitError, "#{self} is not yet checked out. Run `bundle install` first."
      end

      # This is the path which is going to contain a cache
      # of the git repository. When using the same git repository
      # across different projects, this cache will be shared.
      # When using local git repos, this is set to the local repo.
      def cache_path
        @cache_path ||= begin
          if Bundler.requires_sudo? || Bundler.feature_flag.global_gem_cache?
            Bundler.user_cache
          else
            Bundler.bundle_path.join("cache", "bundler")
          end.join("git", git_scope)
        end
      end

      def app_cache_dirname
        "#{base_name}-#{shortref_for_path(cached_revision || revision)}"
      end

      def revision
        git_proxy.revision
      end

      def allow_git_ops?
        @allow_remote || @allow_cached
      end

      def local?
        @local
      end

      private

      def serialize_gemspecs_in(destination)
        destination = destination.expand_path(Bundler.root) if destination.relative?
        Dir["#{destination}/#{@glob}"].each do |spec_path|
          # Evaluate gemspecs and cache the result. Gemspecs
          # in git might require git or other dependencies.
          # The gemspecs we cache should already be evaluated.
          spec = Bundler.load_gemspec(spec_path)
          next unless spec
          Bundler.rubygems.set_installed_by_version(spec)
          Bundler.rubygems.validate(spec)
          File.open(spec_path, "wb") {|file| file.write(spec.to_ruby) }
        end
      end

      def set_local!(path)
        @local       = true
        @local_specs = @git_proxy = nil
        @cache_path  = @install_path = path
      end

      def has_app_cache?
        cached_revision && super
      end

      def requires_checkout?
        allow_git_ops? && !local? && !cached_revision_checked_out?
      end

      def cached_revision_checked_out?
        cached_revision && cached_revision == revision && install_path.exist?
      end

      def base_name
        File.basename(uri.sub(%r{^(\w+://)?([^/:]+:)?(//\w*/)?(\w*/)*}, ""), ".git")
      end

      def shortref_for_display(ref)
        ref[0..6]
      end

      def shortref_for_path(ref)
        ref[0..11]
      end

      def uri_hash
        if uri =~ %r{^\w+://(\w+@)?}
          # Downcase the domain component of the URI
          # and strip off a trailing slash, if one is present
          input = Bundler::URI.parse(uri).normalize.to_s.sub(%r{/$}, "")
        else
          # If there is no URI scheme, assume it is an ssh/git URI
          input = uri
        end
        SharedHelpers.digest(:SHA1).hexdigest(input)
      end

      def cached_revision
        options["revision"]
      end

      def cached?
        cache_path.exist?
      end

      def git_proxy
        @git_proxy ||= GitProxy.new(cache_path, uri, ref, cached_revision, self)
      end

      def fetch
        git_proxy.checkout
      rescue GitError => e
        raise unless Bundler.feature_flag.allow_offline_install?
        Bundler.ui.warn "Using cached git data because of network errors:\n#{e}"
      end

      # no-op, since we validate when re-serializing the gemspec
      def validate_spec(_spec); end

      def load_gemspec(file)
        stub = Gem::StubSpecification.gemspec_stub(file, install_path.parent, install_path.parent)
        stub.full_gem_path = Pathname.new(file).dirname.expand_path(root).to_s.tap{|x| x.untaint if RUBY_VERSION < "2.7" }
        StubSpecification.from_stub(stub)
      end

      def git_scope
        "#{base_name}-#{uri_hash}"
      end

      def extension_cache_slug(_)
        extension_dir_name
      end

      def override_for(path)
        Bundler.settings.local_overrides.key(path)
      end
    end
  end
end
PK@H[�
E�//Gshare/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems_aggregate.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    class RubygemsAggregate
      attr_reader :source_map, :sources

      def initialize(sources, source_map)
        @sources = sources
        @source_map = source_map

        @index = build_index
      end

      def specs
        @index
      end

      def to_s
        "any of the sources"
      end

      private

      def build_index
        Index.build do |idx|
          dependency_names = source_map.pinned_spec_names

          sources.all_sources.each do |source|
            source.dependency_names = dependency_names - source_map.pinned_spec_names(source)
            idx.add_source source.specs
            dependency_names.concat(source.unmet_deps).uniq!
          end

          double_check_for_index(idx, dependency_names)
        end
      end

      # Suppose the gem Foo depends on the gem Bar.  Foo exists in Source A.  Bar has some versions that exist in both
      # sources A and B.  At this point, the API request will have found all the versions of Bar in source A,
      # but will not have found any versions of Bar from source B, which is a problem if the requested version
      # of Foo specifically depends on a version of Bar that is only found in source B. This ensures that for
      # each spec we found, we add all possible versions from all sources to the index.
      def double_check_for_index(idx, dependency_names)
        pinned_names = source_map.pinned_spec_names

        names = :names # do this so we only have to traverse to get dependency_names from the index once
        unmet_dependency_names = lambda do
          return names unless names == :names
          new_names = sources.all_sources.map(&:dependency_names_to_double_check)
          return names = nil if new_names.compact!
          names = new_names.flatten(1).concat(dependency_names)
          names.uniq!
          names -= pinned_names
          names
        end

        sources.all_sources.each do |source|
          source.double_check_for(unmet_dependency_names)
        end
      end
    end
  end
end
PK@H[�:U''Dshare/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems/remote.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    class Rubygems
      class Remote
        attr_reader :uri, :anonymized_uri, :original_uri

        def initialize(uri)
          orig_uri = uri
          uri = Bundler.settings.mirror_for(uri)
          @original_uri = orig_uri if orig_uri != uri
          fallback_auth = Bundler.settings.credentials_for(uri)

          @uri = apply_auth(uri, fallback_auth).freeze
          @anonymized_uri = remove_auth(@uri).freeze
        end

        # @return [String] A slug suitable for use as a cache key for this
        #         remote.
        #
        def cache_slug
          @cache_slug ||= begin
            return nil unless SharedHelpers.md5_available?

            cache_uri = original_uri || uri

            host = cache_uri.to_s.start_with?("file://") ? nil : cache_uri.host

            uri_parts = [host, cache_uri.user, cache_uri.port, cache_uri.path]
            uri_digest = SharedHelpers.digest(:MD5).hexdigest(uri_parts.compact.join("."))

            uri_parts[-1] = uri_digest
            uri_parts.compact.join(".")
          end
        end

        def to_s
          "rubygems remote at #{anonymized_uri}"
        end

        private

        def apply_auth(uri, auth)
          if auth && uri.userinfo.nil?
            uri = uri.dup
            uri.userinfo = auth
          end

          uri
        rescue Bundler::URI::InvalidComponentError
          error_message = "Please CGI escape your usernames and passwords before " \
                          "setting them for authentication."
          raise HTTPError.new(error_message)
        end

        def remove_auth(uri)
          if uri.userinfo
            uri = uri.dup
            uri.user = uri.password = nil
          end

          uri
        end
      end
    end
  end
end
PK@H[�ƨ'<share/gems/gems/bundler-2.2.24/lib/bundler/source/gemspec.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    class Gemspec < Path
      attr_reader :gemspec

      def initialize(options)
        super
        @gemspec = options["gemspec"]
      end

      def as_path_source
        Path.new(options)
      end
    end
  end
end
PK@H[)�g@�#�#Bshare/gems/gems/bundler-2.2.24/lib/bundler/source/git/git_proxy.rbnu�[���# frozen_string_literal: true

require "shellwords"

module Bundler
  class Source
    class Git
      class GitNotInstalledError < GitError
        def initialize
          msg = String.new
          msg << "You need to install git to be able to use gems from git repositories. "
          msg << "For help installing git, please refer to GitHub's tutorial at https://help.github.com/articles/set-up-git"
          super msg
        end
      end

      class GitNotAllowedError < GitError
        def initialize(command)
          msg = String.new
          msg << "Bundler is trying to run `#{command}` at runtime. You probably need to run `bundle install`. However, "
          msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md "
          msg << "with steps to reproduce as well as the following\n\nCALLER: #{caller.join("\n")}"
          super msg
        end
      end

      class GitCommandError < GitError
        attr_reader :command

        def initialize(command, path, extra_info = nil)
          @command = command

          msg = String.new
          msg << "Git error: command `#{command}` in directory #{path} has failed."
          msg << "\n#{extra_info}" if extra_info
          msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path.exist?
          super msg
        end
      end

      class MissingGitRevisionError < GitCommandError
        def initialize(command, destination_path, ref, repo)
          msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
          super command, destination_path, msg
        end
      end

      # The GitProxy is responsible to interact with git repositories.
      # All actions required by the Git source is encapsulated in this
      # object.
      class GitProxy
        attr_accessor :path, :uri, :ref
        attr_writer :revision

        def initialize(path, uri, ref, revision = nil, git = nil)
          @path     = path
          @uri      = uri
          @ref      = ref
          @revision = revision
          @git      = git
          raise GitNotInstalledError.new if allow? && !Bundler.git_present?
        end

        def revision
          @revision ||= find_local_revision
        end

        def branch
          @branch ||= allowed_with_path do
            git("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip
          end
        end

        def contains?(commit)
          allowed_with_path do
            result, status = git_null("branch", "--contains", commit, :dir => path)
            status.success? && result =~ /^\* (.*)$/
          end
        end

        def version
          git("--version").match(/(git version\s*)?((\.?\d+)+).*/)[2]
        end

        def full_version
          git("--version").sub("git version", "").strip
        end

        def checkout
          return if path.exist? && has_revision_cached?
          extra_ref = "#{ref}:#{ref}" if ref && ref.start_with?("refs/")

          Bundler.ui.info "Fetching #{URICredentialsFilter.credential_filtered_uri(uri)}"

          configured_uri = configured_uri_for(uri).to_s

          unless path.exist?
            SharedHelpers.filesystem_access(path.dirname) do |p|
              FileUtils.mkdir_p(p)
            end
            git_retry "clone", configured_uri, path.to_s, "--bare", "--no-hardlinks", "--quiet"
            return unless extra_ref
          end

          with_path do
            git_retry(*["fetch", "--force", "--quiet", "--tags", configured_uri, "refs/heads/*:refs/heads/*", extra_ref].compact, :dir => path)
          end
        end

        def copy_to(destination, submodules = false)
          # method 1
          unless File.exist?(destination.join(".git"))
            begin
              SharedHelpers.filesystem_access(destination.dirname) do |p|
                FileUtils.mkdir_p(p)
              end
              SharedHelpers.filesystem_access(destination) do |p|
                FileUtils.rm_rf(p)
              end
              git_retry "clone", "--no-checkout", "--quiet", path.to_s, destination.to_s
              File.chmod(((File.stat(destination).mode | 0o777) & ~File.umask), destination)
            rescue Errno::EEXIST => e
              file_path = e.message[%r{.*?((?:[a-zA-Z]:)?/.*)}, 1]
              raise GitError, "Bundler could not install a gem because it needs to " \
                "create a directory, but a file exists - #{file_path}. Please delete " \
                "this file and try again."
            end
          end
          # method 2
          git_retry "fetch", "--force", "--quiet", "--tags", path.to_s, :dir => destination

          begin
            git "reset", "--hard", @revision, :dir => destination
          rescue GitCommandError => e
            raise MissingGitRevisionError.new(e.command, destination, @revision, URICredentialsFilter.credential_filtered_uri(uri))
          end

          if submodules
            git_retry "submodule", "update", "--init", "--recursive", :dir => destination
          elsif Gem::Version.create(version) >= Gem::Version.create("2.9.0")
            inner_command = "git -C $toplevel submodule deinit --force $sm_path"
            git_retry "submodule", "foreach", "--quiet", inner_command, :dir => destination
          end
        end

        private

        def git_null(*command, dir: nil)
          check_allowed(command)

          out, status = SharedHelpers.with_clean_git_env do
            capture_and_ignore_stderr(*capture3_args_for(command, dir))
          end

          [URICredentialsFilter.credential_filtered_string(out, uri), status]
        end

        def git_retry(*command, dir: nil)
          command_with_no_credentials = check_allowed(command)

          Bundler::Retry.new("`#{command_with_no_credentials}` at #{dir || SharedHelpers.pwd}").attempts do
            git(*command, :dir => dir)
          end
        end

        def git(*command, dir: nil)
          command_with_no_credentials = check_allowed(command)

          out, status = SharedHelpers.with_clean_git_env do
            capture_and_filter_stderr(*capture3_args_for(command, dir))
          end

          filtered_out = URICredentialsFilter.credential_filtered_string(out, uri)

          raise GitCommandError.new(command_with_no_credentials, dir || SharedHelpers.pwd, filtered_out) unless status.success?

          filtered_out
        end

        def has_revision_cached?
          return unless @revision
          with_path { git("cat-file", "-e", @revision, :dir => path) }
          true
        rescue GitError
          false
        end

        def remove_cache
          FileUtils.rm_rf(path)
        end

        def find_local_revision
          allowed_with_path do
            git("rev-parse", "--verify", ref || "HEAD", :dir => path).strip
          end
        rescue GitCommandError => e
          raise MissingGitRevisionError.new(e.command, path, ref, URICredentialsFilter.credential_filtered_uri(uri))
        end

        # Adds credentials to the URI as Fetcher#configured_uri_for does
        def configured_uri_for(uri)
          if /https?:/ =~ uri
            remote = Bundler::URI(uri)
            config_auth = Bundler.settings[remote.to_s] || Bundler.settings[remote.host]
            remote.userinfo ||= config_auth
            remote.to_s
          else
            uri
          end
        end

        def allow?
          @git ? @git.allow_git_ops? : true
        end

        def with_path(&blk)
          checkout unless path.exist?
          blk.call
        end

        def allowed_with_path
          return with_path { yield } if allow?
          raise GitError, "The git source #{uri} is not yet checked out. Please run `bundle install` before trying to start your application"
        end

        def check_allowed(command)
          command_with_no_credentials = URICredentialsFilter.credential_filtered_string("git #{command.shelljoin}", uri)
          raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
          command_with_no_credentials
        end

        def capture_and_filter_stderr(*cmd)
          require "open3"
          return_value, captured_err, status = Open3.capture3(*cmd)
          Bundler.ui.warn URICredentialsFilter.credential_filtered_string(captured_err, uri) unless captured_err.empty?
          [return_value, status]
        end

        def capture_and_ignore_stderr(*cmd)
          require "open3"
          return_value, _, status = Open3.capture3(*cmd)
          [return_value, status]
        end

        def capture3_args_for(cmd, dir)
          return ["git", *cmd] unless dir

          if Bundler.feature_flag.bundler_3_mode? || supports_minus_c?
            ["git", "-C", dir.to_s, *cmd]
          else
            ["git", *cmd, { :chdir => dir.to_s }]
          end
        end

        def supports_minus_c?
          @supports_minus_c ||= Gem::Version.new(version) >= Gem::Version.new("1.8.5")
        end
      end
    end
  end
end
PK@H[u�R!xxCshare/gems/gems/bundler-2.2.24/lib/bundler/source/path/installer.rbnu�[���# frozen_string_literal: true

require_relative "../../rubygems_gem_installer"

module Bundler
  class Source
    class Path
      class Installer < Bundler::RubyGemsGemInstaller
        attr_reader :spec

        def initialize(spec, options = {})
          @options            = options
          @spec               = spec
          @gem_dir            = Bundler.rubygems.path(spec.full_gem_path)
          @wrappers           = true
          @env_shebang        = true
          @format_executable  = options[:format_executable] || false
          @build_args         = options[:build_args] || Bundler.rubygems.build_args
          @gem_bin_dir        = "#{Bundler.rubygems.gem_dir}/bin"
          @disable_extensions = options[:disable_extensions]

          if Bundler.requires_sudo?
            @tmp_dir = Bundler.tmp(spec.full_name).to_s
            @bin_dir = "#{@tmp_dir}/bin"
          else
            @bin_dir = @gem_bin_dir
          end
        end

        def post_install
          run_hooks(:pre_install)

          unless @disable_extensions
            build_extensions
            run_hooks(:post_build)
          end

          generate_bin unless spec.executables.empty?

          run_hooks(:post_install)
        ensure
          Bundler.rm_rf(@tmp_dir) if Bundler.requires_sudo?
        end

        private

        def generate_bin
          super

          if Bundler.requires_sudo?
            SharedHelpers.filesystem_access(@gem_bin_dir) do |p|
              Bundler.mkdir_p(p)
            end
            spec.executables.each do |exe|
              Bundler.sudo "cp -R #{@bin_dir}/#{exe} #{@gem_bin_dir}"
            end
          end
        end

        def run_hooks(type)
          hooks_meth = "#{type}_hooks"
          return unless Gem.respond_to?(hooks_meth)
          Gem.send(hooks_meth).each do |hook|
            result = hook.call(self)
            next unless result == false
            location = " at #{$1}" if hook.inspect =~ /@(.*:\d+)/
            message = "#{type} hook#{location} failed for #{spec.full_name}"
            raise InstallHookError, message
          end
        end
      end
    end
  end
end
PK@H[�D�##9share/gems/gems/bundler-2.2.24/lib/bundler/source/path.rbnu�[���# frozen_string_literal: true

module Bundler
  class Source
    class Path < Source
      autoload :Installer, File.expand_path("path/installer", __dir__)

      attr_reader :path, :options, :root_path, :original_path
      attr_writer :name
      attr_accessor :version

      protected :original_path

      DEFAULT_GLOB = "{,*,*/*}.gemspec".freeze

      def initialize(options)
        @options = options.dup
        @glob = options["glob"] || DEFAULT_GLOB

        @allow_cached = false
        @allow_remote = false

        @root_path = options["root_path"] || root

        if options["path"]
          @path = Pathname.new(options["path"])
          expanded_path = expand(@path)
          @path = if @path.relative?
            expanded_path.relative_path_from(root_path.expand_path)
          else
            expanded_path
          end
        end

        @name    = options["name"]
        @version = options["version"]

        # Stores the original path. If at any point we move to the
        # cached directory, we still have the original path to copy from.
        @original_path = @path
      end

      def remote!
        @local_specs = nil
        @allow_remote = true
      end

      def cached!
        @local_specs = nil
        @allow_cached = true
      end

      def self.from_lock(options)
        new(options.merge("path" => options.delete("remote")))
      end

      def to_lock
        out = String.new("PATH\n")
        out << "  remote: #{lockfile_path}\n"
        out << "  glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
        out << "  specs:\n"
      end

      def to_s
        "source at `#{@path}`"
      end

      def hash
        [self.class, expanded_path, version].hash
      end

      def eql?(other)
        return unless other.class == self.class
        expanded_original_path == other.expanded_original_path &&
          version == other.version
      end

      alias_method :==, :eql?

      def name
        File.basename(expanded_path.to_s)
      end

      def install(spec, options = {})
        using_message = "Using #{version_message(spec)} from #{self}"
        using_message += " and installing its executables" unless spec.executables.empty?
        print_using_message using_message
        generate_bin(spec, :disable_extensions => true)
        nil # no post-install message
      end

      def cache(spec, custom_path = nil)
        app_cache_path = app_cache_path(custom_path)
        return unless Bundler.feature_flag.cache_all?
        return if expand(@original_path).to_s.index(root_path.to_s + "/") == 0

        unless @original_path.exist?
          raise GemNotFound, "Can't cache gem #{version_message(spec)} because #{self} is missing!"
        end

        FileUtils.rm_rf(app_cache_path)
        FileUtils.cp_r("#{@original_path}/.", app_cache_path)
        FileUtils.touch(app_cache_path.join(".bundlecache"))
      end

      def local_specs(*)
        @local_specs ||= load_spec_files
      end

      def specs
        if has_app_cache?
          @path = app_cache_path
          @expanded_path = nil # Invalidate
        end
        local_specs
      end

      def app_cache_dirname
        name
      end

      def root
        Bundler.root
      end

      def expanded_original_path
        @expanded_original_path ||= expand(original_path)
      end

      private

      def expanded_path
        @expanded_path ||= expand(path)
      end

      def expand(somepath)
        if Bundler.current_ruby.jruby? # TODO: Unify when https://github.com/rubygems/bundler/issues/7598 fixed upstream and all supported jrubies include the fix
          somepath.expand_path(root_path).expand_path
        else
          somepath.expand_path(root_path)
        end
      rescue ArgumentError => e
        Bundler.ui.debug(e)
        raise PathError, "There was an error while trying to use the path " \
          "`#{somepath}`.\nThe error message was: #{e.message}."
      end

      def lockfile_path
        return relative_path(original_path) if original_path.absolute?
        expand(original_path).relative_path_from(root)
      end

      def app_cache_path(custom_path = nil)
        @app_cache_path ||= Bundler.app_cache(custom_path).join(app_cache_dirname)
      end

      def has_app_cache?
        SharedHelpers.in_bundle? && app_cache_path.exist?
      end

      def load_gemspec(file)
        return unless spec = Bundler.load_gemspec(file)
        Bundler.rubygems.set_installed_by_version(spec)
        spec
      end

      def validate_spec(spec)
        Bundler.rubygems.validate(spec)
      end

      def load_spec_files
        index = Index.new

        if File.directory?(expanded_path)
          # We sort depth-first since `<<` will override the earlier-found specs
          Gem::Util.glob_files_in_dir(@glob, expanded_path).sort_by {|p| -p.split(File::SEPARATOR).size }.each do |file|
            next unless spec = load_gemspec(file)
            spec.source = self

            # Validation causes extension_dir to be calculated, which depends
            # on #source, so we validate here instead of load_gemspec
            validate_spec(spec)
            index << spec
          end

          if index.empty? && @name && @version
            index << Gem::Specification.new do |s|
              s.name     = @name
              s.source   = self
              s.version  = Gem::Version.new(@version)
              s.platform = Gem::Platform::RUBY
              s.summary  = "Fake gemspec for #{@name}"
              s.relative_loaded_from = "#{@name}.gemspec"
              s.authors = ["no one"]
              if expanded_path.join("bin").exist?
                executables = expanded_path.join("bin").children
                executables.reject! {|p| File.directory?(p) }
                s.executables = executables.map {|c| c.basename.to_s }
              end
            end
          end
        else
          message = String.new("The path `#{expanded_path}` ")
          message << if File.exist?(expanded_path)
            "is not a directory."
          else
            "does not exist."
          end
          raise PathError, message
        end

        index
      end

      def relative_path(path = self.path)
        if path.to_s.start_with?(root_path.to_s)
          return path.relative_path_from(root_path)
        end
        path
      end

      def generate_bin(spec, options = {})
        gem_dir = Pathname.new(spec.full_gem_path)

        # Some gem authors put absolute paths in their gemspec
        # and we have to save them from themselves
        spec.files = spec.files.map do |p|
          next p unless p =~ /\A#{Pathname::SEPARATOR_PAT}/
          next if File.directory?(p)
          begin
            Pathname.new(p).relative_path_from(gem_dir).to_s
          rescue ArgumentError
            p
          end
        end.compact

        installer = Path::Installer.new(
          spec,
          :env_shebang => false,
          :disable_extensions => options[:disable_extensions],
          :build_args => options[:build_args],
          :bundler_extension_cache_path => extension_cache_path(spec)
        )
        installer.post_install
      rescue Gem::InvalidSpecificationException => e
        Bundler.ui.warn "\n#{spec.name} at #{spec.full_gem_path} did not have a valid gemspec.\n" \
                        "This prevents bundler from installing bins or native extensions, but " \
                        "that may not affect its functionality."

        if !spec.extensions.empty? && !spec.email.empty?
          Bundler.ui.warn "If you need to use this package without installing it from a gem " \
                          "repository, please contact #{spec.email} and ask them " \
                          "to modify their .gemspec so it can work with `gem build`."
        end

        Bundler.ui.warn "The validation message from RubyGems was:\n  #{e.message}"
      end
    end
  end
end
PK@H[p2Ǥ��7share/gems/gems/bundler-2.2.24/lib/bundler/constants.rbnu�[���# frozen_string_literal: true

module Bundler
  WINDOWS = RbConfig::CONFIG["host_os"] =~ /(msdos|mswin|djgpp|mingw)/
  FREEBSD = RbConfig::CONFIG["host_os"] =~ /bsd/
  NULL    = WINDOWS ? "NUL" : "/dev/null"
end
PK@H[��{���Jshare/gems/gems/bundler-2.2.24/lib/bundler/templates/Executable.standalonenu�[���#!/usr/bin/env <%= Bundler.settings[:shebang] || RbConfig::CONFIG["ruby_install_name"] %>
#
# This file was generated by Bundler.
#
# The application '<%= executable %>' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
path = Pathname.new(__FILE__)
$:.unshift File.expand_path "../<%= standalone_path %>", path.realpath

require "bundler/setup"
load File.expand_path "../<%= executable_path %>", path.realpath
PK@H[�I~]��Gshare/gems/gems/bundler-2.2.24/lib/bundler/templates/Executable.bundlernu�[���#!/usr/bin/env <%= Bundler.settings[:shebang] || RbConfig::CONFIG["ruby_install_name"] %>
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application '<%= executable %>' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "rubygems"

m = Module.new do
  module_function

  def invoked_as_script?
    File.expand_path($0) == File.expand_path(__FILE__)
  end

  def env_var_version
    ENV["BUNDLER_VERSION"]
  end

  def cli_arg_version
    return unless invoked_as_script? # don't want to hijack other binstubs
    return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
    bundler_version = nil
    update_index = nil
    ARGV.each_with_index do |a, i|
      if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
        bundler_version = a
      end
      next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
      bundler_version = $1
      update_index = i
    end
    bundler_version
  end

  def gemfile
    gemfile = ENV["BUNDLE_GEMFILE"]
    return gemfile if gemfile && !gemfile.empty?

    File.expand_path("../<%= relative_gemfile_path %>", __FILE__)
  end

  def lockfile
    lockfile =
      case File.basename(gemfile)
      when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
      else "#{gemfile}.lock"
      end
    File.expand_path(lockfile)
  end

  def lockfile_version
    return unless File.file?(lockfile)
    lockfile_contents = File.read(lockfile)
    return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
    Regexp.last_match(1)
  end

  def bundler_version
    @bundler_version ||=
      env_var_version || cli_arg_version ||
        lockfile_version
  end

  def bundler_requirement
    return "#{Gem::Requirement.default}.a" unless bundler_version

    bundler_gem_version = Gem::Version.new(bundler_version)

    requirement = bundler_gem_version.approximate_recommendation

    return requirement unless Gem::Version.new(Gem::VERSION) < Gem::Version.new("2.7.0")

    requirement += ".a" if bundler_gem_version.prerelease?

    requirement
  end

  def load_bundler!
    ENV["BUNDLE_GEMFILE"] ||= gemfile

    activate_bundler
  end

  def activate_bundler
    gem_error = activation_error_handling do
      gem "bundler", bundler_requirement
    end
    return if gem_error.nil?
    require_error = activation_error_handling do
      require "bundler/version"
    end
    return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
    warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
    exit 42
  end

  def activation_error_handling
    yield
    nil
  rescue StandardError, LoadError => e
    e
  end
end

m.load_bundler!

if m.invoked_as_script?
  load Gem.bin_path("<%= spec.name %>", "<%= executable %>")
end
PK@H[�lq55Dshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/rspec.ttnu�[���--format documentation
--color
--require spec_helper
PK@H[���_ccQshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.ttnu�[���# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
* Focusing on what is best not just for us as individuals, but for the overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
  advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
  address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
  professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.

Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at <%= config[:email] %>. All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series of actions.

**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior,  harassment of an individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within the community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.

Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
PK@H[���QQJshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/LICENSE.txt.ttnu�[���The MIT License (MIT)

Copyright (c) <%= Time.now.year %> <%= config[:author] %>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
PK@H[e�ە��Jshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/bin/console.ttnu�[���#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "<%= config[:namespaced_path] %>"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

# (If you use this, don't forget to add pry to your Gemfile!)
# require "pry"
# Pry.start

require "irb"
IRB.start(__FILE__)
PK@H[����Hshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/bin/setup.ttnu�[���#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx

bundle install

# Do any other automated setup that you need to do here
PK@H[7��##Mshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/newgem.gemspec.ttnu�[���# frozen_string_literal: true

require_relative "lib/<%=config[:namespaced_path]%>/version"

Gem::Specification.new do |spec|
  spec.name          = <%= config[:name].inspect %>
  spec.version       = <%= config[:constant_name] %>::VERSION
  spec.authors       = [<%= config[:author].inspect %>]
  spec.email         = [<%= config[:email].inspect %>]

  spec.summary       = "TODO: Write a short summary, because RubyGems requires one."
  spec.description   = "TODO: Write a longer description or delete this line."
  spec.homepage      = "TODO: Put your gem's website or public repo URL here."
<%- if config[:mit] -%>
  spec.license       = "MIT"
<%- end -%>
  spec.required_ruby_version = ">= <%= config[:required_ruby_version] %>"

  spec.metadata["allowed_push_host"] = "TODO: Set to 'https://mygemserver.com'"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
  spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
<%- if config[:ext] -%>
  spec.extensions    = ["ext/<%= config[:underscored_name] %>/extconf.rb"]
<%- end -%>

  # Uncomment to register a new dependency of your gem
  # spec.add_dependency "example-gem", "~> 1.0"

  # For more information and examples about making a new gem, checkout our
  # guide at: https://bundler.io/guides/creating_gem.html
end
PK@H[^6)g&&Rshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/circleci/config.yml.ttnu�[���version: 2.1
jobs:
  build:
    docker:
      - image: ruby:<%= RUBY_VERSION %>
    steps:
      - checkout
      - run:
          name: Run the default task
          command: |
            gem install bundler -v <%= Bundler::VERSION %>
            bundle install
            bundle exec rake
PK@H[g2����Hshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/gitignore.ttnu�[���/.bundle/
/.yardoc
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/
<%- if config[:ext] -%>
*.bundle
*.so
*.o
*.a
mkmf.log
<%- end -%>
<%- if config[:test] == "rspec" -%>

# rspec failure tracking
.rspec_status
<%- end -%>
PK@H[�?����Rshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/newgem.h.ttnu�[���#ifndef <%= config[:underscored_name].upcase %>_H
#define <%= config[:underscored_name].upcase %>_H 1

#include "ruby.h"

#endif /* <%= config[:underscored_name].upcase %>_H */
PK@H[��M��Rshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/newgem.c.ttnu�[���#include "<%= config[:underscored_name] %>.h"

VALUE rb_m<%= config[:constant_array].join %>;

void
Init_<%= config[:underscored_name] %>(void)
{
  rb_m<%= config[:constant_array].join %> = rb_define_module(<%= config[:constant_name].inspect %>);
}
PK@H[9��5ffTshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/extconf.rb.ttnu�[���# frozen_string_literal: true

require "mkmf"

create_makefile(<%= config[:makefile_path].inspect %>)
PK@H[�+���Gshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/Rakefile.ttnu�[���# frozen_string_literal: true

require "bundler/gem_tasks"
<% default_task_names = [config[:test_task]].compact -%>
<% case config[:test] -%>
<% when "minitest", "test-unit" -%>
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/*_test.rb"]
end

<% when "rspec" -%>
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

<% end -%>
<% if config[:rubocop] -%>
<% default_task_names << :rubocop -%>
require "rubocop/rake_task"

RuboCop::RakeTask.new

<% end -%>
<% if config[:ext] -%>
<% default_task_names.unshift(:clobber, :compile) -%>
require "rake/extensiontask"

task build: :compile

Rake::ExtensionTask.new("<%= config[:underscored_name] %>") do |ext|
  ext.lib_dir = "lib/<%= config[:namespaced_path] %>"
end

<% end -%>
<% if default_task_names.size == 1 -%>
task default: <%= default_task_names.first.inspect %>
<% else -%>
task default: %i[<%= default_task_names.join(" ") %>]
<% end -%>
PK@H[!5��PPKshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/CHANGELOG.md.ttnu�[���## [Unreleased]

## [0.1.0] - <%= Time.now.strftime('%F') %>

- Initial release
PK@H[v��@@Xshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/github/workflows/main.yml.ttnu�[���name: Ruby

on: [push,pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: <%= RUBY_VERSION %>
        bundler-cache: true
    - name: Run the default task
      run: bundle exec rake
PK@H[��~~Ishare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/travis.yml.ttnu�[���---
language: ruby
cache: bundler
rvm:
  - <%= RUBY_VERSION %>
before_install: gem install bundler -v <%= Bundler::VERSION %>
PK@H[/���++Jshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/rubocop.yml.ttnu�[���AllCops:
  TargetRubyVersion: <%= ::Gem::Version.new(config[:required_ruby_version]).segments[0..1].join(".") %>

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Layout/LineLength:
  Max: 120
PK@H[z��??Ishare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/exe/newgem.ttnu�[���#!/usr/bin/env ruby

require "<%= config[:namespaced_path] %>"
PK@H[��Tshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/lib/newgem/version.rb.ttnu�[���# frozen_string_literal: true

<%- config[:constant_array].each_with_index do |c, i| -%>
<%= "  " * i %>module <%= c %>
<%- end -%>
<%= "  " * config[:constant_array].size %>VERSION = "0.1.0"
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= "  " * i %>end
<%- end -%>
PK@H[��Br==Lshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/lib/newgem.rb.ttnu�[���# frozen_string_literal: true

require_relative "<%= File.basename(config[:namespaced_path]) %>/version"
<%- if config[:ext] -%>
require_relative "<%= File.basename(config[:namespaced_path]) %>/<%= config[:underscored_name] %>"
<%- end -%>

<%- config[:constant_array].each_with_index do |c, i| -%>
<%= "  " * i %>module <%= c %>
<%- end -%>
<%= "  " * config[:constant_array].size %>class Error < StandardError; end
<%= "  " * config[:constant_array].size %># Your code goes here...
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= "  " * i %>end
<%- end -%>
PK@H[Ҧ+���Rshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/spec/spec_helper.rb.ttnu�[���# frozen_string_literal: true

require "<%= config[:namespaced_path] %>"

RSpec.configure do |config|
  # Enable flags like --only-failures and --next-failure
  config.example_status_persistence_file_path = ".rspec_status"

  # Disable RSpec exposing methods globally on `Module` and `main`
  config.disable_monkey_patching!

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end
PK@H[32
���Rshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/spec/newgem_spec.rb.ttnu�[���# frozen_string_literal: true

RSpec.describe <%= config[:constant_name] %> do
  it "has a version number" do
    expect(<%= config[:constant_name] %>::VERSION).not_to be nil
  end

  it "does something useful" do
    expect(false).to eq(true)
  end
end
PK@H[�M-n��[share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/minitest/test_helper.rb.ttnu�[���# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "<%= config[:namespaced_path] %>"

require "minitest/autorun"
PK@H[-��[share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/minitest/newgem_test.rb.ttnu�[���# frozen_string_literal: true

require "test_helper"

class <%= config[:constant_name] %>Test < Minitest::Test
  def test_that_it_has_a_version_number
    refute_nil ::<%= config[:constant_name] %>::VERSION
  end

  def test_it_does_something_useful
    assert false
  end
end
PK@H[G�>J��\share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.ttnu�[���# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "<%= config[:namespaced_path] %>"

require "test-unit"
PK@H[q��{33\share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.ttnu�[���# frozen_string_literal: true

require "test_helper"

class <%= config[:constant_name] %>Test < Test::Unit::TestCase
  test "VERSION" do
    assert do
      ::<%= config[:constant_name] %>.const_defined?(:VERSION)
    end
  end

  test "something useful" do
    assert_equal("expected", "actual")
  end
end
PK@H[�!5c|	|	Hshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/README.md.ttnu�[���# <%= config[:constant_name] %>

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/<%= config[:namespaced_path] %>`. To experiment with that code, run `bin/console` for an interactive prompt.

TODO: Delete this and the text above, and describe your gem

## Installation

Add this line to your application's Gemfile:

```ruby
gem '<%= config[:name] %>'
```

And then execute:

    $ bundle install

Or install it yourself as:

    $ gem install <%= config[:name] %>

## Usage

TODO: Write usage instructions here

## Development

After checking out the repo, run `bin/setup` to install dependencies.<% if config[:test] %> Then, run `rake <%= config[:test].sub('mini', '').sub('rspec', 'spec') %>` to run the tests.<% end %> You can also run `bin/console` for an interactive prompt that will allow you to experiment.<% if config[:bin] %> Run `bundle exec <%= config[:name] %>` to use the gem in this directory, ignoring other installed copies of this gem.<% end %>

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
<% if config[:git] -%>

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/<%= config[:github_username] %>/<%= config[:name] %>.<% if config[:coc] %> This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/<%= config[:github_username] %>/<%= config[:name] %>/blob/<%= config[:git_default_branch] %>/CODE_OF_CONDUCT.md).<% end %>
<% end -%>
<% if config[:mit] -%>

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
<% end -%>
<% if config[:git] && config[:coc] -%>

## Code of Conduct

Everyone interacting in the <%= config[:constant_name] %> project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/<%= config[:github_username] %>/<%= config[:name] %>/blob/<%= config[:git_default_branch] %>/CODE_OF_CONDUCT.md).
<% end -%>
PK@H[�rə��Fshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/Gemfile.ttnu�[���# frozen_string_literal: true

source "https://rubygems.org"

# Specify your gem's dependencies in <%= config[:name] %>.gemspec
gemspec

gem "rake", "~> 13.0"
<%- if config[:ext] -%>

gem "rake-compiler"
<%- end -%>
<%- if config[:test] -%>

gem "<%= config[:test] %>", "~> <%= config[:test_framework_version] %>"
<%- end -%>
<%- if config[:rubocop] -%>

gem "rubocop", "~> <%= config[:rubocop_version] %>"
<%- end -%>
PK@H[�44.��Lshare/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/gitlab-ci.yml.ttnu�[���image: ruby:<%= RUBY_VERSION %>

before_script:
  - gem install bundler -v <%= Bundler::VERSION %>
  - bundle install

example_job:
  script:
    - bundle exec rake
PK@H[”}Ñ�?share/gems/gems/bundler-2.2.24/lib/bundler/templates/Executablenu�[���#!/usr/bin/env <%= Bundler.settings[:shebang] || RbConfig::CONFIG["ruby_install_name"] %>
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application '<%= executable %>' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../<%= relative_gemfile_path %>",
  Pathname.new(__FILE__).realpath)

bundle_binstub = File.expand_path("../bundle", __FILE__)

if File.file?(bundle_binstub)
  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
    load(bundle_binstub)
  else
    abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
  end
end

require "rubygems"
require "bundler/setup"

load Gem.bin_path("<%= spec.name %>", "<%= executable %>")
PK@H[Ba7��<share/gems/gems/bundler-2.2.24/lib/bundler/templates/gems.rbnu�[���# frozen_string_literal: true

# A sample gems.rb
source "https://rubygems.org"

git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

# gem "rails"
PK@H[�t���<share/gems/gems/bundler-2.2.24/lib/bundler/templates/Gemfilenu�[���# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

# gem "rails"
PK@H[Piy�@
@
Ashare/gems/gems/bundler-2.2.24/lib/bundler/resolver/spec_group.rbnu�[���# frozen_string_literal: true

module Bundler
  class Resolver
    class SpecGroup
      attr_accessor :name, :version, :source
      attr_accessor :activated_platforms

      def self.create_for(specs, all_platforms, specific_platform)
        specific_platform_specs = specs[specific_platform]
        return unless specific_platform_specs.any?

        platforms = all_platforms.select {|p| specs[p].any? }

        new(specific_platform_specs.first, specs, platforms)
      end

      def initialize(exemplary_spec, specs, relevant_platforms)
        @exemplary_spec = exemplary_spec
        @name = exemplary_spec.name
        @version = exemplary_spec.version
        @source = exemplary_spec.source

        @activated_platforms = relevant_platforms
        @dependencies = Hash.new do |dependencies, platforms|
          dependencies[platforms] = dependencies_for(platforms)
        end
        @specs = specs
      end

      def to_specs
        activated_platforms.map do |p|
          specs = @specs[p]
          next unless specs.any?

          specs.map do |s|
            lazy_spec = LazySpecification.new(name, version, s.platform, source)
            lazy_spec.dependencies.replace s.dependencies
            lazy_spec
          end
        end.flatten.compact.uniq
      end

      def to_s
        activated_platforms_string = sorted_activated_platforms.join(", ")
        "#{name} (#{version}) (#{activated_platforms_string})"
      end

      def dependencies_for_activated_platforms
        @dependencies[activated_platforms]
      end

      def ==(other)
        return unless other.is_a?(SpecGroup)
        name == other.name &&
          version == other.version &&
          sorted_activated_platforms == other.sorted_activated_platforms &&
          source == other.source
      end

      def eql?(other)
        return unless other.is_a?(SpecGroup)
        name.eql?(other.name) &&
          version.eql?(other.version) &&
          sorted_activated_platforms.eql?(other.sorted_activated_platforms) &&
          source.eql?(other.source)
      end

      def hash
        name.hash ^ version.hash ^ sorted_activated_platforms.hash ^ source.hash
      end

      protected

      def sorted_activated_platforms
        activated_platforms.sort_by(&:to_s)
      end

      private

      def dependencies_for(platforms)
        platforms.map do |platform|
          __dependencies(platform) + metadata_dependencies(platform)
        end.flatten
      end

      def __dependencies(platform)
        dependencies = []
        @specs[platform].first.dependencies.each do |dep|
          next if dep.type == :development
          dependencies << DepProxy.get_proxy(dep, platform)
        end
        dependencies
      end

      def metadata_dependencies(platform)
        spec = @specs[platform].first
        return [] unless spec.is_a?(Gem::Specification)
        dependencies = []
        if !spec.required_ruby_version.nil? && !spec.required_ruby_version.none?
          dependencies << DepProxy.get_proxy(Gem::Dependency.new("Ruby\0", spec.required_ruby_version), platform)
        end
        if !spec.required_rubygems_version.nil? && !spec.required_rubygems_version.none?
          dependencies << DepProxy.get_proxy(Gem::Dependency.new("RubyGems\0", spec.required_rubygems_version), platform)
        end
        dependencies
      end
    end
  end
end
PK@H[H�T���Dshare/gems/gems/bundler-2.2.24/lib/bundler/rubygems_gem_installer.rbnu�[���# frozen_string_literal: true

require "rubygems/installer"

module Bundler
  class RubyGemsGemInstaller < Gem::Installer
    def check_executable_overwrite(filename)
      # Bundler needs to install gems regardless of binstub overwriting
    end

    def install
      pre_install_checks

      run_pre_install_hooks

      spec.loaded_from = spec_file

      # Completely remove any previous gem files
      FileUtils.rm_rf gem_dir
      FileUtils.rm_rf spec.extension_dir

      FileUtils.mkdir_p gem_dir, :mode => 0o755

      extract_files

      build_extensions
      write_build_info_file
      run_post_build_hooks

      generate_bin
      generate_plugins

      write_spec
      write_cache_file

      say spec.post_install_message unless spec.post_install_message.nil?

      run_post_install_hooks

      spec
    end

    def generate_plugins
      return unless Gem::Installer.instance_methods(false).include?(:generate_plugins)

      latest = Gem::Specification.stubs_for(spec.name).first
      return if latest && latest.version > spec.version

      ensure_writable_dir @plugins_dir

      if spec.plugins.empty?
        remove_plugins_for(spec, @plugins_dir)
      else
        regenerate_plugins_for(spec, @plugins_dir)
      end
    end

    def pre_install_checks
      super && validate_bundler_checksum(options[:bundler_expected_checksum])
    end

    def build_extensions
      extension_cache_path = options[:bundler_extension_cache_path]
      return super unless extension_cache_path && extension_dir = spec.extension_dir

      extension_dir = Pathname.new(extension_dir)
      build_complete = SharedHelpers.filesystem_access(extension_cache_path.join("gem.build_complete"), :read, &:file?)
      if build_complete && !options[:force]
        SharedHelpers.filesystem_access(extension_dir.parent, &:mkpath)
        SharedHelpers.filesystem_access(extension_cache_path) do
          FileUtils.cp_r extension_cache_path, spec.extension_dir
        end
      else
        super
        if extension_dir.directory? # not made for gems without extensions
          SharedHelpers.filesystem_access(extension_cache_path.parent, &:mkpath)
          SharedHelpers.filesystem_access(extension_cache_path) do
            FileUtils.cp_r extension_dir, extension_cache_path
          end
        end
      end
    end

    private

    def validate_bundler_checksum(checksum)
      return true if Bundler.settings[:disable_checksum_validation]
      return true unless checksum
      return true unless source = @package.instance_variable_get(:@gem)
      return true unless source.respond_to?(:with_read_io)
      digest = source.with_read_io do |io|
        digest = SharedHelpers.digest(:SHA256).new
        digest << io.read(16_384) until io.eof?
        io.rewind
        send(checksum_type(checksum), digest)
      end
      unless digest == checksum
        raise SecurityError, <<-MESSAGE
          Bundler cannot continue installing #{spec.name} (#{spec.version}).
          The checksum for the downloaded `#{spec.full_name}.gem` does not match \
          the checksum given by the server. This means the contents of the downloaded \
          gem is different from what was uploaded to the server, and could be a potential security issue.

          To resolve this issue:
          1. delete the downloaded gem located at: `#{spec.gem_dir}/#{spec.full_name}.gem`
          2. run `bundle install`

          If you wish to continue installing the downloaded gem, and are certain it does not pose a \
          security issue despite the mismatching checksum, do the following:
          1. run `bundle config set --local disable_checksum_validation true` to turn off checksum verification
          2. run `bundle install`

          (More info: The expected SHA256 checksum was #{checksum.inspect}, but the \
          checksum for the downloaded gem was #{digest.inspect}.)
          MESSAGE
      end
      true
    end

    def checksum_type(checksum)
      case checksum.length
      when 64 then :hexdigest!
      when 44 then :base64digest!
      else raise InstallError, "The given checksum for #{spec.full_name} (#{checksum.inspect}) is not a valid SHA256 hexdigest nor base64digest"
      end
    end

    def hexdigest!(digest)
      digest.hexdigest!
    end

    def base64digest!(digest)
      if digest.respond_to?(:base64digest!)
        digest.base64digest!
      else
        [digest.digest!].pack("m0")
      end
    end
  end
end
PK@H[�4��%�%6share/gems/gems/bundler-2.2.24/lib/bundler/injector.rbnu�[���# frozen_string_literal: true

module Bundler
  class Injector
    INJECTED_GEMS = "injected gems".freeze

    def self.inject(new_deps, options = {})
      injector = new(new_deps, options)
      injector.inject(Bundler.default_gemfile, Bundler.default_lockfile)
    end

    def self.remove(gems, options = {})
      injector = new(gems, options)
      injector.remove(Bundler.default_gemfile, Bundler.default_lockfile)
    end

    def initialize(deps, options = {})
      @deps = deps
      @options = options
    end

    # @param [Pathname] gemfile_path The Gemfile in which to inject the new dependency.
    # @param [Pathname] lockfile_path The lockfile in which to inject the new dependency.
    # @return [Array]
    def inject(gemfile_path, lockfile_path)
      if Bundler.frozen_bundle?
        # ensure the lock and Gemfile are synced
        Bundler.definition.ensure_equivalent_gemfile_and_lockfile(true)
      end

      # temporarily unfreeze
      Bundler.settings.temporary(:deployment => false, :frozen => false) do
        # evaluate the Gemfile we have now
        builder = Dsl.new
        builder.eval_gemfile(gemfile_path)

        # don't inject any gems that are already in the Gemfile
        @deps -= builder.dependencies

        # add new deps to the end of the in-memory Gemfile
        # Set conservative versioning to false because
        # we want to let the resolver resolve the version first
        builder.eval_gemfile(INJECTED_GEMS, build_gem_lines(false)) if @deps.any?

        # resolve to see if the new deps broke anything
        @definition = builder.to_definition(lockfile_path, {})
        @definition.resolve_remotely!

        # since nothing broke, we can add those gems to the gemfile
        append_to(gemfile_path, build_gem_lines(@options[:conservative_versioning])) if @deps.any?

        # since we resolved successfully, write out the lockfile
        @definition.lock(Bundler.default_lockfile)

        # invalidate the cached Bundler.definition
        Bundler.reset_paths!

        # return an array of the deps that we added
        @deps
      end
    end

    # @param [Pathname] gemfile_path The Gemfile from which to remove dependencies.
    # @param [Pathname] lockfile_path The lockfile from which to remove dependencies.
    # @return [Array]
    def remove(gemfile_path, lockfile_path)
      # remove gems from each gemfiles we have
      Bundler.definition.gemfiles.each do |path|
        deps = remove_deps(path)

        show_warning("No gems were removed from the gemfile.") if deps.empty?

        deps.each {|dep| Bundler.ui.confirm "#{SharedHelpers.pretty_dependency(dep, false)} was removed." }
      end
    end

    private

    def conservative_version(spec)
      version = spec.version
      return ">= 0" if version.nil?
      segments = version.segments
      seg_end_index = version >= Gem::Version.new("1.0") ? 1 : 2

      prerelease_suffix = version.to_s.gsub(version.release.to_s, "") if version.prerelease?
      "#{version_prefix}#{segments[0..seg_end_index].join(".")}#{prerelease_suffix}"
    end

    def version_prefix
      if @options[:strict]
        "= "
      elsif @options[:optimistic]
        ">= "
      else
        "~> "
      end
    end

    def build_gem_lines(conservative_versioning)
      @deps.map do |d|
        name = d.name.dump

        requirement = if conservative_versioning
          ", \"#{conservative_version(@definition.specs[d.name][0])}\""
        else
          ", #{d.requirement.as_list.map(&:dump).join(", ")}"
        end

        if d.groups != Array(:default)
          group = d.groups.size == 1 ? ", :group => #{d.groups.first.inspect}" : ", :groups => #{d.groups.inspect}"
        end

        source = ", :source => \"#{d.source}\"" unless d.source.nil?
        git = ", :git => \"#{d.git}\"" unless d.git.nil?
        branch = ", :branch => \"#{d.branch}\"" unless d.branch.nil?

        %(gem #{name}#{requirement}#{group}#{source}#{git}#{branch})
      end.join("\n")
    end

    def append_to(gemfile_path, new_gem_lines)
      gemfile_path.open("a") do |f|
        f.puts
        f.puts new_gem_lines
      end
    end

    # evaluates a gemfile to remove the specified gem
    # from it.
    def remove_deps(gemfile_path)
      initial_gemfile = File.readlines(gemfile_path)

      Bundler.ui.info "Removing gems from #{gemfile_path}"

      # evaluate the Gemfile we have
      builder = Dsl.new
      builder.eval_gemfile(gemfile_path)

      removed_deps = remove_gems_from_dependencies(builder, @deps, gemfile_path)

      # abort the operation if no gems were removed
      # no need to operate on gemfile further
      return [] if removed_deps.empty?

      cleaned_gemfile = remove_gems_from_gemfile(@deps, gemfile_path)

      SharedHelpers.write_to_gemfile(gemfile_path, cleaned_gemfile)

      # check for errors
      # including extra gems being removed
      # or some gems not being removed
      # and return the actual removed deps
      cross_check_for_errors(gemfile_path, builder.dependencies, removed_deps, initial_gemfile)
    end

    # @param [Dsl]      builder Dsl object of current Gemfile.
    # @param [Array]    gems Array of names of gems to be removed.
    # @param [Pathname] gemfile_path Path of the Gemfile.
    # @return [Array]   Array of removed dependencies.
    def remove_gems_from_dependencies(builder, gems, gemfile_path)
      removed_deps = []

      gems.each do |gem_name|
        deleted_dep = builder.dependencies.find {|d| d.name == gem_name }

        if deleted_dep.nil?
          raise GemfileError, "`#{gem_name}` is not specified in #{gemfile_path} so it could not be removed."
        end

        builder.dependencies.delete(deleted_dep)

        removed_deps << deleted_dep
      end

      removed_deps
    end

    # @param [Array] gems            Array of names of gems to be removed.
    # @param [Pathname] gemfile_path The Gemfile from which to remove dependencies.
    def remove_gems_from_gemfile(gems, gemfile_path)
      patterns = /gem\s+(['"])#{Regexp.union(gems)}\1|gem\s*\((['"])#{Regexp.union(gems)}\2\)/
      new_gemfile = []
      multiline_removal = false
      File.readlines(gemfile_path).each do |line|
        match_data = line.match(patterns)
        if match_data && is_not_within_comment?(line, match_data)
          multiline_removal = line.rstrip.end_with?(",")
          # skip lines which match the regex
          next
        end

        # skip followup lines until line does not end with ','
        new_gemfile << line unless multiline_removal
        multiline_removal = line.rstrip.end_with?(",") if multiline_removal
      end

      # remove line \n and append them with other strings
      new_gemfile.each_with_index do |_line, index|
        if new_gemfile[index + 1] == "\n"
          new_gemfile[index] += new_gemfile[index + 1]
          new_gemfile.delete_at(index + 1)
        end
      end

      %w[group source env install_if].each {|block| remove_nested_blocks(new_gemfile, block) }

      new_gemfile.join.chomp
    end

    # @param [String] line          Individual line of gemfile content.
    # @param [MatchData] match_data Data about Regex match.
    def is_not_within_comment?(line, match_data)
      match_start_index = match_data.offset(0).first
      !line[0..match_start_index].include?("#")
    end

    # @param [Array] gemfile       Array of gemfile contents.
    # @param [String] block_name   Name of block name to look for.
    def remove_nested_blocks(gemfile, block_name)
      nested_blocks = 0

      # count number of nested blocks
      gemfile.each_with_index {|line, index| nested_blocks += 1 if !gemfile[index + 1].nil? && gemfile[index + 1].include?(block_name) && line.include?(block_name) }

      while nested_blocks >= 0
        nested_blocks -= 1

        gemfile.each_with_index do |line, index|
          next unless !line.nil? && line.strip.start_with?(block_name)
          if gemfile[index + 1] =~ /^\s*end\s*$/
            gemfile[index] = nil
            gemfile[index + 1] = nil
          end
        end

        gemfile.compact!
      end
    end

    # @param [Pathname] gemfile_path   The Gemfile from which to remove dependencies.
    # @param [Array] original_deps     Array of original dependencies.
    # @param [Array] removed_deps      Array of removed dependencies.
    # @param [Array] initial_gemfile   Contents of original Gemfile before any operation.
    def cross_check_for_errors(gemfile_path, original_deps, removed_deps, initial_gemfile)
      # evaluate the new gemfile to look for any failure cases
      builder = Dsl.new
      builder.eval_gemfile(gemfile_path)

      # record gems which were removed but not requested
      extra_removed_gems = original_deps - builder.dependencies

      # if some extra gems were removed then raise error
      # and revert Gemfile to original
      unless extra_removed_gems.empty?
        SharedHelpers.write_to_gemfile(gemfile_path, initial_gemfile.join)

        raise InvalidOption, "Gems could not be removed. #{extra_removed_gems.join(", ")} would also have been removed. Bundler cannot continue."
      end

      # record gems which could not be removed due to some reasons
      errored_deps = builder.dependencies.select {|d| d.gemfile == gemfile_path } & removed_deps.select {|d| d.gemfile == gemfile_path }

      show_warning "#{errored_deps.map(&:name).join(", ")} could not be removed." unless errored_deps.empty?

      # return actual removed dependencies
      removed_deps - errored_deps
    end

    def show_warning(message)
      Bundler.ui.info Bundler.ui.add_color(message, :yellow)
    end
  end
end
PK@H[�V����<share/gems/gems/bundler-2.2.24/lib/bundler/match_platform.rbnu�[���# frozen_string_literal: true

require_relative "gem_helpers"

module Bundler
  module MatchPlatform
    include GemHelpers

    def match_platform(p)
      MatchPlatform.platforms_match?(platform, p)
    end

    def self.platforms_match?(gemspec_platform, local_platform)
      return true if gemspec_platform.nil?
      return true if Gem::Platform::RUBY == gemspec_platform
      return true if local_platform == gemspec_platform
      gemspec_platform = Gem::Platform.new(gemspec_platform)
      return true if GemHelpers.generic(gemspec_platform) === local_platform
      return true if gemspec_platform === local_platform

      false
    end
  end
end
PK@H[#���:share/gems/gems/bundler-2.2.24/lib/bundler/current_ruby.rbnu�[���# frozen_string_literal: true

module Bundler
  # Returns current version of Ruby
  #
  # @return [CurrentRuby] Current version of Ruby
  def self.current_ruby
    @current_ruby ||= CurrentRuby.new
  end

  class CurrentRuby
    KNOWN_MINOR_VERSIONS = %w[
      1.8
      1.9
      2.0
      2.1
      2.2
      2.3
      2.4
      2.5
      2.6
      2.7
      3.0
    ].freeze

    KNOWN_MAJOR_VERSIONS = KNOWN_MINOR_VERSIONS.map {|v| v.split(".", 2).first }.uniq.freeze

    KNOWN_PLATFORMS = %w[
      jruby
      maglev
      mingw
      mri
      mswin
      mswin64
      rbx
      ruby
      truffleruby
      x64_mingw
    ].freeze

    def ruby?
      return true if Bundler::GemHelpers.generic_local_platform == Gem::Platform::RUBY

      !mswin? && (RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx" || RUBY_ENGINE == "maglev" || RUBY_ENGINE == "truffleruby")
    end

    def mri?
      !mswin? && RUBY_ENGINE == "ruby"
    end

    def rbx?
      ruby? && RUBY_ENGINE == "rbx"
    end

    def jruby?
      RUBY_ENGINE == "jruby"
    end

    def maglev?
      RUBY_ENGINE == "maglev"
    end

    def truffleruby?
      RUBY_ENGINE == "truffleruby"
    end

    def mswin?
      Gem.win_platform?
    end

    def mswin64?
      Gem.win_platform? && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mswin64" && Bundler.local_platform.cpu == "x64"
    end

    def mingw?
      Gem.win_platform? && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu != "x64"
    end

    def x64_mingw?
      Gem.win_platform? && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu == "x64"
    end

    (KNOWN_MINOR_VERSIONS + KNOWN_MAJOR_VERSIONS).each do |version|
      trimmed_version = version.tr(".", "")
      define_method(:"on_#{trimmed_version}?") do
        RUBY_VERSION.start_with?("#{version}.")
      end

      KNOWN_PLATFORMS.each do |platform|
        define_method(:"#{platform}_#{trimmed_version}?") do
          send(:"#{platform}?") && send(:"on_#{trimmed_version}?")
        end
      end
    end
  end
end
PK@H[��hFF:share/gems/gems/bundler-2.2.24/lib/bundler/psyched_yaml.rbnu�[���# frozen_string_literal: true

# Psych could be in the stdlib
# but it's too late if Syck is already loaded
begin
  require "psych" unless defined?(Syck)
rescue LoadError
  # Apparently Psych wasn't available. Oh well.
end

# At least load the YAML stdlib, whatever that may be
require "yaml" unless defined?(YAML.dump)

module Bundler
  # On encountering invalid YAML,
  # Psych raises Psych::SyntaxError
  if defined?(::Psych::SyntaxError)
    YamlLibrarySyntaxError = ::Psych::SyntaxError
  else # Syck raises ArgumentError
    YamlLibrarySyntaxError = ::ArgumentError
  end
end
PKAH[��y��Jshare/gems/gems/bundler-2.2.24/lib/bundler/installer/parallel_installer.rbnu�[���# frozen_string_literal: true

require_relative "../worker"
require_relative "gem_installer"

module Bundler
  class ParallelInstaller
    class SpecInstallation
      attr_accessor :spec, :name, :full_name, :post_install_message, :state, :error
      def initialize(spec)
        @spec = spec
        @name = spec.name
        @full_name = spec.full_name
        @state = :none
        @post_install_message = ""
        @error = nil
      end

      def installed?
        state == :installed
      end

      def enqueued?
        state == :enqueued
      end

      def failed?
        state == :failed
      end

      def ready_to_enqueue?
        state == :none
      end

      def has_post_install_message?
        !post_install_message.empty?
      end

      def ignorable_dependency?(dep)
        dep.type == :development || dep.name == @name
      end

      # Checks installed dependencies against spec's dependencies to make
      # sure needed dependencies have been installed.
      def dependencies_installed?(all_specs)
        installed_specs = all_specs.select(&:installed?).map(&:name)
        dependencies.all? {|d| installed_specs.include? d.name }
      end

      # Represents only the non-development dependencies, the ones that are
      # itself and are in the total list.
      def dependencies
        @dependencies ||= all_dependencies.reject {|dep| ignorable_dependency? dep }
      end

      def missing_lockfile_dependencies(all_spec_names)
        dependencies.reject {|dep| all_spec_names.include? dep.name }
      end

      # Represents all dependencies
      def all_dependencies
        @spec.dependencies
      end

      def to_s
        "#<#{self.class} #{full_name} (#{state})>"
      end
    end

    def self.call(*args)
      new(*args).call
    end

    attr_reader :size

    def initialize(installer, all_specs, size, standalone, force)
      @installer = installer
      @size = size
      @standalone = standalone
      @force = force
      @specs = all_specs.map {|s| SpecInstallation.new(s) }
      @spec_set = all_specs
      @rake = @specs.find {|s| s.name == "rake" }
    end

    def call
      check_for_corrupt_lockfile

      if @rake
        do_install(@rake, 0)
        Gem::Specification.reset
      end

      if @size > 1
        install_with_worker
      else
        install_serially
      end

      check_for_unmet_dependencies

      handle_error if failed_specs.any?
      @specs
    ensure
      worker_pool && worker_pool.stop
    end

    def check_for_unmet_dependencies
      unmet_dependencies = @specs.map do |s|
        [
          s,
          s.dependencies.reject {|dep| @specs.any? {|spec| dep.matches_spec?(spec.spec) } },
        ]
      end.reject {|a| a.last.empty? }
      return if unmet_dependencies.empty?

      warning = []
      warning << "Your lockfile doesn't include a valid resolution."
      warning << "You can fix this by regenerating your lockfile or trying to manually editing the bad locked gems to a version that satisfies all dependencies."
      warning << "The unmet dependencies are:"

      unmet_dependencies.each do |spec, unmet_spec_dependencies|
        unmet_spec_dependencies.each do |unmet_spec_dependency|
          warning << "* #{unmet_spec_dependency}, depended upon #{spec.full_name}, unsatisfied by #{@specs.find {|s| s.name == unmet_spec_dependency.name && !unmet_spec_dependency.matches_spec?(s.spec) }.full_name}"
        end
      end

      Bundler.ui.warn(warning.join("\n"))
    end

    def check_for_corrupt_lockfile
      missing_dependencies = @specs.map do |s|
        [
          s,
          s.missing_lockfile_dependencies(@specs.map(&:name)),
        ]
      end.reject {|a| a.last.empty? }
      return if missing_dependencies.empty?

      warning = []
      warning << "Your lockfile was created by an old Bundler that left some things out."
      if @size != 1
        warning << "Because of the missing DEPENDENCIES, we can only install gems one at a time, instead of installing #{@size} at a time."
        @size = 1
      end
      warning << "You can fix this by adding the missing gems to your Gemfile, running bundle install, and then removing the gems from your Gemfile."
      warning << "The missing gems are:"

      missing_dependencies.each do |spec, missing|
        warning << "* #{missing.map(&:name).join(", ")} depended upon by #{spec.name}"
      end

      Bundler.ui.warn(warning.join("\n"))
    end

    private

    def failed_specs
      @specs.select(&:failed?)
    end

    def install_with_worker
      enqueue_specs
      process_specs until finished_installing?
    end

    def install_serially
      until finished_installing?
        raise "failed to find a spec to enqueue while installing serially" unless spec_install = @specs.find(&:ready_to_enqueue?)
        spec_install.state = :enqueued
        do_install(spec_install, 0)
      end
    end

    def worker_pool
      @worker_pool ||= Bundler::Worker.new @size, "Parallel Installer", lambda {|spec_install, worker_num|
        do_install(spec_install, worker_num)
      }
    end

    def do_install(spec_install, worker_num)
      Plugin.hook(Plugin::Events::GEM_BEFORE_INSTALL, spec_install)
      gem_installer = Bundler::GemInstaller.new(
        spec_install.spec, @installer, @standalone, worker_num, @force
      )
      success, message = gem_installer.install_from_spec
      if success
        spec_install.state = :installed
        spec_install.post_install_message = message unless message.nil?
      else
        spec_install.error = "#{message}\n\n#{require_tree_for_spec(spec_install.spec)}"
        spec_install.state = :failed
      end
      Plugin.hook(Plugin::Events::GEM_AFTER_INSTALL, spec_install)
      spec_install
    end

    # Dequeue a spec and save its post-install message and then enqueue the
    # remaining specs.
    # Some specs might've had to wait til this spec was installed to be
    # processed so the call to `enqueue_specs` is important after every
    # dequeue.
    def process_specs
      worker_pool.deq
      enqueue_specs
    end

    def finished_installing?
      @specs.all? do |spec|
        return true if spec.failed?
        spec.installed?
      end
    end

    def handle_error
      errors = failed_specs.map(&:error)
      if exception = errors.find {|e| e.is_a?(Bundler::BundlerError) }
        raise exception
      end
      raise Bundler::InstallError, errors.join("\n\n")
    end

    def require_tree_for_spec(spec)
      tree = @spec_set.what_required(spec)
      t = String.new("In #{File.basename(SharedHelpers.default_gemfile)}:\n")
      tree.each_with_index do |s, depth|
        t << "  " * depth.succ << s.name
        unless tree.last == s
          t << %( was resolved to #{s.version}, which depends on)
        end
        t << %(\n)
      end
      t
    end

    # Keys in the remains hash represent uninstalled gems specs.
    # We enqueue all gem specs that do not have any dependencies.
    # Later we call this lambda again to install specs that depended on
    # previously installed specifications. We continue until all specs
    # are installed.
    def enqueue_specs
      @specs.select(&:ready_to_enqueue?).each do |spec|
        if spec.dependencies_installed? @specs
          spec.state = :enqueued
          worker_pool.enq spec
        end
      end
    end
  end
end
PKAH[��a!��Eshare/gems/gems/bundler-2.2.24/lib/bundler/installer/gem_installer.rbnu�[���# frozen_string_literal: true

require "shellwords"

module Bundler
  class GemInstaller
    attr_reader :spec, :standalone, :worker, :force, :installer

    def initialize(spec, installer, standalone = false, worker = 0, force = false)
      @spec = spec
      @installer = installer
      @standalone = standalone
      @worker = worker
      @force = force
    end

    def install_from_spec
      post_install_message = spec_settings ? install_with_settings : install
      Bundler.ui.debug "#{worker}:  #{spec.name} (#{spec.version}) from #{spec.loaded_from}"
      generate_executable_stubs
      return true, post_install_message
    rescue Bundler::InstallHookError, Bundler::SecurityError, Bundler::APIResponseMismatchError
      raise
    rescue Errno::ENOSPC
      return false, out_of_space_message
    rescue Bundler::BundlerError, Gem::InstallError, Bundler::APIResponseInvalidDependenciesError => e
      return false, specific_failure_message(e)
    end

    private

    def specific_failure_message(e)
      message = "#{e.class}: #{e.message}\n"
      message += "  " + e.backtrace.join("\n  ") + "\n\n" if Bundler.ui.debug?
      message = message.lines.first + Bundler.ui.add_color(message.lines.drop(1).join, :clear)
      message + Bundler.ui.add_color(failure_message, :red)
    end

    def failure_message
      return install_error_message if spec.source.options["git"]
      "#{install_error_message}\n#{gem_install_message}"
    end

    def install_error_message
      "An error occurred while installing #{spec.name} (#{spec.version}), and Bundler cannot continue."
    end

    def gem_install_message
      source = spec.source
      return unless source.respond_to?(:remotes)

      if source.remotes.size == 1
        "Make sure that `gem install #{spec.name} -v '#{spec.version}' --source '#{source.remotes.first}'` succeeds before bundling."
      else
        "Make sure that `gem install #{spec.name} -v '#{spec.version}'` succeeds before bundling."
      end
    end

    def spec_settings
      # Fetch the build settings, if there are any
      if settings = Bundler.settings["build.#{spec.name}"]
        Shellwords.shellsplit(settings)
      end
    end

    def install
      spec.source.install(spec, :force => force, :ensure_builtin_gems_cached => standalone, :build_args => Array(spec_settings))
    end

    def install_with_settings
      # Build arguments are global, so this is mutexed
      Bundler.rubygems.install_with_build_args([spec_settings]) { install }
    end

    def out_of_space_message
      "#{install_error_message}\nYour disk is out of space. Free some space to be able to install your bundle."
    end

    def generate_executable_stubs
      return if Bundler.feature_flag.forget_cli_options?
      return if Bundler.settings[:inline]
      if Bundler.settings[:bin] && standalone
        installer.generate_standalone_bundler_executable_stubs(spec)
      elsif Bundler.settings[:bin]
        installer.generate_bundler_executable_stubs(spec, :force => true)
      end
    end
  end
end
PKAH[{�sEjjBshare/gems/gems/bundler-2.2.24/lib/bundler/installer/standalone.rbnu�[���# frozen_string_literal: true

module Bundler
  class Standalone
    def initialize(groups, definition)
      @specs = definition.specs_for(groups)
    end

    def generate
      SharedHelpers.filesystem_access(bundler_path) do |p|
        FileUtils.mkdir_p(p)
      end
      File.open File.join(bundler_path, "setup.rb"), "w" do |file|
        file.puts "require 'rbconfig'"
        file.puts "ruby_engine = RUBY_ENGINE"
        file.puts "ruby_version = RbConfig::CONFIG[\"ruby_version\"]"
        file.puts "path = File.expand_path('..', __FILE__)"
        file.puts reverse_rubygems_kernel_mixin
        paths.each do |path|
          file.puts %($:.unshift File.expand_path("\#{path}/#{path}"))
        end
      end
    end

    private

    def paths
      @specs.map do |spec|
        next if spec.name == "bundler"
        Array(spec.require_paths).map do |path|
          gem_path(path, spec).sub(version_dir, '#{ruby_engine}/#{ruby_version}')
          # This is a static string intentionally. It's interpolated at a later time.
        end
      end.flatten
    end

    def version_dir
      "#{Bundler::RubyVersion.system.engine}/#{RbConfig::CONFIG["ruby_version"]}"
    end

    def bundler_path
      Bundler.root.join(Bundler.settings[:path], "bundler")
    end

    def gem_path(path, spec)
      full_path = Pathname.new(path).absolute? ? path : File.join(spec.full_gem_path, path)
      Pathname.new(full_path).relative_path_from(Bundler.root.join(bundler_path)).to_s
    rescue TypeError
      error_message = "#{spec.name} #{spec.version} has an invalid gemspec"
      raise Gem::InvalidSpecificationException.new(error_message)
    end

    def reverse_rubygems_kernel_mixin
      <<~END
      kernel = (class << ::Kernel; self; end)
      [kernel, ::Kernel].each do |k|
        if k.private_method_defined?(:gem_original_require)
          private_require = k.private_method_defined?(:require)
          k.send(:remove_method, :require)
          k.send(:define_method, :require, k.instance_method(:gem_original_require))
          k.send(:private, :require) if private_require
        end
      end
      END
    end
  end
end
PKAH[•�n��9share/gems/gems/bundler-2.2.24/lib/bundler/source_list.rbnu�[���# frozen_string_literal: true

module Bundler
  class SourceList
    attr_reader :path_sources,
      :git_sources,
      :plugin_sources,
      :global_path_source,
      :metadata_source

    def global_rubygems_source
      @global_rubygems_source ||= rubygems_aggregate_class.new("allow_local" => true)
    end

    def initialize
      @path_sources           = []
      @git_sources            = []
      @plugin_sources         = []
      @global_rubygems_source = nil
      @global_path_source     = nil
      @rubygems_sources       = []
      @metadata_source        = Source::Metadata.new

      @merged_gem_lockfile_sections = false
    end

    def merged_gem_lockfile_sections?
      @merged_gem_lockfile_sections
    end

    def merged_gem_lockfile_sections!(replacement_source)
      @merged_gem_lockfile_sections = true
      @global_rubygems_source = replacement_source
    end

    def aggregate_global_source?
      global_rubygems_source.multiple_remotes?
    end

    def add_path_source(options = {})
      if options["gemspec"]
        add_source_to_list Source::Gemspec.new(options), path_sources
      else
        path_source = add_source_to_list Source::Path.new(options), path_sources
        @global_path_source ||= path_source if options["global"]
        path_source
      end
    end

    def add_git_source(options = {})
      add_source_to_list(Source::Git.new(options), git_sources).tap do |source|
        warn_on_git_protocol(source)
      end
    end

    def add_rubygems_source(options = {})
      new_source = Source::Rubygems.new(options)
      return @global_rubygems_source if @global_rubygems_source == new_source

      add_source_to_list new_source, @rubygems_sources
    end

    def add_plugin_source(source, options = {})
      add_source_to_list Plugin.source(source).new(options), @plugin_sources
    end

    def add_global_rubygems_remote(uri)
      global_rubygems_source.add_remote(uri)
      global_rubygems_source
    end

    def default_source
      global_path_source || global_rubygems_source
    end

    def rubygems_sources
      non_global_rubygems_sources + [global_rubygems_source]
    end

    def non_global_rubygems_sources
      @rubygems_sources
    end

    def rubygems_remotes
      rubygems_sources.map(&:remotes).flatten.uniq
    end

    def all_sources
      path_sources + git_sources + plugin_sources + rubygems_sources + [metadata_source]
    end

    def non_default_explicit_sources
      all_sources - [default_source, metadata_source]
    end

    def get(source)
      source_list_for(source).find {|s| equal_source?(source, s) || equivalent_source?(source, s) }
    end

    def lock_sources
      lock_other_sources + lock_rubygems_sources
    end

    def lock_other_sources
      (path_sources + git_sources + plugin_sources).sort_by(&:to_s)
    end

    def lock_rubygems_sources
      if merged_gem_lockfile_sections?
        [combine_rubygems_sources]
      else
        rubygems_sources.sort_by(&:to_s)
      end
    end

    # Returns true if there are changes
    def replace_sources!(replacement_sources)
      return false if replacement_sources.empty?

      @path_sources, @git_sources, @plugin_sources = map_sources(replacement_sources)

      different_sources?(lock_sources, replacement_sources)
    end

    # Returns true if there are changes
    def expired_sources?(replacement_sources)
      return false if replacement_sources.empty?

      lock_sources = dup_with_replaced_sources(replacement_sources).lock_sources

      different_sources?(lock_sources, replacement_sources)
    end

    def local_only!
      all_sources.each(&:local_only!)
    end

    def cached!
      all_sources.each(&:cached!)
    end

    def remote!
      all_sources.each(&:remote!)
    end

    private

    def dup_with_replaced_sources(replacement_sources)
      new_source_list = dup
      new_source_list.replace_sources!(replacement_sources)
      new_source_list
    end

    def map_sources(replacement_sources)
      [path_sources, git_sources, plugin_sources].map do |sources|
        sources.map do |source|
          replacement_sources.find {|s| s == source } || source
        end
      end
    end

    def different_sources?(lock_sources, replacement_sources)
      !equal_sources?(lock_sources, replacement_sources) && !equivalent_sources?(lock_sources, replacement_sources)
    end

    def rubygems_aggregate_class
      Source::Rubygems
    end

    def add_source_to_list(source, list)
      list.unshift(source).uniq!
      source
    end

    def source_list_for(source)
      case source
      when Source::Git          then git_sources
      when Source::Path         then path_sources
      when Source::Rubygems     then rubygems_sources
      when Plugin::API::Source  then plugin_sources
      else raise ArgumentError, "Invalid source: #{source.inspect}"
      end
    end

    def combine_rubygems_sources
      Source::Rubygems.new("remotes" => rubygems_remotes)
    end

    def warn_on_git_protocol(source)
      return if Bundler.settings["git.allow_insecure"]

      if source.uri =~ /^git\:/
        Bundler.ui.warn "The git source `#{source.uri}` uses the `git` protocol, " \
          "which transmits data without encryption. Disable this warning with " \
          "`bundle config set --local git.allow_insecure true`, or switch to the `https` " \
          "protocol to keep your data secure."
      end
    end

    def equal_sources?(lock_sources, replacement_sources)
      lock_sources.sort_by(&:to_s) == replacement_sources.sort_by(&:to_s)
    end

    def equal_source?(source, other_source)
      return source.include?(other_source) if source.is_a?(Source::Rubygems) && other_source.is_a?(Source::Rubygems) && !merged_gem_lockfile_sections?

      source == other_source
    end

    def equivalent_source?(source, other_source)
      return false unless Bundler.settings[:allow_deployment_source_credential_changes] && source.is_a?(Source::Rubygems)

      equivalent_rubygems_sources?([source], [other_source])
    end

    def equivalent_sources?(lock_sources, replacement_sources)
      return false unless Bundler.settings[:allow_deployment_source_credential_changes]

      lock_rubygems_sources, lock_other_sources = lock_sources.partition {|s| s.is_a?(Source::Rubygems) }
      replacement_rubygems_sources, replacement_other_sources = replacement_sources.partition {|s| s.is_a?(Source::Rubygems) }

      equivalent_rubygems_sources?(lock_rubygems_sources, replacement_rubygems_sources) && equal_sources?(lock_other_sources, replacement_other_sources)
    end

    def equivalent_rubygems_sources?(lock_sources, replacement_sources)
      actual_remotes = replacement_sources.map(&:remotes).flatten.uniq
      lock_sources.all? {|s| s.equivalent_remotes?(actual_remotes) }
    end
  end
end
PKAH[�T�ee@share/gems/gems/bundler-2.2.24/lib/bundler/vendored_molinillo.rbnu�[���# frozen_string_literal: true

module Bundler; end
require_relative "vendor/molinillo/lib/molinillo"
PKAH[}X���7share/gems/gems/bundler-2.2.24/lib/bundler/gem_tasks.rbnu�[���# frozen_string_literal: true

require "rake/clean"
CLOBBER.include "pkg"

require_relative "gem_helper"
Bundler::GemHelper.install_tasks
PKAH[.���:share/gems/gems/bundler-2.2.24/lib/bundler/plugin/index.rbnu�[���# frozen_string_literal: true

module Bundler
  # Manages which plugins are installed and their sources. This also is supposed to map
  # which plugin does what (currently the features are not implemented so this class is
  # now a stub class).
  module Plugin
    class Index
      class CommandConflict < PluginError
        def initialize(plugin, commands)
          msg = "Command(s) `#{commands.join("`, `")}` declared by #{plugin} are already registered."
          super msg
        end
      end

      class SourceConflict < PluginError
        def initialize(plugin, sources)
          msg = "Source(s) `#{sources.join("`, `")}` declared by #{plugin} are already registered."
          super msg
        end
      end

      attr_reader :commands

      def initialize
        @plugin_paths = {}
        @commands = {}
        @sources = {}
        @hooks = {}
        @load_paths = {}

        begin
          load_index(global_index_file, true)
        rescue GenericSystemCallError
          # no need to fail when on a read-only FS, for example
          nil
        end
        load_index(local_index_file) if SharedHelpers.in_bundle?
      end

      # This function is to be called when a new plugin is installed. This
      # function shall add the functions of the plugin to existing maps and also
      # the name to source location.
      #
      # @param [String] name of the plugin to be registered
      # @param [String] path where the plugin is installed
      # @param [Array<String>] load_paths for the plugin
      # @param [Array<String>] commands that are handled by the plugin
      # @param [Array<String>] sources that are handled by the plugin
      def register_plugin(name, path, load_paths, commands, sources, hooks)
        old_commands = @commands.dup

        common = commands & @commands.keys
        raise CommandConflict.new(name, common) unless common.empty?
        commands.each {|c| @commands[c] = name }

        common = sources & @sources.keys
        raise SourceConflict.new(name, common) unless common.empty?
        sources.each {|k| @sources[k] = name }

        hooks.each do |event|
          event_hooks = (@hooks[event] ||= []) << name
          event_hooks.uniq!
        end

        @plugin_paths[name] = path
        @load_paths[name] = load_paths
        save_index
      rescue StandardError
        @commands = old_commands
        raise
      end

      def unregister_plugin(name)
        @commands.delete_if {|_, v| v == name }
        @sources.delete_if {|_, v| v == name }
        @hooks.each do |hook, names|
          names.delete(name)
          @hooks.delete(hook) if names.empty?
        end
        @plugin_paths.delete(name)
        @load_paths.delete(name)
        save_index
      end

      # Path of default index file
      def index_file
        Plugin.root.join("index")
      end

      # Path where the global index file is stored
      def global_index_file
        Plugin.global_root.join("index")
      end

      # Path where the local index file is stored
      def local_index_file
        Plugin.local_root.join("index")
      end

      def plugin_path(name)
        Pathname.new @plugin_paths[name]
      end

      def load_paths(name)
        @load_paths[name]
      end

      # Fetch the name of plugin handling the command
      def command_plugin(command)
        @commands[command]
      end

      def installed?(name)
        @plugin_paths[name]
      end

      def installed_plugins
        @plugin_paths.keys
      end

      def plugin_commands(plugin)
        @commands.find_all {|_, n| n == plugin }.map(&:first)
      end

      def source?(source)
        @sources.key? source
      end

      def source_plugin(name)
        @sources[name]
      end

      # Returns the list of plugin names handling the passed event
      def hook_plugins(event)
        @hooks[event] || []
      end

      private

      # Reads the index file from the directory and initializes the instance
      # variables.
      #
      # It skips the sources if the second param is true
      # @param [Pathname] index file path
      # @param [Boolean] is the index file global index
      def load_index(index_file, global = false)
        SharedHelpers.filesystem_access(index_file, :read) do |index_f|
          valid_file = index_f && index_f.exist? && !index_f.size.zero?
          break unless valid_file

          data = index_f.read

          require_relative "../yaml_serializer"
          index = YAMLSerializer.load(data)

          @commands.merge!(index["commands"])
          @hooks.merge!(index["hooks"])
          @load_paths.merge!(index["load_paths"])
          @plugin_paths.merge!(index["plugin_paths"])
          @sources.merge!(index["sources"]) unless global
        end
      end

      # Should be called when any of the instance variables change. Stores the
      # instance variables in YAML format. (The instance variables are supposed
      # to be only String key value pairs)
      def save_index
        index = {
          "commands"     => @commands,
          "hooks"        => @hooks,
          "load_paths"   => @load_paths,
          "plugin_paths" => @plugin_paths,
          "sources"      => @sources,
        }

        require_relative "../yaml_serializer"
        SharedHelpers.filesystem_access(index_file) do |index_f|
          FileUtils.mkdir_p(index_f.dirname)
          File.open(index_f, "w") {|f| f.puts YAMLSerializer.dump(index) }
        end
      end
    end
  end
end
PKAH[Ӄ�nDD;share/gems/gems/bundler-2.2.24/lib/bundler/plugin/events.rbnu�[���# frozen_string_literal: true

module Bundler
  module Plugin
    module Events
      def self.define(const, event)
        const = const.to_sym.freeze
        if const_defined?(const) && const_get(const) != event
          raise ArgumentError, "Attempting to reassign #{const} to a different value"
        end
        const_set(const, event) unless const_defined?(const)
        @events ||= {}
        @events[event] = const
      end
      private_class_method :define

      def self.reset
        @events.each_value do |const|
          remove_const(const)
        end
        @events = nil
      end
      private_class_method :reset

      # Check if an event has been defined
      # @param event [String] An event to check
      # @return [Boolean] A boolean indicating if the event has been defined
      def self.defined_event?(event)
        @events ||= {}
        @events.key?(event)
      end

      # @!parse
      #   A hook called before each individual gem is installed
      #   Includes a Bundler::ParallelInstaller::SpecInstallation.
      #   No state, error, post_install_message will be present as nothing has installed yet
      #   GEM_BEFORE_INSTALL = "before-install"
      define :GEM_BEFORE_INSTALL, "before-install"

      # @!parse
      #   A hook called after each individual gem is installed
      #   Includes a Bundler::ParallelInstaller::SpecInstallation.
      #     - If state is failed, an error will be present.
      #     - If state is success, a post_install_message may be present.
      #   GEM_AFTER_INSTALL = "after-install"
      define :GEM_AFTER_INSTALL,  "after-install"

      # @!parse
      #   A hook called before any gems install
      #   Includes an Array of Bundler::Dependency objects
      #   GEM_BEFORE_INSTALL_ALL = "before-install-all"
      define :GEM_BEFORE_INSTALL_ALL, "before-install-all"

      # @!parse
      #   A hook called after any gems install
      #   Includes an Array of Bundler::Dependency objects
      #   GEM_AFTER_INSTALL_ALL = "after-install-all"
      define :GEM_AFTER_INSTALL_ALL,  "after-install-all"
    end
  end
end
PKAH[��g�.�.?share/gems/gems/bundler-2.2.24/lib/bundler/plugin/api/source.rbnu�[���# frozen_string_literal: true

module Bundler
  module Plugin
    class API
      # This class provides the base to build source plugins
      # All the method here are required to build a source plugin (except
      # `uri_hash`, `gem_install_dir`; they are helpers).
      #
      # Defaults for methods, where ever possible are provided which is
      # expected to work. But, all source plugins have to override
      # `fetch_gemspec_files` and `install`. Defaults are also not provided for
      # `remote!`, `cache!` and `unlock!`.
      #
      # The defaults shall work for most situations but nevertheless they can
      # be (preferably should be) overridden as per the plugins' needs safely
      # (as long as they behave as expected).
      # On overriding `initialize` you should call super first.
      #
      # If required plugin should override `hash`, `==` and `eql?` methods to be
      # able to match objects representing same sources, but may be created in
      # different situation (like form gemfile and lockfile). The default ones
      # checks only for class and uri, but elaborate source plugins may need
      # more comparisons (e.g. git checking on branch or tag).
      #
      # @!attribute [r] uri
      #   @return [String] the remote specified with `source` block in Gemfile
      #
      # @!attribute [r] options
      #   @return [String] options passed during initialization (either from
      #     lockfile or Gemfile)
      #
      # @!attribute [r] name
      #   @return [String] name that can be used to uniquely identify a source
      #
      # @!attribute [rw] dependency_names
      #   @return [Array<String>] Names of dependencies that the source should
      #     try to resolve. It is not necessary to use this list internally. This
      #     is present to be compatible with `Definition` and is used by
      #     rubygems source.
      module Source
        attr_reader :uri, :options, :name
        attr_accessor :dependency_names

        def initialize(opts)
          @options = opts
          @dependency_names = []
          @uri = opts["uri"]
          @type = opts["type"]
          @name = opts["name"] || "#{@type} at #{@uri}"
        end

        # This is used by the default `spec` method to constructs the
        # Specification objects for the gems and versions that can be installed
        # by this source plugin.
        #
        # Note: If the spec method is overridden, this function is not necessary
        #
        # @return [Array<String>] paths of the gemspec files for gems that can
        #                         be installed
        def fetch_gemspec_files
          []
        end

        # Options to be saved in the lockfile so that the source plugin is able
        # to check out same version of gem later.
        #
        # There options are passed when the source plugin is created from the
        # lock file.
        #
        # @return [Hash]
        def options_to_lock
          {}
        end

        # Install the gem specified by the spec at appropriate path.
        # `install_path` provides a sufficient default, if the source can only
        # satisfy one gem,  but is not binding.
        #
        # @return [String] post installation message (if any)
        def install(spec, opts)
          raise MalformattedPlugin, "Source plugins need to override the install method."
        end

        # It builds extensions, generates bins and installs them for the spec
        # provided.
        #
        # It depends on `spec.loaded_from` to get full_gem_path. The source
        # plugins should set that.
        #
        # It should be called in `install` after the plugin is done placing the
        # gem at correct install location.
        #
        # It also runs Gem hooks `pre_install`, `post_build` and `post_install`
        #
        # Note: Do not override if you don't know what you are doing.
        def post_install(spec, disable_exts = false)
          opts = { :env_shebang => false, :disable_extensions => disable_exts }
          installer = Bundler::Source::Path::Installer.new(spec, opts)
          installer.post_install
        end

        # A default installation path to install a single gem. If the source
        # servers multiple gems, it's not of much use and the source should one
        # of its own.
        def install_path
          @install_path ||=
            begin
              base_name = File.basename(Bundler::URI.parse(uri).normalize.path)

              gem_install_dir.join("#{base_name}-#{uri_hash[0..11]}")
            end
        end

        # Parses the gemspec files to find the specs for the gems that can be
        # satisfied by the source.
        #
        # Few important points to keep in mind:
        #   - If the gems are not installed then it shall return specs for all
        #   the gems it can satisfy
        #   - If gem is installed (that is to be detected by the plugin itself)
        #   then it shall return at least the specs that are installed.
        #   - The `loaded_from` for each of the specs shall be correct (it is
        #   used to find the load path)
        #
        # @return [Bundler::Index] index containing the specs
        def specs
          files = fetch_gemspec_files

          Bundler::Index.build do |index|
            files.each do |file|
              next unless spec = Bundler.load_gemspec(file)
              Bundler.rubygems.set_installed_by_version(spec)

              spec.source = self
              Bundler.rubygems.validate(spec)

              index << spec
            end
          end
        end

        # Set internal representation to fetch the gems/specs locally.
        #
        # When this is called, the source should try to fetch the specs and
        # install from the local system.
        def local!
        end

        # Set internal representation to fetch the gems/specs from remote.
        #
        # When this is called, the source should try to fetch the specs and
        # install from remote path.
        def remote!
        end

        # Set internal representation to fetch the gems/specs from app cache.
        #
        # When this is called, the source should try to fetch the specs and
        # install from the path provided by `app_cache_path`.
        def cached!
        end

        # This is called to update the spec and installation.
        #
        # If the source plugin is loaded from lockfile or otherwise, it shall
        # refresh the cache/specs (e.g. git sources can make a fresh clone).
        def unlock!
        end

        # Name of directory where plugin the is expected to cache the gems when
        # #cache is called.
        #
        # Also this name is matched against the directories in cache for pruning
        #
        # This is used by `app_cache_path`
        def app_cache_dirname
          base_name = File.basename(Bundler::URI.parse(uri).normalize.path)
          "#{base_name}-#{uri_hash}"
        end

        # This method is called while caching to save copy of the gems that the
        # source can resolve to path provided by `app_cache_app`so that they can
        # be reinstalled from the cache without querying the remote (i.e. an
        # alternative to remote)
        #
        # This is stored with the app and source plugins should try to provide
        # specs and install only from this cache when `cached!` is called.
        #
        # This cache is different from the internal caching that can be done
        # at sub paths of `cache_path` (from API). This can be though as caching
        # by bundler.
        def cache(spec, custom_path = nil)
          new_cache_path = app_cache_path(custom_path)

          FileUtils.rm_rf(new_cache_path)
          FileUtils.cp_r(install_path, new_cache_path)
          FileUtils.touch(app_cache_path.join(".bundlecache"))
        end

        # This shall check if two source object represent the same source.
        #
        # The comparison shall take place only on the attribute that can be
        # inferred from the options passed from Gemfile and not on attributes
        # that are used to pin down the gem to specific version (e.g. Git
        # sources should compare on branch and tag but not on commit hash)
        #
        # The sources objects are constructed from Gemfile as well as from
        # lockfile. To converge the sources, it is necessary that they match.
        #
        # The same applies for `eql?` and `hash`
        def ==(other)
          other.is_a?(self.class) && uri == other.uri
        end

        # When overriding `eql?` please preserve the behaviour as mentioned in
        # docstring for `==` method.
        alias_method :eql?, :==

        # When overriding `hash` please preserve the behaviour as mentioned in
        # docstring for `==` method, i.e. two methods equal by above comparison
        # should have same hash.
        def hash
          [self.class, uri].hash
        end

        # A helper method, not necessary if not used internally.
        def installed?
          File.directory?(install_path)
        end

        # The full path where the plugin should cache the gem so that it can be
        # installed latter.
        #
        # Note: Do not override if you don't know what you are doing.
        def app_cache_path(custom_path = nil)
          @app_cache_path ||= Bundler.app_cache(custom_path).join(app_cache_dirname)
        end

        # Used by definition.
        #
        # Note: Do not override if you don't know what you are doing.
        def unmet_deps
          specs.unmet_dependency_names
        end

        # Used by definition.
        #
        # Note: Do not override if you don't know what you are doing.
        def spec_names
          specs.spec_names
        end

        # Used by definition.
        #
        # Note: Do not override if you don't know what you are doing.
        def add_dependency_names(names)
          @dependencies |= Array(names)
        end

        # Note: Do not override if you don't know what you are doing.
        def can_lock?(spec)
          spec.source == self
        end

        # Generates the content to be entered into the lockfile.
        # Saves type and remote and also calls to `options_to_lock`.
        #
        # Plugin should use `options_to_lock` to save information in lockfile
        # and not override this.
        #
        # Note: Do not override if you don't know what you are doing.
        def to_lock
          out = String.new("#{LockfileParser::PLUGIN}\n")
          out << "  remote: #{@uri}\n"
          out << "  type: #{@type}\n"
          options_to_lock.each do |opt, value|
            out << "  #{opt}: #{value}\n"
          end
          out << "  specs:\n"
        end

        def to_s
          "plugin source for #{@type} with uri #{@uri}"
        end

        # Note: Do not override if you don't know what you are doing.
        def include?(other)
          other == self
        end

        def uri_hash
          SharedHelpers.digest(:SHA1).hexdigest(uri)
        end

        # Note: Do not override if you don't know what you are doing.
        def gem_install_dir
          Bundler.install_path
        end

        # It is used to obtain the full_gem_path.
        #
        # spec's loaded_from path is expanded against this to get full_gem_path
        #
        # Note: Do not override if you don't know what you are doing.
        def root
          Bundler.root
        end

        # @private
        # Returns true
        def bundler_plugin_api_source?
          true
        end

        # @private
        # This API on source might not be stable, and for now we expect plugins
        # to download all specs in `#specs`, so we implement the method for
        # compatibility purposes and leave it undocumented (and don't support)
        # overriding it)
        def double_check_for(*); end
      end
    end
  end
end
PKAH["�x��8share/gems/gems/bundler-2.2.24/lib/bundler/plugin/dsl.rbnu�[���# frozen_string_literal: true

module Bundler
  module Plugin
    # Dsl to parse the Gemfile looking for plugins to install
    class DSL < Bundler::Dsl
      class PluginGemfileError < PluginError; end
      alias_method :_gem, :gem # To use for plugin installation as gem

      # So that we don't have to override all there methods to dummy ones
      # explicitly.
      # They will be handled by method_missing
      [:gemspec, :gem, :install_if, :platforms, :env].each {|m| undef_method m }

      # This lists the plugins that was added automatically and not specified by
      # the user.
      #
      # When we encounter :type attribute with a source block, we add a plugin
      # by name bundler-source-<type> to list of plugins to be installed.
      #
      # These plugins are optional and are not installed when there is conflict
      # with any other plugin.
      attr_reader :inferred_plugins

      def initialize
        super
        @sources = Plugin::SourceList.new
        @inferred_plugins = [] # The source plugins inferred from :type
      end

      def plugin(name, *args)
        _gem(name, *args)
      end

      def method_missing(name, *args)
        raise PluginGemfileError, "Undefined local variable or method `#{name}' for Gemfile" unless Bundler::Dsl.method_defined? name
      end

      def source(source, *args, &blk)
        options = args.last.is_a?(Hash) ? args.pop.dup : {}
        options = normalize_hash(options)
        return super unless options.key?("type")

        plugin_name = "bundler-source-#{options["type"]}"

        return if @dependencies.any? {|d| d.name == plugin_name }

        plugin(plugin_name)
        @inferred_plugins << plugin_name
      end
    end
  end
end
PKAH[{׳��
�
>share/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer.rbnu�[���# frozen_string_literal: true

module Bundler
  # Handles the installation of plugin in appropriate directories.
  #
  # This class is supposed to be wrapper over the existing gem installation infra
  # but currently it itself handles everything as the Source's subclasses (e.g. Source::RubyGems)
  # are heavily dependent on the Gemfile.
  module Plugin
    class Installer
      autoload :Rubygems, File.expand_path("installer/rubygems", __dir__)
      autoload :Git,      File.expand_path("installer/git", __dir__)

      def install(names, options)
        check_sources_consistency!(options)

        version = options[:version] || [">= 0"]

        if options[:git]
          install_git(names, version, options)
        elsif options[:local_git]
          install_local_git(names, version, options)
        else
          sources = options[:source] || Bundler.rubygems.sources
          install_rubygems(names, version, sources)
        end
      end

      # Installs the plugin from Definition object created by limited parsing of
      # Gemfile searching for plugins to be installed
      #
      # @param [Definition] definition object
      # @return [Hash] map of names to their specs they are installed with
      def install_definition(definition)
        def definition.lock(*); end
        definition.resolve_remotely!
        specs = definition.specs

        install_from_specs specs
      end

      private

      def check_sources_consistency!(options)
        if options.key?(:git) && options.key?(:local_git)
          raise InvalidOption, "Remote and local plugin git sources can't be both specified"
        end
      end

      def install_git(names, version, options)
        uri = options.delete(:git)
        options["uri"] = uri

        install_all_sources(names, version, options, options[:source])
      end

      def install_local_git(names, version, options)
        uri = options.delete(:local_git)
        options["uri"] = uri

        install_all_sources(names, version, options, options[:source])
      end

      # Installs the plugin from rubygems source and returns the path where the
      # plugin was installed
      #
      # @param [String] name of the plugin gem to search in the source
      # @param [Array] version of the gem to install
      # @param [String, Array<String>] source(s) to resolve the gem
      #
      # @return [Hash] map of names to the specs of plugins installed
      def install_rubygems(names, version, sources)
        install_all_sources(names, version, nil, sources)
      end

      def install_all_sources(names, version, git_source_options, rubygems_source)
        source_list = SourceList.new

        source_list.add_git_source(git_source_options) if git_source_options
        Array(rubygems_source).each {|remote| source_list.add_global_rubygems_remote(remote) } if rubygems_source

        deps = names.map {|name| Dependency.new name, version }

        definition = Definition.new(nil, deps, source_list, true)
        install_definition(definition)
      end

      # Installs the plugins and deps from the provided specs and returns map of
      # gems to their paths
      #
      # @param specs to install
      #
      # @return [Hash] map of names to the specs
      def install_from_specs(specs)
        paths = {}

        specs.each do |spec|
          spec.source.install spec

          paths[spec.name] = spec
        end

        paths
      end
    end
  end
end
PKAH[A���Gshare/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer/rubygems.rbnu�[���# frozen_string_literal: true

module Bundler
  module Plugin
    class Installer
      class Rubygems < Bundler::Source::Rubygems
        def version_message(spec)
          "#{spec.name} #{spec.version}"
        end

        private

        def requires_sudo?
          false # Will change on implementation of project level plugins
        end

        def rubygems_dir
          Plugin.root
        end

        def cache_path
          Plugin.cache
        end
      end
    end
  end
end
PKAH[ߛ"MaaBshare/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer/git.rbnu�[���# frozen_string_literal: true

module Bundler
  module Plugin
    class Installer
      class Git < Bundler::Source::Git
        def cache_path
          @cache_path ||= begin
            git_scope = "#{base_name}-#{uri_hash}"

            Plugin.cache.join("bundler", "git", git_scope)
          end
        end

        def install_path
          @install_path ||= begin
            git_scope = "#{base_name}-#{shortref_for_path(revision)}"

            Plugin.root.join("bundler", "gems", git_scope)
          end
        end

        def version_message(spec)
          "#{spec.name} #{spec.version}"
        end

        def root
          Plugin.root
        end

        def generate_bin(spec, disable_extensions = false)
          # Need to find a way without code duplication
          # For now, we can ignore this
        end
      end
    end
  end
end
PKAH[��AA@share/gems/gems/bundler-2.2.24/lib/bundler/plugin/source_list.rbnu�[���# frozen_string_literal: true

module Bundler
  # SourceList object to be used while parsing the Gemfile, setting the
  # approptiate options to be used with Source classes for plugin installation
  module Plugin
    class SourceList < Bundler::SourceList
      def add_git_source(options = {})
        add_source_to_list Plugin::Installer::Git.new(options), git_sources
      end

      def add_rubygems_source(options = {})
        add_source_to_list Plugin::Installer::Rubygems.new(options), @rubygems_sources
      end

      def all_sources
        path_sources + git_sources + rubygems_sources + [metadata_source]
      end

      def default_source
        git_sources.first || global_rubygems_source
      end

      private

      def rubygems_aggregate_class
        Plugin::Installer::Rubygems
      end
    end
  end
end
PKAH[�6�PP8share/gems/gems/bundler-2.2.24/lib/bundler/plugin/api.rbnu�[���# frozen_string_literal: true

module Bundler
  # This is the interfacing class represents the API that we intend to provide
  # the plugins to use.
  #
  # For plugins to be independent of the Bundler internals they shall limit their
  # interactions to methods of this class only. This will save them from breaking
  # when some internal change.
  #
  # Currently we are delegating the methods defined in Bundler class to
  # itself. So, this class acts as a buffer.
  #
  # If there is some change in the Bundler class that is incompatible to its
  # previous behavior or if otherwise desired, we can reimplement(or implement)
  # the method to preserve compatibility.
  #
  # To use this, either the class can inherit this class or use it directly.
  # For example of both types of use, refer the file `spec/plugins/command.rb`
  #
  # To use it without inheriting, you will have to create an object of this
  # to use the functions (except for declaration functions like command, source,
  # and hooks).
  module Plugin
    class API
      autoload :Source, File.expand_path("api/source", __dir__)

      # The plugins should declare that they handle a command through this helper.
      #
      # @param [String] command being handled by them
      # @param [Class] (optional) class that handles the command. If not
      #                 provided, the `self` class will be used.
      def self.command(command, cls = self)
        Plugin.add_command command, cls
      end

      # The plugins should declare that they provide a installation source
      # through this helper.
      #
      # @param [String] the source type they provide
      # @param [Class] (optional) class that handles the source. If not
      #                 provided, the `self` class will be used.
      def self.source(source, cls = self)
        cls.send :include, Bundler::Plugin::API::Source
        Plugin.add_source source, cls
      end

      def self.hook(event, &block)
        Plugin.add_hook(event, &block)
      end

      # The cache dir to be used by the plugins for storage
      #
      # @return [Pathname] path of the cache dir
      def cache_dir
        Plugin.cache.join("plugins")
      end

      # A tmp dir to be used by plugins
      # Accepts names that get concatenated as suffix
      #
      # @return [Pathname] object for the new directory created
      def tmp(*names)
        Bundler.tmp(["plugin", *names].join("-"))
      end

      def method_missing(name, *args, &blk)
        return Bundler.send(name, *args, &blk) if Bundler.respond_to?(name)

        return SharedHelpers.send(name, *args, &blk) if SharedHelpers.respond_to?(name)

        super
      end

      def respond_to_missing?(name, include_private = false)
        SharedHelpers.respond_to?(name, include_private) ||
          Bundler.respond_to?(name, include_private) || super
      end
    end
  end
end
PKAH[�
.�X�X�8share/gems/gems/bundler-2.2.24/lib/bundler/definition.rbnu�[���# frozen_string_literal: true

require_relative "lockfile_parser"

module Bundler
  class Definition
    include GemHelpers

    attr_reader(
      :dependencies,
      :locked_deps,
      :locked_gems,
      :platforms,
      :requires,
      :ruby_version,
      :lockfile,
      :gemfiles
    )

    # Given a gemfile and lockfile creates a Bundler definition
    #
    # @param gemfile [Pathname] Path to Gemfile
    # @param lockfile [Pathname,nil] Path to Gemfile.lock
    # @param unlock [Hash, Boolean, nil] Gems that have been requested
    #   to be updated or true if all gems should be updated
    # @return [Bundler::Definition]
    def self.build(gemfile, lockfile, unlock)
      unlock ||= {}
      gemfile = Pathname.new(gemfile).expand_path

      raise GemfileNotFound, "#{gemfile} not found" unless gemfile.file?

      Dsl.evaluate(gemfile, lockfile, unlock)
    end

    #
    # How does the new system work?
    #
    # * Load information from Gemfile and Lockfile
    # * Invalidate stale locked specs
    #  * All specs from stale source are stale
    #  * All specs that are reachable only through a stale
    #    dependency are stale.
    # * If all fresh dependencies are satisfied by the locked
    #  specs, then we can try to resolve locally.
    #
    # @param lockfile [Pathname] Path to Gemfile.lock
    # @param dependencies [Array(Bundler::Dependency)] array of dependencies from Gemfile
    # @param sources [Bundler::SourceList]
    # @param unlock [Hash, Boolean, nil] Gems that have been requested
    #   to be updated or true if all gems should be updated
    # @param ruby_version [Bundler::RubyVersion, nil] Requested Ruby Version
    # @param optional_groups [Array(String)] A list of optional groups
    def initialize(lockfile, dependencies, sources, unlock, ruby_version = nil, optional_groups = [], gemfiles = [])
      if [true, false].include?(unlock)
        @unlocking_bundler = false
        @unlocking = unlock
      else
        @unlocking_bundler = unlock.delete(:bundler)
        @unlocking = unlock.any? {|_k, v| !Array(v).empty? }
      end

      @dependencies    = dependencies
      @sources         = sources
      @unlock          = unlock
      @optional_groups = optional_groups
      @remote          = false
      @specs           = nil
      @ruby_version    = ruby_version
      @gemfiles        = gemfiles

      @lockfile               = lockfile
      @lockfile_contents      = String.new
      @locked_bundler_version = nil
      @locked_ruby_version    = nil
      @locked_specs_incomplete_for_platform = false
      @new_platform = nil

      if lockfile && File.exist?(lockfile)
        @lockfile_contents = Bundler.read_file(lockfile)
        @locked_gems = LockfileParser.new(@lockfile_contents)
        @locked_platforms = @locked_gems.platforms
        @platforms = @locked_platforms.dup
        @locked_bundler_version = @locked_gems.bundler_version
        @locked_ruby_version = @locked_gems.ruby_version

        if unlock != true
          @locked_deps    = @locked_gems.dependencies
          @locked_specs   = SpecSet.new(@locked_gems.specs)
          @locked_sources = @locked_gems.sources
        else
          @unlock         = {}
          @locked_deps    = {}
          @locked_specs   = SpecSet.new([])
          @locked_sources = []
        end
      else
        @unlock         = {}
        @platforms      = []
        @locked_gems    = nil
        @locked_deps    = {}
        @locked_specs   = SpecSet.new([])
        @locked_sources = []
        @locked_platforms = []
      end

      locked_gem_sources = @locked_sources.select {|s| s.is_a?(Source::Rubygems) }
      @multisource_allowed = locked_gem_sources.size == 1 && locked_gem_sources.first.multiple_remotes? && Bundler.frozen_bundle?

      if @multisource_allowed
        unless sources.aggregate_global_source?
          msg = "Your lockfile contains a single rubygems source section with multiple remotes, which is insecure. Make sure you run `bundle install` in non frozen mode and commit the result to make your lockfile secure."

          Bundler::SharedHelpers.major_deprecation 2, msg
        end

        @sources.merged_gem_lockfile_sections!(locked_gem_sources.first)
      end

      @unlock[:sources] ||= []
      @unlock[:ruby] ||= if @ruby_version && locked_ruby_version_object
        @ruby_version.diff(locked_ruby_version_object)
      end
      @unlocking ||= @unlock[:ruby] ||= (!@locked_ruby_version ^ !@ruby_version)

      add_current_platform unless current_ruby_platform_locked? || Bundler.frozen_bundle?

      converge_path_sources_to_gemspec_sources
      @path_changes = converge_paths
      @source_changes = converge_sources

      if @unlock[:conservative]
        @unlock[:gems] ||= @dependencies.map(&:name)
      else
        eager_unlock = expand_dependencies(@unlock[:gems] || [], true)
        @unlock[:gems] = @locked_specs.for(eager_unlock, false, false, false).map(&:name)
      end

      @dependency_changes = converge_dependencies
      @local_changes = converge_locals

      @requires = compute_requires
    end

    def gem_version_promoter
      @gem_version_promoter ||= begin
        locked_specs =
          if unlocking? && @locked_specs.empty? && !@lockfile_contents.empty?
            # Definition uses an empty set of locked_specs to indicate all gems
            # are unlocked, but GemVersionPromoter needs the locked_specs
            # for conservative comparison.
            Bundler::SpecSet.new(@locked_gems.specs)
          else
            @locked_specs
          end
        GemVersionPromoter.new(locked_specs, @unlock[:gems])
      end
    end

    def multisource_allowed?
      @multisource_allowed
    end

    def resolve_only_locally!
      @remote = false
      sources.local_only!
      resolve
    end

    def resolve_with_cache!
      sources.cached!
      resolve
    end

    def resolve_remotely!
      @remote = true
      sources.remote!
      resolve
    end

    # For given dependency list returns a SpecSet with Gemspec of all the required
    # dependencies.
    #  1. The method first resolves the dependencies specified in Gemfile
    #  2. After that it tries and fetches gemspec of resolved dependencies
    #
    # @return [Bundler::SpecSet]
    def specs
      @specs ||= add_bundler_to(resolve.materialize(requested_dependencies))
    rescue GemNotFound => e # Handle yanked gem
      gem_name, gem_version = extract_gem_info(e)
      locked_gem = @locked_specs[gem_name].last
      raise if locked_gem.nil? || locked_gem.version.to_s != gem_version || !@remote
      raise GemNotFound, "Your bundle is locked to #{locked_gem} from #{locked_gem.source}, but that version can " \
                         "no longer be found in that source. That means the author of #{locked_gem} has removed it. " \
                         "You'll need to update your bundle to a version other than #{locked_gem} that hasn't been " \
                         "removed in order to install."
    end

    def new_specs
      specs - @locked_specs
    end

    def removed_specs
      @locked_specs - specs
    end

    def missing_specs
      missing = []
      resolve.materialize(requested_dependencies, missing)
      missing
    end

    def missing_specs?
      missing = missing_specs
      return false if missing.empty?
      Bundler.ui.debug "The definition is missing #{missing.map(&:full_name)}"
      true
    rescue BundlerError => e
      @resolve = nil
      @specs = nil
      @gem_version_promoter = nil

      Bundler.ui.debug "The definition is missing dependencies, failed to resolve & materialize locally (#{e})"
      true
    end

    def requested_specs
      specs_for(requested_groups)
    end

    def requested_dependencies
      dependencies_for(requested_groups)
    end

    def current_dependencies
      dependencies.select do |d|
        d.should_include? && !d.gem_platforms(@platforms).empty?
      end
    end

    def specs_for(groups)
      groups = requested_groups if groups.empty?
      deps = dependencies_for(groups)
      add_bundler_to(resolve.materialize(expand_dependencies(deps)))
    end

    def dependencies_for(groups)
      groups.map!(&:to_sym)
      current_dependencies.reject do |d|
        (d.groups & groups).empty?
      end
    end

    # Resolve all the dependencies specified in Gemfile. It ensures that
    # dependencies that have been already resolved via locked file and are fresh
    # are reused when resolving dependencies
    #
    # @return [SpecSet] resolved dependencies
    def resolve
      @resolve ||= begin
        last_resolve = converge_locked_specs
        if Bundler.frozen_bundle?
          Bundler.ui.debug "Frozen, using resolution from the lockfile"
          last_resolve
        elsif !unlocking? && nothing_changed?
          Bundler.ui.debug("Found no changes, using resolution from the lockfile")
          last_resolve
        else
          # Run a resolve against the locally available gems
          Bundler.ui.debug("Found changes from the lockfile, re-resolving dependencies because #{change_reason}")
          expanded_dependencies = expand_dependencies(dependencies + metadata_dependencies, @remote)
          Resolver.resolve(expanded_dependencies, source_requirements, last_resolve, gem_version_promoter, additional_base_requirements_for_resolve, platforms)
        end
      end
    end

    def has_rubygems_remotes?
      sources.rubygems_sources.any? {|s| s.remotes.any? }
    end

    def spec_git_paths
      sources.git_sources.map {|s| File.realpath(s.path) if File.exist?(s.path) }.compact
    end

    def groups
      dependencies.map(&:groups).flatten.uniq
    end

    def lock(file, preserve_unknown_sections = false)
      contents = to_lock

      # Convert to \r\n if the existing lock has them
      # i.e., Windows with `git config core.autocrlf=true`
      contents.gsub!(/\n/, "\r\n") if @lockfile_contents.match("\r\n")

      if @locked_bundler_version
        locked_major = @locked_bundler_version.segments.first
        current_major = Gem::Version.create(Bundler::VERSION).segments.first

        if updating_major = locked_major < current_major
          Bundler.ui.warn "Warning: the lockfile is being updated to Bundler #{current_major}, " \
                          "after which you will be unable to return to Bundler #{@locked_bundler_version.segments.first}."
        end
      end

      preserve_unknown_sections ||= !updating_major && (Bundler.frozen_bundle? || !(unlocking? || @unlocking_bundler))

      return if file && File.exist?(file) && lockfiles_equal?(@lockfile_contents, contents, preserve_unknown_sections)

      if Bundler.frozen_bundle?
        Bundler.ui.error "Cannot write a changed lockfile while frozen."
        return
      end

      SharedHelpers.filesystem_access(file) do |p|
        File.open(p, "wb") {|f| f.puts(contents) }
      end
    end

    def locked_bundler_version
      if @locked_bundler_version && @locked_bundler_version < Gem::Version.new(Bundler::VERSION)
        new_version = Bundler::VERSION
      end

      new_version || @locked_bundler_version || Bundler::VERSION
    end

    def locked_ruby_version
      return unless ruby_version
      if @unlock[:ruby] || !@locked_ruby_version
        Bundler::RubyVersion.system
      else
        @locked_ruby_version
      end
    end

    def locked_ruby_version_object
      return unless @locked_ruby_version
      @locked_ruby_version_object ||= begin
        unless version = RubyVersion.from_string(@locked_ruby_version)
          raise LockfileError, "The Ruby version #{@locked_ruby_version} from " \
            "#{@lockfile} could not be parsed. " \
            "Try running bundle update --ruby to resolve this."
        end
        version
      end
    end

    def to_lock
      require_relative "lockfile_generator"
      LockfileGenerator.generate(self)
    end

    def ensure_equivalent_gemfile_and_lockfile(explicit_flag = false)
      msg = String.new
      msg << "You are trying to install in deployment mode after changing\n" \
             "your Gemfile. Run `bundle install` elsewhere and add the\n" \
             "updated #{Bundler.default_lockfile.relative_path_from(SharedHelpers.pwd)} to version control."

      unless explicit_flag
        suggested_command = if Bundler.settings.locations("frozen").keys.&([:global, :local]).any?
          "bundle config unset frozen"
        elsif Bundler.settings.locations("deployment").keys.&([:global, :local]).any?
          "bundle config unset deployment"
        end
        msg << "\n\nIf this is a development machine, remove the #{Bundler.default_gemfile} " \
               "freeze \nby running `#{suggested_command}`."
      end

      added =   []
      deleted = []
      changed = []

      new_platforms = @platforms - @locked_platforms
      deleted_platforms = @locked_platforms - @platforms
      added.concat new_platforms.map {|p| "* platform: #{p}" }
      deleted.concat deleted_platforms.map {|p| "* platform: #{p}" }

      gemfile_sources = sources.lock_sources

      new_sources = gemfile_sources - @locked_sources
      deleted_sources = @locked_sources - gemfile_sources

      new_deps = @dependencies - @locked_deps.values
      deleted_deps = @locked_deps.values - @dependencies

      # Check if it is possible that the source is only changed thing
      if (new_deps.empty? && deleted_deps.empty?) && (!new_sources.empty? && !deleted_sources.empty?)
        new_sources.reject! {|source| (source.path? && source.path.exist?) || equivalent_rubygems_remotes?(source) }
        deleted_sources.reject! {|source| (source.path? && source.path.exist?) || equivalent_rubygems_remotes?(source) }
      end

      if @locked_sources != gemfile_sources
        if new_sources.any?
          added.concat new_sources.map {|source| "* source: #{source}" }
        end

        if deleted_sources.any?
          deleted.concat deleted_sources.map {|source| "* source: #{source}" }
        end
      end

      added.concat new_deps.map {|d| "* #{pretty_dep(d)}" } if new_deps.any?
      if deleted_deps.any?
        deleted.concat deleted_deps.map {|d| "* #{pretty_dep(d)}" }
      end

      both_sources = Hash.new {|h, k| h[k] = [] }
      @dependencies.each {|d| both_sources[d.name][0] = d }
      @locked_deps.each  {|name, d| both_sources[name][1] = d.source }

      both_sources.each do |name, (dep, lock_source)|
        next if lock_source.nil? || (dep && lock_source.can_lock?(dep))
        gemfile_source_name = (dep && dep.source) || "no specified source"
        lockfile_source_name = lock_source
        changed << "* #{name} from `#{gemfile_source_name}` to `#{lockfile_source_name}`"
      end

      reason = change_reason
      msg << "\n\n#{reason.split(", ").map(&:capitalize).join("\n")}" unless reason.strip.empty?
      msg << "\n\nYou have added to the Gemfile:\n" << added.join("\n") if added.any?
      msg << "\n\nYou have deleted from the Gemfile:\n" << deleted.join("\n") if deleted.any?
      msg << "\n\nYou have changed in the Gemfile:\n" << changed.join("\n") if changed.any?
      msg << "\n"

      raise ProductionError, msg if added.any? || deleted.any? || changed.any? || !nothing_changed?
    end

    def validate_runtime!
      validate_ruby!
      validate_platforms!
    end

    def validate_ruby!
      return unless ruby_version

      if diff = ruby_version.diff(Bundler::RubyVersion.system)
        problem, expected, actual = diff

        msg = case problem
              when :engine
                "Your Ruby engine is #{actual}, but your Gemfile specified #{expected}"
              when :version
                "Your Ruby version is #{actual}, but your Gemfile specified #{expected}"
              when :engine_version
                "Your #{Bundler::RubyVersion.system.engine} version is #{actual}, but your Gemfile specified #{ruby_version.engine} #{expected}"
              when :patchlevel
                if !expected.is_a?(String)
                  "The Ruby patchlevel in your Gemfile must be a string"
                else
                  "Your Ruby patchlevel is #{actual}, but your Gemfile specified #{expected}"
                end
        end

        raise RubyVersionMismatch, msg
      end
    end

    def validate_platforms!
      return if current_platform_locked?

      raise ProductionError, "Your bundle only supports platforms #{@platforms.map(&:to_s)} " \
        "but your local platform is #{Bundler.local_platform}. " \
        "Add the current platform to the lockfile with `bundle lock --add-platform #{Bundler.local_platform}` and try again."
    end

    def add_platform(platform)
      @new_platform ||= !@platforms.include?(platform)
      @platforms |= [platform]
    end

    def remove_platform(platform)
      return if @platforms.delete(Gem::Platform.new(platform))
      raise InvalidOption, "Unable to remove the platform `#{platform}` since the only platforms are #{@platforms.join ", "}"
    end

    def most_specific_locked_platform
      @platforms.min_by do |bundle_platform|
        platform_specificity_match(bundle_platform, local_platform)
      end
    end

    attr_reader :sources
    private :sources

    def nothing_changed?
      !@source_changes && !@dependency_changes && !@new_platform && !@path_changes && !@local_changes && !@locked_specs_incomplete_for_platform
    end

    def unlocking?
      @unlocking
    end

    private

    def add_bundler_to(specs)
      unless specs["bundler"].any?
        bundler = sources.metadata_source.specs.search(Gem::Dependency.new("bundler", VERSION)).last
        specs["bundler"] = bundler
      end

      specs
    end

    def precompute_source_requirements_for_indirect_dependencies?
      sources.non_global_rubygems_sources.all?(&:dependency_api_available?) && !sources.aggregate_global_source?
    end

    def current_ruby_platform_locked?
      return false unless generic_local_platform == Gem::Platform::RUBY

      current_platform_locked?
    end

    def current_platform_locked?
      @platforms.any? do |bundle_platform|
        MatchPlatform.platforms_match?(bundle_platform, Bundler.local_platform)
      end
    end

    def add_current_platform
      add_platform(local_platform)
    end

    def change_reason
      if unlocking?
        unlock_reason = @unlock.reject {|_k, v| Array(v).empty? }.map do |k, v|
          if v == true
            k.to_s
          else
            v = Array(v)
            "#{k}: (#{v.join(", ")})"
          end
        end.join(", ")
        return "bundler is unlocking #{unlock_reason}"
      end
      [
        [@source_changes, "the list of sources changed"],
        [@dependency_changes, "the dependencies in your gemfile changed"],
        [@new_platform, "you added a new platform to your gemfile"],
        [@path_changes, "the gemspecs for path gems changed"],
        [@local_changes, "the gemspecs for git local gems changed"],
        [@locked_specs_incomplete_for_platform, "the lockfile does not have all gems needed for the current platform"],
      ].select(&:first).map(&:last).join(", ")
    end

    def pretty_dep(dep, source = false)
      SharedHelpers.pretty_dependency(dep, source)
    end

    # Check if the specs of the given source changed
    # according to the locked source.
    def specs_changed?(source)
      locked = @locked_sources.find {|s| s == source }

      !locked || dependencies_for_source_changed?(source, locked) || specs_for_source_changed?(source)
    end

    def dependencies_for_source_changed?(source, locked_source = source)
      deps_for_source = @dependencies.select {|s| s.source == source }
      locked_deps_for_source = @locked_deps.values.select {|dep| dep.source == locked_source }

      deps_for_source.uniq.sort != locked_deps_for_source.sort
    end

    def specs_for_source_changed?(source)
      locked_index = Index.new
      locked_index.use(@locked_specs.select {|s| source.can_lock?(s) })

      # order here matters, since Index#== is checking source.specs.include?(locked_index)
      locked_index != source.specs
    rescue PathError, GitError => e
      Bundler.ui.debug "Assuming that #{source} has not changed since fetching its specs errored (#{e})"
      false
    end

    # Get all locals and override their matching sources.
    # Return true if any of the locals changed (for example,
    # they point to a new revision) or depend on new specs.
    def converge_locals
      locals = []

      Bundler.settings.local_overrides.map do |k, v|
        spec   = @dependencies.find {|s| s.name == k }
        source = spec && spec.source
        if source && source.respond_to?(:local_override!)
          source.unlock! if @unlock[:gems].include?(spec.name)
          locals << [source, source.local_override!(v)]
        end
      end

      sources_with_changes = locals.select do |source, changed|
        changed || specs_changed?(source)
      end.map(&:first)
      !sources_with_changes.each {|source| @unlock[:sources] << source.name }.empty?
    end

    def converge_paths
      sources.path_sources.any? do |source|
        specs_changed?(source)
      end
    end

    def converge_path_source_to_gemspec_source(source)
      return source unless source.instance_of?(Source::Path)
      gemspec_source = sources.path_sources.find {|s| s.is_a?(Source::Gemspec) && s.as_path_source == source }
      gemspec_source || source
    end

    def converge_path_sources_to_gemspec_sources
      @locked_sources.map! do |source|
        converge_path_source_to_gemspec_source(source)
      end
      @locked_specs.each do |spec|
        spec.source &&= converge_path_source_to_gemspec_source(spec.source)
      end
      @locked_deps.each do |_, dep|
        dep.source &&= converge_path_source_to_gemspec_source(dep.source)
      end
    end

    def converge_sources
      # Replace the sources from the Gemfile with the sources from the Gemfile.lock,
      # if they exist in the Gemfile.lock and are `==`. If you can't find an equivalent
      # source in the Gemfile.lock, use the one from the Gemfile.
      changes = sources.replace_sources!(@locked_sources)

      sources.all_sources.each do |source|
        # If the source is unlockable and the current command allows an unlock of
        # the source (for example, you are doing a `bundle update <foo>` of a git-pinned
        # gem), unlock it. For git sources, this means to unlock the revision, which
        # will cause the `ref` used to be the most recent for the branch (or master) if
        # an explicit `ref` is not used.
        if source.respond_to?(:unlock!) && @unlock[:sources].include?(source.name)
          source.unlock!
          changes = true
        end
      end

      changes
    end

    def converge_dependencies
      frozen = Bundler.frozen_bundle?
      (@dependencies + @locked_deps.values).each do |dep|
        locked_source = @locked_deps[dep.name]
        # This is to make sure that if bundler is installing in deployment mode and
        # after locked_source and sources don't match, we still use locked_source.
        if frozen && !locked_source.nil? &&
            locked_source.respond_to?(:source) && locked_source.source.instance_of?(Source::Path) && locked_source.source.path.exist?
          dep.source = locked_source.source
        elsif dep.source
          dep.source = sources.get(dep.source)
        end
      end

      changes = false
      # We want to know if all match, but don't want to check all entries
      # This means we need to return false if any dependency doesn't match
      # the lock or doesn't exist in the lock.
      @dependencies.each do |dependency|
        unless locked_dep = @locked_deps[dependency.name]
          changes = true
          next
        end

        # Gem::Dependency#== matches Gem::Dependency#type. As the lockfile
        # doesn't carry a notion of the dependency type, if you use
        # add_development_dependency in a gemspec that's loaded with the gemspec
        # directive, the lockfile dependencies and resolved dependencies end up
        # with a mismatch on #type. Work around that by setting the type on the
        # dep from the lockfile.
        locked_dep.instance_variable_set(:@type, dependency.type)

        # We already know the name matches from the hash lookup
        # so we only need to check the requirement now
        changes ||= dependency.requirement != locked_dep.requirement
      end

      changes
    end

    # Remove elements from the locked specs that are expired. This will most
    # commonly happen if the Gemfile has changed since the lockfile was last
    # generated
    def converge_locked_specs
      deps = []

      # Build a list of dependencies that are the same in the Gemfile
      # and Gemfile.lock. If the Gemfile modified a dependency, but
      # the gem in the Gemfile.lock still satisfies it, this is fine
      # too.
      @dependencies.each do |dep|
        locked_dep = @locked_deps[dep.name]

        # If the locked_dep doesn't match the dependency we're looking for then we ignore the locked_dep
        locked_dep = nil unless locked_dep == dep

        if in_locked_deps?(dep, locked_dep) || satisfies_locked_spec?(dep)
          deps << dep
        elsif dep.source.is_a?(Source::Path) && dep.current_platform? && (!locked_dep || dep.source != locked_dep.source)
          @locked_specs.each do |s|
            @unlock[:gems] << s.name if s.source == dep.source
          end

          dep.source.unlock! if dep.source.respond_to?(:unlock!)
          dep.source.specs.each {|s| @unlock[:gems] << s.name }
        end
      end

      converged = []
      @locked_specs.each do |s|
        # Replace the locked dependency's source with the equivalent source from the Gemfile
        dep = @dependencies.find {|d| s.satisfies?(d) }
        s.source = (dep && dep.source) || sources.get(s.source)

        # Don't add a spec to the list if its source is expired. For example,
        # if you change a Git gem to RubyGems.
        next if s.source.nil?
        next if @unlock[:sources].include?(s.source.name)

        # If the spec is from a path source and it doesn't exist anymore
        # then we unlock it.

        # Path sources have special logic
        if s.source.instance_of?(Source::Path) || s.source.instance_of?(Source::Gemspec)
          new_specs = begin
            s.source.specs
          rescue PathError, GitError
            # if we won't need the source (according to the lockfile),
            # don't error if the path/git source isn't available
            next if @locked_specs.
                    for(requested_dependencies, false, true, false).
                    none? {|locked_spec| locked_spec.source == s.source }

            raise
          end

          new_spec = new_specs[s].first

          # If the spec is no longer in the path source, unlock it. This
          # commonly happens if the version changed in the gemspec
          next unless new_spec

          s.dependencies.replace(new_spec.dependencies)
        end

        converged << s
      end

      resolve = SpecSet.new(converged)
      @locked_specs_incomplete_for_platform = !resolve.for(expand_dependencies(requested_dependencies & deps), true, true)
      resolve = SpecSet.new(resolve.for(expand_dependencies(deps, true), false, false, false).reject{|s| @unlock[:gems].include?(s.name) })
      diff    = nil

      # Now, we unlock any sources that do not have anymore gems pinned to it
      sources.all_sources.each do |source|
        next unless source.respond_to?(:unlock!)

        unless resolve.any? {|s| s.source == source }
          diff ||= @locked_specs.to_a - resolve.to_a
          source.unlock! if diff.any? {|s| s.source == source }
        end
      end

      resolve
    end

    def in_locked_deps?(dep, locked_dep)
      # Because the lockfile can't link a dep to a specific remote, we need to
      # treat sources as equivalent anytime the locked dep has all the remotes
      # that the Gemfile dep does.
      locked_dep && locked_dep.source && dep.source && locked_dep.source.include?(dep.source)
    end

    def satisfies_locked_spec?(dep)
      @locked_specs[dep].any? {|s| s.satisfies?(dep) && (!dep.source || s.source.include?(dep.source)) }
    end

    def metadata_dependencies
      @metadata_dependencies ||= begin
        ruby_versions = ruby_version_requirements(@ruby_version)
        [
          Dependency.new("Ruby\0", ruby_versions),
          Dependency.new("RubyGems\0", Gem::VERSION),
        ]
      end
    end

    def ruby_version_requirements(ruby_version)
      return [] unless ruby_version
      if ruby_version.patchlevel
        [ruby_version.to_gem_version_with_patchlevel]
      else
        ruby_version.versions.map do |version|
          requirement = Gem::Requirement.new(version)
          if requirement.exact?
            "~> #{version}.0"
          else
            requirement
          end
        end
      end
    end

    def expand_dependencies(dependencies, remote = false)
      deps = []
      dependencies.each do |dep|
        dep = Dependency.new(dep, ">= 0") unless dep.respond_to?(:name)
        next unless remote || dep.current_platform?
        target_platforms = dep.gem_platforms(remote ? @platforms : [generic_local_platform])
        deps += expand_dependency_with_platforms(dep, target_platforms)
      end
      deps
    end

    def expand_dependency_with_platforms(dep, platforms)
      platforms.map do |p|
        DepProxy.get_proxy(dep, p)
      end
    end

    def source_requirements
      # Record the specs available in each gem's source, so that those
      # specs will be available later when the resolver knows where to
      # look for that gemspec (or its dependencies)
      source_requirements = if precompute_source_requirements_for_indirect_dependencies?
        { :default => sources.default_source }.merge(source_map.all_requirements)
      else
        { :default => Source::RubygemsAggregate.new(sources, source_map) }.merge(source_map.direct_requirements)
      end
      metadata_dependencies.each do |dep|
        source_requirements[dep.name] = sources.metadata_source
      end
      source_requirements[:default_bundler] = source_requirements["bundler"] || sources.default_source
      source_requirements["bundler"] = sources.metadata_source # needs to come last to override
      source_requirements
    end

    def requested_groups
      groups - Bundler.settings[:without] - @optional_groups + Bundler.settings[:with]
    end

    def lockfiles_equal?(current, proposed, preserve_unknown_sections)
      if preserve_unknown_sections
        sections_to_ignore = LockfileParser.sections_to_ignore(@locked_bundler_version)
        sections_to_ignore += LockfileParser.unknown_sections_in_lockfile(current)
        sections_to_ignore += LockfileParser::ENVIRONMENT_VERSION_SECTIONS
        pattern = /#{Regexp.union(sections_to_ignore)}\n(\s{2,}.*\n)+/
        whitespace_cleanup = /\n{2,}/
        current = current.gsub(pattern, "\n").gsub(whitespace_cleanup, "\n\n").strip
        proposed = proposed.gsub(pattern, "\n").gsub(whitespace_cleanup, "\n\n").strip
      end
      current == proposed
    end

    def extract_gem_info(error)
      # This method will extract the error message like "Could not find foo-1.2.3 in any of the sources"
      # to an array. The first element will be the gem name (e.g. foo), the second will be the version number.
      error.message.scan(/Could not find (\w+)-(\d+(?:\.\d+)+)/).flatten
    end

    def compute_requires
      dependencies.reduce({}) do |requires, dep|
        next requires unless dep.should_include?
        requires[dep.name] = Array(dep.autorequire || dep.name).map do |file|
          # Allow `require: true` as an alias for `require: <name>`
          file == true ? dep.name : file
        end
        requires
      end
    end

    def additional_base_requirements_for_resolve
      return [] unless @locked_gems && unlocking? && !sources.expired_sources?(@locked_gems.sources)
      dependencies_by_name = dependencies.inject({}) {|memo, dep| memo.update(dep.name => dep) }
      @locked_gems.specs.reduce({}) do |requirements, locked_spec|
        name = locked_spec.name
        dependency = dependencies_by_name[name]
        next requirements if @locked_gems.dependencies[name] != dependency
        next requirements if dependency && dependency.source.is_a?(Source::Path)
        dep = Gem::Dependency.new(name, ">= #{locked_spec.version}")
        requirements[name] = DepProxy.get_proxy(dep, locked_spec.platform)
        requirements
      end.values
    end

    def equivalent_rubygems_remotes?(source)
      return false unless source.is_a?(Source::Rubygems)

      Bundler.settings[:allow_deployment_source_credential_changes] && source.equivalent_remotes?(sources.rubygems_remotes)
    end

    def source_map
      @source_map ||= SourceMap.new(sources, dependencies)
    end
  end
end
PKAH[�4f�++Bshare/gems/gems/bundler-2.2.24/lib/bundler/gem_version_promoter.rbnu�[���# frozen_string_literal: true

module Bundler
  # This class contains all of the logic for determining the next version of a
  # Gem to update to based on the requested level (patch, minor, major).
  # Primarily designed to work with Resolver which will provide it the list of
  # available dependency versions as found in its index, before returning it to
  # to the resolution engine to select the best version.
  class GemVersionPromoter
    DEBUG = ENV["BUNDLER_DEBUG_RESOLVER"] || ENV["DEBUG_RESOLVER"]

    attr_reader :level, :locked_specs, :unlock_gems

    # By default, strict is false, meaning every available version of a gem
    # is returned from sort_versions. The order gives preference to the
    # requested level (:patch, :minor, :major) but in complicated requirement
    # cases some gems will by necessity by promoted past the requested level,
    # or even reverted to older versions.
    #
    # If strict is set to true, the results from sort_versions will be
    # truncated, eliminating any version outside the current level scope.
    # This can lead to unexpected outcomes or even VersionConflict exceptions
    # that report a version of a gem not existing for versions that indeed do
    # existing in the referenced source.
    attr_accessor :strict

    attr_accessor :prerelease_specified

    # Given a list of locked_specs and a list of gems to unlock creates a
    # GemVersionPromoter instance.
    #
    # @param locked_specs [SpecSet] All current locked specs. Unlike Definition
    #   where this list is empty if all gems are being updated, this should
    #   always be populated for all gems so this class can properly function.
    # @param unlock_gems [String] List of gem names being unlocked. If empty,
    #   all gems will be considered unlocked.
    # @return [GemVersionPromoter]
    def initialize(locked_specs = SpecSet.new([]), unlock_gems = [])
      @level = :major
      @strict = false
      @locked_specs = locked_specs
      @unlock_gems = unlock_gems
      @sort_versions = {}
      @prerelease_specified = {}
    end

    # @param value [Symbol] One of three Symbols: :major, :minor or :patch.
    def level=(value)
      v = case value
          when String, Symbol
            value.to_sym
      end

      raise ArgumentError, "Unexpected level #{v}. Must be :major, :minor or :patch" unless [:major, :minor, :patch].include?(v)
      @level = v
    end

    # Given a Dependency and an Array of SpecGroups of available versions for a
    # gem, this method will return the Array of SpecGroups sorted (and possibly
    # truncated if strict is true) in an order to give preference to the current
    # level (:major, :minor or :patch) when resolution is deciding what versions
    # best resolve all dependencies in the bundle.
    # @param dep [Dependency] The Dependency of the gem.
    # @param spec_groups [SpecGroup] An array of SpecGroups for the same gem
    #    named in the @dep param.
    # @return [SpecGroup] A new instance of the SpecGroup Array sorted and
    #    possibly filtered.
    def sort_versions(dep, spec_groups)
      before_result = "before sort_versions: #{debug_format_result(dep, spec_groups).inspect}" if DEBUG

      @sort_versions[dep] ||= begin
        gem_name = dep.name

        # An Array per version returned, different entries for different platforms.
        # We only need the version here so it's ok to hard code this to the first instance.
        locked_spec = locked_specs[gem_name].first

        if strict
          filter_dep_specs(spec_groups, locked_spec)
        else
          sort_dep_specs(spec_groups, locked_spec)
        end.tap do |specs|
          if DEBUG
            puts before_result
            puts " after sort_versions: #{debug_format_result(dep, specs).inspect}"
          end
        end
      end
    end

    # @return [bool] Convenience method for testing value of level variable.
    def major?
      level == :major
    end

    # @return [bool] Convenience method for testing value of level variable.
    def minor?
      level == :minor
    end

    private

    def filter_dep_specs(spec_groups, locked_spec)
      res = spec_groups.select do |spec_group|
        if locked_spec && !major?
          gsv = spec_group.version
          lsv = locked_spec.version

          must_match = minor? ? [0] : [0, 1]

          matches = must_match.map {|idx| gsv.segments[idx] == lsv.segments[idx] }
          matches.uniq == [true] ? (gsv >= lsv) : false
        else
          true
        end
      end

      sort_dep_specs(res, locked_spec)
    end

    def sort_dep_specs(spec_groups, locked_spec)
      return spec_groups unless locked_spec
      @gem_name = locked_spec.name
      @locked_version = locked_spec.version

      result = spec_groups.sort do |a, b|
        @a_ver = a.version
        @b_ver = b.version

        unless @prerelease_specified[@gem_name]
          a_pre = @a_ver.prerelease?
          b_pre = @b_ver.prerelease?

          next -1 if a_pre && !b_pre
          next  1 if b_pre && !a_pre
        end

        if major?
          @a_ver <=> @b_ver
        elsif either_version_older_than_locked
          @a_ver <=> @b_ver
        elsif segments_do_not_match(:major)
          @b_ver <=> @a_ver
        elsif !minor? && segments_do_not_match(:minor)
          @b_ver <=> @a_ver
        else
          @a_ver <=> @b_ver
        end
      end
      post_sort(result)
    end

    def either_version_older_than_locked
      @a_ver < @locked_version || @b_ver < @locked_version
    end

    def segments_do_not_match(level)
      index = [:major, :minor].index(level)
      @a_ver.segments[index] != @b_ver.segments[index]
    end

    def unlocking_gem?
      unlock_gems.empty? || unlock_gems.include?(@gem_name)
    end

    # Specific version moves can't always reliably be done during sorting
    # as not all elements are compared against each other.
    def post_sort(result)
      # default :major behavior in Bundler does not do this
      return result if major?
      if unlocking_gem?
        result
      else
        move_version_to_end(result, @locked_version)
      end
    end

    def move_version_to_end(result, version)
      move, keep = result.partition {|s| s.version.to_s == version.to_s }
      keep.concat(move)
    end

    def debug_format_result(dep, spec_groups)
      a = [dep.to_s,
           spec_groups.map {|sg| [sg.version, sg.dependencies_for_activated_platforms.map {|dp| [dp.name, dp.requirement.to_s] }] }]
      last_map = a.last.map {|sg_data| [sg_data.first.version, sg_data.last.map {|aa| aa.join(" ") }] }
      [a.first, last_map, level, strict ? :strict : :not_strict]
    end
  end
end
PKAH[�X�3�36share/gems/gems/bundler-2.2.24/lib/bundler/settings.rbnu�[���# frozen_string_literal: true

module Bundler
  class Settings
    autoload :Mirror,  File.expand_path("mirror", __dir__)
    autoload :Mirrors, File.expand_path("mirror", __dir__)
    autoload :Validator, File.expand_path("settings/validator", __dir__)

    BOOL_KEYS = %w[
      allow_deployment_source_credential_changes
      allow_offline_install
      auto_clean_without_path
      auto_install
      cache_all
      cache_all_platforms
      clean
      default_install_uses_path
      deployment
      disable_checksum_validation
      disable_exec_load
      disable_local_branch_check
      disable_local_revision_check
      disable_shared_gems
      disable_version_check
      force_ruby_platform
      forget_cli_options
      frozen
      gem.changelog
      gem.coc
      gem.mit
      git.allow_insecure
      global_gem_cache
      ignore_messages
      init_gems_rb
      inline
      no_install
      no_prune
      path_relative_to_cwd
      path.system
      plugins
      prefer_patch
      print_only_version_number
      setup_makes_kernel_gem_public
      silence_deprecations
      silence_root_warning
      suppress_install_using_messages
      update_requires_all_flag
      use_gem_version_promoter_for_major_updates
    ].freeze

    NUMBER_KEYS = %w[
      jobs
      redirect
      retry
      ssl_verify_mode
      timeout
    ].freeze

    ARRAY_KEYS = %w[
      with
      without
    ].freeze

    STRING_KEYS = %w[
      bin
      cache_path
      console
      gem.ci
      gem.github_username
      gem.linter
      gem.rubocop
      gem.test
      gemfile
      path
      shebang
      system_bindir
      trust-policy
    ].freeze

    DEFAULT_CONFIG = {
      "BUNDLE_SILENCE_DEPRECATIONS" => false,
      "BUNDLE_DISABLE_VERSION_CHECK" => true,
      "BUNDLE_PREFER_PATCH" => false,
      "BUNDLE_REDIRECT" => 5,
      "BUNDLE_RETRY" => 3,
      "BUNDLE_TIMEOUT" => 10,
    }.freeze

    def initialize(root = nil)
      @root            = root
      @local_config    = load_config(local_config_file)
      @env_config      = ENV.to_h.select {|key, _value| key =~ /\ABUNDLE_.+/ }
      @global_config   = load_config(global_config_file)
      @temporary       = {}
    end

    def [](name)
      key = key_for(name)
      value = configs.values.map {|config| config[key] }.compact.first

      converted_value(value, name)
    end

    def set_command_option(key, value)
      if Bundler.feature_flag.forget_cli_options?
        temporary(key => value)
        value
      else
        set_local(key, value)
      end
    end

    def set_command_option_if_given(key, value)
      return if value.nil?
      set_command_option(key, value)
    end

    def set_local(key, value)
      local_config_file || raise(GemfileNotFound, "Could not locate Gemfile")

      set_key(key, value, @local_config, local_config_file)
    end

    def temporary(update)
      existing = Hash[update.map {|k, _| [k, @temporary[key_for(k)]] }]
      update.each do |k, v|
        set_key(k, v, @temporary, nil)
      end
      return unless block_given?
      begin
        yield
      ensure
        existing.each {|k, v| set_key(k, v, @temporary, nil) }
      end
    end

    def set_global(key, value)
      set_key(key, value, @global_config, global_config_file)
    end

    def all
      keys = @temporary.keys | @global_config.keys | @local_config.keys | @env_config.keys

      keys.map do |key|
        key.sub(/^BUNDLE_/, "").gsub(/___/, "-").gsub(/__/, ".").downcase
      end.sort
    end

    def local_overrides
      repos = {}
      all.each do |k|
        repos[$'] = self[k] if k =~ /^local\./
      end
      repos
    end

    def mirror_for(uri)
      if uri.is_a?(String)
        require_relative "vendored_uri"
        uri = Bundler::URI(uri)
      end

      gem_mirrors.for(uri.to_s).uri
    end

    def credentials_for(uri)
      self[uri.to_s] || self[uri.host]
    end

    def gem_mirrors
      all.inject(Mirrors.new) do |mirrors, k|
        mirrors.parse(k, self[k]) if k.start_with?("mirror.")
        mirrors
      end
    end

    def locations(key)
      key = key_for(key)
      configs.keys.inject({}) do |partial_locations, level|
        value_on_level = configs[level][key]
        partial_locations[level] = value_on_level unless value_on_level.nil?
        partial_locations
      end
    end

    def pretty_values_for(exposed_key)
      key = key_for(exposed_key)

      locations = []

      if value = @temporary[key]
        locations << "Set for the current command: #{printable_value(value, exposed_key).inspect}"
      end

      if value = @local_config[key]
        locations << "Set for your local app (#{local_config_file}): #{printable_value(value, exposed_key).inspect}"
      end

      if value = @env_config[key]
        locations << "Set via #{key}: #{printable_value(value, exposed_key).inspect}"
      end

      if value = @global_config[key]
        locations << "Set for the current user (#{global_config_file}): #{printable_value(value, exposed_key).inspect}"
      end

      return ["You have not configured a value for `#{exposed_key}`"] if locations.empty?
      locations
    end

    def processor_count
      require "etc"
      Etc.nprocessors
    rescue StandardError
      1
    end

    # for legacy reasons, in Bundler 2, we do not respect :disable_shared_gems
    def path
      configs.each do |_level, settings|
        path = value_for("path", settings)
        path_system = value_for("path.system", settings)
        disabled_shared_gems = value_for("disable_shared_gems", settings)
        next if path.nil? && path_system.nil? && disabled_shared_gems.nil?
        system_path = path_system || (disabled_shared_gems == false)
        return Path.new(path, system_path)
      end

      Path.new(nil, false)
    end

    Path = Struct.new(:explicit_path, :system_path) do
      def path
        path = base_path
        path = File.join(path, Bundler.ruby_scope) unless use_system_gems?
        path
      end

      def use_system_gems?
        return true if system_path
        return false if explicit_path
        !Bundler.feature_flag.default_install_uses_path?
      end

      def base_path
        path = explicit_path
        path ||= ".bundle" unless use_system_gems?
        path ||= Bundler.rubygems.gem_dir
        path
      end

      def base_path_relative_to_pwd
        base_path = Pathname.new(self.base_path)
        expanded_base_path = base_path.expand_path(Bundler.root)
        relative_path = expanded_base_path.relative_path_from(Pathname.pwd)
        if relative_path.to_s.start_with?("..")
          relative_path = base_path if base_path.absolute?
        else
          relative_path = Pathname.new(File.join(".", relative_path))
        end
        relative_path
      rescue ArgumentError
        expanded_base_path
      end

      def validate!
        return unless explicit_path && system_path
        path = Bundler.settings.pretty_values_for(:path)
        path.unshift(nil, "path:") unless path.empty?
        system_path = Bundler.settings.pretty_values_for("path.system")
        system_path.unshift(nil, "path.system:") unless system_path.empty?
        disable_shared_gems = Bundler.settings.pretty_values_for(:disable_shared_gems)
        disable_shared_gems.unshift(nil, "disable_shared_gems:") unless disable_shared_gems.empty?
        raise InvalidOption,
          "Using a custom path while using system gems is unsupported.\n#{path.join("\n")}\n#{system_path.join("\n")}\n#{disable_shared_gems.join("\n")}"
      end
    end

    def allow_sudo?
      key = key_for(:path)
      path_configured = @temporary.key?(key) || @local_config.key?(key)
      !path_configured
    end

    def ignore_config?
      ENV["BUNDLE_IGNORE_CONFIG"]
    end

    def app_cache_path
      @app_cache_path ||= self[:cache_path] || "vendor/cache"
    end

    def validate!
      all.each do |raw_key|
        [@local_config, @env_config, @global_config].each do |settings|
          value = value_for(raw_key, settings)
          Validator.validate!(raw_key, value, settings.dup)
        end
      end
    end

    def key_for(key)
      self.class.key_for(key)
    end

    private

    def configs
      {
        :temporary => @temporary,
        :local => @local_config,
        :env => @env_config,
        :global => @global_config,
        :default => DEFAULT_CONFIG,
      }
    end

    def value_for(name, config)
      converted_value(config[key_for(name)], name)
    end

    def parent_setting_for(name)
      split_specific_setting_for(name)[0]
    end

    def specific_gem_for(name)
      split_specific_setting_for(name)[1]
    end

    def split_specific_setting_for(name)
      name.split(".")
    end

    def is_bool(name)
      BOOL_KEYS.include?(name.to_s) || BOOL_KEYS.include?(parent_setting_for(name.to_s))
    end

    def is_string(name)
      STRING_KEYS.include?(name.to_s) || name.to_s.start_with?("local.") || name.to_s.start_with?("mirror.") || name.to_s.start_with?("build.")
    end

    def to_bool(value)
      case value
      when nil, /\A(false|f|no|n|0|)\z/i, false
        false
      else
        true
      end
    end

    def is_num(key)
      NUMBER_KEYS.include?(key.to_s)
    end

    def is_array(key)
      ARRAY_KEYS.include?(key.to_s)
    end

    def is_credential(key)
      key == "gem.push_key"
    end

    def is_userinfo(value)
      value.include?(":")
    end

    def to_array(value)
      return [] unless value
      value.split(":").map(&:to_sym)
    end

    def array_to_s(array)
      array = Array(array)
      return nil if array.empty?
      array.join(":").tr(" ", ":")
    end

    def set_key(raw_key, value, hash, file)
      raw_key = raw_key.to_s
      value = array_to_s(value) if is_array(raw_key)

      key = key_for(raw_key)

      return if hash[key] == value

      hash[key] = value
      hash.delete(key) if value.nil?

      Validator.validate!(raw_key, converted_value(value, raw_key), hash)

      return unless file
      SharedHelpers.filesystem_access(file) do |p|
        FileUtils.mkdir_p(p.dirname)
        require_relative "yaml_serializer"
        p.open("w") {|f| f.write(YAMLSerializer.dump(hash)) }
      end
    end

    def converted_value(value, key)
      if is_array(key)
        to_array(value)
      elsif value.nil?
        nil
      elsif is_bool(key) || value == "false"
        to_bool(value)
      elsif is_num(key)
        value.to_i
      else
        value.to_s
      end
    end

    def printable_value(value, key)
      converted = converted_value(value, key)
      return converted unless converted.is_a?(String)

      if is_string(key)
        converted
      elsif is_credential(key)
        "[REDACTED]"
      elsif is_userinfo(converted)
        converted.gsub(/:.*$/, ":[REDACTED]")
      else
        converted
      end
    end

    def global_config_file
      if ENV["BUNDLE_CONFIG"] && !ENV["BUNDLE_CONFIG"].empty?
        Pathname.new(ENV["BUNDLE_CONFIG"])
      elsif Bundler.rubygems.user_home && !Bundler.rubygems.user_home.empty?
        Pathname.new(Bundler.rubygems.user_home).join(".bundle/config")
      end
    end

    def local_config_file
      Pathname.new(@root).join("config") if @root
    end

    def load_config(config_file)
      return {} if !config_file || ignore_config?
      SharedHelpers.filesystem_access(config_file, :read) do |file|
        valid_file = file.exist? && !file.size.zero?
        return {} unless valid_file
        require_relative "yaml_serializer"
        YAMLSerializer.load(file.read).inject({}) do |config, (k, v)|
          new_k = k

          if k.include?("-")
            Bundler.ui.warn "Your #{file} config includes `#{k}`, which contains the dash character (`-`).\n" \
              "This is deprecated, because configuration through `ENV` should be possible, but `ENV` keys cannot include dashes.\n" \
              "Please edit #{file} and replace any dashes in configuration keys with a triple underscore (`___`)."

            new_k = k.gsub("-", "___")
          end

          config[new_k] = v
          config
        end
      end
    end

    PER_URI_OPTIONS = %w[
      fallback_timeout
    ].freeze

    NORMALIZE_URI_OPTIONS_PATTERN =
      /
        \A
        (\w+\.)? # optional prefix key
        (https?.*?) # URI
        (\.#{Regexp.union(PER_URI_OPTIONS)})? # optional suffix key
        \z
      /ix.freeze

    def self.key_for(key)
      key = normalize_uri(key).to_s if key.is_a?(String) && /https?:/ =~ key
      key = key.to_s.gsub(".", "__").gsub("-", "___").upcase
      "BUNDLE_#{key}"
    end

    # TODO: duplicates Rubygems#normalize_uri
    # TODO: is this the correct place to validate mirror URIs?
    def self.normalize_uri(uri)
      uri = uri.to_s
      if uri =~ NORMALIZE_URI_OPTIONS_PATTERN
        prefix = $1
        uri = $2
        suffix = $3
      end
      uri = "#{uri}/" unless uri.end_with?("/")
      require_relative "vendored_uri"
      uri = Bundler::URI(uri)
      unless uri.absolute?
        raise ArgumentError, format("Gem sources must be absolute. You provided '%s'.", uri)
      end
      "#{prefix}#{uri}#{suffix}"
    end
  end
end
PKAH[$��{��Dshare/gems/gems/bundler-2.2.24/lib/bundler/endpoint_specification.rbnu�[���# frozen_string_literal: true

module Bundler
  # used for Creating Specifications from the Gemcutter Endpoint
  class EndpointSpecification < Gem::Specification
    ILLFORMED_MESSAGE = 'Ill-formed requirement ["#<YAML::Syck::DefaultKey'.freeze
    include MatchPlatform

    attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
    attr_accessor :source, :remote, :dependencies

    def initialize(name, version, platform, dependencies, metadata = nil)
      super()
      @name         = name
      @version      = Gem::Version.create version
      @platform     = platform
      @dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) }

      @loaded_from          = nil
      @remote_specification = nil

      parse_metadata(metadata)
    end

    def fetch_platform
      @platform
    end

    # needed for standalone, load required_paths from local gemspec
    # after the gem is installed
    def require_paths
      if @remote_specification
        @remote_specification.require_paths
      elsif _local_specification
        _local_specification.require_paths
      else
        super
      end
    end

    # needed for inline
    def load_paths
      # remote specs aren't installed, and can't have load_paths
      if _local_specification
        _local_specification.load_paths
      else
        super
      end
    end

    # needed for binstubs
    def executables
      if @remote_specification
        @remote_specification.executables
      elsif _local_specification
        _local_specification.executables
      else
        super
      end
    end

    # needed for bundle clean
    def bindir
      if @remote_specification
        @remote_specification.bindir
      elsif _local_specification
        _local_specification.bindir
      else
        super
      end
    end

    # needed for post_install_messages during install
    def post_install_message
      if @remote_specification
        @remote_specification.post_install_message
      elsif _local_specification
        _local_specification.post_install_message
      else
        super
      end
    end

    # needed for "with native extensions" during install
    def extensions
      if @remote_specification
        @remote_specification.extensions
      elsif _local_specification
        _local_specification.extensions
      else
        super
      end
    end

    def _local_specification
      return unless @loaded_from && File.exist?(local_specification_path)
      eval(File.read(local_specification_path)).tap do |spec|
        spec.loaded_from = @loaded_from
      end
    end

    def __swap__(spec)
      SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies)
      @remote_specification = spec
    end

    private

    def local_specification_path
      "#{base_dir}/specifications/#{full_name}.gemspec"
    end

    def parse_metadata(data)
      return unless data
      data.each do |k, v|
        next unless v
        case k.to_s
        when "checksum"
          @checksum = v.last
        when "rubygems"
          @required_rubygems_version = Gem::Requirement.new(v)
        when "ruby"
          @required_ruby_version = Gem::Requirement.new(v)
        end
      end
    rescue StandardError => e
      raise GemspecError, "There was an error parsing the metadata for the gem #{name} (#{version}): #{e.class}\n#{e}\nThe metadata was #{data.inspect}"
    end

    def build_dependency(name, requirements)
      Gem::Dependency.new(name, requirements)
    rescue ArgumentError => e
      raise unless e.message.include?(ILLFORMED_MESSAGE)
      puts # we shouldn't print the error message on the "fetching info" status line
      raise GemspecError,
        "Unfortunately, the gem #{name} (#{version}) has an invalid " \
        "gemspec.\nPlease ask the gem author to yank the bad version to fix " \
        "this issue. For more information, see http://bit.ly/syck-defaultkey."
    end
  end
end
PKAH[m�ǯ� � $share/gems/gems/racc-1.4.16/bin/raccnuȯ��#!/usr/bin/ruby
#
# $Id$
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/static'
require 'optparse'

def main
  output = nil
  debug_parser = false
  make_logfile = false
  logfilename = nil
  make_executable = false
  rubypath = nil
  embed_runtime = false
  debug_flags = Racc::DebugFlags.new
  line_convert = true
  line_convert_all = false
  omit_action_call = true
  superclass = nil
  check_only = false
  verbose = false
  profiler = RaccProfiler.new(false)

  parser = OptionParser.new
  parser.banner = "Usage: #{File.basename($0)} [options] <input>"
  parser.on('-o', '--output-file=PATH',
            'output file name [<input>.tab.rb]') {|name|
    output = name
  }
  parser.on('-t', '--debug', 'Outputs debugging parser.') {|fl|
    debug_parser = fl
  }
  parser.on('-g', 'Equivalent to -t (obsolete).') {|fl|
    $stderr.puts "racc -g is obsolete.  Use racc -t instead." if $VERBOSE
    debug_parser = fl
  }
  parser.on('-v', '--verbose',
            'Creates <filename>.output log file.') {|fl|
    make_logfile = fl
  }
  parser.on('-O', '--log-file=PATH',
            'Log file name [<input>.output]') {|path|
    make_logfile = true
    logfilename = path
  }
  parser.on('-e', '--executable [RUBYPATH]', 'Makes executable parser.') {|path|
    executable = true
    rubypath = (path == 'ruby' ? nil : path)
  }
  parser.on('-E', '--embedded', "Embeds Racc runtime in output.") {
    embed_runtime = true
  }
  parser.on('--line-convert-all', 'Converts line numbers of user codes.') {
    line_convert_all = true
  }
  parser.on('-l', '--no-line-convert', 'Never convert line numbers.') {
    line_convert = false
    line_convert_all = false
  }
  parser.on('-a', '--no-omit-actions', 'Never omit actions.') {
    omit_action_call = false
  }
  parser.on('--superclass=CLASSNAME',
            'Uses CLASSNAME instead of Racc::Parser.') {|name|
    superclass = name
  }
  parser.on('--runtime=FEATURE',
            "Uses FEATURE instead of 'racc/parser'") {|feat|
    runtime = feature
  }
  parser.on('-C', '--check-only', 'Checks syntax and quit immediately.') {|fl|
    check_only = fl
  }
  parser.on('-S', '--output-status', 'Outputs internal status time to time.') {
    verbose = true
  }
  parser.on('-P', 'Enables generator profile') {
    profiler = RaccProfiler.new(true)
  }
  parser.on('-D flags', "Flags for Racc debugging (do not use).") {|flags|
    debug_flags = Racc::DebugFlags.parse_option_string(flags)
  }
  #parser.on('--no-extensions', 'Run Racc without any Ruby extension.') {
  #  Racc.const_set :Racc_No_Extentions, true
  #}
  parser.on('--version', 'Prints version and quit.') {
    puts "racc version #{Racc::Version}"
    exit 0
  }
  parser.on('--runtime-version', 'Prints runtime version and quit.') {
    printf "racc runtime version %s (rev. %s); %s\n",
           Racc::Parser::Racc_Runtime_Version,
           Racc::Parser::Racc_Runtime_Revision,
           if Racc::Parser.racc_runtime_type == 'ruby'
             sprintf('ruby core version %s (rev. %s)',
                     Racc::Parser::Racc_Runtime_Core_Version_R,
                     Racc::Parser::Racc_Runtime_Core_Revision_R)
           else
             sprintf('c core version %s (rev. %s)',
                     Racc::Parser::Racc_Runtime_Core_Version_C,
                     Racc::Parser::Racc_Runtime_Core_Revision_C)
           end
    exit 0
  }
  parser.on('--copyright', 'Prints copyright and quit.') {
    puts Racc::Copyright
    exit 0
  }
  parser.on('--help', 'Prints this message and quit.') {
    puts parser.help
    exit 1
  }
  begin
    parser.parse!
  rescue OptionParser::ParseError => err
    $stderr.puts err.message
    $stderr.puts parser.help
    exit 1
  end
  if ARGV.empty?
    $stderr.puts 'no input'
    exit 1
  end
  if ARGV.size > 1
    $stderr.puts 'too many input'
    exit 1
  end
  input = ARGV[0]

  begin
    $stderr.puts 'Parsing grammar file...' if verbose
    result = profiler.section('parse') {
      parser = Racc::GrammarFileParser.new(debug_flags)
      parser.parse(File.read(input), File.basename(input))
    }
    if check_only
      $stderr.puts 'syntax ok'
      exit 0
    end

    $stderr.puts 'Generating LALR states...' if verbose
    states = profiler.section('nfa') {
      Racc::States.new(result.grammar).nfa
    }

    $stderr.puts "Resolving #{states.size} states..." if verbose
    profiler.section('dfa') {
      states.dfa
    }

    $stderr.puts 'Creating parser file...' if verbose
    params = result.params.dup
    # Overwrites parameters given by a grammar file with command line options.
    params.superclass = superclass if superclass
    params.omit_action_call = true if omit_action_call
    # From command line option
    if make_executable
      params.make_executable = true
      params.interpreter = rubypath
    end
    params.debug_parser = debug_parser
    params.convert_line = line_convert
    params.convert_line_all = line_convert_all
    params.embed_runtime = embed_runtime
    profiler.section('generation') {
      generator = Racc::ParserFileGenerator.new(states, params)
      generator.generate_parser_file(output || make_filename(input, '.tab.rb'))
    }

    if make_logfile
      profiler.section('logging') {
        $stderr.puts 'Creating log file...' if verbose
        logfilename ||= make_filename(output || File.basename(input), '.output')
        File.open(logfilename, 'w') {|f|
          Racc::LogFileGenerator.new(states, debug_flags).output f
        }
      }
    end
    if debug_flags.status_logging
      log_useless states.grammar
      log_conflict states
    else
      report_useless states.grammar
      report_conflict states
    end

    profiler.report
  rescue Racc::Error, Errno::ENOENT, Errno::EPERM => err
    raise if $DEBUG or debug_flags.any?
    lineno = err.message.slice(/\A\d+:/).to_s
    $stderr.puts "#{File.basename $0}: #{input}:#{lineno} #{err.message.strip}"
    exit 1
  end
end

def make_filename(path, suffix)
  path.sub(/(?:\..*?)?\z/, suffix)
end

def report_conflict(states)
  if states.should_report_srconflict?
    $stderr.puts "#{states.n_srconflicts} shift/reduce conflicts"
  end
  if states.rrconflict_exist?
    $stderr.puts "#{states.n_rrconflicts} reduce/reduce conflicts"
  end
end

def log_conflict(states)
  logging('w') {|f|
    f.puts "ex#{states.grammar.n_expected_srconflicts}"
    if states.should_report_srconflict?
      f.puts "sr#{states.n_srconflicts}"
    end
    if states.rrconflict_exist?
      f.puts "rr#{states.n_rrconflicts}"
    end
  }
end

def report_useless(grammar)
  if grammar.useless_nonterminal_exist?
    $stderr.puts "#{grammar.n_useless_nonterminals} useless nonterminals"
  end
  if grammar.useless_rule_exist?
    $stderr.puts "#{grammar.n_useless_rules} useless rules"
  end
  if grammar.start.useless?
    $stderr.puts 'fatal: start symbol does not derive any sentence'
  end
end

def log_useless(grammar)
  logging('a') {|f|
    if grammar.useless_nonterminal_exist?
      f.puts "un#{grammar.n_useless_nonterminals}"
    end
    if grammar.useless_rule_exist?
      f.puts "ur#{grammar.n_useless_rules}"
    end
  }
end

def logging(mode, &block)
  File.open("log/#{File.basename(ARGV[0])}", mode, &block)
end

class RaccProfiler
  def initialize(really)
    @really = really
    @log = []
    unless ::Process.respond_to?(:times)
      # Ruby 1.6
      @class = ::Time
    else
      @class = ::Process
    end
  end

  def section(name)
    if @really
      t1 = @class.times.utime
      result = yield
      t2 = @class.times.utime
      @log.push [name, t2 - t1]
      result
    else
      yield
    end
  end

  def report
    return unless @really
    f = $stderr
    total = cumulative_time()
    f.puts '--task-----------+--sec------+---%-'
    @log.each do |name, time|
      f.printf "%-19s %s %3d%%\n", name, pjust(time,4,4), (time/total*100).to_i
    end
    f.puts '-----------------+-----------+-----'
    f.printf "%-20s%s\n", 'total', pjust(total,4,4)
  end

  private

  def cumulative_time
    t = @log.inject(0) {|sum, (name, time)| sum + time }
    t == 0 ? 0.01 : t
  end

  def pjust(num, i, j)
    m = /(\d+)(\.\d+)?/.match(num.to_s)
    str = m[1].rjust(i)
    str.concat m[2].ljust(j+1)[0,j+1] if m[2]
    str
  end
end

main
PKAH[�>�)��,share/gems/gems/openssl-2.1.4/lib/openssl.rbnu�[���# frozen_string_literal: false
=begin
= Info
  'OpenSSL for Ruby 2' project
  Copyright (C) 2002  Michal Rokos <m.rokos@sh.cvut.cz>
  All rights reserved.

= Licence
  This program is licensed under the same licence as Ruby.
  (See the file 'LICENCE'.)
=end

require 'openssl.so'

require 'openssl/bn'
require 'openssl/pkey'
require 'openssl/cipher'
require 'openssl/config'
require 'openssl/digest'
require 'openssl/x509'
require 'openssl/ssl'
require 'openssl/pkcs5'
PKAH[d�
Ҽ&�&6share/gems/gems/openssl-2.1.4/lib/openssl/buffering.rbnu�[���# coding: binary
# frozen_string_literal: false
#--
#= Info
#  'OpenSSL for Ruby 2' project
#  Copyright (C) 2001 GOTOU YUUZOU <gotoyuzo@notwork.org>
#  All rights reserved.
#
#= Licence
#  This program is licensed under the same licence as Ruby.
#  (See the file 'LICENCE'.)
#++

##
# OpenSSL IO buffering mix-in module.
#
# This module allows an OpenSSL::SSL::SSLSocket to behave like an IO.
#
# You typically won't use this module directly, you can see it implemented in
# OpenSSL::SSL::SSLSocket.

module OpenSSL::Buffering
  include Enumerable

  ##
  # The "sync mode" of the SSLSocket.
  #
  # See IO#sync for full details.

  attr_accessor :sync

  ##
  # Default size to read from or write to the SSLSocket for buffer operations.

  BLOCK_SIZE = 1024*16

  ##
  # Creates an instance of OpenSSL's buffering IO module.

  def initialize(*)
    super
    @eof = false
    @rbuffer = ""
    @sync = @io.sync
  end

  #
  # for reading.
  #
  private

  ##
  # Fills the buffer from the underlying SSLSocket

  def fill_rbuff
    begin
      @rbuffer << self.sysread(BLOCK_SIZE)
    rescue Errno::EAGAIN
      retry
    rescue EOFError
      @eof = true
    end
  end

  ##
  # Consumes _size_ bytes from the buffer

  def consume_rbuff(size=nil)
    if @rbuffer.empty?
      nil
    else
      size = @rbuffer.size unless size
      ret = @rbuffer[0, size]
      @rbuffer[0, size] = ""
      ret
    end
  end

  public

  ##
  # Reads _size_ bytes from the stream.  If _buf_ is provided it must
  # reference a string which will receive the data.
  #
  # See IO#read for full details.

  def read(size=nil, buf=nil)
    if size == 0
      if buf
        buf.clear
        return buf
      else
        return ""
      end
    end
    until @eof
      break if size && size <= @rbuffer.size
      fill_rbuff
    end
    ret = consume_rbuff(size) || ""
    if buf
      buf.replace(ret)
      ret = buf
    end
    (size && ret.empty?) ? nil : ret
  end

  ##
  # Reads at most _maxlen_ bytes from the stream.  If _buf_ is provided it
  # must reference a string which will receive the data.
  #
  # See IO#readpartial for full details.

  def readpartial(maxlen, buf=nil)
    if maxlen == 0
      if buf
        buf.clear
        return buf
      else
        return ""
      end
    end
    if @rbuffer.empty?
      begin
        return sysread(maxlen, buf)
      rescue Errno::EAGAIN
        retry
      end
    end
    ret = consume_rbuff(maxlen)
    if buf
      buf.replace(ret)
      ret = buf
    end
    ret
  end

  ##
  # Reads at most _maxlen_ bytes in the non-blocking manner.
  #
  # When no data can be read without blocking it raises
  # OpenSSL::SSL::SSLError extended by IO::WaitReadable or IO::WaitWritable.
  #
  # IO::WaitReadable means SSL needs to read internally so read_nonblock
  # should be called again when the underlying IO is readable.
  #
  # IO::WaitWritable means SSL needs to write internally so read_nonblock
  # should be called again after the underlying IO is writable.
  #
  # OpenSSL::Buffering#read_nonblock needs two rescue clause as follows:
  #
  #   # emulates blocking read (readpartial).
  #   begin
  #     result = ssl.read_nonblock(maxlen)
  #   rescue IO::WaitReadable
  #     IO.select([io])
  #     retry
  #   rescue IO::WaitWritable
  #     IO.select(nil, [io])
  #     retry
  #   end
  #
  # Note that one reason that read_nonblock writes to the underlying IO is
  # when the peer requests a new TLS/SSL handshake.  See openssl the FAQ for
  # more details.  http://www.openssl.org/support/faq.html
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that read_nonblock should not raise an IO::Wait*able exception, but
  # return the symbol +:wait_writable+ or +:wait_readable+ instead. At EOF,
  # it will return +nil+ instead of raising EOFError.

  def read_nonblock(maxlen, buf=nil, exception: true)
    if maxlen == 0
      if buf
        buf.clear
        return buf
      else
        return ""
      end
    end
    if @rbuffer.empty?
      return sysread_nonblock(maxlen, buf, exception: exception)
    end
    ret = consume_rbuff(maxlen)
    if buf
      buf.replace(ret)
      ret = buf
    end
    ret
  end

  ##
  # Reads the next "line" from the stream.  Lines are separated by _eol_.  If
  # _limit_ is provided the result will not be longer than the given number of
  # bytes.
  #
  # _eol_ may be a String or Regexp.
  #
  # Unlike IO#gets the line read will not be assigned to +$_+.
  #
  # Unlike IO#gets the separator must be provided if a limit is provided.

  def gets(eol=$/, limit=nil)
    idx = @rbuffer.index(eol)
    until @eof
      break if idx
      fill_rbuff
      idx = @rbuffer.index(eol)
    end
    if eol.is_a?(Regexp)
      size = idx ? idx+$&.size : nil
    else
      size = idx ? idx+eol.size : nil
    end
    if size && limit && limit >= 0
      size = [size, limit].min
    end
    consume_rbuff(size)
  end

  ##
  # Executes the block for every line in the stream where lines are separated
  # by _eol_.
  #
  # See also #gets

  def each(eol=$/)
    while line = self.gets(eol)
      yield line
    end
  end
  alias each_line each

  ##
  # Reads lines from the stream which are separated by _eol_.
  #
  # See also #gets

  def readlines(eol=$/)
    ary = []
    while line = self.gets(eol)
      ary << line
    end
    ary
  end

  ##
  # Reads a line from the stream which is separated by _eol_.
  #
  # Raises EOFError if at end of file.

  def readline(eol=$/)
    raise EOFError if eof?
    gets(eol)
  end

  ##
  # Reads one character from the stream.  Returns nil if called at end of
  # file.

  def getc
    read(1)
  end

  ##
  # Calls the given block once for each byte in the stream.

  def each_byte # :yields: byte
    while c = getc
      yield(c.ord)
    end
  end

  ##
  # Reads a one-character string from the stream.  Raises an EOFError at end
  # of file.

  def readchar
    raise EOFError if eof?
    getc
  end

  ##
  # Pushes character _c_ back onto the stream such that a subsequent buffered
  # character read will return it.
  #
  # Unlike IO#getc multiple bytes may be pushed back onto the stream.
  #
  # Has no effect on unbuffered reads (such as #sysread).

  def ungetc(c)
    @rbuffer[0,0] = c.chr
  end

  ##
  # Returns true if the stream is at file which means there is no more data to
  # be read.

  def eof?
    fill_rbuff if !@eof && @rbuffer.empty?
    @eof && @rbuffer.empty?
  end
  alias eof eof?

  #
  # for writing.
  #
  private

  ##
  # Writes _s_ to the buffer.  When the buffer is full or #sync is true the
  # buffer is flushed to the underlying socket.

  def do_write(s)
    @wbuffer = "" unless defined? @wbuffer
    @wbuffer << s
    @wbuffer.force_encoding(Encoding::BINARY)
    @sync ||= false
    if @sync or @wbuffer.size > BLOCK_SIZE
      until @wbuffer.empty?
        begin
          nwrote = syswrite(@wbuffer)
        rescue Errno::EAGAIN
          retry
        end
        @wbuffer[0, nwrote] = ""
      end
    end
  end

  public

  ##
  # Writes _s_ to the stream.  If the argument is not a String it will be
  # converted using +.to_s+ method.  Returns the number of bytes written.

  def write(*s)
    s.inject(0) do |written, str|
      do_write(str)
      written + str.bytesize
    end
  end

  ##
  # Writes _s_ in the non-blocking manner.
  #
  # If there is buffered data, it is flushed first.  This may block.
  #
  # write_nonblock returns number of bytes written to the SSL connection.
  #
  # When no data can be written without blocking it raises
  # OpenSSL::SSL::SSLError extended by IO::WaitReadable or IO::WaitWritable.
  #
  # IO::WaitReadable means SSL needs to read internally so write_nonblock
  # should be called again after the underlying IO is readable.
  #
  # IO::WaitWritable means SSL needs to write internally so write_nonblock
  # should be called again after underlying IO is writable.
  #
  # So OpenSSL::Buffering#write_nonblock needs two rescue clause as follows.
  #
  #   # emulates blocking write.
  #   begin
  #     result = ssl.write_nonblock(str)
  #   rescue IO::WaitReadable
  #     IO.select([io])
  #     retry
  #   rescue IO::WaitWritable
  #     IO.select(nil, [io])
  #     retry
  #   end
  #
  # Note that one reason that write_nonblock reads from the underlying IO
  # is when the peer requests a new TLS/SSL handshake.  See the openssl FAQ
  # for more details.  http://www.openssl.org/support/faq.html
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that write_nonblock should not raise an IO::Wait*able exception, but
  # return the symbol +:wait_writable+ or +:wait_readable+ instead.

  def write_nonblock(s, exception: true)
    flush
    syswrite_nonblock(s, exception: exception)
  end

  ##
  # Writes _s_ to the stream.  _s_ will be converted to a String using
  # +.to_s+ method.

  def <<(s)
    do_write(s)
    self
  end

  ##
  # Writes _args_ to the stream along with a record separator.
  #
  # See IO#puts for full details.

  def puts(*args)
    s = ""
    if args.empty?
      s << "\n"
    end
    args.each{|arg|
      s << arg.to_s
      s.sub!(/(?<!\n)\z/, "\n")
    }
    do_write(s)
    nil
  end

  ##
  # Writes _args_ to the stream.
  #
  # See IO#print for full details.

  def print(*args)
    s = ""
    args.each{ |arg| s << arg.to_s }
    do_write(s)
    nil
  end

  ##
  # Formats and writes to the stream converting parameters under control of
  # the format string.
  #
  # See Kernel#sprintf for format string details.

  def printf(s, *args)
    do_write(s % args)
    nil
  end

  ##
  # Flushes buffered data to the SSLSocket.

  def flush
    osync = @sync
    @sync = true
    do_write ""
    return self
  ensure
    @sync = osync
  end

  ##
  # Closes the SSLSocket and flushes any unwritten data.

  def close
    flush rescue nil
    sysclose
  end
end
PKAH[S�:_CC1share/gems/gems/openssl-2.1.4/lib/openssl/x509.rbnu�[���# frozen_string_literal: false
#--
# = Ruby-space definitions that completes C-space funcs for X509 and subclasses
#
# = Info
# 'OpenSSL for Ruby 2' project
# Copyright (C) 2002  Michal Rokos <m.rokos@sh.cvut.cz>
# All rights reserved.
#
# = Licence
# This program is licensed under the same licence as Ruby.
# (See the file 'LICENCE'.)
#++

module OpenSSL
  module X509
    class ExtensionFactory
      def create_extension(*arg)
        if arg.size > 1
          create_ext(*arg)
        else
          send("create_ext_from_"+arg[0].class.name.downcase, arg[0])
        end
      end

      def create_ext_from_array(ary)
        raise ExtensionError, "unexpected array form" if ary.size > 3
        create_ext(ary[0], ary[1], ary[2])
      end

      def create_ext_from_string(str) # "oid = critical, value"
        oid, value = str.split(/=/, 2)
        oid.strip!
        value.strip!
        create_ext(oid, value)
      end

      def create_ext_from_hash(hash)
        create_ext(hash["oid"], hash["value"], hash["critical"])
      end
    end

    class Extension
      def ==(other)
        return false unless Extension === other
        to_der == other.to_der
      end

      def to_s # "oid = critical, value"
        str = self.oid
        str << " = "
        str << "critical, " if self.critical?
        str << self.value.gsub(/\n/, ", ")
      end

      def to_h # {"oid"=>sn|ln, "value"=>value, "critical"=>true|false}
        {"oid"=>self.oid,"value"=>self.value,"critical"=>self.critical?}
      end

      def to_a
        [ self.oid, self.value, self.critical? ]
      end
    end

    class Name
      module RFC2253DN
        Special = ',=+<>#;'
        HexChar = /[0-9a-fA-F]/
        HexPair = /#{HexChar}#{HexChar}/
        HexString = /#{HexPair}+/
        Pair = /\\(?:[#{Special}]|\\|"|#{HexPair})/
        StringChar = /[^\\"#{Special}]/
        QuoteChar = /[^\\"]/
        AttributeType = /[a-zA-Z][0-9a-zA-Z]*|[0-9]+(?:\.[0-9]+)*/
        AttributeValue = /
          (?!["#])((?:#{StringChar}|#{Pair})*)|
          \#(#{HexString})|
          "((?:#{QuoteChar}|#{Pair})*)"
        /x
        TypeAndValue = /\A(#{AttributeType})=#{AttributeValue}/

        module_function

        def expand_pair(str)
          return nil unless str
          return str.gsub(Pair){
            pair = $&
            case pair.size
            when 2 then pair[1,1]
            when 3 then Integer("0x#{pair[1,2]}").chr
            else raise OpenSSL::X509::NameError, "invalid pair: #{str}"
            end
          }
        end

        def expand_hexstring(str)
          return nil unless str
          der = str.gsub(HexPair){$&.to_i(16).chr }
          a1 = OpenSSL::ASN1.decode(der)
          return a1.value, a1.tag
        end

        def expand_value(str1, str2, str3)
          value = expand_pair(str1)
          value, tag = expand_hexstring(str2) unless value
          value = expand_pair(str3) unless value
          return value, tag
        end

        def scan(dn)
          str = dn
          ary = []
          while true
            if md = TypeAndValue.match(str)
              remain = md.post_match
              type = md[1]
              value, tag = expand_value(md[2], md[3], md[4]) rescue nil
              if value
                type_and_value = [type, value]
                type_and_value.push(tag) if tag
                ary.unshift(type_and_value)
                if remain.length > 2 && remain[0] == ?,
                  str = remain[1..-1]
                  next
                elsif remain.length > 2 && remain[0] == ?+
                  raise OpenSSL::X509::NameError,
                    "multi-valued RDN is not supported: #{dn}"
                elsif remain.empty?
                  break
                end
              end
            end
            msg_dn = dn[0, dn.length - str.length] + " =>" + str
            raise OpenSSL::X509::NameError, "malformed RDN: #{msg_dn}"
          end
          return ary
        end
      end

      class << self
        def parse_rfc2253(str, template=OBJECT_TYPE_TEMPLATE)
          ary = OpenSSL::X509::Name::RFC2253DN.scan(str)
          self.new(ary, template)
        end

        def parse_openssl(str, template=OBJECT_TYPE_TEMPLATE)
          if str.start_with?("/")
            # /A=B/C=D format
            ary = str[1..-1].split("/").map { |i| i.split("=", 2) }
          else
            # Comma-separated
            ary = str.split(",").map { |i| i.strip.split("=", 2) }
          end
          self.new(ary, template)
        end

        alias parse parse_openssl
      end

      def pretty_print(q)
        q.object_group(self) {
          q.text ' '
          q.text to_s(OpenSSL::X509::Name::RFC2253)
        }
      end
    end

    class Attribute
      def ==(other)
        return false unless Attribute === other
        to_der == other.to_der
      end
    end

    class StoreContext
      def cleanup
        warn "(#{caller.first}) OpenSSL::X509::StoreContext#cleanup is deprecated with no replacement" if $VERBOSE
      end
    end

    class Certificate
      def pretty_print(q)
        q.object_group(self) {
          q.breakable
          q.text 'subject='; q.pp self.subject; q.text ','; q.breakable
          q.text 'issuer='; q.pp self.issuer; q.text ','; q.breakable
          q.text 'serial='; q.pp self.serial; q.text ','; q.breakable
          q.text 'not_before='; q.pp self.not_before; q.text ','; q.breakable
          q.text 'not_after='; q.pp self.not_after
        }
      end
    end

    class CRL
      def ==(other)
        return false unless CRL === other
        to_der == other.to_der
      end
    end

    class Revoked
      def ==(other)
        return false unless Revoked === other
        to_der == other.to_der
      end
    end

    class Request
      def ==(other)
        return false unless Request === other
        to_der == other.to_der
      end
    end
  end
end
PKAH[B��^��/share/gems/gems/openssl-2.1.4/lib/openssl/bn.rbnu�[���# frozen_string_literal: false
#--
#
# = Ruby-space definitions that completes C-space funcs for BN
#
# = Info
# 'OpenSSL for Ruby 2' project
# Copyright (C) 2002  Michal Rokos <m.rokos@sh.cvut.cz>
# All rights reserved.
#
# = Licence
# This program is licensed under the same licence as Ruby.
# (See the file 'LICENCE'.)
#++

module OpenSSL
  class BN
    include Comparable

    def pretty_print(q)
      q.object_group(self) {
        q.text ' '
        q.text to_i.to_s
      }
    end
  end # BN
end # OpenSSL

##
#--
# Add double dispatch to Integer
#++
class Integer
  # Casts an Integer as an OpenSSL::BN
  #
  # See `man bn` for more info.
  def to_bn
    OpenSSL::BN::new(self)
  end
end # Integer
PKAH[M��ff2share/gems/gems/openssl-2.1.4/lib/openssl/pkcs5.rbnu�[���# frozen_string_literal: false
#--
# Ruby/OpenSSL Project
# Copyright (C) 2017 Ruby/OpenSSL Project Authors
#++

module OpenSSL
  module PKCS5
    module_function

    # OpenSSL::PKCS5.pbkdf2_hmac has been renamed to OpenSSL::KDF.pbkdf2_hmac.
    # This method is provided for backwards compatibility.
    def pbkdf2_hmac(pass, salt, iter, keylen, digest)
      OpenSSL::KDF.pbkdf2_hmac(pass, salt: salt, iterations: iter,
                               length: keylen, hash: digest)
    end

    def pbkdf2_hmac_sha1(pass, salt, iter, keylen)
      pbkdf2_hmac(pass, salt, iter, keylen, "sha1")
    end
  end
end
PKAH[ӡv852523share/gems/gems/openssl-2.1.4/lib/openssl/config.rbnu�[���# frozen_string_literal: false
=begin
= Ruby-space definitions that completes C-space funcs for Config

= Info
  Copyright (C) 2010  Hiroshi Nakamura <nahi@ruby-lang.org>

= Licence
  This program is licensed under the same licence as Ruby.
  (See the file 'LICENCE'.)

=end

require 'stringio'

module OpenSSL
  ##
  # = OpenSSL::Config
  #
  # Configuration for the openssl library.
  #
  # Many system's installation of openssl library will depend on your system
  # configuration. See the value of OpenSSL::Config::DEFAULT_CONFIG_FILE for
  # the location of the file for your host.
  #
  # See also http://www.openssl.org/docs/apps/config.html
  class Config
    include Enumerable

    class << self

      ##
      # Parses a given _string_ as a blob that contains configuration for
      # OpenSSL.
      #
      # If the source of the IO is a file, then consider using #parse_config.
      def parse(string)
        c = new()
        parse_config(StringIO.new(string)).each do |section, hash|
          c[section] = hash
        end
        c
      end

      ##
      # load is an alias to ::new
      alias load new

      ##
      # Parses the configuration data read from _io_, see also #parse.
      #
      # Raises a ConfigError on invalid configuration data.
      def parse_config(io)
        begin
          parse_config_lines(io)
        rescue ConfigError => e
          e.message.replace("error in line #{io.lineno}: " + e.message)
          raise
        end
      end

      def get_key_string(data, section, key) # :nodoc:
        if v = data[section] && data[section][key]
          return v
        elsif section == 'ENV'
          if v = ENV[key]
            return v
          end
        end
        if v = data['default'] && data['default'][key]
          return v
        end
      end

    private

      def parse_config_lines(io)
        section = 'default'
        data = {section => {}}
        io_stack = [io]
        while definition = get_definition(io_stack)
          definition = clear_comments(definition)
          next if definition.empty?
          case definition
          when /\A\[/
            if /\[([^\]]*)\]/ =~ definition
              section = $1.strip
              data[section] ||= {}
            else
              raise ConfigError, "missing close square bracket"
            end
          when /\A\.include (\s*=\s*)?(.+)\z/
            path = $2
            if File.directory?(path)
              files = Dir.glob(File.join(path, "*.{cnf,conf}"), File::FNM_EXTGLOB)
            else
              files = [path]
            end

            files.each do |filename|
              begin
                io_stack << StringIO.new(File.read(filename))
              rescue
                raise ConfigError, "could not include file '%s'" % filename
              end
            end
          when /\A([^:\s]*)(?:::([^:\s]*))?\s*=(.*)\z/
            if $2
              section = $1
              key = $2
            else
              key = $1
            end
            value = unescape_value(data, section, $3)
            (data[section] ||= {})[key] = value.strip
          else
            raise ConfigError, "missing equal sign"
          end
        end
        data
      end

      # escape with backslash
      QUOTE_REGEXP_SQ = /\A([^'\\]*(?:\\.[^'\\]*)*)'/
      # escape with backslash and doubled dq
      QUOTE_REGEXP_DQ = /\A([^"\\]*(?:""[^"\\]*|\\.[^"\\]*)*)"/
      # escaped char map
      ESCAPE_MAP = {
        "r" => "\r",
        "n" => "\n",
        "b" => "\b",
        "t" => "\t",
      }

      def unescape_value(data, section, value)
        scanned = []
        while m = value.match(/['"\\$]/)
          scanned << m.pre_match
          c = m[0]
          value = m.post_match
          case c
          when "'"
            if m = value.match(QUOTE_REGEXP_SQ)
              scanned << m[1].gsub(/\\(.)/, '\\1')
              value = m.post_match
            else
              break
            end
          when '"'
            if m = value.match(QUOTE_REGEXP_DQ)
              scanned << m[1].gsub(/""/, '').gsub(/\\(.)/, '\\1')
              value = m.post_match
            else
              break
            end
          when "\\"
            c = value.slice!(0, 1)
            scanned << (ESCAPE_MAP[c] || c)
          when "$"
            ref, value = extract_reference(value)
            refsec = section
            if ref.index('::')
              refsec, ref = ref.split('::', 2)
            end
            if v = get_key_string(data, refsec, ref)
              scanned << v
            else
              raise ConfigError, "variable has no value"
            end
          else
            raise 'must not reaced'
          end
        end
        scanned << value
        scanned.join
      end

      def extract_reference(value)
        rest = ''
        if m = value.match(/\(([^)]*)\)|\{([^}]*)\}/)
          value = m[1] || m[2]
          rest = m.post_match
        elsif [?(, ?{].include?(value[0])
          raise ConfigError, "no close brace"
        end
        if m = value.match(/[a-zA-Z0-9_]*(?:::[a-zA-Z0-9_]*)?/)
          return m[0], m.post_match + rest
        else
          raise
        end
      end

      def clear_comments(line)
        # FCOMMENT
        if m = line.match(/\A([\t\n\f ]*);.*\z/)
          return m[1]
        end
        # COMMENT
        scanned = []
        while m = line.match(/[#'"\\]/)
          scanned << m.pre_match
          c = m[0]
          line = m.post_match
          case c
          when '#'
            line = nil
            break
          when "'", '"'
            regexp = (c == "'") ? QUOTE_REGEXP_SQ : QUOTE_REGEXP_DQ
            scanned << c
            if m = line.match(regexp)
              scanned << m[0]
              line = m.post_match
            else
              scanned << line
              line = nil
              break
            end
          when "\\"
            scanned << c
            scanned << line.slice!(0, 1)
          else
            raise 'must not reaced'
          end
        end
        scanned << line
        scanned.join
      end

      def get_definition(io_stack)
        if line = get_line(io_stack)
          while /[^\\]\\\z/ =~ line
            if extra = get_line(io_stack)
              line += extra
            else
              break
            end
          end
          return line.strip
        end
      end

      def get_line(io_stack)
        while io = io_stack.last
          if line = io.gets
            return line.gsub(/[\r\n]*/, '')
          end
          io_stack.pop
        end
      end
    end

    ##
    # Creates an instance of OpenSSL's configuration class.
    #
    # This can be used in contexts like OpenSSL::X509::ExtensionFactory.config=
    #
    # If the optional _filename_ parameter is provided, then it is read in and
    # parsed via #parse_config.
    #
    # This can raise IO exceptions based on the access, or availability of the
    # file. A ConfigError exception may be raised depending on the validity of
    # the data being configured.
    #
    def initialize(filename = nil)
      @data = {}
      if filename
        File.open(filename.to_s) do |file|
          Config.parse_config(file).each do |section, hash|
            self[section] = hash
          end
        end
      end
    end

    ##
    # Gets the value of _key_ from the given _section_
    #
    # Given the following configurating file being loaded:
    #
    #   config = OpenSSL::Config.load('foo.cnf')
    #     #=> #<OpenSSL::Config sections=["default"]>
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=bar
    #
    # You can get a specific value from the config if you know the _section_
    # and _key_ like so:
    #
    #   config.get_value('default','foo')
    #     #=> "bar"
    #
    def get_value(section, key)
      if section.nil?
        raise TypeError.new('nil not allowed')
      end
      section = 'default' if section.empty?
      get_key_string(section, key)
    end

    ##
    #
    # *Deprecated*
    #
    # Use #get_value instead
    def value(arg1, arg2 = nil) # :nodoc:
      warn('Config#value is deprecated; use Config#get_value')
      if arg2.nil?
        section, key = 'default', arg1
      else
        section, key = arg1, arg2
      end
      section ||= 'default'
      section = 'default' if section.empty?
      get_key_string(section, key)
    end

    ##
    # Set the target _key_ with a given _value_ under a specific _section_.
    #
    # Given the following configurating file being loaded:
    #
    #   config = OpenSSL::Config.load('foo.cnf')
    #     #=> #<OpenSSL::Config sections=["default"]>
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=bar
    #
    # You can set the value of _foo_ under the _default_ section to a new
    # value:
    #
    #   config.add_value('default', 'foo', 'buzz')
    #     #=> "buzz"
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=buzz
    #
    def add_value(section, key, value)
      check_modify
      (@data[section] ||= {})[key] = value
    end

    ##
    # Get a specific _section_ from the current configuration
    #
    # Given the following configurating file being loaded:
    #
    #   config = OpenSSL::Config.load('foo.cnf')
    #     #=> #<OpenSSL::Config sections=["default"]>
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=bar
    #
    # You can get a hash of the specific section like so:
    #
    #   config['default']
    #     #=> {"foo"=>"bar"}
    #
    def [](section)
      @data[section] || {}
    end

    ##
    # Deprecated
    #
    # Use #[] instead
    def section(name) # :nodoc:
      warn('Config#section is deprecated; use Config#[]')
      @data[name] || {}
    end

    ##
    # Sets a specific _section_ name with a Hash _pairs_.
    #
    # Given the following configuration being created:
    #
    #   config = OpenSSL::Config.new
    #     #=> #<OpenSSL::Config sections=[]>
    #   config['default'] = {"foo"=>"bar","baz"=>"buz"}
    #     #=> {"foo"=>"bar", "baz"=>"buz"}
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=bar
    #     #   baz=buz
    #
    # It's important to note that this will essentially merge any of the keys
    # in _pairs_ with the existing _section_. For example:
    #
    #   config['default']
    #     #=> {"foo"=>"bar", "baz"=>"buz"}
    #   config['default'] = {"foo" => "changed"}
    #     #=> {"foo"=>"changed"}
    #   config['default']
    #     #=> {"foo"=>"changed", "baz"=>"buz"}
    #
    def []=(section, pairs)
      check_modify
      @data[section] ||= {}
      pairs.each do |key, value|
        self.add_value(section, key, value)
      end
    end

    ##
    # Get the names of all sections in the current configuration
    def sections
      @data.keys
    end

    ##
    # Get the parsable form of the current configuration
    #
    # Given the following configuration being created:
    #
    #   config = OpenSSL::Config.new
    #     #=> #<OpenSSL::Config sections=[]>
    #   config['default'] = {"foo"=>"bar","baz"=>"buz"}
    #     #=> {"foo"=>"bar", "baz"=>"buz"}
    #   puts config.to_s
    #     #=> [ default ]
    #     #   foo=bar
    #     #   baz=buz
    #
    # You can parse get the serialized configuration using #to_s and then parse
    # it later:
    #
    #   serialized_config = config.to_s
    #   # much later...
    #   new_config = OpenSSL::Config.parse(serialized_config)
    #     #=> #<OpenSSL::Config sections=["default"]>
    #   puts new_config
    #     #=> [ default ]
    #         foo=bar
    #         baz=buz
    #
    def to_s
      ary = []
      @data.keys.sort.each do |section|
        ary << "[ #{section} ]\n"
        @data[section].keys.each do |key|
          ary << "#{key}=#{@data[section][key]}\n"
        end
        ary << "\n"
      end
      ary.join
    end

    ##
    # For a block.
    #
    # Receive the section and its pairs for the current configuration.
    #
    #   config.each do |section, key, value|
    #     # ...
    #   end
    #
    def each
      @data.each do |section, hash|
        hash.each do |key, value|
          yield [section, key, value]
        end
      end
    end

    ##
    # String representation of this configuration object, including the class
    # name and its sections.
    def inspect
      "#<#{self.class.name} sections=#{sections.inspect}>"
    end

  protected

    def data # :nodoc:
      @data
    end

  private

    def initialize_copy(other)
      @data = other.data.dup
    end

    def check_modify
      raise TypeError.new("Insecure: can't modify OpenSSL config") if frozen?
    end

    def get_key_string(section, key)
      Config.get_key_string(@data, section, key)
    end
  end
end
PKAH[I�1��1share/gems/gems/openssl-2.1.4/lib/openssl/pkey.rbnu�[���# frozen_string_literal: false
#--
# Ruby/OpenSSL Project
# Copyright (C) 2017 Ruby/OpenSSL Project Authors
#++

module OpenSSL::PKey
  if defined?(EC)
  class EC::Point
    # :call-seq:
    #    point.to_bn([conversion_form]) -> OpenSSL::BN
    #
    # Returns the octet string representation of the EC point as an instance of
    # OpenSSL::BN.
    #
    # If _conversion_form_ is not given, the _point_conversion_form_ attribute
    # set to the group is used.
    #
    # See #to_octet_string for more information.
    def to_bn(conversion_form = group.point_conversion_form)
      OpenSSL::BN.new(to_octet_string(conversion_form), 2)
    end
  end
  end
end
PKAH[̒O��?�?0share/gems/gems/openssl-2.1.4/lib/openssl/ssl.rbnu�[���# frozen_string_literal: false
=begin
= Info
  'OpenSSL for Ruby 2' project
  Copyright (C) 2001 GOTOU YUUZOU <gotoyuzo@notwork.org>
  All rights reserved.

= Licence
  This program is licensed under the same licence as Ruby.
  (See the file 'LICENCE'.)
=end

require "openssl/buffering"
require "io/nonblock"
require "ipaddr"

module OpenSSL
  module SSL
    class SSLContext
      DEFAULT_PARAMS = { # :nodoc:
        :min_version => OpenSSL::SSL::TLS1_VERSION,
        :verify_mode => OpenSSL::SSL::VERIFY_PEER,
        :verify_hostname => true,
        :options => -> {
          opts = OpenSSL::SSL::OP_ALL
          opts &= ~OpenSSL::SSL::OP_DONT_INSERT_EMPTY_FRAGMENTS
          opts |= OpenSSL::SSL::OP_NO_COMPRESSION
          opts
        }.call
      }

      if defined?(OpenSSL::PKey::DH)
        DEFAULT_2048 = OpenSSL::PKey::DH.new <<-_end_of_pem_
-----BEGIN DH PARAMETERS-----
MIIBCAKCAQEA7E6kBrYiyvmKAMzQ7i8WvwVk9Y/+f8S7sCTN712KkK3cqd1jhJDY
JbrYeNV3kUIKhPxWHhObHKpD1R84UpL+s2b55+iMd6GmL7OYmNIT/FccKhTcveab
VBmZT86BZKYyf45hUF9FOuUM9xPzuK3Vd8oJQvfYMCd7LPC0taAEljQLR4Edf8E6
YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
1bNveX5wInh5GDx1FGhKBZ+s1H+aedudCm7sCgRwv8lKWYGiHzObSma8A86KG+MD
7Lo5JquQ3DlBodj3IDyPrxIv96lvRPFtAwIBAg==
-----END DH PARAMETERS-----
        _end_of_pem_
        private_constant :DEFAULT_2048

        DEFAULT_TMP_DH_CALLBACK = lambda { |ctx, is_export, keylen| # :nodoc:
          warn "using default DH parameters." if $VERBOSE
          DEFAULT_2048
        }
      end

      if !(OpenSSL::OPENSSL_VERSION.start_with?("OpenSSL") &&
           OpenSSL::OPENSSL_VERSION_NUMBER >= 0x10100000)
        DEFAULT_PARAMS.merge!(
          ciphers: %w{
            ECDHE-ECDSA-AES128-GCM-SHA256
            ECDHE-RSA-AES128-GCM-SHA256
            ECDHE-ECDSA-AES256-GCM-SHA384
            ECDHE-RSA-AES256-GCM-SHA384
            DHE-RSA-AES128-GCM-SHA256
            DHE-DSS-AES128-GCM-SHA256
            DHE-RSA-AES256-GCM-SHA384
            DHE-DSS-AES256-GCM-SHA384
            ECDHE-ECDSA-AES128-SHA256
            ECDHE-RSA-AES128-SHA256
            ECDHE-ECDSA-AES128-SHA
            ECDHE-RSA-AES128-SHA
            ECDHE-ECDSA-AES256-SHA384
            ECDHE-RSA-AES256-SHA384
            ECDHE-ECDSA-AES256-SHA
            ECDHE-RSA-AES256-SHA
            DHE-RSA-AES128-SHA256
            DHE-RSA-AES256-SHA256
            DHE-RSA-AES128-SHA
            DHE-RSA-AES256-SHA
            DHE-DSS-AES128-SHA256
            DHE-DSS-AES256-SHA256
            DHE-DSS-AES128-SHA
            DHE-DSS-AES256-SHA
            AES128-GCM-SHA256
            AES256-GCM-SHA384
            AES128-SHA256
            AES256-SHA256
            AES128-SHA
            AES256-SHA
          }.join(":"),
        )
      end

      DEFAULT_CERT_STORE = OpenSSL::X509::Store.new # :nodoc:
      DEFAULT_CERT_STORE.set_default_paths
      DEFAULT_CERT_STORE.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL

      # A callback invoked when DH parameters are required.
      #
      # The callback is invoked with the Session for the key exchange, an
      # flag indicating the use of an export cipher and the keylength
      # required.
      #
      # The callback must return an OpenSSL::PKey::DH instance of the correct
      # key length.

      attr_accessor :tmp_dh_callback

      # A callback invoked at connect time to distinguish between multiple
      # server names.
      #
      # The callback is invoked with an SSLSocket and a server name.  The
      # callback must return an SSLContext for the server name or nil.
      attr_accessor :servername_cb

      # call-seq:
      #    SSLContext.new           -> ctx
      #    SSLContext.new(:TLSv1)   -> ctx
      #    SSLContext.new("SSLv23") -> ctx
      #
      # Creates a new SSL context.
      #
      # If an argument is given, #ssl_version= is called with the value. Note
      # that this form is deprecated. New applications should use #min_version=
      # and #max_version= as necessary.
      def initialize(version = nil)
        self.options |= OpenSSL::SSL::OP_ALL
        self.ssl_version = version if version
      end

      ##
      # call-seq:
      #   ctx.set_params(params = {}) -> params
      #
      # Sets saner defaults optimized for the use with HTTP-like protocols.
      #
      # If a Hash _params_ is given, the parameters are overridden with it.
      # The keys in _params_ must be assignment methods on SSLContext.
      #
      # If the verify_mode is not VERIFY_NONE and ca_file, ca_path and
      # cert_store are not set then the system default certificate store is
      # used.
      def set_params(params={})
        params = DEFAULT_PARAMS.merge(params)
        self.options = params.delete(:options) # set before min_version/max_version
        params.each{|name, value| self.__send__("#{name}=", value) }
        if self.verify_mode != OpenSSL::SSL::VERIFY_NONE
          unless self.ca_file or self.ca_path or self.cert_store
            self.cert_store = DEFAULT_CERT_STORE
          end
        end
        return params
      end

      # call-seq:
      #    ctx.min_version = OpenSSL::SSL::TLS1_2_VERSION
      #    ctx.min_version = :TLS1_2
      #    ctx.min_version = nil
      #
      # Sets the lower bound on the supported SSL/TLS protocol version. The
      # version may be specified by an integer constant named
      # OpenSSL::SSL::*_VERSION, a Symbol, or +nil+ which means "any version".
      #
      # Be careful that you don't overwrite OpenSSL::SSL::OP_NO_{SSL,TLS}v*
      # options by #options= once you have called #min_version= or
      # #max_version=.
      #
      # === Example
      #   ctx = OpenSSL::SSL::SSLContext.new
      #   ctx.min_version = OpenSSL::SSL::TLS1_1_VERSION
      #   ctx.max_version = OpenSSL::SSL::TLS1_2_VERSION
      #
      #   sock = OpenSSL::SSL::SSLSocket.new(tcp_sock, ctx)
      #   sock.connect # Initiates a connection using either TLS 1.1 or TLS 1.2
      def min_version=(version)
        set_minmax_proto_version(version, @max_proto_version ||= nil)
        @min_proto_version = version
      end

      # call-seq:
      #    ctx.max_version = OpenSSL::SSL::TLS1_2_VERSION
      #    ctx.max_version = :TLS1_2
      #    ctx.max_version = nil
      #
      # Sets the upper bound of the supported SSL/TLS protocol version. See
      # #min_version= for the possible values.
      def max_version=(version)
        set_minmax_proto_version(@min_proto_version ||= nil, version)
        @max_proto_version = version
      end

      # call-seq:
      #    ctx.ssl_version = :TLSv1
      #    ctx.ssl_version = "SSLv23"
      #
      # Sets the SSL/TLS protocol version for the context. This forces
      # connections to use only the specified protocol version. This is
      # deprecated and only provided for backwards compatibility. Use
      # #min_version= and #max_version= instead.
      #
      # === History
      # As the name hints, this used to call the SSL_CTX_set_ssl_version()
      # function which sets the SSL method used for connections created from
      # the context. As of Ruby/OpenSSL 2.1, this accessor method is
      # implemented to call #min_version= and #max_version= instead.
      def ssl_version=(meth)
        meth = meth.to_s if meth.is_a?(Symbol)
        if /(?<type>_client|_server)\z/ =~ meth
          meth = $`
          if $VERBOSE
            warn "#{caller(1, 1)[0]}: method type #{type.inspect} is ignored"
          end
        end
        version = METHODS_MAP[meth.intern] or
          raise ArgumentError, "unknown SSL method `%s'" % meth
        set_minmax_proto_version(version, version)
        @min_proto_version = @max_proto_version = version
      end

      METHODS_MAP = {
        SSLv23: 0,
        SSLv2: OpenSSL::SSL::SSL2_VERSION,
        SSLv3: OpenSSL::SSL::SSL3_VERSION,
        TLSv1: OpenSSL::SSL::TLS1_VERSION,
        TLSv1_1: OpenSSL::SSL::TLS1_1_VERSION,
        TLSv1_2: OpenSSL::SSL::TLS1_2_VERSION,
      }.freeze
      private_constant :METHODS_MAP

      # The list of available SSL/TLS methods. This constant is only provided
      # for backwards compatibility.
      METHODS = METHODS_MAP.flat_map { |name,|
        [name, :"#{name}_client", :"#{name}_server"]
      }.freeze
      deprecate_constant :METHODS
    end

    module SocketForwarder
      def addr
        to_io.addr
      end

      def peeraddr
        to_io.peeraddr
      end

      def setsockopt(level, optname, optval)
        to_io.setsockopt(level, optname, optval)
      end

      def getsockopt(level, optname)
        to_io.getsockopt(level, optname)
      end

      def fcntl(*args)
        to_io.fcntl(*args)
      end

      def closed?
        to_io.closed?
      end

      def do_not_reverse_lookup=(flag)
        to_io.do_not_reverse_lookup = flag
      end
    end

    def verify_certificate_identity(cert, hostname)
      should_verify_common_name = true
      cert.extensions.each{|ext|
        next if ext.oid != "subjectAltName"
        ostr = OpenSSL::ASN1.decode(ext.to_der).value.last
        sequence = OpenSSL::ASN1.decode(ostr.value)
        sequence.value.each{|san|
          case san.tag
          when 2 # dNSName in GeneralName (RFC5280)
            should_verify_common_name = false
            return true if verify_hostname(hostname, san.value)
          when 7 # iPAddress in GeneralName (RFC5280)
            should_verify_common_name = false
            if san.value.size == 4 || san.value.size == 16
              begin
                return true if san.value == IPAddr.new(hostname).hton
              rescue IPAddr::InvalidAddressError
              end
            end
          end
        }
      }
      if should_verify_common_name
        cert.subject.to_a.each{|oid, value|
          if oid == "CN"
            return true if verify_hostname(hostname, value)
          end
        }
      end
      return false
    end
    module_function :verify_certificate_identity

    def verify_hostname(hostname, san) # :nodoc:
      # RFC 5280, IA5String is limited to the set of ASCII characters
      return false unless san.ascii_only?
      return false unless hostname.ascii_only?

      # See RFC 6125, section 6.4.1
      # Matching is case-insensitive.
      san_parts = san.downcase.split(".")

      # TODO: this behavior should probably be more strict
      return san == hostname if san_parts.size < 2

      # Matching is case-insensitive.
      host_parts = hostname.downcase.split(".")

      # RFC 6125, section 6.4.3, subitem 2.
      # If the wildcard character is the only character of the left-most
      # label in the presented identifier, the client SHOULD NOT compare
      # against anything but the left-most label of the reference
      # identifier (e.g., *.example.com would match foo.example.com but
      # not bar.foo.example.com or example.com).
      return false unless san_parts.size == host_parts.size

      # RFC 6125, section 6.4.3, subitem 1.
      # The client SHOULD NOT attempt to match a presented identifier in
      # which the wildcard character comprises a label other than the
      # left-most label (e.g., do not match bar.*.example.net).
      return false unless verify_wildcard(host_parts.shift, san_parts.shift)

      san_parts.join(".") == host_parts.join(".")
    end
    module_function :verify_hostname

    def verify_wildcard(domain_component, san_component) # :nodoc:
      parts = san_component.split("*", -1)

      return false if parts.size > 2
      return san_component == domain_component if parts.size == 1

      # RFC 6125, section 6.4.3, subitem 3.
      # The client SHOULD NOT attempt to match a presented identifier
      # where the wildcard character is embedded within an A-label or
      # U-label of an internationalized domain name.
      return false if domain_component.start_with?("xn--") && san_component != "*"

      parts[0].length + parts[1].length < domain_component.length &&
      domain_component.start_with?(parts[0]) &&
      domain_component.end_with?(parts[1])
    end
    module_function :verify_wildcard

    class SSLSocket
      include Buffering
      include SocketForwarder

      attr_reader :hostname

      # The underlying IO object.
      attr_reader :io
      alias :to_io :io

      # The SSLContext object used in this connection.
      attr_reader :context

      # Whether to close the underlying socket as well, when the SSL/TLS
      # connection is shut down. This defaults to +false+.
      attr_accessor :sync_close

      # call-seq:
      #    ssl.sysclose => nil
      #
      # Sends "close notify" to the peer and tries to shut down the SSL
      # connection gracefully.
      #
      # If sync_close is set to +true+, the underlying IO is also closed.
      def sysclose
        return if closed?
        stop
        io.close if sync_close
      end

      # call-seq:
      #   ssl.post_connection_check(hostname) -> true
      #
      # Perform hostname verification following RFC 6125.
      #
      # This method MUST be called after calling #connect to ensure that the
      # hostname of a remote peer has been verified.
      def post_connection_check(hostname)
        if peer_cert.nil?
          msg = "Peer verification enabled, but no certificate received."
          if using_anon_cipher?
            msg += " Anonymous cipher suite #{cipher[0]} was negotiated. " \
                   "Anonymous suites must be disabled to use peer verification."
          end
          raise SSLError, msg
        end

        unless OpenSSL::SSL.verify_certificate_identity(peer_cert, hostname)
          raise SSLError, "hostname \"#{hostname}\" does not match the server certificate"
        end
        return true
      end

      # call-seq:
      #   ssl.session -> aSession
      #
      # Returns the SSLSession object currently used, or nil if the session is
      # not established.
      def session
        SSL::Session.new(self)
      rescue SSL::Session::SessionError
        nil
      end

      private

      def using_anon_cipher?
        ctx = OpenSSL::SSL::SSLContext.new
        ctx.ciphers = "aNULL"
        ctx.ciphers.include?(cipher)
      end

      def client_cert_cb
        @context.client_cert_cb
      end

      def tmp_dh_callback
        @context.tmp_dh_callback || OpenSSL::SSL::SSLContext::DEFAULT_TMP_DH_CALLBACK
      end

      def tmp_ecdh_callback
        @context.tmp_ecdh_callback
      end

      def session_new_cb
        @context.session_new_cb
      end

      def session_get_cb
        @context.session_get_cb
      end
    end

    ##
    # SSLServer represents a TCP/IP server socket with Secure Sockets Layer.
    class SSLServer
      include SocketForwarder
      # When true then #accept works exactly the same as TCPServer#accept
      attr_accessor :start_immediately

      # Creates a new instance of SSLServer.
      # * _srv_ is an instance of TCPServer.
      # * _ctx_ is an instance of OpenSSL::SSL::SSLContext.
      def initialize(svr, ctx)
        @svr = svr
        @ctx = ctx
        unless ctx.session_id_context
          # see #6137 - session id may not exceed 32 bytes
          prng = ::Random.new($0.hash)
          session_id = prng.bytes(16).unpack('H*')[0]
          @ctx.session_id_context = session_id
        end
        @start_immediately = true
      end

      # Returns the TCPServer passed to the SSLServer when initialized.
      def to_io
        @svr
      end

      # See TCPServer#listen for details.
      def listen(backlog=5)
        @svr.listen(backlog)
      end

      # See BasicSocket#shutdown for details.
      def shutdown(how=Socket::SHUT_RDWR)
        @svr.shutdown(how)
      end

      # Works similar to TCPServer#accept.
      def accept
        # Socket#accept returns [socket, addrinfo].
        # TCPServer#accept returns a socket.
        # The following comma strips addrinfo.
        sock, = @svr.accept
        begin
          ssl = OpenSSL::SSL::SSLSocket.new(sock, @ctx)
          ssl.sync_close = true
          ssl.accept if @start_immediately
          ssl
        rescue Exception => ex
          if ssl
            ssl.close
          else
            sock.close
          end
          raise ex
        end
      end

      # See IO#close for details.
      def close
        @svr.close
      end
    end
  end
end
PKAH[������3share/gems/gems/openssl-2.1.4/lib/openssl/digest.rbnu�[���# frozen_string_literal: false
#--
# = Ruby-space predefined Digest subclasses
#
# = Info
# 'OpenSSL for Ruby 2' project
# Copyright (C) 2002  Michal Rokos <m.rokos@sh.cvut.cz>
# All rights reserved.
#
# = Licence
# This program is licensed under the same licence as Ruby.
# (See the file 'LICENCE'.)
#++

module OpenSSL
  class Digest

    alg = %w(MD2 MD4 MD5 MDC2 RIPEMD160 SHA1 SHA224 SHA256 SHA384 SHA512)
    if OPENSSL_VERSION_NUMBER < 0x10100000
      alg += %w(DSS DSS1 SHA)
    end

    # Return the hash value computed with _name_ Digest. _name_ is either the
    # long name or short name of a supported digest algorithm.
    #
    # === Examples
    #
    #   OpenSSL::Digest.digest("SHA256", "abc")
    #
    # which is equivalent to:
    #
    #   OpenSSL::Digest::SHA256.digest("abc")

    def self.digest(name, data)
      super(data, name)
    end

    alg.each{|name|
      klass = Class.new(self) {
        define_method(:initialize, ->(data = nil) {super(name, data)})
      }
      singleton = (class << klass; self; end)
      singleton.class_eval{
        define_method(:digest){|data| new.digest(data) }
        define_method(:hexdigest){|data| new.hexdigest(data) }
      }
      const_set(name, klass)
    }

    # Deprecated.
    #
    # This class is only provided for backwards compatibility.
    # Use OpenSSL::Digest instead.
    class Digest < Digest; end # :nodoc:
    deprecate_constant :Digest

  end # Digest

  # Returns a Digest subclass by _name_
  #
  #   require 'openssl'
  #
  #   OpenSSL::Digest("MD5")
  #   # => OpenSSL::Digest::MD5
  #
  #   Digest("Foo")
  #   # => NameError: wrong constant name Foo

  def Digest(name)
    OpenSSL::Digest.const_get(name)
  end

  module_function :Digest

end # OpenSSL
PKAH[w+D��3share/gems/gems/openssl-2.1.4/lib/openssl/cipher.rbnu�[���# frozen_string_literal: false
#--
# = Ruby-space predefined Cipher subclasses
#
# = Info
# 'OpenSSL for Ruby 2' project
# Copyright (C) 2002  Michal Rokos <m.rokos@sh.cvut.cz>
# All rights reserved.
#
# = Licence
# This program is licensed under the same licence as Ruby.
# (See the file 'LICENCE'.)
#++

module OpenSSL
  class Cipher
    %w(AES CAST5 BF DES IDEA RC2 RC4 RC5).each{|name|
      klass = Class.new(Cipher){
        define_method(:initialize){|*args|
          cipher_name = args.inject(name){|n, arg| "#{n}-#{arg}" }
          super(cipher_name.downcase)
        }
      }
      const_set(name, klass)
    }

    %w(128 192 256).each{|keylen|
      klass = Class.new(Cipher){
        define_method(:initialize){|mode = "CBC"|
          super("aes-#{keylen}-#{mode}".downcase)
        }
      }
      const_set("AES#{keylen}", klass)
    }

    # call-seq:
    #   cipher.random_key -> key
    #
    # Generate a random key with OpenSSL::Random.random_bytes and sets it to
    # the cipher, and returns it.
    #
    # You must call #encrypt or #decrypt before calling this method.
    def random_key
      str = OpenSSL::Random.random_bytes(self.key_len)
      self.key = str
    end

    # call-seq:
    #   cipher.random_iv -> iv
    #
    # Generate a random IV with OpenSSL::Random.random_bytes and sets it to the
    # cipher, and returns it.
    #
    # You must call #encrypt or #decrypt before calling this method.
    def random_iv
      str = OpenSSL::Random.random_bytes(self.iv_len)
      self.iv = str
    end

    # Deprecated.
    #
    # This class is only provided for backwards compatibility.
    # Use OpenSSL::Cipher.
    class Cipher < Cipher; end
    deprecate_constant :Cipher
  end # Cipher
end # OpenSSL
PKAH[�L���7share/gems/gems/io-console-0.5.6/lib/io/console/size.rbnu�[���# frozen_string_literal: false
# fallback to console window size
def IO.default_console_size
  [
    ENV["LINES"].to_i.nonzero? || 25,
    ENV["COLUMNS"].to_i.nonzero? || 80,
  ]
end

begin
  require 'io/console'
rescue LoadError
  class << IO
    alias console_size default_console_size
  end
else
  # returns console window size
  def IO.console_size
    console.winsize
  rescue NoMethodError
    default_console_size
  end
end
PKAH[�$(Q�T�T(share/gems/gems/psych-3.1.0/lib/psych.rbnu�[���# frozen_string_literal: true
require 'psych/versions'
case RUBY_ENGINE
when 'jruby'
  require 'psych_jars'
  if JRuby::Util.respond_to?(:load_ext)
    JRuby::Util.load_ext('org.jruby.ext.psych.PsychLibrary')
  else
    require 'java'; require 'jruby'
    org.jruby.ext.psych.PsychLibrary.new.load(JRuby.runtime, false)
  end
else
  require 'psych.so'
end
require 'psych/nodes'
require 'psych/streaming'
require 'psych/visitors'
require 'psych/handler'
require 'psych/tree_builder'
require 'psych/parser'
require 'psych/omap'
require 'psych/set'
require 'psych/coder'
require 'psych/core_ext'
require 'psych/stream'
require 'psych/json/tree_builder'
require 'psych/json/stream'
require 'psych/handlers/document_stream'
require 'psych/class_loader'

###
# = Overview
#
# Psych is a YAML parser and emitter.
# Psych leverages libyaml [Home page: https://pyyaml.org/wiki/LibYAML]
# or [HG repo: https://bitbucket.org/xi/libyaml] for its YAML parsing
# and emitting capabilities. In addition to wrapping libyaml, Psych also
# knows how to serialize and de-serialize most Ruby objects to and from
# the YAML format.
#
# = I NEED TO PARSE OR EMIT YAML RIGHT NOW!
#
#   # Parse some YAML
#   Psych.load("--- foo") # => "foo"
#
#   # Emit some YAML
#   Psych.dump("foo")     # => "--- foo\n...\n"
#   { :a => 'b'}.to_yaml  # => "---\n:a: b\n"
#
# Got more time on your hands?  Keep on reading!
#
# == YAML Parsing
#
# Psych provides a range of interfaces for parsing a YAML document ranging from
# low level to high level, depending on your parsing needs.  At the lowest
# level, is an event based parser.  Mid level is access to the raw YAML AST,
# and at the highest level is the ability to unmarshal YAML to Ruby objects.
#
# == YAML Emitting
#
# Psych provides a range of interfaces ranging from low to high level for
# producing YAML documents.  Very similar to the YAML parsing interfaces, Psych
# provides at the lowest level, an event based system, mid-level is building
# a YAML AST, and the highest level is converting a Ruby object straight to
# a YAML document.
#
# == High-level API
#
# === Parsing
#
# The high level YAML parser provided by Psych simply takes YAML as input and
# returns a Ruby data structure.  For information on using the high level parser
# see Psych.load
#
# ==== Reading from a string
#
#   Psych.load("--- a")             # => 'a'
#   Psych.load("---\n - a\n - b")   # => ['a', 'b']
#
# ==== Reading from a file
#
#   Psych.load_file("database.yml")
#
# ==== Exception handling
#
#   begin
#     # The second argument changes only the exception contents
#     Psych.parse("--- `", "file.txt")
#   rescue Psych::SyntaxError => ex
#     ex.file    # => 'file.txt'
#     ex.message # => "(file.txt): found character that cannot start any token"
#   end
#
# === Emitting
#
# The high level emitter has the easiest interface.  Psych simply takes a Ruby
# data structure and converts it to a YAML document.  See Psych.dump for more
# information on dumping a Ruby data structure.
#
# ==== Writing to a string
#
#   # Dump an array, get back a YAML string
#   Psych.dump(['a', 'b'])  # => "---\n- a\n- b\n"
#
#   # Dump an array to an IO object
#   Psych.dump(['a', 'b'], StringIO.new)  # => #<StringIO:0x000001009d0890>
#
#   # Dump an array with indentation set
#   Psych.dump(['a', ['b']], :indentation => 3) # => "---\n- a\n-  - b\n"
#
#   # Dump an array to an IO with indentation set
#   Psych.dump(['a', ['b']], StringIO.new, :indentation => 3)
#
# ==== Writing to a file
#
# Currently there is no direct API for dumping Ruby structure to file:
#
#   File.open('database.yml', 'w') do |file|
#     file.write(Psych.dump(['a', 'b']))
#   end
#
# == Mid-level API
#
# === Parsing
#
# Psych provides access to an AST produced from parsing a YAML document.  This
# tree is built using the Psych::Parser and Psych::TreeBuilder.  The AST can
# be examined and manipulated freely.  Please see Psych::parse_stream,
# Psych::Nodes, and Psych::Nodes::Node for more information on dealing with
# YAML syntax trees.
#
# ==== Reading from a string
#
#   # Returns Psych::Nodes::Stream
#   Psych.parse_stream("---\n - a\n - b")
#
#   # Returns Psych::Nodes::Document
#   Psych.parse("---\n - a\n - b")
#
# ==== Reading from a file
#
#   # Returns Psych::Nodes::Stream
#   Psych.parse_stream(File.read('database.yml'))
#
#   # Returns Psych::Nodes::Document
#   Psych.parse_file('database.yml')
#
# ==== Exception handling
#
#   begin
#     # The second argument changes only the exception contents
#     Psych.parse("--- `", "file.txt")
#   rescue Psych::SyntaxError => ex
#     ex.file    # => 'file.txt'
#     ex.message # => "(file.txt): found character that cannot start any token"
#   end
#
# === Emitting
#
# At the mid level is building an AST.  This AST is exactly the same as the AST
# used when parsing a YAML document.  Users can build an AST by hand and the
# AST knows how to emit itself as a YAML document.  See Psych::Nodes,
# Psych::Nodes::Node, and Psych::TreeBuilder for more information on building
# a YAML AST.
#
# ==== Writing to a string
#
#   # We need Psych::Nodes::Stream (not Psych::Nodes::Document)
#   stream = Psych.parse_stream("---\n - a\n - b")
#
#   stream.to_yaml # => "---\n- a\n- b\n"
#
# ==== Writing to a file
#
#   # We need Psych::Nodes::Stream (not Psych::Nodes::Document)
#   stream = Psych.parse_stream(File.read('database.yml'))
#
#   File.open('database.yml', 'w') do |file|
#     file.write(stream.to_yaml)
#   end
#
# == Low-level API
#
# === Parsing
#
# The lowest level parser should be used when the YAML input is already known,
# and the developer does not want to pay the price of building an AST or
# automatic detection and conversion to Ruby objects.  See Psych::Parser for
# more information on using the event based parser.
#
# ==== Reading to Psych::Nodes::Stream structure
#
#   parser = Psych::Parser.new(TreeBuilder.new) # => #<Psych::Parser>
#   parser = Psych.parser                       # it's an alias for the above
#
#   parser.parse("---\n - a\n - b")             # => #<Psych::Parser>
#   parser.handler                              # => #<Psych::TreeBuilder>
#   parser.handler.root                         # => #<Psych::Nodes::Stream>
#
# ==== Receiving an events stream
#
#   recorder = Psych::Handlers::Recorder.new
#   parser = Psych::Parser.new(recorder)
#
#   parser.parse("---\n - a\n - b")
#   recorder.events # => [list of [event, args] lists]
#                   # event is one of: Psych::Handler::EVENTS
#                   # args are the arguments passed to the event
#
# === Emitting
#
# The lowest level emitter is an event based system.  Events are sent to a
# Psych::Emitter object.  That object knows how to convert the events to a YAML
# document.  This interface should be used when document format is known in
# advance or speed is a concern.  See Psych::Emitter for more information.
#
# ==== Writing to a Ruby structure
#
#   Psych.parser.parse("--- a")       # => #<Psych::Parser>
#
#   parser.handler.first              # => #<Psych::Nodes::Stream>
#   parser.handler.first.to_ruby      # => ["a"]
#
#   parser.handler.root.first         # => #<Psych::Nodes::Document>
#   parser.handler.root.first.to_ruby # => "a"
#
#   # You can instantiate an Emitter manually
#   Psych::Visitors::ToRuby.new.accept(parser.handler.root.first)
#   # => "a"

module Psych
  # The version of libyaml Psych is using
  LIBYAML_VERSION = Psych.libyaml_version.join '.'
  # Deprecation guard
  NOT_GIVEN = Object.new
  private_constant :NOT_GIVEN

  ###
  # Load +yaml+ in to a Ruby data structure.  If multiple documents are
  # provided, the object contained in the first document will be returned.
  # +filename+ will be used in the exception message if any exception
  # is raised while parsing.  If +yaml+ is empty, it returns
  # the specified +fallback+ return value, which defaults to +false+.
  #
  # Raises a Psych::SyntaxError when a YAML syntax error is detected.
  #
  # Example:
  #
  #   Psych.load("--- a")             # => 'a'
  #   Psych.load("---\n - a\n - b")   # => ['a', 'b']
  #
  #   begin
  #     Psych.load("--- `", filename: "file.txt")
  #   rescue Psych::SyntaxError => ex
  #     ex.file    # => 'file.txt'
  #     ex.message # => "(file.txt): found character that cannot start any token"
  #   end
  #
  # When the optional +symbolize_names+ keyword argument is set to a
  # true value, returns symbols for keys in Hash objects (default: strings).
  #
  #   Psych.load("---\n foo: bar")                         # => {"foo"=>"bar"}
  #   Psych.load("---\n foo: bar", symbolize_names: true)  # => {:foo=>"bar"}
  #
  # Raises a TypeError when `yaml` parameter is NilClass
  #
  # NOTE: This method *should not* be used to parse untrusted documents, such as
  # YAML documents that are supplied via user input.  Instead, please use the
  # safe_load method.
  #
  def self.load yaml, legacy_filename = NOT_GIVEN, filename: nil, fallback: false, symbolize_names: false
    if legacy_filename != NOT_GIVEN
      warn_with_uplevel 'Passing filename with the 2nd argument of Psych.load is deprecated. Use keyword argument like Psych.load(yaml, filename: ...) instead.', uplevel: 1 if $VERBOSE
      filename = legacy_filename
    end

    result = parse(yaml, filename: filename)
    return fallback unless result
    result = result.to_ruby if result
    symbolize_names!(result) if symbolize_names
    result
  end

  ###
  # Safely load the yaml string in +yaml+.  By default, only the following
  # classes are allowed to be deserialized:
  #
  # * TrueClass
  # * FalseClass
  # * NilClass
  # * Numeric
  # * String
  # * Array
  # * Hash
  #
  # Recursive data structures are not allowed by default.  Arbitrary classes
  # can be allowed by adding those classes to the +permitted_classes+ keyword argument.  They are
  # additive.  For example, to allow Date deserialization:
  #
  #   Psych.safe_load(yaml, permitted_classes: [Date])
  #
  # Now the Date class can be loaded in addition to the classes listed above.
  #
  # Aliases can be explicitly allowed by changing the +aliases+ keyword argument.
  # For example:
  #
  #   x = []
  #   x << x
  #   yaml = Psych.dump x
  #   Psych.safe_load yaml               # => raises an exception
  #   Psych.safe_load yaml, aliases: true # => loads the aliases
  #
  # A Psych::DisallowedClass exception will be raised if the yaml contains a
  # class that isn't in the +permitted_classes+ list.
  #
  # A Psych::BadAlias exception will be raised if the yaml contains aliases
  # but the +aliases+ keyword argument is set to false.
  #
  # +filename+ will be used in the exception message if any exception is raised
  # while parsing.
  #
  # When the optional +symbolize_names+ keyword argument is set to a
  # true value, returns symbols for keys in Hash objects (default: strings).
  #
  #   Psych.safe_load("---\n foo: bar")                         # => {"foo"=>"bar"}
  #   Psych.safe_load("---\n foo: bar", symbolize_names: true)  # => {:foo=>"bar"}
  #
  def self.safe_load yaml, legacy_permitted_classes = NOT_GIVEN, legacy_permitted_symbols = NOT_GIVEN, legacy_aliases = NOT_GIVEN, legacy_filename = NOT_GIVEN, permitted_classes: [], permitted_symbols: [], aliases: false, filename: nil, fallback: nil, symbolize_names: false
    if legacy_permitted_classes != NOT_GIVEN
      warn_with_uplevel 'Passing permitted_classes with the 2nd argument of Psych.safe_load is deprecated. Use keyword argument like Psych.safe_load(yaml, permitted_classes: ...) instead.', uplevel: 1 if $VERBOSE
      permitted_classes = legacy_permitted_classes
    end

    if legacy_permitted_symbols != NOT_GIVEN
      warn_with_uplevel 'Passing permitted_symbols with the 3rd argument of Psych.safe_load is deprecated. Use keyword argument like Psych.safe_load(yaml, permitted_symbols: ...) instead.', uplevel: 1 if $VERBOSE
      permitted_symbols = legacy_permitted_symbols
    end

    if legacy_aliases != NOT_GIVEN
      warn_with_uplevel 'Passing aliases with the 4th argument of Psych.safe_load is deprecated. Use keyword argument like Psych.safe_load(yaml, aliases: ...) instead.', uplevel: 1 if $VERBOSE
      aliases = legacy_aliases
    end

    if legacy_filename != NOT_GIVEN
      warn_with_uplevel 'Passing filename with the 5th argument of Psych.safe_load is deprecated. Use keyword argument like Psych.safe_load(yaml, filename: ...) instead.', uplevel: 1 if $VERBOSE
      filename = legacy_filename
    end

    result = parse(yaml, filename: filename)
    return fallback unless result

    class_loader = ClassLoader::Restricted.new(permitted_classes.map(&:to_s),
                                               permitted_symbols.map(&:to_s))
    scanner      = ScalarScanner.new class_loader
    visitor = if aliases
                Visitors::ToRuby.new scanner, class_loader
              else
                Visitors::NoAliasRuby.new scanner, class_loader
              end
    result = visitor.accept result
    symbolize_names!(result) if symbolize_names
    result
  end

  ###
  # Parse a YAML string in +yaml+.  Returns the Psych::Nodes::Document.
  # +filename+ is used in the exception message if a Psych::SyntaxError is
  # raised.
  #
  # Raises a Psych::SyntaxError when a YAML syntax error is detected.
  #
  # Example:
  #
  #   Psych.parse("---\n - a\n - b") # => #<Psych::Nodes::Document:0x00>
  #
  #   begin
  #     Psych.parse("--- `", filename: "file.txt")
  #   rescue Psych::SyntaxError => ex
  #     ex.file    # => 'file.txt'
  #     ex.message # => "(file.txt): found character that cannot start any token"
  #   end
  #
  # See Psych::Nodes for more information about YAML AST.
  def self.parse yaml, legacy_filename = NOT_GIVEN, filename: nil, fallback: NOT_GIVEN
    if legacy_filename != NOT_GIVEN
      warn_with_uplevel 'Passing filename with the 2nd argument of Psych.parse is deprecated. Use keyword argument like Psych.parse(yaml, filename: ...) instead.', uplevel: 1 if $VERBOSE
      filename = legacy_filename
    end

    parse_stream(yaml, filename: filename) do |node|
      return node
    end

    if fallback != NOT_GIVEN
      warn_with_uplevel 'Passing the `fallback` keyword argument of Psych.parse is deprecated.', uplevel: 1 if $VERBOSE
      fallback
    else
      false
    end
  end

  ###
  # Parse a file at +filename+. Returns the Psych::Nodes::Document.
  #
  # Raises a Psych::SyntaxError when a YAML syntax error is detected.
  def self.parse_file filename, fallback: false
    result = File.open filename, 'r:bom|utf-8' do |f|
      parse f, filename: filename
    end
    result || fallback
  end

  ###
  # Returns a default parser
  def self.parser
    Psych::Parser.new(TreeBuilder.new)
  end

  ###
  # Parse a YAML string in +yaml+.  Returns the Psych::Nodes::Stream.
  # This method can handle multiple YAML documents contained in +yaml+.
  # +filename+ is used in the exception message if a Psych::SyntaxError is
  # raised.
  #
  # If a block is given, a Psych::Nodes::Document node will be yielded to the
  # block as it's being parsed.
  #
  # Raises a Psych::SyntaxError when a YAML syntax error is detected.
  #
  # Example:
  #
  #   Psych.parse_stream("---\n - a\n - b") # => #<Psych::Nodes::Stream:0x00>
  #
  #   Psych.parse_stream("--- a\n--- b") do |node|
  #     node # => #<Psych::Nodes::Document:0x00>
  #   end
  #
  #   begin
  #     Psych.parse_stream("--- `", filename: "file.txt")
  #   rescue Psych::SyntaxError => ex
  #     ex.file    # => 'file.txt'
  #     ex.message # => "(file.txt): found character that cannot start any token"
  #   end
  #
  # Raises a TypeError when NilClass is passed.
  #
  # See Psych::Nodes for more information about YAML AST.
  def self.parse_stream yaml, legacy_filename = NOT_GIVEN, filename: nil, &block
    if legacy_filename != NOT_GIVEN
      warn_with_uplevel 'Passing filename with the 2nd argument of Psych.parse_stream is deprecated. Use keyword argument like Psych.parse_stream(yaml, filename: ...) instead.', uplevel: 1 if $VERBOSE
      filename = legacy_filename
    end

    if block_given?
      parser = Psych::Parser.new(Handlers::DocumentStream.new(&block))
      parser.parse yaml, filename
    else
      parser = self.parser
      parser.parse yaml, filename
      parser.handler.root
    end
  end

  ###
  # call-seq:
  #   Psych.dump(o)               -> string of yaml
  #   Psych.dump(o, options)      -> string of yaml
  #   Psych.dump(o, io)           -> io object passed in
  #   Psych.dump(o, io, options)  -> io object passed in
  #
  # Dump Ruby object +o+ to a YAML string.  Optional +options+ may be passed in
  # to control the output format.  If an IO object is passed in, the YAML will
  # be dumped to that IO object.
  #
  # Currently supported options are:
  #
  # [<tt>:indentation</tt>]   Number of space characters used to indent.
  #                           Acceptable value should be in <tt>0..9</tt> range,
  #                           otherwise option is ignored.
  #
  #                           Default: <tt>2</tt>.
  # [<tt>:line_width</tt>]    Max character to wrap line at.
  #
  #                           Default: <tt>0</tt> (meaning "wrap at 81").
  # [<tt>:canonical</tt>]     Write "canonical" YAML form (very verbose, yet
  #                           strictly formal).
  #
  #                           Default: <tt>false</tt>.
  # [<tt>:header</tt>]        Write <tt>%YAML [version]</tt> at the beginning of document.
  #
  #                           Default: <tt>false</tt>.
  #
  # Example:
  #
  #   # Dump an array, get back a YAML string
  #   Psych.dump(['a', 'b'])  # => "---\n- a\n- b\n"
  #
  #   # Dump an array to an IO object
  #   Psych.dump(['a', 'b'], StringIO.new)  # => #<StringIO:0x000001009d0890>
  #
  #   # Dump an array with indentation set
  #   Psych.dump(['a', ['b']], indentation: 3) # => "---\n- a\n-  - b\n"
  #
  #   # Dump an array to an IO with indentation set
  #   Psych.dump(['a', ['b']], StringIO.new, indentation: 3)
  def self.dump o, io = nil, options = {}
    if Hash === io
      options = io
      io      = nil
    end

    visitor = Psych::Visitors::YAMLTree.create options
    visitor << o
    visitor.tree.yaml io, options
  end

  ###
  # Dump a list of objects as separate documents to a document stream.
  #
  # Example:
  #
  #   Psych.dump_stream("foo\n  ", {}) # => "--- ! \"foo\\n  \"\n--- {}\n"
  def self.dump_stream *objects
    visitor = Psych::Visitors::YAMLTree.create({})
    objects.each do |o|
      visitor << o
    end
    visitor.tree.yaml
  end

  ###
  # Dump Ruby +object+ to a JSON string.
  def self.to_json object
    visitor = Psych::Visitors::JSONTree.create
    visitor << object
    visitor.tree.yaml
  end

  ###
  # Load multiple documents given in +yaml+.  Returns the parsed documents
  # as a list.  If a block is given, each document will be converted to Ruby
  # and passed to the block during parsing
  #
  # Example:
  #
  #   Psych.load_stream("--- foo\n...\n--- bar\n...") # => ['foo', 'bar']
  #
  #   list = []
  #   Psych.load_stream("--- foo\n...\n--- bar\n...") do |ruby|
  #     list << ruby
  #   end
  #   list # => ['foo', 'bar']
  #
  def self.load_stream yaml, legacy_filename = NOT_GIVEN, filename: nil, fallback: []
    if legacy_filename != NOT_GIVEN
      warn_with_uplevel 'Passing filename with the 2nd argument of Psych.load_stream is deprecated. Use keyword argument like Psych.load_stream(yaml, filename: ...) instead.', uplevel: 1 if $VERBOSE
      filename = legacy_filename
    end

    result = if block_given?
               parse_stream(yaml, filename: filename) do |node|
                 yield node.to_ruby
               end
             else
               parse_stream(yaml, filename: filename).children.map(&:to_ruby)
             end

    return fallback if result.is_a?(Array) && result.empty?
    result
  end

  ###
  # Load the document contained in +filename+.  Returns the yaml contained in
  # +filename+ as a Ruby object, or if the file is empty, it returns
  # the specified +fallback+ return value, which defaults to +false+.
  def self.load_file filename, fallback: false
    File.open(filename, 'r:bom|utf-8') { |f|
      self.load f, filename: filename, fallback: fallback
    }
  end

  # :stopdoc:
  @domain_types = {}
  def self.add_domain_type domain, type_tag, &block
    key = ['tag', domain, type_tag].join ':'
    @domain_types[key] = [key, block]
    @domain_types["tag:#{type_tag}"] = [key, block]
  end

  def self.add_builtin_type type_tag, &block
    domain = 'yaml.org,2002'
    key = ['tag', domain, type_tag].join ':'
    @domain_types[key] = [key, block]
  end

  def self.remove_type type_tag
    @domain_types.delete type_tag
  end

  @load_tags = {}
  @dump_tags = {}
  def self.add_tag tag, klass
    @load_tags[tag] = klass.name
    @dump_tags[klass] = tag
  end

  def self.symbolize_names!(result)
    case result
    when Hash
      result.keys.each do |key|
        result[key.to_sym] = symbolize_names!(result.delete(key))
      end
    when Array
      result.map! { |r| symbolize_names!(r) }
    end
    result
  end
  private_class_method :symbolize_names!

  # Workaround for emulating `warn '...', uplevel: 1` in Ruby 2.4 or lower.
  def self.warn_with_uplevel(message, uplevel: 1)
    at = parse_caller(caller[uplevel]).join(':')
    warn "#{at}: #{message}"
  end

  def self.parse_caller(at)
    if /^(.+?):(\d+)(?::in `.*')?/ =~ at
      file = $1
      line = $2.to_i
      [file, line]
    end
  end
  private_class_method :warn_with_uplevel, :parse_caller

  class << self
    attr_accessor :load_tags
    attr_accessor :dump_tags
    attr_accessor :domain_types
  end
  # :startdoc:
end
PKAH[��'K��*share/gems/gems/psych-3.1.0/lib/psych/y.rbnu�[���# frozen_string_literal: true
module Kernel
  ###
  # An alias for Psych.dump_stream meant to be used with IRB.
  def y *objects
    puts Psych.dump_stream(*objects)
  end
  private :y
end

PKAH[���2share/gems/gems/psych-3.1.0/lib/psych/exception.rbnu�[���# frozen_string_literal: true
module Psych
  class Exception < RuntimeError
  end

  class BadAlias < Exception
  end

  class DisallowedClass < Exception
    def initialize klass_name
      super "Tried to load unspecified class: #{klass_name}"
    end
  end
end
PKAH[��H���7share/gems/gems/psych-3.1.0/lib/psych/scalar_scanner.rbnu�[���# frozen_string_literal: true
require 'strscan'

module Psych
  ###
  # Scan scalars for built in types
  class ScalarScanner
    # Taken from http://yaml.org/type/timestamp.html
    TIME = /^-?\d{4}-\d{1,2}-\d{1,2}(?:[Tt]|\s+)\d{1,2}:\d\d:\d\d(?:\.\d*)?(?:\s*(?:Z|[-+]\d{1,2}:?(?:\d\d)?))?$/

    # Taken from http://yaml.org/type/float.html
    FLOAT = /^(?:[-+]?([0-9][0-9_,]*)?\.[0-9]*([eE][-+][0-9]+)?(?# base 10)
              |[-+]?\.(inf|Inf|INF)(?# infinity)
              |\.(nan|NaN|NAN)(?# not a number))$/x

    # Taken from http://yaml.org/type/int.html
    INTEGER = /^(?:[-+]?0b[0-1_,]+          (?# base 2)
                  |[-+]?0[0-7_,]+           (?# base 8)
                  |[-+]?(?:0|[1-9][0-9_,]*) (?# base 10)
                  |[-+]?0x[0-9a-fA-F_,]+    (?# base 16))$/x

    attr_reader :class_loader

    # Create a new scanner
    def initialize class_loader
      @symbol_cache = {}
      @class_loader = class_loader
    end

    # Tokenize +string+ returning the Ruby object
    def tokenize string
      return nil if string.empty?
      return @symbol_cache[string] if @symbol_cache.key?(string)

      # Check for a String type, being careful not to get caught by hash keys, hex values, and
      # special floats (e.g., -.inf).
      if string.match?(/^[^\d\.:-]?[A-Za-z_\s!@#\$%\^&\*\(\)\{\}\<\>\|\/\\~;=]+/) || string.match?(/\n/)
        return string if string.length > 5

        if string.match?(/^[^ytonf~]/i)
          string
        elsif string == '~' || string.match?(/^null$/i)
          nil
        elsif string.match?(/^(yes|true|on)$/i)
          true
        elsif string.match?(/^(no|false|off)$/i)
          false
        else
          string
        end
      elsif string.match?(TIME)
        begin
          parse_time string
        rescue ArgumentError
          string
        end
      elsif string.match?(/^\d{4}-(?:1[012]|0\d|\d)-(?:[12]\d|3[01]|0\d|\d)$/)
        require 'date'
        begin
          class_loader.date.strptime(string, '%Y-%m-%d')
        rescue ArgumentError
          string
        end
      elsif string.match?(/^\.inf$/i)
        Float::INFINITY
      elsif string.match?(/^-\.inf$/i)
        -Float::INFINITY
      elsif string.match?(/^\.nan$/i)
        Float::NAN
      elsif string.match?(/^:./)
        if string =~ /^:(["'])(.*)\1/
          @symbol_cache[string] = class_loader.symbolize($2.sub(/^:/, ''))
        else
          @symbol_cache[string] = class_loader.symbolize(string.sub(/^:/, ''))
        end
      elsif string.match?(/^[-+]?[0-9][0-9_]*(:[0-5]?[0-9]){1,2}$/)
        i = 0
        string.split(':').each_with_index do |n,e|
          i += (n.to_i * 60 ** (e - 2).abs)
        end
        i
      elsif string.match?(/^[-+]?[0-9][0-9_]*(:[0-5]?[0-9]){1,2}\.[0-9_]*$/)
        i = 0
        string.split(':').each_with_index do |n,e|
          i += (n.to_f * 60 ** (e - 2).abs)
        end
        i
      elsif string.match?(FLOAT)
        if string.match?(/\A[-+]?\.\Z/)
          string
        else
          Float(string.gsub(/[,_]|\.([Ee]|$)/, '\1'))
        end
      elsif string.match?(INTEGER)
        parse_int string
      else
        string
      end
    end

    ###
    # Parse and return an int from +string+
    def parse_int string
      Integer(string.gsub(/[,]/, ''))
    end

    ###
    # Parse and return a Time from +string+
    def parse_time string
      klass = class_loader.load 'Time'

      date, time = *(string.split(/[ tT]/, 2))
      (yy, m, dd) = date.match(/^(-?\d{4})-(\d{1,2})-(\d{1,2})/).captures.map { |x| x.to_i }
      md = time.match(/(\d+:\d+:\d+)(?:\.(\d*))?\s*(Z|[-+]\d+(:\d\d)?)?/)

      (hh, mm, ss) = md[1].split(':').map { |x| x.to_i }
      us = (md[2] ? Rational("0.#{md[2]}") : 0) * 1000000

      time = klass.utc(yy, m, dd, hh, mm, ss, us)

      return time if 'Z' == md[3]
      return klass.at(time.to_i, us) unless md[3]

      tz = md[3].match(/^([+\-]?\d{1,2})\:?(\d{1,2})?$/)[1..-1].compact.map { |digit| Integer(digit, 10) }
      offset = tz.first * 3600

      if offset < 0
        offset -= ((tz[1] || 0) * 60)
      else
        offset += ((tz[1] || 0) * 60)
      end

      klass.new(yy, m, dd, hh, mm, ss+us/(1_000_000r), offset)
    end
  end
end
PKAH[u�>22.share/gems/gems/psych-3.1.0/lib/psych/coder.rbnu�[���# frozen_string_literal: true
module Psych
  ###
  # If an object defines +encode_with+, then an instance of Psych::Coder will
  # be passed to the method when the object is being serialized.  The Coder
  # automatically assumes a Psych::Nodes::Mapping is being emitted.  Other
  # objects like Sequence and Scalar may be emitted if +seq=+ or +scalar=+ are
  # called, respectively.
  class Coder
    attr_accessor :tag, :style, :implicit, :object
    attr_reader   :type, :seq

    def initialize tag
      @map      = {}
      @seq      = []
      @implicit = false
      @type     = :map
      @tag      = tag
      @style    = Psych::Nodes::Mapping::BLOCK
      @scalar   = nil
      @object   = nil
    end

    def scalar *args
      if args.length > 0
        warn "#{caller[0]}: Coder#scalar(a,b,c) is deprecated" if $VERBOSE
        @tag, @scalar, _ = args
        @type = :scalar
      end
      @scalar
    end

    # Emit a map.  The coder will be yielded to the block.
    def map tag = @tag, style = @style
      @tag   = tag
      @style = style
      yield self if block_given?
      @map
    end

    # Emit a scalar with +value+ and +tag+
    def represent_scalar tag, value
      self.tag    = tag
      self.scalar = value
    end

    # Emit a sequence with +list+ and +tag+
    def represent_seq tag, list
      @tag = tag
      self.seq = list
    end

    # Emit a sequence with +map+ and +tag+
    def represent_map tag, map
      @tag = tag
      self.map = map
    end

    # Emit an arbitrary object +obj+ and +tag+
    def represent_object tag, obj
      @tag    = tag
      @type   = :object
      @object = obj
    end

    # Emit a scalar with +value+
    def scalar= value
      @type   = :scalar
      @scalar = value
    end

    # Emit a map with +value+
    def map= map
      @type = :map
      @map  = map
    end

    def []= k, v
      @type = :map
      @map[k] = v
    end
    alias :add :[]=

    def [] k
      @type = :map
      @map[k]
    end

    # Emit a sequence of +list+
    def seq= list
      @type = :seq
      @seq  = list
    end
  end
end
PKAH[�`�[��0share/gems/gems/psych-3.1.0/lib/psych/handler.rbnu�[���# frozen_string_literal: true
module Psych
  ###
  # Psych::Handler is an abstract base class that defines the events used
  # when dealing with Psych::Parser.  Clients who want to use Psych::Parser
  # should implement a class that inherits from Psych::Handler and define
  # events that they can handle.
  #
  # Psych::Handler defines all events that Psych::Parser can possibly send to
  # event handlers.
  #
  # See Psych::Parser for more details
  class Handler
    ###
    # Configuration options for dumping YAML.
    class DumperOptions
      attr_accessor :line_width, :indentation, :canonical

      def initialize
        @line_width  = 0
        @indentation = 2
        @canonical   = false
      end
    end

    # Default dumping options
    OPTIONS = DumperOptions.new

    # Events that a Handler should respond to.
    EVENTS = [ :alias,
               :empty,
               :end_document,
               :end_mapping,
               :end_sequence,
               :end_stream,
               :scalar,
               :start_document,
               :start_mapping,
               :start_sequence,
               :start_stream ]

    ###
    # Called with +encoding+ when the YAML stream starts.  This method is
    # called once per stream.  A stream may contain multiple documents.
    #
    # See the constants in Psych::Parser for the possible values of +encoding+.
    def start_stream encoding
    end

    ###
    # Called when the document starts with the declared +version+,
    # +tag_directives+, if the document is +implicit+.
    #
    # +version+ will be an array of integers indicating the YAML version being
    # dealt with, +tag_directives+ is a list of tuples indicating the prefix
    # and suffix of each tag, and +implicit+ is a boolean indicating whether
    # the document is started implicitly.
    #
    # === Example
    #
    # Given the following YAML:
    #
    #   %YAML 1.1
    #   %TAG ! tag:tenderlovemaking.com,2009:
    #   --- !squee
    #
    # The parameters for start_document must be this:
    #
    #   version         # => [1, 1]
    #   tag_directives  # => [["!", "tag:tenderlovemaking.com,2009:"]]
    #   implicit        # => false
    def start_document version, tag_directives, implicit
    end

    ###
    # Called with the document ends.  +implicit+ is a boolean value indicating
    # whether or not the document has an implicit ending.
    #
    # === Example
    #
    # Given the following YAML:
    #
    #   ---
    #     hello world
    #
    # +implicit+ will be true.  Given this YAML:
    #
    #   ---
    #     hello world
    #   ...
    #
    # +implicit+ will be false.
    def end_document implicit
    end

    ###
    # Called when an alias is found to +anchor+.  +anchor+ will be the name
    # of the anchor found.
    #
    # === Example
    #
    # Here we have an example of an array that references itself in YAML:
    #
    #   --- &ponies
    #   - first element
    #   - *ponies
    #
    # &ponies is the anchor, *ponies is the alias.  In this case, alias is
    # called with "ponies".
    def alias anchor
    end

    ###
    # Called when a scalar +value+ is found.  The scalar may have an
    # +anchor+, a +tag+, be implicitly +plain+ or implicitly +quoted+
    #
    # +value+ is the string value of the scalar
    # +anchor+ is an associated anchor or nil
    # +tag+ is an associated tag or nil
    # +plain+ is a boolean value
    # +quoted+ is a boolean value
    # +style+ is an integer idicating the string style
    #
    # See the constants in Psych::Nodes::Scalar for the possible values of
    # +style+
    #
    # === Example
    #
    # Here is a YAML document that exercises most of the possible ways this
    # method can be called:
    #
    #   ---
    #   - !str "foo"
    #   - &anchor fun
    #   - many
    #     lines
    #   - |
    #     many
    #     newlines
    #
    # The above YAML document contains a list with four strings.  Here are
    # the parameters sent to this method in the same order:
    #
    #   # value               anchor    tag     plain   quoted  style
    #   ["foo",               nil,      "!str", false,  false,  3    ]
    #   ["fun",               "anchor", nil,    true,   false,  1    ]
    #   ["many lines",        nil,      nil,    true,   false,  1    ]
    #   ["many\nnewlines\n",  nil,      nil,    false,  true,   4    ]
    #
    def scalar value, anchor, tag, plain, quoted, style
    end

    ###
    # Called when a sequence is started.
    #
    # +anchor+ is the anchor associated with the sequence or nil.
    # +tag+ is the tag associated with the sequence or nil.
    # +implicit+ a boolean indicating whether or not the sequence was implicitly
    # started.
    # +style+ is an integer indicating the list style.
    #
    # See the constants in Psych::Nodes::Sequence for the possible values of
    # +style+.
    #
    # === Example
    #
    # Here is a YAML document that exercises most of the possible ways this
    # method can be called:
    #
    #   ---
    #   - !!seq [
    #     a
    #   ]
    #   - &pewpew
    #     - b
    #
    # The above YAML document consists of three lists, an outer list that
    # contains two inner lists.  Here is a matrix of the parameters sent
    # to represent these lists:
    #
    #   # anchor    tag                       implicit  style
    #   [nil,       nil,                      true,     1     ]
    #   [nil,       "tag:yaml.org,2002:seq",  false,    2     ]
    #   ["pewpew",  nil,                      true,     1     ]

    def start_sequence anchor, tag, implicit, style
    end

    ###
    # Called when a sequence ends.
    def end_sequence
    end

    ###
    # Called when a map starts.
    #
    # +anchor+ is the anchor associated with the map or +nil+.
    # +tag+ is the tag associated with the map or +nil+.
    # +implicit+ is a boolean indicating whether or not the map was implicitly
    # started.
    # +style+ is an integer indicating the mapping style.
    #
    # See the constants in Psych::Nodes::Mapping for the possible values of
    # +style+.
    #
    # === Example
    #
    # Here is a YAML document that exercises most of the possible ways this
    # method can be called:
    #
    #   ---
    #   k: !!map { hello: world }
    #   v: &pewpew
    #     hello: world
    #
    # The above YAML document consists of three maps, an outer map that contains
    # two inner maps.  Below is a matrix of the parameters sent in order to
    # represent these three maps:
    #
    #   # anchor    tag                       implicit  style
    #   [nil,       nil,                      true,     1     ]
    #   [nil,       "tag:yaml.org,2002:map",  false,    2     ]
    #   ["pewpew",  nil,                      true,     1     ]

    def start_mapping anchor, tag, implicit, style
    end

    ###
    # Called when a map ends
    def end_mapping
    end

    ###
    # Called when an empty event happens. (Which, as far as I can tell, is
    # never).
    def empty
    end

    ###
    # Called when the YAML stream ends
    def end_stream
    end

    ###
    # Called before each event with line/column information.
    def event_location(start_line, start_column, end_line, end_column)
    end

    ###
    # Is this handler a streaming handler?
    def streaming?
      false
    end
  end
end
PKAH[��[��/share/gems/gems/psych-3.1.0/lib/psych/parser.rbnu�[���# frozen_string_literal: true
module Psych
  ###
  # YAML event parser class.  This class parses a YAML document and calls
  # events on the handler that is passed to the constructor.  The events can
  # be used for things such as constructing a YAML AST or deserializing YAML
  # documents.  It can even be fed back to Psych::Emitter to emit the same
  # document that was parsed.
  #
  # See Psych::Handler for documentation on the events that Psych::Parser emits.
  #
  # Here is an example that prints out ever scalar found in a YAML document:
  #
  #   # Handler for detecting scalar values
  #   class ScalarHandler < Psych::Handler
  #     def scalar value, anchor, tag, plain, quoted, style
  #       puts value
  #     end
  #   end
  #
  #   parser = Psych::Parser.new(ScalarHandler.new)
  #   parser.parse(yaml_document)
  #
  # Here is an example that feeds the parser back in to Psych::Emitter.  The
  # YAML document is read from STDIN and written back out to STDERR:
  #
  #   parser = Psych::Parser.new(Psych::Emitter.new($stderr))
  #   parser.parse($stdin)
  #
  # Psych uses Psych::Parser in combination with Psych::TreeBuilder to
  # construct an AST of the parsed YAML document.

  class Parser
    class Mark < Struct.new(:index, :line, :column)
    end

    # The handler on which events will be called
    attr_accessor :handler

    # Set the encoding for this parser to +encoding+
    attr_writer :external_encoding

    ###
    # Creates a new Psych::Parser instance with +handler+.  YAML events will
    # be called on +handler+.  See Psych::Parser for more details.

    def initialize handler = Handler.new
      @handler = handler
      @external_encoding = ANY
    end
  end
end
PKAH[ӻ���1share/gems/gems/psych-3.1.0/lib/psych/visitors.rbnu�[���# frozen_string_literal: true
require 'psych/visitors/visitor'
require 'psych/visitors/to_ruby'
require 'psych/visitors/emitter'
require 'psych/visitors/yaml_tree'
require 'psych/visitors/json_tree'
require 'psych/visitors/depth_first'
PKAH[�y2K��2share/gems/gems/psych-3.1.0/lib/psych/streaming.rbnu�[���# frozen_string_literal: true
module Psych
  module Streaming
    module ClassMethods
      ###
      # Create a new streaming emitter.  Emitter will print to +io+.  See
      # Psych::Stream for an example.
      def new io
        emitter      = const_get(:Emitter).new(io)
        class_loader = ClassLoader.new
        ss           = ScalarScanner.new class_loader
        super(emitter, ss, {})
      end
    end

    ###
    # Start streaming using +encoding+
    def start encoding = Nodes::Stream::UTF8
      super.tap { yield self if block_given?  }
    ensure
      finish if block_given?
    end

    private
    def register target, obj
    end
  end
end
PKAH[r���/share/gems/gems/psych-3.1.0/lib/psych/stream.rbnu�[���# frozen_string_literal: true
module Psych
  ###
  # Psych::Stream is a streaming YAML emitter.  It will not buffer your YAML,
  # but send it straight to an IO.
  #
  # Here is an example use:
  #
  #   stream = Psych::Stream.new($stdout)
  #   stream.start
  #   stream.push({:foo => 'bar'})
  #   stream.finish
  #
  # YAML will be immediately emitted to $stdout with no buffering.
  #
  # Psych::Stream#start will take a block and ensure that Psych::Stream#finish
  # is called, so you can do this form:
  #
  #   stream = Psych::Stream.new($stdout)
  #   stream.start do |em|
  #     em.push(:foo => 'bar')
  #   end
  #
  class Stream < Psych::Visitors::YAMLTree
    class Emitter < Psych::Emitter # :nodoc:
      def end_document implicit_end = !streaming?
        super
      end

      def streaming?
        true
      end
    end

    include Psych::Streaming
    extend Psych::Streaming::ClassMethods
  end
end
PKAH[�����5share/gems/gems/psych-3.1.0/lib/psych/tree_builder.rbnu�[���# frozen_string_literal: true
require 'psych/handler'

module Psych
  ###
  # This class works in conjunction with Psych::Parser to build an in-memory
  # parse tree that represents a YAML document.
  #
  # == Example
  #
  #   parser = Psych::Parser.new Psych::TreeBuilder.new
  #   parser.parse('--- foo')
  #   tree = parser.handler.root
  #
  # See Psych::Handler for documentation on the event methods used in this
  # class.
  class TreeBuilder < Psych::Handler
    # Returns the root node for the built tree
    attr_reader :root

    # Create a new TreeBuilder instance
    def initialize
      @stack = []
      @last  = nil
      @root  = nil

      @start_line   = nil
      @start_column = nil
      @end_line     = nil
      @end_column   = nil
    end

    def event_location(start_line, start_column, end_line, end_column)
      @start_line   = start_line
      @start_column = start_column
      @end_line     = end_line
      @end_column   = end_column
    end

    %w{
      Sequence
      Mapping
    }.each do |node|
      class_eval %{
        def start_#{node.downcase}(anchor, tag, implicit, style)
          n = Nodes::#{node}.new(anchor, tag, implicit, style)
          set_start_location(n)
          @last.children << n
          push n
        end

        def end_#{node.downcase}
          n = pop
          set_end_location(n)
          n
        end
      }
    end

    ###
    # Handles start_document events with +version+, +tag_directives+,
    # and +implicit+ styling.
    #
    # See Psych::Handler#start_document
    def start_document version, tag_directives, implicit
      n = Nodes::Document.new version, tag_directives, implicit
      set_start_location(n)
      @last.children << n
      push n
    end

    ###
    # Handles end_document events with +version+, +tag_directives+,
    # and +implicit+ styling.
    #
    # See Psych::Handler#start_document
    def end_document implicit_end = !streaming?
      @last.implicit_end = implicit_end
      n = pop
      set_end_location(n)
      n
    end

    def start_stream encoding
      @root = Nodes::Stream.new(encoding)
      set_start_location(@root)
      push @root
    end

    def end_stream
      n = pop
      set_end_location(n)
      n
    end

    def scalar value, anchor, tag, plain, quoted, style
      s = Nodes::Scalar.new(value,anchor,tag,plain,quoted,style)
      set_location(s)
      @last.children << s
      s
    end

    def alias anchor
      a = Nodes::Alias.new(anchor)
      set_location(a)
      @last.children << a
      a
    end

    private
    def push value
      @stack.push value
      @last = value
    end

    def pop
      x = @stack.pop
      @last = @stack.last
      x
    end

    def set_location(node)
      set_start_location(node)
      set_end_location(node)
    end

    def set_start_location(node)
      node.start_line   = @start_line
      node.start_column = @start_column
    end

    def set_end_location(node)
      node.end_line   = @end_line
      node.end_column = @end_column
    end
  end
end
PKAH[�|��uu:share/gems/gems/psych-3.1.0/lib/psych/handlers/recorder.rbnu�[���# frozen_string_literal: true
require 'psych/handler'

module Psych
  module Handlers
    ###
    # This handler will capture an event and record the event.  Recorder events
    # are available vial Psych::Handlers::Recorder#events.
    #
    # For example:
    #
    #   recorder = Psych::Handlers::Recorder.new
    #   parser = Psych::Parser.new recorder
    #   parser.parse '--- foo'
    #
    #   recorder.events # => [list of events]
    #
    #   # Replay the events
    #
    #   emitter = Psych::Emitter.new $stdout
    #   recorder.events.each do |m, args|
    #     emitter.send m, *args
    #   end

    class Recorder < Psych::Handler
      attr_reader :events

      def initialize
        @events = []
        super
      end

      EVENTS.each do |event|
        define_method event do |*args|
          @events << [event, args]
        end
      end
    end
  end
end
PKAH[}���Ashare/gems/gems/psych-3.1.0/lib/psych/handlers/document_stream.rbnu�[���# frozen_string_literal: true
require 'psych/tree_builder'

module Psych
  module Handlers
    class DocumentStream < Psych::TreeBuilder # :nodoc:
      def initialize &block
        super
        @block = block
      end

      def start_document version, tag_directives, implicit
        n = Nodes::Document.new version, tag_directives, implicit
        push n
      end

      def end_document implicit_end = !streaming?
        @last.implicit_end = implicit_end
        @block.call pop
      end
    end
  end
end
PKAH[&�3*II5share/gems/gems/psych-3.1.0/lib/psych/syntax_error.rbnu�[���# frozen_string_literal: true
require 'psych/exception'

module Psych
  class SyntaxError < Psych::Exception
    attr_reader :file, :line, :column, :offset, :problem, :context

    def initialize file, line, col, offset, problem, context
      err      = [problem, context].compact.join ' '
      filename = file || '<unknown>'
      message  = "(%s): %s at line %d column %d" % [filename, err, line, col]

      @file    = file
      @line    = line
      @column  = col
      @offset  = offset
      @problem = problem
      @context = context
      super(message)
    end
  end
end
PKAH[��%��1share/gems/gems/psych-3.1.0/lib/psych/versions.rbnu�[���
# frozen_string_literal: true
module Psych
  # The version of Psych you are using
  VERSION = '3.1.0' unless defined?(::Psych::VERSION)

  if RUBY_ENGINE == 'jruby'
    DEFAULT_SNAKEYAML_VERSION = '1.23'.freeze
  end
end
PKAH[f�k	k	.share/gems/gems/psych-3.1.0/lib/psych/nodes.rbnu�[���# frozen_string_literal: true
require 'psych/nodes/node'
require 'psych/nodes/stream'
require 'psych/nodes/document'
require 'psych/nodes/sequence'
require 'psych/nodes/scalar'
require 'psych/nodes/mapping'
require 'psych/nodes/alias'

module Psych
  ###
  # = Overview
  #
  # When using Psych.load to deserialize a YAML document, the document is
  # translated to an intermediary AST.  That intermediary AST is then
  # translated in to a Ruby object graph.
  #
  # In the opposite direction, when using Psych.dump, the Ruby object graph is
  # translated to an intermediary AST which is then converted to a YAML
  # document.
  #
  # Psych::Nodes contains all of the classes that make up the nodes of a YAML
  # AST.  You can manually build an AST and use one of the visitors (see
  # Psych::Visitors) to convert that AST to either a YAML document or to a
  # Ruby object graph.
  #
  # Here is an example of building an AST that represents a list with one
  # scalar:
  #
  #   # Create our nodes
  #   stream = Psych::Nodes::Stream.new
  #   doc    = Psych::Nodes::Document.new
  #   seq    = Psych::Nodes::Sequence.new
  #   scalar = Psych::Nodes::Scalar.new('foo')
  #
  #   # Build up our tree
  #   stream.children << doc
  #   doc.children    << seq
  #   seq.children    << scalar
  #
  # The stream is the root of the tree.  We can then convert the tree to YAML:
  #
  #   stream.to_yaml => "---\n- foo\n"
  #
  # Or convert it to Ruby:
  #
  #   stream.to_ruby => [["foo"]]
  #
  # == YAML AST Requirements
  #
  # A valid YAML AST *must* have one Psych::Nodes::Stream at the root.  A
  # Psych::Nodes::Stream node must have 1 or more Psych::Nodes::Document nodes
  # as children.
  #
  # Psych::Nodes::Document nodes must have one and *only* one child.  That child
  # may be one of:
  #
  # * Psych::Nodes::Sequence
  # * Psych::Nodes::Mapping
  # * Psych::Nodes::Scalar
  #
  # Psych::Nodes::Sequence and Psych::Nodes::Mapping nodes may have many
  # children, but Psych::Nodes::Mapping nodes should have an even number of
  # children.
  #
  # All of these are valid children for Psych::Nodes::Sequence and
  # Psych::Nodes::Mapping nodes:
  #
  # * Psych::Nodes::Sequence
  # * Psych::Nodes::Mapping
  # * Psych::Nodes::Scalar
  # * Psych::Nodes::Alias
  #
  # Psych::Nodes::Scalar and Psych::Nodes::Alias are both terminal nodes and
  # should not have any children.
  module Nodes
  end
end
PKAH[�����9share/gems/gems/psych-3.1.0/lib/psych/json/ruby_events.rbnu�[���# frozen_string_literal: true
module Psych
  module JSON
    module RubyEvents # :nodoc:
      def visit_Time o
        formatted = format_time o
        @emitter.scalar formatted, nil, nil, false, true, Nodes::Scalar::DOUBLE_QUOTED
      end

      def visit_DateTime o
        visit_Time o.to_time
      end

      def visit_String o
        @emitter.scalar o.to_s, nil, nil, false, true, Nodes::Scalar::DOUBLE_QUOTED
      end
      alias :visit_Symbol :visit_String
    end
  end
end
PKAH[��9share/gems/gems/psych-3.1.0/lib/psych/json/yaml_events.rbnu�[���# frozen_string_literal: true
module Psych
  module JSON
    module YAMLEvents # :nodoc:
      def start_document version, tag_directives, implicit
        super(version, tag_directives, !streaming?)
      end

      def end_document implicit_end = !streaming?
        super(implicit_end)
      end

      def start_mapping anchor, tag, implicit, style
        super(anchor, nil, true, Nodes::Mapping::FLOW)
      end

      def start_sequence anchor, tag, implicit, style
        super(anchor, nil, true, Nodes::Sequence::FLOW)
      end

      def scalar value, anchor, tag, plain, quoted, style
        if "tag:yaml.org,2002:null" == tag
          super('null', nil, nil, true, false, Nodes::Scalar::PLAIN)
        else
          super
        end
      end
    end
  end
end
PKAH[�Ej��4share/gems/gems/psych-3.1.0/lib/psych/json/stream.rbnu�[���# frozen_string_literal: true
require 'psych/json/ruby_events'
require 'psych/json/yaml_events'

module Psych
  module JSON
    class Stream < Psych::Visitors::JSONTree
      include Psych::JSON::RubyEvents
      include Psych::Streaming
      extend Psych::Streaming::ClassMethods

      class Emitter < Psych::Stream::Emitter # :nodoc:
        include Psych::JSON::YAMLEvents
      end
    end
  end
end
PKAH[(�C�ee:share/gems/gems/psych-3.1.0/lib/psych/json/tree_builder.rbnu�[���# frozen_string_literal: true
require 'psych/json/yaml_events'

module Psych
  module JSON
    ###
    # Psych::JSON::TreeBuilder is an event based AST builder.  Events are sent
    # to an instance of Psych::JSON::TreeBuilder and a JSON AST is constructed.
    class TreeBuilder < Psych::TreeBuilder
      include Psych::JSON::YAMLEvents
    end
  end
end
PKAH[*JJ,share/gems/gems/psych-3.1.0/lib/psych/set.rbnu�[���# frozen_string_literal: true
module Psych
  class Set < ::Hash
  end
end
PKAH[���KK-share/gems/gems/psych-3.1.0/lib/psych/omap.rbnu�[���# frozen_string_literal: true
module Psych
  class Omap < ::Hash
  end
end
PKAH[oe
��5share/gems/gems/psych-3.1.0/lib/psych/class_loader.rbnu�[���# frozen_string_literal: true
require 'psych/omap'
require 'psych/set'

module Psych
  class ClassLoader # :nodoc:
    BIG_DECIMAL = 'BigDecimal'
    COMPLEX     = 'Complex'
    DATE        = 'Date'
    DATE_TIME   = 'DateTime'
    EXCEPTION   = 'Exception'
    OBJECT      = 'Object'
    PSYCH_OMAP  = 'Psych::Omap'
    PSYCH_SET   = 'Psych::Set'
    RANGE       = 'Range'
    RATIONAL    = 'Rational'
    REGEXP      = 'Regexp'
    STRUCT      = 'Struct'
    SYMBOL      = 'Symbol'

    def initialize
      @cache = CACHE.dup
    end

    def load klassname
      return nil if !klassname || klassname.empty?

      find klassname
    end

    def symbolize sym
      symbol
      sym.to_sym
    end

    constants.each do |const|
      konst = const_get const
      define_method(const.to_s.downcase) do
        load konst
      end
    end

    private

    def find klassname
      @cache[klassname] ||= resolve(klassname)
    end

    def resolve klassname
      name    = klassname
      retried = false

      begin
        path2class(name)
      rescue ArgumentError, NameError => ex
        unless retried
          name    = "Struct::#{name}"
          retried = ex
          retry
        end
        raise retried
      end
    end

    CACHE = Hash[constants.map { |const|
      val = const_get const
      begin
        [val, ::Object.const_get(val)]
      rescue
        nil
      end
    }.compact]

    class Restricted < ClassLoader
      def initialize classes, symbols
        @classes = classes
        @symbols = symbols
        super()
      end

      def symbolize sym
        return super if @symbols.empty?

        if @symbols.include? sym
          super
        else
          raise DisallowedClass, 'Symbol'
        end
      end

      private

      def find klassname
        if @classes.include? klassname
          super
        else
          raise DisallowedClass, klassname
        end
      end
    end
  end
end
PKAH[�믍!!7share/gems/gems/psych-3.1.0/lib/psych/nodes/sequence.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This class represents a
    # {YAML sequence}[http://yaml.org/spec/1.1/#sequence/syntax].
    #
    # A YAML sequence is basically a list, and looks like this:
    #
    #   %YAML 1.1
    #   ---
    #   - I am
    #   - a Sequence
    #
    # A YAML sequence may have an anchor like this:
    #
    #   %YAML 1.1
    #   ---
    #   &A [
    #     "This sequence",
    #     "has an anchor"
    #   ]
    #
    # A YAML sequence may also have a tag like this:
    #
    #   %YAML 1.1
    #   ---
    #   !!seq [
    #     "This sequence",
    #     "has a tag"
    #   ]
    #
    # This class represents a sequence in a YAML document.  A
    # Psych::Nodes::Sequence node may have 0 or more children.  Valid children
    # for this node are:
    #
    # * Psych::Nodes::Sequence
    # * Psych::Nodes::Mapping
    # * Psych::Nodes::Scalar
    # * Psych::Nodes::Alias
    class Sequence < Psych::Nodes::Node
      # Any Styles, emitter chooses
      ANY   = 0

      # Block style sequence
      BLOCK = 1

      # Flow style sequence
      FLOW  = 2

      # The anchor for this sequence (if any)
      attr_accessor :anchor

      # The tag name for this sequence (if any)
      attr_accessor :tag

      # Is this sequence started implicitly?
      attr_accessor :implicit

      # The sequence style used
      attr_accessor :style

      ###
      # Create a new object representing a YAML sequence.
      #
      # +anchor+ is the anchor associated with the sequence or nil.
      # +tag+ is the tag associated with the sequence or nil.
      # +implicit+ a boolean indicating whether or not the sequence was
      # implicitly started.
      # +style+ is an integer indicating the list style.
      #
      # See Psych::Handler#start_sequence
      def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
        super()
        @anchor   = anchor
        @tag      = tag
        @implicit = implicit
        @style    = style
      end

      def sequence?; true; end
    end
  end
end
PKAH[)��))6share/gems/gems/psych-3.1.0/lib/psych/nodes/mapping.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This class represents a {YAML Mapping}[http://yaml.org/spec/1.1/#mapping].
    #
    # A Psych::Nodes::Mapping node may have 0 or more children, but must have
    # an even number of children.  Here are the valid children a
    # Psych::Nodes::Mapping node may have:
    #
    # * Psych::Nodes::Sequence
    # * Psych::Nodes::Mapping
    # * Psych::Nodes::Scalar
    # * Psych::Nodes::Alias
    class Mapping < Psych::Nodes::Node
      # Any Map Style
      ANY   = 0

      # Block Map Style
      BLOCK = 1

      # Flow Map Style
      FLOW  = 2

      # The optional anchor for this mapping
      attr_accessor :anchor

      # The optional tag for this mapping
      attr_accessor :tag

      # Is this an implicit mapping?
      attr_accessor :implicit

      # The style of this mapping
      attr_accessor :style

      ###
      # Create a new Psych::Nodes::Mapping object.
      #
      # +anchor+ is the anchor associated with the map or +nil+.
      # +tag+ is the tag associated with the map or +nil+.
      # +implicit+ is a boolean indicating whether or not the map was implicitly
      # started.
      # +style+ is an integer indicating the mapping style.
      #
      # == See Also
      # See also Psych::Handler#start_mapping
      def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
        super()
        @anchor   = anchor
        @tag      = tag
        @implicit = implicit
        @style    = style
      end

      def mapping?; true; end
    end
  end
end
PKAH[�ɉ4share/gems/gems/psych-3.1.0/lib/psych/nodes/alias.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This class represents a {YAML Alias}[http://yaml.org/spec/1.1/#alias].
    # It points to an +anchor+.
    #
    # A Psych::Nodes::Alias is a terminal node and may have no children.
    class Alias < Psych::Nodes::Node
      # The anchor this alias links to
      attr_accessor :anchor

      # Create a new Alias that points to an +anchor+
      def initialize anchor
        @anchor = anchor
      end

      def alias?; true; end
    end
  end
end
PKAH[Ϧ[5share/gems/gems/psych-3.1.0/lib/psych/nodes/stream.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # Represents a YAML stream.  This is the root node for any YAML parse
    # tree.  This node must have one or more child nodes.  The only valid
    # child node for a Psych::Nodes::Stream node is Psych::Nodes::Document.
    class Stream < Psych::Nodes::Node

      # Encodings supported by Psych (and libyaml)

      # Any encoding
      ANY     = Psych::Parser::ANY

      # UTF-8 encoding
      UTF8    = Psych::Parser::UTF8

      # UTF-16LE encoding
      UTF16LE = Psych::Parser::UTF16LE

      # UTF-16BE encoding
      UTF16BE = Psych::Parser::UTF16BE

      # The encoding used for this stream
      attr_accessor :encoding

      ###
      # Create a new Psych::Nodes::Stream node with an +encoding+ that
      # defaults to Psych::Nodes::Stream::UTF8.
      #
      # See also Psych::Handler#start_stream
      def initialize encoding = UTF8
        super()
        @encoding = encoding
      end

      def stream?; true; end
    end
  end
end
PKAH[��AA7share/gems/gems/psych-3.1.0/lib/psych/nodes/document.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This represents a YAML Document.  This node must be a child of
    # Psych::Nodes::Stream.  A Psych::Nodes::Document must have one child,
    # and that child may be one of the following:
    #
    # * Psych::Nodes::Sequence
    # * Psych::Nodes::Mapping
    # * Psych::Nodes::Scalar
    class Document < Psych::Nodes::Node
      # The version of the YAML document
      attr_accessor :version

      # A list of tag directives for this document
      attr_accessor :tag_directives

      # Was this document implicitly created?
      attr_accessor :implicit

      # Is the end of the document implicit?
      attr_accessor :implicit_end

      ###
      # Create a new Psych::Nodes::Document object.
      #
      # +version+ is a list indicating the YAML version.
      # +tags_directives+ is a list of tag directive declarations
      # +implicit+ is a flag indicating whether the document will be implicitly
      # started.
      #
      # == Example:
      # This creates a YAML document object that represents a YAML 1.1 document
      # with one tag directive, and has an implicit start:
      #
      #   Psych::Nodes::Document.new(
      #     [1,1],
      #     [["!", "tag:tenderlovemaking.com,2009:"]],
      #     true
      #   )
      #
      # == See Also
      # See also Psych::Handler#start_document
      def initialize version = [], tag_directives = [], implicit = false
        super()
        @version        = version
        @tag_directives = tag_directives
        @implicit       = implicit
        @implicit_end   = true
      end

      ###
      # Returns the root node.  A Document may only have one root node:
      # http://yaml.org/spec/1.1/#id898031
      def root
        children.first
      end

      def document?; true; end
    end
  end
end
PKAH[(�%��5share/gems/gems/psych-3.1.0/lib/psych/nodes/scalar.rbnu�[���# frozen_string_literal: true
module Psych
  module Nodes
    ###
    # This class represents a {YAML Scalar}[http://yaml.org/spec/1.1/#id858081].
    #
    # This node type is a terminal node and should not have any children.
    class Scalar < Psych::Nodes::Node
      # Any style scalar, the emitter chooses
      ANY           = 0

      # Plain scalar style
      PLAIN         = 1

      # Single quoted style
      SINGLE_QUOTED = 2

      # Double quoted style
      DOUBLE_QUOTED = 3

      # Literal style
      LITERAL       = 4

      # Folded style
      FOLDED        = 5

      # The scalar value
      attr_accessor :value

      # The anchor value (if there is one)
      attr_accessor :anchor

      # The tag value (if there is one)
      attr_accessor :tag

      # Is this a plain scalar?
      attr_accessor :plain

      # Is this scalar quoted?
      attr_accessor :quoted

      # The style of this scalar
      attr_accessor :style

      ###
      # Create a new Psych::Nodes::Scalar object.
      #
      # +value+ is the string value of the scalar
      # +anchor+ is an associated anchor or nil
      # +tag+ is an associated tag or nil
      # +plain+ is a boolean value
      # +quoted+ is a boolean value
      # +style+ is an integer idicating the string style
      #
      # == See Also
      #
      # See also Psych::Handler#scalar
      def initialize value, anchor = nil, tag = nil, plain = true, quoted = false, style = ANY
        @value  = value
        @anchor = anchor
        @tag    = tag
        @plain  = plain
        @quoted = quoted
        @style  = style
      end

      def scalar?; true; end
    end
  end
end
PKAH["+��

3share/gems/gems/psych-3.1.0/lib/psych/nodes/node.rbnu�[���# frozen_string_literal: true
require 'stringio'
require 'psych/class_loader'
require 'psych/scalar_scanner'

module Psych
  module Nodes
    ###
    # The base class for any Node in a YAML parse tree.  This class should
    # never be instantiated.
    class Node
      include Enumerable

      # The children of this node
      attr_reader :children

      # An associated tag
      attr_reader :tag

      # The line number where this node start
      attr_accessor :start_line

      # The column number where this node start
      attr_accessor :start_column

      # The line number where this node ends
      attr_accessor :end_line

      # The column number where this node ends
      attr_accessor :end_column

      # Create a new Psych::Nodes::Node
      def initialize
        @children = []
      end

      ###
      # Iterate over each node in the tree. Yields each node to +block+ depth
      # first.
      def each &block
        return enum_for :each unless block_given?
        Visitors::DepthFirst.new(block).accept self
      end

      ###
      # Convert this node to Ruby.
      #
      # See also Psych::Visitors::ToRuby
      def to_ruby
        Visitors::ToRuby.create.accept(self)
      end
      alias :transform :to_ruby

      ###
      # Convert this node to YAML.
      #
      # See also Psych::Visitors::Emitter
      def yaml io = nil, options = {}
        real_io = io || StringIO.new(''.encode('utf-8'))

        Visitors::Emitter.new(real_io, options).accept self
        return real_io.string unless io
        io
      end
      alias :to_yaml :yaml

      def alias?;    false; end
      def document?; false; end
      def mapping?;  false; end
      def scalar?;   false; end
      def sequence?; false; end
      def stream?;   false; end
    end
  end
end
PKAH[���Z��9share/gems/gems/psych-3.1.0/lib/psych/visitors/emitter.rbnu�[���# frozen_string_literal: true
module Psych
  module Visitors
    class Emitter < Psych::Visitors::Visitor
      def initialize io, options = {}
        opts = [:indentation, :canonical, :line_width].find_all { |opt|
          options.key?(opt)
        }

        if opts.empty?
          @handler = Psych::Emitter.new io
        else
          du = Handler::DumperOptions.new
          opts.each { |option| du.send :"#{option}=", options[option] }
          @handler = Psych::Emitter.new io, du
        end
      end

      def visit_Psych_Nodes_Stream o
        @handler.start_stream o.encoding
        o.children.each { |c| accept c }
        @handler.end_stream
      end

      def visit_Psych_Nodes_Document o
        @handler.start_document o.version, o.tag_directives, o.implicit
        o.children.each { |c| accept c }
        @handler.end_document o.implicit_end
      end

      def visit_Psych_Nodes_Scalar o
        @handler.scalar o.value, o.anchor, o.tag, o.plain, o.quoted, o.style
      end

      def visit_Psych_Nodes_Sequence o
        @handler.start_sequence o.anchor, o.tag, o.implicit, o.style
        o.children.each { |c| accept c }
        @handler.end_sequence
      end

      def visit_Psych_Nodes_Mapping o
        @handler.start_mapping o.anchor, o.tag, o.implicit, o.style
        o.children.each { |c| accept c }
        @handler.end_mapping
      end

      def visit_Psych_Nodes_Alias o
        @handler.alias o.anchor
      end
    end
  end
end
PKAH[R��(rr=share/gems/gems/psych-3.1.0/lib/psych/visitors/depth_first.rbnu�[���# frozen_string_literal: true
module Psych
  module Visitors
    class DepthFirst < Psych::Visitors::Visitor
      def initialize block
        @block = block
      end

      private

      def nary o
        o.children.each { |x| visit x }
        @block.call o
      end
      alias :visit_Psych_Nodes_Stream   :nary
      alias :visit_Psych_Nodes_Document :nary
      alias :visit_Psych_Nodes_Sequence :nary
      alias :visit_Psych_Nodes_Mapping  :nary

      def terminal o
        @block.call o
      end
      alias :visit_Psych_Nodes_Scalar :terminal
      alias :visit_Psych_Nodes_Alias  :terminal
    end
  end
end
PKAH[�PKK;share/gems/gems/psych-3.1.0/lib/psych/visitors/json_tree.rbnu�[���# frozen_string_literal: true
require 'psych/json/ruby_events'

module Psych
  module Visitors
    class JSONTree < YAMLTree
      include Psych::JSON::RubyEvents

      def self.create options = {}
        emitter = Psych::JSON::TreeBuilder.new
        class_loader = ClassLoader.new
        ss           = ScalarScanner.new class_loader
        new(emitter, ss, options)
      end

      def accept target
        if target.respond_to?(:encode_with)
          dump_coder target
        else
          send(@dispatch_cache[target.class], target)
        end
      end
    end
  end
end
PKAH[��#<#<;share/gems/gems/psych-3.1.0/lib/psych/visitors/yaml_tree.rbnu�[���# frozen_string_literal: true
require 'psych/tree_builder'
require 'psych/scalar_scanner'
require 'psych/class_loader'

module Psych
  module Visitors
    ###
    # YAMLTree builds a YAML ast given a Ruby object.  For example:
    #
    #   builder = Psych::Visitors::YAMLTree.new
    #   builder << { :foo => 'bar' }
    #   builder.tree # => #<Psych::Nodes::Stream .. }
    #
    class YAMLTree < Psych::Visitors::Visitor
      class Registrar # :nodoc:
        def initialize
          @obj_to_id   = {}
          @obj_to_node = {}
          @targets     = []
          @counter     = 0
        end

        def register target, node
          return unless target.respond_to? :object_id
          @targets << target
          @obj_to_node[target.object_id] = node
        end

        def key? target
          @obj_to_node.key? target.object_id
        rescue NoMethodError
          false
        end

        def id_for target
          @obj_to_id[target.object_id] ||= (@counter += 1)
        end

        def node_for target
          @obj_to_node[target.object_id]
        end
      end

      attr_reader :started, :finished
      alias :finished? :finished
      alias :started? :started

      def self.create options = {}, emitter = nil
        emitter      ||= TreeBuilder.new
        class_loader = ClassLoader.new
        ss           = ScalarScanner.new class_loader
        new(emitter, ss, options)
      end

      def initialize emitter, ss, options
        super()
        @started    = false
        @finished   = false
        @emitter    = emitter
        @st         = Registrar.new
        @ss         = ss
        @options    = options
        @line_width = options[:line_width]
        if @line_width && @line_width < 0
          if @line_width == -1
            # Treat -1 as unlimited line-width, same as libyaml does.
            @line_width = nil
          else
            fail(ArgumentError, "Invalid line_width #{@line_width}, must be non-negative or -1 for unlimited.")
          end
        end
        @coders     = []

        @dispatch_cache = Hash.new do |h,klass|
          method = "visit_#{(klass.name || '').split('::').join('_')}"

          method = respond_to?(method) ? method : h[klass.superclass]

          raise(TypeError, "Can't dump #{target.class}") unless method

          h[klass] = method
        end
      end

      def start encoding = Nodes::Stream::UTF8
        @emitter.start_stream(encoding).tap do
          @started = true
        end
      end

      def finish
        @emitter.end_stream.tap do
          @finished = true
        end
      end

      def tree
        finish unless finished?
        @emitter.root
      end

      def push object
        start unless started?
        version = []
        version = [1,1] if @options[:header]

        case @options[:version]
        when Array
          version = @options[:version]
        when String
          version = @options[:version].split('.').map { |x| x.to_i }
        else
          version = [1,1]
        end if @options.key? :version

        @emitter.start_document version, [], false
        accept object
        @emitter.end_document !@emitter.streaming?
      end
      alias :<< :push

      def accept target
        # return any aliases we find
        if @st.key? target
          oid         = @st.id_for target
          node        = @st.node_for target
          anchor      = oid.to_s
          node.anchor = anchor
          return @emitter.alias anchor
        end

        if target.respond_to?(:encode_with)
          dump_coder target
        else
          send(@dispatch_cache[target.class], target)
        end
      end

      def visit_Psych_Omap o
        seq = @emitter.start_sequence(nil, 'tag:yaml.org,2002:omap', false, Nodes::Sequence::BLOCK)
        register(o, seq)

        o.each { |k,v| visit_Hash k => v }
        @emitter.end_sequence
      end

      def visit_Encoding o
        tag = "!ruby/encoding"
        @emitter.scalar o.name, nil, tag, false, false, Nodes::Scalar::ANY
      end

      def visit_Object o
        tag = Psych.dump_tags[o.class]
        unless tag
          klass = o.class == Object ? nil : o.class.name
          tag   = ['!ruby/object', klass].compact.join(':')
        end

        map = @emitter.start_mapping(nil, tag, false, Nodes::Mapping::BLOCK)
        register(o, map)

        dump_ivars o
        @emitter.end_mapping
      end

      alias :visit_Delegator :visit_Object

      def visit_Struct o
        tag = ['!ruby/struct', o.class.name].compact.join(':')

        register o, @emitter.start_mapping(nil, tag, false, Nodes::Mapping::BLOCK)
        o.members.each do |member|
          @emitter.scalar member.to_s, nil, nil, true, false, Nodes::Scalar::ANY
          accept o[member]
        end

        dump_ivars o

        @emitter.end_mapping
      end

      def visit_Exception o
        dump_exception o, private_iv_get(o, 'mesg')
      end

      def visit_NameError o
        dump_exception o, o.message.to_s
      end

      def visit_Regexp o
        register o, @emitter.scalar(o.inspect, nil, '!ruby/regexp', false, false, Nodes::Scalar::ANY)
      end

      def visit_DateTime o
        formatted = if o.offset.zero?
                      o.strftime("%Y-%m-%d %H:%M:%S.%9N Z".freeze)
                    else
                      o.strftime("%Y-%m-%d %H:%M:%S.%9N %:z".freeze)
                    end
        tag = '!ruby/object:DateTime'
        register o, @emitter.scalar(formatted, nil, tag, false, false, Nodes::Scalar::ANY)
      end

      def visit_Time o
        formatted = format_time o
        register o, @emitter.scalar(formatted, nil, nil, true, false, Nodes::Scalar::ANY)
      end

      def visit_Rational o
        register o, @emitter.start_mapping(nil, '!ruby/object:Rational', false, Nodes::Mapping::BLOCK)

        [
          'denominator', o.denominator.to_s,
          'numerator', o.numerator.to_s
        ].each do |m|
          @emitter.scalar m, nil, nil, true, false, Nodes::Scalar::ANY
        end

        @emitter.end_mapping
      end

      def visit_Complex o
        register o, @emitter.start_mapping(nil, '!ruby/object:Complex', false, Nodes::Mapping::BLOCK)

        ['real', o.real.to_s, 'image', o.imag.to_s].each do |m|
          @emitter.scalar m, nil, nil, true, false, Nodes::Scalar::ANY
        end

        @emitter.end_mapping
      end

      def visit_Integer o
        @emitter.scalar o.to_s, nil, nil, true, false, Nodes::Scalar::ANY
      end
      alias :visit_TrueClass :visit_Integer
      alias :visit_FalseClass :visit_Integer
      alias :visit_Date :visit_Integer

      def visit_Float o
        if o.nan?
          @emitter.scalar '.nan', nil, nil, true, false, Nodes::Scalar::ANY
        elsif o.infinite?
          @emitter.scalar((o.infinite? > 0 ? '.inf' : '-.inf'),
            nil, nil, true, false, Nodes::Scalar::ANY)
        else
          @emitter.scalar o.to_s, nil, nil, true, false, Nodes::Scalar::ANY
        end
      end

      def visit_BigDecimal o
        @emitter.scalar o._dump, nil, '!ruby/object:BigDecimal', false, false, Nodes::Scalar::ANY
      end

      def visit_String o
        plain = true
        quote = true
        style = Nodes::Scalar::PLAIN
        tag   = nil

        if binary?(o)
          o     = [o].pack('m0')
          tag   = '!binary' # FIXME: change to below when syck is removed
          #tag   = 'tag:yaml.org,2002:binary'
          style = Nodes::Scalar::LITERAL
          plain = false
          quote = false
        elsif o =~ /\n(?!\Z)/  # match \n except blank line at the end of string
          style = Nodes::Scalar::LITERAL
        elsif o == '<<'
          style = Nodes::Scalar::SINGLE_QUOTED
          tag   = 'tag:yaml.org,2002:str'
          plain = false
          quote = false
        elsif @line_width && o.length > @line_width
          style = Nodes::Scalar::FOLDED
        elsif o =~ /^[^[:word:]][^"]*$/
          style = Nodes::Scalar::DOUBLE_QUOTED
        elsif not String === @ss.tokenize(o) or /\A0[0-7]*[89]/ =~ o
          style = Nodes::Scalar::SINGLE_QUOTED
        end

        is_primitive = o.class == ::String
        ivars = is_primitive ? [] : o.instance_variables

        if ivars.empty?
          unless is_primitive
            tag = "!ruby/string:#{o.class}"
            plain = false
            quote = false
          end
          @emitter.scalar o, nil, tag, plain, quote, style
        else
          maptag = '!ruby/string'.dup
          maptag << ":#{o.class}" unless o.class == ::String

          register o, @emitter.start_mapping(nil, maptag, false, Nodes::Mapping::BLOCK)
          @emitter.scalar 'str', nil, nil, true, false, Nodes::Scalar::ANY
          @emitter.scalar o, nil, tag, plain, quote, style

          dump_ivars o

          @emitter.end_mapping
        end
      end

      def visit_Module o
        raise TypeError, "can't dump anonymous module: #{o}" unless o.name
        register o, @emitter.scalar(o.name, nil, '!ruby/module', false, false, Nodes::Scalar::SINGLE_QUOTED)
      end

      def visit_Class o
        raise TypeError, "can't dump anonymous class: #{o}" unless o.name
        register o, @emitter.scalar(o.name, nil, '!ruby/class', false, false, Nodes::Scalar::SINGLE_QUOTED)
      end

      def visit_Range o
        register o, @emitter.start_mapping(nil, '!ruby/range', false, Nodes::Mapping::BLOCK)
        ['begin', o.begin, 'end', o.end, 'excl', o.exclude_end?].each do |m|
          accept m
        end
        @emitter.end_mapping
      end

      def visit_Hash o
        if o.class == ::Hash
          register(o, @emitter.start_mapping(nil, nil, true, Psych::Nodes::Mapping::BLOCK))
          o.each do |k,v|
            accept k
            accept v
          end
          @emitter.end_mapping
        else
          visit_hash_subclass o
        end
      end

      def visit_Psych_Set o
        register(o, @emitter.start_mapping(nil, '!set', false, Psych::Nodes::Mapping::BLOCK))

        o.each do |k,v|
          accept k
          accept v
        end

        @emitter.end_mapping
      end

      def visit_Array o
        if o.class == ::Array
          visit_Enumerator o
        else
          visit_array_subclass o
        end
      end

      def visit_Enumerator o
        register o, @emitter.start_sequence(nil, nil, true, Nodes::Sequence::BLOCK)
        o.each { |c| accept c }
        @emitter.end_sequence
      end

      def visit_NilClass o
        @emitter.scalar('', nil, 'tag:yaml.org,2002:null', true, false, Nodes::Scalar::ANY)
      end

      def visit_Symbol o
        if o.empty?
          @emitter.scalar "", nil, '!ruby/symbol', false, false, Nodes::Scalar::ANY
        else
          @emitter.scalar ":#{o}", nil, nil, true, false, Nodes::Scalar::ANY
        end
      end

      def visit_BasicObject o
        tag = Psych.dump_tags[o.class]
        tag ||= "!ruby/marshalable:#{o.class.name}"

        map = @emitter.start_mapping(nil, tag, false, Nodes::Mapping::BLOCK)
        register(o, map)

        o.marshal_dump.each(&method(:accept))

        @emitter.end_mapping
      end

      private

      def binary? string
        string.encoding == Encoding::ASCII_8BIT && !string.ascii_only?
      end

      def visit_array_subclass o
        tag = "!ruby/array:#{o.class}"
        ivars = o.instance_variables
        if ivars.empty?
          node = @emitter.start_sequence(nil, tag, false, Nodes::Sequence::BLOCK)
          register o, node
          o.each { |c| accept c }
          @emitter.end_sequence
        else
          node = @emitter.start_mapping(nil, tag, false, Nodes::Sequence::BLOCK)
          register o, node

          # Dump the internal list
          accept 'internal'
          @emitter.start_sequence(nil, nil, true, Nodes::Sequence::BLOCK)
          o.each { |c| accept c }
          @emitter.end_sequence

          # Dump the ivars
          accept 'ivars'
          @emitter.start_mapping(nil, nil, true, Nodes::Sequence::BLOCK)
          ivars.each do |ivar|
            accept ivar
            accept o.instance_variable_get ivar
          end
          @emitter.end_mapping

          @emitter.end_mapping
        end
      end

      def visit_hash_subclass o
        ivars = o.instance_variables
        if ivars.any?
          tag = "!ruby/hash-with-ivars:#{o.class}"
          node = @emitter.start_mapping(nil, tag, false, Psych::Nodes::Mapping::BLOCK)
          register(o, node)

          # Dump the ivars
          accept 'ivars'
          @emitter.start_mapping nil, nil, true, Nodes::Mapping::BLOCK
          o.instance_variables.each do |ivar|
            accept ivar
            accept o.instance_variable_get ivar
          end
          @emitter.end_mapping

          # Dump the elements
          accept 'elements'
          @emitter.start_mapping nil, nil, true, Nodes::Mapping::BLOCK
          o.each do |k,v|
            accept k
            accept v
          end
          @emitter.end_mapping

          @emitter.end_mapping
        else
          tag = "!ruby/hash:#{o.class}"
          node = @emitter.start_mapping(nil, tag, false, Psych::Nodes::Mapping::BLOCK)
          register(o, node)
          o.each do |k,v|
            accept k
            accept v
          end
          @emitter.end_mapping
        end
      end

      def dump_list o
      end

      def dump_exception o, msg
        tag = ['!ruby/exception', o.class.name].join ':'

        @emitter.start_mapping nil, tag, false, Nodes::Mapping::BLOCK

        if msg
          @emitter.scalar 'message', nil, nil, true, false, Nodes::Scalar::ANY
          accept msg
        end

        @emitter.scalar 'backtrace', nil, nil, true, false, Nodes::Scalar::ANY
        accept o.backtrace

        dump_ivars o

        @emitter.end_mapping
      end

      def format_time time
        if time.utc?
          time.strftime("%Y-%m-%d %H:%M:%S.%9N Z")
        else
          time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z")
        end
      end

      def register target, yaml_obj
        @st.register target, yaml_obj
        yaml_obj
      end

      def dump_coder o
        @coders << o
        tag = Psych.dump_tags[o.class]
        unless tag
          klass = o.class == Object ? nil : o.class.name
          tag   = ['!ruby/object', klass].compact.join(':')
        end

        c = Psych::Coder.new(tag)
        o.encode_with(c)
        emit_coder c, o
      end

      def emit_coder c, o
        case c.type
        when :scalar
          @emitter.scalar c.scalar, nil, c.tag, c.tag.nil?, false, Nodes::Scalar::ANY
        when :seq
          @emitter.start_sequence nil, c.tag, c.tag.nil?, Nodes::Sequence::BLOCK
          c.seq.each do |thing|
            accept thing
          end
          @emitter.end_sequence
        when :map
          register o, @emitter.start_mapping(nil, c.tag, c.implicit, c.style)
          c.map.each do |k,v|
            accept k
            accept v
          end
          @emitter.end_mapping
        when :object
          accept c.object
        end
      end

      def dump_ivars target
        target.instance_variables.each do |iv|
          @emitter.scalar("#{iv.to_s.sub(/^@/, '')}", nil, nil, true, false, Nodes::Scalar::ANY)
          accept target.instance_variable_get(iv)
        end
      end
    end
  end
end
PKAH[6�*4gg9share/gems/gems/psych-3.1.0/lib/psych/visitors/visitor.rbnu�[���# frozen_string_literal: true
module Psych
  module Visitors
    class Visitor
      def accept target
        visit target
      end

      private

      DISPATCH = Hash.new do |hash, klass|
        hash[klass] = "visit_#{klass.name.gsub('::', '_')}"
      end

      def visit target
        send DISPATCH[target.class], target
      end
    end
  end
end
PKAH[�S�ܶ.�.9share/gems/gems/psych-3.1.0/lib/psych/visitors/to_ruby.rbnu�[���# frozen_string_literal: true
require 'psych/scalar_scanner'
require 'psych/class_loader'
require 'psych/exception'

unless defined?(Regexp::NOENCODING)
  Regexp::NOENCODING = 32
end

module Psych
  module Visitors
    ###
    # This class walks a YAML AST, converting each node to Ruby
    class ToRuby < Psych::Visitors::Visitor
      def self.create
        class_loader = ClassLoader.new
        scanner      = ScalarScanner.new class_loader
        new(scanner, class_loader)
      end

      attr_reader :class_loader

      def initialize ss, class_loader
        super()
        @st = {}
        @ss = ss
        @domain_types = Psych.domain_types
        @class_loader = class_loader
      end

      def accept target
        result = super
        return result if @domain_types.empty? || !target.tag

        key = target.tag.sub(/^[!\/]*/, '').sub(/(,\d+)\//, '\1:')
        key = "tag:#{key}" unless key =~ /^(?:tag:|x-private)/

        if @domain_types.key? key
          value, block = @domain_types[key]
          return block.call value, result
        end

        result
      end

      def deserialize o
        if klass = resolve_class(Psych.load_tags[o.tag])
          instance = klass.allocate

          if instance.respond_to?(:init_with)
            coder = Psych::Coder.new(o.tag)
            coder.scalar = o.value
            instance.init_with coder
          end

          return instance
        end

        return o.value if o.quoted
        return @ss.tokenize(o.value) unless o.tag

        case o.tag
        when '!binary', 'tag:yaml.org,2002:binary'
          o.value.unpack('m').first
        when /^!(?:str|ruby\/string)(?::(.*))?$/, 'tag:yaml.org,2002:str'
          klass = resolve_class($1)
          if klass
            klass.allocate.replace o.value
          else
            o.value
          end
        when '!ruby/object:BigDecimal'
          require 'bigdecimal' unless defined? BigDecimal
          class_loader.big_decimal._load o.value
        when "!ruby/object:DateTime"
          class_loader.date_time
          require 'date' unless defined? DateTime
          @ss.parse_time(o.value).to_datetime
        when '!ruby/encoding'
          ::Encoding.find o.value
        when "!ruby/object:Complex"
          class_loader.complex
          Complex(o.value)
        when "!ruby/object:Rational"
          class_loader.rational
          Rational(o.value)
        when "!ruby/class", "!ruby/module"
          resolve_class o.value
        when "tag:yaml.org,2002:float", "!float"
          Float(@ss.tokenize(o.value))
        when "!ruby/regexp"
          klass = class_loader.regexp
          o.value =~ /^\/(.*)\/([mixn]*)$/m
          source  = $1
          options = 0
          lang    = nil
          ($2 || '').split('').each do |option|
            case option
            when 'x' then options |= Regexp::EXTENDED
            when 'i' then options |= Regexp::IGNORECASE
            when 'm' then options |= Regexp::MULTILINE
            when 'n' then options |= Regexp::NOENCODING
            else lang = option
            end
          end
          klass.new(*[source, options, lang].compact)
        when "!ruby/range"
          klass = class_loader.range
          args = o.value.split(/([.]{2,3})/, 2).map { |s|
            accept Nodes::Scalar.new(s)
          }
          args.push(args.delete_at(1) == '...')
          klass.new(*args)
        when /^!ruby\/sym(bol)?:?(.*)?$/
          class_loader.symbolize o.value
        else
          @ss.tokenize o.value
        end
      end
      private :deserialize

      def visit_Psych_Nodes_Scalar o
        register o, deserialize(o)
      end

      def visit_Psych_Nodes_Sequence o
        if klass = resolve_class(Psych.load_tags[o.tag])
          instance = klass.allocate

          if instance.respond_to?(:init_with)
            coder = Psych::Coder.new(o.tag)
            coder.seq = o.children.map { |c| accept c }
            instance.init_with coder
          end

          return instance
        end

        case o.tag
        when nil
          register_empty(o)
        when '!omap', 'tag:yaml.org,2002:omap'
          map = register(o, Psych::Omap.new)
          o.children.each { |a|
            map[accept(a.children.first)] = accept a.children.last
          }
          map
        when /^!(?:seq|ruby\/array):(.*)$/
          klass = resolve_class($1)
          list  = register(o, klass.allocate)
          o.children.each { |c| list.push accept c }
          list
        else
          register_empty(o)
        end
      end

      def visit_Psych_Nodes_Mapping o
        if Psych.load_tags[o.tag]
          return revive(resolve_class(Psych.load_tags[o.tag]), o)
        end
        return revive_hash(register(o, {}), o) unless o.tag

        case o.tag
        when /^!ruby\/struct:?(.*)?$/
          klass = resolve_class($1) if $1

          if klass
            s = register(o, klass.allocate)

            members = {}
            struct_members = s.members.map { |x| class_loader.symbolize x }
            o.children.each_slice(2) do |k,v|
              member = accept(k)
              value  = accept(v)
              if struct_members.include?(class_loader.symbolize(member))
                s.send("#{member}=", value)
              else
                members[member.to_s.sub(/^@/, '')] = value
              end
            end
            init_with(s, members, o)
          else
            klass = class_loader.struct
            members = o.children.map { |c| accept c }
            h = Hash[*members]
            s = klass.new(*h.map { |k,v|
              class_loader.symbolize k
            }).new(*h.map { |k,v| v })
            register(o, s)
            s
          end

        when /^!ruby\/object:?(.*)?$/
          name = $1 || 'Object'

          if name == 'Complex'
            class_loader.complex
            h = Hash[*o.children.map { |c| accept c }]
            register o, Complex(h['real'], h['image'])
          elsif name == 'Rational'
            class_loader.rational
            h = Hash[*o.children.map { |c| accept c }]
            register o, Rational(h['numerator'], h['denominator'])
          elsif name == 'Hash'
            revive_hash(register(o, {}), o)
          else
            obj = revive((resolve_class(name) || class_loader.object), o)
            obj
          end

        when /^!(?:str|ruby\/string)(?::(.*))?$/, 'tag:yaml.org,2002:str'
          klass   = resolve_class($1)
          members = {}
          string  = nil

          o.children.each_slice(2) do |k,v|
            key   = accept k
            value = accept v

            if key == 'str'
              if klass
                string = klass.allocate.replace value
              else
                string = value
              end
              register(o, string)
            else
              members[key] = value
            end
          end
          init_with(string, members.map { |k,v| [k.to_s.sub(/^@/, ''),v] }, o)
        when /^!ruby\/array:(.*)$/
          klass = resolve_class($1)
          list  = register(o, klass.allocate)

          members = Hash[o.children.map { |c| accept c }.each_slice(2).to_a]
          list.replace members['internal']

          members['ivars'].each do |ivar, v|
            list.instance_variable_set ivar, v
          end
          list

        when '!ruby/range'
          klass = class_loader.range
          h = Hash[*o.children.map { |c| accept c }]
          register o, klass.new(h['begin'], h['end'], h['excl'])

        when /^!ruby\/exception:?(.*)?$/
          h = Hash[*o.children.map { |c| accept c }]

          e = build_exception((resolve_class($1) || class_loader.exception),
                              h.delete('message'))

          e.set_backtrace h.delete('backtrace') if h.key? 'backtrace'
          init_with(e, h, o)

        when '!set', 'tag:yaml.org,2002:set'
          set = class_loader.psych_set.new
          @st[o.anchor] = set if o.anchor
          o.children.each_slice(2) do |k,v|
            set[accept(k)] = accept(v)
          end
          set

        when /^!ruby\/hash-with-ivars(?::(.*))?$/
          hash = $1 ? resolve_class($1).allocate : {}
          register o, hash
          o.children.each_slice(2) do |key, value|
            case key.value
            when 'elements'
              revive_hash hash, value
            when 'ivars'
              value.children.each_slice(2) do |k,v|
                hash.instance_variable_set accept(k), accept(v)
              end
            end
          end
          hash

        when /^!map:(.*)$/, /^!ruby\/hash:(.*)$/
          revive_hash register(o, resolve_class($1).allocate), o

        when '!omap', 'tag:yaml.org,2002:omap'
          map = register(o, class_loader.psych_omap.new)
          o.children.each_slice(2) do |l,r|
            map[accept(l)] = accept r
          end
          map

        when /^!ruby\/marshalable:(.*)$/
          name = $1
          klass = resolve_class(name)
          obj = register(o, klass.allocate)

          if obj.respond_to?(:init_with)
            init_with(obj, revive_hash({}, o), o)
          elsif obj.respond_to?(:marshal_load)
            marshal_data = o.children.map(&method(:accept))
            obj.marshal_load(marshal_data)
            obj
          else
            raise ArgumentError, "Cannot deserialize #{name}"
          end

        else
          revive_hash(register(o, {}), o)
        end
      end

      def visit_Psych_Nodes_Document o
        accept o.root
      end

      def visit_Psych_Nodes_Stream o
        o.children.map { |c| accept c }
      end

      def visit_Psych_Nodes_Alias o
        @st.fetch(o.anchor) { raise BadAlias, "Unknown alias: #{o.anchor}" }
      end

      private
      def register node, object
        @st[node.anchor] = object if node.anchor
        object
      end

      def register_empty object
        list = register(object, [])
        object.children.each { |c| list.push accept c }
        list
      end

      SHOVEL = '<<'
      def revive_hash hash, o
        o.children.each_slice(2) { |k,v|
          key = deduplicate(accept(k))
          val = accept(v)

          if key == SHOVEL && k.tag != "tag:yaml.org,2002:str"
            case v
            when Nodes::Alias, Nodes::Mapping
              begin
                hash.merge! val
              rescue TypeError
                hash[key] = val
              end
            when Nodes::Sequence
              begin
                h = {}
                val.reverse_each do |value|
                  h.merge! value
                end
                hash.merge! h
              rescue TypeError
                hash[key] = val
              end
            else
              hash[key] = val
            end
          else
            hash[key] = val
          end

        }
        hash
      end

      if RUBY_VERSION < '2.7'
        def deduplicate key
          if key.is_a?(String)
            -(key.untaint)
          else
            key
          end
        end
      else
        def deduplicate key
          if key.is_a?(String)
            -key
          else
            key
          end
        end
      end

      def merge_key hash, key, val
      end

      def revive klass, node
        s = register(node, klass.allocate)
        init_with(s, revive_hash({}, node), node)
      end

      def init_with o, h, node
        c = Psych::Coder.new(node.tag)
        c.map = h

        if o.respond_to?(:init_with)
          o.init_with c
        else
          h.each { |k,v| o.instance_variable_set(:"@#{k}", v) }
        end
        o
      end

      # Convert +klassname+ to a Class
      def resolve_class klassname
        class_loader.load klassname
      end
    end

    class NoAliasRuby < ToRuby
      def visit_Psych_Nodes_Alias o
        raise BadAlias, "Unknown alias: #{o.anchor}"
      end
    end
  end
end
PKAH[�R�zgg1share/gems/gems/psych-3.1.0/lib/psych/core_ext.rbnu�[���# frozen_string_literal: true
class Object
  def self.yaml_tag url
    Psych.add_tag(url, self)
  end

  ###
  # call-seq: to_yaml(options = {})
  #
  # Convert an object to YAML.  See Psych.dump for more information on the
  # available +options+.
  def to_yaml options = {}
    Psych.dump self, options
  end
end

if defined?(::IRB)
  require 'psych/y'
end
PKAH[;<]];share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/jacobian.rbnu�[���# frozen_string_literal: false

require 'bigdecimal'

# require 'bigdecimal/jacobian'
#
# Provides methods to compute the Jacobian matrix of a set of equations at a
# point x. In the methods below:
#
# f is an Object which is used to compute the Jacobian matrix of the equations.
# It must provide the following methods:
#
# f.values(x):: returns the values of all functions at x
#
# f.zero:: returns 0.0
# f.one:: returns 1.0
# f.two:: returns 2.0
# f.ten:: returns 10.0
#
# f.eps:: returns the convergence criterion (epsilon value) used to determine whether two values are considered equal. If |a-b| < epsilon, the two values are considered equal.
#
# x is the point at which to compute the Jacobian.
#
# fx is f.values(x).
#
module Jacobian
  module_function

  # Determines the equality of two numbers by comparing to zero, or using the epsilon value
  def isEqual(a,b,zero=0.0,e=1.0e-8)
    aa = a.abs
    bb = b.abs
    if aa == zero &&  bb == zero then
      true
    else
      if ((a-b)/(aa+bb)).abs < e then
        true
      else
        false
      end
    end
  end


  # Computes the derivative of f[i] at x[i].
  # fx is the value of f at x.
  def dfdxi(f,fx,x,i)
    nRetry = 0
    n = x.size
    xSave = x[i]
    ok = 0
    ratio = f.ten*f.ten*f.ten
    dx = x[i].abs/ratio
    dx = fx[i].abs/ratio if isEqual(dx,f.zero,f.zero,f.eps)
    dx = f.one/f.ten     if isEqual(dx,f.zero,f.zero,f.eps)
    until ok>0 do
      deriv = []
      nRetry += 1
      if nRetry > 100
        raise "Singular Jacobian matrix. No change at x[" + i.to_s + "]"
      end
      dx = dx*f.two
      x[i] += dx
      fxNew = f.values(x)
      for j in 0...n do
        if !isEqual(fxNew[j],fx[j],f.zero,f.eps) then
          ok += 1
          deriv <<= (fxNew[j]-fx[j])/dx
        else
          deriv <<= f.zero
        end
      end
      x[i] = xSave
    end
    deriv
  end

  # Computes the Jacobian of f at x. fx is the value of f at x.
  def jacobian(f,fx,x)
    n = x.size
    dfdx = Array.new(n*n)
    for i in 0...n do
      df = dfdxi(f,fx,x,i)
      for j in 0...n do
        dfdx[j*n+i] = df[j]
      end
    end
    dfdx
  end
end
PKAH[�,���7share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/math.rbnu�[���# frozen_string_literal: false
require 'bigdecimal'

#
#--
# Contents:
#   sqrt(x, prec)
#   sin (x, prec)
#   cos (x, prec)
#   atan(x, prec)  Note: |x|<1, x=0.9999 may not converge.
#   PI  (prec)
#   E   (prec) == exp(1.0,prec)
#
# where:
#   x    ... BigDecimal number to be computed.
#            |x| must be small enough to get convergence.
#   prec ... Number of digits to be obtained.
#++
#
# Provides mathematical functions.
#
# Example:
#
#   require "bigdecimal/math"
#
#   include BigMath
#
#   a = BigDecimal((PI(100)/2).to_s)
#   puts sin(a,100) # => 0.99999999999999999999......e0
#
module BigMath
  module_function

  # call-seq:
  #   sqrt(decimal, numeric) -> BigDecimal
  #
  # Computes the square root of +decimal+ to the specified number of digits of
  # precision, +numeric+.
  #
  #   BigMath.sqrt(BigDecimal('2'), 16).to_s
  #   #=> "0.1414213562373095048801688724e1"
  #
  def sqrt(x, prec)
    x.sqrt(prec)
  end

  # call-seq:
  #   sin(decimal, numeric) -> BigDecimal
  #
  # Computes the sine of +decimal+ to the specified number of digits of
  # precision, +numeric+.
  #
  # If +decimal+ is Infinity or NaN, returns NaN.
  #
  #   BigMath.sin(BigMath.PI(5)/4, 5).to_s
  #   #=> "0.70710678118654752440082036563292800375e0"
  #
  def sin(x, prec)
    raise ArgumentError, "Zero or negative precision for sin" if prec <= 0
    return BigDecimal("NaN") if x.infinite? || x.nan?
    n    = prec + BigDecimal.double_fig
    one  = BigDecimal("1")
    two  = BigDecimal("2")
    x = -x if neg = x < 0
    if x > (twopi = two * BigMath.PI(prec))
      if x > 30
        x %= twopi
      else
        x -= twopi while x > twopi
      end
    end
    x1   = x
    x2   = x.mult(x,n)
    sign = 1
    y    = x
    d    = y
    i    = one
    z    = one
    while d.nonzero? && ((m = n - (y.exponent - d.exponent).abs) > 0)
      m = BigDecimal.double_fig if m < BigDecimal.double_fig
      sign = -sign
      x1  = x2.mult(x1,n)
      i  += two
      z  *= (i-one) * i
      d   = sign * x1.div(z,m)
      y  += d
    end
    neg ? -y : y
  end

  # call-seq:
  #   cos(decimal, numeric) -> BigDecimal
  #
  # Computes the cosine of +decimal+ to the specified number of digits of
  # precision, +numeric+.
  #
  # If +decimal+ is Infinity or NaN, returns NaN.
  #
  #   BigMath.cos(BigMath.PI(4), 16).to_s
  #   #=> "-0.999999999999999999999999999999856613163740061349e0"
  #
  def cos(x, prec)
    raise ArgumentError, "Zero or negative precision for cos" if prec <= 0
    return BigDecimal("NaN") if x.infinite? || x.nan?
    n    = prec + BigDecimal.double_fig
    one  = BigDecimal("1")
    two  = BigDecimal("2")
    x = -x if x < 0
    if x > (twopi = two * BigMath.PI(prec))
      if x > 30
        x %= twopi
      else
        x -= twopi while x > twopi
      end
    end
    x1 = one
    x2 = x.mult(x,n)
    sign = 1
    y = one
    d = y
    i = BigDecimal("0")
    z = one
    while d.nonzero? && ((m = n - (y.exponent - d.exponent).abs) > 0)
      m = BigDecimal.double_fig if m < BigDecimal.double_fig
      sign = -sign
      x1  = x2.mult(x1,n)
      i  += two
      z  *= (i-one) * i
      d   = sign * x1.div(z,m)
      y  += d
    end
    y
  end

  # call-seq:
  #   atan(decimal, numeric) -> BigDecimal
  #
  # Computes the arctangent of +decimal+ to the specified number of digits of
  # precision, +numeric+.
  #
  # If +decimal+ is NaN, returns NaN.
  #
  #   BigMath.atan(BigDecimal('-1'), 16).to_s
  #   #=> "-0.785398163397448309615660845819878471907514682065e0"
  #
  def atan(x, prec)
    raise ArgumentError, "Zero or negative precision for atan" if prec <= 0
    return BigDecimal("NaN") if x.nan?
    pi = PI(prec)
    x = -x if neg = x < 0
    return pi.div(neg ? -2 : 2, prec) if x.infinite?
    return pi / (neg ? -4 : 4) if x.round(prec) == 1
    x = BigDecimal("1").div(x, prec) if inv = x > 1
    x = (-1 + sqrt(1 + x**2, prec))/x if dbl = x > 0.5
    n    = prec + BigDecimal.double_fig
    y = x
    d = y
    t = x
    r = BigDecimal("3")
    x2 = x.mult(x,n)
    while d.nonzero? && ((m = n - (y.exponent - d.exponent).abs) > 0)
      m = BigDecimal.double_fig if m < BigDecimal.double_fig
      t = -t.mult(x2,n)
      d = t.div(r,m)
      y += d
      r += 2
    end
    y *= 2 if dbl
    y = pi / 2 - y if inv
    y = -y if neg
    y
  end

  # call-seq:
  #   PI(numeric) -> BigDecimal
  #
  # Computes the value of pi to the specified number of digits of precision,
  # +numeric+.
  #
  #   BigMath.PI(10).to_s
  #   #=> "0.3141592653589793238462643388813853786957412e1"
  #
  def PI(prec)
    raise ArgumentError, "Zero or negative precision for PI" if prec <= 0
    n      = prec + BigDecimal.double_fig
    zero   = BigDecimal("0")
    one    = BigDecimal("1")
    two    = BigDecimal("2")

    m25    = BigDecimal("-0.04")
    m57121 = BigDecimal("-57121")

    pi     = zero

    d = one
    k = one
    t = BigDecimal("-80")
    while d.nonzero? && ((m = n - (pi.exponent - d.exponent).abs) > 0)
      m = BigDecimal.double_fig if m < BigDecimal.double_fig
      t   = t*m25
      d   = t.div(k,m)
      k   = k+two
      pi  = pi + d
    end

    d = one
    k = one
    t = BigDecimal("956")
    while d.nonzero? && ((m = n - (pi.exponent - d.exponent).abs) > 0)
      m = BigDecimal.double_fig if m < BigDecimal.double_fig
      t   = t.div(m57121,n)
      d   = t.div(k,m)
      pi  = pi + d
      k   = k+two
    end
    pi
  end

  # call-seq:
  #   E(numeric) -> BigDecimal
  #
  # Computes e (the base of natural logarithms) to the specified number of
  # digits of precision, +numeric+.
  #
  #   BigMath.E(10).to_s
  #   #=> "0.271828182845904523536028752390026306410273e1"
  #
  def E(prec)
    raise ArgumentError, "Zero or negative precision for E" if prec <= 0
    BigMath.exp(1, prec)
  end
end
PKAH[ь��9share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/ludcmp.rbnu�[���# frozen_string_literal: false
require 'bigdecimal'

#
# Solves a*x = b for x, using LU decomposition.
#
module LUSolve
  module_function

  # Performs LU decomposition of the n by n matrix a.
  def ludecomp(a,n,zero=0,one=1)
    prec = BigDecimal.limit(nil)
    ps     = []
    scales = []
    for i in 0...n do  # pick up largest(abs. val.) element in each row.
      ps <<= i
      nrmrow  = zero
      ixn = i*n
      for j in 0...n do
        biggst = a[ixn+j].abs
        nrmrow = biggst if biggst>nrmrow
      end
      if nrmrow>zero then
        scales <<= one.div(nrmrow,prec)
      else
        raise "Singular matrix"
      end
    end
    n1          = n - 1
    for k in 0...n1 do # Gaussian elimination with partial pivoting.
      biggst  = zero;
      for i in k...n do
        size = a[ps[i]*n+k].abs*scales[ps[i]]
        if size>biggst then
          biggst = size
          pividx  = i
        end
      end
      raise "Singular matrix" if biggst<=zero
      if pividx!=k then
        j = ps[k]
        ps[k] = ps[pividx]
        ps[pividx] = j
      end
      pivot   = a[ps[k]*n+k]
      for i in (k+1)...n do
        psin = ps[i]*n
        a[psin+k] = mult = a[psin+k].div(pivot,prec)
        if mult!=zero then
          pskn = ps[k]*n
          for j in (k+1)...n do
            a[psin+j] -= mult.mult(a[pskn+j],prec)
          end
        end
      end
    end
    raise "Singular matrix" if a[ps[n1]*n+n1] == zero
    ps
  end

  # Solves a*x = b for x, using LU decomposition.
  #
  # a is a matrix, b is a constant vector, x is the solution vector.
  #
  # ps is the pivot, a vector which indicates the permutation of rows performed
  # during LU decomposition.
  def lusolve(a,b,ps,zero=0.0)
    prec = BigDecimal.limit(nil)
    n = ps.size
    x = []
    for i in 0...n do
      dot = zero
      psin = ps[i]*n
      for j in 0...i do
        dot = a[psin+j].mult(x[j],prec) + dot
      end
      x <<= b[ps[i]] - dot
    end
    (n-1).downto(0) do |i|
      dot = zero
      psin = ps[i]*n
      for j in (i+1)...n do
        dot = a[psin+j].mult(x[j],prec) + dot
      end
      x[i]  = (x[i]-dot).div(a[psin+i],prec)
    end
    x
  end
end
PKAH[h"A�ZZ9share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/newton.rbnu�[���# frozen_string_literal: false
require "bigdecimal/ludcmp"
require "bigdecimal/jacobian"

#
# newton.rb
#
# Solves the nonlinear algebraic equation system f = 0 by Newton's method.
# This program is not dependent on BigDecimal.
#
# To call:
#    n = nlsolve(f,x)
#  where n is the number of iterations required,
#        x is the initial value vector
#        f is an Object which is used to compute the values of the equations to be solved.
# It must provide the following methods:
#
# f.values(x):: returns the values of all functions at x
#
# f.zero:: returns 0.0
# f.one:: returns 1.0
# f.two:: returns 2.0
# f.ten:: returns 10.0
#
# f.eps:: returns the convergence criterion (epsilon value) used to determine whether two values are considered equal. If |a-b| < epsilon, the two values are considered equal.
#
# On exit, x is the solution vector.
#
module Newton
  include LUSolve
  include Jacobian
  module_function

  def norm(fv,zero=0.0) # :nodoc:
    s = zero
    n = fv.size
    for i in 0...n do
      s += fv[i]*fv[i]
    end
    s
  end

  # See also Newton
  def nlsolve(f,x)
    nRetry = 0
    n = x.size

    f0 = f.values(x)
    zero = f.zero
    one  = f.one
    two  = f.two
    p5 = one/two
    d  = norm(f0,zero)
    minfact = f.ten*f.ten*f.ten
    minfact = one/minfact
    e = f.eps
    while d >= e do
      nRetry += 1
      # Not yet converged. => Compute Jacobian matrix
      dfdx = jacobian(f,f0,x)
      # Solve dfdx*dx = -f0 to estimate dx
      dx = lusolve(dfdx,f0,ludecomp(dfdx,n,zero,one),zero)
      fact = two
      xs = x.dup
      begin
        fact *= p5
        if fact < minfact then
          raise "Failed to reduce function values."
        end
        for i in 0...n do
          x[i] = xs[i] - dx[i]*fact
        end
        f0 = f.values(x)
        dn = norm(f0,zero)
      end while(dn>=d)
      d = dn
    end
    nRetry
  end
end
PKAH[<���7share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/util.rbnu�[���# frozen_string_literal: false
#
#--
# bigdecimal/util extends various native classes to provide the #to_d method,
# and provides BigDecimal#to_d and BigDecimal#to_digits.
#++

require 'bigdecimal'

class Integer < Numeric
  # call-seq:
  #     int.to_d  -> bigdecimal
  #
  # Returns the value of +int+ as a BigDecimal.
  #
  #     require 'bigdecimal'
  #     require 'bigdecimal/util'
  #
  #     42.to_d   # => 0.42e2
  #
  # See also BigDecimal::new.
  #
  def to_d
    BigDecimal(self)
  end
end


class Float < Numeric
  # call-seq:
  #     float.to_d             -> bigdecimal
  #     float.to_d(precision)  -> bigdecimal
  #
  # Returns the value of +float+ as a BigDecimal.
  # The +precision+ parameter is used to determine the number of
  # significant digits for the result (the default is Float::DIG).
  #
  #     require 'bigdecimal'
  #     require 'bigdecimal/util'
  #
  #     0.5.to_d         # => 0.5e0
  #     1.234.to_d(2)    # => 0.12e1
  #
  # See also BigDecimal::new.
  #
  def to_d(precision=Float::DIG)
    BigDecimal(self, precision)
  end
end


class String
  # call-seq:
  #     str.to_d  -> bigdecimal
  #
  # Returns the result of interpreting leading characters in +str+
  # as a BigDecimal.
  #
  #     require 'bigdecimal'
  #     require 'bigdecimal/util'
  #
  #     "0.5".to_d             # => 0.5e0
  #     "123.45e1".to_d        # => 0.12345e4
  #     "45.67 degrees".to_d   # => 0.4567e2
  #
  # See also BigDecimal::new.
  #
  def to_d
    BigDecimal.interpret_loosely(self)
  end
end


class BigDecimal < Numeric
  # call-seq:
  #     a.to_digits -> string
  #
  # Converts a BigDecimal to a String of the form "nnnnnn.mmm".
  # This method is deprecated; use BigDecimal#to_s("F") instead.
  #
  #     require 'bigdecimal/util'
  #
  #     d = BigDecimal("3.14")
  #     d.to_digits                  # => "3.14"
  #
  def to_digits
    if self.nan? || self.infinite? || self.zero?
      self.to_s
    else
      i       = self.to_i.to_s
      _,f,_,z = self.frac.split
      i + "." + ("0"*(-z)) + f
    end
  end

  # call-seq:
  #     a.to_d -> bigdecimal
  #
  # Returns self.
  #
  #     require 'bigdecimal/util'
  #
  #     d = BigDecimal("3.14")
  #     d.to_d                       # => 0.314e1
  #
  def to_d
    self
  end
end


class Rational < Numeric
  # call-seq:
  #     rat.to_d(precision)  -> bigdecimal
  #
  # Returns the value as a BigDecimal.
  #
  # The required +precision+ parameter is used to determine the number of
  # significant digits for the result.
  #
  #     require 'bigdecimal'
  #     require 'bigdecimal/util'
  #
  #     Rational(22, 7).to_d(3)   # => 0.314e1
  #
  # See also BigDecimal::new.
  #
  def to_d(precision)
    BigDecimal(self, precision)
  end
end


class NilClass
  # call-seq:
  #     nil.to_d -> bigdecimal
  #
  # Returns nil represented as a BigDecimal.
  #
  #     require 'bigdecimal'
  #     require 'bigdecimal/util'
  #
  #     nil.to_d   # => 0.0
  #
  def to_d
    BigDecimal(0)
  end
end
PKAH[ֳs���#share/gems/gems/rdoc-6.2.1.1/exe/rinuȯ��#!/usr/bin/ruby

begin
  gem 'rdoc'
rescue NameError => e # --disable-gems
  raise unless e.name == :gem
rescue Gem::LoadError
end

require 'rdoc/ri/driver'

RDoc::RI::Driver.run ARGV
PKAH[YE[h��%share/gems/gems/rdoc-6.2.1.1/exe/rdocnuȯ��#!/usr/bin/ruby
#
#  RDoc: Documentation tool for source code
#        (see lib/rdoc/rdoc.rb for more information)
#
#  Copyright (c) 2003 Dave Thomas
#  Released under the same terms as Ruby

begin
  gem 'rdoc'
rescue NameError => e # --disable-gems
  raise unless e.name == :gem
rescue Gem::LoadError
end

require 'rdoc/rdoc'

begin
  r = RDoc::RDoc.new
  r.document ARGV
rescue Errno::ENOSPC
  $stderr.puts 'Ran out of space creating documentation'
  $stderr.puts
  $stderr.puts 'Please free up some space and try again'
rescue SystemExit
  raise
rescue Exception => e
  if $DEBUG_RDOC then
    $stderr.puts e.message
    $stderr.puts "#{e.backtrace.join "\n\t"}"
    $stderr.puts
  elsif Interrupt === e then
    $stderr.puts
    $stderr.puts 'Interrupted'
  else
    $stderr.puts "uh-oh! RDoc had a problem:"
    $stderr.puts e.message
    $stderr.puts
    $stderr.puts "run with --debug for full backtrace"
  end

  exit 1
end

PKAH[{u���(share/gems/gems/rdoc-6.2.1.1/lib/rdoc.rbnu�[���# frozen_string_literal: true
$DEBUG_RDOC = nil

# :main: README.rdoc

##
# RDoc produces documentation for Ruby source files by parsing the source and
# extracting the definition for classes, modules, methods, includes and
# requires.  It associates these with optional documentation contained in an
# immediately preceding comment block then renders the result using an output
# formatter.
#
# For a simple introduction to writing or generating documentation using RDoc
# see the README.
#
# == Roadmap
#
# If you think you found a bug in RDoc see CONTRIBUTING@Bugs
#
# If you want to use RDoc to create documentation for your Ruby source files,
# see RDoc::Markup and refer to <tt>rdoc --help</tt> for command line usage.
#
# If you want to set the default markup format see
# RDoc::Markup@Supported+Formats
#
# If you want to store rdoc configuration in your gem (such as the default
# markup format) see RDoc::Options@Saved+Options
#
# If you want to write documentation for Ruby files see RDoc::Parser::Ruby
#
# If you want to write documentation for extensions written in C see
# RDoc::Parser::C
#
# If you want to generate documentation using <tt>rake</tt> see RDoc::Task.
#
# If you want to drive RDoc programmatically, see RDoc::RDoc.
#
# If you want to use the library to format text blocks into HTML or other
# formats, look at RDoc::Markup.
#
# If you want to make an RDoc plugin such as a generator or directive handler
# see RDoc::RDoc.
#
# If you want to write your own output generator see RDoc::Generator.
#
# If you want an overview of how RDoc works see CONTRIBUTING
#
# == Credits
#
# RDoc is currently being maintained by Eric Hodel <drbrain@segment7.net>.
#
# Dave Thomas <dave@pragmaticprogrammer.com> is the original author of RDoc.
#
# * The Ruby parser in rdoc/parse.rb is based heavily on the outstanding
#   work of Keiju ISHITSUKA of Nippon Rational Inc, who produced the Ruby
#   parser for irb and the rtags package.

module RDoc

  ##
  # Exception thrown by any rdoc error.

  class Error < RuntimeError; end

  require 'rdoc/version'

  ##
  # Method visibilities

  VISIBILITIES = [:public, :protected, :private]

  ##
  # Name of the dotfile that contains the description of files to be processed
  # in the current directory

  DOT_DOC_FILENAME = ".document"

  ##
  # General RDoc modifiers

  GENERAL_MODIFIERS = %w[nodoc].freeze

  ##
  # RDoc modifiers for classes

  CLASS_MODIFIERS = GENERAL_MODIFIERS

  ##
  # RDoc modifiers for attributes

  ATTR_MODIFIERS = GENERAL_MODIFIERS

  ##
  # RDoc modifiers for constants

  CONSTANT_MODIFIERS = GENERAL_MODIFIERS

  ##
  # RDoc modifiers for methods

  METHOD_MODIFIERS = GENERAL_MODIFIERS +
    %w[arg args yield yields notnew not-new not_new doc]

  ##
  # Loads the best available YAML library.

  def self.load_yaml
    begin
      gem 'psych'
    rescue NameError => e # --disable-gems
      raise unless e.name == :gem
    rescue Gem::LoadError
    end

    begin
      require 'psych'
    rescue ::LoadError
    ensure
      require 'yaml'
    end
  end

  autoload :RDoc,           'rdoc/rdoc'

  autoload :CrossReference, 'rdoc/cross_reference'
  autoload :ERBIO,          'rdoc/erbio'
  autoload :ERBPartial,     'rdoc/erb_partial'
  autoload :Encoding,       'rdoc/encoding'
  autoload :Generator,      'rdoc/generator'
  autoload :Options,        'rdoc/options'
  autoload :Parser,         'rdoc/parser'
  autoload :Servlet,        'rdoc/servlet'
  autoload :RI,             'rdoc/ri'
  autoload :Stats,          'rdoc/stats'
  autoload :Store,          'rdoc/store'
  autoload :Task,           'rdoc/task'
  autoload :Text,           'rdoc/text'

  autoload :Markdown,       'rdoc/markdown'
  autoload :Markup,         'rdoc/markup'
  autoload :RD,             'rdoc/rd'
  autoload :TomDoc,         'rdoc/tom_doc'

  autoload :KNOWN_CLASSES,  'rdoc/known_classes'

  autoload :TokenStream,    'rdoc/token_stream'

  autoload :Comment,        'rdoc/comment'

  require 'rdoc/i18n'

  # code objects
  #
  # We represent the various high-level code constructs that appear in Ruby
  # programs: classes, modules, methods, and so on.
  autoload :CodeObject,     'rdoc/code_object'

  autoload :Context,        'rdoc/context'
  autoload :TopLevel,       'rdoc/top_level'

  autoload :AnonClass,      'rdoc/anon_class'
  autoload :ClassModule,    'rdoc/class_module'
  autoload :NormalClass,    'rdoc/normal_class'
  autoload :NormalModule,   'rdoc/normal_module'
  autoload :SingleClass,    'rdoc/single_class'

  autoload :Alias,          'rdoc/alias'
  autoload :AnyMethod,      'rdoc/any_method'
  autoload :MethodAttr,     'rdoc/method_attr'
  autoload :GhostMethod,    'rdoc/ghost_method'
  autoload :MetaMethod,     'rdoc/meta_method'
  autoload :Attr,           'rdoc/attr'

  autoload :Constant,       'rdoc/constant'
  autoload :Mixin,          'rdoc/mixin'
  autoload :Include,        'rdoc/include'
  autoload :Extend,         'rdoc/extend'
  autoload :Require,        'rdoc/require'

end
PKAH[e�3��5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/token_stream.rbnu�[���# frozen_string_literal: true
##
# A TokenStream is a list of tokens, gathered during the parse of some entity
# (say a method). Entities populate these streams by being registered with the
# lexer. Any class can collect tokens by including TokenStream. From the
# outside, you use such an object by calling the start_collecting_tokens
# method, followed by calls to add_token and pop_token.

module RDoc::TokenStream

  ##
  # Converts +token_stream+ to HTML wrapping various tokens with
  # <tt><span></tt> elements. Some tokens types are wrapped in spans
  # with the given class names. Other token types are not wrapped in spans.

  def self.to_html token_stream
    starting_title = false

    token_stream.map do |t|
      next unless t

      style = case t[:kind]
              when :on_const   then 'ruby-constant'
              when :on_kw      then 'ruby-keyword'
              when :on_ivar    then 'ruby-ivar'
              when :on_cvar    then 'ruby-identifier'
              when :on_gvar    then 'ruby-identifier'
              when '=' != t[:text] && :on_op
                               then 'ruby-operator'
              when :on_tlambda then 'ruby-operator'
              when :on_ident   then 'ruby-identifier'
              when :on_label   then 'ruby-value'
              when :on_backref, :on_dstring
                               then 'ruby-node'
              when :on_comment then 'ruby-comment'
              when :on_embdoc  then 'ruby-comment'
              when :on_regexp  then 'ruby-regexp'
              when :on_tstring then 'ruby-string'
              when :on_int, :on_float,
                   :on_rational, :on_imaginary,
                   :on_heredoc,
                   :on_symbol, :on_CHAR then 'ruby-value'
              when :on_heredoc_beg, :on_heredoc_end
                               then 'ruby-identifier'
              end

      comment_with_nl = false
      if :on_comment == t[:kind] or :on_embdoc == t[:kind] or :on_heredoc_end == t[:kind]
        comment_with_nl = true if "\n" == t[:text][-1]
        text = t[:text].rstrip
      else
        text = t[:text]
      end

      if :on_ident == t[:kind] && starting_title
        starting_title = false
        style = 'ruby-identifier ruby-title'
      end

      if :on_kw == t[:kind] and 'def' == t[:text]
        starting_title = true
      end

      text = CGI.escapeHTML text

      if style then
        "<span class=\"#{style}\">#{text}</span>#{"\n" if comment_with_nl}"
      else
        text
      end
    end.join
  end

  ##
  # Adds +tokens+ to the collected tokens

  def add_tokens(tokens)
    @token_stream.concat(tokens)
  end

  ##
  # Adds one +token+ to the collected tokens

  def add_token(token)
    @token_stream.push(token)
  end

  ##
  # Starts collecting tokens

  def collect_tokens
    @token_stream = []
  end

  alias start_collecting_tokens collect_tokens

  ##
  # Remove the last token from the collected tokens

  def pop_token
    @token_stream.pop
  end

  ##
  # Current token stream

  def token_stream
    @token_stream
  end

  ##
  # Returns a string representation of the token stream

  def tokens_to_s
    token_stream.compact.map { |token| token[:text] }.join ''
  end

end

PKAH[�M<��}�}9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/inline_parser.rbnu�[���# frozen_string_literal: true
#
# DO NOT MODIFY!!!!
# This file is automatically generated by Racc 1.4.16
# from Racc grammar file "".
#

require 'racc/parser.rb'

require 'strscan'

class RDoc::RD

##
# RD format parser for inline markup such as emphasis, links, footnotes, etc.

class InlineParser < Racc::Parser


# :stopdoc:

EM_OPEN = '((*'
EM_OPEN_RE = /\A#{Regexp.quote(EM_OPEN)}/
EM_CLOSE = '*))'
EM_CLOSE_RE = /\A#{Regexp.quote(EM_CLOSE)}/
CODE_OPEN = '(({'
CODE_OPEN_RE = /\A#{Regexp.quote(CODE_OPEN)}/
CODE_CLOSE = '}))'
CODE_CLOSE_RE = /\A#{Regexp.quote(CODE_CLOSE)}/
VAR_OPEN = '((|'
VAR_OPEN_RE = /\A#{Regexp.quote(VAR_OPEN)}/
VAR_CLOSE = '|))'
VAR_CLOSE_RE = /\A#{Regexp.quote(VAR_CLOSE)}/
KBD_OPEN = '((%'
KBD_OPEN_RE = /\A#{Regexp.quote(KBD_OPEN)}/
KBD_CLOSE = '%))'
KBD_CLOSE_RE = /\A#{Regexp.quote(KBD_CLOSE)}/
INDEX_OPEN = '((:'
INDEX_OPEN_RE = /\A#{Regexp.quote(INDEX_OPEN)}/
INDEX_CLOSE = ':))'
INDEX_CLOSE_RE = /\A#{Regexp.quote(INDEX_CLOSE)}/
REF_OPEN = '((<'
REF_OPEN_RE = /\A#{Regexp.quote(REF_OPEN)}/
REF_CLOSE = '>))'
REF_CLOSE_RE = /\A#{Regexp.quote(REF_CLOSE)}/
FOOTNOTE_OPEN = '((-'
FOOTNOTE_OPEN_RE = /\A#{Regexp.quote(FOOTNOTE_OPEN)}/
FOOTNOTE_CLOSE = '-))'
FOOTNOTE_CLOSE_RE = /\A#{Regexp.quote(FOOTNOTE_CLOSE)}/
VERB_OPEN = "(('"
VERB_OPEN_RE = /\A#{Regexp.quote(VERB_OPEN)}/
VERB_CLOSE = "'))"
VERB_CLOSE_RE = /\A#{Regexp.quote(VERB_CLOSE)}/

BAR = "|"
BAR_RE = /\A#{Regexp.quote(BAR)}/
QUOTE = '"'
QUOTE_RE = /\A#{Regexp.quote(QUOTE)}/
SLASH = "/"
SLASH_RE = /\A#{Regexp.quote(SLASH)}/
BACK_SLASH = "\\"
BACK_SLASH_RE = /\A#{Regexp.quote(BACK_SLASH)}/
URL = "URL:"
URL_RE = /\A#{Regexp.quote(URL)}/

other_re_mode = Regexp::EXTENDED
other_re_mode |= Regexp::MULTILINE

OTHER_RE = Regexp.new(
  "\\A.+?(?=#{Regexp.quote(EM_OPEN)}|#{Regexp.quote(EM_CLOSE)}|
              #{Regexp.quote(CODE_OPEN)}|#{Regexp.quote(CODE_CLOSE)}|
              #{Regexp.quote(VAR_OPEN)}|#{Regexp.quote(VAR_CLOSE)}|
              #{Regexp.quote(KBD_OPEN)}|#{Regexp.quote(KBD_CLOSE)}|
              #{Regexp.quote(INDEX_OPEN)}|#{Regexp.quote(INDEX_CLOSE)}|
              #{Regexp.quote(REF_OPEN)}|#{Regexp.quote(REF_CLOSE)}|
            #{Regexp.quote(FOOTNOTE_OPEN)}|#{Regexp.quote(FOOTNOTE_CLOSE)}|
              #{Regexp.quote(VERB_OPEN)}|#{Regexp.quote(VERB_CLOSE)}|
              #{Regexp.quote(BAR)}|
              #{Regexp.quote(QUOTE)}|
              #{Regexp.quote(SLASH)}|
              #{Regexp.quote(BACK_SLASH)}|
              #{Regexp.quote(URL)})", other_re_mode)

# :startdoc:

##
# Creates a new parser for inline markup in the rd format.  The +block_parser+
# is used to for footnotes and labels in the inline text.

def initialize block_parser
  @block_parser = block_parser
end

##
# Parses the +inline+ text from RD format into RDoc format.

def parse inline
  @inline = inline
  @src = StringScanner.new inline
  @pre = "".dup
  @yydebug = true
  do_parse.to_s
end

##
# Returns the next token from the inline text

def next_token
  return [false, false] if @src.eos?
#  p @src.rest if @yydebug
  if ret = @src.scan(EM_OPEN_RE)
    @pre << ret
    [:EM_OPEN, ret]
  elsif ret = @src.scan(EM_CLOSE_RE)
    @pre << ret
    [:EM_CLOSE, ret]
  elsif ret = @src.scan(CODE_OPEN_RE)
    @pre << ret
    [:CODE_OPEN, ret]
  elsif ret = @src.scan(CODE_CLOSE_RE)
    @pre << ret
    [:CODE_CLOSE, ret]
  elsif ret = @src.scan(VAR_OPEN_RE)
    @pre << ret
    [:VAR_OPEN, ret]
  elsif ret = @src.scan(VAR_CLOSE_RE)
    @pre << ret
    [:VAR_CLOSE, ret]
  elsif ret = @src.scan(KBD_OPEN_RE)
    @pre << ret
    [:KBD_OPEN, ret]
  elsif ret = @src.scan(KBD_CLOSE_RE)
    @pre << ret
    [:KBD_CLOSE, ret]
  elsif ret = @src.scan(INDEX_OPEN_RE)
    @pre << ret
    [:INDEX_OPEN, ret]
  elsif ret = @src.scan(INDEX_CLOSE_RE)
    @pre << ret
    [:INDEX_CLOSE, ret]
  elsif ret = @src.scan(REF_OPEN_RE)
    @pre << ret
    [:REF_OPEN, ret]
  elsif ret = @src.scan(REF_CLOSE_RE)
    @pre << ret
    [:REF_CLOSE, ret]
  elsif ret = @src.scan(FOOTNOTE_OPEN_RE)
    @pre << ret
    [:FOOTNOTE_OPEN, ret]
  elsif ret = @src.scan(FOOTNOTE_CLOSE_RE)
    @pre << ret
    [:FOOTNOTE_CLOSE, ret]
  elsif ret = @src.scan(VERB_OPEN_RE)
    @pre << ret
    [:VERB_OPEN, ret]
  elsif ret = @src.scan(VERB_CLOSE_RE)
    @pre << ret
    [:VERB_CLOSE, ret]
  elsif ret = @src.scan(BAR_RE)
    @pre << ret
    [:BAR, ret]
  elsif ret = @src.scan(QUOTE_RE)
    @pre << ret
    [:QUOTE, ret]
  elsif ret = @src.scan(SLASH_RE)
    @pre << ret
    [:SLASH, ret]
  elsif ret = @src.scan(BACK_SLASH_RE)
    @pre << ret
    [:BACK_SLASH, ret]
  elsif ret = @src.scan(URL_RE)
    @pre << ret
    [:URL, ret]
  elsif ret = @src.scan(OTHER_RE)
    @pre << ret
    [:OTHER, ret]
  else
    ret = @src.rest
    @pre << ret
    @src.terminate
    [:OTHER, ret]
  end
end

##
# Raises a ParseError when invalid formatting is found

def on_error(et, ev, values)
  lines_of_rest = @src.rest.lines.to_a.length
  prev_words = prev_words_on_error(ev)
  at = 4 + prev_words.length

  message = <<-MSG
RD syntax error: line #{@block_parser.line_index - lines_of_rest}:
...#{prev_words} #{(ev||'')} #{next_words_on_error()} ...
  MSG

  message << " " * at + "^" * (ev ? ev.length : 0) + "\n"
  raise ParseError, message
end

##
# Returns words before the error

def prev_words_on_error(ev)
  pre = @pre
  if ev and /#{Regexp.quote(ev)}$/ =~ pre
    pre = $`
  end
  last_line(pre)
end

##
# Returns the last line of +src+

def last_line(src)
  if n = src.rindex("\n")
    src[(n+1) .. -1]
  else
    src
  end
end
private :last_line

##
# Returns words following an error

def next_words_on_error
  if n = @src.rest.index("\n")
    @src.rest[0 .. (n-1)]
  else
    @src.rest
  end
end

##
# Creates a new RDoc::RD::Inline for the +rdoc+ markup and the raw +reference+

def inline rdoc, reference = rdoc
  RDoc::RD::Inline.new rdoc, reference
end

# :stopdoc:
##### State transition tables begin ###

racc_action_table = [
   104,   103,   102,   100,   101,    99,   115,   116,   117,    29,
   105,   106,   107,   108,   109,   110,   111,   112,   113,   114,
    84,   118,   119,    63,    64,    65,    61,    81,    62,    76,
    78,    79,    85,    66,    67,    68,    69,    70,    71,    72,
    73,    74,    75,    77,    80,   149,    63,    64,    65,   153,
    81,    62,    76,    78,    79,    86,    66,    67,    68,    69,
    70,    71,    72,    73,    74,    75,    77,    80,   152,   104,
   103,   102,   100,   101,    99,   115,   116,   117,    87,   105,
   106,   107,   108,   109,   110,   111,   112,   113,   114,    88,
   118,   119,   104,   103,   102,   100,   101,    99,   115,   116,
   117,    89,   105,   106,   107,   108,   109,   110,   111,   112,
   113,   114,    96,   118,   119,   104,   103,   102,   100,   101,
    99,   115,   116,   117,   124,   105,   106,   107,   108,   109,
   110,   111,   112,   113,   114,   137,   118,   119,    22,    23,
    24,    25,    26,    21,    18,    19,   176,   177,    13,   148,
    14,   154,    15,   137,    16,   161,    17,   164,   173,    20,
    22,    23,    24,    25,    26,    21,    18,    19,   175,   177,
    13,   nil,    14,   nil,    15,   nil,    16,   nil,    17,   nil,
   nil,    20,    22,    23,    24,    25,    26,    21,    18,    19,
   nil,   nil,    13,   nil,    14,   nil,    15,   nil,    16,   nil,
    17,   nil,   nil,    20,    22,    23,    24,    25,    26,    21,
    18,    19,   nil,   nil,    13,   nil,    14,   nil,    15,   nil,
    16,   nil,    17,   nil,   nil,    20,    22,    23,    24,    25,
    26,    21,    18,    19,   nil,   nil,    13,   nil,    14,   nil,
    15,   nil,    16,   nil,    17,   nil,   nil,    20,    22,    23,
    24,    25,    26,    21,    18,    19,   nil,   nil,    13,   nil,
    14,   nil,    15,   nil,    16,   nil,    17,   nil,   nil,    20,
    22,    23,    24,    25,    26,    21,    18,    19,   nil,   nil,
    13,   nil,    14,   nil,    15,   nil,    16,   nil,    17,    42,
   nil,    20,    54,    38,    53,    55,    56,    57,   nil,    13,
   nil,    14,   nil,    15,   nil,    16,   nil,    17,   nil,   nil,
    20,    22,    23,    24,    25,    26,    21,    18,    19,   nil,
   nil,    13,   nil,    14,   nil,    15,   nil,    16,   nil,    17,
   nil,   nil,    20,    63,    64,    65,    61,    81,    62,    76,
    78,    79,   nil,    66,    67,    68,    69,    70,    71,    72,
    73,    74,    75,    77,    80,   122,   nil,   nil,    54,   nil,
    53,    55,    56,    57,   nil,    13,   nil,    14,   nil,    15,
   nil,    16,   nil,    17,   145,   nil,    20,    54,   133,    53,
    55,    56,    57,   nil,    13,   nil,    14,   nil,    15,   nil,
    16,   nil,    17,   145,   nil,    20,    54,   133,    53,    55,
    56,    57,   nil,    13,   nil,    14,   nil,    15,   nil,    16,
   nil,    17,   145,   nil,    20,    54,   133,    53,    55,    56,
    57,   nil,    13,   nil,    14,   nil,    15,   nil,    16,   nil,
    17,   145,   nil,    20,    54,   133,    53,    55,    56,    57,
   nil,    13,   nil,    14,   nil,    15,   nil,    16,   nil,    17,
   nil,   nil,    20,   135,   136,    54,   133,    53,    55,    56,
    57,   nil,    13,   nil,    14,   nil,    15,   nil,    16,   nil,
    17,   nil,   nil,    20,   135,   136,    54,   133,    53,    55,
    56,    57,   nil,    13,   nil,    14,   nil,    15,   nil,    16,
   nil,    17,   nil,   nil,    20,   135,   136,    54,   133,    53,
    55,    56,    57,   nil,    13,   nil,    14,   nil,    15,   nil,
    16,   nil,    17,    95,   nil,    20,    54,    91,    53,    55,
    56,    57,   145,   nil,   nil,    54,   133,    53,    55,    56,
    57,   158,   nil,   nil,    54,   nil,    53,    55,    56,    57,
   165,   135,   136,    54,   133,    53,    55,    56,    57,   145,
   nil,   nil,    54,   133,    53,    55,    56,    57,   172,   135,
   136,    54,   133,    53,    55,    56,    57,   174,   135,   136,
    54,   133,    53,    55,    56,    57,   178,   135,   136,    54,
   133,    53,    55,    56,    57,   135,   136,    54,   133,    53,
    55,    56,    57,   135,   136,    54,   133,    53,    55,    56,
    57,   135,   136,    54,   133,    53,    55,    56,    57,    22,
    23,    24,    25,    26,    21 ]

racc_action_check = [
    38,    38,    38,    38,    38,    38,    38,    38,    38,     1,
    38,    38,    38,    38,    38,    38,    38,    38,    38,    38,
    29,    38,    38,    59,    59,    59,    59,    59,    59,    59,
    59,    59,    31,    59,    59,    59,    59,    59,    59,    59,
    59,    59,    59,    59,    59,    59,    61,    61,    61,    61,
    61,    61,    61,    61,    61,    32,    61,    61,    61,    61,
    61,    61,    61,    61,    61,    61,    61,    61,    61,    91,
    91,    91,    91,    91,    91,    91,    91,    91,    33,    91,
    91,    91,    91,    91,    91,    91,    91,    91,    91,    34,
    91,    91,    97,    97,    97,    97,    97,    97,    97,    97,
    97,    35,    97,    97,    97,    97,    97,    97,    97,    97,
    97,    97,    37,    97,    97,   155,   155,   155,   155,   155,
   155,   155,   155,   155,    41,   155,   155,   155,   155,   155,
   155,   155,   155,   155,   155,    43,   155,   155,     0,     0,
     0,     0,     0,     0,     0,     0,   165,   165,     0,    58,
     0,    90,     0,    94,     0,   100,     0,   125,   162,     0,
     2,     2,     2,     2,     2,     2,     2,     2,   164,   172,
     2,   nil,     2,   nil,     2,   nil,     2,   nil,     2,   nil,
   nil,     2,    13,    13,    13,    13,    13,    13,    13,    13,
   nil,   nil,    13,   nil,    13,   nil,    13,   nil,    13,   nil,
    13,   nil,   nil,    13,    14,    14,    14,    14,    14,    14,
    14,    14,   nil,   nil,    14,   nil,    14,   nil,    14,   nil,
    14,   nil,    14,   nil,   nil,    14,    15,    15,    15,    15,
    15,    15,    15,    15,   nil,   nil,    15,   nil,    15,   nil,
    15,   nil,    15,   nil,    15,   nil,   nil,    15,    16,    16,
    16,    16,    16,    16,    16,    16,   nil,   nil,    16,   nil,
    16,   nil,    16,   nil,    16,   nil,    16,   nil,   nil,    16,
    17,    17,    17,    17,    17,    17,    17,    17,   nil,   nil,
    17,   nil,    17,   nil,    17,   nil,    17,   nil,    17,    18,
   nil,    17,    18,    18,    18,    18,    18,    18,   nil,    18,
   nil,    18,   nil,    18,   nil,    18,   nil,    18,   nil,   nil,
    18,    19,    19,    19,    19,    19,    19,    19,    19,   nil,
   nil,    19,   nil,    19,   nil,    19,   nil,    19,   nil,    19,
   nil,   nil,    19,    20,    20,    20,    20,    20,    20,    20,
    20,    20,   nil,    20,    20,    20,    20,    20,    20,    20,
    20,    20,    20,    20,    20,    39,   nil,   nil,    39,   nil,
    39,    39,    39,    39,   nil,    39,   nil,    39,   nil,    39,
   nil,    39,   nil,    39,    44,   nil,    39,    44,    44,    44,
    44,    44,    44,   nil,    44,   nil,    44,   nil,    44,   nil,
    44,   nil,    44,    45,   nil,    44,    45,    45,    45,    45,
    45,    45,   nil,    45,   nil,    45,   nil,    45,   nil,    45,
   nil,    45,   138,   nil,    45,   138,   138,   138,   138,   138,
   138,   nil,   138,   nil,   138,   nil,   138,   nil,   138,   nil,
   138,   146,   nil,   138,   146,   146,   146,   146,   146,   146,
   nil,   146,   nil,   146,   nil,   146,   nil,   146,   nil,   146,
   nil,   nil,   146,    42,    42,    42,    42,    42,    42,    42,
    42,   nil,    42,   nil,    42,   nil,    42,   nil,    42,   nil,
    42,   nil,   nil,    42,   122,   122,   122,   122,   122,   122,
   122,   122,   nil,   122,   nil,   122,   nil,   122,   nil,   122,
   nil,   122,   nil,   nil,   122,   127,   127,   127,   127,   127,
   127,   127,   127,   nil,   127,   nil,   127,   nil,   127,   nil,
   127,   nil,   127,    36,   nil,   127,    36,    36,    36,    36,
    36,    36,    52,   nil,   nil,    52,    52,    52,    52,    52,
    52,    92,   nil,   nil,    92,   nil,    92,    92,    92,    92,
   126,   126,   126,   126,   126,   126,   126,   126,   126,   142,
   nil,   nil,   142,   142,   142,   142,   142,   142,   159,   159,
   159,   159,   159,   159,   159,   159,   159,   163,   163,   163,
   163,   163,   163,   163,   163,   163,   171,   171,   171,   171,
   171,   171,   171,   171,   171,    95,    95,    95,    95,    95,
    95,    95,    95,   158,   158,   158,   158,   158,   158,   158,
   158,   168,   168,   168,   168,   168,   168,   168,   168,    27,
    27,    27,    27,    27,    27 ]

racc_action_pointer = [
   135,     9,   157,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,   179,   201,   223,   245,   267,   286,   308,
   330,   nil,   nil,   nil,   nil,   nil,   nil,   606,   nil,    20,
   nil,    18,    39,    60,    69,    79,   510,    89,    -3,   352,
   nil,   120,   449,   130,   371,   390,   nil,   nil,   nil,   nil,
   nil,   nil,   519,   nil,   nil,   nil,   nil,   nil,   138,    20,
   nil,    43,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   128,    66,   528,   nil,   148,   581,   nil,    89,   nil,   nil,
   149,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   470,   nil,   nil,   154,   537,   491,   nil,   nil,
   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   409,   nil,
   nil,   nil,   546,   nil,   nil,   nil,   428,   nil,   nil,   nil,
   nil,   nil,   nil,   nil,   nil,   112,   nil,   nil,   589,   555,
   nil,   nil,   155,   564,   164,   142,   nil,   nil,   597,   nil,
   nil,   573,   164,   nil,   nil,   nil,   nil,   nil,   nil ]

racc_action_default = [
  -138,  -138,    -1,    -3,    -4,    -5,    -6,    -7,    -8,    -9,
   -10,   -11,   -12,  -138,  -138,  -138,  -138,  -138,  -138,  -138,
  -138,  -103,  -104,  -105,  -106,  -107,  -108,  -111,  -110,  -138,
    -2,  -138,  -138,  -138,  -138,  -138,  -138,  -138,  -138,   -27,
   -26,   -35,  -138,   -58,   -41,   -40,   -47,   -48,   -49,   -50,
   -51,   -52,   -63,   -66,   -67,   -68,   -69,   -70,  -138,  -138,
  -112,  -138,  -116,  -117,  -118,  -119,  -120,  -121,  -122,  -123,
  -124,  -125,  -126,  -127,  -128,  -129,  -130,  -131,  -132,  -133,
  -134,  -135,  -137,  -109,   179,   -13,   -14,   -15,   -16,   -17,
  -138,  -138,   -23,   -22,   -33,  -138,   -19,   -24,   -79,   -80,
  -138,   -82,   -83,   -84,   -85,   -86,   -87,   -88,   -89,   -90,
   -91,   -92,   -93,   -94,   -95,   -96,   -97,   -98,   -99,  -100,
   -25,   -35,  -138,   -58,   -28,  -138,   -59,   -42,   -46,   -55,
   -56,   -65,   -71,   -72,   -75,   -76,   -77,   -31,   -38,   -44,
   -53,   -54,   -57,   -61,   -73,   -74,   -39,   -62,  -101,  -102,
  -136,  -113,  -114,  -115,   -18,   -20,   -21,   -33,  -138,  -138,
   -78,   -81,  -138,   -59,   -36,   -37,   -64,   -45,   -59,   -43,
   -60,  -138,   -34,   -36,   -37,   -29,   -30,   -32,   -34 ]

racc_goto_table = [
   126,    44,   125,    43,   144,   144,   160,    93,    97,    52,
   166,    82,   144,    40,    41,    39,   138,   146,   169,    30,
    36,    94,    44,     1,   123,   129,   169,    52,    90,    37,
    52,   167,   147,    92,   120,   121,    31,    32,    33,    34,
    35,   170,    58,   166,    59,    83,   170,   166,   151,   nil,
   150,   nil,   166,   159,     4,   166,     4,   nil,   nil,   nil,
   nil,   155,   nil,   156,   160,   nil,   nil,     4,     4,     4,
     4,     4,   nil,     4,     5,   nil,     5,   157,   nil,   nil,
   163,   nil,   162,    52,   nil,   168,   nil,     5,     5,     5,
     5,     5,   nil,     5,   nil,   nil,   nil,   nil,   144,   nil,
   nil,   nil,   144,   nil,   nil,   129,   144,   144,   nil,     6,
   129,     6,   nil,   nil,   nil,   nil,   171,     7,   nil,     7,
   nil,   nil,     6,     6,     6,     6,     6,     8,     6,     8,
     7,     7,     7,     7,     7,    11,     7,    11,   nil,   nil,
     8,     8,     8,     8,     8,   nil,     8,   nil,    11,    11,
    11,    11,    11,   nil,    11 ]

racc_goto_check = [
    22,    24,    21,    23,    36,    36,    37,    18,    16,    34,
    35,    41,    36,    19,    20,    17,    25,    25,    28,     3,
    13,    23,    24,     1,    23,    24,    28,    34,    14,    15,
    34,    29,    32,    17,    19,    20,     1,     1,     1,     1,
     1,    33,     1,    35,    38,    39,    33,    35,    42,   nil,
    41,   nil,    35,    22,     4,    35,     4,   nil,   nil,   nil,
   nil,    16,   nil,    18,    37,   nil,   nil,     4,     4,     4,
     4,     4,   nil,     4,     5,   nil,     5,    23,   nil,   nil,
    22,   nil,    21,    34,   nil,    22,   nil,     5,     5,     5,
     5,     5,   nil,     5,   nil,   nil,   nil,   nil,    36,   nil,
   nil,   nil,    36,   nil,   nil,    24,    36,    36,   nil,     6,
    24,     6,   nil,   nil,   nil,   nil,    22,     7,   nil,     7,
   nil,   nil,     6,     6,     6,     6,     6,     8,     6,     8,
     7,     7,     7,     7,     7,    11,     7,    11,   nil,   nil,
     8,     8,     8,     8,     8,   nil,     8,   nil,    11,    11,
    11,    11,    11,   nil,    11 ]

racc_goto_pointer = [
   nil,    23,   nil,    17,    54,    74,   109,   117,   127,   nil,
   nil,   135,   nil,     2,    -8,    11,   -30,    -3,   -29,    -5,
    -4,   -40,   -42,   -15,   -17,   -28,   nil,   nil,  -120,   -96,
   nil,   nil,   -20,  -101,    -9,  -116,   -40,   -91,    24,    18,
   nil,    -9,   -13 ]

racc_goto_default = [
   nil,   nil,     2,     3,    46,    47,    48,    49,    50,     9,
    10,    51,    12,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,   nil,   140,   nil,    45,   127,   139,   128,
   141,   130,   142,   143,   132,   131,   134,    98,   nil,    28,
    27,   nil,    60 ]

racc_reduce_table = [
  0, 0, :racc_error,
  1, 27, :_reduce_none,
  2, 28, :_reduce_2,
  1, 28, :_reduce_3,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  1, 29, :_reduce_none,
  3, 30, :_reduce_13,
  3, 31, :_reduce_14,
  3, 32, :_reduce_15,
  3, 33, :_reduce_16,
  3, 34, :_reduce_17,
  4, 35, :_reduce_18,
  3, 35, :_reduce_19,
  2, 40, :_reduce_20,
  2, 40, :_reduce_21,
  1, 40, :_reduce_22,
  1, 40, :_reduce_23,
  2, 41, :_reduce_24,
  2, 41, :_reduce_25,
  1, 41, :_reduce_26,
  1, 41, :_reduce_27,
  2, 39, :_reduce_none,
  4, 39, :_reduce_29,
  4, 39, :_reduce_30,
  2, 43, :_reduce_31,
  4, 43, :_reduce_32,
  1, 44, :_reduce_33,
  3, 44, :_reduce_34,
  1, 45, :_reduce_none,
  3, 45, :_reduce_36,
  3, 45, :_reduce_37,
  2, 46, :_reduce_38,
  2, 46, :_reduce_39,
  1, 46, :_reduce_40,
  1, 46, :_reduce_41,
  1, 47, :_reduce_none,
  2, 51, :_reduce_43,
  1, 51, :_reduce_44,
  2, 53, :_reduce_45,
  1, 53, :_reduce_46,
  1, 50, :_reduce_none,
  1, 50, :_reduce_none,
  1, 50, :_reduce_none,
  1, 50, :_reduce_none,
  1, 50, :_reduce_none,
  1, 50, :_reduce_none,
  1, 54, :_reduce_none,
  1, 54, :_reduce_none,
  1, 55, :_reduce_none,
  1, 55, :_reduce_none,
  1, 56, :_reduce_57,
  1, 52, :_reduce_58,
  1, 57, :_reduce_59,
  2, 58, :_reduce_60,
  1, 58, :_reduce_none,
  2, 49, :_reduce_62,
  1, 49, :_reduce_none,
  2, 48, :_reduce_64,
  1, 48, :_reduce_none,
  1, 60, :_reduce_none,
  1, 60, :_reduce_none,
  1, 60, :_reduce_none,
  1, 60, :_reduce_none,
  1, 60, :_reduce_none,
  1, 62, :_reduce_none,
  1, 62, :_reduce_none,
  1, 59, :_reduce_none,
  1, 59, :_reduce_none,
  1, 61, :_reduce_none,
  1, 61, :_reduce_none,
  1, 61, :_reduce_none,
  2, 42, :_reduce_78,
  1, 42, :_reduce_none,
  1, 63, :_reduce_none,
  2, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  1, 63, :_reduce_none,
  3, 36, :_reduce_101,
  3, 37, :_reduce_102,
  1, 65, :_reduce_none,
  1, 65, :_reduce_none,
  1, 65, :_reduce_none,
  1, 65, :_reduce_none,
  1, 65, :_reduce_none,
  1, 65, :_reduce_none,
  2, 66, :_reduce_109,
  1, 66, :_reduce_none,
  1, 38, :_reduce_111,
  1, 67, :_reduce_none,
  2, 67, :_reduce_113,
  2, 67, :_reduce_114,
  2, 67, :_reduce_115,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  1, 68, :_reduce_none,
  2, 64, :_reduce_136,
  1, 64, :_reduce_none ]

racc_reduce_n = 138

racc_shift_n = 179

racc_token_table = {
  false => 0,
  :error => 1,
  :EX_LOW => 2,
  :QUOTE => 3,
  :BAR => 4,
  :SLASH => 5,
  :BACK_SLASH => 6,
  :URL => 7,
  :OTHER => 8,
  :REF_OPEN => 9,
  :FOOTNOTE_OPEN => 10,
  :FOOTNOTE_CLOSE => 11,
  :EX_HIGH => 12,
  :EM_OPEN => 13,
  :EM_CLOSE => 14,
  :CODE_OPEN => 15,
  :CODE_CLOSE => 16,
  :VAR_OPEN => 17,
  :VAR_CLOSE => 18,
  :KBD_OPEN => 19,
  :KBD_CLOSE => 20,
  :INDEX_OPEN => 21,
  :INDEX_CLOSE => 22,
  :REF_CLOSE => 23,
  :VERB_OPEN => 24,
  :VERB_CLOSE => 25 }

racc_nt_base = 26

racc_use_result_var = true

Racc_arg = [
  racc_action_table,
  racc_action_check,
  racc_action_default,
  racc_action_pointer,
  racc_goto_table,
  racc_goto_check,
  racc_goto_default,
  racc_goto_pointer,
  racc_nt_base,
  racc_reduce_table,
  racc_token_table,
  racc_shift_n,
  racc_reduce_n,
  racc_use_result_var ]

Racc_token_to_s_table = [
  "$end",
  "error",
  "EX_LOW",
  "QUOTE",
  "BAR",
  "SLASH",
  "BACK_SLASH",
  "URL",
  "OTHER",
  "REF_OPEN",
  "FOOTNOTE_OPEN",
  "FOOTNOTE_CLOSE",
  "EX_HIGH",
  "EM_OPEN",
  "EM_CLOSE",
  "CODE_OPEN",
  "CODE_CLOSE",
  "VAR_OPEN",
  "VAR_CLOSE",
  "KBD_OPEN",
  "KBD_CLOSE",
  "INDEX_OPEN",
  "INDEX_CLOSE",
  "REF_CLOSE",
  "VERB_OPEN",
  "VERB_CLOSE",
  "$start",
  "content",
  "elements",
  "element",
  "emphasis",
  "code",
  "var",
  "keyboard",
  "index",
  "reference",
  "footnote",
  "verb",
  "normal_str_ele",
  "substitute",
  "ref_label",
  "ref_label2",
  "ref_url_strings",
  "filename",
  "element_label",
  "element_label2",
  "ref_subst_content",
  "ref_subst_content_q",
  "ref_subst_strings_q",
  "ref_subst_strings_first",
  "ref_subst_ele2",
  "ref_subst_eles",
  "ref_subst_str_ele_first",
  "ref_subst_eles_q",
  "ref_subst_ele",
  "ref_subst_ele_q",
  "ref_subst_str_ele",
  "ref_subst_str_ele_q",
  "ref_subst_strings",
  "ref_subst_string3",
  "ref_subst_string",
  "ref_subst_string_q",
  "ref_subst_string2",
  "ref_url_string",
  "verb_strings",
  "normal_string",
  "normal_strings",
  "verb_string",
  "verb_normal_string" ]

Racc_debug_parser = false

##### State transition tables end #####

# reduce 0 omitted

# reduce 1 omitted

def _reduce_2(val, _values, result)
 result.append val[1]
    result
end

def _reduce_3(val, _values, result)
 result = val[0]
    result
end

# reduce 4 omitted

# reduce 5 omitted

# reduce 6 omitted

# reduce 7 omitted

# reduce 8 omitted

# reduce 9 omitted

# reduce 10 omitted

# reduce 11 omitted

# reduce 12 omitted

def _reduce_13(val, _values, result)
      content = val[1]
      result = inline "<em>#{content}</em>", content

    result
end

def _reduce_14(val, _values, result)
      content = val[1]
      result = inline "<code>#{content}</code>", content

    result
end

def _reduce_15(val, _values, result)
      content = val[1]
      result = inline "+#{content}+", content

    result
end

def _reduce_16(val, _values, result)
      content = val[1]
      result = inline "<tt>#{content}</tt>", content

    result
end

def _reduce_17(val, _values, result)
      label = val[1]
      @block_parser.add_label label.reference
      result = "<span id=\"label-#{label}\">#{label}</span>"

    result
end

def _reduce_18(val, _values, result)
      result = "{#{val[1]}}[#{val[2].join}]"

    result
end

def _reduce_19(val, _values, result)
      scheme, inline = val[1]

      result = "{#{inline}}[#{scheme}#{inline.reference}]"

    result
end

def _reduce_20(val, _values, result)
      result = [nil, inline(val[1])]

    result
end

def _reduce_21(val, _values, result)
      result = [
        'rdoc-label:',
        inline("#{val[0].reference}/#{val[1].reference}")
      ]

    result
end

def _reduce_22(val, _values, result)
      result = ['rdoc-label:', val[0].reference]

    result
end

def _reduce_23(val, _values, result)
      result = ['rdoc-label:', "#{val[0].reference}/"]

    result
end

def _reduce_24(val, _values, result)
      result = [nil, inline(val[1])]

    result
end

def _reduce_25(val, _values, result)
      result = [
        'rdoc-label:',
        inline("#{val[0].reference}/#{val[1].reference}")
      ]

    result
end

def _reduce_26(val, _values, result)
      result = ['rdoc-label:', val[0]]

    result
end

def _reduce_27(val, _values, result)
      ref = val[0].reference
      result = ['rdoc-label:', inline(ref, "#{ref}/")]

    result
end

# reduce 28 omitted

def _reduce_29(val, _values, result)
 result = val[1]
    result
end

def _reduce_30(val, _values, result)
 result = val[1]
    result
end

def _reduce_31(val, _values, result)
      result = inline val[0]

    result
end

def _reduce_32(val, _values, result)
      result = inline "\"#{val[1]}\""

    result
end

def _reduce_33(val, _values, result)
      result = inline val[0]

    result
end

def _reduce_34(val, _values, result)
      result = inline "\"#{val[1]}\""

    result
end

# reduce 35 omitted

def _reduce_36(val, _values, result)
 result = val[1]
    result
end

def _reduce_37(val, _values, result)
 result = inline val[1]
    result
end

def _reduce_38(val, _values, result)
      result = val[0].append val[1]

    result
end

def _reduce_39(val, _values, result)
      result = val[0].append val[1]

    result
end

def _reduce_40(val, _values, result)
      result = val[0]

    result
end

def _reduce_41(val, _values, result)
      result = inline val[0]

    result
end

# reduce 42 omitted

def _reduce_43(val, _values, result)
      result = val[0].append val[1]

    result
end

def _reduce_44(val, _values, result)
      result = inline val[0]

    result
end

def _reduce_45(val, _values, result)
      result = val[0].append val[1]

    result
end

def _reduce_46(val, _values, result)
      result = val[0]

    result
end

# reduce 47 omitted

# reduce 48 omitted

# reduce 49 omitted

# reduce 50 omitted

# reduce 51 omitted

# reduce 52 omitted

# reduce 53 omitted

# reduce 54 omitted

# reduce 55 omitted

# reduce 56 omitted

def _reduce_57(val, _values, result)
      result = val[0]

    result
end

def _reduce_58(val, _values, result)
      result = inline val[0]

    result
end

def _reduce_59(val, _values, result)
      result = inline val[0]

    result
end

def _reduce_60(val, _values, result)
 result << val[1]
    result
end

# reduce 61 omitted

def _reduce_62(val, _values, result)
      result << val[1]

    result
end

# reduce 63 omitted

def _reduce_64(val, _values, result)
      result << val[1]

    result
end

# reduce 65 omitted

# reduce 66 omitted

# reduce 67 omitted

# reduce 68 omitted

# reduce 69 omitted

# reduce 70 omitted

# reduce 71 omitted

# reduce 72 omitted

# reduce 73 omitted

# reduce 74 omitted

# reduce 75 omitted

# reduce 76 omitted

# reduce 77 omitted

def _reduce_78(val, _values, result)
 result << val[1]
    result
end

# reduce 79 omitted

# reduce 80 omitted

# reduce 81 omitted

# reduce 82 omitted

# reduce 83 omitted

# reduce 84 omitted

# reduce 85 omitted

# reduce 86 omitted

# reduce 87 omitted

# reduce 88 omitted

# reduce 89 omitted

# reduce 90 omitted

# reduce 91 omitted

# reduce 92 omitted

# reduce 93 omitted

# reduce 94 omitted

# reduce 95 omitted

# reduce 96 omitted

# reduce 97 omitted

# reduce 98 omitted

# reduce 99 omitted

# reduce 100 omitted

def _reduce_101(val, _values, result)
      index = @block_parser.add_footnote val[1].rdoc
      result = "{*#{index}}[rdoc-label:foottext-#{index}:footmark-#{index}]"

    result
end

def _reduce_102(val, _values, result)
      result = inline "<tt>#{val[1]}</tt>", val[1]

    result
end

# reduce 103 omitted

# reduce 104 omitted

# reduce 105 omitted

# reduce 106 omitted

# reduce 107 omitted

# reduce 108 omitted

def _reduce_109(val, _values, result)
 result << val[1]
    result
end

# reduce 110 omitted

def _reduce_111(val, _values, result)
      result = inline val[0]

    result
end

# reduce 112 omitted

def _reduce_113(val, _values, result)
 result = val[1]
    result
end

def _reduce_114(val, _values, result)
 result = val[1]
    result
end

def _reduce_115(val, _values, result)
 result = val[1]
    result
end

# reduce 116 omitted

# reduce 117 omitted

# reduce 118 omitted

# reduce 119 omitted

# reduce 120 omitted

# reduce 121 omitted

# reduce 122 omitted

# reduce 123 omitted

# reduce 124 omitted

# reduce 125 omitted

# reduce 126 omitted

# reduce 127 omitted

# reduce 128 omitted

# reduce 129 omitted

# reduce 130 omitted

# reduce 131 omitted

# reduce 132 omitted

# reduce 133 omitted

# reduce 134 omitted

# reduce 135 omitted

def _reduce_136(val, _values, result)
 result << val[1]
    result
end

# reduce 137 omitted

def _reduce_none(val, _values, result)
  val[0]
end

end   # class InlineParser

end
PKAH[k����X�X8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/block_parser.rbnu�[���# frozen_string_literal: true
#
# DO NOT MODIFY!!!!
# This file is automatically generated by Racc 1.4.16
# from Racc grammar file "".
#

require 'racc/parser.rb'

class RDoc::RD

##
# RD format parser for headings, paragraphs, lists, verbatim sections that
# exist as blocks.

class BlockParser < Racc::Parser


# :stopdoc:

TMPFILE = ["rdtmp", $$, 0]

MARK_TO_LEVEL = {
  '='    => 1,
  '=='   => 2,
  '==='  => 3,
  '====' => 4,
  '+'    => 5,
  '++'   => 6,
}

# :startdoc:

##
# Footnotes for this document

attr_reader :footnotes

##
# Labels for items in this document

attr_reader :labels

##
# Path to find included files in

attr_accessor :include_path

##
# Creates a new RDoc::RD::BlockParser.  Use #parse to parse an rd-format
# document.

def initialize
  @inline_parser = RDoc::RD::InlineParser.new self
  @include_path = []

  # for testing
  @footnotes = []
  @labels    = {}
end

##
# Parses +src+ and returns an RDoc::Markup::Document.

def parse src
  @src = src
  @src.push false

  @footnotes = []
  @labels    = {}

  # @i: index(line no.) of src
  @i = 0

  # stack for current indentation
  @indent_stack = []

  # how indented.
  @current_indent = @indent_stack.join("")

  # RDoc::RD::BlockParser for tmp src
  @subparser = nil

  # which part is in now
  @in_part = nil
  @part_content = []

  @in_verbatim = false

  @yydebug = true

  document = do_parse

  unless @footnotes.empty? then
    blankline = document.parts.pop

    document.parts << RDoc::Markup::Rule.new(1)
    document.parts.concat @footnotes

    document.parts.push blankline
  end

  document
end

##
# Returns the next token from the document

def next_token # :nodoc:
  # preprocessing
  # if it is not in RD part
  # => method
  while @in_part != "rd"
    line = @src[@i]
    @i += 1 # next line

    case line
    # src end
    when false
      return [false, false]
    # RD part begin
    when /^=begin\s*(?:\bRD\b.*)?\s*$/
      if @in_part # if in non-RD part
        @part_content.push(line)
      else
        @in_part = "rd"
        return [:WHITELINE, "=begin\n"] # <= for textblockand
      end
    # non-RD part begin
    when /^=begin\s+(\w+)/
      part = $1
      if @in_part # if in non-RD part
        @part_content.push(line)
      else
        @in_part = part if @tree.filter[part] # if filter exists
#  p "BEGIN_PART: #{@in_part}" # DEBUG
      end
    # non-RD part end
    when /^=end/
      if @in_part # if in non-RD part
#  p "END_PART: #{@in_part}" # DEBUG
        # make Part-in object
        part = RDoc::RD::Part.new(@part_content.join(""), @tree, "r")
        @part_content.clear
        # call filter, part_out is output(Part object)
        part_out = @tree.filter[@in_part].call(part)

        if @tree.filter[@in_part].mode == :rd # if output is RD formatted
          subtree = parse_subtree(part_out.to_a)
        else # if output is target formatted
          basename = TMPFILE.join('.')
          TMPFILE[-1] += 1
          tmpfile = open(@tree.tmp_dir + "/" + basename + ".#{@in_part}", "w")
          tmpfile.print(part_out)
          tmpfile.close
          subtree = parse_subtree(["=begin\n", "<<< #{basename}\n", "=end\n"])
        end
        @in_part = nil
        return [:SUBTREE, subtree]
      end
    else
      if @in_part # if in non-RD part
        @part_content.push(line)
      end
    end
  end

  @current_indent = @indent_stack.join("")
  line = @src[@i]
  case line
  when false
    if_current_indent_equal("") do
      [false, false]
    end
  when /^=end/
    if_current_indent_equal("") do
      @in_part = nil
      [:WHITELINE, "=end"] # MUST CHANGE??
    end
  when /^\s*$/
    @i += 1 # next line
    return [:WHITELINE, ':WHITELINE']
  when /^\#/  # comment line
    @i += 1 # next line
    self.next_token()
  when /^(={1,4})(?!=)\s*(?=\S)/, /^(\+{1,2})(?!\+)\s*(?=\S)/
    rest = $'                    # '
    rest.strip!
    mark = $1
    if_current_indent_equal("") do
      return [:HEADLINE, [MARK_TO_LEVEL[mark], rest]]
    end
  when /^<<<\s*(\S+)/
    file = $1
    if_current_indent_equal("") do
      suffix = file[-3 .. -1]
      if suffix == ".rd" or suffix == ".rb"
        subtree = parse_subtree(get_included(file))
        [:SUBTREE, subtree]
      else
        [:INCLUDE, file]
      end
    end
  when /^(\s*)\*(\s*)/
    rest = $'                   # '
    newIndent = $2
    if_current_indent_equal($1) do
      if @in_verbatim
        [:STRINGLINE, line]
      else
        @indent_stack.push("\s" + newIndent)
        [:ITEMLISTLINE, rest]
      end
    end
  when /^(\s*)(\(\d+\))(\s*)/
    rest = $'                     # '
    mark = $2
    newIndent = $3
    if_current_indent_equal($1) do
      if @in_verbatim
        [:STRINGLINE, line]
      else
        @indent_stack.push("\s" * mark.size + newIndent)
        [:ENUMLISTLINE, rest]
      end
    end
  when /^(\s*):(\s*)/
    rest = $'                    # '
    newIndent = $2
    if_current_indent_equal($1) do
      if @in_verbatim
        [:STRINGLINE, line]
      else
        @indent_stack.push("\s#{$2}")
        [:DESCLISTLINE, rest]
      end
    end
  when /^(\s*)---(?!-|\s*$)/
    indent = $1
    rest = $'
    /\s*/ === rest
    term = $'
    new_indent = $&
    if_current_indent_equal(indent) do
      if @in_verbatim
        [:STRINGLINE, line]
      else
        @indent_stack.push("\s\s\s" + new_indent)
        [:METHODLISTLINE, term]
      end
    end
  when /^(\s*)/
    if_current_indent_equal($1) do
      [:STRINGLINE, line]
    end
  else
    raise "[BUG] parsing error may occurred."
  end
end

##
# Yields to the given block if +indent+ matches the current indent, otherwise
# an indentation token is processed.

def if_current_indent_equal(indent)
  indent = indent.sub(/\t/, "\s" * 8)
  if @current_indent == indent
    @i += 1 # next line
    yield
  elsif indent.index(@current_indent) == 0
    @indent_stack.push(indent[@current_indent.size .. -1])
    [:INDENT, ":INDENT"]
  else
    @indent_stack.pop
    [:DEDENT, ":DEDENT"]
  end
end
private :if_current_indent_equal

##
# Cuts off excess whitespace in +src+

def cut_off(src)
  ret = []
  whiteline_buf = []

  line = src.shift
  /^\s*/ =~ line

  indent = Regexp.quote($&)
  ret.push($')

  while line = src.shift
    if /^(\s*)$/ =~ line
      whiteline_buf.push(line)
    elsif /^#{indent}/ =~ line
      unless whiteline_buf.empty?
        ret.concat(whiteline_buf)
        whiteline_buf.clear
      end
      ret.push($')
    else
      raise "[BUG]: probably Parser Error while cutting off.\n"
    end
  end
  ret
end
private :cut_off

def set_term_to_element(parent, term)
#  parent.set_term_under_document_struct(term, @tree.document_struct)
  parent.set_term_without_document_struct(term)
end
private :set_term_to_element

##
# Raises a ParseError when invalid formatting is found

def on_error(et, ev, _values)
  prv, cur, nxt = format_line_num(@i, @i+1, @i+2)

  raise ParseError, <<Msg

RD syntax error: line #{@i+1}:
  #{prv}  |#{@src[@i-1].chomp}
  #{cur}=>|#{@src[@i].chomp}
  #{nxt}  |#{@src[@i+1].chomp}

Msg
end

##
# Current line number

def line_index
  @i
end

##
# Parses subtree +src+

def parse_subtree src
  @subparser ||= RDoc::RD::BlockParser.new

  @subparser.parse src
end
private :parse_subtree

##
# Retrieves the content for +file+ from the include_path

def get_included(file)
  included = []

  @include_path.each do |dir|
    file_name = File.join dir, file

    if File.exist? file_name then
      included = IO.readlines file_name
      break
    end
  end

  included
end
private :get_included

##
# Formats line numbers +line_numbers+ prettily

def format_line_num(*line_numbers)
  width = line_numbers.collect{|i| i.to_s.length }.max
  line_numbers.collect{|i| sprintf("%#{width}d", i) }
end
private :format_line_num

##
# Retrieves the content of +values+ as a single String

def content values
 values.map { |value| value.content }.join
end

##
# Creates a paragraph for +value+

def paragraph value
  content = cut_off(value).join(' ').rstrip
  contents = @inline_parser.parse content

  RDoc::Markup::Paragraph.new(*contents)
end

##
# Adds footnote +content+ to the document

def add_footnote content
  index = @footnotes.length / 2 + 1

  footmark_link = "{^#{index}}[rdoc-label:footmark-#{index}:foottext-#{index}]"

  @footnotes << RDoc::Markup::Paragraph.new(footmark_link, ' ', *content)
  @footnotes << RDoc::Markup::BlankLine.new

  index
end

##
# Adds label +label+ to the document

def add_label label
  @labels[label] = true

  label
end

# :stopdoc:

##### State transition tables begin ###

racc_action_table = [
    34,    35,    30,    33,    40,    34,    35,    30,    33,    40,
    65,    34,    35,    30,    33,    14,    73,    36,    38,    34,
    15,    88,    34,    35,    30,    33,    14,     9,    10,    11,
    12,    15,    34,    35,    30,    33,    14,     9,    10,    11,
    12,    15,    34,    35,    30,    33,    35,    47,    30,    54,
    33,    15,    34,    35,    30,    33,    54,    47,    14,    14,
    59,    15,    34,    35,    30,    33,    14,    73,    67,    76,
    77,    15,    34,    35,    30,    33,    14,    73,    54,    81,
    38,    15,    34,    35,    30,    33,    14,    73,    38,    40,
    83,    15,    34,    35,    30,    33,    14,    73,   nil,   nil,
   nil,    15,    34,    35,    30,    33,    14,    73,   nil,   nil,
   nil,    15,    34,    35,    30,    33,    14,    73,   nil,   nil,
   nil,    15,    34,    35,    30,    33,    14,    73,   nil,   nil,
   nil,    15,    34,    35,    30,    33,    14,    73,   nil,   nil,
   nil,    15,    34,    35,    30,    33,    14,    73,    61,    63,
   nil,    15,    14,    62,    60,    61,    63,    79,    61,    63,
    62,    87,   nil,    62,    34,    35,    30,    33 ]

racc_action_check = [
    41,    41,    41,    41,    41,    15,    15,    15,    15,    15,
    41,    86,    86,    86,    86,    86,    86,     1,    13,    22,
    86,    86,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,    24,    24,    24,    24,    25,    24,    28,    30,
    31,    24,    27,    27,    27,    27,    33,    27,    34,    35,
    36,    27,    45,    45,    45,    45,    45,    45,    44,    49,
    51,    45,    46,    46,    46,    46,    46,    46,    54,    56,
    57,    46,    47,    47,    47,    47,    47,    47,    58,    62,
    66,    47,    68,    68,    68,    68,    68,    68,   nil,   nil,
   nil,    68,    74,    74,    74,    74,    74,    74,   nil,   nil,
   nil,    74,    75,    75,    75,    75,    75,    75,   nil,   nil,
   nil,    75,    78,    78,    78,    78,    78,    78,   nil,   nil,
   nil,    78,    79,    79,    79,    79,    79,    79,   nil,   nil,
   nil,    79,    85,    85,    85,    85,    85,    85,    39,    39,
   nil,    85,    52,    39,    39,    82,    82,    52,    64,    64,
    82,    82,   nil,    64,    20,    20,    20,    20 ]

racc_action_pointer = [
    19,    17,    29,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
   nil,   nil,   nil,    11,   nil,     2,   nil,   nil,   nil,   nil,
   161,   nil,    16,   nil,    39,    42,   nil,    49,    43,   nil,
    41,    44,   nil,    48,    51,    52,    60,   nil,   nil,   141,
   nil,    -3,   nil,   nil,    55,    59,    69,    79,   nil,    56,
   nil,    57,   145,   nil,    70,   nil,    66,    73,    81,   nil,
   nil,   nil,    82,   nil,   151,   nil,    77,   nil,    89,   nil,
   nil,   nil,   nil,   nil,    99,   109,   nil,   nil,   119,   129,
   nil,   nil,   148,   nil,   nil,   139,     8,   nil,   nil ]

racc_action_default = [
    -2,   -73,    -1,    -4,    -5,    -6,    -7,    -8,    -9,   -10,
   -11,   -12,   -13,   -14,   -16,   -73,   -23,   -24,   -25,   -26,
   -27,   -31,   -32,   -34,   -72,   -36,   -38,   -72,   -40,   -42,
   -59,   -44,   -46,   -59,   -63,   -65,   -73,    -3,   -15,   -73,
   -22,   -73,   -30,   -33,   -73,   -69,   -70,   -71,   -37,   -73,
   -41,   -73,   -51,   -58,   -61,   -45,   -73,   -62,   -64,    89,
   -17,   -19,   -73,   -21,   -18,   -28,   -73,   -35,   -66,   -53,
   -54,   -55,   -56,   -57,   -67,   -68,   -39,   -43,   -49,   -73,
   -60,   -47,   -73,   -29,   -52,   -48,   -73,   -20,   -50 ]

racc_goto_table = [
     4,    39,     4,    68,    74,    75,     5,     6,     5,     6,
    44,    42,    51,    49,     3,    56,    37,    57,    58,     1,
     2,    66,    84,    41,    43,    48,    50,    64,    84,    84,
    45,    46,    42,    45,    46,    55,    85,    86,    80,    84,
    84,   nil,   nil,   nil,   nil,   nil,   nil,   nil,    82,   nil,
   nil,   nil,    78 ]

racc_goto_check = [
     4,    10,     4,    31,    31,    31,     5,     6,     5,     6,
    21,    12,    27,    21,     3,    27,     3,     9,     9,     1,
     2,    11,    32,    17,    19,    23,    26,    10,    32,    32,
     5,     6,    12,     5,     6,    29,    31,    31,    33,    32,
    32,   nil,   nil,   nil,   nil,   nil,   nil,   nil,    10,   nil,
   nil,   nil,     4 ]

racc_goto_pointer = [
   nil,    19,    20,    14,     0,     6,     7,   nil,   nil,   -17,
   -14,   -20,    -9,   nil,   nil,   nil,   nil,     8,   nil,     2,
   nil,   -14,   nil,     0,   nil,   nil,    -2,   -18,   nil,     4,
   nil,   -42,   -46,   -16 ]

racc_goto_default = [
   nil,   nil,   nil,   nil,    70,    71,    72,     7,     8,    13,
   nil,   nil,    21,    16,    17,    18,    19,    20,    22,    23,
    24,   nil,    25,    26,    27,    28,    29,   nil,    31,    32,
    52,   nil,    69,    53 ]

racc_reduce_table = [
  0, 0, :racc_error,
  1, 15, :_reduce_1,
  0, 15, :_reduce_2,
  2, 16, :_reduce_3,
  1, 16, :_reduce_4,
  1, 17, :_reduce_5,
  1, 17, :_reduce_6,
  1, 17, :_reduce_none,
  1, 17, :_reduce_8,
  1, 17, :_reduce_9,
  1, 17, :_reduce_10,
  1, 17, :_reduce_11,
  1, 21, :_reduce_12,
  1, 22, :_reduce_13,
  1, 18, :_reduce_14,
  2, 23, :_reduce_15,
  1, 23, :_reduce_16,
  3, 19, :_reduce_17,
  1, 25, :_reduce_18,
  2, 24, :_reduce_19,
  4, 24, :_reduce_20,
  2, 24, :_reduce_21,
  1, 24, :_reduce_22,
  1, 26, :_reduce_none,
  1, 26, :_reduce_none,
  1, 26, :_reduce_none,
  1, 26, :_reduce_none,
  1, 20, :_reduce_27,
  3, 20, :_reduce_28,
  4, 20, :_reduce_29,
  2, 31, :_reduce_30,
  1, 31, :_reduce_31,
  1, 27, :_reduce_32,
  2, 32, :_reduce_33,
  1, 32, :_reduce_34,
  3, 33, :_reduce_35,
  1, 28, :_reduce_36,
  2, 36, :_reduce_37,
  1, 36, :_reduce_38,
  3, 37, :_reduce_39,
  1, 29, :_reduce_40,
  2, 39, :_reduce_41,
  1, 39, :_reduce_42,
  3, 40, :_reduce_43,
  1, 30, :_reduce_44,
  2, 42, :_reduce_45,
  1, 42, :_reduce_46,
  3, 43, :_reduce_47,
  3, 41, :_reduce_48,
  2, 41, :_reduce_49,
  4, 41, :_reduce_50,
  1, 41, :_reduce_51,
  2, 45, :_reduce_52,
  1, 45, :_reduce_none,
  1, 46, :_reduce_54,
  1, 46, :_reduce_55,
  1, 46, :_reduce_none,
  1, 46, :_reduce_57,
  1, 44, :_reduce_none,
  0, 44, :_reduce_none,
  2, 47, :_reduce_none,
  1, 47, :_reduce_none,
  2, 34, :_reduce_62,
  1, 34, :_reduce_63,
  2, 38, :_reduce_64,
  1, 38, :_reduce_65,
  2, 35, :_reduce_66,
  2, 35, :_reduce_67,
  2, 35, :_reduce_68,
  1, 35, :_reduce_69,
  1, 35, :_reduce_none,
  1, 35, :_reduce_71,
  0, 35, :_reduce_72 ]

racc_reduce_n = 73

racc_shift_n = 89

racc_token_table = {
  false => 0,
  :error => 1,
  :DUMMY => 2,
  :ITEMLISTLINE => 3,
  :ENUMLISTLINE => 4,
  :DESCLISTLINE => 5,
  :METHODLISTLINE => 6,
  :STRINGLINE => 7,
  :WHITELINE => 8,
  :SUBTREE => 9,
  :HEADLINE => 10,
  :INCLUDE => 11,
  :INDENT => 12,
  :DEDENT => 13 }

racc_nt_base = 14

racc_use_result_var = true

Racc_arg = [
  racc_action_table,
  racc_action_check,
  racc_action_default,
  racc_action_pointer,
  racc_goto_table,
  racc_goto_check,
  racc_goto_default,
  racc_goto_pointer,
  racc_nt_base,
  racc_reduce_table,
  racc_token_table,
  racc_shift_n,
  racc_reduce_n,
  racc_use_result_var ]

Racc_token_to_s_table = [
  "$end",
  "error",
  "DUMMY",
  "ITEMLISTLINE",
  "ENUMLISTLINE",
  "DESCLISTLINE",
  "METHODLISTLINE",
  "STRINGLINE",
  "WHITELINE",
  "SUBTREE",
  "HEADLINE",
  "INCLUDE",
  "INDENT",
  "DEDENT",
  "$start",
  "document",
  "blocks",
  "block",
  "textblock",
  "verbatim",
  "lists",
  "headline",
  "include",
  "textblockcontent",
  "verbatimcontent",
  "verbatim_after_lists",
  "list",
  "itemlist",
  "enumlist",
  "desclist",
  "methodlist",
  "lists2",
  "itemlistitems",
  "itemlistitem",
  "first_textblock_in_itemlist",
  "other_blocks_in_list",
  "enumlistitems",
  "enumlistitem",
  "first_textblock_in_enumlist",
  "desclistitems",
  "desclistitem",
  "description_part",
  "methodlistitems",
  "methodlistitem",
  "whitelines",
  "blocks_in_list",
  "block_in_list",
  "whitelines2" ]

Racc_debug_parser = false

##### State transition tables end #####

# reduce 0 omitted

def _reduce_1(val, _values, result)
 result = RDoc::Markup::Document.new(*val[0])
    result
end

def _reduce_2(val, _values, result)
 raise ParseError, "file empty"
    result
end

def _reduce_3(val, _values, result)
 result = val[0].concat val[1]
    result
end

def _reduce_4(val, _values, result)
 result = val[0]
    result
end

def _reduce_5(val, _values, result)
 result = val
    result
end

def _reduce_6(val, _values, result)
 result = val
    result
end

# reduce 7 omitted

def _reduce_8(val, _values, result)
 result = val
    result
end

def _reduce_9(val, _values, result)
 result = val
    result
end

def _reduce_10(val, _values, result)
 result = [RDoc::Markup::BlankLine.new]
    result
end

def _reduce_11(val, _values, result)
 result = val[0].parts
    result
end

def _reduce_12(val, _values, result)
      # val[0] is like [level, title]
      title = @inline_parser.parse(val[0][1])
      result = RDoc::Markup::Heading.new(val[0][0], title)

    result
end

def _reduce_13(val, _values, result)
      result = RDoc::Markup::Include.new val[0], @include_path

    result
end

def _reduce_14(val, _values, result)
      # val[0] is Array of String
      result = paragraph val[0]

    result
end

def _reduce_15(val, _values, result)
 result << val[1].rstrip
    result
end

def _reduce_16(val, _values, result)
 result = [val[0].rstrip]
    result
end

def _reduce_17(val, _values, result)
      # val[1] is Array of String
      content = cut_off val[1]
      result = RDoc::Markup::Verbatim.new(*content)

      # imform to lexer.
      @in_verbatim = false

    result
end

def _reduce_18(val, _values, result)
      # val[0] is Array of String
      content = cut_off val[0]
      result = RDoc::Markup::Verbatim.new(*content)

      # imform to lexer.
      @in_verbatim = false

    result
end

def _reduce_19(val, _values, result)
      result << val[1]

    result
end

def _reduce_20(val, _values, result)
      result.concat val[2]

    result
end

def _reduce_21(val, _values, result)
      result << "\n"

    result
end

def _reduce_22(val, _values, result)
      result = val
      # inform to lexer.
      @in_verbatim = true

    result
end

# reduce 23 omitted

# reduce 24 omitted

# reduce 25 omitted

# reduce 26 omitted

def _reduce_27(val, _values, result)
      result = val[0]

    result
end

def _reduce_28(val, _values, result)
      result = val[1]

    result
end

def _reduce_29(val, _values, result)
      result = val[1].push(val[2])

    result
end

def _reduce_30(val, _values, result)
 result = val[0] << val[1]
    result
end

def _reduce_31(val, _values, result)
 result = [val[0]]
    result
end

def _reduce_32(val, _values, result)
      result = RDoc::Markup::List.new :BULLET, *val[0]

    result
end

def _reduce_33(val, _values, result)
 result.push(val[1])
    result
end

def _reduce_34(val, _values, result)
 result = val
    result
end

def _reduce_35(val, _values, result)
      result = RDoc::Markup::ListItem.new nil, val[0], *val[1]

    result
end

def _reduce_36(val, _values, result)
      result = RDoc::Markup::List.new :NUMBER, *val[0]

    result
end

def _reduce_37(val, _values, result)
 result.push(val[1])
    result
end

def _reduce_38(val, _values, result)
 result = val
    result
end

def _reduce_39(val, _values, result)
      result = RDoc::Markup::ListItem.new nil, val[0], *val[1]

    result
end

def _reduce_40(val, _values, result)
      result = RDoc::Markup::List.new :NOTE, *val[0]

    result
end

def _reduce_41(val, _values, result)
 result.push(val[1])
    result
end

def _reduce_42(val, _values, result)
 result = val
    result
end

def _reduce_43(val, _values, result)
      term = @inline_parser.parse val[0].strip

      result = RDoc::Markup::ListItem.new term, *val[1]

    result
end

def _reduce_44(val, _values, result)
      result = RDoc::Markup::List.new :LABEL, *val[0]

    result
end

def _reduce_45(val, _values, result)
 result.push(val[1])
    result
end

def _reduce_46(val, _values, result)
 result = val
    result
end

def _reduce_47(val, _values, result)
      result = RDoc::Markup::ListItem.new "<tt>#{val[0].strip}</tt>", *val[1]

    result
end

def _reduce_48(val, _values, result)
      result = [val[1]].concat(val[2])

    result
end

def _reduce_49(val, _values, result)
      result = [val[1]]

    result
end

def _reduce_50(val, _values, result)
      result = val[2]

    result
end

def _reduce_51(val, _values, result)
      result = []

    result
end

def _reduce_52(val, _values, result)
 result.concat val[1]
    result
end

# reduce 53 omitted

def _reduce_54(val, _values, result)
 result = val
    result
end

def _reduce_55(val, _values, result)
 result = val
    result
end

# reduce 56 omitted

def _reduce_57(val, _values, result)
 result = []
    result
end

# reduce 58 omitted

# reduce 59 omitted

# reduce 60 omitted

# reduce 61 omitted

def _reduce_62(val, _values, result)
      result = paragraph [val[0]].concat(val[1])

    result
end

def _reduce_63(val, _values, result)
      result = paragraph [val[0]]

    result
end

def _reduce_64(val, _values, result)
      result = paragraph [val[0]].concat(val[1])

    result
end

def _reduce_65(val, _values, result)
      result = paragraph [val[0]]

    result
end

def _reduce_66(val, _values, result)
      result = [val[0]].concat(val[1])

    result
end

def _reduce_67(val, _values, result)
 result.concat val[1]
    result
end

def _reduce_68(val, _values, result)
 result = val[1]
    result
end

def _reduce_69(val, _values, result)
 result = val
    result
end

# reduce 70 omitted

def _reduce_71(val, _values, result)
 result = []
    result
end

def _reduce_72(val, _values, result)
 result = []
    result
end

def _reduce_none(val, _values, result)
  val[0]
end

end   # class BlockParser

end
PKAH[�]��2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/inline.rbnu�[���# frozen_string_literal: true
##
# Inline keeps track of markup and labels to create proper links.

class RDoc::RD::Inline

  ##
  # The text of the reference

  attr_reader :reference

  ##
  # The markup of this reference in RDoc format

  attr_reader :rdoc

  ##
  # Creates a new Inline for +rdoc+ and +reference+.
  #
  # +rdoc+ may be another Inline or a String.  If +reference+ is not given it
  # will use the text from +rdoc+.

  def self.new rdoc, reference = rdoc
    if self === rdoc and reference.equal? rdoc then
      rdoc
    else
      super
    end
  end

  ##
  # Initializes the Inline with +rdoc+ and +inline+

  def initialize rdoc, reference # :not-new:
    @reference = reference.equal?(rdoc) ? reference.dup : reference

    # unpack
    @reference = @reference.reference if self.class === @reference
    @rdoc      = rdoc
  end

  def == other # :nodoc:
    self.class === other and
      @reference == other.reference and @rdoc == other.rdoc
  end

  ##
  # Appends +more+ to this inline.  +more+ may be a String or another Inline.

  def append more
    case more
    when String then
      @reference += more
      @rdoc      += more
    when RDoc::RD::Inline then
      @reference += more.reference
      @rdoc      += more.rdoc
    else
      raise "unknown thingy #{more}"
    end

    self
  end

  def inspect # :nodoc:
    "(inline: #{self})"
  end

  alias to_s rdoc # :nodoc:

end

PKAH[|y����5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/single_class.rbnu�[���# frozen_string_literal: true
##
# A singleton class

class RDoc::SingleClass < RDoc::ClassModule

  ##
  # Adds the superclass to the included modules.

  def ancestors
    superclass ? super + [superclass] : super
  end

  def aref_prefix # :nodoc:
    'sclass'
  end

  ##
  # The definition of this singleton class, <tt>class << MyClassName</tt>

  def definition
    "class << #{full_name}"
  end

end

PKAH[�H"--2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/top_level.rbnu�[���# frozen_string_literal: true
##
# A TopLevel context is a representation of the contents of a single file

class RDoc::TopLevel < RDoc::Context

  MARSHAL_VERSION = 0 # :nodoc:

  ##
  # This TopLevel's File::Stat struct

  attr_accessor :file_stat

  ##
  # Relative name of this file

  attr_accessor :relative_name

  ##
  # Absolute name of this file

  attr_accessor :absolute_name

  ##
  # All the classes or modules that were declared in
  # this file. These are assigned to either +#classes_hash+
  # or +#modules_hash+ once we know what they really are.

  attr_reader :classes_or_modules

  attr_accessor :diagram # :nodoc:

  ##
  # The parser class that processed this file

  attr_reader :parser

  ##
  # Creates a new TopLevel for the file at +absolute_name+.  If documentation
  # is being generated outside the source dir +relative_name+ is relative to
  # the source directory.

  def initialize absolute_name, relative_name = absolute_name
    super()
    @name = nil
    @absolute_name = absolute_name
    @relative_name = relative_name
    @file_stat     = File.stat(absolute_name) rescue nil # HACK for testing
    @diagram       = nil
    @parser        = nil

    @classes_or_modules = []
  end

  def parser=(val)
    @parser = val
    @store.update_parser_of_file(absolute_name, val) if @store
    @parser
  end

  ##
  # An RDoc::TopLevel is equal to another with the same relative_name

  def == other
    self.class === other and @relative_name == other.relative_name
  end

  alias eql? ==

  ##
  # Adds +an_alias+ to +Object+ instead of +self+.

  def add_alias(an_alias)
    object_class.record_location self
    return an_alias unless @document_self
    object_class.add_alias an_alias
  end

  ##
  # Adds +constant+ to +Object+ instead of +self+.

  def add_constant constant
    object_class.record_location self
    return constant unless @document_self
    object_class.add_constant constant
  end

  ##
  # Adds +include+ to +Object+ instead of +self+.

  def add_include(include)
    object_class.record_location self
    return include unless @document_self
    object_class.add_include include
  end

  ##
  # Adds +method+ to +Object+ instead of +self+.

  def add_method(method)
    object_class.record_location self
    return method unless @document_self
    object_class.add_method method
  end

  ##
  # Adds class or module +mod+. Used in the building phase
  # by the Ruby parser.

  def add_to_classes_or_modules mod
    @classes_or_modules << mod
  end

  ##
  # Base name of this file

  def base_name
    File.basename @relative_name
  end

  alias name base_name

  ##
  # Only a TopLevel that contains text file) will be displayed.  See also
  # RDoc::CodeObject#display?

  def display?
    text? and super
  end

  ##
  # See RDoc::TopLevel::find_class_or_module
  #--
  # TODO Why do we search through all classes/modules found, not just the
  #       ones of this instance?

  def find_class_or_module name
    @store.find_class_or_module name
  end

  ##
  # Finds a class or module named +symbol+

  def find_local_symbol(symbol)
    find_class_or_module(symbol) || super
  end

  ##
  # Finds a module or class with +name+

  def find_module_named(name)
    find_class_or_module(name)
  end

  ##
  # Returns the relative name of this file

  def full_name
    @relative_name
  end

  ##
  # An RDoc::TopLevel has the same hash as another with the same
  # relative_name

  def hash
    @relative_name.hash
  end

  ##
  # URL for this with a +prefix+

  def http_url(prefix)
    path = [prefix, @relative_name.tr('.', '_')]

    File.join(*path.compact) + '.html'
  end

  def inspect # :nodoc:
    "#<%s:0x%x %p modules: %p classes: %p>" % [
      self.class, object_id,
      base_name,
      @modules.map { |n,m| m },
      @classes.map { |n,c| c }
    ]
  end

  ##
  # Time this file was last modified, if known

  def last_modified
    @file_stat ? file_stat.mtime : nil
  end

  ##
  # Dumps this TopLevel for use by ri.  See also #marshal_load

  def marshal_dump
    [
      MARSHAL_VERSION,
      @relative_name,
      @parser,
      parse(@comment),
    ]
  end

  ##
  # Loads this TopLevel from +array+.

  def marshal_load array # :nodoc:
    initialize array[1]

    @parser  = array[2]
    @comment = array[3]

    @file_stat          = nil
  end

  ##
  # Returns the NormalClass "Object", creating it if not found.
  #
  # Records +self+ as a location in "Object".

  def object_class
    @object_class ||= begin
      oc = @store.find_class_named('Object') || add_class(RDoc::NormalClass, 'Object')
      oc.record_location self
      oc
    end
  end

  ##
  # Base name of this file without the extension

  def page_name
    basename = File.basename @relative_name
    basename =~ /\.(rb|rdoc|txt|md)$/i

    $` || basename
  end

  ##
  # Path to this file for use with HTML generator output.

  def path
    http_url @store.rdoc.generator.file_dir
  end

  def pretty_print q # :nodoc:
    q.group 2, "[#{self.class}: ", "]" do
      q.text "base name: #{base_name.inspect}"
      q.breakable

      items = @modules.map { |n,m| m }
      items.concat @modules.map { |n,c| c }
      q.seplist items do |mod| q.pp mod end
    end
  end

  ##
  # Search record used by RDoc::Generator::JsonIndex

  def search_record
    return unless @parser < RDoc::Parser::Text

    [
      page_name,
      '',
      page_name,
      '',
      path,
      '',
      snippet(@comment),
    ]
  end

  ##
  # Is this TopLevel from a text file instead of a source code file?

  def text?
    @parser and @parser.include? RDoc::Parser::Text
  end

  def to_s # :nodoc:
    "file #{full_name}"
  end

end

PKAH[�-�%%4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/code_object.rbnu�[���# frozen_string_literal: true
##
# Base class for the RDoc code tree.
#
# We contain the common stuff for contexts (which are containers) and other
# elements (methods, attributes and so on)
#
# Here's the tree of the CodeObject subclasses:
#
# * RDoc::Context
#   * RDoc::TopLevel
#   * RDoc::ClassModule
#     * RDoc::AnonClass (never used so far)
#     * RDoc::NormalClass
#     * RDoc::NormalModule
#     * RDoc::SingleClass
# * RDoc::MethodAttr
#   * RDoc::Attr
#   * RDoc::AnyMethod
#     * RDoc::GhostMethod
#     * RDoc::MetaMethod
# * RDoc::Alias
# * RDoc::Constant
# * RDoc::Mixin
#   * RDoc::Require
#   * RDoc::Include

class RDoc::CodeObject

  include RDoc::Text

  ##
  # Our comment

  attr_reader :comment

  ##
  # Do we document our children?

  attr_reader :document_children

  ##
  # Do we document ourselves?

  attr_reader :document_self

  ##
  # Are we done documenting (ie, did we come across a :enddoc:)?

  attr_reader :done_documenting

  ##
  # Which file this code object was defined in

  attr_reader :file

  ##
  # Force documentation of this CodeObject

  attr_reader :force_documentation

  ##
  # Line in #file where this CodeObject was defined

  attr_accessor :line

  ##
  # Hash of arbitrary metadata for this CodeObject

  attr_reader :metadata

  ##
  # Sets the parent CodeObject

  attr_writer :parent

  ##
  # Did we ever receive a +:nodoc:+ directive?

  attr_reader :received_nodoc

  ##
  # Set the section this CodeObject is in

  attr_writer :section

  ##
  # The RDoc::Store for this object.

  attr_reader :store

  ##
  # We are the model of the code, but we know that at some point we will be
  # worked on by viewers. By implementing the Viewable protocol, viewers can
  # associated themselves with these objects.

  attr_accessor :viewer

  ##
  # Creates a new CodeObject that will document itself and its children

  def initialize
    @metadata         = {}
    @comment          = ''
    @parent           = nil
    @parent_name      = nil # for loading
    @parent_class     = nil # for loading
    @section          = nil
    @section_title    = nil # for loading
    @file             = nil
    @full_name        = nil
    @store            = nil
    @track_visibility = true

    initialize_visibility
  end

  ##
  # Initializes state for visibility of this CodeObject and its children.

  def initialize_visibility # :nodoc:
    @document_children   = true
    @document_self       = true
    @done_documenting    = false
    @force_documentation = false
    @received_nodoc      = false
    @ignored             = false
    @suppressed          = false
    @track_visibility    = true
  end

  ##
  # Replaces our comment with +comment+, unless it is empty.

  def comment=(comment)
    @comment = case comment
               when NilClass               then ''
               when RDoc::Markup::Document then comment
               when RDoc::Comment          then comment.normalize
               else
                 if comment and not comment.empty? then
                   normalize_comment comment
                 else
                   # HACK correct fix is to have #initialize create @comment
                   #      with the correct encoding
                   if String === @comment and @comment.empty? then
                     @comment = RDoc::Encoding.change_encoding @comment, comment.encoding
                   end
                   @comment
                 end
               end
  end

  ##
  # Should this CodeObject be displayed in output?
  #
  # A code object should be displayed if:
  #
  # * The item didn't have a nodoc or wasn't in a container that had nodoc
  # * The item wasn't ignored
  # * The item has documentation and was not suppressed

  def display?
    @document_self and not @ignored and
      (documented? or not @suppressed)
  end

  ##
  # Enables or disables documentation of this CodeObject's children unless it
  # has been turned off by :enddoc:

  def document_children=(document_children)
    return unless @track_visibility

    @document_children = document_children unless @done_documenting
  end

  ##
  # Enables or disables documentation of this CodeObject unless it has been
  # turned off by :enddoc:.  If the argument is +nil+ it means the
  # documentation is turned off by +:nodoc:+.

  def document_self=(document_self)
    return unless @track_visibility
    return if @done_documenting

    @document_self = document_self
    @received_nodoc = true if document_self.nil?
  end

  ##
  # Does this object have a comment with content or is #received_nodoc true?

  def documented?
    @received_nodoc or !@comment.empty?
  end

  ##
  # Turns documentation on/off, and turns on/off #document_self
  # and #document_children.
  #
  # Once documentation has been turned off (by +:enddoc:+),
  # the object will refuse to turn #document_self or
  # #document_children on, so +:doc:+ and +:start_doc:+ directives
  # will have no effect in the current file.

  def done_documenting=(value)
    return unless @track_visibility
    @done_documenting  = value
    @document_self     = !value
    @document_children = @document_self
  end

  ##
  # Yields each parent of this CodeObject.  See also
  # RDoc::ClassModule#each_ancestor

  def each_parent
    code_object = self

    while code_object = code_object.parent do
      yield code_object
    end

    self
  end

  ##
  # File name where this CodeObject was found.
  #
  # See also RDoc::Context#in_files

  def file_name
    return unless @file

    @file.absolute_name
  end

  ##
  # Force the documentation of this object unless documentation
  # has been turned off by :enddoc:
  #--
  # HACK untested, was assigning to an ivar

  def force_documentation=(value)
    @force_documentation = value unless @done_documenting
  end

  ##
  # Sets the full_name overriding any computed full name.
  #
  # Set to +nil+ to clear RDoc's cached value

  def full_name= full_name
    @full_name = full_name
  end

  ##
  # Use this to ignore a CodeObject and all its children until found again
  # (#record_location is called).  An ignored item will not be displayed in
  # documentation.
  #
  # See github issue #55
  #
  # The ignored status is temporary in order to allow implementation details
  # to be hidden.  At the end of processing a file RDoc allows all classes
  # and modules to add new documentation to previously created classes.
  #
  # If a class was ignored (via stopdoc) then reopened later with additional
  # documentation it should be displayed.  If a class was ignored and never
  # reopened it should not be displayed.  The ignore flag allows this to
  # occur.

  def ignore
    return unless @track_visibility

    @ignored = true

    stop_doc
  end

  ##
  # Has this class been ignored?
  #
  # See also #ignore

  def ignored?
    @ignored
  end

  ##
  # The options instance from the store this CodeObject is attached to, or a
  # default options instance if the CodeObject is not attached.
  #
  # This is used by Text#snippet

  def options
    if @store and @store.rdoc then
      @store.rdoc.options
    else
      RDoc::Options.new
    end
  end

  ##
  # Our parent CodeObject.  The parent may be missing for classes loaded from
  # legacy RI data stores.

  def parent
    return @parent if @parent
    return nil unless @parent_name

    if @parent_class == RDoc::TopLevel then
      @parent = @store.add_file @parent_name
    else
      @parent = @store.find_class_or_module @parent_name

      return @parent if @parent

      begin
        @parent = @store.load_class @parent_name
      rescue RDoc::Store::MissingFileError
        nil
      end
    end
  end

  ##
  # File name of our parent

  def parent_file_name
    @parent ? @parent.base_name : '(unknown)'
  end

  ##
  # Name of our parent

  def parent_name
    @parent ? @parent.full_name : '(unknown)'
  end

  ##
  # Records the RDoc::TopLevel (file) where this code object was defined

  def record_location top_level
    @ignored    = false
    @suppressed = false
    @file       = top_level
  end

  ##
  # The section this CodeObject is in.  Sections allow grouping of constants,
  # attributes and methods inside a class or module.

  def section
    return @section if @section

    @section = parent.add_section @section_title if parent
  end

  ##
  # Enable capture of documentation unless documentation has been
  # turned off by :enddoc:

  def start_doc
    return if @done_documenting

    @document_self = true
    @document_children = true
    @ignored    = false
    @suppressed = false
  end

  ##
  # Disable capture of documentation

  def stop_doc
    return unless @track_visibility

    @document_self = false
    @document_children = false
  end

  ##
  # Sets the +store+ that contains this CodeObject

  def store= store
    @store = store

    return unless @track_visibility

    if :nodoc == options.visibility then
      initialize_visibility
      @track_visibility = false
    end
  end

  ##
  # Use this to suppress a CodeObject and all its children until the next file
  # it is seen in or documentation is discovered.  A suppressed item with
  # documentation will be displayed while an ignored item with documentation
  # may not be displayed.

  def suppress
    return unless @track_visibility

    @suppressed = true

    stop_doc
  end

  ##
  # Has this class been suppressed?
  #
  # See also #suppress

  def suppressed?
    @suppressed
  end

end
PKAH[W�nYY+share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri.rbnu�[���# frozen_string_literal: true
require 'rdoc'

##
# Namespace for the ri command line tool's implementation.
#
# See <tt>ri --help</tt> for details.

module RDoc::RI

  ##
  # Base RI error class

  class Error < RDoc::Error; end

  autoload :Driver, 'rdoc/ri/driver'
  autoload :Paths,  'rdoc/ri/paths'
  autoload :Store,  'rdoc/ri/store'

end

PKAH[u���`x`x0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/context.rbnu�[���# frozen_string_literal: true
require 'cgi'

##
# A Context is something that can hold modules, classes, methods, attributes,
# aliases, requires, and includes. Classes, modules, and files are all
# Contexts.

class RDoc::Context < RDoc::CodeObject

  include Comparable

  ##
  # Types of methods

  TYPES = %w[class instance]

  ##
  # If a context has these titles it will be sorted in this order.

  TOMDOC_TITLES = [nil, 'Public', 'Internal', 'Deprecated'] # :nodoc:
  TOMDOC_TITLES_SORT = TOMDOC_TITLES.sort_by { |title| title.to_s } # :nodoc:

  ##
  # Class/module aliases

  attr_reader :aliases

  ##
  # All attr* methods

  attr_reader :attributes

  ##
  # Block params to be used in the next MethodAttr parsed under this context

  attr_accessor :block_params

  ##
  # Constants defined

  attr_reader :constants

  ##
  # Sets the current documentation section of documentation

  attr_writer :current_section

  ##
  # Files this context is found in

  attr_reader :in_files

  ##
  # Modules this context includes

  attr_reader :includes

  ##
  # Modules this context is extended with

  attr_reader :extends

  ##
  # Methods defined in this context

  attr_reader :method_list

  ##
  # Name of this class excluding namespace.  See also full_name

  attr_reader :name

  ##
  # Files this context requires

  attr_reader :requires

  ##
  # Use this section for the next method, attribute or constant added.

  attr_accessor :temporary_section

  ##
  # Hash <tt>old_name => [aliases]</tt>, for aliases
  # that haven't (yet) been resolved to a method/attribute.
  # (Not to be confused with the aliases of the context.)

  attr_accessor :unmatched_alias_lists

  ##
  # Aliases that could not be resolved.

  attr_reader :external_aliases

  ##
  # Current visibility of this context

  attr_accessor :visibility

  ##
  # Current visibility of this line

  attr_writer :current_line_visibility

  ##
  # Hash of registered methods. Attributes are also registered here,
  # twice if they are RW.

  attr_reader :methods_hash

  ##
  # Params to be used in the next MethodAttr parsed under this context

  attr_accessor :params

  ##
  # Hash of registered constants.

  attr_reader :constants_hash

  ##
  # Creates an unnamed empty context with public current visibility

  def initialize
    super

    @in_files = []

    @name    ||= "unknown"
    @parent  = nil
    @visibility = :public

    @current_section = Section.new self, nil, nil
    @sections = { nil => @current_section }
    @temporary_section = nil

    @classes = {}
    @modules = {}

    initialize_methods_etc
  end

  ##
  # Sets the defaults for methods and so-forth

  def initialize_methods_etc
    @method_list = []
    @attributes  = []
    @aliases     = []
    @requires    = []
    @includes    = []
    @extends     = []
    @constants   = []
    @external_aliases = []
    @current_line_visibility = nil

    # This Hash maps a method name to a list of unmatched aliases (aliases of
    # a method not yet encountered).
    @unmatched_alias_lists = {}

    @methods_hash   = {}
    @constants_hash = {}

    @params = nil

    @store ||= nil
  end

  ##
  # Contexts are sorted by full_name

  def <=>(other)
    return nil unless RDoc::CodeObject === other

    full_name <=> other.full_name
  end

  ##
  # Adds an item of type +klass+ with the given +name+ and +comment+ to the
  # context.
  #
  # Currently only RDoc::Extend and RDoc::Include are supported.

  def add klass, name, comment
    if RDoc::Extend == klass then
      ext = RDoc::Extend.new name, comment
      add_extend ext
    elsif RDoc::Include == klass then
      incl = RDoc::Include.new name, comment
      add_include incl
    else
      raise NotImplementedError, "adding a #{klass} is not implemented"
    end
  end

  ##
  # Adds +an_alias+ that is automatically resolved

  def add_alias an_alias
    return an_alias unless @document_self

    method_attr = find_method(an_alias.old_name, an_alias.singleton) ||
                  find_attribute(an_alias.old_name, an_alias.singleton)

    if method_attr then
      method_attr.add_alias an_alias, self
    else
      add_to @external_aliases, an_alias
      unmatched_alias_list =
        @unmatched_alias_lists[an_alias.pretty_old_name] ||= []
      unmatched_alias_list.push an_alias
    end

    an_alias
  end

  ##
  # Adds +attribute+ if not already there. If it is (as method(s) or attribute),
  # updates the comment if it was empty.
  #
  # The attribute is registered only if it defines a new method.
  # For instance, <tt>attr_reader :foo</tt> will not be registered
  # if method +foo+ exists, but <tt>attr_accessor :foo</tt> will be registered
  # if method +foo+ exists, but <tt>foo=</tt> does not.

  def add_attribute attribute
    return attribute unless @document_self

    # mainly to check for redefinition of an attribute as a method
    # TODO find a policy for 'attr_reader :foo' + 'def foo=()'
    register = false

    key = nil

    if attribute.rw.index 'R' then
      key = attribute.pretty_name
      known = @methods_hash[key]

      if known then
        known.comment = attribute.comment if known.comment.empty?
      elsif registered = @methods_hash[attribute.pretty_name + '='] and
            RDoc::Attr === registered then
        registered.rw = 'RW'
      else
        @methods_hash[key] = attribute
        register = true
      end
    end

    if attribute.rw.index 'W' then
      key = attribute.pretty_name + '='
      known = @methods_hash[key]

      if known then
        known.comment = attribute.comment if known.comment.empty?
      elsif registered = @methods_hash[attribute.pretty_name] and
            RDoc::Attr === registered then
        registered.rw = 'RW'
      else
        @methods_hash[key] = attribute
        register = true
      end
    end

    if register then
      attribute.visibility = @visibility
      add_to @attributes, attribute
      resolve_aliases attribute
    end

    attribute
  end

  ##
  # Adds a class named +given_name+ with +superclass+.
  #
  # Both +given_name+ and +superclass+ may contain '::', and are
  # interpreted relative to the +self+ context. This allows handling correctly
  # examples like these:
  #   class RDoc::Gauntlet < Gauntlet
  #   module Mod
  #     class Object   # implies < ::Object
  #     class SubObject < Object  # this is _not_ ::Object
  #
  # Given <tt>class Container::Item</tt> RDoc assumes +Container+ is a module
  # unless it later sees <tt>class Container</tt>.  +add_class+ automatically
  # upgrades +given_name+ to a class in this case.

  def add_class class_type, given_name, superclass = '::Object'
    # superclass +nil+ is passed by the C parser in the following cases:
    # - registering Object in 1.8 (correct)
    # - registering BasicObject in 1.9 (correct)
    # - registering RubyVM in 1.9 in iseq.c (incorrect: < Object in vm.c)
    #
    # If we later find a superclass for a registered class with a nil
    # superclass, we must honor it.

    # find the name & enclosing context
    if given_name =~ /^:+(\w+)$/ then
      full_name = $1
      enclosing = top_level
      name = full_name.split(/:+/).last
    else
      full_name = child_name given_name

      if full_name =~ /^(.+)::(\w+)$/ then
        name = $2
        ename = $1
        enclosing = @store.classes_hash[ename] || @store.modules_hash[ename]
        # HACK: crashes in actionpack/lib/action_view/helpers/form_helper.rb (metaprogramming)
        unless enclosing then
          # try the given name at top level (will work for the above example)
          enclosing = @store.classes_hash[given_name] ||
                      @store.modules_hash[given_name]
          return enclosing if enclosing
          # not found: create the parent(s)
          names = ename.split('::')
          enclosing = self
          names.each do |n|
            enclosing = enclosing.classes_hash[n] ||
                        enclosing.modules_hash[n] ||
                        enclosing.add_module(RDoc::NormalModule, n)
          end
        end
      else
        name = full_name
        enclosing = self
      end
    end

    # fix up superclass
    if full_name == 'BasicObject' then
      superclass = nil
    elsif full_name == 'Object' then
      superclass = '::BasicObject'
    end

    # find the superclass full name
    if superclass then
      if superclass =~ /^:+/ then
        superclass = $' #'
      else
        if superclass =~ /^(\w+):+(.+)$/ then
          suffix = $2
          mod = find_module_named($1)
          superclass = mod.full_name + '::' + suffix if mod
        else
          mod = find_module_named(superclass)
          superclass = mod.full_name if mod
        end
      end

      # did we believe it was a module?
      mod = @store.modules_hash.delete superclass

      upgrade_to_class mod, RDoc::NormalClass, mod.parent if mod

      # e.g., Object < Object
      superclass = nil if superclass == full_name
    end

    klass = @store.classes_hash[full_name]

    if klass then
      # if TopLevel, it may not be registered in the classes:
      enclosing.classes_hash[name] = klass

      # update the superclass if needed
      if superclass then
        existing = klass.superclass
        existing = existing.full_name unless existing.is_a?(String) if existing
        if existing.nil? ||
           (existing == 'Object' && superclass != 'Object') then
          klass.superclass = superclass
        end
      end
    else
      # this is a new class
      mod = @store.modules_hash.delete full_name

      if mod then
        klass = upgrade_to_class mod, RDoc::NormalClass, enclosing

        klass.superclass = superclass unless superclass.nil?
      else
        klass = class_type.new name, superclass

        enclosing.add_class_or_module(klass, enclosing.classes_hash,
                                      @store.classes_hash)
      end
    end

    klass.parent = self

    klass
  end

  ##
  # Adds the class or module +mod+ to the modules or
  # classes Hash +self_hash+, and to +all_hash+ (either
  # <tt>TopLevel::modules_hash</tt> or <tt>TopLevel::classes_hash</tt>),
  # unless #done_documenting is +true+. Sets the #parent of +mod+
  # to +self+, and its #section to #current_section. Returns +mod+.

  def add_class_or_module mod, self_hash, all_hash
    mod.section = current_section # TODO declaring context? something is
                                  # wrong here...
    mod.parent = self
    mod.full_name = nil
    mod.store = @store

    unless @done_documenting then
      self_hash[mod.name] = mod
      # this must be done AFTER adding mod to its parent, so that the full
      # name is correct:
      all_hash[mod.full_name] = mod
      if @store.unmatched_constant_alias[mod.full_name] then
        to, file = @store.unmatched_constant_alias[mod.full_name]
        add_module_alias mod, mod.name, to, file
      end
    end

    mod
  end

  ##
  # Adds +constant+ if not already there. If it is, updates the comment,
  # value and/or is_alias_for of the known constant if they were empty/nil.

  def add_constant constant
    return constant unless @document_self

    # HACK: avoid duplicate 'PI' & 'E' in math.c (1.8.7 source code)
    # (this is a #ifdef: should be handled by the C parser)
    known = @constants_hash[constant.name]

    if known then
      known.comment = constant.comment if known.comment.empty?

      known.value = constant.value if
        known.value.nil? or known.value.strip.empty?

      known.is_alias_for ||= constant.is_alias_for
    else
      @constants_hash[constant.name] = constant
      add_to @constants, constant
    end

    constant
  end

  ##
  # Adds included module +include+ which should be an RDoc::Include

  def add_include include
    add_to @includes, include

    include
  end

  ##
  # Adds extension module +ext+ which should be an RDoc::Extend

  def add_extend ext
    add_to @extends, ext

    ext
  end

  ##
  # Adds +method+ if not already there. If it is (as method or attribute),
  # updates the comment if it was empty.

  def add_method method
    return method unless @document_self

    # HACK: avoid duplicate 'new' in io.c & struct.c (1.8.7 source code)
    key = method.pretty_name
    known = @methods_hash[key]

    if known then
      if @store then # otherwise we are loading
        known.comment = method.comment if known.comment.empty?
        previously = ", previously in #{known.file}" unless
          method.file == known.file
        @store.rdoc.options.warn \
          "Duplicate method #{known.full_name} in #{method.file}#{previously}"
      end
    else
      @methods_hash[key] = method
      if @current_line_visibility
        method.visibility, @current_line_visibility = @current_line_visibility, nil
      else
        method.visibility = @visibility
      end
      add_to @method_list, method
      resolve_aliases method
    end

    method
  end

  ##
  # Adds a module named +name+.  If RDoc already knows +name+ is a class then
  # that class is returned instead.  See also #add_class.

  def add_module(class_type, name)
    mod = @classes[name] || @modules[name]
    return mod if mod

    full_name = child_name name
    mod = @store.modules_hash[full_name] || class_type.new(name)

    add_class_or_module mod, @modules, @store.modules_hash
  end

  ##
  # Adds a module by +RDoc::NormalModule+ instance. See also #add_module.

  def add_module_by_normal_module(mod)
    add_class_or_module mod, @modules, @store.modules_hash
  end

  ##
  # Adds an alias from +from+ (a class or module) to +name+ which was defined
  # in +file+.

  def add_module_alias from, from_name, to, file
    return from if @done_documenting

    to_full_name = child_name to.name

    # if we already know this name, don't register an alias:
    # see the metaprogramming in lib/active_support/basic_object.rb,
    # where we already know BasicObject is a class when we find
    # BasicObject = BlankSlate
    return from if @store.find_class_or_module to_full_name

    unless from
      @store.unmatched_constant_alias[child_name(from_name)] = [to, file]
      return to
    end

    new_to = from.dup
    new_to.name = to.name
    new_to.full_name = nil

    if new_to.module? then
      @store.modules_hash[to_full_name] = new_to
      @modules[to.name] = new_to
    else
      @store.classes_hash[to_full_name] = new_to
      @classes[to.name] = new_to
    end

    # Registers a constant for this alias.  The constant value and comment
    # will be updated later, when the Ruby parser adds the constant
    const = RDoc::Constant.new to.name, nil, new_to.comment
    const.record_location file
    const.is_alias_for = from
    add_constant const

    new_to
  end

  ##
  # Adds +require+ to this context's top level

  def add_require(require)
    return require unless @document_self

    if RDoc::TopLevel === self then
      add_to @requires, require
    else
      parent.add_require require
    end
  end

  ##
  # Returns a section with +title+, creating it if it doesn't already exist.
  # +comment+ will be appended to the section's comment.
  #
  # A section with a +title+ of +nil+ will return the default section.
  #
  # See also RDoc::Context::Section

  def add_section title, comment = nil
    if section = @sections[title] then
      section.add_comment comment if comment
    else
      section = Section.new self, title, comment
      @sections[title] = section
    end

    section
  end

  ##
  # Adds +thing+ to the collection +array+

  def add_to array, thing
    array << thing if @document_self

    thing.parent  = self
    thing.store   = @store if @store
    thing.section = current_section
  end

  ##
  # Is there any content?
  #
  # This means any of: comment, aliases, methods, attributes, external
  # aliases, require, constant.
  #
  # Includes and extends are also checked unless <tt>includes == false</tt>.

  def any_content(includes = true)
    @any_content ||= !(
      @comment.empty? &&
      @method_list.empty? &&
      @attributes.empty? &&
      @aliases.empty? &&
      @external_aliases.empty? &&
      @requires.empty? &&
      @constants.empty?
    )
    @any_content || (includes && !(@includes + @extends).empty? )
  end

  ##
  # Creates the full name for a child with +name+

  def child_name name
    if name =~ /^:+/
      $'  #'
    elsif RDoc::TopLevel === self then
      name
    else
      "#{self.full_name}::#{name}"
    end
  end

  ##
  # Class attributes

  def class_attributes
    @class_attributes ||= attributes.select { |a| a.singleton }
  end

  ##
  # Class methods

  def class_method_list
    @class_method_list ||= method_list.select { |a| a.singleton }
  end

  ##
  # Array of classes in this context

  def classes
    @classes.values
  end

  ##
  # All classes and modules in this namespace

  def classes_and_modules
    classes + modules
  end

  ##
  # Hash of classes keyed by class name

  def classes_hash
    @classes
  end

  ##
  # The current documentation section that new items will be added to.  If
  # temporary_section is available it will be used.

  def current_section
    if section = @temporary_section then
      @temporary_section = nil
    else
      section = @current_section
    end

    section
  end

  ##
  # Is part of this thing was defined in +file+?

  def defined_in?(file)
    @in_files.include?(file)
  end

  def display(method_attr) # :nodoc:
    if method_attr.is_a? RDoc::Attr
      "#{method_attr.definition} #{method_attr.pretty_name}"
    else
      "method #{method_attr.pretty_name}"
    end
  end

  ##
  # Iterator for ancestors for duck-typing.  Does nothing.  See
  # RDoc::ClassModule#each_ancestor.
  #
  # This method exists to make it easy to work with Context subclasses that
  # aren't part of RDoc.

  def each_ancestor # :nodoc:
  end

  ##
  # Iterator for attributes

  def each_attribute # :yields: attribute
    @attributes.each { |a| yield a }
  end

  ##
  # Iterator for classes and modules

  def each_classmodule(&block) # :yields: module
    classes_and_modules.sort.each(&block)
  end

  ##
  # Iterator for constants

  def each_constant # :yields: constant
    @constants.each {|c| yield c}
  end

  ##
  # Iterator for included modules

  def each_include # :yields: include
    @includes.each do |i| yield i end
  end

  ##
  # Iterator for extension modules

  def each_extend # :yields: extend
    @extends.each do |e| yield e end
  end

  ##
  # Iterator for methods

  def each_method # :yields: method
    return enum_for __method__ unless block_given?

    @method_list.sort.each { |m| yield m }
  end

  ##
  # Iterator for each section's contents sorted by title.  The +section+, the
  # section's +constants+ and the sections +attributes+ are yielded.  The
  # +constants+ and +attributes+ collections are sorted.
  #
  # To retrieve methods in a section use #methods_by_type with the optional
  # +section+ parameter.
  #
  # NOTE: Do not edit collections yielded by this method

  def each_section # :yields: section, constants, attributes
    return enum_for __method__ unless block_given?

    constants  = @constants.group_by  do |constant|  constant.section end
    attributes = @attributes.group_by do |attribute| attribute.section end

    constants.default  = []
    attributes.default = []

    sort_sections.each do |section|
      yield section, constants[section].select(&:display?).sort, attributes[section].select(&:display?).sort
    end
  end

  ##
  # Finds an attribute +name+ with singleton value +singleton+.

  def find_attribute(name, singleton)
    name = $1 if name =~ /^(.*)=$/
    @attributes.find { |a| a.name == name && a.singleton == singleton }
  end

  ##
  # Finds an attribute with +name+ in this context

  def find_attribute_named(name)
    case name
    when /\A#/ then
      find_attribute name[1..-1], false
    when /\A::/ then
      find_attribute name[2..-1], true
    else
      @attributes.find { |a| a.name == name }
    end
  end

  ##
  # Finds a class method with +name+ in this context

  def find_class_method_named(name)
    @method_list.find { |meth| meth.singleton && meth.name == name }
  end

  ##
  # Finds a constant with +name+ in this context

  def find_constant_named(name)
    @constants.find do |m|
      m.name == name || m.full_name == name
    end
  end

  ##
  # Find a module at a higher scope

  def find_enclosing_module_named(name)
    parent && parent.find_module_named(name)
  end

  ##
  # Finds an external alias +name+ with singleton value +singleton+.

  def find_external_alias(name, singleton)
    @external_aliases.find { |m| m.name == name && m.singleton == singleton }
  end

  ##
  # Finds an external alias with +name+ in this context

  def find_external_alias_named(name)
    case name
    when /\A#/ then
      find_external_alias name[1..-1], false
    when /\A::/ then
      find_external_alias name[2..-1], true
    else
      @external_aliases.find { |a| a.name == name }
    end
  end

  ##
  # Finds a file with +name+ in this context

  def find_file_named name
    @store.find_file_named name
  end

  ##
  # Finds an instance method with +name+ in this context

  def find_instance_method_named(name)
    @method_list.find { |meth| !meth.singleton && meth.name == name }
  end

  ##
  # Finds a method, constant, attribute, external alias, module or file
  # named +symbol+ in this context.

  def find_local_symbol(symbol)
    find_method_named(symbol) or
    find_constant_named(symbol) or
    find_attribute_named(symbol) or
    find_external_alias_named(symbol) or
    find_module_named(symbol) or
    find_file_named(symbol)
  end

  ##
  # Finds a method named +name+ with singleton value +singleton+.

  def find_method(name, singleton)
    @method_list.find { |m|
      if m.singleton
        m.name == name && m.singleton == singleton
      else
        m.name == name && !m.singleton && !singleton
      end
    }
  end

  ##
  # Finds a instance or module method with +name+ in this context

  def find_method_named(name)
    case name
    when /\A#/ then
      find_method name[1..-1], false
    when /\A::/ then
      find_method name[2..-1], true
    else
      @method_list.find { |meth| meth.name == name }
    end
  end

  ##
  # Find a module with +name+ using ruby's scoping rules

  def find_module_named(name)
    res = @modules[name] || @classes[name]
    return res if res
    return self if self.name == name
    find_enclosing_module_named name
  end

  ##
  # Look up +symbol+, first as a module, then as a local symbol.

  def find_symbol(symbol)
    find_symbol_module(symbol) || find_local_symbol(symbol)
  end

  ##
  # Look up a module named +symbol+.

  def find_symbol_module(symbol)
    result = nil

    # look for a class or module 'symbol'
    case symbol
    when /^::/ then
      result = @store.find_class_or_module symbol
    when /^(\w+):+(.+)$/
      suffix = $2
      top = $1
      searched = self
      while searched do
        mod = searched.find_module_named(top)
        break unless mod
        result = @store.find_class_or_module "#{mod.full_name}::#{suffix}"
        break if result || searched.is_a?(RDoc::TopLevel)
        searched = searched.parent
      end
    else
      searched = self
      while searched do
        result = searched.find_module_named(symbol)
        break if result || searched.is_a?(RDoc::TopLevel)
        searched = searched.parent
      end
    end

    result
  end

  ##
  # The full name for this context.  This method is overridden by subclasses.

  def full_name
    '(unknown)'
  end

  ##
  # Does this context and its methods and constants all have documentation?
  #
  # (Yes, fully documented doesn't mean everything.)

  def fully_documented?
    documented? and
      attributes.all? { |a| a.documented? } and
      method_list.all? { |m| m.documented? } and
      constants.all? { |c| c.documented? }
  end

  ##
  # URL for this with a +prefix+

  def http_url(prefix)
    path = name_for_path
    path = path.gsub(/<<\s*(\w*)/, 'from-\1') if path =~ /<</
    path = [prefix] + path.split('::')

    File.join(*path.compact) + '.html'
  end

  ##
  # Instance attributes

  def instance_attributes
    @instance_attributes ||= attributes.reject { |a| a.singleton }
  end

  ##
  # Instance methods
  #--
  # TODO rename to instance_methods

  def instance_method_list
    @instance_method_list ||= method_list.reject { |a| a.singleton }
  end

  ##
  # Breaks method_list into a nested hash by type (<tt>'class'</tt> or
  # <tt>'instance'</tt>) and visibility (+:public+, +:protected+, +:private+).
  #
  # If +section+ is provided only methods in that RDoc::Context::Section will
  # be returned.

  def methods_by_type section = nil
    methods = {}

    TYPES.each do |type|
      visibilities = {}
      RDoc::VISIBILITIES.each do |vis|
        visibilities[vis] = []
      end

      methods[type] = visibilities
    end

    each_method do |method|
      next if section and not method.section == section
      methods[method.type][method.visibility] << method
    end

    methods
  end

  ##
  # Yields AnyMethod and Attr entries matching the list of names in +methods+.

  def methods_matching(methods, singleton = false, &block)
    (@method_list + @attributes).each do |m|
      yield m if methods.include?(m.name) and m.singleton == singleton
    end

    each_ancestor do |parent|
      parent.methods_matching(methods, singleton, &block)
    end
  end

  ##
  # Array of modules in this context

  def modules
    @modules.values
  end

  ##
  # Hash of modules keyed by module name

  def modules_hash
    @modules
  end

  ##
  # Name to use to generate the url.
  # <tt>#full_name</tt> by default.

  def name_for_path
    full_name
  end

  ##
  # Changes the visibility for new methods to +visibility+

  def ongoing_visibility=(visibility)
    @visibility = visibility
  end

  ##
  # Record +top_level+ as a file +self+ is in.

  def record_location(top_level)
    @in_files << top_level unless @in_files.include?(top_level)
  end

  ##
  # Should we remove this context from the documentation?
  #
  # The answer is yes if:
  # * #received_nodoc is +true+
  # * #any_content is +false+ (not counting includes)
  # * All #includes are modules (not a string), and their module has
  #   <tt>#remove_from_documentation? == true</tt>
  # * All classes and modules have <tt>#remove_from_documentation? == true</tt>

  def remove_from_documentation?
    @remove_from_documentation ||=
      @received_nodoc &&
      !any_content(false) &&
      @includes.all? { |i| !i.module.is_a?(String) && i.module.remove_from_documentation? } &&
      classes_and_modules.all? { |cm| cm.remove_from_documentation? }
  end

  ##
  # Removes methods and attributes with a visibility less than +min_visibility+.
  #--
  # TODO mark the visibility of attributes in the template (if not public?)

  def remove_invisible min_visibility
    return if [:private, :nodoc].include? min_visibility
    remove_invisible_in @method_list, min_visibility
    remove_invisible_in @attributes, min_visibility
    remove_invisible_in @constants, min_visibility
  end

  ##
  # Only called when min_visibility == :public or :private

  def remove_invisible_in array, min_visibility # :nodoc:
    if min_visibility == :public then
      array.reject! { |e|
        e.visibility != :public and not e.force_documentation
      }
    else
      array.reject! { |e|
        e.visibility == :private and not e.force_documentation
      }
    end
  end

  ##
  # Tries to resolve unmatched aliases when a method or attribute has just
  # been added.

  def resolve_aliases added
    # resolve any pending unmatched aliases
    key = added.pretty_name
    unmatched_alias_list = @unmatched_alias_lists[key]
    return unless unmatched_alias_list
    unmatched_alias_list.each do |unmatched_alias|
      added.add_alias unmatched_alias, self
      @external_aliases.delete unmatched_alias
    end
    @unmatched_alias_lists.delete key
  end

  ##
  # Returns RDoc::Context::Section objects referenced in this context for use
  # in a table of contents.

  def section_contents
    used_sections = {}

    each_method do |method|
      next unless method.display?

      used_sections[method.section] = true
    end

    # order found sections
    sections = sort_sections.select do |section|
      used_sections[section]
    end

    # only the default section is used
    return [] if
      sections.length == 1 and not sections.first.title

    sections
  end

  ##
  # Sections in this context

  def sections
    @sections.values
  end

  def sections_hash # :nodoc:
    @sections
  end

  ##
  # Sets the current section to a section with +title+.  See also #add_section

  def set_current_section title, comment
    @current_section = add_section title, comment
  end

  ##
  # Given an array +methods+ of method names, set the visibility of each to
  # +visibility+

  def set_visibility_for(methods, visibility, singleton = false)
    methods_matching methods, singleton do |m|
      m.visibility = visibility
    end
  end

  ##
  # Given an array +names+ of constants, set the visibility of each constant to
  # +visibility+

  def set_constant_visibility_for(names, visibility)
    names.each do |name|
      constant = @constants_hash[name] or next
      constant.visibility = visibility
    end
  end

  ##
  # Sorts sections alphabetically (default) or in TomDoc fashion (none,
  # Public, Internal, Deprecated)

  def sort_sections
    titles = @sections.map { |title, _| title }

    if titles.length > 1 and
       TOMDOC_TITLES_SORT ==
         (titles | TOMDOC_TITLES).sort_by { |title| title.to_s } then
      @sections.values_at(*TOMDOC_TITLES).compact
    else
      @sections.sort_by { |title, _|
        title.to_s
      }.map { |_, section|
        section
      }
    end
  end

  def to_s # :nodoc:
    "#{self.class.name} #{self.full_name}"
  end

  ##
  # Return the TopLevel that owns us
  #--
  # FIXME we can be 'owned' by several TopLevel (see #record_location &
  # #in_files)

  def top_level
    return @top_level if defined? @top_level
    @top_level = self
    @top_level = @top_level.parent until RDoc::TopLevel === @top_level
    @top_level
  end

  ##
  # Upgrades NormalModule +mod+ in +enclosing+ to a +class_type+

  def upgrade_to_class mod, class_type, enclosing
    enclosing.modules_hash.delete mod.name

    klass = RDoc::ClassModule.from_module class_type, mod
    klass.store = @store

    # if it was there, then we keep it even if done_documenting
    @store.classes_hash[mod.full_name] = klass
    enclosing.classes_hash[mod.name]   = klass

    klass
  end

  autoload :Section, 'rdoc/context/section'

end
PKAH[����.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/mixin.rbnu�[���# frozen_string_literal: true
##
# A Mixin adds features from a module into another context.  RDoc::Include and
# RDoc::Extend are both mixins.

class RDoc::Mixin < RDoc::CodeObject

  ##
  # Name of included module

  attr_accessor :name

  ##
  # Creates a new Mixin for +name+ with +comment+

  def initialize(name, comment)
    super()
    @name = name
    self.comment = comment
    @module = nil # cache for module if found
  end

  ##
  # Mixins are sorted by name

  def <=> other
    return unless self.class === other

    name <=> other.name
  end

  def == other # :nodoc:
    self.class === other and @name == other.name
  end

  alias eql? == # :nodoc:

  ##
  # Full name based on #module

  def full_name
    m = self.module
    RDoc::ClassModule === m ? m.full_name : @name
  end

  def hash # :nodoc:
    [@name, self.module].hash
  end

  def inspect # :nodoc:
    "#<%s:0x%x %s.%s %s>" % [
      self.class,
      object_id,
      parent_name, self.class.name.downcase, @name,
    ]
  end

  ##
  # Attempts to locate the included module object.  Returns the name if not
  # known.
  #
  # The scoping rules of Ruby to resolve the name of an included module are:
  # - first look into the children of the current context;
  # - if not found, look into the children of included modules,
  #   in reverse inclusion order;
  # - if still not found, go up the hierarchy of names.
  #
  # This method has <code>O(n!)</code> behavior when the module calling
  # include is referencing nonexistent modules.  Avoid calling #module until
  # after all the files are parsed.  This behavior is due to ruby's constant
  # lookup behavior.
  #
  # As of the beginning of October, 2011, no gem includes nonexistent modules.

  def module
    return @module if @module

    # search the current context
    return @name unless parent
    full_name = parent.child_name(@name)
    @module = @store.modules_hash[full_name]
    return @module if @module
    return @name if @name =~ /^::/

    # search the includes before this one, in reverse order
    searched = parent.includes.take_while { |i| i != self }.reverse
    searched.each do |i|
      inc = i.module
      next if String === inc
      full_name = inc.child_name(@name)
      @module = @store.modules_hash[full_name]
      return @module if @module
    end

    # go up the hierarchy of names
    up = parent.parent
    while up
      full_name = up.child_name(@name)
      @module = @store.modules_hash[full_name]
      return @module if @module
      up = up.parent
    end

    @name
  end

  ##
  # Sets the store for this class or module and its contained code objects.

  def store= store
    super

    @file = @store.add_file @file.full_name if @file
  end

  def to_s # :nodoc:
    "#{self.class.name.downcase} #@name in: #{parent}"
  end

end

PKAH[o�c��.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/erbio.rbnu�[���# frozen_string_literal: true
require 'erb'

##
# A subclass of ERB that writes directly to an IO.  Credit to Aaron Patterson
# and Masatoshi SEKI.
#
# To use:
#
#   erbio = RDoc::ERBIO.new '<%= "hello world" %>', nil, nil
#
#   File.open 'hello.txt', 'w' do |io|
#     erbio.result binding
#   end
#
# Note that binding must enclose the io you wish to output on.

class RDoc::ERBIO < ERB

  ##
  # Defaults +eoutvar+ to 'io', otherwise is identical to ERB's initialize

  def initialize str, safe_level = nil, trim_mode = nil, eoutvar = 'io'
    if RUBY_VERSION >= '2.6'
      super(str, trim_mode: trim_mode, eoutvar: eoutvar)
    else
      super
    end
  end

  ##
  # Instructs +compiler+ how to write to +io_variable+

  def set_eoutvar compiler, io_variable
    compiler.put_cmd    = "#{io_variable}.write"
    compiler.insert_cmd = "#{io_variable}.write"
    compiler.pre_cmd    = []
    compiler.post_cmd   = []
  end

end

PKAH[
[>		-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/attr.rbnu�[���# frozen_string_literal: true
##
# An attribute created by \#attr, \#attr_reader, \#attr_writer or
# \#attr_accessor

class RDoc::Attr < RDoc::MethodAttr

  ##
  # 3::
  #   RDoc 4
  #    Added parent name and class
  #    Added section title

  MARSHAL_VERSION = 3 # :nodoc:

  ##
  # Is the attribute readable ('R'), writable ('W') or both ('RW')?

  attr_accessor :rw

  ##
  # Creates a new Attr with body +text+, +name+, read/write status +rw+ and
  # +comment+.  +singleton+ marks this as a class attribute.

  def initialize(text, name, rw, comment, singleton = false)
    super text, name

    @rw = rw
    @singleton = singleton
    self.comment = comment
  end

  ##
  # Attributes are equal when their names, singleton and rw are identical

  def == other
    self.class == other.class and
      self.name == other.name and
      self.rw == other.rw and
      self.singleton == other.singleton
  end

  ##
  # Add +an_alias+ as an attribute in +context+.

  def add_alias(an_alias, context)
    new_attr = self.class.new(self.text, an_alias.new_name, self.rw,
                              self.comment, self.singleton)

    new_attr.record_location an_alias.file
    new_attr.visibility = self.visibility
    new_attr.is_alias_for = self
    @aliases << new_attr
    context.add_attribute new_attr
    new_attr
  end

  ##
  # The #aref prefix for attributes

  def aref_prefix
    'attribute'
  end

  ##
  # Attributes never call super.  See RDoc::AnyMethod#calls_super
  #
  # An RDoc::Attr can show up in the method list in some situations (see
  # Gem::ConfigFile)

  def calls_super # :nodoc:
    false
  end

  ##
  # Returns attr_reader, attr_writer or attr_accessor as appropriate.

  def definition
    case @rw
    when 'RW' then 'attr_accessor'
    when 'R'  then 'attr_reader'
    when 'W'  then 'attr_writer'
    end
  end

  def inspect # :nodoc:
    alias_for = @is_alias_for ? " (alias for #{@is_alias_for.name})" : nil
    visibility = self.visibility
    visibility = "forced #{visibility}" if force_documentation
    "#<%s:0x%x %s %s (%s)%s>" % [
      self.class, object_id,
      full_name,
      rw,
      visibility,
      alias_for,
    ]
  end

  ##
  # Dumps this Attr for use by ri.  See also #marshal_load

  def marshal_dump
    [ MARSHAL_VERSION,
      @name,
      full_name,
      @rw,
      @visibility,
      parse(@comment),
      singleton,
      @file.relative_name,
      @parent.full_name,
      @parent.class,
      @section.title
    ]
  end

  ##
  # Loads this Attr from +array+.  For a loaded Attr the following
  # methods will return cached values:
  #
  # * #full_name
  # * #parent_name

  def marshal_load array
    initialize_visibility

    @aliases      = []
    @parent       = nil
    @parent_name  = nil
    @parent_class = nil
    @section      = nil
    @file         = nil

    version        = array[0]
    @name          = array[1]
    @full_name     = array[2]
    @rw            = array[3]
    @visibility    = array[4]
    @comment       = array[5]
    @singleton     = array[6] || false # MARSHAL_VERSION == 0
    #                      7 handled below
    @parent_name   = array[8]
    @parent_class  = array[9]
    @section_title = array[10]

    @file = RDoc::TopLevel.new array[7] if version > 1

    @parent_name ||= @full_name.split('#', 2).first
  end

  def pretty_print q # :nodoc:
    q.group 2, "[#{self.class.name} #{full_name} #{rw} #{visibility}", "]" do
      unless comment.empty? then
        q.breakable
        q.text "comment:"
        q.breakable
        q.pp @comment
      end
    end
  end

  def to_s # :nodoc:
    "#{definition} #{name} in: #{parent}"
  end

  ##
  # Attributes do not have token streams.
  #
  # An RDoc::Attr can show up in the method list in some situations (see
  # Gem::ConfigFile)

  def token_stream # :nodoc:
  end

end

PKAH[epC0��4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/meta_method.rbnu�[���# frozen_string_literal: true
##
# MetaMethod represents a meta-programmed method

class RDoc::MetaMethod < RDoc::AnyMethod
end

PKAH[�at��)�).share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats.rbnu�[���# frozen_string_literal: true
##
# RDoc statistics collector which prints a summary and report of a project's
# documentation totals.

class RDoc::Stats

  include RDoc::Text

  ##
  # Output level for the coverage report

  attr_reader :coverage_level

  ##
  # Count of files parsed during parsing

  attr_reader :files_so_far

  ##
  # Total number of files found

  attr_reader :num_files

  ##
  # Creates a new Stats that will have +num_files+.  +verbosity+ defaults to 1
  # which will create an RDoc::Stats::Normal outputter.

  def initialize store, num_files, verbosity = 1
    @num_files = num_files
    @store     = store

    @coverage_level   = 0
    @doc_items        = nil
    @files_so_far     = 0
    @fully_documented = false
    @num_params       = 0
    @percent_doc      = nil
    @start            = Time.now
    @undoc_params     = 0

    @display = case verbosity
               when 0 then Quiet.new   num_files
               when 1 then Normal.new  num_files
               else        Verbose.new num_files
               end
  end

  ##
  # Records the parsing of an alias +as+.

  def add_alias as
    @display.print_alias as
  end

  ##
  # Records the parsing of an attribute +attribute+

  def add_attribute attribute
    @display.print_attribute attribute
  end

  ##
  # Records the parsing of a class +klass+

  def add_class klass
    @display.print_class klass
  end

  ##
  # Records the parsing of +constant+

  def add_constant constant
    @display.print_constant constant
  end

  ##
  # Records the parsing of +file+

  def add_file(file)
    @files_so_far += 1
    @display.print_file @files_so_far, file
  end

  ##
  # Records the parsing of +method+

  def add_method(method)
    @display.print_method method
  end

  ##
  # Records the parsing of a module +mod+

  def add_module(mod)
    @display.print_module mod
  end

  ##
  # Call this to mark the beginning of parsing for display purposes

  def begin_adding
    @display.begin_adding
  end

  ##
  # Calculates documentation totals and percentages for classes, modules,
  # constants, attributes and methods.

  def calculate
    return if @doc_items

    ucm = @store.unique_classes_and_modules

    classes = @store.unique_classes.reject { |cm| cm.full_name == 'Object' }

    constants = []
    ucm.each { |cm| constants.concat cm.constants }

    methods = []
    ucm.each { |cm| methods.concat cm.method_list }

    attributes = []
    ucm.each { |cm| attributes.concat cm.attributes }

    @num_attributes, @undoc_attributes = doc_stats attributes
    @num_classes,    @undoc_classes    = doc_stats classes
    @num_constants,  @undoc_constants  = doc_stats constants
    @num_methods,    @undoc_methods    = doc_stats methods
    @num_modules,    @undoc_modules    = doc_stats @store.unique_modules

    @num_items =
      @num_attributes +
      @num_classes +
      @num_constants +
      @num_methods +
      @num_modules +
      @num_params

    @undoc_items =
      @undoc_attributes +
      @undoc_classes +
      @undoc_constants +
      @undoc_methods +
      @undoc_modules +
      @undoc_params

    @doc_items = @num_items - @undoc_items
  end

  ##
  # Sets coverage report level.  Accepted values are:
  #
  # false or nil:: No report
  # 0:: Classes, modules, constants, attributes, methods
  # 1:: Level 0 + method parameters

  def coverage_level= level
    level = -1 unless level

    @coverage_level = level
  end

  ##
  # Returns the length and number of undocumented items in +collection+.

  def doc_stats collection
    visible = collection.select { |item| item.display? }
    [visible.length, visible.count { |item| not item.documented? }]
  end

  ##
  # Call this to mark the end of parsing for display purposes

  def done_adding
    @display.done_adding
  end

  ##
  # The documentation status of this project.  +true+ when 100%, +false+ when
  # less than 100% and +nil+ when unknown.
  #
  # Set by calling #calculate

  def fully_documented?
    @fully_documented
  end

  ##
  # A report that says you did a great job!

  def great_job
    report = RDoc::Markup::Document.new

    report << RDoc::Markup::Paragraph.new('100% documentation!')
    report << RDoc::Markup::Paragraph.new('Great Job!')

    report
  end

  ##
  # Calculates the percentage of items documented.

  def percent_doc
    return @percent_doc if @percent_doc

    @fully_documented = (@num_items - @doc_items) == 0

    @percent_doc = @doc_items.to_f / @num_items * 100 if @num_items.nonzero?
    @percent_doc ||= 0

    @percent_doc
  end

  ##
  # Returns a report on which items are not documented

  def report
    if @coverage_level > 0 then
      extend RDoc::Text
    end

    if @coverage_level.zero? then
      calculate

      return great_job if @num_items == @doc_items
    end

    ucm = @store.unique_classes_and_modules

    report = RDoc::Markup::Document.new
    report << RDoc::Markup::Paragraph.new('The following items are not documented:')
    report << RDoc::Markup::BlankLine.new

    ucm.sort.each do |cm|
      body = report_class_module(cm) {
        [
          report_constants(cm),
          report_attributes(cm),
          report_methods(cm),
        ].compact
      }

      report << body if body
    end

    if @coverage_level > 0 then
      calculate

      return great_job if @num_items == @doc_items
    end

    report
  end

  ##
  # Returns a report on undocumented attributes in ClassModule +cm+

  def report_attributes cm
    return if cm.attributes.empty?

    report = []

    cm.each_attribute do |attr|
      next if attr.documented?
      line = attr.line ? ":#{attr.line}" : nil
      report << "  #{attr.definition} :#{attr.name} # in file #{attr.file.full_name}#{line}\n"
      report << "\n"
    end

    report
  end

  ##
  # Returns a report on undocumented items in ClassModule +cm+

  def report_class_module cm
    return if cm.fully_documented? and @coverage_level.zero?
    return unless cm.display?

    report = RDoc::Markup::Document.new

    if cm.in_files.empty? then
      report << RDoc::Markup::Paragraph.new("#{cm.definition} is referenced but empty.")
      report << RDoc::Markup::Paragraph.new("It probably came from another project.  I'm sorry I'm holding it against you.")

      return report
    elsif cm.documented? then
      documented = true
      klass = RDoc::Markup::Verbatim.new("#{cm.definition} # is documented\n")
    else
      report << RDoc::Markup::Paragraph.new('In files:')

      list = RDoc::Markup::List.new :BULLET

      cm.in_files.each do |file|
        para = RDoc::Markup::Paragraph.new file.full_name
        list << RDoc::Markup::ListItem.new(nil, para)
      end

      report << list
      report << RDoc::Markup::BlankLine.new

      klass = RDoc::Markup::Verbatim.new("#{cm.definition}\n")
    end

    klass << "\n"

    body = yield.flatten # HACK remove #flatten

    if body.empty? then
      return if documented

      klass.parts.pop
    else
      klass.parts.concat body
    end

    klass << "end\n"

    report << klass

    report
  end

  ##
  # Returns a report on undocumented constants in ClassModule +cm+

  def report_constants cm
    return if cm.constants.empty?

    report = []

    cm.each_constant do |constant|
      # TODO constant aliases are listed in the summary but not reported
      # figure out what to do here
      next if constant.documented? || constant.is_alias_for

      line = constant.line ? ":#{constant.line}" : line
      report << "  # in file #{constant.file.full_name}#{line}\n"
      report << "  #{constant.name} = nil\n"
      report << "\n"
    end

    report
  end

  ##
  # Returns a report on undocumented methods in ClassModule +cm+

  def report_methods cm
    return if cm.method_list.empty?

    report = []

    cm.each_method do |method|
      next if method.documented? and @coverage_level.zero?

      if @coverage_level > 0 then
        params, undoc = undoc_params method

        @num_params += params

        unless undoc.empty? then
          @undoc_params += undoc.length

          undoc = undoc.map do |param| "+#{param}+" end
          param_report = "  # #{undoc.join ', '} is not documented\n"
        end
      end

      next if method.documented? and not param_report

      line = method.line ? ":#{method.line}" : nil
      scope = method.singleton ? 'self.' : nil

      report << "  # in file #{method.file.full_name}#{line}\n"
      report << param_report if param_report
      report << "  def #{scope}#{method.name}#{method.params}; end\n"
      report << "\n"
    end

    report
  end

  ##
  # Returns a summary of the collected statistics.

  def summary
    calculate

    num_width = [@num_files, @num_items].max.to_s.length
    undoc_width = [
      @undoc_attributes,
      @undoc_classes,
      @undoc_constants,
      @undoc_items,
      @undoc_methods,
      @undoc_modules,
      @undoc_params,
    ].max.to_s.length

    report = RDoc::Markup::Verbatim.new

    report << "Files:      %*d\n" % [num_width, @num_files]

    report << "\n"

    report << "Classes:    %*d (%*d undocumented)\n" % [
      num_width, @num_classes, undoc_width, @undoc_classes]
    report << "Modules:    %*d (%*d undocumented)\n" % [
      num_width, @num_modules, undoc_width, @undoc_modules]
    report << "Constants:  %*d (%*d undocumented)\n" % [
      num_width, @num_constants, undoc_width, @undoc_constants]
    report << "Attributes: %*d (%*d undocumented)\n" % [
      num_width, @num_attributes, undoc_width, @undoc_attributes]
    report << "Methods:    %*d (%*d undocumented)\n" % [
      num_width, @num_methods, undoc_width, @undoc_methods]
    report << "Parameters: %*d (%*d undocumented)\n" % [
      num_width, @num_params, undoc_width, @undoc_params] if
        @coverage_level > 0

    report << "\n"

    report << "Total:      %*d (%*d undocumented)\n" % [
      num_width, @num_items, undoc_width, @undoc_items]

    report << "%6.2f%% documented\n" % percent_doc
    report << "\n"
    report << "Elapsed: %0.1fs\n" % (Time.now - @start)

    RDoc::Markup::Document.new report
  end

  ##
  # Determines which parameters in +method+ were not documented.  Returns a
  # total parameter count and an Array of undocumented methods.

  def undoc_params method
    @formatter ||= RDoc::Markup::ToTtOnly.new

    params = method.param_list

    params = params.map { |param| param.gsub(/^\*\*?/, '') }

    return 0, [] if params.empty?

    document = parse method.comment

    tts = document.accept @formatter

    undoc = params - tts

    [params.length, undoc]
  end

  autoload :Quiet,   'rdoc/stats/quiet'
  autoload :Normal,  'rdoc/stats/normal'
  autoload :Verbose, 'rdoc/stats/verbose'

end

PKAH[��#�SpSp/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup.rbnu�[���# frozen_string_literal: true
##
# RDoc::Markup parses plain text documents and attempts to decompose them into
# their constituent parts.  Some of these parts are high-level: paragraphs,
# chunks of verbatim text, list entries and the like.  Other parts happen at
# the character level: a piece of bold text, a word in code font.  This markup
# is similar in spirit to that used on WikiWiki webs, where folks create web
# pages using a simple set of formatting rules.
#
# RDoc::Markup and other markup formats do no output formatting, this is
# handled by the RDoc::Markup::Formatter subclasses.
#
# = Supported Formats
#
# Besides the RDoc::Markup format, the following formats are built in to RDoc:
#
# markdown::
#   The markdown format as described by
#   http://daringfireball.net/projects/markdown/.  See RDoc::Markdown for
#   details on the parser and supported extensions.
# rd::
#   The rdtool format.  See RDoc::RD for details on the parser and format.
# tomdoc::
#   The TomDoc format as described by http://tomdoc.org/.  See RDoc::TomDoc
#   for details on the parser and supported extensions.
#
# You can choose a markup format using the following methods:
#
# per project::
#   If you build your documentation with rake use RDoc::Task#markup.
#
#   If you build your documentation by hand run:
#
#      rdoc --markup your_favorite_format --write-options
#
#   and commit <tt>.rdoc_options</tt> and ship it with your packaged gem.
# per file::
#   At the top of the file use the <tt>:markup:</tt> directive to set the
#   default format for the rest of the file.
# per comment::
#   Use the <tt>:markup:</tt> directive at the top of a comment you want
#   to write in a different format.
#
# = RDoc::Markup
#
# RDoc::Markup is extensible at runtime: you can add \new markup elements to
# be recognized in the documents that RDoc::Markup parses.
#
# RDoc::Markup is intended to be the basis for a family of tools which share
# the common requirement that simple, plain-text should be rendered in a
# variety of different output formats and media.  It is envisaged that
# RDoc::Markup could be the basis for formatting RDoc style comment blocks,
# Wiki entries, and online FAQs.
#
# == Synopsis
#
# This code converts +input_string+ to HTML.  The conversion takes place in
# the +convert+ method, so you can use the same RDoc::Markup converter to
# convert multiple input strings.
#
#   require 'rdoc'
#
#   h = RDoc::Markup::ToHtml.new(RDoc::Options.new)
#
#   puts h.convert(input_string)
#
# You can extend the RDoc::Markup parser to recognize new markup
# sequences, and to add regexp handling. Here we make WikiWords significant to
# the parser, and also make the sequences {word} and \<no>text...</no> signify
# strike-through text.  We then subclass the HTML output class to deal
# with these:
#
#   require 'rdoc'
#
#   class WikiHtml < RDoc::Markup::ToHtml
#     def handle_regexp_WIKIWORD(target)
#       "<font color=red>" + target.text + "</font>"
#     end
#   end
#
#   markup = RDoc::Markup.new
#   markup.add_word_pair("{", "}", :STRIKE)
#   markup.add_html("no", :STRIKE)
#
#   markup.add_regexp_handling(/\b([A-Z][a-z]+[A-Z]\w+)/, :WIKIWORD)
#
#   wh = WikiHtml.new RDoc::Options.new, markup
#   wh.add_tag(:STRIKE, "<strike>", "</strike>")
#
#   puts "<body>#{wh.convert ARGF.read}</body>"
#
# == Encoding
#
# Where Encoding support is available, RDoc will automatically convert all
# documents to the same output encoding.  The output encoding can be set via
# RDoc::Options#encoding and defaults to Encoding.default_external.
#
# = \RDoc Markup Reference
#
# == Block Markup
#
# === Paragraphs and Verbatim
#
# The markup engine looks for a document's natural left margin.  This is
# used as the initial margin for the document.
#
# Consecutive lines starting at this margin are considered to be a
# paragraph. Empty lines separate paragraphs.
#
# Any line that starts to the right of the current margin is treated
# as verbatim text.  This is useful for code listings:
#
#   3.times { puts "Ruby" }
#
# In verbatim text, two or more blank lines are collapsed into one,
# and trailing blank lines are removed:
#
#   This is the first line
#
#
#   This is the second non-blank line,
#   after 2 blank lines in the source markup.
#
#
# There were two trailing blank lines right above this paragraph, that
# have been removed. In addition, the verbatim text has been shifted
# left, so the amount of indentation of verbatim text is unimportant.
#
# For HTML output RDoc makes a small effort to determine if a verbatim section
# contains Ruby source code.  If so, the verbatim block will be marked up as
# HTML.  Triggers include "def", "class", "module", "require", the "hash
# rocket"# (=>) or a block call with a parameter.
#
# === Headers
#
# A line starting with an equal sign (=) is treated as a
# heading.  Level one headings have one equals sign, level two headings
# have two, and so on until level six, which is the maximum
# (seven hyphens or more result in a level six heading).
#
# For example, the above header was obtained with:
#
#   === Headers
#
# In HTML output headers have an id matching their name.  The above example's
# HTML is:
#
#   <h3 id="label-Headers">Headers</h3>
#
# If a heading is inside a method body the id will be prefixed with the
# method's id.  If the above header where in the documentation for a method
# such as:
#
#   ##
#   # This method does fun things
#   #
#   # = Example
#   #
#   #   Example of fun things goes here ...
#
#   def do_fun_things
#   end
#
# The header's id would be:
#
#   <h1 id="method-i-do_fun_things-label-Example">Example</h1>
#
# The label can be linked-to using <tt>SomeClass@Headers</tt>.  See
# {Links}[RDoc::Markup@Links] for further details.
#
# === Rules
#
# A line starting with three or more hyphens (at the current indent)
# generates a horizontal rule.
#
#   ---
#
# produces:
#
# ---
#
# === Simple Lists
#
# If a paragraph starts with a "*", "-", "<digit>." or "<letter>.",
# then it is taken to be the start of a list.  The margin is increased to be
# the first non-space following the list start flag.  Subsequent lines
# should be indented to this new margin until the list ends.  For example:
#
#   * this is a list with three paragraphs in
#     the first item.  This is the first paragraph.
#
#     And this is the second paragraph.
#
#     1. This is an indented, numbered list.
#     2. This is the second item in that list
#
#     This is the third conventional paragraph in the
#     first list item.
#
#   * This is the second item in the original list
#
# produces:
#
# * this is a list with three paragraphs in
#   the first item.  This is the first paragraph.
#
#   And this is the second paragraph.
#
#   1. This is an indented, numbered list.
#   2. This is the second item in that list
#
#   This is the third conventional paragraph in the
#   first list item.
#
# * This is the second item in the original list
#
# === Labeled Lists
#
# You can also construct labeled lists, sometimes called description
# or definition lists.  Do this by putting the label in square brackets
# and indenting the list body:
#
#   [cat]  a small furry mammal
#          that seems to sleep a lot
#
#   [ant]  a little insect that is known
#          to enjoy picnics
#
# produces:
#
# [cat]  a small furry mammal
#        that seems to sleep a lot
#
# [ant]  a little insect that is known
#        to enjoy picnics
#
# If you want the list bodies to line up to the left of the labels,
# use two colons:
#
#   cat::  a small furry mammal
#          that seems to sleep a lot
#
#   ant::  a little insect that is known
#          to enjoy picnics
#
# produces:
#
# cat::  a small furry mammal
#        that seems to sleep a lot
#
# ant::  a little insect that is known
#        to enjoy picnics
#
# Notice that blank lines right after the label are ignored in labeled lists:
#
#   [one]
#
#       definition 1
#
#   [two]
#
#       definition 2
#
# produces the same output as
#
#   [one]  definition 1
#   [two]  definition 2
#
#
# === Lists and Verbatim
#
# If you want to introduce a verbatim section right after a list, it has to be
# less indented than the list item bodies, but more indented than the list
# label, letter, digit or bullet. For instance:
#
#   *   point 1
#
#   *   point 2, first paragraph
#
#       point 2, second paragraph
#         verbatim text inside point 2
#       point 2, third paragraph
#     verbatim text outside of the list (the list is therefore closed)
#   regular paragraph after the list
#
# produces:
#
# *   point 1
#
# *   point 2, first paragraph
#
#     point 2, second paragraph
#       verbatim text inside point 2
#     point 2, third paragraph
#   verbatim text outside of the list (the list is therefore closed)
# regular paragraph after the list
#
# == Text Markup
#
# === Bold, Italic, Typewriter Text
#
# You can use markup within text (except verbatim) to change the
# appearance of parts of that text.  Out of the box, RDoc::Markup
# supports word-based and general markup.
#
# Word-based markup uses flag characters around individual words:
#
# <tt>\*_word_\*</tt>::  displays _word_ in a *bold* font
# <tt>\__word_\_</tt>::  displays _word_ in an _emphasized_ font
# <tt>\+_word_\+</tt>::  displays _word_ in a +code+ font
#
# General markup affects text between a start delimiter and an end
# delimiter.  Not surprisingly, these delimiters look like HTML markup.
#
# <tt>\<b>_text_</b></tt>::    displays _text_ in a *bold* font
# <tt>\<em>_text_</em></tt>::  displays _text_ in an _emphasized_ font
#                              (alternate tag: <tt>\<i></tt>)
# <tt>\<tt>_text_\</tt></tt>:: displays _text_ in a +code+ font
#                              (alternate tag: <tt>\<code></tt>)
#
# Unlike conventional Wiki markup, general markup can cross line
# boundaries.  You can turn off the interpretation of markup by
# preceding the first character with a backslash (see <i>Escaping
# Text Markup</i>, below).
#
# === Links
#
# Links to starting with +http:+, +https:+, +mailto:+, +ftp:+ or +www.+
# are recognized.  An HTTP url that references an external image is converted
# into an inline image element.
#
# Classes and methods will be automatically linked to their definition.  For
# example, <tt>RDoc::Markup</tt> will link to this documentation.  By default
# methods will only be automatically linked if they contain an <tt>_</tt> (all
# methods can be automatically linked through the <tt>--hyperlink-all</tt>
# command line option).
#
# Single-word methods can be linked by using the <tt>#</tt> character for
# instance methods or <tt>::</tt> for class methods.  For example,
# <tt>#convert</tt> links to #convert.  A class or method may be combined like
# <tt>RDoc::Markup#convert</tt>.
#
# A heading inside the documentation can be linked by following the class
# or method by an <tt>@</tt> then the heading name.
# <tt>RDoc::Markup@Links</tt> will link to this section like this:
# RDoc::Markup@Links.  Spaces in headings with multiple words must be escaped
# with <tt>+</tt> like <tt>RDoc::Markup@Escaping+Text+Markup</tt>.
# Punctuation and other special characters must be escaped like CGI.escape.
#
# The <tt>@</tt> can also be used to link to sections.  If a section and a
# heading share the same name the section is preferred for the link.
#
# Links can also be of the form <tt>label[url]</tt>, in which case +label+ is
# used in the displayed text, and +url+ is used as the target.  If +label+
# contains multiple words, put it in braces: <tt>{multi word label}[url]</tt>.
# The +url+ may be an +http:+-type link or a cross-reference to a class,
# module or method with a label.
#
# Links with the <code>rdoc-image:</code> scheme will create an image tag for
# HTML output.  Only fully-qualified URLs are supported.
#
# Links with the <tt>rdoc-ref:</tt> scheme will link to the referenced class,
# module, method, file, etc.  If the referenced item is does not exist
# no link will be generated and <tt>rdoc-ref:</tt> will be removed from the
# resulting text.
#
# Links starting with <tt>rdoc-label:label_name</tt> will link to the
# +label_name+.  You can create a label for the current link (for
# bidirectional links) by supplying a name for the current link like
# <tt>rdoc-label:label-other:label-mine</tt>.
#
# Links starting with +link:+ refer to local files whose path is relative to
# the <tt>--op</tt> directory.  Use <tt>rdoc-ref:</tt> instead of
# <tt>link:</tt> to link to files generated by RDoc as the link target may
# be different across RDoc generators.
#
# Example links:
#
#   https://github.com/ruby/rdoc
#   mailto:user@example.com
#   {RDoc Documentation}[http://rdoc.rubyforge.org]
#   {RDoc Markup}[rdoc-ref:RDoc::Markup]
#
# === Escaping Text Markup
#
# Text markup can be escaped with a backslash, as in \<tt>, which was obtained
# with <tt>\\<tt></tt>.  Except in verbatim sections and between \<tt> tags,
# to produce a backslash you have to double it unless it is followed by a
# space, tab or newline. Otherwise, the HTML formatter will discard it, as it
# is used to escape potential links:
#
#   * The \ must be doubled if not followed by white space: \\.
#   * But not in \<tt> tags: in a Regexp, <tt>\S</tt> matches non-space.
#   * This is a link to {ruby-lang}[www.ruby-lang.org].
#   * This is not a link, however: \{ruby-lang.org}[www.ruby-lang.org].
#   * This will not be linked to \RDoc::RDoc#document
#
# generates:
#
# * The \ must be doubled if not followed by white space: \\.
# * But not in \<tt> tags: in a Regexp, <tt>\S</tt> matches non-space.
# * This is a link to {ruby-lang}[www.ruby-lang.org]
# * This is not a link, however: \{ruby-lang.org}[www.ruby-lang.org]
# * This will not be linked to \RDoc::RDoc#document
#
# Inside \<tt> tags, more precisely, leading backslashes are removed only if
# followed by a markup character (<tt><*_+</tt>), a backslash, or a known link
# reference (a known class or method). So in the example above, the backslash
# of <tt>\S</tt> would be removed if there was a class or module named +S+ in
# the current context.
#
# This behavior is inherited from RDoc version 1, and has been kept for
# compatibility with existing RDoc documentation.
#
# === Conversion of characters
#
# HTML will convert two/three dashes to an em-dash. Other common characters are
# converted as well:
#
#   em-dash::  -- or ---
#   ellipsis:: ...
#
#   single quotes:: 'text' or `text'
#   double quotes:: "text" or ``text''
#
#   copyright:: (c)
#   registered trademark:: (r)
#
# produces:
#
# em-dash::  -- or ---
# ellipsis:: ...
#
# single quotes:: 'text' or `text'
# double quotes:: "text" or ``text''
#
# copyright:: (c)
# registered trademark:: (r)
#
#
# == Documenting Source Code
#
# Comment blocks can be written fairly naturally, either using <tt>#</tt> on
# successive lines of the comment, or by including the comment in
# a <tt>=begin</tt>/<tt>=end</tt> block.  If you use the latter form,
# the <tt>=begin</tt> line _must_ be flagged with an +rdoc+ tag:
#
#   =begin rdoc
#   Documentation to be processed by RDoc.
#
#   ...
#   =end
#
# RDoc stops processing comments if it finds a comment line starting
# with <tt>--</tt> right after the <tt>#</tt> character (otherwise,
# it will be treated as a rule if it has three dashes or more).
# This can be used to separate external from internal comments,
# or to stop a comment being associated with a method, class, or module.
# Commenting can be turned back on with a line that starts with <tt>++</tt>.
#
#   ##
#   # Extract the age and calculate the date-of-birth.
#   #--
#   # FIXME: fails if the birthday falls on February 29th
#   #++
#   # The DOB is returned as a Time object.
#
#   def get_dob(person)
#     # ...
#   end
#
# Names of classes, files, and any method names containing an underscore or
# preceded by a hash character are automatically linked from comment text to
# their description. This linking works inside the current class or module,
# and with ancestor methods (in included modules or in the superclass).
#
# Method parameter lists are extracted and displayed with the method
# description.  If a method calls +yield+, then the parameters passed to yield
# will also be displayed:
#
#   def fred
#     ...
#     yield line, address
#
# This will get documented as:
#
#   fred() { |line, address| ... }
#
# You can override this using a comment containing ':yields: ...' immediately
# after the method definition
#
#   def fred # :yields: index, position
#     # ...
#
#     yield line, address
#
# which will get documented as
#
#    fred() { |index, position| ... }
#
# +:yields:+ is an example of a documentation directive.  These appear
# immediately after the start of the document element they are modifying.
#
# RDoc automatically cross-references words with underscores or camel-case.
# To suppress cross-references, prefix the word with a \ character.  To
# include special characters like "<tt>\n</tt>", you'll need to use
# two \ characters in normal text, but only one in \<tt> text:
#
#   "\\n" or "<tt>\n</tt>"
#
# produces:
#
# "\\n" or "<tt>\n</tt>"
#
# == Directives
#
# Directives are keywords surrounded by ":" characters.
#
# === Controlling what is documented
#
# [+:nodoc:+ / <tt>:nodoc: all</tt>]
#   This directive prevents documentation for the element from
#   being generated.  For classes and modules, methods, aliases,
#   constants, and attributes directly within the affected class or
#   module also will be omitted.  By default, though, modules and
#   classes within that class or module _will_ be documented.  This is
#   turned off by adding the +all+ modifier.
#
#     module MyModule # :nodoc:
#       class Input
#       end
#     end
#
#     module OtherModule # :nodoc: all
#       class Output
#       end
#     end
#
#   In the above code, only class <tt>MyModule::Input</tt> will be documented.
#
#   The +:nodoc:+ directive, like +:enddoc:+, +:stopdoc:+ and +:startdoc:+
#   presented below, is local to the current file: if you do not want to
#   document a module that appears in several files, specify +:nodoc:+ on each
#   appearance, at least once per file.
#
# [+:stopdoc:+ / +:startdoc:+]
#   Stop and start adding new documentation elements to the current container.
#   For example, if a class has a number of constants that you don't want to
#   document, put a +:stopdoc:+ before the first, and a +:startdoc:+ after the
#   last.  If you don't specify a +:startdoc:+ by the end of the container,
#   disables documentation for the rest of the current file.
#
# [+:doc:+]
#   Forces a method or attribute to be documented even if it wouldn't be
#   otherwise.  Useful if, for example, you want to include documentation of a
#   particular private method.
#
# [+:enddoc:+]
#   Document nothing further at the current level: directives +:startdoc:+ and
#   +:doc:+ that appear after this will not be honored for the current container
#   (file, class or module), in the current file.
#
# [+:notnew:+ / +:not_new:+ / +:not-new:+ ]
#   Only applicable to the +initialize+ instance method.  Normally RDoc
#   assumes that the documentation and parameters for +initialize+ are
#   actually for the +new+ method, and so fakes out a +new+ for the class.
#   The +:notnew:+ directive stops this.  Remember that +initialize+ is private,
#   so you won't see the documentation unless you use the +-a+ command line
#   option.
#
# === Method arguments
#
# [+:arg:+ or +:args:+ _parameters_]
#   Overrides the default argument handling with exactly these parameters.
#
#     ##
#     #  :args: a, b
#
#     def some_method(*a)
#     end
#
# [+:yield:+ or +:yields:+ _parameters_]
#   Overrides the default yield discovery with these parameters.
#
#     ##
#     # :yields: key, value
#
#     def each_thing &block
#       @things.each(&block)
#     end
#
# [+:call-seq:+]
#   Lines up to the next blank line or lines with a common prefix in the
#   comment are treated as the method's calling sequence, overriding the
#   default parsing of method parameters and yield arguments.
#
#   Multiple lines may be used.
#
#     # :call-seq:
#     #   ARGF.readlines(sep=$/)     -> array
#     #   ARGF.readlines(limit)      -> array
#     #   ARGF.readlines(sep, limit) -> array
#     #
#     #   ARGF.to_a(sep=$/)     -> array
#     #   ARGF.to_a(limit)      -> array
#     #   ARGF.to_a(sep, limit) -> array
#     #
#     # The remaining lines are documentation ...
#
# === Sections
#
# Sections allow you to group methods in a class into sensible containers.  If
# you use the sections 'Public', 'Internal' and 'Deprecated' (the three
# allowed method statuses from TomDoc) the sections will be displayed in that
# order placing the most useful methods at the top.  Otherwise, sections will
# be displayed in alphabetical order.
#
# [+:category:+ _section_]
#   Adds this item to the named +section+ overriding the current section.  Use
#   this to group methods by section in RDoc output while maintaining a
#   sensible ordering (like alphabetical).
#
#     # :category: Utility Methods
#     #
#     # CGI escapes +text+
#
#     def convert_string text
#       CGI.escapeHTML text
#     end
#
#   An empty category will place the item in the default category:
#
#     # :category:
#     #
#     # This method is in the default category
#
#     def some_method
#       # ...
#     end
#
#   Unlike the :section: directive, :category: is not sticky.  The category
#   only applies to the item immediately following the comment.
#
#   Use the :section: directive to provide introductory text for a section of
#   documentation.
#
# [+:section:+ _title_]
#   Provides section introductory text in RDoc output.  The title following
#   +:section:+ is used as the section name and the remainder of the comment
#   containing the section is used as introductory text.  A section's comment
#   block must be separated from following comment blocks.  Use an empty title
#   to switch to the default section.
#
#   The :section: directive is sticky, so subsequent methods, aliases,
#   attributes, and classes will be contained in this section until the
#   section is changed.  The :category: directive will override the :section:
#   directive.
#
#   A :section: comment block may have one or more lines before the :section:
#   directive.  These will be removed, and any identical lines at the end of
#   the block are also removed.  This allows you to add visual cues to the
#   section.
#
#   Example:
#
#     # ----------------------------------------
#     # :section: My Section
#     # This is the section that I wrote.
#     # See it glisten in the noon-day sun.
#     # ----------------------------------------
#
#     ##
#     # Comment for some_method
#
#     def some_method
#       # ...
#     end
#
# === Other directives
#
# [+:markup:+ _type_]
#   Overrides the default markup type for this comment with the specified
#   markup type.  For Ruby files, if the first comment contains this directive
#   it is applied automatically to all comments in the file.
#
#   Unless you are converting between markup formats you should use a
#   <code>.rdoc_options</code> file to specify the default documentation
#   format for your entire project.  See RDoc::Options@Saved+Options for
#   instructions.
#
#   At the top of a file the +:markup:+ directive applies to the entire file:
#
#     # coding: UTF-8
#     # :markup: TomDoc
#
#     # TomDoc comment here ...
#
#     class MyClass
#       # ...
#
#   For just one comment:
#
#       # ...
#     end
#
#     # :markup: RDoc
#     #
#     # This is a comment in RDoc markup format ...
#
#     def some_method
#       # ...
#
#   See Markup@CONTRIBUTING for instructions on adding a new markup format.
#
# [+:include:+ _filename_]
#   Include the contents of the named file at this point. This directive
#   must appear alone on one line, possibly preceded by spaces. In this
#   position, it can be escaped with a \ in front of the first colon.
#
#   The file will be searched for in the directories listed by the +--include+
#   option, or in the current directory by default.  The contents of the file
#   will be shifted to have the same indentation as the ':' at the start of
#   the +:include:+ directive.
#
# [+:title:+ _text_]
#   Sets the title for the document.  Equivalent to the <tt>--title</tt>
#   command line parameter.  (The command line parameter overrides any :title:
#   directive in the source).
#
# [+:main:+ _name_]
#   Equivalent to the <tt>--main</tt> command line parameter.
#
#--
# Original Author:: Dave Thomas,  dave@pragmaticprogrammer.com
# License:: Ruby license

class RDoc::Markup

  ##
  # An AttributeManager which handles inline markup.

  attr_reader :attribute_manager

  ##
  # Parses +str+ into an RDoc::Markup::Document.

  def self.parse str
    RDoc::Markup::Parser.parse str
  rescue RDoc::Markup::Parser::Error => e
    $stderr.puts <<-EOF
While parsing markup, RDoc encountered a #{e.class}:

#{e}
\tfrom #{e.backtrace.join "\n\tfrom "}

---8<---
#{text}
---8<---

RDoc #{RDoc::VERSION}

Ruby #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} #{RUBY_RELEASE_DATE}

Please file a bug report with the above information at:

https://github.com/ruby/rdoc/issues

    EOF
    raise
  end

  ##
  # Take a block of text and use various heuristics to determine its
  # structure (paragraphs, lists, and so on).  Invoke an event handler as we
  # identify significant chunks.

  def initialize attribute_manager = nil
    @attribute_manager = attribute_manager || RDoc::Markup::AttributeManager.new
    @output = nil
  end

  ##
  # Add to the sequences used to add formatting to an individual word (such
  # as *bold*).  Matching entries will generate attributes that the output
  # formatters can recognize by their +name+.

  def add_word_pair(start, stop, name)
    @attribute_manager.add_word_pair(start, stop, name)
  end

  ##
  # Add to the sequences recognized as general markup.

  def add_html(tag, name)
    @attribute_manager.add_html(tag, name)
  end

  ##
  # Add to other inline sequences.  For example, we could add WikiWords using
  # something like:
  #
  #    parser.add_regexp_handling(/\b([A-Z][a-z]+[A-Z]\w+)/, :WIKIWORD)
  #
  # Each wiki word will be presented to the output formatter.

  def add_regexp_handling(pattern, name)
    @attribute_manager.add_regexp_handling(pattern, name)
  end

  ##
  # We take +input+, parse it if necessary, then invoke the output +formatter+
  # using a Visitor to render the result.

  def convert input, formatter
    document = case input
               when RDoc::Markup::Document then
                 input
               else
                 RDoc::Markup::Parser.parse input
               end

    document.accept formatter
  end

  autoload :Parser,                'rdoc/markup/parser'
  autoload :PreProcess,            'rdoc/markup/pre_process'

  # Inline markup classes
  autoload :AttrChanger,           'rdoc/markup/attr_changer'
  autoload :AttrSpan,              'rdoc/markup/attr_span'
  autoload :Attributes,            'rdoc/markup/attributes'
  autoload :AttributeManager,      'rdoc/markup/attribute_manager'
  autoload :RegexpHandling,        'rdoc/markup/regexp_handling'

  # RDoc::Markup AST
  autoload :BlankLine,             'rdoc/markup/blank_line'
  autoload :BlockQuote,            'rdoc/markup/block_quote'
  autoload :Document,              'rdoc/markup/document'
  autoload :HardBreak,             'rdoc/markup/hard_break'
  autoload :Heading,               'rdoc/markup/heading'
  autoload :Include,               'rdoc/markup/include'
  autoload :IndentedParagraph,     'rdoc/markup/indented_paragraph'
  autoload :List,                  'rdoc/markup/list'
  autoload :ListItem,              'rdoc/markup/list_item'
  autoload :Paragraph,             'rdoc/markup/paragraph'
  autoload :Raw,                   'rdoc/markup/raw'
  autoload :Rule,                  'rdoc/markup/rule'
  autoload :Verbatim,              'rdoc/markup/verbatim'

  # Formatters
  autoload :Formatter,             'rdoc/markup/formatter'

  autoload :ToAnsi,                'rdoc/markup/to_ansi'
  autoload :ToBs,                  'rdoc/markup/to_bs'
  autoload :ToHtml,                'rdoc/markup/to_html'
  autoload :ToHtmlCrossref,        'rdoc/markup/to_html_crossref'
  autoload :ToHtmlSnippet,         'rdoc/markup/to_html_snippet'
  autoload :ToLabel,               'rdoc/markup/to_label'
  autoload :ToMarkdown,            'rdoc/markup/to_markdown'
  autoload :ToRdoc,                'rdoc/markup/to_rdoc'
  autoload :ToTableOfContents,     'rdoc/markup/to_table_of_contents'
  autoload :ToTest,                'rdoc/markup/to_test'
  autoload :ToTtOnly,              'rdoc/markup/to_tt_only'

end

PKAH[�Ԣ�&&3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/any_method.rbnu�[���# frozen_string_literal: true
##
# AnyMethod is the base class for objects representing methods

class RDoc::AnyMethod < RDoc::MethodAttr

  ##
  # 2::
  #   RDoc 4
  #   Added calls_super
  #   Added parent name and class
  #   Added section title
  # 3::
  #   RDoc 4.1
  #   Added is_alias_for

  MARSHAL_VERSION = 3 # :nodoc:

  ##
  # Don't rename \#initialize to \::new

  attr_accessor :dont_rename_initialize

  ##
  # The C function that implements this method (if it was defined in a C file)

  attr_accessor :c_function

  ##
  # Different ways to call this method

  attr_reader :call_seq

  ##
  # Parameters for this method

  attr_accessor :params

  ##
  # If true this method uses +super+ to call a superclass version

  attr_accessor :calls_super

  include RDoc::TokenStream

  ##
  # Creates a new AnyMethod with a token stream +text+ and +name+

  def initialize text, name
    super

    @c_function = nil
    @dont_rename_initialize = false
    @token_stream = nil
    @calls_super = false
    @superclass_method = nil
  end

  ##
  # Adds +an_alias+ as an alias for this method in +context+.

  def add_alias an_alias, context = nil
    method = self.class.new an_alias.text, an_alias.new_name

    method.record_location an_alias.file
    method.singleton = self.singleton
    method.params = self.params
    method.visibility = self.visibility
    method.comment = an_alias.comment
    method.is_alias_for = self
    @aliases << method
    context.add_method method if context
    method
  end

  ##
  # Prefix for +aref+ is 'method'.

  def aref_prefix
    'method'
  end

  ##
  # The call_seq or the param_seq with method name, if there is no call_seq.
  #
  # Use this for displaying a method's argument lists.

  def arglists
    if @call_seq then
      @call_seq
    elsif @params then
      "#{name}#{param_seq}"
    end
  end

  ##
  # Sets the different ways you can call this method.  If an empty +call_seq+
  # is given nil is assumed.
  #
  # See also #param_seq

  def call_seq= call_seq
    return if call_seq.empty?

    @call_seq = call_seq
  end

  ##
  # Loads is_alias_for from the internal name.  Returns nil if the alias
  # cannot be found.

  def is_alias_for # :nodoc:
    case @is_alias_for
    when RDoc::MethodAttr then
      @is_alias_for
    when Array then
      return nil unless @store

      klass_name, singleton, method_name = @is_alias_for

      return nil unless klass = @store.find_class_or_module(klass_name)

      @is_alias_for = klass.find_method method_name, singleton
    end
  end

  ##
  # Dumps this AnyMethod for use by ri.  See also #marshal_load

  def marshal_dump
    aliases = @aliases.map do |a|
      [a.name, parse(a.comment)]
    end

    is_alias_for = [
      @is_alias_for.parent.full_name,
      @is_alias_for.singleton,
      @is_alias_for.name
    ] if @is_alias_for

    [ MARSHAL_VERSION,
      @name,
      full_name,
      @singleton,
      @visibility,
      parse(@comment),
      @call_seq,
      @block_params,
      aliases,
      @params,
      @file.relative_name,
      @calls_super,
      @parent.name,
      @parent.class,
      @section.title,
      is_alias_for,
    ]
  end

  ##
  # Loads this AnyMethod from +array+.  For a loaded AnyMethod the following
  # methods will return cached values:
  #
  # * #full_name
  # * #parent_name

  def marshal_load array
    initialize_visibility

    @dont_rename_initialize = nil
    @token_stream           = nil
    @aliases                = []
    @parent                 = nil
    @parent_name            = nil
    @parent_class           = nil
    @section                = nil
    @file                   = nil

    version        = array[0]
    @name          = array[1]
    @full_name     = array[2]
    @singleton     = array[3]
    @visibility    = array[4]
    @comment       = array[5]
    @call_seq      = array[6]
    @block_params  = array[7]
    #                      8 handled below
    @params        = array[9]
    #                      10 handled below
    @calls_super   = array[11]
    @parent_name   = array[12]
    @parent_title  = array[13]
    @section_title = array[14]
    @is_alias_for  = array[15]

    array[8].each do |new_name, comment|
      add_alias RDoc::Alias.new(nil, @name, new_name, comment, @singleton)
    end

    @parent_name ||= if @full_name =~ /#/ then
                       $`
                     else
                       name = @full_name.split('::')
                       name.pop
                       name.join '::'
                     end

    @file = RDoc::TopLevel.new array[10] if version > 0
  end

  ##
  # Method name
  #
  # If the method has no assigned name, it extracts it from #call_seq.

  def name
    return @name if @name

    @name =
      @call_seq[/^.*?\.(\w+)/, 1] ||
      @call_seq[/^.*?(\w+)/, 1] ||
      @call_seq if @call_seq
  end

  ##
  # A list of this method's method and yield parameters.  +call-seq+ params
  # are preferred over parsed method and block params.

  def param_list
    if @call_seq then
      params = @call_seq.split("\n").last
      params = params.sub(/.*?\((.*)\)/, '\1')
      params = params.sub(/(\{|do)\s*\|([^|]*)\|.*/, ',\2')
    elsif @params then
      params = @params.sub(/\((.*)\)/, '\1')

      params << ",#{@block_params}" if @block_params
    elsif @block_params then
      params = @block_params
    else
      return []
    end

    if @block_params then
      # If this method has explicit block parameters, remove any explicit
      # &block
      params = params.sub(/,?\s*&\w+/, '')
    else
      params = params.sub(/\&(\w+)/, '\1')
    end

    params = params.gsub(/\s+/, '').split(',').reject(&:empty?)

    params.map { |param| param.sub(/=.*/, '') }
  end

  ##
  # Pretty parameter list for this method.  If the method's parameters were
  # given by +call-seq+ it is preferred over the parsed values.

  def param_seq
    if @call_seq then
      params = @call_seq.split("\n").last
      params = params.sub(/[^( ]+/, '')
      params = params.sub(/(\|[^|]+\|)\s*\.\.\.\s*(end|\})/, '\1 \2')
    elsif @params then
      params = @params.gsub(/\s*\#.*/, '')
      params = params.tr_s("\n ", " ")
      params = "(#{params})" unless params[0] == ?(
    else
      params = ''
    end

    if @block_params then
      # If this method has explicit block parameters, remove any explicit
      # &block
      params = params.sub(/,?\s*&\w+/, '')

      block = @block_params.tr_s("\n ", " ")
      if block[0] == ?(
        block = block.sub(/^\(/, '').sub(/\)/, '')
      end
      params << " { |#{block}| ... }"
    end

    params
  end

  ##
  # Sets the store for this method and its referenced code objects.

  def store= store
    super

    @file = @store.add_file @file.full_name if @file
  end

  ##
  # For methods that +super+, find the superclass method that would be called.

  def superclass_method
    return unless @calls_super
    return @superclass_method if @superclass_method

    parent.each_ancestor do |ancestor|
      if method = ancestor.method_list.find { |m| m.name == @name } then
        @superclass_method = method
        break
      end
    end

    @superclass_method
  end

end

PKAH[�5�33/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser.rbnu�[���# -*- coding: us-ascii -*-
# frozen_string_literal: true

##
# A parser is simple a class that subclasses RDoc::Parser and implements #scan
# to fill in an RDoc::TopLevel with parsed data.
#
# The initialize method takes an RDoc::TopLevel to fill with parsed content,
# the name of the file to be parsed, the content of the file, an RDoc::Options
# object and an RDoc::Stats object to inform the user of parsed items.  The
# scan method is then called to parse the file and must return the
# RDoc::TopLevel object.  By calling super these items will be set for you.
#
# In order to be used by RDoc the parser needs to register the file extensions
# it can parse.  Use ::parse_files_matching to register extensions.
#
#   require 'rdoc'
#
#   class RDoc::Parser::Xyz < RDoc::Parser
#     parse_files_matching /\.xyz$/
#
#     def initialize top_level, file_name, content, options, stats
#       super
#
#       # extra initialization if needed
#     end
#
#     def scan
#       # parse file and fill in @top_level
#     end
#   end

class RDoc::Parser

  @parsers = []

  class << self

    ##
    # An Array of arrays that maps file extension (or name) regular
    # expressions to parser classes that will parse matching filenames.
    #
    # Use parse_files_matching to register a parser's file extensions.

    attr_reader :parsers

  end

  ##
  # The name of the file being parsed

  attr_reader :file_name

  ##
  # Alias an extension to another extension. After this call, files ending
  # "new_ext" will be parsed using the same parser as "old_ext"

  def self.alias_extension(old_ext, new_ext)
    old_ext = old_ext.sub(/^\.(.*)/, '\1')
    new_ext = new_ext.sub(/^\.(.*)/, '\1')

    parser = can_parse_by_name "xxx.#{old_ext}"
    return false unless parser

    RDoc::Parser.parsers.unshift [/\.#{new_ext}$/, parser]

    true
  end

  ##
  # Determines if the file is a "binary" file which basically means it has
  # content that an RDoc parser shouldn't try to consume.

  def self.binary?(file)
    return false if file =~ /\.(rdoc|txt)$/

    s = File.read(file, 1024) or return false

    return true if s[0, 2] == Marshal.dump('')[0, 2] or s.index("\x00")

    mode = 'r:utf-8' # default source encoding has been chagened to utf-8
    s.sub!(/\A#!.*\n/, '')     # assume shebang line isn't longer than 1024.
    encoding = s[/^\s*\#\s*(?:-\*-\s*)?(?:en)?coding:\s*([^\s;]+?)(?:-\*-|[\s;])/, 1]
    mode = "rb:#{encoding}" if encoding
    s = File.open(file, mode) {|f| f.gets(nil, 1024)}

    not s.valid_encoding?
  end

  ##
  # Checks if +file+ is a zip file in disguise.  Signatures from
  # http://www.garykessler.net/library/file_sigs.html

  def self.zip? file
    zip_signature = File.read file, 4

    zip_signature == "PK\x03\x04" or
      zip_signature == "PK\x05\x06" or
      zip_signature == "PK\x07\x08"
  rescue
    false
  end

  ##
  # Return a parser that can handle a particular extension

  def self.can_parse file_name
    parser = can_parse_by_name file_name

    # HACK Selenium hides a jar file using a .txt extension
    return if parser == RDoc::Parser::Simple and zip? file_name

    parser
  end

  ##
  # Returns a parser that can handle the extension for +file_name+.  This does
  # not depend upon the file being readable.

  def self.can_parse_by_name file_name
    _, parser = RDoc::Parser.parsers.find { |regexp,| regexp =~ file_name }

    # The default parser must not parse binary files
    ext_name = File.extname file_name
    return parser if ext_name.empty?

    if parser == RDoc::Parser::Simple and ext_name !~ /txt|rdoc/ then
      case check_modeline file_name
      when nil, 'rdoc' then # continue
      else return nil
      end
    end

    parser
  rescue Errno::EACCES
  end

  ##
  # Returns the file type from the modeline in +file_name+

  def self.check_modeline file_name
    line = File.open file_name do |io|
      io.gets
    end

    /-\*-\s*(.*?\S)\s*-\*-/ =~ line

    return nil unless type = $1

    if /;/ =~ type then
      return nil unless /(?:\s|\A)mode:\s*([^\s;]+)/i =~ type
      type = $1
    end

    return nil if /coding:/i =~ type

    type.downcase
  rescue ArgumentError
  rescue Encoding::InvalidByteSequenceError # invalid byte sequence

  end

  ##
  # Finds and instantiates the correct parser for the given +file_name+ and
  # +content+.

  def self.for top_level, file_name, content, options, stats
    return if binary? file_name

    parser = use_markup content

    unless parser then
      parse_name = file_name

      # If no extension, look for shebang
      if file_name !~ /\.\w+$/ && content =~ %r{\A#!(.+)} then
        shebang = $1
        case shebang
        when %r{env\s+ruby}, %r{/ruby}
          parse_name = 'dummy.rb'
        end
      end

      parser = can_parse parse_name
    end

    return unless parser

    content = remove_modeline content

    parser.new top_level, file_name, content, options, stats
  rescue SystemCallError
    nil
  end

  ##
  # Record which file types this parser can understand.
  #
  # It is ok to call this multiple times.

  def self.parse_files_matching(regexp)
    RDoc::Parser.parsers.unshift [regexp, self]
  end

  ##
  # Removes an emacs-style modeline from the first line of the document

  def self.remove_modeline content
    content.sub(/\A.*-\*-\s*(.*?\S)\s*-\*-.*\r?\n/, '')
  end

  ##
  # If there is a <tt>markup: parser_name</tt> comment at the front of the
  # file, use it to determine the parser.  For example:
  #
  #   # markup: rdoc
  #   # Class comment can go here
  #
  #   class C
  #   end
  #
  # The comment should appear as the first line of the +content+.
  #
  # If the content contains a shebang or editor modeline the comment may
  # appear on the second or third line.
  #
  # Any comment style may be used to hide the markup comment.

  def self.use_markup content
    markup = content.lines.first(3).grep(/markup:\s+(\w+)/) { $1 }.first

    return unless markup

    # TODO Ruby should be returned only when the filename is correct
    return RDoc::Parser::Ruby if %w[tomdoc markdown].include? markup

    markup = Regexp.escape markup

    _, selected = RDoc::Parser.parsers.find do |_, parser|
      /^#{markup}$/i =~ parser.name.sub(/.*:/, '')
    end

    selected
  end

  ##
  # Creates a new Parser storing +top_level+, +file_name+, +content+,
  # +options+ and +stats+ in instance variables.  In +@preprocess+ an
  # RDoc::Markup::PreProcess object is created which allows processing of
  # directives.

  def initialize top_level, file_name, content, options, stats
    @top_level = top_level
    @top_level.parser = self.class
    @store = @top_level.store

    @file_name = file_name
    @content = content
    @options = options
    @stats = stats

    @preprocess = RDoc::Markup::PreProcess.new @file_name, @options.rdoc_include
    @preprocess.options = @options
  end

  autoload :RubyTools, 'rdoc/parser/ruby_tools'
  autoload :Text,      'rdoc/parser/text'

end

# simple must come first in order to show up last in the parsers list
require 'rdoc/parser/simple'
require 'rdoc/parser/c'
require 'rdoc/parser/changelog'
require 'rdoc/parser/markdown'
require 'rdoc/parser/rd'
require 'rdoc/parser/ruby'
PKAH[S�2��2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n/text.rbnu�[���# frozen_string_literal: true
##
# An i18n supported text.
#
# This object provides the following two features:
#
#   * Extracts translation messages from wrapped raw text.
#   * Translates wrapped raw text in specified locale.
#
# Wrapped raw text is one of String, RDoc::Comment or Array of them.

class RDoc::I18n::Text

  ##
  # Creates a new i18n supported text for +raw+ text.

  def initialize(raw)
    @raw = raw
  end

  ##
  # Extracts translation target messages and yields each message.
  #
  # Each yielded message is a Hash. It consists of the followings:
  #
  # :type      :: :paragraph
  # :paragraph :: String (The translation target message itself.)
  # :line_no   :: Integer (The line number of the :paragraph is started.)
  #
  # The above content may be added in the future.

  def extract_messages
    parse do |part|
      case part[:type]
      when :empty_line
        # ignore
      when :paragraph
        yield(part)
      end
    end
  end

  # Translates raw text into +locale+.
  def translate(locale)
    translated_text = ''
    parse do |part|
      case part[:type]
      when :paragraph
        translated_text += locale.translate(part[:paragraph])
      when :empty_line
        translated_text += part[:line]
      else
        raise "should not reach here: unexpected type: #{type}"
      end
    end
    translated_text
  end

  private
  def parse(&block)
    paragraph = ''
    paragraph_start_line = 0
    line_no = 0

    each_line(@raw) do |line|
      line_no += 1
      case line
      when /\A\s*\z/
        if paragraph.empty?
          emit_empty_line_event(line, line_no, &block)
        else
          paragraph += line
          emit_paragraph_event(paragraph, paragraph_start_line, line_no,
                               &block)
          paragraph = ''
        end
      else
        paragraph_start_line = line_no if paragraph.empty?
        paragraph += line
      end
    end

    unless paragraph.empty?
      emit_paragraph_event(paragraph, paragraph_start_line, line_no, &block)
    end
  end

  def each_line(raw, &block)
    case raw
    when RDoc::Comment
      raw.text.each_line(&block)
    when Array
      raw.each do |comment, location|
        each_line(comment, &block)
      end
    else
      raw.each_line(&block)
    end
  end

  def emit_empty_line_event(line, line_no)
    part = {
      :type => :empty_line,
      :line => line,
      :line_no => line_no,
    }
    yield(part)
  end

  def emit_paragraph_event(paragraph, paragraph_start_line, line_no, &block)
    paragraph_part = {
      :type => :paragraph,
      :line_no => paragraph_start_line,
    }
    match_data = /(\s*)\z/.match(paragraph)
    if match_data
      paragraph_part[:paragraph] = match_data.pre_match
      yield(paragraph_part)
      emit_empty_line_event(match_data[1], line_no, &block)
    else
      paragraph_part[:paragraph] = paragraph
      yield(paragraph_part)
    end
  end

end
PKAH[KzVf	f	4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n/locale.rbnu�[���# frozen_string_literal: true
##
# A message container for a locale.
#
# This object provides the following two features:
#
#   * Loads translated messages from .po file.
#   * Translates a message into the locale.

class RDoc::I18n::Locale

  @@locales = {} # :nodoc:

  class << self

    ##
    # Returns the locale object for +locale_name+.

    def [](locale_name)
      @@locales[locale_name] ||= new(locale_name)
    end

    ##
    # Sets the locale object for +locale_name+.
    #
    # Normally, this method is not used. This method is useful for
    # testing.

    def []=(locale_name, locale)
      @@locales[locale_name] = locale
    end

  end

  ##
  # The name of the locale. It uses IETF language tag format
  # +[language[_territory][.codeset][@modifier]]+.
  #
  # See also {BCP 47 - Tags for Identifying
  # Languages}[http://tools.ietf.org/rfc/bcp/bcp47.txt].

  attr_reader :name

  ##
  # Creates a new locale object for +name+ locale. +name+ must
  # follow IETF language tag format.

  def initialize(name)
    @name = name
    @messages = {}
  end

  ##
  # Loads translation messages from +locale_directory+/+@name+/rdoc.po
  # or +locale_directory+/+@name+.po. The former has high priority.
  #
  # This method requires gettext gem for parsing .po file. If you
  # don't have gettext gem, this method doesn't load .po file. This
  # method warns and returns +false+.
  #
  # Returns +true+ if succeeded, +false+ otherwise.

  def load(locale_directory)
    return false if @name.nil?

    po_file_candidates = [
      File.join(locale_directory, @name, 'rdoc.po'),
      File.join(locale_directory, "#{@name}.po"),
    ]
    po_file = po_file_candidates.find do |po_file_candidate|
      File.exist?(po_file_candidate)
    end
    return false unless po_file

    begin
      require 'gettext/po_parser'
      require 'gettext/mo'
    rescue LoadError
      warn('Need gettext gem for i18n feature:')
      warn('  gem install gettext')
      return false
    end

    po_parser = GetText::POParser.new
    messages = GetText::MO.new
    po_parser.report_warning = false
    po_parser.parse_file(po_file, messages)

    @messages.merge!(messages)

    true
  end

  ##
  # Translates the +message+ into locale. If there is no translation
  # messages for +message+ in locale, +message+ itself is returned.

  def translate(message)
    @messages[message] || message
  end

end
PKAH[󈗢��6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/normal_module.rbnu�[���# frozen_string_literal: true
##
# A normal module, like NormalClass

class RDoc::NormalModule < RDoc::ClassModule

  def aref_prefix # :nodoc:
    'module'
  end

  def inspect # :nodoc:
    "#<%s:0x%x module %s includes: %p extends: %p attributes: %p methods: %p aliases: %p>" % [
      self.class, object_id,
      full_name, @includes, @extends, @attributes, @method_list, @aliases
    ]
  end

  ##
  # The definition of this module, <tt>module MyModuleName</tt>

  def definition
    "module #{full_name}"
  end

  ##
  # This is a module, returns true

  def module?
    true
  end

  def pretty_print q # :nodoc:
    q.group 2, "[module #{full_name}: ", "]" do
      q.breakable
      q.text "includes:"
      q.breakable
      q.seplist @includes do |inc| q.pp inc end
      q.breakable

      q.breakable
      q.text "constants:"
      q.breakable
      q.seplist @constants do |const| q.pp const end

      q.text "attributes:"
      q.breakable
      q.seplist @attributes do |attr| q.pp attr end
      q.breakable

      q.text "methods:"
      q.breakable
      q.seplist @method_list do |meth| q.pp meth end
      q.breakable

      q.text "aliases:"
      q.breakable
      q.seplist @aliases do |aliaz| q.pp aliaz end
      q.breakable

      q.text "comment:"
      q.breakable
      q.pp comment
    end
  end

  ##
  # Modules don't have one, raises NoMethodError

  def superclass
    raise NoMethodError, "#{full_name} is a module"
  end

end

PKAH[��tUU1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/store.rbnu�[���# frozen_string_literal: true
module RDoc::RI

  Store = RDoc::Store # :nodoc:

end

PKBH[�L�!660share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/task.rbnu�[���# frozen_string_literal: true
begin
  gem 'rdoc'
rescue Gem::LoadError
end unless defined?(RDoc)

require 'rdoc/task'

##
# RDoc::RI::Task creates ri data in <code>./.rdoc</code> for your project.
#
# It contains the following tasks:
#
# [ri]
#   Build ri data
#
# [clobber_ri]
#   Delete ri data files.  This target is automatically added to the main
#   clobber target.
#
# [reri]
#   Rebuild the ri data from scratch even if they are not out of date.
#
# Simple example:
#
#   require 'rdoc/ri/task'
#
#   RDoc::RI::Task.new do |ri|
#     ri.main = 'README.rdoc'
#     ri.rdoc_files.include 'README.rdoc', 'lib/**/*.rb'
#   end
#
# For further configuration details see RDoc::Task.

class RDoc::RI::Task < RDoc::Task

  DEFAULT_NAMES = { # :nodoc:
    :clobber_rdoc => :clobber_ri,
    :rdoc         => :ri,
    :rerdoc       => :reri,
  }

  ##
  # Create an ri task with the given name. See RDoc::Task for documentation on
  # setting names.

  def initialize name = DEFAULT_NAMES # :yield: self
    super
  end

  def clobber_task_description # :nodoc:
    "Remove RI data files"
  end

  ##
  # Sets default task values

  def defaults
    super

    @rdoc_dir = '.rdoc'
  end

  def rdoc_task_description # :nodoc:
    'Build RI data files'
  end

  def rerdoc_task_description # :nodoc:
    'Rebuild RI data files'
  end
end
PKBH[
qh�1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/paths.rbnu�[���# frozen_string_literal: true
require 'rdoc/rdoc'

##
# The directories where ri data lives.  Paths can be enumerated via ::each, or
# queried individually via ::system_dir, ::site_dir, ::home_dir and ::gem_dir.

module RDoc::RI::Paths

  #:stopdoc:
  require 'rbconfig'

  version = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']

  BASE    = if RbConfig::CONFIG.key? 'ridir' then
              File.join RbConfig::CONFIG['ridir'], version
            else
              File.join RbConfig::CONFIG['datadir'], 'ri', version
            end

  homedir = begin
              File.expand_path('~')
            rescue ArgumentError
            end

  homedir ||= ENV['HOME'] ||
              ENV['USERPROFILE'] || ENV['HOMEPATH'] # for 1.8 compatibility

  HOMEDIR = if homedir then
              File.join homedir, ".rdoc"
            end
  #:startdoc:

  ##
  # Iterates over each selected path yielding the directory and type.
  #
  # Yielded types:
  # :system:: Where Ruby's ri data is stored.  Yielded when +system+ is
  #           true
  # :site:: Where ri for installed libraries are stored.  Yielded when
  #         +site+ is true.  Normally no ri data is stored here.
  # :home:: ~/.rdoc.  Yielded when +home+ is true.
  # :gem:: ri data for an installed gem.  Yielded when +gems+ is true.
  # :extra:: ri data directory from the command line.  Yielded for each
  #          entry in +extra_dirs+

  def self.each system = true, site = true, home = true, gems = :latest, *extra_dirs # :yields: directory, type
    return enum_for __method__, system, site, home, gems, *extra_dirs unless
      block_given?

    extra_dirs.each do |dir|
      yield dir, :extra
    end

    yield system_dir,  :system if system
    yield site_dir,    :site   if site
    yield home_dir,    :home   if home and HOMEDIR

    gemdirs(gems).each do |dir|
      yield dir, :gem
    end if gems

    nil
  end

  ##
  # The ri directory for the gem with +gem_name+.

  def self.gem_dir name, version
    req = Gem::Requirement.new "= #{version}"

    spec = Gem::Specification.find_by_name name, req

    File.join spec.doc_dir, 'ri'
  end

  ##
  # The latest installed gems' ri directories.  +filter+ can be :all or
  # :latest.
  #
  # A +filter+ :all includes all versions of gems and includes gems without
  # ri documentation.

  def self.gemdirs filter = :latest
    ri_paths = {}

    all = Gem::Specification.map do |spec|
      [File.join(spec.doc_dir, 'ri'), spec.name, spec.version]
    end

    if filter == :all then
      gemdirs = []

      all.group_by do |_, name, _|
        name
      end.sort_by do |group, _|
        group
      end.map do |group, items|
        items.sort_by do |_, _, version|
          version
        end.reverse_each do |dir,|
          gemdirs << dir
        end
      end

      return gemdirs
    end

    all.each do |dir, name, ver|
      next unless File.exist? dir

      if ri_paths[name].nil? or ver > ri_paths[name].first then
        ri_paths[name] = [ver, name, dir]
      end
    end

    ri_paths.sort_by { |_, (_, name, _)| name }.map { |k, v| v.last }
  rescue LoadError
    []
  end

  ##
  # The location of the rdoc data in the user's home directory.
  #
  # Like ::system, ri data in the user's home directory is rare and predates
  # libraries distributed via RubyGems.  ri data is rarely generated into this
  # directory.

  def self.home_dir
    HOMEDIR
  end

  ##
  # Returns existing directories from the selected documentation directories
  # as an Array.
  #
  # See also ::each

  def self.path(system = true, site = true, home = true, gems = :latest, *extra_dirs)
    path = raw_path system, site, home, gems, *extra_dirs

    path.select { |directory| File.directory? directory }
  end

  ##
  # Returns selected documentation directories including nonexistent
  # directories.
  #
  # See also ::each

  def self.raw_path(system, site, home, gems, *extra_dirs)
    path = []

    each(system, site, home, gems, *extra_dirs) do |dir, type|
      path << dir
    end

    path.compact
  end

  ##
  # The location of ri data installed into the site dir.
  #
  # Historically this was available for documentation installed by Ruby
  # libraries predating RubyGems.  It is unlikely to contain any content for
  # modern Ruby installations.

  def self.site_dir
    File.join BASE, 'site'
  end

  ##
  # The location of the built-in ri data.
  #
  # This data is built automatically when `make` is run when Ruby is
  # installed.  If you did not install Ruby by hand you may need to install
  # the documentation yourself.  Please consult the documentation for your
  # package manager or Ruby installer for details.  You can also use the
  # rdoc-data gem to install system ri data for common versions of Ruby.

  def self.system_dir
    File.join BASE, 'system'
  end

end
PKBH[V�nrr5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/formatter.rbnu�[���# frozen_string_literal: true
##
# For RubyGems backwards compatibility

module RDoc::RI::Formatter # :nodoc:
end
PKBH[��y�y�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/driver.rbnu�[���# frozen_string_literal: true
require 'abbrev'
require 'optparse'

begin
  require 'readline'
rescue LoadError
end

begin
  require 'win32console'
rescue LoadError
end

require 'rdoc'

##
# For RubyGems backwards compatibility

require 'rdoc/ri/formatter'

##
# The RI driver implements the command-line ri tool.
#
# The driver supports:
# * loading RI data from:
#   * Ruby's standard library
#   * RubyGems
#   * ~/.rdoc
#   * A user-supplied directory
# * Paging output (uses RI_PAGER environment variable, PAGER environment
#   variable or the less, more and pager programs)
# * Interactive mode with tab-completion
# * Abbreviated names (ri Zl shows Zlib documentation)
# * Colorized output
# * Merging output from multiple RI data sources

class RDoc::RI::Driver

  ##
  # Base Driver error class

  class Error < RDoc::RI::Error; end

  ##
  # Raised when a name isn't found in the ri data stores

  class NotFoundError < Error

    def initialize(klass, suggestions = nil) # :nodoc:
      @klass = klass
      @suggestions = suggestions
    end

    ##
    # Name that wasn't found

    def name
      @klass
    end

    def message # :nodoc:
      str = "Nothing known about #{@klass}"
      if @suggestions and !@suggestions.empty?
        str += "\nDid you mean?  #{@suggestions.join("\n               ")}"
      end
      str
    end
  end

  ##
  # Show all method documentation following a class or module

  attr_accessor :show_all

  ##
  # An RDoc::RI::Store for each entry in the RI path

  attr_accessor :stores

  ##
  # Controls the user of the pager vs $stdout

  attr_accessor :use_stdout

  ##
  # Default options for ri

  def self.default_options
    options = {}
    options[:interactive] = false
    options[:profile]     = false
    options[:show_all]    = false
    options[:use_stdout]  = !$stdout.tty?
    options[:width]       = 72

    # By default all standard paths are used.
    options[:use_system]     = true
    options[:use_site]       = true
    options[:use_home]       = true
    options[:use_gems]       = true
    options[:extra_doc_dirs] = []

    return options
  end

  ##
  # Dump +data_path+ using pp

  def self.dump data_path
    require 'pp'

    File.open data_path, 'rb' do |io|
      pp Marshal.load(io.read)
    end
  end

  ##
  # Parses +argv+ and returns a Hash of options

  def self.process_args argv
    options = default_options

    opts = OptionParser.new do |opt|
      opt.accept File do |file,|
        File.readable?(file) and not File.directory?(file) and file
      end

      opt.program_name = File.basename $0
      opt.version = RDoc::VERSION
      opt.release = nil
      opt.summary_indent = ' ' * 4

      opt.banner = <<-EOT
Usage: #{opt.program_name} [options] [name ...]

Where name can be:

  Class | Module | Module::Class

  Class::method | Class#method | Class.method | method

  gem_name: | gem_name:README | gem_name:History

All class names may be abbreviated to their minimum unambiguous form.
If a name is ambiguous, all valid options will be listed.

A '.' matches either class or instance methods, while #method
matches only instance and ::method matches only class methods.

README and other files may be displayed by prefixing them with the gem name
they're contained in.  If the gem name is followed by a ':' all files in the
gem will be shown.  The file name extension may be omitted where it is
unambiguous.

For example:

    #{opt.program_name} Fil
    #{opt.program_name} File
    #{opt.program_name} File.new
    #{opt.program_name} zip
    #{opt.program_name} rdoc:README

Note that shell quoting or escaping may be required for method names
containing punctuation:

    #{opt.program_name} 'Array.[]'
    #{opt.program_name} compact\\!

To see the default directories #{opt.program_name} will search, run:

    #{opt.program_name} --list-doc-dirs

Specifying the --system, --site, --home, --gems, or --doc-dir options
will limit ri to searching only the specified directories.

ri options may be set in the RI environment variable.

The ri pager can be set with the RI_PAGER environment variable
or the PAGER environment variable.
      EOT

      opt.separator nil
      opt.separator "Options:"

      opt.separator nil

      opt.on("--[no-]interactive", "-i",
             "In interactive mode you can repeatedly",
             "look up methods with autocomplete.") do |interactive|
        options[:interactive] = interactive
      end

      opt.separator nil

      opt.on("--[no-]all", "-a",
             "Show all documentation for a class or",
             "module.") do |show_all|
        options[:show_all] = show_all
      end

      opt.separator nil

      opt.on("--[no-]list", "-l",
             "List classes ri knows about.") do |list|
        options[:list] = list
      end

      opt.separator nil

      opt.on("--[no-]pager",
             "Send output to a pager,",
             "rather than directly to stdout.") do |use_pager|
        options[:use_stdout] = !use_pager
      end

      opt.separator nil

      opt.on("-T",
             "Synonym for --no-pager.") do
        options[:use_stdout] = true
      end

      opt.separator nil

      opt.on("--width=WIDTH", "-w", OptionParser::DecimalInteger,
             "Set the width of the output.") do |width|
        options[:width] = width
      end

      opt.separator nil

      opt.on("--server[=PORT]", Integer,
             "Run RDoc server on the given port.",
             "The default port is 8214.") do |port|
        options[:server] = port || 8214
      end

      opt.separator nil

      formatters = RDoc::Markup.constants.grep(/^To[A-Z][a-z]+$/).sort
      formatters = formatters.sort.map do |formatter|
        formatter.to_s.sub('To', '').downcase
      end
      formatters -= %w[html label test] # remove useless output formats

      opt.on("--format=NAME", "-f",
             "Use the selected formatter.  The default",
             "formatter is bs for paged output and ansi",
             "otherwise.  Valid formatters are:",
             "#{formatters.join(', ')}.", formatters) do |value|
        options[:formatter] = RDoc::Markup.const_get "To#{value.capitalize}"
      end

      opt.separator nil

      opt.on("--help", "-h",
             "Show help and exit.") do
        puts opts
        exit
      end

      opt.separator nil

      opt.on("--version", "-v",
             "Output version information and exit.") do
        puts "#{opts.program_name} #{opts.version}"
        exit
      end

      opt.separator nil
      opt.separator "Data source options:"
      opt.separator nil

      opt.on("--[no-]list-doc-dirs",
             "List the directories from which ri will",
             "source documentation on stdout and exit.") do |list_doc_dirs|
        options[:list_doc_dirs] = list_doc_dirs
      end

      opt.separator nil

      opt.on("--doc-dir=DIRNAME", "-d", Array,
             "List of directories from which to source",
             "documentation in addition to the standard",
             "directories.  May be repeated.") do |value|
        value.each do |dir|
          unless File.directory? dir then
            raise OptionParser::InvalidArgument, "#{dir} is not a directory"
          end

          options[:extra_doc_dirs] << File.expand_path(dir)
        end
      end

      opt.separator nil

      opt.on("--no-standard-docs",
             "Do not include documentation from",
             "the Ruby standard library, site_lib,",
             "installed gems, or ~/.rdoc.",
             "Use with --doc-dir.") do
        options[:use_system] = false
        options[:use_site] = false
        options[:use_gems] = false
        options[:use_home] = false
      end

      opt.separator nil

      opt.on("--[no-]system",
             "Include documentation from Ruby's",
             "standard library.  Defaults to true.") do |value|
        options[:use_system] = value
      end

      opt.separator nil

      opt.on("--[no-]site",
             "Include documentation from libraries",
             "installed in site_lib.",
             "Defaults to true.") do |value|
        options[:use_site] = value
      end

      opt.separator nil

      opt.on("--[no-]gems",
             "Include documentation from RubyGems.",
             "Defaults to true.") do |value|
        options[:use_gems] = value
      end

      opt.separator nil

      opt.on("--[no-]home",
             "Include documentation stored in ~/.rdoc.",
             "Defaults to true.") do |value|
        options[:use_home] = value
      end

      opt.separator nil
      opt.separator "Debug options:"
      opt.separator nil

      opt.on("--[no-]profile",
             "Run with the ruby profiler.") do |value|
        options[:profile] = value
      end

      opt.separator nil

      opt.on("--dump=CACHE", File,
             "Dump data from an ri cache or data file.") do |value|
        options[:dump_path] = value
      end
    end

    argv = ENV['RI'].to_s.split.concat argv

    opts.parse! argv

    options[:names] = argv

    options[:use_stdout] ||= !$stdout.tty?
    options[:use_stdout] ||= options[:interactive]
    options[:width] ||= 72

    options

  rescue OptionParser::InvalidArgument, OptionParser::InvalidOption => e
    puts opts
    puts
    puts e
    exit 1
  end

  ##
  # Runs the ri command line executable using +argv+

  def self.run argv = ARGV
    options = process_args argv

    if options[:dump_path] then
      dump options[:dump_path]
      return
    end

    ri = new options
    ri.run
  end

  ##
  # Creates a new driver using +initial_options+ from ::process_args

  def initialize initial_options = {}
    @paging = false
    @classes = nil

    options = self.class.default_options.update(initial_options)

    @formatter_klass = options[:formatter]

    require 'profile' if options[:profile]

    @names = options[:names]
    @list = options[:list]

    @doc_dirs = []
    @stores   = []

    RDoc::RI::Paths.each(options[:use_system], options[:use_site],
                         options[:use_home], options[:use_gems],
                         *options[:extra_doc_dirs]) do |path, type|
      @doc_dirs << path

      store = RDoc::RI::Store.new path, type
      store.load_cache
      @stores << store
    end

    @list_doc_dirs = options[:list_doc_dirs]

    @interactive = options[:interactive]
    @server      = options[:server]
    @use_stdout  = options[:use_stdout]
    @show_all    = options[:show_all]
    @width       = options[:width]

    # pager process for jruby
    @jruby_pager_process = nil
  end

  ##
  # Adds paths for undocumented classes +also_in+ to +out+

  def add_also_in out, also_in
    return if also_in.empty?

    out << RDoc::Markup::Rule.new(1)
    out << RDoc::Markup::Paragraph.new("Also found in:")

    paths = RDoc::Markup::Verbatim.new
    also_in.each do |store|
      paths.parts.push store.friendly_path, "\n"
    end
    out << paths
  end

  ##
  # Adds a class header to +out+ for class +name+ which is described in
  # +classes+.

  def add_class out, name, classes
    heading = if classes.all? { |klass| klass.module? } then
                name
              else
                superclass = classes.map do |klass|
                  klass.superclass unless klass.module?
                end.compact.shift || 'Object'

                superclass = superclass.full_name unless String === superclass

                "#{name} < #{superclass}"
              end

    out << RDoc::Markup::Heading.new(1, heading)
    out << RDoc::Markup::BlankLine.new
  end

  ##
  # Adds "(from ...)" to +out+ for +store+

  def add_from out, store
    out << RDoc::Markup::Paragraph.new("(from #{store.friendly_path})")
  end

  ##
  # Adds +extends+ to +out+

  def add_extends out, extends
    add_extension_modules out, 'Extended by', extends
  end

  ##
  # Adds a list of +extensions+ to this module of the given +type+ to +out+.
  # add_includes and add_extends call this, so you should use those directly.

  def add_extension_modules out, type, extensions
    return if extensions.empty?

    out << RDoc::Markup::Rule.new(1)
    out << RDoc::Markup::Heading.new(1, "#{type}:")

    extensions.each do |modules, store|
      if modules.length == 1 then
        add_extension_modules_single out, store, modules.first
      else
        add_extension_modules_multiple out, store, modules
      end
    end
  end

  ##
  # Renders multiple included +modules+ from +store+ to +out+.

  def add_extension_modules_multiple out, store, modules # :nodoc:
    out << RDoc::Markup::Paragraph.new("(from #{store.friendly_path})")

    wout, with = modules.partition { |incl| incl.comment.empty? }

    out << RDoc::Markup::BlankLine.new unless with.empty?

    with.each do |incl|
      out << RDoc::Markup::Paragraph.new(incl.name)
      out << RDoc::Markup::BlankLine.new
      out << incl.comment
    end

    unless wout.empty? then
      verb = RDoc::Markup::Verbatim.new

      wout.each do |incl|
        verb.push incl.name, "\n"
      end

      out << verb
    end
  end

  ##
  # Adds a single extension module +include+ from +store+ to +out+

  def add_extension_modules_single out, store, include # :nodoc:
    name = include.name
    path = store.friendly_path
    out << RDoc::Markup::Paragraph.new("#{name} (from #{path})")

    if include.comment then
      out << RDoc::Markup::BlankLine.new
      out << include.comment
    end
  end

  ##
  # Adds +includes+ to +out+

  def add_includes out, includes
    add_extension_modules out, 'Includes', includes
  end

  ##
  # Looks up the method +name+ and adds it to +out+

  def add_method out, name
    filtered   = lookup_method name

    method_out = method_document name, filtered

    out.concat method_out.parts
  end

  ##
  # Adds documentation for all methods in +klass+ to +out+

  def add_method_documentation out, klass
    klass.method_list.each do |method|
      begin
        add_method out, method.full_name
      rescue NotFoundError
        next
      end
    end
  end

  ##
  # Adds a list of +methods+ to +out+ with a heading of +name+

  def add_method_list out, methods, name
    return if methods.empty?

    out << RDoc::Markup::Heading.new(1, "#{name}:")
    out << RDoc::Markup::BlankLine.new

    if @use_stdout and !@interactive then
      out.concat methods.map { |method|
        RDoc::Markup::Verbatim.new method
      }
    else
      out << RDoc::Markup::IndentedParagraph.new(2, methods.join(', '))
    end

    out << RDoc::Markup::BlankLine.new
  end

  ##
  # Returns ancestor classes of +klass+

  def ancestors_of klass
    ancestors = []

    unexamined = [klass]
    seen = []

    loop do
      break if unexamined.empty?
      current = unexamined.shift
      seen << current

      stores = classes[current]

      break unless stores and not stores.empty?

      klasses = stores.map do |store|
        store.ancestors[current]
      end.flatten.uniq

      klasses = klasses - seen

      ancestors.concat klasses
      unexamined.concat klasses
    end

    ancestors.reverse
  end

  ##
  # For RubyGems backwards compatibility

  def class_cache # :nodoc:
  end

  ##
  # Builds a RDoc::Markup::Document from +found+, +klasess+ and +includes+

  def class_document name, found, klasses, includes, extends
    also_in = []

    out = RDoc::Markup::Document.new

    add_class out, name, klasses

    add_includes out, includes
    add_extends  out, extends

    found.each do |store, klass|
      render_class out, store, klass, also_in
    end

    add_also_in out, also_in

    out
  end

  ##
  # Adds the class +comment+ to +out+.

  def class_document_comment out, comment # :nodoc:
    unless comment.empty? then
      out << RDoc::Markup::Rule.new(1)

      if comment.merged? then
        parts = comment.parts
        parts = parts.zip [RDoc::Markup::BlankLine.new] * parts.length
        parts.flatten!
        parts.pop

        out.concat parts
      else
        out << comment
      end
    end
  end

  ##
  # Adds the constants from +klass+ to the Document +out+.

  def class_document_constants out, klass # :nodoc:
    return if klass.constants.empty?

    out << RDoc::Markup::Heading.new(1, "Constants:")
    out << RDoc::Markup::BlankLine.new
    list = RDoc::Markup::List.new :NOTE

    constants = klass.constants.sort_by { |constant| constant.name }

    list.items.concat constants.map { |constant|
      parts = constant.comment.parts if constant.comment
      parts << RDoc::Markup::Paragraph.new('[not documented]') if
        parts.empty?

      RDoc::Markup::ListItem.new(constant.name, *parts)
    }

    out << list
    out << RDoc::Markup::BlankLine.new
  end

  ##
  # Hash mapping a known class or module to the stores it can be loaded from

  def classes
    return @classes if @classes

    @classes = {}

    @stores.each do |store|
      store.cache[:modules].each do |mod|
        # using default block causes searched-for modules to be added
        @classes[mod] ||= []
        @classes[mod] << store
      end
    end

    @classes
  end

  ##
  # Returns the stores wherein +name+ is found along with the classes,
  # extends and includes that match it

  def classes_and_includes_and_extends_for name
    klasses = []
    extends = []
    includes = []

    found = @stores.map do |store|
      begin
        klass = store.load_class name
        klasses  << klass
        extends  << [klass.extends,  store] if klass.extends
        includes << [klass.includes, store] if klass.includes
        [store, klass]
      rescue RDoc::Store::MissingFileError
      end
    end.compact

    extends.reject!  do |modules,| modules.empty? end
    includes.reject! do |modules,| modules.empty? end

    [found, klasses, includes, extends]
  end

  ##
  # Completes +name+ based on the caches.  For Readline

  def complete name
    completions = []

    klass, selector, method = parse_name name

    complete_klass  name, klass, selector, method, completions
    complete_method name, klass, selector,         completions

    completions.sort.uniq
  end

  def complete_klass name, klass, selector, method, completions # :nodoc:
    klasses = classes.keys

    # may need to include Foo when given Foo::
    klass_name = method ? name : klass

    if name !~ /#|\./ then
      completions.replace klasses.grep(/^#{Regexp.escape klass_name}[^:]*$/)
      completions.concat klasses.grep(/^#{Regexp.escape name}[^:]*$/) if
        name =~ /::$/

      completions << klass if classes.key? klass # to complete a method name
    elsif selector then
      completions << klass if classes.key? klass
    elsif classes.key? klass_name then
      completions << klass_name
    end
  end

  def complete_method name, klass, selector, completions # :nodoc:
    if completions.include? klass and name =~ /#|\.|::/ then
      methods = list_methods_matching name

      if not methods.empty? then
        # remove Foo if given Foo:: and a method was found
        completions.delete klass
      elsif selector then
        # replace Foo with Foo:: as given
        completions.delete klass
        completions << "#{klass}#{selector}"
      end

      completions.concat methods
    end
  end

  ##
  # Converts +document+ to text and writes it to the pager

  def display document
    page do |io|
      f = formatter(io)
      f.width = @width if @width and f.respond_to?(:width)
      text = document.accept f

      io.write text
    end
  end

  ##
  # Outputs formatted RI data for class +name+.  Groups undocumented classes

  def display_class name
    return if name =~ /#|\./

    found, klasses, includes, extends =
      classes_and_includes_and_extends_for name

    return if found.empty?

    out = class_document name, found, klasses, includes, extends

    display out
  end

  ##
  # Outputs formatted RI data for method +name+

  def display_method name
    out = RDoc::Markup::Document.new

    add_method out, name

    display out
  end

  ##
  # Outputs formatted RI data for the class or method +name+.
  #
  # Returns true if +name+ was found, false if it was not an alternative could
  # be guessed, raises an error if +name+ couldn't be guessed.

  def display_name name
    if name =~ /\w:(\w|$)/ then
      display_page name
      return true
    end

    return true if display_class name

    display_method name if name =~ /::|#|\./

    true
  rescue NotFoundError
    matches = list_methods_matching name if name =~ /::|#|\./
    matches = classes.keys.grep(/^#{Regexp.escape name}/) if matches.empty?

    raise if matches.empty?

    page do |io|
      io.puts "#{name} not found, maybe you meant:"
      io.puts
      io.puts matches.sort.join("\n")
    end

    false
  end

  ##
  # Displays each name in +name+

  def display_names names
    names.each do |name|
      name = expand_name name

      display_name name
    end
  end

  ##
  # Outputs formatted RI data for page +name+.

  def display_page name
    store_name, page_name = name.split ':', 2

    store = @stores.find { |s| s.source == store_name }

    return display_page_list store if page_name.empty?

    pages = store.cache[:pages]

    unless pages.include? page_name then
      found_names = pages.select do |n|
        n =~ /#{Regexp.escape page_name}\.[^.]+$/
      end

      if found_names.length.zero? then
        return display_page_list store, pages
      elsif found_names.length > 1 then
        return display_page_list store, found_names, page_name
      end

      page_name = found_names.first
    end

    page = store.load_page page_name

    display page.comment
  end

  ##
  # Outputs a formatted RI page list for the pages in +store+.

  def display_page_list store, pages = store.cache[:pages], search = nil
    out = RDoc::Markup::Document.new

    title = if search then
              "#{search} pages"
            else
              'Pages'
            end

    out << RDoc::Markup::Heading.new(1, "#{title} in #{store.friendly_path}")
    out << RDoc::Markup::BlankLine.new

    list = RDoc::Markup::List.new(:BULLET)

    pages.each do |page|
      list << RDoc::Markup::Paragraph.new(page)
    end

    out << list

    display out
  end

  def check_did_you_mean # :nodoc:
    if defined? DidYouMean::SpellChecker
      true
    else
      begin
        require 'did_you_mean'
        if defined? DidYouMean::SpellChecker
          true
        else
          false
        end
      rescue LoadError
        false
      end
    end
  end

  ##
  # Expands abbreviated klass +klass+ into a fully-qualified class.  "Zl::Da"
  # will be expanded to Zlib::DataError.

  def expand_class klass
    class_names = classes.keys
    ary = class_names.grep(Regexp.new("\\A#{klass.gsub(/(?=::|\z)/, '[^:]*')}\\z"))
    if ary.length != 1 && ary.first != klass
      if check_did_you_mean
        suggestions = DidYouMean::SpellChecker.new(dictionary: class_names).correct(klass)
        raise NotFoundError.new(klass, suggestions)
      else
        raise NotFoundError, klass
      end
    end
    ary.first
  end

  ##
  # Expands the class portion of +name+ into a fully-qualified class.  See
  # #expand_class.

  def expand_name name
    klass, selector, method = parse_name name

    return [selector, method].join if klass.empty?

    case selector
    when ':' then
      [find_store(klass),   selector, method]
    else
      [expand_class(klass), selector, method]
    end.join
  end

  ##
  # Filters the methods in +found+ trying to find a match for +name+.

  def filter_methods found, name
    regexp = name_regexp name

    filtered = found.find_all do |store, methods|
      methods.any? { |method| method.full_name =~ regexp }
    end

    return filtered unless filtered.empty?

    found
  end

  ##
  # Yields items matching +name+ including the store they were found in, the
  # class being searched for, the class they were found in (an ancestor) the
  # types of methods to look up (from #method_type), and the method name being
  # searched for

  def find_methods name
    klass, selector, method = parse_name name

    types = method_type selector

    klasses = nil
    ambiguous = klass.empty?

    if ambiguous then
      klasses = classes.keys
    else
      klasses = ancestors_of klass
      klasses.unshift klass
    end

    methods = []

    klasses.each do |ancestor|
      ancestors = classes[ancestor]

      next unless ancestors

      klass = ancestor if ambiguous

      ancestors.each do |store|
        methods << [store, klass, ancestor, types, method]
      end
    end

    methods = methods.sort_by do |_, k, a, _, m|
      [k, a, m].compact
    end

    methods.each do |item|
      yield(*item) # :yields: store, klass, ancestor, types, method
    end

    self
  end

  ##
  # Finds the given +pager+ for jruby.  Returns an IO if +pager+ was found.
  #
  # Returns false if +pager+ does not exist.
  #
  # Returns nil if the jruby JVM doesn't support ProcessBuilder redirection
  # (1.6 and older).

  def find_pager_jruby pager
    require 'java'
    require 'shellwords'

    return nil unless java.lang.ProcessBuilder.constants.include? :Redirect

    pager = Shellwords.split pager

    pb = java.lang.ProcessBuilder.new(*pager)
    pb = pb.redirect_output java.lang.ProcessBuilder::Redirect::INHERIT

    @jruby_pager_process = pb.start

    input = @jruby_pager_process.output_stream

    io = input.to_io
    io.sync = true
    io
  rescue java.io.IOException
    false
  end

  ##
  # Finds a store that matches +name+ which can be the name of a gem, "ruby",
  # "home" or "site".
  #
  # See also RDoc::Store#source

  def find_store name
    @stores.each do |store|
      source = store.source

      return source if source == name

      return source if
        store.type == :gem and source =~ /^#{Regexp.escape name}-\d/
    end

    raise RDoc::RI::Driver::NotFoundError, name
  end

  ##
  # Creates a new RDoc::Markup::Formatter.  If a formatter is given with -f,
  # use it.  If we're outputting to a pager, use bs, otherwise ansi.

  def formatter(io)
    if @formatter_klass then
      @formatter_klass.new
    elsif paging? or !io.tty? then
      RDoc::Markup::ToBs.new
    else
      RDoc::Markup::ToAnsi.new
    end
  end

  ##
  # Runs ri interactively using Readline if it is available.

  def interactive
    puts "\nEnter the method name you want to look up."

    if defined? Readline then
      Readline.completion_proc = method :complete
      puts "You can use tab to autocomplete."
    end

    puts "Enter a blank line to exit.\n\n"

    loop do
      name = if defined? Readline then
               Readline.readline ">> "
             else
               print ">> "
               $stdin.gets
             end

      return if name.nil? or name.empty?

      begin
        display_name expand_name(name.strip)
      rescue NotFoundError => e
        puts e.message
      end
    end

  rescue Interrupt
    exit
  end

  ##
  # Is +file+ in ENV['PATH']?

  def in_path? file
    return true if file =~ %r%\A/% and File.exist? file

    ENV['PATH'].split(File::PATH_SEPARATOR).any? do |path|
      File.exist? File.join(path, file)
    end
  end

  ##
  # Lists classes known to ri starting with +names+.  If +names+ is empty all
  # known classes are shown.

  def list_known_classes names = []
    classes = []

    stores.each do |store|
      classes << store.module_names
    end

    classes = classes.flatten.uniq.sort

    unless names.empty? then
      filter = Regexp.union names.map { |name| /^#{name}/ }

      classes = classes.grep filter
    end

    page do |io|
      if paging? or io.tty? then
        if names.empty? then
          io.puts "Classes and Modules known to ri:"
        else
          io.puts "Classes and Modules starting with #{names.join ', '}:"
        end
        io.puts
      end

      io.puts classes.join("\n")
    end
  end

  ##
  # Returns an Array of methods matching +name+

  def list_methods_matching name
    found = []

    find_methods name do |store, klass, ancestor, types, method|
      if types == :instance or types == :both then
        methods = store.instance_methods[ancestor]

        if methods then
          matches = methods.grep(/^#{Regexp.escape method.to_s}/)

          matches = matches.map do |match|
            "#{klass}##{match}"
          end

          found.concat matches
        end
      end

      if types == :class or types == :both then
        methods = store.class_methods[ancestor]

        next unless methods
        matches = methods.grep(/^#{Regexp.escape method.to_s}/)

        matches = matches.map do |match|
          "#{klass}::#{match}"
        end

        found.concat matches
      end
    end

    found.uniq
  end

  ##
  # Loads RI data for method +name+ on +klass+ from +store+.  +type+ and
  # +cache+ indicate if it is a class or instance method.

  def load_method store, cache, klass, type, name
    methods = store.send(cache)[klass]

    return unless methods

    method = methods.find do |method_name|
      method_name == name
    end

    return unless method

    store.load_method klass, "#{type}#{method}"
  rescue RDoc::Store::MissingFileError => e
    comment = RDoc::Comment.new("missing documentation at #{e.file}").parse

    method = RDoc::AnyMethod.new nil, name
    method.comment = comment
    method
  end

  ##
  # Returns an Array of RI data for methods matching +name+

  def load_methods_matching name
    found = []

    find_methods name do |store, klass, ancestor, types, method|
      methods = []

      methods << load_method(store, :class_methods, ancestor, '::',  method) if
        [:class, :both].include? types

      methods << load_method(store, :instance_methods, ancestor, '#',  method) if
        [:instance, :both].include? types

      found << [store, methods.compact]
    end

    found.reject do |path, methods| methods.empty? end
  end

  ##
  # Returns a filtered list of methods matching +name+

  def lookup_method name
    found = load_methods_matching name

    if found.empty?
      if check_did_you_mean
        methods = []
        _, _, method_name = parse_name name
        find_methods name do |store, klass, ancestor, types, method|
          methods.push(*store.class_methods[klass]) if [:class, :both].include? types
          methods.push(*store.instance_methods[klass]) if [:instance, :both].include? types
        end
        methods = methods.uniq
        suggestions = DidYouMean::SpellChecker.new(dictionary: methods).correct(method_name)
        raise NotFoundError.new(name, suggestions)
      else
        raise NotFoundError, name
      end
    end

    filter_methods found, name
  end

  ##
  # Builds a RDoc::Markup::Document from +found+, +klasses+ and +includes+

  def method_document name, filtered
    out = RDoc::Markup::Document.new

    out << RDoc::Markup::Heading.new(1, name)
    out << RDoc::Markup::BlankLine.new

    filtered.each do |store, methods|
      methods.each do |method|
        render_method out, store, method, name
      end
    end

    out
  end

  ##
  # Returns the type of method (:both, :instance, :class) for +selector+

  def method_type selector
    case selector
    when '.', nil then :both
    when '#'      then :instance
    else               :class
    end
  end

  ##
  # Returns a regular expression for +name+ that will match an
  # RDoc::AnyMethod's name.

  def name_regexp name
    klass, type, name = parse_name name

    case type
    when '#', '::' then
      /^#{klass}#{type}#{Regexp.escape name}$/
    else
      /^#{klass}(#|::)#{Regexp.escape name}$/
    end
  end

  ##
  # Paginates output through a pager program.

  def page
    if pager = setup_pager then
      begin
        yield pager
      ensure
        pager.close
        @jruby_pager_process.wait_for if @jruby_pager_process
      end
    else
      yield $stdout
    end
  rescue Errno::EPIPE
  ensure
    @paging = false
  end

  ##
  # Are we using a pager?

  def paging?
    @paging
  end

  ##
  # Extracts the class, selector and method name parts from +name+ like
  # Foo::Bar#baz.
  #
  # NOTE: Given Foo::Bar, Bar is considered a class even though it may be a
  # method

  def parse_name name
    parts = name.split(/(::?|#|\.)/)

    if parts.length == 1 then
      if parts.first =~ /^[a-z]|^([%&*+\/<>^`|~-]|\+@|-@|<<|<=>?|===?|=>|=~|>>|\[\]=?|~@)$/ then
        type = '.'
        meth = parts.pop
      else
        type = nil
        meth = nil
      end
    elsif parts.length == 2 or parts.last =~ /::|#|\./ then
      type = parts.pop
      meth = nil
    elsif parts[1] == ':' then
      klass = parts.shift
      type  = parts.shift
      meth  = parts.join
    elsif parts[-2] != '::' or parts.last !~ /^[A-Z]/ then
      meth = parts.pop
      type = parts.pop
    end

    klass ||= parts.join

    [klass, type, meth]
  end

  ##
  # Renders the +klass+ from +store+ to +out+.  If the klass has no
  # documentable items the class is added to +also_in+ instead.

  def render_class out, store, klass, also_in # :nodoc:
    comment = klass.comment
    # TODO the store's cache should always return an empty Array
    class_methods    = store.class_methods[klass.full_name]    || []
    instance_methods = store.instance_methods[klass.full_name] || []
    attributes       = store.attributes[klass.full_name]       || []

    if comment.empty? and
       instance_methods.empty? and class_methods.empty? then
      also_in << store
      return
    end

    add_from out, store

    class_document_comment out, comment

    if class_methods or instance_methods or not klass.constants.empty? then
      out << RDoc::Markup::Rule.new(1)
    end

    class_document_constants out, klass

    add_method_list out, class_methods,    'Class methods'
    add_method_list out, instance_methods, 'Instance methods'
    add_method_list out, attributes,       'Attributes'

    add_method_documentation out, klass if @show_all
  end

  def render_method out, store, method, name # :nodoc:
    out << RDoc::Markup::Paragraph.new("(from #{store.friendly_path})")

    unless name =~ /^#{Regexp.escape method.parent_name}/ then
      out << RDoc::Markup::Heading.new(3, "Implementation from #{method.parent_name}")
    end

    out << RDoc::Markup::Rule.new(1)

    render_method_arguments out, method.arglists
    render_method_superclass out, method
    if method.is_alias_for
      al = method.is_alias_for
      alias_for = store.load_method al.parent_name, "#{al.name_prefix}#{al.name}"
      render_method_comment out, method, alias_for
    else
      render_method_comment out, method
    end
  end

  def render_method_arguments out, arglists # :nodoc:
    return unless arglists

    arglists = arglists.chomp.split "\n"
    arglists = arglists.map { |line| line + "\n" }
    out << RDoc::Markup::Verbatim.new(*arglists)
    out << RDoc::Markup::Rule.new(1)
  end

  def render_method_comment out, method, alias_for = nil# :nodoc:
    if alias_for
      unless method.comment.nil? or method.comment.empty?
        out << RDoc::Markup::BlankLine.new
        out << method.comment
      end
      out << RDoc::Markup::BlankLine.new
      out << RDoc::Markup::Paragraph.new("(This method is an alias for #{alias_for.full_name}.)")
      out << RDoc::Markup::BlankLine.new
      out << alias_for.comment
      out << RDoc::Markup::BlankLine.new
    else
      out << RDoc::Markup::BlankLine.new
      out << method.comment
      out << RDoc::Markup::BlankLine.new
    end
  end

  def render_method_superclass out, method # :nodoc:
    return unless
      method.respond_to?(:superclass_method) and method.superclass_method

    out << RDoc::Markup::BlankLine.new
    out << RDoc::Markup::Heading.new(4, "(Uses superclass method #{method.superclass_method})")
    out << RDoc::Markup::Rule.new(1)
  end

  ##
  # Looks up and displays ri data according to the options given.

  def run
    if @list_doc_dirs then
      puts @doc_dirs
    elsif @list then
      list_known_classes @names
    elsif @server then
      start_server
    elsif @interactive or @names.empty? then
      interactive
    else
      display_names @names
    end
  rescue NotFoundError => e
    abort e.message
  end

  ##
  # Sets up a pager program to pass output through.  Tries the RI_PAGER and
  # PAGER environment variables followed by pager, less then more.

  def setup_pager
    return if @use_stdout

    jruby = RUBY_ENGINE == 'jruby'

    pagers = [ENV['RI_PAGER'], ENV['PAGER'], 'pager', 'less', 'more']

    pagers.compact.uniq.each do |pager|
      next unless pager

      pager_cmd = pager.split.first

      next unless in_path? pager_cmd

      if jruby then
        case io = find_pager_jruby(pager)
        when nil   then break
        when false then next
        else            io
        end
      else
        io = IO.popen(pager, 'w') rescue next
      end

      next if $? and $?.pid == io.pid and $?.exited? # pager didn't work

      @paging = true

      return io
    end

    @use_stdout = true

    nil
  end

  ##
  # Starts a WEBrick server for ri.

  def start_server
    require 'webrick'

    server = WEBrick::HTTPServer.new :Port => @server

    extra_doc_dirs = @stores.map {|s| s.type == :extra ? s.path : nil}.compact

    server.mount '/', RDoc::Servlet, nil, extra_doc_dirs

    trap 'INT'  do server.shutdown end
    trap 'TERM' do server.shutdown end

    server.start
  end

end
PKBH[��V*6*6-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rdoc.rbnu�[���# frozen_string_literal: true
require 'rdoc'

require 'find'
require 'fileutils'
require 'pathname'
require 'time'

##
# This is the driver for generating RDoc output.  It handles file parsing and
# generation of output.
#
# To use this class to generate RDoc output via the API, the recommended way
# is:
#
#   rdoc = RDoc::RDoc.new
#   options = rdoc.load_options # returns an RDoc::Options instance
#   # set extra options
#   rdoc.document options
#
# You can also generate output like the +rdoc+ executable:
#
#   rdoc = RDoc::RDoc.new
#   rdoc.document argv
#
# Where +argv+ is an array of strings, each corresponding to an argument you'd
# give rdoc on the command line.  See <tt>rdoc --help</tt> for details.

class RDoc::RDoc

  @current = nil

  ##
  # This is the list of supported output generators

  GENERATORS = {}

  ##
  # Generator instance used for creating output

  attr_accessor :generator

  ##
  # Hash of files and their last modified times.

  attr_reader :last_modified

  ##
  # RDoc options

  attr_accessor :options

  ##
  # Accessor for statistics.  Available after each call to parse_files

  attr_reader :stats

  ##
  # The current documentation store

  attr_reader :store

  ##
  # Add +klass+ that can generate output after parsing

  def self.add_generator(klass)
    name = klass.name.sub(/^RDoc::Generator::/, '').downcase
    GENERATORS[name] = klass
  end

  ##
  # Active RDoc::RDoc instance

  def self.current
    @current
  end

  ##
  # Sets the active RDoc::RDoc instance

  def self.current= rdoc
    @current = rdoc
  end

  ##
  # Creates a new RDoc::RDoc instance.  Call #document to parse files and
  # generate documentation.

  def initialize
    @current       = nil
    @generator     = nil
    @last_modified = {}
    @old_siginfo   = nil
    @options       = nil
    @stats         = nil
    @store         = nil
  end

  ##
  # Report an error message and exit

  def error(msg)
    raise RDoc::Error, msg
  end

  ##
  # Gathers a set of parseable files from the files and directories listed in
  # +files+.

  def gather_files files
    files = ["."] if files.empty?

    file_list = normalized_file_list files, true, @options.exclude

    file_list = file_list.uniq

    file_list = remove_unparseable file_list

    file_list.sort
  end

  ##
  # Turns RDoc from stdin into HTML

  def handle_pipe
    @html = RDoc::Markup::ToHtml.new @options

    parser = RDoc::Text::MARKUP_FORMAT[@options.markup]

    document = parser.parse $stdin.read

    out = @html.convert document

    $stdout.write out
  end

  ##
  # Installs a siginfo handler that prints the current filename.

  def install_siginfo_handler
    return unless Signal.list.include? 'INFO'

    @old_siginfo = trap 'INFO' do
      puts @current if @current
    end
  end

  ##
  # Loads options from .rdoc_options if the file exists, otherwise creates a
  # new RDoc::Options instance.

  def load_options
    options_file = File.expand_path '.rdoc_options'
    return RDoc::Options.new unless File.exist? options_file

    RDoc.load_yaml

    begin
      options = YAML.load_file '.rdoc_options'
    rescue Psych::SyntaxError
    end

    raise RDoc::Error, "#{options_file} is not a valid rdoc options file" unless
      RDoc::Options === options

    options
  end

  ##
  # Create an output dir if it doesn't exist. If it does exist, but doesn't
  # contain the flag file <tt>created.rid</tt> then we refuse to use it, as
  # we may clobber some manually generated documentation

  def setup_output_dir(dir, force)
    flag_file = output_flag_file dir

    last = {}

    if @options.dry_run then
      # do nothing
    elsif File.exist? dir then
      error "#{dir} exists and is not a directory" unless File.directory? dir

      begin
        File.open flag_file do |io|
          unless force then
            Time.parse io.gets

            io.each do |line|
              file, time = line.split "\t", 2
              time = Time.parse(time) rescue next
              last[file] = time
            end
          end
        end
      rescue SystemCallError, TypeError
        error <<-ERROR

Directory #{dir} already exists, but it looks like it isn't an RDoc directory.

Because RDoc doesn't want to risk destroying any of your existing files,
you'll need to specify a different output directory name (using the --op <dir>
option)

        ERROR
      end unless @options.force_output
    else
      FileUtils.mkdir_p dir
      FileUtils.touch flag_file
    end

    last
  end

  ##
  # Sets the current documentation tree to +store+ and sets the store's rdoc
  # driver to this instance.

  def store= store
    @store = store
    @store.rdoc = self
  end

  ##
  # Update the flag file in an output directory.

  def update_output_dir(op_dir, time, last = {})
    return if @options.dry_run or not @options.update_output_dir
    unless ENV['SOURCE_DATE_EPOCH'].nil?
      time = Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).gmtime
    end

    File.open output_flag_file(op_dir), "w" do |f|
      f.puts time.rfc2822
      last.each do |n, t|
        f.puts "#{n}\t#{t.rfc2822}"
      end
    end
  end

  ##
  # Return the path name of the flag file in an output directory.

  def output_flag_file(op_dir)
    File.join op_dir, "created.rid"
  end

  ##
  # The .document file contains a list of file and directory name patterns,
  # representing candidates for documentation. It may also contain comments
  # (starting with '#')

  def parse_dot_doc_file in_dir, filename
    # read and strip comments
    patterns = File.read(filename).gsub(/#.*/, '')

    result = []

    patterns.split.each do |patt|
      candidates = Dir.glob(File.join(in_dir, patt))
      result.concat normalized_file_list(candidates, false, @options.exclude)
    end

    result
  end

  ##
  # Given a list of files and directories, create a list of all the Ruby
  # files they contain.
  #
  # If +force_doc+ is true we always add the given files, if false, only
  # add files that we guarantee we can parse.  It is true when looking at
  # files given on the command line, false when recursing through
  # subdirectories.
  #
  # The effect of this is that if you want a file with a non-standard
  # extension parsed, you must name it explicitly.

  def normalized_file_list(relative_files, force_doc = false,
                           exclude_pattern = nil)
    file_list = []

    relative_files.each do |rel_file_name|
      next if rel_file_name.end_with? 'created.rid'
      next if exclude_pattern && exclude_pattern =~ rel_file_name
      stat = File.stat rel_file_name rescue next

      case type = stat.ftype
      when "file" then
        next if last_modified = @last_modified[rel_file_name] and
                stat.mtime.to_i <= last_modified.to_i

        if force_doc or RDoc::Parser.can_parse(rel_file_name) then
          file_list << rel_file_name.sub(/^\.\//, '')
          @last_modified[rel_file_name] = stat.mtime
        end
      when "directory" then
        next if rel_file_name == "CVS" || rel_file_name == ".svn"

        created_rid = File.join rel_file_name, "created.rid"
        next if File.file? created_rid

        dot_doc = File.join rel_file_name, RDoc::DOT_DOC_FILENAME

        if File.file? dot_doc then
          file_list << parse_dot_doc_file(rel_file_name, dot_doc)
        else
          file_list << list_files_in_directory(rel_file_name)
        end
      else
        warn "rdoc can't parse the #{type} #{rel_file_name}"
      end
    end

    file_list.flatten
  end

  ##
  # Return a list of the files to be processed in a directory. We know that
  # this directory doesn't have a .document file, so we're looking for real
  # files. However we may well contain subdirectories which must be tested
  # for .document files.

  def list_files_in_directory dir
    files = Dir.glob File.join(dir, "*")

    normalized_file_list files, false, @options.exclude
  end

  ##
  # Parses +filename+ and returns an RDoc::TopLevel

  def parse_file filename
    encoding = @options.encoding
    filename = filename.encode encoding

    @stats.add_file filename

    return if RDoc::Parser.binary? filename

    content = RDoc::Encoding.read_file filename, encoding

    return unless content

    filename_path = Pathname(filename).expand_path
    begin
      relative_path = filename_path.relative_path_from @options.root
    rescue ArgumentError
      relative_path = filename_path
    end

    if @options.page_dir and
       relative_path.to_s.start_with? @options.page_dir.to_s then
      relative_path =
        relative_path.relative_path_from @options.page_dir
    end

    top_level = @store.add_file filename, relative_name: relative_path.to_s

    parser = RDoc::Parser.for top_level, filename, content, @options, @stats

    return unless parser

    parser.scan

    # restart documentation for the classes & modules found
    top_level.classes_or_modules.each do |cm|
      cm.done_documenting = false
    end

    top_level

  rescue Errno::EACCES => e
    $stderr.puts <<-EOF
Unable to read #{filename}, #{e.message}

Please check the permissions for this file.  Perhaps you do not have access to
it or perhaps the original author's permissions are to restrictive.  If the
this is not your library please report a bug to the author.
    EOF
  rescue => e
    $stderr.puts <<-EOF
Before reporting this, could you check that the file you're documenting
has proper syntax:

  #{Gem.ruby} -c #{filename}

RDoc is not a full Ruby parser and will fail when fed invalid ruby programs.

The internal error was:

\t(#{e.class}) #{e.message}

    EOF

    $stderr.puts e.backtrace.join("\n\t") if $DEBUG_RDOC

    raise e
    nil
  end

  ##
  # Parse each file on the command line, recursively entering directories.

  def parse_files files
    file_list = gather_files files
    @stats = RDoc::Stats.new @store, file_list.length, @options.verbosity

    return [] if file_list.empty?

    original_options = @options.dup
    @stats.begin_adding

    file_info = file_list.map do |filename|
      @current = filename
      parse_file filename
    end.compact

    @stats.done_adding
    @options = original_options

    file_info
  end

  ##
  # Removes file extensions known to be unparseable from +files+ and TAGS
  # files for emacs and vim.

  def remove_unparseable files
    files.reject do |file|
      file =~ /\.(?:class|eps|erb|scpt\.txt|svg|ttf|yml)$/i or
        (file =~ /tags$/i and
         File.open(file, 'rb') { |io|
           io.read(100) =~ /\A(\f\n[^,]+,\d+$|!_TAG_)/
         })
    end
  end

  ##
  # Generates documentation or a coverage report depending upon the settings
  # in +options+.
  #
  # +options+ can be either an RDoc::Options instance or an array of strings
  # equivalent to the strings that would be passed on the command line like
  # <tt>%w[-q -o doc -t My\ Doc\ Title]</tt>.  #document will automatically
  # call RDoc::Options#finish if an options instance was given.
  #
  # For a list of options, see either RDoc::Options or <tt>rdoc --help</tt>.
  #
  # By default, output will be stored in a directory called "doc" below the
  # current directory, so make sure you're somewhere writable before invoking.

  def document options
    self.store = RDoc::Store.new

    if RDoc::Options === options then
      @options = options
      @options.finish
    else
      @options = load_options
      @options.parse options
    end

    if @options.pipe then
      handle_pipe
      exit
    end

    unless @options.coverage_report then
      @last_modified = setup_output_dir @options.op_dir, @options.force_update
    end

    @store.encoding = @options.encoding
    @store.dry_run  = @options.dry_run
    @store.main     = @options.main_page
    @store.title    = @options.title
    @store.path     = @options.op_dir

    @start_time = Time.now

    @store.load_cache

    file_info = parse_files @options.files

    @options.default_title = "RDoc Documentation"

    @store.complete @options.visibility

    @stats.coverage_level = @options.coverage_report

    if @options.coverage_report then
      puts

      puts @stats.report.accept RDoc::Markup::ToRdoc.new
    elsif file_info.empty? then
      $stderr.puts "\nNo newer files." unless @options.quiet
    else
      gen_klass = @options.generator

      @generator = gen_klass.new @store, @options

      generate
    end

    if @stats and (@options.coverage_report or not @options.quiet) then
      puts
      puts @stats.summary.accept RDoc::Markup::ToRdoc.new
    end

    exit @stats.fully_documented? if @options.coverage_report
  end

  ##
  # Generates documentation for +file_info+ (from #parse_files) into the
  # output dir using the generator selected
  # by the RDoc options

  def generate
    if @options.dry_run then
      # do nothing
      @generator.generate
    else
      Dir.chdir @options.op_dir do
        unless @options.quiet then
          $stderr.puts "\nGenerating #{@generator.class.name.sub(/^.*::/, '')} format into #{Dir.pwd}..."
        end

        @generator.generate
        update_output_dir '.', @start_time, @last_modified
      end
    end
  end

  ##
  # Removes a siginfo handler and replaces the previous

  def remove_siginfo_handler
    return unless Signal.list.key? 'INFO'

    handler = @old_siginfo || 'DEFAULT'

    trap 'INFO', handler
  end

end

begin
  require 'rubygems'

  rdoc_extensions = Gem.find_files 'rdoc/discover'

  rdoc_extensions.each do |extension|
    begin
      load extension
    rescue => e
      warn "error loading #{extension.inspect}: #{e.message} (#{e.class})"
      warn "\t#{e.backtrace.join "\n\t"}" if $DEBUG
    end
  end
rescue LoadError
end

# require built-in generators after discovery in case they've been replaced
require 'rdoc/generator/darkfish'
require 'rdoc/generator/ri'
require 'rdoc/generator/pot'
PKBH[�m|`��-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n.rbnu�[���# frozen_string_literal: true
##
# This module provides i18n related features.

module RDoc::I18n

  autoload :Locale, 'rdoc/i18n/locale'
  require 'rdoc/i18n/text'

end
PKBH[�&“��0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/require.rbnu�[���# frozen_string_literal: true
##
# A file loaded by \#require

class RDoc::Require < RDoc::CodeObject

  ##
  # Name of the required file

  attr_accessor :name

  ##
  # Creates a new Require that loads +name+ with +comment+

  def initialize(name, comment)
    super()
    @name = name.gsub(/'|"/, "") #'
    @top_level = nil
    self.comment = comment
  end

  def inspect # :nodoc:
    "#<%s:0x%x require '%s' in %s>" % [
      self.class,
      object_id,
      @name,
      parent_file_name,
    ]
  end

  def to_s # :nodoc:
    "require #{name} in: #{parent}"
  end

  ##
  # The RDoc::TopLevel corresponding to this require, or +nil+ if not found.

  def top_level
    @top_level ||= begin
      tl = RDoc::TopLevel.all_files_hash[name + '.rb']

      if tl.nil? and RDoc::TopLevel.all_files.first.full_name =~ %r(^lib/) then
        # second chance
        tl = RDoc::TopLevel.all_files_hash['lib/' + name + '.rb']
      end

      tl
    end
  end

end

PKBH[��>��-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/text.rbnu�[���# frozen_string_literal: true

##
# For RDoc::Text#to_html

require 'strscan'

##
# Methods for manipulating comment text

module RDoc::Text

  attr_accessor :language

  ##
  # Maps markup formats to classes that can parse them.  If the format is
  # unknown, "rdoc" format is used.

  MARKUP_FORMAT = {
    'markdown' => RDoc::Markdown,
    'rdoc'     => RDoc::Markup,
    'rd'       => RDoc::RD,
    'tomdoc'   => RDoc::TomDoc,
  }

  MARKUP_FORMAT.default = RDoc::Markup

  ##
  # Maps an encoding to a Hash of characters properly transcoded for that
  # encoding.
  #
  # See also encode_fallback.

  TO_HTML_CHARACTERS = Hash.new do |h, encoding|
    h[encoding] = {
      :close_dquote => encode_fallback('”', encoding, '"'),
      :close_squote => encode_fallback('’', encoding, '\''),
      :copyright    => encode_fallback('©', encoding, '(c)'),
      :ellipsis     => encode_fallback('…', encoding, '...'),
      :em_dash      => encode_fallback('—', encoding, '---'),
      :en_dash      => encode_fallback('–', encoding, '--'),
      :open_dquote  => encode_fallback('“', encoding, '"'),
      :open_squote  => encode_fallback('‘', encoding, '\''),
      :trademark    => encode_fallback('®', encoding, '(r)'),
    }
  end

  ##
  # Transcodes +character+ to +encoding+ with a +fallback+ character.

  def self.encode_fallback character, encoding, fallback
    character.encode(encoding, :fallback => { character => fallback },
                     :undef => :replace, :replace => fallback)
  end

  ##
  # Expands tab characters in +text+ to eight spaces

  def expand_tabs text
    expanded = []

    text.each_line do |line|
      nil while line.gsub!(/(?:\G|\r)((?:.{8})*?)([^\t\r\n]{0,7})\t/) do
        r = "#{$1}#{$2}#{' ' * (8 - $2.size)}"
        r = RDoc::Encoding.change_encoding r, text.encoding
        r
      end

      expanded << line
    end

    expanded.join
  end

  ##
  # Flush +text+ left based on the shortest line

  def flush_left text
    indent = 9999

    text.each_line do |line|
      line_indent = line =~ /\S/ || 9999
      indent = line_indent if indent > line_indent
    end

    empty = ''
    empty = RDoc::Encoding.change_encoding empty, text.encoding

    text.gsub(/^ {0,#{indent}}/, empty)
  end

  ##
  # Convert a string in markup format into HTML.
  #
  # Requires the including class to implement #formatter

  def markup text
    if @store.rdoc.options
      locale = @store.rdoc.options.locale
    else
      locale = nil
    end
    if locale
      i18n_text = RDoc::I18n::Text.new(text)
      text = i18n_text.translate(locale)
    end
    parse(text).accept formatter
  end

  ##
  # Strips hashes, expands tabs then flushes +text+ to the left

  def normalize_comment text
    return text if text.empty?

    case language
    when :ruby
      text = strip_hashes text
    when :c
      text = strip_stars text
    end
    text = expand_tabs    text
    text = flush_left     text
    text = strip_newlines text
    text
  end

  ##
  # Normalizes +text+ then builds a RDoc::Markup::Document from it

  def parse text, format = 'rdoc'
    return text if RDoc::Markup::Document === text
    return text.parse if RDoc::Comment === text

    text = normalize_comment text # TODO remove, should not be necessary

    return RDoc::Markup::Document.new if text =~ /\A\n*\z/

    MARKUP_FORMAT[format].parse text
  end

  ##
  # The first +limit+ characters of +text+ as HTML

  def snippet text, limit = 100
    document = parse text

    RDoc::Markup::ToHtmlSnippet.new(options, limit).convert document
  end

  ##
  # Strips leading # characters from +text+

  def strip_hashes text
    return text if text =~ /^(?>\s*)[^\#]/

    empty = ''
    empty = RDoc::Encoding.change_encoding empty, text.encoding

    text.gsub(/^\s*(#+)/) { $1.tr '#', ' ' }.gsub(/^\s+$/, empty)
  end

  ##
  # Strips leading and trailing \n characters from +text+

  def strip_newlines text
    text.gsub(/\A\n*(.*?)\n*\z/m) do $1 end # block preserves String encoding
  end

  ##
  # Strips /* */ style comments

  def strip_stars text
    return text unless text =~ %r%/\*.*\*/%m

    encoding = text.encoding

    text = text.gsub %r%Document-method:\s+[\w:.#=!?|^&<>~+\-/*\%@`\[\]]+%, ''

    space = ' '
    space = RDoc::Encoding.change_encoding space, encoding if encoding

    text.sub!  %r%/\*+%       do space * $&.length end
    text.sub!  %r%\*+/%       do space * $&.length end
    text.gsub! %r%^[ \t]*\*%m do space * $&.length end

    empty = ''
    empty = RDoc::Encoding.change_encoding empty, encoding if encoding
    text.gsub(/^\s+$/, empty)
  end

  ##
  # Converts ampersand, dashes, ellipsis, quotes, copyright and registered
  # trademark symbols in +text+ to properly encoded characters.

  def to_html text
    html = (''.encode text.encoding).dup

    encoded = RDoc::Text::TO_HTML_CHARACTERS[text.encoding]

    s = StringScanner.new text
    insquotes = false
    indquotes = false
    after_word = nil

    until s.eos? do
      case
      when s.scan(/<(tt|code)>.*?<\/\1>/) then # skip contents of tt
        html << s.matched.gsub('\\\\', '\\')
      when s.scan(/<(tt|code)>.*?/) then
        warn "mismatched <#{s[1]}> tag" # TODO signal file/line
        html << s.matched
      when s.scan(/<[^>]+\/?s*>/) then # skip HTML tags
        html << s.matched
      when s.scan(/\\(\S)/) then # unhandled suppressed crossref
        html << s[1]
        after_word = nil
      when s.scan(/\.\.\.(\.?)/) then
        html << s[1] << encoded[:ellipsis]
        after_word = nil
      when s.scan(/\(c\)/) then
        html << encoded[:copyright]
        after_word = nil
      when s.scan(/\(r\)/) then
        html << encoded[:trademark]
        after_word = nil
      when s.scan(/---/) then
        html << encoded[:em_dash]
        after_word = nil
      when s.scan(/--/) then
        html << encoded[:en_dash]
        after_word = nil
      when s.scan(/&quot;|"/) then
        html << encoded[indquotes ? :close_dquote : :open_dquote]
        indquotes = !indquotes
        after_word = nil
      when s.scan(/``/) then # backtick double quote
        html << encoded[:open_dquote]
        after_word = nil
      when s.scan(/''/) then # tick double quote
        html << encoded[:close_dquote]
        after_word = nil
      when s.scan(/'/) then # single quote
        if insquotes
          html << encoded[:close_squote]
          insquotes = false
        elsif after_word
          # Mary's dog, my parents' house: do not start paired quotes
          html << encoded[:close_squote]
        else
          html << encoded[:open_squote]
          insquotes = true
        end

        after_word = nil
      else # advance to the next potentially significant character
        match = s.scan(/.+?(?=[<\\.("'`&-])/) #"

        if match then
          html << match
          after_word = match =~ /\w$/
        else
          html << s.rest
          break
        end
      end
    end

    html
  end

  ##
  # Wraps +txt+ to +line_len+

  def wrap(txt, line_len = 76)
    res = []
    sp = 0
    ep = txt.length

    while sp < ep
      # scan back for a space
      p = sp + line_len - 1
      if p >= ep
        p = ep
      else
        while p > sp and txt[p] != ?\s
          p -= 1
        end
        if p <= sp
          p = sp + line_len
          while p < ep and txt[p] != ?\s
            p += 1
          end
        end
      end
      res << txt[sp...p] << "\n"
      sp = p
      sp += 1 while sp < ep and txt[sp] == ?\s
    end

    res.join.strip
  end

end
PKBH[s���8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/context/section.rbnu�[���# frozen_string_literal: true
##
# A section of documentation like:
#
#   # :section: The title
#   # The body
#
# Sections can be referenced multiple times and will be collapsed into a
# single section.

class RDoc::Context::Section

  include RDoc::Text

  MARSHAL_VERSION = 0 # :nodoc:

  ##
  # Section comment

  attr_reader :comment

  ##
  # Section comments

  attr_reader :comments

  ##
  # Context this Section lives in

  attr_reader :parent

  ##
  # Section title

  attr_reader :title

  @@sequence = "SEC00000"

  ##
  # Creates a new section with +title+ and +comment+

  def initialize parent, title, comment
    @parent = parent
    @title = title ? title.strip : title

    @@sequence = @@sequence.succ
    @sequence = @@sequence.dup

    @comments = []

    add_comment comment
  end

  ##
  # Sections are equal when they have the same #title

  def == other
    self.class === other and @title == other.title
  end

  alias eql? ==

  ##
  # Adds +comment+ to this section

  def add_comment comment
    comment = extract_comment comment

    return if comment.empty?

    case comment
    when RDoc::Comment then
      @comments << comment
    when RDoc::Markup::Document then
      @comments.concat comment.parts
    when Array then
      @comments.concat comment
    else
      raise TypeError, "unknown comment type: #{comment.inspect}"
    end
  end

  ##
  # Anchor reference for linking to this section

  def aref
    title = @title || '[untitled]'

    CGI.escape(title).gsub('%', '-').sub(/^-/, '')
  end

  ##
  # Extracts the comment for this section from the original comment block.
  # If the first line contains :section:, strip it and use the rest.
  # Otherwise remove lines up to the line containing :section:, and look
  # for those lines again at the end and remove them. This lets us write
  #
  #   # :section: The title
  #   # The body

  def extract_comment comment
    case comment
    when Array then
      comment.map do |c|
        extract_comment c
      end
    when nil
      RDoc::Comment.new ''
    when RDoc::Comment then
      if comment.text =~ /^#[ \t]*:section:.*\n/ then
        start = $`
        rest = $'

        comment.text = if start.empty? then
                         rest
                       else
                         rest.sub(/#{start.chomp}\Z/, '')
                       end
      end

      comment
    when RDoc::Markup::Document then
      comment
    else
      raise TypeError, "unknown comment #{comment.inspect}"
    end
  end

  def inspect # :nodoc:
    "#<%s:0x%x %p>" % [self.class, object_id, title]
  end

  def hash # :nodoc:
    @title.hash
  end

  ##
  # The files comments in this section come from

  def in_files
    return [] if @comments.empty?

    case @comments
    when Array then
      @comments.map do |comment|
        comment.file
      end
    when RDoc::Markup::Document then
      @comment.parts.map do |document|
        document.file
      end
    else
      raise RDoc::Error, "BUG: unknown comment class #{@comments.class}"
    end
  end

  ##
  # Serializes this Section.  The title and parsed comment are saved, but not
  # the section parent which must be restored manually.

  def marshal_dump
    [
      MARSHAL_VERSION,
      @title,
      parse,
    ]
  end

  ##
  # De-serializes this Section.  The section parent must be restored manually.

  def marshal_load array
    @parent  = nil

    @title    = array[1]
    @comments = array[2]
  end

  ##
  # Parses +comment_location+ into an RDoc::Markup::Document composed of
  # multiple RDoc::Markup::Documents with their file set.

  def parse
    case @comments
    when String then
      super
    when Array then
      docs = @comments.map do |comment, location|
        doc = super comment
        doc.file = location if location
        doc
      end

      RDoc::Markup::Document.new(*docs)
    when RDoc::Comment then
      doc = super @comments.text, comments.format
      doc.file = @comments.location
      doc
    when RDoc::Markup::Document then
      return @comments
    else
      raise ArgumentError, "unknown comment class #{comments.class}"
    end
  end

  ##
  # The section's title, or 'Top Section' if the title is nil.
  #
  # This is used by the table of contents template so the name is silly.

  def plain_html
    @title || 'Top Section'
  end

  ##
  # Removes a comment from this section if it is from the same file as
  # +comment+

  def remove_comment comment
    return if @comments.empty?

    case @comments
    when Array then
      @comments.delete_if do |my_comment|
        my_comment.file == comment.file
      end
    when RDoc::Markup::Document then
      @comments.parts.delete_if do |document|
        document.file == comment.file.name
      end
    else
      raise RDoc::Error, "BUG: unknown comment class #{@comments.class}"
    end
  end

  ##
  # Section sequence number (deprecated)

  def sequence
    warn "RDoc::Context::Section#sequence is deprecated, use #aref"
    @sequence
  end

end

PKBH[�/��0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/include.rbnu�[���# frozen_string_literal: true
##
# A Module included in a class with \#include
#
#   RDoc::Include.new 'Enumerable', 'comment ...'

class RDoc::Include < RDoc::Mixin

end

PKBH[� ������4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ruby.rbnu�[���# frozen_string_literal: true
##
# This file contains stuff stolen outright from:
#
#   rtags.rb -
#   ruby-lex.rb - ruby lexcal analyzer
#   ruby-token.rb - ruby tokens
#       by Keiju ISHITSUKA (Nippon Rational Inc.)
#

##
# Extracts code elements from a source file returning a TopLevel object
# containing the constituent file elements.
#
# This file is based on rtags
#
# RubyParser understands how to document:
# * classes
# * modules
# * methods
# * constants
# * aliases
# * private, public, protected
# * private_class_function, public_class_function
# * private_constant, public_constant
# * module_function
# * attr, attr_reader, attr_writer, attr_accessor
# * extra accessors given on the command line
# * metaprogrammed methods
# * require
# * include
#
# == Method Arguments
#
#--
# NOTE: I don't think this works, needs tests, remove the paragraph following
# this block when known to work
#
# The parser extracts the arguments from the method definition.  You can
# override this with a custom argument definition using the :args: directive:
#
#   ##
#   # This method tries over and over until it is tired
#
#   def go_go_go(thing_to_try, tries = 10) # :args: thing_to_try
#     puts thing_to_try
#     go_go_go thing_to_try, tries - 1
#   end
#
# If you have a more-complex set of overrides you can use the :call-seq:
# directive:
#++
#
# The parser extracts the arguments from the method definition.  You can
# override this with a custom argument definition using the :call-seq:
# directive:
#
#   ##
#   # This method can be called with a range or an offset and length
#   #
#   # :call-seq:
#   #   my_method(Range)
#   #   my_method(offset, length)
#
#   def my_method(*args)
#   end
#
# The parser extracts +yield+ expressions from method bodies to gather the
# yielded argument names.  If your method manually calls a block instead of
# yielding or you want to override the discovered argument names use
# the :yields: directive:
#
#   ##
#   # My method is awesome
#
#   def my_method(&block) # :yields: happy, times
#     block.call 1, 2
#   end
#
# == Metaprogrammed Methods
#
# To pick up a metaprogrammed method, the parser looks for a comment starting
# with '##' before an identifier:
#
#   ##
#   # This is a meta-programmed method!
#
#   add_my_method :meta_method, :arg1, :arg2
#
# The parser looks at the token after the identifier to determine the name, in
# this example, :meta_method.  If a name cannot be found, a warning is printed
# and 'unknown is used.
#
# You can force the name of a method using the :method: directive:
#
#   ##
#   # :method: some_method!
#
# By default, meta-methods are instance methods.  To indicate that a method is
# a singleton method instead use the :singleton-method: directive:
#
#   ##
#   # :singleton-method:
#
# You can also use the :singleton-method: directive with a name:
#
#   ##
#   # :singleton-method: some_method!
#
# You can define arguments for metaprogrammed methods via either the
# :call-seq:, :arg: or :args: directives.
#
# Additionally you can mark a method as an attribute by
# using :attr:, :attr_reader:, :attr_writer: or :attr_accessor:.  Just like
# for :method:, the name is optional.
#
#   ##
#   # :attr_reader: my_attr_name
#
# == Hidden methods and attributes
#
# You can provide documentation for methods that don't appear using
# the :method:, :singleton-method: and :attr: directives:
#
#   ##
#   # :attr_writer: ghost_writer
#   # There is an attribute here, but you can't see it!
#
#   ##
#   # :method: ghost_method
#   # There is a method here, but you can't see it!
#
#   ##
#   # this is a comment for a regular method
#
#   def regular_method() end
#
# Note that by default, the :method: directive will be ignored if there is a
# standard rdocable item following it.

require 'ripper'
require_relative 'ripper_state_lex'

class RDoc::Parser::Ruby < RDoc::Parser

  parse_files_matching(/\.rbw?$/)

  include RDoc::TokenStream
  include RDoc::Parser::RubyTools

  ##
  # RDoc::NormalClass type

  NORMAL = "::"

  ##
  # RDoc::SingleClass type

  SINGLE = "<<"

  ##
  # Creates a new Ruby parser.

  def initialize(top_level, file_name, content, options, stats)
    super

    if /\t/ =~ content then
      tab_width = @options.tab_width
      content = content.split(/\n/).map do |line|
        1 while line.gsub!(/\t+/) {
          ' ' * (tab_width*$&.length - $`.length % tab_width)
        }  && $~
        line
      end.join("\n")
    end

    @size = 0
    @token_listeners = nil
    content = RDoc::Encoding.remove_magic_comment content
    @scanner = RDoc::Parser::RipperStateLex.parse(content)
    @content = content
    @scanner_point = 0
    @prev_seek = nil
    @markup = @options.markup
    @track_visibility = :nodoc != @options.visibility
    @encoding = @options.encoding

    reset
  end

  def tk_nl?(tk)
    :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]
  end

  ##
  # Retrieves the read token stream and replaces +pattern+ with +replacement+
  # using gsub.  If the result is only a ";" returns an empty string.

  def get_tkread_clean pattern, replacement # :nodoc:
    read = get_tkread.gsub(pattern, replacement).strip
    return '' if read == ';'
    read
  end

  ##
  # Extracts the visibility information for the visibility token +tk+
  # and +single+ class type identifier.
  #
  # Returns the visibility type (a string), the visibility (a symbol) and
  # +singleton+ if the methods following should be converted to singleton
  # methods.

  def get_visibility_information tk, single # :nodoc:
    vis_type  = tk[:text]
    singleton = single == SINGLE

    vis =
      case vis_type
      when 'private'   then :private
      when 'protected' then :protected
      when 'public'    then :public
      when 'private_class_method' then
        singleton = true
        :private
      when 'public_class_method' then
        singleton = true
        :public
      when 'module_function' then
        singleton = true
        :public
      else
        raise RDoc::Error, "Invalid visibility: #{tk.name}"
      end

    return vis_type, vis, singleton
  end

  ##
  # Look for the first comment in a file that isn't a shebang line.

  def collect_first_comment
    skip_tkspace
    comment = ''.dup
    comment = RDoc::Encoding.change_encoding comment, @encoding if @encoding
    first_line = true
    first_comment_tk_kind = nil
    line_no = nil

    tk = get_tk

    while tk && (:on_comment == tk[:kind] or :on_embdoc == tk[:kind])
      comment_body = retrieve_comment_body(tk)
      if first_line and comment_body =~ /\A#!/ then
        skip_tkspace
        tk = get_tk
      elsif first_line and comment_body =~ /\A#\s*-\*-/ then
        first_line = false
        skip_tkspace
        tk = get_tk
      else
        break if first_comment_tk_kind and not first_comment_tk_kind === tk[:kind]
        first_comment_tk_kind = tk[:kind]

        line_no = tk[:line_no] if first_line
        first_line = false
        comment << comment_body
        tk = get_tk

        if :on_nl === tk then
          skip_tkspace_without_nl
          tk = get_tk
        end
      end
    end

    unget_tk tk

    new_comment comment, line_no
  end

  ##
  # Consumes trailing whitespace from the token stream

  def consume_trailing_spaces # :nodoc:
    skip_tkspace_without_nl
  end

  ##
  # Creates a new attribute in +container+ with +name+.

  def create_attr container, single, name, rw, comment # :nodoc:
    att = RDoc::Attr.new get_tkread, name, rw, comment, single == SINGLE
    record_location att

    container.add_attribute att
    @stats.add_attribute att

    att
  end

  ##
  # Creates a module alias in +container+ at +rhs_name+ (or at the top-level
  # for "::") with the name from +constant+.

  def create_module_alias container, constant, rhs_name # :nodoc:
    mod = if rhs_name =~ /^::/ then
            @store.find_class_or_module rhs_name
          else
            container.find_module_named rhs_name
          end

    container.add_module_alias mod, rhs_name, constant, @top_level
  end

  ##
  # Aborts with +msg+

  def error(msg)
    msg = make_message msg

    abort msg
  end

  ##
  # Looks for a true or false token.

  def get_bool
    skip_tkspace
    tk = get_tk
    if :on_kw == tk[:kind] && 'true' == tk[:text]
      true
    elsif :on_kw == tk[:kind] && ('false' == tk[:text] || 'nil' == tk[:text])
      false
    else
      unget_tk tk
      true
    end
  end

  ##
  # Look for the name of a class of module (optionally with a leading :: or
  # with :: separated named) and return the ultimate name, the associated
  # container, and the given name (with the ::).

  def get_class_or_module container, ignore_constants = false
    skip_tkspace
    name_t = get_tk
    given_name = ''.dup

    # class ::A -> A is in the top level
    if :on_op == name_t[:kind] and '::' == name_t[:text] then # bug
      name_t = get_tk
      container = @top_level
      given_name << '::'
    end

    skip_tkspace_without_nl
    given_name << name_t[:text]

    is_self = name_t[:kind] == :on_op && name_t[:text] == '<<'
    new_modules = []
    while !is_self && (tk = peek_tk) and :on_op == tk[:kind] and '::' == tk[:text] do
      prev_container = container
      container = container.find_module_named name_t[:text]
      container ||=
        if ignore_constants then
          c = RDoc::NormalModule.new name_t[:text]
          c.store = @store
          new_modules << [prev_container, c]
          c
        else
          c = prev_container.add_module RDoc::NormalModule, name_t[:text]
          c.ignore unless prev_container.document_children
          @top_level.add_to_classes_or_modules c
          c
        end

      record_location container

      get_tk
      skip_tkspace
      if :on_lparen == peek_tk[:kind] # ProcObjectInConstant::()
        parse_method_or_yield_parameters
        break
      end
      name_t = get_tk
      unless :on_const == name_t[:kind] || :on_ident == name_t[:kind]
        raise RDoc::Error, "Invalid class or module definition: #{given_name}"
      end
      if prev_container == container and !ignore_constants
        given_name = name_t[:text]
      else
        given_name << '::' + name_t[:text]
      end
    end

    skip_tkspace_without_nl

    return [container, name_t, given_name, new_modules]
  end

  ##
  # Return a superclass, which can be either a constant of an expression

  def get_class_specification
    tk = peek_tk
    if tk.nil?
      return ''
    elsif :on_kw == tk[:kind] && 'self' == tk[:text]
      return 'self'
    elsif :on_gvar == tk[:kind]
      return ''
    end

    res = get_constant

    skip_tkspace_without_nl

    get_tkread # empty out read buffer

    tk = get_tk
    return res unless tk

    case tk[:kind]
    when :on_nl, :on_comment, :on_embdoc, :on_semicolon then
      unget_tk(tk)
      return res
    end

    res += parse_call_parameters(tk)
    res
  end

  ##
  # Parse a constant, which might be qualified by one or more class or module
  # names

  def get_constant
    res = ""
    skip_tkspace_without_nl
    tk = get_tk

    while tk && ((:on_op == tk[:kind] && '::' == tk[:text]) || :on_const == tk[:kind]) do
      res += tk[:text]
      tk = get_tk
    end

    unget_tk(tk)
    res
  end

  ##
  # Get an included module that may be surrounded by parens

  def get_included_module_with_optional_parens
    skip_tkspace_without_nl
    get_tkread
    tk = get_tk
    end_token = get_end_token tk
    return '' unless end_token

    nest = 0
    continue = false
    only_constant = true

    while tk != nil do
      is_element_of_constant = false
      case tk[:kind]
      when :on_semicolon then
        break if nest == 0
      when :on_lbracket then
        nest += 1
      when :on_rbracket then
        nest -= 1
      when :on_lbrace then
        nest += 1
      when :on_rbrace then
        nest -= 1
        if nest <= 0
          # we might have a.each { |i| yield i }
          unget_tk(tk) if nest < 0
          break
        end
      when :on_lparen then
        nest += 1
      when end_token[:kind] then
        if end_token[:kind] == :on_rparen
          nest -= 1
          break if nest <= 0
        else
          break if nest <= 0
        end
      when :on_rparen then
        nest -= 1
      when :on_comment, :on_embdoc then
        @read.pop
        if :on_nl == end_token[:kind] and "\n" == tk[:text][-1] and
          (!continue or (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) != 0) then
          break if !continue and nest <= 0
        end
      when :on_comma then
        continue = true
      when :on_ident then
        continue = false if continue
      when :on_kw then
        case tk[:text]
        when 'def', 'do', 'case', 'for', 'begin', 'class', 'module'
          nest += 1
        when 'if', 'unless', 'while', 'until', 'rescue'
          # postfix if/unless/while/until/rescue must be EXPR_LABEL
          nest += 1 unless (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) != 0
        when 'end'
          nest -= 1
          break if nest == 0
        end
      when :on_const then
        is_element_of_constant = true
      when :on_op then
        is_element_of_constant = true if '::' == tk[:text]
      end
      only_constant = false unless is_element_of_constant
      tk = get_tk
    end

    if only_constant
      get_tkread_clean(/\s+/, ' ')
    else
      ''
    end
  end

  ##
  # Little hack going on here. In the statement:
  #
  #   f = 2*(1+yield)
  #
  # We see the RPAREN as the next token, so we need to exit early.  This still
  # won't catch all cases (such as "a = yield + 1"

  def get_end_token tk # :nodoc:
    case tk[:kind]
    when :on_lparen
      token = RDoc::Parser::RipperStateLex::Token.new
      token[:kind] = :on_rparen
      token[:text] = ')'
      token
    when :on_rparen
      nil
    else
      token = RDoc::Parser::RipperStateLex::Token.new
      token[:kind] = :on_nl
      token[:text] = "\n"
      token
    end
  end

  ##
  # Retrieves the method container for a singleton method.

  def get_method_container container, name_t # :nodoc:
    prev_container = container
    container = container.find_module_named(name_t[:text])

    unless container then
      constant = prev_container.constants.find do |const|
        const.name == name_t[:text]
      end

      if constant then
        parse_method_dummy prev_container
        return
      end
    end

    unless container then
      # TODO seems broken, should starting at Object in @store
      obj = name_t[:text].split("::").inject(Object) do |state, item|
        state.const_get(item)
      end rescue nil

      type = obj.class == Class ? RDoc::NormalClass : RDoc::NormalModule

      unless [Class, Module].include?(obj.class) then
        warn("Couldn't find #{name_t[:text]}. Assuming it's a module")
      end

      if type == RDoc::NormalClass then
        sclass = obj.superclass ? obj.superclass.name : nil
        container = prev_container.add_class type, name_t[:text], sclass
      else
        container = prev_container.add_module type, name_t[:text]
      end

      record_location container
    end

    container
  end

  ##
  # Extracts a name or symbol from the token stream.

  def get_symbol_or_name
    tk = get_tk
    case tk[:kind]
    when :on_symbol then
      text = tk[:text].sub(/^:/, '')

      next_tk = peek_tk
      if next_tk && :on_op == next_tk[:kind] && '=' == next_tk[:text] then
        get_tk
        text << '='
      end

      text
    when :on_ident, :on_const, :on_gvar, :on_cvar, :on_ivar, :on_op, :on_kw then
      tk[:text]
    when :on_tstring, :on_dstring then
      tk[:text][1..-2]
    else
      raise RDoc::Error, "Name or symbol expected (got #{tk})"
    end
  end

  ##
  # Marks containers between +container+ and +ancestor+ as ignored

  def suppress_parents container, ancestor # :nodoc:
    while container and container != ancestor do
      container.suppress unless container.documented?
      container = container.parent
    end
  end

  ##
  # Look for directives in a normal comment block:
  #
  #   # :stopdoc:
  #   # Don't display comment from this point forward
  #
  # This routine modifies its +comment+ parameter.

  def look_for_directives_in container, comment
    @preprocess.handle comment, container do |directive, param|
      case directive
      when 'method', 'singleton-method',
           'attr', 'attr_accessor', 'attr_reader', 'attr_writer' then
        false # handled elsewhere
      when 'section' then
        break unless container.kind_of?(RDoc::Context)
        container.set_current_section param, comment.dup
        comment.text = ''
        break
      end
    end

    comment.remove_private
  end

  ##
  # Adds useful info about the parser to +message+

  def make_message message
    prefix = "#{@file_name}:".dup

    tk = peek_tk
    prefix << "#{tk[:line_no]}:#{tk[:char_no]}:" if tk

    "#{prefix} #{message}"
  end

  ##
  # Creates a comment with the correct format

  def new_comment comment, line_no = nil
    c = RDoc::Comment.new comment, @top_level, :ruby
    c.line = line_no
    c.format = @markup
    c
  end

  ##
  # Creates an RDoc::Attr for the name following +tk+, setting the comment to
  # +comment+.

  def parse_attr(context, single, tk, comment)
    line_no = tk[:line_no]

    args = parse_symbol_arg 1
    if args.size > 0 then
      name = args[0]
      rw = "R"
      skip_tkspace_without_nl
      tk = get_tk

      if :on_comma == tk[:kind] then
        rw = "RW" if get_bool
      else
        unget_tk tk
      end

      att = create_attr context, single, name, rw, comment
      att.line   = line_no

      read_documentation_modifiers att, RDoc::ATTR_MODIFIERS
    else
      warn "'attr' ignored - looks like a variable"
    end
  end

  ##
  # Creates an RDoc::Attr for each attribute listed after +tk+, setting the
  # comment for each to +comment+.

  def parse_attr_accessor(context, single, tk, comment)
    line_no = tk[:line_no]

    args = parse_symbol_arg
    rw = "?"

    tmp = RDoc::CodeObject.new
    read_documentation_modifiers tmp, RDoc::ATTR_MODIFIERS
    # TODO In most other places we let the context keep track of document_self
    # and add found items appropriately but here we do not.  I'm not sure why.
    return if @track_visibility and not tmp.document_self

    case tk[:text]
    when "attr_reader"   then rw = "R"
    when "attr_writer"   then rw = "W"
    when "attr_accessor" then rw = "RW"
    else
      rw = '?'
    end

    for name in args
      att = create_attr context, single, name, rw, comment
      att.line   = line_no
    end
  end

  ##
  # Parses an +alias+ in +context+ with +comment+

  def parse_alias(context, single, tk, comment)
    line_no = tk[:line_no]

    skip_tkspace

    if :on_lparen === peek_tk[:kind] then
      get_tk
      skip_tkspace
    end

    new_name = get_symbol_or_name

    skip_tkspace
    if :on_comma === peek_tk[:kind] then
      get_tk
      skip_tkspace
    end

    begin
      old_name = get_symbol_or_name
    rescue RDoc::Error
      return
    end

    al = RDoc::Alias.new(get_tkread, old_name, new_name, comment,
                         single == SINGLE)
    record_location al
    al.line   = line_no

    read_documentation_modifiers al, RDoc::ATTR_MODIFIERS
    context.add_alias al
    @stats.add_alias al

    al
  end

  ##
  # Extracts call parameters from the token stream.

  def parse_call_parameters(tk)
    end_token = case tk[:kind]
                when :on_lparen
                  :on_rparen
                when :on_rparen
                  return ""
                else
                  :on_nl
                end
    nest = 0

    loop do
      break if tk.nil?
      case tk[:kind]
      when :on_semicolon
        break
      when :on_lparen
        nest += 1
      when end_token
        if end_token == :on_rparen
          nest -= 1
          break if RDoc::Parser::RipperStateLex.end?(tk) and nest <= 0
        else
          break if RDoc::Parser::RipperStateLex.end?(tk)
        end
      when :on_comment, :on_embdoc
        unget_tk(tk)
        break
      when :on_op
        if tk[:text] =~ /^(.{1,2})?=$/
          unget_tk(tk)
          break
        end
      end
      tk = get_tk
    end

    get_tkread_clean "\n", " "
  end

  ##
  # Parses a class in +context+ with +comment+

  def parse_class container, single, tk, comment
    line_no = tk[:line_no]

    declaration_context = container
    container, name_t, given_name, = get_class_or_module container

    if name_t[:kind] == :on_const
      cls = parse_class_regular container, declaration_context, single,
        name_t, given_name, comment
    elsif name_t[:kind] == :on_op && name_t[:text] == '<<'
      case name = get_class_specification
      when 'self', container.name
        read_documentation_modifiers cls, RDoc::CLASS_MODIFIERS
        parse_statements container, SINGLE
        return # don't update line
      else
        cls = parse_class_singleton container, name, comment
      end
    else
      warn "Expected class name or '<<'. Got #{name_t[:kind]}: #{name_t[:text].inspect}"
      return
    end

    cls.line   = line_no

    # after end modifiers
    read_documentation_modifiers cls, RDoc::CLASS_MODIFIERS

    cls
  end

  ##
  # Parses and creates a regular class

  def parse_class_regular container, declaration_context, single, # :nodoc:
                          name_t, given_name, comment
    superclass = '::Object'

    if given_name =~ /^::/ then
      declaration_context = @top_level
      given_name = $'
    end

    tk = peek_tk
    if tk[:kind] == :on_op && tk[:text] == '<' then
      get_tk
      skip_tkspace
      superclass = get_class_specification
      superclass = '(unknown)' if superclass.empty?
    end

    cls_type = single == SINGLE ? RDoc::SingleClass : RDoc::NormalClass
    cls = declaration_context.add_class cls_type, given_name, superclass
    cls.ignore unless container.document_children

    read_documentation_modifiers cls, RDoc::CLASS_MODIFIERS
    record_location cls

    cls.add_comment comment, @top_level

    @top_level.add_to_classes_or_modules cls
    @stats.add_class cls

    suppress_parents container, declaration_context unless cls.document_self

    parse_statements cls

    cls
  end

  ##
  # Parses a singleton class in +container+ with the given +name+ and
  # +comment+.

  def parse_class_singleton container, name, comment # :nodoc:
    other = @store.find_class_named name

    unless other then
      if name =~ /^::/ then
        name = $'
        container = @top_level
      end

      other = container.add_module RDoc::NormalModule, name
      record_location other

      # class << $gvar
      other.ignore if name.empty?

      other.add_comment comment, @top_level
    end

    # notify :nodoc: all if not a constant-named class/module
    # (and remove any comment)
    unless name =~ /\A(::)?[A-Z]/ then
      other.document_self = nil
      other.document_children = false
      other.clear_comment
    end

    @top_level.add_to_classes_or_modules other
    @stats.add_class other

    read_documentation_modifiers other, RDoc::CLASS_MODIFIERS
    parse_statements(other, SINGLE)

    other
  end

  ##
  # Parses a constant in +context+ with +comment+.  If +ignore_constants+ is
  # true, no found constants will be added to RDoc.

  def parse_constant container, tk, comment, ignore_constants = false
    line_no = tk[:line_no]

    name = tk[:text]
    skip_tkspace_without_nl

    return unless name =~ /^\w+$/

    new_modules = []
    if :on_op == peek_tk[:kind] && '::' == peek_tk[:text] then
      unget_tk tk

      container, name_t, _, new_modules = get_class_or_module container, true

      name = name_t[:text]
    end

    is_array_or_hash = false
    if peek_tk && :on_lbracket == peek_tk[:kind]
      get_tk
      nest = 1
      while bracket_tk = get_tk
        case bracket_tk[:kind]
        when :on_lbracket
          nest += 1
        when :on_rbracket
          nest -= 1
          break if nest == 0
        end
      end
      skip_tkspace_without_nl
      is_array_or_hash = true
    end

    unless peek_tk && :on_op == peek_tk[:kind] && '=' == peek_tk[:text] then
      return false
    end
    get_tk

    unless ignore_constants
      new_modules.each do |prev_c, new_module|
        prev_c.add_module_by_normal_module new_module
        new_module.ignore unless prev_c.document_children
        @top_level.add_to_classes_or_modules new_module
      end
    end

    value = ''
    con = RDoc::Constant.new name, value, comment

    body = parse_constant_body container, con, is_array_or_hash

    return unless body

    con.value = body
    record_location con
    con.line   = line_no
    read_documentation_modifiers con, RDoc::CONSTANT_MODIFIERS

    return if is_array_or_hash

    @stats.add_constant con
    container.add_constant con

    true
  end

  def parse_constant_body container, constant, is_array_or_hash # :nodoc:
    nest     = 0
    rhs_name = ''.dup

    get_tkread

    tk = get_tk

    body = nil
    loop do
      break if tk.nil?
      if :on_semicolon == tk[:kind] then
        break if nest <= 0
      elsif [:on_tlambeg, :on_lparen, :on_lbrace, :on_lbracket].include?(tk[:kind]) then
        nest += 1
      elsif (:on_kw == tk[:kind] && 'def' == tk[:text]) then
        nest += 1
      elsif (:on_kw == tk[:kind] && %w{do if unless case begin}.include?(tk[:text])) then
        if (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) == 0
          nest += 1
        end
      elsif [:on_rparen, :on_rbrace, :on_rbracket].include?(tk[:kind]) ||
            (:on_kw == tk[:kind] && 'end' == tk[:text]) then
        nest -= 1
      elsif (:on_comment == tk[:kind] or :on_embdoc == tk[:kind]) then
        unget_tk tk
        if nest <= 0 and RDoc::Parser::RipperStateLex.end?(tk) then
          body = get_tkread_clean(/^[ \t]+/, '')
          read_documentation_modifiers constant, RDoc::CONSTANT_MODIFIERS
          break
        else
          read_documentation_modifiers constant, RDoc::CONSTANT_MODIFIERS
        end
      elsif :on_const == tk[:kind] then
        rhs_name << tk[:text]

        next_tk = peek_tk
        if nest <= 0 and (next_tk.nil? || :on_nl == next_tk[:kind]) then
          create_module_alias container, constant, rhs_name unless is_array_or_hash
          break
        end
      elsif :on_nl == tk[:kind] then
        if nest <= 0 and RDoc::Parser::RipperStateLex.end?(tk) then
          unget_tk tk
          break
        end
      elsif :on_op == tk[:kind] && '::' == tk[:text]
        rhs_name << '::'
      end
      tk = get_tk
    end

    body ? body : get_tkread_clean(/^[ \t]+/, '')
  end

  ##
  # Generates an RDoc::Method or RDoc::Attr from +comment+ by looking for
  # :method: or :attr: directives in +comment+.

  def parse_comment container, tk, comment
    return parse_comment_tomdoc container, tk, comment if @markup == 'tomdoc'
    column  = tk[:char_no]
    line_no = comment.line.nil? ? tk[:line_no] : comment.line

    comment.text = comment.text.sub(/(^# +:?)(singleton-)(method:)/, '\1\3')
    singleton = !!$~

    co =
      if (comment.text = comment.text.sub(/^# +:?method: *(\S*).*?\n/i, '')) && !!$~ then
        line_no += $`.count("\n")
        parse_comment_ghost container, comment.text, $1, column, line_no, comment
      elsif (comment.text = comment.text.sub(/# +:?(attr(_reader|_writer|_accessor)?): *(\S*).*?\n/i, '')) && !!$~ then
        parse_comment_attr container, $1, $3, comment
      end

    if co then
      co.singleton = singleton
      co.line      = line_no
    end

    true
  end

  ##
  # Parse a comment that is describing an attribute in +container+ with the
  # given +name+ and +comment+.

  def parse_comment_attr container, type, name, comment # :nodoc:
    return if name.empty?

    rw = case type
         when 'attr_reader' then 'R'
         when 'attr_writer' then 'W'
         else 'RW'
         end

    create_attr container, NORMAL, name, rw, comment
  end

  def parse_comment_ghost container, text, name, column, line_no, # :nodoc:
                          comment
    name = nil if name.empty?

    meth = RDoc::GhostMethod.new get_tkread, name
    record_location meth

    meth.start_collecting_tokens
    indent = RDoc::Parser::RipperStateLex::Token.new(1, 1, :on_sp, ' ' * column)
    position_comment = RDoc::Parser::RipperStateLex::Token.new(line_no, 1, :on_comment)
    position_comment[:text] = "# File #{@top_level.relative_name}, line #{line_no}"
    newline = RDoc::Parser::RipperStateLex::Token.new(0, 0, :on_nl, "\n")
    meth.add_tokens [position_comment, newline, indent]

    meth.params =
      if text.sub!(/^#\s+:?args?:\s*(.*?)\s*$/i, '') then
        $1
      else
        ''
      end

    comment.normalize
    comment.extract_call_seq meth

    return unless meth.name

    container.add_method meth

    meth.comment = comment

    @stats.add_method meth

    meth
  end

  ##
  # Creates an RDoc::Method on +container+ from +comment+ if there is a
  # Signature section in the comment

  def parse_comment_tomdoc container, tk, comment
    return unless signature = RDoc::TomDoc.signature(comment)
    column  = tk[:char_no]
    line_no = tk[:line_no]

    name, = signature.split %r%[ \(]%, 2

    meth = RDoc::GhostMethod.new get_tkread, name
    record_location meth
    meth.line      = line_no

    meth.start_collecting_tokens
    indent = RDoc::Parser::RipperStateLex::Token.new(1, 1, :on_sp, ' ' * column)
    position_comment = RDoc::Parser::RipperStateLex::Token.new(line_no, 1, :on_comment)
    position_comment[:text] = "# File #{@top_level.relative_name}, line #{line_no}"
    newline = RDoc::Parser::RipperStateLex::Token.new(0, 0, :on_nl, "\n")
    meth.add_tokens [position_comment, newline, indent]

    meth.call_seq = signature

    comment.normalize

    return unless meth.name

    container.add_method meth

    meth.comment = comment

    @stats.add_method meth
  end

  ##
  # Parses an +include+ or +extend+, indicated by the +klass+ and adds it to
  # +container+ # with +comment+

  def parse_extend_or_include klass, container, comment # :nodoc:
    loop do
      skip_tkspace_comment

      name = get_included_module_with_optional_parens

      unless name.empty? then
        obj = container.add klass, name, comment
        record_location obj
      end

      return if peek_tk.nil? || :on_comma != peek_tk[:kind]

      get_tk
    end
  end

  ##
  # Parses identifiers that can create new methods or change visibility.
  #
  # Returns true if the comment was not consumed.

  def parse_identifier container, single, tk, comment # :nodoc:
    case tk[:text]
    when 'private', 'protected', 'public', 'private_class_method',
         'public_class_method', 'module_function' then
      parse_visibility container, single, tk
      return true
    when 'private_constant', 'public_constant'
      parse_constant_visibility container, single, tk
      return true
    when 'attr' then
      parse_attr container, single, tk, comment
    when /^attr_(reader|writer|accessor)$/ then
      parse_attr_accessor container, single, tk, comment
    when 'alias_method' then
      parse_alias container, single, tk, comment
    when 'require', 'include' then
      # ignore
    else
      if comment.text =~ /\A#\#$/ then
        case comment.text
        when /^# +:?attr(_reader|_writer|_accessor)?:/ then
          parse_meta_attr container, single, tk, comment
        else
          method = parse_meta_method container, single, tk, comment
          method.params = container.params if
            container.params
          method.block_params = container.block_params if
            container.block_params
        end
      end
    end

    false
  end

  ##
  # Parses a meta-programmed attribute and creates an RDoc::Attr.
  #
  # To create foo and bar attributes on class C with comment "My attributes":
  #
  #   class C
  #
  #     ##
  #     # :attr:
  #     #
  #     # My attributes
  #
  #     my_attr :foo, :bar
  #
  #   end
  #
  # To create a foo attribute on class C with comment "My attribute":
  #
  #   class C
  #
  #     ##
  #     # :attr: foo
  #     #
  #     # My attribute
  #
  #     my_attr :foo, :bar
  #
  #   end

  def parse_meta_attr(context, single, tk, comment)
    args = parse_symbol_arg
    rw = "?"

    # If nodoc is given, don't document any of them

    tmp = RDoc::CodeObject.new
    read_documentation_modifiers tmp, RDoc::ATTR_MODIFIERS

    regexp = /^# +:?(attr(_reader|_writer|_accessor)?): *(\S*).*?\n/i
    if regexp =~ comment.text then
      comment.text = comment.text.sub(regexp, '')
      rw = case $1
           when 'attr_reader' then 'R'
           when 'attr_writer' then 'W'
           else 'RW'
           end
      name = $3 unless $3.empty?
    end

    if name then
      att = create_attr context, single, name, rw, comment
    else
      args.each do |attr_name|
        att = create_attr context, single, attr_name, rw, comment
      end
    end

    att
  end

  ##
  # Parses a meta-programmed method

  def parse_meta_method(container, single, tk, comment)
    column  = tk[:char_no]
    line_no = tk[:line_no]

    start_collecting_tokens
    add_token tk
    add_token_listener self

    skip_tkspace_without_nl

    comment.text = comment.text.sub(/(^# +:?)(singleton-)(method:)/, '\1\3')
    singleton = !!$~

    name = parse_meta_method_name comment, tk

    return unless name

    meth = RDoc::MetaMethod.new get_tkread, name
    record_location meth
    meth.line   = line_no
    meth.singleton = singleton

    remove_token_listener self

    meth.start_collecting_tokens
    indent = RDoc::Parser::RipperStateLex::Token.new(1, 1, :on_sp, ' ' * column)
    position_comment = RDoc::Parser::RipperStateLex::Token.new(line_no, 1, :on_comment)
    position_comment[:text] = "# File #{@top_level.relative_name}, line #{line_no}"
    newline = RDoc::Parser::RipperStateLex::Token.new(0, 0, :on_nl, "\n")
    meth.add_tokens [position_comment, newline, indent]
    meth.add_tokens @token_stream

    parse_meta_method_params container, single, meth, tk, comment

    meth.comment = comment

    @stats.add_method meth

    meth
  end

  ##
  # Parses the name of a metaprogrammed method.  +comment+ is used to
  # determine the name while +tk+ is used in an error message if the name
  # cannot be determined.

  def parse_meta_method_name comment, tk # :nodoc:
    if comment.text.sub!(/^# +:?method: *(\S*).*?\n/i, '') then
      return $1 unless $1.empty?
    end

    name_t = get_tk

    if :on_symbol == name_t[:kind] then
      name_t[:text][1..-1]
    elsif :on_tstring == name_t[:kind] then
      name_t[:text][1..-2]
    elsif :on_op == name_t[:kind] && '=' == name_t[:text] then # ignore
      remove_token_listener self

      nil
    else
      warn "unknown name token #{name_t.inspect} for meta-method '#{tk[:text]}'"
      'unknown'
    end
  end

  ##
  # Parses the parameters and block for a meta-programmed method.

  def parse_meta_method_params container, single, meth, tk, comment # :nodoc:
    token_listener meth do
      meth.params = ''

      look_for_directives_in meth, comment
      comment.normalize
      comment.extract_call_seq meth

      container.add_method meth

      last_tk = tk

      while tk = get_tk do
        if :on_semicolon == tk[:kind] then
          break
        elsif :on_nl == tk[:kind] then
          break unless last_tk and :on_comma == last_tk[:kind]
        elsif :on_sp == tk[:kind] then
          # expression continues
        elsif :on_kw == tk[:kind] && 'do' == tk[:text] then
          parse_statements container, single, meth
          break
        else
          last_tk = tk
        end
      end
    end
  end

  ##
  # Parses a normal method defined by +def+

  def parse_method(container, single, tk, comment)
    singleton = nil
    added_container = false
    name = nil
    column  = tk[:char_no]
    line_no = tk[:line_no]

    start_collecting_tokens
    add_token tk

    token_listener self do
      prev_container = container
      name, container, singleton = parse_method_name container
      added_container = container != prev_container
    end

    return unless name

    meth = RDoc::AnyMethod.new get_tkread, name
    look_for_directives_in meth, comment
    meth.singleton = single == SINGLE ? true : singleton

    record_location meth
    meth.line   = line_no

    meth.start_collecting_tokens
    indent = RDoc::Parser::RipperStateLex::Token.new(1, 1, :on_sp, ' ' * column)
    token = RDoc::Parser::RipperStateLex::Token.new(line_no, 1, :on_comment)
    token[:text] = "# File #{@top_level.relative_name}, line #{line_no}"
    newline = RDoc::Parser::RipperStateLex::Token.new(0, 0, :on_nl, "\n")
    meth.add_tokens [token, newline, indent]
    meth.add_tokens @token_stream

    parse_method_params_and_body container, single, meth, added_container

    comment.normalize
    comment.extract_call_seq meth

    meth.comment = comment

    # after end modifiers
    read_documentation_modifiers meth, RDoc::METHOD_MODIFIERS

    @stats.add_method meth
  end

  ##
  # Parses the parameters and body of +meth+

  def parse_method_params_and_body container, single, meth, added_container
    token_listener meth do
      parse_method_parameters meth

      if meth.document_self or not @track_visibility then
        container.add_method meth
      elsif added_container then
        container.document_self = false
      end

      # Having now read the method parameters and documentation modifiers, we
      # now know whether we have to rename #initialize to ::new

      if meth.name == "initialize" && !meth.singleton then
        if meth.dont_rename_initialize then
          meth.visibility = :protected
        else
          meth.singleton = true
          meth.name = "new"
          meth.visibility = :public
        end
      end

      parse_statements container, single, meth
    end
  end

  ##
  # Parses a method that needs to be ignored.

  def parse_method_dummy container
    dummy = RDoc::Context.new
    dummy.parent = container
    dummy.store  = container.store
    skip_method dummy
  end

  ##
  # Parses the name of a method in +container+.
  #
  # Returns the method name, the container it is in (for def Foo.name) and if
  # it is a singleton or regular method.

  def parse_method_name container # :nodoc:
    skip_tkspace
    name_t = get_tk
    back_tk = skip_tkspace_without_nl
    singleton = false

    dot = get_tk
    if dot[:kind] == :on_period || (dot[:kind] == :on_op && dot[:text] == '::') then
      singleton = true

      name, container = parse_method_name_singleton container, name_t
    else
      unget_tk dot
      back_tk.reverse_each do |token|
        unget_tk token
      end

      name = parse_method_name_regular container, name_t
    end

    return name, container, singleton
  end

  ##
  # For the given +container+ and initial name token +name_t+ the method name
  # is parsed from the token stream for a regular method.

  def parse_method_name_regular container, name_t # :nodoc:
    if :on_op == name_t[:kind] && (%w{* & [] []= <<}.include?(name_t[:text])) then
      name_t[:text]
    else
      unless [:on_kw, :on_const, :on_ident].include?(name_t[:kind]) then
        warn "expected method name token, . or ::, got #{name_t.inspect}"
        skip_method container
        return
      end
      name_t[:text]
    end
  end

  ##
  # For the given +container+ and initial name token +name_t+ the method name
  # and the new +container+ (if necessary) are parsed from the token stream
  # for a singleton method.

  def parse_method_name_singleton container, name_t # :nodoc:
    skip_tkspace
    name_t2 = get_tk

    if (:on_kw == name_t[:kind] && 'self' == name_t[:text]) || (:on_op == name_t[:kind] && '%' == name_t[:text]) then
      # NOTE: work around '[' being consumed early
      if :on_lbracket == name_t2[:kind]
        get_tk
        name = '[]'
      else
        name = name_t2[:text]
      end
    elsif :on_const == name_t[:kind] then
      name = name_t2[:text]

      container = get_method_container container, name_t

      return unless container

      name
    elsif :on_ident == name_t[:kind] || :on_ivar == name_t[:kind] || :on_gvar == name_t[:kind] then
      parse_method_dummy container

      name = nil
    elsif (:on_kw == name_t[:kind]) && ('true' == name_t[:text] || 'false' == name_t[:text] || 'nil' == name_t[:text]) then
      klass_name = "#{name_t[:text].capitalize}Class"
      container = @store.find_class_named klass_name
      container ||= @top_level.add_class RDoc::NormalClass, klass_name

      name = name_t2[:text]
    else
      warn "unexpected method name token #{name_t.inspect}"
      # break
      skip_method container

      name = nil
    end

    return name, container
  end

  ##
  # Extracts +yield+ parameters from +method+

  def parse_method_or_yield_parameters(method = nil,
                                       modifiers = RDoc::METHOD_MODIFIERS)
    skip_tkspace_without_nl
    tk = get_tk
    end_token = get_end_token tk
    return '' unless end_token

    nest = 0
    continue = false

    while tk != nil do
      case tk[:kind]
      when :on_semicolon then
        break if nest == 0
      when :on_lbracket then
        nest += 1
      when :on_rbracket then
        nest -= 1
      when :on_lbrace then
        nest += 1
      when :on_rbrace then
        nest -= 1
        if nest <= 0
          # we might have a.each { |i| yield i }
          unget_tk(tk) if nest < 0
          break
        end
      when :on_lparen then
        nest += 1
      when end_token[:kind] then
        if end_token[:kind] == :on_rparen
          nest -= 1
          break if nest <= 0
        else
          break
        end
      when :on_rparen then
        nest -= 1
      when :on_comment, :on_embdoc then
        @read.pop
        if :on_nl == end_token[:kind] and "\n" == tk[:text][-1] and
          (!continue or (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) != 0) then
          if method && method.block_params.nil? then
            unget_tk tk
            read_documentation_modifiers method, modifiers
          end
          break if !continue and nest <= 0
        end
      when :on_comma then
        continue = true
      when :on_ident then
        continue = false if continue
      end
      tk = get_tk
    end

    get_tkread_clean(/\s+/, ' ')
  end

  ##
  # Capture the method's parameters. Along the way, look for a comment
  # containing:
  #
  #    # yields: ....
  #
  # and add this as the block_params for the method

  def parse_method_parameters method
    res = parse_method_or_yield_parameters method

    res = "(#{res})" unless res =~ /\A\(/
    method.params = res unless method.params

    return if  method.block_params

    skip_tkspace_without_nl
    read_documentation_modifiers method, RDoc::METHOD_MODIFIERS
  end

  ##
  # Parses an RDoc::NormalModule in +container+ with +comment+

  def parse_module container, single, tk, comment
    container, name_t, = get_class_or_module container

    name = name_t[:text]

    mod = container.add_module RDoc::NormalModule, name
    mod.ignore unless container.document_children
    record_location mod

    read_documentation_modifiers mod, RDoc::CLASS_MODIFIERS
    mod.add_comment comment, @top_level
    parse_statements mod

    # after end modifiers
    read_documentation_modifiers mod, RDoc::CLASS_MODIFIERS

    @stats.add_module mod
  end

  ##
  # Parses an RDoc::Require in +context+ containing +comment+

  def parse_require(context, comment)
    skip_tkspace_comment
    tk = get_tk

    if :on_lparen == tk[:kind] then
      skip_tkspace_comment
      tk = get_tk
    end

    name = tk[:text][1..-2] if :on_tstring == tk[:kind]

    if name then
      @top_level.add_require RDoc::Require.new(name, comment)
    else
      unget_tk tk
    end
  end

  ##
  # Parses a rescue

  def parse_rescue
    skip_tkspace_without_nl

    while tk = get_tk
      case tk[:kind]
      when :on_nl, :on_semicolon, :on_comment then
        break
      when :on_comma then
        skip_tkspace_without_nl

        get_tk if :on_nl == peek_tk[:kind]
      end

      skip_tkspace_without_nl
    end
  end

  ##
  # Retrieve comment body without =begin/=end

  def retrieve_comment_body(tk)
    if :on_embdoc == tk[:kind]
      tk[:text].gsub(/\A=begin.*\n/, '').gsub(/=end\n?\z/, '')
    else
      tk[:text]
    end
  end

  ##
  # The core of the Ruby parser.

  def parse_statements(container, single = NORMAL, current_method = nil,
                       comment = new_comment(''))
    raise 'no' unless RDoc::Comment === comment
    comment = RDoc::Encoding.change_encoding comment, @encoding if @encoding

    nest = 1
    save_visibility = container.visibility

    non_comment_seen = true

    while tk = get_tk do
      keep_comment = false
      try_parse_comment = false

      non_comment_seen = true unless (:on_comment == tk[:kind] or :on_embdoc == tk[:kind])

      case tk[:kind]
      when :on_nl, :on_ignored_nl, :on_comment, :on_embdoc then
        if :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]
          skip_tkspace
          tk = get_tk
        else
          past_tokens = @read.size > 1 ? @read[0..-2] : []
          nl_position = 0
          past_tokens.reverse.each_with_index do |read_tk, i|
            if read_tk =~ /^\n$/ then
              nl_position = (past_tokens.size - 1) - i
              break
            elsif read_tk =~ /^#.*\n$/ then
              nl_position = ((past_tokens.size - 1) - i) + 1
              break
            end
          end
          comment_only_line = past_tokens[nl_position..-1].all?{ |c| c =~ /^\s+$/ }
          unless comment_only_line then
            tk = get_tk
          end
        end

        if tk and (:on_comment == tk[:kind] or :on_embdoc == tk[:kind]) then
          if non_comment_seen then
            # Look for RDoc in a comment about to be thrown away
            non_comment_seen = parse_comment container, tk, comment unless
              comment.empty?

            comment = ''
            comment = RDoc::Encoding.change_encoding comment, @encoding if @encoding
          end

          line_no = nil
          while tk and (:on_comment == tk[:kind] or :on_embdoc == tk[:kind]) do
            comment_body = retrieve_comment_body(tk)
            line_no = tk[:line_no] if comment.empty?
            comment += comment_body
            comment << "\n" unless comment_body =~ /\n\z/

            if comment_body.size > 1 && comment_body =~ /\n\z/ then
              skip_tkspace_without_nl # leading spaces
            end
            tk = get_tk
          end

          comment = new_comment comment, line_no

          unless comment.empty? then
            look_for_directives_in container, comment

            if container.done_documenting then
              throw :eof if RDoc::TopLevel === container
              container.ongoing_visibility = save_visibility
            end
          end

          keep_comment = true
        else
          non_comment_seen = true
        end

        unget_tk tk
        keep_comment = true
        container.current_line_visibility = nil

      when :on_kw then
        case tk[:text]
        when 'class' then
          parse_class container, single, tk, comment

        when 'module' then
          parse_module container, single, tk, comment

        when 'def' then
          parse_method container, single, tk, comment

        when 'alias' then
          parse_alias container, single, tk, comment unless current_method

        when 'yield' then
          if current_method.nil? then
            warn "Warning: yield outside of method" if container.document_self
          else
            parse_yield container, single, tk, current_method
          end

        when 'until', 'while' then
          if (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) == 0
            nest += 1
            skip_optional_do_after_expression
          end

        # Until and While can have a 'do', which shouldn't increase the nesting.
        # We can't solve the general case, but we can handle most occurrences by
        # ignoring a do at the end of a line.

        # 'for' is trickier
        when 'for' then
          nest += 1
          skip_for_variable
          skip_optional_do_after_expression

        when 'case', 'do', 'if', 'unless', 'begin' then
          if (tk[:state] & RDoc::Parser::RipperStateLex::EXPR_LABEL) == 0
            nest += 1
          end

        when 'super' then
          current_method.calls_super = true if current_method

        when 'rescue' then
          parse_rescue

        when 'end' then
          nest -= 1
          if nest == 0 then
            container.ongoing_visibility = save_visibility

            parse_comment container, tk, comment unless comment.empty?

            return
          end
        end

      when :on_const then
        unless parse_constant container, tk, comment, current_method then
          try_parse_comment = true
        end

      when :on_ident then
        if nest == 1 and current_method.nil? then
          keep_comment = parse_identifier container, single, tk, comment
        end

        case tk[:text]
        when "require" then
          parse_require container, comment
        when "include" then
          parse_extend_or_include RDoc::Include, container, comment
        when "extend" then
          parse_extend_or_include RDoc::Extend, container, comment
        end

      else
        try_parse_comment = nest == 1
      end

      if try_parse_comment then
        non_comment_seen = parse_comment container, tk, comment unless
          comment.empty?

        keep_comment = false
      end

      unless keep_comment then
        comment = new_comment ''
        comment = RDoc::Encoding.change_encoding comment, @encoding if @encoding
        container.params = nil
        container.block_params = nil
      end

      consume_trailing_spaces
    end

    container.params = nil
    container.block_params = nil
  end

  ##
  # Parse up to +no+ symbol arguments

  def parse_symbol_arg(no = nil)
    skip_tkspace_comment

    tk = get_tk
    if tk[:kind] == :on_lparen
      parse_symbol_arg_paren no
    else
      parse_symbol_arg_space no, tk
    end
  end

  ##
  # Parses up to +no+ symbol arguments surrounded by () and places them in
  # +args+.

  def parse_symbol_arg_paren no # :nodoc:
    args = []

    loop do
      skip_tkspace_comment
      if tk1 = parse_symbol_in_arg
        args.push tk1
        break if no and args.size >= no
      end

      skip_tkspace_comment
      case (tk2 = get_tk)[:kind]
      when :on_rparen
        break
      when :on_comma
      else
        warn("unexpected token: '#{tk2.inspect}'") if $DEBUG_RDOC
        break
      end
    end

    args
  end

  ##
  # Parses up to +no+ symbol arguments separated by spaces and places them in
  # +args+.

  def parse_symbol_arg_space no, tk # :nodoc:
    args = []

    unget_tk tk
    if tk = parse_symbol_in_arg
      args.push tk
      return args if no and args.size >= no
    end

    loop do
      skip_tkspace_without_nl

      tk1 = get_tk
      if tk1.nil? || :on_comma != tk1[:kind] then
        unget_tk tk1
        break
      end

      skip_tkspace_comment
      if tk = parse_symbol_in_arg
        args.push tk
        break if no and args.size >= no
      end
    end

    args
  end

  ##
  # Returns symbol text from the next token

  def parse_symbol_in_arg
    tk = get_tk
    if :on_symbol == tk[:kind] then
      tk[:text].sub(/^:/, '')
    elsif :on_tstring == tk[:kind] then
      tk[:text][1..-2]
    elsif :on_dstring == tk[:kind] or :on_ident == tk[:kind] then
      nil # ignore
    else
      warn("Expected symbol or string, got #{tk.inspect}") if $DEBUG_RDOC
      nil
    end
  end

  ##
  # Parses statements in the top-level +container+

  def parse_top_level_statements container
    comment = collect_first_comment

    look_for_directives_in container, comment

    throw :eof if container.done_documenting

    @markup = comment.format

    # HACK move if to RDoc::Context#comment=
    container.comment = comment if container.document_self unless comment.empty?

    parse_statements container, NORMAL, nil, comment
  end

  ##
  # Determines the visibility in +container+ from +tk+

  def parse_visibility(container, single, tk)
    vis_type, vis, singleton = get_visibility_information tk, single

    skip_tkspace_comment false

    ptk = peek_tk
    # Ryan Davis suggested the extension to ignore modifiers, because he
    # often writes
    #
    #   protected unless $TESTING
    #
    if [:on_nl, :on_semicolon].include?(ptk[:kind]) || (:on_kw == ptk[:kind] && (['if', 'unless'].include?(ptk[:text]))) then
      container.ongoing_visibility = vis
    elsif :on_kw == ptk[:kind] && 'def' == ptk[:text]
      container.current_line_visibility = vis
    else
      update_visibility container, vis_type, vis, singleton
    end
  end

  ##
  # Parses a Module#private_constant or Module#public_constant call from +tk+.

  def parse_constant_visibility(container, single, tk)
    args = parse_symbol_arg
    case tk[:text]
    when 'private_constant'
      vis = :private
    when 'public_constant'
      vis = :public
    else
      raise RDoc::Error, 'Unreachable'
    end
    container.set_constant_visibility_for args, vis
  end

  ##
  # Determines the block parameter for +context+

  def parse_yield(context, single, tk, method)
    return if method.block_params

    get_tkread
    method.block_params = parse_method_or_yield_parameters
  end

  ##
  # Directives are modifier comments that can appear after class, module, or
  # method names. For example:
  #
  #   def fred # :yields: a, b
  #
  # or:
  #
  #   class MyClass # :nodoc:
  #
  # We return the directive name and any parameters as a two element array if
  # the name is in +allowed+.  A directive can be found anywhere up to the end
  # of the current line.

  def read_directive allowed
    tokens = []

    while tk = get_tk do
      tokens << tk

      if :on_nl == tk[:kind] or (:on_kw == tk[:kind] && 'def' == tk[:text]) then
        return
      elsif :on_comment == tk[:kind] or :on_embdoc == tk[:kind] then
        return unless tk[:text] =~ /\s*:?([\w-]+):\s*(.*)/

        directive = $1.downcase

        return [directive, $2] if allowed.include? directive

        return
      end
    end
  ensure
    unless tokens.length == 1 and (:on_comment == tokens.first[:kind] or :on_embdoc == tokens.first[:kind]) then
      tokens.reverse_each do |token|
        unget_tk token
      end
    end
  end

  ##
  # Handles directives following the definition for +context+ (any
  # RDoc::CodeObject) if the directives are +allowed+ at this point.
  #
  # See also RDoc::Markup::PreProcess#handle_directive

  def read_documentation_modifiers context, allowed
    skip_tkspace_without_nl
    directive, value = read_directive allowed

    return unless directive

    @preprocess.handle_directive '', directive, value, context do |dir, param|
      if %w[notnew not_new not-new].include? dir then
        context.dont_rename_initialize = true

        true
      end
    end
  end

  ##
  # Records the location of this +container+ in the file for this parser and
  # adds it to the list of classes and modules in the file.

  def record_location container # :nodoc:
    case container
    when RDoc::ClassModule then
      @top_level.add_to_classes_or_modules container
    end

    container.record_location @top_level
  end

  ##
  # Scans this Ruby file for Ruby constructs

  def scan
    reset

    catch :eof do
      begin
        parse_top_level_statements @top_level

      rescue StandardError => e
        if @content.include?('<%') and @content.include?('%>') then
          # Maybe, this is ERB.
          $stderr.puts "\033[2KRDoc detects ERB file. Skips it for compatibility:"
          $stderr.puts @file_name
          return
        end

        if @scanner_point >= @scanner.size
          now_line_no = @scanner[@scanner.size - 1][:line_no]
        else
          now_line_no = peek_tk[:line_no]
        end
        first_tk_index = @scanner.find_index { |tk| tk[:line_no] == now_line_no }
        last_tk_index = @scanner.find_index { |tk| tk[:line_no] == now_line_no + 1 }
        last_tk_index = last_tk_index ? last_tk_index - 1 : @scanner.size - 1
        code = @scanner[first_tk_index..last_tk_index].map{ |t| t[:text] }.join

        $stderr.puts <<-EOF

#{self.class} failure around line #{now_line_no} of
#{@file_name}

        EOF

        unless code.empty? then
          $stderr.puts code
          $stderr.puts
        end

        raise e
      end
    end

    @top_level
  end

  ##
  # while, until, and for have an optional do

  def skip_optional_do_after_expression
    skip_tkspace_without_nl
    tk = get_tk

    b_nest = 0
    nest = 0

    loop do
      break unless tk
      case tk[:kind]
      when :on_semicolon, :on_nl, :on_ignored_nl then
        break if b_nest.zero?
      when :on_lparen then
        nest += 1
      when :on_rparen then
        nest -= 1
      when :on_kw then
        case tk[:text]
        when 'begin'
          b_nest += 1
        when 'end'
          b_nest -= 1
        when 'do'
          break if nest.zero?
        end
      when :on_comment, :on_embdoc then
        if b_nest.zero? and "\n" == tk[:text][-1] then
          break
        end
      end
      tk = get_tk
    end

    skip_tkspace_without_nl

    get_tk if peek_tk && :on_kw == peek_tk[:kind] && 'do' == peek_tk[:text]
  end

  ##
  # skip the var [in] part of a 'for' statement

  def skip_for_variable
    skip_tkspace_without_nl
    get_tk
    skip_tkspace_without_nl
    tk = get_tk
    unget_tk(tk) unless :on_kw == tk[:kind] and 'in' == tk[:text]
  end

  ##
  # Skips the next method in +container+

  def skip_method container
    meth = RDoc::AnyMethod.new "", "anon"
    parse_method_parameters meth
    parse_statements container, false, meth
  end

  ##
  # Skip spaces until a comment is found

  def skip_tkspace_comment(skip_nl = true)
    loop do
      skip_nl ? skip_tkspace : skip_tkspace_without_nl
      next_tk = peek_tk
      return if next_tk.nil? || (:on_comment != next_tk[:kind] and :on_embdoc != next_tk[:kind])
      get_tk
    end
  end

  ##
  # Updates visibility in +container+ from +vis_type+ and +vis+.

  def update_visibility container, vis_type, vis, singleton # :nodoc:
    new_methods = []

    case vis_type
    when 'module_function' then
      args = parse_symbol_arg
      container.set_visibility_for args, :private, false

      container.methods_matching args do |m|
        s_m = m.dup
        record_location s_m
        s_m.singleton = true
        new_methods << s_m
      end
    when 'public_class_method', 'private_class_method' then
      args = parse_symbol_arg

      container.methods_matching args, true do |m|
        if m.parent != container then
          m = m.dup
          record_location m
          new_methods << m
        end

        m.visibility = vis
      end
    else
      args = parse_symbol_arg
      container.set_visibility_for args, vis, singleton
    end

    new_methods.each do |method|
      case method
      when RDoc::AnyMethod then
        container.add_method method
      when RDoc::Attr then
        container.add_attribute method
      end
      method.visibility = vis
    end
  end

  ##
  # Prints +message+ to +$stderr+ unless we're being quiet

  def warn message
    @options.warn make_message message
  end

end
PKBH[�7��334share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/text.rbnu�[���# frozen_string_literal: true
##
# Indicates this parser is text and doesn't contain code constructs.
#
# Include this module in a RDoc::Parser subclass to make it show up as a file,
# not as part of a class or module.
#--
# This is not named File to avoid overriding ::File

module RDoc::Parser::Text
end

PKBH[��9G�G�1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/c.rbnu�[���# frozen_string_literal: true
require 'tsort'

##
# RDoc::Parser::C attempts to parse C extension files.  It looks for
# the standard patterns that you find in extensions: +rb_define_class+,
# +rb_define_method+ and so on.  It tries to find the corresponding
# C source for the methods and extract comments, but if we fail
# we don't worry too much.
#
# The comments associated with a Ruby method are extracted from the C
# comment block associated with the routine that _implements_ that
# method, that is to say the method whose name is given in the
# +rb_define_method+ call. For example, you might write:
#
#   /*
#    * Returns a new array that is a one-dimensional flattening of this
#    * array (recursively). That is, for every element that is an array,
#    * extract its elements into the new array.
#    *
#    *    s = [ 1, 2, 3 ]           #=> [1, 2, 3]
#    *    t = [ 4, 5, 6, [7, 8] ]   #=> [4, 5, 6, [7, 8]]
#    *    a = [ s, t, 9, 10 ]       #=> [[1, 2, 3], [4, 5, 6, [7, 8]], 9, 10]
#    *    a.flatten                 #=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
#    */
#    static VALUE
#    rb_ary_flatten(VALUE ary)
#    {
#        ary = rb_obj_dup(ary);
#        rb_ary_flatten_bang(ary);
#        return ary;
#    }
#
#    ...
#
#    void
#    Init_Array(void)
#    {
#      ...
#      rb_define_method(rb_cArray, "flatten", rb_ary_flatten, 0);
#
# Here RDoc will determine from the +rb_define_method+ line that there's a
# method called "flatten" in class Array, and will look for the implementation
# in the method +rb_ary_flatten+. It will then use the comment from that
# method in the HTML output. This method must be in the same source file
# as the +rb_define_method+.
#
# The comment blocks may include special directives:
#
# [Document-class: +name+]
#   Documentation for the named class.
#
# [Document-module: +name+]
#   Documentation for the named module.
#
# [Document-const: +name+]
#   Documentation for the named +rb_define_const+.
#
#   Constant values can be supplied on the first line of the comment like so:
#
#     /* 300: The highest possible score in bowling */
#     rb_define_const(cFoo, "PERFECT", INT2FIX(300));
#
#   The value can contain internal colons so long as they are escaped with a \
#
# [Document-global: +name+]
#   Documentation for the named +rb_define_global_const+
#
# [Document-variable: +name+]
#   Documentation for the named +rb_define_variable+
#
# [Document-method\: +method_name+]
#   Documentation for the named method.  Use this when the method name is
#   unambiguous.
#
# [Document-method\: <tt>ClassName::method_name</tt>]
#   Documentation for a singleton method in the given class.  Use this when
#   the method name alone is ambiguous.
#
# [Document-method\: <tt>ClassName#method_name</tt>]
#   Documentation for a instance method in the given class.  Use this when the
#   method name alone is ambiguous.
#
# [Document-attr: +name+]
#   Documentation for the named attribute.
#
# [call-seq:  <i>text up to an empty line</i>]
#   Because C source doesn't give descriptive names to Ruby-level parameters,
#   you need to document the calling sequence explicitly
#
# In addition, RDoc assumes by default that the C method implementing a
# Ruby function is in the same source file as the rb_define_method call.
# If this isn't the case, add the comment:
#
#   rb_define_method(....);  // in filename
#
# As an example, we might have an extension that defines multiple classes
# in its Init_xxx method. We could document them using
#
#   /*
#    * Document-class:  MyClass
#    *
#    * Encapsulate the writing and reading of the configuration
#    * file. ...
#    */
#
#   /*
#    * Document-method: read_value
#    *
#    * call-seq:
#    *   cfg.read_value(key)            -> value
#    *   cfg.read_value(key} { |key| }  -> value
#    *
#    * Return the value corresponding to +key+ from the configuration.
#    * In the second form, if the key isn't found, invoke the
#    * block and return its value.
#    */

class RDoc::Parser::C < RDoc::Parser

  parse_files_matching(/\.(?:([CcHh])\1?|c([+xp])\2|y)\z/)

  include RDoc::Text

  ##
  # Maps C variable names to names of Ruby classes or modules

  attr_reader :classes

  ##
  # C file the parser is parsing

  attr_accessor :content

  ##
  # Dependencies from a missing enclosing class to the classes in
  # missing_dependencies that depend upon it.

  attr_reader :enclosure_dependencies

  ##
  # Maps C variable names to names of Ruby classes (and singleton classes)

  attr_reader :known_classes

  ##
  # Classes found while parsing the C file that were not yet registered due to
  # a missing enclosing class.  These are processed by do_missing

  attr_reader :missing_dependencies

  ##
  # Maps C variable names to names of Ruby singleton classes

  attr_reader :singleton_classes

  ##
  # The TopLevel items in the parsed file belong to

  attr_reader :top_level

  ##
  # Prepares for parsing a C file.  See RDoc::Parser#initialize for details on
  # the arguments.

  def initialize top_level, file_name, content, options, stats
    super

    @known_classes = RDoc::KNOWN_CLASSES.dup
    @content = handle_tab_width handle_ifdefs_in @content
    @file_dir = File.dirname @file_name

    @classes           = load_variable_map :c_class_variables
    @singleton_classes = load_variable_map :c_singleton_class_variables

    # class_variable => { function => [method, ...] }
    @methods = Hash.new { |h, f| h[f] = Hash.new { |i, m| i[m] = [] } }

    # missing variable => [handle_class_module arguments]
    @missing_dependencies = {}

    # missing enclosure variable => [dependent handle_class_module arguments]
    @enclosure_dependencies = Hash.new { |h, k| h[k] = [] }
    @enclosure_dependencies.instance_variable_set :@missing_dependencies,
                                                  @missing_dependencies

    @enclosure_dependencies.extend TSort

    def @enclosure_dependencies.tsort_each_node &block
      each_key(&block)
    rescue TSort::Cyclic => e
      cycle_vars = e.message.scan(/"(.*?)"/).flatten

      cycle = cycle_vars.sort.map do |var_name|
        delete var_name

        var_name, type, mod_name, = @missing_dependencies[var_name]

        "#{type} #{mod_name} (#{var_name})"
      end.join ', '

      warn "Unable to create #{cycle} due to a cyclic class or module creation"

      retry
    end

    def @enclosure_dependencies.tsort_each_child node, &block
      fetch(node, []).each(&block)
    end
  end

  ##
  # Removes duplicate call-seq entries for methods using the same
  # implementation.

  def deduplicate_call_seq
    @methods.each do |var_name, functions|
      class_name = @known_classes[var_name]
      next unless class_name
      class_obj  = find_class var_name, class_name

      functions.each_value do |method_names|
        next if method_names.length == 1

        method_names.each do |method_name|
          deduplicate_method_name class_obj, method_name
        end
      end
    end
  end

  ##
  # If two ruby methods share a C implementation (and comment) this
  # deduplicates the examples in the call_seq for the method to reduce
  # confusion in the output.

  def deduplicate_method_name class_obj, method_name # :nodoc:
    return unless
      method = class_obj.method_list.find { |m| m.name == method_name }
    return unless call_seq = method.call_seq

    method_name = method_name[0, 1] if method_name =~ /\A\[/

    entries = call_seq.split "\n"

    matching = entries.select do |entry|
      entry =~ /^\w*\.?#{Regexp.escape method_name}/ or
        entry =~ /\s#{Regexp.escape method_name}\s/
    end

    method.call_seq = matching.join "\n"
  end

  ##
  # Scans #content for rb_define_alias

  def do_aliases
    @content.scan(/rb_define_alias\s*\(
                   \s*(\w+),
                   \s*"(.+?)",
                   \s*"(.+?)"
                   \s*\)/xm) do |var_name, new_name, old_name|
      class_name = @known_classes[var_name]

      unless class_name then
        @options.warn "Enclosing class or module %p for alias %s %s is not known" % [
          var_name, new_name, old_name]
        next
      end

      class_obj = find_class var_name, class_name

      al = RDoc::Alias.new '', old_name, new_name, ''
      al.singleton = @singleton_classes.key? var_name

      comment = find_alias_comment var_name, new_name, old_name

      comment.normalize

      al.comment = comment

      al.record_location @top_level

      class_obj.add_alias al
      @stats.add_alias al
    end
  end

  ##
  # Scans #content for rb_attr and rb_define_attr

  def do_attrs
    @content.scan(/rb_attr\s*\(
                   \s*(\w+),
                   \s*([\w"()]+),
                   \s*([01]),
                   \s*([01]),
                   \s*\w+\);/xm) do |var_name, attr_name, read, write|
      handle_attr var_name, attr_name, read, write
    end

    @content.scan(%r%rb_define_attr\(
                             \s*([\w\.]+),
                             \s*"([^"]+)",
                             \s*(\d+),
                             \s*(\d+)\s*\);
                %xm) do |var_name, attr_name, read, write|
      handle_attr var_name, attr_name, read, write
    end
  end

  ##
  # Scans #content for boot_defclass

  def do_boot_defclass
    @content.scan(/(\w+)\s*=\s*boot_defclass\s*\(\s*"(\w+?)",\s*(\w+?)\s*\)/) do
      |var_name, class_name, parent|
      parent = nil if parent == "0"
      handle_class_module(var_name, :class, class_name, parent, nil)
    end
  end

  ##
  # Scans #content for rb_define_class, boot_defclass, rb_define_class_under
  # and rb_singleton_class

  def do_classes_and_modules
    do_boot_defclass if @file_name == "class.c"

    @content.scan(
      %r(
        (?<var_name>[\w\.]+)\s* =
        \s*rb_(?:
          define_(?:
            class(?: # rb_define_class(class_name_1, parent_name_1)
              \s*\(
                \s*"(?<class_name_1>\w+)",
                \s*(?<parent_name_1>\w+)\s*
              \)
            |
              _under\s*\( # rb_define_class_under(class_under, class_name2, parent_name2...)
                \s* (?<class_under>\w+),
                \s* "(?<class_name_2>\w+)",
                \s*
                (?:
                  (?<parent_name_2>[\w\*\s\(\)\.\->]+) |
                  rb_path2class\("(?<path>[\w:]+)"\)
                )
              \s*\)
            )
          |
            module(?: # rb_define_module(module_name_1)
              \s*\(
                \s*"(?<module_name_1>\w+)"\s*
              \)
            |
              _under\s*\( # rb_define_module_under(module_under, module_name_1)
                \s*(?<module_under>\w+),
                \s*"(?<module_name_2>\w+)"
              \s*\)
            )
          )
      |
        struct_define_without_accessor\s*\( # rb_struct_define_without_accessor(class_name_3, parent_name_3, ...)
          \s*"(?<class_name_3>\w+)",
          \s*(?<parent_name_3>\w+),
          \s*\w+,        # Allocation function
          (?:\s*"\w+",)* # Attributes
          \s*NULL
        \)
      |
        singleton_class\s*\( # rb_singleton_class(target_class_name)
          \s*(?<target_class_name>\w+)
        \)
        )
      )mx
    ) do
      class_name = $~[:class_name_1]
      type = :class
      if class_name
        # rb_define_class(class_name_1, parent_name_1)
        parent_name = $~[:parent_name_1]
        #under = nil
      else
        class_name = $~[:class_name_2]
        if class_name
          # rb_define_class_under(class_under, class_name2, parent_name2...)
          parent_name = $~[:parent_name_2] || $~[:path]
          under = $~[:class_under]
        else
          class_name = $~[:class_name_3]
          if class_name
            # rb_struct_define_without_accessor(class_name_3, parent_name_3, ...)
            parent_name = $~[:parent_name_3]
            #under = nil
          else
            type = :module
            class_name = $~[:module_name_1]
            #parent_name = nil
            if class_name
              # rb_define_module(module_name_1)
              #under = nil
            else
              class_name = $~[:module_name_2]
              if class_name
                # rb_define_module_under(module_under, module_name_1)
                under = $~[:module_under]
              else
                # rb_singleton_class(target_class_name)
                target_class_name = $~[:target_class_name]
                handle_singleton $~[:var_name], target_class_name
                next
              end
            end
          end
        end
      end

      handle_class_module($~[:var_name], type, class_name, parent_name, under)
    end
  end

  ##
  # Scans #content for rb_define_variable, rb_define_readonly_variable,
  # rb_define_const and rb_define_global_const

  def do_constants
    @content.scan(%r%\Wrb_define_
                   ( variable          |
                     readonly_variable |
                     const             |
                     global_const        )
               \s*\(
                 (?:\s*(\w+),)?
                 \s*"(\w+)",
                 \s*(.*?)\s*\)\s*;
                 %xm) do |type, var_name, const_name, definition|
      var_name = "rb_cObject" if !var_name or var_name == "rb_mKernel"
      handle_constants type, var_name, const_name, definition
    end

    @content.scan(%r%
                  \Wrb_curses_define_const
                  \s*\(
                    \s*
                    (\w+)
                    \s*
                  \)
                  \s*;%xm) do |consts|
      const = consts.first

      handle_constants 'const', 'mCurses', const, "UINT2NUM(#{const})"
    end

    @content.scan(%r%
                  \Wrb_file_const
                  \s*\(
                    \s*
                    "([^"]+)",
                    \s*
                    (.*?)
                    \s*
                  \)
                  \s*;%xm) do |name, value|
      handle_constants 'const', 'rb_mFConst', name, value
    end
  end


  ##
  # Scans #content for rb_include_module

  def do_includes
    @content.scan(/rb_include_module\s*\(\s*(\w+?),\s*(\w+?)\s*\)/) do |c,m|
      next unless cls = @classes[c]
      m = @known_classes[m] || m

      comment = RDoc::Comment.new '', @top_level, :c
      incl = cls.add_include RDoc::Include.new(m, comment)
      incl.record_location @top_level
    end
  end

  ##
  # Scans #content for rb_define_method, rb_define_singleton_method,
  # rb_define_module_function, rb_define_private_method,
  # rb_define_global_function and define_filetest_function

  def do_methods
    @content.scan(%r%rb_define_
                   (
                      singleton_method |
                      method           |
                      module_function  |
                      private_method
                   )
                   \s*\(\s*([\w\.]+),
                     \s*"([^"]+)",
                     \s*(?:RUBY_METHOD_FUNC\(|VALUEFUNC\(|\(METHOD\))?(\w+)\)?,
                     \s*(-?\w+)\s*\)
                   (?:;\s*/[*/]\s+in\s+(\w+?\.(?:cpp|c|y)))?
                 %xm) do |type, var_name, meth_name, function, param_count, source_file|

      # Ignore top-object and weird struct.c dynamic stuff
      next if var_name == "ruby_top_self"
      next if var_name == "nstr"

      var_name = "rb_cObject" if var_name == "rb_mKernel"
      handle_method(type, var_name, meth_name, function, param_count,
                    source_file)
    end

    @content.scan(%r%rb_define_global_function\s*\(
                             \s*"([^"]+)",
                             \s*(?:RUBY_METHOD_FUNC\(|VALUEFUNC\()?(\w+)\)?,
                             \s*(-?\w+)\s*\)
                (?:;\s*/[*/]\s+in\s+(\w+?\.[cy]))?
                %xm) do |meth_name, function, param_count, source_file|
      handle_method("method", "rb_mKernel", meth_name, function, param_count,
                    source_file)
    end

    @content.scan(/define_filetest_function\s*\(
                     \s*"([^"]+)",
                     \s*(?:RUBY_METHOD_FUNC\(|VALUEFUNC\()?(\w+)\)?,
                     \s*(-?\w+)\s*\)/xm) do |meth_name, function, param_count|

      handle_method("method", "rb_mFileTest", meth_name, function, param_count)
      handle_method("singleton_method", "rb_cFile", meth_name, function,
                    param_count)
    end
  end

  ##
  # Creates classes and module that were missing were defined due to the file
  # order being different than the declaration order.

  def do_missing
    return if @missing_dependencies.empty?

    @enclosure_dependencies.tsort.each do |in_module|
      arguments = @missing_dependencies.delete in_module

      next unless arguments # dependency on existing class

      handle_class_module(*arguments)
    end
  end

  ##
  # Finds the comment for an alias on +class_name+ from +new_name+ to
  # +old_name+

  def find_alias_comment class_name, new_name, old_name
    content =~ %r%((?>/\*.*?\*/\s+))
                  rb_define_alias\(\s*#{Regexp.escape class_name}\s*,
                                   \s*"#{Regexp.escape new_name}"\s*,
                                   \s*"#{Regexp.escape old_name}"\s*\);%xm

    RDoc::Comment.new($1 || '', @top_level, :c)
  end

  ##
  # Finds a comment for rb_define_attr, rb_attr or Document-attr.
  #
  # +var_name+ is the C class variable the attribute is defined on.
  # +attr_name+ is the attribute's name.
  #
  # +read+ and +write+ are the read/write flags ('1' or '0').  Either both or
  # neither must be provided.

  def find_attr_comment var_name, attr_name, read = nil, write = nil
    attr_name = Regexp.escape attr_name

    rw = if read and write then
           /\s*#{read}\s*,\s*#{write}\s*/xm
         else
           /.*?/m
         end

    comment = if @content =~ %r%((?>/\*.*?\*/\s+))
                                rb_define_attr\((?:\s*#{var_name},)?\s*
                                                "#{attr_name}"\s*,
                                                #{rw}\)\s*;%xm then
                $1
              elsif @content =~ %r%((?>/\*.*?\*/\s+))
                                   rb_attr\(\s*#{var_name}\s*,
                                            \s*#{attr_name}\s*,
                                            #{rw},.*?\)\s*;%xm then
                $1
              elsif @content =~ %r%(/\*.*?(?:\s*\*\s*)?)
                                   Document-attr:\s#{attr_name}\s*?\n
                                   ((?>(.|\n)*?\*/))%x then
                "#{$1}\n#{$2}"
              else
                ''
              end

    RDoc::Comment.new comment, @top_level, :c
  end

  ##
  # Generate a Ruby-method table

  def gen_body_table file_content
    table = {}
    file_content.scan(%r{
      ((?>/\*.*?\*/\s*)?)
      ((?:(?:\w+)\s+)?
        (?:intern\s+)?VALUE\s+(\w+)
        \s*(?:\([^)]*\))(?:[^;]|$))
    | ((?>/\*.*?\*/\s*))^\s*(\#\s*define\s+(\w+)\s+(\w+))
    | ^\s*\#\s*define\s+(\w+)\s+(\w+)
    }xm) do
      case
      when $1
        table[$3] = [:func_def, $1, $2, $~.offset(2)] if !table[$3] || table[$3][0] != :func_def
      when $4
        table[$6] = [:macro_def, $4, $5, $~.offset(5), $7] if !table[$6] || table[$6][0] == :macro_alias
      when $8
        table[$8] ||= [:macro_alias, $9]
      end
    end
    table
  end

  ##
  # Find the C code corresponding to a Ruby method

  def find_body class_name, meth_name, meth_obj, file_content, quiet = false
    if file_content
      @body_table ||= {}
      @body_table[file_content] ||= gen_body_table file_content
      type, *args = @body_table[file_content][meth_name]
    end

    case type
    when :func_def
      comment = RDoc::Comment.new args[0], @top_level, :c
      body = args[1]
      offset, = args[2]

      comment.remove_private if comment

      # try to find the whole body
      body = $& if /#{Regexp.escape body}[^(]*?\{.*?^\}/m =~ file_content

      # The comment block may have been overridden with a 'Document-method'
      # block. This happens in the interpreter when multiple methods are
      # vectored through to the same C method but those methods are logically
      # distinct (for example Kernel.hash and Kernel.object_id share the same
      # implementation

      override_comment = find_override_comment class_name, meth_obj
      comment = override_comment if override_comment

      comment.normalize
      find_modifiers comment, meth_obj if comment

      #meth_obj.params = params
      meth_obj.start_collecting_tokens
      tk = { :line_no => 1, :char_no => 1, :text => body }
      meth_obj.add_token tk
      meth_obj.comment = comment
      meth_obj.line    = file_content[0, offset].count("\n") + 1

      body
    when :macro_def
      comment = RDoc::Comment.new args[0], @top_level, :c
      body = args[1]
      offset, = args[2]

      find_body class_name, args[3], meth_obj, file_content, true

      comment.normalize
      find_modifiers comment, meth_obj

      meth_obj.start_collecting_tokens
      tk = { :line_no => 1, :char_no => 1, :text => body }
      meth_obj.add_token tk
      meth_obj.comment = comment
      meth_obj.line    = file_content[0, offset].count("\n") + 1

      body
    when :macro_alias
      # with no comment we hope the aliased definition has it and use it's
      # definition

      body = find_body(class_name, args[0], meth_obj, file_content, true)

      return body if body

      @options.warn "No definition for #{meth_name}"
      false
    else # No body, but might still have an override comment
      comment = find_override_comment class_name, meth_obj

      if comment then
        comment.normalize
        find_modifiers comment, meth_obj
        meth_obj.comment = comment

        ''
      else
        @options.warn "No definition for #{meth_name}"
        false
      end
    end
  end

  ##
  # Finds a RDoc::NormalClass or RDoc::NormalModule for +raw_name+

  def find_class(raw_name, name)
    unless @classes[raw_name]
      if raw_name =~ /^rb_m/
        container = @top_level.add_module RDoc::NormalModule, name
      else
        container = @top_level.add_class RDoc::NormalClass, name
      end

      container.record_location @top_level
      @classes[raw_name] = container
    end
    @classes[raw_name]
  end

  ##
  # Look for class or module documentation above Init_+class_name+(void),
  # in a Document-class +class_name+ (or module) comment or above an
  # rb_define_class (or module).  If a comment is supplied above a matching
  # Init_ and a rb_define_class the Init_ comment is used.
  #
  #   /*
  #    * This is a comment for Foo
  #    */
  #   Init_Foo(void) {
  #       VALUE cFoo = rb_define_class("Foo", rb_cObject);
  #   }
  #
  #   /*
  #    * Document-class: Foo
  #    * This is a comment for Foo
  #    */
  #   Init_foo(void) {
  #       VALUE cFoo = rb_define_class("Foo", rb_cObject);
  #   }
  #
  #   /*
  #    * This is a comment for Foo
  #    */
  #   VALUE cFoo = rb_define_class("Foo", rb_cObject);

  def find_class_comment class_name, class_mod
    comment = nil

    if @content =~ %r%
        ((?>/\*.*?\*/\s+))
        (static\s+)?
        void\s+
        Init_#{class_name}\s*(?:_\(\s*)?\(\s*(?:void\s*)?\)%xmi then
      comment = $1.sub(%r%Document-(?:class|module):\s+#{class_name}%, '')
    elsif @content =~ %r%Document-(?:class|module):\s+#{class_name}\s*?
                         (?:<\s+[:,\w]+)?\n((?>.*?\*/))%xm then
      comment = "/*\n#{$1}"
    elsif @content =~ %r%((?>/\*.*?\*/\s+))
                         ([\w\.\s]+\s* = \s+)?rb_define_(class|module)[\t (]*?"(#{class_name})"%xm then
      comment = $1
    elsif @content =~ %r%((?>/\*.*?\*/\s+))
                         ([\w\. \t]+ = \s+)?rb_define_(class|module)_under[\t\w, (]*?"(#{class_name.split('::').last})"%xm then
      comment = $1
    else
      comment = ''
    end

    comment = RDoc::Comment.new comment, @top_level, :c
    comment.normalize

    look_for_directives_in class_mod, comment

    class_mod.add_comment comment, @top_level
  end

  ##
  # Generate a const table

  def gen_const_table file_content
    table = {}
    @content.scan(%r{
      ((?>^\s*/\*.*?\*/\s+))
        rb_define_(\w+)\((?:\s*(?:\w+),)?\s*
                           "(\w+)"\s*,
                           .*?\)\s*;
    | Document-(?:const|global|variable):\s
        ((?:\w+::)*\w+)
        \s*?\n((?>.*?\*/))
    }mxi) do
      case
      when $1 then table[[$2, $3]] = $1
      when $4 then table[$4] = "/*\n" + $5
      end
    end
    table
  end

  ##
  # Finds a comment matching +type+ and +const_name+ either above the
  # comment or in the matching Document- section.

  def find_const_comment(type, const_name, class_name = nil)
    @const_table ||= {}
    @const_table[@content] ||= gen_const_table @content
    table = @const_table[@content]

    comment =
      table[[type, const_name]] ||
      (class_name && table[class_name + "::" + const_name]) ||
      table[const_name] ||
      ''

    RDoc::Comment.new comment, @top_level, :c
  end

  ##
  # Handles modifiers in +comment+ and updates +meth_obj+ as appropriate.

  def find_modifiers comment, meth_obj
    comment.normalize
    comment.extract_call_seq meth_obj

    look_for_directives_in meth_obj, comment
  end

  ##
  # Finds a <tt>Document-method</tt> override for +meth_obj+ on +class_name+

  def find_override_comment class_name, meth_obj
    name = Regexp.escape meth_obj.name
    prefix = Regexp.escape meth_obj.name_prefix

    comment = if @content =~ %r%Document-method:
                                \s+#{class_name}#{prefix}#{name}
                                \s*?\n((?>.*?\*/))%xm then
                "/*#{$1}"
              elsif @content =~ %r%Document-method:
                                   \s#{name}\s*?\n((?>.*?\*/))%xm then
                "/*#{$1}"
              end

    return unless comment

    RDoc::Comment.new comment, @top_level, :c
  end

  ##
  # Creates a new RDoc::Attr +attr_name+ on class +var_name+ that is either
  # +read+, +write+ or both

  def handle_attr(var_name, attr_name, read, write)
    rw = ''
    rw += 'R' if '1' == read
    rw += 'W' if '1' == write

    class_name = @known_classes[var_name]

    return unless class_name

    class_obj = find_class var_name, class_name

    return unless class_obj

    comment = find_attr_comment var_name, attr_name
    comment.normalize

    name = attr_name.gsub(/rb_intern(?:_const)?\("([^"]+)"\)/, '\1')

    attr = RDoc::Attr.new '', name, rw, comment

    attr.record_location @top_level
    class_obj.add_attribute attr
    @stats.add_attribute attr
  end

  ##
  # Creates a new RDoc::NormalClass or RDoc::NormalModule based on +type+
  # named +class_name+ in +parent+ which was assigned to the C +var_name+.

  def handle_class_module(var_name, type, class_name, parent, in_module)
    parent_name = @known_classes[parent] || parent

    if in_module then
      enclosure = @classes[in_module] || @store.find_c_enclosure(in_module)

      if enclosure.nil? and enclosure = @known_classes[in_module] then
        enc_type = /^rb_m/ =~ in_module ? :module : :class
        handle_class_module in_module, enc_type, enclosure, nil, nil
        enclosure = @classes[in_module]
      end

      unless enclosure then
        @enclosure_dependencies[in_module] << var_name
        @missing_dependencies[var_name] =
          [var_name, type, class_name, parent, in_module]

        return
      end
    else
      enclosure = @top_level
    end

    if type == :class then
      full_name = if RDoc::ClassModule === enclosure then
                    enclosure.full_name + "::#{class_name}"
                  else
                    class_name
                  end

      if @content =~ %r%Document-class:\s+#{full_name}\s*<\s+([:,\w]+)% then
        parent_name = $1
      end

      cm = enclosure.add_class RDoc::NormalClass, class_name, parent_name
    else
      cm = enclosure.add_module RDoc::NormalModule, class_name
    end

    cm.record_location enclosure.top_level

    find_class_comment cm.full_name, cm

    case cm
    when RDoc::NormalClass
      @stats.add_class cm
    when RDoc::NormalModule
      @stats.add_module cm
    end

    @classes[var_name] = cm
    @known_classes[var_name] = cm.full_name
    @store.add_c_enclosure var_name, cm
  end

  ##
  # Adds constants.  By providing some_value: at the start of the comment you
  # can override the C value of the comment to give a friendly definition.
  #
  #   /* 300: The perfect score in bowling */
  #   rb_define_const(cFoo, "PERFECT", INT2FIX(300));
  #
  # Will override <tt>INT2FIX(300)</tt> with the value +300+ in the output
  # RDoc.  Values may include quotes and escaped colons (\:).

  def handle_constants(type, var_name, const_name, definition)
    class_name = @known_classes[var_name]

    return unless class_name

    class_obj = find_class var_name, class_name

    unless class_obj then
      @options.warn 'Enclosing class or module %p is not known' % [const_name]
      return
    end

    comment = find_const_comment type, const_name, class_name
    comment.normalize

    # In the case of rb_define_const, the definition and comment are in
    # "/* definition: comment */" form.  The literal ':' and '\' characters
    # can be escaped with a backslash.
    if type.downcase == 'const' then
      no_match, new_definition, new_comment = comment.text.split(/(\A.*):/)

      if no_match and no_match.empty? then
        if new_definition.empty? then # Default to literal C definition
          new_definition = definition
        else
          new_definition = new_definition.gsub("\:", ":")
          new_definition = new_definition.gsub("\\", '\\')
        end

        new_definition.sub!(/\A(\s+)/, '')

        new_comment = "#{$1}#{new_comment.lstrip}"

        new_comment = RDoc::Comment.new new_comment, @top_level, :c

        con = RDoc::Constant.new const_name, new_definition, new_comment
      else
        con = RDoc::Constant.new const_name, definition, comment
      end
    else
      con = RDoc::Constant.new const_name, definition, comment
    end

    con.record_location @top_level
    @stats.add_constant con
    class_obj.add_constant con
  end

  ##
  # Removes #ifdefs that would otherwise confuse us

  def handle_ifdefs_in(body)
    body.gsub(/^#ifdef HAVE_PROTOTYPES.*?#else.*?\n(.*?)#endif.*?\n/m, '\1')
  end

  ##
  # Adds an RDoc::AnyMethod +meth_name+ defined on a class or module assigned
  # to +var_name+.  +type+ is the type of method definition function used.
  # +singleton_method+ and +module_function+ create a singleton method.

  def handle_method(type, var_name, meth_name, function, param_count,
                    source_file = nil)
    class_name = @known_classes[var_name]
    singleton  = @singleton_classes.key? var_name

    @methods[var_name][function] << meth_name

    return unless class_name

    class_obj = find_class var_name, class_name

    if class_obj then
      if meth_name == 'initialize' then
        meth_name = 'new'
        singleton = true
        type = 'method' # force public
      end

      meth_obj = RDoc::AnyMethod.new '', meth_name
      meth_obj.c_function = function
      meth_obj.singleton =
        singleton || %w[singleton_method module_function].include?(type)

      p_count = Integer(param_count) rescue -1

      if source_file then
        file_name = File.join @file_dir, source_file

        if File.exist? file_name then
          file_content = File.read file_name
        else
          @options.warn "unknown source #{source_file} for #{meth_name} in #{@file_name}"
        end
      else
        file_content = @content
      end

      body = find_body class_name, function, meth_obj, file_content

      if body and meth_obj.document_self then
        meth_obj.params = if p_count < -1 then # -2 is Array
                            '(*args)'
                          elsif p_count == -1 then # argc, argv
                            rb_scan_args body
                          else
                            "(#{(1..p_count).map { |i| "p#{i}" }.join ', '})"
                          end


        meth_obj.record_location @top_level
        class_obj.add_method meth_obj
        @stats.add_method meth_obj
        meth_obj.visibility = :private if 'private_method' == type
      end
    end
  end

  ##
  # Registers a singleton class +sclass_var+ as a singleton of +class_var+

  def handle_singleton sclass_var, class_var
    class_name = @known_classes[class_var]

    @known_classes[sclass_var]     = class_name
    @singleton_classes[sclass_var] = class_name
  end

  ##
  # Normalizes tabs in +body+

  def handle_tab_width(body)
    if /\t/ =~ body
      tab_width = @options.tab_width
      body.split(/\n/).map do |line|
        1 while line.gsub!(/\t+/) do
          ' ' * (tab_width * $&.length - $`.length % tab_width)
        end && $~
        line
      end.join "\n"
    else
      body
    end
  end

  ##
  # Loads the variable map with the given +name+ from the RDoc::Store, if
  # present.

  def load_variable_map map_name
    return {} unless files = @store.cache[map_name]
    return {} unless name_map = files[@file_name]

    class_map = {}

    name_map.each do |variable, name|
      next unless mod = @store.find_class_or_module(name)

      class_map[variable] = if map_name == :c_class_variables then
                              mod
                            else
                              name
                            end
      @known_classes[variable] = name
    end

    class_map
  end

  ##
  # Look for directives in a normal comment block:
  #
  #   /*
  #    * :title: My Awesome Project
  #    */
  #
  # This method modifies the +comment+

  def look_for_directives_in context, comment
    @preprocess.handle comment, context do |directive, param|
      case directive
      when 'main' then
        @options.main_page = param
        ''
      when 'title' then
        @options.default_title = param if @options.respond_to? :default_title=
        ''
      end
    end

    comment
  end

  ##
  # Extracts parameters from the +method_body+ and returns a method
  # parameter string.  Follows 1.9.3dev's scan-arg-spec, see README.EXT

  def rb_scan_args method_body
    method_body =~ /rb_scan_args\((.*?)\)/m
    return '(*args)' unless $1

    $1.split(/,/)[2] =~ /"(.*?)"/ # format argument
    format = $1.split(//)

    lead = opt = trail = 0

    if format.first =~ /\d/ then
      lead = $&.to_i
      format.shift
      if format.first =~ /\d/ then
        opt = $&.to_i
        format.shift
        if format.first =~ /\d/ then
          trail = $&.to_i
          format.shift
          block_arg = true
        end
      end
    end

    if format.first == '*' and not block_arg then
      var = true
      format.shift
      if format.first =~ /\d/ then
        trail = $&.to_i
        format.shift
      end
    end

    if format.first == ':' then
      hash = true
      format.shift
    end

    if format.first == '&' then
      block = true
      format.shift
    end

    # if the format string is not empty there's a bug in the C code, ignore it

    args = []
    position = 1

    (1...(position + lead)).each do |index|
      args << "p#{index}"
    end

    position += lead

    (position...(position + opt)).each do |index|
      args << "p#{index} = v#{index}"
    end

    position += opt

    if var then
      args << '*args'
      position += 1
    end

    (position...(position + trail)).each do |index|
      args << "p#{index}"
    end

    position += trail

    if hash then
      args << "p#{position} = {}"
    end

    args << '&block' if block

    "(#{args.join ', '})"
  end

  ##
  # Removes lines that are commented out that might otherwise get picked up
  # when scanning for classes and methods

  def remove_commented_out_lines
    @content = @content.gsub(%r%//.*rb_define_%, '//')
  end

  ##
  # Extracts the classes, modules, methods, attributes, constants and aliases
  # from a C file and returns an RDoc::TopLevel for this file

  def scan
    remove_commented_out_lines

    do_classes_and_modules
    do_missing

    do_constants
    do_methods
    do_includes
    do_aliases
    do_attrs

    deduplicate_call_seq

    @store.add_c_variables self

    @top_level
  end

end
PKBH[�4QՆ
�
:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ruby_tools.rbnu�[���# frozen_string_literal: true
##
# Collection of methods for writing parsers

module RDoc::Parser::RubyTools

  ##
  # Adds a token listener +obj+, but you should probably use token_listener

  def add_token_listener(obj)
    @token_listeners ||= []
    @token_listeners << obj
  end

  ##
  # Fetches the next token from the scanner

  def get_tk
    tk = nil

    if @tokens.empty? then
      if @scanner_point >= @scanner.size
        return nil
      else
        tk = @scanner[@scanner_point]
        @scanner_point += 1
        @read.push tk[:text]
      end
    else
      @read.push @unget_read.shift
      tk = @tokens.shift
    end

    if tk == nil || :on___end__ == tk[:kind]
      tk = nil
    end

    return nil unless tk

    # inform any listeners of our shiny new token
    @token_listeners.each do |obj|
      obj.add_token(tk)
    end if @token_listeners

    tk
  end

  ##
  # Reads and returns all tokens up to one of +tokens+.  Leaves the matched
  # token in the token list.

  def get_tk_until(*tokens)
    read = []

    loop do
      tk = get_tk

      case tk
      when *tokens then
        unget_tk tk
        break
      end

      read << tk
    end

    read
  end

  ##
  # Retrieves a String representation of the read tokens

  def get_tkread
    read = @read.join("")
    @read = []
    read
  end

  ##
  # Peek equivalent for get_tkread

  def peek_read
    @read.join('')
  end

  ##
  # Peek at the next token, but don't remove it from the stream

  def peek_tk
    unget_tk(tk = get_tk)
    tk
  end

  ##
  # Removes the token listener +obj+

  def remove_token_listener(obj)
    @token_listeners.delete(obj)
  end

  ##
  # Resets the tools

  def reset
    @read       = []
    @tokens     = []
    @unget_read = []
    @nest = 0
    @scanner_point = 0
  end

  ##
  # Skips whitespace tokens including newlines

  def skip_tkspace
    tokens = []

    while (tk = get_tk) and (:on_sp == tk[:kind] or :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]) do
      tokens.push(tk)
    end

    unget_tk(tk)
    tokens
  end

  ##
  # Skips whitespace tokens excluding newlines

  def skip_tkspace_without_nl
    tokens = []

    while (tk = get_tk) and :on_sp == tk[:kind] do
      tokens.push(tk)
    end

    unget_tk(tk)
    tokens
  end

  ##
  # Has +obj+ listen to tokens

  def token_listener(obj)
    add_token_listener obj
    yield
  ensure
    remove_token_listener obj
  end

  ##
  # Returns +tk+ to the scanner

  def unget_tk(tk)
    @tokens.unshift tk
    @unget_read.unshift @read.pop

    # Remove this token from any listeners
    @token_listeners.each do |obj|
      obj.pop_token
    end if @token_listeners

    nil
  end

end


PKBH[/��>�>@share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ripper_state_lex.rbnu�[���# frozen_string_literal: true
require 'ripper'

class RDoc::Parser::RipperStateLex
  # TODO: Remove this constants after Ruby 2.4 EOL
  RIPPER_HAS_LEX_STATE = Ripper::Filter.method_defined?(:state)

  Token = Struct.new(:line_no, :char_no, :kind, :text, :state)

  EXPR_NONE = 0
  EXPR_BEG = 1
  EXPR_END = 2
  EXPR_ENDARG = 4
  EXPR_ENDFN = 8
  EXPR_ARG = 16
  EXPR_CMDARG = 32
  EXPR_MID = 64
  EXPR_FNAME = 128
  EXPR_DOT = 256
  EXPR_CLASS = 512
  EXPR_LABEL = 1024
  EXPR_LABELED = 2048
  EXPR_FITEM = 4096
  EXPR_VALUE = EXPR_BEG
  EXPR_BEG_ANY  =  (EXPR_BEG | EXPR_MID | EXPR_CLASS)
  EXPR_ARG_ANY  =  (EXPR_ARG | EXPR_CMDARG)
  EXPR_END_ANY  =  (EXPR_END | EXPR_ENDARG | EXPR_ENDFN)

  class InnerStateLex < Ripper::Filter
    attr_accessor :lex_state

    def initialize(code)
      @lex_state = EXPR_BEG
      @in_fname = false
      @continue = false
      reset
      super(code)
    end

    def reset
      @command_start = false
      @cmd_state = @command_start
    end

    def on_nl(tok, data)
      case @lex_state
      when EXPR_FNAME, EXPR_DOT
        @continue = true
      else
        @continue = false
        @lex_state = EXPR_BEG unless (EXPR_LABEL & @lex_state) != 0
      end
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_ignored_nl(tok, data)
      case @lex_state
      when EXPR_FNAME, EXPR_DOT
        @continue = true
      else
        @continue = false
        @lex_state = EXPR_BEG unless (EXPR_LABEL & @lex_state) != 0
      end
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_op(tok, data)
      case tok
      when '&', '|', '!', '!=', '!~'
        case @lex_state
        when EXPR_FNAME, EXPR_DOT
          @lex_state = EXPR_ARG
        else
          @lex_state = EXPR_BEG
        end
      when '<<'
        # TODO next token?
        case @lex_state
        when EXPR_FNAME, EXPR_DOT
          @lex_state = EXPR_ARG
        else
          @lex_state = EXPR_BEG
        end
      when '?'
        @lex_state = EXPR_BEG
      when '&&', '||', '+=', '-=', '*=', '**=',
           '&=', '|=', '^=', '<<=', '>>=', '||=', '&&='
        @lex_state = EXPR_BEG
      when '::'
        case @lex_state
        when EXPR_ARG, EXPR_CMDARG
          @lex_state = EXPR_DOT
        when EXPR_FNAME, EXPR_DOT
          @lex_state = EXPR_ARG
        else
          @lex_state = EXPR_BEG
        end
      else
        case @lex_state
        when EXPR_FNAME, EXPR_DOT
          @lex_state = EXPR_ARG
        else
          @lex_state = EXPR_BEG
        end
      end
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_kw(tok, data)
      case tok
      when 'class'
        @lex_state = EXPR_CLASS
        @in_fname = true
      when 'def'
        @lex_state = EXPR_FNAME
        @continue = true
        @in_fname = true
      when 'if', 'unless', 'while', 'until'
        if ((EXPR_MID | EXPR_END | EXPR_ENDARG | EXPR_ENDFN | EXPR_ARG | EXPR_CMDARG) & @lex_state) != 0 # postfix if
          @lex_state = EXPR_BEG | EXPR_LABEL
        else
          @lex_state = EXPR_BEG
        end
      when 'begin', 'case', 'when'
        @lex_state = EXPR_BEG
      when 'return', 'break'
        @lex_state = EXPR_MID
      else
        if @lex_state == EXPR_FNAME
          @lex_state = EXPR_END
        else
          @lex_state = EXPR_END
        end
      end
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_tstring_beg(tok, data)
      @lex_state = EXPR_BEG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_tstring_end(tok, data)
      @lex_state = EXPR_END | EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_CHAR(tok, data)
      @lex_state = EXPR_END
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_period(tok, data)
      @lex_state = EXPR_DOT
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_int(tok, data)
      @lex_state = EXPR_END | EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_float(tok, data)
      @lex_state = EXPR_END | EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_rational(tok, data)
      @lex_state = EXPR_END | EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_imaginary(tok, data)
      @lex_state = EXPR_END | EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_symbeg(tok, data)
      @lex_state = EXPR_FNAME
      @continue = true
      @in_fname = true
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    private def on_variables(event, tok, data)
      if @in_fname
        @lex_state = EXPR_ENDFN
        @in_fname = false
        @continue = false
      elsif @continue
        case @lex_state
        when EXPR_DOT
          @lex_state = EXPR_ARG
        else
          @lex_state = EXPR_ENDFN
          @continue = false
        end
      else
        @lex_state = EXPR_CMDARG
      end
      data << Token.new(lineno, column, event, tok, @lex_state)
    end

    def on_ident(tok, data)
      on_variables(__method__, tok, data)
    end

    def on_ivar(tok, data)
      @lex_state = EXPR_END
      on_variables(__method__, tok, data)
    end

    def on_cvar(tok, data)
      @lex_state = EXPR_END
      on_variables(__method__, tok, data)
    end

    def on_gvar(tok, data)
      @lex_state = EXPR_END
      on_variables(__method__, tok, data)
    end

    def on_backref(tok, data)
      @lex_state = EXPR_END
      on_variables(__method__, tok, data)
    end

    def on_lparen(tok, data)
      @lex_state = EXPR_LABEL | EXPR_BEG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_rparen(tok, data)
      @lex_state = EXPR_ENDFN
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_lbrace(tok, data)
      @lex_state = EXPR_LABEL | EXPR_BEG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_rbrace(tok, data)
      @lex_state = EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_lbracket(tok, data)
      @lex_state = EXPR_LABEL | EXPR_BEG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_rbracket(tok, data)
      @lex_state = EXPR_ENDARG
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_const(tok, data)
      case @lex_state
      when EXPR_FNAME
        @lex_state = EXPR_ENDFN
      when EXPR_CLASS, EXPR_CMDARG, EXPR_MID
        @lex_state = EXPR_ARG
      else
        @lex_state = EXPR_CMDARG
      end
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_sp(tok, data)
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_comma(tok, data)
      @lex_state = EXPR_BEG | EXPR_LABEL if (EXPR_ARG_ANY & @lex_state) != 0
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_comment(tok, data)
      @lex_state = EXPR_BEG unless (EXPR_LABEL & @lex_state) != 0
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_ignored_sp(tok, data)
      @lex_state = EXPR_BEG unless (EXPR_LABEL & @lex_state) != 0
      data << Token.new(lineno, column, __method__, tok, @lex_state)
    end

    def on_heredoc_beg(tok, data)
      data << Token.new(lineno, column, __method__, tok, @lex_state)
      @lex_state = EXPR_END
      data
    end

    def on_heredoc_end(tok, data)
      data << Token.new(lineno, column, __method__, tok, @lex_state)
      @lex_state = EXPR_BEG
      data
    end

    def on_default(event, tok, data)
      reset
      data << Token.new(lineno, column, event, tok, @lex_state)
    end
  end unless RIPPER_HAS_LEX_STATE

  class InnerStateLex < Ripper::Filter
    def initialize(code)
      super(code)
    end

    def on_default(event, tok, data)
      data << Token.new(lineno, column, event, tok, state)
    end
  end if RIPPER_HAS_LEX_STATE

  def get_squashed_tk
    if @buf.empty?
      tk = @tokens.shift
    else
      tk = @buf.shift
    end
    return nil if tk.nil?
    case tk[:kind]
    when :on_symbeg then
      tk = get_symbol_tk(tk)
    when :on_tstring_beg then
      tk = get_string_tk(tk)
    when :on_backtick then
      if (tk[:state] & (EXPR_FNAME | EXPR_ENDFN)) != 0
        @inner_lex.lex_state = EXPR_ARG unless RIPPER_HAS_LEX_STATE
        tk[:kind] = :on_ident
        tk[:state] = Ripper::Lexer.const_defined?(:State) ? Ripper::Lexer::State.new(EXPR_ARG) : EXPR_ARG
      else
        tk = get_string_tk(tk)
      end
    when :on_regexp_beg then
      tk = get_regexp_tk(tk)
    when :on_embdoc_beg then
      tk = get_embdoc_tk(tk)
    when :on_heredoc_beg then
      @heredoc_queue << retrieve_heredoc_info(tk)
      @inner_lex.lex_state = EXPR_END unless RIPPER_HAS_LEX_STATE
    when :on_nl, :on_ignored_nl, :on_comment, :on_heredoc_end then
      if !@heredoc_queue.empty?
        get_heredoc_tk(*@heredoc_queue.shift)
      elsif tk[:text].nil? # :on_ignored_nl sometimes gives nil
        tk[:text] = ''
      end
    when :on_words_beg then
      tk = get_words_tk(tk)
    when :on_qwords_beg then
      tk = get_words_tk(tk)
    when :on_symbols_beg then
      tk = get_words_tk(tk)
    when :on_qsymbols_beg then
      tk = get_words_tk(tk)
    when :on_op then
      if '&.' == tk[:text]
        tk[:kind] = :on_period
      else
        tk = get_op_tk(tk)
      end
    end
    tk
  end

  private def get_symbol_tk(tk)
    is_symbol = true
    symbol_tk = Token.new(tk.line_no, tk.char_no, :on_symbol)
    if ":'" == tk[:text] or ':"' == tk[:text]
      tk1 = get_string_tk(tk)
      symbol_tk[:text] = tk1[:text]
      symbol_tk[:state] = tk1[:state]
    else
      case (tk1 = get_squashed_tk)[:kind]
      when :on_ident
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_tstring_content
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = get_squashed_tk[:state] # skip :on_tstring_end
      when :on_tstring_end
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_op
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_ivar
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_cvar
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_gvar
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_const
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      when :on_kw
        symbol_tk[:text] = ":#{tk1[:text]}"
        symbol_tk[:state] = tk1[:state]
      else
        is_symbol = false
        tk = tk1
      end
    end
    if is_symbol
      tk = symbol_tk
    end
    tk
  end

  private def get_string_tk(tk)
    string = tk[:text]
    state = nil
    kind = :on_tstring
    loop do
      inner_str_tk = get_squashed_tk
      if inner_str_tk.nil?
        break
      elsif :on_tstring_end == inner_str_tk[:kind]
        string = string + inner_str_tk[:text]
        state = inner_str_tk[:state]
        break
      elsif :on_label_end == inner_str_tk[:kind]
        string = string + inner_str_tk[:text]
        state = inner_str_tk[:state]
        kind = :on_symbol
        break
      else
        string = string + inner_str_tk[:text]
        if :on_embexpr_beg == inner_str_tk[:kind] then
          kind = :on_dstring if :on_tstring == kind
        end
      end
    end
    Token.new(tk.line_no, tk.char_no, kind, string, state)
  end

  private def get_regexp_tk(tk)
    string = tk[:text]
    state = nil
    loop do
      inner_str_tk = get_squashed_tk
      if inner_str_tk.nil?
        break
      elsif :on_regexp_end == inner_str_tk[:kind]
        string = string + inner_str_tk[:text]
        state = inner_str_tk[:state]
        break
      else
        string = string + inner_str_tk[:text]
      end
    end
    Token.new(tk.line_no, tk.char_no, :on_regexp, string, state)
  end

  private def get_embdoc_tk(tk)
    string = tk[:text]
    until :on_embdoc_end == (embdoc_tk = get_squashed_tk)[:kind] do
      string = string + embdoc_tk[:text]
    end
    string = string + embdoc_tk[:text]
    Token.new(tk.line_no, tk.char_no, :on_embdoc, string, embdoc_tk.state)
  end

  private def get_heredoc_tk(heredoc_name, indent)
    string = ''
    start_tk = nil
    prev_tk = nil
    until heredoc_end?(heredoc_name, indent, tk = @tokens.shift) do
      start_tk = tk unless start_tk
      if (prev_tk.nil? or "\n" == prev_tk[:text][-1]) and 0 != tk[:char_no]
        string = string + (' ' * tk[:char_no])
      end
      string = string + tk[:text]
      prev_tk = tk
    end
    start_tk = tk unless start_tk
    prev_tk = tk unless prev_tk
    @buf.unshift tk # closing heredoc
    heredoc_tk = Token.new(start_tk.line_no, start_tk.char_no, :on_heredoc, string, prev_tk.state)
    @buf.unshift heredoc_tk
  end

  private def retrieve_heredoc_info(tk)
    name = tk[:text].gsub(/\A<<[-~]?(['"`]?)(.+)\1\z/, '\2')
    indent = tk[:text] =~ /\A<<[-~]/
    [name, indent]
  end

  private def heredoc_end?(name, indent, tk)
    result = false
    if :on_heredoc_end == tk[:kind] then
      tk_name = tk[:text].chomp
      tk_name.lstrip! if indent
      if name == tk_name
        result = true
      end
    end
    result
  end

  private def get_words_tk(tk)
    string = ''
    start_token = tk[:text]
    start_quote = tk[:text].rstrip[-1]
    line_no = tk[:line_no]
    char_no = tk[:char_no]
    state = tk[:state]
    end_quote =
      case start_quote
      when ?( then ?)
      when ?[ then ?]
      when ?{ then ?}
      when ?< then ?>
      else start_quote
      end
    end_token = nil
    loop do
      tk = get_squashed_tk
      if tk.nil?
        end_token = end_quote
        break
      elsif :on_tstring_content == tk[:kind] then
        string += tk[:text]
      elsif :on_words_sep == tk[:kind] or :on_tstring_end == tk[:kind] then
        if end_quote == tk[:text].strip then
          end_token = tk[:text]
          break
        else
          string += tk[:text]
        end
      else
        string += tk[:text]
      end
    end
    text = "#{start_token}#{string}#{end_token}"
    Token.new(line_no, char_no, :on_dstring, text, state)
  end

  private def get_op_tk(tk)
    redefinable_operators = %w[! != !~ % & * ** + +@ - -@ / < << <= <=> == === =~ > >= >> [] []= ^ ` | ~]
    if redefinable_operators.include?(tk[:text]) and tk[:state] == EXPR_ARG then
      @inner_lex.lex_state = EXPR_ARG unless RIPPER_HAS_LEX_STATE
      tk[:state] = Ripper::Lexer.const_defined?(:State) ? Ripper::Lexer::State.new(EXPR_ARG) : EXPR_ARG
      tk[:kind] = :on_ident
    elsif tk[:text] =~ /^[-+]$/ then
      tk_ahead = get_squashed_tk
      case tk_ahead[:kind]
      when :on_int, :on_float, :on_rational, :on_imaginary then
        tk[:text] += tk_ahead[:text]
        tk[:kind] = tk_ahead[:kind]
        tk[:state] = tk_ahead[:state]
      when :on_heredoc_beg, :on_tstring, :on_dstring # frozen/non-frozen string literal
        tk[:text] += tk_ahead[:text]
        tk[:kind] = tk_ahead[:kind]
        tk[:state] = tk_ahead[:state]
      else
        @buf.unshift tk_ahead
      end
    end
    tk
  end

  def initialize(code)
    @buf = []
    @heredoc_queue = []
    @inner_lex = InnerStateLex.new(code)
    @tokens = @inner_lex.parse([])
  end

  def self.parse(code)
    lex = self.new(code)
    tokens = []
    begin
      while tk = lex.get_squashed_tk
        tokens.push tk
      end
    rescue StopIteration
    end
    tokens
  end

  def self.end?(token)
    (token[:state] & EXPR_END)
  end
end
PKBH[:�ܶ�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/rd.rbnu�[���# frozen_string_literal: true
##
# Parse a RD format file.  The parsed RDoc::Markup::Document is attached as a
# file comment.

class RDoc::Parser::RD < RDoc::Parser

  include RDoc::Parser::Text

  parse_files_matching(/\.rd(?:\.[^.]+)?$/)

  ##
  # Creates an rd-format TopLevel for the given file.

  def scan
    comment = RDoc::Comment.new @content, @top_level
    comment.format = 'rd'

    @top_level.comment = comment
  end

end

PKBH[���U��6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/simple.rbnu�[���# frozen_string_literal: true
##
# Parse a non-source file. We basically take the whole thing as one big
# comment.

class RDoc::Parser::Simple < RDoc::Parser

  include RDoc::Parser::Text

  parse_files_matching(//)

  attr_reader :content # :nodoc:

  ##
  # Prepare to parse a plain file

  def initialize(top_level, file_name, content, options, stats)
    super

    preprocess = RDoc::Markup::PreProcess.new @file_name, @options.rdoc_include

    @content = preprocess.handle @content, @top_level
  end

  ##
  # Extract the file contents and attach them to the TopLevel as a comment

  def scan
    comment = remove_coding_comment @content
    comment = remove_private_comment comment

    comment = RDoc::Comment.new comment, @top_level

    @top_level.comment = comment
    @top_level
  end

  ##
  # Removes the encoding magic comment from +text+

  def remove_coding_comment text
    text.sub(/\A# .*coding[=:].*$/, '')
  end

  ##
  # Removes private comments.
  #
  # Unlike RDoc::Comment#remove_private this implementation only looks for two
  # dashes at the beginning of the line.  Three or more dashes are considered
  # to be a rule and ignored.

  def remove_private_comment comment
    # Workaround for gsub encoding for Ruby 1.9.2 and earlier
    empty = ''
    empty = RDoc::Encoding.change_encoding empty, comment.encoding

    comment = comment.gsub(%r%^--\n.*?^\+\+\n?%m, empty)
    comment.sub(%r%^--\n.*%m, empty)
  end

end
PKBH[O�g��9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/changelog.rbnu�[���# frozen_string_literal: true
require 'time'

##
# A ChangeLog file parser.
#
# This parser converts a ChangeLog into an RDoc::Markup::Document.  When
# viewed as HTML a ChangeLog page will have an entry for each day's entries in
# the sidebar table of contents.
#
# This parser is meant to parse the MRI ChangeLog, but can be used to parse any
# {GNU style Change
# Log}[http://www.gnu.org/prep/standards/html_node/Style-of-Change-Logs.html].

class RDoc::Parser::ChangeLog < RDoc::Parser

  include RDoc::Parser::Text

  parse_files_matching(/(\/|\\|\A)ChangeLog[^\/\\]*\z/)

  ##
  # Attaches the +continuation+ of the previous line to the +entry_body+.
  #
  # Continued function listings are joined together as a single entry.
  # Continued descriptions are joined to make a single paragraph.

  def continue_entry_body entry_body, continuation
    return unless last = entry_body.last

    if last =~ /\)\s*\z/ and continuation =~ /\A\(/ then
      last.sub!(/\)\s*\z/, ',')
      continuation = continuation.sub(/\A\(/, '')
    end

    if last =~ /\s\z/ then
      last << continuation
    else
      last << ' ' + continuation
    end
  end

  ##
  # Creates an RDoc::Markup::Document given the +groups+ of ChangeLog entries.

  def create_document groups
    doc = RDoc::Markup::Document.new
    doc.omit_headings_below = 2
    doc.file = @top_level

    doc << RDoc::Markup::Heading.new(1, File.basename(@file_name))
    doc << RDoc::Markup::BlankLine.new

    groups.sort_by do |day,| day end.reverse_each do |day, entries|
      doc << RDoc::Markup::Heading.new(2, day.dup)
      doc << RDoc::Markup::BlankLine.new

      doc.concat create_entries entries
    end

    doc
  end

  ##
  # Returns a list of ChangeLog entries an RDoc::Markup nodes for the given
  # +entries+.

  def create_entries entries
    out = []

    entries.each do |entry, items|
      out << RDoc::Markup::Heading.new(3, entry)
      out << RDoc::Markup::BlankLine.new

      out << create_items(items)
    end

    out
  end

  ##
  # Returns an RDoc::Markup::List containing the given +items+ in the
  # ChangeLog

  def create_items items
    list = RDoc::Markup::List.new :NOTE

    items.each do |item|
      item =~ /\A(.*?(?:\([^)]+\))?):\s*/

      title = $1
      body = $'

      paragraph = RDoc::Markup::Paragraph.new body
      list_item = RDoc::Markup::ListItem.new title, paragraph
      list << list_item
    end

    list
  end

  ##
  # Groups +entries+ by date.

  def group_entries entries
    @time_cache ||= {}
    entries.group_by do |title, _|
      begin
        time = @time_cache[title]
        (time || Time.parse(title)).strftime '%Y-%m-%d'
      rescue NoMethodError, ArgumentError
        time, = title.split '  ', 2
        Time.parse(time).strftime '%Y-%m-%d'
      end
    end
  end

  ##
  # Parses the entries in the ChangeLog.
  #
  # Returns an Array of each ChangeLog entry in order of parsing.
  #
  # A ChangeLog entry is an Array containing the ChangeLog title (date and
  # committer) and an Array of ChangeLog items (file and function changed with
  # description).
  #
  # An example result would be:
  #
  #    [ 'Tue Dec  4 08:33:46 2012  Eric Hodel  <drbrain@segment7.net>',
  #      [ 'README.EXT:  Converted to RDoc format',
  #        'README.EXT.ja:  ditto']]

  def parse_entries
    @time_cache ||= {}
    entries = []
    entry_name = nil
    entry_body = []

    @content.each_line do |line|
      case line
      when /^\s*$/ then
        next
      when /^\w.*/ then
        entries << [entry_name, entry_body] if entry_name

        entry_name = $&

        begin
          time = Time.parse entry_name
          @time_cache[entry_name] = time
          # HACK Ruby 1.8 does not raise ArgumentError for Time.parse "Other"
          entry_name = nil unless entry_name =~ /#{time.year}/
        rescue NoMethodError
          # HACK Ruby 2.1.2 and earlier raises NoMethodError if time part is absent
          entry_name.split '  ', 2
        rescue ArgumentError
          if /out of range/ =~ $!.message
            Time.parse(entry_name.split('  ', 2)[0]) rescue entry_name = nil
          else
            entry_name = nil
          end
        end

        entry_body = []
      when /^(\t| {8})?\*\s*(.*)/ then # "\t* file.c (func): ..."
        entry_body << $2.dup
      when /^(\t| {8})?\s*(\(.*)/ then # "\t(func): ..."
        entry = $2

        if entry_body.last =~ /:/ then
          entry_body << entry.dup
        else
          continue_entry_body entry_body, entry
        end
      when /^(\t| {8})?\s*(.*)/ then
        continue_entry_body entry_body, $2
      end
    end

    entries << [entry_name, entry_body] if entry_name

    entries.reject! do |(entry,_)|
      entry == nil
    end

    entries
  end

  ##
  # Converts the ChangeLog into an RDoc::Markup::Document

  def scan
    @time_cache = {}
    entries = parse_entries
    grouped_entries = group_entries entries

    doc = create_document grouped_entries

    @top_level.comment = doc

    @top_level
  end

end

PKBH[�_A��8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/markdown.rbnu�[���# frozen_string_literal: true
##
# Parse a Markdown format file.  The parsed RDoc::Markup::Document is attached
# as a file comment.

class RDoc::Parser::Markdown < RDoc::Parser

  include RDoc::Parser::Text

  parse_files_matching(/\.(md|markdown)(?:\.[^.]+)?$/)

  ##
  # Creates an Markdown-format TopLevel for the given file.

  def scan
    comment = RDoc::Comment.new @content, @top_level
    comment.format = 'markdown'

    @top_level.comment = comment
  end

end


PKBH[HLf*q0q00share/gems/gems/rdoc-6.2.1.1/lib/rdoc/servlet.rbnu�[���# frozen_string_literal: true
require 'rdoc'
require 'erb'
require 'time'
require 'json'
require 'webrick'

##
# This is a WEBrick servlet that allows you to browse ri documentation.
#
# You can show documentation through either `ri --server` or, with RubyGems
# 2.0 or newer, `gem server`.  For ri, the server runs on port 8214 by
# default.  For RubyGems the server runs on port 8808 by default.
#
# You can use this servlet in your own project by mounting it on a WEBrick
# server:
#
#   require 'webrick'
#
#   server = WEBrick::HTTPServer.new Port: 8000
#
#   server.mount '/', RDoc::Servlet
#
# If you want to mount the servlet some other place than the root, provide the
# base path when mounting:
#
#   server.mount '/rdoc', RDoc::Servlet, '/rdoc'

class RDoc::Servlet < WEBrick::HTTPServlet::AbstractServlet

  @server_stores = Hash.new { |hash, server| hash[server] = {} }
  @cache         = Hash.new { |hash, store|  hash[store]  = {} }

  ##
  # Maps an asset type to its path on the filesystem

  attr_reader :asset_dirs

  ##
  # An RDoc::Options instance used for rendering options

  attr_reader :options

  ##
  # Creates an instance of this servlet that shares cached data between
  # requests.

  def self.get_instance server, *options # :nodoc:
    stores = @server_stores[server]

    new server, stores, @cache, *options
  end

  ##
  # Creates a new WEBrick servlet.
  #
  # Use +mount_path+ when mounting the servlet somewhere other than /.
  #
  # Use +extra_doc_dirs+ for additional documentation directories.
  #
  # +server+ is provided automatically by WEBrick when mounting.  +stores+ and
  # +cache+ are provided automatically by the servlet.

  def initialize server, stores, cache, mount_path = nil, extra_doc_dirs = []
    super server

    @cache      = cache
    @mount_path = mount_path
    @extra_doc_dirs = extra_doc_dirs
    @stores     = stores

    @options = RDoc::Options.new
    @options.op_dir = '.'

    darkfish_dir = nil

    # HACK dup
    $LOAD_PATH.each do |path|
      darkfish_dir = File.join path, 'rdoc/generator/template/darkfish/'
      next unless File.directory? darkfish_dir
      @options.template_dir = darkfish_dir
      break
    end

    @asset_dirs = {
      :darkfish   => darkfish_dir,
      :json_index =>
        File.expand_path('../generator/template/json_index/', __FILE__),
    }
  end

  ##
  # Serves the asset at the path in +req+ for +generator_name+ via +res+.

  def asset generator_name, req, res
    asset_dir = @asset_dirs[generator_name]

    asset_path = File.join asset_dir, req.path

    if_modified_since req, res, asset_path

    res.body = File.read asset_path

    res.content_type = case req.path
                       when /\.css\z/ then 'text/css'
                       when /\.js\z/  then 'application/javascript'
                       else                'application/octet-stream'
                       end
  end

  ##
  # GET request entry point.  Fills in +res+ for the path, etc. in +req+.

  def do_GET req, res
    req.path.sub!(/\A#{Regexp.escape @mount_path}/, '') if @mount_path

    case req.path
    when '/' then
      root req, res
    when '/js/darkfish.js', '/js/jquery.js', '/js/search.js',
         %r%^/css/%, %r%^/images/%, %r%^/fonts/% then
      asset :darkfish, req, res
    when '/js/navigation.js', '/js/searcher.js' then
      asset :json_index, req, res
    when '/js/search_index.js' then
      root_search req, res
    else
      show_documentation req, res
    end
  rescue WEBrick::HTTPStatus::NotFound => e
    generator = generator_for RDoc::Store.new

    not_found generator, req, res, e.message
  rescue WEBrick::HTTPStatus::Status
    raise
  rescue => e
    error e, req, res
  end

  ##
  # Fills in +res+ with the class, module or page for +req+ from +store+.
  #
  # +path+ is relative to the mount_path and is used to determine the class,
  # module or page name (/RDoc/Servlet.html becomes RDoc::Servlet).
  # +generator+ is used to create the page.

  def documentation_page store, generator, path, req, res
    text_name = path.chomp '.html'
    name = text_name.gsub '/', '::'

    if klass = store.find_class_or_module(name) then
      res.body = generator.generate_class klass
    elsif page = store.find_text_page(name.sub(/_([^_]*)\z/, '.\1')) then
      res.body = generator.generate_page page
    elsif page = store.find_text_page(text_name.sub(/_([^_]*)\z/, '.\1')) then
      res.body = generator.generate_page page
    else
      not_found generator, req, res
    end
  end

  ##
  # Creates the JSON search index on +res+ for the given +store+.  +generator+
  # must respond to \#json_index to build.  +req+ is ignored.

  def documentation_search store, generator, req, res
    json_index = @cache[store].fetch :json_index do
      @cache[store][:json_index] =
        JSON.dump generator.json_index.build_index
    end

    res.content_type = 'application/javascript'
    res.body = "var search_data = #{json_index}"
  end

  ##
  # Returns the RDoc::Store and path relative to +mount_path+ for
  # documentation at +path+.

  def documentation_source path
    _, source_name, path = path.split '/', 3

    store = @stores[source_name]
    return store, path if store

    store = store_for source_name

    store.load_all

    @stores[source_name] = store

    return store, path
  end

  ##
  # Generates an error page for the +exception+ while handling +req+ on +res+.

  def error exception, req, res
    backtrace = exception.backtrace.join "\n"

    res.content_type = 'text/html'
    res.status = 500
    res.body = <<-BODY
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">

<title>Error - #{ERB::Util.html_escape exception.class}</title>

<link type="text/css" media="screen" href="#{@mount_path}/css/rdoc.css" rel="stylesheet">
</head>
<body>
<h1>Error</h1>

<p>While processing <code>#{ERB::Util.html_escape req.request_uri}</code> the
RDoc (#{ERB::Util.html_escape RDoc::VERSION}) server has encountered a
<code>#{ERB::Util.html_escape exception.class}</code>
exception:

<pre>#{ERB::Util.html_escape exception.message}</pre>

<p>Please report this to the
<a href="https://github.com/ruby/rdoc/issues">RDoc issues tracker</a>.  Please
include the RDoc version, the URI above and exception class, message and
backtrace.  If you're viewing a gem's documentation, include the gem name and
version.  If you're viewing Ruby's documentation, include the version of ruby.

<p>Backtrace:

<pre>#{ERB::Util.html_escape backtrace}</pre>

</body>
</html>
    BODY
  end

  ##
  # Instantiates a Darkfish generator for +store+

  def generator_for store
    generator = RDoc::Generator::Darkfish.new store, @options
    generator.file_output = false
    generator.asset_rel_path = '..'

    rdoc = RDoc::RDoc.new
    rdoc.store     = store
    rdoc.generator = generator
    rdoc.options   = @options

    @options.main_page = store.main
    @options.title     = store.title

    generator
  end

  ##
  # Handles the If-Modified-Since HTTP header on +req+ for +path+.  If the
  # file has not been modified a Not Modified response is returned.  If the
  # file has been modified a Last-Modified header is added to +res+.

  def if_modified_since req, res, path = nil
    last_modified = File.stat(path).mtime if path

    res['last-modified'] = last_modified.httpdate

    return unless ims = req['if-modified-since']

    ims = Time.parse ims

    unless ims < last_modified then
      res.body = ''
      raise WEBrick::HTTPStatus::NotModified
    end
  end

  ##
  # Returns an Array of installed documentation.
  #
  # Each entry contains the documentation name (gem name, 'Ruby
  # Documentation', etc.), the path relative to the mount point, whether the
  # documentation exists, the type of documentation (See RDoc::RI::Paths#each)
  # and the filesystem to the RDoc::Store for the documentation.

  def installed_docs
    extra_counter = 0
    ri_paths.map do |path, type|
      store = RDoc::Store.new path, type
      exists = File.exist? store.cache_path

      case type
      when :gem then
        gem_path = path[%r%/([^/]*)/ri$%, 1]
        [gem_path, "#{gem_path}/", exists, type, path]
      when :system then
        ['Ruby Documentation', 'ruby/', exists, type, path]
      when :site then
        ['Site Documentation', 'site/', exists, type, path]
      when :home then
        ['Home Documentation', 'home/', exists, type, path]
      when :extra then
        extra_counter += 1
        store.load_cache if exists
        title = store.title || "Extra Documentation"
        [title, "extra-#{extra_counter}/", exists, type, path]
      end
    end
  end

  ##
  # Returns a 404 page built by +generator+ for +req+ on +res+.

  def not_found generator, req, res, message = nil
    message ||= "The page <kbd>#{ERB::Util.h req.path}</kbd> was not found"
    res.body = generator.generate_servlet_not_found message
    res.status = 404
  end

  ##
  # Enumerates the ri paths.  See RDoc::RI::Paths#each

  def ri_paths &block
    RDoc::RI::Paths.each true, true, true, :all, *@extra_doc_dirs, &block #TODO: pass extra_dirs
  end

  ##
  # Generates the root page on +res+.  +req+ is ignored.

  def root req, res
    generator = RDoc::Generator::Darkfish.new nil, @options

    res.body = generator.generate_servlet_root installed_docs

    res.content_type = 'text/html'
  end

  ##
  # Generates a search index for the root page on +res+.  +req+ is ignored.

  def root_search req, res
    search_index = []
    info         = []

    installed_docs.map do |name, href, exists, type, path|
      next unless exists

      search_index << name

      case type
      when :gem
        gemspec = path.gsub(%r%/doc/([^/]*?)/ri$%,
                            '/specifications/\1.gemspec')

        spec = Gem::Specification.load gemspec

        path    = spec.full_name
        comment = spec.summary
      when :system then
        path    = 'ruby'
        comment = 'Documentation for the Ruby standard library'
      when :site then
        path    = 'site'
        comment = 'Documentation for non-gem libraries'
      when :home then
        path    = 'home'
        comment = 'Documentation from your home directory'
      when :extra
        comment = name
      end

      info << [name, '', path, '', comment]
    end

    index = {
      :index => {
        :searchIndex     => search_index,
        :longSearchIndex => search_index,
        :info            => info,
      }
    }

    res.body = "var search_data = #{JSON.dump index};"
    res.content_type = 'application/javascript'
  end

  ##
  # Displays documentation for +req+ on +res+, whether that be HTML or some
  # asset.

  def show_documentation req, res
    store, path = documentation_source req.path

    if_modified_since req, res, store.cache_path

    generator = generator_for store

    case path
    when nil, '', 'index.html' then
      res.body = generator.generate_index
    when 'table_of_contents.html' then
      res.body = generator.generate_table_of_contents
    when 'js/search_index.js' then
      documentation_search store, generator, req, res
    else
      documentation_page store, generator, path, req, res
    end
  ensure
    res.content_type ||= 'text/html'
  end

  ##
  # Returns an RDoc::Store for the given +source_name+ ('ruby' or a gem name).

  def store_for source_name
    case source_name
    when 'home' then
      RDoc::Store.new RDoc::RI::Paths.home_dir, :home
    when 'ruby' then
      RDoc::Store.new RDoc::RI::Paths.system_dir, :system
    when 'site' then
      RDoc::Store.new RDoc::RI::Paths.site_dir, :site
    when /\Aextra-(\d+)\z/ then
      index = $1.to_i - 1
      ri_dir = installed_docs[index][4]
      RDoc::Store.new ri_dir, :extra
    else
      ri_dir, type = ri_paths.find do |dir, dir_type|
        next unless dir_type == :gem

        source_name == dir[%r%/([^/]*)/ri$%, 1]
      end

      raise WEBrick::HTTPStatus::NotFound,
            "Could not find gem \"#{ERB::Util.html_escape(source_name)}\". Are you sure you installed it?" unless ri_dir

      store = RDoc::Store.new ri_dir, type

      return store if File.exist? store.cache_path

      raise WEBrick::HTTPStatus::NotFound,
            "Could not find documentation for \"#{ERB::Util.html_escape(source_name)}\". Please run `gem rdoc --ri gem_name`"

    end
  end

end
PKBH[����/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/extend.rbnu�[���# frozen_string_literal: true
##
# A Module extension to a class with \#extend
#
#   RDoc::Extend.new 'Enumerable', 'comment ...'

class RDoc::Extend < RDoc::Mixin

end

PKBH[p��-}}.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/alias.rbnu�[���# frozen_string_literal: true
##
# Represent an alias, which is an old_name/new_name pair associated with a
# particular context
#--
# TODO implement Alias as a proxy to a method/attribute, inheriting from
#      MethodAttr

class RDoc::Alias < RDoc::CodeObject

  ##
  # Aliased method's name

  attr_reader :new_name

  alias name new_name

  ##
  # Aliasee method's name

  attr_reader :old_name

  ##
  # Is this an alias declared in a singleton context?

  attr_accessor :singleton

  ##
  # Source file token stream

  attr_reader :text

  ##
  # Creates a new Alias with a token stream of +text+ that aliases +old_name+
  # to +new_name+, has +comment+ and is a +singleton+ context.

  def initialize(text, old_name, new_name, comment, singleton = false)
    super()

    @text = text
    @singleton = singleton
    @old_name = old_name
    @new_name = new_name
    self.comment = comment
  end

  ##
  # Order by #singleton then #new_name

  def <=>(other)
    [@singleton ? 0 : 1, new_name] <=> [other.singleton ? 0 : 1, other.new_name]
  end

  ##
  # HTML fragment reference for this alias

  def aref
    type = singleton ? 'c' : 'i'
    "#alias-#{type}-#{html_name}"
  end

  ##
  # Full old name including namespace

  def full_old_name
    @full_name || "#{parent.name}#{pretty_old_name}"
  end

  ##
  # HTML id-friendly version of +#new_name+.

  def html_name
    CGI.escape(@new_name.gsub('-', '-2D')).gsub('%','-').sub(/^-/, '')
  end

  def inspect # :nodoc:
    parent_name = parent ? parent.name : '(unknown)'
    "#<%s:0x%x %s.alias_method %s, %s>" % [
      self.class, object_id,
      parent_name, @old_name, @new_name,
    ]
  end

  ##
  # '::' for the alias of a singleton method/attribute, '#' for instance-level.

  def name_prefix
    singleton ? '::' : '#'
  end

  ##
  # Old name with prefix '::' or '#'.

  def pretty_old_name
    "#{singleton ? '::' : '#'}#{@old_name}"
  end

  ##
  # New name with prefix '::' or '#'.

  def pretty_new_name
    "#{singleton ? '::' : '#'}#{@new_name}"
  end

  alias pretty_name pretty_new_name

  def to_s # :nodoc:
    "alias: #{self.new_name} -> #{self.pretty_old_name} in: #{parent}"
  end

end

PKBH[��VU}
}
6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/known_classes.rbnu�[���# frozen_string_literal: true
module RDoc

  ##
  # Ruby's built-in classes, modules and exceptions

  KNOWN_CLASSES = {
    "rb_cArray"            => "Array",
    "rb_cBasicObject"      => "BasicObject",
    "rb_cBignum"           => "Bignum",
    "rb_cClass"            => "Class",
    "rb_cData"             => "Data",
    "rb_cDir"              => "Dir",
    "rb_cEncoding"         => "Encoding",
    "rb_cFalseClass"       => "FalseClass",
    "rb_cFile"             => "File",
    "rb_cFixnum"           => "Fixnum",
    "rb_cFloat"            => "Float",
    "rb_cHash"             => "Hash",
    "rb_cIO"               => "IO",
    "rb_cInteger"          => "Integer",
    "rb_cModule"           => "Module",
    "rb_cNilClass"         => "NilClass",
    "rb_cNumeric"          => "Numeric",
    "rb_cObject"           => "Object",
    "rb_cProc"             => "Proc",
    "rb_cRange"            => "Range",
    "rb_cRegexp"           => "Regexp",
    "rb_cRubyVM"           => "RubyVM",
    "rb_cSocket"           => "Socket",
    "rb_cString"           => "String",
    "rb_cStruct"           => "Struct",
    "rb_cSymbol"           => "Symbol",
    "rb_cThread"           => "Thread",
    "rb_cTime"             => "Time",
    "rb_cTrueClass"        => "TrueClass",

    "rb_eArgError"         => "ArgError",
    "rb_eEOFError"         => "EOFError",
    "rb_eException"        => "Exception",
    "rb_eFatal"            => "fatal",
    "rb_eFloatDomainError" => "FloatDomainError",
    "rb_eIOError"          => "IOError",
    "rb_eIndexError"       => "IndexError",
    "rb_eInterrupt"        => "Interrupt",
    "rb_eLoadError"        => "LoadError",
    "rb_eNameError"        => "NameError",
    "rb_eNoMemError"       => "NoMemError",
    "rb_eNotImpError"      => "NotImpError",
    "rb_eRangeError"       => "RangeError",
    "rb_eRuntimeError"     => "RuntimeError",
    "rb_eScriptError"      => "ScriptError",
    "rb_eSecurityError"    => "SecurityError",
    "rb_eSignal"           => "SignalException",
    "rb_eStandardError"    => "StandardError",
    "rb_eSyntaxError"      => "SyntaxError",
    "rb_eSystemCallError"  => "SystemCallError",
    "rb_eSystemExit"       => "SystemExit",
    "rb_eTypeError"        => "TypeError",
    "rb_eZeroDivError"     => "ZeroDivError",

    "rb_mComparable"       => "Comparable",
    "rb_mEnumerable"       => "Enumerable",
    "rb_mErrno"            => "Errno",
    "rb_mFConst"           => "File::Constants",
    "rb_mFileTest"         => "FileTest",
    "rb_mGC"               => "GC",
    "rb_mKernel"           => "Kernel",
    "rb_mMath"             => "Math",
    "rb_mProcess"          => "Process"
  }

end
PKBH[+�Z�q{q{0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/options.rbnu�[���# frozen_string_literal: true
require 'optparse'
require 'pathname'

##
# RDoc::Options handles the parsing and storage of options
#
# == Saved Options
#
# You can save some options like the markup format in the
# <tt>.rdoc_options</tt> file in your gem.  The easiest way to do this is:
#
#   rdoc --markup tomdoc --write-options
#
# Which will automatically create the file and fill it with the options you
# specified.
#
# The following options will not be saved since they interfere with the user's
# preferences or with the normal operation of RDoc:
#
# * +--coverage-report+
# * +--dry-run+
# * +--encoding+
# * +--force-update+
# * +--format+
# * +--pipe+
# * +--quiet+
# * +--template+
# * +--verbose+
#
# == Custom Options
#
# Generators can hook into RDoc::Options to add generator-specific command
# line options.
#
# When <tt>--format</tt> is encountered in ARGV, RDoc calls ::setup_options on
# the generator class to add extra options to the option parser.  Options for
# custom generators must occur after <tt>--format</tt>.  <tt>rdoc --help</tt>
# will list options for all installed generators.
#
# Example:
#
#   class RDoc::Generator::Spellcheck
#     RDoc::RDoc.add_generator self
#
#     def self.setup_options rdoc_options
#       op = rdoc_options.option_parser
#
#       op.on('--spell-dictionary DICTIONARY',
#             RDoc::Options::Path) do |dictionary|
#         rdoc_options.spell_dictionary = dictionary
#       end
#     end
#   end
#
# Of course, RDoc::Options does not respond to +spell_dictionary+ by default
# so you will need to add it:
#
#   class RDoc::Options
#
#     ##
#     # The spell dictionary used by the spell-checking plugin.
#
#     attr_accessor :spell_dictionary
#
#   end
#
# == Option Validators
#
# OptionParser validators will validate and cast user input values.  In
# addition to the validators that ship with OptionParser (String, Integer,
# Float, TrueClass, FalseClass, Array, Regexp, Date, Time, URI, etc.),
# RDoc::Options adds Path, PathArray and Template.

class RDoc::Options

  ##
  # The deprecated options.

  DEPRECATED = {
    '--accessor'      => 'support discontinued',
    '--diagram'       => 'support discontinued',
    '--help-output'   => 'support discontinued',
    '--image-format'  => 'was an option for --diagram',
    '--inline-source' => 'source code is now always inlined',
    '--merge'         => 'ri now always merges class information',
    '--one-file'      => 'support discontinued',
    '--op-name'       => 'support discontinued',
    '--opname'        => 'support discontinued',
    '--promiscuous'   => 'files always only document their content',
    '--ri-system'     => 'Ruby installers use other techniques',
  }

  ##
  # RDoc options ignored (or handled specially) by --write-options

  SPECIAL = %w[
    coverage_report
    dry_run
    encoding
    files
    force_output
    force_update
    generator
    generator_name
    generator_options
    generators
    op_dir
    option_parser
    pipe
    rdoc_include
    root
    static_path
    stylesheet_url
    template
    template_dir
    update_output_dir
    verbosity
    write_options
  ]

  ##
  # Option validator for OptionParser that matches a directory that exists on
  # the filesystem.

  Directory = Object.new

  ##
  # Option validator for OptionParser that matches a file or directory that
  # exists on the filesystem.

  Path = Object.new

  ##
  # Option validator for OptionParser that matches a comma-separated list of
  # files or directories that exist on the filesystem.

  PathArray = Object.new

  ##
  # Option validator for OptionParser that matches a template directory for an
  # installed generator that lives in
  # <tt>"rdoc/generator/template/#{template_name}"</tt>

  Template = Object.new

  ##
  # Character-set for HTML output.  #encoding is preferred over #charset

  attr_accessor :charset

  ##
  # If true, RDoc will not write any files.

  attr_accessor :dry_run

  ##
  # The output encoding.  All input files will be transcoded to this encoding.
  #
  # The default encoding is UTF-8.  This is set via --encoding.

  attr_accessor :encoding

  ##
  # Files matching this pattern will be excluded

  attr_writer :exclude

  ##
  # The list of files to be processed

  attr_accessor :files

  ##
  # Create the output even if the output directory does not look
  # like an rdoc output directory

  attr_accessor :force_output

  ##
  # Scan newer sources than the flag file if true.

  attr_accessor :force_update

  ##
  # Formatter to mark up text with

  attr_accessor :formatter

  ##
  # Description of the output generator (set with the <tt>--format</tt> option)

  attr_accessor :generator

  ##
  # For #==

  attr_reader :generator_name # :nodoc:

  ##
  # Loaded generator options.  Used to prevent --help from loading the same
  # options multiple times.

  attr_accessor :generator_options

  ##
  # Old rdoc behavior: hyperlink all words that match a method name,
  # even if not preceded by '#' or '::'

  attr_accessor :hyperlink_all

  ##
  # Include line numbers in the source code

  attr_accessor :line_numbers

  ##
  # The output locale.

  attr_accessor :locale

  ##
  # The directory where locale data live.

  attr_accessor :locale_dir

  ##
  # Name of the file, class or module to display in the initial index page (if
  # not specified the first file we encounter is used)

  attr_accessor :main_page

  ##
  # The default markup format.  The default is 'rdoc'.  'markdown', 'tomdoc'
  # and 'rd' are also built-in.

  attr_accessor :markup

  ##
  # If true, only report on undocumented files

  attr_accessor :coverage_report

  ##
  # The name of the output directory

  attr_accessor :op_dir

  ##
  # The OptionParser for this instance

  attr_accessor :option_parser

  ##
  # Output heading decorations?
  attr_accessor :output_decoration

  ##
  # Directory where guides, FAQ, and other pages not associated with a class
  # live.  You may leave this unset if these are at the root of your project.

  attr_accessor :page_dir

  ##
  # Is RDoc in pipe mode?

  attr_accessor :pipe

  ##
  # Array of directories to search for files to satisfy an :include:

  attr_accessor :rdoc_include

  ##
  # Root of the source documentation will be generated for.  Set this when
  # building documentation outside the source directory.  Defaults to the
  # current directory.

  attr_accessor :root

  ##
  # Include the '#' at the front of hyperlinked instance method names

  attr_accessor :show_hash

  ##
  # Directory to copy static files from

  attr_accessor :static_path

  ##
  # The number of columns in a tab

  attr_accessor :tab_width

  ##
  # Template to be used when generating output

  attr_accessor :template

  ##
  # Directory the template lives in

  attr_accessor :template_dir

  ##
  # Additional template stylesheets

  attr_accessor :template_stylesheets

  ##
  # Documentation title

  attr_accessor :title

  ##
  # Should RDoc update the timestamps in the output dir?

  attr_accessor :update_output_dir

  ##
  # Verbosity, zero means quiet

  attr_accessor :verbosity

  ##
  # URL of web cvs frontend

  attr_accessor :webcvs

  ##
  # Minimum visibility of a documented method. One of +:public+, +:protected+,
  # +:private+ or +:nodoc+.
  #
  # The +:nodoc+ visibility ignores all directives related to visibility.  The
  # other visibilities may be overridden on a per-method basis with the :doc:
  # directive.

  attr_reader :visibility

  def initialize # :nodoc:
    init_ivars
  end

  def init_ivars # :nodoc:
    @dry_run = false
    @exclude = %w[
      ~\z \.orig\z \.rej\z \.bak\z
      \.gemspec\z
    ]
    @files = nil
    @force_output = false
    @force_update = true
    @generator = nil
    @generator_name = nil
    @generator_options = []
    @generators = RDoc::RDoc::GENERATORS
    @hyperlink_all = false
    @line_numbers = false
    @locale = nil
    @locale_name = nil
    @locale_dir = 'locale'
    @main_page = nil
    @markup = 'rdoc'
    @coverage_report = false
    @op_dir = nil
    @page_dir = nil
    @pipe = false
    @output_decoration = true
    @rdoc_include = []
    @root = Pathname(Dir.pwd)
    @show_hash = false
    @static_path = []
    @stylesheet_url = nil # TODO remove in RDoc 4
    @tab_width = 8
    @template = nil
    @template_dir = nil
    @template_stylesheets = []
    @title = nil
    @update_output_dir = true
    @verbosity = 1
    @visibility = :protected
    @webcvs = nil
    @write_options = false
    @encoding = Encoding::UTF_8
    @charset = @encoding.name
  end

  def init_with map # :nodoc:
    init_ivars

    encoding = map['encoding']
    @encoding = encoding ? Encoding.find(encoding) : encoding

    @charset        = map['charset']
    @exclude        = map['exclude']
    @generator_name = map['generator_name']
    @hyperlink_all  = map['hyperlink_all']
    @line_numbers   = map['line_numbers']
    @locale_name    = map['locale_name']
    @locale_dir     = map['locale_dir']
    @main_page      = map['main_page']
    @markup         = map['markup']
    @op_dir         = map['op_dir']
    @show_hash      = map['show_hash']
    @tab_width      = map['tab_width']
    @template_dir   = map['template_dir']
    @title          = map['title']
    @visibility     = map['visibility']
    @webcvs         = map['webcvs']

    @rdoc_include = sanitize_path map['rdoc_include']
    @static_path  = sanitize_path map['static_path']
  end

  def yaml_initialize tag, map # :nodoc:
    init_with map
  end

  def == other # :nodoc:
    self.class === other and
      @encoding       == other.encoding       and
      @generator_name == other.generator_name and
      @hyperlink_all  == other.hyperlink_all  and
      @line_numbers   == other.line_numbers   and
      @locale         == other.locale         and
      @locale_dir     == other.locale_dir and
      @main_page      == other.main_page      and
      @markup         == other.markup         and
      @op_dir         == other.op_dir         and
      @rdoc_include   == other.rdoc_include   and
      @show_hash      == other.show_hash      and
      @static_path    == other.static_path    and
      @tab_width      == other.tab_width      and
      @template       == other.template       and
      @title          == other.title          and
      @visibility     == other.visibility     and
      @webcvs         == other.webcvs
  end

  ##
  # Check that the files on the command line exist

  def check_files
    @files.delete_if do |file|
      if File.exist? file then
        if File.readable? file then
          false
        else
          warn "file '#{file}' not readable"

          true
        end
      else
        warn "file '#{file}' not found"

        true
      end
    end
  end

  ##
  # Ensure only one generator is loaded

  def check_generator
    if @generator then
      raise OptionParser::InvalidOption,
        "generator already set to #{@generator_name}"
    end
  end

  ##
  # Set the title, but only if not already set. Used to set the title
  # from a source file, so that a title set from the command line
  # will have the priority.

  def default_title=(string)
    @title ||= string
  end

  ##
  # For dumping YAML

  def encode_with coder # :nodoc:
    encoding = @encoding ? @encoding.name : nil

    coder.add 'encoding', encoding
    coder.add 'static_path',  sanitize_path(@static_path)
    coder.add 'rdoc_include', sanitize_path(@rdoc_include)

    ivars = instance_variables.map { |ivar| ivar.to_s[1..-1] }
    ivars -= SPECIAL

    ivars.sort.each do |ivar|
      coder.add ivar, instance_variable_get("@#{ivar}")
    end
  end

  ##
  # Create a regexp for #exclude

  def exclude
    if @exclude.nil? or Regexp === @exclude then
      # done, #finish is being re-run
      @exclude
    elsif @exclude.empty? then
      nil
    else
      Regexp.new(@exclude.join("|"))
    end
  end

  ##
  # Completes any unfinished option setup business such as filtering for
  # existent files, creating a regexp for #exclude and setting a default
  # #template.

  def finish
    @op_dir ||= 'doc'

    @rdoc_include << "." if @rdoc_include.empty?
    root = @root.to_s
    @rdoc_include << root unless @rdoc_include.include?(root)

    @exclude = self.exclude

    finish_page_dir

    check_files

    # If no template was specified, use the default template for the output
    # formatter

    unless @template then
      @template     = @generator_name
      @template_dir = template_dir_for @template
    end

    if @locale_name
      @locale = RDoc::I18n::Locale[@locale_name]
      @locale.load(@locale_dir)
    else
      @locale = nil
    end

    self
  end

  ##
  # Fixes the page_dir to be relative to the root_dir and adds the page_dir to
  # the files list.

  def finish_page_dir
    return unless @page_dir

    @files << @page_dir.to_s

    page_dir = nil
    begin
      page_dir = @page_dir.expand_path.relative_path_from @root
    rescue ArgumentError
      # On Windows, sometimes crosses different drive letters.
      page_dir = @page_dir.expand_path
    end

    @page_dir = page_dir
  end

  ##
  # Returns a properly-space list of generators and their descriptions.

  def generator_descriptions
    lengths = []

    generators = RDoc::RDoc::GENERATORS.map do |name, generator|
      lengths << name.length

      description = generator::DESCRIPTION if
        generator.const_defined? :DESCRIPTION

      [name, description]
    end

    longest = lengths.max

    generators.sort.map do |name, description|
      if description then
        "  %-*s - %s" % [longest, name, description]
      else
        "  #{name}"
      end
    end.join "\n"
  end

  ##
  # Parses command line options.

  def parse argv
    ignore_invalid = true

    argv.insert(0, *ENV['RDOCOPT'].split) if ENV['RDOCOPT']

    opts = OptionParser.new do |opt|
      @option_parser = opt
      opt.program_name = File.basename $0
      opt.version = RDoc::VERSION
      opt.release = nil
      opt.summary_indent = ' ' * 4
      opt.banner = <<-EOF
Usage: #{opt.program_name} [options] [names...]

  Files are parsed, and the information they contain collected, before any
  output is produced. This allows cross references between all files to be
  resolved. If a name is a directory, it is traversed. If no names are
  specified, all Ruby files in the current directory (and subdirectories) are
  processed.

  How RDoc generates output depends on the output formatter being used, and on
  the options you give.

  Options can be specified via the RDOCOPT environment variable, which
  functions similar to the RUBYOPT environment variable for ruby.

    $ export RDOCOPT="--show-hash"

  will make rdoc show hashes in method links by default.  Command-line options
  always will override those in RDOCOPT.

  Available formatters:

#{generator_descriptions}

  RDoc understands the following file formats:

      EOF

      parsers = Hash.new { |h,parser| h[parser] = [] }

      RDoc::Parser.parsers.each do |regexp, parser|
        parsers[parser.name.sub('RDoc::Parser::', '')] << regexp.source
      end

      parsers.sort.each do |parser, regexp|
        opt.banner += "  - #{parser}: #{regexp.join ', '}\n"
      end
      opt.banner += "  - TomDoc:  Only in ruby files\n"

      opt.banner += "\n  The following options are deprecated:\n\n"

      name_length = DEPRECATED.keys.sort_by { |k| k.length }.last.length

      DEPRECATED.sort_by { |k,| k }.each do |name, reason|
        opt.banner += "    %*1$2$s  %3$s\n" % [-name_length, name, reason]
      end

      opt.accept Template do |template|
        template_dir = template_dir_for template

        unless template_dir then
          $stderr.puts "could not find template #{template}"
          nil
        else
          [template, template_dir]
        end
      end

      opt.accept Directory do |directory|
        directory = File.expand_path directory

        raise OptionParser::InvalidArgument unless File.directory? directory

        directory
      end

      opt.accept Path do |path|
        path = File.expand_path path

        raise OptionParser::InvalidArgument unless File.exist? path

        path
      end

      opt.accept PathArray do |paths,|
        paths = if paths then
                  paths.split(',').map { |d| d unless d.empty? }
                end

        paths.map do |path|
          path = File.expand_path path

          raise OptionParser::InvalidArgument unless File.exist? path

          path
        end
      end

      opt.separator nil
      opt.separator "Parsing options:"
      opt.separator nil

      opt.on("--encoding=ENCODING", "-e", Encoding.list.map { |e| e.name },
             "Specifies the output encoding.  All files",
             "read will be converted to this encoding.",
             "The default encoding is UTF-8.",
             "--encoding is preferred over --charset") do |value|
               @encoding = Encoding.find value
               @charset = @encoding.name # may not be valid value
             end

      opt.separator nil

      opt.on("--locale=NAME",
             "Specifies the output locale.") do |value|
        @locale_name = value
      end

      opt.on("--locale-data-dir=DIR",
             "Specifies the directory where locale data live.") do |value|
        @locale_dir = value
      end

      opt.separator nil

      opt.on("--all", "-a",
             "Synonym for --visibility=private.") do |value|
        @visibility = :private
      end

      opt.separator nil

      opt.on("--exclude=PATTERN", "-x", Regexp,
             "Do not process files or directories",
             "matching PATTERN.") do |value|
        @exclude << value
      end

      opt.separator nil

      opt.on("--extension=NEW=OLD", "-E",
             "Treat files ending with .new as if they",
             "ended with .old. Using '-E cgi=rb' will",
             "cause xxx.cgi to be parsed as a Ruby file.") do |value|
        new, old = value.split(/=/, 2)

        unless new and old then
          raise OptionParser::InvalidArgument, "Invalid parameter to '-E'"
        end

        unless RDoc::Parser.alias_extension old, new then
          raise OptionParser::InvalidArgument, "Unknown extension .#{old} to -E"
        end
      end

      opt.separator nil

      opt.on("--[no-]force-update", "-U",
             "Forces rdoc to scan all sources even if",
             "newer than the flag file.") do |value|
        @force_update = value
      end

      opt.separator nil

      opt.on("--pipe", "-p",
             "Convert RDoc on stdin to HTML") do
        @pipe = true
      end

      opt.separator nil

      opt.on("--tab-width=WIDTH", "-w", Integer,
             "Set the width of tab characters.") do |value|
        raise OptionParser::InvalidArgument,
              "#{value} is an invalid tab width" if value <= 0
        @tab_width = value
      end

      opt.separator nil

      opt.on("--visibility=VISIBILITY", "-V", RDoc::VISIBILITIES + [:nodoc],
             "Minimum visibility to document a method.",
             "One of 'public', 'protected' (the default),",
             "'private' or 'nodoc' (show everything)") do |value|
        @visibility = value
      end

      opt.separator nil

      markup_formats = RDoc::Text::MARKUP_FORMAT.keys.sort

      opt.on("--markup=MARKUP", markup_formats,
             "The markup format for the named files.",
             "The default is rdoc.  Valid values are:",
             markup_formats.join(', ')) do |value|
        @markup = value
      end

      opt.separator nil

      opt.on("--root=ROOT", Directory,
             "Root of the source tree documentation",
             "will be generated for.  Set this when",
             "building documentation outside the",
             "source directory.  Default is the",
             "current directory.") do |root|
        @root = Pathname(root)
      end

      opt.separator nil

      opt.on("--page-dir=DIR", Directory,
             "Directory where guides, your FAQ or",
             "other pages not associated with a class",
             "live.  Set this when you don't store",
             "such files at your project root.",
             "NOTE: Do not use the same file name in",
             "the page dir and the root of your project") do |page_dir|
        @page_dir = Pathname(page_dir)
      end

      opt.separator nil
      opt.separator "Common generator options:"
      opt.separator nil

      opt.on("--force-output", "-O",
             "Forces rdoc to write the output files,",
             "even if the output directory exists",
             "and does not seem to have been created",
             "by rdoc.") do |value|
        @force_output = value
      end

      opt.separator nil

      generator_text = @generators.keys.map { |name| "  #{name}" }.sort

      opt.on("-f", "--fmt=FORMAT", "--format=FORMAT", @generators.keys,
             "Set the output formatter.  One of:", *generator_text) do |value|
        check_generator

        @generator_name = value.downcase
        setup_generator
      end

      opt.separator nil

      opt.on("--include=DIRECTORIES", "-i", PathArray,
             "Set (or add to) the list of directories to",
             "be searched when satisfying :include:",
             "requests. Can be used more than once.") do |value|
        @rdoc_include.concat value.map { |dir| dir.strip }
      end

      opt.separator nil

      opt.on("--[no-]coverage-report=[LEVEL]", "--[no-]dcov", "-C", Integer,
             "Prints a report on undocumented items.",
             "Does not generate files.") do |value|
        value = 0 if value.nil? # Integer converts -C to nil

        @coverage_report = value
        @force_update = true if value
      end

      opt.separator nil

      opt.on("--output=DIR", "--op", "-o",
             "Set the output directory.") do |value|
        @op_dir = value
      end

      opt.separator nil

      opt.on("-d",
             "Deprecated --diagram option.",
             "Prevents firing debug mode",
             "with legacy invocation.") do |value|
      end

      opt.separator nil
      opt.separator 'HTML generator options:'
      opt.separator nil

      opt.on("--charset=CHARSET", "-c",
             "Specifies the output HTML character-set.",
             "Use --encoding instead of --charset if",
             "available.") do |value|
        @charset = value
      end

      opt.separator nil

      opt.on("--hyperlink-all", "-A",
             "Generate hyperlinks for all words that",
             "correspond to known methods, even if they",
             "do not start with '#' or '::' (legacy",
             "behavior).") do |value|
        @hyperlink_all = value
      end

      opt.separator nil

      opt.on("--main=NAME", "-m",
             "NAME will be the initial page displayed.") do |value|
        @main_page = value
      end

      opt.separator nil

      opt.on("--[no-]line-numbers", "-N",
             "Include line numbers in the source code.",
             "By default, only the number of the first",
             "line is displayed, in a leading comment.") do |value|
        @line_numbers = value
      end

      opt.separator nil

      opt.on("--show-hash", "-H",
             "A name of the form #name in a comment is a",
             "possible hyperlink to an instance method",
             "name. When displayed, the '#' is removed",
             "unless this option is specified.") do |value|
        @show_hash = value
      end

      opt.separator nil

      opt.on("--template=NAME", "-T", Template,
             "Set the template used when generating",
             "output. The default depends on the",
             "formatter used.") do |(template, template_dir)|
        @template     = template
        @template_dir = template_dir
      end

      opt.separator nil

      opt.on("--template-stylesheets=FILES", PathArray,
             "Set (or add to) the list of files to",
             "include with the html template.") do |value|
        @template_stylesheets << value
      end

      opt.separator nil

      opt.on("--title=TITLE", "-t",
             "Set TITLE as the title for HTML output.") do |value|
        @title = value
      end

      opt.separator nil

      opt.on("--copy-files=PATH", Path,
             "Specify a file or directory to copy static",
             "files from.",
             "If a file is given it will be copied into",
             "the output dir.  If a directory is given the",
             "entire directory will be copied.",
             "You can use this multiple times") do |value|
        @static_path << value
      end

      opt.separator nil

      opt.on("--webcvs=URL", "-W",
             "Specify a URL for linking to a web frontend",
             "to CVS. If the URL contains a '\%s', the",
             "name of the current file will be",
             "substituted; if the URL doesn't contain a",
             "'\%s', the filename will be appended to it.") do |value|
        @webcvs = value
      end

      opt.separator nil
      opt.separator "ri generator options:"
      opt.separator nil

      opt.on("--ri", "-r",
             "Generate output for use by `ri`. The files",
             "are stored in the '.rdoc' directory under",
             "your home directory unless overridden by a",
             "subsequent --op parameter, so no special",
             "privileges are needed.") do |value|
        check_generator

        @generator_name = "ri"
        @op_dir ||= RDoc::RI::Paths::HOMEDIR
        setup_generator
      end

      opt.separator nil

      opt.on("--ri-site", "-R",
             "Generate output for use by `ri`. The files",
             "are stored in a site-wide directory,",
             "making them accessible to others, so",
             "special privileges are needed.") do |value|
        check_generator

        @generator_name = "ri"
        @op_dir = RDoc::RI::Paths.site_dir
        setup_generator
      end

      opt.separator nil
      opt.separator "Generic options:"
      opt.separator nil

      opt.on("--write-options",
             "Write .rdoc_options to the current",
             "directory with the given options.  Not all",
             "options will be used.  See RDoc::Options",
             "for details.") do |value|
        @write_options = true
      end

      opt.separator nil

      opt.on("--[no-]dry-run",
             "Don't write any files") do |value|
        @dry_run = value
      end

      opt.separator nil

      opt.on("-D", "--[no-]debug",
             "Displays lots on internal stuff.") do |value|
        $DEBUG_RDOC = value
      end

      opt.separator nil

      opt.on("--[no-]ignore-invalid",
             "Ignore invalid options and continue",
             "(default true).") do |value|
        ignore_invalid = value
      end

      opt.separator nil

      opt.on("--quiet", "-q",
             "Don't show progress as we parse.") do |value|
        @verbosity = 0
      end

      opt.separator nil

      opt.on("--verbose", "-V",
             "Display extra progress as RDoc parses") do |value|
        @verbosity = 2
      end

      opt.separator nil

      opt.on("--version", "-v", "print the version") do
        puts opt.version
        exit
      end

      opt.separator nil

      opt.on("--help", "-h", "Display this help") do
        RDoc::RDoc::GENERATORS.each_key do |generator|
          setup_generator generator
        end

        puts opt.help
        exit
      end

      opt.separator nil
    end

    setup_generator 'darkfish' if
      argv.grep(/\A(-f|--fmt|--format|-r|-R|--ri|--ri-site)\b/).empty?

    deprecated = []
    invalid = []

    begin
      opts.parse! argv
    rescue OptionParser::ParseError => e
      if DEPRECATED[e.args.first] then
        deprecated << e.args.first
      elsif %w[--format --ri -r --ri-site -R].include? e.args.first then
        raise
      else
        invalid << e.args.join(' ')
      end

      retry
    end

    unless @generator then
      @generator = RDoc::Generator::Darkfish
      @generator_name = 'darkfish'
    end

    if @pipe and not argv.empty? then
      @pipe = false
      invalid << '-p (with files)'
    end

    unless quiet then
      deprecated.each do |opt|
        $stderr.puts 'option ' + opt + ' is deprecated: ' + DEPRECATED[opt]
      end
    end

    unless invalid.empty? then
      invalid = "invalid options: #{invalid.join ', '}"

      if ignore_invalid then
        unless quiet then
          $stderr.puts invalid
          $stderr.puts '(invalid options are ignored)'
        end
      else
        unless quiet then
          $stderr.puts opts
        end
        $stderr.puts invalid
        exit 1
      end
    end

    @files = argv.dup

    finish

    if @write_options then
      write_options
      exit
    end

    self
  end

  ##
  # Don't display progress as we process the files

  def quiet
    @verbosity.zero?
  end

  ##
  # Set quietness to +bool+

  def quiet= bool
    @verbosity = bool ? 0 : 1
  end

  ##
  # Removes directories from +path+ that are outside the current directory

  def sanitize_path path
    require 'pathname'
    dot = Pathname.new('.').expand_path

    path.reject do |item|
      path = Pathname.new(item).expand_path
      is_reject = nil
      relative = nil
      begin
        relative = path.relative_path_from(dot).to_s
      rescue ArgumentError
        # On Windows, sometimes crosses different drive letters.
        is_reject = true
      else
        is_reject = relative.start_with? '..'
      end
      is_reject
    end
  end

  ##
  # Set up an output generator for the named +generator_name+.
  #
  # If the found generator responds to :setup_options it will be called with
  # the options instance.  This allows generators to add custom options or set
  # default options.

  def setup_generator generator_name = @generator_name
    @generator = @generators[generator_name]

    unless @generator then
      raise OptionParser::InvalidArgument,
            "Invalid output formatter #{generator_name}"
    end

    return if @generator_options.include? @generator

    @generator_name = generator_name
    @generator_options << @generator

    if @generator.respond_to? :setup_options then
      @option_parser ||= OptionParser.new
      @generator.setup_options self
    end
  end

  ##
  # Finds the template dir for +template+

  def template_dir_for template
    template_path = File.join 'rdoc', 'generator', 'template', template

    $LOAD_PATH.map do |path|
      File.join File.expand_path(path), template_path
    end.find do |dir|
      File.directory? dir
    end
  end

  # Sets the minimum visibility of a documented method.
  #
  # Accepts +:public+, +:protected+, +:private+, +:nodoc+, or +:all+.
  #
  # When +:all+ is passed, visibility is set to +:private+, similarly to
  # RDOCOPT="--all", see #visibility for more information.

  def visibility= visibility
    case visibility
    when :all
      @visibility = :private
    else
      @visibility = visibility
    end
  end

  ##
  # Displays a warning using Kernel#warn if we're being verbose

  def warn message
    super message if @verbosity > 1
  end

  ##
  # Writes the YAML file .rdoc_options to the current directory containing the
  # parsed options.

  def write_options
    RDoc.load_yaml

    File.open '.rdoc_options', 'w' do |io|
      io.set_encoding Encoding::UTF_8

      YAML.dump self, io
    end
  end

end
PKBH[g�*���5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/code_objects.rbnu�[���# frozen_string_literal: true
# This file was used to load all the RDoc::CodeObject subclasses at once.  Now
# autoload handles this.

require 'rdoc'

PKBH[Ȅ���3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/anon_class.rbnu�[���# frozen_string_literal: true
##
# An anonymous class like:
#
#   c = Class.new do end
#
# AnonClass is currently not used.

class RDoc::AnonClass < RDoc::ClassModule
end

PKBH[�v}��6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rubygems_hook.rbnu�[���# frozen_string_literal: true
require 'rubygems/user_interaction'
require 'fileutils'
require 'rdoc'

##
# Gem::RDoc provides methods to generate RDoc and ri data for installed gems
# upon gem installation.
#
# This file is automatically required by RubyGems 1.9 and newer.

class RDoc::RubygemsHook

  include Gem::UserInteraction
  extend  Gem::UserInteraction

  @rdoc_version = nil
  @specs = []

  ##
  # Force installation of documentation?

  attr_accessor :force

  ##
  # Generate rdoc?

  attr_accessor :generate_rdoc

  ##
  # Generate ri data?

  attr_accessor :generate_ri

  class << self

    ##
    # Loaded version of RDoc.  Set by ::load_rdoc

    attr_reader :rdoc_version

  end

  ##
  # Post installs hook that generates documentation for each specification in
  # +specs+

  def self.generation_hook installer, specs
    start = Time.now
    types = installer.document

    generate_rdoc = types.include? 'rdoc'
    generate_ri   = types.include? 'ri'

    specs.each do |spec|
      new(spec, generate_rdoc, generate_ri).generate
    end

    return unless generate_rdoc or generate_ri

    duration = (Time.now - start).to_i
    names    = specs.map(&:name).join ', '

    say "Done installing documentation for #{names} after #{duration} seconds"
  end

  ##
  # Loads the RDoc generator

  def self.load_rdoc
    return if @rdoc_version

    require 'rdoc/rdoc'

    @rdoc_version = Gem::Version.new ::RDoc::VERSION
  end

  ##
  # Creates a new documentation generator for +spec+.  RDoc and ri data
  # generation can be enabled or disabled through +generate_rdoc+ and
  # +generate_ri+ respectively.
  #
  # Only +generate_ri+ is enabled by default.

  def initialize spec, generate_rdoc = false, generate_ri = true
    @doc_dir   = spec.doc_dir
    @force     = false
    @rdoc      = nil
    @spec      = spec

    @generate_rdoc = generate_rdoc
    @generate_ri   = generate_ri

    @rdoc_dir = spec.doc_dir 'rdoc'
    @ri_dir   = spec.doc_dir 'ri'
  end

  ##
  # Removes legacy rdoc arguments from +args+
  #--
  # TODO move to RDoc::Options

  def delete_legacy_args args
    args.delete '--inline-source'
    args.delete '--promiscuous'
    args.delete '-p'
    args.delete '--one-file'
  end

  ##
  # Generates documentation using the named +generator+ ("darkfish" or "ri")
  # and following the given +options+.
  #
  # Documentation will be generated into +destination+

  def document generator, options, destination
    generator_name = generator

    options = options.dup
    options.exclude ||= [] # TODO maybe move to RDoc::Options#finish
    options.setup_generator generator
    options.op_dir = destination
    options.finish

    generator = options.generator.new @rdoc.store, options

    @rdoc.options = options
    @rdoc.generator = generator

    say "Installing #{generator_name} documentation for #{@spec.full_name}"

    FileUtils.mkdir_p options.op_dir

    Dir.chdir options.op_dir do
      begin
        @rdoc.class.current = @rdoc
        @rdoc.generator.generate
      ensure
        @rdoc.class.current = nil
      end
    end
  end

  ##
  # Generates RDoc and ri data

  def generate
    return if @spec.default_gem?
    return unless @generate_ri or @generate_rdoc

    setup

    options = nil

    args = @spec.rdoc_options
    args.concat @spec.source_paths
    args.concat @spec.extra_rdoc_files

    case config_args = Gem.configuration[:rdoc]
    when String then
      args = args.concat config_args.split
    when Array then
      args = args.concat config_args
    end

    delete_legacy_args args

    Dir.chdir @spec.full_gem_path do
      options = ::RDoc::Options.new
      options.default_title = "#{@spec.full_name} Documentation"
      options.parse args
    end

    options.quiet = !Gem.configuration.really_verbose

    @rdoc = new_rdoc
    @rdoc.options = options

    store = RDoc::Store.new
    store.encoding = options.encoding
    store.dry_run  = options.dry_run
    store.main     = options.main_page
    store.title    = options.title

    @rdoc.store = store

    say "Parsing documentation for #{@spec.full_name}"

    Dir.chdir @spec.full_gem_path do
      @rdoc.parse_files options.files
    end

    document 'ri',       options, @ri_dir if
      @generate_ri   and (@force or not File.exist? @ri_dir)

    document 'darkfish', options, @rdoc_dir if
      @generate_rdoc and (@force or not File.exist? @rdoc_dir)
  end

  ##
  # #new_rdoc creates a new RDoc instance.  This method is provided only to
  # make testing easier.

  def new_rdoc # :nodoc:
    ::RDoc::RDoc.new
  end

  ##
  # Is rdoc documentation installed?

  def rdoc_installed?
    File.exist? @rdoc_dir
  end

  ##
  # Removes generated RDoc and ri data

  def remove
    base_dir = @spec.base_dir

    raise Gem::FilePermissionError, base_dir unless File.writable? base_dir

    FileUtils.rm_rf @rdoc_dir
    FileUtils.rm_rf @ri_dir
  end

  ##
  # Is ri data installed?

  def ri_installed?
    File.exist? @ri_dir
  end

  ##
  # Prepares the spec for documentation generation

  def setup
    self.class.load_rdoc

    raise Gem::FilePermissionError, @doc_dir if
      File.exist?(@doc_dir) and not File.writable?(@doc_dir)

    FileUtils.mkdir_p @doc_dir unless File.exist? @doc_dir
  end

end
PKBH[
��=MM0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/version.rbnu�[���module RDoc

  ##
  # RDoc version you are using

  VERSION = '6.2.1.1'

end
PKBH[��cV8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/cross_reference.rbnu�[���# frozen_string_literal: true
##
# RDoc::CrossReference is a reusable way to create cross references for names.

class RDoc::CrossReference

  ##
  # Regular expression to match class references
  #
  # 1. There can be a '\\' in front of text to suppress the cross-reference
  # 2. There can be a '::' in front of class names to reference from the
  #    top-level namespace.
  # 3. The method can be followed by parenthesis (not recommended)

  CLASS_REGEXP_STR = '\\\\?((?:\:{2})?[A-Z]\w*(?:\:\:\w+)*)'

  ##
  # Regular expression to match method references.
  #
  # See CLASS_REGEXP_STR

  METHOD_REGEXP_STR = '([a-z]\w*[!?=]?|%|===|\[\]=?|<<|>>|-|\+|\*)(?:\([\w.+*/=<>-]*\))?'

  ##
  # Regular expressions matching text that should potentially have
  # cross-reference links generated are passed to add_regexp_handling. Note
  # that these expressions are meant to pick up text for which cross-references
  # have been suppressed, since the suppression characters are removed by the
  # code that is triggered.

  CROSSREF_REGEXP = /(?:^|[\s()])
                     (
                      (?:
                       # A::B::C.meth
                       #{CLASS_REGEXP_STR}(?:[.#]|::)#{METHOD_REGEXP_STR}

                       # Stand-alone method (preceded by a #)
                       | \\?\##{METHOD_REGEXP_STR}

                       # Stand-alone method (preceded by ::)
                       | ::#{METHOD_REGEXP_STR}

                       # A::B::C
                       # The stuff after CLASS_REGEXP_STR is a
                       # nasty hack.  CLASS_REGEXP_STR unfortunately matches
                       # words like dog and cat (these are legal "class"
                       # names in Fortran 95).  When a word is flagged as a
                       # potential cross-reference, limitations in the markup
                       # engine suppress other processing, such as typesetting.
                       # This is particularly noticeable for contractions.
                       # In order that words like "can't" not
                       # be flagged as potential cross-references, only
                       # flag potential class cross-references if the character
                       # after the cross-reference is a space, sentence
                       # punctuation, tag start character, or attribute
                       # marker.
                       | #{CLASS_REGEXP_STR}(?=[@\s).?!,;<\000]|\z)

                       # Things that look like filenames
                       # The key thing is that there must be at least
                       # one special character (period, slash, or
                       # underscore).
                       | (?:\.\.\/)*[-\/\w]+[_\/.][-\w\/.]+

                       # Things that have markup suppressed
                       # Don't process things like '\<' in \<tt>, though.
                       # TODO: including < is a hack, not very satisfying.
                       | \\[^\s<]
                      )

                      # labels for headings
                      (?:@[\w+%-]+(?:\.[\w|%-]+)?)?
                     )/x

  ##
  # Version of CROSSREF_REGEXP used when <tt>--hyperlink-all</tt> is specified.

  ALL_CROSSREF_REGEXP = /
                     (?:^|[\s()])
                     (
                      (?:
                       # A::B::C.meth
                       #{CLASS_REGEXP_STR}(?:[.#]|::)#{METHOD_REGEXP_STR}

                       # Stand-alone method
                       | \\?#{METHOD_REGEXP_STR}

                       # A::B::C
                       | #{CLASS_REGEXP_STR}(?=[@\s).?!,;<\000]|\z)

                       # Things that look like filenames
                       | (?:\.\.\/)*[-\/\w]+[_\/.][-\w\/.]+

                       # Things that have markup suppressed
                       | \\[^\s<]
                      )

                      # labels for headings
                      (?:@[\w+%-]+)?
                     )/x

  ##
  # Hash of references that have been looked-up to their replacements

  attr_accessor :seen

  ##
  # Allows cross-references to be created based on the given +context+
  # (RDoc::Context).

  def initialize context
    @context = context
    @store   = context.store

    @seen = {}
  end

  ##
  # Returns a reference to +name+.
  #
  # If the reference is found and +name+ is not documented +text+ will be
  # returned.  If +name+ is escaped +name+ is returned.  If +name+ is not
  # found +text+ is returned.

  def resolve name, text
    return @seen[name] if @seen.include? name

    if /#{CLASS_REGEXP_STR}([.#]|::)#{METHOD_REGEXP_STR}/o =~ name then
      type = $2
      if '.' == type # will find either #method or ::method
        method = $3
      else
        method = "#{type}#{$3}"
      end
      container = @context.find_symbol_module($1)
    elsif /^([.#]|::)#{METHOD_REGEXP_STR}/o =~ name then
      type = $1
      if '.' == type
        method = $2
      else
        method = "#{type}#{$2}"
      end
      container = @context
    else
      type = nil
      container = nil
    end

    if container then
      unless RDoc::TopLevel === container then
        if '.' == type then
          if 'new' == method then # AnyClassName.new will be class method
            ref = container.find_local_symbol method
            ref = container.find_ancestor_local_symbol method unless ref
          else
            ref = container.find_local_symbol "::#{method}"
            ref = container.find_ancestor_local_symbol "::#{method}" unless ref
            ref = container.find_local_symbol "##{method}" unless ref
            ref = container.find_ancestor_local_symbol "##{method}" unless ref
          end
        else
          ref = container.find_local_symbol method
          ref = container.find_ancestor_local_symbol method unless ref
        end
      end
    end

    ref = case name
          when /^\\(#{CLASS_REGEXP_STR})$/o then
            @context.find_symbol $1
          else
            @context.find_symbol name
          end unless ref

    # Try a page name
    ref = @store.page name if not ref and name =~ /^\w+$/

    ref = nil if RDoc::Alias === ref # external alias, can't link to it

    out = if name == '\\' then
            name
          elsif name =~ /^\\/ then
            # we remove the \ only in front of what we know:
            # other backslashes are treated later, only outside of <tt>
            ref ? $' : name
          elsif ref then
            if ref.display? then
              ref
            else
              text
            end
          else
            text
          end

    @seen[name] = out

    out
  end

end

PKBH[ʥ9e��0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/tom_doc.rbnu�[���# frozen_string_literal: true
# :markup: tomdoc

# A parser for TomDoc based on TomDoc 1.0.0-rc1 (02adef9b5a)
#
# The TomDoc specification can be found at:
#
# http://tomdoc.org
#
# The latest version of the TomDoc specification can be found at:
#
# https://github.com/mojombo/tomdoc/blob/master/tomdoc.md
#
# To choose TomDoc as your only default format see RDoc::Options@Saved+Options
# for instructions on setting up a <code>.rdoc_options</code> file to store
# your project default.
#
# There are a few differences between this parser and the specification.  A
# best-effort was made to follow the specification as closely as possible but
# some choices to deviate were made.
#
# A future version of RDoc will warn when a MUST or MUST NOT is violated and
# may warn when a SHOULD or SHOULD NOT is violated.  RDoc will always try
# to emit documentation even if given invalid TomDoc.
#
# Here are some implementation choices this parser currently makes:
#
# This parser allows rdoc-style inline markup but you should not depended on
# it.
#
# This parser allows a space between the comment and the method body.
#
# This parser does not require the default value to be described for an
# optional argument.
#
# This parser does not examine the order of sections.  An Examples section may
# precede the Arguments section.
#
# This class is documented in TomDoc format.  Since this is a subclass of the
# RDoc markup parser there isn't much to see here, unfortunately.

class RDoc::TomDoc < RDoc::Markup::Parser

  # Internal: Token accessor

  attr_reader :tokens

  # Internal: Adds a post-processor which sets the RDoc section based on the
  # comment's status.
  #
  # Returns nothing.

  def self.add_post_processor # :nodoc:
    RDoc::Markup::PreProcess.post_process do |comment, code_object|
      next unless code_object and
                  RDoc::Comment === comment and comment.format == 'tomdoc'

      comment.text.gsub!(/(\A\s*# )(Public|Internal|Deprecated):\s+/) do
        section = code_object.add_section $2
        code_object.temporary_section = section

        $1
      end
    end
  end

  add_post_processor

  # Public: Parses TomDoc from text
  #
  # text - A String containing TomDoc-format text.
  #
  # Examples
  #
  #   RDoc::TomDoc.parse <<-TOMDOC
  #   This method does some things
  #
  #   Returns nothing.
  #   TOMDOC
  #   # => #<RDoc::Markup::Document:0xXXX @parts=[...], @file=nil>
  #
  # Returns an RDoc::Markup::Document representing the TomDoc format.

  def self.parse text
    parser = new

    parser.tokenize text
    doc = RDoc::Markup::Document.new
    parser.parse doc
    doc
  end

  # Internal: Extracts the Signature section's method signature
  #
  # comment - An RDoc::Comment that will be parsed and have the signature
  #           extracted
  #
  # Returns a String containing the signature and nil if not

  def self.signature comment
    return unless comment.tomdoc?

    document = comment.parse

    signature = nil
    found_heading = false
    found_signature = false

    document.parts.delete_if do |part|
      next false if found_signature

      found_heading ||=
        RDoc::Markup::Heading === part && part.text == 'Signature'

      next false unless found_heading

      next true if RDoc::Markup::BlankLine === part

      if RDoc::Markup::Verbatim === part then
        signature = part
        found_signature = true
      end
    end

    signature and signature.text
  end

  # Public: Creates a new TomDoc parser.  See also RDoc::Markup::parse

  def initialize
    super

    @section      = nil
    @seen_returns = false
  end

  # Internal: Builds a heading from the token stream
  #
  # level - The level of heading to create
  #
  # Returns an RDoc::Markup::Heading

  def build_heading level
    heading = super

    @section = heading.text

    heading
  end

  # Internal: Builds a verbatim from the token stream.  A verbatim in the
  # Examples section will be marked as in Ruby format.
  #
  # margin - The indentation from the margin for lines that belong to this
  #          verbatim section.
  #
  # Returns an RDoc::Markup::Verbatim

  def build_verbatim margin
    verbatim = super

    verbatim.format = :ruby if @section == 'Examples'

    verbatim
  end

  # Internal: Builds a paragraph from the token stream
  #
  # margin - Unused
  #
  # Returns an RDoc::Markup::Paragraph.

  def build_paragraph margin
    p :paragraph_start => margin if @debug

    paragraph = RDoc::Markup::Paragraph.new

    until @tokens.empty? do
      type, data, = get

      case type
      when :TEXT then
        @section = 'Returns' if data =~ /\A(Returns|Raises)/

        paragraph << data
      when :NEWLINE then
        if :TEXT == peek_token[0] then
          # Lines beginning with 'Raises' in the Returns section should not be
          # treated as multiline text
          if 'Returns' == @section and
            peek_token[1].start_with?('Raises') then
            break
          else
            paragraph << ' '
          end
        else
          break
        end
      else
        unget
        break
      end
    end

    p :paragraph_end => margin if @debug

    paragraph
  end

  ##
  # Detects a section change to "Returns" and adds a heading

  def parse_text parent, indent # :nodoc:
    paragraph = build_paragraph indent

    if false == @seen_returns and 'Returns' == @section then
      @seen_returns = true
      parent << RDoc::Markup::Heading.new(3, 'Returns')
      parent << RDoc::Markup::BlankLine.new
    end

    parent << paragraph
  end

  # Internal: Turns text into an Array of tokens
  #
  # text - A String containing TomDoc-format text.
  #
  # Returns self.

  def tokenize text
    text = text.sub(/\A(Public|Internal|Deprecated):\s+/, '')

    setup_scanner text

    until @s.eos? do
      pos = @s.pos

      # leading spaces will be reflected by the column of the next token
      # the only thing we loose are trailing spaces at the end of the file
      next if @s.scan(/ +/)

      @tokens << case
                 when @s.scan(/\r?\n/) then
                   token = [:NEWLINE, @s.matched, *pos]
                   @s.newline!
                   token
                 when @s.scan(/(Examples|Signature)$/) then
                   @tokens << [:HEADER, 3, *pos]

                   [:TEXT, @s[1], *pos]
                 when @s.scan(/([:\w][\w\[\]]*)[ ]+- /) then
                   [:NOTE, @s[1], *pos]
                 else
                   @s.scan(/.*/)
                   [:TEXT, @s.matched.sub(/\r$/, ''), *pos]
                 end
    end

    self
  end

end
PKBH[v�T�DODO5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/class_module.rbnu�[���# frozen_string_literal: true
##
# ClassModule is the base class for objects representing either a class or a
# module.

class RDoc::ClassModule < RDoc::Context

  ##
  # 1::
  #   RDoc 3.7
  #   * Added visibility, singleton and file to attributes
  #   * Added file to constants
  #   * Added file to includes
  #   * Added file to methods
  # 2::
  #   RDoc 3.13
  #   * Added extends
  # 3::
  #   RDoc 4.0
  #   * Added sections
  #   * Added in_files
  #   * Added parent name
  #   * Complete Constant dump

  MARSHAL_VERSION = 3 # :nodoc:

  ##
  # Constants that are aliases for this class or module

  attr_accessor :constant_aliases

  ##
  # Comment and the location it came from.  Use #add_comment to add comments

  attr_accessor :comment_location

  attr_accessor :diagram # :nodoc:

  ##
  # Class or module this constant is an alias for

  attr_accessor :is_alias_for

  ##
  # Return a RDoc::ClassModule of class +class_type+ that is a copy
  # of module +module+. Used to promote modules to classes.
  #--
  # TODO move to RDoc::NormalClass (I think)

  def self.from_module class_type, mod
    klass = class_type.new mod.name

    mod.comment_location.each do |comment, location|
      klass.add_comment comment, location
    end

    klass.parent = mod.parent
    klass.section = mod.section
    klass.viewer = mod.viewer

    klass.attributes.concat mod.attributes
    klass.method_list.concat mod.method_list
    klass.aliases.concat mod.aliases
    klass.external_aliases.concat mod.external_aliases
    klass.constants.concat mod.constants
    klass.includes.concat mod.includes
    klass.extends.concat mod.extends

    klass.methods_hash.update mod.methods_hash
    klass.constants_hash.update mod.constants_hash

    klass.current_section = mod.current_section
    klass.in_files.concat mod.in_files
    klass.sections.concat mod.sections
    klass.unmatched_alias_lists = mod.unmatched_alias_lists
    klass.current_section = mod.current_section
    klass.visibility = mod.visibility

    klass.classes_hash.update mod.classes_hash
    klass.modules_hash.update mod.modules_hash
    klass.metadata.update mod.metadata

    klass.document_self = mod.received_nodoc ? nil : mod.document_self
    klass.document_children = mod.document_children
    klass.force_documentation = mod.force_documentation
    klass.done_documenting = mod.done_documenting

    # update the parent of all children

    (klass.attributes +
     klass.method_list +
     klass.aliases +
     klass.external_aliases +
     klass.constants +
     klass.includes +
     klass.extends +
     klass.classes +
     klass.modules).each do |obj|
      obj.parent = klass
      obj.full_name = nil
    end

    klass
  end

  ##
  # Creates a new ClassModule with +name+ with optional +superclass+
  #
  # This is a constructor for subclasses, and must never be called directly.

  def initialize(name, superclass = nil)
    @constant_aliases = []
    @diagram          = nil
    @is_alias_for     = nil
    @name             = name
    @superclass       = superclass
    @comment_location = [] # [[comment, location]]

    super()
  end

  ##
  # Adds +comment+ to this ClassModule's list of comments at +location+.  This
  # method is preferred over #comment= since it allows ri data to be updated
  # across multiple runs.

  def add_comment comment, location
    return unless document_self

    original = comment

    comment = case comment
              when RDoc::Comment then
                comment.normalize
              else
                normalize_comment comment
              end

    if location.parser == RDoc::Parser::C
      @comment_location.delete_if { |(_, l)| l == location }
    end

    @comment_location << [comment, location]

    self.comment = original
  end

  def add_things my_things, other_things # :nodoc:
    other_things.each do |group, things|
      my_things[group].each { |thing| yield false, thing } if
        my_things.include? group

      things.each do |thing|
        yield true, thing
      end
    end
  end

  ##
  # Ancestors list for this ClassModule: the list of included modules
  # (classes will add their superclass if any).
  #
  # Returns the included classes or modules, not the includes
  # themselves. The returned values are either String or
  # RDoc::NormalModule instances (see RDoc::Include#module).
  #
  # The values are returned in reverse order of their inclusion,
  # which is the order suitable for searching methods/attributes
  # in the ancestors. The superclass, if any, comes last.

  def ancestors
    includes.map { |i| i.module }.reverse
  end

  def aref_prefix # :nodoc:
    raise NotImplementedError, "missing aref_prefix for #{self.class}"
  end

  ##
  # HTML fragment reference for this module or class.  See
  # RDoc::NormalClass#aref and RDoc::NormalModule#aref

  def aref
    "#{aref_prefix}-#{full_name}"
  end

  ##
  # Ancestors of this class or module only

  alias direct_ancestors ancestors

  ##
  # Clears the comment. Used by the Ruby parser.

  def clear_comment
    @comment = ''
  end

  ##
  # This method is deprecated, use #add_comment instead.
  #
  # Appends +comment+ to the current comment, but separated by a rule.  Works
  # more like <tt>+=</tt>.

  def comment= comment # :nodoc:
    comment = case comment
              when RDoc::Comment then
                comment.normalize
              else
                normalize_comment comment
              end

    comment = "#{@comment.to_s}\n---\n#{comment.to_s}" unless @comment.empty?

    super comment
  end

  ##
  # Prepares this ClassModule for use by a generator.
  #
  # See RDoc::Store#complete

  def complete min_visibility
    update_aliases
    remove_nodoc_children
    update_includes
    remove_invisible min_visibility
  end

  ##
  # Does this ClassModule or any of its methods have document_self set?

  def document_self_or_methods
    document_self || method_list.any?{ |m| m.document_self }
  end

  ##
  # Does this class or module have a comment with content or is
  # #received_nodoc true?

  def documented?
    return true if @received_nodoc
    return false if @comment_location.empty?
    @comment_location.any? { |comment, _| not comment.empty? }
  end

  ##
  # Iterates the ancestors of this class or module for which an
  # RDoc::ClassModule exists.

  def each_ancestor # :yields: module
    return enum_for __method__ unless block_given?

    ancestors.each do |mod|
      next if String === mod
      next if self == mod
      yield mod
    end
  end

  ##
  # Looks for a symbol in the #ancestors. See Context#find_local_symbol.

  def find_ancestor_local_symbol symbol
    each_ancestor do |m|
      res = m.find_local_symbol(symbol)
      return res if res
    end

    nil
  end

  ##
  # Finds a class or module with +name+ in this namespace or its descendants

  def find_class_named name
    return self if full_name == name
    return self if @name == name

    @classes.values.find do |klass|
      next if klass == self
      klass.find_class_named name
    end
  end

  ##
  # Return the fully qualified name of this class or module

  def full_name
    @full_name ||= if RDoc::ClassModule === parent then
                     "#{parent.full_name}::#{@name}"
                   else
                     @name
                   end
  end

  ##
  # TODO: filter included items by #display?

  def marshal_dump # :nodoc:
    attrs = attributes.sort.map do |attr|
      next unless attr.display?
      [ attr.name, attr.rw,
        attr.visibility, attr.singleton, attr.file_name,
      ]
    end.compact

    method_types = methods_by_type.map do |type, visibilities|
      visibilities = visibilities.map do |visibility, methods|
        method_names = methods.map do |method|
          next unless method.display?
          [method.name, method.file_name]
        end.compact

        [visibility, method_names.uniq]
      end

      [type, visibilities]
    end

    [ MARSHAL_VERSION,
      @name,
      full_name,
      @superclass,
      parse(@comment_location),
      attrs,
      constants.select { |constant| constant.display? },
      includes.map do |incl|
        next unless incl.display?
        [incl.name, parse(incl.comment), incl.file_name]
      end.compact,
      method_types,
      extends.map do |ext|
        next unless ext.display?
        [ext.name, parse(ext.comment), ext.file_name]
      end.compact,
      @sections.values,
      @in_files.map do |tl|
        tl.relative_name
      end,
      parent.full_name,
      parent.class,
    ]
  end

  def marshal_load array # :nodoc:
    initialize_visibility
    initialize_methods_etc
    @current_section   = nil
    @document_self     = true
    @done_documenting  = false
    @parent            = nil
    @temporary_section = nil
    @visibility        = nil
    @classes           = {}
    @modules           = {}

    @name       = array[1]
    @full_name  = array[2]
    @superclass = array[3]
    @comment    = array[4]

    @comment_location = if RDoc::Markup::Document === @comment.parts.first then
                          @comment
                        else
                          RDoc::Markup::Document.new @comment
                        end

    array[5].each do |name, rw, visibility, singleton, file|
      singleton  ||= false
      visibility ||= :public

      attr = RDoc::Attr.new nil, name, rw, nil, singleton

      add_attribute attr
      attr.visibility = visibility
      attr.record_location RDoc::TopLevel.new file
    end

    array[6].each do |constant, comment, file|
      case constant
      when RDoc::Constant then
        add_constant constant
      else
        constant = add_constant RDoc::Constant.new(constant, nil, comment)
        constant.record_location RDoc::TopLevel.new file
      end
    end

    array[7].each do |name, comment, file|
      incl = add_include RDoc::Include.new(name, comment)
      incl.record_location RDoc::TopLevel.new file
    end

    array[8].each do |type, visibilities|
      visibilities.each do |visibility, methods|
        @visibility = visibility

        methods.each do |name, file|
          method = RDoc::AnyMethod.new nil, name
          method.singleton = true if type == 'class'
          method.record_location RDoc::TopLevel.new file
          add_method method
        end
      end
    end

    array[9].each do |name, comment, file|
      ext = add_extend RDoc::Extend.new(name, comment)
      ext.record_location RDoc::TopLevel.new file
    end if array[9] # Support Marshal version 1

    sections = (array[10] || []).map do |section|
      [section.title, section]
    end

    @sections = Hash[*sections.flatten]
    @current_section = add_section nil

    @in_files = []

    (array[11] || []).each do |filename|
      record_location RDoc::TopLevel.new filename
    end

    @parent_name  = array[12]
    @parent_class = array[13]
  end

  ##
  # Merges +class_module+ into this ClassModule.
  #
  # The data in +class_module+ is preferred over the receiver.

  def merge class_module
    @parent      = class_module.parent
    @parent_name = class_module.parent_name

    other_document = parse class_module.comment_location

    if other_document then
      document = parse @comment_location

      document = document.merge other_document

      @comment = @comment_location = document
    end

    cm = class_module
    other_files = cm.in_files

    merge_collections attributes, cm.attributes, other_files do |add, attr|
      if add then
        add_attribute attr
      else
        @attributes.delete attr
        @methods_hash.delete attr.pretty_name
      end
    end

    merge_collections constants, cm.constants, other_files do |add, const|
      if add then
        add_constant const
      else
        @constants.delete const
        @constants_hash.delete const.name
      end
    end

    merge_collections includes, cm.includes, other_files do |add, incl|
      if add then
        add_include incl
      else
        @includes.delete incl
      end
    end

    @includes.uniq! # clean up

    merge_collections extends, cm.extends, other_files do |add, ext|
      if add then
        add_extend ext
      else
        @extends.delete ext
      end
    end

    @extends.uniq! # clean up

    merge_collections method_list, cm.method_list, other_files do |add, meth|
      if add then
        add_method meth
      else
        @method_list.delete meth
        @methods_hash.delete meth.pretty_name
      end
    end

    merge_sections cm

    self
  end

  ##
  # Merges collection +mine+ with +other+ preferring other.  +other_files+ is
  # used to help determine which items should be deleted.
  #
  # Yields whether the item should be added or removed (true or false) and the
  # item to be added or removed.
  #
  #   merge_collections things, other.things, other.in_files do |add, thing|
  #     if add then
  #       # add the thing
  #     else
  #       # remove the thing
  #     end
  #   end

  def merge_collections mine, other, other_files, &block # :nodoc:
    my_things    = mine. group_by { |thing| thing.file }
    other_things = other.group_by { |thing| thing.file }

    remove_things my_things, other_files,  &block
    add_things    my_things, other_things, &block
  end

  ##
  # Merges the comments in this ClassModule with the comments in the other
  # ClassModule +cm+.

  def merge_sections cm # :nodoc:
    my_sections    =    sections.group_by { |section| section.title }
    other_sections = cm.sections.group_by { |section| section.title }

    other_files = cm.in_files

    remove_things my_sections, other_files do |_, section|
      @sections.delete section.title
    end

    other_sections.each do |group, sections|
      if my_sections.include? group
        my_sections[group].each do |my_section|
          other_section = cm.sections_hash[group]

          my_comments    = my_section.comments
          other_comments = other_section.comments

          other_files = other_section.in_files

          merge_collections my_comments, other_comments, other_files do |add, comment|
            if add then
              my_section.add_comment comment
            else
              my_section.remove_comment comment
            end
          end
        end
      else
        sections.each do |section|
          add_section group, section.comments
        end
      end
    end
  end

  ##
  # Does this object represent a module?

  def module?
    false
  end

  ##
  # Allows overriding the initial name.
  #
  # Used for modules and classes that are constant aliases.

  def name= new_name
    @name = new_name
  end

  ##
  # Parses +comment_location+ into an RDoc::Markup::Document composed of
  # multiple RDoc::Markup::Documents with their file set.

  def parse comment_location
    case comment_location
    when String then
      super
    when Array then
      docs = comment_location.map do |comment, location|
        doc = super comment
        doc.file = location
        doc
      end

      RDoc::Markup::Document.new(*docs)
    when RDoc::Comment then
      doc = super comment_location.text, comment_location.format
      doc.file = comment_location.location
      doc
    when RDoc::Markup::Document then
      return comment_location
    else
      raise ArgumentError, "unknown comment class #{comment_location.class}"
    end
  end

  ##
  # Path to this class or module for use with HTML generator output.

  def path
    http_url @store.rdoc.generator.class_dir
  end

  ##
  # Name to use to generate the url:
  # modules and classes that are aliases for another
  # module or class return the name of the latter.

  def name_for_path
    is_alias_for ? is_alias_for.full_name : full_name
  end

  ##
  # Returns the classes and modules that are not constants
  # aliasing another class or module. For use by formatters
  # only (caches its result).

  def non_aliases
    @non_aliases ||= classes_and_modules.reject { |cm| cm.is_alias_for }
  end

  ##
  # Updates the child modules or classes of class/module +parent+ by
  # deleting the ones that have been removed from the documentation.
  #
  # +parent_hash+ is either <tt>parent.modules_hash</tt> or
  # <tt>parent.classes_hash</tt> and +all_hash+ is ::all_modules_hash or
  # ::all_classes_hash.

  def remove_nodoc_children
    prefix = self.full_name + '::'

    modules_hash.each_key do |name|
      full_name = prefix + name
      modules_hash.delete name unless @store.modules_hash[full_name]
    end

    classes_hash.each_key do |name|
      full_name = prefix + name
      classes_hash.delete name unless @store.classes_hash[full_name]
    end
  end

  def remove_things my_things, other_files # :nodoc:
    my_things.delete_if do |file, things|
      next false unless other_files.include? file

      things.each do |thing|
        yield false, thing
      end

      true
    end
  end

  ##
  # Search record used by RDoc::Generator::JsonIndex

  def search_record
    [
      name,
      full_name,
      full_name,
      '',
      path,
      '',
      snippet(@comment_location),
    ]
  end

  ##
  # Sets the store for this class or module and its contained code objects.

  def store= store
    super

    @attributes .each do |attr|  attr.store  = store end
    @constants  .each do |const| const.store = store end
    @includes   .each do |incl|  incl.store  = store end
    @extends    .each do |ext|   ext.store   = store end
    @method_list.each do |meth|  meth.store  = store end
  end

  ##
  # Get the superclass of this class.  Attempts to retrieve the superclass
  # object, returns the name if it is not known.

  def superclass
    @store.find_class_named(@superclass) || @superclass
  end

  ##
  # Set the superclass of this class to +superclass+

  def superclass=(superclass)
    raise NoMethodError, "#{full_name} is a module" if module?
    @superclass = superclass
  end

  def to_s # :nodoc:
    if is_alias_for then
      "#{self.class.name} #{self.full_name} -> #{is_alias_for}"
    else
      super
    end
  end

  ##
  # 'module' or 'class'

  def type
    module? ? 'module' : 'class'
  end

  ##
  # Updates the child modules & classes by replacing the ones that are
  # aliases through a constant.
  #
  # The aliased module/class is replaced in the children and in
  # RDoc::Store#modules_hash or RDoc::Store#classes_hash
  # by a copy that has <tt>RDoc::ClassModule#is_alias_for</tt> set to
  # the aliased module/class, and this copy is added to <tt>#aliases</tt>
  # of the aliased module/class.
  #
  # Formatters can use the #non_aliases method to retrieve children that
  # are not aliases, for instance to list the namespace content, since
  # the aliased modules are included in the constants of the class/module,
  # that are listed separately.

  def update_aliases
    constants.each do |const|
      next unless cm = const.is_alias_for
      cm_alias = cm.dup
      cm_alias.name = const.name

      # Don't move top-level aliases under Object, they look ugly there
      unless RDoc::TopLevel === cm_alias.parent then
        cm_alias.parent = self
        cm_alias.full_name = nil # force update for new parent
      end

      cm_alias.aliases.clear
      cm_alias.is_alias_for = cm

      if cm.module? then
        @store.modules_hash[cm_alias.full_name] = cm_alias
        modules_hash[const.name] = cm_alias
      else
        @store.classes_hash[cm_alias.full_name] = cm_alias
        classes_hash[const.name] = cm_alias
      end

      cm.aliases << cm_alias
    end
  end

  ##
  # Deletes from #includes those whose module has been removed from the
  # documentation.
  #--
  # FIXME: includes are not reliably removed, see _possible_bug test case

  def update_includes
    includes.reject! do |include|
      mod = include.module
      !(String === mod) && @store.modules_hash[mod.full_name].nil?
    end

    includes.uniq!
  end

  ##
  # Deletes from #extends those whose module has been removed from the
  # documentation.
  #--
  # FIXME: like update_includes, extends are not reliably removed

  def update_extends
    extends.reject! do |ext|
      mod = ext.module

      !(String === mod) && @store.modules_hash[mod.full_name].nil?
    end

    extends.uniq!
  end

end

PKBH[�R5���5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ghost_method.rbnu�[���# frozen_string_literal: true
##
# GhostMethod represents a method referenced only by a comment

class RDoc::GhostMethod < RDoc::AnyMethod
end

PKBH[F�v�EE+share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd.rbnu�[���# frozen_string_literal: true
##
# RDoc::RD implements the RD format from the rdtool gem.
#
# To choose RD as your only default format see
# RDoc::Options@Saved+Options for instructions on setting up a
# <code>.doc_options</code> file to store your project default.
#
# == LICENSE
#
# The grammar that produces RDoc::RD::BlockParser and RDoc::RD::InlineParser
# is included in RDoc under the Ruby License.
#
# You can find the original source for rdtool at
# https://github.com/uwabami/rdtool/
#
# You can use, re-distribute or change these files under Ruby's License or GPL.
#
# 1. You may make and give away verbatim copies of the source form of the
#    software without restriction, provided that you duplicate all of the
#    original copyright notices and associated disclaimers.
#
# 2. You may modify your copy of the software in any way, provided that
#    you do at least ONE of the following:
#
#    a. place your modifications in the Public Domain or otherwise
#       make them Freely Available, such as by posting said
#       modifications to Usenet or an equivalent medium, or by allowing
#       the author to include your modifications in the software.
#
#    b. use the modified software only within your corporation or
#       organization.
#
#    c. give non-standard binaries non-standard names, with
#       instructions on where to get the original software distribution.
#
#    d. make other distribution arrangements with the author.
#
# 3. You may distribute the software in object code or binary form,
#    provided that you do at least ONE of the following:
#
#    a. distribute the binaries and library files of the software,
#       together with instructions (in the manual page or equivalent)
#       on where to get the original distribution.
#
#    b. accompany the distribution with the machine-readable source of
#       the software.
#
#    c. give non-standard binaries non-standard names, with
#       instructions on where to get the original software distribution.
#
#    d. make other distribution arrangements with the author.
#
# 4. You may modify and include the part of the software into any other
#    software (possibly commercial).  But some files in the distribution
#    are not written by the author, so that they are not under these terms.
#
#    For the list of those files and their copying conditions, see the
#    file LEGAL.
#
# 5. The scripts and library files supplied as input to or produced as
#    output from the software do not automatically fall under the
#    copyright of the software, but belong to whomever generated them,
#    and may be sold commercially, and may be aggregated with this
#    software.
#
# 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
#    IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
#    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
#    PURPOSE.

class RDoc::RD

  ##
  # Parses +rd+ source and returns an RDoc::Markup::Document.  If the
  # <tt>=begin</tt> or <tt>=end</tt> lines are missing they will be added.

  def self.parse rd
    rd = rd.lines.to_a

    if rd.find { |i| /\S/ === i } and !rd.find{|i| /^=begin\b/ === i } then
      rd.unshift("=begin\n").push("=end\n")
    end

    parser = RDoc::RD::BlockParser.new
    document = parser.parse rd

    # isn't this always true?
    document.parts.shift if RDoc::Markup::BlankLine === document.parts.first
    document.parts.pop   if RDoc::Markup::BlankLine === document.parts.last

    document
  end

  autoload :BlockParser,  'rdoc/rd/block_parser'
  autoload :InlineParser, 'rdoc/rd/inline_parser'
  autoload :Inline,       'rdoc/rd/inline'

end

PKBH[�I��#$#$4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/method_attr.rbnu�[���# frozen_string_literal: true
##
# Abstract class representing either a method or an attribute.

class RDoc::MethodAttr < RDoc::CodeObject

  include Comparable

  ##
  # Name of this method/attribute.

  attr_accessor :name

  ##
  # public, protected, private

  attr_accessor :visibility

  ##
  # Is this a singleton method/attribute?

  attr_accessor :singleton

  ##
  # Source file token stream

  attr_reader :text

  ##
  # Array of other names for this method/attribute

  attr_reader :aliases

  ##
  # The method/attribute we're aliasing

  attr_accessor :is_alias_for

  #--
  # The attributes below are for AnyMethod only.
  # They are left here for the time being to
  # allow ri to operate.
  # TODO modify ri to avoid calling these on attributes.
  #++

  ##
  # Parameters yielded by the called block

  attr_reader :block_params

  ##
  # Parameters for this method

  attr_accessor :params

  ##
  # Different ways to call this method

  attr_accessor :call_seq

  ##
  # The call_seq or the param_seq with method name, if there is no call_seq.

  attr_reader :arglists

  ##
  # Pretty parameter list for this method

  attr_reader :param_seq


  ##
  # Creates a new MethodAttr from token stream +text+ and method or attribute
  # name +name+.
  #
  # Usually this is called by super from a subclass.

  def initialize text, name
    super()

    @text = text
    @name = name

    @aliases      = []
    @is_alias_for = nil
    @parent_name  = nil
    @singleton    = nil
    @visibility   = :public
    @see = false

    @arglists     = nil
    @block_params = nil
    @call_seq     = nil
    @param_seq    = nil
    @params       = nil
  end

  ##
  # Resets cached data for the object so it can be rebuilt by accessor methods

  def initialize_copy other # :nodoc:
    @full_name = nil
  end

  def initialize_visibility # :nodoc:
    super
    @see = nil
  end

  ##
  # Order by #singleton then #name

  def <=>(other)
    return unless other.respond_to?(:singleton) &&
                  other.respond_to?(:name)

    [     @singleton ? 0 : 1,       name] <=>
    [other.singleton ? 0 : 1, other.name]
  end

  def == other # :nodoc:
    equal?(other) or self.class == other.class and full_name == other.full_name
  end

  ##
  # A method/attribute is documented if any of the following is true:
  # - it was marked with :nodoc:;
  # - it has a comment;
  # - it is an alias for a documented method;
  # - it has a +#see+ method that is documented.

  def documented?
    super or
      (is_alias_for and is_alias_for.documented?) or
      (see and see.documented?)
  end

  ##
  # A method/attribute to look at,
  # in particular if this method/attribute has no documentation.
  #
  # It can be a method/attribute of the superclass or of an included module,
  # including the Kernel module, which is always appended to the included
  # modules.
  #
  # Returns +nil+ if there is no such method/attribute.
  # The +#is_alias_for+ method/attribute, if any, is not included.
  #
  # Templates may generate a "see also ..." if this method/attribute
  # has documentation, and "see ..." if it does not.

  def see
    @see = find_see if @see == false
    @see
  end

  ##
  # Sets the store for this class or module and its contained code objects.

  def store= store
    super

    @file = @store.add_file @file.full_name if @file
  end

  def find_see # :nodoc:
    return nil if singleton || is_alias_for

    # look for the method
    other = find_method_or_attribute name
    return other if other

    # if it is a setter, look for a getter
    return nil unless name =~ /[a-z_]=$/i   # avoid == or ===
    return find_method_or_attribute name[0..-2]
  end

  def find_method_or_attribute name # :nodoc:
    return nil unless parent.respond_to? :ancestors

    searched = parent.ancestors
    kernel = @store.modules_hash['Kernel']

    searched << kernel if kernel &&
      parent != kernel && !searched.include?(kernel)

    searched.each do |ancestor|
      next if String === ancestor
      next if parent == ancestor

      other = ancestor.find_method_named('#' + name) ||
              ancestor.find_attribute_named(name)

      return other if other
    end

    nil
  end

  ##
  # Abstract method. Contexts in their building phase call this
  # to register a new alias for this known method/attribute.
  #
  # - creates a new AnyMethod/Attribute named <tt>an_alias.new_name</tt>;
  # - adds +self+ as an alias for the new method or attribute
  # - adds the method or attribute to #aliases
  # - adds the method or attribute to +context+.

  def add_alias(an_alias, context)
    raise NotImplementedError
  end

  ##
  # HTML fragment reference for this method

  def aref
    type = singleton ? 'c' : 'i'
    # % characters are not allowed in html names => dash instead
    "#{aref_prefix}-#{type}-#{html_name}"
  end

  ##
  # Prefix for +aref+, defined by subclasses.

  def aref_prefix
    raise NotImplementedError
  end

  ##
  # Attempts to sanitize the content passed by the Ruby parser:
  # remove outer parentheses, etc.

  def block_params=(value)
    # 'yield.to_s' or 'assert yield, msg'
    return @block_params = '' if value =~ /^[\.,]/

    # remove trailing 'if/unless ...'
    return @block_params = '' if value =~ /^(if|unless)\s/

    value = $1.strip if value =~ /^(.+)\s(if|unless)\s/

    # outer parentheses
    value = $1 if value =~ /^\s*\((.*)\)\s*$/
    value = value.strip

    # proc/lambda
    return @block_params = $1 if value =~ /^(proc|lambda)(\s*\{|\sdo)/

    # surrounding +...+ or [...]
    value = $1.strip if value =~ /^\+(.*)\+$/
    value = $1.strip if value =~ /^\[(.*)\]$/

    return @block_params = '' if value.empty?

    # global variable
    return @block_params = 'str' if value =~ /^\$[&0-9]$/

    # wipe out array/hash indices
    value.gsub!(/(\w)\[[^\[]+\]/, '\1')

    # remove @ from class/instance variables
    value.gsub!(/@@?([a-z0-9_]+)/, '\1')

    # method calls => method name
    value.gsub!(/([A-Z:a-z0-9_]+)\.([a-z0-9_]+)(\s*\(\s*[a-z0-9_.,\s]*\s*\)\s*)?/) do
      case $2
      when 'to_s'      then $1
      when 'const_get' then 'const'
      when 'new' then
        $1.split('::').last.  # ClassName => class_name
          gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
          gsub(/([a-z\d])([A-Z])/,'\1_\2').
          downcase
      else
        $2
      end
    end

    # class prefixes
    value.gsub!(/[A-Za-z0-9_:]+::/, '')

    # simple expressions
    value = $1 if value =~ /^([a-z0-9_]+)\s*[-*+\/]/

    @block_params = value.strip
  end

  ##
  # HTML id-friendly method/attribute name

  def html_name
    require 'cgi'

    CGI.escape(@name.gsub('-', '-2D')).gsub('%','-').sub(/^-/, '')
  end

  ##
  # Full method/attribute name including namespace

  def full_name
    @full_name ||= "#{parent_name}#{pretty_name}"
  end

  def inspect # :nodoc:
    alias_for = @is_alias_for ? " (alias for #{@is_alias_for.name})" : nil
    visibility = self.visibility
    visibility = "forced #{visibility}" if force_documentation
    "#<%s:0x%x %s (%s)%s>" % [
      self.class, object_id,
      full_name,
      visibility,
      alias_for,
    ]
  end

  ##
  # '::' for a class method/attribute, '#' for an instance method.

  def name_prefix
    @singleton ? '::' : '#'
  end

  ##
  # Name for output to HTML.  For class methods the full name with a "." is
  # used like +SomeClass.method_name+.  For instance methods the class name is
  # used if +context+ does not match the parent.
  #
  # This is to help prevent people from using :: to call class methods.

  def output_name context
    return "#{name_prefix}#{@name}" if context == parent

    "#{parent_name}#{@singleton ? '.' : '#'}#{@name}"
  end

  ##
  # Method/attribute name with class/instance indicator

  def pretty_name
    "#{name_prefix}#{@name}"
  end

  ##
  # Type of method/attribute (class or instance)

  def type
    singleton ? 'class' : 'instance'
  end

  ##
  # Path to this method for use with HTML generator output.

  def path
    "#{@parent.path}##{aref}"
  end

  ##
  # Name of our parent with special handling for un-marshaled methods

  def parent_name
    @parent_name || super
  end

  def pretty_print q # :nodoc:
    alias_for =
      if @is_alias_for.respond_to? :name then
        "alias for #{@is_alias_for.name}"
      elsif Array === @is_alias_for then
        "alias for #{@is_alias_for.last}"
      end

    q.group 2, "[#{self.class.name} #{full_name} #{visibility}", "]" do
      if alias_for then
        q.breakable
        q.text alias_for
      end

      if text then
        q.breakable
        q.text "text:"
        q.breakable
        q.pp @text
      end

      unless comment.empty? then
        q.breakable
        q.text "comment:"
        q.breakable
        q.pp @comment
      end
    end
  end

  ##
  # Used by RDoc::Generator::JsonIndex to create a record for the search
  # engine.

  def search_record
    [
      @name,
      full_name,
      @name,
      @parent.full_name,
      path,
      params,
      snippet(@comment),
    ]
  end

  def to_s # :nodoc:
    if @is_alias_for
      "#{self.class.name}: #{full_name} -> #{is_alias_for}"
    else
      "#{self.class.name}: #{full_name}"
    end
  end

end

PKBH[�5�8��4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/erb_partial.rbnu�[���# frozen_string_literal: true
##
# Allows an ERB template to be rendered in the context (binding) of an
# existing ERB template evaluation.

class RDoc::ERBPartial < ERB

  ##
  # Overrides +compiler+ startup to set the +eoutvar+ to an empty string only
  # if it isn't already set.

  def set_eoutvar compiler, eoutvar = '_erbout'
    super

    compiler.pre_cmd = ["#{eoutvar} ||= ''"]
  end

end

PKBH[FM���Y�Y.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/store.rbnu�[���# frozen_string_literal: true
require 'fileutils'

##
# A set of rdoc data for a single project (gem, path, etc.).
#
# The store manages reading and writing ri data for a project and maintains a
# cache of methods, classes and ancestors in the store.
#
# The store maintains a #cache of its contents for faster lookup.  After
# adding items to the store it must be flushed using #save_cache.  The cache
# contains the following structures:
#
#    @cache = {
#      :ancestors        => {}, # class name => ancestor names
#      :attributes       => {}, # class name => attributes
#      :class_methods    => {}, # class name => class methods
#      :instance_methods => {}, # class name => instance methods
#      :modules          => [], # classes and modules in this store
#      :pages            => [], # page names
#    }
#--
# TODO need to prune classes

class RDoc::Store

  ##
  # Errors raised from loading or saving the store

  class Error < RDoc::Error
  end

  ##
  # Raised when a stored file for a class, module, page or method is missing.

  class MissingFileError < Error

    ##
    # The store the file should exist in

    attr_reader :store

    ##
    # The file the #name should be saved as

    attr_reader :file

    ##
    # The name of the object the #file would be loaded from

    attr_reader :name

    ##
    # Creates a new MissingFileError for the missing +file+ for the given
    # +name+ that should have been in the +store+.

    def initialize store, file, name
      @store = store
      @file  = file
      @name  = name
    end

    def message # :nodoc:
      "store at #{@store.path} missing file #{@file} for #{@name}"
    end

  end

  ##
  # Stores the name of the C variable a class belongs to.  This helps wire up
  # classes defined from C across files.

  attr_reader :c_enclosure_classes # :nodoc:

  attr_reader :c_enclosure_names # :nodoc:

  ##
  # Maps C variables to class or module names for each parsed C file.

  attr_reader :c_class_variables

  ##
  # Maps C variables to singleton class names for each parsed C file.

  attr_reader :c_singleton_class_variables

  ##
  # If true this Store will not write any files

  attr_accessor :dry_run

  ##
  # Path this store reads or writes

  attr_accessor :path

  ##
  # The RDoc::RDoc driver for this parse tree.  This allows classes consulting
  # the documentation tree to access user-set options, for example.

  attr_accessor :rdoc

  ##
  # Type of ri datastore this was loaded from.  See RDoc::RI::Driver,
  # RDoc::RI::Paths.

  attr_accessor :type

  ##
  # The contents of the Store

  attr_reader :cache

  ##
  # The encoding of the contents in the Store

  attr_accessor :encoding

  ##
  # The lazy constants alias will be discovered in passing

  attr_reader :unmatched_constant_alias

  ##
  # Creates a new Store of +type+ that will load or save to +path+

  def initialize path = nil, type = nil
    @dry_run  = false
    @encoding = nil
    @path     = path
    @rdoc     = nil
    @type     = type

    @cache = {
      :ancestors                   => {},
      :attributes                  => {},
      :class_methods               => {},
      :c_class_variables           => {},
      :c_singleton_class_variables => {},
      :encoding                    => @encoding,
      :instance_methods            => {},
      :main                        => nil,
      :modules                     => [],
      :pages                       => [],
      :title                       => nil,
    }

    @classes_hash = {}
    @modules_hash = {}
    @files_hash   = {}
    @text_files_hash = {}

    @c_enclosure_classes = {}
    @c_enclosure_names   = {}

    @c_class_variables           = {}
    @c_singleton_class_variables = {}

    @unique_classes = nil
    @unique_modules = nil

    @unmatched_constant_alias = {}
  end

  ##
  # Adds +module+ as an enclosure (namespace) for the given +variable+ for C
  # files.

  def add_c_enclosure variable, namespace
    @c_enclosure_classes[variable] = namespace
  end

  ##
  # Adds C variables from an RDoc::Parser::C

  def add_c_variables c_parser
    filename = c_parser.top_level.relative_name

    @c_class_variables[filename] = make_variable_map c_parser.classes

    @c_singleton_class_variables[filename] = c_parser.singleton_classes
  end

  ##
  # Adds the file with +name+ as an RDoc::TopLevel to the store.  Returns the
  # created RDoc::TopLevel.

  def add_file absolute_name, relative_name: absolute_name, parser: nil
    unless top_level = @files_hash[relative_name] then
      top_level = RDoc::TopLevel.new absolute_name, relative_name
      top_level.parser = parser if parser
      top_level.store = self
      @files_hash[relative_name] = top_level
      @text_files_hash[relative_name] = top_level if top_level.text?
    end

    top_level
  end

  def update_parser_of_file(absolute_name, parser)
    if top_level = @files_hash[absolute_name] then
      @text_files_hash[absolute_name] = top_level if top_level.text?
    end
  end

  ##
  # Returns all classes discovered by RDoc

  def all_classes
    @classes_hash.values
  end

  ##
  # Returns all classes and modules discovered by RDoc

  def all_classes_and_modules
    @classes_hash.values + @modules_hash.values
  end

  ##
  # All TopLevels known to RDoc

  def all_files
    @files_hash.values
  end

  ##
  # Returns all modules discovered by RDoc

  def all_modules
    modules_hash.values
  end

  ##
  # Ancestors cache accessor.  Maps a klass name to an Array of its ancestors
  # in this store.  If Foo in this store inherits from Object, Kernel won't be
  # listed (it will be included from ruby's ri store).

  def ancestors
    @cache[:ancestors]
  end

  ##
  # Attributes cache accessor.  Maps a class to an Array of its attributes.

  def attributes
    @cache[:attributes]
  end

  ##
  # Path to the cache file

  def cache_path
    File.join @path, 'cache.ri'
  end

  ##
  # Path to the ri data for +klass_name+

  def class_file klass_name
    name = klass_name.split('::').last
    File.join class_path(klass_name), "cdesc-#{name}.ri"
  end

  ##
  # Class methods cache accessor.  Maps a class to an Array of its class
  # methods (not full name).

  def class_methods
    @cache[:class_methods]
  end

  ##
  # Path where data for +klass_name+ will be stored (methods or class data)

  def class_path klass_name
    File.join @path, *klass_name.split('::')
  end

  ##
  # Hash of all classes known to RDoc

  def classes_hash
    @classes_hash
  end

  ##
  # Removes empty items and ensures item in each collection are unique and
  # sorted

  def clean_cache_collection collection # :nodoc:
    collection.each do |name, item|
      if item.empty? then
        collection.delete name
      else
        # HACK mongrel-1.1.5 documents its files twice
        item.uniq!
        item.sort!
      end
    end
  end

  ##
  # Prepares the RDoc code object tree for use by a generator.
  #
  # It finds unique classes/modules defined, and replaces classes/modules that
  # are aliases for another one by a copy with RDoc::ClassModule#is_alias_for
  # set.
  #
  # It updates the RDoc::ClassModule#constant_aliases attribute of "real"
  # classes or modules.
  #
  # It also completely removes the classes and modules that should be removed
  # from the documentation and the methods that have a visibility below
  # +min_visibility+, which is the <tt>--visibility</tt> option.
  #
  # See also RDoc::Context#remove_from_documentation?

  def complete min_visibility
    fix_basic_object_inheritance

    # cache included modules before they are removed from the documentation
    all_classes_and_modules.each { |cm| cm.ancestors }

    unless min_visibility == :nodoc then
      remove_nodoc @classes_hash
      remove_nodoc @modules_hash
    end

    @unique_classes = find_unique @classes_hash
    @unique_modules = find_unique @modules_hash

    unique_classes_and_modules.each do |cm|
      cm.complete min_visibility
    end

    @files_hash.each_key do |file_name|
      tl = @files_hash[file_name]

      unless tl.text? then
        tl.modules_hash.clear
        tl.classes_hash.clear

        tl.classes_or_modules.each do |cm|
          name = cm.full_name
          if cm.type == 'class' then
            tl.classes_hash[name] = cm if @classes_hash[name]
          else
            tl.modules_hash[name] = cm if @modules_hash[name]
          end
        end
      end
    end
  end

  ##
  # Hash of all files known to RDoc

  def files_hash
    @files_hash
  end

  ##
  # Finds the enclosure (namespace) for the given C +variable+.

  def find_c_enclosure variable
    @c_enclosure_classes.fetch variable do
      break unless name = @c_enclosure_names[variable]

      mod = find_class_or_module name

      unless mod then
        loaded_mod = load_class_data name

        file = loaded_mod.in_files.first

        return unless file # legacy data source

        file.store = self

        mod = file.add_module RDoc::NormalModule, name
      end

      @c_enclosure_classes[variable] = mod
    end
  end

  ##
  # Finds the class with +name+ in all discovered classes

  def find_class_named name
    @classes_hash[name]
  end

  ##
  # Finds the class with +name+ starting in namespace +from+

  def find_class_named_from name, from
    from = find_class_named from unless RDoc::Context === from

    until RDoc::TopLevel === from do
      return nil unless from

      klass = from.find_class_named name
      return klass if klass

      from = from.parent
    end

    find_class_named name
  end

  ##
  # Finds the class or module with +name+

  def find_class_or_module name
    name = $' if name =~ /^::/
    @classes_hash[name] || @modules_hash[name]
  end

  ##
  # Finds the file with +name+ in all discovered files

  def find_file_named name
    @files_hash[name]
  end

  ##
  # Finds the module with +name+ in all discovered modules

  def find_module_named name
    @modules_hash[name]
  end

  ##
  # Returns the RDoc::TopLevel that is a text file and has the given
  # +file_name+

  def find_text_page file_name
    @text_files_hash.each_value.find do |file|
      file.full_name == file_name
    end
  end

  ##
  # Finds unique classes/modules defined in +all_hash+,
  # and returns them as an array. Performs the alias
  # updates in +all_hash+: see ::complete.
  #--
  # TODO  aliases should be registered by Context#add_module_alias

  def find_unique all_hash
    unique = []

    all_hash.each_pair do |full_name, cm|
      unique << cm if full_name == cm.full_name
    end

    unique
  end

  ##
  # Fixes the erroneous <tt>BasicObject < Object</tt> in 1.9.
  #
  # Because we assumed all classes without a stated superclass
  # inherit from Object, we have the above wrong inheritance.
  #
  # We fix BasicObject right away if we are running in a Ruby
  # version >= 1.9.

  def fix_basic_object_inheritance
    basic = classes_hash['BasicObject']
    return unless basic
    basic.superclass = nil
  end

  ##
  # Friendly rendition of #path

  def friendly_path
    case type
    when :gem    then
      parent = File.expand_path '..', @path
      "gem #{File.basename parent}"
    when :home   then '~/.rdoc'
    when :site   then 'ruby site'
    when :system then 'ruby core'
    else @path
    end
  end

  def inspect # :nodoc:
    "#<%s:0x%x %s %p>" % [self.class, object_id, @path, module_names.sort]
  end

  ##
  # Instance methods cache accessor.  Maps a class to an Array of its
  # instance methods (not full name).

  def instance_methods
    @cache[:instance_methods]
  end

  ##
  # Loads all items from this store into memory.  This recreates a
  # documentation tree for use by a generator

  def load_all
    load_cache

    module_names.each do |module_name|
      mod = find_class_or_module(module_name) || load_class(module_name)

      # load method documentation since the loaded class/module does not have
      # it
      loaded_methods = mod.method_list.map do |method|
        load_method module_name, method.full_name
      end

      mod.method_list.replace loaded_methods

      loaded_attributes = mod.attributes.map do |attribute|
        load_method module_name, attribute.full_name
      end

      mod.attributes.replace loaded_attributes
    end

    all_classes_and_modules.each do |mod|
      descendent_re = /^#{mod.full_name}::[^:]+$/

      module_names.each do |name|
        next unless name =~ descendent_re

        descendent = find_class_or_module name

        case descendent
        when RDoc::NormalClass then
          mod.classes_hash[name] = descendent
        when RDoc::NormalModule then
          mod.modules_hash[name] = descendent
        end
      end
    end

    @cache[:pages].each do |page_name|
      page = load_page page_name
      @files_hash[page_name] = page
      @text_files_hash[page_name] = page if page.text?
    end
  end

  ##
  # Loads cache file for this store

  def load_cache
    #orig_enc = @encoding

    File.open cache_path, 'rb' do |io|
      @cache = Marshal.load io.read
    end

    load_enc = @cache[:encoding]

    # TODO this feature will be time-consuming to add:
    # a) Encodings may be incompatible but transcodeable
    # b) Need to warn in the appropriate spots, wherever they may be
    # c) Need to handle cross-cache differences in encodings
    # d) Need to warn when generating into a cache with different encodings
    #
    #if orig_enc and load_enc != orig_enc then
    #  warn "Cached encoding #{load_enc} is incompatible with #{orig_enc}\n" \
    #       "from #{path}/cache.ri" unless
    #    Encoding.compatible? orig_enc, load_enc
    #end

    @encoding = load_enc unless @encoding

    @cache[:pages]                       ||= []
    @cache[:main]                        ||= nil
    @cache[:c_class_variables]           ||= {}
    @cache[:c_singleton_class_variables] ||= {}

    @cache[:c_class_variables].each do |_, map|
      map.each do |variable, name|
        @c_enclosure_names[variable] = name
      end
    end

    @cache
  rescue Errno::ENOENT
  end

  ##
  # Loads ri data for +klass_name+ and hooks it up to this store.

  def load_class klass_name
    obj = load_class_data klass_name

    obj.store = self

    case obj
    when RDoc::NormalClass then
      @classes_hash[klass_name] = obj
    when RDoc::SingleClass then
      @classes_hash[klass_name] = obj
    when RDoc::NormalModule then
      @modules_hash[klass_name] = obj
    end
  end

  ##
  # Loads ri data for +klass_name+

  def load_class_data klass_name
    file = class_file klass_name

    File.open file, 'rb' do |io|
      Marshal.load io.read
    end
  rescue Errno::ENOENT => e
    error = MissingFileError.new(self, file, klass_name)
    error.set_backtrace e.backtrace
    raise error
  end

  ##
  # Loads ri data for +method_name+ in +klass_name+

  def load_method klass_name, method_name
    file = method_file klass_name, method_name

    File.open file, 'rb' do |io|
      obj = Marshal.load io.read
      obj.store = self
      obj.parent =
        find_class_or_module(klass_name) || load_class(klass_name) unless
          obj.parent
      obj
    end
  rescue Errno::ENOENT => e
    error = MissingFileError.new(self, file, klass_name + method_name)
    error.set_backtrace e.backtrace
    raise error
  end

  ##
  # Loads ri data for +page_name+

  def load_page page_name
    file = page_file page_name

    File.open file, 'rb' do |io|
      obj = Marshal.load io.read
      obj.store = self
      obj
    end
  rescue Errno::ENOENT => e
    error = MissingFileError.new(self, file, page_name)
    error.set_backtrace e.backtrace
    raise error
  end

  ##
  # Gets the main page for this RDoc store.  This page is used as the root of
  # the RDoc server.

  def main
    @cache[:main]
  end

  ##
  # Sets the main page for this RDoc store.

  def main= page
    @cache[:main] = page
  end

  ##
  # Converts the variable => ClassModule map +variables+ from a C parser into
  # a variable => class name map.

  def make_variable_map variables
    map = {}

    variables.each { |variable, class_module|
      map[variable] = class_module.full_name
    }

    map
  end

  ##
  # Path to the ri data for +method_name+ in +klass_name+

  def method_file klass_name, method_name
    method_name = method_name.split('::').last
    method_name =~ /#(.*)/
    method_type = $1 ? 'i' : 'c'
    method_name = $1 if $1
    method_name = method_name.gsub(/\W/) { "%%%02x" % $&[0].ord }

    File.join class_path(klass_name), "#{method_name}-#{method_type}.ri"
  end

  ##
  # Modules cache accessor.  An Array of all the module (and class) names in
  # the store.

  def module_names
    @cache[:modules]
  end

  ##
  # Hash of all modules known to RDoc

  def modules_hash
    @modules_hash
  end

  ##
  # Returns the RDoc::TopLevel that is a text file and has the given +name+

  def page name
    @text_files_hash.each_value.find do |file|
      file.page_name == name
    end
  end

  ##
  # Path to the ri data for +page_name+

  def page_file page_name
    file_name = File.basename(page_name).gsub('.', '_')

    File.join @path, File.dirname(page_name), "page-#{file_name}.ri"
  end

  ##
  # Removes from +all_hash+ the contexts that are nodoc or have no content.
  #
  # See RDoc::Context#remove_from_documentation?

  def remove_nodoc all_hash
    all_hash.keys.each do |name|
      context = all_hash[name]
      all_hash.delete(name) if context.remove_from_documentation?
    end
  end

  ##
  # Saves all entries in the store

  def save
    load_cache

    all_classes_and_modules.each do |klass|
      save_class klass

      klass.each_method do |method|
        save_method klass, method
      end

      klass.each_attribute do |attribute|
        save_method klass, attribute
      end
    end

    all_files.each do |file|
      save_page file
    end

    save_cache
  end

  ##
  # Writes the cache file for this store

  def save_cache
    clean_cache_collection @cache[:ancestors]
    clean_cache_collection @cache[:attributes]
    clean_cache_collection @cache[:class_methods]
    clean_cache_collection @cache[:instance_methods]

    @cache[:modules].uniq!
    @cache[:modules].sort!

    @cache[:pages].uniq!
    @cache[:pages].sort!

    @cache[:encoding] = @encoding # this gets set twice due to assert_cache

    @cache[:c_class_variables].merge!           @c_class_variables
    @cache[:c_singleton_class_variables].merge! @c_singleton_class_variables

    return if @dry_run

    File.open cache_path, 'wb' do |io|
      Marshal.dump @cache, io
    end
  end

  ##
  # Writes the ri data for +klass+ (or module)

  def save_class klass
    full_name = klass.full_name

    FileUtils.mkdir_p class_path(full_name) unless @dry_run

    @cache[:modules] << full_name

    path = class_file full_name

    begin
      disk_klass = load_class full_name

      klass = disk_klass.merge klass
    rescue MissingFileError
    end

    # BasicObject has no ancestors
    ancestors = klass.direct_ancestors.compact.map do |ancestor|
      # HACK for classes we don't know about (class X < RuntimeError)
      String === ancestor ? ancestor : ancestor.full_name
    end

    @cache[:ancestors][full_name] ||= []
    @cache[:ancestors][full_name].concat ancestors

    attribute_definitions = klass.attributes.map do |attribute|
      "#{attribute.definition} #{attribute.name}"
    end

    unless attribute_definitions.empty? then
      @cache[:attributes][full_name] ||= []
      @cache[:attributes][full_name].concat attribute_definitions
    end

    to_delete = []

    unless klass.method_list.empty? then
      @cache[:class_methods][full_name]    ||= []
      @cache[:instance_methods][full_name] ||= []

      class_methods, instance_methods =
        klass.method_list.partition { |meth| meth.singleton }

      class_methods    = class_methods.   map { |method| method.name }
      instance_methods = instance_methods.map { |method| method.name }
      attribute_names  = klass.attributes.map { |attr|   attr.name }

      old = @cache[:class_methods][full_name] - class_methods
      to_delete.concat old.map { |method|
        method_file full_name, "#{full_name}::#{method}"
      }

      old = @cache[:instance_methods][full_name] -
        instance_methods - attribute_names
      to_delete.concat old.map { |method|
        method_file full_name, "#{full_name}##{method}"
      }

      @cache[:class_methods][full_name]    = class_methods
      @cache[:instance_methods][full_name] = instance_methods
    end

    return if @dry_run

    FileUtils.rm_f to_delete

    File.open path, 'wb' do |io|
      Marshal.dump klass, io
    end
  end

  ##
  # Writes the ri data for +method+ on +klass+

  def save_method klass, method
    full_name = klass.full_name

    FileUtils.mkdir_p class_path(full_name) unless @dry_run

    cache = if method.singleton then
              @cache[:class_methods]
            else
              @cache[:instance_methods]
            end
    cache[full_name] ||= []
    cache[full_name] << method.name

    return if @dry_run

    File.open method_file(full_name, method.full_name), 'wb' do |io|
      Marshal.dump method, io
    end
  end

  ##
  # Writes the ri data for +page+

  def save_page page
    return unless page.text?

    path = page_file page.full_name

    FileUtils.mkdir_p File.dirname(path) unless @dry_run

    cache[:pages] ||= []
    cache[:pages] << page.full_name

    return if @dry_run

    File.open path, 'wb' do |io|
      Marshal.dump page, io
    end
  end

  ##
  # Source of the contents of this store.
  #
  # For a store from a gem the source is the gem name.  For a store from the
  # home directory the source is "home".  For system ri store (the standard
  # library documentation) the source is"ruby".  For a store from the site
  # ri directory the store is "site".  For other stores the source is the
  # #path.

  def source
    case type
    when :gem    then File.basename File.expand_path '..', @path
    when :home   then 'home'
    when :site   then 'site'
    when :system then 'ruby'
    else @path
    end
  end

  ##
  # Gets the title for this RDoc store.  This is used as the title in each
  # page on the RDoc server

  def title
    @cache[:title]
  end

  ##
  # Sets the title page for this RDoc store.

  def title= title
    @cache[:title] = title
  end

  ##
  # Returns the unique classes discovered by RDoc.
  #
  # ::complete must have been called prior to using this method.

  def unique_classes
    @unique_classes
  end

  ##
  # Returns the unique classes and modules discovered by RDoc.
  # ::complete must have been called prior to using this method.

  def unique_classes_and_modules
    @unique_classes + @unique_modules
  end

  ##
  # Returns the unique modules discovered by RDoc.
  # ::complete must have been called prior to using this method.

  def unique_modules
    @unique_modules
  end

end
PKBH[�刊--2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator.rbnu�[���# frozen_string_literal: true
##
# RDoc uses generators to turn parsed source code in the form of an
# RDoc::CodeObject tree into some form of output.  RDoc comes with the HTML
# generator RDoc::Generator::Darkfish and an ri data generator
# RDoc::Generator::RI.
#
# == Registering a Generator
#
# Generators are registered by calling RDoc::RDoc.add_generator with the class
# of the generator:
#
#   class My::Awesome::Generator
#     RDoc::RDoc.add_generator self
#   end
#
# == Adding Options to +rdoc+
#
# Before option processing in +rdoc+, RDoc::Options will call ::setup_options
# on the generator class with an RDoc::Options instance.  The generator can
# use RDoc::Options#option_parser to add command-line options to the +rdoc+
# tool.  See RDoc::Options@Custom+Options for an example and see OptionParser
# for details on how to add options.
#
# You can extend the RDoc::Options instance with additional accessors for your
# generator.
#
# == Generator Instantiation
#
# After parsing, RDoc::RDoc will instantiate a generator by calling
# #initialize with an RDoc::Store instance and an RDoc::Options instance.
#
# The RDoc::Store instance holds documentation for parsed source code.  In
# RDoc 3 and earlier the RDoc::TopLevel class held this data.  When upgrading
# a generator from RDoc 3 and earlier you should only need to replace
# RDoc::TopLevel with the store instance.
#
# RDoc will then call #generate on the generator instance.  You can use the
# various methods on RDoc::Store and in the RDoc::CodeObject tree to create
# your desired output format.

module RDoc::Generator

  autoload :Markup,   'rdoc/generator/markup'

  autoload :Darkfish,  'rdoc/generator/darkfish'
  autoload :JsonIndex, 'rdoc/generator/json_index'
  autoload :RI,        'rdoc/generator/ri'
  autoload :POT,       'rdoc/generator/pot'

end
PKBH[x�����-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/task.rbnu�[���# frozen_string_literal: true
#--
# Copyright (c) 2003, 2004 Jim Weirich, 2009 Eric Hodel
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++

begin
  gem 'rdoc'
rescue Gem::LoadError
end unless defined?(RDoc)

begin
  gem 'rake'
rescue Gem::LoadError
end unless defined?(Rake)

require 'rdoc'
require 'rake'
require 'rake/tasklib'

##
# RDoc::Task creates the following rake tasks to generate and clean up RDoc
# output:
#
# [rdoc]
#   Main task for this RDoc task.
#
# [clobber_rdoc]
#   Delete all the rdoc files.  This target is automatically added to the main
#   clobber target.
#
# [rerdoc]
#   Rebuild the rdoc files from scratch, even if they are not out of date.
#
# Simple Example:
#
#   require 'rdoc/task'
#
#   RDoc::Task.new do |rdoc|
#     rdoc.main = "README.rdoc"
#     rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb")
#   end
#
# The +rdoc+ object passed to the block is an RDoc::Task object. See the
# attributes list for the RDoc::Task class for available customization options.
#
# == Specifying different task names
#
# You may wish to give the task a different name, such as if you are
# generating two sets of documentation.  For instance, if you want to have a
# development set of documentation including private methods:
#
#   require 'rdoc/task'
#
#   RDoc::Task.new :rdoc_dev do |rdoc|
#     rdoc.main = "README.doc"
#     rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb")
#     rdoc.options << "--all"
#   end
#
# The tasks would then be named :<em>rdoc_dev</em>,
# :clobber_<em>rdoc_dev</em>, and :re<em>rdoc_dev</em>.
#
# If you wish to have completely different task names, then pass a Hash as
# first argument. With the <tt>:rdoc</tt>, <tt>:clobber_rdoc</tt> and
# <tt>:rerdoc</tt> options, you can customize the task names to your liking.
#
# For example:
#
#   require 'rdoc/task'
#
#   RDoc::Task.new(:rdoc => "rdoc", :clobber_rdoc => "rdoc:clean",
#                  :rerdoc => "rdoc:force")
#
# This will create the tasks <tt>:rdoc</tt>, <tt>:rdoc:clean</tt> and
# <tt>:rdoc:force</tt>.

class RDoc::Task < Rake::TaskLib

  ##
  # Name of the main, top level task.  (default is :rdoc)

  attr_accessor :name

  ##
  # Comment markup format.  rdoc, rd and tomdoc are supported.  (default is
  # 'rdoc')

  attr_accessor :markup

  ##
  # Name of directory to receive the html output files. (default is "html")

  attr_accessor :rdoc_dir

  ##
  # Title of RDoc documentation. (defaults to rdoc's default)

  attr_accessor :title

  ##
  # Name of file to be used as the main, top level file of the RDoc. (default
  # is none)

  attr_accessor :main

  ##
  # Name of template to be used by rdoc. (defaults to rdoc's default)

  attr_accessor :template

  ##
  # Name of format generator (<tt>--format</tt>) used by rdoc. (defaults to
  # rdoc's default)

  attr_accessor :generator

  ##
  # List of files to be included in the rdoc generation. (default is [])

  attr_accessor :rdoc_files

  ##
  # Additional list of options to be passed rdoc.  (default is [])

  attr_accessor :options

  ##
  # Whether to run the rdoc process as an external shell (default is false)

  attr_accessor :external

  ##
  # Create an RDoc task with the given name. See the RDoc::Task class overview
  # for documentation.

  def initialize name = :rdoc # :yield: self
    defaults

    check_names name

    @name = name

    yield self if block_given?

    define
  end

  ##
  # Ensures that +names+ only includes names for the :rdoc, :clobber_rdoc and
  # :rerdoc.  If other names are given an ArgumentError is raised.

  def check_names names
    return unless Hash === names

    invalid_options =
      names.keys.map { |k| k.to_sym } - [:rdoc, :clobber_rdoc, :rerdoc]

    unless invalid_options.empty? then
      raise ArgumentError, "invalid options: #{invalid_options.join ', '}"
    end
  end

  ##
  # Task description for the clobber rdoc task or its renamed equivalent

  def clobber_task_description
    "Remove RDoc HTML files"
  end

  ##
  # Sets default task values

  def defaults
    @name = :rdoc
    @rdoc_files = Rake::FileList.new
    @rdoc_dir = 'html'
    @main = nil
    @title = nil
    @template = nil
    @generator = nil
    @options = []
  end

  ##
  # All source is inline now.  This method is deprecated

  def inline_source # :nodoc:
    warn "RDoc::Task#inline_source is deprecated"
    true
  end

  ##
  # All source is inline now.  This method is deprecated

  def inline_source=(value) # :nodoc:
    warn "RDoc::Task#inline_source is deprecated"
  end

  ##
  # Create the tasks defined by this task lib.

  def define
    desc rdoc_task_description
    task rdoc_task_name

    desc rerdoc_task_description
    task rerdoc_task_name => [clobber_task_name, rdoc_task_name]

    desc clobber_task_description
    task clobber_task_name do
      rm_r @rdoc_dir rescue nil
    end

    task :clobber => [clobber_task_name]

    directory @rdoc_dir

    rdoc_target_deps = [
      @rdoc_files,
      Rake.application.rakefile
    ].flatten.compact

    task rdoc_task_name => [rdoc_target]
    file rdoc_target => rdoc_target_deps do
      @before_running_rdoc.call if @before_running_rdoc
      args = option_list + @rdoc_files

      $stderr.puts "rdoc #{args.join ' '}" if Rake.application.options.trace
      RDoc::RDoc.new.document args
    end

    self
  end

  ##
  # List of options that will be supplied to RDoc

  def option_list
    result = @options.dup
    result << "-o"       << @rdoc_dir
    result << "--main"   << main      if main
    result << "--markup" << markup    if markup
    result << "--title"  << title     if title
    result << "-T"       << template  if template
    result << '-f'       << generator if generator
    result
  end

  ##
  # The block passed to this method will be called just before running the
  # RDoc generator. It is allowed to modify RDoc::Task attributes inside the
  # block.

  def before_running_rdoc(&block)
    @before_running_rdoc = block
  end

  ##
  # Task description for the rdoc task or its renamed equivalent

  def rdoc_task_description
    'Build RDoc HTML files'
  end

  ##
  # Task description for the rerdoc task or its renamed description

  def rerdoc_task_description
    "Rebuild RDoc HTML files"
  end

  private

  def rdoc_target
    "#{rdoc_dir}/created.rid"
  end

  def rdoc_task_name
    case name
    when Hash then (name[:rdoc] || "rdoc").to_s
    else           name.to_s
    end
  end

  def clobber_task_name
    case name
    when Hash then (name[:clobber_rdoc] || "clobber_rdoc").to_s
    else           "clobber_#{name}"
    end
  end

  def rerdoc_task_name
    case name
    when Hash then (name[:rerdoc] || "rerdoc").to_s
    else           "re#{name}"
    end
  end

end

# :stopdoc:
module Rake

  ##
  # For backwards compatibility

  RDocTask = RDoc::Task

end
# :startdoc:
PKBH[bb�]]1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/constant.rbnu�[���# frozen_string_literal: true
##
# A constant

class RDoc::Constant < RDoc::CodeObject

  MARSHAL_VERSION = 0 # :nodoc:

  ##
  # Sets the module or class this is constant is an alias for.

  attr_writer :is_alias_for

  ##
  # The constant's name

  attr_accessor :name

  ##
  # The constant's value

  attr_accessor :value

  ##
  # The constant's visibility

  attr_accessor :visibility

  ##
  # Creates a new constant with +name+, +value+ and +comment+

  def initialize(name, value, comment)
    super()

    @name  = name
    @value = value

    @is_alias_for = nil
    @visibility   = :public

    self.comment = comment
  end

  ##
  # Constants are ordered by name

  def <=> other
    return unless self.class === other

    [parent_name, name] <=> [other.parent_name, other.name]
  end

  ##
  # Constants are equal when their #parent and #name is the same

  def == other
    self.class == other.class and
      @parent == other.parent and
      @name == other.name
  end

  ##
  # A constant is documented if it has a comment, or is an alias
  # for a documented class or module.

  def documented?
    return true if super
    return false unless @is_alias_for
    case @is_alias_for
    when String then
      found = @store.find_class_or_module @is_alias_for
      return false unless found
      @is_alias_for = found
    end
    @is_alias_for.documented?
  end

  ##
  # Full constant name including namespace

  def full_name
    @full_name ||= "#{parent_name}::#{@name}"
  end

  ##
  # The module or class this constant is an alias for

  def is_alias_for
    case @is_alias_for
    when String then
      found = @store.find_class_or_module @is_alias_for
      @is_alias_for = found if found
      @is_alias_for
    else
      @is_alias_for
    end
  end

  def inspect # :nodoc:
    "#<%s:0x%x %s::%s>" % [
      self.class, object_id,
      parent_name, @name,
    ]
  end

  ##
  # Dumps this Constant for use by ri.  See also #marshal_load

  def marshal_dump
    alias_name = case found = is_alias_for
                 when RDoc::CodeObject then found.full_name
                 else                       found
                 end

    [ MARSHAL_VERSION,
      @name,
      full_name,
      @visibility,
      alias_name,
      parse(@comment),
      @file.relative_name,
      parent.name,
      parent.class,
      section.title,
    ]
  end

  ##
  # Loads this Constant from +array+.  For a loaded Constant the following
  # methods will return cached values:
  #
  # * #full_name
  # * #parent_name

  def marshal_load array
    initialize array[1], nil, array[5]

    @full_name     = array[2]
    @visibility    = array[3] || :public
    @is_alias_for  = array[4]
    #                      5 handled above
    #                      6 handled below
    @parent_name   = array[7]
    @parent_class  = array[8]
    @section_title = array[9]

    @file = RDoc::TopLevel.new array[6]
  end

  ##
  # Path to this constant for use with HTML generator output.

  def path
    "#{@parent.path}##{@name}"
  end

  def pretty_print q # :nodoc:
    q.group 2, "[#{self.class.name} #{full_name}", "]" do
      unless comment.empty? then
        q.breakable
        q.text "comment:"
        q.breakable
        q.pp @comment
      end
    end
  end

  ##
  # Sets the store for this class or module and its contained code objects.

  def store= store
    super

    @file = @store.add_file @file.full_name if @file
  end

  def to_s # :nodoc:
    parent_name = parent ? parent.full_name : '(unknown)'
    if is_alias_for
      "constant #{parent_name}::#@name -> #{is_alias_for}"
    else
      "constant #{parent_name}::#@name"
    end
  end

end

PKBH[#��@@4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/quiet.rbnu�[���# frozen_string_literal: true
##
# Stats printer that prints nothing

class RDoc::Stats::Quiet

  ##
  # Creates a new Quiet that will print nothing

  def initialize num_files
    @num_files = num_files
  end

  ##
  # Prints a message at the beginning of parsing

  def begin_adding(*) end

  ##
  # Prints when an alias is added

  def print_alias(*) end

  ##
  # Prints when an attribute is added

  def print_attribute(*) end

  ##
  # Prints when a class is added

  def print_class(*) end

  ##
  # Prints when a constant is added

  def print_constant(*) end

  ##
  # Prints when a file is added

  def print_file(*) end

  ##
  # Prints when a method is added

  def print_method(*) end

  ##
  # Prints when a module is added

  def print_module(*) end

  ##
  # Prints when RDoc is done

  def done_adding(*) end

end

PKBH[�
����6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/verbose.rbnu�[���# frozen_string_literal: true
##
# Stats printer that prints everything documented, including the documented
# status

class RDoc::Stats::Verbose < RDoc::Stats::Normal

  ##
  # Returns a marker for RDoc::CodeObject +co+ being undocumented

  def nodoc co
    " (undocumented)" unless co.documented?
  end

  def print_alias as # :nodoc:
    puts "    alias #{as.new_name} #{as.old_name}#{nodoc as}"
  end

  def print_attribute attribute # :nodoc:
    puts "    #{attribute.definition} #{attribute.name}#{nodoc attribute}"
  end

  def print_class(klass) # :nodoc:
    puts "  class #{klass.full_name}#{nodoc klass}"
  end

  def print_constant(constant) # :nodoc:
    puts "    #{constant.name}#{nodoc constant}"
  end

  def print_file(files_so_far, file) # :nodoc:
    super
    puts
  end

  def print_method(method) # :nodoc:
    puts "    #{method.singleton ? '::' : '#'}#{method.name}#{nodoc method}"
  end

  def print_module(mod) # :nodoc:
    puts "  module #{mod.full_name}#{nodoc mod}"
  end

end


PKBH[9)-$005share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/normal.rbnu�[���# frozen_string_literal: true
begin
  require 'io/console/size'
rescue LoadError
  # for JRuby
  require 'io/console'
end

##
# Stats printer that prints just the files being documented with a progress
# bar

class RDoc::Stats::Normal < RDoc::Stats::Quiet

  def begin_adding # :nodoc:
    puts "Parsing sources..."
    @last_width = 0
  end

  ##
  # Prints a file with a progress bar

  def print_file files_so_far, filename
    progress_bar = sprintf("%3d%% [%2d/%2d]  ",
                           100 * files_so_far / @num_files,
                           files_so_far,
                           @num_files)

    if $stdout.tty?
      # Print a progress bar, but make sure it fits on a single line. Filename
      # will be truncated if necessary.
      size = IO.respond_to?(:console_size) ? IO.console_size : IO.console.winsize
      terminal_width = size[1].to_i.nonzero? || 80
      max_filename_size = (terminal_width - progress_bar.size) - 1

      if filename.size > max_filename_size then
        # Turn "some_long_filename.rb" to "...ong_filename.rb"
        filename = filename[(filename.size - max_filename_size) .. -1]
        filename[0..2] = "..."
      end

      # Clean the line with whitespaces so that leftover output from the
      # previous line doesn't show up.
      $stdout.print("\r\e[K") if @last_width && @last_width > 0
      @last_width = progress_bar.size + filename.size
      term = "\r"
    else
      term = "\n"
    end
    $stdout.print(progress_bar, filename, term)
    $stdout.flush
  end

  def done_adding # :nodoc:
    puts
  end

end
PKBH[���$$@share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html_crossref.rbnu�[���# frozen_string_literal: true
##
# Subclass of the RDoc::Markup::ToHtml class that supports looking up method
# names, classes, etc to create links.  RDoc::CrossReference is used to
# generate those links based on the current context.

class RDoc::Markup::ToHtmlCrossref < RDoc::Markup::ToHtml

  # :stopdoc:
  ALL_CROSSREF_REGEXP = RDoc::CrossReference::ALL_CROSSREF_REGEXP
  CLASS_REGEXP_STR    = RDoc::CrossReference::CLASS_REGEXP_STR
  CROSSREF_REGEXP     = RDoc::CrossReference::CROSSREF_REGEXP
  METHOD_REGEXP_STR   = RDoc::CrossReference::METHOD_REGEXP_STR
  # :startdoc:

  ##
  # RDoc::CodeObject for generating references

  attr_accessor :context

  ##
  # Should we show '#' characters on method references?

  attr_accessor :show_hash

  ##
  # Creates a new crossref resolver that generates links relative to +context+
  # which lives at +from_path+ in the generated files.  '#' characters on
  # references are removed unless +show_hash+ is true.  Only method names
  # preceded by '#' or '::' are linked, unless +hyperlink_all+ is true.

  def initialize(options, from_path, context, markup = nil)
    raise ArgumentError, 'from_path cannot be nil' if from_path.nil?

    super options, markup

    @context       = context
    @from_path     = from_path
    @hyperlink_all = @options.hyperlink_all
    @show_hash     = @options.show_hash

    crossref_re = @hyperlink_all ? ALL_CROSSREF_REGEXP : CROSSREF_REGEXP
    @markup.add_regexp_handling crossref_re, :CROSSREF

    @cross_reference = RDoc::CrossReference.new @context
  end

  ##
  # Creates a link to the reference +name+ if the name exists.  If +text+ is
  # given it is used as the link text, otherwise +name+ is used.

  def cross_reference name, text = nil, code = true
    lookup = name

    name = name[1..-1] unless @show_hash if name[0, 1] == '#'

    if name =~ /(.*[^#:])@/
      text ||= "#{CGI.unescape $'} at <code>#{$1}</code>"
      code = false
    else
      text ||= name
    end

    link lookup, text, code
  end

  ##
  # We're invoked when any text matches the CROSSREF pattern.  If we find the
  # corresponding reference, generate a link.  If the name we're looking for
  # contains no punctuation, we look for it up the module/class chain.  For
  # example, ToHtml is found, even without the <tt>RDoc::Markup::</tt> prefix,
  # because we look for it in module Markup first.

  def handle_regexp_CROSSREF(target)
    name = target.text

    return name if name =~ /@[\w-]+\.[\w-]/ # labels that look like emails

    unless @hyperlink_all then
      # This ensures that words entirely consisting of lowercase letters will
      # not have cross-references generated (to suppress lots of erroneous
      # cross-references to "new" in text, for instance)
      return name if name =~ /\A[a-z]*\z/
    end

    cross_reference name
  end

  ##
  # Handles <tt>rdoc-ref:</tt> scheme links and allows RDoc::Markup::ToHtml to
  # handle other schemes.

  def handle_regexp_HYPERLINK target
    return cross_reference $' if target.text =~ /\Ardoc-ref:/

    super
  end

  ##
  # +target+ is an rdoc-schemed link that will be converted into a hyperlink.
  # For the rdoc-ref scheme the cross-reference will be looked up and the
  # given name will be used.
  #
  # All other contents are handled by
  # {the superclass}[rdoc-ref:RDoc::Markup::ToHtml#handle_regexp_RDOCLINK]

  def handle_regexp_RDOCLINK target
    url = target.text

    case url
    when /\Ardoc-ref:/ then
      cross_reference $'
    else
      super
    end
  end

  ##
  # Generates links for <tt>rdoc-ref:</tt> scheme URLs and allows
  # RDoc::Markup::ToHtml to handle other schemes.

  def gen_url url, text
    return super unless url =~ /\Ardoc-ref:/

    name = $'
    cross_reference name, text, name == text
  end

  ##
  # Creates an HTML link to +name+ with the given +text+.

  def link name, text, code = true
    if name =~ /(.*[^#:])@/ then
      name = $1
      label = $'
    end

    ref = @cross_reference.resolve name, text

    case ref
    when String then
      ref
    else
      path = ref.as_href @from_path

      if code and RDoc::CodeObject === ref and !(RDoc::TopLevel === ref)
        text = "<code>#{text}</code>"
      end

      if path =~ /#/ then
        path << "-label-#{label}"
      elsif ref.sections and
            ref.sections.any? { |section| label == section.title } then
        path << "##{label}"
      else
        if ref.respond_to?(:aref)
          path << "##{ref.aref}-label-#{label}"
        else
          path << "#label-#{label}"
        end
      end if label

      "<a href=\"#{path}\">#{text}</a>"
    end
  end

end

PKBH[�e�M��?share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html_snippet.rbnu�[���# frozen_string_literal: true
##
# Outputs RDoc markup as paragraphs with inline markup only.

class RDoc::Markup::ToHtmlSnippet < RDoc::Markup::ToHtml

  ##
  # After this many characters the input will be cut off.

  attr_reader :character_limit

  ##
  # The number of characters seen so far.

  attr_reader :characters # :nodoc:

  ##
  # The attribute bitmask

  attr_reader :mask

  ##
  # After this many paragraphs the input will be cut off.

  attr_reader :paragraph_limit

  ##
  # Count of paragraphs found

  attr_reader :paragraphs

  ##
  # Creates a new ToHtmlSnippet formatter that will cut off the input on the
  # next word boundary after the given number of +characters+ or +paragraphs+
  # of text have been encountered.

  def initialize options, characters = 100, paragraphs = 3, markup = nil
    super options, markup

    @character_limit = characters
    @paragraph_limit = paragraphs

    @characters = 0
    @mask       = 0
    @paragraphs = 0

    @markup.add_regexp_handling RDoc::CrossReference::CROSSREF_REGEXP, :CROSSREF
  end

  ##
  # Adds +heading+ to the output as a paragraph

  def accept_heading heading
    @res << "<p>#{to_html heading.text}\n"

    add_paragraph
  end

  ##
  # Raw sections are untrusted and ignored

  alias accept_raw ignore

  ##
  # Rules are ignored

  alias accept_rule ignore

  def accept_paragraph paragraph
    para = @in_list_entry.last || "<p>"

    text = paragraph.text @hard_break

    @res << "#{para}#{to_html text}\n"

    add_paragraph
  end

  ##
  # Finishes consumption of +list_item+

  def accept_list_item_end list_item
  end

  ##
  # Prepares the visitor for consuming +list_item+

  def accept_list_item_start list_item
    @res << list_item_start(list_item, @list.last)
  end

  ##
  # Prepares the visitor for consuming +list+

  def accept_list_start list
    @list << list.type
    @res << html_list_name(list.type, true)
    @in_list_entry.push ''
  end

  ##
  # Adds +verbatim+ to the output

  def accept_verbatim verbatim
    throw :done if @characters >= @character_limit
    input = verbatim.text.rstrip

    text = truncate input
    text << ' ...' unless text == input

    super RDoc::Markup::Verbatim.new text

    add_paragraph
  end

  ##
  # Prepares the visitor for HTML snippet generation

  def start_accepting
    super

    @characters = 0
  end

  ##
  # Removes escaping from the cross-references in +target+

  def handle_regexp_CROSSREF target
    target.text.sub(/\A\\/, '')
  end

  ##
  # +target+ is a <code><br></code>

  def handle_regexp_HARD_BREAK target
    @characters -= 4
    '<br>'
  end

  ##
  # Lists are paragraphs, but notes and labels have a separator

  def list_item_start list_item, list_type
    throw :done if @characters >= @character_limit

    case list_type
    when :BULLET, :LALPHA, :NUMBER, :UALPHA then
      "<p>"
    when :LABEL, :NOTE then
      labels = Array(list_item.label).map do |label|
        to_html label
      end.join ', '

      labels << " &mdash; " unless labels.empty?

      start = "<p>#{labels}"
      @characters += 1 # try to include the label
      start
    else
      raise RDoc::Error, "Invalid list type: #{list_type.inspect}"
    end
  end

  ##
  # Returns just the text of +link+, +url+ is only used to determine the link
  # type.

  def gen_url url, text
    if url =~ /^rdoc-label:([^:]*)(?::(.*))?/ then
      type = "link"
    elsif url =~ /([A-Za-z]+):(.*)/ then
      type = $1
    else
      type = "http"
    end

    if (type == "http" or type == "https" or type == "link") and
       url =~ /\.(gif|png|jpg|jpeg|bmp)$/ then
      ''
    else
      text.sub(%r%^#{type}:/*%, '')
    end
  end

  ##
  # In snippets, there are no lists

  def html_list_name list_type, open_tag
    ''
  end

  ##
  # Throws +:done+ when paragraph_limit paragraphs have been encountered

  def add_paragraph
    @paragraphs += 1

    throw :done if @paragraphs >= @paragraph_limit
  end

  ##
  # Marks up +content+

  def convert content
    catch :done do
      return super
    end

    end_accepting
  end

  ##
  # Converts flow items +flow+

  def convert_flow flow
    throw :done if @characters >= @character_limit

    res = []
    @mask = 0

    flow.each do |item|
      case item
      when RDoc::Markup::AttrChanger then
        off_tags res, item
        on_tags  res, item
      when String then
        text = convert_string item
        res << truncate(text)
      when RDoc::Markup::RegexpHandling then
        text = convert_regexp_handling item
        res << truncate(text)
      else
        raise "Unknown flow element: #{item.inspect}"
      end

      if @characters >= @character_limit then
        off_tags res, RDoc::Markup::AttrChanger.new(0, @mask)
        break
      end
    end

    res << ' ...' if @characters >= @character_limit

    res.join
  end

  ##
  # Maintains a bitmask to allow HTML elements to be closed properly.  See
  # RDoc::Markup::Formatter.

  def on_tags res, item
    @mask ^= item.turn_on

    super
  end

  ##
  # Maintains a bitmask to allow HTML elements to be closed properly.  See
  # RDoc::Markup::Formatter.

  def off_tags res, item
    @mask ^= item.turn_off

    super
  end

  ##
  # Truncates +text+ at the end of the first word after the character_limit.

  def truncate text
    length = text.length
    characters = @characters
    @characters += length

    return text if @characters < @character_limit

    remaining = @character_limit - characters

    text =~ /\A(.{#{remaining},}?)(\s|$)/m # TODO word-break instead of \s?

    $1
  end

end

PKBH[ʘw�		:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_tt_only.rbnu�[���# frozen_string_literal: true
##
# Extracts sections of text enclosed in plus, tt or code.  Used to discover
# undocumented parameters.

class RDoc::Markup::ToTtOnly < RDoc::Markup::Formatter

  ##
  # Stack of list types

  attr_reader :list_type

  ##
  # Output accumulator

  attr_reader :res

  ##
  # Creates a new tt-only formatter.

  def initialize markup = nil
    super nil, markup

    add_tag :TT, nil, nil
  end

  ##
  # Adds tts from +block_quote+ to the output

  def accept_block_quote block_quote
    tt_sections block_quote.text
  end

  ##
  # Pops the list type for +list+ from #list_type

  def accept_list_end list
    @list_type.pop
  end

  ##
  # Pushes the list type for +list+ onto #list_type

  def accept_list_start list
    @list_type << list.type
  end

  ##
  # Prepares the visitor for consuming +list_item+

  def accept_list_item_start list_item
    case @list_type.last
    when :NOTE, :LABEL then
      Array(list_item.label).map do |label|
        tt_sections label
      end.flatten
    end
  end

  ##
  # Adds +paragraph+ to the output

  def accept_paragraph paragraph
    tt_sections(paragraph.text)
  end

  ##
  # Does nothing to +markup_item+ because it doesn't have any user-built
  # content

  def do_nothing markup_item
  end

  alias accept_blank_line    do_nothing # :nodoc:
  alias accept_heading       do_nothing # :nodoc:
  alias accept_list_item_end do_nothing # :nodoc:
  alias accept_raw           do_nothing # :nodoc:
  alias accept_rule          do_nothing # :nodoc:
  alias accept_verbatim      do_nothing # :nodoc:

  ##
  # Extracts tt sections from +text+

  def tt_sections text
    flow = @am.flow text.dup

    flow.each do |item|
      case item
      when String then
        @res << item if in_tt?
      when RDoc::Markup::AttrChanger then
        off_tags res, item
        on_tags res, item
      when RDoc::Markup::RegexpHandling then
        @res << convert_regexp_handling(item) if in_tt? # TODO can this happen?
      else
        raise "Unknown flow element: #{item.inspect}"
      end
    end

    res
  end

  ##
  # Returns an Array of items that were wrapped in plus, tt or code.

  def end_accepting
    @res.compact
  end

  ##
  # Prepares the visitor for gathering tt sections

  def start_accepting
    @res = []

    @list_type = []
  end

end

PKBH[�F�VV8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_label.rbnu�[���# frozen_string_literal: true
require 'cgi'

##
# Creates HTML-safe labels suitable for use in id attributes.  Tidylinks are
# converted to their link part and cross-reference links have the suppression
# marks removed (\\SomeClass is converted to SomeClass).

class RDoc::Markup::ToLabel < RDoc::Markup::Formatter

  attr_reader :res # :nodoc:

  ##
  # Creates a new formatter that will output HTML-safe labels

  def initialize markup = nil
    super nil, markup

    @markup.add_regexp_handling RDoc::CrossReference::CROSSREF_REGEXP, :CROSSREF
    @markup.add_regexp_handling(/(((\{.*?\})|\b\S+?)\[\S+?\])/, :TIDYLINK)

    add_tag :BOLD, '', ''
    add_tag :TT,   '', ''
    add_tag :EM,   '', ''

    @res = []
  end

  ##
  # Converts +text+ to an HTML-safe label

  def convert text
    label = convert_flow @am.flow text

    CGI.escape(label).gsub('%', '-').sub(/^-/, '')
  end

  ##
  # Converts the CROSSREF +target+ to plain text, removing the suppression
  # marker, if any

  def handle_regexp_CROSSREF target
    text = target.text

    text.sub(/^\\/, '')
  end

  ##
  # Converts the TIDYLINK +target+ to just the text part

  def handle_regexp_TIDYLINK target
    text = target.text

    return text unless text =~ /\{(.*?)\}\[(.*?)\]/ or text =~ /(\S+)\[(.*?)\]/

    $1
  end

  alias accept_blank_line         ignore
  alias accept_block_quote        ignore
  alias accept_heading            ignore
  alias accept_list_end           ignore
  alias accept_list_item_end      ignore
  alias accept_list_item_start    ignore
  alias accept_list_start         ignore
  alias accept_paragraph          ignore
  alias accept_raw                ignore
  alias accept_rule               ignore
  alias accept_verbatim           ignore
  alias end_accepting             ignore
  alias handle_regexp_HARD_BREAK  ignore
  alias start_accepting           ignore

end

PKBH[	7>?��Dshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_table_of_contents.rbnu�[���# frozen_string_literal: true
##
# Extracts just the RDoc::Markup::Heading elements from a
# RDoc::Markup::Document to help build a table of contents

class RDoc::Markup::ToTableOfContents < RDoc::Markup::Formatter

  @to_toc = nil

  ##
  # Singleton for table-of-contents generation

  def self.to_toc
    @to_toc ||= new
  end

  ##
  # Output accumulator

  attr_reader :res

  ##
  # Omits headings with a level less than the given level.

  attr_accessor :omit_headings_below

  def initialize # :nodoc:
    super nil

    @omit_headings_below = nil
  end

  ##
  # Adds +document+ to the output, using its heading cutoff if present

  def accept_document document
    @omit_headings_below = document.omit_headings_below

    super
  end

  ##
  # Adds +heading+ to the table of contents

  def accept_heading heading
    @res << heading unless suppressed? heading
  end

  ##
  # Returns the table of contents

  def end_accepting
    @res
  end

  ##
  # Prepares the visitor for text generation

  def start_accepting
    @omit_headings_below = nil
    @res = []
  end

  ##
  # Returns true if +heading+ is below the display threshold

  def suppressed? heading
    return false unless @omit_headings_below

    heading.level > @omit_headings_below
  end

  # :stopdoc:
  alias accept_block_quote     ignore
  alias accept_raw             ignore
  alias accept_rule            ignore
  alias accept_blank_line      ignore
  alias accept_paragraph       ignore
  alias accept_verbatim        ignore
  alias accept_list_end        ignore
  alias accept_list_item_start ignore
  alias accept_list_item_end   ignore
  alias accept_list_end_bullet ignore
  alias accept_list_start      ignore
  # :startdoc:

end

PKBH[��<��8�86share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/parser.rbnu�[���# frozen_string_literal: true
require 'strscan'

##
# A recursive-descent parser for RDoc markup.
#
# The parser tokenizes an input string then parses the tokens into a Document.
# Documents can be converted into output formats by writing a visitor like
# RDoc::Markup::ToHTML.
#
# The parser only handles the block-level constructs Paragraph, List,
# ListItem, Heading, Verbatim, BlankLine, Rule and BlockQuote.
# Inline markup such as <tt>\+blah\+</tt> is handled separately by
# RDoc::Markup::AttributeManager.
#
# To see what markup the Parser implements read RDoc.  To see how to use
# RDoc markup to format text in your program read RDoc::Markup.

class RDoc::Markup::Parser

  include RDoc::Text

  ##
  # List token types

  LIST_TOKENS = [
    :BULLET,
    :LABEL,
    :LALPHA,
    :NOTE,
    :NUMBER,
    :UALPHA,
  ]

  ##
  # Parser error subclass

  class Error < RuntimeError; end

  ##
  # Raised when the parser is unable to handle the given markup

  class ParseError < Error; end

  ##
  # Enables display of debugging information

  attr_accessor :debug

  ##
  # Token accessor

  attr_reader :tokens

  ##
  # Parses +str+ into a Document.
  #
  # Use RDoc::Markup#parse instead of this method.

  def self.parse str
    parser = new
    parser.tokenize str
    doc = RDoc::Markup::Document.new
    parser.parse doc
  end

  ##
  # Returns a token stream for +str+, for testing

  def self.tokenize str
    parser = new
    parser.tokenize str
    parser.tokens
  end

  ##
  # Creates a new Parser.  See also ::parse

  def initialize
    @binary_input   = nil
    @current_token  = nil
    @debug          = false
    @s              = nil
    @tokens         = []
  end

  ##
  # Builds a Heading of +level+

  def build_heading level
    type, text, = get

    text = case type
           when :TEXT then
             skip :NEWLINE
             text
           else
             unget
             ''
           end

    RDoc::Markup::Heading.new level, text
  end

  ##
  # Builds a List flush to +margin+

  def build_list margin
    p :list_start => margin if @debug

    list = RDoc::Markup::List.new
    label = nil

    until @tokens.empty? do
      type, data, column, = get

      case type
      when *LIST_TOKENS then
        if column < margin || (list.type && list.type != type) then
          unget
          break
        end

        list.type = type
        peek_type, _, column, = peek_token

        case type
        when :NOTE, :LABEL then
          label = [] unless label

          if peek_type == :NEWLINE then
            # description not on the same line as LABEL/NOTE
            # skip the trailing newline & any blank lines below
            while peek_type == :NEWLINE
              get
              peek_type, _, column, = peek_token
            end

            # we may be:
            #   - at end of stream
            #   - at a column < margin:
            #         [text]
            #       blah blah blah
            #   - at the same column, but with a different type of list item
            #       [text]
            #       * blah blah
            #   - at the same column, with the same type of list item
            #       [one]
            #       [two]
            # In all cases, we have an empty description.
            # In the last case only, we continue.
            if peek_type.nil? || column < margin then
              empty = true
            elsif column == margin then
              case peek_type
              when type
                empty = :continue
              when *LIST_TOKENS
                empty = true
              else
                empty = false
              end
            else
              empty = false
            end

            if empty then
              label << data
              next if empty == :continue
              break
            end
          end
        else
          data = nil
        end

        if label then
          data = label << data
          label = nil
        end

        list_item = RDoc::Markup::ListItem.new data
        parse list_item, column
        list << list_item

      else
        unget
        break
      end
    end

    p :list_end => margin if @debug

    if list.empty? then
      return nil unless label
      return nil unless [:LABEL, :NOTE].include? list.type

      list_item = RDoc::Markup::ListItem.new label, RDoc::Markup::BlankLine.new
      list << list_item
    end

    list
  end

  ##
  # Builds a Paragraph that is flush to +margin+

  def build_paragraph margin
    p :paragraph_start => margin if @debug

    paragraph = RDoc::Markup::Paragraph.new

    until @tokens.empty? do
      type, data, column, = get

      if type == :TEXT and column == margin then
        paragraph << data

        break if peek_token.first == :BREAK

        data << ' ' if skip :NEWLINE
      else
        unget
        break
      end
    end

    paragraph.parts.last.sub!(/ \z/, '') # cleanup

    p :paragraph_end => margin if @debug

    paragraph
  end

  ##
  # Builds a Verbatim that is indented from +margin+.
  #
  # The verbatim block is shifted left (the least indented lines start in
  # column 0).  Each part of the verbatim is one line of text, always
  # terminated by a newline.  Blank lines always consist of a single newline
  # character, and there is never a single newline at the end of the verbatim.

  def build_verbatim margin
    p :verbatim_begin => margin if @debug
    verbatim = RDoc::Markup::Verbatim.new

    min_indent = nil
    generate_leading_spaces = true
    line = ''.dup

    until @tokens.empty? do
      type, data, column, = get

      if type == :NEWLINE then
        line << data
        verbatim << line
        line = ''.dup
        generate_leading_spaces = true
        next
      end

      if column <= margin
        unget
        break
      end

      if generate_leading_spaces then
        indent = column - margin
        line << ' ' * indent
        min_indent = indent if min_indent.nil? || indent < min_indent
        generate_leading_spaces = false
      end

      case type
      when :HEADER then
        line << '=' * data
        _, _, peek_column, = peek_token
        peek_column ||= column + data
        indent = peek_column - column - data
        line << ' ' * indent
      when :RULE then
        width = 2 + data
        line << '-' * width
        _, _, peek_column, = peek_token
        peek_column ||= column + width
        indent = peek_column - column - width
        line << ' ' * indent
      when :BREAK, :TEXT then
        line << data
      else # *LIST_TOKENS
        list_marker = case type
                      when :BULLET then data
                      when :LABEL  then "[#{data}]"
                      when :NOTE   then "#{data}::"
                      else # :LALPHA, :NUMBER, :UALPHA
                        "#{data}."
                      end
        line << list_marker
        peek_type, _, peek_column = peek_token
        unless peek_type == :NEWLINE then
          peek_column ||= column + list_marker.length
          indent = peek_column - column - list_marker.length
          line << ' ' * indent
        end
      end

    end

    verbatim << line << "\n" unless line.empty?
    verbatim.parts.each { |p| p.slice!(0, min_indent) unless p == "\n" } if min_indent > 0
    verbatim.normalize

    p :verbatim_end => margin if @debug

    verbatim
  end

  ##
  # Pulls the next token from the stream.

  def get
    @current_token = @tokens.shift
    p :get => @current_token if @debug
    @current_token
  end

  ##
  # Parses the tokens into an array of RDoc::Markup::XXX objects,
  # and appends them to the passed +parent+ RDoc::Markup::YYY object.
  #
  # Exits at the end of the token stream, or when it encounters a token
  # in a column less than +indent+ (unless it is a NEWLINE).
  #
  # Returns +parent+.

  def parse parent, indent = 0
    p :parse_start => indent if @debug

    until @tokens.empty? do
      type, data, column, = get

      case type
      when :BREAK then
        parent << RDoc::Markup::BlankLine.new
        skip :NEWLINE, false
        next
      when :NEWLINE then
        # trailing newlines are skipped below, so this is a blank line
        parent << RDoc::Markup::BlankLine.new
        skip :NEWLINE, false
        next
      end

      # indentation change: break or verbatim
      if column < indent then
        unget
        break
      elsif column > indent then
        unget
        parent << build_verbatim(indent)
        next
      end

      # indentation is the same
      case type
      when :HEADER then
        parent << build_heading(data)
      when :RULE then
        parent << RDoc::Markup::Rule.new(data)
        skip :NEWLINE
      when :TEXT then
        unget
        parse_text parent, indent
      when :BLOCKQUOTE then
        type, _, column = get
        if type == :NEWLINE
          type, _, column = get
        end
        unget if type
        bq = RDoc::Markup::BlockQuote.new
        p :blockquote_start => [data, column] if @debug
        parse bq, column
        p :blockquote_end => indent if @debug
        parent << bq
      when *LIST_TOKENS then
        unget
        parent << build_list(indent)
      else
        type, data, column, line = @current_token
        raise ParseError, "Unhandled token #{type} (#{data.inspect}) at #{line}:#{column}"
      end
    end

    p :parse_end => indent if @debug

    parent

  end

  ##
  # Small hook that is overridden by RDoc::TomDoc

  def parse_text parent, indent # :nodoc:
    parent << build_paragraph(indent)
  end

  ##
  # Returns the next token on the stream without modifying the stream

  def peek_token
    token = @tokens.first || []
    p :peek => token if @debug
    token
  end

  ##
  # A simple wrapper of StringScanner that is aware of the current column and lineno

  class MyStringScanner
    def initialize(input)
      @line = @column = 0
      @s = StringScanner.new input
    end

    def scan(re)
      ret = @s.scan(re)
      @column += ret.length if ret
      ret
    end

    def unscan(s)
      @s.pos -= s.bytesize
      @column -= s.length
    end

    def pos
      [@column, @line]
    end

    def newline!
      @column = 0
      @line += 1
    end

    def eos?
      @s.eos?
    end

    def matched
      @s.matched
    end

    def [](i)
      @s[i]
    end
  end

  ##
  # Creates the StringScanner

  def setup_scanner input
    @s = MyStringScanner.new input
  end

  ##
  # Skips the next token if its type is +token_type+.
  #
  # Optionally raises an error if the next token is not of the expected type.

  def skip token_type, error = true
    type, = get
    return unless type # end of stream
    return @current_token if token_type == type
    unget
    raise ParseError, "expected #{token_type} got #{@current_token.inspect}" if error
  end

  ##
  # Turns text +input+ into a stream of tokens

  def tokenize input
    setup_scanner input

    until @s.eos? do
      pos = @s.pos

      # leading spaces will be reflected by the column of the next token
      # the only thing we loose are trailing spaces at the end of the file
      next if @s.scan(/ +/)

      # note: after BULLET, LABEL, etc.,
      # indent will be the column of the next non-newline token

      @tokens << case
                 # [CR]LF => :NEWLINE
                 when @s.scan(/\r?\n/) then
                   token = [:NEWLINE, @s.matched, *pos]
                   @s.newline!
                   token
                 # === text => :HEADER then :TEXT
                 when @s.scan(/(=+)(\s*)/) then
                   level = @s[1].length
                   header = [:HEADER, level, *pos]

                   if @s[2] =~ /^\r?\n/ then
                     @s.unscan(@s[2])
                     header
                   else
                     pos = @s.pos
                     @s.scan(/.*/)
                     @tokens << header
                     [:TEXT, @s.matched.sub(/\r$/, ''), *pos]
                   end
                 # --- (at least 3) and nothing else on the line => :RULE
                 when @s.scan(/(-{3,}) *\r?$/) then
                   [:RULE, @s[1].length - 2, *pos]
                 # * or - followed by white space and text => :BULLET
                 when @s.scan(/([*-]) +(\S)/) then
                   @s.unscan(@s[2])
                   [:BULLET, @s[1], *pos]
                 # A. text, a. text, 12. text => :UALPHA, :LALPHA, :NUMBER
                 when @s.scan(/([a-z]|\d+)\. +(\S)/i) then
                   # FIXME if tab(s), the column will be wrong
                   # either support tabs everywhere by first expanding them to
                   # spaces, or assume that they will have been replaced
                   # before (and provide a check for that at least in debug
                   # mode)
                   list_label = @s[1]
                   @s.unscan(@s[2])
                   list_type =
                     case list_label
                     when /[a-z]/ then :LALPHA
                     when /[A-Z]/ then :UALPHA
                     when /\d/    then :NUMBER
                     else
                       raise ParseError, "BUG token #{list_label}"
                     end
                   [list_type, list_label, *pos]
                 # [text] followed by spaces or end of line => :LABEL
                 when @s.scan(/\[(.*?)\]( +|\r?$)/) then
                   [:LABEL, @s[1], *pos]
                 # text:: followed by spaces or end of line => :NOTE
                 when @s.scan(/(.*?)::( +|\r?$)/) then
                   [:NOTE, @s[1], *pos]
                 # >>> followed by end of line => :BLOCKQUOTE
                 when @s.scan(/>>> *(\w+)?$/) then
                   [:BLOCKQUOTE, @s[1], *pos]
                 # anything else: :TEXT
                 else
                   @s.scan(/(.*?)(  )?\r?$/)
                   token = [:TEXT, @s[1], *pos]

                   if @s[2] then
                     @tokens << token
                     [:BREAK, @s[2], pos[0] + @s[1].length, pos[1]]
                   else
                     token
                   end
                 end
    end

    self
  end

  ##
  # Returns the current token to the token stream

  def unget
    token = @current_token
    p :unget => token if @debug
    raise Error, 'too many #ungets' if token == @tokens.first
    @tokens.unshift token if token
  end

end
PKBH[���;;4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/rule.rbnu�[���# frozen_string_literal: true
##
# A horizontal rule with a weight

class RDoc::Markup::Rule < Struct.new :weight

  ##
  # Calls #accept_rule on +visitor+

  def accept visitor
    visitor.accept_rule self
  end

  def pretty_print q # :nodoc:
    q.group 2, '[rule:', ']' do
      q.pp weight
    end
  end

end

PKBH[��p��7share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/heading.rbnu�[���# frozen_string_literal: true
##
# A heading with a level (1-6) and text

RDoc::Markup::Heading =
  Struct.new :level, :text do

  @to_html = nil
  @to_label = nil

  ##
  # A singleton RDoc::Markup::ToLabel formatter for headings.

  def self.to_label
    @to_label ||= RDoc::Markup::ToLabel.new
  end

  ##
  # A singleton plain HTML formatter for headings.  Used for creating labels
  # for the Table of Contents

  def self.to_html
    return @to_html if @to_html

    markup = RDoc::Markup.new
    markup.add_regexp_handling RDoc::CrossReference::CROSSREF_REGEXP, :CROSSREF

    @to_html = RDoc::Markup::ToHtml.new nil

    def @to_html.handle_regexp_CROSSREF target
      target.text.sub(/^\\/, '')
    end

    @to_html
  end

  ##
  # Calls #accept_heading on +visitor+

  def accept visitor
    visitor.accept_heading self
  end

  ##
  # An HTML-safe anchor reference for this header.

  def aref
    "label-#{self.class.to_label.convert text.dup}"
  end

  ##
  # Creates a fully-qualified label which will include the label from
  # +context+.  This helps keep ids unique in HTML.

  def label context = nil
    label = aref

    label = [context.aref, label].compact.join '-' if
      context and context.respond_to? :aref

    label
  end

  ##
  # HTML markup of the text of this label without the surrounding header
  # element.

  def plain_html
    self.class.to_html.to_html(text.dup)
  end

  def pretty_print q # :nodoc:
    q.group 2, "[head: #{level} ", ']' do
      q.pp text
    end
  end

end

PKBH[��ԄEE4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/list.rbnu�[���# frozen_string_literal: true
##
# A List is a homogeneous set of ListItems.
#
# The supported list types include:
#
# :BULLET::
#   An unordered list
# :LABEL::
#   An unordered definition list, but using an alternate RDoc::Markup syntax
# :LALPHA::
#   An ordered list using increasing lowercase English letters
# :NOTE::
#   An unordered definition list
# :NUMBER::
#   An ordered list using increasing Arabic numerals
# :UALPHA::
#   An ordered list using increasing uppercase English letters
#
# Definition lists behave like HTML definition lists.  Each list item can
# describe multiple terms.  See RDoc::Markup::ListItem for how labels and
# definition are stored as list items.

class RDoc::Markup::List

  ##
  # The list's type

  attr_accessor :type

  ##
  # Items in the list

  attr_reader :items

  ##
  # Creates a new list of +type+ with +items+.  Valid list types are:
  # +:BULLET+, +:LABEL+, +:LALPHA+, +:NOTE+, +:NUMBER+, +:UALPHA+

  def initialize type = nil, *items
    @type = type
    @items = []
    @items.concat items
  end

  ##
  # Appends +item+ to the list

  def << item
    @items << item
  end

  def == other # :nodoc:
    self.class == other.class and
      @type == other.type and
      @items == other.items
  end

  ##
  # Runs this list and all its #items through +visitor+

  def accept visitor
    visitor.accept_list_start self

    @items.each do |item|
      item.accept visitor
    end

    visitor.accept_list_end self
  end

  ##
  # Is the list empty?

  def empty?
    @items.empty?
  end

  ##
  # Returns the last item in the list

  def last
    @items.last
  end

  def pretty_print q # :nodoc:
    q.group 2, "[list: #{@type} ", ']' do
      q.seplist @items do |item|
        q.pp item
      end
    end
  end

  ##
  # Appends +items+ to the list

  def push *items
    @items.concat items
  end

end

PKBH[u�a1��5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_bs.rbnu�[���# frozen_string_literal: true
##
# Outputs RDoc markup with hot backspace action!  You will probably need a
# pager to use this output format.
#
# This formatter won't work on 1.8.6 because it lacks String#chars.

class RDoc::Markup::ToBs < RDoc::Markup::ToRdoc

  ##
  # Returns a new ToBs that is ready for hot backspace action!

  def initialize markup = nil
    super

    @in_b  = false
    @in_em = false
  end

  ##
  # Sets a flag that is picked up by #annotate to do the right thing in
  # #convert_string

  def init_tags
    add_tag :BOLD, '+b', '-b'
    add_tag :EM,   '+_', '-_'
    add_tag :TT,   ''  , ''   # we need in_tt information maintained
  end

  ##
  # Makes heading text bold.

  def accept_heading heading
    use_prefix or @res << ' ' * @indent
    @res << @headings[heading.level][0]
    @in_b = true
    @res << attributes(heading.text)
    @in_b = false
    @res << @headings[heading.level][1]
    @res << "\n"
  end

  ##
  # Turns on or off regexp handling for +convert_string+

  def annotate tag
    case tag
    when '+b' then @in_b = true
    when '-b' then @in_b = false
    when '+_' then @in_em = true
    when '-_' then @in_em = false
    end
    ''
  end

  ##
  # Calls convert_string on the result of convert_regexp_handling

  def convert_regexp_handling target
    convert_string super
  end

  ##
  # Adds bold or underline mixed with backspaces

  def convert_string string
    return string unless @in_b or @in_em
    chars = if @in_b then
              string.chars.map do |char| "#{char}\b#{char}" end
            elsif @in_em then
              string.chars.map do |char| "_\b#{char}" end
            end

    chars.join
  end

end
PKBH[�C�"==7share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/include.rbnu�[���# frozen_string_literal: true
##
# A file included at generation time.  Objects of this class are created by
# RDoc::RD for an extension-less include.
#
# This implementation in incomplete.

class RDoc::Markup::Include

  ##
  # The filename to be included, without extension

  attr_reader :file

  ##
  # Directories to search for #file

  attr_reader :include_path

  ##
  # Creates a new include that will import +file+ from +include_path+

  def initialize file, include_path
    @file = file
    @include_path = include_path
  end

  def == other # :nodoc:
    self.class === other and
      @file == other.file and @include_path == other.include_path
  end

  def pretty_print q # :nodoc:
    q.group 2, '[incl ', ']' do
      q.text file
      q.breakable
      q.text 'from '
      q.pp include_path
    end
  end

end

PKBH[|����?share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/regexp_handling.rbnu�[���# frozen_string_literal: true
##
# Hold details of a regexp handling sequence

class RDoc::Markup::RegexpHandling

  ##
  # Regexp handling type

  attr_reader   :type

  ##
  # Regexp handling text

  attr_accessor :text

  ##
  # Creates a new regexp handling sequence of +type+ with +text+

  def initialize(type, text)
    @type, @text = type, text
  end

  ##
  # Regexp handlings are equal when the have the same text and type

  def ==(o)
    self.text == o.text && self.type == o.type
  end

  def inspect # :nodoc:
    "#<RDoc::Markup::RegexpHandling:0x%x @type=%p, @text=%p>" % [
      object_id, @type, text.dump]
  end

  def to_s # :nodoc:
    "RegexpHandling: type=#{type} text=#{text.dump}"
  end

end

PKBH[�Q���7share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_rdoc.rbnu�[���# frozen_string_literal: true
##
# Outputs RDoc markup as RDoc markup! (mostly)

class RDoc::Markup::ToRdoc < RDoc::Markup::Formatter

  ##
  # Current indent amount for output in characters

  attr_accessor :indent

  ##
  # Output width in characters

  attr_accessor :width

  ##
  # Stack of current list indexes for alphabetic and numeric lists

  attr_reader :list_index

  ##
  # Stack of list types

  attr_reader :list_type

  ##
  # Stack of list widths for indentation

  attr_reader :list_width

  ##
  # Prefix for the next list item.  See #use_prefix

  attr_reader :prefix

  ##
  # Output accumulator

  attr_reader :res

  ##
  # Creates a new formatter that will output (mostly) \RDoc markup

  def initialize markup = nil
    super nil, markup

    @markup.add_regexp_handling(/\\\S/, :SUPPRESSED_CROSSREF)
    @width = 78
    init_tags

    @headings = {}
    @headings.default = []

    @headings[1] = ['= ',      '']
    @headings[2] = ['== ',     '']
    @headings[3] = ['=== ',    '']
    @headings[4] = ['==== ',   '']
    @headings[5] = ['===== ',  '']
    @headings[6] = ['====== ', '']

    @hard_break = "\n"
  end

  ##
  # Maps attributes to HTML sequences

  def init_tags
    add_tag :BOLD, "<b>", "</b>"
    add_tag :TT,   "<tt>", "</tt>"
    add_tag :EM,   "<em>", "</em>"
  end

  ##
  # Adds +blank_line+ to the output

  def accept_blank_line blank_line
    @res << "\n"
  end

  ##
  # Adds +paragraph+ to the output

  def accept_block_quote block_quote
    @indent += 2

    block_quote.parts.each do |part|
      @prefix = '> '

      part.accept self
    end

    @indent -= 2
  end

  ##
  # Adds +heading+ to the output

  def accept_heading heading
    use_prefix or @res << ' ' * @indent
    @res << @headings[heading.level][0]
    @res << attributes(heading.text)
    @res << @headings[heading.level][1]
    @res << "\n"
  end

  ##
  # Finishes consumption of +list+

  def accept_list_end list
    @list_index.pop
    @list_type.pop
    @list_width.pop
  end

  ##
  # Finishes consumption of +list_item+

  def accept_list_item_end list_item
    width = case @list_type.last
            when :BULLET then
              2
            when :NOTE, :LABEL then
              if @prefix then
                @res << @prefix.strip
                @prefix = nil
              end

              @res << "\n"
              2
            else
              bullet = @list_index.last.to_s
              @list_index[-1] = @list_index.last.succ
              bullet.length + 2
            end

    @indent -= width
  end

  ##
  # Prepares the visitor for consuming +list_item+

  def accept_list_item_start list_item
    type = @list_type.last

    case type
    when :NOTE, :LABEL then
      bullets = Array(list_item.label).map do |label|
        attributes(label).strip
      end.join "\n"

      bullets << ":\n" unless bullets.empty?

      @prefix = ' ' * @indent
      @indent += 2
      @prefix << bullets + (' ' * @indent)
    else
      bullet = type == :BULLET ? '*' :  @list_index.last.to_s + '.'
      @prefix = (' ' * @indent) + bullet.ljust(bullet.length + 1)
      width = bullet.length + 1
      @indent += width
    end
  end

  ##
  # Prepares the visitor for consuming +list+

  def accept_list_start list
    case list.type
    when :BULLET then
      @list_index << nil
      @list_width << 1
    when :LABEL, :NOTE then
      @list_index << nil
      @list_width << 2
    when :LALPHA then
      @list_index << 'a'
      @list_width << list.items.length.to_s.length
    when :NUMBER then
      @list_index << 1
      @list_width << list.items.length.to_s.length
    when :UALPHA then
      @list_index << 'A'
      @list_width << list.items.length.to_s.length
    else
      raise RDoc::Error, "invalid list type #{list.type}"
    end

    @list_type << list.type
  end

  ##
  # Adds +paragraph+ to the output

  def accept_paragraph paragraph
    text = paragraph.text @hard_break
    wrap attributes text
  end

  ##
  # Adds +paragraph+ to the output

  def accept_indented_paragraph paragraph
    @indent += paragraph.indent
    text = paragraph.text @hard_break
    wrap attributes text
    @indent -= paragraph.indent
  end

  ##
  # Adds +raw+ to the output

  def accept_raw raw
    @res << raw.parts.join("\n")
  end

  ##
  # Adds +rule+ to the output

  def accept_rule rule
    use_prefix or @res << ' ' * @indent
    @res << '-' * (@width - @indent)
    @res << "\n"
  end

  ##
  # Outputs +verbatim+ indented 2 columns

  def accept_verbatim verbatim
    indent = ' ' * (@indent + 2)

    verbatim.parts.each do |part|
      @res << indent unless part == "\n"
      @res << part
    end

    @res << "\n"
  end

  ##
  # Applies attribute-specific markup to +text+ using RDoc::AttributeManager

  def attributes text
    flow = @am.flow text.dup
    convert_flow flow
  end

  ##
  # Returns the generated output

  def end_accepting
    @res.join
  end

  ##
  # Removes preceding \\ from the suppressed crossref +target+

  def handle_regexp_SUPPRESSED_CROSSREF target
    text = target.text
    text = text.sub('\\', '') unless in_tt?
    text
  end

  ##
  # Adds a newline to the output

  def handle_regexp_HARD_BREAK target
    "\n"
  end

  ##
  # Prepares the visitor for text generation

  def start_accepting
    @res = [""]
    @indent = 0
    @prefix = nil

    @list_index = []
    @list_type  = []
    @list_width = []
  end

  ##
  # Adds the stored #prefix to the output and clears it.  Lists generate a
  # prefix for later consumption.

  def use_prefix
    prefix, @prefix = @prefix, nil
    @res << prefix if prefix

    prefix
  end

  ##
  # Wraps +text+ to #width

  def wrap text
    return unless text && !text.empty?

    text_len = @width - @indent

    text_len = 20 if text_len < 20

    re = /^(.{0,#{text_len}})[ \n]/
    next_prefix = ' ' * @indent

    prefix = @prefix || next_prefix
    @prefix = nil

    @res << prefix

    while text.length > text_len
      if text =~ re then
        @res << $1
        text.slice!(0, $&.length)
      else
        @res << text.slice!(0, text_len)
      end

      @res << "\n" << next_prefix
    end

    if text.empty? then
      @res.pop
      @res.pop
    else
      @res << text
      @res << "\n"
    end
  end

end

PKBH[�<���9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attr_span.rbnu�[���# frozen_string_literal: true
##
# An array of attributes which parallels the characters in a string.

class RDoc::Markup::AttrSpan

  ##
  # Creates a new AttrSpan for +length+ characters

  def initialize(length)
    @attrs = Array.new(length, 0)
  end

  ##
  # Toggles +bits+ from +start+ to +length+
  def set_attrs(start, length, bits)
    for i in start ... (start+length)
      @attrs[i] |= bits
    end
  end

  ##
  # Accesses flags for character +n+

  def [](n)
    @attrs[n]
  end

end

PKBH[����Bshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/indented_paragraph.rbnu�[���# frozen_string_literal: true
##
# An Indented Paragraph of text

class RDoc::Markup::IndentedParagraph < RDoc::Markup::Raw

  ##
  # The indent in number of spaces

  attr_reader :indent

  ##
  # Creates a new IndentedParagraph containing +parts+ indented with +indent+
  # spaces

  def initialize indent, *parts
    @indent = indent

    super(*parts)
  end

  def == other # :nodoc:
    super and indent == other.indent
  end

  ##
  # Calls #accept_indented_paragraph on +visitor+

  def accept visitor
    visitor.accept_indented_paragraph self
  end

  ##
  # Joins the raw paragraph text and converts inline HardBreaks to the
  # +hard_break+ text followed by the indent.

  def text hard_break = nil
    @parts.map do |part|
      if RDoc::Markup::HardBreak === part then
        '%1$s%3$*2$s' % [hard_break, @indent, ' '] if hard_break
      else
        part
      end
    end.join
  end

end

PKBH[�fcr��9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/list_item.rbnu�[���# frozen_string_literal: true
##
# An item within a List that contains paragraphs, headings, etc.
#
# For BULLET, NUMBER, LALPHA and UALPHA lists, the label will always be nil.
# For NOTE and LABEL lists, the list label may contain:
#
# * a single String for a single label
# * an Array of Strings for a list item with multiple terms
# * nil for an extra description attached to a previously labeled list item

class RDoc::Markup::ListItem

  ##
  # The label for the ListItem

  attr_accessor :label

  ##
  # Parts of the ListItem

  attr_reader :parts

  ##
  # Creates a new ListItem with an optional +label+ containing +parts+

  def initialize label = nil, *parts
    @label = label
    @parts = []
    @parts.concat parts
  end

  ##
  # Appends +part+ to the ListItem

  def << part
    @parts << part
  end

  def == other # :nodoc:
    self.class == other.class and
      @label == other.label and
      @parts == other.parts
  end

  ##
  # Runs this list item and all its #parts through +visitor+

  def accept visitor
    visitor.accept_list_item_start self

    @parts.each do |part|
      part.accept visitor
    end

    visitor.accept_list_item_end self
  end

  ##
  # Is the ListItem empty?

  def empty?
    @parts.empty?
  end

  ##
  # Length of parts in the ListItem

  def length
    @parts.length
  end

  def pretty_print q # :nodoc:
    q.group 2, '[item: ', ']' do
      case @label
      when Array then
        q.pp @label
        q.text ';'
        q.breakable
      when String then
        q.pp @label
        q.text ';'
        q.breakable
      end

      q.seplist @parts do |part|
        q.pp part
      end
    end
  end

  ##
  # Adds +parts+ to the ListItem

  def push *parts
    @parts.concat parts
  end

end

PKBH[N�_���;share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/block_quote.rbnu�[���# frozen_string_literal: true
##
# A quoted section which contains markup items.

class RDoc::Markup::BlockQuote < RDoc::Markup::Raw

  ##
  # Calls #accept_block_quote on +visitor+

  def accept visitor
    visitor.accept_block_quote self
  end

end

PKBH[WY���8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/document.rbnu�[���# frozen_string_literal: true
##
# A Document containing lists, headings, paragraphs, etc.

class RDoc::Markup::Document

  include Enumerable

  ##
  # The file this document was created from.  See also
  # RDoc::ClassModule#add_comment

  attr_reader :file

  ##
  # If a heading is below the given level it will be omitted from the
  # table_of_contents

  attr_accessor :omit_headings_below

  ##
  # The parts of the Document

  attr_reader :parts

  ##
  # Creates a new Document with +parts+

  def initialize *parts
    @parts = []
    @parts.concat parts

    @file = nil
    @omit_headings_from_table_of_contents_below = nil
  end

  ##
  # Appends +part+ to the document

  def << part
    case part
    when RDoc::Markup::Document then
      unless part.empty? then
        parts.concat part.parts
        parts << RDoc::Markup::BlankLine.new
      end
    when String then
      raise ArgumentError,
            "expected RDoc::Markup::Document and friends, got String" unless
        part.empty?
    else
      parts << part
    end
  end

  def == other # :nodoc:
    self.class == other.class and
      @file == other.file and
      @parts == other.parts
  end

  ##
  # Runs this document and all its #items through +visitor+

  def accept visitor
    visitor.start_accepting

    visitor.accept_document self

    visitor.end_accepting
  end

  ##
  # Concatenates the given +parts+ onto the document

  def concat parts
    self.parts.concat parts
  end

  ##
  # Enumerator for the parts of this document

  def each &block
    @parts.each(&block)
  end

  ##
  # Does this document have no parts?

  def empty?
    @parts.empty? or (@parts.length == 1 and merged? and @parts.first.empty?)
  end

  ##
  # The file this Document was created from.

  def file= location
    @file = case location
            when RDoc::TopLevel then
              location.relative_name
            else
              location
            end
  end

  ##
  # When this is a collection of documents (#file is not set and this document
  # contains only other documents as its direct children) #merge replaces
  # documents in this class with documents from +other+ when the file matches
  # and adds documents from +other+ when the files do not.
  #
  # The information in +other+ is preferred over the receiver

  def merge other
    if empty? then
      @parts = other.parts
      return self
    end

    other.parts.each do |other_part|
      self.parts.delete_if do |self_part|
        self_part.file and self_part.file == other_part.file
      end

      self.parts << other_part
    end

    self
  end

  ##
  # Does this Document contain other Documents?

  def merged?
    RDoc::Markup::Document === @parts.first
  end

  def pretty_print q # :nodoc:
    start = @file ? "[doc (#{@file}): " : '[doc: '

    q.group 2, start, ']' do
      q.seplist @parts do |part|
        q.pp part
      end
    end
  end

  ##
  # Appends +parts+ to the document

  def push *parts
    self.parts.concat parts
  end

  ##
  # Returns an Array of headings in the document.
  #
  # Require 'rdoc/markup/formatter' before calling this method.

  def table_of_contents
    accept RDoc::Markup::ToTableOfContents.to_toc
  end

end

PKBH[V���7share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_test.rbnu�[���# frozen_string_literal: true
##
# This Markup outputter is used for testing purposes.

class RDoc::Markup::ToTest < RDoc::Markup::Formatter

  # :stopdoc:

  ##
  # :section: Visitor

  def start_accepting
    @res = []
    @list = []
  end

  def end_accepting
    @res
  end

  def accept_paragraph(paragraph)
    @res << convert_flow(@am.flow(paragraph.text))
  end

  def accept_raw raw
    @res << raw.parts.join
  end

  def accept_verbatim(verbatim)
    @res << verbatim.text.gsub(/^(\S)/, '  \1')
  end

  def accept_list_start(list)
    @list << case list.type
             when :BULLET then
               '*'
             when :NUMBER then
               '1'
             else
               list.type
             end
  end

  def accept_list_end(list)
    @list.pop
  end

  def accept_list_item_start(list_item)
    @res << "#{' ' * (@list.size - 1)}#{@list.last}: "
  end

  def accept_list_item_end(list_item)
  end

  def accept_blank_line(blank_line)
    @res << "\n"
  end

  def accept_heading(heading)
    @res << "#{'=' * heading.level} #{heading.text}"
  end

  def accept_rule(rule)
    @res << '-' * rule.weight
  end

  # :startdoc:

end

PKBH[�6WG!G!;share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/pre_process.rbnu�[���# frozen_string_literal: true
##
# Handle common directives that can occur in a block of text:
#
#   \:include: filename
#
# Directives can be escaped by preceding them with a backslash.
#
# RDoc plugin authors can register additional directives to be handled by
# using RDoc::Markup::PreProcess::register.
#
# Any directive that is not built-in to RDoc (including those registered via
# plugins) will be stored in the metadata hash on the CodeObject the comment
# is attached to.  See RDoc::Markup@Directives for the list of built-in
# directives.

class RDoc::Markup::PreProcess

  ##
  # An RDoc::Options instance that will be filled in with overrides from
  # directives

  attr_accessor :options

  ##
  # Adds a post-process handler for directives.  The handler will be called
  # with the result RDoc::Comment (or text String) and the code object for the
  # comment (if any).

  def self.post_process &block
    @post_processors << block
  end

  ##
  # Registered post-processors

  def self.post_processors
    @post_processors
  end

  ##
  # Registers +directive+ as one handled by RDoc.  If a block is given the
  # directive will be replaced by the result of the block, otherwise the
  # directive will be removed from the processed text.
  #
  # The block will be called with the directive name and the directive
  # parameter:
  #
  #   RDoc::Markup::PreProcess.register 'my-directive' do |directive, param|
  #     # replace text, etc.
  #   end

  def self.register directive, &block
    @registered[directive] = block
  end

  ##
  # Registered directives

  def self.registered
    @registered
  end

  ##
  # Clears all registered directives and post-processors

  def self.reset
    @post_processors = []
    @registered = {}
  end

  reset

  ##
  # Creates a new pre-processor for +input_file_name+ that will look for
  # included files in +include_path+

  def initialize(input_file_name, include_path)
    @input_file_name = input_file_name
    @include_path = include_path
    @options = nil
  end

  ##
  # Look for directives in the given +text+.
  #
  # Options that we don't handle are yielded.  If the block returns false the
  # directive is restored to the text.  If the block returns nil or no block
  # was given the directive is handled according to the registered directives.
  # If a String was returned the directive is replaced with the string.
  #
  # If no matching directive was registered the directive is restored to the
  # text.
  #
  # If +code_object+ is given and the directive is unknown then the
  # directive's parameter is set as metadata on the +code_object+.  See
  # RDoc::CodeObject#metadata for details.

  def handle text, code_object = nil, &block
    if RDoc::Comment === text then
      comment = text
      text = text.text
    end

    # regexp helper (square brackets for optional)
    # $1      $2  $3        $4      $5
    # [prefix][\]:directive:[spaces][param]newline
    text = text.gsub(/^([ \t]*(?:#|\/?\*)?[ \t]*)(\\?):(\w+):([ \t]*)(.+)?(\r?\n|$)/) do
      # skip something like ':toto::'
      next $& if $4.empty? and $5 and $5[0, 1] == ':'

      # skip if escaped
      next "#$1:#$3:#$4#$5\n" unless $2.empty?

      # This is not in handle_directive because I didn't want to pass another
      # argument into it
      if comment and $3 == 'markup' then
        next "#{$1.strip}\n" unless $5
        comment.format = $5.downcase
        next "#{$1.strip}\n"
      end

      handle_directive $1, $3, $5, code_object, text.encoding, &block
    end

    if comment then
      comment.text = text
    else
      comment = text
    end

    self.class.post_processors.each do |handler|
      handler.call comment, code_object
    end

    text
  end

  ##
  # Performs the actions described by +directive+ and its parameter +param+.
  #
  # +code_object+ is used for directives that operate on a class or module.
  # +prefix+ is used to ensure the replacement for handled directives is
  # correct.  +encoding+ is used for the <tt>include</tt> directive.
  #
  # For a list of directives in RDoc see RDoc::Markup.
  #--
  # When 1.8.7 support is ditched prefix can be defaulted to ''

  def handle_directive prefix, directive, param, code_object = nil,
                       encoding = nil
    blankline = "#{prefix.strip}\n"
    directive = directive.downcase

    case directive
    when 'arg', 'args' then
      return "#{prefix}:#{directive}: #{param}\n" unless code_object && code_object.kind_of?(RDoc::AnyMethod)

      code_object.params = param

      blankline
    when 'category' then
      if RDoc::Context === code_object then
        section = code_object.add_section param
        code_object.temporary_section = section
      end

      blankline # ignore category if we're not on an RDoc::Context
    when 'doc' then
      return blankline unless code_object
      code_object.document_self = true
      code_object.force_documentation = true

      blankline
    when 'enddoc' then
      return blankline unless code_object
      code_object.done_documenting = true

      blankline
    when 'include' then
      filename = param.split.first
      include_file filename, prefix, encoding
    when 'main' then
      @options.main_page = param if @options.respond_to? :main_page

      blankline
    when 'nodoc' then
      return blankline unless code_object
      code_object.document_self = nil # notify nodoc
      code_object.document_children = param !~ /all/i

      blankline
    when 'notnew', 'not_new', 'not-new' then
      return blankline unless RDoc::AnyMethod === code_object

      code_object.dont_rename_initialize = true

      blankline
    when 'startdoc' then
      return blankline unless code_object

      code_object.start_doc
      code_object.force_documentation = true

      blankline
    when 'stopdoc' then
      return blankline unless code_object

      code_object.stop_doc

      blankline
    when 'title' then
      @options.default_title = param if @options.respond_to? :default_title=

      blankline
    when 'yield', 'yields' then
      return blankline unless code_object
      # remove parameter &block
      code_object.params = code_object.params.sub(/,?\s*&\w+/, '') if code_object.params

      code_object.block_params = param

      blankline
    else
      result = yield directive, param if block_given?

      case result
      when nil then
        code_object.metadata[directive] = param if code_object

        if RDoc::Markup::PreProcess.registered.include? directive then
          handler = RDoc::Markup::PreProcess.registered[directive]
          result = handler.call directive, param if handler
        else
          result = "#{prefix}:#{directive}: #{param}\n"
        end
      when false then
        result = "#{prefix}:#{directive}: #{param}\n"
      end

      result
    end
  end

  ##
  # Handles the <tt>:include: _filename_</tt> directive.
  #
  # If the first line of the included file starts with '#', and contains
  # an encoding information in the form 'coding:' or 'coding=', it is
  # removed.
  #
  # If all lines in the included file start with a '#', this leading '#'
  # is removed before inclusion. The included content is indented like
  # the <tt>:include:</tt> directive.
  #--
  # so all content will be verbatim because of the likely space after '#'?
  # TODO shift left the whole file content in that case
  # TODO comment stop/start #-- and #++ in included file must be processed here

  def include_file name, indent, encoding
    full_name = find_include_file name

    unless full_name then
      warn "Couldn't find file to include '#{name}' from #{@input_file_name}"
      return ''
    end

    content = RDoc::Encoding.read_file full_name, encoding, true
    content = RDoc::Encoding.remove_magic_comment content

    # strip magic comment
    content = content.sub(/\A# .*coding[=:].*$/, '').lstrip

    # strip leading '#'s, but only if all lines start with them
    if content =~ /^[^#]/ then
      content.gsub(/^/, indent)
    else
      content.gsub(/^#?/, indent)
    end
  end

  ##
  # Look for the given file in the directory containing the current file,
  # and then in each of the directories specified in the RDOC_INCLUDE path

  def find_include_file(name)
    to_search = [File.dirname(@input_file_name)].concat @include_path
    to_search.each do |dir|
      full_name = File.join(dir, name)
      stat = File.stat(full_name) rescue next
      return full_name if stat.readable?
    end
    nil
  end

end
PKBH[f�!r r Ashare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attribute_manager.rbnu�[���# frozen_string_literal: true
##
# Manages changes of attributes in a block of text

class RDoc::Markup::AttributeManager

  ##
  # The NUL character

  NULL = "\000".freeze

  #--
  # We work by substituting non-printing characters in to the text. For now
  # I'm assuming that I can substitute a character in the range 0..8 for a 7
  # bit character without damaging the encoded string, but this might be
  # optimistic
  #++

  A_PROTECT = 004 # :nodoc:

  ##
  # Special mask character to prevent inline markup handling

  PROTECT_ATTR = A_PROTECT.chr # :nodoc:

  ##
  # The attributes enabled for this markup object.

  attr_reader :attributes

  ##
  # This maps delimiters that occur around words (such as *bold* or +tt+)
  # where the start and end delimiters and the same. This lets us optimize
  # the regexp

  attr_reader :matching_word_pairs

  ##
  # And this is used when the delimiters aren't the same. In this case the
  # hash maps a pattern to the attribute character

  attr_reader :word_pair_map

  ##
  # This maps HTML tags to the corresponding attribute char

  attr_reader :html_tags

  ##
  # A \ in front of a character that would normally be processed turns off
  # processing. We do this by turning \< into <#{PROTECT}

  attr_reader :protectable

  ##
  # And this maps _regexp handling_ sequences to a name. A regexp handling
  # sequence is something like a WikiWord

  attr_reader :regexp_handlings

  ##
  # Creates a new attribute manager that understands bold, emphasized and
  # teletype text.

  def initialize
    @html_tags = {}
    @matching_word_pairs = {}
    @protectable = %w[<]
    @regexp_handlings = []
    @word_pair_map = {}
    @attributes = RDoc::Markup::Attributes.new

    add_word_pair "*", "*", :BOLD
    add_word_pair "_", "_", :EM
    add_word_pair "+", "+", :TT

    add_html "em", :EM
    add_html "i",  :EM
    add_html "b",  :BOLD
    add_html "tt",   :TT
    add_html "code", :TT
  end

  ##
  # Return an attribute object with the given turn_on and turn_off bits set

  def attribute(turn_on, turn_off)
    RDoc::Markup::AttrChanger.new turn_on, turn_off
  end

  ##
  # Changes the current attribute from +current+ to +new+

  def change_attribute current, new
    diff = current ^ new
    attribute(new & diff, current & diff)
  end

  ##
  # Used by the tests to change attributes by name from +current_set+ to
  # +new_set+

  def changed_attribute_by_name current_set, new_set
    current = new = 0
    current_set.each do |name|
      current |= @attributes.bitmap_for(name)
    end

    new_set.each do |name|
      new |= @attributes.bitmap_for(name)
    end

    change_attribute(current, new)
  end

  ##
  # Copies +start_pos+ to +end_pos+ from the current string

  def copy_string(start_pos, end_pos)
    res = @str[start_pos...end_pos]
    res.gsub!(/\000/, '')
    res
  end

  ##
  # Map attributes like <b>text</b>to the sequence
  # \001\002<char>\001\003<char>, where <char> is a per-attribute specific
  # character

  def convert_attrs(str, attrs)
    # first do matching ones
    tags = @matching_word_pairs.keys.join("")

    re = /(^|\W)([#{tags}])([#\\]?[\w:.\/-]+?\S?)\2(\W|$)/

    1 while str.gsub!(re) do
      attr = @matching_word_pairs[$2]
      attrs.set_attrs($`.length + $1.length + $2.length, $3.length, attr)
      $1 + NULL * $2.length + $3 + NULL * $2.length + $4
    end

    # then non-matching
    unless @word_pair_map.empty? then
      @word_pair_map.each do |regexp, attr|
        str.gsub!(regexp) {
          attrs.set_attrs($`.length + $1.length, $2.length, attr)
          NULL * $1.length + $2 + NULL * $3.length
        }
      end
    end
  end

  ##
  # Converts HTML tags to RDoc attributes

  def convert_html(str, attrs)
    tags = @html_tags.keys.join '|'

    1 while str.gsub!(/<(#{tags})>(.*?)<\/\1>/i) {
      attr = @html_tags[$1.downcase]
      html_length = $1.length + 2
      seq = NULL * html_length
      attrs.set_attrs($`.length + html_length, $2.length, attr)
      seq + $2 + seq + NULL
    }
  end

  ##
  # Converts regexp handling sequences to RDoc attributes

  def convert_regexp_handlings str, attrs
    @regexp_handlings.each do |regexp, attribute|
      str.scan(regexp) do
        capture = $~.size == 1 ? 0 : 1

        s, e = $~.offset capture

        attrs.set_attrs s, e - s, attribute | @attributes.regexp_handling
      end
    end
  end

  ##
  # Escapes regexp handling sequences of text to prevent conversion to RDoc

  def mask_protected_sequences
    # protect __send__, __FILE__, etc.
    @str.gsub!(/__([a-z]+)__/i,
      "_#{PROTECT_ATTR}_#{PROTECT_ATTR}\\1_#{PROTECT_ATTR}_#{PROTECT_ATTR}")
    @str.gsub!(/(\A|[^\\])\\([#{Regexp.escape @protectable.join}])/m,
               "\\1\\2#{PROTECT_ATTR}")
    @str.gsub!(/\\(\\[#{Regexp.escape @protectable.join}])/m, "\\1")
  end

  ##
  # Unescapes regexp handling sequences of text

  def unmask_protected_sequences
    @str.gsub!(/(.)#{PROTECT_ATTR}/, "\\1\000")
  end

  ##
  # Adds a markup class with +name+ for words wrapped in the +start+ and
  # +stop+ character.  To make words wrapped with "*" bold:
  #
  #   am.add_word_pair '*', '*', :BOLD

  def add_word_pair(start, stop, name)
    raise ArgumentError, "Word flags may not start with '<'" if
      start[0,1] == '<'

    bitmap = @attributes.bitmap_for name

    if start == stop then
      @matching_word_pairs[start] = bitmap
    else
      pattern = /(#{Regexp.escape start})(\S+)(#{Regexp.escape stop})/
      @word_pair_map[pattern] = bitmap
    end

    @protectable << start[0,1]
    @protectable.uniq!
  end

  ##
  # Adds a markup class with +name+ for words surrounded by HTML tag +tag+.
  # To process emphasis tags:
  #
  #   am.add_html 'em', :EM

  def add_html(tag, name)
    @html_tags[tag.downcase] = @attributes.bitmap_for name
  end

  ##
  # Adds a regexp handling for +pattern+ with +name+.  A simple URL handler
  # would be:
  #
  #   @am.add_regexp_handling(/((https?:)\S+\w)/, :HYPERLINK)

  def add_regexp_handling pattern, name
    @regexp_handlings << [pattern, @attributes.bitmap_for(name)]
  end

  ##
  # Processes +str+ converting attributes, HTML and regexp handlings

  def flow str
    @str = str.dup

    mask_protected_sequences

    @attrs = RDoc::Markup::AttrSpan.new @str.length

    convert_attrs            @str, @attrs
    convert_html             @str, @attrs
    convert_regexp_handlings @str, @attrs

    unmask_protected_sequences

    split_into_flow
  end

  ##
  # Debug method that prints a string along with its attributes

  def display_attributes
    puts
    puts @str.tr(NULL, "!")
    bit = 1
    16.times do |bno|
      line = ""
      @str.length.times do |i|
        if (@attrs[i] & bit) == 0
          line << " "
        else
          if bno.zero?
            line << "S"
          else
            line << ("%d" % (bno+1))
          end
        end
      end
      puts(line) unless line =~ /^ *$/
      bit <<= 1
    end
  end

  ##
  # Splits the string into chunks by attribute change

  def split_into_flow
    res = []
    current_attr = 0

    str_len = @str.length

    # skip leading invisible text
    i = 0
    i += 1 while i < str_len and @str[i].chr == "\0"
    start_pos = i

    # then scan the string, chunking it on attribute changes
    while i < str_len
      new_attr = @attrs[i]
      if new_attr != current_attr
        if i > start_pos
          res << copy_string(start_pos, i)
          start_pos = i
        end

        res << change_attribute(current_attr, new_attr)
        current_attr = new_attr

        if (current_attr & @attributes.regexp_handling) != 0 then
          i += 1 while
            i < str_len and (@attrs[i] & @attributes.regexp_handling) != 0

          res << RDoc::Markup::RegexpHandling.new(current_attr,
                                                  copy_string(start_pos, i))
          start_pos = i
          next
        end
      end

      # move on, skipping any invisible characters
      begin
        i += 1
      end while i < str_len and @str[i].chr == "\0"
    end

    # tidy up trailing text
    if start_pos < str_len
      res << copy_string(start_pos, str_len)
    end

    # and reset to all attributes off
    res << change_attribute(current_attr, 0) if current_attr != 0

    res
  end

end

PKBH[-Ǘ��9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/formatter.rbnu�[���# frozen_string_literal: true
##
# Base class for RDoc markup formatters
#
# Formatters are a visitor that converts an RDoc::Markup tree (from a comment)
# into some kind of output.  RDoc ships with formatters for converting back to
# rdoc, ANSI text, HTML, a Table of Contents and other formats.
#
# If you'd like to write your own Formatter use
# RDoc::Markup::FormatterTestCase.  If you're writing a text-output formatter
# use RDoc::Markup::TextFormatterTestCase which provides extra test cases.

class RDoc::Markup::Formatter

  ##
  # Tag for inline markup containing a +bit+ for the bitmask and the +on+ and
  # +off+ triggers.

  InlineTag = Struct.new(:bit, :on, :off)

  ##
  # Converts a target url to one that is relative to a given path

  def self.gen_relative_url path, target
    from        = File.dirname path
    to, to_file = File.split target

    from = from.split "/"
    to   = to.split "/"

    from.delete '.'
    to.delete '.'

    while from.size > 0 and to.size > 0 and from[0] == to[0] do
      from.shift
      to.shift
    end

    from.fill ".."
    from.concat to
    from << to_file
    File.join(*from)
  end

  ##
  # Creates a new Formatter

  def initialize options, markup = nil
    @options = options

    @markup = markup || RDoc::Markup.new
    @am     = @markup.attribute_manager
    @am.add_regexp_handling(/<br>/, :HARD_BREAK)

    @attributes = @am.attributes

    @attr_tags = []

    @in_tt = 0
    @tt_bit = @attributes.bitmap_for :TT

    @hard_break = ''
    @from_path = '.'
  end

  ##
  # Adds +document+ to the output

  def accept_document document
    document.parts.each do |item|
      case item
      when RDoc::Markup::Document then # HACK
        accept_document item
      else
        item.accept self
      end
    end
  end

  ##
  # Adds a regexp handling for links of the form rdoc-...:

  def add_regexp_handling_RDOCLINK
    @markup.add_regexp_handling(/rdoc-[a-z]+:[^\s\]]+/, :RDOCLINK)
  end

  ##
  # Adds a regexp handling for links of the form {<text>}[<url>] and
  # <word>[<url>]

  def add_regexp_handling_TIDYLINK
    @markup.add_regexp_handling(/(?:
                                  \{.*?\} |    # multi-word label
                                  \b[^\s{}]+? # single-word label
                                 )

                                 \[\S+?\]     # link target
                                /x, :TIDYLINK)
  end

  ##
  # Add a new set of tags for an attribute. We allow separate start and end
  # tags for flexibility

  def add_tag(name, start, stop)
    attr = @attributes.bitmap_for name
    @attr_tags << InlineTag.new(attr, start, stop)
  end

  ##
  # Allows +tag+ to be decorated with additional information.

  def annotate(tag)
    tag
  end

  ##
  # Marks up +content+

  def convert content
    @markup.convert content, self
  end

  ##
  # Converts flow items +flow+

  def convert_flow(flow)
    res = []

    flow.each do |item|
      case item
      when String then
        res << convert_string(item)
      when RDoc::Markup::AttrChanger then
        off_tags res, item
        on_tags res, item
      when RDoc::Markup::RegexpHandling then
        res << convert_regexp_handling(item)
      else
        raise "Unknown flow element: #{item.inspect}"
      end
    end

    res.join
  end

  ##
  # Converts added regexp handlings. See RDoc::Markup#add_regexp_handling

  def convert_regexp_handling target
    return target.text if in_tt?

    handled = false

    @attributes.each_name_of target.type do |name|
      method_name = "handle_regexp_#{name}"

      if respond_to? method_name then
        target.text = send method_name, target
        handled = true
      end
    end

    unless handled then
      target_name = @attributes.as_string target.type

      raise RDoc::Error, "Unhandled regexp handling #{target_name}: #{target}"
    end

    target.text
  end

  ##
  # Converts a string to be fancier if desired

  def convert_string string
    string
  end

  ##
  # Use ignore in your subclass to ignore the content of a node.
  #
  #   ##
  #   # We don't support raw nodes in ToNoRaw
  #
  #   alias accept_raw ignore

  def ignore *node
  end

  ##
  # Are we currently inside tt tags?

  def in_tt?
    @in_tt > 0
  end

  ##
  # Turns on tags for +item+ on +res+

  def on_tags res, item
    attr_mask = item.turn_on
    return if attr_mask.zero?

    @attr_tags.each do |tag|
      if attr_mask & tag.bit != 0 then
        res << annotate(tag.on)
        @in_tt += 1 if tt? tag
      end
    end
  end

  ##
  # Turns off tags for +item+ on +res+

  def off_tags res, item
    attr_mask = item.turn_off
    return if attr_mask.zero?

    @attr_tags.reverse_each do |tag|
      if attr_mask & tag.bit != 0 then
        @in_tt -= 1 if tt? tag
        res << annotate(tag.off)
      end
    end
  end

  ##
  # Extracts and a scheme, url and an anchor id from +url+ and returns them.

  def parse_url url
    case url
    when /^rdoc-label:([^:]*)(?::(.*))?/ then
      scheme = 'link'
      path   = "##{$1}"
      id     = " id=\"#{$2}\"" if $2
    when /([A-Za-z]+):(.*)/ then
      scheme = $1.downcase
      path   = $2
    when /^#/ then
    else
      scheme = 'http'
      path   = url
      url    = url
    end

    if scheme == 'link' then
      url = if path[0, 1] == '#' then # is this meaningful?
              path
            else
              self.class.gen_relative_url @from_path, path
            end
    end

    [scheme, url, id]
  end

  ##
  # Is +tag+ a tt tag?

  def tt? tag
    tag.bit == @tt_bit
  end

end

PKBH[���|�"�"7share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html.rbnu�[���# frozen_string_literal: true
require 'cgi'

##
# Outputs RDoc markup as HTML.

class RDoc::Markup::ToHtml < RDoc::Markup::Formatter

  include RDoc::Text

  # :section: Utilities

  ##
  # Maps RDoc::Markup::Parser::LIST_TOKENS types to HTML tags

  LIST_TYPE_TO_HTML = {
    :BULLET => ['<ul>',                                      '</ul>'],
    :LABEL  => ['<dl class="rdoc-list label-list">',         '</dl>'],
    :LALPHA => ['<ol style="list-style-type: lower-alpha">', '</ol>'],
    :NOTE   => ['<dl class="rdoc-list note-list">',          '</dl>'],
    :NUMBER => ['<ol>',                                      '</ol>'],
    :UALPHA => ['<ol style="list-style-type: upper-alpha">', '</ol>'],
  }

  attr_reader :res # :nodoc:
  attr_reader :in_list_entry # :nodoc:
  attr_reader :list # :nodoc:

  ##
  # The RDoc::CodeObject HTML is being generated for.  This is used to
  # generate namespaced URI fragments

  attr_accessor :code_object

  ##
  # Path to this document for relative links

  attr_accessor :from_path

  # :section:

  ##
  # Creates a new formatter that will output HTML

  def initialize options, markup = nil
    super

    @code_object = nil
    @from_path = ''
    @in_list_entry = nil
    @list = nil
    @th = nil
    @hard_break = "<br>\n"

    # external links
    @markup.add_regexp_handling(/(?:link:|https?:|mailto:|ftp:|irc:|www\.)\S+\w/,
                                :HYPERLINK)

    add_regexp_handling_RDOCLINK
    add_regexp_handling_TIDYLINK

    init_tags
  end

  # :section: Regexp Handling
  #
  # These methods are used by regexp handling markup added by RDoc::Markup#add_regexp_handling.

  def handle_RDOCLINK url # :nodoc:
    case url
    when /^rdoc-ref:/
      $'
    when /^rdoc-label:/
      text = $'

      text = case text
             when /\Alabel-/    then $'
             when /\Afootmark-/ then $'
             when /\Afoottext-/ then $'
             else                    text
             end

      gen_url url, text
    when /^rdoc-image:/
      "<img src=\"#{$'}\">"
    else
      url =~ /\Ardoc-[a-z]+:/

      $'
    end
  end

  ##
  # +target+ is a <code><br></code>

  def handle_regexp_HARD_BREAK target
    '<br>'
  end

  ##
  # +target+ is a potential link.  The following schemes are handled:
  #
  # <tt>mailto:</tt>::
  #   Inserted as-is.
  # <tt>http:</tt>::
  #   Links are checked to see if they reference an image. If so, that image
  #   gets inserted using an <tt><img></tt> tag. Otherwise a conventional
  #   <tt><a href></tt> is used.
  # <tt>link:</tt>::
  #   Reference to a local file relative to the output directory.

  def handle_regexp_HYPERLINK(target)
    url = target.text

    gen_url url, url
  end

  ##
  # +target+ is an rdoc-schemed link that will be converted into a hyperlink.
  #
  # For the +rdoc-ref+ scheme the named reference will be returned without
  # creating a link.
  #
  # For the +rdoc-label+ scheme the footnote and label prefixes are stripped
  # when creating a link.  All other contents will be linked verbatim.

  def handle_regexp_RDOCLINK target
    handle_RDOCLINK target.text
  end

  ##
  # This +target+ is a link where the label is different from the URL
  # <tt>label[url]</tt> or <tt>{long label}[url]</tt>

  def handle_regexp_TIDYLINK(target)
    text = target.text

    return text unless
      text =~ /^\{(.*)\}\[(.*?)\]$/ or text =~ /^(\S+)\[(.*?)\]$/

    label = $1
    url   = $2

    label = handle_RDOCLINK label if /^rdoc-image:/ =~ label

    gen_url url, label
  end

  # :section: Visitor
  #
  # These methods implement the HTML visitor.

  ##
  # Prepares the visitor for HTML generation

  def start_accepting
    @res = []
    @in_list_entry = []
    @list = []
  end

  ##
  # Returns the generated output

  def end_accepting
    @res.join
  end

  ##
  # Adds +block_quote+ to the output

  def accept_block_quote block_quote
    @res << "\n<blockquote>"

    block_quote.parts.each do |part|
      part.accept self
    end

    @res << "</blockquote>\n"
  end

  ##
  # Adds +paragraph+ to the output

  def accept_paragraph paragraph
    @res << "\n<p>"
    text = paragraph.text @hard_break
    text = text.gsub(/\r?\n/, ' ')
    @res << to_html(text)
    @res << "</p>\n"
  end

  ##
  # Adds +verbatim+ to the output

  def accept_verbatim verbatim
    text = verbatim.text.rstrip

    klass = nil

    content = if verbatim.ruby? or parseable? text then
                begin
                  tokens = RDoc::Parser::RipperStateLex.parse text
                  klass  = ' class="ruby"'

                  result = RDoc::TokenStream.to_html tokens
                  result = result + "\n" unless "\n" == result[-1]
                  result
                rescue
                  CGI.escapeHTML text
                end
              else
                CGI.escapeHTML text
              end

    if @options.pipe then
      @res << "\n<pre><code>#{CGI.escapeHTML text}\n</code></pre>\n"
    else
      @res << "\n<pre#{klass}>#{content}</pre>\n"
    end
  end

  ##
  # Adds +rule+ to the output

  def accept_rule rule
    @res << "<hr>\n"
  end

  ##
  # Prepares the visitor for consuming +list+

  def accept_list_start(list)
    @list << list.type
    @res << html_list_name(list.type, true)
    @in_list_entry.push false
  end

  ##
  # Finishes consumption of +list+

  def accept_list_end(list)
    @list.pop
    if tag = @in_list_entry.pop
      @res << tag
    end
    @res << html_list_name(list.type, false) << "\n"
  end

  ##
  # Prepares the visitor for consuming +list_item+

  def accept_list_item_start(list_item)
    if tag = @in_list_entry.last
      @res << tag
    end

    @res << list_item_start(list_item, @list.last)
  end

  ##
  # Finishes consumption of +list_item+

  def accept_list_item_end(list_item)
    @in_list_entry[-1] = list_end_for(@list.last)
  end

  ##
  # Adds +blank_line+ to the output

  def accept_blank_line(blank_line)
    # @res << annotate("<p />") << "\n"
  end

  ##
  # Adds +heading+ to the output.  The headings greater than 6 are trimmed to
  # level 6.

  def accept_heading heading
    level = [6, heading.level].min

    label = heading.label @code_object

    @res << if @options.output_decoration
              "\n<h#{level} id=\"#{label}\">"
            else
              "\n<h#{level}>"
            end
    @res << to_html(heading.text)
    unless @options.pipe then
      @res << "<span><a href=\"##{label}\">&para;</a>"
      @res << " <a href=\"#top\">&uarr;</a></span>"
    end
    @res << "</h#{level}>\n"
  end

  ##
  # Adds +raw+ to the output

  def accept_raw raw
    @res << raw.parts.join("\n")
  end

  # :section: Utilities

  ##
  # CGI-escapes +text+

  def convert_string(text)
    CGI.escapeHTML text
  end

  ##
  # Generate a link to +url+ with content +text+.  Handles the special cases
  # for img: and link: described under handle_regexp_HYPERLINK

  def gen_url url, text
    scheme, url, id = parse_url url

    if %w[http https link].include?(scheme) and
       url =~ /\.(gif|png|jpg|jpeg|bmp)$/ then
      "<img src=\"#{url}\" />"
    else
      text = text.sub %r%^#{scheme}:/*%i, ''
      text = text.sub %r%^[*\^](\d+)$%,   '\1'

      link = "<a#{id} href=\"#{url}\">#{text}</a>"

      link = "<sup>#{link}</sup>" if /"foot/ =~ id

      link
    end
  end

  ##
  # Determines the HTML list element for +list_type+ and +open_tag+

  def html_list_name(list_type, open_tag)
    tags = LIST_TYPE_TO_HTML[list_type]
    raise RDoc::Error, "Invalid list type: #{list_type.inspect}" unless tags
    tags[open_tag ? 0 : 1]
  end

  ##
  # Maps attributes to HTML tags

  def init_tags
    add_tag :BOLD, "<strong>", "</strong>"
    add_tag :TT,   "<code>",   "</code>"
    add_tag :EM,   "<em>",     "</em>"
  end

  ##
  # Returns the HTML tag for +list_type+, possible using a label from
  # +list_item+

  def list_item_start(list_item, list_type)
    case list_type
    when :BULLET, :LALPHA, :NUMBER, :UALPHA then
      "<li>"
    when :LABEL, :NOTE then
      Array(list_item.label).map do |label|
        "<dt>#{to_html label}\n"
      end.join << "<dd>"
    else
      raise RDoc::Error, "Invalid list type: #{list_type.inspect}"
    end
  end

  ##
  # Returns the HTML end-tag for +list_type+

  def list_end_for(list_type)
    case list_type
    when :BULLET, :LALPHA, :NUMBER, :UALPHA then
      "</li>"
    when :LABEL, :NOTE then
      "</dd>"
    else
      raise RDoc::Error, "Invalid list type: #{list_type.inspect}"
    end
  end

  ##
  # Returns true if text is valid ruby syntax

  def parseable? text
    verbose, $VERBOSE = $VERBOSE, nil
    eval("BEGIN {return true}\n#{text}")
  rescue SyntaxError
    false
  ensure
    $VERBOSE = verbose
  end

  ##
  # Converts +item+ to HTML using RDoc::Text#to_html

  def to_html item
    super convert_flow @am.flow item
  end

end

PKBH[�M����3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/raw.rbnu�[���# frozen_string_literal: true
##
# A section of text that is added to the output document as-is

class RDoc::Markup::Raw

  ##
  # The component parts of the list

  attr_reader :parts

  ##
  # Creates a new Raw containing +parts+

  def initialize *parts
    @parts = []
    @parts.concat parts
  end

  ##
  # Appends +text+

  def << text
    @parts << text
  end

  def == other # :nodoc:
    self.class == other.class and @parts == other.parts
  end

  ##
  # Calls #accept_raw+ on +visitor+

  def accept visitor
    visitor.accept_raw self
  end

  ##
  # Appends +other+'s parts

  def merge other
    @parts.concat other.parts
  end

  def pretty_print q # :nodoc:
    self.class.name =~ /.*::(\w{1,4})/i

    q.group 2, "[#{$1.downcase}: ", ']' do
      q.seplist @parts do |part|
        q.pp part
      end
    end
  end

  ##
  # Appends +texts+ onto this Paragraph

  def push *texts
    self.parts.concat texts
  end

  ##
  # The raw text

  def text
    @parts.join ' '
  end

end

PKBH[d����9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/paragraph.rbnu�[���# frozen_string_literal: true
##
# A Paragraph of text

class RDoc::Markup::Paragraph < RDoc::Markup::Raw

  ##
  # Calls #accept_paragraph on +visitor+

  def accept visitor
    visitor.accept_paragraph self
  end

  ##
  # Joins the raw paragraph text and converts inline HardBreaks to the
  # +hard_break+ text.

  def text hard_break = ''
    @parts.map do |part|
      if RDoc::Markup::HardBreak === part then
        hard_break
      else
        part
      end
    end.join
  end

end

PKBH[6%�VeeCshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_joined_paragraph.rbnu�[���# frozen_string_literal: true
##
# Joins the parts of an RDoc::Markup::Paragraph into a single String.
#
# This allows for easier maintenance and testing of Markdown support.
#
# This formatter only works on Paragraph instances.  Attempting to process
# other markup syntax items will not work.

class RDoc::Markup::ToJoinedParagraph < RDoc::Markup::Formatter

  def initialize # :nodoc:
    super nil
  end

  def start_accepting # :nodoc:
  end

  def end_accepting # :nodoc:
  end

  ##
  # Converts the parts of +paragraph+ to a single entry.

  def accept_paragraph paragraph
    parts = paragraph.parts.chunk do |part|
      String === part
    end.map do |string, chunk|
      string ? chunk.join.rstrip : chunk
    end.flatten

    paragraph.parts.replace parts
  end

  alias accept_block_quote     ignore
  alias accept_heading         ignore
  alias accept_list_end        ignore
  alias accept_list_item_end   ignore
  alias accept_list_item_start ignore
  alias accept_list_start      ignore
  alias accept_raw             ignore
  alias accept_rule            ignore
  alias accept_verbatim        ignore

end

PKBH[ߦo��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attr_changer.rbnu�[���# frozen_string_literal: true
class RDoc::Markup

  AttrChanger = Struct.new :turn_on, :turn_off # :nodoc:

end

##
# An AttrChanger records a change in attributes. It contains a bitmap of the
# attributes to turn on, and a bitmap of those to turn off.

class RDoc::Markup::AttrChanger

  def to_s # :nodoc:
    "Attr: +#{turn_on}/-#{turn_off}"
  end

  def inspect # :nodoc:
    '+%d/-%d' % [turn_on, turn_off]
  end

end

PKBH[�t�ԇ�:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/blank_line.rbnu�[���# frozen_string_literal: true
##
# An empty line.  This class is a singleton.

class RDoc::Markup::BlankLine

  @instance = new

  ##
  # RDoc::Markup::BlankLine is a singleton

  def self.new
    @instance
  end

  ##
  # Calls #accept_blank_line on +visitor+

  def accept visitor
    visitor.accept_blank_line self
  end

  def pretty_print q # :nodoc:
    q.text 'blankline'
  end

end

PKBH[f�Q`667share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_ansi.rbnu�[���# frozen_string_literal: true
##
# Outputs RDoc markup with vibrant ANSI color!

class RDoc::Markup::ToAnsi < RDoc::Markup::ToRdoc

  ##
  # Creates a new ToAnsi visitor that is ready to output vibrant ANSI color!

  def initialize markup = nil
    super

    @headings.clear
    @headings[1] = ["\e[1;32m", "\e[m"] # bold
    @headings[2] = ["\e[4;32m", "\e[m"] # underline
    @headings[3] = ["\e[32m",   "\e[m"] # just green
  end

  ##
  # Maps attributes to ANSI sequences

  def init_tags
    add_tag :BOLD, "\e[1m", "\e[m"
    add_tag :TT,   "\e[7m", "\e[m"
    add_tag :EM,   "\e[4m", "\e[m"
  end

  ##
  # Overrides indent width to ensure output lines up correctly.

  def accept_list_item_end list_item
    width = case @list_type.last
            when :BULLET then
              2
            when :NOTE, :LABEL then
              if @prefix then
                @res << @prefix.strip
                @prefix = nil
              end

              @res << "\n" unless res.length == 1
              2
            else
              bullet = @list_index.last.to_s
              @list_index[-1] = @list_index.last.succ
              bullet.length + 2
            end

    @indent -= width
  end

  ##
  # Adds coloring to note and label list items

  def accept_list_item_start list_item
    bullet = case @list_type.last
             when :BULLET then
               '*'
             when :NOTE, :LABEL then
               labels = Array(list_item.label).map do |label|
                 attributes(label).strip
               end.join "\n"

               labels << ":\n" unless labels.empty?

               labels
             else
               @list_index.last.to_s + '.'
             end

    case @list_type.last
    when :NOTE, :LABEL then
      @indent += 2
      @prefix = bullet + (' ' * @indent)
    else
      @prefix = (' ' * @indent) + bullet.ljust(bullet.length + 1)

      width = bullet.gsub(/\e\[[\d;]*m/, '').length + 1

      @indent += width
    end
  end

  ##
  # Starts accepting with a reset screen

  def start_accepting
    super

    @res = ["\e[0m"]
  end

end

PKBH[�ھ��:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attributes.rbnu�[���# frozen_string_literal: true
##
# We manage a set of attributes.  Each attribute has a symbol name and a bit
# value.

class RDoc::Markup::Attributes

  ##
  # The regexp handling attribute type. See RDoc::Markup#add_regexp_handling

  attr_reader :regexp_handling

  ##
  # Creates a new attributes set.

  def initialize
    @regexp_handling = 1

    @name_to_bitmap = [
      [:_REGEXP_HANDLING_, @regexp_handling],
    ]

    @next_bitmap = @regexp_handling << 1
  end

  ##
  # Returns a unique bit for +name+

  def bitmap_for name
    bitmap = @name_to_bitmap.assoc name

    unless bitmap then
      bitmap = @next_bitmap
      @next_bitmap <<= 1
      @name_to_bitmap << [name, bitmap]
    else
      bitmap = bitmap.last
    end

    bitmap
  end

  ##
  # Returns a string representation of +bitmap+

  def as_string bitmap
    return 'none' if bitmap.zero?
    res = []

    @name_to_bitmap.each do |name, bit|
      res << name if (bitmap & bit) != 0
    end

    res.join ','
  end

  ##
  # yields each attribute name in +bitmap+

  def each_name_of bitmap
    return enum_for __method__, bitmap unless block_given?

    @name_to_bitmap.each do |name, bit|
      next if bit == @regexp_handling

      yield name.to_s if (bitmap & bit) != 0
    end
  end

end

PKBH[� t{ll;share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_markdown.rbnu�[���# frozen_string_literal: true
# :markup: markdown

##
# Outputs parsed markup as Markdown

class RDoc::Markup::ToMarkdown < RDoc::Markup::ToRdoc

  ##
  # Creates a new formatter that will output Markdown format text

  def initialize markup = nil
    super

    @headings[1] = ['# ',      '']
    @headings[2] = ['## ',     '']
    @headings[3] = ['### ',    '']
    @headings[4] = ['#### ',   '']
    @headings[5] = ['##### ',  '']
    @headings[6] = ['###### ', '']

    add_regexp_handling_RDOCLINK
    add_regexp_handling_TIDYLINK

    @hard_break = "  \n"
  end

  ##
  # Maps attributes to HTML sequences

  def init_tags
    add_tag :BOLD, '**', '**'
    add_tag :EM,   '*',  '*'
    add_tag :TT,   '`',  '`'
  end

  ##
  # Adds a newline to the output

  def handle_regexp_HARD_BREAK target
    "  \n"
  end

  ##
  # Finishes consumption of `list`

  def accept_list_end list
    @res << "\n"

    super
  end

  ##
  # Finishes consumption of `list_item`

  def accept_list_item_end list_item
    width = case @list_type.last
            when :BULLET then
              4
            when :NOTE, :LABEL then
              use_prefix

              4
            else
              @list_index[-1] = @list_index.last.succ
              4
            end

    @indent -= width
  end

  ##
  # Prepares the visitor for consuming `list_item`

  def accept_list_item_start list_item
    type = @list_type.last

    case type
    when :NOTE, :LABEL then
      bullets = Array(list_item.label).map do |label|
        attributes(label).strip
      end.join "\n"

      bullets << "\n:"

      @prefix = ' ' * @indent
      @indent += 4
      @prefix << bullets + (' ' * (@indent - 1))
    else
      bullet = type == :BULLET ? '*' : @list_index.last.to_s + '.'
      @prefix = (' ' * @indent) + bullet.ljust(4)

      @indent += 4
    end
  end

  ##
  # Prepares the visitor for consuming `list`

  def accept_list_start list
    case list.type
    when :BULLET, :LABEL, :NOTE then
      @list_index << nil
    when :LALPHA, :NUMBER, :UALPHA then
      @list_index << 1
    else
      raise RDoc::Error, "invalid list type #{list.type}"
    end

    @list_width << 4
    @list_type << list.type
  end

  ##
  # Adds `rule` to the output

  def accept_rule rule
    use_prefix or @res << ' ' * @indent
    @res << '-' * 3
    @res << "\n"
  end

  ##
  # Outputs `verbatim` indented 4 columns

  def accept_verbatim verbatim
    indent = ' ' * (@indent + 4)

    verbatim.parts.each do |part|
      @res << indent unless part == "\n"
      @res << part
    end

    @res << "\n"
  end

  ##
  # Creates a Markdown-style URL from +url+ with +text+.

  def gen_url url, text
    scheme, url, = parse_url url

    "[#{text.sub(%r{^#{scheme}:/*}i, '')}](#{url})"
  end

  ##
  # Handles <tt>rdoc-</tt> type links for footnotes.

  def handle_rdoc_link url
    case url
    when /^rdoc-ref:/ then
      $'
    when /^rdoc-label:footmark-(\d+)/ then
      "[^#{$1}]:"
    when /^rdoc-label:foottext-(\d+)/ then
      "[^#{$1}]"
    when /^rdoc-label:label-/ then
      gen_url url, $'
    when /^rdoc-image:/ then
      "![](#{$'})"
    when /^rdoc-[a-z]+:/ then
      $'
    end
  end

  ##
  # Converts the RDoc markup tidylink into a Markdown.style link.

  def handle_regexp_TIDYLINK target
    text = target.text

    return text unless text =~ /\{(.*?)\}\[(.*?)\]/ or text =~ /(\S+)\[(.*?)\]/

    label = $1
    url   = $2

    if url =~ /^rdoc-label:foot/ then
      handle_rdoc_link url
    else
      gen_url url, label
    end
  end

  ##
  # Converts the rdoc-...: links into a Markdown.style links.

  def handle_regexp_RDOCLINK target
    handle_rdoc_link target.text
  end

end

PKBH[�y ��:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/hard_break.rbnu�[���# frozen_string_literal: true
##
# A hard-break in the middle of a paragraph.

class RDoc::Markup::HardBreak

  @instance = new

  ##
  # RDoc::Markup::HardBreak is a singleton

  def self.new
    @instance
  end

  ##
  # Calls #accept_hard_break on +visitor+

  def accept visitor
    visitor.accept_hard_break self
  end

  def == other # :nodoc:
    self.class === other
  end

  def pretty_print q # :nodoc:
    q.text "[break]"
  end

end

PKBH[[n�A##8share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/verbatim.rbnu�[���# frozen_string_literal: true
##
# A section of verbatim text

class RDoc::Markup::Verbatim < RDoc::Markup::Raw

  ##
  # Format of this verbatim section

  attr_accessor :format

  def initialize *parts # :nodoc:
    super

    @format = nil
  end

  def == other # :nodoc:
    super and @format == other.format
  end

  ##
  # Calls #accept_verbatim on +visitor+

  def accept visitor
    visitor.accept_verbatim self
  end

  ##
  # Collapses 3+ newlines into two newlines

  def normalize
    parts = []

    newlines = 0

    @parts.each do |part|
      case part
      when /^\s*\n/ then
        newlines += 1
        parts << part if newlines == 1
      else
        newlines = 0
        parts << part
      end
    end

    parts.pop if parts.last =~ /\A\r?\n\z/

    @parts = parts
  end

  def pretty_print q # :nodoc:
    self.class.name =~ /.*::(\w{1,4})/i

    q.group 2, "[#{$1.downcase}: ", ']' do
      if @format then
        q.text "format: #{@format}"
        q.breakable
      end

      q.seplist @parts do |part|
        q.pp part
      end
    end
  end

  ##
  # Is this verbatim section Ruby code?

  def ruby?
    @format ||= nil # TODO for older ri data, switch the tree to marshal_dump
    @format == :ruby
  end

  ##
  # The text of the section

  def text
    @parts.join
  end

end

PKBH[mh
fE�E�1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown.rbnu�[���# coding: UTF-8
# frozen_string_literal: true
# :markup: markdown

##
# RDoc::Markdown as described by the [markdown syntax][syntax].
#
# To choose Markdown as your only default format see
# RDoc::Options@Saved+Options for instructions on setting up a `.doc_options`
# file to store your project default.
#
# ## Usage
#
# Here is a brief example of using this parse to read a markdown file by hand.
#
#     data = File.read("README.md")
#     formatter = RDoc::Markup::ToHtml.new(RDoc::Options.new, nil)
#     html = RDoc::Markdown.parse(data).accept(formatter)
#
#     # do something with html
#
# ## Extensions
#
# The following markdown extensions are supported by the parser, but not all
# are used in RDoc output by default.
#
# ### RDoc
#
# The RDoc Markdown parser has the following built-in behaviors that cannot be
# disabled.
#
# Underscores embedded in words are never interpreted as emphasis.  (While the
# [markdown dingus][dingus] emphasizes in-word underscores, neither the
# Markdown syntax nor MarkdownTest mention this behavior.)
#
# For HTML output, RDoc always auto-links bare URLs.
#
# ### Break on Newline
#
# The break_on_newline extension converts all newlines into hard line breaks
# as in [Github Flavored Markdown][GFM].  This extension is disabled by
# default.
#
# ### CSS
#
# The #css extension enables CSS blocks to be included in the output, but they
# are not used for any built-in RDoc output format.  This extension is disabled
# by default.
#
# Example:
#
#     <style type="text/css">
#     h1 { font-size: 3em }
#     </style>
#
# ### Definition Lists
#
# The definition_lists extension allows definition lists using the [PHP
# Markdown Extra syntax][PHPE], but only one label and definition are supported
# at this time.  This extension is enabled by default.
#
# Example:
#
# ```
# cat
# :   A small furry mammal
# that seems to sleep a lot
#
# ant
# :   A little insect that is known
# to enjoy picnics
#
# ```
#
# Produces:
#
# cat
# :   A small furry mammal
# that seems to sleep a lot
#
# ant
# :   A little insect that is known
# to enjoy picnics
#
# ### Strike
#
# Example:
#
# ```
# This is ~~striked~~.
# ```
#
# Produces:
#
# This is ~~striked~~.
#
# ### Github
#
# The #github extension enables a partial set of [Github Flavored Markdown]
# [GFM].  This extension is enabled by default.
#
# Supported github extensions include:
#
# #### Fenced code blocks
#
# Use ` ``` ` around a block of code instead of indenting it four spaces.
#
# #### Syntax highlighting
#
# Use ` ``` ruby ` as the start of a code fence to add syntax highlighting.
# (Currently only `ruby` syntax is supported).
#
# ### HTML
#
# Enables raw HTML to be included in the output.  This extension is enabled by
# default.
#
# Example:
#
#     <table>
#     ...
#     </table>
#
# ### Notes
#
# The #notes extension enables footnote support.  This extension is enabled by
# default.
#
# Example:
#
#     Here is some text[^1] including an inline footnote ^[for short footnotes]
#
#     ...
#
#     [^1]: With the footnote text down at the bottom
#
# Produces:
#
# Here is some text[^1] including an inline footnote ^[for short footnotes]
#
# [^1]: With the footnote text down at the bottom
#
# ## Limitations
#
# * Link titles are not used
# * Footnotes are collapsed into a single paragraph
#
# ## Author
#
# This markdown parser is a port to kpeg from [peg-markdown][pegmarkdown] by
# John MacFarlane.
#
# It is used under the MIT license:
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# The port to kpeg was performed by Eric Hodel and Evan Phoenix
#
# [dingus]: http://daringfireball.net/projects/markdown/dingus
# [GFM]: http://github.github.com/github-flavored-markdown/
# [pegmarkdown]: https://github.com/jgm/peg-markdown
# [PHPE]: http://michelf.com/projects/php-markdown/extra/#def-list
# [syntax]: http://daringfireball.net/projects/markdown/syntax
#--
# Last updated to jgm/peg-markdown commit 8f8fc22ef0
class RDoc::Markdown
  # :stopdoc:

    # This is distinct from setup_parser so that a standalone parser
    # can redefine #initialize and still have access to the proper
    # parser setup code.
    def initialize(str, debug=false)
      setup_parser(str, debug)
    end



    # Prepares for parsing +str+.  If you define a custom initialize you must
    # call this method before #parse
    def setup_parser(str, debug=false)
      set_string str, 0
      @memoizations = Hash.new { |h,k| h[k] = {} }
      @result = nil
      @failed_rule = nil
      @failing_rule_offset = -1

      setup_foreign_grammar
    end

    attr_reader :string
    attr_reader :failing_rule_offset
    attr_accessor :result, :pos

    def current_column(target=pos)
      if c = string.rindex("\n", target-1)
        return target - c - 1
      end

      target + 1
    end

    def current_line(target=pos)
      cur_offset = 0
      cur_line = 0

      string.each_line do |line|
        cur_line += 1
        cur_offset += line.size
        return cur_line if cur_offset >= target
      end

      -1
    end

    def lines
      lines = []
      string.each_line { |l| lines << l }
      lines
    end



    def get_text(start)
      @string[start..@pos-1]
    end

    # Sets the string and current parsing position for the parser.
    def set_string string, pos
      @string = string
      @string_size = string ? string.size : 0
      @pos = pos
    end

    def show_pos
      width = 10
      if @pos < width
        "#{@pos} (\"#{@string[0,@pos]}\" @ \"#{@string[@pos,width]}\")"
      else
        "#{@pos} (\"... #{@string[@pos - width, width]}\" @ \"#{@string[@pos,width]}\")"
      end
    end

    def failure_info
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        "line #{l}, column #{c}: failed rule '#{info.name}' = '#{info.rendered}'"
      else
        "line #{l}, column #{c}: failed rule '#{@failed_rule}'"
      end
    end

    def failure_caret
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      line = lines[l-1]
      "#{line}\n#{' ' * (c - 1)}^"
    end

    def failure_character
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset
      lines[l-1][c-1, 1]
    end

    def failure_oneline
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      char = lines[l-1][c-1, 1]

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        "@#{l}:#{c} failed rule '#{info.name}', got '#{char}'"
      else
        "@#{l}:#{c} failed rule '#{@failed_rule}', got '#{char}'"
      end
    end

    class ParseError < RuntimeError
    end

    def raise_error
      raise ParseError, failure_oneline
    end

    def show_error(io=STDOUT)
      error_pos = @failing_rule_offset
      line_no = current_line(error_pos)
      col_no = current_column(error_pos)

      io.puts "On line #{line_no}, column #{col_no}:"

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        io.puts "Failed to match '#{info.rendered}' (rule '#{info.name}')"
      else
        io.puts "Failed to match rule '#{@failed_rule}'"
      end

      io.puts "Got: #{string[error_pos,1].inspect}"
      line = lines[line_no-1]
      io.puts "=> #{line}"
      io.print(" " * (col_no + 3))
      io.puts "^"
    end

    def set_failed_rule(name)
      if @pos > @failing_rule_offset
        @failed_rule = name
        @failing_rule_offset = @pos
      end
    end

    attr_reader :failed_rule

    def match_string(str)
      len = str.size
      if @string[pos,len] == str
        @pos += len
        return str
      end

      return nil
    end

    def scan(reg)
      if m = reg.match(@string[@pos..-1])
        width = m.end(0)
        @pos += width
        return true
      end

      return nil
    end

    if "".respond_to? :ord
      def get_byte
        if @pos >= @string_size
          return nil
        end

        s = @string[@pos].ord
        @pos += 1
        s
      end
    else
      def get_byte
        if @pos >= @string_size
          return nil
        end

        s = @string[@pos]
        @pos += 1
        s
      end
    end

    def parse(rule=nil)
      # We invoke the rules indirectly via apply
      # instead of by just calling them as methods because
      # if the rules use left recursion, apply needs to
      # manage that.

      if !rule
        apply(:_root)
      else
        method = rule.gsub("-","_hyphen_")
        apply :"_#{method}"
      end
    end

    class MemoEntry
      def initialize(ans, pos)
        @ans = ans
        @pos = pos
        @result = nil
        @set = false
        @left_rec = false
      end

      attr_reader :ans, :pos, :result, :set
      attr_accessor :left_rec

      def move!(ans, pos, result)
        @ans = ans
        @pos = pos
        @result = result
        @set = true
        @left_rec = false
      end
    end

    def external_invoke(other, rule, *args)
      old_pos = @pos
      old_string = @string

      set_string other.string, other.pos

      begin
        if val = __send__(rule, *args)
          other.pos = @pos
          other.result = @result
        else
          other.set_failed_rule "#{self.class}##{rule}"
        end
        val
      ensure
        set_string old_string, old_pos
      end
    end

    def apply_with_args(rule, *args)
      memo_key = [rule, args]
      if m = @memoizations[memo_key][@pos]
        @pos = m.pos
        if !m.set
          m.left_rec = true
          return nil
        end

        @result = m.result

        return m.ans
      else
        m = MemoEntry.new(nil, @pos)
        @memoizations[memo_key][@pos] = m
        start_pos = @pos

        ans = __send__ rule, *args

        lr = m.left_rec

        m.move! ans, @pos, @result

        # Don't bother trying to grow the left recursion
        # if it's failing straight away (thus there is no seed)
        if ans and lr
          return grow_lr(rule, args, start_pos, m)
        else
          return ans
        end
      end
    end

    def apply(rule)
      if m = @memoizations[rule][@pos]
        @pos = m.pos
        if !m.set
          m.left_rec = true
          return nil
        end

        @result = m.result

        return m.ans
      else
        m = MemoEntry.new(nil, @pos)
        @memoizations[rule][@pos] = m
        start_pos = @pos

        ans = __send__ rule

        lr = m.left_rec

        m.move! ans, @pos, @result

        # Don't bother trying to grow the left recursion
        # if it's failing straight away (thus there is no seed)
        if ans and lr
          return grow_lr(rule, nil, start_pos, m)
        else
          return ans
        end
      end
    end

    def grow_lr(rule, args, start_pos, m)
      while true
        @pos = start_pos
        @result = m.result

        if args
          ans = __send__ rule, *args
        else
          ans = __send__ rule
        end
        return nil unless ans

        break if @pos <= m.pos

        m.move! ans, @pos, @result
      end

      @result = m.result
      @pos = m.pos
      return m.ans
    end

    class RuleInfo
      def initialize(name, rendered)
        @name = name
        @rendered = rendered
      end

      attr_reader :name, :rendered
    end

    def self.rule_info(name, rendered)
      RuleInfo.new(name, rendered)
    end


  # :startdoc:



  require 'rdoc'
  require 'rdoc/markup/to_joined_paragraph'
  require 'rdoc/markdown/entities'

  require 'rdoc/markdown/literals'

  ##
  # Supported extensions

  EXTENSIONS = []

  ##
  # Extensions enabled by default

  DEFAULT_EXTENSIONS = [
    :definition_lists,
    :github,
    :html,
    :notes,
    :strike,
  ]

  # :section: Extensions

  ##
  # Creates extension methods for the `name` extension to enable and disable
  # the extension and to query if they are active.

  def self.extension name
    EXTENSIONS << name

    define_method "#{name}?" do
      extension? name
    end

    define_method "#{name}=" do |enable|
      extension name, enable
    end
  end

  ##
  # Converts all newlines into hard breaks

  extension :break_on_newline

  ##
  # Allow style blocks

  extension :css

  ##
  # Allow PHP Markdown Extras style definition lists

  extension :definition_lists

  ##
  # Allow Github Flavored Markdown

  extension :github

  ##
  # Allow HTML

  extension :html

  ##
  # Enables the notes extension

  extension :notes

  ##
  # Enables the strike extension

  extension :strike

  # :section:

  ##
  # Parses the `markdown` document into an RDoc::Document using the default
  # extensions.

  def self.parse markdown
    parser = new

    parser.parse markdown
  end

  # TODO remove when kpeg 0.10 is released
  alias orig_initialize initialize # :nodoc:

  ##
  # Creates a new markdown parser that enables the given +extensions+.

  def initialize extensions = DEFAULT_EXTENSIONS, debug = false
    @debug      = debug
    @formatter  = RDoc::Markup::ToJoinedParagraph.new
    @extensions = extensions

    @references          = nil
    @unlinked_references = nil

    @footnotes       = nil
    @note_order      = nil
  end

  ##
  # Wraps `text` in emphasis for rdoc inline formatting

  def emphasis text
    if text =~ /\A[a-z\d.\/]+\z/i then
      "_#{text}_"
    else
      "<em>#{text}</em>"
    end
  end

  ##
  # :category: Extensions
  #
  # Is the extension `name` enabled?

  def extension? name
    @extensions.include? name
  end

  ##
  # :category: Extensions
  #
  # Enables or disables the extension with `name`

  def extension name, enable
    if enable then
      @extensions |= [name]
    else
      @extensions -= [name]
    end
  end

  ##
  # Parses `text` in a clone of this parser.  This is used for handling nested
  # lists the same way as markdown_parser.

  def inner_parse text # :nodoc:
    parser = clone

    parser.setup_parser text, @debug

    parser.peg_parse

    doc = parser.result

    doc.accept @formatter

    doc.parts
  end

  ##
  # Finds a link reference for `label` and creates a new link to it with
  # `content` as the link text.  If `label` was not encountered in the
  # reference-gathering parser pass the label and content are reconstructed
  # with the linking `text` (usually whitespace).

  def link_to content, label = content, text = nil
    raise ParseError, 'enable notes extension' if
      content.start_with? '^' and label.equal? content

    if ref = @references[label] then
      "{#{content}}[#{ref}]"
    elsif label.equal? content then
      "[#{content}]#{text}"
    else
      "[#{content}]#{text}[#{label}]"
    end
  end

  ##
  # Creates an RDoc::Markup::ListItem by parsing the `unparsed` content from
  # the first parsing pass.

  def list_item_from unparsed
    parsed = inner_parse unparsed.join
    RDoc::Markup::ListItem.new nil, *parsed
  end

  ##
  # Stores `label` as a note and fills in previously unknown note references.

  def note label
    #foottext = "rdoc-label:foottext-#{label}:footmark-#{label}"

    #ref.replace foottext if ref = @unlinked_notes.delete(label)

    @notes[label] = foottext

    #"{^1}[rdoc-label:footmark-#{label}:foottext-#{label}] "
  end

  ##
  # Creates a new link for the footnote `reference` and adds the reference to
  # the note order list for proper display at the end of the document.

  def note_for ref
    @note_order << ref

    label = @note_order.length

    "{*#{label}}[rdoc-label:foottext-#{label}:footmark-#{label}]"
  end

  ##
  # The internal kpeg parse method

  alias peg_parse parse # :nodoc:

  ##
  # Creates an RDoc::Markup::Paragraph from `parts` and including
  # extension-specific behavior

  def paragraph parts
    parts = parts.map do |part|
      if "\n" == part then
        RDoc::Markup::HardBreak.new
      else
        part
      end
    end if break_on_newline?

    RDoc::Markup::Paragraph.new(*parts)
  end

  ##
  # Parses `markdown` into an RDoc::Document

  def parse markdown
    @references          = {}
    @unlinked_references = {}

    markdown += "\n\n"

    setup_parser markdown, @debug
    peg_parse 'References'

    if notes? then
      @footnotes       = {}

      setup_parser markdown, @debug
      peg_parse 'Notes'

      # using note_order on the first pass would be a bug
      @note_order      = []
    end

    setup_parser markdown, @debug
    peg_parse

    doc = result

    if notes? and not @footnotes.empty? then
      doc << RDoc::Markup::Rule.new(1)

      @note_order.each_with_index do |ref, index|
        label = index + 1
        note = @footnotes[ref]

        link = "{^#{label}}[rdoc-label:footmark-#{label}:foottext-#{label}] "
        note.parts.unshift link

        doc << note
      end
    end

    doc.accept @formatter

    doc
  end

  ##
  # Stores `label` as a reference to `link` and fills in previously unknown
  # link references.

  def reference label, link
    if ref = @unlinked_references.delete(label) then
      ref.replace link
    end

    @references[label] = link
  end

  ##
  # Wraps `text` in strong markup for rdoc inline formatting

  def strong text
    if text =~ /\A[a-z\d.\/-]+\z/i then
      "*#{text}*"
    else
      "<b>#{text}</b>"
    end
  end

  ##
  # Wraps `text` in strike markup for rdoc inline formatting

  def strike text
    if text =~ /\A[a-z\d.\/-]+\z/i then
      "~#{text}~"
    else
      "<s>#{text}</s>"
    end
  end


  # :stopdoc:
  def setup_foreign_grammar
    @_grammar_literals = RDoc::Markdown::Literals.new(nil)
  end

  # root = Doc
  def _root
    _tmp = apply(:_Doc)
    set_failed_rule :_root unless _tmp
    return _tmp
  end

  # Doc = BOM? Block*:a { RDoc::Markup::Document.new(*a.compact) }
  def _Doc

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = apply(:_BOM)
      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _ary = []
      while true
        _tmp = apply(:_Block)
        _ary << @result if _tmp
        break unless _tmp
      end
      _tmp = true
      @result = _ary
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Document.new(*a.compact) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Doc unless _tmp
    return _tmp
  end

  # Block = @BlankLine* (BlockQuote | Verbatim | CodeFence | Note | Reference | HorizontalRule | Heading | OrderedList | BulletList | DefinitionList | HtmlBlock | StyleBlock | Para | Plain)
  def _Block

    _save = self.pos
    while true # sequence
      while true
        _tmp = _BlankLine()
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_BlockQuote)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Verbatim)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_CodeFence)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Note)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Reference)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_HorizontalRule)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Heading)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_OrderedList)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_BulletList)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_DefinitionList)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_HtmlBlock)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_StyleBlock)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Para)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_Plain)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Block unless _tmp
    return _tmp
  end

  # Para = @NonindentSpace Inlines:a @BlankLine+ { paragraph a }
  def _Para

    _save = self.pos
    while true # sequence
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Inlines)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  paragraph a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Para unless _tmp
    return _tmp
  end

  # Plain = Inlines:a { paragraph a }
  def _Plain

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Inlines)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  paragraph a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Plain unless _tmp
    return _tmp
  end

  # AtxInline = !@Newline !(@Sp /#*/ @Sp @Newline) Inline
  def _AtxInline

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _Newline()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _tmp = _Sp()
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = scan(/\A(?-mix:#*)/)
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = _Sp()
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = _Newline()
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      _tmp = _tmp ? nil : true
      self.pos = _save2
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Inline)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_AtxInline unless _tmp
    return _tmp
  end

  # AtxStart = < /\#{1,6}/ > { text.length }
  def _AtxStart

    _save = self.pos
    while true # sequence
      _text_start = self.pos
      _tmp = scan(/\A(?-mix:\#{1,6})/)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text.length ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_AtxStart unless _tmp
    return _tmp
  end

  # AtxHeading = AtxStart:s @Sp AtxInline+:a (@Sp /#*/ @Sp)? @Newline { RDoc::Markup::Heading.new(s, a.join) }
  def _AtxHeading

    _save = self.pos
    while true # sequence
      _tmp = apply(:_AtxStart)
      s = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _ary = []
      _tmp = apply(:_AtxInline)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_AtxInline)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save1
      end
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _tmp = _Sp()
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = scan(/\A(?-mix:#*)/)
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = _Sp()
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      unless _tmp
        _tmp = true
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Heading.new(s, a.join) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_AtxHeading unless _tmp
    return _tmp
  end

  # SetextHeading = (SetextHeading1 | SetextHeading2)
  def _SetextHeading

    _save = self.pos
    while true # choice
      _tmp = apply(:_SetextHeading1)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_SetextHeading2)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_SetextHeading unless _tmp
    return _tmp
  end

  # SetextBottom1 = /={1,}/ @Newline
  def _SetextBottom1

    _save = self.pos
    while true # sequence
      _tmp = scan(/\A(?-mix:={1,})/)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_SetextBottom1 unless _tmp
    return _tmp
  end

  # SetextBottom2 = /-{1,}/ @Newline
  def _SetextBottom2

    _save = self.pos
    while true # sequence
      _tmp = scan(/\A(?-mix:-{1,})/)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_SetextBottom2 unless _tmp
    return _tmp
  end

  # SetextHeading1 = &(@RawLine SetextBottom1) @StartList:a (!@Endline Inline:b { a << b })+ @Sp @Newline SetextBottom1 { RDoc::Markup::Heading.new(1, a.join) }
  def _SetextHeading1

    _save = self.pos
    while true # sequence
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = _RawLine()
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_SetextBottom1)
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save3 = self.pos

      _save4 = self.pos
      while true # sequence
        _save5 = self.pos
        _tmp = _Endline()
        _tmp = _tmp ? nil : true
        self.pos = _save5
        unless _tmp
          self.pos = _save4
          break
        end
        _tmp = apply(:_Inline)
        b = @result
        unless _tmp
          self.pos = _save4
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save4
        end
        break
      end # end sequence

      if _tmp
        while true

          _save6 = self.pos
          while true # sequence
            _save7 = self.pos
            _tmp = _Endline()
            _tmp = _tmp ? nil : true
            self.pos = _save7
            unless _tmp
              self.pos = _save6
              break
            end
            _tmp = apply(:_Inline)
            b = @result
            unless _tmp
              self.pos = _save6
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save6
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save3
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_SetextBottom1)
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Heading.new(1, a.join) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_SetextHeading1 unless _tmp
    return _tmp
  end

  # SetextHeading2 = &(@RawLine SetextBottom2) @StartList:a (!@Endline Inline:b { a << b })+ @Sp @Newline SetextBottom2 { RDoc::Markup::Heading.new(2, a.join) }
  def _SetextHeading2

    _save = self.pos
    while true # sequence
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = _RawLine()
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_SetextBottom2)
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save3 = self.pos

      _save4 = self.pos
      while true # sequence
        _save5 = self.pos
        _tmp = _Endline()
        _tmp = _tmp ? nil : true
        self.pos = _save5
        unless _tmp
          self.pos = _save4
          break
        end
        _tmp = apply(:_Inline)
        b = @result
        unless _tmp
          self.pos = _save4
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save4
        end
        break
      end # end sequence

      if _tmp
        while true

          _save6 = self.pos
          while true # sequence
            _save7 = self.pos
            _tmp = _Endline()
            _tmp = _tmp ? nil : true
            self.pos = _save7
            unless _tmp
              self.pos = _save6
              break
            end
            _tmp = apply(:_Inline)
            b = @result
            unless _tmp
              self.pos = _save6
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save6
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save3
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_SetextBottom2)
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Heading.new(2, a.join) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_SetextHeading2 unless _tmp
    return _tmp
  end

  # Heading = (SetextHeading | AtxHeading)
  def _Heading

    _save = self.pos
    while true # choice
      _tmp = apply(:_SetextHeading)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_AtxHeading)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Heading unless _tmp
    return _tmp
  end

  # BlockQuote = BlockQuoteRaw:a { RDoc::Markup::BlockQuote.new(*a) }
  def _BlockQuote

    _save = self.pos
    while true # sequence
      _tmp = apply(:_BlockQuoteRaw)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::BlockQuote.new(*a) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_BlockQuote unless _tmp
    return _tmp
  end

  # BlockQuoteRaw = @StartList:a (">" " "? Line:l { a << l } (!">" !@BlankLine Line:c { a << c })* (@BlankLine:n { a << n })*)+ { inner_parse a.join }
  def _BlockQuoteRaw

    _save = self.pos
    while true # sequence
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = match_string(">")
        unless _tmp
          self.pos = _save2
          break
        end
        _save3 = self.pos
        _tmp = match_string(" ")
        unless _tmp
          _tmp = true
          self.pos = _save3
        end
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_Line)
        l = @result
        unless _tmp
          self.pos = _save2
          break
        end
        @result = begin;  a << l ; end
        _tmp = true
        unless _tmp
          self.pos = _save2
          break
        end
        while true

          _save5 = self.pos
          while true # sequence
            _save6 = self.pos
            _tmp = match_string(">")
            _tmp = _tmp ? nil : true
            self.pos = _save6
            unless _tmp
              self.pos = _save5
              break
            end
            _save7 = self.pos
            _tmp = _BlankLine()
            _tmp = _tmp ? nil : true
            self.pos = _save7
            unless _tmp
              self.pos = _save5
              break
            end
            _tmp = apply(:_Line)
            c = @result
            unless _tmp
              self.pos = _save5
              break
            end
            @result = begin;  a << c ; end
            _tmp = true
            unless _tmp
              self.pos = _save5
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save2
          break
        end
        while true

          _save9 = self.pos
          while true # sequence
            _tmp = _BlankLine()
            n = @result
            unless _tmp
              self.pos = _save9
              break
            end
            @result = begin;  a << n ; end
            _tmp = true
            unless _tmp
              self.pos = _save9
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        while true

          _save10 = self.pos
          while true # sequence
            _tmp = match_string(">")
            unless _tmp
              self.pos = _save10
              break
            end
            _save11 = self.pos
            _tmp = match_string(" ")
            unless _tmp
              _tmp = true
              self.pos = _save11
            end
            unless _tmp
              self.pos = _save10
              break
            end
            _tmp = apply(:_Line)
            l = @result
            unless _tmp
              self.pos = _save10
              break
            end
            @result = begin;  a << l ; end
            _tmp = true
            unless _tmp
              self.pos = _save10
              break
            end
            while true

              _save13 = self.pos
              while true # sequence
                _save14 = self.pos
                _tmp = match_string(">")
                _tmp = _tmp ? nil : true
                self.pos = _save14
                unless _tmp
                  self.pos = _save13
                  break
                end
                _save15 = self.pos
                _tmp = _BlankLine()
                _tmp = _tmp ? nil : true
                self.pos = _save15
                unless _tmp
                  self.pos = _save13
                  break
                end
                _tmp = apply(:_Line)
                c = @result
                unless _tmp
                  self.pos = _save13
                  break
                end
                @result = begin;  a << c ; end
                _tmp = true
                unless _tmp
                  self.pos = _save13
                end
                break
              end # end sequence

              break unless _tmp
            end
            _tmp = true
            unless _tmp
              self.pos = _save10
              break
            end
            while true

              _save17 = self.pos
              while true # sequence
                _tmp = _BlankLine()
                n = @result
                unless _tmp
                  self.pos = _save17
                  break
                end
                @result = begin;  a << n ; end
                _tmp = true
                unless _tmp
                  self.pos = _save17
                end
                break
              end # end sequence

              break unless _tmp
            end
            _tmp = true
            unless _tmp
              self.pos = _save10
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  inner_parse a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_BlockQuoteRaw unless _tmp
    return _tmp
  end

  # NonblankIndentedLine = !@BlankLine IndentedLine
  def _NonblankIndentedLine

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _BlankLine()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_IndentedLine)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_NonblankIndentedLine unless _tmp
    return _tmp
  end

  # VerbatimChunk = @BlankLine*:a NonblankIndentedLine+:b { a.concat b }
  def _VerbatimChunk

    _save = self.pos
    while true # sequence
      _ary = []
      while true
        _tmp = _BlankLine()
        _ary << @result if _tmp
        break unless _tmp
      end
      _tmp = true
      @result = _ary
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _ary = []
      _tmp = apply(:_NonblankIndentedLine)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_NonblankIndentedLine)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save2
      end
      b = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a.concat b ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_VerbatimChunk unless _tmp
    return _tmp
  end

  # Verbatim = VerbatimChunk+:a { RDoc::Markup::Verbatim.new(*a.flatten) }
  def _Verbatim

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _ary = []
      _tmp = apply(:_VerbatimChunk)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_VerbatimChunk)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save1
      end
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Verbatim.new(*a.flatten) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Verbatim unless _tmp
    return _tmp
  end

  # HorizontalRule = @NonindentSpace ("*" @Sp "*" @Sp "*" (@Sp "*")* | "-" @Sp "-" @Sp "-" (@Sp "-")* | "_" @Sp "_" @Sp "_" (@Sp "_")*) @Sp @Newline @BlankLine+ { RDoc::Markup::Rule.new 1 }
  def _HorizontalRule

    _save = self.pos
    while true # sequence
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice

        _save2 = self.pos
        while true # sequence
          _tmp = match_string("*")
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = match_string("*")
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = match_string("*")
          unless _tmp
            self.pos = _save2
            break
          end
          while true

            _save4 = self.pos
            while true # sequence
              _tmp = _Sp()
              unless _tmp
                self.pos = _save4
                break
              end
              _tmp = match_string("*")
              unless _tmp
                self.pos = _save4
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save5 = self.pos
        while true # sequence
          _tmp = match_string("-")
          unless _tmp
            self.pos = _save5
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save5
            break
          end
          _tmp = match_string("-")
          unless _tmp
            self.pos = _save5
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save5
            break
          end
          _tmp = match_string("-")
          unless _tmp
            self.pos = _save5
            break
          end
          while true

            _save7 = self.pos
            while true # sequence
              _tmp = _Sp()
              unless _tmp
                self.pos = _save7
                break
              end
              _tmp = match_string("-")
              unless _tmp
                self.pos = _save7
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
          unless _tmp
            self.pos = _save5
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save8 = self.pos
        while true # sequence
          _tmp = match_string("_")
          unless _tmp
            self.pos = _save8
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save8
            break
          end
          _tmp = match_string("_")
          unless _tmp
            self.pos = _save8
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save8
            break
          end
          _tmp = match_string("_")
          unless _tmp
            self.pos = _save8
            break
          end
          while true

            _save10 = self.pos
            while true # sequence
              _tmp = _Sp()
              unless _tmp
                self.pos = _save10
                break
              end
              _tmp = match_string("_")
              unless _tmp
                self.pos = _save10
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
          unless _tmp
            self.pos = _save8
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      _save11 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save11
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::Rule.new 1 ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HorizontalRule unless _tmp
    return _tmp
  end

  # Bullet = !HorizontalRule @NonindentSpace /[+*-]/ @Spacechar+
  def _Bullet

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = apply(:_HorizontalRule)
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = scan(/\A(?-mix:[+*-])/)
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = _Spacechar()
      if _tmp
        while true
          _tmp = _Spacechar()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Bullet unless _tmp
    return _tmp
  end

  # BulletList = &Bullet (ListTight | ListLoose):a { RDoc::Markup::List.new(:BULLET, *a) }
  def _BulletList

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = apply(:_Bullet)
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_ListTight)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_ListLoose)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::List.new(:BULLET, *a) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_BulletList unless _tmp
    return _tmp
  end

  # ListTight = ListItemTight+:a @BlankLine* !(Bullet | Enumerator) { a }
  def _ListTight

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _ary = []
      _tmp = apply(:_ListItemTight)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_ListItemTight)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save1
      end
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = _BlankLine()
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _save3 = self.pos

      _save4 = self.pos
      while true # choice
        _tmp = apply(:_Bullet)
        break if _tmp
        self.pos = _save4
        _tmp = apply(:_Enumerator)
        break if _tmp
        self.pos = _save4
        break
      end # end choice

      _tmp = _tmp ? nil : true
      self.pos = _save3
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListTight unless _tmp
    return _tmp
  end

  # ListLoose = @StartList:a (ListItem:b @BlankLine* { a << b })+ { a }
  def _ListLoose

    _save = self.pos
    while true # sequence
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = apply(:_ListItem)
        b = @result
        unless _tmp
          self.pos = _save2
          break
        end
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save2
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        while true

          _save4 = self.pos
          while true # sequence
            _tmp = apply(:_ListItem)
            b = @result
            unless _tmp
              self.pos = _save4
              break
            end
            while true
              _tmp = _BlankLine()
              break unless _tmp
            end
            _tmp = true
            unless _tmp
              self.pos = _save4
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListLoose unless _tmp
    return _tmp
  end

  # ListItem = (Bullet | Enumerator) @StartList:a ListBlock:b { a << b } (ListContinuationBlock:c { a.push(*c) })* { list_item_from a }
  def _ListItem

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_Bullet)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_Enumerator)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_ListBlock)
      b = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a << b ; end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save3 = self.pos
        while true # sequence
          _tmp = apply(:_ListContinuationBlock)
          c = @result
          unless _tmp
            self.pos = _save3
            break
          end
          @result = begin;  a.push(*c) ; end
          _tmp = true
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  list_item_from a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListItem unless _tmp
    return _tmp
  end

  # ListItemTight = (Bullet | Enumerator) ListBlock:a (!@BlankLine ListContinuationBlock:b { a.push(*b) })* !ListContinuationBlock { list_item_from a }
  def _ListItemTight

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_Bullet)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_Enumerator)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_ListBlock)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = _BlankLine()
          _tmp = _tmp ? nil : true
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_ListContinuationBlock)
          b = @result
          unless _tmp
            self.pos = _save3
            break
          end
          @result = begin;  a.push(*b) ; end
          _tmp = true
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _save5 = self.pos
      _tmp = apply(:_ListContinuationBlock)
      _tmp = _tmp ? nil : true
      self.pos = _save5
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  list_item_from a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListItemTight unless _tmp
    return _tmp
  end

  # ListBlock = !@BlankLine Line:a ListBlockLine*:c { [a, *c] }
  def _ListBlock

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _BlankLine()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Line)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _ary = []
      while true
        _tmp = apply(:_ListBlockLine)
        _ary << @result if _tmp
        break unless _tmp
      end
      _tmp = true
      @result = _ary
      c = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  [a, *c] ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListBlock unless _tmp
    return _tmp
  end

  # ListContinuationBlock = @StartList:a @BlankLine* { a << "\n" } (Indent ListBlock:b { a.concat b })+ { a }
  def _ListContinuationBlock

    _save = self.pos
    while true # sequence
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = _BlankLine()
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a << "\n" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _tmp = apply(:_Indent)
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_ListBlock)
        b = @result
        unless _tmp
          self.pos = _save3
          break
        end
        @result = begin;  a.concat b ; end
        _tmp = true
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      if _tmp
        while true

          _save4 = self.pos
          while true # sequence
            _tmp = apply(:_Indent)
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = apply(:_ListBlock)
            b = @result
            unless _tmp
              self.pos = _save4
              break
            end
            @result = begin;  a.concat b ; end
            _tmp = true
            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListContinuationBlock unless _tmp
    return _tmp
  end

  # Enumerator = @NonindentSpace [0-9]+ "." @Spacechar+
  def _Enumerator

    _save = self.pos
    while true # sequence
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _save2 = self.pos
      _tmp = get_byte
      if _tmp
        unless _tmp >= 48 and _tmp <= 57
          self.pos = _save2
          _tmp = nil
        end
      end
      if _tmp
        while true
          _save3 = self.pos
          _tmp = get_byte
          if _tmp
            unless _tmp >= 48 and _tmp <= 57
              self.pos = _save3
              _tmp = nil
            end
          end
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(".")
      unless _tmp
        self.pos = _save
        break
      end
      _save4 = self.pos
      _tmp = _Spacechar()
      if _tmp
        while true
          _tmp = _Spacechar()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save4
      end
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Enumerator unless _tmp
    return _tmp
  end

  # OrderedList = &Enumerator (ListTight | ListLoose):a { RDoc::Markup::List.new(:NUMBER, *a) }
  def _OrderedList

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = apply(:_Enumerator)
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_ListTight)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_ListLoose)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::List.new(:NUMBER, *a) ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_OrderedList unless _tmp
    return _tmp
  end

  # ListBlockLine = !@BlankLine !(Indent? (Bullet | Enumerator)) !HorizontalRule OptionallyIndentedLine
  def _ListBlockLine

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _BlankLine()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _save4 = self.pos
        _tmp = apply(:_Indent)
        unless _tmp
          _tmp = true
          self.pos = _save4
        end
        unless _tmp
          self.pos = _save3
          break
        end

        _save5 = self.pos
        while true # choice
          _tmp = apply(:_Bullet)
          break if _tmp
          self.pos = _save5
          _tmp = apply(:_Enumerator)
          break if _tmp
          self.pos = _save5
          break
        end # end choice

        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      _tmp = _tmp ? nil : true
      self.pos = _save2
      unless _tmp
        self.pos = _save
        break
      end
      _save6 = self.pos
      _tmp = apply(:_HorizontalRule)
      _tmp = _tmp ? nil : true
      self.pos = _save6
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_OptionallyIndentedLine)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ListBlockLine unless _tmp
    return _tmp
  end

  # HtmlOpenAnchor = "<" Spnl ("a" | "A") Spnl HtmlAttribute* ">"
  def _HtmlOpenAnchor

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("a")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("A")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlOpenAnchor unless _tmp
    return _tmp
  end

  # HtmlCloseAnchor = "<" Spnl "/" ("a" | "A") Spnl ">"
  def _HtmlCloseAnchor

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("a")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("A")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlCloseAnchor unless _tmp
    return _tmp
  end

  # HtmlAnchor = HtmlOpenAnchor (HtmlAnchor | !HtmlCloseAnchor .)* HtmlCloseAnchor
  def _HtmlAnchor

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlOpenAnchor)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlAnchor)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlCloseAnchor)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlCloseAnchor)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlAnchor unless _tmp
    return _tmp
  end

  # HtmlBlockOpenAddress = "<" Spnl ("address" | "ADDRESS") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenAddress

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("address")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("ADDRESS")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenAddress unless _tmp
    return _tmp
  end

  # HtmlBlockCloseAddress = "<" Spnl "/" ("address" | "ADDRESS") Spnl ">"
  def _HtmlBlockCloseAddress

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("address")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("ADDRESS")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseAddress unless _tmp
    return _tmp
  end

  # HtmlBlockAddress = HtmlBlockOpenAddress (HtmlBlockAddress | !HtmlBlockCloseAddress .)* HtmlBlockCloseAddress
  def _HtmlBlockAddress

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenAddress)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockAddress)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseAddress)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseAddress)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockAddress unless _tmp
    return _tmp
  end

  # HtmlBlockOpenBlockquote = "<" Spnl ("blockquote" | "BLOCKQUOTE") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenBlockquote

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("blockquote")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("BLOCKQUOTE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenBlockquote unless _tmp
    return _tmp
  end

  # HtmlBlockCloseBlockquote = "<" Spnl "/" ("blockquote" | "BLOCKQUOTE") Spnl ">"
  def _HtmlBlockCloseBlockquote

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("blockquote")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("BLOCKQUOTE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseBlockquote unless _tmp
    return _tmp
  end

  # HtmlBlockBlockquote = HtmlBlockOpenBlockquote (HtmlBlockBlockquote | !HtmlBlockCloseBlockquote .)* HtmlBlockCloseBlockquote
  def _HtmlBlockBlockquote

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenBlockquote)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockBlockquote)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseBlockquote)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseBlockquote)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockBlockquote unless _tmp
    return _tmp
  end

  # HtmlBlockOpenCenter = "<" Spnl ("center" | "CENTER") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenCenter

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("center")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("CENTER")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenCenter unless _tmp
    return _tmp
  end

  # HtmlBlockCloseCenter = "<" Spnl "/" ("center" | "CENTER") Spnl ">"
  def _HtmlBlockCloseCenter

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("center")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("CENTER")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseCenter unless _tmp
    return _tmp
  end

  # HtmlBlockCenter = HtmlBlockOpenCenter (HtmlBlockCenter | !HtmlBlockCloseCenter .)* HtmlBlockCloseCenter
  def _HtmlBlockCenter

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenCenter)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockCenter)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseCenter)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseCenter)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCenter unless _tmp
    return _tmp
  end

  # HtmlBlockOpenDir = "<" Spnl ("dir" | "DIR") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenDir

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dir")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DIR")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenDir unless _tmp
    return _tmp
  end

  # HtmlBlockCloseDir = "<" Spnl "/" ("dir" | "DIR") Spnl ">"
  def _HtmlBlockCloseDir

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dir")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DIR")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseDir unless _tmp
    return _tmp
  end

  # HtmlBlockDir = HtmlBlockOpenDir (HtmlBlockDir | !HtmlBlockCloseDir .)* HtmlBlockCloseDir
  def _HtmlBlockDir

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenDir)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockDir)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseDir)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseDir)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockDir unless _tmp
    return _tmp
  end

  # HtmlBlockOpenDiv = "<" Spnl ("div" | "DIV") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenDiv

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("div")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DIV")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenDiv unless _tmp
    return _tmp
  end

  # HtmlBlockCloseDiv = "<" Spnl "/" ("div" | "DIV") Spnl ">"
  def _HtmlBlockCloseDiv

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("div")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DIV")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseDiv unless _tmp
    return _tmp
  end

  # HtmlBlockDiv = HtmlBlockOpenDiv (HtmlBlockDiv | !HtmlBlockCloseDiv .)* HtmlBlockCloseDiv
  def _HtmlBlockDiv

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenDiv)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockDiv)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseDiv)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseDiv)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockDiv unless _tmp
    return _tmp
  end

  # HtmlBlockOpenDl = "<" Spnl ("dl" | "DL") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenDl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dl")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenDl unless _tmp
    return _tmp
  end

  # HtmlBlockCloseDl = "<" Spnl "/" ("dl" | "DL") Spnl ">"
  def _HtmlBlockCloseDl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dl")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseDl unless _tmp
    return _tmp
  end

  # HtmlBlockDl = HtmlBlockOpenDl (HtmlBlockDl | !HtmlBlockCloseDl .)* HtmlBlockCloseDl
  def _HtmlBlockDl

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenDl)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockDl)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseDl)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseDl)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockDl unless _tmp
    return _tmp
  end

  # HtmlBlockOpenFieldset = "<" Spnl ("fieldset" | "FIELDSET") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenFieldset

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("fieldset")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FIELDSET")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenFieldset unless _tmp
    return _tmp
  end

  # HtmlBlockCloseFieldset = "<" Spnl "/" ("fieldset" | "FIELDSET") Spnl ">"
  def _HtmlBlockCloseFieldset

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("fieldset")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FIELDSET")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseFieldset unless _tmp
    return _tmp
  end

  # HtmlBlockFieldset = HtmlBlockOpenFieldset (HtmlBlockFieldset | !HtmlBlockCloseFieldset .)* HtmlBlockCloseFieldset
  def _HtmlBlockFieldset

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenFieldset)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockFieldset)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseFieldset)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseFieldset)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockFieldset unless _tmp
    return _tmp
  end

  # HtmlBlockOpenForm = "<" Spnl ("form" | "FORM") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenForm

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("form")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FORM")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenForm unless _tmp
    return _tmp
  end

  # HtmlBlockCloseForm = "<" Spnl "/" ("form" | "FORM") Spnl ">"
  def _HtmlBlockCloseForm

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("form")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FORM")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseForm unless _tmp
    return _tmp
  end

  # HtmlBlockForm = HtmlBlockOpenForm (HtmlBlockForm | !HtmlBlockCloseForm .)* HtmlBlockCloseForm
  def _HtmlBlockForm

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenForm)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockForm)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseForm)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseForm)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockForm unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH1 = "<" Spnl ("h1" | "H1") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH1

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h1")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H1")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH1 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH1 = "<" Spnl "/" ("h1" | "H1") Spnl ">"
  def _HtmlBlockCloseH1

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h1")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H1")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH1 unless _tmp
    return _tmp
  end

  # HtmlBlockH1 = HtmlBlockOpenH1 (HtmlBlockH1 | !HtmlBlockCloseH1 .)* HtmlBlockCloseH1
  def _HtmlBlockH1

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH1)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH1)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH1)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH1)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH1 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH2 = "<" Spnl ("h2" | "H2") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH2

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h2")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H2")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH2 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH2 = "<" Spnl "/" ("h2" | "H2") Spnl ">"
  def _HtmlBlockCloseH2

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h2")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H2")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH2 unless _tmp
    return _tmp
  end

  # HtmlBlockH2 = HtmlBlockOpenH2 (HtmlBlockH2 | !HtmlBlockCloseH2 .)* HtmlBlockCloseH2
  def _HtmlBlockH2

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH2)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH2)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH2)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH2)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH2 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH3 = "<" Spnl ("h3" | "H3") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH3

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h3")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H3")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH3 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH3 = "<" Spnl "/" ("h3" | "H3") Spnl ">"
  def _HtmlBlockCloseH3

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h3")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H3")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH3 unless _tmp
    return _tmp
  end

  # HtmlBlockH3 = HtmlBlockOpenH3 (HtmlBlockH3 | !HtmlBlockCloseH3 .)* HtmlBlockCloseH3
  def _HtmlBlockH3

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH3)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH3)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH3)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH3)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH3 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH4 = "<" Spnl ("h4" | "H4") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH4

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h4")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H4")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH4 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH4 = "<" Spnl "/" ("h4" | "H4") Spnl ">"
  def _HtmlBlockCloseH4

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h4")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H4")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH4 unless _tmp
    return _tmp
  end

  # HtmlBlockH4 = HtmlBlockOpenH4 (HtmlBlockH4 | !HtmlBlockCloseH4 .)* HtmlBlockCloseH4
  def _HtmlBlockH4

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH4)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH4)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH4)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH4)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH4 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH5 = "<" Spnl ("h5" | "H5") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH5

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h5")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H5")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH5 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH5 = "<" Spnl "/" ("h5" | "H5") Spnl ">"
  def _HtmlBlockCloseH5

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h5")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H5")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH5 unless _tmp
    return _tmp
  end

  # HtmlBlockH5 = HtmlBlockOpenH5 (HtmlBlockH5 | !HtmlBlockCloseH5 .)* HtmlBlockCloseH5
  def _HtmlBlockH5

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH5)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH5)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH5)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH5)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH5 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenH6 = "<" Spnl ("h6" | "H6") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenH6

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h6")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H6")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenH6 unless _tmp
    return _tmp
  end

  # HtmlBlockCloseH6 = "<" Spnl "/" ("h6" | "H6") Spnl ">"
  def _HtmlBlockCloseH6

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("h6")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("H6")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseH6 unless _tmp
    return _tmp
  end

  # HtmlBlockH6 = HtmlBlockOpenH6 (HtmlBlockH6 | !HtmlBlockCloseH6 .)* HtmlBlockCloseH6
  def _HtmlBlockH6

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenH6)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockH6)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseH6)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseH6)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockH6 unless _tmp
    return _tmp
  end

  # HtmlBlockOpenMenu = "<" Spnl ("menu" | "MENU") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenMenu

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("menu")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("MENU")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenMenu unless _tmp
    return _tmp
  end

  # HtmlBlockCloseMenu = "<" Spnl "/" ("menu" | "MENU") Spnl ">"
  def _HtmlBlockCloseMenu

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("menu")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("MENU")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseMenu unless _tmp
    return _tmp
  end

  # HtmlBlockMenu = HtmlBlockOpenMenu (HtmlBlockMenu | !HtmlBlockCloseMenu .)* HtmlBlockCloseMenu
  def _HtmlBlockMenu

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenMenu)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockMenu)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseMenu)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseMenu)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockMenu unless _tmp
    return _tmp
  end

  # HtmlBlockOpenNoframes = "<" Spnl ("noframes" | "NOFRAMES") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenNoframes

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("noframes")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("NOFRAMES")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenNoframes unless _tmp
    return _tmp
  end

  # HtmlBlockCloseNoframes = "<" Spnl "/" ("noframes" | "NOFRAMES") Spnl ">"
  def _HtmlBlockCloseNoframes

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("noframes")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("NOFRAMES")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseNoframes unless _tmp
    return _tmp
  end

  # HtmlBlockNoframes = HtmlBlockOpenNoframes (HtmlBlockNoframes | !HtmlBlockCloseNoframes .)* HtmlBlockCloseNoframes
  def _HtmlBlockNoframes

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenNoframes)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockNoframes)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseNoframes)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseNoframes)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockNoframes unless _tmp
    return _tmp
  end

  # HtmlBlockOpenNoscript = "<" Spnl ("noscript" | "NOSCRIPT") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenNoscript

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("noscript")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("NOSCRIPT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenNoscript unless _tmp
    return _tmp
  end

  # HtmlBlockCloseNoscript = "<" Spnl "/" ("noscript" | "NOSCRIPT") Spnl ">"
  def _HtmlBlockCloseNoscript

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("noscript")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("NOSCRIPT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseNoscript unless _tmp
    return _tmp
  end

  # HtmlBlockNoscript = HtmlBlockOpenNoscript (HtmlBlockNoscript | !HtmlBlockCloseNoscript .)* HtmlBlockCloseNoscript
  def _HtmlBlockNoscript

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenNoscript)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockNoscript)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseNoscript)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseNoscript)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockNoscript unless _tmp
    return _tmp
  end

  # HtmlBlockOpenOl = "<" Spnl ("ol" | "OL") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenOl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("ol")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("OL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenOl unless _tmp
    return _tmp
  end

  # HtmlBlockCloseOl = "<" Spnl "/" ("ol" | "OL") Spnl ">"
  def _HtmlBlockCloseOl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("ol")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("OL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseOl unless _tmp
    return _tmp
  end

  # HtmlBlockOl = HtmlBlockOpenOl (HtmlBlockOl | !HtmlBlockCloseOl .)* HtmlBlockCloseOl
  def _HtmlBlockOl

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenOl)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockOl)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseOl)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseOl)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOl unless _tmp
    return _tmp
  end

  # HtmlBlockOpenP = "<" Spnl ("p" | "P") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenP

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("p")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("P")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenP unless _tmp
    return _tmp
  end

  # HtmlBlockCloseP = "<" Spnl "/" ("p" | "P") Spnl ">"
  def _HtmlBlockCloseP

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("p")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("P")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseP unless _tmp
    return _tmp
  end

  # HtmlBlockP = HtmlBlockOpenP (HtmlBlockP | !HtmlBlockCloseP .)* HtmlBlockCloseP
  def _HtmlBlockP

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenP)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockP)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseP)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseP)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockP unless _tmp
    return _tmp
  end

  # HtmlBlockOpenPre = "<" Spnl ("pre" | "PRE") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenPre

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("pre")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("PRE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenPre unless _tmp
    return _tmp
  end

  # HtmlBlockClosePre = "<" Spnl "/" ("pre" | "PRE") Spnl ">"
  def _HtmlBlockClosePre

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("pre")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("PRE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockClosePre unless _tmp
    return _tmp
  end

  # HtmlBlockPre = HtmlBlockOpenPre (HtmlBlockPre | !HtmlBlockClosePre .)* HtmlBlockClosePre
  def _HtmlBlockPre

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenPre)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockPre)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockClosePre)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockClosePre)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockPre unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTable = "<" Spnl ("table" | "TABLE") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTable

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("table")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TABLE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTable unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTable = "<" Spnl "/" ("table" | "TABLE") Spnl ">"
  def _HtmlBlockCloseTable

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("table")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TABLE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTable unless _tmp
    return _tmp
  end

  # HtmlBlockTable = HtmlBlockOpenTable (HtmlBlockTable | !HtmlBlockCloseTable .)* HtmlBlockCloseTable
  def _HtmlBlockTable

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTable)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTable)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTable)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTable)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTable unless _tmp
    return _tmp
  end

  # HtmlBlockOpenUl = "<" Spnl ("ul" | "UL") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenUl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("ul")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("UL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenUl unless _tmp
    return _tmp
  end

  # HtmlBlockCloseUl = "<" Spnl "/" ("ul" | "UL") Spnl ">"
  def _HtmlBlockCloseUl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("ul")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("UL")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseUl unless _tmp
    return _tmp
  end

  # HtmlBlockUl = HtmlBlockOpenUl (HtmlBlockUl | !HtmlBlockCloseUl .)* HtmlBlockCloseUl
  def _HtmlBlockUl

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenUl)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockUl)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseUl)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseUl)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockUl unless _tmp
    return _tmp
  end

  # HtmlBlockOpenDd = "<" Spnl ("dd" | "DD") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenDd

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dd")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenDd unless _tmp
    return _tmp
  end

  # HtmlBlockCloseDd = "<" Spnl "/" ("dd" | "DD") Spnl ">"
  def _HtmlBlockCloseDd

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dd")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseDd unless _tmp
    return _tmp
  end

  # HtmlBlockDd = HtmlBlockOpenDd (HtmlBlockDd | !HtmlBlockCloseDd .)* HtmlBlockCloseDd
  def _HtmlBlockDd

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenDd)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockDd)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseDd)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseDd)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockDd unless _tmp
    return _tmp
  end

  # HtmlBlockOpenDt = "<" Spnl ("dt" | "DT") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenDt

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dt")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenDt unless _tmp
    return _tmp
  end

  # HtmlBlockCloseDt = "<" Spnl "/" ("dt" | "DT") Spnl ">"
  def _HtmlBlockCloseDt

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("dt")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("DT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseDt unless _tmp
    return _tmp
  end

  # HtmlBlockDt = HtmlBlockOpenDt (HtmlBlockDt | !HtmlBlockCloseDt .)* HtmlBlockCloseDt
  def _HtmlBlockDt

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenDt)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockDt)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseDt)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseDt)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockDt unless _tmp
    return _tmp
  end

  # HtmlBlockOpenFrameset = "<" Spnl ("frameset" | "FRAMESET") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenFrameset

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("frameset")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FRAMESET")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenFrameset unless _tmp
    return _tmp
  end

  # HtmlBlockCloseFrameset = "<" Spnl "/" ("frameset" | "FRAMESET") Spnl ">"
  def _HtmlBlockCloseFrameset

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("frameset")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("FRAMESET")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseFrameset unless _tmp
    return _tmp
  end

  # HtmlBlockFrameset = HtmlBlockOpenFrameset (HtmlBlockFrameset | !HtmlBlockCloseFrameset .)* HtmlBlockCloseFrameset
  def _HtmlBlockFrameset

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenFrameset)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockFrameset)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseFrameset)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseFrameset)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockFrameset unless _tmp
    return _tmp
  end

  # HtmlBlockOpenLi = "<" Spnl ("li" | "LI") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenLi

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("li")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("LI")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenLi unless _tmp
    return _tmp
  end

  # HtmlBlockCloseLi = "<" Spnl "/" ("li" | "LI") Spnl ">"
  def _HtmlBlockCloseLi

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("li")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("LI")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseLi unless _tmp
    return _tmp
  end

  # HtmlBlockLi = HtmlBlockOpenLi (HtmlBlockLi | !HtmlBlockCloseLi .)* HtmlBlockCloseLi
  def _HtmlBlockLi

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenLi)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockLi)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseLi)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseLi)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockLi unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTbody = "<" Spnl ("tbody" | "TBODY") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTbody

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tbody")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TBODY")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTbody unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTbody = "<" Spnl "/" ("tbody" | "TBODY") Spnl ">"
  def _HtmlBlockCloseTbody

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tbody")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TBODY")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTbody unless _tmp
    return _tmp
  end

  # HtmlBlockTbody = HtmlBlockOpenTbody (HtmlBlockTbody | !HtmlBlockCloseTbody .)* HtmlBlockCloseTbody
  def _HtmlBlockTbody

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTbody)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTbody)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTbody)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTbody)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTbody unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTd = "<" Spnl ("td" | "TD") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTd

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("td")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTd unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTd = "<" Spnl "/" ("td" | "TD") Spnl ">"
  def _HtmlBlockCloseTd

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("td")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTd unless _tmp
    return _tmp
  end

  # HtmlBlockTd = HtmlBlockOpenTd (HtmlBlockTd | !HtmlBlockCloseTd .)* HtmlBlockCloseTd
  def _HtmlBlockTd

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTd)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTd)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTd)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTd)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTd unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTfoot = "<" Spnl ("tfoot" | "TFOOT") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTfoot

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tfoot")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TFOOT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTfoot unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTfoot = "<" Spnl "/" ("tfoot" | "TFOOT") Spnl ">"
  def _HtmlBlockCloseTfoot

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tfoot")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TFOOT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTfoot unless _tmp
    return _tmp
  end

  # HtmlBlockTfoot = HtmlBlockOpenTfoot (HtmlBlockTfoot | !HtmlBlockCloseTfoot .)* HtmlBlockCloseTfoot
  def _HtmlBlockTfoot

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTfoot)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTfoot)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTfoot)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTfoot)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTfoot unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTh = "<" Spnl ("th" | "TH") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTh

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("th")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TH")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTh unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTh = "<" Spnl "/" ("th" | "TH") Spnl ">"
  def _HtmlBlockCloseTh

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("th")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TH")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTh unless _tmp
    return _tmp
  end

  # HtmlBlockTh = HtmlBlockOpenTh (HtmlBlockTh | !HtmlBlockCloseTh .)* HtmlBlockCloseTh
  def _HtmlBlockTh

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTh)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTh)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTh)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTh)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTh unless _tmp
    return _tmp
  end

  # HtmlBlockOpenThead = "<" Spnl ("thead" | "THEAD") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenThead

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("thead")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("THEAD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenThead unless _tmp
    return _tmp
  end

  # HtmlBlockCloseThead = "<" Spnl "/" ("thead" | "THEAD") Spnl ">"
  def _HtmlBlockCloseThead

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("thead")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("THEAD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseThead unless _tmp
    return _tmp
  end

  # HtmlBlockThead = HtmlBlockOpenThead (HtmlBlockThead | !HtmlBlockCloseThead .)* HtmlBlockCloseThead
  def _HtmlBlockThead

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenThead)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockThead)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseThead)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseThead)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockThead unless _tmp
    return _tmp
  end

  # HtmlBlockOpenTr = "<" Spnl ("tr" | "TR") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenTr

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tr")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TR")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenTr unless _tmp
    return _tmp
  end

  # HtmlBlockCloseTr = "<" Spnl "/" ("tr" | "TR") Spnl ">"
  def _HtmlBlockCloseTr

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("tr")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("TR")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseTr unless _tmp
    return _tmp
  end

  # HtmlBlockTr = HtmlBlockOpenTr (HtmlBlockTr | !HtmlBlockCloseTr .)* HtmlBlockCloseTr
  def _HtmlBlockTr

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenTr)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # choice
          _tmp = apply(:_HtmlBlockTr)
          break if _tmp
          self.pos = _save2

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = apply(:_HtmlBlockCloseTr)
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break if _tmp
          self.pos = _save2
          break
        end # end choice

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseTr)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockTr unless _tmp
    return _tmp
  end

  # HtmlBlockOpenScript = "<" Spnl ("script" | "SCRIPT") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenScript

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("script")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("SCRIPT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenScript unless _tmp
    return _tmp
  end

  # HtmlBlockCloseScript = "<" Spnl "/" ("script" | "SCRIPT") Spnl ">"
  def _HtmlBlockCloseScript

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("script")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("SCRIPT")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseScript unless _tmp
    return _tmp
  end

  # HtmlBlockScript = HtmlBlockOpenScript (!HtmlBlockCloseScript .)* HtmlBlockCloseScript
  def _HtmlBlockScript

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenScript)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos
          _tmp = apply(:_HtmlBlockCloseScript)
          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseScript)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockScript unless _tmp
    return _tmp
  end

  # HtmlBlockOpenHead = "<" Spnl ("head" | "HEAD") Spnl HtmlAttribute* ">"
  def _HtmlBlockOpenHead

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("head")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("HEAD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockOpenHead unless _tmp
    return _tmp
  end

  # HtmlBlockCloseHead = "<" Spnl "/" ("head" | "HEAD") Spnl ">"
  def _HtmlBlockCloseHead

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("head")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("HEAD")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockCloseHead unless _tmp
    return _tmp
  end

  # HtmlBlockHead = HtmlBlockOpenHead (!HtmlBlockCloseHead .)* HtmlBlockCloseHead
  def _HtmlBlockHead

    _save = self.pos
    while true # sequence
      _tmp = apply(:_HtmlBlockOpenHead)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos
          _tmp = apply(:_HtmlBlockCloseHead)
          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockCloseHead)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockHead unless _tmp
    return _tmp
  end

  # HtmlBlockInTags = (HtmlAnchor | HtmlBlockAddress | HtmlBlockBlockquote | HtmlBlockCenter | HtmlBlockDir | HtmlBlockDiv | HtmlBlockDl | HtmlBlockFieldset | HtmlBlockForm | HtmlBlockH1 | HtmlBlockH2 | HtmlBlockH3 | HtmlBlockH4 | HtmlBlockH5 | HtmlBlockH6 | HtmlBlockMenu | HtmlBlockNoframes | HtmlBlockNoscript | HtmlBlockOl | HtmlBlockP | HtmlBlockPre | HtmlBlockTable | HtmlBlockUl | HtmlBlockDd | HtmlBlockDt | HtmlBlockFrameset | HtmlBlockLi | HtmlBlockTbody | HtmlBlockTd | HtmlBlockTfoot | HtmlBlockTh | HtmlBlockThead | HtmlBlockTr | HtmlBlockScript | HtmlBlockHead)
  def _HtmlBlockInTags

    _save = self.pos
    while true # choice
      _tmp = apply(:_HtmlAnchor)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockAddress)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockBlockquote)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockCenter)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockDir)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockDiv)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockDl)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockFieldset)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockForm)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH1)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH2)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH3)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH4)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH5)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockH6)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockMenu)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockNoframes)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockNoscript)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockOl)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockP)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockPre)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTable)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockUl)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockDd)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockDt)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockFrameset)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockLi)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTbody)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTd)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTfoot)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTh)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockThead)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockTr)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockScript)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_HtmlBlockHead)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_HtmlBlockInTags unless _tmp
    return _tmp
  end

  # HtmlBlock = < (HtmlBlockInTags | HtmlComment | HtmlBlockSelfClosing | HtmlUnclosed) > @BlankLine+ { if html? then                 RDoc::Markup::Raw.new text               end }
  def _HtmlBlock

    _save = self.pos
    while true # sequence
      _text_start = self.pos

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_HtmlBlockInTags)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_HtmlComment)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_HtmlBlockSelfClosing)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_HtmlUnclosed)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  if html? then
                RDoc::Markup::Raw.new text
              end ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlock unless _tmp
    return _tmp
  end

  # HtmlUnclosed = "<" Spnl HtmlUnclosedType Spnl HtmlAttribute* Spnl ">"
  def _HtmlUnclosed

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlUnclosedType)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlUnclosed unless _tmp
    return _tmp
  end

  # HtmlUnclosedType = ("HR" | "hr")
  def _HtmlUnclosedType

    _save = self.pos
    while true # choice
      _tmp = match_string("HR")
      break if _tmp
      self.pos = _save
      _tmp = match_string("hr")
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_HtmlUnclosedType unless _tmp
    return _tmp
  end

  # HtmlBlockSelfClosing = "<" Spnl HtmlBlockType Spnl HtmlAttribute* "/" Spnl ">"
  def _HtmlBlockSelfClosing

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_HtmlBlockType)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlBlockSelfClosing unless _tmp
    return _tmp
  end

  # HtmlBlockType = ("ADDRESS" | "BLOCKQUOTE" | "CENTER" | "DD" | "DIR" | "DIV" | "DL" | "DT" | "FIELDSET" | "FORM" | "FRAMESET" | "H1" | "H2" | "H3" | "H4" | "H5" | "H6" | "HR" | "ISINDEX" | "LI" | "MENU" | "NOFRAMES" | "NOSCRIPT" | "OL" | "P" | "PRE" | "SCRIPT" | "TABLE" | "TBODY" | "TD" | "TFOOT" | "TH" | "THEAD" | "TR" | "UL" | "address" | "blockquote" | "center" | "dd" | "dir" | "div" | "dl" | "dt" | "fieldset" | "form" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "hr" | "isindex" | "li" | "menu" | "noframes" | "noscript" | "ol" | "p" | "pre" | "script" | "table" | "tbody" | "td" | "tfoot" | "th" | "thead" | "tr" | "ul")
  def _HtmlBlockType

    _save = self.pos
    while true # choice
      _tmp = match_string("ADDRESS")
      break if _tmp
      self.pos = _save
      _tmp = match_string("BLOCKQUOTE")
      break if _tmp
      self.pos = _save
      _tmp = match_string("CENTER")
      break if _tmp
      self.pos = _save
      _tmp = match_string("DD")
      break if _tmp
      self.pos = _save
      _tmp = match_string("DIR")
      break if _tmp
      self.pos = _save
      _tmp = match_string("DIV")
      break if _tmp
      self.pos = _save
      _tmp = match_string("DL")
      break if _tmp
      self.pos = _save
      _tmp = match_string("DT")
      break if _tmp
      self.pos = _save
      _tmp = match_string("FIELDSET")
      break if _tmp
      self.pos = _save
      _tmp = match_string("FORM")
      break if _tmp
      self.pos = _save
      _tmp = match_string("FRAMESET")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H1")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H2")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H3")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H4")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H5")
      break if _tmp
      self.pos = _save
      _tmp = match_string("H6")
      break if _tmp
      self.pos = _save
      _tmp = match_string("HR")
      break if _tmp
      self.pos = _save
      _tmp = match_string("ISINDEX")
      break if _tmp
      self.pos = _save
      _tmp = match_string("LI")
      break if _tmp
      self.pos = _save
      _tmp = match_string("MENU")
      break if _tmp
      self.pos = _save
      _tmp = match_string("NOFRAMES")
      break if _tmp
      self.pos = _save
      _tmp = match_string("NOSCRIPT")
      break if _tmp
      self.pos = _save
      _tmp = match_string("OL")
      break if _tmp
      self.pos = _save
      _tmp = match_string("P")
      break if _tmp
      self.pos = _save
      _tmp = match_string("PRE")
      break if _tmp
      self.pos = _save
      _tmp = match_string("SCRIPT")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TABLE")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TBODY")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TD")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TFOOT")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TH")
      break if _tmp
      self.pos = _save
      _tmp = match_string("THEAD")
      break if _tmp
      self.pos = _save
      _tmp = match_string("TR")
      break if _tmp
      self.pos = _save
      _tmp = match_string("UL")
      break if _tmp
      self.pos = _save
      _tmp = match_string("address")
      break if _tmp
      self.pos = _save
      _tmp = match_string("blockquote")
      break if _tmp
      self.pos = _save
      _tmp = match_string("center")
      break if _tmp
      self.pos = _save
      _tmp = match_string("dd")
      break if _tmp
      self.pos = _save
      _tmp = match_string("dir")
      break if _tmp
      self.pos = _save
      _tmp = match_string("div")
      break if _tmp
      self.pos = _save
      _tmp = match_string("dl")
      break if _tmp
      self.pos = _save
      _tmp = match_string("dt")
      break if _tmp
      self.pos = _save
      _tmp = match_string("fieldset")
      break if _tmp
      self.pos = _save
      _tmp = match_string("form")
      break if _tmp
      self.pos = _save
      _tmp = match_string("frameset")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h1")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h2")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h3")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h4")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h5")
      break if _tmp
      self.pos = _save
      _tmp = match_string("h6")
      break if _tmp
      self.pos = _save
      _tmp = match_string("hr")
      break if _tmp
      self.pos = _save
      _tmp = match_string("isindex")
      break if _tmp
      self.pos = _save
      _tmp = match_string("li")
      break if _tmp
      self.pos = _save
      _tmp = match_string("menu")
      break if _tmp
      self.pos = _save
      _tmp = match_string("noframes")
      break if _tmp
      self.pos = _save
      _tmp = match_string("noscript")
      break if _tmp
      self.pos = _save
      _tmp = match_string("ol")
      break if _tmp
      self.pos = _save
      _tmp = match_string("p")
      break if _tmp
      self.pos = _save
      _tmp = match_string("pre")
      break if _tmp
      self.pos = _save
      _tmp = match_string("script")
      break if _tmp
      self.pos = _save
      _tmp = match_string("table")
      break if _tmp
      self.pos = _save
      _tmp = match_string("tbody")
      break if _tmp
      self.pos = _save
      _tmp = match_string("td")
      break if _tmp
      self.pos = _save
      _tmp = match_string("tfoot")
      break if _tmp
      self.pos = _save
      _tmp = match_string("th")
      break if _tmp
      self.pos = _save
      _tmp = match_string("thead")
      break if _tmp
      self.pos = _save
      _tmp = match_string("tr")
      break if _tmp
      self.pos = _save
      _tmp = match_string("ul")
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_HtmlBlockType unless _tmp
    return _tmp
  end

  # StyleOpen = "<" Spnl ("style" | "STYLE") Spnl HtmlAttribute* ">"
  def _StyleOpen

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("style")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("STYLE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StyleOpen unless _tmp
    return _tmp
  end

  # StyleClose = "<" Spnl "/" ("style" | "STYLE") Spnl ">"
  def _StyleClose

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("/")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = match_string("style")
        break if _tmp
        self.pos = _save1
        _tmp = match_string("STYLE")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StyleClose unless _tmp
    return _tmp
  end

  # InStyleTags = StyleOpen (!StyleClose .)* StyleClose
  def _InStyleTags

    _save = self.pos
    while true # sequence
      _tmp = apply(:_StyleOpen)
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos
          _tmp = apply(:_StyleClose)
          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_StyleClose)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_InStyleTags unless _tmp
    return _tmp
  end

  # StyleBlock = < InStyleTags > @BlankLine* { if css? then                     RDoc::Markup::Raw.new text                   end }
  def _StyleBlock

    _save = self.pos
    while true # sequence
      _text_start = self.pos
      _tmp = apply(:_InStyleTags)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = _BlankLine()
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  if css? then
                    RDoc::Markup::Raw.new text
                  end ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StyleBlock unless _tmp
    return _tmp
  end

  # Inlines = (!@Endline Inline:i { i } | @Endline:c &Inline { c })+:chunks @Endline? { chunks }
  def _Inlines

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _ary = []

      _save2 = self.pos
      while true # choice

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = _Endline()
          _tmp = _tmp ? nil : true
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_Inline)
          i = @result
          unless _tmp
            self.pos = _save3
            break
          end
          @result = begin;  i ; end
          _tmp = true
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save2

        _save5 = self.pos
        while true # sequence
          _tmp = _Endline()
          c = @result
          unless _tmp
            self.pos = _save5
            break
          end
          _save6 = self.pos
          _tmp = apply(:_Inline)
          self.pos = _save6
          unless _tmp
            self.pos = _save5
            break
          end
          @result = begin;  c ; end
          _tmp = true
          unless _tmp
            self.pos = _save5
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save2
        break
      end # end choice

      if _tmp
        _ary << @result
        while true

          _save7 = self.pos
          while true # choice

            _save8 = self.pos
            while true # sequence
              _save9 = self.pos
              _tmp = _Endline()
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save8
                break
              end
              _tmp = apply(:_Inline)
              i = @result
              unless _tmp
                self.pos = _save8
                break
              end
              @result = begin;  i ; end
              _tmp = true
              unless _tmp
                self.pos = _save8
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7

            _save10 = self.pos
            while true # sequence
              _tmp = _Endline()
              c = @result
              unless _tmp
                self.pos = _save10
                break
              end
              _save11 = self.pos
              _tmp = apply(:_Inline)
              self.pos = _save11
              unless _tmp
                self.pos = _save10
                break
              end
              @result = begin;  c ; end
              _tmp = true
              unless _tmp
                self.pos = _save10
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7
            break
          end # end choice

          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save1
      end
      chunks = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save12 = self.pos
      _tmp = _Endline()
      unless _tmp
        _tmp = true
        self.pos = _save12
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  chunks ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Inlines unless _tmp
    return _tmp
  end

  # Inline = (Str | @Endline | UlOrStarLine | @Space | Strong | Emph | Strike | Image | Link | NoteReference | InlineNote | Code | RawHtml | Entity | EscapedChar | Symbol)
  def _Inline

    _save = self.pos
    while true # choice
      _tmp = apply(:_Str)
      break if _tmp
      self.pos = _save
      _tmp = _Endline()
      break if _tmp
      self.pos = _save
      _tmp = apply(:_UlOrStarLine)
      break if _tmp
      self.pos = _save
      _tmp = _Space()
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Strong)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Emph)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Strike)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Image)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Link)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_NoteReference)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_InlineNote)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Code)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_RawHtml)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Entity)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_EscapedChar)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_Symbol)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Inline unless _tmp
    return _tmp
  end

  # Space = @Spacechar+ { " " }
  def _Space

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _Spacechar()
      if _tmp
        while true
          _tmp = _Spacechar()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  " " ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Space unless _tmp
    return _tmp
  end

  # Str = @StartList:a < @NormalChar+ > { a = text } (StrChunk:c { a << c })* { a }
  def _Str

    _save = self.pos
    while true # sequence
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _save1 = self.pos
      _tmp = _NormalChar()
      if _tmp
        while true
          _tmp = _NormalChar()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a = text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save3 = self.pos
        while true # sequence
          _tmp = apply(:_StrChunk)
          c = @result
          unless _tmp
            self.pos = _save3
            break
          end
          @result = begin;  a << c ; end
          _tmp = true
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Str unless _tmp
    return _tmp
  end

  # StrChunk = < (@NormalChar | /_+/ &Alphanumeric)+ > { text }
  def _StrChunk

    _save = self.pos
    while true # sequence
      _text_start = self.pos
      _save1 = self.pos

      _save2 = self.pos
      while true # choice
        _tmp = _NormalChar()
        break if _tmp
        self.pos = _save2

        _save3 = self.pos
        while true # sequence
          _tmp = scan(/\A(?-mix:_+)/)
          unless _tmp
            self.pos = _save3
            break
          end
          _save4 = self.pos
          _tmp = apply(:_Alphanumeric)
          self.pos = _save4
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save2
        break
      end # end choice

      if _tmp
        while true

          _save5 = self.pos
          while true # choice
            _tmp = _NormalChar()
            break if _tmp
            self.pos = _save5

            _save6 = self.pos
            while true # sequence
              _tmp = scan(/\A(?-mix:_+)/)
              unless _tmp
                self.pos = _save6
                break
              end
              _save7 = self.pos
              _tmp = apply(:_Alphanumeric)
              self.pos = _save7
              unless _tmp
                self.pos = _save6
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save5
            break
          end # end choice

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StrChunk unless _tmp
    return _tmp
  end

  # EscapedChar = "\\" !@Newline < /[:\\`|*_{}\[\]()#+.!><-]/ > { text }
  def _EscapedChar

    _save = self.pos
    while true # sequence
      _tmp = match_string("\\")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _Newline()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _tmp = scan(/\A(?-mix:[:\\`|*_{}\[\]()#+.!><-])/)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_EscapedChar unless _tmp
    return _tmp
  end

  # Entity = (HexEntity | DecEntity | CharEntity):a { a }
  def _Entity

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_HexEntity)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_DecEntity)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_CharEntity)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Entity unless _tmp
    return _tmp
  end

  # Endline = (@LineBreak | @TerminalEndline | @NormalEndline)
  def _Endline

    _save = self.pos
    while true # choice
      _tmp = _LineBreak()
      break if _tmp
      self.pos = _save
      _tmp = _TerminalEndline()
      break if _tmp
      self.pos = _save
      _tmp = _NormalEndline()
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Endline unless _tmp
    return _tmp
  end

  # NormalEndline = @Sp @Newline !@BlankLine !">" !AtxStart !(Line /={1,}|-{1,}/ @Newline) { "\n" }
  def _NormalEndline

    _save = self.pos
    while true # sequence
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _BlankLine()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = match_string(">")
      _tmp = _tmp ? nil : true
      self.pos = _save2
      unless _tmp
        self.pos = _save
        break
      end
      _save3 = self.pos
      _tmp = apply(:_AtxStart)
      _tmp = _tmp ? nil : true
      self.pos = _save3
      unless _tmp
        self.pos = _save
        break
      end
      _save4 = self.pos

      _save5 = self.pos
      while true # sequence
        _tmp = apply(:_Line)
        unless _tmp
          self.pos = _save5
          break
        end
        _tmp = scan(/\A(?-mix:={1,}|-{1,})/)
        unless _tmp
          self.pos = _save5
          break
        end
        _tmp = _Newline()
        unless _tmp
          self.pos = _save5
        end
        break
      end # end sequence

      _tmp = _tmp ? nil : true
      self.pos = _save4
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "\n" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_NormalEndline unless _tmp
    return _tmp
  end

  # TerminalEndline = @Sp @Newline @Eof
  def _TerminalEndline

    _save = self.pos
    while true # sequence
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Eof()
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_TerminalEndline unless _tmp
    return _tmp
  end

  # LineBreak = "  " @NormalEndline { RDoc::Markup::HardBreak.new }
  def _LineBreak

    _save = self.pos
    while true # sequence
      _tmp = match_string("  ")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _NormalEndline()
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::HardBreak.new ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_LineBreak unless _tmp
    return _tmp
  end

  # Symbol = < @SpecialChar > { text }
  def _Symbol

    _save = self.pos
    while true # sequence
      _text_start = self.pos
      _tmp = _SpecialChar()
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Symbol unless _tmp
    return _tmp
  end

  # UlOrStarLine = (UlLine | StarLine):a { a }
  def _UlOrStarLine

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_UlLine)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_StarLine)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_UlOrStarLine unless _tmp
    return _tmp
  end

  # StarLine = (< /\*{4,}/ > { text } | < @Spacechar /\*+/ &@Spacechar > { text })
  def _StarLine

    _save = self.pos
    while true # choice

      _save1 = self.pos
      while true # sequence
        _text_start = self.pos
        _tmp = scan(/\A(?-mix:\*{4,})/)
        if _tmp
          text = get_text(_text_start)
        end
        unless _tmp
          self.pos = _save1
          break
        end
        @result = begin;  text ; end
        _tmp = true
        unless _tmp
          self.pos = _save1
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save

      _save2 = self.pos
      while true # sequence
        _text_start = self.pos

        _save3 = self.pos
        while true # sequence
          _tmp = _Spacechar()
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = scan(/\A(?-mix:\*+)/)
          unless _tmp
            self.pos = _save3
            break
          end
          _save4 = self.pos
          _tmp = _Spacechar()
          self.pos = _save4
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        if _tmp
          text = get_text(_text_start)
        end
        unless _tmp
          self.pos = _save2
          break
        end
        @result = begin;  text ; end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_StarLine unless _tmp
    return _tmp
  end

  # UlLine = (< /_{4,}/ > { text } | < @Spacechar /_+/ &@Spacechar > { text })
  def _UlLine

    _save = self.pos
    while true # choice

      _save1 = self.pos
      while true # sequence
        _text_start = self.pos
        _tmp = scan(/\A(?-mix:_{4,})/)
        if _tmp
          text = get_text(_text_start)
        end
        unless _tmp
          self.pos = _save1
          break
        end
        @result = begin;  text ; end
        _tmp = true
        unless _tmp
          self.pos = _save1
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save

      _save2 = self.pos
      while true # sequence
        _text_start = self.pos

        _save3 = self.pos
        while true # sequence
          _tmp = _Spacechar()
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = scan(/\A(?-mix:_+)/)
          unless _tmp
            self.pos = _save3
            break
          end
          _save4 = self.pos
          _tmp = _Spacechar()
          self.pos = _save4
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        if _tmp
          text = get_text(_text_start)
        end
        unless _tmp
          self.pos = _save2
          break
        end
        @result = begin;  text ; end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_UlLine unless _tmp
    return _tmp
  end

  # Emph = (EmphStar | EmphUl)
  def _Emph

    _save = self.pos
    while true # choice
      _tmp = apply(:_EmphStar)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_EmphUl)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Emph unless _tmp
    return _tmp
  end

  # Whitespace = (@Spacechar | @Newline)
  def _Whitespace

    _save = self.pos
    while true # choice
      _tmp = _Spacechar()
      break if _tmp
      self.pos = _save
      _tmp = _Newline()
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Whitespace unless _tmp
    return _tmp
  end

  # EmphStar = "*" !@Whitespace @StartList:a (!"*" Inline:b { a << b } | StrongStar:b { a << b })+ "*" { emphasis a.join }
  def _EmphStar

    _save = self.pos
    while true # sequence
      _tmp = match_string("*")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _Whitespace()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # choice

        _save4 = self.pos
        while true # sequence
          _save5 = self.pos
          _tmp = match_string("*")
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save4
            break
          end
          _tmp = apply(:_Inline)
          b = @result
          unless _tmp
            self.pos = _save4
            break
          end
          @result = begin;  a << b ; end
          _tmp = true
          unless _tmp
            self.pos = _save4
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save3

        _save6 = self.pos
        while true # sequence
          _tmp = apply(:_StrongStar)
          b = @result
          unless _tmp
            self.pos = _save6
            break
          end
          @result = begin;  a << b ; end
          _tmp = true
          unless _tmp
            self.pos = _save6
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save3
        break
      end # end choice

      if _tmp
        while true

          _save7 = self.pos
          while true # choice

            _save8 = self.pos
            while true # sequence
              _save9 = self.pos
              _tmp = match_string("*")
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save8
                break
              end
              _tmp = apply(:_Inline)
              b = @result
              unless _tmp
                self.pos = _save8
                break
              end
              @result = begin;  a << b ; end
              _tmp = true
              unless _tmp
                self.pos = _save8
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7

            _save10 = self.pos
            while true # sequence
              _tmp = apply(:_StrongStar)
              b = @result
              unless _tmp
                self.pos = _save10
                break
              end
              @result = begin;  a << b ; end
              _tmp = true
              unless _tmp
                self.pos = _save10
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7
            break
          end # end choice

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("*")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  emphasis a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_EmphStar unless _tmp
    return _tmp
  end

  # EmphUl = "_" !@Whitespace @StartList:a (!"_" Inline:b { a << b } | StrongUl:b { a << b })+ "_" { emphasis a.join }
  def _EmphUl

    _save = self.pos
    while true # sequence
      _tmp = match_string("_")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _Whitespace()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # choice

        _save4 = self.pos
        while true # sequence
          _save5 = self.pos
          _tmp = match_string("_")
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save4
            break
          end
          _tmp = apply(:_Inline)
          b = @result
          unless _tmp
            self.pos = _save4
            break
          end
          @result = begin;  a << b ; end
          _tmp = true
          unless _tmp
            self.pos = _save4
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save3

        _save6 = self.pos
        while true # sequence
          _tmp = apply(:_StrongUl)
          b = @result
          unless _tmp
            self.pos = _save6
            break
          end
          @result = begin;  a << b ; end
          _tmp = true
          unless _tmp
            self.pos = _save6
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save3
        break
      end # end choice

      if _tmp
        while true

          _save7 = self.pos
          while true # choice

            _save8 = self.pos
            while true # sequence
              _save9 = self.pos
              _tmp = match_string("_")
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save8
                break
              end
              _tmp = apply(:_Inline)
              b = @result
              unless _tmp
                self.pos = _save8
                break
              end
              @result = begin;  a << b ; end
              _tmp = true
              unless _tmp
                self.pos = _save8
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7

            _save10 = self.pos
            while true # sequence
              _tmp = apply(:_StrongUl)
              b = @result
              unless _tmp
                self.pos = _save10
                break
              end
              @result = begin;  a << b ; end
              _tmp = true
              unless _tmp
                self.pos = _save10
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save7
            break
          end # end choice

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("_")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  emphasis a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_EmphUl unless _tmp
    return _tmp
  end

  # Strong = (StrongStar | StrongUl)
  def _Strong

    _save = self.pos
    while true # choice
      _tmp = apply(:_StrongStar)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_StrongUl)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Strong unless _tmp
    return _tmp
  end

  # StrongStar = "**" !@Whitespace @StartList:a (!"**" Inline:b { a << b })+ "**" { strong a.join }
  def _StrongStar

    _save = self.pos
    while true # sequence
      _tmp = match_string("**")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _Whitespace()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _save4 = self.pos
        _tmp = match_string("**")
        _tmp = _tmp ? nil : true
        self.pos = _save4
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_Inline)
        b = @result
        unless _tmp
          self.pos = _save3
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      if _tmp
        while true

          _save5 = self.pos
          while true # sequence
            _save6 = self.pos
            _tmp = match_string("**")
            _tmp = _tmp ? nil : true
            self.pos = _save6
            unless _tmp
              self.pos = _save5
              break
            end
            _tmp = apply(:_Inline)
            b = @result
            unless _tmp
              self.pos = _save5
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save5
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("**")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  strong a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StrongStar unless _tmp
    return _tmp
  end

  # StrongUl = "__" !@Whitespace @StartList:a (!"__" Inline:b { a << b })+ "__" { strong a.join }
  def _StrongUl

    _save = self.pos
    while true # sequence
      _tmp = match_string("__")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _Whitespace()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _save4 = self.pos
        _tmp = match_string("__")
        _tmp = _tmp ? nil : true
        self.pos = _save4
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_Inline)
        b = @result
        unless _tmp
          self.pos = _save3
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      if _tmp
        while true

          _save5 = self.pos
          while true # sequence
            _save6 = self.pos
            _tmp = match_string("__")
            _tmp = _tmp ? nil : true
            self.pos = _save6
            unless _tmp
              self.pos = _save5
              break
            end
            _tmp = apply(:_Inline)
            b = @result
            unless _tmp
              self.pos = _save5
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save5
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("__")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  strong a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StrongUl unless _tmp
    return _tmp
  end

  # Strike = &{ strike? } "~~" !@Whitespace @StartList:a (!"~~" Inline:b { a << b })+ "~~" { strike a.join }
  def _Strike

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  strike? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("~~")
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = _Whitespace()
      _tmp = _tmp ? nil : true
      self.pos = _save2
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save3 = self.pos

      _save4 = self.pos
      while true # sequence
        _save5 = self.pos
        _tmp = match_string("~~")
        _tmp = _tmp ? nil : true
        self.pos = _save5
        unless _tmp
          self.pos = _save4
          break
        end
        _tmp = apply(:_Inline)
        b = @result
        unless _tmp
          self.pos = _save4
          break
        end
        @result = begin;  a << b ; end
        _tmp = true
        unless _tmp
          self.pos = _save4
        end
        break
      end # end sequence

      if _tmp
        while true

          _save6 = self.pos
          while true # sequence
            _save7 = self.pos
            _tmp = match_string("~~")
            _tmp = _tmp ? nil : true
            self.pos = _save7
            unless _tmp
              self.pos = _save6
              break
            end
            _tmp = apply(:_Inline)
            b = @result
            unless _tmp
              self.pos = _save6
              break
            end
            @result = begin;  a << b ; end
            _tmp = true
            unless _tmp
              self.pos = _save6
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save3
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("~~")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  strike a.join ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Strike unless _tmp
    return _tmp
  end

  # Image = "!" (ExplicitLink | ReferenceLink):a { "rdoc-image:#{a[/\[(.*)\]/, 1]}" }
  def _Image

    _save = self.pos
    while true # sequence
      _tmp = match_string("!")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_ExplicitLink)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_ReferenceLink)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "rdoc-image:#{a[/\[(.*)\]/, 1]}" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Image unless _tmp
    return _tmp
  end

  # Link = (ExplicitLink | ReferenceLink | AutoLink)
  def _Link

    _save = self.pos
    while true # choice
      _tmp = apply(:_ExplicitLink)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_ReferenceLink)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_AutoLink)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Link unless _tmp
    return _tmp
  end

  # ReferenceLink = (ReferenceLinkDouble | ReferenceLinkSingle)
  def _ReferenceLink

    _save = self.pos
    while true # choice
      _tmp = apply(:_ReferenceLinkDouble)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_ReferenceLinkSingle)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_ReferenceLink unless _tmp
    return _tmp
  end

  # ReferenceLinkDouble = Label:content < Spnl > !"[]" Label:label { link_to content, label, text }
  def _ReferenceLinkDouble

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Label)
      content = @result
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _tmp = apply(:_Spnl)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("[]")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Label)
      label = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  link_to content, label, text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ReferenceLinkDouble unless _tmp
    return _tmp
  end

  # ReferenceLinkSingle = Label:content < (Spnl "[]")? > { link_to content, content, text }
  def _ReferenceLinkSingle

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Label)
      content = @result
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = apply(:_Spnl)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = match_string("[]")
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  link_to content, content, text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ReferenceLinkSingle unless _tmp
    return _tmp
  end

  # ExplicitLink = Label:l "(" @Sp Source:s Spnl Title @Sp ")" { "{#{l}}[#{s}]" }
  def _ExplicitLink

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Label)
      l = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("(")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Source)
      s = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Title)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(")")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "{#{l}}[#{s}]" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ExplicitLink unless _tmp
    return _tmp
  end

  # Source = ("<" < SourceContents > ">" | < SourceContents >) { text }
  def _Source

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice

        _save2 = self.pos
        while true # sequence
          _tmp = match_string("<")
          unless _tmp
            self.pos = _save2
            break
          end
          _text_start = self.pos
          _tmp = apply(:_SourceContents)
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = match_string(">")
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        _text_start = self.pos
        _tmp = apply(:_SourceContents)
        if _tmp
          text = get_text(_text_start)
        end
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Source unless _tmp
    return _tmp
  end

  # SourceContents = ((!"(" !")" !">" Nonspacechar)+ | "(" SourceContents ")")*
  def _SourceContents
    while true

      _save1 = self.pos
      while true # choice
        _save2 = self.pos

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = match_string("(")
          _tmp = _tmp ? nil : true
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _save5 = self.pos
          _tmp = match_string(")")
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save3
            break
          end
          _save6 = self.pos
          _tmp = match_string(">")
          _tmp = _tmp ? nil : true
          self.pos = _save6
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_Nonspacechar)
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        if _tmp
          while true

            _save7 = self.pos
            while true # sequence
              _save8 = self.pos
              _tmp = match_string("(")
              _tmp = _tmp ? nil : true
              self.pos = _save8
              unless _tmp
                self.pos = _save7
                break
              end
              _save9 = self.pos
              _tmp = match_string(")")
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save7
                break
              end
              _save10 = self.pos
              _tmp = match_string(">")
              _tmp = _tmp ? nil : true
              self.pos = _save10
              unless _tmp
                self.pos = _save7
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save7
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
        else
          self.pos = _save2
        end
        break if _tmp
        self.pos = _save1

        _save11 = self.pos
        while true # sequence
          _tmp = match_string("(")
          unless _tmp
            self.pos = _save11
            break
          end
          _tmp = apply(:_SourceContents)
          unless _tmp
            self.pos = _save11
            break
          end
          _tmp = match_string(")")
          unless _tmp
            self.pos = _save11
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    set_failed_rule :_SourceContents unless _tmp
    return _tmp
  end

  # Title = (TitleSingle | TitleDouble | ""):a { a }
  def _Title

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_TitleSingle)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_TitleDouble)
        break if _tmp
        self.pos = _save1
        _tmp = match_string("")
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Title unless _tmp
    return _tmp
  end

  # TitleSingle = "'" (!("'" @Sp (")" | @Newline)) .)* "'"
  def _TitleSingle

    _save = self.pos
    while true # sequence
      _tmp = match_string("'")
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos

          _save4 = self.pos
          while true # sequence
            _tmp = match_string("'")
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = _Sp()
            unless _tmp
              self.pos = _save4
              break
            end

            _save5 = self.pos
            while true # choice
              _tmp = match_string(")")
              break if _tmp
              self.pos = _save5
              _tmp = _Newline()
              break if _tmp
              self.pos = _save5
              break
            end # end choice

            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("'")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_TitleSingle unless _tmp
    return _tmp
  end

  # TitleDouble = "\"" (!("\"" @Sp (")" | @Newline)) .)* "\""
  def _TitleDouble

    _save = self.pos
    while true # sequence
      _tmp = match_string("\"")
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos

          _save4 = self.pos
          while true # sequence
            _tmp = match_string("\"")
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = _Sp()
            unless _tmp
              self.pos = _save4
              break
            end

            _save5 = self.pos
            while true # choice
              _tmp = match_string(")")
              break if _tmp
              self.pos = _save5
              _tmp = _Newline()
              break if _tmp
              self.pos = _save5
              break
            end # end choice

            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("\"")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_TitleDouble unless _tmp
    return _tmp
  end

  # AutoLink = (AutoLinkUrl | AutoLinkEmail)
  def _AutoLink

    _save = self.pos
    while true # choice
      _tmp = apply(:_AutoLinkUrl)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_AutoLinkEmail)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_AutoLink unless _tmp
    return _tmp
  end

  # AutoLinkUrl = "<" < /[A-Za-z]+/ "://" (!@Newline !">" .)+ > ">" { text }
  def _AutoLinkUrl

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos

      _save1 = self.pos
      while true # sequence
        _tmp = scan(/\A(?-mix:[A-Za-z]+)/)
        unless _tmp
          self.pos = _save1
          break
        end
        _tmp = match_string("://")
        unless _tmp
          self.pos = _save1
          break
        end
        _save2 = self.pos

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = _Newline()
          _tmp = _tmp ? nil : true
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _save5 = self.pos
          _tmp = match_string(">")
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        if _tmp
          while true

            _save6 = self.pos
            while true # sequence
              _save7 = self.pos
              _tmp = _Newline()
              _tmp = _tmp ? nil : true
              self.pos = _save7
              unless _tmp
                self.pos = _save6
                break
              end
              _save8 = self.pos
              _tmp = match_string(">")
              _tmp = _tmp ? nil : true
              self.pos = _save8
              unless _tmp
                self.pos = _save6
                break
              end
              _tmp = get_byte
              unless _tmp
                self.pos = _save6
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
        else
          self.pos = _save2
        end
        unless _tmp
          self.pos = _save1
        end
        break
      end # end sequence

      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_AutoLinkUrl unless _tmp
    return _tmp
  end

  # AutoLinkEmail = "<" "mailto:"? < /[\w+.\/!%~$-]+/i "@" (!@Newline !">" .)+ > ">" { "mailto:#{text}" }
  def _AutoLinkEmail

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("mailto:")
      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = scan(/\A(?i-mx:[\w+.\/!%~$-]+)/)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = match_string("@")
        unless _tmp
          self.pos = _save2
          break
        end
        _save3 = self.pos

        _save4 = self.pos
        while true # sequence
          _save5 = self.pos
          _tmp = _Newline()
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save4
            break
          end
          _save6 = self.pos
          _tmp = match_string(">")
          _tmp = _tmp ? nil : true
          self.pos = _save6
          unless _tmp
            self.pos = _save4
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save4
          end
          break
        end # end sequence

        if _tmp
          while true

            _save7 = self.pos
            while true # sequence
              _save8 = self.pos
              _tmp = _Newline()
              _tmp = _tmp ? nil : true
              self.pos = _save8
              unless _tmp
                self.pos = _save7
                break
              end
              _save9 = self.pos
              _tmp = match_string(">")
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save7
                break
              end
              _tmp = get_byte
              unless _tmp
                self.pos = _save7
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
        else
          self.pos = _save3
        end
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "mailto:#{text}" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_AutoLinkEmail unless _tmp
    return _tmp
  end

  # Reference = @NonindentSpace !"[]" Label:label ":" Spnl RefSrc:link RefTitle @BlankLine+ { # TODO use title               reference label, link               nil             }
  def _Reference

    _save = self.pos
    while true # sequence
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("[]")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Label)
      label = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(":")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_RefSrc)
      link = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_RefTitle)
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  # TODO use title
              reference label, link
              nil
            ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Reference unless _tmp
    return _tmp
  end

  # Label = "[" (!"^" &{ notes? } | &. &{ !notes? }) @StartList:a (!"]" Inline:l { a << l })* "]" { a.join.gsub(/\s+/, ' ') }
  def _Label

    _save = self.pos
    while true # sequence
      _tmp = match_string("[")
      unless _tmp
        self.pos = _save
        break
      end

      _save1 = self.pos
      while true # choice

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos
          _tmp = match_string("^")
          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _save4 = self.pos
          _tmp = begin;  notes? ; end
          self.pos = _save4
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save5 = self.pos
        while true # sequence
          _save6 = self.pos
          _tmp = get_byte
          self.pos = _save6
          unless _tmp
            self.pos = _save5
            break
          end
          _save7 = self.pos
          _tmp = begin;  !notes? ; end
          self.pos = _save7
          unless _tmp
            self.pos = _save5
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save9 = self.pos
        while true # sequence
          _save10 = self.pos
          _tmp = match_string("]")
          _tmp = _tmp ? nil : true
          self.pos = _save10
          unless _tmp
            self.pos = _save9
            break
          end
          _tmp = apply(:_Inline)
          l = @result
          unless _tmp
            self.pos = _save9
            break
          end
          @result = begin;  a << l ; end
          _tmp = true
          unless _tmp
            self.pos = _save9
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("]")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a.join.gsub(/\s+/, ' ') ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Label unless _tmp
    return _tmp
  end

  # RefSrc = < Nonspacechar+ > { text }
  def _RefSrc

    _save = self.pos
    while true # sequence
      _text_start = self.pos
      _save1 = self.pos
      _tmp = apply(:_Nonspacechar)
      if _tmp
        while true
          _tmp = apply(:_Nonspacechar)
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RefSrc unless _tmp
    return _tmp
  end

  # RefTitle = (RefTitleSingle | RefTitleDouble | RefTitleParens | EmptyTitle)
  def _RefTitle

    _save = self.pos
    while true # choice
      _tmp = apply(:_RefTitleSingle)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_RefTitleDouble)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_RefTitleParens)
      break if _tmp
      self.pos = _save
      _tmp = apply(:_EmptyTitle)
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_RefTitle unless _tmp
    return _tmp
  end

  # EmptyTitle = ""
  def _EmptyTitle
    _tmp = match_string("")
    set_failed_rule :_EmptyTitle unless _tmp
    return _tmp
  end

  # RefTitleSingle = Spnl "'" < (!("'" @Sp @Newline | @Newline) .)* > "'" { text }
  def _RefTitleSingle

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("'")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos

          _save4 = self.pos
          while true # choice

            _save5 = self.pos
            while true # sequence
              _tmp = match_string("'")
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Sp()
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Newline()
              unless _tmp
                self.pos = _save5
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save4
            _tmp = _Newline()
            break if _tmp
            self.pos = _save4
            break
          end # end choice

          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("'")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RefTitleSingle unless _tmp
    return _tmp
  end

  # RefTitleDouble = Spnl "\"" < (!("\"" @Sp @Newline | @Newline) .)* > "\"" { text }
  def _RefTitleDouble

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("\"")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos

          _save4 = self.pos
          while true # choice

            _save5 = self.pos
            while true # sequence
              _tmp = match_string("\"")
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Sp()
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Newline()
              unless _tmp
                self.pos = _save5
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save4
            _tmp = _Newline()
            break if _tmp
            self.pos = _save4
            break
          end # end choice

          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("\"")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RefTitleDouble unless _tmp
    return _tmp
  end

  # RefTitleParens = Spnl "(" < (!(")" @Sp @Newline | @Newline) .)* > ")" { text }
  def _RefTitleParens

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("(")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos

          _save4 = self.pos
          while true # choice

            _save5 = self.pos
            while true # sequence
              _tmp = match_string(")")
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Sp()
              unless _tmp
                self.pos = _save5
                break
              end
              _tmp = _Newline()
              unless _tmp
                self.pos = _save5
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save4
            _tmp = _Newline()
            break if _tmp
            self.pos = _save4
            break
          end # end choice

          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(")")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RefTitleParens unless _tmp
    return _tmp
  end

  # References = (Reference | SkipBlock)*
  def _References
    while true

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_Reference)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_SkipBlock)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    set_failed_rule :_References unless _tmp
    return _tmp
  end

  # Ticks1 = "`" !"`"
  def _Ticks1

    _save = self.pos
    while true # sequence
      _tmp = match_string("`")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("`")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Ticks1 unless _tmp
    return _tmp
  end

  # Ticks2 = "``" !"`"
  def _Ticks2

    _save = self.pos
    while true # sequence
      _tmp = match_string("``")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("`")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Ticks2 unless _tmp
    return _tmp
  end

  # Ticks3 = "```" !"`"
  def _Ticks3

    _save = self.pos
    while true # sequence
      _tmp = match_string("```")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("`")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Ticks3 unless _tmp
    return _tmp
  end

  # Ticks4 = "````" !"`"
  def _Ticks4

    _save = self.pos
    while true # sequence
      _tmp = match_string("````")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("`")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Ticks4 unless _tmp
    return _tmp
  end

  # Ticks5 = "`````" !"`"
  def _Ticks5

    _save = self.pos
    while true # sequence
      _tmp = match_string("`````")
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("`")
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Ticks5 unless _tmp
    return _tmp
  end

  # Code = (Ticks1 @Sp < ((!"`" Nonspacechar)+ | !Ticks1 /`+/ | !(@Sp Ticks1) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks1 | Ticks2 @Sp < ((!"`" Nonspacechar)+ | !Ticks2 /`+/ | !(@Sp Ticks2) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks2 | Ticks3 @Sp < ((!"`" Nonspacechar)+ | !Ticks3 /`+/ | !(@Sp Ticks3) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks3 | Ticks4 @Sp < ((!"`" Nonspacechar)+ | !Ticks4 /`+/ | !(@Sp Ticks4) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks4 | Ticks5 @Sp < ((!"`" Nonspacechar)+ | !Ticks5 /`+/ | !(@Sp Ticks5) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks5) { "<code>#{text}</code>" }
  def _Code

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice

        _save2 = self.pos
        while true # sequence
          _tmp = apply(:_Ticks1)
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save2
            break
          end
          _text_start = self.pos
          _save3 = self.pos

          _save4 = self.pos
          while true # choice
            _save5 = self.pos

            _save6 = self.pos
            while true # sequence
              _save7 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save7
              unless _tmp
                self.pos = _save6
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save6
              end
              break
            end # end sequence

            if _tmp
              while true

                _save8 = self.pos
                while true # sequence
                  _save9 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save9
                  unless _tmp
                    self.pos = _save8
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save8
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save5
            end
            break if _tmp
            self.pos = _save4

            _save10 = self.pos
            while true # sequence
              _save11 = self.pos
              _tmp = apply(:_Ticks1)
              _tmp = _tmp ? nil : true
              self.pos = _save11
              unless _tmp
                self.pos = _save10
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save10
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save4

            _save12 = self.pos
            while true # sequence
              _save13 = self.pos

              _save14 = self.pos
              while true # sequence
                _tmp = _Sp()
                unless _tmp
                  self.pos = _save14
                  break
                end
                _tmp = apply(:_Ticks1)
                unless _tmp
                  self.pos = _save14
                end
                break
              end # end sequence

              _tmp = _tmp ? nil : true
              self.pos = _save13
              unless _tmp
                self.pos = _save12
                break
              end

              _save15 = self.pos
              while true # choice
                _tmp = _Spacechar()
                break if _tmp
                self.pos = _save15

                _save16 = self.pos
                while true # sequence
                  _tmp = _Newline()
                  unless _tmp
                    self.pos = _save16
                    break
                  end
                  _save17 = self.pos
                  _tmp = _BlankLine()
                  _tmp = _tmp ? nil : true
                  self.pos = _save17
                  unless _tmp
                    self.pos = _save16
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save15
                break
              end # end choice

              unless _tmp
                self.pos = _save12
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save4
            break
          end # end choice

          if _tmp
            while true

              _save18 = self.pos
              while true # choice
                _save19 = self.pos

                _save20 = self.pos
                while true # sequence
                  _save21 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save21
                  unless _tmp
                    self.pos = _save20
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save20
                  end
                  break
                end # end sequence

                if _tmp
                  while true

                    _save22 = self.pos
                    while true # sequence
                      _save23 = self.pos
                      _tmp = match_string("`")
                      _tmp = _tmp ? nil : true
                      self.pos = _save23
                      unless _tmp
                        self.pos = _save22
                        break
                      end
                      _tmp = apply(:_Nonspacechar)
                      unless _tmp
                        self.pos = _save22
                      end
                      break
                    end # end sequence

                    break unless _tmp
                  end
                  _tmp = true
                else
                  self.pos = _save19
                end
                break if _tmp
                self.pos = _save18

                _save24 = self.pos
                while true # sequence
                  _save25 = self.pos
                  _tmp = apply(:_Ticks1)
                  _tmp = _tmp ? nil : true
                  self.pos = _save25
                  unless _tmp
                    self.pos = _save24
                    break
                  end
                  _tmp = scan(/\A(?-mix:`+)/)
                  unless _tmp
                    self.pos = _save24
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save18

                _save26 = self.pos
                while true # sequence
                  _save27 = self.pos

                  _save28 = self.pos
                  while true # sequence
                    _tmp = _Sp()
                    unless _tmp
                      self.pos = _save28
                      break
                    end
                    _tmp = apply(:_Ticks1)
                    unless _tmp
                      self.pos = _save28
                    end
                    break
                  end # end sequence

                  _tmp = _tmp ? nil : true
                  self.pos = _save27
                  unless _tmp
                    self.pos = _save26
                    break
                  end

                  _save29 = self.pos
                  while true # choice
                    _tmp = _Spacechar()
                    break if _tmp
                    self.pos = _save29

                    _save30 = self.pos
                    while true # sequence
                      _tmp = _Newline()
                      unless _tmp
                        self.pos = _save30
                        break
                      end
                      _save31 = self.pos
                      _tmp = _BlankLine()
                      _tmp = _tmp ? nil : true
                      self.pos = _save31
                      unless _tmp
                        self.pos = _save30
                      end
                      break
                    end # end sequence

                    break if _tmp
                    self.pos = _save29
                    break
                  end # end choice

                  unless _tmp
                    self.pos = _save26
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save18
                break
              end # end choice

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save3
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = apply(:_Ticks1)
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save32 = self.pos
        while true # sequence
          _tmp = apply(:_Ticks2)
          unless _tmp
            self.pos = _save32
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save32
            break
          end
          _text_start = self.pos
          _save33 = self.pos

          _save34 = self.pos
          while true # choice
            _save35 = self.pos

            _save36 = self.pos
            while true # sequence
              _save37 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save37
              unless _tmp
                self.pos = _save36
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save36
              end
              break
            end # end sequence

            if _tmp
              while true

                _save38 = self.pos
                while true # sequence
                  _save39 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save39
                  unless _tmp
                    self.pos = _save38
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save38
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save35
            end
            break if _tmp
            self.pos = _save34

            _save40 = self.pos
            while true # sequence
              _save41 = self.pos
              _tmp = apply(:_Ticks2)
              _tmp = _tmp ? nil : true
              self.pos = _save41
              unless _tmp
                self.pos = _save40
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save40
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save34

            _save42 = self.pos
            while true # sequence
              _save43 = self.pos

              _save44 = self.pos
              while true # sequence
                _tmp = _Sp()
                unless _tmp
                  self.pos = _save44
                  break
                end
                _tmp = apply(:_Ticks2)
                unless _tmp
                  self.pos = _save44
                end
                break
              end # end sequence

              _tmp = _tmp ? nil : true
              self.pos = _save43
              unless _tmp
                self.pos = _save42
                break
              end

              _save45 = self.pos
              while true # choice
                _tmp = _Spacechar()
                break if _tmp
                self.pos = _save45

                _save46 = self.pos
                while true # sequence
                  _tmp = _Newline()
                  unless _tmp
                    self.pos = _save46
                    break
                  end
                  _save47 = self.pos
                  _tmp = _BlankLine()
                  _tmp = _tmp ? nil : true
                  self.pos = _save47
                  unless _tmp
                    self.pos = _save46
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save45
                break
              end # end choice

              unless _tmp
                self.pos = _save42
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save34
            break
          end # end choice

          if _tmp
            while true

              _save48 = self.pos
              while true # choice
                _save49 = self.pos

                _save50 = self.pos
                while true # sequence
                  _save51 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save51
                  unless _tmp
                    self.pos = _save50
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save50
                  end
                  break
                end # end sequence

                if _tmp
                  while true

                    _save52 = self.pos
                    while true # sequence
                      _save53 = self.pos
                      _tmp = match_string("`")
                      _tmp = _tmp ? nil : true
                      self.pos = _save53
                      unless _tmp
                        self.pos = _save52
                        break
                      end
                      _tmp = apply(:_Nonspacechar)
                      unless _tmp
                        self.pos = _save52
                      end
                      break
                    end # end sequence

                    break unless _tmp
                  end
                  _tmp = true
                else
                  self.pos = _save49
                end
                break if _tmp
                self.pos = _save48

                _save54 = self.pos
                while true # sequence
                  _save55 = self.pos
                  _tmp = apply(:_Ticks2)
                  _tmp = _tmp ? nil : true
                  self.pos = _save55
                  unless _tmp
                    self.pos = _save54
                    break
                  end
                  _tmp = scan(/\A(?-mix:`+)/)
                  unless _tmp
                    self.pos = _save54
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save48

                _save56 = self.pos
                while true # sequence
                  _save57 = self.pos

                  _save58 = self.pos
                  while true # sequence
                    _tmp = _Sp()
                    unless _tmp
                      self.pos = _save58
                      break
                    end
                    _tmp = apply(:_Ticks2)
                    unless _tmp
                      self.pos = _save58
                    end
                    break
                  end # end sequence

                  _tmp = _tmp ? nil : true
                  self.pos = _save57
                  unless _tmp
                    self.pos = _save56
                    break
                  end

                  _save59 = self.pos
                  while true # choice
                    _tmp = _Spacechar()
                    break if _tmp
                    self.pos = _save59

                    _save60 = self.pos
                    while true # sequence
                      _tmp = _Newline()
                      unless _tmp
                        self.pos = _save60
                        break
                      end
                      _save61 = self.pos
                      _tmp = _BlankLine()
                      _tmp = _tmp ? nil : true
                      self.pos = _save61
                      unless _tmp
                        self.pos = _save60
                      end
                      break
                    end # end sequence

                    break if _tmp
                    self.pos = _save59
                    break
                  end # end choice

                  unless _tmp
                    self.pos = _save56
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save48
                break
              end # end choice

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save33
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save32
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save32
            break
          end
          _tmp = apply(:_Ticks2)
          unless _tmp
            self.pos = _save32
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save62 = self.pos
        while true # sequence
          _tmp = apply(:_Ticks3)
          unless _tmp
            self.pos = _save62
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save62
            break
          end
          _text_start = self.pos
          _save63 = self.pos

          _save64 = self.pos
          while true # choice
            _save65 = self.pos

            _save66 = self.pos
            while true # sequence
              _save67 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save67
              unless _tmp
                self.pos = _save66
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save66
              end
              break
            end # end sequence

            if _tmp
              while true

                _save68 = self.pos
                while true # sequence
                  _save69 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save69
                  unless _tmp
                    self.pos = _save68
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save68
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save65
            end
            break if _tmp
            self.pos = _save64

            _save70 = self.pos
            while true # sequence
              _save71 = self.pos
              _tmp = apply(:_Ticks3)
              _tmp = _tmp ? nil : true
              self.pos = _save71
              unless _tmp
                self.pos = _save70
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save70
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save64

            _save72 = self.pos
            while true # sequence
              _save73 = self.pos

              _save74 = self.pos
              while true # sequence
                _tmp = _Sp()
                unless _tmp
                  self.pos = _save74
                  break
                end
                _tmp = apply(:_Ticks3)
                unless _tmp
                  self.pos = _save74
                end
                break
              end # end sequence

              _tmp = _tmp ? nil : true
              self.pos = _save73
              unless _tmp
                self.pos = _save72
                break
              end

              _save75 = self.pos
              while true # choice
                _tmp = _Spacechar()
                break if _tmp
                self.pos = _save75

                _save76 = self.pos
                while true # sequence
                  _tmp = _Newline()
                  unless _tmp
                    self.pos = _save76
                    break
                  end
                  _save77 = self.pos
                  _tmp = _BlankLine()
                  _tmp = _tmp ? nil : true
                  self.pos = _save77
                  unless _tmp
                    self.pos = _save76
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save75
                break
              end # end choice

              unless _tmp
                self.pos = _save72
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save64
            break
          end # end choice

          if _tmp
            while true

              _save78 = self.pos
              while true # choice
                _save79 = self.pos

                _save80 = self.pos
                while true # sequence
                  _save81 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save81
                  unless _tmp
                    self.pos = _save80
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save80
                  end
                  break
                end # end sequence

                if _tmp
                  while true

                    _save82 = self.pos
                    while true # sequence
                      _save83 = self.pos
                      _tmp = match_string("`")
                      _tmp = _tmp ? nil : true
                      self.pos = _save83
                      unless _tmp
                        self.pos = _save82
                        break
                      end
                      _tmp = apply(:_Nonspacechar)
                      unless _tmp
                        self.pos = _save82
                      end
                      break
                    end # end sequence

                    break unless _tmp
                  end
                  _tmp = true
                else
                  self.pos = _save79
                end
                break if _tmp
                self.pos = _save78

                _save84 = self.pos
                while true # sequence
                  _save85 = self.pos
                  _tmp = apply(:_Ticks3)
                  _tmp = _tmp ? nil : true
                  self.pos = _save85
                  unless _tmp
                    self.pos = _save84
                    break
                  end
                  _tmp = scan(/\A(?-mix:`+)/)
                  unless _tmp
                    self.pos = _save84
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save78

                _save86 = self.pos
                while true # sequence
                  _save87 = self.pos

                  _save88 = self.pos
                  while true # sequence
                    _tmp = _Sp()
                    unless _tmp
                      self.pos = _save88
                      break
                    end
                    _tmp = apply(:_Ticks3)
                    unless _tmp
                      self.pos = _save88
                    end
                    break
                  end # end sequence

                  _tmp = _tmp ? nil : true
                  self.pos = _save87
                  unless _tmp
                    self.pos = _save86
                    break
                  end

                  _save89 = self.pos
                  while true # choice
                    _tmp = _Spacechar()
                    break if _tmp
                    self.pos = _save89

                    _save90 = self.pos
                    while true # sequence
                      _tmp = _Newline()
                      unless _tmp
                        self.pos = _save90
                        break
                      end
                      _save91 = self.pos
                      _tmp = _BlankLine()
                      _tmp = _tmp ? nil : true
                      self.pos = _save91
                      unless _tmp
                        self.pos = _save90
                      end
                      break
                    end # end sequence

                    break if _tmp
                    self.pos = _save89
                    break
                  end # end choice

                  unless _tmp
                    self.pos = _save86
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save78
                break
              end # end choice

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save63
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save62
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save62
            break
          end
          _tmp = apply(:_Ticks3)
          unless _tmp
            self.pos = _save62
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save92 = self.pos
        while true # sequence
          _tmp = apply(:_Ticks4)
          unless _tmp
            self.pos = _save92
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save92
            break
          end
          _text_start = self.pos
          _save93 = self.pos

          _save94 = self.pos
          while true # choice
            _save95 = self.pos

            _save96 = self.pos
            while true # sequence
              _save97 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save97
              unless _tmp
                self.pos = _save96
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save96
              end
              break
            end # end sequence

            if _tmp
              while true

                _save98 = self.pos
                while true # sequence
                  _save99 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save99
                  unless _tmp
                    self.pos = _save98
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save98
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save95
            end
            break if _tmp
            self.pos = _save94

            _save100 = self.pos
            while true # sequence
              _save101 = self.pos
              _tmp = apply(:_Ticks4)
              _tmp = _tmp ? nil : true
              self.pos = _save101
              unless _tmp
                self.pos = _save100
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save100
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save94

            _save102 = self.pos
            while true # sequence
              _save103 = self.pos

              _save104 = self.pos
              while true # sequence
                _tmp = _Sp()
                unless _tmp
                  self.pos = _save104
                  break
                end
                _tmp = apply(:_Ticks4)
                unless _tmp
                  self.pos = _save104
                end
                break
              end # end sequence

              _tmp = _tmp ? nil : true
              self.pos = _save103
              unless _tmp
                self.pos = _save102
                break
              end

              _save105 = self.pos
              while true # choice
                _tmp = _Spacechar()
                break if _tmp
                self.pos = _save105

                _save106 = self.pos
                while true # sequence
                  _tmp = _Newline()
                  unless _tmp
                    self.pos = _save106
                    break
                  end
                  _save107 = self.pos
                  _tmp = _BlankLine()
                  _tmp = _tmp ? nil : true
                  self.pos = _save107
                  unless _tmp
                    self.pos = _save106
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save105
                break
              end # end choice

              unless _tmp
                self.pos = _save102
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save94
            break
          end # end choice

          if _tmp
            while true

              _save108 = self.pos
              while true # choice
                _save109 = self.pos

                _save110 = self.pos
                while true # sequence
                  _save111 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save111
                  unless _tmp
                    self.pos = _save110
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save110
                  end
                  break
                end # end sequence

                if _tmp
                  while true

                    _save112 = self.pos
                    while true # sequence
                      _save113 = self.pos
                      _tmp = match_string("`")
                      _tmp = _tmp ? nil : true
                      self.pos = _save113
                      unless _tmp
                        self.pos = _save112
                        break
                      end
                      _tmp = apply(:_Nonspacechar)
                      unless _tmp
                        self.pos = _save112
                      end
                      break
                    end # end sequence

                    break unless _tmp
                  end
                  _tmp = true
                else
                  self.pos = _save109
                end
                break if _tmp
                self.pos = _save108

                _save114 = self.pos
                while true # sequence
                  _save115 = self.pos
                  _tmp = apply(:_Ticks4)
                  _tmp = _tmp ? nil : true
                  self.pos = _save115
                  unless _tmp
                    self.pos = _save114
                    break
                  end
                  _tmp = scan(/\A(?-mix:`+)/)
                  unless _tmp
                    self.pos = _save114
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save108

                _save116 = self.pos
                while true # sequence
                  _save117 = self.pos

                  _save118 = self.pos
                  while true # sequence
                    _tmp = _Sp()
                    unless _tmp
                      self.pos = _save118
                      break
                    end
                    _tmp = apply(:_Ticks4)
                    unless _tmp
                      self.pos = _save118
                    end
                    break
                  end # end sequence

                  _tmp = _tmp ? nil : true
                  self.pos = _save117
                  unless _tmp
                    self.pos = _save116
                    break
                  end

                  _save119 = self.pos
                  while true # choice
                    _tmp = _Spacechar()
                    break if _tmp
                    self.pos = _save119

                    _save120 = self.pos
                    while true # sequence
                      _tmp = _Newline()
                      unless _tmp
                        self.pos = _save120
                        break
                      end
                      _save121 = self.pos
                      _tmp = _BlankLine()
                      _tmp = _tmp ? nil : true
                      self.pos = _save121
                      unless _tmp
                        self.pos = _save120
                      end
                      break
                    end # end sequence

                    break if _tmp
                    self.pos = _save119
                    break
                  end # end choice

                  unless _tmp
                    self.pos = _save116
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save108
                break
              end # end choice

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save93
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save92
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save92
            break
          end
          _tmp = apply(:_Ticks4)
          unless _tmp
            self.pos = _save92
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1

        _save122 = self.pos
        while true # sequence
          _tmp = apply(:_Ticks5)
          unless _tmp
            self.pos = _save122
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save122
            break
          end
          _text_start = self.pos
          _save123 = self.pos

          _save124 = self.pos
          while true # choice
            _save125 = self.pos

            _save126 = self.pos
            while true # sequence
              _save127 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save127
              unless _tmp
                self.pos = _save126
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save126
              end
              break
            end # end sequence

            if _tmp
              while true

                _save128 = self.pos
                while true # sequence
                  _save129 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save129
                  unless _tmp
                    self.pos = _save128
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save128
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save125
            end
            break if _tmp
            self.pos = _save124

            _save130 = self.pos
            while true # sequence
              _save131 = self.pos
              _tmp = apply(:_Ticks5)
              _tmp = _tmp ? nil : true
              self.pos = _save131
              unless _tmp
                self.pos = _save130
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save130
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save124

            _save132 = self.pos
            while true # sequence
              _save133 = self.pos

              _save134 = self.pos
              while true # sequence
                _tmp = _Sp()
                unless _tmp
                  self.pos = _save134
                  break
                end
                _tmp = apply(:_Ticks5)
                unless _tmp
                  self.pos = _save134
                end
                break
              end # end sequence

              _tmp = _tmp ? nil : true
              self.pos = _save133
              unless _tmp
                self.pos = _save132
                break
              end

              _save135 = self.pos
              while true # choice
                _tmp = _Spacechar()
                break if _tmp
                self.pos = _save135

                _save136 = self.pos
                while true # sequence
                  _tmp = _Newline()
                  unless _tmp
                    self.pos = _save136
                    break
                  end
                  _save137 = self.pos
                  _tmp = _BlankLine()
                  _tmp = _tmp ? nil : true
                  self.pos = _save137
                  unless _tmp
                    self.pos = _save136
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save135
                break
              end # end choice

              unless _tmp
                self.pos = _save132
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save124
            break
          end # end choice

          if _tmp
            while true

              _save138 = self.pos
              while true # choice
                _save139 = self.pos

                _save140 = self.pos
                while true # sequence
                  _save141 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save141
                  unless _tmp
                    self.pos = _save140
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save140
                  end
                  break
                end # end sequence

                if _tmp
                  while true

                    _save142 = self.pos
                    while true # sequence
                      _save143 = self.pos
                      _tmp = match_string("`")
                      _tmp = _tmp ? nil : true
                      self.pos = _save143
                      unless _tmp
                        self.pos = _save142
                        break
                      end
                      _tmp = apply(:_Nonspacechar)
                      unless _tmp
                        self.pos = _save142
                      end
                      break
                    end # end sequence

                    break unless _tmp
                  end
                  _tmp = true
                else
                  self.pos = _save139
                end
                break if _tmp
                self.pos = _save138

                _save144 = self.pos
                while true # sequence
                  _save145 = self.pos
                  _tmp = apply(:_Ticks5)
                  _tmp = _tmp ? nil : true
                  self.pos = _save145
                  unless _tmp
                    self.pos = _save144
                    break
                  end
                  _tmp = scan(/\A(?-mix:`+)/)
                  unless _tmp
                    self.pos = _save144
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save138

                _save146 = self.pos
                while true # sequence
                  _save147 = self.pos

                  _save148 = self.pos
                  while true # sequence
                    _tmp = _Sp()
                    unless _tmp
                      self.pos = _save148
                      break
                    end
                    _tmp = apply(:_Ticks5)
                    unless _tmp
                      self.pos = _save148
                    end
                    break
                  end # end sequence

                  _tmp = _tmp ? nil : true
                  self.pos = _save147
                  unless _tmp
                    self.pos = _save146
                    break
                  end

                  _save149 = self.pos
                  while true # choice
                    _tmp = _Spacechar()
                    break if _tmp
                    self.pos = _save149

                    _save150 = self.pos
                    while true # sequence
                      _tmp = _Newline()
                      unless _tmp
                        self.pos = _save150
                        break
                      end
                      _save151 = self.pos
                      _tmp = _BlankLine()
                      _tmp = _tmp ? nil : true
                      self.pos = _save151
                      unless _tmp
                        self.pos = _save150
                      end
                      break
                    end # end sequence

                    break if _tmp
                    self.pos = _save149
                    break
                  end # end choice

                  unless _tmp
                    self.pos = _save146
                  end
                  break
                end # end sequence

                break if _tmp
                self.pos = _save138
                break
              end # end choice

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save123
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save122
            break
          end
          _tmp = _Sp()
          unless _tmp
            self.pos = _save122
            break
          end
          _tmp = apply(:_Ticks5)
          unless _tmp
            self.pos = _save122
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "<code>#{text}</code>" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Code unless _tmp
    return _tmp
  end

  # RawHtml = < (HtmlComment | HtmlBlockScript | HtmlTag) > { if html? then text else '' end }
  def _RawHtml

    _save = self.pos
    while true # sequence
      _text_start = self.pos

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_HtmlComment)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_HtmlBlockScript)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_HtmlTag)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  if html? then text else '' end ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RawHtml unless _tmp
    return _tmp
  end

  # BlankLine = @Sp @Newline { "\n" }
  def _BlankLine

    _save = self.pos
    while true # sequence
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  "\n" ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_BlankLine unless _tmp
    return _tmp
  end

  # Quoted = ("\"" (!"\"" .)* "\"" | "'" (!"'" .)* "'")
  def _Quoted

    _save = self.pos
    while true # choice

      _save1 = self.pos
      while true # sequence
        _tmp = match_string("\"")
        unless _tmp
          self.pos = _save1
          break
        end
        while true

          _save3 = self.pos
          while true # sequence
            _save4 = self.pos
            _tmp = match_string("\"")
            _tmp = _tmp ? nil : true
            self.pos = _save4
            unless _tmp
              self.pos = _save3
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save3
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save1
          break
        end
        _tmp = match_string("\"")
        unless _tmp
          self.pos = _save1
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save

      _save5 = self.pos
      while true # sequence
        _tmp = match_string("'")
        unless _tmp
          self.pos = _save5
          break
        end
        while true

          _save7 = self.pos
          while true # sequence
            _save8 = self.pos
            _tmp = match_string("'")
            _tmp = _tmp ? nil : true
            self.pos = _save8
            unless _tmp
              self.pos = _save7
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save7
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save5
          break
        end
        _tmp = match_string("'")
        unless _tmp
          self.pos = _save5
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_Quoted unless _tmp
    return _tmp
  end

  # HtmlAttribute = (AlphanumericAscii | "-")+ Spnl ("=" Spnl (Quoted | (!">" Nonspacechar)+))? Spnl
  def _HtmlAttribute

    _save = self.pos
    while true # sequence
      _save1 = self.pos

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_AlphanumericAscii)
        break if _tmp
        self.pos = _save2
        _tmp = match_string("-")
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      if _tmp
        while true

          _save3 = self.pos
          while true # choice
            _tmp = apply(:_AlphanumericAscii)
            break if _tmp
            self.pos = _save3
            _tmp = match_string("-")
            break if _tmp
            self.pos = _save3
            break
          end # end choice

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _save4 = self.pos

      _save5 = self.pos
      while true # sequence
        _tmp = match_string("=")
        unless _tmp
          self.pos = _save5
          break
        end
        _tmp = apply(:_Spnl)
        unless _tmp
          self.pos = _save5
          break
        end

        _save6 = self.pos
        while true # choice
          _tmp = apply(:_Quoted)
          break if _tmp
          self.pos = _save6
          _save7 = self.pos

          _save8 = self.pos
          while true # sequence
            _save9 = self.pos
            _tmp = match_string(">")
            _tmp = _tmp ? nil : true
            self.pos = _save9
            unless _tmp
              self.pos = _save8
              break
            end
            _tmp = apply(:_Nonspacechar)
            unless _tmp
              self.pos = _save8
            end
            break
          end # end sequence

          if _tmp
            while true

              _save10 = self.pos
              while true # sequence
                _save11 = self.pos
                _tmp = match_string(">")
                _tmp = _tmp ? nil : true
                self.pos = _save11
                unless _tmp
                  self.pos = _save10
                  break
                end
                _tmp = apply(:_Nonspacechar)
                unless _tmp
                  self.pos = _save10
                end
                break
              end # end sequence

              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save7
          end
          break if _tmp
          self.pos = _save6
          break
        end # end choice

        unless _tmp
          self.pos = _save5
        end
        break
      end # end sequence

      unless _tmp
        _tmp = true
        self.pos = _save4
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlAttribute unless _tmp
    return _tmp
  end

  # HtmlComment = "<!--" (!"-->" .)* "-->"
  def _HtmlComment

    _save = self.pos
    while true # sequence
      _tmp = match_string("<!--")
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save2 = self.pos
        while true # sequence
          _save3 = self.pos
          _tmp = match_string("-->")
          _tmp = _tmp ? nil : true
          self.pos = _save3
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = get_byte
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("-->")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlComment unless _tmp
    return _tmp
  end

  # HtmlTag = "<" Spnl "/"? AlphanumericAscii+ Spnl HtmlAttribute* "/"? Spnl ">"
  def _HtmlTag

    _save = self.pos
    while true # sequence
      _tmp = match_string("<")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = match_string("/")
      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = apply(:_AlphanumericAscii)
      if _tmp
        while true
          _tmp = apply(:_AlphanumericAscii)
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = apply(:_HtmlAttribute)
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      _save4 = self.pos
      _tmp = match_string("/")
      unless _tmp
        _tmp = true
        self.pos = _save4
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(">")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HtmlTag unless _tmp
    return _tmp
  end

  # Eof = !.
  def _Eof
    _save = self.pos
    _tmp = get_byte
    _tmp = _tmp ? nil : true
    self.pos = _save
    set_failed_rule :_Eof unless _tmp
    return _tmp
  end

  # Nonspacechar = !@Spacechar !@Newline .
  def _Nonspacechar

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = _Spacechar()
      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _tmp = _Newline()
      _tmp = _tmp ? nil : true
      self.pos = _save2
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = get_byte
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Nonspacechar unless _tmp
    return _tmp
  end

  # Sp = @Spacechar*
  def _Sp
    while true
      _tmp = _Spacechar()
      break unless _tmp
    end
    _tmp = true
    set_failed_rule :_Sp unless _tmp
    return _tmp
  end

  # Spnl = @Sp (@Newline @Sp)?
  def _Spnl

    _save = self.pos
    while true # sequence
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = _Newline()
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = _Sp()
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Spnl unless _tmp
    return _tmp
  end

  # SpecialChar = (/[~*_`&\[\]()<!#\\'"]/ | @ExtendedSpecialChar)
  def _SpecialChar

    _save = self.pos
    while true # choice
      _tmp = scan(/\A(?-mix:[~*_`&\[\]()<!#\\'"])/)
      break if _tmp
      self.pos = _save
      _tmp = _ExtendedSpecialChar()
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_SpecialChar unless _tmp
    return _tmp
  end

  # NormalChar = !(@SpecialChar | @Spacechar | @Newline) .
  def _NormalChar

    _save = self.pos
    while true # sequence
      _save1 = self.pos

      _save2 = self.pos
      while true # choice
        _tmp = _SpecialChar()
        break if _tmp
        self.pos = _save2
        _tmp = _Spacechar()
        break if _tmp
        self.pos = _save2
        _tmp = _Newline()
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      _tmp = _tmp ? nil : true
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = get_byte
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_NormalChar unless _tmp
    return _tmp
  end

  # Digit = [0-9]
  def _Digit
    _save = self.pos
    _tmp = get_byte
    if _tmp
      unless _tmp >= 48 and _tmp <= 57
        self.pos = _save
        _tmp = nil
      end
    end
    set_failed_rule :_Digit unless _tmp
    return _tmp
  end

  # Alphanumeric = %literals.Alphanumeric
  def _Alphanumeric
    _tmp = @_grammar_literals.external_invoke(self, :_Alphanumeric)
    set_failed_rule :_Alphanumeric unless _tmp
    return _tmp
  end

  # AlphanumericAscii = %literals.AlphanumericAscii
  def _AlphanumericAscii
    _tmp = @_grammar_literals.external_invoke(self, :_AlphanumericAscii)
    set_failed_rule :_AlphanumericAscii unless _tmp
    return _tmp
  end

  # BOM = %literals.BOM
  def _BOM
    _tmp = @_grammar_literals.external_invoke(self, :_BOM)
    set_failed_rule :_BOM unless _tmp
    return _tmp
  end

  # Newline = %literals.Newline
  def _Newline
    _tmp = @_grammar_literals.external_invoke(self, :_Newline)
    set_failed_rule :_Newline unless _tmp
    return _tmp
  end

  # Spacechar = %literals.Spacechar
  def _Spacechar
    _tmp = @_grammar_literals.external_invoke(self, :_Spacechar)
    set_failed_rule :_Spacechar unless _tmp
    return _tmp
  end

  # HexEntity = /&#x/i < /[0-9a-fA-F]+/ > ";" { [text.to_i(16)].pack 'U' }
  def _HexEntity

    _save = self.pos
    while true # sequence
      _tmp = scan(/\A(?i-mx:&#x)/)
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _tmp = scan(/\A(?-mix:[0-9a-fA-F]+)/)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(";")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  [text.to_i(16)].pack 'U' ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_HexEntity unless _tmp
    return _tmp
  end

  # DecEntity = "&#" < /[0-9]+/ > ";" { [text.to_i].pack 'U' }
  def _DecEntity

    _save = self.pos
    while true # sequence
      _tmp = match_string("&#")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _tmp = scan(/\A(?-mix:[0-9]+)/)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(";")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  [text.to_i].pack 'U' ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_DecEntity unless _tmp
    return _tmp
  end

  # CharEntity = "&" < /[A-Za-z0-9]+/ > ";" { if entity = HTML_ENTITIES[text] then                  entity.pack 'U*'                else                  "&#{text};"                end              }
  def _CharEntity

    _save = self.pos
    while true # sequence
      _tmp = match_string("&")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _tmp = scan(/\A(?-mix:[A-Za-z0-9]+)/)
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(";")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  if entity = HTML_ENTITIES[text] then
                 entity.pack 'U*'
               else
                 "&#{text};"
               end
             ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_CharEntity unless _tmp
    return _tmp
  end

  # NonindentSpace = / {0,3}/
  def _NonindentSpace
    _tmp = scan(/\A(?-mix: {0,3})/)
    set_failed_rule :_NonindentSpace unless _tmp
    return _tmp
  end

  # Indent = /\t|    /
  def _Indent
    _tmp = scan(/\A(?-mix:\t|    )/)
    set_failed_rule :_Indent unless _tmp
    return _tmp
  end

  # IndentedLine = Indent Line
  def _IndentedLine

    _save = self.pos
    while true # sequence
      _tmp = apply(:_Indent)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Line)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_IndentedLine unless _tmp
    return _tmp
  end

  # OptionallyIndentedLine = Indent? Line
  def _OptionallyIndentedLine

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = apply(:_Indent)
      unless _tmp
        _tmp = true
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Line)
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_OptionallyIndentedLine unless _tmp
    return _tmp
  end

  # StartList = &. { [] }
  def _StartList

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = get_byte
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  [] ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_StartList unless _tmp
    return _tmp
  end

  # Line = @RawLine:a { a }
  def _Line

    _save = self.pos
    while true # sequence
      _tmp = _RawLine()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Line unless _tmp
    return _tmp
  end

  # RawLine = (< (!"\r" !"\n" .)* @Newline > | < .+ > @Eof) { text }
  def _RawLine

    _save = self.pos
    while true # sequence

      _save1 = self.pos
      while true # choice
        _text_start = self.pos

        _save2 = self.pos
        while true # sequence
          while true

            _save4 = self.pos
            while true # sequence
              _save5 = self.pos
              _tmp = match_string("\r")
              _tmp = _tmp ? nil : true
              self.pos = _save5
              unless _tmp
                self.pos = _save4
                break
              end
              _save6 = self.pos
              _tmp = match_string("\n")
              _tmp = _tmp ? nil : true
              self.pos = _save6
              unless _tmp
                self.pos = _save4
                break
              end
              _tmp = get_byte
              unless _tmp
                self.pos = _save4
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
          unless _tmp
            self.pos = _save2
            break
          end
          _tmp = _Newline()
          unless _tmp
            self.pos = _save2
          end
          break
        end # end sequence

        if _tmp
          text = get_text(_text_start)
        end
        break if _tmp
        self.pos = _save1

        _save7 = self.pos
        while true # sequence
          _text_start = self.pos
          _save8 = self.pos
          _tmp = get_byte
          if _tmp
            while true
              _tmp = get_byte
              break unless _tmp
            end
            _tmp = true
          else
            self.pos = _save8
          end
          if _tmp
            text = get_text(_text_start)
          end
          unless _tmp
            self.pos = _save7
            break
          end
          _tmp = _Eof()
          unless _tmp
            self.pos = _save7
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save1
        break
      end # end choice

      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RawLine unless _tmp
    return _tmp
  end

  # SkipBlock = (HtmlBlock | (!"#" !SetextBottom1 !SetextBottom2 !@BlankLine @RawLine)+ @BlankLine* | @BlankLine+ | @RawLine)
  def _SkipBlock

    _save = self.pos
    while true # choice
      _tmp = apply(:_HtmlBlock)
      break if _tmp
      self.pos = _save

      _save1 = self.pos
      while true # sequence
        _save2 = self.pos

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = match_string("#")
          _tmp = _tmp ? nil : true
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _save5 = self.pos
          _tmp = apply(:_SetextBottom1)
          _tmp = _tmp ? nil : true
          self.pos = _save5
          unless _tmp
            self.pos = _save3
            break
          end
          _save6 = self.pos
          _tmp = apply(:_SetextBottom2)
          _tmp = _tmp ? nil : true
          self.pos = _save6
          unless _tmp
            self.pos = _save3
            break
          end
          _save7 = self.pos
          _tmp = _BlankLine()
          _tmp = _tmp ? nil : true
          self.pos = _save7
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = _RawLine()
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        if _tmp
          while true

            _save8 = self.pos
            while true # sequence
              _save9 = self.pos
              _tmp = match_string("#")
              _tmp = _tmp ? nil : true
              self.pos = _save9
              unless _tmp
                self.pos = _save8
                break
              end
              _save10 = self.pos
              _tmp = apply(:_SetextBottom1)
              _tmp = _tmp ? nil : true
              self.pos = _save10
              unless _tmp
                self.pos = _save8
                break
              end
              _save11 = self.pos
              _tmp = apply(:_SetextBottom2)
              _tmp = _tmp ? nil : true
              self.pos = _save11
              unless _tmp
                self.pos = _save8
                break
              end
              _save12 = self.pos
              _tmp = _BlankLine()
              _tmp = _tmp ? nil : true
              self.pos = _save12
              unless _tmp
                self.pos = _save8
                break
              end
              _tmp = _RawLine()
              unless _tmp
                self.pos = _save8
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
        else
          self.pos = _save2
        end
        unless _tmp
          self.pos = _save1
          break
        end
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save1
        end
        break
      end # end sequence

      break if _tmp
      self.pos = _save
      _save14 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save14
      end
      break if _tmp
      self.pos = _save
      _tmp = _RawLine()
      break if _tmp
      self.pos = _save
      break
    end # end choice

    set_failed_rule :_SkipBlock unless _tmp
    return _tmp
  end

  # ExtendedSpecialChar = &{ notes? } "^"
  def _ExtendedSpecialChar

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  notes? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("^")
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_ExtendedSpecialChar unless _tmp
    return _tmp
  end

  # NoteReference = &{ notes? } RawNoteReference:ref { note_for ref }
  def _NoteReference

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  notes? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_RawNoteReference)
      ref = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  note_for ref ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_NoteReference unless _tmp
    return _tmp
  end

  # RawNoteReference = "[^" < (!@Newline !"]" .)+ > "]" { text }
  def _RawNoteReference

    _save = self.pos
    while true # sequence
      _tmp = match_string("[^")
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _save3 = self.pos
        _tmp = _Newline()
        _tmp = _tmp ? nil : true
        self.pos = _save3
        unless _tmp
          self.pos = _save2
          break
        end
        _save4 = self.pos
        _tmp = match_string("]")
        _tmp = _tmp ? nil : true
        self.pos = _save4
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = get_byte
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        while true

          _save5 = self.pos
          while true # sequence
            _save6 = self.pos
            _tmp = _Newline()
            _tmp = _tmp ? nil : true
            self.pos = _save6
            unless _tmp
              self.pos = _save5
              break
            end
            _save7 = self.pos
            _tmp = match_string("]")
            _tmp = _tmp ? nil : true
            self.pos = _save7
            unless _tmp
              self.pos = _save5
              break
            end
            _tmp = get_byte
            unless _tmp
              self.pos = _save5
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("]")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RawNoteReference unless _tmp
    return _tmp
  end

  # Note = &{ notes? } @NonindentSpace RawNoteReference:ref ":" @Sp @StartList:a RawNoteBlock:i { a.concat i } (&Indent RawNoteBlock:i { a.concat i })* { @footnotes[ref] = paragraph a                    nil                 }
  def _Note

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  notes? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_RawNoteReference)
      ref = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(":")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_RawNoteBlock)
      i = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a.concat i ; end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      while true

        _save3 = self.pos
        while true # sequence
          _save4 = self.pos
          _tmp = apply(:_Indent)
          self.pos = _save4
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_RawNoteBlock)
          i = @result
          unless _tmp
            self.pos = _save3
            break
          end
          @result = begin;  a.concat i ; end
          _tmp = true
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  @footnotes[ref] = paragraph a

                  nil
                ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_Note unless _tmp
    return _tmp
  end

  # InlineNote = &{ notes? } "^[" @StartList:a (!"]" Inline:l { a << l })+ "]" { ref = [:inline, @note_order.length]                @footnotes[ref] = paragraph a                 note_for ref              }
  def _InlineNote

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  notes? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("^[")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _save4 = self.pos
        _tmp = match_string("]")
        _tmp = _tmp ? nil : true
        self.pos = _save4
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_Inline)
        l = @result
        unless _tmp
          self.pos = _save3
          break
        end
        @result = begin;  a << l ; end
        _tmp = true
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      if _tmp
        while true

          _save5 = self.pos
          while true # sequence
            _save6 = self.pos
            _tmp = match_string("]")
            _tmp = _tmp ? nil : true
            self.pos = _save6
            unless _tmp
              self.pos = _save5
              break
            end
            _tmp = apply(:_Inline)
            l = @result
            unless _tmp
              self.pos = _save5
              break
            end
            @result = begin;  a << l ; end
            _tmp = true
            unless _tmp
              self.pos = _save5
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string("]")
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  ref = [:inline, @note_order.length]
               @footnotes[ref] = paragraph a

               note_for ref
             ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_InlineNote unless _tmp
    return _tmp
  end

  # Notes = (Note | SkipBlock)*
  def _Notes
    while true

      _save1 = self.pos
      while true # choice
        _tmp = apply(:_Note)
        break if _tmp
        self.pos = _save1
        _tmp = apply(:_SkipBlock)
        break if _tmp
        self.pos = _save1
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    set_failed_rule :_Notes unless _tmp
    return _tmp
  end

  # RawNoteBlock = @StartList:a (!@BlankLine OptionallyIndentedLine:l { a << l })+ < @BlankLine* > { a << text } { a }
  def _RawNoteBlock

    _save = self.pos
    while true # sequence
      _tmp = _StartList()
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos

      _save2 = self.pos
      while true # sequence
        _save3 = self.pos
        _tmp = _BlankLine()
        _tmp = _tmp ? nil : true
        self.pos = _save3
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_OptionallyIndentedLine)
        l = @result
        unless _tmp
          self.pos = _save2
          break
        end
        @result = begin;  a << l ; end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        while true

          _save4 = self.pos
          while true # sequence
            _save5 = self.pos
            _tmp = _BlankLine()
            _tmp = _tmp ? nil : true
            self.pos = _save5
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = apply(:_OptionallyIndentedLine)
            l = @result
            unless _tmp
              self.pos = _save4
              break
            end
            @result = begin;  a << l ; end
            _tmp = true
            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      while true
        _tmp = _BlankLine()
        break unless _tmp
      end
      _tmp = true
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a << text ; end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_RawNoteBlock unless _tmp
    return _tmp
  end

  # CodeFence = &{ github? } Ticks3 (@Sp StrChunk:format)? Spnl < ((!"`" Nonspacechar)+ | !Ticks3 /`+/ | Spacechar | @Newline)+ > Ticks3 @Sp @Newline* { verbatim = RDoc::Markup::Verbatim.new text               verbatim.format = format.intern if format.instance_of?(String)               verbatim             }
  def _CodeFence

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  github? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Ticks3)
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos

      _save3 = self.pos
      while true # sequence
        _tmp = _Sp()
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_StrChunk)
        format = @result
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      unless _tmp
        _tmp = true
        self.pos = _save2
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Spnl)
      unless _tmp
        self.pos = _save
        break
      end
      _text_start = self.pos
      _save4 = self.pos

      _save5 = self.pos
      while true # choice
        _save6 = self.pos

        _save7 = self.pos
        while true # sequence
          _save8 = self.pos
          _tmp = match_string("`")
          _tmp = _tmp ? nil : true
          self.pos = _save8
          unless _tmp
            self.pos = _save7
            break
          end
          _tmp = apply(:_Nonspacechar)
          unless _tmp
            self.pos = _save7
          end
          break
        end # end sequence

        if _tmp
          while true

            _save9 = self.pos
            while true # sequence
              _save10 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save10
              unless _tmp
                self.pos = _save9
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save9
              end
              break
            end # end sequence

            break unless _tmp
          end
          _tmp = true
        else
          self.pos = _save6
        end
        break if _tmp
        self.pos = _save5

        _save11 = self.pos
        while true # sequence
          _save12 = self.pos
          _tmp = apply(:_Ticks3)
          _tmp = _tmp ? nil : true
          self.pos = _save12
          unless _tmp
            self.pos = _save11
            break
          end
          _tmp = scan(/\A(?-mix:`+)/)
          unless _tmp
            self.pos = _save11
          end
          break
        end # end sequence

        break if _tmp
        self.pos = _save5
        _tmp = apply(:_Spacechar)
        break if _tmp
        self.pos = _save5
        _tmp = _Newline()
        break if _tmp
        self.pos = _save5
        break
      end # end choice

      if _tmp
        while true

          _save13 = self.pos
          while true # choice
            _save14 = self.pos

            _save15 = self.pos
            while true # sequence
              _save16 = self.pos
              _tmp = match_string("`")
              _tmp = _tmp ? nil : true
              self.pos = _save16
              unless _tmp
                self.pos = _save15
                break
              end
              _tmp = apply(:_Nonspacechar)
              unless _tmp
                self.pos = _save15
              end
              break
            end # end sequence

            if _tmp
              while true

                _save17 = self.pos
                while true # sequence
                  _save18 = self.pos
                  _tmp = match_string("`")
                  _tmp = _tmp ? nil : true
                  self.pos = _save18
                  unless _tmp
                    self.pos = _save17
                    break
                  end
                  _tmp = apply(:_Nonspacechar)
                  unless _tmp
                    self.pos = _save17
                  end
                  break
                end # end sequence

                break unless _tmp
              end
              _tmp = true
            else
              self.pos = _save14
            end
            break if _tmp
            self.pos = _save13

            _save19 = self.pos
            while true # sequence
              _save20 = self.pos
              _tmp = apply(:_Ticks3)
              _tmp = _tmp ? nil : true
              self.pos = _save20
              unless _tmp
                self.pos = _save19
                break
              end
              _tmp = scan(/\A(?-mix:`+)/)
              unless _tmp
                self.pos = _save19
              end
              break
            end # end sequence

            break if _tmp
            self.pos = _save13
            _tmp = apply(:_Spacechar)
            break if _tmp
            self.pos = _save13
            _tmp = _Newline()
            break if _tmp
            self.pos = _save13
            break
          end # end choice

          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save4
      end
      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Ticks3)
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      while true
        _tmp = _Newline()
        break unless _tmp
      end
      _tmp = true
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  verbatim = RDoc::Markup::Verbatim.new text
              verbatim.format = format.intern if format.instance_of?(String)
              verbatim
            ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_CodeFence unless _tmp
    return _tmp
  end

  # DefinitionList = &{ definition_lists? } DefinitionListItem+:list { RDoc::Markup::List.new :NOTE, *list.flatten }
  def _DefinitionList

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _tmp = begin;  definition_lists? ; end
      self.pos = _save1
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _ary = []
      _tmp = apply(:_DefinitionListItem)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_DefinitionListItem)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save2
      end
      list = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  RDoc::Markup::List.new :NOTE, *list.flatten ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_DefinitionList unless _tmp
    return _tmp
  end

  # DefinitionListItem = DefinitionListLabel+:label DefinitionListDefinition+:defns { list_items = []                        list_items <<                          RDoc::Markup::ListItem.new(label, defns.shift)                         list_items.concat defns.map { |defn|                          RDoc::Markup::ListItem.new nil, defn                        } unless list_items.empty?                         list_items                      }
  def _DefinitionListItem

    _save = self.pos
    while true # sequence
      _save1 = self.pos
      _ary = []
      _tmp = apply(:_DefinitionListLabel)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_DefinitionListLabel)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save1
      end
      label = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save2 = self.pos
      _ary = []
      _tmp = apply(:_DefinitionListDefinition)
      if _tmp
        _ary << @result
        while true
          _tmp = apply(:_DefinitionListDefinition)
          _ary << @result if _tmp
          break unless _tmp
        end
        _tmp = true
        @result = _ary
      else
        self.pos = _save2
      end
      defns = @result
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  list_items = []
                       list_items <<
                         RDoc::Markup::ListItem.new(label, defns.shift)

                       list_items.concat defns.map { |defn|
                         RDoc::Markup::ListItem.new nil, defn
                       } unless list_items.empty?

                       list_items
                     ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_DefinitionListItem unless _tmp
    return _tmp
  end

  # DefinitionListLabel = StrChunk:label @Sp @Newline { label }
  def _DefinitionListLabel

    _save = self.pos
    while true # sequence
      _tmp = apply(:_StrChunk)
      label = @result
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Sp()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Newline()
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  label ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_DefinitionListLabel unless _tmp
    return _tmp
  end

  # DefinitionListDefinition = @NonindentSpace ":" @Space Inlines:a @BlankLine+ { paragraph a }
  def _DefinitionListDefinition

    _save = self.pos
    while true # sequence
      _tmp = _NonindentSpace()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = match_string(":")
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = _Space()
      unless _tmp
        self.pos = _save
        break
      end
      _tmp = apply(:_Inlines)
      a = @result
      unless _tmp
        self.pos = _save
        break
      end
      _save1 = self.pos
      _tmp = _BlankLine()
      if _tmp
        while true
          _tmp = _BlankLine()
          break unless _tmp
        end
        _tmp = true
      else
        self.pos = _save1
      end
      unless _tmp
        self.pos = _save
        break
      end
      @result = begin;  paragraph a ; end
      _tmp = true
      unless _tmp
        self.pos = _save
      end
      break
    end # end sequence

    set_failed_rule :_DefinitionListDefinition unless _tmp
    return _tmp
  end

  Rules = {}
  Rules[:_root] = rule_info("root", "Doc")
  Rules[:_Doc] = rule_info("Doc", "BOM? Block*:a { RDoc::Markup::Document.new(*a.compact) }")
  Rules[:_Block] = rule_info("Block", "@BlankLine* (BlockQuote | Verbatim | CodeFence | Note | Reference | HorizontalRule | Heading | OrderedList | BulletList | DefinitionList | HtmlBlock | StyleBlock | Para | Plain)")
  Rules[:_Para] = rule_info("Para", "@NonindentSpace Inlines:a @BlankLine+ { paragraph a }")
  Rules[:_Plain] = rule_info("Plain", "Inlines:a { paragraph a }")
  Rules[:_AtxInline] = rule_info("AtxInline", "!@Newline !(@Sp /\#*/ @Sp @Newline) Inline")
  Rules[:_AtxStart] = rule_info("AtxStart", "< /\\\#{1,6}/ > { text.length }")
  Rules[:_AtxHeading] = rule_info("AtxHeading", "AtxStart:s @Sp AtxInline+:a (@Sp /\#*/ @Sp)? @Newline { RDoc::Markup::Heading.new(s, a.join) }")
  Rules[:_SetextHeading] = rule_info("SetextHeading", "(SetextHeading1 | SetextHeading2)")
  Rules[:_SetextBottom1] = rule_info("SetextBottom1", "/={1,}/ @Newline")
  Rules[:_SetextBottom2] = rule_info("SetextBottom2", "/-{1,}/ @Newline")
  Rules[:_SetextHeading1] = rule_info("SetextHeading1", "&(@RawLine SetextBottom1) @StartList:a (!@Endline Inline:b { a << b })+ @Sp @Newline SetextBottom1 { RDoc::Markup::Heading.new(1, a.join) }")
  Rules[:_SetextHeading2] = rule_info("SetextHeading2", "&(@RawLine SetextBottom2) @StartList:a (!@Endline Inline:b { a << b })+ @Sp @Newline SetextBottom2 { RDoc::Markup::Heading.new(2, a.join) }")
  Rules[:_Heading] = rule_info("Heading", "(SetextHeading | AtxHeading)")
  Rules[:_BlockQuote] = rule_info("BlockQuote", "BlockQuoteRaw:a { RDoc::Markup::BlockQuote.new(*a) }")
  Rules[:_BlockQuoteRaw] = rule_info("BlockQuoteRaw", "@StartList:a (\">\" \" \"? Line:l { a << l } (!\">\" !@BlankLine Line:c { a << c })* (@BlankLine:n { a << n })*)+ { inner_parse a.join }")
  Rules[:_NonblankIndentedLine] = rule_info("NonblankIndentedLine", "!@BlankLine IndentedLine")
  Rules[:_VerbatimChunk] = rule_info("VerbatimChunk", "@BlankLine*:a NonblankIndentedLine+:b { a.concat b }")
  Rules[:_Verbatim] = rule_info("Verbatim", "VerbatimChunk+:a { RDoc::Markup::Verbatim.new(*a.flatten) }")
  Rules[:_HorizontalRule] = rule_info("HorizontalRule", "@NonindentSpace (\"*\" @Sp \"*\" @Sp \"*\" (@Sp \"*\")* | \"-\" @Sp \"-\" @Sp \"-\" (@Sp \"-\")* | \"_\" @Sp \"_\" @Sp \"_\" (@Sp \"_\")*) @Sp @Newline @BlankLine+ { RDoc::Markup::Rule.new 1 }")
  Rules[:_Bullet] = rule_info("Bullet", "!HorizontalRule @NonindentSpace /[+*-]/ @Spacechar+")
  Rules[:_BulletList] = rule_info("BulletList", "&Bullet (ListTight | ListLoose):a { RDoc::Markup::List.new(:BULLET, *a) }")
  Rules[:_ListTight] = rule_info("ListTight", "ListItemTight+:a @BlankLine* !(Bullet | Enumerator) { a }")
  Rules[:_ListLoose] = rule_info("ListLoose", "@StartList:a (ListItem:b @BlankLine* { a << b })+ { a }")
  Rules[:_ListItem] = rule_info("ListItem", "(Bullet | Enumerator) @StartList:a ListBlock:b { a << b } (ListContinuationBlock:c { a.push(*c) })* { list_item_from a }")
  Rules[:_ListItemTight] = rule_info("ListItemTight", "(Bullet | Enumerator) ListBlock:a (!@BlankLine ListContinuationBlock:b { a.push(*b) })* !ListContinuationBlock { list_item_from a }")
  Rules[:_ListBlock] = rule_info("ListBlock", "!@BlankLine Line:a ListBlockLine*:c { [a, *c] }")
  Rules[:_ListContinuationBlock] = rule_info("ListContinuationBlock", "@StartList:a @BlankLine* { a << \"\\n\" } (Indent ListBlock:b { a.concat b })+ { a }")
  Rules[:_Enumerator] = rule_info("Enumerator", "@NonindentSpace [0-9]+ \".\" @Spacechar+")
  Rules[:_OrderedList] = rule_info("OrderedList", "&Enumerator (ListTight | ListLoose):a { RDoc::Markup::List.new(:NUMBER, *a) }")
  Rules[:_ListBlockLine] = rule_info("ListBlockLine", "!@BlankLine !(Indent? (Bullet | Enumerator)) !HorizontalRule OptionallyIndentedLine")
  Rules[:_HtmlOpenAnchor] = rule_info("HtmlOpenAnchor", "\"<\" Spnl (\"a\" | \"A\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlCloseAnchor] = rule_info("HtmlCloseAnchor", "\"<\" Spnl \"/\" (\"a\" | \"A\") Spnl \">\"")
  Rules[:_HtmlAnchor] = rule_info("HtmlAnchor", "HtmlOpenAnchor (HtmlAnchor | !HtmlCloseAnchor .)* HtmlCloseAnchor")
  Rules[:_HtmlBlockOpenAddress] = rule_info("HtmlBlockOpenAddress", "\"<\" Spnl (\"address\" | \"ADDRESS\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseAddress] = rule_info("HtmlBlockCloseAddress", "\"<\" Spnl \"/\" (\"address\" | \"ADDRESS\") Spnl \">\"")
  Rules[:_HtmlBlockAddress] = rule_info("HtmlBlockAddress", "HtmlBlockOpenAddress (HtmlBlockAddress | !HtmlBlockCloseAddress .)* HtmlBlockCloseAddress")
  Rules[:_HtmlBlockOpenBlockquote] = rule_info("HtmlBlockOpenBlockquote", "\"<\" Spnl (\"blockquote\" | \"BLOCKQUOTE\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseBlockquote] = rule_info("HtmlBlockCloseBlockquote", "\"<\" Spnl \"/\" (\"blockquote\" | \"BLOCKQUOTE\") Spnl \">\"")
  Rules[:_HtmlBlockBlockquote] = rule_info("HtmlBlockBlockquote", "HtmlBlockOpenBlockquote (HtmlBlockBlockquote | !HtmlBlockCloseBlockquote .)* HtmlBlockCloseBlockquote")
  Rules[:_HtmlBlockOpenCenter] = rule_info("HtmlBlockOpenCenter", "\"<\" Spnl (\"center\" | \"CENTER\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseCenter] = rule_info("HtmlBlockCloseCenter", "\"<\" Spnl \"/\" (\"center\" | \"CENTER\") Spnl \">\"")
  Rules[:_HtmlBlockCenter] = rule_info("HtmlBlockCenter", "HtmlBlockOpenCenter (HtmlBlockCenter | !HtmlBlockCloseCenter .)* HtmlBlockCloseCenter")
  Rules[:_HtmlBlockOpenDir] = rule_info("HtmlBlockOpenDir", "\"<\" Spnl (\"dir\" | \"DIR\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseDir] = rule_info("HtmlBlockCloseDir", "\"<\" Spnl \"/\" (\"dir\" | \"DIR\") Spnl \">\"")
  Rules[:_HtmlBlockDir] = rule_info("HtmlBlockDir", "HtmlBlockOpenDir (HtmlBlockDir | !HtmlBlockCloseDir .)* HtmlBlockCloseDir")
  Rules[:_HtmlBlockOpenDiv] = rule_info("HtmlBlockOpenDiv", "\"<\" Spnl (\"div\" | \"DIV\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseDiv] = rule_info("HtmlBlockCloseDiv", "\"<\" Spnl \"/\" (\"div\" | \"DIV\") Spnl \">\"")
  Rules[:_HtmlBlockDiv] = rule_info("HtmlBlockDiv", "HtmlBlockOpenDiv (HtmlBlockDiv | !HtmlBlockCloseDiv .)* HtmlBlockCloseDiv")
  Rules[:_HtmlBlockOpenDl] = rule_info("HtmlBlockOpenDl", "\"<\" Spnl (\"dl\" | \"DL\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseDl] = rule_info("HtmlBlockCloseDl", "\"<\" Spnl \"/\" (\"dl\" | \"DL\") Spnl \">\"")
  Rules[:_HtmlBlockDl] = rule_info("HtmlBlockDl", "HtmlBlockOpenDl (HtmlBlockDl | !HtmlBlockCloseDl .)* HtmlBlockCloseDl")
  Rules[:_HtmlBlockOpenFieldset] = rule_info("HtmlBlockOpenFieldset", "\"<\" Spnl (\"fieldset\" | \"FIELDSET\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseFieldset] = rule_info("HtmlBlockCloseFieldset", "\"<\" Spnl \"/\" (\"fieldset\" | \"FIELDSET\") Spnl \">\"")
  Rules[:_HtmlBlockFieldset] = rule_info("HtmlBlockFieldset", "HtmlBlockOpenFieldset (HtmlBlockFieldset | !HtmlBlockCloseFieldset .)* HtmlBlockCloseFieldset")
  Rules[:_HtmlBlockOpenForm] = rule_info("HtmlBlockOpenForm", "\"<\" Spnl (\"form\" | \"FORM\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseForm] = rule_info("HtmlBlockCloseForm", "\"<\" Spnl \"/\" (\"form\" | \"FORM\") Spnl \">\"")
  Rules[:_HtmlBlockForm] = rule_info("HtmlBlockForm", "HtmlBlockOpenForm (HtmlBlockForm | !HtmlBlockCloseForm .)* HtmlBlockCloseForm")
  Rules[:_HtmlBlockOpenH1] = rule_info("HtmlBlockOpenH1", "\"<\" Spnl (\"h1\" | \"H1\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH1] = rule_info("HtmlBlockCloseH1", "\"<\" Spnl \"/\" (\"h1\" | \"H1\") Spnl \">\"")
  Rules[:_HtmlBlockH1] = rule_info("HtmlBlockH1", "HtmlBlockOpenH1 (HtmlBlockH1 | !HtmlBlockCloseH1 .)* HtmlBlockCloseH1")
  Rules[:_HtmlBlockOpenH2] = rule_info("HtmlBlockOpenH2", "\"<\" Spnl (\"h2\" | \"H2\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH2] = rule_info("HtmlBlockCloseH2", "\"<\" Spnl \"/\" (\"h2\" | \"H2\") Spnl \">\"")
  Rules[:_HtmlBlockH2] = rule_info("HtmlBlockH2", "HtmlBlockOpenH2 (HtmlBlockH2 | !HtmlBlockCloseH2 .)* HtmlBlockCloseH2")
  Rules[:_HtmlBlockOpenH3] = rule_info("HtmlBlockOpenH3", "\"<\" Spnl (\"h3\" | \"H3\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH3] = rule_info("HtmlBlockCloseH3", "\"<\" Spnl \"/\" (\"h3\" | \"H3\") Spnl \">\"")
  Rules[:_HtmlBlockH3] = rule_info("HtmlBlockH3", "HtmlBlockOpenH3 (HtmlBlockH3 | !HtmlBlockCloseH3 .)* HtmlBlockCloseH3")
  Rules[:_HtmlBlockOpenH4] = rule_info("HtmlBlockOpenH4", "\"<\" Spnl (\"h4\" | \"H4\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH4] = rule_info("HtmlBlockCloseH4", "\"<\" Spnl \"/\" (\"h4\" | \"H4\") Spnl \">\"")
  Rules[:_HtmlBlockH4] = rule_info("HtmlBlockH4", "HtmlBlockOpenH4 (HtmlBlockH4 | !HtmlBlockCloseH4 .)* HtmlBlockCloseH4")
  Rules[:_HtmlBlockOpenH5] = rule_info("HtmlBlockOpenH5", "\"<\" Spnl (\"h5\" | \"H5\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH5] = rule_info("HtmlBlockCloseH5", "\"<\" Spnl \"/\" (\"h5\" | \"H5\") Spnl \">\"")
  Rules[:_HtmlBlockH5] = rule_info("HtmlBlockH5", "HtmlBlockOpenH5 (HtmlBlockH5 | !HtmlBlockCloseH5 .)* HtmlBlockCloseH5")
  Rules[:_HtmlBlockOpenH6] = rule_info("HtmlBlockOpenH6", "\"<\" Spnl (\"h6\" | \"H6\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseH6] = rule_info("HtmlBlockCloseH6", "\"<\" Spnl \"/\" (\"h6\" | \"H6\") Spnl \">\"")
  Rules[:_HtmlBlockH6] = rule_info("HtmlBlockH6", "HtmlBlockOpenH6 (HtmlBlockH6 | !HtmlBlockCloseH6 .)* HtmlBlockCloseH6")
  Rules[:_HtmlBlockOpenMenu] = rule_info("HtmlBlockOpenMenu", "\"<\" Spnl (\"menu\" | \"MENU\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseMenu] = rule_info("HtmlBlockCloseMenu", "\"<\" Spnl \"/\" (\"menu\" | \"MENU\") Spnl \">\"")
  Rules[:_HtmlBlockMenu] = rule_info("HtmlBlockMenu", "HtmlBlockOpenMenu (HtmlBlockMenu | !HtmlBlockCloseMenu .)* HtmlBlockCloseMenu")
  Rules[:_HtmlBlockOpenNoframes] = rule_info("HtmlBlockOpenNoframes", "\"<\" Spnl (\"noframes\" | \"NOFRAMES\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseNoframes] = rule_info("HtmlBlockCloseNoframes", "\"<\" Spnl \"/\" (\"noframes\" | \"NOFRAMES\") Spnl \">\"")
  Rules[:_HtmlBlockNoframes] = rule_info("HtmlBlockNoframes", "HtmlBlockOpenNoframes (HtmlBlockNoframes | !HtmlBlockCloseNoframes .)* HtmlBlockCloseNoframes")
  Rules[:_HtmlBlockOpenNoscript] = rule_info("HtmlBlockOpenNoscript", "\"<\" Spnl (\"noscript\" | \"NOSCRIPT\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseNoscript] = rule_info("HtmlBlockCloseNoscript", "\"<\" Spnl \"/\" (\"noscript\" | \"NOSCRIPT\") Spnl \">\"")
  Rules[:_HtmlBlockNoscript] = rule_info("HtmlBlockNoscript", "HtmlBlockOpenNoscript (HtmlBlockNoscript | !HtmlBlockCloseNoscript .)* HtmlBlockCloseNoscript")
  Rules[:_HtmlBlockOpenOl] = rule_info("HtmlBlockOpenOl", "\"<\" Spnl (\"ol\" | \"OL\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseOl] = rule_info("HtmlBlockCloseOl", "\"<\" Spnl \"/\" (\"ol\" | \"OL\") Spnl \">\"")
  Rules[:_HtmlBlockOl] = rule_info("HtmlBlockOl", "HtmlBlockOpenOl (HtmlBlockOl | !HtmlBlockCloseOl .)* HtmlBlockCloseOl")
  Rules[:_HtmlBlockOpenP] = rule_info("HtmlBlockOpenP", "\"<\" Spnl (\"p\" | \"P\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseP] = rule_info("HtmlBlockCloseP", "\"<\" Spnl \"/\" (\"p\" | \"P\") Spnl \">\"")
  Rules[:_HtmlBlockP] = rule_info("HtmlBlockP", "HtmlBlockOpenP (HtmlBlockP | !HtmlBlockCloseP .)* HtmlBlockCloseP")
  Rules[:_HtmlBlockOpenPre] = rule_info("HtmlBlockOpenPre", "\"<\" Spnl (\"pre\" | \"PRE\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockClosePre] = rule_info("HtmlBlockClosePre", "\"<\" Spnl \"/\" (\"pre\" | \"PRE\") Spnl \">\"")
  Rules[:_HtmlBlockPre] = rule_info("HtmlBlockPre", "HtmlBlockOpenPre (HtmlBlockPre | !HtmlBlockClosePre .)* HtmlBlockClosePre")
  Rules[:_HtmlBlockOpenTable] = rule_info("HtmlBlockOpenTable", "\"<\" Spnl (\"table\" | \"TABLE\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTable] = rule_info("HtmlBlockCloseTable", "\"<\" Spnl \"/\" (\"table\" | \"TABLE\") Spnl \">\"")
  Rules[:_HtmlBlockTable] = rule_info("HtmlBlockTable", "HtmlBlockOpenTable (HtmlBlockTable | !HtmlBlockCloseTable .)* HtmlBlockCloseTable")
  Rules[:_HtmlBlockOpenUl] = rule_info("HtmlBlockOpenUl", "\"<\" Spnl (\"ul\" | \"UL\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseUl] = rule_info("HtmlBlockCloseUl", "\"<\" Spnl \"/\" (\"ul\" | \"UL\") Spnl \">\"")
  Rules[:_HtmlBlockUl] = rule_info("HtmlBlockUl", "HtmlBlockOpenUl (HtmlBlockUl | !HtmlBlockCloseUl .)* HtmlBlockCloseUl")
  Rules[:_HtmlBlockOpenDd] = rule_info("HtmlBlockOpenDd", "\"<\" Spnl (\"dd\" | \"DD\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseDd] = rule_info("HtmlBlockCloseDd", "\"<\" Spnl \"/\" (\"dd\" | \"DD\") Spnl \">\"")
  Rules[:_HtmlBlockDd] = rule_info("HtmlBlockDd", "HtmlBlockOpenDd (HtmlBlockDd | !HtmlBlockCloseDd .)* HtmlBlockCloseDd")
  Rules[:_HtmlBlockOpenDt] = rule_info("HtmlBlockOpenDt", "\"<\" Spnl (\"dt\" | \"DT\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseDt] = rule_info("HtmlBlockCloseDt", "\"<\" Spnl \"/\" (\"dt\" | \"DT\") Spnl \">\"")
  Rules[:_HtmlBlockDt] = rule_info("HtmlBlockDt", "HtmlBlockOpenDt (HtmlBlockDt | !HtmlBlockCloseDt .)* HtmlBlockCloseDt")
  Rules[:_HtmlBlockOpenFrameset] = rule_info("HtmlBlockOpenFrameset", "\"<\" Spnl (\"frameset\" | \"FRAMESET\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseFrameset] = rule_info("HtmlBlockCloseFrameset", "\"<\" Spnl \"/\" (\"frameset\" | \"FRAMESET\") Spnl \">\"")
  Rules[:_HtmlBlockFrameset] = rule_info("HtmlBlockFrameset", "HtmlBlockOpenFrameset (HtmlBlockFrameset | !HtmlBlockCloseFrameset .)* HtmlBlockCloseFrameset")
  Rules[:_HtmlBlockOpenLi] = rule_info("HtmlBlockOpenLi", "\"<\" Spnl (\"li\" | \"LI\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseLi] = rule_info("HtmlBlockCloseLi", "\"<\" Spnl \"/\" (\"li\" | \"LI\") Spnl \">\"")
  Rules[:_HtmlBlockLi] = rule_info("HtmlBlockLi", "HtmlBlockOpenLi (HtmlBlockLi | !HtmlBlockCloseLi .)* HtmlBlockCloseLi")
  Rules[:_HtmlBlockOpenTbody] = rule_info("HtmlBlockOpenTbody", "\"<\" Spnl (\"tbody\" | \"TBODY\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTbody] = rule_info("HtmlBlockCloseTbody", "\"<\" Spnl \"/\" (\"tbody\" | \"TBODY\") Spnl \">\"")
  Rules[:_HtmlBlockTbody] = rule_info("HtmlBlockTbody", "HtmlBlockOpenTbody (HtmlBlockTbody | !HtmlBlockCloseTbody .)* HtmlBlockCloseTbody")
  Rules[:_HtmlBlockOpenTd] = rule_info("HtmlBlockOpenTd", "\"<\" Spnl (\"td\" | \"TD\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTd] = rule_info("HtmlBlockCloseTd", "\"<\" Spnl \"/\" (\"td\" | \"TD\") Spnl \">\"")
  Rules[:_HtmlBlockTd] = rule_info("HtmlBlockTd", "HtmlBlockOpenTd (HtmlBlockTd | !HtmlBlockCloseTd .)* HtmlBlockCloseTd")
  Rules[:_HtmlBlockOpenTfoot] = rule_info("HtmlBlockOpenTfoot", "\"<\" Spnl (\"tfoot\" | \"TFOOT\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTfoot] = rule_info("HtmlBlockCloseTfoot", "\"<\" Spnl \"/\" (\"tfoot\" | \"TFOOT\") Spnl \">\"")
  Rules[:_HtmlBlockTfoot] = rule_info("HtmlBlockTfoot", "HtmlBlockOpenTfoot (HtmlBlockTfoot | !HtmlBlockCloseTfoot .)* HtmlBlockCloseTfoot")
  Rules[:_HtmlBlockOpenTh] = rule_info("HtmlBlockOpenTh", "\"<\" Spnl (\"th\" | \"TH\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTh] = rule_info("HtmlBlockCloseTh", "\"<\" Spnl \"/\" (\"th\" | \"TH\") Spnl \">\"")
  Rules[:_HtmlBlockTh] = rule_info("HtmlBlockTh", "HtmlBlockOpenTh (HtmlBlockTh | !HtmlBlockCloseTh .)* HtmlBlockCloseTh")
  Rules[:_HtmlBlockOpenThead] = rule_info("HtmlBlockOpenThead", "\"<\" Spnl (\"thead\" | \"THEAD\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseThead] = rule_info("HtmlBlockCloseThead", "\"<\" Spnl \"/\" (\"thead\" | \"THEAD\") Spnl \">\"")
  Rules[:_HtmlBlockThead] = rule_info("HtmlBlockThead", "HtmlBlockOpenThead (HtmlBlockThead | !HtmlBlockCloseThead .)* HtmlBlockCloseThead")
  Rules[:_HtmlBlockOpenTr] = rule_info("HtmlBlockOpenTr", "\"<\" Spnl (\"tr\" | \"TR\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseTr] = rule_info("HtmlBlockCloseTr", "\"<\" Spnl \"/\" (\"tr\" | \"TR\") Spnl \">\"")
  Rules[:_HtmlBlockTr] = rule_info("HtmlBlockTr", "HtmlBlockOpenTr (HtmlBlockTr | !HtmlBlockCloseTr .)* HtmlBlockCloseTr")
  Rules[:_HtmlBlockOpenScript] = rule_info("HtmlBlockOpenScript", "\"<\" Spnl (\"script\" | \"SCRIPT\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseScript] = rule_info("HtmlBlockCloseScript", "\"<\" Spnl \"/\" (\"script\" | \"SCRIPT\") Spnl \">\"")
  Rules[:_HtmlBlockScript] = rule_info("HtmlBlockScript", "HtmlBlockOpenScript (!HtmlBlockCloseScript .)* HtmlBlockCloseScript")
  Rules[:_HtmlBlockOpenHead] = rule_info("HtmlBlockOpenHead", "\"<\" Spnl (\"head\" | \"HEAD\") Spnl HtmlAttribute* \">\"")
  Rules[:_HtmlBlockCloseHead] = rule_info("HtmlBlockCloseHead", "\"<\" Spnl \"/\" (\"head\" | \"HEAD\") Spnl \">\"")
  Rules[:_HtmlBlockHead] = rule_info("HtmlBlockHead", "HtmlBlockOpenHead (!HtmlBlockCloseHead .)* HtmlBlockCloseHead")
  Rules[:_HtmlBlockInTags] = rule_info("HtmlBlockInTags", "(HtmlAnchor | HtmlBlockAddress | HtmlBlockBlockquote | HtmlBlockCenter | HtmlBlockDir | HtmlBlockDiv | HtmlBlockDl | HtmlBlockFieldset | HtmlBlockForm | HtmlBlockH1 | HtmlBlockH2 | HtmlBlockH3 | HtmlBlockH4 | HtmlBlockH5 | HtmlBlockH6 | HtmlBlockMenu | HtmlBlockNoframes | HtmlBlockNoscript | HtmlBlockOl | HtmlBlockP | HtmlBlockPre | HtmlBlockTable | HtmlBlockUl | HtmlBlockDd | HtmlBlockDt | HtmlBlockFrameset | HtmlBlockLi | HtmlBlockTbody | HtmlBlockTd | HtmlBlockTfoot | HtmlBlockTh | HtmlBlockThead | HtmlBlockTr | HtmlBlockScript | HtmlBlockHead)")
  Rules[:_HtmlBlock] = rule_info("HtmlBlock", "< (HtmlBlockInTags | HtmlComment | HtmlBlockSelfClosing | HtmlUnclosed) > @BlankLine+ { if html? then                 RDoc::Markup::Raw.new text               end }")
  Rules[:_HtmlUnclosed] = rule_info("HtmlUnclosed", "\"<\" Spnl HtmlUnclosedType Spnl HtmlAttribute* Spnl \">\"")
  Rules[:_HtmlUnclosedType] = rule_info("HtmlUnclosedType", "(\"HR\" | \"hr\")")
  Rules[:_HtmlBlockSelfClosing] = rule_info("HtmlBlockSelfClosing", "\"<\" Spnl HtmlBlockType Spnl HtmlAttribute* \"/\" Spnl \">\"")
  Rules[:_HtmlBlockType] = rule_info("HtmlBlockType", "(\"ADDRESS\" | \"BLOCKQUOTE\" | \"CENTER\" | \"DD\" | \"DIR\" | \"DIV\" | \"DL\" | \"DT\" | \"FIELDSET\" | \"FORM\" | \"FRAMESET\" | \"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\" | \"HR\" | \"ISINDEX\" | \"LI\" | \"MENU\" | \"NOFRAMES\" | \"NOSCRIPT\" | \"OL\" | \"P\" | \"PRE\" | \"SCRIPT\" | \"TABLE\" | \"TBODY\" | \"TD\" | \"TFOOT\" | \"TH\" | \"THEAD\" | \"TR\" | \"UL\" | \"address\" | \"blockquote\" | \"center\" | \"dd\" | \"dir\" | \"div\" | \"dl\" | \"dt\" | \"fieldset\" | \"form\" | \"frameset\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"hr\" | \"isindex\" | \"li\" | \"menu\" | \"noframes\" | \"noscript\" | \"ol\" | \"p\" | \"pre\" | \"script\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"ul\")")
  Rules[:_StyleOpen] = rule_info("StyleOpen", "\"<\" Spnl (\"style\" | \"STYLE\") Spnl HtmlAttribute* \">\"")
  Rules[:_StyleClose] = rule_info("StyleClose", "\"<\" Spnl \"/\" (\"style\" | \"STYLE\") Spnl \">\"")
  Rules[:_InStyleTags] = rule_info("InStyleTags", "StyleOpen (!StyleClose .)* StyleClose")
  Rules[:_StyleBlock] = rule_info("StyleBlock", "< InStyleTags > @BlankLine* { if css? then                     RDoc::Markup::Raw.new text                   end }")
  Rules[:_Inlines] = rule_info("Inlines", "(!@Endline Inline:i { i } | @Endline:c &Inline { c })+:chunks @Endline? { chunks }")
  Rules[:_Inline] = rule_info("Inline", "(Str | @Endline | UlOrStarLine | @Space | Strong | Emph | Strike | Image | Link | NoteReference | InlineNote | Code | RawHtml | Entity | EscapedChar | Symbol)")
  Rules[:_Space] = rule_info("Space", "@Spacechar+ { \" \" }")
  Rules[:_Str] = rule_info("Str", "@StartList:a < @NormalChar+ > { a = text } (StrChunk:c { a << c })* { a }")
  Rules[:_StrChunk] = rule_info("StrChunk", "< (@NormalChar | /_+/ &Alphanumeric)+ > { text }")
  Rules[:_EscapedChar] = rule_info("EscapedChar", "\"\\\\\" !@Newline < /[:\\\\`|*_{}\\[\\]()\#+.!><-]/ > { text }")
  Rules[:_Entity] = rule_info("Entity", "(HexEntity | DecEntity | CharEntity):a { a }")
  Rules[:_Endline] = rule_info("Endline", "(@LineBreak | @TerminalEndline | @NormalEndline)")
  Rules[:_NormalEndline] = rule_info("NormalEndline", "@Sp @Newline !@BlankLine !\">\" !AtxStart !(Line /={1,}|-{1,}/ @Newline) { \"\\n\" }")
  Rules[:_TerminalEndline] = rule_info("TerminalEndline", "@Sp @Newline @Eof")
  Rules[:_LineBreak] = rule_info("LineBreak", "\"  \" @NormalEndline { RDoc::Markup::HardBreak.new }")
  Rules[:_Symbol] = rule_info("Symbol", "< @SpecialChar > { text }")
  Rules[:_UlOrStarLine] = rule_info("UlOrStarLine", "(UlLine | StarLine):a { a }")
  Rules[:_StarLine] = rule_info("StarLine", "(< /\\*{4,}/ > { text } | < @Spacechar /\\*+/ &@Spacechar > { text })")
  Rules[:_UlLine] = rule_info("UlLine", "(< /_{4,}/ > { text } | < @Spacechar /_+/ &@Spacechar > { text })")
  Rules[:_Emph] = rule_info("Emph", "(EmphStar | EmphUl)")
  Rules[:_Whitespace] = rule_info("Whitespace", "(@Spacechar | @Newline)")
  Rules[:_EmphStar] = rule_info("EmphStar", "\"*\" !@Whitespace @StartList:a (!\"*\" Inline:b { a << b } | StrongStar:b { a << b })+ \"*\" { emphasis a.join }")
  Rules[:_EmphUl] = rule_info("EmphUl", "\"_\" !@Whitespace @StartList:a (!\"_\" Inline:b { a << b } | StrongUl:b { a << b })+ \"_\" { emphasis a.join }")
  Rules[:_Strong] = rule_info("Strong", "(StrongStar | StrongUl)")
  Rules[:_StrongStar] = rule_info("StrongStar", "\"**\" !@Whitespace @StartList:a (!\"**\" Inline:b { a << b })+ \"**\" { strong a.join }")
  Rules[:_StrongUl] = rule_info("StrongUl", "\"__\" !@Whitespace @StartList:a (!\"__\" Inline:b { a << b })+ \"__\" { strong a.join }")
  Rules[:_Strike] = rule_info("Strike", "&{ strike? } \"~~\" !@Whitespace @StartList:a (!\"~~\" Inline:b { a << b })+ \"~~\" { strike a.join }")
  Rules[:_Image] = rule_info("Image", "\"!\" (ExplicitLink | ReferenceLink):a { \"rdoc-image:\#{a[/\\[(.*)\\]/, 1]}\" }")
  Rules[:_Link] = rule_info("Link", "(ExplicitLink | ReferenceLink | AutoLink)")
  Rules[:_ReferenceLink] = rule_info("ReferenceLink", "(ReferenceLinkDouble | ReferenceLinkSingle)")
  Rules[:_ReferenceLinkDouble] = rule_info("ReferenceLinkDouble", "Label:content < Spnl > !\"[]\" Label:label { link_to content, label, text }")
  Rules[:_ReferenceLinkSingle] = rule_info("ReferenceLinkSingle", "Label:content < (Spnl \"[]\")? > { link_to content, content, text }")
  Rules[:_ExplicitLink] = rule_info("ExplicitLink", "Label:l \"(\" @Sp Source:s Spnl Title @Sp \")\" { \"{\#{l}}[\#{s}]\" }")
  Rules[:_Source] = rule_info("Source", "(\"<\" < SourceContents > \">\" | < SourceContents >) { text }")
  Rules[:_SourceContents] = rule_info("SourceContents", "((!\"(\" !\")\" !\">\" Nonspacechar)+ | \"(\" SourceContents \")\")*")
  Rules[:_Title] = rule_info("Title", "(TitleSingle | TitleDouble | \"\"):a { a }")
  Rules[:_TitleSingle] = rule_info("TitleSingle", "\"'\" (!(\"'\" @Sp (\")\" | @Newline)) .)* \"'\"")
  Rules[:_TitleDouble] = rule_info("TitleDouble", "\"\\\"\" (!(\"\\\"\" @Sp (\")\" | @Newline)) .)* \"\\\"\"")
  Rules[:_AutoLink] = rule_info("AutoLink", "(AutoLinkUrl | AutoLinkEmail)")
  Rules[:_AutoLinkUrl] = rule_info("AutoLinkUrl", "\"<\" < /[A-Za-z]+/ \"://\" (!@Newline !\">\" .)+ > \">\" { text }")
  Rules[:_AutoLinkEmail] = rule_info("AutoLinkEmail", "\"<\" \"mailto:\"? < /[\\w+.\\/!%~$-]+/i \"@\" (!@Newline !\">\" .)+ > \">\" { \"mailto:\#{text}\" }")
  Rules[:_Reference] = rule_info("Reference", "@NonindentSpace !\"[]\" Label:label \":\" Spnl RefSrc:link RefTitle @BlankLine+ { \# TODO use title               reference label, link               nil             }")
  Rules[:_Label] = rule_info("Label", "\"[\" (!\"^\" &{ notes? } | &. &{ !notes? }) @StartList:a (!\"]\" Inline:l { a << l })* \"]\" { a.join.gsub(/\\s+/, ' ') }")
  Rules[:_RefSrc] = rule_info("RefSrc", "< Nonspacechar+ > { text }")
  Rules[:_RefTitle] = rule_info("RefTitle", "(RefTitleSingle | RefTitleDouble | RefTitleParens | EmptyTitle)")
  Rules[:_EmptyTitle] = rule_info("EmptyTitle", "\"\"")
  Rules[:_RefTitleSingle] = rule_info("RefTitleSingle", "Spnl \"'\" < (!(\"'\" @Sp @Newline | @Newline) .)* > \"'\" { text }")
  Rules[:_RefTitleDouble] = rule_info("RefTitleDouble", "Spnl \"\\\"\" < (!(\"\\\"\" @Sp @Newline | @Newline) .)* > \"\\\"\" { text }")
  Rules[:_RefTitleParens] = rule_info("RefTitleParens", "Spnl \"(\" < (!(\")\" @Sp @Newline | @Newline) .)* > \")\" { text }")
  Rules[:_References] = rule_info("References", "(Reference | SkipBlock)*")
  Rules[:_Ticks1] = rule_info("Ticks1", "\"`\" !\"`\"")
  Rules[:_Ticks2] = rule_info("Ticks2", "\"``\" !\"`\"")
  Rules[:_Ticks3] = rule_info("Ticks3", "\"```\" !\"`\"")
  Rules[:_Ticks4] = rule_info("Ticks4", "\"````\" !\"`\"")
  Rules[:_Ticks5] = rule_info("Ticks5", "\"`````\" !\"`\"")
  Rules[:_Code] = rule_info("Code", "(Ticks1 @Sp < ((!\"`\" Nonspacechar)+ | !Ticks1 /`+/ | !(@Sp Ticks1) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks1 | Ticks2 @Sp < ((!\"`\" Nonspacechar)+ | !Ticks2 /`+/ | !(@Sp Ticks2) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks2 | Ticks3 @Sp < ((!\"`\" Nonspacechar)+ | !Ticks3 /`+/ | !(@Sp Ticks3) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks3 | Ticks4 @Sp < ((!\"`\" Nonspacechar)+ | !Ticks4 /`+/ | !(@Sp Ticks4) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks4 | Ticks5 @Sp < ((!\"`\" Nonspacechar)+ | !Ticks5 /`+/ | !(@Sp Ticks5) (@Spacechar | @Newline !@BlankLine))+ > @Sp Ticks5) { \"<code>\#{text}</code>\" }")
  Rules[:_RawHtml] = rule_info("RawHtml", "< (HtmlComment | HtmlBlockScript | HtmlTag) > { if html? then text else '' end }")
  Rules[:_BlankLine] = rule_info("BlankLine", "@Sp @Newline { \"\\n\" }")
  Rules[:_Quoted] = rule_info("Quoted", "(\"\\\"\" (!\"\\\"\" .)* \"\\\"\" | \"'\" (!\"'\" .)* \"'\")")
  Rules[:_HtmlAttribute] = rule_info("HtmlAttribute", "(AlphanumericAscii | \"-\")+ Spnl (\"=\" Spnl (Quoted | (!\">\" Nonspacechar)+))? Spnl")
  Rules[:_HtmlComment] = rule_info("HtmlComment", "\"<!--\" (!\"-->\" .)* \"-->\"")
  Rules[:_HtmlTag] = rule_info("HtmlTag", "\"<\" Spnl \"/\"? AlphanumericAscii+ Spnl HtmlAttribute* \"/\"? Spnl \">\"")
  Rules[:_Eof] = rule_info("Eof", "!.")
  Rules[:_Nonspacechar] = rule_info("Nonspacechar", "!@Spacechar !@Newline .")
  Rules[:_Sp] = rule_info("Sp", "@Spacechar*")
  Rules[:_Spnl] = rule_info("Spnl", "@Sp (@Newline @Sp)?")
  Rules[:_SpecialChar] = rule_info("SpecialChar", "(/[~*_`&\\[\\]()<!\#\\\\'\"]/ | @ExtendedSpecialChar)")
  Rules[:_NormalChar] = rule_info("NormalChar", "!(@SpecialChar | @Spacechar | @Newline) .")
  Rules[:_Digit] = rule_info("Digit", "[0-9]")
  Rules[:_Alphanumeric] = rule_info("Alphanumeric", "%literals.Alphanumeric")
  Rules[:_AlphanumericAscii] = rule_info("AlphanumericAscii", "%literals.AlphanumericAscii")
  Rules[:_BOM] = rule_info("BOM", "%literals.BOM")
  Rules[:_Newline] = rule_info("Newline", "%literals.Newline")
  Rules[:_Spacechar] = rule_info("Spacechar", "%literals.Spacechar")
  Rules[:_HexEntity] = rule_info("HexEntity", "/&\#x/i < /[0-9a-fA-F]+/ > \";\" { [text.to_i(16)].pack 'U' }")
  Rules[:_DecEntity] = rule_info("DecEntity", "\"&\#\" < /[0-9]+/ > \";\" { [text.to_i].pack 'U' }")
  Rules[:_CharEntity] = rule_info("CharEntity", "\"&\" < /[A-Za-z0-9]+/ > \";\" { if entity = HTML_ENTITIES[text] then                  entity.pack 'U*'                else                  \"&\#{text};\"                end              }")
  Rules[:_NonindentSpace] = rule_info("NonindentSpace", "/ {0,3}/")
  Rules[:_Indent] = rule_info("Indent", "/\\t|    /")
  Rules[:_IndentedLine] = rule_info("IndentedLine", "Indent Line")
  Rules[:_OptionallyIndentedLine] = rule_info("OptionallyIndentedLine", "Indent? Line")
  Rules[:_StartList] = rule_info("StartList", "&. { [] }")
  Rules[:_Line] = rule_info("Line", "@RawLine:a { a }")
  Rules[:_RawLine] = rule_info("RawLine", "(< (!\"\\r\" !\"\\n\" .)* @Newline > | < .+ > @Eof) { text }")
  Rules[:_SkipBlock] = rule_info("SkipBlock", "(HtmlBlock | (!\"\#\" !SetextBottom1 !SetextBottom2 !@BlankLine @RawLine)+ @BlankLine* | @BlankLine+ | @RawLine)")
  Rules[:_ExtendedSpecialChar] = rule_info("ExtendedSpecialChar", "&{ notes? } \"^\"")
  Rules[:_NoteReference] = rule_info("NoteReference", "&{ notes? } RawNoteReference:ref { note_for ref }")
  Rules[:_RawNoteReference] = rule_info("RawNoteReference", "\"[^\" < (!@Newline !\"]\" .)+ > \"]\" { text }")
  Rules[:_Note] = rule_info("Note", "&{ notes? } @NonindentSpace RawNoteReference:ref \":\" @Sp @StartList:a RawNoteBlock:i { a.concat i } (&Indent RawNoteBlock:i { a.concat i })* { @footnotes[ref] = paragraph a                    nil                 }")
  Rules[:_InlineNote] = rule_info("InlineNote", "&{ notes? } \"^[\" @StartList:a (!\"]\" Inline:l { a << l })+ \"]\" { ref = [:inline, @note_order.length]                @footnotes[ref] = paragraph a                 note_for ref              }")
  Rules[:_Notes] = rule_info("Notes", "(Note | SkipBlock)*")
  Rules[:_RawNoteBlock] = rule_info("RawNoteBlock", "@StartList:a (!@BlankLine OptionallyIndentedLine:l { a << l })+ < @BlankLine* > { a << text } { a }")
  Rules[:_CodeFence] = rule_info("CodeFence", "&{ github? } Ticks3 (@Sp StrChunk:format)? Spnl < ((!\"`\" Nonspacechar)+ | !Ticks3 /`+/ | Spacechar | @Newline)+ > Ticks3 @Sp @Newline* { verbatim = RDoc::Markup::Verbatim.new text               verbatim.format = format.intern if format.instance_of?(String)               verbatim             }")
  Rules[:_DefinitionList] = rule_info("DefinitionList", "&{ definition_lists? } DefinitionListItem+:list { RDoc::Markup::List.new :NOTE, *list.flatten }")
  Rules[:_DefinitionListItem] = rule_info("DefinitionListItem", "DefinitionListLabel+:label DefinitionListDefinition+:defns { list_items = []                        list_items <<                          RDoc::Markup::ListItem.new(label, defns.shift)                         list_items.concat defns.map { |defn|                          RDoc::Markup::ListItem.new nil, defn                        } unless list_items.empty?                         list_items                      }")
  Rules[:_DefinitionListLabel] = rule_info("DefinitionListLabel", "StrChunk:label @Sp @Newline { label }")
  Rules[:_DefinitionListDefinition] = rule_info("DefinitionListDefinition", "@NonindentSpace \":\" @Space Inlines:a @BlankLine+ { paragraph a }")
  # :startdoc:
end
PKBH[�W,���5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/normal_class.rbnu�[���# frozen_string_literal: true
##
# A normal class, neither singleton nor anonymous

class RDoc::NormalClass < RDoc::ClassModule

  ##
  # The ancestors of this class including modules.  Unlike Module#ancestors,
  # this class is not included in the result.  The result will contain both
  # RDoc::ClassModules and Strings.

  def ancestors
    if String === superclass then
      super << superclass
    elsif superclass then
      ancestors = super
      ancestors << superclass
      ancestors.concat superclass.ancestors
    else
      super
    end
  end

  def aref_prefix # :nodoc:
    'class'
  end

  ##
  # The definition of this class, <tt>class MyClassName</tt>

  def definition
    "class #{full_name}"
  end

  def direct_ancestors
    superclass ? super + [superclass] : super
  end

  def inspect # :nodoc:
    superclass = @superclass ? " < #{@superclass}" : nil
    "<%s:0x%x class %s%s includes: %p extends: %p attributes: %p methods: %p aliases: %p>" % [
      self.class, object_id,
      full_name, superclass, @includes, @extends, @attributes, @method_list, @aliases
    ]
  end

  def to_s # :nodoc:
    display = "#{self.class.name} #{self.full_name}"
    if superclass
      display += ' < ' + (superclass.is_a?(String) ? superclass : superclass.full_name)
    end
    display += ' -> ' + is_alias_for.to_s if is_alias_for
    display
  end

  def pretty_print q # :nodoc:
    superclass = @superclass ? " < #{@superclass}" : nil

    q.group 2, "[class #{full_name}#{superclass} ", "]" do
      q.breakable
      q.text "includes:"
      q.breakable
      q.seplist @includes do |inc| q.pp inc end

      q.breakable
      q.text "constants:"
      q.breakable
      q.seplist @constants do |const| q.pp const end

      q.breakable
      q.text "attributes:"
      q.breakable
      q.seplist @attributes do |attr| q.pp attr end

      q.breakable
      q.text "methods:"
      q.breakable
      q.seplist @method_list do |meth| q.pp meth end

      q.breakable
      q.text "aliases:"
      q.breakable
      q.seplist @aliases do |aliaz| q.pp aliaz end

      q.breakable
      q.text "comment:"
      q.breakable
      q.pp comment
    end
  end

end

PKBH[f�=w��5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/ri.rbnu�[���# frozen_string_literal: true
##
# Generates ri data files

class RDoc::Generator::RI

  RDoc::RDoc.add_generator self

  ##
  # Description of this generator

  DESCRIPTION = 'creates ri data files'

  ##
  # Set up a new ri generator

  def initialize store, options #:not-new:
    @options    = options
    @store      = store
    @store.path = '.'
  end

  ##
  # Writes the parsed data store to disk for use by ri.

  def generate
    @store.save
  end

end

PKBH[ДU�



9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/markup.rbnu�[���# frozen_string_literal: true
##
# Handle common RDoc::Markup tasks for various CodeObjects
#
# This module is loaded by generators.  It allows RDoc's CodeObject tree to
# avoid loading generator code to improve startup time for +ri+.

module RDoc::Generator::Markup

  ##
  # Generates a relative URL from this object's path to +target_path+

  def aref_to(target_path)
    RDoc::Markup::ToHtml.gen_relative_url path, target_path
  end

  ##
  # Generates a relative URL from +from_path+ to this object's path

  def as_href(from_path)
    RDoc::Markup::ToHtml.gen_relative_url from_path, path
  end

  ##
  # Handy wrapper for marking up this object's comment

  def description
    markup @comment
  end

  ##
  # Creates an RDoc::Markup::ToHtmlCrossref formatter

  def formatter
    return @formatter if defined? @formatter

    options = @store.rdoc.options
    this = RDoc::Context === self ? self : @parent

    @formatter = RDoc::Markup::ToHtmlCrossref.new options, this.path, this
    @formatter.code_object = self
    @formatter
  end

  ##
  # Build a webcvs URL starting for the given +url+ with +full_path+ appended
  # as the destination path.  If +url+ contains '%s' +full_path+ will be
  # will replace the %s using sprintf on the +url+.

  def cvs_url(url, full_path)
    if /%s/ =~ url then
      sprintf url, full_path
    else
      url + full_path
    end
  end

end

class RDoc::CodeObject

  include RDoc::Generator::Markup

end

class RDoc::MethodAttr

  ##
  # Prepend +src+ with line numbers.  Relies on the first line of a source
  # code listing having:
  #
  #   # File xxxxx, line dddd
  #
  # If it has this comment then line numbers are added to +src+ and the <tt>,
  # line dddd</tt> portion of the comment is removed.

  def add_line_numbers(src)
    return unless src.sub!(/\A(.*)(, line (\d+))/, '\1')
    first = $3.to_i - 1
    last  = first + src.count("\n")
    size = last.to_s.length

    line = first
    src.gsub!(/^/) do
      res = if line == first then
              " " * (size + 1)
            else
              "<span class=\"line-num\">%2$*1$d</span> " % [size, line]
            end

      line += 1
      res
    end
  end

  ##
  # Turns the method's token stream into HTML.
  #
  # Prepends line numbers if +options.line_numbers+ is true.

  def markup_code
    return '' unless @token_stream

    src = RDoc::TokenStream.to_html @token_stream

    # dedent the source
    indent = src.length
    lines = src.lines.to_a
    lines.shift if src =~ /\A.*#\ *File/i # remove '# File' comment
    lines.each do |line|
      if line =~ /^ *(?=\S)/
        n = $&.length
        indent = n if n < indent
        break if n == 0
      end
    end
    src.gsub!(/^#{' ' * indent}/, '') if indent > 0

    add_line_numbers(src) if options.line_numbers

    src
  end

end

class RDoc::ClassModule

  ##
  # Handy wrapper for marking up this class or module's comment

  def description
    markup @comment_location
  end

end

class RDoc::Context::Section

  include RDoc::Generator::Markup

end

class RDoc::TopLevel

  ##
  # Returns a URL for this source file on some web repository.  Use the -W
  # command line option to set.

  def cvs_url
    url = @store.rdoc.options.webcvs

    if /%s/ =~ url then
      url % @relative_name
    else
      url + @relative_name
    end
  end

end

PKBH[��C�..Mshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/class.rhtmlnu�[���<body id="top" role="document" class="<%= klass.type %>">
<nav role="navigation">
  <div id="project-navigation">
    <%= render '_sidebar_navigation.rhtml' %>
    <%= render '_sidebar_search.rhtml' %>
  </div>

  <%= render '_sidebar_table_of_contents.rhtml' %>

  <div id="class-metadata">
    <%= render '_sidebar_sections.rhtml' %>
    <%= render '_sidebar_parent.rhtml' %>
    <%= render '_sidebar_includes.rhtml' %>
    <%= render '_sidebar_extends.rhtml' %>
    <%= render '_sidebar_methods.rhtml' %>
  </div>
</nav>

<main role="main" aria-labelledby="<%=h klass.aref %>">
  <h1 id="<%=h klass.aref %>" class="<%= klass.type %>">
    <%= klass.type %> <%= klass.full_name %>
  </h1>

  <section class="description">
    <%= klass.description %>
  </section>

  <% klass.each_section do |section, constants, attributes| %>
  <section id="<%= section.aref %>" class="documentation-section">
    <% if section.title then %>
    <header class="documentation-section-title">
      <h2>
        <%= section.title %>
      </h2>
      <span class="section-click-top">
        <a href="#top">&uarr; top</a>
      </span>
    </header>
    <% end %>

    <% if section.comment then %>
    <div>
      <%= section.description %>
    </div>
    <% end %>

    <% unless constants.empty? then %>
    <section class="constants-list">
      <header>
        <h3>Constants</h3>
      </header>
      <dl>
      <% constants.each do |const| %>
        <dt id="<%= const.name %>"><%= const.name %>
        <% if const.comment then %>
        <dd><%= const.description.strip %>
        <% else %>
        <dd class="missing-docs">(Not documented)
        <% end %>
      <% end %>
      </dl>
    </section>
    <% end %>

    <% unless attributes.empty? then %>
    <section class="attribute-method-details" class="method-section">
      <header>
        <h3>Attributes</h3>
      </header>

      <% attributes.each do |attrib| %>
      <div id="<%= attrib.aref %>" class="method-detail">
        <div class="method-heading attribute-method-heading">
          <span class="method-name"><%= h attrib.name %></span><span
            class="attribute-access-type">[<%= attrib.rw %>]</span>
        </div>

        <div class="method-description">
        <% if attrib.comment then %>
        <%= attrib.description.strip %>
        <% else %>
        <p class="missing-docs">(Not documented)
        <% end %>
        </div>
      </div>
      <% end %>
    </section>
    <% end %>

    <% klass.methods_by_type(section).each do |type, visibilities|
       next if visibilities.empty?
       visibilities.each do |visibility, methods|
         next if methods.empty? %>
     <section id="<%= visibility %>-<%= type %>-<%= section.aref %>-method-details" class="method-section">
       <header>
         <h3><%= visibility.to_s.capitalize %> <%= type.capitalize %> Methods</h3>
       </header>

    <% methods.each do |method| %>
      <div id="<%= method.aref %>" class="method-detail <%= method.is_alias_for ? "method-alias" : '' %>">
        <% if method.call_seq then %>
        <%   method.call_seq.strip.split("\n").each_with_index do |call_seq, i| %>
        <div class="method-heading">
          <span class="method-callseq">
            <%= h(call_seq.strip.
                  gsub( /^\w+\./m, '')).
                  gsub(/(.*)[-=]&gt;/, '\1&rarr;') %>
          </span>
          <% if i == 0 and method.token_stream then %>
          <span class="method-click-advice">click to toggle source</span>
          <% end %>
        </div>
        <%   end %>
        <% else %>
        <div class="method-heading">
          <span class="method-name"><%= h method.name %></span><span
            class="method-args"><%= h method.param_seq %></span>
          <% if method.token_stream then %>
          <span class="method-click-advice">click to toggle source</span>
          <% end %>
        </div>
        <% end %>

        <div class="method-description">
          <% if method.comment then %>
          <%= method.description.strip %>
          <% else %>
          <p class="missing-docs">(Not documented)
          <% end %>
          <% if method.calls_super then %>
            <div class="method-calls-super">
              Calls superclass method
              <%=
                  method.superclass_method ?
                  method.formatter.link(method.superclass_method.full_name, method.superclass_method.full_name) : nil
              %>
            </div>
          <% end %>

          <% if method.token_stream then %>
          <div class="method-source-code" id="<%= method.html_name %>-source">
            <pre><%= method.markup_code %></pre>
          </div>
          <% end %>
        </div>

        <% unless method.aliases.empty? then %>
        <div class="aliases">
          Also aliased as: <%= method.aliases.map do |aka|
            if aka.parent then # HACK lib/rexml/encodings
              %{<a href="#{klass.aref_to aka.path}">#{h aka.name}</a>}
            else
              h aka.name
            end
          end.join ", " %>
        </div>
        <% end %>

        <% if method.is_alias_for then %>
        <div class="aliases">
          Alias for: <a href="<%= klass.aref_to method.is_alias_for.path %>"><%= h method.is_alias_for.name %></a>
        </div>
        <% end %>
      </div>

    <% end %>
    </section>
  <% end
     end %>
  </section>
<% end %>
</main>
PKBH[�3�^^Oshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_footer.rhtmlnu�[���<footer id="validator-badges" role="contentinfo">
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
  <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> <%= RDoc::VERSION %>.
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
PKBH[J��i��Xshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtmlnu�[���<% unless klass.extends.empty? then %>
<div id="extends-section" class="nav-section">
  <h3>Extended With Modules</h3>

  <ul class="link-list">
    <% klass.each_extend do |ext| %>
  <% unless String === ext.module then %>
    <li><a class="extend" href="<%= klass.aref_to ext.module.path %>"><%= ext.module.full_name %></a>
  <% else %>
    <li><span class="extend"><%= ext.name %></span>
  <% end %>
  <% end %>
  </ul>
</div>
<% end %>
PKBH[
y����Mshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_head.rhtmlnu�[���<meta charset="<%= @options.charset %>">

<title><%= h @title %></title>

<script type="text/javascript">
  var rdoc_rel_prefix = "<%= asset_rel_prefix %>/";
  var index_rel_prefix = "<%= rel_prefix %>/";
</script>

<script src="<%= asset_rel_prefix %>/js/navigation.js" defer></script>
<script src="<%= asset_rel_prefix %>/js/search.js" defer></script>
<script src="<%= asset_rel_prefix %>/js/search_index.js" defer></script>
<script src="<%= asset_rel_prefix %>/js/searcher.js" defer></script>
<script src="<%= asset_rel_prefix %>/js/darkfish.js" defer></script>

<link href="<%= asset_rel_prefix %>/css/fonts.css" rel="stylesheet">
<link href="<%= asset_rel_prefix %>/css/rdoc.css" rel="stylesheet">
<% if @options.template_stylesheets.flatten.any? then %>
<%   @options.template_stylesheets.flatten.each do |stylesheet| %>
<link href="<%= asset_rel_prefix %>/<%= File.basename stylesheet %>" rel="stylesheet">
<%   end %>
<% end %>

PKBH[�޹�[share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtmlnu�[���<div id="home-section" role="region" title="Quick navigation" class="nav-section">
  <h2>
    <a href="<%= rel_prefix %>/index.html" rel="home">Home</a>
  </h2>

  <div id="table-of-contents-navigation">
    <a href="<%= rel_prefix %>/table_of_contents.html#pages">Pages</a>
    <a href="<%= rel_prefix %>/table_of_contents.html#classes">Classes</a>
    <a href="<%= rel_prefix %>/table_of_contents.html#methods">Methods</a>
  </div>
</div>
PKBH[
N��NNYshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtmlnu�[���<body role="document">
<nav role="navigation">
  <%= render '_sidebar_navigation.rhtml' %>

  <%= render '_sidebar_search.rhtml' %>

  <div id="project-metadata">
    <%= render '_sidebar_pages.rhtml' %>
    <%= render '_sidebar_classes.rhtml' %>
  </div>
</nav>

<main role="main">
  <h1>Not Found</h1>

  <p><%= message %>
</main>

PKBH[A-����Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtmlnu�[���<div id="file-list-section" class="nav-section">
  <h3>Defined In</h3>

  <ul>
<% klass.in_files.each do |tl| %>
    <li><%= h tl.relative_name %>
<% end %>
  </ul>
</div>
PKBH[�Z�mmWshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_green.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT�?��s��~~���TI�!!�b�F� ,H8���b�1a5�l�
�N�QB� b`�^8M�A��~����y*��޿�����\�)(��0���k��������J�������i�ΆIH ���q�����~����{�СM�кOg��Ԫ(2X2�s��,�}�O>�};���x��3o}~�W�tܠ��$��S�j�bjLEMa8�����y�޿��ww>�����J�Ҫ�*m*��u�=g6=W�|�v�jz
:@B�(%U�Z��4�\��1���m��f��j"�j��A�ƚ6��hT��*J	�V��ZJZ$@�1�0PHZ�(}
)B�e����� @)zc�Ԋe����0�2FH����d�#�����W?�9��</����;���C�9�A��x�y���轍y3t�-�;��w^�t'I����WM����eС*>��W����i!�Gc��{s��ގl6�IEND�B`�PKBH[Os~���Pshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/add.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<oIDAT8˥��K�a��[�/���Y(�)%X(o�l��Nۖsk��n.���-����h�;8�f���E��P��"jï��MGˈ�}yພ羹�$I���.t�u���lu���	AX��:�𼂒Z�H�h1�D�nZJ�OJB��{�Z����?�`2`��S���=�N$��ő�=;��a��&j�w��q�JG�#�<"N���2h8�޵`��6���x�ցn_+~��Zto��}`���x%XЛ͈	hXѿ�ƻ/��}���B�J�_G�&�|Q�r-��6��AރEL�⬡\�U3:WUh[�C6+�	6.f� �*��K͸ܝF��q�����ou4܄?�d�|X���ҥ�Mv��D`�
*_���[
���#A���2��0li��R�|x�q`4w=\������u�Q	��m+G��|%$��5��Թ���5�RO*�YGM��UO��G�qj4ְ(X�&
s1�c�˭(LV�f�
R���d�j��Q	'-1��A�TA>U	�j4,�p�V�"4L$e�@.ArB���Y a~m�y���Y])Q8tN�L���ܞt2��"��I	���
�o=C�S��d�)�_��_�AF�(�IEND�B`�PKBH[��U�ttUshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/arrow_up.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDAT8˥�?/Q�ϲ��hg5��j%�'��F,[
���LH��	3�(���v��w�=�fcoN{O~9���VM4Q7ܿ�)v/�WQ����=��&���b����p�S�O�������^��'&^:\˨6���eND!&� ���9꒣�_|�?\����s���r�x�,�����g�*,(F�#d[�O���aAA�*�P
p1����O+C�$`�)����*�w`A��#�0�$���	�*�?�����b&N�RIEND�B`�PKBH[��bbSshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/wrench.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˕��oQ�_�[�c�+W.]�х�i��5 g�m���J[F�q����#_�)�qո��;,��@��{�;���upL�TʙH$�(Z� X��M��ɤ���n�i"��\nt:�}��yD���	�<o��u]�q�}���,���5Q�X��j�P*��DޅB!5�ɠ�l�����X�2�|X��P�VQ( IEA�X���k�
ί���:�lU*h�{-��PU�,����n�	�Y���>�����0�\�ږIU���4(�r�����
�HM�k̈��_���4��_z����iy�'�"[�
��n1��rM���_�A�`b���=$Ik�_p-�q�S~����=li~3�Bv"q�Z�A���ԧ̸�r�[��G���]<&�e�!�'ڸ67	�y��q�$O�X!�=_��~1�Gs�~�E��ZQ�x&qW��K3��!ޤ�u��n�kz�Grj�Q�n�IEND�B`�PKBH[#۸�PPQshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/ruby.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8�͓�K�Q���&*z��(	z�2��4��r�!��\e7�7�V"�x!bT7�R*�c�
�<��|���|:[WAD�>���9���{L�i'�v����%IID=z�/�;��"�\k��޸)�k�u�9��x�]2��$��W0=
��������$��Q��H�>}F|`���n6ϜϤkN7
>��9LL��(,.�������}>ּ^��
��OMM|��%꿏�:/T]�F$�6VW)��)t��5����F�K�����ò�Qq"��r�f ��y_�O�a|	���p�HJ�*MT��X8��[^D��r���-|��|[��v(33���!�.���44���NJ�e�bʡr�טu�͚�d�+��@� S[K���o~TK��r�j�k������ora��P�DP��y5�@Y�?i�܅��Sg��@'�˼Zj��_M�5���̻��w��.�;�'5�ڿ_���IEND�B`�PKBH[�=V��`share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<aIDAT(�c�π2�Q��������+�/ދE����p�,
�%ւ��)X���C�۱)X�dB=6���P�M��u]�[�z+����_70!I�ȓzS5��IEND�B`�PKBH[0���Rshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/brick.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<VIDAT�?HT��ݝ��^ٟ�
ju
��ɥ����pOhi/���8ԩ�!�p*��0��Ў��;��}E�,tn�M2��|13 "by��K�$i�^NFD��Й�;��4eZ|�U�j|��jf^��$ig)kY�b�I��u�K��W��P�cJ'U>�4�MK����B݆�eS��J���tO9�iԄ
�ʆ���n#2����u`� *�����_�
�R4���+�*����B����u���Ϙ�MY�U׷o���AaL��G��۽�kE�|"�2w��9�m�[�y�Gw�S��B�3{��e�r�~�㫹��<�{
@���%
�@�IEND�B`�PKBH[(?�Y��Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_black.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<eIDAT(�c�π2.�R�
�We��7JaWА�����\
X�]��?���XH^��?���
��7��3`��[����*60H
ڐ��s���VIEND�B`�PKBH[
�OOSshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/plugin.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˥�=H�q��f~\?��,��yoX�{KC��7�PcM�5�4EkS$�8V*w����J�B%��{�s^1㪋g9�����9IDp�8��ラ�%w%I�
=���@]m�v�bS?��|b��~��?��Gժi�lT70��������p��,�@ۙ�ܘ^�Y3�$ՙO�<o�a ��x8A�܉�BW!�����!JB�x8K?�Y�\����z܃S�<f����R�DKC�������Pf'� ��h����af��WãI��n�]�BW��)䎇�p��!Gos�A�MN���X���	�0eY[�ra�B�A���m����h=ڊ�I#͘�0���6�1;����Ū���3Q�@s�e
���p�k_�;+���?R15�S_?q���9�*�H�3��ɞ����`�!w������2/��L.�\��c�Ie��صf|��Ĕ�b��`���M �o��w=��_��m�6E�XIEND�B`�PKBH["�55]share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_white_width.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT(υ�A�0E��֕n\x���qob♼��R�w(���g�I�u2�U��5�S����6�VX���ʲJ6Yhl�Oe<�Ƥj�56�S&����5���n�2 ��,��be�%,r�[;�z�ֳ��
X`���<�Ɛ�dz�B����7|�!A��/�n2=V����Y����r�o� v��ZdIEND�B`�PKBH[=k��_share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<cIDAT(�c�π2�Q��������+�/ދE����p�,
�%��ć�O��`
P�oǦ`1�	���BrC6�u�o�_�?��$�
}J ƦgIEND�B`�PKBH[h˟�eeVshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/tag_green.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˅�I�a��O�Uÿ �{�bFc�N4FMt�n����-=�6c li4�BH!�(�dX�՗���.U�>����B�ZE�RA�\F�TB�XD�P�������}!���r��^�C2��^�@�I`�&���tl�$�ɝ�,S3M�D.��'�	��9�0�NCӴ�������Y6��)F?��2���m$	�b�
�@�W��H<���N��t͐x��j�D"�5��v���1o��f�����^���g��V�f�I.l���f����hě��9<��V��O�C|8��i4�>��C8%�J�lGk8�z����#�S�mȉr�X���Z�\@��{�x<.���`����^o�r�Ō��B�x<��^��'��j��}���U�����1���}Q�W��hT��]"�k�L|�s���n���ێ#�~�ߢK\}b���x'�BQ'{i��^�o�PȲ��z��].�c�)��weS�L|iW��(��SIEND�B`�PKBH[���(VV\share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_white_text.pngnu�[����PNG


IHDR��7�gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT�1nSA��Ǟ�4A����(�I�Sp.KPp"��Q�A�7%����1Ӣ�;���+���Z######����DWk=�C��?����|��X��j�9昇���S�ekMs9���NNV��G@���kD)��4�hn�������.Q�@�nJ)1]:�;1@���T��:�t���i��:���I�$fM��-�+g�]����^LvIEND�B`�PKBH[��AaaXshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/transparent.pngnu�[����PNG


IHDR%=m"PLTE������tRNS@��fIDATc` 
0���zIEND�B`�PKBH[��Q��]share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gifnu�[���GIF89a�
���������������������������������������������������������������!�NETSCAPE2.0!�
,�
� �@Ri�h��l�p,�tm�#6N���+�r��rD4�h��@F�Cjz]L�����j�]﹬�R���3-���H$w�Py���|KI��������\K�������Q\���]P��I������������~$�
~�	
��������������������������J�������������������%:`���@X�P@AO	2|�(�D��**�H�E�}l�F�=��$��Ƌ@\9��L�J(��)?�

``��C�=�4�RO@�>}5�TDU�^=�U�Q�H�~���X�e���֫��:<��!���b`�^O�v��y':<�/%Ƅ��E��n`ʎ3A�����Ɗ�~�`�۸Rf*�4�L����E3��DZ�[�����FU��պ�g*>|Ao��G��4Q�]���V;��ޙ
<��G)��}����SvO�<}��&p���y��]�Xg
X�
�`�"1���A� fJh!�B2�8'�m
��uљtbj)򖜊��H	s6.7�L;jԣJ?���p6���l�@k[���-)��P��V�X���fQ9�{f�ĥZ^v	&��0�
l���p�)g9P!�
,�� EMb��T��5+��k��sl�y���[�J;��w3iH�ʒ:�Q��X�R$�Á��511��@��eg;=��(g�ڙ��n%pf�"�|��w}��zv[xE%`	+�%		�����1"	
��������1������������������Ʒ�1��++�'i1֘~���~������%�t����"�����������ݫ'�$|dЉ'N�7o%p�Dz�:�)�D����H�$��D��E��tl���̑5żlP�4	#��y��5��S�RzC>� j��U���z�ҧ]�$�j�QM
ʆķ��772�1@ܒ�DH�;܋%Ѕ���q��ۛX���M�g����Nά�g�MWz!`���d���ѥ]���uj��a��}�aݸ�6;�5լD�zT�h,5�~�z~�@y[�:�3M�7�g�G�]�����q�=@c5

4�u����흃�5_���_9���_A�Mt�B\���Kⵘ}" @l��D�i��Qu�+b�aq&��{#'�L�H�jz��"$&�� �$B!�
,�� EI���@*�P�R*;ò[������L���l7DҎ�%�G�I�0)���m��IԲ�����`��I��}>ă�}-R�wFu�}y�|O�(p�*�"�rt�{R��A>(
�^(		�"��4���	
����3������������3��3���.�.����Чɞ

v.*o3��u���z���z����(�	����D���.��z�Ha ���р�P����*6���=�%������8��A%ϤH�]J��Q&����2�L��z�녆Aɔ>50j�(�]�T�.�s
�*�I�@m:n�Tx^7�}�v(�H�y�!8�/�
��4^ֹ��Gi`z��A�"��?l�8�]�'STҧX�*3��@X��MS<@�蜮-�.���/A��y5��|��U�v�۬�ϰ�V�r�4<A:\�4��bm��dv�i��{˿�ӛ�W��'7��n�����a��q{�"8V�_��u_^���2���_��[k��o�Tpbp
:��M
�s�k�x_"Vؓ��!�
,�� %R�4�y�ԬԢ���\�K���٩��l'#���Q�<�P:��A*�4� G����Z����L���nq�,���I�\��EoI�Uzqx#)��_"�"
����0��0���+�0�#��#�I�"����'�����2�0��	q�+��t�'����k���`���n�����܀�#�����|�2�aq�Vk������oE�f
NC��})Tǐ`���R8��ć=��5��&�D9�ۦZ�{�@滗1M�۴��͇)�Ty��N39]Ʊ�A�o���V
j�>Z0ՠV�T�y����ïe�]U���4�f!P�c0z��kW+_��^��ў`v�"�Ŋa@x:@O,��Ȭt�K5�z�sR�tH5�y3�ʥ�>yz=�3[/�Z|��&�����x@��7n��Gd�n� �B�^��|{Z�C�N�3�Z�&$�p�{f�;^C}C���o� ���%!�
,�� %�$5��,%�:��k��.]�#>�����	�B"�ZRp�]2�S���hk�9�E�-�e<ͩ��k�Gj6�-��t������wsz|m���OQti����x��41
)
�U"		���	�B������Q
��������B������)��������#����B+u���	�)�ێ����#��������"�����p��g�߿=�Q�Ǎ��P�aQ��*֑X�b<88����l$�����Q,?�	y2��=0յT#r�Η5��
�9`jLmgT�J�2��M�Wy6�jukիK�y�0�i��P0J�Cg&(`���oq]�혗']u}C* ���^\sx�a��GtKpeÈa�@��j�v�l�g�V�D�z$�ͣQ�>m�b��1�����6�}�4 @�l�`Ѫ�zvs�Gt�2y֐��/V+��S��NJ=^����"�+Y �	09ڛ>0}���Lj��`���ab�q�O
��'8^�X�d����|5 [��ahW�Y��7֑W6!��i���!��qHX�&�(@�3�&B!�
,�� Q$�@RS��"��	�k;��	S�]�3X'���+�ζS
���tUi���k���`��m��0���c�]���w��l��dt$v}��k~zq,l��ryu�x��?)B��		����
�����;	�0��0�����;�����+	��­�����G�0-g��+�	���.z�����%�������$��z��������+�l�(jx�9hN����t�<�; 8O��7�y�xH#�|�����bH�$ѼLip�ȅѐ�
��2"��-��A��(���P�$��tj�@{��s(W��$( ��=�!u�5��(�jm�nwmĸo����A���@w/��������d�1+:'���l��1�f��#�|,z2�0Hg�������@1}�թٯ�[��3�S�+|�7U�ǃ�.�{��P卵0ʶc=+PL�0�3�:~���p��'����v{��O��n<����~)�@��u�P6
��k(����àK'v�K
V�`I�9(Z�L�G!!�
,�� �PeRN*�'�,Ԣ���v*�o<�����bK�s M��3�k>o�����R��sAE1f�m):��k��v���v�M{w�l
��r�tqPm�|��uF~�?W	a3�&
���A�6��������6	�-�����3���-	����.�,����6o3/h��-��o���	������'�d�����z���z��&�����(�CGo߉O���a��9ќD=
�kOOEuj(�Ǒ�L����ʏ�T��IR&K�.��H���=�����
�t��tI��£B�0E:qjԪP������h�Y��‰	ʾ�B�F�dÎT0@�ܝK!Aݽ_�aw�9��hP�(�!Ѣ,�f�ʓmZ�,r��Ɲ[|.��1鑣wZ���h%�.�:�^m�Ri綽7V޿}c\����u�;o�>o���ü��u+],E�b��d]/\��.������*h�3�;��߯��~�����
��|H�oXg���6�]����	!!�
,�� E9�$�#%5(�,Ԓr��(i�0.����݊�`lXt��D%�ydJ�6���H�^�.�p���l��[k�=.˿�(>�S�x~�gypv}�lNtj�x�{e>	�(	�~~	
�����-������-����,-�(���������������'�e-/p��(��u�'����"�	�����u�������������GN�
����šL��1��:�I<���9u���G '��9��cɕ-Q�$��L�'lD���7U�T��T��ׄ �t�Ѧ�BU�@%J��JŪ�)W?L�S��Y	�b��Zvm��މ���Б]x�F�0�I�{�V�Xg�|��-Bf�E��#��|.@�4O���P4�u8S
g֥_�n�;Ө՞�(�բQ�)����wǮ<.�(��ʳ2?�����eG��|L�Յ"x�/��-���/�y��+,�p=E��1�� �d�Q��ٷ�~��2Kꔛ$���r
`m*Ys�C
zFn� ak}��nn��I#�����Q!�
,�� %R�4��Ԝ"CA,���(~ں8׼د��DA֐���2hs��݌�+�p]���ˤ�Ob��K��w8^>��u�z�`�H~htkv"x�m��|1Z,
���-���#�5��1"�1�����'���'�[�#����,�
��,},�'�	p�#��h�1�w���a�������"��������w��#�p�"b�1��V-��ak�c���B�)��P@�;�]Xq�Č#N�-A�"߲Syr����L�4eM�ʚph�\@�e�q/o��	���D2(𯘳q��s:g��u@��Fu+��Q�AU���ӯZ��#xbR����4�v�G1��
M�����ɻ���;8F�P`B۩3he�11O~�	�˟��>z�(�C�3���A=��\���Z-�ڇ�A����a��-qiS�R�����Ym�G�(�1���;��Ž��=dt�q�B�[���!�	
,�
� %�di�h��l�p,�4�0T:�Ԕ��n琘�9␄\����<
�P)�J�Z���+^�f�(��-N	�Ǥ4��an��t#o~$z|u�#��Svx��@��������"�'�������%	�#m#	���S���%�
���	��$��%�§	������#���ְ��ͽ�$�&	A��"����%���$��#��H݃'/�9�����BH
Ed�O�C�)L��q#F�o�	��g�B��b�DIʤC������'C��Rg̙G��	4^M=<iEj0�ћM�-0��R=��jB+î��{u,H�YÖ$+vhP�z�z�$W-]���&������=���-�>F\�dd��3 X�堙Kl��٣�̊@��@���T��?}��IV�UT+��������o�l�|gr�
T�e��lu�ӭ��ޒ�v��G�]l<ݑ�sg��_D
�)4E�Q����_i���)�Pi#���!h Da
%���.@��q�M��OQ	`�pn��yHW��C�"�$�s*
��]hp$��V
8��<��c!;PKBH[�P��Sshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/delete.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<]IDAT8˥��KSa�[���n��QP��2w��ܦγL�[,bi��a�A��\�C��v��_2Ml�ZFjס���NMjm��kʷ�`&.#z�����<ϓ ���bV��P�T3�%�I��{G��qRiv�ȅ�
�tz�#E��6����Edd���J�`���DR�2<]N��;�4�Ѿ;���m>�7��8��ɀQe6�L�I���t��殷c�q!z�|v��j�/Xi���@��
�%1|h���l� !���|������!
�Y#�u�U�N�w]�˼H3��u�	t]E��>k%�I�f��o���R��D:�0��`�~�|�
���(r�
�on�3oG0!�$����V��
�*[W0_������-+���� d��W�&�2�ZfMF��VJp�iF&B��
>��R���g�-� �~	C�m��ڴ���ER�
ឫ� p�5ްy����+��21���K�aw�h�`� ��#���a�Z񽞆�T�Zo���L��ѓ���`"�(?��'��ˎJv�K�ކ��|�:�G9[�a�w8�2
Jw��f'��y����m�zsӘ��Tsw��_��_��ιIr�IEND�B`�PKBH[�ErrQshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/date.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<IDAT8˕RmkA~�ԋ�K$��5X�%� �ǂ!��#�?P��@P�Z(*E�A�#�ܹۙ�w��:�0�;3ϼ�@J	���f?W��o�L����`
�O�Z�+���M������<�ww�
^�I���ś�K�����Z��Rj�F�NV0+�v�E8�q ���+��bF"�v���s��;�4t��� ��>9�ck��t���yx�	��D��7��гm\P���S�t�]�Io�@��#�/�د���)�[�f����^ѻ�#dHk��b�G"������uݿ�q�\.X��c8�Y��h��H������|�r��}�/�!�F���s�R�B�(�������]���j�T5���V��?ZxY�l6���s�d2Qg��wp�d����C2���p8�A���厊����*��X,¢��<�}"�W����
����
8s"��j�R-�-tiM�1�e�K�
���l�T*=L��/�F�#�C�7~��
-:MW1��IEND�B`�PKBH[���<XXUshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/tag_blue.pngnu�[����PNG


IHDR�agAMA��7��iCCPICC Profilex�T�k�P��e���:g	>h�ndStC��kW��Z�6�!H��m\��$�~�ًo:�w�>�كo{�
�a���"L�"���4M'S�����9'��^��qZ�/USO������^C+�hM��J&G@Ӳy���lt�o߫�c՚�� ��5�"�Y�i\�t�։�15��LsX�	g8oc�ግ#�f45@�	��B:K�@8�i��
�΁�'&��.�<�ER/�dE���s��_���雭��m�N�|��9}p���?_�A��pX6�5~B�$�&���ti��e��Y)%$�bT�3li�������P���4�43Y���P��1��KF��ۑ��5>�)�@����r��y������[�:V���ͦ#��wQ?HB��d(�Ba�cĪ�L"J��itTy�8�;(���Gx�_�^�[�����%׎��ŷ��Q�麲�ua��n�7��m�Q���H^e�O�Q�u6�S��u�2��%vX���^�*l
O�—����ޭˀq,>��S���%�L��d����B���1CZ��$M��9��P'w����\/����]��.r#���E|!�3�>_�o�a�۾�d�1Z�ӑ���z���'�=������~V+��cjJ�tO%mN�����|��-���bW�O+
o�^�I�H�.�;���S�]�i_s9�*p����.7U^��s.�3u�	�|^,��<����;�c�=ma��>V��t.[��՟Ϫ����x���#
�¡_2	pHYs��diTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 4.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <xmp:CreatorTool>Adobe ImageReady</xmp:CreatorTool>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
�z`IDAT8}RMka~vW#�j-�V�&ZjR
��B��"�Q�����!z�R!��JA��"��T	~zi*U��̶��G_�ݝ}g��yEQp�:::�+��z2��t�~&΍�o*��L�o�$��d2�e�e�
'�V @4�3H6��DX�0O���@(R���m���F�ٍ��od��F���ɾ͇xU�p:<"��N�����T�d�}����\��3��,@��A�Z�������r��r��7�!��� ��tZ����W�w��F��_�Z�>���lhR���lޢl�k1��<\�ؼ
��*��q:����Z�UB:������{ے�ܡP�@M���elۀ^��z�>�:�D"1�iX��Z
{�e<��)iJl�
E�n)�ev��`PO�y����db=;;C��X��.�c���k�1k&8�j���ר_���d��{~?j�c�fi�R�ԡs�b��O����A����9��&�yd�V;�8�����$�p.r�=�XL���v�}�@!Oa�X,*�C�;���z�����J��n���Y�T��a�B��!�^�L{n�7��k���IEND�B`�PKCH[7��Qshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/zoom.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<FIDAT8ˍ�KH�A���̪-��K�C=�
�Cm�fu�P��)D��B�"�K�$A�
e��t�����J��Z�yu�m���0�}f~3#�sL��|!!|g-V�9��Q�鎺��c�`��T���C8*�����5�b�F'��R!D�Ћ�
�kb�^sP��!��������Loc��g�ע≣�.=^u��֘����[�
���65�޶FG��� �!�� P
�%wN5�\��q=(�t@ȀѶ(t2)է�"�L?B�2�uXcY��V$�����&����a]c��t����<��*����Q��1��}E	)h��Y����ҁ�갎����6`�D�Xr<:=UR���̞��O���9��8�*}�V&b==h��ցq�ف�+;�˜�JT<������������A�!C�:����̼�}�nAH��~0b�M���36��+�/痗����s�IĢ̾�����Ek����J{�v��!���=_�M�yK�b]�ö�a��{6W�03�<U��=�c�@_��@,�/fg�kM�q�?)�+��H�IEND�B`�PKCH[J���Qshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/find.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<%IDAT8�c���?%���4��y�dÞ����'/Xf�Ʀ�"ʀ��G�vi�QT�o���@���5 )����%�k;��o�4�����7��Y%u��Z�bV����Ty�E��,X�����ݣ�o6ة��m�=���x��)k����?"����e�KZ��帹y�����L���e����?��	��'��?e���}K��j���m�ѹ�Ó�.dfay����6�\V���o��]Z�������9�մ�6�\�K/�b�Ĭ`�
*Y�Bc~Z�:��
��ola�_[�����S1qI��bR����/*.�����?##�;�L�@�	�:
�]��_����@�$������e��;��@1��/x%�|���W4�
��|F�=c� 9��WA12 5��za�N�?(8����S����SQE�QBZ�(�`�‚���?�֎n�x% �P`�����_IU�
�P,��a�j(��X���@��K�*��п�9����}�c�e&R1�2h�Z<uIEND�B`�PKCH[�CCJUUTshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/package.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8�}�Kh\u��{g�̝4�L���)�B�1>�n\��F��)��PAD��Q�TWf!�"؍�����`�HC0ijC�1ͳ��L�fw���(v!�g}�6�9���)wyc�/T4�"����Գ�X�8ѫ������̛v���כ*��������WGU}[E>����7�&����t�Ji�G�+*rQE�>�{�	`�����=�����9o/ror��g�aw=MЪ�U��Q��VcƏ�;}ź;q�D�>��r��7j�T�1a��U&m�8�6��l7K���Vio{�Ǥ9s���VԨ�,O"a��Wū���mpt�k��.h-��V}�����֯K��*�R�\�M�-Юޡ�'O�'C�U0)�7����9Ms�&�3�P#����V
'w'�ů� �
N,�o��p���#�LRi4�Q�j��h�]��G�S\���;Q���Ƥ��B�H��`�1����@<Ѐd�^�{�9�]� �!���"���dlǁD�	@|0mp��
���Q���
a+��k��K7����
�"$���� h$?$�B�r�N#&Cif
�N�7�S���V[�6��l�a�L/Hb�F�6�t����X�=�ֽɕد}��GO�|뻗zU�C5r���h�8�D>��)4V�w���ͦ�|�"������L\>2�FΫ�[�^y�jW��?�'q{�g�Bi��o�.��ȧ��T��c��t�ܲ^&��IEND�B`�PKCH[R�7���Wshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/brick_link.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8�mR�K�Q����	-f=��?�I�ZT�v��rpm�EDR-*"+RJ,+"ZLR�.JŢ��>DÔ��?��R;��c����}��s�}W��b{{����Jlff�`��[��%��n�Js.��Û/�ZA���8>>F�P@>������5�}q$	{�_���Kx<�B!���y�+q�����IE���auuN�S�1st���ppp�LMM���;99���G ��T/=/����������
LNN�aO�d2H$8;;��9�pzzZt�xgg�p^�W"bbbBU���$A:����-"������W�U9D6nnnJ����JUUqss�d2�X,&U����]�H�tF'$���fS����4
�x\>C����v����XZZ������d�j�r��*���^�G�Q�R)������ג�c���t�]��l6G�M��r�����������8��������d���0���e\SS���$immMW��p�544�zzz�Ipuu�^���u90�_�9�������>�������^WTT|�	������P]]���:	�$����A����W���Ã��w�{5n���ZZZ���&c��]�5�}EP^^�����`�0��,˃�ccc�W�/"֘�kX����Y�j�IEND�B`�PKCH[>�)oHHZshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/wrench_orange.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˕��kSQ��8H)N]uA,����w��j�azcbb6���&�	Qcn^b4b2e	�l� x�W�
}$�����9�X��t:�$��n"�0����T8�J)N��!��h4ʉ�F��|�p8|2�X,f��[����͵`0������S���~�O�Z%
}
��i�z=�n���H�X��t:4
��"�B�r�L�R��tv�_�T'�-�l��u��&f_���u�R�����l6� �u]e�
�5~lޢ�n����z�{�e�j���jU��i�w��|}�������?��$����&������x
�r��|TN��%��*4�Ç l��;'T�^�ٗG<����"pF�ୌw��!y��h�ݔ��e��E���6��	�
ܙצ���P���J��:�C\DW�^���,<<�4���A����	�ѹ�]��s��6�ޑ�����IEND�B`�PKCH[$V���Xshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/macFFBgHack.pngnu�[����PNG


IHDR��csBIT|d�	pHYs��~�tEXtSoftwareAdobe Fireworks CS3��FtEXtCreation Time7/16/07Z��(IDATH���A0!��U[
Gϱ�JJJJJJJJJ�Y�����IEND�B`�PKCH[�S�Pshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bug.pngnu�[����PNG


IHDR�agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˝��OSQ�\^[�تtz��%l$�*�**�2:�
iRp�����
�c0���ąKw&&`44���(�e��K�ɽ�w�wrO��X�\���Hi�s�cUQz@��������;քId�Taˀ���)j���C'يKT��8=����ʯ�9ނ^z�����Θ���1OF�Z�[��W�-G�z�?���&�%*��M���Gn�N!�aO>Nc��[ɨX·��0N��qg*�1Su��b|�{g|�fz)̾����&\
��5\	�0	�3�i�D��;`|�0>A?Tx4^���`�o�qs��`>ʦ�`��fC��v�@m�X����[r\���At.��)�G�[Ì�����`��N1���)�B������W�s+�:�Nd��s�V�a�*D�X.pB�&B�]���H@T�3@�Pڏڠ	wV�P6��3yp-�����4�Ǽ

�$�H�'��9��{m@�U�$�ZjC���X�:T��g����L�:�:�?��[#��{1��P=.2���F\�i���A-D
7�7q��XI��פb4�ka��Aj�%
ͼj&Q˫H��&�s.��
`�j������KLE3�*ΫXw�6��_�l���=�@�����h�ߊv��,qq��IEND�B`�PKCH[���V�&�&Nshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/css/rdoc.cssnu�[���/*
 * "Darkfish" Rdoc CSS
 * $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
 *
 * Author: Michael Granger <ged@FaerieMUD.org>
 *
 */

/* vim: ft=css et sw=2 ts=2 sts=2 */
/* Base Green is: #6C8C22 */

.hide { display: none !important; }

* { padding: 0; margin: 0; }

body {
  background: #fafafa;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  position: relative;

  display: none;
  padding-left: 1em;
  line-height: 0;
  vertical-align: baseline;
  font-size: 10px;
}

h1 span { top: -1.3em; }
h2 span { top: -1.2em; }
h3 span { top: -1.0em; }
h4 span { top: -0.8em; }
h5 span { top: -0.5em; }
h6 span { top: -0.5em; }

h1:hover span,
h2:hover span,
h3:hover span,
h4:hover span,
h5:hover span,
h6:hover span {
  display: inline;
}

h1:target,
h2:target,
h3:target,
h4:target,
h5:target,
h6:target {
  margin-left: -10px;
  border-left: 10px solid #f1edba;
}

:link,
:visited {
  color: #6C8C22;
  text-decoration: none;
}

:link:hover,
:visited:hover {
  border-bottom: 1px dotted #6C8C22;
}

code,
pre {
  font-family: "Source Code Pro", Monaco, monospace;
  background-color: rgba(27,31,35,0.05);
  padding: 0em 0.2em;
  border-radius: 0.2em;
}

/* @group Generic Classes */

.initially-hidden {
  display: none;
}

#search-field {
  width: 98%;
  background: white;
  border: none;
  height: 1.5em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: left;
}
#search-field:focus {
  background: #f1edba;
}
#search-field:-moz-placeholder,
#search-field::-webkit-input-placeholder {
  font-weight: bold;
  color: #666;
}

.missing-docs {
  font-size: 120%;
  background: white url(../images/wrench_orange.png) no-repeat 4px center;
  color: #ccc;
  line-height: 2em;
  border: 1px solid #d00;
  opacity: 1;
  padding-left: 20px;
  text-indent: 24px;
  letter-spacing: 3px;
  font-weight: bold;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.target-section {
  border: 2px solid #dcce90;
  border-left-width: 8px;
  padding: 0 1em;
  background: #fff3c2;
}

/* @end */

/* @group Index Page, Standalone file pages */
.table-of-contents ul {
  margin: 1em;
  list-style: none;
}

.table-of-contents ul ul {
  margin-top: 0.25em;
}

.table-of-contents ul :link,
.table-of-contents ul :visited {
  font-size: 16px;
}

.table-of-contents li {
  margin-bottom: 0.25em;
}

.table-of-contents li .toc-toggle {
  width: 16px;
  height: 16px;
  background: url(../images/add.png) no-repeat;
}

.table-of-contents li .toc-toggle.open {
  background: url(../images/delete.png) no-repeat;
}

/* @end */

/* @group Top-Level Structure */

nav {
  float: left;
  width: 260px;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
}

main {
  display: block;
  margin: 0 2em 5em 260px;
  padding-left: 20px;
  min-width: 340px;
  font-size: 16px;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: Helvetica, sans-serif;
}

.table-of-contents main {
  margin-left: 2em;
}

#validator-badges {
  clear: both;
  margin: 1em 1em 2em;
  font-size: smaller;
}

/* @end */

/* @group navigation */
nav {
  margin-bottom: 1em;
}

nav .nav-section {
  margin-top: 2em;
  border-top: 2px solid #aaa;
  font-size: 90%;
  overflow: hidden;
}

nav h2 {
  margin: 0;
  padding: 2px 8px 2px 8px;
  background-color: #e8e8e8;
  color: #555;
  font-size: 125%;
  text-align: center;
}

nav h3,
#table-of-contents-navigation {
  margin: 0;
  padding: 2px 8px 2px 8px;
  text-align: right;
  background-color: #e8e8e8;
  color: #555;
}

nav ul,
nav dl,
nav p {
  padding: 4px 8px 0;
  list-style: none;
}

#project-navigation .nav-section {
  margin: 0;
  border-top: 0;
}

#home-section h2 {
  text-align: center;
}

#table-of-contents-navigation {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

#search-section {
  margin-top: 0;
  border-top: 0;
}

#search-field-wrapper {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 3px 8px;
  background-color: #e8e8e8;
  color: #555;
}

ul.link-list li {
  white-space: nowrap;
  line-height: 1.4em;
}

ul.link-list .type {
  font-size: 8px;
  text-transform: uppercase;
  color: white;
  background: #969696;
  padding: 2px 4px;
  -webkit-border-radius: 5px;
}

dl.label-list dt {
  float: left;
  margin-right: 1em;
}

.calls-super {
  background: url(../images/arrow_up.png) no-repeat right center;
}

/* @end */

/* @group Documentation Section */
main {
  color: #333;
}

main > h1:first-child,
main > h2:first-child,
main > h3:first-child,
main > h4:first-child,
main > h5:first-child,
main > h6:first-child {
  margin-top: 0px;
}

main sup {
  vertical-align: super;
  font-size: 0.8em;
}

/* The heading with the class name */
main h1[class] {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 2em;
  color: #6C8C22;
}

main h1 {
  margin: 2em 0 0.5em;
  font-size: 1.7em;
}

main h2 {
  margin: 2em 0 0.5em;
  font-size: 1.5em;
}

main h3 {
  margin: 2em 0 0.5em;
  font-size: 1.2em;
}

main h4 {
  margin: 2em 0 0.5em;
  font-size: 1.1em;
}

main h5 {
  margin: 2em 0 0.5em;
  font-size: 1em;
}

main h6 {
  margin: 2em 0 0.5em;
  font-size: 1em;
}

main p {
  margin: 0 0 0.5em;
  line-height: 1.4em;
}

main pre {
  margin: 1.2em 0.5em;
  padding: 1em;
  font-size: 0.8em;
}

main hr {
  margin: 1.5em 1em;
  border: 2px solid #ddd;
}

main blockquote {
  margin: 0 2em 1.2em 1.2em;
  padding-left: 0.5em;
  border-left: 2px solid #ddd;
}

main ol,
main ul {
  margin: 1em 2em;
}

main li > p {
  margin-bottom: 0.5em;
}

main dl {
  margin: 1em 0.5em;
}

main dt {
  margin-bottom: 0.5em;
  font-weight: bold;
}

main dd {
  margin: 0 1em 1em 0.5em;
}

main header h2 {
  margin-top: 2em;
  border-width: 0;
  border-top: 4px solid #bbb;
  font-size: 130%;
}

main header h3 {
  margin: 2em 0 1.5em;
  border-width: 0;
  border-top: 3px solid #bbb;
  font-size: 120%;
}

.documentation-section-title {
  position: relative;
}
.documentation-section-title .section-click-top {
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 10px;
  color: #9b9877;
  visibility: hidden;
  padding-left: 0.5px;
}

.documentation-section-title:hover .section-click-top {
  visibility: visible;
}

.constants-list > dl {
  margin: 1em 0 2em;
  border: 0;
}

.constants-list > dl dt {
  margin-bottom: 0.75em;
  padding-left: 0;
  font-family: "Source Code Pro", Monaco, monospace;
  font-size: 110%;
}

.constants-list > dl dt a {
  color: inherit;
}

.constants-list > dl dd {
  margin: 0 0 2em 0;
  padding: 0;
  color: #666;
}

.documentation-section h2 {
  position: relative;
}

.documentation-section h2 a {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 12px;
  color: #9b9877;
  visibility: hidden;
}

.documentation-section h2:hover a {
  visibility: visible;
}

/* @group Method Details */

main .method-source-code {
  max-height: 0;
  overflow: hidden;
  transition-duration: 200ms;
  transition-delay: 0ms;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

main .method-source-code.active-menu {
  max-height: 100vh;
}

main .method-description .method-calls-super {
  color: #333;
  font-weight: bold;
}

main .method-detail {
  margin-bottom: 2.5em;
  cursor: pointer;
}

main .method-detail:target {
  margin-left: -10px;
  border-left: 10px solid #f1edba;
}

main .method-heading {
  position: relative;
  font-family: "Source Code Pro", Monaco, monospace;
  font-size: 110%;
  font-weight: bold;
  color: #333;
}
main .method-heading :link,
main .method-heading :visited {
  color: inherit;
}
main .method-click-advice {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 12px;
  color: #9b9877;
  visibility: hidden;
  padding-right: 20px;
  line-height: 20px;
  background: url(../images/zoom.png) no-repeat right top;
}
main .method-heading:hover .method-click-advice {
  visibility: visible;
}

main .method-alias .method-heading {
  color: #666;
}

main .method-description,
main .aliases {
  margin-top: 0.75em;
  color: #333;
}

main .aliases {
  padding-top: 4px;
  font-style: italic;
  cursor: default;
}
main .method-description ul {
  margin-left: 1.5em;
}

main #attribute-method-details .method-detail:hover {
  background-color: transparent;
  cursor: default;
}
main .attribute-access-type {
  text-transform: uppercase;
  padding: 0 1em;
}
/* @end */

/* @end */

/* @group Source Code */

pre {
  margin: 0.5em 0;
  border: 1px dashed #999;
  padding: 0.5em;
  background: #262626;
  color: white;
  overflow: auto;
}

.ruby-constant   { color: #7fffd4; background: transparent; }
.ruby-keyword    { color: #00ffff; background: transparent; }
.ruby-ivar       { color: #eedd82; background: transparent; }
.ruby-operator   { color: #00ffee; background: transparent; }
.ruby-identifier { color: #ffdead; background: transparent; }
.ruby-node       { color: #ffa07a; background: transparent; }
.ruby-comment    { color: #dc0000; background: transparent; }
.ruby-regexp     { color: #ffa07a; background: transparent; }
.ruby-value      { color: #7fffd4; background: transparent; }

/* @end */


/* @group search results */
#search-results {
  font-family: Lato, sans-serif;
  font-weight: 300;
}

#search-results .search-match {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
}

#search-results .search-selected {
  background: #e8e8e8;
  border-bottom: 1px solid transparent;
}

#search-results li {
  list-style: none;
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.5em;
}

#search-results li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#search-results li p {
  padding: 0;
  margin: 0.5em;
}

#search-results .search-namespace {
  font-weight: bold;
}

#search-results li em {
  background: yellow;
  font-style: normal;
}

#search-results pre {
  margin: 0.5em;
  font-family: "Source Code Pro", Monaco, monospace;
}

/* @end */

PKCH[;9Iv��Oshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/css/fonts.cssnu�[���/*
 * Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/),
 * with Reserved Font Name "Source". All Rights Reserved. Source is a
 * trademark of Adobe Systems Incorporated in the United States and/or other
 * countries.
 *
 * This Font Software is licensed under the SIL Open Font License, Version
 * 1.1.
 *
 * This license is copied below, and is also available with a FAQ at:
 * http://scripts.sil.org/OFL
 */

@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 400;
  src: local("Source Code Pro"),
       local("SourceCodePro-Regular"),
       url("../fonts/SourceCodePro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 700;
  src: local("Source Code Pro Bold"),
       local("SourceCodePro-Bold"),
       url("../fonts/SourceCodePro-Bold.ttf") format("truetype");
}

/*
 * Copyright (c) 2010, Łukasz Dziedzic (dziedzic@typoland.com),
 * with Reserved Font Name Lato.
 *
 * This Font Software is licensed under the SIL Open Font License, Version
 * 1.1.
 *
 * This license is copied below, and is also available with a FAQ at:
 * http://scripts.sil.org/OFL
 */

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: local("Lato Light"),
       local("Lato-Light"),
       url("../fonts/Lato-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  src: local("Lato Light Italic"),
       local("Lato-LightItalic"),
       url("../fonts/Lato-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: local("Lato Regular"),
       local("Lato-Regular"),
       url("../fonts/Lato-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: local("Lato Italic"),
       local("Lato-Italic"),
       url("../fonts/Lato-RegularItalic.ttf") format("truetype");
}

/*
 * -----------------------------------------------------------
 * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
 * -----------------------------------------------------------
 *
 * PREAMBLE
 * The goals of the Open Font License (OFL) are to stimulate worldwide
 * development of collaborative font projects, to support the font creation
 * efforts of academic and linguistic communities, and to provide a free and
 * open framework in which fonts may be shared and improved in partnership
 * with others.
 *
 * The OFL allows the licensed fonts to be used, studied, modified and
 * redistributed freely as long as they are not sold by themselves. The
 * fonts, including any derivative works, can be bundled, embedded,
 * redistributed and/or sold with any software provided that any reserved
 * names are not used by derivative works. The fonts and derivatives,
 * however, cannot be released under any other type of license. The
 * requirement for fonts to remain under this license does not apply
 * to any document created using the fonts or their derivatives.
 *
 * DEFINITIONS
 * "Font Software" refers to the set of files released by the Copyright
 * Holder(s) under this license and clearly marked as such. This may
 * include source files, build scripts and documentation.
 *
 * "Reserved Font Name" refers to any names specified as such after the
 * copyright statement(s).
 *
 * "Original Version" refers to the collection of Font Software components as
 * distributed by the Copyright Holder(s).
 *
 * "Modified Version" refers to any derivative made by adding to, deleting,
 * or substituting -- in part or in whole -- any of the components of the
 * Original Version, by changing formats or by porting the Font Software to a
 * new environment.
 *
 * "Author" refers to any designer, engineer, programmer, technical
 * writer or other person who contributed to the Font Software.
 *
 * PERMISSION & CONDITIONS
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of the Font Software, to use, study, copy, merge, embed, modify,
 * redistribute, and sell modified and unmodified copies of the Font
 * Software, subject to the following conditions:
 *
 * 1) Neither the Font Software nor any of its individual components,
 * in Original or Modified Versions, may be sold by itself.
 *
 * 2) Original or Modified Versions of the Font Software may be bundled,
 * redistributed and/or sold with any software, provided that each copy
 * contains the above copyright notice and this license. These can be
 * included either as stand-alone text files, human-readable headers or
 * in the appropriate machine-readable metadata fields within text or
 * binary files as long as those fields can be easily viewed by the user.
 *
 * 3) No Modified Version of the Font Software may use the Reserved Font
 * Name(s) unless explicit written permission is granted by the corresponding
 * Copyright Holder. This restriction only applies to the primary font name as
 * presented to the users.
 *
 * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
 * Software shall not be used to promote, endorse or advertise any
 * Modified Version, except to acknowledge the contribution(s) of the
 * Copyright Holder(s) and the Author(s) or with their explicit written
 * permission.
 *
 * 5) The Font Software, modified or unmodified, in part or in whole,
 * must be distributed entirely under this license, and must not be
 * distributed under any other license. The requirement for fonts to
 * remain under this license does not apply to any document created
 * using the Font Software.
 *
 * TERMINATION
 * This license becomes null and void if any of the above conditions are
 * not met.
 *
 * DISCLAIMER
 * THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
 * OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
 * COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
 * DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
 * OTHER DEALINGS IN THE FONT SOFTWARE.
 */

PKCH[��׫ashare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttfnu�[����pFFTMf�h��OS/2r��x`cmap_�ceXcvt �q
"fpgmY�7`sgasp���glyf�'�b���head��u��6hhea;�4$hmtxz�pF�~loca��
<vmaxpS�X nameqB���P;dpost6z
�3prep&�#��AZ½jV_<�������v������v:Vj
�X��XK�X^2 	 ADBE@
"��`��� �MX��WU*��zTU�U�cGbE9'8MFDC��xUkm1 gBUs�5O_Qb�QS0f1dC*O+
6&A�cco<�Q]P<EgH]Z7jQ<]<]<�HEM3@1GxcL�qM:5[��SUUp��U���MH����a'{      ��Bssss____S00000f-OOOO&eXQQQQQQPEEEEZZZZ<]<<<<<U<MMMM1]1 Q Q QBPBPBPBPU3<sEsEsEsEsE5H5H5H5HO

_Z_Z_Z_Z_ZQ7bjj�Q�Q�Q�+5QS]S]S]��0<0<0<!d�dtd�CHCHCHCH*E*EOMOMOMOMOMOM
&1&AGAGAG>10<OM Q_Z0<OMOMOMOMOM5H0<CH*E7^<]=?E<M.?631���R���������������������������������l��#����������������������U<U<5HO]O]�QCQ�QQ<S]S]S]d�d�dMCHCH*E*E


&1AGEO&1&1&1&1P���_gg���������������������������`N/+m:+T`l8U��������������������������������������4
~1Ie~��������7CRTYaeoy�����������$(.1CIMPRX[���!%+;Ico������    " : D q y � � � � � � � � � �""��
 �4Lh��������7CPTXaeoy�����������#&.1CGMORV[��� $*6BZl������    " 9 D p t } � � � � � � � � �""����������������������w�n�l�@�%���
�
���������������������������������z�s�r�m�k�Z�W�T�S�R�O�M�
�
��������z�j�b�R�J�H�E�?���������������}�z�u�i�g�f�c�_�]�Z��
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc��������������������������������tfgk�z�rmxl��uiyn~���ep?od�����������6���{������������������v�s}~|��w�,K�	PX��Y����D�	_^-�,  EiD�`-�,�*!-�, F�%FRX#Y � �Id� F had�%F hadRX#e�Y/ �SXi �TX!�@Yi �TX!�@eYY:-�, F�%FRX#�Y F jad�%F jadRX#�Y/�-�,K �&PXQX��D�@DY!! E��PX��D!YY-�,  EiD�`  E}iD�`-�,�*-�,K �&SX�@�Y�� �&SX#!�����#Y �&SX#!�����#Y �&SX#!����#Y �&SX#!�@���#Y �&SX�%E��PX#!��#!�%E#!#!Y!YD-�	,KSXED!!Y-�+�+�+�@6*!+�M@2$+�+� E}iDK�`RX��Y��DV�3�>~��8D�$4��>t����d��`���H���D�P�		B	�	�

R
�
�:��4~�
D
�
� X�R����$�&v�L�j�V��b��L�V�`��Vj�

8�
d��px*2���,6@H���      0 @ P � � � � � � �!B!N!Z!f!r!~!�!�!�!�!�"
"""".":"F"t"�### #,#8#|#�$$$$($4$@$�%%%%(%4%@%L%X%d%�%�&&& &,&8&x''''$'0'<'�'�'�'�'�'�(b))))&)2)>)J)V)b)n)z)�**"*.*:*F*R*^*�+H+T+`+l+x+�+�+�+�+�+�+�+�,@,�,�,�,�,�,�,�-X-�-�-�....*.|.�.�.�.�.�.�.�.�//l/x/�/�/�/�/�0&020>0J0V0b0n0�1h1t1�1�1�1�1�1�1�1�1�1�1�2222(242@2L2X2d2p2|2�2�2�2�2�3 3�3�3�3�3�3�3�3�3�444 4�5
5h5�6H6�777*767B7N7Z7f7r7~7�7�7�7�7�7�7�7�7�8`8�8�8�999T9�:H:�;8;�;�<<<�==�=�>4>p>�?8?�?�@@F@�@�AA
A0AVA^AfA�A�A�A�A�A�A�A�A�A�A�BBhB�B�B�CC8CLCzC�C�C�D(DJDhD�D�D�EEERE~E�E�FFFjF�G"GfHHDH�H�I2I|I�I�J.JpJ�J�J�J�J�J�J�J�J�K
KK"K.K<KLKXKdKpK|K�K�K�K�K�K�K�K�K�K�LLLL(L4L@LLLXLdLpL|L�L�L�L�L�L�L�L�L�L�MhMtM�M�M�M�M�M�M�M�M�NN:NDNPN\NjN�N�N�N�N�OO$O.O8OBOLOVO`OjO�O�O�O�O�O�O�O�O�PPPP PbQQ�RLR�S$S�T4T�U&U�U�VVVJVlV�V�W8W�W�XX�X�X�Y Y2YFYfY�Y�Y�ZZ4Z^Z�Z�Z�[[@[�[�[�\D\�\�]
] ]N��u�-�EX�/�
>Y�EX�/�>Y�	ܸ�01'3#4632#"&P
8-++++@^^���#))#$**���`��&�sW���EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�+�+��
ии�ии�ии�и�017#537#53733733#3##7##7#�OVU[5�5QWV]6�6���9�:����:�9�����U���1G�/�,/�+ܹ��ܺ+9�и��!+9�+�.�01.#"#5.'732654.546753�"(3;/GRG//A'<8d#'&[9<=/FSF/YI<7J�
-&$*<. 7)��,9)1&) )9,?P��*����=�'�{M&��*��A�
G��EX�3/�3
>Y�EX�!/�!>Y�EX�/�>Y�!��!39�3!9��+ии3���и�;��Eи>и�G�0173267.'>54&#"&'#".54>7.54>32>73z".:0U" *F%!#&jAH$W8,H3#,%5!=B(2 S-)L4$<5�- *d6=-:!%+6��7#(0C( 6-')O#!8*H: 4/)3^'(_9Av4.�`c��+01'3#�n8Ann��P���+01.5467�hyyh-e__e-�Q䑑�Q*U��U*z�P��
�
+01>54&'7ze__e-hyyh�U��U*Q䑑�QTo,/�/�9���и�
и��01?'7737'�l��	0	��l*xx��F.7��7.F���Uh,�+��и�	�01#53533##��B��B+>��>��+���+01>7#"&54632�>>	 .0 --]S�O<%&%'E;Xy��U+i��}��EX�	/�	>Y��0174632#"&�/""//""/H&//&&..c�`���EX�/�>Y��01#3�JHJ�fG���'K�EX�/�>Y�EX�/�>Y�����9�/�"�01"&54632"32654."&54632,kzzkkzzk!8)UCCU)8!%%%%��������TAcE����EcA��# ## #b~=�EX�
/�
>Y�EX�/�>Y��и
�й�01%!53#5>73�R��3L=DDD�5��E
�C�EX�/�>Y�EX�/�>Y��к9���017>54&#"'>32>;!IQ}U,DG-M/+cD0M6+NlA=�?1HtaT(7F- /,51F*-[ai;G9���3S�EX�/�>Y�EX�0/�0>Y��
09�
/����&
901732>54.#52>54&#"'>32#"&'c Y>!8)8X?9O2G;-P ,(f>-M9 L< 9,$?T0Sp#�.+/"? ,/6$4#-)<':J)6!*D/7#'!~	Y�EX�/�>Y�EX�
/�
>Y�+����	и�и	�и��01%5>7###5!533p"��cN��?Xc��=/�B��7��t8��
~(U�EX�/�>Y�EX�#/�#>Y�
+�#��#9���01732>54&#"'!!>32#".'a$+5 ";,UH(8",i��5%.P;"'BU.+E7-�&6!BJ3G�1K44P7M���
0W�EX�-/�->Y�EX�#/�#>Y�+�#��#-9���-��01%2>54&#".#">32#".54>32A2$FB&T)	U�B$&F5!&_0,I5#:M+4YB%,Ja4;W 5%3 BE'/]`�@iM&-1J1.K6&MsM`�U''F~3�EX�/�>Y�EX�/�>Y���	�013>7!5!#�2M7���?R2V[��~CG3H���^D���
@W�EX�)/�)>Y�EX�</�<>Y��)��9�/�1и1/�ܸ� �01732654.'7654&#"4>75.54>32#".�WJHL6I*/>�PB?6B.=�&1(95H+/I39(.":U76W<!�6D>2!- A�:F0A8/) �!4*I3%<+-?%-O
&3"$>./@C���
0W�EX�#/�#>Y�EX�-/�->Y�+�-#9���#��-��01267.#"32>7#".54>32#"&'%T*
SG1$EYB%&E5 ']1,I4";M*4ZB%-J`4;W 6'.^`%4BE�AhM&,1J1.K6&MsM`�U'&����}'f���+�'fx0�h;�+��и/��9��и/��01%%xu��-��k�O��O���U��&k�k0�h;�+��и/��9��и/��015%5%5�-��u-�O��O�m����)*�EX�'/�'>Y�
+�'�!ܸ�017&>54&#"'>324632#"&�#,'77&A1"\:*D1'-%f++++�$8.('**7-#.)9$!3+(,3 �#))#$**1�p"{4=?�%+�/+�8+�;+�/9��:�01%#'##".546754.#"3267#".54>323275"2G'/#��$9'-R?%$>T1-C'R2;jP/-Pk>4L2�+%88hXd:*"1MN$@0*S}SP}V--3c�``�`1$@W3�#(@~7 8�	A�EX�/�
>Y�EX�
/�
>Y�
	+���
��01'.'###3#�  ��?U�^�Xd7m99m7dC���pg!�%W�EX�/�
>Y�EX�/�>Y�$9�$/��
$9����%�0132+2654&+2654&+g�2S;!9:HP$A[7æTIMLVcU\ZWc�&=+1OND0H0x:76/��?C=9�B��*�!9�EX�/�
>Y�EX�/�>Y�����014>32.#"3267#".B+Nl@<Z/@*/M66M/-F 0'b?>iM,HO~X/0 5!%Eb=>cF&&#3-2.WU%�
9�EX�/�
>Y�EX�
/�
>Y���
��0132+72654&+U���'LpI��poopH���N{U-D�}}���s�M�EX�/�
>Y�EX�/�>Y���9�/����01!!!!!!s�����K�a�F�G�G��	C�EX�/�
>Y�EX�	/�	>Y���	9�/��01!!!!#����
��S�F�F��5���'M�EX�/�
>Y�EX�#/�#>Y���#��#9�/��014>32.#"32675#53#".5+Mk@!6-#/>0.K63L0#<�� d@>hL*HOW/5"%Eb=>cF&�E�� ,.WO	�I�EX�/�
>Y�EX�/�>Y�	9�	/����013!3#!#OTTT��T����p5��_��A�EX�/�
>Y�EX�/�>Y����и�	�0173#5!#3!_������fGFF��GQ����5�EX�	/�	
>Y�EX�/�>Y��	��0173265!5!#"&'�H&GA��f3S=8i"�,*KQrF�A.Q<#49bC�k�EX�/�
>Y�EX�/�
>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�01333##bT^��]�rT���I��jU����+�EX�/�
>Y�EX�/�>Y��013!!�RE�i���GQ�M�EX�/�
>Y�EX�/�>Y�+��и�	и���013373#4>7##/##Q\]! \\G+Z-Z,F���jj�pq675����576��S�Y�EX�/�
>Y�EX�/�>Y�9���к9��
���0133.53#'##SU�B	OU�B	O��b�1k4T�p��3g3��0��(�'5�EX�
/�

>Y�EX�/�>Y��
��01".54>32'2>54.#",8\C%%C\87]C%%C]7%>++>%&=++=0YOO}W./W}NOY0I&Gc>=bD%%Db=>cG&f!�G�EX�/�
>Y�EX�/�>Y�9�/�����0132+#2654&+f�6Z?##@Y6vS�WSUUk�-J64L2��HAFG7��1�])�4K�EX�$/�$
>Y�EX�/�>Y�1+���$���.�0132>54.#"#"&'.54>323267�+=&%=++=%&=+�$Wm/M7$B\87\B$4K-J3	K=dG''Gd==cE%%Ec��XC7WvGO}W//W~NFtW8	*+d)�S�EX�/�
>Y�EX�
/�
>Y�
9�/����
�	�0132654&+##32�mMQQMm�uS�2T="PC�Y?@A4�����,F3M\��C���3I�EX�/�
>Y�EX�0/�0>Y��09��� 0901732654./.54>32.#"#"&'u%b6FL +^2) 9O/>h$, M1<F!*\5' <V6Hy-�%-;0#)
(7$%@/-$6!3-!	()7$'D34-*.�3�EX�/�
>Y�EX�/�>Y����01#5!##��TJFF��O��	�3�EX�/�
>Y�EX�/�>Y���
�01332>53#".5OT%22&Q!:Q00R;!��f3G++G3��hGb??bG+-�3�EX�/�
>Y�EX�/�>Y����0133>73#+Xj	iU�a���;d:546b�p
N�!M�EX�/�
>Y�EX� /� >Y�
+� ��и�и ��0133>?33>73#.'##
S5	
E;E	2Oa\KHZ��d*O))P)��(Q))P)��o<<��6"�]�EX�/�
>Y�EX�/�>Y�9�9��к
9��к90133>?3#'.'##��\\
ZX��\c
bXS=�++������33�&2�@�EX�/�
>Y�EX�/�
>Y�EX�/�>Y�901%33>?3#�Xc$&_V�T���&K((L&�Z�A�	=�EX�/�
>Y�EX�/�>Y����017!5!!!Ao�����u�&2F2��G�h���+�+01!#3!�����0�0c�`���EX�/�>Y��013#cJHJ��c�hw��+�+01#5!!55���h�0��0o��	&�EX�/�
>Y�ܺ9�	�013#/##H�HB11BH��~����<�t��
�+01!5� EGG���=m��Q���!/��EX�/�>Y�EX�/�>Y�EX�/�>Y�9�/��
��'�

'9�9��*��+�0174>7.#"'>32#'##".732675Q'U�^1#0X" 17> daC)c4"<-P'*Q*Ni?~)=,,!%8
m[��B .#3'	%#�']���'��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�9������$��'�013>32#"&'##732>54.#"]R#W+1L3$=P+#Q#BR#G 6(!4$ I&��^"(#A[8>bD##6r1H-(B/#&P���!9�EX�/�>Y�EX�/�>Y�����0174>32.#"3267#".P+Jc7<W)A&*F11E*-K$(c69aH(�=_B"*52E**D1#5$("A_<����$��EX�/�>Y�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�9�9�������� �0174>32'53#'##".73275.#"<%=P+-D"RDS-0M8UKDHA!?  7)�;_B$"Z��8@-"A^>XbI�1DE���'C�EX�/�>Y�EX�/�>Y�'
+����"�0174>32!3267#".%4&#"E*EY/4R9��1C(+G"$\;6_G)�LD7,�<_B#!<T3
	'>,6"#A^dIN'8$gB�V�EX�/�>Y�EX�/�>Y�EX�/�>Y����и�
�
�01.#"3###5754632/3 B9��Q��_eHDz	C<,C�]�>)YlH� 6�EU��EX�%/�%>Y�EX�(/�(>Y�EX�'/�'>Y�EX�C/�C>Y�EX�/�>Y�C���ии�:�2ܹF�5F29�5�и(�)�'�*�%�N�0132>54&+"&'4675.54675.54>323##"&';2#"&2654.#"�QN*D078_%#G)'#4E'( ɂ3E'+&50m^[&Fd>ku�/A))BQ&0$#)8&1?,(@-?4 '>+		 4>">.Fk>5**5>]�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�����013>32#4&#"#]R'X9WQR4<%$&R��s)6ca��#EC!��Z��;�EX�/�>Y�EX�/�>Y����ܸ�01!##%"&54632Z4R�%%&&���"##"7�'��!A�EX�/�>Y�EX�/�>Y�����ܸ�01!#"&'732>5#%"&54632Z4/N;&H9$0�%%&&�-K7=
"1��"##"j>�m�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�01333#'#jR^��\�sR�����o�Q���5�EX�/�>Y�EX�/�>Y����013327#"&5#Q�3,(4!:(NQ���6/>XW�<,� ��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX� /� >Y�EX�/�>Y�EX�/�>Y� 9���������0133>32>32#4#"#4#"#<@1*J4)37O5&B7$O�@"*T&.MI��UV%&��UV%&��]�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�����0133>32#4&#"#]D&X9WQR4<%$&R�S)6ca��#EC!��<���'5�EX�/�>Y�EX�/�>Y���#�0174>32#".732>54.#"<'BW00WB''BW00WB'U)9##9))9##9)�=_B""B_=<_A""A_<*D11D**E22E]�3�%��EX�	/�	>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�	9�	9�����	�"��%�01#33>32#"&'732654.#"�RD"Y-1K3$=P,"O!#FBT!4$ I&)��> *#A[9>aD#!?f[(B/#&<�3��$��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�9�9�������� �0174>32373#57#".73275.#"<%=P+-F#BR Q-0M8UKDHA!?  7)�;_B$" 6�M�X+"A^>XbI�1D��T�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��
���0133>32.#"#�D&oD.#7e,R�s;D	G	?L��H���-I�EX�/�>Y�EX�*/�*>Y��*9���*901732654&'.54>32.#"#"&'p)^BB@EY&C23M27h$( N-".RBc_7Q4Hy-v$, ,	#*3%%5'@84(-E��"nM�/�EX�/�>Y�EX�/�>Y����и�и��01#5?33#3267#".5Ή�D��0##8!P(5H+�>��C�!1"
<5J-M����e�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�����01!#'##"&5332673�C%W9XQS3=*D)RU+6ca.��EC+/Q3%�
<�EX�/�>Y�EX�
/�
>Y�EX�
/�
>Y��0133>73#3Sp

pO�\��%G##G%�P�!t�EX�/�>Y�EX�
/�
>Y�EX�/�>Y�EX�!/�!>Y�EX�/�>Y�!9��к90133>?33>73#'.'##T;;F<;Njc:	8b��#B""C"��#B""B#��#E% D*�@�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��и�
и�017'33>?3#'.'##��[M

IW��ZU!PX��k*,i�p.+p1�/'�[�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y���901326?33>73#"'7T
3@�Sw
jN�$2A)$�;-$�� J##I!
��$>-
AG�	=�EX�/�>Y�EX�/�>Y����017!5!!!GM�����X�3,wC,��Cx�h��9+�34+�+�
+�'
9014>54.#52>54&54>;#";#". 9,,9 	.F/=4&1
'44'
1&4=/F.1..40]4'3
0
#+[/13		313T.#
0
3�Q��+013#JJ�c�h��9+�7+�+�'(+�('9012>54&54675.54654.+5323"+5�&1
&44&
1&3=/E.	 9,,9 .E/=h
#.T313		31/[+#
0
3'4]04..1'3
0L��'�+�+��
и��01>3232>7#".#"LH&/)'	5H&/)')F7 "F6 "4�Hu��EX�/�>Y�	ܸ�01#737#"&54632RP
8-++++Z^^X�$))$#**q����%\�EX�/�>Y�"
+�!+�!�и/�"�и/�
�
и
/�ܸ�и/01#5.54>753.'>7:8@?9�H'3-J56J*3,@(- 4�
XBCX
	"gh$=T54S<$jg"4��M�)W�EX�/�>Y�EX�/�>Y�+���и��� и�#�01%!5>54'#57.54>32.#"3#�;?=uc7M0>U0;*BE��%&GG2_94 = *D0+ /A4 ; 85F:SA 4�&+�0+01?.5467'76327'#"'732>54.#":TS,W0?>1W,TT,X9>1WP ++  ++ �U:##;V-Z%%Z-V;##:U-Y&Y�1$$11$$15#~l�EX�/�>Y�EX�	/�	>Y�EX�/�>Y�	9��й�иܸй�и��013>?33#3##5#535#53�\!"\R�����R�����~�!C##C!���/A0��0A/@�Q��+�+013##JJJJ�5M�0�[����GO�/(+�D+�2(9�D/9� 29� �к<29�<��01%>54.'.#"#"&'732654.5467.54>32s #)>I %)?IT8#*&*?I?*1)*;$7\ 2=*)-*>J>*3(&8&2Q�&"",!)!+!k%$+=.0<'2$&!-(&*=.-@'/$"���L�����:�'EM�EX�/�>Y�EX�/�>Y���#�-й4��Aй:�014>32#".732>54.#"4>32.#"3267#".)Ic99cI))Ic99cI). ;S22S;  ;S22S; F.;!#1".85-&4&";,CL{U..U{LM{W//W{MBkM**MkBBjL))LjB+F2'K;BM*3I�����N���S4��&��sUhi
�+01!#5!U�B��i����U+ip?��'5>=�+�
+�62+��)и2�/и�4и1�01".54>32'2>54.#"32#'##72654&+,'E33E''D33D'7''7 6((6)L /..#))C?4H,,H44H,,H4%*;$#;++;#$;*$SFFfC���Y��������
+�+01".54>32'2654&#",-##-.""."**"!**�!//""//!..#%..%#.U,D�EX�/�>Y�+��ܸ�и�и���01#53533##!!��B��B���R0>��>�A>�����������������=���M�E.�(s�(/�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y���9��
���01332>733:7#"&'##"&'#MS49&&'S&$ Q/#;S��CE	+#<c�X>5:85 &;43H����%�EX�/�
>Y�EX�/�
>Y013##".54>;�QQ6 5ZB%$?V2+�� 25R9;Q3���}����+v�����a�������N���a4�&��s��?~'�{M&����<~'�{M&����'U�'�{M&��{�<��'*�EX�%/�%>Y�
+�%�ܸ�01%3267#"&54>'7#"&54632g#,'87&A0!]:Te'-$g,++,�$8.('+*6-#.TH!3+(,2!�$))$#**�� 82&&#�� 82&&$�� 82&&%�� 83&&&�� 8-&&*�� 8k&&,��O�f�EX�/�
>Y�EX�/�>Y�EX�/�>Y�
+�+�������01#!5##!#3#=+.���IWC���L6i6w�G���F�G�B�+*�&(//��s2&*#��s2&*$��s2&*%��s-&**��_�2&.#��_�2&.$��_�2&.%��_�-&.*+�S�EX�/�
>Y�EX�/�>Y�+��
�����01#5732+72654&+3#[KK�������poopH��A* ����D�}}��/���S3&3&��0��(2&4#��0��(2&4$��0��(2&4%��0��(3&4&��0��(-&4*f~�)�	+�
	9�
�и
�и�01?'77'f��,��,��,�����-��-��-��-��,�
/}�EX�+/�+
>Y�EX�/�>Y�+9���
+9�
�и+��
�и� и�#и�-�01732>54/.#"#"''7.54>327�7 %>+8!&=+L%C]7Z@50?%C\8\?6/t&Gc>Y@8%Db=_@�+sHOY0=O ]-vIO}W.=O ��O��	2&:#��O��	2&:$��O��	2&:%��O��	-&:*��&22&>$e!�9�EX�/�
>Y�EX�/�>Y�
+�+01332+#72654&+eTv6Z?##@Y6vT�WSUUk�n.I64M2��@GG6��X��4�9Z�EX�/�>Y�EX�9/�9>Y�EX�/�>Y�"�"9��4�%49014>32#"&'732654.54>54&#"#X4J/(=*",5,+<%*F !4*--4-",*7?R.L6)5&5,) $5' 6(:/&!-#"1-/ %1KK���Q���&F���Q���&F���Q���&F���Q���&F���Q���&F���Q���&F���U�.7D��EX�
/�
>Y�EX�/�>Y�EX�&/�&>Y�EX�,/�,>Y�/+�
,9�/�
��&
9�&��)&
9��4�,�;��B�017467.#"'>32>32!3267#"&'#"&%4.#"3267./||'/AP-0;E0%7%��<;/A&5H)O&<F�!/9�(">\O�IW6E8 8*/3$=P-
L]
60+-.K�8+RI�'($#5:��P�+�&H�*��E���&J���E���&J���E���&J���E���&J���Z��&��0��Z��&��0��Z��&��0��Z��&��0<���9k�EX�4/�4>Y�EX�/�>Y�'+���*49�*��49��-и�7и0�01%2>5<'.#"#".54>32.''7.'77,(;'#R'(=),<{BP!>X7/VB'"=S2/T=.��<"&(J"�85H,/&,;"&=+*=�y<cG' =W63S; *&Ee(M)D!4*E)��]�&S���<���&T���<���&T���<���&T���<���&T���<���&T�U`3%�+��ܸܸ�ܸ�01"&546324632#"&'!!,M���R����><���
0}�EX�,/�,>Y�EX�/�>Y�,9���
,9�
�и,��
�и�!и�$и�.�01732>54&/.#"#"''7.54>327�):#9)
2#9)
5 'BW0S?3%5 'BW0S?3%\&1E*!:&2F*!8  Y7<_A"0;> X6=_B"0;��M����&Z����M����&Z����M����&Z����M����&Z����1�/'�&^�]�3�%��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�9������"��%�01#3>32#"&'532>54&#"�RR#V+1L3%=P+$L!#E 7(AI H&���W"(#A[9>aD#"\�1H-Pc#&��1�/'�&^��� 8&&'��Q���&F��� 82&&(��Q���&F� �,W�	%e�EX�/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�#
+�+���01'.'##"&54>7#'##3327�  �.(7
>�?U�^�#-d7m99m7d�=,+& 	����p= Q�2�4B��EX�/�>Y�EX�0/�0>Y�EX�/�>Y�EX�#/�#>Y�09�/��
�#���+и0�:��>�0174>7.#"'>32327#"&54>7'##".732675Q'U�^1#0X" 17> da*,.&4)c4"<-P'*Q*Ni?~)=,,!%8
m[��;
)+*% 	> .#3'	%#�'��B��*2&($/��P���&H�+��B��*2&(%/��P���&H�+��B��*5&()/��P���&H�+��B��*2&(./��P���&H�+��U%2&).��3��T�&I�8��+��<��C�
,��EX� /� >Y�EX�)/�)>Y�EX�/�>Y�EX�/�>Y�++�# 9�#�� ���� 9��
��и�&и+�'�01.#"327#'##".54>32'5#53533�!? 8)KDHA�HDS-0M8%=P+-D"��RH`.A'S]I���@- ?Z;9[@""ZB0]]��s&*'��E���&J���s2&*(��E���&J���s5&*)��E���&J�s�,!�!^�EX�/�
>Y�EX�
/�
>Y�EX� /� >Y�+�+��� ��01!!!!!#3267#"&5467!s�����K!
.'8/���F�G�G%-,+*AE�2�5>^�EX�$/�$>Y�EX�/�>Y�EX�/�>Y�>,+����2�$�9�01%3267#"&54>7#".54>32!3267'4&#""-
-&4"6_G)*EY/4R9��1C(+G"LD7,-)$!)+*$ 	#A^<<_B#!<T3
	'>,�IN'8$��s2&*.��E���&J���5��2&,%��H� 6�&L���5��2&,(��H� 6�&L���5��5&,)��H� 6�&L���5�(�&,�#��H� 6�&L9��O	2&-%��
\&M%�f*
N���EX�/�
>Y�EX�/�
>Y�EX�/�>Y�EX�
/�
>Y��ܹ�ܸ�и���и�и��01!!7##!##5753!533����ET��TEETTE�oo�5���*uuuu���EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�+�9������и�и��01>32#4&#"##57533#�'X9WQR4<%$&RIIR��)6ca��EC!��;+]]0I��_�3&.&��Z��&��0��_�&.'��Z��&��0��_�2&.(��Z��&��0_�,��`�EX�/�
>Y�EX�
/�
>Y�EX�/�>Y�+������0173#5!#3#327#"&5467#_������ ".(7*�GFF��G4-,++<Z�2��&g�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y����
��ܸ!�01#5!3267#"&54>7#"&54632<�4#
-&5
 %%&&�C�6)+*#J"##"��_�5&.)Z��/�EX�/�>Y�EX�/�>Y���01!##Z4R�����Q���2&/%��7�'��&\�0��b�(C�&0�&��j�(>�&P�#j>�m�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�01373#'#jR^��\�sR������n����2&1$���Q��f&Q$�4����(�&1�.��Q�(�&Q�G����&18|���Q���&Q8�����&1�����+����&Q�����5�
I�EX�/�
>Y�EX�/�>Y��9��и�и	�01%!55737�iQQR��GG�+C,i��xDx�Q���W�EX�
/�
>Y�EX�/�>Y�
9��
и
���ии��01%#"&=575#537327!:(NQ||����3,(4XW�GFG�C��[G[�6/��S2&3$��]�&S���S�(�&3���]�(�&S�
��S2&3.��]�&S���V�&m�EX�/�>Y�EX�$/�$>Y�EX�#/�#>Y�EX�/�>Y�+���&#9�&�!�01>7#"&54632%>32#4&#"#305 '* (2LC
#P5OLS.4'='RD�O5' #+@9Kv#<%3`^��)B@)(���L��0��(&4'��<���&T���0��(2&4(��<���&T���0��(2&4-��<���&T�!O�O�EX�/�
>Y�EX�
/�
>Y�	+���
��и��01463!#3#3!".7;#"!�}”���>aD$VTVVTK��F�G�G-U{N~����T�;D��EX�/�>Y�EX�/�>Y�EX�2/�2>Y�EX�7/�7>Y�<'+�7����29�2�+�529��A�01732>54.#"4>32>32#3267#"&'#".%4.#"X
&%%&
M0@%/EA0"5#�:6';#0H+]&@/-0�*E11E**D22D*=_A"=87>$<Q-L]697p"A_`8+SH��d)2&7$����&W�*��d�()�&7���t�(�&W����d)2&7.����&W�*��C��2&8$��H���&X���C��2&8%��H���&X���C�+�&8/
��H�+�&X���C��2&8.��H���&X���*�+.�&9/��E�+"n&Y�L��*.2&9.��E��"�&Y8���O��	3&:&��M����&Z����O��	&:'��M����&Z����O��	2&:(��M����&Z����O��	k&:,��M����&Z����O��	2&:-��M����&Z��O�,	�*R�EX�/�
>Y�EX�
/�

>Y�EX�'/�'>Y�+�'��'��01332>533267#"&54>7.5OT$23%QE750
-(8
	nk��f3G++G3��hft=-,+!	�}M�2�%��EX�/�>Y�EX�$/�$>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y����к9�� ��#�01!327#"&5467'##"&5332673�-).&40 %W9XQS3=*D)R6
)+*)=Q+6ca.��EC+/Q��
N2&<%��P�&\���&22&>%��1�/'�&^���&2-&>*��A2&?$��G�&_���A5&?)��G�&_���A2&?.��G�&_����+��EX�/�>Y�EX�%/�%>Y�EX� /� >Y�EX�/�>Y�!$+�9������	�
9�
��$�#и$�(и!�)�01732654&#"'>32#"&'###57533#�#G@T@I I&#W+1L3$=P+#Q#BIIR��raVL]#&D"("=X6<^A"#6;+]]0I>��&�#C�EX�
/�

>Y�EX�/�>Y�+���
� �013267>32#".5467!.#"�RBDW��V:9Z?"$A\77Y>"�TP)Ajvxi7 )/W}OO~Y00Y|Lv�!1���(B�EX�%/�%
>Y�+�
+�%���и
�!�01.#"3##"&'7326?#5737>32#��(>,*4-
hF)
PT0J$/??�.K6>OM�;8dh0��24G�EX�,/�,
>Y�EX�"/�">Y��,�
�",9��.�01%2>54.#"#".54>32>54&',%>++>%&=++=9-,0%C]78\C%%C\8?5'(=&Gc>=bD%%Db=>cG&� -2+�[OY00YOO}W.
<��,e4G�EX�,/�,>Y�EX�"/�">Y��,�
�",9��.�01%2>54.#"#".54>32>54&',#9))9##9))9
8,&.'BW00WB''BW061,)81D**E22E**D1- ,2!eC<_A""A_<=_B"
O��v(J�EX�/�
>Y�EX�!/�!
>Y�EX�/�>Y�!����01#".5332>53>54&'_'!:Q00R;!T%22&#(0 $��Gb??bG��f3G++G3�#
M��Vo#a�EX�/�>Y�EX�/�>Y�EX�	/�	>Y�EX�/�>Y�9����01#'##"&5332673>54&'?

"C%W9XQS3=*D)#0o #�:U+6ca.��EC+/Q"
�� 82&&.��Q���&F���_�2&..��Z��&��0��0��(2&4.��<���&T���O��	2&:.��M����&Z����O��	�&:1��M���&Z0���O��	�&:3��M���7&Z2���O��	�&:5��M���7&Z4���O��	�&:7��M���7&Z6���5��2&,.��H� 6�&L�0�,(�%9K�EX�/�
>Y�EX�	/�	>Y�#+�	�и	�&��0�01#"&5467.54>32327'2>54.#"�-(8$A]=%C\87]C%`O	W%>++>%&=++=�,+!;:_zAO}W./W}N��"	
�&Gc>=bD%%Db=>cG&<�2�(<\�EX�/�>Y�EX�/�>Y�EX�&/�&>Y��и&���.��8�014>7.54>323267#"&32>54.#"�/T>$'BW00WB'-@(#$	.&4Y)9##9))9##9)y!$A\:=_B""B_=3M;+8)+�*D11D**E22E��C�(�&8�
��H�(�&X�
��*�(.�&9���E�("n&Y�O7�'��5�EX�/�>Y�EX�/�>Y����01!#"&'732>5#Z4/N;&H9$0��-K7=
"1�)�-c�EX�%/�%
>Y�EX�/�>Y��иии
и%��
9��!и�#и"�01%2654&+3#32654&++5#5732&U^\Wk��ZTJNL^�HP$A[7�MM�2S;!8;?CFA<e/r=8860�PE2I1�*�&<*0K^���!/v�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�/��
�9��'��*��+�013267#"&533>324.#">(U�^0#0Y" 17> dbD(d3"=-P'*Q*Nh?h)=,-!%8
m[*B .$3'	%#�'<����
$�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX� /� >Y�� 9��� 9����	�0173275.#"4>32373#'##".�KDHA!?  7)U$>P,+H"BDT./M8�XbI�1D+;_B$" 6�@-"A^]���%��EX�/�>Y�EX�!/�!>Y�EX�/�>Y�EX�/�>Y�!��!9���!9����
�01%4&#"32>7#"&'##33>32�AI$J #E 6(U$=P+$P#BDZ11K3�Sc%$� 2F0>bD##6�@-#A[=���!5�EX�/�>Y�EX�/�>Y����01%#"&'732>54.#"'>32)Fa79d'%M-)E1.B',F*_B5]F)�<_A"($5#1D**E25*"B_?���'C�EX�/�>Y�EX�/�>Y�+����"�01%#"&'732>7!.54>32.#")G_6;\$"G+(B0��">U31V@%T
PB7*�<^A#"6+?'	
3T<!#B_HO&9$E���#C�EX�/�>Y�EX�/�>Y�#+���� �017467!.#"'>32#".73267E{UT*J!$^99\A$$AY53S; LQBHR�	JY8"B^<<_B# =W+ONRK<�'��!/��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y���9�9�
�"��$��%��(�01326?#".54>32373#"&'7275.#"}&P%FKT-/M8$=Q,+J Bvm0a(�FC!@ 7*MjF;b*"?[99\@##6�\j�I�0A'R`M�3��a�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�
9����01#57#"&5332>73�R'X9WQR4<%$&Rͮr(7ca.��EC!S.��� ��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�9���������01!#'##"'#"&533267332673@1*J4)38O5&C6%N@"*T&.MI\��V%&`��V%&`?����T�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��
���01!#'##"&'732673�D&oD.#7e,Rs;D	G	?L6�x�A�EX�/�>Y�EX�/�>Y��и�и�
�01%3##5#5354&#"'>32���D��5F#8!P(5H+CC��C�AD
=5J-3%�
@�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�901!#.'##3%Sp

pO�\%H##H%���P�!i�/�EX�/�>Y�EX� /� >Y�EX�/�>Y�EX�/�>Y� 9�9�901!#.'##'.'##33>?3PT;;F<;Njc:	8b#B""C"��#B""B#���#E% D*�1'�R�EX�/�>Y�EX�/�>Y�EX�/�>Y���9���01.#"#.'##>32	0=�Sw
jN�
$0>'!�<.?�
 J##I!��*$>.A�3��c�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	��01###73753�R��^��\�sR���%�n����:�/�/�EX�/�>Y�+�9���013>32#54&#"#�@8$94@$'@�}E!A>��*'��w��4�EX�/�	>Y�
+����ܸ�013#"&'73265#7"&54632��
 6(-" / ��F��2&
.+(r��N6�/�EX�/�	>Y�+�9���0133>32.#"#�6B'#
=@FK',
6(2�R�F!Z�/�EX�/�	>Y�EX�
/�
	>Y�EX�/�	>Y���и
��� �0133>?33>?3#'.'##R@%	$3%$<CM#"JF�--��--����-,��|�FA�EX�/�	>Y�EX�	/�		>Y�+�9���017326?33>?3#"&'7�%�@E	<>�<5
	
�#@�//���3@1���^|�����^�������
�
+�+012654&#56'�3,,3EHHE*#"*$>45>��h�
�+�
+01"3&546h3++3EHHE�*"#*$>54>���=������=�����_��EX�/�>Y��013#�f8�����Y������=������=m����_B�+01#3_f8�@���?������Jn�����������2�����C������;�������(�EX�/�>Y�+���0133267#"&5#đ"62Q�� 2<86���N-+�*+�+�*9�90132654.'.54632.#"#"&'�7%(& +"G@$?-&!,#IF+LS
(5(

)9��FK�/�/�EX�/�	>Y�EX�/�	>Y�9��и�
и�01'33>?3#'.'##fD+&DhoE/
	+C��BB��FF�=m��+013#�ZZ?є�=���+01#73*?ZZ=��=���+��ܸ�013#'##	Fa?CC?єcc�C��'�+��ܹ�
�01>323273#".#"#�+(	/+(	/C0=6/>7�Y��
�+013#����9�?���	+�	�ܸ�01".'332>73,!/ 3&%3 /?'/ 3/'�Jn�
�+01"&54632,&&&&J"##"�L���+��и��01"&546323"&54632��L        �)��+��ܹ�01>54'7 S	BH(O'0)&
����+��ܸ�01"&54632'2654&#",)44))44)3**22**3%�;���+��и��013#73#IX7�HX7ʏ���=���+��ܸ�013373#�?CC?aF�cc�l;���+��и��01#'3#'3�7XIM7XH;����!Z��+���01632#"5467Z3&+�#E#?� _��
+���0167#"&54632�62&+@.E#>#��e�+���01>54&'7#**;

'4�
 (�n��
�+01"&54632,&&&&�"##"��7����+��и��01"&546323"&54632����(p���+��	ܹ�01'>54&'73.(5(10#" 
(&�+p�+��иܹ
�01%3'>54&'5#(5(1!5  
)�2��EX�/�>Y�
+014673327#"&�.: $.&4y)@7
)+��2���
�	+01".'332673, /3$##$3/�%-//-%��U���
�+01#53����:���N#9�/�+�
+�!+�
9�� �01467.#"'>32#'##"&732675�fm'4H(?=49 +<?"+QCY58,
+H?�%2/R	%���� T�/�EX�/�>Y�+�+�9�9���� �013>32#"&'##732654&#"�@5BD(522@((4'.),�}8YK)A- K
?93=(���� T�
/�EX�
/�
>Y�+�+�9�9�����014>32'53#'##"&73275.#"�(5+@55?LB.*+(&'5�'?,6y�,%XQ7=(�>���N !�+�+�
+014>32#3267#".74&#"�+9DH�=/*;##<-�+(#7�'?,SE17
)+?B-00-�r�NAMd�EX�%/�%	>Y�?+�"H+�7	+�B0+�	79��
и0�2ии%�(�01732654&+"&'475.54675.54>323##"';2#"&72654&#"�326?%#;65
#/�R".?G@>0D*FO�((((�%( 
)+0)"$))-�&  ((  &���S�/�/�EX�/�>Y�EX�/�	>Y�
9�
��	9�	��013373#'#�@�G|�GkF@�Π�˜CU��NT�/�/�/�EX�/�	>Y�+�+�9��и���0133>32>32#54#"#54#"#�2!1
$"%=5 =F*740��3.��3����N�+�+014>32#".732654&#"�+9  9,,9  9+B1++11++1�(?++?((?++?(5@@54AA��NT�/�EX�/�	>Y�	+�+�	9�	9�����017#33>32#"'732654&#"�@46AD(5/.((4'.'.�k�$YK)A-%.
?93=(����I�EX�/�	>Y�EX�/�
>Y�
+����и�	�01#5?33#3267#"&5�MP5��"-
0H80ZZ3�**.J=���FA�EX�/�	>Y�EX�/�	>Y�+�9���01#'##"&=3326753�49%74@#)@3!A>��*&���F
3�/�EX�
/�
	>Y�EX�/�	>Y���0133>?3#�B=	>=vJF�00������N�+�+014>32.#"3267#".�/="#2 !0<:0(; #=,�(?+)
A45@
)+?���8�/�EX�/�	>Y�+��	�
и��01.#"3###5754632�"*$��?OOAE-�*#3��0:G��F	4�	/�EX�/�	>Y�	��и���017#5!3!�ս���&�3"�3��U�%�&)����<���&I���U�U%�&)����<�U��&I���5��&,'��H� 6�&L���O�	�&-���]��&M���O�2	�&-���]�2�&M�
�����&1�.��Q��&Q�G��C�&1&'��.��Q�p&Q'�����G����U�&1�.��Q�U�&Q�G��Q��&2���<�,�&R���S5&3)��]�&S���S��&3���]��&S�
��S�U�&3���]�U�&S�
��d�)�&7������&W����d�)&7&'������&W&�*����d�U)�&7���M�U�&W����C��5&8)��H���&X���C��&8�
��H��&X�
��*�.�&9���E�"n&Y�O��*�U.�&9���E�U"n&Y�O��
N2&<#��P�&\���
N2&<$��P�&\���
N-&<*��P�&\���&25&>)��1�/'�&^���A��&?���G��&_���E��"@&Y����O��3�*h�EX�/�
>Y�EX�)/�)>Y�EX�/�>Y�! +�	! 9����%�%9014>32#"&'732654./7.#"#O9X;NbuXR-?(4S03,0&?1v9,DLU�2W?$TF�bH'C1(!5?2*$
6�"0Y^�`��&22&>#��1�/'�&^���&�2�&>���1�"'�&^����&2h&>+��1�/'�&^�	��&23&>&��1�/'�&^�P� 
�+01!!P��H H�D 
�+01!!0�� H�^|��+01632#"&5467|/5'* '3LD�O4( #*?9Kw#�^���+01>7#"&54632�05 '* (2LC�O5' #+@9Kv#����|�����_^��&��s��g^��&��s��g��|'����s���s���
+01%".54>32,6))66))6s'6!!6''6!!6'�4���+01757ř''�P�#��"�4���+01%'7'R'��'��#�P�" <p�+01?'7�!��!�M��#������������*�/�EX�/�	>Y���ܸ�013##7"&54632��@��F��r����������������������������������������� ����l�C!����llC"���N:�/�/�EX�/�	>Y�+�9���0133>32#54&#"#�57%85@$'@F0!A>��*'�����K���W���Wa��W����W���W����K���W����W���W����K���W����K���W����W���W����K���W����K�� �W�����!�W���l�"�W���N!�+�+�+014673.#"'>32#"&73267��3/*;#GV)7 CM9-)'/�	/5)XQ'?+T>001/`��"�	7��EX�&/�&>Y�EX�/�>Y�й���&�	�и	�
и�и�и�ܸи�и&�#и&�%ܸ�)�%�*и)�,и�3и�4и4/01%.#*#7.'#7.546?33273.'>7!>
'>A$#&#T6&
&DNvg&&-1
<#7G
�dLs!(0ccm|#�q��gbgr /�#N�4��EX�/�>Y�EX�/�>Y�+���и����	и�и� ��'и�(и�-и�.�01%!5>=#573.'#57.54>32.#"3#3#�;?=|WaP7M0>U0;*BEξ	��%&GG2_9,-%*D0+ /A4#115F/'~	/��EX�'/�'>Y�EX�+/�+>Y�EX�/�>Y�EX�/�>Y�'�ܹ
�и
�ии��и��'���и�и�и�и�"и
�#и�&и�)и-�015#3#3/5#'3'#3##'##5#575#57533533�ZD7>�H;C5HHTapAJJJJTfkAH=.+��;&f��<+����&<%����*+*~!c�EX�/�>Y�EX�/�>Y�+�+����
и�и�и� �01267#3.##+##575323EN��NE*@%<M-EOKK�-N;%@.:9sl;1�,A*��3�'?-m"�/V�EX�/�>Y�$+�����$�ܸ)и�/�+и/�.�017!!.#"3267#'##"&54>32'5#5353yz��-)944�N:>'L[1?!'5��G11y +>Ex,�S+a\)B/S"1CC:��6�1m�EX�/�>Y�EX�/�>Y�("+�(�+�и(�	и"�и"��и���.�01%#"&'#57&45<7#57>32.#"!!!#32676&\>b�@;;@�j3X1;&JZ&���XE+AQ,1�v+		,v�-!/!bW1
	0U`$#+*~
4��EX�//�/>Y�EX�%/�%>Y�	#+�/��й�ܹ��и�и�и�'и�*и�+и�.и�3�01>54&'#27#3.##3#+##575#575323��;p!��G6*A@H
)8F'EOKKKK�NsJ�
	;tKK?"h	
)"1!�y$;%x7AT���*u�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�*'+��ܸ�ܸ���#�01%#5.54>753.#"32675#53CX<2T<! ;T4<.O1;&,C/-A* :t�=>	dd2TtHFsU3ec,.!%Db<>bD%�E`��"�%{�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�EX�
/�
>Y���
��
�ܸ�ܸ�!и�"�017#5.54>753.'>7JHMMH�!O354V>"!=W55/O12 "6E�lp�
&0dc1TvIGtT4a`+/��#l~p�EX�/�>Y�EX�/�>Y�EX�/�>Y���иии��и�й
�
и
/01#3##'#53267!573.+5!�!+IG]I�^�YOS`��L�]LO�M5#1LX���C:<,.&D8��~$]�EX�/�>Y�EX�/�>Y�� 9� �#ии �иии�и�017>54&'7'575575377�%NA)E:f�OhhhhT����B)='
?^>050H041ǞV5VHV4W�U+i
�+01!!U��Ri>�� <p�����=(�EX�/�>Y�+���01"&54632'2654&#",=NN==NN= ..  ..XONTTNOX29<<55<<9�a1�EX�/�>Y�+01%#5>73#"R!)2?�*����=,�EX�/�>Y�
+����017>54&#"'>323#�NS&';$6>!,��$;N! !#52'')5����=$<�EX�!/�!>Y�+�	+�!��	901732654#52654&#"'>32#"&'�1#`*'(=#/;8 'F3#CQ3&&,(7&-0��18�EX�	/�	>Y�+�
+��и�
�01%57###5#5733N-6�29��G2t8RAI+IIɽ����1D�EX�/�>Y�+�	+���	9��
�01732654&#"'73#632#"&'�-%$��
 2>F6*<Q�6F300:����=&F�EX�/�>Y�#+�+���#9��	�01%2654&#"7.#">32#"&546328#,o+4-34+;NUE,&&"�
;95*&QGV[��1&�EX�/�>Y�+��	�013>7#53#�
$�� (
A'A;:5$#??D(����=8<�EX�4/�4>Y�%+�4��49�%901732654.'7>54&#"4675.54>32#".�')/W,r'*2A!%"-.!P
<n %/%!%!  ����=$F�EX�!/�!>Y�	+�+�!9���!��0173267.#"3267#"&54632#"&'�#,*2-33@3;NUE-�&$�995*,<QGV[���
�+017467.�72.-((-.27�Ko2!-c;;c- 1o��l�
�+01%'>54&'7l72.-((-.27�Ko1 -c;;c-!2o��_2�+013#�^XE2p���2�+01#73>EX^�p���2�+��ܸ�0173#'#�`P`CCC�ppDD���3+�+��ܸ�и���01".#"#>3232673h .,$ .,�/=.>���
�+013#���9���2�	+�	�ܸ�01".'332673,,2""""2,�(''(��e5
�+01"&54632,!!!!����-�+��и��01"&546323"&54632�����h�+��ܹ�01>54'7 S	BH(�'0)&
���k�+��ܸ�01"&54632'2654&#",)44)(55(�/)(00()/$���2�+��и��017373#�BMS�MT;�pppp���2�+��ܸ�01#'337�`P`CCC2ppDD�+k�+��иܹ
�01%3'>54&'6#(5(1!5  
)�L�+�+��и�и�ܹ�01"&546323"&54632'3#���L�/����+�
+�
�ܹ��и
��013#"&546323"&54632���&��.��L�7%�+�
+��и
��013#"&546323"&54632IOg:!�7g�����)�
+�
�ܸܸ�и
��013#"&546323"&54632R[pD#��o|�L�7+�+��ܹ��и��013373#"&546323"&54632�=??=[F3�7@@g�����+�+��и�и�ܹ�01"&546323"&546327#'337��`P`CCC��ooDD�L�7)�
+�
�ܸܸ�и
��01#'3"&54632#"&54632a:gOs��g�����)�
+�
�ܸܸ�и
��01#'3"&54632#"&54632_Dp[|�Go�$A��+01'3
;$�9����+��	ܹ�01.54>7H3.(4'1$! 
)&>.e�&�"A�$`��	�	
�'�$:	,	E	u	L�		�2	*�	�:	4]		�	2�	
#�#	H9�Typographic alternatesTypographic alternatesSource Code ProSource Code ProRegularRegular1.017;ADBE;SourceCodePro-Regular;ADOBE1.017;ADBE;SourceCodePro-Regular;ADOBESource Code ProSource Code ProVersion 1.017;PS Version 1.000;hotconv 1.0.70;makeotf.lib2.5.5900Version 1.017;PS Version 1.000;hotconv 1.0.70;makeotf.lib2.5.5900SourceCodePro-RegularSourceCodePro-RegularSource is a trademark of Adobe Systems Incorporated in the United States and/or other countries.Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.Adobe Systems IncorporatedAdobe Systems IncorporatedPaul D. HuntPaul D. Hunthttp://www.adobe.com/typehttp://www.adobe.com/typeCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.



This Font Software is licensed under the SIL Open Font License, Version 1.1.



This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL



-----------------------------------------------------------

SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007

-----------------------------------------------------------



PREAMBLE

The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.



The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.



DEFINITIONS

"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.



"Reserved Font Name" refers to any names specified as such after the copyright statement(s).



"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).



"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.



"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.



PERMISSION & CONDITIONS

Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:



1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.



2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.



3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.



4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.



5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.



TERMINATION

This license becomes null and void if any of the above conditions are not met.



DISCLAIMER

THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.

This Font Software is licensed under the SIL Open Font License, Version 1.1.

This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL

-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.

The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the copyright statement(s).

"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.

"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.

5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
http://www.adobe.com/type/legal.htmlhttp://www.adobe.com/type/legal.html��2:	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������	����������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�����

��� !"��#$%&'()*+,-./012��3456789:;<=>?��@ABCDEFGHIJKL��MNOPQRSTUVWX��YZ[\]^_`abcdefghijkl�mnop��qrstuvwxyz{|}~����������������������������������������������������������������������������������������������������������������������������������������	

������������ !"#$%&'()*+,-./01234�56789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXNULLCRuni00A0uni00ADtwo.sups
three.supsuni00B5one.supsAmacronamacronAbreveabreveAogonekaogonekCcircumflexccircumflex
Cdotaccent
cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve
Edotaccent
edotaccentEogonekeogonekEcaronecaronGcircumflexgcircumflex
Gdotaccent
gdotaccentuni0122uni0123HcircumflexhcircumflexHbarhbarItildeitildeImacronimacronuni012Cuni012DIogonekiogonekJcircumflexjcircumflexuni0136uni0137kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146NcaronncaronnapostropheOmacronomacronuni014Euni014F
Ohungarumlaut
ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacuteScircumflexscircumflexuni015Euni015Funi0162uni0163TcarontcaronUtildeutildeUmacronumacronUbreveubreveUringuring
Uhungarumlaut
uhungarumlautUogonekuogonekWcircumflexwcircumflexYcircumflexycircumflexZacutezacute
Zdotaccent
zdotaccentuni0180uni018Funi0192OhornohornUhornuhornuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCGcarongcaronuni01EAuni01EBuni0218uni0219uni021Auni021Buni0237uni0243uni0250uni0251uni0252uni0254uni0258uni0259uni0261uni0265uni026Funi0279uni0287uni028Cuni028Duni028Euni029Eh.supsj.supsr.supsw.supsy.supsuni02BBuni02BCuni02BEuni02BFuni02C8uni02C9uni02CAuni02CBuni02CCl.supss.supsx.supsuni0300uni0301uni0302uni0303uni0304uni0306uni0307uni0308uni0309uni030Auni030Buni030Cuni030Funi0312uni0313uni031Buni0323uni0324uni0326uni0327uni0328uni032Euni0331a.supsb.supsd.supse.supsg.supsk.supsm.supso.supsp.supst.supsu.supsv.supsc.supsf.supsz.supsuni1E0Cuni1E0Duni1E0Euni1E0Funi1E20uni1E21uni1E24uni1E25uni1E2Auni1E2Buni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute	Wdieresis	wdieresisuni1E8Euni1E8Funi1E92uni1E93uni1E97uni1E9EYgraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9	zero.supsi.sups	four.sups	five.supssix.sups
seven.sups
eight.sups	nine.supsparenleft.supsparenright.supsn.sups	zero.subsone.substwo.subs
three.subs	four.subs	five.subssix.subs
seven.subs
eight.subs	nine.subsparenleft.subsparenright.subsuni0259.sups
colonmonetarylirauni20A6pesetadongEurouni20B1uni20B2uni20B5uni20B9uni20BAuni2215	zero.dnomone.dnomtwo.dnom
three.dnom	four.dnom	five.dnomsix.dnom
seven.dnom
eight.dnom	nine.dnomparenleft.dnomparenright.dnomuni0300.capuni0301.capuni0302.capuni0303.capuni0304.capuni0306.capuni0307.capuni0308.capuni0309.capuni030A.capuni030B.capuni030C.capuni0327.capuni03080304uni03080304.capuni03080301uni03080301.capuni0308030Cuni0308030C.capuni03080300uni03080300.cap	uni030C.a	uni0326.a���m�U����PKCH[�՞�w�wXshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttfnu�[��� DSIGw�GPOS��,K�GSUBV.TL�OS/2ٮ�iM�`cmapRԟ�NP�cvt '��m`8fpgm�zAm�	�gaspmXglyf*~ʙS8�Bhead��e��|6hhea���$hmtx[�`���TkernlBjT�,l�loca�.�V,maxp<
�X< name�$�X\^post:�]i��prep�x9�w,�
0JDFLTlatn����kernkernJnv�$R�
�^�	h
B
l�&��rj����Z���j��L��*|�DV�:�� �!.!�##L#�$4$~%�&J'$'�(�)�*�+f+�,6,�-�.(.�/t/�/�0:0|2"2�33T3�3�4&4l4�55b5�66L6�6�7B7�7�888�9d9�9�:&:�:�;@<�=�>j?,?�@hA�B�CzD�E�F�G*G�HfI�K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��JK	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J-�
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x��'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���-�
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x��k0	�x
0
0�@���@�x����"0#��$�x&��*��-�h2��4��D��F��G��H��I��J�xP��Q��R��S��T��U��V��W��X��Y��[��\��]��l0m��o��r0t:u:w��y��{:|0}����x��x��x��x��x��x��x����������������������������������������������������������������������������������������������x�����������������0�0�@�0�0�@����0��x)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J
�jm�jo�jy�j}�j�j�j�j�j�j)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������4	�|�L�L�|����"$�|-�:F��G��H��P��Q��R��S��T��U��X��w����|��|��|��|��|��|��|����������������������������������������������������|���������L�L��|	��������$��������������������������������1��#��&��*��2��4��F��G��H��I��R��T��W��Y��Z��\��m��o��y��}�������������������������������������������������������������������������������I��
��
��6�:6"��#��&��*��2��4��7�T9�J:�h<�,?�JF��G��H��R��T��Y��Z��\��l��m�:o�:r��t�6u�6y�:{�6|��}�:�����������������������,�����������������������������������������������,�:�:�����6�����6�:�:�:���)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������.	�v���v$�v-�JD��F��G��H��R��T����v��v��v��v��v��v��v����������������������������������������������������������v������������v)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������#��&��*��2��4��7��8���������������������������������������[	�|�L�L�L�|�`�`#��$�|&��*��-�82��4��D�F�.G�.H�.J�DP�`Q�`R�.S�`T�.U�`V�^X�`Y�LZ�t[�p\�L]��m�Lo�Lw�`y�L}�L��|��|��|��|��|��|��|�������������������������������������.��.��.��.��.��.��`��.��.��.��.��.��.��`��`��`��`�|����.�.�`���.�L�L�L�L�L�L�L��|	��������$��������������������������������k0	�x
0
0�@���@�x����"0#��$�x&��*��-�h2��4��D��F��G��H��I��J�xP��Q��R��S��T��U��V��W��X��Y��[��\��]��l0m��o��r0t:u:w��y��{:|0}����x��x��x��x��x��x��x����������������������������������������������������������������������������������������������x�����������������0�0�@�0�0�@����0��xI0	��
0
0��������""$��-��D��F��G��H��J��R��T��V��l0m��o��r0t0u0y��{0|0}�����������������������������������������������������������������������������������������������0�0��0�0��������0���1��#��&��*��2��4��F��G��H��I��R��T��W��Y��Z��\��m��o��y��}�������������������������������������������������������������������������������i	�\

�h�`�h�\����""#��$�\&��*��-�82��4��D��F�`G�`H�`J�TP��Q��R�`S��T�`U��V��X��Y��Z��[�|\��lm�`o�`rt2u2w��y�`{2|}�`��\��\��\��\��\��\��\��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������\�����`�`�����`�`�`���h���h�`�`�`���\0��""#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J��
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������D
D
D�~�~lDrDtdud{d|D�D�D�~�D�D�~�D��
��
��Y��Z��\��l��r��t��u��{��|���������F��G��H��R��T����������������������������������������������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������
�|�|D��������������������������|�|$	���|�|��$��F��G��H��R��T��������������������������������������������������������������������|�|�����������F��G��H��R��T��������������������������������������������$	���|�|��$��F��G��H��R��T��������������������������������������������������������������������|�|���"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J	�H�H$�H9:::<(?:��H��H��H��H��H��H��H�(�H�(��H	�H�H$�H9:::<(?:��H��H��H��H��H��H��H�(�H�(��H'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���	�H�H$�H9:::<(?:��H��H��H��H��H��H��H�(�H�(��HK	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J
�jm�jo�jy�j}�j�j�j�j�j�j)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������	��������$��������������������������������	��������$��������������������������������	��������$��������������������������������	��������$��������������������������������i	�\

�h�`�h�\����""#��$�\&��*��-�82��4��D��F�`G�`H�`J�TP��Q��R�`S��T�`U��V��X��Y��Z��[�|\��lm�`o�`rt2u2w��y�`{2|}�`��\��\��\��\��\��\��\��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������\�����`�`�����`�`�`���h���h�`�`�`���\)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|��������������������������������������������������������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������J��
��
��Y��Z��\��l��r��t��u��{��|���������
�jm�jo�jy�j}�j�j�j�j�j�j��
����
��9��:��?��@��Y��[��\��`��l��r��|��������� �t
�t
�t��9�^:��<�h?�^Y��\��l�tm��o��r�tt�|u�|y��{�||�t}����h�h���t�t�t�t�����t��
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������i	�\

�h�`�h�\����""#��$�\&��*��-�82��4��D��F�`G�`H�`J�TP��Q��R�`S��T�`U��V��X��Y��Z��[�|\��lm�`o�`rt2u2w��y�`{2|}�`��\��\��\��\��\��\��\��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������\�����`�`�����`�`�`���h���h�`�`�`���\0��""#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������0��""#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������0��""#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��JK	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J-�
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x��K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��JK	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J-�
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x��'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���'�N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N���K	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J6�J
�J
�J��"��#��&��*��-22��4��7�|8��9�x:��<�\?�xY��\��l�Jm��o��r�Jt�Hu�Hy��{�H|�J}�������������������������������������\�����\�����J�J�J�J��������Jv

#$&')-./2345789:;<=>?DEHIKNPQRSUYZ[\^lmoprtuy{|}��������������������������������������������������������������
8�DFLTlatn����case&case,liga2liga8sups>supsD,>B	

@LO,{tuCjqv�������I�xx�x���P`KtyPL@�J�z��� ��� �&
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a���������������������������������rdei�x�pk�vj���sgw�����l|����cn���m}�b�������������������y���������������������q���z���`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ-��%59=J@GBhf[[		QCQ
D=<($#*$
+>32#'&>54&#"#"'4632#"&!!7!!�9DO.?gI)-60#z-70 I9)8(c>0((0>���22c��u&#@[87P;+&%iu"3+(.:(3<��/@)(?��g6,����
!&@#QCSD

+#.54>32#".�	y	+!..""..!���-VW[44[WV-<��."".-""-����
,@)	BQD

$+#"&/!#"&/3���ޛ ## �"�ޛ ## �"6Q�>BH@E
Y	CQ
C
DBA@?>>86530/*(##!#!+#"&5467#+#"&546?3#7>;>;3323+32%3#TQ G�G-OU��A�
$'�H+PT�TO!I�
%&�A�	���A���Y"Z��%�9FJf"�Z���K��9�Fj�$g8CN~@J( I>)
?4BK�	PX@$hfSCSD@$hfSCSDY�#&#&+.'7>32.54>?>;#".'+4.'>�y�H50FaD%F�kA9m�h
Bi�<+):L1!H�pE<s�kB�%@V1"AeE#��"<P/A_=aKR&1.5U�aI�lE��
R:B!!�4R{\Z�xK��2H4&�-F]�0G6(�(<KH����'1EY�K�PX@'[	[SC		S
DK�"PX@+[	[SC
C		SD@/[	[CSC
C		SDYY@
VT((%#&((($
+#".54>324.#"32>>;+#".54>324.#"32>�4Wt?DsV00VsDCuU1�1A%%A00A%%A1�
���
�54Ws?DsV00VsDCtV0�1A%%A00A%%A1?T�[00[�TV�\00\�VB\;;\BA[99[w��
RT�[00[�TV�\00\�VB]::]BAZ99ZR��x�?K�@8IH+%BK�PX@*hSCS
CS
D@(hSCS
CSDY@FD/-(&" 	??+2#"&'.#">7>;#"&/#".54>7.54>3267�O�_7o
1E.2P9"6&�&-nFB,�$�^��P�yJ/SrD=:5d���0Nd4p�D�Yjk�3To<8. 9M-#@AE&�]C�Js�a���[j6g�]F}jTM�NI�_7��AcD#RD�9���3�
@	BQD

$+#"&/3��ޛ ## �"����
(+.54>7!nhOKiAAiKO
imu�m�0s���zy���t1��lJ����	(+4'&546?'.54676*mi
OKiAAiKOhnu���1t���yz���s0��`_��0J@-)($ BK�PX@QD@MQEY@
00+5467'767./7.=3>?'.'b!�,�$%#�,�#	X�,�!!�,�_�"cKdeKd %��)cKdeKd!'�d�"�,@)MYQE+!!#!5!���i��k���U��R���^��P�@?S
D$+74>32'&547>7#".^,/0G-

 
*{)'3-a_Z&
%0:!!-dR�@MQE+!!d���X��Q�@SD($+74>32#".X!..""..!n."".-""-����	@kD#"++>;�7KY
0!K#"� "<��L�'@SCSD((($+#".54>324.#"32>LQ��mn��PP��nm��Q�7]zBBz\77\zBBz]7̼��XX����XX��켤߈;;�ߤ�ވ;;����*@'BhCR
D&+%!47#"&/3!!4�
	8�����,-�
	Mq��h$�3;@8/BhSCQ
D,*$"
33+2>3!2!5467>54.#"#"&/>Y[�sB0Rk<��(R&�"�D�9^C$(F^66\G1
 ]P{��6g�^P�}u=�~
"l=(�:klo??_> 9N/b�f5l��.�JU@RF
Bhh[SCSDCA;910/.&$JJ	+2#".'763232>54.#5>54.#"#"&/>l[�o>#A\9��K��cr�pHL(DeKKqK&Q�p[�R%'D]66\G0 ]P{��4`�SDkQ8%��c�o;9d�P 		I@,1N`/:`F(�&B\8>\< 9O.b�f5(`�&@#B[C
D!#+3+#!"&/3467!�����������f��y[���< �;l����.@@=,+Bh[QCSD(#&(""+#!632#".'763232>54.#"'!�09�>Bp_p�t;P��m?tdV!63HaCKxU.'OvO6t>pt�K&1��Bt�]r��F*6L&0Y|MClL*!�l��2�.2@/B[CSD+)!	+2#".5467>;>32>54.#"�V�tDH��ml�|CT[k2 ��3|��(MoGHtS-,PpCHtQ+n9m�fc�~HE�p^�z���#'�LErR-.RpBFqO*1Smn<�@QC
D$'++>7!"&=<��
.'Z
��P",�S%�*y`��&�3GD@AB[SCSD54! ?=4G5G+) 3!3	+".5467.54>32'2>54.#"2>54.#"Ck��F��qs>r�ba�r>tp��G�kFoM)1Sl;;lS1)MoFFc>!Aa@@aA!>c9j�^��&*�tO�f::f�Ot�*&��^�j9�'Gc<JiBBiJ<cG'�+G\12XB&&BX21\G+�6�32@/B[SC
D0.&$	+".54>32+>74.#"32>%Q�nAF~�hg�xA,='��
0��&7�+Li?BmM*'IiAHoL(L6i�c^�zFDz�g>oji8�;4,.�CmL)+Lj?DkJ&/Nf���y�';K�$PX@SCSD@[SDY�((($+74>32#".4>32#".�!..""..!!..""..!n."".-""-	."".-""-���y�2D�?K�$PX@SCS
D@[S
DY@	/-%#$+74>32'&547>7#".4>32#".�,/0G-

 
*!..""..!{)'3-a_Z&
%0:!!-�."".-""-���W�(+��?--�����
�
�
������!@YMQE+!!!!�[��[��>�և���W�(+75467%>7.'%.=��++�?�
�
�
�oJ"����(<9@6BhfSCSD(&#-$+>32#'54>54.#"#"'4>32#"."KYg<O�b8-ERG3z-EOE-":O-=W<%�!..""..!4(.TxKLnS=66!��*A99EX<+F1$��."".-""-V�OQaf@c
X
7Bh[

[	[OSGSR[YRaSaGE;9530.&$QQ
+%"&'#".54>3232>54.#"3267632#"$&54>32%2>7&#"�Nb
:�N<X;A��}Ce-])1XC'Y��z��dk�����U
k�ﭭ���}7d���l\���_5=k��?;1L'.K}Z3B�KNQF)Id:U��X��K1$/
8f�W�ЋEf�������XB3	BHRn�,�mʯ�g9(Ns��kl��Lx2VA'	?f�EHW
I�
$@!BZC
D# +!#"&'!+3!&'I� ��}�"�=���
Z����{G6Q)E���*=@:B[SCS
D*(" !+3!2#!2>54&#%!2>54&#!�Ʉ�{;!CeD��C��x��6SwM$����RxO&�����4`�W5bTB��[�l;��
&E_9o��$@[6~vZ��	�.D@ABhfSCSD)'..+2#".546$32#".#"32>76�
LX�����bi�	���Y?
(6Jb@s��MM��i@fWK&(
Sfrk����kbTY

 O�҂�ґL 1"���@SCS
D!(!$+#!!24.#!!2>�f��������f�H��s��Us��H̡���g�g�����АL��L���!�.@+YQCQ
D+!!!!!!�P-��������$�����!�	(@%YQC
D		+!!!#!�PL����������Z��@�4K@H!
Bh[SCSD,*%#44+%2>7#"&=!#"$&546$32#"'.#"-:aVL&��6u��Y����ig��U�}j.7>YySyĊJM���<n��':'k����j/C*X(%O�т�ՔN�8� @YC
D+!#!#3!38�������t������@C
D+!#3����<����QK�PX�B�BYK�PX@CSD@hCSDY�!&$+#"'>7>3232>53�;s�mai<2BgG%��x��F9(T�Z��:�"&@#
B[C
D)(% +3267>;#".'.+#3�I&-�) ���%*:��!X��%�� 
	$�Y
	9�p����@CR
D+%!!3pl��£�����#%@"BhC
D!6)+>7>;#467+"'#32o

�
���--�
��
�53q
�g0��--�2���
���8�@C
D!+2.53#"&'#3>�b���d�
��1��g70��\����'@SCSD((($+#"$&546$324.#"32>�f��������ff����f�H��ts��HH��st��H̡���kk�
��
�ll��ґNN�҄�ёMM����*@'[SC
D
!+#!2#'32>54&+����ɄAF�ȁ��SV,������?t�ed�xC�,OnB��\��$�0s�BK�	PX@kSCSDK�PX@SCSCD@kSCSDYY�(((%&+#"&'#"$&546$324.#"32>�)NpFp�$8�9{C����ff����f�H��ts��HH��st��H�e���/�sk�
��
�ll��ґNN�҄�ёMM�����#2@/B[SC
D#!,!+#!2#"'.#'32>54&+����Ɓ>0[�S$��5��((��U�W,���V���7h�[L�iJ(��)�)Kh?��:����==@:=BhfSCSD;9(&#!#"+#".#"#"&'7>3232>54.54>32�	-EaEAdC";a{�{a;@{�r��Q86QsSElK(;`{�{`;;p�kx�J�")"#<Q/<O8),7TzY^�zFeV\-6-&E`;AS8')6V�_L�nBLH~� @QC
D+!#!5~�1�/���
������#@ CSD+%2>53#".53�Y�a3�O�Ԅ�ԔO�3a��<l�Zg��|ԛXX��|g��Z�l=G�@BC
D, +32>7>;#� �	�"������
"P++P"��g��( @#BC
D+< +32>7>;2>7>;#&'#�"(
	Q#8!O
)#��A���		�����>""?��4C!<��gE)%����@BC
D("(!+	3267>;	#"&'+��'�va	��%�����	���
���P�Y����@BC
D,"+#32>7>;���HG	�:��:_��#>>"-V��
$@!QCQ
D

+!!547!5���2��,���H"���Lv������
'@$[OQE

!#+!+32�p����F��F����	@kD# +32#"&'L!0
YK8
�" �'"#Z����
!@[OQE!"+46;#"&=!!Z��p���3F�����@
BkD+!+3#"&'.'+sf��
����z`+,+�����[@MQE+!5��xx&���	@kD		+2#"&'�! �f���
\��z)9}@!/BK�PX@'h[SCS
D@+h[SC
CSDY@+*10*9+9%##' 	+!#"&/#".54>754&#"#"&/>322>75zO (LT_:;gL-B��ecAYA/ T�vU�Z.�2/NE?{�l1,<^$9'!BeE<oV7Ovy!)!9QP8d�U��#2 �2D*(:%����%�@	BK�	PX@CSCSDK�"PX@CSCSD@!CSC
CSDYY@%%(#+33>32#"&'#"32654.��?�iX�d6<q�fb�3	&QW�70uH��#B`���IYB��~p��QLD\&wPI�B6ʻc�[*J��*i@
*BK�	PX@$hfSCSD@$hfSCSDY�($#(#"+#".#"32>32#".54>32E#6M8JrM'*LmDAT8$2B�n_�xE?y�sj�?A5d�X\�a3&AQKF��|q��NE?H����%p@BK�"PX@CSCS
D@!CSC
CSDY@%%+!"/#".54>323%267.#"[&
A�lW�d6<q�g]�4��=W�71uG��"B`%{O_C��~p��Q?92�?�PI�B5ʻc�[*J���$-{�BK�	PX@'h[SCSD@'h[SCSDY@&%)(%-&-
	$$	+2#!32>32#".54>"!4.#[�p?�^0TtHCaF/2!\ip7i��HAz�r��'"B_=s�l*`�_/$A(;&G�ʃj��M���>gK)��]@
BK�2PX@SCQC
D@YSC
DY@
4%+3'.=354>32+"!!�p�1[�PD: .K6%��]
IbW�]0Y6XA]���2���9M]�@2A*BK�PX@,
[[CS	CSD@/h
[[S	CSDY@ONWUN]O]JH@>#!99+2!#"'#".5467.54>7.54>4.'32>2>54&#"�Bs/*s"9e�SG? !:`zz`:Az�oo�n7_S+3!0 KU9f��*H^hl19G#HmJHrO*��6S8qlkq8RB!	APJyV..$%	2XFAz_9,Ja5KiC8/.**�]JyU.��&.N6";+0BN6K-]nn]-K6���-@*BCSC
D##+33>32#4&#"��A�gSU,�ilO�:���ES7e�V�{�sLA����GK�	PX@SCC
D@SCC
DY@

+##".54>32X��#.-##-.#���>-##-/##/�����(Y�	BK�	PX@SCCSD@SCCSDY@%#U%+#"&'7>323265#".54>32X EmL!6
NB�#.-##-.#���=iN-

`
IQ@>-##-/##/���0@-B[CC
D%(%!+3267>;#"&'.+#K.@���
����2����W�s
��
���X�@C
D+#X���?���*V�)BK�PX@SC
D@CSC
DY@**##&$!	+332>32>32#4&#"#4&#"�j&

8�\gEVa2P}W.�hc,O<#�b^Bq/�%hEXra7P43b�\�{�w{<[<�{�zxG=�
��L�BK�PX@SC
D@CSC
DY@#$!+332>32#4&#"�j&
B�kSU,�ilO�:�%nIZ7e�V�{�sLA�H��#NK�	PX@SCSD@SCSDY@##	+2#".54>2654&#",o�}CC}�oo�~DD~�o����LpK%%KpJ��wx��II��xw��J�xɴ��4b�ZZ�a4���%�@BK�	PX@SCSCDK�PX@SCSCD@!CSCSCDYY@%%($!+32>32#"&'"32654.�j&
A�mW�d6<p�f^�3W�71uH��#B`��L%xO`C��~p��Q>9�@�PI�B6ʻc�[*H���%�K�PX@B@BYK�	PX@SCSCDK�PX@SCSCD@!CSCSCDYY@%%(#+##".54>32763267.#"Ų@�iW�d6<q�gb�6
&��W�70vG��"B`����JZC��~p��QF@O%��PI�@7ʻc�[*��lK�PX@B@BYK�PX@SC
D@hCSC
DY@!$%!+332>32#"&#"�f4�g*D:4]}*��jw�lg�{>��<=@:<BhfSCSD:8'%" #!+#".#"#"&'7>3232>54.54>32�&7L4-H3-J^c^J-2b�]j�<*(9Q=4N4-J_c_J-0\�Vd�:N(5'4&!(<W=FwW2E6D
".<"*7' )>[A:kQ0?7,���>!t@
	BK�2PX@$jhQCTD@"jh[TDY@
!!+"&5#"&=7>;!!32>32�x�z�)Z"��>1)4.��~lG9�����@>U+1z����L�BK�PX@CS
D@C
CSDY@$!#+32673#"/#".5,jkN�:�j&
B�jSV+��zs~JB�%mIY7d�V���@BC
D, +32>7>;#���c���t$H##H$����. @'BC
D*!,< +32>7>;2>7>;#"'.'+���M�	�����
�

����t$C""C$��p#D!!H��"�/0�R"��@BC
D("(!+	3267>;	#"&'+����	�
���c���
��
��@����������@BCD,""++32>7>;�	���^�	
	�������,,}FU�@QCQ
D+!!5467!5!U��)�
'����#�&�J
#ߌ,���@3@0$B[[OSG86303++4&#52654.54>;+";2#".54>�FCCF)S{R5MY)7!!7)YM5R{S)�?QkP@2bbd4EtT.OeV8hcb2&A3%		%4@%2bch8WdP/TtE4ccb�p�@QD+3#把���X��,�@5@2B[[OSG?>=<1/,)3)++546;2654.54>7.54>54&+"&=323"�*R{R5MY)7!!7)YM5R{R*FCCF�2bcc4EtT/PdW8hcb2%@4%		%3A&2bch8VeO.TtE4dbb2@PkQt�9@6jkO[SG
+2673#".#"#4>32�AI�%Ef@4f_V$AI�%EeA4f_VeUFCpP, '!TGCpP-!'!���
!&@#SCQD

+4>734>32#".	y	�"--""--"��-UW\44\WU-���-""-."".���.7�@32&*BK�	PX@)jhfTCSDK�PX@)jhfTCSD@)jhfTCSDYY@	##'#+.54>?>;#".'>32+1\�q?B~�wBR�6.!-?*4?U;&0<�kB�y4LsN'
O��ro��Q��?1>�"	?HJ���9c�4[�>@@=7+Bh[SCS
D%&#&'%"	+46;4>32#"&'.#"!#!>3!#!5>5#4 �6n�nNy^EH

)3B-?`@ ��{929��<">0��$^�{G'DZ4./#*NnD��H�Km-Ls
"3E.!��`#7?@<!B
@ ?WSD42*((+467'7>327'#"&''7.732>54.#"�!�[�,h:9f+�Y�"!�[�,h99e,�Y�"�#>Q//S=$$=S//Q>#�9e,�Z�"!�[�,g:9f+�\�"!�[�,g:.Q=$$=Q./R>##>R,S�"8@5
B
Z	YC
D"! ,!+!32>7>;!!!!#!5!5!�2�h�
!��g3��T�����T��q(��#:;"6��fig��;gi�p�@YQD+3#3#把�������r����HZA@>HXN=#BhfWSDFD-+(&!#!+#".#"#"&'7>3232>54.5467.54>32>54.'1&7L40M51OfifO1NT1>2a�\j�<)(:U?2O62RhnhR2V]2?0\�Vd�:��Fm�>604FOT(B6�*8&9/+.7G\=Q&%bEFwW2E6D
#->&-B3*,3F]@N}#&iK:kP0>7��3G95K/$8.&##I�V{'3K� PX@
SD@OSGY�((($+#".54>32#".54>32� )(() g))))	((**((**D����.Jb�@
BK�	PX@4hf[[		SCSD@4hf[[		SCSDY@
_],,*(#%(%"
+>32#".54>32#".#"32>4>32#".732>54.#"=9�tb�s?Ez�bl�9.2L;FqO++Lj>0B0%�R4_���ee���_44_���ee���_4d,Rr��X��c-Rs��X��b�@BIDz�de�yCD7A-TxKMyR+	e���`44`���ed���`44`���eY��tS-d��Y��vS.e��\?T�)5E@B!-Bh[WSD+*/.*5+5%##' 	+#"&/#".54>754&#"#"&/>322675T<.28"&A0&X�k:9&2%4yI6T:��3J$Fa<4H1 )<)"C5#%?<
*1."<T3��&#i#*"���)�)(+55��:
�
�:/�:
�
�:�
��
��
��
��
��
�;��=K�	PX@_MQE@kMQEY�+!#!�\��;�X!dR�@MQE+!!d���D����3IV��>BK�	PX@/h		[
[SCSD@/h		[
[SCSDY@44VTLJ4I4H)!*,,&+4>32#".732>54.#"#!2#"'.#'32>54.+D4_���ee���_44_���ee���_4d,Rr��X��c-Rs��X��b� ��kj�!�	Pt7M/+F4��e���`44`���ed���`44`���eY��tS-d��Y��vS.e���|}z^�
��.
r(:&%8$�RD@MQE+!!>��DuF'��'@WSD((($+4>32#".732>54.#"F2XwEEwX22XwEEwX26I**H66H**I6hCvW22WvCBuW33WuA*I66I**J77JdP"�7@4YYMQE
	+!!#!5!!!���i��k��k��B������p�x�%�R�Qe-9@6+Bh[SD(&" 
--+2>;2!546?>54&#"#"&/>Z4U<!*6�/��
�, <-.9	G�e6M/(E>:�M+
�455370*jjT|Re=S@P9Bhh[[SD640.*)('==	+2#".'763232>54.#5>54&#"#"&/>b3R; wBE*E[09T=+7+ / 'A/WG:009	C,ATe3D(�-N>7T91H/
 (+W<424/(5O5��U�	@kD	#++7>3U�j�! ���
�z����3@0BCS
CD&$!#+32673#"/#"&'#"&5,liN�:�j&
C�WJp'Y&)��nmxJB�%mHD3.*W&��($*�7�*@'hiSD+##!#".54>3۝��h�u??u�h���7�7]=i�QV�e8|���@OSG($+4>32#".|)68((86)Q8((86))6����
�K�PX@
B@
BYK�	PX@^TDK�PX@jTD@jjTDYY@+232654.'73#"&'76� *+)<&+pZQ 9P0)J�	!�PE6 3$7x�D_O�	BK�$PX@jjQD@jjMRFY�$+37#"/733!��k	'�l��i��+X	8��zUH<��)@&WSD	+2#".54>2654&#"~FqP,,PqFGrQ,,QrGTSSTWSS�+PsGHtQ++QtHGsP+��iddhhddi��
�%�%(+7'&54767&'&54?%'&54767&'&54?�:
�
�
:�(�:
�
�
:�

�{�{

f|� &0O@L$	Bh		Z
[CS
D0.+)&% $!#
+3+#5!"&/3%37#"/733!4673+>;m
Rm��
V|���k	'�l��i��,L2. MA��9�;�+X	8��zU�,���\ f]�-=Ge@b710+Bhh		Z[CS

DGEB@=<;:9853/.(&" 
--
+2>;2!546?>54&#"#"&/>%37#"/733!+>;f4U<!*6�/��
�, <-.9	G����k	'�l��i�,L2. M�6M/(E>:�M+
�455370*jj3�+X	8��zU�v\ D}�NT^x@uJ	
%RB

h		h
	
	[[
\SCS
D^\YWTSGEA?;:980.)'!NN!#+3+#5!"&/32#".'763232>54.#5>54&#"#"&/>4673+>;m
Rm��
V|�B3R; wBE*E[09T=+7+ / 'A/WG:009	C,AT���,L2. MA��9��3D(�-N>7T91H/
 (+W<424/(5O5�\,���\ ,��)=9@6BhfSCTD('#-$+#".54>?332>324>32#".KXh<O�b8-ERG3z-EOE-":O-=W<&�q!..""..!�4(,RvKLjL601!��,>2/<P;,E1$."".-""-��
I�&$	k��
I�&$k��
I�&$
v��
I�&$v��
I�&$
v��
I-&$s����:@7BYYQCS
D#	+!!!!!!!+!���</��=a��1�Գ%���^���$�������)EZ��	�K2K�PX@:>
IB@:>
IBYK�	PX@0hfSCSC	SDK�
PX@0hfSCSC	SDK�PX@0hfSCSC	SD@7hf	hSCSCSDYYY@GE=<861/'% KK
+232654.'7.546$32#".#"32>7632#"&'76� *+)<&$��Vi�	���Y?
(6Jb@s��MM��i@fWK&
LS�ZQ 9P0)J�	!vu����kbTY

 O�҂�ґL 1"
Sap7E6 3$7���!�&(	7���!�&(7���!�&(
B���!�&(
B������&,	������&,�����{�&,
����x�&,
2��!,@)YSCS
D!%(!+3!2#!#%4.#!!!!2>2���ff��������H��t��}��Ut��H�g��������g�2�АL�r�L����8�&1���\����&2	���\����&2���\����&2
���\����&2���\����&2
�~�X�	(+		'	7	���b_����_d��_YX�����`b��`dY`��X\����!-8h@21&%BK�PX@kCSCSD@jkSCSDY�)*%(%$+#"&'+&546$327>;.#"4&'32>�f����l�Od:N�p{f��s�SR  d�gp�AKE�<�Ws��H�A<�qt�t��H̡���k10�b ��
�l:6o�b�꫇�I�*+N�҄~�H��FM��������&8	�������&8�������&8
�������&8
�����&<9��.@+[[C
D!+#332#'32>54&+����ɄAF�ȁ��SV,��������?t�ed�xC�,OnB�����v�HwK�PX�B�BYK�PX@hSCSD@#hSC
CSDY@CB=;%# HH+2#"&'7>3232>54.54>54.#"#4>�g�b/+@K@+5P]P59d�Oa�<)(7K5,F18TbT8-CNC-8Y?DoO+�E���<]n3<VB203 '4-/FfNNzU-E6D
".@%8F3*:SB5O?6<G0 A4!*T~T�&�h�zB��\��z�&DC���\��z�&Dv���\��z�&D����\��z�&D����\��z{&Dj���\��z�&D��\��CQ\�@A;BK�	PX@5hh

[S	CSDK�PX@5hh

[S	CSD@?hh

[S	CSCSDYY@&SRXWR\S\MKED?=8631.-%#
	CC+2#!32>32#"&'#".54>754&#"#"&/>32>32>5"!4.�R�g;��.MiAE\=&/!Wcj4u�7Wjw;ErS-B��ecAYA/ T�qx�!6���{�l1dQ9cI*�=`E)�<W@z�p)[�Z,$	=(;&qt>X8#FjH<t\;2v~#*#9QPf[Xg��#8H*WP$JnJ�)NpFAoP-J��H�K�PX@7;
FB@7;
FBYK�PX@-hffSCTD@3hfffSCTDY@DB42/-%# HH	+232654.'7.54>32#".#"32>32#"&'76� *+)<&%S�f:?y�sj�?/#6M8JrM'*LmDAT8$2;�aZQ 9P0)J�	!yO��qq��NE?@5d�X\�a3&	AHJ:E6 3$7��J����&HC���J����&Hv���J����&H����J���{&Hj�������&�C����(�&�v�����6�&�������){&�j�L���4H6@3:0B43@[SD65@>5H6H.,$"+.54?.'.54?7#".54>32.'2>7.#"�g-e9`�Q�#a<cF'>{�xb�}H>t�hd�Au^�_GsQ.4Kc>KqL'.Pi)
H"><0z9
C1|��n��VB{�p^�~JVW��@���6m�o+Q?%2WwDQV-�����&Q���H���&RC���H���&Rv���H���&R����H���&R����H��{&Rj�d�"�++@([YOSG(((%+!!4>32#".4>32#".d��Bb!--""--!!--""--!��."".-""-�S."".-""-@��-I!+5t@43%$BAK�	PX@ jkSCSD@ jkSCSDY@
-,,5-5%%(%'+#"&'+7.54>327>;&#"2>54'�=BC}�oL�67;C�BFD~�oO�8D  Z��;�IoLtO(7KsO(4�OFtD�vx��I" J�E�|w��J&#[���aN86d��$5d�Z�`��0��z����&XC���z����&Xv���z����&X����z���{&Xj�������&\v�����#q@BK�	PX@!CSCSCD@!CSCSCDY@##(#+3>32#"&'"32654.��?�iW�d6<p�f_�3W�71uH��#B`����JYB��~p��QE?�3�PI�B6ʻc�[*�����{&\j�
����'/�K�PX@
,B@
,BYK�PX@!ZC
C	SD@(	hZC
CSDY@)($"
''
+2#"&5467"&'!+3#32>!&'d	]3XeO< ��}�"�=�=%*"1*
�?�
�BOB:e&Z����g'/&+	�G6Q)E\���CS�@;I	BK�PX@1h		[SC
SCSD@8hh		[SC
SCSDY@EDKJDSES%##.%#'+!32>32#"&54>7&/#".54>754&#"#"&/>322>75z*"1*
	]3Xe'5
(LT_:;gL-B��ecAYA/	 T�vU�Z.�2/NE?{�l1,<'/&+	BOB83- ^$9'!BeE<oV7Ovy!)!9QP8d�U��#2 �2D*(:%��Z��	�&&���J���&Fv����4�&�K�PX�B�	BYK�PX@*YQCQ
C	
SD@1
		hYQCQ
C		SDY@#!
&&+2#"&5467!!!!!!#32>	]3XeO<�Zs�P-���[*"1*
�BOB:e&���$���'/&+	J���<E�K�PX@
-B@
-BYK�PX@2h		[SCSC
SD@9h
h		[SCSCSDY@>=A@=E>E97+)&$ 
<<+2#"&5467.54>32#!32>3232>"!4.�	]3XeB4g�~FAz�n[�p?�^0TtHCaF/22�R'!1*
���'"B_�BOB5]%H�ȁj��M=s�l*`�_/$A<G&.&+	U��>gK)�X�@C
D+#X����,�#@ 
BCR
D+%!!54?3����l�һ��%ā��"�*_�
V�6K�#@ 
BC
D+7#54?���������MfC��LiD���8�&1������&Qv\��'�02@
BK�PX@"YS
C	S
DK�"PX@,YSCQ
C	S
DK�,PX@6YSCQ
C	Q
C	SDK�0PX@4YSCQ
C	Q
C	SD@2YSCQ
CQ
C		SDYYYY@-+#!(#+!!!!!5#".54>3254.#"32>'�P-�����T����\\�ꎡ�T@w�hh�xAAx�hh�w@���$����x�k�
��
�l�y�3�ӔOO�ӄ�ӓNN��H��u0@K�@.
BK�	PX@,h

[
	SCSD@,h

[
	SCSDY@$BA21GFAKBK:81@2@,*" 
	00+2#!32>32#"&'#".54>32>2654.#""!4.�R�g;��.MiA=Y@-3!Wcj4w�76��d�u@@w�f��52�����"DhEGhE"�e=`E*�<W@z�p)[�Z,$A(;&swpzI��xw��Jyni~�xɴZ�b44b�Z��)NpFAoP-��:����&6��>���&Vv���:����&6��>���&V������&<
D��V��&=N��FU�&]v���V�&=X��FU�&]����V��&=X��FU�&]��j����#6@3
BYSCTD###"+#5432>7'.=37>3#"!�Y��<-Q?,Y����.Q@-	B�&͹^9:\D�I�ƿb:]D���d�
@BkD' +#"/+3dw��{ߦ�~~	�d�@BkD+ +32>?>;#{��wߦ�
}	

}	�����RDq �D� @WD
+".5332>532MhA~"9++9"~Ai�+Ib7!9((9!7bI+����@SD($+#".54>32�#.-""-.#:-""-/##/jk��=K�PX@WSD@[OSGY�$&($+4>32#".732654&#"j 7H()I8  8I)(H7 d6/-77-/6#*D22D*)D00D),88,-88����
YK�PX@B@@B@YK�PX@
SD@jSDY@+2#"&54>732>�	]3Xe+;"\*"1*
�BOB;6/
'/&+	�Y�QK�.PX@WSD@O[SGY@
+2673#".#"#4>32�$'l/A(#=60Ho0B'#=6/-*,/O8"X0O9"^���	#@ SD




	#++7>3!+7>3��J�
!!��V�!������
�0����!Y�BK�(PX@SCS
D@SC
CSDY@! 6##++#!#"&'7>3265#54>3����sy�"BB9�	�H$��r��w�K	>B|@
�
��@MQE+!!� �����
��@MQE+!!�2����:�'��(+.5467rYP7
�0a0Z�E"
,16 D&
Z�F��(+'.547>54&'&547YO7
�0`0[�E"
-16 D&Z��F��(+%'.547>54&'&547YO7
�0`0[�E"
-16 D&:�W�1�(+.5467.5467rYP7
�YP7
�0a0Z�E"
,16 D&
,0a0Z�E"
,16 D&
Z�v�1�(+'.547>54&'&547%'.547>54&'&547YO7
�YO7
�0`0[�E"
-16 D&,0`0[�E"
-16 D&Z��v�1�(+%'.547>54&'&547%'.547>54&'&547YO7
�YO7
�0`0[�E"
-16 D&,0`0[�E"
-16 D&v���3@0
	BCSCD#$&"+4632632>72!#"'!v)+"LPP'(57&N�E,(�x&75(�w�0	
��0<�`��	�v���/G@D
	%$ B[C	SCD/.$$#$&"
+4632632>72!!#.'#"'"&=!!v)+"LPP'(57&N�E,(�x�(,E�N&75(N�E+)��w�0	
��0<��<0��0<X����,K�PX@SD@OSGY�($+4>32#".�;d�LM�e;;e�ML�d;SM�e;;e�MM�d;;d�X��V�';@SD((((($+74>32#".%4>32#".%4>32#".X!..""..!!..""..!��!..""..!n."".-""-."".-""-."".-""-H����'1EYm��K�PX@+[	[SC
		S

DK�"PX@/[	[SC
C
		S
D@3[	[CSC
C
		S
DYY@~|trjh`^VT((%#&((($+#".54>324.#"32>>;+#".54>324.#"32>%#".54>324.#"32>�4Wt?DsV00VsDCuU1�1A%%A00A%%A1�	���
�54Ws?DsV00VsDCtV0�1A%%A00A%%A1h4Wt?DsV00VsDCuU1�1A%%A00A%%A1?T�[00[�TV�\00\�VB\;;\BA[99[}
��
RT�[00[�TV�\00\�VB]::]BAZ99ZAT�[00[�TV�\00\�VB]::]BAZ99Z�����(+5��:
�
�:�
��
��
�����(+'&54767&'&54?�:
�
�
:�{

�D#�	@C
D#"+'+>;,L2. M5\ "��r�G[@X	5	Bh		h
[	[SC
S


DGF@?>=9720"###%$+3>32#".#"!#!!#!32>32#".'#53&45467#"�_��l��F=%>aK�� #���j��6R<+ KFЏt��W����~ˏLdXD	
&.&�7(8�� % FfqO�Ӄf)@I)�&C@@BhS	CS	D&&!4)
+>7>;#7+"'#32'###5��	jn	�
�nj�~�U/
��mK��MH��P
i��iV~�71@.1BSCS
D76***+!>54.#"!"&=!5.54>32!#DQ�c7E{�dd�{E7b�Q�$�`�l;c���c;m�`�$�Ag�]k�m88m�k]�gA�J#d�`��e�֚VV�րe��`�d#\��2�*>C@@0Bh[SCSD,+64+>,>#'(($+>32#".54>32>54&#"#"&'2>7.#"\'INV3Z�h9I�ݔV�h:L��ph�0�|*G8*
xBw`G
&>W:T�X- <U9*J�ʀ���9k�_sʔVYV%C����7p�s,S@&>m�WAfF%b�@	BCR
D+3!%!.'`�S��M��				��g��:"";>���$@!QCD+##!##5���������W��W�T���&@#BQCQD+!!!!5467	.5T��e=����Q	
u�����;4�;�A�
�\��@MQE+!!�\���.��"@
Bj[
D,# +#"&=!2>7>;#�)O�	�s�֕�!)9�e D"8G�P:� �';OL@IK-B[
	O
	SG=<)(GE<O=O31(;);	''+%".'#".54>32>32%2>7.#"!2>54.#"�8[MAAL\7>qU22Uq>7\LAAM[8>pV22Vp�O$>7227>$$?00?�$?//?$$>8228>�";L**L;"0Y|LL|X1";L**L;"1X|LL|Y0�5E''E4/H00H//H00H/4E''E5����\�#(@%BSCSD6''"+>32#"#"&'7>32>7v��&E do�
Ac�K#J
	 :W=%C��V	
mv��f�_-
L
;]B�~��7�@0!/"BK�	PX@+[[	O[	SGK�PX@$[[	WSD@+[[	O[	SGYY@42+)&$77

+2>7#".#"'>322>7#".#"'>326."	#p=4ge_-8."	#qB5hd_-6."	#p=4ge_-8."	#qB5hd_Zr/.!(!
m31!)!��
q0.!)!m31!(!���~kK�PX@)^_	ZMQE@'jk	ZMQEY@

+!733!!!#7!5!7!��r�r��_��2w�w��K_�V���ȇ�����P��!@@MQE+!!��G.32�����yz�
�z{�
��P��!@	@MQE+5467%67.'%.=!5!��)81�G��J��z�
�z�������"@
BMQE+3	#>7	&'��|��z|�	��
�5���4��&&EF+#&�����@CD+3#�����!a@BK�2PX@SCQC
D@YSC
DY@!!U%+3'.=354>32#"&#"!#!�p�:t�s&O��d��T]
I8]�p>

]
��3�`������BK�&PX@SCQC
DK�2PX@"CSCQC
D@ YCSC
DYY@A!%	+3'.=354>32;#.#"!!�p�4h�hS�Hd�6m(����]
I6T�pB
�Y*��6��������
@SD


+2+h
>1P
2H4��
��	@ja		+2#"&'%�  Ӌ���
����v�'@OSG((($+#".54>32#".54>32�)'')�((((�''))''))D'"�@MQE+!!D�"�j�
��@ja
#++7>3�����
���
��
x�@Bja* +#"&/&'+73x�	��	��
__���
x�@
Bja,!+#'32>?>;���	��	�
�^^�J�
(@%jOSG


+"&53326533��sNVVNs��sr;==;i|��@OSG($+#".54>32�"-,!!,-"�,!!,,"",v��-!@[OSG$&($+4>32#".732654&#"v3D&'E55E'&D3Y6/-77-/6{'B//B'&@..@&+99+-88V�1@.O[SG
+2673#".#"#4>32�#%b*>(#@;4"%d+?'#@:4)%+H5+$+I4N
��	+@(OSG




	#++7>3!+7>3��V�&!��`�( ��
��
��|��
@SD


+2+� 
>9�
!;ZBG���C�_<��ʓ^p�ӡ�D���-	��V	�D�C�'-�����6�j$H~R��X�XJ `�d�^�d�X���<���h�l�(�l�l�n�`������������"lVP
�ZZ����l��Z��f�x<R��0���<\��<\�$:���P���VX���XZ��f&�\^��J^HJ��2X�������j�X�XHP�^H&�d>�,Xz���FX,X�XX�t������4���,X��rf<D�\�����d<DfF�d�R�Tf�Xz:*"|f��x�H���f�f�D,P
P
P
P
P
P
B��ZZ��������f��f�f��f��*2��<\<\<\<\<\�~<\��������������\�\�\�\�\�\`\�JJJJJ�������RLX�XHXHXHXHXH�dX@XzXzXzXzP�P
�\ZZ�J��J�>,�6��X��\�HH:d>$:d>��V�F�V�F�V�F�jffff f�fjf�ff^�0X�j��:�Z�Z�:�Z�Z�v�v���X	Hx�x�f�D�"�@�V�\pX>XT��z.X: ��������������t�f�f��f��fDf�f��f��ff�fvffNf�l�#`�	�J��N��J#��$�J&��*��2��4��90:0<?0D��F��G��H��R��T��m�No�Ny�N}�N��J��J��J��J��J��J��J��������������������������������������������������������������������������������J��������������N�N���N�N�N��J
	�J
�
�N
�
�J
#��
$�J
&��
*��
2��
4��
90
:0
<
?0
D��
F��
G��
H��
R��
T��
m�N
o�N
y�N
}�N
��J
��J
��J
��J
��J
��J
��J
���
���
���
���
���
���
���
�
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�J
��
��
��
��
��
��
�
�N
�N
�
�
�N
�N
�N
��J#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������
	�J
�
�N
�
�J
#��
$�J
&��
*��
2��
4��
90
:0
<
?0
D��
F��
G��
H��
R��
T��
m�N
o�N
y�N
}�N
��J
��J
��J
��J
��J
��J
��J
���
���
���
���
���
���
���
�
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�J
��
��
��
��
��
��
�
�N
�N
�
�
�N
�N
�N
��J�
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x���N	��
�N
�N�x�x��$��7�L9��:��;��<�`=��?��l�Nr�N|�N�����������������������`���`�������N�N�x�N�N�x��N����
�
��x#��&��*��2��4��7�L9�L:��<�h?�LY�|Z��\�|l�m�xo�xr�y�x|�}�x�����������������������h�����h�x�x�����x�x�x��0	�x
0
0�@���@�x����"0#��$�x&��*��-�h2��4��D��F��G��H��I��J�xP��Q��R��S��T��U��V��W��X��Y��[��\��]��l0m��o��r0t:u:w��y��{:|0}����x��x��x��x��x��x��x����������������������������������������������������������������������������������������������x�����������������0�0�@�0�0�@����0��x#��#	��#
��#��#
��#��#��#��#$��#7��#9��#;��#<��#=��#?��#@��#`��#l��#r��#|��#���#���#���#���#���#���#���#���#��#��#��#��#��#��#��#��#��#��#��#���#���$�J$
�J$
�J$��$"��$#��$&��$*��$-2$2��$4��$7�|$8��$9�x$:��$<�\$?�x$Y��$\��$l�J$m��$o��$r�J$t�H$u�H$y��${�H$|�J$}��$���$���$���$���$���$���$���$���$���$���$���$��\$��$��$�\$��$��$�J$�J$�J$�J$��$��$��$��J&�j&m�j&o�j&y�j&}�j&�j&�j&�j&�j&�j'��'	��'
��'��'
��'��'��'��'$��'7��'9��';��'<��'=��'?��'@��'`��'l��'r��'|��'���'���'���'���'���'���'���'���'��'��'��'��'��'��'��'��'��'��'��'���'���)	�|)�L)�L)�|)��)��)")$�|)-�:)F��)G��)H��)P��)Q��)R��)S��)T��)U��)X��)w��)��|)��|)��|)��|)��|)��|)��|)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)�|)��)��)��)��)�L)�L)��|-	��-��-��-��-$��-���-���-���-���-���-���-���-��-��-��-���.��.#��.&��.*��.2��.4��.F��.G��.H��.I��.R��.T��.W��.Y��.Z��.\��.m��.o��.y��.}��.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.��.��.��.��.��.��.��.��.��.��/��/
��/
��/6/�:/6/"��/#��/&��/*��/2��/4��/7�T/9�J/:�h/<�,/?�J/F��/G��/H��/R��/T��/Y��/Z��/\��/l��/m�:/o�:/r��/t�6/u�6/y�:/{�6/|��/}�:/���/���/���/���/���/���/���/��,/���/���/���/���/���/���/���/���/���/���/���/���/��/��/��/��/��/�,/�:/�:/��/��/�6/��/��/�6/�:/�:/�:/���2��2	��2
��2��2
��2��2��2��2$��27��29��2;��2<��2=��2?��2@��2`��2l��2r��2|��2���2���2���2���2���2���2���2���2��2��2��2��2��2��2��2��2��2��2��2���2���3	�v3�3�3�v3$�v3-�J3D��3F��3G��3H��3R��3T��3��v3��v3��v3��v3��v3��v3��v3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3�v3��3��3��3��3�3�3��v4��4	��4
��4��4
��4��4��4��4$��47��49��4;��4<��4=��4?��4@��4`��4l��4r��4|��4���4���4���4���4���4���4���4���4��4��4��4��4��4��4��4��4��4��4��4���4���5#��5&��5*��52��54��57��58��5���5���5���5���5���5���5���5���5���5���5���5��5��7	�|7�L7�L7�L7�|7�`7�`7#��7$�|7&��7*��7-�872��74��7D�7F�.7G�.7H�.7J�D7P�`7Q�`7R�.7S�`7T�.7U�`7V�^7X�`7Y�L7Z�t7[�p7\�L7]��7m�L7o�L7w�`7y�L7}�L7��|7��|7��|7��|7��|7��|7��|7���7���7���7���7���7���7���7��7��7��7��7��7��7��7��.7��.7��.7��.7��.7��.7��`7��.7��.7��.7��.7��.7��.7��`7��`7��`7��`7�|7�7��7�.7�.7�`7��7�.7�L7�L7�L7�L7�L7�L7�L7��|8	��8��8��8��8$��8���8���8���8���8���8���8���8��8��8��8���909	�x9
09
09�@9��9�@9�x9��9��9"09#��9$�x9&��9*��9-�h92��94��9D��9F��9G��9H��9I��9J�x9P��9Q��9R��9S��9T��9U��9V��9W��9X��9Y��9[��9\��9]��9l09m��9o��9r09t:9u:9w��9y��9{:9|09}��9��x9��x9��x9��x9��x9��x9��x9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9�x9��9��9��9��9��9��9��9�9�9�09�09�@9�09�09�@9�9�9�9�09��x:0:	��:
0:
0:��:��:��:��:"":$��:-��:D��:F��:G��:H��:J��:R��:T��:V��:l0:m��:o��:r0:t0:u0:y��:{0:|0:}��:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:��:��:��:��:��:��:��:�0:�0:�:�0:�0:�:��:��:��:�0:���;��;#��;&��;*��;2��;4��;F��;G��;H��;I��;R��;T��;W��;Y��;Z��;\��;m��;o��;y��;}��;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;��;��;��;��;��;��;��;��;��;��<<	�\<
<
<�h<�`<�h<�\<��<��<""<#��<$�\<&��<*��<-�8<2��<4��<D��<F�`<G�`<H�`<J�T<P��<Q��<R�`<S��<T�`<U��<V��<X��<Y��<Z��<[�|<\��<l<m�`<o�`<r<t2<u2<w��<y�`<{2<|<}�`<��\<��\<��\<��\<��\<��\<��\<���<���<���<���<���<���<���<���<���<���<���<���<���<���<��`<��`<��`<��`<��`<��`<���<��`<��`<��`<��`<��`<��`<���<���<���<���<�\<��<��<�`<�`<��<��<�`<�`<�`<�<�<�h<�<�<�h<�`<�`<�`<�<��\=��=""=#��=&��=*��=2��=4��=F��=G��=H��=R��=T��=V��=Y��=\��=m��=o��=y��=}��=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=��=��=��=��=��=�=�=�=�=�>#��>&��>*��>2��>4��>F��>G��>H��>R��>T��>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>��>��>��>��>��?�J?
�J?
�J?��?"��?#��?&��?*��?-2?2��?4��?7�|?8��?9�x?:��?<�\??�x?Y��?\��?l�J?m��?o��?r�J?t�H?u�H?y��?{�H?|�J?}��?���?���?���?���?���?���?���?���?���?���?���?��\?��?��?�\?��?��?�J?�J?�J?�J?��?��?��?��JD��D
��D
��DY��DZ��D\��Dl��Dr��Dt��Du��D{��D|��D�D�D�D�D���E��E
��E��E
��E9��E:��E?��E@��EY��E[��E\��E`��El��Er��E|��E�E�E�E�E���H��H
��H��H
��H9��H:��H?��H@��HY��H[��H\��H`��Hl��Hr��H|��H�H�H�H�H���IDI
DI
DI�~I�~IlDIrDItdIudI{dI|DI�DI�DI�~I�DI�DI�~I�DK��K
��K
��KY��KZ��K\��Kl��Kr��Kt��Ku��K{��K|��K�K�K�K�K���NF��NG��NH��NR��NT��N���N���N���N���N���N���N���N���N���N���N���N���N��N��N��P��P
��P
��PY��PZ��P\��Pl��Pr��Pt��Pu��P{��P|��P�P�P�P�P���Q��Q
��Q
��QY��QZ��Q\��Ql��Qr��Qt��Qu��Q{��Q|��Q�Q�Q�Q�Q���R��R
��R��R
��R9��R:��R?��R@��RY��R[��R\��R`��Rl��Rr��R|��R�R�R�R�R���S��S
��S��S
��S9��S:��S?��S@��SY��S[��S\��S`��Sl��Sr��S|��S�S�S�S�S���U�|U�|UD��U���U���U���U���U���U���U���U��U�|U�|Y	��Y�|Y�|Y��Y$��YF��YG��YH��YR��YT��Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y��Y��Y��Y��Y�|Y�|Y���Z��Z��Z��Z��[F��[G��[H��[R��[T��[���[���[���[���[���[���[���[���[���[���[���[���[��[��[��\	��\�|\�|\��\$��\F��\G��\H��\R��\T��\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\��\��\��\��\�|\�|\���^#��^&��^*��^2��^4��^F��^G��^H��^R��^T��^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��^��^��^��^��l	�Jl�l�Nl�l�Jl#��l$�Jl&��l*��l2��l4��l90l:0l<l?0lD��lF��lG��lH��lR��lT��lm�Nlo�Nly�Nl}�Nl��Jl��Jl��Jl��Jl��Jl��Jl��Jl���l���l���l���l���l���l���l�l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l�Jl��l��l��l��l��l��l�l�Nl�Nl�l�l�Nl�Nl�Nl��Jm�Nm	��m
�Nm
�Nm�xm�xm��m$��m7�Lm9��m:��m;��m<�`m=��m?��ml�Nmr�Nm|�Nm���m���m���m���m���m���m���m��`m��m�`m��m��m��m�Nm�Nm�xm�Nm�Nm�xm��Nm���o�No	��o
�No
�No�xo�xo��o$��o7�Lo9��o:��o;��o<�`o=��o?��ol�Nor�No|�No���o���o���o���o���o���o���o��`o��o�`o��o��o��o�No�No�xo�No�No�xo��No���p��p	��p
��p��p
��p��p��p��p$��p7��p9��p;��p<��p=��p?��p@��p`��pl��pr��p|��p���p���p���p���p���p���p���p���p��p��p��p��p��p��p��p��p��p��p��p���p���r	�Jr�r�Nr�r�Jr#��r$�Jr&��r*��r2��r4��r90r:0r<r?0rD��rF��rG��rH��rR��rT��rm�Nro�Nry�Nr}�Nr��Jr��Jr��Jr��Jr��Jr��Jr��Jr���r���r���r���r���r���r���r�r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r�Jr��r��r��r��r��r��r�r�Nr�Nr�r�r�Nr�Nr�Nr��Jt	�Ht�Ht$�Ht9:t::t<(t?:t��Ht��Ht��Ht��Ht��Ht��Ht��Ht�(t�Ht�(t��Hu	�Hu�Hu$�Hu9:u::u<(u?:u��Hu��Hu��Hu��Hu��Hu��Hu��Hu�(u�Hu�(u��Hy�Ny	��y
�Ny
�Ny�xy�xy��y$��y7�Ly9��y:��y;��y<�`y=��y?��yl�Nyr�Ny|�Ny���y���y���y���y���y���y���y��`y��y�`y��y��y��y�Ny�Ny�xy�Ny�Ny�xy��Ny���{	�H{�H{$�H{9:{::{<({?:{��H{��H{��H{��H{��H{��H{��H{�({�H{�({��H|	�J|�|�N|�|�J|#��|$�J|&��|*��|2��|4��|90|:0|<|?0|D��|F��|G��|H��|R��|T��|m�N|o�N|y�N|}�N|��J|��J|��J|��J|��J|��J|��J|���|���|���|���|���|���|���|�|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|�J|��|��|��|��|��|��|�|�N|�N|�|�|�N|�N|�N|��J}�N}	��}
�N}
�N}�x}�x}��}$��}7�L}9��}:��};��}<�`}=��}?��}l�N}r�N}|�N}���}���}���}���}���}���}���}��`}��}�`}��}��}��}�N}�N}�x}�N}�N}�x}��N}�����J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J��j�m�j�o�j�y�j�}�j��j��j��j��j��j����	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|����������������������������������������������������������������������������	������������$��������������������������������������������	������������$��������������������������������������������	������������$��������������������������������������������	������������$���������������������������������������������	�\�
�
��h��`��h��\�������""�#���$�\�&���*���-�8�2���4���D���F�`�G�`�H�`�J�T�P���Q���R�`�S���T�`�U���V���X���Y���Z���[�|�\���l�m�`�o�`�r�t2�u2�w���y�`�{2�|�}�`���\���\���\���\���\���\���\�����������������������������������������������������������`���`���`���`���`���`�������`���`���`���`���`���`������������������\��������`��`��������`��`��`������h������h��`��`��`�����\����	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|����������������J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J����
���
���Y���Z���\���l���r���t���u���{���|����������������j�m�j�o�j�y�j�}�j��j��j��j��j��j����
������
���9���:���?���@���Y���[���\���`���l���r���|����������������t�
�t�
�t����9�^�:���<�h�?�^�Y���\���l�t�m���o���r�t�t�|�u�|�y���{�|�|�t�}�����h��h������t��t��t��t���������t����
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|����������������	�\�
�
��h��`��h��\�������""�#���$�\�&���*���-�8�2���4���D���F�`�G�`�H�`�J�T�P���Q���R�`�S���T�`�U���V���X���Y���Z���[�|�\���l�m�`�o�`�r�t2�u2�w���y�`�{2�|�}�`���\���\���\���\���\���\���\�����������������������������������������������������������`���`���`���`���`���`�������`���`���`���`���`���`������������������\��������`��`��������`��`��`������h������h��`��`��`�����\����""�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}�����������������������������������������������������������������������������������������������������������""�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}�����������������������������������������������������������������������������������������������������������""�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}���������������������������������������������������������������������������������������������������������N�	���
�N�
�N��x��x����$���7�L�9���:���;���<�`�=���?���l�N�r�N�|�N�������������������������������`�����`�����������N��N��x��N��N��x���N������N�	���
�N�
�N��x��x����$���7�L�9���:���;���<�`�=���?���l�N�r�N�|�N�������������������������������`�����`�����������N��N��x��N��N��x���N�����	�J����N����J�#���$�J�&���*���2���4���90�:0�<�?0�D���F���G���H���R���T���m�N�o�N�y�N�}�N���J���J���J���J���J���J���J������������������������������������������������������������������������������������������������������������J����������������������N��N������N��N��N���J�	�J����N����J�#���$�J�&���*���2���4���90�:0�<�?0�D���F���G���H���R���T���m�N�o�N�y�N�}�N���J���J���J���J���J���J���J������������������������������������������������������������������������������������������������������������J����������������������N��N������N��N��N���J���
��
���x�#���&���*���2���4���7�L�9�L�:���<�h�?�L�Y�|�Z���\�|�l��m�x�o�x�r��y�x�|��}�x�������������������������������h��������h��x��x����������x��x��x����	�J����N����J�#���$�J�&���*���2���4���90�:0�<�?0�D���F���G���H���R���T���m�N�o�N�y�N�}�N���J���J���J���J���J���J���J������������������������������������������������������������������������������������������������������������J����������������������N��N������N��N��N���J�	�J����N����J�#���$�J�&���*���2���4���90�:0�<�?0�D���F���G���H���R���T���m�N�o�N�y�N�}�N���J���J���J���J���J���J���J������������������������������������������������������������������������������������������������������������J����������������������N��N������N��N��N���J���
��
���x�#���&���*���2���4���7�L�9�L�:���<�h�?�L�Y�|�Z���\�|�l��m�x�o�x�r��y�x�|��}�x�������������������������������h��������h��x��x����������x��x��x�����N�	���
�N�
�N��x��x����$���7�L�9���:���;���<�`�=���?���l�N�r�N�|�N�������������������������������`�����`�����������N��N��x��N��N��x���N������N�	���
�N�
�N��x��x����$���7�L�9���:���;���<�`�=���?���l�N�r�N�|�N�������������������������������`�����`�����������N��N��x��N��N��x���N������N�	���
�N�
�N��x��x����$���7�L�9���:���;���<�`�=���?���l�N�r�N�|�N�������������������������������`�����`�����������N��N��x��N��N��x���N�����	�J����N����J�#���$�J�&���*���2���4���90�:0�<�?0�D���F���G���H���R���T���m�N�o�N�y�N�}�N���J���J���J���J���J���J���J������������������������������������������������������������������������������������������������������������J����������������������N��N������N��N��N���J��J�
�J�
�J����"���#���&���*���-2�2���4���7�|�8���9�x�:���<�\�?�x�Y���\���l�J�m���o���r�J�t�H�u�H�y���{�H�|�J�}�������������������������������������������������\��������\��������J��J��J��J������������J������D��(\��8R|�� �Z� R�	@	�

*
N
t
���:��

:
�
�
�:���*z�>�&`��.d���8Tv��l�HP�Tn�"���`�N��*Z��N����  z � �!�!�"�# #j#�#�$n$�$�%%l%�&&X&�&�'('l'�'�(l))�*>*J*V*b*n*z*�*�+�+�+�+�,,, ,,,8,�,�,�,�,�,�,�,�-�-�-�-�-�-�..�.�.�.�.�.�.�/�0�0�0�0�0�0�0�0�11�1�1�1�1�1�1�2(2�2�2�2�2�2�3d3p44�4�4�5d6"6<6p6�6�6�7�8T8`8l8x8�8�8�8�8�8�8�8�9*9R9�9�9�9�:4:�:�;;x;�;�;�<<0<~<�==j=�>>p?~?�?�?�@~@�ADA�A�BBNBhB�C8C�D8D�D�EEHE^E�F8F`F�F�F�GG4GbG�G�G�H@HzH��b"/n�	�n���*��(��0�/	G
�V22J
�|>	X	l	t	T�	�	P�	�	`>	0�		�	
��	0
�	d
�	
�8	4�Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.LatoRegulartyPolandLukaszDziedzic: Lato Regular: 2013Lato RegularVersion 1.105; Western+Polish opensourceLato-RegularLato is a trademark of tyPoland Lukasz Dziedzic.tyPoland Lukasz DziedzicLukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLCopyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.LatoRegulartyPolandLukaszDziedzic: Lato Regular: 2013Lato-RegularVersion 1.105; Western+Polish opensourceLato is a trademark of tyPoland Lukasz Dziedzic.tyPoland Lukasz DziedzicLukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFL�tx	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�������	
�����
����������������������������������������������� !"#NULLuni00A0uni00ADmacronperiodcenteredAogonekaogonekEogonekeogonekNacutenacuteSacutesacuteZacutezacute
Zdotaccent
zdotaccentuni02C9EuroDeltauni2669undercommaaccent
grave.case
dieresis.casemacron.case
acute.casecircumflex.case
caron.case
breve.casedotaccent.case	ring.case
tilde.casehungarumlaut.case
caron.salt�������������V��������V�,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �Ead�(PX!�E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K�KRX��Y�c �#D�#p�E  �(`f �UX�%a�Ec#b�#D�*�*�*Y�(	ERD�*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPKCH[��>�q�qVshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttfnu�[���GPOS�jN�K�GSUBV.TL�OS/2�8�M�`cmapRԟ�N@�cvt &�7g|8fpgm�zAg�	�gaspgtglyf�i�S(��head�DeJ޼6hheaix��$hmtxESvJ�Tkern�2���ll�locaK�p�PP,maxp>
�R| name�
U�R�:post:�\�c��prep�x9�qH�
0JDFLTlatn����kernkernJnv�$R�
�^�	h
B
l�&��rj����Z���j��L��*|�DV�:�� �!.!�##L#�$4$~%�&J'$'�(�)�*�+f+�,6,�-�.(.�/t/�/�0:0|2"2�33T3�3�4&4l4�55b5�66L6�6�7B7�7�888�9d9�9�:&:�:�;@<�=�>j?,?�@hA�B�CzD�E�F�G*G�HfI�K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��VK	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V-�
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v��'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���-�
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v��k7	��
7
7�G���G������"<#��$��&��*��-�o2��4��D��F��G��H��I��J�{P��Q��R��S��T��U��V��W��X��Y��[��\��]��l7m��o��r7tFuFw��y��{F|7}���������������������������������������������������������������������������������������������������������������������������������������7�7�G�7�7�G����7���)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V
�em�eo�ey�e}�e�e�e�e�e�e)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������4	���L�L������"$��-�.F��G��H��P��Q��R��S��T��U��X��w�������������������������������������������������������������������������������������L�L���	��������$��������������������������������1��#��&��*��2��4��F��G��H��I��R��T��W��Y��Z��\��m��o��y��}�������������������������������������������������������������������������������I��
��
��4�$4"��#��&��*��2��4��7�[9�V:�y<�=?�VF��G��H��R��T��Y��Z��\��l��m�$o�$r��t�Bu�By�${�B|��}�$�����������������������=�����������������������������������������������=�$�$�����4�����4�$�$�$���)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������.	������$��-�VD��F��G��H��R��T�����������������������������������������������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������#��&��*��2��4��7��8���������������������������������������[	���L�L�L���`�`#��$��&��*��-�82��4��D�F�)G�)H�)J�>P�`Q�`R�)S�`T�)U�`V�DX�`Y�LZ�t[�g\�L]��m�Lo�Lw�`y�L}�L����������������������������������������������������������)��)��)��)��)��)��`��)��)��)��)��)��)��`��`��`��`������)�)�`���)�L�L�L�L�L�L�L���	��������$��������������������������������k7	��
7
7�G���G������"<#��$��&��*��-�o2��4��D��F��G��H��I��J�{P��Q��R��S��T��U��V��W��X��Y��[��\��]��l7m��o��r7tFuFw��y��{F|7}���������������������������������������������������������������������������������������������������������������������������������������7�7�G�7�7�G����7���I7	��
7
7��������"%$��-��D��F��G��H��J��R��T��V��l7m��o��r7t7u7y��{7|7}�����������������������������������������������������������������������������������������������7�7��7�7��������7���1��#��&��*��2��4��F��G��H��I��R��T��W��Y��Z��\��m��o��y��}�������������������������������������������������������������������������������i	�t

�y�`�y�t����"%#��$�t&��*��-�82��4��D��F�`G�`H�`J�[P��Q��R�`S��T�`U��V��X��Y��Z��[��\��lm�`o�`rt-u-w��y�`{-|}�`��t��t��t��t��t��t��t��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������t�����`�`�����`�`�`���y���y�`�`�`���t0��"%#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V��
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������K
K
K�y�ylKrKtdud{d|K�K�K�y�K�K�y�K��
��
��Y��Z��\��l��r��t��u��{��|���������F��G��H��R��T����������������������������������������������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������
����D���������������������������$	��������$��F��G��H��R��T��������������������������������������������������������������������������������F��G��H��R��T��������������������������������������������$	��������$��F��G��H��R��T������������������������������������������������������������������������"#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V	�`�`$�`9F:F<(?F��`��`��`��`��`��`��`�(�`�(��`	�`�`$�`9F:F<(?F��`��`��`��`��`��`��`�(�`�(��`'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���	�`�`$�`9F:F<(?F��`��`��`��`��`��`��`�(�`�(��`K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V
�em�eo�ey�e}�e�e�e�e�e�e)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|������������������������������������������������������	��������$��������������������������������	��������$��������������������������������	��������$��������������������������������	��������$��������������������������������i	�t

�y�`�y�t����"%#��$�t&��*��-�82��4��D��F�`G�`H�`J�[P��Q��R�`S��T�`U��V��X��Y��Z��[��\��lm�`o�`rt-u-w��y�`{-|}�`��t��t��t��t��t��t��t��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������t�����`�`�����`�`�`���y���y�`�`�`���t)��	��
����
��������$��7��9��;��<��=��?��@��`��l��r��|��������������������������������������������������������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������V��
��
��Y��Z��\��l��r��t��u��{��|���������
�em�eo�ey�e}�e�e�e�e�e�e��
����
��9��:��?��@��Y��[��\��`��l��r��|��������� �t
�t
�t�o9�j:��<�y?�jY��\��l�tm�oo�or�tt��u��y�o{��|�t}�o��y�y�o�o�t�t�t�t�o�o�o��t��
��
��Y��Z��\��l��r��t��u��{��|�����������
����
��9��:��?��@��Y��[��\��`��l��r��|���������i	�t

�y�`�y�t����"%#��$�t&��*��-�82��4��D��F�`G�`H�`J�[P��Q��R�`S��T�`U��V��X��Y��Z��[��\��lm�`o�`rt-u-w��y�`{-|}�`��t��t��t��t��t��t��t��������������������������������������������`��`��`��`��`��`�����`��`��`��`��`��`�������������t�����`�`�����`�`�`���y���y�`�`�`���t0��"%#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������0��"%#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������0��"%#��&��*��2��4��F��G��H��R��T��V��Y��\��m��o��y��}��������������������������������������������������������������������������'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��VK	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V-�
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v��K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��VK	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V-�
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v��'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���'�B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B���K	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V6�V
�V
�V��"��#��&��*��--2��4��7��8��9��:��<�t?��Y��\��l�Vm��o��r�Vt�`u�`y��{�`|�V}�������������������������������������t�����t�����V�V�V�V��������Vv

#$&')-./2345789:;<=>?DEHIKNPQRSUYZ[\^lmoprtuy{|}��������������������������������������������������������������
8�DFLTlatn����case&case,liga2liga8sups>supsD,>B	

@LO,{tuCjqv�������I�,xx�D���P`KtyPL@�J�z��� ��� �&
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a���������������������������������rdei�x�pk�vj���sgw�����l|����cn���m}�b�������������������y���������������������q���z���`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ/��'37;��BK�	PX@3	`f[[		QCQ
D@4hf[[		QCQ
DY@
;:$$#,$
+>32#'&>54.#"#"'4632#"&!!7!!3<G*6]E'!1:3%
A 1;2"/?#.B.{,! ,, !,����]#[��n$;S47O;-('rz/**5C/$8'�� ..  ..��y$?����
&@#QCSD

+#.54>32#"&tA1!""'5���-PS\88\SP-<��""!5��)�
,@)
BQD

$+#"&/!#"&/		u		��ܙ�$�ܙ�$V<�6:��5BK�-PX@(
Y	CQ
C
D@&
Z
Y	C
DY@:98766421/-,(&#"!#!+#"&547!+#"&5<?3#76;>;!323+32%!!�^)V��V*^��R�(�W*_*_*W�(�R���*R����E��m�
	
�&!��F��p&!�{,F����
\;FQ�@)
!
LA*7BK�PX@2j

h
f_

SC	TD@1j

h
fk

SC	TDY@NMCB;965$#$+.'7632.54>?>;#".'+4.'>��H	&4EX8 D�e>4e�_	$e�?
'?]A/_WJ7:m�f
$�2Tm<P}U,��,Lc8LqL&bP'!'#|4QwZE�e>��K?"!(%�� (4G[<V�sF�
�B\@+��7Yu�>X?-(0K`W����'0DX?@<[	[CSC
C		SDUS((%"&((($
+#".54>324.#"32>>;+#".54>324.#"32>�0Rl<>mP..Pm>>lQ/L#=Q--P<##<P--Q=#eC�
D�0Ql<>mP..Pm>>lQ.L#<Q--Q<##<Q--Q<#3W�X--X�WX�Y--Y�XMnG!!GnMMmF!!Fm�
��PW�X--X�WX�Y--Y�XMoG!!GoMMmF  Fmj��T�@RS@PN9K*$BhfSC
CSDGE0.'%!
@@+2#"&'.#">7>;#"&/#".54>7.54>32>7&'�CxY5
":W;<bF'TX�-57C>*Y�-l~�OK�sG4Z|HGG3^���;^s8F}m[&�5BkJ(�.Ng8D<*%C\7R�V�HH�I
^�[���4X?$2a�ZH�mVP�VFwX2��MrM& 9N/�N_n���
@BQD

$+#"&/		��ܙ�$������(+.54>7�yx*Mi@@iM*
wyv�e�
v���uu���v
��eb�����(+4'&54?'&5476Zyw
*Lj@@jL*xyv���
v���uu���v
��{���51@.1-,($#
	BMQE55+5467'7>7./7.=3>?'.'t����4����
��	m,n
n-n
��	m-m	
n-n	�m��,@)MYQE+!!#!5!i��QN�R���=I�;�I�n��@B?S
D"+74632'&5467>7#"&n0'+/(8"
	%/U#2;0)URL 	

'5@$2d)5z@MQE+!!d�/zQi��"�@SD($+74>32#"&i!""'5M""!5������@kD""++6;[ 'n')-�%I��?�'@SCSD((($+#".54>324.#"32>?P��ii��OO��ii��PdBo�RR�pBBp�RR�oB�WW����WW����HH���GG����*@'
BhCR
D%+%!47#"/3!!5E��
	�J5�'J|"&��	(i��J��2>@;.BhSCQ
D-,+)$"
22+2>3!2!5467>54.#"#"&#'>ZQ�pB1To=�E E#c�o�<fK+4Wq>CqW9
0Kr��/_�`P�~w>�<8"�=rtzENsJ$)Ie<#[�b3����HU@RD
Bhh[SCSDB@;910/.&$HH	+2#".'763232>54.#5>54.#"#"/>eQ�m?+Kf<��Fz�ay�h:&#4KeBZ�[-)`�s\�^02Tp=CpV:1
Jr��-Z�XEoT9��W�l=Ah�@
599-<]s6ApQ/E-NlAKnH"(He>#[�b3?^� @[C
D!#+!+#!"&/3467![
�V�e	�UV��^�4
�j�
/��&�������/@@=-,Bh[QCSD(#&(#"+#!>32#".'763232>54.#"'!��UCx7n�q:N��d;j^N

1MiFR�i;-[�^9�H>o|^�(?q�\p�|B#.'$5d�]L�[3s����02@/B[CSD-+#!	+2#".54676;>32>54.#"t[�o?E{�gc�u@T`�"T�Z4;���1Z�QV�a43]�NX�`2N<m�``�vB@x�mSт��)H#=E�]O�a66_�MQ�[1=a|�/�@QC
D#'++67!"&=/�wA�
���+	��=x���';OD@A
B[SCSD=<)(GE<O=O31(;);''	+".54>7.54>32'2>54.#"2>54.#"Df�yD-RqD>`A"9j�_^�k9"B`>DqR.Dy�fQ�`4Dj�<<�jD4_�QQwN%*QuKKvQ*%Nw6f�ZNzZ<>Vi<K�b88b�K<iV><ZzNZ�f6L-StG]|JJ|]GtS-�1Sj9=iN,,Ni=9jS1��22@/B[SC
D/-%#	+".54>32+>74.#"32>=W�k<Cx�b^�q?-@)��"V�3:�"2Z{IN�]40W{KU�\/Z9j�\[�rA@u�d7ddi<��H*K#@F�M�[32Z}KN}W.:^u���J�#;K�#PX@SCSD@[SDY�(&($+74>32#"&4>32#"&�!""'5!""'5M""!5D""!5��J�-H@
(B?K�#PX@SCS
D@[S
DY�,*$($+4>32#"&4632'&5467>7#"&�!""'50'+/(8"
	%/j""!5�#2;0)URL 	

'5@$2�	�5�(+����!'*)���A��		��A����e!@YMQE+!!!!�;��;��,J�J�	�5�(+546767.'&=�*("���	A	
A�)!����(:9@6BhfSCSD(&#-$+>32#'54>54.#"#"'4>32#"&!DQ`8F|]7/HTI3A0GSG0*H^3BaB&�!""'52'*NqFLnS?78"��)>:<KbC6U;#+#�i""!5l�3Naf@c
U
8Bh[

[	[OSGPOYWOaPaFD<:641/'%NN
+%"&'#".54>3232>54.#"3267632#"$&546$32%2>7.#"�XY8�R8R6A}�t5]%[%09hP/a��}���mq����d
p����zv�����q:e���$MG>P3"Z�g9(;�]W]S'D\5U��V��.I,7 <o�b�ݒHj�������]DA%JPi�%���wS��m��HF?kS6Iv�K(E2��
$@!BZC
D# +!#"&'!+3!.'�O��I�NCf��z����e��{�++�z�*=@:B[SCS
D*(" !+3!2#!2654.#%!2>54&#!��y�t9'JkE��@z�q��c��3`�Y��3b�Y*�����0]�U8hXA��Z�d5�����CkK(K2Rh7��|���2D@ABhfSCSD,*" 	22+%2#".54>32#".#"32>7>�
(,h{�X���be���M�ob/	+=TnF�؜WV��yLwdV*	�+/K5g���
�i+@*-%Y�뒖�W(:'�y�@SCS
D!(!$+#!!24.#!!2>yb��������bjR�Ҁ�c��ҕRĤ���b�b������T�T���"�.@+YQCQ
D+!!!!!"�l����U��S��U��"�	(@%YQC
D		+!!!#"���{g�U��U�v�|��C�4H@E!
Bh[SCSD,*%#44+%2>7!"&=!#".546$32#"'.#"2Ixg]/���5r��Y���dd��Q�vf/		9a�h�ޝUV��C+}	8�	%:'g����g+?),,0&X�쓖�X�� @YC
D+!#!#3!3g��ggvg��Z��l��^�@C
D+!#3^gg�Y����'@$BhCSD#'$+#"&'>7>3232>53�;m�b-\1	#-LzV-g�w�|?	0c�f���"&@#B[C
D'(' +32>7>;#"&'.+#3VT;S��!�S�� [ff�	K
���Xd�V����@CR
D+%!!38���fWW��H� %@"BhC
D!5(+>7>;#47+"'#32z
,GZ����YF;� �
�y��#��J�
�(��@C
D!+2&53#"'#3	�Z1�hY2��6��y��Y�{����'@SCSD((($+#".54>324.#"32>�b������cc������bjR�Ҁ~їSS��~�ҕRĤ���gg����hg������WW�씕�VV���S�*@'[SC
D
!+#!2#%!2>54&#!Vfm��E��u��^�g7���:�����]�q?R4\}J��{����0T@
BK�PX@SCSCD@kSCSDY�(((%&+#"&'#".54>324.#"32>�+PsHpV ��?�N���cc������bjR�Ҁ~їSS��~�ҕR�k��~-�vFg����hg������WW�씕�VV�����"2@/B[SC
D" *!+#!2#"&'.#'32>54&#!Vfi��8i�]�Y�;')��^�g6ƽ��������Q�eA
��>L-TvJ��W����==@:=BhfSCSD;9(&!#!+#".#"#"&'763232>54.54>32~	
)FiMMuO)=d�d==t�l��L	(8J`=T�[0=d�d=6h�bn�H�%-&,Ld7H^B-,5PuWY�tCcV,#)#3XyEKaA,*4Qy[G�e=FH#n� @QC
D+!#!5n�f��W��0W����#@ CSD+%2>53#".53�f�p;fJ��||NjJg;o�IG~�ck��u˗VV��uk��c�~H��@BC
D* +3267>;#Q��P��[��j.46,��y��' @#BC
D,; +32>7>;2>7>;#&'#Ue	
��eN�C\�^�][��u..��u,-��y��4��@BC
D(")!+	32>7>;	#"&'+�e
��
b��e�B
�J]����L
�T�%���	��@BC
D,"+#32>7>;�g��Y��ZH��H?
�v++�s��
$@!QCQ
D

+!!547!5��~�������#�U%�U�����
'@$[OQE

!#+!+32�>�����$
��
$������@kD" +32#"&')'n' �%�"k����
!@[OQE!"+46;#"&=!!k��=���
s
$�� ��@
BkD,!+3#"&'.'+ <UD�	
	�
G���
��L���3@MQE+!5���DDV���	@kD		+2#"&/��6���
�k��C�'7T@Q-Bh[SC
C	SD)(/.(7)7" 	''
+!"/#".54>754&#"#"/>32%2>7)QXf=3`J-H��wuHeF,
N�mPxO(�J:aSH#�ͅ?!6H(@,>aD?lP0h��(0(NP3_�S�x5->$#<S52I/�����#�K�%PX@
B@
BYK�%PX@CSCSD@!CSC
CSDY@##&#+33>32#"&'#"32>54&�`B�m��9o�ih�6hc�?9�ZX�Y-����Xf��m��PQOz�f[��VE@u�b��X��X�,9@6,BhfSCSD(&#(#"+#".#"32>32#".54>321	
#:W>V�[01Z�NHa?%
FXg8_�q?<s�la�8^ =r�ei�o:"("
 4&E��yr��K>5W����#q@
BK�%PX@CSCS
D@!CSC
CSDY@##
+!"/#"&54>323%267.#"c
B�n��9o�ie�6`�^c�?:�XX�Y-��Zj��m��PKHN�Q@f[
UF@u�b��X����%0H@EBh[SCSD'&,+&0'0	%%	+2#!32>32#".54>"!4.T�i;
�14`�TKnK,

Oao8f�xA=s�kMzY7	�,Pp�:o�ip�s:!)!
 4%G��k��JG0Z~NPX/n�_�BK�!PX@SCQC
D@[SC
DY@!$%!	+3'&=354>32#"&#"!!nj�,PqD?)1S<!C��{	'~U�V+
.@gK{G��K����:Pd�@3B+BK�PX@,
[[CS	CSD@/h
[[S	CSDY@RQ\ZQdRdMKA?$"::+23#"'#".5467.54>7.54>4.'32>2>54.#"�Ao,��4]�OVF*0<c�c<>u�gi�k6h[2; -GO3]��1Rkuv3&A.-W~RL�a7��@dD#$Ec??dE$$Ed� !&_6HuS.B+.-QC>rX5+I`6Or@9.-()�[HuT.��/9 
	'1;#,K7 ">V.%B\88]B$$B]88\B%���-@*BCSC
D##+33>32#4&#"�_E�nR}R*_��b�B���Ue4b�W��|��eX��G�&@#SCC
D
+##".54>32_�    ��W!!���G�'4@1	BSCCSD$"!$%+#"&'76323265#".54>32;Y<.
QN�    �4XA%
0XQbW!!���0@-B[CC
D%(%!+3267>;#"&'.+#.�T�I
�S�^-`���{�_

�
�
�
���@C
D+#_��Q����,8@5+
BCSC
D,,##&&!	+332>32>32#4&#"#4&#"�4	BKU/m�ATc4JvS,`~u4_I+_toQ�6��)D1q>Z;1`�Z��|��&KpJ��|��aV����1@.BCSC
D#$!+332>32#4&#"�4	D�oR}R*_��b�B��Vi4b�W��|��eX�W����',@)SCSD''	+2#".54>2>54.#"k�t==t�kk�u==u�kY�Y,,Y�YY�Y--Y��I��uu��HH��uu��I�K=r�dc�s>>s�cd�r=�����$D@ABCSCSCD$$&%!+32>32#"&'"32>54&�4
	B�n��9n�if�6Bc�>9�YX�Y-���C�Zj��m��PJI�g\��VF@u�b��W����#D@ABCSCSCD##&#+##"&54>32763267.#"�`B�l��9o�ig�6	��c�?6�YX�Y-��Xf��m��PNLp�]f[RH@u�b�����8@5BhCSC
D#$%!+332>32#".#"�20�u-L"
!0q�-��y�B
���yY����<=@:<BhfSCSD:8'%" #!+#".#"#"&'7>3232>54.54>32�#9S<6Y?#0NchcN0/Y�Si�<
&=[C?`@!0NcicN0.UzL[�;h4E&/>,  ':T<ApR0C6" % #<Q-2B.  &:S>5bJ,464���@#x@
!BK�PX@%jhQCSD@#jh[SDY@
	##	+"&5#"&=7>;!!32>32�eq��
-9��%2$4&&upu�%d	��G�]);&
**3�����-@*BC
CSD$!#+32673#"/#".5逃a�C`5	E�oS|R*���cX��Vh4b�W|��@
BC
D,!+!#32>7>;T�\KH

	JH�	��*+
��* @#BC
D*!); +32>76;2>76;#"'.'+I�'		�F��F����C�	��**��-*+�(��#v�@BC
D("(!+	3267>;	#"&'+���[
$

X��j[��
��U���Z�	�����h	����@BCD,""++32>7>;{D��[OO	KI����	��
J:�
@QCQ
D+!!547!5!:��d�)q������K&MK?����H3@0*B[[OSG@>;83-+4.#52>54.54>;+";2#".54>�):##:)&HiB7!+G3)55)3G+!7BiH&�!7)=)7!7hhi8=hM+*8P19lii5%>./=%5ijl81P8*+Mh=8ihh��Q�@QD+3#KK�i���H5@2B[[OSGEDCB530-3)++546;2>54.54>7.54>54.+"&=323"}&HiB7	!+G3)55)3G+!	7BiH&)9##9)�7hhi8=hM+*8P18lji5%=/.>%5iil91P8*+Mh=8ihh7!7)=)7����9@6jk[OSG
+2>53#".#"#4>32%=*N <X83kib+&;*M <W84khb70B'7^F('0'0B'7^F('0'���
&@#SCQD

+4>734632#"&A�5'""'5��&-PS\88\SP-���'5""7����0;U@R6&,BjhfkSCTD##'#	+.54>?>;#".'>32+M`�r>@{�s
$W�5		!7P8+KfC'EXh:
$��/Y}N,\�a3J��tp��M�
�:.!��"' 1%�
�b�o@i?q�CQ�:@@=3)Bh[SCS
D#&#%&%"	+46;4>32#"'.#"!#!>3!#!5>5#C�4g�fLtW>&	

->V<NuP(�
�?H?+�6"@2��&]�uC%@V0;.4]�O��'��Yy+(A
(:N4F���D#79@6!B
@ ?WSD42*((+467'7>327'#"&''7.732>54.#"�($�1�-n?>m-�1�$*)$�2�-n>>m-�1�$)H+Ic88cJ++Jc88cI+�>m-�2�$*)$�2�-n?>m-�2�$)($�2�-n?8bI++Ib88cJ++JcU(� 8@5	B
Z	YC
D *!+!3267>;!!!!#!5!5!�Z�ZO
Z
	YP�Y[��n��_��n��h�g#!'���:v:��~:v��Q�@YQD+3#3#KKKK������}k�H\A@>HZP=#BhfWSDFD-+(&!#!+#".#"#"&'7>3232>54.5467.54>32>54.'(#9S<8[@#2RhmhR2TR6C/Y�Si�<
&>\D>`B"4VmqmV4[g7E.UzL[�;��'CX`c-G>$=QZ]+YJ
5F'.D7.07F]>S{#&bEApR0C6" % "<Q/3L;004EY=M{%%cJ6aK,55��)A5-*+ `=-F7,)'&^'�"W'3K�PX@
SD@OSGY�((($+#".54>32#".54>32�

W









U����,H\�@
BK�PX@4hf[[		SCSDK�PX@4hf[[		SCSD@4hf[[		SCSDYY@
YW*,((#&(%!
+632#".54>32#".#"3264>32#".732>54.#"8;�t`�s@Cx�c4WJ@
!:[DS�a55^�MU{�S4]���dd���]44]���dc���]4;g���hh���g�
;FAv�fd�wB)!5b�WZ�a3)Pc���^44^���cd���^44^���d��hh���ii��j>5�&4B@? ,Bh[WSD('.-'4(4$##' 	+#"&/#".54>754&#"#"/>322>755 

15=$!<.*]�iDI+;(0jCeh��!81+��!*GD$
%9'$A13LO
0-ub��"�D8'����%�%(+55���
	
���
	
�
z
��	��
{
z
��	��
�S��=K�	PX@_MQE@kMQEY�+!#!�=R���'d)5z@MQE+!!d�/zQU����/FO��:BK�PX@/h		[
[SCSDK�PX@/h		[
[SCSD@/h		[
[SCSDYY@00OMIG0F0E)!(*,&+4>32#".732>54.#"#32#"&'.#'32654&+U4]���dd���]44]���dc���]4;g���hh���g�U����u	P
��n�ywlv��c���^44^���cd���^44^���d��hh���ii��yusvd���
_
@a[\T�5%@MQE+!!!��%A[D��'@WSD((($+4>32#".732>54.#"[/Qn??nQ//Qn??nQ/G$>T00T=$$=T00T>$n>mQ..Qm>>lQ//Ql>0T>$$>T00T?$$?TmP�7@4YYMQE
	+!!#!5!!!i��QN�R��R��U��jI�n�I��Ia�;W-g@
+BK�#PX@h[SD@!h[OQEY@(&#!
--+2>3!2!546?>54.#"#"&/>V,N9!*8�'�&�1%'4>H|W1I0(E?;�*�89< #4"G7`fb|=W?�@=BK�PX@,hh[[SD@1hh[[OSGY@;964.-,+#!??	+2#".'7>3232>54.#5>54.#"#"/>\,L7 H<IM%@V0<Q7!$;-)>).J5[Y'3?I{W/C+BWTB0M73C$
(%*4!4%1K?"2!A;`f���	@kD	#++7>3�9���
������0@-BCS
CD&$!#+32673#"/#"&'#"&5逃a�C`5	F�fb�%0���cX��X\MH+X$��6�B��*@'hiSD+##!#".54>3��U��Vg�r==r�g�R�
�
y8b�MP�\2��o�@OSG($+4>32#".�$&&$P&&%%����V@
BK�	PX@^jTD@jjTDY@+232654.'73#"&'76�(390A'*=Y]1D()N
��
,&!�`<;0!��5RO�	BK�PX@jjQD@jjMRFY�$+37#"/733!����:����%~	��c1W;��)@&WSD	+2#".54>2654&#"wBjJ''JjBDjK''KjDhiihkii�*OoEEoO**OoEEoO*��rq��qr�����)�'(+7'&547>7.'&54?'&547>7.'&54?�������	&

%	��
��	&

%	��
�q�#-O@L!	Bh		Z
[CS
D-+(&#"$!"
+%3+#5!"/3%37#"/733!47!+>;�~m?��`C�����:�������( 
*�$�� �#%~	��c1w�}�
d�K�-=Ge@b710+Bhh		Z[CS

DGEB@=<;:9853/.(&#!
--
+2>3!2!546?>54.#"#"&/>%37#"/733!+>;f,N9!*8�'�&�1%'4>I|�����:����( 
*�1I0(E?;�*�89< #4"@>`f%~	��c1�b
dSq�PU_]@N	
$SBK�	PX@B

h		h
	
	[[
\SCS
DK�PX@B

h		h
	
	[[
\SCS
DK�
PX@B

h		h
	
	[[
\SCS
D@B

h		h
	
	[[
\SCS
DYYY@!_]ZXUTKHEC=<;:20)' PP!"+%3+#5!"/32#".'7>3232>54.#5>54.#"#*.'>47!+>;�~m?��`C�Z,L7 H<IM%@V0<Q7!$;-)>).J5[Y'3>J	{�����( 
*�$�� ��/C+BWTB0M73C$
(%*4!4%1K?"2!G5`f���}�
d*����);5@2BhfSCTD('#-$+#".54>?332>324>32#"&�DQ`8E}]70GTJ3A0GTG0*H^3E_@$
		��!""'5�2')MoGLkM924#��*<45E]B6U;#+#O""!5����&$	[����&$[����&$
`����&$`����&$
`����&$`����4@1YYQCS
D"	+!!!!!!!+!����Hj��K��8���
O� i�U��S��U��c7.|���Oh@e<B
M	Bhf
hSCSC	S			DKIA@:820(&!OO+232654.'7.54>32#".#"32>7>32#"&'76�(390A'$��Ze���M�ob/	+=TnF�؜WV��yLwdV*	
(,ey�UY]1D()N
��
,&!sn���
�i+@*-%Y�뒖�W(:'+.J5K<;0!���"�&(	Z���"�&(Z���"�&(
_���"�&(
_����&,	���N�&,��E�&,
	��N�&,
	1��!,@)YSCS
D!%(!+3!2#!#%4.#!!!!2>1����bb������R�Ҁ�c��l��ҕR��b��������b���T��@��T������&1���{����&2	���{����&2���{����&2
���{����&2���{����&2
����D�	(+		'	7	�t3����4u��5pn����4t��4vp6��o{����!-9b@
21&%BK�PX@kCSCSD@jkSCSDY�**%(%$+#"&'+7&54>327>;.#"4&'32>�b���s�Q�
 ,�lwc���y�So7�eo�$^U�G�j~їSrVN�E�d�ҕRĤ���g=9��`���hC?��`�갠�R�9<W�씘�R�35V��������&8	�������&8�������&8
�������&8
�����&</�S�.@+[[C
D
!+#3!2#%!2>54&#!Vff��E��u��^�g7����������]�q?R4\}J����'�J>@;BhSC
CSDED?='%" JJ+2#"&'7>3232>54.54>54.#"#4>�U�Z./GRG/!7EIE7!2Z~Me�<

%<Y?;\?!;XfX;0ITI0?fIG}^6_Bu��3Qd2>\G87:%$1$!)<S;DrR-C6" % #=R/CQ4&1K?1H>:DS8I?*+X�^��e�o;��k��C�&DC���k��C�&Dv���k��C�&D����k��Ci&D����k��CW&Dj���k��C�&D��k����BR]�@:@BK�1PX@5hh

[S	CSD@?hh

[S	CSCSDY@&TSYXS]T]NLDC><7520-,$"
	BB+2#!32>32#"&'#".54>754&#"#"&/>32>32>5"!4.�K�`7
�l0X|LGdD&
JZe4��/Uly7?lP.H��wuHeF,M�k~�/���ͅ?!<R1BtW2�HsR1V(He�<s�op�r:!'!
4%��MjBBhI@qV6E��)0)
NP�po��(BY58O2,U|O+4^�RU�]1X��X�Gh@e6:
E	Bhf
hSCSC	S			DCA9842/-%# GG+232654.'7.54>32#".#"32>32#"&'76�(390A'%W�g8<s�la�8	
#:W>V�[01Z�NHa?%
-�jY]1D()N
��
,&!vK��sr��K>5" =r�ei�o:"("
 :NO<;0!��X����&HC���X����&Hv���X����&H����X���W&Hj���"V�&�C������&�v�������&��������W&�j�Y���}6J6@3<2B65@[SD87B@7J8J.,$"+&54?.'.546?7#".54>32.'2>7.#"�~<�J
Z�N�
r?iM*9r�s[�wD:o�g5kcV �n�9X�\2;XvLX�Y-7_}.

m!/<0�d/z��u��WAy�l`�I9X<��K��-E��t3fP2<j�R]�d5����i&Q���W����&RC���W����&Rv���W����&R����W���i&R����W���W&Rj�m�_#+@([YOSG($(#+!!4632#"&4632#"&m��Uy5'""'55'""'5�I�'7#!5�_'7#!5W���& ,6=@:54%$
BjkSCSD.--6.6'%($'+#"'+7.54>327>;.#"2>54'h<>=t�k�lQ
!&�DF=u�kX�7W2��/0�-vKY�[.iY�Z.P�
WiC�vu��HOm�C�u��I1-t��h�9�*,?s���>r�d�s�]E�������&XC��������&Xv��������&X��������W&Xj�������&\v������!@@=BCSCSCD!!&#+3>32#"&'"32>54&�_B�m��9n�if�6Bc�>9�YX�Y-�����Xg��m��PNL�g\��VF@u�b�������W&\j���c�&/O@L,BAhZC
CSD('#!&&	+2#"&54>7&'!+3"32>!.'F
T/L^'1��I�NCfC23&@2&�z���"KB92*��e��y/A'05��++k����BRn@k-H	6Bh
h		[SCSCSDDCJICRDR?=1/*(%# BB+2#"&54>7&/#".54>754&#"#"&/>3232>2>7�
T/L^)4
)QXf=3`J-H��wuHeF,N�mPxO(.(@2&��:aSH#�ͅ?!6H�"KB ;3+	(@,>aD?lP0h��(0(
NP3_�S�x"-705(->$#<S52I/��|���&&��X��X�&Fv���A�'T@Q	B
		hYQCQ
C		SD$"''+2#"&54>7!!!!!!#32>$
T/L^&1�RP�l���[.(@2&�"KB82+�U��S��U"-705X����CNg@d2Bhh

[		SCSCSDEDJIDNEN@>0.+)$"CC
+2#"&54>7"#".54>32#!32>3232>"!4.�
T/L^!+
f�xA=s�jT�i;
�14`�TKnK,

7EP*,&@2&�MzY7	�,Pp�"KB4/)G��k��J:o�ip�s:!)!
 *"",505�0Z~NPX/��@C
D+#_��:�#@ BCR
D+%!!54?3c��r�����f��?��WKeB
]�9�#@ 
BC
D+7#54?[��_�����Y2T���Z4Tv����&1������&Qv{��7� 4�@

BK�PX@+YSCQC	S
DK�%PX@)YSCQC	S
DK�)PX@3YSCQC	Q
C	SD@1YSCQCQ
C		SDYYY@
1/%(%
+!!!!!#".54>32!4.#"32>7�l���%k��]�ߠYY�߇]��k%E��J��sr��KK��rs��J2��S��UNR�Y/f�
���h0Z�RM�=��XX�씕�WW��W��W�2FQa@^.
Bh

[
	SCSDHG43MLGQHQ><3F4F,*" 
	22+2#!32>32#"&'#".54>32>2>54.#""!4.�K�`7�l0Y|LCcE)JZe4��,*Ĕb�m::m�c��*E^x�ZR{R))R{RS|S))S|?HsR1W(Ie�<s�op�r:!)!
 4%����H��uu��I��BjL)�K=r�dc�s>>s�cd�r=n4^�RU�]1��W����&6��Y����&Vv���W����&6��Y����&V������&<
4��s��&=h��J:�&]v���s��&=k��J:�&]����s��&=k��J:�&]��v����#2@/YSCSD##""	+#543>7'&=37>3#"!{`Dl�X$3`N7
_��ض$5`N7
e��b�\+0 FpR

'���3FpR�G �(�@BkD* +#"/&'+73(A��C�U���� �(�
@BkD' +32?>;# C��A�U��

�����5%q5�� @WD
+".5332>53$B[9E(A00A)E9[�'DZ2%B22B%2ZD'��}�@SD($+#".54>32}    F!!xs��=K�'PX@WSD@[OSGY�$&($+4>32#".732654&#"x/?##?//?##?/:@32@@23@$<++<$$;,,;$2@@22@@����
+@(B@jSD+2#"&54>732>�
T/L^-81.(@2&�"KB"=6,
"-705&�*iQK�PX@WSD@[OSGY@
+2673#".#"#4>32�+,;%6"!;63*,=&6"";537/$?.!'!9-$?.!'!|���	#@ SD




	#++7>3!+7>3��*�R�/�
��
��
�.��s�\�BK�1PX@SCS
D@SC
CSDY@!$##	++#!#"&'7632325#5463s�_�,mi4
	���$�e��=nt	'��"
��f@MQE+!!���fG��f@MQE+!!���fG�!.��(+.5467�L=&2#!&K&N�;3d6;=n��(+'&547>54'&547�L=&2#�&K&N�;2e6:=n���(+7'&547>54'&547�L=&2#�&K&N�;2e6:=�!;�)�(+.5467.5467�L=&2#�L=&2#!&K&N�;3d6;=&K&N�;3d6;=n'�)�(+'&547>54'&547%'&547>54'&547�L=&2#JL=&2#�&K&N�;2e6:=&K&N�;2e6:=n�'�)�(+7'&547>54'&547%'&547>54'&547�L=&2#JL=&2#�&K&N�;2e6:=&K&N�;2e6:=������@BK�PX@CCSCDK�%PX@ZCCD@`ZCDYY@
#!""+463632>72!#"'!�M�S

R�N��

����

� ��

�������-�@&"	BK�PX@/
	

	`
	
[CCSCDK�%PX@-
	

	`Z
	
[CCD@/`
	

	`Z
	
[CDYY@+)('%#! !"#+7!!5463632>72!!#.'#"'"&5�|��M�S

R�N��}N�R

S�M�� �

� �B �

�1i|@OSG($+4>32#"..Pj<=lP..Pl=<jP.T=lQ..Ql=<iP..Pii����#5@SD(&(&($+74>32#"&%4>32#"&%4>32#"&i!""'5�!""'5�!""'5M""!5'""!5'""!5W��z�'0DXl�K@H[	[CSC
C
		S
D}{sqig_]US((%"&((($+#".54>324.#"32>>;+#".54>324.#"32>%#".54>324.#"32>�0Rl<>mP..Pm>>lQ/L#=Q--P<##<P--Q=#eC�
D�0Ql<>mP..Pm>>lQ.L#<Q--Q<##<Q--Q<# 0Ql<>mP..Pm>>lQ.L#<Q--Q<##<Q--Q<#3W�X--X�WX�Y--Y�XMnG!!GnMMmF!!Fm�
��PW�X--X�WX�Y--Y�XMoG!!GoMMmF  FmMW�X--X�WX�Y--Y�XMoG!!GoMMmF  Fm�����(+5���
	
�
z
��	��
�����(+7'&547>7.'&54?����	&

%	��
�6��	@C
D#"+'+>;k( 
*
d��o�N[@X;	Bh		h
[	[SC
S


DNMHGFEA?97$##%'$+3>32#".#"!#!!#!32>32#".'#53.547#�Z��n@m]Q%
"1CY:Z�qJZ���
Hp�Z>_H4$	
	%$TfxFq��T���_�ҒN,A+#%?z�v/2'|�~@%+%	#.K5N�ً;'10HH�#C@@
BhS	CS	D##!4%
+67>;#7+"'#32###5��	
9>��?9
	�W�G��
l���,��z*�E?��x;��;h}�71@.1BSCS
D76***+!>54.#"!"&=!5.54>32!#c`�r>V��ooŔV>q�`��b�yDe�뇇�eDx�b�kOw�g~�~??~�~g�wO��4�\��m�ؖOO�؉m��\�4{���.BC@@4Bh[SCSD0/:8/B0B#+(($+>32#".54>32>54&#"#"&'2>7.#"�$CCG(W�_2G�ԌQ�`5I��q5cVD��1K8%
MR�oO
+GeEb�k9(If=#H��~����6f�[rɖV9W;;5-��
�&G��y3cN/I�dKvR+�@BCR
D+3!7!&'^\M�
��*
��ySz!+&M���$@!QCD+##!##5�b��b��R�k��k�RW����&@#
BQCQD+!!!!547	&5W�����{�[��`�R����R$1.
�z��@MQE+!!�=���I(��"@Bj[
D*# +#"&=!267>;#5�:�
�:��O�
��.)%'�
�IJ
�';OL@IK-B[
	O
	SG=<)(GE<O=O31(;);	''+".'#".54>32>32%2>7.#"!2>54.#"�7\NCCN[79hO//Oh97[NCCN\79hO//Oh�F,KB;;BK,,M:!!:M�+M9!!9M+-KB;;BK(BW//VC(+PsGGrP+(CW..WC(+PrGGsP+N&@S--T@&:V78V::V87V:&@T--S@&����K�)*@'BSCSD!%)U$+>32#"&#"#"&'7>3232>7�
:Vo@'9
4XC-	�?]xE!A

"<`G/
>W�U+
+
 DgH��c�Z*	'	 GqQ����/d@a('B[[[	O	SG,*%# //

+267#".#"'>32267#".#"'>32
4Xd84ec`.7Wc<4fc_.4Xd84ec`.7Wc<4fc_*-:+/$,$-8-0$,$��-:+.$,$-8-/$,$���pkK�	PX@)^_	ZMQE@'jk	ZMQEY@

+!3!!!!#!5!7!��uGt��h��@vHv��Th�De��J�J��J��P�O!@	@MQE+!!��
��''%���v>����	?x��I�P�O!@
@MQE+5467>7.'.=!5!�
&&&��
���(��?>�I��f��"@
BMQE+3	#	>7	.'��B��nB��L		N��	
�@����@�S�������@CD+3#���k�a�BK�!PX@SCQC	
D@[SC	
DY@!$%!
+3'&=354>32#"&#"!#!nj�6g�_!G
+!��G`�{	'U\�g7
0
��R�<}����"�K�!PX@SCQC	
DK�1PX@[SC	
D@![CSC	
DYY@""A15!
+3'&=354>32;#.#"!!nj�4d�`"IE<H_6w0KvQ+ ��{	'AX�n>�nO/Y~NAG����R��
@jD


+2+:	 0["6M6
��	@ja		+2#"&'%t�G
���	
��2E�%@OSG&(($+#".54>32#".54632�

�

0!
�





!1
U5�q@MQE+!!U��aq<�J�	@ja	#++7>3J��
F����
	<�@Bja, +#"&/.'+73<I��J�Z{{�<�@Bja, +32>?>;#J�	�I�Z�{{�2��
(@%jOSG


+"&5332653$|v@R``R@v�pfGQQGbt�8{�@OSG($+#".54>32{  �}���!@[OSG$&($+4>32#".732654&#"}-="">-->""=-5@32@@23@^";**;"#:**:#2@@22@@*)�1@.[OSG
+2673#".#"#4>32�*,6"5"!<85*+8$4""<84P7+#;- % 8*"<- % j��	+@(OSG




	#++7>3!+7>3��/�
q�4���	��	���m�
@kD


+2+U	 3�#;U<.���U_<��ʓ^p�ӡ�6��z�	��V�6�:z/������V���Wgj��X�Xb {�m�n�d�i���I�������?�������x�������������!kl	�|����x��|��V��Y(������;{��;{��W�#��	����sX���Xk��IV�kD��XDW�X��K:���������7�:�:W.�DW�\Y�4:����#��JX?XXi��������C���UX��I'MU�jj����dMUI[�m�a�bI�:��6�I����Wj������S�*						7��|��������VV�VV'1��;{;{;{;{;{��;{��������������k�k�k�k�k�kIk�X�X�X�X�X�"������0Y:�:W:W:W:W:W�m:W:�:�:�:��.��	�k|�X���X��*:X9��:��{�W:W\YW\Y��s�J�s�J�s�J�vI I II5I�IxI�I&I|�.:�7����n�n���n�n�����`i�Wk�k��6��H�h�{TMTW��c(TJ��������������*lI�IIIUI�III2I�I}I*IjI�l�#`�	�V��B��V#��$�V&��*��2��4��97:7<?7D��F��G��H��R��T��m�Bo�By�B}�B��V��V��V��V��V��V��V��������������������������������������������������������������������������������V��������������B�B���B�B�B��V
	�V
�
�B
�
�V
#��
$�V
&��
*��
2��
4��
97
:7
<
?7
D��
F��
G��
H��
R��
T��
m�B
o�B
y�B
}�B
��V
��V
��V
��V
��V
��V
��V
���
���
���
���
���
���
���
�
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�V
��
��
��
��
��
��
�
�B
�B
�
�
�B
�B
�B
��V#��&��*��2��4��F��G��H��R��T���������������������������������������������������������������������
	�V
�
�B
�
�V
#��
$�V
&��
*��
2��
4��
97
:7
<
?7
D��
F��
G��
H��
R��
T��
m�B
o�B
y�B
}�B
��V
��V
��V
��V
��V
��V
��V
���
���
���
���
���
���
���
�
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�V
��
��
��
��
��
��
�
�B
�B
�
�
�B
�B
�B
��V�
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v���B	��
�B
�B�v�v��$��7�L9��:��;��<�`=��?��l�Br�B|�B�����������������������`���`�������B�B�v�B�B�v��B����
�
��v#��&��*��2��4��7�L9�L:��<�y?�LY��Z��\��l�m�vo�vr�y�v|�}�v�����������������������y�����y�v�v�����v�v�v��7	��
7
7�G���G������"<#��$��&��*��-�o2��4��D��F��G��H��I��J�{P��Q��R��S��T��U��V��W��X��Y��[��\��]��l7m��o��r7tFuFw��y��{F|7}���������������������������������������������������������������������������������������������������������������������������������������7�7�G�7�7�G����7���#��#	��#
��#��#
��#��#��#��#$��#7��#9��#;��#<��#=��#?��#@��#`��#l��#r��#|��#���#���#���#���#���#���#���#���#��#��#��#��#��#��#��#��#��#��#��#���#���$�V$
�V$
�V$��$"��$#��$&��$*��$--$2��$4��$7��$8��$9��$:��$<�t$?��$Y��$\��$l�V$m��$o��$r�V$t�`$u�`$y��${�`$|�V$}��$���$���$���$���$���$���$���$���$���$���$���$��t$��$��$�t$��$��$�V$�V$�V$�V$��$��$��$��V&�e&m�e&o�e&y�e&}�e&�e&�e&�e&�e&�e'��'	��'
��'��'
��'��'��'��'$��'7��'9��';��'<��'=��'?��'@��'`��'l��'r��'|��'���'���'���'���'���'���'���'���'��'��'��'��'��'��'��'��'��'��'��'���'���)	��)�L)�L)��)��)��)")$��)-�.)F��)G��)H��)P��)Q��)R��)S��)T��)U��)X��)w��)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)��)��)��)��)��)�L)�L)���-	��-��-��-��-$��-���-���-���-���-���-���-���-��-��-��-���.��.#��.&��.*��.2��.4��.F��.G��.H��.I��.R��.T��.W��.Y��.Z��.\��.m��.o��.y��.}��.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.��.��.��.��.��.��.��.��.��.��/��/
��/
��/4/�$/4/"��/#��/&��/*��/2��/4��/7�[/9�V/:�y/<�=/?�V/F��/G��/H��/R��/T��/Y��/Z��/\��/l��/m�$/o�$/r��/t�B/u�B/y�$/{�B/|��/}�$/���/���/���/���/���/���/���/��=/���/���/���/���/���/���/���/���/���/���/���/���/��/��/��/��/��/�=/�$/�$/��/��/�4/��/��/�4/�$/�$/�$/���2��2	��2
��2��2
��2��2��2��2$��27��29��2;��2<��2=��2?��2@��2`��2l��2r��2|��2���2���2���2���2���2���2���2���2��2��2��2��2��2��2��2��2��2��2��2���2���3	��3�3�3��3$��3-�V3D��3F��3G��3H��3R��3T��3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3��3��3��3��3��3�3�3���4��4	��4
��4��4
��4��4��4��4$��47��49��4;��4<��4=��4?��4@��4`��4l��4r��4|��4���4���4���4���4���4���4���4���4��4��4��4��4��4��4��4��4��4��4��4���4���5#��5&��5*��52��54��57��58��5���5���5���5���5���5���5���5���5���5���5���5��5��7	��7�L7�L7�L7��7�`7�`7#��7$��7&��7*��7-�872��74��7D�7F�)7G�)7H�)7J�>7P�`7Q�`7R�)7S�`7T�)7U�`7V�D7X�`7Y�L7Z�t7[�g7\�L7]��7m�L7o�L7w�`7y�L7}�L7���7���7���7���7���7���7���7���7���7���7���7���7���7���7��7��7��7��7��7��7��7��)7��)7��)7��)7��)7��)7��`7��)7��)7��)7��)7��)7��)7��`7��`7��`7��`7��7�7��7�)7�)7�`7��7�)7�L7�L7�L7�L7�L7�L7�L7���8	��8��8��8��8$��8���8���8���8���8���8���8���8��8��8��8���979	��9
79
79�G9��9�G9��9��9��9"<9#��9$��9&��9*��9-�o92��94��9D��9F��9G��9H��9I��9J�{9P��9Q��9R��9S��9T��9U��9V��9W��9X��9Y��9[��9\��9]��9l79m��9o��9r79tF9uF9w��9y��9{F9|79}��9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9��9��9��9��9��9��9��9��9�9�9�79�79�G9�79�79�G9�9�9�9�79���:7:	��:
7:
7:��:��:��:��:"%:$��:-��:D��:F��:G��:H��:J��:R��:T��:V��:l7:m��:o��:r7:t7:u7:y��:{7:|7:}��:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:��:��:��:��:��:��:��:�7:�7:�:�7:�7:�:��:��:��:�7:���;��;#��;&��;*��;2��;4��;F��;G��;H��;I��;R��;T��;W��;Y��;Z��;\��;m��;o��;y��;}��;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;���;��;��;��;��;��;��;��;��;��;��<<	�t<
<
<�y<�`<�y<�t<��<��<"%<#��<$�t<&��<*��<-�8<2��<4��<D��<F�`<G�`<H�`<J�[<P��<Q��<R�`<S��<T�`<U��<V��<X��<Y��<Z��<[��<\��<l<m�`<o�`<r<t-<u-<w��<y�`<{-<|<}�`<��t<��t<��t<��t<��t<��t<��t<���<���<���<���<���<���<���<���<���<���<���<���<���<���<��`<��`<��`<��`<��`<��`<���<��`<��`<��`<��`<��`<��`<���<���<���<���<�t<��<��<�`<�`<��<��<�`<�`<�`<�<�<�y<�<�<�y<�`<�`<�`<�<��t=��="%=#��=&��=*��=2��=4��=F��=G��=H��=R��=T��=V��=Y��=\��=m��=o��=y��=}��=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=��=��=��=��=��=�=�=�=�=�>#��>&��>*��>2��>4��>F��>G��>H��>R��>T��>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>��>��>��>��>��?�V?
�V?
�V?��?"��?#��?&��?*��?--?2��?4��?7��?8��?9��?:��?<�t??��?Y��?\��?l�V?m��?o��?r�V?t�`?u�`?y��?{�`?|�V?}��?���?���?���?���?���?���?���?���?���?���?���?��t?��?��?�t?��?��?�V?�V?�V?�V?��?��?��?��VD��D
��D
��DY��DZ��D\��Dl��Dr��Dt��Du��D{��D|��D�D�D�D�D���E��E
��E��E
��E9��E:��E?��E@��EY��E[��E\��E`��El��Er��E|��E�E�E�E�E���H��H
��H��H
��H9��H:��H?��H@��HY��H[��H\��H`��Hl��Hr��H|��H�H�H�H�H���IKI
KI
KI�yI�yIlKIrKItdIudI{dI|KI�KI�KI�yI�KI�KI�yI�KK��K
��K
��KY��KZ��K\��Kl��Kr��Kt��Ku��K{��K|��K�K�K�K�K���NF��NG��NH��NR��NT��N���N���N���N���N���N���N���N���N���N���N���N���N��N��N��P��P
��P
��PY��PZ��P\��Pl��Pr��Pt��Pu��P{��P|��P�P�P�P�P���Q��Q
��Q
��QY��QZ��Q\��Ql��Qr��Qt��Qu��Q{��Q|��Q�Q�Q�Q�Q���R��R
��R��R
��R9��R:��R?��R@��RY��R[��R\��R`��Rl��Rr��R|��R�R�R�R�R���S��S
��S��S
��S9��S:��S?��S@��SY��S[��S\��S`��Sl��Sr��S|��S�S�S�S�S���U��U��UD��U���U���U���U���U���U���U���U��U�U�Y	��Y��Y��Y��Y$��YF��YG��YH��YR��YT��Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y��Y��Y��Y��Y�Y�Y���Z��Z��Z��Z��[F��[G��[H��[R��[T��[���[���[���[���[���[���[���[���[���[���[���[���[��[��[��\	��\��\��\��\$��\F��\G��\H��\R��\T��\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\��\��\��\��\�\�\���^#��^&��^*��^2��^4��^F��^G��^H��^R��^T��^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��^��^��^��^��l	�Vl�l�Bl�l�Vl#��l$�Vl&��l*��l2��l4��l97l:7l<l?7lD��lF��lG��lH��lR��lT��lm�Blo�Bly�Bl}�Bl��Vl��Vl��Vl��Vl��Vl��Vl��Vl���l���l���l���l���l���l���l�l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l�Vl��l��l��l��l��l��l�l�Bl�Bl�l�l�Bl�Bl�Bl��Vm�Bm	��m
�Bm
�Bm�vm�vm��m$��m7�Lm9��m:��m;��m<�`m=��m?��ml�Bmr�Bm|�Bm���m���m���m���m���m���m���m��`m��m�`m��m��m��m�Bm�Bm�vm�Bm�Bm�vm��Bm���o�Bo	��o
�Bo
�Bo�vo�vo��o$��o7�Lo9��o:��o;��o<�`o=��o?��ol�Bor�Bo|�Bo���o���o���o���o���o���o���o��`o��o�`o��o��o��o�Bo�Bo�vo�Bo�Bo�vo��Bo���p��p	��p
��p��p
��p��p��p��p$��p7��p9��p;��p<��p=��p?��p@��p`��pl��pr��p|��p���p���p���p���p���p���p���p���p��p��p��p��p��p��p��p��p��p��p��p���p���r	�Vr�r�Br�r�Vr#��r$�Vr&��r*��r2��r4��r97r:7r<r?7rD��rF��rG��rH��rR��rT��rm�Bro�Bry�Br}�Br��Vr��Vr��Vr��Vr��Vr��Vr��Vr���r���r���r���r���r���r���r�r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r�Vr��r��r��r��r��r��r�r�Br�Br�r�r�Br�Br�Br��Vt	�`t�`t$�`t9Ft:Ft<(t?Ft��`t��`t��`t��`t��`t��`t��`t�(t�`t�(t��`u	�`u�`u$�`u9Fu:Fu<(u?Fu��`u��`u��`u��`u��`u��`u��`u�(u�`u�(u��`y�By	��y
�By
�By�vy�vy��y$��y7�Ly9��y:��y;��y<�`y=��y?��yl�Byr�By|�By���y���y���y���y���y���y���y��`y��y�`y��y��y��y�By�By�vy�By�By�vy��By���{	�`{�`{$�`{9F{:F{<({?F{��`{��`{��`{��`{��`{��`{��`{�({�`{�({��`|	�V|�|�B|�|�V|#��|$�V|&��|*��|2��|4��|97|:7|<|?7|D��|F��|G��|H��|R��|T��|m�B|o�B|y�B|}�B|��V|��V|��V|��V|��V|��V|��V|���|���|���|���|���|���|���|�|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|�V|��|��|��|��|��|��|�|�B|�B|�|�|�B|�B|�B|��V}�B}	��}
�B}
�B}�v}�v}��}$��}7�L}9��}:��};��}<�`}=��}?��}l�B}r�B}|�B}���}���}���}���}���}���}���}��`}��}�`}��}��}��}�B}�B}�v}�B}�B}�v}��B}�����V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V��e�m�e�o�e�y�e�}�e��e��e��e��e��e����	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|����������������������������������������������������������������������������	������������$��������������������������������������������	������������$��������������������������������������������	������������$��������������������������������������������	������������$���������������������������������������������	�t�
�
��y��`��y��t�������"%�#���$�t�&���*���-�8�2���4���D���F�`�G�`�H�`�J�[�P���Q���R�`�S���T�`�U���V���X���Y���Z���[���\���l�m�`�o�`�r�t-�u-�w���y�`�{-�|�}�`���t���t���t���t���t���t���t�����������������������������������������������������������`���`���`���`���`���`�������`���`���`���`���`���`������������������t��������`��`��������`��`��`������y������y��`��`��`�����t����	���
������
������������$���7���9���;���<���=���?���@���`���l���r���|�������������������������������������������������������������������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|����������������V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V����
���
���Y���Z���\���l���r���t���u���{���|����������������e�m�e�o�e�y�e�}�e��e��e��e��e��e����
������
���9���:���?���@���Y���[���\���`���l���r���|����������������t�
�t�
�t��o�9�j�:���<�y�?�j�Y���\���l�t�m�o�o�o�r�t�t���u���y�o�{���|�t�}�o���y��y��o��o��t��t��t��t��o��o��o���t����
���
���Y���Z���\���l���r���t���u���{���|������������������
������
���9���:���?���@���Y���[���\���`���l���r���|����������������	�t�
�
��y��`��y��t�������"%�#���$�t�&���*���-�8�2���4���D���F�`�G�`�H�`�J�[�P���Q���R�`�S���T�`�U���V���X���Y���Z���[���\���l�m�`�o�`�r�t-�u-�w���y�`�{-�|�}�`���t���t���t���t���t���t���t�����������������������������������������������������������`���`���`���`���`���`�������`���`���`���`���`���`������������������t��������`��`��������`��`��`������y������y��`��`��`�����t����"%�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}�����������������������������������������������������������������������������������������������������������"%�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}�����������������������������������������������������������������������������������������������������������"%�#���&���*���2���4���F���G���H���R���T���V���Y���\���m���o���y���}���������������������������������������������������������������������������������������������������������B�	���
�B�
�B��v��v����$���7�L�9���:���;���<�`�=���?���l�B�r�B�|�B�������������������������������`�����`�����������B��B��v��B��B��v���B������B�	���
�B�
�B��v��v����$���7�L�9���:���;���<�`�=���?���l�B�r�B�|�B�������������������������������`�����`�����������B��B��v��B��B��v���B�����	�V����B����V�#���$�V�&���*���2���4���97�:7�<�?7�D���F���G���H���R���T���m�B�o�B�y�B�}�B���V���V���V���V���V���V���V������������������������������������������������������������������������������������������������������������V����������������������B��B������B��B��B���V�	�V����B����V�#���$�V�&���*���2���4���97�:7�<�?7�D���F���G���H���R���T���m�B�o�B�y�B�}�B���V���V���V���V���V���V���V������������������������������������������������������������������������������������������������������������V����������������������B��B������B��B��B���V���
��
���v�#���&���*���2���4���7�L�9�L�:���<�y�?�L�Y���Z���\���l��m�v�o�v�r��y�v�|��}�v�������������������������������y��������y��v��v����������v��v��v����	�V����B����V�#���$�V�&���*���2���4���97�:7�<�?7�D���F���G���H���R���T���m�B�o�B�y�B�}�B���V���V���V���V���V���V���V������������������������������������������������������������������������������������������������������������V����������������������B��B������B��B��B���V�	�V����B����V�#���$�V�&���*���2���4���97�:7�<�?7�D���F���G���H���R���T���m�B�o�B�y�B�}�B���V���V���V���V���V���V���V������������������������������������������������������������������������������������������������������������V����������������������B��B������B��B��B���V���
��
���v�#���&���*���2���4���7�L�9�L�:���<�y�?�L�Y���Z���\���l��m�v�o�v�r��y�v�|��}�v�������������������������������y��������y��v��v����������v��v��v�����B�	���
�B�
�B��v��v����$���7�L�9���:���;���<�`�=���?���l�B�r�B�|�B�������������������������������`�����`�����������B��B��v��B��B��v���B������B�	���
�B�
�B��v��v����$���7�L�9���:���;���<�`�=���?���l�B�r�B�|�B�������������������������������`�����`�����������B��B��v��B��B��v���B������B�	���
�B�
�B��v��v����$���7�L�9���:���;���<�`�=���?���l�B�r�B�|�B�������������������������������`�����`�����������B��B��v��B��B��v���B�����	�V����B����V�#���$�V�&���*���2���4���97�:7�<�?7�D���F���G���H���R���T���m�B�o�B�y�B�}�B���V���V���V���V���V���V���V������������������������������������������������������������������������������������������������������������V����������������������B��B������B��B��B���V��V�
�V�
�V����"���#���&���*���--�2���4���7���8���9���:���<�t�?���Y���\���l�V�m���o���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������t��������t��������V��V��V��V������������V�����"��"��J��"<b��n�6�2�	(	z	�

,
R
�~����

�
�
�Zv��@~�F��F��Fr���*�z�T����T��V�`����P���r�NN���Jl 
 ^!B!�!�"$">##&#n#�$"$�$�%.%d%�%�&.&t&�'0'�))r)~)�)�)�)�)�**�*�*�*�*�*�*�*�++T+`+l+x+�+�+�+�,P,\,h,t,�,�,�-P-\-h-t-�-�-�.x///(/4/@/L/X/d/p/�0000&020>0�1111$101<1�1�22�2�2�3<3�3�4*4\4h4t5<5�5�5�6666(646@6L6X6d6�6�777D7n7�7�8R8�8�8�99>9d9�9�::V:�;t;�;�<�<�= =>=�>4>�??F?p?�?�?�@�@�A^A�A�B6BxB�B�CbC�C�C�DD.D\D�D�D�E$EhE�E��`"/n�	� ��
��(�
�(�
�0�%	%
�42(
�Z	6	J	^	Pl	�	P�	�	` 	�		�	
��	0
V	d
�	
�
�	4n	�	
�Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.Lato LightRegulartyPolandLukaszDziedzic: Lato Light: 2013Version 1.105; Western+Polish opensourceLato-LightLato is a trademark of tyPoland Lukasz Dziedzic.Lukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2013-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLCopyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.Lato LightRegulartyPolandLukaszDziedzic: Lato Light: 2013Lato-LightVersion 1.105; Western+Polish opensourceLato is a trademark of tyPoland Lukasz Dziedzic.Lukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2013-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLLatoLight�ZD	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�������	
�����
����������������������������������������������� !"#NULLuni00A0uni00ADmacronperiodcenteredAogonekaogonekEogonekeogonekNacutenacuteSacutesacuteZacutezacute
Zdotaccent
zdotaccentuni02C9EuroDeltauni2669undercommaaccent
grave.case
dieresis.casemacron.case
acute.casecircumflex.case
caron.case
breve.casedotaccent.case	ring.case
tilde.casehungarumlaut.case
caron.salt��bKbK�������V��������V�,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �Ead�(PX!�E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K�KRX��Y�c �#D�#p�E  �(`f �UX�%a�Ec#b�#D�*�*�*Y�(	ERD�*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPKCH[5�  ^share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttfnu�[����pFFTMf�h�OS/2s�x`cmap_�ceXcvt ��
"fpgmY�7`sgasp���glyf�p�e���head��u��6hheaA�4$hmtxf�]��~locabk3�
<vmaxpS�X nameD����p;Xpost6z
�3prep~��AZ��R_<����������������:Qc
�X��XK�X^2 	 ADBE 
"��`��� �MX�SF@��~@F�F�J8R3*#.<>=5��tFbb	T7A^l,@J;DkAB&J$F2@8�JiV<�=HC/7R4HO*L>$H/H/t51>%Fj�i4�`C$�Gp�+FFe��F���>0����<g						��7^^^^JJJJB&&&&&T@@@@I=======C7777OOOO/H/////F/>>>>H	=	=	=7C7C7C7CA/^7^7^7^7^7,4,4,4,4@��JOJOJOJOJO;*DLLk>k>k>k
!>BHBHBH��&/&/&/FtFeFt2525252511@>@>@>@>@>@>8F8F8F:.&/@>	=JO&/@>@>@>@>@>,4&/251*	H/H467/< 42���S��������������������|�������p����E��"�������������s����v���A/A/,4@H@Hk>7>k>A$BHBHBHFjFjFB2525118F1@P���4FF���������������������������OC[-COX$F���������������������������������������4
~1Ie~��������7CRTYaeoy�����������$(.1CIMPRX[���!%+;Ico������    " : D q y � � � � � � � � � �""��
 �4Lh��������7CPTXaeoy�����������#&.1CGMORV[��� $*6BZl������    " 9 D p t } � � � � � � � � �""����������������������w�n�l�@�%���
�
���������������������������������z�s�r�m�k�Z�W�T�S�R�O�M�
�
��������z�j�b�R�J�H�E�?���������������}�z�u�i�g�f�c�_�]�Z��
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc��������������������������������tfgk�z�rmxl��uiyn~���ep?od�����������6���{������������������v�s}~|��w�,K�	PX��Y����D�	_^-�,  EiD�`-�,�*!-�, F�%FRX#Y � �Id� F had�%F hadRX#e�Y/ �SXi �TX!�@Yi �TX!�@eYY:-�, F�%FRX#�Y F jad�%F jadRX#�Y/�-�,K �&PXQX��D�@DY!! E��PX��D!YY-�,  EiD�`  E}iD�`-�,�*-�,K �&SX�@�Y�� �&SX#!�����#Y �&SX#!�����#Y �&SX#!����#Y �&SX#!�@���#Y �&SX�%E��PX#!��#!�%E#!#!Y!YD-�	,KSXED!!Y-�+�+�+�%+�.& +�+� E}iDK�`RX��Y��s��H�B{��6D�.��4j�����l��b���F���D�T�		L	�	�

V
�
�>��*r�
(
�
�
�,��&\z�����t�2�Vt�T�l�(��T��0�^��f���6��Pn�������,4p����>pz������� $ 0 < H T ` l � � � � �!!!!&!2!�!�!�!�!�!�!�""�"�"�"�"�"�##|#�#�#�#�#�#�$~$�$�$�$�$�$�$�$�$�%n%z%�%�%�%�%�%�&v&�&�&�&�&�'*'6'B'N'Z'f'�(v(�(�(�(�(�(�(�(�(�(�(�)�)�)�)�)�)�)�*4*�*�*�*�*�*�*�+++ +,+8+D+�,,&,2,>,J,V,b,�-4-@-h-t-�-�-�-�-�....$.0.<.H.�.�.�.�////&/�/�/�/�/�/�/�0:0�0�0�0�1
11"1.1:1F1R1^1j1v1�1�1�1�1�1�1�1�1�1�1�2222*2�333(343@3L3X3d3p3|3�3�4"4z4�5B5�66l6x6�6�6�6�6�6�6�6�6�6�6�777 7,787D7�8*868B8N8Z8�99�9�:l:�;;h;�<H<�==^=�>>`>�>�?2?n?�@$@,@4@X@|@�@�@�@�@�@�@�@�@�@�@�@�@�A.A�A�A�A�BBPBdB�B�B�CC@CbC�C�C�C�DD6DjD�D�D�EE0E�E�F:F�GG^G�G�HJH�H�IIDI�I�I�I�I�I�I�I�JJJ J,J8JDJRJbJnJzJ�J�J�J�J�J�J�J�J�J�KKKK&K2K>KJKVKbKnKzK�K�K�K�K�K�K�K�K�K�K�L
L~L�L�L�L�L�L�L�L�L�MM,MPMZMhMvM�M�M�M�M�NN4N>NHNRN\NfNpNzN�N�N�N�N�N�N�N�OOOO&O0O:O�P.P�QdQ�R:R�SJS�T$T�T�UUULUpU�VV@V�V�W W�W�X
X,X>XRXrX�X�X�YY<YfY�Y�Y�ZZJZ�Z�[
[P[�[�\\2\^����-�EX�/�
>Y�EX�/�>Y�	ܸ�01'3#4632#"&��`49++99++9����-77--99��S/�'�|�F���EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�+�+��
ии�ии�ии�и�017#537#53733733#3##7##7#�JUO[ThTO[
T_UgU�h
�^n^����^n^���nn@���,G�/�'/�&ܹ��ܺ&9�и��&9�&�)�01.#"#5.'732654.546753�#?)E+AKA+VTb1h&@0U0$&+ALA+XLb4M�.+>-?]��)!d!*>.AV��+ ����H�'��D&����J�
A��EX�3/�3
>Y�EX�!/�!>Y�EX�/�>Y�!��3!9�
!39�
�+ии3�ܸ�ии��
�;��>�017327.'>54&#"&'#".54>7.54>32>7�1(  #?-%{, 3(#DF%Y73N5&*<%JS#,= 	�%.C$$#").'�<m3 	w/"3C& 5+$&G#>/PD3,&; J,�/���+01'3#��#Z�����M���+01.5467�bqqbRYQ)@-R�W䎎�WAW�v;i`Y+A~�M���	+01>54&'7~-@)QYRbqqbr+Y`i;v�WAW䎎�W@[6/�/�9���и�
и��01?'7737'xa��N��a@tt��DG+��+GD�,��F^6�+��и�	�01#53533##���l��lh��h���'���+0165#".54632��'A/>>jh�-a
&/8[Q`� ��F~������EX�
/�
>Y��0174>32#"&�++@44@i+  +2CCJ�`��EX�/�>Y��01#3�{I{�f8�� �'3K�EX�
/�
>Y�EX�/�>Y�
����(9�(/�.�01".54>32"32>54."&54632,7Z@##@Z77Z@##@Z7)))) ++  +++T|QQzS))SzQQ|T+!1R>>S33S>>R1��)##))##)R{=�EX�
/�
>Y�EX�/�>Y��и
�й�01%!53#5>73�9��8O#lwwwo[
��3�!C�EX�/�>Y�EX� /� >Y��к 9���017>54&#"'>32>;!:DpP,62&?O17=%2R;!&AT.?��#T9cVL"/1'O&
5J.(SSS(|*���-S�EX�/�>Y�EX�*/�*>Y��*9�/����"901732654.#52654&#"'>32#"&'n O,4C,J8^M2,&@!J/k>4V>"@9<R)E\2Rv%�$'$"
h/&!%Z&+-@*2EM>,E/1)#.{	Y�EX�/�>Y�EX�
/�
>Y�+����	и�и	�и��015467###5!533U$`}P���	�PkO6�p��e~��.��{$U�EX�/�>Y�EX�!/�!>Y�	+�!��!9��и��01732654&#"'!!>32#"&'p I-6EA3A���&,O<#)EZ1Ss'�%2102	*A|w0J35R93&<��!�2W�EX�//�/>Y�EX�%/�%>Y�+�%��%/9���/��01%2>54&#".#">32#".54>32:#4*<$�< 5)"S$*G5%?R.1\H,.Mb5Df b'1+"&3
�/L8!$0J22N8$LwTY�T)->{3�EX�/�>Y�EX�/�>Y���	�013>7!5!#�+D2���<J*�O�ys?|ZCu}�]=���
>W�EX�'/�'>Y�EX�:/�:>Y��'��9�/�/и//�ܸ��01732654.'7654&#"4>75.54>32#".�B1-7)8"#�0.,#1F�!+(5 9P/0M65&,  =Z:7X>!�*/'(
2�+2%-$%',�/&G3(A.-A'-F(3 &@/.@5���2W�EX�%/�%>Y�EX�//�/>Y�+�/%9���%��/��01267.#"32>7#".54>32#"&'<$#4c< 5)#S#*H5%?R.1]H+.Lc4Df!V#%3
'1+�/M8!%0J21O8$LwTY�T).������"'C����'�"'Ct�y;�+��и/��9��и/��01%%t���	�~��������F��&t�b�y;�+��и/��9��и/��015%5%5�~	���������b����)*�EX�'/�'>Y�
+�'�!ܸ�01&>54&#"'>324632#"&�'"* 0R$b<+K7 $("�9++99++9�!5*"   K(2)=)!0("%+�-77--99�m&�6@?� '+�1+�:+�>+�19��=�01%#'##".54>754.#"3267#".54>3232675&N<)/"#A\9 2!#F8#$;L)-;**T6<oV30Rm=9S5�#F9d3#&3(;)2'"JuRNsM%I0c�ff�`.&BY4�\$	O�	A�EX�/�
>Y�EX�
/�
>Y�
	+���
��01'.'###3#n


��(�˰˜<1n34m1<s���tT-�&W�EX�/�
>Y�EX�/�>Y�%9�%/��%9����&�0132+2654&+254&+T�3W@%
*FH&D[5��60143@v9=@�&>/,&
JB2H/�+%% ���Y+'�7��9�9�EX�/�
>Y�EX�/�>Y�����014>32.#"3267#".70TrA?a!Q6##:+\J#9QR|?pT1BQX.3 [6N1eo Y`+T}A,�9�EX�/�
>Y�EX�/�>Y�����0132+72>54.+A�GtR--QpD��&?--?&�&OzTT|Q(w1P;:O/�b^�M�EX�/�
>Y�EX�/�>Y���9�/����01!!3#!!^�����%�H�|�{�|l�	C�EX�/�
>Y�EX�	/�	>Y���	9�/��01!!3##l������|�|�,��#�#M�EX�/�
>Y�EX�/�>Y�����9�/��014>32.#"32675#53#".,/Qn?B] Q2' 6(MN"_�!l??mQ.BRW.3 [6N1eo

px��0+T}@�I�EX�/�
>Y�EX�/�>Y�	9�	/����013353###@����������t��J�A�EX�/�
>Y�EX�/�>Y����и�	�0173#5!#3!J��Ę��<|�||�l|;���5�EX�/�
>Y�EX�/�>Y����0173265#5!#".'�:B32��:]C:84�H3D'{�R0U@%)DR�k�EX�/�
>Y�EX�/�
>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�01333##D����֣�L�������xd�k �+�EX�/�
>Y�EX�/�>Y��013!!k�"�K���|A�M�EX�/�
>Y�EX�/�>Y�+��и�	и���0133?3#54>7##/##A�B?�w32A21u��ZZ�t�OTO����OTO�B�Y�EX�/�
>Y�EX�/�>Y�9���к9��
���0133.=3#'##B��8���8�����4�9�tE�6|:�&��2�5�EX�
/�

>Y�EX�/�>Y��
��01".54>32'2654&#",:aE&&Ea::aE&&Ea:3<<33<</X~PP}U--V}OP~X/scbnnbcsJ7�G�EX�/�
>Y�EX�/�>Y�9�/�����0132+#254&+J�5]E()F\4[��w<;R�1Q;9T6�Rh3*�$�ND�*K�EX�/�
>Y�EX�/�>Y�'+������$�01"32654&#".'.54>323267)4::43;;�00PA0Xh&D`;:`D&^QC#nbcsscbn�J	.A&��P}U--V}O��#FH�S�EX�
/�

>Y�EX�/�>Y�

9�
/��
���и
��013254&+'##32�Hw<;H�}M��4[E(@4�`a0&�����/N:H]��2��'�/I�EX�/�
>Y�EX�,/�,>Y��,9��� ,901732654./.54>32.#"#"&'�%W+3/%T3&#?X5<p-K"B*+/</OAK"@^=B�5�&"	$
 +9$(G5,*]"TE)I7!//9�3�EX�/�
>Y�EX�/�>Y����01#5!##��Ô||��@���3�EX�/�
>Y�EX�/�>Y���	�01332653#"&5@�,//-�swxv��`;>>;��o����I�
3�EX�/�
>Y�EX�
/�
>Y���
�0133>73#�NM�ı���6e66e60�tT�!M�EX�/�
>Y�EX� /� >Y�
+� ��и�и ��0133>?33>73#'.'##�-Y+�Q�)
	'����*R**R*��(T**S)[�t�AA�F�]�EX�/�
>Y�EX�/�>Y�9�9��к
9��к90133>?3#'.'##г�?:����GD�O={33{�����33�H�@�EX�/�
>Y�EX�/�
>Y�EX�/�>Y�901733>?3#�ҞBB�Ҕ���&H''H&��P�8#�	=�EX�/�
>Y�EX�/�>Y����017!5!!!82����5�Y�{Y�I|�h���+�+01!#3!�'�����N�@NJ�`��EX�/�>Y��013#J{I{��i�h���+�+01#5!!5�'��J�N��NV�	&�EX�/�
>Y�ܺ9�	�013#/##�v�y.--.y��t����<�\��
�+01!5� 6nn���>~��=���)��EX�/�>Y�EX�/�>Y�EX�/�>Y�9�/����!�!9�9��$��%�0174>7.#"'>32#'##".732675=$O|X33$I*43u@hxx&Z0&<*�% !:7H*�*?,"&`&nr��8')6+RH��)�!��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�9��������!�013>32#"&'##732654#"H�I$.K3$<M*#Es�-)8[/-��N$A]9@dE$" 6�EM�.C��$�9�EX�/�>Y�EX�/�>Y�����0174>32&#"3267#".C/Oh9;_ D77@PM>'B<-m3;dK*�>aB#&['LAAL]&##Ba/���#��EX�/�>Y�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�9�9��������!�0174>32'53#'##".732675.#"/$;L)+:�xH&/M7�2.*));�=`C$M��C3$$C`?JD�D7��"�#C�EX�/�>Y�EX�/�>Y�#
+���� �0174>32!3267#".%4&#"7+H]29X:��Q7"=!0*h2:dJ+f.3(>
�=`C$$@W3$	81X#C`t*4.0RI�V�EX�/�>Y�EX�/�>Y�EX�/�>Y����и��	�01&#"3###5754>32-170-�����6T:+K B*-s��}m
+J7 4�-<�DP��EX�"/�">Y�EX�%/�%>Y�EX�$/�$>Y�EX�@/�@>Y�EX�
/�
>Y�@��
�
ии
�7�/ܹE�1E/9�1�и%�&�$�'�"�K�0132654&+"&'475.54675.54>323##"';2#".2654&#"�C;<J,+>#xM!&#:M*.$�e	 7K+ $(,\bg*LnC0S<"�--++>#$=&
( 2A,-C-k#+>)
:C'B/0k))())())H�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�
9�����013>32#4&#"#H�#)1TM� )-���_l^��2.��O��;�EX�/�>Y�EX�/�>Y����ܸ�01!##%"&54632OZ��
+77++77�}�0))33))0*�<��A�EX�/�>Y�EX�/�>Y�����ܸ�01!#"&'73265#%"&54632OZ5YC.K +15'�
+77++77�.-R>%i
36e�0))33))0LI�m�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�013373#'#L����˟�I���k����M}>�� �5�EX�/�>Y�EX�/�>Y����01!3267#"&5#>#
&!""&^_����	l
o_�$=� ��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX� /� >Y�EX�/�>Y�EX�/�>Y� 9��	и��	������0133>32>32#4#"#4#"#$n1+!-	5*4:�q��>+)("/UK��Q.0��Q.��H�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�����0133>32#4&#"#Hx S8TN� )-��B .l^��2.��/��)�5�EX�/�>Y�EX�/�>Y����0174>32#".732654&#"/*G[11[G**G[11[G*�33333333�>aB##Ba>>aB##Ba>ALLAALLH�H)� ��EX�	/�	>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�	9�	9�����	��� �01#33>32#"'732654#"ۓxN(.J4$<M*D8-*8[/-'��2#$B]9@cE$6cEM�./�H�#��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�9�9��������!�0174>32373#57#".732675.#"/$;L)*As�F#/M7�2.*));�=`C$!3�X�L $C`?JD�Dt$�T�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��
���0133>32.#"#tx%h<!)%.Y ��l=;

{6C��5���/I�EX�/�>Y�EX�,/�,>Y��,9���,901732654&'.54>32.#"#"&'w+W23,I<!?2 ;U5Bm'B"H'/'"/%B2 =[<C�0� 	#.":(+X

"0 ":+, 1��&tM�/�EX�/�>Y�EX�/�>Y����и�и�
�01#5?33#3267#".5�}�y��260!Q0;R3}m��s�9/
j
 9P1>��
�e�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�����01!#'##"&5332673
x!P6UL�*+�G&-l^2��2.!F9�
<�EX�/�>Y�EX�
/�
>Y�EX�
/�
>Y��0133>?3#�NN�����&L''L&�T�!t�EX�/�>Y�EX�
/�
>Y�EX�/�>Y�EX�!/�!>Y�EX�/�>Y�!9��к90133>?33>?3#'.'##�
g!�M�	���%H&&J#��%H&&H%��#G(D3�%2�e�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��и�
и�01'33>?3#'.'##ѡ�3


,����91��P+,P��R,+R�>;�[�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y���
901326?33>?3#"&'7]+1
גS
I��*6G/&H$��#K'%K%�/G/pF�	=�EX�/�>Y�EX�/�>Y����017#5!!!F�����)O.sN��sj�h��7+�34+�+�
+�'
9014>54.'5>54.546;#";#"&� 5((5 Z`M)(	.66.	()M`Z
*''

V

('+Q=N(N-93		39.L)N=�m��+013#낂�i�h��7+�5+�+�'(+�('9012>54&54675.54654.+532+5�'	.66.	')M`Z 5))5 Z`MJ)L.93		39-N(N=Q+'(

V

''*Q=N4�$�'�+�+��и��01>323267#".#"4 T/.'#&X T/.'#'NC(*)NC(*�R���EX�/�>Y�	ܸ�01#737#"&54632p�`49++99++9)���-77--99`���$\�EX�/�>Y�!
+� +� �и/�!�и/�
�
и
/�ܸ�и/01#5.54>753&'>77$$%#�D"Q1O8 :N/Q'?C$�@--AE__(AX65V?)a]Z��C&�*W�EX�/�>Y�EX�/�>Y�+���и��� и�#�01%!5>54'#57.54>32.#"3#&�4BpT"<T2>Y#O,07��||[O6
V(/L5*'P.0$[$4$?4S*�"+�(+01?&5467'76327'#"'32654&#"$Q"PIY0642YIQ"RIZ47.Zi2$$22$$2�R.A 7RJZZJR-@!7RJ[[-55--559{l�EX�/�>Y�EX�	/�	>Y�EX�/�>Y�	9��й�иܸй�и��013>?33#3##5#535#53�==������������{�!B !B ���F7F��F7F%�m��+�+013##낂���Jl�:�G���
AO�+%+�>+�.%9�>+9�.9��к8.9�8��01654.'7.#"#"&'732654.5467.54632� 3>$ 2=%�86(=G=(+)0H/7j"T3<';E;',&]U:\ Q!&!�' -@-,A&":*)+K3-@/&C(DU)��p;�����E�'EM�EX�/�>Y�EX�/�>Y���#�-й4��Aй:�014>32#".732>54.#"4>32.#"3267#".-Mf99fM--Mf99fM-@9P11P99P11P980?"'57%'&!/7!&?.ENzU--UzNN{W..W{N>dH''Hd>=dG&&Gd>,G2=
=-3<
D3I�����U���+�'�|��F^~
�+01!#5!F�l��~���F~e7��'5>=�+�
+�62+��)и2�/и�4и1�01".54>32'2>54.#"'32#'##72654&++)H66H))H66H)5''5 4''41Y#.*<:N76J,,J66J,,J61(8##8((8##8(� "M<<d6���P��������
+�+01".54>32'2654&#"-5''55''5%%%%�'4 5''5 4'F)! )) !)F6D�EX�/�>Y�+��ܸ�и�и���01#53533##!!���l��l��4&h��h�6h�����������������>���>�<K�'s�'/�EX�/�>Y�EX�	/�	>Y�EX� /� >Y�EX�/�>Y� ��	 9�����013326733:7#"&'##"&'#>�#"0�
%19
>%%���6*"+2,`]Tm0.,-	<c70���%�EX�/�
>Y�EX�/�
>Y013##".54>;|��4(1WB&&AV1*��$;W9?U5����������#��������������U���<.�'�|����Q|'��D&���G|'��D&����R�'��D&��g�F��)*�EX�'/�'>Y�
+�'�!ܸ�01%3267#".54>'7#"&54632'"*  0Q$b<+K7 $("�8,+88+,8�"4*" ! J)2(>)!0("%+�-77--99��	O6&&#��	O6&&$��	O6&&%��	OG&&&��	OH&&*��	O}&&,��S�f�EX�/�
>Y�EX�/�>Y�EX�/�>Y�
+�+�������01#!5##!#3#7
p��v-��|�vv1]+]�|���|�|���7�#9�&(/0��^6&*#��^6&*$��^6&*%��^H&**��J6&.#��J6&.$��J6&.%��JH&.*2�!S�EX�/�
>Y�EX�/�>Y�+�������01#5732+72>54.+3#GEE�FtR--PqC��&?--?&kk-B&OzTT|Q(w1P;:O/�G���BG&3&��&��26&4#��&��26&4$��&��26&4%��&��2G&4&��&��2H&4*Tp#)�	+�
	9�
�и
�и�01?'77'T��I��I��I�����J��J��J����C�*}�EX�&/�&
>Y�EX�/�>Y�&9��и��&9��	и&���и�и�и	�(�01732654&/&#"#"''7.54>327�%3<&)3<<&Ea:R;3N@&Ea:U?5N�sc!l$nb,$'*kBP~X/,I2]+rFP}U-0M2��@��6&:#��@��6&:$��@��6&:%��@��H&:*��H6&>$I6�9�EX�/�
>Y�EX�/�>Y�
+�+01332+#7254&+I�[5]E()F\4[��w<;R�c1P;:S6{�h3)�=��;�9Z�EX�/�>Y�EX�9/�9>Y�EX�/�>Y�"�"9��4�%49014>32#"&'732654.54>54&#"#=8V90H.")",A+*?"1*")")&��.P;!/= $1'!%3$"<,d
".!,(+#<3���=���&F���=���&F���=���&F���=���&F���=���&F���=���&F���Q�09E��EX�
/�
>Y�EX�/�>Y�EX�&/�&>Y�EX�,/�,>Y�1+�
,9�/�
��&
9�&��)&
9��6�,�<��C�017467.#"'>32>32#3267#"&'#".%4.#"3267./or94*P+,7:,&:'�0#%2H 6G'C""3#�%�.!1+�MS#$`(!%$&AW1"
33^*#)$(7�$14�0')��C�#$�&H�)��7��"�&J�
��7��"�&J�
��7��"�&J�
��7��"�&J���O��&��-��O��&��-��O��&��-��O�&��-/��&�4k�EX�//�/>Y�EX�/�>Y�#	+���&/9�&��/9��)и�2и,�01%265<'.#"#".54>32.''7&'77,4=8 6? ,�@O#A_<3ZC($>O,$B1#�&x+3@&I"�&kLK	:<-�<�r<fJ*">Y76T:-I KA<Y)EA��H�&S���/��)�&T���/��)�&T���/��)�&T���/��)�&T���/��)�&T�FIK%�+��ܸܸ�ܸ�01"&546324632#"&!!,#..##..t.##..##.��4�+""++""+��"++""++
h/��)*}�EX�&/�&>Y�EX�/�>Y�&9��и��&9��	и&���и�и�и	�(�01732654&/&#"%#"''7.54>327�"33$"33!*G[1L?,7.!*G[1L>-7{QAAQA#�!X7>aB#(5*8 X7>aB#'6+��>��
�&Z����>��
�&Z����>��
�&Z����>��
�&Z�����>;�&^�H�H)�$��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�9������"��$�01#3>32#"&'532>54&#"ۓ�G&.J3%<M(%<.#,0.-�u�L$B]9@cE$Q�$7&CC.���>;�&^���	O-&&'��=���&F���	O6&&(��=���&F�	�!e�	(e�EX�/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�%
+�+���01'.'##"&54>7#'##33267n

�;0B('�(�˰�!
<1n34m1<�61-)!����t	=�.+�1=��EX�/�>Y�EX�-/�->Y�EX�/�>Y�EX� /� >Y�-9�/��� ���(и-�5��9�0174>7.#"'>323267#"&54>7'##".732675=$O|X33$I*43u@hx1'
:-=	&Z0&<*�% !:7H*�*?,"&`&nr��0B.-%:')6+R��7��96&($6��C��$�&H�)��7��96&(%6��C��$�&H�)��7��9W&()6��C��$�&H�)��7��96&(.6��C��$�&H�)��A,6&).�����x&I�8��2��/��R�*��EX�/�>Y�EX�'/�'>Y�EX�/�>Y�EX�/�>Y�
)+�!9�!������9���
�и
�$и)�%�01&#"3267#'##".54>32'5#53533}'**<2.*�BxH&/M7$;L)+:���BO!>BE?���3$"A\;:]A"M,GJJ��^-&*'��7��"�&J�
��^6&*(��7��"�&J�
��^W&*)��7��"�&J�
^�!*�#^�EX�/�
>Y�EX�
/�
>Y�EX�"/�">Y�+�+���"��01!!3#!#3267#"&54>7!^�����%
!;0C
���|�{�| 	J1-(!7�."�18^�EX�"/�">Y�EX�/�>Y�EX�/�>Y�8*+����.�"�5�01%3267#"&5467#".54>32!3267'4&#"!+	
:-;%:dJ++H]29X:��Q7"=!A.3(>
.$B.-%:#C`>=`C$$@W3$	81�*4.0��^6&*.��7��"�&J�
��,��#6&,%��4�-<�&L���,��#6&,(��4�-<�&L���,��#W&,)��4�-<�&L���,�#�&,�"��4�-<�&L9��@6&-%����f&M%�j0U���EX�/�
>Y�EX�/�
>Y�EX�/�>Y�EX�
/�
>Y��ܹ�ܸ�и���и�и��01#37#####57533533����=���==���=�UU����A`___���EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�+�9������и�и��01>32#4&#"##57533#�#)1TM� )-�BB����l^��2.��,AKJG/��JG&.&��O�&��-��J-&.'��O��&��-��J6&.(��O��&��-J�!�#`�EX�/�
>Y�EX�
/�
>Y�EX�"/�">Y�+�"����и��0173#5!#3#3267#".54>7#J��Ę��)"";)�|�||�l|/	J#(!O�.��&g�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y����
��ܸ!�01#5!3267#"&54>7#"&54632�Z(
:-=
	*C+77++77}s�/B.-%90))33))0��JW&.)O��/�EX�/�>Y�EX�/�>Y���01!##OZ���}��;��6&/%��*�<��&\�-��D�R�&0���L�I�&P�LI�m�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	�и�
�013?3#'#L����˟�J�������H{��k 6&1$���>�� m&Q$�7��k� �&1� ��>� �&Q�>��k �&18����>�� &Q8���k'�&1�����
��9�&Q�����! �
I�EX�/�
>Y�EX�/�>Y��9��и�и	�01%!55737 �KJJ���||�)r)T��qrq�>�� �W�EX�/�>Y�EX�/�>Y�	9�	�и�
�	�ии��01%#"&=575#5!73267 ""&^_qq�#��
&
o_R?u@�t�PuQ�	��B6&3$��H�&S���B��&3���H��&S���B6&3.��H�&S�����&m�EX�/�>Y�EX�$/�$>Y�EX�#/�#>Y�EX�/�>Y�+���&#9�&�!�0167#"&54632%>32#4&#"#3.i
)25*9=WXfG2JE�!�xp/[2*.7UKR}(�-k]��!1-���@��&��2-&4'��/��)�&T���&��26&4(��/��)�&T���&��26&4-��/��)�&T�S�!O�EX�/�
>Y�EX�/�>Y�
+����
��014>3!#3#3!".7;#"*Je;"�yy���:bH(�((ITzO&{�{�|(Q|T;Q1�/N��P�4=��EX�/�>Y�EX�/�>Y�EX�*/�*>Y�EX�0/�0>Y�5+�0���	�*9�*�#�-*9��:�01732654&#"4>32>32#3267#"&'#".%4.#"�  �3D&+<>%%:'�/#"2F'C:-&C2�"�AMMAAMMA>aB#/'*,&AW133^(%&'#Bam$14��FH6&7$��t$�&W�'��F�H�&7���e�$�&W����FH6&7.��t$�&W�'��2��'6&8$��5���&X���2��'6&8%��5���&X���2�#'�&8/��5�#�&X���2��'6&8.��5���&X����#9�&9/��1�#&t&Y�I��96&9.��1��&&Y8���@��G&:&��>��
�&Z����@��-&:'��>��
�&Z����@��6&:(��>��
�&Z����@��}&:,��>��
�&Z����@��6&:-��>���&Z��@�!�(R�EX�/�
>Y�EX�	/�	
>Y�EX�%/�%>Y�+�%��%��013326533267#"&54>7.5@�,./.�>>$
";0Cjh��`;>>;��o^w
	J1-&�v>�.!�(��EX�/�>Y�EX�'/�'>Y�EX�/�>Y�EX�
/�
>Y�EX�/�>Y�
���к9��#��&�01!3267#"&54>7'##"&5332673
2&
:-=
!P6UL�*+�/B.-%I&-l^2��2.!F��T6&<%��T�&\���H6&>%���>;�&^���HH&>*��8#6&?$��F�&_���8#W&?)��F�&_���8#6&?.��F�&_���)�
)��EX�/�>Y�EX�#/�#>Y�EX�/�>Y�EX�/�>Y�"+�9�������9��
�"�!и"�&и�'�01732654#"'>32#"&'###57533#�-)8[/-I$.K3$<M*#EsBB����@H|.m"?Y7>`B#" 6,AKJG/:��0�"C�EX�
/�

>Y�EX�/�>Y�+���
��013267>32#".547!.#"�5*'7	��"[?7[B$%B]88\B$`;6#2KKLKG )-W}PP~W.-V}OSU.��&�+B�EX�&/�&
>Y�+�	+�&��	�и� �01.#"3##"&'7>?#5737>32
&'s-G6!2
WK2I4
+#7k�-N:!	l 6+�e+7N2&��S,G�EX�$/�$
>Y�EX�/�>Y��$��$9��&�01%2654&#"#".54>32>54&',3<<33<<=>0$)&Ea::aE&&Ea:B8 
sscbnnbcs�)3<+RP~X//X~PP}U-	/��I~-G�EX�$/�$>Y�EX�/�>Y��$��$9��'�01%2654&#"#".54>32>54&',33333332<."(*G[11[G**G[15$
kLAALLAAL)3:!_=>aB##Ba>>aB#@���$"J�EX�/�
>Y�EX�/�
>Y�EX�/�>Y�����01#"&5332653>54&'w!.swxv�,//-F
$)+��������`;>>;�
	>��n�#a�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�	
9��	��01#'##"&5332673>54&'Q8)x!P6UL�*+1
�)19�>G&-l^2��2.!F
��	O6&&.��=���&F���J6&..��O��&��-��&��26&4.��/��)�&T���@��6&:.��>��
�&Z����@���&:1��>��
9&Z0���@���&:3��>��
P&Z2���@���&:5��>��
P&Z4���@���&:7��>��
P&Z6���,��#6&,.��4�-<�&L�&�!2�&2K�EX�/�
>Y�EX�	/�	>Y�#+�	�и	�'��-�01#"&5467.54>323267'2654&#"�;0C(<Y;&Ea::aE&.@'& 
`3<<33<<�1-'<;\uAP}U--V}OCiQ85	�scbnnbcs/�.)�&2\�EX�
/�
>Y�EX�/�>Y�EX�$/�$>Y��и$���*�
�0�01467.54>323267#"&32654&#"�%-Q<$*F[21\F*.@'$
:-=33333333w&8(BZ9>aB##Ba>2L<-.B.�ALLAALL��2�'�&8�
��5��&X����9�&9���1�&t&Y�D*�<��5�EX�/�>Y�EX�/�>Y����01!#"&'73265#OZ5YC.K +15'��.-R>%i
36e	0�,c�EX�$/�$
>Y�EX�/�>Y��иии
и$��
9�� и�"и!�01%2654&+3#3254&++5#5732)<>==Bjj5g336�FH'C\5�KK�3W?$49i644/@GF$Q$ �OE4K1�A�%<,)JH��"�)v�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�/���9��!��$��%�013267#"&533>324&#">"$O|X33$I*43u@hxx&Z0%=*�% !:7H*g*?-"&a&nr8')6+R/���#�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y��9���9����
�01732675.#"4>32373#'##".�2.*));�$;N*&CsxK$/M7�JD�DH=`C$!3�3$$C`H��)�"��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y���9���9����	�01%4#"3267#"&'##33>32�^+,):�$<N*"FsxN+.J3���DRAdE$" 6�3$$A\4���5�EX�/�>Y�EX�/�>Y����01%#"&'732654&#"'>32,Kg:5i+<=%AQI< :D h?9cK+�>aB##&]LAAL[&#Ba6��!�#C�EX�/�>Y�EX�/�>Y�+���� �01%#"&'73267!.54>32.#"!+Jd:2h*0!="7N�� >[;0ZD)�	7*25�>`C#X18	$3W@$$C`0.4*7��"�#C�EX�/�>Y�EX�/�>Y�#+���� �017467!.#"'>32#".732677O
A6"B1+g2;aE&)F]3:X<�12+;�$	61\$C`=<aC$$AX+5-3/�<� /��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�
/�
>Y���9�9�
�!��$��%��(�01326?#".54>32373#"&'2675.#"#M79I#/M7#;N+N9s��*j,�+*$6,/#@$AY69]A$?3� eo�!0>B<�H�a�EX�
/�
>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�
9����01#57#"&5332673�S8TM� )-���_-l^2��2.K ��9� ��EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9���	������01!#'##"&'#"&533273326739n1, -	5*4:�q�>+)(!0UK\��.0O��.O4����T�EX�/�>Y�EX�/�>Y�EX�/�>Y�9��
���01!#'##"&'732673�x%h<!)%.Y �l<<

|6C2�|'�A�EX�/�>Y�EX�/�>Y��и�и�
�01%3##5#5354&#"'>32�}�y��260!Q0;R3ss��s�9/
j
9Q19�
@�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�901!#'.'##39�NN����&L''L&��T�!i�/�EX�/�>Y�EX� /� >Y�EX�/�>Y�EX�/�>Y� 9�9�901!#'.'##'.'##33>?3T�
g!�M�	��%H&&J#��%H&&H%��#G(D3�9�R�EX�/�>Y�EX�/�>Y�EX�/�>Y���
9�
��01&#"#'.'##>32�).גS
I��)5E.$O(-��#K'%K%�	.H1p�H�c�EX�/�>Y�EX�/�>Y�EX�/�>Y�EX�/�>Y�9�	9�	��01###73753����˟�J��}��$�H{���:�/�/�EX�/�>Y�+�9���013>32#54&#"#�h5$92hh�p<H>˾�����4�EX�/�	>Y�+����ܸ�013#"&'7326=#7"&54632��$<.0"~�&&''M��7)
I	#�~!##!��U6�/�EX�/�	>Y�
+�9���0133>32.#"#�V@#5hMH)'V",�S�M!Z�/�EX�/�	>Y�EX�
/�
	>Y�EX�/�	>Y���и
��� �0133>?33>?3#'.'##SfG^1xwM�02dd00���f/,#f���MA�EX�/�	>Y�EX�	/�		>Y�+�9���017326?33>?3#"&'7��h/(ct".�?�./��� 0N���"������"�������
�
+�+012654&#56'�2$$2QNNQ2&&6E88E��p�
�+�
+01"3&546p2%%2QNNQ�&&6E88E���>������>����yx��+013#�Z����P������>������>~���xb�+01#3x�Z��k���>������9������$������.�����?������=������(�EX�/�>Y�+���0133267#"&=#��
%D<D��PK?����U)+�&+�+�&9�90132654&'.54632.#"#"&'�50'!PF+D/,-)!RN*Sk
	.:=
!->|�MK�/�/�EX�/�	>Y�EX�/�	>Y�9��и�
и�01'33>?3#'&'##�holioo"l��33��33�>~��+013#��Yk��>���+01#73EkY�>��>���+��ܸ�013#'##�|dk55k�__�?��'�+��ܹ�и��01>3232673#".#"#�	>.K	>.
K?IFHG�P��
�+01!!����]�>���	+�	�ܸ�01".'332673,%7$RR$7>+9 ++ 9+�9��
�+01"&54632,+77++7790))33))0p;���+��и��01"&546323"&54632�#,,##++�#++##,,;-"!--!"--"!--!"-�-���+��ܹ�01>54&'7�$+\L&3g
J1(%
�$���+��ܸ�01"&54632'2654&#",3>>33>>3$7//77//77�=��+��и��013#73#�u_Z�u_[ԗ���>���+��ܸ�013373#�k55kd|�``�E=���+��и��01#'3#'3�Z_uf[_u=���� a��
+���01632#"5467a8 B03�'S*C�m��
+���0167#"&54632�8B03J'S*C"��~�+���01>54&'7"%
e.>#� ,)!0����
�+01"&54632,+77++77�0))33))0��(���+��и��01"&546323"&54632�''''�''''�())(())(�����+��	ܹ�01'>54&'7D50@$$/*'&%
;6�#��+��иܹ
�01%3'>54&'V 0@$$/"/#%
;
�.��EX�/�>Y�+014>733267#"&�
S6
:-=w&*-B.��.���
�	+01".'332673,#3"RR"3�&3""3&��C���
�+01!5!����^���U"9�/�+�+� +�9���01467&#"'>32#'##"&732675�\g5.%!L(AJU309d6)_5:
+CIN�!:25����T�/�EX�/�>Y�+�+�9�9�����013>32#"'##732654#"�h/?G(30)	Qh

#8�p1\K*C-+#_*2U����!T�
/�EX�
/�
>Y�+�+�9�9�����014>32'53#'##"&732675.#"�(3%gT0@Lk
$�(A,1o�2 [R/*�	*���U"!�+�+�
+014>32#327#".74&#"�/; &9%�2"&'#D&@0� '�(@-+:!#=,@L! �z�UBNd�EX�#/�#	>Y�>+�!I+�8	+�C.+�	89��
и.�1ии#�&�01732654&+"&'475.54675.54>323##"&';2#".72654&#"�,%&1(	U4'4�A&2

<BGl\ 8(��	
 '!
+-K*
	
&-5B	 ����S�/�/�EX�/�>Y�EX�/�	>Y�
9�
��	9�	��013373#'#�hrq|�pQ-h��}��},Qs�UT�/�/�/�EX�/�	>Y�+�+�9����0133>32>32#54#"#54#"#sN
 .$#'cPbM)6 :1��������U�+�+014>32#".732654&#"�/<!!<//<!!</j    �)@--@))@,,@))11)*00���UT�/�EX�/�	>Y�	+�+�	9�	9�����01%#33>32#"&'732654#"hU3?F(3'

#8�_� \K*C-E*2U����I�EX�/�	>Y�EX�/�
>Y�
+����и�	�01#5?33#327#".5�EJ
W�� #3(8"�MVVQn$J&5!���MA�EX�/�	>Y�EX�/�	>Y�+�9���01#'##"&=3326753�U5#92hh-H=̿
�v�M
3�/�EX�
/�
	>Y�EX�/�	>Y���0133>?3#vh0
0cuxM�22������U�+�+014>32&#"3267#".�3C%"50'//$ )@&@0�)@-@0*)1	A,@���8�
/�EX�/�	>Y�+����01.#"3##5#5754>32�#<oogJJ%9'3}3	Q��M	0$��M	4�	/�EX�/�	>Y�	����017#5!3!���#����;�Q7�Q��A�,�&)����/��&I�	��A�C,�&)����/�C�&I�	��,��#-&,'��4�-<�&L���@��&-���H��&M���@�.�&-���H�.�&M���k� �&1� ��>� �&Q�>��7� -&1&'�� ��>� �&Q'�����>��k�C �&1� ��>�C �&Q�>��A��&2���$�=�&R���BW&3)��H�&S���B��&3���H��&S���B�C�&3���H�C�&S���F�H�&7���j�$�&W����F�H-&7&'���j�$�&W&�'����F�CH�&7���B�C$�&W����2��'W&8)��5���&X���2�'�&8�
��5��&X����9�&9���1�&t&Y�D���C9�&9���1�C&t&Y�D��T6&<#��T�&\���T6&<$��T�&\���TH&<*��T�&\���HW&>)���>;�&^���8�#�&?�
��F��&_���1��&d&Y����@��5�*h�EX�/�
>Y�EX�)/�)>Y�EX�/�>Y�! +�	! 9����%�%9014>32#"&'732654&/7.#"#@:[@WqH*!+@+8LL33
K%-(��.Q<#eRz +9%(F3&Y( 3V}$=>�Z��H6&>#���>;�&^����H�&>����H�&^����Hv&>+���>;�&^���HG&>&���>;�&^�P�6
�+01!!P��H6o�D6
�+01!!0��6o�"���+01632#"&5467�57
(36*8=WXkD01*.7TLR}(�"���
+0167#"&54632�i	)36*9<VXp/\2*.7UKR}(����������4"�'�|����F"$�'�|����F�$�'�|�������e���
+01%".54>32,#<,,<##<,,<e,:#";,,;"#:,����+01757��>>���7��7����+01%'7'?>��>��7���7Gp�+01?'7�3��3�e�/��0�����������*�/�EX�/�	>Y���ܸ�013#5#7"&54632��h}�&&''M���~!##!����������������������������������������� ����_�\!����_�\"���U:�/�/�EX�/�	>Y�+�9���0133>32#54&#"#�U5%83hhM*H>˾�����K���W���W���W����W���W����K���W����W���W����K���W����K���W����W���W����K���W����K�� �W������!�W������"�W���U!!�+�+�+014673.#"'>32#".73267��)!&#@ L]-; &9&X %�#?\Q(?-+:
! O��3�
4��EX�$/�$>Y�EX�/�>Y�й���$��и�и�
и�и�ܸи�и$�!и$�#ܸ�(�#�)и(�+и�1и�2и2/01%&+#7&'#7.54>?33273&'672	24&($-&Z62
2KY"?X722
2Q02%v�eKf7R).cciy �vFqT4	gbdq
O�h	+C&�1}�EX�/�>Y�EX�/�>Y�
+�$'+���
�и/�'�
и$�и/���
�*и�,�01%!5>7#573.'#57&54>32.#"3#3#&�-?pO[C"<T2>Y#O,07����||[A,EE/L5*'P.0
KJ)<{+��EX�#/�#>Y�EX�'/�'>Y�EX�/�>Y�EX�/�>Y�+�&+����к	#9��
и&�и#���и�и�и�и�и�и/��и&�!и!/�&�)�01#3#3'3'#'3'#3##'##5#575#57533533�;/!*�;/!*GEE�YKjFFFF�YKjEV0:�0:~�0:����404����:;{!c�EX�/�>Y�EX�/�>Y�+�+����
и�и�и� �01267#53.##+##575323,6��
6,5=+?P,,�DD�,P?*>3&#I�H&"�+>)�|U�'?-[2�-V�EX�/�>Y�"+����
�"�ܸ'и�-�)и-�,�017!!.#"3267#'##"&54>32'5#5353h��]	"2*##�Hd	;#N]2? %/��yJJh+&0,aD�n$b\*B/CJ11-��G�1m�EX�/�>Y�EX�/�>Y�($+�(�+�и(�и$�и$�!�и���.�01%#".'#57&45<7#57>32.#"3!3#3267G)d=3XG2@77@�l3_%Q4 3B�����B1#6P-/9U8EDpz(&O>9JK7:;{
5��EX�./�.>Y�EX�$/�$>Y�	"+�.��й�ܹ��и�и�и�&и�)и�*и�-и�4�016454&'#27#53&##3#+##575#575323w�">~}@5;;F.<H',�CCCC�(H;-G�
-a''�$$^
:"1 �Z4.4�1#C���&S�EX�/�>Y�EX�/�>Y�&+��и�и���"�013#5.54>753.#"3275#K�I)b2S<"!<S3b*KQ4 BFJA"Lj��$ff1QqGEoT5
he(Pqehl
zO��3�${�EX�/�>Y�EX�/�>Y�EX�
/�
>Y�EX�
/�
>Y���
��
�ܸ�ܸ�!и�"�01#5.54>753.'67C012/�!O/Q5ZA$#@Z7Q*NQ"+#jTUj$-ed0RrJGrT4][' O
�Z
(X{p�EX�/�>Y�EX�/�>Y�EX�/�>Y���иии��и�й
�
и
/01#3##'#5327#573.+5!�%LJI6���VJt�Q�
E8J�12J@Q��uGDu$��'{#]�EX�/�>Y�EX�/�>Y��9��"ии�иии�и�01%>54&'7'55755753779,y;o�dUUUU�����}", DiE"�)Q)7)Q)�~MQM7MQM�F~
�+01!!F�4~h��Gp�����D(�EX�/�>Y�
+���01".54>32'2654&#", 6((6  6((6 ,?''=++=''?,O(33$$33(��8
�EX�
/�
>Y�+01%#5>73#QSk�@����D,�EX�/�>Y�+����017>54&#"'>323!�5'>@)<F2\��7(% 
#8$:3#@W����D*:�EX�'/�'>Y�+�
	+�'��	
901732654&#52654&#"'>32#"&'�-#& "*D)+ #$1F#`7	>
!!
&%��88�EX�	/�	>Y�+�
+��и�
�01%57###5#5733A"!�3^�x�3c>;B==3ȹ����8 D�EX�/�>Y�+�	+���	9��
�01732654&#"'73#>32#"&'�++Յ2;$1"D#`�X#3.(����D	&F�EX�/�>Y�#
+�+���#9���01%2654#"7.#">32#"&54>323&d
&"'.6!.HN)=) 6C�."0.)]J"=.��8&�EX�/�>Y�+��	�013>7#5!#�
 �#	p"854W8 ;<B'����D6<�EX�4/�4>Y�#+�4��49�#901%32654&'7654&#"4675.54>32#"&5
&"-6H
	#1<JW
`
z"!
1*!5����D	'F�EX�$/�$>Y�+�+�$9���$�
�01%3267.#"3267#"&54>32#"&'%#3
&!!.-6!.#8'*=(!6�
�-!//),>%!=/����
�+017467.�93O)**)O39�Ow800g78g008w����
�+01%'>54&'7�93O)**)O39�Pw800g87g008w��w6�+013#��Qu6x���6�+01#73VuQ��x���6�+��ܸ�0173#'#�`�`q55�xx==���G+�+��ܸ�и���01".#"#>3232673k"
K<'"
K<�ECEC���-
�+01!!���-]���6
�+��ܸ
�01"&'332673,BAQQA�B66B���W
�+01"&54632,%00%%00�+""++""+���H�+��и��01"&546323"&54632�''''�''''�((((((((���v�+��ܹ�01>54&'7�$+\L&3�I1(%���}�+��ܸ�01"&54632'2654&#",3>>33>>3�5--55--57��6�+��и��017373#�?}Y�}Zc�xxxx���6�+��ܸ�01#'337�`�`q556xx==�#��+��иܹ
�01%3'>54&'V!1@##/"/#%
;
�;�9+�+��и�и�ܹ�01"&546323"&54632%!!�####�####����;#$$##$$#�E����+�
+�
�ܹ��и
��01!!"&546323"&54632���*####�####�E�$##$$##$�;�P%�+�
+��и
��013#"&546323"&54632;~s^####�####Po�#$$##$$#����)�
+�
�ܸܸ�и
��013#"&546323"&546322�vu####�####�x�$##$$##$�;�P+�+��ܹ��и��013373#"&546323"&54632�d..dV|%####�####P::o�#$$##$$#����+�+��и�и�ܹ�01"&546323"&54632#'337�####�####*`�`q55�$##$$##$xx<<�;�P)�
+�
�ܸܸ�и
��01#'3"&54632#"&54632p^s~r####�####�o��#$$##$$#����)�
+�
�ܸܸ�и
��01#'3"&54632#"&54632wuv�i####�####Vx��$##$$##$�$[
�+01'3^$�E��!���+��	ܹ�01.54>7OC61@$$/+!'&&;
6>.e#�A�`��	��
�'�$9�	,	E	u	F�	(�	�/	$�	�.	4Q		�	2�	
#�	H9�Typographic alternatesTypographic alternatesSource Code ProSource Code ProBoldBold1.017;ADBE;SourceCodePro-Bold;ADOBE1.017;ADBE;SourceCodePro-Bold;ADOBESource Code Pro BoldSource Code Pro BoldVersion 1.017;PS Version 1.000;hotconv 1.0.70;makeotf.lib2.5.5900Version 1.017;PS Version 1.000;hotconv 1.0.70;makeotf.lib2.5.5900SourceCodePro-BoldSourceCodePro-BoldSource is a trademark of Adobe Systems Incorporated in the United States and/or other countries.Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.Adobe Systems IncorporatedAdobe Systems IncorporatedPaul D. HuntPaul D. Hunthttp://www.adobe.com/typehttp://www.adobe.com/typeCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.



This Font Software is licensed under the SIL Open Font License, Version 1.1.



This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL



-----------------------------------------------------------

SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007

-----------------------------------------------------------



PREAMBLE

The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.



The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.



DEFINITIONS

"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.



"Reserved Font Name" refers to any names specified as such after the copyright statement(s).



"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).



"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.



"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.



PERMISSION & CONDITIONS

Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:



1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.



2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.



3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.



4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.



5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.



TERMINATION

This license becomes null and void if any of the above conditions are not met.



DISCLAIMER

THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.

This Font Software is licensed under the SIL Open Font License, Version 1.1.

This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL

-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.

The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the copyright statement(s).

"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.

"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.

5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
http://www.adobe.com/type/legal.htmlhttp://www.adobe.com/type/legal.html��2:	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������	����������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�����

��� !"��#$%&'()*+,-./012��3456789:;<=>?��@ABCDEFGHIJKL��MNOPQRSTUVWX��YZ[\]^_`abcdefghijkl�mnop��qrstuvwxyz{|}~����������������������������������������������������������������������������������������������������������������������������������������	

������������ !"#$%&'()*+,-./01234�56789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXNULLCRuni00A0uni00ADtwo.sups
three.supsuni00B5one.supsAmacronamacronAbreveabreveAogonekaogonekCcircumflexccircumflex
Cdotaccent
cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve
Edotaccent
edotaccentEogonekeogonekEcaronecaronGcircumflexgcircumflex
Gdotaccent
gdotaccentuni0122uni0123HcircumflexhcircumflexHbarhbarItildeitildeImacronimacronuni012Cuni012DIogonekiogonekJcircumflexjcircumflexuni0136uni0137kgreenlandicLacutelacuteuni013Buni013CLcaronlcaronLdotldotNacutenacuteuni0145uni0146NcaronncaronnapostropheOmacronomacronuni014Euni014F
Ohungarumlaut
ohungarumlautRacuteracuteuni0156uni0157RcaronrcaronSacutesacuteScircumflexscircumflexuni015Euni015Funi0162uni0163TcarontcaronUtildeutildeUmacronumacronUbreveubreveUringuring
Uhungarumlaut
uhungarumlautUogonekuogonekWcircumflexwcircumflexYcircumflexycircumflexZacutezacute
Zdotaccent
zdotaccentuni0180uni018Funi0192OhornohornUhornuhornuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCGcarongcaronuni01EAuni01EBuni0218uni0219uni021Auni021Buni0237uni0243uni0250uni0251uni0252uni0254uni0258uni0259uni0261uni0265uni026Funi0279uni0287uni028Cuni028Duni028Euni029Eh.supsj.supsr.supsw.supsy.supsuni02BBuni02BCuni02BEuni02BFuni02C8uni02C9uni02CAuni02CBuni02CCl.supss.supsx.supsuni0300uni0301uni0302uni0303uni0304uni0306uni0307uni0308uni0309uni030Auni030Buni030Cuni030Funi0312uni0313uni031Buni0323uni0324uni0326uni0327uni0328uni032Euni0331a.supsb.supsd.supse.supsg.supsk.supsm.supso.supsp.supst.supsu.supsv.supsc.supsf.supsz.supsuni1E0Cuni1E0Duni1E0Euni1E0Funi1E20uni1E21uni1E24uni1E25uni1E2Auni1E2Buni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E6Cuni1E6Duni1E6Euni1E6FWgravewgraveWacutewacute	Wdieresis	wdieresisuni1E8Euni1E8Funi1E92uni1E93uni1E97uni1E9EYgraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9	zero.supsi.sups	four.sups	five.supssix.sups
seven.sups
eight.sups	nine.supsparenleft.supsparenright.supsn.sups	zero.subsone.substwo.subs
three.subs	four.subs	five.subssix.subs
seven.subs
eight.subs	nine.subsparenleft.subsparenright.subsuni0259.sups
colonmonetarylirauni20A6pesetadongEurouni20B1uni20B2uni20B5uni20B9uni20BAuni2215	zero.dnomone.dnomtwo.dnom
three.dnom	four.dnom	five.dnomsix.dnom
seven.dnom
eight.dnom	nine.dnomparenleft.dnomparenright.dnomuni0300.capuni0301.capuni0302.capuni0303.capuni0304.capuni0306.capuni0307.capuni0308.capuni0309.capuni030A.capuni030B.capuni030C.capuni0327.capuni03080304uni03080304.capuni03080301uni03080301.capuni0308030Cuni0308030C.capuni03080300uni03080300.cap	uni030C.a	uni0326.a���m�U��w��PKCH[䍒�TtTt^share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttfnu�[��� DSIGtLGPOS�,HPGSUBV.TI|OS/2ٮ��J�`cmapRԟ�J��cvt '�i�8fpgm�zAj4	�gaspi�glyfmr��O��>head��d��6hhea�`�L$hmtx4W��pTkern@�B���g�loca�E�/R�,maxpC
�T� name��UTpost:�]fX�prep�x9�s��
0JDFLTlatn����kernkernGr�����T��v		�

����
V
��8�,^$^�0��
D��J��J���J�L F �!z"##P#�$4$~%x&&�'�(�)�*�+�+�,J,�-n..�/$/V/�/�/�1�242n2�2�33V3�3�44J4�4�4�5�5�6�7�7�7�8~8�8�:�;";�;�<�=2>,?&?�@�A�B�C8C�D�E.F(>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U0��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���0��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;q6	��
6
6�A���A������":#��$��&��*��-�i2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l6m��o��p��r6tPuPw��y��{P|6}�������������������������������������������������������������������������������������������������������������������������������������������������������6�6�A�6�6�A��A�����$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������
��m��o��y��}�������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	�|�L�L�|����"$�|-�:D��F��G��H��P��Q��R��S��T��U��X��w����|��|��|��|��|��|��|�������������������������������������������������������������������������|�����������L�L�L��|	����$����������������������������+

��#��&��*��2��4��I��W��Y��Z��\��k��lm��o��p��ry��|}������������������������������������������3��
��
���;#��&��*��2��4��7�89�J:�h<�,?�JY�|Z��\�|k��l��m�;o�;p��r��t�,u�,y�;{�,|��}�;�����������������������,��|��|�����,�;�;�����;�;�;$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������/	�v�C�C�v$�v-�JD��F��G��H��R��T����v��v��v��v��v��v��v����������������������������������������������������������v���������C�C�C��v$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������#��&��*��2��4��7��8��k��p���������������������������������������f	�|�L�L�L�|�f�f"'#��$�|&��*��-�82��4��D�/F�/G�/H�/J�EP�fQ�fR�/S�fT�/U�fV�JX�fY�WZ�[�Z\�L]�_k��m�Lo�Lp��w�fy�L}�L��|��|��|��|��|��|��|�����������������������/��/��/��/��/��/��/��/��/��/��/��/��/��f��/��/��/��/��/��/��f��f��f��f��W��W�|�/���/�/�f���/�J�J�_�_�_�L�L�L�L�L�L�L�L��|	����$����������������������������q6	��
6
6�A���A������":#��$��&��*��-�i2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l6m��o��p��r6tPuPw��y��{P|6}�������������������������������������������������������������������������������������������������������������������������������������������������������6�6�A�6�6�A��A�����N:	��
:
:����������$��-��D��F��G��H��J��P��Q��R��S��T��U��V��X��l:r:t<u<w��{<|:��������������������������������������������������������������������������������������������������������������:�:��:�:�����+

��#��&��*��2��4��I��W��Y��Z��\��k��lm��o��p��ry��|}������������������������������������������m7	�r
7
7�'�J�'�r����"2#��$�r&��*��-�82��4��D�AF�AG�AH�AJ�WP��Q��R�AS��T�AU��V�AX��]��k��l7m�Jo�Jp��r7t>u>w��y�J{>|7}�J��r��r��r��r��r��r��r�����������������������A��A��A��A��A��A��A��A��A��A��A��A��A�����A��A��A��A��A��A�������������r�A���A�A�����A�A�A�������J�J�7�7�'�7�7�'�J�'�J�J��r��"##��&��*��2��4��k��m��o��p��y��}��������������������������������-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������E
E
E��lErEtdud{d|E�E�E��E�E����
��
��Y��\��l��r��t��u��{��|����������������D��F��G��H��R��T���������������������������������������������������������������������
��
��Y��\��l��r��t��u��{��|������������������
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������"�h�hD��F��G��H��R��T��������������������������������������������������������������������h�h�h.	���r�r��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������r�r�r���	��������$�������������������������������D��F��G��H��R��T�������������������������������������������������������������������.	���h�h��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������h�h�h���-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U	�T�T$�T9:::<(?:��T��T��T��T��T��T��T�(�T�(��T	�T�T$�T9:::<(?:��T��T��T��T��T��T��T�(�T�(��T&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���	�T�T$�T9:::<(?:��T��T��T��T��T��T��T�(�T�(��T>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������
��m��o��y��}�������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������	����$����������������������������	����$����������������������������	����$����������������������������	����$����������������������������m7	�r
7
7�'�J�'�r����"2#��$�r&��*��-�82��4��D�AF�AG�AH�AJ�WP��Q��R�AS��T�AU��V�AX��]��k��l7m�Jo�Jp��r7t>u>w��y�J{>|7}�J��r��r��r��r��r��r��r�����������������������A��A��A��A��A��A��A��A��A��A��A��A��A�����A��A��A��A��A��A�������������r�A���A�A�����A�A�A�������J�J�7�7�'�7�7�'�J�'�J�J��r$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�������������������������������������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������.	���r�r��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������r�r�r�����
����
��@��[��`��l��r��|������.	���r�r��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������r�r�r���:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������
��m��o��y��}���������
����
��@��[��`��l��r��|������"�i
�i
�i��9�^:��<�h?�^Y��Z��\��l�im��o��r�it�}u�}y��{�}|�i}����h�������h���i�i�i�i�����
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|������m7	�r
7
7�'�J�'�r����"2#��$�r&��*��-�82��4��D�AF�AG�AH�AJ�WP��Q��R�AS��T�AU��V�AX��]��k��l7m�Jo�Jp��r7t>u>w��y�J{>|7}�J��r��r��r��r��r��r��r�����������������������A��A��A��A��A��A��A��A��A��A��A��A��A�����A��A��A��A��A��A�������������r�A���A�A�����A�A�A�������J�J�7�7�'�7�7�'�J�'�J�J��r��"##��&��*��2��4��k��m��o��p��y��}����������������������������������"##��&��*��2��4��k��m��o��p��y��}����������������������������������"##��&��*��2��4��k��m��o��p��y��}��������������������������������&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U0��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U0��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���0��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���&��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^���>	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U:�J
�J
�J��#��&��*��->2��4��7�|8��9��:��<�h?��W��Y��Z��\��k��l�Jm��o��p��r�Jt�Iu�Iy��{�I|�J}�������������������������������������h�����������h�����J�J�J�J������r

#$&')-./2345789:;<=>?EHIKNPQRSUYZ[\^klmoprtuy{|}����������������������������������������������������������
8�DFLTlatn����case&case,liga2liga8sups>supsD,>B	

@LO,{tuCjqv�������I��xx�t���P`KtyPL�J�z��� ��� �&
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a���������������������������������rdei�x�pk�vj���sgw�����l|����cn���m}�b�������������������y���������������������q���z���`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ-��(8<@J@GBhf[[		QCQ
D@?($#-$
+>32#'.54>54&#"#"'4632#"&!!7!!�9DO.?gI)-60#z
-5-I9)8(c>0((0>���22c��u&#@[87P;+&%ia/(&.8'3<��/@)(?��g6,����
!&@#QCSD

+#>74>32#".FuF�!-."".-!���-UV\44\VU->��."".-""-����
*@'	BQD

$+#"&=!#"&=�$"%�$"%��ߛ""�!�ߛ""�!6��<@H@E
Y	CQ
C
D@?>=<<6431.-(&##!#!+#"&547#+#"546?3#7>;>;3323+32%3#�Nq�t0M��+�j�'&�v
-N���Mv�&%�j����j���X]��#�(
7KGk �X�	��G��
7KG�bf8CN�@J)?BAK�	PX@$jhfkCDK�
PX@$jhfkCD@$jhfkCDYY�#'#%+.'7632.54>?>;#".'+4.'>�w�?=+A\Dg>w]9B|�o@&g�30%6I2]@~c>F��u"@�":N,`JsP)�5H)WHkG"aKN&1/1KoRS�xL��Q;@"!�2IlO_��S��,A0#�2Oh�*?1%�-DUZ����'1EY�K�PX@'[	[SC		S
DK� PX@+[	[SC
C		SD@/[	[CSC
C		SDYY@
VT((%#&((($
+#".54>324.#"32>>;+#".54>324.#"32>�;`{A8^C%6]}F8^C&�$1(G4$1'G5w|��
~:`|A8]C%6]}F8]D%�$1(G5$1'G6xc�j7)MoFc�k8)NpH2H."JsQ1E-!GqU��
�c�i7)MnFc�l8)NpH2G."JrQ1F-!Hr9����BN�@;LK.&BK�PX@*hSCS
CS
D@(hSCS
CSDY@IG20)'#!
BB+2#"'.#">7>;#"./#".54>7.54>3267�FrR-e)<)3R; /2B)6w[G�`^�R�b65]}H'%9i��q#=T1_�F��sr�,Nj>!8-&C[49x?�gB�Gs�`��zWf1[�QO�u\ B�?R�j>��8W<VF�>�����
@	BQD

$+#"&=�$"%��ߛ""�!z��S
�(+.547*Q*;& U�uGJrN)�J���C.V���S�	�/r�������
�(+4.'&546?
'.547>9)R);& T�uFIsN)1I���C/W���T������.r��a��6C@0,+'$#	BK�PX@kD@
jaY@
66+7>7'767&/7&546?3>?'.'i�!�$$$�3�T
	� �# �2�a�!

dIefIe��!
dIefHd
�s�A�.@+jkMRF+!!#!7!�5��f5�5�i�6��S��Q���2��$�@
?S
D"+74632'&54>7#"&2A6.1F-
 *'4A{/B'3-a_Z&&5E*Ea<�@MQE+!!s��8��-��'�@SD($+74>32#".-"--""--"n."".-""-����.�	@kD#"++>;]:I�4 I "�!O��j�',@)SCSD''	+2#".54>2>54.#"�_�sAb��~`�sAb�� T�qB-Le8T�qB-Le�I�ے���kI�ۓ�J�k��Y��x�j0Y���x�i0���*@'
BhCR
D$+7!7#"&/3!!�6{��,֌����M�
Kq��/J�4;@80BhSCQ
D-+'%
44+2>3!2!7>7>54.#"#"&/>�S�f99b�J�Q)R&��HIrO)#>U2p�%#Wc���/Z�R[��~C�x
"5;)�AusxE6R6ufb�f4]��X�CU@R?
Bhh[SCSD<:64.-,+#!CC	+2#".'763232>54.#7>54.#"#"&/>�T�b6*MmCz{V��jd�jBP,B\AR�W.N�f��">T2r�&#Xc���.UxIOyZ;#�pl�{B.\�_:W:8Zr;0Q;"{��5P5veb�f4-f�'@$
B\C
D!#+3+#!"&/3>7!���.�/��"+����b��{W���7�9D��F�.@@=,+Bh[QCSD(#&(""+#!632#".'763232>54.#"'!<37�9so\i�i4]��u?p_N=/C_CS�d7$HnK2sDg��M$/�9d�Q~͐O)6J%8e�V9]C$�h��0�22@/B[CSD/-%#	+2#".54>7>;>32>54.#"�O�e:T��vb�l99W<�3��.%7���$Dd@O�a6'Ge>O�^5l2`�Wo��P<n�_>wy}E���3,$)�!;cH(5^�L=cE%8_~���$@!BQC
D$'++>7!"&=7�
	�'����D-�+�)uR��>�3GD@AB[SCSD54! ?=4G5G+) 3!3	+".5467.54>32'2>54.#"2>54.#"c�r>��aaH�iZ�e6��t|Q��cN~Z0-Lc5Bz_9$Fd�QqG :X;HoL'9Y3^�Q��)&�bX�q@4[{F��-#�ui�w?�.RtF@Z9$LwS5W?#�4Sf3-N;"-Lh:+P=%�w�12@/B[SC
D.,&$	+".54>32+>74.#"32>5K�`7R��p^�h8;T6�c0��.=�P%D_:I{Z3�xO~Y0M0\�Ti��N;j�XH}vvB�<6-/�:_D%2Y{Ju�5Zv-����';K�$PX@SCSD@[SDY�((($+74>32#".4>32#".-"--""--"d"--""--"n."".-""-	."".-""-.����,D�
?K�$PX@SCS
D@[S
DY@	)'"+74632'&54>7#"&4>32#"..A6.1F-
 *'4Ai"--""--"{/B'3-a_Z&&5E*E."".-""-���W�(+�6�#/+��-��
�
�'0����!@YMQE+!!!!�Z��:X��=�Ѓ}��X�(+	7>7%>7.'%.54>7����/+�Z�|�o
�
�'0�n����%95@2BhfSCSD(&#*$+>32#7>54&#"#"'4>32#".�!KWc8FqP*/HWO=
%w5LWI1_Q8R;'

!-."".-!4(*Je;TvW?;@+��0JA>H[=NZ$��."".-""-M��MTdf@c
[
<Bh[

[	[OSGVU^\UdVdLJ@>9731)'TT
+%"&'#".54>3232>54.#"3267>32#".54>32%2>7&#"FR?�H0G. ?[w�T?[)�!3aK.Dz�e��lP��v��Lk�����_<k���muϛZEv��1<:8k#)I�a92�JMPE#<R0<~uhN-��4L#F�it�v<u�્ړL>03HR_����ɥu@O�؊םYu3WC(	Gr�I9H����
$@!BZC
D# +!#"&'!+3!.'��N���	%����>�
^����zQB&&Cae�*=@:B[SCS
D*(" !+3!2#!2>54&#%32>54&+a��p�h2%JoJ��G��y�?OxP(�����QyQ(|���-SwI@tbL�pc�xB��*NnE_q�+MlAggd����/D@ABhfSCSD'%" 
//+%2>32#".546$32#".#"�BfN7)	A^���̍Kt��L|fS$@(EmWtʔU:g�� ' Qfq\�䉻6�{2F+N

(/(]���o�{Ba=�@SCS
D!(!$+#!!24.#!!2>=q����ՔP�7g�]�Ό2xƎO1����v�Z��l�yA��[��aA�(@%YQCQ
D+!!!!!!.��<��=u�ϱ/�����aA�	"@YQC
D+!!!#!.��?��L��/�����d��%�:G@D&
Bh[SCSD20+)" ::+%2>7#"&50>17!#".546$32#"'.#"�4ZOI$'�	�C6s��R�ӖQs��S�nY%<
5KjK{͓R;l��D

O��':']�芹3�z2D(N


)%^���q�~CaE� @ZC
D+!#!#3!3��Q�EP���O�O���r��}����@C
D+!#3=���������QK�PX�B�BYK�PX@CSD@hCSDY�#%"+#"&'7>3232>73���6^0
!+4\J3u���m"N~\�r%� &@#
B\C
D'(% +3267>;#".'.+#3�B#-�,���%#����'+QQ���" ��	
#�Y
	<�n�af�@CR
D+%!!3/7������av�"&@#BhC
D!6(+67>;#>7+"'#3243����	��/.������[�'*'�	�g#.�~++�.���	�{aE�@BC
D!+2>73#"&'#3rj���^�����`���)�gH���d����)@SCSD(((&+#".546$324.#"32>�4_���k�ӕOr���ӕO�8g�]vƎP8g�]xƎO2zڹ�h8^�扷3�|_��m�|D_���m�|C^��ri�/@,[SC
D
!+#!2#32>54.#nB���r�m6J�υtJ�U�X."DhE���6d�Vq��M�4]�L:\A#d����0P�BK�PX@SCSCD@kSCSDY�(((%&+#"&'#".546$324.#"32>�3^�R!�"5�6q<�ӕOr���ӕO�8g�]vƎP8g�]xƎO2yظ�4�w^�扷3�|_��m�|D_���m�|C^��rU�#7@4B[SC
D#",!+#!2#"'.#32>54&#vJ��yr�m54b�W 5�1��
"%/D�U�Y-��Y���0YNW�wS&��(���0WwGms����==@:=BhfSCSD;9(&#!#"+#".#"#"&'7>3232>54.54>32�&;T?@dE$0NeheN0F��t��AB,DdKEoM*0NcicN0@x�ln�9�#)#(E\54G3')2JhJf��PeVY-7-,NmB7I2%&0JlOX�|JTI{�� @QC
D+!#!7��Y����W��������$�#@ CSD+%2>73#".5473vP�eAk�jc��{o�w>j�k'Ko�>m�Zi��{ӛXH��j-/i��&K|Z1|W�@BC
D, +32>7>;#|���%��7��� M**L!�g���,!@'
BC
D,> +32>7>;2>7>;#.'#���
�$+�

�'�����
�/���
( <��
:  :��gO&&������@BC
D'"(!+	3267>;	#"&'+�	
l��z���
�Q$�������l��
q
��$y��@BC
D,"+#32>7>;�G�G����
}!�=��;^��44>��$@!QCQ
D+!!7>7!7�	����"	l�7�<�l�;��!��W�'@$[OQE!#+!+32!�W�ř��C��	l��q�	@kD# +32#"&'lI +iH2�"�9" ���)�'@$
B[OQE!#+!!7>;#"&57�X�	����C80��@
BkD+!+3#"&'.'+>rg��
����z`+,+��������X@MQE+!7��+�ttM���	@kD		+2#"&'�
kc���0���+^@ BK�"PX@SCS
D@SC
CSDY@
$!++*' +!#"&57#".54>322>7.#"0\#$S]f7<bE&-St��ZA{<��1^TI++<pbP9 $�@hI(/[�VZ��]3��=l�Y\'Fat�E�O����,�K�"PX@ B@ BYK�	PX@CSCTDK�"PX@CSCTD@!CSC
CTDYY@$",,(%+33>32#"&'#"32>54&O��X&X`h6��"?Ym�FQ�*
�0b[P &j74\L<)V��4=eF'��R���_6D?Au<j�W��6-,Kes{<w|<��b/d�BK�	PX@$hfSCSD@$hfSCSDY�%(#%($+%#".54>32#".#"32>3234]^e:X�[/M��rd�38+A3E{\58Q6-F6)!,�9L-<m�\{�hGDC
K��f>eG'!65���*s@ BK�"PX@CSCS
D@!CSC
CSDY@$"**
+!"&57#"&54>323%2>7.#"�#&Zck7��"?Ym�FJ{+E���90a[O!&j6OY0V$�AjK)��R���^6:6-�?�;i�V5,^��Yw};��q*9b@
0BK�	PX@hSCSD@hSCSDY@,++9,9*&%*+32>32#".54>32%">54.q6���uv0K;-& ,3afo@W�`4!?[u�QMpH#��?jR:��d #8BoYB��#75K2:k�^N��xW2,DRB4[{G19B$' ?���#g@
BK�2PX@"SCQCQD@MWSDY@
##T%#++'.5737>32#"&#"3ve.KF�d�AcI>3	+I8&�a���KW
NbW�]0\8ZA]������;K^�@9$BK�PX@+	[[CSCSD@.h	[[SCSDY@=<[YSQEC<K=K4320(&
+#".54>32.5467#".54>32!2>54&#"4&'.#"32>0"(")1)Bz�mW�e7R��Y$G#	&^<:eL,5f�bnQ~	
�~6R9YN6R8W
6_*RxN&yoBmM+�2PD<<?%*DHU:Gb9$B]8OrJ")B)&JoJH�mB4;9��/M`1XZ,J^3Z^�-	0?"HL#:NO��,@)BCSC
D&#+33>32#>54&#"O��SO�es|L�L=B-_ZNA��Tvy��+�{�%RP1ZN��_��GK�	PX@SCC
D@SCC
DY@

+##".54>32�z�z�#,,!",,#���>-##-.##/�g����(Y�	BK�	PX@SCCSD@SCCSDY@%#U%+#"&'7>323267#".54>32��-LiC#2GE
��#-+!"+,#���=iN-

`
IQ@>-##-.##/N��0@-B\CC
D%(%!+3267>;#"&'.+#�jO��y0���
";�����W�s
 ����X��@C
D+33X�����?G�0Z@BK�"PX@SC
D@CSC
DY@00&%$$!	+332>32>32#654&#"#>54&#"GzY<K�cgbL�hpoL�L2;+VPEA�M/;0YOD?�<�~�������2�{�1(KG+S{P���0GD0[�R��G�P@
BK�"PX@SC
D@CSC
DY@&$!+332>32#>54&#"GyY<Q�mq}L�L=A0c\O:�<���*�{�%RO4_�S��7���#NK�	PX@SCSD@SCSDY@##	+%2>54&#"".54>32�IxT.nhJwT.mYS�d8P��nS�d8P��}P��_��O��_���9l�d��b9l�c�c���+�@BK�	PX@SCSCDK�"PX@SCSCD@!CSCSCDYY@#!++(&!+32>32#"&'"32>54&�Y<&Zcl8��"?Ym�FK|*6�0c\O &k74\L<)V��M<�BkL)��R���_6;7�E�<l�W��7-,Kes{<w|0���0b@%
	BK�	PX@SCSCD@SCSCDY@
 )&0 0*, +#"&54>5#".54>322>7.#"p ;#PZb4<bE&-St��ZA{<��0]TH-+<pbP9 ��%�;^C$/[�VZ��]3��<j�Wc'Fat�E�G��,@)
BSC
D#*!+332>32&#"GzY A�Y** /,a�38��������*
��99@69BhfSCSD/#%/#"+#".#"#"&'7>3232>54.54>32�!/D0-J6>^m^>7g�Za�/, 0I81O7>^l^>3`�V[�2S,;!/8)&:ZHF�a:E6D
#2C&3<(#7XI@w\7=4_���>0b�+BK�2PX@#jhQCSD@!jh\SDY@	%#(+&+74>7#"&54>?>;!!32>32#"&�?q
�K^,
��=/)(	%0}?ap�$:/�9����)231	U+1j`����#L�BK�"PX@CT
D@C
CTDY@##*!&+32>73#"&54>57#"&5467bL=B.a[N?�zX"Q�jq}L��|$RP2\�P�"("Q����*�K��@BC
D, +32>7>;#K��:�����t%J$$I&��Q��. @'BC
D*!,< +32>7>;2>7>;#"'.'+Q�]Jq
��W�{
�����t#A  A#��p#B! C#��"�! �R"����@BC
D(")!+32>7>;	#"&'+h���
�����
��
�!���/�+�����Q����@
BCD,"!++32>7>;<)�����	@���)����*+Y�@QCQ
D+!!7>7!7!P����6	K���#�&�J
#ߌ1��Y�E7@4&:B[[OSG=;303++4&#72654.54>;+";2#".54>�85
JI-Y�V1	
'B/"3;5@#C=
2EfC" & �4Bhw|575a�i7MEoQ;?<MgA![?<rsu?FU%(Gb:Bxsq���5�@QD+3#����������G7@4<(B[[OSG?=525++3"+7>;2>5<&454>7.54>54&+"&54>5732�85
JI-Y�V1	

'B/"3;5@#C=
2EfC" & 4Bhw|575a�i7M

	EoQ<?;LhA![?<rsu?FU%(Gb:Bxsq9��9@6jkO[SG
+2673#".#"#4>32�AI�%Ef@4f_V$AI�%EeA4f_VeUFCpP, '!TGCpP-!'!����
!&@#SCQD

+>734>32#".�C

hB."--""--"��-UW\45\VU-���."".-""-��&�/8�@%BK�	PX@.jhfkSCSD@.jhfkSCSDY@
##'#+.54>?>;#".'>32+�R�`4M�ф"@-R}04+=*�@[?*	'!S`i6!@�tj�Z�]0
	Dq�`~מ\��?1<	��"<#6&����Dv���>?@<+Bh[SCS
D&&%#%&"	+#!>3!#!7>7#7>;>32#"&'.#"!z�Y	60<�	
�;#9+$�q!P��mT{X9K#2H4AkQ3 ���Kj*I
p
/C..F	^�zF&B[5,

0$+OpE��F��+`#7?@<!B
@ ?WSD42*((+467'7>327'#"&''7.732>54.#"!�[�,h:9f+�Y�"!�[�,h99e,�Z�!�#>Q//S=$$=S//Q>#�9e,�Z�"!�[�,g:9f+�\�!!�[�,g:.Q=$$=Q./R>##>R~��"8@5
B
Z	YC
D"! ,!+!32>7>;!!!!#!7!7!�6�ʐ�
	_"��6��
V��'�'��
V
��p'��!:; =��cic��Aci���5�@YQD+3#3#����������;���FVA@>FTL;!BhfWSDDB+)&$#!+#".#"#"&'7>3232>54.5467.54>32>54.'R!/B0/K6DfvfDY_%-6f�^a�00	!0I:2O7)BUYUB)ag%.3a�W[�/��:Zn3:26Ug1E9�.>".A88JdH[�)!U9J�`7D6B
"3E))<0(*0?R8Y�'"X>AvZ5>6��/B82V51D70#P^���'@SD((($+#".54>32#".54>32? )(() g))))((**((**]���+Ga�@
BK�	PX@5h
f[[		SCSD@5h
f[[		SCSDY@\ZPNB@42(&+++2#".54>32#".#"32>%4>32#".732>54.#";		<9�tb�s?Dz�bm�9.2M:GpP**Kg>?V9!�.4`���ee���_44_���ed���`4e,Qs��XX��sR-c��X��sQ,�@BIDz�de�yCC8A-TxKMyR+�e���`44`���ed���`44`���eY��tS--St��Y��e.Sv���?��-9L@I!Bh[	WSD/.32.9/9%#
--
+"&/#"&54>?6454&#"#"&/>32'26?.04AR%V�j(0"0$6xD,D//�.G$
B\9*H	1 ED(K;&&.6
(2.4G(��P&#m*"����%�%(+77�4�

o ;]4�

o ;���
��
 ����
��
 �>�=K�	PX@_MQE@kMQEY�+!#!�[4�$�9�^ a<�@MQE+!!s��8��^���3IV��>BK�	PX@/h		[
[SCSD@/h		[
[SCSDY@44VTLJ4I4H)!*,,&+4>32#".732>54.#"#!2#"'.#'32>54.+^4`���ee���`44`���ee���`4e,Rr��XX��sR-c�焄�b� ��kj
�!�	Ps8M/+F4��e���`44`���ed���`44`���eY��tS--St��Y��ee���|}z^�
��.
r(:&%8$p��A@MQE+!!~��Aq�'�'@WSD((($+4>32#".732>54.#"�3XvDEwX22XwEDvX3}6I**I66I**I6hCvW22WvCBuW33WuA*I66I**J77J3PK�<@9jhZMQE
	+!!#!7!!!�/��e-�-�j�/����D������r�{�$����d-9@6+	Bh[SD(&#!
--+26;2!7>?>54&#"#"&/>�`m0?"�2*��
�6(6**A!C�ddS,HA<�*�89:-0+2ji�|�d:S@P6Bhh[[SD31.,('&%::	+2#".'763232>54&#7>54&#"#"&/>�.K5�980Nd48Q7"	:
+!"5%FV[S5,2=@5HWd->$�-E7<]?!1G/!%011Y=>,-.+4P4���	@kD	#++7>3��f�"��������%2@/BCT
CD%%'%!&+32673#"&=#"&'#"&5<7\SVQF�=]�|gF�PA^#U %��Y
RYJB�
lHC/+$H �� k�7��*@'hiSD+##!#".54>3�ܵ���붝j]�i9H��q���7�7]2Z~MZ�tC����@OSG($+4>32#".�)67((76)Q8((86))6��w
�K�PX@B@BYK�	PX@^TDK�PX@jTD@jjTDYY@
+232654&'73#"&'76E(+GB:k JC!;Q0&B�	(#	�R?.$9'5��z^N�
BK�2PX@jjQD@jjMRFY�$+37#"&/733!�6
y �hNy�u��,\		6���]�<��!)@&WSD!!	+2#".54>2654&#"�:]A"0UxH;^A#0Wy
ZYA?2E+@�%Ea<R�]2%Eb<Q�]2���uKU&C^8KTw���%�%(+'&54767&'&54?'&54767&'&54?���5
�
	p!;���5
�
	p!;�{

 �|�{

 �k�+1V@S%/
Bhh
Z\	C
D10+*)('&$##!#
+3+#7!"&/3+>;37#"&/733!>73�n
Uj���w��/F�1!G�u�6
y �hNy�u����I��>�] [���,\		6���]�,���\�	7Hb@_B;5Bhh
Z[	CT
D
HGFEDC?=9820,*
77#"
+%+>;26;2!7>?>54&#"#"&/>%37#"&/733!�/F�1!G�`m3C$�2*��
�6(6*/=	
+����6
y �hNy�u5 [�IdS-LC>!�8*�89:-04)
ji<�,\		6���]�z�TZ~@{P
"/
	X
B

h	
	
h

h	[

[\

SC
DZYMKGEA@?>8631+)TT##!#+3+#7!"&/3+>;%2#".'763232>54&#7>54&#"#"&/>>73n
Uj���w��/F�1!G�u.K5�980Nd48Q7"	:
46"5%FV[S5,2@15HW
���I��>�] [->$�-E7<]?!1G/,2%011Y=>,-0%	4P4�c,����u';5@2BhfSCSD(&#,$+#".54>?332>324>32#".u!LWb8DoQ,/IWN:	$u	1HSF/-;!7S<'��!-."".-!�4''HgAQsS<56$��-B:8CV;)?+$."".-""-������&$	O������&$_������&$
O������&$O������&$
O�����-&$P����9@6AYYQCS
D#	+!!!!!!!+!��L�*�:��&�������������$@d����J�K�PX@9=HB@9=HBYK�	PX@0hfSCSC	SDK�PX@0hfSCSC	SD@7hf	hSCSCSDYY@FD<;64/-%# JJ
+232654&'7.546$32#".#"32>32#"&'76�(+GB0r�~Bt��L|fS$@(EmWtʔU:g�UBfN7)	AWߒJC!;Q0&B�	(#	vd�ڀ�6�{2F+N

(/(]���o�{B ' Q^o:?.$9'5��aA�&(	$��aA�&($��aA�&(
$��aA�&(
$��V
�&,	����&,��g��&,
�����&,
E��!,@)YSCS
D!%(!+3!2#!#%4.#!!!!2>S�P�ԕOp��Q�{7f�]��>\
��?2xŎN	�Z�㈷���v��l�yA�n��[����aE�&1���d����&2	���d����&2���d����&2
���d����&2���d����&2
�l�9W�	(+		'	7	9�|8f��nP���g0������]d��]e[]��Z0����%1=g@5*)#
BK� PX@kCSCSD@jkSCSDY�**'(%&+#"&'+.546$327>;.#"%4&'32>�4_���ka�Cm=J�MRr��h�EY`�EJ��+)�2�OvƎP�$"�<0wHxƎO2zڹ�h82/�	T錷3�|;6p�T��a�<.1_��*X�;��&'^�������$�&8	������$�&8������$�&8
������$�&8
���y��&<<��	�����++���,@)\[C
D"( +32+#332>54&#��r�n6J�΅�!���3J�U�X.���6c�Uq��L����a��4]�Lt�3�&�P}@JGBAK�,PX@(hSCSCQD@%hWSCSDY@LKFD=;%# PP+2#"&'7>3232>54.54>54.#"+'&573>�Y~Q&/FQF/+@K@+>i�OY�10	"-@0*G3.DQD.1JWJ1-I4>mU:
l.KF�n(�^���6Se/D`H638&#/)+=XAV�_3E6B"6I*0?.(4H8>XE:@P8;0Ct�U���KW!M\��K��0����&DCi��0����&Dv+��0����&D�"��0����&D�"��0����&Dj"��0����&D�6���GUbG@E?"BK�	PX@5hh

[S	CSDK�PX@5hh

[S	CSDK�,PX@?hh

[S	CSCSD@Jhh

[S	CS	CSCSDYYY@&WV\[VbWbQOIHCA<:75/.(& 
	GG+232>32#"&'#"&54>7>54#"#"&/>32>32>7">54&]<fK*7��zl1K;-&,3afo@i�' Ydj1��@���<U?0W�hlz<���x�g-NA4]K4	�<bI2��c(K%BY39lU7

��#74L1rr>W8wxG�c>(�!)!7QP`UT^��%<Q2HE%JoJ�-TvH$3@$9D<��bI�K�PX@6<GB@6<GBYK�	PX@0hfSCSC	SDK�PX@0hfSCSC	SD@7hf	hSCSCSDYY@EC;:42-+#!II
+232654&'7.54>32#".#"32>32#"&'76(+GB2JqL'M��rd�38+A3E{\58Q6-F6)!,/TTW1JC!;Q0&B�	(#	y
Ck�T{�hGDC
K��f>eG'!63H-<?.$9'5��;��q�&HC���;����&Hv���;��q�&H����;����&Hj���=��&�C���_u�&�v���"^�&�����/w�&�j�<����1E6@37-B10@[SD32=;2E3E+)!+.54?.'&54?7#".54>32.'2>7.#"��)`7%X�F�qQ^F�ȂR�e8E}�ia�0LL�!AoX>	&<U9KwR+"=S)		^%
7@3|9	ST���k9k�_l��U[\��E���3l�v,Q?&<i�QCjI'��G��&Q����++��7����&RC����++��7����&Rv����++��7����&R�����++��7����&R�����++��7����&Rj����++s�A~'+@([YOSG(&(%+!!4>32#"&4>32#"&���B�&2'&21;X&2'&20<��2&(1$>�f2&(1$>���%)4�@32#"BK�	PX@!CSCSCDK�PX@!CSCSCDK�PX@!kCSCSD@!jkSCSDYYY@+**4+4&$+"'+7.54>327>;&#"2>54&'�|Z$:C�(+P��n}["  Z�'+P�����8NJzY1�I{Y1
�F7=1�5�X��b@.�5�W�c�YBZ-L���sM��g,K ��,��`����&XC����++��`����&Xv����++��`����&X�����++��`����&Xj����++��Q����&\v����++%����,p@ BK�	PX@!CSCSCD@!CSCSCDY@$",,(%+3>32#"&'#"32>54&%ݰY&X`h6��"?Ym�FK{+.'0b\O!&k74\L<)V���4=eF'��R���_6;6��&�<j�W��6,,Kes{<w|��Q����&\j����++������'0�K�PX@
-B@
-BYK�PX@!ZC
C	SD@(	hZC
CSDY@)($"''
+2#"&5467#"&'!+3#32>!.'�
Y0LRVB
N���	%���_-&( ���
�@F:?n)^����g!*3 '	�QB&&C0���4F(K�PX@&;BK�"PX@&;B@&;BYYK�	PX@#SC	SCSDK�PX@#SC	SCSDK�"PX@*hSC	SCSD@.hSC
C	SCSDYYY@65?<5F6F1/('$"44
+2#"&54>7.57#".54>32#32>2>7.#">
Y0LR*:"$S]f7<bE&-St��ZA{<y-&( �C1^TI++<pbP9 �@F: =81�@hI(/[�VZ��]3�,!*3 '	\=l�Y\'Fat�E���d����&&���<��o�&Fv����++a��A�%�K�PX�B�	BYK�PX@*YQCQ
C	
SD@1
		hYQCQ
C		SDY@" 
%%+2#"&5467!!!!!!#32>G
Y0LRVB���/��<��=ui-&( �@F:?n)������!*3 '	;��qAP�K�PX@G2B@G2BYK�	PX@*h	SCSCSDK�PX@*h	SCSCSD@1hh	SCSCSDYY@CBBPCP><0.)'
AA
+2#"&5467.54>3232>3232>">54.I
Y0LRI9U�_2!?[u�QMpH#6���uv0K;-& ,M�T+$( ?jR:��d #8�@F::f(<j�]N��xW2,DR%BoYB��#7P]!)2 '	Y4[{G19B$' _��@C
D+#�z�z�����!@
BCR
D+%!!76?3�m��=7�E��Y�&�}���-`�
W�Lb�@BC
D+4?37#L�N�F��\�T��D��Jf!I��E��aE�&1���G��&Qv���++d����2'@
BK�PX@"YS
C	S
DK�PX@-YS
CS
C	S
DK� PX@*YSCQ
C	S
DK�"PX@4YSCQ
CS
C		S
D@2YSCQ
CQ
C		SDYYYY@/-%#(#+!!!!!7#".54>324.#"32>���;��=q��Z��u��Fh���K�kS h/Z�Sm��I0[�Sm��H�������r~\�ㇹ6�~&Ge?��j�|Dc���k�|Cb��.���4FU�@
L2"BK�	PX@$hS	C
SD@$hS	C
SDY@ HG65GUHU><5F6F0.&$ 44+232>32#"&'#".54>32>2>54&#"">54.�AhJ'8\��~ym0K;-&,2afp@i�'E΁QzQ)U��kk�#?��IQ}U+]aN|X/.JH;fP8��h&'="?X5)LC;0&
��#74L1tsny;e�H���Xe[Zf�vN��qs�L��y/VB(.YQ3:A!*!�����&6���
��#�&Vv���++������&6���
��,�&V�~���++��y��&<
<��	�����++����&=8��Y�&]v����++���&=8��Y�&]�����++����&=8��Y�&]�����++��i�'6@3
BYSCSD''#"+#763>7'.546767376$3#"!��2���:.UH8���*0�/UI9+G�!˹[7:^E�	
�ſ_;^E�}Q���@BkD, +#"&/.'+3�rd�w����	q���@BkD( +32?>;#qxd
�s��������p��Aq���� @WD
	+".5467332>73r>V6y4B'6#z&Eg�!:M-
3?)9!6aI+��@SD($+#".54>32#.-""-.#:-""-/##/�kJ�=K�PX@WSD@[OSGY�$&($+4>32#".732654&#"� 7H()I8  8I)(H7 d6/-77-/6#*D22D*)D00D),88,-88/��t
YK�PX@B@@B@YK�PX@
SD@jSDY@+2#"&54>732>R
Y0LR.@%W-&( �@F:"@:2
!*3 '	h���QK�*PX@WSD@O[SGY@	+273#".#"#>32�Ai!2B% 5-) (j"3A%!4-()X/M7#-,.N8#��)�	#@ SD




	#++7>3!+7>3�H�"��S� ������������!Y�BK�(PX@SCS
D@SC
CSDY@! 6##++#!#"&'7>3267#7>3�"|l�k��O�z=<;N��D#��u�}w�H	?C�?
���@MQE+!!����}�o�@MQE+!!���7�}�����(+.5467�j^/	!

�%J%d�L	
09@"6
�����(+'&5467>54&'&547pj^0	!

�%J%d�L	
08@#6
����(+7'&5467>54&'&547�j^0	!

�%J%d�L	
08@#6
����1�(+.5467.5467�j^/	!

�j^/	!

�%J%d�L	
09@"6
*%J%d�L	
09@"6
����1�(+'&5467>54&'&547%'&5467>54&'&547yj^0	!

�j^0	!

�%J%d�L	
08@#6
*%J%d�L	
08@#6
�����1�(+7'&5467>54&'&547%'&5467>54&'&547�j^0	!

�j^0	!

�%J%d�L	
08@#6
*%J%d�L	
08@#6
�����%,@)BCSCD$&$"+>3632>32!#"&'!�,*?�G#)33#P$KIF &!��6H0+u6���/��,
	)
�D���B����9E@B)!("B[C	SCD98'%#&$"
+>3632>32!!#.'#"&'#"&5<>7!!�,*?�G#)33#P$KIF &"��Pj.*?�G!0+O$KIG&!kP���/��,
	'(�v:/�/�
(�����,K�PX@SD@OSGY�($+4>32#".�:e�LM�e;;e�ML�e:SM�e;;e�MM�d;;d�-��,�';@SD((((($+74>32#".%4>32#".%4>32#".-"--""--""--""--"!..""..!n."".-""-."".-""-."".-""-Z����'1EYm��K�PX@+[	[SC
		S

DK� PX@/[	[SC
C
		S
D@3[	[CSC
C
		S
DYY@~|trjh`^VT((%#&((($+#".54>324.#"32>>;+#".54>324.#"32>%#".54>324.#"32>�;`{A8^C%6]}F8^C&�$1(G4$1'G5w|��
~:`|A8]C%6]}F8]D%�$1(G5$1'G6):`{A8^C%6]}F8]D%�$1(F5#1'F6xc�j7)MoFc�k8)NpH2H."JsQ1E-!GqU��
�c�i7)MnFc�l8)NpH2G."JrQ1F-!HrRc�i7)MnFc�l8)NpH2G."JrQ1F-!Hr�����(+7�4�

o ;���
��
 w����(+'&54767&'&54?���5
�
	p!;�{

 �c�	@C
D#"+'+>;?/F�1!G5 [*����B[@X	4	Bh		h
[	[SC
S


DBA?>=<861/"##%%$+3>32#".#"!#!!#!32>32#".'#7367#T�!w��p��;C&6J3M�oT0����d��RoI.ASގq�v>����̎LcWB 4f�`7#H&6��-6-DeqR�ҀcJG�I6�%B@?BhS	CS	D%%!4(
+>7>;#7+"'#32'###7�
�	fGk.�
}.iGg�
�<x;�P

3��rG��RH��Ne��eA�=/@,!BSCS
D=<,**+!>54.#"!"&546767!7.54>32!�5T�i<5a�Re��H*Lj@4�/LxR,0X|��`zȎNAw�f~
(�Jx�pZ�_0B��zMyY:�O%�Tv�Ta��tQ+L��prěl�a A���3HB@?"Bh[SCSD54?=4H5H#*++$+>32#".5467>32>7>54&#"#"&'2>7.#"�'JMT0ItQ,n�݉HwT._��g^�"	e\'C7)
:qdU .I5K{\:]9*8l�c?!���/X~P#sʔVRQ"=9����7o�r-S@'>m�Wgp����@	BCR
D+)3!.'��ԩ���

����9 !9�����$@!QCD+##!##7��Ȳ�ɱȼ����]��]����$@!BQCQD+!!!!7>7	&5<7�R�����A��
��!
���;4�;�A��^�@MQE+!!�[���Ll�"@Bj[
D,'!+!##"&5<>7!2>7>;p���"Ne[n� 
�[ A 7Q=���';OL@IK-B[
	O
	SG=<)(GE<O=O31(;);	''+%".'#".54>32>32%2>7.#"!2>54.#"{3P?1DNX35[C'7\xB3O@2DMX35\D'7]y��!<86$,4!&A1$1S%B1$1!;86%+4�!8K))K8!(KhAR�i=!9K))K9!(KiAR�i<�5E''E4!<T4&:&!<T4'9&4E''E5�{����!(@%BSCSD6'%"+>32#"#"&'7>32>7�)��#A*\n�Og}F D
6Q=,C��Wnu��f�_-
L
:^B����7^@[0!/"B[[	O[	SG42+)&$77

+2>7#".#"'>322>7#".#"'>32@80%(u=4c_\-90%
)wB4d^\81%
'v=4c_\-81%
)wB5c_[W
l0."("i31!)!��
m/-!(!
h31!)!��}kK�PX@)^_	ZMQE@'jk	ZMQEY@

+!733!!!#7!7!7!��}����w��5�}���Pw�S���ʃ����ZP�� @	@MQE+!!�3�-2/��*>��yz�
�z{�
�iP��@
@MQE+%!7!7>7%>7.'%.54657n��>���2/�a�P����z�
�z������"@
BMQE+3	#>7	&'��|��y|�	��
�5���4��&&EF,#&���~�-K�PX@kD@
jaY@	+3v���0>���'s@

BK�2PX@(SCQC
CQD@MWSC
DY@''W%#+#!+'&5737>32#"&#"�y�k�}f.KF�c(�Iz�k''#
SzU1	�`���KX#O8]�n=Z$HnK5>��!�@	BK�	PX@(SCQC
CQDK�&PX@(SCQC
CQDK�2PX@,CSCQC
CQD@$MWCSC
DYYY@!!#!%#	++'&5737>32;#.#"3wg.KF�b(�
Bn�aG�5w���-_+u��a���KX!Q7T�pA
�Z$
��7�G��2��5K�0PX@QD@MQEY@	+#2~mQR��U
	�	@ja		+2#"&/����
�
����'@OSG((($+#".54>32#".54>32P%##%X$$$$�$$%%$$%%�(��@MQE+!!�4���f
�@ja
#++7>3����
��
�	
f
��@Bja& +#"&/+73ǃr�	���
kk��
��@Bja!+#'327>3�ƒr�	���kk����(@%jOSG
+"&547332673�syo�NOp,Ie�^^c><4T< *@OSG($+#".54>32"-,!!,-"�,!!,,"",��V-!@[OSG$&($+4>32#".732654&#"�4D&'E44E'&D4Y6/-77-/6{'B//B'&@..@&+99+-88���1@.O[SG
+2673#".#"#>32)^.>% 82.'a.>%!82-|*%*G5 -%*H5 �
b�	+@(OSG




	#++7>3!+7>3(�S�'��]�)����

�}��
@kD


+2+�+$<]�

9^I
D��{��_<�	�ʓ^p�ӡ���-	��VO������'-�{����6�G�Z9��(z(�����s�2�a�-����O���/�]�-�D�h���R���-�.+���+}���M���a�dia+aaEdpa6�1���r�a�aoa�dhr�d�r�?{?��|Z�����y|(!�l(������8M�0Ob<5�;]?���$O�_�g�N�XGG�7�0�G

�_`�K�Q����QZ(1X�(���9�{�������~X��;8^=]x�k����a=^8p��3����8;k#�8����kw������������������������d+a+a+a+a6V6�6g6��Eoa�d�d�d�d�d�l�0?�?�?�?��yh�I3�0�0�0�0�0�0�b<�;�;�;�;�=�_�"�/�<G�7�7�7�7�7�s�````�Q%�Q���0�db<+a�;�_�YLoaG�d.�

�

�y|Z|Z|Z�8Q8q8p8�88�8/8h8�x�����������������,�,B���-OZV�VwA��*/�]+A��Y�����xL�=�{����+Z+i����>G>8G8U8�8�88f8�8�8*8�8�8�8g�P`�	�U�������U$�U96:0<-?6D��F��G��H��R��T��m��o��y��}����U��U��U��U��U��U��U�-����������������������������������������������������������U���������-����������U
	�U
��
��
��
�U
$�U
96
:0
<-
?6
D��
F��
G��
H��
R��
T��
m��
o��
y��
}��
��U
��U
��U
��U
��U
��U
��U
�-
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�U
��
��
��
��
�-
�
�
�
�
�
�
�
�
��U#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������
	�U
��
��
��
�U
$�U
96
:0
<-
?6
D��
F��
G��
H��
R��
T��
m��
o��
y��
}��
��U
��U
��U
��U
��U
��U
��U
�-
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�U
��
��
��
��
�-
�
�
�
�
�
�
�
�
��U��
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;��	��
��
���^�^��$��7�A9��;��<�@=��?��l��r��|�������������������������@���@���������^���^�^�����
��
���;#��&��*��2��4��7�59�,:�|<�;?�,Y�rZ��\�|k��l��m�;o�;p��r��y�;|��}�;�����������������������;��r��r�����;�;�;�����;�;�;6	��
6
6�A���A������":#��$��&��*��-�i2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l6m��o��p��r6tPuPw��y��{P|6}�������������������������������������������������������������������������������������������������������������������������������������������������������6�6�A�6�6�A��A�����#��#	��#
��#��#
��#��#$��#7��#9��#;��#<��#=��#?��#@��#`��#l��#r��#|��#���#���#���#���#���#���#���#���#��#��#��#��#��#��#��#��#��#���$�J$
�J$
�J$��$#��$&��$*��$->$2��$4��$7�|$8��$9��$:��$<�h$?��$W��$Y��$Z��$\��$k��$l�J$m��$o��$p��$r�J$t�I$u�I$y��${�I$|�J$}��$���$���$���$���$���$���$���$���$���$���$���$��h$���$���$��$��$�h$��$��$�J$�J$�J$�J$��$��$��&��&m��&o��&y��&}��&�&�&�&�&�'��'	��'
��'��'
��'��'$��'7��'9��';��'<��'=��'?��'@��'`��'l��'r��'|��'���'���'���'���'���'���'���'���'��'��'��'��'��'��'��'��'��'���)	�|)�L)�L)�|)��)��)")$�|)-�:)D��)F��)G��)H��)P��)Q��)R��)S��)T��)U��)X��)w��)��|)��|)��|)��|)��|)��|)��|)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)�|)��)��)��)��)��)�L)�L)�L)��|-	��-��-$��-���-���-���-���-���-���-���-��-���..
.
.��.#��.&��.*��.2��.4��.I��.W��.Y��.Z��.\��.k��.l.m��.o��.p��.r.y��.|.}��.���.���.���.���.���.���.���.���.���.��.��.�.�.�.�.�.�.�.�.�/��/
��/
��/�;/#��/&��/*��/2��/4��/7�8/9�J/:�h/<�,/?�J/Y�|/Z��/\�|/k��/l��/m�;/o�;/p��/r��/t�,/u�,/y�;/{�,/|��/}�;/���/���/���/���/���/���/���/��,/��|/��|/��/��/�,/�;/�;/�/�/�/�/�;/�;/�;2��2	��2
��2��2
��2��2$��27��29��2;��2<��2=��2?��2@��2`��2l��2r��2|��2���2���2���2���2���2���2���2���2��2��2��2��2��2��2��2��2��2���3	�v3�C3�C3�v3$�v3-�J3D��3F��3G��3H��3R��3T��3��v3��v3��v3��v3��v3��v3��v3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3�v3��3��3��3��3�C3�C3�C3��v4��4	��4
��4��4
��4��4$��47��49��4;��4<��4=��4?��4@��4`��4l��4r��4|��4���4���4���4���4���4���4���4���4��4��4��4��4��4��4��4��4��4���5#��5&��5*��52��54��57��58��5k��5p��5���5���5���5���5���5���5���5���5���5���5���5��5��7	�|7�L7�L7�L7�|7�f7�f7"'7#��7$�|7&��7*��7-�872��74��7D�/7F�/7G�/7H�/7J�E7P�f7Q�f7R�/7S�f7T�/7U�f7V�J7X�f7Y�W7Z�7[�Z7\�L7]�_7k��7m�L7o�L7p��7w�f7y�L7}�L7��|7��|7��|7��|7��|7��|7��|7���7���7���7���7���7���7���7��/7��/7��/7��/7��/7��/7��/7��/7��/7��/7��/7��/7��/7��f7��/7��/7��/7��/7��/7��/7��f7��f7��f7��f7��W7��W7�|7�/7��7�/7�/7�f7��7�/7�J7�J7�_7�_7�_7�L7�L7�L7�L7�L7�L7�L7�L7��|8	��8��8$��8���8���8���8���8���8���8���8��8���969	��9
69
69�A9��9�A9��9��9��9":9#��9$��9&��9*��9-�i92��94��9D��9F��9G��9H��9P��9Q��9R��9S��9T��9U��9V��9X��9Y��9Z��9\��9]��9k��9l69m��9o��9p��9r69tP9uP9w��9y��9{P9|69}��9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9��9��9��9��9��9��9��9��9��9��9��9��9��9�9�9�69�69�A9�69�69�A9�9�A9�9�9���:::	��:
::
::��:��:��:��:��:$��:-��:D��:F��:G��:H��:J��:P��:Q��:R��:S��:T��:U��:V��:X��:l::r::t<:u<:w��:{<:|::���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:��:��:��:��:��:��:��:��:�::�::�:�::�::�:�:���;;
;
;��;#��;&��;*��;2��;4��;I��;W��;Y��;Z��;\��;k��;l;m��;o��;p��;r;y��;|;}��;���;���;���;���;���;���;���;���;���;��;��;�;�;�;�;�;�;�;�;�<7<	�r<
7<
7<�'<�J<�'<�r<��<��<"2<#��<$�r<&��<*��<-�8<2��<4��<D�A<F�A<G�A<H�A<J�W<P��<Q��<R�A<S��<T�A<U��<V�A<X��<]��<k��<l7<m�J<o�J<p��<r7<t><u><w��<y�J<{><|7<}�J<��r<��r<��r<��r<��r<��r<��r<���<���<���<���<���<���<���<��A<��A<��A<��A<��A<��A<��A<��A<��A<��A<��A<��A<��A<���<��A<��A<��A<��A<��A<��A<���<���<���<���<�r<�A<��<�A<�A<��<��<�A<�A<�A<��<��<��<�J<�J<�7<�7<�'<�7<�7<�'<�J<�'<�J<�J<��r=��="#=#��=&��=*��=2��=4��=k��=m��=o��=p��=y��=}��=���=���=���=���=���=���=���=��=��=�=�=�=�=�>#��>&��>*��>2��>4��>D��>F��>G��>H��>R��>T��>k��>p��>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>��>��>��>��>��>��?�J?
�J?
�J?��?#��?&��?*��?->?2��?4��?7�|?8��?9��?:��?<�h??��?W��?Y��?Z��?\��?k��?l�J?m��?o��?p��?r�J?t�I?u�I?y��?{�I?|�J?}��?���?���?���?���?���?���?���?���?���?���?���?��h?���?���?��?��?�h?��?��?�J?�J?�J?�J?��?��?��E��E
��E��E
��E@��E[��E`��El��Er��E|��E�E�E�E�H��H
��H��H
��H@��H[��H`��Hl��Hr��H|��H�H�H�H�IEI
EI
EI�I�IlEIrEItdIudI{dI|EI�EI�EI�I�EI�EI�I�K��K
��K
��KY��K\��Kl��Kr��Kt��Ku��K{��K|��K���K���K��K��K��K��ND��NF��NG��NH��NR��NT��N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N��N��N��N��P��P
��P
��PY��P\��Pl��Pr��Pt��Pu��P{��P|��P���P���P��P��P��P��Q��Q
��Q
��QY��Q\��Ql��Qr��Qt��Qu��Q{��Q|��Q���Q���Q��Q��Q��Q��R��R
��R��R
��R@��R[��R`��Rl��Rr��R|��R�R�R�R�S��S
��S��S
��S@��S[��S`��Sl��Sr��S|��S�S�S�S�U�hU�hUD��UF��UG��UH��UR��UT��U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U��U��U��U��U�hU�hU�hY	��Y�rY�rY��Y$��YD��YF��YG��YH��YR��YT��Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y��Y��Y��Y��Y��Y�rY�rY�rY���Z	��Z��Z��Z��Z$��Z���Z���Z���Z���Z���Z���Z���Z��Z�Z�Z�Z���[D��[F��[G��[H��[R��[T��[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[��[��[��[��\	��\�h\�h\��\$��\D��\F��\G��\H��\R��\T��\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\��\��\��\��\��\�h\�h\�h\���^#��^&��^*��^2��^4��^D��^F��^G��^H��^R��^T��^k��^p��^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��^��^��^��^��^��k��k	��k
��k��k
��k��k$��k7��k9��k;��k<��k=��k?��k@��k`��kl��kr��k|��k���k���k���k���k���k���k���k���k��k��k��k��k��k��k��k��k��k���l	�Ul��l��l��l�Ul$�Ul96l:0l<-l?6lD��lF��lG��lH��lR��lT��lm��lo��ly��l}��l��Ul��Ul��Ul��Ul��Ul��Ul��Ul�-l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l�Ul��l��l��l��l�-l�l�l�l�l�l�l�l�l��Um��m	��m
��m
��m�^m�^m��m$��m7�Am9��m;��m<�@m=��m?��ml��mr��m|��m���m���m���m���m���m���m���m��@m��m�@m��m��m��m�m�m�^m�m�m�^m�^m���o��o	��o
��o
��o�^o�^o��o$��o7�Ao9��o;��o<�@o=��o?��ol��or��o|��o���o���o���o���o���o���o���o��@o��o�@o��o��o��o�o�o�^o�o�o�^o�^o���p��p	��p
��p��p
��p��p$��p7��p9��p;��p<��p=��p?��p@��p`��pl��pr��p|��p���p���p���p���p���p���p���p���p��p��p��p��p��p��p��p��p��p���r	�Ur��r��r��r�Ur$�Ur96r:0r<-r?6rD��rF��rG��rH��rR��rT��rm��ro��ry��r}��r��Ur��Ur��Ur��Ur��Ur��Ur��Ur�-r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r�Ur��r��r��r��r�-r�r�r�r�r�r�r�r�r��Ut	�Tt�Tt$�Tt9:t::t<(t?:t��Tt��Tt��Tt��Tt��Tt��Tt��Tt�(t�Tt�(t��Tu	�Tu�Tu$�Tu9:u::u<(u?:u��Tu��Tu��Tu��Tu��Tu��Tu��Tu�(u�Tu�(u��Ty��y	��y
��y
��y�^y�^y��y$��y7�Ay9��y;��y<�@y=��y?��yl��yr��y|��y���y���y���y���y���y���y���y��@y��y�@y��y��y��y�y�y�^y�y�y�^y�^y���{	�T{�T{$�T{9:{::{<({?:{��T{��T{��T{��T{��T{��T{��T{�({�T{�({��T|	�U|��|��|��|�U|$�U|96|:0|<-|?6|D��|F��|G��|H��|R��|T��|m��|o��|y��|}��|��U|��U|��U|��U|��U|��U|��U|�-|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|�U|��|��|��|��|�-|�|�|�|�|�|�|�|�|��U}��}	��}
��}
��}�^}�^}��}$��}7�A}9��};��}<�@}=��}?��}l��}r��}|��}���}���}���}���}���}���}���}��@}��}�@}��}��}��}�}�}�^}�}�}�^}�^}�����J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�����������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�����������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�����������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�����������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�����������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�������������m���o���y���}����������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|������������������������������������������������������������������	������$��������������������������������������	������$��������������������������������������	������$��������������������������������������	������$��������������������������������������7�	�r�
7�
7��'��J��'��r�������"2�#���$�r�&���*���-�8�2���4���D�A�F�A�G�A�H�A�J�W�P���Q���R�A�S���T�A�U���V�A�X���]���k���l7�m�J�o�J�p���r7�t>�u>�w���y�J�{>�|7�}�J���r���r���r���r���r���r���r�������������������������������A���A���A���A���A���A���A���A���A���A���A���A���A�������A���A���A���A���A���A������������������r��A�����A��A��������A��A��A�����������J��J��7��7��'��7��7��'��J��'��J��J���r����	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
���
���Y���\���l���r���t���u���{���|��������������������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|�����������	����r��r����$���D���F���G���H���R���T���������������������������������������������������������������������������������������������������������������������������r��r��r��������
������
���@���[���`���l���r���|�����������	����r��r����$���D���F���G���H���R���T���������������������������������������������������������������������������������������������������������������������������r��r��r������J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J�������������m���o���y���}����������������
������
���@���[���`���l���r���|������������i�
�i�
�i����9�^�:���<�h�?�^�Y���Z���\���l�i�m���o���r�i�t�}�u�}�y���{�}�|�i�}�����h����������h������i��i��i��i����������
���
���Y���\���l���r���t���u���{���|��������������������������
������
���@���[���`���l���r���|�����������7�	�r�
7�
7��'��J��'��r�������"2�#���$�r�&���*���-�8�2���4���D�A�F�A�G�A�H�A�J�W�P���Q���R�A�S���T�A�U���V�A�X���]���k���l7�m�J�o�J�p���r7�t>�u>�w���y�J�{>�|7�}�J���r���r���r���r���r���r���r�������������������������������A���A���A���A���A���A���A���A���A���A���A���A���A�������A���A���A���A���A���A������������������r��A�����A��A��������A��A��A�����������J��J��7��7��'��7��7��'��J��'��J��J���r����"#�#���&���*���2���4���k���m���o���p���y���}��������������������������������������������������"#�#���&���*���2���4���k���m���o���p���y���}��������������������������������������������������"#�#���&���*���2���4���k���m���o���p���y���}��������������������������������������������������	���
���
����^��^����$���7�A�9���;���<�@�=���?���l���r���|���������������������������������@�����@���������������^������^��^��������	���
���
����^��^����$���7�A�9���;���<�@�=���?���l���r���|���������������������������������@�����@���������������^������^��^�����	�U�����������U�$�U�96�:0�<-�?6�D���F���G���H���R���T���m���o���y���}�����U���U���U���U���U���U���U��-������������������������������������������������������������������������������U��������������-�������������������U�	�U�����������U�$�U�96�:0�<-�?6�D���F���G���H���R���T���m���o���y���}�����U���U���U���U���U���U���U��-������������������������������������������������������������������������������U��������������-�������������������U����
���
����;�#���&���*���2���4���7�5�9�,�:�|�<�;�?�,�Y�r�Z���\�|�k���l���m�;�o�;�p���r���y�;�|���}�;�������������������������������;���r���r��������;��;��;����������;��;��;�	�U�����������U�$�U�96�:0�<-�?6�D���F���G���H���R���T���m���o���y���}�����U���U���U���U���U���U���U��-������������������������������������������������������������������������������U��������������-�������������������U�	�U�����������U�$�U�96�:0�<-�?6�D���F���G���H���R���T���m���o���y���}�����U���U���U���U���U���U���U��-������������������������������������������������������������������������������U��������������-�������������������U����
���
����;�#���&���*���2���4���7�5�9�,�:�|�<�;�?�,�Y�r�Z���\�|�k���l���m�;�o�;�p���r���y�;�|���}�;�������������������������������;���r���r��������;��;��;����������;��;��;����	���
���
����^��^����$���7�A�9���;���<�@�=���?���l���r���|���������������������������������@�����@���������������^������^��^��������
���
����;�#���&���*���2���4���7�5�9�,�:�|�<�;�?�,�Y�r�Z���\�|�k���l���m�;�o�;�p���r���y�;�|���}�;�������������������������������;���r���r��������;��;��;����������;��;��;����	���
���
����^��^����$���7�A�9���;���<�@�=���?���l���r���|���������������������������������@�����@���������������^������^��^��������	���
���
����^��^����$���7�A�9���;���<�@�=���?���l���r���|���������������������������������@�����@���������������^������^��^�����	�U�����������U�$�U�96�:0�<-�?6�D���F���G���H���R���T���m���o���y���}�����U���U���U���U���U���U���U��-������������������������������������������������������������������������������U��������������-�������������������U��J�
�J�
�J����#���&���*���->�2���4���7�|�8���9���:���<�h�?���W���Y���Z���\���k���l�J�m���o���p���r�J�t�I�u�I�y���{�I�|�J�}�������������������������������������������������h����������������h��������J��J��J��J���������������Z,�
Bz�(Zt��J�B��N�		r	�
.
^
�
��z�
 
P
z
�2���>|���Lr��F���(Hx���X�d�`���(���t�(�.l�R��@���f|�@@�   �!!l!�"&"l#<#�#�$,$F%%%b%�&&�&�&�'2'^'�((Z(�)")�*�*�++++$+0+<+�,n,z,�,�,�,�,�,�,�--*-6-B-N-Z-f-�. .,.8.D.P.b.�/R/^/j/v/�/�/�0�1�1�1�1�1�1�1�1�2
2�2�2�2�2�2�2�3L444*4<4N4`4�4�5�6|6�6�7"7�88P8~8�8�9~:8:D:T:`:p:�:�:�:�:�:�:�;8;h;�;�;�;�<J<�<�=,=�=�=�=�>>H>�>�?4?�@@:@�A�A�A�BB�CCxDD0D\D�D�D�E�E�FRF�F�G0GpG�HH�H�IIJIdI�I�I�JJ:JzJ�J�K�b"/n�	�n���)��(��0�+	C
�R.2F
�x:	T	h	p	R|	�	P�	�	`4	0�		�	
��	0
�	d
�	
�.	4�Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.LatoItalictyPolandLukaszDziedzic: Lato Italic: 2013Lato ItalicVersion 1.105; Western+Polish opensourceLato-ItalicLato is a trademark of tyPoland Lukasz Dziedzic.tyPoland Lukasz DziedzicLukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLCopyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.LatoItalictyPolandLukaszDziedzic: Lato Italic: 2013Lato-ItalicVersion 1.105; Western+Polish opensourceLato is a trademark of tyPoland Lukasz Dziedzic.tyPoland Lukasz DziedzicLukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFL���rt	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�������	
�����
����������������������������������������������� !"#NULLuni00A0uni00ADmacronperiodcenteredAogonekaogonekEogonekeogonekNacutenacuteSacutesacuteZacutezacute
Zdotaccent
zdotaccentuni02C9EuroDeltauni2669undercommaaccent
grave.case
dieresis.casemacron.case
acute.casecircumflex.case
caron.case
breve.casedotaccent.case	ring.case
tilde.casehungarumlaut.case
caron.salt�������������V��������V�,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �Ead�(PX!�E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K�KRX��Y�c �#D�#p�E  �(`f �UX�%a�Ec#b�#D�*�*�*Y�(	ERD�*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPKCH[Z��o�o\share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttfnu�[���GPOS'��HPGSUBV.TIlOS/2�8��J|`cmapRԟ�J��cvt &�6e�8fpgm�zAe�	�gaspe�glyf�^��O���head��d��6hhea�1��$hmtx?k���TkernO�Q��@g�loca�)N4,maxp>
�P` name�BbdP�}post:�\�b�prep�x9�op�
0JDFLTlatn����kernkernGr�����T��v		�

����
V
��8�,^$^�0��
D��J��J���J�L F �!z"##P#�$4$~%x&&�'�(�)�*�+�+�,J,�-n..�/$/V/�/�/�1�242n2�2�33V3�3�44J4�4�4�5�5�6�7�7�7�8~8�8�:�;";�;�<�=2>,?&?�@�A�B�C8C�D�E.F(>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[0�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���0�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�Iq>	��
>
>�G���G������"F#��$��&��*��-�o2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l>m��o��p��r>tPuPw��y��{P|>}�������������������������������������������������������������������������������������������������������������������������������������������������������>�>�G�>�>�G��G�����$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������
�om�oo�oy�o}�o�o�o�o�o�o$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	���L�L������"$��-�.D��F��G��H��P��Q��R��S��T��U��X��w������������������������������������������������������������������������������������������������������������L�L�L���	����$����������������������������+

��#��&��*��2��4��I��W��Y��Z��\��k��lm��o��p��ry��|}������������������������������������������3��
��
���$#��&��*��2��4��7�89�V:�y<�=?�VY�zZ��\�zk��l��m�$o�$p��r��t�=u�=y�${�=|��}�$�����������������������=��z��z�����=�$�$���������$�$�$$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������/	���=�=��$��-�VD��F��G��H��R��T�������������������������������������������������������������������������������������������=�=�=���$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������#��&��*��2��4��7��8��k��p���������������������������������������f	���L�L�L���]�]"-#��$��&��*��-�82��4��D�)F�)G�)H�)J�AP�]Q�]R�)S�]T�)U�]V�FX�]Y�QZ�y[�b\�L]�ek��m�Lo�Lp��w�]y�L}�L��������������������������������������������)��)��)��)��)��)��)��)��)��)��)��)��)��]��)��)��)��)��)��)��]��]��]��]��Q��Q���)���)�)�]���)�F�F�e�e�e�L�L�L�L�L�L�L�L���	����$����������������������������q>	��
>
>�G���G������"F#��$��&��*��-�o2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l>m��o��p��r>tPuPw��y��{P|>}�������������������������������������������������������������������������������������������������������������������������������������������������������>�>�G�>�>�G��G�����NF	��
F
F����������$��-��D��F��G��H��J��P��Q��R��S��T��U��V��X��lFrFt<u<w��{<|F��������������������������������������������������������������������������������������������������������������F�F��F�F�����+

��#��&��*��2��4��I��W��Y��Z��\��k��lm��o��p��ry��|}������������������������������������������m4	�~
4
4�[�V�[�~����"2#��$�~&��*��-�82��4��D�GF�GG�GH�GJ�_P��Q��R�GS��T�GU��V�GX��]��k��l4m�Vo�Vp��r4t2u2w��y�V{2|4}�V��~��~��~��~��~��~��~�����������������������G��G��G��G��G��G��G��G��G��G��G��G��G�����G��G��G��G��G��G�������������~�G���G�G�����G�G�G�������V�V�4�4�[�4�4�[�V�[�V�V��~��" #��&��*��2��4��k��m��o��p��y��}��������������������������������-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������K
K
K�y�ylKrKtdud{d|K�K�K�y�K�K�y�y��
��
��Y��\��l��r��t��u��{��|����������������D��F��G��H��R��T���������������������������������������������������������������������
��
��Y��\��l��r��t��u��{��|������������������
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������"�y�yD��F��G��H��R��T��������������������������������������������������������������������y�y�y.	���~�~��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������~�~�~���	��������$����������������������������������D��F��G��H��R��T�������������������������������������������������������������������.	���y�y��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������y�y�y���-#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[	�e�e$�e9F:F<(?F��e��e��e��e��e��e��e�(�e�(��e	�e�e$�e9F:F<(?F��e��e��e��e��e��e��e�(�e�(��e&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���	�e�e$�e9F:F<(?F��e��e��e��e��e��e��e�(�e�(��e>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������
�om�oo�oy�o}�o�o�o�o�o�o$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�����������������������������������������������	����$����������������������������	����$����������������������������	����$����������������������������	����$����������������������������m4	�~
4
4�[�V�[�~����"2#��$�~&��*��-�82��4��D�GF�GG�GH�GJ�_P��Q��R�GS��T�GU��V�GX��]��k��l4m�Vo�Vp��r4t2u2w��y�V{2|4}�V��~��~��~��~��~��~��~�����������������������G��G��G��G��G��G��G��G��G��G��G��G��G�����G��G��G��G��G��G�������������~�G���G�G�����G�G�G�������V�V�4�4�[�4�4�[�V�[�V�V��~$��	��
����
����$��7��9��;��<��=��?��@��`��l��r��|�������������������������������������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|��������
����
��@��[��`��l��r��|������.	���~�~��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������~�~�~�����
����
��@��[��`��l��r��|������.	���~�~��$��D��F��G��H��R��T�������������������������������������������������������������������������������������������~�~�~���:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������
�om�oo�oy�o}�o�o�o�o�o�o��
����
��@��[��`��l��r��|������"�o
�o
�o�t9�j:��<�y?�jY��Z��\��l�om�to�tr�ot��u��y�t{��|�o}�t��y�������y�t�t�o�o�o�o�t�t�t��
��
��Y��\��l��r��t��u��{��|������������������
����
��@��[��`��l��r��|������m4	�~
4
4�[�V�[�~����"2#��$�~&��*��-�82��4��D�GF�GG�GH�GJ�_P��Q��R�GS��T�GU��V�GX��]��k��l4m�Vo�Vp��r4t2u2w��y�V{2|4}�V��~��~��~��~��~��~��~�����������������������G��G��G��G��G��G��G��G��G��G��G��G��G�����G��G��G��G��G��G�������������~�G���G�G�����G�G�G�������V�V�4�4�[�4�4�[�V�[�V�V��~��" #��&��*��2��4��k��m��o��p��y��}����������������������������������" #��&��*��2��4��k��m��o��p��y��}����������������������������������" #��&��*��2��4��k��m��o��p��y��}��������������������������������&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[0�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[0�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���0�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���&�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j���>	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[:�V
�V
�V��#��&��*��-22��4��7��8��9��:��<�y?��W��Y��Z��\��k��l�Vm��o��p��r�Vt�`u�`y��{�`|�V}�������������������������������������y�����������y�����V�V�V�V������r

#$&')-./2345789:;<=>?EHIKNPQRSUYZ[\^klmoprtuy{|}����������������������������������������������������������
8�DFLTlatn����case&case,liga2liga8sups>supsD,>B	

@LO,{tuCjqv�������I�,xx�A���P`KtyPL�J�z��� ��� �&
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a���������������������������������rdei�x�pk�vj���sgw�����l|����cn���m}�b�������������������y���������������������q���z���`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ`T@
~�1DS[a~�����    " & 0 : D �!"!&"""""""+"H"`"e%�&i���
 �1ARZ`x�����      & 0 9 D �!"!&"""""""+"H"`"d%�&i����������������{�u�q�[�H����$��������������I�����������������޸ޡޞ�:ڜ/��,8<@��BK�	PX@3	`f[[		QCQ
D@4hf[[		QCQ
DY@@?>=<;:9751/+)&$$
+>32#'.<54>54.#"#"'4632#"&!!7!!3<G*6]E'!1;3$
A!1:1!/?#.B.{,! ,, !,����]#[��n$;S47O;-('rT.)*4C.$8'�� ..  ..��y$?�����
)@&hCSD

+#>74>32#"&�F
>F�!""'5���-PS\88\SP-<��""!5��t�
,@)	BkD

$+#"&'7!#"&'7e$
&]$
&��ܚ�$�ܚ�$Pr�:>yK�)PX@(
Y	CQ
C
D@&
Z
Y	C
DY@>=<;::5320-,'%#"!#!+#"&547!+#"546?3#76;>;!323+32%!!�'��Ԇ)��ۂ�
)։(�+�)�����	��,�����E
	��l��%��D�
	�m$�yE�r��B[9DO�@!
*BK�PX@2j

h
f_

SC	SD@1j

h
fk

SC	SDY@LKA@#$#$+.'7632.54>?>;#".'+4.'>ေ>	"/AU8o<rY6=r�g
#"d�7#;XAc@|c=D~�p$
#�-Lb6kY�b4��'DX2`TV,bP&!(#�/HhLN�pE��J@!!)%��0GhN\�N��:P9)��>c��6M9*,6Tl}��8�'0DXuK�PX@+[	[SC
C		SD@/[	[CSC
C		SDY@
US((%"&((($
+#".54>324.#"32>>;+#".54>324.#"32>�7Zt>3W?#4XvA3V?$J.>$0XC'-?$0WC(XA��B�7Zt>3W>#4XuA3V?$J.=$0XC(.?$0WB(qg�h4&ImGg�i5&JmI<W9)W�]<V8(V�b
���g�h5&JlGg�i5&KmH<W9)W�];V8(V�M����?OT@QK8J)#BhSCS
CSDFD/-&$ 
??	+2"#"'.#">7>;#"&/#".54>7.54>32>7�>hJ)40K6=eI(>;a2A
<TD�M�/lz�GG|\6:c�M106b��0.J_2>si^(��GrP,�)Kh?	 E:%,Mi>E�I�NH�G^�[���3V>#-U|NR�y\F�FP�d8��BeD"!:P/�Viz��e�
@	BkD

$+#"&'7e$
&��ܚ�$���H� �(+.54>7�!2!	++<'
4UxR&	S~T+�O���H		X���PV�����r	w������ �(+4.'&546?'&547>\!1!	++<'
4UxR&	S~T++O���H		Y���PV�����r	w��	����;*@'40/+'&"
	Bja;;+7>7'7>7./7.5<?3>?'.'x	
��
��2	

����

��n+n		n,n	��	n,n	
	n+n	
���3�.@+jkMRF+!!#!7!�7��O7L8�Q	�8��=G�;�G�?���@B?S
D"+74632'.54>7#"&?0'+/(8"'$	%/U#2;0)URL 	%9J,2c*x@MQE+!!n�	�RxN:����@SD&$+74>32#"&:!#7''5M""'55�����@kD""++6;	!&�''/�$Z��`�',@)SCSD''	+2#".54>2>54.#"�\�r@b��y\�r@b��.c��Q5\}Gc��Q5]}�H�ّ���jH�ّ�G�j��_�)ʂ�z;_��Ƀ�{;���)@&BhCR
D$+%!7#"/3!!F����I�5�(H�E��	'i��HF5�1<@9-BhSCQ
D+)#!
11+2>3!2!7>7>54.#"#"/>�K�c9;e�K�	 G#h�q
	!K}Z2-Mf9Du_F.\~��*S}R[���D�8!5!�C{|�NCcA 'Ig?Z�b4q��<�HU@RD
Bhh[SCSDB@:80/.-%#HH	+2#".'763232>54.#7>54.#"#"/>�K�`73XwCEgF#Q��ha�f<)	
2OpNa�g6$V�m	a�k8,Kd9Dv`F.[~��)OvLP~^?
7Oe:`�xD.\�Y
GhF"Ci�@7aG)B2X|L@_?'Hg@Z�b4>^�+@(
B\C
D!#+!+#!"&/367!Z�1T2�g;Tk�5b�2
�i�
-�� '��g��8�-@@=+*Bh[QCSD(#&(""+#!632#".'763232>54.#"'!2����kg�g3[��m:hXI 
-HgF[�yF(T�Xn�8�{_�$6a�P}NJJ#-'%=r�iBmN,%r���32@/B[CSD0.&$	+2#".54>7>;>32>54.#"�T�b6Q��oY�f7:Z>�	Q�&>B���*PsJ^�p=,QtG_�o=M5`�Rl��J7h�\:qwH	

��*K#?G�-DtU0=l�WFrP+Do����$@!BQC
D$'++>7!"&57�	��H.
��
�#	��


>f��&�%;OD@A
B[SCSD=<'&GE<O=O1/&;';%%	+".54>7.54>32'2>54.#"2>54.#"^�m<6`�MmpBx�fW�_1)MpH<cG'N��eY�l==`u7,]ZQ=$.Ty�[�Y+%HjES�\2!Fk1ZNY�fA!�hT�l?3WuCDw`F5NiBf�q<J3_�SOkA"8PkE?fJ(�9]v>6]E'2XwE2^H+�Z�22@/B[SC
D/-%#	+".54>32+>74.#"32>MP�^3O��iU�c5:V7�H T� >B�V+NnBV�l=)MnD]�i8Z3\�Of�I8f�VDrosE��I&L)BH�CqQ-9g�VClK(Ai�:��Z�;K�#PX@SCSD@[SDY�&&&$+74>32#"&4>32#"&:!#7''5f!#7''5M""'55D""'55<�e�)K@
B?K�#PX@SCS
D@[S
DY@	(& "+74632'.54>7#"&4>32#"&<0'+/(8"'$	%/o!#7''5U#2;0)URL 	%9J,2<""'55�	�5�(+���%(�B��A��

��
���	c!@YMQE+!!!!�;	��/:��+GG�	�5�(+	767>7&'&5<>7���L%(�����A


�~����'95@2BhfSCSD(&#,$+>32#7>54.#"#"'4>32#"&EQ\4=gK*1LYQ< @9NZL2 9M,>\@(
"!""'5
3'&Fa;SvXA<>(��,E>?PhH/K5#*#�g""!5a��2Wlf@c
^
?Bh[

[	[OSGYXb`XlYlOMCA=;86,*" 
WW
+%"&5<7#".54>3232>54.#"3267632#".54>32%2>7.#"IG?�L-B*!>Zq�N1T!';sZ7L��g\���a7V��z��_	o�����^<j���hpɘXDq��%!HHFp.;l\K5/�NH\S 9L,;|tfL,��=Z !*	I��v|�|?7f���z��PD>JP[�����ǡq=I�҉�ՙTD?lT7%AXck4!9*��X�
$@!BZC
D# +!#"&'!+3!.'XLe���L�b�>E�	
��b��z�*�5�*=@:B[SCS
D*(" !+3!2#!2654.#%!2>54&#!��yf�b/,QtI��C�s�JD��)OsJ��a�\,�����*OrHD|eI�yb�p<�����:]B$H:_zAw~�����/D@A
BhfSCSD'%" //+%2>32#".546$32#".#"�ItZA.	#.ix�PzŋKp��ItaQ&)N}`��aBv�E%+%*/K5X�⊹3�y,B*(,5,h���|NjJ�-�@SCS
D!(!&+#!!24.#!!2>-1[���g�$��}ʍLg?u�h���x�ޢZ/}ڵ�b3�U�ދy†H�c��?�(@%YQCQ
D+!!!!!!4�WG7��I���5��P��R��?�	"@YQC
D+!!!#!4�WJO��Pd�5��S�u�����9G@D$	Bh[SCSD1/(& 99+%2>7#"504>7!#".546$32#"'.#"�CobZ-0�k?5o}�R͐Mn��M~hV&	'7Kb?��]Bz�A*��
%:'Y�㊻3�w,@)'!h���|njK�!� @ZC
D+!#!#3!3sdS��Sd�dR(Rd��Y��k����@C
D+!#3	d�d�����'@$BhCSD#%$+#"&'7>3232>73}Hn�W6Y+

#1#;lW=
xd�u�q76%W�i���� &@#
B\C
D'(% +3267>;#"&'.+#3^M"(PQ�~�P	�*	TTc�d�L���Xf�U��X�@CR
D+7!!3�h�6�cUU��<�!'@$BhC
D!6(+67>;#>7+"'#32-
~E�W���	�n�W�D���
�y��#��F���!�@BC
D!+2>73#"'#3b
��W�.�Q�W�1��0��y�-�G����q�'@SCSD((($+#".546$324.#"32>qm���|ȍLn��}ɍLg?v�g�ޣ\@v�g�ޢ[0����xY�≺3�xY��{ŋKh��{ŊKg��?�/@,[SC
D



!+#!2#32>54&#GFc�T��J��v�T�^�k:��;�����l��H��S<j�V�����q�/T@
BK�PX@SCSCD@kSCSDY�((($&+#"&'#".546$324.#"32>q5a�U#N
�|�|ȍLn��}ɍLg?v�g�ޣ\@v�g�ޢ[0�⼓1�{
C2Y�≺3�xY��{ŋKh��{ŊKg��3�!7@4B[SC
D! *!+#!2#"'.#32>54&#POc�P��<n�^qU��!%SM�_�j8�������\�sH��@���4`�S�~'����==@:=BhfSCSD;9(&!#!+#".#"#"&'763232>54.54>32�";]FLwS,2QgmgQ2B{�m��<!	!-@U8T�`32QglhQ1:m�ef�8�&-&1Uq@=S;+)1FdI`��LcV+#)#9d�N>S:((0GgKQ�sDKH��� @QC
D+!#!7�
�8�c��6
�T��3T����#@ CSD+%2>73#".5473o]�uLkdl]��sg�o:kdl-W�FH~�cl��u˖VG|�e,-l��(T�h;
�@BC
D, +32>7>;#O&
	GN�:Y��c00��y�~�( @#BC
D+; +32>7>;2>7>;#.'#�N���
�M��Y�	��Y��h))��h))��y��/����@
BC
D)"'!+	32676;	#"&'+��Y
-�c��Y
���	b��
��4�r���p
���@BC
D,"+#32>7>;gIcI��X+�SG��H?�d! �,��$@!QCQ
D+!!7>7!7��28�A	���!	�R!
�RD��D�'@$[OQE!#+!+32D�&
�̼���#��
q��H�@kD" +32#"&'q''	�%�$�+���'@$B[OQE!#+!!7>;#"5�(���˻�
#v ��@	BkD+!+3#"&'&'+\;UC�

�F���
��L������1@MQE+!7�	�+�AA�~�@kD+2#"/�s5����<��s�+^@ BK�%PX@SCS
D@SC
CSDY@
#!++*' +!#"&5#".54>322>7&#"�.!&[gr=?^? ,Qp��R<h3��9odY#2;EC~o]D%[
9P�^41Z�PW��~\4��@u�d�-Pn��L��f����0h�"BK�%PX@CSCSD@!CSC
CSDY@(&00*%+33>32#"&'#"32>54&f�]a'`ju<AbB" ;Ul�HU�*9sk]$#7?C#?mYE/f���O�\32[�PM���b9MLl�@t�d��'7"3Xu��A��H��F�25@2BhfSCSD%(#&*$+%#".54>32#".#"32>325_[^5VT*!>Xn�I1OB6	
1N;T�k=AbC5TA1&
�;L,;j�VO��vV1#2! % Z��lEvV0")"
@����.p@"BK�%PX@CSCS
D@!CSC
CSDY@&$..
+!"&5#".54>323%2>7.#"�!'alv=AbB" ;Ul�IQ�,I\��I9rk]$#+�E?mYE/f
=Q�_42\�QL���b9GGK�Q@?t�c N@3Xt��@��F��F�,=7@42BhSCSD.--=.=*&%,+32>32#".54>32%">54.F8`�Ќ��5UC3(	1]_f:S�X.;Wp�OIe?��P�cC��O,,G%)JB;1')��$($
4K07e�ZK��zZ4)=GgDq�Q%)0361(B���%^�BK�!PX@kSCQD@kYSDY@%%!$%$	++'&546737>32#"&#"!2j*#�~�
:Wn?8
(-Q?-	
~���w~U�V+
0AhK{F�����>Td�@<& CBBK�PX@+	[[CSCSD@.h	[[SCSDY@VU^\UdVdQOGD7642*(
+#".54>32.5467#".54>32!4&'.#"32>2>54&#"�(/(#*#@t�dO�_4K��b"D#")[69bG(1]�W3Z#
�l 1X)c�a1'Hf>N�[2�@eF$n]@dE$l�7ZKA>@$3016@'?uZ6 =X8HoL(4 #H3$GgDE�h? 

L��1F%?T.+C-*FZ
6Wo8hi3Tm9jnf��,@)BCSC
D%%+33>32#654&#"f�^\(akp9po
^KMS6pi^$A��KuQ*��2]��|.)fj7g�Z��x��&@#SCC
D
+##".54>32Ny]y���W !�m����(4@1	BSCCSD%#!%%+#"&'7>323267#".54>32J�(?W5)JR
���4XA%
XQbW !c��0@-B\CC
D%(%!+3267>;#"&'.+#rm%�R�9	lP	��$=]����	{�_

�


�
�
�u��@C
D+33u�]���Q^��5Z@
BK�)PX@SC
D@CSC
DY@55%&($!	+332>32>32#>54&#"#654&#"^x+#N�qdU']gl5k^
]K>M1eaW#C]K	:Jr�I?�$�ꛫ~v"'PwO'�}
6_��|7Z]-Z�\��|E6TW�^��!P@
BK�)PX@SC
D@CSC
DY@!!%&!+332>32#654&#"^x+")cnt;op
^KMS8rk^$=�$��O}W-��	2[��|.)ej9i�]��G����%,@)SCSD%%	+%2>54&#"".54>32�W�f7�~:fVE/�wP�]3H��lP�]3I��>[��g��)Jex�F��K8j�`yߪe9i�^yޫf2����-m@!BK�)PX@SCSCD@!CSCSCDY@%#--*&!+32>32#"&'"32>54&2�+# 'amv=AbB" ;Ul�HQ�+;�9sj^$#,�E?mYE/f��F$��Q�_42[�PM���b9HF�?t�d��O@3Xu��A��<��s�.6@3#BSCSCD&$..*) +#"&547#".54>322>?&#"�6O&Yeo<?^? ,Qp��R<h3��9mdX#4;EC~o]D%[��sM}Z11Z�PW��~\4��?t�c�-Pn��L��^��,@)
BSC
D#$!+332>32&#"^x+#D�c)+.(k�=<�$�أ�Y��!����<=@:<BhfSCSD:8'%" #!+#".#"#"&'7>3232>54.54>32�
2J73[C'&?OTO?&3^�Ra�/	
5R>;aE&&>PSP>&2Z|JT|0i"9K*)8)%4K5@x]8C6" ' 'DY2,<+#2H4:kS144l���@+g@
	&BK�!PX@#jhQCSD@!jh\SDY@	%#(&&+74>7#"5?>;!!32>32#"&�D��B
./ ��E=0!3&(r9R]�$9,5)d	��G��)4!A:**3Zr����"P@
BK�%PX@CT
D@C
CTDY@""'!%+32>73#"&5#"&54>7!KMS7pj^$@^x,)cmt:oo
�/(fk8i�\�O|U-��	3Z��S��@BC
D+ +3267>;#SI�
�G�N�	��,*0
�Vx�) @#BC
D(!+: +32>76;2>7>;#"'&5+VC�	V$�
FB�VD���B���))��**
�(����V�@BC
D("(!+3267>;	#"&'+s�P
�	 	T��P
�	��P��rq	�0����QV����@
BCD,"!++32>7>;�C��J
�
�	I����
��	
	<�@QCQ
D+!!7>7!7!6�a/	�^
���
����K&	MKG��F�D7@4"5B[[OSG<:303)+4&#72654&54>;+";20#".54>�D9J\+NoE3:P1	'?.*")"'8#38U:#*#�9I;tw<�<U�_3(3Vn:B�>-TF3
)5 =vw{A)B0

	%BY4D{ut���@QD+3#�KK����D7@45"B[[OSG<:303)+3"+7>;2>54&54>7.54>54.+"&504>732�D9J\+NoE3:P1	'>/*")"'9"37V:#*#9I;tw<�<U�_3(3Vm;B�>-TF3
(6 =vw{A(C0

	%BY4D{utP���9@6jk[OSG
+2>53#".#"#4>32�%=*N <X83kib+&;*M <W84khb70B'7^F('0'0B'7^F('0'�����
)@&hSCD

+>734632#"&�D

)			C 5'#7''5��&-PS\88\SP-���'7#'55���/:K@H%BjhfkSCSD##'#	+.54>?>;#".'>32+V�b4L�ˀ#
#)V�.
	4N8�KlI*J]l:$
#�)LmE�i�r=@o�`�לX��;- ��"' 	1%�
�Q�]7lJ��i�=C@@+
Bh[SCS
D%&%##("	+#!>3!#!7>7#7>;>32#"'.#"!a�%'#/)�5$=/*��$Lz�fPuQ4(	&;XAN�`=	$����,F9/'@
#4I5W%)]�uC%?V0 <.4_�O��$��D#79@6!B
@ ?WSD42*((+467'7>327'#"&''7.732>54.#"(#�2�-n?>n-�1�%))#�1�-n?>m,�1�$)H+Ib89cJ++Jc98bI+�>m-�2�%*)$�2�-n?>m-�2�$)($�2�-m?8bI++Ib88cJ++Jc���!8@5	B
Z	YC
D! +!+!32>7>;!!!!#!7!7!�[��M	

�N��[��o��/]/��n��h�d##���9v8��8v���@YQD+3#3#�KKKK����X�}b�EYA@>EWM:#BhfWSDCA,*'%!#!+#".#"#"&'763232>54.5467.54>32>54.'K	1I76[B%(BUXUB(^](22]�Ta�0
4P>>bD$Im�mIdq*42Z}LS{0��!8IPR$NC2CJL#`M
#:N*)>3,-3AR7^�&"U;Dy\5B6" % 'CY2=S@:GaGU�)!V>;lR145��&<2+(+&kE(?3*&&+gv�qm%3K�'PX@
SD@OSGY�&(($+#".54>32#".54632

V
0"





"1
k���/Ka�@
BK�PX@4hf[[		SCSDK�PX@4hf[[		SCSD@4hf[[		SCSDYY@
^\*,*(#&(%"
+>32#".54>32#".#"32>4>32#".732>54.#"Y";�t`�s@Cw�c4WJA	!;[DS�a55_�L<V?-�%4^���dc���^44^���cc���^4<g��\��yW/h���g�#;FAv�fd�wB)!5b�WZ�a3,c���^44^���cd���^44^���d��h/Wy��]��ii���>d�0:L@I!Bh[	WSD21651:2:%#00
+"&=#".54>7>454#"#"&/>32'26?4cB2&)[�go'8)

	1i?*>)�=[+��9GD.11!*H7!w/-1A$	4Y�a*5)�KB.)����%�%(+77�

�			� =

�			� z
����	{z
����	�T��=K�	PX@_MQE@kMQEY�+!#!�<.O$���'c*x@MQE+!!n�	�RxNq���1GP��<BK�PX@/h		[
[SCSDK�PX@/h		[
[SCSD@/h		[
[SCSDYY@22PNJH2G2F)!**,&+4>32#".732>54.#"#32#"'.#'32654&+q4^���dd���^44^���cc���^4<g��\��yW/h���g�U����v
O��n�ywkw��c���^44^���cd���^44^���d��h/Wy��]��ii��yusvd�
��_
@a[\Tr�q$@MQE+!!y��	$@�D��'@WSD((($+4>32#".732>54.#"�0Qm>?nQ//Qn?>mQ0E$>U00T=$$=T00U>$n>mQ..Qm>>lQ//Ql>0T>$$>T00T?$$?T<P8<@9jhZMQE
	+!!#!7!!!�2�	�O1L1�S�2����V�jG�l�G��G���V/g@
-BK�!PX@h[SD@!h[OQEY@+)%#
//+2>3!2!767%>54.#"#"/>�(E33C%�(�'
"=,#/9Z$�V,?*-LD?!��;>@$-B=`e�|�V>�@:BK�PX@,hh[[SD@1hh[[OSGY@8631+*)( >>	+2#".'763232>54.#7>54.#"#"/>�(D2UE@A+H^3<N1 	
 9.,E/+D0ae".?T	$1BPV)<&K_K95U>!3C$
('0;-!2RH+B;0I2�T�@kD"++7>3T�7�
�������$7@4#BCS
CD$$&(!&+32673#"50>7#"&'#"&5RcjX�H][z3K�]Xn(.��cmybX�	;3X[JD*R#��y�B4�*@'hiSD+##!#".54>34	�U����Vm\�h8E��n�R�
�
y-SwKV�i;����@OSG($+4>32#".�$&&$P&&%%��TV@
BK�	PX@^jTD@jjTDY@+232654.'73#"&'764#3:(8"8:'JN2E(&D
��
2*�a73!5%��lQN�	BK�PX@jjQD@jjMRFY�$+37#"/733!��C�
�9R����%��h5�;��#)@&WSD##	+2#".54>2>54&#"�7U;+OpE8V;+Oq7T8RR:U8R�$C]9O�[2$B]9O�\2��*MlBYk+NlAYj���%�#(+7'&54767&'&54?'&54767&'&54?�	�	��	�	���
'	'
����
'	'
���`�(.Q@N"Bhh
Z\	C
D.-('&%$#%"#!"
+%3+#7!"5'3+6;37#"/733!>7!�n=���A��&�$(���C��9R�������'��"�Ud#�k%w
��h5t�|�H�9Jb@_D=7Bhh
Z[	CT
D
	JIHGFEB@;:52/-	9
9""
+%+6;2>3!2!7>7%>54.#"#*/>%37#"/733!w&�$(y(E33C%�(�'
"=,#/>X����C��9R���d#�K,?*-LD?!� �;>@$-F9`e %w
��h5�r�Y_y@vU
!.
	
B

h	
	
h

h	[

[\

SC
D_^SPMKEDCB:820*(YY"#!#+%3+#7!"5'3+6;%2#".'763232>54.#7>54.#"#*/>>7!�		n=���A��&�$(��(D2UE@A+H^3<N1 	"6*,E/+D0ae".?V		1BP+���'��"�Ud#)<&K_K95U>!3C$
-%0;-!2RH+E80I2���|��;�(:5@2BhfSCSD('#,$+#".54>?332>324>32#"&;DP\4;gL+1KZP; >6MXK1!8K)=]B'�!""'5�3'%Db>RtS=68%��+?99KeG0L5$*$P""!5����X�&$	@����X�&$H����X�&$
@����X�&$@����X�&$
@����X�&$@����:@7BYYQCS
D#	+!!!!!!+!!��6��W�X���Mwz���
5��P��R��b��z5+�����Lh@e9?
J	Bhf
hSCSC	S			DHF>=750.&$!LL+232654.'7.546$32#".#"32>32#"&'76#3:(8"/r��Fp��ItaQ&)N}`��aBv�bItZA.	#-ds�LJN2E(&D
��
2*r^�܅�3�y,B*(,5,h���|NjJ%+%*-I5L73!5%���?�&(	G���?�&(G���?�&(
G���?�&(
G�����&,	�����&,�����&,
�����&,
E`�!,@)YSCS
D!%(!+3!2#!#%4.#!!!!2>M�R�}ɍLl�����$T��?u�g��Hs��Jx�ݡZ��U�މ����r�y†H��>��c����!�&1������q�&2	������q�&2������q�&2
������q�&2������q�&2
���)C�	(+		'	7	)�cF6���Z,���9C�
����3u��3wp4��pO����!-9b@
21&%BK�PX@kCSCSD@jkSCSDY�**%(%$+#"&'+7.546$327>;.#"%4&'32>qm���h�C�")�JNn��m�Ez
4�DH�w:6%:�`�ޣ\"40��9�Z�ޢ[0����x>9��Q卺3�xE?��Q��v�E�<@h��(o�E�67g�������&8	�������&8�������&8
�������&8
������&<&�Y�,@)\[C
D"& +32+#332>54&#����J��u�#c�d-T�^�k:��i��l��H������T<j�V��;���P�@
JBK�PX@-hkSCQCSD@+hk[SCSDY@LKIGFD<:$"PP	+2#"&'763232>54.54>54.#"+'&573>�InJ%4MZM4.EQE.6_�M]~03L::^B$/HRH/5O]O54T=A{cEp*#���W|��-I\.FdL<:A+)3'&7TBL\3C6! % (E]58F0#-B58RC=GZ?D9&Bv�^�z�v	(_��K��<��s�&DCT��<����&Dv-��<��s�&D���<���h&D���<���m&Dj��<��s�&D�22��j�GWd�@?E!BK�)PX@5hh

[S	CSD@?hh

[S	CSCSDY@&YX^]XdYdSQIHCA=;860/'%
	GG+232>32#"&'#".54>?>54&#"#"/>32>32>7">54&Z7]D&>���y5UD3(	0\`g:t�[jo08]C%F��\[BaF.Q�crt9�����=0B'=oY<
�GtY;
��{4b� ;Q0:hN0))��$($
3K1��MjA8W<K}[6U#in(/(NPxkjx�'Eb?.B+-U|P+6c�V'<N-HQH��F�Nh@e;A
L	Bhf
hSCSC	S			DJH@?9720(&#!NN+232654.'7.54>32#".#"32>32#"&'76#3:(8"1OtM&!>Xn�I1OB6	
1N;T�k=AbC5TA1&
2XVV/ JN2E(&D
��
2*u?i�SO��vV1#2! % Z��lEvV0")"
7I,P73!5%��F��F�&HC���F��F�&Hv���F��F�&H����F��Qm&Hj���a`�&�C���x'�&�v���B%�&�����IDm&�j�I���y7I5@20B76
@[SD98A?8I9I,*" +&54?.'&54?7#".54>324654&'267.#"��3vD
Q�C�
�+H4@��~L�^5Ay�i1`TE\U�I��!	+GeDZ�`2*Hc.	y#0	=3�
	o(f~�Y����n9h�[m��U9X=��K��,��3dO1H|�^M{V.��^�j&Q����++��G����&RC����++��G����&Rv����++��G����&R�����++��G���j&R�����++��G���o&Rj����++��3^#+@([YOSG&&&%+!!4>32#"&4>32#"&���U�%$.&$,X%$.%#-�G{&1#%/�Y&1#%/ ��� *5u@
43$#BK�PX@!kCSCSD@!jkSCSDY@,++5,5'%  +"'+7.54>327>;&#"2>54&'��YF
!&+-H��lDq-=2u),I����7GnW�h9W�g9��G
K`�5�[yߪe(&S�5�Xyޫf��W�GY��AZ��kBn*�GB��r����&XC����++��r����&Xv����++��r����&X�����++��r���o&Xj����++��V����&\v����++;����0?@<"BCSCSCD(&00*%+3>32#"&'#"32>54&;�]b'`kt<AbB" ;Ul�HQ�+6$9sk]$#7>C#?mYF/g����N�\32[�PM���b9HG�E@u�d��'6"3Xu��A����V���o&\j����++�����'0L@I-BAhZC
CSD)($"''+2#"&54>7.'!+332>!.'�	
Q+BK*6e���L�bg7.3*$��E�		�!B:">6.��b��y$0<")0
��+,<��s�4F�K�%PX@&;B@&;BYK�%PX@*hSC	SCSD@.hSC
C	SCSDY@65><5F6F1/('$"44
+2#"&54>7.5#".54>32#32>2>7&#",	
Q+BK-8!&[gr=?^? ,Qp��R<h3u3+3*$�09odY#2;EC~o]D%[�!B:#@7/
4P�^41Z�PW��~\4�?$0<")0
6@u�d�-Pn��L���������&&���H��F�&Fv����++���?�'T@Q	B
		hYQCQ
C		SD$"''+2#"&54>7!!!!!!#32>X	
Q+BK*6����WG7��I�p3+3*$�!B:">6.�R��P��R$0<")0
F��F�L]e@bR9@?Bh	h
SCSCSDNMM]N]IG>=750.LL+2#"&54>7"#".54>3232>32732>">54.C	
Q+BK$/S�X.;Wp�OIe?8`�Ќ��5UC3(	/XZ_6)-3+3*$P�cC��O,,G�!B:93-7e�ZK��zZ4)=G)JB;1')��$($
1H0
$0<")0
�Dq�Q%)0361(xN�@C
D+#Ny]y��0��!@BCR
D+%!!7>?3g��~Dh�6H�	
�[c��=
��UMf@
^�S8�@BC
D+46?37#S�L]H��_\Z��
Tv��W2V���V���!�&1���^��&Qv���++���� 46@
BK�PX@*YSCQ
C	S
DK�PX@4YSCQ
CS
C		S
DK�#PX@*YSCQ
C	S
DK�%PX@4YSCQ
CS
C		S
D@2YSCQ
CQ
C		SDYYYY@1/'%  (%+!!!!!#".54>324.#"32>	�ZG2	��H��'+q��Vo�}Ce��W�rQ,]7g�]w̕U8h�\x̔T�R��P��R>N{U-W�އ�6�z5a�Vg��x‰Kk��x‰Ij�6����8N]S@PT6$BhS	C
SDPO:9O]P]FD9N:N42*(" 88+232>32#"&'#".54>32>2>54.#"">54.�=aD#8^�ƃ�y5UD3(	0\`g:y�Ui~GOtK$M��ix�:�8GrW>(:W;Z�h88Z~H{_?��{-0J� 9O0%F@80'��$($
3K1��EnL):aE���Z�uv��I2Vs��?CoO+T�ۈ6fP0q:k�_:EN'6)��'����&6��!����&Vv����++��'����&6
��!����&V�����++�����&<
&��,��&=F��	<�&]v����++��,��&=F��	<�&]�����++��,��&=F��	<�&]�����++��U�%SK�PX@ YSCSDK�PX@ YSCSDK�PX@ YSCSDK�PX@ YSCSDK�PX@ YSCSDK�PX@ YSCSDK�PX@ YSCSD@ YSCSDYYYYYYY@%%""	+#763>7'&546737>3#"!��Vw�W%3eWE���//�"5dWE1f	��b�\+/FqS
���1 FqR�Eo�R�
@BkD' +#"/+73R=	{�A�S������r�
@BkD' +32?6;#�A{�?�S������r�q$q��a� @WD+".547332>73e5K.C 3&,?+C#=Y�5H*4%3B&2ZD'2���@SD($+#".54>32�    F!!�s�=K�'PX@WSD@[OSGY�$&($+4>32#".732654&#"�/?##?//?##?/:@32@@23@$<++<$$;,,;$2@@22@@7��\
+@(B@jSD+2#"&54>732>F	
Q+BK1>-3+3*$�!B:%C:/
$0<")0
|�nhQK�PX@WSD@[OSGY@
+2673#".#"#>32�(.9(6 1-+&0:)5 2,*�7/$>.!(!:-$?-!'!����	#@ SD



	#++7>3!+7>3��)�=�-�
�������Y�\�BK�1PX@SCS
D@SC
CSDY@!$##	++#!#"&'7632327#7>3Y�q]q�VVsb0	�V��$�d��;ns	&
��!
�ld@MQE+!!���+dE�Bd@MQE+!!��	�VdE�#���(+&5467�\H):#7;X�B
1v?/*�\��(+'&5467>54&'&547E\H*8
�7;X�A		1v?,
����(+7'&5467>54&'&547�\H*8
�7;X�A		1v?,�#��)�(+&5467&5467�\H):�\H):#7;X�B
1v?/*7;X�B
1v?/*�e�+�(+'&5467>54&'&547%'&5467>54&'&547T\H*8
8\H*8
�7;X�A		1v?,7;X�A		1v?,����+�(+7'&5467>54&'&547%'&5467>54&'&547|\H*8
8\H*8
�7;X�A		1v?,7;X�A		1v?,����"YK�PX@#CSCSCD@OCSCDY@
$!#"+>3>32>72!#"'!�F�K/	GL�F��=O
h=�����&
����f����6��*
BK�PX@6		`

[CSCSC


D@1		`O

[CSC


DY@661.,+)'$##!##+%!7>3>32>72!!#.'#"'"&5467�X��F�K/	GL�F��Z_F�K,
G&OOM$�� ��&
�+�'�
91�|@OSG($+4>32#".9.Pi<=lP..Pl=<iP.T=lQ..Ql=<iP..Pi:����!1@SD&&(&&$+74>32#"&%4>32#"&%4>32#"&:!#7''5�!""'5�!#7''5M""'55'""!5'""'55}����'0DXl��K�PX@/[	[SC
C
		S
D@3[	[CSC
C
		S
DY@}{sqig_]US((%"&((($+#".54>324.#"32>>;+#".54>324.#"32>%#".54>324.#"32>�7Zt>3W?#4XvA3V?$J.>$0XC'-?$0WC(XA��B�7Zt>3W>#4XuA3V?$J.=$0XC(.?$0WB(�6Zt?3W>#4XuA3V?$J.=$0WC'->$0WC'qg�h4&ImGg�i5&JmI<W9)W�]<V8(V�b
���g�h5&JlGg�i5&KmH<W9)W�];V8(V�]g�h5&JlGg�i5&KmH<W9)W�];V8(V������(+7�

�			� z
����	����(+7'&54767&'&54?�	�	���
'	'
�����@C
D""+'+6;�&�$(d#)����J[@X9	Bh		h
[	[SC
S


DJIFEDC?=75$##%'$+3>32#".#"!#!!#!32>32#".5#73>7#L�q��r@jWI %,@W:_��`e��	�4a�Y>cM:)	 )^l|Fn�u<���^�ғN,A*$$@}�u*X0z��C%+%	!.K5Q�ه9/Y*�H�&9@6BhiS	D&&!4)
+>7>;#7+"'#32'###7��

6E<6	�	
�7<F7

��?E?�

n���'��|)�B?
:��:(;�:3@0 BSCS
D::***+!>54.#"!"504>7!7.54>32!�,d�yDCv�]p˛[0Y|L+�3�N�]4l��rÍPK��g�hY��yj�n7I�׎V�hF��
�Rw�\��YF��v}͛h�3W����/AC@@5"Bh[SCSD10;90A1A#)**$+>32#".54>32>54&#"#"'2>7.#"�%BBD&EjH&	k�ԂClM)&Eaw�K1WG4ol-G6%
NK�v_!7V?f�r=t=#5d�^AI����,SvKR��tT/7T:N�V���&F��x4dN0`��`y���i�@	BCR
D+)3!.'i�j�Y�j�������%&���w�$@!QCD+##!##7w	��_���_��	�P�i��i�P���*@'BQCQD+!!!767	&5467	�I��R�
�����R����R$2-
�{��@MQE+!!�<	���GES�"@Bj[
D+%!+!##"&5467!267>;RM��9�
�7�	��)#(�L��';OL@IK-B[
	O
	SG=<)(GE<O=O31(;);	''+".'#".54>32>32%2>7.#"!2>54.#"�3O?3"HPX30T>$3Un<3O?3"GPX31U?$2Up��(IDA -4@(-P=$-<m0Q;"-<$(ICA!,5?'BV..VB'$C`<N�_5'BV..VB'$C`<L�`7N&?T--T@&'Ge=.F0*Id:-F0&@S--T@&�e����'*@'BSCSD!%'U$+>32#"&#"#"&'7>3232>7�EZl;$4

	`�"�Kas@;
 6[J7>W�U+
,
����d�Z)	' GrQ����7d@a!0"/B[[[	O	SG42+)&$77

+2>7#".#"'>322>7#".#"'>3243-%#i83a]\.3,%#h<4a][2-&#h84a]\/3,$$h<5a]Z(8+.$,$6-/$,$��8*/$,$6-0%+%��	pkK�	PX@)^_	ZMQE@'jk	ZMQEY@

+!3!!!!#!7!7!��F��͇�	�F�E���Z��>c
��G�G��G�gP�O@@MQE+!!���&)$�@A�
��v>��	��
x��IuP�Q@@MQE+%!7!7>767.'&5<>7c�	�A��G&)$���PI��>	
����f�"@
BMQE+3	#	>7	.'��B��nB��L		M��		�@����@�S�����~�@ja+3v���0@�T�%k@BK�!PX@"kSCQC
D@ k[SC
DY@!&%$	+!#!+'&5737>32#"&#"8w^n�Fl*"�~�Dl�X%$ 	
,"���<}���v	*U\�e6.��@���$�@

BK�!PX@$kSC
	QC
DK�%PX@"k
	[SC
DK�)PX@&k
	[CSC
D@-hk
	[CSC
DYYY@$$!!%$++'&5737>32;#.#"!3l*"�~�Bj�YE�94�]�/h0EqU7	~���v	*BX�m>
�nL/X~NBFS�����-K�1PX@jD@
jaY@	+#�n;N[��{��	@ja		+2#"&/��I	��	
���6��@OSG$$$"+#"&54632#"&546324/../O.--.�,, -- ,, --�6�p@MQE+!!�	��p:,��	@ja	#++7>3���I����
	���@Bja+ +#"&/.'+73�G��G�W������@Bja+ +326?>;#�G��G�W��������(@%jOSG
+"&547332673�gc>DNXU?
{�XT9AQHcr@8��@OSG($+#".54>32�  ���1�!@[OSG$&($+4>32#".732654&#"�-<"">-->""<-5?32@@23?^";**;"#:**:#2@@22@@���1@.[OSG
+2673#".#"#>32&/4&4 3/-&/7'4 4.-O7+"<, & 9*"<, % ��	+@(OSG



	#++7>3!+7>3�-�Z�3���������@kD	+2+�	$U�
!;XB
-��M�_<�	�ʓ^p�ӡ���	��V �����/�T����P�r�}�M��(�(�����?dc�:����Z���F�q�>�g����f���:�<+���+���a�������v�?��`�p�&�B������n���F������'5�E���T��S��,(D�q(����<�f]H�@F8Bq��f�x��mxc�u^^�G�2�<�^!�l�r�SSVV���VF	(GX�(�P�T��������X��XvMkk�2���dcMqr���<������y�����2��������������������������������?�?�?�?�&�&�&�&��En��������������OE�E�E�E�S�F�;�<�<�<�<�<�<�2]HFFFF�a�x�B�I�I^�G�G�G�G�G��� �r�r�r�r�V�;�V����<�]H?�F�x�02Sn�^��6�'!�'!S��,F	�,F	�,F	�o�r�2�7|�<������n�n��
g�g�g��,�,f�9`: }E�E��)!�l(+W���T�����bE�L�e����+g+u�����@@S{��,���@���g�P`�	�[�j�y�j�[$�[9>:A</?>D��F��G��H��R��T��m�yo�yy�y}�y��[��[��[��[��[��[��[�/����������������������������������������������������������[���������/�y�y�j�j�y�j�y�y��[
	�[
�j
�y
�j
�[
$�[
9>
:A
</
?>
D��
F��
G��
H��
R��
T��
m�y
o�y
y�y
}�y
��[
��[
��[
��[
��[
��[
��[
�/
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�[
��
��
��
��
�/
�y
�y
�j
�j
�y
�j
�y
�y
��[#��&��*��2��4��D��F��G��H��R��T��k��p��������������������������������������������������������������������������������������������
	�[
�j
�y
�j
�[
$�[
9>
:A
</
?>
D��
F��
G��
H��
R��
T��
m�y
o�y
y�y
}�y
��[
��[
��[
��[
��[
��[
��[
�/
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
�[
��
��
��
��
�/
�y
�y
�j
�j
�y
�j
�y
�y
��[�=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I�y	��
�y
�y�j�j��$��7�G9��;��<�Q=��?��l�yr�y|�y�����������������������Q���Q�������y�y�j�y�y�j�j����=
�=
�=�I#��&��*��2��4��7�A9�=:�m<�d?�=Y�~Z��\��k��l�=m�Io�Ip��r�=y�I|�=}�I�����������������������d��~��~�����d�I�I�=�=�=�=�I�I�I>	��
>
>�G���G������"F#��$��&��*��-�o2��4��D��F��G��H��P��Q��R��S��T��U��V��X��Y��Z��\��]��k��l>m��o��p��r>tPuPw��y��{P|>}�������������������������������������������������������������������������������������������������������������������������������������������������������>�>�G�>�>�G��G�����#��#	��#
��#��#
��#��#$��#7��#9��#;��#<��#=��#?��#@��#`��#l��#r��#|��#���#���#���#���#���#���#���#���#��#��#��#��#��#��#��#��#��#���$�V$
�V$
�V$��$#��$&��$*��$-2$2��$4��$7��$8��$9��$:��$<�y$?��$W��$Y��$Z��$\��$k��$l�V$m��$o��$p��$r�V$t�`$u�`$y��${�`$|�V$}��$���$���$���$���$���$���$���$���$���$���$���$��y$���$���$��$��$�y$��$��$�V$�V$�V$�V$��$��$��&�o&m�o&o�o&y�o&}�o&�o&�o&�o&�o&�o'��'	��'
��'��'
��'��'$��'7��'9��';��'<��'=��'?��'@��'`��'l��'r��'|��'���'���'���'���'���'���'���'���'��'��'��'��'��'��'��'��'��'���)	��)�L)�L)��)��)��)")$��)-�.)D��)F��)G��)H��)P��)Q��)R��)S��)T��)U��)X��)w��)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)��)��)��)��)��)��)�L)�L)�L)���-	��-��-$��-���-���-���-���-���-���-���-��-���..
.
.��.#��.&��.*��.2��.4��.I��.W��.Y��.Z��.\��.k��.l.m��.o��.p��.r.y��.|.}��.���.���.���.���.���.���.���.���.���.��.��.�.�.�.�.�.�.�.�.�/��/
��/
��/�$/#��/&��/*��/2��/4��/7�8/9�V/:�y/<�=/?�V/Y�z/Z��/\�z/k��/l��/m�$/o�$/p��/r��/t�=/u�=/y�$/{�=/|��/}�$/���/���/���/���/���/���/���/��=/��z/��z/��/��/�=/�$/�$/��/��/��/��/�$/�$/�$2��2	��2
��2��2
��2��2$��27��29��2;��2<��2=��2?��2@��2`��2l��2r��2|��2���2���2���2���2���2���2���2���2��2��2��2��2��2��2��2��2��2���3	��3�=3�=3��3$��3-�V3D��3F��3G��3H��3R��3T��3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3��3��3��3��3��3�=3�=3�=3���4��4	��4
��4��4
��4��4$��47��49��4;��4<��4=��4?��4@��4`��4l��4r��4|��4���4���4���4���4���4���4���4���4��4��4��4��4��4��4��4��4��4���5#��5&��5*��52��54��57��58��5k��5p��5���5���5���5���5���5���5���5���5���5���5���5��5��7	��7�L7�L7�L7��7�]7�]7"-7#��7$��7&��7*��7-�872��74��7D�)7F�)7G�)7H�)7J�A7P�]7Q�]7R�)7S�]7T�)7U�]7V�F7X�]7Y�Q7Z�y7[�b7\�L7]�e7k��7m�L7o�L7p��7w�]7y�L7}�L7���7���7���7���7���7���7���7���7���7���7���7���7���7���7��)7��)7��)7��)7��)7��)7��)7��)7��)7��)7��)7��)7��)7��]7��)7��)7��)7��)7��)7��)7��]7��]7��]7��]7��Q7��Q7��7�)7��7�)7�)7�]7��7�)7�F7�F7�e7�e7�e7�L7�L7�L7�L7�L7�L7�L7�L7���8	��8��8$��8���8���8���8���8���8���8���8��8���9>9	��9
>9
>9�G9��9�G9��9��9��9"F9#��9$��9&��9*��9-�o92��94��9D��9F��9G��9H��9P��9Q��9R��9S��9T��9U��9V��9X��9Y��9Z��9\��9]��9k��9l>9m��9o��9p��9r>9tP9uP9w��9y��9{P9|>9}��9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9���9��9��9��9��9��9��9��9��9��9��9��9��9��9�9�9�>9�>9�G9�>9�>9�G9�9�G9�9�9���:F:	��:
F:
F:��:��:��:��:��:$��:-��:D��:F��:G��:H��:J��:P��:Q��:R��:S��:T��:U��:V��:X��:lF:rF:t<:u<:w��:{<:|F:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:���:��:��:��:��:��:��:��:��:�F:�F:�:�F:�F:�:�:���;;
;
;��;#��;&��;*��;2��;4��;I��;W��;Y��;Z��;\��;k��;l;m��;o��;p��;r;y��;|;}��;���;���;���;���;���;���;���;���;���;��;��;�;�;�;�;�;�;�;�;�<4<	�~<
4<
4<�[<�V<�[<�~<��<��<"2<#��<$�~<&��<*��<-�8<2��<4��<D�G<F�G<G�G<H�G<J�_<P��<Q��<R�G<S��<T�G<U��<V�G<X��<]��<k��<l4<m�V<o�V<p��<r4<t2<u2<w��<y�V<{2<|4<}�V<��~<��~<��~<��~<��~<��~<��~<���<���<���<���<���<���<���<��G<��G<��G<��G<��G<��G<��G<��G<��G<��G<��G<��G<��G<���<��G<��G<��G<��G<��G<��G<���<���<���<���<�~<�G<��<�G<�G<��<��<�G<�G<�G<��<��<��<�V<�V<�4<�4<�[<�4<�4<�[<�V<�[<�V<�V<��~=��=" =#��=&��=*��=2��=4��=k��=m��=o��=p��=y��=}��=���=���=���=���=���=���=���=��=��=�=�=�=�=�>#��>&��>*��>2��>4��>D��>F��>G��>H��>R��>T��>k��>p��>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>���>��>��>��>��>��>��?�V?
�V?
�V?��?#��?&��?*��?-2?2��?4��?7��?8��?9��?:��?<�y??��?W��?Y��?Z��?\��?k��?l�V?m��?o��?p��?r�V?t�`?u�`?y��?{�`?|�V?}��?���?���?���?���?���?���?���?���?���?���?���?��y?���?���?��?��?�y?��?��?�V?�V?�V?�V?��?��?��E��E
��E��E
��E@��E[��E`��El��Er��E|��E�E�E�E�H��H
��H��H
��H@��H[��H`��Hl��Hr��H|��H�H�H�H�IKI
KI
KI�yI�yIlKIrKItdIudI{dI|KI�KI�KI�yI�KI�KI�yI�yK��K
��K
��KY��K\��Kl��Kr��Kt��Ku��K{��K|��K���K���K��K��K��K��ND��NF��NG��NH��NR��NT��N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N���N��N��N��N��P��P
��P
��PY��P\��Pl��Pr��Pt��Pu��P{��P|��P���P���P��P��P��P��Q��Q
��Q
��QY��Q\��Ql��Qr��Qt��Qu��Q{��Q|��Q���Q���Q��Q��Q��Q��R��R
��R��R
��R@��R[��R`��Rl��Rr��R|��R�R�R�R�S��S
��S��S
��S@��S[��S`��Sl��Sr��S|��S�S�S�S�U�yU�yUD��UF��UG��UH��UR��UT��U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U���U��U��U��U��U�yU�yU�yY	��Y�~Y�~Y��Y$��YD��YF��YG��YH��YR��YT��Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y���Y��Y��Y��Y��Y��Y�~Y�~Y�~Y���Z	��Z��Z��Z��Z$��Z���Z���Z���Z���Z���Z���Z���Z��Z��Z��Z��Z���[D��[F��[G��[H��[R��[T��[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[���[��[��[��[��\	��\�y\�y\��\$��\D��\F��\G��\H��\R��\T��\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\���\��\��\��\��\��\�y\�y\�y\���^#��^&��^*��^2��^4��^D��^F��^G��^H��^R��^T��^k��^p��^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��^��^��^��^��^��k��k	��k
��k��k
��k��k$��k7��k9��k;��k<��k=��k?��k@��k`��kl��kr��k|��k���k���k���k���k���k���k���k���k��k��k��k��k��k��k��k��k��k���l	�[l�jl�yl�jl�[l$�[l9>l:Al</l?>lD��lF��lG��lH��lR��lT��lm�ylo�yly�yl}�yl��[l��[l��[l��[l��[l��[l��[l�/l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l�[l��l��l��l��l�/l�yl�yl�jl�jl�yl�jl�yl�yl��[m�ym	��m
�ym
�ym�jm�jm��m$��m7�Gm9��m;��m<�Qm=��m?��ml�ymr�ym|�ym���m���m���m���m���m���m���m��Qm��m�Qm��m��m��m�ym�ym�jm�ym�ym�jm�jm���o�yo	��o
�yo
�yo�jo�jo��o$��o7�Go9��o;��o<�Qo=��o?��ol�yor�yo|�yo���o���o���o���o���o���o���o��Qo��o�Qo��o��o��o�yo�yo�jo�yo�yo�jo�jo���p��p	��p
��p��p
��p��p$��p7��p9��p;��p<��p=��p?��p@��p`��pl��pr��p|��p���p���p���p���p���p���p���p���p��p��p��p��p��p��p��p��p��p���r	�[r�jr�yr�jr�[r$�[r9>r:Ar</r?>rD��rF��rG��rH��rR��rT��rm�yro�yry�yr}�yr��[r��[r��[r��[r��[r��[r��[r�/r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r�[r��r��r��r��r�/r�yr�yr�jr�jr�yr�jr�yr�yr��[t	�et�et$�et9Ft:Ft<(t?Ft��et��et��et��et��et��et��et�(t�et�(t��eu	�eu�eu$�eu9Fu:Fu<(u?Fu��eu��eu��eu��eu��eu��eu��eu�(u�eu�(u��ey�yy	��y
�yy
�yy�jy�jy��y$��y7�Gy9��y;��y<�Qy=��y?��yl�yyr�yy|�yy���y���y���y���y���y���y���y��Qy��y�Qy��y��y��y�yy�yy�jy�yy�yy�jy�jy���{	�e{�e{$�e{9F{:F{<({?F{��e{��e{��e{��e{��e{��e{��e{�({�e{�({��e|	�[|�j|�y|�j|�[|$�[|9>|:A|</|?>|D��|F��|G��|H��|R��|T��|m�y|o�y|y�y|}�y|��[|��[|��[|��[|��[|��[|��[|�/|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|���|�[|��|��|��|��|�/|�y|�y|�j|�j|�y|�j|�y|�y|��[}�y}	��}
�y}
�y}�j}�j}��}$��}7�G}9��};��}<�Q}=��}?��}l�y}r�y}|�y}���}���}���}���}���}���}���}��Q}��}�Q}��}��}��}�y}�y}�j}�y}�y}�j}�j}�����V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������o�m�o�o�o�y�o�}�o��o��o��o��o��o����	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������	���
������
������$���7���9���;���<���=���?���@���`���l���r���|������������������������������������������������������������������	������$��������������������������������������	������$��������������������������������������	������$��������������������������������������	������$��������������������������������������4�	�~�
4�
4��[��V��[��~�������"2�#���$�~�&���*���-�8�2���4���D�G�F�G�G�G�H�G�J�_�P���Q���R�G�S���T�G�U���V�G�X���]���k���l4�m�V�o�V�p���r4�t2�u2�w���y�V�{2�|4�}�V���~���~���~���~���~���~���~�������������������������������G���G���G���G���G���G���G���G���G���G���G���G���G�������G���G���G���G���G���G������������������~��G�����G��G��������G��G��G�����������V��V��4��4��[��4��4��[��V��[��V��V���~����	���
������
������$���7���9���;���<���=���?���@���`���l���r���|���������������������������������������������������������������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
���
���Y���\���l���r���t���u���{���|��������������������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|��������������
������
���@���[���`���l���r���|�����������	����~��~����$���D���F���G���H���R���T���������������������������������������������������������������������������������������������������������������������������~��~��~��������
������
���@���[���`���l���r���|�����������	����~��~����$���D���F���G���H���R���T���������������������������������������������������������������������������������������������������������������������������~��~��~������V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V�����������o�m�o�o�o�y�o�}�o��o��o��o��o��o����
������
���@���[���`���l���r���|������������o�
�o�
�o��t�9�j�:���<�y�?�j�Y���Z���\���l�o�m�t�o�t�r�o�t���u���y�t�{���|�o�}�t���y����������y��t��t��o��o��o��o��t��t��t����
���
���Y���\���l���r���t���u���{���|��������������������������
������
���@���[���`���l���r���|�����������4�	�~�
4�
4��[��V��[��~�������"2�#���$�~�&���*���-�8�2���4���D�G�F�G�G�G�H�G�J�_�P���Q���R�G�S���T�G�U���V�G�X���]���k���l4�m�V�o�V�p���r4�t2�u2�w���y�V�{2�|4�}�V���~���~���~���~���~���~���~�������������������������������G���G���G���G���G���G���G���G���G���G���G���G���G�������G���G���G���G���G���G������������������~��G�����G��G��������G��G��G�����������V��V��4��4��[��4��4��[��V��[��V��V���~����" �#���&���*���2���4���k���m���o���p���y���}��������������������������������������������������" �#���&���*���2���4���k���m���o���p���y���}��������������������������������������������������" �#���&���*���2���4���k���m���o���p���y���}������������������������������������������������y�	���
�y�
�y��j��j����$���7�G�9���;���<�Q�=���?���l�y�r�y�|�y�������������������������������Q�����Q�����������y��y��j��y��y��j��j������y�	���
�y�
�y��j��j����$���7�G�9���;���<�Q�=���?���l�y�r�y�|�y�������������������������������Q�����Q�����������y��y��j��y��y��j��j�����	�[��j��y��j��[�$�[�9>�:A�</�?>�D���F���G���H���R���T���m�y�o�y�y�y�}�y���[���[���[���[���[���[���[��/������������������������������������������������������������������������������[��������������/��y��y��j��j��y��j��y��y���[�	�[��j��y��j��[�$�[�9>�:A�</�?>�D���F���G���H���R���T���m�y�o�y�y�y�}�y���[���[���[���[���[���[���[��/������������������������������������������������������������������������������[��������������/��y��y��j��j��y��j��y��y���[��=�
�=�
�=��I�#���&���*���2���4���7�A�9�=�:�m�<�d�?�=�Y�~�Z���\���k���l�=�m�I�o�I�p���r�=�y�I�|�=�}�I�������������������������������d���~���~��������d��I��I��=��=��=��=��I��I��I�	�[��j��y��j��[�$�[�9>�:A�</�?>�D���F���G���H���R���T���m�y�o�y�y�y�}�y���[���[���[���[���[���[���[��/������������������������������������������������������������������������������[��������������/��y��y��j��j��y��j��y��y���[�	�[��j��y��j��[�$�[�9>�:A�</�?>�D���F���G���H���R���T���m�y�o�y�y�y�}�y���[���[���[���[���[���[���[��/������������������������������������������������������������������������������[��������������/��y��y��j��j��y��j��y��y���[��=�
�=�
�=��I�#���&���*���2���4���7�A�9�=�:�m�<�d�?�=�Y�~�Z���\���k���l�=�m�I�o�I�p���r�=�y�I�|�=�}�I�������������������������������d���~���~��������d��I��I��=��=��=��=��I��I��I��y�	���
�y�
�y��j��j����$���7�G�9���;���<�Q�=���?���l�y�r�y�|�y�������������������������������Q�����Q�����������y��y��j��y��y��j��j������=�
�=�
�=��I�#���&���*���2���4���7�A�9�=�:�m�<�d�?�=�Y�~�Z���\���k���l�=�m�I�o�I�p���r�=�y�I�|�=�}�I�������������������������������d���~���~��������d��I��I��=��=��=��=��I��I��I��y�	���
�y�
�y��j��j����$���7�G�9���;���<�Q�=���?���l�y�r�y�|�y�������������������������������Q�����Q�����������y��y��j��y��y��j��j������y�	���
�y�
�y��j��j����$���7�G�9���;���<�Q�=���?���l�y�r�y�|�y�������������������������������Q�����Q�����������y��y��j��y��y��j��j�����	�[��j��y��j��[�$�[�9>�:A�</�?>�D���F���G���H���R���T���m�y�o�y�y�y�}�y���[���[���[���[���[���[���[��/������������������������������������������������������������������������������[��������������/��y��y��j��j��y��j��y��y���[��V�
�V�
�V����#���&���*���-2�2���4���7���8���9���:���<�y�?���W���Y���Z���\���k���l�V�m���o���p���r�V�t�`�u�`�y���{�`�|�V�}�������������������������������������������������y����������������y��������V��V��V��V��������������.��B�>t�Tn��<�4t�@x		n	�
 
L
r
��l�

B
l
�"^��N��R�@��P���:j����r�N"j�Pj�@�
j���j����dd�$�  n �!*!|"f"�#&#V#p$@$Z$�$�%`&& &v&�&�'6'|'�((�)$)�*X*d*p*|*�*�*�*�+�+�+�+�+�+�+�+�+�,>,J,V,b,n,z,�,�-<-H-T-`-l-x-�.j.v.�.�.�.�.�/�0<0H0T0`0l0x0�0�0�1 121D1V1h1z1�1�2j2|2�2�2�2�3,3>3�4r4~4�4�5�5�5�6.6:6L7:7�7�888 8,888J8V8h8t8�9l9�9�9�9�:&:t:�;
;>;�;�;�;�<"<J<�<�==�>(>T>�?�?�?�@@�@�AjA�BBBB�B�B�CjC�DBD�D�EE`EzE�F�F�F�GG(GJGxG�G�HHDH�H�H��d"/n�	� ��
��/��(�0B	B
�Q-2E
�w9	S	g	{	^�	 �	P	 �	`U	�		�	
��	0
�	d
�	
�	4�	�	�Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.Lato LightItalictyPolandLukaszDziedzic: Lato Light Italic: 2013Lato Light ItalicVersion 1.105; Western+Polish opensourceLato-LightItalicLato is a trademark of tyPoland Lukasz Dziedzic.Lukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2013-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLCopyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1.Lato LightItalictyPolandLukaszDziedzic: Lato Light Italic: 2013Lato-LightItalicVersion 1.105; Western+Polish opensourceLato is a trademark of tyPoland Lukasz Dziedzic.Lukasz DziedzicLato is a sanserif typeface family designed in the Summer 2010 by Warsaw-based designer Lukasz Dziedzic ("Lato" means "Summer" in Polish). It tries to carefully balance some potentially conflicting priorities: it should seem quite "transparent" when used in body text but would display some original traits when used in larger sizes. The classical proportions, particularly visible in the uppercase, give the letterforms familiar harmony and elegance. At the same time, its sleek sanserif look makes evident the fact that Lato was designed in 2010, even though it does not follow any current trend. The semi-rounded details of the letters give Lato a feeling of warmth, while the strong structure provides stability and seriousness.http://www.typoland.com/http://www.typoland.com/designers/Lukasz_Dziedzic/Copyright (c) 2013-2013 by tyPoland Lukasz Dziedzic (http://www.typoland.com/) with Reserved Font Name "Lato". Licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL).http://scripts.sil.org/OFLLatoLight Italic���XA	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~�������	
�����
����������������������������������������������� !"#NULLuni00A0uni00ADmacronperiodcenteredAogonekaogonekEogonekeogonekNacutenacuteSacutesacuteZacutezacute
Zdotaccent
zdotaccentuni02C9EuroDeltauni2669undercommaaccent
grave.case
dieresis.casemacron.case
acute.casecircumflex.case
caron.case
breve.casedotaccent.case	ring.case
tilde.casehungarumlaut.case
caron.salt��_K_K�������V��������V�,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �Ead�(PX!�E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K�KRX��Y�c �#D�#p�E  �(`f �UX�%a�Ec#b�#D�*�*�*Y�(	ERD�*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPKCH[.u�

Xshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtmlnu�[���<div id="classindex-section" class="nav-section">
  <h3>Class and Module Index</h3>

  <ul class="link-list">
  <% @modsort.each do |index_klass| %>
    <li><a href="<%= rel_prefix %>/<%= index_klass.path %>"><%= index_klass.full_name %></a>
  <% end %>
  </ul>
</div>
PKCH[�B�5��Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtmlnu�[���<% if !svninfo.empty? then %>
<div id="file-svninfo-section" class="nav-section">
  <h3>VCS Info</h3>

  <div class="section-body">
    <dl class="svninfo">
      <dt>Rev
      <dd><%= svninfo[:rev] %>

      <dt>Last Checked In
      <dd><%= svninfo[:commitdate].strftime('%Y-%m-%d %H:%M:%S') %>
        (<%= svninfo[:commitdelta] %> ago)

      <dt>Checked in by
      <dd><%= svninfo[:committer] %>
    </dl>
  </div>
</div>
<% end %>
PKCH[`	e��Lshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/page.rhtmlnu�[���<body id="top" role="document" class="file">
<nav role="navigation">
  <div id="project-navigation">
    <%= render '_sidebar_navigation.rhtml' %>
    <%= render '_sidebar_search.rhtml' %>
  </div>

  <%= render '_sidebar_table_of_contents.rhtml' %>

  <div id="project-metadata">
    <%= render '_sidebar_pages.rhtml' %>
  </div>
</nav>

<main role="main" aria-label="Page <%=h file.full_name%>">
<%= file.description %>
</main>

PKCH[�<E��Tshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/servlet_root.rhtmlnu�[���<body role="document">
<nav role="navigation">
  <div id="project-navigation">
    <div id="home-section" class="nav-section">
      <h2>
        <a href="<%= rel_prefix %>/" rel="home">Home</a>
      </h2>
    </div>

    <%= render '_sidebar_search.rhtml' %>
  </div>

<%= render '_sidebar_installed.rhtml' %>
</nav>

<main role="main">
  <h1>Local RDoc Documentation</h1>

  <p>Here you can browse local documentation from the ruby standard library and
  your installed gems.

<% extra_dirs = installed.select { |_, _, _, type,| type == :extra } %>
<% unless extra_dirs.empty? %>
  <h2>Extra Documentation Directories</h2>

  <p>The following additional documentation directories are available:</p>

  <ol>
  <% extra_dirs.each do |name, href, exists, _, path| %>
    <li>
    <% if exists %>
      <a href="<%= href %>"><%= h name %></a> (<%= h path %>)
    <% else %>
      <%= h name %> (<%= h path %>; <i>not available</i>)
    <% end %>
    </li>
  <% end %>
  </ol>
<% end %>

<% gems = installed.select { |_, _, _, type,| type == :gem } %>
<% missing = gems.reject { |_, _, exists,| exists } %>
<% unless missing.empty? then %>
  <h2>Missing Gem Documentation</h2>

  <p>You are missing documentation for some of your installed gems.
  You can install missing documentation for gems by running
  <kbd>gem rdoc --all</kbd>.  After installing the missing documentation you
  only need to reload this page.  The newly created documentation will
  automatically appear.

  <p>You can also install documentation for a specific gem by running one of
  the following commands.

  <ul>
  <% names = missing.map { |name,| name.sub(/-([^-]*)$/, '') }.uniq %>
  <% names.each do |name| %>
    <li><kbd>gem rdoc <%=h name %></kbd>
  <% end %>
  </ul>
<% end %>
</main>

PKCH[�̸QQZshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtmlnu�[���<div id="home-section" class="nav-section">
  <h3>Documentation</h3>

  <ul>
  <% installed.each do |name, href, exists, type, _| %>
    <% next if type == :extra %>
    <li class="folder">
    <% if exists then %>
      <a href="<%= href %>"><%= h name %></a>
    <% else %>
      <%= h name %>
    <% end %>
  <% end %>
  </ul>
</div>
PKCH[��13	3	Pshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/js/darkfish.jsnu�[���/**
 *
 * Darkfish Page Functions
 * $Id: darkfish.js 53 2009-01-07 02:52:03Z deveiant $
 *
 * Author: Michael Granger <mgranger@laika.com>
 *
 */

/* Provide console simulation for firebug-less environments */
/*
if (!("console" in window) || !("firebug" in console)) {
  var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
    "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];

  window.console = {};
  for (var i = 0; i < names.length; ++i)
    window.console[names[i]] = function() {};
};
*/


function showSource( e ) {
  var target = e.target;
  while (!target.classList.contains('method-detail')) {
    target = target.parentNode;
  }
  if (typeof target !== "undefined" && target !== null) {
    target = target.querySelector('.method-source-code');
  }
  if (typeof target !== "undefined" && target !== null) {
    target.classList.toggle('active-menu')
  }
};

function hookSourceViews() {
  document.querySelectorAll('.method-heading').forEach(function (codeObject) {
    codeObject.addEventListener('click', showSource);
  });
};

function hookSearch() {
  var input  = document.querySelector('#search-field');
  var result = document.querySelector('#search-results');
  result.classList.remove("initially-hidden");

  var search_section = document.querySelector('#search-section');
  search_section.classList.remove("initially-hidden");

  var search = new Search(search_data, input, result);

  search.renderItem = function(result) {
    var li = document.createElement('li');
    var html = '';

    // TODO add relative path to <script> per-page
    html += '<p class="search-match"><a href="' + index_rel_prefix + result.path + '">' + this.hlt(result.title);
    if (result.params)
      html += '<span class="params">' + result.params + '</span>';
    html += '</a>';


    if (result.namespace)
      html += '<p class="search-namespace">' + this.hlt(result.namespace);

    if (result.snippet)
      html += '<div class="search-snippet">' + result.snippet + '</div>';

    li.innerHTML = html;

    return li;
  }

  search.select = function(result) {
    window.location.href = result.firstChild.firstChild.href;
  }

  search.scrollIntoView = search.scrollInWindow;
};

document.addEventListener('DOMContentLoaded', function() {
  hookSourceViews();
  hookSearch();
});
PKCH[��Nshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/js/search.jsnu�[���Search = function(data, input, result) {
  this.data = data;
  this.input = input;
  this.result = result;

  this.current = null;
  this.view = this.result.parentNode;
  this.searcher = new Searcher(data.index);
  this.init();
}

Search.prototype = Object.assign({}, Navigation, new function() {
  var suid = 1;

  this.init = function() {
    var _this = this;
    var observer = function(e) {
      switch(e.keyCode) {
        case 38: // Event.KEY_UP
        case 40: // Event.KEY_DOWN
          return;
      }
      _this.search(_this.input.value);
    };
    this.input.addEventListener('keyup', observer);
    this.input.addEventListener('click', observer); // mac's clear field

    this.searcher.ready(function(results, isLast) {
      _this.addResults(results, isLast);
    })

    this.initNavigation();
    this.setNavigationActive(false);
  }

  this.search = function(value, selectFirstMatch) {
    value = value.trim().toLowerCase();
    if (value) {
      this.setNavigationActive(true);
    } else {
      this.setNavigationActive(false);
    }

    if (value == '') {
      this.lastQuery = value;
      this.result.innerHTML = '';
      this.result.setAttribute('aria-expanded', 'false');
      this.setNavigationActive(false);
    } else if (value != this.lastQuery) {
      this.lastQuery = value;
      this.result.setAttribute('aria-busy',     'true');
      this.result.setAttribute('aria-expanded', 'true');
      this.firstRun = true;
      this.searcher.find(value);
    }
  }

  this.addResults = function(results, isLast) {
    var target = this.result;
    if (this.firstRun && (results.length > 0 || isLast)) {
      this.current = null;
      this.result.innerHTML = '';
    }

    for (var i=0, l = results.length; i < l; i++) {
      var item = this.renderItem.call(this, results[i]);
      item.setAttribute('id', 'search-result-' + target.childElementCount);
      target.appendChild(item);
    };

    if (this.firstRun && results.length > 0) {
      this.firstRun = false;
      this.current = target.firstChild;
      this.current.classList.add('search-selected');
    }
    //TODO: ECMAScript
    //if (jQuery.browser.msie) this.$element[0].className += '';

    if (isLast) this.result.setAttribute('aria-busy', 'false');
  }

  this.move = function(isDown) {
    if (!this.current) return;
    var next = isDown ? this.current.nextElementSibling : this.current.previousElementSibling;
    if (next) {
      this.current.classList.remove('search-selected');
      next.classList.add('search-selected');
      this.input.setAttribute('aria-activedescendant', next.getAttribute('id'));
      this.scrollIntoView(next, this.view);
      this.current = next;
      this.input.value = next.firstChild.firstChild.text;
      this.input.select();
    }
    return true;
  }

  this.hlt = function(html) {
    return this.escapeHTML(html).
      replace(/\u0001/g, '<em>').
      replace(/\u0002/g, '</em>');
  }

  this.escapeHTML = function(html) {
    return html.replace(/[&<>]/g, function(c) {
      return '&#' + c.charCodeAt(0) + ';';
    });
  }

});

PKCH[�qqWshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtmlnu�[���<% if klass.type == 'class' then %>
<div id="parent-class-section" class="nav-section">
  <h3>Parent</h3>

  <% if klass.superclass and not String === klass.superclass then %>
  <p class="link"><a href="<%= klass.aref_to klass.superclass.path %>"><%= klass.superclass.full_name %></a>
  <% else %>
  <p class="link"><%= klass.superclass %>
  <% end %>
</div>
<% end %>
PKCH[���-��bshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtmlnu�[���<% comment = if current.respond_to? :comment_location then
               current.comment_location
             else
               current.comment
             end
   table = current.parse(comment).table_of_contents

   if table.length > 1 then %>
<div class="nav-section">
  <h3>Table of Contents</h3>

  <ul class="link-list" role="directory">
<%   table.each do |heading| %>
    <li><a href="#<%= heading.label current %>"><%= heading.plain_html %></a>
<%   end %>
  </ul>
</div>
<% end %>
PKCH[�����Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/table_of_contents.rhtmlnu�[���<body id="top" class="table-of-contents">
<main role="main">
<h1 class="class"><%= h @title %></h1>

<% simple_files = @files.select { |f| f.text? } %>
<% unless simple_files.empty? then %>
<h2 id="pages">Pages</h2>
<ul>
<% simple_files.sort.each do |file| %>
  <li class="file">
    <a href="<%= file.path %>"><%= h file.page_name %></a>
<%
   # HACK table_of_contents should not exist on Document
   table = file.parse(file.comment).table_of_contents
   unless table.empty? then %>
    <ul>
<% table.each do |heading| %>
      <li><a href="<%= file.path %>#<%= heading.aref %>"><%= heading.plain_html %></a>
<%   end %>
    </ul>
<% end %>
  </li>
  <% end %>
</ul>
<% end %>

<h2 id="classes">Classes and Modules</h2>
<ul>
<% @modsort.each do |klass| %>
  <li class="<%= klass.type %>">
    <a href="<%= klass.path %>"><%= klass.full_name %></a>
<% table = []
   table.concat klass.parse(klass.comment_location).table_of_contents
   table.concat klass.section_contents

   unless table.empty? then %>
    <ul>
<% table.each do |item| %>
      <li><a href="<%= klass.path %>#<%= item.aref %>"><%= item.plain_html %></a>
<%   end %>
    </ul>
<% end %>
  </li>
<% end %>
</ul>

<h2 id="methods">Methods</h2>
<ul>
<% @store.all_classes_and_modules.map do |mod|
     mod.method_list
   end.flatten.sort.each do |method| %>
  <li class="method">
    <a href="<%= method.path %>"><%= h method.pretty_name %></a>
    &mdash;
    <span class="container"><%= method.parent.full_name %></span>
<% end %>
</ul>
</main>
PKCH[~3�FFVshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtmlnu�[���<% simple_files = @files.select { |f| f.text? } %>
<% unless simple_files.empty? then %>
<div id="fileindex-section" class="nav-section">
  <h3>Pages</h3>

  <ul class="link-list">
  <% simple_files.each do |f| %>
    <li><a href="<%= rel_prefix %>/<%= f.path %>"><%= h f.page_name %></a>
  <% end %>
  </ul>
</div>
<% end %>
PKCH[���Xshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtmlnu�[���<% unless klass.method_list.empty? then %>
<!-- Method Quickref -->
<div id="method-list-section" class="nav-section">
  <h3>Methods</h3>

  <ul class="link-list" role="directory">
    <% klass.each_method do |meth| %>
    <li <% if meth.calls_super %>class="calls-super" <% end %>><a href="#<%= meth.aref %>"><%= meth.singleton ? '::' : '#' %><%= h meth.name %></a>
    <% end %>
  </ul>
</div>
<% end %>
PKCH[*�f���Wshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtmlnu�[���<div id="search-section" role="search" class="project-section initially-hidden">
  <form action="#" method="get" accept-charset="utf-8">
    <div id="search-field-wrapper">
      <input id="search-field" role="combobox" aria-label="Search"
             aria-autocomplete="list" aria-controls="search-results"
             type="text" name="search" placeholder="Search" spellcheck="false"
             title="Type to search, Up and Down to navigate, Enter to load">
    </div>

    <ul id="search-results" aria-label="Search Results"
        aria-busy="false" aria-expanded="false"
        aria-atomic="false" class="initially-hidden"></ul>
  </form>
</div>
PKCH[+<ߐ<<Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtmlnu�[���<% unless klass.sections.length == 1 then %>
<div id="sections-section" class="nav-section">
  <h3>Sections</h3>

  <ul class="link-list" role="directory">
    <% klass.sort_sections.each do |section| %>
      <li><a href="#<%= section.aref %>"><%= h section.title %></a></li>
    <% end %>
  </ul>
</div>
<% end %>
PKCH[=���Yshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtmlnu�[���<% unless klass.includes.empty? then %>
<div id="includes-section" class="nav-section">
  <h3>Included Modules</h3>

  <ul class="link-list">
  <% klass.each_include do |inc| %>
  <% unless String === inc.module then %>
    <li><a class="include" href="<%= klass.aref_to inc.module.path %>"><%= inc.module.full_name %></a>
  <% else %>
    <li><span class="include"><%= inc.name %></span>
  <% end %>
  <% end %>
  </ul>
</div>
<% end %>
PKCH[� [::Mshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/index.rhtmlnu�[���<body id="top" role="document" class="file">
<nav role="navigation">
  <div id="project-navigation">
    <%= render '_sidebar_navigation.rhtml' %>

    <%= render '_sidebar_search.rhtml' %>
  </div>

  <div id="project-metadata">
    <%= render '_sidebar_pages.rhtml' %>
    <%= render '_sidebar_classes.rhtml' %>
  </div>
</nav>

<main role="main">
<% if @options.main_page and
      main_page = @files.find { |f| f.full_name == @options.main_page } then %>
<%= main_page.description %>
<% else %>
<p>This is the API documentation for <%= @title %>.
<% end %>
</main>

PKCH[P�^���Rshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/json_index/js/searcher.jsnu�[���Searcher = function(data) {
  this.data = data;
  this.handlers = [];
}

Searcher.prototype = new function() {
  // search is performed in chunks of 1000 for non-blocking user input
  var CHUNK_SIZE = 1000;
  // do not try to find more than 100 results
  var MAX_RESULTS = 100;
  var huid = 1;
  var suid = 1;
  var runs = 0;

  this.find = function(query) {
    var queries = splitQuery(query);
    var regexps = buildRegexps(queries);
    var highlighters = buildHilighters(queries);
    var state = { from: 0, pass: 0, limit: MAX_RESULTS, n: suid++};
    var _this = this;

    this.currentSuid = state.n;

    if (!query) return;

    var run = function() {
      // stop current search thread if new search started
      if (state.n != _this.currentSuid) return;

      var results =
        performSearch(_this.data, regexps, queries, highlighters, state);
      var hasMore = (state.limit > 0 && state.pass < 4);

      triggerResults.call(_this, results, !hasMore);
      if (hasMore) {
        setTimeout(run, 2);
      }
      runs++;
    };
    runs = 0;

    // start search thread
    run();
  }

  /*  ----- Events ------  */
  this.ready = function(fn) {
    fn.huid = huid;
    this.handlers.push(fn);
  }

  /*  ----- Utilities ------  */
  function splitQuery(query) {
    return query.split(/(\s+|::?|\(\)?)/).filter(function(string) {
      return string.match(/\S/);
    });
  }

  function buildRegexps(queries) {
    return queries.map(function(query) {
      return new RegExp(query.replace(/(.)/g, '([$1])([^$1]*?)'), 'i');
    });
  }

  function buildHilighters(queries) {
    return queries.map(function(query) {
      return query.split('').map(function(l, i) {
        return '\u0001$' + (i*2+1) + '\u0002$' + (i*2+2);
      }).join('');
    });
  }

  // function longMatchRegexp(index, longIndex, regexps) {
  //     for (var i = regexps.length - 1; i >= 0; i--){
  //         if (!index.match(regexps[i]) && !longIndex.match(regexps[i])) return false;
  //     };
  //     return true;
  // }


  /*  ----- Mathchers ------  */

  /*
   * This record matches if the index starts with queries[0] and the record
   * matches all of the regexps
   */
  function matchPassBeginning(index, longIndex, queries, regexps) {
    if (index.indexOf(queries[0]) != 0) return false;
    for (var i=1, l = regexps.length; i < l; i++) {
      if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
        return false;
    };
    return true;
  }

  /*
   * This record matches if the longIndex starts with queries[0] and the
   * longIndex matches all of the regexps
   */
  function matchPassLongIndex(index, longIndex, queries, regexps) {
    if (longIndex.indexOf(queries[0]) != 0) return false;
    for (var i=1, l = regexps.length; i < l; i++) {
      if (!longIndex.match(regexps[i]))
        return false;
    };
    return true;
  }

  /*
   * This record matches if the index contains queries[0] and the record
   * matches all of the regexps
   */
  function matchPassContains(index, longIndex, queries, regexps) {
    if (index.indexOf(queries[0]) == -1) return false;
    for (var i=1, l = regexps.length; i < l; i++) {
      if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
        return false;
    };
    return true;
  }

  /*
   * This record matches if regexps[0] matches the index and the record
   * matches all of the regexps
   */
  function matchPassRegexp(index, longIndex, queries, regexps) {
    if (!index.match(regexps[0])) return false;
    for (var i=1, l = regexps.length; i < l; i++) {
      if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
        return false;
    };
    return true;
  }


  /*  ----- Highlighters ------  */
  function highlightRegexp(info, queries, regexps, highlighters) {
    var result = createResult(info);
    for (var i=0, l = regexps.length; i < l; i++) {
      result.title = result.title.replace(regexps[i], highlighters[i]);
      result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
    };
    return result;
  }

  function hltSubstring(string, pos, length) {
    return string.substring(0, pos) + '\u0001' + string.substring(pos, pos + length) + '\u0002' + string.substring(pos + length);
  }

  function highlightQuery(info, queries, regexps, highlighters) {
    var result = createResult(info);
    var pos = 0;
    var lcTitle = result.title.toLowerCase();

    pos = lcTitle.indexOf(queries[0]);
    if (pos != -1) {
      result.title = hltSubstring(result.title, pos, queries[0].length);
    }

    result.namespace = result.namespace.replace(regexps[0], highlighters[0]);
    for (var i=1, l = regexps.length; i < l; i++) {
      result.title = result.title.replace(regexps[i], highlighters[i]);
      result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
    };
    return result;
  }

  function createResult(info) {
    var result = {};
    result.title = info[0];
    result.namespace = info[1];
    result.path = info[2];
    result.params = info[3];
    result.snippet = info[4];
    result.badge = info[6];
    return result;
  }

  /*  ----- Searching ------  */
  function performSearch(data, regexps, queries, highlighters, state) {
    var searchIndex = data.searchIndex;
    var longSearchIndex = data.longSearchIndex;
    var info = data.info;
    var result = [];
    var i = state.from;
    var l = searchIndex.length;
    var togo = CHUNK_SIZE;
    var matchFunc, hltFunc;

    while (state.pass < 4 && state.limit > 0 && togo > 0) {
      if (state.pass == 0) {
        matchFunc = matchPassBeginning;
        hltFunc = highlightQuery;
      } else if (state.pass == 1) {
        matchFunc = matchPassLongIndex;
        hltFunc = highlightQuery;
      } else if (state.pass == 2) {
        matchFunc = matchPassContains;
        hltFunc = highlightQuery;
      } else if (state.pass == 3) {
        matchFunc = matchPassRegexp;
        hltFunc = highlightRegexp;
      }

      for (; togo > 0 && i < l && state.limit > 0; i++, togo--) {
        if (info[i].n == state.n) continue;
        if (matchFunc(searchIndex[i], longSearchIndex[i], queries, regexps)) {
          info[i].n = state.n;
          result.push(hltFunc(info[i], queries, regexps, highlighters));
          state.limit--;
        }
      };
      if (searchIndex.length <= i) {
        state.pass++;
        i = state.from = 0;
      } else {
        state.from = i;
      }
    }
    return result;
  }

  function triggerResults(results, isLast) {
    this.handlers.forEach(function(fn) {
      fn.call(this, results, isLast)
    });
  }
}

PKCH[��r�
�
Tshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/json_index/js/navigation.jsnu�[���/*
 * Navigation allows movement using the arrow keys through the search results.
 *
 * When using this library you will need to set scrollIntoView to the
 * appropriate function for your layout.  Use scrollInWindow if the container
 * is not scrollable and scrollInElement if the container is a separate
 * scrolling region.
 */
Navigation = new function() {
  this.initNavigation = function() {
    var _this = this;

    document.addEventListener('keydown', function(e) {
      _this.onkeydown(e);
    });

    this.navigationActive = true;
  }

  this.setNavigationActive = function(state) {
    this.navigationActive = state;
  }

  this.onkeydown = function(e) {
    if (!this.navigationActive) return;
    switch(e.keyCode) {
      case 37: //Event.KEY_LEFT:
        if (this.moveLeft()) e.preventDefault();
        break;
      case 38: //Event.KEY_UP:
        if (e.keyCode == 38 || e.ctrlKey) {
          if (this.moveUp()) e.preventDefault();
        }
        break;
      case 39: //Event.KEY_RIGHT:
        if (this.moveRight()) e.preventDefault();
        break;
      case 40: //Event.KEY_DOWN:
        if (e.keyCode == 40 || e.ctrlKey) {
          if (this.moveDown()) e.preventDefault();
        }
        break;
      case 13: //Event.KEY_RETURN:
        if (this.current) e.preventDefault();
        this.select(this.current);
        break;
    }
    if (e.ctrlKey && e.shiftKey) this.select(this.current);
  }

  this.moveRight = function() {
  }

  this.moveLeft = function() {
  }

  this.move = function(isDown) {
  }

  this.moveUp = function() {
    return this.move(false);
  }

  this.moveDown = function() {
    return this.move(true);
  }

  /*
   * Scrolls to the given element in the scrollable element view.
   */
  this.scrollInElement = function(element, view) {
    var offset, viewHeight, viewScroll, height;
    offset = element.offsetTop;
    height = element.offsetHeight;
    viewHeight = view.offsetHeight;
    viewScroll = view.scrollTop;

    if (offset - viewScroll + height > viewHeight) {
      view.scrollTop = offset - viewHeight + height;
    }
    if (offset < viewScroll) {
      view.scrollTop = offset;
    }
  }

  /*
   * Scrolls to the given element in the window.  The second argument is
   * ignored
   */
  this.scrollInWindow = function(element, ignored) {
    var offset, viewHeight, viewScroll, height;
    offset = element.offsetTop;
    height = element.offsetHeight;
    viewHeight = window.innerHeight;
    viewScroll = window.scrollY;

    if (offset - viewScroll + height > viewHeight) {
      window.scrollTo(window.scrollX, offset - viewHeight + height);
    }
    if (offset < viewScroll) {
      window.scrollTo(window.scrollX, offset);
    }
  }
}

PKCH[����QQ;share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/darkfish.rbnu�[���# frozen_string_literal: true
# -*- mode: ruby; ruby-indent-level: 2; tab-width: 2 -*-

require 'erb'
require 'fileutils'
require 'pathname'
require 'rdoc/generator/markup'

##
# Darkfish RDoc HTML Generator
#
# $Id: darkfish.rb 52 2009-01-07 02:08:11Z deveiant $
#
# == Author/s
# * Michael Granger (ged@FaerieMUD.org)
#
# == Contributors
# * Mahlon E. Smith (mahlon@martini.nu)
# * Eric Hodel (drbrain@segment7.net)
#
# == License
#
# Copyright (c) 2007, 2008, Michael Granger. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
#   this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
#   this list of conditions and the following disclaimer in the documentation
#   and/or other materials provided with the distribution.
#
# * Neither the name of the author/s, nor the names of the project's
#   contributors may be used to endorse or promote products derived from this
#   software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# == Attributions
#
# Darkfish uses the {Silk Icons}[http://www.famfamfam.com/lab/icons/silk/] set
# by Mark James.

class RDoc::Generator::Darkfish

  RDoc::RDoc.add_generator self

  include ERB::Util

  ##
  # Stylesheets, fonts, etc. that are included in RDoc.

  BUILTIN_STYLE_ITEMS = # :nodoc:
    %w[
      css/fonts.css
      fonts/Lato-Light.ttf
      fonts/Lato-LightItalic.ttf
      fonts/Lato-Regular.ttf
      fonts/Lato-RegularItalic.ttf
      fonts/SourceCodePro-Bold.ttf
      fonts/SourceCodePro-Regular.ttf
      css/rdoc.css
  ]

  ##
  # Path to this file's parent directory. Used to find templates and other
  # resources.

  GENERATOR_DIR = File.join 'rdoc', 'generator'

  ##
  # Release Version

  VERSION = '3'

  ##
  # Description of this generator

  DESCRIPTION = 'HTML generator, written by Michael Granger'

  ##
  # The relative path to style sheets and javascript.  By default this is set
  # the same as the rel_prefix.

  attr_accessor :asset_rel_path

  ##
  # The path to generate files into, combined with <tt>--op</tt> from the
  # options for a full path.

  attr_reader :base_dir

  ##
  # Classes and modules to be used by this generator, not necessarily
  # displayed.  See also #modsort

  attr_reader :classes

  ##
  # No files will be written when dry_run is true.

  attr_accessor :dry_run

  ##
  # When false the generate methods return a String instead of writing to a
  # file.  The default is true.

  attr_accessor :file_output

  ##
  # Files to be displayed by this generator

  attr_reader :files

  ##
  # The JSON index generator for this Darkfish generator

  attr_reader :json_index

  ##
  # Methods to be displayed by this generator

  attr_reader :methods

  ##
  # Sorted list of classes and modules to be displayed by this generator

  attr_reader :modsort

  ##
  # The RDoc::Store that is the source of the generated content

  attr_reader :store

  ##
  # The directory where the template files live

  attr_reader :template_dir # :nodoc:

  ##
  # The output directory

  attr_reader :outputdir

  ##
  # Initialize a few instance variables before we start

  def initialize store, options
    @store   = store
    @options = options

    @asset_rel_path = ''
    @base_dir       = Pathname.pwd.expand_path
    @dry_run        = @options.dry_run
    @file_output    = true
    @template_dir   = Pathname.new options.template_dir
    @template_cache = {}

    @classes = nil
    @context = nil
    @files   = nil
    @methods = nil
    @modsort = nil

    @json_index = RDoc::Generator::JsonIndex.new self, options
  end

  ##
  # Output progress information if debugging is enabled

  def debug_msg *msg
    return unless $DEBUG_RDOC
    $stderr.puts(*msg)
  end

  ##
  # Directory where generated class HTML files live relative to the output
  # dir.

  def class_dir
    nil
  end

  ##
  # Directory where generated class HTML files live relative to the output
  # dir.

  def file_dir
    nil
  end

  ##
  # Create the directories the generated docs will live in if they don't
  # already exist.

  def gen_sub_directories
    @outputdir.mkpath
  end

  ##
  # Copy over the stylesheet into the appropriate place in the output
  # directory.

  def write_style_sheet
    debug_msg "Copying static files"
    options = { :verbose => $DEBUG_RDOC, :noop => @dry_run }

    BUILTIN_STYLE_ITEMS.each do |item|
      install_rdoc_static_file @template_dir + item, "./#{item}", options
    end

    @options.template_stylesheets.each do |stylesheet|
      FileUtils.cp stylesheet, '.', options
    end

    Dir[(@template_dir + "{js,images}/**/*").to_s].each do |path|
      next if File.directory? path
      next if File.basename(path) =~ /^\./

      dst = Pathname.new(path).relative_path_from @template_dir

      install_rdoc_static_file @template_dir + path, dst, options
    end
  end

  ##
  # Build the initial indices and output objects based on an array of TopLevel
  # objects containing the extracted information.

  def generate
    setup

    write_style_sheet
    generate_index
    generate_class_files
    generate_file_files
    generate_table_of_contents
    @json_index.generate
    @json_index.generate_gzipped

    copy_static

  rescue => e
    debug_msg "%s: %s\n  %s" % [
      e.class.name, e.message, e.backtrace.join("\n  ")
    ]

    raise
  end

  ##
  # Copies static files from the static_path into the output directory

  def copy_static
    return if @options.static_path.empty?

    fu_options = { :verbose => $DEBUG_RDOC, :noop => @dry_run }

    @options.static_path.each do |path|
      unless File.directory? path then
        FileUtils.install path, @outputdir, **fu_options.merge(:mode => 0644)
        next
      end

      Dir.chdir path do
        Dir[File.join('**', '*')].each do |entry|
          dest_file = @outputdir + entry

          if File.directory? entry then
            FileUtils.mkdir_p entry, **fu_options
          else
            FileUtils.install entry, dest_file, **fu_options.merge(:mode => 0644)
          end
        end
      end
    end
  end

  ##
  # Return a list of the documented modules sorted by salience first, then
  # by name.

  def get_sorted_module_list classes
    classes.select do |klass|
      klass.display?
    end.sort
  end

  ##
  # Generate an index page which lists all the classes which are documented.

  def generate_index
    setup

    template_file = @template_dir + 'index.rhtml'
    return unless template_file.exist?

    debug_msg "Rendering the index page..."

    out_file = @base_dir + @options.op_dir + 'index.html'
    rel_prefix = @outputdir.relative_path_from out_file.dirname
    search_index_rel_prefix = rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    asset_rel_prefix = rel_prefix + @asset_rel_path

    @title = @options.title

    render_template template_file, out_file do |io|
      here = binding
      # suppress 1.9.3 warning
      here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
      here
    end
  rescue => e
    error = RDoc::Error.new \
      "error generating index.html: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  ##
  # Generates a class file for +klass+

  def generate_class klass, template_file = nil
    setup

    current = klass

    template_file ||= @template_dir + 'class.rhtml'

    debug_msg "  working on %s (%s)" % [klass.full_name, klass.path]
    out_file   = @outputdir + klass.path
    rel_prefix = @outputdir.relative_path_from out_file.dirname
    search_index_rel_prefix = rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    asset_rel_prefix = rel_prefix + @asset_rel_path
    svninfo          = get_svninfo(current)

    @title = "#{klass.type} #{klass.full_name} - #{@options.title}"

    debug_msg "  rendering #{out_file}"
    render_template template_file, out_file do |io|
      here = binding
      # suppress 1.9.3 warning
      here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
      here.local_variable_set(:svninfo, svninfo)
      here
    end
  end

  ##
  # Generate a documentation file for each class and module

  def generate_class_files
    setup

    template_file = @template_dir + 'class.rhtml'
    template_file = @template_dir + 'classpage.rhtml' unless
      template_file.exist?
    return unless template_file.exist?
    debug_msg "Generating class documentation in #{@outputdir}"

    current = nil

    @classes.each do |klass|
      current = klass

      generate_class klass, template_file
    end
  rescue => e
    error = RDoc::Error.new \
      "error generating #{current.path}: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  ##
  # Generate a documentation file for each file

  def generate_file_files
    setup

    page_file     = @template_dir + 'page.rhtml'
    fileinfo_file = @template_dir + 'fileinfo.rhtml'

    # for legacy templates
    filepage_file = @template_dir + 'filepage.rhtml' unless
      page_file.exist? or fileinfo_file.exist?

    return unless
      page_file.exist? or fileinfo_file.exist? or filepage_file.exist?

    debug_msg "Generating file documentation in #{@outputdir}"

    out_file = nil
    current = nil

    @files.each do |file|
      current = file

      if file.text? and page_file.exist? then
        generate_page file
        next
      end

      template_file = nil
      out_file = @outputdir + file.path
      debug_msg "  working on %s (%s)" % [file.full_name, out_file]
      rel_prefix = @outputdir.relative_path_from out_file.dirname
      search_index_rel_prefix = rel_prefix
      search_index_rel_prefix += @asset_rel_path if @file_output

      asset_rel_prefix = rel_prefix + @asset_rel_path

      unless filepage_file then
        if file.text? then
          next unless page_file.exist?
          template_file = page_file
          @title = file.page_name
        else
          next unless fileinfo_file.exist?
          template_file = fileinfo_file
          @title = "File: #{file.base_name}"
        end
      end

      @title += " - #{@options.title}"
      template_file ||= filepage_file

      render_template template_file, out_file do |io|
        here = binding
        # suppress 1.9.3 warning
        here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
        here.local_variable_set(:current, current)
        here
      end
    end
  rescue => e
    error =
      RDoc::Error.new "error generating #{out_file}: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  ##
  # Generate a page file for +file+

  def generate_page file
    setup

    template_file = @template_dir + 'page.rhtml'

    out_file = @outputdir + file.path
    debug_msg "  working on %s (%s)" % [file.full_name, out_file]
    rel_prefix = @outputdir.relative_path_from out_file.dirname
    search_index_rel_prefix = rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    current          = file
    asset_rel_prefix = rel_prefix + @asset_rel_path

    @title = "#{file.page_name} - #{@options.title}"

    debug_msg "  rendering #{out_file}"
    render_template template_file, out_file do |io|
      here = binding
      # suppress 1.9.3 warning
      here.local_variable_set(:current, current)
      here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
      here
    end
  end

  ##
  # Generates the 404 page for the RDoc servlet

  def generate_servlet_not_found message
    setup

    template_file = @template_dir + 'servlet_not_found.rhtml'
    return unless template_file.exist?

    debug_msg "Rendering the servlet 404 Not Found page..."

    rel_prefix = rel_prefix = ''
    search_index_rel_prefix = rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    asset_rel_prefix = ''

    @title = 'Not Found'

    render_template template_file do |io|
      here = binding
      # suppress 1.9.3 warning
      here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
      here
    end
  rescue => e
    error = RDoc::Error.new \
      "error generating servlet_not_found: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  ##
  # Generates the servlet root page for the RDoc servlet

  def generate_servlet_root installed
    setup

    template_file = @template_dir + 'servlet_root.rhtml'
    return unless template_file.exist?

    debug_msg 'Rendering the servlet root page...'

    rel_prefix = '.'
    asset_rel_prefix = rel_prefix
    search_index_rel_prefix = asset_rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    @title = 'Local RDoc Documentation'

    render_template template_file do |io| binding end
  rescue => e
    error = RDoc::Error.new \
      "error generating servlet_root: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  ##
  # Generate an index page which lists all the classes which are documented.

  def generate_table_of_contents
    setup

    template_file = @template_dir + 'table_of_contents.rhtml'
    return unless template_file.exist?

    debug_msg "Rendering the Table of Contents..."

    out_file = @outputdir + 'table_of_contents.html'
    rel_prefix = @outputdir.relative_path_from out_file.dirname
    search_index_rel_prefix = rel_prefix
    search_index_rel_prefix += @asset_rel_path if @file_output

    asset_rel_prefix = rel_prefix + @asset_rel_path

    @title = "Table of Contents - #{@options.title}"

    render_template template_file, out_file do |io|
      here = binding
      # suppress 1.9.3 warning
      here.local_variable_set(:asset_rel_prefix, asset_rel_prefix)
      here
    end
  rescue => e
    error = RDoc::Error.new \
      "error generating table_of_contents.html: #{e.message} (#{e.class})"
    error.set_backtrace e.backtrace

    raise error
  end

  def install_rdoc_static_file source, destination, options # :nodoc:
    return unless source.exist?

    begin
      FileUtils.mkdir_p File.dirname(destination), **options

      begin
        FileUtils.ln source, destination, **options
      rescue Errno::EEXIST
        FileUtils.rm destination
        retry
      end
    rescue
      FileUtils.cp source, destination, **options
    end
  end

  ##
  # Prepares for generation of output from the current directory

  def setup
    return if instance_variable_defined? :@outputdir

    @outputdir = Pathname.new(@options.op_dir).expand_path @base_dir

    return unless @store

    @classes = @store.all_classes_and_modules.sort
    @files   = @store.all_files.sort
    @methods = @classes.map { |m| m.method_list }.flatten.sort
    @modsort = get_sorted_module_list @classes
  end

  ##
  # Return a string describing the amount of time in the given number of
  # seconds in terms a human can understand easily.

  def time_delta_string seconds
    return 'less than a minute'          if seconds < 60
    return "#{seconds / 60} minute#{seconds / 60 == 1 ? '' : 's'}" if
                                            seconds < 3000     # 50 minutes
    return 'about one hour'              if seconds < 5400     # 90 minutes
    return "#{seconds / 3600} hours"     if seconds < 64800    # 18 hours
    return 'one day'                     if seconds < 86400    #  1 day
    return 'about one day'               if seconds < 172800   #  2 days
    return "#{seconds / 86400} days"     if seconds < 604800   #  1 week
    return 'about one week'              if seconds < 1209600  #  2 week
    return "#{seconds / 604800} weeks"   if seconds < 7257600  #  3 months
    return "#{seconds / 2419200} months" if seconds < 31536000 #  1 year
    return "#{seconds / 31536000} years"
  end

  # %q$Id: darkfish.rb 52 2009-01-07 02:08:11Z deveiant $"
  SVNID_PATTERN = /
    \$Id:\s
    (\S+)\s                # filename
    (\d+)\s                # rev
    (\d{4}-\d{2}-\d{2})\s  # Date (YYYY-MM-DD)
    (\d{2}:\d{2}:\d{2}Z)\s # Time (HH:MM:SSZ)
    (\w+)\s                # committer
    \$$
  /x

  ##
  # Try to extract Subversion information out of the first constant whose
  # value looks like a subversion Id tag. If no matching constant is found,
  # and empty hash is returned.

  def get_svninfo klass
    constants = klass.constants or return {}

    constants.find { |c| c.value =~ SVNID_PATTERN } or return {}

    filename, rev, date, time, committer = $~.captures
    commitdate = Time.parse "#{date} #{time}"

    return {
      :filename    => filename,
      :rev         => Integer(rev),
      :commitdate  => commitdate,
      :commitdelta => time_delta_string(Time.now - commitdate),
      :committer   => committer,
    }
  end

  ##
  # Creates a template from its components and the +body_file+.
  #
  # For backwards compatibility, if +body_file+ contains "<html" the body is
  # used directly.

  def assemble_template body_file
    body = body_file.read
    return body if body =~ /<html/

    head_file = @template_dir + '_head.rhtml'
    footer_file = @template_dir + '_footer.rhtml'

    <<-TEMPLATE
<!DOCTYPE html>

<html>
<head>
#{head_file.read}

#{body}

#{footer_file.read}
    TEMPLATE
  end

  ##
  # Renders the ERb contained in +file_name+ relative to the template
  # directory and returns the result based on the current context.

  def render file_name
    template_file = @template_dir + file_name

    template = template_for template_file, false, RDoc::ERBPartial

    template.filename = template_file.to_s

    template.result @context
  end

  ##
  # Load and render the erb template in the given +template_file+ and write
  # it out to +out_file+.
  #
  # Both +template_file+ and +out_file+ should be Pathname-like objects.
  #
  # An io will be yielded which must be captured by binding in the caller.

  def render_template template_file, out_file = nil # :yield: io
    io_output = out_file && !@dry_run && @file_output
    erb_klass = io_output ? RDoc::ERBIO : ERB

    template = template_for template_file, true, erb_klass

    if io_output then
      debug_msg "Outputting to %s" % [out_file.expand_path]

      out_file.dirname.mkpath
      out_file.open 'w', 0644 do |io|
        io.set_encoding @options.encoding

        @context = yield io

        template_result template, @context, template_file
      end
    else
      @context = yield nil

      output = template_result template, @context, template_file

      debug_msg "  would have written %d characters to %s" % [
        output.length, out_file.expand_path
      ] if @dry_run

      output
    end
  end

  ##
  # Creates the result for +template+ with +context+.  If an error is raised a
  # Pathname +template_file+ will indicate the file where the error occurred.

  def template_result template, context, template_file
    template.filename = template_file.to_s
    template.result context
  rescue NoMethodError => e
    raise RDoc::Error, "Error while evaluating %s: %s" % [
      template_file.expand_path,
      e.message,
    ], e.backtrace
  end

  ##
  # Retrieves a cache template for +file+, if present, or fills the cache.

  def template_for file, page = true, klass = ERB
    template = @template_cache[file]

    return template if template

    if page then
      template = assemble_template file
      erbout = 'io'
    else
      template = file.read
      template = template.encode @options.encoding

      file_var = File.basename(file).sub(/\..*/, '')

      erbout = "_erbout_#{file_var}"
    end

    if RUBY_VERSION >= '2.6'
      template = klass.new template, trim_mode: '<>', eoutvar: erbout
    else
      template = klass.new template, nil, '<>', erbout
    end
    @template_cache[file] = template
    template
  end

end
PKCH[��9share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/po.rbnu�[���# frozen_string_literal: true
##
# Generates a PO format text

class RDoc::Generator::POT::PO

  ##
  # Creates an object that represents PO format.

  def initialize
    @entries = {}
    add_header
  end

  ##
  # Adds a PO entry to the PO.

  def add entry
    existing_entry = @entries[entry.msgid]
    if existing_entry
      entry = existing_entry.merge(entry)
    end
    @entries[entry.msgid] = entry
  end

  ##
  # Returns PO format text for the PO.

  def to_s
    po = ''
    sort_entries.each do |entry|
      po += "\n" unless po.empty?
      po += entry.to_s
    end
    po
  end

  private

  def add_header
    add(header_entry)
  end

  def header_entry
    comment = <<-COMMENT
SOME DESCRIPTIVE TITLE.
Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
This file is distributed under the same license as the PACKAGE package.
FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
    COMMENT

    content = <<-CONTENT
Project-Id-Version: PACKAGE VERSEION
Report-Msgid-Bugs-To:
PO-Revision-Date: YEAR-MO_DA HO:MI+ZONE
Last-Translator: FULL NAME <EMAIL@ADDRESS>
Language-Team: LANGUAGE <LL@li.org>
Language:
MIME-Version: 1.0
Content-Type: text/plain; charset=CHARSET
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;
    CONTENT

    options = {
      :msgstr => content,
      :translator_comment => comment,
      :flags => ['fuzzy'],
    }
    RDoc::Generator::POT::POEntry.new('', options)
  end

  def sort_entries
    headers, messages = @entries.values.partition do |entry|
      entry.msgid.empty?
    end
    # TODO: sort by location
    sorted_messages = messages.sort_by do |entry|
      entry.msgid
    end
    headers + sorted_messages
  end

end
PKCH[n��Hshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/message_extractor.rbnu�[���# frozen_string_literal: true
##
# Extracts message from RDoc::Store

class RDoc::Generator::POT::MessageExtractor

  ##
  # Creates a message extractor for +store+.

  def initialize store
    @store = store
    @po = RDoc::Generator::POT::PO.new
  end

  ##
  # Extracts messages from +store+, stores them into
  # RDoc::Generator::POT::PO and returns it.

  def extract
    @store.all_classes_and_modules.each do |klass|
      extract_from_klass(klass)
    end
    @po
  end

  private

  def extract_from_klass klass
    extract_text(klass.comment_location, klass.full_name)

    klass.each_section do |section, constants, attributes|
      extract_text(section.title ,"#{klass.full_name}: section title")
      section.comments.each do |comment|
        extract_text(comment, "#{klass.full_name}: #{section.title}")
      end
    end

    klass.each_constant do |constant|
      extract_text(constant.comment, constant.full_name)
    end

    klass.each_attribute do |attribute|
      extract_text(attribute.comment, attribute.full_name)
    end

    klass.each_method do |method|
      extract_text(method.comment, method.full_name)
    end
  end

  def extract_text text, comment, location = nil
    return if text.nil?

    options = {
      :extracted_comment => comment,
      :references => [location].compact,
    }
    i18n_text = RDoc::I18n::Text.new(text)
    i18n_text.extract_messages do |part|
      @po.add(entry(part[:paragraph], options))
    end
  end

  def entry msgid, options
    RDoc::Generator::POT::POEntry.new(msgid, options)
  end

end
PKCH[�jl{��?share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/po_entry.rbnu�[���# frozen_string_literal: true
##
# A PO entry in PO

class RDoc::Generator::POT::POEntry

  # The msgid content
  attr_reader :msgid

  # The msgstr content
  attr_reader :msgstr

  # The comment content created by translator (PO editor)
  attr_reader :translator_comment

  # The comment content extracted from source file
  attr_reader :extracted_comment

  # The locations where the PO entry is extracted
  attr_reader :references

  # The flags of the PO entry
  attr_reader :flags

  ##
  # Creates a PO entry for +msgid+. Other valus can be specified by
  # +options+.

  def initialize msgid, options = {}
    @msgid = msgid
    @msgstr = options[:msgstr] || ""
    @translator_comment = options[:translator_comment]
    @extracted_comment = options[:extracted_comment]
    @references = options[:references] || []
    @flags = options[:flags] || []
  end

  ##
  # Returns the PO entry in PO format.

  def to_s
    entry = ''
    entry += format_translator_comment
    entry += format_extracted_comment
    entry += format_references
    entry += format_flags
    entry += <<-ENTRY
msgid #{format_message(@msgid)}
msgstr #{format_message(@msgstr)}
    ENTRY
  end

  ##
  # Merges the PO entry with +other_entry+.

  def merge other_entry
    options = {
      :extracted_comment  => merge_string(@extracted_comment,
                                          other_entry.extracted_comment),
      :translator_comment => merge_string(@translator_comment,
                                          other_entry.translator_comment),
      :references         => merge_array(@references,
                                         other_entry.references),
      :flags              => merge_array(@flags,
                                         other_entry.flags),
    }
    self.class.new(@msgid, options)
  end

  private

  def format_comment mark, comment
    return '' unless comment
    return '' if comment.empty?

    formatted_comment = ''
    comment.each_line do |line|
      formatted_comment += "#{mark} #{line}"
    end
    formatted_comment += "\n" unless formatted_comment.end_with?("\n")
    formatted_comment
  end

  def format_translator_comment
    format_comment('#', @translator_comment)
  end

  def format_extracted_comment
    format_comment('#.', @extracted_comment)
  end

  def format_references
    return '' if @references.empty?

    formatted_references = ''
    @references.sort.each do |file, line|
      formatted_references += "\#: #{file}:#{line}\n"
    end
    formatted_references
  end

  def format_flags
    return '' if @flags.empty?

    formatted_flags = flags.join(",")
    "\#, #{formatted_flags}\n"
  end

  def format_message message
    return "\"#{escape(message)}\"" unless message.include?("\n")

    formatted_message = '""'
    message.each_line do |line|
      formatted_message += "\n"
      formatted_message += "\"#{escape(line)}\""
    end
    formatted_message
  end

  def escape string
    string.gsub(/["\\\t\n]/) do |special_character|
      case special_character
      when "\t"
        "\\t"
      when "\n"
        "\\n"
      else
        "\\#{special_character}"
      end
    end
  end

  def merge_string string1, string2
    [string1, string2].compact.join("\n")
  end

  def merge_array array1, array2
      (array1 + array2).uniq
  end

end
PKCH[�q���=share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/json_index.rbnu�[���# frozen_string_literal: true
require 'json'
begin
  require 'zlib'
rescue LoadError
end

##
# The JsonIndex generator is designed to complement an HTML generator and
# produces a JSON search index.  This generator is derived from sdoc by
# Vladimir Kolesnikov and contains verbatim code written by him.
#
# This generator is designed to be used with a regular HTML generator:
#
#   class RDoc::Generator::Darkfish
#     def initialize options
#       # ...
#       @base_dir = Pathname.pwd.expand_path
#
#       @json_index = RDoc::Generator::JsonIndex.new self, options
#     end
#
#     def generate
#       # ...
#       @json_index.generate
#     end
#   end
#
# == Index Format
#
# The index is output as a JSON file assigned to the global variable
# +search_data+.  The structure is:
#
#   var search_data = {
#     "index": {
#       "searchIndex":
#         ["a", "b", ...],
#       "longSearchIndex":
#         ["a", "a::b", ...],
#       "info": [
#         ["A", "A", "A.html", "", ""],
#         ["B", "A::B", "A::B.html", "", ""],
#         ...
#       ]
#     }
#   }
#
# The same item is described across the +searchIndex+, +longSearchIndex+ and
# +info+ fields.  The +searchIndex+ field contains the item's short name, the
# +longSearchIndex+ field contains the full_name (when appropriate) and the
# +info+ field contains the item's name, full_name, path, parameters and a
# snippet of the item's comment.
#
# == LICENSE
#
# Copyright (c) 2009 Vladimir Kolesnikov
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

class RDoc::Generator::JsonIndex

  include RDoc::Text

  ##
  # Where the search index lives in the generated output

  SEARCH_INDEX_FILE = File.join 'js', 'search_index.js'

  attr_reader :index # :nodoc:

  ##
  # Creates a new generator.  +parent_generator+ is used to determine the
  # class_dir and file_dir of links in the output index.
  #
  # +options+ are the same options passed to the parent generator.

  def initialize parent_generator, options
    @parent_generator = parent_generator
    @store            = parent_generator.store
    @options          = options

    @template_dir = File.expand_path '../template/json_index', __FILE__
    @base_dir = @parent_generator.base_dir

    @classes = nil
    @files   = nil
    @index   = nil
  end

  ##
  # Builds the JSON index as a Hash.

  def build_index
    reset @store.all_files.sort, @store.all_classes_and_modules.sort

    index_classes
    index_methods
    index_pages

    { :index => @index }
  end

  ##
  # Output progress information if debugging is enabled

  def debug_msg *msg
    return unless $DEBUG_RDOC
    $stderr.puts(*msg)
  end

  ##
  # Writes the JSON index to disk

  def generate
    debug_msg "Generating JSON index"

    debug_msg "  writing search index to %s" % SEARCH_INDEX_FILE
    data = build_index

    return if @options.dry_run

    out_dir = @base_dir + @options.op_dir
    index_file = out_dir + SEARCH_INDEX_FILE

    FileUtils.mkdir_p index_file.dirname, :verbose => $DEBUG_RDOC

    index_file.open 'w', 0644 do |io|
      io.set_encoding Encoding::UTF_8
      io.write 'var search_data = '

      JSON.dump data, io, 0
    end
    unless ENV['SOURCE_DATE_EPOCH'].nil?
      index_file.utime index_file.atime, Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).gmtime
    end

    Dir.chdir @template_dir do
      Dir['**/*.js'].each do |source|
        dest = File.join out_dir, source

        FileUtils.install source, dest, :mode => 0644, :preserve => true, :verbose => $DEBUG_RDOC
      end
    end
  end

  ##
  # Compress the search_index.js file using gzip

  def generate_gzipped
    return if @options.dry_run or not defined?(Zlib)

    debug_msg "Compressing generated JSON index"
    out_dir = @base_dir + @options.op_dir

    search_index_file = out_dir + SEARCH_INDEX_FILE
    outfile           = out_dir + "#{search_index_file}.gz"

    debug_msg "Reading the JSON index file from %s" % search_index_file
    search_index = search_index_file.read(mode: 'r:utf-8')

    debug_msg "Writing gzipped search index to %s" % outfile

    Zlib::GzipWriter.open(outfile) do |gz|
      gz.mtime = File.mtime(search_index_file)
      gz.orig_name = search_index_file.basename.to_s
      gz.write search_index
      gz.close
    end

    # GZip the rest of the js files
    Dir.chdir @template_dir do
      Dir['**/*.js'].each do |source|
        dest = out_dir + source
        outfile = out_dir + "#{dest}.gz"

        debug_msg "Reading the original js file from %s" % dest
        data = dest.read

        debug_msg "Writing gzipped file to %s" % outfile

        Zlib::GzipWriter.open(outfile) do |gz|
          gz.mtime = File.mtime(dest)
          gz.orig_name = dest.basename.to_s
          gz.write data
          gz.close
        end
      end
    end
  end

  ##
  # Adds classes and modules to the index

  def index_classes
    debug_msg "  generating class search index"

    documented = @classes.uniq.select do |klass|
      klass.document_self_or_methods
    end

    documented.each do |klass|
      debug_msg "    #{klass.full_name}"
      record = klass.search_record
      @index[:searchIndex]     << search_string(record.shift)
      @index[:longSearchIndex] << search_string(record.shift)
      @index[:info]            << record
    end
  end

  ##
  # Adds methods to the index

  def index_methods
    debug_msg "  generating method search index"

    list = @classes.uniq.map do |klass|
      klass.method_list
    end.flatten.sort_by do |method|
      [method.name, method.parent.full_name]
    end

    list.each do |method|
      debug_msg "    #{method.full_name}"
      record = method.search_record
      @index[:searchIndex]     << "#{search_string record.shift}()"
      @index[:longSearchIndex] << "#{search_string record.shift}()"
      @index[:info]            << record
    end
  end

  ##
  # Adds pages to the index

  def index_pages
    debug_msg "  generating pages search index"

    pages = @files.select do |file|
      file.text?
    end

    pages.each do |page|
      debug_msg "    #{page.page_name}"
      record = page.search_record
      @index[:searchIndex]     << search_string(record.shift)
      @index[:longSearchIndex] << ''
      record.shift
      @index[:info]            << record
    end
  end

  ##
  # The directory classes are written to

  def class_dir
    @parent_generator.class_dir
  end

  ##
  # The directory files are written to

  def file_dir
    @parent_generator.file_dir
  end

  def reset files, classes # :nodoc:
    @files   = files
    @classes = classes

    @index = {
      :searchIndex => [],
      :longSearchIndex => [],
      :info => []
    }
  end

  ##
  # Removes whitespace and downcases +string+

  def search_string string
    string.downcase.gsub(/\s/, '')
  end

end
PKCH[b�G		6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot.rbnu�[���# frozen_string_literal: true
##
# Generates a POT file.
#
# Here is a translator work flow with the generator.
#
# == Create .pot
#
# You create .pot file by pot formatter:
#
#   % rdoc --format pot
#
# It generates doc/rdoc.pot.
#
# == Create .po
#
# You create .po file from doc/rdoc.pot. This operation is needed only
# the first time. This work flow assumes that you are a translator
# for Japanese.
#
# You create locale/ja/rdoc.po from doc/rdoc.pot. You can use msginit
# provided by GNU gettext or rmsginit provided by gettext gem. This
# work flow uses gettext gem because it is more portable than GNU
# gettext for Rubyists. Gettext gem is implemented by pure Ruby.
#
#   % gem install gettext
#   % mkdir -p locale/ja
#   % rmsginit --input doc/rdoc.pot --output locale/ja/rdoc.po --locale ja
#
# Translate messages in .po
#
# You translate messages in .po by a PO file editor. po-mode.el exists
# for Emacs users. There are some GUI tools such as GTranslator.
# There are some Web services such as POEditor and Tansifex. You can
# edit by your favorite text editor because .po is a text file.
# Generate localized documentation
#
# You can generate localized documentation with locale/ja/rdoc.po:
#
#   % rdoc --locale ja
#
# You can find documentation in Japanese in doc/. Yay!
#
# == Update translation
#
# You need to update translation when your application is added or
# modified messages.
#
# You can update .po by the following command lines:
#
#   % rdoc --format pot
#   % rmsgmerge --update locale/ja/rdoc.po doc/rdoc.pot
#
# You edit locale/ja/rdoc.po to translate new messages.

class RDoc::Generator::POT

  RDoc::RDoc.add_generator self

  ##
  # Description of this generator

  DESCRIPTION = 'creates .pot file'

  ##
  # Set up a new .pot generator

  def initialize store, options #:not-new:
    @options    = options
    @store      = store
  end

  ##
  # Writes .pot to disk.

  def generate
    po = extract_messages
    pot_path = 'rdoc.pot'
    File.open(pot_path, "w") do |pot|
      pot.print(po.to_s)
    end
  end

  def class_dir
    nil
  end

  private
  def extract_messages
    extractor = MessageExtractor.new(@store)
    extractor.extract
  end

  require 'rdoc/generator/pot/message_extractor'
  require 'rdoc/generator/pot/po'
  require 'rdoc/generator/pot/po_entry'

end
PKCH[��y��1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/encoding.rbnu�[���# coding: US-ASCII
# frozen_string_literal: true

##
# This class is a wrapper around File IO and Encoding that helps RDoc load
# files and convert them to the correct encoding.

module RDoc::Encoding

  HEADER_REGEXP = /^
    (?:
      \A\#!.*\n
      |
      ^\#\s+frozen[-_]string[-_]literal[=:].+\n
      |
      ^\#[^\n]+\b(?:en)?coding[=:]\s*(?<name>[^\s;]+).*\n
      |
      <\?xml[^?]*encoding=(?<quote>["'])(?<name>.*?)\k<quote>.*\n
    )+
  /xi # :nodoc:

  ##
  # Reads the contents of +filename+ and handles any encoding directives in
  # the file.
  #
  # The content will be converted to the +encoding+.  If the file cannot be
  # converted a warning will be printed and nil will be returned.
  #
  # If +force_transcode+ is true the document will be transcoded and any
  # unknown character in the target encoding will be replaced with '?'

  def self.read_file filename, encoding, force_transcode = false
    content = File.open filename, "rb" do |f| f.read end
    content.gsub!("\r\n", "\n") if RUBY_PLATFORM =~ /mswin|mingw/

    utf8 = content.sub!(/\A\xef\xbb\xbf/, '')

    enc = RDoc::Encoding.detect_encoding content
    content = RDoc::Encoding.change_encoding content, enc if enc

    begin
      encoding ||= Encoding.default_external
      orig_encoding = content.encoding

      if not orig_encoding.ascii_compatible? then
        content = content.encode encoding
      elsif utf8 then
        content = RDoc::Encoding.change_encoding content, Encoding::UTF_8
        content = content.encode encoding
      else
        # assume the content is in our output encoding
        content = RDoc::Encoding.change_encoding content, encoding
      end

      unless content.valid_encoding? then
        # revert and try to transcode
        content = RDoc::Encoding.change_encoding content, orig_encoding
        content = content.encode encoding
      end

      unless content.valid_encoding? then
        warn "unable to convert #{filename} to #{encoding}, skipping"
        content = nil
      end
    rescue Encoding::InvalidByteSequenceError,
           Encoding::UndefinedConversionError => e
      if force_transcode then
        content = RDoc::Encoding.change_encoding content, orig_encoding
        content = content.encode(encoding,
                                 :invalid => :replace,
                                 :undef => :replace,
                                 :replace => '?')
        return content
      else
        warn "unable to convert #{e.message} for #{filename}, skipping"
        return nil
      end
    end

    content
  rescue ArgumentError => e
    raise unless e.message =~ /unknown encoding name - (.*)/
    warn "unknown encoding name \"#{$1}\" for #{filename}, skipping"
    nil
  rescue Errno::EISDIR, Errno::ENOENT
    nil
  end

  def self.remove_frozen_string_literal string
    string =~ /\A(?:#!.*\n)?(.*\n)/
    first_line = $1

    if first_line =~ /\A# +frozen[-_]string[-_]literal[=:].+$/i
      string = string.sub first_line, ''
    end

    string
  end

  ##
  # Detects the encoding of +string+ based on the magic comment

  def self.detect_encoding string
    result = HEADER_REGEXP.match string
    name = result && result[:name]

    name ? Encoding.find(name) : nil
  end

  ##
  # Removes magic comments and shebang

  def self.remove_magic_comment string
    string.sub HEADER_REGEXP do |s|
      s.gsub(/[^\n]/, '')
    end
  end

  ##
  # Changes encoding based on +encoding+ without converting and returns new
  # string

  def self.change_encoding text, encoding
    if text.kind_of? RDoc::Comment
      text.encode! encoding
    else
      # TODO: Remove this condition after Ruby 2.2 EOL
      if RUBY_VERSION < '2.3.0'
        text.force_encoding encoding
      else
        String.new text, encoding: encoding
      end
    end
  end

end
PKCH[��LRh$h$:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown/literals.rbnu�[���# coding: UTF-8
# frozen_string_literal: true
# :markup: markdown

##
#--
# This set of literals is for Ruby 1.9 regular expressions and gives full
# unicode support.
#
# Unlike peg-markdown, this set of literals recognizes Unicode alphanumeric
# characters, newlines and spaces.
class RDoc::Markdown::Literals
  # :stopdoc:

    # This is distinct from setup_parser so that a standalone parser
    # can redefine #initialize and still have access to the proper
    # parser setup code.
    def initialize(str, debug=false)
      setup_parser(str, debug)
    end



    # Prepares for parsing +str+.  If you define a custom initialize you must
    # call this method before #parse
    def setup_parser(str, debug=false)
      set_string str, 0
      @memoizations = Hash.new { |h,k| h[k] = {} }
      @result = nil
      @failed_rule = nil
      @failing_rule_offset = -1

      setup_foreign_grammar
    end

    attr_reader :string
    attr_reader :failing_rule_offset
    attr_accessor :result, :pos

    def current_column(target=pos)
      if c = string.rindex("\n", target-1)
        return target - c - 1
      end

      target + 1
    end

    def current_line(target=pos)
      cur_offset = 0
      cur_line = 0

      string.each_line do |line|
        cur_line += 1
        cur_offset += line.size
        return cur_line if cur_offset >= target
      end

      -1
    end

    def lines
      lines = []
      string.each_line { |l| lines << l }
      lines
    end



    def get_text(start)
      @string[start..@pos-1]
    end

    # Sets the string and current parsing position for the parser.
    def set_string string, pos
      @string = string
      @string_size = string ? string.size : 0
      @pos = pos
    end

    def show_pos
      width = 10
      if @pos < width
        "#{@pos} (\"#{@string[0,@pos]}\" @ \"#{@string[@pos,width]}\")"
      else
        "#{@pos} (\"... #{@string[@pos - width, width]}\" @ \"#{@string[@pos,width]}\")"
      end
    end

    def failure_info
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        "line #{l}, column #{c}: failed rule '#{info.name}' = '#{info.rendered}'"
      else
        "line #{l}, column #{c}: failed rule '#{@failed_rule}'"
      end
    end

    def failure_caret
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      line = lines[l-1]
      "#{line}\n#{' ' * (c - 1)}^"
    end

    def failure_character
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset
      lines[l-1][c-1, 1]
    end

    def failure_oneline
      l = current_line @failing_rule_offset
      c = current_column @failing_rule_offset

      char = lines[l-1][c-1, 1]

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        "@#{l}:#{c} failed rule '#{info.name}', got '#{char}'"
      else
        "@#{l}:#{c} failed rule '#{@failed_rule}', got '#{char}'"
      end
    end

    class ParseError < RuntimeError
    end

    def raise_error
      raise ParseError, failure_oneline
    end

    def show_error(io=STDOUT)
      error_pos = @failing_rule_offset
      line_no = current_line(error_pos)
      col_no = current_column(error_pos)

      io.puts "On line #{line_no}, column #{col_no}:"

      if @failed_rule.kind_of? Symbol
        info = self.class::Rules[@failed_rule]
        io.puts "Failed to match '#{info.rendered}' (rule '#{info.name}')"
      else
        io.puts "Failed to match rule '#{@failed_rule}'"
      end

      io.puts "Got: #{string[error_pos,1].inspect}"
      line = lines[line_no-1]
      io.puts "=> #{line}"
      io.print(" " * (col_no + 3))
      io.puts "^"
    end

    def set_failed_rule(name)
      if @pos > @failing_rule_offset
        @failed_rule = name
        @failing_rule_offset = @pos
      end
    end

    attr_reader :failed_rule

    def match_string(str)
      len = str.size
      if @string[pos,len] == str
        @pos += len
        return str
      end

      return nil
    end

    def scan(reg)
      if m = reg.match(@string[@pos..-1])
        width = m.end(0)
        @pos += width
        return true
      end

      return nil
    end

    if "".respond_to? :ord
      def get_byte
        if @pos >= @string_size
          return nil
        end

        s = @string[@pos].ord
        @pos += 1
        s
      end
    else
      def get_byte
        if @pos >= @string_size
          return nil
        end

        s = @string[@pos]
        @pos += 1
        s
      end
    end

    def parse(rule=nil)
      # We invoke the rules indirectly via apply
      # instead of by just calling them as methods because
      # if the rules use left recursion, apply needs to
      # manage that.

      if !rule
        apply(:_root)
      else
        method = rule.gsub("-","_hyphen_")
        apply :"_#{method}"
      end
    end

    class MemoEntry
      def initialize(ans, pos)
        @ans = ans
        @pos = pos
        @result = nil
        @set = false
        @left_rec = false
      end

      attr_reader :ans, :pos, :result, :set
      attr_accessor :left_rec

      def move!(ans, pos, result)
        @ans = ans
        @pos = pos
        @result = result
        @set = true
        @left_rec = false
      end
    end

    def external_invoke(other, rule, *args)
      old_pos = @pos
      old_string = @string

      set_string other.string, other.pos

      begin
        if val = __send__(rule, *args)
          other.pos = @pos
          other.result = @result
        else
          other.set_failed_rule "#{self.class}##{rule}"
        end
        val
      ensure
        set_string old_string, old_pos
      end
    end

    def apply_with_args(rule, *args)
      memo_key = [rule, args]
      if m = @memoizations[memo_key][@pos]
        @pos = m.pos
        if !m.set
          m.left_rec = true
          return nil
        end

        @result = m.result

        return m.ans
      else
        m = MemoEntry.new(nil, @pos)
        @memoizations[memo_key][@pos] = m
        start_pos = @pos

        ans = __send__ rule, *args

        lr = m.left_rec

        m.move! ans, @pos, @result

        # Don't bother trying to grow the left recursion
        # if it's failing straight away (thus there is no seed)
        if ans and lr
          return grow_lr(rule, args, start_pos, m)
        else
          return ans
        end
      end
    end

    def apply(rule)
      if m = @memoizations[rule][@pos]
        @pos = m.pos
        if !m.set
          m.left_rec = true
          return nil
        end

        @result = m.result

        return m.ans
      else
        m = MemoEntry.new(nil, @pos)
        @memoizations[rule][@pos] = m
        start_pos = @pos

        ans = __send__ rule

        lr = m.left_rec

        m.move! ans, @pos, @result

        # Don't bother trying to grow the left recursion
        # if it's failing straight away (thus there is no seed)
        if ans and lr
          return grow_lr(rule, nil, start_pos, m)
        else
          return ans
        end
      end
    end

    def grow_lr(rule, args, start_pos, m)
      while true
        @pos = start_pos
        @result = m.result

        if args
          ans = __send__ rule, *args
        else
          ans = __send__ rule
        end
        return nil unless ans

        break if @pos <= m.pos

        m.move! ans, @pos, @result
      end

      @result = m.result
      @pos = m.pos
      return m.ans
    end

    class RuleInfo
      def initialize(name, rendered)
        @name = name
        @rendered = rendered
      end

      attr_reader :name, :rendered
    end

    def self.rule_info(name, rendered)
      RuleInfo.new(name, rendered)
    end


  # :startdoc:
  # :stopdoc:
  def setup_foreign_grammar; end

  # Alphanumeric = /\p{Word}/
  def _Alphanumeric
    _tmp = scan(/\A(?-mix:\p{Word})/)
    set_failed_rule :_Alphanumeric unless _tmp
    return _tmp
  end

  # AlphanumericAscii = /[A-Za-z0-9]/
  def _AlphanumericAscii
    _tmp = scan(/\A(?-mix:[A-Za-z0-9])/)
    set_failed_rule :_AlphanumericAscii unless _tmp
    return _tmp
  end

  # BOM = "uFEFF"
  def _BOM
    _tmp = match_string("uFEFF")
    set_failed_rule :_BOM unless _tmp
    return _tmp
  end

  # Newline = /\n|\r\n?|\p{Zl}|\p{Zp}/
  def _Newline
    _tmp = scan(/\A(?-mix:\n|\r\n?|\p{Zl}|\p{Zp})/)
    set_failed_rule :_Newline unless _tmp
    return _tmp
  end

  # NonAlphanumeric = /\p{^Word}/
  def _NonAlphanumeric
    _tmp = scan(/\A(?-mix:\p{^Word})/)
    set_failed_rule :_NonAlphanumeric unless _tmp
    return _tmp
  end

  # Spacechar = /\t|\p{Zs}/
  def _Spacechar
    _tmp = scan(/\A(?-mix:\t|\p{Zs})/)
    set_failed_rule :_Spacechar unless _tmp
    return _tmp
  end

  Rules = {}
  Rules[:_Alphanumeric] = rule_info("Alphanumeric", "/\\p{Word}/")
  Rules[:_AlphanumericAscii] = rule_info("AlphanumericAscii", "/[A-Za-z0-9]/")
  Rules[:_BOM] = rule_info("BOM", "\"uFEFF\"")
  Rules[:_Newline] = rule_info("Newline", "/\\n|\\r\\n?|\\p{Zl}|\\p{Zp}/")
  Rules[:_NonAlphanumeric] = rule_info("NonAlphanumeric", "/\\p{^Word}/")
  Rules[:_Spacechar] = rule_info("Spacechar", "/\\t|\\p{Zs}/")
  # :startdoc:
end
PKCH[OG�!�!�:share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown/entities.rbnu�[���# frozen_string_literal: true
##
# HTML entity name map for RDoc::Markdown

RDoc::Markdown::HTML_ENTITIES = {
  "AElig" => [0x000C6],
  "AMP" => [0x00026],
  "Aacute" => [0x000C1],
  "Abreve" => [0x00102],
  "Acirc" => [0x000C2],
  "Acy" => [0x00410],
  "Afr" => [0x1D504],
  "Agrave" => [0x000C0],
  "Alpha" => [0x00391],
  "Amacr" => [0x00100],
  "And" => [0x02A53],
  "Aogon" => [0x00104],
  "Aopf" => [0x1D538],
  "ApplyFunction" => [0x02061],
  "Aring" => [0x000C5],
  "Ascr" => [0x1D49C],
  "Assign" => [0x02254],
  "Atilde" => [0x000C3],
  "Auml" => [0x000C4],
  "Backslash" => [0x02216],
  "Barv" => [0x02AE7],
  "Barwed" => [0x02306],
  "Bcy" => [0x00411],
  "Because" => [0x02235],
  "Bernoullis" => [0x0212C],
  "Beta" => [0x00392],
  "Bfr" => [0x1D505],
  "Bopf" => [0x1D539],
  "Breve" => [0x002D8],
  "Bscr" => [0x0212C],
  "Bumpeq" => [0x0224E],
  "CHcy" => [0x00427],
  "COPY" => [0x000A9],
  "Cacute" => [0x00106],
  "Cap" => [0x022D2],
  "CapitalDifferentialD" => [0x02145],
  "Cayleys" => [0x0212D],
  "Ccaron" => [0x0010C],
  "Ccedil" => [0x000C7],
  "Ccirc" => [0x00108],
  "Cconint" => [0x02230],
  "Cdot" => [0x0010A],
  "Cedilla" => [0x000B8],
  "CenterDot" => [0x000B7],
  "Cfr" => [0x0212D],
  "Chi" => [0x003A7],
  "CircleDot" => [0x02299],
  "CircleMinus" => [0x02296],
  "CirclePlus" => [0x02295],
  "CircleTimes" => [0x02297],
  "ClockwiseContourIntegral" => [0x02232],
  "CloseCurlyDoubleQuote" => [0x0201D],
  "CloseCurlyQuote" => [0x02019],
  "Colon" => [0x02237],
  "Colone" => [0x02A74],
  "Congruent" => [0x02261],
  "Conint" => [0x0222F],
  "ContourIntegral" => [0x0222E],
  "Copf" => [0x02102],
  "Coproduct" => [0x02210],
  "CounterClockwiseContourIntegral" => [0x02233],
  "Cross" => [0x02A2F],
  "Cscr" => [0x1D49E],
  "Cup" => [0x022D3],
  "CupCap" => [0x0224D],
  "DD" => [0x02145],
  "DDotrahd" => [0x02911],
  "DJcy" => [0x00402],
  "DScy" => [0x00405],
  "DZcy" => [0x0040F],
  "Dagger" => [0x02021],
  "Darr" => [0x021A1],
  "Dashv" => [0x02AE4],
  "Dcaron" => [0x0010E],
  "Dcy" => [0x00414],
  "Del" => [0x02207],
  "Delta" => [0x00394],
  "Dfr" => [0x1D507],
  "DiacriticalAcute" => [0x000B4],
  "DiacriticalDot" => [0x002D9],
  "DiacriticalDoubleAcute" => [0x002DD],
  "DiacriticalGrave" => [0x00060],
  "DiacriticalTilde" => [0x002DC],
  "Diamond" => [0x022C4],
  "DifferentialD" => [0x02146],
  "Dopf" => [0x1D53B],
  "Dot" => [0x000A8],
  "DotDot" => [0x020DC],
  "DotEqual" => [0x02250],
  "DoubleContourIntegral" => [0x0222F],
  "DoubleDot" => [0x000A8],
  "DoubleDownArrow" => [0x021D3],
  "DoubleLeftArrow" => [0x021D0],
  "DoubleLeftRightArrow" => [0x021D4],
  "DoubleLeftTee" => [0x02AE4],
  "DoubleLongLeftArrow" => [0x027F8],
  "DoubleLongLeftRightArrow" => [0x027FA],
  "DoubleLongRightArrow" => [0x027F9],
  "DoubleRightArrow" => [0x021D2],
  "DoubleRightTee" => [0x022A8],
  "DoubleUpArrow" => [0x021D1],
  "DoubleUpDownArrow" => [0x021D5],
  "DoubleVerticalBar" => [0x02225],
  "DownArrow" => [0x02193],
  "DownArrowBar" => [0x02913],
  "DownArrowUpArrow" => [0x021F5],
  "DownBreve" => [0x00311],
  "DownLeftRightVector" => [0x02950],
  "DownLeftTeeVector" => [0x0295E],
  "DownLeftVector" => [0x021BD],
  "DownLeftVectorBar" => [0x02956],
  "DownRightTeeVector" => [0x0295F],
  "DownRightVector" => [0x021C1],
  "DownRightVectorBar" => [0x02957],
  "DownTee" => [0x022A4],
  "DownTeeArrow" => [0x021A7],
  "Downarrow" => [0x021D3],
  "Dscr" => [0x1D49F],
  "Dstrok" => [0x00110],
  "ENG" => [0x0014A],
  "ETH" => [0x000D0],
  "Eacute" => [0x000C9],
  "Ecaron" => [0x0011A],
  "Ecirc" => [0x000CA],
  "Ecy" => [0x0042D],
  "Edot" => [0x00116],
  "Efr" => [0x1D508],
  "Egrave" => [0x000C8],
  "Element" => [0x02208],
  "Emacr" => [0x00112],
  "EmptySmallSquare" => [0x025FB],
  "EmptyVerySmallSquare" => [0x025AB],
  "Eogon" => [0x00118],
  "Eopf" => [0x1D53C],
  "Epsilon" => [0x00395],
  "Equal" => [0x02A75],
  "EqualTilde" => [0x02242],
  "Equilibrium" => [0x021CC],
  "Escr" => [0x02130],
  "Esim" => [0x02A73],
  "Eta" => [0x00397],
  "Euml" => [0x000CB],
  "Exists" => [0x02203],
  "ExponentialE" => [0x02147],
  "Fcy" => [0x00424],
  "Ffr" => [0x1D509],
  "FilledSmallSquare" => [0x025FC],
  "FilledVerySmallSquare" => [0x025AA],
  "Fopf" => [0x1D53D],
  "ForAll" => [0x02200],
  "Fouriertrf" => [0x02131],
  "Fscr" => [0x02131],
  "GJcy" => [0x00403],
  "GT" => [0x0003E],
  "Gamma" => [0x00393],
  "Gammad" => [0x003DC],
  "Gbreve" => [0x0011E],
  "Gcedil" => [0x00122],
  "Gcirc" => [0x0011C],
  "Gcy" => [0x00413],
  "Gdot" => [0x00120],
  "Gfr" => [0x1D50A],
  "Gg" => [0x022D9],
  "Gopf" => [0x1D53E],
  "GreaterEqual" => [0x02265],
  "GreaterEqualLess" => [0x022DB],
  "GreaterFullEqual" => [0x02267],
  "GreaterGreater" => [0x02AA2],
  "GreaterLess" => [0x02277],
  "GreaterSlantEqual" => [0x02A7E],
  "GreaterTilde" => [0x02273],
  "Gscr" => [0x1D4A2],
  "Gt" => [0x0226B],
  "HARDcy" => [0x0042A],
  "Hacek" => [0x002C7],
  "Hat" => [0x0005E],
  "Hcirc" => [0x00124],
  "Hfr" => [0x0210C],
  "HilbertSpace" => [0x0210B],
  "Hopf" => [0x0210D],
  "HorizontalLine" => [0x02500],
  "Hscr" => [0x0210B],
  "Hstrok" => [0x00126],
  "HumpDownHump" => [0x0224E],
  "HumpEqual" => [0x0224F],
  "IEcy" => [0x00415],
  "IJlig" => [0x00132],
  "IOcy" => [0x00401],
  "Iacute" => [0x000CD],
  "Icirc" => [0x000CE],
  "Icy" => [0x00418],
  "Idot" => [0x00130],
  "Ifr" => [0x02111],
  "Igrave" => [0x000CC],
  "Im" => [0x02111],
  "Imacr" => [0x0012A],
  "ImaginaryI" => [0x02148],
  "Implies" => [0x021D2],
  "Int" => [0x0222C],
  "Integral" => [0x0222B],
  "Intersection" => [0x022C2],
  "InvisibleComma" => [0x02063],
  "InvisibleTimes" => [0x02062],
  "Iogon" => [0x0012E],
  "Iopf" => [0x1D540],
  "Iota" => [0x00399],
  "Iscr" => [0x02110],
  "Itilde" => [0x00128],
  "Iukcy" => [0x00406],
  "Iuml" => [0x000CF],
  "Jcirc" => [0x00134],
  "Jcy" => [0x00419],
  "Jfr" => [0x1D50D],
  "Jopf" => [0x1D541],
  "Jscr" => [0x1D4A5],
  "Jsercy" => [0x00408],
  "Jukcy" => [0x00404],
  "KHcy" => [0x00425],
  "KJcy" => [0x0040C],
  "Kappa" => [0x0039A],
  "Kcedil" => [0x00136],
  "Kcy" => [0x0041A],
  "Kfr" => [0x1D50E],
  "Kopf" => [0x1D542],
  "Kscr" => [0x1D4A6],
  "LJcy" => [0x00409],
  "LT" => [0x0003C],
  "Lacute" => [0x00139],
  "Lambda" => [0x0039B],
  "Lang" => [0x027EA],
  "Laplacetrf" => [0x02112],
  "Larr" => [0x0219E],
  "Lcaron" => [0x0013D],
  "Lcedil" => [0x0013B],
  "Lcy" => [0x0041B],
  "LeftAngleBracket" => [0x027E8],
  "LeftArrow" => [0x02190],
  "LeftArrowBar" => [0x021E4],
  "LeftArrowRightArrow" => [0x021C6],
  "LeftCeiling" => [0x02308],
  "LeftDoubleBracket" => [0x027E6],
  "LeftDownTeeVector" => [0x02961],
  "LeftDownVector" => [0x021C3],
  "LeftDownVectorBar" => [0x02959],
  "LeftFloor" => [0x0230A],
  "LeftRightArrow" => [0x02194],
  "LeftRightVector" => [0x0294E],
  "LeftTee" => [0x022A3],
  "LeftTeeArrow" => [0x021A4],
  "LeftTeeVector" => [0x0295A],
  "LeftTriangle" => [0x022B2],
  "LeftTriangleBar" => [0x029CF],
  "LeftTriangleEqual" => [0x022B4],
  "LeftUpDownVector" => [0x02951],
  "LeftUpTeeVector" => [0x02960],
  "LeftUpVector" => [0x021BF],
  "LeftUpVectorBar" => [0x02958],
  "LeftVector" => [0x021BC],
  "LeftVectorBar" => [0x02952],
  "Leftarrow" => [0x021D0],
  "Leftrightarrow" => [0x021D4],
  "LessEqualGreater" => [0x022DA],
  "LessFullEqual" => [0x02266],
  "LessGreater" => [0x02276],
  "LessLess" => [0x02AA1],
  "LessSlantEqual" => [0x02A7D],
  "LessTilde" => [0x02272],
  "Lfr" => [0x1D50F],
  "Ll" => [0x022D8],
  "Lleftarrow" => [0x021DA],
  "Lmidot" => [0x0013F],
  "LongLeftArrow" => [0x027F5],
  "LongLeftRightArrow" => [0x027F7],
  "LongRightArrow" => [0x027F6],
  "Longleftarrow" => [0x027F8],
  "Longleftrightarrow" => [0x027FA],
  "Longrightarrow" => [0x027F9],
  "Lopf" => [0x1D543],
  "LowerLeftArrow" => [0x02199],
  "LowerRightArrow" => [0x02198],
  "Lscr" => [0x02112],
  "Lsh" => [0x021B0],
  "Lstrok" => [0x00141],
  "Lt" => [0x0226A],
  "Map" => [0x02905],
  "Mcy" => [0x0041C],
  "MediumSpace" => [0x0205F],
  "Mellintrf" => [0x02133],
  "Mfr" => [0x1D510],
  "MinusPlus" => [0x02213],
  "Mopf" => [0x1D544],
  "Mscr" => [0x02133],
  "Mu" => [0x0039C],
  "NJcy" => [0x0040A],
  "Nacute" => [0x00143],
  "Ncaron" => [0x00147],
  "Ncedil" => [0x00145],
  "Ncy" => [0x0041D],
  "NegativeMediumSpace" => [0x0200B],
  "NegativeThickSpace" => [0x0200B],
  "NegativeThinSpace" => [0x0200B],
  "NegativeVeryThinSpace" => [0x0200B],
  "NestedGreaterGreater" => [0x0226B],
  "NestedLessLess" => [0x0226A],
  "NewLine" => [0x0000A],
  "Nfr" => [0x1D511],
  "NoBreak" => [0x02060],
  "NonBreakingSpace" => [0x000A0],
  "Nopf" => [0x02115],
  "Not" => [0x02AEC],
  "NotCongruent" => [0x02262],
  "NotCupCap" => [0x0226D],
  "NotDoubleVerticalBar" => [0x02226],
  "NotElement" => [0x02209],
  "NotEqual" => [0x02260],
  "NotEqualTilde" => [0x02242, 0x00338],
  "NotExists" => [0x02204],
  "NotGreater" => [0x0226F],
  "NotGreaterEqual" => [0x02271],
  "NotGreaterFullEqual" => [0x02267, 0x00338],
  "NotGreaterGreater" => [0x0226B, 0x00338],
  "NotGreaterLess" => [0x02279],
  "NotGreaterSlantEqual" => [0x02A7E, 0x00338],
  "NotGreaterTilde" => [0x02275],
  "NotHumpDownHump" => [0x0224E, 0x00338],
  "NotHumpEqual" => [0x0224F, 0x00338],
  "NotLeftTriangle" => [0x022EA],
  "NotLeftTriangleBar" => [0x029CF, 0x00338],
  "NotLeftTriangleEqual" => [0x022EC],
  "NotLess" => [0x0226E],
  "NotLessEqual" => [0x02270],
  "NotLessGreater" => [0x02278],
  "NotLessLess" => [0x0226A, 0x00338],
  "NotLessSlantEqual" => [0x02A7D, 0x00338],
  "NotLessTilde" => [0x02274],
  "NotNestedGreaterGreater" => [0x02AA2, 0x00338],
  "NotNestedLessLess" => [0x02AA1, 0x00338],
  "NotPrecedes" => [0x02280],
  "NotPrecedesEqual" => [0x02AAF, 0x00338],
  "NotPrecedesSlantEqual" => [0x022E0],
  "NotReverseElement" => [0x0220C],
  "NotRightTriangle" => [0x022EB],
  "NotRightTriangleBar" => [0x029D0, 0x00338],
  "NotRightTriangleEqual" => [0x022ED],
  "NotSquareSubset" => [0x0228F, 0x00338],
  "NotSquareSubsetEqual" => [0x022E2],
  "NotSquareSuperset" => [0x02290, 0x00338],
  "NotSquareSupersetEqual" => [0x022E3],
  "NotSubset" => [0x02282, 0x020D2],
  "NotSubsetEqual" => [0x02288],
  "NotSucceeds" => [0x02281],
  "NotSucceedsEqual" => [0x02AB0, 0x00338],
  "NotSucceedsSlantEqual" => [0x022E1],
  "NotSucceedsTilde" => [0x0227F, 0x00338],
  "NotSuperset" => [0x02283, 0x020D2],
  "NotSupersetEqual" => [0x02289],
  "NotTilde" => [0x02241],
  "NotTildeEqual" => [0x02244],
  "NotTildeFullEqual" => [0x02247],
  "NotTildeTilde" => [0x02249],
  "NotVerticalBar" => [0x02224],
  "Nscr" => [0x1D4A9],
  "Ntilde" => [0x000D1],
  "Nu" => [0x0039D],
  "OElig" => [0x00152],
  "Oacute" => [0x000D3],
  "Ocirc" => [0x000D4],
  "Ocy" => [0x0041E],
  "Odblac" => [0x00150],
  "Ofr" => [0x1D512],
  "Ograve" => [0x000D2],
  "Omacr" => [0x0014C],
  "Omega" => [0x003A9],
  "Omicron" => [0x0039F],
  "Oopf" => [0x1D546],
  "OpenCurlyDoubleQuote" => [0x0201C],
  "OpenCurlyQuote" => [0x02018],
  "Or" => [0x02A54],
  "Oscr" => [0x1D4AA],
  "Oslash" => [0x000D8],
  "Otilde" => [0x000D5],
  "Otimes" => [0x02A37],
  "Ouml" => [0x000D6],
  "OverBar" => [0x0203E],
  "OverBrace" => [0x023DE],
  "OverBracket" => [0x023B4],
  "OverParenthesis" => [0x023DC],
  "PartialD" => [0x02202],
  "Pcy" => [0x0041F],
  "Pfr" => [0x1D513],
  "Phi" => [0x003A6],
  "Pi" => [0x003A0],
  "PlusMinus" => [0x000B1],
  "Poincareplane" => [0x0210C],
  "Popf" => [0x02119],
  "Pr" => [0x02ABB],
  "Precedes" => [0x0227A],
  "PrecedesEqual" => [0x02AAF],
  "PrecedesSlantEqual" => [0x0227C],
  "PrecedesTilde" => [0x0227E],
  "Prime" => [0x02033],
  "Product" => [0x0220F],
  "Proportion" => [0x02237],
  "Proportional" => [0x0221D],
  "Pscr" => [0x1D4AB],
  "Psi" => [0x003A8],
  "QUOT" => [0x00022],
  "Qfr" => [0x1D514],
  "Qopf" => [0x0211A],
  "Qscr" => [0x1D4AC],
  "RBarr" => [0x02910],
  "REG" => [0x000AE],
  "Racute" => [0x00154],
  "Rang" => [0x027EB],
  "Rarr" => [0x021A0],
  "Rarrtl" => [0x02916],
  "Rcaron" => [0x00158],
  "Rcedil" => [0x00156],
  "Rcy" => [0x00420],
  "Re" => [0x0211C],
  "ReverseElement" => [0x0220B],
  "ReverseEquilibrium" => [0x021CB],
  "ReverseUpEquilibrium" => [0x0296F],
  "Rfr" => [0x0211C],
  "Rho" => [0x003A1],
  "RightAngleBracket" => [0x027E9],
  "RightArrow" => [0x02192],
  "RightArrowBar" => [0x021E5],
  "RightArrowLeftArrow" => [0x021C4],
  "RightCeiling" => [0x02309],
  "RightDoubleBracket" => [0x027E7],
  "RightDownTeeVector" => [0x0295D],
  "RightDownVector" => [0x021C2],
  "RightDownVectorBar" => [0x02955],
  "RightFloor" => [0x0230B],
  "RightTee" => [0x022A2],
  "RightTeeArrow" => [0x021A6],
  "RightTeeVector" => [0x0295B],
  "RightTriangle" => [0x022B3],
  "RightTriangleBar" => [0x029D0],
  "RightTriangleEqual" => [0x022B5],
  "RightUpDownVector" => [0x0294F],
  "RightUpTeeVector" => [0x0295C],
  "RightUpVector" => [0x021BE],
  "RightUpVectorBar" => [0x02954],
  "RightVector" => [0x021C0],
  "RightVectorBar" => [0x02953],
  "Rightarrow" => [0x021D2],
  "Ropf" => [0x0211D],
  "RoundImplies" => [0x02970],
  "Rrightarrow" => [0x021DB],
  "Rscr" => [0x0211B],
  "Rsh" => [0x021B1],
  "RuleDelayed" => [0x029F4],
  "SHCHcy" => [0x00429],
  "SHcy" => [0x00428],
  "SOFTcy" => [0x0042C],
  "Sacute" => [0x0015A],
  "Sc" => [0x02ABC],
  "Scaron" => [0x00160],
  "Scedil" => [0x0015E],
  "Scirc" => [0x0015C],
  "Scy" => [0x00421],
  "Sfr" => [0x1D516],
  "ShortDownArrow" => [0x02193],
  "ShortLeftArrow" => [0x02190],
  "ShortRightArrow" => [0x02192],
  "ShortUpArrow" => [0x02191],
  "Sigma" => [0x003A3],
  "SmallCircle" => [0x02218],
  "Sopf" => [0x1D54A],
  "Sqrt" => [0x0221A],
  "Square" => [0x025A1],
  "SquareIntersection" => [0x02293],
  "SquareSubset" => [0x0228F],
  "SquareSubsetEqual" => [0x02291],
  "SquareSuperset" => [0x02290],
  "SquareSupersetEqual" => [0x02292],
  "SquareUnion" => [0x02294],
  "Sscr" => [0x1D4AE],
  "Star" => [0x022C6],
  "Sub" => [0x022D0],
  "Subset" => [0x022D0],
  "SubsetEqual" => [0x02286],
  "Succeeds" => [0x0227B],
  "SucceedsEqual" => [0x02AB0],
  "SucceedsSlantEqual" => [0x0227D],
  "SucceedsTilde" => [0x0227F],
  "SuchThat" => [0x0220B],
  "Sum" => [0x02211],
  "Sup" => [0x022D1],
  "Superset" => [0x02283],
  "SupersetEqual" => [0x02287],
  "Supset" => [0x022D1],
  "THORN" => [0x000DE],
  "TRADE" => [0x02122],
  "TSHcy" => [0x0040B],
  "TScy" => [0x00426],
  "Tab" => [0x00009],
  "Tau" => [0x003A4],
  "Tcaron" => [0x00164],
  "Tcedil" => [0x00162],
  "Tcy" => [0x00422],
  "Tfr" => [0x1D517],
  "Therefore" => [0x02234],
  "Theta" => [0x00398],
  "ThickSpace" => [0x0205F, 0x0200A],
  "ThinSpace" => [0x02009],
  "Tilde" => [0x0223C],
  "TildeEqual" => [0x02243],
  "TildeFullEqual" => [0x02245],
  "TildeTilde" => [0x02248],
  "Topf" => [0x1D54B],
  "TripleDot" => [0x020DB],
  "Tscr" => [0x1D4AF],
  "Tstrok" => [0x00166],
  "Uacute" => [0x000DA],
  "Uarr" => [0x0219F],
  "Uarrocir" => [0x02949],
  "Ubrcy" => [0x0040E],
  "Ubreve" => [0x0016C],
  "Ucirc" => [0x000DB],
  "Ucy" => [0x00423],
  "Udblac" => [0x00170],
  "Ufr" => [0x1D518],
  "Ugrave" => [0x000D9],
  "Umacr" => [0x0016A],
  "UnderBar" => [0x0005F],
  "UnderBrace" => [0x023DF],
  "UnderBracket" => [0x023B5],
  "UnderParenthesis" => [0x023DD],
  "Union" => [0x022C3],
  "UnionPlus" => [0x0228E],
  "Uogon" => [0x00172],
  "Uopf" => [0x1D54C],
  "UpArrow" => [0x02191],
  "UpArrowBar" => [0x02912],
  "UpArrowDownArrow" => [0x021C5],
  "UpDownArrow" => [0x02195],
  "UpEquilibrium" => [0x0296E],
  "UpTee" => [0x022A5],
  "UpTeeArrow" => [0x021A5],
  "Uparrow" => [0x021D1],
  "Updownarrow" => [0x021D5],
  "UpperLeftArrow" => [0x02196],
  "UpperRightArrow" => [0x02197],
  "Upsi" => [0x003D2],
  "Upsilon" => [0x003A5],
  "Uring" => [0x0016E],
  "Uscr" => [0x1D4B0],
  "Utilde" => [0x00168],
  "Uuml" => [0x000DC],
  "VDash" => [0x022AB],
  "Vbar" => [0x02AEB],
  "Vcy" => [0x00412],
  "Vdash" => [0x022A9],
  "Vdashl" => [0x02AE6],
  "Vee" => [0x022C1],
  "Verbar" => [0x02016],
  "Vert" => [0x02016],
  "VerticalBar" => [0x02223],
  "VerticalLine" => [0x0007C],
  "VerticalSeparator" => [0x02758],
  "VerticalTilde" => [0x02240],
  "VeryThinSpace" => [0x0200A],
  "Vfr" => [0x1D519],
  "Vopf" => [0x1D54D],
  "Vscr" => [0x1D4B1],
  "Vvdash" => [0x022AA],
  "Wcirc" => [0x00174],
  "Wedge" => [0x022C0],
  "Wfr" => [0x1D51A],
  "Wopf" => [0x1D54E],
  "Wscr" => [0x1D4B2],
  "Xfr" => [0x1D51B],
  "Xi" => [0x0039E],
  "Xopf" => [0x1D54F],
  "Xscr" => [0x1D4B3],
  "YAcy" => [0x0042F],
  "YIcy" => [0x00407],
  "YUcy" => [0x0042E],
  "Yacute" => [0x000DD],
  "Ycirc" => [0x00176],
  "Ycy" => [0x0042B],
  "Yfr" => [0x1D51C],
  "Yopf" => [0x1D550],
  "Yscr" => [0x1D4B4],
  "Yuml" => [0x00178],
  "ZHcy" => [0x00416],
  "Zacute" => [0x00179],
  "Zcaron" => [0x0017D],
  "Zcy" => [0x00417],
  "Zdot" => [0x0017B],
  "ZeroWidthSpace" => [0x0200B],
  "Zeta" => [0x00396],
  "Zfr" => [0x02128],
  "Zopf" => [0x02124],
  "Zscr" => [0x1D4B5],
  "aacute" => [0x000E1],
  "abreve" => [0x00103],
  "ac" => [0x0223E],
  "acE" => [0x0223E, 0x00333],
  "acd" => [0x0223F],
  "acirc" => [0x000E2],
  "acute" => [0x000B4],
  "acy" => [0x00430],
  "aelig" => [0x000E6],
  "af" => [0x02061],
  "afr" => [0x1D51E],
  "agrave" => [0x000E0],
  "alefsym" => [0x02135],
  "aleph" => [0x02135],
  "alpha" => [0x003B1],
  "amacr" => [0x00101],
  "amalg" => [0x02A3F],
  "amp" => [0x00026],
  "and" => [0x02227],
  "andand" => [0x02A55],
  "andd" => [0x02A5C],
  "andslope" => [0x02A58],
  "andv" => [0x02A5A],
  "ang" => [0x02220],
  "ange" => [0x029A4],
  "angle" => [0x02220],
  "angmsd" => [0x02221],
  "angmsdaa" => [0x029A8],
  "angmsdab" => [0x029A9],
  "angmsdac" => [0x029AA],
  "angmsdad" => [0x029AB],
  "angmsdae" => [0x029AC],
  "angmsdaf" => [0x029AD],
  "angmsdag" => [0x029AE],
  "angmsdah" => [0x029AF],
  "angrt" => [0x0221F],
  "angrtvb" => [0x022BE],
  "angrtvbd" => [0x0299D],
  "angsph" => [0x02222],
  "angst" => [0x000C5],
  "angzarr" => [0x0237C],
  "aogon" => [0x00105],
  "aopf" => [0x1D552],
  "ap" => [0x02248],
  "apE" => [0x02A70],
  "apacir" => [0x02A6F],
  "ape" => [0x0224A],
  "apid" => [0x0224B],
  "apos" => [0x00027],
  "approx" => [0x02248],
  "approxeq" => [0x0224A],
  "aring" => [0x000E5],
  "ascr" => [0x1D4B6],
  "ast" => [0x0002A],
  "asymp" => [0x02248],
  "asympeq" => [0x0224D],
  "atilde" => [0x000E3],
  "auml" => [0x000E4],
  "awconint" => [0x02233],
  "awint" => [0x02A11],
  "bNot" => [0x02AED],
  "backcong" => [0x0224C],
  "backepsilon" => [0x003F6],
  "backprime" => [0x02035],
  "backsim" => [0x0223D],
  "backsimeq" => [0x022CD],
  "barvee" => [0x022BD],
  "barwed" => [0x02305],
  "barwedge" => [0x02305],
  "bbrk" => [0x023B5],
  "bbrktbrk" => [0x023B6],
  "bcong" => [0x0224C],
  "bcy" => [0x00431],
  "bdquo" => [0x0201E],
  "becaus" => [0x02235],
  "because" => [0x02235],
  "bemptyv" => [0x029B0],
  "bepsi" => [0x003F6],
  "bernou" => [0x0212C],
  "beta" => [0x003B2],
  "beth" => [0x02136],
  "between" => [0x0226C],
  "bfr" => [0x1D51F],
  "bigcap" => [0x022C2],
  "bigcirc" => [0x025EF],
  "bigcup" => [0x022C3],
  "bigodot" => [0x02A00],
  "bigoplus" => [0x02A01],
  "bigotimes" => [0x02A02],
  "bigsqcup" => [0x02A06],
  "bigstar" => [0x02605],
  "bigtriangledown" => [0x025BD],
  "bigtriangleup" => [0x025B3],
  "biguplus" => [0x02A04],
  "bigvee" => [0x022C1],
  "bigwedge" => [0x022C0],
  "bkarow" => [0x0290D],
  "blacklozenge" => [0x029EB],
  "blacksquare" => [0x025AA],
  "blacktriangle" => [0x025B4],
  "blacktriangledown" => [0x025BE],
  "blacktriangleleft" => [0x025C2],
  "blacktriangleright" => [0x025B8],
  "blank" => [0x02423],
  "blk12" => [0x02592],
  "blk14" => [0x02591],
  "blk34" => [0x02593],
  "block" => [0x02588],
  "bne" => [0x0003D, 0x020E5],
  "bnequiv" => [0x02261, 0x020E5],
  "bnot" => [0x02310],
  "bopf" => [0x1D553],
  "bot" => [0x022A5],
  "bottom" => [0x022A5],
  "bowtie" => [0x022C8],
  "boxDL" => [0x02557],
  "boxDR" => [0x02554],
  "boxDl" => [0x02556],
  "boxDr" => [0x02553],
  "boxH" => [0x02550],
  "boxHD" => [0x02566],
  "boxHU" => [0x02569],
  "boxHd" => [0x02564],
  "boxHu" => [0x02567],
  "boxUL" => [0x0255D],
  "boxUR" => [0x0255A],
  "boxUl" => [0x0255C],
  "boxUr" => [0x02559],
  "boxV" => [0x02551],
  "boxVH" => [0x0256C],
  "boxVL" => [0x02563],
  "boxVR" => [0x02560],
  "boxVh" => [0x0256B],
  "boxVl" => [0x02562],
  "boxVr" => [0x0255F],
  "boxbox" => [0x029C9],
  "boxdL" => [0x02555],
  "boxdR" => [0x02552],
  "boxdl" => [0x02510],
  "boxdr" => [0x0250C],
  "boxh" => [0x02500],
  "boxhD" => [0x02565],
  "boxhU" => [0x02568],
  "boxhd" => [0x0252C],
  "boxhu" => [0x02534],
  "boxminus" => [0x0229F],
  "boxplus" => [0x0229E],
  "boxtimes" => [0x022A0],
  "boxuL" => [0x0255B],
  "boxuR" => [0x02558],
  "boxul" => [0x02518],
  "boxur" => [0x02514],
  "boxv" => [0x02502],
  "boxvH" => [0x0256A],
  "boxvL" => [0x02561],
  "boxvR" => [0x0255E],
  "boxvh" => [0x0253C],
  "boxvl" => [0x02524],
  "boxvr" => [0x0251C],
  "bprime" => [0x02035],
  "breve" => [0x002D8],
  "brvbar" => [0x000A6],
  "bscr" => [0x1D4B7],
  "bsemi" => [0x0204F],
  "bsim" => [0x0223D],
  "bsime" => [0x022CD],
  "bsol" => [0x0005C],
  "bsolb" => [0x029C5],
  "bsolhsub" => [0x027C8],
  "bull" => [0x02022],
  "bullet" => [0x02022],
  "bump" => [0x0224E],
  "bumpE" => [0x02AAE],
  "bumpe" => [0x0224F],
  "bumpeq" => [0x0224F],
  "cacute" => [0x00107],
  "cap" => [0x02229],
  "capand" => [0x02A44],
  "capbrcup" => [0x02A49],
  "capcap" => [0x02A4B],
  "capcup" => [0x02A47],
  "capdot" => [0x02A40],
  "caps" => [0x02229, 0x0FE00],
  "caret" => [0x02041],
  "caron" => [0x002C7],
  "ccaps" => [0x02A4D],
  "ccaron" => [0x0010D],
  "ccedil" => [0x000E7],
  "ccirc" => [0x00109],
  "ccups" => [0x02A4C],
  "ccupssm" => [0x02A50],
  "cdot" => [0x0010B],
  "cedil" => [0x000B8],
  "cemptyv" => [0x029B2],
  "cent" => [0x000A2],
  "centerdot" => [0x000B7],
  "cfr" => [0x1D520],
  "chcy" => [0x00447],
  "check" => [0x02713],
  "checkmark" => [0x02713],
  "chi" => [0x003C7],
  "cir" => [0x025CB],
  "cirE" => [0x029C3],
  "circ" => [0x002C6],
  "circeq" => [0x02257],
  "circlearrowleft" => [0x021BA],
  "circlearrowright" => [0x021BB],
  "circledR" => [0x000AE],
  "circledS" => [0x024C8],
  "circledast" => [0x0229B],
  "circledcirc" => [0x0229A],
  "circleddash" => [0x0229D],
  "cire" => [0x02257],
  "cirfnint" => [0x02A10],
  "cirmid" => [0x02AEF],
  "cirscir" => [0x029C2],
  "clubs" => [0x02663],
  "clubsuit" => [0x02663],
  "colon" => [0x0003A],
  "colone" => [0x02254],
  "coloneq" => [0x02254],
  "comma" => [0x0002C],
  "commat" => [0x00040],
  "comp" => [0x02201],
  "compfn" => [0x02218],
  "complement" => [0x02201],
  "complexes" => [0x02102],
  "cong" => [0x02245],
  "congdot" => [0x02A6D],
  "conint" => [0x0222E],
  "copf" => [0x1D554],
  "coprod" => [0x02210],
  "copy" => [0x000A9],
  "copysr" => [0x02117],
  "crarr" => [0x021B5],
  "cross" => [0x02717],
  "cscr" => [0x1D4B8],
  "csub" => [0x02ACF],
  "csube" => [0x02AD1],
  "csup" => [0x02AD0],
  "csupe" => [0x02AD2],
  "ctdot" => [0x022EF],
  "cudarrl" => [0x02938],
  "cudarrr" => [0x02935],
  "cuepr" => [0x022DE],
  "cuesc" => [0x022DF],
  "cularr" => [0x021B6],
  "cularrp" => [0x0293D],
  "cup" => [0x0222A],
  "cupbrcap" => [0x02A48],
  "cupcap" => [0x02A46],
  "cupcup" => [0x02A4A],
  "cupdot" => [0x0228D],
  "cupor" => [0x02A45],
  "cups" => [0x0222A, 0x0FE00],
  "curarr" => [0x021B7],
  "curarrm" => [0x0293C],
  "curlyeqprec" => [0x022DE],
  "curlyeqsucc" => [0x022DF],
  "curlyvee" => [0x022CE],
  "curlywedge" => [0x022CF],
  "curren" => [0x000A4],
  "curvearrowleft" => [0x021B6],
  "curvearrowright" => [0x021B7],
  "cuvee" => [0x022CE],
  "cuwed" => [0x022CF],
  "cwconint" => [0x02232],
  "cwint" => [0x02231],
  "cylcty" => [0x0232D],
  "dArr" => [0x021D3],
  "dHar" => [0x02965],
  "dagger" => [0x02020],
  "daleth" => [0x02138],
  "darr" => [0x02193],
  "dash" => [0x02010],
  "dashv" => [0x022A3],
  "dbkarow" => [0x0290F],
  "dblac" => [0x002DD],
  "dcaron" => [0x0010F],
  "dcy" => [0x00434],
  "dd" => [0x02146],
  "ddagger" => [0x02021],
  "ddarr" => [0x021CA],
  "ddotseq" => [0x02A77],
  "deg" => [0x000B0],
  "delta" => [0x003B4],
  "demptyv" => [0x029B1],
  "dfisht" => [0x0297F],
  "dfr" => [0x1D521],
  "dharl" => [0x021C3],
  "dharr" => [0x021C2],
  "diam" => [0x022C4],
  "diamond" => [0x022C4],
  "diamondsuit" => [0x02666],
  "diams" => [0x02666],
  "die" => [0x000A8],
  "digamma" => [0x003DD],
  "disin" => [0x022F2],
  "div" => [0x000F7],
  "divide" => [0x000F7],
  "divideontimes" => [0x022C7],
  "divonx" => [0x022C7],
  "djcy" => [0x00452],
  "dlcorn" => [0x0231E],
  "dlcrop" => [0x0230D],
  "dollar" => [0x00024],
  "dopf" => [0x1D555],
  "dot" => [0x002D9],
  "doteq" => [0x02250],
  "doteqdot" => [0x02251],
  "dotminus" => [0x02238],
  "dotplus" => [0x02214],
  "dotsquare" => [0x022A1],
  "doublebarwedge" => [0x02306],
  "downarrow" => [0x02193],
  "downdownarrows" => [0x021CA],
  "downharpoonleft" => [0x021C3],
  "downharpoonright" => [0x021C2],
  "drbkarow" => [0x02910],
  "drcorn" => [0x0231F],
  "drcrop" => [0x0230C],
  "dscr" => [0x1D4B9],
  "dscy" => [0x00455],
  "dsol" => [0x029F6],
  "dstrok" => [0x00111],
  "dtdot" => [0x022F1],
  "dtri" => [0x025BF],
  "dtrif" => [0x025BE],
  "duarr" => [0x021F5],
  "duhar" => [0x0296F],
  "dwangle" => [0x029A6],
  "dzcy" => [0x0045F],
  "dzigrarr" => [0x027FF],
  "eDDot" => [0x02A77],
  "eDot" => [0x02251],
  "eacute" => [0x000E9],
  "easter" => [0x02A6E],
  "ecaron" => [0x0011B],
  "ecir" => [0x02256],
  "ecirc" => [0x000EA],
  "ecolon" => [0x02255],
  "ecy" => [0x0044D],
  "edot" => [0x00117],
  "ee" => [0x02147],
  "efDot" => [0x02252],
  "efr" => [0x1D522],
  "eg" => [0x02A9A],
  "egrave" => [0x000E8],
  "egs" => [0x02A96],
  "egsdot" => [0x02A98],
  "el" => [0x02A99],
  "elinters" => [0x023E7],
  "ell" => [0x02113],
  "els" => [0x02A95],
  "elsdot" => [0x02A97],
  "emacr" => [0x00113],
  "empty" => [0x02205],
  "emptyset" => [0x02205],
  "emptyv" => [0x02205],
  "emsp" => [0x02003],
  "emsp13" => [0x02004],
  "emsp14" => [0x02005],
  "eng" => [0x0014B],
  "ensp" => [0x02002],
  "eogon" => [0x00119],
  "eopf" => [0x1D556],
  "epar" => [0x022D5],
  "eparsl" => [0x029E3],
  "eplus" => [0x02A71],
  "epsi" => [0x003B5],
  "epsilon" => [0x003B5],
  "epsiv" => [0x003F5],
  "eqcirc" => [0x02256],
  "eqcolon" => [0x02255],
  "eqsim" => [0x02242],
  "eqslantgtr" => [0x02A96],
  "eqslantless" => [0x02A95],
  "equals" => [0x0003D],
  "equest" => [0x0225F],
  "equiv" => [0x02261],
  "equivDD" => [0x02A78],
  "eqvparsl" => [0x029E5],
  "erDot" => [0x02253],
  "erarr" => [0x02971],
  "escr" => [0x0212F],
  "esdot" => [0x02250],
  "esim" => [0x02242],
  "eta" => [0x003B7],
  "eth" => [0x000F0],
  "euml" => [0x000EB],
  "euro" => [0x020AC],
  "excl" => [0x00021],
  "exist" => [0x02203],
  "expectation" => [0x02130],
  "exponentiale" => [0x02147],
  "fallingdotseq" => [0x02252],
  "fcy" => [0x00444],
  "female" => [0x02640],
  "ffilig" => [0x0FB03],
  "fflig" => [0x0FB00],
  "ffllig" => [0x0FB04],
  "ffr" => [0x1D523],
  "filig" => [0x0FB01],
  "fjlig" => [0x00066, 0x0006A],
  "flat" => [0x0266D],
  "fllig" => [0x0FB02],
  "fltns" => [0x025B1],
  "fnof" => [0x00192],
  "fopf" => [0x1D557],
  "forall" => [0x02200],
  "fork" => [0x022D4],
  "forkv" => [0x02AD9],
  "fpartint" => [0x02A0D],
  "frac12" => [0x000BD],
  "frac13" => [0x02153],
  "frac14" => [0x000BC],
  "frac15" => [0x02155],
  "frac16" => [0x02159],
  "frac18" => [0x0215B],
  "frac23" => [0x02154],
  "frac25" => [0x02156],
  "frac34" => [0x000BE],
  "frac35" => [0x02157],
  "frac38" => [0x0215C],
  "frac45" => [0x02158],
  "frac56" => [0x0215A],
  "frac58" => [0x0215D],
  "frac78" => [0x0215E],
  "frasl" => [0x02044],
  "frown" => [0x02322],
  "fscr" => [0x1D4BB],
  "gE" => [0x02267],
  "gEl" => [0x02A8C],
  "gacute" => [0x001F5],
  "gamma" => [0x003B3],
  "gammad" => [0x003DD],
  "gap" => [0x02A86],
  "gbreve" => [0x0011F],
  "gcirc" => [0x0011D],
  "gcy" => [0x00433],
  "gdot" => [0x00121],
  "ge" => [0x02265],
  "gel" => [0x022DB],
  "geq" => [0x02265],
  "geqq" => [0x02267],
  "geqslant" => [0x02A7E],
  "ges" => [0x02A7E],
  "gescc" => [0x02AA9],
  "gesdot" => [0x02A80],
  "gesdoto" => [0x02A82],
  "gesdotol" => [0x02A84],
  "gesl" => [0x022DB, 0x0FE00],
  "gesles" => [0x02A94],
  "gfr" => [0x1D524],
  "gg" => [0x0226B],
  "ggg" => [0x022D9],
  "gimel" => [0x02137],
  "gjcy" => [0x00453],
  "gl" => [0x02277],
  "glE" => [0x02A92],
  "gla" => [0x02AA5],
  "glj" => [0x02AA4],
  "gnE" => [0x02269],
  "gnap" => [0x02A8A],
  "gnapprox" => [0x02A8A],
  "gne" => [0x02A88],
  "gneq" => [0x02A88],
  "gneqq" => [0x02269],
  "gnsim" => [0x022E7],
  "gopf" => [0x1D558],
  "grave" => [0x00060],
  "gscr" => [0x0210A],
  "gsim" => [0x02273],
  "gsime" => [0x02A8E],
  "gsiml" => [0x02A90],
  "gt" => [0x0003E],
  "gtcc" => [0x02AA7],
  "gtcir" => [0x02A7A],
  "gtdot" => [0x022D7],
  "gtlPar" => [0x02995],
  "gtquest" => [0x02A7C],
  "gtrapprox" => [0x02A86],
  "gtrarr" => [0x02978],
  "gtrdot" => [0x022D7],
  "gtreqless" => [0x022DB],
  "gtreqqless" => [0x02A8C],
  "gtrless" => [0x02277],
  "gtrsim" => [0x02273],
  "gvertneqq" => [0x02269, 0x0FE00],
  "gvnE" => [0x02269, 0x0FE00],
  "hArr" => [0x021D4],
  "hairsp" => [0x0200A],
  "half" => [0x000BD],
  "hamilt" => [0x0210B],
  "hardcy" => [0x0044A],
  "harr" => [0x02194],
  "harrcir" => [0x02948],
  "harrw" => [0x021AD],
  "hbar" => [0x0210F],
  "hcirc" => [0x00125],
  "hearts" => [0x02665],
  "heartsuit" => [0x02665],
  "hellip" => [0x02026],
  "hercon" => [0x022B9],
  "hfr" => [0x1D525],
  "hksearow" => [0x02925],
  "hkswarow" => [0x02926],
  "hoarr" => [0x021FF],
  "homtht" => [0x0223B],
  "hookleftarrow" => [0x021A9],
  "hookrightarrow" => [0x021AA],
  "hopf" => [0x1D559],
  "horbar" => [0x02015],
  "hscr" => [0x1D4BD],
  "hslash" => [0x0210F],
  "hstrok" => [0x00127],
  "hybull" => [0x02043],
  "hyphen" => [0x02010],
  "iacute" => [0x000ED],
  "ic" => [0x02063],
  "icirc" => [0x000EE],
  "icy" => [0x00438],
  "iecy" => [0x00435],
  "iexcl" => [0x000A1],
  "iff" => [0x021D4],
  "ifr" => [0x1D526],
  "igrave" => [0x000EC],
  "ii" => [0x02148],
  "iiiint" => [0x02A0C],
  "iiint" => [0x0222D],
  "iinfin" => [0x029DC],
  "iiota" => [0x02129],
  "ijlig" => [0x00133],
  "imacr" => [0x0012B],
  "image" => [0x02111],
  "imagline" => [0x02110],
  "imagpart" => [0x02111],
  "imath" => [0x00131],
  "imof" => [0x022B7],
  "imped" => [0x001B5],
  "in" => [0x02208],
  "incare" => [0x02105],
  "infin" => [0x0221E],
  "infintie" => [0x029DD],
  "inodot" => [0x00131],
  "int" => [0x0222B],
  "intcal" => [0x022BA],
  "integers" => [0x02124],
  "intercal" => [0x022BA],
  "intlarhk" => [0x02A17],
  "intprod" => [0x02A3C],
  "iocy" => [0x00451],
  "iogon" => [0x0012F],
  "iopf" => [0x1D55A],
  "iota" => [0x003B9],
  "iprod" => [0x02A3C],
  "iquest" => [0x000BF],
  "iscr" => [0x1D4BE],
  "isin" => [0x02208],
  "isinE" => [0x022F9],
  "isindot" => [0x022F5],
  "isins" => [0x022F4],
  "isinsv" => [0x022F3],
  "isinv" => [0x02208],
  "it" => [0x02062],
  "itilde" => [0x00129],
  "iukcy" => [0x00456],
  "iuml" => [0x000EF],
  "jcirc" => [0x00135],
  "jcy" => [0x00439],
  "jfr" => [0x1D527],
  "jmath" => [0x00237],
  "jopf" => [0x1D55B],
  "jscr" => [0x1D4BF],
  "jsercy" => [0x00458],
  "jukcy" => [0x00454],
  "kappa" => [0x003BA],
  "kappav" => [0x003F0],
  "kcedil" => [0x00137],
  "kcy" => [0x0043A],
  "kfr" => [0x1D528],
  "kgreen" => [0x00138],
  "khcy" => [0x00445],
  "kjcy" => [0x0045C],
  "kopf" => [0x1D55C],
  "kscr" => [0x1D4C0],
  "lAarr" => [0x021DA],
  "lArr" => [0x021D0],
  "lAtail" => [0x0291B],
  "lBarr" => [0x0290E],
  "lE" => [0x02266],
  "lEg" => [0x02A8B],
  "lHar" => [0x02962],
  "lacute" => [0x0013A],
  "laemptyv" => [0x029B4],
  "lagran" => [0x02112],
  "lambda" => [0x003BB],
  "lang" => [0x027E8],
  "langd" => [0x02991],
  "langle" => [0x027E8],
  "lap" => [0x02A85],
  "laquo" => [0x000AB],
  "larr" => [0x02190],
  "larrb" => [0x021E4],
  "larrbfs" => [0x0291F],
  "larrfs" => [0x0291D],
  "larrhk" => [0x021A9],
  "larrlp" => [0x021AB],
  "larrpl" => [0x02939],
  "larrsim" => [0x02973],
  "larrtl" => [0x021A2],
  "lat" => [0x02AAB],
  "latail" => [0x02919],
  "late" => [0x02AAD],
  "lates" => [0x02AAD, 0x0FE00],
  "lbarr" => [0x0290C],
  "lbbrk" => [0x02772],
  "lbrace" => [0x0007B],
  "lbrack" => [0x0005B],
  "lbrke" => [0x0298B],
  "lbrksld" => [0x0298F],
  "lbrkslu" => [0x0298D],
  "lcaron" => [0x0013E],
  "lcedil" => [0x0013C],
  "lceil" => [0x02308],
  "lcub" => [0x0007B],
  "lcy" => [0x0043B],
  "ldca" => [0x02936],
  "ldquo" => [0x0201C],
  "ldquor" => [0x0201E],
  "ldrdhar" => [0x02967],
  "ldrushar" => [0x0294B],
  "ldsh" => [0x021B2],
  "le" => [0x02264],
  "leftarrow" => [0x02190],
  "leftarrowtail" => [0x021A2],
  "leftharpoondown" => [0x021BD],
  "leftharpoonup" => [0x021BC],
  "leftleftarrows" => [0x021C7],
  "leftrightarrow" => [0x02194],
  "leftrightarrows" => [0x021C6],
  "leftrightharpoons" => [0x021CB],
  "leftrightsquigarrow" => [0x021AD],
  "leftthreetimes" => [0x022CB],
  "leg" => [0x022DA],
  "leq" => [0x02264],
  "leqq" => [0x02266],
  "leqslant" => [0x02A7D],
  "les" => [0x02A7D],
  "lescc" => [0x02AA8],
  "lesdot" => [0x02A7F],
  "lesdoto" => [0x02A81],
  "lesdotor" => [0x02A83],
  "lesg" => [0x022DA, 0x0FE00],
  "lesges" => [0x02A93],
  "lessapprox" => [0x02A85],
  "lessdot" => [0x022D6],
  "lesseqgtr" => [0x022DA],
  "lesseqqgtr" => [0x02A8B],
  "lessgtr" => [0x02276],
  "lesssim" => [0x02272],
  "lfisht" => [0x0297C],
  "lfloor" => [0x0230A],
  "lfr" => [0x1D529],
  "lg" => [0x02276],
  "lgE" => [0x02A91],
  "lhard" => [0x021BD],
  "lharu" => [0x021BC],
  "lharul" => [0x0296A],
  "lhblk" => [0x02584],
  "ljcy" => [0x00459],
  "ll" => [0x0226A],
  "llarr" => [0x021C7],
  "llcorner" => [0x0231E],
  "llhard" => [0x0296B],
  "lltri" => [0x025FA],
  "lmidot" => [0x00140],
  "lmoust" => [0x023B0],
  "lmoustache" => [0x023B0],
  "lnE" => [0x02268],
  "lnap" => [0x02A89],
  "lnapprox" => [0x02A89],
  "lne" => [0x02A87],
  "lneq" => [0x02A87],
  "lneqq" => [0x02268],
  "lnsim" => [0x022E6],
  "loang" => [0x027EC],
  "loarr" => [0x021FD],
  "lobrk" => [0x027E6],
  "longleftarrow" => [0x027F5],
  "longleftrightarrow" => [0x027F7],
  "longmapsto" => [0x027FC],
  "longrightarrow" => [0x027F6],
  "looparrowleft" => [0x021AB],
  "looparrowright" => [0x021AC],
  "lopar" => [0x02985],
  "lopf" => [0x1D55D],
  "loplus" => [0x02A2D],
  "lotimes" => [0x02A34],
  "lowast" => [0x02217],
  "lowbar" => [0x0005F],
  "loz" => [0x025CA],
  "lozenge" => [0x025CA],
  "lozf" => [0x029EB],
  "lpar" => [0x00028],
  "lparlt" => [0x02993],
  "lrarr" => [0x021C6],
  "lrcorner" => [0x0231F],
  "lrhar" => [0x021CB],
  "lrhard" => [0x0296D],
  "lrm" => [0x0200E],
  "lrtri" => [0x022BF],
  "lsaquo" => [0x02039],
  "lscr" => [0x1D4C1],
  "lsh" => [0x021B0],
  "lsim" => [0x02272],
  "lsime" => [0x02A8D],
  "lsimg" => [0x02A8F],
  "lsqb" => [0x0005B],
  "lsquo" => [0x02018],
  "lsquor" => [0x0201A],
  "lstrok" => [0x00142],
  "lt" => [0x0003C],
  "ltcc" => [0x02AA6],
  "ltcir" => [0x02A79],
  "ltdot" => [0x022D6],
  "lthree" => [0x022CB],
  "ltimes" => [0x022C9],
  "ltlarr" => [0x02976],
  "ltquest" => [0x02A7B],
  "ltrPar" => [0x02996],
  "ltri" => [0x025C3],
  "ltrie" => [0x022B4],
  "ltrif" => [0x025C2],
  "lurdshar" => [0x0294A],
  "luruhar" => [0x02966],
  "lvertneqq" => [0x02268, 0x0FE00],
  "lvnE" => [0x02268, 0x0FE00],
  "mDDot" => [0x0223A],
  "macr" => [0x000AF],
  "male" => [0x02642],
  "malt" => [0x02720],
  "maltese" => [0x02720],
  "map" => [0x021A6],
  "mapsto" => [0x021A6],
  "mapstodown" => [0x021A7],
  "mapstoleft" => [0x021A4],
  "mapstoup" => [0x021A5],
  "marker" => [0x025AE],
  "mcomma" => [0x02A29],
  "mcy" => [0x0043C],
  "mdash" => [0x02014],
  "measuredangle" => [0x02221],
  "mfr" => [0x1D52A],
  "mho" => [0x02127],
  "micro" => [0x000B5],
  "mid" => [0x02223],
  "midast" => [0x0002A],
  "midcir" => [0x02AF0],
  "middot" => [0x000B7],
  "minus" => [0x02212],
  "minusb" => [0x0229F],
  "minusd" => [0x02238],
  "minusdu" => [0x02A2A],
  "mlcp" => [0x02ADB],
  "mldr" => [0x02026],
  "mnplus" => [0x02213],
  "models" => [0x022A7],
  "mopf" => [0x1D55E],
  "mp" => [0x02213],
  "mscr" => [0x1D4C2],
  "mstpos" => [0x0223E],
  "mu" => [0x003BC],
  "multimap" => [0x022B8],
  "mumap" => [0x022B8],
  "nGg" => [0x022D9, 0x00338],
  "nGt" => [0x0226B, 0x020D2],
  "nGtv" => [0x0226B, 0x00338],
  "nLeftarrow" => [0x021CD],
  "nLeftrightarrow" => [0x021CE],
  "nLl" => [0x022D8, 0x00338],
  "nLt" => [0x0226A, 0x020D2],
  "nLtv" => [0x0226A, 0x00338],
  "nRightarrow" => [0x021CF],
  "nVDash" => [0x022AF],
  "nVdash" => [0x022AE],
  "nabla" => [0x02207],
  "nacute" => [0x00144],
  "nang" => [0x02220, 0x020D2],
  "nap" => [0x02249],
  "napE" => [0x02A70, 0x00338],
  "napid" => [0x0224B, 0x00338],
  "napos" => [0x00149],
  "napprox" => [0x02249],
  "natur" => [0x0266E],
  "natural" => [0x0266E],
  "naturals" => [0x02115],
  "nbsp" => [0x000A0],
  "nbump" => [0x0224E, 0x00338],
  "nbumpe" => [0x0224F, 0x00338],
  "ncap" => [0x02A43],
  "ncaron" => [0x00148],
  "ncedil" => [0x00146],
  "ncong" => [0x02247],
  "ncongdot" => [0x02A6D, 0x00338],
  "ncup" => [0x02A42],
  "ncy" => [0x0043D],
  "ndash" => [0x02013],
  "ne" => [0x02260],
  "neArr" => [0x021D7],
  "nearhk" => [0x02924],
  "nearr" => [0x02197],
  "nearrow" => [0x02197],
  "nedot" => [0x02250, 0x00338],
  "nequiv" => [0x02262],
  "nesear" => [0x02928],
  "nesim" => [0x02242, 0x00338],
  "nexist" => [0x02204],
  "nexists" => [0x02204],
  "nfr" => [0x1D52B],
  "ngE" => [0x02267, 0x00338],
  "nge" => [0x02271],
  "ngeq" => [0x02271],
  "ngeqq" => [0x02267, 0x00338],
  "ngeqslant" => [0x02A7E, 0x00338],
  "nges" => [0x02A7E, 0x00338],
  "ngsim" => [0x02275],
  "ngt" => [0x0226F],
  "ngtr" => [0x0226F],
  "nhArr" => [0x021CE],
  "nharr" => [0x021AE],
  "nhpar" => [0x02AF2],
  "ni" => [0x0220B],
  "nis" => [0x022FC],
  "nisd" => [0x022FA],
  "niv" => [0x0220B],
  "njcy" => [0x0045A],
  "nlArr" => [0x021CD],
  "nlE" => [0x02266, 0x00338],
  "nlarr" => [0x0219A],
  "nldr" => [0x02025],
  "nle" => [0x02270],
  "nleftarrow" => [0x0219A],
  "nleftrightarrow" => [0x021AE],
  "nleq" => [0x02270],
  "nleqq" => [0x02266, 0x00338],
  "nleqslant" => [0x02A7D, 0x00338],
  "nles" => [0x02A7D, 0x00338],
  "nless" => [0x0226E],
  "nlsim" => [0x02274],
  "nlt" => [0x0226E],
  "nltri" => [0x022EA],
  "nltrie" => [0x022EC],
  "nmid" => [0x02224],
  "nopf" => [0x1D55F],
  "not" => [0x000AC],
  "notin" => [0x02209],
  "notinE" => [0x022F9, 0x00338],
  "notindot" => [0x022F5, 0x00338],
  "notinva" => [0x02209],
  "notinvb" => [0x022F7],
  "notinvc" => [0x022F6],
  "notni" => [0x0220C],
  "notniva" => [0x0220C],
  "notnivb" => [0x022FE],
  "notnivc" => [0x022FD],
  "npar" => [0x02226],
  "nparallel" => [0x02226],
  "nparsl" => [0x02AFD, 0x020E5],
  "npart" => [0x02202, 0x00338],
  "npolint" => [0x02A14],
  "npr" => [0x02280],
  "nprcue" => [0x022E0],
  "npre" => [0x02AAF, 0x00338],
  "nprec" => [0x02280],
  "npreceq" => [0x02AAF, 0x00338],
  "nrArr" => [0x021CF],
  "nrarr" => [0x0219B],
  "nrarrc" => [0x02933, 0x00338],
  "nrarrw" => [0x0219D, 0x00338],
  "nrightarrow" => [0x0219B],
  "nrtri" => [0x022EB],
  "nrtrie" => [0x022ED],
  "nsc" => [0x02281],
  "nsccue" => [0x022E1],
  "nsce" => [0x02AB0, 0x00338],
  "nscr" => [0x1D4C3],
  "nshortmid" => [0x02224],
  "nshortparallel" => [0x02226],
  "nsim" => [0x02241],
  "nsime" => [0x02244],
  "nsimeq" => [0x02244],
  "nsmid" => [0x02224],
  "nspar" => [0x02226],
  "nsqsube" => [0x022E2],
  "nsqsupe" => [0x022E3],
  "nsub" => [0x02284],
  "nsubE" => [0x02AC5, 0x00338],
  "nsube" => [0x02288],
  "nsubset" => [0x02282, 0x020D2],
  "nsubseteq" => [0x02288],
  "nsubseteqq" => [0x02AC5, 0x00338],
  "nsucc" => [0x02281],
  "nsucceq" => [0x02AB0, 0x00338],
  "nsup" => [0x02285],
  "nsupE" => [0x02AC6, 0x00338],
  "nsupe" => [0x02289],
  "nsupset" => [0x02283, 0x020D2],
  "nsupseteq" => [0x02289],
  "nsupseteqq" => [0x02AC6, 0x00338],
  "ntgl" => [0x02279],
  "ntilde" => [0x000F1],
  "ntlg" => [0x02278],
  "ntriangleleft" => [0x022EA],
  "ntrianglelefteq" => [0x022EC],
  "ntriangleright" => [0x022EB],
  "ntrianglerighteq" => [0x022ED],
  "nu" => [0x003BD],
  "num" => [0x00023],
  "numero" => [0x02116],
  "numsp" => [0x02007],
  "nvDash" => [0x022AD],
  "nvHarr" => [0x02904],
  "nvap" => [0x0224D, 0x020D2],
  "nvdash" => [0x022AC],
  "nvge" => [0x02265, 0x020D2],
  "nvgt" => [0x0003E, 0x020D2],
  "nvinfin" => [0x029DE],
  "nvlArr" => [0x02902],
  "nvle" => [0x02264, 0x020D2],
  "nvlt" => [0x0003C, 0x020D2],
  "nvltrie" => [0x022B4, 0x020D2],
  "nvrArr" => [0x02903],
  "nvrtrie" => [0x022B5, 0x020D2],
  "nvsim" => [0x0223C, 0x020D2],
  "nwArr" => [0x021D6],
  "nwarhk" => [0x02923],
  "nwarr" => [0x02196],
  "nwarrow" => [0x02196],
  "nwnear" => [0x02927],
  "oS" => [0x024C8],
  "oacute" => [0x000F3],
  "oast" => [0x0229B],
  "ocir" => [0x0229A],
  "ocirc" => [0x000F4],
  "ocy" => [0x0043E],
  "odash" => [0x0229D],
  "odblac" => [0x00151],
  "odiv" => [0x02A38],
  "odot" => [0x02299],
  "odsold" => [0x029BC],
  "oelig" => [0x00153],
  "ofcir" => [0x029BF],
  "ofr" => [0x1D52C],
  "ogon" => [0x002DB],
  "ograve" => [0x000F2],
  "ogt" => [0x029C1],
  "ohbar" => [0x029B5],
  "ohm" => [0x003A9],
  "oint" => [0x0222E],
  "olarr" => [0x021BA],
  "olcir" => [0x029BE],
  "olcross" => [0x029BB],
  "oline" => [0x0203E],
  "olt" => [0x029C0],
  "omacr" => [0x0014D],
  "omega" => [0x003C9],
  "omicron" => [0x003BF],
  "omid" => [0x029B6],
  "ominus" => [0x02296],
  "oopf" => [0x1D560],
  "opar" => [0x029B7],
  "operp" => [0x029B9],
  "oplus" => [0x02295],
  "or" => [0x02228],
  "orarr" => [0x021BB],
  "ord" => [0x02A5D],
  "order" => [0x02134],
  "orderof" => [0x02134],
  "ordf" => [0x000AA],
  "ordm" => [0x000BA],
  "origof" => [0x022B6],
  "oror" => [0x02A56],
  "orslope" => [0x02A57],
  "orv" => [0x02A5B],
  "oscr" => [0x02134],
  "oslash" => [0x000F8],
  "osol" => [0x02298],
  "otilde" => [0x000F5],
  "otimes" => [0x02297],
  "otimesas" => [0x02A36],
  "ouml" => [0x000F6],
  "ovbar" => [0x0233D],
  "par" => [0x02225],
  "para" => [0x000B6],
  "parallel" => [0x02225],
  "parsim" => [0x02AF3],
  "parsl" => [0x02AFD],
  "part" => [0x02202],
  "pcy" => [0x0043F],
  "percnt" => [0x00025],
  "period" => [0x0002E],
  "permil" => [0x02030],
  "perp" => [0x022A5],
  "pertenk" => [0x02031],
  "pfr" => [0x1D52D],
  "phi" => [0x003C6],
  "phiv" => [0x003D5],
  "phmmat" => [0x02133],
  "phone" => [0x0260E],
  "pi" => [0x003C0],
  "pitchfork" => [0x022D4],
  "piv" => [0x003D6],
  "planck" => [0x0210F],
  "planckh" => [0x0210E],
  "plankv" => [0x0210F],
  "plus" => [0x0002B],
  "plusacir" => [0x02A23],
  "plusb" => [0x0229E],
  "pluscir" => [0x02A22],
  "plusdo" => [0x02214],
  "plusdu" => [0x02A25],
  "pluse" => [0x02A72],
  "plusmn" => [0x000B1],
  "plussim" => [0x02A26],
  "plustwo" => [0x02A27],
  "pm" => [0x000B1],
  "pointint" => [0x02A15],
  "popf" => [0x1D561],
  "pound" => [0x000A3],
  "pr" => [0x0227A],
  "prE" => [0x02AB3],
  "prap" => [0x02AB7],
  "prcue" => [0x0227C],
  "pre" => [0x02AAF],
  "prec" => [0x0227A],
  "precapprox" => [0x02AB7],
  "preccurlyeq" => [0x0227C],
  "preceq" => [0x02AAF],
  "precnapprox" => [0x02AB9],
  "precneqq" => [0x02AB5],
  "precnsim" => [0x022E8],
  "precsim" => [0x0227E],
  "prime" => [0x02032],
  "primes" => [0x02119],
  "prnE" => [0x02AB5],
  "prnap" => [0x02AB9],
  "prnsim" => [0x022E8],
  "prod" => [0x0220F],
  "profalar" => [0x0232E],
  "profline" => [0x02312],
  "profsurf" => [0x02313],
  "prop" => [0x0221D],
  "propto" => [0x0221D],
  "prsim" => [0x0227E],
  "prurel" => [0x022B0],
  "pscr" => [0x1D4C5],
  "psi" => [0x003C8],
  "puncsp" => [0x02008],
  "qfr" => [0x1D52E],
  "qint" => [0x02A0C],
  "qopf" => [0x1D562],
  "qprime" => [0x02057],
  "qscr" => [0x1D4C6],
  "quaternions" => [0x0210D],
  "quatint" => [0x02A16],
  "quest" => [0x0003F],
  "questeq" => [0x0225F],
  "quot" => [0x00022],
  "rAarr" => [0x021DB],
  "rArr" => [0x021D2],
  "rAtail" => [0x0291C],
  "rBarr" => [0x0290F],
  "rHar" => [0x02964],
  "race" => [0x0223D, 0x00331],
  "racute" => [0x00155],
  "radic" => [0x0221A],
  "raemptyv" => [0x029B3],
  "rang" => [0x027E9],
  "rangd" => [0x02992],
  "range" => [0x029A5],
  "rangle" => [0x027E9],
  "raquo" => [0x000BB],
  "rarr" => [0x02192],
  "rarrap" => [0x02975],
  "rarrb" => [0x021E5],
  "rarrbfs" => [0x02920],
  "rarrc" => [0x02933],
  "rarrfs" => [0x0291E],
  "rarrhk" => [0x021AA],
  "rarrlp" => [0x021AC],
  "rarrpl" => [0x02945],
  "rarrsim" => [0x02974],
  "rarrtl" => [0x021A3],
  "rarrw" => [0x0219D],
  "ratail" => [0x0291A],
  "ratio" => [0x02236],
  "rationals" => [0x0211A],
  "rbarr" => [0x0290D],
  "rbbrk" => [0x02773],
  "rbrace" => [0x0007D],
  "rbrack" => [0x0005D],
  "rbrke" => [0x0298C],
  "rbrksld" => [0x0298E],
  "rbrkslu" => [0x02990],
  "rcaron" => [0x00159],
  "rcedil" => [0x00157],
  "rceil" => [0x02309],
  "rcub" => [0x0007D],
  "rcy" => [0x00440],
  "rdca" => [0x02937],
  "rdldhar" => [0x02969],
  "rdquo" => [0x0201D],
  "rdquor" => [0x0201D],
  "rdsh" => [0x021B3],
  "real" => [0x0211C],
  "realine" => [0x0211B],
  "realpart" => [0x0211C],
  "reals" => [0x0211D],
  "rect" => [0x025AD],
  "reg" => [0x000AE],
  "rfisht" => [0x0297D],
  "rfloor" => [0x0230B],
  "rfr" => [0x1D52F],
  "rhard" => [0x021C1],
  "rharu" => [0x021C0],
  "rharul" => [0x0296C],
  "rho" => [0x003C1],
  "rhov" => [0x003F1],
  "rightarrow" => [0x02192],
  "rightarrowtail" => [0x021A3],
  "rightharpoondown" => [0x021C1],
  "rightharpoonup" => [0x021C0],
  "rightleftarrows" => [0x021C4],
  "rightleftharpoons" => [0x021CC],
  "rightrightarrows" => [0x021C9],
  "rightsquigarrow" => [0x0219D],
  "rightthreetimes" => [0x022CC],
  "ring" => [0x002DA],
  "risingdotseq" => [0x02253],
  "rlarr" => [0x021C4],
  "rlhar" => [0x021CC],
  "rlm" => [0x0200F],
  "rmoust" => [0x023B1],
  "rmoustache" => [0x023B1],
  "rnmid" => [0x02AEE],
  "roang" => [0x027ED],
  "roarr" => [0x021FE],
  "robrk" => [0x027E7],
  "ropar" => [0x02986],
  "ropf" => [0x1D563],
  "roplus" => [0x02A2E],
  "rotimes" => [0x02A35],
  "rpar" => [0x00029],
  "rpargt" => [0x02994],
  "rppolint" => [0x02A12],
  "rrarr" => [0x021C9],
  "rsaquo" => [0x0203A],
  "rscr" => [0x1D4C7],
  "rsh" => [0x021B1],
  "rsqb" => [0x0005D],
  "rsquo" => [0x02019],
  "rsquor" => [0x02019],
  "rthree" => [0x022CC],
  "rtimes" => [0x022CA],
  "rtri" => [0x025B9],
  "rtrie" => [0x022B5],
  "rtrif" => [0x025B8],
  "rtriltri" => [0x029CE],
  "ruluhar" => [0x02968],
  "rx" => [0x0211E],
  "sacute" => [0x0015B],
  "sbquo" => [0x0201A],
  "sc" => [0x0227B],
  "scE" => [0x02AB4],
  "scap" => [0x02AB8],
  "scaron" => [0x00161],
  "sccue" => [0x0227D],
  "sce" => [0x02AB0],
  "scedil" => [0x0015F],
  "scirc" => [0x0015D],
  "scnE" => [0x02AB6],
  "scnap" => [0x02ABA],
  "scnsim" => [0x022E9],
  "scpolint" => [0x02A13],
  "scsim" => [0x0227F],
  "scy" => [0x00441],
  "sdot" => [0x022C5],
  "sdotb" => [0x022A1],
  "sdote" => [0x02A66],
  "seArr" => [0x021D8],
  "searhk" => [0x02925],
  "searr" => [0x02198],
  "searrow" => [0x02198],
  "sect" => [0x000A7],
  "semi" => [0x0003B],
  "seswar" => [0x02929],
  "setminus" => [0x02216],
  "setmn" => [0x02216],
  "sext" => [0x02736],
  "sfr" => [0x1D530],
  "sfrown" => [0x02322],
  "sharp" => [0x0266F],
  "shchcy" => [0x00449],
  "shcy" => [0x00448],
  "shortmid" => [0x02223],
  "shortparallel" => [0x02225],
  "shy" => [0x000AD],
  "sigma" => [0x003C3],
  "sigmaf" => [0x003C2],
  "sigmav" => [0x003C2],
  "sim" => [0x0223C],
  "simdot" => [0x02A6A],
  "sime" => [0x02243],
  "simeq" => [0x02243],
  "simg" => [0x02A9E],
  "simgE" => [0x02AA0],
  "siml" => [0x02A9D],
  "simlE" => [0x02A9F],
  "simne" => [0x02246],
  "simplus" => [0x02A24],
  "simrarr" => [0x02972],
  "slarr" => [0x02190],
  "smallsetminus" => [0x02216],
  "smashp" => [0x02A33],
  "smeparsl" => [0x029E4],
  "smid" => [0x02223],
  "smile" => [0x02323],
  "smt" => [0x02AAA],
  "smte" => [0x02AAC],
  "smtes" => [0x02AAC, 0x0FE00],
  "softcy" => [0x0044C],
  "sol" => [0x0002F],
  "solb" => [0x029C4],
  "solbar" => [0x0233F],
  "sopf" => [0x1D564],
  "spades" => [0x02660],
  "spadesuit" => [0x02660],
  "spar" => [0x02225],
  "sqcap" => [0x02293],
  "sqcaps" => [0x02293, 0x0FE00],
  "sqcup" => [0x02294],
  "sqcups" => [0x02294, 0x0FE00],
  "sqsub" => [0x0228F],
  "sqsube" => [0x02291],
  "sqsubset" => [0x0228F],
  "sqsubseteq" => [0x02291],
  "sqsup" => [0x02290],
  "sqsupe" => [0x02292],
  "sqsupset" => [0x02290],
  "sqsupseteq" => [0x02292],
  "squ" => [0x025A1],
  "square" => [0x025A1],
  "squarf" => [0x025AA],
  "squf" => [0x025AA],
  "srarr" => [0x02192],
  "sscr" => [0x1D4C8],
  "ssetmn" => [0x02216],
  "ssmile" => [0x02323],
  "sstarf" => [0x022C6],
  "star" => [0x02606],
  "starf" => [0x02605],
  "straightepsilon" => [0x003F5],
  "straightphi" => [0x003D5],
  "strns" => [0x000AF],
  "sub" => [0x02282],
  "subE" => [0x02AC5],
  "subdot" => [0x02ABD],
  "sube" => [0x02286],
  "subedot" => [0x02AC3],
  "submult" => [0x02AC1],
  "subnE" => [0x02ACB],
  "subne" => [0x0228A],
  "subplus" => [0x02ABF],
  "subrarr" => [0x02979],
  "subset" => [0x02282],
  "subseteq" => [0x02286],
  "subseteqq" => [0x02AC5],
  "subsetneq" => [0x0228A],
  "subsetneqq" => [0x02ACB],
  "subsim" => [0x02AC7],
  "subsub" => [0x02AD5],
  "subsup" => [0x02AD3],
  "succ" => [0x0227B],
  "succapprox" => [0x02AB8],
  "succcurlyeq" => [0x0227D],
  "succeq" => [0x02AB0],
  "succnapprox" => [0x02ABA],
  "succneqq" => [0x02AB6],
  "succnsim" => [0x022E9],
  "succsim" => [0x0227F],
  "sum" => [0x02211],
  "sung" => [0x0266A],
  "sup" => [0x02283],
  "sup1" => [0x000B9],
  "sup2" => [0x000B2],
  "sup3" => [0x000B3],
  "supE" => [0x02AC6],
  "supdot" => [0x02ABE],
  "supdsub" => [0x02AD8],
  "supe" => [0x02287],
  "supedot" => [0x02AC4],
  "suphsol" => [0x027C9],
  "suphsub" => [0x02AD7],
  "suplarr" => [0x0297B],
  "supmult" => [0x02AC2],
  "supnE" => [0x02ACC],
  "supne" => [0x0228B],
  "supplus" => [0x02AC0],
  "supset" => [0x02283],
  "supseteq" => [0x02287],
  "supseteqq" => [0x02AC6],
  "supsetneq" => [0x0228B],
  "supsetneqq" => [0x02ACC],
  "supsim" => [0x02AC8],
  "supsub" => [0x02AD4],
  "supsup" => [0x02AD6],
  "swArr" => [0x021D9],
  "swarhk" => [0x02926],
  "swarr" => [0x02199],
  "swarrow" => [0x02199],
  "swnwar" => [0x0292A],
  "szlig" => [0x000DF],
  "target" => [0x02316],
  "tau" => [0x003C4],
  "tbrk" => [0x023B4],
  "tcaron" => [0x00165],
  "tcedil" => [0x00163],
  "tcy" => [0x00442],
  "tdot" => [0x020DB],
  "telrec" => [0x02315],
  "tfr" => [0x1D531],
  "there4" => [0x02234],
  "therefore" => [0x02234],
  "theta" => [0x003B8],
  "thetasym" => [0x003D1],
  "thetav" => [0x003D1],
  "thickapprox" => [0x02248],
  "thicksim" => [0x0223C],
  "thinsp" => [0x02009],
  "thkap" => [0x02248],
  "thksim" => [0x0223C],
  "thorn" => [0x000FE],
  "tilde" => [0x002DC],
  "times" => [0x000D7],
  "timesb" => [0x022A0],
  "timesbar" => [0x02A31],
  "timesd" => [0x02A30],
  "tint" => [0x0222D],
  "toea" => [0x02928],
  "top" => [0x022A4],
  "topbot" => [0x02336],
  "topcir" => [0x02AF1],
  "topf" => [0x1D565],
  "topfork" => [0x02ADA],
  "tosa" => [0x02929],
  "tprime" => [0x02034],
  "trade" => [0x02122],
  "triangle" => [0x025B5],
  "triangledown" => [0x025BF],
  "triangleleft" => [0x025C3],
  "trianglelefteq" => [0x022B4],
  "triangleq" => [0x0225C],
  "triangleright" => [0x025B9],
  "trianglerighteq" => [0x022B5],
  "tridot" => [0x025EC],
  "trie" => [0x0225C],
  "triminus" => [0x02A3A],
  "triplus" => [0x02A39],
  "trisb" => [0x029CD],
  "tritime" => [0x02A3B],
  "trpezium" => [0x023E2],
  "tscr" => [0x1D4C9],
  "tscy" => [0x00446],
  "tshcy" => [0x0045B],
  "tstrok" => [0x00167],
  "twixt" => [0x0226C],
  "twoheadleftarrow" => [0x0219E],
  "twoheadrightarrow" => [0x021A0],
  "uArr" => [0x021D1],
  "uHar" => [0x02963],
  "uacute" => [0x000FA],
  "uarr" => [0x02191],
  "ubrcy" => [0x0045E],
  "ubreve" => [0x0016D],
  "ucirc" => [0x000FB],
  "ucy" => [0x00443],
  "udarr" => [0x021C5],
  "udblac" => [0x00171],
  "udhar" => [0x0296E],
  "ufisht" => [0x0297E],
  "ufr" => [0x1D532],
  "ugrave" => [0x000F9],
  "uharl" => [0x021BF],
  "uharr" => [0x021BE],
  "uhblk" => [0x02580],
  "ulcorn" => [0x0231C],
  "ulcorner" => [0x0231C],
  "ulcrop" => [0x0230F],
  "ultri" => [0x025F8],
  "umacr" => [0x0016B],
  "uml" => [0x000A8],
  "uogon" => [0x00173],
  "uopf" => [0x1D566],
  "uparrow" => [0x02191],
  "updownarrow" => [0x02195],
  "upharpoonleft" => [0x021BF],
  "upharpoonright" => [0x021BE],
  "uplus" => [0x0228E],
  "upsi" => [0x003C5],
  "upsih" => [0x003D2],
  "upsilon" => [0x003C5],
  "upuparrows" => [0x021C8],
  "urcorn" => [0x0231D],
  "urcorner" => [0x0231D],
  "urcrop" => [0x0230E],
  "uring" => [0x0016F],
  "urtri" => [0x025F9],
  "uscr" => [0x1D4CA],
  "utdot" => [0x022F0],
  "utilde" => [0x00169],
  "utri" => [0x025B5],
  "utrif" => [0x025B4],
  "uuarr" => [0x021C8],
  "uuml" => [0x000FC],
  "uwangle" => [0x029A7],
  "vArr" => [0x021D5],
  "vBar" => [0x02AE8],
  "vBarv" => [0x02AE9],
  "vDash" => [0x022A8],
  "vangrt" => [0x0299C],
  "varepsilon" => [0x003F5],
  "varkappa" => [0x003F0],
  "varnothing" => [0x02205],
  "varphi" => [0x003D5],
  "varpi" => [0x003D6],
  "varpropto" => [0x0221D],
  "varr" => [0x02195],
  "varrho" => [0x003F1],
  "varsigma" => [0x003C2],
  "varsubsetneq" => [0x0228A, 0x0FE00],
  "varsubsetneqq" => [0x02ACB, 0x0FE00],
  "varsupsetneq" => [0x0228B, 0x0FE00],
  "varsupsetneqq" => [0x02ACC, 0x0FE00],
  "vartheta" => [0x003D1],
  "vartriangleleft" => [0x022B2],
  "vartriangleright" => [0x022B3],
  "vcy" => [0x00432],
  "vdash" => [0x022A2],
  "vee" => [0x02228],
  "veebar" => [0x022BB],
  "veeeq" => [0x0225A],
  "vellip" => [0x022EE],
  "verbar" => [0x0007C],
  "vert" => [0x0007C],
  "vfr" => [0x1D533],
  "vltri" => [0x022B2],
  "vnsub" => [0x02282, 0x020D2],
  "vnsup" => [0x02283, 0x020D2],
  "vopf" => [0x1D567],
  "vprop" => [0x0221D],
  "vrtri" => [0x022B3],
  "vscr" => [0x1D4CB],
  "vsubnE" => [0x02ACB, 0x0FE00],
  "vsubne" => [0x0228A, 0x0FE00],
  "vsupnE" => [0x02ACC, 0x0FE00],
  "vsupne" => [0x0228B, 0x0FE00],
  "vzigzag" => [0x0299A],
  "wcirc" => [0x00175],
  "wedbar" => [0x02A5F],
  "wedge" => [0x02227],
  "wedgeq" => [0x02259],
  "weierp" => [0x02118],
  "wfr" => [0x1D534],
  "wopf" => [0x1D568],
  "wp" => [0x02118],
  "wr" => [0x02240],
  "wreath" => [0x02240],
  "wscr" => [0x1D4CC],
  "xcap" => [0x022C2],
  "xcirc" => [0x025EF],
  "xcup" => [0x022C3],
  "xdtri" => [0x025BD],
  "xfr" => [0x1D535],
  "xhArr" => [0x027FA],
  "xharr" => [0x027F7],
  "xi" => [0x003BE],
  "xlArr" => [0x027F8],
  "xlarr" => [0x027F5],
  "xmap" => [0x027FC],
  "xnis" => [0x022FB],
  "xodot" => [0x02A00],
  "xopf" => [0x1D569],
  "xoplus" => [0x02A01],
  "xotime" => [0x02A02],
  "xrArr" => [0x027F9],
  "xrarr" => [0x027F6],
  "xscr" => [0x1D4CD],
  "xsqcup" => [0x02A06],
  "xuplus" => [0x02A04],
  "xutri" => [0x025B3],
  "xvee" => [0x022C1],
  "xwedge" => [0x022C0],
  "yacute" => [0x000FD],
  "yacy" => [0x0044F],
  "ycirc" => [0x00177],
  "ycy" => [0x0044B],
  "yen" => [0x000A5],
  "yfr" => [0x1D536],
  "yicy" => [0x00457],
  "yopf" => [0x1D56A],
  "yscr" => [0x1D4CE],
  "yucy" => [0x0044E],
  "yuml" => [0x000FF],
  "zacute" => [0x0017A],
  "zcaron" => [0x0017E],
  "zcy" => [0x00437],
  "zdot" => [0x0017C],
  "zeetrf" => [0x02128],
  "zeta" => [0x003B6],
  "zfr" => [0x1D537],
  "zhcy" => [0x00436],
  "zigrarr" => [0x021DD],
  "zopf" => [0x1D56B],
  "zscr" => [0x1D4CF],
  "zwj" => [0x0200D],
  "zwnj" => [0x0200C],
}

PKCH[c��7��0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/comment.rbnu�[���# frozen_string_literal: true
##
# A comment holds the text comment for a RDoc::CodeObject and provides a
# unified way of cleaning it up and parsing it into an RDoc::Markup::Document.
#
# Each comment may have a different markup format set by #format=.  By default
# 'rdoc' is used.  The :markup: directive tells RDoc which format to use.
#
# See RDoc::Markup@Other+directives for instructions on adding an alternate
# format.

class RDoc::Comment

  include RDoc::Text

  ##
  # The format of this comment.  Defaults to RDoc::Markup

  attr_reader :format

  ##
  # The RDoc::TopLevel this comment was found in

  attr_accessor :location

  ##
  # Line where this Comment was written

  attr_accessor :line

  ##
  # For duck-typing when merging classes at load time

  alias file location # :nodoc:

  ##
  # The text for this comment

  attr_reader :text

  ##
  # Alias for text

  alias to_s text

  ##
  # Overrides the content returned by #parse.  Use when there is no #text
  # source for this comment

  attr_writer   :document

  ##
  # Creates a new comment with +text+ that is found in the RDoc::TopLevel
  # +location+.

  def initialize text = nil, location = nil, language = nil
    @location = location
    @text     = text.nil? ? nil : text.dup
    @language = language

    @document   = nil
    @format     = 'rdoc'
    @normalized = false
  end

  ##
  #--
  # TODO deep copy @document

  def initialize_copy copy # :nodoc:
    @text = copy.text.dup
  end

  def == other # :nodoc:
    self.class === other and
      other.text == @text and other.location == @location
  end

  ##
  # Look for a 'call-seq' in the comment to override the normal parameter
  # handling.  The :call-seq: is indented from the baseline.  All lines of the
  # same indentation level and prefix are consumed.
  #
  # For example, all of the following will be used as the :call-seq:
  #
  #   # :call-seq:
  #   #   ARGF.readlines(sep=$/)     -> array
  #   #   ARGF.readlines(limit)      -> array
  #   #   ARGF.readlines(sep, limit) -> array
  #   #
  #   #   ARGF.to_a(sep=$/)     -> array
  #   #   ARGF.to_a(limit)      -> array
  #   #   ARGF.to_a(sep, limit) -> array

  def extract_call_seq method
    # we must handle situations like the above followed by an unindented first
    # comment.  The difficulty is to make sure not to match lines starting
    # with ARGF at the same indent, but that are after the first description
    # paragraph.
    if @text =~ /^\s*:?call-seq:(.*?(?:\S).*?)^\s*$/m then
      all_start, all_stop = $~.offset(0)
      seq_start, seq_stop = $~.offset(1)

      # we get the following lines that start with the leading word at the
      # same indent, even if they have blank lines before
      if $1 =~ /(^\s*\n)+^(\s*\w+)/m then
        leading = $2 # ' *    ARGF' in the example above
        re = %r%
          \A(
             (^\s*\n)+
             (^#{Regexp.escape leading}.*?\n)+
            )+
          ^\s*$
        %xm

        if @text[seq_stop..-1] =~ re then
          all_stop = seq_stop + $~.offset(0).last
          seq_stop = seq_stop + $~.offset(1).last
        end
      end

      seq = @text[seq_start..seq_stop]
      seq.gsub!(/^\s*(\S|\n)/m, '\1')
      @text.slice! all_start...all_stop

      method.call_seq = seq.chomp

    else
      regexp = /^\s*:?call-seq:(.*?)(^\s*$|\z)/m
      if regexp =~ @text then
        @text = @text.sub(regexp, '')
        seq = $1
        seq.gsub!(/^\s*/, '')
        method.call_seq = seq
      end
    end

    method
  end

  ##
  # A comment is empty if its text String is empty.

  def empty?
    @text.empty?
  end

  ##
  # HACK dubious

  def encode! encoding
    # TODO: Remove this condition after Ruby 2.2 EOL
    if RUBY_VERSION < '2.3.0'
      @text = @text.force_encoding encoding
    else
      @text = String.new @text, encoding: encoding
    end
    self
  end

  ##
  # Sets the format of this comment and resets any parsed document

  def format= format
    @format = format
    @document = nil
  end

  def inspect # :nodoc:
    location = @location ? @location.relative_name : '(unknown)'

    "#<%s:%x %s %p>" % [self.class, object_id, location, @text]
  end

  ##
  # Normalizes the text.  See RDoc::Text#normalize_comment for details

  def normalize
    return self unless @text
    return self if @normalized # TODO eliminate duplicate normalization

    @text = normalize_comment @text

    @normalized = true

    self
  end

  ##
  # Was this text normalized?

  def normalized? # :nodoc:
    @normalized
  end

  ##
  # Parses the comment into an RDoc::Markup::Document.  The parsed document is
  # cached until the text is changed.

  def parse
    return @document if @document

    @document = super @text, @format
    @document.file = @location
    @document
  end

  ##
  # Removes private sections from this comment.  Private sections are flush to
  # the comment marker and start with <tt>--</tt> and end with <tt>++</tt>.
  # For C-style comments, a private marker may not start at the opening of the
  # comment.
  #
  #   /*
  #    *--
  #    * private
  #    *++
  #    * public
  #    */

  def remove_private
    # Workaround for gsub encoding for Ruby 1.9.2 and earlier
    empty = ''
    empty = RDoc::Encoding.change_encoding empty, @text.encoding

    @text = @text.gsub(%r%^\s*([#*]?)--.*?^\s*(\1)\+\+\n?%m, empty)
    @text = @text.sub(%r%^\s*[#*]?--.*%m, '')
  end

  ##
  # Replaces this comment's text with +text+ and resets the parsed document.
  #
  # An error is raised if the comment contains a document but no text.

  def text= text
    raise RDoc::Error, 'replacing document-only comment is not allowed' if
      @text.nil? and @document

    @document = nil
    @text = text.nil? ? nil : text.dup
  end

  ##
  # Returns true if this comment is in TomDoc format.

  def tomdoc?
    @format == 'tomdoc'
  end

end
PKCH[��MM7share/gems/gems/ruby-lsapi-5.6/scripts/lsruby_runner.rbnuȯ��#!/opt/alt/ruby27/bin/ruby

require 'lsapi'

class CodeCache
    def [](filename)
		mtime = File.mtime( filename )		
		
		entry = @cache[filename];
		if entry != nil 
			return entry
						
		end
		code = compile(filename)
		#entry = CodeEntry.new( filename, mtime, code )
		@cache[filename] = code
		return code
    end

    private

    def initialize
      @cache = {}
    end

    def compile(filename)
		open(filename) do |f|
			s = f.read
			s.untaint
			binding = eval_string_wrap("binding")
			return eval(format("Proc.new {\n%s\n}", s), binding, filename, 0)
		end
    end
end


$count = 0;

$cache = CodeCache.new


while true
	$req = LSAPI.accept 
	break if $req == nil 
	
	filename = ENV['SCRIPT_FILENAME']
	filename.untaint

	filename =~ %r{^(\/.*?)\/*([^\/]+)$}
	path   = $1
	Dir.chdir( path )
	#load( filename, true )	
    code = $cache[filename]
    code.call
	
end

class CodeEntry
	public :path, :name, :mtime, :opcode 
	
	def initizlize( filename, mtime, opcode )
		filename =~ %r{^(\/.*?)\/*([^\/]+)$}
		@path   = $1
		@name   = $2
		@mtime  = mtime
		@opcode = opcode
	end

end


PKCH[j����3�31share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapi.sonuȯ��ELF>�S@@,@8	@�� PP!P!�� h
h
!h
!��888$$������  S�td������  P�tdp�p�p���Q�tdR�tdPP!P!��GNU�@�NfA�-�I�?h�\�^C�	H�‚3@(�L�`���q�CS�l����P*�f�R�������������������������������������������������n�}�'3qѮl>�&��Sɶ��
���ܮʼnSO��`��[is�|&߱R����D�/y7ř����k���Պ e�Y����&09=��By:%/�=��ejO�z�J�6�'��l#mNU�L�C�B�1�{�!�\�$�O#W��2�3S=ap��b�U�0��6�������aD7�jp#�7����ĴDI���Ί=\���4y�ݾCE���к�Q��u���o��	��r�SѮ����Io���|q%h6	󝵛���'
���=��qX�[�u��	� �f�� �	���!
�y��sO��[	��|

����[�7	P	+	���k�	�&����!\
�	2LRT	s��
�? +	q	ux	>A	���	��#	-r
cH�	�
".�/	�
"�
"$7x��	n,
�9
�
����A��	9��4�, �2(	��F"��X�f	E
��
L
rP��G���{F��pDЃ�
��K����
5�ti~@�� ��z�!	b`��.��8!���]0�Z\�e�n��v��1��p
Y���`�o�@���и�@rl��yjU�@|�� �-��q]���	��m��pYn���5@��oPw$��}l!�sUpT
E0u��qS��m7��mT0�(����p��������{F�0qJ�Ѝp@!��|�I�����`��!b �gP���@�@$�'!p�l��6 n�����P�@!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizecompareValueLocationset_skip_writesigactionsigemptyset__stack_chk_failreallocfcntlacceptsetsockoptmmapmemsetsetsidread__errno_locationclosewritevkillgetppid__ctype_b_locstrncpystrchrstrcasecmpstrtolgetaddrinfomemcpyfreeaddrinfoinet_addrLSAPI_Log__vfprintf_chk__snprintf_chkgetuid__fprintf_chkgettimeofdaylocaltime_rwaitpidforksystemexitlsapi_perrorstrerrorLSAPI_is_suEXEC_DaemonLSAPI_StopLSAPI_IsRunningLSAPI_Register_Pgrp_Timer_CallbackLSAPI_InitRequestmallocgetpeernamedup2LSAPI_Initgeteuidsignalg_reqdlopendlsymLSAPI_Is_Listen_rLSAPI_Is_ListenLSAPI_Reset_rLSAPI_Release_rfreeLSAPI_GetHeader_rLSAPI_ReqBodyGetChar_rLSAPI_ReqBodyGetLine_rmemchrmemmoveLSAPI_ReadReqBody_rFlush_RespBuf_rLSAPI_GetEnv_rstrcmp__ctype_toupper_locLSAPI_ForeachOrgHeader_rqsortLSAPI_ForeachHeader_rLSAPI_ForeachEnv_rLSAPI_ForeachSpecialEnv_rLSAPI_FinalizeRespHeaders_rLSAPI_Flush_rLSAPI_Write_Stderr_rgetpidgetcwdmemccpy__realpath_chkLSAPI_Finish_rLSAPI_End_Response_rLSAPI_Write_rLSAPI_sendfile_rsendfileLSAPI_AppendRespHeader2_rstrlenLSAPI_AppendRespHeader_rLSAPI_CreateListenSock2socketbindlistenunlinkLSAPI_ParseSockAddrLSAPI_CreateListenSockLSAPI_Init_Prefork_ServercallocsetpgidsysconfLSAPI_Set_Server_fdLSAPI_reset_server_stateis_enough_free_memLSAPI_Postfork_ChildLSAPI_Postfork_ParenttimeLSAPI_Accept_Before_Fork__fdelt_chkusleepsched_yieldLSAPI_Set_Max_ReqsLSAPI_Set_Max_IdleLSAPI_Set_Max_ChildrenLSAPI_Set_Extra_ChildrenLSAPI_Set_Max_Process_TimeLSAPI_Set_Max_Idle_ChildrenLSAPI_Set_Server_Max_Idle_SecsLSAPI_Set_Slow_Req_MsecsLSAPI_Get_Slow_Req_MsecsLSAPI_No_Check_ppidLSAPI_Get_ppidLSAPI_Init_Env_Parametersgetenvgetpwnamdlerrorsetrlimit__fxstatsetreuidLSAPI_ErrResponse_rlsapi_MD5Initlsapi_MD5Updatelsapi_MD5FinalgetpwuidsetgidsetgroupssetuidstrtollprctlinitgroupsLSAPI_Accept_rLSAPI_Prefork_Accept_rsigaddsetsigprocmaskLSAPI_Set_Restored_Parent_PidLSAPI_Inc_Req_Processedselectrb_str_newrb_hash_asetrb_funcallvrb_intern2rb_gc_markmunmaprb_check_typerb_obj_as_stringrb_f_sprintfs_fn_add_envrb_string_valuerb_string_value_ptrrb_eval_string_wraprb_str_new_staticrb_ruby_verbose_ptrrb_define_global_construby_strdupmkstempftruncaterb_str_buf_newrb_str_catrb_num2intrb_fix2intmemmemrb_yieldrb_gc_writebarrier_unprotectrb_io_putsrb_ary_detransientrb_exec_recursiverb_default_rsrb_output_fsrb_output_rsrb_lastline_getInit_lsapichdirrb_stderrrb_cObjectrb_const_getrb_global_variablerb_define_classrb_data_object_zallocrb_stdoutrb_stdinrb_hash_new__memcpy_chkrb_define_global_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6__environ_edata__bss_start_endGLIBC_2.14GLIBC_2.15GLIBC_2.4GLIBC_2.3.4GLIBC_2.2.5GLIBC_2.3/opt/alt/ruby27/lib64�
���)���4ii
?ti	Iui	Uii
aP!@TX!T`!`!�!���!��!A��!��!��!#��!)��!.��!4��!;��!J��!Z��!j��!x��!���!��!��!��!��!�� !��(!��0!��8!��@!��H!��P!�X!
�`!!�h!�p!,�x!<��!@��!R��!^��!r��!���!���!���!���!���!���!���!���!��
!
�
!�
!'�
!:� 
!Q�(
!_�0
!r�8
!��@
!��H
!��P
!��X
!��`
!���!���!���!���!��!�!!$#!8!��X!`!h!p!�x!��!��!!�!2�!��!<�!H�!J�!R�!V!V�!W�!��!��!m�!{�!��!�! !�(!0!8!�@!H!P!X!`!�h!p!	x!
�!�!�!
�!�!��!�!�!�!��!��!�!�!�!�!�!!!�!! !�(!�0!�8!@!H!�P!X! `!"h!#p!�x!$�!%�!&�!��!'�!(�!��!)�!��!��!��!*�!+�!,�!-�!��!�!�!�!.!/ !0(!�0!18!�@!�H!3P!4X!5`!6h!7p!8x!9�!;�!=�!>�!?�!@�!��!A�!B�!C�!D�!E�!F�!��!G�!��!I!K!L!M!N !O(!�0!P8!Q@!�H!SP!�X!T`!Uh!Xp!Yx!Z�![�!\�!]�!^�!��!_�!`�!��!a�!b�!c�!d�!e�!f�!g�!h!i!�!j!k !l(!�0!�8!n@!oH!pP!qX!r`!�h!sp!tx!u�!w�!x�!y�!z�!|�!��!}�!~�!�!��!��!��!��!��!��!�!�!�!�!� !�(!�0!�8!�@!�H!�P!���H��H�9� H��t��H����5�� �%�� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q�������%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%� D���%� D���%� D���%� DH�=�� H��� H9�tH��� H��t	�����H�=y� H�5r� H)�H��H��H��?H�H�tH��� H��t��fD�����=5� u+UH�=ڻ H��tH�=>� ����d����
� ]������w�������ff.����^� Ð��H�GH+F�Hc�AVI��H�@AUATL�$�USH��tQH��H��tIH��I��L9�r�0H��I9�v'�KH�SM��sH�;�Յ��[]A\A]A^��[D��]A\A]A^ø������ff.�f����=n� �D���� Ð��OAWD�D�_AVAUATUSD�6�^�nA��x�j׋G3GD!�3G��V���\$�ЋW�^$��D�D1��\$�!�3WA��ʋN��F���p $E��‰L$�A1�A1�D��D�^!�D1�G��;�ν�D�\$�D�E��D�V���D�T$�A!�A1�E�E���|���A��
1�A�D!�E��1�D�D��*ƇG���D1�D�!�A��1�A1�D�D�N���D�L$�E��	F0�D��!�D�nA1�D1�D�G���F�E��D�f ���D�d$�D�^(A!�A1�E�E��ؘ�i��A��
1�A�D!�1�D�D����D��ʋ^0��D1�D�!�A��1�D�E���[��D����1��!�D1�D�D�N,��A1��D�L$�G����\�E��A!�D�f8A1�E�D��"�k��A��
1�A�D!�1�D�D�N4��E���q����D�D1�!�1�D�E���Cy�D����1��!�D1�D�D�V<���1��G��!�I!�1�D�D�D$��
�E��b%���1�!�1�D�D�D$��E��@�@���1�!�1�D�D�D$���	�E��QZ^&��1�!�1�D�E��6�Ƕ����1�!�1�D�D��]/։���1�!�1�D�E��SD���1�!�1�D�E��
��؉���	�1�!�1�D�D�D$��E��0����1�!�1�D�D�D$���E�����!��1�!�1�D�E���7É��1�!�1�D�D�D$��	�E���
��1�!�1�D�D�D$��A��0�ZEA��A1�A!�A1�A�A���㩉�A��A�D1�!�1��t$�D������D��1�!�A��
�ogD1����	�1�D!�F���L*�1�D�D$�Ή���1�A��A!���B9��A1�DD$�A��A�D1���D$�����q���D�D1�1�‹D$�����0"a�mD���1�G��8�1�Ɖ��1��1�D�D�D$��	E��D꾤���1�1�D�D�D$�A�����KA���A1�A��5`K��A1�AЉ�A��p���A��1�A�D1����D1�D�1��A��	�~�(D����	1�G���'���1�����1��1�D�D�D$�A���0��A���A1�A1�AЋT$�A����2���A�1�D1�֋T$��	��
9��ى�D�D1����1��D�����1�1��C���|�A��A1��A1�A��D$�A����0eV�ĉ�A�1�D1��A��D")��D�t$��	��D�	�D1��A��
��*CD������G���#���	�1����
���	�1�D�D��9��������Ή��	��1�D�D���Y[e��\$���	�1�D�E�������D�t$�����	щ�1���D�E��3}���D�\$�
���	�1�D�D�D$���E���]����	�1�D�E��O~�oA���A���D��	�1�D�E��
��,���D�T$�����	�A��1�A��D�E��6C���D�t$���
��A���N�	�1�A���~S�A��D�E��A����A	�A1�A��5�:�A�D��A��A�D	�1�Љ�3���*�\$���D�	�D1��D��F���ӆ�[��
��]A\�A]A^	�1������։�	�1�DƉ�A�4A_���OW�G�O�W��ATI��1�U��SH��dH�%(H��$�1�H��H�����H�<$t)H��$�dH3%(u<H�Ġ[]A\�f.�H�{��1�H�މ�DŽ$�L�$$�����DH�
i� H�A(H�Q8H9�s;8u�fD98tH��0H9�w�1�Å�tH�P0H;Q0v�H�Q0�Df�H�@$@@�@,�������DUHc�SH��H��H��H�@��H��t#H�SPH�H+S@H�C@H�H�SPH�CH1�H��[]ø������f�U1҉�1�S���H�������t��t/H��1�[]�fD��t��H���‰߾[1�]��f�����ff.�SH��dH�%(H��$�1�H�T$H�t$�D$�D$��F�Ã��tf�|$t'H��$�dH3%(��u0H�Ġ[�f�H�L$A���Ǿ�������ff.�f��� ��Hc�H�vL��H�L9���H��H)�H����S�Nf.�E��������L�I؃�H��L�G�L�E�C�H�D�G��w�I9�thH��H)�H��~SH�pH�2H�pD�H�2H�pD�XH�2�pA��E�L�@��L�Ic�A���pD�Hc�L�M�L9��i��������[�f��0��u�H��[H�1�ø����Ë��u�H��H�1��f�AVAUE1�ATUH�-�� SH�}(t[D��]A\A]A^��EEA������!Lc�@���D��
 DI�E1�1�A���Mc�L����H��H���t]L��1�H����K�vH�](H��H�]0H�H�]8H�CH��� H�{� H�CH��H�l� H�m� ��[D��]A\A]A^�H�=EpA�����1����H���H���H+��Hcp�G )�H����H��xsH9�AVHN�AUATUI��SHwH��D�wH���L��H��D����I��H���u!���8u
�}� ��u�D��[]A\A]A^ÐH��~���[]A\A]A^ø�����fDUSH������tMH����������u�O��8u
� � ��u�H�Y� �E����H��t�(H�z� H��t�@��H��[]�ff.�@AWAVAUATUSH��������� ��t8A��A��I����A��f�I�7D����S��Å�-���tx��� ��u�D��D)�H����[]A\A]A^A_��A)�E��~ڋ^� ��t�I��f�H��)�I���~�H�PHc�H9�v�HI�H)H�x�����;����t���s����E)�E��AO��r���1��k���S�U� ��t-�=G� ��t+1��t����u���[�8������1�[�@��9�[����ÐAVAUATUH��SH��H��PdH�%(H��$H1����H��
fDH��H��DB u�L�d$@��H��L�����D$@Ƅ$?</tc<[����:L��f�E�e�H������|$@*H�X�zH�5;mL�����A�ƅ��;�EM�����H�}�lf�uL����1�H��$HdH3%(�QH��P[]A\A]A^�D�
M�l$�]f�ML����H�����|$A*H�XA���1��;:�
��1�H�H���2�H�Í@�=����E��uf��1�f�]�Y���D�Ef�1�H�T$)D$H�L$L��D$H�)D$ )D$0H�D$�J���upL�d$H��A�T$I�t$���L���'��L��E1�M���������EA���<�����EE1�M���"����::A�D$M��fA�$�
������������'����AUI��ATU��SH��(H��$�H��$�L��$�L��$���t@)�$�)�$�)�$�)�$�)�$�)�$�)�$)�$dH�%(H��$h1����t�=ͼ ���ML�d$`L��@��@��u��������L9���H��� H�;H�L$HL��H��$P�D$HH�D$PH��$p�D$L0H�D$X�8�H��$hdH3%(��H��([]A\A]�H��� H��L�QjH�����L�¾d1���s�H�HÁ��K����- � ��H��H�ߺUA��L�j�dH�����1��-�H�H�XZL9�����H��H��� M��1�L)�H��i�H�;�����f�H��1�L�d$`H����H�t$H������uI��������D$�L��L�Wi�P�D$PD�L$(1���Y^Hc�L��L����H�D$L��o�L���P�D$P�D$$P�D$0P�D$<P�D$H��P�D$TD��l1��3�H��0Hc�L�����_�ff.�@��AWAVAUATUSH��(dH�%(H�D$1�H�=�� �.�D$�H�l$L�5�hL�-�hL�%do@�H�������A�Dž����T$�Ѓ���<~$��M��L������D��ME�1���D;=� t�D;=�� tUD�����H��H��t�H�H1����@�1@�Ɖ�@����H�¹ H��t�(H�"� ��h�K����F� �����9����H�5�� H�N0H�V(H9�s*D�A�H�A�E��t�DH��0�8��u.H��H9�r�H�F0H�D$dH3%(uH��([]A\A]A^A_�H�N0������D$�@�1�D$�X���H�� H���D����C���ff.��AWAVAUATUH��SH��H��(�=� dH�%(H��$1���t1�����thH�C(I��I��D�3L+cI)�H�C D�{H)��]��D$�D�H��E��E��AT��H�5�m�AU1�U�L$,�L�H�� �#��e� ��t)H��$dH3%(ulH��([]A\A]A^A_�@D�H�\$H���H�߹�AQL��m�T��XH��Z������t
1���fDH�=f�<����e�DAWAVAUATUSH��L�� I�Z(M�j0L9��H�|$E1�E1�E1�@��B��ve�CA�l$����A�BD)�A;B�E9r�
��� ��~ H�SH�L$��H�H)�H9���fD�CA��f��A��H��0I9�w�A�R��D)���1�)ȃ��H��[]A\A]A^A_�fDH�C H�t$H)�IcBH9����C��i�gf��f����)���f9�u��� �����Cf��~pH�5�l�1��m��;�	������tp�CA��L�͵ A��f�C�5���fD�C��f�C�����A�������H�5�l�1����;��a����u������8u��L�U� ����H��E��E��D��[H�5cl]�A\1�A]A^A_��fDH�t$H����������@E1�E1�E1��z���f.���UH����S��H�����H����H��I��[H�5�c�1�]�9�f����� 1���u1��=�� ������ΰ Ð���° �D��H�=�� �@��ATUSH��dH�%(H��$�1�H���}H�H��H�1�HLJ	H�ى�H��H)����	���H�H�{`��I��H���0H�CxH�S`L�c`� L�H)�H�CxH�CpL�H)�H�CpI��$H�Ch���H�C8H�C(H����H I���H��H�C0H��(L�cxL�cpH����l��������twH�T$H�t$���D$�������t
����8kt0�����1��kH��$�dH3%(uiH�Ġ[]A\�fD�+����C�����C�1����1�����H�=�a��1���1����S���_���fD����������ff.����S�U� ��t	1ۉ�[��#��H�5L��
�в ��� �e�H�5>��
�T������������H�=� 1��X����tI�ٲ �t��H�=a��� �-��H���c���H�5�`H���E�H�v� ��[É��D�����1��?������H�=� �`����H�W(H�w`HLJ�H��HLJ0H���H�W�H�VH�W�H�W�H�W�H�W�H��)���81����H�����SH��H�H��t�:��H���H��t�)��H���H��t���H�{@H��t�
��1�[�fD��H��tG��wBL���Hc�A�T�4��t/Hc�A�pH���H�H€:t
�H���H���1��ff.�f���H��tP��tJSHc��H��;��}H�S�HH������[������~	Hc���и����[Ã����AWAVAUATUSH�Z�H�H��H�D$H���:�G�����H���%H����I��H���I�����I��I��L��fDA���)�Hc�H����L9�Hc�IO�IvI���
H��L������H��tML)�H��L��H�XH��H����A��I��A�$��D)��EH��[]A\A]A^A_��L��H��H��H�����A���L�|$I���I)�A���M���?����D���L���L�Hc�H��~�A����-���H��1��|���������v���@��AVAUATUSH������I����H��H����H��H����H���H+��E1�H����H9�Hc��HO؋��)�H�H��~)H9�H�wH��HN�H�H��I������E��L�L)�H��t6�E�u@H��H��D���j��H���u4����8u
�P� ��u�M��t-M��[L��]A\A]A^��H��~�I�H�H)�u���I�������D��H�O(H�W8H��LJLS���H)ʍB����H�GpH�0H�pH�@H�wp��~Hc�H�HH�� H�P�H�O8H�Gp����AWAVAUATUSH��H���H�T$H����H��H�<$�I��H�=)\�������HcB$H���H�@H�,�H9�r�Zf.�H��H9�vGH�3L���l����u�H�CH��[]A\A]A^A_�H�D$L9��I��M9���f.�1�H��[]A\A]A^A_��H�$1�L�=�� L���@A�l�4��tI�4�L����������H��H��u�H�D$HcP 1���~�H�$H��L���M�tM9�s�H���H�$I�D$H�D$@IcMIcmH,$L�|
L9��)���A�\$���)����{��H�8H�D$�'���-t	��_����H��H��I9�t�����H�U:�t������8����IcUIcEH$H€:����������H�$Hc�Hc�A�VH��H€:�������@��AVAUATUSL��$���H��H�$L9�u�H��dH�%(H��$@1�H����H��H����H���H����H��E1�L�
� L��g�f�H���Hc�HcT�4��t7�qH��M���
H��Ic�A��H��L�E��H�TD�T�tH��H��u�H���HcP ����H���H��L�L9���Ic�I��H��L��f�H��H�� I9���HcHHc0A��H���LcPI��HcHH��B�D�BH�J�HH�2�JA��u��H�
� � L������$DI��H�
�� Ic� L�����E��taE1��@A��I�� E9�~CA�MI�UI��A�uI�}�Ӆ��H��$@dH3%(u6H��@[]A\A]A^��D����1���@Ic��U����������<��ff.����AWAVAUATUSH��XH�t$ H�T$dH�%(H��$H1�H����I��H����1�E1�L�--fH��L�%Ò H��H���Hc�HcT�4��t/�HH��A��A�t�I�<�H���L�D$A�ׅ��4H��H��u�H���D�t$<HcB ���L���H��L�H�D$0I9���H�\$(L�t$@fDH�D$(A�l$Ic$A�HTTPH������A�F_L�<H�D$��O�Hcʼnl$8I�H�D$I9���M�nI��I�o�I���_@��-t�K��H���A�E�L9�u�H�D$I�D�t$8L�D$�L��IcD$IcT$HT$���H�D$ A�L$�Ѕ�~"I��L9d$0�-���H�l$(H����B D$<H��$HdH3<%(u'H��X[]A\A]A^A_�DI�F�v�������������ff.���H��t7H��t2H���D�@$1�E����H���H��H��D�����������f.���H��t7H��t2H���D�@(1�E����H���H��H��D���S��������f.���H����H�O`H��tz����Ѓ�tr��L�G@������H�WPL9�vH�wpL)��L�H��H�V�H�wpHc�0H�T�H�Q�����,H��(LJ(LSH�1�H�Oxø�����f.���H����H�GpH+GxH�������G�����SH�������H�C(H9C8tH���@��H�SpH+Sx1�H����~J�
إ �����u$�{H�sx����9��~H�{�������ǃ�H�S`H�SxH�Sp[�f�H�G(H9G8�c���1�������l���LJ�H�W(H�W8H�W`H�WxH�Wpø�����f���AWAVAUATUSH��XH�t$dH�%(H�D$H1�H���.H�=� ���GI�������;��H�G(H9G8t
H�$����H�$H�D$L�|$L�d$H�$H�l$ I��H��L)�H����H��@�@L�|$0HO�L�d$ �D$LS�BL�jH�T$8I׋j� �D$D��H�D$(H�l$��uA�~H�4$D����H�I9�~�I�~��H��L)�H���L��H+D$��H�t$����H�L$HdH3%(uH��X[]A\A]A^A_�H��������d��@AWAVAUATUSH��H�$H��dH�%(H��$1�H��I��I���e��H��8����H��I��H�/aHD��5��A�����AW�H��SA���1�AVL��Q�AU����H�� H��=O�Hc�M��t7L���_��1�H��$dH3%(u&H��[]A\A]A^A_���������o��ff.�@AT�~f�A��UH��SH��dH�%(H��$1�H�|$H��)$H���H�H���� ��xH��$dH3%(u?H��[]A\É�I��D��H�5)Y1��*��1�H�5�PH���i������������ff.�f�ATUSH��H�$H��H�$H��dH�%(H��$ 1���� �����?/H��H�����H������H���bH�ߋH����������!�%����t�¹�����D�H�WHD���@�H��H)��</��)�Hc�Hc�H�1�H���^��H���JL��$�H��L�����H�����H�=�OL������������AH��1��R���Ń������uRH�=ˠ H9�t
H��t�<��H��1����H��� H��$ dH34%(����H�� []A\�fD���������������n���@�C������4�����
�+����H��H�5VW1�������r����r���DH�߹����������S���fD������������H��H�5W1����������s����H��tv�����t]S��H��tC�uWH�C(H9C8tH�����H�CpH�� H��H�H��H�@����H�Cp���H�����1�[�@�����뢸�����ff.���H��������u��u1��f�S��H��tR�ubH�C(H9C8tH���`��H�CpH�U� H��H�H��H�@����H�Cp����H�{�:����������1�[��1�H�O@H9OPv�����닸��������AWAVAUATUSH��H����H���|���I�֨�,���aH��H�t$H����>��L�{8I��H�C0L)�H9��>L�t$L+{(L��A�@L��L�f�I��M)�M����K�H��@���σ��LSL�Cp�N���I�H�D���I�0H��I�@H�KpM��~H�C(M�xI�H E1�I�@H�C8H���L�1H��M�L�I�H��H�KpH9��e���H���m�����thI��L��M)�M���U���I9�t
H���I�����tDL+t$H��L��[]A\A]A^A_�DM��@�@M)��(����K��������I�������H�t$H��L������Hk8�f.���H�������������AVL��AUI��ATI��U��S���H���u\��H�߉���{��A�D$�{L��ǃLS������H��u0�{L��[L���]A\A]A^�����k������[H�����]A\A]A^�H���ff.���AWAVAUATUSH��H����H�������H����������D$����0��xI��H��I��H���
��Lc��\�CHc��T���
t��
u(��H�DLc���L�H����
t�
t�L�������~6Hc�A�T���
t��
u#��H�@��~A�L�H����
t�
t�E�<A�G=���I�|$PH�H�TI9T$Hs7H��I+t$@L������2%�)�)���������I�|$PL��H��Hc�A�����Mt$PH��L��I�FI�D$PA�:I�|$P�}��M�D$PI�I�@I�D$PA�Ic�$0fE��T8H�Ѓ�A��$0�D$H��[]A\A]A^A_��D$������ff.����H���
H����B�=����������0���AUATUSHc�H��f��D�A��<
t<
uH���؅�u�H��[]A\A]�I��H�PH��H�DI9D$Hs3H��I+t$@L������2%�)�)��������tQI�|$PH��H��A���P��I\$PH�CI�D$P�Ic�$0fE��T8H�Ѓ�A��$0H��1�[]A\A]ø�����S������D��AUATA��UH��SH���?dH�%(H�D$1��D$f����f��
t1�����f����H�L$dH3%(����H��[]A\A]ÐA�1Ҿ����Ã��tʼnǺ�1�����H�L$A��ߺ��ؿ����u#D��H����'����uD����	�����o�������߻����D� H���Z��D�e�O����A��k���DH�}A�n����}�N����c�����H��t����������ff.����U��SH��dH�%(H��$�1�H��H�������u/��H�����H��$�dH3%(uH�Ę[]����������Կ��@��1�H�=�� t������AUATA�'USH����� ��'DN�uD�������� H���@�A�����H��H�.� H����H��tH�-�� �t���ʖ �i����Ɖlj�� �J���U���D�k H�� D�cE��u<�����D�����SuG�CH�,H�C����1�H��[]A\A]�@A�|$�C�{�˸�����ك�ÉS�ff.�@��H�e� H��t�8�ff.�f���H�E� �BH�B(H�R8H9�s��H��0H9�w�H��� H��t	���H��� H��t	����fD��H�m� H�H;� �wH��H�H;�� �����ff.�@��ATUSH��H�� dH�%(H�D$1�H��� D�`���H�SX�+� ���H�kXH�-/� 肿��H�W� ����� ��� H�Ӕ H��� H��tH�� 1�1���H�-ߔ �E��H��� H��t��{1��F���8� ��uH�u� H��tA�D9 ~�� �� ��ut�;���u]H�LS�[H��H�$�CO�D$����H��߉D$�׻����� 1�H�L$dH3%(u)H�� []A\�D�K���������������t���p�����H�5� SH���@H�Xt1��/���H�SXH�BH�B�{����C����1�[���AWAVAUATUSH��HH�� H�|$H��$�L�edH�%(H��$81����H����L��DŽ$(H��$�詾��H�r� H��襺�����cH����L��DŽ$(H��$��k���H��� H���g������H�X� H���K�������H��� H��
�/�������H��� H����������H�D$1�E1�L�d$ �ʑ L�|$ǀ��D$H�� H��t	H�=� ��1�课��I��L9�t71���������L���P���C��t�S�����D$fD�V�f���H�׍ �L��H�1���H�Hc;����;M��L��H�D$H�D$�����������?)ѺH��1�H	T� 1��� �Ń���������I����8��1�H�5�� ��ݸ��1ҿH�5� �ʸ��1ҿH�5\� 跸��1ҿH�5�� 褸��1ҿ
H�5�� 葸��H��$8dH3%(���kH��H[]A\A]A^A_�fDH��� H��udD�C�S�K�
D9���H��� A�����H��tD��H�5H1��v����������ޏ M��� �������fDD�0D�CE��~�E��~����e���D�ۺ��A��u���D$�t$9��/������������D�;�)��A��H�D$D�pA���uc�Ҷ���0���k������b���H�=�>D��蟹���j���f.�H�=z>������������H�=G������	������1�1����H�\$H�CX��������������=�� �f����=�� �D��H��� H��t�x�ff.����H��� H��t��x�x����H�u� H��t��~�x����H�U� H��t��~�x����H�5� H��t�x�ff.�����=Ǝ �D����� �D����� Ð����� �D��AUATUH��H�=@=SH��8dH�%(H��$(1��m���H��tH��� �H�=� ��H�==�F���H���E1��
H��边������H�=	=����H��t�
1�H��薹����� H�=�<��H��H��t�
1�H���m���I��A��WE1�H�=�<���H��t�
1�H���<����� H�=�<蚳��H��tH�Ǻ
1�������菳��H�=�<�s���H������ H�=�<�T���H��tH�Ǻ
1������Y����������H�=�<� ���H����1��
H��蘸�����OH�=f<��H��tH�Ǻ
1��o���������H�=T<�̲��H��tH�Ǻ
1��H������1���H�=E<襲��H��tH�Ǻ
1��!��������H�=2<�~���H��tH�Ǻ
1�������ò��H�="<�W���H��t�]���H�= <�A���H��t�
1�H��轷����� ���_H�=<����H��t�
1�H��菷���� D�~� �p� �b� E����H�=�;���H�����=B� ��u	�P�5� �5+� ����H�=�;蓱��H�����
1�H��������� �…�t��� �����H��w H�H����H�H����D�Ɗ L��;L�
�;L��;�C�
H��L���������t@H�ֹL����€���D	�t%H��tAH�H��t9�H��L���������u�H��fDH�JH��H�J�H��u�H�H��u�1ۉ�H��$(dH3%(��H��8[]A\A]�fD��� H��趲���D����<G�~A��<MED�A������s���D��H�H��� �_�����������@H�=p9����H���������fDH�=�8���H����������fDA���f��@�K� �#���f��˳�����fD1�E��H�����螷��H�'v �8��������H�=�9���H��H�݈ H����H�5�9H�����H��H��� �6���H�����-�� ������H�5�9H�����H�5�9H��I��H�l� 觶��H�5�9H��蘶��H�5�9H��H�?� 肶����~H�5t9H���n���H�� H�=8� H���~A�ԅ��L���H�=-A���H�=� �Ԯ��H�� �$���@H��H�$H�D$蒵�����DH��H��$���$�������t
�ޮ��1҃8k�‰؇ ����H�=8����H��t1��
H��舳����~�v� H�=8���H��t1��
H���^�����~�H� H�=�7踭��H��H���iH�Ǻ�1�1��˵���Ã����H�T$�ƿ�/���������D$(?���H�5�� �����H�������w���H��� H��t�xc�@d�x��@�D�
�� E���9���D��� E���)����Z���f�H�=-7����^� H���K����]����
R� ��u
�D� '�:� �������(� '������� �)���f��Յ�tbH�� H���-�������DH��H�5�>�1��
������s�����������A��Hc�讲��L�%�� H��H��� �a���裮���Å�t��=�� ���@����b� ��u
�l� �5r� �������`���H��H�5�=�u���H��H�5�=�1��u�����������H��H�5�=�F���ff.����AVI��AUE��ATI��UH��SH��t��4H��u!�(fDH��H��褭��H��L����w���H�]H��u�M��tE��L������[1�]A\A]A^ÐIc�L��L����������H�#Eg����H�GH�H��ܺ�vT2H�G����AWAVA���AUI��ATUH�oSH��1�H���G�O�@�ƉWD���������W��?t;A�ĉ�D��H��H�|�@D)�A9�rhA��G�t4�L��L��D���H��L���9���A��?vWE�f�A��I��I��I�H�޺@H��H��@����H��L������L9�u�A��?D��L��H��H��[]A\A]A^A_�ܱ��I�������ATL�fUH��S�FH�����?��L�H�z���?)ƒ�w=��t1������9�r�L��H������f�CAD$AD$ I�D$0��71�)��2���H�CH��L��H�CP�?����oH�{1�H��MH�H�CPH)��KX���H�[]A\�ff.�f�AWAVAUATUSH��dH�%(H��$�1�H��t^� �I���A�����f�Mcg I�oA�_@L��H����C���H���uM�X����8u
�=)~ ��uٽ����H��$�dH3%(����
H�Ĩ[]A\A]A^A_�f���~�A��A������u���I���ALJ�f�8LS�|�x�r�@t�P�Hf�@�H�P�X���N������	M�g���A;G �ZA���9�~u���E�o)�H�Hc�I��H��L��D���2���H���u$�G����8������5} ��u�����������A��M�gA���9��I�D$,H�D$Hc�I�I���D�hA�����h(A9��}A�� �/Hc�I���H�4@H���e���H���A���I���I����h$A9��}A�� ��Hc�I���H�4@H������H����A���I���I���H�l$�p(I���L��H�����������I���I���L��p$�������hM���Ic@���o9��gIcP���[9��SIcp���G9��?IcH���39��+I�H�H�H�H�I���H�T$I���Ic@ H)�I���H��H��I���H��H�H���I���H�I���IcHI���H�H��H�D$I9���E����1�D�L�4��t9�d�<B�9�ZH��H��u�IcP ���kI���H��H�H9�r*�RP9�!�P9�P9�H��H9��-�9�~�H�5^0�1�譮��H�5�/�1���藮���>���f�H�� �"���H��� ���I�GA�G  I�������P�Hf�@	f�@
�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�Pf�@f�@f�@�H�H#�P�P �H �H'�P#�P$�H$�H+�P'�P(f�@f�@!f�@%�H(�P+f�@)I������1��
fDI���HcȋL�4��t#f�BI���H�T�4�
�rf�B@�2�JH��H��u�M���IcP ����I���H��H�H9������pH��@�p��p�H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��H�H9�w�M���A�pI����b���Ic@I���H����0�J| ALJ���t`��{ 
�{ A�������{ 1������L��Hc��ϩ��I��H������I�GA�o I����u���I���D�%�{ D�-�{ �B(A��A���1Ic�H�4II���L��I�
�9�H�qH�=-����������I�J�D�B(�9�xH�qH�=�,���������XI�J���B(��$�A�D$I���KA�zH�L$�;M�bfo{ L�t$ L���AoL$AT$M�l$)�$�踪��� L��L���8���H�L$�L��H���#���L��L������H��$�I�D$H��$�I3L$H1�H	���D�$$D�l$E����D��D�l$��H�=Tz I��H��������I��D���z ���M���H�=�y t"L��D��L������Ń����������P�|$臨�������E��t$A9u��H�t$�螤�������D���=����Ń�����5�y ���$A�?D�5�y ���t�@���A�����H�5�(L���*���H��tH�����H��y f�)wy �#���A��H�5
l 1��K���H��@�������H�5Z*�1��Y�������L������H��������
1�H��菤��I������H�5D2�1�����H�5i2�1����D�%�x ��x D��D$�4���H�=�x I��H��tZE���W����7����E1�1�1�1�������������H�=u2�������H�5�)�1�耨������E��|$迦�������M���2����;�����|$藦�������E������1�H�5�)L���u������I�}觧���Ń������1�H�5q)L���K�����fD�=�w ������-�w ��w E���D$A������I���F������H�5�(�1�覧��������H���H)���H�5x0�H��1�聧������1�H�5�(L�����������
�������1�H�5�0L�������A�#��L��H�
s2H�s 解�����1�H�5�(L���a����ff.����AVAUATUSH��dH�%(H��$�1��D$H���H��������	�;1�L�l$L�d$L�t$H�k�l����br �����{�ul�;�����L��L���D$������C�����H��v H��t�@��H�Tv H��t��{1�����f�|$���=�u u|H���4��tH��舴��H���`�����q ���d���1�H��$�dH3%(u}H�Ġ[]A\A]A^�D賜�����������������������{�H�5h �\���H���f����ы{L���A������;�������ff.���AWAVAUATUSH���D�=Tu dH�%(H��$�1�E���xH���@���H�-�t H�����}����u ;Ng �DH�-%u H��t1��a���H�ED��p E���H��$L�|$PD�cA����:E1�A�f�D�
Up E����D��t E��tH��t H��t
�@f����L��H��1���H�Ic�臝��D��H�D$PH�D$X����A���?)ѺH��H	��D9#��1�1�A�|$M��H��
p D9#������H�%t H��t
�@D9#��%f A��D9���1�葳��������f������H��$�dH34%(���'	H���[]A\A]A^A_��K���L��$�H�����DŽ$hM�l$H��$�L���̞��H��$L��H��H�D$@迚�����AH����L��DŽ$hH��$�腞��H��$�L��H��H�D$0�x������PH��$�L��H��H�D$8�S������+H��$`L��
H��H�D$(�.������H��$ L��H��H�D$H�	���A�Dž���H�D$PE1�L�l$`H�D$H��$�H�D$H��$`H�D$f�D�%�q E����H��q H��t	H�=�m ��1�蔞��I��L9�t<1��ձ������L���5����E���D�uE���M��E1���V�F���H��m �L��H�1���H�Hc}�՚���}L�D$L��H�D$PH�D$X�����������?)ѺH��1�H	T�`1�fm ������������'����8�����H�t$(1ҿ
轘��������x������=�����������_����5
q ��tH�&q H��t
�@f���,���D9#�
D������C�����H��p H��t�@��H��p H��t�D�c1�D���N����
@l �����=�o �����{�H�5�b ����H����������H�Ap H��t�*H�qp H�������B���(���@H�Qp H��t�@��H��o H����������@�˖���8�B����-���DA��D9�����M�����=rk ������譟����������=Vk �����H��o �
H��t��D��H�po H��t�
�A9����������H�Qo H��tD��҉T$$D�E~:E��~5���W����T$$A���˙��A�����輙��A��u������D�E�U�M�
D9�vH��n A�����H��tD�H�5j&�1��ƞ�������������D$藕���0������������H�=O �g����T$���fD�}蠩���C�����1��m���H�|$I�����H�|$�����H�T$H�t$1�萔�����6������������1�EM��tA�M�gM�g�{E1��c����C����H�t$1ҿ�;����������H�=t(�G������f��;�)���������>���fD�D$$菔���0���d������T$$�W���H�=c�T$�W����T$����fDD�#A�����������fD�nm ���R���D��h E���B���H�;m H���2����9�h �����{�H�5�_ �Д��H�{�w������H�='�f�������̓��H�=M'�0讖��M������A����H������…��
H�{����H������\h ���������H�=J���������������H�t$1ҿ贒������H��k �����rl ����L�=rl �Xl H�5l �7l H��k H��tH�lX 1�1���L�=7l A�G��H��k H��t��{1�蝦��D�-�g E��uH��k H��t!�E�9~�jg �hk �����;���t��������H�t$@1ҿL��$��	���H�t$01ҿ���H�t$H1ҿ���H�t$81ҿ�֒��H�t$(1ҿ
�Œ���kH�LSH��$��*&��$��ޒ���L��$�踒���ij ��j ���H�=?"�J���������%����˚���������,���H�=�$�"����Q���H��j H��t*f�C1��C�D$�C���C�����T$H�C(H�C ��j �������fD���=~j �|j �ff.�@��H�5f ������f.�f�����fD����n H���ff.���H��V H���H+���H���HO��D��H������1��f���1��f���ATI��H��US��Hc��h���Hc�L��H���Z���H�=#n H��H�����[�]A\�ff.�H��H�5�i dH�%(H�D$1�H��m H�$H��t-H�=�m H����H�D$dH3%(u&H���@�H�=0&跘��H��H�i ��f���fD��H��S�����H��H�=aU 謏���H���f���H��H�=AU 茏��Hc5
m ;5�d H�=�l |6����H��l �����H��l ���l H���fD蛎����f����?��I�H�=�T ���H���H+��9�M�1���~+H��Hc�Hc5yl H5fl 聐����~cl H���f��ff.�@��H��H�=aT �|������tH�H��H�D��H���ff.���UH��SH��H���6���H�m ��t]��uaH��H���H��tT�؃���tJ��tEH�H�؉у���u5H�M�� u@H��H�p��H�}��H��H�[]H�D�@H�����u�H���ߎ��H�MH��� t�H�PH�p�f���SH���C���H��[�ff.���SH���S���H��H�������[Ð��H��H�=1S �L���H�}b H�����H��H�=S �\���H�]b H�����H��H�=�R 輑������tH�3b H��H�����USH��H�=�R �:���������H�=uj H��t�K���H�`j �����H�\j �Zj 腍��9Wj t H�5�e �Hj H��t[1�1ҿ�}���1�H�4j �?���H�-�Q H�;H��H�u艔��H�uH�;H���j���H�ka H��H��[]�f��H�=�"����H��H�}e ���SH��H�\$H�t$H������H���-���1�H����H��[�ff.�f���AWAVAUA��ATI��U��SH��H���<Q��~v<R��<Su"�H�=0"H���������@Mc�L��L���j���Hc�H��I���\���H�=%i L��H�����H���[]A\A]A^A_�fD<Pu��
H�=�!H�������u��ƀULc�u��H�=z!H��������t����?H�����I��H���H��A��L)�A)�Mc�H��L��H�L$谒���	H�=/!H�$����H�$H�=`h H���8���H�L$L��H���x����H�=!H�$���H�$H�=(h H������1�A�??L����I�L���9����H�=� I��襋��H�=�g L��H���Î�����fD�
H�=n H��������r����:�i������@A�L�%��Q���fDO�<4L��E1������H9�^ tH����ATUH��S���ʉ��L� �‰��H�5cg H�=" H�訍��裉��H�5�b L� H��tH�=5g H���[]A\�?�����H�=�����H��H��b ��ff.��=�f �t1��@H��N H����=�f ����t�USH��;=^ ��H�=ib �d���H��H���Ɏ���Ń����H��覈��H������Hc?f ��H���
�������E1�A���H��1��K���H�f H��������Ë��1�H��[]�f.�Hc���#���H��e H��u�H�=	蛏�����@��e 1��H�=��t������]�����fD�ˇ���8�T���H�پH�qI��H��M H�81����H���)�����N���H�=j�����������1���f���AU1�ATUH��S��H���V������������-�d ��+�d Hc�D�%�d �X���I�Ņ�t"D)�A�DI�D9�uD���������H��L��[]A\A]ÐD)�Hc5�d H��H5�d Hc��t����d ���H��L��[]A\A]�@H�}@��u&������xU�-_d �Qd )�9�O���T����ӏ���ؐD9�Hc56d L��DN�H5d Ic�����D%d �U���@H��A�[L��]A\A]�ff.��AWAVL�5�c AUATUSH���f�D9-�c ~N����D�-�c M�&�H��Hc=�c D��)�I��L�Hc�H��躊��H��t�L)�D)��XHc�H�����I�ą�~Hc5cc H��H5Ic H���1���Kc H��L��[]A\A]A^A_�f���H��1��a�����tH���#����H���fD����b SH����b ���2f����H���#�����b 9�b }1������uٿ��f�H��[�ff.���AUATUH��SH��dH�%(H�D$1�����H��E1�I���G@H����I9�}HH���4���H��uj�� tUH�CJ��H��L��I��H�$襄��H��� u�H�CI9�|�H�L$dH3%(�uVH��[]A\A]�@H�C �f.�H�����H���H�=菅��H��H��H�$�+����褅��@��1��f���UH��SH��H��dH�%(H�D$1���u;H�����t2H��ƒ���u%�� tH�{~H�S��H�S��u�DH���uX�ӄ���H��D$�R���H�E H�t$�H�8�PH��H�����HD�H�L$dH3%(uH��[]���[�����Ą��@��AVAUATUSH�Ӆ�����G�I��L�%�H�l��R�@��uj������t`H��tZ@��tTH��4tN�������H��H��H�=�����f���I��L9�tpI�}@��u�H�����u�H��tqH��u���s���H��I��H����I��� u]H��I�V��H���<
t�H��G H��I��H�0���L9�u�[�]A\A]A^����u�L���v���H��뉐I�FI�VH���f�H�iG H��H�0�n�[�]A\A]A^���AVAUATUH��SH��dH�%(H�D$1������I��H�6A���L�5}�w���@����H��H���H��tw����to@��ti�����u_�L��貂��H��H�����A9�~OH��F H�0H��tH����I�t�H��@��u�H�����u�H��t�H��u��H���x�A9��H�lF H�0H��tH���[�H�L$dH3%(�u0H��[]A\A]A^�f��;���I��A�H��H�$���!������AUATUSH��荃�������H�=XH��] H��] ��] �p��H��t8�
1�H��H�����H��~�MH���%���H�������-#U H�=�'��H��H��tH���g���H��H=���Xfof�dY )MY H�=E1���~��H��t1��
H��1��Y�����@��H�=;E 薅���Q���H�=��] �~��H����H����������H��D H�g�H�H�
E H�5�X H�H�] H���CL�%tD I�<$�Ӆ��H�5tX H��\ H����1�1�H�����H�=�\ H��\ �ͅ���H�=�<����H�=�I���(���H�=y\ L��H���F����H�5z�H�=��^���I�4$H�=����1�H�e�H�5�H��H�\ 评������H�=\ 1�H�'�H�5��k���H�=�[ �H�8���H�5��L���H�=�[ �H���H�5��-���H�=�[ �����H����H�5�����H�=�[ �����H�+�H�5x���H�=p[ �����H�����H�5`�Ѓ��H�=Q[ �H���H�5F豃��H�=2[ 1�H���H�5-蕃��H�=[ 1�H���H�5�y���H�=�Z 1�H�����H�5�]���H�=�Z �����H�����H�5��>���H�=�Z 1�H���H�5��"���H�=�Z 1�H�����H�5�����H�=�Z 1�H���H�5����H�=kZ 1�H���H�5��΂��H�=OZ 1�H���H�5t貂��H�=3Z 1�H���H�5^薂��H�=Z 1�H���H�5J�z���H�=�Y 1�H���H�55�^���H�=�Y 1�H����H�5�B���H�=�Y �H�_�H�5�#���H�=�Y �����H� �H�5~����L�%A H�=~Y �H���L�����H�-kA H�
A H�=�P H�P H��P H�JH�*H�4Y H�5A H�H��@ H��[���H�=Y L��H���� ��H�
�@ H�=RP H�P H�GP H�JH�*H������S{��H�(�K{��H��o���H��X 1���H�5�X H�=
���H�3H�=�����
{��H�(H��[]A\A]�@H�P�H��H�=ET � ��H��wH�3T H�.XXXXXXH�(����H�t+��H�=������u�����H�=X 1�H��H�5�蜀��H�=�W 1�H���H�5�耀��H�=�W 1�H���H�5��d��������H�=4�ׂ��H��H�US H��W �����H�=�诂��H��H�5S ���H�=��$����Z����H�=���x��H���>����J���fD�mH���{��H���f����KH���u{��H��t��
�-wN �O����kH���U{��H��u�-ZN �2�����H��H���Anonymous mmap() failedlocalhost%02d:%02d:%02d [%s] [UID:%d][%d] %.*syesnosystem()%s, errno: %d (%s)
/dev/nulllibpthread.sopthread_atforkHTTP_[UID:%d][%d] %s:%s: %s
LSAPI: jail() failure./etc/Can't set signalsaccept() failedLSAPI_STDERR_LOGPHP_LSAPI_MAX_REQUESTSLSAPI_MAX_REQSLSAPI_KEEP_LISTENLSAPI_AVOID_FORKLSAPI_ACCEPT_NOTIFYLSAPI_SLOW_REQ_MSECSLSAPI_ALLOW_CORE_DUMPLSAPI_MAX_IDLEPHP_LSAPI_CHILDRENLSAPI_EXTRA_CHILDRENLSAPI_MAX_IDLE_CHILDRENLSAPI_PGRP_MAX_IDLELSAPI_MAX_PROCESS_TIMELSAPI_PPID_NO_CHECKLSAPI_MAX_BUSY_WORKERLSAPI_DUMP_DEBUG_INFOnobodyLSAPI_DEFAULT_UIDLSAPI_DEFAULT_GIDLSAPI_SECRETLSAPI_LVE_ENABLEliblve.so.0lve_is_availablelve_instance_initlve_destroylve_enterlve_leavejailPHP_LSAPI_PHPRC=packetLen < 0
packetLen > %d
Bad request header - ERROR#1
ParseRequest error
SUEXEC_AUTHSUEXEC_UGIDLSAPI: setgid()LSAPI: initgroups()LSAPI: setgroups()LSAPI: setuid()Bad request header - ERROR#2
lsapi_accept() errorPragma: no-cacheRetry-After: 60Content-Type: text/htmlDEBUGNOTICEWARNERRORCRITFATALAcceptAccept-CharsetAccept-EncodingAccept-LanguageAuthorizationConnectionContent-TypeContent-LengthCookieCookie2HostPragmaRefererUser-AgentCache-ControlIf-Modified-SinceIf-MatchIf-None-MatchIf-RangeIf-Unmodified-SinceKeep-AliveX-Forwarded-ForViaTransfer-EncodingHTTP_ACCEPTHTTP_ACCEPT_CHARSETHTTP_ACCEPT_ENCODINGHTTP_ACCEPT_LANGUAGEHTTP_AUTHORIZATIONHTTP_CONNECTIONCONTENT_TYPECONTENT_LENGTHHTTP_COOKIEHTTP_COOKIE2HTTP_HOSTHTTP_PRAGMAHTTP_REFERERHTTP_USER_AGENTHTTP_CACHE_CONTROLHTTP_IF_MODIFIED_SINCEHTTP_IF_MATCHHTTP_IF_NONE_MATCHHTTP_IF_RANGEHTTP_IF_UNMODIFIED_SINCEHTTP_KEEP_ALIVEHTTP_RANGEHTTP_X_FORWARDED_FORHTTP_VIAHTTP_TRANSFER_ENCODING%04d-%02d-%02d %02d:%02d:%02d.%06d Child process with pid: %d was killed by signal: %d, core dumped: %s
Possible runaway process, UID: %d, PPID: %d, PID: %d, reqCount: %d, process time: %ld, checkpoint time: %ld, start time: %ld
gdb --batch -ex "attach %d" -ex "set height 0" -ex "bt" >&2;PATH=$PATH:/usr/sbin lsof -p %d >&2Force killing runaway process PID: %d with SIGKILL
Killing runaway process PID: %d with SIGTERM
Children tracking is wrong: Cur Children: %d, count: %d, idle: %d, dying: %d
LSAPI: LVE jail(%d) result: %d, error: %s !
Invalid custom stderr log pathFailed to open custom stderr logCan't set signal handler for SIGCHILDReached max children process limit: %d, extra: %d, current: %d, busy: %d, please increase LSAPI_CHILDREN.
LSAPI: failed to open secret file: %s!
LSAPI: failed to check state of file: %s!
LSAPI: file permission check failure: %s
LSAPI: failed to read secret from secret file: %s
LSAPI: Unable to initialize LVERequest header does match total size, total: %d, real: %ld
LSAPI: missing SUEXEC_UGID env, use default user!
LSAPI: SUEXEC_AUTH authentication failed, use default user!
LSAPI: lve_enter() failure, reached resource limit.prctl: Failed to set dumpable, core dump may not be available!sigprocmask(SIG_BLOCK) to block SIGCHLDsigprocmask( SIG_SETMASK ) to restore SIGMASK in childfork() failed, please increase process limitsigprocmask( SIG_SETMASK ) to restore SIGMASKCache-Control: private, no-cache, no-store, must-revalidate, max-age=0PID<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>508 Resource Limit Is Reached</TITLE>
</HEAD><BODY>
<H1>Resource Limit Is Reached</H1>
The website is temporarily unable to service your request as it exceeded resource limit.
Please try again later.
<HR>
</BODY></HTML>






	


replacesrandQUERY_STRINGREQUEST_URIPATH_INFOREQUEST_PATHSCRIPT_NAMESTDERRreopenftruncate() failed. 
File mapping failed. 
Memory calloc error[...]nilLSAPI_MAX_BODYBUF_LENGTHLSAPI_TEMPFILEXXXXXXRACK_ROOTchdir()to_hashCGI/1.2eval_string_wrapLSAPIacceptaccept_new_connectionpostfork_childpostfork_parentprocessputcwriteprintprintfputs<<flushgetcgetsreadrewindeacheofeof?closebinmodeisattytty?syncsync=RACK_ENVGATEWAY_Irewindable_input.rbNTERFACE/tmp/lsapi.XXXXX;�{\���f��(�q��@�q��Tr��hr��|�r����r����r���z��8�z��l{���`{����{���`|��p}��,`~��|�������p���D����l �����,����x��� ���P	`���x	�����	�����	�����	�����	p���
@���$
P���8
`���L
����`
���|
p����
Џ���
@���P���@����T������0���X����l���p����p������
��p
�����
���
`������0��|��������� ����x�������p��������D����X ���l`�����������0��� @���4P���Hp���\����p����������������� ����0����@���<����|������������T@���@���`��������,���@���T���h��|���`���������������� ���80��X������� ���@���`���������0���P���������P�d��@�������$��8��d��� ��zRx�$X���
FJw�?:*3$"Dpb���
\�m��p�m����m��
L��m��sE�I�B �E(�A0�z
(A BBBIA
(D BBBA��m����m��@�m��YG�J�B �B(�A0�A8��0F(B DBb0T�t���B�F�C �G�
 AABK�,u��k(��u��GA�D�J n
AAA4��u��UA�G�K R
CAGL
JCG �u���A�G�]
AJ $Pv��t��
CKF�LH<w���B�B�E �A(�H0�H
(D BBBD�
(D BBBAP��w���v�F�B �A(�D0�D
(A BBBBL(A BBBA�����$�8x��aA�A�D XAAH�x���B�B�B �B(�A0�A8�D@N
8C0A(B BBBH$`$y��OA�f
QC
EH@�Ly��YB�B�B �A(�D0�J��
0A(A BBBFx�h{���F�E�A �C(�G�
 
(A ABBDM�
I�
c�
A�
��
E�
M�
A�
k�
E�
E�
E�
E�
H�V�
HH�}���F�B�B �B(�A0�A8�D``
8A0A(B BBBDl�0��+B�B�B �B(�A0�D8�J�Y�H�P�C�	M�i
8A0A(B BBBEL�T�M�D�d���6B�B�B �B(�A0�A8�DP�
8A0A(B BBBG
8J0H(G DBBK$lȁ��7E�F�F IIO������������4����F�A�A �G�>
 AABG h����E�O
D�
A@���
T���h���Y|X���JE�D�����S �؄��]P�h
HXA�H����lF�B�B �B(�A0�A8�LP�
8A0A(B BBBH<8���F�B�B �A(�A0��
(D BBBI\���i`pd���F�B�B �B(�A0�A8�DP~
8A0A(B BBBAk
8A0A(B BBBHL� ���$F�B�B �A(�A0�H��Q
D���
0A(A BBBHL$���F�B�B �B(�A0�A8�G��
8A0A(B BBBFtЌ��F����F�H����$�ԍ���n�C�X�J�L�����lF�B�B �B(�A0�A8�D�A
8A0A(B BBBA`(	̏���B�B�B �B(�A0�A8�G� I� K� I� L� N� N� w
8A0A(B BBBI0�	h����B�M�D �G�L
 AABA<�	��=B�A�A �G� L�@I�@U
 AABG$
���T�WE�H�G� (
L����a�g
HS�HL
ؓ���F�B�B �B(�A0�A8�DPS
8D0A(B BBBFT�
\����b�I�E �D(�C0�P
�(F� B�B�B�MQ(H BBBA�����H�
ԕ���F�B�B �B(�A0�A8�DP�
8A0A(B BBBAT<h���C�B�A �A(�G0`
(A ABBD�
(C ABBAJ����8�0���-F�B�D �D(�D@T
(A ABBB�$���(�0���lE�C�G�F
AAILt���!c�B�G �A(�D0�
(A ABBEX����D0����`T���t`���Z�����10�ؚ��pF�A�A �G@7
 AABF����@L�sL�8���F�B�B �B(�A0�A8�G��
8A0A(B BBBG<
���P
���d
���x
����
����
$����
0����
<����
8����
4���0���<,���	F�B�A �K(�G�
(A ABBG<X�����F�E�E �D(�D0�M
(C BBBB�<���(H�X����F�B�H �E(�A0�E8�I@�
8A0A(B BBBE(������F�E�D ��ABH$�����B�B�B �B(�A0�A8�G��
8A0A(B BBBJDp4����F�B�B �A(�A0�G�
0A(A BBBFL������
F�B�B �B(�A0�A8�G��
8A0A(B BBBAL��X��4`��
H\��\h��+p��������|��(�x��BF�G�A �kFB����zD O
E���
���HU ��gHQ
G<X��aydT���2HW
II(t����E�D�L ]
CAJ�T��E�L�X��E�Y�\�� HW�d�� HWl��-Hd( ����E�A�D �
DAJLH��3E�D hAHlh��F�B�B �E(�D0�C8�GPm
8F0A(B BBBG,�<���Z�A�D �J
�A�B�L4�����o�A�D �
AAKp��P ��\ ��4F�D�A �D(�F0`
(D ABBBj
(D ABBEl(G DBBD�����B�B�I �B(�A0�A8�D@�8D0A(B BBB�\��*HP
HI�l��UK�I8����F�B�A �D(�D@�
(A ABBE@t��(Tp���E�D�G0�
AAIH���PF�B�B �A(�A0��
(F BBBH{(F BBB@���OF�B�B �A(�D0�D@
0A(A BBBJ8$��KF�B�A �A(�D0�
(A ABBEGNU�@TT`!���A���#�)�.�4�;�J�Z�j�x��������������������������
�!��,�<�@�R�^�r�������������������
��'�:�Q�_�r��������������
�
�
k`>
��P!X!���o`��
�!��.0&p	���o�%���o�o$���oDh
!�>�>�>�>�>�>�>?? ?0?@?P?`?p?�?�?�?�?�?�?�?�?@@ @0@@@P@`@p@�@�@�@�@�@�@�@�@AA A0A@APA`ApA�A�A�A�A�A�A�A�ABB B0B@BPB`BpB�B�B�B�B�B�B�B�BCC C0C@CPC`CpC�C�C�C�C�C�C�C�CDD D0D@DPD`DpD�D�D�D�D�D�D�D�DEE E0E@EPE`EpE�E�E�E�E�E�E�E�EFF F0F@FPF`FpF�F�F�F�F�F�F�F�FGG G0G@GPG`GpG�G�G�G�G�G�G�G�GHH H0H@HPH`HpH�H�H�H�H�H�H�H�HI,����LSLSLSLS�������������������������!$#!���GA$3a1`>��GA$3p1113PT�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1113���GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYPT��GA+GLIBCXX_ASSERTIONSlsapi.so-5.6-1.el8.x86_64.debug����7zXZ�ִF!t/��wP]?�E�h=��ڊ�2N�뺉� ��͕���
(<�φ�5+�#S�ݠ����`���SNܓ�mA亍oL��о3!��pU]��Ҍp��1�du�~
��ܡ�ʎI�q���7s��W�����M��R�����-n�8�'��Qe�pH��^:�T�~�Ж�Ł@L��=�u"9�,<����'G���Mg�q��H�[O�0�G���	��h��_`3g_21��,�#�#�#��l�Q�b��A��ש.��B��?�;���Y�о�Y��
�K*�����F�u7��o�:eO}o���ٰ
<�6Rz]�%�i-o3a�}�����9\BP()B��8��(���\�=RT��4�%e�zw����:39�1f�w�){�y0�^%�O�P�D�I��
���k�ż�~��ڶ�Kvo7����Mͻ�ML��X/e�jÆ� Ur!"�z+$b�e"wU�lt�.^n������/��.T�(b�Y�`��n���c��%��V�'ic* YT���K��.��6����*p4�]�k��w1�SlN�;n�%�1w"��<�6�DR,��uw,�Mg�/_��
�hEo)5��Q"-�r��-��	��b�T�,6���:gZ���o�?���ÊB��}~�o�b�<YY]�f��"y�eQ�d����6�4`t��T-�I��F���Y⣚oٺC�3���?���hM0֮��Ӟm>M} ���>lH�P��UAE�妳�����;�>�~�|��(��}/2Pߦ���46��_e6�=!�>�˻�D+��k��k_�6����1��;-��[�A쾃 !�,��8�#x�'������Gq����/>�j���U;[��8�tÕ�	��]��0�����n:�R�{�65
����
���w��W6 P��6B-[���P���Q;'5$�����$.�cm$2�R�փٓU�#��.�1��>9I֩��,$R�ⷬ�����LD+"�[��z�a�E��4���N(���w`X��(,dq�{H����t��F|��0^�t���Z��u�R�0�3��>B��fz�3�c�KZ}
L�V�F�eS,+����+�F̱`{<�����
2v�;�գ�ۦS����"�x&�aX�o=��n�<ka�eh3F��
J�/���#��
c�B��{'�Uq�n�Z�]�{��#1������f�޸��V5�.�4^�q|R[&f�����I�7��DVG�J���p���T�`�]�c)iE���R_�{����Y-E�?��mGYk�S%J�kCF˷�6��E̖�"�̯v&����A<�	s"�õ��i�#R=�#�%�%��&�éG�@s�[/`i�����pw�F�0��	�粷1]����2���kƋ�ob�i��N�D51V9d#�����ٽ�I�<K�O��3�,/uGn�]S�+�_3�q��`�I
��fo�Z
���hp���5"�QKbA�ёv﷎��� ��Tc�,�N�����ҝ�&�V8�
G h����VxDw(�ӆyr$��ϣ�Y���i�-��J���[T��d.���\g��Z	�@i��n���<j�m�Wòy��gO���7(�����"Mh(ggתx��4��&��>K�=�j_(�����X�ÅhO6		�i���e��,FjW�jC�pk�E2$4O�S��Ȃ/D�f�&��D��7ėM5�E�+��T�����ev>���� !Z����
��۬�db�lQ�k{�;�޼!��vb����]Uk,�ۆy�B_�E,C�L���Q�ˮ�A���
=���tdѕ&n��<��@s��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``p(���0���8���o$$�E���o�%�%pT0&0&p^B�.�.�h`>`>c�>�>�
nII�
w�S�SK}}����
���p �p�p���X�X�L����� �P!P�X!X�`!` �h
!h
��X!X��!X�`!`�	 �@!@� ��'a@T#$"x#�+1PKCH[
3O8a�a�3share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.cnu�[���//#define LSAPI_DEBUG
/*
Copyright (c) 2002-2018, Lite Speed Technologies Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.
    * Neither the name of the Lite Speed Technologies Inc nor the
      names of its contributors may be used to endorse or promote
      products derived from this software without specific prior
      written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include <ctype.h>
#include <dlfcn.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <sys/stat.h>
#include <sched.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <grp.h>
#include <pwd.h>
#include <time.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/un.h>

#include "lsapilib.h"

#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
#include <sys/prctl.h>
#endif

#if defined(__FreeBSD__ ) || defined(__NetBSD__) || defined(__OpenBSD__) \
    || defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
#include <sys/sysctl.h>
#endif

#include <inttypes.h>
#ifndef uint32
#define uint32 uint32_t
#endif

struct lsapi_MD5Context {
    uint32 buf[4];
    uint32 bits[2];
    unsigned char in[64];
};

void lsapi_MD5Init(struct lsapi_MD5Context *context);
void lsapi_MD5Update(struct lsapi_MD5Context *context, unsigned char const *buf,
           unsigned len);
void lsapi_MD5Final(unsigned char digest[16], struct lsapi_MD5Context *context);

/*
 * This is needed to make RSAREF happy on some MS-DOS compilers.
 */
typedef struct lsapi_MD5Context lsapi_MD5_CTX;


#define LSAPI_ST_REQ_HEADER     1
#define LSAPI_ST_REQ_BODY       2
#define LSAPI_ST_RESP_HEADER    4
#define LSAPI_ST_RESP_BODY      8
#define LSAPI_ST_BACKGROUND     16

#define LSAPI_RESP_BUF_SIZE     8192
#define LSAPI_INIT_RESP_HEADER_LEN 4096

enum
{
    LSAPI_STATE_IDLE,
    LSAPI_STATE_CONNECTED,
    LSAPI_STATE_ACCEPTING,
};

typedef struct lsapi_child_status
{
    int     m_pid;
    long    m_tmStart;

    volatile short   m_iKillSent;
    volatile char    m_inProcess;
    volatile char    m_state;
    volatile int     m_iReqCounter;

    volatile long    m_tmWaitBegin;
    volatile long    m_tmReqBegin;
    volatile long    m_tmLastCheckPoint;
}
lsapi_child_status;

static lsapi_child_status * s_worker_status = NULL;

static int g_inited = 0;
static int g_running = 1;
static int s_ppid;
static int s_restored_ppid = 0;
static int s_pid = 0;
static int s_slow_req_msecs = 0;
static int s_keep_listener = 1;
static int s_dump_debug_info = 0;
static int s_pid_dump_debug_info = 0;
static int s_req_processed = 0;
static int s_skip_write = 0;
static int (*pthread_atfork_func)(void (*prepare)(void), void (*parent)(void),
                                  void (*child)(void)) = NULL;

static int *s_busy_workers = NULL;
static int *s_accepting_workers = NULL;
static int *s_global_counter = &s_req_processed;
static int s_max_busy_workers = -1;
static char *s_stderr_log_path = NULL;
static int s_stderr_is_pipe = 0;
static int s_ignore_pid = -1;
static size_t s_total_pages = 1;
static size_t s_min_avail_pages = 256 * 1024;
static size_t *s_avail_pages = &s_total_pages;

LSAPI_Request g_req =
{ .m_fdListen = -1, .m_fd = -1 };

static char         s_secret[24];

static LSAPI_On_Timer_pf s_proc_group_timer_cb = NULL;

void Flush_RespBuf_r( LSAPI_Request * pReq );
static int lsapi_reopen_stderr(const char *p);

static const char *CGI_HEADERS[H_TRANSFER_ENCODING+1] =
{
    "HTTP_ACCEPT", "HTTP_ACCEPT_CHARSET",
    "HTTP_ACCEPT_ENCODING",
    "HTTP_ACCEPT_LANGUAGE", "HTTP_AUTHORIZATION",
    "HTTP_CONNECTION", "CONTENT_TYPE",
    "CONTENT_LENGTH", "HTTP_COOKIE", "HTTP_COOKIE2",
    "HTTP_HOST", "HTTP_PRAGMA",
    "HTTP_REFERER", "HTTP_USER_AGENT",
    "HTTP_CACHE_CONTROL",
    "HTTP_IF_MODIFIED_SINCE", "HTTP_IF_MATCH",
    "HTTP_IF_NONE_MATCH",
    "HTTP_IF_RANGE",
    "HTTP_IF_UNMODIFIED_SINCE",
    "HTTP_KEEP_ALIVE",
    "HTTP_RANGE",
    "HTTP_X_FORWARDED_FOR",
    "HTTP_VIA",
    "HTTP_TRANSFER_ENCODING"
};

static int CGI_HEADER_LEN[H_TRANSFER_ENCODING+1] =
{    11, 19, 20, 20, 18, 15, 12, 14, 11, 12, 9, 11, 12, 15, 18,
     22, 13, 18, 13, 24, 15, 10, 20, 8, 22 };


static const char *HTTP_HEADERS[H_TRANSFER_ENCODING+1] =
{
    "Accept", "Accept-Charset",
    "Accept-Encoding",
    "Accept-Language", "Authorization",
    "Connection", "Content-Type",
    "Content-Length", "Cookie", "Cookie2",
    "Host", "Pragma",
    "Referer", "User-Agent",
    "Cache-Control",
    "If-Modified-Since", "If-Match",
    "If-None-Match",
    "If-Range",
    "If-Unmodified-Since",
    "Keep-Alive",
    "Range",
    "X-Forwarded-For",
    "Via",
    "Transfer-Encoding"
};

static int HTTP_HEADER_LEN[H_TRANSFER_ENCODING+1] =
{   6, 14, 15, 15, 13, 10, 12, 14, 6, 7, 4, 6, 7, 10, //user-agent
    13,17, 8, 13, 8, 19, 10, 5, 15, 3, 17
};


static const char *s_log_level_names[8] =
{
    "", "DEBUG","INFO", "NOTICE", "WARN", "ERROR", "CRIT", "FATAL"
};


void LSAPI_Log(int flag, const char * fmt, ...)
{
    char buf[1024];
    char *p = buf;
    if ((flag & LSAPI_LOG_TIMESTAMP_BITS)
        && !(s_stderr_is_pipe))
    {
        struct timeval  tv;
        struct tm       tm;
        gettimeofday(&tv, NULL);
        localtime_r(&tv.tv_sec, &tm);
        if (flag & LSAPI_LOG_TIMESTAMP_FULL)
        {
            p += snprintf(p, 1024, "%04d-%02d-%02d %02d:%02d:%02d.%06d ",
                tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
                tm.tm_hour, tm.tm_min, tm.tm_sec, (int)tv.tv_usec);
        }
        else if (flag & LSAPI_LOG_TIMESTAMP_HMS)
        {
            p += snprintf(p, 1024, "%02d:%02d:%02d ",
                tm.tm_hour, tm.tm_min, tm.tm_sec);
        }
    }

    int level = flag & LSAPI_LOG_LEVEL_BITS;
    if (level && level <= LSAPI_LOG_FLAG_FATAL)
    {
        p += snprintf(p, 100, "[%s] ", s_log_level_names[level]);
    }

    if (flag & LSAPI_LOG_PID)
    {
        p += snprintf(p, 100, "[UID:%d][%d] ", getuid(), s_pid);
    }

    if (p > buf)
        fprintf(stderr, "%.*s", (int)(p - buf), buf);
    va_list ap;
    va_start(ap, fmt);
    vfprintf(stderr, fmt, ap);
    va_end(ap);
}

#ifdef LSAPI_DEBUG

#define DBGLOG_FLAG (LSAPI_LOG_TIMESTAMP_FULL|LSAPI_LOG_FLAG_DEBUG|LSAPI_LOG_PID)
#define lsapi_dbg(...)   LSAPI_Log(DBGLOG_FLAG, __VA_ARGS__)

#else

#define lsapi_dbg(...)

#endif

#define lsapi_log(...)  LSAPI_Log(LSAPI_LOG_TIMESTAMP_FULL|LSAPI_LOG_PID, __VA_ARGS__)


void lsapi_perror(const char * pMessage, int err_no)
{
    lsapi_log("%s, errno: %d (%s)\n", pMessage, err_no, strerror(err_no));
}


static int lsapi_parent_dead()
{
    // Return non-zero if the parent is dead.  0 if still alive.
    if (!s_ppid) {
        // not checking, so not dead
        return(0);
    }
    if (s_restored_ppid) {
        if (kill(s_restored_ppid,0) == -1) {
            if (errno == EPERM) {
                return(0); // no permission, but it's still there.
            }
            return(1); // Dead
        }
        return(0); // it worked, so it's not dead
    }
    return(s_ppid != getppid());
}


static void lsapi_sigpipe( int sig )
{
}


static void lsapi_siguser1( int sig )
{
    g_running = 0;
}

#ifndef sighandler_t
typedef void (*sighandler_t)(int);
#endif

static void lsapi_signal(int signo, sighandler_t handler)
{
    struct sigaction sa;

    sigaction(signo, NULL, &sa);

    if (sa.sa_handler == SIG_DFL)
    {
        sigemptyset(&sa.sa_mask);
        sa.sa_flags = 0;
        sa.sa_handler = handler;
        sigaction(signo, &sa, NULL);
    }
}


static int s_enable_core_dump = 0;
static void lsapi_enable_core_dump(void)
{
#if defined(__FreeBSD__ ) || defined(__NetBSD__) || defined(__OpenBSD__) \
    || defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
    int  mib[2];
    size_t len;

#if !defined(__OpenBSD__)
    len = 2;
    if ( sysctlnametomib("kern.sugid_coredump", mib, &len) == 0 )
    {
        len = sizeof(s_enable_core_dump);
        if (sysctl(mib, 2, NULL, 0, &s_enable_core_dump, len) == -1)
            perror( "sysctl: Failed to set 'kern.sugid_coredump', "
                    "core dump may not be available!");
    }
#else
    int set = 3;
    len = sizeof(set);
    mib[0] = CTL_KERN;
    mib[1] = KERN_NOSUIDCOREDUMP;
    if (sysctl(mib, 2, NULL, 0, &set, len) == 0) {
        s_enable_core_dump = 1;
    }
#endif


#endif

#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
    if (prctl(PR_SET_DUMPABLE, s_enable_core_dump,0,0,0) == -1)
        perror( "prctl: Failed to set dumpable, "
                    "core dump may not be available!");
#endif
}


static inline void lsapi_buildPacketHeader( struct lsapi_packet_header * pHeader,
                                char type, int len )
{
    pHeader->m_versionB0 = LSAPI_VERSION_B0;  /* LSAPI protocol version */
    pHeader->m_versionB1 = LSAPI_VERSION_B1;
    pHeader->m_type      = type;
    pHeader->m_flag      = LSAPI_ENDIAN;
    pHeader->m_packetLen.m_iLen = len;
}


static  int lsapi_set_nblock( int fd, int nonblock )
{
    int val = fcntl( fd, F_GETFL, 0 );
    if ( nonblock )
    {
        if (!( val & O_NONBLOCK ))
        {
            return fcntl( fd, F_SETFL, val | O_NONBLOCK );
        }
    }
    else
    {
        if ( val & O_NONBLOCK )
        {
            return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) );
        }
    }
    return 0;
}


static int lsapi_close( int fd )
{
    int ret;
    while( 1 )
    {
        ret = close( fd );
        if (( ret == -1 )&&( errno == EINTR )&&(g_running))
            continue;
        return ret;
    }
}


static void lsapi_close_connection(LSAPI_Request *pReq)
{
    if (pReq->m_fd == -1)
        return;
    lsapi_close(pReq->m_fd);
    pReq->m_fd = -1;
    if (s_busy_workers)
        __atomic_fetch_sub(s_busy_workers, 1, __ATOMIC_SEQ_CST);
    if (s_worker_status)
        __atomic_store_n(&s_worker_status->m_state, LSAPI_STATE_IDLE,
                         __ATOMIC_SEQ_CST);
}


static inline ssize_t lsapi_read( int fd, void * pBuf, size_t len )
{
    ssize_t ret;
    while( 1 )
    {
        ret = read( fd, (char *)pBuf, len );
        if (( ret == -1 )&&( errno == EINTR )&&(g_running))
            continue;
        return ret;
    }
}


/*
static int lsapi_write( int fd, const void * pBuf, int len )
{
   int ret;
   const char * pCur;
   const char * pEnd;
   if ( len == 0 )
       return 0;
   pCur = (const char *)pBuf;
   pEnd = pCur + len;
   while( g_running && (pCur < pEnd) )
   {
       ret = write( fd, pCur, pEnd - pCur );
       if ( ret >= 0)
           pCur += ret;
       else if (( ret == -1 )&&( errno != EINTR ))
           return ret;
   }
   return pCur - (const char *)pBuf;
}
*/


static int lsapi_writev( int fd, struct iovec ** pVec, int count, int totalLen )
{
    int ret;
    int left = totalLen;
    int n = count;

    if (s_skip_write)
        return totalLen;

    while(( left > 0 )&&g_running )
    {
        ret = writev( fd, *pVec, n );
        if ( ret > 0 )
        {
            left -= ret;
            if (( left <= 0)||( !g_running ))
                return totalLen - left;
            while( ret > 0 )
            {
                if ( (*pVec)->iov_len <= (unsigned int )ret )
                {
                    ret -= (*pVec)->iov_len;
                    ++(*pVec);
                }
                else
                {
                    (*pVec)->iov_base = (char *)(*pVec)->iov_base + ret;
                    (*pVec)->iov_len -= ret;
                    break;
                }
            }
        }
        else if ( ret == -1 )
        {
            if ( errno == EAGAIN )
            {
                if ( totalLen - left > 0 )
                    return totalLen - left;
                else
                    return -1;
            }
            else if ( errno != EINTR )
                return ret;
        }
    }
    return totalLen - left;
}


/*
static int getTotalLen( struct iovec * pVec, int count )
{
   struct iovec * pEnd = pVec + count;
   int total = 0;
   while( pVec < pEnd )
   {
       total += pVec->iov_len;
       ++pVec;
   }
   return total;
}
*/


static inline int allocateBuf( LSAPI_Request * pReq, int size )
{
    char * pBuf = (char *)realloc( pReq->m_pReqBuf, size );
    if ( pBuf )
    {
        pReq->m_pReqBuf = pBuf;
        pReq->m_reqBufSize = size;
        pReq->m_pHeader = (struct lsapi_req_header *)pReq->m_pReqBuf;
        return 0;
    }
    return -1;
}


static int allocateIovec( LSAPI_Request * pReq, int n )
{
    struct iovec * p = (struct iovec *)realloc(
                pReq->m_pIovec, sizeof(struct iovec) * n );
    if ( !p )
        return -1;
    pReq->m_pIovecToWrite = p + ( pReq->m_pIovecToWrite - pReq->m_pIovec );
    pReq->m_pIovecCur = p + ( pReq->m_pIovecCur - pReq->m_pIovec );
    pReq->m_pIovec = p;
    pReq->m_pIovecEnd = p + n;
    return 0;
}


static int allocateRespHeaderBuf( LSAPI_Request * pReq, int size )
{
    char * p = (char *)realloc( pReq->m_pRespHeaderBuf, size );
    if ( !p )
        return -1;
    pReq->m_pRespHeaderBufPos   = p + ( pReq->m_pRespHeaderBufPos - pReq->m_pRespHeaderBuf );
    pReq->m_pRespHeaderBuf      = p;
    pReq->m_pRespHeaderBufEnd   = p + size;
    return 0;
}


static inline int verifyHeader( struct lsapi_packet_header * pHeader, char pktType )
{
    if (( LSAPI_VERSION_B0 != pHeader->m_versionB0 )||
        ( LSAPI_VERSION_B1 != pHeader->m_versionB1 )||
        ( pktType != pHeader->m_type ))
        return -1;
    if ( LSAPI_ENDIAN != (pHeader->m_flag & LSAPI_ENDIAN_BIT ))
    {
        register char b;
        b = pHeader->m_packetLen.m_bytes[0];
        pHeader->m_packetLen.m_bytes[0] = pHeader->m_packetLen.m_bytes[3];
        pHeader->m_packetLen.m_bytes[3] = b;
        b = pHeader->m_packetLen.m_bytes[1];
        pHeader->m_packetLen.m_bytes[1] = pHeader->m_packetLen.m_bytes[2];
        pHeader->m_packetLen.m_bytes[2] = b;
    }
    return pHeader->m_packetLen.m_iLen;
}


static int allocateEnvList( struct LSAPI_key_value_pair ** pEnvList,
                        int *curSize, int newSize )
{
    struct LSAPI_key_value_pair * pBuf;
    if ( *curSize >= newSize )
        return 0;
    if ( newSize > 8192 )
        return -1;
    pBuf = (struct LSAPI_key_value_pair *)realloc( *pEnvList, newSize *
                    sizeof(struct LSAPI_key_value_pair) );
    if ( pBuf )
    {
        *pEnvList = pBuf;
        *curSize  = newSize;
        return 0;
    }
    else
        return -1;

}


static inline int isPipe( int fd )
{
    char        achPeer[128];
    socklen_t   len = 128;
    if (( getpeername( fd, (struct sockaddr *)achPeer, &len ) != 0 )&&
        ( errno == ENOTCONN ))
        return 0;
    else
        return 1;
}


static int parseEnv( struct LSAPI_key_value_pair * pEnvList, int count,
            char **pBegin, char * pEnd )
{
    struct LSAPI_key_value_pair * pEnvEnd;
        int keyLen = 0, valLen = 0;
    if ( count > 8192 )
        return -1;
    pEnvEnd = pEnvList + count;
    while( pEnvList != pEnvEnd )
    {
        if ( pEnd - *pBegin < 4 )
            return -1;
        keyLen = *((unsigned char *)((*pBegin)++));
        keyLen = (keyLen << 8) + *((unsigned char *)((*pBegin)++));
        valLen = *((unsigned char *)((*pBegin)++));
        valLen = (valLen << 8) + *((unsigned char *)((*pBegin)++));
        if ( *pBegin + keyLen + valLen > pEnd )
            return -1;
        if (( !keyLen )||( !valLen ))
            return -1;

        pEnvList->pKey = *pBegin;
        *pBegin += keyLen;
        pEnvList->pValue = *pBegin;
        *pBegin += valLen;

        pEnvList->keyLen = keyLen - 1;
        pEnvList->valLen = valLen - 1;
        ++pEnvList;
    }
    if ( memcmp( *pBegin, "\0\0\0\0", 4 ) != 0 )
        return -1;
    *pBegin += 4;
    return 0;
}


static inline void swapIntEndian( int * pInteger )
{
    char * p = (char *)pInteger;
    register char b;
    b = p[0];
    p[0] = p[3];
    p[3] = b;
    b = p[1];
    p[1] = p[2];
    p[2] = b;

}


static inline void fixEndian( LSAPI_Request * pReq )
{
    struct lsapi_req_header *p= pReq->m_pHeader;
    swapIntEndian( &p->m_httpHeaderLen );
    swapIntEndian( &p->m_reqBodyLen );
    swapIntEndian( &p->m_scriptFileOff );
    swapIntEndian( &p->m_scriptNameOff );
    swapIntEndian( &p->m_queryStringOff );
    swapIntEndian( &p->m_requestMethodOff );
    swapIntEndian( &p->m_cntUnknownHeaders );
    swapIntEndian( &p->m_cntEnv );
    swapIntEndian( &p->m_cntSpecialEnv );
}


static void fixHeaderIndexEndian( LSAPI_Request * pReq )
{
    int i;
    for( i = 0; i < H_TRANSFER_ENCODING; ++i )
    {
        if ( pReq->m_pHeaderIndex->m_headerOff[i] )
        {
            register char b;
            char * p = (char *)(&pReq->m_pHeaderIndex->m_headerLen[i]);
            b = p[0];
            p[0] = p[1];
            p[1] = b;
            swapIntEndian( &pReq->m_pHeaderIndex->m_headerOff[i] );
        }
    }
    if ( pReq->m_pHeader->m_cntUnknownHeaders > 0 )
    {
        struct lsapi_header_offset * pCur, *pEnd;
        pCur = pReq->m_pUnknownHeader;
        pEnd = pCur + pReq->m_pHeader->m_cntUnknownHeaders;
        while( pCur < pEnd )
        {
            swapIntEndian( &pCur->nameOff );
            swapIntEndian( &pCur->nameLen );
            swapIntEndian( &pCur->valueOff );
            swapIntEndian( &pCur->valueLen );
            ++pCur;
        }
    }
}


static int validateHeaders( LSAPI_Request * pReq )
{
    int totalLen = pReq->m_pHeader->m_httpHeaderLen;
    int i;
    for(i = 0; i < H_TRANSFER_ENCODING; ++i)
    {
        if ( pReq->m_pHeaderIndex->m_headerOff[i] )
        {
            if (pReq->m_pHeaderIndex->m_headerOff[i] > totalLen
                || pReq->m_pHeaderIndex->m_headerLen[i]
                    + pReq->m_pHeaderIndex->m_headerOff[i] > totalLen)
                return -1;
        }
    }
    if (pReq->m_pHeader->m_cntUnknownHeaders > 0)
    {
        struct lsapi_header_offset * pCur, *pEnd;
        pCur = pReq->m_pUnknownHeader;
        pEnd = pCur + pReq->m_pHeader->m_cntUnknownHeaders;
        while( pCur < pEnd )
        {
            if (pCur->nameOff > totalLen
                || pCur->nameOff + pCur->nameLen > totalLen
                || pCur->valueOff > totalLen
                || pCur->valueOff + pCur->valueLen > totalLen)
                return -1;
            ++pCur;
        }
    }
    return 0;
}


static uid_t s_uid = 0;
static uid_t s_defaultUid;  //web server need set this
static gid_t s_defaultGid;

#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)

#define LSAPI_LVE_DISABLED  0
#define LSAPI_LVE_ENABLED   1
#define LSAPI_CAGEFS_ENABLED 2
#define LSAPI_CAGEFS_NO_SUEXEC 3
struct liblve;
static int s_enable_lve = LSAPI_LVE_DISABLED;
static struct liblve * s_lve = NULL;

static void *s_liblve;
static int (*fp_lve_is_available)(void) = NULL;
static int (*fp_lve_instance_init)(struct liblve *) = NULL;
static int (*fp_lve_destroy)(struct liblve *) = NULL;
static int (*fp_lve_enter)(struct liblve *, uint32_t, int32_t, int32_t, uint32_t *) = NULL;
static int (*fp_lve_leave)(struct liblve *, uint32_t *) = NULL;
static int (*fp_lve_jail)( struct passwd *, char *) = NULL;
static int lsapi_load_lve_lib(void)
{
    s_liblve = dlopen("liblve.so.0", RTLD_NOW | RTLD_GLOBAL);
    if (s_liblve)
    {
        fp_lve_is_available = dlsym(s_liblve, "lve_is_available");
        if (dlerror() == NULL)
        {
            if ( !(*fp_lve_is_available)() )
            {
                int uid = getuid();
                if ( uid )
                {
                    if (setreuid( s_uid, uid )) {};
                    if ( !(*fp_lve_is_available)() )
                        s_enable_lve = 0;
                    if (setreuid( uid, s_uid )) {};
                }
            }
        }
    }
    else
    {
        s_enable_lve = LSAPI_LVE_DISABLED;
    }
    return (s_liblve)? 0 : -1;
}


static int init_lve_ex(void)
{
    int rc;
    if ( !s_liblve )
        return -1;
    fp_lve_instance_init = dlsym(s_liblve, "lve_instance_init");
    fp_lve_destroy = dlsym(s_liblve, "lve_destroy");
    fp_lve_enter = dlsym(s_liblve, "lve_enter");
    fp_lve_leave = dlsym(s_liblve, "lve_leave");
    if ( s_enable_lve >= LSAPI_CAGEFS_ENABLED )
        fp_lve_jail = dlsym(s_liblve, "jail" );

    if ( s_lve == NULL )
    {
        rc = (*fp_lve_instance_init)(NULL);
        s_lve = malloc(rc);
    }
    rc = (*fp_lve_instance_init)(s_lve);
    if (rc != 0)
    {
        perror( "LSAPI: Unable to initialize LVE" );
        free( s_lve );
        s_lve = NULL;
        return -1;
    }
    return 0;

}

#endif



static int readSecret( const char * pSecretFile )
{
    struct stat st;
    int fd = open( pSecretFile, O_RDONLY , 0600 );
    if ( fd == -1 )
    {
        lsapi_log("LSAPI: failed to open secret file: %s!\n", pSecretFile );
        return -1;
    }
    if ( fstat( fd, &st ) == -1 )
    {
        lsapi_log("LSAPI: failed to check state of file: %s!\n", pSecretFile );
        close( fd );
        return -1;
    }
/*
    if ( st.st_uid != s_uid )
    {
        lsapi_log("LSAPI: file owner check failure: %s!\n", pSecretFile );
        close( fd );
        return -1;
    }
*/
    if ( st.st_mode & 0077 )
    {
        lsapi_log("LSAPI: file permission check failure: %s\n", pSecretFile );
        close( fd );
        return -1;
    }
    if ( read( fd, s_secret, 16 ) < 16 )
    {
        lsapi_log("LSAPI: failed to read secret from secret file: %s\n", pSecretFile );
        close( fd );
        return -1;
    }
    close( fd );
    return 0;
}


int LSAPI_is_suEXEC_Daemon(void)
{
    if (( !s_uid )&&( s_secret[0] ))
        return 1;
    else
        return 0;
}


static int LSAPI_perror_r( LSAPI_Request * pReq, const char * pErr1, const char *pErr2 )
{
    char achError[4096];
    int n = snprintf(achError, sizeof(achError), "[UID:%d][%d] %s:%s: %s\n",
                     getuid(), getpid(),
                     pErr1, (pErr2)?pErr2:"", strerror(errno));
    if (n > (int)sizeof(achError))
        n = sizeof(achError);
    if ( pReq )
        LSAPI_Write_Stderr_r( pReq, achError, n );
    else
        if (write( STDERR_FILENO, achError, n )) {};
    return 0;
}


#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
static int lsapi_lve_error( LSAPI_Request * pReq )
{
    static const char * headers[] =
    {
        "Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0",
        "Pragma: no-cache",
        "Retry-After: 60",
        "Content-Type: text/html",
        NULL
    };
    static const char achBody[] =
        "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n"
        "<HTML><HEAD>\n<TITLE>508 Resource Limit Is Reached</TITLE>\n"
        "</HEAD><BODY>\n" "<H1>Resource Limit Is Reached</H1>\n"
        "The website is temporarily unable to service your request as it exceeded resource limit.\n"
        "Please try again later.\n"
        "<HR>\n"
        "</BODY></HTML>\n";

    LSAPI_ErrResponse_r( pReq, 508, headers, achBody, sizeof( achBody ) - 1 );
    return 0;
}

static int lsapi_enterLVE( LSAPI_Request * pReq, uid_t uid )
{
    if ( s_lve && uid ) //root user should not do that
    {
        uint32_t cookie;
        int ret = -1;
        ret = (*fp_lve_enter)(s_lve, uid, -1, -1, &cookie);
        if ( ret < 0 )
        {
            //lsapi_log("enter LVE (%d) : result: %d !\n", uid, ret );
            LSAPI_perror_r(pReq, "LSAPI: lve_enter() failure, reached resource limit.", NULL );
            lsapi_lve_error( pReq );
            return -1;
        }
    }

    return 0;
}

static int lsapi_jailLVE( LSAPI_Request * pReq, uid_t uid, struct passwd * pw )
{
    int ret = 0;
    char  error_msg[1024] = "";
    ret = (*fp_lve_jail)( pw, error_msg );
    if ( ret < 0 )
    {
        lsapi_log("LSAPI: LVE jail(%d) result: %d, error: %s !\n",
                  uid, ret, error_msg );
        LSAPI_perror_r( pReq, "LSAPI: jail() failure.", NULL );
        return -1;
    }
    return ret;
}


static int lsapi_initLVE(void)
{
    const char * pEnv;
    if ( (pEnv = getenv( "LSAPI_LVE_ENABLE" ))!= NULL )
    {
        s_enable_lve = atol( pEnv );
        pEnv = NULL;
    }
    else if ( (pEnv = getenv( "LVE_ENABLE" ))!= NULL )
    {
        s_enable_lve = atol( pEnv );
        pEnv = NULL;
    }
    if ( s_enable_lve && !s_uid )
    {
        lsapi_load_lve_lib();
        if ( s_enable_lve )
        {
            return init_lve_ex();
        }

    }
    return 0;
}
#endif


static int setUID_LVE(LSAPI_Request * pReq, uid_t uid, gid_t gid, const char * pChroot)
{
    int rv;
    struct passwd * pw;
    pw = getpwuid( uid );
#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
    if ( s_lve )
    {
        if( lsapi_enterLVE( pReq, uid ) == -1 )
            return -1;
        if ( pw && fp_lve_jail)
        {
            rv = lsapi_jailLVE( pReq, uid, pw );
            if ( rv == -1 )
                return -1;
            if (( rv == 1 )&&(s_enable_lve == LSAPI_CAGEFS_NO_SUEXEC ))    //this mode only use cageFS, does not use suEXEC
            {
                uid = s_defaultUid;
                gid = s_defaultGid;
                pw = getpwuid( uid );
            }
        }
    }
#endif
    //if ( !uid || !gid )  //do not allow root
    //{
    //    return -1;
    //}

#if defined(__FreeBSD__ ) || defined(__NetBSD__) || defined(__OpenBSD__) \
    || defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
    if ( s_enable_core_dump )
        lsapi_enable_core_dump();
#endif

    rv = setgid(gid);
    if (rv == -1)
    {
        LSAPI_perror_r(pReq, "LSAPI: setgid()", NULL);
        return -1;
    }
    if ( pw && (pw->pw_gid == gid ))
    {
        rv = initgroups( pw->pw_name, gid );
        if (rv == -1)
        {
            LSAPI_perror_r(pReq, "LSAPI: initgroups()", NULL);
            return -1;
        }
    }
    else
    {
        rv = setgroups(1, &gid);
        if (rv == -1)
        {
            LSAPI_perror_r(pReq, "LSAPI: setgroups()", NULL);
        }
    }
    if ( pChroot )
    {
        rv = chroot( pChroot );
        if ( rv == -1 )
        {
            LSAPI_perror_r(pReq, "LSAPI: chroot()", NULL);
            return -1;
        }
    }
    rv = setuid(uid);
    if (rv == -1)
    {
        LSAPI_perror_r(pReq, "LSAPI: setuid()", NULL);
        return -1;
    }
#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
    if ( s_enable_core_dump )
        lsapi_enable_core_dump();
#endif
    return 0;
}

static int lsapi_suexec_auth( LSAPI_Request *pReq,
            char * pAuth, int len, char * pUgid, int ugidLen )
{
    lsapi_MD5_CTX md5ctx;
    unsigned char achMD5[16];
    if ( len < 32 )
        return -1;
    memmove( achMD5, pAuth + 16, 16 );
    memmove( pAuth + 16, s_secret, 16 );
    lsapi_MD5Init( &md5ctx );
    lsapi_MD5Update( &md5ctx, (unsigned char *)pAuth, 32 );
    lsapi_MD5Update( &md5ctx, (unsigned char *)pUgid, 8 );
    lsapi_MD5Final( (unsigned char *)pAuth + 16, &md5ctx);
    if ( memcmp( achMD5, pAuth + 16, 16 ) == 0 )
        return 0;
    return 1;
}


static int lsapi_changeUGid( LSAPI_Request * pReq )
{
    int uid = s_defaultUid;
    int gid = s_defaultGid;
    const char *pStderrLog;
    const char *pChroot = NULL;
    struct LSAPI_key_value_pair * pEnv;
    struct LSAPI_key_value_pair * pAuth;
    int i;
    if ( s_uid )
        return 0;
    //with special ID  0x00
    //authenticate the suEXEC request;
    //first one should be MD5( nonce + lscgid secret )
    //remember to clear the secret after verification
    //it should be set at the end of special env
    i = pReq->m_pHeader->m_cntSpecialEnv - 1;
    if ( i >= 0 )
    {
        pEnv = pReq->m_pSpecialEnvList + i;
        if (( *pEnv->pKey == '\000' )&&
            ( strcmp( pEnv->pKey+1, "SUEXEC_AUTH" ) == 0 ))
        {
            --pReq->m_pHeader->m_cntSpecialEnv;
            pAuth = pEnv--;
            if (( *pEnv->pKey == '\000' )&&
                ( strcmp( pEnv->pKey+1, "SUEXEC_UGID" ) == 0 ))
            {
                --pReq->m_pHeader->m_cntSpecialEnv;
                uid = *(uint32_t *)pEnv->pValue;
                gid = *(((uint32_t *)pEnv->pValue) + 1 );
                //lsapi_log("LSAPI: SUEXEC_UGID set UID: %d, GID: %d\n", uid, gid );
            }
            else
            {
                lsapi_log("LSAPI: missing SUEXEC_UGID env, use default user!\n" );
                pEnv = NULL;
            }
            if ( pEnv&& lsapi_suexec_auth( pReq, pAuth->pValue, pAuth->valLen, pEnv->pValue, pEnv->valLen ) == 0 )
            {
                //read UID, GID from specialEnv

            }
            else
            {
                //authentication error
                lsapi_log("LSAPI: SUEXEC_AUTH authentication failed, use default user!\n" );
                uid = 0;
            }
        }
        else
        {
            //lsapi_log("LSAPI: no SUEXEC_AUTH env, use default user!\n" );
        }
    }


    if ( !uid )
    {
        uid = s_defaultUid;
        gid = s_defaultGid;
    }

    //change uid
    if ( setUID_LVE( pReq, uid, gid, pChroot ) == -1 )
    {
        return -1;
    }

    s_uid = uid;

    if ( pReq->m_fdListen != -1 )
    {
        close( pReq->m_fdListen );
        pReq->m_fdListen = -1;
    }

    pStderrLog = LSAPI_GetEnv_r( pReq, "LSAPI_STDERR_LOG");
    if (pStderrLog)
        lsapi_reopen_stderr(pStderrLog);

    return 0;

}


static int parseContentLenFromHeader(LSAPI_Request * pReq)
{
    const char * pContentLen = LSAPI_GetHeader_r( pReq, H_CONTENT_LENGTH );
    if ( pContentLen )
        pReq->m_reqBodyLen = strtoll( pContentLen, NULL, 10 );
    return 0;
}


static int parseRequest( LSAPI_Request * pReq, int totalLen )
{
    int shouldFixEndian;
    char * pBegin = pReq->m_pReqBuf + sizeof( struct lsapi_req_header );
    char * pEnd = pReq->m_pReqBuf + totalLen;
    shouldFixEndian = ( LSAPI_ENDIAN != (
                pReq->m_pHeader->m_pktHeader.m_flag & LSAPI_ENDIAN_BIT ) );
    if ( shouldFixEndian )
    {
        fixEndian( pReq );
    }
    if ( (pReq->m_specialEnvListSize < pReq->m_pHeader->m_cntSpecialEnv )&&
            allocateEnvList( &pReq->m_pSpecialEnvList,
                &pReq->m_specialEnvListSize,
                pReq->m_pHeader->m_cntSpecialEnv ) == -1 )
        return -1;
    if ( (pReq->m_envListSize < pReq->m_pHeader->m_cntEnv )&&
            allocateEnvList( &pReq->m_pEnvList, &pReq->m_envListSize,
                pReq->m_pHeader->m_cntEnv ) == -1 )
        return -1;

    if ( parseEnv( pReq->m_pSpecialEnvList,
                pReq->m_pHeader->m_cntSpecialEnv,
                &pBegin, pEnd ) == -1 )
        return -1;
    if ( parseEnv( pReq->m_pEnvList, pReq->m_pHeader->m_cntEnv,
                &pBegin, pEnd ) == -1 )
        return -1;
    if (pReq->m_pHeader->m_scriptFileOff < 0
        || pReq->m_pHeader->m_scriptFileOff >= totalLen
        || pReq->m_pHeader->m_scriptNameOff < 0
        || pReq->m_pHeader->m_scriptNameOff >= totalLen
        || pReq->m_pHeader->m_queryStringOff < 0
        || pReq->m_pHeader->m_queryStringOff >= totalLen
        || pReq->m_pHeader->m_requestMethodOff < 0
        || pReq->m_pHeader->m_requestMethodOff >= totalLen)
    {
        lsapi_log("Bad request header - ERROR#1\n");
        return -1;
    }
    pReq->m_pScriptFile     = pReq->m_pReqBuf + pReq->m_pHeader->m_scriptFileOff;
    pReq->m_pScriptName     = pReq->m_pReqBuf + pReq->m_pHeader->m_scriptNameOff;
    pReq->m_pQueryString    = pReq->m_pReqBuf + pReq->m_pHeader->m_queryStringOff;
    pReq->m_pRequestMethod  = pReq->m_pReqBuf + pReq->m_pHeader->m_requestMethodOff;

    pBegin = pReq->m_pReqBuf + (( pBegin - pReq->m_pReqBuf + 7 ) & (~0x7));
    pReq->m_pHeaderIndex = ( struct lsapi_http_header_index * )pBegin;
    pBegin += sizeof( struct lsapi_http_header_index );

    pReq->m_pUnknownHeader = (struct lsapi_header_offset *)pBegin;
    pBegin += sizeof( struct lsapi_header_offset) *
                    pReq->m_pHeader->m_cntUnknownHeaders;

    pReq->m_pHttpHeader = pBegin;
    pBegin += pReq->m_pHeader->m_httpHeaderLen;
    if ( pBegin != pEnd )
    {
        lsapi_log("Request header does match total size, total: %d, "
                 "real: %ld\n", totalLen, pBegin - pReq->m_pReqBuf );
        return -1;
    }
    if ( shouldFixEndian )
    {
        fixHeaderIndexEndian( pReq );
    }

    if (validateHeaders(pReq) == -1)
    {
        lsapi_log("Bad request header - ERROR#2\n");
        return -1;
    }

    pReq->m_reqBodyLen = pReq->m_pHeader->m_reqBodyLen;
    if ( pReq->m_reqBodyLen == -2 )
    {
        parseContentLenFromHeader(pReq);
    }

    return 0;
}


//OPTIMIZATION
static char s_accept_notify = 0;
static char s_schedule_notify = 0;
static char s_notify_scheduled = 0;
static char s_notified_pid = 0;

static struct lsapi_packet_header s_ack = {'L', 'S',
                LSAPI_REQ_RECEIVED, LSAPI_ENDIAN, {LSAPI_PACKET_HEADER_LEN} };
static struct lsapi_packet_header s_conn_close_pkt = {'L', 'S',
                LSAPI_CONN_CLOSE, LSAPI_ENDIAN, {LSAPI_PACKET_HEADER_LEN} };


static inline int send_notification_pkt( int fd, struct lsapi_packet_header *pkt )
{
    if ( write( fd, pkt, LSAPI_PACKET_HEADER_LEN ) < LSAPI_PACKET_HEADER_LEN )
        return -1;
    return 0;
}


static inline int send_req_received_notification( int fd )
{
    return send_notification_pkt(fd, &s_ack);
}


static inline int send_conn_close_notification( int fd )
{
    return send_notification_pkt(fd, &s_conn_close_pkt);
}


//static void lsapi_sigalarm( int sig )
//{
//    if ( s_notify_scheduled )
//    {
//        s_notify_scheduled = 0;
//        if ( g_req.m_fd != -1 )
//            write_req_received_notification( g_req.m_fd );
//    }
//}


static inline int lsapi_schedule_notify(void)
{
    if ( !s_notify_scheduled )
    {
        alarm( 2 );
        s_notify_scheduled = 1;
    }
    return 0;
}


static inline int notify_req_received( int fd )
{
    if ( s_schedule_notify )
        return lsapi_schedule_notify();
    return send_req_received_notification( fd );

}


static inline int lsapi_notify_pid( int fd )
{
    char achBuf[16];
    lsapi_buildPacketHeader( (struct lsapi_packet_header *)achBuf, LSAPI_STDERR_STREAM,
                        8 + LSAPI_PACKET_HEADER_LEN );
    memmove( &achBuf[8], "\0PID", 4 );
    *((int *)&achBuf[12]) = getpid();

    if ( write( fd, achBuf, 16 ) < 16 )
        return -1;
    return 0;
}

static int readReq( LSAPI_Request * pReq )
{
    int len;
    int packetLen;
    if ( !pReq )
        return -1;
    if ( pReq->m_reqBufSize < 8192 )
    {
        if ( allocateBuf( pReq, 8192 ) == -1 )
            return -1;
    }

    while ( pReq->m_bufRead < LSAPI_PACKET_HEADER_LEN )
    {
        len = lsapi_read( pReq->m_fd, pReq->m_pReqBuf, pReq->m_reqBufSize );
        if ( len <= 0 )
            return -1;
        pReq->m_bufRead += len;
    }
    pReq->m_reqState = LSAPI_ST_REQ_HEADER;

    packetLen = verifyHeader( &pReq->m_pHeader->m_pktHeader, LSAPI_BEGIN_REQUEST );
    if ( packetLen < 0 )
    {
        lsapi_log("packetLen < 0\n");
        return -1;
    }
    if ( packetLen > LSAPI_MAX_HEADER_LEN )
    {
        lsapi_log("packetLen > %d\n", LSAPI_MAX_HEADER_LEN );
        return -1;
    }

    if ( packetLen + 1024 > pReq->m_reqBufSize )
    {
        if ( allocateBuf( pReq, packetLen + 1024 ) == -1 )
            return -1;
    }
    while( packetLen > pReq->m_bufRead )
    {
        len = lsapi_read( pReq->m_fd, pReq->m_pReqBuf + pReq->m_bufRead, packetLen - pReq->m_bufRead );
        if ( len <= 0 )
            return -1;
        pReq->m_bufRead += len;
    }
    if ( parseRequest( pReq, packetLen ) < 0 )
    {
        lsapi_log("ParseRequest error\n");
        return -1;
    }

    pReq->m_reqState = LSAPI_ST_REQ_BODY | LSAPI_ST_RESP_HEADER;

    if ( !s_uid )
    {
        if ( lsapi_changeUGid( pReq ) )
            return -1;
        memset(s_secret, 0, sizeof(s_secret));
    }
    pReq->m_bufProcessed = packetLen;

    //OPTIMIZATION
    if ( !s_accept_notify && !s_notified_pid )
        return notify_req_received( pReq->m_fd );
    else
    {
        s_notified_pid = 0;
        return 0;
    }
}


int LSAPI_Init(void)
{
    if ( !g_inited )
    {
        s_uid = geteuid();
        s_secret[0] = 0;
        lsapi_signal(SIGPIPE, lsapi_sigpipe);
        lsapi_signal(SIGUSR1, lsapi_siguser1);

#if defined(SIGXFSZ) && defined(SIG_IGN)
        signal(SIGXFSZ, SIG_IGN);
#endif
        /* let STDOUT function as STDERR,
           just in case writing to STDOUT directly */
        dup2( 2, 1 );
        if ( LSAPI_InitRequest( &g_req, LSAPI_SOCK_FILENO ) == -1 )
            return -1;
        g_inited = 1;
        s_ppid = getppid();
        void *pthread_lib = dlopen("libpthread.so", RTLD_LAZY);
        if (pthread_lib)
            pthread_atfork_func = dlsym(pthread_lib, "pthread_atfork");

    }
    return 0;
}


void LSAPI_Stop(void)
{
    g_running = 0;
}


int LSAPI_IsRunning(void)
{
    return g_running;
}


void LSAPI_Register_Pgrp_Timer_Callback(LSAPI_On_Timer_pf cb)
{
    s_proc_group_timer_cb = cb;
}


int LSAPI_InitRequest( LSAPI_Request * pReq, int fd )
{
    int newfd;
    if ( !pReq )
        return -1;
    memset( pReq, 0, sizeof( LSAPI_Request ) );
    if ( allocateIovec( pReq, 16 ) == -1 )
        return -1;
    pReq->m_pRespBuf = pReq->m_pRespBufPos = (char *)malloc( LSAPI_RESP_BUF_SIZE );
    if ( !pReq->m_pRespBuf )
        return -1;
    pReq->m_pRespBufEnd = pReq->m_pRespBuf + LSAPI_RESP_BUF_SIZE;
    pReq->m_pIovecCur = pReq->m_pIovecToWrite = pReq->m_pIovec + 1;
    pReq->m_respPktHeaderEnd = &pReq->m_respPktHeader[5];
    if ( allocateRespHeaderBuf( pReq, LSAPI_INIT_RESP_HEADER_LEN ) == -1 )
        return -1;

    if ( fd == STDIN_FILENO )
    {
        fd = dup( fd );
        newfd = open( "/dev/null", O_RDWR );
        dup2( newfd, STDIN_FILENO );
    }

    if ( isPipe( fd ) )
    {
        pReq->m_fdListen = -1;
        pReq->m_fd = fd;
    }
    else
    {
        pReq->m_fdListen = fd;
        pReq->m_fd = -1;
        lsapi_set_nblock( fd, 1 );
    }
    return 0;
}


int LSAPI_Is_Listen( void )
{
    return LSAPI_Is_Listen_r( &g_req );
}


int LSAPI_Is_Listen_r( LSAPI_Request * pReq)
{
    return pReq->m_fdListen != -1;
}


int LSAPI_Accept_r( LSAPI_Request * pReq )
{
    char        achPeer[128];
    socklen_t   len;
    int         nodelay = 1;

    if ( !pReq )
        return -1;
    if ( LSAPI_Finish_r( pReq ) == -1 )
        return -1;
    lsapi_set_nblock( pReq->m_fdListen , 0 );
    while( g_running )
    {
        if ( pReq->m_fd == -1 )
        {
            if ( pReq->m_fdListen != -1)
            {
                len = sizeof( achPeer );
                pReq->m_fd = accept( pReq->m_fdListen,
                            (struct sockaddr *)&achPeer, &len );
                if ( pReq->m_fd == -1 )
                {
                    if (( errno == EINTR )||( errno == EAGAIN))
                        continue;
                    else
                        return -1;
                }
                else
                {
                    if (s_worker_status)
                        __atomic_store_n(&s_worker_status->m_state,
                                       LSAPI_STATE_CONNECTED, __ATOMIC_SEQ_CST);
                    if (s_busy_workers)
                        __atomic_fetch_add(s_busy_workers, 1, __ATOMIC_SEQ_CST);
                    lsapi_set_nblock( pReq->m_fd , 0 );
                    if (((struct sockaddr *)&achPeer)->sa_family == AF_INET )
                    {
                        setsockopt(pReq->m_fd, IPPROTO_TCP, TCP_NODELAY,
                                   (char *)&nodelay, sizeof(nodelay));
                    }
                    //init_conn_key( pReq->m_fd );
                    //OPTIMIZATION
                    if ( s_accept_notify )
                        if ( notify_req_received( pReq->m_fd ) == -1 )
                                return -1;
                }
            }
            else
                return -1;
        }
        if ( !readReq( pReq ) )
            break;
        //abort();
        lsapi_close_connection(pReq);
        LSAPI_Reset_r( pReq );
    }
    return 0;
}


static struct lsapi_packet_header   finish_close[2] =
{
    {'L', 'S', LSAPI_RESP_END, LSAPI_ENDIAN, {LSAPI_PACKET_HEADER_LEN} },
    {'L', 'S', LSAPI_CONN_CLOSE, LSAPI_ENDIAN, {LSAPI_PACKET_HEADER_LEN} }
};


int LSAPI_Finish_r( LSAPI_Request * pReq )
{
    /* finish req body */
    if ( !pReq )
        return -1;
    if (pReq->m_reqState)
    {
        if ( pReq->m_fd != -1 )
        {
            if ( pReq->m_reqState & LSAPI_ST_RESP_HEADER )
            {
                LSAPI_FinalizeRespHeaders_r( pReq );
            }
            if ( pReq->m_pRespBufPos != pReq->m_pRespBuf )
            {
                Flush_RespBuf_r( pReq );
            }

            pReq->m_pIovecCur->iov_base = (void *)finish_close;
            pReq->m_pIovecCur->iov_len  = LSAPI_PACKET_HEADER_LEN;
            pReq->m_totalLen += LSAPI_PACKET_HEADER_LEN;
            ++pReq->m_pIovecCur;
            LSAPI_Flush_r( pReq );
        }
        LSAPI_Reset_r( pReq );
    }
    return 0;
}


int LSAPI_End_Response_r(LSAPI_Request * pReq)
{
    if (!pReq)
        return -1;
    if (pReq->m_reqState & LSAPI_ST_BACKGROUND)
        return 0;
    if (pReq->m_reqState)
    {
        if ( pReq->m_fd != -1 )
        {
            if ( pReq->m_reqState & LSAPI_ST_RESP_HEADER )
            {
                if ( pReq->m_pRespHeaderBufPos <= pReq->m_pRespHeaderBuf )
                    return 0;

                LSAPI_FinalizeRespHeaders_r( pReq );
            }
            if ( pReq->m_pRespBufPos != pReq->m_pRespBuf )
            {
                Flush_RespBuf_r( pReq );
            }

            pReq->m_pIovecCur->iov_base = (void *)finish_close;
            pReq->m_pIovecCur->iov_len  = LSAPI_PACKET_HEADER_LEN << 1;
            pReq->m_totalLen += LSAPI_PACKET_HEADER_LEN << 1;
            ++pReq->m_pIovecCur;
            LSAPI_Flush_r( pReq );
            lsapi_close_connection(pReq);
        }
        pReq->m_reqState |= LSAPI_ST_BACKGROUND;
    }
    return 0;
}


void LSAPI_Reset_r( LSAPI_Request * pReq )
{
    pReq->m_pRespBufPos         = pReq->m_pRespBuf;
    pReq->m_pIovecCur           = pReq->m_pIovecToWrite = pReq->m_pIovec + 1;
    pReq->m_pRespHeaderBufPos   = pReq->m_pRespHeaderBuf;

    memset( &pReq->m_pHeaderIndex, 0,
            (char *)(pReq->m_respHeaderLen) - (char *)&pReq->m_pHeaderIndex );
}


int LSAPI_Release_r( LSAPI_Request * pReq )
{
    if ( pReq->m_pReqBuf )
        free( pReq->m_pReqBuf );
    if ( pReq->m_pSpecialEnvList )
        free( pReq->m_pSpecialEnvList );
    if ( pReq->m_pEnvList )
        free( pReq->m_pEnvList );
    if ( pReq->m_pRespHeaderBuf )
        free( pReq->m_pRespHeaderBuf );
    return 0;
}


char * LSAPI_GetHeader_r( LSAPI_Request * pReq, int headerIndex )
{
    int off;
    if ( !pReq || ((unsigned int)headerIndex > H_TRANSFER_ENCODING) )
        return NULL;
    off = pReq->m_pHeaderIndex->m_headerOff[ headerIndex ];
    if ( !off )
        return NULL;
    if ( *(pReq->m_pHttpHeader + off
        + pReq->m_pHeaderIndex->m_headerLen[ headerIndex ]) )
    {
        *( pReq->m_pHttpHeader + off
            + pReq->m_pHeaderIndex->m_headerLen[ headerIndex ]) = 0;
    }
    return pReq->m_pHttpHeader + off;
}


static int readBodyToReqBuf( LSAPI_Request * pReq )
{
    off_t bodyLeft;
    ssize_t len = pReq->m_bufRead - pReq->m_bufProcessed;
    if ( len > 0 )
        return len;
    pReq->m_bufRead = pReq->m_bufProcessed = pReq->m_pHeader->m_pktHeader.m_packetLen.m_iLen;

    bodyLeft = pReq->m_reqBodyLen - pReq->m_reqBodyRead;
    len = pReq->m_reqBufSize - pReq->m_bufRead;
    if ( len < 0 )
        return -1;
    if ( len > bodyLeft )
        len = bodyLeft;

    len = lsapi_read( pReq->m_fd, pReq->m_pReqBuf + pReq->m_bufRead, len );
    if ( len > 0 )
        pReq->m_bufRead += len;
    return len;
}


int LSAPI_ReqBodyGetChar_r( LSAPI_Request * pReq )
{
    if (!pReq || (pReq->m_fd ==-1) )
        return EOF;
    if ( pReq->m_bufProcessed >= pReq->m_bufRead )
    {
        if ( readBodyToReqBuf( pReq ) <= 0 )
            return EOF;
    }
    ++pReq->m_reqBodyRead;
    return (unsigned char)*(pReq->m_pReqBuf + pReq->m_bufProcessed++);
}


int LSAPI_ReqBodyGetLine_r( LSAPI_Request * pReq, char * pBuf, size_t bufLen, int *getLF )
{
    ssize_t len;
    ssize_t left;
    char * pBufEnd = pBuf + bufLen - 1;
    char * pBufCur = pBuf;
    char * pCur;
    char * p;
    if (!pReq || pReq->m_fd == -1 || !pBuf || !getLF)
        return -1;
    *getLF = 0;
    while( (left = pBufEnd - pBufCur ) > 0 )
    {

        len = pReq->m_bufRead - pReq->m_bufProcessed;
        if ( len <= 0 )
        {
            if ( (len = readBodyToReqBuf( pReq )) <= 0 )
            {
                *getLF = 1;
                break;
            }
        }
        if ( len > left )
            len = left;
        pCur = pReq->m_pReqBuf + pReq->m_bufProcessed;
        p = memchr( pCur, '\n', len );
        if ( p )
            len = p - pCur + 1;
        memmove( pBufCur, pCur, len );
        pBufCur += len;
        pReq->m_bufProcessed += len;

        pReq->m_reqBodyRead += len;

        if ( p )
        {
            *getLF = 1;
            break;
        }
    }
    *pBufCur = 0;

    return pBufCur - pBuf;
}


ssize_t LSAPI_ReadReqBody_r( LSAPI_Request * pReq, char * pBuf, size_t bufLen )
{
    ssize_t len;
    off_t total;
    /* char *pOldBuf = pBuf; */
    if (!pReq || pReq->m_fd == -1 || !pBuf || (ssize_t)bufLen < 0)
        return -1;

    total = pReq->m_reqBodyLen - pReq->m_reqBodyRead;

    if ( total <= 0 )
        return 0;
    if ( total < (ssize_t)bufLen )
        bufLen = total;

    total = 0;
    len = pReq->m_bufRead - pReq->m_bufProcessed;
    if ( len > 0 )
    {
        if ( len > (ssize_t)bufLen )
            len = bufLen;
        memmove( pBuf, pReq->m_pReqBuf + pReq->m_bufProcessed, len );
        pReq->m_bufProcessed += len;
        total += len;
        pBuf += len;
        bufLen -= len;
    }
    while( bufLen > 0 )
    {
        len = lsapi_read( pReq->m_fd, pBuf, bufLen );
        if ( len > 0 )
        {
            total += len;
            pBuf += len;
            bufLen -= len;
        }
        else if ( len <= 0 )
        {
            if ( !total)
                return -1;
            break;
        }
    }
    pReq->m_reqBodyRead += total;
    return total;

}


ssize_t LSAPI_Write_r( LSAPI_Request * pReq, const char * pBuf, size_t len )
{
    struct lsapi_packet_header * pHeader;
    const char * pEnd;
    const char * p;
    ssize_t bufLen;
    ssize_t toWrite;
    ssize_t packetLen;
    int skip = 0;

    if (!pReq || !pBuf)
        return -1;
    if (pReq->m_reqState & LSAPI_ST_BACKGROUND)
        return len;
    if (pReq->m_fd == -1)
        return -1;
    if ( pReq->m_reqState & LSAPI_ST_RESP_HEADER )
    {
        LSAPI_FinalizeRespHeaders_r( pReq );
/*
        if ( *pBuf == '\r' )
        {
            ++skip;
        }
        if ( *pBuf == '\n' )
        {
            ++skip;
        }
*/
    }
    pReq->m_reqState |= LSAPI_ST_RESP_BODY;

    if ( ((ssize_t)len - skip) < pReq->m_pRespBufEnd - pReq->m_pRespBufPos )
    {
        memmove( pReq->m_pRespBufPos, pBuf + skip, len - skip );
        pReq->m_pRespBufPos += len - skip;
        return len;
    }


    pHeader = pReq->m_respPktHeader;
    p       = pBuf + skip;
    pEnd    = pBuf + len;
    bufLen  = pReq->m_pRespBufPos - pReq->m_pRespBuf;

    while( ( toWrite = pEnd - p ) > 0 )
    {
        packetLen = toWrite + bufLen;
        if ( LSAPI_MAX_DATA_PACKET_LEN < packetLen)
        {
            packetLen = LSAPI_MAX_DATA_PACKET_LEN;
            toWrite = packetLen - bufLen;
        }

        lsapi_buildPacketHeader( pHeader, LSAPI_RESP_STREAM,
                            packetLen + LSAPI_PACKET_HEADER_LEN );
        pReq->m_totalLen += packetLen + LSAPI_PACKET_HEADER_LEN;

        pReq->m_pIovecCur->iov_base = (void *)pHeader;
        pReq->m_pIovecCur->iov_len  = LSAPI_PACKET_HEADER_LEN;
        ++pReq->m_pIovecCur;
        ++pHeader;
        if ( bufLen > 0 )
        {
            pReq->m_pIovecCur->iov_base = (void *)pReq->m_pRespBuf;
            pReq->m_pIovecCur->iov_len  = bufLen;
            pReq->m_pRespBufPos = pReq->m_pRespBuf;
            ++pReq->m_pIovecCur;
            bufLen = 0;
        }

        pReq->m_pIovecCur->iov_base = (void *)p;
        pReq->m_pIovecCur->iov_len  = toWrite;
        ++pReq->m_pIovecCur;
        p += toWrite;

        if ( pHeader >= pReq->m_respPktHeaderEnd - 1)
        {
            if ( LSAPI_Flush_r( pReq ) == -1 )
                return -1;
            pHeader = pReq->m_respPktHeader;
        }
    }
    if ( pHeader != pReq->m_respPktHeader )
        if ( LSAPI_Flush_r( pReq ) == -1 )
            return -1;
    return p - pBuf;
}


#if defined(__FreeBSD__ )
ssize_t gsendfile( int fdOut, int fdIn, off_t* off, size_t size )
{
    ssize_t ret;
    off_t written;
    ret = sendfile( fdIn, fdOut, *off, size, NULL, &written, 0 );
    if ( written > 0 )
    {
        ret = written;
        *off += ret;
    }
    return ret;
}
#endif

#if defined(__OpenBSD__) || defined(__NetBSD__)
ssize_t gsendfile( int fdOut, int fdIn, off_t* off, size_t size )
{
    ssize_t ret;
    off_t written = 0;
    const size_t bufsiz = 16384;
    unsigned char in[bufsiz] = {0};

    if (lseek(fdIn, *off, SEEK_SET) == -1) {
        return -1;
    }

    while (size > 0) {
        size_t tor = size > sizeof(in) ? sizeof(in) : size;
        ssize_t c = read(fdIn, in, tor);
        if (c <= 0) {
            goto end;
        }

        ssize_t w = write(fdOut, in, c);
        if (w > 0)
            written += w;

        if (w != c) {
            goto end;
        }
        size -= c;
    }

end:
    *off += written;
    return 0;
}
#endif


#if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
ssize_t gsendfile( int fdOut, int fdIn, off_t* off, size_t size )
{
    ssize_t ret;
    off_t len = size;
    ret = sendfile( fdIn, fdOut, *off, &len, NULL, 0 );
    if (( ret == 0 )&&( len > 0 ))
    {
        ret = len;
        *off += len;
    }
    return ret;
}
#endif


#if defined(sun) || defined(__sun)
#include <sys/sendfile.h>
ssize_t gsendfile( int fdOut, int fdIn, off_t *off, size_t size )
{
    int n = 0 ;
    sendfilevec_t vec[1];

    vec[n].sfv_fd   = fdIn;
    vec[n].sfv_flag = 0;
    vec[n].sfv_off  = *off;
    vec[n].sfv_len  = size;
    ++n;

    size_t written;
    ssize_t ret = sendfilev( fdOut, vec, n, &written );
    if (( !ret )||( errno == EAGAIN ))
        ret = written;
    if ( ret > 0 )
        *off += ret;
    return ret;
}
#endif


#if defined(linux) || defined(__linux) || defined(__linux__) || \
    defined(__gnu_linux__)
#include <sys/sendfile.h>
#define gsendfile sendfile
#endif


#if defined(HPUX)
ssize_t gsendfile( int fdOut, int fdIn, off_t * off, size_t size )
{
    return sendfile( fdOut, fdIn, off, size, NULL, 0 );
}
#endif


ssize_t LSAPI_sendfile_r( LSAPI_Request * pReq, int fdIn, off_t* off, size_t size )
{
    struct lsapi_packet_header * pHeader = pReq->m_respPktHeader;
    if ( !pReq || (pReq->m_fd == -1) || fdIn == -1 )
        return -1;
    if ( pReq->m_reqState & LSAPI_ST_RESP_HEADER )
    {
        LSAPI_FinalizeRespHeaders_r( pReq );
    }
    pReq->m_reqState |= LSAPI_ST_RESP_BODY;

    LSAPI_Flush_r(pReq);

    lsapi_buildPacketHeader( pHeader, LSAPI_RESP_STREAM,
                            size + LSAPI_PACKET_HEADER_LEN );


    if (write(pReq->m_fd,  (const char *) pHeader, LSAPI_PACKET_HEADER_LEN ) != LSAPI_PACKET_HEADER_LEN)
        return -1;

    return gsendfile( pReq->m_fd, fdIn, off, size );
}


void Flush_RespBuf_r( LSAPI_Request * pReq )
{
    struct lsapi_packet_header * pHeader = pReq->m_respPktHeader;
    int bufLen = pReq->m_pRespBufPos - pReq->m_pRespBuf;
    pReq->m_reqState |= LSAPI_ST_RESP_BODY;
    lsapi_buildPacketHeader( pHeader, LSAPI_RESP_STREAM,
                        bufLen + LSAPI_PACKET_HEADER_LEN );
    pReq->m_totalLen += bufLen + LSAPI_PACKET_HEADER_LEN;

    pReq->m_pIovecCur->iov_base = (void *)pHeader;
    pReq->m_pIovecCur->iov_len  = LSAPI_PACKET_HEADER_LEN;
    ++pReq->m_pIovecCur;
    ++pHeader;
    if ( bufLen > 0 )
    {
        pReq->m_pIovecCur->iov_base = (void *)pReq->m_pRespBuf;
        pReq->m_pIovecCur->iov_len  = bufLen;
        pReq->m_pRespBufPos = pReq->m_pRespBuf;
        ++pReq->m_pIovecCur;
        bufLen = 0;
    }
}


int LSAPI_Flush_r( LSAPI_Request * pReq )
{
    int ret = 0;
    int n;
    if ( !pReq )
        return -1;
    n = pReq->m_pIovecCur - pReq->m_pIovecToWrite;
    if (( 0 == n )&&( pReq->m_pRespBufPos == pReq->m_pRespBuf ))
        return 0;
    if ( pReq->m_fd == -1 )
    {
        pReq->m_pRespBufPos = pReq->m_pRespBuf;
        pReq->m_totalLen = 0;
        pReq->m_pIovecCur = pReq->m_pIovecToWrite = pReq->m_pIovec;
        return -1;
    }
    if ( pReq->m_reqState & LSAPI_ST_RESP_HEADER )
    {
        LSAPI_FinalizeRespHeaders_r( pReq );
    }
    if ( pReq->m_pRespBufPos != pReq->m_pRespBuf )
    {
        Flush_RespBuf_r( pReq );
    }

    n = pReq->m_pIovecCur - pReq->m_pIovecToWrite;
    if ( n > 0 )
    {

        ret = lsapi_writev( pReq->m_fd, &pReq->m_pIovecToWrite,
                  n, pReq->m_totalLen );
        if ( ret < pReq->m_totalLen )
        {
            lsapi_close_connection(pReq);
            ret = -1;
        }
        pReq->m_totalLen = 0;
        pReq->m_pIovecCur = pReq->m_pIovecToWrite = pReq->m_pIovec;
    }
    return ret;
}


ssize_t LSAPI_Write_Stderr_r( LSAPI_Request * pReq, const char * pBuf, size_t len )
{
    struct lsapi_packet_header header;
    const char * pEnd;
    const char * p;
    ssize_t packetLen;
    ssize_t totalLen;
    int ret;
    struct iovec iov[2];
    struct iovec *pIov;

    if ( !pReq )
        return -1;
    if (s_stderr_log_path || pReq->m_fd == -1 || pReq->m_fd == pReq->m_fdListen)
        return write( 2, pBuf, len );
    if ( pReq->m_pRespBufPos != pReq->m_pRespBuf )
    {
        LSAPI_Flush_r( pReq );
    }

    p       = pBuf;
    pEnd    = pBuf + len;

    while( ( packetLen = pEnd - p ) > 0 )
    {
        if ( LSAPI_MAX_DATA_PACKET_LEN < packetLen)
        {
            packetLen = LSAPI_MAX_DATA_PACKET_LEN;
        }

        lsapi_buildPacketHeader( &header, LSAPI_STDERR_STREAM,
                            packetLen + LSAPI_PACKET_HEADER_LEN );
        totalLen = packetLen + LSAPI_PACKET_HEADER_LEN;

        iov[0].iov_base = (void *)&header;
        iov[0].iov_len  = LSAPI_PACKET_HEADER_LEN;

        iov[1].iov_base = (void *)p;
        iov[1].iov_len  = packetLen;
        p += packetLen;
        pIov = iov;
        ret = lsapi_writev( pReq->m_fd, &pIov,
                  2, totalLen );
        if ( ret < totalLen )
        {
            lsapi_close_connection(pReq);
            ret = -1;
        }
    }
    return p - pBuf;
}


static char * GetHeaderVar( LSAPI_Request * pReq, const char * name )
{
    int i;
    char * pValue;
    for( i = 0; i < H_TRANSFER_ENCODING; ++i )
    {
        if ( pReq->m_pHeaderIndex->m_headerOff[i] )
        {
            if ( strcmp( name, CGI_HEADERS[i] ) == 0 )
            {
                pValue = pReq->m_pHttpHeader
                         + pReq->m_pHeaderIndex->m_headerOff[i];
                if ( *(pValue + pReq->m_pHeaderIndex->m_headerLen[i]) != '\0')
                {
                    *(pValue + pReq->m_pHeaderIndex->m_headerLen[i]) = '\0';
                }
                return pValue;
            }
        }
    }
    if ( pReq->m_pHeader->m_cntUnknownHeaders > 0 )
    {
        const char *p;
        char *pKey;
        char *pKeyEnd;
        int  keyLen;
        struct lsapi_header_offset * pCur, *pEnd;
        pCur = pReq->m_pUnknownHeader;
        pEnd = pCur + pReq->m_pHeader->m_cntUnknownHeaders;
        while( pCur < pEnd )
        {
            pKey = pReq->m_pHttpHeader + pCur->nameOff;
            keyLen = pCur->nameLen;
            pKeyEnd = pKey + keyLen;
            p = &name[5];

            while(( pKey < pKeyEnd )&&( *p ))
            {
                char ch = toupper( *pKey );
                if ((ch != *p )||(( *p == '_' )&&( ch != '-')))
                    break;
                ++p; ++pKey;
            }
            if (( pKey == pKeyEnd )&& (!*p ))
            {
                pValue = pReq->m_pHttpHeader + pCur->valueOff;

                if ( *(pValue + pCur->valueLen) != '\0')
                {
                    *(pValue + pCur->valueLen) = '\0';
                }
                return pValue;
            }
            ++pCur;
        }
    }
    return NULL;
}


char * LSAPI_GetEnv_r( LSAPI_Request * pReq, const char * name )
{
    struct LSAPI_key_value_pair * pBegin = pReq->m_pEnvList;
    struct LSAPI_key_value_pair * pEnd = pBegin + pReq->m_pHeader->m_cntEnv;
    if ( !pReq || !name )
        return NULL;
    if ( strncmp( name, "HTTP_", 5 ) == 0 )
    {
        return GetHeaderVar( pReq, name );
    }
    while( pBegin < pEnd )
    {
        if ( strcmp( name, pBegin->pKey ) == 0 )
            return pBegin->pValue;
        ++pBegin;
    }
    return NULL;
}


struct _headerInfo
{
    const char * _name;
    int          _nameLen;
    const char * _value;
    int          _valueLen;
};


int compareValueLocation(const void * v1, const void *v2 )
{
    return ((const struct _headerInfo *)v1)->_value -
           ((const struct _headerInfo *)v2)->_value;
}


int LSAPI_ForeachOrgHeader_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg )
{
    int i;
    int len = 0;
    char * pValue;
    int ret;
    int count = 0;
    struct _headerInfo headers[512];

    if ( !pReq || !fn )
        return -1;

    if ( !pReq->m_pHeaderIndex )
        return 0;

    for( i = 0; i < H_TRANSFER_ENCODING; ++i )
    {
        if ( pReq->m_pHeaderIndex->m_headerOff[i] )
        {
            len = pReq->m_pHeaderIndex->m_headerLen[i];
            pValue = pReq->m_pHttpHeader + pReq->m_pHeaderIndex->m_headerOff[i];
            *(pValue + len ) = 0;
            headers[count]._name = HTTP_HEADERS[i];
            headers[count]._nameLen = HTTP_HEADER_LEN[i];
            headers[count]._value = pValue;
            headers[count]._valueLen = len;
            ++count;

            //ret = (*fn)( HTTP_HEADERS[i], HTTP_HEADER_LEN[i],
            //            pValue, len, arg );
            //if ( ret <= 0 )
            //    return ret;
        }
    }
    if ( pReq->m_pHeader->m_cntUnknownHeaders > 0 )
    {
        char *pKey;
        int  keyLen;
        struct lsapi_header_offset * pCur, *pEnd;
        pCur = pReq->m_pUnknownHeader;
        pEnd = pCur + pReq->m_pHeader->m_cntUnknownHeaders;
        while( pCur < pEnd )
        {
            pKey = pReq->m_pHttpHeader + pCur->nameOff;
            keyLen = pCur->nameLen;
            *(pKey + keyLen ) = 0;

            pValue = pReq->m_pHttpHeader + pCur->valueOff;
            *(pValue + pCur->valueLen ) = 0;
            headers[count]._name = pKey;
            headers[count]._nameLen = keyLen;
            headers[count]._value = pValue;
            headers[count]._valueLen = pCur->valueLen;
            ++count;
            if ( count == 512 )
                break;
            //ret = (*fn)( pKey, keyLen,
            //            pValue, pCur->valueLen, arg );
            //if ( ret <= 0 )
            //    return ret;
            ++pCur;
        }
    }
    qsort( headers, count, sizeof( struct _headerInfo ), compareValueLocation );
    for( i = 0; i < count; ++i )
    {
        ret = (*fn)( headers[i]._name, headers[i]._nameLen,
                    headers[i]._value, headers[i]._valueLen, arg );
        if ( ret <= 0 )
            return ret;
    }
    return count;
}


int LSAPI_ForeachHeader_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg )
{
    int i;
    int len = 0;
    char * pValue;
    int ret;
    int count = 0;
    if ( !pReq || !fn )
        return -1;
    for( i = 0; i < H_TRANSFER_ENCODING; ++i )
    {
        if ( pReq->m_pHeaderIndex->m_headerOff[i] )
        {
            len = pReq->m_pHeaderIndex->m_headerLen[i];
            pValue = pReq->m_pHttpHeader + pReq->m_pHeaderIndex->m_headerOff[i];
            *(pValue + len ) = 0;
            ret = (*fn)( CGI_HEADERS[i], CGI_HEADER_LEN[i],
                        pValue, len, arg );
            ++count;
            if ( ret <= 0 )
                return ret;
        }
    }
    if ( pReq->m_pHeader->m_cntUnknownHeaders > 0 )
    {
        char achHeaderName[256];
        char *p;
        char *pKey;
        char *pKeyEnd ;
        int  keyLen;
        struct lsapi_header_offset * pCur, *pEnd;
        pCur = pReq->m_pUnknownHeader;
        pEnd = pCur + pReq->m_pHeader->m_cntUnknownHeaders;
        while( pCur < pEnd )
        {
            pKey = pReq->m_pHttpHeader + pCur->nameOff;
            keyLen = pCur->nameLen;
            if ( keyLen > 250 )
                keyLen = 250;
            pKeyEnd = pKey + keyLen;
            memcpy( achHeaderName, "HTTP_", 5 );
            p = &achHeaderName[5];

            while( pKey < pKeyEnd )
            {
                char ch = *pKey++;
                if ( ch == '-' )
                    *p++ = '_';
                else
                    *p++ = toupper( ch );
            }
            *p = 0;
            keyLen += 5;

            pValue = pReq->m_pHttpHeader + pCur->valueOff;
            *(pValue + pCur->valueLen ) = 0;
            ret = (*fn)( achHeaderName, keyLen,
                        pValue, pCur->valueLen, arg );
            if ( ret <= 0 )
                return ret;
            ++pCur;
        }
    }
    return count + pReq->m_pHeader->m_cntUnknownHeaders;
}


static int EnvForeach( struct LSAPI_key_value_pair * pEnv,
            int n, LSAPI_CB_EnvHandler fn, void * arg )
{
    struct LSAPI_key_value_pair * pEnd = pEnv + n;
    int ret;
    if ( !pEnv || !fn )
        return -1;
    while( pEnv < pEnd )
    {
        ret = (*fn)( pEnv->pKey, pEnv->keyLen,
                    pEnv->pValue, pEnv->valLen, arg );
        if ( ret <= 0 )
            return ret;
        ++pEnv;
    }
    return n;
}


int LSAPI_ForeachEnv_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg )
{
    if ( !pReq || !fn )
        return -1;
    if ( pReq->m_pHeader->m_cntEnv > 0 )
    {
        return EnvForeach( pReq->m_pEnvList, pReq->m_pHeader->m_cntEnv,
                    fn, arg );
    }
    return 0;
}


int LSAPI_ForeachSpecialEnv_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg )
{
    if ( !pReq || !fn )
        return -1;
    if ( pReq->m_pHeader->m_cntSpecialEnv > 0 )
    {
        return EnvForeach( pReq->m_pSpecialEnvList,
                pReq->m_pHeader->m_cntSpecialEnv,
                    fn, arg );
    }
    return 0;

}


int LSAPI_FinalizeRespHeaders_r( LSAPI_Request * pReq )
{
    if ( !pReq || !pReq->m_pIovec )
        return -1;
    if ( !( pReq->m_reqState & LSAPI_ST_RESP_HEADER ) )
        return 0;
    pReq->m_reqState &= ~LSAPI_ST_RESP_HEADER;
    if ( pReq->m_pRespHeaderBufPos > pReq->m_pRespHeaderBuf )
    {
        pReq->m_pIovecCur->iov_base = (void *)pReq->m_pRespHeaderBuf;
        pReq->m_pIovecCur->iov_len  = pReq->m_pRespHeaderBufPos - pReq->m_pRespHeaderBuf;
        pReq->m_totalLen += pReq->m_pIovecCur->iov_len;
        ++pReq->m_pIovecCur;
    }

    pReq->m_pIovec->iov_len  = sizeof( struct lsapi_resp_header)
            + pReq->m_respHeader.m_respInfo.m_cntHeaders * sizeof( short );
    pReq->m_totalLen += pReq->m_pIovec->iov_len;

    lsapi_buildPacketHeader( &pReq->m_respHeader.m_pktHeader,
                    LSAPI_RESP_HEADER, pReq->m_totalLen  );
    pReq->m_pIovec->iov_base = (void *)&pReq->m_respHeader;
    pReq->m_pIovecToWrite = pReq->m_pIovec;
    return 0;
}


int LSAPI_AppendRespHeader2_r( LSAPI_Request * pReq, const char * pHeaderName,
                              const char * pHeaderValue )
{
    int nameLen, valLen, len;
    if ( !pReq || !pHeaderName || !pHeaderValue )
        return -1;
    if ( pReq->m_reqState & LSAPI_ST_RESP_BODY )
        return -1;
    if ( pReq->m_respHeader.m_respInfo.m_cntHeaders >= LSAPI_MAX_RESP_HEADERS )
        return -1;
    nameLen = strlen( pHeaderName );
    valLen = strlen( pHeaderValue );
    if ( nameLen == 0 )
        return -1;
    while( nameLen > 0 )
    {
        char ch = *(pHeaderName + nameLen - 1 );
        if (( ch == '\n' )||( ch == '\r' ))
            --nameLen;
        else
            break;
    }
    if ( nameLen <= 0 )
        return 0;
    while( valLen > 0 )
    {
        char ch = *(pHeaderValue + valLen - 1 );
        if (( ch == '\n' )||( ch == '\r' ))
            --valLen;
        else
            break;
    }
    len = nameLen + valLen + 1;
    if ( len > LSAPI_RESP_HTTP_HEADER_MAX )
        return -1;

    if ( pReq->m_pRespHeaderBufPos + len + 1 > pReq->m_pRespHeaderBufEnd )
    {
        int newlen = pReq->m_pRespHeaderBufPos + len + 4096 - pReq->m_pRespHeaderBuf;
        newlen -= newlen % 4096;
        if ( allocateRespHeaderBuf( pReq, newlen ) == -1 )
            return -1;
    }
    memmove( pReq->m_pRespHeaderBufPos, pHeaderName, nameLen );
    pReq->m_pRespHeaderBufPos += nameLen;
    *pReq->m_pRespHeaderBufPos++ = ':';
    memmove( pReq->m_pRespHeaderBufPos, pHeaderValue, valLen );
    pReq->m_pRespHeaderBufPos += valLen;
    *pReq->m_pRespHeaderBufPos++ = 0;
    ++len;  /* add one byte padding for \0 */
    pReq->m_respHeaderLen[pReq->m_respHeader.m_respInfo.m_cntHeaders] = len;
    ++pReq->m_respHeader.m_respInfo.m_cntHeaders;
    return 0;
}


int LSAPI_AppendRespHeader_r( LSAPI_Request * pReq, const char * pBuf, int len )
{
    if ( !pReq || !pBuf || len <= 0 || len > LSAPI_RESP_HTTP_HEADER_MAX )
        return -1;
    if ( pReq->m_reqState & LSAPI_ST_RESP_BODY )
        return -1;
    if ( pReq->m_respHeader.m_respInfo.m_cntHeaders >= LSAPI_MAX_RESP_HEADERS )
        return -1;
    while( len > 0 )
    {
        char ch = *(pBuf + len - 1 );
        if (( ch == '\n' )||( ch == '\r' ))
            --len;
        else
            break;
    }
    if ( len <= 0 )
        return 0;
    if ( pReq->m_pRespHeaderBufPos + len + 1 > pReq->m_pRespHeaderBufEnd )
    {
        int newlen = pReq->m_pRespHeaderBufPos + len + 4096 - pReq->m_pRespHeaderBuf;
        newlen -= newlen % 4096;
        if ( allocateRespHeaderBuf( pReq, newlen ) == -1 )
            return -1;
    }
    memmove( pReq->m_pRespHeaderBufPos, pBuf, len );
    pReq->m_pRespHeaderBufPos += len;
    *pReq->m_pRespHeaderBufPos++ = 0;
    ++len;  /* add one byte padding for \0 */
    pReq->m_respHeaderLen[pReq->m_respHeader.m_respInfo.m_cntHeaders] = len;
    ++pReq->m_respHeader.m_respInfo.m_cntHeaders;
    return 0;
}


int LSAPI_CreateListenSock2( const struct sockaddr * pServerAddr, int backlog )
{
    int ret;
    int fd;
    int flag = 1;
    int addr_len;

    switch( pServerAddr->sa_family )
    {
    case AF_INET:
        addr_len = 16;
        break;
    case AF_INET6:
        addr_len = sizeof( struct sockaddr_in6 );
        break;
    case AF_UNIX:
        addr_len = sizeof( struct sockaddr_un );
        unlink( ((struct sockaddr_un *)pServerAddr)->sun_path );
        break;
    default:
        return -1;
    }

    fd = socket( pServerAddr->sa_family, SOCK_STREAM, 0 );
    if ( fd == -1 )
        return -1;

    fcntl( fd, F_SETFD, FD_CLOEXEC );

    if(setsockopt( fd, SOL_SOCKET, SO_REUSEADDR,
                (char *)( &flag ), sizeof(flag)) == 0)
    {
        ret = bind( fd, pServerAddr, addr_len );
        if ( !ret )
        {
            ret = listen( fd, backlog );
            if ( !ret )
                return fd;
        }
    }

    ret = errno;
    close(fd);
    errno = ret;
    return -1;
}


int LSAPI_ParseSockAddr( const char * pBind, struct sockaddr * pAddr )
{
    char achAddr[256];
    char * p = achAddr;
    char * pEnd;
    struct addrinfo *res, hints;
    int  doAddrInfo = 0;
    int port;

    if ( !pBind )
        return -1;

    while( isspace( *pBind ) )
        ++pBind;

    strncpy(achAddr, pBind, 255);
    achAddr[255] = 0;

    switch( *p )
    {
    case '/':
        pAddr->sa_family = AF_UNIX;
        strncpy( ((struct sockaddr_un *)pAddr)->sun_path, p,
                sizeof(((struct sockaddr_un *)pAddr)->sun_path) );
        return 0;

    case '[':
        pAddr->sa_family = AF_INET6;
        ++p;
        pEnd = strchr( p, ']' );
        if ( !pEnd )
            return -1;
        *pEnd++ = 0;

        if ( *p == '*' )
        {
            strcpy( achAddr, "::" );
            p = achAddr;
        }
        doAddrInfo = 1;
        break;

    default:
        pAddr->sa_family = AF_INET;
        pEnd = strchr( p, ':' );
        if ( !pEnd )
            return -1;
        *pEnd++ = 0;

        doAddrInfo = 0;
        if ( *p == '*' )
        {
            ((struct sockaddr_in *)pAddr)->sin_addr.s_addr = htonl(INADDR_ANY);
        }
        else if (!strcasecmp( p, "localhost" ) )
            ((struct sockaddr_in *)pAddr)->sin_addr.s_addr = htonl( INADDR_LOOPBACK );
        else
        {
#ifdef HAVE_INET_PTON
            if (!inet_pton(AF_INET, p, &((struct sockaddr_in *)pAddr)->sin_addr))
#else
            ((struct sockaddr_in *)pAddr)->sin_addr.s_addr = inet_addr( p );
            if ( ((struct sockaddr_in *)pAddr)->sin_addr.s_addr == INADDR_BROADCAST)
#endif
            {
                doAddrInfo = 1;
            }
        }
        break;
    }
    if ( *pEnd == ':' )
        ++pEnd;

    port = atoi( pEnd );
    if (( port <= 0 )||( port > 65535 ))
        return -1;
    if ( doAddrInfo )
    {

        memset(&hints, 0, sizeof(hints));

        hints.ai_family   = pAddr->sa_family;
        hints.ai_socktype = SOCK_STREAM;
        hints.ai_protocol = IPPROTO_TCP;

        if ( getaddrinfo(p, NULL, &hints, &res) )
        {
            return -1;
        }

        memcpy(pAddr, res->ai_addr, res->ai_addrlen);
        freeaddrinfo(res);
    }

    if ( pAddr->sa_family == AF_INET )
        ((struct sockaddr_in *)pAddr)->sin_port = htons( port );
    else
        ((struct sockaddr_in6 *)pAddr)->sin6_port = htons( port );
    return 0;

}


int LSAPI_CreateListenSock( const char * pBind, int backlog )
{
    char serverAddr[128];
    int ret;
    int fd = -1;
    ret = LSAPI_ParseSockAddr( pBind, (struct sockaddr *)serverAddr );
    if ( !ret )
    {
        fd = LSAPI_CreateListenSock2( (struct sockaddr *)serverAddr, backlog );
    }
    return fd;
}


static fn_select_t g_fnSelect = select;
typedef struct _lsapi_prefork_server
{
    int m_fd;
    int m_iMaxChildren;
    int m_iExtraChildren;
    int m_iCurChildren;
    int m_iMaxIdleChildren;
    int m_iServerMaxIdle;
    int m_iChildrenMaxIdleTime;
    int m_iMaxReqProcessTime;
    int m_iAvoidFork;

    lsapi_child_status * m_pChildrenStatus;
    lsapi_child_status * m_pChildrenStatusCur;
    lsapi_child_status * m_pChildrenStatusEnd;

}lsapi_prefork_server;
static lsapi_prefork_server * g_prefork_server = NULL;


int LSAPI_Init_Prefork_Server( int max_children, fn_select_t fp, int avoidFork )
{
    if ( g_prefork_server )
        return 0;
    if ( max_children <= 1 )
        return -1;
    if ( max_children >= 10000)
        max_children = 10000;

    if (s_max_busy_workers == 0)
        s_max_busy_workers = max_children / 2 + 1;

    g_prefork_server = (lsapi_prefork_server *)malloc( sizeof( lsapi_prefork_server ) );
    if ( !g_prefork_server )
        return -1;
    memset( g_prefork_server, 0, sizeof( lsapi_prefork_server ) );

    if ( fp != NULL )
        g_fnSelect = fp;

    s_ppid = getppid();
    s_pid = getpid();
    setpgid( s_pid, s_pid );
#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
    s_total_pages = sysconf(_SC_PHYS_PAGES);
#endif
    g_prefork_server->m_iAvoidFork = avoidFork;
    g_prefork_server->m_iMaxChildren = max_children;

    g_prefork_server->m_iExtraChildren = ( avoidFork ) ? 0 : (max_children / 3) ;
    g_prefork_server->m_iMaxIdleChildren = ( avoidFork ) ? (max_children + 1) : (max_children / 3);
    if ( g_prefork_server->m_iMaxIdleChildren == 0 )
        g_prefork_server->m_iMaxIdleChildren = 1;
    g_prefork_server->m_iChildrenMaxIdleTime = 300;
    g_prefork_server->m_iMaxReqProcessTime = 3600;

    setsid();

    return 0;
}


void LSAPI_Set_Server_fd( int fd )
{
    if( g_prefork_server )
        g_prefork_server->m_fd = fd;
}


static int lsapi_accept( int fdListen )
{
    int         fd;
    int         nodelay = 1;
    socklen_t   len;
    char        achPeer[128];

    len = sizeof( achPeer );
    fd = accept( fdListen, (struct sockaddr *)&achPeer, &len );
    if ( fd != -1 )
    {
        if (((struct sockaddr *)&achPeer)->sa_family == AF_INET )
        {
            setsockopt( fd, IPPROTO_TCP, TCP_NODELAY,
                    (char *)&nodelay, sizeof(nodelay));
        }

        //OPTIMIZATION
        //if ( s_accept_notify )
        //    notify_req_received( fd );
    }
    return fd;

}


static unsigned int s_max_reqs = UINT_MAX;
static int s_max_idle_secs = 300;
static int s_stop;

static void lsapi_cleanup(int signal)
{
    s_stop = signal;
}


static lsapi_child_status * find_child_status( int pid )
{
    lsapi_child_status * pStatus = g_prefork_server->m_pChildrenStatus;
    lsapi_child_status * pEnd = g_prefork_server->m_pChildrenStatusEnd;
    while( pStatus < pEnd )
    {
        if ( pStatus->m_pid == pid )
        {
            if (pid == 0)
            {
                memset(pStatus, 0, sizeof( *pStatus ) );
                pStatus->m_pid = -1;
            }
            if ( pStatus + 1 > g_prefork_server->m_pChildrenStatusCur )
                g_prefork_server->m_pChildrenStatusCur = pStatus + 1;
            return pStatus;
        }
        ++pStatus;
    }
    return NULL;
}


void LSAPI_reset_server_state( void )
{
    /*
       Reset child status
    */
    g_prefork_server->m_iCurChildren = 0;
    lsapi_child_status * pStatus = g_prefork_server->m_pChildrenStatus;
    lsapi_child_status * pEnd = g_prefork_server->m_pChildrenStatusEnd;
    while( pStatus < pEnd )
    {
        pStatus->m_pid = 0;
        ++pStatus;
    }
    if (s_busy_workers)
        __atomic_store_n(s_busy_workers, 0, __ATOMIC_SEQ_CST);
    if (s_accepting_workers)
        __atomic_store_n(s_accepting_workers, 0, __ATOMIC_SEQ_CST);

}


static void lsapi_sigchild( int signal )
{
    int status, pid;
    char expect_connected = LSAPI_STATE_CONNECTED;
    char expect_accepting = LSAPI_STATE_ACCEPTING;
    lsapi_child_status * child_status;
    if (g_prefork_server == NULL)
        return;
    while( 1 )
    {
        pid = waitpid( -1, &status, WNOHANG|WUNTRACED );
        if ( pid <= 0 )
        {
            break;
        }
        if ( WIFSIGNALED( status ))
        {
            int sig_num = WTERMSIG( status );
#ifdef WCOREDUMP
            const char * dump = WCOREDUMP( status ) ? "yes" : "no";
#else
            const char * dump = "unknown";
#endif
            lsapi_log("Child process with pid: %d was killed by signal: "
                     "%d, core dumped: %s\n", pid, sig_num, dump );
        }
        if ( pid == s_pid_dump_debug_info )
        {
            pid = 0;
            continue;
        }
        if ( pid == s_ignore_pid )
        {
            pid = 0;
            s_ignore_pid = -1;
            continue;
        }
        child_status = find_child_status( pid );
        if ( child_status )
        {
            if (__atomic_compare_exchange_n(&child_status->m_state,
                                            &expect_connected,
                                            LSAPI_STATE_IDLE, 1,
                                            __ATOMIC_SEQ_CST,
                                            __ATOMIC_SEQ_CST))
            {
                if (s_busy_workers)
                    __atomic_fetch_sub(s_busy_workers, 1, __ATOMIC_SEQ_CST);
            }
            else if (__atomic_compare_exchange_n(&child_status->m_state,
                                                 &expect_accepting,
                                                 LSAPI_STATE_IDLE, 1,
                                                 __ATOMIC_SEQ_CST,
                                                 __ATOMIC_SEQ_CST))
            {
                if (s_accepting_workers)
                    __atomic_fetch_sub(s_accepting_workers, 1, __ATOMIC_SEQ_CST);
            }
            child_status->m_pid = 0;
            --g_prefork_server->m_iCurChildren;
        }
    }
    while(( g_prefork_server->m_pChildrenStatusCur > g_prefork_server->m_pChildrenStatus )
            &&( g_prefork_server->m_pChildrenStatusCur[-1].m_pid == 0 ))
        --g_prefork_server->m_pChildrenStatusCur;

}


static int lsapi_init_children_status(void)
{
    char * pBuf;
    int size = 4096;
    int max_children;
    if (g_prefork_server->m_pChildrenStatus)
        return 0;
    max_children = g_prefork_server->m_iMaxChildren
                        + g_prefork_server->m_iExtraChildren;

    size = max_children * sizeof( lsapi_child_status ) * 2 + 3 * sizeof(int);
    size = (size + 4095) / 4096 * 4096;
    pBuf =( char*) mmap( NULL, size, PROT_READ | PROT_WRITE,
        MAP_ANON | MAP_SHARED, -1, 0 );
    if ( pBuf == MAP_FAILED )
    {
        perror( "Anonymous mmap() failed" );
        return -1;
    }
    memset( pBuf, 0, size );
    g_prefork_server->m_pChildrenStatus = (lsapi_child_status *)pBuf;
    g_prefork_server->m_pChildrenStatusCur = (lsapi_child_status *)pBuf;
    g_prefork_server->m_pChildrenStatusEnd = (lsapi_child_status *)pBuf + max_children;
    s_busy_workers = (int *)g_prefork_server->m_pChildrenStatusEnd;
    s_accepting_workers = s_busy_workers + 1;
    s_global_counter = s_accepting_workers + 1;
    s_avail_pages = (size_t *)(s_global_counter + 1);

    setsid();
    return 0;
}


static void dump_debug_info( lsapi_child_status * pStatus, long tmCur )
{
    char achCmd[1024];
    if ( s_pid_dump_debug_info )
    {
        if ( kill( s_pid_dump_debug_info, 0 ) == 0 )
            return;
    }

    lsapi_log("Possible runaway process, UID: %d, PPID: %d, PID: %d, "
             "reqCount: %d, process time: %ld, checkpoint time: %ld, start "
             "time: %ld\n", getuid(), getppid(), pStatus->m_pid,
             pStatus->m_iReqCounter, tmCur - pStatus->m_tmReqBegin,
             tmCur - pStatus->m_tmLastCheckPoint, tmCur - pStatus->m_tmStart );

    s_pid_dump_debug_info = fork();
    if (s_pid_dump_debug_info == 0)
    {
        snprintf( achCmd, 1024, "gdb --batch -ex \"attach %d\" -ex \"set height 0\" "
                "-ex \"bt\" >&2;PATH=$PATH:/usr/sbin lsof -p %d >&2",
                pStatus->m_pid, pStatus->m_pid );
        if ( system( achCmd ) == -1 )
            perror( "system()" );
        exit( 0 );
    }
}


static void lsapi_check_child_status( long tmCur )
{
    int idle = 0;
    int tobekilled;
    int dying = 0;
    int count = 0;
    lsapi_child_status * pStatus = g_prefork_server->m_pChildrenStatus;
    lsapi_child_status * pEnd = g_prefork_server->m_pChildrenStatusCur;
    while( pStatus < pEnd )
    {
        tobekilled = 0;
        if ( pStatus->m_pid != 0 && pStatus->m_pid != -1)
        {
            ++count;
            if ( !pStatus->m_inProcess )
            {
                if (g_prefork_server->m_iCurChildren - dying
                        > g_prefork_server->m_iMaxChildren
                    || idle > g_prefork_server->m_iMaxIdleChildren)
                {
                    ++pStatus->m_iKillSent;
                    //tobekilled = SIGUSR1;
                }
                else
                {
                    if (s_max_idle_secs> 0
                        && tmCur - pStatus->m_tmWaitBegin > s_max_idle_secs + 5)
                    {
                        ++pStatus->m_iKillSent;
                        //tobekilled = SIGUSR1;
                    }
                }
                if (!pStatus->m_iKillSent)
                    ++idle;
            }
            else
            {
                if (tmCur - pStatus->m_tmReqBegin >
                        g_prefork_server->m_iMaxReqProcessTime)
                {
                    if ((pStatus->m_iKillSent % 5) == 0 && s_dump_debug_info)
                        dump_debug_info( pStatus, tmCur );
                    if ( pStatus->m_iKillSent > 5 )
                    {
                        tobekilled = SIGKILL;
                        lsapi_log("Force killing runaway process PID: %d"
                                 " with SIGKILL\n", pStatus->m_pid );
                    }
                    else
                    {
                        tobekilled = SIGTERM;
                        lsapi_log("Killing runaway process PID: %d with "
                                 "SIGTERM\n", pStatus->m_pid );
                    }
                }
            }
            if ( tobekilled )
            {
                if (( kill( pStatus->m_pid, tobekilled ) == -1 ) &&
                    ( errno == ESRCH ))
                {
                    pStatus->m_pid = 0;
                    --count;
                }
                else
                {
                    ++pStatus->m_iKillSent;
                    ++dying;
                }
            }
        }
        ++pStatus;
    }
    if ( abs( g_prefork_server->m_iCurChildren - count ) > 1 )
    {
        lsapi_log("Children tracking is wrong: Cur Children: %d,"
                  " count: %d, idle: %d, dying: %d\n",
                  g_prefork_server->m_iCurChildren, count, idle, dying );
    }
}


//static int lsapi_all_children_must_die(void)
//{
//    int maxWait;
//    int sec =0;
//    g_prefork_server->m_iMaxReqProcessTime = 10;
//    g_prefork_server->m_iMaxIdleChildren = -1;
//    maxWait = 15;
//
//    while( g_prefork_server->m_iCurChildren && (sec < maxWait) )
//    {
//        lsapi_check_child_status(time(NULL));
//        sleep( 1 );
//        sec++;
//    }
//    if ( g_prefork_server->m_iCurChildren != 0 )
//        kill( -getpgrp(), SIGKILL );
//    return 0;
//}


void set_skip_write(void)
{   s_skip_write = 1;   }


int is_enough_free_mem(void)
{
#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
    //minimum 1GB or 10% available free memory
    return (*s_avail_pages > s_min_avail_pages
            || (*s_avail_pages * 10) / s_total_pages > 0);
#endif
    return 1;
}


static int lsapi_prefork_server_accept( lsapi_prefork_server * pServer,
                                        LSAPI_Request * pReq )
{
    struct sigaction act, old_term, old_quit, old_int,
                    old_usr1, old_child;
    lsapi_child_status * child_status;
    int             wait_secs = 0;
    int             ret = 0;
    int             pid;
    time_t          lastTime = 0;
    time_t          curTime = 0;
    fd_set          readfds;
    struct timeval  timeout;

    sigset_t mask;
    sigset_t orig_mask;

    lsapi_init_children_status();

    act.sa_flags = 0;
    act.sa_handler = lsapi_sigchild;
    sigemptyset(&(act.sa_mask));
    if( sigaction( SIGCHLD, &act, &old_child ) )
    {
        perror( "Can't set signal handler for SIGCHILD" );
        return -1;
    }

    /* Set up handler to kill children upon exit */
    act.sa_flags = 0;
    act.sa_handler = lsapi_cleanup;
    sigemptyset(&(act.sa_mask));
    if( sigaction( SIGTERM, &act, &old_term ) ||
        sigaction( SIGINT,  &act, &old_int  ) ||
        sigaction( SIGUSR1, &act, &old_usr1 ) ||
        sigaction( SIGQUIT, &act, &old_quit ))
    {
        perror( "Can't set signals" );
        return -1;
    }

    while( !s_stop )
    {
        if (s_proc_group_timer_cb != NULL) {
            s_proc_group_timer_cb(&s_ignore_pid);
        }

        curTime = time( NULL );
        if (curTime != lastTime )
        {
            lastTime = curTime;
            if (lsapi_parent_dead())
                break;
            lsapi_check_child_status(curTime );
            if (pServer->m_iServerMaxIdle)
            {
                if ( pServer->m_iCurChildren <= 0 )
                {
                    ++wait_secs;
                    if ( wait_secs > pServer->m_iServerMaxIdle )
                        return -1;
                }
                else
                    wait_secs = 0;
            }
        }

#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
        *s_avail_pages = sysconf(_SC_AVPHYS_PAGES);
//        lsapi_log("Memory total: %zd, free: %zd, free %%%zd\n",
//                  s_total_pages, *s_avail_pages, *s_avail_pages * 100 / s_total_pages);

#endif
        FD_ZERO( &readfds );
        FD_SET( pServer->m_fd, &readfds );
        timeout.tv_sec = 1;
        timeout.tv_usec = 0;
        ret = (*g_fnSelect)(pServer->m_fd+1, &readfds, NULL, NULL, &timeout);
        if (ret == 1 )
        {
            int accepting = 0;
            if (s_accepting_workers)
                accepting = __atomic_load_n(s_accepting_workers, __ATOMIC_SEQ_CST);

            if (pServer->m_iCurChildren > 0
                && accepting > 0)
            {
                usleep(400);
                while(accepting-- > 0)
                    sched_yield();
                continue;
            }
        }
        else if ( ret == -1 )
        {
            if ( errno == EINTR )
                continue;
            /* perror( "select()" ); */
            break;
        }
        else
        {
            continue;
        }

        if (pServer->m_iCurChildren >=
            pServer->m_iMaxChildren + pServer->m_iExtraChildren)
        {
            lsapi_log("Reached max children process limit: %d, extra: %d,"
                     " current: %d, busy: %d, please increase LSAPI_CHILDREN.\n",
                     pServer->m_iMaxChildren, pServer->m_iExtraChildren,
                     pServer->m_iCurChildren,
                     s_busy_workers ? *s_busy_workers : -1 );
            usleep( 100000 );
            continue;
        }

        pReq->m_fd = lsapi_accept( pServer->m_fd );
        if ( pReq->m_fd != -1 )
        {
            wait_secs = 0;
            child_status = find_child_status( 0 );

            sigemptyset( &mask );
            sigaddset( &mask, SIGCHLD );

            if ( sigprocmask(SIG_BLOCK, &mask, &orig_mask) < 0 )
            {
                perror( "sigprocmask(SIG_BLOCK) to block SIGCHLD" );
            }

            pid = fork();

            if ( !pid )
            {
                setsid();
                if (sigprocmask(SIG_SETMASK, &orig_mask, NULL) < 0)
                    perror( "sigprocmask( SIG_SETMASK ) to restore SIGMASK in child" );
                g_prefork_server = NULL;
                s_ppid = getppid();
                s_pid = getpid();
                s_req_processed = 0;
                s_proc_group_timer_cb = NULL;
                s_worker_status = child_status;

                if (pthread_atfork_func)
                    (*pthread_atfork_func)(NULL, NULL, set_skip_write);

                __atomic_store_n(&s_worker_status->m_state,
                                 LSAPI_STATE_CONNECTED, __ATOMIC_SEQ_CST);
                if (s_busy_workers)
                    __atomic_add_fetch(s_busy_workers, 1, __ATOMIC_SEQ_CST);
                lsapi_set_nblock( pReq->m_fd, 0 );
                //keep it open if busy_count is used.
                if (!s_keep_listener && s_busy_workers
                    && *s_busy_workers > (pServer->m_iMaxChildren >> 1))
                    s_keep_listener = 1;
                if ((s_uid == 0 || !s_keep_listener || !is_enough_free_mem())
                    && pReq->m_fdListen != -1 )
                {
                    close( pReq->m_fdListen );
                    pReq->m_fdListen = -1;
                }
                /* don't catch our signals */
                sigaction( SIGCHLD, &old_child, 0 );
                sigaction( SIGTERM, &old_term, 0 );
                sigaction( SIGQUIT, &old_quit, 0 );
                sigaction( SIGINT,  &old_int,  0 );
                sigaction( SIGUSR1, &old_usr1, 0 );
                //init_conn_key( pReq->m_fd );
                lsapi_notify_pid( pReq->m_fd );
                s_notified_pid = 1;
                //if ( s_accept_notify )
                //    return notify_req_received( pReq->m_fd );
                return 0;
            }
            else if ( pid == -1 )
            {
                lsapi_perror("fork() failed, please increase process limit", errno);
                if (child_status)
                    child_status->m_pid = 0;
            }
            else
            {
                ++pServer->m_iCurChildren;
                if ( child_status )
                {
                    child_status->m_pid = pid;
                    child_status->m_tmWaitBegin = curTime;
                    child_status->m_tmStart = curTime;
                }
            }
            close( pReq->m_fd );
            pReq->m_fd = -1;

            if (sigprocmask(SIG_SETMASK, &orig_mask, NULL) < 0)
                perror( "sigprocmask( SIG_SETMASK ) to restore SIGMASK" );

        }
        else
        {
            if (( errno == EINTR )||( errno == EAGAIN))
                continue;
            lsapi_perror("accept() failed", errno);
            return -1;
        }
    }
    sigaction( SIGUSR1, &old_usr1, 0 );
    //kill( -getpgrp(), SIGUSR1 );
    //lsapi_all_children_must_die();  /* Sorry, children ;-) */
    return -1;

}


static struct sigaction old_term, old_quit, old_int,
                    old_usr1, old_child;


int LSAPI_Postfork_Child(LSAPI_Request * pReq)
{
    int max_children = g_prefork_server->m_iMaxChildren;
    s_pid = getpid();
    __atomic_store_n(&pReq->child_status->m_pid, s_pid, __ATOMIC_SEQ_CST);
    s_worker_status = pReq->child_status;

    setsid();
    g_prefork_server = NULL;
    s_ppid = getppid();
    s_req_processed = 0;
    s_proc_group_timer_cb = NULL;

    if (pthread_atfork_func)
        (*pthread_atfork_func)(NULL, NULL, set_skip_write);

    __atomic_store_n(&s_worker_status->m_state,
                     LSAPI_STATE_CONNECTED, __ATOMIC_SEQ_CST);
    if (s_busy_workers)
        __atomic_add_fetch(s_busy_workers, 1, __ATOMIC_SEQ_CST);
    lsapi_set_nblock( pReq->m_fd, 0 );
    //keep it open if busy_count is used.
    if (!s_keep_listener && s_busy_workers
        && *s_busy_workers > (max_children >> 1))
        s_keep_listener = 1;
    if ((s_uid == 0 || !s_keep_listener || !is_enough_free_mem())
        && pReq->m_fdListen != -1 )
    {
        close(pReq->m_fdListen);
        pReq->m_fdListen = -1;
    }

    //init_conn_key( pReq->m_fd );
    lsapi_notify_pid(pReq->m_fd);
    s_notified_pid = 1;
    //if ( s_accept_notify )
    //    return notify_req_received( pReq->m_fd );
    return 0;
}


int LSAPI_Postfork_Parent(LSAPI_Request * pReq)
{
    ++g_prefork_server->m_iCurChildren;
    if (pReq->child_status)
    {
        time_t curTime = time( NULL );
        pReq->child_status->m_tmWaitBegin = curTime;
        pReq->child_status->m_tmStart = curTime;
    }
    close(pReq->m_fd);
    pReq->m_fd = -1;
    return 0;
}


int LSAPI_Accept_Before_Fork(LSAPI_Request * pReq)
{
    time_t          lastTime = 0;
    time_t          curTime = 0;
    fd_set          readfds;
    struct timeval  timeout;
    int             wait_secs = 0;
    int             ret = 0;

    lsapi_prefork_server * pServer = g_prefork_server;

    struct sigaction act;

    lsapi_init_children_status();

    act.sa_flags = 0;
    act.sa_handler = lsapi_sigchild;
    sigemptyset(&(act.sa_mask));
    if (sigaction(SIGCHLD, &act, &old_child))
    {
        perror( "Can't set signal handler for SIGCHILD" );
        return -1;
    }

    /* Set up handler to kill children upon exit */
    act.sa_flags = 0;
    act.sa_handler = lsapi_cleanup;
    sigemptyset(&(act.sa_mask));
    if (sigaction(SIGTERM, &act, &old_term) ||
        sigaction(SIGINT,  &act, &old_int ) ||
        sigaction(SIGUSR1, &act, &old_usr1) ||
        sigaction(SIGQUIT, &act, &old_quit))
    {
        perror( "Can't set signals" );
        return -1;
    }
    s_stop = 0;
    pReq->m_reqState = 0;

    while(!s_stop)
    {
        if (s_proc_group_timer_cb != NULL) {
            s_proc_group_timer_cb(&s_ignore_pid);
        }

        curTime = time(NULL);
        if (curTime != lastTime)
        {
            lastTime = curTime;
            if (lsapi_parent_dead())
                break;
            lsapi_check_child_status(curTime);
            if (pServer->m_iServerMaxIdle)
            {
                if (pServer->m_iCurChildren <= 0)
                {
                    ++wait_secs;
                    if ( wait_secs > pServer->m_iServerMaxIdle )
                        return -1;
                }
                else
                    wait_secs = 0;
            }
        }

#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
        *s_avail_pages = sysconf(_SC_AVPHYS_PAGES);
//        lsapi_log("Memory total: %zd, free: %zd, free %%%zd\n",
//                  s_total_pages, *s_avail_pages, *s_avail_pages * 100 / s_total_pages);

#endif
        FD_ZERO(&readfds);
        FD_SET(pServer->m_fd, &readfds);
        timeout.tv_sec = 1;
        timeout.tv_usec = 0;
        ret = (*g_fnSelect)(pServer->m_fd+1, &readfds, NULL, NULL, &timeout);
        if (ret == 1 )
        {
            int accepting = 0;
            if (s_accepting_workers)
                accepting = __atomic_load_n(s_accepting_workers, __ATOMIC_SEQ_CST);

            if (pServer->m_iCurChildren > 0
                && accepting > 0)
            {
                usleep( 400);
                while(accepting-- > 0)
                    sched_yield();
                continue;
            }
        }
        else if (ret == -1)
        {
            if (errno == EINTR)
                continue;
            /* perror( "select()" ); */
            break;
        }
        else
        {
            continue;
        }

        if (pServer->m_iCurChildren >=
            pServer->m_iMaxChildren + pServer->m_iExtraChildren)
        {
            lsapi_log("Reached max children process limit: %d, extra: %d,"
                     " current: %d, busy: %d, please increase LSAPI_CHILDREN.\n",
                     pServer->m_iMaxChildren, pServer->m_iExtraChildren,
                     pServer->m_iCurChildren,
                     s_busy_workers ? *s_busy_workers : -1);
            usleep(100000);
            continue;
        }

        pReq->m_fd = lsapi_accept(pServer->m_fd);
        if (pReq->m_fd != -1)
        {
            wait_secs = 0;
            pReq->child_status = find_child_status(0);

            ret = 0;
            break;
        }
        else
        {
            if ((errno == EINTR) || (errno == EAGAIN))
                continue;
            lsapi_perror("accept() failed", errno);
            ret = -1;
            break;
        }
    }

    sigaction(SIGCHLD, &old_child, 0);
    sigaction(SIGTERM, &old_term, 0);
    sigaction(SIGQUIT, &old_quit, 0);
    sigaction(SIGINT,  &old_int,  0);
    sigaction(SIGUSR1, &old_usr1, 0);

    return ret;
}


int LSAPI_Prefork_Accept_r( LSAPI_Request * pReq )
{
    int             fd;
    int             ret;
    int             wait_secs;
    fd_set          readfds;
    struct timeval  timeout;

    if (s_skip_write)
        return -1;

    LSAPI_Finish_r( pReq );

    if ( g_prefork_server )
    {
        if ( g_prefork_server->m_fd != -1 )
            if ( lsapi_prefork_server_accept( g_prefork_server, pReq ) == -1 )
                return -1;
    }
    else if (s_req_processed > 0 && s_max_busy_workers > 0 && s_busy_workers)
    {
        ret = __atomic_load_n(s_busy_workers, __ATOMIC_SEQ_CST);
        if (ret >= s_max_busy_workers)
        {
            send_conn_close_notification(pReq->m_fd);
            lsapi_close_connection(pReq);
        }
    }

    if ( (unsigned int)s_req_processed > s_max_reqs )
        return -1;

    if ( s_worker_status )
    {
        s_worker_status->m_tmWaitBegin = time( NULL );
    }


    while( g_running )
    {
        if ( pReq->m_fd != -1 )
        {
            fd = pReq->m_fd;
        }
        else if ( pReq->m_fdListen != -1 )
            fd = pReq->m_fdListen;
        else
        {
            break;
        }
        wait_secs = 0;
        while( 1 )
        {
            if ( !g_running )
                return -1;
            if (s_req_processed && s_worker_status
                && s_worker_status->m_iKillSent)
                return -1;
            FD_ZERO( &readfds );
            FD_SET( fd, &readfds );
            timeout.tv_sec = 1;
            timeout.tv_usec = 0;
            if (fd == pReq->m_fdListen)
            {
                if (s_worker_status)
                    __atomic_store_n(&s_worker_status->m_state,
                                     LSAPI_STATE_ACCEPTING, __ATOMIC_SEQ_CST);
                if (s_accepting_workers)
                    __atomic_fetch_add(s_accepting_workers, 1, __ATOMIC_SEQ_CST);
            }
            ret = (*g_fnSelect)(fd+1, &readfds, NULL, NULL, &timeout);
            if (fd == pReq->m_fdListen)
            {
                if (s_accepting_workers)
                    __atomic_fetch_sub(s_accepting_workers, 1, __ATOMIC_SEQ_CST);
                if (s_worker_status)
                    __atomic_store_n(&s_worker_status->m_state,
                                     LSAPI_STATE_IDLE, __ATOMIC_SEQ_CST);
            }

            if ( ret == 0 )
            {
                if ( s_worker_status )
                {
                    s_worker_status->m_inProcess = 0;
                    if (fd == pReq->m_fdListen)
                    {
                        if (s_keep_listener == 0 || !is_enough_free_mem())
                            return -1;
                        if (s_keep_listener == 1)
                        {
                            int wait_time = 10;
                            if (s_busy_workers)
                                wait_time += *s_busy_workers * 10;
                            if (s_accepting_workers)
                                wait_time >>= (*s_accepting_workers);
                            if (wait_secs >= wait_time)
                                return -1;
                        }
                    }
                }
                ++wait_secs;
                if (( s_max_idle_secs > 0 )&&(wait_secs >= s_max_idle_secs ))
                    return -1;
                if ( lsapi_parent_dead() )
                    return -1;
            }
            else if ( ret == -1 )
            {
                if ( errno == EINTR )
                    continue;
                else
                    return -1;
            }
            else if ( ret >= 1 )
            {
                if (s_req_processed && s_worker_status
                    && s_worker_status->m_iKillSent)
                    return -1;
                if ( fd == pReq->m_fdListen )
                {
                    pReq->m_fd = lsapi_accept( pReq->m_fdListen );
                    if ( pReq->m_fd != -1 )
                    {
                        if (s_worker_status)
                            __atomic_store_n(&s_worker_status->m_state,
                                             LSAPI_STATE_CONNECTED,
                                             __ATOMIC_SEQ_CST);
                        if (s_busy_workers)
                            __atomic_fetch_add(s_busy_workers, 1, __ATOMIC_SEQ_CST);

                        fd = pReq->m_fd;

                        lsapi_set_nblock( fd, 0 );
                        //init_conn_key( pReq->m_fd );
                        if (!s_keep_listener)
                        {
                            close( pReq->m_fdListen );
                            pReq->m_fdListen = -1;
                        }
                        if ( s_accept_notify )
                            if ( notify_req_received( pReq->m_fd ) == -1 )
                                return -1;
                    }
                    else
                    {
                        if (( errno == EINTR )||( errno == EAGAIN))
                            continue;
                        lsapi_perror( "lsapi_accept() error", errno );
                        return -1;
                    }
                }
                else
                    break;
            }
        }

        if ( !readReq( pReq ) )
        {
            if ( s_worker_status )
            {
                s_worker_status->m_iKillSent = 0;
                s_worker_status->m_inProcess = 1;
                ++s_worker_status->m_iReqCounter;
                s_worker_status->m_tmReqBegin =
                s_worker_status->m_tmLastCheckPoint = time(NULL);
            }
            ++s_req_processed;
            return 0;
        }
        lsapi_close_connection(pReq);
        LSAPI_Reset_r( pReq );
    }
    return -1;

}


void LSAPI_Set_Max_Reqs( int reqs )
{   s_max_reqs = reqs - 1;      }

void LSAPI_Set_Max_Idle( int secs )
{   s_max_idle_secs = secs;     }


void LSAPI_Set_Max_Children( int maxChildren )
{
    if ( g_prefork_server )
        g_prefork_server->m_iMaxChildren = maxChildren;
}


void LSAPI_Set_Extra_Children( int extraChildren )
{
    if (( g_prefork_server )&&( extraChildren >= 0 ))
        g_prefork_server->m_iExtraChildren = extraChildren;
}


void LSAPI_Set_Max_Process_Time( int secs )
{
    if (( g_prefork_server )&&( secs > 0 ))
        g_prefork_server->m_iMaxReqProcessTime = secs;
}


void LSAPI_Set_Max_Idle_Children( int maxIdleChld )
{
    if (( g_prefork_server )&&( maxIdleChld > 0 ))
        g_prefork_server->m_iMaxIdleChildren = maxIdleChld;
}


void LSAPI_Set_Server_Max_Idle_Secs( int serverMaxIdle )
{
    if ( g_prefork_server )
        g_prefork_server->m_iServerMaxIdle = serverMaxIdle;
}


void LSAPI_Set_Slow_Req_Msecs( int msecs )
{
    s_slow_req_msecs = msecs;
}


int  LSAPI_Get_Slow_Req_Msecs(void)
{
    return s_slow_req_msecs;
}


void LSAPI_No_Check_ppid(void)
{
    s_ppid = 0;
}


int LSAPI_Get_ppid(void)
{
    return(s_ppid);
}


#if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
#include <crt_externs.h>
#else
extern char ** environ;
#endif
static void unset_lsapi_envs(void)
{
    char **env;
#if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)
    env = *_NSGetEnviron();
#else
    env = environ;
#endif
    while( env != NULL && *env != NULL )
    {
        if (!strncmp(*env, "LSAPI_", 6) || !strncmp( *env, "PHP_LSAPI_", 10 )
            || (!strncmp( *env, "PHPRC=", 6 )&&(!s_uid)))
        {
            char ** del = env;
            do
                *del = del[1];
            while( *del++ );
        }
        else
            ++env;
    }
}


static int lsapi_initSuEXEC(void)
{
    int i;
    struct passwd * pw;
    s_defaultUid = 0;
    s_defaultGid = 0;
    if ( s_uid == 0 )
    {
        const char * p = getenv( "LSAPI_DEFAULT_UID" );
        if ( p )
        {
            i = atoi( p );
            if ( i > 0 )
                s_defaultUid = i;
        }
        p = getenv( "LSAPI_DEFAULT_GID" );
        if ( p )
        {
            i = atoi( p );
            if ( i > 0 )
                s_defaultGid = i;
        }
        p = getenv( "LSAPI_SECRET" );
        if (( !p )||( readSecret(p) == -1 ))
                return -1;
        if ( g_prefork_server )
        {
            if ( g_prefork_server->m_iMaxChildren < 100 )
                g_prefork_server->m_iMaxChildren = 100;
            if ( g_prefork_server->m_iExtraChildren < 1000 )
                g_prefork_server->m_iExtraChildren = 1000;
        }
    }
    if ( !s_defaultUid || !s_defaultGid )
    {
        pw = getpwnam( "nobody" );
        if ( pw )
        {
            if ( !s_defaultUid )
                s_defaultUid = pw->pw_uid;
            if ( !s_defaultGid )
                s_defaultGid = pw->pw_gid;
        }
        else
        {
            if ( !s_defaultUid )
                s_defaultUid = 10000;
            if ( !s_defaultGid )
                s_defaultGid = 10000;
        }
    }
    return 0;
}


static int lsapi_check_path(const char *p, char *final, int max_len)
{
    char resolved_path[PATH_MAX+1];
    int len = 0;
    char *end;
    if (*p != '/')
    {
        if (getcwd(final, max_len) == NULL)
            return -1;
        len = strlen(final);
        *(final + len) = '/';
        ++len;
    }
    end = memccpy(&final[len], p, '\0', PATH_MAX - len);
    if (!end)
    {
        errno = EINVAL;
        return -1;
    }
    p = final;
    if (realpath(p, resolved_path) == NULL
        && errno != ENOENT && errno != EACCES)
        return -1;
    if (strncmp(resolved_path, "/etc/", 5) == 0)
    {
        errno = EPERM;
        return -1;
    }
    return 0;
}


static int lsapi_reopen_stderr2(const char *full_path)
{
    int newfd = open(full_path, O_WRONLY | O_CREAT | O_APPEND, 0644);
    if (newfd == -1)
    {
        LSAPI_perror_r(NULL, "Failed to open custom stderr log", full_path);
        return -1;
    }
    if (newfd != 2)
    {
        dup2(newfd, 2);
        close(newfd);
        dup2(2, 1);
    }
    if (s_stderr_log_path && full_path != s_stderr_log_path)
    {
        free(s_stderr_log_path);
        s_stderr_log_path = NULL;
    }
    s_stderr_log_path = strdup(full_path);
    return 0;
}


static int lsapi_reopen_stderr(const char *p)
{
    char full_path[PATH_MAX];
    if (s_uid == 0)
        return -1;
    if (lsapi_check_path(p, full_path, PATH_MAX) == -1)
    {
        LSAPI_perror_r(NULL, "Invalid custom stderr log path", p);
        return -1;
    }
    return lsapi_reopen_stderr2(full_path);
}


int LSAPI_Init_Env_Parameters( fn_select_t fp )
{
    const char *p;
    char ch;
    int n;
    int avoidFork = 0;

    p = getenv("LSAPI_STDERR_LOG");
    if (p)
    {
        lsapi_reopen_stderr(p);
    }
    if (!s_stderr_log_path)
        s_stderr_is_pipe = isPipe(STDERR_FILENO);

    p = getenv( "PHP_LSAPI_MAX_REQUESTS" );
    if ( !p )
        p = getenv( "LSAPI_MAX_REQS" );
    if ( p )
    {
        n = atoi( p );
        if ( n > 0 )
            LSAPI_Set_Max_Reqs( n );
    }

    p = getenv( "LSAPI_KEEP_LISTEN" );
    if ( p )
    {
        n = atoi( p );
        s_keep_listener = n;
    }

    p = getenv( "LSAPI_AVOID_FORK" );
    if ( p )
    {
        avoidFork = atoi( p );
        if (avoidFork)
        {
            s_keep_listener = 2;
            ch = *(p + strlen(p) - 1);
            if (  ch == 'G' || ch == 'g' )
                avoidFork *= 1024 * 1024 * 1024;
            else if (  ch == 'M' || ch == 'm' )
                avoidFork *= 1024 * 1024;
            if (avoidFork >= 1024 * 10240)
                s_min_avail_pages = avoidFork / 4096;
        }
    }

    p = getenv( "LSAPI_ACCEPT_NOTIFY" );
    if ( p )
    {
        s_accept_notify = atoi( p );
    }

    p = getenv( "LSAPI_SLOW_REQ_MSECS" );
    if ( p )
    {
        n = atoi( p );
        LSAPI_Set_Slow_Req_Msecs( n );
    }

#if defined( RLIMIT_CORE )
    p = getenv( "LSAPI_ALLOW_CORE_DUMP" );
    if ( !p )
    {
        struct rlimit limit = { 0, 0 };
        setrlimit( RLIMIT_CORE, &limit );
    }
    else
        s_enable_core_dump = 1;

#endif

    p = getenv( "LSAPI_MAX_IDLE" );
    if ( p )
    {
        n = atoi( p );
        LSAPI_Set_Max_Idle( n );
    }

    if ( LSAPI_Is_Listen() )
    {
        n = 0;
        p = getenv( "PHP_LSAPI_CHILDREN" );
        if ( !p )
            p = getenv( "LSAPI_CHILDREN" );
        if ( p )
            n = atoi( p );
        if ( n > 1 )
        {
            LSAPI_Init_Prefork_Server( n, fp, avoidFork != 0 );
            LSAPI_Set_Server_fd( g_req.m_fdListen );
        }

        p = getenv( "LSAPI_EXTRA_CHILDREN" );
        if ( p )
            LSAPI_Set_Extra_Children( atoi( p ) );

        p = getenv( "LSAPI_MAX_IDLE_CHILDREN" );
        if ( p )
            LSAPI_Set_Max_Idle_Children( atoi( p ) );

        p = getenv( "LSAPI_PGRP_MAX_IDLE" );
        if ( p )
        {
            LSAPI_Set_Server_Max_Idle_Secs( atoi( p ) );
        }

        p = getenv( "LSAPI_MAX_PROCESS_TIME" );
        if ( p )
            LSAPI_Set_Max_Process_Time( atoi( p ) );

        if ( getenv( "LSAPI_PPID_NO_CHECK" ) )
        {
            LSAPI_No_Check_ppid();
        }

        p = getenv("LSAPI_MAX_BUSY_WORKER");
        if (p)
        {
            n = atoi(p);
            s_max_busy_workers = n;
            if (n >= 0)
                LSAPI_No_Check_ppid();
        }


        p = getenv( "LSAPI_DUMP_DEBUG_INFO" );
        if ( p )
            s_dump_debug_info = atoi( p );

        if ( lsapi_initSuEXEC() == -1 )
            return -1;
#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__gnu_linux__)
        lsapi_initLVE();
#endif
    }
    unset_lsapi_envs();
    return 0;
}


int LSAPI_ErrResponse_r( LSAPI_Request * pReq, int code, const char ** pRespHeaders,
                         const char * pBody, int bodyLen )
{
    LSAPI_SetRespStatus_r( pReq, code );
    if ( pRespHeaders )
    {
        while( *pRespHeaders )
        {
            LSAPI_AppendRespHeader_r( pReq, *pRespHeaders, strlen( *pRespHeaders ) );
            ++pRespHeaders;
        }
    }
    if ( pBody &&( bodyLen > 0 ))
    {
        LSAPI_Write_r( pReq, pBody, bodyLen );
    }
    LSAPI_Finish_r( pReq );
    return 0;
}


static void lsapi_MD5Transform(uint32 buf[4], uint32 const in[16]);

/*
 * Note: this code is harmless on little-endian machines.
 */
static void byteReverse(unsigned char *buf, unsigned longs)
{
    uint32 t;
    do {
        t = (uint32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
            ((unsigned) buf[1] << 8 | buf[0]);
        *(uint32 *) buf = t;
        buf += 4;
    } while (--longs);
}


/*
 * Start MD5 accumulation.  Set bit count to 0 and buffer to mysterious
 * initialization constants.
 */
void lsapi_MD5Init(struct lsapi_MD5Context *ctx)
{
    ctx->buf[0] = 0x67452301;
    ctx->buf[1] = 0xefcdab89;
    ctx->buf[2] = 0x98badcfe;
    ctx->buf[3] = 0x10325476;

    ctx->bits[0] = 0;
    ctx->bits[1] = 0;
}

/*
 * Update context to reflect the concatenation of another buffer full
 * of bytes.
 */
void lsapi_MD5Update(struct lsapi_MD5Context *ctx, unsigned char const *buf, unsigned len)
{
    register uint32 t;

    /* Update bitcount */

    t = ctx->bits[0];
    if ((ctx->bits[0] = t + ((uint32) len << 3)) < t)
        ctx->bits[1]++;                /* Carry from low to high */
    ctx->bits[1] += len >> 29;

    t = (t >> 3) & 0x3f;        /* Bytes already in shsInfo->data */

    /* Handle any leading odd-sized chunks */

    if (t) {
        unsigned char *p = (unsigned char *) ctx->in + t;

        t = 64 - t;
        if (len < t) {
            memmove(p, buf, len);
            return;
        }
        memmove(p, buf, t);
        byteReverse(ctx->in, 16);
        lsapi_MD5Transform(ctx->buf, (uint32 *) ctx->in);
        buf += t;
        len -= t;
    }
    /* Process data in 64-byte chunks */

    while (len >= 64) {
        memmove(ctx->in, buf, 64);
        byteReverse(ctx->in, 16);
        lsapi_MD5Transform(ctx->buf, (uint32 *) ctx->in);
        buf += 64;
        len -= 64;
    }

    /* Handle any remaining bytes of data. */

    memmove(ctx->in, buf, len);
}


/*
 * Final wrap-up - pad to 64-byte boundary with the bit pattern
 * 1 0* (64-bit count of bits processed, MSB-first)
 */
void lsapi_MD5Final(unsigned char digest[16], struct lsapi_MD5Context *ctx)
{
    unsigned int count;
    unsigned char *p;

    /* Compute number of bytes mod 64 */
    count = (ctx->bits[0] >> 3) & 0x3F;

    /* Set the first char of padding to 0x80.  This is safe since there is
       always at least one byte free */
    p = ctx->in + count;
    *p++ = 0x80;

    /* Bytes of padding needed to make 64 bytes */
    count = 64 - 1 - count;

    /* Pad out to 56 mod 64 */
    if (count < 8) {
        /* Two lots of padding:  Pad the first block to 64 bytes */
        memset(p, 0, count);
        byteReverse(ctx->in, 16);
        lsapi_MD5Transform(ctx->buf, (uint32 *) ctx->in);

        /* Now fill the next block with 56 bytes */
        memset(ctx->in, 0, 56);
    } else {
        /* Pad block to 56 bytes */
        memset(p, 0, count - 8);
    }
    byteReverse(ctx->in, 14);

    /* Append length in bits and transform */
    ((uint32 *) ctx->in)[14] = ctx->bits[0];
    ((uint32 *) ctx->in)[15] = ctx->bits[1];

    lsapi_MD5Transform(ctx->buf, (uint32 *) ctx->in);
    byteReverse((unsigned char *) ctx->buf, 4);
    memmove(digest, ctx->buf, 16);
    memset(ctx, 0, sizeof(*ctx));        /* In case it's sensitive */
}


/* The four core functions - F1 is optimized somewhat */

/* #define F1(x, y, z) (x & y | ~x & z) */
#define F1(x, y, z) (z ^ (x & (y ^ z)))
#define F2(x, y, z) F1(z, x, y)
#define F3(x, y, z) (x ^ y ^ z)
#define F4(x, y, z) (y ^ (x | ~z))

/* This is the central step in the MD5 algorithm. */
#define MD5STEP(f, w, x, y, z, data, s) \
        ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )

/*
 * The core of the MD5 algorithm, this alters an existing MD5 hash to
 * reflect the addition of 16 longwords of new data.  MD5Update blocks
 * the data and converts bytes into longwords for this routine.
 */
static void lsapi_MD5Transform(uint32 buf[4], uint32 const in[16])
{
    register uint32 a, b, c, d;

    a = buf[0];
    b = buf[1];
    c = buf[2];
    d = buf[3];

    MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
    MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
    MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
    MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
    MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
    MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
    MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
    MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
    MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
    MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
    MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
    MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
    MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
    MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
    MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
    MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);

    MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
    MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
    MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
    MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
    MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
    MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
    MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
    MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
    MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
    MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
    MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
    MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
    MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
    MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
    MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
    MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);

    MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
    MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
    MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
    MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
    MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
    MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
    MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
    MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
    MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
    MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
    MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
    MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
    MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
    MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
    MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
    MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);

    MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
    MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
    MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
    MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
    MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
    MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
    MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
    MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
    MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
    MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
    MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
    MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
    MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
    MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
    MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
    MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);

    buf[0] += a;
    buf[1] += b;
    buf[2] += c;
    buf[3] += d;
}


int LSAPI_Set_Restored_Parent_Pid(int pid)
{
    int old_ppid = s_ppid;
    s_restored_ppid = pid;
    return old_ppid;
}


int LSAPI_Inc_Req_Processed(int cnt)
{
    return __atomic_add_fetch(s_global_counter, cnt, __ATOMIC_SEQ_CST);
}


PKCH[�W	q,,3share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapidef.hnu�[���/*
Copyright (c) 2002-2018, Lite Speed Technologies Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.
    * Neither the name of the Lite Speed Technologies Inc nor the
      names of its contributors may be used to endorse or promote
      products derived from this software without specific prior
      written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#ifndef  _LSAPIDEF_H_
#define  _LSAPIDEF_H_

#include <inttypes.h>

#if defined (c_plusplus) || defined (__cplusplus)
extern "C" {
#endif

enum
{
    H_ACCEPT = 0,
    H_ACC_CHARSET,
    H_ACC_ENCODING,
    H_ACC_LANG,
    H_AUTHORIZATION,
    H_CONNECTION,
    H_CONTENT_TYPE,
    H_CONTENT_LENGTH,
    H_COOKIE,
    H_COOKIE2,
    H_HOST,
    H_PRAGMA,
    H_REFERER,
    H_USERAGENT,
    H_CACHE_CTRL,
    H_IF_MODIFIED_SINCE,
    H_IF_MATCH,
    H_IF_NO_MATCH,
    H_IF_RANGE,
    H_IF_UNMOD_SINCE,
    H_KEEP_ALIVE,
    H_RANGE,
    H_X_FORWARDED_FOR,
    H_VIA,
    H_TRANSFER_ENCODING

};
#define LSAPI_SOCK_FILENO           0

#define LSAPI_VERSION_B0            'L'
#define LSAPI_VERSION_B1            'S'

/* Values for m_flag in lsapi_packet_header */
#define LSAPI_ENDIAN_LITTLE         0
#define LSAPI_ENDIAN_BIG            1
#define LSAPI_ENDIAN_BIT            1

#if defined(__i386__)||defined( __x86_64 )||defined( __x86_64__ )
#define LSAPI_ENDIAN                LSAPI_ENDIAN_LITTLE
#else
#define LSAPI_ENDIAN                LSAPI_ENDIAN_BIG
#endif

/* Values for m_type in lsapi_packet_header */
#define LSAPI_BEGIN_REQUEST         1
#define LSAPI_ABORT_REQUEST         2
#define LSAPI_RESP_HEADER           3
#define LSAPI_RESP_STREAM           4
#define LSAPI_RESP_END              5
#define LSAPI_STDERR_STREAM         6
#define LSAPI_REQ_RECEIVED          7
#define LSAPI_CONN_CLOSE            8
#define LSAPI_INTERNAL_ERROR        9


#define LSAPI_MAX_HEADER_LEN        65535
#define LSAPI_MAX_DATA_PACKET_LEN   16384

#define LSAPI_RESP_HTTP_HEADER_MAX  32768
#define LSAPI_PACKET_HEADER_LEN     8


struct lsapi_packet_header
{
    char    m_versionB0;      /* LSAPI protocol version */
    char    m_versionB1;
    char    m_type;
    char    m_flag;
    union
    {
        int32_t m_iLen;       /* include this header */
        char    m_bytes[4];
    }m_packetLen;
};

/*
    LSAPI request header packet

    1. struct lsapi_req_header
    2. struct lsapi_http_header_index
    3. lsapi_header_offset * unknownHeaders
    4. org http request header
    5. request body if available
*/

struct lsapi_req_header
{
    struct lsapi_packet_header m_pktHeader;

    int32_t m_httpHeaderLen;
    int32_t m_reqBodyLen;
    int32_t m_scriptFileOff;   /* path to the script file. */
    int32_t m_scriptNameOff;   /* decrypted URI, without pathinfo, */
    int32_t m_queryStringOff;  /* Query string inside env */
    int32_t m_requestMethodOff;
    int32_t m_cntUnknownHeaders;
    int32_t m_cntEnv;
    int32_t m_cntSpecialEnv;
} ;


struct lsapi_http_header_index
{
    uint16_t m_headerLen[H_TRANSFER_ENCODING+1];
    int32_t m_headerOff[H_TRANSFER_ENCODING+1];
} ;

struct lsapi_header_offset
{
    int32_t nameOff;
    int32_t nameLen;
    int32_t valueOff;
    int32_t valueLen;
} ;

struct lsapi_resp_info
{
    int32_t m_cntHeaders;
    int32_t m_status;
};

struct lsapi_resp_header
{
    struct  lsapi_packet_header  m_pktHeader;
    struct  lsapi_resp_info      m_respInfo;
};

#if defined (c_plusplus) || defined (__cplusplus)
}
#endif


#endif

PKCH[:share/gems/gems/ruby-lsapi-5.6/ext/lsapi/.sitearchdir.timenu�[���PKCH[�Ҧd�(�(3share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.onu�[���ELF>�@@=<

02/3.4-5���ff.����Ð��H�GH+F�Hc�AVI��H�@AUATL�$�USH��tQH��H��tIH��I��L9�r�0H��I9�v'�KH�SM��sH�;�Յ��[]A\A]A^��[D��]A\A]A^ø������ff.�f����=�D���Ð��OAWD�D�_AVAUATUSD�6�^�nA��x�j׋G3GD!�3G��V���\$�ЋW�^$��D�D1��\$�!�3WA��ʋN��F���p $E��‰L$�A1�A1�D��D�^!�D1�G��;�ν�D�\$�D�E��D�V���D�T$�A!�A1�E�E���|���A��
1�A�D!�E��1�D�D��*ƇG���D1�D�!�A��1�A1�D�D�N���D�L$�E��	F0�D��!�D�nA1�D1�D�G���F�E��D�f ���D�d$�D�^(A!�A1�E�E��ؘ�i��A��
1�A�D!�1�D�D����D��ʋ^0��D1�D�!�A��1�D�E���[��D����1��!�D1�D�D�N,��A1��D�L$�G����\�E��A!�D�f8A1�E�D��"�k��A��
1�A�D!�1�D�D�N4��E���q����D�D1�!�1�D�E���Cy�D����1��!�D1�D�D�V<���1��G��!�I!�1�D�D�D$��
�E��b%���1�!�1�D�D�D$��E��@�@���1�!�1�D�D�D$���	�E��QZ^&��1�!�1�D�E��6�Ƕ����1�!�1�D�D��]/։���1�!�1�D�E��SD���1�!�1�D�E��
��؉���	�1�!�1�D�D�D$��E��0����1�!�1�D�D�D$���E�����!��1�!�1�D�E���7É��1�!�1�D�D�D$��	�E���
��1�!�1�D�D�D$��A��0�ZEA��A1�A!�A1�A�A���㩉�A��A�D1�!�1��t$�D������D��1�!�A��
�ogD1����	�1�D!�F���L*�1�D�D$�Ή���1�A��A!���B9��A1�DD$�A��A�D1���D$�����q���D�D1�1�‹D$�����0"a�mD���1�G��8�1�Ɖ��1��1�D�D�D$��	E��D꾤���1�1�D�D�D$�A�����KA���A1�A��5`K��A1�AЉ�A��p���A��1�A�D1����D1�D�1��A��	�~�(D����	1�G���'���1�����1��1�D�D�D$�A���0��A���A1�A1�AЋT$�A����2���A�1�D1�֋T$��	��
9��ى�D�D1����1��D�����1�1��C���|�A��A1��A1�A��D$�A����0eV�ĉ�A�1�D1��A��D")��D�t$��	��D�	�D1��A��
��*CD������G���#���	�1����
���	�1�D�D��9��������Ή��	��1�D�D���Y[e��\$���	�1�D�E�������D�t$�����	щ�1���D�E��3}���D�\$�
���	�1�D�D�D$���E���]����	�1�D�E��O~�oA���A���D��	�1�D�E��
��,���D�T$�����	�A��1�A��D�E��6C���D�t$���
��A���N�	�1�A���~S�A��D�E��A����A	�A1�A��5�:�A�D��A��A�D	�1�Љ�3���*�\$���D�	�D1��D��F���ӆ�[��
��]A\�A]A^	�1������։�	�1�DƉ�A�4A_���OW�G�O�W��ATI��1�U��SH��dH�%(H��$�1�H��H���H�<$t)H��$�dH3%(u<H�Ġ[]A\�f.�H�{�1�H�މ�DŽ$�L�$$���DH�
H�A(H�Q8H9�s;8u�fD98tH��0H9�w�1�Å�tH�P0H;Q0v�H�Q0�Df�H�@$@@�@,�������DUHc�SH��H��H��H�@�H��t#H�SPH�H+S@H�C@H�H�SPH�CH1�H��[]ø������f�U1҉�1�S���H�����t��t/H��1�[]�fD��t��H���‰߾[1�]�f�����ff.�SH��dH�%(H��$�1�H�T$H�t$�D$�D$���Ã��tf�|$t'H��$�dH3%(��u0H�Ġ[�f�H�L$A���Ǿ���ff.�f��� ��Hc�H�vL��H�L9���H��H)�H����S�Nf.�E��������L�I؃�H��L�G�L�E�C�H�D�G��w�I9�thH��H)�H��~SH�pH�2H�pD�H�2H�pD�XH�2�pA��E�L�@��L�Ic�A���pD�Hc�L�M�L9��i��������[�f��0��u�H��[H�1�ø����Ë��u�H��H�1��f�AVAUE1�ATUH�-SH�}(t[D��]A\A]A^��EEA������!Lc�@���D��
 DI�E1�1�A���Mc�L���H��H���t]L��1�H���K�vH�](H��H�]0H�H�]8H�CH�H�H�CH��H�H��[D��]A\A]A^�H�=A����1����H���H���H+��Hcp�G )�H����H��xsH9�AVHN�AUATUI��SHwH��D�wH���L��H��D���I��H���u!��8u
���u�D��[]A\A]A^ÐH��~���[]A\A]A^ø�����fDUSH������tMH��������u��8u
���u�H��E����H��t�(H�H��t�@��H��[]�ff.�@AWAVAUATUSH���������t8A��A��I����A��f�I�7D�����Å�-���tx���u�D��D)�H����[]A\A]A^A_��A)�E��~ڋ��t�I��f�H��)�I���~�H�PHc�H9�v�HI�H)H�x��������t���s����E)�E��AO��r���1��k���S���t-�=��t+1�����u�[�8������1�[�@�9�[����ÐAVAUATUH��SH��H��PdH�%(H��$H1��H��
fDH��H��DB u�L�d$@��H��L����D$@Ƅ$?</tc<[����:L��f�E�H������|$@*H�X�zH�5L���A�ƅ��;�EM�����H�}�lf�uL���1�H��$HdH3%(�QH��P[]A\A]A^�D�
M�l$�]f�ML���H�����|$A*H�XA���1��;:�
��1�H�H���H�Í@�=����E��uf��1�f�]�Y���D�Ef�1�H�T$)D$H�L$L��D$H�)D$ )D$0H�D$���upL�d$H��A�T$I�t$�L����L��E1�M�������EA���<�����EE1�M���"����::A�D$M��fA�$�
���������������AUI��ATU��SH��(H��$�H��$�L��$�L��$���t@)�$�)�$�)�$�)�$�)�$�)�$�)�$)�$dH�%(H��$h1����t�=���ML�d$`L��@��@��u��������L9���H�H�;H�L$HL��H��$P�D$HH�D$PH��$p�D$L0H�D$X�H��$hdH3%(��H��([]A\A]�H�H��L�H�����L�¾d1���H�HÁ��K����-�H��H�ߺUA��L��dH�����1��H�H�XZL9�����H��H�M��1�L)�H��H�;����f�H��1�L�d$`H���H�t$H�����uI��������D$�L��L��P�D$PD�L$(1��Y^Hc�L��L����H�D$L��L���P�D$P�D$$P�D$0P�D$<P�D$H��P�D$TD��l1��H��0Hc�L�����ff.�@��AWAVAUATUSH��(dH�%(H�D$1�H�=�.�D$�H�l$L�5L�-L�%@�H������A�Dž����T$�Ѓ���<~$��M��L������D��ME�1��D;=t�D;=tUD�����H��H��t�H�H1����@�1@�Ɖ�@����H�H��t�(H���h�K���������9����H�5H�N0H�V(H9�s*D�A�H�A�E��t�DH��0�8��u.H��H9�r�H�F0H�D$dH3%(uH��([]A\A]A^A_�H�N0����D$�@�1�D$�X���H�H���D����C���ff.��AWAVAUATUH��SH��H��(�=dH�%(H��$1���t1����thH�C(I��I��D�3L+cI)�H�C D�{H)���D$�H��E��E��AT��H�5�AU1�U�L$,�H�� ����t)H��$dH3%(ulH��([]A\A]A^A_�@D�H�\$H���H�߹�AQL��XH��Z����t
1��fDH�=����DAWAVAUATUSH��L�I�Z(M�j0L9��H�|$E1�E1�E1�@��B��ve�CA�l$����A�BD)�A;B�E9r�
���~ H�SH�L$��H�H)�H9���fD�CA��f��A��H��0I9�w�A�R��D)���1�)ȃ��H��[]A\A]A^A_�fDH�C H�t$H)�IcBH9����C��i�gf��f����)���f9�u������Cf��~pH�5�1���;�	����tp�CA��L�A��f�C�5���fD�C��f�C�����A�������H�5�1���;�����u���8u��L�����H��E��E��D��[H�5]�A\1�A]A^A_�fDH�t$H����������@E1�E1�E1��z���f.���UH����S��H���H����H��I��[H�5�1�]�f����1���u1��=������Ð����D��H�=�@��ATUSH��dH�%(H��$�1�H���}H�H��H�1�HLJ	H�ى�H��H)����	���H�H�{`�I��H���0H�CxH�S`L�c`� L�H)�H�CxH�CpL�H)�H�CpI��$H�Ch�H�C8H�C(H����H I���H��H�C0H��(L�cxL�cpH����l��������twH�T$H�t$���D$����t
��8kt0�����1��kH��$�dH3%(uiH�Ġ[]A\�fD�+����C�����C�1����1���H�=��1��1�����_���fD�������ff.����S���t	1ۉ�[��H�5L��
���e�H�5>��
�T�������H�=1�����tI���H�=��H���c���H�5H���H���[É��D�����1��?������H�=���H�W(H�w`HLJ�H��HLJ0H���H�W�H�VH�W�H�W�H�W�H�W�H��)���81����H�����SH��H�H��t�H���H��t�H���H��t�H�{@H��t�1�[�fD��H��tG��wBL���Hc�A�T�4��t/Hc�A�pH���H�H€:t
�H���H���1��ff.�f���H��tP��tJSHc��H��;��}H�S�HH������[������~	Hc���и����[Ã����AWAVAUATUSH�Z�H�H��H�D$H���:�G�����H���%H����I��H���I�����I��I��L��fDA���)�Hc�H����L9�Hc�IO�IvI���
H��L���H��tML)�H��L��H�XH��H��A��I��A�$��D)��EH��[]A\A]A^A_��L��H��H��H��A���L�|$I���I)�A���M���?����D���L���L�Hc�H��~�A����-���H��1��|���������v���@��AVAUATUSH������I����H��H����H��H����H���H+��E1�H����H9�Hc��HO؋��)�H�H��~)H9�H�wH��HN�H�H��I���E��L�L)�H��t6�E�u@H��H��D���H���u4��8u
���u�M��t-M��[L��]A\A]A^��H��~�I�H�H)�u���I�������D��H�O(H�W8H��LJLS���H)ʍB����H�GpH�0H�pH�@H�wp��~Hc�H�HH�� H�P�H�O8H�Gp����AWAVAUATUSH��H���H�T$H����H��H�<$�I��H�=�������HcB$H���H�@H�,�H9�r�Zf.�H��H9�vGH�3L�����u�H�CH��[]A\A]A^A_�H�D$L9��I��M9���f.�1�H��[]A\A]A^A_��H�$1�L�=L���@A�l�4��tI�4�L�������H��H��u�H�D$HcP 1���~�H�$H��L���M�tM9�s�H���H�$I�D$H�D$@IcMIcmH,$L�|
L9��)���A�\$���)����H�8H�D$�'���-t	��_����H��H��I9�t�����H�U:�t������8����IcUIcEH$H€:����������H�$Hc�Hc�A�VH��H€:�������@��AVAUATUSL��$���H��H�$L9�u�H��dH�%(H��$@1�H����H��H����H���H����H��E1�L�
L��f�H���Hc�HcT�4��t7�qH��M���
H��Ic�A��H��L�E��H�TD�T�tH��H��u�H���HcP ����H���H��L�L9���Ic�I��H��L��f�H��H�� I9���HcHHc0A��H���LcPI��HcHH��B�D�BH�J�HH�2�JA��u��H�
� L����$DI��H�
Ic� L���E��taE1��@A��I�� E9�~CA�MI�UI��A�uI�}�Ӆ��H��$@dH3%(u6H��@[]A\A]A^��D����1���@Ic��U����������ff.����AWAVAUATUSH��XH�t$ H�T$dH�%(H��$H1�H����I��H����1�E1�L�-H��L�%H��H���Hc�HcT�4��t/�HH��A��A�t�I�<�H���L�D$A�ׅ��4H��H��u�H���D�t$<HcB ���L���H��L�H�D$0I9���H�\$(L�t$@fDH�D$(A�l$Ic$A�HTTPH������A�F_L�<H�D$��O�Hcʼnl$8I�H�D$I9���M�nI��I�o�I���_@��-t�H���A�E�L9�u�H�D$I�D�t$8L�D$�L��IcD$IcT$HT$���H�D$ A�L$�Ѕ�~"I��L9d$0�-���H�l$(H����B D$<H��$HdH3<%(u'H��X[]A\A]A^A_�DI�F�v�����������ff.���H��t7H��t2H���D�@$1�E����H���H��H��D�����������f.���H��t7H��t2H���D�@(1�E����H���H��H��D���S��������f.���H����H�O`H��tz����Ѓ�tr��L�G@������H�WPL9�vH�wpL)��L�H��H�V�H�wpHc�0H�T�H�Q�����,H��(LJ(LSH�1�H�Oxø�����f.���H����H�GpH+GxH�������G�����SH�������H�C(H9C8tH���H�SpH+Sx1�H����~J�
�����u$�{H�sx����9��~H�{�������ǃ�H�S`H�SxH�Sp[�f�H�G(H9G8�c���1�����l���LJ�H�W(H�W8H�W`H�WxH�Wpø�����f���AWAVAUATUSH��XH�t$dH�%(H�D$H1�H���.H�=���GI�������;��H�G(H9G8t
H�$�H�$H�D$L�|$L�d$H�$H�l$ I��H��L)�H����H��@�@L�|$0HO�L�d$ �D$LS�BL�jH�T$8I׋�D$D��H�D$(H�l$��uA�~H�4$D����H�I9�~�I�~��H��L)�H���L��H+D$��H�t$��H�L$HdH3%(uH��X[]A\A]A^A_�H��������@AWAVAUATUSH��H�$H��dH�%(H��$1�H��I��I���H��8�H��I��H�HD��A���AW�H��SA���1�AVL��AU��H�� H��=O�Hc�M��t7L���1�H��$dH3%(u&H��[]A\A]A^A_�������ff.�@AT�~f�A��UH��SH��dH�%(H��$1�H�|$H��)$H���H�H����xH��$dH3%(u?H��[]A\É�I��D��H�51��1�H�5H���i����������ff.�f�ATUSH��H�$H��H�$H��dH�%(H��$ 1�������?/H��H�����H���H���bH�ߋH����������!�%����t�¹�����D�H�WHD���@�H��H)��</��)�Hc�Hc�H�1�H���H���JL��$�H��L���H�����H�=L������������AH��1���Ń������uRH�=H9�t
H��t�H��1��H�H��$ dH34%(����H�� []A\�fD�����������@�����4�����
�+����H��H�51�������r����r���DH�߹����������S���fD������H��H�51������������H��tv�����t]S��H��tC�uWH�C(H9C8tH���H�CpH�H��H�H��H�@����H�Cp�H���1�[�@���뢸�����ff.���H��������u��u1��f�S��H��tR�ubH�C(H9C8tH���H�CpH�H��H�H��H�@����H�Cp�H�{�:����������1�[��1�H�O@H9OPv��닸��������AWAVAUATUSH��H����H���|���I�֨�,���aH��H�t$H����>��L�{8I��H�C0L)�H9��>L�t$L+{(L��A�@L��L�f�I��M)�M����K�H��@���σ��LSL�Cp�N���I�H�D���I�0H��I�@H�KpM��~H�C(M�xI�H E1�I�@H�C8H���L�1H��M�L�I�H��H�KpH9��e���H������thI��L��M)�M���U���I9�t
H������tDL+t$H��L��[]A\A]A^A_�DM��@�@M)��(����������I�������H�t$H��L���Hk8�f.���H�������������AVL��AUI��ATI��U��S���H���u\��H�߉���A�D$�{L��ǃLS����H��u0�{L��[L���]A\A]A^�������[H�����]A\A]A^�H���ff.���AWAVAUATUSH��H����H�������H����������D$����0��xI��H��I��H���Lc��\�CHc��T���
t��
u(��H�DLc���L�H����
t�
t�L�����~6Hc�A�T���
t��
u#��H�@��~A�L�H����
t�
t�E�<A�G=���I�|$PH�H�TI9T$Hs7H��I+t$@L������2%�)�)���������I�|$PL��H��Hc�A���Mt$PH��L��I�FI�D$PA�:I�|$P�M�D$PI�I�@I�D$PA�Ic�$0fE��T8H�Ѓ�A��$0�D$H��[]A\A]A^A_��D$������ff.����H���
H����B�=����������0���AUATUSHc�H��f��D�A��<
t<
uH���؅�u�H��[]A\A]�I��H�PH��H�DI9D$Hs3H��I+t$@L������2%�)�)��������tQI�|$PH��H��A���I\$PH�CI�D$P�Ic�$0fE��T8H�Ѓ�A��$0H��1�[]A\A]ø�����S������D��AUATA��UH��SH���?dH�%(H�D$1��D$f����f��
t1�����f����H�L$dH3%(����H��[]A\A]ÐA�1Ҿ��Ã��tʼnǺ�1��H�L$A��ߺ����u#D��H������uD�������o�����߻����D� H���D�e�O����A��k���DH�}A�n��}�N������H��t����������ff.����U��SH��dH�%(H��$�1�H��H�����u/��H���H��$�dH3%(uH�Ę[]����������@��1�H�=t������AUATA�'USH�����'DN�uD������H���@�A���H��H�H����H��tH�-����Ɖlj��U�D�k H�D�cE��u<�����D�����SuG�CH�,H�C�1�H��[]A\A]�@A�|$�C�{�˸�����ك�ÉS�ff.�@��H�H��t�8�ff.�f���H��BH�B(H�R8H9�s��H��0H9�w�H�H��t	���H�H��t	����fD��H�H�H;�wH��H�H;�����ff.�@��ATUSH��H�� dH�%(H�D$1�H�D�`�H�SX����H�kXH�-�H����H�H�H��tH�1�1���H�-�E��H�H��t��{1��F�����uH�H��tA�D9 ~����ut�;���u]H�LS�[H��H�$��D$��H��߉D$��1�H�L$dH3%(u)H�� []A\�D����������t�����H�SH���@H�Xt1��H�SXH�BH�B�{��C����1�[���AWAVAUATUSH��HH�H�|$H��$�L�edH�%(H��$81����H����L��DŽ$(H��$��H�H������cH����L��DŽ$(H��$��H�H������H�H�������H�H��
�����H�H�������H�D$1�E1�L�d$ �L�|$ǀ��D$H�H��t	H�=��1��I��L9�t71���������L���P���C��t�S�����D$fD�V�H��L��H�1���H�Hc;��;M��L��H�D$H�D$�����������?)ѺH��1�H	T� 1��Ń����������8��1�H�5��1ҿH�5�1ҿH�5�1ҿH�5�1ҿ
H�5�H��$8dH3%(���kH��H[]A\A]A^A_�fDH�H��udD�C�S�K�
D9���H�A�����H��tD��H�51�������M��� �������fDD�0D�CE��~�E��~����D�A��u���D$�t$9��/������������D�;�)��A��H�D$D�pA���uc��0���k������b���H�=D����j���f.�H�=���������H�=���������1�1����H�\$H�CX�����������=�f����=�D��H�H��t�x�ff.����H�H��t��x�x����H�H��t��~�x����H�H��t��~�x����H�H��t�x�ff.�����=�D����D�������D��AUATUH��H�=SH��8dH�%(H��$(1��H��tH��� �H�=��H�=�H���E1��
H�������H�=�H��t�
1�H����H�=�H��H��t�
1�H���I��A��WE1�H�=�H��t�
1�H����H�=�H��tH�Ǻ
1�����H�=�H�����H�=�H��tH�Ǻ
1����������H�=�H����1��
H������OH�=�H��tH�Ǻ
1�����H�=�H��tH�Ǻ
1�����H�=�H��tH�Ǻ
1�����H�=�H��tH�Ǻ
1�����H�=�H��t�H�=�H��t�
1�H�������_H�=�H��t�
1�H����D���E����H�=�H�����=��u	�P��5����H�=�H�����
1�H�����…�t������H�H�H����H�H����D�L�L�
L��C�
H��L���������t@H�ֹL����€���D	�t%H��tAH�H��t9�H��L���������u�H��fDH�JH��H�J�H��u�H�H��u�1ۉ�H��$(dH3%(��H��8[]A\A]�fD�H����D����<G�~A��<MED�A������s���D��H�H��_���������@H�=�H���������fDH�=�H����������fDA���f��@��#���f�����fD1�E��H������H��8�����H�=�H��H�H����H�5H���H��H��H�����-������H�5H���H�5H��I��H��H�5H���H�5H��H����~H�5H���H�H�=H���~A�ԅ��L���H�=�H�=�H��$���@H��H�$H�D$����DH��H��$���$�����t
�1҃8k�‰����H�=�H��t1��
H�����~�H�=�H��t1��
H�����~�H�=�H��H���iH�Ǻ�1�1���Ã����H�T$�ƿ�������D$(?���H�5���H�������H�H��t�xc�@d�x��@�D�
E���9���D�E���)����Z���f�H�=��H���K����]����
��u
�'��������'�������)���f��Յ�tbH�H���-�������DH��H�5�1�������������A��Hc��L�%H��H��a�����Å�t��=������u
��5����`���H��H�5�u���H��H�5�1�������H��H�5�F���ff.����AVI��AUE��ATI��UH��SH��t��4H��u!�(fDH��H���H��L����H�]H��u�M��tE��L���[1�]A\A]A^ÐIc�L��L�������H�#Eg����H�GH�H��ܺ�vT2H�G����AWAVA���AUI��ATUH�oSH��1�H���G�O�@�ƉWD���������W��?t;A�ĉ�D��H��H�|�@D)�A9�rhA��G�t4�L��L��H��L���9���A��?vWE�f�A��I��I��I�H�޺@H��H��@�H��L������L9�u�A��?D��L��H��H��[]A\A]A^A_�I�������ATL�fUH��S�FH�����?��L�H�z���?)ƒ�w=��t1������9�r�L��H������f�CAD$AD$ I�D$0��71�)��H�CH��L��H�CP�?����oH�{1�H��MH�H�CPH)��KX���H�[]A\�ff.�f�AWAVAUATUSH��dH�%(H��$�1�H��t^� �I���A�����f�Mcg I�oA�_@L��H����H���uM��8u
�=��uٽ����H��$�dH3%(����
H�Ĩ[]A\A]A^A_�f���~�A��A������u���I���ALJ�f�8LS�|�x�r�@t�P�Hf�@�H�P�X���N������	M�g���A;G �ZA���9�~u���E�o)�H�Hc�I��H��L��D���H���u$��8������5��u�����������A��M�gA���9��I�D$,H�D$Hc�I�I���D�hA�����h(A9��}A�� �/Hc�I���H�4@H���H���A���I���I����h$A9��}A�� ��Hc�I���H�4@H���H����A���I���I���H�l$�p(I���L��H�����������I���I���L��p$�������hM���Ic@���o9��gIcP���[9��SIcp���G9��?IcH���39��+I�H�H�H�H�I���H�T$I���Ic@ H)�I���H��H��I���H��H�H���I���H�I���IcHI���H�H��H�D$I9���E����1�D�L�4��t9�d�<B�9�ZH��H��u�IcP ���kI���H��H�H9�r*�RP9�!�P9�P9�H��H9��-�9�~�H�5�1��H�5�1�����>���f�H�� �H��� ���I�GA�G  I�������P�Hf�@	f�@
�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�Pf�@f�@f�@�H�H#�P�P �H �H'�P#�P$�H$�H+�P'�P(f�@f�@!f�@%�H(�P+f�@)I������1��
fDI���HcȋL�4��t#f�BI���H�T�4�
�rf�B@�2�JH��H��u�M���IcP ����I���H��H�H9������pH��@�p��p�H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��H�H9�w�M���A�pI����b���Ic@I���H����0�ALJ���t`�
A������1������L��Hc��I��H������I�GA�o I����u���I���D�%D�-�B(A��A���1Ic�H�4II���L��I�
�9�H�qH�=����������I�J�D�B(�9�xH�qH�=���������XI�J���B(��$�A�D$I���KA�zH�L$�;M�bfoL�t$ L���AoL$AT$M�l$)�$��� L��L���H�L$�L��H���L��L���H��$�I�D$H��$�I3L$H1�H	���D�$$D�l$E����D��D�l$�H�=I��H��������I��D������M���H�=t"L��D��L����������������P�|$������E��t$A9u��H�t$�������D���������5���$A�?D�5���t�A�����H�5L���H��tH�����H�f�)�#���A��H�51��H��@�������H�5�1������L���H��������
1�H���I������H�5�1��H�5�1��D�%�D��D$�H�=I��H��tZE���W����7����E1�1�1�1�����������H�=����H�5�1������E��|$������M���2����;�����|$������E������1�H�5L���u������I�}��������1�H�5L���K�����fD�=������-�E���D$A���I���F������H�5�1��������H���H)���H�5�H��1������1�H�5L�����������
����1�H�5L�������A�#��L��H�
H�����1�H�5L���a����ff.����AVAUATUSH��dH�%(H��$�1��D$H���H�������	�;1�L�l$L�d$L�t$H�k�l���������{�ul�;�����L��L���D$���C�����H�H��t�@��H�H��t��{1�����f�|$���=u|H���4��tH��舴��H�������d���1�H��$�dH3%(u}H�Ġ[]A\A]A^�D����������������������{�H�5�H���f����ы{L���A���;����ff.���AWAVAUATUSH���D�=dH�%(H��$�1�E���xH���H�-H�����}����;�DH�-H��t1��H�ED�E���H��$L�|$PD�cA����:E1�A�f�D�
E����D�E��tH�H��t
�@f����L��H��1���H�Ic��D��H�D$PH�D$X����A���?)ѺH��H	��D9#��1�1�A�|$M��H��D9#������H�H��t
�@D9#��A��D9���1�葳��������f������H��$�dH34%(���'	H���[]A\A]A^A_��K���L��$�H�����DŽ$hM�l$H��$�L���H��$L��H��H�D$@����AH����L��DŽ$hH��$��H��$�L��H��H�D$0����PH��$�L��H��H�D$8����+H��$`L��
H��H�D$(����H��$ L��H��H�D$H�A�Dž���H�D$PE1�L�l$`H�D$H��$�H�D$H��$`H�D$f�D�%E����H�H��t	H�=��1��I��L9�t<1��ձ������L���5����E���D�uE���M��E1���V�H��L��H�1���H�Hc}��}L�D$L��H�D$PH�D$X�����������?)ѺH��1�H	T�`1��������������8�����H�t$(1ҿ
�������x������=�����������_����5��tH�H��t
�@f���,���D9#�
D������C�����H�H��t�@��H�H��t�D�c1�D���N����
�����=�����{�H�5�H����������H�H��t�*H�H�������B���(���@H�H��t�@��H�H����������@��8�B����-���DA��D9�����M�����=���������������=�����H��
H��t��D��H�H��t�
�A9����������H�H��tD��҉T$$D�E~:E��~5����T$$A���A������A��u������D�E�U�M�
D9�vH�A�����H��tD�H�5�1�����������D$��0������������H�=��T$���fD�}蠩���C�����1��m���H�|$I���H�|$��H�T$H�t$1�����6���������1�EM��tA�M�gM�g�{E1���C����H�t$1ҿ��������H�=����f��;�������>���fD�D$$��0���d������T$$�W���H�=�T$��T$����fDD�#A�����������fD����R���D�E���B���H�H���2����9�����{�H�5�H�{�w������H�=�����H�=�0�M������A����H������…��
H�{����H�������������H�=�����������H�t$1ҿ�����H����L�=�H��H�H��tH�1�1���L�=A�G��H�H��t��{1�蝦��D�-E��uH�H��t!�E�9~�������;���t������H�t$@1ҿL��$��H�t$01ҿ�H�t$H1ҿ�H�t$81ҿ�H�t$(1ҿ
��kH�LSH��$����$���L��$�������H�=�������%�����������,���H�=��Q���H�H��t*f�C1��C�D$�C���C��T$H�C(H�C �����fD���=��ff.�@��H�������,����LSLSLSLS����������������GA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realign
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignAnonymous mmap() failedlocalhost%02d:%02d:%02d [%s] [UID:%d][%d] %.*syesnosystem()%s, errno: %d (%s)
/dev/nulllibpthread.sopthread_atforkHTTP_[UID:%d][%d] %s:%s: %s
LSAPI: jail() failure./etc/Can't set signalsaccept() failedLSAPI_STDERR_LOGPHP_LSAPI_MAX_REQUESTSLSAPI_MAX_REQSLSAPI_KEEP_LISTENLSAPI_AVOID_FORKLSAPI_ACCEPT_NOTIFYLSAPI_SLOW_REQ_MSECSLSAPI_ALLOW_CORE_DUMPLSAPI_MAX_IDLEPHP_LSAPI_CHILDRENLSAPI_CHILDRENLSAPI_EXTRA_CHILDRENLSAPI_MAX_IDLE_CHILDRENLSAPI_PGRP_MAX_IDLELSAPI_MAX_PROCESS_TIMELSAPI_PPID_NO_CHECKLSAPI_MAX_BUSY_WORKERLSAPI_DUMP_DEBUG_INFOnobodyLSAPI_DEFAULT_UIDLSAPI_DEFAULT_GIDLSAPI_SECRETLSAPI_LVE_ENABLELVE_ENABLEliblve.so.0lve_is_availablelve_instance_initlve_destroylve_enterlve_leavejailLSAPI_PHP_LSAPI_PHPRC=packetLen < 0
packetLen > %d
Bad request header - ERROR#1
ParseRequest error
SUEXEC_AUTHSUEXEC_UGIDLSAPI: setgid()LSAPI: initgroups()LSAPI: setgroups()LSAPI: setuid()Bad request header - ERROR#2
lsapi_accept() errorPragma: no-cacheRetry-After: 60Content-Type: text/htmlDEBUGINFONOTICEWARNERRORCRITFATALAcceptAccept-CharsetAccept-EncodingAccept-LanguageAuthorizationConnectionContent-TypeContent-LengthCookieCookie2HostPragmaRefererUser-AgentCache-ControlIf-Modified-SinceIf-MatchIf-None-MatchIf-RangeIf-Unmodified-SinceKeep-AliveRangeX-Forwarded-ForViaTransfer-EncodingHTTP_ACCEPTHTTP_ACCEPT_CHARSETHTTP_ACCEPT_ENCODINGHTTP_ACCEPT_LANGUAGEHTTP_AUTHORIZATIONHTTP_CONNECTIONCONTENT_TYPECONTENT_LENGTHHTTP_COOKIEHTTP_COOKIE2HTTP_HOSTHTTP_PRAGMAHTTP_REFERERHTTP_USER_AGENTHTTP_CACHE_CONTROLHTTP_IF_MODIFIED_SINCEHTTP_IF_MATCHHTTP_IF_NONE_MATCHHTTP_IF_RANGEHTTP_IF_UNMODIFIED_SINCEHTTP_KEEP_ALIVEHTTP_RANGEHTTP_X_FORWARDED_FORHTTP_VIAHTTP_TRANSFER_ENCODING%04d-%02d-%02d %02d:%02d:%02d.%06d Child process with pid: %d was killed by signal: %d, core dumped: %s
Possible runaway process, UID: %d, PPID: %d, PID: %d, reqCount: %d, process time: %ld, checkpoint time: %ld, start time: %ld
gdb --batch -ex "attach %d" -ex "set height 0" -ex "bt" >&2;PATH=$PATH:/usr/sbin lsof -p %d >&2Force killing runaway process PID: %d with SIGKILL
Killing runaway process PID: %d with SIGTERM
Children tracking is wrong: Cur Children: %d, count: %d, idle: %d, dying: %d
LSAPI: LVE jail(%d) result: %d, error: %s !
Invalid custom stderr log pathFailed to open custom stderr logCan't set signal handler for SIGCHILDReached max children process limit: %d, extra: %d, current: %d, busy: %d, please increase LSAPI_CHILDREN.
LSAPI: failed to open secret file: %s!
LSAPI: failed to check state of file: %s!
LSAPI: file permission check failure: %s
LSAPI: failed to read secret from secret file: %s
LSAPI: Unable to initialize LVERequest header does match total size, total: %d, real: %ld
LSAPI: missing SUEXEC_UGID env, use default user!
LSAPI: SUEXEC_AUTH authentication failed, use default user!
LSAPI: lve_enter() failure, reached resource limit.prctl: Failed to set dumpable, core dump may not be available!sigprocmask(SIG_BLOCK) to block SIGCHLDsigprocmask( SIG_SETMASK ) to restore SIGMASK in childfork() failed, please increase process limitsigprocmask( SIG_SETMASK ) to restore SIGMASKCache-Control: private, no-cache, no-store, must-revalidate, max-age=0PID<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>508 Resource Limit Is Reached</TITLE>
</HEAD><BODY>
<H1>Resource Limit Is Reached</H1>
The website is temporarily unable to service your request as it exceeded resource limit.
Please try again later.
<HR>
</BODY></HTML>






	


�^�d/4-////%-/Ga'9(�_intG�)@/G��G�@�@�G�@�G���������G����`<E�������!��<|/4�G��@B@+/000000 0@0��4<�G
8�"	S-p"�.$0
�5
�=�>�@
�A
� C	�$E
�(J
�0NL8PX@[+H\+X]+hj$xp4G-	-�	N�1�	ooGGXa�&�&	E�18�:	;�1?A
�B
�C�1GOI	J�K�1 O�Q	R�S
�TU1a�c
Ed
EC^�&e�&g�1 Y[E]ah
�1l5n�o
�1tfvEw
�x@Cp3�&5�&<�&D�b_rtL&VO&i�&p&y5��G1�$	+&	�(	�*	�0	�{	f|�HCIRT �Cv&"7&$	�R� � � E+v"��&T.1	��4��c�	�G@4�H�H�//�-Gldy"m
-91�1�;	�C�m�GFy�<�d(�e���GfI@I@IEIE"�1�	3�6	|7	|8	|9	| :	|(;	|0<	|8=	|@@	|HA	|PB	|XD�	`F�	hH�pI�tJ�xM9�NN�O�	�Q�	�Y
��[�	�\�	�]�	�^	E�_
�`��b�	�g+J�	��	G�	J�	J�	�
G4�'�
�	<
'�
'�
' �	T
h4I
' T
X@!�
	

!�!"!�!��
!��
""F"E"#!�X@$�
i0%9"#��#��#�
�4���G
"&4&6	�&7	��<|"0'1�'3	|'4	|'6�'7�'8	|'9	| ':	|(jtm8(,
(	�(
�(�(�(
�(�(�(�(� (�((0|<
G')�,
')��')��')�,
')��')��H*!B@,H�	

 !"#$%&'()*+,-./0123456789:;<<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������'-$|'-2�'-7�'-;�.U.m.�4�/�"/*/!B@/)�!)./23\^bgl�����00/{�C/�&/�
&/�-&/�=�-G�=G�MG"/�h/�	�4M'/�h'/�h"/��/��/��/�/��-�GK/,/�/�/�/M/�K005�07�08�09�0:�0;
F0<�0=	| 0>�(�,"n1�1�1 
���GkB@2,�	

C2q�&2s9&2t"2k2m
�2n
�2o
�2p
�2u�",2��2� �2�
92�
92�
92�
92�
92�
92�
9 2�
9$2�
9("�2��2��2�
�4��G9�G"2�2�
92�
92�
92�
9"2�G2�
92�
9"2�o2�"�2�"/"
/�
1|
2|
3�
4�k	
:�
<�
=�
?�
@�
B|
C� 
E|(
F|0
G|8
I|@
J|H
K|P
L!VX
O�`
P�h
Q�p
R�x
T'\�
V'b�
W'h�
X'h�
Y'��
Z'��
\'n�
]'t�
_|�
`|�
a|�
b|�
c|�
d��
e��
f�
g�
h��
i��L
k'zL
m'G(L
n'�8L
oE	"0pVr
�s
�uhv�w�x�z�{� |�(��v����Ga�=G�
q�'
s�
w��9��  �  � EM
X��9� �    $�EM
x7=RH H�"XO�YbufP=Q�YinR���G-�G?]!NB@j�~���	���	��	��	��	��	��	��	��	��	��	��	9� � � ��	��
H	�
H	�
H	��	�|	��	��	�	�	��	l��	�"G�	�*	^G�N	��G�t	�N	�t	�G��	M>CQ�	�L	�L	�@	�	J� 	l E	m�� 	� 9��  � � 	� 	� 9�#! �  � 9 9 #!�	@!	!9�Z! �  #!	
g!F!9��! �! |'�!	m!�
�		�
�	�
��
�	�#�	�#�	�*"G&%"	K ��"�������
�	K@�
V#�
	��
	��
	��
	��
	��
	��
	��
	��
	� �
�(�
�0�
�8M�
�"�
z#	V#
@	�	�	
�	
#�	
-�	
�	
�	H�!���x$2cnt�!�U����$2pid�'�U�	�:�
Y�O%2buf�'#!U#in�<O%a��b��c��d���(d��y'd#y'#ctxdH'f@pgy'`�w	&��}�q�`�|	d&��}�q�
`�	�&��}�q��T0
����&������
`��@'��}�q��$^'UuT|�$UuT|-N(3���)#ctx3/'#buf3I�)#len3W@t5�;�(pCy'S��G
?($��$��$��
��J	�(��������U|����v"T�TQ�$U}Tv
��S	*)��������UvTs@Q@
��\z)������n���$UuTv4($(��)2ctx$-'U7
�)!buf(y'
6@t�����5+�*5+�4��H;+�'�2�
v���*������*Us�[�*U|Tszq+U|�jU|T~Q} $ &�ok�	��9#fpk,�pmchn
�no	�p	�5,��
��}�U4Tw��
T,��T0Q:
���
�,��T0Q:����,��UsT0Q:���5-��T0Q:���
�-��T0Q:���
�-��T0Q:���.��T0Q:���
i.��T0Q:���
�.��T0Q:���
/��T0Q:���
P/��T0Q:����/��T0Q:���!�/��T0Q:
�:�B3�:�:N�:%3�:����0��T0Q:���0��T0Q:
#�25B��}NH�M}1e�Y�'�UvT0Q
��S
�14�'�3�U1TsQ��}ʊg
T2��ۊ@�UsT	Q@L�l2Us���2UL��2Us��UT	QvY��2U	Y�	3U	Y�U	f�U	
�{�	�5�{Ռ��3��T0Q:
z�	�4>�>74�r��"4Ts�Us��]4U	T
���4UsT	��
[��5m���4UsT	��5UsT	��,5UsT	��Q5UsT	��v5UsT	���5U	��ʳY��5U	Y�U	;��W6%�;O";#;Y�2x�6k�%2w���~����}׳�6U2T��~Qw�Y�7U	�9Y�,7U	Y�K7U	Y�j7U	Y��7U	Y��7U	�;Y��7U	Y��7U	�<ytY�,8U	Y�K8U	G<Y�w8U	�;Y��8U	�;Y��8U	<Y��8U	Q;Y�'9U	Y�F9U	�^9Us�<Y��9U	Y��9U	Q;{X�9TvQ
| $0.�MX�]�":!p],	_
":�3:=G�E�`:
E-	G	�%��:!p%)
%2|
%=�	'
�:len(	�end)|��:=G��;i�	�pw��!)p�7�
2;env�!)del�!D���T��D���(���;*�$�U(���;*�*�U(��<*�'�U(��G<*�&�U(��v<*�$�U(���<*�"�U(���<*��U(��	=���
��
��H�
-5+fd�
�ret�
��
��
���~�
E��t;�=	
�	
�5
>__d
���U| $ &585>8!�
�O�
�E�O�O�O�O��wP��yP��z%P��{2P��|?P��~LPYPfPsP�P�P�P��t�P��t�P��u�P��vN�P<?�P�P>�P	p?�P��>QT�?Q��?U
���
y��@y!y��
��9C@��������7�@�����*�UvT|Q@�T7��@U}C�
AUAT|Q��t7�"AU}C�GAU?T|Q��tC�lAU2T|Q��tC��AU:T|Q��tC��AU3T|Q��t3�AU	O��AU0��KQ
BU|[�%BUV3KBT}Q0R0X��t�C�|BU:T��tQ0���BUT	��BU��[W�V�BUu7��BU��th�CU��tTAt�DCU0T��tQ��t��L�t��CU2T��tQ���CU	���CU	���CU	��DU	��8DU	��t�iDU2T��tQ0���3�DU0T0Q	���DT0L�C��DUAT��tQ0C�EU?T��tQ0C�8EU3T��tQ0C�\EU2T��tQ0C��EU:T��tQ0���EU	Q��U	
?yj"�FQy-?y+Qy+�y	#/�y+�y#�y�y*�T	Q8ly�

9G~y+�y�y�y*�T	Q8zqQGUsO�hGU03�GU|TvQ0R0X��[W�GU|���GU|T0�Q��HU	L���GHUs?Ãs�x_HUs��HUs?Ãsqp�HUsO��HU0�M
���MM
.5+O
4P
4Q
���}R
E��}S
�retT
�V
z#EactX
���~;�I	�
	�	�
	�5�I__d�
	���;1J�
��#JU
���T7�VJU|C��JUATvQ	7��JU|C��JU?TvQ	C��JU2TvQ	C�KU:TvQ	C�@KU3TvQ	3[KU	O�rKU0��KQ�KU}[��KUV3�KT|Q0R0X�C�	LUAT	Q0C�2LU?T	Q0C�[LU3T	Q0C��LU2T	Q0C��LU:T	Q0���LUT	��LU��[W��)MU	��HMU	��gMU	�VMUu�>
�@�N>
+5+5NC
4O�U0L�
�p��O
*5+
	�
y6
GOy!y�@
��7�N����
��9O�������*�UsTwQ@�����3�OU0T0Q	���OT0L�Q�:�Q
:@z#
;95+act=�	=�	=%�	=/�	>�	>�	?�	@�retA�pidB�	C4	D4	E�	FE	H�	I�F�P	�	�	�	�FQ__d�	�)	��D/�1�T+�:�
6��R�,��	��	��	��	�������%RUT	��<RT9��dRUT	��{RT?�Z���RUT	�RUsT��:�
+��T�3��A��
�T��wi�)�	�S����z���UsT
Q1R
X	���ST0��r���TUT	R��w�X~Y����=TUs˴TTU0��sTU	���T=G�6�����U�|�	��	�`�
�cU��}�q��UsT}Q|ش�UU}T|Q3R!X	�Y}����U	7C
:V
C!�	E	�pidE�	F
�	G
�	H�)	T�	V(.Z��V4�5�6�k�,W2pid4�U��+`�!��}�q�:
�[W*�U6�
���=X�
�fd�
��
���~Elen�
F��~�
=X��~�XU�UT��~Q��~�/XUsT6Q1R��~X4��MXG(�
�{X2fd�
�U8�
��X
�
$�!fp�
>�
�
F��
�l�Y�
*�
5��

=X��~ret�
	�pfd�
	�YSYU�UTsZqYUsTv�88
�Z
8
'
8
@�	:

Zp;
|	<
|res=
�	=
,	>

�	?
	��ZG�
�-��[
6�[
G�ret

	�fd
	�
	��D
	����ZT1Q0��ZUsT2Q1�[UsT1Q2R�DX4�?[UsTvQ} �][UsT|�L�,��[Uv��8�	��[
�	/5+
�	B!len�	L�F�[ch�	�)	�	
��	���^�	05+�	C�	,�		��	�len�	�;�\ch�	�;�\ch�	�57]�	
��U|
���	x]��������T�TQ~
���	�]��������T}Qv��]Uv�U}�	���t^*�	25+U-���	�����	�F��^�	05+#fn�	!�#arg�	,E@p_Q�TR�Qt	�F�p_t	)5+#fnu	!�#argu	,E@p_Q�TR�Q6a	�s�`a	6h#nb	�#fnb	(�#argb	3Ed	#hrete		�qX}	���b	,5+#fn	!�#arg	,Ei 		�len!		�"	|ret#		�$		�;Zb7	Z��}p8	|9	|:	|;	�<	&t<	-t5(�achK	�%O	�F�a__cO	�9�
̋F	
1b���݋r��}U~T��}�#X��|3�bUv3$|"T	v2$}"�X��|���$�_d�/5+#fn�!�#arg�,Ei�	�len�	��|ret�	��	��_d���~5��c�|���&t�-tE�dUwQ R	E�=dUwT| $ &Q R	3QdXv�A"pd=G���
��d2v1�'�U2v2�7�T�|�'f�(5+�;�#h	�#h['f�f$Ff$9fSf^fNkf�elfwf�f�f�f�fU�f�fU�f�f9�R�U|Ts3$"R�U|q|�f
q-5+
q@is	�	t|)p�	�|	�|	��	�&t	�-t)ch��)	��)__c��8<	-�g
</5+
<B!len<O	> �	?p@	A
-	B
-retC	�iovD�g	E��gG����h$5+ret	�n	�
��.ph6�$)���C�P�]�q�Ts��h�hUs���hUs?Ãs^(�i�Ni*�'5+U�"\�	�-���Ä�����	-���j�+5+�5�#off�B�j�N�"\
���j�����g5jUs*�RjT~Q8Z^�yjT�TQ�QR�R^8	- k
(5+
;!lenH	"\	 p!	"
-	#
-	$
-	%	��	-��l�.5+�;|�Hlen�
-�
��	l��$������UvQ|-o�	��������ʊ��l��ۊ@�U~TvQs���l��n�-5+�:|�G�THlen�
-�
-�|�|�|p�|
���	>n��������#nTQs��TQsmo��no%�o�o��U~j�UT:Qs��]�mo�-5++mo�o%�o�o��Us���o
�.5+	�len�
-�|S�p*�+5+U�5�off�	�y�J�qpy&5+��������(nY��pn%5+-`�t��}�$q�K���zqK*5+�h-qUs�gEqUs��eqUs?Ãs^Us-���r-%5+�h�qUs�g�qUsqp�qUs^����Ft�%5+�=X��~Elen�F��~����~
?yPsQy-?y+Qy+�y /�y+�y	 �y�y*�T	Q8zqhsUs��sT0��sT|Q}���sT0�x�sUs���sUv?ÃsqptUs��8tT6Q1R~X4���
�yt*�(5+U����t@FtU	����%w�(5+#fd�2��	�
`��Tu��}�$q�
���
�u������v�T
Y�'�
>vk�%'w���~����~׳/vUvT��~Q��~�
H���ve�Y�'�U	T2ʳ�vU
 ��vUsT
���vUvT1��wU0��wT0�(��Sw2cb�;*UD���T�������x�E��ۄ�wU=T	ۄxU:T	��;xUIT1��WxU2T1�t{xU	T0�����xU	T1��T	A�y
A%5+lenC	�	D	�4�/y!fd4)�	6
/y�?yG+�^y!fd+,�s ���y!fd5�	��y!fd	7���y!fd.�!pktN\��*z
�*5+
�4�	�	�	�|	�|��Wz
�65+	�D��z
D.5+uidF	�gidG	�	H	I	J#h	K#hiL	�1�>{
1.5+
2|!len2�
2+|
26�	4�	5>{-N{G���{
�'5+!uid�3L!gid�>@
�Prv�	�pw��!���{	�6�����|�+5+#uid�7L#pw�L�!ret�	���T��w3o|U�QTs���|UT	Q|Xs�}�|UvT	Q0���$}
�,5+!uid�8L)	��ret�
���r}
�-5+�r}	��}	�}G��}=G#4�}6{���{,5+{?{R}
":��_n~	�
i�~
�~����$z���UvT
Q1R
X	����r��f�~U|Tv*��~U2�Dr��J�[
J%stLSfdM	�)�zrc+	���)uid����
�-5+	�	�i�	�)	�&t	�-t7�
O�
�35+i�	�F2�b��p�|)	�&t	�-t7�v�
�/5+p�b7���
�)Hp�|b��6t��Y�t4htB�*u!Qu#|w#hx
�x�h���!fdh�	j=XlenkFR�ف
R<ف
SH
S+�	U#hh>��
>>\
>L�)bF�62�G���235+2=�p4|v�Tv$�Ă
$+5+!n$5�p&����
05+
:�	|��i�!fd��
�2i�
�<�
�G�ret�	�	�	�n�	���-��!fd�'�
�2E!len�?ret�
-7�
у
�35+����!fd��ret�	�6�
�U���#fd�#��+�val�	����UsT3Q0@�U�UT47wф
wJ\
x&�!lenx0�tR
:A
����A�A2�EsaC���~C�W�UvT0Qs7�o�UsC���UvTsQ0�:8
�υ2sig8!�U:3
���2sig3 �Uu�(7��� .���m�Us@��UT	Q�UR�Tv���v�w��xfmt�'PVbuf�
�T��vyp�|z�	�Eap

��u5���Vtv�E��uVtm����u{i��և����z���U|T
Q1R
X	\i�/�X�����z���U|T
Q1R
X	õu�UsT0ϵUsT��u
��+���۵T1Q}R��u\i�-�������z���UsTdQ1R	�X	Yv�3$"
i�������z���UsTdQ1R	�X	
>�	[�[�O��T1Q	X|r��W
����
�:5+
�D�.�|ʊ�|�."-�"�"E"%.k|6�k�kk.\|`�\�\.>E��>E>�>.'E̋'E'�'.E�G�.��8�� 
��18��.d�i�d 
d<P.A���]__sA�]__nAAP.%|Ռ%%�|sz'
8n���
n8i��
i8	��B�
	��
	�B�S.)�s�))�PW1���1�W"m��"m,mo����o�o�o-o����������ʊ�����ۊ@�U~TvQ|�,��a�q�$ÃSу �G�$�% �L�8�Us�+���
$Ã,�������)�6�C�P�]����UvQ|�,��O�t�
��O����f�T0��,YY����Y�Y�Y��}�Y�Y�Y��}�Y��}�Y�Y�G
g�)�����U|TsQ�
�N
	ʑ)�����UvT|Ql
���
���UsT0Q:
`��
	T���}�q�
̋�
	�����݋
�Uv
6�\

�S�G��)��U|T:5�1�U|T	)�O�U}T]A�z�U}T0Q��}R��}N���U|[���U}�,�U����U�U�UQ�UQVV[�UC
ה$�U�U���U�UVVNV��V+V��UT|Qg���U	�TvQ3�VUu�,�fl�E��fggg,g9gDgQg^gkgxg�f�<	�gg�f%�g��,g9gDgQg^gkg��xg��
��e��6�)���C�P�]�q�TwQ2R}
��Z	�Ä�����g��U~��U~?Ã~*�7�U2T��~�,�9=���	::�п
`:b	���:}:r:�:��_�:�:
��,
2�����s�UwT
��9	������%Ɍ�UsT|Q
��јTvQ0���
3:g6�E:R:H�G��e�Y�'�UsT
AQ
�������Us��ڙUvT2L��Uv���U2T1�}U0T	Qs�9 ]��	:% :�}U0T	Q�U�,�j�����j�j�j�j�j�j�j�jkQk
�j	���j�j�j�j�j�j�j�jkk
��S	�$Ä������?	c���������UT��Qv�g{�Us�gUs^,�[��[�[�[}�[�	�[$�[$�[>�[,��[>�[3g��[�U|-���	��������TvQs,Y�8��Y�Y�Y�Y�Y�Y�YQ�Y�Y@t�U�UT�T,{X!�#��X�X�X-{X�
�X�X�X��՞U@T1�����[��UU��,�x����x�x�x
o�O/���������ʊ
� ���ۊ@�UsTvQ|�
�xAh��x�x�x߁1V۠���O��o�@iš������%8��ʊ�����ۊ@�U}T|Qv�
�yn
���y�yzz��~z��A�
�������%Aˁ+��5R������%5ˁv�Tv $ &33$��A�
��������%Aˁ+��5R������%5ˁv�Tv $ &33$
��	w����O�D��O���	X�]�%�j�
v���������
v��[�������
v����������
v���������
v��6�������
v���������
v��Ȧ������
v���������-v��������S��	K�$�%�>�#)��&�+v��
��%����O2��3�@�
v��
��������
v��
ڨ$������
v��
�$������-v��
$������*z1�	ԩ<z%1Iz�o��UT7��T0Q:���QqR|��
�R|��2�UT	��Z�UT	��UT	QsĂ+d��ւ%+�v�U|Tv $ &
Wzx��izvz�z�z�z�z�z�z
�zj¬�z{	{�z�z#{��~0{��
��9E��������)]�U~�'��U~T|Q �'��U~T��~Q8U%U}T~
N{�
2��{z{m{`{�{�{
�|�
M�$�|�|U}}��~}$}!�
��6}%!�)UT
�Q	R	X
#3%�T|Q	�R	�Xv�}UT	Q0ф-,	��Ƕ��U4Q0R0X0��U	ӶήU|�{�UT|Q}߶��U1T��~��5�U|ӶM�U|߶߶�}��UT	Q0��}ȯUT	Q0Ӷ�Uv�}
�UT	Q0�}UT	Q0L��dd�UT	�9����UT	��UT	`�z	���}�q�
?y��Qy-?y	+Qy+�y&/�y+�y
&�y�y*�T	Q8���UT	��;�UT	��UT	Q
��Ă/I޲�ւ%/�v�T
 �AA3�4E�	�*aw't*�*�585@5R

3
6�7%
~8*�9D*t*n��)K*k��*�*�*wpA
f
:96�6�6f
�6p6�*9+S;
3�;!3[%dupdup***�X3�&D)�]Z<4AA��::+O#3�=t0�0�
>"?o�363�A*��@'n*�A�*�A����B1�B(��1
:;9I841�B��1��1	4:;9I
1R�BUXYW:;9I�B4:;9I�B
:;9II:;9I4:;9I1R�BXYW.?<n:;94:;9I4:;9I�BI41U.:;9'I :;9I!I/.?:;9'I@�B4:;9I41
:;9I8.?<n:;9 I!:;9I":;9#:;9I�B$1%&
:;9I'4:;9I?<(.?:;9'@�B)*:;9I+1R�BXYW,.1@�B-1R�BUXYW..?:;9'I 4/$>0(1:;92:;9I3��4&I56.:;9'I@�B7.:;9' 8.?:;9'I 9'I:.:;9'@�B;U<7I=!I/>1?��1�B@���B1A.?<n:;B>I:;9C:;9D.?:;9'I@�BE4:;9IFG5IH4:;9I?<I
:;I8J<K:;9L
:;9I8M:;9IN1UO1PQ41R'S1XYWT.?:;9'@�BU1UV4:;9IW.:;9'I X>I:;9Y
:;9I8Z���B1[1UXYW\1R�BXYW]:;9I^%_$>`a:;9b
:;9Ic'd&eIf:;g:;9h!i(j:;9k:;9l4G:;9m'In���B1o.?:;9'I@�Bp4:;9I
q��r���Bs.:;9'I t.:;9' u.:;9I v.?:;9'@�Bw:;9I�Bx:;9I�By4:;9I�Bz4:;9I�B{1R�BUXYW|4:;9I}1UXYW~.?<n.?<n:;9�6ddqd	��T�)�T���u��P�P�P(�P�PsP��P�KP[�P�"R+�R��R�JQ^�Q�5Q5<v �<�Q��{ ���P�Tt ���_��X
~X��X�[Ti�T�2TA�X��X[P[aQx�T�4T@�P�P{P{t ���X��R��r �t;# $��������%!r"�p;# $��������%!r"���u�?[g�R�SRb�R�HRQ�R�R {R��TKTi�Q�X%vXvzr ���TiT��T��Q��q ��R��u.�Q�2QH�Q�+Q4�Q��QoQ��Q�;QQ�X��PiR~�R��v ��FRFW{ �_�R��z ��QK$KU$K�KV�K�K�U�KIKTIK�KS�K�K|h��K�K�T�K.KP.KPKQpKuKQuK}K?p� K$KQ$KLKUpK}KU3KFK	q�����3KFK0�3KFKUQKpK8�QKpK0�QKpK\pKyK7p�����yK}KQpK~K0�pK}KU�K�K@��K�KU�K�KS�K�KV�K�KX��K�K0��K�KS�K�K|h�JlJUlJ�J]�J�JU�J�J]�J�J�U��J�JUJ0JT0J�JS�J�JT�J�J�T��J�JS�J�JT�J�Js@��J�JS�J�JSJJQJ�J^�J�JQ�J�J�Q��J�J^�J�J^7JTJPWJZJp?�ZJaJPaJtJ\tJ�JP�J�J_lJ�JU�J�J|����v"�|J�J_|J�JS�J�JT�J�J�T�|J�JU�J�J|����v"��J�J@��J�JS�J�JT�J�Js@��J�J}��J�J	~������J�JQ�J�J\�J�Ju�`I�IU�I�I\�I�I�U��I�I\`I�IT�I�I�T�`I�IQ�I�IV�I�Ivx��I�IV�I�IV`I�IR�I�I^�I�I�R��I�I^`I�IX�I�I]�I�I�X��I�I]dI�ITdI�IUP@c@Uc@CVCrD�U�rDEVE.E�U�.EeEVeElF�U�lF;GV;GTI�U��@�@P�@�@P�@�@P�@APA0AS0ACAPVAiAP}A�AP�A�AP�A�AP�ABP$B7BPKB^BPrB�BP�B�BP�B�BPrD�DS�D�DP�DEPEEPEESlF�FP�D�Dsp"1�D�DP�@�@P�@�@PjApAP�A�AP�A�A0��A�AP�B�BP�D�DP�D�D0�.E4EP:EQEP~@A0�A!AP$A�C\rD�DP�D�D\�D�D0��D�D\�DE0�E�E\lF�F\�F�F0��F�H\�H@I\EITI\�@�@P�@�@PAAPAAS5ACAP[AiAP�A�AP�A�APBBP)B7BPPB^BPwB�BP�B�BP�B�BP�FGP"G,GP'CQCPE#EP HQHP�F�FPG!GP;GPGPPGTGUTG�GV�H�HV�H�HQ�H�HVI;IVEITIV�F�FPG!GPDGPGPPGTGUTG�GV�H�HV�H�HQ�H�HVI;IVEITIVWGpGPpG�GS�H�HSI%IS%I6IP6I@ISEITISDGWG0�DGPGPPGTGUTGWGV`GeG��}�eGpGQpGqG��}�`GpGPpGqGS�G�G@��G�G
��G�GS]CtCP{C}C0��GHPH HPfCtCP�H�HP�HIS<FOFP�H�HP�CDPDDp�DKDP0D8DQ8D<Dqx�<DDDQ�F�F2�P?W?UW?^?u�`Y�YU�Y[S[@[�U�@[dSdZd�U� Z[\�]�^\�^__\�_2`\�`a\�a-b\dUd\�Z�ZP�]�]Pp^�^P�^�^P�a�aP Z[^�]�^^�^__^�_2`^�`a^�a-b^dUd^aZdZ	| $ &�dZhZUhZ[	| $ &��](^	| $ &�p^�^	| $ &��^__	| $ &��_2`	| $ &��a-b	| $ &�dUd	| $ &�(_A_:�A___P@[�]S�^�^S__�_S2`�`SaBaS�a�aS-bdS@[�]V�^�^V__�_V2`�`Va9aV�a�aV-b<bVFb�cV�c�cV�cdV[`_`P_`�`_�a�a_Fb�b_dd_@[~\0�~\�]_�^�^___�__2`L`_L`�`0�a9a_�a�a0�-b<b0�Fb�c0��c�c0��cd0�@[~\0�b]x]P__g_P-bFb0��c�c0��`�`P�a�aPFbJbP@[~\0�~\�\^�\�\P�\�\\�\�]^�^�^\__�_^2`�`^a9a^�a�a^-b<b0�Fb�c^�c�c0��cd^	@[~\0��\�\P�\�]\�^�^\__�_\�_�_\2`�`\a9a\�a�a\-b<b0�FbBc\�c�c0��cd\]]v� $ &�]]U__p_0�p_�_Q�_�_��t�_�_��t�1��_�_|��_�_|~��_�_|��_�_|~��_�_|��_�_0��c�cV�c�c4��c�c
��c�c����c�c@��c�c6��c�c\M^`^sM^`^sM^`^sM^p^
�M^`^s�a�as�a�a
��a�as0;t;Ut;H?��}p;u<0�u<�<^�<�<P�<�=]�=�>]�>,?0�,?C?]p;u<0��<�<P�<�=]�=�>]�>,?0�,?C?]p;u<0�u<`=��}�=�>��}�>�>T�>�>��}�>,?0�,?,?��},?C?0�p;u<0�u<@=V@=V=PV=�=V�=�=P�=�>V�>�>V�>,?0�,?0?V>?C?0�p;`=S�=:?S�<�<s� $ &��<�<U�=>0�Z>c>0�c>{>^{>�>~��>�>~~��>�>~��:;U;/;S/;0;�U�;;P�9�9U�9�:S�:�:�U��:�:S�:�:�U��9S:\�:�:S�:�:@��:�:6��:�:W�:�:4��:�:
��:�:�H�4U4������U������
�U�
$��$6U40�4�^��^
$^$60�4�0��00�0T9�r�0���?�
$0�40�4�_�\_\m�m�_
$_$60�40�4K\K�V��\��V��\
$V$60��S��S
6S�]�]
6]��U��S���U���S���U���S�T.V.��T���
���
�����w���SP'S'Wv(drPrxS��
���
���p`#���p`#� 
<$��c~`#� 
<$�dx~`#� 
<$���
v�v�"���P�c^dx^\0�PS�89P�8:9Q��P�+	P��Q��Q	+	Q	#	0�	#	0�	#	P�	
U
s
�U�
)
P)
>
S>
k
Pk
n
Sn
r
Pr
s
S 7L7UL7�7�U� 7H7TH7w7Vw7x7�T�x7�7VM7Z7Px7�7P�5�5U�56V6?6�U�?6�6V�6�6�U��6�6V�6�6�U��56T6?6�T�?6F6TF6�6\�6�6�T��6�6T�6�6\�6�6�T��6�6P�6�6P�6�6\T6g6Pg6�6S�6�6UF6�6]�6�6n��2(3U(3�4\�4�4�U��223T23(4V(404T04�4�T��223Q23�4]�4�4�Q�63Y3PY3c3p�c3t3Pt3~3^�3�3p��3�3P�3�3S�34P4,4�,4h4�L3p3Qp3~3R�3�3Q�3�3R�3
4T
44tp�44T414^4(4V(404T0414�T�404|�I4R4QR4S4VI4R4TR4S4]I4R4|�_(l(Pl(v(u�_(v(3�_(l(u��l(v(P�'�'U�'�'�U��'�'U�'�'T�'�'Q�'�'�T��'�'T�'�'Q�'�'R�'�'�Q��'�'QP''U'�'�U��'�'UP'�'T�'�'Q�'�'�T��'�'TP'�'Q�'�'R�'�'�Q��'�'Q0`U`S��S��U0`T`�^���T���T0`Q`V��Q���V���Q���Q0`R`]��R���]���R���RD�\��~1$~"3$�U"����T $ &33$�U"���\��~1$~"3$�U"����T $ &33$�U"���\`iP{P0%�%U�%&S&�&��}�&+'�U�+'9'��}9'@'U@'E'�U�0%�%T�%&_&9'��}9'@'T@'E'��}0%�%Q�%9'��|9'@'Q@'E'��|�%�%V�%�%v�b%�%0��%�%p
���9'@'0��%�%Q�&�&Q�%�%P�&�&Pb%�%0��%�%^�%�%~��%&^&'��}+'9'��}9'@'0�c&u&��}�u&�&]�&�&}��&�&}��&�&]+'9'��}�K&�&_+'9'_c&�&S+'9'SK&X&V_&u&Vu&�&��}�&�&t��&�&T�&�&��}�#�+'9'V�%'\+'9'\&&P&'��}+'9'��}�&�&V�&�&v8$8&2$p"�&�&
v8$8&2$p"c&c&5�c&c&
�c&c&^#|$U|$�$�U��$�$U�$%�U�%%U%$%�U�#w#Tw#�$S�$�$�T��$%S%%T%$%�T�#w#Qw#�$V�$�$�Q��$%V%%�Q�%%V%%Q%$%�Q��#�#P�#�#p��$�$0��$�$0��$�$^�$%^<#w#0��#�#r
����#�#t
���%%0��#�#Q$$q$!$qpI$Y$RY$m$q%%qp�$�$P�$�$P�$%P<#w#0�w#�#\�#�#|��#,$\,$_$|�_$�$\�$%\%%\%%0�$!$T3$m$T%%T%%q`$!$X>$B$RB$�$X%%X�#�$P%%P�#�$Y%%Y� !U!7!S7!p!wp!{!��{!�!�U��!�!S�!*"w*"�"�U��"�"w� !T� � u�F!q!S�!�!S�!�!s��"�"S�"�"P�"�"P{!�!|�I"o"|�o"�"P{!�!VD"�"V�"�"v��"�"V{!�!_I"�"_{!�!}D"d"}{!�!]"�"]{!�!^"�"^o"�"q2$u"�"�"q2$u"o"�"v�8$8&2$u"�"�"v�8$8&2$u"�"�"v�8$8&2$u"�(�(U�(=)S=)>)�U�>)Q)UQ)b)Sb)�)U�()0�) )P!)&)	��&)<)P>)�)0��(�(u�u�@��()Q>)Q)u�u�@�b)|)u�u�@��()P�(	)s��	))T))s���()s�()Pt � u��� � T� � p� � p#�� � p`#�� � tp#�� � Q� � P� � 4�� � T2D2UD2�2S�2�2~�~��2�2�U��2�2S�2�2~�~��2�2�U��2�2U2D2TD2�2V�2�2T�2�2�T��2�2T�2�2V�2�2�T��2�2T2D2QD2�2]�2�2Q�2�2�Q��2�2Q�2�2]�2�2�Q��2�2Q2D2RD2�2\�2�2R�2�2�R��2�2R�2�2\�2�2�R��2�2R2)2u��)2�2^�2�2�U#���2�2^�2�2�U#���2�2u��U2Z2|�Z2u2PU2u24�U2u2^`�U�< ]< H �U�H b ]b k �U�`�T�< VH b V`�Q�5 SH [ S[ ^ sp�^ b S��P��}��q $ &���}��}�� $ &���P��\H b P��P��0��< \H b \��P��\��V 0 SH H S 0 VH H V 0 ^H H ^   PH b P  S  V  ^�ZUZ�^���U��H^H\U�QTQ�]���T��H]H\T�ZQZH�Q�H\Q�ZRZ�\���R��H\H\Rl�S�HS?ZSZ�_H_HRSP\��QTQZ]Z�V��U��V��V��U�HVH\T��T��_�_��P��P��S��S��_��_��U��V��U(4^(3	p $ &�37	s $ &���U��S���U���S���U���U��S��s��s�� $ &�0yTy��T�MYQYn	t2$x"#4nyR��U�)S)*�U���U��P���U�������0��/�/U�/0S0	0�U�	0#0S#0)0U�./U/[/S[/\/�U�\/a/Ua/o/So/u/U�W�WU�W�XS�X�X�U��XYSYY�U�YPYSPYUY�U�Y#YsY#YsY#YsY0Y
�Y#Ys�	U	S"�U�"rSr��U��'T'V"]V]_P_rVr�T�dlP3
	�30�3}@�3}S?LPL}\��V]d2�]d
�3JP,2,U2,h,Vh,k,�U�k,�,V,<,T<,j,\j,k,�T�k,�,\,G,QG,�,�Q�-,H,0�H,L,Pk,�,P�,�,R+:+U:+�+\�+�+�U��+�+\+:+T:+�+^�+�+�T��+�+^+:+Q:+V+SV+�+�Q��+�+P�+�+p $
 $-(�q+�+
�q+�+
��
�
U�
�
uh��
�U�
�
T�
��T��
qRqw�R�wyRy��R��
qZw�Z�
�
0��
[p���*X-q[q�0��
�
0��
�
T�
�
t��
u|�#�-4T47p���DWT^bt�bqu|�#�q�0�0	C	UC	n	Sn	p	�U�p	w	S0	G	TG	o	Vo	w	�T�H	_	P_	i	s�p	u	P�	�	U�	�	S�	�	�U��	�	S�	�	U�	�	�U��	�	S�	�	T�	�	V�	�	�T��	�	V�	�	�T��	�	V�	�	P�	�	P�	�	P0_U_�V���U���V07T7�\���T���\@JUJrVrvQvw�U�@UTUcScvRvw�T�@�U�V}�U�}�V�.�U�.�V��U�@�T�|]|}�T�}.].5T5]����v���\�S}
S
R.:��v�:�\��S��\��S�	P}�P��v����
���
���\c�
�c�
�c�\SWRWX��u�SWQWX]SWs}�
�}�d�}�S��
���d���U��S.
�
(s��U�
S

�U�

S
$
�U�$
*
U��Q$
*
Q��P
)
P)
*
u �t $ &���P�
\

\��T�
V

V�
^

^��P�
]
$
P��\��V��^G
P
P�
�
U�
�
V�
	�U�	�V��U�
�
T�
�
_�
	�T�	�_��T�
�
Q�
�
\�
	�Q�	�\��Q�
�
R�
�
^�
	�R�	z^z��R���R�
�
P�
�
S	%P%XSXdPd�S�
�
R�
�
]	�]��R�U�S��S�(S�T�V���T��9V4��}�4�]��}�*\k�P��S(P(QS�*S��0�4�^�0�QTPThSs�S'<��'<S',��}�,<\��l���\��U��v�FQSs�0�s�0�s���}���Q��|��������Q��|��V�\dUd��U�}�P��_�U_/0�/LPLn_��_��Ud�S��P�nS��S��P��Sd��n������������P������P�Q��Q��R��X�)�)U�)�*^�*�*U�*�*�U��*�*U�*�*�U��)�)T�)�*��~�*�*T�*�*��~�*�*T�*�*��~�)�)Q�)�)w�)�*�Q��*�*Q�*�*�Q��*�*Q�*�*�Q��)�)Q�)�)w�)�*�Q��)�)T�)�*��~�)�)U�)�*^*�*S�)*��~*`*_`*v*��v*�*_&*f*Qf*�*���*�*}x��*�*Qj*�*]�*�*P{*�*P�*�*]{*�*2�{*�*w{*�*~{*�*P�*�*]{*�*2�D*T*q�T*j*PD*j*6�D*j*\�,-U-�-V�-T.�U�T.�.V�.�.Q�.�.�U��.�.U�.�.V�.�.U�.�.V�.�.�U��,�-
�T.q.
��.�.
��.�.
��.�.
��,-W-�-ST.q.S�.�.S�.�.S�.�.S�,-U-{-V{-�-ST.q.S�.�.U�.�.V�.�.S�.�.V�,V-0�V-h-U�.�.0�r-�-P�.�.P-
-
�-
-W{-�-��_��-�-\{-�-S{-�-
��-.S*.T.S�.�.S�-�-P�-�-V*.;.P;.T.V�.�.P�.�.V�-�-
A��-�-Sq.�.V�.�.Q�.�.�U�00�0U�0�1S�1�1�U��1�1S�1�1�U��1�1S00�0T�0�1���1�1�T��1�1���1�1T�1�1���1�1�T��1�1��00�0Q�0�0V�0�1�Q��1�1Q�1�1V�1�1�Q��1�1V�0�0V�0�1�Q��1�1�Q��1�1V�0�1���1�1���1�1���0�1S�1�1S�1�1S�0�0]�0
1T
11x1b1Tn1�1T�1�1T�0�1V�1�1V�0�0���0F1^F1R1rpR1�1^�1�1^�0-1_-151x51�1_�1�1_�0b1Yq1�1Y�1�1Y�1�1Y�0�0R�1�1R�1�1
@��0�04��0�0T�1�1V�1�1���1�1_�45U5%5�U�%5/5U/5�5\�5�5�U��5�5\�5�5U�45T5%5�T�%5F5TF5�5V�5�5�T��5�5V�5�5T�45Q5%5�Q�%5P5QP5�5�Q��5�5Q55S55s�55}�%5�5S�5�5}��5�5S55P55st"%575P75F5st"1F5f5vs"1K5`5T`5b5tp�b5f5Tq5�5Sq5�5Vq55|�7
7U
77�U�77U7
7T
77�T�77T�7�7U�7�8�U��8�8U�8�8�U��7�7T�7�8V�8�8�T��8�8V�8�8T�8�8V�7�7Q�7�8]�8�8�Q��8�8]�8�8Q�8�8]�7�7Q�7�8]�8�8�Q��8�8]�8�8]�7�7T�7�8V�8�8�T��8�8V�8�8V�7�7U�7^8\�8�8\�K	LU	LWL_WL�L�U��LP_P$PU$POW_OWTW�U�TW�W_�L�LP,LWL\�L�L\,LWLV�L�LV,LWLS�L�LS=LGLP�L�LP,L=L\,L=LV,L=LS�LP_OPOW_TW�W_qM�MP�LPSOPDUS\UOWSTW�WS�L�L1��L�LP�L�LQ8MqMV8MqM\.MqM]NMXMPqM�MP8MNMV8MNM\8MNM]�MPSOP,RS\U�USV0VSW/WS�MP_OP,R_\U�U_V0V_W/W_�M�M
p�1��OPQ
p�1���MP\OP,R\\U�U\V0V\W/W\�MNV�MN���MN���MNV�MN���MN���MNPNONVNON��NON��!NONV!NON��!NON��8NONPyO�O_RiR_�RDU_\UV_5V�V_4WOW_TW�W_yO�O�#R,R�#\UhU�#yO{O0�{O�OP�O�Op��O�OP�O�OROPQ_OPQPOPkPp�OPQp�SPkPQkPyPp�kPQp�oPyPQyP�Pp�yPQp�}P�PQ�P�Pp�P�Pp��PQp�	�P�Pp�P�Pp��PQp�	�P�Pp�P�Pp��PQp��P�PQ�P�Pp�P�Pp ��PQp �	�P�Pp!�P�Pp$��PQp$�	�P�Pp%�P�Pp(��PQp(��P�PQ�P�Pp)QEQPEQIQp�"Q'Qp1$q""Q.Qp1$q"�3QEQQ3QEQQ6QEQRiQ�QP�Q�Qpp��QRPpQRQ�Q�QP�Q�Qpp��Q�QP�QRpp��Q�QR�Q�QR�Q�QR�Q�QR\U�U_iU�UPvR�RVvR�R_�R�RP�RU_�UV_5V�V_4WOW_TW�W_�RDS\DSGSPGS�Sw�ST\�U�U\�U�U0��U�U\�RKS]KS�SP�S�S��~�ST]�U�U]�TUP�RU0��UV0�5V�V0�4WOW0�TW�W0��RSZS�Szh��U�Uzh��U�U0�S�SZ�U�UZ�R�Rp��R�SX�U�UX_S�S__S�Sz|_S�SR�S�S��~_S�Sz_S�Sz�S�S\�S�S}p��S�S@��S�S
��S�S]T�T0��UV0�5V�V0��V�V0�4WJW0�TW�W0��W�W0�TT��~�U�UP8VXV\�V�VVT�T_�UV_5V�V_�V�V_4WJW_TW�W_�W�W_^TpTPyT�TP�T�TP�T�TP�U�UP�UVVAVXVPiV�VP�V�VP�V�VP�V�VV�V�VP4WIWP�W�WP�W�WVT2TP2T�T]�U�UP5V@VP@VXV]XVzV0��V�V]�V�V]�V�VPTW�W] T�T_�U�U_XVzV_�V�V_TW�W_ T3T	��3T;TPTWgWPhW�W_UUH�UU0�UU
�U4UU4UU4UUDU
�U4UPJP
 �P$PU$PJP_.PJPP,�d�


�


��������9>ACFQxx|��������� *)SX����
05:������@n��Oh���"'3"'3TY}O[]d�RV]���������������������� 0 P P  0 P P � � � � � � {!�!�!""�"{!�!"�"`"h"p"�"�"�"`"h"�"�"�%'0'9'.&5&B&G&c&c&_(e(l(v(�(�(�()	))�)***`*f*{*�*D*D*I*Q*;+>+c+n+q+�+�,�,�,�-X.x.�.�.�.�.�,�,-
-�-.0.X.�.�.�0�1�1�1�1�1�0�0�0�0U2U2`2j2D3c3k3~3�3�3�3�34%4,41464<4I4S455+5�5�5�5q5w5{5�5�7�7�788�8�8�8�8�8s:}:�:�:s:}:�:�:�:�:�:�:�:�:O<T<�<�<�<�<�=>`>�>�@�@�@�@�BQC E0E�FH HXH�H�HI;IEITI�F�G�H�HI;IEITIDG�G�H�HI;IEITIQC�ChEpFH HXH�H�HIhE�EXH�H�HI�EpF�H�HdIdIxI�I_J�J�J�J|J|J�J�J�J�J�J�J�J�J�J�J�J�J�J�JpKpKuKwKyK~K�K�K�K�K�K�K�K�K,LWL�L�L0LWL�L�LWL\L�L POPiSiSUUUUOWTW�W�MPOP,R\U�UV5VW4WyOyO�O�OOP\PaPdPhPkP\PaPdPhPkPrPvPyPrPvPyP�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�PQ�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�RiSiSU�UV5V�V4W@WEWOWTW`WcW�WUSeSiSiSiS�S�S�SUS_S_SeSiSiSiS�S�S�SiSqS�S�S�S�ST�T�UV8V�V4W@WEWOWTW`WcW�WTTT�T�U�U�UV8V�V4W@WEWOWTW`WcW�W T;T�U�UTW`WcW�W T;TTW`WcW�WUUUUUDUYYYYY0Y�Y�YZ ZUZaZZZ@[�]�^_`_`8`�`aHa�a�a0b<bFb�c�cdZ\_\]	]]]:cBc�c�c:cBc�c�cM^M^M^M^M^p^
R��
/usr/include/bits/usr/include/usr/include/sys/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/bits/types/usr/include/netinet/usr/include/arpalsapilib.cstring_fortified.hunistd.hbyteswap.hstdlib.hstdio2.hfcntl2.hstdlib.hstat.hlsapilib.htypes.hstddef.hfcntl.hstruct_timespec.hstat.htime_t.h__sigset_t.hsigset_t.h__sigval_t.hsiginfo_t.hsignal.hsigaction.htypes.hstdint-intn.hstruct_timeval.hselect.hstdarg.h<built-in>struct_FILE.hFILE.hstdio.hsys_errlist.hresource.hstruct_iovec.hsocket.hsocket_type.hsockaddr.htime.hpwd.hstruct_tm.htime.hunistd.hctype.hconfname.hgetopt_core.hstdint-uintn.hin.hnetdb.hun.hlsapidef.hstring.hresource.hdlfcn.hsocket.herrno.hselect2.hsched.hmman.hsendfile.huio.hstrings.hinet.hwait.hprctl.hgrp.h	�K�K��.K5��J/�I#KK1
0	z
zJ	Z	"OJJ�= ...v �<Kg�fJ��.T2KxJ.n=@�<YDw<<=�:/;<�;/u;=IK=H</փ-K-=>:X�-=;=0:/;=I</�/sf�=H</[G��-K-=��18=;=0:X�;=-/�I=;/�?Gf�-K-=�I<�-=��;=-/�e=-/�t�0���/���/���-</��-</��-</��-</��/���/���-</��/���/��-J=�t=��Y-</ȑ-</�J>Xtu-=ttu;/�K-=-/X��-/t��;/�g�K-=Y-=;=J�;=�/K-=-/X��;/��u-=ttu-=�K;</f�;=;/f�u-=t�.V>,>t�;=�/.K-=-/t�-=-//-/-X�.I</t�.W=-/0,0,<�.W=-/t�/�t�;=;/<t�.W=-/0:0:<�.W=�/.�:==:</�=;J=u�I=-=.Y�x =5 x./yJ.K0+=0+/.Z1Mz.?/=:===�`�[+�/�{�.	��r	�	KZ.��4tKK
	Z	�	J
sJX/
t 
OJg8��j
�� �n�!;K;KJYZC%t!K%K:K%K/X X�~�!-/-!WgY	L
Xf  	zt
Z@F�2
yt<���/
��	�
X/	Z�J
v �0X	�n	�<
JK
	�<<x�	��	�	=	=#	=E	K#>H	>#	K#	=
l	Z<<	h	u$I$K="IY<IJ	=$J$<=;"<J	=�v�XF.L
L
=/d f.L
u/��O7@p$ti�k<�=<><V=�
Wu�k�i
��I)HKI,IKI,<K*Iu*u,1K,�uY�	r u	;Y�v�VvV�M,U	i+h]q<.qJXq<3 q3J�v<v	�|
	�fX.X��	< X	�vJ�		Yh x�`
�ut
h.s�		uXX.X	�
	su	Y
yJ	t	Yt'X
	w
	��	�
�	/J
iX�<%<
`t
=X��I/7L*J<_C=&<K
�X._�<t
eX$.�~�	"fN	f	K
txX
	`x �t�.eX/g�.J.X	�
I
Jw�l
X��
V�	�Y�	K	Y	�?U	Lj 
��k<�Lt	�
�lX��	K�l
�	��.�	��Z�	K	�	�>V	La$f	�mX	�X�m<	�.>�m��<�XN1+	p��k"�
�kJ�J
�k.X�X"~K
�k��	�	[X	O(�kX
	�<
�kX�	�
b�>=E<>:<Y<;
=
v�k<�qR<
!��l
�
�
�l<�����l�z/	�f�X<	Kf�fk�v
�~��*�~
X�$	rJ�~
#��.?f	h
�~����~<
��.<1	��~)�	<
�~t)�X
�~<<t	�
�~XX	����
��~
/�.<<
zf�~�
�~X�.
�~t.�J<<X�< �
�W=�
ڬq		K	�ff
L
4z�
>=
jtt		�	�	�
Z-JJXf�t
X
L!s
gf�
�
fF�
J
Y�	Y
:�"foXXXJlt0�
hd/	L.XN�6�g	J�	y��i<
X$	��	Z
���
4�tKK
	�;:|".<
Z
IY�6t��(f+K"JMX"X<�
mJ<	&�
AJ�X0J
X��XXV�$J)�I�!4f<9X�!Jh
.$r.XX`KJ
Jt5<uY�"J
q<%�
3$x.`XYBW[$g	
�	F�	x	\	*2.	F^�	\t;:�j KK-uYI��X	�Ki+J��JK�2K�Ku\�/
�u���
 �u
(�tX
�|��
�x(��9?JL6�J9�xX<u1tu��6,XJK�,@g
L,K /sJK u
X�Q�y��XKEW	\�	gx.	<	%
	/s	uZ	p��tt��	/�t.X	��o� t�K
!fJ/	kt	Z�s	gY���	Z	�Y�	g	Y
�#!�xwJ��K�xJK��K!JK
�sJ��
�s< !�KJ9J!JK!��s
f���K =J	YYt	YYt	YYJ	YY<xK�	t<YL	,<W	ue	[A<v v�.�KXe#��!CJ;�CgK	EdX�` x DNK$�JGMY�<,�"g
< 	�
�	=	�&>	t	u
X	�
Y
�r<�
f	K�r
�
<
�r<X	�
	v	v

�[L	qX�r
�
�
�r<X	�
ltXrl.<	v
h
�K�1<
z�'�K��,�M�;�!?qL	�/	Z(>
�rJ<J(�

�r<<<	�
�r
X	�
	u	=
>	h�uJL	�|
�	�fX.X��

]u	�u<�

Z
=
=
y<kJ��K,&J"I�rt�
�&s=�r<�
!�rff�
	"yJD!I�K	L%;	K%H	K	KK��K.7���
�.XB#I1u#J
Q	
F	Z�
KNJ U�
	X

�hJ.$.�Xhr	�/X
L�*~Jf-�S.	LKI	u	YZ�
�.HJ
K
Y)�%f�X80��JJ
)X%<�XX�$�%4HJL<�0�YBL=;B=Vv<��)/Mt	z�0<6u 	zt/�
L4K"vI4H
="
@"F
�%#K%W
Yz
Q*uJf�	�	uJ	K
�mJJ
�.I

<vJ
uMF
=0J
u)
Y%#K,K"9
=&
=�X	�YsJY	FX:�JJ	Z	LN*<xX�<JX>tJ�	e
<	7/t�
L4K
xH4�
=
K
�*v�Jf�J	�	uJ	�
�Y.W
�mJ�t
�m��X
K�
t
K�m
�\�x JYKWiX<JJz
�NS
=;0WX
Y)?
K
�
LeJf<Ki*�_8t�K��)^	~tf<_�K��z.`	z�tf<	X�K�JZfv*=�gJ	Z
AK=%,	=%H	KM,
tY,Lh�o!(�f�ot��(=-Kl X�|�K���<x� <�	��o�.K	M�s�f�sf�tJt	
��	Z	�93JJM _<� .	j�y��	�93JJ	Kw '� K�"�f/�	s�	�XM
X
X�
mXL
�
f	��	y��r�
�rX�'�
=PY�r<f'�	Kz<	�	Y�r�	�
.
Z
j�
fX��	]XX$XZ�&��v��/8�
�yX
�<t
�y�
���y<
��	��;	Y3�4J�J	�
�/<0��/Y;K;=�R�.	z XZw� �/J�8fC
�b�<	h�b
�X�	�<	=	K<Xh���a
����	X�+^�aX��^	t	�Y=-Xu	g+�uJit�#	Y�E<�7	]�X	gv.X	g.X�m�LZ
fF&	t
0
N�
�)J
x)8
=)H
�
uK	Z�/ Xp�ytK�
h�/a<'	t
0
Q�
�)J
x)8
=)H
�
uKY	��/ l�m.�tt��Kw	�"
g;�L	p�<>J:h6t�
YGu	
uf>=
.
f	�	K�	^�tj
�!�tJ<	�	jF	�%	=%H	�K
Z7)K
LK)8
K!
K	2%o	=K%:	K2	GK
��_X#<
]<
<&�	Y�ZX
[f<Ȃ	_Xy�	��q
�	�	K��K&�,���N>:hZ�s"�	[�sf�	�"Ui	XigY ..-	s�X� �... ��K� fh00<
�=
�	h+<	Y�
u<
	�	YJ�z�

.	L+<	g
/.
	L	gJ�	JK�*X.X	v6=�	Y;�	u/X��l
�f?
�lJX�Y
�l�f"�K�l
���"�K8G��8=�P.4XK% ���	�	�
�
J.J�p<J*<X	v6=�	Y;.	�/X��l
�f
�lJX�Y"�=8G��8=�I/..c<�<jBz<�	�
�sX&�`"
f
�[�Z�	M	�
L
��Y0	U==YK^f	�4I	gY��K��$�/fY	L��	y�^/�K-%�]��
��	K+/X�>0XX�<u��j�	YvXg
YIgZ$�Hv&L<X�(.=	/.u.�Z.fJOwX(WuO=.ft"<*w 
<K	t	Y /?�N&tuKK
	h	g
G]	t	Y�	t	Y��tM
� �
t�����	�
YIgYJvY�Y�g	r�	Y
>v	t	YK��,�	<Y��	._�h���o<�x
�}�<J��u
��

Z�L
X�w	v�Y-�)X
f\Ks =K	v.	Y
+J	K'J�u<$RxtXp�/Zu:��Y	<�u:��Y	<	�-;	�-;	�-;�bX)	�<]X�&ZX�
_	#�#t
Y	�	�
Z.X
��<L�	��	y}	Af<X1d�	��	9�	+Y	��
�X)�////0
A1t
[J	.<%<;
� <3�
�l
z<�)�
>K��YWJtbXK �X	9��	�

ft
"u
;	�<u	WY	rXu	WY
�X"0", XX
LX��J<f?JfjK
t	Y*=�K	t	�,=�K	t	�0=�K	t	�.=�K
t	Y,=�KgjK�K�2K��	�zt�/	Y	Z��	�	��c�	��	�	Z�c�	�
�cf�	�	Z�c�
<<	�	a�,<	�	Z�c��i	�	Z�c�	�x	�	��	�	Z�c�	�w
X	�
	�
��c�	�	�
	�
Y�c�
�	v
	�
Y�c�
�	v
	�
Z�c�
�	w
	�
Y�c�
�	v�
Z	[
	�
Z�c�
� 
g	�
	�
Y�b
�	�f�}r��	�	�
��
��	��g�	��{
��	g1J��
�}	�
�<1�-�u-�).K.X
UJ.<	Z.)J
�KIK
Xx<X�/
�-
�
�X<�
��/
ift��	�	�<
�<J�J<��X
_�!	�hX�~<u	� 	u
X	��f
��~��<uY��uY	Y�vt�=	���	����	XJ��e�u\TKEW��	�~�	�
Z�d�
�K	h
	�
Z�d�
�K	h
	��h��y�X.��	�}
X�����y
.��t	�t
Zg2
u�4w��
�i�
f���
��X	�h�
o�.Jt.	���u�	�f�	=���^uL2�3fK&� 	�m�Y�X	�fX��K
�a�
�a<Z,g�
�<
=<I
X�J^��J...	*�Kz�}>��K
+zz< O=�>;g<0:><	Y6
2
�_<� <	Z	�	\�_<
� 
�_X<
� 
�_<X	� K	
	0�f	/�_

� �
�_JX	� B	
	9�
X
J�_� 
�_<f� XX
�_JX� �K
		.wJ]7A<@.=
J?w	Z�_
.	� �	
	�<<[�_
�	� �_	� 
�_X	� .
�_.X�	
�McMY�	
��_
!JJ_fJ� �_
 �� ..�i�/Z�l	h+JJ�xJL	�|
�	�fX.X�	�,X	�x4�	Ltot�$r��y5��	h	K)MU	=)	= <���Jf
�
t	�T.TJ=..7<�x<�	�|
�	�fX.�	Z�	�t
�Q�~%�#<=u�7<�{�z�+h	�s	u�t0<�{�z�+h	�s	u�t
��
��
t	K�	K�	K�	K�#/K;?;;*x/Su$	*zJ/:<v3O/xJuBJ=su;uIu<<Y���{�	�{t/J
L5KK-)EJ
fJ	�	uJ	K"�<K<#K<
LyJ
�.J	�/��	;YtX�yJ�	�	K	�	uX��{oK
M�=
K=	nK
=
K=
mK
=
K=

Ku:
Ku:
NXl
X
k
Xj
=
K=

Ku:
Ku:
NXi
Xh
Xg
=
=
XtX��	�{t/<
�
ZtWX=
MU=
=*JftJ	�	uJ	=
�M=

2J
NJK
H=K
K
N<
+LK
K
H=K
K
N<
,KK
K
H=K
K
N<
-JK
K
H=K
K
<
.z���)Ju��d�P�w	j	u	`��yf�	�	K	K	uX��}
	rtu	u=t	h(t	�<!�J&;
�
HK%�J*;�(IgY<
RL��
4fNJ�w
��
�w�f���w�Y�K�
#&K	]X:�
�~�
Zr>	@�	/�	��
�
�
��
��
J	�	��	
��
f��:v	ZYw�	Y���u
�	�
�Zv
�
.X�	��t� �	��tXI/
/		
	u
�~ft
Zr>	Z�J	�
�z	��	��X�/X
��<
��zX
�
	tX�	/
�`��ggWK>�X	�u	�~��X�~��	�}XYX�
�|X��
�|<Y^	�
X	��./��
X�R�	XUJ
Y	�
h.�e�X>	�tYvtYK��	��	M�
U�-�/](tq $��~Zv
<�����Qyt/�Z
t	���
t	Z*(t
N
��	bXJ�|�
�<�	y

�!�#�J
��<X=�
��
�
K
	��tZ2K�'eK,�t��X
�~+�|Z�s�W��	��u:��Y	�	�/�	�/�	�/�+��X	�<\
.X�
��	�#t
Y	�	�
Z.X
��<��	��	y}	AfJX?��	��	9�	+Y	��
�X���
?����%�t'YJ��" �=�tYwtYLL����mZv
<��tYKt�t�tYvt�)�X�|.K���6�2X��!s Y!Y+�! t!Y+K �f
�|tY1+
IKv�vWJgWJ
~J	.<%<;
[(���Jt"� 	�|��	=
�
vV
>Y�
�
Z+��KZ)=1K-
M�<
�<Y
v�.�u.
�}Jt
Z�Y��<
gJ
f"�<�	�	/
��np
<
��}�2NX��)�	��	
��
�~�	�|X���}�Y�"�Xg![qg!p�'�Y>�tYK�&�C�XK%��.ZY&i
�f���Y�p<�x ��u
��

Z�v
X� w	�~���9�}�5Xl�
�t.Z7j.+�"<g7/W5K/I
Mu_��Kg\K�_SC_THREAD_SPORADIC_SERVERpthread_atfork_functotalLSAPI_Set_Max_Process_Timelsapi_parent_dead__fxstatparseContentLenFromHeaderugidLen_SC_2_SW_DEVm_pScriptFileLSAPI_Stopsi_addr_lsb_unused2_SC_TIMERSm_iReqCounter_fileno_SC_SHELL_SC_MEMORY_PROTECTION_SC_SCHAR_MAX__pathtm_secH_AUTHORIZATION_SC_THREAD_SAFE_FUNCTIONS_SC_UCHAR_MAXmax_lenfreeaddrinfogid_tverifyHeader_SC_C_LANG_SUPPORTm_pIovecEndstrcpy__uint8_tIPPROTO_TPpw_uidwaitpidHTTP_HEADER_LEN_SC_TTY_NAME_MAX_SC_PASS_MAXLSAPI_ErrResponse_rsi_uidm_bytes_SC_2_PBS_TRACKfp_lve_destroym_pHeader_IO_buf_end__RLIM_NLIMITS_SC_SELECT_shortbufrlimitsockaddr_insa_family_tSOCK_DCCP_SC_BC_STRING_MAX_ISpunctis_enough_free_meminet_addr_SC_TRACE_INHERITinit_lve_exnewSizem_tmStartliblvesetgroups_SC_SEMAPHORES_SC_EQUIV_CLASS_MAXread__environ_sigpollsa_datauint16_t__builtin_memmoveai_protocol_valuem_pChildrenStatusCurIPPROTO_UDPoverflow_arg_areatime_tsin_zero_SC_DEVICE_SPECIFICin_port_t_flagsachMD5_SC_THREAD_THREADS_MAXerror_msg_SC_LEVEL3_CACHE_SIZE_SC_TRACEreg_save_areacalloc_archm_respPktHeaderg_running__off_t_addr_bndlsapi_cleanupachHeaderNamest_size_SC_THREAD_PROCESS_SHAREDallocateBuf_SC_JOB_CONTROLgetppidtm_isdstswapIntEndianlsapi_check_child_statussignal_locks_max_idle_secslsapi_set_nblockenvirons_schedule_notifysetUID_LVE_SC_NL_NMAX__RLIMIT_NPROCRLIMIT_DATApServeratoluint32_tinitgroups_SC_POLLm_pHttpHeader_SC_V6_ILP32_OFF32_SC_TRACE_SYS_MAXm_pScriptName__builtin_va_listst_blksizeRLIMIT_NOFILEm_pEnvList_SC_BASE_sigchldLSAPI_Set_Max_Idle_Childrenint32_t_SC_LONG_BITfixEndianLSAPI_GetEnv_r_upper__fmtsa_familym_specialEnvListSizepw_passwd_SC_CLOCK_SELECTIONmasklsapi_resp_infosigaction__RLIMIT_RTTIME_SC_V7_LPBIG_OFFBIGbodyLeftfcntllastTime_SC_AIO_LISTIO_MAXLSAPI_Init_Prefork_ServerpErr1pErr2st_gidm_cntHeaderss_notify_scheduledm_envListSizeacceptinggettimeofdaypBufai_addrm_iAvoidForks_secret_timerlsapi_MD5Context__syscall_slong_t__builtin_memset_SC_FILE_SYSTEMsa_restorerm_pChildrenStatusEnd_IO_write_endtype_SC_SCHAR_MIN_SC_LINE_MAXLSAPI_SetRespStatus_rlsapi_MD5_CTX__resst_nlinks_addr_SC_TZNAME_MAX__va_list_tag_syscallst_ctimnameLen__builtin___snprintf_chkLSAPI_Postfork_Child_SC_2_VERSIONfree_SC_2_PBS_CHECKPOINTIPPROTO_MPLS__sigset_tm_requestMethodOffm_tmWaitBeginreadSecretreadReq__tznameatoig_initedgetaddrinfovalLens_acklsapi_jailLVE__d0_SC_LEVEL4_CACHE_ASSOClsapi_MD5Final_SC_NL_LANGMAXdoAddrInfo__stack_chk_failmemcpy_killcurSizeRLIMIT_STACKIPPROTO_IPIPdlopenbacklogsin_family_SC_LEVEL1_ICACHE_ASSOCpIovrlim_maxm_iKillSentm_fdListen_SC_AIO_PRIO_DELTA_MAXvalidateHeadersst_atimm_statusm_reqBodyLensig_numoptargSOCK_RAWsnprintfold_int_SC_2_C_BINDs_enable_lve__clock_tparseRequestIPPROTO_RAWstrdupbufLen_SC_PRIORITY_SCHEDULING_SC_SS_REPL_MAXsys_errlistsival_ptrpStderrLogsetpgid__uid_tdaylightsi_stimeoptoptLSAPI_ReqBodyGetChar_rpKeysun_family__uint16_t_SC_FSYNCsin_portgetpeernameLSAPI_is_suEXEC_DaemonLSAPI_Is_Listen_rLSAPI_End_Response_r_SC_FILE_ATTRIBUTESsetreuidserverAddr_SC_NZEROm_pQueryString__gnuc_va_list_SC_2_C_DEV_chainpContentLen_call_addrEnvForeachnewfdm_iServerMaxIdleSOCK_NONBLOCKusleepSOCK_RDM_SC_SYMLOOP_MAXsockaddr_un_ISblankunsigned charIPPROTO_MAX_SC_MQ_OPEN_MAXSOCK_DGRAMm_tmReqBegin__fd_mask__blkcnt_tlsapi_enterLVE__builtin_calloc_IO_lock_tLSAPI_Is_ListenIPPROTO_COMPLSAPI_key_value_pairlsapi_check_pathLSAPI_ForeachHeader_rpHeaderName/builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapi_SC_SEM_NSEMS_MAX_SC_USHRT_MAXLSAPI_FinalizeRespHeaders_r__read_alias__fdelt_chkshouldFixEndianpBody_SC_STREAM_MAX_SC_ASYNCHRONOUS_IOserverMaxIdle__open_alias_SC_READER_WRITER_LOCKS_SC_CPUTIME__getcwd_alias_SC_2_PBS_LOCATE_SC_DEVICE_IOsa_flagspVecgeteuid_SC_SIGNALS__ctype_b_loc_SC_V7_ILP32_OFFBIGstatusoff_tchild_statuss_notified_pids_max_reqsH_X_FORWARDED_FORs_pid_dump_debug_info_ISalpha__fprintf_chktm_zone__mode_tm_queryStringOff_SC_V7_LP64_OFF64_SC_NPROCESSORS_CONF__RLIMIT_SIGPENDINGfdInlsapi_changeUGidtv_usec_SC_XOPEN_XCU_VERSIONold_childold_termLSAPI_sendfile_rlsapi_lve_erroraccept_SC_MEMLOCKallocateRespHeaderBuf_ISprintsched_yieldpMessages_liblvepValueH_CONTENT_LENGTHm_tmLastCheckPoint__vfprintf_chk_ISalnum_SC_SEM_VALUE_MAXs_req_processedstrtollopen_SC_XOPEN_XPG2_SC_XOPEN_XPG3_SC_XOPEN_XPG4LSAPI_STATE_CONNECTED_IO_write_ptr_SC_REALTIME_SIGNALSsystemlsapi_packet_headerIPPROTO_ENCAP_ISspacelsapi_suexec_authgetLFg_prefork_serverva_list__suseconds_treqsexitLSAPI_CreateListenSock2__rlim_ts_ignore_pid__RLIMIT_MEMLOCKpCurpHeaderValue__sizesizes_slow_req_msecslsapi_init_children_statusgetuidFILEH_COOKIELSAPI_ParseSockAddrdlsympthread_lib_SC_PII_INTERNET_DGRAM_SC_SINGLE_PROCESSbyteReversedump_debug_infoLSAPI_Accept_Before_Fork_SC_SHRT_MAX_ISxdigit_SC_RAW_SOCKETSfp_lve_enterLSAPI_AppendRespHeader_rsize_tH_CONNECTIONLSAPI_GetHeader_r_SC_MULTI_PROCESSs_stderr_log_pathm_statefp_lve_instance_init_SC_BC_BASE_MAXH_CONTENT_TYPELSAPI_STATE_ACCEPTING_SC_RTSIG_MAX_SC_NETWORKINGachCmdH_ACCEPT_SC_GETGR_R_SIZE_MAXperrorcompareValueLocation_SC_THREAD_ATTR_STACKADDR_SC_LEVEL2_CACHE_ASSOC_SC_IOV_MAX_SC_TRACE_EVENT_NAME_MAX_SC_PII_INTERNETIPPROTO_IGMPpServerAddrlsapi_acceptlsapi_initLVE_IO_save_baseLSAPI_Release_riovecold_usr1maxIdleChldsocklen_tm_iMaxChildren_SC_2_UPEai_canonnameIPPROTO_IPV6_SC_DELAYTIMER_MAXpw_dirsa_mask__sigval_tLSAPI_Set_Extra_Childrens_restored_ppidsin6_flowinfototalLenm_pid_SC_SYSTEM_DATABASElsapi_prefork_server_acceptm_pIovecToWritecodem_respHeaderLen_wide_dataH_IF_MATCHai_family__nlink_tsi_addrst_inost_modeLSAPI_IsRunning_SC_T_IOV_MAXCGI_HEADER_LENIPPROTO_DCCP__in6_uGetHeaderVarH_ACC_CHARSET__stream_SC_XOPEN_STREAMSm_iMaxIdleChildrensendfile_IScntrlm_reqBufSizelsapi_child_statusprctlallocateEnvList_ISupperpStatuserr_nosival_intsi_codem_pReqBufwait_timestrcasecmpH_IF_UNMOD_SINCEpw_name_SC_TRACE_USER_EVENT_MAX__socklen_tsend_notification_pktlsapi_requestpKeyEndcurTimefprintflsapi_writev__ssize_t__srclsapi_closepChrootH_IF_RANGEtimespecnameOff__u6_addr8strerror__RLIMIT_RSSavoidForkm_packetLenLSAPI_ReadReqBody_rIPPROTO_MPTCP_SC_2_FORT_RUNbindfp_lve_leave__valin6_addr_SC_ADVISORY_INFOpacketLen__timezone__ctype_toupper_locsin6_addr_SC_TIMER_MAXpBufCur_SC_THREADSunset_lsapi_envs__sighandler_t_SC_USER_GROUPS_RLSAPI_Set_Server_fdLSAPI_CreateListenSock__RLIMIT_LOCKSm_respPktHeaderEndLSAPI_On_Timer_pfLSAPI_Set_Max_Reqs_SC_UINT_MAXst_uids_conn_close_pktLSAPI_Postfork_ParentpEndpktTypelsapilib.cset_skip_write_SC_TRACE_NAME_MAX_lowers_busy_workers_SC_THREAD_DESTRUCTOR_ITERATIONSm_flagmemsetlevelstderrm_pHeaderIndexnameidle_SC_CHILD_MAXlsapi_reopen_stderr2_IO_save_endtm_min__nptrLSAPI_InitLSAPI_Request_SC_V6_LP64_OFF64flag_SC_NGROUPS_MAXm_bufProcessedfixHeaderIndexEndianstdoutfp_offsetlsapi_MD5TransformLSAPI_Write_Stderr_r__time_t_SC_THREAD_ROBUST_PRIO_INHERITgp_offset_padLSAPI_ForeachOrgHeader_rsigaddsetLSAPI_Inc_Req_Processedm_httpHeaderLendyingrealpathtm_yday_SC_SSIZE_MAX_SC_PII_OSI_CLTS_SC_SYSTEM_DATABASE_RmsecspAuth_SC_LEVEL1_DCACHE_SIZEkeyLenextraChildrenLSAPI_Flush_rshort unsigned intrlim_cursigned charLSAPI_Reset_rs_lveold_ppidLSAPI_CB_EnvHandler_valueLen__blksize_t_SC_STREAMSSOCK_STREAMdigestpBufEndGNU C17 8.5.0 20210514 (Red Hat 8.5.0-20) -mtune=generic -m64 -march=x86-64 -g -O2 -fPIC -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fplugin=annobin_SC_PAGESIZE_SC_THREAD_PRIORITY_SCHEDULINGcountsi_pidIPPROTO_MTPs_stop_SC_CHARCLASS_NAME_MAXlsapi_header_offsetstrchrvfprintfsetgid_boundstm_wday__off64_t__fd__lenachBuf_sigsys_IO_read_base_SC_XBS5_ILP32_OFFBIGsend_req_received_notification_offsetIPPROTO_EGPLSAPI_reset_server_statesockaddrsigset_ts_defaultGids_keep_listenersecsm_cntUnknownHeadersreadfdsai_addrlenlongsopterr_SC_DEVICE_SPECIFIC_RLSAPI_Set_Restored_Parent_Pidpw_gecos_modem_iExtraChildrenLSAPI_No_Check_ppid_SC_PIPE_IO_write_base_SC_XOPEN_CRYPTvalueLenm_respInfotz_dsttime_SC_PHYS_PAGESlsapi_enable_core_dumpH_CACHE_CTRLH_COOKIE2_SC_ATEXIT_MAX__desttm_monclose_SC_SHRT_MIN_SC_FIFObitstimeH_USERAGENTs_min_avail_pages_SC_USER_GROUPSm_lLastActiveLSAPI_ForeachEnv_rlong intSOCK_PACKETsa_sigactionnotify_req_received_SC_XBS5_ILP32_OFF32dumps_worker_status_IO_marker__builtin_strncpys_ppidtm_yearlimitmax_children_SC_2_PBS_MESSAGEm_pRespBufEndtimevalorig_masktmCur_SC_XOPEN_REALTIME_THREADSfp_lve_is_availablepAddrs_defaultUidm_pChildrenStatus__fds_bits_SC_SPIN_LOCKSLSAPI_Set_Server_Max_Idle_Secswritem_bufRead_SC_SPORADIC_SERVERlsapi_close_connectionuint8_t_SC_LEVEL1_DCACHE_LINESIZE__sigaction_handlerlsapi_signal_SC_PRIORITIZED_IOin_addrSOCK_SEQPACKET__pid_t_IO_codecvt_SC_GETPW_R_SIZE_MAXpUgidheadershints_SC_XOPEN_VERSIONH_RANGE_SC_BC_SCALE_MAX_SC_2_C_VERSIONdup2strtolg_reqlong doubleparseEnvai_socktype_SC_THREAD_KEYS_MAXiov_len_SC_LEVEL4_CACHE_LINESIZEfd_setlsapi_MD5Init_SC_NL_TEXTMAXnonblocklong unsigned intlsapi_req_header_SC_LOGIN_NAME_MAXfind_child_statusIPPROTO_PIM_SC_XBS5_LP64_OFF64_SC_SPAWNmaxChildrennewlensi_statussigemptyset_pkeym_headerOff__RLIMIT_OFILEHTTP_HEADERS_SC_2_PBSs_proc_group_timer_cbpw_gid__errno_location_SC_XBS5_LPBIG_OFFBIG_SC_WORD_BITchar_SC_2_PBS_ACCOUNTINGm_pSpecialEnvListsin6_scope_idstdin_SC_AIO_MAX__oflag_SC_2_CHAR_TERMresolved_path_SC_LEVEL1_ICACHE_LINESIZE_IO_buf_baseai_flagsrealloc_SC_XOPEN_SHM__dev_t_SC_XOPEN_ENH_I18Nold_quitRLIMIT_CPU__glibc_reserved_IO_read_end_SC_ULONG_MAX_SC_TYPED_MEMORY_OBJECTS_SC_TIMEOUTS_SC_LEVEL2_CACHE_SIZEfinal_SC_XOPEN_UNIXm_pRespBufPos_IO_FILEin_addr_tm_fdH_HOST_IO_wide_datacookiestrlentzname_sifields_SC_LEVEL2_CACHE_LINESIZE__u6_addr16s_pidIPPROTO_AHLSAPI_ReqBodyGetLine_rtm_hoursetsidFlush_RespBuf_r_SC_THREAD_STACK_MINisPipe_SC_PII_OSI_Mm_respHeaders_global_counterRLIMIT_AS_SC_NL_MSGMAXsi_signom_pAppData__RLIMIT_MSGQUEUEachAddrm_inProcess_SC_THREAD_ROBUST_PRIO_PROTECT_ISgraph_lsapi_prefork_servertm_mdaypIntegerlsapi_siguser1__pad0_SC_BC_DIM_MAX__pad5_SC_LEVEL1_DCACHE_ASSOCmallocs_dump_debug_infos_avail_pages__u6_addr32_headerInfom_typesi_errnofinish_closelistensigno_SC_XOPEN_REALTIME_markersLSAPI_InitRequest_SC_SAVED_IDSpBindm_scriptFileOff_SC_INT_MAXsi_bands_log_level_namess_skip_writeH_VIAmemccpy_codecvtforkIPPROTO_ESPm_pRespHeaderBufEnd_SC_TRACE_LOGgetpwnamtimeout_SC_THREAD_PRIO_PROTECTg_fnSelectRLIMIT_FSIZE__builtin_memcpyst_rdevlsapi_http_header_indexpEnv_SC_OPEN_MAXst_devssize_tdlerrorheaderIndex_SC_UIO_MAXIOVLSAPI_Logm_pRespHeaderBuf__int32_tH_PRAGMA__uint32_tqsortpSecretFile__RLIMIT_NLIMITS__daylightIPPROTO_RSVPstrncpyH_REFERERIPPROTO_UDPLITESOCK_CLOEXECLSAPI_Set_Slow_Req_MsecsLSAPI_Prefork_Accept_r_sys_siglisthandler_SC_CHAR_MAXLSAPI_Get_ppid_ISlowerpEnvEndsigprocmaskm_pUnknownHeadergetpwuidm_reqState_SC_PII_XTIpRespHeadersleftkillsysconfm_pRespBufm_iCurChildrensocketLSAPI_Write_r_SC_PII_OSI_COTSm_totalLenpasswdm_pIovecs_stderr_is_pipefstat__snprintf_chk_SC_PII_SOCKET__gid_tlsapi_sigpipe_SC_V6_LPBIG_OFFBIG_SC_MQ_PRIO_MAXgetcwdH_TRANSFER_ENCODINGH_IF_MODIFIED_SINCE__bsxai_nexts_enable_core_dump_SC_TRACE_EVENT_FILTERnodelaysin6_family__resolved_freeres_buf_sigfaultm_iChildrenMaxIdleTime_SC_THREAD_CPUTIMEsi_utimetv_sec_SC_VERSIONm_cntSpecialEnv_SC_C_LANG_SUPPORT_Rlong long unsigned intmemmovesa_handlersin_addr_cur_columnlsapi_load_lve_libtoWriteuid_t_SC_PIIsi_fd_SC_MAPPED_FILES_SC_LEVEL4_CACHE_SIZEIPPROTO_BEETPHfp_lve_jail_SC_2_FORT_DEVIPPROTO_IPm_pRespHeaderBufPosst_blockslsapi_initSuEXEC__bswap_16getpid__buf_SC_2_LOCALEDEFm_cntEnvlocaltime_r_SC_LEVEL1_ICACHE_SIZEreadBodyToReqBuftm_gmtoffIPPROTO_PUP_namesigval_IO_backup_baseH_KEEP_ALIVE_IO_read_ptr_SC_CHAR_BITLSAPI_Register_Pgrp_Timer_Callbackmd5ctx__socket_type__nbytes_nameLengetenv_freeres_list__aps_max_busy_workersIPPROTO_ETHERNETH_IF_NO_MATCHpEnvListrlim_tlsapi_readsun_pathtimezoneCGI_HEADERSsi_overrun__bswap_32pReq_SC_INT_MINlsapi_MD5Update_SC_RE_DUP_MAX_SC_PII_INTERNET_STREAMachBodyachPeerheader_SC_THREAD_ATTR_STACKSIZEfull_path_old_offset_SC_SIGQUEUE_MAXsiginfo_t_SC_FD_MGMTexpect_connected_SC_SYNCHRONIZED_IOLSAPI_STATE_IDLEvalueOffsighandler_t_SC_V7_ILP32_OFF32skipunlinksend_conn_close_notificationoptinds_accept_notifywritevH_ACC_LANG_SC_EXPR_NEST_MAX_SC_LEVEL3_CACHE_LINESIZElong long intm_pktHeaderin6addr_loopbackports_accepting_workersIPPROTO_IDP_flags2lsapi_prefork_serverallocateIovec_SC_MESSAGE_PASSING__ch_SC_REGEX_VERSIONm_iLenLSAPI_Set_Max_Children__d1setuidtv_nsecm_scriptNameOfflsapi_perror_SC_FILE_LOCKING_SC_AVPHYS_PAGES_SC_MB_LEN_MAXpHeader_ISdigitsockaddr_in6IPPROTO_SCTP_SC_PII_OSI_SC_ARG_MAX__ino_tsetsockopt_SC_MEMLOCK_RANGELSAPI_Finish_r_SC_SHARED_MEMORY_OBJECTSlsapi_resp_headersys_nerrin6addr_anym_pRequestMethodachError_SC_CHAR_MIN__realpath_chkiov_basem_lReqBegins_uids_total_pagespw_shell__namem_versionB0m_versionB1IPPROTO_GRE_SC_XOPEN_LEGACY_SC_NL_ARGMAXRLIMIT_COREsi_tidtobekilled_SC_THREAD_PRIO_INHERIT_SC_LEVEL3_CACHE_ASSOC_SC_NPROCESSORS_ONLNm_headerLenexpect_acceptingm_pIovecCurfdListenLSAPI_Init_Env_Parametersaddr_len_SC_HOST_NAME_MAXIPPROTO_TCPLSAPI_AppendRespHeader2_r_SC_COLL_WEIGHTS_MAX_SC_MONOTONIC_CLOCK__rlimit_resourcem_reqBodyReadLSAPI_Set_Max_Idle_SC_CLK_TCKLSAPI_ForeachSpecialEnv_rlsapi_buildPacketHeaderLSAPI_perror_r_SC_NL_SETMAXunsigned int_SC_BARRIERSbodyLenpBeginLSAPI_Accept_rwait_secslsapi_reopen_stderrstrcmpst_mtim__statbuf__RLIMIT_NICEfn_select_tshort intlsapi_notify_pidsi_sigvalsetrlimit_vtable_offsetaddrinfo_SC_IPV6mmapIPPROTO_ICMPlsapi_sigchild_SC_REGEXPlsapi_schedule_notifyLSAPI_Get_Slow_Req_Msecs_SC_V6_ILP32_OFFBIGstatmemchrtz_minuteswestsys_siglistH_ACC_ENCODINGsin6_portm_iMaxReqProcessTime__RLIMIT_RTPRIOGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-20)GNU�zRx�0D
LXsE�I�B �E(�A0�z
(A BBBIA
(D BBBA��@�YG�J�B �B(�A0�A8��0F(B DBb0�B�F�C �G�
 AABKHk(\GA�D�J n
AAA4�UA�G�K R
CAGL
JCG ��A�G�]
AJ �t��
CKF�L�B�B�E �A(�H0�H
(D BBBD�
(D BBBAPX�v�F�B �A(�D0�D
(A BBBBL(A BBBA�����$�aA�A�D XAAH��B�B�B �B(�A0�A8�D@N
8C0A(B BBBH$ OA�f
QC
EH@HYB�B�B �A(�D0�J��
0A(A BBBFx��F�E�A �C(�G�
 
(A ABBDM�
I�
c�
A�
��
E�
M�
A�
k�
E�
E�
E�
E�
H�V�
H�F�B�B �B(�A0�A8�D``
8A0A(B BBBDlT+B�B�B �B(�A0�D8�J�Y�H�P�C�	M�i
8A0A(B BBBEL�T�M�D�d�6B�B�B �B(�A0�A8�DP�
8A0A(B BBBG
8J0H(G DBBK$,7E�F�F IIOTh|�4��F�A�A �G�>
 AABG ��E�O
D�
A
(Y<JE�DXS l]P�h
HXA�H�lF�B�B �B(�A0�A8�LP�
8A0A(B BBBH<�F�B�B �A(�A0��
(D BBBIi`0F�B�B �B(�A0�A8�DP~
8A0A(B BBBAk
8A0A(B BBBHL�$F�B�B �A(�A0�H��Q
D���
0A(A BBBHL�F�B�B �B(�A0�A8�G��
8A0A(B BBBF4FHF\�$p�n�C�X�J�L�lF�B�B �B(�A0�A8�D�A
8A0A(B BBBA`��B�B�B �B(�A0�A8�G� I� K� I� L� N� N� w
8A0A(B BBBI0L	�B�M�D �G�L
 AABA<�	=B�A�A �G� L�@I�@U
 AABG$�	�T�WE�H�G� �	�a�g
HS�H
�F�B�B �B(�A0�A8�DPS
8D0A(B BBBFTX
�b�I�E �D(�C0�P
�(F� B�B�B�MQ(H BBBA�����H�
�F�B�B �B(�A0�A8�DP�
8A0A(B BBBAT�
C�B�A �A(�G0`
(A ABBD�
(C ABBAJ����8T-F�B�D �D(�D@T
(A ABBB�(�lE�C�G�F
AAIL�!c�B�G �A(�D0�
(A ABBEX����D0���� 4ZH10\pF�A�A �G@7
 AABF�@L�sL�F�B�B �B(�A0�A8�G��
8A0A(B BBBG�
$
8
L
`
t
�
�
�
�
<�
	F�B�A �K(�G�
(A ABBG<�F�E�E �D(�D0�M
(C BBBBX(Hl�F�B�H �E(�A0�E8�I@�
8A0A(B BBBE(��F�E�D ��ABH��B�B�B �B(�A0�A8�G��
8A0A(B BBBJD0�F�B�B �A(�A0�G�
0A(A BBBFLx�
F�B�B �B(�A0�A8�G��
8A0A(B BBBA��
�	
1-
E2a~3��4��5.IWu��l	��-�-
�"0s-�J�e�s	z����	����)�Y)2�L0�Y�z+	��k�	 �+	�w	0	Gw	:�	X�	Ui�	�s
��	��s
����
��
x5��P	�_	�s(�0�x�*
����*
#�
N0
al	�|�
����
������O&	�-	�=�h9��Y�9��	��@	�$�@�O	�e`	r���U�+���6�6	%		�7	6S	wm	w�	��		l�		��	��	��	�
�4
�f
��
	x�
��
��
�]	�'	�;]\m{m��������*+*L�k������\�\"
k C
k b
� 
� �
�"�
 ��
�"�
$%@� `d0$%UE'x�d�E'��'��'��'�'D�(m�(��)��)��*�	���*�+7+�F�+c�,~,��	0��,��.��,=��.u/*7u/[)0})0��1��1��2��2�4C�4k�5��5��6��67!7G�7k�7��8�d	��X	��8
�8+�8S:9y:9�q9�P	�q9��:	�#h	3	(B�:g0;�0;�H?�	��	���	@��	���	��H?'^?GR^?tk?�k?��?��?�?,�?V�?~�?��?��?@,@T@z	��@�+@�+@�?@?@;K@WK@�TI�	)�	p�	h�	d�	`�	P�	H	@#	80	X6TIY�Iz�I�J�J��J��J�K(�K?�WT�K�\(b $o(|�W�UY�UY�Zd Zd>qdiqd��d!#$&()+23456718���2�8�F�"��K�O�(�p���R�P���[oy�#�)�/�5;�A�G8MXS�Y�_�e�k�qw+}=�N�b�w��������������*�@�V���������������
����%]+o1�7�=�CpIO@U�[Tahgtms8yp��6�����&�������������(���P���,-./0) 
>�Mcmy�������� ��1�������   " / 9 @��C R a h v � � � � �� @7� � �� �� �� �!�� !'!	#S!3!8!��C!RK!@	Q!X!^!`
p!p�!�Y�!�J�!�!0S�!�]�!�l�!�!�!`"p i"� %","@"#$Y"_"0%u"P'F�"�'F�"�'��"�(��"�)l��"�"�"�"#
#�.�#�/�1#00�?#2�P#Y#�2�s#z#�4�#�5-�#�#�#�#�#7�# 7l�#�7!
$$$!$�85$�8ZN$@91a$�9pv$�:@�$�$0;�$�$�$�$P?�$`?�$p?%�?%�?:%�?V%�?u%@�% @�%0@�%@@�%P@	�%�%�%�%&&& &`I�4&�I(B&J�R&K�a&j&q&{&�&�&�&�&�W��&`Y�
�&�&�&`d�&�d
'.annobin_lsapilib.c.annobin_lsapilib.c_end.annobin_lsapilib.c.hot.annobin_lsapilib.c_end.hot.annobin_lsapilib.c.unlikely.annobin_lsapilib.c_end.unlikely.annobin_lsapilib.c.startup.annobin_lsapilib.c_end.startup.annobin_lsapilib.c.exit.annobin_lsapilib.c_end.exit.annobin_lsapi_sigpipe.start.annobin_lsapi_sigpipe.endlsapi_sigpipe.annobin_lsapi_siguser1.start.annobin_lsapi_siguser1.endlsapi_siguser1g_running.annobin_compareValueLocation.start.annobin_compareValueLocation.end.annobin_EnvForeach.start.annobin_EnvForeach.endEnvForeach.annobin_lsapi_cleanup.start.annobin_lsapi_cleanup.endlsapi_cleanups_stop.annobin_set_skip_write.start.annobin_set_skip_write.ends_skip_write.annobin_lsapi_MD5Transform.start.annobin_lsapi_MD5Transform.endlsapi_MD5Transform.annobin_lsapi_signal.start.annobin_lsapi_signal.endlsapi_signal.annobin_find_child_status.start.annobin_find_child_status.endfind_child_statusg_prefork_server.annobin_allocateRespHeaderBuf.start.annobin_allocateRespHeaderBuf.endallocateRespHeaderBuf.annobin_lsapi_set_nblock.start.annobin_lsapi_set_nblock.endlsapi_set_nblock.annobin_lsapi_accept.start.annobin_lsapi_accept.endlsapi_accept.annobin_parseEnv.start.annobin_parseEnv.endparseEnv.annobin_lsapi_init_children_status.start.annobin_lsapi_init_children_status.endlsapi_init_children_statuss_busy_workerss_accepting_workerss_avail_pagess_global_counter.annobin_readBodyToReqBuf.part.2.start.annobin_readBodyToReqBuf.part.2.endreadBodyToReqBuf.part.2.annobin_lsapi_close_connection.isra.4.start.annobin_lsapi_close_connection.isra.4.endlsapi_close_connection.isra.4s_worker_status.annobin_lsapi_writev.part.6.start.annobin_lsapi_writev.part.6.endlsapi_writev.part.6.annobin_lsapi_parent_dead.start.annobin_lsapi_parent_dead.endlsapi_parent_deads_ppids_restored_ppid.annobin_LSAPI_ParseSockAddr.part.13.start.annobin_LSAPI_ParseSockAddr.part.13.endLSAPI_ParseSockAddr.part.13.annobin_LSAPI_Log.start.annobin_LSAPI_Log.ends_stderr_is_pipes_log_level_namess_pid.annobin_lsapi_sigchild.start.annobin_lsapi_sigchild.endlsapi_sigchilds_pid_dump_debug_infos_ignore_pid.annobin_dump_debug_info.start.annobin_dump_debug_info.end.annobin_lsapi_check_child_status.start.annobin_lsapi_check_child_status.endlsapi_check_child_statuss_max_idle_secss_dump_debug_info.annobin_lsapi_perror.start.annobin_lsapi_perror.end.annobin_LSAPI_is_suEXEC_Daemon.start.annobin_LSAPI_is_suEXEC_Daemon.ends_uids_secret.annobin_LSAPI_Stop.start.annobin_LSAPI_Stop.end.annobin_LSAPI_IsRunning.start.annobin_LSAPI_IsRunning.end.annobin_LSAPI_Register_Pgrp_Timer_Callback.start.annobin_LSAPI_Register_Pgrp_Timer_Callback.ends_proc_group_timer_cb.annobin_LSAPI_InitRequest.start.annobin_LSAPI_InitRequest.end.annobin_LSAPI_Init.start.annobin_LSAPI_Init.endg_initedpthread_atfork_func.annobin_LSAPI_Is_Listen_r.start.annobin_LSAPI_Is_Listen_r.end.annobin_LSAPI_Is_Listen.start.annobin_LSAPI_Is_Listen.end.annobin_LSAPI_Reset_r.start.annobin_LSAPI_Reset_r.end.annobin_LSAPI_Release_r.start.annobin_LSAPI_Release_r.end.annobin_LSAPI_GetHeader_r.start.annobin_LSAPI_GetHeader_r.end.annobin_LSAPI_ReqBodyGetChar_r.start.annobin_LSAPI_ReqBodyGetChar_r.end.annobin_LSAPI_ReqBodyGetLine_r.start.annobin_LSAPI_ReqBodyGetLine_r.end.annobin_LSAPI_ReadReqBody_r.start.annobin_LSAPI_ReadReqBody_r.end.annobin_Flush_RespBuf_r.start.annobin_Flush_RespBuf_r.end.annobin_LSAPI_GetEnv_r.start.annobin_LSAPI_GetEnv_r.endCGI_HEADERS.annobin_LSAPI_ForeachOrgHeader_r.start.annobin_LSAPI_ForeachOrgHeader_r.endHTTP_HEADERSHTTP_HEADER_LEN.annobin_LSAPI_ForeachHeader_r.start.annobin_LSAPI_ForeachHeader_r.endCGI_HEADER_LEN.annobin_LSAPI_ForeachEnv_r.start.annobin_LSAPI_ForeachEnv_r.end.annobin_LSAPI_ForeachSpecialEnv_r.start.annobin_LSAPI_ForeachSpecialEnv_r.end.annobin_LSAPI_FinalizeRespHeaders_r.start.annobin_LSAPI_FinalizeRespHeaders_r.end.annobin_LSAPI_Flush_r.start.annobin_LSAPI_Flush_r.end.annobin_LSAPI_Write_Stderr_r.start.annobin_LSAPI_Write_Stderr_r.ends_stderr_log_path.annobin_LSAPI_perror_r.start.annobin_LSAPI_perror_r.endLSAPI_perror_r.annobin_lsapi_jailLVE.start.annobin_lsapi_jailLVE.endlsapi_jailLVEfp_lve_jail.annobin_lsapi_reopen_stderr.start.annobin_lsapi_reopen_stderr.endlsapi_reopen_stderr.annobin_LSAPI_Finish_r.start.annobin_LSAPI_Finish_r.endfinish_close.annobin_LSAPI_End_Response_r.start.annobin_LSAPI_End_Response_r.end.annobin_LSAPI_Write_r.start.annobin_LSAPI_Write_r.end.annobin_LSAPI_sendfile_r.start.annobin_LSAPI_sendfile_r.end.annobin_LSAPI_AppendRespHeader2_r.start.annobin_LSAPI_AppendRespHeader2_r.end.annobin_LSAPI_AppendRespHeader_r.start.annobin_LSAPI_AppendRespHeader_r.end.annobin_LSAPI_CreateListenSock2.start.annobin_LSAPI_CreateListenSock2.end.annobin_LSAPI_ParseSockAddr.start.annobin_LSAPI_ParseSockAddr.end.annobin_LSAPI_CreateListenSock.start.annobin_LSAPI_CreateListenSock.end.annobin_LSAPI_Init_Prefork_Server.start.annobin_LSAPI_Init_Prefork_Server.ends_max_busy_workersg_fnSelects_total_pages.annobin_LSAPI_Set_Server_fd.start.annobin_LSAPI_Set_Server_fd.end.annobin_LSAPI_reset_server_state.start.annobin_LSAPI_reset_server_state.end.annobin_is_enough_free_mem.start.annobin_is_enough_free_mem.ends_min_avail_pages.annobin_LSAPI_Postfork_Child.start.annobin_LSAPI_Postfork_Child.ends_req_processeds_keep_listeners_notified_pid.annobin_LSAPI_Postfork_Parent.start.annobin_LSAPI_Postfork_Parent.end.annobin_LSAPI_Accept_Before_Fork.start.annobin_LSAPI_Accept_Before_Fork.endold_childold_termold_intold_usr1old_quit.annobin_LSAPI_Set_Max_Reqs.start.annobin_LSAPI_Set_Max_Reqs.ends_max_reqs.annobin_LSAPI_Set_Max_Idle.start.annobin_LSAPI_Set_Max_Idle.end.annobin_LSAPI_Set_Max_Children.start.annobin_LSAPI_Set_Max_Children.end.annobin_LSAPI_Set_Extra_Children.start.annobin_LSAPI_Set_Extra_Children.end.annobin_LSAPI_Set_Max_Process_Time.start.annobin_LSAPI_Set_Max_Process_Time.end.annobin_LSAPI_Set_Max_Idle_Children.start.annobin_LSAPI_Set_Max_Idle_Children.end.annobin_LSAPI_Set_Server_Max_Idle_Secs.start.annobin_LSAPI_Set_Server_Max_Idle_Secs.end.annobin_LSAPI_Set_Slow_Req_Msecs.start.annobin_LSAPI_Set_Slow_Req_Msecs.ends_slow_req_msecs.annobin_LSAPI_Get_Slow_Req_Msecs.start.annobin_LSAPI_Get_Slow_Req_Msecs.end.annobin_LSAPI_No_Check_ppid.start.annobin_LSAPI_No_Check_ppid.end.annobin_LSAPI_Get_ppid.start.annobin_LSAPI_Get_ppid.end.annobin_LSAPI_Init_Env_Parameters.start.annobin_LSAPI_Init_Env_Parameters.ends_accept_notifys_enable_core_dumps_defaultUids_defaultGids_enable_lves_liblvefp_lve_is_availablefp_lve_instance_initfp_lve_enters_lve.annobin_LSAPI_ErrResponse_r.start.annobin_LSAPI_ErrResponse_r.end.annobin_lsapi_MD5Init.start.annobin_lsapi_MD5Init.end.annobin_lsapi_MD5Update.start.annobin_lsapi_MD5Update.end.annobin_lsapi_MD5Final.start.annobin_lsapi_MD5Final.end.annobin_readReq.start.annobin_readReq.endreadReqs_ackachBody.7025headers.7024.annobin_LSAPI_Accept_r.start.annobin_LSAPI_Accept_r.end.annobin_LSAPI_Prefork_Accept_r.start.annobin_LSAPI_Prefork_Accept_r.ends_conn_close_pkt.annobin_LSAPI_Set_Restored_Parent_Pid.start.annobin_LSAPI_Set_Restored_Parent_Pid.end.annobin_LSAPI_Inc_Req_Processed.start.annobin_LSAPI_Inc_Req_Processed.end.LC0.LC1.LC4.LC5.LC6.LC3.LC2.LC7.LC8.LC9.LC10.LC11.LC12.LC13.LC14.LC15.LC16.LC17.LC18.LC19.LC20.LC21.LC22.LC23.LC24.LC25.LC26.LC27.LC31.LC32.LC30.LC29.LC33.LC34.LC36.LC37.LC38.LC39.LC40.LC41.LC42.LC44.LC45.LC46.LC47.LC48.LC49.LC50.LC51.LC59.LC69.LC70.LC71.LC43.LC35.LC61.LC62.LC63.LC64.LC65.LC66.LC67.LC68.LC52.LC53.LC54.LC60.LC58.LC57.LC55.LC56.LC87.LC76.LC77.LC78.LC72.LC79.LC80.LC86.LC74.LC84.LC83.LC73.LC75.LC82.LC81.LC85.LC92.LC91.LC88.LC90.LC89.text.group.text.hot.group.text.unlikely.group.text.startup.group.text.exit.groupcompareValueLocationset_skip_write_GLOBAL_OFFSET_TABLE_sigactionsigemptyset__stack_chk_failreallocfcntlsetsockoptmmapmemsetsetsidread__errno_locationwritevkillgetppid__ctype_b_locstrncpystrchrstrcasecmpstrtolgetaddrinfomemcpyfreeaddrinfoinet_addrLSAPI_Log__vfprintf_chk__snprintf_chkgetuid__fprintf_chkgettimeofdaylocaltime_rwaitpidforksystemlsapi_perrorstrerrorLSAPI_is_suEXEC_DaemonLSAPI_StopLSAPI_IsRunningLSAPI_Register_Pgrp_Timer_CallbackLSAPI_InitRequestmallocgetpeernamedup2LSAPI_Initgeteuidg_reqdlopendlsymLSAPI_Is_Listen_rLSAPI_Is_ListenLSAPI_Reset_rLSAPI_Release_rfreeLSAPI_GetHeader_rLSAPI_ReqBodyGetChar_rLSAPI_ReqBodyGetLine_rmemchrmemmoveLSAPI_ReadReqBody_rFlush_RespBuf_rLSAPI_GetEnv_rstrcmp__ctype_toupper_locLSAPI_ForeachOrgHeader_rqsortLSAPI_ForeachHeader_rLSAPI_ForeachEnv_rLSAPI_ForeachSpecialEnv_rLSAPI_FinalizeRespHeaders_rLSAPI_Flush_rLSAPI_Write_Stderr_rgetpidgetcwdmemccpy__realpath_chkstrdupLSAPI_Finish_rLSAPI_End_Response_rLSAPI_Write_rLSAPI_sendfile_rsendfileLSAPI_AppendRespHeader2_rstrlenLSAPI_AppendRespHeader_rLSAPI_CreateListenSock2socketbindlistenunlinkLSAPI_ParseSockAddrLSAPI_CreateListenSockLSAPI_Init_Prefork_ServercallocsetpgidsysconfLSAPI_Set_Server_fdLSAPI_reset_server_stateis_enough_free_memLSAPI_Postfork_ChildLSAPI_Postfork_ParenttimeLSAPI_Accept_Before_Fork__fdelt_chkusleepsched_yieldLSAPI_Set_Max_ReqsLSAPI_Set_Max_IdleLSAPI_Set_Max_ChildrenLSAPI_Set_Extra_ChildrenLSAPI_Set_Max_Process_TimeLSAPI_Set_Max_Idle_ChildrenLSAPI_Set_Server_Max_Idle_SecsLSAPI_Set_Slow_Req_MsecsLSAPI_Get_Slow_Req_MsecsLSAPI_No_Check_ppidLSAPI_Get_ppidLSAPI_Init_Env_Parametersgetenvgetpwnamenvirondlerrorsetrlimit__fxstatsetreuidLSAPI_ErrResponse_rlsapi_MD5Initlsapi_MD5Updatelsapi_MD5FinalgetpwuidsetgidsetgroupssetuidstrtollprctlinitgroupsLSAPI_Accept_rLSAPI_Prefork_Accept_rsigaddsetsigprocmaskLSAPI_Set_Restored_Parent_PidLSAPI_Inc_Req_Processedselectd	���\����������������������������������������D	����������	���������
���������h
���������o
�����������������������������2�9�H$O,T���������g-��������o������������������������������h	C
���������M
���������X
h	c
�z
��
h	�
����������
h	h	a�������������������������������������������	���������8���������g����������.�������������������������������������J�������������������������������������������������5�����������*���������T�������������������/�������������������������������0������������������	*���������1��������%���������>���������K���������w2�������������������3����������������������������5R4��������Y5��������`6��������v����������������������\	��
"X	3�����������������������/���������8���������M7��������`���������i���������o��8���������������������������������������9����������������������������p���������3:��������?���������K���������_�;����������������������������������������<��������R���������f=���������h�{�d	�h	�t8���������~�����������������������������K���������W>��������`���������i��������������������������������{�h���������������������*����������������������������$?��������*�/���������?@��������G���������N�w*�������������������������������������"������������������������������������������������� ��������� ���������( h	!A��������`!����������!�!���������a"���������j#<q#�\p$*���������}$����������$*����������$��������� %���������%���%�&���������A'����������(����������(�Y)����������)��)���������b*��*����������*���������7+���������A+���������N+B��������W+���������_+���������}+C���������+����������+����������+����������+���������D,,{,D���������,����������,E���������,����������,h	-���������n-����������-����������-F���������-����������-��-����������-���������.�8.���������?.���������N.���������Y.���������~.G���������.����������.����������.H���������.���������/���������*/L/���������T/���������i/����������/����������/�/���������0���������_1����������1����������1����������1���������Q2���������v2����������2���������/3����������3���������-4���������O4���������|5���������N6���������h6����������6����������6����������6����������6����������6����������6����������6���������I7���������W7����������7����������7�7`	�7`	�7���������78��������8���������8�#8���������-8�28��������<8��������G8T	{8����������8�89�'9�G9$Q9L	f9T	�9�9����������9��9��9����������9�9����������9��9��9��9p:*���������:�#:�<:d	G:�Z:`	d:h�:����������:����������:����������:#�:����������:���������:����������:
;��������!;���������H;�;����������;���������;����������;����������;|�;����������;<<���������<�<���������,<�9<���������V<x<t�<\	�<���������<���������<$�<
��������:=��������S=���������e=��������o=���������}=|�=����������=��=����������=<�=����������=��=����������=�>�/>I��������6>���������@>��������F>w>���������>���������>����������>J���������>���������?K��������
?���������?L��������#?���������D?���������Y?f?��������w?�?�?�?�?@�&@�6@�F@�_@M��������@���������@��@N���������@���������@����������@O���������@���������@����������@d	�@P���������@��������A���������'AQ��������,A��������@A���������FA%MAR��������RA��������fA���������mA��������tAS��������yA���������Ah�AT���������A���������A����������A���������A����������AU���������A���������A����������AV���������A��������
B���������B��������BW�������� B��������4B���������;B��������BBX��������GB��������[B���������bB��������iBY��������nB���������B����������B���������BZ���������B���������B���������B[���������B���������B����������B`	�B\���������B���������B����������B��BhC`
C\C]��������#C��������2Cd?CdEC`TC^��������YC��������qC���������wC\�Ch�C*���������Ch�C_���������C`���������Ca��������zD`	�D����������DL	�D
���������Db���������D���������Dc��������E��������%E`1E��������NE���������UE*���������\E��������pEd��������uE���������EL�Ee���������E����������ED�E���������E\�Ef���������E����������Eg���������E<�E����������Eh���������E����������Ei��������F4
F���������Fj��������F���������%F,,FTGFk��������LF���������SFTXF���������_FP�F���������F����������F����������F��Fl���������F���������F����������FdGm��������
G��������G���������(G`/Gn��������4G��������QG���������mG���������G|�G����������G����������G�Gd�G`Ho��������H��������H\"Hd,H`6H`DH\ZHXyHL�Hp���������H����������H����������H����������H<�HT�H����������Hh�H���������HD�HXIh
I��������Iq��������+Ir��������7I���������AI���������KIs���������I����������I����������I����������I����������J����������J���������zK���������9L���������DL���������OLh	JM���������UM���������dMh	�M���������4N����������Ot���������O���������Pu��������P���������*P���������.RhDR%JR$]R#}R����������Rd�R`�Rv��������Sw��������mS|�S!���������S"���������S"���������S#��������	T$��������TT/T4GT+uT%���������T&���������T'���������Tl�Th�T����������TM���������T���������U�U|*U$1U���������GUx��������SU���������eU���������}U(���������Uy���������U����������Uz���������U����������Ud�U`�U$���������UT�U)��������V{��������V��������� V|��������,V���������=V%��������eV%��������V}���������V*���������V~���������V[�Vd�V`�V$���������V��������W���������W���������+W���������9W���������PW���������YW���������yW��W���������W ���������W����������W���������Xh	BX���������UX�hX��X$�X����������Xh	�X���������Y$ Y���������GY���������QY���������xY��Y����������Y�Y��Y�Y��Y���������Yh	#Zh	3Z�?Z�eZ
���������Z���������Z��Z��������p[����������[����������[����������[����������[���������\���������C\����������\�\t�\\	�\���������\���������\$]
��������^]��������u]����������]����������]��]�^�^�4^d	B^$X^$]^���������s^��^��^��^��^���������_d	_��������_c	+_�D_�c_��_���������_���������_���������_��_I���������_����������_��������`��������� `���������%`���������\`���������k`-��������|`.���������`����������`����������`.���������`����������`����������`���������
a���������,aJ��������5a���������ba�qa`	�a��a`	�a�a����������a����������a����������a����������a����������a���������b���������bh	3bK��������8b���������Gb���������Xb.��������gbpb���������vb�{b����������b��b��b��b��bp�b*����������b��b��bd	�b�c`	ch$c���������Cc���������Tc���������ec���������vc����������c����������c����������c����������c����������c#�c��cL���������c����������c��������d���������
d���������d�9d��������Kd�Vd���������fd�ld��d,�	������������������s���������|����������2����������J��������� +�� (LT����-��--�@-H�l�t�����������,�4)`�h)�)���)�����+	 �(+	L+	Tw	�+	�w	�w	��	�w	��	�	s
@�	Hs
ls
t��s
�����x�x,x4*
`xh*
�*
��
�*
��
��
�� �
(�L�T��������9���9	9	@	9H	l	t	��	�	��	��	�
�
�,
�4
6`
�h
6�
6�
w�
6�
w�
w�
� w(�L�T���������������@�H�l�t��������]
�
],
]4
m`
]h
m�
m�
��
m�
��
��
� �(�L�T*���*�*���*����@�H�l�t\���\�\�k \k ,k 4� `k h� �� ��"�� ��"��"�$% �"($%L$%TE'�$%�E'�E'��'�E'��'�'�'@�'H�'l�'t�(��'��(��(��)�(�),�)4�*`�)h�*��*��+��*��+��+��, �+(�,L�,T�.��,��.��.�u/��.�u/u/)0@u/H)0l)0t�1�)0��1��1��2�1�2,�24�4`�2h�4��4��5��4��5��5��6 �5(�6L�6T7��6�7�7��7�7��7�7�8@�7H�8l�8t�8��8��8��8�:9�8:9,:94q9`:9hq9�q9��:�q9��:��:�0; �:(0;L0;TH?�0;�H?�H?�^?�H?�^?^?k?@^?Hk?lk?t�?�k?��?��?��?�?�?,�?4�?`�?h�?��?��?��?��?��?�@ �?(@L@T@�@�@�@�+@�@�+@+@?@@+@H?@l?@tK@�?@�K@�K@�TIK@TI,TI4�I`TIh�I��I�J��I�J�J��J  J( �JL �JT �K� �J� �K� �K� �W� �K� �W!�W!UY@!�WH!UYl!UYt!Zd�!UY�!Zd�!Zd�!qd"Zd"qd,"qd4"�d`"qdh"�d % & ' (]�C�CC(X	0�1C�C3C9C> CE(CJ0CP8CU@C[HCbPCqXC�`C�hC�pC�xC��C��C��C��C��C��C��C��C�C�C�C+�C4�CH�CS�CY�CiCm C(C�0C�8C�@C�HC�PC�XC�`ChCpC!xC+�C7�CD�CT�Cg�C~�C��C��C��C��C��C��C��C�

$�
$�
$)
#0
$8
<
$QC
$	7J
$�$Q
$mV
$�d
$�7n
$�z
${+�
$�+�
$�!�
$�&�
$��
$a-�
$<4�
$'�
$��
$q�
$`

$�#
$'"
$�.
$=:
$oM
$�Y
$�
e
$�q
$��
$&�
$Y�
$��
$d,�
$�
$4�
$��
$5�
$
�
$�(�
$/
�
$��
$��
$n
$� 
$�,
$�9
$k.F
$�3T
$Q8a
$.+n
$�{
$��
$�
$��
$j�
$=)�
$�*�
$��
$�
$�/�
$�
�
$f7

$�
$'5
$�A
$rM
$�.b
$h�
$F	�
$��
$0�
$��
$��
$$�
$��
$�
$o5
$*1
$�7(
$�5
$B
$�7Y
$�f
$s
$z%�
$b.�
$��
$��
$��
$y�
$�%�
$��
$�
$P
$9*(
$/?
$�L
$�Y
$Qp
$o|
$ 
�
$��
$9�
$..�
$M�
$|�
$�(�
$�)
$
$=)
$�',
$�18
$�^
$�.j
$�!�
$��
$�#�
$�
$h�
$$�
$3,
$l8
$�2
$�..
$5+:
$^F
$�"S
$k.`
$�n
$z
�
$#�
$�$�
$��
$��
$��
$e�
$
$�
$<
$�'(
$�5
$A0B
$'O
$�\
$� i
$�v
$E�
$�&�
$I�
$��
$$0�
$��
$�)�
$��
$��
$#3�
$�1	
$�.	
$�7	
$o,	
$9	
$�F	
$n*S	
$�`	
$�0m	
$!.z	
$S)�	
$� �	
$��	
$�	
$�
�	
$:"�	
$�#�	
$�'

$g

$S&&

$2

$B>

$�4Z

$�f

${6x

$�&~

$�*�

$��

$.
�

$c5�

$�

$�

$�%�

$�(�

$t�

$��

$;�

$h�

$�(�

$x7�

$�8�

$��

$�+�

$U�

$�0�

$y
$d
$

$�,
$�49
$�$G
$�S
$�0e
$�k
$b
q
$�
w
$

}
$�#�
$��
$�!�
$�+�
$��
$��
$��
$��
$V�
$1�
$]8	
$!(
$-5
$8B
$�O
$�\
$�%i
$� v
$�
$5�
$�
$��
$&(�
$)�
$^!�
$^"�
$X�
$�

$�

$0

$=

$�	I

$�+U

$�a

$�'m

$�y

$1�

$C�

$04�

$b�

$�6�

$��

$!+�

$��

$��

$��

$	*�

$��

$X�

$��

$��

$�#�

$2�

$�
$/
$�
$O4
$�
$N3
$$
$p4*
$10
$Y&6
$�
<
$B
$R
H
$�-N
$r.T
$�Z
$�`
$mf
$wl
$�1r
$�x
$^~
$D)�
$>$�
$��
$R6�
$*�
$�2�
$f�
$a1�
$�
$	�
$
�
$��
$S/�
$G�
$��
$�/�
$/�
$�,�
$R-�
$G�
$$4�
$�
$d
$Q+
$"
$p1
$K 
$-&
$�,
$a(2
$8
$�>
$5D
$�J
$�#P
$%V
$�\
$
b
$�$h
$E(n
$�t
$�z
$�1�
$��
$�5�
$�*�
$��
$S�
$�5�
$!�
$�3�
$H!�
$��
$$$�
$��
$o'�
$� �
$�&�
$�&�
$m&�
$O$�
$��
$��
$��
$�
$N0

$H,
$�4
$-*
$E1"
$f(
$&.
$�34
$�:
$�@
$	F
$XL
$�R
$k!X
$O^
$�d
$'j
$p
$U5v
$�	|
$�(�
$h�
$�6�
$�$�
$"�
$��
$I%�
$�%�
$D5�
$�)�
$�"�
$w�
$7�
$0�
$��
$�.�
$��
$.�
$O.�
$Z�
$��
$\ 
$�1
$x!
$� 
$Y
$�3
$$
$g6*
$0
$b6
$�<
$B
$#H
$8N
$g3T
$�Z
$~`
$]%f
$N#l
$r
$ux
$�~
$F'�
$-'�
$�!�
$��
$�%�
$&�
$I�
$y"�
$ �
$
�
$��
$$	�
$��
$=8�
$��
$w-�
$6�
$2�
$�-�
$��
$�*�
$�/
$b

$�&
$
$Z)
$�# 
$S'&
$,
$�'2
$8
$�5>
$�2D
$"/J
$�	P
$�$V
$�7\
$�b
$B2h
$�n
$At
$z
$p�
$.�
$��
$��
$@�
$q�
$F�
$�(�
$�
�
$~2�
$U �
$��
$y#�
$^�
$�
$�'
$�#
$�9
$b/?
$�7E
$XK
$;
Q
$,6W
$�]
$0c
$�i
$3o
$�u
$8{
$��
$�+�
$85�
$|*�
$(�
$��
$8/�
$'�
$=%�
$�
�
$4�
$�+�
$9	�
$�0�
$>�
$9�
$F
�
$��
$�
$�'
$�)N
$n[
$En
$�4z
$�2�
$��
$W
�
$�
$�.�
$��
$
4�
$
.�
$�8
$X
$�
$E&-
$�7;
$�&I
$�W
$�$e
$ys
$D �
$��
$��
$�-�
$#
�
$��
$1�
$�
$Z

$x8
$�2
$%
$�"
$n(
$;.
$4
$>!:
$�'@
$�+F
$�+L
$�!R
$1!X
$�-^
$�d
$�0j
$�p
$'v
$40|
$6$�
$��
$`*�
$�-�
$y3�
$�
$�
$ 5�
$,5�
$�)�
$.�
$
$%
$�2 
$�-
$�
:
$*G
$�3T
$0a
$Q	n
$( {
$�/�
$~.�
$+�
$�5�
$�%�
$%�
$��
$�
$,2
$�  
$�-
$q:
$�
H
$�4U
$�2b
$� r
$q$w
$�
�
$��
$4�
$.�
$�	�
${�
$�
�
$�'�
$�!�
$�4�
$
$�
$�,"
$�"/
$~'<
$j+I
$�*V
$m/c
$�p
$#-}
$��
$�5�
$��
$J�
$?�
$%�
$3&�
$��
$��
$I�
$�,
$�
$�&
$�3
$�@
$�4M
$-Z
$�,g
$�
t
$�6�
$��
$D#�
$W�
$o(�
$��
$�(�
$��
$o�
$�
$�

$�(
$A"
$�/
$d	<
$m
I
$L�
$��
$k$�
$��
$�7+
$]O
$�i
$�!�
$��
$2�
$��
$}�
$��
$*"���
$�	�
$gl	$
$W"1�:
$HG�P
$�']�f
$�s�|
$ �h	�
$y)���
$����
$����
$S*��
$�
$�,�5
$3B�K
$|(X0a
$�0nd	w
$/���
$,-���
$��`	�
$5�X	�
$�!�P	�
$�)�(
�#
$�0�9
$�%Fx_
$1l �
$)����
$�%�@�
$���`�
$A*��
$52�
$�- p 
$�4 l( 
$�"6 h? 
$ M dV 
$d `m 
$
r 
$�� X� 
$+� P� 
$�"� H� 
$I� @� 
$0*!
$�8!8[!
$[�!
$G/�!0�!
$�2�!)�!
$K�!
$~�!
$��!(�!
$�	�!("
$�" +"
$�)9"B"
$�)P"
$0^"
$�0l"
$�z"
$��"
$�*�"�"
$)�"
$�'�"
$��"
$� �"
$�,�"
$��"
$�#
$8.#
$�8#
$�,#
$�":#
$�H#
$0W#
$+3d#
$Vr# �#
$��#�#
$"�#�#
$�#�#
$��#��#
$�&�#��#
$$@$
$�$�"$
$�0$9$
$CF$
$�R$�dy$
$r �$`d�$
$��$
 �$
 �$
$�$��$
 1�$
 -
%
 �%
 j %
 ~$%
 R3%
 �7%
 pF%
 hJ%
 @V%
$�	^%Ku%
$��%
 �%
 ��%
 X�%
 P�%
$��%
 ��%
 ��%
 (	�%
 "	�%3K�%3K�%
 s	�%
 q	�%
 �	&
 �	&
 �	&
 �	&QK$&QKA&
 �	E&
 �	N&
 
R&
 
[&
 8
_&
 6
i&pKs&
" �&
 _
�&
 [
�&
 �
�&
 �
�&
 �
�&
 �
�&~K�&�K�&
"`�&
 �
�&
 �
�&
 �&
 �&
 M�&
 K'�K'
"�'
 r!'
 p*'
 �.'
 �7'
 �;'
 �A'QK_'�K�'
$Q1�'J�'
 �'
 ��'
 ��'
 ��'
 h
�'
 \
�'
 �
�'
 �
�'
"@
(
 �(
 �(dJD(|JN(
"p_(
 �c(
 �l(
 �p(
 �y(
 @}(
 <�(�J�(�J�(�J�(
"��(
 ��(
 ��(
 ��(
 �)
 �)
 �
)�J/)�J9)
"�J)
 $N)
  W)
 d[)
 bd)
 �h)
 �m)�J{)�J�)
$�$�)�I�)
$u�)
$O �)
$�*`I"*
$@1.*
 �2*
 �7*
$�C*
 G*
 L*
$�,X*
 \\*
 Ra*
$�m*
 �q*
 �v*
$#7�*
 <�*
 4�*dI�*
"�*
 ��*
 ��*
 ��*
 ��*�I�*�I�*�I+�IB+
$�5N+P@p+
 �t+
 ��+
 ��+
 ��+
 ��+
 ��+
 ��+
 ��+
$�+
 ��+
 ��+pF�+
$f"�+�F,�@,�@3,
 7,
 <,�@Y,�@c,
"�t,
 6x,
 4},�@�,A�,A�,
 ]�,
 Y�,A�,5A�,5A-
 �-
 �-DA:-[AD-[Aa-
 �e-
 �j-jA�-�A�-�A�-
 ��-
 ��-�A�-�A�-�A�-
 �-
 .�A!.B+.BH.
 )L.
 'Q.Bn.)Bx.)B�.
 N�.
 L�.8B�.PB�.PB�.
 s�.
 q�._B/wB/wB//
 �3/
 �8/�BU/�B_/�B|/
 ��/
 ��/�B�/�B�/�B�/
 ��/
 ��/�B�/�B�/
" 0
" 0
 	0
 0
 E 0
 ?)0
"�60
 �:0
 �C0�FM0�Fj0
 rn0
 ps0�F�0G�0G�0
 ��0
 ��0"G�0DG�0
"��0
 ��0
 �1
"�1
 �1
 r 1DG*1DGG1
 K1
 T1
 AX1
 ;]1UG�1`G�1`G�1
 ��1
 ��1
 ��1
 ��1qG�1�G�1�G2
 2
 2
 A2
 ?%2
 o)2
 m.2�GE2�U2�Gm2�H�2�H�2;I�2]�2�F�2C]�2G3Co
38G3C�&3'C73CVG3QCQ3
"@
^3
"@
g3
 �k3
 �t3fC~3fC�3
 ��3
 ��3uC�3hE�3
"�
�3�H�3
  �3
 �3�H4�H#4I84yEM4C�^4�Ey4C��4�E�4�E�4
"�
�4
"�
�4
 Z�4
 V�4�E�4C��4�E�4C�5�E#5C�-5FH5C�R5"Fm5C�w5PF�5]��5\F�5�H�5]C�5C��5H�5C��5�C�5�C6�C*6
 �.6
 �760DL6
 �P6
 �\6�Ff6�F�6
 4 �6
 2 �6�F�6�F�6�F�6�@�6C�7�@7�@#7C-7�@B7C+L7�@a7C=k70A�7CN�7VA�7Cb�7qA�7}A�7Cw�7�A�7C��7�A8�A8�A#8C�-8�AB8C�L8BY8$Bn8C�x8?B�8KB�8C��8fB�8rB�8C��8�B�8�B�8C�8�B	9�B9C*(9�B=9C@G9�D_9�Dl9�D�9C��9E�9C�95E�9RE�9`E�9EI�9
$K7:
$�14:
$pF:
$�1S:
$�a:
$�
~:
$i'�:
$]�:
$}&�:
$�/;
$�3;
$U,?;@@R;
$� Z;0@m;
$$8y; @�;
$,�;@�;
$�;
$#�;�?�;
$��;
$B�;�?	<
$�<
$5!<�?8<
$# H<
$/P<�?g<
$5w<
$�3<p?�<
$g%�<
$�6�<`?�<
$# �<
$o�<P?�<
$}=
 \ =
 X 
=
$,=`Y-=
$@19=
 � ==
 � M=
 !!Q=
 !b=
 �!f=
 �!k=
$A7w=
 ="{=
 /"�=
$< �=
$�*�=
"��=
$�	�=
$�3�=aZ�=
 �"�=
 �"�=iZ>(_ >
$,>
 �#0>
 �#:>@[D>
"�U>
 ($Y>
 $b>
 ($f>
 $o>
 �$s>
 �$x>
"��>
 �%�>
 �%�>
 0&�>
 &�>
 5'�>
 +'�>
 �'�>
 �'�>
 (�>
 �'�>
 I)�>
 /))?
"�A?]Z?
 W*^?
 S*c?]u?`_�?
 �*�?
 �*�?�_�?�_�?�_�?�c�?
"��?
 �+�?
 �+�?
"�@�c@
"� @
 �+$@
 �+-@
 �+1@
 �+:@
 	,>@
 ,H@�cR@�co@
 1,s@
 /,|@
 W,�@
 U,�@
 },�@
 {,�@�c�@�c�@E[�@t[�@�[A�[#A�[HA�[mA"\�AG\�A�\�A`	�A�\�A�\�A�\B�\&Bb]LBy]YB�]}B�_�B]��B�_�B@`�BS`�B``�Bo`C�`EC�`RC�`_C�`�C�`�C]��Ca�C9a�CC��C�a�C](�C�a�C�aD]�D<b/DC�9DKbFD\bjDtbwDb�D�b�D��D�b�D(c�DGc�DXcEic9Ezc]E�c�E�c�E]��E�c�Ed�E]P�EM^�E
" �E
 �,�E
 �,�EM^F
"0
F
 �,F
 �,FM^$FM^=F
 �,AF
 �,JFM^TFM^mF
 -qF
 -zF
 B-~F
 @-�Fa^�F(�F�a�F�a�F
 h-�F
 f-�F�a�F�aG
 �-G
 �-G
 �-G
 �-G�a)G :G�YRG�YiG�Z�G�Z�G�]�G2^�G�^�G_�G	`�G)`HC�H�`(H�aHH�a`Hb�Hb�H=d�HZd�H
$��H0;�H
$@1�H
 �-�H
 �-�H
$(I
 *.I
 .
I
$�I
 �.I
 �.I
$< 0I
$�*AI
$A7MI
 a/QI
 Q/bI
 (0fI
 0kI
$�wI
 �0{I
 �0�I
"��I
$�	�I
$�3�I�<�I
 71�I
 31�I�<�I
"��I
$�J
 �1J
 w1J{>$J�>2Ju;?J�;WJ�;wJ�J�;�J�;�J��J<�J@�J!<
K�K=<7K�AK�<RK`	\K�<sK�<�K�<�K�<�K>=�KW=�Ks=�K
L�=$L�3L�=ML�\L�=vL@�L�=�L��L:>�L]��LD>�L�>�L�>M�> MC�*M??MC�IM'?^M]�hM5?�MH?�M
$��M�:�M
$@1�M
 2�M
 
2�M
;�M
$��M
 a2�M
 _2�M;N%;N
$�N�95N
$@1AN
 �2EN
 �2JN
$l"VN
 3ZN
 3cN�:mN
"�
~N
 *3�N
 (3�N
"�
�N�:�N
"�N
 O3�N
 M3�N
 u3�N
 s3�N
 �3�N
 �3�N�:�N
"P�N
 �3�N
 �3O
 �3O
 �3O
 4O
 4O�:'O�:HO�9UO�9bO�9oO:�O��O::�O�:�O�:�O�:�O
$��O
$��O
$@1P
$�P
$�&&P
$3P
$�@P
$�MP
$�ZP
$A7�P
$(�P
$��P
$< �P
$�*�P
$��P
$�"�P
$�	�P
$�3Q
$�Q
$�Q@91Q
$�9Q�LQ
$�TQkQ
$�"wQ
 G4{Q
 94�Q
$]�Q
 �4�Q
 �4�Q
$v5�Q
 o5�Q
 c5�Q
$��Q
 6�Q
 �5�Q
$��Q
 �6�Q
 �6�Q
$��Q
 ^7�Q
 X7�Q
$��Q
 �7�Q
 �7�QCR]P&RO=R�[R]�eR�|R��R
�R]��R�R
$��R��R
$��R
 8�R
 �7S
$�"S
 �8S
 �8S
$�,S�6S�SS
 �8WS
 �8`S
 9dS
 
9mS
 69qS
 29vS��S]��S�S3�S<�Sd�S]pTm&T�>T�UT�jTCRtT��T
$��T��T
$��T
 y9�T
 o9�T
$��T
 �9�T
 �9�T
$l"�T
 �:�T
 �:�TU U
 ;$U
 ;-U
 B;1U
 @;:U
 j;>U
 f;CUdU��UX�Us�UC�U
$�7�U
$�U
$��U
$�1V
$�5V
$�V
$�
,V
$%";V
$�CV�8ZV
$�fV
 �;jV
 �;oV
$�{V
 �;V
 �;�V
$+%�V��V
$��V
 �;�V
 �;�V
$��V
 *<�V
 $<�V	�V	W
 u<W
 s<W
 �<W
 �<"W
 �<&W
 �<-W
$�5W�LW
$\W
$qhW�	W
$�5�W
 �<�W
 �<�W
 .=�W
 "=�W
$.�W
$�1�W
Xl
0Xs
NX
$VX�8|X
$D�X
$l"�X
$�X
$$�X 7�X
$*�X
 �=�X
 �=�X
$O
�X
 �=�X
 �=Y
$vY
 X>#Y
 T>5YM7TY[7rY�7�Y
$%�Y
$*�Y
$�"�Y
$�(�Y
$��Y
$$�Y
$�	�Y
$�2Z
$�"Z�59Z
$eEZ
 �>IZ
 �>NZ
$O
ZZ
 J?^Z
 :?oZ
 @sZ
 �?�Z
 P@�Z
 J@�Z
$��Z
$6�Z
 �@�Z
 �@�ZR6�Zl6�Z�6[�6@[�6^[�6k[�6x[�6�[�6�[
$��[
$@1�[
$��[
$s%�[
$86\�2"\
$@1.\
 �@2\
 �@7\
$C\
 /AG\
 'AL\
$�X\
 �A\\
 �Aa\
$�m\
 �Aq\
 �Av\
$�	�\
 LB�\
 FB�\
 �B�\
 �B�\
"P	�\
 �B�\
 �B�\
"�	�\
 (C�\
 $C�\�3�\
$s%�\
 dC]
 ^C]4]4)]
"�	:]
 �C>]
 �CG]
 �CK]
 �CT]
 +DX]
 )D]]14}]I4�]
"�	�]
 TD�]
 PD�]
 �D�]
 �D�]
 �D�]
 �D�]S4�]33�]�3^
$�^�'&^
$@19^_(C^
"�P^
 �DT^
 �D]^
 )Ea^
 'Ej^
 QEn^
 MEu^
$�6�^�'�^
$@1�^
 �E�^
 �E�^
 �E�^
 �E�^
 KF�^
 CF�^�'�^
$�!�^P'_
$@1"_
 �F&_
 �F6_
 G:_
 �FK_
 kGO_
 cGT_�'q_
$�}_0�_
$+�_
 �G�_
 �G�_
 6H�_
 .H�_
 �H�_
 �H�_
 5I�_
 )I�_
$��_
 �I�_
 �I`
 �J
`
 �J`{ `
$�
,`0%C`
$@1O`
 �JS`
 �Jc`
 �Kg`
 �Kx`
 L|`
 L�`
 lL�`
 hL�`
 �L�`
 �L�`
$4�`
 �L�`
 �L�`
 9M�`
 5M�`
$��`
 }M�`
 oM�`
"@�`
$�a
 &Na
 Na
$�!a
 �N%a
 �N*a
$�6a
 �N:a
 �N?a
$.Ka
 4OOa
 &OTa
$�`a
 �Oda
 �Oia
$�ua
 Pya
 P~ax&�a
 cP�a
 aP�a�&�a
$��a
 �P�a
 �P�a�&�ac&�a
"pb
 �Pb
 �Pb
 Qb
 �P(b
 /Q,b
 -Q2b�&[b�%�bE'�b
$t�b#�b
$@1�b
 ^Q�b
 RQ�b
 �Q�b
 �Q�b
 �R�b
 }Rc
 JSc
 >Sc
 �Sc
 �S!c
$4-c
 NT1c
 BTBc
 �TFc
 �TKc
$�Wc
 5U[c
 #U`c
$$rc�#�c
$��c
 �U�c
 �U�c
$.�c
 cV�c
 [V�c
$��c
 �V�c
 �V�c
$��c
 �V�c
 �V�c�$�c�d�$4d�>d�$Rd$%qd
$�}d �d
$}�d� �d
$@1�d
 EW�d
 3W�d
$X�d
 
X�d
 X�d
$+7
e
 4Xe
 0Xe
$�$e
"`;e
"`De
 rXHe
 lXQe
 �XUe
 �X^e
"�ke
 �Xoe
 �Xxe
 RY|e
 JY�e
 �Y�e
 �Y�e
 �Y�e
 �Y�e
 *Z�e
 &Z�e
 dZ�e
 `Z�e
"��e
 �Z�e
 �Z�e
"�e
 �Z�e
 �Z�ee"�e�!fd!(f
$M:f
$@1Gf
$X_f
$4xf
$��f
$��f
$.�f
$��f
$��f
$��f
$(�f
$@1g
$� g
$�1-g
$�Eg
$�Rg
$fyg
$z
�g
$C�g�(�g
$@1�g
 e[�g
 Y[�g
 �[�g
 �[�g
 o\�g
 g\�g�(h
"�h
 �\h
 �\(h
 ],h
 ]5h
 h]9h
 f]>h
"�Lh
 �]Ph
 �]Zh)qh�(�h!)�h])�h
$5(�hp �h
$@1�h
$�3�h
 �]�h
 �]�h
$Qi
 T^
i
 R^i� i
" *i
 y^.i
 w^7i
 �^;i
 �^Di
 �^Hi
 �^Oi
$�[i2ri
$@1~i
 �^�i
 �^�i
$|�i
 �_�i
 �_�i
 y`�i
 i`�i
$��i
 7a�i
 'a�i
$�3�i
 �a�i
 �a�iU2�i
" 	�i
 �b�i
 �bj
 �bj
 �bj
 �bj
 �bjU26jz2Sj�2zj�2�j
$�,�j
$@1�j
$��j
$�3�j
$��j
$Q�j
$�.k
$�k
$U2!k
$%-k`Dk
$@1Pk
 cTk
 cYk
$�ek
 �cik
 �cnk
$Qzk
 �c~k
 �c�k
 dd�k
 Xd�k
$/�k
 
e�k
 e�k��k
"��k
 ne�k
 je�k
 �e�k
 �e�k�l l
"�l
 �e!l
 �e*l
 f.l
 f7l
 Af;l
 =f@l
"�Il
 {fMl
 wfVl `l }l
 �f�l
 �f�l
 �f�l
 �f�l
 �f�l
 �f�l �l! �l
$(�l��l
$@1m
 *gm
  g	m
$�m
 �gm
 �gm
$Q*m
 h.m
 h3m
$P?m
 thCm
 jhTm
 �hXm
 �h]m
$�,im
 (imm
  irm
$�~m
 �i�m
 �i�m
$��m
 �i�m
 �i�m
$��m
 �j�m
 �j�m
 �j�m
 �j�m��m
" �m
 k�m
 k�m
 Tk�m
 Pk�m
 �kn
 �kn�$n�Cn(Mn(jn
 �knn
 �ksn(�n
 l�n
 �k�n4�n��n
$��n��n
$@1�n
 Tl�n
 Hlo�o�+o
 �l/o
 �l4o�No
 mRo
 mWo�no
$�/�o
$@1�o
$�o
$�o0�o
$@1�o
$E+�o
 ;m�o
 7m�o
 zm�o
 tmp
$�p�(p
$@14p
 �m8p
 �m=p�JpWpdp&rp
$yzp��p
$@1�p
 #n�p
 n�p��p
"��p
 qn�p
 on�p
 �n�p
 �n�p
$D�p�/q
$@1
q
 �nq
 �nq�/.q�/Fq�/fq!0{q
$a4�q�.�q
$@1�q
 Do�q
 8o�q#/�qP/�qX/�qm/	r
$27r�W,r
$@18r
 �o<r
 �oAr
$�1cr
$.xrY�r
"P�r
 wp�r
 up�rY�r
"`�r
 �p�r
 �p�rY�rY�r
 �p�r
 �p�rY�rYs
 �ps
 �p$s
 q(s
 q-s$Y>s(Qs�WisX�sFX�sX�s�X�s�X�s�Xt�XtKY9tUYGt
$2St`jt
$@1zt
$�
�tp�t��t��t
$�)�t��t
$@1�t
 Eq�t
 ;q�t
 �qu
 �qu
$�u
 Mru
 Kru(u
"9u
 rr=u
 prFu
 �rJu
 �rYu3cu
"@tu
 �rxu
 �r�u
 �r�u
 �r�u
"@�u
 
s�u
 	s�u<�u��u��u
 Es�u
 Cs�u�
v�0v�Cv]Mv
"�^v
 jsbv
 hskv
 �sov
 �stvd�vCo�v��v��v=�vOwmw�&w
$[0.w�Tw
$`w�sw
$�{w��w
$��w��w
"��w
$?�w
 �s�w
 �s�w��w��w�w�x x�<x�Xxmx�|x�x3�xCy�xK�xC��x
$}	�x
$@1�x
$�y
$�7"y
$u@y
$�!_y
$8my
$a2�y
$��y
$e�y
$1�y
$@1�y
$fz
$�z
$+7z
$�+z
$k=z
$@1Jz
$�Xz
$�jz
$@1�z
$��z
$��z
$+�z
$�z
$>�z
$@1�z
$
{
$${
$�${
$~01{
$�O{
$]a{
$@1�{
$��{
$~�{
$+�{
$�	�{,�{
$@1�{
 �s|
 �s|
 Pt|
 Ht&|
 �t*|
 �t;|
 �t?|
 �tD|
$U|H,p|�,�|]�|�,�|C��|�,�|
$�
�|
$@1	}
$�'%}
$�7}
$@1D}
$$R}[}
$�1i}� �}
$�6�}+�}
$@1�}
 Yu�}
 Qu�}
$^�}
 �u�}
 �u�}
$d�}
 %v�}
 v�}
$�4~
 uv~
 qv#~q+-~
"�>~
 �vB~
 �vK~
 �vO~
 �vY~�+�~C��~;+�~E+�~[+�~c+�~�+�~�+�~�+
$�$
$r	6
$�+\
$�{
$�.�
$�
�
$@1�
$f�
$��
$��
$��
$@14�
$�A�
$�P�
$s^�
$@1w�
$���
$%)��
$}$���
̀
$�0؀
 w܀
 w�
$��
 jw�
 fw��
$+7�
$��
 �w�
 �w�
$m,&�
 x*�
 
x/�
$.;�
 Sx?�
 GxD�
$�	P�
 �xT�
 �xZ�
$Z(x�
$�1��
$���
$�0��
$&
��
$�́
$��
$x�
$�3��
$��
$�&�0	=�
$@1I�
 �yM�
 �yR�
$�^�
 Fzb�
 @zq�
 �zu�
 �zz�H	��
$@3��
$@1ł
$�ׂ
$@1�
$��
$���
$��
$q*�
$�7�
$fQ�
$�,p�
$1��
$���
$b#ă
$@1҃
$���
$2
��	,�
 �z0�
 �z5�
$�$A�
 �{E�
 �{V�
 &|Z�
  |_��	���	��
$�6��
$�3��
$S҄
$!܄
$�#�0��
$�)�
 w|�
 o|�
$@,�
 �| �
 �|5�`X��p�������
$.)��Ѕ
$i-؅��
$P
�
$�3�@,�
$"8�
 E}<�
 =}A�
$�M�
 �}Q�
 �}V�Vn�w��C[��
$`+��@��
$�ʆ
 ~Ά
 ~ކ
 �~�
 �~�
 \�
 H
�
$<�
 6��
 0�.�0e��o�
"P�
 ����
 ����
 ����
 ����
 ܀��
 ڀ���̇]ۇc�c�
 ��
 ���
 /��
 -��
 W��
 U�$��N�C"Y�Bv�O��S��
"���
 ~���
 z���
 ��ˆ
 ��ˈ
 �ψ
 �ԈX������
 �#�
 �,�
 G�0�
 E�9�
 n�=�
 l�B��j�C2~������
"���
 ����
 ����
 ����
 ��ĉ
 �ȉ
 �͉���C8��
"�
 "�#�
  �,�
 P�0�
 N�5�)K�CF\��i�w�
$s��
$@1��
$���
$�-��
$�/��
$�ˊ
$>܊
$j�
$�/�
$�0�
$�+�
$W!�
$�*�
$o7�
$�H�
$W!T�
$�a�
$5r�
$W!~�
$b3��
$o��
$�.��
$W!��
$���
$o͋
$
ދ
$W!�
$���
$o�
$@�
$h �
$�,�
$�0?�
$�P�
$h\�
$�j�
$�
��
$���
$���
$5��
$.֌
$��
$���
$�	�
$��
$=-(�
$j5�
$n7I�
$�Z�
$f�
$e&t�
$51��
$�-��
$�/��
$�-���ύ
 ��Ӎ
 t�܍
 ��
 ��
 H��
 B�����
"
�
 ���
 ���
 ��
 �'�
 @�+�
 <�0�
"09�
 |�=�
 v�F��P��m�
 Džq�
 Ņz�
 �~�
 ���
 ���
 �������Ŏ0
�@
�@
�
 6��
 4�!�G
9�Q
L�w
V�w
v��
��
 c���
 Y���
 ߆��
 Ն��
 [���
 Q���
 ه��
 ͇ŏ
 m�ɏ
 a�ҏ
 ��֏
 ���
��e��+��5�
"`B��P��g��y����
 [���
 S���
 ����
 ����
 &���
 �Đ
 ��Ȑ
 ���
 ��
 ��
 X��
 R���'�'$�
 ��(�
 ��1�
 ʋ5�
 ȋ>�
 �B�
 �G�<l��v�
"���
 ,���
 *���
 S���
 Q���
 z���
 v����ϑFّ
"��
 ���
 ���N�x �
"1�
 ٌ5�
 ׌>�
 �B�
 ��K�
 (�O�
 $�Y��c�
"Pt�
 e�x�
 a���
 ����
 ����
 ͍��
 ˍ�������
"�˒
 �ϒ
 �ؒ
 �ܒ
 ��
�k
��(�C2�P��{�������9��ؓ
 C�ܓ
 ?��
"��
"�$�
 ��(�
 |�1�
 V�5�
 J�>�
 �B�
 ؏K�
 v�O�
 p�X�
"�e�
 ��i�
 ��r�
 �v�
 �{����z”�ؔ���)�
 �	�
 	��
 ���
 ���
 ?�#�
 1�T��)^��){�
 ��
 ޒ��
 5���
 1���
 q���
 m����)��
 ����
 ��ɕ
 ԓ͕
 ̓֕
 <�ڕ
 4��
 ���
 ���
 Ô�
 ���{*�
" *�
 �.�
 �7�
 "�;�
  �D�
 H�H�
 F�Q�
 n�U�
 l�Z�
" h�
 ��l�
 ��u�
 Εy�
 ̕~��*��D*��
"p��
 ��Ö
 �̖
 0�Ж
 .�ٖ
 V�ݖ
 T���)���*��*8��*J��,e�
 ��i�
 y�|��,��
"���
 ����
 y���
 
���
 ���
 ����
 ����
"�̗
 M�З
 G�ٗ
 ��ݗ
 ���-�
"@�
 ԙ�
 ҙ�
 ���
 ���
-7�{-A�{-^�
 #�b�
 �k�
 ^�o�
 \�t�{-��
 ����
 �����-��r-Ҙ].ߘ�.��.���-	�
"p�
 ���
 ��#�
"p,�
 �0�
 ��9��-C��-`�
 ��d�
 ��m�
 ��q�
 ��v��-���-���-��<.ۙC.�R.��.%�]X;�x.E�x.b�
 ٛf�
 ӛk�x.���.��]8���.��00ך
 1�ۚ
 %��
 ɜ�
 ���
 ����
 �"��0,�
"�=�
 0�A�
 (�J�
 ��N�
 ��W�
 �[�
 �`�
"�i�
 B�m�
 6�v�
 ɟz�
 ş��
 	���
 ����
 ����
 {���
 ���
 ���
 J���
 D����0ƛ
"�ܛ
 ���
 ���
 ���
 �����1��1�
 �"�
 �+�
 �/�
 �8�
 /�<�
 -�A��1d�c1|��1���1���4��
 `�Ü
 R�̜
 	�М
 ��ٜ
 ��ݜ
 ���
"
�
 /���
 #�
�5#�
 ��'�
 ��1�>5J�
 F�N�
 @�S�g5l�q5v�
"P
��
 ����
 ����
 ����
 ����
 ���
 ޥ���5ǝ7�
 ��
 ��
 ]��
 W��7=��7X�
 ��\�
 ��e�
 �i�
 �r�
 ��v�
 ����7��
"�
��
 ?���
 5���
 ����
 ����
 3���
 -����7֞8�'8�68��@8�8(��KC�
 ��G�
 |�P�
 <�T�
 :�b�,Ll�
"�}�
 c���
 _���
 ����
 ����
 ת��
 Ӫ��
"���
 ���
 
���0L��0Lݟ
 I��
 G��
 n��
 l���
 ����
 ���=L!�HL4��L>�
" O�
 ��S�
 ��X�
" a�
 �e�
 �n�
 2�r�
 *�{��L���L��
 ����
 ����
 ����
 �����LѠ
 ۬ՠ
 ٬�8M�8M�
 ��
 ���
 %��
 #�!�
 J�%�
 H�*�@M?�
 q�C�
 m�L�@MV�@Ms�
 ��w�
 ����
 ��
 ̭��
 ���
 ���NM��YMʡ�Mԡ
"��
  ��
 ��
 ����
 ����
"��
 ��
 ��
 ^��
 T�'��M1��MN�
 ϯR�
 ͯ[�
 �_�
 �h�
 �l�
 �q��M���M���M��
 D���
 B���
 i���
 g�Ȣ
 ��̢
 ��Ѣ�M�
 ���
 ����M�N�N<�
 ް@�
 ܰI�
 �M�
 �V�
 +�Z�
 )�_�Ny�!N��!N��
 S���
 Q���
 x���
 v���
 ����
 ����!Nԣ
 ȱأ
 Ʊݣ8N�yO
�
"�
 ��"�
 �'�
"0�
 ��4�
 ��=�
 �A�
 �J��O_�
 @�c�
 >�l�
 e�p�
 c�|�OP��OP��
 ����
 ����OP��
 ��Ť
 ��ΤOPؤ
"0�
 Գ�
 ҳ�
"0��
 ����
 ���
 "��
  ��kP!�
"p2�
 G�6�
 E�;�
"pD�
 n�H�
 l�Q�
 ��U�
 ��`�yPj�
"�{�
 ���
 ����
"���
 ���
 ߴ��
 
���
 ����P��
"ĥ
 C�ȥ
 A�ͥ
"֥
 j�ڥ
 h��
 ���
 ����P��
"`
�
 ���
 ���
"`�
 ޵#�
 ܵ,�
 �0�
 �;��PE�
"�V�
 +�Z�
 )�_�
"�h�
 R�l�
 P�u�
 {�y�
 w����P��
"��
 ����
 ����
"��
 ۶��
 ٶ��
 �¦
 �ͦ�Pצ
"`�
 (��
 &��
"`��
 O���
 M��
 v��
 t���P �
"�-�
 ��1�
 ��6�
"�?�
 ÷C�
 ��L�
 �P�
 �]�Q{�Q��
 '���
 #���"Q��
 a���
 _�ç
 ��ǧ
 ��Ч3Qڧ3Q�
 ����
 ����3Q�
 ݸ�
 ۸�
 �"�
 �.�bQC�
 +�G�
 %�P�
 x�T�
 v�]��Qg�
"�x�
 ��|�
 ����
"���
 ۹��
 ׹��
 ���
 ����Q��
"0¨
"0Ш
 :�Ԩ
 8�ߨ�Q�
"p��
"p	�
 _�
�
 ]���Q"�
"�0�
"�>�
 ��B�
 ��P�\UZ�\Uw�
 ��{�
 ����\U��
 �
 ̺��iU���UթpN��N�P)�C�3�0VQ�C6[�/Wu�]���vR��vR��
 ���
 ���
 �ê
 �ȪvRݪ
 =��
 ;���R��R�
"�'�
 j�+�
 `�0�
"�9�
 �=�
 ٻF�
 ��J�
 ~�S�
 ��W�
 ��`�
 (�d�
 �m�
 ��q�
 ��z�
 	�~�
 ���
 E���
 ?���_S��
"p��
 ����
 ����
 ����
 ��ɫ
 ߾ͫ
 ۾֫
 �ګ
 ��
 C��
 =��
"���S�
" "�
 ��&�
 ��/�
 ��3�
 ��<�
 �@�
 �F��S^��S���S���SǬTѬ
"`�
 ��
 ��
 ���
 ����
 ��
 �	�
 6�
�
 (��
"��
 ��
 �(�
 *�,�
 �5��U?�
"�U�
 �Y�
 ��b�
"�t�
 x�x�
 r���hW��hW��
 ����
 ����hW­�W��� �3T&�hW=�]�R��U\��Uu�V��V��]���
TϮ\T�yT��T��T6��UN�AV[�iVh��V��C����V���V��C�ɯ�V�JW��C���W"�C�3��T@��T[�C�e�Ur��U��]8���U��]pİUΰU�
 ���
 ����
 ���
 ��
 6�	�
 4��U�
".�
 d�2�
 b�;�UE�
" R�
 ��V�
 ��_�Ui�U��
 ����
 ����U��U��
 ����
 ����
 �ñ
 �ȱ5Uٱ(�P
�CT�WU2�C<�
WV�C&m� Pw� P��
 *���
 (���
 T���
 P��� P��
 ��ò
 ��Ȳ.P߲TW�
$5�
$��
$�.��
$g�
$�'�
$�'�
$�7�
$�7�
$d$ �
$d$(�
$�,�
$	4�
$b8�
$bA�
$>E�
$�M�
$e!Q�
$e!Z�
$�0^�
$�0g�
$�*k�
$�*s�
$w�
$��
$m��
$m��
$H
��
$H
��
$9��
$9��
$=+��
$=+��
$���
$���
$	³
$	˳
$r)ϳ
$r)س
$ܳ
$�
$�%�
$�%�
$
�
$
��
$���
$��
$
	�
$
�
$�
$�
$�/"�
$�/+�
$>#/�
$>#8�
$�%<�
$�%D�
$�H�
$�P�
$�!T�
$�!\�
$�,`�
$�,i�
$�m�
$�u�
$u,y�
$u,��
$w*��
$w*��
$.(��
$.(��
$���
$���
$�,��
$�,��
$C-��
$���
$ô
$̴
$�д
$�ٴ
$�7ݴ
$�7�
$��
$��
$D4��
$D4��
$�,�
$�,	�
$"
�
$"�
$V�
$V!�
$�)%�
$�)-�
$Z21�
$Z2:�
$�>�
$�F�
$�+J�
$�+S�
$_7W�
$_7_�
$�c�
$�k�
$V8o�
$V8w�
$�&{�
$�&��
$_$��
$_$��
$v��
$v��
$��
$��
$���
$�ĵ
$�ȵ
$�е
$�/Ե
$�/ܵ
$_�
$_�
$�
$�
$�2��
$�2�
$�+�
$E"�
$
�
$�*�
$�"�
$�*�
$9.�
$96�
$:�
$B�
$�	F�
$�	O�
$eS�
$e\�
$�`�
$�h�
$�l�
$�t�
$�-x�
$:��
$�4��
$�4��
$f*��
$f*��
$J��
$J��
$J��
$�
��
$���
$���
$���
$�ȶ
$�̶
$�Զ
$�,ض
$�,�
$I�
$I�
$�
$��
$�3��
$�3�
$�
�
$��T��+�'-(�- �3��8]�QC��p(�sCo�vC���]�C",�C2��C85�CF�
�ʿ�I����(
��
�� 4H \0������0L�`0	��	��	��
�\��0
��
$�L��@X��0@X�l���������`p,�@�\0p����` p 4� �#�0%8P'L�'`�'t�(��)�+P	,�	�,�	�.�	�/
00\
2�
�2�4X�5�7� 7��7$�88�8L@9`�9��:�0;
P?
`?(
p?<
�?P
�?d
�?x
�?�
@�
 @�
0@�
@@�
P@`I\�IpJ�K��K4�W|`Y�`d��d.symtab.strtab.shstrtab.rela.text.data.bss.rela.gnu.build.attributes.text.hot.rela.gnu.build.attributes.hot.text.unlikely.rela.gnu.build.attributes.unlikely.text.startup.rela.gnu.build.attributes.startup.text.exit.rela.gnu.build.attributes.exit.rodata.str1.1.rodata.str1.8.rodata.rela.data.rel.local.rela.data.rel.rela.data.rel.ro.local.rela.debug_info.debug_abbrev.rela.debug_loc.rela.debug_aranges.debug_ranges.rela.debug_line.debug_str.comment.text.hot.zzz.text.unlikely.zzz.text.startup.zzz.text.exit.zzz.note.GNU-stack.note.gnu.property.rela.eh_frame.groupP@:�PT:�Pl:�P�:�P�:� ��d@ A@G:&`ep	 ,�n� 6�np"1@`�� :
LP�[P��V@0�0:
u �� ���@`�0:������@��0:��������@��0:2��2��/"�D /@�8 *@��:Dx�?@��:S��� N@��p:kh��f@��\:!wza��
i���@��:$��/0�@�0:&��/`�LJR�@�H:)�0]��8�0�.�A��A�uA�LA� A��A��A��A�A�A�.H� Fh��A@(:8X��4;�	'0WPKCH[d�C�R[R[1share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsruby.cnu�[���
#include "ruby.h"

#if defined( RUBY_VERSION_CODE ) && RUBY_VERSION_CODE < 180
#include "util.h"
#else
#include <ruby/util.h>
#include <ruby/version.h>
#endif

#include "lsapilib.h"
#include <errno.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <signal.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sys/mman.h>
#include <fcntl.h>


#ifndef RUBY_API_VERSION_CODE
#define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY)
#endif

/* RUBY_EXTERN VALUE ruby_errinfo; */
RUBY_EXTERN VALUE rb_stdin;
RUBY_EXTERN VALUE rb_stdout;
#if defined( RUBY_VERSION_CODE ) && RUBY_VERSION_CODE < 180
RUBY_EXTERN VALUE rb_defout;
#endif

static VALUE orig_stdin;
static VALUE orig_stdout;
static VALUE orig_stderr;
#if defined( RUBY_VERSION_CODE ) && RUBY_VERSION_CODE < 180
static VALUE orig_defout;
#endif
static VALUE orig_env;

static VALUE env_copy;

static VALUE lsapi_env;

static int MAX_BODYBUF_LENGTH = (10 * 1024 * 1024);

#if RUBY_API_VERSION_CODE >= 20700
# if defined rb_tainted_str_new
#  undef rb_tainted_str_new
# endif
# define rb_tainted_str_new(p,l)  rb_str_new((p),(l))
#endif

/* static VALUE lsapi_objrefs; */

typedef struct lsapi_data
{
    LSAPI_Request * req;
    VALUE           env;
    ssize_t      (* fn_write)( LSAPI_Request *, const char * , size_t );
}lsapi_data;

static VALUE cLSAPI;

static VALUE s_req = Qnil;
static lsapi_data * s_req_data;

static VALUE s_req_stderr = Qnil;
static lsapi_data * s_stderr_data;
static pid_t s_pid = 0;

typedef struct lsapi_body
{
    char        *bodyBuf;  //we put small one into memory, otherwise, into a memory mapping file, and we still use the bodyBuf to access this mapping
    int	        bodyLen;	//expected length got form content-length
    int	        bodyCurrentLen;	//current length by read() readBodyToReqBuf
    int	        curPos;
}lsapi_body;

static lsapi_body	s_body;
static char sTempFile[1024] = {0};

/*
 * static void lsapi_ruby_setenv(const char *name, const char *value)
 * {
 *    if (!name) return;
 * 
 *    if (value && *value)
 *	    ruby_setenv(name, value);
 *    else
 *        ruby_unsetenv(name);
 } *        *
 */


static void lsapi_mark( lsapi_data * data )
{
    rb_gc_mark( data->env );
}
/*
 * static void lsapi_free_data( lsapi_data * data )
 * {
 *   free( data );
 } *        *
 */
static int add_env_rails( const char * pKey, int keyLen, const char * pValue, int valLen,
                          void * arg )
{
    char * p;
    int len;
    /* Fixup some environment variables for rails */
    switch( *pKey )
    {
        case 'Q':
            if ( strcmp( pKey, "QUERY_STRING" ) == 0 )
            {
                if ( !*pValue )
                    return 1;
            }
            break;
        case 'R':
            if (( *(pKey+8) == 'U' )&&( strcmp( pKey, "REQUEST_URI" ) == 0 ))
            {
                p = strchr( pValue, '?' );
                if ( p )
                {
                    len = valLen - ( p - pValue ) - 1;
                    /* 
                     *                valLen = p - pValue;
                     *p++ = 0;
                     */
                }
                else
                {
                    p = (char *)pValue + valLen;
                    len = 0;
                }
                rb_hash_aset( lsapi_env,rb_tainted_str_new("PATH_INFO", 9),
                              rb_tainted_str_new(pValue, p - pValue));
                rb_hash_aset( lsapi_env,rb_tainted_str_new("REQUEST_PATH", 12),
                              rb_tainted_str_new(pValue, p - pValue));
                if ( *p == '?' )
                    ++p;
                rb_hash_aset( lsapi_env,rb_tainted_str_new("QUERY_STRING", 12),
                rb_tainted_str_new(p, len));
            }
            break;
        case 'S':
            if ( strcmp( pKey, "SCRIPT_NAME" ) == 0 )
            {
                pValue = "/";
                valLen = 1;
            }
            break;
        case 'P':
            if ( strcmp( pKey, "PATH_INFO" ) == 0 )
                return 1;
        default:
            break;
    }
    
    /* lsapi_ruby_setenv(pKey, pValue ); */
    
    rb_hash_aset( lsapi_env,rb_tainted_str_new(pKey, keyLen),
                  rb_tainted_str_new(pValue, valLen));
    return 1;
}

static int add_env_no_fix( const char * pKey, int keyLen, const char * pValue, int valLen,
                           void * arg )
{
    rb_hash_aset( lsapi_env,rb_tainted_str_new(pKey, keyLen),
                  rb_tainted_str_new(pValue, valLen));
    return 1;
}

typedef int (*fn_add_env)( const char * pKey, int keyLen, const char * pValue, int valLen,
                           void * arg );

fn_add_env s_fn_add_env = add_env_no_fix;

static void clear_env()
{
    /* rb_funcall( lsapi_env, rb_intern( "clear" ), 0 ); */
    rb_funcall( lsapi_env, rb_intern( "replace" ), 1, env_copy );
}

static void setup_cgi_env( lsapi_data * data )
{
    clear_env();
    
    LSAPI_ForeachHeader_r( data->req, s_fn_add_env, data );
    LSAPI_ForeachEnv_r( data->req, s_fn_add_env, data );
}

static VALUE lsapi_s_accept( VALUE self )
{
    int pid;
    if ( LSAPI_Prefork_Accept_r( &g_req ) == -1 )
        return Qnil;
    else
    {
        if (s_body.bodyBuf != NULL)
            free (s_body.bodyBuf);
        
        s_body.bodyBuf = NULL;
        s_body.bodyLen = -1;
        s_body.bodyCurrentLen = 0;
        s_body.curPos = 0;    
        
        pid = getpid();
        if ( pid != s_pid )
        {
            s_pid = pid;
            rb_funcall( Qnil, rb_intern( "srand" ), 0 );
        }
        
        setup_cgi_env( s_req_data );
        return s_req;
    }
}


static VALUE lsapi_s_accept_new_conn(VALUE self)
{
    if (LSAPI_Accept_Before_Fork(&g_req) == -1 )
        return Qnil;
    else
        return s_req;
}


static VALUE lsapi_s_postfork_child(VALUE self)
{
    LSAPI_Postfork_Child(&g_req);
    return s_req;
}


static VALUE lsapi_s_postfork_parent(VALUE self)
{
    LSAPI_Postfork_Parent(&g_req);
    return s_req;
}


/*
 * static int chdir_file( const char * pFile )
 * {
 *    char * p = strrchr( pFile, '/' );
 *    int ret;
 *    if ( !p )
 *        return -1;
 *p = 0;
 ret = chdir( pFile );
 *p = '/';
 return ret;
 }
 */

static VALUE lsapi_eval_string_wrap(VALUE self, VALUE str)
{
#if RUBY_API_VERSION_CODE < 20700
    if (rb_safe_level() >= 4)
    {
        Check_Type(str, T_STRING);
    }
    else
#endif
    {
        SafeStringValue(str);
    }
    return rb_eval_string_wrap(StringValuePtr(str), NULL);
}

static VALUE lsapi_process( VALUE self )
{
/*    lsapi_data *data;
    const char * pScriptPath;
    Data_Get_Struct(self,lsapi_data, data);
    pScriptPath = LSAPI_GetScriptFileName_r( data->req );
*/
    /*
     *   if ( chdir_file( pScriptPath ) == -1 )
     *   {
     *       lsapi_send_error( 404 );
     *   }
     *   rb_load_file( pScriptPath );
     */
    return Qnil;
}


static VALUE lsapi_putc(VALUE self, VALUE c)
{
    char ch = NUM2CHR(c);
    lsapi_data *data;
    Data_Get_Struct(self,lsapi_data, data);
    if ( (*data->fn_write)( data->req, &ch, 1 ) == 1 )
        return c;
    else
        return INT2NUM( EOF );
}


static VALUE lsapi_write( VALUE self, VALUE str )
{
    lsapi_data *data;
    int len;
    Data_Get_Struct(self,lsapi_data, data);
    /*    len = LSAPI_Write_r( data->req, RSTRING_PTR(str), RSTRING_LEN(str) ); */
    if (TYPE(str) != T_STRING)
        str = rb_obj_as_string(str);
    len = (*data->fn_write)( data->req, RSTRING_PTR(str), RSTRING_LEN(str) );
    return INT2NUM( len );
}

static VALUE lsapi_print( int argc, VALUE *argv, VALUE out )
{
    int i;
    VALUE line;
    
    /* if no argument given, print `$_' */
    if (argc == 0)
    {
        argc = 1;
        line = rb_lastline_get();
        argv = &line;
    }
    for (i = 0; i<argc; i++)
    {
        if (!NIL_P(rb_output_fs) && i>0)
        {
            lsapi_write(out, rb_output_fs);
        }
        switch (TYPE(argv[i]))
        {
            case T_NIL:
                lsapi_write(out, rb_str_new2("nil"));
                break;
            default:
                lsapi_write(out, argv[i]);
                break;
        }
    }
    if (!NIL_P(rb_output_rs))
    {
        lsapi_write(out, rb_output_rs);
    }
    
    return Qnil;
}

static VALUE lsapi_printf(int argc, VALUE *argv, VALUE out)
{
    lsapi_write(out, rb_f_sprintf(argc, argv));
    return Qnil;
}

static VALUE lsapi_puts _((int, VALUE*, VALUE));

#if RUBY_API_VERSION_CODE >= 10900
static VALUE lsapi_puts_ary(VALUE ary, VALUE out, int recur )
{
    VALUE tmp;
    long i;
    
    if (recur)
    {
        tmp = rb_str_new2("[...]");
        rb_io_puts(1, &tmp, out);
        return Qnil;
    }
    for (i=0; i<RARRAY_LEN(ary); i++) 
    {
        tmp = RARRAY_PTR(ary)[i];
        rb_io_puts(1, &tmp, out);
    }
    return Qnil;
    
}
#else
static VALUE lsapi_puts_ary(VALUE ary, VALUE out)
{
    VALUE tmp;
    int i;
    
    for (i=0; i<RARRAY_LEN(ary); i++)
    {
        tmp = RARRAY_PTR(ary)[i];
        if (rb_inspecting_p(tmp))
        {
            tmp = rb_str_new2("[...]");
        }
        lsapi_puts(1, &tmp, out);
    }
    return Qnil;
}
#endif

static VALUE lsapi_puts(int argc, VALUE *argv, VALUE out)
{
    int i;
    VALUE line;
    
    /* if no argument given, print newline. */
    if (argc == 0)
    {
        lsapi_write(out, rb_default_rs);
        return Qnil;
    }
    for (i=0; i<argc; i++)
    {
        switch (TYPE(argv[i]))
        {
            case T_NIL:
                line = rb_str_new2("nil");
                break;
            case T_ARRAY:
#if RUBY_API_VERSION_CODE >= 10900
                rb_exec_recursive(lsapi_puts_ary, argv[i], out);
#else
                rb_protect_inspect(lsapi_puts_ary, argv[i], out);
#endif
                continue;
            default:
                line = argv[i];
                break;
        }
        line = rb_obj_as_string(line);
        lsapi_write(out, line);
        if (*( RSTRING_PTR(line) + RSTRING_LEN(line) - 1 ) != '\n')
        {
            lsapi_write(out, rb_default_rs);
        }
    }
    
    return Qnil;
}


static VALUE lsapi_addstr(VALUE out, VALUE str)
{
    lsapi_write(out, str);
    return out;
}

static VALUE lsapi_flush( VALUE self )
{
    /*
     *    lsapi_data *data;
     *    Data_Get_Struct(self,lsapi_data, data);
     */
    LSAPI_Flush_r( &g_req ); 
    return Qnil;
}

static VALUE lsapi_getc( VALUE self )
{
    int ch;
    /*
     *    lsapi_data *data;
     *    Data_Get_Struct(self,lsapi_data, data);
     */
#if RUBY_API_VERSION_CODE < 20700
    if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
    {
        rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
    }
#endif
    ch = LSAPI_ReqBodyGetChar_r( &g_req );
    if ( ch == EOF )
        return Qnil;
    return INT2NUM( ch );
}

static inline int isBodyWriteToFile()
{
    return ((s_body.bodyLen >= MAX_BODYBUF_LENGTH)? (1): (0));
}

//create a temp file and open it, if failed, fd = -1
static inline int createTempFile()
{
    int fd = -1;
    char *sfn = strdup(sTempFile);
    
    if ((fd = mkstemp(sfn)) == -1)
    {
        fprintf(stderr, "%s: %s\n", sfn, strerror(errno));
    }
    else
        unlink(sfn);
    
    free(sfn);
    return fd;
}

//return 1 if error occured!
//if already created, always OK (0)
static int createBodyBuf()
{
    int fd = -1;
    if (s_body.bodyLen == -1)
    {
        s_body.bodyLen = LSAPI_GetReqBodyLen_r(&g_req);
        //Error if get a zeor length, should not happen 
        if (s_body.bodyLen < 0)
        {
            //Wrong bode length will be treated as 0
            s_body.bodyLen = 0;
        }
        
        if (s_body.bodyLen > 0) 
        {
            if (isBodyWriteToFile())
            {
                //create file mapping
                fd = createTempFile();
                if (fd == -1)
                {
                    return 1;
                }
                if (ftruncate(fd, s_body.bodyLen) == 0)
                {
                    perror("ftruncate() failed. \n");
                    close(fd);
                    return 1;
                }
                s_body.bodyBuf = mmap(NULL, s_body.bodyLen, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
                if (s_body.bodyBuf == MAP_FAILED)
                {
                    perror("File mapping failed. \n");
                    close(fd);
                    return 1;
                }
                close(fd);  //close since needn't it anymore
            }
            else
            {
                s_body.bodyBuf = (char *)calloc(s_body.bodyLen, sizeof(char));
                if (s_body.bodyBuf == NULL)
                {
                    perror("Memory calloc error");
                    return 1;
                }
            }
        }
    }

    return 0;   
}

static inline int isAllBodyRead()
{
    return (s_body.bodyCurrentLen < s_body.bodyLen)? 0 : 1;
}

static inline int isEofBodyBuf()
{
    return (s_body.curPos < s_body.bodyLen) ? 0 : 1;
}
//try to read length as times pagesize (such as 8KB * N)
static int readBodyBuf(const int needRead)
{
    const int blockSize = 8192;
    char *buff = s_body.bodyBuf + s_body.bodyCurrentLen;
    int nRead;
    int readMore = (needRead + blockSize -1) / blockSize * blockSize;
    int remain = LSAPI_GetReqBodyRemain_r( &g_req );
    //Only when not enough left, needReadChange will be changed!!!
    if (remain < readMore) 
        readMore = remain;

    if ( readMore <= 0 )
        return 0;
    
    nRead = LSAPI_ReadReqBody_r(&g_req, buff, readMore);
    if ( nRead > 0 )
        s_body.bodyCurrentLen += nRead;

    return nRead;
}

static VALUE lsapi_gets( VALUE self )
{
    VALUE str;
    const int blkSize = 4096;
    int n;
    char *p = NULL;
    
#if RUBY_API_VERSION_CODE < 20700
    if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
    {
        rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
    }
#endif
    if (createBodyBuf() == 1)
    {
        return Qnil;
    }   
    
    //comment:
    while((p = memmem(s_body.bodyBuf + s_body.curPos, s_body.bodyCurrentLen - s_body.curPos, "\n", 1)) == NULL) 
    {
        if (isAllBodyRead() == 1)
            break;
        //read one page and check, then reply
        readBodyBuf(blkSize);
    }
    
    p = memmem(s_body.bodyBuf + s_body.curPos, s_body.bodyCurrentLen - s_body.curPos, "\n", 1);
    if (p != NULL)
        n = p - s_body.bodyBuf - s_body.curPos + 1;
    else
        n = s_body.bodyCurrentLen - s_body.curPos;
    
    str = rb_str_buf_new( n );
#if RUBY_API_VERSION_CODE < 20700
    OBJ_TAINT(str);
#endif
    
    if (n > 0)
    {
        rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n );
        s_body.curPos += n;
    }
    
    return str;
}

static VALUE lsapi_read(int argc, VALUE *argv, VALUE self)
{
    VALUE str;
    int n;
    int needRead;
    int nRead;
    
#if RUBY_API_VERSION_CODE < 20700
    if (rb_safe_level() >= 4 && !OBJ_TAINTED(self))
    {
        rb_raise(rb_eSecurityError, "Insecure: operation on untainted IO");
    }
#endif
    if (createBodyBuf() == 1)
    {
        return Qnil;
    }
    
    //we need to consider these 4 cases:
    //1, need all data since argc == 0, we may have all data 2, or not
    //3, need a length of data (argv >= 1), we may have enough data already read, 4, or not
    if (argc == 0)
        n = s_body.bodyLen - s_body.curPos;
    else
    {
        n = NUM2INT(argv[0]); //request that length from currentpos
        if (n < 0)
            return Qnil;
        if (n > s_body.bodyLen - s_body.curPos)
            n = s_body.bodyLen - s_body.curPos;            
    }
    needRead = s_body.curPos + n - s_body.bodyCurrentLen;
    if (needRead < 0)
        needRead = 0;
    
    str = rb_str_buf_new( n );
#if RUBY_API_VERSION_CODE < 20700
    OBJ_TAINT(str);
#endif
    if (n == 0)
        return str;
    
    //copy already have part first
    if (n - needRead != 0)
    {
        rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n - needRead);
        s_body.curPos += (n - needRead);
    }
    
    if (needRead > 0)
    {
        //try to read needRead, but may be less (changed) when read the end of the data
        nRead = readBodyBuf(needRead);
        if (nRead > 0)
        {
            n = ((nRead < needRead) ? nRead : needRead);
            rb_str_buf_cat( str, s_body.bodyBuf + s_body.curPos, n );
            s_body.curPos += n;
        }
    }
    
    return str;
}

static VALUE lsapi_rewind(VALUE self)
{  
    s_body.curPos = 0;
    return self;
}

static VALUE lsapi_each(VALUE self)
{
    VALUE str;
    lsapi_rewind(self);
   
    while(isEofBodyBuf() != 1)
    {
        str = lsapi_gets(self);
        rb_yield(str);
    }
    return self;

}

static VALUE lsapi_eof(VALUE self)
{
    return (LSAPI_GetReqBodyRemain_r( &g_req ) <= 0) ? Qtrue : Qfalse;
}

static VALUE lsapi_binmode(VALUE self)
{
    return self;
}

static VALUE lsapi_isatty(VALUE self)
{
    return Qfalse;
}

static VALUE lsapi_sync(VALUE self)
{
    return Qfalse;
}

static VALUE lsapi_setsync(VALUE self,VALUE sync)
{
    return Qfalse;
}

static VALUE lsapi_close(VALUE self)
{
    LSAPI_Flush_r( &g_req );
    if (isBodyWriteToFile())
    {
        //msync(s_body.bodyBuf, s_body.bodyLen, MS_SYNC);
        //sleep(5);
        munmap(s_body.bodyBuf, s_body.bodyLen);
    }
    else
        free(s_body.bodyBuf);
    
    s_body.bodyBuf = NULL;
    s_body.bodyLen = -1;
    s_body.bodyCurrentLen = 0;
    s_body.curPos = 0;    
    //Should the temp be deleted here?!
        
    return Qnil;
}


static VALUE lsapi_reopen( int argc, VALUE *argv, VALUE self)
{
    VALUE orig_verbose;
    if ( self == s_req_stderr )
    {
        /* constant silence hack */
        orig_verbose = (VALUE)ruby_verbose;
        ruby_verbose = Qnil;
        
        rb_define_global_const("STDERR", orig_stderr);
        
        ruby_verbose = (VALUE)orig_verbose;
        
        return rb_funcall2( orig_stderr, rb_intern( "reopen" ), argc, argv );
        
    }
    return self;
}

static void readMaxBodyBufLength()
{
    int n;
    const char *p = getenv( "LSAPI_MAX_BODYBUF_LENGTH" );
    if ( p )
    {
        n = atoi( p );
        if (n > 0)
        {
            if (strstr(p, "M") || strstr(p, "m"))
                MAX_BODYBUF_LENGTH = n * 1024 * 1024;
            else if (strstr(p, "K") || strstr(p, "k"))
                MAX_BODYBUF_LENGTH = n * 1024;
            else
                MAX_BODYBUF_LENGTH = n;
        }
    }
}

static void readTempFileTemplate()
{
    const char *p = getenv( "LSAPI_TEMPFILE" );
    if (p == NULL || strlen(p) > 1024 - 7)
         p = "/tmp/lsapi.XXXXXX";
    
    strcpy(sTempFile, p);
    if (strlen(p) <= 6 || strcmp(p + (strlen(p) - 6), "XXXXXX") != 0)
        strcat(sTempFile, ".XXXXXX");
}

static void initBodyBuf()
{
    s_body.bodyBuf = NULL;
    s_body.bodyLen = -1;
    s_body.bodyCurrentLen = 0;
    s_body.curPos = 0;    
}
void Init_lsapi()
{
    VALUE orig_verbose; 
    char * p;
    int prefork = 0;
    LSAPI_Init();
    initBodyBuf();
    
    readMaxBodyBufLength();
    readTempFileTemplate();
    
    p = getenv("LSAPI_CHILDREN");
    if (p && atoi(p) > 1)
        prefork = 1;

#ifdef rb_thread_select
    LSAPI_Init_Env_Parameters( rb_thread_select );
#else
    LSAPI_Init_Env_Parameters( select );
#endif
    
    s_pid = getpid();
    
    p = getenv( "RACK_ROOT" );
    if ( p )
    {
        if ( chdir( p ) == -1 )
            perror( "chdir()" );
    }
    if ( p || getenv( "RACK_ENV" ) )
        s_fn_add_env = add_env_rails;
    
    orig_stdin = rb_stdin;
    orig_stdout = rb_stdout;
    orig_stderr = rb_stderr;
#if defined( RUBY_VERSION_CODE ) && RUBY_VERSION_CODE < 180
    orig_defout = rb_defout;
#endif
    orig_env = rb_const_get( rb_cObject, rb_intern("ENV") );
    env_copy = rb_funcall( orig_env, rb_intern( "to_hash" ), 0 );
    
    /* tell the garbage collector it is a global variable, do not recycle it. */
    rb_global_variable(&env_copy);
    
    rb_hash_aset( env_copy,rb_tainted_str_new("GATEWAY_Irewindable_input.rbNTERFACE", 17),
                                              rb_tainted_str_new("CGI/1.2", 7));
        
    rb_define_global_function("eval_string_wrap", lsapi_eval_string_wrap, 1);
    
    cLSAPI = rb_define_class("LSAPI", rb_cObject);
    rb_define_singleton_method(cLSAPI, "accept", lsapi_s_accept, 0);
    if (prefork)
    {
        rb_define_singleton_method(cLSAPI, "accept_new_connection", lsapi_s_accept_new_conn, 0);
        rb_define_singleton_method(cLSAPI, "postfork_child", lsapi_s_postfork_child, 0);
        rb_define_singleton_method(cLSAPI, "postfork_parent", lsapi_s_postfork_parent, 0);
    }

    rb_define_method(cLSAPI, "process", lsapi_process, 0 );
    /* rb_define_method(cLSAPI, "initialize", lsapi_initialize, 0); */
    rb_define_method(cLSAPI, "putc", lsapi_putc, 1);
    rb_define_method(cLSAPI, "write", lsapi_write, 1);
    rb_define_method(cLSAPI, "print", lsapi_print, -1);
    rb_define_method(cLSAPI, "printf", lsapi_printf, -1);
    rb_define_method(cLSAPI, "puts", lsapi_puts, -1);
    rb_define_method(cLSAPI, "<<", lsapi_addstr, 1);
    rb_define_method(cLSAPI, "flush", lsapi_flush, 0);
    rb_define_method(cLSAPI, "getc", lsapi_getc, 0);
    /* rb_define_method(cLSAPI, "ungetc", lsapi_ungetc, 1); */
    rb_define_method(cLSAPI, "gets", lsapi_gets, 0);
    
    //TEST: adding readline function to make irb happy?
    /*rb_define_method(cLSAPI, "readline", lsapi_gets, 0); */
    
    rb_define_method(cLSAPI, "read", lsapi_read, -1);
    rb_define_method(cLSAPI, "rewind", lsapi_rewind, 0);
    rb_define_method(cLSAPI, "each", lsapi_each, 0);
    
    rb_define_method(cLSAPI, "eof", lsapi_eof, 0);
    rb_define_method(cLSAPI, "eof?", lsapi_eof, 0);
    rb_define_method(cLSAPI, "close", lsapi_close, 0);
    /* rb_define_method(cLSAPI, "closed?", lsapi_closed, 0); */
    rb_define_method(cLSAPI, "binmode", lsapi_binmode, 0);
    rb_define_method(cLSAPI, "isatty", lsapi_isatty, 0);
    rb_define_method(cLSAPI, "tty?", lsapi_isatty, 0);
    rb_define_method(cLSAPI, "sync", lsapi_sync, 0);
    rb_define_method(cLSAPI, "sync=", lsapi_setsync, 1);
    rb_define_method(cLSAPI, "reopen", lsapi_reopen, -1 );
    
    
    s_req = Data_Make_Struct( cLSAPI, lsapi_data, lsapi_mark, free, s_req_data );
    s_req_data->req = &g_req;
    s_req_data->fn_write = LSAPI_Write_r;
    rb_stdin = rb_stdout = s_req;
    
#if defined( RUBY_VERSION_CODE ) && RUBY_VERSION_CODE < 180
    rb_defout = s_req;
#endif

    rb_global_variable(&s_req );
    
    s_req_stderr = Data_Make_Struct( cLSAPI, lsapi_data, lsapi_mark, free, s_stderr_data );
    s_stderr_data->req = &g_req;
    s_stderr_data->fn_write = LSAPI_Write_Stderr_r;
    rb_stderr = s_req_stderr;
    rb_global_variable(&s_req_stderr );
    
    /* constant silence hack */
    orig_verbose = (VALUE)ruby_verbose;
    ruby_verbose = Qnil;
    
    lsapi_env = rb_hash_new();
    clear_env();
    /* redefine ENV using a hash table, should be faster than char **environment */
    rb_define_global_const("ENV", lsapi_env);
    
    rb_define_global_const("STDERR", rb_stderr);
    
    ruby_verbose = (VALUE)orig_verbose;
    
    return;
}

PKCH[��Y�/�/3share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.hnu�[���/*
Copyright (c) 2002-2018, Lite Speed Technologies Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the following
      disclaimer in the documentation and/or other materials provided
      with the distribution.
    * Neither the name of the Lite Speed Technologies Inc nor the
      names of its contributors may be used to endorse or promote
      products derived from this software without specific prior
      written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#ifndef  _LSAPILIB_H_
#define  _LSAPILIB_H_

#if defined (c_plusplus) || defined (__cplusplus)
extern "C" {
#endif

#include "lsapidef.h"

#include <stddef.h>
#include <sys/time.h>
#include <sys/types.h>

struct LSAPI_key_value_pair
{
    char * pKey;
    char * pValue;
    int    keyLen;
    int    valLen;
};

struct lsapi_child_status;
#define LSAPI_MAX_RESP_HEADERS  1000

typedef struct lsapi_request
{
    int               m_fdListen;
    int               m_fd;

    long              m_lLastActive;
    long              m_lReqBegin;

    char            * m_pReqBuf;
    int               m_reqBufSize;

    char            * m_pRespBuf;
    char            * m_pRespBufEnd;
    char            * m_pRespBufPos;

    char            * m_pRespHeaderBuf;
    char            * m_pRespHeaderBufEnd;
    char            * m_pRespHeaderBufPos;
    struct lsapi_child_status * child_status;


    struct iovec    * m_pIovec;
    struct iovec    * m_pIovecEnd;
    struct iovec    * m_pIovecCur;
    struct iovec    * m_pIovecToWrite;

    struct lsapi_packet_header      * m_respPktHeaderEnd;

    struct lsapi_req_header         * m_pHeader;
    struct LSAPI_key_value_pair     * m_pEnvList;
    struct LSAPI_key_value_pair     * m_pSpecialEnvList;
    int                               m_envListSize;
    int                               m_specialEnvListSize;

    struct lsapi_http_header_index  * m_pHeaderIndex;
    struct lsapi_header_offset      * m_pUnknownHeader;

    char            * m_pScriptFile;
    char            * m_pScriptName;
    char            * m_pQueryString;
    char            * m_pHttpHeader;
    char            * m_pRequestMethod;
    int               m_totalLen;
    int               m_reqState;
    off_t             m_reqBodyLen;
    off_t             m_reqBodyRead;
    int               m_bufProcessed;
    int               m_bufRead;

    struct lsapi_packet_header        m_respPktHeader[5];

    struct lsapi_resp_header          m_respHeader;
    short                             m_respHeaderLen[LSAPI_MAX_RESP_HEADERS];
    void            * m_pAppData;

}LSAPI_Request;

extern LSAPI_Request g_req;


/* return: >0 continue, ==0 stop, -1 failed  */
typedef int (*LSAPI_CB_EnvHandler )( const char * pKey, int keyLen,
                const char * pValue, int valLen, void * arg );


int LSAPI_Init(void);

void LSAPI_Stop(void);

int LSAPI_Is_Listen_r( LSAPI_Request * pReq);

int LSAPI_InitRequest( LSAPI_Request * pReq, int fd );

int LSAPI_Accept_r( LSAPI_Request * pReq );

void LSAPI_Reset_r( LSAPI_Request * pReq );

int LSAPI_Finish_r( LSAPI_Request * pReq );

int LSAPI_Release_r( LSAPI_Request * pReq );

char * LSAPI_GetHeader_r( LSAPI_Request * pReq, int headerIndex );

int LSAPI_ForeachHeader_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg );

int LSAPI_ForeachOrgHeader_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg );

int LSAPI_ForeachEnv_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg );

int LSAPI_ForeachSpecialEnv_r( LSAPI_Request * pReq,
            LSAPI_CB_EnvHandler fn, void * arg );

char * LSAPI_GetEnv_r( LSAPI_Request * pReq, const char * name );

ssize_t LSAPI_ReadReqBody_r( LSAPI_Request * pReq, char * pBuf, size_t len );

int LSAPI_ReqBodyGetChar_r( LSAPI_Request * pReq );

int LSAPI_ReqBodyGetLine_r( LSAPI_Request * pReq, char * pBuf, size_t bufLen, int *getLF );


int LSAPI_FinalizeRespHeaders_r( LSAPI_Request * pReq );

ssize_t LSAPI_Write_r( LSAPI_Request * pReq, const char * pBuf, size_t len );

ssize_t LSAPI_sendfile_r( LSAPI_Request * pReq, int fdIn, off_t* off, size_t size );

ssize_t LSAPI_Write_Stderr_r( LSAPI_Request * pReq, const char * pBuf, size_t len );

int LSAPI_Flush_r( LSAPI_Request * pReq );

int LSAPI_AppendRespHeader_r( LSAPI_Request * pReq, const char * pBuf, int len );

int LSAPI_AppendRespHeader2_r( LSAPI_Request * pReq, const char * pHeaderName,
                              const char * pHeaderValue );

int LSAPI_ErrResponse_r( LSAPI_Request * pReq, int code, const char ** pRespHeaders,
                         const char * pBody, int bodyLen );

static inline int LSAPI_SetRespStatus_r( LSAPI_Request * pReq, int code )
{
    if ( !pReq )
        return -1;
    pReq->m_respHeader.m_respInfo.m_status = code;
    return 0;
}

static inline int LSAPI_SetAppData_r( LSAPI_Request * pReq, void * data )
{
    if ( !pReq )
        return -1;
    pReq->m_pAppData = data;
    return 0;
}

static inline void * LSAPI_GetAppData_r( LSAPI_Request * pReq )
{
    if ( !pReq )
        return NULL;
    return pReq->m_pAppData;
}

static inline char * LSAPI_GetQueryString_r( LSAPI_Request * pReq )
{
    if ( pReq )
        return pReq->m_pQueryString;
    return NULL;
}


static inline char * LSAPI_GetScriptFileName_r( LSAPI_Request * pReq )
{
    if ( pReq )
        return pReq->m_pScriptFile;
    return NULL;
}


static inline char * LSAPI_GetScriptName_r( LSAPI_Request * pReq )
{
    if ( pReq )
        return pReq->m_pScriptName;
    return NULL;
}


static inline char * LSAPI_GetRequestMethod_r( LSAPI_Request * pReq)
{
    if ( pReq )
        return pReq->m_pRequestMethod;
    return NULL;
}



static inline off_t LSAPI_GetReqBodyLen_r( LSAPI_Request * pReq )
{
    if ( pReq )
        return pReq->m_reqBodyLen;
    return -1;
}

static inline off_t LSAPI_GetReqBodyRemain_r( LSAPI_Request * pReq )
{
    if ( pReq )
        return pReq->m_reqBodyLen - pReq->m_reqBodyRead;
    return -1;
}


int LSAPI_End_Response_r(LSAPI_Request * pReq);



int LSAPI_Is_Listen(void);

static inline int LSAPI_Accept( void )
{   return LSAPI_Accept_r( &g_req );                        }

static inline int LSAPI_Finish(void)
{   return LSAPI_Finish_r( &g_req );                        }

static inline char * LSAPI_GetHeader( int headerIndex )
{   return LSAPI_GetHeader_r( &g_req, headerIndex );        }

static inline int LSAPI_ForeachHeader( LSAPI_CB_EnvHandler fn, void * arg )
{   return LSAPI_ForeachHeader_r( &g_req, fn, arg );        }

static inline int LSAPI_ForeachOrgHeader(
            LSAPI_CB_EnvHandler fn, void * arg )
{   return LSAPI_ForeachOrgHeader_r( &g_req, fn, arg );     }

static inline int LSAPI_ForeachEnv( LSAPI_CB_EnvHandler fn, void * arg )
{   return LSAPI_ForeachEnv_r( &g_req, fn, arg );           }

static inline int LSAPI_ForeachSpecialEnv( LSAPI_CB_EnvHandler fn, void * arg )
{   return LSAPI_ForeachSpecialEnv_r( &g_req, fn, arg );    }

static inline char * LSAPI_GetEnv( const char * name )
{   return LSAPI_GetEnv_r( &g_req, name );                  }

static inline char * LSAPI_GetQueryString(void)
{   return LSAPI_GetQueryString_r( &g_req );                }

static inline char * LSAPI_GetScriptFileName(void)
{   return LSAPI_GetScriptFileName_r( &g_req );             }

static inline char * LSAPI_GetScriptName(void)
{    return LSAPI_GetScriptName_r( &g_req );                }

static inline char * LSAPI_GetRequestMethod(void)
{   return LSAPI_GetRequestMethod_r( &g_req );              }

static inline off_t LSAPI_GetReqBodyLen(void)
{   return LSAPI_GetReqBodyLen_r( &g_req );                 }

static inline off_t LSAPI_GetReqBodyRemain(void)
{   return LSAPI_GetReqBodyRemain_r( &g_req );                 }

static inline ssize_t LSAPI_ReadReqBody( char * pBuf, size_t len )
{   return LSAPI_ReadReqBody_r( &g_req, pBuf, len );        }

static inline int LSAPI_ReqBodyGetChar(void)
{   return LSAPI_ReqBodyGetChar_r( &g_req );        }

static inline int LSAPI_ReqBodyGetLine( char * pBuf, int len, int *getLF )
{   return LSAPI_ReqBodyGetLine_r( &g_req, pBuf, len, getLF );        }



static inline int LSAPI_FinalizeRespHeaders(void)
{   return LSAPI_FinalizeRespHeaders_r( &g_req );           }

static inline ssize_t LSAPI_Write( const char * pBuf, ssize_t len )
{   return LSAPI_Write_r( &g_req, pBuf, len );              }

static inline ssize_t LSAPI_sendfile( int fdIn, off_t* off, size_t size )
{
    return LSAPI_sendfile_r(&g_req, fdIn, off, size );
}

static inline ssize_t LSAPI_Write_Stderr( const char * pBuf, ssize_t len )
{   return LSAPI_Write_Stderr_r( &g_req, pBuf, len );       }

static inline int LSAPI_Flush(void)
{   return LSAPI_Flush_r( &g_req );                         }

static inline int LSAPI_AppendRespHeader( char * pBuf, int len )
{   return LSAPI_AppendRespHeader_r( &g_req, pBuf, len );   }

static inline int LSAPI_SetRespStatus( int code )
{   return LSAPI_SetRespStatus_r( &g_req, code );           }

static inline int LSAPI_ErrResponse( int code, const char ** pRespHeaders, const char * pBody, int bodyLen )
{   return LSAPI_ErrResponse_r( &g_req, code, pRespHeaders, pBody, bodyLen );   }

static inline int LSAPI_End_Response(void)
{   return LSAPI_End_Response_r( &g_req );                         }

int LSAPI_IsRunning(void);

int LSAPI_CreateListenSock( const char * pBind, int backlog );

typedef int (*fn_select_t)( int, fd_set *, fd_set *, fd_set *, struct timeval * );

int LSAPI_Init_Prefork_Server( int max_children, fn_select_t fp, int avoidFork );

void LSAPI_Set_Server_fd( int fd );

int LSAPI_Prefork_Accept_r( LSAPI_Request * pReq );

void LSAPI_No_Check_ppid(void);

void LSAPI_Set_Max_Reqs( int reqs );

void LSAPI_Set_Max_Idle( int secs );

void LSAPI_Set_Max_Children( int maxChildren );

void LSAPI_Set_Max_Idle_Children( int maxIdleChld );

void LSAPI_Set_Server_Max_Idle_Secs( int serverMaxIdle );

void LSAPI_Set_Max_Process_Time( int secs );

int LSAPI_Init_Env_Parameters( fn_select_t fp );

void LSAPI_Set_Slow_Req_Msecs( int msecs );

int  LSAPI_Get_Slow_Req_Msecs(void);

int LSAPI_is_suEXEC_Daemon(void);

int LSAPI_Set_Restored_Parent_Pid(int pid);

typedef void (*LSAPI_On_Timer_pf)(int *forked_child_pid);
void LSAPI_Register_Pgrp_Timer_Callback(LSAPI_On_Timer_pf);

int LSAPI_Inc_Req_Processed(int cnt);

int LSAPI_Accept_Before_Fork(LSAPI_Request * pReq);

int LSAPI_Postfork_Child(LSAPI_Request * pReq);

int LSAPI_Postfork_Parent(LSAPI_Request * pReq);

#define LSAPI_LOG_LEVEL_BITS    0xff
#define LSAPI_LOG_FLAG_NONE     0
#define LSAPI_LOG_FLAG_DEBUG    1
#define LSAPI_LOG_FLAG_INFO     2
#define LSAPI_LOG_FLAG_NOTICE   3
#define LSAPI_LOG_FLAG_WARN     4
#define LSAPI_LOG_FLAG_ERROR    5
#define LSAPI_LOG_FLAG_CRIT     6
#define LSAPI_LOG_FLAG_FATAL    7

#define LSAPI_LOG_TIMESTAMP_BITS (0xff00)
#define LSAPI_LOG_TIMESTAMP_FULL (0x100)
#define LSAPI_LOG_TIMESTAMP_HMS  (0x200)
#define LSAPI_LOG_TIMESTAMP_STDERR  (0x400)

#define LSAPI_LOG_PID            (0x10000)

void LSAPI_Log(int flag, const char * fmt, ...)
#if __GNUC__
        __attribute__((format(printf, 2, 3)))
#endif
;


#if defined (c_plusplus) || defined (__cplusplus)
}
#endif


#endif







PKCH[�7Zw��3share/gems/gems/ruby-lsapi-5.6/ext/lsapi/extconf.rbnu�[���require 'mkmf'
dir_config( 'lsapi' )
if ( have_library( "socket" ))
    have_library( "nsl" )
end
if RUBY_VERSION =~ /1.9/ then
    $CPPFLAGS += " -DRUBY_19"
end 
if RUBY_VERSION =~ /2/ then
    $CPPFLAGS += " -DRUBY_2"
end 
create_makefile( "lsapi" )
PKCH[��Լ#�#1share/gems/gems/ruby-lsapi-5.6/ext/lsapi/Makefilenu�[���
SHELL = /bin/sh

# V=0 quiet, V=1 verbose.  other values don't work.
V = 1
Q1 = $(V:1=)
Q = $(Q1:0=@)
ECHO1 = $(V:1=@ :)
ECHO = $(ECHO1:0=@ echo)
NULLCMD = :

#### Start of system configuration section. ####

srcdir = .
topdir = /opt/alt/ruby27/include
hdrdir = $(topdir)
arch_hdrdir = /opt/alt/ruby27/include
PATH_SEPARATOR = :
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
prefix = $(DESTDIR)/opt/alt/ruby27
rubysitearchprefix = $(sitearchlibdir)/$(RUBY_BASE_NAME)
rubyarchprefix = $(DESTDIR)/opt/alt/ruby27/lib64/ruby
rubylibprefix = $(exec_prefix)/share/ruby
exec_prefix = $(DESTDIR)/opt/alt/ruby27
vendorarchhdrdir = $(sitearchincludedir)/$(RUBY_VERSION_NAME)/vendor_ruby
sitearchhdrdir = $(sitearchincludedir)/$(RUBY_VERSION_NAME)/site_ruby
rubyarchhdrdir = $(DESTDIR)/opt/alt/ruby27/include
vendorhdrdir = $(rubyhdrdir)/vendor_ruby
sitehdrdir = $(rubyhdrdir)/site_ruby
rubyhdrdir = $(DESTDIR)/opt/alt/ruby27/include
rubygemsdir = $(DESTDIR)/opt/alt/ruby27/share/rubygems
vendorarchdir = $(DESTDIR)/opt/alt/ruby27/lib64/ruby/vendor_ruby
vendorlibdir = $(vendordir)
vendordir = $(DESTDIR)/opt/alt/ruby27/share/ruby/vendor_ruby
sitearchdir = $(DESTDIR)./.gem.20240125-1057677-d8ce1y
sitelibdir = $(DESTDIR)./.gem.20240125-1057677-d8ce1y
sitedir = $(DESTDIR)/opt/alt/ruby27/share/ruby/site_ruby
rubyarchdir = $(rubyarchprefix)
rubylibdir = $(rubylibprefix)
sitearchincludedir = $(includedir)/$(sitearch)
archincludedir = $(includedir)/$(arch)
sitearchlibdir = $(libdir)/$(sitearch)
archlibdir = $(DESTDIR)/opt/alt/ruby27/lib64
ridir = $(datarootdir)/$(RI_BASE_NAME)
mandir = $(DESTDIR)/opt/alt/ruby27/share/man
localedir = $(datarootdir)/locale
libdir = $(exec_prefix)/lib64
psdir = $(docdir)
pdfdir = $(docdir)
dvidir = $(docdir)
htmldir = $(docdir)
infodir = $(DESTDIR)/opt/alt/ruby27/share/info
docdir = $(datarootdir)/doc/$(PACKAGE)
oldincludedir = $(DESTDIR)/usr/include
includedir = $(DESTDIR)/opt/alt/ruby27/include
localstatedir = $(DESTDIR)/var
sharedstatedir = $(DESTDIR)/var/lib
sysconfdir = $(DESTDIR)/etc
datadir = $(DESTDIR)/opt/alt/ruby27/share
datarootdir = $(prefix)/share
libexecdir = $(DESTDIR)/opt/alt/ruby27/libexec
sbindir = $(DESTDIR)/opt/alt/ruby27/sbin
bindir = $(exec_prefix)/bin
archdir = $(rubyarchdir)


CC_WRAPPER = 
CC = gcc
CXX = g++
LIBRUBY = $(LIBRUBY_SO)
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
LIBRUBYARG_SHARED = -Wl,-rpath,$(archlibdir) -L$(archlibdir) -l$(RUBY_SO_NAME)
LIBRUBYARG_STATIC = -Wl,-rpath,$(archlibdir) -L$(archlibdir) -l$(RUBY_SO_NAME)-static $(MAINLIBS)
empty =
OUTFLAG = -o $(empty)
COUTFLAG = -o $(empty)
CSRCFLAG = $(empty)

RUBY_EXTCONF_H = 
cflags   = $(optflags) $(debugflags) $(warnflags)
cxxflags = 
optflags = -O3
debugflags = -ggdb3
warnflags = -Wall -Wextra -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable
cppflags = 
CCDLFLAGS = -fPIC
CFLAGS   = $(CCDLFLAGS) -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection $(ARCH_FLAG)
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
DEFS     = 
CPPFLAGS =   $(DEFS) $(cppflags) -DRUBY_2
CXXFLAGS = $(CCDLFLAGS) -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection $(ARCH_FLAG)
ldflags  = -L.  -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64 -fstack-protector-strong -rdynamic -Wl,-export-dynamic
dldflags =  -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64 
ARCH_FLAG = -m64
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
LDSHARED = $(CC) -shared
LDSHAREDXX = $(CXX) -shared
AR = ar
EXEEXT = 

RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
RUBY_SO_NAME = ruby
RUBYW_INSTALL_NAME = 
RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version_dir_name)
RUBYW_BASE_NAME = rubyw
RUBY_BASE_NAME = ruby

arch = x86_64-linux
sitearch = $(arch)
ruby_version = 2.7.0
ruby = $(bindir)/$(RUBY_BASE_NAME)
RUBY = $(ruby)
BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h

RM = rm -f
RM_RF = $(RUBY) -run -e rm -- -rf
RMDIRS = rmdir --ignore-fail-on-non-empty -p
MAKEDIRS = /usr/bin/mkdir -p
INSTALL = /usr/bin/install -c
INSTALL_PROG = $(INSTALL) -m 0755
INSTALL_DATA = $(INSTALL) -m 644
COPY = cp
TOUCH = exit >

#### End of system configuration section. ####

preload = 
libpath = . $(archlibdir)
LIBPATH =  -L. -L$(archlibdir) -Wl,-rpath,$(archlibdir)
DEFFILE = 

CLEANFILES = mkmf.log
DISTCLEANFILES = 
DISTCLEANDIRS = 

extout = 
extout_prefix = 
target_prefix = 
LOCAL_LIBS = 
LIBS = $(LIBRUBYARG_SHARED)  -lm   -lc
ORIG_SRCS = lsapilib.c lsruby.c
SRCS = $(ORIG_SRCS) 
OBJS = lsapilib.o lsruby.o
HDRS = $(srcdir)/lsapidef.h $(srcdir)/lsapilib.h
LOCAL_HDRS = 
TARGET = lsapi
TARGET_NAME = lsapi
TARGET_ENTRY = Init_$(TARGET_NAME)
DLLIB = $(TARGET).so
EXTSTATIC = 
STATIC_LIB = 

TIMESTAMP_DIR = .
BINDIR        = $(bindir)
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
RUBYLIBDIR    = $(sitelibdir)$(target_prefix)
RUBYARCHDIR   = $(sitearchdir)$(target_prefix)
HDRDIR        = $(rubyhdrdir)/ruby$(target_prefix)
ARCHHDRDIR    = $(rubyhdrdir)/$(arch)/ruby$(target_prefix)
TARGET_SO_DIR =
TARGET_SO     = $(TARGET_SO_DIR)$(DLLIB)
CLEANLIBS     = $(TARGET_SO) 
CLEANOBJS     = *.o  *.bak

all:    $(DLLIB)
static: $(STATIC_LIB)
.PHONY: all install static install-so install-rb
.PHONY: clean clean-so clean-static clean-rb

clean-static::
clean-rb-default::
clean-rb::
clean-so::
clean: clean-so clean-static clean-rb-default clean-rb
		-$(Q)$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time

distclean-rb-default::
distclean-rb::
distclean-so::
distclean-static::
distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
		-$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
		-$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
		-$(Q)$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true

realclean: distclean
install: install-so install-rb

install-so: $(DLLIB) $(TIMESTAMP_DIR)/.sitearchdir.time
	$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
clean-static::
	-$(Q)$(RM) $(STATIC_LIB)
install-rb: pre-install-rb do-install-rb install-rb-default
install-rb-default: pre-install-rb-default do-install-rb-default
pre-install-rb: Makefile
pre-install-rb-default: Makefile
do-install-rb:
do-install-rb-default:
pre-install-rb-default:
	@$(NULLCMD)
$(TIMESTAMP_DIR)/.sitearchdir.time:
	$(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
	$(Q) $(TOUCH) $@

site-install: site-install-so site-install-rb
site-install-so: install-so
site-install-rb: install-rb

.SUFFIXES: .c .m .cc .mm .cxx .cpp .o .S

.cc.o:
	$(ECHO) compiling $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.cc.S:
	$(ECHO) translating $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

.mm.o:
	$(ECHO) compiling $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.mm.S:
	$(ECHO) translating $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

.cxx.o:
	$(ECHO) compiling $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.cxx.S:
	$(ECHO) translating $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

.cpp.o:
	$(ECHO) compiling $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.cpp.S:
	$(ECHO) translating $(<)
	$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

.c.o:
	$(ECHO) compiling $(<)
	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.c.S:
	$(ECHO) translating $(<)
	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

.m.o:
	$(ECHO) compiling $(<)
	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<

.m.S:
	$(ECHO) translating $(<)
	$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<

$(TARGET_SO): $(OBJS) Makefile
	$(ECHO) linking shared-object $(DLLIB)
	-$(Q)$(RM) $(@)
	$(Q) $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)



$(OBJS): $(HDRS) $(ruby_headers)
PKCH[4�����1share/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsruby.onu�[���ELF>��@@98

,.+/*0)1����fD���H���ff.���H�H���H+���H���HO��D��H������1��f���1��f���ATI��H��US��Hc��Hc�L��H���H�=H��H���[�]A\�ff.�H��H�5dH�%(H�D$1�H�H�$H��t-H�=H���H�D$dH3%(u&H���@�H�=�H��H���fD��H����H��H�=��H���f���H��H�=�Hc5;5H�=|6�H������H���H���fD���f����?��I�H�=���H���H+��9�M�1���~+H��Hc�Hc5H5���~H���f��ff.�@��H��H�=����tH�H��H�D��H���ff.���UH��SH��H���H�m ��t]��uaH��H���H��tT�؃���tJ��tEH�H�؉у���u5H�M�� u@H��H�p��H�}��H��H�[]H�D�@H�����u�H���H�MH��� t�H�PH�p�f���SH���C���H��[�ff.���SH���H��H�������[Ð��H��H�=�H�H�����H��H�=�H�H�����H��H�=�����tH�H��H�����USH��H�=�������H�=H��t�H������H���9t H�5�H��t[1�1ҿ�1�H��?���H�-H�;H��H�u�H�uH�;H���H�H��H��[]�f��H�=�H��H����SH��H�\$H�t$H���H���1�H���H��[�ff.�f���AWAVAUA��ATI��U��SH��H���<Q��~v<R��<Su"�H�=H���������@Mc�L��L���Hc�H��I���H�=L��H���H���[]A\A]A^A_�fD<Pu��
H�=H�������u��ƀULc�u��H�=H��������t����?H���I��H���H��A��L)�A)�Mc�H��L��H�L$��	H�=H�$�H�$H�=H���H�L$L��H����H�=H�$�H�$H�=H���1�A�??L����I�L����H�=I���H�=L��H������fD�
H�=H��������r����:�i������@A�L�%�Q���fDO�<4L��E1������H9tH����ATUH��S���L� �H�5H�=H���H�5L� H��tH�=H���[]A\���H�=�H��H���ff.��=�t1��@H�H����=����t�USH��;=��H�=�H��H����Ń����H���H���Hc��H�������E1�A���H��1��H�H��������1�H��[]�f.�Hc���H�H��u�H�=����@�1��H�=������fD��8�H�پH�I��H�H�81��H�����N���H�=������1���f���AU1�ATUH��S��H���V������������-��+Hc�D�%�I�Ņ�t"D)�A�DI�D9�uD���������H��L��[]A\A]ÐD)�Hc5H��H5Hc�����H��L��[]A\A]�@H�}@��u&���xU�-�)�9�O���T�����ؐD9�Hc5L��DN�H5Ic��D%�U���@H��A�[L��]A\A]�ff.��AWAVL�5AUATUSH���f�D9-~N����D�-M�&�H�Hc=D��)�I��L�Hc�H���H��t�L)�D)��XHc�H���I�ą�~Hc5H��H5H���H��L��[]A\A]A^A_�f���H��1��a�����tH���#����H���fD���SH������2f����H����9}1������uٿ��f�H��[�ff.���AUATUH��SH��dH�%(H�D$1�����H��E1�I���G@H����I9�}HH���H��uj�� tUH�CJ��H��L��I��H�$�H��� u�H�CI9�|�H�L$dH3%(�uVH��[]A\A]�@H�C �f.�H���H���H�=�H��H��H�$���@��1��f���UH��SH��H��dH�%(H�D$1���u;H�����t2H��ƒ���u%�� tH�{~H�S��H�S��u�DH���uX��H��D$�H�E H�t$�H�8�PH��H�����HD�H�L$dH3%(uH��[]�����@��AVAUATUSH�Ӆ�����G�I��L�%H�l��R�@��uj������t`H��tZ@��tTH��4tN�������H��H��H�=�����I��L9�tpI�}@��u�H�����u�H��tqH��u���H��I��H����I��� u]H��I�V��H���<
t�H�H��I��H�0���L9�u�[�]A\A]A^����u�L���H��뉐I�FI�VH���f�H�H��H�0�n�[�]A\A]A^���AVAUATUH��SH��dH�%(H�D$1������I��H�6A���L�5�w���@����H��H���H��tw����to@��ti�����u_�L���H��H�����A9�~OH�H�0H��tH����I�t�H��@��u�H�����u�H��t�H��u��H���x�A9��H�H�0H��tH���[�H�L$dH3%(�u0H��[]A\A]A^�f��I��A�H��H�$������AUATUSH��������H�=H�H���H��t8�
1�H��H���H��~�MH���H�������-H�=�H��H��tH���H��H=���Xfof�)H�=1��H��t1��
H��1����@��H�=��H�=��H����H��������H�H�g�H�H�H�5H�H�H���CL�%I�<$�H�5H�H����1�1�H���H�=H���H�=��H�=I���H�=L��H����H�5z�H�=�I�4$H�=�1�H�e�H�5H��H������H�=1�H�'�H�5�H�=�H�8���H�5�H�=�H���H�5�H�=�����H����H�5�H�=�����H�+�H�5�H�=�����H�����H�5�H�=�H���H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H�����H�5�H�=�����H�����H�5�H�=1�H���H�5�H�=1�H�����H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H���H�5�H�=1�H����H�5�H�=�H�_�H�5�H�=�����H� �H�5�L�%H�=�H���L���H�-H�
H�=H�P H�H�JH�*H�H�H�H�H��H�=L��H����H�
H�=H�P H�H�JH�*H���H�(�H��H�1���H�5H�=�H�3H�=��H�(H��[]A\A]�@H�P�H��H�=�H��wH�H�.XXXXXXH�(����H�t+��H�=�����u�����H�=1�H��H�5�H�=1�H���H�5�H�=1�H���H�5������H�=�H��H�H������H�=�H��H����H�=��Z����H�=�H���>����J���fD�mH���H���f����KH���H��t��
�-�O����kH���H��u�-�2����GA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realign
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignGA$3p1113GA$running gcc 8.5.0 20210514GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA*GOW*�GA*GA+stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA+omit_frame_pointerGA*GA!stack_realignreplacesrand/QUERY_STRINGREQUEST_URIPATH_INFOREQUEST_PATHSCRIPT_NAMESTDERRreopen%s: %s
ftruncate() failed. 
File mapping failed. 
Memory calloc error
[...]nilLSAPI_MAX_BODYBUF_LENGTHLSAPI_TEMPFILEXXXXXXLSAPI_CHILDRENRACK_ROOTchdir()ENVto_hashCGI/1.2eval_string_wrapLSAPIacceptaccept_new_connectionpostfork_childpostfork_parentprocessputcwriteprintprintfputs<<flushgetcgetsreadrewindeacheofeof?closebinmodeisattytty?syncsync=RACK_ENVGATEWAY_Irewindable_input.rbNTERFACE/tmp/lsapi.XXXXX�F��9%I'P(�int�)@�����������	��
9�	1�	3�	6	�	7	�	8	�	9	� 	:	�(	;	�0	<	�8	=	�@	@	�H	A	�P	B	�X	D�`	F�h	H�p	I�t	J�x	MP�	NW�	O��	Q��	Y
��	[��	\��	]��	^	G�	_
-�	`��	b��
�
	+��	��
9���	��
9���?�M������	�UJU�U
a�}^q���!�$�2�7�;��f9:IDg9@��4@�b	

�I  @`� @� @� @����x@v#�w:xF@��@��  :@�5 �  �Z���	:��len��ptr��aux�5���Zary��	��
9(���as��@2 �W�$F�len�aux%2ptr&�F�'Wary(�	F�
9�(�as)�(sA	tuL	vL	wG  L	!GA	"�L	�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:::::::::	:
:::
::::::::::::::::::: :!:":#:%:&:':(:*:,:,:,(:G:H:I:J:K:�:	�
9�
7	�89:;�<=>#@,	

$q=%s�%t�k�m
�n
�o
�p
�u,�� =�
��
��
��
��
��
��
� �
�$�
�(��D�D�
T4	�T
9	�d
9���
��
��
��
����
��
����"=�"�46	�7	��/k1�2�3�4�&	:�<�=�?�@�B�C� E�(F�0G�8I�@J�HK�PL!�XO�`P�hQ�pR�xT'��V'��W'��X'��Y'��Z'��\'��]'��_��`��a��b��c��d��e��f��g��h��i��'k'�'m'�('n'�8'oG	��G-�=�)d	=�
9	j�(9�qks�)�?!�!�!�!�!G-�.�P���W�
�c	��
9
c��������������A�W��������F*�W��T�QQ�������������

)�4�?�J�U�`Ak�v���������$���!�{�$�$%�
$%�4%�D	�4
9	�D
9	�T
9�o�	�T�o�o	I�
9	��
9@���+":+#:,$:	,(:	,*:	,,:	,.�	9�-req;�-env<:=��)�!�!�!-�>Q,@:	,B:	,C�	�,E:	+F�,G~	IyK�L�M�N�O7,Qy		��(9�,R
�	�.��	/4K��$06:1p7�08	�2�3Z*K	4�C5U	5T320[�6[�$0[�23[K	4�C5U	5T74�C5Q05R02`0�
:4�C5TH5Q	5R|2�0�:4�C5TH5Q	5R|7	%:8-%<�9:;%:F%8/:
:;A:4�C5Us5T05Q:<�CY5U	<�Cw5Us5TM<�C�5Us5Tm<�C�5Us5TK4�C5Us5Tk8%=�9:!%8:(^;":;:4�C5U	5Ts5Qv5R
=�9*	�;�9;�9<�C�5U	4�C5Us8/:@;A:4�C5T05Q:>D<�C@5U	>D>$D<�Cy5U	>1D>>D<KD�5U	<XD�5U	5T7<XD�5U	5TA<eD5Q}??5U	5T	5Q1<rD^5U	?�5T	5Q	5R0?�5T	5Q	5R0?�5T	5Q	5R1? 5T	5Q	5R1?@ 5T	5Q	5R	�?n 5T	5Q	5R	�?� 5T	5Q	5R	�?� 5T	5Q	5R1?� 5T	5Q	5R0?#!5T	5Q	5R0?P!5T	5Q	5R0?~!5T	5Q	5R	�?�!5T	5Q	5R0?�!5T	5Q	5R0?"5T	5Q	5R0?2"5T	5Q	5R0?_"5T	5Q	5R0?�"5T	5Q	5R0?�"5T	5Q	5R0?�"5T	5Q	5R0?#5T	5Q	5R0?@#5T	5Q	5R1?n#5T	5Q	5R	�<KD�#5U	<KD�#5U	>D>D>�D>b4<�D�#5U	<�D$5U	>D?X$5T	5Q	5R0?�$5T	5Q	5R0?�$5T	5Q	5R0<�D�$5U	4�C5U		F�$@%�$A-
B"
-%Cp$�B
R%Cn	�Cp�D�:�%E� �E�-�E�9:6�:F3	*K	G�:g�4&H� :Iw+�	>�D>�D>�DG�:�v&J�":UJ�-:TK�:�&E�:D�:�&E�!:G�:��&J�":UG�:+�C'J�:UL�8�
M�8G�:U�a(H�:1str�:=a(
��';s(7+�8�)�S(;*9N*:+*N8*:C*<�>D(O*s>,+>�DD�:�(E�!:Gy:4��)Hy�Hy*�Hy6:1str{:1n|	�0}	�0~	�8�9�
w);�9>�D>�D>,+<�D�)5Us $ &<O*�)5U|<E�)5U}5Qs $ &4E5U}5Q| $ &DJ:O*EJ :CstrL:6M�CnN	�CpO�G5�a�+H5"�P7� 08�09	�0:	�6;	�8�8;+M�8>EQ0�Q+�R��K+Cfd�	�R��w+Cfd�	�Csfn��Q��G�:2��+H� :1ch�	�>%EG�:�%,H�!:>�DG�:��,Sout�!:Sstr�,:4/5Us5T�TD�:�,E��E�*�Tout�6:Ci�	�6�:Dl:2-Taryl#:Toutl.:El7�Ctmpn:Cio
�Gc:��-Hc�Hc,�Soutc8:<1E�-5U�U5T�T4/5UsG?:O�/H?�H?,�Sout?8:1iA	�3B:�@8'9Qv.;99<XD�.5U~5T3</�.5Uv</�.5Uv</�.5Uv</�.5Uv>>E>KEU3:��0H3!:Sstr3-:05�1len6	�8�97�/;�94TE5Uv5T<8'99	�/;994aE5UsG':��K1H':Sc'+:Vch)
��W0*�8G9)�0;Y9W�9f;�9<�D�05Us>�D8�9+$1;�94TE5Uv5T<?=15T�W5Q1>KEG:
�~1J#:UG:3�2H+:Sstr7:<nE�15Us<{E�15Us4�E5T0X�: �S2Y�,:>�EX�: ��2Y�+:>�EX�:-��2Y�,:>�EX�:��H4Y�$:Zpid�	�2�3[�
�+�
�$[�
�2�3,�
K	4�C5U	5T54�C5U85Q05R0\H4�	 4;U4>b4<�E45Qs4�E5Qs>�E>�D>$D]�
b4^�)�_�
z�525`��,�*5�``��2�4,�K	4�C5U	5T74�C5Q15Rw>KE	F*5
95X��B�6Y�)�Y�3�Y�H�Y�T�aarg�#G<�E�55U�Q5T	�R $ &<�E�55U|5Ts $ &4eD5QvXk��B8Yk(�Yk2�YkG�YkS�aargl"GZpn�bleno	�<�E�65U|5T~<�E�65Us5Tv $ &<eD75Q|<�E175U|5T?<�EQ75U|5T��<XDu75U	5T9<eD�75Qw<�E�75U|5T��<XD�75U	5T<<eD�75Qw<�E	85U5T}<XD-85U	5T<4eD5Q}ca

��8Ya&�d�Ee���8^�?�e���8^�<�D���8Ta�:f�
!:D��	9Ta�$:Dy�'9Tay:D?�G9Tobj?:Da�e9Txa:D�:�9Tx�:E��E�C�D�G�9Tobj�:D���9Tx�:g��:^��^��g\�/:^\�^\�hi�O:Ei�gd�z:^d!^d<�ija(��:ks(Uj�&��:k�&UjR%���;;d%;q%;~%N�%WR%�;~%;q%;d%9:�%l�%�;4�C5U	5T6>D>D<�D�;5U	>Dm�C5Q�U5R�Tj,+���>n>+=�8�6<M�8Iw+8,+��>9:>+8K+�=9:]+:i+8O:�	=;l:;`:4F5T15Q	5Rs<F7=5U	<FO=5Us<,Fg=5Us<�D=5Us>9F>EF4�D5Us<RF�=5Uv5Ts<_F�=5U05Ts5Q35R15Xv5Y0<kF>5Uv<�D6>5U	<kFN>5Uv<�Dm>5U	4kF5Uv<xF�>5T14�D5U	j�)���?:*N+*:8*:C*;*I+_
<O*E?5U
<�Fx?5U|"5Tv5Q	5R1<�D�?5Uv4E5U|5Qvj�)*�@;*N*o+*N8*pC*>,+m�>O*�Uj�,��;B;�,;�,;-q-�@:&-8	9w�@;9=e9y�@;�9;�9;w94�F5Us8�8yZA;�898�8�DA;�84�F5Us=�,'l
B;�,;-;�,r'q-�@N&-<XD�A5U	5T54�F5U15Tw5Qv<�F-B5U15Tw5Qv>KEj�,P��C;�,;�,;�,N�,N�,s�,�qCM�,M�,M�,9:�,:�,8'9��B;99<�FC5U	5Qs>aE</>C5Us5T~</VC5Us4XD5U|5T34/5Usttet�u�twvw�/tmp/lsapi.XXXXXXvw
�.XXXXXXt�u{tnttt�t�ttt7t�t�t0t
t

u�uLt3
t�t�t�t�t$u�	u�t�t�xtRttVtWtct�tt}u�u�t^t�u�tuZu Dt�t9u%
t�t�u9tattqw�	lsruby.ct�t�tYt�%:;9I$>$>&II7I	I
!I/:;9
:;9I8
:;9<4:;9I?<!4:;9I?<:;9I>I:;9((((
�:;9
:;9I8:;9
:;9I:;9
:;9I8
:;9I
:;9I�8 '!I":;9I#>I:;9$:;9%
:;9I&:;9'
:;9I8(!I/)'I*:;9+4:;9I,4:;9I-
:;9I8.4:;9I?/.?:;9@�B04:;9I�B14:;9I�B2U34:;9I4��15���B64:;9I71R�BUXYW81R�BUXYW9U:41�B;1�B<��1=1R�BXYW>��1?��@!I/
A.:;9 B.:;9 C4:;9ID.:;9'I E:;9IFG.:;9'I@�BH:;9I�BI1R�BXYWJ:;9IK.:;9'IL1R�BXYWM1N41O��1�BP4:;9IQ.:;9I R.:;9I S:;9I�BT:;9IU.:;9'I@�BV4:;9IW1R�BUXYWX.:;9'I@�BY:;9I�BZ4:;9I�B[4:;9I�B\1R�BUXYW].:;9' ^:;9I_.:;9@�B`4:;9Ia:;9I�Bb4:;9Ic.:;9'@�Bd���B1e.:;9'I f.?:;9'<g.?:;9'I 4h.?:;9'I ij.1@�Bk1l1Um���B1n41
o41p41q41rs1UXYWt.?<n:;9u.?<n:;9v.?<n:;w6x.?<nOVOTpq�P��Pq�P��0��uVT�0���V��0�T0��?0�T0��?0�n�P��P�
P��P�S��S��P��S,8P8HSHc�T�S��SH\�TpSH\
�Tp
�v��v�
�v�P��U���U���U�SP��U��U�SP��S�S��
��
���0��0��	�	U�	�	S�	D
�U�D
g
Sg
u
�U�u

S
�
�U��
�
S�
�
�U��	�	T�	�	V�	D
�T�D
a
Va
u
�T�u

V
�
�T��
�
V�
�
�T��	�	Q�	�
�Q��	�	P�	
]
+
P+
C
]C
D
P
�
]�	�	S

SW
u
P�
�
\�	�	v|��	�	v| $0 $+(��	
v $0 $+(�
?
v $0 $+(�
�
v $0 $+(��	
P
�
PL
V
Uu
|
UUu�@�a�U�N� $ &"�^a� $ &"�O^PNQ^aQpU��U���P��PpU��U�`lUlqSqrP`lTlr�T���U���U���T���T���Q��S���Q�P�UwwUw�1�P�T��]w�T���T���WP�Q�pVpw�Q�w�Q��V{�0��S8=S��0���
s $ &3$}")
s $ &3$}"��U��V�W�U���T�S,AS�&V,WV+P��U��V��S,9S0
�
U�
�
V�
�
�U��
�
V0
S
TS
�
S�
�
�T��
�
S�
�
PP
S
TS
�
S�
�
S�
�
S�
�
S�
�
U�
�
VU3�U�T��U���U���U���U���U�
�U�!U!��U�k�P��P��0���0���0���0���S��U��\���U���T��S���T���Q���Q���R���R���X���X�@�U��S��SSS@�T��V���T���T�VTVT_V@�Q��\�3Q3\JQJ_\@{R{�]��R�]RG]G^
R
Z]Z_^@�X���X��3X3�X�JXJ_�X�7PPP_JTPT__`hUhm�U�`�U��S��Q���U���S`�T��V��R���T���V`�Q���Q���Q���Q���V��R���T���V��S��Q���U���S��\��\r�V
	*	Vg	q		��q	�	V@Y	��YiPi�V
	*	V*	4	P4	�	VRVPVyS*	q	SN	q	
�U	Z	pZ	^	URnPn�\��PD}S�
P6>P�
��*���U���U� TUT�S���U���S��U�
�U� TTT�V���T���V��T�
V TQT��Q��
Q

�Q�T�]��}���]��]T_S��Sd�����d�
y���
y�dlSlS��SvS��S��U�
�U��
Q

�Q���T�
V1U1.�U�.:U:P�U�1T1.�T�.=T=P�T�1Q1�S��Q�.S.AQACSCP�Q�10���U��P��^P.^1_U��U,����8U��8U/��������09sz����sz������������������@�	�	@r0	g	<	K	N	_	L
W
x
�
�������X_��l��v��P
�
�
�
�
�
�
�
�
�
�
�
�08_����0�������������cX�H\\cXpv�������@`
0@
$@Ln���������W�
/opt/alt/ruby27/include/ruby/usr/include/bits/usr/include/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/bits/types/usr/include/sys/usr/include/netinetlsruby.clsapilib.hruby.hstdio2.hstdlib.hstring_fortified.hstddef.htypes.hstruct_FILE.hFILE.hstdio.hsys_errlist.htypes.hstdint-intn.hstdint-uintn.hunistd.hgetopt_core.hmath.hintern.hversion.hlsapidef.htime.hstruct_iovec.herrno.hsockaddr.hsocket.hin.hsignal.h<built-in>string.hmman.hutil.h	�
J��K�?�K�|	#t>��iK>�K�K�{�KY;./<X� ��Lr��X=�����KJ��O
OtY��KKtY�}�t	jp	2]��T�	w��~�.��}<t	�g�}	�#�}.�-Ms

J)u<t
tY	Kit��Kt
JtYZ/IYHZ�~.K�J�w�JX�w�JY!J�w�Y	Y
�YY^<�q�Z;�JtgI/-Y
�X
�	�q�tX�.K =YJ��K =X�f�.KKtYv�KKtYt�K	Kt�	[u_�K
ht�	�t
Y	Z��	�	Y
�s
gX�	d	.
btZY�	v
z./�		Jw		XwX		X<Z ���~.K
�<
%XXt<.X�<h�I�
,JX�.X
^f)�X�.%X��=�(3<(J3<f88g;g
c9X�.X� "fp K;<�fK�p��	X	=Z�	vZ*Zr	>*X�  **��}(/�/	RX�}	�t	�	�
0Yfq�\�:>X.	���t��" �u�t/u* �uZ�
^�	�%gf�u	Z�3	X
�|t	���|<
tXX����u��Kt	.t.	�X�	�f.	f*8u�t�		X	�	��	o.@5<	t-<	t�i
J�J	[X
&JiX	V	L( ff&X<
u9=
t;
K1
t��QJ/f J�	�L2	�
�=t<U�MtUX&<<
�`	0<f@�	L5	t-<	t�j�<T�Kt	Jt X��K
b y<�
�~
���	
U�~
�	��	tZ��J�}���	?��J<�q	Z���	<xo��q	K#�
L	K"U�=XJ�q_Jf���	��q	Xt	Y
�	KY.	��J���
<	.%X7Xu	J	X%I��x;[X�
�w�K�Y!J�w��J ��t�|��K
�A���
J	g
X	YgglX	�r�$sJ	Z�
J
m
�g�	�r	Y;	=�$�J$J6<J
hjXX 	g<[�6<J6J�	i�<Y ��.���	>z
X�
.	�
�=Yl	�rX[wt	Z
"�
h�	��

m
�g��rt�X	�	h��	f�Y:g<	KX�fK�Y
sbXt�v
�
SY�|X	���|X<	�
L��/�$
e�X�<
��z
<�
�zt�	yt5Y�|X���|.X�z�
	Zrh	Y	��	�*xp�*��su��qwZ7Mt�-uDXZ�;�4�6�7�9�5�4�6�4�4�5�8�4�2�3�6�:�8�6�4�8�:�
"u{
wtJvI
;t��Z�vpJuI==[X=XvXuv0�X>f�~��z
t�	g�z
��t�	�`�	X�	p((*
u�v�#G< ���Y(�%�[$rb_mWaitWritable_sys_errlistm_pScriptFileRUBY_Qnilrb_eNoMemError_unused2_filenorb_cMethodrb_obj_wb_unprotectrb_eSyntaxErrorm_cntUnknownHeadersH_AUTHORIZATIONsockaddr_isoblockSizem_pIovecEndstrcpym_pRespBufPosRUBY_FL_EXIVAR__uint8_tdmarkRUBY_DATA_FUNCm_pktHeaderrb_eIOErrorm_bytesm_pHeaderrb_data_object_get_shortbufsockaddr_inrb_cFilerb_eSignalunlinklsapi_dataRUBY_T_ARRAYrb_eKeyErroradd_env_rails__environlsapi_addstrsa_datauint16_tm_totalLensin_zeroRUBY_FL_UNTRUSTEDrb_eZeroDivErrorin_port_t_flagslsapi_getscallocm_respPktHeader__off_tcreateTempFiledfreeRUBY_T_IMEMOrb_global_variable_lockROBJECT_EMBED_LEN_MAXRUBY_T_UNDEFrb_cStringrb_eEOFErroratoim_pHttpHeaderLSAPI_GetReqBodyRemain_rm_pScriptNamerb_mKernelm_pEnvListrb_output_fsint32_t__fmtsa_familym_specialEnvListSizerb_cModulesockaddr_ns__u6_addr8RUBY_T_FALSEruby_robject_flagsrb_cIntegerRUBY_T_FILE_IO_write_endm_iLensockaddrrb_cTrueClasss_addrRUBY_FL_USER0RUBY_FL_USER1RUBY_FL_USER2RUBY_FL_USER3RUBY_FL_USER4RUBY_FL_USER5RUBY_FL_USER6RUBY_FL_USER7RUBY_FL_USER8RUBY_FL_USER9nameLenLSAPI_Postfork_Childfreerb_fsm_requestMethodOffRUBY_T_COMPLEXdata_struct_objrb_eEncCompatErrorruby_special_constsvalLenRSTRING_EMBED_LEN_SHIFT__stack_chk_failruby_rarray_flagsruby_descriptionsin_familyRStringm_fdListenMAX_BODYBUF_LENGTHlsapi_bodym_statusm_reqBodyLenrb_eNameErroroptargneedReadrb_eRegexpErrorrb_cBasicObjectRUBY_T_STRUCTrb_cRationalrb_cFloatrb_cClassrb_cStatsys_errlistin_addr_tbasicRUBY_QtrueLSAPI_ReqBodyGetChar_rpKey__uint16_tsin_portRUBY_T_STRINGrb_cContrb_cFalseClassm_flagRARRAY_EMBED_LEN_SHIFTreadMaxBodyBufLengthm_pQueryString_chainRUBY_T_MODULErb_eArgErrorrb_eInterruptrecurrb_funcallvRUBY_FL_SINGLETONsockaddr_ununsigned charcapanReadm_cntSpecialEnv_IO_lock_tRUBY_T_ZOMBIEfloatLSAPI_key_value_pairLSAPI_ForeachHeader_r/builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapirb_stderrlsapi_eachm_cntHeadersrb_str_catbodyBufRARRAY_EMBED_LEN_MAXRUBY_T_FIXNUMrb_eSecurityErrorisEofBodyBuflsapi_processlsapi_flushRARRAY_EMBED_FLAGROBJECT_EMBEDoff_tchild_statusRUBY_SYMBOL_FLAGrb_mComparableH_X_FORWARDED_FOR__fprintf_chkm_queryStringOffRUBY_FLONUM_FLAGrb_stdoutruby_rstring_flagsH_CONTENT_LENGTHrb_cTimeruby_engine_IO_write_ptrrb_output_rsROBJECT_ENUM_ENDlsapi_packet_headerLSAPI_ReadReqBody_rrb_eFatallsapi_http_header_indexrb_funcall_argcsTempFilerb_funcall_argsclosesharedlsapi_printfRUBY_T_OBJECTFILEH_COOKIEs_fn_add_envmunmapRSTRING_EMBED_LEN_MAXbodyCurrentLenLSAPI_Accept_Before_Forkrb_cNumerics_req_stderrrb_cHashsize_trb_array_const_ptrH_CONNECTIONrb_rsuint8_tH_CONTENT_TYPERArraylsapi_markm_headerLenRUBY_ELTS_SHAREDperrorlsapi_envruby_release_daterb_cDirsetup_cgi_env_IO_save_baseioveclsapi_eofrb_array_const_ptr_transientenvironlsapi_child_statusreadTempFileTemplaterb_str_newsockaddr_x25rb_eLoadErrorsin6_flowinfom_pIovecToWriteorig_stderrm_respHeaderLen_wide_dataH_IF_MATCHRUBY_FL_PROMOTED0RUBY_FL_PROMOTED1__in6_uH_ACC_CHARSETruby_versionorig_stdout__streamsigngamruby_copyrightm_reqBufSizerb_eExceptionrb_yieldadd_env_no_fixRUBY_T_FLOATRUBY_T_CLASSrb_cDataftruncateruby_fl_typelsapi_requestrb_cComplexfprintfrb_check_typeRUBY_T_HASHsyncRUBY_T_NODEchdir__ssize_t__srcrb_mErrnolsapi_closeH_IF_RANGEnameOffruby_api_versionstrerrorsa_family_tm_packetLenreadMoreRUBY_FL_WB_PROTECTEDin6_addrisBodyWriteToFilelinesin6_addrrb_mWaitReadablelsapi_setsyncm_respPktHeaderEndRUBY_FL_TAINTLSAPI_Postfork_Parentfn_add_envlsapi_printrb_eSystemCallErrorrb_intern2stderrm_pHeaderIndexprogram_invocation_short_namerb_cUnboundMethodrb_f_sprintf_IO_save_endrb_const_get__nptrLSAPI_InitLSAPI_Requestrb_eScriptErrorfn_writelsapi_syncm_bufProcessedstdoutreadBodyBufoptoptlsapi_reopenrb_mGCrb_eIndexErrorm_httpHeaderLencurPosH_IF_NO_MATCHlsapi_s_acceptpreforkRUBY_T_DATAbuffssizetypekeyLenRUBY_FL_DUPPED__builtin_strchrLSAPI_Flush_rshort unsigned intsigned charrb_array_lentz_dsttimeGNU C17 8.5.0 20210514 (Red Hat 8.5.0-20) -mtune=generic -m64 -march=x86-64 -g -O2 -fPIC -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fplugin=annobinfilenamelsruby.clsapi_header_offset__off64_tsockaddr_eon_IO_read_base_offsetm_pIovecrb_string_value_ptrrb_eFloatDomainError_IO_buf_endm_respInfoopterrlsapi_puts_ary_modeblkSize_IO_write_basevalueLenInit_lsapirb_eStandardErrorrb_cSymbolrb_argv0H_CACHE_CTRLH_COOKIE2__destrb_cMatchrb_cEncodinglsapi_isattyH_USERAGENTRARRAY_EMBED_LEN_MASKLSAPI_ForeachEnv_rlong intRUBY_T_NONErb_mProcessrb_mFileTestremain_IO_markerrb_cEnumeratorm_pRespBufEnd__builtin___memcpy_chkrb_io_putslsapi_s_postfork_childrb_define_global_constrb_obj_as_stringm_bufReadin_addruint32_tsockaddr_in6__pid_t_IO_codecvtrb_funcall_nargsH_RANGERDatastrtolg_reqlong doublerb_cRangeiov_lenlsapi_resp_inforb_cObjectlong unsigned intlsapi_req_headerRVALUE_EMBED_LEN_MAXrb_gc_markinitBodyBufruby_strdupm_headerOffrb_eNotImpError__errno_locationlsapi_s_postfork_parentcharsockaddr_inarpm_pSpecialEnvListsin6_scope_idrb_cIORSTRING_ENUM_ENDstdinsin_addrRUBY_T_BIGNUM_IO_buf_baseRSTRING_NOEMBEDRUBY_T_RATIONALRUBY_FL_PROMOTEDs_bodyrb_eTypeErrorRBasicrb_eNoMethodError_IO_read_endRUBY_T_ICLASSrb_num2intcLSAPIRUBY_SPECIAL_SHIFT_IO_FILEH_IF_UNMOD_SINCEm_fdRUBY_T_SYMBOLH_HOSTrb_num2char_inline_IO_wide_datastrlen__u6_addr16s_pidselfrb_eSystemExitisAllBodyReadm_respHeaderrb_cThreadRUBY_FL_SEEN_OBJ_IDm_envListSizem_pAppDataruby_platformsockaddr_ax25RSTRING_FSTRrb_eThreadError__pad5rb_str_new_staticshared_root__u6_addr32rb_cNilClassm_type_markersrb_stdinrb_eStopIterationm_scriptFileOffRUBY_FL_USHIFTklassrb_define_classH_VIA_codecvtm_pRespHeaderBufEndH_PRAGMARUBY_FL_FINALIZErb_cRandomdoublemkstemplsapi_putcargcssize_tstrcatlsapi_writelsapi_putsorig_stdinRUBY_FIXNUM_FLAGargvRARRAY_ENUM_ENDrb_eRuntimeErrorm_pRespHeaderBuf__int32_trb_cProc__uint32_tRUBY_IMMEDIATE_MASKrb_hash_asetdataH_REFERERrb_cStructLSAPI_Prefork_Accept_rheap_sys_siglistRARRAY_TRANSIENT_FLAGm_pUnknownHeaderrb_typem_reqStateRUBY_T_NILRUBY_T_MOVEDrb_eSysStackErrorm_pRespBufrb_num2int_inlineprogram_invocation_namerb_cArrayrb_eEncodingErrorrb_ruby_verbose_ptrrb_cBindingrb_intern_id_cacheH_TRANSFER_ENCODINGH_IF_MODIFIED_SINCErb_ary_detransientRUBY_FL_USER10RUBY_FL_USER11RUBY_FL_USER12RUBY_FL_USER13RUBY_FL_USER14RUBY_FL_USER15RUBY_FL_USER16RUBY_FL_USER17RUBY_FL_USER18RUBY_FL_USER19_freeres_bufRUBY_T_MATCHlong long unsigned intpid_t_cur_columnlsapi_rewinds_reqrb_eRangeErrorm_pRespHeaderBufPoss_stderr_datarb_eval_string_wrapgetpidm_cntEnvRUBY_T_MASKrb_lastline_getcreateBodyBuf_IO_backup_baseH_KEEP_ALIVE__memcpy_chk_IO_read_ptrrb_eMathDomainErrorrb_fix2intLSAPI_GetReqBodyLen_rrb_gc_writebarrier_unprotectrb_exec_recursivegetenv_freeres_listrb_eLocalJumpError_sys_nerrlsapi_readtimezonepReqlsapi_getcrb_hash_newclear_envrb_cRegexplsapi_binmode_old_offsetstrchrm_pReqBufrb_cNameErrorMesgvalueOffoptindH_ACC_LANGlong long intin6addr_loopback_flags2VALUErb_mMathRUBY_T_TRUEmemmemsin6_familysockaddr_atruby_value_typem_scriptNameOffH_ACCEPTm_lLastActiverb_eNoMatchingPatternErrorlsapi_resp_headersys_nerrin6addr_anym_pRequestMethods_req_dataiov_basem_lReqBeginruby_rvalue_flagsm_versionB0m_versionB1rb_str_buf_newRUBY_FLONUM_MASKruby_patchlevelRUBY_T_REGEXPm_pIovecCurLSAPI_Init_Env_Parametersorig_envm_reqBodyReadRUBY_Qundeflsapi_s_accept_new_connrb_eFrozenErrorsockaddr_dlRSTRING_EMBED_LEN_MASKRUBY_FL_FREEZEunsigned intbodyLensockaddr_ipxrb_default_rsshort intrb_string_value_vtable_offsetpValueenv_copymmaporig_verboserb_data_object_zallocrb_mEnumerableRUBY_Qfalseflagstz_minuteswestsys_siglistH_ACC_ENCODINGsin6_portlsapi_eval_string_wrapGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-20)GNU�zRx�
0D+Xl�(�BF�G�A �kFB�zD O
E�
�HUgHQ
G$ayd<2HW
II(\�E�D�L ]
CAJ�E�L�E�Y� HW� HW�-Hd(�E�A�D �
DAJ43E�D hAHTF�B�B �E(�D0�C8�GPm
8F0A(B BBBG,��Z�A�D �J
�A�B�L4��o�A�D �
AAKp��P ��\4F�D�A �D(�F0`
(D ABBBj
(D ABBEl(G DBBDh�B�B�I �B(�A0�A8�D@�8D0A(B BBB�*HP
HI�UK�I8��F�B�A �D(�D@�
(A ABBE((<�E�D�G0�
AAIHhPF�B�B �A(�A0��
(F BBBH{(F BBB@�OF�B�B �A(�D0�D@
0A(A BBBJ8�KF�B�A �A(�D0�
(A ABBE
�	
-)
?.Yt/��0��1�
5
C
_"y�	@�"�[�0+�[�h�`
h)wCpPwm���������B�	p��Z�z#	<	xEZ_mw`
�m���p������g�0aIaUao��p2���W����W�r`r1�K�X���� ������ #�J
o�-�
�����	X�	�	`�� 3D3[3x_�@�_���`���	��	�3�	N�\	@f�	��
��	4��
����
���	�'	�*2	�L	d	�Uo	�	
�	 ��	
�	'
�	 
�	'

�
'
0
�2
�
L
Pd
Po
P�
��
PO�
��
��
	 �
		�	h "$%'./0123-4#(-@2)7<3AFKLPSU�[baZgxm�s�y�������������$�*�f�n�s�y����������������	����!�'�-�3�9�?�E1KGQVW]�c�iu���()*+,������


&
4
;
@
T
k
y
�
�
�
�
�
�
�
/?Sgn������������%�%0;BKhs�������K�����",7DWg}������ � � .annobin_lsruby.c.annobin_lsruby.c_end.annobin_lsruby.c.hot.annobin_lsruby.c_end.hot.annobin_lsruby.c.unlikely.annobin_lsruby.c_end.unlikely.annobin_lsruby.c.startup.annobin_lsruby.c_end.startup.annobin_lsruby.c.exit.annobin_lsruby.c_end.exit.annobin_lsapi_process.start.annobin_lsapi_process.endlsapi_process.annobin_lsapi_rewind.start.annobin_lsapi_rewind.endlsapi_rewinds_body.annobin_lsapi_eof.start.annobin_lsapi_eof.endlsapi_eof.annobin_lsapi_binmode.start.annobin_lsapi_binmode.endlsapi_binmode.annobin_lsapi_isatty.start.annobin_lsapi_isatty.endlsapi_isatty.annobin_lsapi_setsync.start.annobin_lsapi_setsync.endlsapi_setsync.annobin_add_env_no_fix.start.annobin_add_env_no_fix.endadd_env_no_fixlsapi_env.annobin_clear_env.start.annobin_clear_env.endclear_envrb_intern_id_cache.15416env_copy.annobin_lsapi_mark.start.annobin_lsapi_mark.endlsapi_mark.annobin_lsapi_flush.start.annobin_lsapi_flush.endlsapi_flush.annobin_lsapi_close.start.annobin_lsapi_close.endlsapi_closeMAX_BODYBUF_LENGTH.annobin_readBodyBuf.start.annobin_readBodyBuf.endreadBodyBuf.annobin_lsapi_getc.start.annobin_lsapi_getc.endlsapi_getc.annobin_lsapi_write.start.annobin_lsapi_write.endlsapi_write.annobin_lsapi_addstr.start.annobin_lsapi_addstr.endlsapi_addstr.annobin_lsapi_printf.start.annobin_lsapi_printf.endlsapi_printf.annobin_lsapi_s_postfork_parent.start.annobin_lsapi_s_postfork_parent.endlsapi_s_postfork_parents_req.annobin_lsapi_s_postfork_child.start.annobin_lsapi_s_postfork_child.endlsapi_s_postfork_child.annobin_lsapi_s_accept_new_conn.start.annobin_lsapi_s_accept_new_conn.endlsapi_s_accept_new_conn.annobin_lsapi_s_accept.start.annobin_lsapi_s_accept.endlsapi_s_accepts_pidrb_intern_id_cache.15429s_req_data.annobin_lsapi_eval_string_wrap.start.annobin_lsapi_eval_string_wrap.endlsapi_eval_string_wrap.annobin_add_env_rails.start.annobin_add_env_rails.endadd_env_rails.annobin_lsapi_reopen.start.annobin_lsapi_reopen.endlsapi_reopens_req_stderrorig_stderrrb_intern_id_cache.15593.annobin_createBodyBuf.start.annobin_createBodyBuf.endcreateBodyBufsTempFile.annobin_lsapi_read.start.annobin_lsapi_read.endlsapi_read.annobin_lsapi_gets.part.2.start.annobin_lsapi_gets.part.2.endlsapi_gets.part.2.annobin_lsapi_gets.start.annobin_lsapi_gets.endlsapi_gets.annobin_lsapi_each.start.annobin_lsapi_each.endlsapi_each.annobin_lsapi_puts_ary.start.annobin_lsapi_puts_ary.endlsapi_puts_ary.annobin_lsapi_sync.start.annobin_lsapi_sync.endlsapi_sync.annobin_lsapi_putc.start.annobin_lsapi_putc.endlsapi_putc.annobin_lsapi_puts.start.annobin_lsapi_puts.endlsapi_puts.annobin_lsapi_print.start.annobin_lsapi_print.endlsapi_print.annobin_Init_lsapi.start.annobin_Init_lsapi.endrb_intern_id_cache.15609rb_intern_id_cache.15614orig_envcLSAPI.LC0.LC1.LC7.LC5.LC4.LC6.LC3.LC2.LC8.LC9.LC13.LC11.LC10.LC12.LC14.LC15.LC16.LC17.LC18.LC55.LC20.LC21.LC25.LC26.LC27.LC28.LC29.LC33.LC34.LC35.LC36.LC37.LC38.LC39.LC40.LC41.LC42.LC43.LC44.LC45.LC46.LC47.LC48.LC49.LC50.LC51.LC52.LC53.LC23.LC19.LC30.LC31.LC32.LC24.LC22.LC54.text.group.text.hot.group.text.unlikely.group.text.startup.group.text.exit.group_GLOBAL_OFFSET_TABLE_g_reqrb_str_newrb_hash_asetrb_funcallvrb_intern2__stack_chk_failrb_gc_markLSAPI_Flush_rmunmapfreeLSAPI_ReadReqBody_rLSAPI_ReqBodyGetChar_rrb_check_typerb_obj_as_stringrb_f_sprintfLSAPI_Postfork_ParentLSAPI_Postfork_ChildLSAPI_Accept_Before_ForkLSAPI_Prefork_Accept_rgetpids_fn_add_envLSAPI_ForeachHeader_rLSAPI_ForeachEnv_rrb_string_valuerb_string_value_ptrrb_eval_string_wrapstrchrrb_str_new_staticrb_ruby_verbose_ptrrb_define_global_construby_strdupmkstempunlinkftruncatemmapcallocperror__errno_locationstrerror__fprintf_chkrb_str_buf_newrb_str_catrb_num2intrb_fix2intmemmemrb_yieldrb_gc_writebarrier_unprotectrb_io_putsrb_ary_detransientrb_exec_recursiverb_default_rsrb_output_fsrb_output_rsrb_lastline_getInit_lsapiLSAPI_InitgetenvstrtolstrlenselectLSAPI_Init_Env_Parameterschdirrb_stderrrb_cObjectrb_const_getrb_global_variablerb_define_classrb_data_object_zallocLSAPI_Write_rrb_stdoutrb_stdinLSAPI_Write_Stderr_rrb_hash_new__memcpy_chkrb_define_global_functionrb_define_methodrb_define_singleton_methodH7*������������������������������l��������������������tl���������@���������E���������O��������V���������{*��������������������*��������������������D��<�����������8�D�H����������*���������?HF<K���������UH{*�����������������������������=��������������������*���������������������*���������������������*�������������������*���������"���������7<A���������H8XD^Hg���������mTv|T�����������\�*�������������������������������������������������������������������)��������~������������������������������l�����������������������������0��������\���������h���������q��������|l����������������������������������������l����������������������������������������l�������������������A���������g��������������������������������������������������������������������������������C*��������� D6C<H��������S��������f	��������n���������uD
������������������<����������
���������<�������������������	@	���������	��������	��������1	��������8	��������G	���������Q	*��������[	��������c	���������t	���������y	���������	���������	D�	L�	H�	��������
L 
<(
��������.
LS
��������]
Lc
Dy
���������
L�
<�
���������
L�
<�
DH���������L2��������K��������YLc<k��������qL�D�H����������D�Lh���������������������������������������������
��������
����������
���������
����������
���������
���������&���������v�������������������*����������������3*����������������������������*��������@*��������� �������������������"�������������������8�D�H�#���������$���������������� ���������%#��������5%��������Q���������XL_<f���������m#���������$���������*&���������'�����������������������������T�#���������(���������*����������*)�����������**��������	+��������|,���������3t:t?,��������K���������P��������\���������d��������ktv��������������������5�������������������-�������������������d�7���������d�����������6���������d����������6��������d���������6��������&d9���������>6��������EdX���������]6��������ddw���������|6���������d�����������6���������d�����������6���������d�����������6���������d�����������6���������d	���������6��������d%���������*6��������1dA���������F6��������Md]���������b6��������idy���������~6���������d�����������6���������d�����������6���������d�����������6���������d�����������6���������d���������
6��������d$���������)6��������0dC���������H6��������O*���������Vdj.��������q*���������x*/����������\�*0���������*1���������,���������d�.���������*2���������������������������,�������������������������
3��������l"l)���������.��������8���������=��������B��������g<l4��������y<�����������d�����������7���������d�����������7���������d���������7�������� ���������%���������/6|H���������M���������Wc���������h��������{����������#�������������������������������������i������������������� ���
 (
L
T"�
�"�"�[�"�[[h@[Hhlhtw�h�w�w��w�,�4�`�h����Z���Z�Z�m Z(mLmT��m�����������a@�Halat��a�����W�W,W4r`Whr�r���r������ �(�L�T��������
���
	
	�@	
H	�l	�t	3�	��	3�	3�	_
3
_,
_4
�`
_h
��
��
�	�
��
�	�
�	�
�
 �	(�
L�
T���
�����������@�Hlt
��
�
�'



'
,
'
4
�
`
'
h
�
�
�
�
P�
�
�
P�
P�
� P(�L�T����� � � � ��
�
�Q
�5
��)
�.
��
<
�C
��L
�S
�Z
�-_
��m
�r
�B~
�L�
�_�
���
�B�
�R�
���
�R
�
��
��

�
��'
��4
�iA
��N
�H	[
��h
�u
���
�>�
�\�
���
��
���
�N�
���
�|�
���
�&
�L
�
�w+
�r8
�	E
��R
��_
��l
��y
�E�
�
�
�G�
���
���
��
��
��
��'
�Q3
��?
��[
��g
�s
�
���
��
���
���
���
��
�
���
�|�
���
�y�
���
��
��
�d"
�`)
��.
�{;
��W
��j
�|p
�v
�,|
�v�
�j�
��
�
�
���
���
���
�'�
���
�
�
���
���
���
�V�
�+�
���
�/
�
���
��
��
��
��
��
�1
� 
��&
�l,
��2
�)8
��>
�_D
�@
J
��P
�RV
�\
�2c
��v
��
|
��
�1�
�A�
���
�7�
���
�h�
���
���
�G�
���
���
���
��
��
��
�+�
�9�
�G
�U
��
�!
�*
�3
�-<
�<E
�KN
�ZW
�i`
�xj
��
q
��x
��
�g�
���
�V�
���
�.�
�y�
���
���
�c	�
�	
�!
��
��
�2
#
��,
��@
�,M
��	�
���
�B�
��
�
�

�p
��
�� 
��)
�=
�,J
���
���
��
�
��
��	
�	
��%	
�Y3	
��S	
�`	
��m	
��z	
�m�	
�b
�	
���	
�x�	
���	
���	
��	
��	
���	
��	
�g	

��

��#

�d0

��=

�(J

�]W

��d

�mq

�b~

�

�

���

��
�

���

���

�S�

�V�

�J�

���

��
�p


�V
��'
��4
��A
�cN
��[
��h
��u
�!�
�]�
�3	�
���
���
���
��
�3�
���
�k�
��	
��
��
�+
�%8
��E
��R
�_
�*l
��y
�7�
�r�
���
�Y�
���
�r�
�6�
�n�
���
��
� 

��

�q"

��/

�^<

�I

��V

�uc

��p

��}

��

�	�

���

���

��

��
�

���

�V	�

�,
��
#
�Y/
�;
��G
�S
�&_
��k
�<	�
�G�
�K�
���
���
���
��
�
��
�
�"	�
�
�
�B�
���
���
���
�w�
�5�
���
��
���
�x
�
���
�l
��	
��
�l
��%
��1
�'>
�t	K
��X
��e
�r
�|
��
�
��
��
���
�|�
�7�
�7�
���
���
��
�)
�7
��	*
��
7
�fe
�>r
��

�c�
���
���
���
���
�s�
�y�
��
���
�4
��
�F*
�f7
�=D
�5Q
��^
��l
��z
�J�
���
�P�
���
���
���
�2�
���
���
�;�
�{	
��
��#
�0
��=
�9J
��W
�$d
�/q
�~
���
�|�
�5�
���
���
��
���
���
���
��
��

��
�|'
�h4
�BA
�jN
�2\
�Pj
��x
���
���
�L�
���
���
�
��@
�OL
��X
��
d
��q
�+~
���
��
���
���
�\
�V

�7
�M'
��4
��R
��`
�n
��|
���
��
�
���
���
���
���
�U
� 
���
��
�t�
���
�
�a
�
��U
��
b
�Cu
���
���
���
���
���
�f�
�����
�_�
�<x&
�3p<
�UIR
�}y
�.�
�}�
���h�
����
���`
�|


�"
�(/X8
�hE
�R
��_
�H
l
��z
�h�
�R�@�
��	�@�
�[�
�
���
���
�J
�
�#
�A'
�;,
��8
��<
��A
�`J
��X aQr1��
���
��	�
�
�
��
��	�
���
�F�
�B�
���
����)�10
� %
��1
��5
�~:nP`a
�`j
��v
��z
����`���
� ���
�P�
�P�
���
���
���
����
��
�@
�<�;�P1�Zx�������
���
���
���
�vH	
��
��
��'
�7+
�30pA@cvlv�
���
��
���
���)�1��9�v�
�0�
���
�����"q71�A�N�[�p1�z��
�C�x�T�1�h���z�$11@�U1$_�p1*}���1f���1n�0
�#�1s � B$ 1y1 PA aR 1_ �o �� 1�� � �� 1�� `� �� 1�� p� �!1�!p$!�5!1�B!�Q!b!1�o!�	!.�!1��!�!J�!1��!��!f�!1��!0"�"1�$"03"�D"1�Q"�`"�q"1�~"`�"��"1��"p�"��"1��"p�"�"1�# 
#-%#1�2#�A#LR#1S_#`o#��#�#��#�#��#�#�#�#2�#1�$A$1L$F,$�=$11J$�Y$�j$1Gw$��$�$1V�$��$l�$1��$��$1�%
��
%
�N%
��.%
��S%
�ke%
��r%
�%
�.�%
�J�%
���%�%
�l
�%��%
�.�%
��%
���%��%�
&�&�'&�5&
�A&�X&
�.g&
�;
w&
�7�&
�.�&
�j�&
�.�&
�n�&`�&
�.�&
�R�&0'
�.'4('4D'
��P'�g'
�.s'
�?w'
�9�'
���'
���'��'��'
���'
���'��'
��'��'
�@�'
��'
��(
�@(
�:(
�6"(
�z&(
�v+(�E(T(�b(
��t(
�.�(
�)�(�	�(
���(
���(
���(
��(
���(
���(
�.�(
�h�(
�d�(
���(
��)
�7)
�/)
��)
��)
��!)
�1-)
�`	1)
�\	:)L
C)
��T)
��	X)
��	])W
j)}
x)�	�)�	�)�	�),
�)�
*
� *
�.,*
��P*
�X\*s*
��*
��	�*
��	�*
���*
���*
�)
�*
�%
�*
�1�*
��
�*
��
�*
��
�*
��
�*
��
�*
���*�*
��+O+
�I+
�B-+
�NL+
�Jx+
��
�+
�B�+p�+
�.�+
��
�+
��
�+
�7�+
�3�+��+
�d�+p,
�.,
�q,
�m,�&,
��2,`U,
��Y,
��j,
��n,
��s,m�,
���,
���,
��,
��
�,
��
-
��3-
��	?-�V-
��b-
�:f-
�6k-
�w-
�w{-
�s�-
���-
���-��-��-
�f�-P�-
���-
�
�-
�
.
�.
�\
.
�R
#.
��
'.
��
6.
�R:.
�J?.
��
S.\.
��m.
��q.
��w.��.��.�.8�.U�.�/�/
��/�2/
�.>/
�B/
�S/
�ZW/
�T\/
��h/
��l/
��}/
���/
���/��/
���/
��/
��/��/��/
��/
�@�/
�<�/A0
��00
'0
�.30
�~70
�vF0
��J0
��^0
��j0
�Fn0
�Dw0P
�0
��0
�o�0
�i�0�
�0
�0�0
���0
���0�
�0�
�0�
�0
�`1
��1
��1�
%1�
>1�
L1
�VX1o1
�.1
���1�1
�.�1
�0�1
�,�1
�k�1
�i�1�1#�1-2
��2�22
�.=2
��A2
��F2�T2
�+_2�v2
�.�2
���2
���2��2
���2��2
�.�2
��2
��2��2
���2�2
�.	3
�I
3
�E3
��!3
��&3
�0/3
��	:3
��>3
��C3
��	O3
��Z3
��^3
��c3
�pl3
��y3�3��31�3��3��3
���3
�6�3
�4�3��3�4�!4&.4E;4kI4
�0V4
��c4
�Yj4��4
��4
��	�4
��	�4
���4
�@�4
���4�4I�41�4
5Z05
��;5�R5
�=]5
�_a5
�Yf5
��q5
��u5
��z5
�5�5
��5
���5
���5
�>�5
�:�5
�{�5
�w�5��5�6�6
�� 6@76
�=B6
��F6
��K6
��V6
�?Z6
�-_6
�5j6
�	n6
��s6
��~6
���6
���6
�y�6
�m�6
��6
��6��6��6�7427`R7ug71)v7��7��7��713�7��7�
8�81.8�C8
��
J8`a8
��l8
�lp8
�hu8m�8
���8
�=�8
���8
�=�8
��
�8
���8
�\
9
�9(9
��H9
��f9
�a�9
�,�9
��
�9
�9�9
�=�9
���9
�L�9
�\
:
��:
�L#:
�\
0:
��B:
��P:
�
a:
�rm:
�%:�:p�:`�:
���:
���:
�+�:
�!�:
���:
��;�;
��";
��&;
��/;
�3;
�<;
��@;
�~E;
��N;
��R;
��[;
�d;�u;1S�;��;��;��;1L�;��;��;<<;<.D<.]<@f<
�Ps<
�P|<
�'�<
��<@�<
���<
���<
���<
���<
��<
��<N	�<
���<
�f�<
�d�<
���<
���<_	=1Z=L.=@8=WP=jh=r�=5	�=<	�=g	�=��=�>�>	->1b7>#	O>}	d>1xn>�	�>��>��>1��>�
�>
���>
���>
��>
��>
�E�>
�A?
�}?
�{?�
?�
-?F?6j?1�y?O�?o�?��?
���?
���?��?�@ /@
��3@
��<@
��@@
�vI@
� M@
� ^@
�y b@
�q k@�t@
�p�@
�� �@
�� �@d�@d�@
�!�@
�!�@
�Y!�@
�U!�@
��!�@
��!�@l�@l�@
��A
��!A
��!A
��!Av*A
��;A
��!?A
��!EA�_A�hA��A
�2"�A
�."�A
�o"�A
�k"�A
��"�A
��"�A��A
�A1��A
B�.B
@B[B
��"_B
��"hB
�T#lB
�L#uB
��#yB
��#�B
���B
���B
�a$�B
�_$�B
��$�B
��$�B��B
���B
�%�B
��$�BzC C�!C�?C�WCrCB�C
���C
���C
���C
���C
�W�C
�W�C
���C
���C
���C
���C
���C
���C
�y�C
�	�C
�D
�D
�D
�D
�ED
�E%D
�")D
�"2D
�L
6D
�L
?D
��CD
��LD
�lPD
�lYD
��]D
��fD
�~jD
�~sD
�\wD
�\�D
���D
���D
�M�D
�M�D
�B�D
�B�D
��D
��D
��D
��D
�+
�D
�+
�D
���D
���D
���D
���D
���D
���D
���D
��E
��E
��
E
�E
�E
��	E
��	&E
�&*E
�&2E
��6E
��?E
�>CE
�>LE
�PE
�UE
�!
YE
�!
bE
�YfE
�YoE
�sE
�|E
���E
���E
��E
��E
�E�E
�E�E
�k�E
�k�E
�W
�E
�W
�E
�{�E
�{�E
���E
���E
���E
���E
���E
���E
���E
���E
�C�E
�CF
��F
��F
�ZF
�Z F
��$F
��-F
�v1F
�v:F
��>F
��FF
��
JF
��
SF
��WF
��`F
�EdF
�ElF
��	pF
��	yF
�+}F
�+�F
��F
��F
���F
���F
���F
���F
� �F
� �F
���F
���
��C
��CJ@f@�
��C�@<
LM
@k
L|
@y1Z(!
��F@!
��F
�f 4H0\`pp�������`�p�(@p`��`��������8X@�`��	l�
����� , 
@0
l�P��.symtab.strtab.shstrtab.rela.text.data.bss.rela.gnu.build.attributes.text.hot.rela.gnu.build.attributes.hot.text.unlikely.rela.gnu.build.attributes.unlikely.text.startup.rela.gnu.build.attributes.startup.text.exit.rela.gnu.build.attributes.exit.rodata.str1.1.rodata.str1.8.rela.data.rel.local.rodata.cst16.rela.debug_info.debug_abbrev.rela.debug_loc.rela.debug_aranges.debug_ranges.rela.debug_line.debug_str.comment.text.hot.zzz.text.unlikely.zzz.text.startup.zzz.text.exit.zzz.note.GNU-stack.note.gnu.property.rela.eh_frame.group/@6�/T6�/l6�/�6�/�6� ��@X8"6&�,�� 6��1@�6�6
Lp'[p'�V@�C06
u@)�@)��@�C06�+�+��@�C06��,��,��@D062�.�2�0%'�0"@@D67�0J�0�FE@XDx�6V�w/i�~8%d@��86 y�0t@�06"�K���۫��@8�6%�0����0~�.������u��L�� �����������������
�� %��0 @P�064�@7�	@��6PKCH[������9share/gems/gems/ruby-lsapi-5.6/examples/lsapi_with_cgi.rbnuȯ��#!/opt/alt/ruby27/bin/ruby

require 'lsapi'
require 'cgi'


while LSAPI.accept != nil
    cgi = CGI.new
    name = cgi['name']
    puts cgi.header
    puts "Hello #{name}! <br> " if name
    puts "You are from #{cgi.remote_addr}<br>"

end
PKCH[�*��4share/gems/gems/ruby-lsapi-5.6/examples/testlsapi.rbnuȯ��#!/opt/alt/ruby27/bin/ruby

require 'lsapi'

$count = 0;

while LSAPI.accept != nil
	print "HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\nHello World! \##{$count}<br>\r\n"
	ENV.each_pair {|key, value| print "#{key} is #{value}<br>\r\n" }
	$count = $count + 1
end
PKCH[�^wͱ�%share/gems/gems/ruby-lsapi-5.6/READMEnu�[���
lsapi - LSAPI extension for Ruby
================================

INSTALL
-------

  $ ruby setup.rb config
  $ ruby setup.rb setup
  # ruby setup.rb install

USAGE
-----

General CGI scripts
^^^^^^^^^^^^^^^^^^^
The most efficient way to use LSAPI interface is to modify your CGI scripts. 
You need to add the following code to your CGI scripts:

  require 'lsapi'
  
  while LSAPI.accept != nil

     <your CGI script>
     ...

  end

There is no need to change the way that how CGI environment variables 
are being accessed in your scripts.

You can find some examples under examples/ folder.


Ruby Script Runner
^^^^^^^^^^^^^^^^^^
If you don't want to change your existing Ruby CGI code, you can use our 
Ruby script runner under scripts/ folder. You need to configure 
lsruby_runner.rb as a LSAPI application, then add a script handler 
for "rb" suffix.



Rails dispatcher
^^^^^^^^^^^^^^^^

With Ruby LSAPI, we proudly provide a optimum platform for Rails application
deployment. Ruby LSAPI has the following advantages over other solutions.

  * Easy configuration, deploy a Rails application only take a few clicks
    with our Rails easy configuration
  * Fast startup, the expensive Rails framework initialization only takes
    place once when multiple processes need to be started
  * Resource efficience, ruby processes can be started on demand, idle
    process will be stop.
    
To use LSAPI with Ruby on Rails, please check out our toturial
http://www.litespeedtech.com/support/wiki/doku.php

There are a few environment variables that can be tweaked to tune ruby 
LSAPI process.

* LSAPI_CHILDREN                (default: 0)

LSAPI_CHILDREN controls the maximum number of children processes can be
started by the first ruby process started by web server. When set to <=1,
the first ruby process will handle request by itself, without starting any
child process. When LSAPI_CHILDREN is >1, the LSAPI application is stared in
"Self Managed Mode", which will start children processes based on demand.
With Rails easy configuration, LSAPI_CHILDREN is set to the value of
"Max Connections" by web server, no need to set it explicitly.

Usually, there is no need to set value of LSAPI_CHILDREN over 100 in most
server environment.


* LSAPI_AVOID_FORK              (default: 0)

LSAPI_AVOID_FORK specifies the policy of the internal process manager in
"Self Managed Mode". When set to 0, the internal process manager will stop
and start children process on demand to save system resource. This is
preferred in a shared hosting environment. When set to 1, the internal
process manager will try to avoid freqently stopping and starting children
process. This might be preferred in a dedicate hosting environment.


* LSAPI_EXTRA_CHILDREN          (default: 1/3 of LSAPI_CHILDREN or 0)

LSAPI_EXTRA_CHILDREN controls the maximum number of extra children processes
can be started when some or all existing children processes are in
malfunctioning state. Total number of children processes will be reduced to
LSAPI_CHILDREN level as soon as service is back to normal.
When LSAPI_AVOID_FORK is set to 0, the default value is 1/3 of
LSAPI_CHIDLREN, When LSAPI_AVOID_FORK is set to 1, the default value is 0.


* LSAPI_MAX_REQS                (default value: 10000)

LSAPI_MAX_REQS specifies the maximum number of requests each child
process will handle before it exits automatically. This parameter can
help reducing memory usage when there are memory leaks in the application. 


* LSAPI_MAX_IDLE                (default value: 300 seconds)

In Self Managed Mode, LSAPI_MAX_IDLE controls how long a idle child  
process will wait for a new request before exit. This option help 
releasing system resources taken by idle processes.


* LSAPI_MAX_IDLE_CHILDREN
    (default value: 1/3 of LSAPI_CHILDREN or LSAPI_CHILDREN)

In Self Managed Mode, LSAI_MAX_IDLE_CHILDREN controls how many idle 
children processes are allowed. Excessive idle children processes
will be killed by the parent process.
When LSAPI_AVOID_FORK is set to 0, the default value is 1/3 of
LSAPI_CHIDLREN, When LSAPI_AVOID_FORK is set to 1, the default value
is LSAPI_CHILDREN.


* LSAPI_MAX_PROCESS_TIME        (default value: 300 seconds)

In Self Managed Mode, LSAPI_MAX_PROCESS_TIME controls the maximum 
processing time allowed when processing a request. If a child process
can not finish processing of a request in the given time period, it 
will be killed by the parent process. This option can help getting rid 
of dead or runaway child process.


* LSAPI_PGRP_MAX_IDLE           (default value: FOREVER )

In Self Managed Mode, LSAPI_PGRP_MAX_IDLE controls how long the parent
process will wait before exiting when there is no child process.
This option help releasing system resources taken by an idle parent 
process.


* LSAPI_PPID_NO_CHECK

By default a LSAPI application check the existence of its parent process
and exits automatically if the parent process died. This is to reduce 
orphan process when web server is restarted. However, it is desireable 
to disable this feature, such as when a LSAPI process was started 
manually from command line. LSAPI_PPID_NO_CHECK should be set when 
you want to disable the checking of existence of parent process.


License
-------

LSAPI library code is under BSD license

LSAPI ruby extension code is under Ruby license

* ((<URL:http://www.ruby-lang.org/ja/LICENSE.txt>)) (Japanese)
* ((<URL:http://www.ruby-lang.org/en/LICENSE.txt>)) (English)


Copyright
---------

Copyright (C) 2006 Lite Speed Technologies Inc.


PKCH[j2��3share/gems/gems/ruby-lsapi-5.6/rails/dispatch.lsapinuȯ��#!/opt/alt/ruby27/bin/ruby

if GC.respond_to?(:copy_on_write_friendly=)
    GC.copy_on_write_friendly = true
end

require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)

# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:
# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired
require "dispatcher"
require "lsapi"

while LSAPI.accept != nil
	Dispatcher.dispatch
end
PKCH[�##B�B�'share/gems/gems/ruby-lsapi-5.6/setup.rbnu�[���#
# setup.rb
#
# Copyright (c) 2000-2005 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
#

unless Enumerable.method_defined?(:map)   # Ruby 1.4.6
  module Enumerable
    alias map collect
  end
end

unless File.respond_to?(:read)   # Ruby 1.6
  def File.read(fname)
    open(fname) {|f|
      return f.read
    }
  end
end

unless Errno.const_defined?(:ENOTEMPTY)   # Windows?
  module Errno
    class ENOTEMPTY
      # We do not raise this exception, implementation is not needed.
    end
  end
end

def File.binread(fname)
  open(fname, 'rb') {|f|
    return f.read
  }
end

# for corrupted Windows' stat(2)
def File.dir?(path)
  File.directory?((path[-1,1] == '/') ? path : path + '/')
end


class ConfigTable

  include Enumerable

  def initialize(rbconfig)
    @rbconfig = rbconfig
    @items = []
    @table = {}
    # options
    @install_prefix = nil
    @config_opt = nil
    @verbose = true
    @no_harm = false
  end

  attr_accessor :install_prefix
  attr_accessor :config_opt

  attr_writer :verbose

  def verbose?
    @verbose
  end

  attr_writer :no_harm

  def no_harm?
    @no_harm
  end

  def [](key)
    lookup(key).resolve(self)
  end

  def []=(key, val)
    lookup(key).set val
  end

  def names
    @items.map {|i| i.name }
  end

  def each(&block)
    @items.each(&block)
  end

  def key?(name)
    @table.key?(name)
  end

  def lookup(name)
    @table[name] or setup_rb_error "no such config item: #{name}"
  end

  def add(item)
    @items.push item
    @table[item.name] = item
  end

  def remove(name)
    item = lookup(name)
    @items.delete_if {|i| i.name == name }
    @table.delete_if {|name, i| i.name == name }
    item
  end

  def load_script(path, inst = nil)
    if File.file?(path)
      MetaConfigEnvironment.new(self, inst).instance_eval File.read(path), path
    end
  end

  def savefile
    '.config'
  end

  def load_savefile
    begin
      File.foreach(savefile()) do |line|
        k, v = *line.split(/=/, 2)
        self[k] = v.strip
      end
    rescue Errno::ENOENT
      setup_rb_error $!.message + "\n#{File.basename($0)} config first"
    end
  end

  def save
    @items.each {|i| i.value }
    File.open(savefile(), 'w') {|f|
      @items.each do |i|
        f.printf "%s=%s\n", i.name, i.value if i.value? and i.value
      end
    }
  end

  def load_standard_entries
    standard_entries(@rbconfig).each do |ent|
      add ent
    end
  end

  def standard_entries(rbconfig)
    c = rbconfig

    rubypath = File.join(c['bindir'], c['ruby_install_name'] + c['EXEEXT'])

    major = c['MAJOR'].to_i
    minor = c['MINOR'].to_i
    teeny = c['TEENY'].to_i
    version = "#{major}.#{minor}"

    # ruby ver. >= 1.4.4?
    newpath_p = ((major >= 2) or
                 ((major == 1) and
                  ((minor >= 5) or
                   ((minor == 4) and (teeny >= 4)))))

    if c['rubylibdir']
      # V > 1.6.3
      libruby         = "#{c['prefix']}/lib/ruby"
      librubyver      = c['rubylibdir']
      librubyverarch  = c['archdir']
      siteruby        = c['sitedir']
      siterubyver     = c['sitelibdir']
      siterubyverarch = c['sitearchdir']
    elsif newpath_p
      # 1.4.4 <= V <= 1.6.3
      libruby         = "#{c['prefix']}/lib/ruby"
      librubyver      = "#{c['prefix']}/lib/ruby/#{version}"
      librubyverarch  = "#{c['prefix']}/lib/ruby/#{version}/#{c['arch']}"
      siteruby        = c['sitedir']
      siterubyver     = "$siteruby/#{version}"
      siterubyverarch = "$siterubyver/#{c['arch']}"
    else
      # V < 1.4.4
      libruby         = "#{c['prefix']}/lib/ruby"
      librubyver      = "#{c['prefix']}/lib/ruby/#{version}"
      librubyverarch  = "#{c['prefix']}/lib/ruby/#{version}/#{c['arch']}"
      siteruby        = "#{c['prefix']}/lib/ruby/#{version}/site_ruby"
      siterubyver     = siteruby
      siterubyverarch = "$siterubyver/#{c['arch']}"
    end
    parameterize = lambda {|path|
      path.sub(/\A#{Regexp.quote(c['prefix'])}/, '$prefix')
    }

    if arg = c['configure_args'].split.detect {|arg| /--with-make-prog=/ =~ arg }
      makeprog = arg.sub(/'/, '').split(/=/, 2)[1]
    else
      makeprog = 'make'
    end

    [
      ExecItem.new('installdirs', 'std/site/home',
                   'std: install under libruby; site: install under site_ruby; home: install under $HOME')\
          {|val, table|
            case val
            when 'std'
              table['rbdir'] = '$librubyver'
              table['sodir'] = '$librubyverarch'
            when 'site'
              table['rbdir'] = '$siterubyver'
              table['sodir'] = '$siterubyverarch'
            when 'home'
              setup_rb_error '$HOME was not set' unless ENV['HOME']
              table['prefix'] = ENV['HOME']
              table['rbdir'] = '$libdir/ruby'
              table['sodir'] = '$libdir/ruby'
            end
          },
      PathItem.new('prefix', 'path', c['prefix'],
                   'path prefix of target environment'),
      PathItem.new('bindir', 'path', parameterize.call(c['bindir']),
                   'the directory for commands'),
      PathItem.new('libdir', 'path', parameterize.call(c['libdir']),
                   'the directory for libraries'),
      PathItem.new('datadir', 'path', parameterize.call(c['datadir']),
                   'the directory for shared data'),
      PathItem.new('mandir', 'path', parameterize.call(c['mandir']),
                   'the directory for man pages'),
      PathItem.new('sysconfdir', 'path', parameterize.call(c['sysconfdir']),
                   'the directory for system configuration files'),
      PathItem.new('localstatedir', 'path', parameterize.call(c['localstatedir']),
                   'the directory for local state data'),
      PathItem.new('libruby', 'path', libruby,
                   'the directory for ruby libraries'),
      PathItem.new('librubyver', 'path', librubyver,
                   'the directory for standard ruby libraries'),
      PathItem.new('librubyverarch', 'path', librubyverarch,
                   'the directory for standard ruby extensions'),
      PathItem.new('siteruby', 'path', siteruby,
          'the directory for version-independent aux ruby libraries'),
      PathItem.new('siterubyver', 'path', siterubyver,
                   'the directory for aux ruby libraries'),
      PathItem.new('siterubyverarch', 'path', siterubyverarch,
                   'the directory for aux ruby binaries'),
      PathItem.new('rbdir', 'path', '$siterubyver',
                   'the directory for ruby scripts'),
      PathItem.new('sodir', 'path', '$siterubyverarch',
                   'the directory for ruby extentions'),
      PathItem.new('rubypath', 'path', rubypath,
                   'the path to set to #! line'),
      ProgramItem.new('rubyprog', 'name', rubypath,
                      'the ruby program using for installation'),
      ProgramItem.new('makeprog', 'name', makeprog,
                      'the make program to compile ruby extentions'),
      SelectItem.new('shebang', 'all/ruby/never', 'ruby',
                     'shebang line (#!) editing mode'),
      BoolItem.new('without-ext', 'yes/no', 'no',
                   'does not compile/install ruby extentions')
    ]
  end
  private :standard_entries

  def load_multipackage_entries
    multipackage_entries().each do |ent|
      add ent
    end
  end

  def multipackage_entries
    [
      PackageSelectionItem.new('with', 'name,name...', '', 'ALL',
                               'package names that you want to install'),
      PackageSelectionItem.new('without', 'name,name...', '', 'NONE',
                               'package names that you do not want to install')
    ]
  end
  private :multipackage_entries

  ALIASES = {
    'std-ruby'         => 'librubyver',
    'stdruby'          => 'librubyver',
    'rubylibdir'       => 'librubyver',
    'archdir'          => 'librubyverarch',
    'site-ruby-common' => 'siteruby',     # For backward compatibility
    'site-ruby'        => 'siterubyver',  # For backward compatibility
    'bin-dir'          => 'bindir',
    'bin-dir'          => 'bindir',
    'rb-dir'           => 'rbdir',
    'so-dir'           => 'sodir',
    'data-dir'         => 'datadir',
    'ruby-path'        => 'rubypath',
    'ruby-prog'        => 'rubyprog',
    'ruby'             => 'rubyprog',
    'make-prog'        => 'makeprog',
    'make'             => 'makeprog'
  }

  def fixup
    ALIASES.each do |ali, name|
      @table[ali] = @table[name]
    end
    @items.freeze
    @table.freeze
    @options_re = /\A--(#{@table.keys.join('|')})(?:=(.*))?\z/
  end

  def parse_opt(opt)
    m = @options_re.match(opt) or setup_rb_error "config: unknown option #{opt}"
    m.to_a[1,2]
  end

  def dllext
    @rbconfig['DLEXT']
  end

  def value_config?(name)
    lookup(name).value?
  end

  class Item
    def initialize(name, template, default, desc)
      @name = name.freeze
      @template = template
      @value = default
      @default = default
      @description = desc
    end

    attr_reader :name
    attr_reader :description

    attr_accessor :default
    alias help_default default

    def help_opt
      "--#{@name}=#{@template}"
    end

    def value?
      true
    end

    def value
      @value
    end

    def resolve(table)
      @value.gsub(%r<\$([^/]+)>) { table[$1] }
    end

    def set(val)
      @value = check(val)
    end

    private

    def check(val)
      setup_rb_error "config: --#{name} requires argument" unless val
      val
    end
  end

  class BoolItem < Item
    def config_type
      'bool'
    end

    def help_opt
      "--#{@name}"
    end

    private

    def check(val)
      return 'yes' unless val
      case val
      when /\Ay(es)?\z/i, /\At(rue)?\z/i then 'yes'
      when /\An(o)?\z/i, /\Af(alse)\z/i  then 'no'
      else
        setup_rb_error "config: --#{@name} accepts only yes/no for argument"
      end
    end
  end

  class PathItem < Item
    def config_type
      'path'
    end

    private

    def check(path)
      setup_rb_error "config: --#{@name} requires argument"  unless path
      path[0,1] == '$' ? path : File.expand_path(path)
    end
  end

  class ProgramItem < Item
    def config_type
      'program'
    end
  end

  class SelectItem < Item
    def initialize(name, selection, default, desc)
      super
      @ok = selection.split('/')
    end

    def config_type
      'select'
    end

    private

    def check(val)
      unless @ok.include?(val.strip)
        setup_rb_error "config: use --#{@name}=#{@template} (#{val})"
      end
      val.strip
    end
  end

  class ExecItem < Item
    def initialize(name, selection, desc, &block)
      super name, selection, nil, desc
      @ok = selection.split('/')
      @action = block
    end

    def config_type
      'exec'
    end

    def value?
      false
    end

    def resolve(table)
      setup_rb_error "$#{name()} wrongly used as option value"
    end

    undef set

    def evaluate(val, table)
      v = val.strip.downcase
      unless @ok.include?(v)
        setup_rb_error "invalid option --#{@name}=#{val} (use #{@template})"
      end
      @action.call v, table
    end
  end

  class PackageSelectionItem < Item
    def initialize(name, template, default, help_default, desc)
      super name, template, default, desc
      @help_default = help_default
    end

    attr_reader :help_default

    def config_type
      'package'
    end

    private

    def check(val)
      unless File.dir?("packages/#{val}")
        setup_rb_error "config: no such package: #{val}"
      end
      val
    end
  end

  class MetaConfigEnvironment
    def initialize(config, installer)
      @config = config
      @installer = installer
    end

    def config_names
      @config.names
    end

    def config?(name)
      @config.key?(name)
    end

    def bool_config?(name)
      @config.lookup(name).config_type == 'bool'
    end

    def path_config?(name)
      @config.lookup(name).config_type == 'path'
    end

    def value_config?(name)
      @config.lookup(name).config_type != 'exec'
    end

    def add_config(item)
      @config.add item
    end

    def add_bool_config(name, default, desc)
      @config.add BoolItem.new(name, 'yes/no', default ? 'yes' : 'no', desc)
    end

    def add_path_config(name, default, desc)
      @config.add PathItem.new(name, 'path', default, desc)
    end

    def set_config_default(name, default)
      @config.lookup(name).default = default
    end

    def remove_config(name)
      @config.remove(name)
    end

    # For only multipackage
    def packages
      raise '[setup.rb fatal] multi-package metaconfig API packages() called for single-package; contact application package vendor' unless @installer
      @installer.packages
    end

    # For only multipackage
    def declare_packages(list)
      raise '[setup.rb fatal] multi-package metaconfig API declare_packages() called for single-package; contact application package vendor' unless @installer
      @installer.packages = list
    end
  end

end   # class ConfigTable


# This module requires: #verbose?, #no_harm?
module FileOperations

  def mkdir_p(dirname, prefix = nil)
    dirname = prefix + File.expand_path(dirname) if prefix
    $stderr.puts "mkdir -p #{dirname}" if verbose?
    return if no_harm?

    # Does not check '/', it's too abnormal.
    dirs = File.expand_path(dirname).split(%r<(?=/)>)
    if /\A[a-z]:\z/i =~ dirs[0]
      disk = dirs.shift
      dirs[0] = disk + dirs[0]
    end
    dirs.each_index do |idx|
      path = dirs[0..idx].join('')
      Dir.mkdir path unless File.dir?(path)
    end
  end

  def rm_f(path)
    $stderr.puts "rm -f #{path}" if verbose?
    return if no_harm?
    force_remove_file path
  end

  def rm_rf(path)
    $stderr.puts "rm -rf #{path}" if verbose?
    return if no_harm?
    remove_tree path
  end

  def remove_tree(path)
    if File.symlink?(path)
      remove_file path
    elsif File.dir?(path)
      remove_tree0 path
    else
      force_remove_file path
    end
  end

  def remove_tree0(path)
    Dir.foreach(path) do |ent|
      next if ent == '.'
      next if ent == '..'
      entpath = "#{path}/#{ent}"
      if File.symlink?(entpath)
        remove_file entpath
      elsif File.dir?(entpath)
        remove_tree0 entpath
      else
        force_remove_file entpath
      end
    end
    begin
      Dir.rmdir path
    rescue Errno::ENOTEMPTY
      # directory may not be empty
    end
  end

  def move_file(src, dest)
    force_remove_file dest
    begin
      File.rename src, dest
    rescue
      File.open(dest, 'wb') {|f|
        f.write File.binread(src)
      }
      File.chmod File.stat(src).mode, dest
      File.unlink src
    end
  end

  def force_remove_file(path)
    begin
      remove_file path
    rescue
    end
  end

  def remove_file(path)
    File.chmod 0777, path
    File.unlink path
  end

  def install(from, dest, mode, prefix = nil)
    $stderr.puts "install #{from} #{dest}" if verbose?
    return if no_harm?

    realdest = prefix ? prefix + File.expand_path(dest) : dest
    realdest = File.join(realdest, File.basename(from)) if File.dir?(realdest)
    str = File.binread(from)
    if diff?(str, realdest)
      verbose_off {
        rm_f realdest if File.exist?(realdest)
      }
      File.open(realdest, 'wb') {|f|
        f.write str
      }
      File.chmod mode, realdest

      File.open("#{objdir_root()}/InstalledFiles", 'a') {|f|
        if prefix
          f.puts realdest.sub(prefix, '')
        else
          f.puts realdest
        end
      }
    end
  end

  def diff?(new_content, path)
    return true unless File.exist?(path)
    new_content != File.binread(path)
  end

  def command(*args)
    $stderr.puts args.join(' ') if verbose?
    system(*args) or raise RuntimeError,
        "system(#{args.map{|a| a.inspect }.join(' ')}) failed"
  end

  def ruby(*args)
    command config('rubyprog'), *args
  end
  
  def make(task = nil)
    command(*[config('makeprog'), task].compact)
  end

  def extdir?(dir)
    File.exist?("#{dir}/MANIFEST") or File.exist?("#{dir}/extconf.rb")
  end

  def files_of(dir)
    Dir.open(dir) {|d|
      return d.select {|ent| File.file?("#{dir}/#{ent}") }
    }
  end

  DIR_REJECT = %w( . .. CVS SCCS RCS CVS.adm .svn )

  def directories_of(dir)
    Dir.open(dir) {|d|
      return d.select {|ent| File.dir?("#{dir}/#{ent}") } - DIR_REJECT
    }
  end

end


# This module requires: #srcdir_root, #objdir_root, #relpath
module HookScriptAPI

  def get_config(key)
    @config[key]
  end

  alias config get_config

  # obsolete: use metaconfig to change configuration
  def set_config(key, val)
    @config[key] = val
  end

  #
  # srcdir/objdir (works only in the package directory)
  #

  def curr_srcdir
    "#{srcdir_root()}/#{relpath()}"
  end

  def curr_objdir
    "#{objdir_root()}/#{relpath()}"
  end

  def srcfile(path)
    "#{curr_srcdir()}/#{path}"
  end

  def srcexist?(path)
    File.exist?(srcfile(path))
  end

  def srcdirectory?(path)
    File.dir?(srcfile(path))
  end
  
  def srcfile?(path)
    File.file?(srcfile(path))
  end

  def srcentries(path = '.')
    Dir.open("#{curr_srcdir()}/#{path}") {|d|
      return d.to_a - %w(. ..)
    }
  end

  def srcfiles(path = '.')
    srcentries(path).select {|fname|
      File.file?(File.join(curr_srcdir(), path, fname))
    }
  end

  def srcdirectories(path = '.')
    srcentries(path).select {|fname|
      File.dir?(File.join(curr_srcdir(), path, fname))
    }
  end

end


class ToplevelInstaller

  Version   = '3.4.1'
  Copyright = 'Copyright (c) 2000-2005 Minero Aoki'

  TASKS = [
    [ 'all',      'do config, setup, then install' ],
    [ 'config',   'saves your configurations' ],
    [ 'show',     'shows current configuration' ],
    [ 'setup',    'compiles ruby extentions and others' ],
    [ 'install',  'installs files' ],
    [ 'test',     'run all tests in test/' ],
    [ 'clean',    "does `make clean' for each extention" ],
    [ 'distclean',"does `make distclean' for each extention" ]
  ]

  def ToplevelInstaller.invoke
    config = ConfigTable.new(load_rbconfig())
    config.load_standard_entries
    config.load_multipackage_entries if multipackage?
    config.fixup
    klass = (multipackage?() ? ToplevelInstallerMulti : ToplevelInstaller)
    klass.new(File.dirname($0), config).invoke
  end

  def ToplevelInstaller.multipackage?
    File.dir?(File.dirname($0) + '/packages')
  end

  def ToplevelInstaller.load_rbconfig
    if arg = ARGV.detect {|arg| /\A--rbconfig=/ =~ arg }
      ARGV.delete(arg)
      load File.expand_path(arg.split(/=/, 2)[1])
      $".push 'rbconfig.rb'
    else
      require 'rbconfig'
    end
    ::Config::CONFIG
  end

  def initialize(ardir_root, config)
    @ardir = File.expand_path(ardir_root)
    @config = config
    # cache
    @valid_task_re = nil
  end

  def config(key)
    @config[key]
  end

  def inspect
    "#<#{self.class} #{__id__()}>"
  end

  def invoke
    run_metaconfigs
    case task = parsearg_global()
    when nil, 'all'
      parsearg_config
      init_installers
      exec_config
      exec_setup
      exec_install
    else
      case task
      when 'config', 'test'
        ;
      when 'clean', 'distclean'
        @config.load_savefile if File.exist?(@config.savefile)
      else
        @config.load_savefile
      end
      __send__ "parsearg_#{task}"
      init_installers
      __send__ "exec_#{task}"
    end
  end
  
  def run_metaconfigs
    @config.load_script "#{@ardir}/metaconfig"
  end

  def init_installers
    @installer = Installer.new(@config, @ardir, File.expand_path('.'))
  end

  #
  # Hook Script API bases
  #

  def srcdir_root
    @ardir
  end

  def objdir_root
    '.'
  end

  def relpath
    '.'
  end

  #
  # Option Parsing
  #

  def parsearg_global
    while arg = ARGV.shift
      case arg
      when /\A\w+\z/
        setup_rb_error "invalid task: #{arg}" unless valid_task?(arg)
        return arg
      when '-q', '--quiet'
        @config.verbose = false
      when '--verbose'
        @config.verbose = true
      when '--help'
        print_usage $stdout
        exit 0
      when '--version'
        puts "#{File.basename($0)} version #{Version}"
        exit 0
      when '--copyright'
        puts Copyright
        exit 0
      else
        setup_rb_error "unknown global option '#{arg}'"
      end
    end
    nil
  end

  def valid_task?(t)
    valid_task_re() =~ t
  end

  def valid_task_re
    @valid_task_re ||= /\A(?:#{TASKS.map {|task,desc| task }.join('|')})\z/
  end

  def parsearg_no_options
    unless ARGV.empty?
      task = caller(0).first.slice(%r<`parsearg_(\w+)'>, 1)
      setup_rb_error "#{task}: unknown options: #{ARGV.join(' ')}"
    end
  end

  alias parsearg_show       parsearg_no_options
  alias parsearg_setup      parsearg_no_options
  alias parsearg_test       parsearg_no_options
  alias parsearg_clean      parsearg_no_options
  alias parsearg_distclean  parsearg_no_options

  def parsearg_config
    evalopt = []
    set = []
    @config.config_opt = []
    while i = ARGV.shift
      if /\A--?\z/ =~ i
        @config.config_opt = ARGV.dup
        break
      end
      name, value = *@config.parse_opt(i)
      if @config.value_config?(name)
        @config[name] = value
      else
        evalopt.push [name, value]
      end
      set.push name
    end
    evalopt.each do |name, value|
      @config.lookup(name).evaluate value, @config
    end
    # Check if configuration is valid
    set.each do |n|
      @config[n] if @config.value_config?(n)
    end
  end

  def parsearg_install
    @config.no_harm = false
    @config.install_prefix = ''
    while a = ARGV.shift
      case a
      when '--no-harm'
        @config.no_harm = true
      when /\A--prefix=/
        path = a.split(/=/, 2)[1]
        path = File.expand_path(path) unless path[0,1] == '/'
        @config.install_prefix = path
      else
        setup_rb_error "install: unknown option #{a}"
      end
    end
  end

  def print_usage(out)
    out.puts 'Typical Installation Procedure:'
    out.puts "  $ ruby #{File.basename $0} config"
    out.puts "  $ ruby #{File.basename $0} setup"
    out.puts "  # ruby #{File.basename $0} install (may require root privilege)"
    out.puts
    out.puts 'Detailed Usage:'
    out.puts "  ruby #{File.basename $0} <global option>"
    out.puts "  ruby #{File.basename $0} [<global options>] <task> [<task options>]"

    fmt = "  %-24s %s\n"
    out.puts
    out.puts 'Global options:'
    out.printf fmt, '-q,--quiet',   'suppress message outputs'
    out.printf fmt, '   --verbose', 'output messages verbosely'
    out.printf fmt, '   --help',    'print this message'
    out.printf fmt, '   --version', 'print version and quit'
    out.printf fmt, '   --copyright',  'print copyright and quit'
    out.puts
    out.puts 'Tasks:'
    TASKS.each do |name, desc|
      out.printf fmt, name, desc
    end

    fmt = "  %-24s %s [%s]\n"
    out.puts
    out.puts 'Options for CONFIG or ALL:'
    @config.each do |item|
      out.printf fmt, item.help_opt, item.description, item.help_default
    end
    out.printf fmt, '--rbconfig=path', 'rbconfig.rb to load',"running ruby's"
    out.puts
    out.puts 'Options for INSTALL:'
    out.printf fmt, '--no-harm', 'only display what to do if given', 'off'
    out.printf fmt, '--prefix=path',  'install path prefix', ''
    out.puts
  end

  #
  # Task Handlers
  #

  def exec_config
    @installer.exec_config
    @config.save   # must be final
  end

  def exec_setup
    @installer.exec_setup
  end

  def exec_install
    @installer.exec_install
  end

  def exec_test
    @installer.exec_test
  end

  def exec_show
    @config.each do |i|
      printf "%-20s %s\n", i.name, i.value if i.value?
    end
  end

  def exec_clean
    @installer.exec_clean
  end

  def exec_distclean
    @installer.exec_distclean
  end

end   # class ToplevelInstaller


class ToplevelInstallerMulti < ToplevelInstaller

  include FileOperations

  def initialize(ardir_root, config)
    super
    @packages = directories_of("#{@ardir}/packages")
    raise 'no package exists' if @packages.empty?
    @root_installer = Installer.new(@config, @ardir, File.expand_path('.'))
  end

  def run_metaconfigs
    @config.load_script "#{@ardir}/metaconfig", self
    @packages.each do |name|
      @config.load_script "#{@ardir}/packages/#{name}/metaconfig"
    end
  end

  attr_reader :packages

  def packages=(list)
    raise 'package list is empty' if list.empty?
    list.each do |name|
      raise "directory packages/#{name} does not exist"\
              unless File.dir?("#{@ardir}/packages/#{name}")
    end
    @packages = list
  end

  def init_installers
    @installers = {}
    @packages.each do |pack|
      @installers[pack] = Installer.new(@config,
                                       "#{@ardir}/packages/#{pack}",
                                       "packages/#{pack}")
    end
    with    = extract_selection(config('with'))
    without = extract_selection(config('without'))
    @selected = @installers.keys.select {|name|
                  (with.empty? or with.include?(name)) \
                      and not without.include?(name)
                }
  end

  def extract_selection(list)
    a = list.split(/,/)
    a.each do |name|
      setup_rb_error "no such package: #{name}"  unless @installers.key?(name)
    end
    a
  end

  def print_usage(f)
    super
    f.puts 'Inluded packages:'
    f.puts '  ' + @packages.sort.join(' ')
    f.puts
  end

  #
  # Task Handlers
  #

  def exec_config
    run_hook 'pre-config'
    each_selected_installers {|inst| inst.exec_config }
    run_hook 'post-config'
    @config.save   # must be final
  end

  def exec_setup
    run_hook 'pre-setup'
    each_selected_installers {|inst| inst.exec_setup }
    run_hook 'post-setup'
  end

  def exec_install
    run_hook 'pre-install'
    each_selected_installers {|inst| inst.exec_install }
    run_hook 'post-install'
  end

  def exec_test
    run_hook 'pre-test'
    each_selected_installers {|inst| inst.exec_test }
    run_hook 'post-test'
  end

  def exec_clean
    rm_f @config.savefile
    run_hook 'pre-clean'
    each_selected_installers {|inst| inst.exec_clean }
    run_hook 'post-clean'
  end

  def exec_distclean
    rm_f @config.savefile
    run_hook 'pre-distclean'
    each_selected_installers {|inst| inst.exec_distclean }
    run_hook 'post-distclean'
  end

  #
  # lib
  #

  def each_selected_installers
    Dir.mkdir 'packages' unless File.dir?('packages')
    @selected.each do |pack|
      $stderr.puts "Processing the package `#{pack}' ..." if verbose?
      Dir.mkdir "packages/#{pack}" unless File.dir?("packages/#{pack}")
      Dir.chdir "packages/#{pack}"
      yield @installers[pack]
      Dir.chdir '../..'
    end
  end

  def run_hook(id)
    @root_installer.run_hook id
  end

  # module FileOperations requires this
  def verbose?
    @config.verbose?
  end

  # module FileOperations requires this
  def no_harm?
    @config.no_harm?
  end

end   # class ToplevelInstallerMulti


class Installer

  FILETYPES = %w( bin lib ext data conf man )

  include FileOperations
  include HookScriptAPI

  def initialize(config, srcroot, objroot)
    @config = config
    @srcdir = File.expand_path(srcroot)
    @objdir = File.expand_path(objroot)
    @currdir = '.'
  end

  def inspect
    "#<#{self.class} #{File.basename(@srcdir)}>"
  end

  def noop(rel)
  end

  #
  # Hook Script API base methods
  #

  def srcdir_root
    @srcdir
  end

  def objdir_root
    @objdir
  end

  def relpath
    @currdir
  end

  #
  # Config Access
  #

  # module FileOperations requires this
  def verbose?
    @config.verbose?
  end

  # module FileOperations requires this
  def no_harm?
    @config.no_harm?
  end

  def verbose_off
    begin
      save, @config.verbose = @config.verbose?, false
      yield
    ensure
      @config.verbose = save
    end
  end

  #
  # TASK config
  #

  def exec_config
    exec_task_traverse 'config'
  end

  alias config_dir_bin noop
  alias config_dir_lib noop

  def config_dir_ext(rel)
    extconf if extdir?(curr_srcdir())
  end

  alias config_dir_data noop
  alias config_dir_conf noop
  alias config_dir_man noop

  def extconf
    ruby "#{curr_srcdir()}/extconf.rb", *@config.config_opt
  end

  #
  # TASK setup
  #

  def exec_setup
    exec_task_traverse 'setup'
  end

  def setup_dir_bin(rel)
    files_of(curr_srcdir()).each do |fname|
      update_shebang_line "#{curr_srcdir()}/#{fname}"
    end
  end

  alias setup_dir_lib noop

  def setup_dir_ext(rel)
    make if extdir?(curr_srcdir())
  end

  alias setup_dir_data noop
  alias setup_dir_conf noop
  alias setup_dir_man noop

  def update_shebang_line(path)
    return if no_harm?
    return if config('shebang') == 'never'
    old = Shebang.load(path)
    if old
      $stderr.puts "warning: #{path}: Shebang line includes too many args.  It is not portable and your program may not work." if old.args.size > 1
      new = new_shebang(old)
      return if new.to_s == old.to_s
    else
      return unless config('shebang') == 'all'
      new = Shebang.new(config('rubypath'))
    end
    $stderr.puts "updating shebang: #{File.basename(path)}" if verbose?
    open_atomic_writer(path) {|output|
      File.open(path, 'rb') {|f|
        f.gets if old   # discard
        output.puts new.to_s
        output.print f.read
      }
    }
  end

  def new_shebang(old)
    if /\Aruby/ =~ File.basename(old.cmd)
      Shebang.new(config('rubypath'), old.args)
    elsif File.basename(old.cmd) == 'env' and old.args.first == 'ruby'
      Shebang.new(config('rubypath'), old.args[1..-1])
    else
      return old unless config('shebang') == 'all'
      Shebang.new(config('rubypath'))
    end
  end

  def open_atomic_writer(path, &block)
    tmpfile = File.basename(path) + '.tmp'
    begin
      File.open(tmpfile, 'wb', &block)
      File.rename tmpfile, File.basename(path)
    ensure
      File.unlink tmpfile if File.exist?(tmpfile)
    end
  end

  class Shebang
    def Shebang.load(path)
      line = nil
      File.open(path) {|f|
        line = f.gets
      }
      return nil unless /\A#!/ =~ line
      parse(line)
    end

    def Shebang.parse(line)
      cmd, *args = *line.strip.sub(/\A\#!/, '').split(' ')
      new(cmd, args)
    end

    def initialize(cmd, args = [])
      @cmd = cmd
      @args = args
    end

    attr_reader :cmd
    attr_reader :args

    def to_s
      "#! #{@cmd}" + (@args.empty? ? '' : " #{@args.join(' ')}")
    end
  end

  #
  # TASK install
  #

  def exec_install
    rm_f 'InstalledFiles'
    exec_task_traverse 'install'
  end

  def install_dir_bin(rel)
    install_files targetfiles(), "#{config('bindir')}/#{rel}", 0755
  end

  def install_dir_lib(rel)
    install_files libfiles(), "#{config('rbdir')}/#{rel}", 0644
  end

  def install_dir_ext(rel)
    return unless extdir?(curr_srcdir())
    install_files rubyextentions('.'),
                  "#{config('sodir')}/#{File.dirname(rel)}",
                  0555
  end

  def install_dir_data(rel)
    install_files targetfiles(), "#{config('datadir')}/#{rel}", 0644
  end

  def install_dir_conf(rel)
    # FIXME: should not remove current config files
    # (rename previous file to .old/.org)
    install_files targetfiles(), "#{config('sysconfdir')}/#{rel}", 0644
  end

  def install_dir_man(rel)
    install_files targetfiles(), "#{config('mandir')}/#{rel}", 0644
  end

  def install_files(list, dest, mode)
    mkdir_p dest, @config.install_prefix
    list.each do |fname|
      install fname, dest, mode, @config.install_prefix
    end
  end

  def libfiles
    glob_reject(%w(*.y *.output), targetfiles())
  end

  def rubyextentions(dir)
    ents = glob_select("*.#{@config.dllext}", targetfiles())
    if ents.empty?
      setup_rb_error "no ruby extention exists: 'ruby #{$0} setup' first"
    end
    ents
  end

  def targetfiles
    mapdir(existfiles() - hookfiles())
  end

  def mapdir(ents)
    ents.map {|ent|
      if File.exist?(ent)
      then ent                         # objdir
      else "#{curr_srcdir()}/#{ent}"   # srcdir
      end
    }
  end

  # picked up many entries from cvs-1.11.1/src/ignore.c
  JUNK_FILES = %w( 
    core RCSLOG tags TAGS .make.state
    .nse_depinfo #* .#* cvslog.* ,* .del-* *.olb
    *~ *.old *.bak *.BAK *.orig *.rej _$* *$

    *.org *.in .*
  )

  def existfiles
    glob_reject(JUNK_FILES, (files_of(curr_srcdir()) | files_of('.')))
  end

  def hookfiles
    %w( pre-%s post-%s pre-%s.rb post-%s.rb ).map {|fmt|
      %w( config setup install clean ).map {|t| sprintf(fmt, t) }
    }.flatten
  end

  def glob_select(pat, ents)
    re = globs2re([pat])
    ents.select {|ent| re =~ ent }
  end

  def glob_reject(pats, ents)
    re = globs2re(pats)
    ents.reject {|ent| re =~ ent }
  end

  GLOB2REGEX = {
    '.' => '\.',
    '$' => '\$',
    '#' => '\#',
    '*' => '.*'
  }

  def globs2re(pats)
    /\A(?:#{
      pats.map {|pat| pat.gsub(/[\.\$\#\*]/) {|ch| GLOB2REGEX[ch] } }.join('|')
    })\z/
  end

  #
  # TASK test
  #

  TESTDIR = 'test'

  def exec_test
    unless File.directory?('test')
      $stderr.puts 'no test in this package' if verbose?
      return
    end
    $stderr.puts 'Running tests...' if verbose?
    begin
      require 'test/unit'
    rescue LoadError
      setup_rb_error 'test/unit cannot loaded.  You need Ruby 1.8 or later to invoke this task.'
    end
    runner = Test::Unit::AutoRunner.new(true)
    runner.to_run << TESTDIR
    runner.run
  end

  #
  # TASK clean
  #

  def exec_clean
    exec_task_traverse 'clean'
    rm_f @config.savefile
    rm_f 'InstalledFiles'
  end

  alias clean_dir_bin noop
  alias clean_dir_lib noop
  alias clean_dir_data noop
  alias clean_dir_conf noop
  alias clean_dir_man noop

  def clean_dir_ext(rel)
    return unless extdir?(curr_srcdir())
    make 'clean' if File.file?('Makefile')
  end

  #
  # TASK distclean
  #

  def exec_distclean
    exec_task_traverse 'distclean'
    rm_f @config.savefile
    rm_f 'InstalledFiles'
  end

  alias distclean_dir_bin noop
  alias distclean_dir_lib noop

  def distclean_dir_ext(rel)
    return unless extdir?(curr_srcdir())
    make 'distclean' if File.file?('Makefile')
  end

  alias distclean_dir_data noop
  alias distclean_dir_conf noop
  alias distclean_dir_man noop

  #
  # Traversing
  #

  def exec_task_traverse(task)
    run_hook "pre-#{task}"
    FILETYPES.each do |type|
      if type == 'ext' and config('without-ext') == 'yes'
        $stderr.puts 'skipping ext/* by user option' if verbose?
        next
      end
      traverse task, type, "#{task}_dir_#{type}"
    end
    run_hook "post-#{task}"
  end

  def traverse(task, rel, mid)
    dive_into(rel) {
      run_hook "pre-#{task}"
      __send__ mid, rel.sub(%r[\A.*?(?:/|\z)], '')
      directories_of(curr_srcdir()).each do |d|
        traverse task, "#{rel}/#{d}", mid
      end
      run_hook "post-#{task}"
    }
  end

  def dive_into(rel)
    return unless File.dir?("#{@srcdir}/#{rel}")

    dir = File.basename(rel)
    Dir.mkdir dir unless File.dir?(dir)
    prevdir = Dir.pwd
    Dir.chdir dir
    $stderr.puts '---> ' + rel if verbose?
    @currdir = rel
    yield
    Dir.chdir prevdir
    $stderr.puts '<--- ' + rel if verbose?
    @currdir = File.dirname(rel)
  end

  def run_hook(id)
    path = [ "#{curr_srcdir()}/#{id}",
             "#{curr_srcdir()}/#{id}.rb" ].detect {|cand| File.file?(cand) }
    return unless path
    begin
      instance_eval File.read(path), path, 1
    rescue
      raise if $DEBUG
      setup_rb_error "hook #{path} failed:\n" + $!.message
    end
  end

end   # class Installer


class SetupError < StandardError; end

def setup_rb_error(msg)
  raise SetupError, msg
end

if $0 == __FILE__
  begin
    ToplevelInstaller.invoke
  rescue SetupError
    raise if $DEBUG
    $stderr.puts $!.message
    $stderr.puts "Try 'ruby #{$0} --help' for detailed usage."
    exit 1
  end
end
PKCH[whf:��,share/gems/gems/ruby-lsapi-5.6/lsapi.gemspecnu�[���Gem::Specification.new do |s|
  s.name = %q{ruby-lsapi}
  s.version = "5.6"
  s.date = %q{2024-01-22}
  s.description = "This is a ruby extension for fast communication with LiteSpeed Web Server."
  s.summary = %q{A ruby extension for fast communication with LiteSpeed Web Server.}
  s.has_rdoc = false
  s.authors = ["LiteSpeed Technologies Inc."]
  s.email = "info@litespeedtech.com"
  s.homepage = "http://www.litespeedtech.com/"
  s.rubyforge_project = "ruby-lsapi"
  s.files = ["lsapi.gemspec", "README", "examples", "examples/testlsapi.rb", "examples/lsapi_with_cgi.rb", "ext", "ext/lsapi", "ext/lsapi/extconf.rb", "ext/lsapi/lsapidef.h", "ext/lsapi/lsapilib.c", "ext/lsapi/lsapilib.h", "ext/lsapi/lsruby.c", "rails", "rails/dispatch.lsapi", "scripts", "scripts/lsruby_runner.rb", "setup.rb"]
  s.extra_rdoc_files = ["README"]
  s.extensions << "ext/lsapi/extconf.rb"
  s.require_paths << "lib"
end
PKCH[ǻ��ii'share/gems/gems/rackup-2.1.0/bin/rackupnuȯ��#!/usr/bin/env ruby
# frozen_string_literal: true

require_relative "../lib/rackup"
Rackup::Server.start
PKCH[e
�ee(share/gems/gems/rackup-2.1.0/security.mdnu�[���# Security Policy

Please see our main security policy: https://github.com/rack/rack/security/policy
PKCH[z����'share/gems/gems/rackup-2.1.0/license.mdnu�[���# MIT License

Copyright, 2007-2009, by Leah Neukirchen.  
Copyright, 2008, by Marc-André Cournoyer.  
Copyright, 2009, by Aaron Pfeifer.  
Copyright, 2009-2010, by Megan Batty.  
Copyright, 2009-2010, by Michael Fellinger.  
Copyright, 2009, by Genki Takiuchi.  
Copyright, 2009, by Joshua Peek.  
Copyright, 2009, by Yehuda Katz + Carl Lerche.  
Copyright, 2009, by Carl Lerche.  
Copyright, 2010, by Julik Tarkhanov.  
Copyright, 2010-2016, by James Tucker.  
Copyright, 2010, by Timur Batyrshin.  
Copyright, 2010, by Loren Segal.  
Copyright, 2010, by Andrew Bortz.  
Copyright, 2010, by John Barnette.  
Copyright, 2010, by John Sumsion.  
Copyright, 2011-2018, by Aaron Patterson.  
Copyright, 2011, by Konstantin Haase.  
Copyright, 2011, by Blake Mizerany.  
Copyright, 2011, by Tsutomu Kuroda.  
Copyright, 2012, by Jean Boussier.  
Copyright, 2012, by Trevor Wennblom.  
Copyright, 2012, by Anurag Priyam.  
Copyright, 2012, by Hrvoje Šimić.  
Copyright, 2013, by Uchio KONDO.  
Copyright, 2013, by Tim Moore.  
Copyright, 2013, by Postmodern.  
Copyright, 2013, by Bas Vodde.  
Copyright, 2013, by Joe Fiorini.  
Copyright, 2014, by Wyatt Pan.  
Copyright, 2014, by Lenny Marks.  
Copyright, 2014, by Igor Bochkariov.  
Copyright, 2014, by Max Cantor.  
Copyright, 2014, by David Celis.  
Copyright, 2014, by Rafael Mendonça França.  
Copyright, 2014, by Jeremy Kemper.  
Copyright, 2014, by Richard Schneeman.  
Copyright, 2015, by Peter Wilmott.  
Copyright, 2015, by Sean McGivern.  
Copyright, 2015, by Tadashi Saito.  
Copyright, 2015, by deepj.  
Copyright, 2015, by Zachary Scott.  
Copyright, 2016, by Sophie Deziel.  
Copyright, 2016, by Kazuya Hotta.  
Copyright, 2017, by Ryunosuke Sato.  
Copyright, 2017-2023, by Samuel Williams.  
Copyright, 2018, by Dillon Welch.  
Copyright, 2018, by Yoshiyuki Hirano.  
Copyright, 2018, by Nick LaMuro.  
Copyright, 2019, by Rafael França.  
Copyright, 2019, by Krzysztof Rybka.  
Copyright, 2019, by Misaki Shioi.  
Copyright, 2020-2022, by Jeremy Evans.  
Copyright, 2021, by Katsuhiko YOSHIDA.  
Copyright, 2021, by KS.  
Copyright, 2021, by Stephen Paul Weber.  
Copyright, 2022, by Akira Matsuda.  
Copyright, 2022, by Andrew Hoglund.  

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
PKCH[�F��;;2share/gems/gems/rackup-2.1.0/lib/rackup/handler.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

module Rackup
  # *Handlers* connect web servers with Rack.
  #
  # Rackup includes Handlers for WEBrick and CGI.
  #
  # Handlers usually are activated by calling <tt>MyHandler.run(myapp)</tt>.
  # A second optional hash can be passed to include server-specific
  # configuration.
  module Handler
    @handlers = {}

    # Register a named handler class.
    def self.register(name, klass)
      if klass.is_a?(String)
        warn "Calling Rackup::Handler.register with a string is deprecated, use the class/module itself.", uplevel: 1

        klass = self.const_get(klass, false)
      end

      name = name.to_sym

      @handlers[name] = klass
    end

    def self.[](name)
      name = name.to_sym

      begin
        @handlers[name] || self.const_get(name, false)
      rescue NameError
        # Ignore.
      end
    end

    def self.get(name)
      return nil unless name

      name = name.to_sym

      if server = self[name]
        return server
      end

      begin
        require_handler("rackup/handler", name)
      rescue LoadError
        require_handler("rack/handler", name)
      end

      return self[name]
    end

    RACK_HANDLER = 'RACK_HANDLER'
    RACKUP_HANDLER = 'RACKUP_HANDLER'

    SERVER_NAMES = %i(puma falcon webrick).freeze
    private_constant :SERVER_NAMES

    # Select first available Rack handler given an `Array` of server names.
    # Raises `LoadError` if no handler was found.
    #
    #   > pick ['puma', 'webrick']
    #   => Rackup::Handler::WEBrick
    def self.pick(server_names)
      server_names = Array(server_names)

      server_names.each do |server_name|
        begin
          server = self.get(server_name)
         return server if server
        rescue LoadError
          # Ignore.
        end
      end

      raise LoadError, "Couldn't find handler for: #{server_names.join(', ')}."
    end

    def self.default
      if rack_handler = ENV[RACKUP_HANDLER]
        self.get(rack_handler)
      elsif rack_handler = ENV[RACK_HANDLER]
        warn "RACK_HANDLER is deprecated, use RACKUP_HANDLER."
        self.get(rack_handler)
      else
        pick SERVER_NAMES
      end
    end

    # Transforms server-name constants to their canonical form as filenames,
    # then tries to require them but silences the LoadError if not found
    #
    # Naming convention:
    #
    #   Foo # => 'foo'
    #   FooBar # => 'foo_bar.rb'
    #   FooBAR # => 'foobar.rb'
    #   FOObar # => 'foobar.rb'
    #   FOOBAR # => 'foobar.rb'
    #   FooBarBaz # => 'foo_bar_baz.rb'
    def self.require_handler(prefix, const_name)
      file = const_name.to_s.gsub(/^[A-Z]+/) { |pre| pre.downcase }.
        gsub(/[A-Z]+[^A-Z]/, '_\&').downcase

      require(::File.join(prefix, file))
    end
  end
end
PKCH[���|��:share/gems/gems/rackup-2.1.0/lib/rackup/handler/webrick.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.
# Copyright, 2022, by Jeremy Evans.

require 'webrick'
require 'stringio'

require 'rack/constants'
require_relative '../handler'
require_relative '../version'

require_relative '../stream'

module Rackup
  module Handler
    class WEBrick < ::WEBrick::HTTPServlet::AbstractServlet
      def self.run(app, **options)
        environment  = ENV['RACK_ENV'] || 'development'
        default_host = environment == 'development' ? 'localhost' : nil

        if !options[:BindAddress] || options[:Host]
          options[:BindAddress] = options.delete(:Host) || default_host
        end
        options[:Port] ||= 8080
        if options[:SSLEnable]
          require 'webrick/https'
        end

        @server = ::WEBrick::HTTPServer.new(options)
        @server.mount "/", Rackup::Handler::WEBrick, app
        yield @server if block_given?
        @server.start
      end

      def self.valid_options
        environment  = ENV['RACK_ENV'] || 'development'
        default_host = environment == 'development' ? 'localhost' : '0.0.0.0'

        {
          "Host=HOST" => "Hostname to listen on (default: #{default_host})",
          "Port=PORT" => "Port to listen on (default: 8080)",
        }
      end

      def self.shutdown
        if @server
          @server.shutdown
          @server = nil
        end
      end

      def initialize(server, app)
        super server
        @app = app
      end

      # This handles mapping the WEBrick request to a Rack input stream.
      class Input
        include Stream::Reader

        def initialize(request)
          @request = request

          @reader = Fiber.new do
            @request.body do |chunk|
              Fiber.yield(chunk)
            end

            Fiber.yield(nil)

            # End of stream:
            @reader = nil
          end
        end

        def close
          @request = nil
          @reader = nil
        end

        private

        # Read one chunk from the request body.
        def read_next
          @reader&.resume
        end
      end

      def service(req, res)
        env = req.meta_vars
        env.delete_if { |k, v| v.nil? }

        input = Input.new(req)

        env.update(
          ::Rack::RACK_INPUT => input,
          ::Rack::RACK_ERRORS => $stderr,
          ::Rack::RACK_URL_SCHEME => ["yes", "on", "1"].include?(env[::Rack::HTTPS]) ? "https" : "http",
          ::Rack::RACK_IS_HIJACK => true,
        )

        env[::Rack::QUERY_STRING] ||= ""
        unless env[::Rack::PATH_INFO] == ""
          path, n = req.request_uri.path, env[::Rack::SCRIPT_NAME].length
          env[::Rack::PATH_INFO] = path[n, path.length - n]
        end
        env[::Rack::REQUEST_PATH] ||= [env[::Rack::SCRIPT_NAME], env[::Rack::PATH_INFO]].join

        status, headers, body = @app.call(env)
        begin
          res.status = status

          if value = headers[::Rack::RACK_HIJACK]
            io_lambda = value
            body = nil
          elsif !body.respond_to?(:to_path) && !body.respond_to?(:each)
            io_lambda = body
            body = nil
          end

          if value = headers.delete('set-cookie')
            res.cookies.concat(Array(value))
          end

          headers.each do |key, value|
            # Skip keys starting with rack., per Rack SPEC
            next if key.start_with?('rack.')

            # Since WEBrick won't accept repeated headers,
            # merge the values per RFC 1945 section 4.2.
            value = value.join(", ") if Array === value
            res[key] = value
          end

          if io_lambda
            protocol = headers['rack.protocol'] || headers['upgrade']

            if protocol
              # Set all the headers correctly for an upgrade response:
              res.upgrade!(protocol)
            end
            res.body = io_lambda
          elsif body.respond_to?(:to_path)
            res.body = ::File.open(body.to_path, 'rb')
          else
            buffer = String.new
            body.each do |part|
              buffer << part
            end
            res.body = buffer
          end
        ensure
          body.close if body.respond_to?(:close)
        end
      end
    end

    register :webrick, WEBrick
  end
end
PKCH[���HH6share/gems/gems/rackup-2.1.0/lib/rackup/handler/cgi.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

module Rackup
  module Handler
    class CGI
      include Rack

      def self.run(app, **options)
        $stdin.binmode
        serve app
      end

      def self.serve(app)
        env = ENV.to_hash
        env.delete "HTTP_CONTENT_LENGTH"

        env[SCRIPT_NAME] = ""  if env[SCRIPT_NAME] == "/"

        env.update(
          RACK_INPUT        => $stdin,
          RACK_ERRORS       => $stderr,
          RACK_URL_SCHEME   => ["yes", "on", "1"].include?(ENV[HTTPS]) ? "https" : "http"
        )

        env[QUERY_STRING] ||= ""
        env[REQUEST_PATH] ||= "/"

        status, headers, body = app.call(env)
        begin
          send_headers status, headers
          send_body body
        ensure
          body.close  if body.respond_to? :close
        end
      end

      def self.send_headers(status, headers)
        $stdout.print "Status: #{status}\r\n"
        headers.each { |k, vs|
          vs.split("\n").each { |v|
            $stdout.print "#{k}: #{v}\r\n"
          }
        }
        $stdout.print "\r\n"
        $stdout.flush
      end

      def self.send_body(body)
        body.each { |part|
          $stdout.print part
          $stdout.flush
        }
      end
    end

    register :cgi, CGI
  end
end
PKCH[lo|	��1share/gems/gems/rackup-2.1.0/lib/rackup/stream.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2022, by Samuel Williams.

module Rackup
  # The input stream is an IO-like object which contains the raw HTTP POST data. When applicable, its external encoding must be “ASCII-8BIT” and it must be opened in binary mode, for Ruby 1.9 compatibility. The input stream must respond to gets, each, read and rewind.
  class Stream
    def initialize(input = nil, output = Buffered.new)
      @input = input
      @output = output

      raise ArgumentError, "Non-writable output!" unless output.respond_to?(:write)

      # Will hold remaining data in `#read`.
      @buffer = nil
      @closed = false
    end

    attr :input
    attr :output

    # This provides a read-only interface for data, which is surprisingly tricky to implement correctly.
    module Reader
      # rack.hijack_io must respond to:
      # read, write, read_nonblock, write_nonblock, flush, close, close_read, close_write, closed?

      # read behaves like IO#read. Its signature is read([length, [buffer]]). If given, length must be a non-negative Integer (>= 0) or nil, and buffer must be a String and may not be nil. If length is given and not nil, then this method reads at most length bytes from the input stream. If length is not given or nil, then this method reads all data until EOF. When EOF is reached, this method returns nil if length is given and not nil, or “” if length is not given or is nil. If buffer is given, then the read data will be placed into buffer instead of a newly created String object.
      # @param length [Integer] the amount of data to read
      # @param buffer [String] the buffer which will receive the data
      # @return a buffer containing the data
      def read(length = nil, buffer = nil)
        return '' if length == 0

        buffer ||= String.new.force_encoding(Encoding::BINARY)

        # Take any previously buffered data and replace it into the given buffer.
        if @buffer
          buffer.replace(@buffer)
          @buffer = nil
        else
          buffer.clear
        end

        if length
          while buffer.bytesize < length and chunk = read_next
            buffer << chunk
          end

          # This ensures the subsequent `slice!` works correctly.
          buffer.force_encoding(Encoding::BINARY)

          # This will be at least one copy:
          @buffer = buffer.byteslice(length, buffer.bytesize)

          # This should be zero-copy:
          buffer.slice!(length, buffer.bytesize)

          if buffer.empty?
            return nil
          else
            return buffer
          end
        else
          while chunk = read_next
            buffer << chunk
          end

          return buffer
        end
      end

      # Read at most `length` bytes from the stream. Will avoid reading from the underlying stream if possible.
      def read_partial(length = nil)
        if @buffer
          buffer = @buffer
          @buffer = nil
        else
          buffer = read_next
        end

        if buffer and length
          if buffer.bytesize > length
            # This ensures the subsequent `slice!` works correctly.
            buffer.force_encoding(Encoding::BINARY)

            @buffer = buffer.byteslice(length, buffer.bytesize)
            buffer.slice!(length, buffer.bytesize)
          end
        end

        return buffer
      end

      def gets
        read_partial
      end

      def each
        while chunk = read_partial
          yield chunk
        end
      end

      def read_nonblock(length, buffer = nil)
        @buffer ||= read_next
        chunk = nil

        unless @buffer
          buffer&.clear
          return
        end

        if @buffer.bytesize > length
          chunk = @buffer.byteslice(0, length)
          @buffer = @buffer.byteslice(length, @buffer.bytesize)
        else
          chunk = @buffer
          @buffer = nil
        end

        if buffer
          buffer.replace(chunk)
        else
          buffer = chunk
        end

        return buffer
      end
    end

    include Reader

    def write(buffer)
      if @output
        @output.write(buffer)
        return buffer.bytesize
      else
        raise IOError, "Stream is not writable, output has been closed!"
      end
    end

    def write_nonblock(buffer)
      write(buffer)
    end

    def <<(buffer)
      write(buffer)
    end

    def flush
    end

    def close_read
      @input&.close
      @input = nil
    end

    # close must never be called on the input stream. huh?
    def close_write
      if @output.respond_to?(:close)
        @output&.close
      end

      @output = nil
    end

    # Close the input and output bodies.
    def close(error = nil)
      self.close_read
      self.close_write

      return nil
    ensure
      @closed = true
    end

    # Whether the stream has been closed.
    def closed?
      @closed
    end

    # Whether there are any output chunks remaining?
    def empty?
      @output.empty?
    end

    private

    def read_next
      if @input
        return @input.read
      else
        @input = nil
        raise IOError, "Stream is not readable, input has been closed!"
      end
    end
  end
end
PKCH[�����2share/gems/gems/rackup-2.1.0/lib/rackup/lobster.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

require 'zlib'

require 'rack/constants'
require 'rack/request'
require 'rack/response'

module Rackup
  # Paste has a Pony, Rack has a Lobster!
  class Lobster
    include Rack

    LobsterString = Zlib::Inflate.inflate("eJx9kEEOwyAMBO99xd7MAcytUhPlJyj2
    P6jy9i4k9EQyGAnBarEXeCBqSkntNXsi/ZCvC48zGQoZKikGrFMZvgS5ZHd+aGWVuWwhVF0
    t1drVmiR42HcWNz5w3QanT+2gIvTVCiE1lm1Y0eU4JGmIIbaKwextKn8rvW+p5PIwFl8ZWJ
    I8jyiTlhTcYXkekJAzTyYN6E08A+dk8voBkAVTJQ==".delete("\n ").unpack("m*")[0])

    LambdaLobster = lambda { |env|
      if env[QUERY_STRING].include?("flip")
        lobster = LobsterString.split("\n").
          map { |line| line.ljust(42).reverse }.
          join("\n")
        href = "?"
      else
        lobster = LobsterString
        href = "?flip"
      end

      content = ["<title>Lobstericious!</title>",
                 "<pre>", lobster, "</pre>",
                 "<a href='#{href}'>flip!</a>"]
      length = content.inject(0) { |a, e| a + e.size }.to_s
      [200, { CONTENT_TYPE => "text/html", CONTENT_LENGTH => length }, content]
    }

    def call(env)
      req = Request.new(env)
      if req.GET["flip"] == "left"
        lobster = LobsterString.split("\n").map do |line|
          line.ljust(42).reverse.
            gsub('\\', 'TEMP').
            gsub('/', '\\').
            gsub('TEMP', '/').
            gsub('{', '}').
            gsub('(', ')')
        end.join("\n")
        href = "?flip=right"
      elsif req.GET["flip"] == "crash"
        raise "Lobster crashed"
      else
        lobster = LobsterString
        href = "?flip=left"
      end

      res = Response.new
      res.write "<title>Lobstericious!</title>"
      res.write "<pre>"
      res.write lobster
      res.write "</pre>"
      res.write "<p><a href='#{href}'>flip!</a></p>"
      res.write "<p><a href='?flip=crash'>crash!</a></p>"
      res.finish
    end

  end
end

if $0 == __FILE__
  # :nocov:
  require_relative 'server'
  require_relative 'show_exceptions'
  require_relative 'lint'
  Rackup::Server.start(
    app: Rack::ShowExceptions.new(Rack::Lint.new(Rackup::Lobster.new)), Port: 9292
  )
  # :nocov:
end
PKCH[�cϛ��2share/gems/gems/rackup-2.1.0/lib/rackup/version.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

module Rackup
  VERSION = "2.1.0"
end
PKCH[/�:�4�41share/gems/gems/rackup-2.1.0/lib/rackup/server.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

require 'optparse'
require 'fileutils'

require 'rack/builder'
require 'rack/common_logger'
require 'rack/content_length'
require 'rack/show_exceptions'
require 'rack/lint'
require 'rack/tempfile_reaper'

require 'rack/version'

require_relative 'version'
require_relative 'handler'

module Rackup
  class Server
    class Options
      def parse!(args)
        options = {}
        opt_parser = OptionParser.new("", 24, '  ') do |opts|
          opts.banner = "Usage: rackup [ruby options] [rack options] [rackup config]"

          opts.separator ""
          opts.separator "Ruby options:"

          lineno = 1
          opts.on("-e", "--eval LINE", "evaluate a LINE of code") { |line|
            eval line, TOPLEVEL_BINDING, "-e", lineno
            lineno += 1
          }

          opts.on("-d", "--debug", "set debugging flags (set $DEBUG to true)") {
            options[:debug] = true
          }
          opts.on("-w", "--warn", "turn warnings on for your script") {
            options[:warn] = true
          }
          opts.on("-q", "--quiet", "turn off logging") {
            options[:quiet] = true
          }

          opts.on("-I", "--include PATH",
                  "specify $LOAD_PATH (may be used more than once)") { |path|
            (options[:include] ||= []).concat(path.split(":"))
          }

          opts.on("-r", "--require LIBRARY",
                  "require the library, before executing your script") { |library|
            (options[:require] ||= []) << library
          }

          opts.separator ""
          opts.separator "Rack options:"
          opts.on("-b", "--builder BUILDER_LINE", "evaluate a BUILDER_LINE of code as a builder script") { |line|
            options[:builder] = line
          }

          opts.on("-s", "--server SERVER", "serve using SERVER (thin/puma/webrick)") { |s|
            options[:server] = s
          }

          opts.on("-o", "--host HOST", "listen on HOST (default: localhost)") { |host|
            options[:Host] = host
          }

          opts.on("-p", "--port PORT", "use PORT (default: 9292)") { |port|
            options[:Port] = port
          }

          opts.on("-O", "--option NAME[=VALUE]", "pass VALUE to the server as option NAME. If no VALUE, sets it to true. Run '#{$0} -s SERVER -h' to get a list of options for SERVER") { |name|
            name, value = name.split('=', 2)
            value = true if value.nil?
            options[name.to_sym] = value
          }

          opts.on("-E", "--env ENVIRONMENT", "use ENVIRONMENT for defaults (default: development)") { |e|
            options[:environment] = e
          }

          opts.on("-D", "--daemonize", "run daemonized in the background") { |d|
            options[:daemonize] ||= true
          }

          opts.on("--daemonize-noclose", "run daemonized in the background without closing stdout/stderr") {
            options[:daemonize] = :noclose
          }

          opts.on("-P", "--pid FILE", "file to store PID") { |f|
            options[:pid] = ::File.expand_path(f)
          }

          opts.separator ""
          opts.separator "Profiling options:"

          opts.on("--heap HEAPFILE", "Build the application, then dump the heap to HEAPFILE") do |e|
            options[:heapfile] = e
          end

          opts.on("--profile PROFILE", "Dump CPU or Memory profile to PROFILE (defaults to a tempfile)") do |e|
            options[:profile_file] = e
          end

          opts.on("--profile-mode MODE", "Profile mode (cpu|wall|object)") do |e|
            unless %w[cpu wall object].include?(e)
              raise OptionParser::InvalidOption, "unknown profile mode: #{e}"
            end
            options[:profile_mode] = e.to_sym
          end

          opts.separator ""
          opts.separator "Common options:"

          opts.on_tail("-h", "-?", "--help", "Show this message") do
            puts opts
            puts handler_opts(options)

            exit
          end

          opts.on_tail("--version", "Show version") do
            puts "Rack #{Rack::RELEASE}"
            exit
          end
        end

        begin
          opt_parser.parse! args
        rescue OptionParser::InvalidOption => e
          warn e.message
          abort opt_parser.to_s
        end

        options[:config] = args.last if args.last && !args.last.empty?
        options
      end

      def handler_opts(options)
        info = []
        server = Rackup::Handler.get(options[:server]) || Rackup::Handler.default
        if server && server.respond_to?(:valid_options)
          info << ""
          info << "Server-specific options for #{server.name}:"

          has_options = false
          server.valid_options.each do |name, description|
            next if /^(Host|Port)[^a-zA-Z]/.match?(name.to_s) # ignore handler's host and port options, we do our own.
            info << sprintf("  -O %-21s %s", name, description)
            has_options = true
          end
          return "" if !has_options
        end
        info.join("\n")
      rescue NameError, LoadError
        return "Warning: Could not find handler specified (#{options[:server] || 'default'}) to determine handler-specific options"
      end
    end

    # Start a new rack server (like running rackup). This will parse ARGV and
    # provide standard ARGV rackup options, defaulting to load 'config.ru'.
    #
    # Providing an options hash will prevent ARGV parsing and will not include
    # any default options.
    #
    # This method can be used to very easily launch a CGI application, for
    # example:
    #
    #  Rack::Server.start(
    #    :app => lambda do |e|
    #      [200, {'content-type' => 'text/html'}, ['hello world']]
    #    end,
    #    :server => 'cgi'
    #  )
    #
    # Further options available here are documented on Rack::Server#initialize
    def self.start(options = nil)
      new(options).start
    end

    attr_writer :options

    # Options may include:
    # * :app
    #     a rack application to run (overrides :config and :builder)
    # * :builder
    #     a string to evaluate a Rack::Builder from
    # * :config
    #     a rackup configuration file path to load (.ru)
    # * :environment
    #     this selects the middleware that will be wrapped around
    #     your application. Default options available are:
    #       - development: CommonLogger, ShowExceptions, and Lint
    #       - deployment: CommonLogger
    #       - none: no extra middleware
    #     note: when the server is a cgi server, CommonLogger is not included.
    # * :server
    #     choose a specific Rackup::Handler, e.g. cgi, fcgi, webrick
    # * :daemonize
    #     if truthy, the server will daemonize itself (fork, detach, etc)
    #     if :noclose, the server will not close STDOUT/STDERR
    # * :pid
    #     path to write a pid file after daemonize
    # * :Host
    #     the host address to bind to (used by supporting Rackup::Handler)
    # * :Port
    #     the port to bind to (used by supporting Rackup::Handler)
    # * :AccessLog
    #     webrick access log options (or supporting Rackup::Handler)
    # * :debug
    #     turn on debug output ($DEBUG = true)
    # * :warn
    #     turn on warnings ($-w = true)
    # * :include
    #     add given paths to $LOAD_PATH
    # * :require
    #     require the given libraries
    #
    # Additional options for profiling app initialization include:
    # * :heapfile
    #     location for ObjectSpace.dump_all to write the output to
    # * :profile_file
    #     location for CPU/Memory (StackProf) profile output (defaults to a tempfile)
    # * :profile_mode
    #     StackProf profile mode (cpu|wall|object)
    def initialize(options = nil)
      @ignore_options = []

      if options
        @use_default_options = false
        @options = options
        @app = options[:app] if options[:app]
      else
        @use_default_options = true
        @options = parse_options(ARGV)
      end
    end

    def options
      merged_options = @use_default_options ? default_options.merge(@options) : @options
      merged_options.reject { |k, v| @ignore_options.include?(k) }
    end

    def default_options
      environment  = ENV['RACK_ENV'] || 'development'
      default_host = environment == 'development' ? 'localhost' : '0.0.0.0'

      {
        environment: environment,
        pid: nil,
        Port: 9292,
        Host: default_host,
        AccessLog: [],
        config: "config.ru"
      }
    end

    def app
      @app ||= options[:builder] ? build_app_from_string : build_app_and_options_from_config
    end

    class << self
      def logging_middleware
        lambda { |server|
          /CGI/.match?(server.server.name) || server.options[:quiet] ? nil : [Rack::CommonLogger, $stderr]
        }
      end

      def default_middleware_by_environment
        m = Hash.new {|h, k| h[k] = []}
        m["deployment"] = [
          [Rack::ContentLength],
          logging_middleware,
          [Rack::TempfileReaper]
        ]
        m["development"] = [
          [Rack::ContentLength],
          logging_middleware,
          [Rack::ShowExceptions],
          [Rack::Lint],
          [Rack::TempfileReaper]
        ]

        m
      end

      def middleware
        default_middleware_by_environment
      end
    end

    def middleware
      self.class.middleware
    end

    def start(&block)
      if options[:warn]
        $-w = true
      end

      if includes = options[:include]
        $LOAD_PATH.unshift(*includes)
      end

      Array(options[:require]).each do |library|
        require library
      end

      if options[:debug]
        $DEBUG = true
        require 'pp'
        p options[:server]
        pp wrapped_app
        pp app
      end

      check_pid! if options[:pid]

      # Touch the wrapped app, so that the config.ru is loaded before
      # daemonization (i.e. before chdir, etc).
      handle_profiling(options[:heapfile], options[:profile_mode], options[:profile_file]) do
        wrapped_app
      end

      daemonize_app if options[:daemonize]

      write_pid if options[:pid]

      trap(:INT) do
        if server.respond_to?(:shutdown)
          server.shutdown
        else
          exit
        end
      end

      server.run(wrapped_app, **options, &block)
    end

    def server
      @_server ||= Handler.get(options[:server]) || Handler.default
    end

    private
      def build_app_and_options_from_config
        if !::File.exist? options[:config]
          abort "configuration #{options[:config]} not found"
        end

        return Rack::Builder.parse_file(self.options[:config])
      end

      def handle_profiling(heapfile, profile_mode, filename)
        if heapfile
          require "objspace"
          ObjectSpace.trace_object_allocations_start
          yield
          GC.start
          ::File.open(heapfile, "w") { |f| ObjectSpace.dump_all(output: f) }
          exit
        end

        if profile_mode
          require "stackprof"
          require "tempfile"

          make_profile_name(filename) do |filename|
            ::File.open(filename, "w") do |f|
              StackProf.run(mode: profile_mode, out: f) do
                yield
              end
              puts "Profile written to: #{filename}"
            end
          end
          exit
        end

        yield
      end

      def make_profile_name(filename)
        if filename
          yield filename
        else
          ::Dir::Tmpname.create("profile.dump") do |tmpname, _, _|
            yield tmpname
          end
        end
      end

      def build_app_from_string
        Rack::Builder.new_from_string(self.options[:builder])
      end

      def parse_options(args)
        # Don't evaluate CGI ISINDEX parameters.
        args.clear if ENV.include?(Rack::REQUEST_METHOD)

        @options = opt_parser.parse!(args)
        @options[:config] = ::File.expand_path(options[:config])
        ENV["RACK_ENV"] = options[:environment]
        @options
      end

      def opt_parser
        Options.new
      end

      def build_app(app)
        middleware[options[:environment]].reverse_each do |middleware|
          middleware = middleware.call(self) if middleware.respond_to?(:call)
          next unless middleware
          klass, *args = middleware
          app = klass.new(app, *args)
        end
        app
      end

      def wrapped_app
        @wrapped_app ||= build_app app
      end

      def daemonize_app
        # Cannot be covered as it forks
        # :nocov:
        Process.daemon(true, options[:daemonize] == :noclose)
        # :nocov:
      end

      def write_pid
        ::File.open(options[:pid], ::File::CREAT | ::File::EXCL | ::File::WRONLY ){ |f| f.write("#{Process.pid}") }
        at_exit { ::FileUtils.rm_f(options[:pid]) }
      rescue Errno::EEXIST
        check_pid!
        retry
      end

      def check_pid!
        return unless ::File.exist?(options[:pid])

        pid = ::File.read(options[:pid]).to_i
        raise Errno::ESRCH if pid == 0

        Process.kill(0, pid)
        exit_with_pid(pid)
      rescue Errno::ESRCH
        ::File.delete(options[:pid])
      rescue Errno::EPERM
        exit_with_pid(pid)
      end

      def exit_with_pid(pid)
        $stderr.puts "A server is already running (pid: #{pid}, file: #{options[:pid]})."
        exit(1)
      end
  end

end
PKCH[��9�$$*share/gems/gems/rackup-2.1.0/lib/rackup.rbnu�[���# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.

require_relative 'rackup/handler'
require_relative 'rackup/server'
require_relative 'rackup/version'

require_relative 'rackup/handler/webrick'
require_relative 'rackup/handler/cgi'
PKCH[<�d��&share/gems/gems/rackup-2.1.0/readme.mdnu�[���# Rackup

`rackup` provides a command line interface for running a Rack-compatible application.

[![Development Status](https://github.com/rack/rackup/workflows/Test/badge.svg)](https://github.com/rack/rackup/actions?workflow=Test)

## Installation

``` bash
$ gem install rackup
```

## Usage

In a directory with your `config.ru` simply run the command:

``` bash
$ rackup
```

Your application should now be available locally, typically `http://localhost:9292`.

## Contributing

We welcome contributions to this project.

1.  Fork it.
2.  Create your feature branch (`git checkout -b my-new-feature`).
3.  Commit your changes (`git commit -am 'Add some feature'`).
4.  Push to the branch (`git push origin my-new-feature`).
5.  Create new Pull Request.
PKCH[�Y�$share/gems/gems/rake-13.0.1/bin/rakenu�[���#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'rake' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
  Pathname.new(__FILE__).realpath)

bundle_binstub = File.expand_path("../bundle", __FILE__)

if File.file?(bundle_binstub)
  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
    load(bundle_binstub)
  else
    abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
  end
end

require "rubygems"
require "bundler/setup"

load Gem.bin_path("rake", "rake")
PKCH[r�
WUU'share/gems/gems/rake-13.0.1/bin/consolenu�[���#!/usr/bin/env ruby

require "bundler/setup"
require "rake"

require "irb"
IRB.start
PKCH[�t/;JJ%share/gems/gems/rake-13.0.1/bin/setupnu�[���#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx

bundle install
PKCH[��X�$share/gems/gems/rake-13.0.1/bin/rdocnu�[���#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'rdoc' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
  Pathname.new(__FILE__).realpath)

bundle_binstub = File.expand_path("../bundle", __FILE__)

if File.file?(bundle_binstub)
  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
    load(bundle_binstub)
  else
    abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
  end
end

require "rubygems"
require "bundler/setup"

load Gem.bin_path("rdoc", "rdoc")
PKCH[>�h&share/gems/gems/rake-13.0.1/bin/bundlenu�[���#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'bundle' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "rubygems"

m = Module.new do
    module_function

  def invoked_as_script?
    File.expand_path($0) == File.expand_path(__FILE__)
  end

  def env_var_version
    ENV["BUNDLER_VERSION"]
  end

  def cli_arg_version
    return unless invoked_as_script? # don't want to hijack other binstubs
    return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
    bundler_version = nil
    update_index = nil
    ARGV.each_with_index do |a, i|
      if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
        bundler_version = a
      end
      next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
      bundler_version = $1 || ">= 0.a"
      update_index = i
    end
    bundler_version
  end

  def gemfile
    gemfile = ENV["BUNDLE_GEMFILE"]
    return gemfile if gemfile && !gemfile.empty?

    File.expand_path("../../Gemfile", __FILE__)
  end

  def lockfile
    lockfile =
      case File.basename(gemfile)
      when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
      else "#{gemfile}.lock"
      end
    File.expand_path(lockfile)
  end

  def lockfile_version
    return unless File.file?(lockfile)
    lockfile_contents = File.read(lockfile)
    return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
    Regexp.last_match(1)
  end

  def bundler_version
    @bundler_version ||= begin
      env_var_version || cli_arg_version ||
        lockfile_version || "#{Gem::Requirement.default}.a"
    end
  end

  def load_bundler!
    ENV["BUNDLE_GEMFILE"] ||= gemfile

    # must dup string for RG < 1.8 compatibility
    activate_bundler(bundler_version.dup)
  end

  def activate_bundler(bundler_version)
    if Gem::Version.correct?(bundler_version) && Gem::Version.new(bundler_version).release < Gem::Version.new("2.0")
      bundler_version = "< 2"
    end
    gem_error = activation_error_handling do
      gem "bundler", bundler_version
    end
    return if gem_error.nil?
    require_error = activation_error_handling do
      require "bundler/version"
    end
    return if require_error.nil? && Gem::Requirement.new(bundler_version).satisfied_by?(Gem::Version.new(Bundler::VERSION))
    warn "Activating bundler (#{bundler_version}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_version}'`"
    exit 42
  end

  def activation_error_handling
    yield
    nil
  rescue StandardError, LoadError => e
    e
  end
end

m.load_bundler!

if m.invoked_as_script?
  load Gem.bin_path("bundler", "bundle")
end
PKCH[�|u%'share/gems/gems/rake-13.0.1/bin/rubocopnu�[���#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'rubocop' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
  Pathname.new(__FILE__).realpath)

bundle_binstub = File.expand_path("../bundle", __FILE__)

if File.file?(bundle_binstub)
  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
    load(bundle_binstub)
  else
    abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
  end
end

require "rubygems"
require "bundler/setup"

load Gem.bin_path("rubocop", "rubocop")
PKCH[��@u,u,(share/gems/gems/rake-13.0.1/doc/jamis.rbnu�[���# frozen_string_literal: true
module RDoc
module Page

FONTS = "\"Bitstream Vera Sans\", Verdana, Arial, Helvetica, sans-serif"

STYLE = <<CSS
a {
  color: #00F;
  text-decoration: none;
}

a:hover {
  color: #77F;
  text-decoration: underline;
}

body, td, p {
  font-family: %fonts%;
  background: #FFF;
  color: #000;
  margin: 0px;
  font-size: small;
}

#content {
  margin: 2em;
}

#description p {
  margin-bottom: 0.5em;
}

.sectiontitle {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0.5em;
  padding-left: 2em;
  background: #005;
  color: #FFF;
  font-weight: bold;
  border: 1px dotted black;
}

.attr-rw {
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  color: #055;
}

.attr-name {
  font-weight: bold;
}

.attr-desc {
}

.attr-value {
  font-family: monospace;
}

.file-title-prefix {
  font-size: large;
}

.file-title {
  font-size: large;
  font-weight: bold;
  background: #005;
  color: #FFF;
}

.banner {
  background: #005;
  color: #FFF;
  border: 1px solid black;
  padding: 1em;
}

.banner td {
  background: transparent;
  color: #FFF;
}

h1 a, h2 a, .sectiontitle a, .banner a {
  color: #FF0;
}

h1 a:hover, h2 a:hover, .sectiontitle a:hover, .banner a:hover {
  color: #FF7;
}

.dyn-source {
  display: none;
  background: #FFE;
  color: #000;
  border: 1px dotted black;
  margin: 0.5em 2em 0.5em 2em;
  padding: 0.5em;
}

.dyn-source .cmt {
  color: #00F;
  font-style: italic;
}

.dyn-source .kw {
  color: #070;
  font-weight: bold;
}

.method {
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 1em;
}

.description pre {
  padding: 0.5em;
  border: 1px dotted black;
  background: #FFE;
}

.method .title {
  font-family: monospace;
  font-size: large;
  border-bottom: 1px dashed black;
  margin-bottom: 0.3em;
  padding-bottom: 0.1em;
}

.method .description, .method .sourcecode {
  margin-left: 1em;
}

.description p, .sourcecode p {
  margin-bottom: 0.5em;
}

.method .sourcecode p.source-link {
  text-indent: 0em;
  margin-top: 0.5em;
}

.method .aka {
  margin-top: 0.3em;
  margin-left: 1em;
  font-style: italic;
  text-indent: 2em;
}

h1 {
  padding: 1em;
  border: 1px solid black;
  font-size: x-large;
  font-weight: bold;
  color: #FFF;
  background: #007;
}

h2 {
  padding: 0.5em 1em 0.5em 1em;
  border: 1px solid black;
  font-size: large;
  font-weight: bold;
  color: #FFF;
  background: #009;
}

h3, h4, h5, h6 {
  padding: 0.2em 1em 0.2em 1em;
  border: 1px dashed black;
  color: #000;
  background: #AAF;
}

.sourcecode > pre {
  padding: 0.5em;
  border: 1px dotted black;
  background: #FFE;
}

CSS

XHTML_PREAMBLE = %{<?xml version="1.0" encoding="%charset%"?>
<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
}

HEADER = XHTML_PREAMBLE + <<ENDHEADER
<html>
  <head>
    <title>%title%</title>
    <meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
    <link rel="stylesheet" href="%style_url%" type="text/css" media="screen" />

    <script language="JavaScript" type="text/javascript">
    // <![CDATA[

        function toggleSource( id )
        {
          var elem
          var link

          if( document.getElementById )
          {
            elem = document.getElementById( id )
            link = document.getElementById( "l_" + id )
          }
          else if ( document.all )
          {
            elem = eval( "document.all." + id )
            link = eval( "document.all.l_" + id )
          }
          else
            return false;

          if( elem.style.display == "block" )
          {
            elem.style.display = "none"
            link.innerHTML = "show source"
          }
          else
          {
            elem.style.display = "block"
            link.innerHTML = "hide source"
          }
        }

        function openCode( url )
        {
          window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" )
        }
      // ]]>
    </script>
  </head>

  <body>
ENDHEADER

FILE_PAGE = <<HTML
<table border='0' cellpadding='0' cellspacing='0' width="100%" class='banner'>
  <tr><td>
    <table width="100%" border='0' cellpadding='0' cellspacing='0'><tr>
      <td class="file-title" colspan="2"><span class="file-title-prefix">File</span><br />%short_name%</td>
      <td align="right">
        <table border='0' cellspacing="0" cellpadding="2">
          <tr>
            <td>Path:</td>
            <td>%full_path%
IF:cvsurl
              &nbsp;(<a href="%cvsurl%">CVS</a>)
ENDIF:cvsurl
            </td>
          </tr>
          <tr>
            <td>Modified:</td>
            <td>%dtm_modified%</td>
          </tr>
        </table>
      </td></tr>
    </table>
  </td></tr>
</table><br>
HTML

###################################################################

CLASS_PAGE = <<HTML
<table width="100%" border='0' cellpadding='0' cellspacing='0' class='banner'><tr>
  <td class="file-title"><span class="file-title-prefix">%classmod%</span><br />%full_name%</td>
  <td align="right">
    <table cellspacing=0 cellpadding=2>
      <tr valign="top">
        <td>In:</td>
        <td>
START:infiles
HREF:full_path_url:full_path:
IF:cvsurl
&nbsp;(<a href="%cvsurl%">CVS</a>)
ENDIF:cvsurl
END:infiles
        </td>
      </tr>
IF:parent
    <tr>
      <td>Parent:</td>
      <td>
IF:par_url
        <a href="%par_url%">
ENDIF:par_url
%parent%
IF:par_url
         </a>
ENDIF:par_url
     </td>
   </tr>
ENDIF:parent
         </table>
        </td>
        </tr>
      </table>
HTML

###################################################################

METHOD_LIST = <<HTML
  <div id="content">
IF:diagram
  <table cellpadding='0' cellspacing='0' border='0' width="100%"><tr><td align="center">
    %diagram%
  </td></tr></table>
ENDIF:diagram

IF:description
  <div class="description">%description%</div>
ENDIF:description

IF:requires
  <div class="sectiontitle">Required Files</div>
  <ul>
START:requires
  <li>HREF:aref:name:</li>
END:requires
  </ul>
ENDIF:requires

IF:toc
  <div class="sectiontitle">Contents</div>
  <ul>
START:toc
  <li><a href="#%href%">%secname%</a></li>
END:toc
  </ul>
ENDIF:toc

IF:methods
  <div class="sectiontitle">Methods</div>
  <ul>
START:methods
  <li>HREF:aref:name:</li>
END:methods
  </ul>
ENDIF:methods

IF:includes
<div class="sectiontitle">Included Modules</div>
<ul>
START:includes
  <li>HREF:aref:name:</li>
END:includes
</ul>
ENDIF:includes

START:sections
IF:sectitle
<div class="sectiontitle"><a nem="%secsequence%">%sectitle%</a></div>
IF:seccomment
<div class="description">
%seccomment%
</div>
ENDIF:seccomment
ENDIF:sectitle

IF:classlist
  <div class="sectiontitle">Classes and Modules</div>
  %classlist%
ENDIF:classlist

IF:constants
  <div class="sectiontitle">Constants</div>
  <table border='0' cellpadding='5'>
START:constants
  <tr valign='top'>
    <td class="attr-name">%name%</td>
    <td>=</td>
    <td class="attr-value">%value%</td>
  </tr>
IF:desc
  <tr valign='top'>
    <td>&nbsp;</td>
    <td colspan="2" class="attr-desc">%desc%</td>
  </tr>
ENDIF:desc
END:constants
  </table>
ENDIF:constants

IF:attributes
  <div class="sectiontitle">Attributes</div>
  <table border='0' cellpadding='5'>
START:attributes
  <tr valign='top'>
    <td class='attr-rw'>
IF:rw
[%rw%]
ENDIF:rw
    </td>
    <td class='attr-name'>%name%</td>
    <td class='attr-desc'>%a_desc%</td>
  </tr>
END:attributes
  </table>
ENDIF:attributes

IF:method_list
START:method_list
IF:methods
<div class="sectiontitle">%type% %category% methods</div>
START:methods
<div class="method">
  <div class="title">
IF:callseq
    <a name="%aref%"></a><b>%callseq%</b>
ENDIF:callseq
IFNOT:callseq
    <a name="%aref%"></a><b>%name%</b>%params%
ENDIF:callseq
IF:codeurl
[ <a href="javascript:openCode('%codeurl%')">source</a> ]
ENDIF:codeurl
  </div>
IF:m_desc
  <div class="description">
  %m_desc%
  </div>
ENDIF:m_desc
IF:aka
<div class="aka">
  This method is also aliased as
START:aka
  <a href="%aref%">%name%</a>
END:aka
</div>
ENDIF:aka
IF:sourcecode
<div class="sourcecode">
  <p class="source-link">[ <a href="javascript:toggleSource('%aref%_source')" id="l_%aref%_source">show source</a> ]</p>
  <div id="%aref%_source" class="dyn-source">
<pre>
%sourcecode%
</pre>
  </div>
</div>
ENDIF:sourcecode
</div>
END:methods
ENDIF:methods
END:method_list
ENDIF:method_list
END:sections
</div>
HTML

FOOTER = <<ENDFOOTER
  </body>
</html>
ENDFOOTER

BODY = HEADER + <<ENDBODY
  !INCLUDE! <!-- banner header -->

  <div id="bodyContent">
    #{METHOD_LIST}
  </div>

  #{FOOTER}
ENDBODY

########################## Source code ##########################

SRC_PAGE = XHTML_PREAMBLE + <<HTML
<html>
<head><title>%title%</title>
<meta http-equiv="Content-Type" content="text/html; charset=%charset%">
<style>
.ruby-comment    { color: green; font-style: italic }
.ruby-constant   { color: #4433aa; font-weight: bold; }
.ruby-identifier { color: #222222;  }
.ruby-ivar       { color: #2233dd; }
.ruby-keyword    { color: #3333FF; font-weight: bold }
.ruby-node       { color: #777777; }
.ruby-operator   { color: #111111;  }
.ruby-regexp     { color: #662222; }
.ruby-value      { color: #662222; font-style: italic }
  .kw { color: #3333FF; font-weight: bold }
  .cmt { color: green; font-style: italic }
  .str { color: #662222; font-style: italic }
  .re  { color: #662222; }
</style>
</head>
<body bgcolor="white">
<pre>%code%</pre>
</body>
</html>
HTML

########################## Index ################################

FR_INDEX_BODY = <<HTML
!INCLUDE!
HTML

FILE_INDEX = XHTML_PREAMBLE + <<HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=%charset%">
<style>
<!--
  body {
    background-color: #EEE;
    font-family: #{FONTS};
    color: #000;
    margin: 0px;
  }
  .banner {
    background: #005;
    color: #FFF;
    padding: 0.2em;
    font-size: small;
    font-weight: bold;
    text-align: center;
  }
  .entries {
    margin: 0.25em 1em 0 1em;
    font-size: x-small;
  }
  a {
    color: #00F;
    text-decoration: none;
    white-space: nowrap;
  }
  a:hover {
    color: #77F;
    text-decoration: underline;
  }
-->
</style>
<base target="docwin">
</head>
<body>
<div class="banner">%list_title%</div>
<div class="entries">
START:entries
<a href="%href%">%name%</a><br>
END:entries
</div>
</body></html>
HTML

CLASS_INDEX = FILE_INDEX
METHOD_INDEX = FILE_INDEX

INDEX = XHTML_PREAMBLE + <<HTML
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>%title%</title>
  <meta http-equiv="Content-Type" content="text/html; charset=%charset%">
</head>

<frameset cols="20%,*">
    <frameset rows="15%,35%,50%">
        <frame src="fr_file_index.html"   title="Files" name="Files" />
        <frame src="fr_class_index.html"  name="Classes" />
        <frame src="fr_method_index.html" name="Methods" />
    </frameset>
IF:inline_source
      <frame  src="%initial_page%" name="docwin">
ENDIF:inline_source
IFNOT:inline_source
    <frameset rows="80%,20%">
      <frame  src="%initial_page%" name="docwin">
      <frame  src="blank.html" name="source">
    </frameset>
ENDIF:inline_source
    <noframes>
          <body bgcolor="white">
            Click <a href="html/index.html">here</a> for a non-frames
            version of this page.
          </body>
    </noframes>
</frameset>

</html>
HTML

end
end


PKCH[�)��	�	/share/gems/gems/rake-13.0.1/doc/proto_rake.rdocnu�[���= Original Prototype Rake

This is the original 100 line prototype rake program.

---
 #!/usr/bin/env ruby

 require 'ftools'

 class Task
   TASKS = Hash.new

   attr_reader :prerequisites

   def initialize(task_name)
     @name = task_name
     @prerequisites = []
     @actions = []
   end

   def enhance(deps=nil, &block)
     @prerequisites |= deps if deps
     @actions << block if block_given?
     self
   end

   def name
     @name.to_s
   end

   def invoke
     @prerequisites.each { |n| Task[n].invoke }
     execute if needed?
   end

   def execute
     return if @triggered
     @triggered = true
     @actions.collect { |act| result = act.call(self) }.last
   end

   def needed?
     true
   end

   def timestamp
     Time.now
   end

   class << self
     def [](task_name)
       TASKS[intern(task_name)] or fail "Don't know how to rake #{task_name}"
     end

     def define_task(args, &block)
       case args
       when Hash
 	fail "Too Many Target Names: #{args.keys.join(' ')}" if args.size > 1
 	fail "No Task Name Given" if args.size < 1
 	task_name = args.keys[0]
 	deps = args[task_name]
       else
 	task_name = args
 	deps = []
       end
       deps = deps.collect {|d| intern(d) }
       get(task_name).enhance(deps, &block)
     end

     def get(task_name)
       name = intern(task_name)
       TASKS[name] ||= self.new(name)
     end

     def intern(task_name)
       (Symbol === task_name) ? task_name : task_name.intern
     end
   end
 end

 class FileTask < Task
   def needed?
     return true unless File.exist?(name)
     latest_prereq = @prerequisites.collect{|n| Task[n].timestamp}.max
     return false if latest_prereq.nil?
     timestamp < latest_prereq
   end

   def timestamp
     File.new(name.to_s).mtime
   end
 end

 def task(args, &block)
   Task.define_task(args, &block)
 end

 def file(args, &block)
   FileTask.define_task(args, &block)
 end

 def sys(cmd)
   puts cmd
   system(cmd) or fail "Command Failed: [#{cmd}]"
 end

 def rake
   begin
     here = Dir.pwd
     while ! File.exist?("Rakefile")
       Dir.chdir("..")
       fail "No Rakefile found" if Dir.pwd == here
       here = Dir.pwd
     end
     puts "(in #{Dir.pwd})"
     load "./Rakefile"
     ARGV.push("default") if ARGV.size == 0
     ARGV.each { |task_name| Task[task_name].invoke }
   rescue Exception => ex
     puts "rake aborted ... #{ex.message}"
     puts ex.backtrace.find {|str| str =~ /Rakefile/ } || ""
   end
 end

 if __FILE__ == $0 then
   rake
 end
PKCH[�'S{��-share/gems/gems/rake-13.0.1/doc/glossary.rdocnu�[���= Glossary

action ::
  Code to be executed in order to perform a task.  Actions in a Rakefile are
  specified in a code block. (Usually delimited by +do+/+end+ pairs.)

execute ::
  When a task is executed, all of its actions are performed in the order they
  were defined.  Note that, unlike <tt>invoke</tt>, <tt>execute</tt> always
  executes the actions (without invoking or executing the prerequisites).

file task (Rake::FileTask) ::
  A file task is a task whose purpose is to create a file (which has the same
  name as the task).  When invoked, a file task will only execute if one or
  more of the following conditions are true.

  1. The associated file does not exist.
  2. A prerequisite has a later time stamp than the existing file.

  Because normal Tasks always have the current time as timestamp, a FileTask
  that has a normal Task prerequisite will always execute.

invoke ::
  When a task is invoked, first we check to see if it has been invoked before.
  If it has been, then nothing else is done.  If this is the first time it has
  been invoked, then we invoke each of its prerequisites.  Finally, we check
  to see if we need to execute the actions of this task by calling
  Rake::Task#needed?.  If the task is needed, we execute its actions.

  NOTE: Prerequisites are still invoked even if the task is not needed.

prerequisites ::
  Every task has a (possibly empty) set of prerequisites.  A prerequisite P to
  Task T is itself a task that must be invoked before Task T.

rule ::
  A rule is a recipe for synthesizing a task when no task is explicitly
  defined.  Rules generally synthesize file tasks.

task (Rake::Task) ::
  The basic unit of work in a Rakefile.  A task has a name, a set of 
  prerequisites, and a list of actions to be performed.
PKCH[v3�HH-share/gems/gems/rake-13.0.1/doc/rational.rdocnu�[���= Why rake?

Ok, let me state from the beginning that I never intended to write this
code.  I'm not convinced it is useful, and I'm not convinced anyone
would even be interested in it.  All I can say is that Why's onion truck
must by been passing through the Ohio valley.

What am I talking about? ... A Ruby version of Make.

See, I can sense you cringing already, and I agree.  The world certainly
doesn't need yet another reworking of the "make" program.  I mean, we
already have "ant".  Isn't that enough?

It started yesterday.  I was helping a coworker fix a problem in one of
the Makefiles we use in our project.  Not a particularly tough problem,
but during the course of the conversation I began lamenting some of the
shortcomings of make.  In particular, in one of my makefiles I wanted to
determine the name of a file dynamically and had to resort to some
simple scripting (in Ruby) to make it work.  "Wouldn't it be nice if you
could just use Ruby inside a Makefile" I said.

My coworker (a recent convert to Ruby) agreed, but wondered what it
would look like.  So I sketched the following on the whiteboard...

    "What if you could specify the make tasks in Ruby, like this ..."

      task "build" do
        java_compile(...args, etc ...)
      end

    "The task function would register "build" as a target to be made,
    and the block would be the action executed whenever the build
    system determined that it was time to do the build target."

We agreed that would be cool, but writing make from scratch would be WAY
too much work.  And that was the end of that!

... Except I couldn't get the thought out of my head.  What exactly
would be needed to make the about syntax work as a make file?  Hmmm, you
would need to register the tasks, you need some way of specifying
dependencies between tasks, and some way of kicking off the process.
Hey!  What if we did ... and fifteen minutes later I had a working
prototype of Ruby make, complete with dependencies and actions.

I showed the code to my coworker and we had a good laugh.  It was just
about a page worth of code that reproduced an amazing amount of the
functionality of make.  We were both truly stunned with the power of
Ruby.

But it didn't do everything make did.  In particular, it didn't have
timestamp based file dependencies (where a file is rebuilt if any of its
prerequisite files have a later timestamp).  Obviously THAT would be a
pain to add and so Ruby Make would remain an interesting experiment.

... Except as I walked back to my desk, I started thinking about what
file based dependencies would really need.  Rats!  I was hooked again,
and by adding a new class and two new methods, file/timestamp
dependencies were implemented.

Ok, now I was really hooked.  Last night (during CSI!) I massaged the
code and cleaned it up a bit.  The result is a bare-bones replacement
for make in exactly 100 lines of code.

For the curious, you can see it at ...
* doc/proto_rake.rdoc

Oh, about the name.  When I wrote the example Ruby Make task on my
whiteboard, my coworker exclaimed "Oh! I have the perfect name: Rake ...
Get it?  Ruby-Make. Rake!"  He said he envisioned the tasks as leaves
and Rake would clean them up  ... or something like that.  Anyways, the
name stuck.

Some quick examples ...

A simple task to delete backup files ...

   task :clean do
     Dir['*~'].each {|fn| rm fn rescue nil}
   end

Note that task names are symbols (they are slightly easier to type
than quoted strings ... but you may use quoted string if you would
rather). Rake makes the methods of the FileUtils module directly
available, so we take advantage of the <tt>rm</tt> command.  Also note
the use of "rescue nil" to trap and ignore errors in the <tt>rm</tt>
command.

To run it, just type "rake clean".  Rake will automatically find a
Rakefile in the current directory (or above!) and will invoke the
targets named on the command line.  If there are no targets explicitly
named, rake will invoke the task "default".

Here's another task with dependencies ...

   task :clobber => [:clean] do
     rm_r "tempdir"
   end

Task :clobber depends upon task :clean, so :clean will be run before
:clobber is executed.

Files are specified by using the "file" command.  It is similar to the
task command, except that the task name represents a file, and the task
will be run only if the file doesn't exist, or if its modification time
is earlier than any of its prerequisites.

Here is a file based dependency that will compile "hello.cc" to
"hello.o".

   file "hello.cc"
   file "hello.o" => ["hello.cc"] do |t|
     srcfile = t.name.sub(/\.o$/, ".cc")
     sh %{g++ #{srcfile} -c -o #{t.name}}
   end

I normally specify file tasks with string (rather than symbols).  Some
file names can't be represented by symbols.  Plus it makes the
distinction between them more clear to the casual reader.

Currently writing a task for each and every file in the project would be
tedious at best.  I envision a set of libraries to make this job
easier.  For instance, perhaps something like this ...

   require 'rake/ctools'
   Dir['*.c'].each do |fn|
     c_source_file(fn)
   end

where "c_source_file" will create all the tasks need to compile all the
C source files in a directory.  Any number of useful libraries could be
created for rake.

That's it.  There's no documentation (other than whats in this
message).  Does this sound interesting to anyone?  If so, I'll continue
to clean it up and write it up and publish it on RAA.  Otherwise, I'll
leave it as an interesting exercise and a tribute to the power of Ruby.

Why /might/ rake be interesting to Ruby programmers.  I don't know,
perhaps ...

* No weird make syntax (only weird Ruby syntax :-)
* No need to edit or read XML (a la ant)
* Platform independent build scripts.
* Will run anywhere Ruby exists, so no need to have "make" installed.
  If you stay away from the "sys" command and use things like
  'ftools', you can have a perfectly platform independent
  build script.  Also rake is only 100 lines of code, so it can
  easily be packaged along with the rest of your code.

So ... Sorry for the long rambling message.  Like I said, I never
intended to write this code at all.
PKCH[����P�P-share/gems/gems/rake-13.0.1/doc/rakefile.rdocnu�[���= Rakefile Format

First of all, there is no special format for a Rakefile.  A Rakefile
contains executable Ruby code.  Anything legal in a ruby script is
allowed in a Rakefile.

Now that we understand there is no special syntax in a Rakefile, there
are some conventions that are used in a Rakefile that are a little
unusual in a typical Ruby program.  Since a Rakefile is tailored to
specifying tasks and actions, the idioms used in a Rakefile are
designed to support that.

So, what goes into a Rakefile?

== Tasks

Tasks are the main unit of work in a Rakefile.  Tasks have a name
(usually given as a symbol or a string), a list of prerequisites (more
symbols or strings) and a list of actions (given as a block).

=== Simple Tasks

A task is declared by using the +task+ method.  +task+ takes a single
parameter that is the name of the task.

  task :name

=== Tasks with Prerequisites

Any prerequisites are given as a list (enclosed in square brackets)
following the name and an arrow (=>).

  task name: [:prereq1, :prereq2]

*NOTE:* Although this syntax looks a little funky, it is legal
Ruby.  We are constructing a hash where the key is :name and the value
for that key is the list of prerequisites.  It is equivalent to the
following ...

  hash = Hash.new
  hash[:name] = [:prereq1, :prereq2]
  task(hash)

You can also use strings for task names and prerequisites, rake doesn't care.
This is the same task definition:

  task 'name' => %w[prereq1 prereq2]

As is this:

  task name: %w[prereq1 prereq2]

We'll prefer this style for regular tasks with prerequisites throughout the
rest of the document.  Using an array of strings for the prerequisites means
you will need to make fewer changes if you need to move tasks into namespaces
or perform other refactorings.

=== Tasks with Actions

Actions are defined by passing a block to the +task+ method.  Any Ruby
code can be placed in the block.  The block may reference the task
object via the block parameter.

  task name: [:prereq1, :prereq2] do |t|
    # actions (may reference t)
  end

=== Multiple Definitions

A task may be specified more than once.  Each specification adds its
prerequisites and actions to the existing definition.  This allows one
part of a rakefile to specify the actions and a different rakefile
(perhaps separately generated) to specify the dependencies.

For example, the following is equivalent to the single task
specification given above.

  task :name
  task name: :prereq1
  task name: %w[prereq2]
  task :name do |t|
    # actions
  end

== File Tasks

Some tasks are designed to create a file from one or more other files.
Tasks that generate these files may be skipped if the file already
exists.  File tasks are used to specify file creation tasks.

File tasks are declared using the +file+ method (instead of the +task+
method).  In addition, file tasks are usually named with a string
rather than a symbol.

The following file task creates a executable program (named +prog+)
given two object files named +a.o+ and +b.o+.  The tasks
for creating +a.o+ and +b.o+ are not shown.

  file "prog" => ["a.o", "b.o"] do |t|
    sh "cc -o #{t.name} #{t.prerequisites.join(' ')}"
  end

== Directory Tasks

It is common to need to create directories upon demand.  The
+directory+ convenience method is a short-hand for creating a FileTask
that creates the directory.  For example, the following declaration
...

  directory "testdata/examples/doc"

is equivalent to ...

  file "testdata" do |t| mkdir t.name end
  file "testdata/examples" => ["testdata"] do |t| mkdir t.name end
  file "testdata/examples/doc" => ["testdata/examples"] do |t| mkdir t.name end

The +directory+ method does not accept prerequisites or actions, but
both prerequisites and actions can be added later.  For example ...

  directory "testdata"
  file "testdata" => ["otherdata"]
  file "testdata" do
    cp Dir["standard_data/*.data"], "testdata"
  end

== Tasks with Parallel Prerequisites

Rake allows parallel execution of prerequisites using the following syntax:

  multitask copy_files: %w[copy_src copy_doc copy_bin] do
    puts "All Copies Complete"
  end

In this example, +copy_files+ is a normal rake task.  Its actions are
executed whenever all of its prerequisites are done.  The big
difference is that the prerequisites (+copy_src+, +copy_bin+ and
+copy_doc+) are executed in parallel.  Each of the prerequisites are
run in their own Ruby thread, possibly allowing faster overall runtime.

=== Secondary Prerequisites

If any of the primary prerequisites of a multitask have common secondary
prerequisites, all of the primary/parallel prerequisites will wait
until the common prerequisites have been run.

For example, if the <tt>copy_<em>xxx</em></tt> tasks have the
following prerequisites:

  task copy_src: :prep_for_copy
  task copy_bin: :prep_for_copy
  task copy_doc: :prep_for_copy

Then the +prep_for_copy+ task is run before starting all the copies in
parallel.  Once +prep_for_copy+ is complete, +copy_src+, +copy_bin+,
and +copy_doc+ are all run in parallel.  Note that +prep_for_copy+ is
run only once, even though it is referenced in multiple threads.

=== Thread Safety

The Rake internal data structures are thread-safe with respect
to the multitask parallel execution, so there is no need for the user
to do extra synchronization for Rake's benefit.  However, if there are
user data structures shared between the parallel prerequisites, the
user must do whatever is necessary to prevent race conditions.

== Tasks with Arguments

Prior to version 0.8.0, rake was only able to handle command line
arguments of the form NAME=VALUE that were passed into Rake via the
ENV hash.  Many folks had asked for some kind of simple command line
arguments, perhaps using "--" to separate regular task names from
argument values on the command line.  The problem is that there was no
easy way to associate positional arguments on the command line with
different tasks.  Suppose both tasks :a and :b expect a command line
argument: does the first value go with :a?  What if :b is run first?
Should it then get the first command line argument.

Rake 0.8.0 solves this problem by explicitly passing values directly
to the tasks that need them.  For example, if I had a release task
that required a version number, I could say:

   rake release[0.8.2]

And the string "0.8.2" will be passed to the :release task.  Multiple
arguments can be passed by separating them with a comma, for example:

   rake name[john,doe]

Just a few words of caution.  The rake task name and its arguments
need to be a single command line argument to rake.  This generally
means no spaces.  If spaces are needed, then the entire name +
argument string should be quoted.  Something like this:

   rake "name[billy bob, smith]"

(Quoting rules vary between operating systems and shells, so make sure
you consult the proper docs for your OS/shell).

=== Tasks that Expect Parameters

Parameters are only given to tasks that are setup to expect them.  In
order to handle named parameters, the task declaration syntax for
tasks has been extended slightly.

For example, a task that needs a first name and last name might be
declared as:

   task :name, [:first_name, :last_name]

The first argument is still the name of the task (:name in this case).
The next two arguments are the names of the parameters expected by
:name in an array (:first_name and :last_name in the example).

To access the values of the parameters, the block defining the task
behaviour can now accept a second parameter:

   task :name, [:first_name, :last_name] do |t, args|
     puts "First name is #{args.first_name}"
     puts "Last  name is #{args.last_name}"
   end

The first argument of the block "t" is always bound to the current
task object.  The second argument "args" is an open-struct like object
that allows access to the task arguments.  Extra command line
arguments to a task are ignored.

If you wish to specify default values for the arguments, you can use
the with_defaults method in the task body.  Here is the above example
where we specify default values for the first and last names:

   task :name, [:first_name, :last_name] do |t, args|
     args.with_defaults(:first_name => "John", :last_name => "Dough")
     puts "First name is #{args.first_name}"
     puts "Last  name is #{args.last_name}"
   end

=== Tasks that Expect Parameters and Have Prerequisites

Tasks that use parameters have a slightly different format for
prerequisites.  Use the arrow notation to indicate the prerequisites
for tasks with arguments.  For example:

   task :name, [:first_name, :last_name] => [:pre_name] do |t, args|
     args.with_defaults(:first_name => "John", :last_name => "Dough")
     puts "First name is #{args.first_name}"
     puts "Last  name is #{args.last_name}"
   end

=== Tasks that take Variable-length Parameters

Tasks that need to handle a list of values as a parameter can use the
extras method of the args variable.  This allows for tasks that can
loop over a variable number of values, and its compatible with named
parameters as well:

   task :email, [:message] do |t, args|
     mail = Mail.new(args.message)
     recipients = args.extras
     recipients.each do |target|
       mail.send_to(target)
     end
   end

There is also the convenience method to_a that returns all parameters
in the sequential order they were given, including those associated
with named parameters.

=== Deprecated Task Parameters Format

There is an older format for declaring task parameters that omitted
the task argument array and used the :needs keyword to introduce the
dependencies.  That format is still supported for compatibility, but
is not recommended for use.  The older format may be dropped in future
versions of rake.

== Accessing Task Programmatically

Sometimes it is useful to manipulate tasks programmatically in a
Rakefile. To find a task object use Rake::Task.[].

=== Programmatic Task Example

For example, the following Rakefile defines two tasks.  The :doit task
simply prints a simple "DONE" message.  The :dont class will lookup
the doit class and remove (clear) all of its prerequisites and
actions.

   task :doit do
     puts "DONE"
   end

   task :dont do
     Rake::Task[:doit].clear
   end

Running this example:

  $ rake doit
  (in /Users/jim/working/git/rake/x)
  DONE
  $ rake dont doit
  (in /Users/jim/working/git/rake/x)
  $

The ability to programmatically manipulate tasks gives rake very
powerful meta-programming capabilities w.r.t. task execution, but
should be used with caution.

== Rules

When a file is named as a prerequisite, but does not have a file task
defined for it, Rake will attempt to synthesize a task by looking at a
list of rules supplied in the Rakefile.

Suppose we were trying to invoke task "mycode.o", but no task is
defined for it.  But the rakefile has a rule that look like this ...

  rule '.o' => ['.c'] do |t|
    sh "cc #{t.source} -c -o #{t.name}"
  end

This rule will synthesize any task that ends in ".o".  It has a
prerequisite a source file with an extension of ".c" must exist.  If
Rake is able to find a file named "mycode.c", it will automatically
create a task that builds "mycode.o" from "mycode.c".

If the file "mycode.c" does not exist, rake will attempt
to recursively synthesize a rule for it.

When a task is synthesized from a rule, the +source+ attribute of the
task is set to the matching source file.  This allows us to write
rules with actions that reference the source file.

=== Advanced Rules

Any regular expression may be used as the rule pattern.  Additionally,
a proc may be used to calculate the name of the source file.  This
allows for complex patterns and sources.

The following rule is equivalent to the example above.

  rule( /\.o$/ => [
    proc {|task_name| task_name.sub(/\.[^.]+$/, '.c') }
  ]) do |t|
    sh "cc #{t.source} -c -o #{t.name}"
  end

*NOTE:* Because of a _quirk_ in Ruby syntax, parenthesis are
required on *rule* when the first argument is a regular expression.

The following rule might be used for Java files ...

  rule '.class' => [
    proc { |tn| tn.sub(/\.class$/, '.java').sub(/^classes\//, 'src/') }
  ] do |t|
    java_compile(t.source, t.name)
  end

*NOTE:* +java_compile+ is a hypothetical method that invokes the
java compiler.

== Importing Dependencies

Any ruby file (including other rakefiles) can be included with a
standard Ruby +require+ command.  The rules and declarations in the
required file are just added to the definitions already accumulated.

Because the files are loaded _before_ the rake targets are evaluated,
the loaded files must be "ready to go" when the rake command is
invoked. This makes generated dependency files difficult to use. By
the time rake gets around to updating the dependencies file, it is too
late to load it.

The +import+ command addresses this by specifying a file to be loaded
_after_ the main rakefile is loaded, but _before_ any targets on the
command line are invoked. In addition, if the file name matches an
explicit task, that task is invoked before loading the file. This
allows dependency files to be generated and used in a single rake
command invocation.

Example:

  require 'rake/loaders/makefile'

  file ".depends.mf" => [SRC_LIST] do |t|
    sh "makedepend -f- -- #{CFLAGS} -- #{t.prerequisites} > #{t.name}"
  end

  import ".depends.mf"

If ".depends" does not exist, or is out of date w.r.t. the source
files, a new ".depends" file is generated using +makedepend+ before
loading.

== Comments

Standard Ruby comments (beginning with "#") can be used anywhere it is
legal in Ruby source code, including comments for tasks and rules.
However, if you wish a task to be described using the "-T" switch,
then you need to use the +desc+ command to describe the task.

Example:

  desc "Create a distribution package"
  task package: %w[ ... ] do ... end

The "-T" switch (or "--tasks" if you like to spell things out) will
display a list of tasks that have a description.  If you use +desc+ to
describe your major tasks, you have a semi-automatic way of generating
a summary of your Rake file.

  $ rake -T
  (in /home/.../rake)
  rake clean            # Remove any temporary products.
  rake clobber          # Remove any generated file.
  rake clobber_rdoc     # Remove rdoc products
  rake contrib_test     # Run tests for contrib_test
  rake default          # Default Task
  rake install          # Install the application
  rake lines            # Count lines in the main rake file
  rake rdoc             # Build the rdoc HTML Files
  rake rerdoc           # Force a rebuild of the RDOC files
  rake test             # Run tests
  rake testall          # Run all test targets

Only tasks with descriptions will be displayed with the "-T" switch.
Use "-P" (or "--prereqs") to get a list of all tasks and their
prerequisites.

== Namespaces

As projects grow (and along with it, the number of tasks), it is
common for task names to begin to clash.  For example, if you might
have a main program and a set of sample programs built by a single
Rakefile.  By placing the tasks related to the main program in one
namespace, and the tasks for building the sample programs in a
different namespace, the task names will not interfere with each other.

For example:

  namespace "main" do
    task :build do
      # Build the main program
    end
  end

  namespace "samples" do
    task :build do
      # Build the sample programs
    end
  end

  task build: %w[main:build samples:build]

Referencing a task in a separate namespace can be achieved by
prefixing the task name with the namespace and a colon
(e.g. "main:build" refers to the :build task in the +main+ namespace).
Nested namespaces are supported.

Note that the name given in the +task+ command is always the unadorned
task name without any namespace prefixes.  The +task+ command always
defines a task in the current namespace.

=== FileTasks

File task names are not scoped by the namespace command.  Since the
name of a file task is the name of an actual file in the file system,
it makes little sense to include file task names in name space.
Directory tasks (created by the +directory+ command) are a type of
file task and are also not affected by namespaces.

=== Name Resolution

When looking up a task name, rake will start with the current
namespace and attempt to find the name there.  If it fails to find a
name in the current namespace, it will search the parent namespaces
until a match is found (or an error occurs if there is no match).

The "rake" namespace is a special implicit namespace that refers to
the toplevel names.

If a task name begins with a "^" character, the name resolution will
start in the parent namespace.  Multiple "^" characters are allowed.

Here is an example file with multiple :run tasks and how various names
resolve in different locations.

  task :run

  namespace "one" do
    task :run

    namespace "two" do
      task :run

      # :run            => "one:two:run"
      # "two:run"       => "one:two:run"
      # "one:two:run"   => "one:two:run"
      # "one:run"       => "one:run"
      # "^run"          => "one:run"
      # "^^run"         => "rake:run" (the top level task)
      # "rake:run"      => "rake:run" (the top level task)
    end

    # :run       => "one:run"
    # "two:run"  => "one:two:run"
    # "^run"     => "rake:run"
  end

  # :run           => "rake:run"
  # "one:run"      => "one:run"
  # "one:two:run"  => "one:two:run"

== FileLists

FileLists are the way Rake manages lists of files.  You can treat a
FileList as an array of strings for the most part, but FileLists
support some additional operations.

=== Creating a FileList

Creating a file list is easy.  Just give it the list of file names:

   fl = FileList['file1.rb', file2.rb']

Or give it a glob pattern:

   fl = FileList['*.rb']

== Odds and Ends

=== do/end versus { }

Blocks may be specified with either a +do+/+end+ pair, or with curly
braces in Ruby.  We _strongly_ recommend using +do+/+end+ to specify the
actions for tasks and rules.  Because the rakefile idiom tends to
leave off parentheses on the task/file/rule methods, unusual
ambiguities can arise when using curly braces.

For example, suppose that the method +object_files+ returns a list of
object files in a project.  Now we use +object_files+ as the
prerequisites in a rule specified with actions in curly braces.

  # DON'T DO THIS!
  file "prog" => object_files {
    # Actions are expected here (but it doesn't work)!
  }

Because curly braces have a higher precedence than +do+/+end+, the
block is associated with the +object_files+ method rather than the
+file+ method.

This is the proper way to specify the task ...

  # THIS IS FINE
  file "prog" => object_files do
    # Actions go here
  end

== Rakefile Path

When issuing the +rake+ command in a terminal, Rake will look
for a Rakefile in the current directory. If a Rakefile  is not found,
it will search parent directories until one is found.

For example, if a Rakefile resides in the +project/+ directory,
moving deeper into the project's directory tree will not have an adverse
effect on rake tasks:

  $ pwd
  /home/user/project

  $ cd lib/foo/bar
  $ pwd
  /home/user/project/lib/foo/bar

  $ rake run_pwd
  /home/user/project

As far as rake is concerned, all tasks are run from the directory in
which the Rakefile resides.

=== Multiple Rake Files

Not all tasks need to be included in a single Rakefile. Additional
rake files (with the file extension "+.rake+") may be placed in
+rakelib+ directory located at the top level of a project (i.e.
the same directory that contains the main +Rakefile+).

Also, rails projects may include additional rake files in the
+lib/tasks+ directory.

=== Clean and Clobber Tasks

Through <tt>require 'rake/clean'</tt> Rake provides +clean+ and +clobber+
tasks:

+clean+ ::
  Clean up the project by deleting scratch files and backup files.  Add files
  to the +CLEAN+ FileList to have the +clean+ target handle them.

+clobber+ ::
  Clobber all generated and non-source files in a project.  The task depends
  on +clean+, so all the +CLEAN+ files will be deleted as well as files in the
  +CLOBBER+ FileList.  The intent of this task is to return a project to its
  pristine, just unpacked state.

You can add file names or glob patterns to both the +CLEAN+ and +CLOBBER+
lists.

=== Phony Task

The phony task can be used as a dependency to allow file-based tasks to use
non-file-based-tasks as prerequisites without forcing them to rebuild.  You
can <tt>require 'rake/phony'</tt> to add the +phony+ task.

----

== See

* README.rdoc -- Main documentation for Rake.
PKCH[�_�bgg.share/gems/gems/rake-13.0.1/doc/example/main.cnu�[���#include <stdio.h>

extern void a();
extern void b();

int main ()
{
    a();
    b();
    return 0;
}
PKCH[۸	���1share/gems/gems/rake-13.0.1/doc/example/Rakefile1nu�[���# Example Rakefile -*- ruby -*-

task :default => [:main]

file "a.o" => ["a.c"] do |t|
  src = t.name.sub(/\.o$/, '.c')
  sh "gcc #{src} -c -o #{t.name}"
end

file "b.o" => ["b.c"] do |t|
  src = t.name.sub(/\.o$/, '.c')
  sh "gcc #{src} -c -o #{t.name}"
end

file "main.o" => ["main.c"] do |t|
  src = t.name.sub(/\.o$/, '.c')
  sh "gcc #{src} -c -o #{t.name}"
end

OBJFILES = ["a.o", "b.o", "main.o"]
task :obj => OBJFILES

file "main" => OBJFILES do |t|
  sh "gcc -o #{t.name} main.o a.o b.o"
end

task :clean do
  rm_f FileList['*.o']
  Dir['*~'].each { |fn| rm_f fn }
end

task :clobber => [:clean] do
  rm_f "main"
end

task :run => ["main"] do
  sh "./main"
end
PKCH[��AA+share/gems/gems/rake-13.0.1/doc/example/b.cnu�[���#include <stdio.h>

void b()
{
    printf ("In function b\n");
}
PKCH["�;WW1share/gems/gems/rake-13.0.1/doc/example/Rakefile2nu�[���# Example Rakefile -*- ruby -*-
# Using the power of Ruby

task :default => [:main]

def ext(fn, newext)
  fn.sub(/\.[^.]+$/, newext)
end

SRCFILES = Dir['*.c']
OBJFILES = SRCFILES.collect { |fn| ext(fn,".o") }

OBJFILES.each do |objfile|
  srcfile = ext(objfile, ".c")
  file objfile => [srcfile] do |t|
    sh "gcc #{srcfile} -c -o #{t.name}"
  end
end

file "main" => OBJFILES do |t|
  sh "gcc -o #{t.name} main.o a.o b.o"
end

task :clean do
  rm_f FileList['*.o']
  Dir['*~'].each { |fn| rm_f fn }
end

task :clobber => [:clean] do
  rm_f "main"
end

task :run => ["main"] do
  sh "./main"
end
PKCH[Oq�AA+share/gems/gems/rake-13.0.1/doc/example/a.cnu�[���#include <stdio.h>

void a()
{
    printf ("In function a\n");
}
PKCH[�?qFF7share/gems/gems/rake-13.0.1/doc/command_line_usage.rdocnu�[���= Rake Command Line Usage

Rake is invoked from the command line using:

    % rake [options ...]  [VAR=VALUE ...]  [targets ...]

Options are:

[<tt><em>name</em>=<em>value</em></tt>]
    Set the environment variable <em>name</em> to <em>value</em>
    during the execution of the <b>rake</b> command.  You can access
    the value by using ENV['<em>name</em>'].

[<tt>--all</tt> (-A)]
    Used in combination with the -T and -D options, will force
    those options to show all the tasks, even the ones without comments.

[<tt>--backtrace</tt>{=_output_} (-n)]
    Enable a full backtrace (i.e. like --trace, but without the task
    tracing details). The _output_ parameter is optional, but if
    specified it controls where the backtrace output is sent. If
    _output_ is <tt>stdout</tt>, then backtrace output is directed to
    standard output. If _output_ is <tt>stderr</tt>, or if it is
    missing, then the backtrace output is sent to standard error.

[<tt>--comments</tt>]
    Used in combination with the -W options to force the output to
    contain commented options only. This is the reverse of
    <tt>--all</tt>.

[<tt>--describe</tt> _pattern_ (-D)]
    Describe the tasks (matching optional PATTERN), then exit.

[<tt>--dry-run</tt> (-n)]
    Do a dry run.  Print the tasks invoked and executed, but do not
    actually execute any of the actions.

[<tt>--execute</tt> _code_ (-e)]
    Execute some Ruby code and exit.

[<tt>--execute-print</tt> _code_ (-p)]
    Execute some Ruby code, print the result, and exit.

[<tt>--execute-continue</tt> _code_ (-E)]
    Execute some Ruby code, then continue with normal task processing.

[<tt>--help</tt>  (-H)]
    Display some help text and exit.

[<tt>--jobs</tt> _number_  (-j)]

    Specifies the maximum number of concurrent threads allowed. Rake
    will allocate threads as needed up to this maximum number.

    If omitted, Rake will attempt to estimate the number of CPUs on
    the system and add 4 to that number.

    The concurrent threads are used to execute the <tt>multitask</tt>
    prerequisites. Also see the <tt>-m</tt> option which turns all
    tasks into multitasks.

    Sample values:
       (no -j)   : Allow up to (# of CPUs + 4) number of threads
       --jobs    : Allow unlimited number of threads
       --jobs=1  : Allow only one thread (the main thread)
       --jobs=16 : Allow up to 16 concurrent threads

[<tt>--job-stats</tt> _level_]

    Display job statistics at the completion of the run. By default,
    this will display the requested number of active threads (from the
    -j options) and the maximum number of threads in play at any given
    time.

    If the optional _level_ is <tt>history</tt>, then a complete trace
    of task history will be displayed on standard output.

[<tt>--libdir</tt> _directory_  (-I)]
    Add _directory_ to the list of directories searched for require.

[<tt>--multitask</tt> (-m)]
    Treat all tasks as multitasks. ('make/drake' semantics)

[<tt>--nosearch</tt>  (-N)]
    Do not search for a Rakefile in parent directories.

[<tt>--prereqs</tt>  (-P)]
    Display a list of all tasks and their immediate prerequisites.

[<tt>--quiet</tt> (-q)]
    Do not echo commands from FileUtils.

[<tt>--rakefile</tt> _filename_ (-f)]
    Use _filename_ as the name of the rakefile. The default rakefile
    names are +rakefile+ and +Rakefile+ (with +rakefile+ taking
    precedence). If the rakefile is not found in the current
    directory, +rake+ will search parent directories for a match. The
    directory where the Rakefile is found will become the current
    directory for the actions executed in the Rakefile.

[<tt>--rakelibdir</tt> _rakelibdir_ (-R)]
    Auto-import any .rake files in RAKELIBDIR. (default is 'rakelib')

[<tt>--require</tt> _name_ (-r)]
    Require _name_ before executing the Rakefile.

[<tt>--rules</tt>]
    Trace the rules resolution.

[<tt>--silent (-s)</tt>]
    Like --quiet, but also suppresses the 'in directory' announcement.

[<tt>--suppress-backtrace _pattern_ </tt>]
    Line matching the regular expression _pattern_ will be removed
    from the backtrace output. Note that the --backtrace option is the
    full backtrace without these lines suppressed.

[<tt>--system</tt> (-g)]
    Use the system wide (global) rakefiles. The project Rakefile is
    ignored. By default, the system wide rakefiles are used only if no
    project Rakefile is found. On Unix-like system, the system wide
    rake files are located in $HOME/.rake. On a windows system they
    are stored in $APPDATA/Rake.

[<tt>--no-system</tt> (-G)]
    Use the project level Rakefile, ignoring the system-wide (global)
    rakefiles.

[<tt>--tasks</tt> <em>pattern</em> (-T)]
    Display a list of the major tasks and their comments.  Comments
    are defined using the "desc" command.  If a pattern is given, then
    only tasks matching the pattern are displayed.

[<tt>--trace</tt>{=_output_} (-t)]
    Turn on invoke/execute tracing. Also enable full backtrace on
    errors. The _output_ parameter is optional, but if specified it
    controls where the trace output is sent. If _output_ is
    <tt>stdout</tt>, then trace output is directed to standard output.
    If _output_ is <tt>stderr</tt>, or if it is missing, then trace
    output is sent to standard error.

[<tt>--verbose</tt> (-v)]
    Echo the Sys commands to standard output.

[<tt>--version</tt> (-V)]
    Display the program version and exit.

[<tt>--where</tt> <em>pattern</em> (-W)]
    Display tasks that match <em>pattern</em> and the file and line
    number where the task is defined. By default this option will
    display all tasks, not just the tasks that have descriptions.

[<tt>--no-deprecation-warnings</tt> (-X)]
    Do not display the deprecation warnings.

In addition, any command line option of the form
<em>VAR</em>=<em>VALUE</em> will be added to the environment hash
<tt>ENV</tt> and may be tested in the Rakefile.
PKCH[��U&��-share/gems/gems/rake-13.0.1/CONTRIBUTING.rdocnu�[���= Source Repository

Rake is currently hosted at github. The github web page is
https://github.com/ruby/rake . The public git clone URL is

  https://github.com/ruby/rake.git

= Running the Rake Test Suite

If you wish to run the unit and functional tests that come with Rake:

* +cd+ into the top project directory of rake.
* Install gem dependency using bundler:

    $ bundle install  # Install bundler, minitest and rdoc

* Run the test suite

    $ rake

= Rubocop

Rake uses Rubocop to enforce a consistent style on new changes being
proposed. You can check your code with Rubocop using:

  $ ./bin/rubocop

= Issues and Bug Reports

Feel free to submit commits or feature requests.  If you send a patch,
remember to update the corresponding unit tests.  In fact, I prefer
new feature to be submitted in the form of new unit tests.

For other information, feel free to ask on the ruby-talk mailing list.

If you have found a bug in rake please try with the latest version of rake
before filing an issue.  Also check History.rdoc for bug fixes that may have
addressed your issue.

When submitting pull requests please check the rake Travis-CI page for test
failures:

  https://travis-ci.org/ruby/rake
PKCH[o����'share/gems/gems/rake-13.0.1/README.rdocnu�[���= RAKE -- Ruby Make

home :: https://github.com/ruby/rake
bugs :: https://github.com/ruby/rake/issues
docs :: https://ruby.github.io/rake

== Description

Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
specified in standard Ruby syntax.

Rake has the following features:

* Rakefiles (rake's version of Makefiles) are completely defined in
  standard Ruby syntax.  No XML files to edit.  No quirky Makefile
  syntax to worry about (is that a tab or a space?)

* Users can specify tasks with prerequisites.

* Rake supports rule patterns to synthesize implicit tasks.

* Flexible FileLists that act like arrays but know about manipulating
  file names and paths.

* A library of prepackaged tasks to make building rakefiles easier. For example,
  tasks for building tarballs. (Formerly
  tasks for building RDoc, Gems, and publishing to FTP were included in rake but they're now
  available in RDoc, RubyGems, and rake-contrib respectively.)

* Supports parallel execution of tasks.

== Installation

=== Gem Installation

Download and install rake with the following.

  gem install rake

== Usage

=== Simple Example

First, you must write a "Rakefile" file which contains the build rules. Here's
a simple example:

  task default: %w[test]

  task :test do
    ruby "test/unittest.rb"
  end

This Rakefile has two tasks:

* A task named "test", which -- upon invocation -- will run a unit test file
  in Ruby.
* A task named "default". This task does nothing by itself, but it has exactly
  one dependency, namely the "test" task. Invoking the "default" task will
  cause Rake to invoke the "test" task as well.

Running the "rake" command without any options will cause it to run the
"default" task in the Rakefile:

  % ls
  Rakefile     test/
  % rake
  (in /home/some_user/Projects/rake)
  ruby test/unittest.rb
  ....unit test output here...

Type "rake --help" for all available options.

== Resources

=== Rake Information

* {Rake command-line}[link:doc/command_line_usage.rdoc]
* {Writing Rakefiles}[link:doc/rakefile.rdoc]
* The original {Rake announcement}[link:doc/rational.rdoc]
* Rake {glossary}[link:doc/glossary.rdoc]

=== Presentations and Articles about Rake

* Avdi Grimm's rake series:
  1. {Rake Basics}[http://devblog.avdi.org/2014/04/21/rake-part-1-basics/]
  2. {Rake File Lists}[http://devblog.avdi.org/2014/04/22/rake-part-2-file-lists/]
  3. {Rake Rules}[http://devblog.avdi.org/2014/04/23/rake-part-3-rules/]
  4. {Rake Pathmap}[http://devblog.avdi.org/2014/04/24/rake-part-4-pathmap/]
  5. {File Operations}[http://devblog.avdi.org/2014/04/25/rake-part-5-file-operations/]
  6. {Clean and Clobber}[http://devblog.avdi.org/2014/04/28/rake-part-6-clean-and-clobber/]
  7. {MultiTask}[http://devblog.avdi.org/2014/04/29/rake-part-7-multitask/]
* {Jim Weirich's 2003 RubyConf presentation}[http://web.archive.org/web/20140221123354/http://onestepback.org/articles/buildingwithrake/]
* Martin Fowler's article on Rake: http://martinfowler.com/articles/rake.html

== Other Make Re-envisionings ...

Rake is a late entry in the make replacement field.  Here are links to
other projects with similar (and not so similar) goals.

* http://directory.fsf.org/wiki/Bras -- Bras, one of earliest
  implementations of "make in a scripting language".
* http://www.a-a-p.org -- Make in Python
* http://ant.apache.org -- The Ant project
* http://search.cpan.org/search?query=PerlBuildSystem -- The Perl Build System
* http://www.rubydoc.info/gems/rant/0.5.7/frames -- Rant, another Ruby make tool.

== Credits

[<b>Jim Weirich</b>] Who originally created Rake.

[<b>Ryan Dlugosz</b>] For the initial conversation that sparked Rake.

[<b>Nobuyoshi Nakada <nobu@ruby-lang.org></b>] For the initial patch for rule support.

[<b>Tilman Sauerbeck <tilman@code-monkey.de></b>] For the recursive rule patch.

[<b>Eric Hodel</b>] For aid in maintaining rake.

[<b>Hiroshi SHIBATA</b>] Maintainer of Rake 10.X and Rake 11.X

== License

Rake is available under an MIT-style license.

:include: MIT-LICENSE

---

= Other stuff

Author::   Jim Weirich <jim.weirich@gmail.com>
Requires:: Ruby 2.0.0 or later
License::  Copyright Jim Weirich.
           Released under an MIT-style license.  See the MIT-LICENSE
           file included in the distribution.

== Warranty

This software is provided "as is" and without any express or implied
warranties, including, without limitation, the implied warranties of
merchantability and fitness for a particular purpose.

== Historical

Rake was originally created by Jim Weirich, who unfortunately passed away in
February 2014. This repository was originally hosted at
{github.com/jimweirich/rake}[https://github.com/jimweirich/rake/], however
with his passing, has been moved to {ruby/rake}[https://github.com/ruby/rake].

You can view Jim's last commit here:
https://github.com/jimweirich/rake/tree/336559f28f55bce418e2ebcc0a57548dcbac4025

You can {read more about Jim}[https://en.wikipedia.org/wiki/Jim_Weirich] at Wikipedia.

Thank you for this great tool, Jim. We'll remember you.
PKCH[�v���(share/gems/gems/rake-13.0.1/rake.gemspecnu�[���# -*- encoding: utf-8 -*-
# stub: rake 13.0.1 ruby lib

Gem::Specification.new do |s|
  s.name = "rake".freeze
  s.version = "13.0.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.2".freeze) if s.respond_to? :required_rubygems_version=
  s.metadata = { "bug_tracker_uri" => "https://github.com/ruby/rake/issues", "changelog_uri" => "https://github.com/ruby/rake/blob/v13.0.1/History.rdoc", "documentation_uri" => "https://ruby.github.io/rake", "source_code_uri" => "https://github.com/ruby/rake/tree/v13.0.1" } if s.respond_to? :metadata=
  s.require_paths = ["lib".freeze]
  s.authors = ["Hiroshi SHIBATA".freeze, "Eric Hodel".freeze, "Jim Weirich".freeze]
  s.bindir = "exe".freeze
  s.date = "2019-11-12"
  s.description = "Rake is a Make-like program implemented in Ruby. Tasks and dependencies are\nspecified in standard Ruby syntax.\nRake has the following features:\n  * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.\n    No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)\n  * Users can specify tasks with prerequisites.\n  * Rake supports rule patterns to synthesize implicit tasks.\n  * Flexible FileLists that act like arrays but know about manipulating file names and paths.\n  * Supports parallel execution of tasks.\n".freeze
  s.email = ["hsbt@ruby-lang.org".freeze, "drbrain@segment7.net".freeze, "".freeze]
  s.executables = ["rake".freeze]
  s.files = [".github/workflows/macos.yml".freeze, ".github/workflows/ubuntu-rvm.yml".freeze, ".github/workflows/ubuntu.yml".freeze, ".github/workflows/windows.yml".freeze, "CONTRIBUTING.rdoc".freeze, "Gemfile".freeze, "History.rdoc".freeze, "MIT-LICENSE".freeze, "README.rdoc".freeze, "Rakefile".freeze, "bin/bundle".freeze, "bin/console".freeze, "bin/rake".freeze, "bin/rdoc".freeze, "bin/rubocop".freeze, "bin/setup".freeze, "doc/command_line_usage.rdoc".freeze, "doc/example/Rakefile1".freeze, "doc/example/Rakefile2".freeze, "doc/example/a.c".freeze, "doc/example/b.c".freeze, "doc/example/main.c".freeze, "doc/glossary.rdoc".freeze, "doc/jamis.rb".freeze, "doc/proto_rake.rdoc".freeze, "doc/rake.1".freeze, "doc/rakefile.rdoc".freeze, "doc/rational.rdoc".freeze, "exe/rake".freeze, "lib/rake.rb".freeze, "lib/rake/application.rb".freeze, "lib/rake/backtrace.rb".freeze, "lib/rake/clean.rb".freeze, "lib/rake/cloneable.rb".freeze, "lib/rake/cpu_counter.rb".freeze, "lib/rake/default_loader.rb".freeze, "lib/rake/dsl_definition.rb".freeze, "lib/rake/early_time.rb".freeze, "lib/rake/ext/core.rb".freeze, "lib/rake/ext/string.rb".freeze, "lib/rake/file_creation_task.rb".freeze, "lib/rake/file_list.rb".freeze, "lib/rake/file_task.rb".freeze, "lib/rake/file_utils.rb".freeze, "lib/rake/file_utils_ext.rb".freeze, "lib/rake/invocation_chain.rb".freeze, "lib/rake/invocation_exception_mixin.rb".freeze, "lib/rake/late_time.rb".freeze, "lib/rake/linked_list.rb".freeze, "lib/rake/loaders/makefile.rb".freeze, "lib/rake/multi_task.rb".freeze, "lib/rake/name_space.rb".freeze, "lib/rake/packagetask.rb".freeze, "lib/rake/phony.rb".freeze, "lib/rake/private_reader.rb".freeze, "lib/rake/promise.rb".freeze, "lib/rake/pseudo_status.rb".freeze, "lib/rake/rake_module.rb".freeze, "lib/rake/rake_test_loader.rb".freeze, "lib/rake/rule_recursion_overflow_error.rb".freeze, "lib/rake/scope.rb".freeze, "lib/rake/task.rb".freeze, "lib/rake/task_argument_error.rb".freeze, "lib/rake/task_arguments.rb".freeze, "lib/rake/task_manager.rb".freeze, "lib/rake/tasklib.rb".freeze, "lib/rake/testtask.rb".freeze, "lib/rake/thread_history_display.rb".freeze, "lib/rake/thread_pool.rb".freeze, "lib/rake/trace_output.rb".freeze, "lib/rake/version.rb".freeze, "lib/rake/win32.rb".freeze, "rake.gemspec".freeze]
  s.homepage = "https://github.com/ruby/rake".freeze
  s.licenses = ["MIT".freeze]
  s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
  s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
  s.rubygems_version = "3.3.5".freeze
  s.summary = "Rake is a Make-like program implemented in Ruby".freeze
end
PKCH[A u���(share/gems/gems/rake-13.0.1/History.rdocnu�[���=== 13.0.1

==== Bug fixes

* Fixed bug: Reenabled task raises previous exception on second invokation 
  Pull Request #271 by thorsteneckel
* Fix an incorrectly resolved arg pattern
  Pull Request #327 by mjbellantoni

=== 13.0.0

==== Enhancements

* Follows recent changes on keyword arguments in ruby 2.7.
  Pull Request #326 by nobu
* Make `PackageTask` be able to omit parent directory while packing files 
  Pull Request #310 by tonytonyjan
* Add order only dependency
  Pull Request #269 by take-cheeze

==== Compatibility changes

* Drop old ruby versions(< 2.2)

=== 12.3.3

==== Bug fixes

* Use the application's name in error message if a task is not found.
  Pull Request #303 by tmatilai

==== Enhancements:

* Use File.open explicitly.

=== 12.3.2

==== Bug fixes

* Fixed test fails caused by 2.6 warnings.
  Pull Request #297 by hsbt

==== Enhancements:

* Rdoc improvements.
  Pull Request #293 by colby-swandale
* Improve multitask performance.
  Pull Request #273 by jsm
* Add alias `prereqs`.
  Pull Request #268 by take-cheeze

=== 12.3.1

==== Bug fixes

* Support did_you_mean >= v1.2.0 which has a breaking change on formatters.
  Pull request #262 by FUJI Goro.

==== Enhancements:

* Don't run task if it depends on already invoked but failed task.
  Pull request #252 by Gonzalo Rodriguez.
* Make space trimming consistent for all task arguments.
  Pull request #259 by Gonzalo Rodriguez.
* Removes duplicated inclusion of Rake::DSL in tests.
  Pull request #254 by Gonzalo Rodriguez.
* Re-raise a LoadError that didn't come from require in the test loader.
  Pull request #250 by Dylan Thacker-Smith.

=== 12.3.0

==== Compatibility Changes

* Bump `required_ruby_version` to Ruby 2.0.0. Rake has already
  removed support for Ruby 1.9.x.

==== Enhancements:

* Support `test-bundled-gems` task on ruby core.

=== 12.2.1

==== Bug fixes

* Fixed to break Capistrano::Application on capistrano3.

=== 12.2.0

==== Enhancements:

* Make rake easier to use as a library
  Pull request #211 by @drbrain
* Fix quadratic performance in FileTask#out_of_date?
  Pull request #224 by @doudou
* Clarify output when printing nested exception traces
  Pull request #232 by @urbanautomaton

==== Bug fixes

* Account for a file that match 2 or more patterns.
  Pull request #231 by @styd

=== 12.1.0

==== Enhancements:

* Added did_you_mean feature for invalid rake task.
  Pull request #221 by @xtina-starr
* Enabled to dependency chained by extensions. Pull request #39 by Petr Skocik.
* Make all of string literals to frozen objects on Ruby 2.4 or later.

==== Bug fixes

* Typo fixes in rakefile.rdoc. Pull request #180 by Yuta Kurotaki.
* Fix unexpected behavior of file task with dryrun option.
  Pull request #183 by @aycabta.
* Make LoadError from running tests more obvious. Pull request #195
  by Eric Hodel.
* Fix unexpected TypeError with hash style option. Pull request #202
  by Kuniaki IGARASHI.

=== 12.0.0

==== Compatibility Changes

* Removed arguments on clear #157 by Jesse Bowes
* Removed `rake/contrib` packages. These are extracted to `rake-contrib` gem.
* Removed deprecated method named `last\_comment`.

==== Enhancements:

* Re-use trace option on `cleanup` task. #164 by Brian Henderson
* Actions adore keyword arguments #174 by Josh Cheek
* Rake::TaskArguments#key? alias of #has_key? #175 by Paul Annesley

=== 11.3.0 / 2016-09-20

==== Enhancements:

* Remove to reference `Fixnum` constant. Pull request #160 by nobu

=== 11.2.2 / 2016-06-12

==== Bug fixes

* Fix unexpected behavior with multiple dependencies on Rake::TestTask

=== 11.2.1 / 2016-06-12

==== Bug fixes

* Fix regression of dependencies handling on Rake::TestTask. Report #139

=== 11.2.0 / 2016-06-11

==== Bug fixes

* Fix unexpected cut-out behavior on task description using triple dots
  and exclamation. Report #106 from Stephan Kämper and Pull request #134 by Lee
* Fix empty argument assignment with `with_defaults` option. Pull request #135
  by bakunyo
* Ignore to use `hwprefs` on Darwin platform. Use sysctl now. Report #128

==== Enhancements

* Spawn options for sh Pull equest #138 by Eric Hodel.
* Allow to specify dependencies(prerequisites) for Rake::TestTask
  Pull request #117 by Tim Maslyuchenko
* Use Bundler task instead of hoe for gem release.
* Remove explicitly load to rubygems for Ruby 1.8.
* Unify to declare `Rake::VERSION`.
* Support xz format for PackageTask.

=== 11.1.2 / 2016-03-28

==== Bug fixes

* Remove `-W` option when Rake::TestTask#verbose enabled. It's misunderstanding
  specification change with Rake 11. Partly revert #67

=== 11.1.1 / 2016-03-14

==== Bug fixes

* Use `-W` instead of `--verbose` when Rake::TestTask#verbose enabled.
  JRuby doesn't have `--verbose` option.

=== 11.1.0 / 2016-03-11

==== Compatibility Changes

* Revert to remove `last\_comment`. It will remove Rake 12.

=== 11.0.1 / 2016-03-09

==== Bug fixes

* Fixed packaging manifest.

=== 11.0.0 / 2016-03-09

==== Bug fixes

* Correctly handle bad encoding in exception messages. Pull request #113
  by Tomer Brisker
* Fix verbose option at TestTask. Pull request #67 by Mike Blumtritt

==== Enhancements

* Make FileList#exclude more analogous to FileList#include.
* Use IO.open instead of Open3.popen3 for CPU counter.
* Make Rake::Task#already_invoked publicly accessible.
  Pull request #93 by Joe Rafaniello
* Lookup prerequisites with same name outside of scope instead of
  matching self. Pull request #96 by Sandy Vanderbleek
* Make FileList#pathmap behave like String#pathmap.
  Pull request #61 by Daniel Tamai
* Add fetch method to task arguments.
  Pull request #12 by Chris Keathley
* Use ruby warnings by default. Pull request #97 by Harold Giménez

==== Compatibility Changes

* Removed to support Ruby 1.8.x
* Removed constant named `RAKEVERSION`
* Removed Rake::AltSystem
* Removed Rake::RubyForgePublisher
* Removed Rake::TaskManager#last\_comment. Use last\_description.
* Removed Rake::TaskLib#paste
* Removed Top-level SshDirPublisher, SshFreshDirPublisher, SshFilePublisher
  and CompositePublisher from lib/rake/contrib/publisher.rb
* Removed "rake/runtest.rb"

=== 10.5.0 / 2016-01-13

==== Enhancements

* Removed monkey patching for Ruby 1.8. Pull request #46 by Pablo Herrero.
* Inheritance class of Rake::FileList returns always self class.
  Pull request #74 by Thomas Scholz

=== 10.4.2 / 2014-12-02

==== Bug fixes

* Rake no longer edits ARGV.  This allows you to re-exec rake from a rake
  task.  Pull requset #9 by Matt Palmer.
* Documented how Rake::DSL#desc handles sentences in task descriptions.
  Issue #7 by Raza Sayed.
* Fixed test error on 1.9.3 with legacy RubyGems.  Issue #8 by Matt Palmer.
* Deleted duplicated History entry.  Pull request #10 by Yuji Yamamoto.

=== 10.4.1 / 2014-12-01

==== Bug fixes

* Reverted fix for #277 as it caused numerous issues for rake users.
  rails/spring issue #366 by Gustavo Dutra.

=== 10.4.0 / 2014-11-22

==== Enhancements

* Upgraded to minitest 5.  Pull request #292 by Teo Ljungberg.
* Added support for Pathname in rake tasks.  Pull request #271 by Randy
  Coulman.
* Rake now ignores falsy dependencies which allows for easier programmatic
  creation of tasks.  Pull request #273 by Manav.
* Rake no longer edits ARGV.  This allows you to re-exec rake from a rake
  task.  Issue #277 by Matt Palmer.
* Etc.nprocessors is used for counting the number of CPUs.

==== Bug fixes

* Updated rake manpage.  Issue #283 by Nathan Long, pull request #291 by
  skittleys.
* Add Rake::LATE to allow rebuilding of files that depend on deleted files.
  Bug #286, pull request #287 by David Grayson.
* Fix relinking of files when repackaging.  Bug #276 by Muenze.
* Fixed some typos.  Pull request #280 by Jed Northridge.
* Try counting CPUs via cpuinfo if host_os was not matched.  Pull request
  #282 by Edouard B.

=== 10.3.2 / 2014-05-15

==== Bug fixes

* Rake no longer infinitely loops when showing exception causes that refer to
  each other.  Bug #272 by Chris Bandy.
* Fixed documentation typos.  Bug #275 by Jake Worth.

=== 10.3.1 / 2014-04-17

==== Bug fixes

* Really stop reporting an error when cleaning already-deleted files.  Pull
  request #269 by Randy Coulman
* Fixed infinite loop when cleaning already-deleted files on windows.

=== 10.3 / 2014-04-15

==== Enhancements

* Added --build-all option to rake which treats all file prerequisites as
  out-of-date.  Pull request #254 by Andrew Gilbert.
* Added Rake::NameSpace#scope.  Issue #263 by Jon San Miguel.

==== Bug fixes

* Suppress org.jruby package files in rake error messages for JRuby users.
  Issue #213 by Charles Nutter.
* Fixed typo, removed extra "h".  Pull request #267 by Hsing-Hui Hsu.
* Rake no longer reports an error when cleaning already-deleted files.  Pull
  request #266 by Randy Coulman.
* Consume stderr while determining CPU count to avoid hang.  Issue #268 by
  Albert Sun.

=== 10.2.2 / 2014-03-27

==== Bug fixes

* Restored Ruby 1.8.7 compatibility

=== 10.2.1 / 2014-03-25

==== Bug fixes

* File tasks including a ':' are now top-level tasks again.  Issue #262 by
  Josh Holtrop.
* Use sysctl for CPU count for all BSDs.  Pull request #261 by Joshua Stein.
* Fixed CPU detection for unknown platforms.

=== 10.2.0 / 2014-03-24

==== Enhancements

* Rake now requires Ruby 1.9 or newer.  For me, this is a breaking change, but
  it seems that Jim planned to release it with Rake 10.2.  See also pull
  request #247 by Philip Arndt.
* Rake now allows you to declare tasks under a namespace like:

    task 'a:b' do ... end

  Pull request #232 by Judson Lester.
* Task#source defaults to the first prerequisite in non-rule tasks.  Pull
  request #215 by Avdi Grimm.
* Rake now automatically rebuilds and reloads imported files.  Pull request
  #209 by Randy Coulman.
* The rake task arguments can contain escaped commas.  Pull request #214 by
  Filip Hrbek.
* Rake now prints the exception class on errors.  Patch #251 by David Cornu.

==== Bug fixes

* Fixed typos.  Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
  by Zachary Scott.
* Fixed documentation for calling tasks with arguments.  Pull request #235 by
  John Varghese.
* Clarified `rake -f` usage message.  Pull request #252 by Marco Pfatschbacher.
* Fixed a test failure on windows.  Pull request #231 by Hiroshi Shirosaki.
* Fixed corrupted rake.1.gz.  Pull request #225 by Michel Boaventura.
* Fixed bug in can\_detect\_signals? in test.  Patch from #243 by Alexey
  Borzenkov.

=== 10.1.1

* Use http://github.com/jimweirich/rake instead of http://rake.rubyforge.org for
  canonical project url.

=== 10.1.0

==== Changes

===== New Features

* Add support for variable length task argument lists. If more actual
  arguments are supplied than named arguments, then the extra
  arguments values will be in args.extras.

* Application name is not displayed in the help banner. (Previously
  "rake" was hardcoded, now rake-based applications can display their
  own names).

===== Bug Fixes

Bug fixes include:

* Fix backtrace suppression issues.

* Rules now explicit get task arguments passed to them.

* Rename FileList#exclude? to FileList#exclude\_from\_list? to avoid
  conflict with new Rails method.

* Clean / Clobber tasks now report failure to remove files.

* Plus heaps of internal code cleanup.

==== Thanks

As usual, it was input from users that drove a lot of these changes.
The following people contributed patches, made suggestions or made
otherwise helpful comments. Thanks to ...

* Michael Nikitochkin (general code cleanup)
* Vipul A M (general code cleanup)
* Dennis Bell (variable length task argument lists)
* Jacob Swanner (rules arguments)
* Rafael Rosa Fu (documentation typo)
* Stuart Nelson (install.rb fixes)
* Lee Hambley (application name in help banner)

-- Jim Weirich

=== 10.0.3

  "Jim, when will Rake reach version 1.0?"

Over the past several years I've been asked that question at
conferences, panels and over twitter. Due to historical reasons (or
maybe just plain laziness) Rake has (incorrectly) been treating the
second digit of the version as the major release number. So in my head
Rake was already at version 9.

Well, it's time to fix things. This next version of Rake drops old,
crufty, backwards compatibility hacks such as top level constants, DSL
methods defined in Object and numerous other features that are just no
longer desired. It's also time to drop the leading zero from the
version number as well and call this new version of rake what it
really is: Version 10.

So, welcome to Rake 10.0!

Rake 10 is actually feature identical to the latest version of Rake 9
(that would be the version spelled 0.9.3), *except* that Rake 10 drops
all the sundry deprecated features that have accumulated over the years.

If your Rakefile is up to date and current with all the new features
of Rake 10, you are ready to go. If your Rakefile still uses a few
deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
feature set. Just be aware that future features will be in Rake 10
family line.

==== Changes

As mentioned above, there are no new features in Rake 10. However,
there are a number of features missing:

* Classic namespaces are now gone. Rake is no longer able to reflect
  the options settings in the global variables ($rakefile, $show\_tasks,
  $show\_prereqs, $trace, $dryrun and $silent). The
  <tt>--classic-namespace</tt> option is no longer supported.

* Global constants are no longer supported. This includes
  <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
  <tt>RakeApp</tt>). The constant missing hook to warn about using
  global rake constants has been removed.

* The Rake DSL methods (task, file, directory, etc) are in their own
  module (Rake::DSL). The stub versions of these methods (that printed
  warnings) in Object have been removed. However, the DSL methods are
  added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
  not in the inheritance tree, the presence of the DSL methods in main
  should be low impact on other libraries.

  If you want to use the Rake DSL commands from your own code, just
  include <tt>Rake::DSL</tt> into your own classes and modules.

* The deprecated syntax for task arguments (the one using
  <tt>:needs</tt>) has been removed.

* The <tt>--reduce-compat</tt> flag has been removed (it's not needed
  anymore).

* The deprecated <tt>rake/sys.rb</tt> library has been removed.

* The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
  RDoc supplies its own rake task now.

* The deprecated <tt>rake/gempackagetask.rb</tt> library has been
  removed. Gem supplies its own package task now.

There is one small behavioral change:

* Non-file tasks now always report the current time as their time
  stamp. This is different from the previous behavior where non-file
  tasks reported current time only if there were no prerequisites, and
  the max prerequisite timestamp otherwise. This lead to inconsistent
  and surprising behavior when adding prerequisites to tasks that in
  turn were prequisites to file tasks. The new behavior is more
  consistent and predictable.

==== Changes (from 0.9.3, 0.9.4, 0.9.5)

Since Rake 10 includes the changes from the last version of Rake 9,
we'll repeat the changes for versions 0.9.3 through 0.9.5 here.

===== New Features (in 0.9.3)

* Multitask tasks now use a thread pool. Use -j to limit the number of
  available threads.

* Use -m to turn regular tasks into multitasks (use at your own risk).

* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
  programatically add rake task libraries.

* You can specific backtrace suppression patterns (see
  --suppress-backtrace)

* Directory tasks can now take prerequisites and actions

* Use --backtrace to request a full backtrace without the task trace.

* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
  output to standard output rather than standard error.

* Optional 'phony' target (enable with 'require 'rake/phony'") for
  special purpose builds.

* Task#clear now clears task comments as well as actions and
  prerequisites. Task#clear_comment will specifically target comments.

* The --all option will force -T and -D to consider all the tasks,
  with and without descriptions.

===== Bug Fixes (in 0.9.3)

* Semi-colons in windows rakefile paths now work.

* Improved Control-C support when invoking multiple test suites.

* egrep method now reads files in text mode (better support for
  Windows)

* Better deprecation line number reporting.

* The -W option now works with all tasks, whether they have a
  description or not.

* File globs in rake should not be sorted alphabetically, independent
  of file system and platform.

* Numerous internal improvements.

* Documentation typos and fixes.

===== Bug Fixes (in 0.9.4)

* Exit status with failing tests is not correctly set to non-zero.

* Simplified syntax for phony task (for older versions of RDoc).

* Stand alone FileList usage gets glob function (without loading in
  extra dependencies)

===== Bug Fixes (in 0.9.5)

* --trace and --backtrace no longer swallow following task names.

==== Thanks

As usual, it was input from users that drove a lot of these changes. The
following people contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 10.0.2

==== Changes

===== Bug Fixes

* --trace and --backtrace no longer swallow following task names.

==== Thanks

As usual, it was input from users that drove a lot of these changes. The
following people contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 10.0.1

==== Changes

===== Bug Fixes

* Exit status with failing tests is not correctly set to non-zero.

* Simplified syntax for phony task (for older versions of RDoc).

* Stand alone FileList usage gets glob function (without loading in
  extra dependencies)

==== Thanks

As usual, it was input from users that drove a lot of these changes. The
following people contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 10.0.0

  "Jim, when will Rake reach version 1.0?"

Over the past several years I've been asked that question at
conferences, panels and over twitter. Due to historical reasons (or
maybe just plain laziness) Rake has (incorrectly) been treating the
second digit of the version as the major release number. So in my head
Rake was already at version 9.

Well, it's time to fix things. This next version of Rake drops old,
crufty, backwards compatibility hacks such as top level constants, DSL
methods defined in Object and numerous other features that are just no
longer desired. It's also time to drop the leading zero from the
version number as well and call this new version of rake what it
really is: Version 10.

So, welcome to Rake 10.0!

Rake 10 is actually feature identical to the latest version of Rake 9
(that would be the version spelled 0.9.3), *except* that Rake 10 drops
all the sundry deprecated features that have accumulated over the years.

If your Rakefile is up to date and current with all the new features
of Rake 10, you are ready to go. If your Rakefile still uses a few
deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
feature set. Just be aware that future features will be in Rake 10
family line.

==== Changes in 10.0

As mentioned above, there are no new features in Rake 10. However,
there are a number of features missing:

* Classic namespaces are now gone. Rake is no longer able to reflect
  the options settings in the global variables ($rakefile, $show\_tasks,
  $show\_prereqs, $trace, $dryrun and $silent). The
  <tt>--classic-namespace</tt> option is no longer supported.

* Global constants are no longer supported. This includes
  <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
  <tt>RakeApp</tt>). The constant missing hook to warn about using
  global rake constants has been removed.

* The Rake DSL methods (task, file, directory, etc) are in their own
  module (Rake::DSL). The stub versions of these methods (that printed
  warnings) in Object have been removed. However, the DSL methods are
  added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
  not in the inheritance tree, the presence of the DSL methods in main
  should be low impact on other libraries.

  If you want to use the Rake DSL commands from your own code, just
  include <tt>Rake::DSL</tt> into your own classes and modules.

* The deprecated syntax for task arguments (the one using
  <tt>:needs</tt>) has been removed.

* The <tt>--reduce-compat</tt> flag has been removed (it's not needed
  anymore).

* The deprecated <tt>rake/sys.rb</tt> library has been removed.

* The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
  RDoc supplies its own rake task now.

* The deprecated <tt>rake/gempackagetask.rb</tt> library has been
  removed. Gem supplies its own package task now.

There is one small behavioral change:

* Non-file tasks now always report the current time as their time
  stamp. This is different from the previous behavior where non-file
  tasks reported current time only if there were no prerequisites, and
  the max prerequisite timestamp otherwise. This lead to inconsistent
  and surprising behavior when adding prerequisites to tasks that in
  turn were prequisites to file tasks. The new behavior is more
  consistent and predictable.

==== Changes (from 0.9.3)

Since Rake 10 includes the changes from the last version of Rake 9,
we'll repeat the changes for version 0.9.3 here.

===== New Features

* Multitask tasks now use a thread pool. Use -j to limit the number of
  available threads.

* Use -m to turn regular tasks into multitasks (use at your own risk).

* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
  programatically add rake task libraries.

* You can specific backtrace suppression patterns (see
  --suppress-backtrace)

* Directory tasks can now take prerequisites and actions

* Use --backtrace to request a full backtrace without the task trace.

* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
  output to standard output rather than standard error.

* Optional 'phony' target (enable with 'require 'rake/phony'") for
  special purpose builds.

* Task#clear now clears task comments as well as actions and
  prerequisites. Task#clear_comment will specifically target comments.

* The --all option will force -T and -D to consider all the tasks,
  with and without descriptions.

===== Bug Fixes

* Semi-colons in windows rakefile paths now work.

* Improved Control-C support when invoking multiple test suites.

* egrep method now reads files in text mode (better support for
  Windows)

* Better deprecation line number reporting.

* The -W option now works with all tasks, whether they have a
  description or not.

* File globs in rake should not be sorted alphabetically, independent
  of file system and platform.

* Numerous internal improvements.

* Documentation typos and fixes.


==== Thanks

As usual, it was input from users that drove a lot of these changes. The
following people contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 0.9.6

Rake version 0.9.6 contains a number of fixes mainly for merging
Rake into the Ruby source tree and fixing tests.

==== Changes

===== Bug Fixes (0.9.6)

* Better trace output when using a multi-threaded Rakefile.
* Arg parsing is now consistent for tasks and multitasks.
* Skip exit code test in versions of Ruby that don't support it well.

Changes for better integration with the Ruby source tree:

* Fix version literal for Ruby source tree build.
* Better loading of libraries for testing in Ruby build.
* Use the ruby version provided by Ruby's tests.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 0.9.5

Rake version 0.9.5 contains a number of bug fixes.

==== Changes

===== Bug Fixes (0.9.5)

* --trace and --backtrace no longer swallow following task names.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 0.9.4

Rake version 0.9.4 contains a number of bug fixes.

==== Changes

===== Bug Fixes (0.9.4)

* Exit status with failing tests is not correctly set to non-zero.

* Simplified syntax for phony task (for older versions of RDoc).

* Stand alone FileList usage gets glob function (without loading in
  extra dependencies)

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== 0.9.3

Rake version 0.9.3 contains some new, backwards compatible features and
a number of bug fixes.

==== Changes

===== New Features

* Multitask tasks now use a thread pool. Use -j to limit the number of
  available threads.

* Use -m to turn regular tasks into multitasks (use at your own risk).

* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
  programatically add rake task libraries.

* You can specific backtrace suppression patterns (see
  --suppress-backtrace)

* Directory tasks can now take prerequisites and actions

* Use --backtrace to request a full backtrace without the task trace.

* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
  output to standard output rather than standard error.

* Optional 'phony' target (enable with 'require 'rake/phony'") for
  special purpose builds.

* Task#clear now clears task comments as well as actions and
  prerequisites. Task#clear_comment will specifically target comments.

* The --all option will force -T and -D to consider all the tasks,
  with and without descriptions.

===== Bug Fixes

* Semi-colons in windows rakefile paths now work.

* Improved Control-C support when invoking multiple test suites.

* egrep method now reads files in text mode (better support for
  Windows)

* Better deprecation line number reporting.

* The -W option now works with all tasks, whether they have a
  description or not.

* File globs in rake should not be sorted alphabetically, independent
  of file system and platform.

* Numerous internal improvements.

* Documentation typos and fixes.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Aaron Patterson
* Dylan Smith
* Jo Liss
* Jonas Pfenniger
* Kazuki Tsujimoto
* Michael Bishop
* Michael Elufimov
* NAKAMURA Usaku
* Ryan Davis
* Sam Grönblom
* Sam Phippen
* Sergio Wong
* Tay Ray Chuan
* grosser
* quix

Also, many thanks to Eric Hodel for assisting with getting this release
out the door.

-- Jim Weirich

=== Rake 0.9.2.2

Rake version 0.9.2.2 is mainly bug fixes.

==== Changes

* The rake test loader now removes arguments it has processed.  Issue #51
* Rake::TaskArguments now responds to #values\_at
* RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
* Rake tests are now directory-independent
* Rake tests are no longer require flexmock
* Commands constant is no longer polluting top level namespace.
* Show only the interesting portion of the backtrace by default (James M. Lawrence).
* Added --reduce-compat option to remove backward compatible DSL hacks (James M. Lawrence).

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence (quix)
* Roger Pack
* Cezary Baginski
* Sean Scot August Moon
* R.T. Lechow
* Alex Chaffee
* James Tucker
* Matthias Lüdtke
* Santiago Pastorino

Also, bit thanks to Eric Hodel for assisting with getting this release
out the door (where "assisting" includes, but is not by any means
limited to, "pushing" me to get it done).

-- Jim Weirich

=== 0.9.2

Rake version 0.9.2 has a few small fixes.  See below for details.

==== Changes

* Support for Ruby 1.8.6 was fixed.
* Global DSL warnings now honor --no-deprecate

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence (quix)
* Roger Pack
* Cezary Baginski
* Sean Scot August Moon
* R.T. Lechow
* Alex Chaffee
* James Tucker
* Matthias Lüdtke
* Santiago Pastorino

Also, bit thanks to Eric Hodel for assisting with getting this release
out the door (where "assisting" includes, but is not by any means
limited to, "pushing" me to get it done).

-- Jim Weirich

=== 0.9.1

Rake version 0.9.1 has a number of bug fixes and enhancments (see
below for more details).  Additionally, the internals have be slightly
restructured and improved.

==== Changes

Rake 0.9.1 adds back the global DSL methods, but with deprecation
messages.  This allows Rake 0.9.1 to be used with older rakefiles with
warning messages.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence (quix)
* Roger Pack
* Cezary Baginski
* Sean Scot August Moon
* R.T. Lechow
* Alex Chaffee
* James Tucker
* Matthias Lüdtke
* Santiago Pastorino

Also, bit thanks to Eric Hodel for assisting with getting this release
out the door (where "assisting" includes, but is not by any means
limited to, "pushing" me to get it done).

-- Jim Weirich

=== 0.9.0

Rake version 0.9.0 has a number of bug fixes and enhancments (see
below for more details).  Additionally, the internals have be slightly
restructured and improved.

==== Changes

===== New Features / Enhancements / Bug Fixes in Version 0.9.0

* Rake now warns when the deprecated :needs syntax used (and suggests
  the proper syntax in the warning).

* Moved Rake DSL commands to top level ruby object 'main'.  Rake DSL
  commands are no longer private methods in Object. (Suggested by
  James M. Lawrence/quix)

* Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
  Based on patch by Roger Pack.

* Rake now requires (instead of loads) files in the test task.  Patch by Cezary
  Baginski.

* Fixed typos.  Patches by Sean Scot August Moon and R.T. Lechow.

* Rake now prints the Rakefile directory only when it's different from the
  current directory.  Patch by Alex Chaffee.

* Improved rakefile_location discovery on Windows.  Patch by James Tucker.

* Rake now recognizes "Windows Server" as a windows system.  Patch by Matthias
  Lüdtke

* Rake::RDocTask is deprecated.  Use RDoc::Task from RDoc 2.4.2+ (require
  'rdoc/task')

* Rake::GemPackageTask is deprecated.  Use Gem::PackageTask (require
  'rubygems/package\_task')

* Rake now outputs various messages to $stderr instead of $stdout.

* Rake no longer emits warnings for Config.  Patch by Santiago Pastorino.

* Removed Rake's DSL methods from the top level scope.  If you need to
  call 'task :xzy' in your code, include Rake::DSL into your class, or
  put the code in a Rake::DSL.environment do ... end block.

* Split rake.rb into individual files.

* Support for the --where (-W) flag for showing where a task is defined.

* Fixed quoting in test task.
  (http://onestepback.org/redmine/issues/show/44,
  http://www.pivotaltracker.com/story/show/1223138)

* Fixed the silent option parsing problem.
  (http://onestepback.org/redmine/issues/show/47)

* Fixed :verbose=>false flag on sh and ruby commands.

* Rake command line options may be given by default in a RAKEOPT
  environment variable.

* Errors in Rake will now display the task invocation chain in effect
  at the time of the error.

* Accepted change by warnickr to not expand test patterns in shell
  (allowing more files in the test suite).

* Fixed that file tasks did not perform prereq lookups in scope
  (Redmine #57).

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence (quix)
* Roger Pack
* Cezary Baginski
* Sean Scot August Moon
* R.T. Lechow
* Alex Chaffee
* James Tucker
* Matthias Lüdtke
* Santiago Pastorino

Also, bit thanks to Eric Hodel for assisting with getting this release
out the door (where "assisting" includes, but is not by any means
limited to, "pushing" me to get it done).

-- Jim Weirich


=== 0.8.7

Rake version 0.8.5 introduced greatly improved support for executing
commands on Windows.  The "sh" command now has the same semantics on
Windows that it has on Unix based platforms.

Rake version 0.8.6 includes minor fixes the the RDoc generation.
Rake version 0.8.7 includes a minor fix for JRuby running on windows.

==== Changes

===== New Features / Enhancements in Version 0.8.5

* Improved implementation of the Rake system command for Windows.
  (patch from James M. Lawrence/quix)

* Support for Ruby 1.9's improved system command.  (patch from James
  M. Lawrence/quix)

* Rake now includes the configured extension when invoking an
  executable (Config::CONFIG['EXEEXT])

===== Bug Fixes in Version 0.8.5

* Environment variable keys are now correctly cased (it matters in
  some implementations).

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Charles Nutter

-- Jim Weirich

=== 0.8.6

Rake version 0.8.5 introduced greatly improved support for executing
commands on Windows.  The "sh" command now has the same semantics on
Windows that it has on Unix based platforms.

Rake version 0.8.5 includes minor fixes the the RDoc generation.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence/quix
* Luis Lavena

-- Jim Weirich

=== 0.8.5

Rake version 0.8.5 is a new release of Rake with greatly improved
support for executing commands on Windows.  The "sh" command now has
the same semantics on Windows that it has on Unix based platforms.

==== Changes

===== New Features / Enhancements in Version 0.8.5

* Improved implementation of the Rake system command for Windows.
  (patch from James M. Lawrence/quix)

* Support for Ruby 1.9's improved system command.  (patch from James
  M. Lawrence/quix)

* Rake now includes the configured extension when invoking an
  executable (Config::CONFIG['EXEEXT])

===== Bug Fixes in Version 0.8.5

* Environment variable keys are now correctly cased (it matters in
  some implementations).

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence/quix
* Luis Lavena

-- Jim Weirich

=== 0.8.4

Rake version 0.8.4 is a bug-fix release of rake.

NOTE: The version of Rake that comes with Ruby 1.9 has diverged
      slightly from the core Rake code base.  Rake 0.8.4 will work
      with Ruby 1.9, but is not a strict upgrade for the Rake that
      comes with Ruby 1.9.  A (near) future release of Rake will unify
      those two codebases.

==== Letter Writing Campaign

Thanks to Aaron Patterson (@tenderlove) and Eric Hodel (@drbrain) for
their encouraging support in organizing a letter writing campaign to
lobby for the "Warning Free" release of rake 0.8.4.  A special callout
goes to Jonathan D. Lord, Sr (Dr. Wingnut) whose postcard was the
first to actually reach me. (see
http://tenderlovemaking.com/2009/02/26/we-need-a-new-version-of-rake/
for details)

==== Changes

===== New Features / Enhancements in Version 0.8.4

* Case is preserved on rakefile names. (patch from James
  M. Lawrence/quix)

* Improved Rakefile case insensitivity testing (patch from Luis
  Lavena).

* Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
  APPDATA, USERPROFILE (patch from Luis Lavena)

* MingGW is now recognized as a windows platform.  (patch from Luis
  Lavena)

===== Bug Fixes in Version 0.8.4

* Removed reference to manage_gem to fix the warning produced by the
  gem package task.

* Fixed stray ARGV option problem that was interfering with
  Test::Unit::Runner. (patch from Pivotal Labs)

===== Infrastructure Improvements in Version 0.8.4

* Numerous fixes to the windows test suite (patch from Luis Lavena).

* Improved Rakefile case insensitivity testing (patch from Luis
  Lavena).

* Better support for windows paths in the test task (patch from Simon
  Chiang/bahuvrihi)

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* James M. Lawrence/quix
* Luis Lavena
* Pivotal Labs
* Simon Chiang/bahuvrihi

-- Jim Weirich

=== 0.8.3

Rake version 0.8.3 is a bug-fix release of rake.

==== Changes

===== Bug Fixes in Version 0.8.3

* Enhanced the system directory detection in windows. We now check
  HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
  supplied by James Tucker). Rake no long aborts if it can't find the
  directory.

* Added fix to handle ruby installations in directories with spaces in
  their name.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Edwin Pratomo
* Gavin Stark
* Adam Q. Salter
* Adam Majer
* Emanuel Indermühle
* Ittay Dror
* Bheeshmar Redheendran (for spending an afternoon with me debugging
  windows issues)

-- Jim Weirich


=== 0.8.2

Rake version 0.8.2 is a new release of rake that includes a number of
new features and numerous bug fixes.

==== Changes

===== New Features in Version 0.8.2

* Switched from getoptlong to optparse (patches supplied by Edwin
  Pratomo).

* The -T option will now attempt to dynamically sense the size of the
  terminal. The -T output will only self-truncate if the output is a
  tty. However, if RAKE_COLUMNS is explicitly set, it will be honored
  in any case. (Patch provided by Gavin Stark).

* The following public methods have been added to rake task objects:

  * task.clear -- Clear both the prerequisites and actions of the
    target rake task.
  * task.clear_prerequisites -- Clear all the existing prerequisites
    from the target rake task.
  * task.clear_actions -- Clear all the existing actions from the
    target rake task.
  * task.reenable -- Re-enable a task, allowing its actions to be
    executed again if the task is invoked.

* Changed RDoc test task to have no default template. This makes it
  easier for the tempate to pick up the template from the environment.

* Default values for task arguments can easily be specified with the
  :with_defaults method. (Idea for default argument merging supplied
  by (Adam Q. Salter)

===== Bug Fixes in Version 0.8.2

* Fixed bug in package task so that it will include the subdir
  directory in the package for testing. (Bug found by Adam Majer)

* Fixed filename dependency order bug in test\_inspect\_pending and
  test\_to\_s\_pending. (Bug found by Adam Majer)

* Fixed check for file utils options to make them immune to the
  symbol/string differences. (Patch supplied by Edwin Pratomo)

* Fixed bug with rules involving multiple source, where only the first
  dependency of a rule has any effect (Patch supplied by Emanuel
  Indermühle)

* FileList#clone and FileList#dup have better sematics w.r.t. taint
  and freeze.

* Changed from using Mutex to Monitor. Evidently Mutex causes thread
  join errors when Ruby is compiled with -disable-pthreads. (Patch
  supplied by Ittay Dror)

* Fixed bug in makefile parser that had problems with extra spaces in
  file task names. (Patch supplied by Ittay Dror)

==== Other changes in Version 0.8.2

* Added ENV var to rake's own Rakefile to prevent OS X from including
  extended attribute junk in the rake package tar file. (Bug found by
  Adam Majer)

* Added a performance patch for reading large makefile dependency
  files. (Patch supplied by Ittay Dror)

==== Task Argument Examples

Prior to version 0.8.0, rake was only able to handle command line
arguments of the form NAME=VALUE that were passed into Rake via the
ENV hash.  Many folks had asked for some kind of simple command line
arguments, perhaps using "--" to separate regular task names from
argument values on the command line.  The problem is that there was no
easy way to associate positional arguments on the command line with
different tasks.  Suppose both tasks :a and :b expect a command line
argument: does the first value go with :a?  What if :b is run first?
Should it then get the first command line argument.

Rake 0.8.0 solves this problem by explicitly passing values directly
to the tasks that need them.  For example, if I had a release task
that required a version number, I could say:

   rake release[0.8.2]

And the string "0.8.2" will be passed to the :release task.  Multiple
arguments can be passed by separating them with a comma, for example:

   rake name[john,doe]

Just a few words of caution.  The rake task name and its arguments
need to be a single command line argument to rake.  This generally
means no spaces.  If spaces are needed, then the entire rake +
argument string should be quoted.  Something like this:

   rake "name[billy bob, smith]"

(Quoting rules vary between operating systems and shells, so make sure
you consult the proper docs for your OS/shell).

===== Tasks that Expect Parameters

Parameters are only given to tasks that are setup to expect them.  In
order to handle named parameters, the task declaration syntax for
tasks has been extended slightly.

For example, a task that needs a first name and last name might be
declared as:

   task :name, :first_name, :last_name

The first argument is still the name of the task (:name in this case).
The next to argumements are the names of the parameters expected by
:name (:first_name and :last_name in the example).

To access the values of the parameters, the block defining the task
behaviour can now accept a second parameter:

   task :name, :first_name, :last_name do |t, args|
     puts "First name is #{args.first_name}"
     puts "Last  name is #{args.last_name}"
   end

The first argument of the block "t" is always bound to the current
task object.  The second argument "args" is an open-struct like object
that allows access to the task arguments.  Extra command line
arguments to a task are ignored.  Missing command line arguments are
given the nil value.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Edwin Pratomo
* Gavin Stark
* Adam Q. Salter
* Adam Majer
* Emanuel Indermühle
* Ittay Dror
* Bheeshmar Redheendran (for spending an afternoon with me debugging
  windows issues)

-- Jim Weirich

=== 0.8.0/0.8.1

Rake version 0.8.0 is a new release of rake that includes serveral new
features.

==== Changes

===== New Features in Version 0.8.0

* Tasks can now receive command line parameters.  See the examples
  below for more details.

* Comments are limited to 80 columns on output, but full comments can
  be seen by using the -D parameter. (feature suggested by Jamis
  Buck).

* Explicit exit(n) calls will now set the exit status to n. (patch
  provided by Stephen Touset).

* Rake is now compatible with Ruby 1.9.

Version 0.8.1 is a minor update that includes additional Ruby 1.9
compatibility fixes.

==== Task Argument Examples

Prior to version 0.8.0, rake was only able to handle command line
arguments of the form NAME=VALUE that were passed into Rake via the
ENV hash.  Many folks had asked for some kind of simple command line
arguments, perhaps using "--" to separate regular task names from
argument values on the command line.  The problem is that there was no
easy way to associate positional arguments on the command line with
different tasks.  Suppose both tasks :a and :b expect a command line
argument: does the first value go with :a?  What if :b is run first?
Should it then get the first command line argument.

Rake 0.8.0 solves this problem by explicitly passing values directly
to the tasks that need them.  For example, if I had a release task
that required a version number, I could say:

   rake release[0.8.0]

And the string "0.8.0" will be passed to the :release task.  Multiple
arguments can be passed by separating them with a comma, for example:

   rake name[john,doe]

Just a few words of caution.  The rake task name and its arguments
need to be a single command line argument to rake.  This generally
means no spaces.  If spaces are needed, then the entire rake +
argument string should be quoted.  Something like this:

   rake "name[billy bob, smith]"

(Quoting rules vary between operating systems and shells, so make sure
you consult the proper docs for your OS/shell).

===== Tasks that Expect Parameters

Parameters are only given to tasks that are setup to expect them.  In
order to handle named parameters, the task declaration syntax for
tasks has been extended slightly.

For example, a task that needs a first name and last name might be
declared as:

   task :name, :first_name, :last_name

The first argument is still the name of the task (:name in this case).
The next to argumements are the names of the parameters expected by
:name (:first_name and :last_name in the example).

To access the values of the parameters, the block defining the task
behaviour can now accept a second parameter:

   task :name, :first_name, :last_name do |t, args|
     puts "First name is #{args.first_name}"
     puts "Last  name is #{args.last_name}"
   end

The first argument of the block "t" is always bound to the current
task object.  The second argument "args" is an open-struct like object
that allows access to the task arguments.  Extra command line
arguments to a task are ignored.  Missing command line arguments are
given the nil value.

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments.  Thanks to ...

* Jamis Buck (for comment formatting suggestions)
* Stephen Touset (for exit status patch).

-- Jim Weirich


=== 0.7.3

Rake version 0.7.3 is a minor release that includes some refactoring to better
support custom Rake applications.

==== Changes

===== New Features in Version 0.7.3

* Added the +init+ and +top_level+ methods to make the creation of custom Rake applications a bit easier.  E.g.

    gem 'rake', ">= 0.7.3"
    require 'rake'

    Rake.application.init('myrake')

    task :default do
      something_interesting
    end

    Rake.application.top_level

==== Thanks

As usual, it was input from users that drove a alot of these changes. The
following people either contributed patches, made suggestions or made
otherwise helpful comments. Thanks to ...

-- Jim Weirich


=== 0.7.2


Version 0.7.2 supplies a bug fix and a few minor enhancements. In
particular, the new version fixes an incompatibility with the soon to
be released Ruby 1.8.6.  We strongly recommend upgrading to Rake 0.7.2
in order to be compatible with the new version of Ruby.

==== Changes

===== Bug Fixes in 0.7.2

There are quite a number of bug fixes in the new 0.7.2 version of
Rake:

* Removed dependency on internal fu_xxx functions from FileUtils.

* Error messages are now send to stderr rather than stdout (from
  Payton Quackenbush).

* Better error handling on invalid command line arguments (from Payton
  Quackenbush).

* Fixed some bugs where the application object was going to the global
  appliation instead of using its own data.

* Fixed the method name leak from FileUtils (bug found by Glenn
  Vanderburg).

* Added test for noop, bad_option and verbose flags to sh command.

* Added a description to the gem task in GemPackageTask.

* Fixed a bug when rules have multiple prerequisites (patch by Joel
  VanderWerf)

* Added the handful of RakeFileUtils to the private method as well.

===== New Features in 0.7.2

The following new features are available in Rake version 0.7.2:

* Added square and curly bracket patterns to FileList#include (Tilman
  Sauerbeck).

* FileLists can now pass a block to FileList#exclude to exclude files
  based on calculated values.

* Added plain filename support to rule dependents (suggested by Nobu
  Nakada).

* Added pathmap support to rule dependents.  In other words, if a
  pathmap format (beginning with a '%') is given as a Rake rule
  dependent, then the name of the depend will be the name of the
  target with the pathmap format applied.

* Added a 'tasks' method to a namespace to get a list of tasks
  associated with the namespace.

* Added tar_command and zip_command options to the Package task.

* The clean task will no longer delete 'core' if it is a directory.

===== Internal Rake Improvements

The following changes will are mainly internal improvements and
refactorings and have little effect on the end user.  But they may be
of interest to the general public.

* Added rcov task and updated unit testing for better code coverage.

* Added a 'shame' task to the Rakefile.

* Added rake_extension to handle detection of extension collisions.

* Added a protected 'require "rubygems"' to test/test_application to
  unbreak cruisecontrol.rb.

* Removed rake\_dup.  Now we just simply rescue a bad dup.

* Refactored the FileList reject logic to remove duplication.

* Removed if \_\_FILE\_\_ at the end of the rake.rb file.

==== Thanks

As usual, it was input from users that drove a alot of these changes.
The following people either contributed patches, made suggestions or
made otherwise helpful comments.  Thanks to ...

* Payton Quackenbush -- For several error handling improvements.

* Glenn Vanderburg -- For finding and fixing the method name leak from
  FileUtils.

* Joel VanderWerf -- for finding and fixing a bug in the handling of
  multiple prerequisites.

* Tilman Sauerbeck -- For some enhancing FileList to support more
  advanced file globbing.

* Nobu Nakada -- For suggesting plain file name support to rule dependents.

-- Jim Weirich

=== 0.7.1

Version 0.7.1 supplies a bug fix and a few minor enhancements.

==== Changes

===== Bug Fixes in 0.7.1

* Changes in the exception reported for the FileUtils.ln caused
  safe_ln to fail with a NotImplementedError.  Rake 0.7.1 will now
  catch that error or any StandardError and properly fall back to
  using +cp+.

===== New Features in 0.7.1

* You can filter the results of the --task option by supplying an
  optional regular expression.  This allows the user to easily find a
  particular task name in a long list of possible names.

* Transforming procs in a rule may now return a list of prerequisites.
  This allows more flexible rule formation.

* FileList and String now support a +pathmap+ melthod that makes the
  transforming paths a bit easier.  See the API docs for +pathmap+ for
  details.

* The -f option without a value will disable the search for a
  Rakefile.  This allows the Rakefile to be defined entirely in a
  library (and loaded with the -r option).  The current working
  directory is not changed when this is done.

==== Thanks

As usual, it was input from users that drove a alot of these changes.
The following people either contributed patches, made suggestions or
made otherwise helpful comments.  Thanks to ...

* James Britt and Assaph Mehr for reporting and helping to debug the
  safe_ln issue.

-- Jim Weirich


=== 0.7.0

These changes for Rake have been brewing for a long time.  Here they
are, I hope you enjoy them.

==== Changes

===== New Features

* Name space support for task names (see below).
* Prerequisites can be executed in parallel (see below).
* Added safe_ln support for openAFS (via Ludvig Omholt).
* RDoc defaults to internal (in-process) invocation.  The old behavior
  is still available by setting the +external+ flag to true.
* Rakefiles are now loaded with the expanded path to prevent
  accidental pollution from the Ruby load path.
* Task objects my now be used in prerequisite lists directly.
* Task objects (in addition to task names) may now be included in the
  prerequisite list of a task.
* Internals cleanup and refactoring.

===== Bug Fixes

* Compatibility fixes for Ruby 1.8.4 FileUtils changes.

===== Namespaces

Tasks can now be nested inside their own namespaces.  Tasks within one
namespace will not accidentally interfer with tasks named in a different
namespace.

For example:

  namespace "main" do
    task :build do
      # Build the main program
    end
  end

  namespace "samples" do
    task :build do
      # Build the sample programs
    end
  end

  task :build_all => ["main:build", "samples:build"]

Even though both tasks are named :build, they are separate tasks in
their own namespaces.  The :build_all task (defined in the toplevel
namespace) references both build tasks in its prerequisites.

You may invoke each of the individual build tasks with the following
commands:

  rake main:build
  rake samples:build

Or invoke both via the :build_all command:

  rake build_all

Namespaces may be nested arbitrarily.  Since the name of file tasks
correspond to the name of a file in the external file system,
FileTasks are not affected by the namespaces.

See the Rakefile format documentation (in the Rake API documents) for
more information.

===== Parallel Tasks

Sometimes you have several tasks that can be executed in parallel.  By
specifying these tasks as prerequisites to a +multitask+ task.

In the following example the tasks copy\_src, copy\_doc and copy\_bin
will all execute in parallel in their own thread.

  multitask :copy_files => [:copy_src, :copy_doc, :copy_bin] do
    puts "All Copies Complete"
  end

==== Thanks

As usual, it was input from users that drove a alot of these changes.
The following people either contributed patches, made suggestions or
made otherwise helpful comments.  Thanks to ...

* Doug Young (inspiration for the parallel task)
* David Heinemeier Hansson (for --trace message enhancement and for
  pushing for namespace support).
* Ludvig Omholt (for the openAFS fix)

-- Jim Weirich

=== 0.6.1

* Rebuilt 0.6.0 gem without signing.

=== 0.6.0

Its time for some long requested enhancements and lots of bug fixes
... And a whole new web page.

==== New Web Page

The primary documentation for rake has moved from the RubyForge based
wiki to its own Hieraki based web site.  Constant spam on the wiki
made it a difficult to keep clean.  The new site will be easier to
update and organize.

Check out the new documentation at: http://docs.rubyrake.org

We will be adding new documentation to the site as time goes on.

In addition to the new docs page, make sure you check out Martin
Fowlers article on rake at http://martinfowler.com/articles/rake.html

==== Changes

===== New Features

* Multiple prerequisites on Rake rules now allowed.  However, keep the
  following in mind:

  1. All the prerequisites of a rule must be available before a rule
     is triggered, where "enabled" means (a) an existing file, (b) a
     defined rule, or (c) another rule which also must be
     trigger-able.
  2. Rules are checked in order of definition, so it is important to
     order your rules properly.  If a file can be created by two
     different rules, put the more specific rule first (otherwise the
     more general rule will trigger first and the specific one will
     never be triggered).
  3. The <tt>source</tt> method now returns the name of the first
     prerequisite listed in the rule.  <tt>sources</tt> returns the
     names of all the rule prerequisites, ordered as they are defined
     in the rule.  If the task has other prerequisites not defined in
     the rule (but defined in an explicit task definition), then they
     will _not_ be included in the sources list.

* FileLists may now use the egrep command.  This popular enhancement
  is now a core part of the FileList object.  If you want to get a
  list of all your to-dos, fixmes and TBD comments, add the following
  to your Rakefile.

    desc "Look for TODO and FIXME tags in the code"
    task :todo do
      FileList['**/*.rb'].egrep /#.*(FIXME|TODO|TBD)/
    end

* The <tt>investigation</tt> method was added to task object to dump
  out some important values.  This makes it a bit easier to debug Rake
  tasks.

  For example, if you are having problems with a particular task, just
  print it out:

    task :huh do
      puts Rake::Task['huh'].investigation
    end

* The Rake::TestTask class now supports a "ruby\_opts" option to pass
  arbitrary ruby options to a test subprocess.

===== Some Incompatibilities

* When using the <tt>ruby</tt> command to start a Ruby subprocess, the
  Ruby interpreter that is currently running rake is used by default.
  This makes it easier to use rake in an environment with multiple
  ruby installation.  (Previously, the first ruby command found in the
  PATH was used).

  If you wish to chose a different Ruby interpreter, you can
  explicitly choose the interpreter via the <tt>sh</tt> command.

* The major rake classes (Task, FileTask, FileCreationTask, RakeApp)
  have been moved out of the toplevel scope and are now accessible as
  Rake::Task, Rake::FileTask, Rake::FileCreationTask and
  Rake::Application.  If your Rakefile
  directly references any one of these tasks, you may:

  1. Update your Rakefile to use the new classnames
  2. Use the --classic-namespace option on the rake command to get the
     old behavior,
  3. Add <code>require 'rake/classic_namespace'</code> to the
     Rakefile to get the old behavior.

  <tt>rake</tt> will print a rather annoying warning whenever a
  deprecated class name is referenced without enabling classic
  namespace.

===== Bug Fixes

* Several unit tests and functional tests were fixed to run better
  under windows.

* Directory tasks are now a specialized version of a File task.  A
  directory task will only be triggered if it doesn't exist.  It will
  not be triggered if it is out of date w.r.t. any of its
  prerequisites.

* Fixed a bug in the Rake::GemPackageTask class so that the gem now
  properly contains the platform name.

* Fixed a bug where a prerequisite on a <tt>file</tt> task would cause
  an exception if the prerequisite did not exist.

==== Thanks

As usual, it was input from users that drove a alot of these changes.
The following people either contributed patches, made suggestions or
made otherwise helpful comments.  Thanks to ...

* Greg Fast (better ruby_opt test options)
* Kelly Felkins (requested by better namespace support)
* Martin Fowler (suggested Task.investigation)
* Stuart Jansen (send initial patch for multiple prerequisites).
* Masao Mutch (better support for non-ruby Gem platforms)
* Philipp Neubeck (patch for file task exception fix)

-- Jim Weirich

=== 0.5.4

Time for some minor bug fixes and small enhancements

==== Changes

Here are the changes for version 0.5.4 ...

* Added double quotes to the test runner.  This allows the location of
  the tests (and runner) to be in a directory path that contains
  spaces (e.g. "C:/Program Files/ruby/bin").
* Added .svn to default ignore list.  Now subversion project metadata
  is automatically ignored by Rake's FileList.
* Updated FileList#include to support nested arrays and filelists.
  FileLists are flat lists of file names.  Using a FileList in an
  include will flatten out the nested file names.

== Thanks

As usual, it was input from users that drove a alot of these changes.
Thanks to ...

* Tilman Sauerbeck for the nested FileList suggestion.
* Josh Knowles for pointing out the spaces in directory name problem.

-- Jim Weirich

=== 0.5.3

Although it has only been two weeks since the last release, we have
enough updates to the Rake program to make it time for another
release.

==== Changes

Here are the changes for version 0.5.3 ...

* FileLists have been extensively changed so that they mimic the
  behavior of real arrays even more closely.  In particular,
  operations on FileLists that return a new collection (e.g. collect,
  reject) will now return a FileList rather than an array.  In
  addition, several places where FileLists were not properly expanded
  before use have been fixed.
* A method (+ext+) to simplify the handling of file extensions was
  added to String and to Array.
* The 'testrb' script in test/unit tends to silently swallow syntax
  errors in test suites.  Because of that, the default test loader is
  now a rake-provided script.  You can still use 'testrb' by setting
  the loader flag in the test task to :testrb.  (See the API documents
  for TestTask for all the loader flag values).
* FileUtil methods (e.g. cp, mv, install) are now declared to be
  private.  This will cut down on the interference with user defined
  methods of the same name.
* Fixed the verbose flag in the TestTask so that the test code is
  controlled by the flag.  Also shortened up some failure messages.
  (Thanks to Tobias Luetke for the suggestion).
* Rules will now properly detect a task that can generate a source
  file.  Previously rules would only consider source files that were
  already present.
* Added an +import+ command that allows Rake to dynamically import
  dependendencies into a running Rake session.  The +import+ command
  can run tasks to update the dependency file before loading them.
  Dependency files can be in rake or make format, allowing rake to
  work with tools designed to generate dependencies for make.

==== Thanks

As usual, it was input from users that drove a alot of these changes.
Thanks to ...

* Brian Gernhardt for the rules fix (especially for the patience to
  explain the problem to me until I got what he was talking about).
* Stefan Lang for pointing out problems in the dark corners of the
  FileList implementation.
* Alexey Verkhovsky pointing out the silently swallows syntax errors
  in tests.
* Tobias Luetke for beautifying the test task output.
* Sam Roberts for some of the ideas behind dependency loading.

-- Jim Weirich


=== 0.5.0

It has been a long time in coming, but we finally have a new version
of Rake available.

==== Changes

* Fixed documentation that was lacking the Rake module name (Tilman
  Sauerbeck).
* Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
* Recursive rules are now supported (Tilman Sauerbeck).
* Added warning option for the Test Task (requested by Eric Hodel).
* The jamis rdoc template is only used if it exists.
* Added fix for Ruby 1.8.2 test/unit and rails problem.
* Added contributed rake man file (Jani Monoses).
* Added Brian Candler's fix for problems in --trace and --dry-run
  mode.

==== Thanks

Lots of people provided input to this release.  Thanks to Tilman
Sauerbeck for numerous patches, documentation fixes and suggestions.
And for also pushing me to get this release out.  Also, thanks to
Brian Candler for the finding and fixing --trace/dry-run fix.  That
was an obscure bug.  Also to Eric Hodel for some good suggestions.

-- Jim Weirich

=== 0.4.15

==== Changes

Version 0.4.15 is a bug fix update for the Ruby 1.8.2 compatibility
changes.  This release includes:

* Fixed a bug that prevented the TESTOPTS flag from working with the
  revised for 1.8.2 test task.
* Updated the docs on --trace to indicate that it also enables a full
  backtrace on errors.
* Several fixes for new warnings generated.

==== Mini-Roadmap

I will continue to issue Rake updates in the 0.4.xx series as new
Ruby-1.8.2 issues become manifest.  Once the codebase stabilizes, I
will release a 0.5.0 version incorporating all the changes.  If you
are not using Ruby-1.8.2 and wish to avoid version churn, I recommend
staying with a release prior to Rake-0.4.14.

=== 0.4.14

Version 0.4.14 is a compatibility fix to allow Rake's test task to
work under Ruby 1.8.2.  A change in the Test::Unit autorun feature
prevented Rake from running any tests.  This release fixes the
problem.

Rake 0.4.14 is the recommended release for anyone using Ruby 1.8.2.

=== 0.4.13

* Fixed the dry-run flag so it is operating again.
* Multiple arguments to sh and ruby commands will not be interpreted
  by the shell (patch provided by Jonathan Paisley).

=== 0.4.12

* Added --silent (-s) to suppress the (in directory) rake message.

=== 0.4.11

* Changed the "don't know how to rake" message (finally)
* Changes references to a literal "Rakefile" to reference the global
  variable $rakefile (which contains the actual name of the rakefile).

=== 0.4.10

* Added block support to the "sh" command, allowing users to take
  special actions on the result of the system call.  E.g.

    sh "shell_command" do |ok, res|
      puts "Program returned #{res.exitstatus}" if ! ok
    end

=== 0.4.9

* Switched to Jamis Buck's RDoc template.
* Removed autorequire from Rake's gem spec.  This prevents the Rake
  libraries from loading while using rails.

=== 0.4.8

* Added support for .rb versions of Rakefile.
* Removed \\\n's from test task.
* Fixed Ruby 1.9 compatibility issue with FileList.

=== 0.4.7

* Fixed problem in FileList that caused Ruby 1.9 to go into infinite
  recursion.  Since to_a was removed from Object, it does not need to
  added back into the list of methods to rewrite in FileList.  (Thanks
  to Kent Sibilev for pointing this out).

=== 0.4.6
* Removed test version of ln in FileUtils that prevented safe_ln from
  using ln.

=== 0.4.5
* Upgraded comments in TestTask.
* FileList to_s and inspect now automatically resolve pending changes.
* FileList#exclude properly returns the FileList.

=== 0.4.4
* Fixed initialization problem with @comment.
* Now using multi -r technique in TestTask.  Switch Rakefile back to
  using the built-in test task macros because the rake runtime is no
  longer needed.
* Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
  macros.
* Allow a +test_files+ attribute in test tasks.  This allows more
  flexibility in specifying test files.

=== 0.4.3
* Fixed Comment leakage.

=== 0.4.2
* Added safe_ln that falls back to a copy if a file link is not supported.
* Package builder now uses safe\_ln.

=== 0.4.1
* Task comments are now additive, combined with "/".
* Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)

=== 0.4.0
* FileList now uses deferred loading.  The file system is not searched
  until the first call that needs the file names.
* VAR=VALUE options are now accepted on the command line and are
  treated like environment variables.  The values may be tested in a
  Rakefile by referencing ENV['VAR'].
* File.mtime is now used (instead of File.new().mtime).

=== 0.3.2.x

* Removed some hidden dependencies on rubygems.  Tests now will test
  gems only if they are installed.
* Removed Sys from some example files.  I believe that is that last
  reference to Sys outside of the contrib area.
* Updated all copyright notices to include 2004.

=== 0.3.2

* GEM Installation now works with the application stub.

=== 0.3.1

* FileLists now automatically ignore CVS, .bak, !
* GEM Installation now works.

=== 0.3.0

Promoted 0.2.10.

=== 0.2.10
General

* Added title to Rake's rdocs
* Contrib packages are no longer included in the documentation.

RDoc Issues

* Removed default for the '--main' option
* Fixed rendering of the rdoc options
* Fixed clean/clobber confusion with rerdoc
* 'title' attribute added

Package Task Library Issues

* Version (or explicit :noversion) is required.
* +package_file+ attribute is now writable

FileList Issues

* Dropped bang version of exclude.  Now using ant-like include/exclude semantics.
* Enabled the "yield self" idiom in FileList#initialize.

=== 0.2.9

This version contains numerous changes as the RubyConf.new(2003)
presentation was being prepared.  The changes include:

* The monolithic rubyapp task library is in the process of being
  dropped in favor of lighter weight task libraries.

=== 0.2.7

* Added "desc" for task descriptions.
* -T will now display tasks with descriptions.
* -P will display tasks and prerequisites.
* Dropped the Sys module in favor of the 1.8.x FileUtils module.  Sys
  is still supported in the contrib area.

=== 0.2.6

* Moved to RubyForge

=== 0.2.5

* Switched to standard ruby app builder.
* Added no_match option to file matcher.

=== 0.2.4

* Fixed indir, which neglected to actually change directories.

=== 0.2.3

* Added rake module for a help target
* Added 'for\_files' to Sys
* Added a $rakefile constant
* Added test for selecting proper rule with multiple targets.
PKCH[I���$share/gems/gems/rake-13.0.1/exe/rakenuȯ��#!/usr/bin/ruby

#--
# Copyright (c) 2003, 2004, 2005, 2006, 2007  Jim Weirich
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#++

require "rake"

Rake.application.run
PKCH[/�I��#share/gems/gems/rake-13.0.1/Gemfilenu�[���source "https://rubygems.org"

gemspec

group :development do
  gem "bundler"
  gem "minitest"
  gem "coveralls"
  gem "rubocop"
end
PKCH[��K\��8share/gems/gems/rake-13.0.1/lib/rake/invocation_chain.rbnu�[���# frozen_string_literal: true
module Rake

  # InvocationChain tracks the chain of task invocations to detect
  # circular dependencies.
  class InvocationChain < LinkedList

    # Is the invocation already in the chain?
    def member?(invocation)
      head == invocation || tail.member?(invocation)
    end

    # Append an invocation to the chain of invocations. It is an error
    # if the invocation already listed.
    def append(invocation)
      if member?(invocation)
        fail RuntimeError, "Circular dependency detected: #{to_s} => #{invocation}"
      end
      conj(invocation)
    end

    # Convert to string, ie: TOP => invocation => invocation
    def to_s
      "#{prefix}#{head}"
    end

    # Class level append.
    def self.append(invocation, chain)
      chain.append(invocation)
    end

    private

    def prefix
      "#{tail} => "
    end

    # Null object for an empty chain.
    class EmptyInvocationChain < LinkedList::EmptyLinkedList
      @parent = InvocationChain

      def member?(obj)
        false
      end

      def append(invocation)
        conj(invocation)
      end

      def to_s
        "TOP"
      end
    end

    EMPTY = EmptyInvocationChain.new
  end
end
PKCH[�2��bb8share/gems/gems/rake-13.0.1/lib/rake/loaders/makefile.rbnu�[���# frozen_string_literal: true
module Rake

  # Makefile loader to be used with the import file loader.  Use this to
  # import dependencies from make dependency tools:
  #
  #   require 'rake/loaders/makefile'
  #
  #   file ".depends.mf" => [SRC_LIST] do |t|
  #     sh "makedepend -f- -- #{CFLAGS} -- #{t.prerequisites} > #{t.name}"
  #   end
  #
  #   import ".depends.mf"
  #
  # See {Importing Dependencies}[link:doc/rakefile_rdoc.html#label-Importing+Dependencies]
  # for further details.

  class MakefileLoader
    include Rake::DSL

    SPACE_MARK = "\0" # :nodoc:

    # Load the makefile dependencies in +fn+.
    def load(fn) # :nodoc:
      lines = File.read fn
      lines.gsub!(/\\ /, SPACE_MARK)
      lines.gsub!(/#[^\n]*\n/m, "")
      lines.gsub!(/\\\n/, " ")
      lines.each_line do |line|
        process_line(line)
      end
    end

    private

    # Process one logical line of makefile data.
    def process_line(line) # :nodoc:
      file_tasks, args = line.split(":", 2)
      return if args.nil?
      dependents = args.split.map { |d| respace(d) }
      file_tasks.scan(/\S+/) do |file_task|
        file_task = respace(file_task)
        file file_task => dependents
      end
    end

    def respace(str) # :nodoc:
      str.tr SPACE_MARK, " "
    end
  end

  # Install the handler
  Rake.application.add_loader("mf", MakefileLoader.new)
end
PKCH[?�{Hrr2share/gems/gems/rake-13.0.1/lib/rake/early_time.rbnu�[���# frozen_string_literal: true
module Rake

  # EarlyTime is a fake timestamp that occurs _before_ any other time value.
  class EarlyTime
    include Comparable
    include Singleton

    ##
    # The EarlyTime always comes before +other+!

    def <=>(other)
      -1
    end

    def to_s # :nodoc:
      "<EARLY TIME>"
    end
  end

  EARLY = EarlyTime.instance
end
PKCH[E��.��/share/gems/gems/rake-13.0.1/lib/rake/tasklib.rbnu�[���# frozen_string_literal: true
require "rake"

module Rake

  # Base class for Task Libraries.
  class TaskLib
    include Cloneable
    include Rake::DSL
  end

end
PKCH[Ӭ�s~~Eshare/gems/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rbnu�[���# frozen_string_literal: true
module Rake

  # Error indicating a recursion overflow error in task selection.
  class RuleRecursionOverflowError < StandardError
    def initialize(*args)
      super
      @targets = []
    end

    def add_target(target)
      @targets << target
    end

    def message
      super + ": [" + @targets.reverse.join(" => ") + "]"
    end
  end

end
PKCH[F-�
��6share/gems/gems/rake-13.0.1/lib/rake/dsl_definition.rbnu�[���# frozen_string_literal: true
# Rake DSL functions.
require "rake/file_utils_ext"

module Rake

  ##
  # DSL is a module that provides #task, #desc, #namespace, etc.  Use this
  # when you'd like to use rake outside the top level scope.
  #
  # For a Rakefile you run from the command line this module is automatically
  # included.

  module DSL

    #--
    # Include the FileUtils file manipulation functions in the top
    # level module, but mark them private so that they don't
    # unintentionally define methods on other objects.
    #++

    include FileUtilsExt
    private(*FileUtils.instance_methods(false))
    private(*FileUtilsExt.instance_methods(false))

    private

    # :call-seq:
    #   task(task_name)
    #   task(task_name: dependencies)
    #   task(task_name, arguments => dependencies)
    #
    # Declare a basic task.  The +task_name+ is always the first argument.  If
    # the task name contains a ":" it is defined in that namespace.
    #
    # The +dependencies+ may be a single task name or an Array of task names.
    # The +argument+ (a single name) or +arguments+ (an Array of names) define
    # the arguments provided to the task.
    #
    # The task, argument and dependency names may be either symbols or
    # strings.
    #
    # A task with a single dependency:
    #
    #   task clobber: %w[clean] do
    #     rm_rf "html"
    #   end
    #
    # A task with an argument and a dependency:
    #
    #   task :package, [:version] => :test do |t, args|
    #     # ...
    #   end
    #
    # To invoke this task from the command line:
    #
    #   $ rake package[1.2.3]
    #
    def task(*args, &block) # :doc:
      Rake::Task.define_task(*args, &block)
    end

    # Declare a file task.
    #
    # Example:
    #   file "config.cfg" => ["config.template"] do
    #     open("config.cfg", "w") do |outfile|
    #       open("config.template") do |infile|
    #         while line = infile.gets
    #           outfile.puts line
    #         end
    #       end
    #     end
    #  end
    #
    def file(*args, &block) # :doc:
      Rake::FileTask.define_task(*args, &block)
    end

    # Declare a file creation task.
    # (Mainly used for the directory command).
    def file_create(*args, &block)
      Rake::FileCreationTask.define_task(*args, &block)
    end

    # Declare a set of files tasks to create the given directories on
    # demand.
    #
    # Example:
    #   directory "testdata/doc"
    #
    def directory(*args, &block) # :doc:
      result = file_create(*args, &block)
      dir, _ = *Rake.application.resolve_args(args)
      dir = Rake.from_pathname(dir)
      Rake.each_dir_parent(dir) do |d|
        file_create d do |t|
          mkdir_p t.name unless File.exist?(t.name)
        end
      end
      result
    end

    # Declare a task that performs its prerequisites in
    # parallel. Multitasks does *not* guarantee that its prerequisites
    # will execute in any given order (which is obvious when you think
    # about it)
    #
    # Example:
    #   multitask deploy: %w[deploy_gem deploy_rdoc]
    #
    def multitask(*args, &block) # :doc:
      Rake::MultiTask.define_task(*args, &block)
    end

    # Create a new rake namespace and use it for evaluating the given
    # block.  Returns a NameSpace object that can be used to lookup
    # tasks defined in the namespace.
    #
    # Example:
    #
    #   ns = namespace "nested" do
    #     # the "nested:run" task
    #     task :run
    #   end
    #   task_run = ns[:run] # find :run in the given namespace.
    #
    # Tasks can also be defined in a namespace by using a ":" in the task
    # name:
    #
    #   task "nested:test" do
    #     # ...
    #   end
    #
    def namespace(name=nil, &block) # :doc:
      name = name.to_s if name.kind_of?(Symbol)
      name = name.to_str if name.respond_to?(:to_str)
      unless name.kind_of?(String) || name.nil?
        raise ArgumentError, "Expected a String or Symbol for a namespace name"
      end
      Rake.application.in_namespace(name, &block)
    end

    # Declare a rule for auto-tasks.
    #
    # Example:
    #  rule '.o' => '.c' do |t|
    #    sh 'cc', '-o', t.name, t.source
    #  end
    #
    def rule(*args, &block) # :doc:
      Rake::Task.create_rule(*args, &block)
    end

    # Describes the next rake task.  Duplicate descriptions are discarded.
    # Descriptions are shown with <code>rake -T</code> (up to the first
    # sentence) and <code>rake -D</code> (the entire description).
    #
    # Example:
    #   desc "Run the Unit Tests"
    #   task test: [:build]
    #     # ... run tests
    #   end
    #
    def desc(description) # :doc:
      Rake.application.last_description = description
    end

    # Import the partial Rakefiles +fn+.  Imported files are loaded
    # _after_ the current file is completely loaded.  This allows the
    # import statement to appear anywhere in the importing file, and yet
    # allowing the imported files to depend on objects defined in the
    # importing file.
    #
    # A common use of the import statement is to include files
    # containing dependency declarations.
    #
    # See also the --rakelibdir command line option.
    #
    # Example:
    #   import ".depend", "my_rules"
    #
    def import(*fns) # :doc:
      fns.each do |fn|
        Rake.application.add_import(fn)
      end
    end
  end
  extend FileUtilsExt
end

# Extend the main object with the DSL commands. This allows top-level
# calls to task, etc. to work from a Rakefile without polluting the
# object inheritance tree.
self.extend Rake::DSL
PKCH[n�#��;share/gems/gems/rake-13.0.1/lib/rake/task_argument_error.rbnu�[���# frozen_string_literal: true
module Rake

  # Error indicating an ill-formed task declaration.
  class TaskArgumentError < ArgumentError
  end

end
PKCH[u����0share/gems/gems/rake-13.0.1/lib/rake/ext/core.rbnu�[���# frozen_string_literal: true
class Module
  # Check for an existing method in the current class before extending.  If
  # the method already exists, then a warning is printed and the extension is
  # not added.  Otherwise the block is yielded and any definitions in the
  # block will take effect.
  #
  # Usage:
  #
  #   class String
  #     rake_extension("xyz") do
  #       def xyz
  #         ...
  #       end
  #     end
  #   end
  #
  def rake_extension(method) # :nodoc:
    if method_defined?(method)
      $stderr.puts "WARNING: Possible conflict with Rake extension: " +
        "#{self}##{method} already exists"
    else
      yield
    end
  end
end
PKCH[yOu�rr2share/gems/gems/rake-13.0.1/lib/rake/ext/string.rbnu�[���# frozen_string_literal: true
require "rake/ext/core"

class String

  rake_extension("ext") do
    # Replace the file extension with +newext+.  If there is no extension on
    # the string, append the new extension to the end.  If the new extension
    # is not given, or is the empty string, remove any existing extension.
    #
    # +ext+ is a user added method for the String class.
    #
    # This String extension comes from Rake
    def ext(newext="")
      return self.dup if [".", ".."].include? self
      if newext != ""
        newext = "." + newext unless newext =~ /^\./
      end
      self.chomp(File.extname(self)) << newext
    end
  end

  rake_extension("pathmap") do
    # Explode a path into individual components.  Used by +pathmap+.
    #
    # This String extension comes from Rake
    def pathmap_explode
      head, tail = File.split(self)
      return [self] if head == self
      return [tail] if head == "." || tail == "/"
      return [head, tail] if head == "/"
      return head.pathmap_explode + [tail]
    end
    protected :pathmap_explode

    # Extract a partial path from the path.  Include +n+ directories from the
    # front end (left hand side) if +n+ is positive.  Include |+n+|
    # directories from the back end (right hand side) if +n+ is negative.
    #
    # This String extension comes from Rake
    def pathmap_partial(n)
      dirs = File.dirname(self).pathmap_explode
      partial_dirs =
        if n > 0
          dirs[0...n]
        elsif n < 0
          dirs.reverse[0...-n].reverse
        else
          "."
        end
      File.join(partial_dirs)
    end
    protected :pathmap_partial

    # Perform the pathmap replacement operations on the given path. The
    # patterns take the form 'pat1,rep1;pat2,rep2...'.
    #
    # This String extension comes from Rake
    def pathmap_replace(patterns, &block)
      result = self
      patterns.split(";").each do |pair|
        pattern, replacement = pair.split(",")
        pattern = Regexp.new(pattern)
        if replacement == "*" && block_given?
          result = result.sub(pattern, &block)
        elsif replacement
          result = result.sub(pattern, replacement)
        else
          result = result.sub(pattern, "")
        end
      end
      result
    end
    protected :pathmap_replace

    # Map the path according to the given specification.  The specification
    # controls the details of the mapping.  The following special patterns are
    # recognized:
    #
    # <tt>%p</tt> :: The complete path.
    # <tt>%f</tt> :: The base file name of the path, with its file extension,
    #                but without any directories.
    # <tt>%n</tt> :: The file name of the path without its file extension.
    # <tt>%d</tt> :: The directory list of the path.
    # <tt>%x</tt> :: The file extension of the path.  An empty string if there
    #                is no extension.
    # <tt>%X</tt> :: Everything *but* the file extension.
    # <tt>%s</tt> :: The alternate file separator if defined, otherwise use #
    #                the standard file separator.
    # <tt>%%</tt> :: A percent sign.
    #
    # The <tt>%d</tt> specifier can also have a numeric prefix (e.g. '%2d').
    # If the number is positive, only return (up to) +n+ directories in the
    # path, starting from the left hand side.  If +n+ is negative, return (up
    # to) +n+ directories from the right hand side of the path.
    #
    # Examples:
    #
    #   'a/b/c/d/file.txt'.pathmap("%2d")   => 'a/b'
    #   'a/b/c/d/file.txt'.pathmap("%-2d")  => 'c/d'
    #
    # Also the <tt>%d</tt>, <tt>%p</tt>, <tt>%f</tt>, <tt>%n</tt>,
    # <tt>%x</tt>, and <tt>%X</tt> operators can take a pattern/replacement
    # argument to perform simple string substitutions on a particular part of
    # the path.  The pattern and replacement are separated by a comma and are
    # enclosed by curly braces.  The replacement spec comes after the %
    # character but before the operator letter.  (e.g. "%{old,new}d").
    # Multiple replacement specs should be separated by semi-colons (e.g.
    # "%{old,new;src,bin}d").
    #
    # Regular expressions may be used for the pattern, and back refs may be
    # used in the replacement text.  Curly braces, commas and semi-colons are
    # excluded from both the pattern and replacement text (let's keep parsing
    # reasonable).
    #
    # For example:
    #
    #    "src/org/onestepback/proj/A.java".pathmap("%{^src,class}X.class")
    #
    # returns:
    #
    #    "class/org/onestepback/proj/A.class"
    #
    # If the replacement text is '*', then a block may be provided to perform
    # some arbitrary calculation for the replacement.
    #
    # For example:
    #
    #   "/path/to/file.TXT".pathmap("%X%{.*,*}x") { |ext|
    #      ext.downcase
    #   }
    #
    # Returns:
    #
    #  "/path/to/file.txt"
    #
    # This String extension comes from Rake
    def pathmap(spec=nil, &block)
      return self if spec.nil?
      result = "".dup
      spec.scan(/%\{[^}]*\}-?\d*[sdpfnxX%]|%-?\d+d|%.|[^%]+/) do |frag|
        case frag
        when "%f"
          result << File.basename(self)
        when "%n"
          result << File.basename(self).ext
        when "%d"
          result << File.dirname(self)
        when "%x"
          result << File.extname(self)
        when "%X"
          result << self.ext
        when "%p"
          result << self
        when "%s"
          result << (File::ALT_SEPARATOR || File::SEPARATOR)
        when "%-"
          # do nothing
        when "%%"
          result << "%"
        when /%(-?\d+)d/
          result << pathmap_partial($1.to_i)
        when /^%\{([^}]*)\}(\d*[dpfnxX])/
          patterns, operator = $1, $2
          result << pathmap("%" + operator).pathmap_replace(patterns, &block)
        when /^%/
          fail ArgumentError, "Unknown pathmap specifier #{frag} in '#{spec}'"
        else
          result << frag
        end
      end
      result
    end
  end

end
PKCH[���^		/share/gems/gems/rake-13.0.1/lib/rake/promise.rbnu�[���# frozen_string_literal: true
module Rake

  # A Promise object represents a promise to do work (a chore) in the
  # future. The promise is created with a block and a list of
  # arguments for the block. Calling value will return the value of
  # the promised chore.
  #
  # Used by ThreadPool.
  #
  class Promise               # :nodoc: all
    NOT_SET = Object.new.freeze # :nodoc:

    attr_accessor :recorder

    # Create a promise to do the chore specified by the block.
    def initialize(args, &block)
      @mutex = Mutex.new
      @result = NOT_SET
      @error = NOT_SET
      @args = args
      @block = block
    end

    # Return the value of this promise.
    #
    # If the promised chore is not yet complete, then do the work
    # synchronously. We will wait.
    def value
      unless complete?
        stat :sleeping_on, item_id: object_id
        @mutex.synchronize do
          stat :has_lock_on, item_id: object_id
          chore
          stat :releasing_lock_on, item_id: object_id
        end
      end
      error? ? raise(@error) : @result
    end

    # If no one else is working this promise, go ahead and do the chore.
    def work
      stat :attempting_lock_on, item_id: object_id
      if @mutex.try_lock
        stat :has_lock_on, item_id: object_id
        chore
        stat :releasing_lock_on, item_id: object_id
        @mutex.unlock
      else
        stat :bailed_on, item_id: object_id
      end
    end

    private

    # Perform the chore promised
    def chore
      if complete?
        stat :found_completed, item_id: object_id
        return
      end
      stat :will_execute, item_id: object_id
      begin
        @result = @block.call(*@args)
      rescue Exception => e
        @error = e
      end
      stat :did_execute, item_id: object_id
      discard
    end

    # Do we have a result for the promise
    def result?
      !@result.equal?(NOT_SET)
    end

    # Did the promise throw an error
    def error?
      !@error.equal?(NOT_SET)
    end

    # Are we done with the promise
    def complete?
      result? || error?
    end

    # free up these items for the GC
    def discard
      @args = nil
      @block = nil
    end

    # Record execution statistics if there is a recorder
    def stat(*args)
      @recorder.call(*args) if @recorder
    end

  end

end
PKCH[��m��>share/gems/gems/rake-13.0.1/lib/rake/thread_history_display.rbnu�[���# frozen_string_literal: true
require "rake/private_reader"

module Rake

  class ThreadHistoryDisplay    # :nodoc: all
    include Rake::PrivateReader

    private_reader :stats, :items, :threads

    def initialize(stats)
      @stats   = stats
      @items   = { _seq_: 1  }
      @threads = { _seq_: "A" }
    end

    def show
      puts "Job History:"
      stats.each do |stat|
        stat[:data] ||= {}
        rename(stat, :thread, threads)
        rename(stat[:data], :item_id, items)
        rename(stat[:data], :new_thread, threads)
        rename(stat[:data], :deleted_thread, threads)
        printf("%8d %2s %-20s %s\n",
          (stat[:time] * 1_000_000).round,
          stat[:thread],
          stat[:event],
          stat[:data].map do |k, v| "#{k}:#{v}" end.join(" "))
      end
    end

    private

    def rename(hash, key, renames)
      if hash && hash[key]
        original = hash[key]
        value = renames[original]
        unless value
          value = renames[:_seq_]
          renames[:_seq_] = renames[:_seq_].succ
          renames[original] = value
        end
        hash[key] = value
      end
    end
  end

end
PKCH[;Y�II2share/gems/gems/rake-13.0.1/lib/rake/file_utils.rbnu�[���# frozen_string_literal: true
require "rbconfig"
require "fileutils"

#--
# This a FileUtils extension that defines several additional commands to be
# added to the FileUtils utility functions.
module FileUtils
  # Path to the currently running Ruby program
  RUBY = ENV["RUBY"] || File.join(
    RbConfig::CONFIG["bindir"],
    RbConfig::CONFIG["ruby_install_name"] + RbConfig::CONFIG["EXEEXT"]).
    sub(/.*\s.*/m, '"\&"')

  # Run the system command +cmd+.  If multiple arguments are given the command
  # is run directly (without the shell, same semantics as Kernel::exec and
  # Kernel::system).
  #
  # It is recommended you use the multiple argument form over interpolating
  # user input for both usability and security reasons.  With the multiple
  # argument form you can easily process files with spaces or other shell
  # reserved characters in them.  With the multiple argument form your rake
  # tasks are not vulnerable to users providing an argument like
  # <code>; rm # -rf /</code>.
  #
  # If a block is given, upon command completion the block is called with an
  # OK flag (true on a zero exit status) and a Process::Status object.
  # Without a block a RuntimeError is raised when the command exits non-zero.
  #
  # Examples:
  #
  #   sh 'ls -ltr'
  #
  #   sh 'ls', 'file with spaces'
  #
  #   # check exit status after command runs
  #   sh %{grep pattern file} do |ok, res|
  #     if !ok
  #       puts "pattern not found (status = #{res.exitstatus})"
  #     end
  #   end
  #
  def sh(*cmd, &block)
    options = (Hash === cmd.last) ? cmd.pop : {}
    shell_runner = block_given? ? block : create_shell_runner(cmd)

    set_verbose_option(options)
    verbose = options.delete :verbose
    noop    = options.delete(:noop) || Rake::FileUtilsExt.nowrite_flag

    Rake.rake_output_message sh_show_command cmd if verbose

    unless noop
      res = (Hash === cmd.last) ? system(*cmd) : system(*cmd, options)
      status = $?
      status = Rake::PseudoStatus.new(1) if !res && status.nil?
      shell_runner.call(res, status)
    end
  end

  def create_shell_runner(cmd) # :nodoc:
    show_command = sh_show_command cmd
    show_command = show_command[0, 42] + "..." unless $trace

    lambda do |ok, status|
      ok or
        fail "Command failed with status (#{status.exitstatus}): " +
        "[#{show_command}]"
    end
  end
  private :create_shell_runner

  def sh_show_command(cmd) # :nodoc:
    cmd = cmd.dup

    if Hash === cmd.first
      env = cmd.first
      env = env.map { |name, value| "#{name}=#{value}" }.join " "
      cmd[0] = env
    end

    cmd.join " "
  end
  private :sh_show_command

  def set_verbose_option(options) # :nodoc:
    unless options.key? :verbose
      options[:verbose] =
        (Rake::FileUtilsExt.verbose_flag == Rake::FileUtilsExt::DEFAULT) ||
        Rake::FileUtilsExt.verbose_flag
    end
  end
  private :set_verbose_option

  # Run a Ruby interpreter with the given arguments.
  #
  # Example:
  #   ruby %{-pe '$_.upcase!' <README}
  #
  def ruby(*args, **options, &block)
    if args.length > 1
      sh(RUBY, *args, **options, &block)
    else
      sh("#{RUBY} #{args.first}", **options, &block)
    end
  end

  LN_SUPPORTED = [true]

  #  Attempt to do a normal file link, but fall back to a copy if the link
  #  fails.
  def safe_ln(*args, **options)
    if LN_SUPPORTED[0]
      begin
        return options.empty? ? ln(*args) : ln(*args, **options)
      rescue StandardError, NotImplementedError
        LN_SUPPORTED[0] = false
      end
    end
    options.empty? ? cp(*args) : cp(*args, **options)
  end

  # Split a file path into individual directory names.
  #
  # Example:
  #   split_all("a/b/c") =>  ['a', 'b', 'c']
  #
  def split_all(path)
    head, tail = File.split(path)
    return [tail] if head == "." || tail == "/"
    return [head, tail] if head == "/"
    return split_all(head) + [tail]
  end
end
PKCH[�d���1�11share/gems/gems/rake-13.0.1/lib/rake/file_list.rbnu�[���# frozen_string_literal: true
require "rake/cloneable"
require "rake/file_utils_ext"
require "rake/ext/string"

module Rake

  ##
  # A FileList is essentially an array with a few helper methods defined to
  # make file manipulation a bit easier.
  #
  # FileLists are lazy.  When given a list of glob patterns for possible files
  # to be included in the file list, instead of searching the file structures
  # to find the files, a FileList holds the pattern for latter use.
  #
  # This allows us to define a number of FileList to match any number of
  # files, but only search out the actual files when then FileList itself is
  # actually used.  The key is that the first time an element of the
  # FileList/Array is requested, the pending patterns are resolved into a real
  # list of file names.
  #
  class FileList

    include Cloneable

    # == Method Delegation
    #
    # The lazy evaluation magic of FileLists happens by implementing all the
    # array specific methods to call +resolve+ before delegating the heavy
    # lifting to an embedded array object (@items).
    #
    # In addition, there are two kinds of delegation calls.  The regular kind
    # delegates to the @items array and returns the result directly.  Well,
    # almost directly.  It checks if the returned value is the @items object
    # itself, and if so will return the FileList object instead.
    #
    # The second kind of delegation call is used in methods that normally
    # return a new Array object.  We want to capture the return value of these
    # methods and wrap them in a new FileList object.  We enumerate these
    # methods in the +SPECIAL_RETURN+ list below.

    # List of array methods (that are not in +Object+) that need to be
    # delegated.
    ARRAY_METHODS = (Array.instance_methods - Object.instance_methods).map(&:to_s)

    # List of additional methods that must be delegated.
    MUST_DEFINE = %w[inspect <=>]

    # List of methods that should not be delegated here (we define special
    # versions of them explicitly below).
    MUST_NOT_DEFINE = %w[to_a to_ary partition * <<]

    # List of delegated methods that return new array values which need
    # wrapping.
    SPECIAL_RETURN = %w[
      map collect sort sort_by select find_all reject grep
      compact flatten uniq values_at
      + - & |
    ]

    DELEGATING_METHODS = (ARRAY_METHODS + MUST_DEFINE - MUST_NOT_DEFINE).map(&:to_s).sort.uniq

    # Now do the delegation.
    DELEGATING_METHODS.each do |sym|
      if SPECIAL_RETURN.include?(sym)
        ln = __LINE__ + 1
        class_eval %{
          def #{sym}(*args, &block)
            resolve
            result = @items.send(:#{sym}, *args, &block)
            self.class.new.import(result)
          end
        }, __FILE__, ln
      else
        ln = __LINE__ + 1
        class_eval %{
          def #{sym}(*args, &block)
            resolve
            result = @items.send(:#{sym}, *args, &block)
            result.object_id == @items.object_id ? self : result
          end
        }, __FILE__, ln
      end
    end

    GLOB_PATTERN = %r{[*?\[\{]}

    # Create a file list from the globbable patterns given.  If you wish to
    # perform multiple includes or excludes at object build time, use the
    # "yield self" pattern.
    #
    # Example:
    #   file_list = FileList.new('lib/**/*.rb', 'test/test*.rb')
    #
    #   pkg_files = FileList.new('lib/**/*') do |fl|
    #     fl.exclude(/\bCVS\b/)
    #   end
    #
    def initialize(*patterns)
      @pending_add = []
      @pending = false
      @exclude_patterns = DEFAULT_IGNORE_PATTERNS.dup
      @exclude_procs = DEFAULT_IGNORE_PROCS.dup
      @items = []
      patterns.each { |pattern| include(pattern) }
      yield self if block_given?
    end

    # Add file names defined by glob patterns to the file list.  If an array
    # is given, add each element of the array.
    #
    # Example:
    #   file_list.include("*.java", "*.cfg")
    #   file_list.include %w( math.c lib.h *.o )
    #
    def include(*filenames)
      # TODO: check for pending
      filenames.each do |fn|
        if fn.respond_to? :to_ary
          include(*fn.to_ary)
        else
          @pending_add << Rake.from_pathname(fn)
        end
      end
      @pending = true
      self
    end
    alias :add :include

    # Register a list of file name patterns that should be excluded from the
    # list.  Patterns may be regular expressions, glob patterns or regular
    # strings.  In addition, a block given to exclude will remove entries that
    # return true when given to the block.
    #
    # Note that glob patterns are expanded against the file system. If a file
    # is explicitly added to a file list, but does not exist in the file
    # system, then an glob pattern in the exclude list will not exclude the
    # file.
    #
    # Examples:
    #   FileList['a.c', 'b.c'].exclude("a.c") => ['b.c']
    #   FileList['a.c', 'b.c'].exclude(/^a/)  => ['b.c']
    #
    # If "a.c" is a file, then ...
    #   FileList['a.c', 'b.c'].exclude("a.*") => ['b.c']
    #
    # If "a.c" is not a file, then ...
    #   FileList['a.c', 'b.c'].exclude("a.*") => ['a.c', 'b.c']
    #
    def exclude(*patterns, &block)
      patterns.each do |pat|
        if pat.respond_to? :to_ary
          exclude(*pat.to_ary)
        else
          @exclude_patterns << Rake.from_pathname(pat)
        end
      end
      @exclude_procs << block if block_given?
      resolve_exclude unless @pending
      self
    end

    # Clear all the exclude patterns so that we exclude nothing.
    def clear_exclude
      @exclude_patterns = []
      @exclude_procs = []
      self
    end

    # A FileList is equal through array equality.
    def ==(array)
      to_ary == array
    end

    # Return the internal array object.
    def to_a
      resolve
      @items
    end

    # Return the internal array object.
    def to_ary
      to_a
    end

    # Lie about our class.
    def is_a?(klass)
      klass == Array || super(klass)
    end
    alias kind_of? is_a?

    # Redefine * to return either a string or a new file list.
    def *(other)
      result = @items * other
      case result
      when Array
        self.class.new.import(result)
      else
        result
      end
    end

    def <<(obj)
      resolve
      @items << Rake.from_pathname(obj)
      self
    end

    # Resolve all the pending adds now.
    def resolve
      if @pending
        @pending = false
        @pending_add.each do |fn| resolve_add(fn) end
        @pending_add = []
        resolve_exclude
      end
      self
    end

    def resolve_add(fn) # :nodoc:
      case fn
      when GLOB_PATTERN
        add_matching(fn)
      else
        self << fn
      end
    end
    private :resolve_add

    def resolve_exclude # :nodoc:
      reject! { |fn| excluded_from_list?(fn) }
      self
    end
    private :resolve_exclude

    # Return a new FileList with the results of running +sub+ against each
    # element of the original list.
    #
    # Example:
    #   FileList['a.c', 'b.c'].sub(/\.c$/, '.o')  => ['a.o', 'b.o']
    #
    def sub(pat, rep)
      inject(self.class.new) { |res, fn| res << fn.sub(pat, rep) }
    end

    # Return a new FileList with the results of running +gsub+ against each
    # element of the original list.
    #
    # Example:
    #   FileList['lib/test/file', 'x/y'].gsub(/\//, "\\")
    #      => ['lib\\test\\file', 'x\\y']
    #
    def gsub(pat, rep)
      inject(self.class.new) { |res, fn| res << fn.gsub(pat, rep) }
    end

    # Same as +sub+ except that the original file list is modified.
    def sub!(pat, rep)
      each_with_index { |fn, i| self[i] = fn.sub(pat, rep) }
      self
    end

    # Same as +gsub+ except that the original file list is modified.
    def gsub!(pat, rep)
      each_with_index { |fn, i| self[i] = fn.gsub(pat, rep) }
      self
    end

    # Apply the pathmap spec to each of the included file names, returning a
    # new file list with the modified paths.  (See String#pathmap for
    # details.)
    def pathmap(spec=nil, &block)
      collect { |fn| fn.pathmap(spec, &block) }
    end

    # Return a new FileList with <tt>String#ext</tt> method applied to
    # each member of the array.
    #
    # This method is a shortcut for:
    #
    #    array.collect { |item| item.ext(newext) }
    #
    # +ext+ is a user added method for the Array class.
    def ext(newext="")
      collect { |fn| fn.ext(newext) }
    end

    # Grep each of the files in the filelist using the given pattern. If a
    # block is given, call the block on each matching line, passing the file
    # name, line number, and the matching line of text.  If no block is given,
    # a standard emacs style file:linenumber:line message will be printed to
    # standard out.  Returns the number of matched items.
    def egrep(pattern, *options)
      matched = 0
      each do |fn|
        begin
          File.open(fn, "r", *options) do |inf|
            count = 0
            inf.each do |line|
              count += 1
              if pattern.match(line)
                matched += 1
                if block_given?
                  yield fn, count, line
                else
                  puts "#{fn}:#{count}:#{line}"
                end
              end
            end
          end
        rescue StandardError => ex
          $stderr.puts "Error while processing '#{fn}': #{ex}"
        end
      end
      matched
    end

    # Return a new file list that only contains file names from the current
    # file list that exist on the file system.
    def existing
      select { |fn| File.exist?(fn) }.uniq
    end

    # Modify the current file list so that it contains only file name that
    # exist on the file system.
    def existing!
      resolve
      @items = @items.select { |fn| File.exist?(fn) }.uniq
      self
    end

    # FileList version of partition.  Needed because the nested arrays should
    # be FileLists in this version.
    def partition(&block)       # :nodoc:
      resolve
      result = @items.partition(&block)
      [
        self.class.new.import(result[0]),
        self.class.new.import(result[1]),
      ]
    end

    # Convert a FileList to a string by joining all elements with a space.
    def to_s
      resolve
      self.join(" ")
    end

    # Add matching glob patterns.
    def add_matching(pattern)
      self.class.glob(pattern).each do |fn|
        self << fn unless excluded_from_list?(fn)
      end
    end
    private :add_matching

    # Should the given file name be excluded from the list?
    #
    # NOTE: This method was formerly named "exclude?", but Rails
    # introduced an exclude? method as an array method and setup a
    # conflict with file list. We renamed the method to avoid
    # confusion. If you were using "FileList#exclude?" in your user
    # code, you will need to update.
    def excluded_from_list?(fn)
      return true if @exclude_patterns.any? do |pat|
        case pat
        when Regexp
          fn =~ pat
        when GLOB_PATTERN
          flags = File::FNM_PATHNAME
          # Ruby <= 1.9.3 does not support File::FNM_EXTGLOB
          flags |= File::FNM_EXTGLOB if defined? File::FNM_EXTGLOB
          File.fnmatch?(pat, fn, flags)
        else
          fn == pat
        end
      end
      @exclude_procs.any? { |p| p.call(fn) }
    end

    DEFAULT_IGNORE_PATTERNS = [
      /(^|[\/\\])CVS([\/\\]|$)/,
      /(^|[\/\\])\.svn([\/\\]|$)/,
      /\.bak$/,
      /~$/
    ]
    DEFAULT_IGNORE_PROCS = [
      proc { |fn| fn =~ /(^|[\/\\])core$/ && !File.directory?(fn) }
    ]

    def import(array) # :nodoc:
      @items = array
      self
    end

    class << self
      # Create a new file list including the files listed. Similar to:
      #
      #   FileList.new(*args)
      def [](*args)
        new(*args)
      end

      # Get a sorted list of files matching the pattern. This method
      # should be preferred to Dir[pattern] and Dir.glob(pattern) because
      # the files returned are guaranteed to be sorted.
      def glob(pattern, *args)
        Dir.glob(pattern, *args).sort
      end
    end
  end
end

module Rake
  class << self

    # Yield each file or directory component.
    def each_dir_parent(dir)    # :nodoc:
      old_length = nil
      while dir != "." && dir.length != old_length
        yield(dir)
        old_length = dir.length
        dir = File.dirname(dir)
      end
    end

    # Convert Pathname and Pathname-like objects to strings;
    # leave everything else alone
    def from_pathname(path)    # :nodoc:
      path = path.to_path if path.respond_to?(:to_path)
      path = path.to_str if path.respond_to?(:to_str)
      path
    end
  end
end # module Rake
PKCH[���''1share/gems/gems/rake-13.0.1/lib/rake/late_time.rbnu�[���# frozen_string_literal: true
module Rake
  # LateTime is a fake timestamp that occurs _after_ any other time value.
  class LateTime
    include Comparable
    include Singleton

    def <=>(other)
      1
    end

    def to_s
      "<LATE TIME>"
    end
  end

  LATE = LateTime.instance
end
PKCH[H��bb3share/gems/gems/rake-13.0.1/lib/rake/application.rbnu�[���# frozen_string_literal: true
require "optparse"

require "rake/task_manager"
require "rake/file_list"
require "rake/thread_pool"
require "rake/thread_history_display"
require "rake/trace_output"
require "rake/win32"

module Rake

  CommandLineOptionError = Class.new(StandardError)

  ##
  # Rake main application object.  When invoking +rake+ from the
  # command line, a Rake::Application object is created and run.

  class Application
    include TaskManager
    include TraceOutput

    # The name of the application (typically 'rake')
    attr_reader :name

    # The original directory where rake was invoked.
    attr_reader :original_dir

    # Name of the actual rakefile used.
    attr_reader :rakefile

    # Number of columns on the terminal
    attr_accessor :terminal_columns

    # List of the top level task names (task names from the command line).
    attr_reader :top_level_tasks

    # Override the detected TTY output state (mostly for testing)
    attr_writer :tty_output

    DEFAULT_RAKEFILES = [
      "rakefile",
      "Rakefile",
      "rakefile.rb",
      "Rakefile.rb"
    ].freeze

    # Initialize a Rake::Application object.
    def initialize
      super
      @name = "rake"
      @rakefiles = DEFAULT_RAKEFILES.dup
      @rakefile = nil
      @pending_imports = []
      @imported = []
      @loaders = {}
      @default_loader = Rake::DefaultLoader.new
      @original_dir = Dir.pwd
      @top_level_tasks = []
      add_loader("rb", DefaultLoader.new)
      add_loader("rf", DefaultLoader.new)
      add_loader("rake", DefaultLoader.new)
      @tty_output = STDOUT.tty?
      @terminal_columns = ENV["RAKE_COLUMNS"].to_i

      set_default_options
    end

    # Run the Rake application.  The run method performs the following
    # three steps:
    #
    # * Initialize the command line options (+init+).
    # * Define the tasks (+load_rakefile+).
    # * Run the top level tasks (+top_level+).
    #
    # If you wish to build a custom rake command, you should call
    # +init+ on your application.  Then define any tasks.  Finally,
    # call +top_level+ to run your top level tasks.
    def run(argv = ARGV)
      standard_exception_handling do
        init "rake", argv
        load_rakefile
        top_level
      end
    end

    # Initialize the command line parameters and app name.
    def init(app_name="rake", argv = ARGV)
      standard_exception_handling do
        @name = app_name
        begin
          args = handle_options argv
        rescue ArgumentError
          # Backward compatibility for capistrano
          args = handle_options
        end
        collect_command_line_tasks(args)
      end
    end

    # Find the rakefile and then load it and any pending imports.
    def load_rakefile
      standard_exception_handling do
        raw_load_rakefile
      end
    end

    # Run the top level tasks of a Rake application.
    def top_level
      run_with_threads do
        if options.show_tasks
          display_tasks_and_comments
        elsif options.show_prereqs
          display_prerequisites
        else
          top_level_tasks.each { |task_name| invoke_task(task_name) }
        end
      end
    end

    # Run the given block with the thread startup and shutdown.
    def run_with_threads
      thread_pool.gather_history if options.job_stats == :history

      yield

      thread_pool.join
      if options.job_stats
        stats = thread_pool.statistics
        puts "Maximum active threads: #{stats[:max_active_threads]} + main"
        puts "Total threads in play:  #{stats[:total_threads_in_play]} + main"
      end
      ThreadHistoryDisplay.new(thread_pool.history).show if
        options.job_stats == :history
    end

    # Add a loader to handle imported files ending in the extension
    # +ext+.
    def add_loader(ext, loader)
      ext = ".#{ext}" unless ext =~ /^\./
      @loaders[ext] = loader
    end

    # Application options from the command line
    def options
      @options ||= OpenStruct.new
    end

    # Return the thread pool used for multithreaded processing.
    def thread_pool             # :nodoc:
      @thread_pool ||= ThreadPool.new(options.thread_pool_size || Rake.suggested_thread_count-1)
    end

    # internal ----------------------------------------------------------------

    # Invokes a task with arguments that are extracted from +task_string+
    def invoke_task(task_string) # :nodoc:
      name, args = parse_task_string(task_string)
      t = self[name]
      t.invoke(*args)
    end

    def parse_task_string(string) # :nodoc:
      /^([^\[]+)(?:\[(.*)\])$/ =~ string.to_s

      name           = $1
      remaining_args = $2

      return string, [] unless name
      return name,   [] if     remaining_args.empty?

      args = []

      begin
        /\s*((?:[^\\,]|\\.)*?)\s*(?:,\s*(.*))?$/ =~ remaining_args

        remaining_args = $2
        args << $1.gsub(/\\(.)/, '\1')
      end while remaining_args

      return name, args
    end

    # Provide standard exception handling for the given block.
    def standard_exception_handling # :nodoc:
      yield
    rescue SystemExit
      # Exit silently with current status
      raise
    rescue OptionParser::InvalidOption => ex
      $stderr.puts ex.message
      exit(false)
    rescue Exception => ex
      # Exit with error message
      display_error_message(ex)
      exit_because_of_exception(ex)
    end

    # Exit the program because of an unhandled exception.
    # (may be overridden by subclasses)
    def exit_because_of_exception(ex) # :nodoc:
      exit(false)
    end

    # Display the error message that caused the exception.
    def display_error_message(ex) # :nodoc:
      trace "#{name} aborted!"
      display_exception_details(ex)
      trace "Tasks: #{ex.chain}" if has_chain?(ex)
      trace "(See full trace by running task with --trace)" unless
         options.backtrace
    end

    def display_exception_details(ex) # :nodoc:
      display_exception_details_seen << ex

      display_exception_message_details(ex)
      display_exception_backtrace(ex)
      display_cause_details(ex.cause) if has_cause?(ex)
    end

    def display_cause_details(ex) # :nodoc:
      return if display_exception_details_seen.include? ex

      trace "\nCaused by:"
      display_exception_details(ex)
    end

    def display_exception_details_seen # :nodoc:
      Thread.current[:rake_display_exception_details_seen] ||= []
    end

    def has_cause?(ex) # :nodoc:
      ex.respond_to?(:cause) && ex.cause
    end

    def display_exception_message_details(ex) # :nodoc:
      if ex.instance_of?(RuntimeError)
        trace ex.message
      else
        trace "#{ex.class.name}: #{ex.message}"
      end
    end

    def display_exception_backtrace(ex) # :nodoc:
      if options.backtrace
        trace ex.backtrace.join("\n")
      else
        trace Backtrace.collapse(ex.backtrace).join("\n")
      end
    end

    # Warn about deprecated usage.
    #
    # Example:
    #    Rake.application.deprecate("import", "Rake.import", caller.first)
    #
    def deprecate(old_usage, new_usage, call_site) # :nodoc:
      unless options.ignore_deprecate
        $stderr.puts "WARNING: '#{old_usage}' is deprecated.  " +
          "Please use '#{new_usage}' instead.\n" +
          "    at #{call_site}"
      end
    end

    # Does the exception have a task invocation chain?
    def has_chain?(exception) # :nodoc:
      exception.respond_to?(:chain) && exception.chain
    end
    private :has_chain?

    # True if one of the files in RAKEFILES is in the current directory.
    # If a match is found, it is copied into @rakefile.
    def have_rakefile # :nodoc:
      @rakefiles.each do |fn|
        if File.exist?(fn)
          others = FileList.glob(fn, File::FNM_CASEFOLD)
          return others.size == 1 ? others.first : fn
        elsif fn == ""
          return fn
        end
      end
      return nil
    end

    # True if we are outputting to TTY, false otherwise
    def tty_output? # :nodoc:
      @tty_output
    end

    # We will truncate output if we are outputting to a TTY or if we've been
    # given an explicit column width to honor
    def truncate_output? # :nodoc:
      tty_output? || @terminal_columns.nonzero?
    end

    # Display the tasks and comments.
    def display_tasks_and_comments # :nodoc:
      displayable_tasks = tasks.select { |t|
        (options.show_all_tasks || t.comment) &&
          t.name =~ options.show_task_pattern
      }
      case options.show_tasks
      when :tasks
        width = displayable_tasks.map { |t| t.name_with_args.length }.max || 10
        if truncate_output?
          max_column = terminal_width - name.size - width - 7
        else
          max_column = nil
        end

        displayable_tasks.each do |t|
          printf("#{name} %-#{width}s  # %s\n",
            t.name_with_args,
            max_column ? truncate(t.comment, max_column) : t.comment)
        end
      when :describe
        displayable_tasks.each do |t|
          puts "#{name} #{t.name_with_args}"
          comment = t.full_comment || ""
          comment.split("\n").each do |line|
            puts "    #{line}"
          end
          puts
        end
      when :lines
        displayable_tasks.each do |t|
          t.locations.each do |loc|
            printf "#{name} %-30s %s\n", t.name_with_args, loc
          end
        end
      else
        fail "Unknown show task mode: '#{options.show_tasks}'"
      end
    end

    def terminal_width # :nodoc:
      if @terminal_columns.nonzero?
        result = @terminal_columns
      else
        result = unix? ? dynamic_width : 80
      end
      (result < 10) ? 80 : result
    rescue
      80
    end

    # Calculate the dynamic width of the
    def dynamic_width # :nodoc:
      @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
    end

    def dynamic_width_stty # :nodoc:
      %x{stty size 2>/dev/null}.split[1].to_i
    end

    def dynamic_width_tput # :nodoc:
      %x{tput cols 2>/dev/null}.to_i
    end

    def unix? # :nodoc:
      RbConfig::CONFIG["host_os"] =~
        /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
    end

    def windows? # :nodoc:
      Win32.windows?
    end

    def truncate(string, width) # :nodoc:
      if string.nil?
        ""
      elsif string.length <= width
        string
      else
        (string[0, width - 3] || "") + "..."
      end
    end

    # Display the tasks and prerequisites
    def display_prerequisites # :nodoc:
      tasks.each do |t|
        puts "#{name} #{t.name}"
        t.prerequisites.each { |pre| puts "    #{pre}" }
      end
    end

    def trace(*strings) # :nodoc:
      options.trace_output ||= $stderr
      trace_on(options.trace_output, *strings)
    end

    def sort_options(options) # :nodoc:
      options.sort_by { |opt|
        opt.select { |o| o.is_a?(String) && o =~ /^-/ }.map(&:downcase).sort.reverse
      }
    end
    private :sort_options

    # A list of all the standard options used in rake, suitable for
    # passing to OptionParser.
    def standard_rake_options # :nodoc:
      sort_options(
        [
          ["--all", "-A",
            "Show all tasks, even uncommented ones (in combination with -T or -D)",
            lambda { |value|
              options.show_all_tasks = value
            }
          ],
          ["--backtrace=[OUT]",
            "Enable full backtrace.  OUT can be stderr (default) or stdout.",
            lambda { |value|
              options.backtrace = true
              select_trace_output(options, "backtrace", value)
            }
          ],
          ["--build-all", "-B",
           "Build all prerequisites, including those which are up-to-date.",
           lambda { |value|
             options.build_all = true
           }
          ],
          ["--comments",
            "Show commented tasks only",
            lambda { |value|
              options.show_all_tasks = !value
            }
          ],
          ["--describe", "-D [PATTERN]",
            "Describe the tasks (matching optional PATTERN), then exit.",
            lambda { |value|
              select_tasks_to_show(options, :describe, value)
            }
          ],
          ["--dry-run", "-n",
            "Do a dry run without executing actions.",
            lambda { |value|
              Rake.verbose(true)
              Rake.nowrite(true)
              options.dryrun = true
              options.trace = true
            }
          ],
          ["--execute", "-e CODE",
            "Execute some Ruby code and exit.",
            lambda { |value|
              eval(value)
              exit
            }
          ],
          ["--execute-print", "-p CODE",
            "Execute some Ruby code, print the result, then exit.",
            lambda { |value|
              puts eval(value)
              exit
            }
          ],
          ["--execute-continue",  "-E CODE",
            "Execute some Ruby code, " +
            "then continue with normal task processing.",
            lambda { |value| eval(value) }
          ],
          ["--jobs",  "-j [NUMBER]",
            "Specifies the maximum number of tasks to execute in parallel. " +
            "(default is number of CPU cores + 4)",
            lambda { |value|
              if value.nil? || value == ""
                value = Float::INFINITY
              elsif value =~ /^\d+$/
                value = value.to_i
              else
                value = Rake.suggested_thread_count
              end
              value = 1 if value < 1
              options.thread_pool_size = value - 1
            }
          ],
          ["--job-stats [LEVEL]",
            "Display job statistics. " +
            "LEVEL=history displays a complete job list",
            lambda { |value|
              if value =~ /^history/i
                options.job_stats = :history
              else
                options.job_stats = true
              end
            }
          ],
          ["--libdir", "-I LIBDIR",
            "Include LIBDIR in the search path for required modules.",
            lambda { |value| $:.push(value) }
          ],
          ["--multitask", "-m",
            "Treat all tasks as multitasks.",
            lambda { |value| options.always_multitask = true }
          ],
          ["--no-search", "--nosearch",
            "-N", "Do not search parent directories for the Rakefile.",
            lambda { |value| options.nosearch = true }
          ],
          ["--prereqs", "-P",
            "Display the tasks and dependencies, then exit.",
            lambda { |value| options.show_prereqs = true }
          ],
          ["--quiet", "-q",
            "Do not log messages to standard output.",
            lambda { |value| Rake.verbose(false) }
          ],
          ["--rakefile", "-f [FILENAME]",
            "Use FILENAME as the rakefile to search for.",
            lambda { |value|
              value ||= ""
              @rakefiles.clear
              @rakefiles << value
            }
          ],
          ["--rakelibdir", "--rakelib", "-R RAKELIBDIR",
            "Auto-import any .rake files in RAKELIBDIR. " +
            "(default is 'rakelib')",
            lambda { |value|
              options.rakelib = value.split(File::PATH_SEPARATOR)
            }
          ],
          ["--require", "-r MODULE",
            "Require MODULE before executing rakefile.",
            lambda { |value|
              begin
                require value
              rescue LoadError => ex
                begin
                  rake_require value
                rescue LoadError
                  raise ex
                end
              end
            }
          ],
          ["--rules",
            "Trace the rules resolution.",
            lambda { |value| options.trace_rules = true }
          ],
          ["--silent", "-s",
            "Like --quiet, but also suppresses the " +
            "'in directory' announcement.",
            lambda { |value|
              Rake.verbose(false)
              options.silent = true
            }
          ],
          ["--suppress-backtrace PATTERN",
            "Suppress backtrace lines matching regexp PATTERN. " +
            "Ignored if --trace is on.",
            lambda { |value|
              options.suppress_backtrace_pattern = Regexp.new(value)
            }
          ],
          ["--system",  "-g",
            "Using system wide (global) rakefiles " +
            "(usually '~/.rake/*.rake').",
            lambda { |value| options.load_system = true }
          ],
          ["--no-system", "--nosystem", "-G",
            "Use standard project Rakefile search paths, " +
            "ignore system wide rakefiles.",
            lambda { |value| options.ignore_system = true }
          ],
          ["--tasks", "-T [PATTERN]",
            "Display the tasks (matching optional PATTERN) " +
            "with descriptions, then exit. " +
            "-AT combination displays all of tasks contained no description.",
            lambda { |value|
              select_tasks_to_show(options, :tasks, value)
            }
          ],
          ["--trace=[OUT]", "-t",
            "Turn on invoke/execute tracing, enable full backtrace. " +
            "OUT can be stderr (default) or stdout.",
            lambda { |value|
              options.trace = true
              options.backtrace = true
              select_trace_output(options, "trace", value)
              Rake.verbose(true)
            }
          ],
          ["--verbose", "-v",
            "Log message to standard output.",
            lambda { |value| Rake.verbose(true) }
          ],
          ["--version", "-V",
            "Display the program version.",
            lambda { |value|
              puts "rake, version #{Rake::VERSION}"
              exit
            }
          ],
          ["--where", "-W [PATTERN]",
            "Describe the tasks (matching optional PATTERN), then exit.",
            lambda { |value|
              select_tasks_to_show(options, :lines, value)
              options.show_all_tasks = true
            }
          ],
          ["--no-deprecation-warnings", "-X",
            "Disable the deprecation warnings.",
            lambda { |value|
              options.ignore_deprecate = true
            }
          ],
        ])
    end

    def select_tasks_to_show(options, show_tasks, value) # :nodoc:
      options.show_tasks = show_tasks
      options.show_task_pattern = Regexp.new(value || "")
      Rake::TaskManager.record_task_metadata = true
    end
    private :select_tasks_to_show

    def select_trace_output(options, trace_option, value) # :nodoc:
      value = value.strip unless value.nil?
      case value
      when "stdout"
        options.trace_output = $stdout
      when "stderr", nil
        options.trace_output = $stderr
      else
        fail CommandLineOptionError,
          "Unrecognized --#{trace_option} option '#{value}'"
      end
    end
    private :select_trace_output

    # Read and handle the command line options.  Returns the command line
    # arguments that we didn't understand, which should (in theory) be just
    # task names and env vars.
    def handle_options(argv) # :nodoc:
      set_default_options

      OptionParser.new do |opts|
        opts.banner = "#{Rake.application.name} [-f rakefile] {options} targets..."
        opts.separator ""
        opts.separator "Options are ..."

        opts.on_tail("-h", "--help", "-H", "Display this help message.") do
          puts opts
          exit
        end

        standard_rake_options.each { |args| opts.on(*args) }
        opts.environment("RAKEOPT")
      end.parse(argv)
    end

    # Similar to the regular Ruby +require+ command, but will check
    # for *.rake files in addition to *.rb files.
    def rake_require(file_name, paths=$LOAD_PATH, loaded=$") # :nodoc:
      fn = file_name + ".rake"
      return false if loaded.include?(fn)
      paths.each do |path|
        full_path = File.join(path, fn)
        if File.exist?(full_path)
          Rake.load_rakefile(full_path)
          loaded << fn
          return true
        end
      end
      fail LoadError, "Can't find #{file_name}"
    end

    def find_rakefile_location # :nodoc:
      here = Dir.pwd
      until (fn = have_rakefile)
        Dir.chdir("..")
        return nil if Dir.pwd == here || options.nosearch
        here = Dir.pwd
      end
      [fn, here]
    ensure
      Dir.chdir(Rake.original_dir)
    end

    def print_rakefile_directory(location) # :nodoc:
      $stderr.puts "(in #{Dir.pwd})" unless
        options.silent or original_dir == location
    end

    def raw_load_rakefile # :nodoc:
      rakefile, location = find_rakefile_location
      if (!options.ignore_system) &&
          (options.load_system || rakefile.nil?) &&
          system_dir && File.directory?(system_dir)
        print_rakefile_directory(location)
        glob("#{system_dir}/*.rake") do |name|
          add_import name
        end
      else
        fail "No Rakefile found (looking for: #{@rakefiles.join(', ')})" if
          rakefile.nil?
        @rakefile = rakefile
        Dir.chdir(location)
        print_rakefile_directory(location)
        Rake.load_rakefile(File.expand_path(@rakefile)) if
          @rakefile && @rakefile != ""
        options.rakelib.each do |rlib|
          glob("#{rlib}/*.rake") do |name|
            add_import name
          end
        end
      end
      load_imports
    end

    def glob(path, &block) # :nodoc:
      FileList.glob(path.tr("\\", "/")).each(&block)
    end
    private :glob

    # The directory path containing the system wide rakefiles.
    def system_dir # :nodoc:
      @system_dir ||=
        begin
          if ENV["RAKE_SYSTEM"]
            ENV["RAKE_SYSTEM"]
          else
            standard_system_dir
          end
        end
    end

    # The standard directory containing system wide rake files.
    if Win32.windows?
      def standard_system_dir #:nodoc:
        Win32.win32_system_dir
      end
    else
      def standard_system_dir #:nodoc:
        File.join(File.expand_path("~"), ".rake")
      end
    end
    private :standard_system_dir

    # Collect the list of tasks on the command line.  If no tasks are
    # given, return a list containing only the default task.
    # Environmental assignments are processed at this time as well.
    #
    # `args` is the list of arguments to peruse to get the list of tasks.
    # It should be the command line that was given to rake, less any
    # recognised command-line options, which OptionParser.parse will
    # have taken care of already.
    def collect_command_line_tasks(args) # :nodoc:
      @top_level_tasks = []
      args.each do |arg|
        if arg =~ /^(\w+)=(.*)$/m
          ENV[$1] = $2
        else
          @top_level_tasks << arg unless arg =~ /^-/
        end
      end
      @top_level_tasks.push(default_task_name) if @top_level_tasks.empty?
    end

    # Default task name ("default").
    # (May be overridden by subclasses)
    def default_task_name # :nodoc:
      "default"
    end

    # Add a file to the list of files to be imported.
    def add_import(fn) # :nodoc:
      @pending_imports << fn
    end

    # Load the pending list of imported files.
    def load_imports # :nodoc:
      while fn = @pending_imports.shift
        next if @imported.member?(fn)
        fn_task = lookup(fn) and fn_task.invoke
        ext = File.extname(fn)
        loader = @loaders[ext] || @default_loader
        loader.load(fn)
        if fn_task = lookup(fn) and fn_task.needed?
          fn_task.reenable
          fn_task.invoke
          loader.load(fn)
        end
        @imported << fn
      end
    end

    def rakefile_location(backtrace=caller) # :nodoc:
      backtrace.map { |t| t[/([^:]+):/, 1] }

      re = /^#{@rakefile}$/
      re = /#{re.source}/i if windows?

      backtrace.find { |str| str =~ re } || ""
    end

    def set_default_options # :nodoc:
      options.always_multitask           = false
      options.backtrace                  = false
      options.build_all                  = false
      options.dryrun                     = false
      options.ignore_deprecate           = false
      options.ignore_system              = false
      options.job_stats                  = false
      options.load_system                = false
      options.nosearch                   = false
      options.rakelib                    = %w[rakelib]
      options.show_all_tasks             = false
      options.show_prereqs               = false
      options.show_task_pattern          = nil
      options.show_tasks                 = nil
      options.silent                     = false
      options.suppress_backtrace_pattern = nil
      options.thread_pool_size           = Rake.suggested_thread_count
      options.trace                      = false
      options.trace_output               = $stderr
      options.trace_rules                = false
    end

  end
end
PKCH[�R��3share/gems/gems/rake-13.0.1/lib/rake/linked_list.rbnu�[���# frozen_string_literal: true
module Rake

  # Polylithic linked list structure used to implement several data
  # structures in Rake.
  class LinkedList
    include Enumerable
    attr_reader :head, :tail

    # Polymorphically add a new element to the head of a list. The
    # type of head node will be the same list type as the tail.
    def conj(item)
      self.class.cons(item, self)
    end

    # Is the list empty?
    # .make guards against a list being empty making any instantiated LinkedList
    # object not empty by default
    # You should consider overriding this method if you implement your own .make method
    def empty?
      false
    end

    # Lists are structurally equivalent.
    def ==(other)
      current = self
      while !current.empty? && !other.empty?
        return false if current.head != other.head
        current = current.tail
        other = other.tail
      end
      current.empty? && other.empty?
    end

    # Convert to string: LL(item, item...)
    def to_s
      items = map(&:to_s).join(", ")
      "LL(#{items})"
    end

    # Same as +to_s+, but with inspected items.
    def inspect
      items = map(&:inspect).join(", ")
      "LL(#{items})"
    end

    # For each item in the list.
    def each
      current = self
      while !current.empty?
        yield(current.head)
        current = current.tail
      end
      self
    end

    # Make a list out of the given arguments. This method is
    # polymorphic
    def self.make(*args)
      # return an EmptyLinkedList if there are no arguments
      return empty if !args || args.empty?

      # build a LinkedList by starting at the tail and iterating
      # through each argument
      # inject takes an EmptyLinkedList to start
      args.reverse.inject(empty) do |list, item|
        list = cons(item, list)
        list # return the newly created list for each item in the block
      end
    end

    # Cons a new head onto the tail list.
    def self.cons(head, tail)
      new(head, tail)
    end

    # The standard empty list class for the given LinkedList class.
    def self.empty
      self::EMPTY
    end

    protected

    def initialize(head, tail=EMPTY)
      @head = head
      @tail = tail
    end

    # Represent an empty list, using the Null Object Pattern.
    #
    # When inheriting from the LinkedList class, you should implement
    # a type specific Empty class as well. Make sure you set the class
    # instance variable @parent to the associated list class (this
    # allows conj, cons and make to work polymorphically).
    class EmptyLinkedList < LinkedList
      @parent = LinkedList

      def initialize
      end

      def empty?
        true
      end

      def self.cons(head, tail)
        @parent.cons(head, tail)
      end
    end

    EMPTY = EmptyLinkedList.new
  end
end
PKCH[~�y�	�	6share/gems/gems/rake-13.0.1/lib/rake/task_arguments.rbnu�[���# frozen_string_literal: true
module Rake

  ##
  # TaskArguments manage the arguments passed to a task.
  #
  class TaskArguments
    include Enumerable

    # Argument names
    attr_reader :names

    # Create a TaskArgument object with a list of argument +names+ and a set
    # of associated +values+.  +parent+ is the parent argument object.
    def initialize(names, values, parent=nil)
      @names = names
      @parent = parent
      @hash = {}
      @values = values
      names.each_with_index { |name, i|
        next if values[i].nil? || values[i] == ""
        @hash[name.to_sym] = values[i]
      }
    end

    # Retrieve the complete array of sequential values
    def to_a
      @values.dup
    end

    # Retrieve the list of values not associated with named arguments
    def extras
      @values[@names.length..-1] || []
    end

    # Create a new argument scope using the prerequisite argument
    # names.
    def new_scope(names)
      values = names.map { |n| self[n] }
      self.class.new(names, values + extras, self)
    end

    # Find an argument value by name or index.
    def [](index)
      lookup(index.to_sym)
    end

    # Specify a hash of default values for task arguments. Use the
    # defaults only if there is no specific value for the given
    # argument.
    def with_defaults(defaults)
      @hash = defaults.merge(@hash)
    end

    # Enumerates the arguments and their values
    def each(&block)
      @hash.each(&block)
    end

    # Extracts the argument values at +keys+
    def values_at(*keys)
      keys.map { |k| lookup(k) }
    end

    # Returns the value of the given argument via method_missing
    def method_missing(sym, *args)
      lookup(sym.to_sym)
    end

    # Returns a Hash of arguments and their values
    def to_hash
      @hash.dup
    end

    def to_s # :nodoc:
      inspect
    end

    def inspect # :nodoc:
      inspection = @hash.map do |k,v|
        "#{k.to_s}: #{v.to_s}"
      end.join(", ")

      "#<#{self.class} #{inspection}>"
    end

    # Returns true if +key+ is one of the arguments
    def has_key?(key)
      @hash.has_key?(key)
    end
    alias key? has_key?

    def fetch(*args, &block)
      @hash.fetch(*args, &block)
    end

    protected

    def lookup(name) # :nodoc:
      if @hash.has_key?(name)
        @hash[name]
      elsif @parent
        @parent.lookup(name)
      end
    end
  end

  EMPTY_TASK_ARGS = TaskArguments.new([], []) # :nodoc:
end
PKCH[���YY2share/gems/gems/rake-13.0.1/lib/rake/multi_task.rbnu�[���# frozen_string_literal: true
module Rake

  # Same as a regular task, but the immediate prerequisites are done in
  # parallel using Ruby threads.
  #
  class MultiTask < Task
    private

    def invoke_prerequisites(task_args, invocation_chain) # :nodoc:
      invoke_prerequisites_concurrently(task_args, invocation_chain)
    end
  end
end
PKCH[QG�-share/gems/gems/rake-13.0.1/lib/rake/clean.rbnu�[���# frozen_string_literal: true
# The 'rake/clean' file defines two file lists (CLEAN and CLOBBER) and
# two rake tasks (:clean and :clobber).
#
# [:clean] Clean up the project by deleting scratch files and backup
#          files.  Add files to the CLEAN file list to have the :clean
#          target handle them.
#
# [:clobber] Clobber all generated and non-source files in a project.
#            The task depends on :clean, so all the clean files will
#            be deleted as well as files in the CLOBBER file list.
#            The intent of this task is to return a project to its
#            pristine, just unpacked state.

require "rake"

# :stopdoc:

module Rake
  module Cleaner
    extend FileUtils

    module_function

    def cleanup_files(file_names)
      file_names.each do |file_name|
        cleanup(file_name)
      end
    end

    def cleanup(file_name, **opts)
      begin
        opts = { verbose: Rake.application.options.trace }.merge(opts)
        rm_r file_name, **opts
      rescue StandardError => ex
        puts "Failed to remove #{file_name}: #{ex}" unless file_already_gone?(file_name)
      end
    end

    def file_already_gone?(file_name)
      return false if File.exist?(file_name)

      path = file_name
      prev = nil

      while path = File.dirname(path)
        return false if cant_be_deleted?(path)
        break if [prev, "."].include?(path)
        prev = path
      end
      true
    end
    private_class_method :file_already_gone?

    def cant_be_deleted?(path_name)
      File.exist?(path_name) &&
        (!File.readable?(path_name) || !File.executable?(path_name))
    end
    private_class_method :cant_be_deleted?
  end
end

CLEAN = ::Rake::FileList["**/*~", "**/*.bak", "**/core"]
CLEAN.clear_exclude.exclude { |fn|
  fn.pathmap("%f").downcase == "core" && File.directory?(fn)
}

desc "Remove any temporary products."
task :clean do
  Rake::Cleaner.cleanup_files(CLEAN)
end

CLOBBER = ::Rake::FileList.new

desc "Remove any generated files."
task clobber: [:clean] do
  Rake::Cleaner.cleanup_files(CLOBBER)
end
PKCH[��l��:share/gems/gems/rake-13.0.1/lib/rake/file_creation_task.rbnu�[���# frozen_string_literal: true
require "rake/file_task"
require "rake/early_time"

module Rake

  # A FileCreationTask is a file task that when used as a dependency will be
  # needed if and only if the file has not been created.  Once created, it is
  # not re-triggered if any of its dependencies are newer, nor does trigger
  # any rebuilds of tasks that depend on it whenever it is updated.
  #
  class FileCreationTask < FileTask
    # Is this file task needed?  Yes if it doesn't exist.
    def needed?
      !File.exist?(name)
    end

    # Time stamp for file creation task.  This time stamp is earlier
    # than any other time stamp.
    def timestamp
      Rake::EARLY
    end
  end

end
PKCH[�.*C}}-share/gems/gems/rake-13.0.1/lib/rake/phony.rbnu�[���# frozen_string_literal: true
# Defines a :phony task that you can use as a dependency. This allows
# file-based tasks to use non-file-based tasks as prerequisites
# without forcing them to rebuild.
#
# See FileTask#out_of_date? and Task#timestamp for more info.

require "rake"

task :phony

Rake::Task[:phony].tap do |task|
  def task.timestamp # :nodoc:
    Time.at 0
  end
end
PKCH[�l�??4share/gems/gems/rake-13.0.1/lib/rake/trace_output.rbnu�[���# frozen_string_literal: true
module Rake
  module TraceOutput # :nodoc: all

    # Write trace output to output stream +out+.
    #
    # The write is done as a single IO call (to print) to lessen the
    # chance that the trace output is interrupted by other tasks also
    # producing output.
    def trace_on(out, *strings)
      sep = $\ || "\n"
      if strings.empty?
        output = sep
      else
        output = strings.map { |s|
          next if s.nil?
          s.end_with?(sep) ? s : s + sep
        }.join
      end
      out.print(output)
    end
  end
end
PKCH[p,۞��0share/gems/gems/rake-13.0.1/lib/rake/testtask.rbnu�[���# frozen_string_literal: true
require "rake"
require "rake/tasklib"

module Rake

  # Create a task that runs a set of tests.
  #
  # Example:
  #   require "rake/testtask"
  #
  #   Rake::TestTask.new do |t|
  #     t.libs << "test"
  #     t.test_files = FileList['test/test*.rb']
  #     t.verbose = true
  #   end
  #
  # If rake is invoked with a "TEST=filename" command line option,
  # then the list of test files will be overridden to include only the
  # filename specified on the command line.  This provides an easy way
  # to run just one test.
  #
  # If rake is invoked with a "TESTOPTS=options" command line option,
  # then the given options are passed to the test process after a
  # '--'.  This allows Test::Unit options to be passed to the test
  # suite.
  #
  # Examples:
  #
  #   rake test                           # run tests normally
  #   rake test TEST=just_one_file.rb     # run just one test file.
  #   rake test TESTOPTS="-v"             # run in verbose mode
  #   rake test TESTOPTS="--runner=fox"   # use the fox test runner
  #
  class TestTask < TaskLib

    # Name of test task. (default is :test)
    attr_accessor :name

    # List of directories added to $LOAD_PATH before running the
    # tests. (default is 'lib')
    attr_accessor :libs

    # True if verbose test output desired. (default is false)
    attr_accessor :verbose

    # Test options passed to the test suite.  An explicit
    # TESTOPTS=opts on the command line will override this. (default
    # is NONE)
    attr_accessor :options

    # Request that the tests be run with the warning flag set.
    # E.g. warning=true implies "ruby -w" used to run the tests.
    # (default is true)
    attr_accessor :warning

    # Glob pattern to match test files. (default is 'test/test*.rb')
    attr_accessor :pattern

    # Style of test loader to use.  Options are:
    #
    # * :rake -- Rake provided test loading script (default).
    # * :testrb -- Ruby provided test loading script.
    # * :direct -- Load tests using command line loader.
    #
    attr_accessor :loader

    # Array of command line options to pass to ruby when running test loader.
    attr_accessor :ruby_opts

    # Description of the test task. (default is 'Run tests')
    attr_accessor :description

    # Task prerequisites.
    attr_accessor :deps

    # Explicitly define the list of test files to be included in a
    # test.  +list+ is expected to be an array of file names (a
    # FileList is acceptable).  If both +pattern+ and +test_files+ are
    # used, then the list of test files is the union of the two.
    def test_files=(list)
      @test_files = list
    end

    # Create a testing task.
    def initialize(name=:test)
      @name = name
      @libs = ["lib"]
      @pattern = nil
      @options = nil
      @test_files = nil
      @verbose = false
      @warning = true
      @loader = :rake
      @ruby_opts = []
      @description = "Run tests" + (@name == :test ? "" : " for #{@name}")
      @deps = []
      if @name.is_a?(Hash)
        @deps = @name.values.first
        @name = @name.keys.first
      end
      yield self if block_given?
      @pattern = "test/test*.rb" if @pattern.nil? && @test_files.nil?
      define
    end

    # Create the tasks defined by this task lib.
    def define
      desc @description
      task @name => Array(deps) do
        FileUtilsExt.verbose(@verbose) do
          puts "Use TESTOPTS=\"--verbose\" to pass --verbose" \
            ", etc. to runners." if ARGV.include? "--verbose"
          args =
            "#{ruby_opts_string} #{run_code} " +
            "#{file_list_string} #{option_list}"
          ruby args do |ok, status|
            if !ok && status.respond_to?(:signaled?) && status.signaled?
              raise SignalException.new(status.termsig)
            elsif !ok
              status  = "Command failed with status (#{status.exitstatus})"
              details = ": [ruby #{args}]"
              message =
                if Rake.application.options.trace or @verbose
                  status + details
                else
                  status
                end

              fail message
            end
          end
        end
      end
      self
    end

    def option_list # :nodoc:
      (ENV["TESTOPTS"] ||
        ENV["TESTOPT"] ||
        ENV["TEST_OPTS"] ||
        ENV["TEST_OPT"] ||
        @options ||
        "")
    end

    def ruby_opts_string # :nodoc:
      opts = @ruby_opts.dup
      opts.unshift("-I\"#{lib_path}\"") unless @libs.empty?
      opts.unshift("-w") if @warning
      opts.join(" ")
    end

    def lib_path # :nodoc:
      @libs.join(File::PATH_SEPARATOR)
    end

    def file_list_string # :nodoc:
      file_list.map { |fn| "\"#{fn}\"" }.join(" ")
    end

    def file_list # :nodoc:
      if ENV["TEST"]
        FileList[ENV["TEST"]]
      else
        result = []
        result += @test_files.to_a if @test_files
        result += FileList[@pattern].to_a if @pattern
        result
      end
    end

    def ruby_version # :nodoc:
      RUBY_VERSION
    end

    def run_code # :nodoc:
      case @loader
      when :direct
        "-e \"ARGV.each{|f| require f}\""
      when :testrb
        "-S testrb"
      when :rake
        "#{rake_include_arg} \"#{rake_loader}\""
      end
    end

    def rake_loader # :nodoc:
      find_file("rake/rake_test_loader") or
        fail "unable to find rake test loader"
    end

    def find_file(fn) # :nodoc:
      $LOAD_PATH.each do |path|
        file_path = File.join(path, "#{fn}.rb")
        return file_path if File.exist? file_path
      end
      nil
    end

    def rake_include_arg # :nodoc:
      spec = Gem.loaded_specs["rake"]
      if spec.respond_to?(:default_gem?) && spec.default_gem?
        ""
      else
        "-I\"#{rake_lib_dir}\""
      end
    end

    def rake_lib_dir # :nodoc:
      find_dir("rake") or
        fail "unable to find rake lib"
    end

    def find_dir(fn) # :nodoc:
      $LOAD_PATH.each do |path|
        file_path = File.join(path, "#{fn}.rb")
        return path if File.exist? file_path
      end
      nil
    end

  end
end
PKCH[�n���/share/gems/gems/rake-13.0.1/lib/rake/version.rbnu�[���# frozen_string_literal: true
module Rake
  VERSION = "13.0.1"

  module Version # :nodoc: all
    MAJOR, MINOR, BUILD, *OTHER = Rake::VERSION.split "."

    NUMBERS = [MAJOR, MINOR, BUILD, *OTHER]
  end
end
PKCH[�-x=((4share/gems/gems/rake-13.0.1/lib/rake/task_manager.rbnu�[���# frozen_string_literal: true
module Rake

  # The TaskManager module is a mixin for managing tasks.
  module TaskManager
    # Track the last comment made in the Rakefile.
    attr_accessor :last_description

    def initialize # :nodoc:
      super
      @tasks = Hash.new
      @rules = Array.new
      @scope = Scope.make
      @last_description = nil
    end

    def create_rule(*args, &block) # :nodoc:
      pattern, args, deps, order_only = resolve_args(args)
      pattern = Regexp.new(Regexp.quote(pattern) + "$") if String === pattern
      @rules << [pattern, args, deps, order_only, block]
    end

    def define_task(task_class, *args, &block) # :nodoc:
      task_name, arg_names, deps, order_only = resolve_args(args)

      original_scope = @scope
      if String === task_name and
         not task_class.ancestors.include? Rake::FileTask
        task_name, *definition_scope = *(task_name.split(":").reverse)
        @scope = Scope.make(*(definition_scope + @scope.to_a))
      end

      task_name = task_class.scope_name(@scope, task_name)
      task = intern(task_class, task_name)
      task.set_arg_names(arg_names) unless arg_names.empty?
      if Rake::TaskManager.record_task_metadata
        add_location(task)
        task.add_description(get_description(task))
      end
      task.enhance(Task.format_deps(deps), &block)
      task | order_only unless order_only.nil?
      task
    ensure
      @scope = original_scope
    end

    # Lookup a task.  Return an existing task if found, otherwise
    # create a task of the current type.
    def intern(task_class, task_name)
      @tasks[task_name.to_s] ||= task_class.new(task_name, self)
    end

    # Find a matching task for +task_name+.
    def [](task_name, scopes=nil)
      task_name = task_name.to_s
      self.lookup(task_name, scopes) or
        enhance_with_matching_rule(task_name) or
        synthesize_file_task(task_name) or
        fail generate_message_for_undefined_task(task_name)
    end

    def generate_message_for_undefined_task(task_name)
      message = "Don't know how to build task '#{task_name}' "\
                "(See the list of available tasks with `#{Rake.application.name} --tasks`)"
      message + generate_did_you_mean_suggestions(task_name)
    end

    def generate_did_you_mean_suggestions(task_name)
      return "" unless defined?(::DidYouMean::SpellChecker)

      suggestions = ::DidYouMean::SpellChecker.new(dictionary: @tasks.keys).correct(task_name.to_s)
      if ::DidYouMean.respond_to?(:formatter)# did_you_mean v1.2.0 or later
        ::DidYouMean.formatter.message_for(suggestions)
      elsif defined?(::DidYouMean::Formatter) # before did_you_mean v1.2.0
        ::DidYouMean::Formatter.new(suggestions).to_s
      else
        ""
      end
    end

    def synthesize_file_task(task_name) # :nodoc:
      return nil unless File.exist?(task_name)
      define_task(Rake::FileTask, task_name)
    end

    # Resolve the arguments for a task/rule.  Returns a tuple of
    # [task_name, arg_name_list, prerequisites, order_only_prerequisites].
    def resolve_args(args)
      if args.last.is_a?(Hash)
        deps = args.pop
        resolve_args_with_dependencies(args, deps)
      else
        resolve_args_without_dependencies(args)
      end
    end

    # Resolve task arguments for a task or rule when there are no
    # dependencies declared.
    #
    # The patterns recognized by this argument resolving function are:
    #
    #   task :t
    #   task :t, [:a]
    #
    def resolve_args_without_dependencies(args)
      task_name = args.shift
      if args.size == 1 && args.first.respond_to?(:to_ary)
        arg_names = args.first.to_ary
      else
        arg_names = args
      end
      [task_name, arg_names, [], nil]
    end
    private :resolve_args_without_dependencies

    # Resolve task arguments for a task or rule when there are
    # dependencies declared.
    #
    # The patterns recognized by this argument resolving function are:
    #
    #   task :t, order_only: [:e]
    #   task :t => [:d]
    #   task :t => [:d], order_only: [:e]
    #   task :t, [a] => [:d]
    #   task :t, [a] => [:d], order_only: [:e]
    #
    def resolve_args_with_dependencies(args, hash) # :nodoc:
      fail "Task Argument Error" if
        hash.size != 1 &&
        (hash.size != 2 || !hash.key?(:order_only))
      order_only = hash.delete(:order_only)
      key, value = hash.map { |k, v| [k, v] }.first
      if args.empty?
        task_name = key
        arg_names = []
        deps = value || []
      else
        task_name = args.shift
        arg_names = key || args.shift|| []
        deps = value || []
      end
      deps = [deps] unless deps.respond_to?(:to_ary)
      [task_name, arg_names, deps, order_only]
    end
    private :resolve_args_with_dependencies

    # If a rule can be found that matches the task name, enhance the
    # task with the prerequisites and actions from the rule.  Set the
    # source attribute of the task appropriately for the rule.  Return
    # the enhanced task or nil of no rule was found.
    def enhance_with_matching_rule(task_name, level=0)
      fail Rake::RuleRecursionOverflowError,
        "Rule Recursion Too Deep" if level >= 16
      @rules.each do |pattern, args, extensions, order_only, block|
        if pattern && pattern.match(task_name)
          task = attempt_rule(task_name, pattern, args, extensions, block, level)
          task | order_only unless order_only.nil?
          return task if task
        end
      end
      nil
    rescue Rake::RuleRecursionOverflowError => ex
      ex.add_target(task_name)
      fail ex
    end

    # List of all defined tasks in this application.
    def tasks
      @tasks.values.sort_by { |t| t.name }
    end

    # List of all the tasks defined in the given scope (and its
    # sub-scopes).
    def tasks_in_scope(scope)
      prefix = scope.path
      tasks.select { |t|
        /^#{prefix}:/ =~ t.name
      }
    end

    # Clear all tasks in this application.
    def clear
      @tasks.clear
      @rules.clear
    end

    # Lookup a task, using scope and the scope hints in the task name.
    # This method performs straight lookups without trying to
    # synthesize file tasks or rules.  Special scope names (e.g. '^')
    # are recognized.  If no scope argument is supplied, use the
    # current scope.  Return nil if the task cannot be found.
    def lookup(task_name, initial_scope=nil)
      initial_scope ||= @scope
      task_name = task_name.to_s
      if task_name =~ /^rake:/
        scopes = Scope.make
        task_name = task_name.sub(/^rake:/, "")
      elsif task_name =~ /^(\^+)/
        scopes = initial_scope.trim($1.size)
        task_name = task_name.sub(/^(\^+)/, "")
      else
        scopes = initial_scope
      end
      lookup_in_scope(task_name, scopes)
    end

    # Lookup the task name
    def lookup_in_scope(name, scope)
      loop do
        tn = scope.path_with_task_name(name)
        task = @tasks[tn]
        return task if task
        break if scope.empty?
        scope = scope.tail
      end
      nil
    end
    private :lookup_in_scope

    # Return the list of scope names currently active in the task
    # manager.
    def current_scope
      @scope
    end

    # Evaluate the block in a nested namespace named +name+.  Create
    # an anonymous namespace if +name+ is nil.
    def in_namespace(name)
      name ||= generate_name
      @scope = Scope.new(name, @scope)
      ns = NameSpace.new(self, @scope)
      yield(ns)
      ns
    ensure
      @scope = @scope.tail
    end

    private

    # Add a location to the locations field of the given task.
    def add_location(task)
      loc = find_location
      task.locations << loc if loc
      task
    end

    # Find the location that called into the dsl layer.
    def find_location
      locations = caller
      i = 0
      while locations[i]
        return locations[i + 1] if locations[i] =~ /rake\/dsl_definition.rb/
        i += 1
      end
      nil
    end

    # Generate an anonymous namespace name.
    def generate_name
      @seed ||= 0
      @seed += 1
      "_anon_#{@seed}"
    end

    def trace_rule(level, message) # :nodoc:
      options.trace_output.puts "#{"    " * level}#{message}" if
        Rake.application.options.trace_rules
    end

    # Attempt to create a rule given the list of prerequisites.
    def attempt_rule(task_name, task_pattern, args, extensions, block, level)
      sources = make_sources(task_name, task_pattern, extensions)
      prereqs = sources.map { |source|
        trace_rule level, "Attempting Rule #{task_name} => #{source}"
        if File.exist?(source) || Rake::Task.task_defined?(source)
          trace_rule level, "(#{task_name} => #{source} ... EXIST)"
          source
        elsif parent = enhance_with_matching_rule(source, level + 1)
          trace_rule level, "(#{task_name} => #{source} ... ENHANCE)"
          parent.name
        else
          trace_rule level, "(#{task_name} => #{source} ... FAIL)"
          return nil
        end
      }
      task = FileTask.define_task(task_name, { args => prereqs }, &block)
      task.sources = prereqs
      task
    end

    # Make a list of sources from the list of file name extensions /
    # translation procs.
    def make_sources(task_name, task_pattern, extensions)
      result = extensions.map { |ext|
        case ext
        when /%/
          task_name.pathmap(ext)
        when %r{/}
          ext
        when /^\./
          source = task_name.sub(task_pattern, ext)
          source == ext ? task_name.ext(ext) : source
        when String
          ext
        when Proc, Method
          if ext.arity == 1
            ext.call(task_name)
          else
            ext.call
          end
        else
          fail "Don't know how to handle rule dependent: #{ext.inspect}"
        end
      }
      result.flatten
    end

    # Return the current description, clearing it in the process.
    def get_description(task)
      desc = @last_description
      @last_description = nil
      desc
    end

    class << self
      attr_accessor :record_task_metadata # :nodoc:
      TaskManager.record_task_metadata = false
    end
  end

end
PKCH[��M	M	3share/gems/gems/rake-13.0.1/lib/rake/cpu_counter.rbnu�[���# frozen_string_literal: true
module Rake

  # Based on a script at:
  #   http://stackoverflow.com/questions/891537/ruby-detect-number-of-cpus-installed
  class CpuCounter # :nodoc: all
    def self.count
      new.count_with_default
    end

    def count_with_default(default=4)
      count || default
    rescue StandardError
      default
    end

    begin
      require "etc"
    rescue LoadError
    else
      if Etc.respond_to?(:nprocessors)
        def count
          return Etc.nprocessors
        end
      end
    end
  end
end

unless Rake::CpuCounter.method_defined?(:count)
  Rake::CpuCounter.class_eval <<-'end;', __FILE__, __LINE__+1
    require 'rbconfig'

    def count
      if RUBY_PLATFORM == 'java'
        count_via_java_runtime
      else
        case RbConfig::CONFIG['host_os']
        when /linux/
          count_via_cpuinfo
        when /darwin|bsd/
          count_via_sysctl
        when /mswin|mingw/
          count_via_win32
        else
          # Try everything
          count_via_win32 ||
          count_via_sysctl ||
          count_via_cpuinfo
        end
      end
    end

    def count_via_java_runtime
      Java::Java.lang.Runtime.getRuntime.availableProcessors
    rescue StandardError
      nil
    end

    def count_via_win32
      require 'win32ole'
      wmi = WIN32OLE.connect("winmgmts://")
      cpu = wmi.ExecQuery("select NumberOfCores from Win32_Processor") # TODO count hyper-threaded in this
      cpu.to_enum.first.NumberOfCores
    rescue StandardError, LoadError
      nil
    end

    def count_via_cpuinfo
      open('/proc/cpuinfo') { |f| f.readlines }.grep(/processor/).size
    rescue StandardError
      nil
    end

    def count_via_sysctl
      run 'sysctl', '-n', 'hw.ncpu'
    end

    def run(command, *args)
      cmd = resolve_command(command)
      if cmd
        IO.popen [cmd, *args] do |io|
          io.read.to_i
        end
      else
        nil
      end
    end

    def resolve_command(command)
      look_for_command("/usr/sbin", command) ||
        look_for_command("/sbin", command) ||
        in_path_command(command)
    end

    def look_for_command(dir, command)
      path = File.join(dir, command)
      File.exist?(path) ? path : nil
    end

    def in_path_command(command)
      IO.popen ['which', command] do |io|
        io.eof? ? nil : command
      end
    end
  end;
end
PKCH[�I����1share/gems/gems/rake-13.0.1/lib/rake/file_task.rbnu�[���# frozen_string_literal: true
require "rake/task"
require "rake/early_time"

module Rake

  # A FileTask is a task that includes time based dependencies.  If any of a
  # FileTask's prerequisites have a timestamp that is later than the file
  # represented by this task, then the file must be rebuilt (using the
  # supplied actions).
  #
  class FileTask < Task

    # Is this file task needed?  Yes if it doesn't exist, or if its time stamp
    # is out of date.
    def needed?
      !File.exist?(name) || out_of_date?(timestamp) || @application.options.build_all
    end

    # Time stamp for file task.
    def timestamp
      if File.exist?(name)
        File.mtime(name.to_s)
      else
        Rake::LATE
      end
    end

    private

    # Are there any prerequisites with a later time than the given time stamp?
    def out_of_date?(stamp)
      all_prerequisite_tasks.any? { |prereq|
        prereq_task = application[prereq, @scope]
        if prereq_task.instance_of?(Rake::FileTask)
          prereq_task.timestamp > stamp || @application.options.build_all
        else
          prereq_task.timestamp > stamp
        end
      }
    end

    # ----------------------------------------------------------------
    # Task class methods.
    #
    class << self
      # Apply the scope to the task name according to the rules for this kind
      # of task.  File based tasks ignore the scope when creating the name.
      def scope_name(scope, task_name)
        Rake.from_pathname(task_name)
      end
    end
  end
end
PKCH[��i		6share/gems/gems/rake-13.0.1/lib/rake/default_loader.rbnu�[���# frozen_string_literal: true
module Rake

  # Default Rakefile loader used by +import+.
  class DefaultLoader

    ##
    # Loads a rakefile into the current application from +fn+

    def load(fn)
      Rake.load_rakefile(File.expand_path(fn))
    end
  end

end
PKCH[Jሀ�1share/gems/gems/rake-13.0.1/lib/rake/backtrace.rbnu�[���# frozen_string_literal: true
module Rake
  module Backtrace # :nodoc: all
    SYS_KEYS  = RbConfig::CONFIG.keys.grep(/(?:[a-z]prefix|libdir)\z/)
    SYS_PATHS = RbConfig::CONFIG.values_at(*SYS_KEYS).uniq +
      [ File.join(File.dirname(__FILE__), "..") ]

    SUPPRESSED_PATHS = SYS_PATHS.
      map { |s| s.tr("\\", "/") }.
      map { |f| File.expand_path(f) }.
      reject { |s| s.nil? || s =~ /^ *$/ }
    SUPPRESSED_PATHS_RE = SUPPRESSED_PATHS.map { |f| Regexp.quote(f) }.join("|")
    SUPPRESSED_PATHS_RE << "|^org\\/jruby\\/\\w+\\.java" if
      Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == "jruby"

    SUPPRESS_PATTERN = %r!(\A(#{SUPPRESSED_PATHS_RE})|bin/rake:\d+)!i

    def self.collapse(backtrace)
      pattern = Rake.application.options.suppress_backtrace_pattern ||
                SUPPRESS_PATTERN
      backtrace.reject { |elem| elem =~ pattern }
    end
  end
end
PKCH[�R��2�2,share/gems/gems/rake-13.0.1/lib/rake/task.rbnu�[���# frozen_string_literal: true
require "rake/invocation_exception_mixin"

module Rake

  ##
  # A Task is the basic unit of work in a Rakefile.  Tasks have associated
  # actions (possibly more than one) and a list of prerequisites.  When
  # invoked, a task will first ensure that all of its prerequisites have an
  # opportunity to run and then it will execute its own actions.
  #
  # Tasks are not usually created directly using the new method, but rather
  # use the +file+ and +task+ convenience methods.
  #
  class Task
    # List of prerequisites for a task.
    attr_reader :prerequisites
    alias prereqs prerequisites

    # List of order only prerequisites for a task.
    attr_reader :order_only_prerequisites

    # List of actions attached to a task.
    attr_reader :actions

    # Application owning this task.
    attr_accessor :application

    # Array of nested namespaces names used for task lookup by this task.
    attr_reader :scope

    # File/Line locations of each of the task definitions for this
    # task (only valid if the task was defined with the detect
    # location option set).
    attr_reader :locations

    # Has this task already been invoked?  Already invoked tasks
    # will be skipped unless you reenable them.
    attr_reader :already_invoked

    # Return task name
    def to_s
      name
    end

    def inspect # :nodoc:
      "<#{self.class} #{name} => [#{prerequisites.join(', ')}]>"
    end

    # List of sources for task.
    attr_writer :sources
    def sources
      if defined?(@sources)
        @sources
      else
        prerequisites
      end
    end

    # List of prerequisite tasks
    def prerequisite_tasks
      (prerequisites + order_only_prerequisites).map { |pre| lookup_prerequisite(pre) }
    end

    def lookup_prerequisite(prerequisite_name) # :nodoc:
      scoped_prerequisite_task = application[prerequisite_name, @scope]
      if scoped_prerequisite_task == self
        unscoped_prerequisite_task = application[prerequisite_name]
      end
      unscoped_prerequisite_task || scoped_prerequisite_task
    end
    private :lookup_prerequisite

    # List of all unique prerequisite tasks including prerequisite tasks'
    # prerequisites.
    # Includes self when cyclic dependencies are found.
    def all_prerequisite_tasks
      seen = {}
      collect_prerequisites(seen)
      seen.values
    end

    def collect_prerequisites(seen) # :nodoc:
      prerequisite_tasks.each do |pre|
        next if seen[pre.name]
        seen[pre.name] = pre
        pre.collect_prerequisites(seen)
      end
    end
    protected :collect_prerequisites

    # First source from a rule (nil if no sources)
    def source
      sources.first
    end

    # Create a task named +task_name+ with no actions or prerequisites. Use
    # +enhance+ to add actions and prerequisites.
    def initialize(task_name, app)
      @name            = task_name.to_s
      @prerequisites   = []
      @actions         = []
      @already_invoked = false
      @comments        = []
      @lock            = Monitor.new
      @application     = app
      @scope           = app.current_scope
      @arg_names       = nil
      @locations       = []
      @invocation_exception = nil
      @order_only_prerequisites = []
    end

    # Enhance a task with prerequisites or actions.  Returns self.
    def enhance(deps=nil, &block)
      @prerequisites |= deps if deps
      @actions << block if block_given?
      self
    end

    # Name of the task, including any namespace qualifiers.
    def name
      @name.to_s
    end

    # Name of task with argument list description.
    def name_with_args # :nodoc:
      if arg_description
        "#{name}#{arg_description}"
      else
        name
      end
    end

    # Argument description (nil if none).
    def arg_description # :nodoc:
      @arg_names ? "[#{arg_names.join(',')}]" : nil
    end

    # Name of arguments for this task.
    def arg_names
      @arg_names || []
    end

    # Reenable the task, allowing its tasks to be executed if the task
    # is invoked again.
    def reenable
      @already_invoked = false
      @invocation_exception = nil
    end

    # Clear the existing prerequisites, actions, comments, and arguments of a rake task.
    def clear
      clear_prerequisites
      clear_actions
      clear_comments
      clear_args
      self
    end

    # Clear the existing prerequisites of a rake task.
    def clear_prerequisites
      prerequisites.clear
      self
    end

    # Clear the existing actions on a rake task.
    def clear_actions
      actions.clear
      self
    end

    # Clear the existing comments on a rake task.
    def clear_comments
      @comments = []
      self
    end

    # Clear the existing arguments on a rake task.
    def clear_args
      @arg_names = nil
      self
    end

    # Invoke the task if it is needed.  Prerequisites are invoked first.
    def invoke(*args)
      task_args = TaskArguments.new(arg_names, args)
      invoke_with_call_chain(task_args, InvocationChain::EMPTY)
    end

    # Same as invoke, but explicitly pass a call chain to detect
    # circular dependencies.
    #
    # If multiple tasks depend on this
    # one in parallel, they will all fail if the first execution of
    # this task fails.
    def invoke_with_call_chain(task_args, invocation_chain)
      new_chain = Rake::InvocationChain.append(self, invocation_chain)
      @lock.synchronize do
        begin
          if application.options.trace
            application.trace "** Invoke #{name} #{format_trace_flags}"
          end

          if @already_invoked
            if @invocation_exception
              if application.options.trace
                application.trace "** Previous invocation of #{name} failed #{format_trace_flags}"
              end
              raise @invocation_exception
            else
              return
            end
          end

          @already_invoked = true

          invoke_prerequisites(task_args, new_chain)
          execute(task_args) if needed?
        rescue Exception => ex
          add_chain_to(ex, new_chain)
          @invocation_exception = ex
          raise ex
        end
      end
    end
    protected :invoke_with_call_chain

    def add_chain_to(exception, new_chain) # :nodoc:
      exception.extend(InvocationExceptionMixin) unless
        exception.respond_to?(:chain)
      exception.chain = new_chain if exception.chain.nil?
    end
    private :add_chain_to

    # Invoke all the prerequisites of a task.
    def invoke_prerequisites(task_args, invocation_chain) # :nodoc:
      if application.options.always_multitask
        invoke_prerequisites_concurrently(task_args, invocation_chain)
      else
        prerequisite_tasks.each { |p|
          prereq_args = task_args.new_scope(p.arg_names)
          p.invoke_with_call_chain(prereq_args, invocation_chain)
        }
      end
    end

    # Invoke all the prerequisites of a task in parallel.
    def invoke_prerequisites_concurrently(task_args, invocation_chain)# :nodoc:
      futures = prerequisite_tasks.map do |p|
        prereq_args = task_args.new_scope(p.arg_names)
        application.thread_pool.future(p) do |r|
          r.invoke_with_call_chain(prereq_args, invocation_chain)
        end
      end
      # Iterate in reverse to improve performance related to thread waiting and switching
      futures.reverse_each(&:value)
    end

    # Format the trace flags for display.
    def format_trace_flags
      flags = []
      flags << "first_time" unless @already_invoked
      flags << "not_needed" unless needed?
      flags.empty? ? "" : "(" + flags.join(", ") + ")"
    end
    private :format_trace_flags

    # Execute the actions associated with this task.
    def execute(args=nil)
      args ||= EMPTY_TASK_ARGS
      if application.options.dryrun
        application.trace "** Execute (dry run) #{name}"
        return
      end
      application.trace "** Execute #{name}" if application.options.trace
      application.enhance_with_matching_rule(name) if @actions.empty?
      if opts = Hash.try_convert(args) and !opts.empty?
        @actions.each { |act| act.call(self, args, **opts)}
      else
        @actions.each { |act| act.call(self, args)}
      end
    end

    # Is this task needed?
    def needed?
      true
    end

    # Timestamp for this task.  Basic tasks return the current time for their
    # time stamp.  Other tasks can be more sophisticated.
    def timestamp
      Time.now
    end

    # Add a description to the task.  The description can consist of an option
    # argument list (enclosed brackets) and an optional comment.
    def add_description(description)
      return unless description
      comment = description.strip
      add_comment(comment) if comment && !comment.empty?
    end

    def comment=(comment) # :nodoc:
      add_comment(comment)
    end

    def add_comment(comment) # :nodoc:
      return if comment.nil?
      @comments << comment unless @comments.include?(comment)
    end
    private :add_comment

    # Full collection of comments. Multiple comments are separated by
    # newlines.
    def full_comment
      transform_comments("\n")
    end

    # First line (or sentence) of all comments. Multiple comments are
    # separated by a "/".
    def comment
      transform_comments(" / ") { |c| first_sentence(c) }
    end

    # Transform the list of comments as specified by the block and
    # join with the separator.
    def transform_comments(separator, &block)
      if @comments.empty?
        nil
      else
        block ||= lambda { |c| c }
        @comments.map(&block).join(separator)
      end
    end
    private :transform_comments

    # Get the first sentence in a string. The sentence is terminated
    # by the first period, exclamation mark, or the end of the line.
    # Decimal points do not count as periods.
    def first_sentence(string)
      string.split(/(?<=\w)(\.|!)[ \t]|(\.$|!)|\n/).first
    end
    private :first_sentence

    # Set the names of the arguments for this task. +args+ should be
    # an array of symbols, one for each argument name.
    def set_arg_names(args)
      @arg_names = args.map(&:to_sym)
    end

    # Return a string describing the internal state of a task.  Useful for
    # debugging.
    def investigation
      result = "------------------------------\n".dup
      result << "Investigating #{name}\n"
      result << "class: #{self.class}\n"
      result <<  "task needed: #{needed?}\n"
      result <<  "timestamp: #{timestamp}\n"
      result << "pre-requisites: \n"
      prereqs = prerequisite_tasks
      prereqs.sort! { |a, b| a.timestamp <=> b.timestamp }
      prereqs.each do |p|
        result << "--#{p.name} (#{p.timestamp})\n"
      end
      latest_prereq = prerequisite_tasks.map(&:timestamp).max
      result <<  "latest-prerequisite time: #{latest_prereq}\n"
      result << "................................\n\n"
      return result
    end

    # Format dependencies parameter to pass to task.
    def self.format_deps(deps)
      deps = [deps] unless deps.respond_to?(:to_ary)
      deps.map { |d| Rake.from_pathname(d).to_s }
    end

    # Add order only dependencies.
    def |(deps)
      @order_only_prerequisites |= Task.format_deps(deps) - @prerequisites
      self
    end

    # ----------------------------------------------------------------
    # Rake Module Methods
    #
    class << self

      # Clear the task list.  This cause rake to immediately forget all the
      # tasks that have been assigned.  (Normally used in the unit tests.)
      def clear
        Rake.application.clear
      end

      # List of all defined tasks.
      def tasks
        Rake.application.tasks
      end

      # Return a task with the given name.  If the task is not currently
      # known, try to synthesize one from the defined rules.  If no rules are
      # found, but an existing file matches the task name, assume it is a file
      # task with no dependencies or actions.
      def [](task_name)
        Rake.application[task_name]
      end

      # TRUE if the task name is already defined.
      def task_defined?(task_name)
        Rake.application.lookup(task_name) != nil
      end

      # Define a task given +args+ and an option block.  If a rule with the
      # given name already exists, the prerequisites and actions are added to
      # the existing task.  Returns the defined task.
      def define_task(*args, &block)
        Rake.application.define_task(self, *args, &block)
      end

      # Define a rule for synthesizing tasks.
      def create_rule(*args, &block)
        Rake.application.create_rule(*args, &block)
      end

      # Apply the scope to the task name according to the rules for
      # this kind of task.  Generic tasks will accept the scope as
      # part of the name.
      def scope_name(scope, task_name)
        scope.path_with_task_name(task_name)
      end

    end # class << Rake::Task
  end # class Rake::Task
end
PKCH[�lD��2share/gems/gems/rake-13.0.1/lib/rake/name_space.rbnu�[���# frozen_string_literal: true
##
# The NameSpace class will lookup task names in the scope defined by a
# +namespace+ command.

class Rake::NameSpace

  ##
  # Create a namespace lookup object using the given task manager
  # and the list of scopes.

  def initialize(task_manager, scope_list)
    @task_manager = task_manager
    @scope = scope_list.dup
  end

  ##
  # Lookup a task named +name+ in the namespace.

  def [](name)
    @task_manager.lookup(name, @scope)
  end

  ##
  # The scope of the namespace (a LinkedList)

  def scope
    @scope.dup
  end

  ##
  # Return the list of tasks defined in this and nested namespaces.

  def tasks
    @task_manager.tasks_in_scope(@scope)
  end

end
PKCH[����Bshare/gems/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rbnu�[���# frozen_string_literal: true
module Rake
  module InvocationExceptionMixin
    # Return the invocation chain (list of Rake tasks) that were in
    # effect when this exception was detected by rake.  May be null if
    # no tasks were active.
    def chain
      @rake_invocation_chain ||= nil
    end

    # Set the invocation chain in effect when this exception was
    # detected.
    def chain=(value)
      @rake_invocation_chain = value
    end
  end
end
PKCH[)lq(3share/gems/gems/rake-13.0.1/lib/rake/packagetask.rbnu�[���# frozen_string_literal: true
# Define a package task library to aid in the definition of
# redistributable package files.

require "rake"
require "rake/tasklib"

module Rake

  # Create a packaging task that will package the project into
  # distributable files (e.g zip archive or tar files).
  #
  # The PackageTask will create the following targets:
  #
  # +:package+ ::
  #   Create all the requested package files.
  #
  # +:clobber_package+ ::
  #   Delete all the package files.  This target is automatically
  #   added to the main clobber target.
  #
  # +:repackage+ ::
  #   Rebuild the package files from scratch, even if they are not out
  #   of date.
  #
  # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tgz"</tt> ::
  #   Create a gzipped tar package (if <em>need_tar</em> is true).
  #
  # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.gz"</tt> ::
  #   Create a gzipped tar package (if <em>need_tar_gz</em> is true).
  #
  # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.bz2"</tt> ::
  #   Create a bzip2'd tar package (if <em>need_tar_bz2</em> is true).
  #
  # <tt>"<em>package_dir</em>/<em>name</em>-<em>version</em>.zip"</tt> ::
  #   Create a zip package archive (if <em>need_zip</em> is true).
  #
  # Example:
  #
  #   Rake::PackageTask.new("rake", "1.2.3") do |p|
  #     p.need_tar = true
  #     p.package_files.include("lib/**/*.rb")
  #   end
  #
  class PackageTask < TaskLib
    # Name of the package (from the GEM Spec).
    attr_accessor :name

    # Version of the package (e.g. '1.3.2').
    attr_accessor :version

    # Directory used to store the package files (default is 'pkg').
    attr_accessor :package_dir

    # True if a gzipped tar file (tgz) should be produced (default is
    # false).
    attr_accessor :need_tar

    # True if a gzipped tar file (tar.gz) should be produced (default
    # is false).
    attr_accessor :need_tar_gz

    # True if a bzip2'd tar file (tar.bz2) should be produced (default
    # is false).
    attr_accessor :need_tar_bz2

    # True if a xz'd tar file (tar.xz) should be produced (default is false)
    attr_accessor :need_tar_xz

    # True if a zip file should be produced (default is false)
    attr_accessor :need_zip

    # List of files to be included in the package.
    attr_accessor :package_files

    # Tar command for gzipped or bzip2ed archives.  The default is 'tar'.
    attr_accessor :tar_command

    # Zip command for zipped archives.  The default is 'zip'.
    attr_accessor :zip_command

    # True if parent directory should be omited (default is false)
    attr_accessor :without_parent_dir

    # Create a Package Task with the given name and version.  Use +:noversion+
    # as the version to build a package without a version or to provide a
    # fully-versioned package name.

    def initialize(name=nil, version=nil)
      init(name, version)
      yield self if block_given?
      define unless name.nil?
    end

    # Initialization that bypasses the "yield self" and "define" step.
    def init(name, version)
      @name = name
      @version = version
      @package_files = Rake::FileList.new
      @package_dir = "pkg"
      @need_tar = false
      @need_tar_gz = false
      @need_tar_bz2 = false
      @need_tar_xz = false
      @need_zip = false
      @tar_command = "tar"
      @zip_command = "zip"
      @without_parent_dir = false
    end

    # Create the tasks defined by this task library.
    def define
      fail "Version required (or :noversion)" if @version.nil?
      @version = nil if :noversion == @version

      desc "Build all the packages"
      task :package

      desc "Force a rebuild of the package files"
      task repackage: [:clobber_package, :package]

      desc "Remove package products"
      task :clobber_package do
        rm_r package_dir rescue nil
      end

      task clobber: [:clobber_package]

      [
        [need_tar, tgz_file, "z"],
        [need_tar_gz, tar_gz_file, "z"],
        [need_tar_bz2, tar_bz2_file, "j"],
        [need_tar_xz, tar_xz_file, "J"]
      ].each do |need, file, flag|
        if need
          task package: ["#{package_dir}/#{file}"]
          file "#{package_dir}/#{file}" =>
            [package_dir_path] + package_files do
            chdir(working_dir) { sh @tar_command, "#{flag}cvf", file, target_dir }
            mv "#{package_dir_path}/#{target_dir}", package_dir if without_parent_dir
          end
        end
      end

      if need_zip
        task package: ["#{package_dir}/#{zip_file}"]
        file "#{package_dir}/#{zip_file}" =>
          [package_dir_path] + package_files do
          chdir(working_dir) { sh @zip_command, "-r", zip_file, target_dir }
          mv "#{package_dir_path}/#{zip_file}", package_dir if without_parent_dir
        end
      end

      directory package_dir_path => @package_files do
        @package_files.each do |fn|
          f = File.join(package_dir_path, fn)
          fdir = File.dirname(f)
          mkdir_p(fdir) unless File.exist?(fdir)
          if File.directory?(fn)
            mkdir_p(f)
          else
            rm_f f
            safe_ln(fn, f)
          end
        end
      end
      self
    end

    # The name of this package

    def package_name
      @version ? "#{@name}-#{@version}" : @name
    end

    # The directory this package will be built in

    def package_dir_path
      "#{package_dir}/#{package_name}"
    end

    # The package name with .tgz added

    def tgz_file
      "#{package_name}.tgz"
    end

    # The package name with .tar.gz added

    def tar_gz_file
      "#{package_name}.tar.gz"
    end

    # The package name with .tar.bz2 added

    def tar_bz2_file
      "#{package_name}.tar.bz2"
    end

    # The package name with .tar.xz added

    def tar_xz_file
      "#{package_name}.tar.xz"
    end

    # The package name with .zip added

    def zip_file
      "#{package_name}.zip"
    end

    def working_dir
      without_parent_dir ? package_dir_path : package_dir
    end

    # target directory relative to working_dir
    def target_dir
      without_parent_dir ? "." : package_name
    end
  end

end
PKCH[4T�c��3share/gems/gems/rake-13.0.1/lib/rake/thread_pool.rbnu�[���# frozen_string_literal: true
require "set"

require "rake/promise"

module Rake

  class ThreadPool # :nodoc: all

    # Creates a ThreadPool object.  The +thread_count+ parameter is the size
    # of the pool.
    def initialize(thread_count)
      @max_active_threads = [thread_count, 0].max
      @threads = Set.new
      @threads_mon = Monitor.new
      @queue = Queue.new
      @join_cond = @threads_mon.new_cond

      @history_start_time = nil
      @history = []
      @history_mon = Monitor.new
      @total_threads_in_play = 0
    end

    # Creates a future executed by the +ThreadPool+.
    #
    # The args are passed to the block when executing (similarly to
    # Thread#new) The return value is an object representing
    # a future which has been created and added to the queue in the
    # pool. Sending #value to the object will sleep the
    # current thread until the future is finished and will return the
    # result (or raise an exception thrown from the future)
    def future(*args, &block)
      promise = Promise.new(args, &block)
      promise.recorder = lambda { |*stats| stat(*stats) }

      @queue.enq promise
      stat :queued, item_id: promise.object_id
      start_thread
      promise
    end

    # Waits until the queue of futures is empty and all threads have exited.
    def join
      @threads_mon.synchronize do
        begin
          stat :joining
          @join_cond.wait unless @threads.empty?
          stat :joined
        rescue Exception => e
          stat :joined
          $stderr.puts e
          $stderr.print "Queue contains #{@queue.size} items. " +
            "Thread pool contains #{@threads.count} threads\n"
          $stderr.print "Current Thread #{Thread.current} status = " +
            "#{Thread.current.status}\n"
          $stderr.puts e.backtrace.join("\n")
          @threads.each do |t|
            $stderr.print "Thread #{t} status = #{t.status}\n"
            $stderr.puts t.backtrace.join("\n")
          end
          raise e
        end
      end
    end

    # Enable the gathering of history events.
    def gather_history          #:nodoc:
      @history_start_time = Time.now if @history_start_time.nil?
    end

    # Return a array of history events for the thread pool.
    #
    # History gathering must be enabled to be able to see the events
    # (see #gather_history). Best to call this when the job is
    # complete (i.e. after ThreadPool#join is called).
    def history                 # :nodoc:
      @history_mon.synchronize { @history.dup }.
        sort_by { |i| i[:time] }.
        each { |i| i[:time] -= @history_start_time }
    end

    # Return a hash of always collected statistics for the thread pool.
    def statistics              #  :nodoc:
      {
        total_threads_in_play: @total_threads_in_play,
        max_active_threads: @max_active_threads,
      }
    end

    private

    # processes one item on the queue. Returns true if there was an
    # item to process, false if there was no item
    def process_queue_item      #:nodoc:
      return false if @queue.empty?

      # Even though we just asked if the queue was empty, it
      # still could have had an item which by this statement
      # is now gone. For this reason we pass true to Queue#deq
      # because we will sleep indefinitely if it is empty.
      promise = @queue.deq(true)
      stat :dequeued, item_id: promise.object_id
      promise.work
      return true

    rescue ThreadError # this means the queue is empty
      false
    end

    def safe_thread_count
      @threads_mon.synchronize do
        @threads.count
      end
    end

    def start_thread # :nodoc:
      @threads_mon.synchronize do
        next unless @threads.count < @max_active_threads

        t = Thread.new do
          begin
            while safe_thread_count <= @max_active_threads
              break unless process_queue_item
            end
          ensure
            @threads_mon.synchronize do
              @threads.delete Thread.current
              stat :ended, thread_count: @threads.count
              @join_cond.broadcast if @threads.empty?
            end
          end
        end

        @threads << t
        stat(
          :spawned,
          new_thread: t.object_id,
          thread_count: @threads.count)
        @total_threads_in_play = @threads.count if
          @threads.count > @total_threads_in_play
      end
    end

    def stat(event, data=nil) # :nodoc:
      return if @history_start_time.nil?
      info = {
        event: event,
        data: data,
        time: Time.now,
        thread: Thread.current.object_id,
      }
      @history_mon.synchronize { @history << info }
    end

    # for testing only

    def __queue__ # :nodoc:
      @queue
    end
  end

end
PKCH[�j��-share/gems/gems/rake-13.0.1/lib/rake/win32.rbnu�[���# frozen_string_literal: true
require "rbconfig"

module Rake
  # Win 32 interface methods for Rake. Windows specific functionality
  # will be placed here to collect that knowledge in one spot.
  module Win32 # :nodoc: all

    # Error indicating a problem in locating the home directory on a
    # Win32 system.
    class Win32HomeError < RuntimeError
    end

    class << self
      # True if running on a windows system.
      def windows?
        RbConfig::CONFIG["host_os"] =~ %r!(msdos|mswin|djgpp|mingw|[Ww]indows)!
      end

      # The standard directory containing system wide rake files on
      # Win 32 systems. Try the following environment variables (in
      # order):
      #
      # * HOME
      # * HOMEDRIVE + HOMEPATH
      # * APPDATA
      # * USERPROFILE
      #
      # If the above are not defined, the return nil.
      def win32_system_dir #:nodoc:
        win32_shared_path = ENV["HOME"]
        if win32_shared_path.nil? && ENV["HOMEDRIVE"] && ENV["HOMEPATH"]
          win32_shared_path = ENV["HOMEDRIVE"] + ENV["HOMEPATH"]
        end

        win32_shared_path ||= ENV["APPDATA"]
        win32_shared_path ||= ENV["USERPROFILE"]
        raise Win32HomeError,
          "Unable to determine home path environment variable." if
            win32_shared_path.nil? or win32_shared_path.empty?
        normalize(File.join(win32_shared_path, "Rake"))
      end

      # Normalize a win32 path so that the slashes are all forward slashes.
      def normalize(path)
        path.gsub(/\\/, "/")
      end

    end
  end
end
PKCH[�����-share/gems/gems/rake-13.0.1/lib/rake/scope.rbnu�[���# frozen_string_literal: true
module Rake
  class Scope < LinkedList # :nodoc: all

    # Path for the scope.
    def path
      map(&:to_s).reverse.join(":")
    end

    # Path for the scope + the named path.
    def path_with_task_name(task_name)
      "#{path}:#{task_name}"
    end

    # Trim +n+ innermost scope levels from the scope. In no case will
    # this trim beyond the toplevel scope.
    def trim(n)
      result = self
      while n > 0 && !result.empty?
        result = result.tail
        n -= 1
      end
      result
    end

    # Scope lists always end with an EmptyScope object. See Null
    # Object Pattern)
    class EmptyScope < EmptyLinkedList
      @parent = Scope

      def path
        ""
      end

      def path_with_task_name(task_name)
        task_name
      end
    end

    # Singleton null object for an empty scope.
    EMPTY = EmptyScope.new
  end
end
PKCH[����8share/gems/gems/rake-13.0.1/lib/rake/rake_test_loader.rbnu�[���# frozen_string_literal: true
require "rake"

# Load the test files from the command line.
argv = ARGV.select do |argument|
  begin
    case argument
    when /^-/ then
      argument
    when /\*/ then
      FileList[argument].to_a.each do |file|
        require File.expand_path file
      end

      false
    else
      require File.expand_path argument

      false
    end
  rescue LoadError => e
    raise unless e.path
    abort "\nFile does not exist: #{e.path}\n\n"
  end
end

ARGV.replace argv
PKCH[�����1share/gems/gems/rake-13.0.1/lib/rake/cloneable.rbnu�[���# frozen_string_literal: true
module Rake
  ##
  # Mixin for creating easily cloned objects.

  module Cloneable # :nodoc:
    # The hook that is invoked by 'clone' and 'dup' methods.
    def initialize_copy(source)
      super
      source.instance_variables.each do |var|
        src_value  = source.instance_variable_get(var)
        value = src_value.clone rescue src_value
        instance_variable_set(var, value)
      end
    end
  end
end
PKCH[0Z�R��6share/gems/gems/rake-13.0.1/lib/rake/private_reader.rbnu�[���# frozen_string_literal: true
module Rake

  # Include PrivateReader to use +private_reader+.
  module PrivateReader           # :nodoc: all

    def self.included(base)
      base.extend(ClassMethods)
    end

    module ClassMethods

      # Declare a list of private accessors
      def private_reader(*names)
        attr_reader(*names)
        private(*names)
      end
    end

  end
end
PKCH[��s�ZZ6share/gems/gems/rake-13.0.1/lib/rake/file_utils_ext.rbnu�[���# frozen_string_literal: true
require "rake/file_utils"

module Rake
  #
  # FileUtilsExt provides a custom version of the FileUtils methods
  # that respond to the <tt>verbose</tt> and <tt>nowrite</tt>
  # commands.
  #
  module FileUtilsExt
    include FileUtils

    class << self
      attr_accessor :verbose_flag, :nowrite_flag
    end

    DEFAULT = Object.new

    FileUtilsExt.verbose_flag = DEFAULT
    FileUtilsExt.nowrite_flag = false

    FileUtils.commands.each do |name|
      opts = FileUtils.options_of name
      default_options = []
      if opts.include?("verbose")
        default_options << "verbose: FileUtilsExt.verbose_flag"
      end
      if opts.include?("noop")
        default_options << "noop: FileUtilsExt.nowrite_flag"
      end

      next if default_options.empty?
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
      def #{name}(*args, **options, &block)
        super(*args,
            #{default_options.join(', ')},
            **options, &block)
      end
      EOS
    end

    # Get/set the verbose flag controlling output from the FileUtils
    # utilities.  If verbose is true, then the utility method is
    # echoed to standard output.
    #
    # Examples:
    #    verbose              # return the current value of the
    #                         # verbose flag
    #    verbose(v)           # set the verbose flag to _v_.
    #    verbose(v) { code }  # Execute code with the verbose flag set
    #                         # temporarily to _v_.  Return to the
    #                         # original value when code is done.
    def verbose(value=nil)
      oldvalue = FileUtilsExt.verbose_flag
      FileUtilsExt.verbose_flag = value unless value.nil?
      if block_given?
        begin
          yield
        ensure
          FileUtilsExt.verbose_flag = oldvalue
        end
      end
      FileUtilsExt.verbose_flag
    end

    # Get/set the nowrite flag controlling output from the FileUtils
    # utilities.  If verbose is true, then the utility method is
    # echoed to standard output.
    #
    # Examples:
    #    nowrite              # return the current value of the
    #                         # nowrite flag
    #    nowrite(v)           # set the nowrite flag to _v_.
    #    nowrite(v) { code }  # Execute code with the nowrite flag set
    #                         # temporarily to _v_. Return to the
    #                         # original value when code is done.
    def nowrite(value=nil)
      oldvalue = FileUtilsExt.nowrite_flag
      FileUtilsExt.nowrite_flag = value unless value.nil?
      if block_given?
        begin
          yield
        ensure
          FileUtilsExt.nowrite_flag = oldvalue
        end
      end
      oldvalue
    end

    # Use this function to prevent potentially destructive ruby code
    # from running when the :nowrite flag is set.
    #
    # Example:
    #
    #   when_writing("Building Project") do
    #     project.build
    #   end
    #
    # The following code will build the project under normal
    # conditions. If the nowrite(true) flag is set, then the example
    # will print:
    #
    #      DRYRUN: Building Project
    #
    # instead of actually building the project.
    #
    def when_writing(msg=nil)
      if FileUtilsExt.nowrite_flag
        $stderr.puts "DRYRUN: #{msg}" if msg
      else
        yield
      end
    end

    # Send the message to the default rake output (which is $stderr).
    def rake_output_message(message)
      $stderr.puts(message)
    end

    # Check that the options do not contain options not listed in
    # +optdecl+.  An ArgumentError exception is thrown if non-declared
    # options are found.
    def rake_check_options(options, *optdecl)
      h = options.dup
      optdecl.each do |name|
        h.delete name
      end
      raise ArgumentError, "no such option: #{h.keys.join(' ')}" unless
        h.empty?
    end

    extend self
  end
end
PKCH[��K��5share/gems/gems/rake-13.0.1/lib/rake/pseudo_status.rbnu�[���# frozen_string_literal: true
module Rake

  ##
  # Exit status class for times the system just gives us a nil.
  class PseudoStatus # :nodoc: all
    attr_reader :exitstatus

    def initialize(code=0)
      @exitstatus = code
    end

    def to_i
      @exitstatus << 8
    end

    def >>(n)
      to_i >> n
    end

    def stopped?
      false
    end

    def exited?
      true
    end
  end

end
PKCH[���Q��3share/gems/gems/rake-13.0.1/lib/rake/rake_module.rbnu�[���# frozen_string_literal: true
require "rake/application"

module Rake

  class << self
    # Current Rake Application
    def application
      @application ||= Rake::Application.new
    end

    # Set the current Rake application object.
    def application=(app)
      @application = app
    end

    def suggested_thread_count # :nodoc:
      @cpu_count ||= Rake::CpuCounter.count
      @cpu_count + 4
    end

    # Return the original directory where the Rake application was started.
    def original_dir
      application.original_dir
    end

    # Load a rakefile.
    def load_rakefile(path)
      load(path)
    end

    # Add files to the rakelib list
    def add_rakelib(*files)
      application.options.rakelib ||= []
      application.options.rakelib.concat(files)
    end

    # Make +block_application+ the default rake application inside a block so
    # you can load rakefiles into a different application.
    #
    # This is useful when you want to run rake tasks inside a library without
    # running rake in a sub-shell.
    #
    # Example:
    #
    #   Dir.chdir 'other/directory'
    #
    #   other_rake = Rake.with_application do |rake|
    #     rake.load_rakefile
    #   end
    #
    #   puts other_rake.tasks

    def with_application(block_application = Rake::Application.new)
      orig_application = Rake.application

      Rake.application = block_application

      yield block_application

      block_application
    ensure
      Rake.application = orig_application
    end
  end

end
PKCH[Q��=rr'share/gems/gems/rake-13.0.1/lib/rake.rbnu�[���# frozen_string_literal: true
#--
# Copyright 2003-2010 by Jim Weirich (jim.weirich@gmail.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#++

module Rake; end

require "rake/version"

require "rbconfig"
require "fileutils"
require "singleton"
require "monitor"
require "optparse"
require "ostruct"

require "rake/ext/string"

require "rake/win32"

require "rake/linked_list"
require "rake/cpu_counter"
require "rake/scope"
require "rake/task_argument_error"
require "rake/rule_recursion_overflow_error"
require "rake/rake_module"
require "rake/trace_output"
require "rake/pseudo_status"
require "rake/task_arguments"
require "rake/invocation_chain"
require "rake/task"
require "rake/file_task"
require "rake/file_creation_task"
require "rake/multi_task"
require "rake/dsl_definition"
require "rake/file_utils_ext"
require "rake/file_list"
require "rake/default_loader"
require "rake/early_time"
require "rake/late_time"
require "rake/name_space"
require "rake/task_manager"
require "rake/application"
require "rake/backtrace"

$trace = false

# :stopdoc:
#
# Some top level Constants.

FileList = Rake::FileList
RakeFileUtils = Rake::FileUtilsExt
PKCH[VQO���$share/gems/gems/rake-13.0.1/Rakefilenu�[���# Rakefile for rake        -*- ruby -*-

# Copyright 2003, 2004, 2005 by Jim Weirich (jim@weirichhouse.org)
# All rights reserved.

# This file may be distributed under an MIT style license.  See
# MIT-LICENSE for details.

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

begin
  require "bundler/gem_tasks"
rescue LoadError
end

require "rake/testtask"
Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.verbose = true
  t.test_files = FileList["test/**/test_*.rb"]
end

require "rdoc/task"
RDoc::Task.new do |doc|
  doc.main   = "README.rdoc"
  doc.title  = "Rake -- Ruby Make"
  doc.rdoc_files = FileList.new %w[lib MIT-LICENSE doc/**/*.rdoc *.rdoc]
  doc.rdoc_dir = "html"
end

task ghpages: :rdoc do
  %x[git checkout gh-pages]
  require "fileutils"
  FileUtils.rm_rf "/tmp/html"
  FileUtils.mv "html", "/tmp"
  FileUtils.rm_rf "*"
  FileUtils.cp_r Dir.glob("/tmp/html/*"), "."
end

task default: :test
PKCH[W��'share/gems/gems/rake-13.0.1/MIT-LICENSEnu�[���Copyright (c) Jim Weirich

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

PKCH[�tz��,�,$share/gems/gems/rack-3.0.8/README.mdnu�[���# ![Rack](contrib/logo.webp)

> **_NOTE:_** Rack v3.0.0 was recently released. Please check the [Upgrade
> Guide](UPGRADE-GUIDE.md) for more details about migrating your existing
> servers, middlewares and applications. For detailed information on specific
> changes, check the [Change Log](CHANGELOG.md).

Rack provides a minimal, modular, and adaptable interface for developing web
applications in Ruby. By wrapping HTTP requests and responses in the simplest
way possible, it unifies and distills the bridge between web servers, web
frameworks, and web application into a single method call.

The exact details of this are described in the [Rack Specification], which all
Rack applications should conform to.

## Installation

Add the rack gem to your application bundle, or follow the instructions provided
by a [supported web framework](#supported-web-frameworks):

```bash
# Install it generally:
$ gem install rack --pre

# or, add it to your current application gemfile:
$ bundle add rack --version 3.0.0
```

If you need features from `Rack::Session` or `bin/rackup` please add those gems separately.

```bash
$ gem install rack-session rackup
```

## Usage

Create a file called `config.ru` with the following contents:

```ruby
run do |env|
  [200, {}, ["Hello World"]]
end
```

Run this using the rackup gem or another [supported web
server](#supported-web-servers).

```bash
$ gem install rackup
$ rackup
$ curl http://localhost:9292
Hello World
```

## Supported web servers

Rack is supported by a wide range of servers, including:

* [Agoo](https://github.com/ohler55/agoo)
* [Falcon](https://github.com/socketry/falcon) **(Rack 3 Compatible)**
* [Iodine](https://github.com/boazsegev/iodine)
* [NGINX Unit](https://unit.nginx.org/)
* [Phusion Passenger](https://www.phusionpassenger.com/) (which is mod_rack for
  Apache and for nginx)
* [Puma](https://puma.io/)
* [Thin](https://github.com/macournoyer/thin)
* [Unicorn](https://yhbt.net/unicorn/)
* [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/)
* [Lamby](https://lamby.custominktech.com) (for AWS Lambda)

You will need to consult the server documentation to find out what features and
limitations they may have. In general, any valid Rack app will run the same on
all these servers, without changing anything.

### Rackup

Rack provides a separate gem, [rackup](https://github.com/rack/rackup) which is
a generic interface for running a Rack application on supported servers, which
include `WEBRick`, `Puma`, `Falcon` and others.

## Supported web frameworks

These frameworks and many others support the [Rack Specification]:

* [Camping](https://github.com/camping/camping)
* [Hanami](https://hanamirb.org/)
* [Padrino](https://padrinorb.com/)
* [Roda](https://github.com/jeremyevans/roda) **(Rack 3 Compatible)**
* [Ruby on Rails](https://rubyonrails.org/)
* [Sinatra](https://sinatrarb.com/)
* [Utopia](https://github.com/socketry/utopia) **(Rack 3 Compatible)**
* [WABuR](https://github.com/ohler55/wabur)

### Older (possibly unsupported) web frameworks

* [Ramaze](http://ramaze.net/)
* [Rum](https://github.com/leahneukirchen/rum)

## Available middleware shipped with Rack

Between the server and the framework, Rack can be customized to your
applications needs using middleware. Rack itself ships with the following
middleware:

* `Rack::CommonLogger` for creating Apache-style logfiles.
* `Rack::ConditionalGet` for returning [Not
  Modified](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304)
  responses when the response has not changed.
* `Rack::Config` for modifying the environment before processing the request.
* `Rack::ContentLength` for setting a `content-length` header based on body
  size.
* `Rack::ContentType` for setting a default `content-type` header for responses.
* `Rack::Deflater` for compressing responses with gzip.
* `Rack::ETag` for setting `etag` header on bodies that can be buffered.
* `Rack::Events` for providing easy hooks when a request is received and when
  the response is sent.
* `Rack::Files` for serving static files.
* `Rack::Head` for returning an empty body for HEAD requests.
* `Rack::Lint` for checking conformance to the [Rack Specification].
* `Rack::Lock` for serializing requests using a mutex.
* `Rack::Logger` for setting a logger to handle logging errors.
* `Rack::MethodOverride` for modifying the request method based on a submitted
  parameter.
* `Rack::Recursive` for including data from other paths in the application, and
  for performing internal redirects.
* `Rack::Reloader` for reloading files if they have been modified.
* `Rack::Runtime` for including a response header with the time taken to process
  the request.
* `Rack::Sendfile` for working with web servers that can use optimized file
  serving for file system paths.
* `Rack::ShowException` for catching unhandled exceptions and presenting them in
  a nice and helpful way with clickable backtrace.
* `Rack::ShowStatus` for using nice error pages for empty client error
  responses.
* `Rack::Static` for more configurable serving of static files.
* `Rack::TempfileReaper` for removing temporary files creating during a request.

All these components use the same interface, which is described in detail in the
[Rack Specification]. These optional components can be used in any way you wish.

### Convenience interfaces

If you want to develop outside of existing frameworks, implement your own ones,
or develop middleware, Rack provides many helpers to create Rack applications
quickly and without doing the same web stuff all over:

* `Rack::Request` which also provides query string parsing and multipart
  handling.
* `Rack::Response` for convenient generation of HTTP replies and cookie
  handling.
* `Rack::MockRequest` and `Rack::MockResponse` for efficient and quick testing
  of Rack application without real HTTP round-trips.
* `Rack::Cascade` for trying additional Rack applications if an application
  returns a not found or method not supported response.
* `Rack::Directory` for serving files under a given directory, with directory
  indexes.
* `Rack::MediaType` for parsing content-type headers.
* `Rack::Mime` for determining content-type based on file extension.
* `Rack::RewindableInput` for making any IO object rewindable, using a temporary
  file buffer.
* `Rack::URLMap` to route to multiple applications inside the same process.

## Configuration

Rack exposes several configuration parameters to control various features of the
implementation.

### `param_depth_limit`

```ruby
Rack::Utils.param_depth_limit = 32 # default
```

The maximum amount of nesting allowed in parameters. For example, if set to 3,
this query string would be allowed:

```
?a[b][c]=d
```

but this query string would not be allowed:

```
?a[b][c][d]=e
```

Limiting the depth prevents a possible stack overflow when parsing parameters.

### `multipart_file_limit`

```ruby
Rack::Utils.multipart_file_limit = 128 # default
```

The maximum number of parts with a filename a request can contain. Accepting
too many parts can lead to the server running out of file handles.

The default is 128, which means that a single request can't upload more than 128
files at once. Set to 0 for no limit.

Can also be set via the `RACK_MULTIPART_FILE_LIMIT` environment variable.

(This is also aliased as `multipart_part_limit` and `RACK_MULTIPART_PART_LIMIT` for compatibility)


### `multipart_total_part_limit`

The maximum total number of parts a request can contain of any type, including
both file and non-file form fields.

The default is 4096, which means that a single request can't contain more than
4096 parts.

Set to 0 for no limit.

Can also be set via the `RACK_MULTIPART_TOTAL_PART_LIMIT` environment variable.


## Changelog

See [CHANGELOG.md](CHANGELOG.md).

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for specific details about how to make a
contribution to Rack.

Please post bugs, suggestions and patches to [GitHub
Issues](https://github.com/rack/rack/issues).

Please check our [Security Policy](https://github.com/rack/rack/security/policy)
for responsible disclosure and security bug reporting process. Due to wide usage
of the library, it is strongly preferred that we manage timing in order to
provide viable patches at the time of disclosure. Your assistance in this matter
is greatly appreciated.

## See Also

### `rack-contrib`

The plethora of useful middleware created the need for a project that collects
fresh Rack middleware. `rack-contrib` includes a variety of add-on components
for Rack and it is easy to contribute new modules.

* https://github.com/rack/rack-contrib

### `rack-session`

Provides convenient session management for Rack.

* https://github.com/rack/rack-session

## Thanks

The Rack Core Team, consisting of

* Aaron Patterson [tenderlove](https://github.com/tenderlove)
* Samuel Williams [ioquatix](https://github.com/ioquatix)
* Jeremy Evans [jeremyevans](https://github.com/jeremyevans)
* Eileen Uchitelle [eileencodes](https://github.com/eileencodes)
* Matthew Draper [matthewd](https://github.com/matthewd)
* Rafael França [rafaelfranca](https://github.com/rafaelfranca)

and the Rack Alumni

* Ryan Tomayko [rtomayko](https://github.com/rtomayko)
* Scytrin dai Kinthra [scytrin](https://github.com/scytrin)
* Leah Neukirchen [leahneukirchen](https://github.com/leahneukirchen)
* James Tucker [raggi](https://github.com/raggi)
* Josh Peek [josh](https://github.com/josh)
* José Valim [josevalim](https://github.com/josevalim)
* Michael Fellinger [manveru](https://github.com/manveru)
* Santiago Pastorino [spastorino](https://github.com/spastorino)
* Konstantin Haase [rkh](https://github.com/rkh)

would like to thank:

* Adrian Madrid, for the LiteSpeed handler.
* Christoffer Sawicki, for the first Rails adapter and `Rack::Deflater`.
* Tim Fletcher, for the HTTP authentication code.
* Luc Heinrich for the Cookie sessions, the static file handler and bugfixes.
* Armin Ronacher, for the logo and racktools.
* Alex Beregszaszi, Alexander Kahn, Anil Wadghule, Aredridel, Ben Alpert, Dan
  Kubb, Daniel Roethlisberger, Matt Todd, Tom Robinson, Phil Hagelberg, S. Brent
  Faulkner, Bosko Milekic, Daniel Rodríguez Troitiño, Genki Takiuchi, Geoffrey
  Grosenbach, Julien Sanchez, Kamal Fariz Mahyuddin, Masayoshi Takahashi,
  Patrick Aljordm, Mig, Kazuhiro Nishiyama, Jon Bardin, Konstantin Haase, Larry
  Siden, Matias Korhonen, Sam Ruby, Simon Chiang, Tim Connor, Timur Batyrshin,
  and Zach Brock for bug fixing and other improvements.
* Eric Wong, Hongli Lai, Jeremy Kemper for their continuous support and API
  improvements.
* Yehuda Katz and Carl Lerche for refactoring rackup.
* Brian Candler, for `Rack::ContentType`.
* Graham Batty, for improved handler loading.
* Stephen Bannasch, for bug reports and documentation.
* Gary Wright, for proposing a better `Rack::Response` interface.
* Jonathan Buch, for improvements regarding `Rack::Response`.
* Armin Röhrl, for tracking down bugs in the Cookie generator.
* Alexander Kellett for testing the Gem and reviewing the announcement.
* Marcus Rückert, for help with configuring and debugging lighttpd.
* The WSGI team for the well-done and documented work they've done and Rack
  builds up on.
* All bug reporters and patch contributors not mentioned above.

## License

Rack is released under the [MIT License](MIT-LICENSE).

[Rack Specification]: SPEC.rdoc
PKCH[���==$share/gems/gems/rack-3.0.8/SPEC.rdocnu�[���This specification aims to formalize the Rack protocol. You
can (and should) use Rack::Lint to enforce it.

When you develop middleware, be sure to add a Lint before and
after to catch all mistakes.

= Rack applications

A Rack application is a Ruby object (not a class) that
responds to +call+.
It takes exactly one argument, the *environment*
and returns a non-frozen Array of exactly three values:
The *status*,
the *headers*,
and the *body*.

== The Environment

The environment must be an unfrozen instance of Hash that includes
CGI-like headers. The Rack application is free to modify the
environment.

The environment is required to include these variables
(adopted from {PEP 333}[https://peps.python.org/pep-0333/]), except when they'd be empty, but see
below.
<tt>REQUEST_METHOD</tt>:: The HTTP request method, such as
                          "GET" or "POST". This cannot ever
                          be an empty string, and so is
                          always required.
<tt>SCRIPT_NAME</tt>:: The initial portion of the request
                       URL's "path" that corresponds to the
                       application object, so that the
                       application knows its virtual
                       "location". This may be an empty
                       string, if the application corresponds
                       to the "root" of the server.
<tt>PATH_INFO</tt>:: The remainder of the request URL's
                     "path", designating the virtual
                     "location" of the request's target
                     within the application. This may be an
                     empty string, if the request URL targets
                     the application root and does not have a
                     trailing slash. This value may be
                     percent-encoded when originating from
                     a URL.
<tt>QUERY_STRING</tt>:: The portion of the request URL that
                        follows the <tt>?</tt>, if any. May be
                        empty, but is always required!
<tt>SERVER_NAME</tt>:: When combined with <tt>SCRIPT_NAME</tt> and
                       <tt>PATH_INFO</tt>, these variables can be
                       used to complete the URL. Note, however,
                       that <tt>HTTP_HOST</tt>, if present,
                       should be used in preference to
                       <tt>SERVER_NAME</tt> for reconstructing
                       the request URL.
                       <tt>SERVER_NAME</tt> can never be an empty
                       string, and so is always required.
<tt>SERVER_PORT</tt>:: An optional +Integer+ which is the port the
                       server is running on. Should be specified if
                       the server is running on a non-standard port.
<tt>SERVER_PROTOCOL</tt>:: A string representing the HTTP version used
                           for the request.
<tt>HTTP_</tt> Variables:: Variables corresponding to the
                           client-supplied HTTP request
                           headers (i.e., variables whose
                           names begin with <tt>HTTP_</tt>). The
                           presence or absence of these
                           variables should correspond with
                           the presence or absence of the
                           appropriate HTTP header in the
                           request. See
                           {RFC3875 section 4.1.18}[https://tools.ietf.org/html/rfc3875#section-4.1.18]
                           for specific behavior.
In addition to this, the Rack environment must include these
Rack-specific variables:
<tt>rack.url_scheme</tt>:: +http+ or +https+, depending on the
                           request URL.
<tt>rack.input</tt>:: See below, the input stream.
<tt>rack.errors</tt>:: See below, the error stream.
<tt>rack.hijack?</tt>:: See below, if present and true, indicates
                        that the server supports partial hijacking.
<tt>rack.hijack</tt>:: See below, if present, an object responding
                       to +call+ that is used to perform a full
                       hijack.
Additional environment specifications have approved to
standardized middleware APIs. None of these are required to
be implemented by the server.
<tt>rack.session</tt>:: A hash-like interface for storing
                        request session data.
                        The store must implement:
                        store(key, value)         (aliased as []=);
                        fetch(key, default = nil) (aliased as []);
                        delete(key);
                        clear;
                        to_hash (returning unfrozen Hash instance);
<tt>rack.logger</tt>:: A common object interface for logging messages.
                       The object must implement:
                        info(message, &block)
                        debug(message, &block)
                        warn(message, &block)
                        error(message, &block)
                        fatal(message, &block)
<tt>rack.multipart.buffer_size</tt>:: An Integer hint to the multipart parser as to what chunk size to use for reads and writes.
<tt>rack.multipart.tempfile_factory</tt>:: An object responding to #call with two arguments, the filename and content_type given for the multipart form field, and returning an IO-like object that responds to #<< and optionally #rewind. This factory will be used to instantiate the tempfile for each multipart form file upload field, rather than the default class of Tempfile.
The server or the application can store their own data in the
environment, too.  The keys must contain at least one dot,
and should be prefixed uniquely.  The prefix <tt>rack.</tt>
is reserved for use with the Rack core distribution and other
accepted specifications and must not be used otherwise.

The <tt>SERVER_PORT</tt> must be an Integer if set.
The <tt>SERVER_NAME</tt> must be a valid authority as defined by RFC7540.
The <tt>HTTP_HOST</tt> must be a valid authority as defined by RFC7540.
The <tt>SERVER_PROTOCOL</tt> must match the regexp <tt>HTTP/\d(\.\d)?</tt>.
If the <tt>HTTP_VERSION</tt> is present, it must equal the <tt>SERVER_PROTOCOL</tt>.
The environment must not contain the keys
<tt>HTTP_CONTENT_TYPE</tt> or <tt>HTTP_CONTENT_LENGTH</tt>
(use the versions without <tt>HTTP_</tt>).
The CGI keys (named without a period) must have String values.
If the string values for CGI keys contain non-ASCII characters,
they should use ASCII-8BIT encoding.
There are the following restrictions:
* <tt>rack.url_scheme</tt> must either be +http+ or +https+.
* There must be a valid input stream in <tt>rack.input</tt>.
* There must be a valid error stream in <tt>rack.errors</tt>.
* There may be a valid hijack callback in <tt>rack.hijack</tt>
* The <tt>REQUEST_METHOD</tt> must be a valid token.
* The <tt>SCRIPT_NAME</tt>, if non-empty, must start with <tt>/</tt>
* The <tt>PATH_INFO</tt>, if non-empty, must start with <tt>/</tt>
* The <tt>CONTENT_LENGTH</tt>, if given, must consist of digits only.
* One of <tt>SCRIPT_NAME</tt> or <tt>PATH_INFO</tt> must be
  set. <tt>PATH_INFO</tt> should be <tt>/</tt> if
  <tt>SCRIPT_NAME</tt> is empty.
  <tt>SCRIPT_NAME</tt> never should be <tt>/</tt>, but instead be empty.
<tt>rack.response_finished</tt>:: An array of callables run by the server after the response has been
processed. This would typically be invoked after sending the response to the client, but it could also be
invoked if an error occurs while generating the response or sending the response; in that case, the error
argument will be a subclass of +Exception+.
The callables are invoked with +env, status, headers, error+ arguments and should not raise any
exceptions. They should be invoked in reverse order of registration.

=== The Input Stream

The input stream is an IO-like object which contains the raw HTTP
POST data.
When applicable, its external encoding must be "ASCII-8BIT" and it
must be opened in binary mode, for Ruby 1.9 compatibility.
The input stream must respond to +gets+, +each+, and +read+.
* +gets+ must be called without arguments and return a string,
  or +nil+ on EOF.
* +read+ behaves like IO#read.
  Its signature is <tt>read([length, [buffer]])</tt>.

  If given, +length+ must be a non-negative Integer (>= 0) or +nil+,
  and +buffer+ must be a String and may not be nil.

  If +length+ is given and not nil, then this method reads at most
  +length+ bytes from the input stream.

  If +length+ is not given or nil, then this method reads
  all data until EOF.

  When EOF is reached, this method returns nil if +length+ is given
  and not nil, or "" if +length+ is not given or is nil.

  If +buffer+ is given, then the read data will be placed
  into +buffer+ instead of a newly created String object.
* +each+ must be called without arguments and only yield Strings.
* +close+ can be called on the input stream to indicate that the
any remaining input is not needed.

=== The Error Stream

The error stream must respond to +puts+, +write+ and +flush+.
* +puts+ must be called with a single argument that responds to +to_s+.
* +write+ must be called with a single argument that is a String.
* +flush+ must be called without arguments and must be called
  in order to make the error appear for sure.
* +close+ must never be called on the error stream.

=== Hijacking

The hijacking interfaces provides a means for an application to take
control of the HTTP connection. There are two distinct hijack
interfaces: full hijacking where the application takes over the raw
connection, and partial hijacking where the application takes over
just the response body stream. In both cases, the application is
responsible for closing the hijacked stream.

Full hijacking only works with HTTP/1. Partial hijacking is functionally
equivalent to streaming bodies, and is still optionally supported for
backwards compatibility with older Rack versions.

==== Full Hijack

Full hijack is used to completely take over an HTTP/1 connection. It
occurs before any headers are written and causes the request to
ignores any response generated by the application.

It is intended to be used when applications need access to raw HTTP/1
connection.

If +rack.hijack+ is present in +env+, it must respond to +call+
and return an +IO+ instance which can be used to read and write
to the underlying connection using HTTP/1 semantics and
formatting.

==== Partial Hijack

Partial hijack is used for bi-directional streaming of the request and
response body. It occurs after the status and headers are written by
the server and causes the server to ignore the Body of the response.

It is intended to be used when applications need bi-directional
streaming.

If +rack.hijack?+ is present in +env+ and truthy,
an application may set the special response header +rack.hijack+
to an object that responds to +call+,
accepting a +stream+ argument.

After the response status and headers have been sent, this hijack
callback will be invoked with a +stream+ argument which follows the
same interface as outlined in "Streaming Body". Servers must
ignore the +body+ part of the response tuple when the
+rack.hijack+ response header is present. Using an empty +Array+
instance is recommended.

The special response header +rack.hijack+ must only be set
if the request +env+ has a truthy +rack.hijack?+.
== The Response

=== The Status

This is an HTTP status. It must be an Integer greater than or equal to
100.

=== The Headers

The headers must be a unfrozen Hash.
The header keys must be Strings.
Special headers starting "rack." are for communicating with the
server, and must not be sent back to the client.
The header must not contain a +Status+ key.
Header keys must conform to RFC7230 token specification, i.e. cannot
contain non-printable ASCII, DQUOTE or "(),/:;<=>?@[\]{}".
Header keys must not contain uppercase ASCII characters (A-Z).
Header values must be either a String instance,
or an Array of String instances,
such that each String instance must not contain characters below 037.

=== The content-type

There must not be a <tt>content-type</tt> header key when the +Status+ is 1xx,
204, or 304.

=== The content-length

There must not be a <tt>content-length</tt> header key when the
+Status+ is 1xx, 204, or 304.

=== The Body

The Body is typically an +Array+ of +String+ instances, an enumerable
that yields +String+ instances, a +Proc+ instance, or a File-like
object.

The Body must respond to +each+ or +call+. It may optionally respond
to +to_path+ or +to_ary+. A Body that responds to +each+ is considered
to be an Enumerable Body. A Body that responds to +call+ is considered
to be a Streaming Body.

A Body that responds to both +each+ and +call+ must be treated as an
Enumerable Body, not a Streaming Body. If it responds to +each+, you
must call +each+ and not +call+. If the Body doesn't respond to
+each+, then you can assume it responds to +call+.

The Body must either be consumed or returned. The Body is consumed by
optionally calling either +each+ or +call+.
Then, if the Body responds to +close+, it must be called to release
any resources associated with the generation of the body.
In other words, +close+ must always be called at least once; typically
after the web server has sent the response to the client, but also in
cases where the Rack application makes internal/virtual requests and
discards the response.


After calling +close+, the Body is considered closed and should not
be consumed again.
If the original Body is replaced by a new Body, the new Body must
also consume the original Body by calling +close+ if possible.

If the Body responds to +to_path+, it must return a +String+
path for the local file system whose contents are identical
to that produced by calling +each+; this may be used by the
server as an alternative, possibly more efficient way to
transport the response. The +to_path+ method does not consume
the body.

==== Enumerable Body

The Enumerable Body must respond to +each+.
It must only be called once.
It must not be called after being closed.
and must only yield String values.

The Body itself should not be an instance of String, as this will
break in Ruby 1.9.

Middleware must not call +each+ directly on the Body.
Instead, middleware can return a new Body that calls +each+ on the
original Body, yielding at least once per iteration.

If the Body responds to +to_ary+, it must return an +Array+ whose
contents are identical to that produced by calling +each+.
Middleware may call +to_ary+ directly on the Body and return a new
Body in its place. In other words, middleware can only process the
Body directly if it responds to +to_ary+. If the Body responds to both
+to_ary+ and +close+, its implementation of +to_ary+ must call
+close+.

==== Streaming Body

The Streaming Body must respond to +call+.
It must only be called once.
It must not be called after being closed.
It takes a +stream+ argument.

The +stream+ argument must implement:
<tt>read, write, <<, flush, close, close_read, close_write, closed?</tt>

The semantics of these IO methods must be a best effort match to
those of a normal Ruby IO or Socket object, using standard arguments
and raising standard exceptions. Servers are encouraged to simply
pass on real IO objects, although it is recognized that this approach
is not directly compatible with HTTP/2.

== Thanks
Some parts of this specification are adopted from {PEP 333 – Python Web Server Gateway Interface v1.0}[https://peps.python.org/pep-0333/]
I'd like to thank everyone involved in that effort.
PKCH[��_***share/gems/gems/rack-3.0.8/CONTRIBUTING.mdnu�[���# Contributing to Rack

Rack is work of [hundreds of
contributors](https://github.com/rack/rack/graphs/contributors). You're
encouraged to submit [pull requests](https://github.com/rack/rack/pulls) and
[propose features and discuss issues](https://github.com/rack/rack/issues).

## Fork the Project

Fork the [project on GitHub](https://github.com/rack/rack) and check out your
copy.

```
git clone https://github.com/(your-github-username)/rack.git
cd rack
git remote add upstream https://github.com/rack/rack.git
```

## Create a Topic Branch

Make sure your fork is up-to-date and create a topic branch for your feature or
bug fix.

```
git checkout main
git pull upstream main
git checkout -b my-feature-branch
```

## Bundle Install and Quick Test

Ensure that you can build the project and run quick tests.

```
bundle install --without extra
bundle exec rake test
```

## Running All Tests

Install all dependencies.

```
bundle install
```

Run all tests.

```
rake test
```

## Write Tests

Try to write a test that reproduces the problem you're trying to fix or
describes a feature that you want to build.

We definitely appreciate pull requests that highlight or reproduce a problem,
even without a fix.

## Write Code

Implement your feature or bug fix.

Make sure that all tests pass:

```
bundle exec rake test
```

## Write Documentation

Document any external behavior in the [README](README.md).

## Update Changelog

Add a line to [CHANGELOG](CHANGELOG.md).

## Commit Changes

Make sure git knows your name and email address:

```
git config --global user.name "Your Name"
git config --global user.email "contributor@example.com"
```

Writing good commit logs is important. A commit log should describe what changed
and why.

```
git add ...
git commit
```

## Push

```
git push origin my-feature-branch
```

## Make a Pull Request

Go to your fork of rack on GitHub and select your feature branch. Click the
'Pull Request' button and fill out the form. Pull requests are usually
reviewed within a few days.

## Rebase

If you've been working on a change for a while, rebase with upstream/main.

```
git fetch upstream
git rebase upstream/main
git push origin my-feature-branch -f
```

## Make Required Changes

Amend your previous commit and force push the changes.

```
git commit --amend
git push origin my-feature-branch -f
```

## Check on Your Pull Request

Go back to your pull request after a few minutes and see whether it passed
tests with GitHub Actions. Everything should look green, otherwise fix issues and
amend your commit as described above.

## Be Patient

It's likely that your change will not be merged and that the nitpicky
maintainers will ask you to do more, or fix seemingly benign problems. Hang in
there!

## Thank You

Please do know that we really appreciate and value your time and work. We love
you, really.
PKCH[�um�	�	&share/gems/gems/rack-3.0.8/lib/rack.rbnu�[���# frozen_string_literal: true

# Copyright (C) 2007-2019 Leah Neukirchen <http://leahneukirchen.org/infopage.html>
#
# Rack is freely distributable under the terms of an MIT-style license.
# See MIT-LICENSE or https://opensource.org/licenses/MIT.

# The Rack main module, serving as a namespace for all core Rack
# modules and classes.
#
# All modules meant for use in your application are <tt>autoload</tt>ed here,
# so it should be enough just to <tt>require 'rack'</tt> in your code.

require_relative 'rack/version'
require_relative 'rack/constants'

module Rack
  autoload :Builder, "rack/builder"
  autoload :BodyProxy, "rack/body_proxy"
  autoload :Cascade, "rack/cascade"
  autoload :Chunked, "rack/chunked"
  autoload :CommonLogger, "rack/common_logger"
  autoload :ConditionalGet, "rack/conditional_get"
  autoload :Config, "rack/config"
  autoload :ContentLength, "rack/content_length"
  autoload :ContentType, "rack/content_type"
  autoload :ETag, "rack/etag"
  autoload :Events, "rack/events"
  autoload :File, "rack/file"
  autoload :Files, "rack/files"
  autoload :Deflater, "rack/deflater"
  autoload :Directory, "rack/directory"
  autoload :ForwardRequest, "rack/recursive"
  autoload :Handler, "rack/handler"
  autoload :Head, "rack/head"
  autoload :Headers, "rack/headers"
  autoload :Lint, "rack/lint"
  autoload :Lock, "rack/lock"
  autoload :Logger, "rack/logger"
  autoload :MediaType, "rack/media_type"
  autoload :MethodOverride, "rack/method_override"
  autoload :Mime, "rack/mime"
  autoload :NullLogger, "rack/null_logger"
  autoload :QueryParser, "rack/query_parser"
  autoload :Recursive, "rack/recursive"
  autoload :Reloader, "rack/reloader"
  autoload :RewindableInput, "rack/rewindable_input"
  autoload :Runtime, "rack/runtime"
  autoload :Sendfile, "rack/sendfile"
  autoload :Server, "rack/server"
  autoload :ShowExceptions, "rack/show_exceptions"
  autoload :ShowStatus, "rack/show_status"
  autoload :Static, "rack/static"
  autoload :TempfileReaper, "rack/tempfile_reaper"
  autoload :URLMap, "rack/urlmap"
  autoload :Utils, "rack/utils"
  autoload :Multipart, "rack/multipart"

  autoload :MockRequest, "rack/mock_request"
  autoload :MockResponse, "rack/mock_response"

  autoload :Request, "rack/request"
  autoload :Response, "rack/response"

  module Auth
    autoload :Basic, "rack/auth/basic"
    autoload :AbstractRequest, "rack/auth/abstract/request"
    autoload :AbstractHandler, "rack/auth/abstract/handler"
    autoload :Digest, "rack/auth/digest"
  end
end
PKCH[�ʆ��6�66share/gems/gems/rack-3.0.8/lib/rack/show_exceptions.rbnu�[���# frozen_string_literal: true

require 'ostruct'
require 'erb'

require_relative 'constants'
require_relative 'utils'
require_relative 'request'

module Rack
  # Rack::ShowExceptions catches all exceptions raised from the app it
  # wraps.  It shows a useful backtrace with the sourcefile and
  # clickable context, the whole Rack environment and the request
  # data.
  #
  # Be careful when you use this on public-facing sites as it could
  # reveal information helpful to attackers.

  class ShowExceptions
    CONTEXT = 7

    def initialize(app)
      @app = app
    end

    def call(env)
      @app.call(env)
    rescue StandardError, LoadError, SyntaxError => e
      exception_string = dump_exception(e)

      env[RACK_ERRORS].puts(exception_string)
      env[RACK_ERRORS].flush

      if accepts_html?(env)
        content_type = "text/html"
        body = pretty(env, e)
      else
        content_type = "text/plain"
        body = exception_string
      end

      [
        500,
        {
          CONTENT_TYPE => content_type,
          CONTENT_LENGTH => body.bytesize.to_s,
        },
        [body],
      ]
    end

    def prefers_plaintext?(env)
      !accepts_html?(env)
    end

    def accepts_html?(env)
      Rack::Utils.best_q_match(env["HTTP_ACCEPT"], %w[text/html])
    end
    private :accepts_html?

    def dump_exception(exception)
      if exception.respond_to?(:detailed_message)
        message = exception.detailed_message(highlight: false)
      else
        message = exception.message
      end
      string = "#{exception.class}: #{message}\n".dup
      string << exception.backtrace.map { |l| "\t#{l}" }.join("\n")
      string
    end

    def pretty(env, exception)
      req = Rack::Request.new(env)

      # This double assignment is to prevent an "unused variable" warning.
      # Yes, it is dumb, but I don't like Ruby yelling at me.
      path = path = (req.script_name + req.path_info).squeeze("/")

      # This double assignment is to prevent an "unused variable" warning.
      # Yes, it is dumb, but I don't like Ruby yelling at me.
      frames = frames = exception.backtrace.map { |line|
        frame = OpenStruct.new
        if line =~ /(.*?):(\d+)(:in `(.*)')?/
          frame.filename = $1
          frame.lineno = $2.to_i
          frame.function = $4

          begin
            lineno = frame.lineno - 1
            lines = ::File.readlines(frame.filename)
            frame.pre_context_lineno = [lineno - CONTEXT, 0].max
            frame.pre_context = lines[frame.pre_context_lineno...lineno]
            frame.context_line = lines[lineno].chomp
            frame.post_context_lineno = [lineno + CONTEXT, lines.size].min
            frame.post_context = lines[lineno + 1..frame.post_context_lineno]
          rescue
          end

          frame
        else
          nil
        end
      }.compact

      template.result(binding)
    end

    def template
      TEMPLATE
    end

    def h(obj)                  # :nodoc:
      case obj
      when String
        Utils.escape_html(obj)
      else
        Utils.escape_html(obj.inspect)
      end
    end

    # :stopdoc:

    # adapted from Django <www.djangoproject.com>
    # Copyright (c) Django Software Foundation and individual contributors.
    # Used under the modified BSD license:
    # http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5
    TEMPLATE = ERB.new(<<-'HTML'.gsub(/^      /, ''))
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
      <html lang="en">
      <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <meta name="robots" content="NONE,NOARCHIVE" />
        <title><%=h exception.class %> at <%=h path %></title>
        <style type="text/css">
          html * { padding:0; margin:0; }
          body * { padding:10px 20px; }
          body * * { padding:0; }
          body { font:small sans-serif; }
          body>div { border-bottom:1px solid #ddd; }
          h1 { font-weight:normal; }
          h2 { margin-bottom:.8em; }
          h2 span { font-size:80%; color:#666; font-weight:normal; }
          h3 { margin:1em 0 .5em 0; }
          h4 { margin:0 0 .5em 0; font-weight: normal; }
          table {
              border:1px solid #ccc; border-collapse: collapse; background:white; }
          tbody td, tbody th { vertical-align:top; padding:2px 3px; }
          thead th {
              padding:1px 6px 1px 3px; background:#fefefe; text-align:left;
              font-weight:normal; font-size:11px; border:1px solid #ddd; }
          tbody th { text-align:right; color:#666; padding-right:.5em; }
          table.vars { margin:5px 0 2px 40px; }
          table.vars td, table.req td { font-family:monospace; }
          table td.code { width:100%;}
          table td.code div { overflow:hidden; }
          table.source th { color:#666; }
          table.source td {
              font-family:monospace; white-space:pre; border-bottom:1px solid #eee; }
          ul.traceback { list-style-type:none; }
          ul.traceback li.frame { margin-bottom:1em; }
          div.context { margin: 10px 0; }
          div.context ol {
              padding-left:30px; margin:0 10px; list-style-position: inside; }
          div.context ol li {
              font-family:monospace; white-space:pre; color:#666; cursor:pointer; }
          div.context ol.context-line li { color:black; background-color:#ccc; }
          div.context ol.context-line li span { float: right; }
          div.commands { margin-left: 40px; }
          div.commands a { color:black; text-decoration:none; }
          #summary { background: #ffc; }
          #summary h2 { font-family: monospace; font-weight: normal; color: #666; white-space: pre-wrap; }
          #summary ul#quicklinks { list-style-type: none; margin-bottom: 2em; }
          #summary ul#quicklinks li { float: left; padding: 0 1em; }
          #summary ul#quicklinks>li+li { border-left: 1px #666 solid; }
          #explanation { background:#eee; }
          #template, #template-not-exist { background:#f6f6f6; }
          #template-not-exist ul { margin: 0 0 0 20px; }
          #traceback { background:#eee; }
          #requestinfo { background:#f6f6f6; padding-left:120px; }
          #summary table { border:none; background:transparent; }
          #requestinfo h2, #requestinfo h3 { position:relative; margin-left:-100px; }
          #requestinfo h3 { margin-bottom:-1em; }
          .error { background: #ffc; }
          .specific { color:#cc3300; font-weight:bold; }
        </style>
        <script type="text/javascript">
        //<!--
          function getElementsByClassName(oElm, strTagName, strClassName){
              // Written by Jonathan Snook, http://www.snook.ca/jon;
              // Add-ons by Robert Nyman, http://www.robertnyman.com
              var arrElements = (strTagName == "*" && document.all)? document.all :
              oElm.getElementsByTagName(strTagName);
              var arrReturnElements = new Array();
              strClassName = strClassName.replace(/\-/g, "\\-");
              var oRegExp = new RegExp("(^|\\s)" + strClassName + "(\\s|$$)");
              var oElement;
              for(var i=0; i<arrElements.length; i++){
                  oElement = arrElements[i];
                  if(oRegExp.test(oElement.className)){
                      arrReturnElements.push(oElement);
                  }
              }
              return (arrReturnElements)
          }
          function hideAll(elems) {
            for (var e = 0; e < elems.length; e++) {
              elems[e].style.display = 'none';
            }
          }
          window.onload = function() {
            hideAll(getElementsByClassName(document, 'table', 'vars'));
            hideAll(getElementsByClassName(document, 'ol', 'pre-context'));
            hideAll(getElementsByClassName(document, 'ol', 'post-context'));
          }
          function toggle() {
            for (var i = 0; i < arguments.length; i++) {
              var e = document.getElementById(arguments[i]);
              if (e) {
                e.style.display = e.style.display == 'none' ? 'block' : 'none';
              }
            }
            return false;
          }
          function varToggle(link, id) {
            toggle('v' + id);
            var s = link.getElementsByTagName('span')[0];
            var uarr = String.fromCharCode(0x25b6);
            var darr = String.fromCharCode(0x25bc);
            s.innerHTML = s.innerHTML == uarr ? darr : uarr;
            return false;
          }
          //-->
        </script>
      </head>
      <body>

      <div id="summary">
        <h1><%=h exception.class %> at <%=h path %></h1>
      <% if exception.respond_to?(:detailed_message) %>
        <h2><%=h exception.detailed_message(highlight: false) %></h2>
      <% else %>
        <h2><%=h exception.message %></h2>
      <% end %>
        <table><tr>
          <th>Ruby</th>
          <td>
      <% if first = frames.first %>
            <code><%=h first.filename %></code>: in <code><%=h first.function %></code>, line <%=h frames.first.lineno %>
      <% else %>
            unknown location
      <% end %>
          </td>
        </tr><tr>
          <th>Web</th>
          <td><code><%=h req.request_method %> <%=h(req.host + path)%></code></td>
        </tr></table>

        <h3>Jump to:</h3>
        <ul id="quicklinks">
          <li><a href="#get-info">GET</a></li>
          <li><a href="#post-info">POST</a></li>
          <li><a href="#cookie-info">Cookies</a></li>
          <li><a href="#env-info">ENV</a></li>
        </ul>
      </div>

      <div id="traceback">
        <h2>Traceback <span>(innermost first)</span></h2>
        <ul class="traceback">
      <% frames.each { |frame| %>
            <li class="frame">
              <code><%=h frame.filename %></code>: in <code><%=h frame.function %></code>

                <% if frame.context_line %>
                <div class="context" id="c<%=h frame.object_id %>">
                    <% if frame.pre_context %>
                    <ol start="<%=h frame.pre_context_lineno+1 %>" class="pre-context" id="pre<%=h frame.object_id %>">
                      <% frame.pre_context.each { |line| %>
                      <li onclick="toggle('pre<%=h frame.object_id %>', 'post<%=h frame.object_id %>')"><%=h line %></li>
                      <% } %>
                    </ol>
                    <% end %>

                  <ol start="<%=h frame.lineno %>" class="context-line">
                    <li onclick="toggle('pre<%=h frame.object_id %>', 'post<%=h frame.object_id %>')"><%=h frame.context_line %><span>...</span></li></ol>

                    <% if frame.post_context %>
                    <ol start='<%=h frame.lineno+1 %>' class="post-context" id="post<%=h frame.object_id %>">
                      <% frame.post_context.each { |line| %>
                      <li onclick="toggle('pre<%=h frame.object_id %>', 'post<%=h frame.object_id %>')"><%=h line %></li>
                      <% } %>
                    </ol>
                    <% end %>
                </div>
                <% end %>
            </li>
      <% } %>
        </ul>
      </div>

      <div id="requestinfo">
        <h2>Request information</h2>

        <h3 id="get-info">GET</h3>
        <% if req.GET and not req.GET.empty? %>
          <table class="req">
            <thead>
              <tr>
                <th>Variable</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
                <% req.GET.sort_by { |k, v| k.to_s }.each { |key, val| %>
                <tr>
                  <td><%=h key %></td>
                  <td class="code"><div><%=h val.inspect %></div></td>
                </tr>
                <% } %>
            </tbody>
          </table>
        <% else %>
          <p>No GET data.</p>
        <% end %>

        <h3 id="post-info">POST</h3>
        <% if ((req.POST and not req.POST.empty?) rescue (no_post_data = "Invalid POST data"; nil)) %>
          <table class="req">
            <thead>
              <tr>
                <th>Variable</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
                <% req.POST.sort_by { |k, v| k.to_s }.each { |key, val| %>
                <tr>
                  <td><%=h key %></td>
                  <td class="code"><div><%=h val.inspect %></div></td>
                </tr>
                <% } %>
            </tbody>
          </table>
        <% else %>
          <p><%= no_post_data || "No POST data" %>.</p>
        <% end %>


        <h3 id="cookie-info">COOKIES</h3>
        <% unless req.cookies.empty? %>
          <table class="req">
            <thead>
              <tr>
                <th>Variable</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
              <% req.cookies.each { |key, val| %>
                <tr>
                  <td><%=h key %></td>
                  <td class="code"><div><%=h val.inspect %></div></td>
                </tr>
              <% } %>
            </tbody>
          </table>
        <% else %>
          <p>No cookie data.</p>
        <% end %>

        <h3 id="env-info">Rack ENV</h3>
          <table class="req">
            <thead>
              <tr>
                <th>Variable</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
                <% env.sort_by { |k, v| k.to_s }.each { |key, val| %>
                <tr>
                  <td><%=h key %></td>
                  <td class="code"><div><%=h val.inspect %></div></td>
                </tr>
                <% } %>
            </tbody>
          </table>

      </div>

      <div id="explanation">
        <p>
          You're seeing this error because you use <code>Rack::ShowExceptions</code>.
        </p>
      </div>

      </body>
      </html>
    HTML

    # :startdoc:
  end
end
PKCH[�d�P��-share/gems/gems/rack-3.0.8/lib/rack/logger.rbnu�[���# frozen_string_literal: true

require 'logger'

require_relative 'constants'

module Rack
  # Sets up rack.logger to write to rack.errors stream
  class Logger
    def initialize(app, level = ::Logger::INFO)
      @app, @level = app, level
    end

    def call(env)
      logger = ::Logger.new(env[RACK_ERRORS])
      logger.level = @level

      env[RACK_LOGGER] = logger
      @app.call(env)
    end
  end
end
PKCH[K�bx/share/gems/gems/rack-3.0.8/lib/rack/reloader.rbnu�[���# frozen_string_literal: true

# Copyright (C) 2009-2018 Michael Fellinger <m.fellinger@gmail.com>
# Rack::Reloader is subject to the terms of an MIT-style license.
# See MIT-LICENSE or https://opensource.org/licenses/MIT.

require 'pathname'

module Rack

  # High performant source reloader
  #
  # This class acts as Rack middleware.
  #
  # What makes it especially suited for use in a production environment is that
  # any file will only be checked once and there will only be made one system
  # call stat(2).
  #
  # Please note that this will not reload files in the background, it does so
  # only when actively called.
  #
  # It is performing a check/reload cycle at the start of every request, but
  # also respects a cool down time, during which nothing will be done.
  class Reloader
    def initialize(app, cooldown = 10, backend = Stat)
      @app = app
      @cooldown = cooldown
      @last = (Time.now - cooldown)
      @cache = {}
      @mtimes = {}
      @reload_mutex = Mutex.new

      extend backend
    end

    def call(env)
      if @cooldown and Time.now > @last + @cooldown
        if Thread.list.size > 1
          @reload_mutex.synchronize{ reload! }
        else
          reload!
        end

        @last = Time.now
      end

      @app.call(env)
    end

    def reload!(stderr = $stderr)
      rotation do |file, mtime|
        previous_mtime = @mtimes[file] ||= mtime
        safe_load(file, mtime, stderr) if mtime > previous_mtime
      end
    end

    # A safe Kernel::load, issuing the hooks depending on the results
    def safe_load(file, mtime, stderr = $stderr)
      load(file)
      stderr.puts "#{self.class}: reloaded `#{file}'"
      file
    rescue LoadError, SyntaxError => ex
      stderr.puts ex
    ensure
      @mtimes[file] = mtime
    end

    module Stat
      def rotation
        files = [$0, *$LOADED_FEATURES].uniq
        paths = ['./', *$LOAD_PATH].uniq

        files.map{|file|
          next if /\.(so|bundle)$/.match?(file) # cannot reload compiled files

          found, stat = figure_path(file, paths)
          next unless found && stat && mtime = stat.mtime

          @cache[file] = found

          yield(found, mtime)
        }.compact
      end

      # Takes a relative or absolute +file+ name, a couple possible +paths+ that
      # the +file+ might reside in. Returns the full path and File::Stat for the
      # path.
      def figure_path(file, paths)
        found = @cache[file]
        found = file if !found and Pathname.new(file).absolute?
        found, stat = safe_stat(found)
        return found, stat if found

        paths.find do |possible_path|
          path = ::File.join(possible_path, file)
          found, stat = safe_stat(path)
          return ::File.expand_path(found), stat if found
        end

        return false, false
      end

      def safe_stat(file)
        return unless file
        stat = ::File.stat(file)
        return file, stat if stat.file?
      rescue Errno::ENOENT, Errno::ENOTDIR, Errno::ESRCH
        @cache.delete(file) and false
      end
    end
  end
end
PKCH[��||��6share/gems/gems/rack-3.0.8/lib/rack/conditional_get.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'
require_relative 'body_proxy'

module Rack

  # Middleware that enables conditional GET using if-none-match and
  # if-modified-since. The application should set either or both of the
  # last-modified or etag response headers according to RFC 2616. When
  # either of the conditions is met, the response body is set to be zero
  # length and the response status is set to 304 Not Modified.
  #
  # Applications that defer response body generation until the body's each
  # message is received will avoid response body generation completely when
  # a conditional GET matches.
  #
  # Adapted from Michael Klishin's Merb implementation:
  # https://github.com/wycats/merb/blob/master/merb-core/lib/merb-core/rack/middleware/conditional_get.rb
  class ConditionalGet
    def initialize(app)
      @app = app
    end

    # Return empty 304 response if the response has not been
    # modified since the last request.
    def call(env)
      case env[REQUEST_METHOD]
      when "GET", "HEAD"
        status, headers, body = response = @app.call(env)

        if status == 200 && fresh?(env, headers)
          response[0] = 304
          headers.delete(CONTENT_TYPE)
          headers.delete(CONTENT_LENGTH)
          response[2] = Rack::BodyProxy.new([]) do
            body.close if body.respond_to?(:close)
          end
        end
        response
      else
        @app.call(env)
      end
    end

  private

    # Return whether the response has not been modified since the
    # last request.
    def fresh?(env, headers)
      # if-none-match has priority over if-modified-since per RFC 7232
      if none_match = env['HTTP_IF_NONE_MATCH']
        etag_matches?(none_match, headers)
      elsif (modified_since = env['HTTP_IF_MODIFIED_SINCE']) && (modified_since = to_rfc2822(modified_since))
        modified_since?(modified_since, headers)
      end
    end

    # Whether the etag response header matches the if-none-match request header.
    # If so, the request has not been modified.
    def etag_matches?(none_match, headers)
      headers[ETAG] == none_match
    end

    # Whether the last-modified response header matches the if-modified-since
    # request header.  If so, the request has not been modified.
    def modified_since?(modified_since, headers)
      last_modified = to_rfc2822(headers['last-modified']) and
        modified_since >= last_modified
    end

    # Return a Time object for the given string (which should be in RFC2822
    # format), or nil if the string cannot be parsed.
    def to_rfc2822(since)
      # shortest possible valid date is the obsolete: 1 Nov 97 09:55 A
      # anything shorter is invalid, this avoids exceptions for common cases
      # most common being the empty string
      if since && since.length >= 16
        # NOTE: there is no trivial way to write this in a non exception way
        #   _rfc2822 returns a hash but is not that usable
        Time.rfc2822(since) rescue nil
      end
    end
  end
end
PKCH[>�==+share/gems/gems/rack-3.0.8/lib/rack/lock.rbnu�[���# frozen_string_literal: true

require_relative 'body_proxy'

module Rack
  # Rack::Lock locks every request inside a mutex, so that every request
  # will effectively be executed synchronously.
  class Lock
    def initialize(app, mutex = Mutex.new)
      @app, @mutex = app, mutex
    end

    def call(env)
      @mutex.lock
      begin
        response = @app.call(env)
        returned = response << BodyProxy.new(response.pop) { unlock }
      ensure
        unlock unless returned
      end
    end

    private

    def unlock
      @mutex.unlock
    end
  end
end
PKCH[��44-share/gems/gems/rack-3.0.8/lib/rack/events.rbnu�[���# frozen_string_literal: true

require_relative 'body_proxy'
require_relative 'request'
require_relative 'response'

module Rack
  ### This middleware provides hooks to certain places in the request /
  # response lifecycle.  This is so that middleware that don't need to filter
  # the response data can safely leave it alone and not have to send messages
  # down the traditional "rack stack".
  #
  # The events are:
  #
  # * on_start(request, response)
  #
  #   This event is sent at the start of the request, before the next
  #   middleware in the chain is called.  This method is called with a request
  #   object, and a response object.  Right now, the response object is always
  #   nil, but in the future it may actually be a real response object.
  #
  # * on_commit(request, response)
  #
  #   The response has been committed.  The application has returned, but the
  #   response has not been sent to the webserver yet.  This method is always
  #   called with a request object and the response object.  The response
  #   object is constructed from the rack triple that the application returned.
  #   Changes may still be made to the response object at this point.
  #
  # * on_send(request, response)
  #
  #   The webserver has started iterating over the response body and presumably
  #   has started sending data over the wire. This method is always called with
  #   a request object and the response object.  The response object is
  #   constructed from the rack triple that the application returned.  Changes
  #   SHOULD NOT be made to the response object as the webserver has already
  #   started sending data.  Any mutations will likely result in an exception.
  #
  # * on_finish(request, response)
  #
  #   The webserver has closed the response, and all data has been written to
  #   the response socket.  The request and response object should both be
  #   read-only at this point.  The body MAY NOT be available on the response
  #   object as it may have been flushed to the socket.
  #
  # * on_error(request, response, error)
  #
  #   An exception has occurred in the application or an `on_commit` event.
  #   This method will get the request, the response (if available) and the
  #   exception that was raised.
  #
  # ## Order
  #
  # `on_start` is called on the handlers in the order that they were passed to
  # the constructor.  `on_commit`, on_send`, `on_finish`, and `on_error` are
  # called in the reverse order.  `on_finish` handlers are called inside an
  # `ensure` block, so they are guaranteed to be called even if something
  # raises an exception.  If something raises an exception in a `on_finish`
  # method, then nothing is guaranteed.

  class Events
    module Abstract
      def on_start(req, res)
      end

      def on_commit(req, res)
      end

      def on_send(req, res)
      end

      def on_finish(req, res)
      end

      def on_error(req, res, e)
      end
    end

    class EventedBodyProxy < Rack::BodyProxy # :nodoc:
      attr_reader :request, :response

      def initialize(body, request, response, handlers, &block)
        super(body, &block)
        @request  = request
        @response = response
        @handlers = handlers
      end

      def each
        @handlers.reverse_each { |handler| handler.on_send request, response }
        super
      end
    end

    class BufferedResponse < Rack::Response::Raw # :nodoc:
      attr_reader :body

      def initialize(status, headers, body)
        super(status, headers)
        @body = body
      end

      def to_a; [status, headers, body]; end
    end

    def initialize(app, handlers)
      @app      = app
      @handlers = handlers
    end

    def call(env)
      request = make_request env
      on_start request, nil

      begin
        status, headers, body = @app.call request.env
        response = make_response status, headers, body
        on_commit request, response
      rescue StandardError => e
        on_error request, response, e
        on_finish request, response
        raise
      end

      body = EventedBodyProxy.new(body, request, response, @handlers) do
        on_finish request, response
      end
      [response.status, response.headers, body]
    end

    private

    def on_error(request, response, e)
      @handlers.reverse_each { |handler| handler.on_error request, response, e }
    end

    def on_commit(request, response)
      @handlers.reverse_each { |handler| handler.on_commit request, response }
    end

    def on_start(request, response)
      @handlers.each { |handler| handler.on_start request, nil }
    end

    def on_finish(request, response)
      @handlers.reverse_each { |handler| handler.on_finish request, response }
    end

    def make_request(env)
      Rack::Request.new env
    end

    def make_response(status, headers, body)
      BufferedResponse.new status, headers, body
    end
  end
end
PKCH[��;�~~7share/gems/gems/rack-3.0.8/lib/rack/rewindable_input.rbnu�[���# -*- encoding: binary -*-
# frozen_string_literal: true

require 'tempfile'

require_relative 'constants'

module Rack
  # Class which can make any IO object rewindable, including non-rewindable ones. It does
  # this by buffering the data into a tempfile, which is rewindable.
  #
  # Don't forget to call #close when you're done. This frees up temporary resources that
  # RewindableInput uses, though it does *not* close the original IO object.
  class RewindableInput
    # Makes rack.input rewindable, for compatibility with applications and middleware
    # designed for earlier versions of Rack (where rack.input was required to be
    # rewindable).
    class Middleware
      def initialize(app)
        @app = app
      end

      def call(env)
        env[RACK_INPUT] = RewindableInput.new(env[RACK_INPUT])
        @app.call(env)
      end
    end

    def initialize(io)
      @io = io
      @rewindable_io = nil
      @unlinked = false
    end

    def gets
      make_rewindable unless @rewindable_io
      @rewindable_io.gets
    end

    def read(*args)
      make_rewindable unless @rewindable_io
      @rewindable_io.read(*args)
    end

    def each(&block)
      make_rewindable unless @rewindable_io
      @rewindable_io.each(&block)
    end

    def rewind
      make_rewindable unless @rewindable_io
      @rewindable_io.rewind
    end

    def size
      make_rewindable unless @rewindable_io
      @rewindable_io.size
    end

    # Closes this RewindableInput object without closing the originally
    # wrapped IO object. Cleans up any temporary resources that this RewindableInput
    # has created.
    #
    # This method may be called multiple times. It does nothing on subsequent calls.
    def close
      if @rewindable_io
        if @unlinked
          @rewindable_io.close
        else
          @rewindable_io.close!
        end
        @rewindable_io = nil
      end
    end

    private

    def make_rewindable
      # Buffer all data into a tempfile. Since this tempfile is private to this
      # RewindableInput object, we chmod it so that nobody else can read or write
      # it. On POSIX filesystems we also unlink the file so that it doesn't
      # even have a file entry on the filesystem anymore, though we can still
      # access it because we have the file handle open.
      @rewindable_io = Tempfile.new('RackRewindableInput')
      @rewindable_io.chmod(0000)
      @rewindable_io.set_encoding(Encoding::BINARY)
      @rewindable_io.binmode
      # :nocov:
      if filesystem_has_posix_semantics?
        raise 'Unlink failed. IO closed.' if @rewindable_io.closed?
        @unlinked = true
      end
      # :nocov:

      buffer = "".dup
      while @io.read(1024 * 4, buffer)
        entire_buffer_written_out = false
        while !entire_buffer_written_out
          written = @rewindable_io.write(buffer)
          entire_buffer_written_out = written == buffer.bytesize
          if !entire_buffer_written_out
            buffer.slice!(0 .. written - 1)
          end
        end
      end
      @rewindable_io.rewind
    end

    def filesystem_has_posix_semantics?
      RUBY_PLATFORM !~ /(mswin|mingw|cygwin|java)/
    end
  end
end
PKCH[�ю	��-share/gems/gems/rack-3.0.8/lib/rack/static.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'files'
require_relative 'mime'

module Rack

  # The Rack::Static middleware intercepts requests for static files
  # (javascript files, images, stylesheets, etc) based on the url prefixes or
  # route mappings passed in the options, and serves them using a Rack::Files
  # object. This allows a Rack stack to serve both static and dynamic content.
  #
  # Examples:
  #
  # Serve all requests beginning with /media from the "media" folder located
  # in the current directory (ie media/*):
  #
  #     use Rack::Static, :urls => ["/media"]
  #
  # Same as previous, but instead of returning 404 for missing files under
  # /media, call the next middleware:
  #
  #     use Rack::Static, :urls => ["/media"], :cascade => true
  #
  # Serve all requests beginning with /css or /images from the folder "public"
  # in the current directory (ie public/css/* and public/images/*):
  #
  #     use Rack::Static, :urls => ["/css", "/images"], :root => "public"
  #
  # Serve all requests to / with "index.html" from the folder "public" in the
  # current directory (ie public/index.html):
  #
  #     use Rack::Static, :urls => {"/" => 'index.html'}, :root => 'public'
  #
  # Serve all requests normally from the folder "public" in the current
  # directory but uses index.html as default route for "/"
  #
  #     use Rack::Static, :urls => [""], :root => 'public', :index =>
  #     'index.html'
  #
  # Set custom HTTP Headers for based on rules:
  #
  #     use Rack::Static, :root => 'public',
  #         :header_rules => [
  #           [rule, {header_field => content, header_field => content}],
  #           [rule, {header_field => content}]
  #         ]
  #
  #  Rules for selecting files:
  #
  #  1) All files
  #     Provide the :all symbol
  #     :all => Matches every file
  #
  #  2) Folders
  #     Provide the folder path as a string
  #     '/folder' or '/folder/subfolder' => Matches files in a certain folder
  #
  #  3) File Extensions
  #     Provide the file extensions as an array
  #     ['css', 'js'] or %w(css js) => Matches files ending in .css or .js
  #
  #  4) Regular Expressions / Regexp
  #     Provide a regular expression
  #     %r{\.(?:css|js)\z} => Matches files ending in .css or .js
  #     /\.(?:eot|ttf|otf|woff2|woff|svg)\z/ => Matches files ending in
  #       the most common web font formats (.eot, .ttf, .otf, .woff2, .woff, .svg)
  #       Note: This Regexp is available as a shortcut, using the :fonts rule
  #
  #  5) Font Shortcut
  #     Provide the :fonts symbol
  #     :fonts => Uses the Regexp rule stated right above to match all common web font endings
  #
  #  Rule Ordering:
  #    Rules are applied in the order that they are provided.
  #    List rather general rules above special ones.
  #
  #  Complete example use case including HTTP header rules:
  #
  #     use Rack::Static, :root => 'public',
  #         :header_rules => [
  #           # Cache all static files in public caches (e.g. Rack::Cache)
  #           #  as well as in the browser
  #           [:all, {'cache-control' => 'public, max-age=31536000'}],
  #
  #           # Provide web fonts with cross-origin access-control-headers
  #           #  Firefox requires this when serving assets using a Content Delivery Network
  #           [:fonts, {'access-control-allow-origin' => '*'}]
  #         ]
  #
  class Static
    def initialize(app, options = {})
      @app = app
      @urls = options[:urls] || ["/favicon.ico"]
      @index = options[:index]
      @gzip = options[:gzip]
      @cascade = options[:cascade]
      root = options[:root] || Dir.pwd

      # HTTP Headers
      @header_rules = options[:header_rules] || []
      # Allow for legacy :cache_control option while prioritizing global header_rules setting
      @header_rules.unshift([:all, { CACHE_CONTROL => options[:cache_control] }]) if options[:cache_control]

      @file_server = Rack::Files.new(root)
    end

    def add_index_root?(path)
      @index && route_file(path) && path.end_with?('/')
    end

    def overwrite_file_path(path)
      @urls.kind_of?(Hash) && @urls.key?(path) || add_index_root?(path)
    end

    def route_file(path)
      @urls.kind_of?(Array) && @urls.any? { |url| path.index(url) == 0 }
    end

    def can_serve(path)
      route_file(path) || overwrite_file_path(path)
    end

    def call(env)
      path = env[PATH_INFO]

      if can_serve(path)
        if overwrite_file_path(path)
          env[PATH_INFO] = (add_index_root?(path) ? path + @index : @urls[path])
        elsif @gzip && env['HTTP_ACCEPT_ENCODING'] && /\bgzip\b/.match?(env['HTTP_ACCEPT_ENCODING'])
          path = env[PATH_INFO]
          env[PATH_INFO] += '.gz'
          response = @file_server.call(env)
          env[PATH_INFO] = path

          if response[0] == 404
            response = nil
          elsif response[0] == 304
            # Do nothing, leave headers as is
          else
            response[1][CONTENT_TYPE] = Mime.mime_type(::File.extname(path), 'text/plain')
            response[1]['content-encoding'] = 'gzip'
          end
        end

        path = env[PATH_INFO]
        response ||= @file_server.call(env)

        if @cascade && response[0] == 404
          return @app.call(env)
        end

        headers = response[1]
        applicable_rules(path).each do |rule, new_headers|
          new_headers.each { |field, content| headers[field] = content }
        end

        response
      else
        @app.call(env)
      end
    end

    # Convert HTTP header rules to HTTP headers
    def applicable_rules(path)
      @header_rules.find_all do |rule, new_headers|
        case rule
        when :all
          true
        when :fonts
          /\.(?:ttf|otf|eot|woff2|woff|svg)\z/.match?(path)
        when String
          path = ::Rack::Utils.unescape(path)
          path.start_with?(rule) || path.start_with?('/' + rule)
        when Array
          /\.(#{rule.join('|')})\z/.match?(path)
        when Regexp
          rule.match?(path)
        else
          false
        end
      end
    end

  end
end
PKCH[$����*�*/share/gems/gems/rack-3.0.8/lib/rack/response.rbnu�[���# frozen_string_literal: true

require 'time'

require_relative 'constants'
require_relative 'utils'
require_relative 'media_type'
require_relative 'headers'

module Rack
  # Rack::Response provides a convenient interface to create a Rack
  # response.
  #
  # It allows setting of headers and cookies, and provides useful
  # defaults (an OK response with empty headers and body).
  #
  # You can use Response#write to iteratively generate your response,
  # but note that this is buffered by Rack::Response until you call
  # +finish+.  +finish+ however can take a block inside which calls to
  # +write+ are synchronous with the Rack response.
  #
  # Your application's +call+ should end returning Response#finish.
  class Response
    def self.[](status, headers, body)
      self.new(body, status, headers)
    end

    CHUNKED = 'chunked'
    STATUS_WITH_NO_ENTITY_BODY = Utils::STATUS_WITH_NO_ENTITY_BODY

    attr_accessor :length, :status, :body
    attr_reader :headers

    # Deprecated, use headers instead.
    def header
      warn 'Rack::Response#header is deprecated and will be removed in Rack 3.1', uplevel: 1

      headers
    end

    # Initialize the response object with the specified +body+, +status+
    # and +headers+.
    #
    # If the +body+ is +nil+, construct an empty response object with internal
    # buffering.
    #
    # If the +body+ responds to +to_str+, assume it's a string-like object and
    # construct a buffered response object containing using that string as the
    # initial contents of the buffer.
    #
    # Otherwise it is expected +body+ conforms to the normal requirements of a
    # Rack response body, typically implementing one of +each+ (enumerable
    # body) or +call+ (streaming body).
    #
    # The +status+ defaults to +200+ which is the "OK" HTTP status code. You
    # can provide any other valid status code.
    #
    # The +headers+ must be a +Hash+ of key-value header pairs which conform to
    # the Rack specification for response headers. The key must be a +String+
    # instance and the value can be either a +String+ or +Array+ instance.
    def initialize(body = nil, status = 200, headers = {})
      @status = status.to_i

      unless headers.is_a?(Hash)
        warn "Providing non-hash headers to Rack::Response is deprecated and will be removed in Rack 3.1", uplevel: 1
      end

      @headers = Headers.new
      # Convert headers input to a plain hash with lowercase keys.
      headers.each do |k, v|
        @headers[k] = v
      end

      @writer = self.method(:append)

      @block = nil

      # Keep track of whether we have expanded the user supplied body.
      if body.nil?
        @body = []
        @buffered = true
        @length = 0
      elsif body.respond_to?(:to_str)
        @body = [body]
        @buffered = true
        @length = body.to_str.bytesize
      else
        @body = body
        @buffered = nil # undetermined as of yet.
        @length = 0
      end

      yield self if block_given?
    end

    def redirect(target, status = 302)
      self.status = status
      self.location = target
    end

    def chunked?
      CHUNKED == get_header(TRANSFER_ENCODING)
    end

    def no_entity_body?
      # The response body is an enumerable body and it is not allowed to have an entity body.
      @body.respond_to?(:each) && STATUS_WITH_NO_ENTITY_BODY[@status]
    end
    
    # Generate a response array consistent with the requirements of the SPEC.
    # @return [Array] a 3-tuple suitable of `[status, headers, body]`
    # which is suitable to be returned from the middleware `#call(env)` method.
    def finish(&block)
      if no_entity_body?
        delete_header CONTENT_TYPE
        delete_header CONTENT_LENGTH
        close
        return [@status, @headers, []]
      else
        if block_given?
          @block = block
          return [@status, @headers, self]
        else
          return [@status, @headers, @body]
        end
      end
    end

    alias to_a finish           # For *response

    def each(&callback)
      @body.each(&callback)
      @buffered = true

      if @block
        @writer = callback
        @block.call(self)
      end
    end

    # Append to body and update content-length.
    #
    # NOTE: Do not mix #write and direct #body access!
    #
    def write(chunk)
      buffered_body!

      @writer.call(chunk.to_s)
    end

    def close
      @body.close if @body.respond_to?(:close)
    end

    def empty?
      @block == nil && @body.empty?
    end

    def has_header?(key)
      raise ArgumentError unless key.is_a?(String)
      @headers.key?(key)
    end
    def get_header(key)
      raise ArgumentError unless key.is_a?(String)
      @headers[key]
    end
    def set_header(key, value)
      raise ArgumentError unless key.is_a?(String)
      @headers[key] = value
    end
    def delete_header(key)
      raise ArgumentError unless key.is_a?(String)
      @headers.delete key
    end

    alias :[] :get_header
    alias :[]= :set_header

    module Helpers
      def invalid?;             status < 100 || status >= 600;        end

      def informational?;       status >= 100 && status < 200;        end
      def successful?;          status >= 200 && status < 300;        end
      def redirection?;         status >= 300 && status < 400;        end
      def client_error?;        status >= 400 && status < 500;        end
      def server_error?;        status >= 500 && status < 600;        end

      def ok?;                  status == 200;                        end
      def created?;             status == 201;                        end
      def accepted?;            status == 202;                        end
      def no_content?;          status == 204;                        end
      def moved_permanently?;   status == 301;                        end
      def bad_request?;         status == 400;                        end
      def unauthorized?;        status == 401;                        end
      def forbidden?;           status == 403;                        end
      def not_found?;           status == 404;                        end
      def method_not_allowed?;  status == 405;                        end
      def not_acceptable?;      status == 406;                        end
      def request_timeout?;     status == 408;                        end
      def precondition_failed?; status == 412;                        end
      def unprocessable?;       status == 422;                        end

      def redirect?;            [301, 302, 303, 307, 308].include? status; end

      def include?(header)
        has_header?(header)
      end

      # Add a header that may have multiple values.
      #
      # Example:
      #   response.add_header 'vary', 'accept-encoding'
      #   response.add_header 'vary', 'cookie'
      #
      #   assert_equal 'accept-encoding,cookie', response.get_header('vary')
      #
      # http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
      def add_header(key, value)
        raise ArgumentError unless key.is_a?(String)

        if value.nil?
          return get_header(key)
        end

        value = value.to_s

        if header = get_header(key)
          if header.is_a?(Array)
            header << value
          else
            set_header(key, [header, value])
          end
        else
          set_header(key, value)
        end
      end

      # Get the content type of the response.
      def content_type
        get_header CONTENT_TYPE
      end

      # Set the content type of the response.
      def content_type=(content_type)
        set_header CONTENT_TYPE, content_type
      end

      def media_type
        MediaType.type(content_type)
      end

      def media_type_params
        MediaType.params(content_type)
      end

      def content_length
        cl = get_header CONTENT_LENGTH
        cl ? cl.to_i : cl
      end

      def location
        get_header "location"
      end

      def location=(location)
        set_header "location", location
      end

      def set_cookie(key, value)
        add_header SET_COOKIE, Utils.set_cookie_header(key, value)
      end

      def delete_cookie(key, value = {})
        set_header(SET_COOKIE,
          Utils.delete_set_cookie_header!(
            get_header(SET_COOKIE), key, value
          )
        )
      end

      def set_cookie_header
        get_header SET_COOKIE
      end

      def set_cookie_header=(value)
        set_header SET_COOKIE, value
      end

      def cache_control
        get_header CACHE_CONTROL
      end

      def cache_control=(value)
        set_header CACHE_CONTROL, value
      end

      # Specifies that the content shouldn't be cached. Overrides `cache!` if already called.
      def do_not_cache!
        set_header CACHE_CONTROL, "no-cache, must-revalidate"
        set_header EXPIRES, Time.now.httpdate
      end

      # Specify that the content should be cached.
      # @param duration [Integer] The number of seconds until the cache expires.
      # @option directive [String] The cache control directive, one of "public", "private", "no-cache" or "no-store".
      def cache!(duration = 3600, directive: "public")
        unless headers[CACHE_CONTROL] =~ /no-cache/
          set_header CACHE_CONTROL, "#{directive}, max-age=#{duration}"
          set_header EXPIRES, (Time.now + duration).httpdate
        end
      end

      def etag
        get_header ETAG
      end

      def etag=(value)
        set_header ETAG, value
      end

    protected

      def buffered_body!
        if @buffered.nil?
          if @body.is_a?(Array)
            # The user supplied body was an array:
            @body = @body.compact
            @body.each do |part|
              @length += part.to_s.bytesize
            end
          elsif @body.respond_to?(:each)
            # Turn the user supplied body into a buffered array:
            body = @body
            @body = Array.new

            body.each do |part|
              @writer.call(part.to_s)
            end

            body.close if body.respond_to?(:close)

            @buffered = true
          else
            @buffered = false
          end
        end

        return @buffered
      end

      def append(chunk)
        @body << chunk

        unless chunked?
          @length += chunk.bytesize
          set_header(CONTENT_LENGTH, @length.to_s)
        end

        return chunk
      end
    end

    include Helpers

    class Raw
      include Helpers

      attr_reader :headers
      attr_accessor :status

      def initialize(status, headers)
        @status = status
        @headers = headers
      end

      def has_header?(key)
        headers.key?(key)
      end

      def get_header(key)
        headers[key]
      end

      def set_header(key, value)
        headers[key] = value
      end

      def delete_header(key)
        headers.delete(key)
      end
    end
  end
end
PKCH[_��l��2share/gems/gems/rack-3.0.8/lib/rack/null_logger.rbnu�[���# frozen_string_literal: true

require_relative 'constants'

module Rack
  class NullLogger
    def initialize(app)
      @app = app
    end

    def call(env)
      env[RACK_LOGGER] = self
      @app.call(env)
    end

    def info(progname = nil, &block); end
    def debug(progname = nil, &block); end
    def warn(progname = nil, &block); end
    def error(progname = nil, &block); end
    def fatal(progname = nil, &block); end
    def unknown(progname = nil, &block); end
    def info? ;  end
    def debug? ; end
    def warn? ;  end
    def error? ; end
    def fatal? ; end
    def debug! ; end
    def error! ; end
    def fatal! ; end
    def info! ; end
    def warn! ; end
    def level ; end
    def progname ; end
    def datetime_format ; end
    def formatter ; end
    def sev_threshold ; end
    def level=(level); end
    def progname=(progname); end
    def datetime_format=(datetime_format); end
    def formatter=(formatter); end
    def sev_threshold=(sev_threshold); end
    def close ; end
    def add(severity, message = nil, progname = nil, &block); end
    def log(severity, message = nil, progname = nil, &block); end
    def <<(msg); end
    def reopen(logdev = nil); end
  end
end
PKCH[VM�Vww+share/gems/gems/rack-3.0.8/lib/rack/etag.rbnu�[���# frozen_string_literal: true

require 'digest/sha2'

require_relative 'constants'
require_relative 'utils'

module Rack
  # Automatically sets the etag header on all String bodies.
  #
  # The etag header is skipped if etag or last-modified headers are sent or if
  # a sendfile body (body.responds_to :to_path) is given (since such cases
  # should be handled by apache/nginx).
  #
  # On initialization, you can pass two parameters: a cache-control directive
  # used when etag is absent and a directive when it is present. The first
  # defaults to nil, while the second defaults to "max-age=0, private, must-revalidate"
  class ETag
    ETAG_STRING = Rack::ETAG
    DEFAULT_CACHE_CONTROL = "max-age=0, private, must-revalidate"

    def initialize(app, no_cache_control = nil, cache_control = DEFAULT_CACHE_CONTROL)
      @app = app
      @cache_control = cache_control
      @no_cache_control = no_cache_control
    end

    def call(env)
      status, headers, body = response = @app.call(env)

      if etag_status?(status) && body.respond_to?(:to_ary) && !skip_caching?(headers)
        body = body.to_ary
        digest = digest_body(body)
        headers[ETAG_STRING] = %(W/"#{digest}") if digest
      end

      unless headers[CACHE_CONTROL]
        if digest
          headers[CACHE_CONTROL] = @cache_control if @cache_control
        else
          headers[CACHE_CONTROL] = @no_cache_control if @no_cache_control
        end
      end

      response
    end

    private

      def etag_status?(status)
        status == 200 || status == 201
      end

      def skip_caching?(headers)
        headers.key?(ETAG_STRING) || headers.key?('last-modified')
      end

      def digest_body(body)
        digest = nil

        body.each do |part|
          (digest ||= Digest::SHA256.new) << part unless part.empty?
        end

        digest && digest.hexdigest.byteslice(0,32)
      end
  end
end
PKCH[[�J/share/gems/gems/rack-3.0.8/lib/rack/deflater.rbnu�[���# frozen_string_literal: true

require "zlib"
require "time"  # for Time.httpdate

require_relative 'constants'
require_relative 'utils'
require_relative 'request'
require_relative 'body_proxy'

module Rack
  # This middleware enables content encoding of http responses,
  # usually for purposes of compression.
  #
  # Currently supported encodings:
  #
  # * gzip
  # * identity (no transformation)
  #
  # This middleware automatically detects when encoding is supported
  # and allowed. For example no encoding is made when a cache
  # directive of 'no-transform' is present, when the response status
  # code is one that doesn't allow an entity body, or when the body
  # is empty.
  #
  # Note that despite the name, Deflater does not support the +deflate+
  # encoding.
  class Deflater
    # Creates Rack::Deflater middleware. Options:
    #
    # :if :: a lambda enabling / disabling deflation based on returned boolean value
    #        (e.g <tt>use Rack::Deflater, :if => lambda { |*, body| sum=0; body.each { |i| sum += i.length }; sum > 512 }</tt>).
    #        However, be aware that calling `body.each` inside the block will break cases where `body.each` is not idempotent,
    #        such as when it is an +IO+ instance.
    # :include :: a list of content types that should be compressed. By default, all content types are compressed.
    # :sync :: determines if the stream is going to be flushed after every chunk.  Flushing after every chunk reduces
    #          latency for time-sensitive streaming applications, but hurts compression and throughput.
    #          Defaults to +true+.
    def initialize(app, options = {})
      @app = app
      @condition = options[:if]
      @compressible_types = options[:include]
      @sync = options.fetch(:sync, true)
    end

    def call(env)
      status, headers, body = response = @app.call(env)

      unless should_deflate?(env, status, headers, body)
        return response
      end

      request = Request.new(env)

      encoding = Utils.select_best_encoding(%w(gzip identity),
                                            request.accept_encoding)

      # Set the Vary HTTP header.
      vary = headers["vary"].to_s.split(",").map(&:strip)
      unless vary.include?("*") || vary.any?{|v| v.downcase == 'accept-encoding'}
        headers["vary"] = vary.push("Accept-Encoding").join(",")
      end

      case encoding
      when "gzip"
        headers['content-encoding'] = "gzip"
        headers.delete(CONTENT_LENGTH)
        mtime = headers["last-modified"]
        mtime = Time.httpdate(mtime).to_i if mtime
        response[2] = GzipStream.new(body, mtime, @sync)
        response
      when "identity"
        response
      else # when nil
        # Only possible encoding values here are 'gzip', 'identity', and nil
        message = "An acceptable encoding for the requested resource #{request.fullpath} could not be found."
        bp = Rack::BodyProxy.new([message]) { body.close if body.respond_to?(:close) }
        [406, { CONTENT_TYPE => "text/plain", CONTENT_LENGTH => message.length.to_s }, bp]
      end
    end

    # Body class used for gzip encoded responses.
    class GzipStream

      BUFFER_LENGTH = 128 * 1_024

      # Initialize the gzip stream.  Arguments:
      # body :: Response body to compress with gzip
      # mtime :: The modification time of the body, used to set the
      #          modification time in the gzip header.
      # sync :: Whether to flush each gzip chunk as soon as it is ready.
      def initialize(body, mtime, sync)
        @body = body
        @mtime = mtime
        @sync = sync
      end

      # Yield gzip compressed strings to the given block.
      def each(&block)
        @writer = block
        gzip = ::Zlib::GzipWriter.new(self)
        gzip.mtime = @mtime if @mtime
        # @body.each is equivalent to @body.gets (slow)
        if @body.is_a? ::File # XXX: Should probably be ::IO
          while part = @body.read(BUFFER_LENGTH)
            gzip.write(part)
            gzip.flush if @sync
          end
        else
          @body.each { |part|
            # Skip empty strings, as they would result in no output,
            # and flushing empty parts would raise Zlib::BufError.
            next if part.empty?
            gzip.write(part)
            gzip.flush if @sync
          }
        end
      ensure
        gzip.finish
      end

      # Call the block passed to #each with the gzipped data.
      def write(data)
        @writer.call(data)
      end

      # Close the original body if possible.
      def close
        @body.close if @body.respond_to?(:close)
      end
    end

    private

    # Whether the body should be compressed.
    def should_deflate?(env, status, headers, body)
      # Skip compressing empty entity body responses and responses with
      # no-transform set.
      if Utils::STATUS_WITH_NO_ENTITY_BODY.key?(status.to_i) ||
          /\bno-transform\b/.match?(headers[CACHE_CONTROL].to_s) ||
          headers['content-encoding']&.!~(/\bidentity\b/)
        return false
      end

      # Skip if @compressible_types are given and does not include request's content type
      return false if @compressible_types && !(headers.has_key?(CONTENT_TYPE) && @compressible_types.include?(headers[CONTENT_TYPE][/[^;]*/]))

      # Skip if @condition lambda is given and evaluates to false
      return false if @condition && !@condition.call(env, status, headers, body)

      # No point in compressing empty body, also handles usage with
      # Rack::Sendfile.
      return false if headers[CONTENT_LENGTH] == '0'

      true
    end
  end
end
PKCH[�i\��-share/gems/gems/rack-3.0.8/lib/rack/config.rbnu�[���# frozen_string_literal: true

module Rack
  # Rack::Config modifies the environment using the block given during
  # initialization.
  #
  # Example:
  #     use Rack::Config do |env|
  #       env['my-key'] = 'some-value'
  #     end
  class Config
    def initialize(app, &block)
      @app = app
      @block = block
    end

    def call(env)
      @block.call(env)
      @app.call(env)
    end
  end
end
PKCH[:�}==-share/gems/gems/rack-3.0.8/lib/rack/urlmap.rbnu�[���# frozen_string_literal: true

require 'set'

require_relative 'constants'

module Rack
  # Rack::URLMap takes a hash mapping urls or paths to apps, and
  # dispatches accordingly.  Support for HTTP/1.1 host names exists if
  # the URLs start with <tt>http://</tt> or <tt>https://</tt>.
  #
  # URLMap modifies the SCRIPT_NAME and PATH_INFO such that the part
  # relevant for dispatch is in the SCRIPT_NAME, and the rest in the
  # PATH_INFO.  This should be taken care of when you need to
  # reconstruct the URL in order to create links.
  #
  # URLMap dispatches in such a way that the longest paths are tried
  # first, since they are most specific.

  class URLMap
    def initialize(map = {})
      remap(map)
    end

    def remap(map)
      @known_hosts = Set[]
      @mapping = map.map { |location, app|
        if location =~ %r{\Ahttps?://(.*?)(/.*)}
          host, location = $1, $2
          @known_hosts << host
        else
          host = nil
        end

        unless location[0] == ?/
          raise ArgumentError, "paths need to start with /"
        end

        location = location.chomp('/')
        match = Regexp.new("^#{Regexp.quote(location).gsub('/', '/+')}(.*)", Regexp::NOENCODING)

        [host, location, match, app]
      }.sort_by do |(host, location, _, _)|
        [host ? -host.size : Float::INFINITY, -location.size]
      end
    end

    def call(env)
      path        = env[PATH_INFO]
      script_name = env[SCRIPT_NAME]
      http_host   = env[HTTP_HOST]
      server_name = env[SERVER_NAME]
      server_port = env[SERVER_PORT]

      is_same_server = casecmp?(http_host, server_name) ||
                       casecmp?(http_host, "#{server_name}:#{server_port}")

      is_host_known = @known_hosts.include? http_host

      @mapping.each do |host, location, match, app|
        unless casecmp?(http_host, host) \
            || casecmp?(server_name, host) \
            || (!host && is_same_server) \
            || (!host && !is_host_known) # If we don't have a matching host, default to the first without a specified host
          next
        end

        next unless m = match.match(path.to_s)

        rest = m[1]
        next unless !rest || rest.empty? || rest[0] == ?/

        env[SCRIPT_NAME] = (script_name + location)
        env[PATH_INFO] = rest

        return app.call(env)
      end

      [404, { CONTENT_TYPE => "text/plain", "x-cascade" => "pass" }, ["Not Found: #{path}"]]

    ensure
      env[PATH_INFO]   = path
      env[SCRIPT_NAME] = script_name
    end

    private
    def casecmp?(v1, v2)
      # if both nil, or they're the same string
      return true if v1 == v2

      # if either are nil... (but they're not the same)
      return false if v1.nil?
      return false if v2.nil?

      # otherwise check they're not case-insensitive the same
      v1.casecmp(v2).zero?
    end
  end
end
PKCH[?�6/����+share/gems/gems/rack-3.0.8/lib/rack/mime.rbnu�[���# frozen_string_literal: true

module Rack
  module Mime
    # Returns String with mime type if found, otherwise use +fallback+.
    # +ext+ should be filename extension in the '.ext' format that
    #       File.extname(file) returns.
    # +fallback+ may be any object
    #
    # Also see the documentation for MIME_TYPES
    #
    # Usage:
    #     Rack::Mime.mime_type('.foo')
    #
    # This is a shortcut for:
    #     Rack::Mime::MIME_TYPES.fetch('.foo', 'application/octet-stream')

    def mime_type(ext, fallback = 'application/octet-stream')
      MIME_TYPES.fetch(ext.to_s.downcase, fallback)
    end
    module_function :mime_type

    # Returns true if the given value is a mime match for the given mime match
    # specification, false otherwise.
    #
    #    Rack::Mime.match?('text/html', 'text/*') => true
    #    Rack::Mime.match?('text/plain', '*') => true
    #    Rack::Mime.match?('text/html', 'application/json') => false

    def match?(value, matcher)
      v1, v2 = value.split('/', 2)
      m1, m2 = matcher.split('/', 2)

      (m1 == '*' || v1 == m1) && (m2.nil? || m2 == '*' || m2 == v2)
    end
    module_function :match?

    # List of most common mime-types, selected various sources
    # according to their usefulness in a webserving scope for Ruby
    # users.
    #
    # To amend this list with your local mime.types list you can use:
    #
    #     require 'webrick/httputils'
    #     list = WEBrick::HTTPUtils.load_mime_types('/etc/mime.types')
    #     Rack::Mime::MIME_TYPES.merge!(list)
    #
    # N.B. On Ubuntu the mime.types file does not include the leading period, so
    # users may need to modify the data before merging into the hash.

    MIME_TYPES = {
      ".123"       => "application/vnd.lotus-1-2-3",
      ".3dml"      => "text/vnd.in3d.3dml",
      ".3g2"       => "video/3gpp2",
      ".3gp"       => "video/3gpp",
      ".a"         => "application/octet-stream",
      ".acc"       => "application/vnd.americandynamics.acc",
      ".ace"       => "application/x-ace-compressed",
      ".acu"       => "application/vnd.acucobol",
      ".aep"       => "application/vnd.audiograph",
      ".afp"       => "application/vnd.ibm.modcap",
      ".ai"        => "application/postscript",
      ".aif"       => "audio/x-aiff",
      ".aiff"      => "audio/x-aiff",
      ".ami"       => "application/vnd.amiga.ami",
      ".apng"      => "image/apng",
      ".appcache"  => "text/cache-manifest",
      ".apr"       => "application/vnd.lotus-approach",
      ".asc"       => "application/pgp-signature",
      ".asf"       => "video/x-ms-asf",
      ".asm"       => "text/x-asm",
      ".aso"       => "application/vnd.accpac.simply.aso",
      ".asx"       => "video/x-ms-asf",
      ".atc"       => "application/vnd.acucorp",
      ".atom"      => "application/atom+xml",
      ".atomcat"   => "application/atomcat+xml",
      ".atomsvc"   => "application/atomsvc+xml",
      ".atx"       => "application/vnd.antix.game-component",
      ".au"        => "audio/basic",
      ".avi"       => "video/x-msvideo",
      ".avif"      => "image/avif",
      ".bat"       => "application/x-msdownload",
      ".bcpio"     => "application/x-bcpio",
      ".bdm"       => "application/vnd.syncml.dm+wbxml",
      ".bh2"       => "application/vnd.fujitsu.oasysprs",
      ".bin"       => "application/octet-stream",
      ".bmi"       => "application/vnd.bmi",
      ".bmp"       => "image/bmp",
      ".box"       => "application/vnd.previewsystems.box",
      ".btif"      => "image/prs.btif",
      ".bz"        => "application/x-bzip",
      ".bz2"       => "application/x-bzip2",
      ".c"         => "text/x-c",
      ".c4g"       => "application/vnd.clonk.c4group",
      ".cab"       => "application/vnd.ms-cab-compressed",
      ".cc"        => "text/x-c",
      ".ccxml"     => "application/ccxml+xml",
      ".cdbcmsg"   => "application/vnd.contact.cmsg",
      ".cdkey"     => "application/vnd.mediastation.cdkey",
      ".cdx"       => "chemical/x-cdx",
      ".cdxml"     => "application/vnd.chemdraw+xml",
      ".cdy"       => "application/vnd.cinderella",
      ".cer"       => "application/pkix-cert",
      ".cgm"       => "image/cgm",
      ".chat"      => "application/x-chat",
      ".chm"       => "application/vnd.ms-htmlhelp",
      ".chrt"      => "application/vnd.kde.kchart",
      ".cif"       => "chemical/x-cif",
      ".cii"       => "application/vnd.anser-web-certificate-issue-initiation",
      ".cil"       => "application/vnd.ms-artgalry",
      ".cla"       => "application/vnd.claymore",
      ".class"     => "application/octet-stream",
      ".clkk"      => "application/vnd.crick.clicker.keyboard",
      ".clkp"      => "application/vnd.crick.clicker.palette",
      ".clkt"      => "application/vnd.crick.clicker.template",
      ".clkw"      => "application/vnd.crick.clicker.wordbank",
      ".clkx"      => "application/vnd.crick.clicker",
      ".clp"       => "application/x-msclip",
      ".cmc"       => "application/vnd.cosmocaller",
      ".cmdf"      => "chemical/x-cmdf",
      ".cml"       => "chemical/x-cml",
      ".cmp"       => "application/vnd.yellowriver-custom-menu",
      ".cmx"       => "image/x-cmx",
      ".com"       => "application/x-msdownload",
      ".conf"      => "text/plain",
      ".cpio"      => "application/x-cpio",
      ".cpp"       => "text/x-c",
      ".cpt"       => "application/mac-compactpro",
      ".crd"       => "application/x-mscardfile",
      ".crl"       => "application/pkix-crl",
      ".crt"       => "application/x-x509-ca-cert",
      ".csh"       => "application/x-csh",
      ".csml"      => "chemical/x-csml",
      ".csp"       => "application/vnd.commonspace",
      ".css"       => "text/css",
      ".csv"       => "text/csv",
      ".curl"      => "application/vnd.curl",
      ".cww"       => "application/prs.cww",
      ".cxx"       => "text/x-c",
      ".daf"       => "application/vnd.mobius.daf",
      ".davmount"  => "application/davmount+xml",
      ".dcr"       => "application/x-director",
      ".dd2"       => "application/vnd.oma.dd2+xml",
      ".ddd"       => "application/vnd.fujixerox.ddd",
      ".deb"       => "application/x-debian-package",
      ".der"       => "application/x-x509-ca-cert",
      ".dfac"      => "application/vnd.dreamfactory",
      ".diff"      => "text/x-diff",
      ".dis"       => "application/vnd.mobius.dis",
      ".djv"       => "image/vnd.djvu",
      ".djvu"      => "image/vnd.djvu",
      ".dll"       => "application/x-msdownload",
      ".dmg"       => "application/octet-stream",
      ".dna"       => "application/vnd.dna",
      ".doc"       => "application/msword",
      ".docm"      => "application/vnd.ms-word.document.macroEnabled.12",
      ".docx"      => "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
      ".dot"       => "application/msword",
      ".dotm"      => "application/vnd.ms-word.template.macroEnabled.12",
      ".dotx"      => "application/vnd.openxmlformats-officedocument.wordprocessingml.template",
      ".dp"        => "application/vnd.osgi.dp",
      ".dpg"       => "application/vnd.dpgraph",
      ".dsc"       => "text/prs.lines.tag",
      ".dtd"       => "application/xml-dtd",
      ".dts"       => "audio/vnd.dts",
      ".dtshd"     => "audio/vnd.dts.hd",
      ".dv"        => "video/x-dv",
      ".dvi"       => "application/x-dvi",
      ".dwf"       => "model/vnd.dwf",
      ".dwg"       => "image/vnd.dwg",
      ".dxf"       => "image/vnd.dxf",
      ".dxp"       => "application/vnd.spotfire.dxp",
      ".ear"       => "application/java-archive",
      ".ecelp4800" => "audio/vnd.nuera.ecelp4800",
      ".ecelp7470" => "audio/vnd.nuera.ecelp7470",
      ".ecelp9600" => "audio/vnd.nuera.ecelp9600",
      ".ecma"      => "application/ecmascript",
      ".edm"       => "application/vnd.novadigm.edm",
      ".edx"       => "application/vnd.novadigm.edx",
      ".efif"      => "application/vnd.picsel",
      ".ei6"       => "application/vnd.pg.osasli",
      ".eml"       => "message/rfc822",
      ".eol"       => "audio/vnd.digital-winds",
      ".eot"       => "application/vnd.ms-fontobject",
      ".eps"       => "application/postscript",
      ".es3"       => "application/vnd.eszigno3+xml",
      ".esf"       => "application/vnd.epson.esf",
      ".etx"       => "text/x-setext",
      ".exe"       => "application/x-msdownload",
      ".ext"       => "application/vnd.novadigm.ext",
      ".ez"        => "application/andrew-inset",
      ".ez2"       => "application/vnd.ezpix-album",
      ".ez3"       => "application/vnd.ezpix-package",
      ".f"         => "text/x-fortran",
      ".f77"       => "text/x-fortran",
      ".f90"       => "text/x-fortran",
      ".fbs"       => "image/vnd.fastbidsheet",
      ".fdf"       => "application/vnd.fdf",
      ".fe_launch" => "application/vnd.denovo.fcselayout-link",
      ".fg5"       => "application/vnd.fujitsu.oasysgp",
      ".fli"       => "video/x-fli",
      ".flif"      => "image/flif",
      ".flo"       => "application/vnd.micrografx.flo",
      ".flv"       => "video/x-flv",
      ".flw"       => "application/vnd.kde.kivio",
      ".flx"       => "text/vnd.fmi.flexstor",
      ".fly"       => "text/vnd.fly",
      ".fm"        => "application/vnd.framemaker",
      ".fnc"       => "application/vnd.frogans.fnc",
      ".for"       => "text/x-fortran",
      ".fpx"       => "image/vnd.fpx",
      ".fsc"       => "application/vnd.fsc.weblaunch",
      ".fst"       => "image/vnd.fst",
      ".ftc"       => "application/vnd.fluxtime.clip",
      ".fti"       => "application/vnd.anser-web-funds-transfer-initiation",
      ".fvt"       => "video/vnd.fvt",
      ".fzs"       => "application/vnd.fuzzysheet",
      ".g3"        => "image/g3fax",
      ".gac"       => "application/vnd.groove-account",
      ".gdl"       => "model/vnd.gdl",
      ".gem"       => "application/octet-stream",
      ".gemspec"   => "text/x-script.ruby",
      ".ghf"       => "application/vnd.groove-help",
      ".gif"       => "image/gif",
      ".gim"       => "application/vnd.groove-identity-message",
      ".gmx"       => "application/vnd.gmx",
      ".gph"       => "application/vnd.flographit",
      ".gqf"       => "application/vnd.grafeq",
      ".gram"      => "application/srgs",
      ".grv"       => "application/vnd.groove-injector",
      ".grxml"     => "application/srgs+xml",
      ".gtar"      => "application/x-gtar",
      ".gtm"       => "application/vnd.groove-tool-message",
      ".gtw"       => "model/vnd.gtw",
      ".gv"        => "text/vnd.graphviz",
      ".gz"        => "application/x-gzip",
      ".h"         => "text/x-c",
      ".h261"      => "video/h261",
      ".h263"      => "video/h263",
      ".h264"      => "video/h264",
      ".hbci"      => "application/vnd.hbci",
      ".hdf"       => "application/x-hdf",
      ".heic"      => "image/heic",
      ".heics"     => "image/heic-sequence",
      ".heif"      => "image/heif",
      ".heifs"     => "image/heif-sequence",
      ".hh"        => "text/x-c",
      ".hlp"       => "application/winhlp",
      ".hpgl"      => "application/vnd.hp-hpgl",
      ".hpid"      => "application/vnd.hp-hpid",
      ".hps"       => "application/vnd.hp-hps",
      ".hqx"       => "application/mac-binhex40",
      ".htc"       => "text/x-component",
      ".htke"      => "application/vnd.kenameaapp",
      ".htm"       => "text/html",
      ".html"      => "text/html",
      ".hvd"       => "application/vnd.yamaha.hv-dic",
      ".hvp"       => "application/vnd.yamaha.hv-voice",
      ".hvs"       => "application/vnd.yamaha.hv-script",
      ".icc"       => "application/vnd.iccprofile",
      ".ice"       => "x-conference/x-cooltalk",
      ".ico"       => "image/vnd.microsoft.icon",
      ".ics"       => "text/calendar",
      ".ief"       => "image/ief",
      ".ifb"       => "text/calendar",
      ".ifm"       => "application/vnd.shana.informed.formdata",
      ".igl"       => "application/vnd.igloader",
      ".igs"       => "model/iges",
      ".igx"       => "application/vnd.micrografx.igx",
      ".iif"       => "application/vnd.shana.informed.interchange",
      ".imp"       => "application/vnd.accpac.simply.imp",
      ".ims"       => "application/vnd.ms-ims",
      ".ipk"       => "application/vnd.shana.informed.package",
      ".irm"       => "application/vnd.ibm.rights-management",
      ".irp"       => "application/vnd.irepository.package+xml",
      ".iso"       => "application/octet-stream",
      ".itp"       => "application/vnd.shana.informed.formtemplate",
      ".ivp"       => "application/vnd.immervision-ivp",
      ".ivu"       => "application/vnd.immervision-ivu",
      ".jad"       => "text/vnd.sun.j2me.app-descriptor",
      ".jam"       => "application/vnd.jam",
      ".jar"       => "application/java-archive",
      ".java"      => "text/x-java-source",
      ".jisp"      => "application/vnd.jisp",
      ".jlt"       => "application/vnd.hp-jlyt",
      ".jnlp"      => "application/x-java-jnlp-file",
      ".joda"      => "application/vnd.joost.joda-archive",
      ".jp2"       => "image/jp2",
      ".jpeg"      => "image/jpeg",
      ".jpg"       => "image/jpeg",
      ".jpgv"      => "video/jpeg",
      ".jpm"       => "video/jpm",
      ".js"        => "application/javascript",
      ".json"      => "application/json",
      ".karbon"    => "application/vnd.kde.karbon",
      ".kfo"       => "application/vnd.kde.kformula",
      ".kia"       => "application/vnd.kidspiration",
      ".kml"       => "application/vnd.google-earth.kml+xml",
      ".kmz"       => "application/vnd.google-earth.kmz",
      ".kne"       => "application/vnd.kinar",
      ".kon"       => "application/vnd.kde.kontour",
      ".kpr"       => "application/vnd.kde.kpresenter",
      ".ksp"       => "application/vnd.kde.kspread",
      ".ktz"       => "application/vnd.kahootz",
      ".kwd"       => "application/vnd.kde.kword",
      ".latex"     => "application/x-latex",
      ".lbd"       => "application/vnd.llamagraphics.life-balance.desktop",
      ".lbe"       => "application/vnd.llamagraphics.life-balance.exchange+xml",
      ".les"       => "application/vnd.hhe.lesson-player",
      ".link66"    => "application/vnd.route66.link66+xml",
      ".log"       => "text/plain",
      ".lostxml"   => "application/lost+xml",
      ".lrm"       => "application/vnd.ms-lrm",
      ".ltf"       => "application/vnd.frogans.ltf",
      ".lvp"       => "audio/vnd.lucent.voice",
      ".lwp"       => "application/vnd.lotus-wordpro",
      ".m3u"       => "audio/x-mpegurl",
      ".m3u8"      => "application/x-mpegurl",
      ".m4a"       => "audio/mp4a-latm",
      ".m4v"       => "video/mp4",
      ".ma"        => "application/mathematica",
      ".mag"       => "application/vnd.ecowin.chart",
      ".man"       => "text/troff",
      ".manifest"  => "text/cache-manifest",
      ".mathml"    => "application/mathml+xml",
      ".mbk"       => "application/vnd.mobius.mbk",
      ".mbox"      => "application/mbox",
      ".mc1"       => "application/vnd.medcalcdata",
      ".mcd"       => "application/vnd.mcd",
      ".mdb"       => "application/x-msaccess",
      ".mdi"       => "image/vnd.ms-modi",
      ".mdoc"      => "text/troff",
      ".me"        => "text/troff",
      ".mfm"       => "application/vnd.mfmp",
      ".mgz"       => "application/vnd.proteus.magazine",
      ".mid"       => "audio/midi",
      ".midi"      => "audio/midi",
      ".mif"       => "application/vnd.mif",
      ".mime"      => "message/rfc822",
      ".mj2"       => "video/mj2",
      ".mlp"       => "application/vnd.dolby.mlp",
      ".mmd"       => "application/vnd.chipnuts.karaoke-mmd",
      ".mmf"       => "application/vnd.smaf",
      ".mml"       => "application/mathml+xml",
      ".mmr"       => "image/vnd.fujixerox.edmics-mmr",
      ".mng"       => "video/x-mng",
      ".mny"       => "application/x-msmoney",
      ".mov"       => "video/quicktime",
      ".movie"     => "video/x-sgi-movie",
      ".mp3"       => "audio/mpeg",
      ".mp4"       => "video/mp4",
      ".mp4a"      => "audio/mp4",
      ".mp4s"      => "application/mp4",
      ".mp4v"      => "video/mp4",
      ".mpc"       => "application/vnd.mophun.certificate",
      ".mpd"       => "application/dash+xml",
      ".mpeg"      => "video/mpeg",
      ".mpg"       => "video/mpeg",
      ".mpga"      => "audio/mpeg",
      ".mpkg"      => "application/vnd.apple.installer+xml",
      ".mpm"       => "application/vnd.blueice.multipass",
      ".mpn"       => "application/vnd.mophun.application",
      ".mpp"       => "application/vnd.ms-project",
      ".mpy"       => "application/vnd.ibm.minipay",
      ".mqy"       => "application/vnd.mobius.mqy",
      ".mrc"       => "application/marc",
      ".ms"        => "text/troff",
      ".mscml"     => "application/mediaservercontrol+xml",
      ".mseq"      => "application/vnd.mseq",
      ".msf"       => "application/vnd.epson.msf",
      ".msh"       => "model/mesh",
      ".msi"       => "application/x-msdownload",
      ".msl"       => "application/vnd.mobius.msl",
      ".msty"      => "application/vnd.muvee.style",
      ".mts"       => "model/vnd.mts",
      ".mus"       => "application/vnd.musician",
      ".mvb"       => "application/x-msmediaview",
      ".mwf"       => "application/vnd.mfer",
      ".mxf"       => "application/mxf",
      ".mxl"       => "application/vnd.recordare.musicxml",
      ".mxml"      => "application/xv+xml",
      ".mxs"       => "application/vnd.triscape.mxs",
      ".mxu"       => "video/vnd.mpegurl",
      ".n"         => "application/vnd.nokia.n-gage.symbian.install",
      ".nc"        => "application/x-netcdf",
      ".ngdat"     => "application/vnd.nokia.n-gage.data",
      ".nlu"       => "application/vnd.neurolanguage.nlu",
      ".nml"       => "application/vnd.enliven",
      ".nnd"       => "application/vnd.noblenet-directory",
      ".nns"       => "application/vnd.noblenet-sealer",
      ".nnw"       => "application/vnd.noblenet-web",
      ".npx"       => "image/vnd.net-fpx",
      ".nsf"       => "application/vnd.lotus-notes",
      ".oa2"       => "application/vnd.fujitsu.oasys2",
      ".oa3"       => "application/vnd.fujitsu.oasys3",
      ".oas"       => "application/vnd.fujitsu.oasys",
      ".obd"       => "application/x-msbinder",
      ".oda"       => "application/oda",
      ".odc"       => "application/vnd.oasis.opendocument.chart",
      ".odf"       => "application/vnd.oasis.opendocument.formula",
      ".odg"       => "application/vnd.oasis.opendocument.graphics",
      ".odi"       => "application/vnd.oasis.opendocument.image",
      ".odp"       => "application/vnd.oasis.opendocument.presentation",
      ".ods"       => "application/vnd.oasis.opendocument.spreadsheet",
      ".odt"       => "application/vnd.oasis.opendocument.text",
      ".oga"       => "audio/ogg",
      ".ogg"       => "application/ogg",
      ".ogv"       => "video/ogg",
      ".ogx"       => "application/ogg",
      ".org"       => "application/vnd.lotus-organizer",
      ".otc"       => "application/vnd.oasis.opendocument.chart-template",
      ".otf"       => "application/vnd.oasis.opendocument.formula-template",
      ".otg"       => "application/vnd.oasis.opendocument.graphics-template",
      ".oth"       => "application/vnd.oasis.opendocument.text-web",
      ".oti"       => "application/vnd.oasis.opendocument.image-template",
      ".otm"       => "application/vnd.oasis.opendocument.text-master",
      ".ots"       => "application/vnd.oasis.opendocument.spreadsheet-template",
      ".ott"       => "application/vnd.oasis.opendocument.text-template",
      ".oxt"       => "application/vnd.openofficeorg.extension",
      ".p"         => "text/x-pascal",
      ".p10"       => "application/pkcs10",
      ".p12"       => "application/x-pkcs12",
      ".p7b"       => "application/x-pkcs7-certificates",
      ".p7m"       => "application/pkcs7-mime",
      ".p7r"       => "application/x-pkcs7-certreqresp",
      ".p7s"       => "application/pkcs7-signature",
      ".pas"       => "text/x-pascal",
      ".pbd"       => "application/vnd.powerbuilder6",
      ".pbm"       => "image/x-portable-bitmap",
      ".pcl"       => "application/vnd.hp-pcl",
      ".pclxl"     => "application/vnd.hp-pclxl",
      ".pcx"       => "image/x-pcx",
      ".pdb"       => "chemical/x-pdb",
      ".pdf"       => "application/pdf",
      ".pem"       => "application/x-x509-ca-cert",
      ".pfr"       => "application/font-tdpfr",
      ".pgm"       => "image/x-portable-graymap",
      ".pgn"       => "application/x-chess-pgn",
      ".pgp"       => "application/pgp-encrypted",
      ".pic"       => "image/x-pict",
      ".pict"      => "image/pict",
      ".pkg"       => "application/octet-stream",
      ".pki"       => "application/pkixcmp",
      ".pkipath"   => "application/pkix-pkipath",
      ".pl"        => "text/x-script.perl",
      ".plb"       => "application/vnd.3gpp.pic-bw-large",
      ".plc"       => "application/vnd.mobius.plc",
      ".plf"       => "application/vnd.pocketlearn",
      ".pls"       => "application/pls+xml",
      ".pm"        => "text/x-script.perl-module",
      ".pml"       => "application/vnd.ctc-posml",
      ".png"       => "image/png",
      ".pnm"       => "image/x-portable-anymap",
      ".pntg"      => "image/x-macpaint",
      ".portpkg"   => "application/vnd.macports.portpkg",
      ".pot"       => "application/vnd.ms-powerpoint",
      ".potm"      => "application/vnd.ms-powerpoint.template.macroEnabled.12",
      ".potx"      => "application/vnd.openxmlformats-officedocument.presentationml.template",
      ".ppa"       => "application/vnd.ms-powerpoint",
      ".ppam"      => "application/vnd.ms-powerpoint.addin.macroEnabled.12",
      ".ppd"       => "application/vnd.cups-ppd",
      ".ppm"       => "image/x-portable-pixmap",
      ".pps"       => "application/vnd.ms-powerpoint",
      ".ppsm"      => "application/vnd.ms-powerpoint.slideshow.macroEnabled.12",
      ".ppsx"      => "application/vnd.openxmlformats-officedocument.presentationml.slideshow",
      ".ppt"       => "application/vnd.ms-powerpoint",
      ".pptm"      => "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
      ".pptx"      => "application/vnd.openxmlformats-officedocument.presentationml.presentation",
      ".prc"       => "application/vnd.palm",
      ".pre"       => "application/vnd.lotus-freelance",
      ".prf"       => "application/pics-rules",
      ".ps"        => "application/postscript",
      ".psb"       => "application/vnd.3gpp.pic-bw-small",
      ".psd"       => "image/vnd.adobe.photoshop",
      ".ptid"      => "application/vnd.pvi.ptid1",
      ".pub"       => "application/x-mspublisher",
      ".pvb"       => "application/vnd.3gpp.pic-bw-var",
      ".pwn"       => "application/vnd.3m.post-it-notes",
      ".py"        => "text/x-script.python",
      ".pya"       => "audio/vnd.ms-playready.media.pya",
      ".pyv"       => "video/vnd.ms-playready.media.pyv",
      ".qam"       => "application/vnd.epson.quickanime",
      ".qbo"       => "application/vnd.intu.qbo",
      ".qfx"       => "application/vnd.intu.qfx",
      ".qps"       => "application/vnd.publishare-delta-tree",
      ".qt"        => "video/quicktime",
      ".qtif"      => "image/x-quicktime",
      ".qxd"       => "application/vnd.quark.quarkxpress",
      ".ra"        => "audio/x-pn-realaudio",
      ".rake"      => "text/x-script.ruby",
      ".ram"       => "audio/x-pn-realaudio",
      ".rar"       => "application/x-rar-compressed",
      ".ras"       => "image/x-cmu-raster",
      ".rb"        => "text/x-script.ruby",
      ".rcprofile" => "application/vnd.ipunplugged.rcprofile",
      ".rdf"       => "application/rdf+xml",
      ".rdz"       => "application/vnd.data-vision.rdz",
      ".rep"       => "application/vnd.businessobjects",
      ".rgb"       => "image/x-rgb",
      ".rif"       => "application/reginfo+xml",
      ".rl"        => "application/resource-lists+xml",
      ".rlc"       => "image/vnd.fujixerox.edmics-rlc",
      ".rld"       => "application/resource-lists-diff+xml",
      ".rm"        => "application/vnd.rn-realmedia",
      ".rmp"       => "audio/x-pn-realaudio-plugin",
      ".rms"       => "application/vnd.jcp.javame.midlet-rms",
      ".rnc"       => "application/relax-ng-compact-syntax",
      ".roff"      => "text/troff",
      ".rpm"       => "application/x-redhat-package-manager",
      ".rpss"      => "application/vnd.nokia.radio-presets",
      ".rpst"      => "application/vnd.nokia.radio-preset",
      ".rq"        => "application/sparql-query",
      ".rs"        => "application/rls-services+xml",
      ".rsd"       => "application/rsd+xml",
      ".rss"       => "application/rss+xml",
      ".rtf"       => "application/rtf",
      ".rtx"       => "text/richtext",
      ".ru"        => "text/x-script.ruby",
      ".s"         => "text/x-asm",
      ".saf"       => "application/vnd.yamaha.smaf-audio",
      ".sbml"      => "application/sbml+xml",
      ".sc"        => "application/vnd.ibm.secure-container",
      ".scd"       => "application/x-msschedule",
      ".scm"       => "application/vnd.lotus-screencam",
      ".scq"       => "application/scvp-cv-request",
      ".scs"       => "application/scvp-cv-response",
      ".sdkm"      => "application/vnd.solent.sdkm+xml",
      ".sdp"       => "application/sdp",
      ".see"       => "application/vnd.seemail",
      ".sema"      => "application/vnd.sema",
      ".semd"      => "application/vnd.semd",
      ".semf"      => "application/vnd.semf",
      ".setpay"    => "application/set-payment-initiation",
      ".setreg"    => "application/set-registration-initiation",
      ".sfd"       => "application/vnd.hydrostatix.sof-data",
      ".sfs"       => "application/vnd.spotfire.sfs",
      ".sgm"       => "text/sgml",
      ".sgml"      => "text/sgml",
      ".sh"        => "application/x-sh",
      ".shar"      => "application/x-shar",
      ".shf"       => "application/shf+xml",
      ".sig"       => "application/pgp-signature",
      ".sit"       => "application/x-stuffit",
      ".sitx"      => "application/x-stuffitx",
      ".skp"       => "application/vnd.koan",
      ".slt"       => "application/vnd.epson.salt",
      ".smi"       => "application/smil+xml",
      ".snd"       => "audio/basic",
      ".so"        => "application/octet-stream",
      ".spf"       => "application/vnd.yamaha.smaf-phrase",
      ".spl"       => "application/x-futuresplash",
      ".spot"      => "text/vnd.in3d.spot",
      ".spp"       => "application/scvp-vp-response",
      ".spq"       => "application/scvp-vp-request",
      ".src"       => "application/x-wais-source",
      ".srt"       => "text/srt",
      ".srx"       => "application/sparql-results+xml",
      ".sse"       => "application/vnd.kodak-descriptor",
      ".ssf"       => "application/vnd.epson.ssf",
      ".ssml"      => "application/ssml+xml",
      ".stf"       => "application/vnd.wt.stf",
      ".stk"       => "application/hyperstudio",
      ".str"       => "application/vnd.pg.format",
      ".sus"       => "application/vnd.sus-calendar",
      ".sv4cpio"   => "application/x-sv4cpio",
      ".sv4crc"    => "application/x-sv4crc",
      ".svd"       => "application/vnd.svd",
      ".svg"       => "image/svg+xml",
      ".svgz"      => "image/svg+xml",
      ".swf"       => "application/x-shockwave-flash",
      ".swi"       => "application/vnd.arastra.swi",
      ".t"         => "text/troff",
      ".tao"       => "application/vnd.tao.intent-module-archive",
      ".tar"       => "application/x-tar",
      ".tbz"       => "application/x-bzip-compressed-tar",
      ".tcap"      => "application/vnd.3gpp2.tcap",
      ".tcl"       => "application/x-tcl",
      ".tex"       => "application/x-tex",
      ".texi"      => "application/x-texinfo",
      ".texinfo"   => "application/x-texinfo",
      ".text"      => "text/plain",
      ".tif"       => "image/tiff",
      ".tiff"      => "image/tiff",
      ".tmo"       => "application/vnd.tmobile-livetv",
      ".torrent"   => "application/x-bittorrent",
      ".tpl"       => "application/vnd.groove-tool-template",
      ".tpt"       => "application/vnd.trid.tpt",
      ".tr"        => "text/troff",
      ".tra"       => "application/vnd.trueapp",
      ".trm"       => "application/x-msterminal",
      ".ts"        => "video/mp2t",
      ".tsv"       => "text/tab-separated-values",
      ".ttf"       => "application/octet-stream",
      ".twd"       => "application/vnd.simtech-mindmapper",
      ".txd"       => "application/vnd.genomatix.tuxedo",
      ".txf"       => "application/vnd.mobius.txf",
      ".txt"       => "text/plain",
      ".ufd"       => "application/vnd.ufdl",
      ".umj"       => "application/vnd.umajin",
      ".unityweb"  => "application/vnd.unity",
      ".uoml"      => "application/vnd.uoml+xml",
      ".uri"       => "text/uri-list",
      ".ustar"     => "application/x-ustar",
      ".utz"       => "application/vnd.uiq.theme",
      ".uu"        => "text/x-uuencode",
      ".vcd"       => "application/x-cdlink",
      ".vcf"       => "text/x-vcard",
      ".vcg"       => "application/vnd.groove-vcard",
      ".vcs"       => "text/x-vcalendar",
      ".vcx"       => "application/vnd.vcx",
      ".vis"       => "application/vnd.visionary",
      ".viv"       => "video/vnd.vivo",
      ".vrml"      => "model/vrml",
      ".vsd"       => "application/vnd.visio",
      ".vsf"       => "application/vnd.vsf",
      ".vtt"       => "text/vtt",
      ".vtu"       => "model/vnd.vtu",
      ".vxml"      => "application/voicexml+xml",
      ".war"       => "application/java-archive",
      ".wasm"      => "application/wasm",
      ".wav"       => "audio/x-wav",
      ".wax"       => "audio/x-ms-wax",
      ".wbmp"      => "image/vnd.wap.wbmp",
      ".wbs"       => "application/vnd.criticaltools.wbs+xml",
      ".wbxml"     => "application/vnd.wap.wbxml",
      ".webm"      => "video/webm",
      ".webp"      => "image/webp",
      ".wm"        => "video/x-ms-wm",
      ".wma"       => "audio/x-ms-wma",
      ".wmd"       => "application/x-ms-wmd",
      ".wmf"       => "application/x-msmetafile",
      ".wml"       => "text/vnd.wap.wml",
      ".wmlc"      => "application/vnd.wap.wmlc",
      ".wmls"      => "text/vnd.wap.wmlscript",
      ".wmlsc"     => "application/vnd.wap.wmlscriptc",
      ".wmv"       => "video/x-ms-wmv",
      ".wmx"       => "video/x-ms-wmx",
      ".wmz"       => "application/x-ms-wmz",
      ".woff"      => "application/font-woff",
      ".woff2"     => "application/font-woff2",
      ".wpd"       => "application/vnd.wordperfect",
      ".wpl"       => "application/vnd.ms-wpl",
      ".wps"       => "application/vnd.ms-works",
      ".wqd"       => "application/vnd.wqd",
      ".wri"       => "application/x-mswrite",
      ".wrl"       => "model/vrml",
      ".wsdl"      => "application/wsdl+xml",
      ".wspolicy"  => "application/wspolicy+xml",
      ".wtb"       => "application/vnd.webturbo",
      ".wvx"       => "video/x-ms-wvx",
      ".x3d"       => "application/vnd.hzn-3d-crossword",
      ".xar"       => "application/vnd.xara",
      ".xbd"       => "application/vnd.fujixerox.docuworks.binder",
      ".xbm"       => "image/x-xbitmap",
      ".xdm"       => "application/vnd.syncml.dm+xml",
      ".xdp"       => "application/vnd.adobe.xdp+xml",
      ".xdw"       => "application/vnd.fujixerox.docuworks",
      ".xenc"      => "application/xenc+xml",
      ".xer"       => "application/patch-ops-error+xml",
      ".xfdf"      => "application/vnd.adobe.xfdf",
      ".xfdl"      => "application/vnd.xfdl",
      ".xhtml"     => "application/xhtml+xml",
      ".xif"       => "image/vnd.xiff",
      ".xla"       => "application/vnd.ms-excel",
      ".xlam"      => "application/vnd.ms-excel.addin.macroEnabled.12",
      ".xls"       => "application/vnd.ms-excel",
      ".xlsb"      => "application/vnd.ms-excel.sheet.binary.macroEnabled.12",
      ".xlsx"      => "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
      ".xlsm"      => "application/vnd.ms-excel.sheet.macroEnabled.12",
      ".xlt"       => "application/vnd.ms-excel",
      ".xltx"      => "application/vnd.openxmlformats-officedocument.spreadsheetml.template",
      ".xml"       => "application/xml",
      ".xo"        => "application/vnd.olpc-sugar",
      ".xop"       => "application/xop+xml",
      ".xpm"       => "image/x-xpixmap",
      ".xpr"       => "application/vnd.is-xpr",
      ".xps"       => "application/vnd.ms-xpsdocument",
      ".xpw"       => "application/vnd.intercon.formnet",
      ".xsl"       => "application/xml",
      ".xslt"      => "application/xslt+xml",
      ".xsm"       => "application/vnd.syncml+xml",
      ".xspf"      => "application/xspf+xml",
      ".xul"       => "application/vnd.mozilla.xul+xml",
      ".xwd"       => "image/x-xwindowdump",
      ".xyz"       => "chemical/x-xyz",
      ".yaml"      => "text/yaml",
      ".yml"       => "text/yaml",
      ".zaz"       => "application/vnd.zzazz.deck+xml",
      ".zip"       => "application/zip",
      ".zmm"       => "application/vnd.handheld-entertainment+xml",
    }
  end
end
PKCH[����9share/gems/gems/rack-3.0.8/lib/rack/auth/digest/params.rbnu�[���require_relative '../digest'
PKCH[����6share/gems/gems/rack-3.0.8/lib/rack/auth/digest/md5.rbnu�[���require_relative '../digest'
PKCH[����:share/gems/gems/rack-3.0.8/lib/rack/auth/digest/request.rbnu�[���require_relative '../digest'
PKCH[����8share/gems/gems/rack-3.0.8/lib/rack/auth/digest/nonce.rbnu�[���require_relative '../digest'
PKCH[l��GRR<share/gems/gems/rack-3.0.8/lib/rack/auth/abstract/handler.rbnu�[���# frozen_string_literal: true

require_relative '../../constants'

module Rack
  module Auth
    # Rack::Auth::AbstractHandler implements common authentication functionality.
    #
    # +realm+ should be set for all handlers.

    class AbstractHandler

      attr_accessor :realm

      def initialize(app, realm = nil, &authenticator)
        @app, @realm, @authenticator = app, realm, authenticator
      end


      private

      def unauthorized(www_authenticate = challenge)
        return [ 401,
          { CONTENT_TYPE => 'text/plain',
            CONTENT_LENGTH => '0',
            'www-authenticate' => www_authenticate.to_s },
          []
        ]
      end

      def bad_request
        return [ 400,
          { CONTENT_TYPE => 'text/plain',
            CONTENT_LENGTH => '0' },
          []
        ]
      end

    end
  end
end
PKCH[,��UU<share/gems/gems/rack-3.0.8/lib/rack/auth/abstract/request.rbnu�[���# frozen_string_literal: true

require_relative '../../request'

module Rack
  module Auth
    class AbstractRequest

      def initialize(env)
        @env = env
      end

      def request
        @request ||= Request.new(@env)
      end

      def provided?
        !authorization_key.nil? && valid?
      end

      def valid?
        !@env[authorization_key].nil?
      end

      def parts
        @parts ||= @env[authorization_key].split(' ', 2)
      end

      def scheme
        @scheme ||= parts.first&.downcase
      end

      def params
        @params ||= parts.last
      end


      private

      AUTHORIZATION_KEYS = ['HTTP_AUTHORIZATION', 'X-HTTP_AUTHORIZATION', 'X_HTTP_AUTHORIZATION']

      def authorization_key
        @authorization_key ||= AUTHORIZATION_KEYS.detect { |key| @env.has_key?(key) }
      end

    end

  end
end
PKCH[���

2share/gems/gems/rack-3.0.8/lib/rack/auth/digest.rbnu�[���# frozen_string_literal: true

require_relative 'abstract/handler'
require_relative 'abstract/request'
require 'digest/md5'
require 'base64'

module Rack
  warn "Rack::Auth::Digest is deprecated and will be removed in Rack 3.1", uplevel: 1

  module Auth
    module Digest
      # Rack::Auth::Digest::Nonce is the default nonce generator for the
      # Rack::Auth::Digest::MD5 authentication handler.
      #
      # +private_key+ needs to set to a constant string.
      #
      # +time_limit+ can be optionally set to an integer (number of seconds),
      # to limit the validity of the generated nonces.

      class Nonce

        class << self
          attr_accessor :private_key, :time_limit
        end

        def self.parse(string)
          new(*Base64.decode64(string).split(' ', 2))
        end

        def initialize(timestamp = Time.now, given_digest = nil)
          @timestamp, @given_digest = timestamp.to_i, given_digest
        end

        def to_s
          Base64.encode64("#{@timestamp} #{digest}").strip
        end

        def digest
          ::Digest::MD5.hexdigest("#{@timestamp}:#{self.class.private_key}")
        end

        def valid?
          digest == @given_digest
        end

        def stale?
          !self.class.time_limit.nil? && (Time.now.to_i - @timestamp) > self.class.time_limit
        end

        def fresh?
          !stale?
        end

      end

      class Params < Hash

        def self.parse(str)
          Params[*split_header_value(str).map do |param|
            k, v = param.split('=', 2)
            [k, dequote(v)]
          end.flatten]
        end

        def self.dequote(str) # From WEBrick::HTTPUtils
          ret = (/\A"(.*)"\Z/ =~ str) ? $1 : str.dup
          ret.gsub!(/\\(.)/, "\\1")
          ret
        end

        def self.split_header_value(str)
          str.scan(/\w+\=(?:"[^\"]+"|[^,]+)/n)
        end

        def initialize
          super()

          yield self if block_given?
        end

        def [](k)
          super k.to_s
        end

        def []=(k, v)
          super k.to_s, v.to_s
        end

        UNQUOTED = ['nc', 'stale']

        def to_s
          map do |k, v|
            "#{k}=#{(UNQUOTED.include?(k) ? v.to_s : quote(v))}"
          end.join(', ')
        end

        def quote(str) # From WEBrick::HTTPUtils
          '"' + str.gsub(/[\\\"]/o, "\\\1") + '"'
        end

      end

      class Request < Auth::AbstractRequest
        def method
          @env[RACK_METHODOVERRIDE_ORIGINAL_METHOD] || @env[REQUEST_METHOD]
        end

        def digest?
          "digest" == scheme
        end

        def correct_uri?
          request.fullpath == uri
        end

        def nonce
          @nonce ||= Nonce.parse(params['nonce'])
        end

        def params
          @params ||= Params.parse(parts.last)
        end

        def respond_to?(sym, *)
          super or params.has_key? sym.to_s
        end

        def method_missing(sym, *args)
          return super unless params.has_key?(key = sym.to_s)
          return params[key] if args.size == 0
          raise ArgumentError, "wrong number of arguments (#{args.size} for 0)"
        end
      end

      # Rack::Auth::Digest::MD5 implements the MD5 algorithm version of
      # HTTP Digest Authentication, as per RFC 2617.
      #
      # Initialize with the [Rack] application that you want protecting,
      # and a block that looks up a plaintext password for a given username.
      #
      # +opaque+ needs to be set to a constant base64/hexadecimal string.
      #
      class MD5 < AbstractHandler

        attr_accessor :opaque

        attr_writer :passwords_hashed

        def initialize(app, realm = nil, opaque = nil, &authenticator)
          @passwords_hashed = nil
          if opaque.nil? and realm.respond_to? :values_at
            realm, opaque, @passwords_hashed = realm.values_at :realm, :opaque, :passwords_hashed
          end
          super(app, realm, &authenticator)
          @opaque = opaque
        end

        def passwords_hashed?
          !!@passwords_hashed
        end

        def call(env)
          auth = Request.new(env)

          unless auth.provided?
            return unauthorized
          end

          if !auth.digest? || !auth.correct_uri? || !valid_qop?(auth)
            return bad_request
          end

          if valid?(auth)
            if auth.nonce.stale?
              return unauthorized(challenge(stale: true))
            else
              env['REMOTE_USER'] = auth.username

              return @app.call(env)
            end
          end

          unauthorized
        end


        private

        QOP = 'auth'

        def params(hash = {})
          Params.new do |params|
            params['realm'] = realm
            params['nonce'] = Nonce.new.to_s
            params['opaque'] = H(opaque)
            params['qop'] = QOP

            hash.each { |k, v| params[k] = v }
          end
        end

        def challenge(hash = {})
          "Digest #{params(hash)}"
        end

        def valid?(auth)
          valid_opaque?(auth) && valid_nonce?(auth) && valid_digest?(auth)
        end

        def valid_qop?(auth)
          QOP == auth.qop
        end

        def valid_opaque?(auth)
          H(opaque) == auth.opaque
        end

        def valid_nonce?(auth)
          auth.nonce.valid?
        end

        def valid_digest?(auth)
          pw = @authenticator.call(auth.username)
          pw && Rack::Utils.secure_compare(digest(auth, pw), auth.response)
        end

        def md5(data)
          ::Digest::MD5.hexdigest(data)
        end

        alias :H :md5

        def KD(secret, data)
          H "#{secret}:#{data}"
        end

        def A1(auth, password)
          "#{auth.username}:#{auth.realm}:#{password}"
        end

        def A2(auth)
          "#{auth.method}:#{auth.uri}"
        end

        def digest(auth, password)
          password_hash = passwords_hashed? ? password : H(A1(auth, password))

          KD password_hash, "#{auth.nonce}:#{auth.nc}:#{auth.cnonce}:#{QOP}:#{H A2(auth)}"
        end

      end
    end
  end
end

PKCH[�����1share/gems/gems/rack-3.0.8/lib/rack/auth/basic.rbnu�[���# frozen_string_literal: true

require_relative 'abstract/handler'
require_relative 'abstract/request'
require 'base64'

module Rack
  module Auth
    # Rack::Auth::Basic implements HTTP Basic Authentication, as per RFC 2617.
    #
    # Initialize with the Rack application that you want protecting,
    # and a block that checks if a username and password pair are valid.

    class Basic < AbstractHandler

      def call(env)
        auth = Basic::Request.new(env)

        return unauthorized unless auth.provided?

        return bad_request unless auth.basic?

        if valid?(auth)
          env['REMOTE_USER'] = auth.username

          return @app.call(env)
        end

        unauthorized
      end


      private

      def challenge
        'Basic realm="%s"' % realm
      end

      def valid?(auth)
        @authenticator.call(*auth.credentials)
      end

      class Request < Auth::AbstractRequest
        def basic?
          "basic" == scheme && credentials.length == 2
        end

        def credentials
          @credentials ||= Base64.decode64(params).split(':', 2)
        end

        def username
          credentials.first
        end
      end

    end
  end
end
PKCH[�N�$$>share/gems/gems/rack-3.0.8/lib/rack/multipart/uploaded_file.rbnu�[���# frozen_string_literal: true

require 'tempfile'
require 'fileutils'

module Rack
  module Multipart
    class UploadedFile

      # The filename, *not* including the path, of the "uploaded" file
      attr_reader :original_filename

      # The content type of the "uploaded" file
      attr_accessor :content_type

      def initialize(filepath = nil, ct = "text/plain", bin = false,
                     path: filepath, content_type: ct, binary: bin, filename: nil, io: nil)
        if io
          @tempfile = io
          @original_filename = filename
        else
          raise "#{path} file does not exist" unless ::File.exist?(path)
          @original_filename = filename || ::File.basename(path)
          @tempfile = Tempfile.new([@original_filename, ::File.extname(path)], encoding: Encoding::BINARY)
          @tempfile.binmode if binary
          FileUtils.copy_file(path, @tempfile.path)
        end
        @content_type = content_type
      end

      def path
        @tempfile.path if @tempfile.respond_to?(:path)
      end
      alias_method :local_path, :path

      def respond_to?(*args)
        super or @tempfile.respond_to?(*args)
      end

      def method_missing(method_name, *args, &block) #:nodoc:
        @tempfile.__send__(method_name, *args, &block)
      end
    end
  end
end
PKCH[��&�4�47share/gems/gems/rack-3.0.8/lib/rack/multipart/parser.rbnu�[���# frozen_string_literal: true

require 'strscan'

require_relative '../utils'

module Rack
  module Multipart
    class MultipartPartLimitError < Errno::EMFILE; end

    class MultipartTotalPartLimitError < StandardError; end

    # Use specific error class when parsing multipart request
    # that ends early.
    class EmptyContentError < ::EOFError; end

    # Base class for multipart exceptions that do not subclass from
    # other exception classes for backwards compatibility.
    class Error < StandardError; end

    EOL = "\r\n"
    MULTIPART = %r|\Amultipart/.*boundary=\"?([^\";,]+)\"?|ni
    TOKEN = /[^\s()<>,;:\\"\/\[\]?=]+/
    CONDISP = /Content-Disposition:\s*#{TOKEN}\s*/i
    VALUE = /"(?:\\"|[^"])*"|#{TOKEN}/
    BROKEN = /^#{CONDISP}.*;\s*filename=(#{VALUE})/i
    MULTIPART_CONTENT_TYPE = /Content-Type: (.*)#{EOL}/ni
    MULTIPART_CONTENT_DISPOSITION = /Content-Disposition:[^:]*;\s*name=(#{VALUE})/ni
    MULTIPART_CONTENT_ID = /Content-ID:\s*([^#{EOL}]*)/ni
    # Updated definitions from RFC 2231
    ATTRIBUTE_CHAR = %r{[^ \x00-\x1f\x7f)(><@,;:\\"/\[\]?='*%]}
    ATTRIBUTE = /#{ATTRIBUTE_CHAR}+/
    SECTION = /\*[0-9]+/
    REGULAR_PARAMETER_NAME = /#{ATTRIBUTE}#{SECTION}?/
    REGULAR_PARAMETER = /(#{REGULAR_PARAMETER_NAME})=(#{VALUE})/
    EXTENDED_OTHER_NAME = /#{ATTRIBUTE}\*[1-9][0-9]*\*/
    EXTENDED_OTHER_VALUE = /%[0-9a-fA-F]{2}|#{ATTRIBUTE_CHAR}/
    EXTENDED_OTHER_PARAMETER = /(#{EXTENDED_OTHER_NAME})=(#{EXTENDED_OTHER_VALUE}*)/
    EXTENDED_INITIAL_NAME = /#{ATTRIBUTE}(?:\*0)?\*/
    EXTENDED_INITIAL_VALUE = /[a-zA-Z0-9\-]*'[a-zA-Z0-9\-]*'#{EXTENDED_OTHER_VALUE}*/
    EXTENDED_INITIAL_PARAMETER = /(#{EXTENDED_INITIAL_NAME})=(#{EXTENDED_INITIAL_VALUE})/
    EXTENDED_PARAMETER = /#{EXTENDED_INITIAL_PARAMETER}|#{EXTENDED_OTHER_PARAMETER}/
    DISPPARM = /;\s*(?:#{REGULAR_PARAMETER}|#{EXTENDED_PARAMETER})\s*/
    RFC2183 = /^#{CONDISP}(#{DISPPARM})+$/i

    class Parser
      BUFSIZE = 1_048_576
      TEXT_PLAIN = "text/plain"
      TEMPFILE_FACTORY = lambda { |filename, content_type|
        Tempfile.new(["RackMultipart", ::File.extname(filename.gsub("\0", '%00'))])
      }

      class BoundedIO # :nodoc:
        def initialize(io, content_length)
          @io             = io
          @content_length = content_length
          @cursor = 0
        end

        def read(size, outbuf = nil)
          return if @cursor >= @content_length

          left = @content_length - @cursor

          str = if left < size
                  @io.read left, outbuf
                else
                  @io.read size, outbuf
                end

          if str
            @cursor += str.bytesize
          else
            # Raise an error for mismatching content-length and actual contents
            raise EOFError, "bad content body"
          end

          str
        end
      end

      MultipartInfo = Struct.new :params, :tmp_files
      EMPTY         = MultipartInfo.new(nil, [])

      def self.parse_boundary(content_type)
        return unless content_type
        data = content_type.match(MULTIPART)
        return unless data
        data[1]
      end

      def self.parse(io, content_length, content_type, tmpfile, bufsize, qp)
        return EMPTY if 0 == content_length

        boundary = parse_boundary content_type
        return EMPTY unless boundary

        if boundary.length > 70
          # RFC 1521 Section 7.2.1 imposes a 70 character maximum for the boundary.
          # Most clients use no more than 55 characters.
          raise Error, "multipart boundary size too large (#{boundary.length} characters)"
        end

        io = BoundedIO.new(io, content_length) if content_length

        parser = new(boundary, tmpfile, bufsize, qp)
        parser.parse(io)

        parser.result
      end

      class Collector
        class MimePart < Struct.new(:body, :head, :filename, :content_type, :name)
          def get_data
            data = body
            if filename == ""
              # filename is blank which means no file has been selected
              return
            elsif filename
              body.rewind if body.respond_to?(:rewind)

              # Take the basename of the upload's original filename.
              # This handles the full Windows paths given by Internet Explorer
              # (and perhaps other broken user agents) without affecting
              # those which give the lone filename.
              fn = filename.split(/[\/\\]/).last

              data = { filename: fn, type: content_type,
                      name: name, tempfile: body, head: head }
            end

            yield data
          end
        end

        class BufferPart < MimePart
          def file?; false; end
          def close; end
        end

        class TempfilePart < MimePart
          def file?; true; end
          def close; body.close; end
        end

        include Enumerable

        def initialize(tempfile)
          @tempfile = tempfile
          @mime_parts = []
          @open_files = 0
        end

        def each
          @mime_parts.each { |part| yield part }
        end

        def on_mime_head(mime_index, head, filename, content_type, name)
          if filename
            body = @tempfile.call(filename, content_type)
            body.binmode if body.respond_to?(:binmode)
            klass = TempfilePart
            @open_files += 1
          else
            body = String.new
            klass = BufferPart
          end

          @mime_parts[mime_index] = klass.new(body, head, filename, content_type, name)

          check_part_limits
        end

        def on_mime_body(mime_index, content)
          @mime_parts[mime_index].body << content
        end

        def on_mime_finish(mime_index)
        end

        private

        def check_part_limits
          file_limit = Utils.multipart_file_limit
          part_limit = Utils.multipart_total_part_limit

          if file_limit && file_limit > 0
            if @open_files >= file_limit
              @mime_parts.each(&:close)
              raise MultipartPartLimitError, 'Maximum file multiparts in content reached'
            end
          end

          if part_limit && part_limit > 0
            if @mime_parts.size >= part_limit
              @mime_parts.each(&:close)
              raise MultipartTotalPartLimitError, 'Maximum total multiparts in content reached'
            end
          end
        end
      end

      attr_reader :state

      def initialize(boundary, tempfile, bufsize, query_parser)
        @query_parser   = query_parser
        @params         = query_parser.make_params
        @bufsize        = bufsize

        @state = :FAST_FORWARD
        @mime_index = 0
        @collector = Collector.new tempfile

        @sbuf = StringScanner.new("".dup)
        @body_regex = /(?:#{EOL}|\A)--#{Regexp.quote(boundary)}(?:#{EOL}|--)/m
        @rx_max_size = boundary.bytesize + 6 # (\r\n-- at start, either \r\n or -- at finish)
        @head_regex = /(.*?#{EOL})#{EOL}/m
      end

      def parse(io)
        outbuf = String.new
        read_data(io, outbuf)

        loop do
          status =
            case @state
            when :FAST_FORWARD
              handle_fast_forward
            when :CONSUME_TOKEN
              handle_consume_token
            when :MIME_HEAD
              handle_mime_head
            when :MIME_BODY
              handle_mime_body
            else # when :DONE
              return
            end

          read_data(io, outbuf) if status == :want_read
        end
      end

      def result
        @collector.each do |part|
          part.get_data do |data|
            tag_multipart_encoding(part.filename, part.content_type, part.name, data)
            @query_parser.normalize_params(@params, part.name, data)
          end
        end
        MultipartInfo.new @params.to_params_hash, @collector.find_all(&:file?).map(&:body)
      end

      private

      def dequote(str) # From WEBrick::HTTPUtils
        ret = (/\A"(.*)"\Z/ =~ str) ? $1 : str.dup
        ret.gsub!(/\\(.)/, "\\1")
        ret
      end

      def read_data(io, outbuf)
        content = io.read(@bufsize, outbuf)
        handle_empty_content!(content)
        @sbuf.concat(content)
      end

      # This handles the initial parser state.  We read until we find the starting
      # boundary, then we can transition to the next state. If we find the ending
      # boundary, this is an invalid multipart upload, but keep scanning for opening
      # boundary in that case. If no boundary found, we need to keep reading data
      # and retry. It's highly unlikely the initial read will not consume the
      # boundary.  The client would have to deliberately craft a response
      # with the opening boundary beyond the buffer size for that to happen.
      def handle_fast_forward
        while true
          case consume_boundary
          when :BOUNDARY
            # found opening boundary, transition to next state
            @state = :MIME_HEAD
            return
          when :END_BOUNDARY
            # invalid multipart upload, but retry for opening boundary
          else
            # no boundary found, keep reading data
            return :want_read
          end
        end
      end

      def handle_consume_token
        tok = consume_boundary
        # break if we're at the end of a buffer, but not if it is the end of a field
        @state = if tok == :END_BOUNDARY || (@sbuf.eos? && tok != :BOUNDARY)
          :DONE
        else
          :MIME_HEAD
        end
      end

      def handle_mime_head
        if @sbuf.scan_until(@head_regex)
          head = @sbuf[1]
          content_type = head[MULTIPART_CONTENT_TYPE, 1]
          if name = head[MULTIPART_CONTENT_DISPOSITION, 1]
            name = dequote(name)
          else
            name = head[MULTIPART_CONTENT_ID, 1]
          end

          filename = get_filename(head)

          if name.nil? || name.empty?
            name = filename || "#{content_type || TEXT_PLAIN}[]".dup
          end

          @collector.on_mime_head @mime_index, head, filename, content_type, name
          @state = :MIME_BODY
        else
          :want_read
        end
      end

      def handle_mime_body
        if (body_with_boundary = @sbuf.check_until(@body_regex)) # check but do not advance the pointer yet
          body = body_with_boundary.sub(/#{@body_regex}\z/m, '') # remove the boundary from the string
          @collector.on_mime_body @mime_index, body
          @sbuf.pos += body.length + 2 # skip \r\n after the content
          @state = :CONSUME_TOKEN
          @mime_index += 1
        else
          # Save what we have so far
          if @rx_max_size < @sbuf.rest_size
            delta = @sbuf.rest_size - @rx_max_size
            @collector.on_mime_body @mime_index, @sbuf.peek(delta)
            @sbuf.pos += delta
            @sbuf.string = @sbuf.rest
          end
          :want_read
        end
      end

      # Scan until the we find the start or end of the boundary.
      # If we find it, return the appropriate symbol for the start or
      # end of the boundary.  If we don't find the start or end of the
      # boundary, clear the buffer and return nil.
      def consume_boundary
        if read_buffer = @sbuf.scan_until(@body_regex)
          read_buffer.end_with?(EOL) ? :BOUNDARY : :END_BOUNDARY
        else
          @sbuf.terminate
          nil
        end
      end

      def get_filename(head)
        filename = nil
        case head
        when RFC2183
          params = Hash[*head.scan(DISPPARM).flat_map(&:compact)]

          if filename = params['filename*']
            encoding, _, filename = filename.split("'", 3)
          elsif filename = params['filename']
            filename = $1 if filename =~ /^"(.*)"$/
          end
        when BROKEN
          filename = $1
          filename = $1 if filename =~ /^"(.*)"$/
        end

        return unless filename

        if filename.scan(/%.?.?/).all? { |s| /%[0-9a-fA-F]{2}/.match?(s) }
          filename = Utils.unescape_path(filename)
        end

        filename.scrub!

        if filename !~ /\\[^\\"]/
          filename = filename.gsub(/\\(.)/, '\1')
        end

        if encoding
          filename.force_encoding ::Encoding.find(encoding)
        end

        filename
      end

      CHARSET = "charset"
      deprecate_constant :CHARSET

      def tag_multipart_encoding(filename, content_type, name, body)
        name = name.to_s
        encoding = Encoding::UTF_8

        name.force_encoding(encoding)

        return if filename

        if content_type
          list         = content_type.split(';')
          type_subtype = list.first
          type_subtype.strip!
          if TEXT_PLAIN == type_subtype
            rest = list.drop 1
            rest.each do |param|
              k, v = param.split('=', 2)
              k.strip!
              v.strip!
              v = v[1..-2] if v.start_with?('"') && v.end_with?('"')
              if k == "charset"
                encoding = begin
                  Encoding.find v
                rescue ArgumentError
                  Encoding::BINARY
                end
              end
            end
          end
        end

        name.force_encoding(encoding)
        body.force_encoding(encoding)
      end

      def handle_empty_content!(content)
        if content.nil? || content.empty?
          raise EmptyContentError
        end
      end
    end
  end
end
PKCH[��l�	�	:share/gems/gems/rack-3.0.8/lib/rack/multipart/generator.rbnu�[���# frozen_string_literal: true

require_relative 'uploaded_file'

module Rack
  module Multipart
    class Generator
      def initialize(params, first = true)
        @params, @first = params, first

        if @first && !@params.is_a?(Hash)
          raise ArgumentError, "value must be a Hash"
        end
      end

      def dump
        return nil if @first && !multipart?
        return flattened_params unless @first

        flattened_params.map do |name, file|
          if file.respond_to?(:original_filename)
            if file.path
              ::File.open(file.path, 'rb') do |f|
                f.set_encoding(Encoding::BINARY)
                content_for_tempfile(f, file, name)
              end
            else
              content_for_tempfile(file, file, name)
            end
          else
            content_for_other(file, name)
          end
        end.join << "--#{MULTIPART_BOUNDARY}--\r"
      end

      private
      def multipart?
        query = lambda { |value|
          case value
          when Array
            value.any?(&query)
          when Hash
            value.values.any?(&query)
          when Rack::Multipart::UploadedFile
            true
          end
        }

        @params.values.any?(&query)
      end

      def flattened_params
        @flattened_params ||= begin
          h = Hash.new
          @params.each do |key, value|
            k = @first ? key.to_s : "[#{key}]"

            case value
            when Array
              value.map { |v|
                Multipart.build_multipart(v, false).each { |subkey, subvalue|
                  h["#{k}[]#{subkey}"] = subvalue
                }
              }
            when Hash
              Multipart.build_multipart(value, false).each { |subkey, subvalue|
                h[k + subkey] = subvalue
              }
            else
              h[k] = value
            end
          end
          h
        end
      end

      def content_for_tempfile(io, file, name)
        length = ::File.stat(file.path).size if file.path
        filename = "; filename=\"#{Utils.escape_path(file.original_filename)}\""
<<-EOF
--#{MULTIPART_BOUNDARY}\r
content-disposition: form-data; name="#{name}"#{filename}\r
content-type: #{file.content_type}\r
#{"content-length: #{length}\r\n" if length}\r
#{io.read}\r
EOF
      end

      def content_for_other(file, name)
<<-EOF
--#{MULTIPART_BOUNDARY}\r
content-disposition: form-data; name="#{name}"\r
\r
#{file}\r
EOF
      end
    end
  end
end
PKCH[N4q���3share/gems/gems/rack-3.0.8/lib/rack/content_type.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'

module Rack

  # Sets the content-type header on responses which don't have one.
  #
  # Builder Usage:
  #   use Rack::ContentType, "text/plain"
  #
  # When no content type argument is provided, "text/html" is the
  # default.
  class ContentType
    include Rack::Utils

    def initialize(app, content_type = "text/html")
      @app = app
      @content_type = content_type
    end

    def call(env)
      status, headers, _ = response = @app.call(env)

      unless STATUS_WITH_NO_ENTITY_BODY.key?(status.to_i)
        headers[CONTENT_TYPE] ||= @content_type
      end

      response
    end
  end
end
PKCH[��՝[�[�+share/gems/gems/rack-3.0.8/lib/rack/lint.rbnuȯ��# frozen_string_literal: true

require 'forwardable'

require_relative 'constants'
require_relative 'utils'

module Rack
  # Rack::Lint validates your application and the requests and
  # responses according to the Rack spec.

  class Lint
    def initialize(app)
      @app = app
    end

    # :stopdoc:

    class LintError < RuntimeError; end
    # AUTHORS: n.b. The trailing whitespace between paragraphs is important and
    # should not be removed. The whitespace creates paragraphs in the RDoc
    # output.
    #
    ## This specification aims to formalize the Rack protocol. You
    ## can (and should) use Rack::Lint to enforce it.
    ##
    ## When you develop middleware, be sure to add a Lint before and
    ## after to catch all mistakes.
    ##
    ## = Rack applications
    ##
    ## A Rack application is a Ruby object (not a class) that
    ## responds to +call+.
    def call(env = nil)
      Wrapper.new(@app, env).response
    end

    class Wrapper
      def initialize(app, env)
        @app = app
        @env = env
        @response = nil
        @head_request = false

        @status = nil
        @headers = nil
        @body = nil
        @invoked = nil
        @content_length = nil
        @closed = false
        @size = 0
      end

      def response
        ## It takes exactly one argument, the *environment*
        raise LintError, "No env given" unless @env
        check_environment(@env)

        @env[RACK_INPUT] = InputWrapper.new(@env[RACK_INPUT])
        @env[RACK_ERRORS] = ErrorWrapper.new(@env[RACK_ERRORS])

        ## and returns a non-frozen Array of exactly three values:
        @response = @app.call(@env)
        raise LintError, "response is not an Array, but #{@response.class}" unless @response.kind_of? Array
        raise LintError, "response is frozen" if @response.frozen?
        raise LintError, "response array has #{@response.size} elements instead of 3" unless @response.size == 3

        @status, @headers, @body = @response
        ## The *status*,
        check_status(@status)

        ## the *headers*,
        check_headers(@headers)

        hijack_proc = check_hijack_response(@headers, @env)
        if hijack_proc
          @headers[RACK_HIJACK] = hijack_proc
        end

        ## and the *body*.
        check_content_type(@status, @headers)
        check_content_length(@status, @headers)
        @head_request = @env[REQUEST_METHOD] == HEAD

        @lint = (@env['rack.lint'] ||= []) << self

        if (@env['rack.lint.body_iteration'] ||= 0) > 0
          raise LintError, "Middleware must not call #each directly"
        end

        return [@status, @headers, self]
      end

      ##
      ## == The Environment
      ##
      def check_environment(env)
        ## The environment must be an unfrozen instance of Hash that includes
        ## CGI-like headers. The Rack application is free to modify the
        ## environment.
        raise LintError, "env #{env.inspect} is not a Hash, but #{env.class}" unless env.kind_of? Hash
        raise LintError, "env should not be frozen, but is" if env.frozen?

        ##
        ## The environment is required to include these variables
        ## (adopted from {PEP 333}[https://peps.python.org/pep-0333/]), except when they'd be empty, but see
        ## below.

        ## <tt>REQUEST_METHOD</tt>:: The HTTP request method, such as
        ##                           "GET" or "POST". This cannot ever
        ##                           be an empty string, and so is
        ##                           always required.

        ## <tt>SCRIPT_NAME</tt>:: The initial portion of the request
        ##                        URL's "path" that corresponds to the
        ##                        application object, so that the
        ##                        application knows its virtual
        ##                        "location". This may be an empty
        ##                        string, if the application corresponds
        ##                        to the "root" of the server.

        ## <tt>PATH_INFO</tt>:: The remainder of the request URL's
        ##                      "path", designating the virtual
        ##                      "location" of the request's target
        ##                      within the application. This may be an
        ##                      empty string, if the request URL targets
        ##                      the application root and does not have a
        ##                      trailing slash. This value may be
        ##                      percent-encoded when originating from
        ##                      a URL.

        ## <tt>QUERY_STRING</tt>:: The portion of the request URL that
        ##                         follows the <tt>?</tt>, if any. May be
        ##                         empty, but is always required!

        ## <tt>SERVER_NAME</tt>:: When combined with <tt>SCRIPT_NAME</tt> and
        ##                        <tt>PATH_INFO</tt>, these variables can be
        ##                        used to complete the URL. Note, however,
        ##                        that <tt>HTTP_HOST</tt>, if present,
        ##                        should be used in preference to
        ##                        <tt>SERVER_NAME</tt> for reconstructing
        ##                        the request URL.
        ##                        <tt>SERVER_NAME</tt> can never be an empty
        ##                        string, and so is always required.

        ## <tt>SERVER_PORT</tt>:: An optional +Integer+ which is the port the
        ##                        server is running on. Should be specified if
        ##                        the server is running on a non-standard port.

        ## <tt>SERVER_PROTOCOL</tt>:: A string representing the HTTP version used
        ##                            for the request.

        ## <tt>HTTP_</tt> Variables:: Variables corresponding to the
        ##                            client-supplied HTTP request
        ##                            headers (i.e., variables whose
        ##                            names begin with <tt>HTTP_</tt>). The
        ##                            presence or absence of these
        ##                            variables should correspond with
        ##                            the presence or absence of the
        ##                            appropriate HTTP header in the
        ##                            request. See
        ##                            {RFC3875 section 4.1.18}[https://tools.ietf.org/html/rfc3875#section-4.1.18]
        ##                            for specific behavior.

        ## In addition to this, the Rack environment must include these
        ## Rack-specific variables:

        ## <tt>rack.url_scheme</tt>:: +http+ or +https+, depending on the
        ##                            request URL.

        ## <tt>rack.input</tt>:: See below, the input stream.

        ## <tt>rack.errors</tt>:: See below, the error stream.

        ## <tt>rack.hijack?</tt>:: See below, if present and true, indicates
        ##                         that the server supports partial hijacking.

        ## <tt>rack.hijack</tt>:: See below, if present, an object responding
        ##                        to +call+ that is used to perform a full
        ##                        hijack.

        ## Additional environment specifications have approved to
        ## standardized middleware APIs. None of these are required to
        ## be implemented by the server.

        ## <tt>rack.session</tt>:: A hash-like interface for storing
        ##                         request session data.
        ##                         The store must implement:
        if session = env[RACK_SESSION]
          ##                         store(key, value)         (aliased as []=);
          unless session.respond_to?(:store) && session.respond_to?(:[]=)
            raise LintError, "session #{session.inspect} must respond to store and []="
          end

          ##                         fetch(key, default = nil) (aliased as []);
          unless session.respond_to?(:fetch) && session.respond_to?(:[])
            raise LintError, "session #{session.inspect} must respond to fetch and []"
          end

          ##                         delete(key);
          unless session.respond_to?(:delete)
            raise LintError, "session #{session.inspect} must respond to delete"
          end

          ##                         clear;
          unless session.respond_to?(:clear)
            raise LintError, "session #{session.inspect} must respond to clear"
          end

          ##                         to_hash (returning unfrozen Hash instance);
          unless session.respond_to?(:to_hash) && session.to_hash.kind_of?(Hash) && !session.to_hash.frozen?
            raise LintError, "session #{session.inspect} must respond to to_hash and return unfrozen Hash instance"
          end
        end

        ## <tt>rack.logger</tt>:: A common object interface for logging messages.
        ##                        The object must implement:
        if logger = env[RACK_LOGGER]
          ##                         info(message, &block)
          unless logger.respond_to?(:info)
            raise LintError, "logger #{logger.inspect} must respond to info"
          end

          ##                         debug(message, &block)
          unless logger.respond_to?(:debug)
            raise LintError, "logger #{logger.inspect} must respond to debug"
          end

          ##                         warn(message, &block)
          unless logger.respond_to?(:warn)
            raise LintError, "logger #{logger.inspect} must respond to warn"
          end

          ##                         error(message, &block)
          unless logger.respond_to?(:error)
            raise LintError, "logger #{logger.inspect} must respond to error"
          end

          ##                         fatal(message, &block)
          unless logger.respond_to?(:fatal)
            raise LintError, "logger #{logger.inspect} must respond to fatal"
          end
        end

        ## <tt>rack.multipart.buffer_size</tt>:: An Integer hint to the multipart parser as to what chunk size to use for reads and writes.
        if bufsize = env[RACK_MULTIPART_BUFFER_SIZE]
          unless bufsize.is_a?(Integer) && bufsize > 0
            raise LintError, "rack.multipart.buffer_size must be an Integer > 0 if specified"
          end
        end

        ## <tt>rack.multipart.tempfile_factory</tt>:: An object responding to #call with two arguments, the filename and content_type given for the multipart form field, and returning an IO-like object that responds to #<< and optionally #rewind. This factory will be used to instantiate the tempfile for each multipart form file upload field, rather than the default class of Tempfile.
        if tempfile_factory = env[RACK_MULTIPART_TEMPFILE_FACTORY]
          raise LintError, "rack.multipart.tempfile_factory must respond to #call" unless tempfile_factory.respond_to?(:call)
          env[RACK_MULTIPART_TEMPFILE_FACTORY] = lambda do |filename, content_type|
            io = tempfile_factory.call(filename, content_type)
            raise LintError, "rack.multipart.tempfile_factory return value must respond to #<<" unless io.respond_to?(:<<)
            io
          end
        end

        ## The server or the application can store their own data in the
        ## environment, too.  The keys must contain at least one dot,
        ## and should be prefixed uniquely.  The prefix <tt>rack.</tt>
        ## is reserved for use with the Rack core distribution and other
        ## accepted specifications and must not be used otherwise.
        ##

        %w[REQUEST_METHOD SERVER_NAME QUERY_STRING SERVER_PROTOCOL
           rack.input rack.errors].each { |header|
          raise LintError, "env missing required key #{header}" unless env.include? header
        }

        ## The <tt>SERVER_PORT</tt> must be an Integer if set.
        server_port = env["SERVER_PORT"]
        unless server_port.nil? || (Integer(server_port) rescue false)
          raise LintError, "env[SERVER_PORT] is not an Integer"
        end

        ## The <tt>SERVER_NAME</tt> must be a valid authority as defined by RFC7540.
        unless (URI.parse("http://#{env[SERVER_NAME]}/") rescue false)
          raise LintError, "#{env[SERVER_NAME]} must be a valid authority"
        end

        ## The <tt>HTTP_HOST</tt> must be a valid authority as defined by RFC7540.
        unless (URI.parse("http://#{env[HTTP_HOST]}/") rescue false)
          raise LintError, "#{env[HTTP_HOST]} must be a valid authority"
        end

        ## The <tt>SERVER_PROTOCOL</tt> must match the regexp <tt>HTTP/\d(\.\d)?</tt>.
        server_protocol = env['SERVER_PROTOCOL']
        unless %r{HTTP/\d(\.\d)?}.match?(server_protocol)
          raise LintError, "env[SERVER_PROTOCOL] does not match HTTP/\\d(\\.\\d)?"
        end

        ## If the <tt>HTTP_VERSION</tt> is present, it must equal the <tt>SERVER_PROTOCOL</tt>.
        if env['HTTP_VERSION'] && env['HTTP_VERSION'] != server_protocol
          raise LintError, "env[HTTP_VERSION] does not equal env[SERVER_PROTOCOL]"
        end

        ## The environment must not contain the keys
        ## <tt>HTTP_CONTENT_TYPE</tt> or <tt>HTTP_CONTENT_LENGTH</tt>
        ## (use the versions without <tt>HTTP_</tt>).
        %w[HTTP_CONTENT_TYPE HTTP_CONTENT_LENGTH].each { |header|
          if env.include? header
            raise LintError, "env contains #{header}, must use #{header[5..-1]}"
          end
        }

        ## The CGI keys (named without a period) must have String values.
        ## If the string values for CGI keys contain non-ASCII characters,
        ## they should use ASCII-8BIT encoding.
        env.each { |key, value|
          next  if key.include? "."   # Skip extensions
          unless value.kind_of? String
            raise LintError, "env variable #{key} has non-string value #{value.inspect}"
          end
          next if value.encoding == Encoding::ASCII_8BIT
          unless value.b !~ /[\x80-\xff]/n
            raise LintError, "env variable #{key} has value containing non-ASCII characters and has non-ASCII-8BIT encoding #{value.inspect} encoding: #{value.encoding}"
          end
        }

        ## There are the following restrictions:

        ## * <tt>rack.url_scheme</tt> must either be +http+ or +https+.
        unless %w[http https].include?(env[RACK_URL_SCHEME])
          raise LintError, "rack.url_scheme unknown: #{env[RACK_URL_SCHEME].inspect}"
        end

        ## * There must be a valid input stream in <tt>rack.input</tt>.
        check_input env[RACK_INPUT]
        ## * There must be a valid error stream in <tt>rack.errors</tt>.
        check_error env[RACK_ERRORS]
        ## * There may be a valid hijack callback in <tt>rack.hijack</tt>
        check_hijack env

        ## * The <tt>REQUEST_METHOD</tt> must be a valid token.
        unless env[REQUEST_METHOD] =~ /\A[0-9A-Za-z!\#$%&'*+.^_`|~-]+\z/
          raise LintError, "REQUEST_METHOD unknown: #{env[REQUEST_METHOD].dump}"
        end

        ## * The <tt>SCRIPT_NAME</tt>, if non-empty, must start with <tt>/</tt>
        if env.include?(SCRIPT_NAME) && env[SCRIPT_NAME] != "" && env[SCRIPT_NAME] !~ /\A\//
          raise LintError, "SCRIPT_NAME must start with /"
        end
        ## * The <tt>PATH_INFO</tt>, if non-empty, must start with <tt>/</tt>
        if env.include?(PATH_INFO) && env[PATH_INFO] != "" && env[PATH_INFO] !~ /\A\//
          raise LintError, "PATH_INFO must start with /"
        end
        ## * The <tt>CONTENT_LENGTH</tt>, if given, must consist of digits only.
        if env.include?("CONTENT_LENGTH") && env["CONTENT_LENGTH"] !~ /\A\d+\z/
          raise LintError, "Invalid CONTENT_LENGTH: #{env["CONTENT_LENGTH"]}"
        end

        ## * One of <tt>SCRIPT_NAME</tt> or <tt>PATH_INFO</tt> must be
        ##   set. <tt>PATH_INFO</tt> should be <tt>/</tt> if
        ##   <tt>SCRIPT_NAME</tt> is empty.
        unless env[SCRIPT_NAME] || env[PATH_INFO]
          raise LintError, "One of SCRIPT_NAME or PATH_INFO must be set (make PATH_INFO '/' if SCRIPT_NAME is empty)"
        end
        ##   <tt>SCRIPT_NAME</tt> never should be <tt>/</tt>, but instead be empty.
        unless env[SCRIPT_NAME] != "/"
          raise LintError, "SCRIPT_NAME cannot be '/', make it '' and PATH_INFO '/'"
        end

        ## <tt>rack.response_finished</tt>:: An array of callables run by the server after the response has been
        ## processed. This would typically be invoked after sending the response to the client, but it could also be
        ## invoked if an error occurs while generating the response or sending the response; in that case, the error
        ## argument will be a subclass of +Exception+.
        ## The callables are invoked with +env, status, headers, error+ arguments and should not raise any
        ## exceptions. They should be invoked in reverse order of registration.
        if callables = env[RACK_RESPONSE_FINISHED]
          raise LintError, "rack.response_finished must be an array of callable objects" unless callables.is_a?(Array)

          callables.each do |callable|
            raise LintError, "rack.response_finished values must respond to call(env, status, headers, error)" unless callable.respond_to?(:call)
          end
        end
      end

      ##
      ## === The Input Stream
      ##
      ## The input stream is an IO-like object which contains the raw HTTP
      ## POST data.
      def check_input(input)
        ## When applicable, its external encoding must be "ASCII-8BIT" and it
        ## must be opened in binary mode, for Ruby 1.9 compatibility.
        if input.respond_to?(:external_encoding) && input.external_encoding != Encoding::ASCII_8BIT
          raise LintError, "rack.input #{input} does not have ASCII-8BIT as its external encoding"
        end
        if input.respond_to?(:binmode?) && !input.binmode?
          raise LintError, "rack.input #{input} is not opened in binary mode"
        end

        ## The input stream must respond to +gets+, +each+, and +read+.
        [:gets, :each, :read].each { |method|
          unless input.respond_to? method
            raise LintError, "rack.input #{input} does not respond to ##{method}"
          end
        }
      end

      class InputWrapper
        def initialize(input)
          @input = input
        end

        ## * +gets+ must be called without arguments and return a string,
        ##   or +nil+ on EOF.
        def gets(*args)
          raise LintError, "rack.input#gets called with arguments" unless args.size == 0
          v = @input.gets
          unless v.nil? or v.kind_of? String
            raise LintError, "rack.input#gets didn't return a String"
          end
          v
        end

        ## * +read+ behaves like IO#read.
        ##   Its signature is <tt>read([length, [buffer]])</tt>.
        ##
        ##   If given, +length+ must be a non-negative Integer (>= 0) or +nil+,
        ##   and +buffer+ must be a String and may not be nil.
        ##
        ##   If +length+ is given and not nil, then this method reads at most
        ##   +length+ bytes from the input stream.
        ##
        ##   If +length+ is not given or nil, then this method reads
        ##   all data until EOF.
        ##
        ##   When EOF is reached, this method returns nil if +length+ is given
        ##   and not nil, or "" if +length+ is not given or is nil.
        ##
        ##   If +buffer+ is given, then the read data will be placed
        ##   into +buffer+ instead of a newly created String object.
        def read(*args)
          unless args.size <= 2
            raise LintError, "rack.input#read called with too many arguments"
          end
          if args.size >= 1
            unless args.first.kind_of?(Integer) || args.first.nil?
              raise LintError, "rack.input#read called with non-integer and non-nil length"
            end
            unless args.first.nil? || args.first >= 0
              raise LintError, "rack.input#read called with a negative length"
            end
          end
          if args.size >= 2
            unless args[1].kind_of?(String)
              raise LintError, "rack.input#read called with non-String buffer"
            end
          end

          v = @input.read(*args)

          unless v.nil? or v.kind_of? String
            raise LintError, "rack.input#read didn't return nil or a String"
          end
          if args[0].nil?
            unless !v.nil?
              raise LintError, "rack.input#read(nil) returned nil on EOF"
            end
          end

          v
        end

        ## * +each+ must be called without arguments and only yield Strings.
        def each(*args)
          raise LintError, "rack.input#each called with arguments" unless args.size == 0
          @input.each { |line|
            unless line.kind_of? String
              raise LintError, "rack.input#each didn't yield a String"
            end
            yield line
          }
        end

        ## * +close+ can be called on the input stream to indicate that the
        ## any remaining input is not needed.
        def close(*args)
          @input.close(*args)
        end
      end

      ##
      ## === The Error Stream
      ##
      def check_error(error)
        ## The error stream must respond to +puts+, +write+ and +flush+.
        [:puts, :write, :flush].each { |method|
          unless error.respond_to? method
            raise LintError, "rack.error #{error} does not respond to ##{method}"
          end
        }
      end

      class ErrorWrapper
        def initialize(error)
          @error = error
        end

        ## * +puts+ must be called with a single argument that responds to +to_s+.
        def puts(str)
          @error.puts str
        end

        ## * +write+ must be called with a single argument that is a String.
        def write(str)
          raise LintError, "rack.errors#write not called with a String" unless str.kind_of? String
          @error.write str
        end

        ## * +flush+ must be called without arguments and must be called
        ##   in order to make the error appear for sure.
        def flush
          @error.flush
        end

        ## * +close+ must never be called on the error stream.
        def close(*args)
          raise LintError, "rack.errors#close must not be called"
        end
      end

      ##
      ## === Hijacking
      ##
      ## The hijacking interfaces provides a means for an application to take
      ## control of the HTTP connection. There are two distinct hijack
      ## interfaces: full hijacking where the application takes over the raw
      ## connection, and partial hijacking where the application takes over
      ## just the response body stream. In both cases, the application is
      ## responsible for closing the hijacked stream.
      ##
      ## Full hijacking only works with HTTP/1. Partial hijacking is functionally
      ## equivalent to streaming bodies, and is still optionally supported for
      ## backwards compatibility with older Rack versions.
      ##
      ## ==== Full Hijack
      ##
      ## Full hijack is used to completely take over an HTTP/1 connection. It
      ## occurs before any headers are written and causes the request to
      ## ignores any response generated by the application.
      ##
      ## It is intended to be used when applications need access to raw HTTP/1
      ## connection.
      ##
      def check_hijack(env)
        ## If +rack.hijack+ is present in +env+, it must respond to +call+
        if original_hijack = env[RACK_HIJACK]
          raise LintError, "rack.hijack must respond to call" unless original_hijack.respond_to?(:call)

          env[RACK_HIJACK] = proc do
            io = original_hijack.call

            ## and return an +IO+ instance which can be used to read and write
            ## to the underlying connection using HTTP/1 semantics and
            ## formatting.
            raise LintError, "rack.hijack must return an IO instance" unless io.is_a?(IO)

            io
          end
        end
      end

      ##
      ## ==== Partial Hijack
      ##
      ## Partial hijack is used for bi-directional streaming of the request and
      ## response body. It occurs after the status and headers are written by
      ## the server and causes the server to ignore the Body of the response.
      ##
      ## It is intended to be used when applications need bi-directional
      ## streaming.
      ##
      def check_hijack_response(headers, env)
        ## If +rack.hijack?+ is present in +env+ and truthy,
        if env[RACK_IS_HIJACK]
          ## an application may set the special response header +rack.hijack+
          if original_hijack = headers[RACK_HIJACK]
            ## to an object that responds to +call+,
            unless original_hijack.respond_to?(:call)
              raise LintError, 'rack.hijack header must respond to #call'
            end
            ## accepting a +stream+ argument.
            return proc do |io|
              original_hijack.call StreamWrapper.new(io)
            end
          end
          ##
          ## After the response status and headers have been sent, this hijack
          ## callback will be invoked with a +stream+ argument which follows the
          ## same interface as outlined in "Streaming Body". Servers must
          ## ignore the +body+ part of the response tuple when the
          ## +rack.hijack+ response header is present. Using an empty +Array+
          ## instance is recommended.
        else
          ##
          ## The special response header +rack.hijack+ must only be set
          ## if the request +env+ has a truthy +rack.hijack?+.
          if headers.key?(RACK_HIJACK)
            raise LintError, 'rack.hijack header must not be present if server does not support hijacking'
          end
        end

        nil
      end

      ## == The Response
      ##
      ## === The Status
      ##
      def check_status(status)
        ## This is an HTTP status. It must be an Integer greater than or equal to
        ## 100.
        unless status.is_a?(Integer) && status >= 100
          raise LintError, "Status must be an Integer >=100"
        end
      end

      ##
      ## === The Headers
      ##
      def check_headers(headers)
        ## The headers must be a unfrozen Hash.
        unless headers.kind_of?(Hash)
          raise LintError, "headers object should be a hash, but isn't (got #{headers.class} as headers)"
        end

        if headers.frozen?
          raise LintError, "headers object should not be frozen, but is"
        end

        headers.each do |key, value|
          ## The header keys must be Strings.
          unless key.kind_of? String
            raise LintError, "header key must be a string, was #{key.class}"
          end

          ## Special headers starting "rack." are for communicating with the
          ## server, and must not be sent back to the client.
          next if key.start_with?("rack.")

          ## The header must not contain a +Status+ key.
          raise LintError, "header must not contain status" if key == "status"
          ## Header keys must conform to RFC7230 token specification, i.e. cannot
          ## contain non-printable ASCII, DQUOTE or "(),/:;<=>?@[\]{}".
          raise LintError, "invalid header name: #{key}" if key =~ /[\(\),\/:;<=>\?@\[\\\]{}[:cntrl:]]/
          ## Header keys must not contain uppercase ASCII characters (A-Z).
          raise LintError, "uppercase character in header name: #{key}" if key =~ /[A-Z]/

          ## Header values must be either a String instance,
          if value.kind_of?(String)
            check_header_value(key, value)
          elsif value.kind_of?(Array)
            ## or an Array of String instances,
            value.each{|value| check_header_value(key, value)}
          else
            raise LintError, "a header value must be a String or Array of Strings, but the value of '#{key}' is a #{value.class}"
          end
        end
      end

      def check_header_value(key, value)
        ## such that each String instance must not contain characters below 037.
        if value =~ /[\000-\037]/
          raise LintError, "invalid header value #{key}: #{value.inspect}"
        end
      end

      ##
      ## === The content-type
      ##
      def check_content_type(status, headers)
        headers.each { |key, value|
          ## There must not be a <tt>content-type</tt> header key when the +Status+ is 1xx,
          ## 204, or 304.
          if key == "content-type"
            if Rack::Utils::STATUS_WITH_NO_ENTITY_BODY.key? status.to_i
              raise LintError, "content-type header found in #{status} response, not allowed"
            end
            return
          end
        }
      end

      ##
      ## === The content-length
      ##
      def check_content_length(status, headers)
        headers.each { |key, value|
          if key == 'content-length'
            ## There must not be a <tt>content-length</tt> header key when the
            ## +Status+ is 1xx, 204, or 304.
            if Rack::Utils::STATUS_WITH_NO_ENTITY_BODY.key? status.to_i
              raise LintError, "content-length header found in #{status} response, not allowed"
            end
            @content_length = value
          end
        }
      end

      def verify_content_length(size)
        if @head_request
          unless size == 0
            raise LintError, "Response body was given for HEAD request, but should be empty"
          end
        elsif @content_length
          unless @content_length == size.to_s
            raise LintError, "content-length header was #{@content_length}, but should be #{size}"
          end
        end
      end

      ##
      ## === The Body
      ##
      ## The Body is typically an +Array+ of +String+ instances, an enumerable
      ## that yields +String+ instances, a +Proc+ instance, or a File-like
      ## object.
      ##
      ## The Body must respond to +each+ or +call+. It may optionally respond
      ## to +to_path+ or +to_ary+. A Body that responds to +each+ is considered
      ## to be an Enumerable Body. A Body that responds to +call+ is considered
      ## to be a Streaming Body.
      ##
      ## A Body that responds to both +each+ and +call+ must be treated as an
      ## Enumerable Body, not a Streaming Body. If it responds to +each+, you
      ## must call +each+ and not +call+. If the Body doesn't respond to
      ## +each+, then you can assume it responds to +call+.
      ##
      ## The Body must either be consumed or returned. The Body is consumed by
      ## optionally calling either +each+ or +call+.
      ## Then, if the Body responds to +close+, it must be called to release
      ## any resources associated with the generation of the body.
      ## In other words, +close+ must always be called at least once; typically
      ## after the web server has sent the response to the client, but also in
      ## cases where the Rack application makes internal/virtual requests and
      ## discards the response.
      ##
      def close
        ##
        ## After calling +close+, the Body is considered closed and should not
        ## be consumed again.
        @closed = true

        ## If the original Body is replaced by a new Body, the new Body must
        ## also consume the original Body by calling +close+ if possible.
        @body.close if @body.respond_to?(:close)

        index = @lint.index(self)
        unless @env['rack.lint'][0..index].all? {|lint| lint.instance_variable_get(:@closed)}
          raise LintError, "Body has not been closed"
        end
      end

      def verify_to_path
        ##
        ## If the Body responds to +to_path+, it must return a +String+
        ## path for the local file system whose contents are identical
        ## to that produced by calling +each+; this may be used by the
        ## server as an alternative, possibly more efficient way to
        ## transport the response. The +to_path+ method does not consume
        ## the body.
        if @body.respond_to?(:to_path)
          unless ::File.exist? @body.to_path
            raise LintError, "The file identified by body.to_path does not exist"
          end
        end
      end

      ##
      ## ==== Enumerable Body
      ##
      def each
        ## The Enumerable Body must respond to +each+.
        raise LintError, "Enumerable Body must respond to each" unless @body.respond_to?(:each)

        ## It must only be called once.
        raise LintError, "Response body must only be invoked once (#{@invoked})" unless @invoked.nil?

        ## It must not be called after being closed.
        raise LintError, "Response body is already closed" if @closed

        @invoked = :each

        @body.each do |chunk|
          ## and must only yield String values.
          unless chunk.kind_of? String
            raise LintError, "Body yielded non-string value #{chunk.inspect}"
          end

          ##
          ## The Body itself should not be an instance of String, as this will
          ## break in Ruby 1.9.
          ##
          ## Middleware must not call +each+ directly on the Body.
          ## Instead, middleware can return a new Body that calls +each+ on the
          ## original Body, yielding at least once per iteration.
          if @lint[0] == self
            @env['rack.lint.body_iteration'] += 1
          else
            if (@env['rack.lint.body_iteration'] -= 1) > 0
              raise LintError, "New body must yield at least once per iteration of old body"
            end
          end

          @size += chunk.bytesize
          yield chunk
        end

        verify_content_length(@size)

        verify_to_path
      end

      BODY_METHODS = {to_ary: true, each: true, call: true, to_path: true}

      def to_path
        @body.to_path
      end

      def respond_to?(name, *)
        if BODY_METHODS.key?(name)
          @body.respond_to?(name)
        else
          super
        end
      end

      ##
      ## If the Body responds to +to_ary+, it must return an +Array+ whose
      ## contents are identical to that produced by calling +each+.
      ## Middleware may call +to_ary+ directly on the Body and return a new
      ## Body in its place. In other words, middleware can only process the
      ## Body directly if it responds to +to_ary+. If the Body responds to both
      ## +to_ary+ and +close+, its implementation of +to_ary+ must call
      ## +close+.
      def to_ary
        @body.to_ary.tap do |content|
          unless content == @body.enum_for.to_a
            raise LintError, "#to_ary not identical to contents produced by calling #each"
          end
        end
      ensure
        close
      end

      ##
      ## ==== Streaming Body
      ##
      def call(stream)
        ## The Streaming Body must respond to +call+.
        raise LintError, "Streaming Body must respond to call" unless @body.respond_to?(:call)

        ## It must only be called once.
        raise LintError, "Response body must only be invoked once (#{@invoked})" unless @invoked.nil?

        ## It must not be called after being closed.
        raise LintError, "Response body is already closed" if @closed

        @invoked = :call

        ## It takes a +stream+ argument.
        ##
        ## The +stream+ argument must implement:
        ## <tt>read, write, <<, flush, close, close_read, close_write, closed?</tt>
        ##
        @body.call(StreamWrapper.new(stream))
      end

      class StreamWrapper
        extend Forwardable

        ## The semantics of these IO methods must be a best effort match to
        ## those of a normal Ruby IO or Socket object, using standard arguments
        ## and raising standard exceptions. Servers are encouraged to simply
        ## pass on real IO objects, although it is recognized that this approach
        ## is not directly compatible with HTTP/2.
        REQUIRED_METHODS = [
          :read, :write, :<<, :flush, :close,
          :close_read, :close_write, :closed?
        ]

        def_delegators :@stream, *REQUIRED_METHODS

        def initialize(stream)
          @stream = stream

          REQUIRED_METHODS.each do |method_name|
            raise LintError, "Stream must respond to #{method_name}" unless stream.respond_to?(method_name)
          end
        end
      end

      # :startdoc:
    end
  end
end

##
## == Thanks
## Some parts of this specification are adopted from {PEP 333 – Python Web Server Gateway Interface v1.0}[https://peps.python.org/pep-0333/]
## I'd like to thank everyone involved in that effort.
PKCH[�ӎ cTcT,share/gems/gems/rack-3.0.8/lib/rack/utils.rbnu�[���# -*- encoding: binary -*-
# frozen_string_literal: true

require 'uri'
require 'fileutils'
require 'set'
require 'tempfile'
require 'time'

require_relative 'query_parser'
require_relative 'mime'
require_relative 'headers'
require_relative 'constants'

module Rack
  # Rack::Utils contains a grab-bag of useful methods for writing web
  # applications adopted from all kinds of Ruby libraries.

  module Utils
    ParameterTypeError = QueryParser::ParameterTypeError
    InvalidParameterError = QueryParser::InvalidParameterError
    ParamsTooDeepError = QueryParser::ParamsTooDeepError
    DEFAULT_SEP = QueryParser::DEFAULT_SEP
    COMMON_SEP = QueryParser::COMMON_SEP
    KeySpaceConstrainedParams = QueryParser::Params

    class << self
      attr_accessor :default_query_parser
    end
    # The default amount of nesting to allowed by hash parameters.
    # This helps prevent a rogue client from triggering a possible stack overflow
    # when parsing parameters.
    self.default_query_parser = QueryParser.make_default(32)

    module_function

    # URI escapes. (CGI style space to +)
    def escape(s)
      URI.encode_www_form_component(s)
    end

    # Like URI escaping, but with %20 instead of +. Strictly speaking this is
    # true URI escaping.
    def escape_path(s)
      ::URI::DEFAULT_PARSER.escape s
    end

    # Unescapes the **path** component of a URI.  See Rack::Utils.unescape for
    # unescaping query parameters or form components.
    def unescape_path(s)
      ::URI::DEFAULT_PARSER.unescape s
    end

    # Unescapes a URI escaped string with +encoding+. +encoding+ will be the
    # target encoding of the string returned, and it defaults to UTF-8
    def unescape(s, encoding = Encoding::UTF_8)
      URI.decode_www_form_component(s, encoding)
    end

    class << self
      attr_accessor :multipart_total_part_limit

      attr_accessor :multipart_file_limit

      # multipart_part_limit is the original name of multipart_file_limit, but
      # the limit only counts parts with filenames.
      alias multipart_part_limit multipart_file_limit
      alias multipart_part_limit= multipart_file_limit=
    end

    # The maximum number of file parts a request can contain. Accepting too
    # many parts can lead to the server running out of file handles.
    # Set to `0` for no limit.
    self.multipart_file_limit = (ENV['RACK_MULTIPART_PART_LIMIT'] || ENV['RACK_MULTIPART_FILE_LIMIT'] || 128).to_i

    # The maximum total number of parts a request can contain. Accepting too
    # many can lead to excessive memory use and parsing time.
    self.multipart_total_part_limit = (ENV['RACK_MULTIPART_TOTAL_PART_LIMIT'] || 4096).to_i

    def self.param_depth_limit
      default_query_parser.param_depth_limit
    end

    def self.param_depth_limit=(v)
      self.default_query_parser = self.default_query_parser.new_depth_limit(v)
    end

    def self.key_space_limit
      warn("`Rack::Utils.key_space_limit` is deprecated as this value no longer has an effect. It will be removed in Rack 3.1", uplevel: 1)
      65536
    end

    def self.key_space_limit=(v)
      warn("`Rack::Utils.key_space_limit=` is deprecated and no longer has an effect. It will be removed in Rack 3.1", uplevel: 1)
    end

    if defined?(Process::CLOCK_MONOTONIC)
      def clock_time
        Process.clock_gettime(Process::CLOCK_MONOTONIC)
      end
    else
      # :nocov:
      def clock_time
        Time.now.to_f
      end
      # :nocov:
    end

    def parse_query(qs, d = nil, &unescaper)
      Rack::Utils.default_query_parser.parse_query(qs, d, &unescaper)
    end

    def parse_nested_query(qs, d = nil)
      Rack::Utils.default_query_parser.parse_nested_query(qs, d)
    end

    def build_query(params)
      params.map { |k, v|
        if v.class == Array
          build_query(v.map { |x| [k, x] })
        else
          v.nil? ? escape(k) : "#{escape(k)}=#{escape(v)}"
        end
      }.join("&")
    end

    def build_nested_query(value, prefix = nil)
      case value
      when Array
        value.map { |v|
          build_nested_query(v, "#{prefix}[]")
        }.join("&")
      when Hash
        value.map { |k, v|
          build_nested_query(v, prefix ? "#{prefix}[#{k}]" : k)
        }.delete_if(&:empty?).join('&')
      when nil
        escape(prefix)
      else
        raise ArgumentError, "value must be a Hash" if prefix.nil?
        "#{escape(prefix)}=#{escape(value)}"
      end
    end

    def q_values(q_value_header)
      q_value_header.to_s.split(/\s*,\s*/).map do |part|
        value, parameters = part.split(/\s*;\s*/, 2)
        quality = 1.0
        if parameters && (md = /\Aq=([\d.]+)/.match(parameters))
          quality = md[1].to_f
        end
        [value, quality]
      end
    end

    def forwarded_values(forwarded_header)
      return nil unless forwarded_header
      forwarded_header = forwarded_header.to_s.gsub("\n", ";")

      forwarded_header.split(/\s*;\s*/).each_with_object({}) do |field, values|
        field.split(/\s*,\s*/).each do |pair|
          return nil unless pair =~ /\A\s*(by|for|host|proto)\s*=\s*"?([^"]+)"?\s*\Z/i
          (values[$1.downcase.to_sym] ||= []) << $2
        end
      end
    end
    module_function :forwarded_values

    # Return best accept value to use, based on the algorithm
    # in RFC 2616 Section 14.  If there are multiple best
    # matches (same specificity and quality), the value returned
    # is arbitrary.
    def best_q_match(q_value_header, available_mimes)
      values = q_values(q_value_header)

      matches = values.map do |req_mime, quality|
        match = available_mimes.find { |am| Rack::Mime.match?(am, req_mime) }
        next unless match
        [match, quality]
      end.compact.sort_by do |match, quality|
        (match.split('/', 2).count('*') * -10) + quality
      end.last
      matches&.first
    end

    ESCAPE_HTML = {
      "&" => "&amp;",
      "<" => "&lt;",
      ">" => "&gt;",
      "'" => "&#x27;",
      '"' => "&quot;",
      "/" => "&#x2F;"
    }

    ESCAPE_HTML_PATTERN = Regexp.union(*ESCAPE_HTML.keys)

    # Escape ampersands, brackets and quotes to their HTML/XML entities.
    def escape_html(string)
      string.to_s.gsub(ESCAPE_HTML_PATTERN){|c| ESCAPE_HTML[c] }
    end

    def select_best_encoding(available_encodings, accept_encoding)
      # http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html

      expanded_accept_encoding = []

      accept_encoding.each do |m, q|
        preference = available_encodings.index(m) || available_encodings.size

        if m == "*"
          (available_encodings - accept_encoding.map(&:first)).each do |m2|
            expanded_accept_encoding << [m2, q, preference]
          end
        else
          expanded_accept_encoding << [m, q, preference]
        end
      end

      encoding_candidates = expanded_accept_encoding
        .sort_by { |_, q, p| [-q, p] }
        .map!(&:first)

      unless encoding_candidates.include?("identity")
        encoding_candidates.push("identity")
      end

      expanded_accept_encoding.each do |m, q|
        encoding_candidates.delete(m) if q == 0.0
      end

      (encoding_candidates & available_encodings)[0]
    end

    # :call-seq:
    #   parse_cookies_header(value) -> hash
    #
    # Parse cookies from the provided header +value+ according to RFC6265. The
    # syntax for cookie headers only supports semicolons. Returns a map of
    # cookie +key+ to cookie +value+.
    #
    #   parse_cookies_header('myname=myvalue; max-age=0')
    #   # => {"myname"=>"myvalue", "max-age"=>"0"}
    #
    def parse_cookies_header(value)
      return {} unless value

      value.split(/; */n).each_with_object({}) do |cookie, cookies|
        next if cookie.empty?
        key, value = cookie.split('=', 2)
        cookies[key] = (unescape(value) rescue value) unless cookies.key?(key)
      end
    end

    def add_cookie_to_header(header, key, value)
      warn("add_cookie_to_header is deprecated and will be removed in Rack 3.1", uplevel: 1)

      case header
      when nil, ''
        return set_cookie_header(key, value)
      when String
        [header, set_cookie_header(key, value)]
      when Array
        header + [set_cookie_header(key, value)]
      else
        raise ArgumentError, "Unrecognized cookie header value. Expected String, Array, or nil, got #{header.inspect}"
      end
    end

    # :call-seq:
    #   parse_cookies(env) -> hash
    #
    # Parse cookies from the provided request environment using
    # parse_cookies_header. Returns a map of cookie +key+ to cookie +value+.
    #
    #   parse_cookies({'HTTP_COOKIE' => 'myname=myvalue'})
    #   # => {'myname' => 'myvalue'}
    #
    def parse_cookies(env)
      parse_cookies_header env[HTTP_COOKIE]
    end

    # :call-seq:
    #   set_cookie_header(key, value) -> encoded string
    #
    # Generate an encoded string using the provided +key+ and +value+ suitable
    # for the +set-cookie+ header according to RFC6265. The +value+ may be an
    # instance of either +String+ or +Hash+.
    #
    # If the cookie +value+ is an instance of +Hash+, it considers the following
    # cookie attribute keys: +domain+, +max_age+, +expires+ (must be instance
    # of +Time+), +secure+, +http_only+, +same_site+ and +value+. For more
    # details about the interpretation of these fields, consult
    # [RFC6265 Section 5.2](https://datatracker.ietf.org/doc/html/rfc6265#section-5.2).
    #
    # An extra cookie attribute +escape_key+ can be provided to control whether
    # or not the cookie key is URL encoded. If explicitly set to +false+, the
    # cookie key name will not be url encoded (escaped). The default is +true+.
    #
    #   set_cookie_header("myname", "myvalue")
    #   # => "myname=myvalue"
    #
    #   set_cookie_header("myname", {value: "myvalue", max_age: 10})
    #   # => "myname=myvalue; max-age=10"
    #
    def set_cookie_header(key, value)
      case value
      when Hash
        key = escape(key) unless value[:escape_key] == false
        domain  = "; domain=#{value[:domain]}"   if value[:domain]
        path    = "; path=#{value[:path]}"       if value[:path]
        max_age = "; max-age=#{value[:max_age]}" if value[:max_age]
        expires = "; expires=#{value[:expires].httpdate}" if value[:expires]
        secure = "; secure"  if value[:secure]
        httponly = "; httponly" if (value.key?(:httponly) ? value[:httponly] : value[:http_only])
        same_site =
          case value[:same_site]
          when false, nil
            nil
          when :none, 'None', :None
            '; SameSite=None'
          when :lax, 'Lax', :Lax
            '; SameSite=Lax'
          when true, :strict, 'Strict', :Strict
            '; SameSite=Strict'
          else
            raise ArgumentError, "Invalid SameSite value: #{value[:same_site].inspect}"
          end
        value = value[:value]
      else
        key = escape(key)
      end

      value = [value] unless Array === value

      return "#{key}=#{value.map { |v| escape v }.join('&')}#{domain}" \
        "#{path}#{max_age}#{expires}#{secure}#{httponly}#{same_site}"
    end

    # :call-seq:
    #   set_cookie_header!(headers, key, value) -> header value
    #
    # Append a cookie in the specified headers with the given cookie +key+ and
    # +value+ using set_cookie_header.
    #
    # If the headers already contains a +set-cookie+ key, it will be converted
    # to an +Array+ if not already, and appended to.
    def set_cookie_header!(headers, key, value)
      if header = headers[SET_COOKIE]
        if header.is_a?(Array)
          header << set_cookie_header(key, value)
        else
          headers[SET_COOKIE] = [header, set_cookie_header(key, value)]
        end
      else
        headers[SET_COOKIE] = set_cookie_header(key, value)
      end
    end

    # :call-seq:
    #   delete_set_cookie_header(key, value = {}) -> encoded string
    #
    # Generate an encoded string based on the given +key+ and +value+ using
    # set_cookie_header for the purpose of causing the specified cookie to be
    # deleted. The +value+ may be an instance of +Hash+ and can include
    # attributes as outlined by set_cookie_header. The encoded cookie will have
    # a +max_age+ of 0 seconds, an +expires+ date in the past and an empty
    # +value+. When used with the +set-cookie+ header, it will cause the client
    # to *remove* any matching cookie.
    #
    #   delete_set_cookie_header("myname")
    #   # => "myname=; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT"
    #
    def delete_set_cookie_header(key, value = {})
      set_cookie_header(key, value.merge(max_age: '0', expires: Time.at(0), value: ''))
    end

    def make_delete_cookie_header(header, key, value)
      warn("make_delete_cookie_header is deprecated and will be removed in Rack 3.1, use delete_set_cookie_header! instead", uplevel: 1)

      delete_set_cookie_header!(header, key, value)
    end

    def delete_cookie_header!(headers, key, value = {})
      headers[SET_COOKIE] = delete_set_cookie_header!(headers[SET_COOKIE], key, value)

      return nil
    end

    def add_remove_cookie_to_header(header, key, value = {})
      warn("add_remove_cookie_to_header is deprecated and will be removed in Rack 3.1, use delete_set_cookie_header! instead", uplevel: 1)

      delete_set_cookie_header!(header, key, value)
    end

    # :call-seq:
    #   delete_set_cookie_header!(header, key, value = {}) -> header value
    #
    # Set an expired cookie in the specified headers with the given cookie
    # +key+ and +value+ using delete_set_cookie_header. This causes
    # the client to immediately delete the specified cookie.
    #
    #   delete_set_cookie_header!(nil, "mycookie")
    #   # => "mycookie=; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT"
    #
    # If the header is non-nil, it will be modified in place.
    #
    #   header = []
    #   delete_set_cookie_header!(header, "mycookie")
    #   # => ["mycookie=; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT"]
    #   header
    #   # => ["mycookie=; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT"]
    #
    def delete_set_cookie_header!(header, key, value = {})
      if header
        header = Array(header)
        header << delete_set_cookie_header(key, value)
      else
        header = delete_set_cookie_header(key, value)
      end

      return header
    end

    def rfc2822(time)
      time.rfc2822
    end

    # Parses the "Range:" header, if present, into an array of Range objects.
    # Returns nil if the header is missing or syntactically invalid.
    # Returns an empty array if none of the ranges are satisfiable.
    def byte_ranges(env, size)
      get_byte_ranges env['HTTP_RANGE'], size
    end

    def get_byte_ranges(http_range, size)
      # See <http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35>
      return nil unless http_range && http_range =~ /bytes=([^;]+)/
      ranges = []
      $1.split(/,\s*/).each do |range_spec|
        return nil unless range_spec.include?('-')
        range = range_spec.split('-')
        r0, r1 = range[0], range[1]
        if r0.nil? || r0.empty?
          return nil if r1.nil?
          # suffix-byte-range-spec, represents trailing suffix of file
          r0 = size - r1.to_i
          r0 = 0  if r0 < 0
          r1 = size - 1
        else
          r0 = r0.to_i
          if r1.nil?
            r1 = size - 1
          else
            r1 = r1.to_i
            return nil  if r1 < r0  # backwards range is syntactically invalid
            r1 = size - 1  if r1 >= size
          end
        end
        ranges << (r0..r1)  if r0 <= r1
      end
      ranges
    end

    # :nocov:
    if defined?(OpenSSL.fixed_length_secure_compare)
      # Constant time string comparison.
      #
      # NOTE: the values compared should be of fixed length, such as strings
      # that have already been processed by HMAC. This should not be used
      # on variable length plaintext strings because it could leak length info
      # via timing attacks.
      def secure_compare(a, b)
        return false unless a.bytesize == b.bytesize

        OpenSSL.fixed_length_secure_compare(a, b)
      end
    # :nocov:
    else
      def secure_compare(a, b)
        return false unless a.bytesize == b.bytesize

        l = a.unpack("C*")

        r, i = 0, -1
        b.each_byte { |v| r |= v ^ l[i += 1] }
        r == 0
      end
    end

    # Context allows the use of a compatible middleware at different points
    # in a request handling stack. A compatible middleware must define
    # #context which should take the arguments env and app. The first of which
    # would be the request environment. The second of which would be the rack
    # application that the request would be forwarded to.
    class Context
      attr_reader :for, :app

      def initialize(app_f, app_r)
        raise 'running context does not respond to #context' unless app_f.respond_to? :context
        @for, @app = app_f, app_r
      end

      def call(env)
        @for.context(env, @app)
      end

      def recontext(app)
        self.class.new(@for, app)
      end

      def context(env, app = @app)
        recontext(app).call(env)
      end
    end

    # A wrapper around Headers
    # header when set.
    #
    # @api private
    class HeaderHash < Hash # :nodoc:
      def self.[](headers)
        warn "Rack::Utils::HeaderHash is deprecated and will be removed in Rack 3.1, switch to Rack::Headers", uplevel: 1
        if headers.is_a?(Headers) && !headers.frozen?
          return headers
        end

        new_headers = Headers.new
        headers.each{|k,v| new_headers[k] = v}
        new_headers
      end

      def self.new(hash = {})
        warn "Rack::Utils::HeaderHash is deprecated and will be removed in Rack 3.1, switch to Rack::Headers", uplevel: 1
        headers = Headers.new
        hash.each{|k,v| headers[k] = v}
        headers
      end

      def self.allocate
        raise TypeError, "cannot allocate HeaderHash"
      end
    end

    # Every standard HTTP code mapped to the appropriate message.
    # Generated with:
    #   curl -s https://www.iana.org/assignments/http-status-codes/http-status-codes-1.csv | \
    #     ruby -ne 'm = /^(\d{3}),(?!Unassigned|\(Unused\))([^,]+)/.match($_) and \
    #               puts "#{m[1]} => \x27#{m[2].strip}\x27,"'
    HTTP_STATUS_CODES = {
      100 => 'Continue',
      101 => 'Switching Protocols',
      102 => 'Processing',
      103 => 'Early Hints',
      200 => 'OK',
      201 => 'Created',
      202 => 'Accepted',
      203 => 'Non-Authoritative Information',
      204 => 'No Content',
      205 => 'Reset Content',
      206 => 'Partial Content',
      207 => 'Multi-Status',
      208 => 'Already Reported',
      226 => 'IM Used',
      300 => 'Multiple Choices',
      301 => 'Moved Permanently',
      302 => 'Found',
      303 => 'See Other',
      304 => 'Not Modified',
      305 => 'Use Proxy',
      306 => '(Unused)',
      307 => 'Temporary Redirect',
      308 => 'Permanent Redirect',
      400 => 'Bad Request',
      401 => 'Unauthorized',
      402 => 'Payment Required',
      403 => 'Forbidden',
      404 => 'Not Found',
      405 => 'Method Not Allowed',
      406 => 'Not Acceptable',
      407 => 'Proxy Authentication Required',
      408 => 'Request Timeout',
      409 => 'Conflict',
      410 => 'Gone',
      411 => 'Length Required',
      412 => 'Precondition Failed',
      413 => 'Payload Too Large',
      414 => 'URI Too Long',
      415 => 'Unsupported Media Type',
      416 => 'Range Not Satisfiable',
      417 => 'Expectation Failed',
      421 => 'Misdirected Request',
      422 => 'Unprocessable Entity',
      423 => 'Locked',
      424 => 'Failed Dependency',
      425 => 'Too Early',
      426 => 'Upgrade Required',
      428 => 'Precondition Required',
      429 => 'Too Many Requests',
      431 => 'Request Header Fields Too Large',
      451 => 'Unavailable for Legal Reasons',
      500 => 'Internal Server Error',
      501 => 'Not Implemented',
      502 => 'Bad Gateway',
      503 => 'Service Unavailable',
      504 => 'Gateway Timeout',
      505 => 'HTTP Version Not Supported',
      506 => 'Variant Also Negotiates',
      507 => 'Insufficient Storage',
      508 => 'Loop Detected',
      509 => 'Bandwidth Limit Exceeded',
      510 => 'Not Extended',
      511 => 'Network Authentication Required'
    }

    # Responses with HTTP status codes that should not have an entity body
    STATUS_WITH_NO_ENTITY_BODY = Hash[((100..199).to_a << 204 << 304).product([true])]

    SYMBOL_TO_STATUS_CODE = Hash[*HTTP_STATUS_CODES.map { |code, message|
      [message.downcase.gsub(/\s|-|'/, '_').to_sym, code]
    }.flatten]

    def status_code(status)
      if status.is_a?(Symbol)
        SYMBOL_TO_STATUS_CODE.fetch(status) { raise ArgumentError, "Unrecognized status code #{status.inspect}" }
      else
        status.to_i
      end
    end

    PATH_SEPS = Regexp.union(*[::File::SEPARATOR, ::File::ALT_SEPARATOR].compact)

    def clean_path_info(path_info)
      parts = path_info.split PATH_SEPS

      clean = []

      parts.each do |part|
        next if part.empty? || part == '.'
        part == '..' ? clean.pop : clean << part
      end

      clean_path = clean.join(::File::SEPARATOR)
      clean_path.prepend("/") if parts.empty? || parts.first.empty?
      clean_path
    end

    NULL_BYTE = "\0"

    def valid_path?(path)
      path.valid_encoding? && !path.include?(NULL_BYTE)
    end

  end
end
PKCH[>Sf?"?".share/gems/gems/rack-3.0.8/lib/rack/builder.rbnu�[���# frozen_string_literal: true

require_relative 'urlmap'

module Rack
  # Rack::Builder provides a domain-specific language (DSL) to construct Rack
  # applications. It is primarily used to parse +config.ru+ files which
  # instantiate several middleware and a final application which are hosted
  # by a Rack-compatible web server.
  #
  # Example:
  #
  #   app = Rack::Builder.new do
  #     use Rack::CommonLogger
  #     map "/ok" do
  #       run lambda { |env| [200, {'content-type' => 'text/plain'}, ['OK']] }
  #     end
  #   end
  #
  #   run app
  #
  # Or
  #
  #   app = Rack::Builder.app do
  #     use Rack::CommonLogger
  #     run lambda { |env| [200, {'content-type' => 'text/plain'}, ['OK']] }
  #   end
  #
  #   run app
  #
  # +use+ adds middleware to the stack, +run+ dispatches to an application.
  # You can use +map+ to construct a Rack::URLMap in a convenient way.
  class Builder

    # https://stackoverflow.com/questions/2223882/whats-the-difference-between-utf-8-and-utf-8-without-bom
    UTF_8_BOM = '\xef\xbb\xbf'

    # Parse the given config file to get a Rack application.
    #
    # If the config file ends in +.ru+, it is treated as a
    # rackup file and the contents will be treated as if
    # specified inside a Rack::Builder block.
    #
    # If the config file does not end in +.ru+, it is
    # required and Rack will use the basename of the file
    # to guess which constant will be the Rack application to run.
    #
    # Examples:
    #
    #   Rack::Builder.parse_file('config.ru')
    #   # Rack application built using Rack::Builder.new
    #
    #   Rack::Builder.parse_file('app.rb')
    #   # requires app.rb, which can be anywhere in Ruby's
    #   # load path. After requiring, assumes App constant
    #   # contains Rack application
    #
    #   Rack::Builder.parse_file('./my_app.rb')
    #   # requires ./my_app.rb, which should be in the
    #   # process's current directory.  After requiring,
    #   # assumes MyApp constant contains Rack application
    def self.parse_file(path)
      if path.end_with?('.ru')
        return self.load_file(path)
      else
        require path
        return Object.const_get(::File.basename(path, '.rb').split('_').map(&:capitalize).join(''))
      end
    end

    # Load the given file as a rackup file, treating the
    # contents as if specified inside a Rack::Builder block.
    #
    # Ignores content in the file after +__END__+, so that
    # use of +__END__+ will not result in a syntax error.
    #
    # Example config.ru file:
    #
    #   $ cat config.ru
    #
    #   use Rack::ContentLength
    #   require './app.rb'
    #   run App
    def self.load_file(path)
      config = ::File.read(path)
      config.slice!(/\A#{UTF_8_BOM}/) if config.encoding == Encoding::UTF_8

      if config[/^#\\(.*)/]
        fail "Parsing options from the first comment line is no longer supported: #{path}"
      end

      config.sub!(/^__END__\n.*\Z/m, '')

      return new_from_string(config, path)
    end

    # Evaluate the given +builder_script+ string in the context of
    # a Rack::Builder block, returning a Rack application.
    def self.new_from_string(builder_script, file = "(rackup)")
      # We want to build a variant of TOPLEVEL_BINDING with self as a Rack::Builder instance.
      # We cannot use instance_eval(String) as that would resolve constants differently.
      binding, builder = TOPLEVEL_BINDING.eval('Rack::Builder.new.instance_eval { [binding, self] }')
      eval builder_script, binding, file

      return builder.to_app
    end

    # Initialize a new Rack::Builder instance.  +default_app+ specifies the
    # default application if +run+ is not called later.  If a block
    # is given, it is evaluated in the context of the instance.
    def initialize(default_app = nil, &block)
      @use = []
      @map = nil
      @run = default_app
      @warmup = nil
      @freeze_app = false

      instance_eval(&block) if block_given?
    end

    # Create a new Rack::Builder instance and return the Rack application
    # generated from it.
    def self.app(default_app = nil, &block)
      self.new(default_app, &block).to_app
    end

    # Specifies middleware to use in a stack.
    #
    #   class Middleware
    #     def initialize(app)
    #       @app = app
    #     end
    #
    #     def call(env)
    #       env["rack.some_header"] = "setting an example"
    #       @app.call(env)
    #     end
    #   end
    #
    #   use Middleware
    #   run lambda { |env| [200, { "content-type" => "text/plain" }, ["OK"]] }
    #
    # All requests through to this application will first be processed by the middleware class.
    # The +call+ method in this example sets an additional environment key which then can be
    # referenced in the application if required.
    def use(middleware, *args, &block)
      if @map
        mapping, @map = @map, nil
        @use << proc { |app| generate_map(app, mapping) }
      end
      @use << proc { |app| middleware.new(app, *args, &block) }
    end
    # :nocov:
    ruby2_keywords(:use) if respond_to?(:ruby2_keywords, true)
    # :nocov:

    # Takes a block or argument that is an object that responds to #call and
    # returns a Rack response.
    #
    # You can use a block:
    #
    #   run do |env|
    #     [200, { "content-type" => "text/plain" }, ["Hello World!"]]
    #   end
    #
    # You can also provide a lambda:
    #
    #   run lambda { |env| [200, { "content-type" => "text/plain" }, ["OK"]] }
    #
    # You can also provide a class instance:
    #
    #   class Heartbeat
    #     def call(env)
    #      [200, { "content-type" => "text/plain" }, ["OK"]]
    #     end
    #   end
    #
    #   run Heartbeat.new
    #
    def run(app = nil, &block)
      raise ArgumentError, "Both app and block given!" if app && block_given?

      @run = app || block
    end

    # Takes a lambda or block that is used to warm-up the application. This block is called
    # before the Rack application is returned by to_app.
    #
    #   warmup do |app|
    #     client = Rack::MockRequest.new(app)
    #     client.get('/')
    #   end
    #
    #   use SomeMiddleware
    #   run MyApp
    def warmup(prc = nil, &block)
      @warmup = prc || block
    end

    # Creates a route within the application.  Routes under the mapped path will be sent to
    # the Rack application specified by run inside the block.  Other requests will be sent to the
    # default application specified by run outside the block.
    #
    #   class App
    #     def call(env)
    #       [200, {'content-type' => 'text/plain'}, ["Hello World"]]
    #     end
    #   end
    #
    #   class Heartbeat
    #     def call(env)
    #       [200, { "content-type" => "text/plain" }, ["OK"]]
    #     end
    #   end
    #
    #   app = Rack::Builder.app do
    #     map '/heartbeat' do
    #       run Heartbeat.new
    #     end
    #     run App.new
    #   end
    #
    #   run app
    #
    # The +use+ method can also be used inside the block to specify middleware to run under a specific path:
    #
    #   app = Rack::Builder.app do
    #     map '/heartbeat' do
    #       use Middleware
    #       run Heartbeat.new
    #     end
    #     run App.new
    #   end
    #
    # This example includes a piece of middleware which will run before +/heartbeat+ requests hit +Heartbeat+.
    #
    # Note that providing a +path+ of +/+ will ignore any default application given in a +run+ statement
    # outside the block.
    def map(path, &block)
      @map ||= {}
      @map[path] = block
    end

    # Freeze the app (set using run) and all middleware instances when building the application
    # in to_app.
    def freeze_app
      @freeze_app = true
    end

    # Return the Rack application generated by this instance.
    def to_app
      app = @map ? generate_map(@run, @map) : @run
      fail "missing run or map statement" unless app
      app.freeze if @freeze_app
      app = @use.reverse.inject(app) { |a, e| e[a].tap { |x| x.freeze if @freeze_app } }
      @warmup.call(app) if @warmup
      app
    end

    # Call the Rack application generated by this builder instance. Note that
    # this rebuilds the Rack application and runs the warmup code (if any)
    # every time it is called, so it should not be used if performance is important.
    def call(env)
      to_app.call(env)
    end

    private

    # Generate a URLMap instance by generating new Rack applications for each
    # map block in this instance.
    def generate_map(default_app, mapping)
      mapped = default_app ? { '/' => default_app } : {}
      mapping.each { |r, b| mapped[r] = self.class.new(default_app, &b).to_app }
      URLMap.new(mapped)
    end
  end
end
PKCH[��A�0share/gems/gems/rack-3.0.8/lib/rack/directory.rbnu�[���# frozen_string_literal: true

require 'time'

require_relative 'constants'
require_relative 'utils'
require_relative 'head'
require_relative 'mime'
require_relative 'files'

module Rack
  # Rack::Directory serves entries below the +root+ given, according to the
  # path info of the Rack request. If a directory is found, the file's contents
  # will be presented in an html based index. If a file is found, the env will
  # be passed to the specified +app+.
  #
  # If +app+ is not specified, a Rack::Files of the same +root+ will be used.

  class Directory
    DIR_FILE = "<tr><td class='name'><a href='%s'>%s</a></td><td class='size'>%s</td><td class='type'>%s</td><td class='mtime'>%s</td></tr>\n"
    DIR_PAGE_HEADER = <<-PAGE
<html><head>
  <title>%s</title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <style type='text/css'>
table { width:100%%; }
.name { text-align:left; }
.size, .mtime { text-align:right; }
.type { width:11em; }
.mtime { width:15em; }
  </style>
</head><body>
<h1>%s</h1>
<hr />
<table>
  <tr>
    <th class='name'>Name</th>
    <th class='size'>Size</th>
    <th class='type'>Type</th>
    <th class='mtime'>Last Modified</th>
  </tr>
    PAGE
    DIR_PAGE_FOOTER = <<-PAGE
</table>
<hr />
</body></html>
    PAGE

    # Body class for directory entries, showing an index page with links
    # to each file.
    class DirectoryBody < Struct.new(:root, :path, :files)
      # Yield strings for each part of the directory entry
      def each
        show_path = Utils.escape_html(path.sub(/^#{root}/, ''))
        yield(DIR_PAGE_HEADER % [ show_path, show_path ])

        unless path.chomp('/') == root
          yield(DIR_FILE % DIR_FILE_escape(files.call('..')))
        end

        Dir.foreach(path) do |basename|
          next if basename.start_with?('.')
          next unless f = files.call(basename)
          yield(DIR_FILE % DIR_FILE_escape(f))
        end

        yield(DIR_PAGE_FOOTER)
      end

      private

      # Escape each element in the array of html strings.
      def DIR_FILE_escape(htmls)
        htmls.map { |e| Utils.escape_html(e) }
      end
    end

    # The root of the directory hierarchy.  Only requests for files and
    # directories inside of the root directory are supported.
    attr_reader :root

    # Set the root directory and application for serving files.
    def initialize(root, app = nil)
      @root = ::File.expand_path(root)
      @app = app || Files.new(@root)
      @head = Head.new(method(:get))
    end

    def call(env)
      # strip body if this is a HEAD call
      @head.call env
    end

    # Internals of request handling.  Similar to call but does
    # not remove body for HEAD requests.
    def get(env)
      script_name = env[SCRIPT_NAME]
      path_info = Utils.unescape_path(env[PATH_INFO])

      if client_error_response = check_bad_request(path_info) || check_forbidden(path_info)
        client_error_response
      else
        path = ::File.join(@root, path_info)
        list_path(env, path, path_info, script_name)
      end
    end

    # Rack response to use for requests with invalid paths, or nil if path is valid.
    def check_bad_request(path_info)
      return if Utils.valid_path?(path_info)

      body = "Bad Request\n"
      [400, { CONTENT_TYPE => "text/plain",
        CONTENT_LENGTH => body.bytesize.to_s,
        "x-cascade" => "pass" }, [body]]
    end

    # Rack response to use for requests with paths outside the root, or nil if path is inside the root.
    def check_forbidden(path_info)
      return unless path_info.include? ".."
      return if ::File.expand_path(::File.join(@root, path_info)).start_with?(@root)

      body = "Forbidden\n"
      [403, { CONTENT_TYPE => "text/plain",
        CONTENT_LENGTH => body.bytesize.to_s,
        "x-cascade" => "pass" }, [body]]
    end

    # Rack response to use for directories under the root.
    def list_directory(path_info, path, script_name)
      url_head = (script_name.split('/') + path_info.split('/')).map do |part|
        Utils.escape_path part
      end

      # Globbing not safe as path could contain glob metacharacters
      body = DirectoryBody.new(@root, path, ->(basename) do
        stat = stat(::File.join(path, basename))
        next unless stat

        url = ::File.join(*url_head + [Utils.escape_path(basename)])
        mtime = stat.mtime.httpdate
        if stat.directory?
          type = 'directory'
          size = '-'
          url << '/'
          if basename == '..'
            basename = 'Parent Directory'
          else
            basename << '/'
          end
        else
          type = Mime.mime_type(::File.extname(basename))
          size = filesize_format(stat.size)
        end

        [ url, basename, size, type, mtime ]
      end)

      [ 200, { CONTENT_TYPE => 'text/html; charset=utf-8' }, body ]
    end

    # File::Stat for the given path, but return nil for missing/bad entries.
    def stat(path)
      ::File.stat(path)
    rescue Errno::ENOENT, Errno::ELOOP
      return nil
    end

    # Rack response to use for files and directories under the root.
    # Unreadable and non-file, non-directory entries will get a 404 response.
    def list_path(env, path, path_info, script_name)
      if (stat = stat(path)) && stat.readable?
        return @app.call(env) if stat.file?
        return list_directory(path_info, path, script_name) if stat.directory?
      end

      entity_not_found(path_info)
    end

    # Rack response to use for unreadable and non-file, non-directory entries.
    def entity_not_found(path_info)
      body = "Entity not found: #{path_info}\n"
      [404, { CONTENT_TYPE => "text/plain",
        CONTENT_LENGTH => body.bytesize.to_s,
        "x-cascade" => "pass" }, [body]]
    end

    # Stolen from Ramaze
    FILESIZE_FORMAT = [
      ['%.1fT', 1 << 40],
      ['%.1fG', 1 << 30],
      ['%.1fM', 1 << 20],
      ['%.1fK', 1 << 10],
    ]

    # Provide human readable file sizes
    def filesize_format(int)
      FILESIZE_FORMAT.each do |format, size|
        return format % (int.to_f / size) if int >= size
      end

      "#{int}B"
    end
  end
end
PKCH[�
C�xx4share/gems/gems/rack-3.0.8/lib/rack/common_logger.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'
require_relative 'body_proxy'
require_relative 'request'

module Rack
  # Rack::CommonLogger forwards every request to the given +app+, and
  # logs a line in the
  # {Apache common log format}[http://httpd.apache.org/docs/1.3/logs.html#common]
  # to the configured logger.
  class CommonLogger
    # Common Log Format: http://httpd.apache.org/docs/1.3/logs.html#common
    #
    #   lilith.local - - [07/Aug/2006 23:58:02 -0400] "GET / HTTP/1.1" 500 -
    #
    #   %{%s - %s [%s] "%s %s%s %s" %d %s\n} %
    #
    # The actual format is slightly different than the above due to the
    # separation of SCRIPT_NAME and PATH_INFO, and because the elapsed
    # time in seconds is included at the end.
    FORMAT = %{%s - %s [%s] "%s %s%s%s %s" %d %s %0.4f\n}

    # +logger+ can be any object that supports the +write+ or +<<+ methods,
    # which includes the standard library Logger.  These methods are called
    # with a single string argument, the log message.
    # If +logger+ is nil, CommonLogger will fall back <tt>env['rack.errors']</tt>.
    def initialize(app, logger = nil)
      @app = app
      @logger = logger
    end

    # Log all requests in common_log format after a response has been
    # returned.  Note that if the app raises an exception, the request
    # will not be logged, so if exception handling middleware are used,
    # they should be loaded after this middleware.  Additionally, because
    # the logging happens after the request body has been fully sent, any
    # exceptions raised during the sending of the response body will
    # cause the request not to be logged.
    def call(env)
      began_at = Utils.clock_time
      status, headers, body = response = @app.call(env)

      response[2] = BodyProxy.new(body) { log(env, status, headers, began_at) }
      response
    end

    private

    # Log the request to the configured logger.
    def log(env, status, response_headers, began_at)
      request = Rack::Request.new(env)
      length = extract_content_length(response_headers)

      msg = sprintf(FORMAT,
        request.ip || "-",
        request.get_header("REMOTE_USER") || "-",
        Time.now.strftime("%d/%b/%Y:%H:%M:%S %z"),
        request.request_method,
        request.script_name,
        request.path_info,
        request.query_string.empty? ? "" : "?#{request.query_string}",
        request.get_header(SERVER_PROTOCOL),
        status.to_s[0..3],
        length,
        Utils.clock_time - began_at)

      msg.gsub!(/[^[:print:]\n]/) { |c| sprintf("\\x%x", c.ord) }

      logger = @logger || request.get_header(RACK_ERRORS)
      # Standard library logger doesn't support write but it supports << which actually
      # calls to write on the log device without formatting
      if logger.respond_to?(:write)
        logger.write(msg)
      else
        logger << msg
      end
    end

    # Attempt to determine the content length for the response to
    # include it in the logged data.
    def extract_content_length(headers)
      value = headers[CONTENT_LENGTH]
      !value || value.to_s == '0' ? '-' : value
    end
  end
end
PKCH[ѝo�+share/gems/gems/rack-3.0.8/lib/rack/head.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'body_proxy'

module Rack
  # Rack::Head returns an empty body for all HEAD requests. It leaves
  # all other requests unchanged.
  class Head
    def initialize(app)
      @app = app
    end

    def call(env)
      _, _, body = response = @app.call(env)

      if env[REQUEST_METHOD] == HEAD
        response[2] = Rack::BodyProxy.new([]) do
          body.close if body.respond_to? :close
        end
      end

      response
    end
  end
end
PKCH[K?��331share/gems/gems/rack-3.0.8/lib/rack/body_proxy.rbnu�[���# frozen_string_literal: true

module Rack
  # Proxy for response bodies allowing calling a block when
  # the response body is closed (after the response has been fully
  # sent to the client).
  class BodyProxy
    # Set the response body to wrap, and the block to call when the
    # response has been fully sent.
    def initialize(body, &block)
      @body = body
      @block = block
      @closed = false
    end

    # Return whether the wrapped body responds to the method.
    def respond_to_missing?(method_name, include_all = false)
      super or @body.respond_to?(method_name, include_all)
    end

    # If not already closed, close the wrapped body and
    # then call the block the proxy was initialized with.
    def close
      return if @closed
      @closed = true
      begin
        @body.close if @body.respond_to?(:close)
      ensure
        @block.call
      end
    end

    # Whether the proxy is closed.  The proxy starts as not closed,
    # and becomes closed on the first call to close.
    def closed?
      @closed
    end

    # Delegate missing methods to the wrapped body.
    def method_missing(method_name, *args, &block)
      @body.__send__(method_name, *args, &block)
    end
    # :nocov:
    ruby2_keywords(:method_missing) if respond_to?(:ruby2_keywords, true)
    # :nocov:
  end
end
PKCH[H��SGbGb.share/gems/gems/rack-3.0.8/lib/rack/request.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'
require_relative 'media_type'

module Rack
  # Rack::Request provides a convenient interface to a Rack
  # environment.  It is stateless, the environment +env+ passed to the
  # constructor will be directly modified.
  #
  #   req = Rack::Request.new(env)
  #   req.post?
  #   req.params["data"]

  class Request
    class << self
      attr_accessor :ip_filter

      # The priority when checking forwarded headers. The default
      # is <tt>[:forwarded, :x_forwarded]</tt>, which means, check the
      # +Forwarded+ header first, followed by the appropriate
      # <tt>X-Forwarded-*</tt> header.  You can revert the priority by
      # reversing the priority, or remove checking of either
      # or both headers by removing elements from the array.
      #
      # This should be set as appropriate in your environment
      # based on what reverse proxies are in use.  If you are not
      # using reverse proxies, you should probably use an empty
      # array.
      attr_accessor :forwarded_priority

      # The priority when checking either the <tt>X-Forwarded-Proto</tt>
      # or <tt>X-Forwarded-Scheme</tt> header for the forwarded protocol.
      # The default is <tt>[:proto, :scheme]</tt>, to try the
      # <tt>X-Forwarded-Proto</tt> header before the
      # <tt>X-Forwarded-Scheme</tt> header.  Rack 2 had behavior
      # similar to <tt>[:scheme, :proto]</tt>.  You can remove either or
      # both of the entries in array to ignore that respective header.
      attr_accessor :x_forwarded_proto_priority
    end

    @forwarded_priority = [:forwarded, :x_forwarded]
    @x_forwarded_proto_priority = [:proto, :scheme]

    valid_ipv4_octet = /\.(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])/

    trusted_proxies = Regexp.union(
      /\A127#{valid_ipv4_octet}{3}\z/,                          # localhost IPv4 range 127.x.x.x, per RFC-3330
      /\A::1\z/,                                                # localhost IPv6 ::1
      /\Af[cd][0-9a-f]{2}(?::[0-9a-f]{0,4}){0,7}\z/i,           # private IPv6 range fc00 .. fdff
      /\A10#{valid_ipv4_octet}{3}\z/,                           # private IPv4 range 10.x.x.x
      /\A172\.(1[6-9]|2[0-9]|3[01])#{valid_ipv4_octet}{2}\z/,   # private IPv4 range 172.16.0.0 .. 172.31.255.255
      /\A192\.168#{valid_ipv4_octet}{2}\z/,                     # private IPv4 range 192.168.x.x
      /\Alocalhost\z|\Aunix(\z|:)/i,                            # localhost hostname, and unix domain sockets
    )

    self.ip_filter = lambda { |ip| trusted_proxies.match?(ip) }

    ALLOWED_SCHEMES = %w(https http wss ws).freeze

    def initialize(env)
      @env = env
      @params = nil
    end

    def params
      @params ||= super
    end

    def update_param(k, v)
      super
      @params = nil
    end

    def delete_param(k)
      v = super
      @params = nil
      v
    end

    module Env
      # The environment of the request.
      attr_reader :env

      def initialize(env)
        @env = env
        # This module is included at least in `ActionDispatch::Request`
        # The call to `super()` allows additional mixed-in initializers are called
        super()
      end

      # Predicate method to test to see if `name` has been set as request
      # specific data
      def has_header?(name)
        @env.key? name
      end

      # Get a request specific value for `name`.
      def get_header(name)
        @env[name]
      end

      # If a block is given, it yields to the block if the value hasn't been set
      # on the request.
      def fetch_header(name, &block)
        @env.fetch(name, &block)
      end

      # Loops through each key / value pair in the request specific data.
      def each_header(&block)
        @env.each(&block)
      end

      # Set a request specific value for `name` to `v`
      def set_header(name, v)
        @env[name] = v
      end

      # Add a header that may have multiple values.
      #
      # Example:
      #   request.add_header 'Accept', 'image/png'
      #   request.add_header 'Accept', '*/*'
      #
      #   assert_equal 'image/png,*/*', request.get_header('Accept')
      #
      # http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
      def add_header(key, v)
        if v.nil?
          get_header key
        elsif has_header? key
          set_header key, "#{get_header key},#{v}"
        else
          set_header key, v
        end
      end

      # Delete a request specific value for `name`.
      def delete_header(name)
        @env.delete name
      end

      def initialize_copy(other)
        @env = other.env.dup
      end
    end

    module Helpers
      # The set of form-data media-types. Requests that do not indicate
      # one of the media types present in this list will not be eligible
      # for form-data / param parsing.
      FORM_DATA_MEDIA_TYPES = [
        'application/x-www-form-urlencoded',
        'multipart/form-data'
      ]

      # The set of media-types. Requests that do not indicate
      # one of the media types present in this list will not be eligible
      # for param parsing like soap attachments or generic multiparts
      PARSEABLE_DATA_MEDIA_TYPES = [
        'multipart/related',
        'multipart/mixed'
      ]

      # Default ports depending on scheme. Used to decide whether or not
      # to include the port in a generated URI.
      DEFAULT_PORTS = { 'http' => 80, 'https' => 443, 'coffee' => 80 }

      # The address of the client which connected to the proxy.
      HTTP_X_FORWARDED_FOR = 'HTTP_X_FORWARDED_FOR'

      # The contents of the host/:authority header sent to the proxy.
      HTTP_X_FORWARDED_HOST = 'HTTP_X_FORWARDED_HOST'

      HTTP_FORWARDED          = 'HTTP_FORWARDED'

      # The value of the scheme sent to the proxy.
      HTTP_X_FORWARDED_SCHEME = 'HTTP_X_FORWARDED_SCHEME'

      # The protocol used to connect to the proxy.
      HTTP_X_FORWARDED_PROTO = 'HTTP_X_FORWARDED_PROTO'

      # The port used to connect to the proxy.
      HTTP_X_FORWARDED_PORT = 'HTTP_X_FORWARDED_PORT'

      # Another way for specifying https scheme was used.
      HTTP_X_FORWARDED_SSL = 'HTTP_X_FORWARDED_SSL'

      def body;            get_header(RACK_INPUT)                         end
      def script_name;     get_header(SCRIPT_NAME).to_s                   end
      def script_name=(s); set_header(SCRIPT_NAME, s.to_s)                end

      def path_info;       get_header(PATH_INFO).to_s                     end
      def path_info=(s);   set_header(PATH_INFO, s.to_s)                  end

      def request_method;  get_header(REQUEST_METHOD)                     end
      def query_string;    get_header(QUERY_STRING).to_s                  end
      def content_length;  get_header('CONTENT_LENGTH')                   end
      def logger;          get_header(RACK_LOGGER)                        end
      def user_agent;      get_header('HTTP_USER_AGENT')                  end

      # the referer of the client
      def referer;         get_header('HTTP_REFERER')                     end
      alias referrer referer

      def session
        fetch_header(RACK_SESSION) do |k|
          set_header RACK_SESSION, default_session
        end
      end

      def session_options
        fetch_header(RACK_SESSION_OPTIONS) do |k|
          set_header RACK_SESSION_OPTIONS, {}
        end
      end

      # Checks the HTTP request method (or verb) to see if it was of type DELETE
      def delete?;  request_method == DELETE  end

      # Checks the HTTP request method (or verb) to see if it was of type GET
      def get?;     request_method == GET     end

      # Checks the HTTP request method (or verb) to see if it was of type HEAD
      def head?;    request_method == HEAD    end

      # Checks the HTTP request method (or verb) to see if it was of type OPTIONS
      def options?; request_method == OPTIONS end

      # Checks the HTTP request method (or verb) to see if it was of type LINK
      def link?;    request_method == LINK    end

      # Checks the HTTP request method (or verb) to see if it was of type PATCH
      def patch?;   request_method == PATCH   end

      # Checks the HTTP request method (or verb) to see if it was of type POST
      def post?;    request_method == POST    end

      # Checks the HTTP request method (or verb) to see if it was of type PUT
      def put?;     request_method == PUT     end

      # Checks the HTTP request method (or verb) to see if it was of type TRACE
      def trace?;   request_method == TRACE   end

      # Checks the HTTP request method (or verb) to see if it was of type UNLINK
      def unlink?;  request_method == UNLINK  end

      def scheme
        if get_header(HTTPS) == 'on'
          'https'
        elsif get_header(HTTP_X_FORWARDED_SSL) == 'on'
          'https'
        elsif forwarded_scheme
          forwarded_scheme
        else
          get_header(RACK_URL_SCHEME)
        end
      end

      # The authority of the incoming request as defined by RFC3976.
      # https://tools.ietf.org/html/rfc3986#section-3.2
      #
      # In HTTP/1, this is the `host` header.
      # In HTTP/2, this is the `:authority` pseudo-header.
      def authority
        forwarded_authority || host_authority || server_authority
      end

      # The authority as defined by the `SERVER_NAME` and `SERVER_PORT`
      # variables.
      def server_authority
        host = self.server_name
        port = self.server_port

        if host
          if port
            "#{host}:#{port}"
          else
            host
          end
        end
      end

      def server_name
        get_header(SERVER_NAME)
      end

      def server_port
        get_header(SERVER_PORT)
      end

      def cookies
        hash = fetch_header(RACK_REQUEST_COOKIE_HASH) do |key|
          set_header(key, {})
        end

        string = get_header(HTTP_COOKIE)

        unless string == get_header(RACK_REQUEST_COOKIE_STRING)
          hash.replace Utils.parse_cookies_header(string)
          set_header(RACK_REQUEST_COOKIE_STRING, string)
        end

        hash
      end

      def content_type
        content_type = get_header('CONTENT_TYPE')
        content_type.nil? || content_type.empty? ? nil : content_type
      end

      def xhr?
        get_header("HTTP_X_REQUESTED_WITH") == "XMLHttpRequest"
      end

      # The `HTTP_HOST` header.
      def host_authority
        get_header(HTTP_HOST)
      end

      def host_with_port(authority = self.authority)
        host, _, port = split_authority(authority)

        if port == DEFAULT_PORTS[self.scheme]
          host
        else
          authority
        end
      end

      # Returns a formatted host, suitable for being used in a URI.
      def host
        split_authority(self.authority)[0]
      end

      # Returns an address suitable for being to resolve to an address.
      # In the case of a domain name or IPv4 address, the result is the same
      # as +host+. In the case of IPv6 or future address formats, the square
      # brackets are removed.
      def hostname
        split_authority(self.authority)[1]
      end

      def port
        if authority = self.authority
          _, _, port = split_authority(authority)
        end

        port || forwarded_port&.last || DEFAULT_PORTS[scheme] || server_port
      end

      def forwarded_for
        forwarded_priority.each do |type|
          case type
          when :forwarded
            if forwarded_for = get_http_forwarded(:for)
              return(forwarded_for.map! do |authority|
                split_authority(authority)[1]
              end)
            end
          when :x_forwarded
            if value = get_header(HTTP_X_FORWARDED_FOR)
              return(split_header(value).map do |authority|
                split_authority(wrap_ipv6(authority))[1]
              end)
            end
          end
        end

        nil
      end

      def forwarded_port
        forwarded_priority.each do |type|
          case type
          when :forwarded
            if forwarded = get_http_forwarded(:for)
              return(forwarded.map do |authority|
                split_authority(authority)[2]
              end.compact)
            end
          when :x_forwarded
            if value = get_header(HTTP_X_FORWARDED_PORT)
              return split_header(value).map(&:to_i)
            end
          end
        end

        nil
      end

      def forwarded_authority
        forwarded_priority.each do |type|
          case type
          when :forwarded
            if forwarded = get_http_forwarded(:host)
              return forwarded.last
            end
          when :x_forwarded
            if value = get_header(HTTP_X_FORWARDED_HOST)
              return wrap_ipv6(split_header(value).last)
            end
          end
        end

        nil
      end

      def ssl?
        scheme == 'https' || scheme == 'wss'
      end

      def ip
        remote_addresses = split_header(get_header('REMOTE_ADDR'))
        external_addresses = reject_trusted_ip_addresses(remote_addresses)

        unless external_addresses.empty?
          return external_addresses.last
        end

        if (forwarded_for = self.forwarded_for) && !forwarded_for.empty?
          # The forwarded for addresses are ordered: client, proxy1, proxy2.
          # So we reject all the trusted addresses (proxy*) and return the
          # last client. Or if we trust everyone, we just return the first
          # address.
          return reject_trusted_ip_addresses(forwarded_for).last || forwarded_for.first
        end

        # If all the addresses are trusted, and we aren't forwarded, just return
        # the first remote address, which represents the source of the request.
        remote_addresses.first
      end

      # The media type (type/subtype) portion of the CONTENT_TYPE header
      # without any media type parameters. e.g., when CONTENT_TYPE is
      # "text/plain;charset=utf-8", the media-type is "text/plain".
      #
      # For more information on the use of media types in HTTP, see:
      # http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7
      def media_type
        MediaType.type(content_type)
      end

      # The media type parameters provided in CONTENT_TYPE as a Hash, or
      # an empty Hash if no CONTENT_TYPE or media-type parameters were
      # provided.  e.g., when the CONTENT_TYPE is "text/plain;charset=utf-8",
      # this method responds with the following Hash:
      #   { 'charset' => 'utf-8' }
      def media_type_params
        MediaType.params(content_type)
      end

      # The character set of the request body if a "charset" media type
      # parameter was given, or nil if no "charset" was specified. Note
      # that, per RFC2616, text/* media types that specify no explicit
      # charset are to be considered ISO-8859-1.
      def content_charset
        media_type_params['charset']
      end

      # Determine whether the request body contains form-data by checking
      # the request content-type for one of the media-types:
      # "application/x-www-form-urlencoded" or "multipart/form-data". The
      # list of form-data media types can be modified through the
      # +FORM_DATA_MEDIA_TYPES+ array.
      #
      # A request body is also assumed to contain form-data when no
      # content-type header is provided and the request_method is POST.
      def form_data?
        type = media_type
        meth = get_header(RACK_METHODOVERRIDE_ORIGINAL_METHOD) || get_header(REQUEST_METHOD)

        (meth == POST && type.nil?) || FORM_DATA_MEDIA_TYPES.include?(type)
      end

      # Determine whether the request body contains data by checking
      # the request media_type against registered parse-data media-types
      def parseable_data?
        PARSEABLE_DATA_MEDIA_TYPES.include?(media_type)
      end

      # Returns the data received in the query string.
      def GET
        if get_header(RACK_REQUEST_QUERY_STRING) == query_string
          get_header(RACK_REQUEST_QUERY_HASH)
        else
          query_hash = parse_query(query_string, '&')
          set_header(RACK_REQUEST_QUERY_STRING, query_string)
          set_header(RACK_REQUEST_QUERY_HASH, query_hash)
        end
      end

      # Returns the data received in the request body.
      #
      # This method support both application/x-www-form-urlencoded and
      # multipart/form-data.
      def POST
        if error = get_header(RACK_REQUEST_FORM_ERROR)
          raise error.class, error.message, cause: error.cause
        end

        begin
          rack_input = get_header(RACK_INPUT)

          # If the form hash was already memoized:
          if form_hash = get_header(RACK_REQUEST_FORM_HASH)
            # And it was memoized from the same input:
            if get_header(RACK_REQUEST_FORM_INPUT).equal?(rack_input)
              return form_hash
            end
          end

          # Otherwise, figure out how to parse the input:
          if rack_input.nil?
            set_header RACK_REQUEST_FORM_INPUT, nil
            set_header(RACK_REQUEST_FORM_HASH, {})
          elsif form_data? || parseable_data?
            unless set_header(RACK_REQUEST_FORM_HASH, parse_multipart)
              form_vars = get_header(RACK_INPUT).read

              # Fix for Safari Ajax postings that always append \0
              # form_vars.sub!(/\0\z/, '') # performance replacement:
              form_vars.slice!(-1) if form_vars.end_with?("\0")

              set_header RACK_REQUEST_FORM_VARS, form_vars
              set_header RACK_REQUEST_FORM_HASH, parse_query(form_vars, '&')
            end

            set_header RACK_REQUEST_FORM_INPUT, get_header(RACK_INPUT)
            get_header RACK_REQUEST_FORM_HASH
          else
            set_header RACK_REQUEST_FORM_INPUT, get_header(RACK_INPUT)
            set_header(RACK_REQUEST_FORM_HASH, {})
          end
        rescue => error
          set_header(RACK_REQUEST_FORM_ERROR, error)
          raise
        end
      end

      # The union of GET and POST data.
      #
      # Note that modifications will not be persisted in the env. Use update_param or delete_param if you want to destructively modify params.
      def params
        self.GET.merge(self.POST)
      end

      # Destructively update a parameter, whether it's in GET and/or POST. Returns nil.
      #
      # The parameter is updated wherever it was previous defined, so GET, POST, or both. If it wasn't previously defined, it's inserted into GET.
      #
      # <tt>env['rack.input']</tt> is not touched.
      def update_param(k, v)
        found = false
        if self.GET.has_key?(k)
          found = true
          self.GET[k] = v
        end
        if self.POST.has_key?(k)
          found = true
          self.POST[k] = v
        end
        unless found
          self.GET[k] = v
        end
      end

      # Destructively delete a parameter, whether it's in GET or POST. Returns the value of the deleted parameter.
      #
      # If the parameter is in both GET and POST, the POST value takes precedence since that's how #params works.
      #
      # <tt>env['rack.input']</tt> is not touched.
      def delete_param(k)
        post_value, get_value = self.POST.delete(k), self.GET.delete(k)
        post_value || get_value
      end

      def base_url
        "#{scheme}://#{host_with_port}"
      end

      # Tries to return a remake of the original request URL as a string.
      def url
        base_url + fullpath
      end

      def path
        script_name + path_info
      end

      def fullpath
        query_string.empty? ? path : "#{path}?#{query_string}"
      end

      def accept_encoding
        parse_http_accept_header(get_header("HTTP_ACCEPT_ENCODING"))
      end

      def accept_language
        parse_http_accept_header(get_header("HTTP_ACCEPT_LANGUAGE"))
      end

      def trusted_proxy?(ip)
        Rack::Request.ip_filter.call(ip)
      end

      # shortcut for <tt>request.params[key]</tt>
      def [](key)
        warn("Request#[] is deprecated and will be removed in a future version of Rack. Please use request.params[] instead", uplevel: 1)

        params[key.to_s]
      end

      # shortcut for <tt>request.params[key] = value</tt>
      #
      # Note that modifications will not be persisted in the env. Use update_param or delete_param if you want to destructively modify params.
      def []=(key, value)
        warn("Request#[]= is deprecated and will be removed in a future version of Rack. Please use request.params[]= instead", uplevel: 1)

        params[key.to_s] = value
      end

      # like Hash#values_at
      def values_at(*keys)
        keys.map { |key| params[key] }
      end

      private

      def default_session; {}; end

      # Assist with compatibility when processing `X-Forwarded-For`.
      def wrap_ipv6(host)
        # Even thought IPv6 addresses should be wrapped in square brackets,
        # sometimes this is not done in various legacy/underspecified headers.
        # So we try to fix this situation for compatibility reasons.

        # Try to detect IPv6 addresses which aren't escaped yet:
        if !host.start_with?('[') && host.count(':') > 1
          "[#{host}]"
        else
          host
        end
      end

      def parse_http_accept_header(header)
        header.to_s.split(",").each(&:strip!).map do |part|
          attribute, parameters = part.split(";", 2).each(&:strip!)
          quality = 1.0
          if parameters and /\Aq=([\d.]+)/ =~ parameters
            quality = $1.to_f
          end
          [attribute, quality]
        end
      end

      # Get an array of values set in the RFC 7239 `Forwarded` request header.
      def get_http_forwarded(token)
        Utils.forwarded_values(get_header(HTTP_FORWARDED))&.[](token)
      end

      def query_parser
        Utils.default_query_parser
      end

      def parse_query(qs, d = '&')
        query_parser.parse_nested_query(qs, d)
      end

      def parse_multipart
        Rack::Multipart.extract_multipart(self, query_parser)
      end

      def split_header(value)
        value ? value.strip.split(/[,\s]+/) : []
      end

      # ipv6 extracted from resolv stdlib, simplified
      # to remove numbered match group creation.
      ipv6 = Regexp.union(
        /(?:[0-9A-Fa-f]{1,4}:){7}
         [0-9A-Fa-f]{1,4}/x,
        /(?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)? ::
         (?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?/x,
        /(?:[0-9A-Fa-f]{1,4}:){6,6}
         \d+\.\d+\.\d+\.\d+/x,
        /(?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)? ::
         (?:[0-9A-Fa-f]{1,4}:)*
         \d+\.\d+\.\d+\.\d+/x,
        /[Ff][Ee]80
         (?::[0-9A-Fa-f]{1,4}){7}
         %[-0-9A-Za-z._~]+/x,
        /[Ff][Ee]80:
         (?:
           (?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)? ::
           (?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?
           |
           :(?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?
         )?
         :[0-9A-Fa-f]{1,4}%[-0-9A-Za-z._~]+/x)

      AUTHORITY = /
        \A
        (?<host>
          # Match IPv6 as a string of hex digits and colons in square brackets
          \[(?<address>#{ipv6})\]
          |
          # Match any other printable string (except square brackets) as a hostname
          (?<address>[[[:graph:]&&[^\[\]]]]*?)
        )
        (:(?<port>\d+))?
        \z
      /x

      private_constant :AUTHORITY

      def split_authority(authority)
        return [] if authority.nil?
        return [] unless match = AUTHORITY.match(authority)
        return match[:host], match[:address], match[:port]&.to_i
      end

      def reject_trusted_ip_addresses(ip_addresses)
        ip_addresses.reject { |ip| trusted_proxy?(ip) }
      end

      FORWARDED_SCHEME_HEADERS = {
        proto: HTTP_X_FORWARDED_PROTO,
        scheme: HTTP_X_FORWARDED_SCHEME
      }.freeze
      private_constant :FORWARDED_SCHEME_HEADERS
      def forwarded_scheme
        forwarded_priority.each do |type|
          case type
          when :forwarded
            if (forwarded_proto = get_http_forwarded(:proto)) &&
               (scheme = allowed_scheme(forwarded_proto.last))
              return scheme
            end
          when :x_forwarded
            x_forwarded_proto_priority.each do |x_type|
              if header = FORWARDED_SCHEME_HEADERS[x_type]
                split_header(get_header(header)).reverse_each do |scheme|
                  if allowed_scheme(scheme)
                    return scheme
                  end
                end
              end
            end
          end
        end

        nil
      end

      def allowed_scheme(header)
        header if ALLOWED_SCHEMES.include?(header)
      end

      def forwarded_priority
        Request.forwarded_priority
      end

      def x_forwarded_proto_priority
        Request.x_forwarded_proto_priority
      end
    end

    include Env
    include Helpers
  end
end

# :nocov:
require_relative 'multipart' unless defined?(Rack::Multipart)
# :nocov:
PKCH[ɸHO��.share/gems/gems/rack-3.0.8/lib/rack/version.rbnu�[���# frozen_string_literal: true

# Copyright (C) 2007-2019 Leah Neukirchen <http://leahneukirchen.org/infopage.html>
#
# Rack is freely distributable under the terms of an MIT-style license.
# See MIT-LICENSE or https://opensource.org/licenses/MIT.

# The Rack main module, serving as a namespace for all core Rack
# modules and classes.
#
# All modules meant for use in your application are <tt>autoload</tt>ed here,
# so it should be enough just to <tt>require 'rack'</tt> in your code.

module Rack
  # The Rack protocol version number implemented.
  VERSION = [1, 3].freeze
  deprecate_constant :VERSION

  VERSION_STRING = "1.3".freeze
  deprecate_constant :VERSION_STRING

  # The Rack protocol version number implemented.
  def self.version
    warn "Rack.version is deprecated and will be removed in Rack 3.1!", uplevel: 1
    VERSION
  end

  RELEASE = "3.0.8"

  # Return the Rack release as a dotted string.
  def self.release
    RELEASE
  end
end
PKCH[O�i���.share/gems/gems/rack-3.0.8/lib/rack/headers.rbnu�[���module Rack
  # Rack::Headers is a Hash subclass that downcases all keys.  It's designed
  # to be used by rack applications that don't implement the Rack 3 SPEC
  # (by using non-lowercase response header keys), automatically handling
  # the downcasing of keys.
  class Headers < Hash
    def self.[](*items)
      if items.length % 2 != 0
        if items.length == 1 && items.first.is_a?(Hash)
          new.merge!(items.first)
        else
          raise ArgumentError, "odd number of arguments for Rack::Headers"
        end
      else
        hash = new
        loop do
          break if items.length == 0
          key = items.shift
          value = items.shift
          hash[key] = value
        end
        hash
      end
    end

    def [](key)
      super(downcase_key(key))
    end

    def []=(key, value)
      super(key.downcase.freeze, value)
    end
    alias store []=

    def assoc(key)
      super(downcase_key(key))
    end

    def compare_by_identity
      raise TypeError, "Rack::Headers cannot compare by identity, use regular Hash"
    end

    def delete(key)
      super(downcase_key(key))
    end

    def dig(key, *a)
      super(downcase_key(key), *a)
    end

    def fetch(key, *default, &block)
      key = downcase_key(key)
      super
    end

    def fetch_values(*a)
      super(*a.map!{|key| downcase_key(key)})
    end

    def has_key?(key)
      super(downcase_key(key))
    end
    alias include? has_key?
    alias key? has_key?
    alias member? has_key?

    def invert
      hash = self.class.new
      each{|key, value| hash[value] = key}
      hash
    end

    def merge(hash, &block)
      dup.merge!(hash, &block)
    end

    def reject(&block)
      hash = dup
      hash.reject!(&block)
      hash
    end

    def replace(hash)
      clear
      update(hash)
    end

    def select(&block)
      hash = dup
      hash.select!(&block)
      hash
    end

    def to_proc
      lambda{|x| self[x]}
    end

    def transform_values(&block)
      dup.transform_values!(&block)
    end

    def update(hash, &block)
      hash.each do |key, value|
        self[key] = if block_given? && include?(key)
          block.call(key, self[key], value)
        else
          value
        end
      end
      self
    end
    alias merge! update

    def values_at(*keys)
      keys.map{|key| self[key]}
    end

    # :nocov:
    if RUBY_VERSION >= '2.5'
    # :nocov:
      def slice(*a)
        h = self.class.new
        a.each{|k| h[k] = self[k] if has_key?(k)}
        h
      end

      def transform_keys(&block)
        dup.transform_keys!(&block)
      end

      def transform_keys!
        hash = self.class.new
        each do |k, v|
          hash[yield k] = v
        end
        replace(hash)
      end
    end

    # :nocov:
    if RUBY_VERSION >= '3.0'
    # :nocov:
      def except(*a)
        super(*a.map!{|key| downcase_key(key)})
      end
    end

    private

    def downcase_key(key)
      key.is_a?(String) ? key.downcase : key
    end
  end
end
PKCH[�|��,share/gems/gems/rack-3.0.8/lib/rack/files.rbnu�[���# frozen_string_literal: true

require 'time'

require_relative 'constants'
require_relative 'head'
require_relative 'utils'
require_relative 'request'
require_relative 'mime'

module Rack
  # Rack::Files serves files below the +root+ directory given, according to the
  # path info of the Rack request.
  # e.g. when Rack::Files.new("/etc") is used, you can access 'passwd' file
  # as http://localhost:9292/passwd
  #
  # Handlers can detect if bodies are a Rack::Files, and use mechanisms
  # like sendfile on the +path+.

  class Files
    ALLOWED_VERBS = %w[GET HEAD OPTIONS]
    ALLOW_HEADER = ALLOWED_VERBS.join(', ')
    MULTIPART_BOUNDARY = 'AaB03x'

    attr_reader :root

    def initialize(root, headers = {}, default_mime = 'text/plain')
      @root = (::File.expand_path(root) if root)
      @headers = headers
      @default_mime = default_mime
      @head = Rack::Head.new(lambda { |env| get env })
    end

    def call(env)
      # HEAD requests drop the response body, including 4xx error messages.
      @head.call env
    end

    def get(env)
      request = Rack::Request.new env
      unless ALLOWED_VERBS.include? request.request_method
        return fail(405, "Method Not Allowed", { 'allow' => ALLOW_HEADER })
      end

      path_info = Utils.unescape_path request.path_info
      return fail(400, "Bad Request") unless Utils.valid_path?(path_info)

      clean_path_info = Utils.clean_path_info(path_info)
      path = ::File.join(@root, clean_path_info)

      available = begin
        ::File.file?(path) && ::File.readable?(path)
      rescue SystemCallError
        # Not sure in what conditions this exception can occur, but this
        # is a safe way to handle such an error.
        # :nocov:
        false
        # :nocov:
      end

      if available
        serving(request, path)
      else
        fail(404, "File not found: #{path_info}")
      end
    end

    def serving(request, path)
      if request.options?
        return [200, { 'allow' => ALLOW_HEADER, CONTENT_LENGTH => '0' }, []]
      end
      last_modified = ::File.mtime(path).httpdate
      return [304, {}, []] if request.get_header('HTTP_IF_MODIFIED_SINCE') == last_modified

      headers = { "last-modified" => last_modified }
      mime_type = mime_type path, @default_mime
      headers[CONTENT_TYPE] = mime_type if mime_type

      # Set custom headers
      headers.merge!(@headers) if @headers

      status = 200
      size = filesize path

      ranges = Rack::Utils.get_byte_ranges(request.get_header('HTTP_RANGE'), size)
      if ranges.nil?
        # No ranges:
        ranges = [0..size - 1]
      elsif ranges.empty?
        # Unsatisfiable. Return error, and file size:
        response = fail(416, "Byte range unsatisfiable")
        response[1]["content-range"] = "bytes */#{size}"
        return response
      else
        # Partial content
        partial_content = true

        if ranges.size == 1
          range = ranges[0]
          headers["content-range"] = "bytes #{range.begin}-#{range.end}/#{size}"
        else
          headers[CONTENT_TYPE] = "multipart/byteranges; boundary=#{MULTIPART_BOUNDARY}"
        end

        status = 206
        body = BaseIterator.new(path, ranges, mime_type: mime_type, size: size)
        size = body.bytesize
      end

      headers[CONTENT_LENGTH] = size.to_s

      if request.head?
        body = []
      elsif !partial_content
        body = Iterator.new(path, ranges, mime_type: mime_type, size: size)
      end

      [status, headers, body]
    end

    class BaseIterator
      attr_reader :path, :ranges, :options

      def initialize(path, ranges, options)
        @path = path
        @ranges = ranges
        @options = options
      end

      def each
        ::File.open(path, "rb") do |file|
          ranges.each do |range|
            yield multipart_heading(range) if multipart?

            each_range_part(file, range) do |part|
              yield part
            end
          end

          yield "\r\n--#{MULTIPART_BOUNDARY}--\r\n" if multipart?
        end
      end

      def bytesize
        size = ranges.inject(0) do |sum, range|
          sum += multipart_heading(range).bytesize if multipart?
          sum += range.size
        end
        size += "\r\n--#{MULTIPART_BOUNDARY}--\r\n".bytesize if multipart?
        size
      end

      def close; end

      private

      def multipart?
        ranges.size > 1
      end

      def multipart_heading(range)
<<-EOF
\r
--#{MULTIPART_BOUNDARY}\r
content-type: #{options[:mime_type]}\r
content-range: bytes #{range.begin}-#{range.end}/#{options[:size]}\r
\r
EOF
      end

      def each_range_part(file, range)
        file.seek(range.begin)
        remaining_len = range.end - range.begin + 1
        while remaining_len > 0
          part = file.read([8192, remaining_len].min)
          break unless part
          remaining_len -= part.length

          yield part
        end
      end
    end

    class Iterator < BaseIterator
      alias :to_path :path
    end

    private

    def fail(status, body, headers = {})
      body += "\n"

      [
        status,
        {
          CONTENT_TYPE   => "text/plain",
          CONTENT_LENGTH => body.size.to_s,
          "x-cascade" => "pass"
        }.merge!(headers),
        [body]
      ]
    end

    # The MIME type for the contents of the file located at @path
    def mime_type(path, default_mime)
      Mime.mime_type(::File.extname(path), default_mime)
    end

    def filesize(path)
      #   We check via File::size? whether this file provides size info
      #   via stat (e.g. /proc files often don't), otherwise we have to
      #   figure it out by reading the whole file into memory.
      ::File.size?(path) || ::File.read(path).bytesize
    end
  end
end
PKCH[�&�{!{!3share/gems/gems/rack-3.0.8/lib/rack/query_parser.rbnu�[���# frozen_string_literal: true

require 'uri'

module Rack
  class QueryParser
    DEFAULT_SEP = /[&] */n
    COMMON_SEP = { ";" => /[;] */n, ";," => /[;,] */n, "&" => /[&] */n }

    # ParameterTypeError is the error that is raised when incoming structural
    # parameters (parsed by parse_nested_query) contain conflicting types.
    class ParameterTypeError < TypeError; end

    # InvalidParameterError is the error that is raised when incoming structural
    # parameters (parsed by parse_nested_query) contain invalid format or byte
    # sequence.
    class InvalidParameterError < ArgumentError; end

    # ParamsTooDeepError is the error that is raised when params are recursively
    # nested over the specified limit.
    class ParamsTooDeepError < RangeError; end

    def self.make_default(_key_space_limit=(not_deprecated = true; nil), param_depth_limit)
      unless not_deprecated
        warn("`first argument `key_space limit` is deprecated and no longer has an effect. Please call with only one argument, which will be required in a future version of Rack", uplevel: 1)
      end

      new Params, param_depth_limit
    end

    attr_reader :param_depth_limit

    def initialize(params_class, _key_space_limit=(not_deprecated = true; nil), param_depth_limit)
      unless not_deprecated
        warn("`second argument `key_space limit` is deprecated and no longer has an effect. Please call with only two arguments, which will be required in a future version of Rack", uplevel: 1)
      end

      @params_class = params_class
      @param_depth_limit = param_depth_limit
    end

    # Stolen from Mongrel, with some small modifications:
    # Parses a query string by breaking it up at the '&'.  You can also use this
    # to parse cookies by changing the characters used in the second parameter
    # (which defaults to '&').
    def parse_query(qs, separator = nil, &unescaper)
      unescaper ||= method(:unescape)

      params = make_params

      (qs || '').split(separator ? (COMMON_SEP[separator] || /[#{separator}] */n) : DEFAULT_SEP).each do |p|
        next if p.empty?
        k, v = p.split('=', 2).map!(&unescaper)

        if cur = params[k]
          if cur.class == Array
            params[k] << v
          else
            params[k] = [cur, v]
          end
        else
          params[k] = v
        end
      end

      return params.to_h
    end

    # parse_nested_query expands a query string into structural types. Supported
    # types are Arrays, Hashes and basic value types. It is possible to supply
    # query strings with parameters of conflicting types, in this case a
    # ParameterTypeError is raised. Users are encouraged to return a 400 in this
    # case.
    def parse_nested_query(qs, separator = nil)
      params = make_params

      unless qs.nil? || qs.empty?
        (qs || '').split(separator ? (COMMON_SEP[separator] || /[#{separator}] */n) : DEFAULT_SEP).each do |p|
          k, v = p.split('=', 2).map! { |s| unescape(s) }

          _normalize_params(params, k, v, 0)
        end
      end

      return params.to_h
    rescue ArgumentError => e
      raise InvalidParameterError, e.message, e.backtrace
    end

    # normalize_params recursively expands parameters into structural types. If
    # the structural types represented by two different parameter names are in
    # conflict, a ParameterTypeError is raised.  The depth argument is deprecated
    # and should no longer be used, it is kept for backwards compatibility with
    # earlier versions of rack.
    def normalize_params(params, name, v, _depth=nil)
      _normalize_params(params, name, v, 0)
    end

    private def _normalize_params(params, name, v, depth)
      raise ParamsTooDeepError if depth >= param_depth_limit

      if !name
        # nil name, treat same as empty string (required by tests)
        k = after = ''
      elsif depth == 0
        # Start of parsing, don't treat [] or [ at start of string specially
        if start = name.index('[', 1)
          # Start of parameter nesting, use part before brackets as key
          k = name[0, start]
          after = name[start, name.length]
        else
          # Plain parameter with no nesting
          k = name
          after = ''
        end
      elsif name.start_with?('[]')
        # Array nesting
        k = '[]'
        after = name[2, name.length]
      elsif name.start_with?('[') && (start = name.index(']', 1))
        # Hash nesting, use the part inside brackets as the key
        k = name[1, start-1]
        after = name[start+1, name.length]
      else
        # Probably malformed input, nested but not starting with [
        # treat full name as key for backwards compatibility.
        k = name
        after = ''
      end

      return if k.empty?

      if after == ''
        if k == '[]' && depth != 0
          return [v]
        else
          params[k] = v
        end
      elsif after == "["
        params[name] = v
      elsif after == "[]"
        params[k] ||= []
        raise ParameterTypeError, "expected Array (got #{params[k].class.name}) for param `#{k}'" unless params[k].is_a?(Array)
        params[k] << v
      elsif after.start_with?('[]')
        # Recognize x[][y] (hash inside array) parameters
        unless after[2] == '[' && after.end_with?(']') && (child_key = after[3, after.length-4]) && !child_key.empty? && !child_key.index('[') && !child_key.index(']')
          # Handle other nested array parameters
          child_key = after[2, after.length]
        end
        params[k] ||= []
        raise ParameterTypeError, "expected Array (got #{params[k].class.name}) for param `#{k}'" unless params[k].is_a?(Array)
        if params_hash_type?(params[k].last) && !params_hash_has_key?(params[k].last, child_key)
          _normalize_params(params[k].last, child_key, v, depth + 1)
        else
          params[k] << _normalize_params(make_params, child_key, v, depth + 1)
        end
      else
        params[k] ||= make_params
        raise ParameterTypeError, "expected Hash (got #{params[k].class.name}) for param `#{k}'" unless params_hash_type?(params[k])
        params[k] = _normalize_params(params[k], after, v, depth + 1)
      end

      params
    end

    def make_params
      @params_class.new
    end

    def new_depth_limit(param_depth_limit)
      self.class.new @params_class, param_depth_limit
    end

    private

    def params_hash_type?(obj)
      obj.kind_of?(@params_class)
    end

    def params_hash_has_key?(hash, key)
      return false if /\[\]/.match?(key)

      key.split(/[\[\]]+/).inject(hash) do |h, part|
        next h if part == ''
        return false unless params_hash_type?(h) && h.key?(part)
        h[part]
      end

      true
    end

    def unescape(string, encoding = Encoding::UTF_8)
      URI.decode_www_form_component(string, encoding)
    end

    class Params
      def initialize
        @size   = 0
        @params = {}
      end

      def [](key)
        @params[key]
      end

      def []=(key, value)
        @params[key] = value
      end

      def key?(key)
        @params.key?(key)
      end

      # Recursively unwraps nested `Params` objects and constructs an object
      # of the same shape, but using the objects' internal representations
      # (Ruby hashes) in place of the objects. The result is a hash consisting
      # purely of Ruby primitives.
      #
      #   Mutation warning!
      #
      #   1. This method mutates the internal representation of the `Params`
      #      objects in order to save object allocations.
      #
      #   2. The value you get back is a reference to the internal hash
      #      representation, not a copy.
      #
      #   3. Because the `Params` object's internal representation is mutable
      #      through the `#[]=` method, it is not thread safe. The result of
      #      getting the hash representation while another thread is adding a
      #      key to it is non-deterministic.
      #
      def to_h
        @params.each do |key, value|
          case value
          when self
            # Handle circular references gracefully.
            @params[key] = @params
          when Params
            @params[key] = value.to_h
          when Array
            value.map! { |v| v.kind_of?(Params) ? v.to_h : v }
          else
            # Ignore anything that is not a `Params` object or
            # a collection that can contain one.
          end
        end
        @params
      end
      alias_method :to_params_hash, :to_h
    end
  end
end
PKCH[�/�{{3share/gems/gems/rack-3.0.8/lib/rack/mock_request.rbnu�[���# frozen_string_literal: true

require 'uri'
require 'stringio'

require_relative 'constants'
require_relative 'mock_response'

module Rack
  # Rack::MockRequest helps testing your Rack application without
  # actually using HTTP.
  #
  # After performing a request on a URL with get/post/put/patch/delete, it
  # returns a MockResponse with useful helper methods for effective
  # testing.
  #
  # You can pass a hash with additional configuration to the
  # get/post/put/patch/delete.
  # <tt>:input</tt>:: A String or IO-like to be used as rack.input.
  # <tt>:fatal</tt>:: Raise a FatalWarning if the app writes to rack.errors.
  # <tt>:lint</tt>:: If true, wrap the application in a Rack::Lint.

  class MockRequest
    class FatalWarning < RuntimeError
    end

    class FatalWarner
      def puts(warning)
        raise FatalWarning, warning
      end

      def write(warning)
        raise FatalWarning, warning
      end

      def flush
      end

      def string
        ""
      end
    end

    DEFAULT_ENV = {
      RACK_INPUT        => StringIO.new,
      RACK_ERRORS       => StringIO.new,
    }.freeze

    def initialize(app)
      @app = app
    end

    # Make a GET request and return a MockResponse. See #request.
    def get(uri, opts = {})     request(GET, uri, opts)     end
    # Make a POST request and return a MockResponse. See #request.
    def post(uri, opts = {})    request(POST, uri, opts)    end
    # Make a PUT request and return a MockResponse. See #request.
    def put(uri, opts = {})     request(PUT, uri, opts)     end
    # Make a PATCH request and return a MockResponse. See #request.
    def patch(uri, opts = {})   request(PATCH, uri, opts)   end
    # Make a DELETE request and return a MockResponse. See #request.
    def delete(uri, opts = {})  request(DELETE, uri, opts)  end
    # Make a HEAD request and return a MockResponse. See #request.
    def head(uri, opts = {})    request(HEAD, uri, opts)    end
    # Make an OPTIONS request and return a MockResponse. See #request.
    def options(uri, opts = {}) request(OPTIONS, uri, opts) end

    # Make a request using the given request method for the given
    # uri to the rack application and return a MockResponse.
    # Options given are passed to MockRequest.env_for.
    def request(method = GET, uri = "", opts = {})
      env = self.class.env_for(uri, opts.merge(method: method))

      if opts[:lint]
        app = Rack::Lint.new(@app)
      else
        app = @app
      end

      errors = env[RACK_ERRORS]
      status, headers, body = app.call(env)
      MockResponse.new(status, headers, body, errors)
    ensure
      body.close if body.respond_to?(:close)
    end

    # For historical reasons, we're pinning to RFC 2396.
    # URI::Parser = URI::RFC2396_Parser
    def self.parse_uri_rfc2396(uri)
      @parser ||= URI::Parser.new
      @parser.parse(uri)
    end

    # Return the Rack environment used for a request to +uri+.
    # All options that are strings are added to the returned environment.
    # Options:
    # :fatal :: Whether to raise an exception if request outputs to rack.errors
    # :input :: The rack.input to set
    # :http_version :: The SERVER_PROTOCOL to set
    # :method :: The HTTP request method to use
    # :params :: The params to use
    # :script_name :: The SCRIPT_NAME to set
    def self.env_for(uri = "", opts = {})
      uri = parse_uri_rfc2396(uri)
      uri.path = "/#{uri.path}" unless uri.path[0] == ?/

      env = DEFAULT_ENV.dup

      env[REQUEST_METHOD]  = (opts[:method] ? opts[:method].to_s.upcase : GET).b
      env[SERVER_NAME]     = (uri.host || "example.org").b
      env[SERVER_PORT]     = (uri.port ? uri.port.to_s : "80").b
      env[SERVER_PROTOCOL] = opts[:http_version] || 'HTTP/1.1'
      env[QUERY_STRING]    = (uri.query.to_s).b
      env[PATH_INFO]       = (uri.path).b
      env[RACK_URL_SCHEME] = (uri.scheme || "http").b
      env[HTTPS]           = (env[RACK_URL_SCHEME] == "https" ? "on" : "off").b

      env[SCRIPT_NAME] = opts[:script_name] || ""

      if opts[:fatal]
        env[RACK_ERRORS] = FatalWarner.new
      else
        env[RACK_ERRORS] = StringIO.new
      end

      if params = opts[:params]
        if env[REQUEST_METHOD] == GET
          params = Utils.parse_nested_query(params) if params.is_a?(String)
          params.update(Utils.parse_nested_query(env[QUERY_STRING]))
          env[QUERY_STRING] = Utils.build_nested_query(params)
        elsif !opts.has_key?(:input)
          opts["CONTENT_TYPE"] = "application/x-www-form-urlencoded"
          if params.is_a?(Hash)
            if data = Rack::Multipart.build_multipart(params)
              opts[:input] = data
              opts["CONTENT_LENGTH"] ||= data.length.to_s
              opts["CONTENT_TYPE"] = "multipart/form-data; boundary=#{Rack::Multipart::MULTIPART_BOUNDARY}"
            else
              opts[:input] = Utils.build_nested_query(params)
            end
          else
            opts[:input] = params
          end
        end
      end

      opts[:input] ||= String.new
      if String === opts[:input]
        rack_input = StringIO.new(opts[:input])
      else
        rack_input = opts[:input]
      end

      rack_input.set_encoding(Encoding::BINARY)
      env[RACK_INPUT] = rack_input

      env["CONTENT_LENGTH"] ||= env[RACK_INPUT].size.to_s if env[RACK_INPUT].respond_to?(:size)

      opts.each { |field, value|
        env[field] = value  if String === field
      }

      env
    end
  end
end
PKCH[;�`�ff.share/gems/gems/rack-3.0.8/lib/rack/runtime.rbnu�[���# frozen_string_literal: true

require_relative 'utils'

module Rack
  # Sets an "x-runtime" response header, indicating the response
  # time of the request, in seconds
  #
  # You can put it right before the application to see the processing
  # time, or before all the other middlewares to include time for them,
  # too.
  class Runtime
    FORMAT_STRING = "%0.6f" # :nodoc:
    HEADER_NAME = "x-runtime" # :nodoc:

    def initialize(app, name = nil)
      @app = app
      @header_name = HEADER_NAME
      @header_name += "-#{name.to_s.downcase}" if name
    end

    def call(env)
      start_time = Utils.clock_time
      _, headers, _ = response = @app.call(env)

      request_time = Utils.clock_time - start_time

      unless headers.key?(@header_name)
        headers[@header_name] = FORMAT_STRING % request_time
      end

      response
    end
  end
end
PKCH[iZ�&&5share/gems/gems/rack-3.0.8/lib/rack/content_length.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'

module Rack

  # Sets the content-length header on responses that do not specify
  # a content-length or transfer-encoding header.  Note that this
  # does not fix responses that have an invalid content-length
  # header specified.
  class ContentLength
    include Rack::Utils

    def initialize(app)
      @app = app
    end

    def call(env)
      status, headers, body = response = @app.call(env)

      if !STATUS_WITH_NO_ENTITY_BODY.key?(status.to_i) &&
         !headers[CONTENT_LENGTH] &&
         !headers[TRANSFER_ENCODING] &&
         body.respond_to?(:to_ary)

        response[2] = body = body.to_ary
        headers[CONTENT_LENGTH] = body.sum(&:bytesize).to_s
      end

      response
    end
  end
end
PKCH[�R�

4share/gems/gems/rack-3.0.8/lib/rack/mock_response.rbnu�[���# frozen_string_literal: true

require 'cgi/cookie'
require 'time'

require_relative 'response'

module Rack
  # Rack::MockResponse provides useful helpers for testing your apps.
  # Usually, you don't create the MockResponse on your own, but use
  # MockRequest.

  class MockResponse < Rack::Response
    class << self
      alias [] new
    end

    # Headers
    attr_reader :original_headers, :cookies

    # Errors
    attr_accessor :errors

    def initialize(status, headers, body, errors = nil)
      @original_headers = headers

      if errors
        @errors = errors.string if errors.respond_to?(:string)
      else
        @errors = ""
      end

      super(body, status, headers)

      @cookies = parse_cookies_from_header
      buffered_body!
    end

    def =~(other)
      body =~ other
    end

    def match(other)
      body.match other
    end

    def body
      return @buffered_body if defined?(@buffered_body)

      # FIXME: apparently users of MockResponse expect the return value of
      # MockResponse#body to be a string.  However, the real response object
      # returns the body as a list.
      #
      # See spec_showstatus.rb:
      #
      #   should "not replace existing messages" do
      #     ...
      #     res.body.should == "foo!"
      #   end
      buffer = @buffered_body = String.new

      @body.each do |chunk|
        buffer << chunk
      end

      return buffer
    end

    def empty?
      [201, 204, 304].include? status
    end

    def cookie(name)
      cookies.fetch(name, nil)
    end

    private

    def parse_cookies_from_header
      cookies = Hash.new
      if headers.has_key? 'set-cookie'
        set_cookie_header = headers.fetch('set-cookie')
        Array(set_cookie_header).each do |header_value|
          header_value.split("\n").each do |cookie|
            cookie_name, cookie_filling = cookie.split('=', 2)
            cookie_attributes = identify_cookie_attributes cookie_filling
            parsed_cookie = CGI::Cookie.new(
              'name' => cookie_name.strip,
              'value' => cookie_attributes.fetch('value'),
              'path' => cookie_attributes.fetch('path', nil),
              'domain' => cookie_attributes.fetch('domain', nil),
              'expires' => cookie_attributes.fetch('expires', nil),
              'secure' => cookie_attributes.fetch('secure', false)
            )
            cookies.store(cookie_name, parsed_cookie)
          end
        end
      end
      cookies
    end

    def identify_cookie_attributes(cookie_filling)
      cookie_bits = cookie_filling.split(';')
      cookie_attributes = Hash.new
      cookie_attributes.store('value', cookie_bits[0].strip)
      cookie_bits.drop(1).each do |bit|
        if bit.include? '='
          cookie_attribute, attribute_value = bit.split('=', 2)
          cookie_attributes.store(cookie_attribute.strip.downcase, attribute_value.strip)
        end
        if bit.include? 'secure'
          cookie_attributes.store('secure', true)
        end
      end

      if cookie_attributes.key? 'max-age'
        cookie_attributes.store('expires', Time.now + cookie_attributes['max-age'].to_i)
      elsif cookie_attributes.key? 'expires'
        cookie_attributes.store('expires', Time.httpdate(cookie_attributes['expires']))
      end

      cookie_attributes
    end

  end
end
PKCH[�gG��1share/gems/gems/rack-3.0.8/lib/rack/media_type.rbnu�[���# frozen_string_literal: true

module Rack
  # Rack::MediaType parse media type and parameters out of content_type string

  class MediaType
    SPLIT_PATTERN = %r{\s*[;,]\s*}

    class << self
      # The media type (type/subtype) portion of the CONTENT_TYPE header
      # without any media type parameters. e.g., when CONTENT_TYPE is
      # "text/plain;charset=utf-8", the media-type is "text/plain".
      #
      # For more information on the use of media types in HTTP, see:
      # http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7
      def type(content_type)
        return nil unless content_type
        content_type.split(SPLIT_PATTERN, 2).first.tap(&:downcase!)
      end

      # The media type parameters provided in CONTENT_TYPE as a Hash, or
      # an empty Hash if no CONTENT_TYPE or media-type parameters were
      # provided.  e.g., when the CONTENT_TYPE is "text/plain;charset=utf-8",
      # this method responds with the following Hash:
      #   { 'charset' => 'utf-8' }
      def params(content_type)
        return {} if content_type.nil?

        content_type.split(SPLIT_PATTERN)[1..-1].each_with_object({}) do |s, hsh|
          k, v = s.split('=', 2)

          hsh[k.tap(&:downcase!)] = strip_doublequotes(v)
        end
      end

      private

        def strip_doublequotes(str)
          (str.start_with?('"') && str.end_with?('"')) ? str[1..-2] : str
        end
    end
  end
end
PKCH[��Y		.share/gems/gems/rack-3.0.8/lib/rack/cascade.rbnu�[���# frozen_string_literal: true

require_relative 'constants'

module Rack
  # Rack::Cascade tries a request on several apps, and returns the
  # first response that is not 404 or 405 (or in a list of configured
  # status codes).  If all applications tried return one of the configured
  # status codes, return the last response.

  class Cascade
    # deprecated, no longer used
    NotFound = [404, { CONTENT_TYPE => "text/plain" }, []]

    # An array of applications to try in order.
    attr_reader :apps

    # Set the apps to send requests to, and what statuses result in
    # cascading.  Arguments:
    #
    # apps: An enumerable of rack applications.
    # cascade_for: The statuses to use cascading for.  If a response is received
    #              from an app, the next app is tried.
    def initialize(apps, cascade_for = [404, 405])
      @apps = []
      apps.each { |app| add app }

      @cascade_for = {}
      [*cascade_for].each { |status| @cascade_for[status] = true }
    end

    # Call each app in order.  If the responses uses a status that requires
    # cascading, try the next app.  If all responses require cascading,
    # return the response from the last app.
    def call(env)
      return [404, { CONTENT_TYPE => "text/plain" }, []] if @apps.empty?
      result = nil
      last_body = nil

      @apps.each do |app|
        # The SPEC says that the body must be closed after it has been iterated
        # by the server, or if it is replaced by a middleware action. Cascade
        # replaces the body each time a cascade happens. It is assumed that nil
        # does not respond to close, otherwise the previous application body
        # will be closed. The final application body will not be closed, as it
        # will be passed to the server as a result.
        last_body.close if last_body.respond_to? :close

        result = app.call(env)
        return result unless @cascade_for.include?(result[0].to_i)
        last_body = result[2]
      end

      result
    end

    # Append an app to the list of apps to cascade.  This app will
    # be tried last.
    def add(app)
      @apps << app
    end

    # Whether the given app is one of the apps to cascade to.
    def include?(app)
      @apps.include?(app)
    end

    alias_method :<<, :add
  end
end
PKDH[Y4��88/share/gems/gems/rack-3.0.8/lib/rack/sendfile.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'
require_relative 'body_proxy'

module Rack

  # = Sendfile
  #
  # The Sendfile middleware intercepts responses whose body is being
  # served from a file and replaces it with a server specific x-sendfile
  # header. The web server is then responsible for writing the file contents
  # to the client. This can dramatically reduce the amount of work required
  # by the Ruby backend and takes advantage of the web server's optimized file
  # delivery code.
  #
  # In order to take advantage of this middleware, the response body must
  # respond to +to_path+ and the request must include an x-sendfile-type
  # header. Rack::Files and other components implement +to_path+ so there's
  # rarely anything you need to do in your application. The x-sendfile-type
  # header is typically set in your web servers configuration. The following
  # sections attempt to document
  #
  # === Nginx
  #
  # Nginx supports the x-accel-redirect header. This is similar to x-sendfile
  # but requires parts of the filesystem to be mapped into a private URL
  # hierarchy.
  #
  # The following example shows the Nginx configuration required to create
  # a private "/files/" area, enable x-accel-redirect, and pass the special
  # x-sendfile-type and x-accel-mapping headers to the backend:
  #
  #   location ~ /files/(.*) {
  #     internal;
  #     alias /var/www/$1;
  #   }
  #
  #   location / {
  #     proxy_redirect     off;
  #
  #     proxy_set_header   Host                $host;
  #     proxy_set_header   X-Real-IP           $remote_addr;
  #     proxy_set_header   X-Forwarded-For     $proxy_add_x_forwarded_for;
  #
  #     proxy_set_header   x-sendfile-type     x-accel-redirect;
  #     proxy_set_header   x-accel-mapping     /var/www/=/files/;
  #
  #     proxy_pass         http://127.0.0.1:8080/;
  #   }
  #
  # Note that the x-sendfile-type header must be set exactly as shown above.
  # The x-accel-mapping header should specify the location on the file system,
  # followed by an equals sign (=), followed name of the private URL pattern
  # that it maps to. The middleware performs a simple substitution on the
  # resulting path.
  #
  # See Also: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile
  #
  # === lighttpd
  #
  # Lighttpd has supported some variation of the x-sendfile header for some
  # time, although only recent version support x-sendfile in a reverse proxy
  # configuration.
  #
  #   $HTTP["host"] == "example.com" {
  #      proxy-core.protocol = "http"
  #      proxy-core.balancer = "round-robin"
  #      proxy-core.backends = (
  #        "127.0.0.1:8000",
  #        "127.0.0.1:8001",
  #        ...
  #      )
  #
  #      proxy-core.allow-x-sendfile = "enable"
  #      proxy-core.rewrite-request = (
  #        "x-sendfile-type" => (".*" => "x-sendfile")
  #      )
  #    }
  #
  # See Also: http://redmine.lighttpd.net/wiki/lighttpd/Docs:ModProxyCore
  #
  # === Apache
  #
  # x-sendfile is supported under Apache 2.x using a separate module:
  #
  # https://tn123.org/mod_xsendfile/
  #
  # Once the module is compiled and installed, you can enable it using
  # XSendFile config directive:
  #
  #   RequestHeader Set x-sendfile-type x-sendfile
  #   ProxyPassReverse / http://localhost:8001/
  #   XSendFile on
  #
  # === Mapping parameter
  #
  # The third parameter allows for an overriding extension of the
  # x-accel-mapping header. Mappings should be provided in tuples of internal to
  # external. The internal values may contain regular expression syntax, they
  # will be matched with case indifference.

  class Sendfile
    def initialize(app, variation = nil, mappings = [])
      @app = app
      @variation = variation
      @mappings = mappings.map do |internal, external|
        [/^#{internal}/i, external]
      end
    end

    def call(env)
      _, headers, body = response = @app.call(env)

      if body.respond_to?(:to_path)
        case type = variation(env)
        when /x-accel-redirect/i
          path = ::File.expand_path(body.to_path)
          if url = map_accel_path(env, path)
            headers[CONTENT_LENGTH] = '0'
            # '?' must be percent-encoded because it is not query string but a part of path
            headers[type.downcase] = ::Rack::Utils.escape_path(url).gsub('?', '%3F')
            obody = body
            response[2] = Rack::BodyProxy.new([]) do
              obody.close if obody.respond_to?(:close)
            end
          else
            env[RACK_ERRORS].puts "x-accel-mapping header missing"
          end
        when /x-sendfile|x-lighttpd-send-file/i
          path = ::File.expand_path(body.to_path)
          headers[CONTENT_LENGTH] = '0'
          headers[type.downcase] = path
          obody = body
          response[2] = Rack::BodyProxy.new([]) do
            obody.close if obody.respond_to?(:close)
          end
        when '', nil
        else
          env[RACK_ERRORS].puts "Unknown x-sendfile variation: '#{type}'.\n"
        end
      end
      response
    end

    private
    def variation(env)
      @variation ||
        env['sendfile.type'] ||
        env['HTTP_X_SENDFILE_TYPE']
    end

    def map_accel_path(env, path)
      if mapping = @mappings.find { |internal, _| internal =~ path }
        path.sub(*mapping)
      elsif mapping = env['HTTP_X_ACCEL_MAPPING']
        mapping.split(',').map(&:strip).each do |m|
          internal, external = m.split('=', 2).map(&:strip)
          new_path = path.sub(/^#{internal}/i, external)
          return new_path unless path == new_path
        end
        path
      end
    end
  end
end
PKDH[M�}Y??+share/gems/gems/rack-3.0.8/lib/rack/mock.rbnu�[���# frozen_string_literal: true

require_relative 'mock_request'
PKDH[YY�d

6share/gems/gems/rack-3.0.8/lib/rack/tempfile_reaper.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'body_proxy'

module Rack

  # Middleware tracks and cleans Tempfiles created throughout a request (i.e. Rack::Multipart)
  # Ideas/strategy based on posts by Eric Wong and Charles Oliver Nutter
  # https://groups.google.com/forum/#!searchin/rack-devel/temp/rack-devel/brK8eh-MByw/sw61oJJCGRMJ
  class TempfileReaper
    def initialize(app)
      @app = app
    end

    def call(env)
      env[RACK_TEMPFILES] ||= []

      begin
        _, _, body = response = @app.call(env)
      rescue Exception
        env[RACK_TEMPFILES]&.each(&:close!)
        raise
      end

      response[2] = BodyProxy.new(body) do
        env[RACK_TEMPFILES]&.each(&:close!)
      end

      response
    end
  end
end
PKDH[@�j�	�	0share/gems/gems/rack-3.0.8/lib/rack/constants.rbnu�[���# frozen_string_literal: true

module Rack
  # Request env keys
  HTTP_HOST         = 'HTTP_HOST'
  HTTP_PORT         = 'HTTP_PORT'
  HTTPS             = 'HTTPS'
  PATH_INFO         = 'PATH_INFO'
  REQUEST_METHOD    = 'REQUEST_METHOD'
  REQUEST_PATH      = 'REQUEST_PATH'
  SCRIPT_NAME       = 'SCRIPT_NAME'
  QUERY_STRING      = 'QUERY_STRING'
  SERVER_PROTOCOL   = 'SERVER_PROTOCOL'
  SERVER_NAME       = 'SERVER_NAME'
  SERVER_PORT       = 'SERVER_PORT'
  HTTP_COOKIE       = 'HTTP_COOKIE'

  # Response Header Keys
  CACHE_CONTROL     = 'cache-control'
  CONTENT_LENGTH    = 'content-length'
  CONTENT_TYPE      = 'content-type'
  ETAG              = 'etag'
  EXPIRES           = 'expires'
  SET_COOKIE        = 'set-cookie'
  TRANSFER_ENCODING = 'transfer-encoding'

  # HTTP method verbs
  GET     = 'GET'
  POST    = 'POST'
  PUT     = 'PUT'
  PATCH   = 'PATCH'
  DELETE  = 'DELETE'
  HEAD    = 'HEAD'
  OPTIONS = 'OPTIONS'
  LINK    = 'LINK'
  UNLINK  = 'UNLINK'
  TRACE   = 'TRACE'

  # Rack environment variables
  RACK_VERSION                        = 'rack.version'
  RACK_TEMPFILES                      = 'rack.tempfiles'
  RACK_ERRORS                         = 'rack.errors'
  RACK_LOGGER                         = 'rack.logger'
  RACK_INPUT                          = 'rack.input'
  RACK_SESSION                        = 'rack.session'
  RACK_SESSION_OPTIONS                = 'rack.session.options'
  RACK_SHOWSTATUS_DETAIL              = 'rack.showstatus.detail'
  RACK_URL_SCHEME                     = 'rack.url_scheme'
  RACK_HIJACK                         = 'rack.hijack'
  RACK_IS_HIJACK                      = 'rack.hijack?'
  RACK_RECURSIVE_INCLUDE              = 'rack.recursive.include'
  RACK_MULTIPART_BUFFER_SIZE          = 'rack.multipart.buffer_size'
  RACK_MULTIPART_TEMPFILE_FACTORY     = 'rack.multipart.tempfile_factory'
  RACK_RESPONSE_FINISHED              = 'rack.response_finished'
  RACK_REQUEST_FORM_INPUT             = 'rack.request.form_input'
  RACK_REQUEST_FORM_HASH              = 'rack.request.form_hash'
  RACK_REQUEST_FORM_VARS              = 'rack.request.form_vars'
  RACK_REQUEST_FORM_ERROR             = 'rack.request.form_error'
  RACK_REQUEST_COOKIE_HASH            = 'rack.request.cookie_hash'
  RACK_REQUEST_COOKIE_STRING          = 'rack.request.cookie_string'
  RACK_REQUEST_QUERY_HASH             = 'rack.request.query_hash'
  RACK_REQUEST_QUERY_STRING           = 'rack.request.query_string'
  RACK_METHODOVERRIDE_ORIGINAL_METHOD = 'rack.methodoverride.original_method'
end
PKDH[U``"��0share/gems/gems/rack-3.0.8/lib/rack/multipart.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'

require_relative 'multipart/parser'
require_relative 'multipart/generator'

module Rack
  # A multipart form data parser, adapted from IOWA.
  #
  # Usually, Rack::Request#POST takes care of calling this.
  module Multipart
    MULTIPART_BOUNDARY = "AaB03x"

    class << self
      def parse_multipart(env, params = Rack::Utils.default_query_parser)
        io = env[RACK_INPUT]

        if content_length = env['CONTENT_LENGTH']
          content_length = content_length.to_i
        end

        content_type = env['CONTENT_TYPE']

        tempfile = env[RACK_MULTIPART_TEMPFILE_FACTORY] || Parser::TEMPFILE_FACTORY
        bufsize = env[RACK_MULTIPART_BUFFER_SIZE] || Parser::BUFSIZE

        info = Parser.parse(io, content_length, content_type, tempfile, bufsize, params)
        env[RACK_TEMPFILES] = info.tmp_files

        return info.params
      end

      def extract_multipart(request, params = Rack::Utils.default_query_parser)
        parse_multipart(request.env)
      end

      def build_multipart(params, first = true)
        Generator.new(params, first).dump
      end
    end
  end
end
PKDH[��3���6share/gems/gems/rack-3.0.8/lib/rack/method_override.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'request'
require_relative 'utils'

module Rack
  class MethodOverride
    HTTP_METHODS = %w[GET HEAD PUT POST DELETE OPTIONS PATCH LINK UNLINK]

    METHOD_OVERRIDE_PARAM_KEY = "_method"
    HTTP_METHOD_OVERRIDE_HEADER = "HTTP_X_HTTP_METHOD_OVERRIDE"
    ALLOWED_METHODS = %w[POST]

    def initialize(app)
      @app = app
    end

    def call(env)
      if allowed_methods.include?(env[REQUEST_METHOD])
        method = method_override(env)
        if HTTP_METHODS.include?(method)
          env[RACK_METHODOVERRIDE_ORIGINAL_METHOD] = env[REQUEST_METHOD]
          env[REQUEST_METHOD] = method
        end
      end

      @app.call(env)
    end

    def method_override(env)
      req = Request.new(env)
      method = method_override_param(req) ||
        env[HTTP_METHOD_OVERRIDE_HEADER]
      begin
        method.to_s.upcase
      rescue ArgumentError
        env[RACK_ERRORS].puts "Invalid string for method"
      end
    end

    private

    def allowed_methods
      ALLOWED_METHODS
    end

    def method_override_param(req)
      req.POST[METHOD_OVERRIDE_PARAM_KEY] if req.form_data? || req.parseable_data?
    rescue Utils::InvalidParameterError, Utils::ParameterTypeError, QueryParser::ParamsTooDeepError
      req.get_header(RACK_ERRORS).puts "Invalid or incomplete POST params"
    rescue EOFError
      req.get_header(RACK_ERRORS).puts "Bad request content body"
    end
  end
end
PKDH[М}���+share/gems/gems/rack-3.0.8/lib/rack/file.rbnu�[���# frozen_string_literal: true

require_relative 'files'

module Rack
  warn "Rack::File is deprecated and will be removed in Rack 3.1", uplevel: 1

  File = Files
end
PKDH[O�~�0share/gems/gems/rack-3.0.8/lib/rack/recursive.rbnu�[���# frozen_string_literal: true

require 'uri'

require_relative 'constants'

module Rack
  # Rack::ForwardRequest gets caught by Rack::Recursive and redirects
  # the current request to the app at +url+.
  #
  #   raise ForwardRequest.new("/not-found")
  #

  class ForwardRequest < Exception
    attr_reader :url, :env

    def initialize(url, env = {})
      @url = URI(url)
      @env = env

      @env[PATH_INFO]       = @url.path
      @env[QUERY_STRING]    = @url.query  if @url.query
      @env[HTTP_HOST]       = @url.host   if @url.host
      @env[HTTP_PORT]       = @url.port   if @url.port
      @env[RACK_URL_SCHEME] = @url.scheme if @url.scheme

      super "forwarding to #{url}"
    end
  end

  # Rack::Recursive allows applications called down the chain to
  # include data from other applications (by using
  # <tt>rack['rack.recursive.include'][...]</tt> or raise a
  # ForwardRequest to redirect internally.

  class Recursive
    def initialize(app)
      @app = app
    end

    def call(env)
      dup._call(env)
    end

    def _call(env)
      @script_name = env[SCRIPT_NAME]
      @app.call(env.merge(RACK_RECURSIVE_INCLUDE => method(:include)))
    rescue ForwardRequest => req
      call(env.merge(req.env))
    end

    def include(env, path)
      unless path.index(@script_name) == 0 && (path[@script_name.size] == ?/ ||
                                               path[@script_name.size].nil?)
        raise ArgumentError, "can only include below #{@script_name}, not #{path}"
      end

      env = env.merge(PATH_INFO => path,
                      SCRIPT_NAME => @script_name,
                      REQUEST_METHOD => GET,
                      "CONTENT_LENGTH" => "0", "CONTENT_TYPE" => "",
                      RACK_INPUT => StringIO.new(""))
      @app.call(env)
    end
  end
end
PKDH[���4
4
.share/gems/gems/rack-3.0.8/lib/rack/chunked.rbnu�[���# frozen_string_literal: true

require_relative 'constants'
require_relative 'utils'

module Rack
  warn "Rack::Chunked is deprecated and will be removed in Rack 3.1", uplevel: 1

  # Middleware that applies chunked transfer encoding to response bodies
  # when the response does not include a content-length header.
  #
  # This supports the trailer response header to allow the use of trailing
  # headers in the chunked encoding.  However, using this requires you manually
  # specify a response body that supports a +trailers+ method.  Example:
  #
  #   [200, { 'trailer' => 'expires'}, ["Hello", "World"]]
  #   # error raised
  #
  #   body = ["Hello", "World"]
  #   def body.trailers
  #     { 'expires' => Time.now.to_s }
  #   end
  #   [200, { 'trailer' => 'expires'}, body]
  #   # No exception raised
  class Chunked
    include Rack::Utils

    # A body wrapper that emits chunked responses.
    class Body
      TERM = "\r\n"
      TAIL = "0#{TERM}"

      # Store the response body to be chunked.
      def initialize(body)
        @body = body
      end

      # For each element yielded by the response body, yield
      # the element in chunked encoding.
      def each(&block)
        term = TERM
        @body.each do |chunk|
          size = chunk.bytesize
          next if size == 0

          yield [size.to_s(16), term, chunk.b, term].join
        end
        yield TAIL
        yield_trailers(&block)
        yield term
      end

      # Close the response body if the response body supports it.
      def close
        @body.close if @body.respond_to?(:close)
      end

      private

      # Do nothing as this class does not support trailer headers.
      def yield_trailers
      end
    end

    # A body wrapper that emits chunked responses and also supports
    # sending Trailer headers.  Note that the response body provided to
    # initialize must have a +trailers+ method that returns a hash
    # of trailer headers, and the rack response itself should have a
    # Trailer header listing the headers that the +trailers+ method
    # will return.
    class TrailerBody < Body
      private

      # Yield strings for each trailer header.
      def yield_trailers
        @body.trailers.each_pair do |k, v|
          yield "#{k}: #{v}\r\n"
        end
      end
    end

    def initialize(app)
      @app = app
    end

    # Whether the HTTP version supports chunked encoding (HTTP 1.1 does).
    def chunkable_version?(ver)
      case ver
      # pre-HTTP/1.0 (informally "HTTP/0.9") HTTP requests did not have
      # a version (nor response headers)
      when 'HTTP/1.0', nil, 'HTTP/0.9'
        false
      else
        true
      end
    end

    # If the rack app returns a response that should have a body,
    # but does not have content-length or transfer-encoding headers,
    # modify the response to use chunked transfer-encoding.
    def call(env)
      status, headers, body = response = @app.call(env)

      if chunkable_version?(env[SERVER_PROTOCOL]) &&
         !STATUS_WITH_NO_ENTITY_BODY.key?(status.to_i) &&
         !headers[CONTENT_LENGTH] &&
         !headers[TRANSFER_ENCODING]

        headers[TRANSFER_ENCODING] = 'chunked'
        if headers['trailer']
          response[2] = TrailerBody.new(body)
        else
          response[2] = Body.new(body)
        end
      end

      response
    end
  end
end
PKDH[d�NN2share/gems/gems/rack-3.0.8/lib/rack/show_status.rbnu�[���# frozen_string_literal: true

require 'erb'

require_relative 'constants'
require_relative 'utils'
require_relative 'request'
require_relative 'body_proxy'

module Rack
  # Rack::ShowStatus catches all empty responses and replaces them
  # with a site explaining the error.
  #
  # Additional details can be put into <tt>rack.showstatus.detail</tt>
  # and will be shown as HTML.  If such details exist, the error page
  # is always rendered, even if the reply was not empty.

  class ShowStatus
    def initialize(app)
      @app = app
      @template = ERB.new(TEMPLATE)
    end

    def call(env)
      status, headers, body = response = @app.call(env)
      empty = headers[CONTENT_LENGTH].to_i <= 0

      # client or server error, or explicit message
      if (status.to_i >= 400 && empty) || env[RACK_SHOWSTATUS_DETAIL]
        # This double assignment is to prevent an "unused variable" warning.
        # Yes, it is dumb, but I don't like Ruby yelling at me.
        req = req = Rack::Request.new(env)

        message = Rack::Utils::HTTP_STATUS_CODES[status.to_i] || status.to_s

        # This double assignment is to prevent an "unused variable" warning.
        # Yes, it is dumb, but I don't like Ruby yelling at me.
        detail = detail = env[RACK_SHOWSTATUS_DETAIL] || message

        html = @template.result(binding)
        size = html.bytesize

        response[2] = Rack::BodyProxy.new([html]) do
          body.close if body.respond_to?(:close)
        end

        headers[CONTENT_TYPE] = "text/html"
        headers[CONTENT_LENGTH] = size.to_s
      end

      response
    end

    def h(obj)                  # :nodoc:
      case obj
      when String
        Utils.escape_html(obj)
      else
        Utils.escape_html(obj.inspect)
      end
    end

    # :stopdoc:

# adapted from Django <www.djangoproject.com>
# Copyright (c) Django Software Foundation and individual contributors.
# Used under the modified BSD license:
# http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5
TEMPLATE = <<'HTML'
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title><%=h message %> at <%=h req.script_name + req.path_info %></title>
  <meta name="robots" content="NONE,NOARCHIVE" />
  <style type="text/css">
    html * { padding:0; margin:0; }
    body * { padding:10px 20px; }
    body * * { padding:0; }
    body { font:small sans-serif; background:#eee; }
    body>div { border-bottom:1px solid #ddd; }
    h1 { font-weight:normal; margin-bottom:.4em; }
    h1 span { font-size:60%; color:#666; font-weight:normal; }
    table { border:none; border-collapse: collapse; width:100%; }
    td, th { vertical-align:top; padding:2px 3px; }
    th { width:12em; text-align:right; color:#666; padding-right:.5em; }
    #info { background:#f6f6f6; }
    #info ol { margin: 0.5em 4em; }
    #info ol li { font-family: monospace; }
    #summary { background: #ffc; }
    #explanation { background:#eee; border-bottom: 0px none; }
  </style>
</head>
<body>
  <div id="summary">
    <h1><%=h message %> <span>(<%= status.to_i %>)</span></h1>
    <table class="meta">
      <tr>
        <th>Request Method:</th>
        <td><%=h req.request_method %></td>
      </tr>
      <tr>
        <th>Request URL:</th>
      <td><%=h req.url %></td>
      </tr>
    </table>
  </div>
  <div id="info">
    <p><%=h detail %></p>
  </div>

  <div id="explanation">
    <p>
    You're seeing this error because you use <code>Rack::ShowStatus</code>.
    </p>
  </div>
</body>
</html>
HTML

    # :startdoc:
  end
end
PKDH[G�	TT&share/gems/gems/rack-3.0.8/MIT-LICENSEnu�[���The MIT License (MIT)

Copyright (C) 2007-2021 Leah Neukirchen <http://leahneukirchen.org/infopage.html>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
PKDH[t2�����'share/gems/gems/rack-3.0.8/CHANGELOG.mdnu�[���# Changelog

All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference [Keep A Changelog](https://keepachangelog.com/en/1.0.0/).

## [3.0.7] - 2023-03-16

- Make query parameters without `=` have `nil` values. ([#2059](https://github.com/rack/rack/pull/2059), [@jeremyevans])

## [3.0.6.1] - 2023-03-13

- [CVE-2023-27539] Avoid ReDoS in header parsing

## [3.0.6] - 2023-03-13

- Add `QueryParser#missing_value` for handling missing values + tests. ([#2052](https://github.com/rack/rack/pull/2052), [@ioquatix])

## [3.0.5] - 2023-03-13

- Split form/query parsing into two steps. ([#2038](https://github.com/rack/rack/pull/2038), [@matthewd](https://github.com/matthewd))

## [3.0.4.1] - 2023-03-02

- [CVE-2023-27530] Introduce multipart_total_part_limit to limit total parts

## [3.0.4.1] - 2023-01-17

- [CVE-2022-44571] Fix ReDoS vulnerability in multipart parser
- [CVE-2022-44570] Fix ReDoS in Rack::Utils.get_byte_ranges
- [CVE-2022-44572] Forbid control characters in attributes (also ReDoS)

## [3.0.4] - 2023-01-17

- `Rack::Request#POST` should consistently raise errors. Cache errors that occur when invoking `Rack::Request#POST` so they can be raised again later. ([#2010](https://github.com/rack/rack/pull/2010), [@ioquatix])
- Fix `Rack::Lint` error message for `HTTP_CONTENT_TYPE` and `HTTP_CONTENT_LENGTH`. ([#2007](https://github.com/rack/rack/pull/2007), [@byroot](https://github.com/byroot))
- Extend `Rack::MethodOverride` to handle `QueryParser::ParamsTooDeepError` error. ([#2006](https://github.com/rack/rack/pull/2006), [@byroot](https://github.com/byroot))

## [3.0.3] - 2022-12-27

### Fixed

- `Rack::URLMap` uses non-deprecated form of `Regexp.new`. ([#1998](https://github.com/rack/rack/pull/1998), [@weizheheng](https://github.com/weizheheng))

## [3.0.2] - 2022-12-05

### Fixed

- `Utils.build_nested_query` URL-encodes nested field names including the square brackets.
- Allow `Rack::Response` to pass through streaming bodies. ([#1993](https://github.com/rack/rack/pull/1993), [@ioquatix])

## [3.0.1] - 2022-11-18

### Fixed

- `MethodOverride` does not look for an override if a request does not include form/parseable data.
- `Rack::Lint::Wrapper` correctly handles `respond_to?` with `to_ary`, `each`, `call` and `to_path`, forwarding to the body. ([#1981](https://github.com/rack/rack/pull/1981), [@ioquatix])

## [3.0.0] - 2022-09-06

- No changes

## [3.0.0.rc1] - 2022-09-04

### SPEC Changes

- Stream argument must implement `<<` https://github.com/rack/rack/pull/1959
- `close` may be called on `rack.input` https://github.com/rack/rack/pull/1956
- `rack.response_finished` may be used for executing code after the response has been finished https://github.com/rack/rack/pull/1952

## [3.0.0.beta1] - 2022-08-08

### Security

- Do not use semicolon as GET parameter separator. ([#1733](https://github.com/rack/rack/pull/1733), [@jeremyevans])

### SPEC Changes

- Response array must now be non-frozen.
- Response `status` must now be an integer greater than or equal to 100.
- Response `headers` must now be an unfrozen hash.
- Response header keys can no longer include uppercase characters.
- Response header values can be an `Array` to handle multiple values (and no longer supports `\n` encoded headers).
- Response body can now respond to `#call` (streaming body) instead of `#each` (enumerable body), for the equivalent of response hijacking in previous versions.
- Middleware must no longer call `#each` on the body, but they can call `#to_ary` on the body if it responds to `#to_ary`.
- `rack.input` is no longer required to be rewindable.
- `rack.multithread`/`rack.multiprocess`/`rack.run_once`/`rack.version` are no longer required environment keys.
- `SERVER_PROTOCOL` is now a required environment key, matching the HTTP protocol used in the request.
- `rack.hijack?` (partial hijack) and `rack.hijack` (full hijack) are now independently optional.
- `rack.hijack_io` has been removed completely.
- `rack.response_finished` is an optional environment key which contains an array of callable objects that must accept `#call(env, status, headers, error)` and are invoked after the response is finished (either successfully or unsuccessfully).
- It is okay to call `#close` on `rack.input` to indicate that you no longer need or care about the input.
- The stream argument supplied to the streaming body and hijack must support `#<<` for writing output.

### Removed

- Remove `rack.multithread`/`rack.multiprocess`/`rack.run_once`. These variables generally come too late to be useful. ([#1720](https://github.com/rack/rack/pull/1720), [@ioquatix], [@jeremyevans]))
- Remove deprecated Rack::Request::SCHEME_WHITELIST. ([@jeremyevans])
- Remove internal cookie deletion using pattern matching, there are very few practical cases where it would be useful and browsers handle it correctly without us doing anything special. ([#1844](https://github.com/rack/rack/pull/1844), [@ioquatix])
- Remove `rack.version` as it comes too late to be useful. ([#1938](https://github.com/rack/rack/pull/1938), [@ioquatix])
- Extract `rackup` command, `Rack::Server`, `Rack::Handler` and related code into a separate gem. ([#1937](https://github.com/rack/rack/pull/1937), [@ioquatix])

### Added

- `Rack::Headers` added to support lower-case header keys. ([@jeremyevans])
- `Rack::Utils#set_cookie_header` now supports `escape_key: false` to avoid key escaping.  ([@jeremyevans])
- `Rack::RewindableInput` supports size. ([@ahorek](https://github.com/ahorek))
- `Rack::RewindableInput::Middleware` added for making `rack.input` rewindable. ([@jeremyevans])
- The RFC 7239 Forwarded header is now supported and considered by default when looking for information on forwarding, falling back to the X-Forwarded-* headers. `Rack::Request.forwarded_priority` accessor has been added for configuring the priority of which header to check.  ([#1423](https://github.com/rack/rack/issues/1423), [@jeremyevans])
- Allow response headers to contain array of values. ([#1598](https://github.com/rack/rack/issues/1598), [@ioquatix])
- Support callable body for explicit streaming support and clarify streaming response body behaviour. ([#1745](https://github.com/rack/rack/pull/1745), [@ioquatix], [#1748](https://github.com/rack/rack/pull/1748), [@wjordan])
- Allow `Rack::Builder#run` to take a block instead of an argument. ([#1942](https://github.com/rack/rack/pull/1942), [@ioquatix])
- Add `rack.response_finished` to `Rack::Lint`. ([#1802](https://github.com/rack/rack/pull/1802), [@BlakeWilliams], [#1952](https://github.com/rack/rack/pull/1952), [@ioquatix])
- The stream argument must implement `#<<`. ([#1959](https://github.com/rack/rack/pull/1959), [@ioquatix])

### Changed

- BREAKING CHANGE: Require `status` to be an Integer. ([#1662](https://github.com/rack/rack/pull/1662), [@olleolleolle](https://github.com/olleolleolle))
- BREAKING CHANGE: Query parsing now treats parameters without `=` as having the empty string value instead of nil value, to conform to the URL spec. ([#1696](https://github.com/rack/rack/issues/1696), [@jeremyevans])
- Relax validations around `Rack::Request#host` and `Rack::Request#hostname`. ([#1606](https://github.com/rack/rack/issues/1606), [@pvande](https://github.com/pvande))
- Removed antiquated handlers: FCGI, LSWS, SCGI, Thin. ([#1658](https://github.com/rack/rack/pull/1658), [@ioquatix])
- Removed options from `Rack::Builder.parse_file` and `Rack::Builder.load_file`. ([#1663](https://github.com/rack/rack/pull/1663), [@ioquatix])
- `Rack::HTTP_VERSION` has been removed and the `HTTP_VERSION` env setting is no longer set in the CGI and Webrick handlers. ([#970](https://github.com/rack/rack/issues/970), [@jeremyevans])
- `Rack::Request#[]` and `#[]=` now warn even in non-verbose mode. ([#1277](https://github.com/rack/rack/issues/1277), [@jeremyevans])
- Decrease default allowed parameter recursion level from 100 to 32. ([#1640](https://github.com/rack/rack/issues/1640), [@jeremyevans])
- Attempting to parse a multipart response with an empty body now raises Rack::Multipart::EmptyContentError. ([#1603](https://github.com/rack/rack/issues/1603), [@jeremyevans])
- `Rack::Utils.secure_compare` uses OpenSSL's faster implementation if available. ([#1711](https://github.com/rack/rack/pull/1711), [@bdewater](https://github.com/bdewater))
- `Rack::Request#POST` now caches an empty hash if input content type is not parseable. ([#749](https://github.com/rack/rack/pull/749), [@jeremyevans])
- BREAKING CHANGE: Updated `trusted_proxy?` to match full 127.0.0.0/8 network. ([#1781](https://github.com/rack/rack/pull/1781), [@snbloch](https://github.com/snbloch))
- Explicitly deprecate `Rack::File` which was an alias for `Rack::Files`. ([#1811](https://github.com/rack/rack/pull/1720), [@ioquatix]).
- Moved `Rack::Session` into [separate gem](https://github.com/rack/rack-session). ([#1805](https://github.com/rack/rack/pull/1805), [@ioquatix])
- `rackup -D` option to daemonizes no longer changes the working directory to the root. ([#1813](https://github.com/rack/rack/pull/1813), [@jeremyevans])
- The `x-forwarded-proto` header is now considered before the `x-forwarded-scheme` header for determining the forwarded protocol. `Rack::Request.x_forwarded_proto_priority` accessor has been added for configuring the priority of which header to check.  ([#1809](https://github.com/rack/rack/issues/1809), [@jeremyevans])
- `Rack::Request.forwarded_authority` (and methods that call it, such as `host`) now returns the last authority in the forwarded header, instead of the first, as earlier forwarded authorities can be forged by clients. This restores the Rack 2.1 behavior. ([#1829](https://github.com/rack/rack/issues/1809), [@jeremyevans])
- Use lower case cookie attributes when creating cookies, and fold cookie attributes to lower case when reading cookies (specifically impacting `secure` and `httponly` attributes). ([#1849](https://github.com/rack/rack/pull/1849), [@ioquatix])
- The response array must now be mutable (non-frozen) so middleware can modify it without allocating a new Array,therefore reducing object allocations. ([#1887](https://github.com/rack/rack/pull/1887), [#1927](https://github.com/rack/rack/pull/1927), [@amatsuda], [@ioquatix])
- `rack.hijack?` (partial hijack) and `rack.hijack` (full hijack) are now independently optional. `rack.hijack_io` is no longer required/specified. ([#1939](https://github.com/rack/rack/pull/1939), [@ioquatix])
- Allow calling close on `rack.input`. ([#1956](https://github.com/rack/rack/pull/1956), [@ioquatix])

### Fixed

- Make Rack::MockResponse handle non-hash headers. ([#1629](https://github.com/rack/rack/issues/1629), [@jeremyevans])
- TempfileReaper now deletes temp files if application raises an exception. ([#1679](https://github.com/rack/rack/issues/1679), [@jeremyevans])
- Handle cookies with values that end in '=' ([#1645](https://github.com/rack/rack/pull/1645), [@lukaso](https://github.com/lukaso))
- Make `Rack::NullLogger` respond to `#fatal!` [@jeremyevans])
- Fix multipart filename generation for filenames that contain spaces. Encode spaces as "%20" instead of "+" which will be decoded properly by the multipart parser. ([#1736](https://github.com/rack/rack/pull/1645), [@muirdm](https://github.com/muirdm))
- `Rack::Request#scheme` returns `ws` or `wss` when one of the `X-Forwarded-Scheme` / `X-Forwarded-Proto` headers is set to `ws` or `wss`, respectively. ([#1730](https://github.com/rack/rack/issues/1730), [@erwanst](https://github.com/erwanst))

## [2.2.4] - 2022-06-30

- Better support for lower case headers in `Rack::ETag` middleware. ([#1919](https://github.com/rack/rack/pull/1919), [@ioquatix](https://github.com/ioquatix))
- Use custom exception on params too deep error. ([#1838](https://github.com/rack/rack/pull/1838), [@simi](https://github.com/simi))

## [2.2.3.1] - 2022-05-27

- [CVE-2022-30123] Fix shell escaping issue in Common Logger
- [CVE-2022-30122] Restrict parsing of broken MIME attachments

## [2.2.3] - 2020-06-15

### Security

- [[CVE-2020-8184](https://nvd.nist.gov/vuln/detail/CVE-2020-8184)] Do not allow percent-encoded cookie name to override existing cookie names. BREAKING CHANGE: Accessing cookie names that require URL encoding with decoded name no longer works. ([@fletchto99](https://github.com/fletchto99))

## [2.2.2] - 2020-02-11

### Fixed

- Fix incorrect `Rack::Request#host` value. ([#1591](https://github.com/rack/rack/pull/1591), [@ioquatix])
- Revert `Rack::Handler::Thin` implementation. ([#1583](https://github.com/rack/rack/pull/1583), [@jeremyevans])
- Double assignment is still needed to prevent an "unused variable" warning. ([#1589](https://github.com/rack/rack/pull/1589), [@kamipo](https://github.com/kamipo))
- Fix to handle same_site option for session pool. ([#1587](https://github.com/rack/rack/pull/1587), [@kamipo](https://github.com/kamipo))

## [2.2.1] - 2020-02-09

### Fixed

- Rework `Rack::Request#ip` to handle empty `forwarded_for`. ([#1577](https://github.com/rack/rack/pull/1577), [@ioquatix])

## [2.2.0] - 2020-02-08

### SPEC Changes

- `rack.session` request environment entry must respond to `to_hash` and return unfrozen Hash. ([@jeremyevans])
- Request environment cannot be frozen. ([@jeremyevans])
- CGI values in the request environment with non-ASCII characters must use ASCII-8BIT encoding. ([@jeremyevans])
- Improve SPEC/lint relating to SERVER_NAME, SERVER_PORT and HTTP_HOST. ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix])

### Added

- `rackup` supports multiple `-r` options and will require all arguments. ([@jeremyevans])
- `Server` supports an array of paths to require for the `:require` option. ([@khotta](https://github.com/khotta))
- `Files` supports multipart range requests. ([@fatkodima](https://github.com/fatkodima))
- `Multipart::UploadedFile` supports an IO-like object instead of using the filesystem, using `:filename` and `:io` options. ([@jeremyevans])
- `Multipart::UploadedFile` supports keyword arguments `:path`, `:content_type`, and `:binary` in addition to positional arguments. ([@jeremyevans])
- `Static` supports a `:cascade` option for calling the app if there is no matching file. ([@jeremyevans])
- `Session::Abstract::SessionHash#dig`. ([@jeremyevans])
- `Response.[]` and `MockResponse.[]` for creating instances using status, headers, and body. ([@ioquatix])
- Convenient cache and content type methods for `Rack::Response`. ([#1555](https://github.com/rack/rack/pull/1555), [@ioquatix])

### Changed

- `Request#params` no longer rescues EOFError. ([@jeremyevans])
- `Directory` uses a streaming approach, significantly improving time to first byte for large directories. ([@jeremyevans])
- `Directory` no longer includes a Parent directory link in the root directory index. ([@jeremyevans])
- `QueryParser#parse_nested_query` uses original backtrace when reraising exception with new class. ([@jeremyevans])
- `ConditionalGet` follows RFC 7232 precedence if both If-None-Match and If-Modified-Since headers are provided. ([@jeremyevans])
- `.ru` files supports the `frozen-string-literal` magic comment. ([@eregon](https://github.com/eregon))
- Rely on autoload to load constants instead of requiring internal files, make sure to require 'rack' and not just 'rack/...'. ([@jeremyevans])
- BREAKING CHANGE: `Etag` will continue sending ETag even if the response should not be cached. Streaming no longer works without a workaround, see [#1619](https://github.com/rack/rack/issues/1619#issuecomment-848460528). ([@henm](https://github.com/henm))
- `Request#host_with_port` no longer includes a colon for a missing or empty port. ([@AlexWayfer](https://github.com/AlexWayfer))
- All handlers uses keywords arguments instead of an options hash argument. ([@ioquatix])
- `Files` handling of range requests no longer return a body that supports `to_path`, to ensure range requests are handled correctly. ([@jeremyevans])
- `Multipart::Generator` only includes `Content-Length` for files with paths, and `Content-Disposition` `filename` if the `UploadedFile` instance has one. ([@jeremyevans])
- `Request#ssl?` is true for the `wss` scheme (secure websockets). ([@jeremyevans])
- `Rack::HeaderHash` is memoized by default. ([#1549](https://github.com/rack/rack/pull/1549), [@ioquatix])
- `Rack::Directory` allow directory traversal inside root directory. ([#1417](https://github.com/rack/rack/pull/1417), [@ThomasSevestre](https://github.com/ThomasSevestre))
- Sort encodings by server preference. ([#1184](https://github.com/rack/rack/pull/1184), [@ioquatix], [@wjordan](https://github.com/wjordan))
- Rework host/hostname/authority implementation in `Rack::Request`. `#host` and `#host_with_port` have been changed to correctly return IPv6 addresses formatted with square brackets, as defined by [RFC3986](https://tools.ietf.org/html/rfc3986#section-3.2.2). ([#1561](https://github.com/rack/rack/pull/1561), [@ioquatix])
- `Rack::Builder` parsing options on first `#\` line is deprecated. ([#1574](https://github.com/rack/rack/pull/1574), [@ioquatix])

### Removed

- `Directory#path` as it was not used and always returned nil. ([@jeremyevans])
- `BodyProxy#each` as it was only needed to work around a bug in Ruby <1.9.3. ([@jeremyevans])
- `URLMap::INFINITY` and `URLMap::NEGATIVE_INFINITY`, in favor of `Float::INFINITY`. ([@ch1c0t](https://github.com/ch1c0t))
- Deprecation of `Rack::File`. It will be deprecated again in rack 2.2 or 3.0. ([@rafaelfranca](https://github.com/rafaelfranca))
- Support for Ruby 2.2 as it is well past EOL. ([@ioquatix])
- Remove `Rack::Files#response_body` as the implementation was broken. ([#1153](https://github.com/rack/rack/pull/1153), [@ioquatix])
- Remove `SERVER_ADDR` which was never part of the original SPEC. ([#1573](https://github.com/rack/rack/pull/1573), [@ioquatix])

### Fixed

- `Directory` correctly handles root paths containing glob metacharacters. ([@jeremyevans])
- `Cascade` uses a new response object for each call if initialized with no apps. ([@jeremyevans])
- `BodyProxy` correctly delegates keyword arguments to the body object on Ruby 2.7+. ([@jeremyevans])
- `BodyProxy#method` correctly handles methods delegated to the body object. ([@jeremyevans])
- `Request#host` and `Request#host_with_port` handle IPv6 addresses correctly. ([@AlexWayfer](https://github.com/AlexWayfer))
- `Lint` checks when response hijacking that `rack.hijack` is called with a valid object. ([@jeremyevans])
- `Response#write` correctly updates `Content-Length` if initialized with a body. ([@jeremyevans])
- `CommonLogger` includes `SCRIPT_NAME` when logging. ([@Erol](https://github.com/Erol))
- `Utils.parse_nested_query` correctly handles empty queries, using an empty instance of the params class instead of a hash. ([@jeremyevans])
- `Directory` correctly escapes paths in links. ([@yous](https://github.com/yous))
- `Request#delete_cookie` and related `Utils` methods handle `:domain` and `:path` options in same call. ([@jeremyevans])
- `Request#delete_cookie` and related `Utils` methods do an exact match on `:domain` and `:path` options. ([@jeremyevans])
- `Static` no longer adds headers when a gzipped file request has a 304 response. ([@chooh](https://github.com/chooh))
- `ContentLength` sets `Content-Length` response header even for bodies not responding to `to_ary`. ([@jeremyevans])
- Thin handler supports options passed directly to `Thin::Controllers::Controller`. ([@jeremyevans])
- WEBrick handler no longer ignores `:BindAddress` option. ([@jeremyevans])
- `ShowExceptions` handles invalid POST data. ([@jeremyevans])
- Basic authentication requires a password, even if the password is empty. ([@jeremyevans])
- `Lint` checks response is array with 3 elements, per SPEC. ([@jeremyevans])
- Support for using `:SSLEnable` option when using WEBrick handler. (Gregor Melhorn)
- Close response body after buffering it when buffering. ([@ioquatix])
- Only accept `;` as delimiter when parsing cookies. ([@mrageh](https://github.com/mrageh))
- `Utils::HeaderHash#clear` clears the name mapping as well. ([@raxoft](https://github.com/raxoft))
- Support for passing `nil` `Rack::Files.new`, which notably fixes Rails' current `ActiveStorage::FileServer` implementation. ([@ioquatix])

### Documentation

- CHANGELOG updates. ([@aupajo](https://github.com/aupajo))
- Added [CONTRIBUTING](CONTRIBUTING.md). ([@dblock](https://github.com/dblock))

## [2.0.9] - 2020-02-08

- Handle case where session id key is requested but missing ([@jeremyevans])
- Restore support for code relying on `SessionId#to_s`. ([@jeremyevans])
- Add support for `SameSite=None` cookie value. ([@hennikul](https://github.com/hennikul))

## [2.1.2] - 2020-01-27

- Fix multipart parser for some files to prevent denial of service ([@aiomaster](https://github.com/aiomaster))
- Fix `Rack::Builder#use` with keyword arguments ([@kamipo](https://github.com/kamipo))
- Skip deflating in Rack::Deflater if Content-Length is 0 ([@jeremyevans])
- Remove `SessionHash#transform_keys`, no longer needed ([@pavel](https://github.com/pavel))
- Add to_hash to wrap Hash and Session classes ([@oleh-demyanyuk](https://github.com/oleh-demyanyuk))
- Handle case where session id key is requested but missing ([@jeremyevans])

## [2.1.1] - 2020-01-12

- Remove `Rack::Chunked` from `Rack::Server` default middleware. ([#1475](https://github.com/rack/rack/pull/1475), [@ioquatix])
- Restore support for code relying on `SessionId#to_s`. ([@jeremyevans])

## [2.1.0] - 2020-01-10

### Added

- Add support for `SameSite=None` cookie value. ([@hennikul](https://github.com/hennikul))
- Add trailer headers. ([@eileencodes](https://github.com/eileencodes))
- Add MIME Types for video streaming. ([@styd](https://github.com/styd))
- Add MIME Type for WASM. ([@buildrtech](https://github.com/buildrtech))
- Add `Early Hints(103)` to status codes. ([@egtra](https://github.com/egtra))
- Add `Too Early(425)` to status codes. ([@y-yagi]((https://github.com/y-yagi)))
- Add `Bandwidth Limit Exceeded(509)` to status codes. ([@CJKinni](https://github.com/CJKinni))
- Add method for custom `ip_filter`. ([@svcastaneda](https://github.com/svcastaneda))
- Add boot-time profiling capabilities to `rackup`. ([@tenderlove](https://github.com/tenderlove))
- Add multi mapping support for `X-Accel-Mappings` header. ([@yoshuki](https://github.com/yoshuki))
- Add `sync: false` option to `Rack::Deflater`. (Eric Wong)
- Add `Builder#freeze_app` to freeze application and all middleware instances. ([@jeremyevans])
- Add API to extract cookies from `Rack::MockResponse`. ([@petercline](https://github.com/petercline))

### Changed

- Don't propagate nil values from middleware. ([@ioquatix])
- Lazily initialize the response body and only buffer it if required. ([@ioquatix])
- Fix deflater zlib buffer errors on empty body part. ([@felixbuenemann](https://github.com/felixbuenemann))
- Set `X-Accel-Redirect` to percent-encoded path. ([@diskkid](https://github.com/diskkid))
- Remove unnecessary buffer growing when parsing multipart. ([@tainoe](https://github.com/tainoe))
- Expand the root path in `Rack::Static` upon initialization. ([@rosenfeld](https://github.com/rosenfeld))
- Make `ShowExceptions` work with binary data. ([@axyjo](https://github.com/axyjo))
- Use buffer string when parsing multipart requests. ([@janko-m](https://github.com/janko-m))
- Support optional UTF-8 Byte Order Mark (BOM) in config.ru. ([@mikegee](https://github.com/mikegee))
- Handle `X-Forwarded-For` with optional port. ([@dpritchett](https://github.com/dpritchett))
- Use `Time#httpdate` format for Expires, as proposed by RFC 7231. ([@nanaya](https://github.com/nanaya))
- Make `Utils.status_code` raise an error when the status symbol is invalid instead of `500`. ([@adambutler](https://github.com/adambutler))
- Rename `Request::SCHEME_WHITELIST` to `Request::ALLOWED_SCHEMES`.
- Make `Multipart::Parser.get_filename` accept files with `+` in their name. ([@lucaskanashiro](https://github.com/lucaskanashiro))
- Add Falcon to the default handler fallbacks. ([@ioquatix])
- Update codebase to avoid string mutations in preparation for `frozen_string_literals`. ([@pat](https://github.com/pat))
- Change `MockRequest#env_for` to rely on the input optionally responding to `#size` instead of `#length`. ([@janko](https://github.com/janko))
- Rename `Rack::File` -> `Rack::Files` and add deprecation notice. ([@postmodern](https://github.com/postmodern))
- Prefer Base64 “strict encoding” for Base64 cookies. ([@ioquatix])

### Removed

- BREAKING CHANGE: Remove `to_ary` from Response ([@tenderlove](https://github.com/tenderlove))
- Deprecate `Rack::Session::Memcache` in favor of `Rack::Session::Dalli` from dalli gem ([@fatkodima](https://github.com/fatkodima))

### Fixed

- Eliminate warnings for Ruby 2.7. ([@osamtimizer](https://github.com/osamtimizer]))

### Documentation

- Update broken example in `Session::Abstract::ID` documentation. ([tonytonyjan](https://github.com/tonytonyjan))
- Add Padrino to the list of frameworks implementing Rack. ([@wikimatze](https://github.com/wikimatze))
- Remove Mongrel from the suggested server options in the help output. ([@tricknotes](https://github.com/tricknotes))
- Replace `HISTORY.md` and `NEWS.md` with `CHANGELOG.md`. ([@twitnithegirl](https://github.com/twitnithegirl))
- CHANGELOG updates. ([@drenmi](https://github.com/Drenmi), [@p8](https://github.com/p8))

## [2.0.8] - 2019-12-08

### Security

- [[CVE-2019-16782](https://nvd.nist.gov/vuln/detail/CVE-2019-16782)] Prevent timing attacks targeted at session ID lookup. BREAKING CHANGE: Session ID is now a SessionId instance instead of a String. ([@tenderlove](https://github.com/tenderlove), [@rafaelfranca](https://github.com/rafaelfranca))

## [1.6.12] - 2019-12-08

### Security

- [[CVE-2019-16782](https://nvd.nist.gov/vuln/detail/CVE-2019-16782)] Prevent timing attacks targeted at session ID lookup. BREAKING CHANGE: Session ID is now a SessionId instance instead of a String. ([@tenderlove](https://github.com/tenderlove), [@rafaelfranca](https://github.com/rafaelfranca))

## [2.0.7] - 2019-04-02

### Fixed

- Remove calls to `#eof?` on Rack input in `Multipart::Parser`, as this breaks the specification. ([@matthewd](https://github.com/matthewd))
- Preserve forwarded IP addresses for trusted proxy chains. ([@SamSaffron](https://github.com/SamSaffron))

## [2.0.6] - 2018-11-05

### Fixed

- [[CVE-2018-16470](https://nvd.nist.gov/vuln/detail/CVE-2018-16470)] Reduce buffer size of `Multipart::Parser` to avoid pathological parsing. ([@tenderlove](https://github.com/tenderlove))
- Fix a call to a non-existing method `#accepts_html` in the `ShowExceptions` middleware. ([@tomelm](https://github.com/tomelm))
- [[CVE-2018-16471](https://nvd.nist.gov/vuln/detail/CVE-2018-16471)] Whitelist HTTP and HTTPS schemes in `Request#scheme` to prevent a possible XSS attack. ([@PatrickTulskie](https://github.com/PatrickTulskie))

## [2.0.5] - 2018-04-23

### Fixed

- Record errors originating from invalid UTF8 in `MethodOverride` middleware instead of breaking. ([@mclark](https://github.com/mclark))

## [2.0.4] - 2018-01-31

### Changed

- Ensure the `Lock` middleware passes the original `env` object. ([@lugray](https://github.com/lugray))
- Improve performance of `Multipart::Parser` when uploading large files. ([@tompng](https://github.com/tompng))
- Increase buffer size in `Multipart::Parser` for better performance. ([@jkowens](https://github.com/jkowens))
- Reduce memory usage of `Multipart::Parser` when uploading large files. ([@tompng](https://github.com/tompng))
- Replace ConcurrentRuby dependency with native `Queue`. ([@devmchakan](https://github.com/devmchakan))

### Fixed

- Require the correct digest algorithm in the `ETag` middleware. ([@matthewd](https://github.com/matthewd))

### Documentation

- Update homepage links to use SSL. ([@hugoabonizio](https://github.com/hugoabonizio))

## [2.0.3] - 2017-05-15

### Changed

- Ensure `env` values are ASCII 8-bit encoded. ([@eileencodes](https://github.com/eileencodes))

### Fixed

- Prevent exceptions when a class with mixins inherits from `Session::Abstract::ID`. ([@jnraine](https://github.com/jnraine))

## [2.0.2] - 2017-05-08

### Added

- Allow `Session::Abstract::SessionHash#fetch` to accept a block with a default value. ([@yannvanhalewyn](https://github.com/yannvanhalewyn))
- Add `Builder#freeze_app` to freeze application and all middleware. ([@jeremyevans])

### Changed

- Freeze default session options to avoid accidental mutation. ([@kirs](https://github.com/kirs))
- Detect partial hijack without hash headers. ([@devmchakan](https://github.com/devmchakan))
- Update tests to use MiniTest 6 matchers. ([@tonytonyjan](https://github.com/tonytonyjan))
- Allow 205 Reset Content responses to set a Content-Length, as RFC 7231 proposes setting this to 0. ([@devmchakan](https://github.com/devmchakan))

### Fixed

- Handle `NULL` bytes in multipart filenames. ([@casperisfine](https://github.com/casperisfine))
- Remove warnings due to miscapitalized global. ([@ioquatix])
- Prevent exceptions caused by a race condition on multi-threaded servers. ([@sophiedeziel](https://github.com/sophiedeziel))
- Add RDoc as an explicit dependency for `doc` group. ([@tonytonyjan](https://github.com/tonytonyjan))
- Record errors originating from `Multipart::Parser` in the `MethodOverride` middleware instead of letting them bubble up. ([@carlzulauf](https://github.com/carlzulauf))
- Remove remaining use of removed `Utils#bytesize` method from the `File` middleware. ([@brauliomartinezlm](https://github.com/brauliomartinezlm))

### Removed

- Remove `deflate` encoding support to reduce caching overhead. ([@devmchakan](https://github.com/devmchakan))

### Documentation

- Update broken example in `Deflater` documentation. ([@mwpastore](https://github.com/mwpastore))

## [2.0.1] - 2016-06-30

### Changed

- Remove JSON as an explicit dependency. ([@mperham](https://github.com/mperham))


# History/News Archive
Items below this line are from the previously maintained HISTORY.md and NEWS.md files.

## [2.0.0.rc1] 2016-05-06
- Rack::Session::Abstract::ID is deprecated. Please change to use Rack::Session::Abstract::Persisted

## [2.0.0.alpha] 2015-12-04
- First-party "SameSite" cookies. Browsers omit SameSite cookies from third-party requests, closing the door on many CSRF attacks.
- Pass `same_site: true` (or `:strict`) to enable: response.set_cookie 'foo', value: 'bar', same_site: true or `same_site: :lax` to use Lax enforcement: response.set_cookie 'foo', value: 'bar', same_site: :lax
- Based on version 7 of the Same-site Cookies internet draft:
	https://tools.ietf.org/html/draft-west-first-party-cookies-07
- Thanks to Ben Toews (@mastahyeti) and Bob Long (@bobjflong) for updating to drafts 5 and 7.
- Add `Rack::Events` middleware for adding event based middleware: middleware that does not care about the response body, but only cares about doing work at particular points in the request / response lifecycle.
- Add `Rack::Request#authority` to calculate the authority under which the response is being made (this will be handy for h2 pushes).
- Add `Rack::Response::Helpers#cache_control` and `cache_control=`. Use this for setting cache control headers on your response objects.
- Add `Rack::Response::Helpers#etag` and `etag=`.  Use this for setting etag values on the response.
- Introduce `Rack::Response::Helpers#add_header` to add a value to a multi-valued response header. Implemented in terms of other `Response#*_header` methods, so it's available to any response-like class that includes the `Helpers` module.
- Add `Rack::Request#add_header` to match.
- `Rack::Session::Abstract::ID` IS DEPRECATED.  Please switch to `Rack::Session::Abstract::Persisted`. `Rack::Session::Abstract::Persisted` uses a request object rather than the `env` hash.
- Pull `ENV` access inside the request object in to a module.  This will help with legacy Request objects that are ENV based but don't want to inherit from Rack::Request
- Move most methods on the `Rack::Request` to a module `Rack::Request::Helpers` and use public API to get values from the request object.  This enables users to mix `Rack::Request::Helpers` in to their own objects so they can implement `(get|set|fetch|each)_header` as they see fit (for example a proxy object).
- Files and directories with + in the name are served correctly. Rather than unescaping paths like a form, we unescape with a URI parser using `Rack::Utils.unescape_path`. Fixes #265
- Tempfiles are automatically closed in the case that there were too
	many posted.
- Added methods for manipulating response headers that don't assume
	they're stored as a Hash. Response-like classes may include the
	Rack::Response::Helpers module if they define these methods:
    - Rack::Response#has_header?
	- Rack::Response#get_header
	- Rack::Response#set_header
	- Rack::Response#delete_header
- Introduce Util.get_byte_ranges that will parse the value of the HTTP_RANGE string passed to it without depending on the `env` hash. `byte_ranges` is deprecated in favor of this method.
- Change Session internals to use Request objects for looking up session information. This allows us to only allocate one request object when dealing with session objects (rather than doing it every time we need to manipulate cookies, etc).
- Add `Rack::Request#initialize_copy` so that the env is duped when the request gets duped.
- Added methods for manipulating request specific data.  This includes
	data set as CGI parameters, and just any arbitrary data the user wants
	to associate with a particular request.  New methods:
	 - Rack::Request#has_header?
	 - Rack::Request#get_header
	 - Rack::Request#fetch_header
	 - Rack::Request#each_header
	 - Rack::Request#set_header
	 - Rack::Request#delete_header
- lib/rack/utils.rb: add a method for constructing "delete" cookie
	headers.  This allows us to construct cookie headers without depending
	on the side effects of mutating a hash.
- Prevent extremely deep parameters from being parsed. CVE-2015-3225

## [1.6.1] 2015-05-06
  - Fix CVE-2014-9490, denial of service attack in OkJson
  - Use a monotonic time for Rack::Runtime, if available
  - RACK_MULTIPART_LIMIT changed to RACK_MULTIPART_PART_LIMIT (RACK_MULTIPART_LIMIT is deprecated and will be removed in 1.7.0)

## [1.5.3] 2015-05-06
  - Fix CVE-2014-9490, denial of service attack in OkJson
  - Backport bug fixes to 1.5 series

## [1.6.0] 2014-01-18
  - Response#unauthorized? helper
  - Deflater now accepts an options hash to control compression on a per-request level
  - Builder#warmup method for app preloading
  - Request#accept_language method to extract HTTP_ACCEPT_LANGUAGE
  - Add quiet mode of rack server, rackup --quiet
  - Update HTTP Status Codes to RFC 7231
  - Less strict header name validation according to RFC 2616
  - SPEC updated to specify headers conform to RFC7230 specification
  - Etag correctly marks etags as weak
  - Request#port supports multiple x-http-forwarded-proto values
  - Utils#multipart_part_limit configures the maximum number of parts a request can contain
  - Default host to localhost when in development mode
  - Various bugfixes and performance improvements

## [1.5.2] 2013-02-07
  - Fix CVE-2013-0263, timing attack against Rack::Session::Cookie
  - Fix CVE-2013-0262, symlink path traversal in Rack::File
  - Add various methods to Session for enhanced Rails compatibility
  - Request#trusted_proxy? now only matches whole strings
  - Add JSON cookie coder, to be default in Rack 1.6+ due to security concerns
  - URLMap host matching in environments that don't set the Host header fixed
  - Fix a race condition that could result in overwritten pidfiles
  - Various documentation additions

## [1.4.5] 2013-02-07
  - Fix CVE-2013-0263, timing attack against Rack::Session::Cookie
  - Fix CVE-2013-0262, symlink path traversal in Rack::File

## [1.1.6, 1.2.8, 1.3.10] 2013-02-07
  - Fix CVE-2013-0263, timing attack against Rack::Session::Cookie

## [1.5.1] 2013-01-28
  - Rack::Lint check_hijack now conforms to other parts of SPEC
  - Added hash-like methods to Abstract::ID::SessionHash for compatibility
  - Various documentation corrections

## [1.5.0] 2013-01-21
  - Introduced hijack SPEC, for before-response and after-response hijacking
  - SessionHash is no longer a Hash subclass
  - Rack::File cache_control parameter is removed, in place of headers options
  - Rack::Auth::AbstractRequest#scheme now yields strings, not symbols
  - Rack::Utils cookie functions now format expires in RFC 2822 format
  - Rack::File now has a default mime type
  - rackup -b 'run Rack::Files.new(".")', option provides command line configs
  - Rack::Deflater will no longer double encode bodies
  - Rack::Mime#match? provides convenience for Accept header matching
  - Rack::Utils#q_values provides splitting for Accept headers
  - Rack::Utils#best_q_match provides a helper for Accept headers
  - Rack::Handler.pick provides convenience for finding available servers
  - Puma added to the list of default servers (preferred over Webrick)
  - Various middleware now correctly close body when replacing it
  - Rack::Request#params is no longer persistent with only GET params
  - Rack::Request#update_param and #delete_param provide persistent operations
  - Rack::Request#trusted_proxy? now returns true for local unix sockets
  - Rack::Response no longer forces Content-Types
  - Rack::Sendfile provides local mapping configuration options
  - Rack::Utils#rfc2109 provides old netscape style time output
  - Updated HTTP status codes
  - Ruby 1.8.6 likely no longer passes tests, and is no longer fully supported

## [1.4.4, 1.3.9, 1.2.7, 1.1.5] 2013-01-13
  - [SEC] Rack::Auth::AbstractRequest no longer symbolizes arbitrary strings
  - Fixed erroneous test case in the 1.3.x series

## [1.4.3] 2013-01-07
  - Security: Prevent unbounded reads in large multipart boundaries

## [1.3.8] 2013-01-07
  - Security: Prevent unbounded reads in large multipart boundaries

## [1.4.2] 2013-01-06
  - Add warnings when users do not provide a session secret
  - Fix parsing performance for unquoted filenames
  - Updated URI backports
  - Fix URI backport version matching, and silence constant warnings
  - Correct parameter parsing with empty values
  - Correct rackup '-I' flag, to allow multiple uses
  - Correct rackup pidfile handling
  - Report rackup line numbers correctly
  - Fix request loops caused by non-stale nonces with time limits
  - Fix reloader on Windows
  - Prevent infinite recursions from Response#to_ary
  - Various middleware better conforms to the body close specification
  - Updated language for the body close specification
  - Additional notes regarding ECMA escape compatibility issues
  - Fix the parsing of multiple ranges in range headers
  - Prevent errors from empty parameter keys
  - Added PATCH verb to Rack::Request
  - Various documentation updates
  - Fix session merge semantics (fixes rack-test)
  - Rack::Static :index can now handle multiple directories
  - All tests now utilize Rack::Lint (special thanks to Lars Gierth)
  - Rack::File cache_control parameter is now deprecated, and removed by 1.5
  - Correct Rack::Directory script name escaping
  - Rack::Static supports header rules for sophisticated configurations
  - Multipart parsing now works without a Content-Length header
  - New logos courtesy of Zachary Scott!
  - Rack::BodyProxy now explicitly defines #each, useful for C extensions
  - Cookies that are not URI escaped no longer cause exceptions

## [1.3.7] 2013-01-06
  - Add warnings when users do not provide a session secret
  - Fix parsing performance for unquoted filenames
  - Updated URI backports
  - Fix URI backport version matching, and silence constant warnings
  - Correct parameter parsing with empty values
  - Correct rackup '-I' flag, to allow multiple uses
  - Correct rackup pidfile handling
  - Report rackup line numbers correctly
  - Fix request loops caused by non-stale nonces with time limits
  - Fix reloader on Windows
  - Prevent infinite recursions from Response#to_ary
  - Various middleware better conforms to the body close specification
  - Updated language for the body close specification
  - Additional notes regarding ECMA escape compatibility issues
  - Fix the parsing of multiple ranges in range headers

## [1.2.6] 2013-01-06
  - Add warnings when users do not provide a session secret
  - Fix parsing performance for unquoted filenames

## [1.1.4] 2013-01-06
  - Add warnings when users do not provide a session secret

## [1.4.1] 2012-01-22
  - Alter the keyspace limit calculations to reduce issues with nested params
  - Add a workaround for multipart parsing where files contain unescaped "%"
  - Added Rack::Response::Helpers#method_not_allowed? (code 405)
  - Rack::File now returns 404 for illegal directory traversals
  - Rack::File now returns 405 for illegal methods (non HEAD/GET)
  - Rack::Cascade now catches 405 by default, as well as 404
  - Cookies missing '--' no longer cause an exception to be raised
  - Various style changes and documentation spelling errors
  - Rack::BodyProxy always ensures to execute its block
  - Additional test coverage around cookies and secrets
  - Rack::Session::Cookie can now be supplied either secret or old_secret
  - Tests are no longer dependent on set order
  - Rack::Static no longer defaults to serving index files
  - Rack.release was fixed

## [1.4.0] 2011-12-28
  - Ruby 1.8.6 support has officially been dropped. Not all tests pass.
  - Raise sane error messages for broken config.ru
  - Allow combining run and map in a config.ru
  - Rack::ContentType will not set Content-Type for responses without a body
  - Status code 205 does not send a response body
  - Rack::Response::Helpers will not rely on instance variables
  - Rack::Utils.build_query no longer outputs '=' for nil query values
  - Various mime types added
  - Rack::MockRequest now supports HEAD
  - Rack::Directory now supports files that contain RFC3986 reserved chars
  - Rack::File now only supports GET and HEAD requests
  - Rack::Server#start now passes the block to Rack::Handler::<h>#run
  - Rack::Static now supports an index option
  - Added the Teapot status code
  - rackup now defaults to Thin instead of Mongrel (if installed)
  - Support added for HTTP_X_FORWARDED_SCHEME
  - Numerous bug fixes, including many fixes for new and alternate rubies

## [1.1.3] 2011-12-28
  - Security fix. http://www.ocert.org/advisories/ocert-2011-003.html
    Further information here: http://jruby.org/2011/12/27/jruby-1-6-5-1

## [1.3.5] 2011-10-17
  - Fix annoying warnings caused by the backport in 1.3.4

## [1.3.4] 2011-10-01
  - Backport security fix from 1.9.3, also fixes some roundtrip issues in URI
  - Small documentation update
  - Fix an issue where BodyProxy could cause an infinite recursion
  - Add some supporting files for travis-ci

## [1.2.4] 2011-09-16
  - Fix a bug with MRI regex engine to prevent XSS by malformed unicode

## [1.3.3] 2011-09-16
  - Fix bug with broken query parameters in Rack::ShowExceptions
  - Rack::Request#cookies no longer swallows exceptions on broken input
  - Prevents XSS attacks enabled by bug in Ruby 1.8's regexp engine
  - Rack::ConditionalGet handles broken If-Modified-Since helpers

## [1.3.2] 2011-07-16
  - Fix for Rails and rack-test, Rack::Utils#escape calls to_s

## [1.3.1] 2011-07-13
  - Fix 1.9.1 support
  - Fix JRuby support
  - Properly handle $KCODE in Rack::Utils.escape
  - Make method_missing/respond_to behavior consistent for Rack::Lock,
    Rack::Auth::Digest::Request and Rack::Multipart::UploadedFile
  - Reenable passing rack.session to session middleware
  - Rack::CommonLogger handles streaming responses correctly
  - Rack::MockResponse calls close on the body object
  - Fix a DOS vector from MRI stdlib backport

## [1.2.3] 2011-05-22
  - Pulled in relevant bug fixes from 1.3
  - Fixed 1.8.6 support

## [1.3.0] 2011-05-22
  - Various performance optimizations
  - Various multipart fixes
  - Various multipart refactors
  - Infinite loop fix for multipart
  - Test coverage for Rack::Server returns
  - Allow files with '..', but not path components that are '..'
  - rackup accepts handler-specific options on the command line
  - Request#params no longer merges POST into GET (but returns the same)
  - Use URI.encode_www_form_component instead. Use core methods for escaping.
  - Allow multi-line comments in the config file
  - Bug L#94 reported by Nikolai Lugovoi, query parameter unescaping.
  - Rack::Response now deletes Content-Length when appropriate
  - Rack::Deflater now supports streaming
  - Improved Rack::Handler loading and searching
  - Support for the PATCH verb
  - env['rack.session.options'] now contains session options
  - Cookies respect renew
  - Session middleware uses SecureRandom.hex

## [1.2.2, 1.1.2] 2011-03-13
  - Security fix in Rack::Auth::Digest::MD5: when authenticator
    returned nil, permission was granted on empty password.

## [1.2.1] 2010-06-15
  - Make CGI handler rewindable
  - Rename spec/ to test/ to not conflict with SPEC on lesser
    operating systems

## [1.2.0] 2010-06-13
  - Removed Camping adapter: Camping 2.0 supports Rack as-is
  - Removed parsing of quoted values
  - Add Request.trace? and Request.options?
  - Add mime-type for .webm and .htc
  - Fix HTTP_X_FORWARDED_FOR
  - Various multipart fixes
  - Switch test suite to bacon

## [1.1.0] 2010-01-03
  - Moved Auth::OpenID to rack-contrib.
  - SPEC change that relaxes Lint slightly to allow subclasses of the
    required types
  - SPEC change to document rack.input binary mode in greater detail
  - SPEC define optional rack.logger specification
  - File servers support X-Cascade header
  - Imported Config middleware
  - Imported ETag middleware
  - Imported Runtime middleware
  - Imported Sendfile middleware
  - New Logger and NullLogger middlewares
  - Added mime type for .ogv and .manifest.
  - Don't squeeze PATH_INFO slashes
  - Use Content-Type to determine POST params parsing
  - Update Rack::Utils::HTTP_STATUS_CODES hash
  - Add status code lookup utility
  - Response should call #to_i on the status
  - Add Request#user_agent
  - Request#host knows about forwarded host
  - Return an empty string for Request#host if HTTP_HOST and
    SERVER_NAME are both missing
  - Allow MockRequest to accept hash params
  - Optimizations to HeaderHash
  - Refactored rackup into Rack::Server
  - Added Utils.build_nested_query to complement Utils.parse_nested_query
  - Added Utils::Multipart.build_multipart to complement
    Utils::Multipart.parse_multipart
  - Extracted set and delete cookie helpers into Utils so they can be
    used outside Response
  - Extract parse_query and parse_multipart in Request so subclasses
    can change their behavior
  - Enforce binary encoding in RewindableInput
  - Set correct external_encoding for handlers that don't use RewindableInput

## [1.0.1] 2009-10-18
  - Bump remainder of rack.versions.
  - Support the pure Ruby FCGI implementation.
  - Fix for form names containing "=": split first then unescape components
  - Fixes the handling of the filename parameter with semicolons in names.
  - Add anchor to nested params parsing regexp to prevent stack overflows
  - Use more compatible gzip write api instead of "<<".
  - Make sure that Reloader doesn't break when executed via ruby -e
  - Make sure WEBrick respects the :Host option
  - Many Ruby 1.9 fixes.

## [1.0.0] 2009-04-25
  - SPEC change: Rack::VERSION has been pushed to [1,0].
  - SPEC change: header values must be Strings now, split on "\n".
  - SPEC change: Content-Length can be missing, in this case chunked transfer
    encoding is used.
  - SPEC change: rack.input must be rewindable and support reading into
    a buffer, wrap with Rack::RewindableInput if it isn't.
  - SPEC change: rack.session is now specified.
  - SPEC change: Bodies can now additionally respond to #to_path with
    a filename to be served.
  - NOTE: String bodies break in 1.9, use an Array consisting of a
    single String instead.
  - New middleware Rack::Lock.
  - New middleware Rack::ContentType.
  - Rack::Reloader has been rewritten.
  - Major update to Rack::Auth::OpenID.
  - Support for nested parameter parsing in Rack::Response.
  - Support for redirects in Rack::Response.
  - HttpOnly cookie support in Rack::Response.
  - The Rakefile has been rewritten.
  - Many bugfixes and small improvements.

## [0.9.1] 2009-01-09
  - Fix directory traversal exploits in Rack::File and Rack::Directory.

## [0.9] 2009-01-06
  - Rack is now managed by the Rack Core Team.
  - Rack::Lint is stricter and follows the HTTP RFCs more closely.
  - Added ConditionalGet middleware.
  - Added ContentLength middleware.
  - Added Deflater middleware.
  - Added Head middleware.
  - Added MethodOverride middleware.
  - Rack::Mime now provides popular MIME-types and their extension.
  - Mongrel Header now streams.
  - Added Thin handler.
  - Official support for swiftiplied Mongrel.
  - Secure cookies.
  - Made HeaderHash case-preserving.
  - Many bugfixes and small improvements.

## [0.4] 2008-08-21
  - New middleware, Rack::Deflater, by Christoffer Sawicki.
  - OpenID authentication now needs ruby-openid 2.
  - New Memcache sessions, by blink.
  - Explicit EventedMongrel handler, by Joshua Peek <josh@joshpeek.com>
  - Rack::Reloader is not loaded in rackup development mode.
  - rackup can daemonize with -D.
  - Many bugfixes, especially for pool sessions, URLMap, thread safety
    and tempfile handling.
  - Improved tests.
  - Rack moved to Git.

## [0.3] 2008-02-26
  - LiteSpeed handler, by Adrian Madrid.
  - SCGI handler, by Jeremy Evans.
  - Pool sessions, by blink.
  - OpenID authentication, by blink.
  - :Port and :File options for opening FastCGI sockets, by blink.
  - Last-Modified HTTP header for Rack::File, by blink.
  - Rack::Builder#use now accepts blocks, by Corey Jewett.
    (See example/protectedlobster.ru)
  - HTTP status 201 can contain a Content-Type and a body now.
  - Many bugfixes, especially related to Cookie handling.

## [0.2] 2007-05-16
  - HTTP Basic authentication.
  - Cookie Sessions.
  - Static file handler.
  - Improved Rack::Request.
  - Improved Rack::Response.
  - Added Rack::ShowStatus, for better default error messages.
  - Bug fixes in the Camping adapter.
  - Removed Rails adapter, was too alpha.

## [0.1] 2007-03-03

[@ioquatix]: https://github.com/ioquatix "Samuel Williams"
[@jeremyevans]: https://github.com/jeremyevans "Jeremy Evans"
[@amatsuda]: https://github.com/amatsuda "Akira Matsuda"
[@wjordan]: https://github.com/wjordan "Will Jordan"
[@BlakeWilliams]: https://github.com/BlakeWilliams "Blake Williams"
PKDH[1+Ǔ004share/gems/gems/json-2.3.0/lib/json/add/date_time.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
require 'date'

class DateTime

  # Deserializes JSON string by converting year <tt>y</tt>, month <tt>m</tt>,
  # day <tt>d</tt>, hour <tt>H</tt>, minute <tt>M</tt>, second <tt>S</tt>,
  # offset <tt>of</tt> and Day of Calendar Reform <tt>sg</tt> to DateTime.
  def self.json_create(object)
    args = object.values_at('y', 'm', 'd', 'H', 'M', 'S')
    of_a, of_b = object['of'].split('/')
    if of_b and of_b != '0'
      args << Rational(of_a.to_i, of_b.to_i)
    else
      args << of_a
    end
    args << object['sg']
    civil(*args)
  end

  alias start sg unless method_defined?(:start)

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'y' => year,
      'm' => month,
      'd' => day,
      'H' => hour,
      'M' => min,
      'S' => sec,
      'of' => offset.to_s,
      'sg' => start,
    }
  end

  # Stores class name (DateTime) with Julian year <tt>y</tt>, month <tt>m</tt>,
  # day <tt>d</tt>, hour <tt>H</tt>, minute <tt>M</tt>, second <tt>S</tt>,
  # offset <tt>of</tt> and Day of Calendar Reform <tt>sg</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end


PKDH[@9%1share/gems/gems/json-2.3.0/lib/json/add/regexp.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Regexp

  # Deserializes JSON string by constructing new Regexp object with source
  # <tt>s</tt> (Regexp or String) and options <tt>o</tt> serialized by
  # <tt>to_json</tt>
  def self.json_create(object)
    new(object['s'], object['o'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'o'            => options,
      's'            => source,
    }
  end

  # Stores class name (Regexp) with options <tt>o</tt> and source <tt>s</tt>
  # (Regexp or String) as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[�%��1share/gems/gems/json-2.3.0/lib/json/add/struct.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Struct

  # Deserializes JSON string by constructing new Struct object with values
  # <tt>v</tt> serialized by <tt>to_json</tt>.
  def self.json_create(object)
    new(*object['v'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    klass = self.class.name
    klass.to_s.empty? and raise JSON::JSONError, "Only named structs are supported!"
    {
      JSON.create_id => klass,
      'v'            => values,
    }
  end

  # Stores class name (Struct) with Struct values <tt>v</tt> as a JSON string.
  # Only named structs are supported.
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[�k�4share/gems/gems/json-2.3.0/lib/json/add/exception.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Exception

  # Deserializes JSON string by constructing new Exception object with message
  # <tt>m</tt> and backtrace <tt>b</tt> serialized with <tt>to_json</tt>
  def self.json_create(object)
    result = new(object['m'])
    result.set_backtrace object['b']
    result
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'm'            => message,
      'b'            => backtrace,
    }
  end

  # Stores class name (Exception) with message <tt>m</tt> and backtrace array
  # <tt>b</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[�m��qq/share/gems/gems/json-2.3.0/lib/json/add/date.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
require 'date'

class Date

  # Deserializes JSON string by converting Julian year <tt>y</tt>, month
  # <tt>m</tt>, day <tt>d</tt> and Day of Calendar Reform <tt>sg</tt> to Date.
  def self.json_create(object)
    civil(*object.values_at('y', 'm', 'd', 'sg'))
  end

  alias start sg unless method_defined?(:start)

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'y' => year,
      'm' => month,
      'd' => day,
      'sg' => start,
    }
  end

  # Stores class name (Date) with Julian year <tt>y</tt>, month <tt>m</tt>, day
  # <tt>d</tt> and Day of Calendar Reform <tt>sg</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[J��/share/gems/gems/json-2.3.0/lib/json/add/time.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Time

  # Deserializes JSON string by converting time since epoch to Time
  def self.json_create(object)
    if usec = object.delete('u') # used to be tv_usec -> tv_nsec
      object['n'] = usec * 1000
    end
    if method_defined?(:tv_nsec)
      at(object['s'], Rational(object['n'], 1000))
    else
      at(object['s'], object['n'] / 1000)
    end
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    nanoseconds = [ tv_usec * 1000 ]
    respond_to?(:tv_nsec) and nanoseconds << tv_nsec
    nanoseconds = nanoseconds.max
    {
      JSON.create_id => self.class.name,
      's'            => tv_sec,
      'n'            => nanoseconds,
    }
  end

  # Stores class name (Time) with number of seconds since epoch and number of
  # microseconds for Time as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[��&a\\/share/gems/gems/json-2.3.0/lib/json/add/core.rbnu�[���#frozen_string_literal: false
# This file requires the implementations of ruby core's custom objects for
# serialisation/deserialisation.

require 'json/add/date'
require 'json/add/date_time'
require 'json/add/exception'
require 'json/add/range'
require 'json/add/regexp'
require 'json/add/struct'
require 'json/add/symbol'
require 'json/add/time'
PKDH[��a0share/gems/gems/json-2.3.0/lib/json/add/range.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Range

  # Deserializes JSON string by constructing new Range object with arguments
  # <tt>a</tt> serialized by <tt>to_json</tt>.
  def self.json_create(object)
    new(*object['a'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id  => self.class.name,
      'a'             => [ first, last, exclude_end? ]
    }
  end

  # Stores class name (Range) with JSON array of arguments <tt>a</tt> which
  # include <tt>first</tt> (integer), <tt>last</tt> (integer), and
  # <tt>exclude_end?</tt> (boolean) as JSON string.
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[o���aa5share/gems/gems/json-2.3.0/lib/json/add/bigdecimal.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::BigDecimal) or require 'bigdecimal'

class BigDecimal
  # Import a JSON Marshalled object.
  #
  # method used for JSON marshalling support.
  def self.json_create(object)
    BigDecimal._load object['b']
  end

  # Marshal the object to JSON.
  #
  # method used for JSON marshalling support.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'b'            => _dump,
    }
  end

  # return the JSON value
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[V��3share/gems/gems/json-2.3.0/lib/json/add/rational.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::Rational) or require 'rational'

class Rational
  # Deserializes JSON string by converting numerator value <tt>n</tt>,
  # denominator value <tt>d</tt>, to a Rational object.
  def self.json_create(object)
    Rational(object['n'], object['d'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'n'            => numerator,
      'd'            => denominator,
    }
  end

  # Stores class name (Rational) along with numerator value <tt>n</tt> and denominator value <tt>d</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[���!!.share/gems/gems/json-2.3.0/lib/json/add/set.rbnu�[���unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::Set) or require 'set'

class Set
  # Import a JSON Marshalled object.
  #
  # method used for JSON marshalling support.
  def self.json_create(object)
    new object['a']
  end

  # Marshal the object to JSON.
  #
  # method used for JSON marshalling support.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'a'            => to_a,
    }
  end

  # return the JSON value
  def to_json(*args)
    as_json.to_json(*args)
  end
end

PKDH[�&��2share/gems/gems/json-2.3.0/lib/json/add/complex.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::Complex) or require 'complex'

class Complex

  # Deserializes JSON string by converting Real value <tt>r</tt>, imaginary
  # value <tt>i</tt>, to a Complex object.
  def self.json_create(object)
    Complex(object['r'], object['i'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'r'            => real,
      'i'            => imag,
    }
  end

  # Stores class name (Complex) along with real value <tt>r</tt> and imaginary value <tt>i</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[��m�2share/gems/gems/json-2.3.0/lib/json/add/ostruct.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
require 'ostruct'

class OpenStruct

  # Deserializes JSON string by constructing new Struct object with values
  # <tt>t</tt> serialized by <tt>to_json</tt>.
  def self.json_create(object)
    new(object['t'] || object[:t])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    klass = self.class.name
    klass.to_s.empty? and raise JSON::JSONError, "Only named structs are supported!"
    {
      JSON.create_id => klass,
      't'            => table,
    }
  end

  # Stores class name (OpenStruct) with this struct's values <tt>t</tt> as a
  # JSON string.
  def to_json(*args)
    as_json.to_json(*args)
  end
end
PKDH[��ff1share/gems/gems/json-2.3.0/lib/json/add/symbol.rbnu�[���#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end

class Symbol
  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      's'            => to_s,
    }
  end

  # Stores class name (Symbol) with String representation of Symbol as a JSON string.
  def to_json(*a)
    as_json.to_json(*a)
  end

  # Deserializes JSON string by converting the <tt>string</tt> value stored in the object to a Symbol
  def self.json_create(o)
    o['s'].to_sym
  end
end
PKDH[E��”�5share/gems/gems/json-2.3.0/lib/json/generic_object.rbnu�[���#frozen_string_literal: false
require 'ostruct'

module JSON
  class GenericObject < OpenStruct
    class << self
      alias [] new

      def json_creatable?
        @json_creatable
      end

      attr_writer :json_creatable

      def json_create(data)
        data = data.dup
        data.delete JSON.create_id
        self[data]
      end

      def from_hash(object)
        case
        when object.respond_to?(:to_hash)
          result = new
          object.to_hash.each do |key, value|
            result[key] = from_hash(value)
          end
          result
        when object.respond_to?(:to_ary)
          object.to_ary.map { |a| from_hash(a) }
        else
          object
        end
      end

      def load(source, proc = nil, opts = {})
        result = ::JSON.load(source, proc, opts.merge(:object_class => self))
        result.nil? ? new : result
      end

      def dump(obj, *args)
        ::JSON.dump(obj, *args)
      end
    end
    self.json_creatable = false

    def to_hash
      table
    end

    def [](name)
      __send__(name)
    end unless method_defined?(:[])

    def []=(name, value)
      __send__("#{name}=", value)
    end unless method_defined?(:[]=)

    def |(other)
      self.class[other.to_hash.merge(to_hash)]
    end

    def as_json(*)
      { JSON.create_id => self.class.name }.merge to_hash
    end

    def to_json(*a)
      as_json.to_json(*a)
    end
  end
end
PKDH[�Ht�...share/gems/gems/json-2.3.0/lib/json/version.rbnu�[���# frozen_string_literal: false
module JSON
  # JSON version
  VERSION         = '2.3.0'
  VERSION_ARRAY   = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
  VERSION_MAJOR   = VERSION_ARRAY[0] # :nodoc:
  VERSION_MINOR   = VERSION_ARRAY[1] # :nodoc:
  VERSION_BUILD   = VERSION_ARRAY[2] # :nodoc:
end
PKDH[1z���*share/gems/gems/json-2.3.0/lib/json/ext.rbnu�[���require 'json/common'

module JSON
  # This module holds all the modules/classes that implement JSON's
  # functionality as C extensions.
  module Ext
    require 'json/ext/parser'
    require 'json/ext/generator'
    $DEBUG and warn "Using Ext extension for JSON."
    JSON.parser = Parser
    JSON.generator = Generator
  end

  JSON_LOADED = true unless defined?(::JSON::JSON_LOADED)
end
PKDH[��;�;-share/gems/gems/json-2.3.0/lib/json/common.rbnu�[���#frozen_string_literal: false
require 'json/version'
require 'json/generic_object'

module JSON
  class << self
    # If _object_ is string-like, parse the string and return the parsed
    # result as a Ruby data structure. Otherwise generate a JSON text from the
    # Ruby data structure object and return it.
    #
    # The _opts_ argument is passed through to generate/parse respectively.
    # See generate and parse for their documentation.
    def [](object, opts = {})
      if object.respond_to? :to_str
        JSON.parse(object.to_str, opts)
      else
        JSON.generate(object, opts)
      end
    end

    # Returns the JSON parser class that is used by JSON. This is either
    # JSON::Ext::Parser or JSON::Pure::Parser.
    attr_reader :parser

    # Set the JSON parser class _parser_ to be used by JSON.
    def parser=(parser) # :nodoc:
      @parser = parser
      remove_const :Parser if const_defined?(:Parser, false)
      const_set :Parser, parser
    end

    # Return the constant located at _path_. The format of _path_ has to be
    # either ::A::B::C or A::B::C. In any case, A has to be located at the top
    # level (absolute namespace path?). If there doesn't exist a constant at
    # the given path, an ArgumentError is raised.
    def deep_const_get(path) # :nodoc:
      path.to_s.split(/::/).inject(Object) do |p, c|
        case
        when c.empty?                  then p
        when p.const_defined?(c, true) then p.const_get(c)
        else
          begin
            p.const_missing(c)
          rescue NameError => e
            raise ArgumentError, "can't get const #{path}: #{e}"
          end
        end
      end
    end

    # Set the module _generator_ to be used by JSON.
    def generator=(generator) # :nodoc:
      old, $VERBOSE = $VERBOSE, nil
      @generator = generator
      generator_methods = generator::GeneratorMethods
      for const in generator_methods.constants
        klass = deep_const_get(const)
        modul = generator_methods.const_get(const)
        klass.class_eval do
          instance_methods(false).each do |m|
            m.to_s == 'to_json' and remove_method m
          end
          include modul
        end
      end
      self.state = generator::State
      const_set :State, self.state
      const_set :SAFE_STATE_PROTOTYPE, State.new
      const_set :FAST_STATE_PROTOTYPE, State.new(
        :indent         => '',
        :space          => '',
        :object_nl      => "",
        :array_nl       => "",
        :max_nesting    => false
      )
      const_set :PRETTY_STATE_PROTOTYPE, State.new(
        :indent         => '  ',
        :space          => ' ',
        :object_nl      => "\n",
        :array_nl       => "\n"
      )
    ensure
      $VERBOSE = old
    end

    # Returns the JSON generator module that is used by JSON. This is
    # either JSON::Ext::Generator or JSON::Pure::Generator.
    attr_reader :generator

    # Returns the JSON generator state class that is used by JSON. This is
    # either JSON::Ext::Generator::State or JSON::Pure::Generator::State.
    attr_accessor :state

    # This is create identifier, which is used to decide if the _json_create_
    # hook of a class should be called. It defaults to 'json_class'.
    attr_accessor :create_id
  end
  self.create_id = 'json_class'

  NaN           = 0.0/0

  Infinity      = 1.0/0

  MinusInfinity = -Infinity

  # The base exception for JSON errors.
  class JSONError < StandardError
    def self.wrap(exception)
      obj = new("Wrapped(#{exception.class}): #{exception.message.inspect}")
      obj.set_backtrace exception.backtrace
      obj
    end
  end

  # This exception is raised if a parser error occurs.
  class ParserError < JSONError; end

  # This exception is raised if the nesting of parsed data structures is too
  # deep.
  class NestingError < ParserError; end

  # :stopdoc:
  class CircularDatastructure < NestingError; end
  # :startdoc:

  # This exception is raised if a generator or unparser error occurs.
  class GeneratorError < JSONError; end
  # For backwards compatibility
  UnparserError = GeneratorError

  # This exception is raised if the required unicode support is missing on the
  # system. Usually this means that the iconv library is not installed.
  class MissingUnicodeSupport < JSONError; end

  module_function

  # Parse the JSON document _source_ into a Ruby data structure and return it.
  #
  # _opts_ can have the following
  # keys:
  # * *max_nesting*: The maximum depth of nesting allowed in the parsed data
  #   structures. Disable depth checking with :max_nesting => false. It
  #   defaults to 100.
  # * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
  #   defiance of RFC 7159 to be parsed by the Parser. This option defaults
  #   to false.
  # * *symbolize_names*: If set to true, returns symbols for the names
  #   (keys) in a JSON object. Otherwise strings are returned. Strings are
  #   the default.
  # * *create_additions*: If set to false, the Parser doesn't create
  #   additions even if a matching class and create_id was found. This option
  #   defaults to false.
  # * *object_class*: Defaults to Hash
  # * *array_class*: Defaults to Array
  def parse(source, opts = {})
    Parser.new(source, **(opts||{})).parse
  end

  # Parse the JSON document _source_ into a Ruby data structure and return it.
  # The bang version of the parse method defaults to the more dangerous values
  # for the _opts_ hash, so be sure only to parse trusted _source_ documents.
  #
  # _opts_ can have the following keys:
  # * *max_nesting*: The maximum depth of nesting allowed in the parsed data
  #   structures. Enable depth checking with :max_nesting => anInteger. The
  #   parse! methods defaults to not doing max depth checking: This can be
  #   dangerous if someone wants to fill up your stack.
  # * *allow_nan*: If set to true, allow NaN, Infinity, and -Infinity in
  #   defiance of RFC 7159 to be parsed by the Parser. This option defaults
  #   to true.
  # * *create_additions*: If set to false, the Parser doesn't create
  #   additions even if a matching class and create_id was found. This option
  #   defaults to false.
  def parse!(source, opts = {})
    opts = {
      :max_nesting  => false,
      :allow_nan    => true
    }.merge(opts)
    Parser.new(source, **(opts||{})).parse
  end

  # Generate a JSON document from the Ruby data structure _obj_ and return
  # it. _state_ is * a JSON::State object,
  # * or a Hash like object (responding to to_hash),
  # * an object convertible into a hash by a to_h method,
  # that is used as or to configure a State object.
  #
  # It defaults to a state object, that creates the shortest possible JSON text
  # in one line, checks for circular data structures and doesn't allow NaN,
  # Infinity, and -Infinity.
  #
  # A _state_ hash can have the following keys:
  # * *indent*: a string used to indent levels (default: ''),
  # * *space*: a string that is put after, a : or , delimiter (default: ''),
  # * *space_before*: a string that is put before a : pair delimiter (default: ''),
  # * *object_nl*: a string that is put at the end of a JSON object (default: ''),
  # * *array_nl*: a string that is put at the end of a JSON array (default: ''),
  # * *allow_nan*: true if NaN, Infinity, and -Infinity should be
  #   generated, otherwise an exception is thrown if these values are
  #   encountered. This options defaults to false.
  # * *max_nesting*: The maximum depth of nesting allowed in the data
  #   structures from which JSON is to be generated. Disable depth checking
  #   with :max_nesting => false, it defaults to 100.
  #
  # See also the fast_generate for the fastest creation method with the least
  # amount of sanity checks, and the pretty_generate method for some
  # defaults for pretty output.
  def generate(obj, opts = nil)
    if State === opts
      state, opts = opts, nil
    else
      state = SAFE_STATE_PROTOTYPE.dup
    end
    if opts
      if opts.respond_to? :to_hash
        opts = opts.to_hash
      elsif opts.respond_to? :to_h
        opts = opts.to_h
      else
        raise TypeError, "can't convert #{opts.class} into Hash"
      end
      state = state.configure(opts)
    end
    state.generate(obj)
  end

  # :stopdoc:
  # I want to deprecate these later, so I'll first be silent about them, and
  # later delete them.
  alias unparse generate
  module_function :unparse
  # :startdoc:

  # Generate a JSON document from the Ruby data structure _obj_ and return it.
  # This method disables the checks for circles in Ruby objects.
  #
  # *WARNING*: Be careful not to pass any Ruby data structures with circles as
  # _obj_ argument because this will cause JSON to go into an infinite loop.
  def fast_generate(obj, opts = nil)
    if State === opts
      state, opts = opts, nil
    else
      state = FAST_STATE_PROTOTYPE.dup
    end
    if opts
      if opts.respond_to? :to_hash
        opts = opts.to_hash
      elsif opts.respond_to? :to_h
        opts = opts.to_h
      else
        raise TypeError, "can't convert #{opts.class} into Hash"
      end
      state.configure(opts)
    end
    state.generate(obj)
  end

  # :stopdoc:
  # I want to deprecate these later, so I'll first be silent about them, and later delete them.
  alias fast_unparse fast_generate
  module_function :fast_unparse
  # :startdoc:

  # Generate a JSON document from the Ruby data structure _obj_ and return it.
  # The returned document is a prettier form of the document returned by
  # #unparse.
  #
  # The _opts_ argument can be used to configure the generator. See the
  # generate method for a more detailed explanation.
  def pretty_generate(obj, opts = nil)
    if State === opts
      state, opts = opts, nil
    else
      state = PRETTY_STATE_PROTOTYPE.dup
    end
    if opts
      if opts.respond_to? :to_hash
        opts = opts.to_hash
      elsif opts.respond_to? :to_h
        opts = opts.to_h
      else
        raise TypeError, "can't convert #{opts.class} into Hash"
      end
      state.configure(opts)
    end
    state.generate(obj)
  end

  # :stopdoc:
  # I want to deprecate these later, so I'll first be silent about them, and later delete them.
  alias pretty_unparse pretty_generate
  module_function :pretty_unparse
  # :startdoc:

  class << self
    # The global default options for the JSON.load method:
    #  :max_nesting: false
    #  :allow_nan:   true
    #  :allow_blank:  true
    attr_accessor :load_default_options
  end
  self.load_default_options = {
    :max_nesting      => false,
    :allow_nan        => true,
    :allow_blank       => true,
    :create_additions => true,
  }

  # Load a ruby data structure from a JSON _source_ and return it. A source can
  # either be a string-like object, an IO-like object, or an object responding
  # to the read method. If _proc_ was given, it will be called with any nested
  # Ruby object as an argument recursively in depth first order. To modify the
  # default options pass in the optional _options_ argument as well.
  #
  # BEWARE: This method is meant to serialise data from trusted user input,
  # like from your own database server or clients under your control, it could
  # be dangerous to allow untrusted users to pass JSON sources into it. The
  # default options for the parser can be changed via the load_default_options
  # method.
  #
  # This method is part of the implementation of the load/dump interface of
  # Marshal and YAML.
  def load(source, proc = nil, options = {})
    opts = load_default_options.merge options
    if source.respond_to? :to_str
      source = source.to_str
    elsif source.respond_to? :to_io
      source = source.to_io.read
    elsif source.respond_to?(:read)
      source = source.read
    end
    if opts[:allow_blank] && (source.nil? || source.empty?)
      source = 'null'
    end
    result = parse(source, opts)
    recurse_proc(result, &proc) if proc
    result
  end

  # Recursively calls passed _Proc_ if the parsed data structure is an _Array_ or _Hash_
  def recurse_proc(result, &proc)
    case result
    when Array
      result.each { |x| recurse_proc x, &proc }
      proc.call result
    when Hash
      result.each { |x, y| recurse_proc x, &proc; recurse_proc y, &proc }
      proc.call result
    else
      proc.call result
    end
  end

  alias restore load
  module_function :restore

  class << self
    # The global default options for the JSON.dump method:
    #  :max_nesting: false
    #  :allow_nan:   true
    #  :allow_blank: true
    attr_accessor :dump_default_options
  end
  self.dump_default_options = {
    :max_nesting => false,
    :allow_nan   => true,
  }

  # Dumps _obj_ as a JSON string, i.e. calls generate on the object and returns
  # the result.
  #
  # If anIO (an IO-like object or an object that responds to the write method)
  # was given, the resulting JSON is written to it.
  #
  # If the number of nested arrays or objects exceeds _limit_, an ArgumentError
  # exception is raised. This argument is similar (but not exactly the
  # same!) to the _limit_ argument in Marshal.dump.
  #
  # The default options for the generator can be changed via the
  # dump_default_options method.
  #
  # This method is part of the implementation of the load/dump interface of
  # Marshal and YAML.
  def dump(obj, anIO = nil, limit = nil)
    if anIO and limit.nil?
      anIO = anIO.to_io if anIO.respond_to?(:to_io)
      unless anIO.respond_to?(:write)
        limit = anIO
        anIO = nil
      end
    end
    opts = JSON.dump_default_options
    opts = opts.merge(:max_nesting => limit) if limit
    result = generate(obj, opts)
    if anIO
      anIO.write result
      anIO
    else
      result
    end
  rescue JSON::NestingError
    raise ArgumentError, "exceed depth limit"
  end

  # Encodes string using Ruby's _String.encode_
  def self.iconv(to, from, string)
    string.encode(to, from)
  end
end

module ::Kernel
  private

  # Outputs _objs_ to STDOUT as JSON strings in the shortest form, that is in
  # one line.
  def j(*objs)
    objs.each do |obj|
      puts JSON::generate(obj, :allow_nan => true, :max_nesting => false)
    end
    nil
  end

  # Outputs _objs_ to STDOUT as JSON strings in a pretty format, with
  # indentation and over many lines.
  def jj(*objs)
    objs.each do |obj|
      puts JSON::pretty_generate(obj, :allow_nan => true, :max_nesting => false)
    end
    nil
  end

  # If _object_ is string-like, parse the string and return the parsed result as
  # a Ruby data structure. Otherwise, generate a JSON text from the Ruby data
  # structure object and return it.
  #
  # The _opts_ argument is passed through to generate/parse respectively. See
  # generate and parse for their documentation.
  def JSON(object, *args)
    if object.respond_to? :to_str
      JSON.parse(object.to_str, args.first)
    else
      JSON.generate(object, args.first)
    end
  end
end

# Extends any Class to include _json_creatable?_ method.
class ::Class
  # Returns true if this class can be used to create an instance
  # from a serialised JSON string. The class has to implement a class
  # method _json_create_ that expects a hash as first parameter. The hash
  # should include the required data.
  def json_creatable?
    respond_to?(:json_create)
  end
end
PKDH[����&share/gems/gems/json-2.3.0/lib/json.rbnu�[���#frozen_string_literal: false
require 'json/common'

##
# = JavaScript Object Notation (JSON)
#
# JSON is a lightweight data-interchange format. It is easy for us
# humans to read and write. Plus, equally simple for machines to generate or parse.
# JSON is completely language agnostic, making it the ideal interchange format.
#
# Built on two universally available structures:
#   1. A collection of name/value pairs. Often referred to as an _object_, hash table, record, struct, keyed list, or associative array.
#   2. An ordered list of values. More commonly called an _array_, vector, sequence or list.
#
# To read more about JSON visit: http://json.org
#
# == Parsing JSON
#
# To parse a JSON string received by another application or generated within
# your existing application:
#
#   require 'json'
#
#   my_hash = JSON.parse('{"hello": "goodbye"}')
#   puts my_hash["hello"] => "goodbye"
#
# Notice the extra quotes <tt>''</tt> around the hash notation. Ruby expects
# the argument to be a string and can't convert objects like a hash or array.
#
# Ruby converts your string into a hash
#
# == Generating JSON
#
# Creating a JSON string for communication or serialization is
# just as simple.
#
#   require 'json'
#
#   my_hash = {:hello => "goodbye"}
#   puts JSON.generate(my_hash) => "{\"hello\":\"goodbye\"}"
#
# Or an alternative way:
#
#   require 'json'
#   puts {:hello => "goodbye"}.to_json => "{\"hello\":\"goodbye\"}"
#
# <tt>JSON.generate</tt> only allows objects or arrays to be converted
# to JSON syntax. <tt>to_json</tt>, however, accepts many Ruby classes
# even though it acts only as a method for serialization:
#
#   require 'json'
#
#   1.to_json => "1"
#
module JSON
  require 'json/version'

  begin
    require 'json/ext'
  rescue LoadError
    require 'json/pure'
  end
end
PKDH[�=w��!share/gems/gems/irb-1.2.6/exe/irbnuȯ��#!/usr/bin/ruby
#
#   irb.rb - interactive ruby
#   	$Release Version: 0.9.6 $
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#

require "irb"

IRB.start(__FILE__)
PKDH[���S�k�k$share/gems/gems/irb-1.2.6/lib/irb.rbnu�[���# frozen_string_literal: false
#
#   irb.rb - irb main module
#       $Release Version: 0.9.6 $
#       $Revision$
#       by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require "ripper"
require "reline"

require_relative "irb/init"
require_relative "irb/context"
require_relative "irb/extend-command"

require_relative "irb/ruby-lex"
require_relative "irb/input-method"
require_relative "irb/locale"
require_relative "irb/color"

require_relative "irb/version"
require_relative "irb/easter-egg"

# IRB stands for "interactive Ruby" and is a tool to interactively execute Ruby
# expressions read from the standard input.
#
# The +irb+ command from your shell will start the interpreter.
#
# == Usage
#
# Use of irb is easy if you know Ruby.
#
# When executing irb, prompts are displayed as follows. Then, enter the Ruby
# expression. An input is executed when it is syntactically complete.
#
#     $ irb
#     irb(main):001:0> 1+2
#     #=> 3
#     irb(main):002:0> class Foo
#     irb(main):003:1>  def foo
#     irb(main):004:2>    print 1
#     irb(main):005:2>  end
#     irb(main):006:1> end
#     #=> nil
#
# The singleline editor module or multiline editor module can be used with irb.
# Use of multiline editor is default if it's installed.
#
# == Command line options
#
#   Usage:  irb.rb [options] [programfile] [arguments]
#     -f                Suppress read of ~/.irbrc
#     -d                Set $DEBUG to true (same as `ruby -d')
#     -r load-module    Same as `ruby -r'
#     -I path           Specify $LOAD_PATH directory
#     -U                Same as `ruby -U`
#     -E enc            Same as `ruby -E`
#     -w                Same as `ruby -w`
#     -W[level=2]       Same as `ruby -W`
#     --inspect         Use `inspect' for output (default except for bc mode)
#     --noinspect       Don't use inspect for output
#     --multiline       Use multiline editor module
#     --nomultiline     Don't use multiline editor module
#     --singleline      Use singleline editor module
#     --nosingleline    Don't use singleline editor module
#     --colorize        Use colorization
#     --nocolorize      Don't use colorization
#     --prompt prompt-mode
#     --prompt-mode prompt-mode
#                       Switch prompt mode. Pre-defined prompt modes are
#                       `default', `simple', `xmp' and `inf-ruby'
#     --inf-ruby-mode   Use prompt appropriate for inf-ruby-mode on emacs.
#                       Suppresses --multiline and --singleline.
#     --simple-prompt   Simple prompt mode
#     --noprompt        No prompt mode
#     --tracer          Display trace for each execution of commands.
#     --back-trace-limit n
#                       Display backtrace top n and tail n. The default
#                       value is 16.
#     -v, --version     Print the version of irb
#
# == Configuration
#
# IRB reads from <code>~/.irbrc</code> when it's invoked.
#
# If <code>~/.irbrc</code> doesn't exist, +irb+ will try to read in the following order:
#
# * +.irbrc+
# * +irb.rc+
# * +_irbrc+
# * <code>$irbrc</code>
#
# The following are alternatives to the command line options. To use them type
# as follows in an +irb+ session:
#
#     IRB.conf[:IRB_NAME]="irb"
#     IRB.conf[:INSPECT_MODE]=nil
#     IRB.conf[:IRB_RC] = nil
#     IRB.conf[:BACK_TRACE_LIMIT]=16
#     IRB.conf[:USE_LOADER] = false
#     IRB.conf[:USE_MULTILINE] = nil
#     IRB.conf[:USE_SINGLELINE] = nil
#     IRB.conf[:USE_COLORIZE] = true
#     IRB.conf[:USE_TRACER] = false
#     IRB.conf[:IGNORE_SIGINT] = true
#     IRB.conf[:IGNORE_EOF] = false
#     IRB.conf[:PROMPT_MODE] = :DEFAULT
#     IRB.conf[:PROMPT] = {...}
#
# === Auto indentation
#
# To disable auto-indent mode in irb, add the following to your +.irbrc+:
#
#     IRB.conf[:AUTO_INDENT] = false
#
# === Autocompletion
#
# To enable autocompletion for irb, add the following to your +.irbrc+:
#
#     require 'irb/completion'
#
# === History
#
# By default, irb will store the last 1000 commands you used in
# <code>IRB.conf[:HISTORY_FILE]</code> (<code>~/.irb_history</code> by default).
#
# If you want to disable history, add the following to your +.irbrc+:
#
#     IRB.conf[:SAVE_HISTORY] = nil
#
# See IRB::Context#save_history= for more information.
#
# The history of _results_ of commands evaluated is not stored by default,
# but can be turned on to be stored with this +.irbrc+ setting:
#
#     IRB.conf[:EVAL_HISTORY] = <number>
#
# See IRB::Context#eval_history= and History class. The history of command
# results is not permanently saved in any file.
#
# == Customizing the IRB Prompt
#
# In order to customize the prompt, you can change the following Hash:
#
#     IRB.conf[:PROMPT]
#
# This example can be used in your +.irbrc+
#
#     IRB.conf[:PROMPT][:MY_PROMPT] = { # name of prompt mode
#       :AUTO_INDENT => false,          # disables auto-indent mode
#       :PROMPT_I =>  ">> ",		# simple prompt
#       :PROMPT_S => nil,		# prompt for continuated strings
#       :PROMPT_C => nil,		# prompt for continuated statement
#       :RETURN => "    ==>%s\n"	# format to return value
#     }
#
#     IRB.conf[:PROMPT_MODE] = :MY_PROMPT
#
# Or, invoke irb with the above prompt mode by:
#
#     irb --prompt my-prompt
#
# Constants +PROMPT_I+, +PROMPT_S+ and +PROMPT_C+ specify the format. In the
# prompt specification, some special strings are available:
#
#     %N    # command name which is running
#     %m    # to_s of main object (self)
#     %M    # inspect of main object (self)
#     %l    # type of string(", ', /, ]), `]' is inner %w[...]
#     %NNi  # indent level. NN is digits and means as same as printf("%NNd").
#           # It can be omitted
#     %NNn  # line number.
#     %%    # %
#
# For instance, the default prompt mode is defined as follows:
#
#     IRB.conf[:PROMPT_MODE][:DEFAULT] = {
#       :PROMPT_I => "%N(%m):%03n:%i> ",
#       :PROMPT_N => "%N(%m):%03n:%i> ",
#       :PROMPT_S => "%N(%m):%03n:%i%l ",
#       :PROMPT_C => "%N(%m):%03n:%i* ",
#       :RETURN => "%s\n" # used to printf
#     }
#
# irb comes with a number of available modes:
#
#   # :NULL:
#   #   :PROMPT_I:
#   #   :PROMPT_N:
#   #   :PROMPT_S:
#   #   :PROMPT_C:
#   #   :RETURN: |
#   #     %s
#   # :DEFAULT:
#   #   :PROMPT_I: ! '%N(%m):%03n:%i> '
#   #   :PROMPT_N: ! '%N(%m):%03n:%i> '
#   #   :PROMPT_S: ! '%N(%m):%03n:%i%l '
#   #   :PROMPT_C: ! '%N(%m):%03n:%i* '
#   #   :RETURN: |
#   #     => %s
#   # :CLASSIC:
#   #   :PROMPT_I: ! '%N(%m):%03n:%i> '
#   #   :PROMPT_N: ! '%N(%m):%03n:%i> '
#   #   :PROMPT_S: ! '%N(%m):%03n:%i%l '
#   #   :PROMPT_C: ! '%N(%m):%03n:%i* '
#   #   :RETURN: |
#   #     %s
#   # :SIMPLE:
#   #   :PROMPT_I: ! '>> '
#   #   :PROMPT_N: ! '>> '
#   #   :PROMPT_S:
#   #   :PROMPT_C: ! '?> '
#   #   :RETURN: |
#   #     => %s
#   # :INF_RUBY:
#   #   :PROMPT_I: ! '%N(%m):%03n:%i> '
#   #   :PROMPT_N:
#   #   :PROMPT_S:
#   #   :PROMPT_C:
#   #   :RETURN: |
#   #     %s
#   #   :AUTO_INDENT: true
#   # :XMP:
#   #   :PROMPT_I:
#   #   :PROMPT_N:
#   #   :PROMPT_S:
#   #   :PROMPT_C:
#   #   :RETURN: |2
#   #         ==>%s
#
# == Restrictions
#
# Because irb evaluates input immediately after it is syntactically complete,
# the results may be slightly different than directly using Ruby.
#
# == IRB Sessions
#
# IRB has a special feature, that allows you to manage many sessions at once.
#
# You can create new sessions with Irb.irb, and get a list of current sessions
# with the +jobs+ command in the prompt.
#
# === Commands
#
# JobManager provides commands to handle the current sessions:
#
#   jobs    # List of current sessions
#   fg      # Switches to the session of the given number
#   kill    # Kills the session with the given number
#
# The +exit+ command, or ::irb_exit, will quit the current session and call any
# exit hooks with IRB.irb_at_exit.
#
# A few commands for loading files within the session are also available:
#
# +source+::
#   Loads a given file in the current session and displays the source lines,
#   see IrbLoader#source_file
# +irb_load+::
#   Loads the given file similarly to Kernel#load, see IrbLoader#irb_load
# +irb_require+::
#   Loads the given file similarly to Kernel#require
#
# === Configuration
#
# The command line options, or IRB.conf, specify the default behavior of
# Irb.irb.
#
# On the other hand, each conf in IRB@Command+line+options is used to
# individually configure IRB.irb.
#
# If a proc is set for <code>IRB.conf[:IRB_RC]</code>, its will be invoked after execution
# of that proc with the context of the current session as its argument. Each
# session can be configured using this mechanism.
#
# === Session variables
#
# There are a few variables in every Irb session that can come in handy:
#
# <code>_</code>::
#   The value command executed, as a local variable
# <code>__</code>::
#   The history of evaluated commands. Available only if
#   <code>IRB.conf[:EVAL_HISTORY]</code> is not +nil+ (which is the default).
#   See also IRB::Context#eval_history= and IRB::History.
# <code>__[line_no]</code>::
#   Returns the evaluation value at the given line number, +line_no+.
#   If +line_no+ is a negative, the return value +line_no+ many lines before
#   the most recent return value.
#
# === Example using IRB Sessions
#
#   # invoke a new session
#   irb(main):001:0> irb
#   # list open sessions
#   irb.1(main):001:0> jobs
#     #0->irb on main (#<Thread:0x400fb7e4> : stop)
#     #1->irb#1 on main (#<Thread:0x40125d64> : running)
#
#   # change the active session
#   irb.1(main):002:0> fg 0
#   # define class Foo in top-level session
#   irb(main):002:0> class Foo;end
#   # invoke a new session with the context of Foo
#   irb(main):003:0> irb Foo
#   # define Foo#foo
#   irb.2(Foo):001:0> def foo
#   irb.2(Foo):002:1>   print 1
#   irb.2(Foo):003:1> end
#
#   # change the active session
#   irb.2(Foo):004:0> fg 0
#   # list open sessions
#   irb(main):004:0> jobs
#     #0->irb on main (#<Thread:0x400fb7e4> : running)
#     #1->irb#1 on main (#<Thread:0x40125d64> : stop)
#     #2->irb#2 on Foo (#<Thread:0x4011d54c> : stop)
#   # check if Foo#foo is available
#   irb(main):005:0> Foo.instance_methods #=> [:foo, ...]
#
#   # change the active session
#   irb(main):006:0> fg 2
#   # define Foo#bar in the context of Foo
#   irb.2(Foo):005:0> def bar
#   irb.2(Foo):006:1>  print "bar"
#   irb.2(Foo):007:1> end
#   irb.2(Foo):010:0>  Foo.instance_methods #=> [:bar, :foo, ...]
#
#   # change the active session
#   irb.2(Foo):011:0> fg 0
#   irb(main):007:0> f = Foo.new  #=> #<Foo:0x4010af3c>
#   # invoke a new session with the context of f (instance of Foo)
#   irb(main):008:0> irb f
#   # list open sessions
#   irb.3(<Foo:0x4010af3c>):001:0> jobs
#     #0->irb on main (#<Thread:0x400fb7e4> : stop)
#     #1->irb#1 on main (#<Thread:0x40125d64> : stop)
#     #2->irb#2 on Foo (#<Thread:0x4011d54c> : stop)
#     #3->irb#3 on #<Foo:0x4010af3c> (#<Thread:0x4010a1e0> : running)
#   # evaluate f.foo
#   irb.3(<Foo:0x4010af3c>):002:0> foo #=> 1 => nil
#   # evaluate f.bar
#   irb.3(<Foo:0x4010af3c>):003:0> bar #=> bar => nil
#   # kill jobs 1, 2, and 3
#   irb.3(<Foo:0x4010af3c>):004:0> kill 1, 2, 3
#   # list open sessions, should only include main session
#   irb(main):009:0> jobs
#     #0->irb on main (#<Thread:0x400fb7e4> : running)
#   # quit irb
#   irb(main):010:0> exit
module IRB

  # An exception raised by IRB.irb_abort
  class Abort < Exception;end

  @CONF = {}


  # Displays current configuration.
  #
  # Modifying the configuration is achieved by sending a message to IRB.conf.
  #
  # See IRB@Configuration for more information.
  def IRB.conf
    @CONF
  end

  # Returns the current version of IRB, including release version and last
  # updated date.
  def IRB.version
    if v = @CONF[:VERSION] then return v end

    @CONF[:VERSION] = format("irb %s (%s)", @RELEASE_VERSION, @LAST_UPDATE_DATE)
  end

  # The current IRB::Context of the session, see IRB.conf
  #
  #   irb
  #   irb(main):001:0> IRB.CurrentContext.irb_name = "foo"
  #   foo(main):002:0> IRB.conf[:MAIN_CONTEXT].irb_name #=> "foo"
  def IRB.CurrentContext
    IRB.conf[:MAIN_CONTEXT]
  end

  # Initializes IRB and creates a new Irb.irb object at the +TOPLEVEL_BINDING+
  def IRB.start(ap_path = nil)
    STDOUT.sync = true
    $0 = File::basename(ap_path, ".rb") if ap_path

    IRB.setup(ap_path)

    if @CONF[:SCRIPT]
      irb = Irb.new(nil, @CONF[:SCRIPT])
    else
      irb = Irb.new
    end
    irb.run(@CONF)
  end

  # Calls each event hook of <code>IRB.conf[:TA_EXIT]</code> when the current session quits.
  def IRB.irb_at_exit
    @CONF[:AT_EXIT].each{|hook| hook.call}
  end

  # Quits irb
  def IRB.irb_exit(irb, ret)
    throw :IRB_EXIT, ret
  end

  # Aborts then interrupts irb.
  #
  # Will raise an Abort exception, or the given +exception+.
  def IRB.irb_abort(irb, exception = Abort)
    if defined? Thread
      irb.context.thread.raise exception, "abort then interrupt!"
    else
      raise exception, "abort then interrupt!"
    end
  end

  class Irb
    ASSIGNMENT_NODE_TYPES = [
      # Local, instance, global, class, constant, instance, and index assignment:
      #   "foo = bar",
      #   "@foo = bar",
      #   "$foo = bar",
      #   "@@foo = bar",
      #   "::Foo = bar",
      #   "a::Foo = bar",
      #   "Foo = bar"
      #   "foo.bar = 1"
      #   "foo[1] = bar"
      :assign,

      # Operation assignment:
      #   "foo += bar"
      #   "foo -= bar"
      #   "foo ||= bar"
      #   "foo &&= bar"
      :opassign,

      # Multiple assignment:
      #   "foo, bar = 1, 2
      :massign,
    ]
    # Note: instance and index assignment expressions could also be written like:
    # "foo.bar=(1)" and "foo.[]=(1, bar)", when expressed that way, the former
    # be parsed as :assign and echo will be suppressed, but the latter is
    # parsed as a :method_add_arg and the output won't be suppressed

    # Creates a new irb session
    def initialize(workspace = nil, input_method = nil)
      @context = Context.new(self, workspace, input_method)
      @context.main.extend ExtendCommandBundle
      @signal_status = :IN_IRB
      @scanner = RubyLex.new
    end

    def run(conf = IRB.conf)
      conf[:IRB_RC].call(context) if conf[:IRB_RC]
      conf[:MAIN_CONTEXT] = context

      trap("SIGINT") do
        signal_handle
      end

      begin
        catch(:IRB_EXIT) do
          eval_input
        end
      ensure
        conf[:AT_EXIT].each{|hook| hook.call}
      end
    end

    # Returns the current context of this irb session
    attr_reader :context
    # The lexer used by this irb session
    attr_accessor :scanner

    # Evaluates input for this session.
    def eval_input
      exc = nil

      @scanner.set_prompt do
        |ltype, indent, continue, line_no|
        if ltype
          f = @context.prompt_s
        elsif continue
          f = @context.prompt_c
        elsif indent > 0
          f = @context.prompt_n
        else
          f = @context.prompt_i
        end
        f = "" unless f
        if @context.prompting?
          @context.io.prompt = p = prompt(f, ltype, indent, line_no)
        else
          @context.io.prompt = p = ""
        end
        if @context.auto_indent_mode and !@context.io.respond_to?(:auto_indent)
          unless ltype
            prompt_i = @context.prompt_i.nil? ? "" : @context.prompt_i
            ind = prompt(prompt_i, ltype, indent, line_no)[/.*\z/].size +
              indent * 2 - p.size
            ind += 2 if continue
            @context.io.prompt = p + " " * ind if ind > 0
          end
        end
        @context.io.prompt
      end

      @scanner.set_input(@context.io) do
        signal_status(:IN_INPUT) do
          if l = @context.io.gets
            print l if @context.verbose?
          else
            if @context.ignore_eof? and @context.io.readable_after_eof?
              l = "\n"
              if @context.verbose?
                printf "Use \"exit\" to leave %s\n", @context.ap_name
              end
            else
              print "\n"
            end
          end
          l
        end
      end

      @scanner.set_auto_indent(@context) if @context.auto_indent_mode

      @scanner.each_top_level_statement do |line, line_no|
        signal_status(:IN_EVAL) do
          begin
            line.untaint if RUBY_VERSION < '2.7'
            @context.evaluate(line, line_no, exception: exc)
            if @context.echo?
              if assignment_expression?(line)
                if @context.echo_on_assignment?
                  output_value(@context.omit_on_assignment?)
                end
              else
                output_value
              end
            end
          rescue Interrupt => exc
          rescue SystemExit, SignalException
            raise
          rescue Exception => exc
          else
            exc = nil
            next
          end
          handle_exception(exc)
        end
      end
    end

    def handle_exception(exc)
      if exc.backtrace && exc.backtrace[0] =~ /\/irb(2)?(\/.*|-.*|\.rb)?:/ && exc.class.to_s !~ /^IRB/ &&
         !(SyntaxError === exc) && !(EncodingError === exc)
        # The backtrace of invalid encoding hash (ex. {"\xAE": 1}) raises EncodingError without lineno.
        irb_bug = true
      else
        irb_bug = false
      end

      if STDOUT.tty?
        attr = ATTR_TTY
        print "#{attr[1]}Traceback#{attr[]} (most recent call last):\n"
      else
        attr = ATTR_PLAIN
      end
      messages = []
      lasts = []
      levels = 0
      if exc.backtrace
        count = 0
        exc.backtrace.each do |m|
          m = @context.workspace.filter_backtrace(m) or next unless irb_bug
          count += 1
          if attr == ATTR_TTY
            m = sprintf("%9d: from %s", count, m)
          else
            m = "\tfrom #{m}"
          end
          if messages.size < @context.back_trace_limit
            messages.push(m)
          elsif lasts.size < @context.back_trace_limit
            lasts.push(m).shift
            levels += 1
          end
        end
      end
      if attr == ATTR_TTY
        unless lasts.empty?
          puts lasts.reverse
          printf "... %d levels...\n", levels if levels > 0
        end
        puts messages.reverse
      end
      m = exc.to_s.split(/\n/)
      print "#{attr[1]}#{exc.class} (#{attr[4]}#{m.shift}#{attr[0, 1]})#{attr[]}\n"
      puts m.map {|s| "#{attr[1]}#{s}#{attr[]}\n"}
      if attr == ATTR_PLAIN
        puts messages
        unless lasts.empty?
          puts lasts
          printf "... %d levels...\n", levels if levels > 0
        end
      end
      print "Maybe IRB bug!\n" if irb_bug
    end

    # Evaluates the given block using the given +path+ as the Context#irb_path
    # and +name+ as the Context#irb_name.
    #
    # Used by the irb command +source+, see IRB@IRB+Sessions for more
    # information.
    def suspend_name(path = nil, name = nil)
      @context.irb_path, back_path = path, @context.irb_path if path
      @context.irb_name, back_name = name, @context.irb_name if name
      begin
        yield back_path, back_name
      ensure
        @context.irb_path = back_path if path
        @context.irb_name = back_name if name
      end
    end

    # Evaluates the given block using the given +workspace+ as the
    # Context#workspace.
    #
    # Used by the irb command +irb_load+, see IRB@IRB+Sessions for more
    # information.
    def suspend_workspace(workspace)
      @context.workspace, back_workspace = workspace, @context.workspace
      begin
        yield back_workspace
      ensure
        @context.workspace = back_workspace
      end
    end

    # Evaluates the given block using the given +input_method+ as the
    # Context#io.
    #
    # Used by the irb commands +source+ and +irb_load+, see IRB@IRB+Sessions
    # for more information.
    def suspend_input_method(input_method)
      back_io = @context.io
      @context.instance_eval{@io = input_method}
      begin
        yield back_io
      ensure
        @context.instance_eval{@io = back_io}
      end
    end

    # Evaluates the given block using the given +context+ as the Context.
    def suspend_context(context)
      @context, back_context = context, @context
      begin
        yield back_context
      ensure
        @context = back_context
      end
    end

    # Handler for the signal SIGINT, see Kernel#trap for more information.
    def signal_handle
      unless @context.ignore_sigint?
        print "\nabort!\n" if @context.verbose?
        exit
      end

      case @signal_status
      when :IN_INPUT
        print "^C\n"
        raise RubyLex::TerminateLineInput
      when :IN_EVAL
        IRB.irb_abort(self)
      when :IN_LOAD
        IRB.irb_abort(self, LoadAbort)
      when :IN_IRB
        # ignore
      else
        # ignore other cases as well
      end
    end

    # Evaluates the given block using the given +status+.
    def signal_status(status)
      return yield if @signal_status == :IN_LOAD

      signal_status_back = @signal_status
      @signal_status = status
      begin
        yield
      ensure
        @signal_status = signal_status_back
      end
    end

    def prompt(prompt, ltype, indent, line_no) # :nodoc:
      p = prompt.dup
      p.gsub!(/%([0-9]+)?([a-zA-Z])/) do
        case $2
        when "N"
          @context.irb_name
        when "m"
          @context.main.to_s
        when "M"
          @context.main.inspect
        when "l"
          ltype
        when "i"
          if indent < 0
            if $1
              "-".rjust($1.to_i)
            else
              "-"
            end
          else
            if $1
              format("%" + $1 + "d", indent)
            else
              indent.to_s
            end
          end
        when "n"
          if $1
            format("%" + $1 + "d", line_no)
          else
            line_no.to_s
          end
        when "%"
          "%"
        end
      end
      p
    end

    def output_value(omit = false) # :nodoc:
      str = @context.inspect_last_value
      multiline_p = str.include?("\n")
      if omit
        winwidth = @context.io.winsize.last
        if multiline_p
          first_line = str.split("\n").first
          result = @context.newline_before_multiline_output? ? (@context.return_format % first_line) : first_line
          output_width = Reline::Unicode.calculate_width(result, true)
          diff_size = output_width - Reline::Unicode.calculate_width(first_line, true)
          if diff_size.positive? and output_width > winwidth
            lines, _ = Reline::Unicode.split_by_width(first_line, winwidth - diff_size - 3)
            str = "%s...\e[0m" % lines.first
            multiline_p = false
          else
            str.gsub!(/(\A.*?\n).*/m, "\\1...")
          end
        else
          output_width = Reline::Unicode.calculate_width(@context.return_format % str, true)
          diff_size = output_width - Reline::Unicode.calculate_width(str, true)
          if diff_size.positive? and output_width > winwidth
            lines, _ = Reline::Unicode.split_by_width(str, winwidth - diff_size - 3)
            str = "%s...\e[0m" % lines.first
          end
        end
      end
      if multiline_p && @context.newline_before_multiline_output?
        printf @context.return_format, "\n#{str}"
      else
        printf @context.return_format, str
      end
    end

    # Outputs the local variables to this current session, including
    # #signal_status and #context, using IRB::Locale.
    def inspect
      ary = []
      for iv in instance_variables
        case (iv = iv.to_s)
        when "@signal_status"
          ary.push format("%s=:%s", iv, @signal_status.id2name)
        when "@context"
          ary.push format("%s=%s", iv, eval(iv).__to_s__)
        else
          ary.push format("%s=%s", iv, eval(iv))
        end
      end
      format("#<%s: %s>", self.class, ary.join(", "))
    end

    def assignment_expression?(line)
      # Try to parse the line and check if the last of possibly multiple
      # expressions is an assignment type.

      # If the expression is invalid, Ripper.sexp should return nil which will
      # result in false being returned. Any valid expression should return an
      # s-expression where the second selement of the top level array is an
      # array of parsed expressions. The first element of each expression is the
      # expression's type.
      verbose, $VERBOSE = $VERBOSE, nil
      result = ASSIGNMENT_NODE_TYPES.include?(Ripper.sexp(line)&.dig(1,-1,0))
      $VERBOSE = verbose
      result
    end

    ATTR_TTY = "\e[%sm"
    def ATTR_TTY.[](*a) self % a.join(";"); end
    ATTR_PLAIN = ""
    def ATTR_PLAIN.[](*) self; end
  end

  def @CONF.inspect
    IRB.version unless self[:VERSION]

    array = []
    for k, v in sort{|a1, a2| a1[0].id2name <=> a2[0].id2name}
      case k
      when :MAIN_CONTEXT, :__TMP__EHV__
        array.push format("CONF[:%s]=...myself...", k.id2name)
      when :PROMPT
        s = v.collect{
          |kk, vv|
          ss = vv.collect{|kkk, vvv| ":#{kkk.id2name}=>#{vvv.inspect}"}
          format(":%s=>{%s}", kk.id2name, ss.join(", "))
        }
        array.push format("CONF[:%s]={%s}", k.id2name, s.join(", "))
      else
        array.push format("CONF[:%s]=%s", k.id2name, v.inspect)
      end
    end
    array.join("\n")
  end
end

class Binding
  # Opens an IRB session where +binding.irb+ is called which allows for
  # interactive debugging. You can call any methods or variables available in
  # the current scope, and mutate state if you need to.
  #
  #
  # Given a Ruby file called +potato.rb+ containing the following code:
  #
  #     class Potato
  #       def initialize
  #         @cooked = false
  #         binding.irb
  #         puts "Cooked potato: #{@cooked}"
  #       end
  #     end
  #
  #     Potato.new
  #
  # Running <code>ruby potato.rb</code> will open an IRB session where
  # +binding.irb+ is called, and you will see the following:
  #
  #     $ ruby potato.rb
  #
  #     From: potato.rb @ line 4 :
  #
  #         1: class Potato
  #         2:   def initialize
  #         3:     @cooked = false
  #      => 4:     binding.irb
  #         5:     puts "Cooked potato: #{@cooked}"
  #         6:   end
  #         7: end
  #         8:
  #         9: Potato.new
  #
  #     irb(#<Potato:0x00007feea1916670>):001:0>
  #
  # You can type any valid Ruby code and it will be evaluated in the current
  # context. This allows you to debug without having to run your code repeatedly:
  #
  #     irb(#<Potato:0x00007feea1916670>):001:0> @cooked
  #     => false
  #     irb(#<Potato:0x00007feea1916670>):002:0> self.class
  #     => Potato
  #     irb(#<Potato:0x00007feea1916670>):003:0> caller.first
  #     => ".../2.5.1/lib/ruby/2.5.0/irb/workspace.rb:85:in `eval'"
  #     irb(#<Potato:0x00007feea1916670>):004:0> @cooked = true
  #     => true
  #
  # You can exit the IRB session with the +exit+ command. Note that exiting will
  # resume execution where +binding.irb+ had paused it, as you can see from the
  # output printed to standard output in this example:
  #
  #     irb(#<Potato:0x00007feea1916670>):005:0> exit
  #     Cooked potato: true
  #
  #
  # See IRB@IRB+Usage for more information.
  def irb
    IRB.setup(source_location[0], argv: [])
    workspace = IRB::WorkSpace.new(self)
    STDOUT.print(workspace.code_around_binding)
    binding_irb = IRB::Irb.new(workspace)
    binding_irb.context.irb_path = File.expand_path(source_location[0])
    binding_irb.run(IRB.conf)
  end
end
PKDH[��*\��)share/gems/gems/irb-1.2.6/lib/irb/help.rbnu�[���# frozen_string_literal: false
#
#   irb/help.rb - print usage module
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
#
#
#

require_relative 'magic-file'

module IRB
  # Outputs the irb help message, see IRB@Command+line+options.
  def IRB.print_usage
    lc = IRB.conf[:LC_MESSAGES]
    path = lc.find("irb/help-message")
    space_line = false
    IRB::MagicFile.open(path){|f|
      f.each_line do |l|
        if /^\s*$/ =~ l
          lc.puts l unless space_line
          space_line = true
          next
        end
        space_line = false

        l.sub!(/#.*$/, "")
        next if /^\s*$/ =~ l
        lc.puts l
      end
    }
  end
end
PKDH[��c��1share/gems/gems/irb-1.2.6/lib/irb/src_encoding.rbnu�[���# frozen_string_literal: false
# DO NOT WRITE ANY MAGIC COMMENT HERE.
module IRB
  def self.default_src_encoding
    return __ENCODING__
  end
end
PKDH[)���C=C=,share/gems/gems/irb-1.2.6/lib/irb/context.rbnu�[���# frozen_string_literal: false
#
#   irb/context.rb - irb context
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative "workspace"
require_relative "inspector"
require_relative "input-method"
require_relative "output-method"

module IRB
  # A class that wraps the current state of the irb session, including the
  # configuration of IRB.conf.
  class Context
    # Creates a new IRB context.
    #
    # The optional +input_method+ argument:
    #
    # +nil+::     uses stdin or Reidline or Readline
    # +String+::  uses a File
    # +other+::   uses this as InputMethod
    def initialize(irb, workspace = nil, input_method = nil)
      @irb = irb
      if workspace
        @workspace = workspace
      else
        @workspace = WorkSpace.new
      end
      @thread = Thread.current if defined? Thread

      # copy of default configuration
      @ap_name = IRB.conf[:AP_NAME]
      @rc = IRB.conf[:RC]
      @load_modules = IRB.conf[:LOAD_MODULES]

      if IRB.conf.has_key?(:USE_SINGLELINE)
        @use_singleline = IRB.conf[:USE_SINGLELINE]
      elsif IRB.conf.has_key?(:USE_READLINE) # backward compatibility
        @use_singleline = IRB.conf[:USE_READLINE]
      else
        @use_singleline = nil
      end
      if IRB.conf.has_key?(:USE_MULTILINE)
        @use_multiline = IRB.conf[:USE_MULTILINE]
      elsif IRB.conf.has_key?(:USE_REIDLINE) # backward compatibility
        @use_multiline = IRB.conf[:USE_REIDLINE]
      else
        @use_multiline = nil
      end
      @use_colorize = IRB.conf[:USE_COLORIZE]
      @verbose = IRB.conf[:VERBOSE]
      @io = nil

      self.inspect_mode = IRB.conf[:INSPECT_MODE]
      self.use_tracer = IRB.conf[:USE_TRACER] if IRB.conf[:USE_TRACER]
      self.use_loader = IRB.conf[:USE_LOADER] if IRB.conf[:USE_LOADER]
      self.eval_history = IRB.conf[:EVAL_HISTORY] if IRB.conf[:EVAL_HISTORY]

      @ignore_sigint = IRB.conf[:IGNORE_SIGINT]
      @ignore_eof = IRB.conf[:IGNORE_EOF]

      @back_trace_limit = IRB.conf[:BACK_TRACE_LIMIT]

      self.prompt_mode = IRB.conf[:PROMPT_MODE]

      if IRB.conf[:SINGLE_IRB] or !defined?(IRB::JobManager)
        @irb_name = IRB.conf[:IRB_NAME]
      else
        @irb_name = IRB.conf[:IRB_NAME]+"#"+IRB.JobManager.n_jobs.to_s
      end
      @irb_path = "(" + @irb_name + ")"

      case input_method
      when nil
        @io = nil
        case use_multiline?
        when nil
          if STDIN.tty? && IRB.conf[:PROMPT_MODE] != :INF_RUBY && !use_singleline?
            # Both of multiline mode and singleline mode aren't specified.
            @io = ReidlineInputMethod.new
          else
            @io = nil
          end
        when false
          @io = nil
        when true
          @io = ReidlineInputMethod.new
        end
        unless @io
          case use_singleline?
          when nil
            if (defined?(ReadlineInputMethod) && STDIN.tty? &&
                IRB.conf[:PROMPT_MODE] != :INF_RUBY)
              @io = ReadlineInputMethod.new
            else
              @io = nil
            end
          when false
            @io = nil
          when true
            if defined?(ReadlineInputMethod)
              @io = ReadlineInputMethod.new
            else
              @io = nil
            end
          else
            @io = nil
          end
        end
        @io = StdioInputMethod.new unless @io

      when String
        @io = FileInputMethod.new(input_method)
        @irb_name = File.basename(input_method)
        @irb_path = input_method
      else
        @io = input_method
      end
      self.save_history = IRB.conf[:SAVE_HISTORY] if IRB.conf[:SAVE_HISTORY]

      @echo = IRB.conf[:ECHO]
      if @echo.nil?
        @echo = true
      end

      @echo_on_assignment = IRB.conf[:ECHO_ON_ASSIGNMENT]
      if @echo_on_assignment.nil?
        @echo_on_assignment = true
      end

      @omit_on_assignment = IRB.conf[:OMIT_ON_ASSIGNMENT]
      if @omit_on_assignment.nil?
        @omit_on_assignment = true
      end

      @newline_before_multiline_output = IRB.conf[:NEWLINE_BEFORE_MULTILINE_OUTPUT]
      if @newline_before_multiline_output.nil?
        @newline_before_multiline_output = true
      end
    end

    # The top-level workspace, see WorkSpace#main
    def main
      @workspace.main
    end

    # The toplevel workspace, see #home_workspace
    attr_reader :workspace_home
    # WorkSpace in the current context
    attr_accessor :workspace
    # The current thread in this context
    attr_reader :thread
    # The current input method
    #
    # Can be either StdioInputMethod, ReadlineInputMethod,
    # ReidlineInputMethod, FileInputMethod or other specified when the
    # context is created. See ::new for more # information on +input_method+.
    attr_accessor :io

    # Current irb session
    attr_accessor :irb
    # A copy of the default <code>IRB.conf[:AP_NAME]</code>
    attr_accessor :ap_name
    # A copy of the default <code>IRB.conf[:RC]</code>
    attr_accessor :rc
    # A copy of the default <code>IRB.conf[:LOAD_MODULES]</code>
    attr_accessor :load_modules
    # Can be either name from <code>IRB.conf[:IRB_NAME]</code>, or the number of
    # the current job set by JobManager, such as <code>irb#2</code>
    attr_accessor :irb_name
    # Can be either the #irb_name surrounded by parenthesis, or the
    # +input_method+ passed to Context.new
    attr_accessor :irb_path

    # Whether multiline editor mode is enabled or not.
    #
    # A copy of the default <code>IRB.conf[:USE_MULTILINE]</code>
    attr_reader :use_multiline
    # Whether singleline editor mode is enabled or not.
    #
    # A copy of the default <code>IRB.conf[:USE_SINGLELINE]</code>
    attr_reader :use_singleline
    # Whether colorization is enabled or not.
    #
    # A copy of the default <code>IRB.conf[:USE_COLORIZE]</code>
    attr_reader :use_colorize
    # A copy of the default <code>IRB.conf[:INSPECT_MODE]</code>
    attr_reader :inspect_mode

    # A copy of the default <code>IRB.conf[:PROMPT_MODE]</code>
    attr_reader :prompt_mode
    # Standard IRB prompt
    #
    # See IRB@Customizing+the+IRB+Prompt for more information.
    attr_accessor :prompt_i
    # IRB prompt for continuated strings
    #
    # See IRB@Customizing+the+IRB+Prompt for more information.
    attr_accessor :prompt_s
    # IRB prompt for continuated statement (e.g. immediately after an +if+)
    #
    # See IRB@Customizing+the+IRB+Prompt for more information.
    attr_accessor :prompt_c
    # See IRB@Customizing+the+IRB+Prompt for more information.
    attr_accessor :prompt_n
    # Can be either the default <code>IRB.conf[:AUTO_INDENT]</code>, or the
    # mode set by #prompt_mode=
    #
    # To disable auto-indentation in irb:
    #
    #     IRB.conf[:AUTO_INDENT] = false
    #
    # or
    #
    #     irb_context.auto_indent_mode = false
    #
    # or
    #
    #     IRB.CurrentContext.auto_indent_mode = false
    #
    # See IRB@Configuration for more information.
    attr_accessor :auto_indent_mode
    # The format of the return statement, set by #prompt_mode= using the
    # +:RETURN+ of the +mode+ passed to set the current #prompt_mode.
    attr_accessor :return_format

    # Whether <code>^C</code> (+control-c+) will be ignored or not.
    #
    # If set to +false+, <code>^C</code> will quit irb.
    #
    # If set to +true+,
    #
    # * during input:   cancel input then return to top level.
    # * during execute: abandon current execution.
    attr_accessor :ignore_sigint
    # Whether <code>^D</code> (+control-d+) will be ignored or not.
    #
    # If set to +false+, <code>^D</code> will quit irb.
    attr_accessor :ignore_eof
    # Whether to echo the return value to output or not.
    #
    # Uses <code>IRB.conf[:ECHO]</code> if available, or defaults to +true+.
    #
    #     puts "hello"
    #     # hello
    #     #=> nil
    #     IRB.CurrentContext.echo = false
    #     puts "omg"
    #     # omg
    attr_accessor :echo
    # Whether to echo for assignment expressions
    #
    # Uses <code>IRB.conf[:ECHO_ON_ASSIGNMENT]</code> if available, or defaults to +true+.
    #
    #     a = "omg"
    #     #=> omg
    #     IRB.CurrentContext.echo_on_assignment = false
    #     a = "omg"
    attr_accessor :echo_on_assignment
    # Whether to omit echo for assignment expressions
    #
    # Uses <code>IRB.conf[:OMIT_ON_ASSIGNMENT]</code> if available, or defaults to +true+.
    #
    #     a = [1] * 10
    #     #=> [1, 1, 1, 1, 1, 1, 1, 1, ...
    #     [1] * 10
    #     #=> [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
    #     IRB.CurrentContext.omit_on_assignment = false
    #     a = [1] * 10
    #     #=> [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
    #     [1] * 10
    #     #=> [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
    attr_accessor :omit_on_assignment
    # Whether a newline is put before multiline output.
    #
    # Uses <code>IRB.conf[:NEWLINE_BEFORE_MULTILINE_OUTPUT]</code> if available,
    # or defaults to +true+.
    #
    #     "abc\ndef"
    #     #=>
    #     abc
    #     def
    #     IRB.CurrentContext.newline_before_multiline_output = false
    #     "abc\ndef"
    #     #=> abc
    #     def
    attr_accessor :newline_before_multiline_output
    # Whether verbose messages are displayed or not.
    #
    # A copy of the default <code>IRB.conf[:VERBOSE]</code>
    attr_accessor :verbose

    # The limit of backtrace lines displayed as top +n+ and tail +n+.
    #
    # The default value is 16.
    #
    # Can also be set using the +--back-trace-limit+ command line option.
    #
    # See IRB@Command+line+options for more command line options.
    attr_accessor :back_trace_limit

    # Alias for #use_multiline
    alias use_multiline? use_multiline
    # Alias for #use_singleline
    alias use_singleline? use_singleline
    # backward compatibility
    alias use_reidline use_multiline
    # backward compatibility
    alias use_reidline? use_multiline
    # backward compatibility
    alias use_readline use_singleline
    # backward compatibility
    alias use_readline? use_singleline
    # Alias for #use_colorize
    alias use_colorize? use_colorize
    # Alias for #rc
    alias rc? rc
    alias ignore_sigint? ignore_sigint
    alias ignore_eof? ignore_eof
    alias echo? echo
    alias echo_on_assignment? echo_on_assignment
    alias omit_on_assignment? omit_on_assignment
    alias newline_before_multiline_output? newline_before_multiline_output

    # Returns whether messages are displayed or not.
    def verbose?
      if @verbose.nil?
        if @io.kind_of?(ReidlineInputMethod)
          false
        elsif defined?(ReadlineInputMethod) && @io.kind_of?(ReadlineInputMethod)
          false
        elsif !STDIN.tty? or @io.kind_of?(FileInputMethod)
          true
        else
          false
        end
      else
        @verbose
      end
    end

    # Whether #verbose? is +true+, and +input_method+ is either
    # StdioInputMethod or ReidlineInputMethod or ReadlineInputMethod, see #io
    # for more information.
    def prompting?
      verbose? || (STDIN.tty? && @io.kind_of?(StdioInputMethod) ||
                   @io.kind_of?(ReidlineInputMethod) ||
                   (defined?(ReadlineInputMethod) && @io.kind_of?(ReadlineInputMethod)))
    end

    # The return value of the last statement evaluated.
    attr_reader :last_value

    # Sets the return value from the last statement evaluated in this context
    # to #last_value.
    def set_last_value(value)
      @last_value = value
      @workspace.local_variable_set :_, value
    end

    # Sets the +mode+ of the prompt in this context.
    #
    # See IRB@Customizing+the+IRB+Prompt for more information.
    def prompt_mode=(mode)
      @prompt_mode = mode
      pconf = IRB.conf[:PROMPT][mode]
      @prompt_i = pconf[:PROMPT_I]
      @prompt_s = pconf[:PROMPT_S]
      @prompt_c = pconf[:PROMPT_C]
      @prompt_n = pconf[:PROMPT_N]
      @return_format = pconf[:RETURN]
      if ai = pconf.include?(:AUTO_INDENT)
        @auto_indent_mode = ai
      else
        @auto_indent_mode = IRB.conf[:AUTO_INDENT]
      end
    end

    # Whether #inspect_mode is set or not, see #inspect_mode= for more detail.
    def inspect?
      @inspect_mode.nil? or @inspect_mode
    end

    # Whether #io uses a File for the +input_method+ passed when creating the
    # current context, see ::new
    def file_input?
      @io.class == FileInputMethod
    end

    # Specifies the inspect mode with +opt+:
    #
    # +true+::  display +inspect+
    # +false+:: display +to_s+
    # +nil+::   inspect mode in non-math mode,
    #           non-inspect mode in math mode
    #
    # See IRB::Inspector for more information.
    #
    # Can also be set using the +--inspect+ and +--noinspect+ command line
    # options.
    #
    # See IRB@Command+line+options for more command line options.
    def inspect_mode=(opt)

      if i = Inspector::INSPECTORS[opt]
        @inspect_mode = opt
        @inspect_method = i
        i.init
      else
        case opt
        when nil
          if Inspector.keys_with_inspector(Inspector::INSPECTORS[true]).include?(@inspect_mode)
            self.inspect_mode = false
          elsif Inspector.keys_with_inspector(Inspector::INSPECTORS[false]).include?(@inspect_mode)
            self.inspect_mode = true
          else
            puts "Can't switch inspect mode."
            return
          end
        when /^\s*\{.*\}\s*$/
          begin
            inspector = eval "proc#{opt}"
          rescue Exception
            puts "Can't switch inspect mode(#{opt})."
            return
          end
          self.inspect_mode = inspector
        when Proc
          self.inspect_mode = IRB::Inspector(opt)
        when Inspector
          prefix = "usr%d"
          i = 1
          while Inspector::INSPECTORS[format(prefix, i)]; i += 1; end
          @inspect_mode = format(prefix, i)
          @inspect_method = opt
          Inspector.def_inspector(format(prefix, i), @inspect_method)
        else
          puts "Can't switch inspect mode(#{opt})."
          return
        end
      end
      print "Switch to#{unless @inspect_mode; ' non';end} inspect mode.\n" if verbose?
      @inspect_mode
    end

    def evaluate(line, line_no, exception: nil) # :nodoc:
      @line_no = line_no
      if exception
        line_no -= 1
        line = "begin ::Kernel.raise _; rescue _.class\n#{line}\n""end"
        @workspace.local_variable_set(:_, exception)
      end
      set_last_value(@workspace.evaluate(self, line, irb_path, line_no))
    end

    def inspect_last_value # :nodoc:
      @inspect_method.inspect_value(@last_value)
    end

    alias __exit__ exit
    # Exits the current session, see IRB.irb_exit
    def exit(ret = 0)
      IRB.irb_exit(@irb, ret)
    end

    NOPRINTING_IVARS = ["@last_value"] # :nodoc:
    NO_INSPECTING_IVARS = ["@irb", "@io"] # :nodoc:
    IDNAME_IVARS = ["@prompt_mode"] # :nodoc:

    alias __inspect__ inspect
    def inspect # :nodoc:
      array = []
      for ivar in instance_variables.sort{|e1, e2| e1 <=> e2}
        ivar = ivar.to_s
        name = ivar.sub(/^@(.*)$/, '\1')
        val = instance_eval(ivar)
        case ivar
        when *NOPRINTING_IVARS
          array.push format("conf.%s=%s", name, "...")
        when *NO_INSPECTING_IVARS
          array.push format("conf.%s=%s", name, val.to_s)
        when *IDNAME_IVARS
          array.push format("conf.%s=:%s", name, val.id2name)
        else
          array.push format("conf.%s=%s", name, val.inspect)
        end
      end
      array.join("\n")
    end
    alias __to_s__ to_s
    alias to_s inspect
  end
end
PKDH[t��(share/gems/gems/irb-1.2.6/lib/irb/xmp.rbnu�[���# frozen_string_literal: false
#
#   xmp.rb - irb version of gotoken xmp
#   	$Release Version: 0.9$
#   	$Revision$
#   	by Keiju ISHITSUKA(Nippon Rational Inc.)
#
# --
#
#
#

require_relative "../irb"
require_relative "frame"

# An example printer for irb.
#
# It's much like the standard library PrettyPrint, that shows the value of each
# expression as it runs.
#
# In order to use this library, you must first require it:
#
#     require 'irb/xmp'
#
# Now, you can take advantage of the Object#xmp convenience method.
#
#     xmp <<END
#       foo = "bar"
#       baz = 42
#     END
#     #=> foo = "bar"
#       #==>"bar"
#     #=> baz = 42
#       #==>42
#
# You can also create an XMP object, with an optional binding to print
# expressions in the given binding:
#
#     ctx = binding
#     x = XMP.new ctx
#     x.puts
#     #=> today = "a good day"
#       #==>"a good day"
#     ctx.eval 'today # is what?'
#     #=> "a good day"
class XMP

  # Creates a new XMP object.
  #
  # The top-level binding or, optional +bind+ parameter will be used when
  # creating the workspace. See WorkSpace.new for more information.
  #
  # This uses the +:XMP+ prompt mode, see IRB@Customizing+the+IRB+Prompt for
  # full detail.
  def initialize(bind = nil)
    IRB.init_config(nil)

    IRB.conf[:PROMPT_MODE] = :XMP

    bind = IRB::Frame.top(1) unless bind
    ws = IRB::WorkSpace.new(bind)
    @io = StringInputMethod.new
    @irb = IRB::Irb.new(ws, @io)
    @irb.context.ignore_sigint = false

    IRB.conf[:MAIN_CONTEXT] = @irb.context
  end

  # Evaluates the given +exps+, for example:
  #
  #   require 'irb/xmp'
  #   x = XMP.new
  #
  #   x.puts '{:a => 1, :b => 2, :c => 3}'
  #   #=> {:a => 1, :b => 2, :c => 3}
  #     # ==>{:a=>1, :b=>2, :c=>3}
  #   x.puts 'foo = "bar"'
  #   # => foo = "bar"
  #     # ==>"bar"
  def puts(exps)
    @io.puts exps

    if @irb.context.ignore_sigint
      begin
        trap_proc_b = trap("SIGINT"){@irb.signal_handle}
        catch(:IRB_EXIT) do
          @irb.eval_input
        end
      ensure
        trap("SIGINT", trap_proc_b)
      end
    else
      catch(:IRB_EXIT) do
        @irb.eval_input
      end
    end
  end

  # A custom InputMethod class used by XMP for evaluating string io.
  class StringInputMethod < IRB::InputMethod
    # Creates a new StringInputMethod object
    def initialize
      super
      @exps = []
    end

    # Whether there are any expressions left in this printer.
    def eof?
      @exps.empty?
    end

    # Reads the next expression from this printer.
    #
    # See IO#gets for more information.
    def gets
      while l = @exps.shift
        next if /^\s+$/ =~ l
        l.concat "\n"
        print @prompt, l
        break
      end
      l
    end

    # Concatenates all expressions in this printer, separated by newlines.
    #
    # An Encoding::CompatibilityError is raised of the given +exps+'s encoding
    # doesn't match the previous expression evaluated.
    def puts(exps)
      if @encoding and exps.encoding != @encoding
        enc = Encoding.compatible?(@exps.join("\n"), exps)
        if enc.nil?
          raise Encoding::CompatibilityError, "Encoding in which the passed expression is encoded is not compatible to the preceding's one"
        else
          @encoding = enc
        end
      else
        @encoding = exps.encoding
      end
      @exps.concat exps.split(/\n/)
    end

    # Returns the encoding of last expression printed by #puts.
    attr_reader :encoding
  end
end

# A convenience method that's only available when the you require the IRB::XMP standard library.
#
# Creates a new XMP object, using the given expressions as the +exps+
# parameter, and optional binding as +bind+ or uses the top-level binding. Then
# evaluates the given expressions using the +:XMP+ prompt mode.
#
# For example:
#
#   require 'irb/xmp'
#   ctx = binding
#   xmp 'foo = "bar"', ctx
#   #=> foo = "bar"
#     #==>"bar"
#   ctx.eval 'foo'
#   #=> "bar"
#
# See XMP.new for more information.
def xmp(exps, bind = nil)
  bind = IRB::Frame.top(1) unless bind
  xmp = XMP.new(bind)
  xmp.puts exps
  xmp
end
PKDH[��O��-share/gems/gems/irb-1.2.6/lib/irb/cmd/help.rbnu�[���# frozen_string_literal: false
#
#   help.rb - helper using ri
#   	$Release Version: 0.9.6$
#   	$Revision$
#
# --
#
#
#

require_relative "nop"

# :stopdoc:
module IRB
  module ExtendCommand
    class Help < Nop
      def execute(*names)
        require 'rdoc/ri/driver'
        IRB::ExtendCommand::Help.const_set(:Ri, RDoc::RI::Driver.new)
      rescue LoadError, SystemExit
        IRB::ExtendCommand::Help.remove_method(:execute)
        # raise NoMethodError in ensure
      else
        def execute(*names)
          if names.empty?
            Ri.interactive
            return
          end
          names.each do |name|
            begin
              Ri.display_name(name.to_s)
            rescue RDoc::RI::Error
              puts $!.message
            end
          end
          nil
        end
        nil
      ensure
        execute(*names)
      end
    end
  end
end
# :startdoc:
PKDH[I]]��/share/gems/gems/irb-1.2.6/lib/irb/cmd/subirb.rbnu�[���# frozen_string_literal: false
#   multi.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "nop"
require_relative "../ext/multi-irb"

# :stopdoc:
module IRB
  module ExtendCommand
    class IrbCommand < Nop
      def execute(*obj)
        IRB.irb(nil, *obj)
      end
    end

    class Jobs < Nop
      def execute
        IRB.JobManager
      end
    end

    class Foreground < Nop
      def execute(key)
        IRB.JobManager.switch(key)
      end
    end

    class Kill < Nop
      def execute(*keys)
        IRB.JobManager.kill(*keys)
      end
    end
  end
end
# :startdoc:
PKDH[�j$�-share/gems/gems/irb-1.2.6/lib/irb/cmd/chws.rbnu�[���# frozen_string_literal: false
#
#   change-ws.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "nop"
require_relative "../ext/change-ws"

# :stopdoc:
module IRB
  module ExtendCommand

    class CurrentWorkingWorkspace < Nop
      def execute(*obj)
        irb_context.main
      end
    end

    class ChangeWorkspace < Nop
      def execute(*obj)
        irb_context.change_workspace(*obj)
        irb_context.main
      end
    end
  end
end
# :startdoc:
PKDH[�{A5//-share/gems/gems/irb-1.2.6/lib/irb/cmd/info.rbnu�[���# frozen_string_literal: false

require_relative "nop"

# :stopdoc:
module IRB
  module ExtendCommand
    class Info < Nop
      def execute
        Class.new {
          def inspect
            str  = "Ruby version: #{RUBY_VERSION}\n"
            str += "IRB version: #{IRB.version}\n"
            str += "InputMethod: #{IRB.CurrentContext.io.inspect}\n"
            str += ".irbrc path: #{IRB.rc_file}\n" if File.exist?(IRB.rc_file)
            str
          end
          alias_method :to_s, :inspect
        }.new
      end
    end
  end
end
# :startdoc:
PKDH[��z���/share/gems/gems/irb-1.2.6/lib/irb/cmd/pushws.rbnu�[���# frozen_string_literal: false
#
#   change-ws.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "nop"
require_relative "../ext/workspaces"

# :stopdoc:
module IRB
  module ExtendCommand
    class Workspaces < Nop
      def execute(*obj)
        irb_context.workspaces.collect{|ws| ws.main}
      end
    end

    class PushWorkspace < Workspaces
      def execute(*obj)
        irb_context.push_workspace(*obj)
        super
      end
    end

    class PopWorkspace < Workspaces
      def execute(*obj)
        irb_context.pop_workspace(*obj)
        super
      end
    end
  end
end
# :startdoc:
PKDH[#�o���-share/gems/gems/irb-1.2.6/lib/irb/cmd/load.rbnu�[���# frozen_string_literal: false
#
#   load.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "nop"
require_relative "../ext/loader"

# :stopdoc:
module IRB
  module ExtendCommand
    class Load < Nop
      include IrbLoader

      def execute(file_name, priv = nil)
        return irb_load(file_name, priv)
      end
    end

    class Require < Nop
      include IrbLoader

      def execute(file_name)

        rex = Regexp.new("#{Regexp.quote(file_name)}(\.o|\.rb)?")
        return false if $".find{|f| f =~ rex}

        case file_name
        when /\.rb$/
          begin
            if irb_load(file_name)
              $".push file_name
              return true
            end
          rescue LoadError
          end
        when /\.(so|o|sl)$/
          return ruby_require(file_name)
        end

        begin
          irb_load(f = file_name + ".rb")
          $".push f
          return true
        rescue LoadError
          return ruby_require(file_name)
        end
      end
    end

    class Source < Nop
      include IrbLoader
      def execute(file_name)
        source_file(file_name)
      end
    end
  end

end
# :startdoc:
PKDH[Q��~~-share/gems/gems/irb-1.2.6/lib/irb/cmd/fork.rbnu�[���# frozen_string_literal: false
#
#   fork.rb -
#   	$Release Version: 0.9.6 $
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#


# :stopdoc:
module IRB
  module ExtendCommand
    class Fork < Nop
      def execute
        pid = send ExtendCommand.irb_original_method_name("fork")
        unless pid
          class << self
            alias_method :exit, ExtendCommand.irb_original_method_name('exit')
          end
          if block_given?
            begin
              yield
            ensure
              exit
            end
          end
        end
        pid
      end
    end
  end
end
# :startdoc:
PKDH[�)ڏ!!,share/gems/gems/irb-1.2.6/lib/irb/cmd/nop.rbnu�[���# frozen_string_literal: false
#
#   nop.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
# :stopdoc:
module IRB
  module ExtendCommand
    class Nop


      def self.execute(conf, *opts)
        command = new(conf)
        command.execute(*opts)
      end

      def initialize(conf)
        @irb_context = conf
      end

      attr_reader :irb_context

      def irb
        @irb_context.irb
      end

      def execute(*opts)
        #nop
      end
    end
  end
end
# :startdoc:
PKDH[��ǀ��*share/gems/gems/irb-1.2.6/lib/irb/frame.rbnu�[���# frozen_string_literal: false
#
#   frame.rb -
#   	$Release Version: 0.9$
#   	$Revision$
#   	by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd)
#
# --
#
#
#

module IRB
  class Frame
    class FrameOverflow < StandardError
      def initialize
        super("frame overflow")
      end
    end
    class FrameUnderflow < StandardError
      def initialize
        super("frame underflow")
      end
    end

    # Default number of stack frames
    INIT_STACK_TIMES = 3
    # Default number of frames offset
    CALL_STACK_OFFSET = 3

    # Creates a new stack frame
    def initialize
      @frames = [TOPLEVEL_BINDING] * INIT_STACK_TIMES
    end

    # Used by Kernel#set_trace_func to register each event in the call stack
    def trace_func(event, file, line, id, binding)
      case event
      when 'call', 'class'
        @frames.push binding
      when 'return', 'end'
        @frames.pop
      end
    end

    # Returns the +n+ number of frames on the call stack from the last frame
    # initialized.
    #
    # Raises FrameUnderflow if there are no frames in the given stack range.
    def top(n = 0)
      bind = @frames[-(n + CALL_STACK_OFFSET)]
      fail FrameUnderflow unless bind
      bind
    end

    # Returns the +n+ number of frames on the call stack from the first frame
    # initialized.
    #
    # Raises FrameOverflow if there are no frames in the given stack range.
    def bottom(n = 0)
      bind = @frames[n]
      fail FrameOverflow unless bind
      bind
    end

    # Convenience method for Frame#bottom
    def Frame.bottom(n = 0)
      @backtrace.bottom(n)
    end

    # Convenience method for Frame#top
    def Frame.top(n = 0)
      @backtrace.top(n)
    end

    # Returns the binding context of the caller from the last frame initialized
    def Frame.sender
      eval "self", @backtrace.top
    end

    @backtrace = Frame.new
    set_trace_func proc{|event, file, line, id, binding, klass|
      @backtrace.trace_func(event, file, line, id, binding)
    }
  end
end
PKDH[����
�
5share/gems/gems/irb-1.2.6/lib/irb/ext/save-history.rbnu�[���# frozen_string_literal: false
#   save-history.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB
  module HistorySavingAbility # :nodoc:
  end

  class Context
    def init_save_history# :nodoc:
      unless (class<<@io;self;end).include?(HistorySavingAbility)
        @io.extend(HistorySavingAbility)
      end
    end

    # A copy of the default <code>IRB.conf[:SAVE_HISTORY]</code>
    def save_history
      IRB.conf[:SAVE_HISTORY]
    end

    remove_method(:save_history=) if method_defined?(:save_history=)
    # Sets <code>IRB.conf[:SAVE_HISTORY]</code> to the given +val+ and calls
    # #init_save_history with this context.
    #
    # Will store the number of +val+ entries of history in the #history_file
    #
    # Add the following to your +.irbrc+ to change the number of history
    # entries stored to 1000:
    #
    #     IRB.conf[:SAVE_HISTORY] = 1000
    def save_history=(val)
      IRB.conf[:SAVE_HISTORY] = val
      if val
        main_context = IRB.conf[:MAIN_CONTEXT]
        main_context = self unless main_context
        main_context.init_save_history
      end
    end

    # A copy of the default <code>IRB.conf[:HISTORY_FILE]</code>
    def history_file
      IRB.conf[:HISTORY_FILE]
    end

    # Set <code>IRB.conf[:HISTORY_FILE]</code> to the given +hist+.
    def history_file=(hist)
      IRB.conf[:HISTORY_FILE] = hist
    end
  end

  module HistorySavingAbility # :nodoc:
    def HistorySavingAbility.extended(obj)
      IRB.conf[:AT_EXIT].push proc{obj.save_history}
      obj.load_history
      obj
    end

    def load_history
      return unless self.class.const_defined?(:HISTORY)
      history = self.class::HISTORY
      if history_file = IRB.conf[:HISTORY_FILE]
        history_file = File.expand_path(history_file)
      end
      history_file = IRB.rc_file("_history") unless history_file
      if File.exist?(history_file)
        open(history_file, "r:#{IRB.conf[:LC_MESSAGES].encoding}") do |f|
          f.each { |l|
            l = l.chomp
            if self.class == ReidlineInputMethod and history.last&.end_with?("\\")
              history.last.delete_suffix!("\\")
              history.last << "\n" << l
            else
              history << l
            end
          }
        end
      end
    end

    def save_history
      return unless self.class.const_defined?(:HISTORY)
      history = self.class::HISTORY
      if num = IRB.conf[:SAVE_HISTORY] and (num = num.to_i) != 0
        if history_file = IRB.conf[:HISTORY_FILE]
          history_file = File.expand_path(history_file)
        end
        history_file = IRB.rc_file("_history") unless history_file

        # Change the permission of a file that already exists[BUG #7694]
        begin
          if File.stat(history_file).mode & 066 != 0
            File.chmod(0600, history_file)
          end
        rescue Errno::ENOENT
        rescue Errno::EPERM
          return
        rescue
          raise
        end

        open(history_file, "w:#{IRB.conf[:LC_MESSAGES].encoding}", 0600) do |f|
          hist = history.map{ |l| l.split("\n").join("\\\n") }
          begin
            hist = hist.last(num) if hist.size > num and num > 0
          rescue RangeError # bignum too big to convert into `long'
            # Do nothing because the bignum should be treated as inifinity
          end
          f.puts(hist)
        end
      end
    end
  end
end
PKDH[](
		2share/gems/gems/irb-1.2.6/lib/irb/ext/change-ws.rbnu�[���# frozen_string_literal: false
#
#   irb/ext/cb.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB # :nodoc:
  class Context

    # Inherited from +TOPLEVEL_BINDING+.
    def home_workspace
      if defined? @home_workspace
        @home_workspace
      else
        @home_workspace = @workspace
      end
    end

    # Changes the current workspace to given object or binding.
    #
    # If the optional argument is omitted, the workspace will be
    # #home_workspace which is inherited from +TOPLEVEL_BINDING+ or the main
    # object, <code>IRB.conf[:MAIN_CONTEXT]</code> when irb was initialized.
    #
    # See IRB::WorkSpace.new for more information.
    def change_workspace(*_main)
      if _main.empty?
        @workspace = home_workspace
        return main
      end

      @workspace = WorkSpace.new(_main[0])

      if !(class<<main;ancestors;end).include?(ExtendCommandBundle)
        main.extend ExtendCommandBundle
      end
    end
  end
end
PKDH[u��I��2share/gems/gems/irb-1.2.6/lib/irb/ext/multi-irb.rbnu�[���# frozen_string_literal: false
#
#   irb/multi-irb.rb - multiple irb module
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
fail CantShiftToMultiIrbMode unless defined?(Thread)

module IRB
  class JobManager

    # Creates a new JobManager object
    def initialize
      @jobs = []
      @current_job = nil
    end

    # The active irb session
    attr_accessor :current_job

    # The total number of irb sessions, used to set +irb_name+ of the current
    # Context.
    def n_jobs
      @jobs.size
    end

    # Returns the thread for the given +key+ object, see #search for more
    # information.
    def thread(key)
      th, = search(key)
      th
    end

    # Returns the irb session for the given +key+ object, see #search for more
    # information.
    def irb(key)
      _, irb = search(key)
      irb
    end

    # Returns the top level thread.
    def main_thread
      @jobs[0][0]
    end

    # Returns the top level irb session.
    def main_irb
      @jobs[0][1]
    end

    # Add the given +irb+ session to the jobs Array.
    def insert(irb)
      @jobs.push [Thread.current, irb]
    end

    # Changes the current active irb session to the given +key+ in the jobs
    # Array.
    #
    # Raises an IrbAlreadyDead exception if the given +key+ is no longer alive.
    #
    # If the given irb session is already active, an IrbSwitchedToCurrentThread
    # exception is raised.
    def switch(key)
      th, irb = search(key)
      fail IrbAlreadyDead unless th.alive?
      fail IrbSwitchedToCurrentThread if th == Thread.current
      @current_job = irb
      th.run
      Thread.stop
      @current_job = irb(Thread.current)
    end

    # Terminates the irb sessions specified by the given +keys+.
    #
    # Raises an IrbAlreadyDead exception if one of the given +keys+ is already
    # terminated.
    #
    # See Thread#exit for more information.
    def kill(*keys)
      for key in keys
        th, _ = search(key)
        fail IrbAlreadyDead unless th.alive?
        th.exit
      end
    end

    # Returns the associated job for the given +key+.
    #
    # If given an Integer, it will return the +key+ index for the jobs Array.
    #
    # When an instance of Irb is given, it will return the irb session
    # associated with +key+.
    #
    # If given an instance of Thread, it will return the associated thread
    # +key+ using Object#=== on the jobs Array.
    #
    # Otherwise returns the irb session with the same top-level binding as the
    # given +key+.
    #
    # Raises a NoSuchJob exception if no job can be found with the given +key+.
    def search(key)
      job = case key
            when Integer
              @jobs[key]
            when Irb
              @jobs.find{|k, v| v.equal?(key)}
            when Thread
              @jobs.assoc(key)
            else
              @jobs.find{|k, v| v.context.main.equal?(key)}
            end
      fail NoSuchJob, key if job.nil?
      job
    end

    # Deletes the job at the given +key+.
    def delete(key)
      case key
      when Integer
        fail NoSuchJob, key unless @jobs[key]
        @jobs[key] = nil
      else
        catch(:EXISTS) do
          @jobs.each_index do
            |i|
            if @jobs[i] and (@jobs[i][0] == key ||
                @jobs[i][1] == key ||
                @jobs[i][1].context.main.equal?(key))
              @jobs[i] = nil
              throw :EXISTS
            end
          end
          fail NoSuchJob, key
        end
      end
      until assoc = @jobs.pop; end unless @jobs.empty?
      @jobs.push assoc
    end

    # Outputs a list of jobs, see the irb command +irb_jobs+, or +jobs+.
    def inspect
      ary = []
      @jobs.each_index do
        |i|
        th, irb = @jobs[i]
        next if th.nil?

        if th.alive?
          if th.stop?
            t_status = "stop"
          else
            t_status = "running"
          end
        else
          t_status = "exited"
        end
        ary.push format("#%d->%s on %s (%s: %s)",
          i,
          irb.context.irb_name,
          irb.context.main,
          th,
          t_status)
      end
      ary.join("\n")
    end
  end

  @JobManager = JobManager.new

  # The current JobManager in the session
  def IRB.JobManager
    @JobManager
  end

  # The current Context in this session
  def IRB.CurrentContext
    IRB.JobManager.irb(Thread.current).context
  end

  # Creates a new IRB session, see Irb.new.
  #
  # The optional +file+ argument is given to Context.new, along with the
  # workspace created with the remaining arguments, see WorkSpace.new
  def IRB.irb(file = nil, *main)
    workspace = WorkSpace.new(*main)
    parent_thread = Thread.current
    Thread.start do
      begin
        irb = Irb.new(workspace, file)
      rescue
        print "Subirb can't start with context(self): ", workspace.main.inspect, "\n"
        print "return to main irb\n"
        Thread.pass
        Thread.main.wakeup
        Thread.exit
      end
      @CONF[:IRB_RC].call(irb.context) if @CONF[:IRB_RC]
      @JobManager.insert(irb)
      @JobManager.current_job = irb
      begin
        system_exit = false
        catch(:IRB_EXIT) do
          irb.eval_input
        end
      rescue SystemExit
        system_exit = true
        raise
        #fail
      ensure
        unless system_exit
          @JobManager.delete(irb)
          if @JobManager.current_job == irb
            if parent_thread.alive?
              @JobManager.current_job = @JobManager.irb(parent_thread)
              parent_thread.run
            else
              @JobManager.current_job = @JobManager.main_irb
              @JobManager.main_thread.run
            end
          end
        end
      end
    end
    Thread.stop
    @JobManager.current_job = @JobManager.irb(Thread.current)
  end

  @CONF[:SINGLE_IRB_MODE] = false
  @JobManager.insert(@CONF[:MAIN_CONTEXT].irb)
  @JobManager.current_job = @CONF[:MAIN_CONTEXT].irb

  class Irb
    def signal_handle
      unless @context.ignore_sigint?
        print "\nabort!!\n" if @context.verbose?
        exit
      end

      case @signal_status
      when :IN_INPUT
        print "^C\n"
        IRB.JobManager.thread(self).raise RubyLex::TerminateLineInput
      when :IN_EVAL
        IRB.irb_abort(self)
      when :IN_LOAD
        IRB.irb_abort(self, LoadAbort)
      when :IN_IRB
        # ignore
      else
        # ignore other cases as well
      end
    end
  end

  trap("SIGINT") do
    @JobManager.current_job.signal_handle
    Thread.stop
  end

end
PKDH[C5vl��/share/gems/gems/irb-1.2.6/lib/irb/ext/tracer.rbnu�[���# frozen_string_literal: false
#
#   irb/lib/tracer.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
begin
  require "tracer"
rescue LoadError
  $stderr.puts "Tracer extension of IRB is enabled but tracer gem doesn't found."
  module IRB
    TracerLoadError = true
    class Context
      def use_tracer=(opt)
        # do nothing
      end
    end
  end
  return # This is about to disable loading below
end

module IRB

  # initialize tracing function
  def IRB.initialize_tracer
    Tracer.verbose = false
    Tracer.add_filter {
      |event, file, line, id, binding, *rests|
      /^#{Regexp.quote(@CONF[:IRB_LIB_PATH])}/ !~ file and
        File::basename(file) != "irb.rb"
    }
  end

  class Context
    # Whether Tracer is used when evaluating statements in this context.
    #
    # See +lib/tracer.rb+ for more information.
    attr_reader :use_tracer
    alias use_tracer? use_tracer

    # Sets whether or not to use the Tracer library when evaluating statements
    # in this context.
    #
    # See +lib/tracer.rb+ for more information.
    def use_tracer=(opt)
      if opt
        Tracer.set_get_line_procs(@irb_path) {
          |line_no, *rests|
          @io.line(line_no)
        }
      elsif !opt && @use_tracer
        Tracer.off
      end
      @use_tracer=opt
    end
  end

  class WorkSpace
    alias __evaluate__ evaluate
    # Evaluate the context of this workspace and use the Tracer library to
    # output the exact lines of code are being executed in chronological order.
    #
    # See +lib/tracer.rb+ for more information.
    def evaluate(context, statements, file = nil, line = nil)
      if context.use_tracer? && file != nil && line != nil
        Tracer.on
        begin
          __evaluate__(context, statements, file, line)
        ensure
          Tracer.off
        end
      else
        __evaluate__(context, statements, file || __FILE__, line || __LINE__)
      end
    end
  end

  IRB.initialize_tracer
end
PKDH[�ɼ�0share/gems/gems/irb-1.2.6/lib/irb/ext/history.rbnu�[���# frozen_string_literal: false
#
#   history.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB # :nodoc:

  class Context

    NOPRINTING_IVARS.push "@eval_history_values"

    # See #set_last_value
    alias _set_last_value set_last_value

    def set_last_value(value)
      _set_last_value(value)

      if defined?(@eval_history) && @eval_history
        @eval_history_values.push @line_no, @last_value
        @workspace.evaluate self, "__ = IRB.CurrentContext.instance_eval{@eval_history_values}"
      end

      @last_value
    end

    remove_method :eval_history= if method_defined?(:eval_history=)
    # The command result history limit. This method is not available until
    # #eval_history= was called with non-nil value (directly or via
    # setting <code>IRB.conf[:EVAL_HISTORY]</code> in <code>.irbrc</code>).
    attr_reader :eval_history
    # Sets command result history limit. Default value is set from
    # <code>IRB.conf[:EVAL_HISTORY]</code>.
    #
    # +no+ is an Integer or +nil+.
    #
    # Returns +no+ of history items if greater than 0.
    #
    # If +no+ is 0, the number of history items is unlimited.
    #
    # If +no+ is +nil+, execution result history isn't used (default).
    #
    # History values are available via <code>__</code> variable, see
    # IRB::History.
    def eval_history=(no)
      if no
        if defined?(@eval_history) && @eval_history
          @eval_history_values.size(no)
        else
          @eval_history_values = History.new(no)
          IRB.conf[:__TMP__EHV__] = @eval_history_values
          @workspace.evaluate(self, "__ = IRB.conf[:__TMP__EHV__]")
          IRB.conf.delete(:__TMP_EHV__)
        end
      else
        @eval_history_values = nil
      end
      @eval_history = no
    end
  end

  # Represents history of results of previously evaluated commands.
  #
  # Available via <code>__</code> variable, only if <code>IRB.conf[:EVAL_HISTORY]</code>
  # or <code>IRB::CurrentContext().eval_history</code> is non-nil integer value
  # (by default it is +nil+).
  #
  # Example (in `irb`):
  #
  #    # Initialize history
  #    IRB::CurrentContext().eval_history = 10
  #    # => 10
  #
  #    # Perform some commands...
  #    1 + 2
  #    # => 3
  #    puts 'x'
  #    # x
  #    # => nil
  #    raise RuntimeError
  #    # ...error raised
  #
  #    # Inspect history (format is "<item number> <evaluated value>":
  #    __
  #    # => 1 10
  #    # 2 3
  #    # 3 nil
  #
  #    __[1]
  #    # => 10
  #
  class History

    def initialize(size = 16)  # :nodoc:
      @size = size
      @contents = []
    end

    def size(size) # :nodoc:
      if size != 0 && size < @size
        @contents = @contents[@size - size .. @size]
      end
      @size = size
    end

    # Get one item of the content (both positive and negative indexes work).
    def [](idx)
      begin
        if idx >= 0
          @contents.find{|no, val| no == idx}[1]
        else
          @contents[idx][1]
        end
      rescue NameError
        nil
      end
    end

    def push(no, val)  # :nodoc:
      @contents.push [no, val]
      @contents.shift if @size != 0 && @contents.size > @size
    end

    alias real_inspect inspect

    def inspect  # :nodoc:
      if @contents.empty?
        return real_inspect
      end

      unless (last = @contents.pop)[1].equal?(self)
        @contents.push last
        last = nil
      end
      str = @contents.collect{|no, val|
        if val.equal?(self)
          "#{no} ...self-history..."
        else
          "#{no} #{val.inspect}"
        end
      }.join("\n")
      if str == ""
        str = "Empty."
      end
      @contents.push last if last
      str
    end
  end
end
PKDH[y�r�||/share/gems/gems/irb-1.2.6/lib/irb/ext/loader.rbnu�[���# frozen_string_literal: false
#
#   loader.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#


module IRB # :nodoc:
  # Raised in the event of an exception in a file loaded from an Irb session
  class LoadAbort < Exception;end

  # Provides a few commands for loading files within an irb session.
  #
  # See ExtendCommandBundle for more information.
  module IrbLoader

    alias ruby_load load
    alias ruby_require require

    # Loads the given file similarly to Kernel#load
    def irb_load(fn, priv = nil)
      path = search_file_from_ruby_path(fn)
      raise LoadError, "No such file to load -- #{fn}" unless path

      load_file(path, priv)
    end

    def search_file_from_ruby_path(fn) # :nodoc:
      if /^#{Regexp.quote(File::Separator)}/ =~ fn
        return fn if File.exist?(fn)
        return nil
      end

      for path in $:
        if File.exist?(f = File.join(path, fn))
          return f
        end
      end
      return nil
    end

    # Loads a given file in the current session and displays the source lines
    #
    # See Irb#suspend_input_method for more information.
    def source_file(path)
      irb.suspend_name(path, File.basename(path)) do
        irb.suspend_input_method(FileInputMethod.new(path)) do
          |back_io|
          irb.signal_status(:IN_LOAD) do
            if back_io.kind_of?(FileInputMethod)
              irb.eval_input
            else
              begin
                irb.eval_input
              rescue LoadAbort
                print "load abort!!\n"
              end
            end
          end
        end
      end
    end

    # Loads the given file in the current session's context and evaluates it.
    #
    # See Irb#suspend_input_method for more information.
    def load_file(path, priv = nil)
      irb.suspend_name(path, File.basename(path)) do

        if priv
          ws = WorkSpace.new(Module.new)
        else
          ws = WorkSpace.new
        end
        irb.suspend_workspace(ws) do
          irb.suspend_input_method(FileInputMethod.new(path)) do
            |back_io|
            irb.signal_status(:IN_LOAD) do
              if back_io.kind_of?(FileInputMethod)
                irb.eval_input
              else
                begin
                  irb.eval_input
                rescue LoadAbort
                  print "load abort!!\n"
                end
              end
            end
          end
        end
      end
    end

    def old # :nodoc:
      back_io = @io
      back_path = @irb_path
      back_name = @irb_name
      back_scanner = @irb.scanner
      begin
        @io = FileInputMethod.new(path)
        @irb_name = File.basename(path)
        @irb_path = path
        @irb.signal_status(:IN_LOAD) do
          if back_io.kind_of?(FileInputMethod)
            @irb.eval_input
          else
            begin
              @irb.eval_input
            rescue LoadAbort
              print "load abort!!\n"
            end
          end
        end
      ensure
        @io = back_io
        @irb_name = back_name
        @irb_path = back_path
        @irb.scanner = back_scanner
      end
    end
  end
end
PKDH[�fcI��3share/gems/gems/irb-1.2.6/lib/irb/ext/workspaces.rbnu�[���# frozen_string_literal: false
#
#   push-ws.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB # :nodoc:
  class Context

    # Size of the current WorkSpace stack
    def irb_level
      workspace_stack.size
    end

    # WorkSpaces in the current stack
    def workspaces
      if defined? @workspaces
        @workspaces
      else
        @workspaces = []
      end
    end

    # Creates a new workspace with the given object or binding, and appends it
    # onto the current #workspaces stack.
    #
    # See IRB::Context#change_workspace and IRB::WorkSpace.new for more
    # information.
    def push_workspace(*_main)
      if _main.empty?
        if workspaces.empty?
          print "No other workspace\n"
          return nil
        end
        ws = workspaces.pop
        workspaces.push @workspace
        @workspace = ws
        return workspaces
      end

      workspaces.push @workspace
      @workspace = WorkSpace.new(@workspace.binding, _main[0])
      if !(class<<main;ancestors;end).include?(ExtendCommandBundle)
        main.extend ExtendCommandBundle
      end
    end

    # Removes the last element from the current #workspaces stack and returns
    # it, or +nil+ if the current workspace stack is empty.
    #
    # Also, see #push_workspace.
    def pop_workspace
      if workspaces.empty?
        print "workspace stack empty\n"
        return
      end
      @workspace = workspaces.pop
    end
  end
end
PKDH[�N9���3share/gems/gems/irb-1.2.6/lib/irb/ext/use-loader.rbnu�[���# frozen_string_literal: false
#
#   use-loader.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "../cmd/load"
require_relative "loader"

class Object
  alias __original__load__IRB_use_loader__ load
  alias __original__require__IRB_use_loader__ require
end

module IRB
  module ExtendCommandBundle
    remove_method :irb_load if method_defined?(:irb_load)
    # Loads the given file similarly to Kernel#load, see IrbLoader#irb_load
    def irb_load(*opts, &b)
      ExtendCommand::Load.execute(irb_context, *opts, &b)
    end
    remove_method :irb_require if method_defined?(:irb_require)
    # Loads the given file similarly to Kernel#require
    def irb_require(*opts, &b)
      ExtendCommand::Require.execute(irb_context, *opts, &b)
    end
  end

  class Context

    IRB.conf[:USE_LOADER] = false

    # Returns whether +irb+'s own file reader method is used by
    # +load+/+require+ or not.
    #
    # This mode is globally affected (irb-wide).
    def use_loader
      IRB.conf[:USE_LOADER]
    end

    alias use_loader? use_loader

    remove_method :use_loader= if method_defined?(:use_loader=)
    # Sets <code>IRB.conf[:USE_LOADER]</code>
    #
    # See #use_loader for more information.
    def use_loader=(opt)

      if IRB.conf[:USE_LOADER] != opt
        IRB.conf[:USE_LOADER] = opt
        if opt
          if !$".include?("irb/cmd/load")
          end
          (class<<@workspace.main;self;end).instance_eval {
            alias_method :load, :irb_load
            alias_method :require, :irb_require
          }
        else
          (class<<@workspace.main;self;end).instance_eval {
            alias_method :load, :__original__load__IRB_use_loader__
            alias_method :require, :__original__require__IRB_use_loader__
          }
        end
      end
      print "Switch to load/require#{unless use_loader; ' non';end} trace mode.\n" if verbose?
      opt
    end
  end
end
PKDH[�[��2share/gems/gems/irb-1.2.6/lib/irb/ws-for-case-2.rbnu�[���# frozen_string_literal: false
#
#   irb/ws-for-case-2.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

while true
  IRB::BINDING_QUEUE.push _ = binding
end
PKDH[c�p.��-share/gems/gems/irb-1.2.6/lib/irb/notifier.rbnu�[���# frozen_string_literal: false
#
#   notifier.rb - output methods used by irb
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require_relative "output-method"

module IRB
  # An output formatter used internally by the lexer.
  module Notifier
    class ErrUndefinedNotifier < StandardError
      def initialize(val)
        super("undefined notifier level: #{val} is specified")
      end
    end
    class ErrUnrecognizedLevel < StandardError
      def initialize(val)
        super("unrecognized notifier level: #{val} is specified")
      end
    end

    # Define a new Notifier output source, returning a new CompositeNotifier
    # with the given +prefix+ and +output_method+.
    #
    # The optional +prefix+ will be appended to all objects being inspected
    # during output, using the given +output_method+ as the output source. If
    # no +output_method+ is given, StdioOutputMethod will be used, and all
    # expressions will be sent directly to STDOUT without any additional
    # formatting.
    def def_notifier(prefix = "", output_method = StdioOutputMethod.new)
      CompositeNotifier.new(prefix, output_method)
    end
    module_function :def_notifier

    # An abstract class, or superclass, for CompositeNotifier and
    # LeveledNotifier to inherit. It provides several wrapper methods for the
    # OutputMethod object used by the Notifier.
    class AbstractNotifier
      # Creates a new Notifier object
      def initialize(prefix, base_notifier)
        @prefix = prefix
        @base_notifier = base_notifier
      end

      # The +prefix+ for this Notifier, which is appended to all objects being
      # inspected during output.
      attr_reader :prefix

      # A wrapper method used to determine whether notifications are enabled.
      #
      # Defaults to +true+.
      def notify?
        true
      end

      # See OutputMethod#print for more detail.
      def print(*opts)
        @base_notifier.print prefix, *opts if notify?
      end

      # See OutputMethod#printn for more detail.
      def printn(*opts)
        @base_notifier.printn prefix, *opts if notify?
      end

      # See OutputMethod#printf for more detail.
      def printf(format, *opts)
        @base_notifier.printf(prefix + format, *opts) if notify?
      end

      # See OutputMethod#puts for more detail.
      def puts(*objs)
        if notify?
          @base_notifier.puts(*objs.collect{|obj| prefix + obj.to_s})
        end
      end

      # Same as #ppx, except it uses the #prefix given during object
      # initialization.
      # See OutputMethod#ppx for more detail.
      def pp(*objs)
        if notify?
          @base_notifier.ppx @prefix, *objs
        end
      end

      # Same as #pp, except it concatenates the given +prefix+ with the #prefix
      # given during object initialization.
      #
      # See OutputMethod#ppx for more detail.
      def ppx(prefix, *objs)
        if notify?
          @base_notifier.ppx @prefix+prefix, *objs
        end
      end

      # Execute the given block if notifications are enabled.
      def exec_if
        yield(@base_notifier) if notify?
      end
    end

    # A class that can be used to create a group of notifier objects with the
    # intent of representing a leveled notification system for irb.
    #
    # This class will allow you to generate other notifiers, and assign them
    # the appropriate level for output.
    #
    # The Notifier class provides a class-method Notifier.def_notifier to
    # create a new composite notifier. Using the first composite notifier
    # object you create, sibling notifiers can be initialized with
    # #def_notifier.
    class CompositeNotifier < AbstractNotifier
      # Create a new composite notifier object with the given +prefix+, and
      # +base_notifier+ to use for output.
      def initialize(prefix, base_notifier)
        super

        @notifiers = [D_NOMSG]
        @level_notifier = D_NOMSG
      end

      # List of notifiers in the group
      attr_reader :notifiers

      # Creates a new LeveledNotifier in the composite #notifiers group.
      #
      # The given +prefix+ will be assigned to the notifier, and +level+ will
      # be used as the index of the #notifiers Array.
      #
      # This method returns the newly created instance.
      def def_notifier(level, prefix = "")
        notifier = LeveledNotifier.new(self, level, prefix)
        @notifiers[level] = notifier
        notifier
      end

      # Returns the leveled notifier for this object
      attr_reader :level_notifier
      alias level level_notifier

      # Sets the leveled notifier for this object.
      #
      # When the given +value+ is an instance of AbstractNotifier,
      # #level_notifier is set to the given object.
      #
      # When an Integer is given, #level_notifier is set to the notifier at the
      # index +value+ in the #notifiers Array.
      #
      # If no notifier exists at the index +value+ in the #notifiers Array, an
      # ErrUndefinedNotifier exception is raised.
      #
      # An ErrUnrecognizedLevel exception is raised if the given +value+ is not
      # found in the existing #notifiers Array, or an instance of
      # AbstractNotifier
      def level_notifier=(value)
        case value
        when AbstractNotifier
          @level_notifier = value
        when Integer
          l = @notifiers[value]
          raise ErrUndefinedNotifier, value unless l
          @level_notifier = l
        else
          raise ErrUnrecognizedLevel, value unless l
        end
      end

      alias level= level_notifier=
    end

    # A leveled notifier is comparable to the composite group from
    # CompositeNotifier#notifiers.
    class LeveledNotifier < AbstractNotifier
      include Comparable

      # Create a new leveled notifier with the given +base+, and +prefix+ to
      # send to AbstractNotifier.new
      #
      # The given +level+ is used to compare other leveled notifiers in the
      # CompositeNotifier group to determine whether or not to output
      # notifications.
      def initialize(base, level, prefix)
        super(prefix, base)

        @level = level
      end

      # The current level of this notifier object
      attr_reader :level

      # Compares the level of this notifier object with the given +other+
      # notifier.
      #
      # See the Comparable module for more information.
      def <=>(other)
        @level <=> other.level
      end

      # Whether to output messages to the output method, depending on the level
      # of this notifier object.
      def notify?
        @base_notifier.level >= self
      end
    end

    # NoMsgNotifier is a LeveledNotifier that's used as the default notifier
    # when creating a new CompositeNotifier.
    #
    # This notifier is used as the +zero+ index, or level +0+, for
    # CompositeNotifier#notifiers, and will not output messages of any sort.
    class NoMsgNotifier < LeveledNotifier
      # Creates a new notifier that should not be used to output messages.
      def initialize
        @base_notifier = nil
        @level = 0
        @prefix = ""
      end

      # Ensures notifications are ignored, see AbstractNotifier#notify? for
      # more information.
      def notify?
        false
      end
    end

    D_NOMSG = NoMsgNotifier.new # :nodoc:
  end
end
PKDH[yk/AA+share/gems/gems/irb-1.2.6/lib/irb/locale.rbnu�[���# frozen_string_literal: false
#
#   irb/locale.rb - internationalization module
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
  class Locale

    LOCALE_NAME_RE = %r[
      (?<language>[[:alpha:]]{2,3})
      (?:_  (?<territory>[[:alpha:]]{2,3}) )?
      (?:\. (?<codeset>[^@]+) )?
      (?:@  (?<modifier>.*) )?
    ]x
    LOCALE_DIR = "/lc/"

    @@legacy_encoding_alias_map = {}.freeze
    @@loaded = []

    def initialize(locale = nil)
      @override_encoding = nil
      @lang = @territory = @encoding_name = @modifier = nil
      @locale = locale || ENV["IRB_LANG"] || ENV["LC_MESSAGES"] || ENV["LC_ALL"] || ENV["LANG"] || "C"
      if m = LOCALE_NAME_RE.match(@locale)
        @lang, @territory, @encoding_name, @modifier = m[:language], m[:territory], m[:codeset], m[:modifier]

        if @encoding_name
          begin load 'irb/encoding_aliases.rb'; rescue LoadError; end
          if @encoding = @@legacy_encoding_alias_map[@encoding_name]
            warn(("%s is obsolete. use %s" % ["#{@lang}_#{@territory}.#{@encoding_name}", "#{@lang}_#{@territory}.#{@encoding.name}"]), uplevel: 1)
          end
          @encoding = Encoding.find(@encoding_name) rescue nil
        end
      end
      @encoding ||= (Encoding.find('locale') rescue Encoding::ASCII_8BIT)
    end

    attr_reader :lang, :territory, :modifier

    def encoding
      @override_encoding || @encoding
    end

    def String(mes)
      mes = super(mes)
      if encoding
        mes.encode(encoding, undef: :replace)
      else
        mes
      end
    end

    def format(*opts)
      String(super(*opts))
    end

    def gets(*rs)
      String(super(*rs))
    end

    def readline(*rs)
      String(super(*rs))
    end

    def print(*opts)
      ary = opts.collect{|opt| String(opt)}
      super(*ary)
    end

    def printf(*opts)
      s = format(*opts)
      print s
    end

    def puts(*opts)
      ary = opts.collect{|opt| String(opt)}
      super(*ary)
    end

    def require(file, priv = nil)
      rex = Regexp.new("lc/#{Regexp.quote(file)}\.(so|o|sl|rb)?")
      return false if $".find{|f| f =~ rex}

      case file
      when /\.rb$/
        begin
          load(file, priv)
          $".push file
          return true
        rescue LoadError
        end
      when /\.(so|o|sl)$/
        return super
      end

      begin
        load(f = file + ".rb")
        $".push f  #"
        return true
      rescue LoadError
        return ruby_require(file)
      end
    end

    alias toplevel_load load

    def load(file, priv=nil)
      found = find(file)
      if found
        unless @@loaded.include?(found)
          @@loaded << found # cache
          return real_load(found, priv)
        end
      else
        raise LoadError, "No such file to load -- #{file}"
      end
    end

    def find(file , paths = $:)
      dir = File.dirname(file)
      dir = "" if dir == "."
      base = File.basename(file)

      if dir.start_with?('/')
        return each_localized_path(dir, base).find{|full_path| File.readable? full_path}
      else
        return search_file(paths, dir, base)
      end
    end

    private
    def real_load(path, priv)
      src = MagicFile.open(path){|f| f.read}
      if priv
        eval("self", TOPLEVEL_BINDING).extend(Module.new {eval(src, nil, path)})
      else
        eval(src, TOPLEVEL_BINDING, path)
      end
    end

    # @param paths load paths in which IRB find a localized file.
    # @param dir directory
    # @param file basename to be localized
    #
    # typically, for the parameters and a <path> in paths, it searches
    #   <path>/<dir>/<locale>/<file>
    def search_file(lib_paths, dir, file)
      each_localized_path(dir, file) do |lc_path|
        lib_paths.each do |libpath|
          full_path = File.join(libpath, lc_path)
          return full_path if File.readable?(full_path)
        end
        redo if defined?(Gem) and Gem.try_activate(lc_path)
      end
      nil
    end

    def each_localized_path(dir, file)
      return enum_for(:each_localized_path) unless block_given?
      each_sublocale do |lc|
        yield lc.nil? ? File.join(dir, LOCALE_DIR, file) : File.join(dir, LOCALE_DIR, lc, file)
      end
    end

    def each_sublocale
      if @lang
        if @territory
          if @encoding_name
            yield "#{@lang}_#{@territory}.#{@encoding_name}@#{@modifier}" if @modifier
            yield "#{@lang}_#{@territory}.#{@encoding_name}"
          end
          yield "#{@lang}_#{@territory}@#{@modifier}" if @modifier
          yield "#{@lang}_#{@territory}"
        end
        if @encoding_name
          yield "#{@lang}.#{@encoding_name}@#{@modifier}" if @modifier
          yield "#{@lang}.#{@encoding_name}"
        end
        yield "#{@lang}@#{@modifier}" if @modifier
        yield "#{@lang}"
      end
      yield nil
    end
  end
end
PKDH[q����.share/gems/gems/irb-1.2.6/lib/irb/inspector.rbnu�[���# frozen_string_literal: false
#
#   irb/inspector.rb - inspect methods
#   	$Release Version: 0.9.6$
#   	$Revision: 1.19 $
#   	$Date: 2002/06/11 07:51:31 $
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB # :nodoc:


  # Convenience method to create a new Inspector, using the given +inspect+
  # proc, and optional +init+ proc and passes them to Inspector.new
  #
  #     irb(main):001:0> ins = IRB::Inspector(proc{ |v| "omg! #{v}" })
  #     irb(main):001:0> IRB.CurrentContext.inspect_mode = ins # => omg! #<IRB::Inspector:0x007f46f7ba7d28>
  #     irb(main):001:0> "what?" #=> omg! what?
  #
  def IRB::Inspector(inspect, init = nil)
    Inspector.new(inspect, init)
  end

  # An irb inspector
  #
  # In order to create your own custom inspector there are two things you
  # should be aware of:
  #
  # Inspector uses #inspect_value, or +inspect_proc+, for output of return values.
  #
  # This also allows for an optional #init+, or +init_proc+, which is called
  # when the inspector is activated.
  #
  # Knowing this, you can create a rudimentary inspector as follows:
  #
  #     irb(main):001:0> ins = IRB::Inspector.new(proc{ |v| "omg! #{v}" })
  #     irb(main):001:0> IRB.CurrentContext.inspect_mode = ins # => omg! #<IRB::Inspector:0x007f46f7ba7d28>
  #     irb(main):001:0> "what?" #=> omg! what?
  #
  class Inspector
    # Default inspectors available to irb, this includes:
    #
    # +:pp+::       Using Kernel#pretty_inspect
    # +:yaml+::     Using YAML.dump
    # +:marshal+::  Using Marshal.dump
    INSPECTORS = {}

    # Determines the inspector to use where +inspector+ is one of the keys passed
    # during inspector definition.
    def self.keys_with_inspector(inspector)
      INSPECTORS.select{|k,v| v == inspector}.collect{|k, v| k}
    end

    # Example
    #
    #     Inspector.def_inspector(key, init_p=nil){|v| v.inspect}
    #     Inspector.def_inspector([key1,..], init_p=nil){|v| v.inspect}
    #     Inspector.def_inspector(key, inspector)
    #     Inspector.def_inspector([key1,...], inspector)
    def self.def_inspector(key, arg=nil, &block)
      if block_given?
        inspector = IRB::Inspector(block, arg)
      else
        inspector = arg
      end

      case key
      when Array
        for k in key
          def_inspector(k, inspector)
        end
      when Symbol
        INSPECTORS[key] = inspector
        INSPECTORS[key.to_s] = inspector
      when String
        INSPECTORS[key] = inspector
        INSPECTORS[key.intern] = inspector
      else
        INSPECTORS[key] = inspector
      end
    end

    # Creates a new inspector object, using the given +inspect_proc+ when
    # output return values in irb.
    def initialize(inspect_proc, init_proc = nil)
      @init = init_proc
      @inspect = inspect_proc
    end

    # Proc to call when the inspector is activated, good for requiring
    # dependent libraries.
    def init
      @init.call if @init
    end

    # Proc to call when the input is evaluated and output in irb.
    def inspect_value(v)
      @inspect.call(v)
    end
  end

  Inspector.def_inspector([false, :to_s, :raw]){|v| v.to_s}
  Inspector.def_inspector([true, :p, :inspect]){|v|
    begin
      result = v.inspect
      if IRB.conf[:MAIN_CONTEXT]&.use_colorize? && Color.inspect_colorable?(v)
        result = Color.colorize_code(result)
      end
      result
    rescue NoMethodError
      puts "(Object doesn't support #inspect)"
      ''
    end
  }
  Inspector.def_inspector([:pp, :pretty_inspect], proc{require "pp"}){|v|
    result = v.pretty_inspect.chomp
    if IRB.conf[:MAIN_CONTEXT]&.use_colorize? && Color.inspect_colorable?(v)
      result = Color.colorize_code(result)
    end
    result
  }
  Inspector.def_inspector([:yaml, :YAML], proc{require "yaml"}){|v|
    begin
      YAML.dump(v)
    rescue
      puts "(can't dump yaml. use inspect)"
      v.inspect
    end
  }

  Inspector.def_inspector([:marshal, :Marshal, :MARSHAL, Marshal]){|v|
    Marshal.dump(v)
  }
end
PKDH[Ɨ]�%�%/share/gems/gems/irb-1.2.6/lib/irb/completion.rbnu�[���# frozen_string_literal: false
#
#   irb/completion.rb -
#   	$Release Version: 0.9$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ishitsuka.com)
#       From Original Idea of shugo@ruby-lang.org
#

autoload :RDoc, "rdoc"

module IRB
  module InputCompletor # :nodoc:


    # Set of reserved words used by Ruby, you should not use these for
    # constants or variables
    ReservedWords = %w[
      __ENCODING__ __LINE__ __FILE__
      BEGIN END
      alias and
      begin break
      case class
      def defined? do
      else elsif end ensure
      false for
      if in
      module
      next nil not
      or
      redo rescue retry return
      self super
      then true
      undef unless until
      when while
      yield
    ]

    BASIC_WORD_BREAK_CHARACTERS = " \t\n`><=;|&{("

    CompletionProc = proc { |input|
      retrieve_completion_data(input).compact.map{ |i| i.encode(Encoding.default_external) }
    }

    def self.retrieve_completion_data(input, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding, doc_namespace: false)
      case input
      when /^((["'`]).*\2)\.([^.]*)$/
        # String
        receiver = $1
        message = Regexp.quote($3)

        candidates = String.instance_methods.collect{|m| m.to_s}
        if doc_namespace
          "String.#{message}"
        else
          select_message(receiver, message, candidates)
        end

      when /^(\/[^\/]*\/)\.([^.]*)$/
        # Regexp
        receiver = $1
        message = Regexp.quote($2)

        candidates = Regexp.instance_methods.collect{|m| m.to_s}
        if doc_namespace
          "Regexp.#{message}"
        else
          select_message(receiver, message, candidates)
        end

      when /^([^\]]*\])\.([^.]*)$/
        # Array
        receiver = $1
        message = Regexp.quote($2)

        candidates = Array.instance_methods.collect{|m| m.to_s}
        if doc_namespace
          "Array.#{message}"
        else
          select_message(receiver, message, candidates)
        end

      when /^([^\}]*\})\.([^.]*)$/
        # Proc or Hash
        receiver = $1
        message = Regexp.quote($2)

        proc_candidates = Proc.instance_methods.collect{|m| m.to_s}
        hash_candidates = Hash.instance_methods.collect{|m| m.to_s}
        if doc_namespace
          ["Proc.#{message}", "Hash.#{message}"]
        else
          select_message(receiver, message, proc_candidates | hash_candidates)
        end

      when /^(:[^:.]*)$/
        # Symbol
        return nil if doc_namespace
        sym = $1
        candidates = Symbol.all_symbols.collect do |s|
          ":" + s.id2name.encode(Encoding.default_external)
        rescue Encoding::UndefinedConversionError
          # ignore
        end
        candidates.grep(/^#{Regexp.quote(sym)}/)

      when /^::([A-Z][^:\.\(]*)$/
        # Absolute Constant or class methods
        receiver = $1
        candidates = Object.constants.collect{|m| m.to_s}
        if doc_namespace
          candidates.find { |i| i == receiver }
        else
          candidates.grep(/^#{receiver}/).collect{|e| "::" + e}
        end

      when /^([A-Z].*)::([^:.]*)$/
        # Constant or class methods
        receiver = $1
        message = Regexp.quote($2)
        begin
          candidates = eval("#{receiver}.constants.collect{|m| m.to_s}", bind)
          candidates |= eval("#{receiver}.methods.collect{|m| m.to_s}", bind)
        rescue Exception
          candidates = []
        end
        if doc_namespace
          "#{receiver}::#{message}"
        else
          select_message(receiver, message, candidates, "::")
        end

      when /^(:[^:.]+)(\.|::)([^.]*)$/
        # Symbol
        receiver = $1
        sep = $2
        message = Regexp.quote($3)

        candidates = Symbol.instance_methods.collect{|m| m.to_s}
        if doc_namespace
          "Symbol.#{message}"
        else
          select_message(receiver, message, candidates, sep)
        end

      when /^(?<num>-?(?:0[dbo])?[0-9_]+(?:\.[0-9_]+)?(?:(?:[eE][+-]?[0-9]+)?i?|r)?)(?<sep>\.|::)(?<mes>[^.]*)$/
        # Numeric
        receiver = $~[:num]
        sep = $~[:sep]
        message = Regexp.quote($~[:mes])

        begin
          instance = eval(receiver, bind)
          if doc_namespace
            "#{instance.class.name}.#{message}"
          else
            candidates = instance.methods.collect{|m| m.to_s}
            select_message(receiver, message, candidates, sep)
          end
        rescue Exception
          if doc_namespace
            nil
          else
            candidates = []
          end
        end

      when /^(-?0x[0-9a-fA-F_]+)(\.|::)([^.]*)$/
        # Numeric(0xFFFF)
        receiver = $1
        sep = $2
        message = Regexp.quote($3)

        begin
          instance = eval(receiver, bind)
          if doc_namespace
            "#{instance.class.name}.#{message}"
          else
            candidates = instance.methods.collect{|m| m.to_s}
            select_message(receiver, message, candidates, sep)
          end
        rescue Exception
          if doc_namespace
            nil
          else
            candidates = []
          end
        end

      when /^(\$[^.]*)$/
        # global var
        gvar = $1
        all_gvars = global_variables.collect{|m| m.to_s}
        if doc_namespace
          all_gvars.find{ |i| i == gvar }
        else
          all_gvars.grep(Regexp.new(Regexp.quote(gvar)))
        end

      when /^([^."].*)(\.|::)([^.]*)$/
        # variable.func or func.func
        receiver = $1
        sep = $2
        message = Regexp.quote($3)

        gv = eval("global_variables", bind).collect{|m| m.to_s}.push("true", "false", "nil")
        lv = eval("local_variables", bind).collect{|m| m.to_s}
        iv = eval("instance_variables", bind).collect{|m| m.to_s}
        cv = eval("self.class.constants", bind).collect{|m| m.to_s}

        if (gv | lv | iv | cv).include?(receiver) or /^[A-Z]/ =~ receiver && /\./ !~ receiver
          # foo.func and foo is var. OR
          # foo::func and foo is var. OR
          # foo::Const and foo is var. OR
          # Foo::Bar.func
          begin
            candidates = []
            rec = eval(receiver, bind)
            if sep == "::" and rec.kind_of?(Module)
              candidates = rec.constants.collect{|m| m.to_s}
            end
            candidates |= rec.methods.collect{|m| m.to_s}
          rescue Exception
            candidates = []
          end
        else
          # func1.func2
          candidates = []
          to_ignore = ignored_modules
          ObjectSpace.each_object(Module){|m|
            next if (to_ignore.include?(m) rescue true)
            candidates.concat m.instance_methods(false).collect{|x| x.to_s}
          }
          candidates.sort!
          candidates.uniq!
        end
        if doc_namespace
          "#{rec.class.name}#{sep}#{candidates.find{ |i| i == message }}"
        else
          select_message(receiver, message, candidates, sep)
        end

      when /^\.([^.]*)$/
        # unknown(maybe String)

        receiver = ""
        message = Regexp.quote($1)

        candidates = String.instance_methods(true).collect{|m| m.to_s}
        if doc_namespace
          "String.#{candidates.find{ |i| i == message }}"
        else
          select_message(receiver, message, candidates)
        end

      else
        candidates = eval("methods | private_methods | local_variables | instance_variables | self.class.constants", bind).collect{|m| m.to_s}
        candidates |= ReservedWords

        if doc_namespace
          candidates.find{ |i| i == input }
        else
          candidates.grep(/^#{Regexp.quote(input)}/)
        end
      end
    end

    PerfectMatchedProc = ->(matched, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding) {
      RDocRIDriver ||= RDoc::RI::Driver.new
      if matched =~ /\A(?:::)?RubyVM/ and not ENV['RUBY_YES_I_AM_NOT_A_NORMAL_USER']
        IRB.send(:easter_egg)
        return
      end
      namespace = retrieve_completion_data(matched, bind: bind, doc_namespace: true)
      return unless namespace
      if namespace.is_a?(Array)
        out = RDoc::Markup::Document.new
        namespace.each do |m|
          begin
            RDocRIDriver.add_method(out, m)
          rescue RDoc::RI::Driver::NotFoundError
          end
        end
        RDocRIDriver.display(out)
      else
        begin
          RDocRIDriver.display_names([namespace])
        rescue RDoc::RI::Driver::NotFoundError
        end
      end
    }

    # Set of available operators in Ruby
    Operators = %w[% & * ** + - / < << <= <=> == === =~ > >= >> [] []= ^ ! != !~]

    def self.select_message(receiver, message, candidates, sep = ".")
      candidates.grep(/^#{message}/).collect do |e|
        case e
        when /^[a-zA-Z_]/
          receiver + sep + e
        when /^[0-9]/
        when *Operators
          #receiver + " " + e
        end
      end
    end

    def self.ignored_modules
      # We could cache the result, but this is very fast already.
      # By using this approach, we avoid Module#name calls, which are
      # relatively slow when there are a lot of anonymous modules defined.
      s = {}

      scanner = lambda do |m|
        next if s.include?(m) # IRB::ExtendCommandBundle::EXCB recurses.
        s[m] = true
        m.constants(false).each do |c|
          value = m.const_get(c)
          scanner.call(value) if value.is_a?(Module)
        end
      end

      %i(IRB RubyLex).each do |sym|
        next unless Object.const_defined?(sym)
        scanner.call(Object.const_get(sym))
      end

      s.delete(IRB::Context) if defined?(IRB::Context)

      s
    end
  end
end
PKDH[��pp/share/gems/gems/irb-1.2.6/lib/irb/easter-egg.rbnu�[���require "reline"

module IRB
  class << self
    class Vec
      def initialize(x, y, z)
        @x, @y, @z = x, y, z
      end

      attr_reader :x, :y, :z

      def sub(other)
        Vec.new(@x - other.x, @y - other.y, @z - other.z)
      end

      def dot(other)
        @x*other.x + @y*other.y + @z*other.z
      end

      def cross(other)
        ox, oy, oz = other.x, other.y, other.z
        Vec.new(@y*oz-@z*oy, @z*ox-@x*oz, @x*oy-@y*ox)
      end

      def normalize
        r = Math.sqrt(self.dot(self))
        Vec.new(@x / r, @y / r, @z / r)
      end
    end

    class Canvas
      def initialize((h, w))
        @data = (0..h-2).map { [0] * w }
        @scale = [w / 2.0, h-2].min
        @center = Complex(w / 2, h-2)
      end

      def line((x1, y1), (x2, y2))
        p1 = Complex(x1, y1) / 2 * @scale + @center
        p2 = Complex(x2, y2) / 2 * @scale + @center
        line0(p1, p2)
      end

      private def line0(p1, p2)
        mid = (p1 + p2) / 2
        if (p1 - p2).abs < 1
          x, y = mid.rect
          @data[y / 2][x] |= (y % 2 > 1 ? 2 : 1)
        else
          line0(p1, mid)
          line0(p2, mid)
        end
      end

      def draw
        @data.each {|row| row.fill(0) }
        yield
        @data.map {|row| row.map {|n| " ',;"[n] }.join }.join("\n")
      end
    end

    class RubyModel
      def initialize
        @faces = init_ruby_model
      end

      def init_ruby_model
        cap_vertices    = (0..5).map {|i| Vec.new(*Complex.polar(1,  i        * Math::PI / 3).rect, 1) }
        middle_vertices = (0..5).map {|i| Vec.new(*Complex.polar(2, (i + 0.5) * Math::PI / 3).rect, 0) }
        bottom_vertex   = Vec.new(0, 0, -2)

        faces = [cap_vertices]
        6.times do |j|
          i = j-1
          faces << [cap_vertices[i], middle_vertices[i], cap_vertices[j]]
          faces << [cap_vertices[j], middle_vertices[i], middle_vertices[j]]
          faces << [middle_vertices[i], bottom_vertex, middle_vertices[j]]
        end

        faces
      end

      def render_frame(i)
        angle = i / 10.0
        dir = Vec.new(*Complex.polar(1, angle).rect, Math.sin(angle)).normalize
        dir2 = Vec.new(*Complex.polar(1, angle - Math::PI/2).rect, 0)
        up = dir.cross(dir2)
        nm = dir.cross(up)
        @faces.each do |vertices|
          v0, v1, v2, = vertices
          if v1.sub(v0).cross(v2.sub(v0)).dot(dir) > 0
            points = vertices.map {|p| [nm.dot(p), up.dot(p)] }
            (points + [points[0]]).each_cons(2) do |p1, p2|
              yield p1, p2
            end
          end
        end
      end
    end

    private def easter_egg(type = nil)
      type ||= [:logo, :dancing].sample
      case type
      when :logo
        File.open(File.join(__dir__, 'ruby_logo.aa')) do |f|
          require "rdoc"
          RDoc::RI::Driver.new.page do |io|
            IO.copy_stream(f, io)
          end
        end
      when :dancing
        begin
          canvas = Canvas.new(Reline.get_screen_size)
          Reline::IOGate.set_winch_handler do
            canvas = Canvas.new(Reline.get_screen_size)
          end
          ruby_model = RubyModel.new
          print "\e[?1049h"
          0.step do |i| # TODO (0..).each needs Ruby 2.6 or later
            buff = canvas.draw do
              ruby_model.render_frame(i) do |p1, p2|
                canvas.line(p1, p2)
              end
            end
            buff[0, 20] = "\e[0mPress Ctrl+C to stop\e[31m\e[1m"
            print "\e[H" + buff
            sleep 0.05
          end
        ensure
          print "\e[0m\e[?1049l"
        end
      end
    end
  end
end

IRB.send(:easter_egg, ARGV[0]&.to_sym) if $0 == __FILE__
PKDH[���h((,share/gems/gems/irb-1.2.6/lib/irb/version.rbnu�[���# frozen_string_literal: false
#
#   irb/version.rb - irb version definition file
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
#
#
#

module IRB # :nodoc:
  VERSION = "1.2.6"
  @RELEASE_VERSION = VERSION
  @LAST_UPDATE_DATE = "2020-09-14"
end
PKDH[��[��/share/gems/gems/irb-1.2.6/lib/irb/magic-file.rbnu�[���# frozen_string_literal: false
module IRB
  class << (MagicFile = Object.new)
    # see parser_magic_comment in parse.y
    ENCODING_SPEC_RE = %r"coding\s*[=:]\s*([[:alnum:]\-_]+)"

    def open(path)
      io = File.open(path, 'rb')
      line = io.gets
      line = io.gets if line[0,2] == "#!"
      encoding = detect_encoding(line)
      internal_encoding = encoding
      encoding ||= IRB.default_src_encoding
      io.rewind
      io.set_encoding(encoding, internal_encoding)

      if block_given?
        begin
          return (yield io)
        ensure
          io.close
        end
      else
        return io
      end
    end

    private
    def detect_encoding(line)
      return unless line[0] == ?#
      line = line[1..-1]
      line = $1 if line[/-\*-\s*(.*?)\s*-*-$/]
      return nil unless ENCODING_SPEC_RE =~ line
      encoding = $1
      return encoding.sub(/-(?:mac|dos|unix)/i, '')
    end
  end
end
PKDH[w���*share/gems/gems/irb-1.2.6/lib/irb/color.rbnu�[���# frozen_string_literal: true
require 'reline'
require 'ripper'
require 'irb/ruby-lex'

module IRB # :nodoc:
  module Color
    CLEAR     = 0
    BOLD      = 1
    UNDERLINE = 4
    REVERSE   = 7
    RED       = 31
    GREEN     = 32
    YELLOW    = 33
    BLUE      = 34
    MAGENTA   = 35
    CYAN      = 36

    TOKEN_KEYWORDS = {
      on_kw: ['nil', 'self', 'true', 'false', '__FILE__', '__LINE__'],
      on_const: ['ENV'],
    }
    private_constant :TOKEN_KEYWORDS

    # A constant of all-bit 1 to match any Ripper's state in #dispatch_seq
    ALL = -1
    private_constant :ALL

    begin
      # Following pry's colors where possible, but sometimes having a compromise like making
      # backtick and regexp as red (string's color, because they're sharing tokens).
      TOKEN_SEQ_EXPRS = {
        on_CHAR:            [[BLUE, BOLD],            ALL],
        on_backtick:        [[RED, BOLD],             ALL],
        on_comment:         [[BLUE, BOLD],            ALL],
        on_const:           [[BLUE, BOLD, UNDERLINE], ALL],
        on_embexpr_beg:     [[RED],                   ALL],
        on_embexpr_end:     [[RED],                   ALL],
        on_embvar:          [[RED],                   ALL],
        on_float:           [[MAGENTA, BOLD],         ALL],
        on_gvar:            [[GREEN, BOLD],           ALL],
        on_heredoc_beg:     [[RED],                   ALL],
        on_heredoc_end:     [[RED],                   ALL],
        on_ident:           [[BLUE, BOLD],            Ripper::EXPR_ENDFN],
        on_imaginary:       [[BLUE, BOLD],            ALL],
        on_int:             [[BLUE, BOLD],            ALL],
        on_kw:              [[GREEN],                 ALL],
        on_label:           [[MAGENTA],               ALL],
        on_label_end:       [[RED, BOLD],             ALL],
        on_qsymbols_beg:    [[RED, BOLD],             ALL],
        on_qwords_beg:      [[RED, BOLD],             ALL],
        on_rational:        [[BLUE, BOLD],            ALL],
        on_regexp_beg:      [[RED, BOLD],             ALL],
        on_regexp_end:      [[RED, BOLD],             ALL],
        on_symbeg:          [[YELLOW],                ALL],
        on_symbols_beg:     [[RED, BOLD],             ALL],
        on_tstring_beg:     [[RED, BOLD],             ALL],
        on_tstring_content: [[RED],                   ALL],
        on_tstring_end:     [[RED, BOLD],             ALL],
        on_words_beg:       [[RED, BOLD],             ALL],
        on_parse_error:     [[RED, REVERSE],          ALL],
        compile_error:      [[RED, REVERSE],          ALL],
      }
    rescue NameError
      # Give up highlighting Ripper-incompatible older Ruby
      TOKEN_SEQ_EXPRS = {}
    end
    private_constant :TOKEN_SEQ_EXPRS

    class << self
      def colorable?
        $stdout.tty? && supported? && (/mswin|mingw/ =~ RUBY_PLATFORM || (ENV.key?('TERM') && ENV['TERM'] != 'dumb'))
      end

      def inspect_colorable?(obj, seen: {}.compare_by_identity)
        case obj
        when String, Symbol, Regexp, Integer, Float, FalseClass, TrueClass, NilClass
          true
        when Hash
          without_circular_ref(obj, seen: seen) do
            obj.all? { |k, v| inspect_colorable?(k, seen: seen) && inspect_colorable?(v, seen: seen) }
          end
        when Array
          without_circular_ref(obj, seen: seen) do
            obj.all? { |o| inspect_colorable?(o, seen: seen) }
          end
        when Range
          inspect_colorable?(obj.begin, seen: seen) && inspect_colorable?(obj.end, seen: seen)
        when Module
          !obj.name.nil?
        else
          false
        end
      end

      def clear
        return '' unless colorable?
        "\e[#{CLEAR}m"
      end

      def colorize(text, seq)
        return text unless colorable?
        seq = seq.map { |s| "\e[#{const_get(s)}m" }.join('')
        "#{seq}#{text}#{clear}"
      end

      # If `complete` is false (code is incomplete), this does not warn compile_error.
      # This option is needed to avoid warning a user when the compile_error is happening
      # because the input is not wrong but just incomplete.
      def colorize_code(code, complete: true)
        return code unless colorable?

        symbol_state = SymbolState.new
        colored = +''
        length = 0

        scan(code, allow_last_error: !complete) do |token, str, expr|
          in_symbol = symbol_state.scan_token(token)
          str.each_line do |line|
            line = Reline::Unicode.escape_for_print(line)
            if seq = dispatch_seq(token, expr, line, in_symbol: in_symbol)
              colored << seq.map { |s| "\e[#{s}m" }.join('')
              colored << line.sub(/\Z/, clear)
            else
              colored << line
            end
          end
          length += str.bytesize
        end

        # give up colorizing incomplete Ripper tokens
        if length != code.bytesize
          return Reline::Unicode.escape_for_print(code)
        end

        colored
      end

      private

      def without_circular_ref(obj, seen:, &block)
        return false if seen.key?(obj)
        seen[obj] = true
        block.call
      ensure
        seen.delete(obj)
      end

      def supported?
        return @supported if defined?(@supported)
        @supported = Ripper::Lexer::Elem.method_defined?(:state)
      end

      def scan(code, allow_last_error:)
        pos = [1, 0]

        verbose, $VERBOSE = $VERBOSE, nil
        RubyLex.compile_with_errors_suppressed(code) do |inner_code, line_no|
          lexer = Ripper::Lexer.new(inner_code, '(ripper)', line_no)
          if lexer.respond_to?(:scan) # Ruby 2.7+
            lexer.scan.each do |elem|
              str = elem.tok
              next if allow_last_error and /meets end of file|unexpected end-of-input/ =~ elem.message
              next if ([elem.pos[0], elem.pos[1] + str.bytesize] <=> pos) <= 0

              str.each_line do |line|
                if line.end_with?("\n")
                  pos[0] += 1
                  pos[1] = 0
                else
                  pos[1] += line.bytesize
                end
              end

              yield(elem.event, str, elem.state)
            end
          else
            lexer.parse.each do |elem|
              yield(elem.event, elem.tok, elem.state)
            end
          end
        end
        $VERBOSE = verbose
      end

      def dispatch_seq(token, expr, str, in_symbol:)
        if token == :on_parse_error or token == :compile_error
          TOKEN_SEQ_EXPRS[token][0]
        elsif in_symbol
          [YELLOW]
        elsif TOKEN_KEYWORDS.fetch(token, []).include?(str)
          [CYAN, BOLD]
        elsif (seq, exprs = TOKEN_SEQ_EXPRS[token]; (expr & (exprs || 0)) != 0)
          seq
        else
          nil
        end
      end
    end

    # A class to manage a state to know whether the current token is for Symbol or not.
    class SymbolState
      def initialize
        # Push `true` to detect Symbol. `false` to increase the nest level for non-Symbol.
        @stack = []
      end

      # Return true if the token is a part of Symbol.
      def scan_token(token)
        prev_state = @stack.last
        case token
        when :on_symbeg, :on_symbols_beg, :on_qsymbols_beg
          @stack << true
        when :on_ident, :on_op, :on_const, :on_ivar, :on_cvar, :on_gvar, :on_kw
          if @stack.last # Pop only when it's Symbol
            @stack.pop
            return prev_state
          end
        when :on_tstring_beg
          @stack << false
        when :on_embexpr_beg
          @stack << false
          return prev_state
        when :on_tstring_end # :on_tstring_end may close Symbol
          @stack.pop
          return prev_state
        when :on_embexpr_end
          @stack.pop
        end
        @stack.last
      end
    end
    private_constant :SymbolState
  end
end
PKDH[o�]���1share/gems/gems/irb-1.2.6/lib/irb/lc/help-messagenu�[���# -*- coding: utf-8 -*-
#
#   irb/lc/help-message.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
Usage:  irb.rb [options] [programfile] [arguments]
  -f		    Suppress read of ~/.irbrc
  -d                Set $DEBUG to true (same as `ruby -d')
  -r load-module    Same as `ruby -r'
  -I path           Specify $LOAD_PATH directory
  -U                Same as `ruby -U`
  -E enc            Same as `ruby -E`
  -w                Same as `ruby -w`
  -W[level=2]       Same as `ruby -W`
  --context-mode n  Set n[0-3] to method to create Binding Object,
                    when new workspace was created
  --echo            Show result(default)
  --noecho          Don't show result
  --inspect         Use `inspect' for output
  --noinspect       Don't use inspect for output
  --multiline       Use multiline editor module
  --nomultiline     Don't use multiline editor module
  --singleline      Use singleline editor module
  --nosingleline    Don't use singleline editor module
  --colorize        Use colorization
  --nocolorize      Don't use colorization
  --prompt prompt-mode/--prompt-mode prompt-mode
		    Switch prompt mode. Pre-defined prompt modes are
		    `default', `simple', `xmp' and `inf-ruby'
  --inf-ruby-mode   Use prompt appropriate for inf-ruby-mode on emacs.
                    Suppresses --multiline and --singleline.
  --sample-book-mode/--simple-prompt
                    Simple prompt mode
  --noprompt        No prompt mode
  --single-irb      Share self with sub-irb.
  --tracer          Display trace for each execution of commands.
  --back-trace-limit n
		    Display backtrace top n and tail n. The default
		    value is 16.
  --verbose         Show details
  --noverbose       Don't show details
  -v, --version	    Print the version of irb
  -h, --help        Print help
  --                Separate options of irb from the list of command-line args

# vim:fileencoding=utf-8
PKDH[,9Yk-share/gems/gems/irb-1.2.6/lib/irb/lc/error.rbnu�[���# frozen_string_literal: false
#
#   irb/lc/error.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

# :stopdoc:
module IRB
  class UnrecognizedSwitch < StandardError
    def initialize(val)
      super("Unrecognized switch: #{val}")
    end
  end
  class NotImplementedError < StandardError
    def initialize(val)
      super("Need to define `#{val}'")
    end
  end
  class CantReturnToNormalMode < StandardError
    def initialize
      super("Can't return to normal mode.")
    end
  end
  class IllegalParameter < StandardError
    def initialize(val)
      super("Invalid parameter(#{val}).")
    end
  end
  class IrbAlreadyDead < StandardError
    def initialize
      super("Irb is already dead.")
    end
  end
  class IrbSwitchedToCurrentThread < StandardError
    def initialize
      super("Switched to current thread.")
    end
  end
  class NoSuchJob < StandardError
    def initialize(val)
      super("No such job(#{val}).")
    end
  end
  class CantShiftToMultiIrbMode < StandardError
    def initialize
      super("Can't shift to multi irb mode.")
    end
  end
  class CantChangeBinding < StandardError
    def initialize(val)
      super("Can't change binding to (#{val}).")
    end
  end
  class UndefinedPromptMode < StandardError
    def initialize(val)
      super("Undefined prompt mode(#{val}).")
    end
  end
  class IllegalRCGenerator < StandardError
    def initialize
      super("Define illegal RC_NAME_GENERATOR.")
    end
  end
end
# :startdoc:
PKDH[Ȇ@Dj
j
4share/gems/gems/irb-1.2.6/lib/irb/lc/ja/help-messagenu�[���# -*- coding: utf-8 -*-
#   irb/lc/ja/help-message.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
Usage:  irb.rb [options] [programfile] [arguments]
  -f		    ~/.irbrc を読み込まない.
  -d                $DEBUG をtrueにする(ruby -d と同じ)
  -r load-module    ruby -r と同じ.
  -I path           $LOAD_PATH に path を追加する.
  -U                ruby -U と同じ.
  -E enc            ruby -E と同じ.
  -w                ruby -w と同じ.
  -W[level=2]       ruby -W と同じ.
  --context-mode n  新しいワークスペースを作成した時に関連する Binding
		    オブジェクトの作成方法を 0 から 3 のいずれかに設定する.
  --echo	    実行結果を表示する(デフォルト).
  --noecho	    実行結果を表示しない.
  --inspect	    結果出力にinspectを用いる.
  --noinspect	    結果出力にinspectを用いない.
  --multiline       マルチラインエディタを利用する.
  --nomultiline     マルチラインエディタを利用しない.
  --singleline      シングルラインエディタを利用する.
  --nosingleline    シングルラインエディタを利用しない.
  --colorize	    色付けを利用する.
  --nocolorize	    色付けを利用しない.
  --prompt prompt-mode/--prompt-mode prompt-mode
		    プロンプトモードを切替えます. 現在定義されているプ
		    ロンプトモードは, default, simple, xmp, inf-rubyが
		    用意されています.
  --inf-ruby-mode   emacsのinf-ruby-mode用のプロンプト表示を行なう. 特
                    に指定がない限り, シングルラインエディタとマルチラ
                    インエディタは使わなくなる.
  --sample-book-mode/--simple-prompt
		    非常にシンプルなプロンプトを用いるモードです.
  --noprompt	    プロンプト表示を行なわない.
  --single-irb	    irb 中で self を実行して得られるオブジェクトをサ
		    ブ irb と共有する.
  --tracer	    コマンド実行時にトレースを行なう.
  --back-trace-limit n
		    バックトレース表示をバックトレースの頭から n, 後ろ
		    からnだけ行なう. デフォルトは16

  --verbose	    詳細なメッセージを出力する.
  --noverbose	    詳細なメッセージを出力しない(デフォルト).
  -v, --version	    irbのバージョンを表示する.
  -h, --help	    irb のヘルプを表示する.
  --		    以降のコマンドライン引数をオプションとして扱わない.

# vim:fileencoding=utf-8
PKDH[�.���0share/gems/gems/irb-1.2.6/lib/irb/lc/ja/error.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: false
#   irb/lc/ja/error.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

# :stopdoc:
module IRB
  class UnrecognizedSwitch < StandardError
    def initialize(val)
      super("スイッチ(#{val})が分りません")
    end
  end
  class NotImplementedError < StandardError
    def initialize(val)
      super("`#{val}'の定義が必要です")
    end
  end
  class CantReturnToNormalMode < StandardError
    def initialize
      super("Normalモードに戻れません.")
    end
  end
  class IllegalParameter < StandardError
    def initialize(val)
      super("パラメータ(#{val})が間違っています.")
    end
  end
  class IrbAlreadyDead < StandardError
    def initialize
      super("Irbは既に死んでいます.")
    end
  end
  class IrbSwitchedToCurrentThread < StandardError
    def initialize
      super("カレントスレッドに切り替わりました.")
    end
  end
  class NoSuchJob < StandardError
    def initialize(val)
      super("そのようなジョブ(#{val})はありません.")
    end
  end
  class CantShiftToMultiIrbMode < StandardError
    def initialize
      super("multi-irb modeに移れません.")
    end
  end
  class CantChangeBinding < StandardError
    def initialize(val)
      super("バインディング(#{val})に変更できません.")
    end
  end
  class UndefinedPromptMode < StandardError
    def initialize(val)
      super("プロンプトモード(#{val})は定義されていません.")
    end
  end
  class IllegalRCGenerator < StandardError
    def initialize
      super("RC_NAME_GENERATORが正しく定義されていません.")
    end
  end
end
# :startdoc:
# vim:fileencoding=utf-8
PKDH[\`9���;share/gems/gems/irb-1.2.6/lib/irb/lc/ja/encoding_aliases.rbnu�[���# frozen_string_literal: false
# :stopdoc:
module IRB
  class Locale
    @@legacy_encoding_alias_map = {
      'ujis' => Encoding::EUC_JP,
      'euc' => Encoding::EUC_JP
    }.freeze
  end
end
# :startdoc:
PKDH[ᣟ�#�#1share/gems/gems/irb-1.2.6/lib/irb/input-method.rbnu�[���# frozen_string_literal: false
#
#   irb/input-method.rb - input methods used irb
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
require_relative 'src_encoding'
require_relative 'magic-file'
require_relative 'completion'
require 'io/console'
require 'reline'

module IRB
  STDIN_FILE_NAME = "(line)" # :nodoc:
  class InputMethod

    # Creates a new input method object
    def initialize(file = STDIN_FILE_NAME)
      @file_name = file
    end
    # The file name of this input method, usually given during initialization.
    attr_reader :file_name

    # The irb prompt associated with this input method
    attr_accessor :prompt

    # Reads the next line from this input method.
    #
    # See IO#gets for more information.
    def gets
      fail NotImplementedError, "gets"
    end
    public :gets

    def winsize
      if instance_variable_defined?(:@stdout)
        @stdout.winsize
      else
        [24, 80]
      end
    end

    # Whether this input method is still readable when there is no more data to
    # read.
    #
    # See IO#eof for more information.
    def readable_after_eof?
      false
    end

    # For debug message
    def inspect
      'Abstract InputMethod'
    end
  end

  class StdioInputMethod < InputMethod
    # Creates a new input method object
    def initialize
      super
      @line_no = 0
      @line = []
      @stdin = IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
      @stdout = IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
    end

    # Reads the next line from this input method.
    #
    # See IO#gets for more information.
    def gets
      print @prompt
      line = @stdin.gets
      @line[@line_no += 1] = line
    end

    # Whether the end of this input method has been reached, returns +true+ if
    # there is no more data to read.
    #
    # See IO#eof? for more information.
    def eof?
      @stdin.eof?
    end

    # Whether this input method is still readable when there is no more data to
    # read.
    #
    # See IO#eof for more information.
    def readable_after_eof?
      true
    end

    # Returns the current line number for #io.
    #
    # #line counts the number of times #gets is called.
    #
    # See IO#lineno for more information.
    def line(line_no)
      @line[line_no]
    end

    # The external encoding for standard input.
    def encoding
      @stdin.external_encoding
    end

    # For debug message
    def inspect
      'StdioInputMethod'
    end
  end

  # Use a File for IO with irb, see InputMethod
  class FileInputMethod < InputMethod
    # Creates a new input method object
    def initialize(file)
      super
      @io = IRB::MagicFile.open(file)
    end
    # The file name of this input method, usually given during initialization.
    attr_reader :file_name

    # Whether the end of this input method has been reached, returns +true+ if
    # there is no more data to read.
    #
    # See IO#eof? for more information.
    def eof?
      @io.eof?
    end

    # Reads the next line from this input method.
    #
    # See IO#gets for more information.
    def gets
      print @prompt
      @io.gets
    end

    # The external encoding for standard input.
    def encoding
      @io.external_encoding
    end

    # For debug message
    def inspect
      'FileInputMethod'
    end
  end

  begin
    class ReadlineInputMethod < InputMethod
      def self.initialize_readline
        require "readline"
      rescue LoadError
      else
        include ::Readline
      end

      # Creates a new input method object using Readline
      def initialize
        self.class.initialize_readline
        if Readline.respond_to?(:encoding_system_needs)
          IRB.__send__(:set_encoding, Readline.encoding_system_needs.name, override: false)
        end
        super

        @line_no = 0
        @line = []
        @eof = false

        @stdin = IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
        @stdout = IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")

        if Readline.respond_to?("basic_word_break_characters=")
          Readline.basic_word_break_characters = IRB::InputCompletor::BASIC_WORD_BREAK_CHARACTERS
        end
        Readline.completion_append_character = nil
        Readline.completion_proc = IRB::InputCompletor::CompletionProc
      end

      # Reads the next line from this input method.
      #
      # See IO#gets for more information.
      def gets
        Readline.input = @stdin
        Readline.output = @stdout
        if l = readline(@prompt, false)
          HISTORY.push(l) if !l.empty?
          @line[@line_no += 1] = l + "\n"
        else
          @eof = true
          l
        end
      end

      # Whether the end of this input method has been reached, returns +true+
      # if there is no more data to read.
      #
      # See IO#eof? for more information.
      def eof?
        @eof
      end

      # Whether this input method is still readable when there is no more data to
      # read.
      #
      # See IO#eof for more information.
      def readable_after_eof?
        true
      end

      # Returns the current line number for #io.
      #
      # #line counts the number of times #gets is called.
      #
      # See IO#lineno for more information.
      def line(line_no)
        @line[line_no]
      end

      # The external encoding for standard input.
      def encoding
        @stdin.external_encoding
      end

      # For debug message
      def inspect
        readline_impl = (defined?(Reline) && Readline == Reline) ? 'Reline' : 'ext/readline'
        str = "ReadlineInputMethod with #{readline_impl} #{Readline::VERSION}"
        inputrc_path = File.expand_path(ENV['INPUTRC'] || '~/.inputrc')
        str += " and #{inputrc_path}" if File.exist?(inputrc_path)
        str
      end
    end
  end

  class ReidlineInputMethod < InputMethod
    include Reline
    # Creates a new input method object using Readline
    def initialize
      IRB.__send__(:set_encoding, Reline.encoding_system_needs.name, override: false)
      super

      @line_no = 0
      @line = []
      @eof = false

      @stdin = ::IO.open(STDIN.to_i, :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")
      @stdout = ::IO.open(STDOUT.to_i, 'w', :external_encoding => IRB.conf[:LC_MESSAGES].encoding, :internal_encoding => "-")

      if Reline.respond_to?("basic_word_break_characters=")
        Reline.basic_word_break_characters = IRB::InputCompletor::BASIC_WORD_BREAK_CHARACTERS
      end
      Reline.completion_append_character = nil
      Reline.completion_proc = IRB::InputCompletor::CompletionProc
      Reline.output_modifier_proc =
        if IRB.conf[:USE_COLORIZE]
          proc do |output, complete: |
            next unless IRB::Color.colorable?
            IRB::Color.colorize_code(output, complete: complete)
          end
        else
          proc do |output|
            Reline::Unicode.escape_for_print(output)
          end
        end
      Reline.dig_perfect_match_proc = IRB::InputCompletor::PerfectMatchedProc
    end

    def check_termination(&block)
      @check_termination_proc = block
    end

    def dynamic_prompt(&block)
      @prompt_proc = block
    end

    def auto_indent(&block)
      @auto_indent_proc = block
    end

    # Reads the next line from this input method.
    #
    # See IO#gets for more information.
    def gets
      Reline.input = @stdin
      Reline.output = @stdout
      Reline.prompt_proc = @prompt_proc
      Reline.auto_indent_proc = @auto_indent_proc if @auto_indent_proc
      if l = readmultiline(@prompt, false, &@check_termination_proc)
        HISTORY.push(l) if !l.empty?
        @line[@line_no += 1] = l + "\n"
      else
        @eof = true
        l
      end
    end

    # Whether the end of this input method has been reached, returns +true+
    # if there is no more data to read.
    #
    # See IO#eof? for more information.
    def eof?
      @eof
    end

    # Whether this input method is still readable when there is no more data to
    # read.
    #
    # See IO#eof for more information.
    def readable_after_eof?
      true
    end

    # Returns the current line number for #io.
    #
    # #line counts the number of times #gets is called.
    #
    # See IO#lineno for more information.
    def line(line_no)
      @line[line_no]
    end

    # The external encoding for standard input.
    def encoding
      @stdin.external_encoding
    end

    # For debug message
    def inspect
      config = Reline::Config.new
      str = "ReidlineInputMethod with Reline #{Reline::VERSION}"
      if config.respond_to?(:inputrc_path)
        inputrc_path = File.expand_path(config.inputrc_path)
      else
        inputrc_path = File.expand_path(ENV['INPUTRC'] || '~/.inputrc')
      end
      str += " and #{inputrc_path}" if File.exist?(inputrc_path)
      str
    end
  end
end
PKDH[�&/��(�(3share/gems/gems/irb-1.2.6/lib/irb/extend-command.rbnu�[���# frozen_string_literal: false
#
#   irb/extend-command.rb - irb extend command
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#
module IRB # :nodoc:
  # Installs the default irb extensions command bundle.
  module ExtendCommandBundle
    EXCB = ExtendCommandBundle # :nodoc:

    # See #install_alias_method.
    NO_OVERRIDE = 0
    # See #install_alias_method.
    OVERRIDE_PRIVATE_ONLY = 0x01
    # See #install_alias_method.
    OVERRIDE_ALL = 0x02

    # Quits the current irb context
    #
    # +ret+ is the optional signal or message to send to Context#exit
    #
    # Same as <code>IRB.CurrentContext.exit</code>.
    def irb_exit(ret = 0)
      irb_context.exit(ret)
    end

    # Displays current configuration.
    #
    # Modifying the configuration is achieved by sending a message to IRB.conf.
    def irb_context
      IRB.CurrentContext
    end

    @ALIASES = [
      [:context, :irb_context, NO_OVERRIDE],
      [:conf, :irb_context, NO_OVERRIDE],
      [:irb_quit, :irb_exit, OVERRIDE_PRIVATE_ONLY],
      [:exit, :irb_exit, OVERRIDE_PRIVATE_ONLY],
      [:quit, :irb_exit, OVERRIDE_PRIVATE_ONLY],
    ]

    @EXTEND_COMMANDS = [
      [
        :irb_current_working_workspace, :CurrentWorkingWorkspace, "irb/cmd/chws",
        [:irb_print_working_workspace, OVERRIDE_ALL],
        [:irb_cwws, OVERRIDE_ALL],
        [:irb_pwws, OVERRIDE_ALL],
        [:cwws, NO_OVERRIDE],
        [:pwws, NO_OVERRIDE],
        [:irb_current_working_binding, OVERRIDE_ALL],
        [:irb_print_working_binding, OVERRIDE_ALL],
        [:irb_cwb, OVERRIDE_ALL],
        [:irb_pwb, OVERRIDE_ALL],
      ],
      [
        :irb_change_workspace, :ChangeWorkspace, "irb/cmd/chws",
        [:irb_chws, OVERRIDE_ALL],
        [:irb_cws, OVERRIDE_ALL],
        [:chws, NO_OVERRIDE],
        [:cws, NO_OVERRIDE],
        [:irb_change_binding, OVERRIDE_ALL],
        [:irb_cb, OVERRIDE_ALL],
        [:cb, NO_OVERRIDE],
      ],

      [
        :irb_workspaces, :Workspaces, "irb/cmd/pushws",
        [:workspaces, NO_OVERRIDE],
        [:irb_bindings, OVERRIDE_ALL],
        [:bindings, NO_OVERRIDE],
      ],
      [
        :irb_push_workspace, :PushWorkspace, "irb/cmd/pushws",
        [:irb_pushws, OVERRIDE_ALL],
        [:pushws, NO_OVERRIDE],
        [:irb_push_binding, OVERRIDE_ALL],
        [:irb_pushb, OVERRIDE_ALL],
        [:pushb, NO_OVERRIDE],
      ],
      [
        :irb_pop_workspace, :PopWorkspace, "irb/cmd/pushws",
        [:irb_popws, OVERRIDE_ALL],
        [:popws, NO_OVERRIDE],
        [:irb_pop_binding, OVERRIDE_ALL],
        [:irb_popb, OVERRIDE_ALL],
        [:popb, NO_OVERRIDE],
      ],

      [
        :irb_load, :Load, "irb/cmd/load"],
      [
        :irb_require, :Require, "irb/cmd/load"],
      [
        :irb_source, :Source, "irb/cmd/load",
        [:source, NO_OVERRIDE],
      ],

      [
        :irb, :IrbCommand, "irb/cmd/subirb"],
      [
        :irb_jobs, :Jobs, "irb/cmd/subirb",
        [:jobs, NO_OVERRIDE],
      ],
      [
        :irb_fg, :Foreground, "irb/cmd/subirb",
        [:fg, NO_OVERRIDE],
      ],
      [
        :irb_kill, :Kill, "irb/cmd/subirb",
        [:kill, OVERRIDE_PRIVATE_ONLY],
      ],

      [
        :irb_help, :Help, "irb/cmd/help",
        [:help, NO_OVERRIDE],
      ],

      [
        :irb_info, :Info, "irb/cmd/info"
      ],

    ]

    # Installs the default irb commands:
    #
    # +irb_current_working_workspace+::   Context#main
    # +irb_change_workspace+::            Context#change_workspace
    # +irb_workspaces+::                  Context#workspaces
    # +irb_push_workspace+::              Context#push_workspace
    # +irb_pop_workspace+::               Context#pop_workspace
    # +irb_load+::                        #irb_load
    # +irb_require+::                     #irb_require
    # +irb_source+::                      IrbLoader#source_file
    # +irb+::                             IRB.irb
    # +irb_jobs+::                        JobManager
    # +irb_fg+::                          JobManager#switch
    # +irb_kill+::                        JobManager#kill
    # +irb_help+::                        IRB@Command+line+options
    def self.install_extend_commands
      for args in @EXTEND_COMMANDS
        def_extend_command(*args)
      end
    end

    # Evaluate the given +cmd_name+ on the given +cmd_class+ Class.
    #
    # Will also define any given +aliases+ for the method.
    #
    # The optional +load_file+ parameter will be required within the method
    # definition.
    def self.def_extend_command(cmd_name, cmd_class, load_file = nil, *aliases)
      case cmd_class
      when Symbol
        cmd_class = cmd_class.id2name
      when String
      when Class
        cmd_class = cmd_class.name
      end

      if load_file
        line = __LINE__; eval %[
          def #{cmd_name}(*opts, &b)
            require "#{load_file}"
            arity = ExtendCommand::#{cmd_class}.instance_method(:execute).arity
            args = (1..(arity < 0 ? ~arity : arity)).map {|i| "arg" + i.to_s }
            args << "*opts" if arity < 0
            args << "&block"
            args = args.join(", ")
            line = __LINE__; eval %[
              unless self.class.class_variable_defined?(:@@#{cmd_name}_)
              self.class.class_variable_set(:@@#{cmd_name}_, true)
                def #{cmd_name}_(\#{args})
                  ExtendCommand::#{cmd_class}.execute(irb_context, \#{args})
                end
              end
            ], nil, __FILE__, line
            send :#{cmd_name}_, *opts, &b
          end
        ], nil, __FILE__, line
      else
        line = __LINE__; eval %[
          def #{cmd_name}(*opts, &b)
            ExtendCommand::#{cmd_class}.execute(irb_context, *opts, &b)
          end
        ], nil, __FILE__, line
      end

      for ali, flag in aliases
        @ALIASES.push [ali, cmd_name, flag]
      end
    end

    # Installs alias methods for the default irb commands, see
    # ::install_extend_commands.
    def install_alias_method(to, from, override = NO_OVERRIDE)
      to = to.id2name unless to.kind_of?(String)
      from = from.id2name unless from.kind_of?(String)

      if override == OVERRIDE_ALL or
          (override == OVERRIDE_PRIVATE_ONLY) && !respond_to?(to) or
          (override == NO_OVERRIDE) &&  !respond_to?(to, true)
        target = self
        (class << self; self; end).instance_eval{
          if target.respond_to?(to, true) &&
            !target.respond_to?(EXCB.irb_original_method_name(to), true)
            alias_method(EXCB.irb_original_method_name(to), to)
          end
          alias_method to, from
        }
      else
        print "irb: warn: can't alias #{to} from #{from}.\n"
      end
    end

    def self.irb_original_method_name(method_name) # :nodoc:
      "irb_" + method_name + "_org"
    end

    # Installs alias methods for the default irb commands on the given object
    # using #install_alias_method.
    def self.extend_object(obj)
      unless (class << obj; ancestors; end).include?(EXCB)
        super
        for ali, com, flg in @ALIASES
          obj.install_alias_method(ali, com, flg)
        end
      end
    end

    install_extend_commands
  end

  # Extends methods for the Context module
  module ContextExtender
    CE = ContextExtender # :nodoc:

    @EXTEND_COMMANDS = [
      [:eval_history=, "irb/ext/history.rb"],
      [:use_tracer=, "irb/ext/tracer.rb"],
      [:use_loader=, "irb/ext/use-loader.rb"],
      [:save_history=, "irb/ext/save-history.rb"],
    ]

    # Installs the default context extensions as irb commands:
    #
    # Context#eval_history=::   +irb/ext/history.rb+
    # Context#use_tracer=::     +irb/ext/tracer.rb+
    # Context#use_loader=::     +irb/ext/use-loader.rb+
    # Context#save_history=::   +irb/ext/save-history.rb+
    def self.install_extend_commands
      for args in @EXTEND_COMMANDS
        def_extend_command(*args)
      end
    end

    # Evaluate the given +command+ from the given +load_file+ on the Context
    # module.
    #
    # Will also define any given +aliases+ for the method.
    def self.def_extend_command(cmd_name, load_file, *aliases)
      line = __LINE__; Context.module_eval %[
        def #{cmd_name}(*opts, &b)
          Context.module_eval {remove_method(:#{cmd_name})}
          require "#{load_file}"
          send :#{cmd_name}, *opts, &b
        end
        for ali in aliases
          alias_method ali, cmd_name
        end
      ], __FILE__, line
    end

    CE.install_extend_commands
  end

  # A convenience module for extending Ruby methods.
  module MethodExtender
    # Extends the given +base_method+ with a prefix call to the given
    # +extend_method+.
    def def_pre_proc(base_method, extend_method)
      base_method = base_method.to_s
      extend_method = extend_method.to_s

      alias_name = new_alias_name(base_method)
      module_eval %[
        alias_method alias_name, base_method
        def #{base_method}(*opts)
          send :#{extend_method}, *opts
          send :#{alias_name}, *opts
        end
      ]
    end

    # Extends the given +base_method+ with a postfix call to the given
    # +extend_method+.
    def def_post_proc(base_method, extend_method)
      base_method = base_method.to_s
      extend_method = extend_method.to_s

      alias_name = new_alias_name(base_method)
      module_eval %[
        alias_method alias_name, base_method
        def #{base_method}(*opts)
          send :#{alias_name}, *opts
          send :#{extend_method}, *opts
        end
      ]
    end

    # Returns a unique method name to use as an alias for the given +name+.
    #
    # Usually returns <code>#{prefix}#{name}#{postfix}<num></code>, example:
    #
    #     new_alias_name('foo') #=> __alias_of__foo__
    #     def bar; end
    #     new_alias_name('bar') #=> __alias_of__bar__2
    def new_alias_name(name, prefix = "__alias_of__", postfix = "__")
      base_name = "#{prefix}#{name}#{postfix}"
      all_methods = instance_methods(true) + private_instance_methods(true)
      same_methods = all_methods.grep(/^#{Regexp.quote(base_name)}[0-9]*$/)
      return base_name if same_methods.empty?
      no = same_methods.size
      while !same_methods.include?(alias_name = base_name + no)
        no += 1
      end
      alias_name
    end
  end
end
PKDH[�V2�	�	2share/gems/gems/irb-1.2.6/lib/irb/output-method.rbnu�[���# frozen_string_literal: false
#
#   output-method.rb - output methods used by irb
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB
  # An abstract output class for IO in irb. This is mainly used internally by
  # IRB::Notifier. You can define your own output method to use with Irb.new,
  # or Context.new
  class OutputMethod
    class NotImplementedError < StandardError
      def initialize(val)
        super("Need to define `#{val}'")
      end
    end

    # Open this method to implement your own output method, raises a
    # NotImplementedError if you don't define #print in your own class.
    def print(*opts)
      raise NotImplementedError, "print"
    end

    # Prints the given +opts+, with a newline delimiter.
    def printn(*opts)
      print opts.join(" "), "\n"
    end

    # Extends IO#printf to format the given +opts+ for Kernel#sprintf using
    # #parse_printf_format
    def printf(format, *opts)
      if /(%*)%I/ =~ format
        format, opts = parse_printf_format(format, opts)
      end
      print sprintf(format, *opts)
    end

    # Returns an array of the given +format+ and +opts+ to be used by
    # Kernel#sprintf, if there was a successful Regexp match in the given
    # +format+ from #printf
    #
    #     %
    #     <flag>  [#0- +]
    #     <minimum field width> (\*|\*[1-9][0-9]*\$|[1-9][0-9]*)
    #     <precision>.(\*|\*[1-9][0-9]*\$|[1-9][0-9]*|)?
    #     #<length modifier>(hh|h|l|ll|L|q|j|z|t)
    #     <conversion specifier>[diouxXeEfgGcsb%]
    def parse_printf_format(format, opts)
      return format, opts if $1.size % 2 == 1
    end

    # Calls #print on each element in the given +objs+, followed by a newline
    # character.
    def puts(*objs)
      for obj in objs
        print(*obj)
        print "\n"
      end
    end

    # Prints the given +objs+ calling Object#inspect on each.
    #
    # See #puts for more detail.
    def pp(*objs)
      puts(*objs.collect{|obj| obj.inspect})
    end

    # Prints the given +objs+ calling Object#inspect on each and appending the
    # given +prefix+.
    #
    # See #puts for more detail.
    def ppx(prefix, *objs)
      puts(*objs.collect{|obj| prefix+obj.inspect})
    end

  end

  # A standard output printer
  class StdioOutputMethod < OutputMethod
    # Prints the given +opts+ to standard output, see IO#print for more
    # information.
    def print(*opts)
      STDOUT.print(*opts)
    end
  end
end
PKDH[fɁ�c"c")share/gems/gems/irb-1.2.6/lib/irb/init.rbnu�[���# frozen_string_literal: false
#
#   irb/init.rb - irb initialize module
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

module IRB # :nodoc:

  # initialize config
  def IRB.setup(ap_path, argv: ::ARGV)
    IRB.init_config(ap_path)
    IRB.init_error
    IRB.parse_opts(argv: argv)
    IRB.run_config
    IRB.load_modules

    unless @CONF[:PROMPT][@CONF[:PROMPT_MODE]]
      fail UndefinedPromptMode, @CONF[:PROMPT_MODE]
    end
  end

  # @CONF default setting
  def IRB.init_config(ap_path)
    # class instance variables
    @TRACER_INITIALIZED = false

    # default configurations
    unless ap_path and @CONF[:AP_NAME]
      ap_path = File.join(File.dirname(File.dirname(__FILE__)), "irb.rb")
    end
    @CONF[:AP_NAME] = File::basename(ap_path, ".rb")

    @CONF[:IRB_NAME] = "irb"
    @CONF[:IRB_LIB_PATH] = File.dirname(__FILE__)

    @CONF[:RC] = true
    @CONF[:LOAD_MODULES] = []
    @CONF[:IRB_RC] = nil

    @CONF[:USE_SINGLELINE] = false unless defined?(ReadlineInputMethod)
    @CONF[:USE_COLORIZE] = true
    @CONF[:INSPECT_MODE] = true
    @CONF[:USE_TRACER] = false
    @CONF[:USE_LOADER] = false
    @CONF[:IGNORE_SIGINT] = true
    @CONF[:IGNORE_EOF] = false
    @CONF[:ECHO] = nil
    @CONF[:ECHO_ON_ASSIGNMENT] = nil
    @CONF[:OMIT_ON_ASSIGNMENT] = nil
    @CONF[:VERBOSE] = nil

    @CONF[:EVAL_HISTORY] = nil
    @CONF[:SAVE_HISTORY] = 1000

    @CONF[:BACK_TRACE_LIMIT] = 16

    @CONF[:PROMPT] = {
      :NULL => {
        :PROMPT_I => nil,
        :PROMPT_N => nil,
        :PROMPT_S => nil,
        :PROMPT_C => nil,
        :RETURN => "%s\n"
      },
      :DEFAULT => {
        :PROMPT_I => "%N(%m):%03n:%i> ",
        :PROMPT_N => "%N(%m):%03n:%i> ",
        :PROMPT_S => "%N(%m):%03n:%i%l ",
        :PROMPT_C => "%N(%m):%03n:%i* ",
        :RETURN => "=> %s\n"
      },
      :CLASSIC => {
        :PROMPT_I => "%N(%m):%03n:%i> ",
        :PROMPT_N => "%N(%m):%03n:%i> ",
        :PROMPT_S => "%N(%m):%03n:%i%l ",
        :PROMPT_C => "%N(%m):%03n:%i* ",
        :RETURN => "%s\n"
      },
      :SIMPLE => {
        :PROMPT_I => ">> ",
        :PROMPT_N => ">> ",
        :PROMPT_S => "%l> ",
        :PROMPT_C => "?> ",
        :RETURN => "=> %s\n"
      },
      :INF_RUBY => {
        :PROMPT_I => "%N(%m):%03n:%i> ",
        :PROMPT_N => nil,
        :PROMPT_S => nil,
        :PROMPT_C => nil,
        :RETURN => "%s\n",
        :AUTO_INDENT => true
      },
      :XMP => {
        :PROMPT_I => nil,
        :PROMPT_N => nil,
        :PROMPT_S => nil,
        :PROMPT_C => nil,
        :RETURN => "    ==>%s\n"
      }
    }

    @CONF[:PROMPT_MODE] = (STDIN.tty? ? :DEFAULT : :NULL)
    @CONF[:AUTO_INDENT] = true

    @CONF[:CONTEXT_MODE] = 3 # use binding in function on TOPLEVEL_BINDING
    @CONF[:SINGLE_IRB] = false

    @CONF[:LC_MESSAGES] = Locale.new

    @CONF[:AT_EXIT] = []
  end

  def IRB.init_error
    @CONF[:LC_MESSAGES].load("irb/error.rb")
  end

  # option analyzing
  def IRB.parse_opts(argv: ::ARGV)
    load_path = []
    while opt = argv.shift
      case opt
      when "-f"
        @CONF[:RC] = false
      when "-d"
        $DEBUG = true
        $VERBOSE = true
      when "-w"
        $VERBOSE = true
      when /^-W(.+)?/
        opt = $1 || argv.shift
        case opt
        when "0"
          $VERBOSE = nil
        when "1"
          $VERBOSE = false
        else
          $VERBOSE = true
        end
      when /^-r(.+)?/
        opt = $1 || argv.shift
        @CONF[:LOAD_MODULES].push opt if opt
      when /^-I(.+)?/
        opt = $1 || argv.shift
        load_path.concat(opt.split(File::PATH_SEPARATOR)) if opt
      when '-U'
        set_encoding("UTF-8", "UTF-8")
      when /^-E(.+)?/, /^--encoding(?:=(.+))?/
        opt = $1 || argv.shift
        set_encoding(*opt.split(':', 2))
      when "--inspect"
        if /^-/ !~ argv.first
          @CONF[:INSPECT_MODE] = argv.shift
        else
          @CONF[:INSPECT_MODE] = true
        end
      when "--noinspect"
        @CONF[:INSPECT_MODE] = false
      when "--singleline", "--readline", "--legacy"
        @CONF[:USE_SINGLELINE] = true
      when "--nosingleline", "--noreadline"
        @CONF[:USE_SINGLELINE] = false
      when "--multiline", "--reidline"
        @CONF[:USE_MULTILINE] = true
      when "--nomultiline", "--noreidline"
        @CONF[:USE_MULTILINE] = false
      when "--echo"
        @CONF[:ECHO] = true
      when "--noecho"
        @CONF[:ECHO] = false
      when "--echo-on-assignment"
        @CONF[:ECHO_ON_ASSIGNMENT] = true
      when "--noecho-on-assignment"
        @CONF[:ECHO_ON_ASSIGNMENT] = false
      when "--omit-on-assignment"
        @CONF[:OMIT_ON_ASSIGNMENT] = true
      when "--noomit-on-assignment"
        @CONF[:OMIT_ON_ASSIGNMENT] = false
      when "--verbose"
        @CONF[:VERBOSE] = true
      when "--noverbose"
        @CONF[:VERBOSE] = false
      when "--colorize"
        @CONF[:USE_COLORIZE] = true
      when "--nocolorize"
        @CONF[:USE_COLORIZE] = false
      when /^--prompt-mode(?:=(.+))?/, /^--prompt(?:=(.+))?/
        opt = $1 || argv.shift
        prompt_mode = opt.upcase.tr("-", "_").intern
        @CONF[:PROMPT_MODE] = prompt_mode
      when "--noprompt"
        @CONF[:PROMPT_MODE] = :NULL
      when "--inf-ruby-mode"
        @CONF[:PROMPT_MODE] = :INF_RUBY
      when "--sample-book-mode", "--simple-prompt"
        @CONF[:PROMPT_MODE] = :SIMPLE
      when "--tracer"
        @CONF[:USE_TRACER] = true
      when /^--back-trace-limit(?:=(.+))?/
        @CONF[:BACK_TRACE_LIMIT] = ($1 || argv.shift).to_i
      when /^--context-mode(?:=(.+))?/
        @CONF[:CONTEXT_MODE] = ($1 || argv.shift).to_i
      when "--single-irb"
        @CONF[:SINGLE_IRB] = true
      when "-v", "--version"
        print IRB.version, "\n"
        exit 0
      when "-h", "--help"
        require_relative "help"
        IRB.print_usage
        exit 0
      when "--"
        if opt = argv.shift
          @CONF[:SCRIPT] = opt
          $0 = opt
        end
        break
      when /^-/
        fail UnrecognizedSwitch, opt
      else
        @CONF[:SCRIPT] = opt
        $0 = opt
        break
      end
    end
    load_path.collect! do |path|
      /\A\.\// =~ path ? path : File.expand_path(path)
    end
    $LOAD_PATH.unshift(*load_path)

  end

  # running config
  def IRB.run_config
    if @CONF[:RC]
      begin
        load rc_file
      rescue LoadError, Errno::ENOENT
      rescue # StandardError, ScriptError
        print "load error: #{rc_file}\n"
        print $!.class, ": ", $!, "\n"
        for err in $@[0, $@.size - 2]
          print "\t", err, "\n"
        end
      end
    end
  end

  IRBRC_EXT = "rc"
  def IRB.rc_file(ext = IRBRC_EXT)
    if !@CONF[:RC_NAME_GENERATOR]
      rc_file_generators do |rcgen|
        @CONF[:RC_NAME_GENERATOR] ||= rcgen
        if File.exist?(rcgen.call(IRBRC_EXT))
          @CONF[:RC_NAME_GENERATOR] = rcgen
          break
        end
      end
    end
    case rc_file = @CONF[:RC_NAME_GENERATOR].call(ext)
    when String
      return rc_file
    else
      fail IllegalRCNameGenerator
    end
  end

  # enumerate possible rc-file base name generators
  def IRB.rc_file_generators
    if irbrc = ENV["IRBRC"]
      yield proc{|rc| rc == "rc" ? irbrc : irbrc+rc}
    end
    if xdg_config_home = ENV["XDG_CONFIG_HOME"]
      irb_home = File.join(xdg_config_home, "irb")
      unless File.exist? irb_home
        require 'fileutils'
        FileUtils.mkdir_p irb_home
      end
      yield proc{|rc| irb_home + "/irb#{rc}"}
    end
    if home = ENV["HOME"]
      yield proc{|rc| home+"/.irb#{rc}"}
    end
    current_dir = Dir.pwd
    yield proc{|rc| current_dir+"/.config/irb/irb#{rc}"}
    yield proc{|rc| current_dir+"/.irb#{rc}"}
    yield proc{|rc| current_dir+"/irb#{rc.sub(/\A_?/, '.')}"}
    yield proc{|rc| current_dir+"/_irb#{rc}"}
    yield proc{|rc| current_dir+"/$irb#{rc}"}
  end

  # loading modules
  def IRB.load_modules
    for m in @CONF[:LOAD_MODULES]
      begin
        require m
      rescue LoadError => err
        warn "#{err.class}: #{err}", uplevel: 0
      end
    end
  end


  DefaultEncodings = Struct.new(:external, :internal)
  class << IRB
    private
    def set_encoding(extern, intern = nil, override: true)
      verbose, $VERBOSE = $VERBOSE, nil
      Encoding.default_external = extern unless extern.nil? || extern.empty?
      Encoding.default_internal = intern unless intern.nil? || intern.empty?
      [$stdin, $stdout, $stderr].each do |io|
        io.set_encoding(extern, intern)
      end
      if override
        @CONF[:LC_MESSAGES].instance_variable_set(:@override_encoding, extern)
      else
        @CONF[:LC_MESSAGES].instance_variable_set(:@encoding, extern)
      end
    ensure
      $VERBOSE = verbose
    end
  end
end
PKDH[DKC���.share/gems/gems/irb-1.2.6/lib/irb/workspace.rbnu�[���# frozen_string_literal: false
#
#   irb/workspace-binding.rb -
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require "delegate"

module IRB # :nodoc:
  class WorkSpace
    # Creates a new workspace.
    #
    # set self to main if specified, otherwise
    # inherit main from TOPLEVEL_BINDING.
    def initialize(*main)
      if main[0].kind_of?(Binding)
        @binding = main.shift
      elsif IRB.conf[:SINGLE_IRB]
        @binding = TOPLEVEL_BINDING
      else
        case IRB.conf[:CONTEXT_MODE]
        when 0	# binding in proc on TOPLEVEL_BINDING
          @binding = eval("proc{binding}.call",
                          TOPLEVEL_BINDING,
                          __FILE__,
                          __LINE__)
        when 1	# binding in loaded file
          require "tempfile"
          f = Tempfile.open("irb-binding")
          f.print <<EOF
      $binding = binding
EOF
          f.close
          load f.path
          @binding = $binding

        when 2	# binding in loaded file(thread use)
          unless defined? BINDING_QUEUE
            IRB.const_set(:BINDING_QUEUE, Thread::SizedQueue.new(1))
            Thread.abort_on_exception = true
            Thread.start do
              eval "require \"irb/ws-for-case-2\"", TOPLEVEL_BINDING, __FILE__, __LINE__
            end
            Thread.pass
          end
          @binding = BINDING_QUEUE.pop

        when 3	# binding in function on TOPLEVEL_BINDING(default)
          @binding = eval("self.class.send(:remove_method, :irb_binding) if defined?(irb_binding); private; def irb_binding; binding; end; irb_binding",
                          TOPLEVEL_BINDING,
                          __FILE__,
                          __LINE__ - 3)
        end
      end

      if main.empty?
        @main = eval("self", @binding)
      else
        @main = main[0]
      end
      IRB.conf[:__MAIN__] = @main

      unless main.empty?
        case @main
        when Module
          @binding = eval("IRB.conf[:__MAIN__].module_eval('binding', __FILE__, __LINE__)", @binding, __FILE__, __LINE__)
        else
          begin
            @binding = eval("IRB.conf[:__MAIN__].instance_eval('binding', __FILE__, __LINE__)", @binding, __FILE__, __LINE__)
          rescue TypeError
            fail CantChangeBinding, @main.inspect
          end
        end
      end

      case @main
      when Object
        use_delegator = @main.frozen?
      else
        use_delegator = true
      end

      if use_delegator
        @main = SimpleDelegator.new(@main)
        IRB.conf[:__MAIN__] = @main
        @main.singleton_class.class_eval do
          private
          define_method(:exit) do |*a, &b|
            # Do nothing, will be overridden
          end
          define_method(:binding, Kernel.instance_method(:binding))
          define_method(:local_variables, Kernel.instance_method(:local_variables))
        end
        @binding = eval("IRB.conf[:__MAIN__].instance_eval('binding', __FILE__, __LINE__)", @binding, *@binding.source_location)
      end

      @binding.local_variable_set(:_, nil)
    end

    # The Binding of this workspace
    attr_reader :binding
    # The top-level workspace of this context, also available as
    # <code>IRB.conf[:__MAIN__]</code>
    attr_reader :main

    # Evaluate the given +statements+ within the  context of this workspace.
    def evaluate(context, statements, file = __FILE__, line = __LINE__)
      eval(statements, @binding, file, line)
    end

    def local_variable_set(name, value)
      @binding.local_variable_set(name, value)
    end

    def local_variable_get(name)
      @binding.local_variable_get(name)
    end

    # error message manipulator
    def filter_backtrace(bt)
      return nil if bt =~ /\/irb\/.*\.rb/
      return nil if bt =~ /\/irb\.rb/
      case IRB.conf[:CONTEXT_MODE]
      when 1
        return nil if bt =~ %r!/tmp/irb-binding!
      when 3
        bt = bt.sub(/:\s*in `irb_binding'/, '')
      end
      bt
    end

    def code_around_binding
      if @binding.respond_to?(:source_location)
        file, pos = @binding.source_location
      else
        file, pos = @binding.eval('[__FILE__, __LINE__]')
      end

      if defined?(::SCRIPT_LINES__[file]) && lines = ::SCRIPT_LINES__[file]
        code = ::SCRIPT_LINES__[file].join('')
      else
        begin
          code = File.read(file)
        rescue SystemCallError
          return
        end
      end

      # NOT using #use_colorize? of IRB.conf[:MAIN_CONTEXT] because this method may be called before IRB::Irb#run
      use_colorize = IRB.conf.fetch(:USE_COLORIZE, true)
      if use_colorize
        lines = Color.colorize_code(code).lines
      else
        lines = code.lines
      end
      pos -= 1

      start_pos = [pos - 5, 0].max
      end_pos   = [pos + 5, lines.size - 1].min

      if use_colorize
        fmt = " %2s #{Color.colorize("%#{end_pos.to_s.length}d", [:BLUE, :BOLD])}: %s"
      else
        fmt = " %2s %#{end_pos.to_s.length}d: %s"
      end
      body = (start_pos..end_pos).map do |current_pos|
        sprintf(fmt, pos == current_pos ? '=>' : '', current_pos + 1, lines[current_pos])
      end.join("")
      "\nFrom: #{file} @ line #{pos + 1} :\n\n#{body}#{Color.clear}\n"
    end

    def IRB.delete_caller
    end
  end
end
PKDH[���I	I	.share/gems/gems/irb-1.2.6/lib/irb/ruby_logo.aanu�[���
                                             -+smJYYN?mm-
                                   HB"BBYT            TQg  NggT
                              9Q+g       Nm,T      8g          NJW
                          YS+              N2NJ"Sg               N?
                       BQg                  #(  gT Nggggk          J
                     5j                     NJ    NJ            NNge
                  #Q                        #JJ     NgT            N(
                @j                          bj         mT           J
              Bj                           @/d           NJ         (
            #q                            #((              NgT     #J
           5d                            #(t                  mT   $d
         #q                             @(@J                    NJB;
        @(                             5d ? HHH H HQmgggggggmN    qD
       5d                            #uN  2QdH                   E O
      5                             5JSd  Nd  NJH               @d j
     Fd                           @J4d     s     NQH           #d  (
    #(                          #o6d       Nd       NgH       #d  #d
    4                         B&Od          v          NgT   #d   F
   #(                       9JGd            NH            NgUd    F
   #d                    #GJQ                d             NP     $
   #J                 #U+#Q                  N            Q #     j
  j /W             BQ+ BQ                     d             NJ   NJ
  - NjJH      HBIjTQggPJQgW                   N        W     k   #J
 #J  b  HYWgggN       j s    Nag               d     NN      b   #d
 #J  5-              D   s         Ngg         N    d        Nd  F
 Fd BKH2            #+    s             NNgg    J Q           J  ]
 F H @  J           N      y                   K(d            P  I
 F4  E  N?         #d       y                #Q   NJ          E  j
 F   W   Nd        q         m             Bg       NxW       N(H-
 F   d    b       @           m          Hd            gW      vKJ
 NJ  d     K      d            s      Bg                 aT    FDd
  b #       d    N              m  BQ                      mV  N>
   e5       Nd  #d              NggggggQWH HHHH              NJ -
    m7       NW H            N                        HSVO1z=?11-
      NgTH    bB        kH   WBHWWHBHWmQgg&gggggNNN
           NNggggggNN
PKDH[:?�cBcB-share/gems/gems/irb-1.2.6/lib/irb/ruby-lex.rbnu�[���# frozen_string_literal: false
#
#   irb/ruby-lex.rb - ruby lexcal analyzer
#   	$Release Version: 0.9.6$
#   	$Revision$
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
#
#
#

require "ripper"
require "jruby" if RUBY_ENGINE == "jruby"

# :stopdoc:
class RubyLex

  class TerminateLineInput < StandardError
    def initialize
      super("Terminate Line Input")
    end
  end

  def initialize
    @exp_line_no = @line_no = 1
    @indent = 0
    @continue = false
    @line = ""
    @prompt = nil
  end

  def self.compile_with_errors_suppressed(code)
    line_no = 1
    begin
      result = yield code, line_no
    rescue ArgumentError
      code = ";\n#{code}"
      line_no = 0
      result = yield code, line_no
    end
    result
  end

  # io functions
  def set_input(io, p = nil, &block)
    @io = io
    if @io.respond_to?(:check_termination)
      @io.check_termination do |code|
        code.gsub!(/\s*\z/, '').concat("\n")
        ltype, indent, continue, code_block_open = check_state(code)
        if ltype or indent > 0 or continue or code_block_open
          false
        else
          true
        end
      end
    end
    if @io.respond_to?(:dynamic_prompt)
      @io.dynamic_prompt do |lines|
        lines << '' if lines.empty?
        result = []
        lines.each_index { |i|
          c = lines[0..i].map{ |l| l + "\n" }.join
          ltype, indent, continue, code_block_open = check_state(c)
          result << @prompt.call(ltype, indent, continue || code_block_open, @line_no + i)
        }
        result
      end
    end
    if p.respond_to?(:call)
      @input = p
    elsif block_given?
      @input = block
    else
      @input = Proc.new{@io.gets}
    end
  end

  def set_prompt(p = nil, &block)
    p = block if block_given?
    if p.respond_to?(:call)
      @prompt = p
    else
      @prompt = Proc.new{print p}
    end
  end

  def ripper_lex_without_warning(code)
    verbose, $VERBOSE = $VERBOSE, nil
    tokens = nil
    self.class.compile_with_errors_suppressed(code) do |inner_code, line_no|
      tokens = Ripper.lex(inner_code, '-', line_no)
    end
    $VERBOSE = verbose
    tokens
  end

  def set_auto_indent(context)
    if @io.respond_to?(:auto_indent) and context.auto_indent_mode
      @io.auto_indent do |lines, line_index, byte_pointer, is_newline|
        if is_newline
          md = lines[line_index - 1].match(/(\A +)/)
          prev_spaces = md.nil? ? 0 : md[1].count(' ')
          @tokens = ripper_lex_without_warning(lines[0..line_index].join("\n"))
          depth_difference = check_newline_depth_difference
          prev_spaces + depth_difference * 2
        else
          code = line_index.zero? ? '' : lines[0..(line_index - 1)].map{ |l| l + "\n" }.join
          last_line = lines[line_index]&.byteslice(0, byte_pointer)
          code += last_line if last_line
          @tokens = ripper_lex_without_warning(code)
          corresponding_token_depth = check_corresponding_token_depth
          if corresponding_token_depth
            corresponding_token_depth
          else
            nil
          end
        end
      end
    end
  end

  def check_state(code)
    @tokens = ripper_lex_without_warning(code)
    ltype = process_literal_type
    indent = process_nesting_level
    continue = process_continue
    code_block_open = check_code_block(code)
    [ltype, indent, continue, code_block_open]
  end

  def prompt
    if @prompt
      @prompt.call(@ltype, @indent, @continue, @line_no)
    end
  end

  def initialize_input
    @ltype = nil
    @indent = 0
    @continue = false
    @line = ""
    @exp_line_no = @line_no
    @code_block_open = false
  end

  def each_top_level_statement
    initialize_input
    catch(:TERM_INPUT) do
      loop do
        begin
          prompt
          unless l = lex
            throw :TERM_INPUT if @line == ''
          else
            @line_no += l.count("\n")
            next if l == "\n"
            @line.concat l
            if @code_block_open or @ltype or @continue or @indent > 0
              next
            end
          end
          if @line != "\n"
            @line.force_encoding(@io.encoding)
            yield @line, @exp_line_no
          end
          break if @io.eof?
          @line = ''
          @exp_line_no = @line_no

          @indent = 0
        rescue TerminateLineInput
          initialize_input
          prompt
        end
      end
    end
  end

  def lex
    line = @input.call
    if @io.respond_to?(:check_termination)
      return line # multiline
    end
    code = @line + (line.nil? ? '' : line)
    code.gsub!(/\s*\z/, '').concat("\n")
    @tokens = ripper_lex_without_warning(code)
    @continue = process_continue
    @code_block_open = check_code_block(code)
    @indent = process_nesting_level
    @ltype = process_literal_type
    line
  end

  def process_continue
    # last token is always newline
    if @tokens.size >= 2 and @tokens[-2][1] == :on_regexp_end
      # end of regexp literal
      return false
    elsif @tokens.size >= 2 and @tokens[-2][1] == :on_semicolon
      return false
    elsif @tokens.size >= 2 and @tokens[-2][1] == :on_kw and ['begin', 'else', 'ensure'].include?(@tokens[-2][2])
      return false
    elsif !@tokens.empty? and @tokens.last[2] == "\\\n"
      return true
    elsif @tokens.size >= 1 and @tokens[-1][1] == :on_heredoc_end # "EOH\n"
      return false
    elsif @tokens.size >= 2 and defined?(Ripper::EXPR_BEG) and @tokens[-2][3].anybits?(Ripper::EXPR_BEG | Ripper::EXPR_FNAME)
      # end of literal except for regexp
      return true
    end
    false
  end

  def check_code_block(code)
    return true if @tokens.empty?
    if @tokens.last[1] == :on_heredoc_beg
      return true
    end

    begin # check if parser error are available
      verbose, $VERBOSE = $VERBOSE, nil
      case RUBY_ENGINE
      when 'jruby'
        JRuby.compile_ir(code)
      else
        self.class.compile_with_errors_suppressed(code) do |inner_code, line_no|
          RubyVM::InstructionSequence.compile(inner_code, nil, nil, line_no)
        end
      end
    rescue EncodingError
      # This is for a hash with invalid encoding symbol, {"\xAE": 1}
    rescue SyntaxError => e
      case e.message
      when /unterminated (?:string|regexp) meets end of file/
        # "unterminated regexp meets end of file"
        #
        #   example:
        #     /
        #
        # "unterminated string meets end of file"
        #
        #   example:
        #     '
        return true
      when /syntax error, unexpected end-of-input/
        # "syntax error, unexpected end-of-input, expecting keyword_end"
        #
        #   example:
        #     if ture
        #       hoge
        #       if false
        #         fuga
        #       end
        return true
      when /syntax error, unexpected keyword_end/
        # "syntax error, unexpected keyword_end"
        #
        #   example:
        #     if (
        #     end
        #
        #   example:
        #     end
        return false
      when /syntax error, unexpected '\.'/
        # "syntax error, unexpected '.'"
        #
        #   example:
        #     .
        return false
      when /unexpected tREGEXP_BEG/
        # "syntax error, unexpected tREGEXP_BEG, expecting keyword_do or '{' or '('"
        #
        #   example:
        #     method / f /
        return false
      end
    ensure
      $VERBOSE = verbose
    end

    if defined?(Ripper::EXPR_BEG)
      last_lex_state = @tokens.last[3]
      if last_lex_state.allbits?(Ripper::EXPR_BEG)
        return false
      elsif last_lex_state.allbits?(Ripper::EXPR_DOT)
        return true
      elsif last_lex_state.allbits?(Ripper::EXPR_CLASS)
        return true
      elsif last_lex_state.allbits?(Ripper::EXPR_FNAME)
        return true
      elsif last_lex_state.allbits?(Ripper::EXPR_VALUE)
        return true
      elsif last_lex_state.allbits?(Ripper::EXPR_ARG)
        return false
      end
    end

    false
  end

  def process_nesting_level
    indent = 0
    in_oneliner_def = nil
    @tokens.each_with_index { |t, index|
      # detecting one-liner method definition
      if in_oneliner_def.nil?
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          in_oneliner_def = :ENDFN
        end
      else
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          # continuing
        elsif t[3].allbits?(Ripper::EXPR_BEG)
          if t[2] == '='
            in_oneliner_def = :BODY
          end
        elsif t[3].allbits?(Ripper::EXPR_END)
          if in_oneliner_def == :BODY
            # one-liner method definition
            indent -= 1
          end
          in_oneliner_def = nil
        else
          in_oneliner_def = nil
        end
      end

      case t[1]
      when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
        indent += 1
      when :on_rbracket, :on_rbrace, :on_rparen
        indent -= 1
      when :on_kw
        next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
        case t[2]
        when 'do'
          if index > 0 and @tokens[index - 1][3].anybits?(Ripper::EXPR_CMDARG | Ripper::EXPR_ENDFN | Ripper::EXPR_ARG)
            # method_with_block do; end
            indent += 1
          else
            # while cond do; end # also "until" or "for"
            # This "do" doesn't increment indent because "while" already
            # incremented.
          end
        when 'def', 'case', 'for', 'begin', 'class', 'module'
          indent += 1
        when 'if', 'unless', 'while', 'until'
          # postfix if/unless/while/until must be Ripper::EXPR_LABEL
          indent += 1 unless t[3].allbits?(Ripper::EXPR_LABEL)
        when 'end'
          indent -= 1
        end
      end
      # percent literals are not indented
    }
    indent
  end

  def check_newline_depth_difference
    depth_difference = 0
    open_brace_on_line = 0
    in_oneliner_def = nil
    @tokens.each_with_index do |t, index|
      # detecting one-liner method definition
      if in_oneliner_def.nil?
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          in_oneliner_def = :ENDFN
        end
      else
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          # continuing
        elsif t[3].allbits?(Ripper::EXPR_BEG)
          if t[2] == '='
            in_oneliner_def = :BODY
          end
        elsif t[3].allbits?(Ripper::EXPR_END)
          if in_oneliner_def == :BODY
            # one[-liner method definition
            depth_difference -= 1
          end
          in_oneliner_def = nil
        else
          in_oneliner_def = nil
        end
      end

      case t[1]
      when :on_ignored_nl, :on_nl, :on_comment
        if index != (@tokens.size - 1)
          depth_difference = 0
          open_brace_on_line = 0
        end
        next
      when :on_sp
        next
      end
      case t[1]
      when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
        depth_difference += 1
        open_brace_on_line += 1
      when :on_rbracket, :on_rbrace, :on_rparen
        depth_difference -= 1 if open_brace_on_line > 0
      when :on_kw
        next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
        case t[2]
        when 'do'
          if index > 0 and @tokens[index - 1][3].anybits?(Ripper::EXPR_CMDARG | Ripper::EXPR_ENDFN | Ripper::EXPR_ARG)
            # method_with_block do; end
            depth_difference += 1
          else
            # while cond do; end # also "until" or "for"
            # This "do" doesn't increment indent because "while" already
            # incremented.
          end
        when 'def', 'case', 'for', 'begin', 'class', 'module'
          depth_difference += 1
        when 'if', 'unless', 'while', 'until', 'rescue'
          # postfix if/unless/while/until/rescue must be Ripper::EXPR_LABEL
          unless t[3].allbits?(Ripper::EXPR_LABEL)
            depth_difference += 1
          end
        when 'else', 'elsif', 'ensure', 'when', 'in'
          depth_difference += 1
        end
      end
    end
    depth_difference
  end

  def check_corresponding_token_depth
    corresponding_token_depth = nil
    is_first_spaces_of_line = true
    is_first_printable_of_line = true
    spaces_of_nest = []
    spaces_at_line_head = 0
    open_brace_on_line = 0
    in_oneliner_def = nil
    @tokens.each_with_index do |t, index|
      # detecting one-liner method definition
      if in_oneliner_def.nil?
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          in_oneliner_def = :ENDFN
        end
      else
        if t[3].allbits?(Ripper::EXPR_ENDFN)
          # continuing
        elsif t[3].allbits?(Ripper::EXPR_BEG)
          if t[2] == '='
            in_oneliner_def = :BODY
          end
        elsif t[3].allbits?(Ripper::EXPR_END)
          if in_oneliner_def == :BODY
            # one-liner method definition
            if is_first_printable_of_line
              corresponding_token_depth = spaces_of_nest.pop
            else
              spaces_of_nest.pop
              corresponding_token_depth = nil
            end
          end
          in_oneliner_def = nil
        else
          in_oneliner_def = nil
        end
      end

      case t[1]
      when :on_ignored_nl, :on_nl, :on_comment
        corresponding_token_depth = nil
        spaces_at_line_head = 0
        is_first_spaces_of_line = true
        is_first_printable_of_line = true
        open_brace_on_line = 0
        next
      when :on_sp
        spaces_at_line_head = t[2].count(' ') if is_first_spaces_of_line
        is_first_spaces_of_line = false
        next
      end
      case t[1]
      when :on_lbracket, :on_lbrace, :on_lparen, :on_tlambeg
        spaces_of_nest.push(spaces_at_line_head + open_brace_on_line * 2)
        open_brace_on_line += 1
      when :on_rbracket, :on_rbrace, :on_rparen
        if is_first_printable_of_line
          corresponding_token_depth = spaces_of_nest.pop
        else
          spaces_of_nest.pop
          corresponding_token_depth = nil
        end
        open_brace_on_line -= 1
      when :on_kw
        next if index > 0 and @tokens[index - 1][3].allbits?(Ripper::EXPR_FNAME)
        case t[2]
        when 'def', 'do', 'case', 'for', 'begin', 'class', 'module'
          spaces_of_nest.push(spaces_at_line_head)
        when 'rescue'
          unless t[3].allbits?(Ripper::EXPR_LABEL)
            corresponding_token_depth = spaces_of_nest.last
          end
        when 'if', 'unless', 'while', 'until'
          # postfix if/unless/while/until must be Ripper::EXPR_LABEL
          unless t[3].allbits?(Ripper::EXPR_LABEL)
            spaces_of_nest.push(spaces_at_line_head)
          end
        when 'else', 'elsif', 'ensure', 'when', 'in'
          corresponding_token_depth = spaces_of_nest.last
        when 'end'
          if is_first_printable_of_line
            corresponding_token_depth = spaces_of_nest.pop
          else
            spaces_of_nest.pop
            corresponding_token_depth = nil
          end
        end
      end
      is_first_spaces_of_line = false
      is_first_printable_of_line = false
    end
    corresponding_token_depth
  end

  def check_string_literal
    i = 0
    start_token = []
    end_type = []
    while i < @tokens.size
      t = @tokens[i]
      case t[1]
      when :on_tstring_beg
        start_token << t
        end_type << [:on_tstring_end, :on_label_end]
      when :on_regexp_beg
        start_token << t
        end_type << :on_regexp_end
      when :on_symbeg
        acceptable_single_tokens = %i{on_ident on_const on_op on_cvar on_ivar on_gvar on_kw}
        if (i + 1) < @tokens.size and acceptable_single_tokens.all?{ |t| @tokens[i + 1][1] != t }
          start_token << t
          end_type << :on_tstring_end
        end
      when :on_backtick
        start_token << t
        end_type << :on_tstring_end
      when :on_qwords_beg, :on_words_beg, :on_qsymbols_beg, :on_symbols_beg
        start_token << t
        end_type << :on_tstring_end
      when :on_heredoc_beg
        start_token << t
        end_type << :on_heredoc_end
      when *end_type.last
        start_token.pop
        end_type.pop
      end
      i += 1
    end
    start_token.last.nil? ? '' : start_token.last
  end

  def process_literal_type
    start_token = check_string_literal
    case start_token[1]
    when :on_tstring_beg
      case start_token[2]
      when ?"      then ?"
      when /^%.$/  then ?"
      when /^%Q.$/ then ?"
      when ?'      then ?'
      when /^%q.$/ then ?'
      end
    when :on_regexp_beg   then ?/
    when :on_symbeg       then ?:
    when :on_backtick     then ?`
    when :on_qwords_beg   then ?]
    when :on_words_beg    then ?]
    when :on_qsymbols_beg then ?]
    when :on_symbols_beg  then ?]
    when :on_heredoc_beg
      start_token[2] =~ /<<[-~]?(['"`])[_a-zA-Z0-9]+\1/
      case $1
      when ?" then ?"
      when ?' then ?'
      when ?` then ?`
      else         ?"
      end
    else
      nil
    end
  end
end
# :startdoc:
PKDH[DM�..share/ruby/tmpdir.rbnu�[���# frozen_string_literal: true
#
# tmpdir - retrieve temporary directory path
#
# $Id$
#

require 'fileutils'
begin
  require 'etc.so'
rescue LoadError # rescue LoadError for miniruby
end

class Dir

  @@systmpdir ||= defined?(Etc.systmpdir) ? Etc.systmpdir : '/tmp'

  ##
  # Returns the operating system's temporary file path.

  def self.tmpdir
    tmp = nil
    [ENV['TMPDIR'], ENV['TMP'], ENV['TEMP'], @@systmpdir, '/tmp', '.'].each do |dir|
      next if !dir
      dir = File.expand_path(dir)
      if stat = File.stat(dir) and stat.directory? and stat.writable? and
          (!stat.world_writable? or stat.sticky?)
        tmp = dir
        break
      end rescue nil
    end
    raise ArgumentError, "could not find a temporary directory" unless tmp
    tmp
  end

  # Dir.mktmpdir creates a temporary directory.
  #
  # The directory is created with 0700 permission.
  # Application should not change the permission to make the temporary directory accessible from other users.
  #
  # The prefix and suffix of the name of the directory is specified by
  # the optional first argument, <i>prefix_suffix</i>.
  # - If it is not specified or nil, "d" is used as the prefix and no suffix is used.
  # - If it is a string, it is used as the prefix and no suffix is used.
  # - If it is an array, first element is used as the prefix and second element is used as a suffix.
  #
  #  Dir.mktmpdir {|dir| dir is ".../d..." }
  #  Dir.mktmpdir("foo") {|dir| dir is ".../foo..." }
  #  Dir.mktmpdir(["foo", "bar"]) {|dir| dir is ".../foo...bar" }
  #
  # The directory is created under Dir.tmpdir or
  # the optional second argument <i>tmpdir</i> if non-nil value is given.
  #
  #  Dir.mktmpdir {|dir| dir is "#{Dir.tmpdir}/d..." }
  #  Dir.mktmpdir(nil, "/var/tmp") {|dir| dir is "/var/tmp/d..." }
  #
  # If a block is given,
  # it is yielded with the path of the directory.
  # The directory and its contents are removed
  # using FileUtils.remove_entry before Dir.mktmpdir returns.
  # The value of the block is returned.
  #
  #  Dir.mktmpdir {|dir|
  #    # use the directory...
  #    open("#{dir}/foo", "w") { ... }
  #  }
  #
  # If a block is not given,
  # The path of the directory is returned.
  # In this case, Dir.mktmpdir doesn't remove the directory.
  #
  #  dir = Dir.mktmpdir
  #  begin
  #    # use the directory...
  #    open("#{dir}/foo", "w") { ... }
  #  ensure
  #    # remove the directory.
  #    FileUtils.remove_entry dir
  #  end
  #
  def self.mktmpdir(prefix_suffix=nil, *rest, **options)
    base = nil
    path = Tmpname.create(prefix_suffix || "d", *rest, **options) {|path, _, _, d|
      base = d
      mkdir(path, 0700)
    }
    if block_given?
      begin
        yield path.dup
      ensure
        unless base
          stat = File.stat(File.dirname(path))
          if stat.world_writable? and !stat.sticky?
            raise ArgumentError, "parent directory is world writable but not sticky"
          end
        end
        FileUtils.remove_entry path
      end
    else
      path
    end
  end

  module Tmpname # :nodoc:
    module_function

    def tmpdir
      Dir.tmpdir
    end

    UNUSABLE_CHARS = "^,-.0-9A-Z_a-z~"

    def create(basename, tmpdir=nil, max_try: nil, **opts)
      origdir = tmpdir
      tmpdir ||= tmpdir()
      n = nil
      prefix, suffix = basename
      prefix = (String.try_convert(prefix) or
                raise ArgumentError, "unexpected prefix: #{prefix.inspect}")
      prefix = prefix.delete(UNUSABLE_CHARS)
      suffix &&= (String.try_convert(suffix) or
                  raise ArgumentError, "unexpected suffix: #{suffix.inspect}")
      suffix &&= suffix.delete(UNUSABLE_CHARS)
      begin
        t = Time.now.strftime("%Y%m%d")
        path = "#{prefix}#{t}-#{$$}-#{rand(0x100000000).to_s(36)}"\
               "#{n ? %[-#{n}] : ''}#{suffix||''}"
        path = File.join(tmpdir, path)
        yield(path, n, opts, origdir)
      rescue Errno::EEXIST
        n ||= 0
        n += 1
        retry if !max_try or n < max_try
        raise "cannot generate temporary name using `#{basename}' under `#{tmpdir}'"
      end
      path
    end
  end
end
PKDH[s�{��A�Ashare/ruby/logger.rbnu�[���# frozen_string_literal: true
# logger.rb - simple logging utility
# Copyright (C) 2000-2003, 2005, 2008, 2011  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
#
# Documentation:: NAKAMURA, Hiroshi and Gavin Sinclair
# License::
#   You can redistribute it and/or modify it under the same terms of Ruby's
#   license; either the dual license version in 2003, or any later version.
# Revision:: $Id$
#
# A simple system for logging messages.  See Logger for more documentation.

require 'monitor'

require_relative 'logger/version'
require_relative 'logger/formatter'
require_relative 'logger/log_device'
require_relative 'logger/severity'
require_relative 'logger/errors'

# == Description
#
# The Logger class provides a simple but sophisticated logging utility that
# you can use to output messages.
#
# The messages have associated levels, such as +INFO+ or +ERROR+ that indicate
# their importance.  You can then give the Logger a level, and only messages
# at that level or higher will be printed.
#
# The levels are:
#
# +UNKNOWN+:: An unknown message that should always be logged.
# +FATAL+:: An unhandleable error that results in a program crash.
# +ERROR+:: A handleable error condition.
# +WARN+::  A warning.
# +INFO+::  Generic (useful) information about system operation.
# +DEBUG+:: Low-level information for developers.
#
# For instance, in a production system, you may have your Logger set to
# +INFO+ or even +WARN+.
# When you are developing the system, however, you probably
# want to know about the program's internal state, and would set the Logger to
# +DEBUG+.
#
# *Note*: Logger does not escape or sanitize any messages passed to it.
# Developers should be aware of when potentially malicious data (user-input)
# is passed to Logger, and manually escape the untrusted data:
#
#   logger.info("User-input: #{input.dump}")
#   logger.info("User-input: %p" % input)
#
# You can use #formatter= for escaping all data.
#
#   original_formatter = Logger::Formatter.new
#   logger.formatter = proc { |severity, datetime, progname, msg|
#     original_formatter.call(severity, datetime, progname, msg.dump)
#   }
#   logger.info(input)
#
# === Example
#
# This creates a Logger that outputs to the standard output stream, with a
# level of +WARN+:
#
#   require 'logger'
#
#   logger = Logger.new(STDOUT)
#   logger.level = Logger::WARN
#
#   logger.debug("Created logger")
#   logger.info("Program started")
#   logger.warn("Nothing to do!")
#
#   path = "a_non_existent_file"
#
#   begin
#     File.foreach(path) do |line|
#       unless line =~ /^(\w+) = (.*)$/
#         logger.error("Line in wrong format: #{line.chomp}")
#       end
#     end
#   rescue => err
#     logger.fatal("Caught exception; exiting")
#     logger.fatal(err)
#   end
#
# Because the Logger's level is set to +WARN+, only the warning, error, and
# fatal messages are recorded.  The debug and info messages are silently
# discarded.
#
# === Features
#
# There are several interesting features that Logger provides, like
# auto-rolling of log files, setting the format of log messages, and
# specifying a program name in conjunction with the message.  The next section
# shows you how to achieve these things.
#
#
# == HOWTOs
#
# === How to create a logger
#
# The options below give you various choices, in more or less increasing
# complexity.
#
# 1. Create a logger which logs messages to STDERR/STDOUT.
#
#      logger = Logger.new(STDERR)
#      logger = Logger.new(STDOUT)
#
# 2. Create a logger for the file which has the specified name.
#
#      logger = Logger.new('logfile.log')
#
# 3. Create a logger for the specified file.
#
#      file = File.open('foo.log', File::WRONLY | File::APPEND)
#      # To create new logfile, add File::CREAT like:
#      # file = File.open('foo.log', File::WRONLY | File::APPEND | File::CREAT)
#      logger = Logger.new(file)
#
# 4. Create a logger which ages the logfile once it reaches a certain size.
#    Leave 10 "old" log files where each file is about 1,024,000 bytes.
#
#      logger = Logger.new('foo.log', 10, 1024000)
#
# 5. Create a logger which ages the logfile daily/weekly/monthly.
#
#      logger = Logger.new('foo.log', 'daily')
#      logger = Logger.new('foo.log', 'weekly')
#      logger = Logger.new('foo.log', 'monthly')
#
# === How to log a message
#
# Notice the different methods (+fatal+, +error+, +info+) being used to log
# messages of various levels?  Other methods in this family are +warn+ and
# +debug+.  +add+ is used below to log a message of an arbitrary (perhaps
# dynamic) level.
#
# 1. Message in a block.
#
#      logger.fatal { "Argument 'foo' not given." }
#
# 2. Message as a string.
#
#      logger.error "Argument #{@foo} mismatch."
#
# 3. With progname.
#
#      logger.info('initialize') { "Initializing..." }
#
# 4. With severity.
#
#      logger.add(Logger::FATAL) { 'Fatal error!' }
#
# The block form allows you to create potentially complex log messages,
# but to delay their evaluation until and unless the message is
# logged.  For example, if we have the following:
#
#     logger.debug { "This is a " + potentially + " expensive operation" }
#
# If the logger's level is +INFO+ or higher, no debug messages will be logged,
# and the entire block will not even be evaluated.  Compare to this:
#
#     logger.debug("This is a " + potentially + " expensive operation")
#
# Here, the string concatenation is done every time, even if the log
# level is not set to show the debug message.
#
# === How to close a logger
#
#      logger.close
#
# === Setting severity threshold
#
# 1. Original interface.
#
#      logger.sev_threshold = Logger::WARN
#
# 2. Log4r (somewhat) compatible interface.
#
#      logger.level = Logger::INFO
#
#      # DEBUG < INFO < WARN < ERROR < FATAL < UNKNOWN
#
# 3. Symbol or String (case insensitive)
#
#      logger.level = :info
#      logger.level = 'INFO'
#
#      # :debug < :info < :warn < :error < :fatal < :unknown
#
# 4. Constructor
#
#      Logger.new(logdev, level: Logger::INFO)
#      Logger.new(logdev, level: :info)
#      Logger.new(logdev, level: 'INFO')
#
# == Format
#
# Log messages are rendered in the output stream in a certain format by
# default.  The default format and a sample are shown below:
#
# Log format:
#   SeverityID, [DateTime #pid] SeverityLabel -- ProgName: message
#
# Log sample:
#   I, [1999-03-03T02:34:24.895701 #19074]  INFO -- Main: info.
#
# You may change the date and time format via #datetime_format=.
#
#   logger.datetime_format = '%Y-%m-%d %H:%M:%S'
#         # e.g. "2004-01-03 00:54:26"
#
# or via the constructor.
#
#   Logger.new(logdev, datetime_format: '%Y-%m-%d %H:%M:%S')
#
# Or, you may change the overall format via the #formatter= method.
#
#   logger.formatter = proc do |severity, datetime, progname, msg|
#     "#{datetime}: #{msg}\n"
#   end
#   # e.g. "2005-09-22 08:51:08 +0900: hello world"
#
# or via the constructor.
#
#   Logger.new(logdev, formatter: proc {|severity, datetime, progname, msg|
#     "#{datetime}: #{msg}\n"
#   })
#
class Logger
  _, name, rev = %w$Id$
  if name
    name = name.chomp(",v")
  else
    name = File.basename(__FILE__)
  end
  rev ||= "v#{VERSION}"
  ProgName = "#{name}/#{rev}"

  include Severity

  # Logging severity threshold (e.g. <tt>Logger::INFO</tt>).
  attr_reader :level

  # Set logging severity threshold.
  #
  # +severity+:: The Severity of the log message.
  def level=(severity)
    if severity.is_a?(Integer)
      @level = severity
    else
      case severity.to_s.downcase
      when 'debug'
        @level = DEBUG
      when 'info'
        @level = INFO
      when 'warn'
        @level = WARN
      when 'error'
        @level = ERROR
      when 'fatal'
        @level = FATAL
      when 'unknown'
        @level = UNKNOWN
      else
        raise ArgumentError, "invalid log level: #{severity}"
      end
    end
  end

  # Program name to include in log messages.
  attr_accessor :progname

  # Set date-time format.
  #
  # +datetime_format+:: A string suitable for passing to +strftime+.
  def datetime_format=(datetime_format)
    @default_formatter.datetime_format = datetime_format
  end

  # Returns the date format being used.  See #datetime_format=
  def datetime_format
    @default_formatter.datetime_format
  end

  # Logging formatter, as a +Proc+ that will take four arguments and
  # return the formatted message. The arguments are:
  #
  # +severity+:: The Severity of the log message.
  # +time+:: A Time instance representing when the message was logged.
  # +progname+:: The #progname configured, or passed to the logger method.
  # +msg+:: The _Object_ the user passed to the log message; not necessarily a
  #         String.
  #
  # The block should return an Object that can be written to the logging
  # device via +write+.  The default formatter is used when no formatter is
  # set.
  attr_accessor :formatter

  alias sev_threshold level
  alias sev_threshold= level=

  # Returns +true+ iff the current severity level allows for the printing of
  # +DEBUG+ messages.
  def debug?; level <= DEBUG; end

  # Sets the severity to DEBUG.
  def debug!; self.level = DEBUG; end

  # Returns +true+ iff the current severity level allows for the printing of
  # +INFO+ messages.
  def info?; level <= INFO; end

  # Sets the severity to INFO.
  def info!; self.level = INFO; end

  # Returns +true+ iff the current severity level allows for the printing of
  # +WARN+ messages.
  def warn?; level <= WARN; end

  # Sets the severity to WARN.
  def warn!; self.level = WARN; end

  # Returns +true+ iff the current severity level allows for the printing of
  # +ERROR+ messages.
  def error?; level <= ERROR; end

  # Sets the severity to ERROR.
  def error!; self.level = ERROR; end

  # Returns +true+ iff the current severity level allows for the printing of
  # +FATAL+ messages.
  def fatal?; level <= FATAL; end

  # Sets the severity to FATAL.
  def fatal!; self.level = FATAL; end

  #
  # :call-seq:
  #   Logger.new(logdev, shift_age = 0, shift_size = 1048576)
  #   Logger.new(logdev, shift_age = 'weekly')
  #   Logger.new(logdev, level: :info)
  #   Logger.new(logdev, progname: 'progname')
  #   Logger.new(logdev, formatter: formatter)
  #   Logger.new(logdev, datetime_format: '%Y-%m-%d %H:%M:%S')
  #
  # === Args
  #
  # +logdev+::
  #   The log device.  This is a filename (String) or IO object (typically
  #   +STDOUT+, +STDERR+, or an open file).
  # +shift_age+::
  #   Number of old log files to keep, *or* frequency of rotation (+daily+,
  #   +weekly+ or +monthly+). Default value is 0, which disables log file
  #   rotation.
  # +shift_size+::
  #   Maximum logfile size in bytes (only applies when +shift_age+ is a positive
  #   Integer). Defaults to +1048576+ (1MB).
  # +level+::
  #   Logging severity threshold. Default values is Logger::DEBUG.
  # +progname+::
  #   Program name to include in log messages. Default value is nil.
  # +formatter+::
  #   Logging formatter. Default values is an instance of Logger::Formatter.
  # +datetime_format+::
  #   Date and time format. Default value is '%Y-%m-%d %H:%M:%S'.
  # +binmode+::
  #   Use binary mode on the log device. Default value is false.
  # +shift_period_suffix+::
  #   The log file suffix format for +daily+, +weekly+ or +monthly+ rotation.
  #   Default is '%Y%m%d'.
  #
  # === Description
  #
  # Create an instance.
  #
  def initialize(logdev, shift_age = 0, shift_size = 1048576, level: DEBUG,
                 progname: nil, formatter: nil, datetime_format: nil,
                 binmode: false, shift_period_suffix: '%Y%m%d')
    self.level = level
    self.progname = progname
    @default_formatter = Formatter.new
    self.datetime_format = datetime_format
    self.formatter = formatter
    @logdev = nil
    if logdev
      @logdev = LogDevice.new(logdev, shift_age: shift_age,
        shift_size: shift_size,
        shift_period_suffix: shift_period_suffix,
        binmode: binmode)
    end
  end

  #
  # :call-seq:
  #   Logger#reopen
  #   Logger#reopen(logdev)
  #
  # === Args
  #
  # +logdev+::
  #   The log device.  This is a filename (String) or IO object (typically
  #   +STDOUT+, +STDERR+, or an open file).  reopen the same filename if
  #   it is +nil+, do nothing for IO.  Default is +nil+.
  #
  # === Description
  #
  # Reopen a log device.
  #
  def reopen(logdev = nil)
    @logdev.reopen(logdev)
    self
  end

  #
  # :call-seq:
  #   Logger#add(severity, message = nil, progname = nil) { ... }
  #
  # === Args
  #
  # +severity+::
  #   Severity.  Constants are defined in Logger namespace: +DEBUG+, +INFO+,
  #   +WARN+, +ERROR+, +FATAL+, or +UNKNOWN+.
  # +message+::
  #   The log message.  A String or Exception.
  # +progname+::
  #   Program name string.  Can be omitted.  Treated as a message if no
  #   +message+ and +block+ are given.
  # +block+::
  #   Can be omitted.  Called to get a message string if +message+ is nil.
  #
  # === Return
  #
  # When the given severity is not high enough (for this particular logger),
  # log no message, and return +true+.
  #
  # === Description
  #
  # Log a message if the given severity is high enough.  This is the generic
  # logging method.  Users will be more inclined to use #debug, #info, #warn,
  # #error, and #fatal.
  #
  # <b>Message format</b>: +message+ can be any object, but it has to be
  # converted to a String in order to log it.  Generally, +inspect+ is used
  # if the given object is not a String.
  # A special case is an +Exception+ object, which will be printed in detail,
  # including message, class, and backtrace.  See #msg2str for the
  # implementation if required.
  #
  # === Bugs
  #
  # * Logfile is not locked.
  # * Append open does not need to lock file.
  # * If the OS supports multi I/O, records possibly may be mixed.
  #
  def add(severity, message = nil, progname = nil)
    severity ||= UNKNOWN
    if @logdev.nil? or severity < level
      return true
    end
    if progname.nil?
      progname = @progname
    end
    if message.nil?
      if block_given?
        message = yield
      else
        message = progname
        progname = @progname
      end
    end
    @logdev.write(
      format_message(format_severity(severity), Time.now, progname, message))
    true
  end
  alias log add

  #
  # Dump given message to the log device without any formatting.  If no log
  # device exists, return +nil+.
  #
  def <<(msg)
    @logdev&.write(msg)
  end

  #
  # Log a +DEBUG+ message.
  #
  # See #info for more information.
  #
  def debug(progname = nil, &block)
    add(DEBUG, nil, progname, &block)
  end

  #
  # :call-seq:
  #   info(message)
  #   info(progname, &block)
  #
  # Log an +INFO+ message.
  #
  # +message+:: The message to log; does not need to be a String.
  # +progname+:: In the block form, this is the #progname to use in the
  #              log message.  The default can be set with #progname=.
  # +block+:: Evaluates to the message to log.  This is not evaluated unless
  #           the logger's level is sufficient to log the message.  This
  #           allows you to create potentially expensive logging messages that
  #           are only called when the logger is configured to show them.
  #
  # === Examples
  #
  #   logger.info("MainApp") { "Received connection from #{ip}" }
  #   # ...
  #   logger.info "Waiting for input from user"
  #   # ...
  #   logger.info { "User typed #{input}" }
  #
  # You'll probably stick to the second form above, unless you want to provide a
  # program name (which you can do with #progname= as well).
  #
  # === Return
  #
  # See #add.
  #
  def info(progname = nil, &block)
    add(INFO, nil, progname, &block)
  end

  #
  # Log a +WARN+ message.
  #
  # See #info for more information.
  #
  def warn(progname = nil, &block)
    add(WARN, nil, progname, &block)
  end

  #
  # Log an +ERROR+ message.
  #
  # See #info for more information.
  #
  def error(progname = nil, &block)
    add(ERROR, nil, progname, &block)
  end

  #
  # Log a +FATAL+ message.
  #
  # See #info for more information.
  #
  def fatal(progname = nil, &block)
    add(FATAL, nil, progname, &block)
  end

  #
  # Log an +UNKNOWN+ message.  This will be printed no matter what the logger's
  # level is.
  #
  # See #info for more information.
  #
  def unknown(progname = nil, &block)
    add(UNKNOWN, nil, progname, &block)
  end

  #
  # Close the logging device.
  #
  def close
    @logdev&.close
  end

private

  # Severity label for logging (max 5 chars).
  SEV_LABEL = %w(DEBUG INFO WARN ERROR FATAL ANY).freeze

  def format_severity(severity)
    SEV_LABEL[severity] || 'ANY'
  end

  def format_message(severity, datetime, progname, msg)
    (@formatter || @default_formatter).call(severity, datetime, progname, msg)
  end
end
PKDH[�n��((share/ruby/observer/version.rbnu�[���module Observer
  VERSION = "0.1.0"
end
PKDH[�?��66share/ruby/racc/exception.rbnu�[���#
# $Id: ebb9798ad0b211e031670a12a1ab154678c1c8f3 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

module Racc
  class Error < StandardError; end
  class CompileError < Error; end
end
PKDH[��8I��share/ruby/racc/sourcetext.rbnu�[���#
# $Id: 3b2d89d9ada2f5fcb043837dcc5c9631856d5b70 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#

module Racc

  class SourceText
    def initialize(text, filename, lineno)
      @text = text
      @filename = filename
      @lineno = lineno
    end

    attr_reader :text
    attr_reader :filename
    attr_reader :lineno

    def to_s
      "#<SourceText #{location()}>"
    end

    def location
      "#{@filename}:#{@lineno}"
    end
  end

end
PKDH[v�*�_O_Oshare/ruby/racc/state.rbnu�[���#
# $Id: 6bd3136439c94cb8d928917f5e0de9c593181527 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/iset'
require 'racc/statetransitiontable'
require 'racc/exception'
require 'forwardable'

module Racc

  # A table of LALR states.
  class States

    include Enumerable

    def initialize(grammar, debug_flags = DebugFlags.new)
      @grammar = grammar
      @symboltable = grammar.symboltable
      @d_state = debug_flags.state
      @d_la    = debug_flags.la
      @d_prec  = debug_flags.prec
      @states = []
      @statecache = {}
      @actions = ActionTable.new(@grammar, self)
      @nfa_computed = false
      @dfa_computed = false
    end

    attr_reader :grammar
    attr_reader :actions

    def size
      @states.size
    end

    def inspect
      '#<state table>'
    end

    alias to_s inspect

    def [](i)
      @states[i]
    end

    def each_state(&block)
      @states.each(&block)
    end

    alias each each_state

    def each_index(&block)
      @states.each_index(&block)
    end

    extend Forwardable

    def_delegator "@actions", :shift_n
    def_delegator "@actions", :reduce_n
    def_delegator "@actions", :nt_base

    def should_report_srconflict?
      srconflict_exist? and
          (n_srconflicts() != @grammar.n_expected_srconflicts)
    end

    def srconflict_exist?
      n_srconflicts() != 0
    end

    def n_srconflicts
      @n_srconflicts ||= inject(0) {|sum, st| sum + st.n_srconflicts }
    end

    def rrconflict_exist?
      n_rrconflicts() != 0
    end

    def n_rrconflicts
      @n_rrconflicts ||= inject(0) {|sum, st| sum + st.n_rrconflicts }
    end

    def state_transition_table
      @state_transition_table ||= StateTransitionTable.generate(self.dfa)
    end

    #
    # NFA (Non-deterministic Finite Automaton) Computation
    #

    public

    def nfa
      return self if @nfa_computed
      compute_nfa
      @nfa_computed = true
      self
    end

    private

    def compute_nfa
      @grammar.init
      # add state 0
      core_to_state  [ @grammar[0].ptrs[0] ]
      # generate LALR states
      cur = 0
      @gotos = []
      while cur < @states.size
        generate_states @states[cur]   # state is added here
        cur += 1
      end
      @actions.init
    end

    def generate_states(state)
      puts "dstate: #{state}" if @d_state

      table = {}
      state.closure.each do |ptr|
        if sym = ptr.dereference
          addsym table, sym, ptr.next
        end
      end
      table.each do |sym, core|
        puts "dstate: sym=#{sym} ncore=#{core}" if @d_state

        dest = core_to_state(core.to_a)
        state.goto_table[sym] = dest
        id = sym.nonterminal?() ? @gotos.size : nil
        g = Goto.new(id, sym, state, dest)
        @gotos.push g if sym.nonterminal?
        state.gotos[sym] = g
        puts "dstate: #{state.ident} --#{sym}--> #{dest.ident}" if @d_state

        # check infinite recursion
        if state.ident == dest.ident and state.closure.size == 1
          raise CompileError,
              sprintf("Infinite recursion: state %d, with rule %d",
                      state.ident, state.ptrs[0].rule.ident)
        end
      end
    end

    def addsym(table, sym, ptr)
      unless s = table[sym]
        table[sym] = s = ISet.new
      end
      s.add ptr
    end

    def core_to_state(core)
      #
      # convert CORE to a State object.
      # If matching state does not exist, create it and add to the table.
      #

      k = fingerprint(core)
      unless dest = @statecache[k]
        # not registered yet
        dest = State.new(@states.size, core)
        @states.push dest

        @statecache[k] = dest

        puts "core_to_state: create state   ID #{dest.ident}" if @d_state
      else
        if @d_state
          puts "core_to_state: dest is cached ID #{dest.ident}"
          puts "core_to_state: dest core #{dest.core.join(' ')}"
        end
      end

      dest
    end

    def fingerprint(arr)
      arr.map {|i| i.ident }.pack('L*')
    end

    #
    # DFA (Deterministic Finite Automaton) Generation
    #

    public

    def dfa
      return self if @dfa_computed
      nfa
      compute_dfa
      @dfa_computed = true
      self
    end

    private

    def compute_dfa
      la = lookahead()
      @states.each do |state|
        state.la = la
        resolve state
      end
      set_accept
      @states.each do |state|
        pack state
      end
      check_useless
    end

    def lookahead
      #
      # lookahead algorithm ver.3 -- from bison 1.26
      #

      gotos = @gotos
      if @d_la
        puts "\n--- goto ---"
        gotos.each_with_index {|g, i| print i, ' '; p g }
      end

      ### initialize_LA()
      ### set_goto_map()
      la_rules = []
      @states.each do |state|
        state.check_la la_rules
      end

      ### initialize_F()
      f     = create_tmap(gotos.size)
      reads = []
      edge  = []
      gotos.each do |goto|
        goto.to_state.goto_table.each do |t, st|
          if t.terminal?
            f[goto.ident] |= (1 << t.ident)
          elsif t.nullable?
            edge.push goto.to_state.gotos[t].ident
          end
        end
        if edge.empty?
          reads.push nil
        else
          reads.push edge
          edge = []
        end
      end
      digraph f, reads
      if @d_la
        puts "\n--- F1 (reads) ---"
        print_tab gotos, reads, f
      end

      ### build_relations()
      ### compute_FOLLOWS
      path = nil
      edge = []
      lookback = Array.new(la_rules.size, nil)
      includes = []
      gotos.each do |goto|
        goto.symbol.heads.each do |ptr|
          path = record_path(goto.from_state, ptr.rule)
          lastgoto = path.last
          st = lastgoto ? lastgoto.to_state : goto.from_state
          if st.conflict?
            addrel lookback, st.rruleid(ptr.rule), goto
          end
          path.reverse_each do |g|
            break if     g.symbol.terminal?
            edge.push    g.ident
            break unless g.symbol.nullable?
          end
        end
        if edge.empty?
          includes.push nil
        else
          includes.push edge
          edge = []
        end
      end
      includes = transpose(includes)
      digraph f, includes
      if @d_la
        puts "\n--- F2 (includes) ---"
        print_tab gotos, includes, f
      end

      ### compute_lookaheads
      la = create_tmap(la_rules.size)
      lookback.each_with_index do |arr, i|
        if arr
          arr.each do |g|
            la[i] |= f[g.ident]
          end
        end
      end
      if @d_la
        puts "\n--- LA (lookback) ---"
        print_tab la_rules, lookback, la
      end

      la
    end

    def create_tmap(size)
      Array.new(size, 0)   # use Integer as bitmap
    end

    def addrel(tbl, i, item)
      if a = tbl[i]
        a.push item
      else
        tbl[i] = [item]
      end
    end

    def record_path(begst, rule)
      st = begst
      path = []
      rule.symbols.each do |t|
        goto = st.gotos[t]
        path.push goto
        st = goto.to_state
      end
      path
    end

    def transpose(rel)
      new = Array.new(rel.size, nil)
      rel.each_with_index do |arr, idx|
        if arr
          arr.each do |i|
            addrel new, i, idx
          end
        end
      end
      new
    end

    def digraph(map, relation)
      n = relation.size
      index    = Array.new(n, nil)
      vertices = []
      @infinity = n + 2

      index.each_index do |i|
        if not index[i] and relation[i]
          traverse i, index, vertices, map, relation
        end
      end
    end

    def traverse(i, index, vertices, map, relation)
      vertices.push i
      index[i] = height = vertices.size

      if rp = relation[i]
        rp.each do |proci|
          unless index[proci]
            traverse proci, index, vertices, map, relation
          end
          if index[i] > index[proci]
            # circulative recursion !!!
            index[i] = index[proci]
          end
          map[i] |= map[proci]
        end
      end

      if index[i] == height
        while true
          proci = vertices.pop
          index[proci] = @infinity
          break if i == proci

          map[proci] |= map[i]
        end
      end
    end

    # for debug
    def print_atab(idx, tab)
      tab.each_with_index do |i,ii|
        printf '%-20s', idx[ii].inspect
        p i
      end
    end

    def print_tab(idx, rel, tab)
      tab.each_with_index do |bin,i|
        print i, ' ', idx[i].inspect, ' << '; p rel[i]
        print '  '
        each_t(@symboltable, bin) {|t| print ' ', t }
        puts
      end
    end

    # for debug
    def print_tab_i(idx, rel, tab, i)
      bin = tab[i]
      print i, ' ', idx[i].inspect, ' << '; p rel[i]
      print '  '
      each_t(@symboltable, bin) {|t| print ' ', t }
    end

    # for debug
    def printb(i)
      each_t(@symboltable, i) do |t|
        print t, ' '
      end
      puts
    end

    def each_t(tbl, set)
      0.upto( set.size ) do |i|
        (0..7).each do |ii|
          if set[idx = i * 8 + ii] == 1
            yield tbl[idx]
          end
        end
      end
    end

    #
    # resolve
    #

    def resolve(state)
      if state.conflict?
        resolve_rr state, state.ritems
        resolve_sr state, state.stokens
      else
        if state.rrules.empty?
          # shift
          state.stokens.each do |t|
            state.action[t] = @actions.shift(state.goto_table[t])
          end
        else
          # reduce
          state.defact = @actions.reduce(state.rrules[0])
        end
      end
    end

    def resolve_rr(state, r)
      r.each do |item|
        item.each_la(@symboltable) do |t|
          act = state.action[t]
          if act
            unless act.kind_of?(Reduce)
              raise "racc: fatal: #{act.class} in action table"
            end
            # Cannot resolve R/R conflict (on t).
            # Reduce with upper rule as default.
            state.rr_conflict act.rule, item.rule, t
          else
            # No conflict.
            state.action[t] = @actions.reduce(item.rule)
          end
        end
      end
    end

    def resolve_sr(state, s)
      s.each do |stok|
        goto = state.goto_table[stok]
        act = state.action[stok]

        unless act
          # no conflict
          state.action[stok] = @actions.shift(goto)
        else
          unless act.kind_of?(Reduce)
            puts 'DEBUG -------------------------------'
            p stok
            p act
            state.action.each do |k,v|
              print k.inspect, ' ', v.inspect, "\n"
            end
            raise "racc: fatal: #{act.class} in action table"
          end

          # conflict on stok

          rtok = act.rule.precedence
          case do_resolve_sr(stok, rtok)
          when :Reduce
            # action is already set

          when :Shift
            # overwrite
            act.decref
            state.action[stok] = @actions.shift(goto)

          when :Error
            act.decref
            state.action[stok] = @actions.error

          when :CantResolve
            # shift as default
            act.decref
            state.action[stok] = @actions.shift(goto)
            state.sr_conflict stok, act.rule
          end
        end
      end
    end

    ASSOC = {
      :Left     => :Reduce,
      :Right    => :Shift,
      :Nonassoc => :Error
    }

    def do_resolve_sr(stok, rtok)
      puts "resolve_sr: s/r conflict: rtok=#{rtok}, stok=#{stok}" if @d_prec

      unless rtok and rtok.precedence
        puts "resolve_sr: no prec for #{rtok}(R)" if @d_prec
        return :CantResolve
      end
      rprec = rtok.precedence

      unless stok and stok.precedence
        puts "resolve_sr: no prec for #{stok}(S)" if @d_prec
        return :CantResolve
      end
      sprec = stok.precedence

      ret = if rprec == sprec
              ASSOC[rtok.assoc] or
                  raise "racc: fatal: #{rtok}.assoc is not Left/Right/Nonassoc"
            else
              (rprec > sprec) ? (:Reduce) : (:Shift)
            end

      puts "resolve_sr: resolved as #{ret.id2name}" if @d_prec
      ret
    end

    #
    # complete
    #

    def set_accept
      anch = @symboltable.anchor
      init_state = @states[0].goto_table[@grammar.start]
      targ_state = init_state.action[anch].goto_state
      acc_state  = targ_state.action[anch].goto_state

      acc_state.action.clear
      acc_state.goto_table.clear
      acc_state.defact = @actions.accept
    end

    def pack(state)
      ### find most frequently used reduce rule
      act = state.action
      arr = Array.new(@grammar.size, 0)
      act.each do |t, a|
        arr[a.ruleid] += 1  if a.kind_of?(Reduce)
      end
      i = arr.max
      s = (i > 0) ? arr.index(i) : nil

      ### set & delete default action
      if s
        r = @actions.reduce(s)
        if not state.defact or state.defact == r
          act.delete_if {|t, a| a == r }
          state.defact = r
        end
      else
        state.defact ||= @actions.error
      end
    end

    def check_useless
      used = []
      @actions.each_reduce do |act|
        if not act or act.refn == 0
          act.rule.useless = true
        else
          t = act.rule.target
          used[t.ident] = t
        end
      end
      @symboltable.nt_base.upto(@symboltable.nt_max - 1) do |n|
        unless used[n]
          @symboltable[n].useless = true
        end
      end
    end

  end   # class StateTable


  # A LALR state.
  class State

    def initialize(ident, core)
      @ident = ident
      @core = core
      @goto_table = {}
      @gotos = {}
      @stokens = nil
      @ritems = nil
      @action = {}
      @defact = nil
      @rrconf = nil
      @srconf = nil

      @closure = make_closure(@core)
    end

    attr_reader :ident
    alias stateid ident
    alias hash ident

    attr_reader :core
    attr_reader :closure

    attr_reader :goto_table
    attr_reader :gotos

    attr_reader :stokens
    attr_reader :ritems
    attr_reader :rrules

    attr_reader :action
    attr_accessor :defact   # default action

    attr_reader :rrconf
    attr_reader :srconf

    def inspect
      "<state #{@ident}>"
    end

    alias to_s inspect

    def ==(oth)
      @ident == oth.ident
    end

    alias eql? ==

    def make_closure(core)
      set = ISet.new
      core.each do |ptr|
        set.add ptr
        if t = ptr.dereference and t.nonterminal?
          set.update_a t.expand
        end
      end
      set.to_a
    end

    def check_la(la_rules)
      @conflict = false
      s = []
      r = []
      @closure.each do |ptr|
        if t = ptr.dereference
          if t.terminal?
            s[t.ident] = t
            if t.ident == 1    # $error
              @conflict = true
            end
          end
        else
          r.push ptr.rule
        end
      end
      unless r.empty?
        if not s.empty? or r.size > 1
          @conflict = true
        end
      end
      s.compact!
      @stokens  = s
      @rrules = r

      if @conflict
        @la_rules_i = la_rules.size
        @la_rules = r.map {|i| i.ident }
        la_rules.concat r
      else
        @la_rules_i = @la_rules = nil
      end
    end

    def conflict?
      @conflict
    end

    def rruleid(rule)
      if i = @la_rules.index(rule.ident)
        @la_rules_i + i
      else
        puts '/// rruleid'
        p self
        p rule
        p @rrules
        p @la_rules_i
        raise 'racc: fatal: cannot get reduce rule id'
      end
    end

    def la=(la)
      return unless @conflict
      i = @la_rules_i
      @ritems = r = []
      @rrules.each do |rule|
        r.push Item.new(rule, la[i])
        i += 1
      end
    end

    def rr_conflict(high, low, ctok)
      c = RRconflict.new(@ident, high, low, ctok)

      @rrconf ||= {}
      if a = @rrconf[ctok]
        a.push c
      else
        @rrconf[ctok] = [c]
      end
    end

    def sr_conflict(shift, reduce)
      c = SRconflict.new(@ident, shift, reduce)

      @srconf ||= {}
      if a = @srconf[shift]
        a.push c
      else
        @srconf[shift] = [c]
      end
    end

    def n_srconflicts
      @srconf ? @srconf.size : 0
    end

    def n_rrconflicts
      @rrconf ? @rrconf.size : 0
    end

  end   # class State


  #
  # Represents a transition on the grammar.
  # "Real goto" means a transition by nonterminal,
  # but this class treats also terminal's.
  # If one is a terminal transition, .ident returns nil.
  #
  class Goto
    def initialize(ident, sym, from, to)
      @ident      = ident
      @symbol     = sym
      @from_state = from
      @to_state   = to
    end

    attr_reader :ident
    attr_reader :symbol
    attr_reader :from_state
    attr_reader :to_state

    def inspect
      "(#{@from_state.ident}-#{@symbol}->#{@to_state.ident})"
    end
  end


  # LALR item.  A set of rule and its lookahead tokens.
  class Item
    def initialize(rule, la)
      @rule = rule
      @la  = la
    end

    attr_reader :rule
    attr_reader :la

    def each_la(tbl)
      la = @la
      0.upto(la.size - 1) do |i|
        (0..7).each do |ii|
          if la[idx = i * 8 + ii] == 1
            yield tbl[idx]
          end
        end
      end
    end
  end


  # The table of LALR actions. Actions are either of
  # Shift, Reduce, Accept and Error.
  class ActionTable

    def initialize(rt, st)
      @grammar = rt
      @statetable = st

      @reduce = []
      @shift = []
      @accept = nil
      @error = nil
    end

    def init
      @grammar.each do |rule|
        @reduce.push Reduce.new(rule)
      end
      @statetable.each do |state|
        @shift.push Shift.new(state)
      end
      @accept = Accept.new
      @error = Error.new
    end

    def reduce_n
      @reduce.size
    end

    def reduce(i)
      case i
      when Rule    then i = i.ident
      when Integer then ;
      else
        raise "racc: fatal: wrong class #{i.class} for reduce"
      end

      r = @reduce[i] or raise "racc: fatal: reduce action #{i.inspect} not exist"
      r.incref
      r
    end

    def each_reduce(&block)
      @reduce.each(&block)
    end

    def shift_n
      @shift.size
    end

    def shift(i)
      case i
      when State   then i = i.ident
      when Integer then ;
      else
        raise "racc: fatal: wrong class #{i.class} for shift"
      end

      @shift[i] or raise "racc: fatal: shift action #{i} does not exist"
    end

    def each_shift(&block)
      @shift.each(&block)
    end

    attr_reader :accept
    attr_reader :error

  end


  class Shift
    def initialize(goto)
      @goto_state = goto
    end

    attr_reader :goto_state

    def goto_id
      @goto_state.ident
    end

    def inspect
      "<shift #{@goto_state.ident}>"
    end
  end


  class Reduce
    def initialize(rule)
      @rule = rule
      @refn = 0
    end

    attr_reader :rule
    attr_reader :refn

    def ruleid
      @rule.ident
    end

    def inspect
      "<reduce #{@rule.ident}>"
    end

    def incref
      @refn += 1
    end

    def decref
      @refn -= 1
      raise 'racc: fatal: act.refn < 0' if @refn < 0
    end
  end

  class Accept
    def inspect
      "<accept>"
    end
  end

  class Error
    def inspect
      "<error>"
    end
  end

  class SRconflict
    def initialize(sid, shift, reduce)
      @stateid = sid
      @shift   = shift
      @reduce  = reduce
    end

    attr_reader :stateid
    attr_reader :shift
    attr_reader :reduce

    def to_s
      sprintf('state %d: S/R conflict rule %d reduce and shift %s',
              @stateid, @reduce.ruleid, @shift.to_s)
    end
  end

  class RRconflict
    def initialize(sid, high, low, tok)
      @stateid   = sid
      @high_prec = high
      @low_prec  = low
      @token     = tok
    end

    attr_reader :stateid
    attr_reader :high_prec
    attr_reader :low_prec
    attr_reader :token

    def to_s
      sprintf('state %d: R/R conflict with rule %d and %d on %s',
              @stateid, @high_prec.ident, @low_prec.ident, @token.to_s)
    end
  end

end
PKDH[?�ﱉ�share/ruby/racc/static.rbnu�[���require 'racc'
require 'racc/parser'
require 'racc/grammarfileparser'
require 'racc/parserfilegenerator'
require 'racc/logfilegenerator'
PKDH[��t�I�Ishare/ruby/racc/parser-text.rbnu�[���module Racc
  PARSER_TEXT = <<'__end_of_file__'
# frozen_string_literal: false
#--
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
#
# As a special exception, when this code is copied by Racc
# into a Racc output file, you may use that output file
# without restriction.
#++

require 'racc/info'

unless defined?(NotImplementedError)
  NotImplementedError = NotImplementError # :nodoc:
end

module Racc
  class ParseError < StandardError; end
end
unless defined?(::ParseError)
  ParseError = Racc::ParseError
end

# Racc is a LALR(1) parser generator.
# It is written in Ruby itself, and generates Ruby programs.
#
# == Command-line Reference
#
#     racc [-o<var>filename</var>] [--output-file=<var>filename</var>]
#          [-e<var>rubypath</var>] [--embedded=<var>rubypath</var>]
#          [-v] [--verbose]
#          [-O<var>filename</var>] [--log-file=<var>filename</var>]
#          [-g] [--debug]
#          [-E] [--embedded]
#          [-l] [--no-line-convert]
#          [-c] [--line-convert-all]
#          [-a] [--no-omit-actions]
#          [-C] [--check-only]
#          [-S] [--output-status]
#          [--version] [--copyright] [--help] <var>grammarfile</var>
#
# [+filename+]
#   Racc grammar file. Any extension is permitted.
# [-o+outfile+, --output-file=+outfile+]
#   A filename for output. default is <+filename+>.tab.rb
# [-O+filename+, --log-file=+filename+]
#   Place logging output in file +filename+.
#   Default log file name is <+filename+>.output.
# [-e+rubypath+, --executable=+rubypath+]
#   output executable file(mode 755). where +path+ is the Ruby interpreter.
# [-v, --verbose]
#   verbose mode. create +filename+.output file, like yacc's y.output file.
# [-g, --debug]
#   add debug code to parser class. To display debuggin information,
#   use this '-g' option and set @yydebug true in parser class.
# [-E, --embedded]
#   Output parser which doesn't need runtime files (racc/parser.rb).
# [-C, --check-only]
#   Check syntax of racc grammar file and quit.
# [-S, --output-status]
#   Print messages time to time while compiling.
# [-l, --no-line-convert]
#   turns off line number converting.
# [-c, --line-convert-all]
#   Convert line number of actions, inner, header and footer.
# [-a, --no-omit-actions]
#   Call all actions, even if an action is empty.
# [--version]
#   print Racc version and quit.
# [--copyright]
#   Print copyright and quit.
# [--help]
#   Print usage and quit.
#
# == Generating Parser Using Racc
#
# To compile Racc grammar file, simply type:
#
#   $ racc parse.y
#
# This creates Ruby script file "parse.tab.y". The -o option can change the output filename.
#
# == Writing A Racc Grammar File
#
# If you want your own parser, you have to write a grammar file.
# A grammar file contains the name of your parser class, grammar for the parser,
# user code, and anything else.
# When writing a grammar file, yacc's knowledge is helpful.
# If you have not used yacc before, Racc is not too difficult.
#
# Here's an example Racc grammar file.
#
#   class Calcparser
#   rule
#     target: exp { print val[0] }
#
#     exp: exp '+' exp
#        | exp '*' exp
#        | '(' exp ')'
#        | NUMBER
#   end
#
# Racc grammar files resemble yacc files.
# But (of course), this is Ruby code.
# yacc's $$ is the 'result', $0, $1... is
# an array called 'val', and $-1, $-2... is an array called '_values'.
#
# See the {Grammar File Reference}[rdoc-ref:lib/racc/rdoc/grammar.en.rdoc] for
# more information on grammar files.
#
# == Parser
#
# Then you must prepare the parse entry method. There are two types of
# parse methods in Racc, Racc::Parser#do_parse and Racc::Parser#yyparse
#
# Racc::Parser#do_parse is simple.
#
# It's yyparse() of yacc, and Racc::Parser#next_token is yylex().
# This method must returns an array like [TOKENSYMBOL, ITS_VALUE].
# EOF is [false, false].
# (TOKENSYMBOL is a Ruby symbol (taken from String#intern) by default.
# If you want to change this, see the grammar reference.
#
# Racc::Parser#yyparse is little complicated, but useful.
# It does not use Racc::Parser#next_token, instead it gets tokens from any iterator.
#
# For example, <code>yyparse(obj, :scan)</code> causes
# calling +obj#scan+, and you can return tokens by yielding them from +obj#scan+.
#
# == Debugging
#
# When debugging, "-v" or/and the "-g" option is helpful.
#
# "-v" creates verbose log file (.output).
# "-g" creates a "Verbose Parser".
# Verbose Parser prints the internal status when parsing.
# But it's _not_ automatic.
# You must use -g option and set +@yydebug+ to +true+ in order to get output.
# -g option only creates the verbose parser.
#
# === Racc reported syntax error.
#
# Isn't there too many "end"?
# grammar of racc file is changed in v0.10.
#
# Racc does not use '%' mark, while yacc uses huge number of '%' marks..
#
# === Racc reported "XXXX conflicts".
#
# Try "racc -v xxxx.y".
# It causes producing racc's internal log file, xxxx.output.
#
# === Generated parsers does not work correctly
#
# Try "racc -g xxxx.y".
# This command let racc generate "debugging parser".
# Then set @yydebug=true in your parser.
# It produces a working log of your parser.
#
# == Re-distributing Racc runtime
#
# A parser, which is created by Racc, requires the Racc runtime module;
# racc/parser.rb.
#
# Ruby 1.8.x comes with Racc runtime module,
# you need NOT distribute Racc runtime files.
#
# If you want to include the Racc runtime module with your parser.
# This can be done by using '-E' option:
#
#   $ racc -E -omyparser.rb myparser.y
#
# This command creates myparser.rb which `includes' Racc runtime.
# Only you must do is to distribute your parser file (myparser.rb).
#
# Note: parser.rb is ruby license, but your parser is not.
# Your own parser is completely yours.
module Racc

  unless defined?(Racc_No_Extentions)
    Racc_No_Extentions = false # :nodoc:
  end

  class Parser

    Racc_Runtime_Version = ::Racc::VERSION
    Racc_Runtime_Revision = '$Id: 7adc21ee7a5690f10b7ff399b8af4e2717b9d94c $'

    Racc_Runtime_Core_Version_R = ::Racc::VERSION
    Racc_Runtime_Core_Revision_R = '$Id: 7adc21ee7a5690f10b7ff399b8af4e2717b9d94c $'.split[1]
    begin
      if Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
        require 'racc/cparse-jruby.jar'
        com.headius.racc.Cparse.new.load(JRuby.runtime, false)
      else
        require 'racc/cparse'
      end
    # Racc_Runtime_Core_Version_C  = (defined in extension)
      Racc_Runtime_Core_Revision_C = Racc_Runtime_Core_Id_C.split[2]
      unless new.respond_to?(:_racc_do_parse_c, true)
        raise LoadError, 'old cparse.so'
      end
      if Racc_No_Extentions
        raise LoadError, 'selecting ruby version of racc runtime core'
      end

      Racc_Main_Parsing_Routine    = :_racc_do_parse_c # :nodoc:
      Racc_YY_Parse_Method         = :_racc_yyparse_c # :nodoc:
      Racc_Runtime_Core_Version    = Racc_Runtime_Core_Version_C # :nodoc:
      Racc_Runtime_Core_Revision   = Racc_Runtime_Core_Revision_C # :nodoc:
      Racc_Runtime_Type            = 'c' # :nodoc:
    rescue LoadError
puts $!
puts $!.backtrace
      Racc_Main_Parsing_Routine    = :_racc_do_parse_rb
      Racc_YY_Parse_Method         = :_racc_yyparse_rb
      Racc_Runtime_Core_Version    = Racc_Runtime_Core_Version_R
      Racc_Runtime_Core_Revision   = Racc_Runtime_Core_Revision_R
      Racc_Runtime_Type            = 'ruby'
    end

    def Parser.racc_runtime_type # :nodoc:
      Racc_Runtime_Type
    end

    def _racc_setup
      @yydebug = false unless self.class::Racc_debug_parser
      @yydebug = false unless defined?(@yydebug)
      if @yydebug
        @racc_debug_out = $stderr unless defined?(@racc_debug_out)
        @racc_debug_out ||= $stderr
      end
      arg = self.class::Racc_arg
      arg[13] = true if arg.size < 14
      arg
    end

    def _racc_init_sysvars
      @racc_state  = [0]
      @racc_tstack = []
      @racc_vstack = []

      @racc_t = nil
      @racc_val = nil

      @racc_read_next = true

      @racc_user_yyerror = false
      @racc_error_status = 0
    end

    # The entry point of the parser. This method is used with #next_token.
    # If Racc wants to get token (and its value), calls next_token.
    #
    # Example:
    #     def parse
    #       @q = [[1,1],
    #             [2,2],
    #             [3,3],
    #             [false, '$']]
    #       do_parse
    #     end
    #
    #     def next_token
    #       @q.shift
    #     end
    class_eval %{
    def do_parse
      #{Racc_Main_Parsing_Routine}(_racc_setup(), false)
    end
    }

    # The method to fetch next token.
    # If you use #do_parse method, you must implement #next_token.
    #
    # The format of return value is [TOKEN_SYMBOL, VALUE].
    # +token-symbol+ is represented by Ruby's symbol by default, e.g. :IDENT
    # for 'IDENT'.  ";" (String) for ';'.
    #
    # The final symbol (End of file) must be false.
    def next_token
      raise NotImplementedError, "#{self.class}\#next_token is not defined"
    end

    def _racc_do_parse_rb(arg, in_debug)
      action_table, action_check, action_default, action_pointer,
      _,            _,            _,              _,
      _,            _,            token_table,    * = arg

      _racc_init_sysvars
      tok = act = i = nil

      catch(:racc_end_parse) {
        while true
          if i = action_pointer[@racc_state[-1]]
            if @racc_read_next
              if @racc_t != 0   # not EOF
                tok, @racc_val = next_token()
                unless tok      # EOF
                  @racc_t = 0
                else
                  @racc_t = (token_table[tok] or 1)   # error token
                end
                racc_read_token(@racc_t, tok, @racc_val) if @yydebug
                @racc_read_next = false
              end
            end
            i += @racc_t
            unless i >= 0 and
                   act = action_table[i] and
                   action_check[i] == @racc_state[-1]
              act = action_default[@racc_state[-1]]
            end
          else
            act = action_default[@racc_state[-1]]
          end
          while act = _racc_evalact(act, arg)
            ;
          end
        end
      }
    end

    # Another entry point for the parser.
    # If you use this method, you must implement RECEIVER#METHOD_ID method.
    #
    # RECEIVER#METHOD_ID is a method to get next token.
    # It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
    class_eval %{
    def yyparse(recv, mid)
      #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
    end
    }

    def _racc_yyparse_rb(recv, mid, arg, c_debug)
      action_table, action_check, action_default, action_pointer,
      _,            _,            _,              _,
      _,            _,            token_table,    * = arg

      _racc_init_sysvars

      catch(:racc_end_parse) {
        until i = action_pointer[@racc_state[-1]]
          while act = _racc_evalact(action_default[@racc_state[-1]], arg)
            ;
          end
        end
        recv.__send__(mid) do |tok, val|
          unless tok
            @racc_t = 0
          else
            @racc_t = (token_table[tok] or 1)   # error token
          end
          @racc_val = val
          @racc_read_next = false

          i += @racc_t
          unless i >= 0 and
                 act = action_table[i] and
                 action_check[i] == @racc_state[-1]
            act = action_default[@racc_state[-1]]
          end
          while act = _racc_evalact(act, arg)
            ;
          end

          while !(i = action_pointer[@racc_state[-1]]) ||
                ! @racc_read_next ||
                @racc_t == 0  # $
            unless i and i += @racc_t and
                   i >= 0 and
                   act = action_table[i] and
                   action_check[i] == @racc_state[-1]
              act = action_default[@racc_state[-1]]
            end
            while act = _racc_evalact(act, arg)
              ;
            end
          end
        end
      }
    end

    ###
    ### common
    ###

    def _racc_evalact(act, arg)
      action_table, action_check, _, action_pointer,
      _,            _,            _, _,
      _,            _,            _, shift_n,
      reduce_n,     * = arg
      nerr = 0   # tmp

      if act > 0 and act < shift_n
        #
        # shift
        #
        if @racc_error_status > 0
          @racc_error_status -= 1 unless @racc_t <= 1 # error token or EOF
        end
        @racc_vstack.push @racc_val
        @racc_state.push act
        @racc_read_next = true
        if @yydebug
          @racc_tstack.push @racc_t
          racc_shift @racc_t, @racc_tstack, @racc_vstack
        end

      elsif act < 0 and act > -reduce_n
        #
        # reduce
        #
        code = catch(:racc_jump) {
          @racc_state.push _racc_do_reduce(arg, act)
          false
        }
        if code
          case code
          when 1 # yyerror
            @racc_user_yyerror = true   # user_yyerror
            return -reduce_n
          when 2 # yyaccept
            return shift_n
          else
            raise '[Racc Bug] unknown jump code'
          end
        end

      elsif act == shift_n
        #
        # accept
        #
        racc_accept if @yydebug
        throw :racc_end_parse, @racc_vstack[0]

      elsif act == -reduce_n
        #
        # error
        #
        case @racc_error_status
        when 0
          unless arg[21]    # user_yyerror
            nerr += 1
            on_error @racc_t, @racc_val, @racc_vstack
          end
        when 3
          if @racc_t == 0   # is $
            # We're at EOF, and another error occurred immediately after
            # attempting auto-recovery
            throw :racc_end_parse, nil
          end
          @racc_read_next = true
        end
        @racc_user_yyerror = false
        @racc_error_status = 3
        while true
          if i = action_pointer[@racc_state[-1]]
            i += 1   # error token
            if  i >= 0 and
                (act = action_table[i]) and
                action_check[i] == @racc_state[-1]
              break
            end
          end
          throw :racc_end_parse, nil if @racc_state.size <= 1
          @racc_state.pop
          @racc_vstack.pop
          if @yydebug
            @racc_tstack.pop
            racc_e_pop @racc_state, @racc_tstack, @racc_vstack
          end
        end
        return act

      else
        raise "[Racc Bug] unknown action #{act.inspect}"
      end

      racc_next_state(@racc_state[-1], @racc_state) if @yydebug

      nil
    end

    def _racc_do_reduce(arg, act)
      _,          _,            _,            _,
      goto_table, goto_check,   goto_default, goto_pointer,
      nt_base,    reduce_table, _,            _,
      _,          use_result,   * = arg

      state = @racc_state
      vstack = @racc_vstack
      tstack = @racc_tstack

      i = act * -3
      len       = reduce_table[i]
      reduce_to = reduce_table[i+1]
      method_id = reduce_table[i+2]
      void_array = []

      tmp_t = tstack[-len, len] if @yydebug
      tmp_v = vstack[-len, len]
      tstack[-len, len] = void_array if @yydebug
      vstack[-len, len] = void_array
      state[-len, len]  = void_array

      # tstack must be updated AFTER method call
      if use_result
        vstack.push __send__(method_id, tmp_v, vstack, tmp_v[0])
      else
        vstack.push __send__(method_id, tmp_v, vstack)
      end
      tstack.push reduce_to

      racc_reduce(tmp_t, reduce_to, tstack, vstack) if @yydebug

      k1 = reduce_to - nt_base
      if i = goto_pointer[k1]
        i += state[-1]
        if i >= 0 and (curstate = goto_table[i]) and goto_check[i] == k1
          return curstate
        end
      end
      goto_default[k1]
    end

    # This method is called when a parse error is found.
    #
    # ERROR_TOKEN_ID is an internal ID of token which caused error.
    # You can get string representation of this ID by calling
    # #token_to_str.
    #
    # ERROR_VALUE is a value of error token.
    #
    # value_stack is a stack of symbol values.
    # DO NOT MODIFY this object.
    #
    # This method raises ParseError by default.
    #
    # If this method returns, parsers enter "error recovering mode".
    def on_error(t, val, vstack)
      raise ParseError, sprintf("\nparse error on value %s (%s)",
                                val.inspect, token_to_str(t) || '?')
    end

    # Enter error recovering mode.
    # This method does not call #on_error.
    def yyerror
      throw :racc_jump, 1
    end

    # Exit parser.
    # Return value is Symbol_Value_Stack[0].
    def yyaccept
      throw :racc_jump, 2
    end

    # Leave error recovering mode.
    def yyerrok
      @racc_error_status = 0
    end

    # For debugging output
    def racc_read_token(t, tok, val)
      @racc_debug_out.print 'read    '
      @racc_debug_out.print tok.inspect, '(', racc_token2str(t), ') '
      @racc_debug_out.puts val.inspect
      @racc_debug_out.puts
    end

    def racc_shift(tok, tstack, vstack)
      @racc_debug_out.puts "shift   #{racc_token2str tok}"
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_reduce(toks, sim, tstack, vstack)
      out = @racc_debug_out
      out.print 'reduce '
      if toks.empty?
        out.print ' <none>'
      else
        toks.each {|t| out.print ' ', racc_token2str(t) }
      end
      out.puts " --> #{racc_token2str(sim)}"
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_accept
      @racc_debug_out.puts 'accept'
      @racc_debug_out.puts
    end

    def racc_e_pop(state, tstack, vstack)
      @racc_debug_out.puts 'error recovering mode: pop token'
      racc_print_states state
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_next_state(curstate, state)
      @racc_debug_out.puts  "goto    #{curstate}"
      racc_print_states state
      @racc_debug_out.puts
    end

    def racc_print_stacks(t, v)
      out = @racc_debug_out
      out.print '        ['
      t.each_index do |i|
        out.print ' (', racc_token2str(t[i]), ' ', v[i].inspect, ')'
      end
      out.puts ' ]'
    end

    def racc_print_states(s)
      out = @racc_debug_out
      out.print '        ['
      s.each {|st| out.print ' ', st }
      out.puts ' ]'
    end

    def racc_token2str(tok)
      self.class::Racc_token_to_s_table[tok] or
          raise "[Racc Bug] can't convert token #{tok} to string"
    end

    # Convert internal ID of token symbol to the string.
    def token_to_str(t)
      self.class::Racc_token_to_s_table[t]
    end

  end

end

__end_of_file__
end
PKDH[�l�`I`Ishare/ruby/racc/parser.rbnu�[���# frozen_string_literal: false
#--
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
#
# As a special exception, when this code is copied by Racc
# into a Racc output file, you may use that output file
# without restriction.
#++

require 'racc/info'

unless defined?(NotImplementedError)
  NotImplementedError = NotImplementError # :nodoc:
end

module Racc
  class ParseError < StandardError; end
end
unless defined?(::ParseError)
  ParseError = Racc::ParseError
end

# Racc is a LALR(1) parser generator.
# It is written in Ruby itself, and generates Ruby programs.
#
# == Command-line Reference
#
#     racc [-o<var>filename</var>] [--output-file=<var>filename</var>]
#          [-e<var>rubypath</var>] [--embedded=<var>rubypath</var>]
#          [-v] [--verbose]
#          [-O<var>filename</var>] [--log-file=<var>filename</var>]
#          [-g] [--debug]
#          [-E] [--embedded]
#          [-l] [--no-line-convert]
#          [-c] [--line-convert-all]
#          [-a] [--no-omit-actions]
#          [-C] [--check-only]
#          [-S] [--output-status]
#          [--version] [--copyright] [--help] <var>grammarfile</var>
#
# [+filename+]
#   Racc grammar file. Any extension is permitted.
# [-o+outfile+, --output-file=+outfile+]
#   A filename for output. default is <+filename+>.tab.rb
# [-O+filename+, --log-file=+filename+]
#   Place logging output in file +filename+.
#   Default log file name is <+filename+>.output.
# [-e+rubypath+, --executable=+rubypath+]
#   output executable file(mode 755). where +path+ is the Ruby interpreter.
# [-v, --verbose]
#   verbose mode. create +filename+.output file, like yacc's y.output file.
# [-g, --debug]
#   add debug code to parser class. To display debuggin information,
#   use this '-g' option and set @yydebug true in parser class.
# [-E, --embedded]
#   Output parser which doesn't need runtime files (racc/parser.rb).
# [-C, --check-only]
#   Check syntax of racc grammar file and quit.
# [-S, --output-status]
#   Print messages time to time while compiling.
# [-l, --no-line-convert]
#   turns off line number converting.
# [-c, --line-convert-all]
#   Convert line number of actions, inner, header and footer.
# [-a, --no-omit-actions]
#   Call all actions, even if an action is empty.
# [--version]
#   print Racc version and quit.
# [--copyright]
#   Print copyright and quit.
# [--help]
#   Print usage and quit.
#
# == Generating Parser Using Racc
#
# To compile Racc grammar file, simply type:
#
#   $ racc parse.y
#
# This creates Ruby script file "parse.tab.y". The -o option can change the output filename.
#
# == Writing A Racc Grammar File
#
# If you want your own parser, you have to write a grammar file.
# A grammar file contains the name of your parser class, grammar for the parser,
# user code, and anything else.
# When writing a grammar file, yacc's knowledge is helpful.
# If you have not used yacc before, Racc is not too difficult.
#
# Here's an example Racc grammar file.
#
#   class Calcparser
#   rule
#     target: exp { print val[0] }
#
#     exp: exp '+' exp
#        | exp '*' exp
#        | '(' exp ')'
#        | NUMBER
#   end
#
# Racc grammar files resemble yacc files.
# But (of course), this is Ruby code.
# yacc's $$ is the 'result', $0, $1... is
# an array called 'val', and $-1, $-2... is an array called '_values'.
#
# See the {Grammar File Reference}[rdoc-ref:lib/racc/rdoc/grammar.en.rdoc] for
# more information on grammar files.
#
# == Parser
#
# Then you must prepare the parse entry method. There are two types of
# parse methods in Racc, Racc::Parser#do_parse and Racc::Parser#yyparse
#
# Racc::Parser#do_parse is simple.
#
# It's yyparse() of yacc, and Racc::Parser#next_token is yylex().
# This method must returns an array like [TOKENSYMBOL, ITS_VALUE].
# EOF is [false, false].
# (TOKENSYMBOL is a Ruby symbol (taken from String#intern) by default.
# If you want to change this, see the grammar reference.
#
# Racc::Parser#yyparse is little complicated, but useful.
# It does not use Racc::Parser#next_token, instead it gets tokens from any iterator.
#
# For example, <code>yyparse(obj, :scan)</code> causes
# calling +obj#scan+, and you can return tokens by yielding them from +obj#scan+.
#
# == Debugging
#
# When debugging, "-v" or/and the "-g" option is helpful.
#
# "-v" creates verbose log file (.output).
# "-g" creates a "Verbose Parser".
# Verbose Parser prints the internal status when parsing.
# But it's _not_ automatic.
# You must use -g option and set +@yydebug+ to +true+ in order to get output.
# -g option only creates the verbose parser.
#
# === Racc reported syntax error.
#
# Isn't there too many "end"?
# grammar of racc file is changed in v0.10.
#
# Racc does not use '%' mark, while yacc uses huge number of '%' marks..
#
# === Racc reported "XXXX conflicts".
#
# Try "racc -v xxxx.y".
# It causes producing racc's internal log file, xxxx.output.
#
# === Generated parsers does not work correctly
#
# Try "racc -g xxxx.y".
# This command let racc generate "debugging parser".
# Then set @yydebug=true in your parser.
# It produces a working log of your parser.
#
# == Re-distributing Racc runtime
#
# A parser, which is created by Racc, requires the Racc runtime module;
# racc/parser.rb.
#
# Ruby 1.8.x comes with Racc runtime module,
# you need NOT distribute Racc runtime files.
#
# If you want to include the Racc runtime module with your parser.
# This can be done by using '-E' option:
#
#   $ racc -E -omyparser.rb myparser.y
#
# This command creates myparser.rb which `includes' Racc runtime.
# Only you must do is to distribute your parser file (myparser.rb).
#
# Note: parser.rb is ruby license, but your parser is not.
# Your own parser is completely yours.
module Racc

  unless defined?(Racc_No_Extentions)
    Racc_No_Extentions = false # :nodoc:
  end

  class Parser

    Racc_Runtime_Version = ::Racc::VERSION
    Racc_Runtime_Revision = '$Id: e754525bd317344c4284fca6fdce0a425979ade1 $'

    Racc_Runtime_Core_Version_R = ::Racc::VERSION
    Racc_Runtime_Core_Revision_R = '$Id: e754525bd317344c4284fca6fdce0a425979ade1 $'.split[1]
    begin
      if Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
        require 'racc/cparse-jruby.jar'
        com.headius.racc.Cparse.new.load(JRuby.runtime, false)
      else
        require 'racc/cparse'
      end
    # Racc_Runtime_Core_Version_C  = (defined in extension)
      Racc_Runtime_Core_Revision_C = Racc_Runtime_Core_Id_C.split[2]
      unless new.respond_to?(:_racc_do_parse_c, true)
        raise LoadError, 'old cparse.so'
      end
      if Racc_No_Extentions
        raise LoadError, 'selecting ruby version of racc runtime core'
      end

      Racc_Main_Parsing_Routine    = :_racc_do_parse_c # :nodoc:
      Racc_YY_Parse_Method         = :_racc_yyparse_c # :nodoc:
      Racc_Runtime_Core_Version    = Racc_Runtime_Core_Version_C # :nodoc:
      Racc_Runtime_Core_Revision   = Racc_Runtime_Core_Revision_C # :nodoc:
      Racc_Runtime_Type            = 'c' # :nodoc:
    rescue LoadError
puts $!
puts $!.backtrace
      Racc_Main_Parsing_Routine    = :_racc_do_parse_rb
      Racc_YY_Parse_Method         = :_racc_yyparse_rb
      Racc_Runtime_Core_Version    = Racc_Runtime_Core_Version_R
      Racc_Runtime_Core_Revision   = Racc_Runtime_Core_Revision_R
      Racc_Runtime_Type            = 'ruby'
    end

    def Parser.racc_runtime_type # :nodoc:
      Racc_Runtime_Type
    end

    def _racc_setup
      @yydebug = false unless self.class::Racc_debug_parser
      @yydebug = false unless defined?(@yydebug)
      if @yydebug
        @racc_debug_out = $stderr unless defined?(@racc_debug_out)
        @racc_debug_out ||= $stderr
      end
      arg = self.class::Racc_arg
      arg[13] = true if arg.size < 14
      arg
    end

    def _racc_init_sysvars
      @racc_state  = [0]
      @racc_tstack = []
      @racc_vstack = []

      @racc_t = nil
      @racc_val = nil

      @racc_read_next = true

      @racc_user_yyerror = false
      @racc_error_status = 0
    end

    # The entry point of the parser. This method is used with #next_token.
    # If Racc wants to get token (and its value), calls next_token.
    #
    # Example:
    #     def parse
    #       @q = [[1,1],
    #             [2,2],
    #             [3,3],
    #             [false, '$']]
    #       do_parse
    #     end
    #
    #     def next_token
    #       @q.shift
    #     end
    class_eval %{
    def do_parse
      #{Racc_Main_Parsing_Routine}(_racc_setup(), false)
    end
    }

    # The method to fetch next token.
    # If you use #do_parse method, you must implement #next_token.
    #
    # The format of return value is [TOKEN_SYMBOL, VALUE].
    # +token-symbol+ is represented by Ruby's symbol by default, e.g. :IDENT
    # for 'IDENT'.  ";" (String) for ';'.
    #
    # The final symbol (End of file) must be false.
    def next_token
      raise NotImplementedError, "#{self.class}\#next_token is not defined"
    end

    def _racc_do_parse_rb(arg, in_debug)
      action_table, action_check, action_default, action_pointer,
      _,            _,            _,              _,
      _,            _,            token_table,    * = arg

      _racc_init_sysvars
      tok = act = i = nil

      catch(:racc_end_parse) {
        while true
          if i = action_pointer[@racc_state[-1]]
            if @racc_read_next
              if @racc_t != 0   # not EOF
                tok, @racc_val = next_token()
                unless tok      # EOF
                  @racc_t = 0
                else
                  @racc_t = (token_table[tok] or 1)   # error token
                end
                racc_read_token(@racc_t, tok, @racc_val) if @yydebug
                @racc_read_next = false
              end
            end
            i += @racc_t
            unless i >= 0 and
                   act = action_table[i] and
                   action_check[i] == @racc_state[-1]
              act = action_default[@racc_state[-1]]
            end
          else
            act = action_default[@racc_state[-1]]
          end
          while act = _racc_evalact(act, arg)
            ;
          end
        end
      }
    end

    # Another entry point for the parser.
    # If you use this method, you must implement RECEIVER#METHOD_ID method.
    #
    # RECEIVER#METHOD_ID is a method to get next token.
    # It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
    class_eval %{
    def yyparse(recv, mid)
      #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
    end
    }

    def _racc_yyparse_rb(recv, mid, arg, c_debug)
      action_table, action_check, action_default, action_pointer,
      _,            _,            _,              _,
      _,            _,            token_table,    * = arg

      _racc_init_sysvars

      catch(:racc_end_parse) {
        until i = action_pointer[@racc_state[-1]]
          while act = _racc_evalact(action_default[@racc_state[-1]], arg)
            ;
          end
        end
        recv.__send__(mid) do |tok, val|
          unless tok
            @racc_t = 0
          else
            @racc_t = (token_table[tok] or 1)   # error token
          end
          @racc_val = val
          @racc_read_next = false

          i += @racc_t
          unless i >= 0 and
                 act = action_table[i] and
                 action_check[i] == @racc_state[-1]
            act = action_default[@racc_state[-1]]
          end
          while act = _racc_evalact(act, arg)
            ;
          end

          while !(i = action_pointer[@racc_state[-1]]) ||
                ! @racc_read_next ||
                @racc_t == 0  # $
            unless i and i += @racc_t and
                   i >= 0 and
                   act = action_table[i] and
                   action_check[i] == @racc_state[-1]
              act = action_default[@racc_state[-1]]
            end
            while act = _racc_evalact(act, arg)
              ;
            end
          end
        end
      }
    end

    ###
    ### common
    ###

    def _racc_evalact(act, arg)
      action_table, action_check, _, action_pointer,
      _,            _,            _, _,
      _,            _,            _, shift_n,
      reduce_n,     * = arg
      nerr = 0   # tmp

      if act > 0 and act < shift_n
        #
        # shift
        #
        if @racc_error_status > 0
          @racc_error_status -= 1 unless @racc_t <= 1 # error token or EOF
        end
        @racc_vstack.push @racc_val
        @racc_state.push act
        @racc_read_next = true
        if @yydebug
          @racc_tstack.push @racc_t
          racc_shift @racc_t, @racc_tstack, @racc_vstack
        end

      elsif act < 0 and act > -reduce_n
        #
        # reduce
        #
        code = catch(:racc_jump) {
          @racc_state.push _racc_do_reduce(arg, act)
          false
        }
        if code
          case code
          when 1 # yyerror
            @racc_user_yyerror = true   # user_yyerror
            return -reduce_n
          when 2 # yyaccept
            return shift_n
          else
            raise '[Racc Bug] unknown jump code'
          end
        end

      elsif act == shift_n
        #
        # accept
        #
        racc_accept if @yydebug
        throw :racc_end_parse, @racc_vstack[0]

      elsif act == -reduce_n
        #
        # error
        #
        case @racc_error_status
        when 0
          unless arg[21]    # user_yyerror
            nerr += 1
            on_error @racc_t, @racc_val, @racc_vstack
          end
        when 3
          if @racc_t == 0   # is $
            # We're at EOF, and another error occurred immediately after
            # attempting auto-recovery
            throw :racc_end_parse, nil
          end
          @racc_read_next = true
        end
        @racc_user_yyerror = false
        @racc_error_status = 3
        while true
          if i = action_pointer[@racc_state[-1]]
            i += 1   # error token
            if  i >= 0 and
                (act = action_table[i]) and
                action_check[i] == @racc_state[-1]
              break
            end
          end
          throw :racc_end_parse, nil if @racc_state.size <= 1
          @racc_state.pop
          @racc_vstack.pop
          if @yydebug
            @racc_tstack.pop
            racc_e_pop @racc_state, @racc_tstack, @racc_vstack
          end
        end
        return act

      else
        raise "[Racc Bug] unknown action #{act.inspect}"
      end

      racc_next_state(@racc_state[-1], @racc_state) if @yydebug

      nil
    end

    def _racc_do_reduce(arg, act)
      _,          _,            _,            _,
      goto_table, goto_check,   goto_default, goto_pointer,
      nt_base,    reduce_table, _,            _,
      _,          use_result,   * = arg

      state = @racc_state
      vstack = @racc_vstack
      tstack = @racc_tstack

      i = act * -3
      len       = reduce_table[i]
      reduce_to = reduce_table[i+1]
      method_id = reduce_table[i+2]
      void_array = []

      tmp_t = tstack[-len, len] if @yydebug
      tmp_v = vstack[-len, len]
      tstack[-len, len] = void_array if @yydebug
      vstack[-len, len] = void_array
      state[-len, len]  = void_array

      # tstack must be updated AFTER method call
      if use_result
        vstack.push __send__(method_id, tmp_v, vstack, tmp_v[0])
      else
        vstack.push __send__(method_id, tmp_v, vstack)
      end
      tstack.push reduce_to

      racc_reduce(tmp_t, reduce_to, tstack, vstack) if @yydebug

      k1 = reduce_to - nt_base
      if i = goto_pointer[k1]
        i += state[-1]
        if i >= 0 and (curstate = goto_table[i]) and goto_check[i] == k1
          return curstate
        end
      end
      goto_default[k1]
    end

    # This method is called when a parse error is found.
    #
    # ERROR_TOKEN_ID is an internal ID of token which caused error.
    # You can get string representation of this ID by calling
    # #token_to_str.
    #
    # ERROR_VALUE is a value of error token.
    #
    # value_stack is a stack of symbol values.
    # DO NOT MODIFY this object.
    #
    # This method raises ParseError by default.
    #
    # If this method returns, parsers enter "error recovering mode".
    def on_error(t, val, vstack)
      raise ParseError, sprintf("\nparse error on value %s (%s)",
                                val.inspect, token_to_str(t) || '?')
    end

    # Enter error recovering mode.
    # This method does not call #on_error.
    def yyerror
      throw :racc_jump, 1
    end

    # Exit parser.
    # Return value is Symbol_Value_Stack[0].
    def yyaccept
      throw :racc_jump, 2
    end

    # Leave error recovering mode.
    def yyerrok
      @racc_error_status = 0
    end

    # For debugging output
    def racc_read_token(t, tok, val)
      @racc_debug_out.print 'read    '
      @racc_debug_out.print tok.inspect, '(', racc_token2str(t), ') '
      @racc_debug_out.puts val.inspect
      @racc_debug_out.puts
    end

    def racc_shift(tok, tstack, vstack)
      @racc_debug_out.puts "shift   #{racc_token2str tok}"
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_reduce(toks, sim, tstack, vstack)
      out = @racc_debug_out
      out.print 'reduce '
      if toks.empty?
        out.print ' <none>'
      else
        toks.each {|t| out.print ' ', racc_token2str(t) }
      end
      out.puts " --> #{racc_token2str(sim)}"
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_accept
      @racc_debug_out.puts 'accept'
      @racc_debug_out.puts
    end

    def racc_e_pop(state, tstack, vstack)
      @racc_debug_out.puts 'error recovering mode: pop token'
      racc_print_states state
      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end

    def racc_next_state(curstate, state)
      @racc_debug_out.puts  "goto    #{curstate}"
      racc_print_states state
      @racc_debug_out.puts
    end

    def racc_print_stacks(t, v)
      out = @racc_debug_out
      out.print '        ['
      t.each_index do |i|
        out.print ' (', racc_token2str(t[i]), ' ', v[i].inspect, ')'
      end
      out.puts ' ]'
    end

    def racc_print_states(s)
      out = @racc_debug_out
      out.print '        ['
      s.each {|st| out.print ' ', st }
      out.puts ' ]'
    end

    def racc_token2str(tok)
      self.class::Racc_token_to_s_table[tok] or
          raise "[Racc Bug] can't convert token #{tok} to string"
    end

    # Convert internal ID of token symbol to the string.
    def token_to_str(t)
      self.class::Racc_token_to_s_table[t]
    end

  end

end
PKDH[�	#��;�;$share/ruby/racc/grammarfileparser.rbnu�[���#
# $Id: 63bd084db2dce8a2c9760318faae6104717cead7 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#

require 'racc'
require 'racc/compat'
require 'racc/grammar'
require 'racc/parserfilegenerator'
require 'racc/sourcetext'
require 'stringio'

module Racc

  grammar = Grammar.define {
    g = self

    g.class = seq(:CLASS, :cname, many(:param), :RULE, :rules, option(:END))

    g.cname       = seq(:rubyconst) {|name|
                      @result.params.classname = name
                    }\
                  | seq(:rubyconst, "<", :rubyconst) {|c, _, s|
                      @result.params.classname = c
                      @result.params.superclass = s
                    }

    g.rubyconst   = separated_by1(:colon2, :SYMBOL) {|syms|
                      syms.map {|s| s.to_s }.join('::')
                    }

    g.colon2 = seq(':', ':')

    g.param       = seq(:CONV, many1(:convdef), :END) {|*|
                      #@grammar.end_convert_block   # FIXME
                    }\
                  | seq(:PRECHIGH, many1(:precdef), :PRECLOW) {|*|
                      @grammar.end_precedence_declaration true
                    }\
                  | seq(:PRECLOW, many1(:precdef), :PRECHIGH) {|*|
                      @grammar.end_precedence_declaration false
                    }\
                  | seq(:START, :symbol) {|_, sym|
                      @grammar.start_symbol = sym
                    }\
                  | seq(:TOKEN, :symbols) {|_, syms|
                      syms.each do |s|
                        s.should_terminal
                      end
                    }\
                  | seq(:OPTION, :options) {|_, syms|
                      syms.each do |opt|
                        case opt
                        when 'result_var'
                          @result.params.result_var = true
                        when 'no_result_var'
                          @result.params.result_var = false
                        when 'omit_action_call'
                          @result.params.omit_action_call = true
                        when 'no_omit_action_call'
                          @result.params.omit_action_call = false
                        else
                          raise CompileError, "unknown option: #{opt}"
                        end
                      end
                    }\
                  | seq(:EXPECT, :DIGIT) {|_, num|
                      if @grammar.n_expected_srconflicts
                        raise CompileError, "`expect' seen twice"
                      end
                      @grammar.n_expected_srconflicts = num
                    }

    g.convdef     = seq(:symbol, :STRING) {|sym, code|
                      sym.serialized = code
                    }

    g.precdef     = seq(:LEFT, :symbols) {|_, syms|
                      @grammar.declare_precedence :Left, syms
                    }\
                  | seq(:RIGHT, :symbols) {|_, syms|
                      @grammar.declare_precedence :Right, syms
                    }\
                  | seq(:NONASSOC, :symbols) {|_, syms|
                      @grammar.declare_precedence :Nonassoc, syms
                    }

    g.symbols     = seq(:symbol) {|sym|
                      [sym]
                    }\
                  | seq(:symbols, :symbol) {|list, sym|
                      list.push sym
                      list
                    }\
                  | seq(:symbols, "|")

    g.symbol      = seq(:SYMBOL) {|sym| @grammar.intern(sym) }\
                  | seq(:STRING) {|str| @grammar.intern(str) }

    g.options     = many(:SYMBOL) {|syms| syms.map {|s| s.to_s } }

    g.rules       = option(:rules_core) {|list|
                      add_rule_block list  unless list.empty?
                      nil
                    }

    g.rules_core  = seq(:symbol) {|sym|
                      [sym]
                    }\
                  | seq(:rules_core, :rule_item) {|list, i|
                      list.push i
                      list
                    }\
                  | seq(:rules_core, ';') {|list, *|
                      add_rule_block list  unless list.empty?
                      list.clear
                      list
                    }\
                  | seq(:rules_core, ':') {|list, *|
                      next_target = list.pop
                      add_rule_block list  unless list.empty?
                      [next_target]
                    }

    g.rule_item   = seq(:symbol)\
                  | seq("|") {|*|
                      OrMark.new(@scanner.lineno)
                    }\
                  | seq("=", :symbol) {|_, sym|
                      Prec.new(sym, @scanner.lineno)
                    }\
                  | seq(:ACTION) {|src|
                      UserAction.source_text(src)
                    }
  }

  GrammarFileParser = grammar.parser_class

  if grammar.states.srconflict_exist?
    raise 'Racc boot script fatal: S/R conflict in build'
  end
  if grammar.states.rrconflict_exist?
    raise 'Racc boot script fatal: R/R conflict in build'
  end

  class GrammarFileParser   # reopen

    class Result
      def initialize(grammar)
        @grammar = grammar
        @params = ParserFileGenerator::Params.new
      end

      attr_reader :grammar
      attr_reader :params
    end

    def GrammarFileParser.parse_file(filename)
      parse(File.read(filename), filename, 1)
    end

    def GrammarFileParser.parse(src, filename = '-', lineno = 1)
      new().parse(src, filename, lineno)
    end

    def initialize(debug_flags = DebugFlags.new)
      @yydebug = debug_flags.parse
    end

    def parse(src, filename = '-', lineno = 1)
      @filename = filename
      @lineno = lineno
      @scanner = GrammarFileScanner.new(src, @filename)
      @scanner.debug = @yydebug
      @grammar = Grammar.new
      @result = Result.new(@grammar)
      @embedded_action_seq = 0
      yyparse @scanner, :yylex
      parse_user_code
      @result.grammar.init
      @result
    end

    private

    def next_token
      @scanner.scan
    end

    def on_error(tok, val, _values)
      if val.respond_to?(:id2name)
        v = val.id2name
      elsif val.kind_of?(String)
        v = val
      else
        v = val.inspect
      end
      raise CompileError, "#{location()}: unexpected token '#{v}'"
    end

    def location
      "#{@filename}:#{@lineno - 1 + @scanner.lineno}"
    end

    def add_rule_block(list)
      sprec = nil
      target = list.shift
      case target
      when OrMark, UserAction, Prec
        raise CompileError, "#{target.lineno}: unexpected symbol #{target.name}"
      end
      curr = []
      list.each do |i|
        case i
        when OrMark
          add_rule target, curr, sprec
          curr = []
          sprec = nil
        when Prec
          raise CompileError, "'=<prec>' used twice in one rule" if sprec
          sprec = i.symbol
        else
          curr.push i
        end
      end
      add_rule target, curr, sprec
    end

    def add_rule(target, list, sprec)
      if list.last.kind_of?(UserAction)
        act = list.pop
      else
        act = UserAction.empty
      end
      list.map! {|s| s.kind_of?(UserAction) ? embedded_action(s) : s }
      rule = Rule.new(target, list, act)
      rule.specified_prec = sprec
      @grammar.add rule
    end

    def embedded_action(act)
      sym = @grammar.intern("@#{@embedded_action_seq += 1}".intern, true)
      @grammar.add Rule.new(sym, [], act)
      sym
    end

    #
    # User Code Block
    #

    def parse_user_code
      line = @scanner.lineno
      _, *blocks = *@scanner.epilogue.split(/^----/)
      blocks.each do |block|
        header, *body = block.lines.to_a
        label0, pathes = *header.sub(/\A-+/, '').split('=', 2)
        label = canonical_label(label0)
        (pathes ? pathes.strip.split(' ') : []).each do |path|
          add_user_code label, SourceText.new(File.read(path), path, 1)
        end
        add_user_code label, SourceText.new(body.join(''), @filename, line + 1)
        line += (1 + body.size)
      end
    end

    USER_CODE_LABELS = {
      'header'  => :header,
      'prepare' => :header,   # obsolete
      'inner'   => :inner,
      'footer'  => :footer,
      'driver'  => :footer    # obsolete
    }

    def canonical_label(src)
      label = src.to_s.strip.downcase.slice(/\w+/)
      unless USER_CODE_LABELS.key?(label)
        raise CompileError, "unknown user code type: #{label.inspect}"
      end
      label
    end

    def add_user_code(label, src)
      @result.params.send(USER_CODE_LABELS[label]).push src
    end

  end


  class GrammarFileScanner

    def initialize(str, filename = '-')
      @lines  = str.b.split(/\n|\r\n|\r/)
      @filename = filename
      @lineno = -1
      @line_head   = true
      @in_rule_blk = false
      @in_conv_blk = false
      @in_block = nil
      @epilogue = ''
      @debug = false
      next_line
    end

    attr_reader :epilogue

    def lineno
      @lineno + 1
    end

    attr_accessor :debug

    def yylex(&block)
      unless @debug
        yylex0(&block)
      else
        yylex0 do |sym, tok|
          $stderr.printf "%7d %-10s %s\n", lineno(), sym.inspect, tok.inspect
          yield [sym, tok]
        end
      end
    end

    private

    def yylex0
      begin
        until @line.empty?
          @line.sub!(/\A\s+/, '')
          if /\A\#/ =~ @line
            break
          elsif /\A\/\*/ =~ @line
            skip_comment
          elsif s = reads(/\A[a-zA-Z_]\w*/)
            yield [atom_symbol(s), s.intern]
          elsif s = reads(/\A\d+/)
            yield [:DIGIT, s.to_i]
          elsif ch = reads(/\A./)
            case ch
            when '"', "'"
              yield [:STRING, eval(scan_quoted(ch))]
            when '{'
              lineno = lineno()
              yield [:ACTION, SourceText.new(scan_action(), @filename, lineno)]
            else
              if ch == '|'
                @line_head = false
              end
              yield [ch, ch]
            end
          else
          end
        end
      end while next_line()
      yield nil
    end

    def next_line
      @lineno += 1
      @line = @lines[@lineno]
      if not @line or /\A----/ =~ @line
        @epilogue = @lines.join("\n")
        @lines.clear
        @line = nil
        if @in_block
          @lineno -= 1
          scan_error! sprintf('unterminated %s', @in_block)
        end
        false
      else
        @line.sub!(/(?:\n|\r\n|\r)\z/, '')
        @line_head = true
        true
      end
    end

    ReservedWord = {
      'right'    => :RIGHT,
      'left'     => :LEFT,
      'nonassoc' => :NONASSOC,
      'preclow'  => :PRECLOW,
      'prechigh' => :PRECHIGH,
      'token'    => :TOKEN,
      'convert'  => :CONV,
      'options'  => :OPTION,
      'start'    => :START,
      'expect'   => :EXPECT,
      'class'    => :CLASS,
      'rule'     => :RULE,
      'end'      => :END
    }

    def atom_symbol(token)
      if token == 'end'
        symbol = :END
        @in_conv_blk = false
        @in_rule_blk = false
      else
        if @line_head and not @in_conv_blk and not @in_rule_blk
          symbol = ReservedWord[token] || :SYMBOL
        else
          symbol = :SYMBOL
        end
        case symbol
        when :RULE then @in_rule_blk = true
        when :CONV then @in_conv_blk = true
        end
      end
      @line_head = false
      symbol
    end

    def skip_comment
      @in_block = 'comment'
      until m = /\*\//.match(@line)
        next_line
      end
      @line = m.post_match
      @in_block = nil
    end

    $raccs_print_type = false

    def scan_action
      buf = ''
      nest = 1
      pre = nil
      @in_block = 'action'
      begin
        pre = nil
        if s = reads(/\A\s+/)
          # does not set 'pre'
          buf << s
        end
        until @line.empty?
          if s = reads(/\A[^'"`{}%#\/\$]+/)
            buf << (pre = s)
            next
          end
          case ch = read(1)
          when '{'
            nest += 1
            buf << (pre = ch)
          when '}'
            nest -= 1
            if nest == 0
              @in_block = nil
              buf.sub!(/[ \t\f]+\z/, '')
              return buf
            end
            buf << (pre = ch)
          when '#'   # comment
            buf << ch << @line
            break
          when "'", '"', '`'
            buf << (pre = scan_quoted(ch))
          when '%'
            if literal_head? pre, @line
              # % string, regexp, array
              buf << ch
              case ch = read(1)
              when /[qQx]/n
                buf << ch << (pre = scan_quoted(read(1), '%string'))
              when /wW/n
                buf << ch << (pre = scan_quoted(read(1), '%array'))
              when /s/n
                buf << ch << (pre = scan_quoted(read(1), '%symbol'))
              when /r/n
                buf << ch << (pre = scan_quoted(read(1), '%regexp'))
              when /[a-zA-Z0-9= ]/n   # does not include "_"
                scan_error! "unknown type of % literal '%#{ch}'"
              else
                buf << (pre = scan_quoted(ch, '%string'))
              end
            else
              # operator
              buf << '||op->' if $raccs_print_type
              buf << (pre = ch)
            end
          when '/'
            if literal_head? pre, @line
              # regexp
              buf << (pre = scan_quoted(ch, 'regexp'))
            else
              # operator
              buf << '||op->' if $raccs_print_type
              buf << (pre = ch)
            end
          when '$'   # gvar
            buf << ch << (pre = read(1))
          else
            raise 'racc: fatal: must not happen'
          end
        end
        buf << "\n"
      end while next_line()
      raise 'racc: fatal: scan finished before parser finished'
    end

    def literal_head?(pre, post)
      (!pre || /[a-zA-Z_0-9]/n !~ pre[-1,1]) &&
          !post.empty? && /\A[\s\=]/n !~ post
    end

    def read(len)
      s = @line[0, len]
      @line = @line[len .. -1]
      s
    end

    def reads(re)
      m = re.match(@line) or return nil
      @line = m.post_match
      m[0]
    end

    def scan_quoted(left, tag = 'string')
      buf = left.dup
      buf = "||#{tag}->" + buf if $raccs_print_type
      re = get_quoted_re(left)
      sv, @in_block = @in_block, tag
      begin
        if s = reads(re)
          buf << s
          break
        else
          buf << @line
        end
      end while next_line()
      @in_block = sv
      buf << "<-#{tag}||" if $raccs_print_type
      buf
    end

    LEFT_TO_RIGHT = {
      '(' => ')',
      '{' => '}',
      '[' => ']',
      '<' => '>'
    }

    CACHE = {}

    def get_quoted_re(left)
      term = Regexp.quote(LEFT_TO_RIGHT[left] || left)
      CACHE[left] ||= /\A[^#{term}\\]*(?:\\.[^\\#{term}]*)*#{term}/
    end

    def scan_error!(msg)
      raise CompileError, "#{lineno()}: #{msg}"
    end

  end

end   # module Racc
PKDH[nf�ҏ�share/ruby/racc/compat.rbnu�[���#
# $Id: 14fa1118eb3a23e85265e4f7afe2d5a297d69f9c $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#

unless Object.method_defined?(:__send)
  class Object
    alias __send __send__
  end
end

unless Object.method_defined?(:__send!)
  class Object
    alias __send! __send__
  end
end

unless Array.method_defined?(:map!)
  class Array
    if Array.method_defined?(:collect!)
      alias map! collect!
    else
      alias map! filter
    end
  end
end
PKDH[`��0��#share/ruby/racc/logfilegenerator.rbnu�[���#
# $Id: 5e9d0a01b5d56fd9cdc3d5cb078b1a3e1bbaf779 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#

module Racc

  class LogFileGenerator

    def initialize(states, debug_flags = DebugFlags.new)
      @states = states
      @grammar = states.grammar
      @debug_flags = debug_flags
    end

    def output(out)
      output_conflict out; out.puts
      output_useless  out; out.puts
      output_rule     out; out.puts
      output_token    out; out.puts
      output_state    out
    end

    #
    # Warnings
    #

    def output_conflict(out)
      @states.each do |state|
        if state.srconf
          out.printf "state %d contains %d shift/reduce conflicts\n",
                     state.stateid, state.srconf.size
        end
        if state.rrconf
          out.printf "state %d contains %d reduce/reduce conflicts\n",
                     state.stateid, state.rrconf.size
        end
      end
    end

    def output_useless(out)
      @grammar.each do |rl|
        if rl.useless?
          out.printf "rule %d (%s) never reduced\n",
                     rl.ident, rl.target.to_s
        end
      end
      @grammar.each_nonterminal do |t|
        if t.useless?
          out.printf "useless nonterminal %s\n", t.to_s
        end
      end
    end

    #
    # States
    #

    def output_state(out)
      out << "--------- State ---------\n"

      showall = @debug_flags.la || @debug_flags.state
      @states.each do |state|
        out << "\nstate #{state.ident}\n\n"

        (showall ? state.closure : state.core).each do |ptr|
          pointer_out(out, ptr) if ptr.rule.ident != 0 or showall
        end
        out << "\n"

        action_out out, state
      end
    end

    def pointer_out(out, ptr)
      buf = sprintf("%4d) %s :", ptr.rule.ident, ptr.rule.target.to_s)
      ptr.rule.symbols.each_with_index do |tok, idx|
        buf << ' _' if idx == ptr.index
        buf << ' ' << tok.to_s
      end
      buf << ' _' if ptr.reduce?
      out.puts buf
    end

    def action_out(f, state)
      sr = state.srconf && state.srconf.dup
      rr = state.rrconf && state.rrconf.dup
      acts = state.action
      keys = acts.keys
      keys.sort! {|a,b| a.ident <=> b.ident }

      [ Shift, Reduce, Error, Accept ].each do |klass|
        keys.delete_if do |tok|
          act = acts[tok]
          if act.kind_of?(klass)
            outact f, tok, act
            if sr and c = sr.delete(tok)
              outsrconf f, c
            end
            if rr and c = rr.delete(tok)
              outrrconf f, c
            end

            true
          else
            false
          end
        end
      end
      sr.each {|tok, c| outsrconf f, c } if sr
      rr.each {|tok, c| outrrconf f, c } if rr

      act = state.defact
      if not act.kind_of?(Error) or @debug_flags.any?
        outact f, '$default', act
      end

      f.puts
      state.goto_table.each do |t, st|
        if t.nonterminal?
          f.printf "  %-12s  go to state %d\n", t.to_s, st.ident
        end
      end
    end

    def outact(f, t, act)
      case act
      when Shift
        f.printf "  %-12s  shift, and go to state %d\n",
                 t.to_s, act.goto_id
      when Reduce
        f.printf "  %-12s  reduce using rule %d (%s)\n",
                 t.to_s, act.ruleid, act.rule.target.to_s
      when Accept
        f.printf "  %-12s  accept\n", t.to_s
      when Error
        f.printf "  %-12s  error\n", t.to_s
      else
        raise "racc: fatal: wrong act for outact: act=#{act}(#{act.class})"
      end
    end

    def outsrconf(f, confs)
      confs.each do |c|
        r = c.reduce
        f.printf "  %-12s  [reduce using rule %d (%s)]\n",
                 c.shift.to_s, r.ident, r.target.to_s
      end
    end

    def outrrconf(f, confs)
      confs.each do |c|
        r = c.low_prec
        f.printf "  %-12s  [reduce using rule %d (%s)]\n",
                 c.token.to_s, r.ident, r.target.to_s
      end
    end

    #
    # Rules
    #

    def output_rule(out)
      out.print "-------- Grammar --------\n\n"
      @grammar.each do |rl|
        if @debug_flags.any? or rl.ident != 0
          out.printf "rule %d %s: %s\n",
                     rl.ident, rl.target.to_s, rl.symbols.join(' ')
        end
      end
    end

    #
    # Tokens
    #

    def output_token(out)
      out.print "------- Symbols -------\n\n"

      out.print "**Nonterminals, with rules where they appear\n\n"
      @grammar.each_nonterminal do |t|
        tmp = <<SRC
  %s (%d)
    on right: %s
    on left : %s
SRC
        out.printf tmp, t.to_s, t.ident,
                   symbol_locations(t.locate).join(' '),
                   symbol_locations(t.heads).join(' ')
      end

      out.print "\n**Terminals, with rules where they appear\n\n"
      @grammar.each_terminal do |t|
        out.printf "  %s (%d) %s\n",
                   t.to_s, t.ident, symbol_locations(t.locate).join(' ')
      end
    end

    def symbol_locations(locs)
      locs.map {|loc| loc.rule.ident }.reject {|n| n == 0 }.uniq
    end

  end

end   # module Racc
PKDH[��L�.�.&share/ruby/racc/parserfilegenerator.rbnu�[���#
# $Id: fff07ebfd582f8dbc845e424908cb9f41f8bf42f $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'enumerator'
require 'racc/compat'
require 'racc/sourcetext'
require 'racc/parser-text'
require 'rbconfig'

module Racc

  class ParserFileGenerator

    class Params
      def self.bool_attr(name)
        module_eval(<<-End)
          def #{name}?
            @#{name}
          end

          def #{name}=(b)
            @#{name} = b
          end
        End
      end

      attr_accessor :filename
      attr_accessor :classname
      attr_accessor :superclass
      bool_attr :omit_action_call
      bool_attr :result_var
      attr_accessor :header
      attr_accessor :inner
      attr_accessor :footer

      bool_attr :debug_parser
      bool_attr :convert_line
      bool_attr :convert_line_all
      bool_attr :embed_runtime
      bool_attr :make_executable
      attr_accessor :interpreter

      def initialize
        # Parameters derived from parser
        self.filename = nil
        self.classname = nil
        self.superclass = 'Racc::Parser'
        self.omit_action_call = true
        self.result_var = true
        self.header = []
        self.inner  = []
        self.footer = []

        # Parameters derived from command line options
        self.debug_parser = false
        self.convert_line = true
        self.convert_line_all = false
        self.embed_runtime = false
        self.make_executable = false
        self.interpreter = nil
      end
    end

    def initialize(states, params)
      @states = states
      @grammar = states.grammar
      @params = params
    end

    def generate_parser
      string_io = StringIO.new

      init_line_conversion_system
      @f = string_io
      parser_file

      string_io.rewind
      string_io.read
    end

    def generate_parser_file(destpath)
      init_line_conversion_system
      File.open(destpath, 'w') {|f|
        @f = f
        parser_file
      }
      File.chmod 0755, destpath if @params.make_executable?
    end

    private

    def parser_file
      shebang @params.interpreter if @params.make_executable?
      notice
      line
      if @params.embed_runtime?
        embed_library runtime_source()
      else
        require 'racc/parser.rb'
      end
      header
      parser_class(@params.classname, @params.superclass) {
        inner
        state_transition_table
      }
      footer
    end

    c = ::RbConfig::CONFIG
    RUBY_PATH = "#{c['bindir']}/#{c['ruby_install_name']}#{c['EXEEXT']}"

    def shebang(path)
      line '#!' + (path == 'ruby' ? RUBY_PATH : path)
    end

    def notice
      line %q[#]
      line %q[# DO NOT MODIFY!!!!]
      line %Q[# This file is automatically generated by Racc #{Racc::Version}]
      line %Q[# from Racc grammar file "#{@params.filename}".]
      line %q[#]
    end

    def runtime_source
      SourceText.new(::Racc::PARSER_TEXT, 'racc/parser.rb', 1)
    end

    def embed_library(src)
      line %[###### #{src.filename} begin]
      line %[unless $".index '#{src.filename}']
      line %[$".push '#{src.filename}']
      put src, @params.convert_line?
      line %[end]
      line %[###### #{src.filename} end]
    end

    def require(feature)
      line "require '#{feature}'"
    end

    def parser_class(classname, superclass)
      mods = classname.split('::')
      classid = mods.pop
      mods.each do |mod|
        indent; line "module #{mod}"
        cref_push mod
      end
      indent; line "class #{classid} < #{superclass}"
      cref_push classid
      yield
      cref_pop
      indent; line "end   \# class #{classid}"
      mods.reverse_each do |mod|
        cref_pop
        indent; line "end   \# module #{mod}"
      end
    end

    def header
      @params.header.each do |src|
        line
        put src, @params.convert_line_all?
      end
    end

    def inner
      @params.inner.each do |src|
        line
        put src, @params.convert_line?
      end
    end

    def footer
      @params.footer.each do |src|
        line
        put src, @params.convert_line_all?
      end
    end

    # Low Level Routines

    def put(src, convert_line = false)
      if convert_line
        replace_location(src) {
          @f.puts src.text
        }
      else
        @f.puts src.text
      end
    end

    def line(str = '')
      @f.puts str
    end

    def init_line_conversion_system
      @cref = []
      @used_separator = {}
    end

    def cref_push(name)
      @cref.push name
    end

    def cref_pop
      @cref.pop
    end

    def indent
      @f.print '  ' * @cref.size
    end

    def toplevel?
      @cref.empty?
    end

    def replace_location(src)
      sep = make_separator(src)
      @f.print 'self.class.' if toplevel?
      @f.puts "module_eval(<<'#{sep}', '#{src.filename}', #{src.lineno})"
      yield
      @f.puts sep
    end

    def make_separator(src)
      sep = unique_separator(src.filename)
      sep *= 2 while src.text.index(sep)
      sep
    end

    def unique_separator(id)
      sep = "...end #{id}/module_eval..."
      while @used_separator.key?(sep)
        sep.concat sprintf('%02x', rand(255))
      end
      @used_separator[sep] = true
      sep
    end

    #
    # State Transition Table Serialization
    #

    public

    def put_state_transition_table(f)
      @f = f
      state_transition_table
    end

    private

    def state_transition_table
      table = @states.state_transition_table
      table.use_result_var = @params.result_var?
      table.debug_parser = @params.debug_parser?

      line "##### State transition tables begin ###"
      line
      integer_list 'racc_action_table', table.action_table
      line
      integer_list 'racc_action_check', table.action_check
      line
      integer_list 'racc_action_pointer', table.action_pointer
      line
      integer_list 'racc_action_default', table.action_default
      line
      integer_list 'racc_goto_table', table.goto_table
      line
      integer_list 'racc_goto_check', table.goto_check
      line
      integer_list 'racc_goto_pointer', table.goto_pointer
      line
      integer_list 'racc_goto_default', table.goto_default
      line
      i_i_sym_list 'racc_reduce_table', table.reduce_table
      line
      line "racc_reduce_n = #{table.reduce_n}"
      line
      line "racc_shift_n = #{table.shift_n}"
      line
      sym_int_hash 'racc_token_table', table.token_table
      line
      line "racc_nt_base = #{table.nt_base}"
      line
      line "racc_use_result_var = #{table.use_result_var}"
      line
      @f.print(unindent_auto(<<-End))
        Racc_arg = [
          racc_action_table,
          racc_action_check,
          racc_action_default,
          racc_action_pointer,
          racc_goto_table,
          racc_goto_check,
          racc_goto_default,
          racc_goto_pointer,
          racc_nt_base,
          racc_reduce_table,
          racc_token_table,
          racc_shift_n,
          racc_reduce_n,
          racc_use_result_var ]
      End
      line
      string_list 'Racc_token_to_s_table', table.token_to_s_table
      line
      line "Racc_debug_parser = #{table.debug_parser}"
      line
      line '##### State transition tables end #####'
      actions
    end

    def integer_list(name, table)
      if table.size > 2000
        serialize_integer_list_compressed name, table
      else
        serialize_integer_list_std name, table
      end
    end

    def serialize_integer_list_compressed(name, table)
      # TODO: this can be made a LOT more clean with a simple split/map
      sep  = "\n"
      nsep = ",\n"
      buf  = ''
      com  = ''
      ncom = ','
      co   = com
      @f.print 'clist = ['
      table.each do |i|
        buf << co << i.to_s; co = ncom
        if buf.size > 66
          @f.print sep; sep = nsep
          @f.print "'", buf, "'"
          buf = ''
          co = com
        end
      end
      unless buf.empty?
        @f.print sep
        @f.print "'", buf, "'"
      end
      line ' ]'

      @f.print(<<-End)
        #{name} = arr = ::Array.new(#{table.size}, nil)
        idx = 0
        clist.each do |str|
          str.split(',', -1).each do |i|
            arr[idx] = i.to_i unless i.empty?
            idx += 1
          end
        end
      End
    end

    def serialize_integer_list_std(name, table)
      sep = ''
      line "#{name} = ["
      table.each_slice(10) do |ns|
        @f.print sep; sep = ",\n"
        @f.print ns.map {|n| sprintf('%6s', n ? n.to_s : 'nil') }.join(',')
      end
      line ' ]'
    end

    def i_i_sym_list(name, table)
      sep = ''
      line "#{name} = ["
      table.each_slice(3) do |len, target, mid|
        @f.print sep; sep = ",\n"
        @f.printf '  %d, %d, %s', len, target, mid.inspect
      end
      line " ]"
    end

    def sym_int_hash(name, h)
      sep = "\n"
      @f.print "#{name} = {"
      h.to_a.sort_by {|sym, i| i }.each do |sym, i|
        @f.print sep; sep = ",\n"
        @f.printf "  %s => %d", sym.serialize, i
      end
      line " }"
    end

    def string_list(name, list)
      sep = "  "
      line "#{name} = ["
      list.each do |s|
        @f.print sep; sep = ",\n  "
        @f.print s.dump
      end
      line ' ]'
    end

    def actions
      @grammar.each do |rule|
        unless rule.action.source?
          raise "racc: fatal: cannot generate parser file when any action is a Proc"
        end
      end

      if @params.result_var?
        decl = ', result'
        retval = "\n    result"
        default_body = ''
      else
        decl = ''
        retval = ''
        default_body = 'val[0]'
      end
      @grammar.each do |rule|
        line
        if rule.action.empty? and @params.omit_action_call?
          line "# reduce #{rule.ident} omitted"
        else
          src0 = rule.action.source || SourceText.new(default_body, __FILE__, 0)
          if @params.convert_line?
            src = remove_blank_lines(src0)
            delim = make_delimiter(src.text)
            @f.printf unindent_auto(<<-End),
              module_eval(<<'%s', '%s', %d)
                def _reduce_%d(val, _values%s)
                  %s%s
                end
              %s
            End
                      delim, src.filename, src.lineno - 1,
                        rule.ident, decl,
                        src.text, retval,
                      delim
          else
            src = remove_blank_lines(src0)
            @f.printf unindent_auto(<<-End),
              def _reduce_%d(val, _values%s)
              %s%s
              end
            End
                      rule.ident, decl,
                      src.text, retval
          end
        end
      end
      line
      @f.printf unindent_auto(<<-'End'), decl
        def _reduce_none(val, _values%s)
          val[0]
        end
      End
      line
    end

    def remove_blank_lines(src)
      body = src.text.dup
      line = src.lineno
      while body.slice!(/\A[ \t\f]*(?:\n|\r\n|\r)/)
        line += 1
      end
      SourceText.new(body, src.filename, line)
    end

    def make_delimiter(body)
      delim = '.,.,'
      while body.index(delim)
        delim *= 2
      end
      delim
    end

    def unindent_auto(str)
      lines = str.lines.to_a
      n = minimum_indent(lines)
      lines.map {|line| detab(line).sub(indent_re(n), '').rstrip + "\n" }.join('')
    end

    def minimum_indent(lines)
      lines.map {|line| n_indent(line) }.min
    end

    def n_indent(line)
      line.slice(/\A\s+/).size
    end

    RE_CACHE = {}

    def indent_re(n)
      RE_CACHE[n] ||= /\A {#{n}}/
    end

    def detab(str, ts = 8)
      add = 0
      len = nil
      str.gsub(/\t/) {
        len = ts - ($`.size + add) % ts
        add += len - 1
        ' ' * len
      }
    end

  end

end
PKDH[ӗ��share/ruby/racc/debugflags.rbnu�[���#
# $Id: 74ff4369ce53c7f45cfc2644ce907785104ebf6e $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#

module Racc

  class DebugFlags
    def DebugFlags.parse_option_string(s)
      parse = rule = token = state = la = prec = conf = false
      s.split(//).each do |ch|
        case ch
        when 'p' then parse = true
        when 'r' then rule = true
        when 't' then token = true
        when 's' then state = true
        when 'l' then la = true
        when 'c' then prec = true
        when 'o' then conf = true
        else
          raise "unknown debug flag char: #{ch.inspect}"
        end
      end
      new(parse, rule, token, state, la, prec, conf)
    end

    def initialize(parse = false, rule = false, token = false, state = false,
                   la = false, prec = false, conf = false)
      @parse = parse
      @rule = rule
      @token = token
      @state = state
      @la = la
      @prec = prec
      @any = (parse || rule || token || state || la || prec)
      @status_logging = conf
    end

    attr_reader :parse
    attr_reader :rule
    attr_reader :token
    attr_reader :state
    attr_reader :la
    attr_reader :prec

    def any?
      @any
    end

    attr_reader :status_logging
  end

end
PKDH[ K�PPshare/ruby/racc/info.rbnu�[���#
# $Id: 8ab2cb5341529fe5e35956bb1a1f42ec9b9c6f5a $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

module Racc
  VERSION   = '1.4.16'
  Version = VERSION
  Copyright = 'Copyright (c) 1999-2006 Minero Aoki'
end
PKDH[ydAz�X�Xshare/ruby/racc/grammar.rbnu�[���#
# $Id: 3fcabd58bef02540bf78e8142469681cb9f975c2 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/compat'
require 'racc/iset'
require 'racc/sourcetext'
require 'racc/logfilegenerator'
require 'racc/exception'
require 'forwardable'

module Racc

  class Grammar

    def initialize(debug_flags = DebugFlags.new)
      @symboltable = SymbolTable.new
      @debug_symbol = debug_flags.token
      @rules   = []  # :: [Rule]
      @start   = nil
      @n_expected_srconflicts = nil
      @prec_table = []
      @prec_table_closed = false
      @closed = false
      @states = nil
    end

    attr_reader :start
    attr_reader :symboltable
    attr_accessor :n_expected_srconflicts

    def [](x)
      @rules[x]
    end

    def each_rule(&block)
      @rules.each(&block)
    end

    alias each each_rule

    def each_index(&block)
      @rules.each_index(&block)
    end

    def each_with_index(&block)
      @rules.each_with_index(&block)
    end

    def size
      @rules.size
    end

    def to_s
      "<Racc::Grammar>"
    end

    extend Forwardable

    def_delegator "@symboltable", :each, :each_symbol
    def_delegator "@symboltable", :each_terminal
    def_delegator "@symboltable", :each_nonterminal

    def intern(value, dummy = false)
      @symboltable.intern(value, dummy)
    end

    def symbols
      @symboltable.symbols
    end

    def nonterminal_base
      @symboltable.nt_base
    end

    def useless_nonterminal_exist?
      n_useless_nonterminals() != 0
    end

    def n_useless_nonterminals
      @n_useless_nonterminals ||=
          begin
            n = 0
            @symboltable.each_nonterminal do |sym|
              n += 1 if sym.useless?
            end
            n
          end
    end

    def useless_rule_exist?
      n_useless_rules() != 0
    end

    def n_useless_rules
      @n_useless_rules ||=
          begin
            n = 0
            each do |r|
              n += 1 if r.useless?
            end
            n
          end
    end

    def nfa
      (@states ||= States.new(self)).nfa
    end

    def dfa
      (@states ||= States.new(self)).dfa
    end

    alias states dfa

    def state_transition_table
      states().state_transition_table
    end

    def parser_class
      states = states()   # cache
      if $DEBUG
        srcfilename = caller(1).first.slice(/\A(.*?):/, 1)
        begin
          write_log srcfilename + ".output"
        rescue SystemCallError
        end
        report = lambda {|s| $stderr.puts "racc: #{srcfilename}: #{s}" }
        if states.should_report_srconflict?
          report["#{states.n_srconflicts} shift/reduce conflicts"]
        end
        if states.rrconflict_exist?
          report["#{states.n_rrconflicts} reduce/reduce conflicts"]
        end
        g = states.grammar
        if g.useless_nonterminal_exist?
          report["#{g.n_useless_nonterminals} useless nonterminals"]
        end
        if g.useless_rule_exist?
          report["#{g.n_useless_rules} useless rules"]
        end
      end
      states.state_transition_table.parser_class
    end

    def write_log(path)
      File.open(path, 'w') {|f|
        LogFileGenerator.new(states()).output f
      }
    end

    #
    # Grammar Definition Interface
    #

    def add(rule)
      raise ArgumentError, "rule added after the Grammar closed" if @closed
      @rules.push rule
    end

    def added?(sym)
      @rules.detect {|r| r.target == sym }
    end

    def start_symbol=(s)
      raise CompileError, "start symbol set twice'" if @start
      @start = s
    end

    def declare_precedence(assoc, syms)
      raise CompileError, "precedence table defined twice" if @prec_table_closed
      @prec_table.push [assoc, syms]
    end

    def end_precedence_declaration(reverse)
      @prec_table_closed = true
      return if @prec_table.empty?
      table = reverse ? @prec_table.reverse : @prec_table
      table.each_with_index do |(assoc, syms), idx|
        syms.each do |sym|
          sym.assoc = assoc
          sym.precedence = idx
        end
      end
    end

    #
    # Dynamic Generation Interface
    #

    def Grammar.define(&block)
      env = DefinitionEnv.new
      env.instance_eval(&block)
      env.grammar
    end

    class DefinitionEnv
      def initialize
        @grammar = Grammar.new
        @seqs = Hash.new(0)
        @delayed = []
      end

      def grammar
        flush_delayed
        @grammar.each do |rule|
          if rule.specified_prec
            rule.specified_prec = @grammar.intern(rule.specified_prec)
          end
        end
        @grammar.init
        @grammar
      end

      def precedence_table(&block)
        env = PrecedenceDefinitionEnv.new(@grammar)
        env.instance_eval(&block)
        @grammar.end_precedence_declaration env.reverse
      end

      def method_missing(mid, *args, &block)
        unless mid.to_s[-1,1] == '='
          super   # raises NoMethodError
        end
        target = @grammar.intern(mid.to_s.chop.intern)
        unless args.size == 1
          raise ArgumentError, "too many arguments for #{mid} (#{args.size} for 1)"
        end
        _add target, args.first
      end

      def _add(target, x)
        case x
        when Sym
          @delayed.each do |rule|
            rule.replace x, target if rule.target == x
          end
          @grammar.symboltable.delete x
        else
          x.each_rule do |r|
            r.target = target
            @grammar.add r
          end
        end
        flush_delayed
      end

      def _delayed_add(rule)
        @delayed.push rule
      end

      def _added?(sym)
        @grammar.added?(sym) or @delayed.detect {|r| r.target == sym }
      end

      def flush_delayed
        return if @delayed.empty?
        @delayed.each do |rule|
          @grammar.add rule
        end
        @delayed.clear
      end

      def seq(*list, &block)
        Rule.new(nil, list.map {|x| _intern(x) }, UserAction.proc(block))
      end

      def null(&block)
        seq(&block)
      end

      def action(&block)
        id = "@#{@seqs["action"] += 1}".intern
        _delayed_add Rule.new(@grammar.intern(id), [], UserAction.proc(block))
        id
      end

      alias _ action

      def option(sym, default = nil, &block)
        _defmetasyntax("option", _intern(sym), block) {|target|
          seq() { default } | seq(sym)
        }
      end

      def many(sym, &block)
        _defmetasyntax("many", _intern(sym), block) {|target|
            seq() { [] }\
          | seq(target, sym) {|list, x| list.push x; list }
        }
      end

      def many1(sym, &block)
        _defmetasyntax("many1", _intern(sym), block) {|target|
            seq(sym) {|x| [x] }\
          | seq(target, sym) {|list, x| list.push x; list }
        }
      end

      def separated_by(sep, sym, &block)
        option(separated_by1(sep, sym), [], &block)
      end

      def separated_by1(sep, sym, &block)
        _defmetasyntax("separated_by1", _intern(sym), block) {|target|
            seq(sym) {|x| [x] }\
          | seq(target, sep, sym) {|list, _, x| list.push x; list }
        }
      end

      def _intern(x)
        case x
        when Symbol, String
          @grammar.intern(x)
        when Racc::Sym
          x
        else
          raise TypeError, "wrong type #{x.class} (expected Symbol/String/Racc::Sym)"
        end
      end

      private

      def _defmetasyntax(type, id, action, &block)
        if action
          idbase = "#{type}@#{id}-#{@seqs[type] += 1}"
          target = _wrap(idbase, "#{idbase}-core", action)
          _regist("#{idbase}-core", &block)
        else
          target = _regist("#{type}@#{id}", &block)
        end
        @grammar.intern(target)
      end

      def _regist(target_name)
        target = target_name.intern
        unless _added?(@grammar.intern(target))
          yield(target).each_rule do |rule|
            rule.target = @grammar.intern(target)
            _delayed_add rule
          end
        end
        target
      end

      def _wrap(target_name, sym, block)
        target = target_name.intern
        _delayed_add Rule.new(@grammar.intern(target),
                              [@grammar.intern(sym.intern)],
                              UserAction.proc(block))
        target
      end
    end

    class PrecedenceDefinitionEnv
      def initialize(g)
        @grammar = g
        @prechigh_seen = false
        @preclow_seen = false
        @reverse = false
      end

      attr_reader :reverse

      def higher
        if @prechigh_seen
          raise CompileError, "prechigh used twice"
        end
        @prechigh_seen = true
      end

      def lower
        if @preclow_seen
          raise CompileError, "preclow used twice"
        end
        if @prechigh_seen
          @reverse = true
        end
        @preclow_seen = true
      end

      def left(*syms)
        @grammar.declare_precedence :Left, syms.map {|s| @grammar.intern(s) }
      end

      def right(*syms)
        @grammar.declare_precedence :Right, syms.map {|s| @grammar.intern(s) }
      end

      def nonassoc(*syms)
        @grammar.declare_precedence :Nonassoc, syms.map {|s| @grammar.intern(s)}
      end
    end

    #
    # Computation
    #

    def init
      return if @closed
      @closed = true
      @start ||= @rules.map {|r| r.target }.detect {|sym| not sym.dummy? }
      raise CompileError, 'no rule in input' if @rules.empty?
      add_start_rule
      @rules.freeze
      fix_ident
      compute_hash
      compute_heads
      determine_terminals
      compute_nullable_0
      @symboltable.fix
      compute_locate
      @symboltable.each_nonterminal {|t| compute_expand t }
      compute_nullable
      compute_useless
    end

    private

    def add_start_rule
      r = Rule.new(@symboltable.dummy,
                   [@start, @symboltable.anchor, @symboltable.anchor],
                   UserAction.empty)
      r.ident = 0
      r.hash = 0
      r.precedence = nil
      @rules.unshift r
    end

    # Rule#ident
    # LocationPointer#ident
    def fix_ident
      @rules.each_with_index do |rule, idx|
        rule.ident = idx
      end
    end

    # Rule#hash
    def compute_hash
      hash = 4   # size of dummy rule
      @rules.each do |rule|
        rule.hash = hash
        hash += (rule.size + 1)
      end
    end

    # Sym#heads
    def compute_heads
      @rules.each do |rule|
        rule.target.heads.push rule.ptrs[0]
      end
    end

    # Sym#terminal?
    def determine_terminals
      @symboltable.each do |s|
        s.term = s.heads.empty?
      end
    end

    # Sym#self_null?
    def compute_nullable_0
      @symboltable.each do |s|
        if s.terminal?
          s.snull = false
        else
          s.snull = s.heads.any? {|loc| loc.reduce? }
        end
      end
    end

    # Sym#locate
    def compute_locate
      @rules.each do |rule|
        t = nil
        rule.ptrs.each do |ptr|
          unless ptr.reduce?
            tok = ptr.dereference
            tok.locate.push ptr
            t = tok if tok.terminal?
          end
        end
        rule.precedence = t
      end
    end

    # Sym#expand
    def compute_expand(t)
      puts "expand> #{t.to_s}" if @debug_symbol
      t.expand = _compute_expand(t, ISet.new, [])
      puts "expand< #{t.to_s}: #{t.expand.to_s}" if @debug_symbol
    end

    def _compute_expand(t, set, lock)
      if tmp = t.expand
        set.update tmp
        return set
      end
      tok = nil
      set.update_a t.heads
      t.heads.each do |ptr|
        tok = ptr.dereference
        if tok and tok.nonterminal?
          unless lock[tok.ident]
            lock[tok.ident] = true
            _compute_expand tok, set, lock
          end
        end
      end
      set
    end

    # Sym#nullable?, Rule#nullable?
    def compute_nullable
      @rules.each       {|r| r.null = false }
      @symboltable.each {|t| t.null = false }
      r = @rules.dup
      s = @symboltable.nonterminals
      begin
        rs = r.size
        ss = s.size
        check_rules_nullable r
        check_symbols_nullable s
      end until rs == r.size and ss == s.size
    end

    def check_rules_nullable(rules)
      rules.delete_if do |rule|
        rule.null = true
        rule.symbols.each do |t|
          unless t.nullable?
            rule.null = false
            break
          end
        end
        rule.nullable?
      end
    end

    def check_symbols_nullable(symbols)
      symbols.delete_if do |sym|
        sym.heads.each do |ptr|
          if ptr.rule.nullable?
            sym.null = true
            break
          end
        end
        sym.nullable?
      end
    end

    # Sym#useless?, Rule#useless?
    # FIXME: what means "useless"?
    def compute_useless
      @symboltable.each_terminal {|sym| sym.useless = false }
      @symboltable.each_nonterminal {|sym| sym.useless = true }
      @rules.each {|rule| rule.useless = true }
      r = @rules.dup
      s = @symboltable.nonterminals
      begin
        rs = r.size
        ss = s.size
        check_rules_useless r
        check_symbols_useless s
      end until r.size == rs and s.size == ss
    end

    def check_rules_useless(rules)
      rules.delete_if do |rule|
        rule.useless = false
        rule.symbols.each do |sym|
          if sym.useless?
            rule.useless = true
            break
          end
        end
        not rule.useless?
      end
    end

    def check_symbols_useless(s)
      s.delete_if do |t|
        t.heads.each do |ptr|
          unless ptr.rule.useless?
            t.useless = false
            break
          end
        end
        not t.useless?
      end
    end

  end   # class Grammar


  class Rule

    def initialize(target, syms, act)
      @target = target
      @symbols = syms
      @action = act
      @alternatives = []

      @ident = nil
      @hash = nil
      @ptrs = nil
      @precedence = nil
      @specified_prec = nil
      @null = nil
      @useless = nil
    end

    attr_accessor :target
    attr_reader :symbols
    attr_reader :action

    def |(x)
      @alternatives.push x.rule
      self
    end

    def rule
      self
    end

    def each_rule(&block)
      yield self
      @alternatives.each(&block)
    end

    attr_accessor :ident

    attr_reader :hash
    attr_reader :ptrs

    def hash=(n)
      @hash = n
      ptrs = []
      @symbols.each_with_index do |sym, idx|
        ptrs.push LocationPointer.new(self, idx, sym)
      end
      ptrs.push LocationPointer.new(self, @symbols.size, nil)
      @ptrs = ptrs
    end

    def precedence
      @specified_prec || @precedence
    end

    def precedence=(sym)
      @precedence ||= sym
    end

    def prec(sym, &block)
      @specified_prec = sym
      if block
        unless @action.empty?
          raise CompileError, 'both of rule action block and prec block given'
        end
        @action = UserAction.proc(block)
      end
      self
    end

    attr_accessor :specified_prec

    def nullable?() @null end
    def null=(n)    @null = n end

    def useless?()  @useless end
    def useless=(u) @useless = u end

    def inspect
      "#<Racc::Rule id=#{@ident} (#{@target})>"
    end

    def ==(other)
      other.kind_of?(Rule) and @ident == other.ident
    end

    def [](idx)
      @symbols[idx]
    end

    def size
      @symbols.size
    end

    def empty?
      @symbols.empty?
    end

    def to_s
      "#<rule#{@ident}>"
    end

    def accept?
      if tok = @symbols[-1]
        tok.anchor?
      else
        false
      end
    end

    def each(&block)
      @symbols.each(&block)
    end

    def replace(src, dest)
      @target = dest
      @symbols = @symbols.map {|s| s == src ? dest : s }
    end

  end   # class Rule


  class UserAction

    def UserAction.source_text(src)
      new(src, nil)
    end

    def UserAction.proc(pr = nil, &block)
      if pr and block
        raise ArgumentError, "both of argument and block given"
      end
      new(nil, pr || block)
    end

    def UserAction.empty
      new(nil, nil)
    end

    private_class_method :new

    def initialize(src, proc)
      @source = src
      @proc = proc
    end

    attr_reader :source
    attr_reader :proc

    def source?
      not @proc
    end

    def proc?
      not @source
    end

    def empty?
      not @proc and not @source
    end

    def name
      "{action type=#{@source || @proc || 'nil'}}"
    end

    alias inspect name

  end


  class OrMark
    def initialize(lineno)
      @lineno = lineno
    end

    def name
      '|'
    end

    alias inspect name

    attr_reader :lineno
  end


  class Prec
    def initialize(symbol, lineno)
      @symbol = symbol
      @lineno = lineno
    end

    def name
      "=#{@symbol}"
    end

    alias inspect name

    attr_reader :symbol
    attr_reader :lineno
  end


  #
  # A set of rule and position in it's RHS.
  # Note that the number of pointers is more than rule's RHS array,
  # because pointer points right edge of the final symbol when reducing.
  #
  class LocationPointer

    def initialize(rule, i, sym)
      @rule   = rule
      @index  = i
      @symbol = sym
      @ident  = @rule.hash + i
      @reduce = sym.nil?
    end

    attr_reader :rule
    attr_reader :index
    attr_reader :symbol

    alias dereference symbol

    attr_reader :ident
    alias hash ident
    attr_reader :reduce
    alias reduce? reduce

    def to_s
      sprintf('(%d,%d %s)',
              @rule.ident, @index, (reduce?() ? '#' : @symbol.to_s))
    end

    alias inspect to_s

    def eql?(ot)
      @hash == ot.hash
    end

    alias == eql?

    def head?
      @index == 0
    end

    def next
      @rule.ptrs[@index + 1] or ptr_bug!
    end

    alias increment next

    def before(len)
      @rule.ptrs[@index - len] or ptr_bug!
    end

    private

    def ptr_bug!
      raise "racc: fatal: pointer not exist: self: #{to_s}"
    end

  end   # class LocationPointer


  class SymbolTable

    include Enumerable

    def initialize
      @symbols = []   # :: [Racc::Sym]
      @cache   = {}   # :: {(String|Symbol) => Racc::Sym}
      @dummy  = intern(:$start, true)
      @anchor = intern(false, true)     # Symbol ID = 0
      @error  = intern(:error, false)   # Symbol ID = 1
    end

    attr_reader :dummy
    attr_reader :anchor
    attr_reader :error

    def [](id)
      @symbols[id]
    end

    def intern(val, dummy = false)
      @cache[val] ||=
          begin
            sym = Sym.new(val, dummy)
            @symbols.push sym
            sym
          end
    end

    attr_reader :symbols
    alias to_a symbols

    def delete(sym)
      @symbols.delete sym
      @cache.delete sym.value
    end

    attr_reader :nt_base

    def nt_max
      @symbols.size
    end

    def each(&block)
      @symbols.each(&block)
    end

    def terminals(&block)
      @symbols[0, @nt_base]
    end

    def each_terminal(&block)
      @terms.each(&block)
    end

    def nonterminals
      @symbols[@nt_base, @symbols.size - @nt_base]
    end

    def each_nonterminal(&block)
      @nterms.each(&block)
    end

    def fix
      terms, nterms = @symbols.partition {|s| s.terminal? }
      @symbols = terms + nterms
      @terms = terms
      @nterms = nterms
      @nt_base = terms.size
      fix_ident
      check_terminals
    end

    private

    def fix_ident
      @symbols.each_with_index do |t, i|
        t.ident = i
      end
    end

    def check_terminals
      return unless @symbols.any? {|s| s.should_terminal? }
      @anchor.should_terminal
      @error.should_terminal
      each_terminal do |t|
        t.should_terminal if t.string_symbol?
      end
      each do |s|
        s.should_terminal if s.assoc
      end
      terminals().reject {|t| t.should_terminal? }.each do |t|
        raise CompileError, "terminal #{t} not declared as terminal"
      end
      nonterminals().select {|n| n.should_terminal? }.each do |n|
        raise CompileError, "symbol #{n} declared as terminal but is not terminal"
      end
    end

  end   # class SymbolTable


  # Stands terminal and nonterminal symbols.
  class Sym

    def initialize(value, dummyp)
      @ident = nil
      @value = value
      @dummyp = dummyp

      @term  = nil
      @nterm = nil
      @should_terminal = false
      @precedence = nil
      case value
      when Symbol
        @to_s = value.to_s
        @serialized = value.inspect
        @string = false
      when String
        @to_s = value.inspect
        @serialized = value.dump
        @string = true
      when false
        @to_s = '$end'
        @serialized = 'false'
        @string = false
      when ErrorSymbolValue
        @to_s = 'error'
        @serialized = 'Object.new'
        @string = false
      else
        raise ArgumentError, "unknown symbol value: #{value.class}"
      end

      @heads    = []
      @locate   = []
      @snull    = nil
      @null     = nil
      @expand   = nil
      @useless  = nil
    end

    class << self
      def once_writer(nm)
        nm = nm.id2name
        module_eval(<<-EOS)
          def #{nm}=(v)
            raise 'racc: fatal: @#{nm} != nil' unless @#{nm}.nil?
            @#{nm} = v
          end
        EOS
      end
    end

    once_writer :ident
    attr_reader :ident

    alias hash ident

    attr_reader :value

    def dummy?
      @dummyp
    end

    def terminal?
      @term
    end

    def nonterminal?
      @nterm
    end

    def term=(t)
      raise 'racc: fatal: term= called twice' unless @term.nil?
      @term = t
      @nterm = !t
    end

    def should_terminal
      @should_terminal = true
    end

    def should_terminal?
      @should_terminal
    end

    def string_symbol?
      @string
    end

    def serialize
      @serialized
    end

    attr_writer :serialized

    attr_accessor :precedence
    attr_accessor :assoc

    def to_s
      @to_s.dup
    end

    alias inspect to_s

    def |(x)
      rule() | x.rule
    end

    def rule
      Rule.new(nil, [self], UserAction.empty)
    end

    #
    # cache
    #

    attr_reader :heads
    attr_reader :locate

    def self_null?
      @snull
    end

    once_writer :snull

    def nullable?
      @null
    end

    def null=(n)
      @null = n
    end

    attr_reader :expand
    once_writer :expand

    def useless?
      @useless
    end

    def useless=(f)
      @useless = f
    end

  end   # class Sym

end   # module Racc
PKDH[nxqiishare/ruby/racc/iset.rbnu�[���#
# $Id: 31aa4331c08dfd4609c06eb5f94b7ef38dc708e1 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#

module Racc

  # An "indexed" set.  All items must respond to :ident.
  class ISet

    def initialize(a = [])
      @set = a
    end

    attr_reader :set

    def add(i)
      @set[i.ident] = i
    end

    def [](key)
      @set[key.ident]
    end

    def []=(key, val)
      @set[key.ident] = val
    end

    alias include? []
    alias key? []

    def update(other)
      s = @set
      o = other.set
      o.each_index do |idx|
        if t = o[idx]
          s[idx] = t
        end
      end
    end

    def update_a(a)
      s = @set
      a.each {|i| s[i.ident] = i }
    end

    def delete(key)
      i = @set[key.ident]
      @set[key.ident] = nil
      i
    end

    def each(&block)
      @set.compact.each(&block)
    end

    def to_a
      @set.compact
    end

    def to_s
      "[#{@set.compact.join(' ')}]"
    end

    alias inspect to_s

    def size
      @set.nitems
    end

    def empty?
      @set.nitems == 0
    end

    def clear
      @set.clear
    end

    def dup
      ISet.new(@set.dup)
    end

  end   # class ISet

end   # module Racc
PKDH[�t=�  'share/ruby/racc/statetransitiontable.rbnu�[���#
# $Id: 4c5f4311663b6d03050953d64d6a0e7905ff2216 $
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#

require 'racc/parser'

unless Object.method_defined?(:funcall)
  class Object
    alias funcall __send__
  end
end

module Racc

  StateTransitionTable = Struct.new(:action_table,
                                    :action_check,
                                    :action_default,
                                    :action_pointer,
                                    :goto_table,
                                    :goto_check,
                                    :goto_default,
                                    :goto_pointer,
                                    :token_table,
                                    :reduce_table,
                                    :reduce_n,
                                    :shift_n,
                                    :nt_base,
                                    :token_to_s_table,
                                    :use_result_var,
                                    :debug_parser)
  class StateTransitionTable   # reopen
    def StateTransitionTable.generate(states)
      StateTransitionTableGenerator.new(states).generate
    end

    def initialize(states)
      super()
      @states = states
      @grammar = states.grammar
      self.use_result_var = true
      self.debug_parser = true
    end

    attr_reader :states
    attr_reader :grammar

    def parser_class
      ParserClassGenerator.new(@states).generate
    end

    def token_value_table
      h = {}
      token_table().each do |sym, i|
        h[sym.value] = i
      end
      h
    end
  end


  class StateTransitionTableGenerator

    def initialize(states)
      @states = states
      @grammar = states.grammar
    end

    def generate
      t = StateTransitionTable.new(@states)
      gen_action_tables t, @states
      gen_goto_tables t, @grammar
      t.token_table = token_table(@grammar)
      t.reduce_table = reduce_table(@grammar)
      t.reduce_n = @states.reduce_n
      t.shift_n = @states.shift_n
      t.nt_base = @grammar.nonterminal_base
      t.token_to_s_table = @grammar.symbols.map {|sym| sym.to_s }
      t
    end

    def reduce_table(grammar)
      t = [0, 0, :racc_error]
      grammar.each_with_index do |rule, idx|
        next if idx == 0
        t.push rule.size
        t.push rule.target.ident
        t.push(if rule.action.empty?   # and @params.omit_action_call?
               then :_reduce_none
               else "_reduce_#{idx}".intern
               end)
      end
      t
    end

    def token_table(grammar)
      h = {}
      grammar.symboltable.terminals.each do |t|
        h[t] = t.ident
      end
      h
    end

    def gen_action_tables(t, states)
      t.action_table = yytable  = []
      t.action_check = yycheck  = []
      t.action_default = yydefact = []
      t.action_pointer = yypact   = []
      e1 = []
      e2 = []
      states.each do |state|
        yydefact.push act2actid(state.defact)
        if state.action.empty?
          yypact.push nil
          next
        end
        vector = []
        state.action.each do |tok, act|
          vector[tok.ident] = act2actid(act)
        end
        addent e1, vector, state.ident, yypact
      end
      set_table e1, e2, yytable, yycheck, yypact
    end

    def gen_goto_tables(t, grammar)
      t.goto_table   = yytable2  = []
      t.goto_check   = yycheck2  = []
      t.goto_pointer = yypgoto   = []
      t.goto_default = yydefgoto = []
      e1 = []
      e2 = []
      grammar.each_nonterminal do |tok|
        tmp = []

        # decide default
        freq = Array.new(@states.size, 0)
        @states.each do |state|
          st = state.goto_table[tok]
          if st
            st = st.ident
            freq[st] += 1
          end
          tmp[state.ident] = st
        end
        max = freq.max
        if max > 1
          default = freq.index(max)
          tmp.map! {|i| default == i ? nil : i }
        else
          default = nil
        end
        yydefgoto.push default

        # delete default value
        tmp.pop until tmp.last or tmp.empty?
        if tmp.compact.empty?
          # only default
          yypgoto.push nil
          next
        end

        addent e1, tmp, (tok.ident - grammar.nonterminal_base), yypgoto
      end
      set_table e1, e2, yytable2, yycheck2, yypgoto
    end

    def addent(all, arr, chkval, ptr)
      max = arr.size
      min = nil
      arr.each_with_index do |item, idx|
        if item
          min ||= idx
        end
      end
      ptr.push(-7777)    # mark
      arr = arr[min...max]
      all.push [arr, chkval, mkmapexp(arr), min, ptr.size - 1]
    end

    n = 2 ** 16
    begin
      Regexp.compile("a{#{n}}")
      RE_DUP_MAX = n
    rescue RegexpError
      n /= 2
      retry
    end

    def mkmapexp(arr)
      i = ii = 0
      as = arr.size
      map = ''
      maxdup = RE_DUP_MAX
      curr = nil
      while i < as
        ii = i + 1
        if arr[i]
          ii += 1 while ii < as and arr[ii]
          curr = '-'
        else
          ii += 1 while ii < as and not arr[ii]
          curr = '.'
        end

        offset = ii - i
        if offset == 1
          map << curr
        else
          while offset > maxdup
            map << "#{curr}{#{maxdup}}"
            offset -= maxdup
          end
          map << "#{curr}{#{offset}}" if offset > 1
        end
        i = ii
      end
      Regexp.compile(map, 'n')
    end

    def set_table(entries, dummy, tbl, chk, ptr)
      upper = 0
      map = '-' * 10240

      # sort long to short
      entries.sort! {|a,b| b[0].size <=> a[0].size }

      entries.each do |arr, chkval, expr, min, ptri|
        if upper + arr.size > map.size
          map << '-' * (arr.size + 1024)
        end
        idx = map.index(expr)
        ptr[ptri] = idx - min
        arr.each_with_index do |item, i|
          if item
            i += idx
            tbl[i] = item
            chk[i] = chkval
            map[i] = ?o
          end
        end
        upper = idx + arr.size
      end
    end

    def act2actid(act)
      case act
      when Shift  then act.goto_id
      when Reduce then -act.ruleid
      when Accept then @states.shift_n
      when Error  then @states.reduce_n * -1
      else
        raise "racc: fatal: wrong act type #{act.class} in action table"
      end
    end

  end


  class ParserClassGenerator

    def initialize(states)
      @states = states
      @grammar = states.grammar
    end

    def generate
      table = @states.state_transition_table
      c = Class.new(::Racc::Parser)
      c.const_set :Racc_arg, [table.action_table,
                              table.action_check,
                              table.action_default,
                              table.action_pointer,
                              table.goto_table,
                              table.goto_check,
                              table.goto_default,
                              table.goto_pointer,
                              table.nt_base,
                              table.reduce_table,
                              table.token_value_table,
                              table.shift_n,
                              table.reduce_n,
                              false]
      c.const_set :Racc_token_to_s_table, table.token_to_s_table
      c.const_set :Racc_debug_parser, true
      define_actions c
      c
    end

    private

    def define_actions(c)
      c.module_eval "def _reduce_none(vals, vstack) vals[0] end"
      @grammar.each do |rule|
        if rule.action.empty?
          c.funcall(:alias_method, "_reduce_#{rule.ident}", :_reduce_none)
        else
          c.funcall(:define_method, "_racc_action_#{rule.ident}", &rule.action.proc)
          c.module_eval(<<-End, __FILE__, __LINE__ + 1)
            def _reduce_#{rule.ident}(vals, vstack)
              _racc_action_#{rule.ident}(*vals)
            end
          End
        end
      end
    end

  end

end   # module Racc
PKDH[ז�iishare/ruby/racc/pre-setupnu�[���def generate_parser_text_rb(target)
  return if File.exist?(srcfile(target))
  $stderr.puts "generating #{target}..."
  File.open(target, 'w') {|f|
    f.puts "module Racc"
    f.puts "  PARSER_TEXT = <<'__end_of_file__'"
    f.puts File.read(srcfile('parser.rb'))
    f.puts "__end_of_file__"
    f.puts "end"
  }
end

generate_parser_text_rb 'parser-text.rb'
PKDH[�y���share/ruby/timeout.rbnu�[���# frozen_string_literal: false
# Timeout long-running blocks
#
# == Synopsis
#
#   require 'timeout'
#   status = Timeout::timeout(5) {
#     # Something that should be interrupted if it takes more than 5 seconds...
#   }
#
# == Description
#
# Timeout provides a way to auto-terminate a potentially long-running
# operation if it hasn't finished in a fixed amount of time.
#
# Previous versions didn't use a module for namespacing, however
# #timeout is provided for backwards compatibility.  You
# should prefer Timeout.timeout instead.
#
# == Copyright
#
# Copyright:: (C) 2000  Network Applied Communication Laboratory, Inc.
# Copyright:: (C) 2000  Information-technology Promotion Agency, Japan

module Timeout
  # Raised by Timeout.timeout when the block times out.
  class Error < RuntimeError
    attr_reader :thread

    def self.catch(*args)
      exc = new(*args)
      exc.instance_variable_set(:@thread, Thread.current)
      ::Kernel.catch(exc) {yield exc}
    end

    def exception(*)
      # TODO: use Fiber.current to see if self can be thrown
      if self.thread == Thread.current
        bt = caller
        begin
          throw(self, bt)
        rescue UncaughtThrowError
        end
      end
      self
    end
  end

  # :stopdoc:
  THIS_FILE = /\A#{Regexp.quote(__FILE__)}:/o
  CALLER_OFFSET = ((c = caller[0]) && THIS_FILE =~ c) ? 1 : 0
  private_constant :THIS_FILE, :CALLER_OFFSET
  # :startdoc:

  # Perform an operation in a block, raising an error if it takes longer than
  # +sec+ seconds to complete.
  #
  # +sec+:: Number of seconds to wait for the block to terminate. Any number
  #         may be used, including Floats to specify fractional seconds. A
  #         value of 0 or +nil+ will execute the block without any timeout.
  # +klass+:: Exception Class to raise if the block fails to terminate
  #           in +sec+ seconds.  Omitting will use the default, Timeout::Error
  # +message+:: Error message to raise with Exception Class.
  #             Omitting will use the default, "execution expired"
  #
  # Returns the result of the block *if* the block completed before
  # +sec+ seconds, otherwise throws an exception, based on the value of +klass+.
  #
  # The exception thrown to terminate the given block cannot be rescued inside
  # the block unless +klass+ is given explicitly. However, the block can use
  # ensure to prevent the handling of the exception.  For that reason, this
  # method cannot be relied on to enforce timeouts for untrusted blocks.
  #
  # Note that this is both a method of module Timeout, so you can <tt>include
  # Timeout</tt> into your classes so they have a #timeout method, as well as
  # a module method, so you can call it directly as Timeout.timeout().
  def timeout(sec, klass = nil, message = nil)   #:yield: +sec+
    return yield(sec) if sec == nil or sec.zero?
    message ||= "execution expired".freeze
    from = "from #{caller_locations(1, 1)[0]}" if $DEBUG
    e = Error
    bl = proc do |exception|
      begin
        x = Thread.current
        y = Thread.start {
          Thread.current.name = from
          begin
            sleep sec
          rescue => e
            x.raise e
          else
            x.raise exception, message
          end
        }
        return yield(sec)
      ensure
        if y
          y.kill
          y.join # make sure y is dead.
        end
      end
    end
    if klass
      begin
        bl.call(klass)
      rescue klass => e
        bt = e.backtrace
      end
    else
      bt = Error.catch(message, &bl)
    end
    level = -caller(CALLER_OFFSET).size-2
    while THIS_FILE =~ bt[level]
      bt.delete_at(level)
    end
    raise(e, message, bt)
  end

  module_function :timeout
end

def timeout(*args, &block)
  warn "Object##{__method__} is deprecated, use Timeout.timeout instead.", uplevel: 1
  Timeout.timeout(*args, &block)
end

# Another name for Timeout::Error, defined for backwards compatibility with
# earlier versions of timeout.rb.
TimeoutError = Timeout::Error
class Object
  deprecate_constant :TimeoutError
end
PKDH[�E&))share/ruby/yaml/dbm.rbnu�[���# frozen_string_literal: false
require 'yaml'
require 'dbm'

module YAML

# YAML + DBM = YDBM
#
# YAML::DBM provides the same interface as ::DBM.
#
# However, while DBM only allows strings for both keys and values,
# this library allows one to use most Ruby objects for values
# by first converting them to YAML. Keys must be strings.
#
# Conversion to and from YAML is performed automatically.
#
# See the documentation for ::DBM and ::YAML for more information.
class DBM < ::DBM
    VERSION = "0.1" # :nodoc:

    # :call-seq:
    #   ydbm[key] -> value
    #
    # Return value associated with +key+ from database.
    #
    # Returns +nil+ if there is no such +key+.
    #
    # See #fetch for more information.
    def []( key )
        fetch( key )
    end

    # :call-seq:
    #   ydbm[key] = value
    #
    # Set +key+ to +value+ in database.
    #
    # +value+ will be converted to YAML before storage.
    #
    # See #store for more information.
    def []=( key, val )
        store( key, val )
    end

    # :call-seq:
    #   ydbm.fetch( key, ifnone = nil )
    #   ydbm.fetch( key ) { |key| ... }
    #
    # Return value associated with +key+.
    #
    # If there is no value for +key+ and no block is given, returns +ifnone+.
    #
    # Otherwise, calls block passing in the given +key+.
    #
    # See ::DBM#fetch for more information.
    def fetch( keystr, ifnone = nil )
        begin
            val = super( keystr )
            return YAML.load( val ) if String === val
        rescue IndexError
        end
        if block_given?
            yield keystr
        else
            ifnone
        end
    end

    # Deprecated, used YAML::DBM#key instead.
    # ----
    # Note:
    # YAML::DBM#index makes warning from internal of ::DBM#index.
    # It says 'DBM#index is deprecated; use DBM#key', but DBM#key
    # behaves not same as DBM#index.
    #
    def index( keystr )
        super( keystr.to_yaml )
    end

    # :call-seq:
    #   ydbm.key(value) -> string
    #
    # Returns the key for the specified value.
    def key( keystr )
        invert[keystr]
    end

    # :call-seq:
    #   ydbm.values_at(*keys)
    #
    # Returns an array containing the values associated with the given keys.
    def values_at( *keys )
        keys.collect { |k| fetch( k ) }
    end

    # :call-seq:
    #   ydbm.delete(key)
    #
    # Deletes value from database associated with +key+.
    #
    # Returns value or +nil+.
    def delete( key )
        v = super( key )
        if String === v
            v = YAML.load( v )
        end
        v
    end

    # :call-seq:
    #   ydbm.delete_if { |key, value| ... }
    #
    # Calls the given block once for each +key+, +value+ pair in the database.
    # Deletes all entries for which the block returns true.
    #
    # Returns +self+.
    def delete_if # :yields: [key, value]
        del_keys = keys.dup
        del_keys.delete_if { |k| yield( k, fetch( k ) ) == false }
        del_keys.each { |k| delete( k ) }
        self
    end

    # :call-seq:
    #   ydbm.reject { |key, value| ... }
    #
    # Converts the contents of the database to an in-memory Hash, then calls
    # Hash#reject with the specified code block, returning a new Hash.
    def reject
        hsh = self.to_hash
        hsh.reject { |k,v| yield k, v }
    end

    # :call-seq:
    #   ydbm.each_pair { |key, value| ... }
    #
    # Calls the given block once for each +key+, +value+ pair in the database.
    #
    # Returns +self+.
    def each_pair # :yields: [key, value]
        keys.each { |k| yield k, fetch( k ) }
        self
    end

    # :call-seq:
    #   ydbm.each_value { |value| ... }
    #
    # Calls the given block for each value in database.
    #
    # Returns +self+.
    def each_value # :yields: value
        super { |v| yield YAML.load( v ) }
        self
    end

    # :call-seq:
    #   ydbm.values
    #
    # Returns an array of values from the database.
    def values
        super.collect { |v| YAML.load( v ) }
    end

    # :call-seq:
    #   ydbm.has_value?(value)
    #
    # Returns true if specified +value+ is found in the database.
    def has_value?( val )
        each_value { |v| return true if v == val }
        return false
    end

    # :call-seq:
    #   ydbm.invert -> hash
    #
    # Returns a Hash (not a DBM database) created by using each value in the
    # database as a key, with the corresponding key as its value.
    #
    # Note that all values in the hash will be Strings, but the keys will be
    # actual objects.
    def invert
        h = {}
        keys.each { |k| h[ self.fetch( k ) ] = k }
        h
    end

    # :call-seq:
    #   ydbm.replace(hash) -> ydbm
    #
    # Replaces the contents of the database with the contents of the specified
    # object. Takes any object which implements the each_pair method, including
    # Hash and DBM objects.
    def replace( hsh )
        clear
        update( hsh )
    end

    # :call-seq:
    #   ydbm.shift -> [key, value]
    #
    # Removes a [key, value] pair from the database, and returns it.
    # If the database is empty, returns +nil+.
    #
    # The order in which values are removed/returned is not guaranteed.
    def shift
        a = super
        a[1] = YAML.load( a[1] ) if a
        a
    end

    # :call-seq:
    #   ydbm.select { |key, value| ... }
    #   ydbm.select(*keys)
    #
    # If a block is provided, returns a new array containing [key, value] pairs
    # for which the block returns true.
    #
    # Otherwise, same as #values_at
    def select( *keys )
        if block_given?
            self.keys.collect { |k| v = self[k]; [k, v] if yield k, v }.compact
        else
            values_at( *keys )
        end
    end

    # :call-seq:
    #   ydbm.store(key, value) -> value
    #
    # Stores +value+ in database with +key+ as the index. +value+ is converted
    # to YAML before being stored.
    #
    # Returns +value+
    def store( key, val )
        super( key, val.to_yaml )
        val
    end

    # :call-seq:
    #   ydbm.update(hash) -> ydbm
    #
    # Updates the database with multiple values from the specified object.
    # Takes any object which implements the each_pair method, including
    # Hash and DBM objects.
    #
    # Returns +self+.
    def update( hsh )
        hsh.each_pair do |k,v|
            self.store( k, v )
        end
        self
    end

    # :call-seq:
    #   ydbm.to_a -> array
    #
    # Converts the contents of the database to an array of [key, value] arrays,
    # and returns it.
    def to_a
        a = []
        keys.each { |k| a.push [ k, self.fetch( k ) ] }
        a
    end


    # :call-seq:
    #   ydbm.to_hash -> hash
    #
    # Converts the contents of the database to an in-memory Hash object, and
    # returns it.
    def to_hash
        h = {}
        keys.each { |k| h[ k ] = self.fetch( k ) }
        h
    end

    alias :each :each_pair
end

end
PKDH[�H2�LLshare/ruby/yaml/store.rbnu�[���# frozen_string_literal: false
#
# YAML::Store
#
require 'yaml'
require 'pstore'

# YAML::Store provides the same functionality as PStore, except it uses YAML
# to dump objects instead of Marshal.
#
# == Example
#
#   require 'yaml/store'
#
#   Person = Struct.new :first_name, :last_name
#
#   people = [Person.new("Bob", "Smith"), Person.new("Mary", "Johnson")]
#
#   store = YAML::Store.new "test.store"
#
#   store.transaction do
#     store["people"] = people
#     store["greeting"] = { "hello" => "world" }
#   end
#
# After running the above code, the contents of "test.store" will be:
#
#   ---
#   people:
#   - !ruby/struct:Person
#     first_name: Bob
#     last_name: Smith
#   - !ruby/struct:Person
#     first_name: Mary
#     last_name: Johnson
#   greeting:
#     hello: world

class YAML::Store < PStore

  # :call-seq:
  #   initialize( file_name, yaml_opts = {} )
  #   initialize( file_name, thread_safe = false, yaml_opts = {} )
  #
  # Creates a new YAML::Store object, which will store data in +file_name+.
  # If the file does not already exist, it will be created.
  #
  # YAML::Store objects are always reentrant. But if _thread_safe_ is set to true,
  # then it will become thread-safe at the cost of a minor performance hit.
  #
  # Options passed in through +yaml_opts+ will be used when converting the
  # store to YAML via Hash#to_yaml().
  def initialize( *o )
    @opt = {}
    if o.last.is_a? Hash
      @opt.update(o.pop)
    end
    super(*o)
  end

  # :stopdoc:

  def dump(table)
    table.to_yaml(@opt)
  end

  def load(content)
    table = YAML.load(content)
    if table == false
      {}
    else
      table
    end
  end

  def marshal_dump_supports_canonical_option?
    false
  end

  def empty_marshal_data
    {}.to_yaml(@opt)
  end
  def empty_marshal_checksum
    CHECKSUM_ALGO.digest(empty_marshal_data)
  end
end
PKDH[��Wqqshare/ruby/readline.rbnu�[���begin
  require 'readline.so'
rescue LoadError
  require 'reline' unless defined? Reline
  Readline = Reline
end
PKDH[�(��eeshare/ruby/fiddle/struct.rbnu�[���# frozen_string_literal: true
require 'fiddle'
require 'fiddle/value'
require 'fiddle/pack'

module Fiddle
  # C struct shell
  class CStruct
    # accessor to Fiddle::CStructEntity
    def CStruct.entity_class
      CStructEntity
    end
  end

  # C union shell
  class CUnion
    # accessor to Fiddle::CUnionEntity
    def CUnion.entity_class
      CUnionEntity
    end
  end

  # Used to construct C classes (CUnion, CStruct, etc)
  #
  # Fiddle::Importer#struct and Fiddle::Importer#union wrap this functionality in an
  # easy-to-use manner.
  module CStructBuilder
    # Construct a new class given a C:
    # * class +klass+ (CUnion, CStruct, or other that provide an
    #   #entity_class)
    # * +types+ (Fiddle::TYPE_INT, Fiddle::TYPE_SIZE_T, etc., see the C types
    #   constants)
    # * corresponding +members+
    #
    # Fiddle::Importer#struct and Fiddle::Importer#union wrap this functionality in an
    # easy-to-use manner.
    #
    # Example:
    #
    #   require 'fiddle/struct'
    #   require 'fiddle/cparser'
    #
    #   include Fiddle::CParser
    #
    #   types, members = parse_struct_signature(['int i','char c'])
    #
    #   MyStruct = Fiddle::CStructBuilder.create(Fiddle::CUnion, types, members)
    #
    #   obj = MyStruct.allocate
    #
    def create(klass, types, members)
      new_class = Class.new(klass){
        define_method(:initialize){|addr|
          @entity = klass.entity_class.new(addr, types)
          @entity.assign_names(members)
        }
        define_method(:to_ptr){ @entity }
        define_method(:to_i){ @entity.to_i }
        members.each{|name|
          define_method(name){ @entity[name] }
          define_method(name + "="){|val| @entity[name] = val }
        }
      }
      size = klass.entity_class.size(types)
      new_class.module_eval(<<-EOS, __FILE__, __LINE__+1)
        def new_class.size()
          #{size}
        end
        def new_class.malloc()
          addr = Fiddle.malloc(#{size})
          new(addr)
        end
      EOS
      return new_class
    end
    module_function :create
  end

  # A C struct wrapper
  class CStructEntity < Fiddle::Pointer
    include PackInfo
    include ValueUtil

    # Allocates a C struct with the +types+ provided.
    #
    # When the instance is garbage collected, the C function +func+ is called.
    def CStructEntity.malloc(types, func = nil)
      addr = Fiddle.malloc(CStructEntity.size(types))
      CStructEntity.new(addr, types, func)
    end

    # Returns the offset for the packed sizes for the given +types+.
    #
    #   Fiddle::CStructEntity.size(
    #     [ Fiddle::TYPE_DOUBLE,
    #       Fiddle::TYPE_INT,
    #       Fiddle::TYPE_CHAR,
    #       Fiddle::TYPE_VOIDP ]) #=> 24
    def CStructEntity.size(types)
      offset = 0

      max_align = types.map { |type, count = 1|
        last_offset = offset

        align = PackInfo::ALIGN_MAP[type]
        offset = PackInfo.align(last_offset, align) +
                 (PackInfo::SIZE_MAP[type] * count)

        align
      }.max

      PackInfo.align(offset, max_align)
    end

    # Wraps the C pointer +addr+ as a C struct with the given +types+.
    #
    # When the instance is garbage collected, the C function +func+ is called.
    #
    # See also Fiddle::Pointer.new
    def initialize(addr, types, func = nil)
      set_ctypes(types)
      super(addr, @size, func)
    end

    # Set the names of the +members+ in this C struct
    def assign_names(members)
      @members = members
    end

    # Calculates the offsets and sizes for the given +types+ in the struct.
    def set_ctypes(types)
      @ctypes = types
      @offset = []
      offset = 0

      max_align = types.map { |type, count = 1|
        orig_offset = offset
        align = ALIGN_MAP[type]
        offset = PackInfo.align(orig_offset, align)

        @offset << offset

        offset += (SIZE_MAP[type] * count)

        align
      }.max

      @size = PackInfo.align(offset, max_align)
    end

    # Fetch struct member +name+
    def [](name)
      idx = @members.index(name)
      if( idx.nil? )
        raise(ArgumentError, "no such member: #{name}")
      end
      ty = @ctypes[idx]
      if( ty.is_a?(Array) )
        r = super(@offset[idx], SIZE_MAP[ty[0]] * ty[1])
      else
        r = super(@offset[idx], SIZE_MAP[ty.abs])
      end
      packer = Packer.new([ty])
      val = packer.unpack([r])
      case ty
      when Array
        case ty[0]
        when TYPE_VOIDP
          val = val.collect{|v| Pointer.new(v)}
        end
      when TYPE_VOIDP
        val = Pointer.new(val[0])
      else
        val = val[0]
      end
      if( ty.is_a?(Integer) && (ty < 0) )
        return unsigned_value(val, ty)
      elsif( ty.is_a?(Array) && (ty[0] < 0) )
        return val.collect{|v| unsigned_value(v,ty[0])}
      else
        return val
      end
    end

    # Set struct member +name+, to value +val+
    def []=(name, val)
      idx = @members.index(name)
      if( idx.nil? )
        raise(ArgumentError, "no such member: #{name}")
      end
      ty  = @ctypes[idx]
      packer = Packer.new([ty])
      val = wrap_arg(val, ty, [])
      buff = packer.pack([val].flatten())
      super(@offset[idx], buff.size, buff)
      if( ty.is_a?(Integer) && (ty < 0) )
        return unsigned_value(val, ty)
      elsif( ty.is_a?(Array) && (ty[0] < 0) )
        return val.collect{|v| unsigned_value(v,ty[0])}
      else
        return val
      end
    end

    def to_s() # :nodoc:
      super(@size)
    end
  end

  # A C union wrapper
  class CUnionEntity < CStructEntity
    include PackInfo

    # Allocates a C union the +types+ provided.
    #
    # When the instance is garbage collected, the C function +func+ is called.
    def CUnionEntity.malloc(types, func=nil)
      addr = Fiddle.malloc(CUnionEntity.size(types))
      CUnionEntity.new(addr, types, func)
    end

    # Returns the size needed for the union with the given +types+.
    #
    #   Fiddle::CUnionEntity.size(
    #     [ Fiddle::TYPE_DOUBLE,
    #       Fiddle::TYPE_INT,
    #       Fiddle::TYPE_CHAR,
    #       Fiddle::TYPE_VOIDP ]) #=> 8
    def CUnionEntity.size(types)
      types.map { |type, count = 1|
        PackInfo::SIZE_MAP[type] * count
      }.max
    end

    # Calculate the necessary offset and for each union member with the given
    # +types+
    def set_ctypes(types)
      @ctypes = types
      @offset = Array.new(types.length, 0)
      @size   = self.class.size types
    end
  end
end

PKDH[�vH�CCshare/ruby/fiddle/function.rbnu�[���# frozen_string_literal: true
module Fiddle
  class Function
    # The ABI of the Function.
    attr_reader :abi

    # The address of this function
    attr_reader :ptr

    # The name of this function
    attr_reader :name

    # The integer memory location of this function
    def to_i
      ptr.to_i
    end
  end
end
PKDH[�����share/ruby/fiddle/types.rbnu�[���# frozen_string_literal: true
module Fiddle
  # Adds Windows type aliases to the including class for use with
  # Fiddle::Importer.
  #
  # The aliases added are:
  # * ATOM
  # * BOOL
  # * BYTE
  # * DWORD
  # * DWORD32
  # * DWORD64
  # * HANDLE
  # * HDC
  # * HINSTANCE
  # * HWND
  # * LPCSTR
  # * LPSTR
  # * PBYTE
  # * PDWORD
  # * PHANDLE
  # * PVOID
  # * PWORD
  # * UCHAR
  # * UINT
  # * ULONG
  # * WORD
  module Win32Types
    def included(m) # :nodoc:
      # https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types
      m.module_eval{
        typealias "ATOM", "WORD"
        typealias "BOOL", "int"
        typealias "BYTE", "unsigned char"
        typealias "DWORD", "unsigned long"
        typealias "DWORD32", "uint32_t"
        typealias "DWORD64", "uint64_t"
        typealias "HANDLE", "PVOID"
        typealias "HDC", "HANDLE"
        typealias "HINSTANCE", "HANDLE"
        typealias "HWND", "HANDLE"
        typealias "LPCSTR", "const char *"
        typealias "LPSTR", "char *"
        typealias "PBYTE", "BYTE *"
        typealias "PDWORD", "DWORD *"
        typealias "PHANDLE", "HANDLE *"
        typealias "PVOID", "void *"
        typealias "PWORD", "WORD *"
        typealias "UCHAR", "unsigned char"
        typealias "UINT", "unsigned int"
        typealias "ULONG", "unsigned long"
        typealias "WORD", "unsigned short"
      }
    end
    module_function :included
  end

  # Adds basic type aliases to the including class for use with Fiddle::Importer.
  #
  # The aliases added are +uint+ and +u_int+ (<tt>unsigned int</tt>) and
  # +ulong+ and +u_long+ (<tt>unsigned long</tt>)
  module BasicTypes
    def included(m) # :nodoc:
      m.module_eval{
        typealias "uint", "unsigned int"
        typealias "u_int", "unsigned int"
        typealias "ulong", "unsigned long"
        typealias "u_long", "unsigned long"
      }
    end
    module_function :included
  end
end
PKDH[64ʓ��share/ruby/fiddle/pack.rbnu�[���# frozen_string_literal: true
require 'fiddle'

module Fiddle
  module PackInfo # :nodoc: all
    ALIGN_MAP = {
      TYPE_VOIDP => ALIGN_VOIDP,
      TYPE_CHAR  => ALIGN_CHAR,
      TYPE_SHORT => ALIGN_SHORT,
      TYPE_INT   => ALIGN_INT,
      TYPE_LONG  => ALIGN_LONG,
      TYPE_FLOAT => ALIGN_FLOAT,
      TYPE_DOUBLE => ALIGN_DOUBLE,
      -TYPE_CHAR  => ALIGN_CHAR,
      -TYPE_SHORT => ALIGN_SHORT,
      -TYPE_INT   => ALIGN_INT,
      -TYPE_LONG  => ALIGN_LONG,
    }

    PACK_MAP = {
      TYPE_VOIDP => "l!",
      TYPE_CHAR  => "c",
      TYPE_SHORT => "s!",
      TYPE_INT   => "i!",
      TYPE_LONG  => "l!",
      TYPE_FLOAT => "f",
      TYPE_DOUBLE => "d",
      -TYPE_CHAR  => "c",
      -TYPE_SHORT => "s!",
      -TYPE_INT   => "i!",
      -TYPE_LONG  => "l!",
    }

    SIZE_MAP = {
      TYPE_VOIDP => SIZEOF_VOIDP,
      TYPE_CHAR  => SIZEOF_CHAR,
      TYPE_SHORT => SIZEOF_SHORT,
      TYPE_INT   => SIZEOF_INT,
      TYPE_LONG  => SIZEOF_LONG,
      TYPE_FLOAT => SIZEOF_FLOAT,
      TYPE_DOUBLE => SIZEOF_DOUBLE,
      -TYPE_CHAR  => SIZEOF_CHAR,
      -TYPE_SHORT => SIZEOF_SHORT,
      -TYPE_INT   => SIZEOF_INT,
      -TYPE_LONG  => SIZEOF_LONG,
    }
    if defined?(TYPE_LONG_LONG)
      ALIGN_MAP[TYPE_LONG_LONG] = ALIGN_MAP[-TYPE_LONG_LONG] = ALIGN_LONG_LONG
      PACK_MAP[TYPE_LONG_LONG] = PACK_MAP[-TYPE_LONG_LONG] = "q"
      SIZE_MAP[TYPE_LONG_LONG] = SIZE_MAP[-TYPE_LONG_LONG] = SIZEOF_LONG_LONG
      PACK_MAP[TYPE_VOIDP] = "q" if SIZEOF_LONG_LONG == SIZEOF_VOIDP
    end

    def align(addr, align)
      d = addr % align
      if( d == 0 )
        addr
      else
        addr + (align - d)
      end
    end
    module_function :align
  end

  class Packer # :nodoc: all
    include PackInfo

    def self.[](*types)
      new(types)
    end

    def initialize(types)
      parse_types(types)
    end

    def size()
      @size
    end

    def pack(ary)
      case SIZEOF_VOIDP
      when SIZEOF_LONG
        ary.pack(@template)
      else
        if defined?(TYPE_LONG_LONG) and
          SIZEOF_VOIDP == SIZEOF_LONG_LONG
          ary.pack(@template)
        else
          raise(RuntimeError, "sizeof(void*)?")
        end
      end
    end

    def unpack(ary)
      case SIZEOF_VOIDP
      when SIZEOF_LONG
        ary.join().unpack(@template)
      else
        if defined?(TYPE_LONG_LONG) and
          SIZEOF_VOIDP == SIZEOF_LONG_LONG
          ary.join().unpack(@template)
        else
          raise(RuntimeError, "sizeof(void*)?")
        end
      end
    end

    private

    def parse_types(types)
      @template = "".dup
      addr     = 0
      types.each{|t|
        orig_addr = addr
        if( t.is_a?(Array) )
          addr = align(orig_addr, ALIGN_MAP[TYPE_VOIDP])
        else
          addr = align(orig_addr, ALIGN_MAP[t])
        end
        d = addr - orig_addr
        if( d > 0 )
          @template << "x#{d}"
        end
        if( t.is_a?(Array) )
          @template << (PACK_MAP[t[0]] * t[1])
          addr += (SIZE_MAP[t[0]] * t[1])
        else
          @template << PACK_MAP[t]
          addr += SIZE_MAP[t]
        end
      }
      addr = align(addr, ALIGN_MAP[TYPE_VOIDP])
      @size = addr
    end
  end
end
PKDH[;#���share/ruby/fiddle/closure.rbnu�[���# frozen_string_literal: true
module Fiddle
  class Closure

    # the C type of the return of the FFI closure
    attr_reader :ctype

    # arguments of the FFI closure
    attr_reader :args

    # Extends Fiddle::Closure to allow for building the closure in a block
    class BlockCaller < Fiddle::Closure

      # == Description
      #
      # Construct a new BlockCaller object.
      #
      # * +ctype+ is the C type to be returned
      # * +args+ are passed the callback
      # * +abi+ is the abi of the closure
      #
      # If there is an error in preparing the +ffi_cif+ or +ffi_prep_closure+,
      # then a RuntimeError will be raised.
      #
      # == Example
      #
      #   include Fiddle
      #
      #   cb = Closure::BlockCaller.new(TYPE_INT, [TYPE_INT]) do |one|
      #     one
      #   end
      #
      #   func = Function.new(cb, [TYPE_INT], TYPE_INT)
      #
      def initialize ctype, args, abi = Fiddle::Function::DEFAULT, &block
        super(ctype, args, abi)
        @block = block
      end

      # Calls the constructed BlockCaller, with +args+
      #
      # For an example see Fiddle::Closure::BlockCaller.new
      #
      def call *args
        @block.call(*args)
      end
    end
  end
end
PKDH[nO�88share/ruby/fiddle/cparser.rbnu�[���# frozen_string_literal: true
module Fiddle
  # A mixin that provides methods for parsing C struct and prototype signatures.
  #
  # == Example
  #   require 'fiddle/import'
  #
  #   include Fiddle::CParser
  #     #=> Object
  #
  #   parse_ctype('int')
  #     #=> Fiddle::TYPE_INT
  #
  #   parse_struct_signature(['int i', 'char c'])
  #     #=> [[Fiddle::TYPE_INT, Fiddle::TYPE_CHAR], ["i", "c"]]
  #
  #   parse_signature('double sum(double, double)')
  #     #=> ["sum", Fiddle::TYPE_DOUBLE, [Fiddle::TYPE_DOUBLE, Fiddle::TYPE_DOUBLE]]
  #
  module CParser
    # Parses a C struct's members
    #
    # Example:
    #   require 'fiddle/import'
    #
    #   include Fiddle::CParser
    #     #=> Object
    #
    #   parse_struct_signature(['int i', 'char c'])
    #     #=> [[Fiddle::TYPE_INT, Fiddle::TYPE_CHAR], ["i", "c"]]
    #
    #   parse_struct_signature(['char buffer[80]'])
    #     #=> [[[Fiddle::TYPE_CHAR, 80]], ["buffer"]]
    #
    def parse_struct_signature(signature, tymap=nil)
      if signature.is_a?(String)
        signature = split_arguments(signature, /[,;]/)
      end
      mems = []
      tys  = []
      signature.each{|msig|
        msig = compact(msig)
        case msig
        when /^[\w\*\s]+[\*\s](\w+)$/
          mems.push($1)
          tys.push(parse_ctype(msig, tymap))
        when /^[\w\*\s]+\(\*(\w+)\)\(.*?\)$/
          mems.push($1)
          tys.push(parse_ctype(msig, tymap))
        when /^([\w\*\s]+[\*\s])(\w+)\[(\d+)\]$/
          mems.push($2)
          tys.push([parse_ctype($1.strip, tymap), $3.to_i])
        when /^([\w\*\s]+)\[(\d+)\](\w+)$/
          mems.push($3)
          tys.push([parse_ctype($1.strip, tymap), $2.to_i])
        else
          raise(RuntimeError,"can't parse the struct member: #{msig}")
        end
      }
      return tys, mems
    end

    # Parses a C prototype signature
    #
    # If Hash +tymap+ is provided, the return value and the arguments from the
    # +signature+ are expected to be keys, and the value will be the C type to
    # be looked up.
    #
    # Example:
    #   require 'fiddle/import'
    #
    #   include Fiddle::CParser
    #     #=> Object
    #
    #   parse_signature('double sum(double, double)')
    #     #=> ["sum", Fiddle::TYPE_DOUBLE, [Fiddle::TYPE_DOUBLE, Fiddle::TYPE_DOUBLE]]
    #
    #   parse_signature('void update(void (*cb)(int code))')
    #     #=> ["update", Fiddle::TYPE_VOID, [Fiddle::TYPE_VOIDP]]
    #
    #   parse_signature('char (*getbuffer(void))[80]')
    #     #=> ["getbuffer", Fiddle::TYPE_VOIDP, []]
    #
    def parse_signature(signature, tymap=nil)
      tymap ||= {}
      case compact(signature)
      when /^(?:[\w\*\s]+)\(\*(\w+)\((.*?)\)\)(?:\[\w*\]|\(.*?\));?$/
        func, args = $1, $2
        return [func, TYPE_VOIDP, split_arguments(args).collect {|arg| parse_ctype(arg, tymap)}]
      when /^([\w\*\s]+[\*\s])(\w+)\((.*?)\);?$/
        ret, func, args = $1.strip, $2, $3
        return [func, parse_ctype(ret, tymap), split_arguments(args).collect {|arg| parse_ctype(arg, tymap)}]
      else
        raise(RuntimeError,"can't parse the function prototype: #{signature}")
      end
    end

    # Given a String of C type +ty+, returns the corresponding Fiddle constant.
    #
    # +ty+ can also accept an Array of C type Strings, and will be returned in
    # a corresponding Array.
    #
    # If Hash +tymap+ is provided, +ty+ is expected to be the key, and the
    # value will be the C type to be looked up.
    #
    # Example:
    #   require 'fiddle/import'
    #
    #   include Fiddle::CParser
    #     #=> Object
    #
    #   parse_ctype('int')
    #     #=> Fiddle::TYPE_INT
    #
    #   parse_ctype('double diff')
    #     #=> Fiddle::TYPE_DOUBLE
    #
    #   parse_ctype('unsigned char byte')
    #     #=> -Fiddle::TYPE_CHAR
    #
    #   parse_ctype('const char* const argv[]')
    #     #=> -Fiddle::TYPE_VOIDP
    #
    def parse_ctype(ty, tymap=nil)
      tymap ||= {}
      case ty
      when Array
        return [parse_ctype(ty[0], tymap), ty[1]]
      when 'void'
        return TYPE_VOID
      when /^(?:(?:signed\s+)?long\s+long(?:\s+int\s+)?|int64_t)(?:\s+\w+)?$/
        if( defined?(TYPE_LONG_LONG) )
          return TYPE_LONG_LONG
        else
          raise(RuntimeError, "unsupported type: #{ty}")
        end
      when /^(?:unsigned\s+long\s+long(?:\s+int\s+)?|uint64_t)(?:\s+\w+)?$/
        if( defined?(TYPE_LONG_LONG) )
          return -TYPE_LONG_LONG
        else
          raise(RuntimeError, "unsupported type: #{ty}")
        end
      when /^(?:signed\s+)?long(?:\s+int\s+)?(?:\s+\w+)?$/
        return TYPE_LONG
      when /^unsigned\s+long(?:\s+int\s+)?(?:\s+\w+)?$/
        return -TYPE_LONG
      when /^(?:signed\s+)?int(?:\s+\w+)?$/
        return TYPE_INT
      when /^(?:unsigned\s+int|uint)(?:\s+\w+)?$/
        return -TYPE_INT
      when /^(?:signed\s+)?short(?:\s+int\s+)?(?:\s+\w+)?$/
        return TYPE_SHORT
      when /^unsigned\s+short(?:\s+int\s+)?(?:\s+\w+)?$/
        return -TYPE_SHORT
      when /^(?:signed\s+)?char(?:\s+\w+)?$/
        return TYPE_CHAR
      when /^unsigned\s+char(?:\s+\w+)?$/
        return  -TYPE_CHAR
      when /^float(?:\s+\w+)?$/
        return TYPE_FLOAT
      when /^double(?:\s+\w+)?$/
        return TYPE_DOUBLE
      when /^size_t(?:\s+\w+)?$/
        return TYPE_SIZE_T
      when /^ssize_t(?:\s+\w+)?$/
        return TYPE_SSIZE_T
      when /^ptrdiff_t(?:\s+\w+)?$/
        return TYPE_PTRDIFF_T
      when /^intptr_t(?:\s+\w+)?$/
        return TYPE_INTPTR_T
      when /^uintptr_t(?:\s+\w+)?$/
        return TYPE_UINTPTR_T
      when /\*/, /\[[\s\d]*\]/
        return TYPE_VOIDP
      else
        ty = ty.split(' ', 2)[0]
        if( tymap[ty] )
          return parse_ctype(tymap[ty], tymap)
        else
          raise(DLError, "unknown type: #{ty}")
        end
      end
    end

    private

    def split_arguments(arguments, sep=',')
      return [] if arguments.strip == 'void'
      arguments.scan(/([\w\*\s]+\(\*\w*\)\(.*?\)|[\w\*\s\[\]]+)(?:#{sep}\s*|$)/).collect {|m| m[0]}
    end

    def compact(signature)
      signature.gsub(/\s+/, ' ').gsub(/\s*([\(\)\[\]\*,;])\s*/, '\1').strip
    end

  end
end
PKDH[�c��xxshare/ruby/fiddle/value.rbnu�[���# frozen_string_literal: true
require 'fiddle'

module Fiddle
  module ValueUtil #:nodoc: all
    def unsigned_value(val, ty)
      case ty.abs
      when TYPE_CHAR
        [val].pack("c").unpack("C")[0]
      when TYPE_SHORT
        [val].pack("s!").unpack("S!")[0]
      when TYPE_INT
        [val].pack("i!").unpack("I!")[0]
      when TYPE_LONG
        [val].pack("l!").unpack("L!")[0]
      else
        if defined?(TYPE_LONG_LONG) and
          ty.abs == TYPE_LONG_LONG
          [val].pack("q").unpack("Q")[0]
        else
          val
        end
      end
    end

    def signed_value(val, ty)
      case ty.abs
      when TYPE_CHAR
        [val].pack("C").unpack("c")[0]
      when TYPE_SHORT
        [val].pack("S!").unpack("s!")[0]
      when TYPE_INT
        [val].pack("I!").unpack("i!")[0]
      when TYPE_LONG
        [val].pack("L!").unpack("l!")[0]
      else
        if defined?(TYPE_LONG_LONG) and
          ty.abs == TYPE_LONG_LONG
          [val].pack("Q").unpack("q")[0]
        else
          val
        end
      end
    end

    def wrap_args(args, tys, funcs, &block)
      result = []
      tys ||= []
      args.each_with_index{|arg, idx|
        result.push(wrap_arg(arg, tys[idx], funcs, &block))
      }
      result
    end

    def wrap_arg(arg, ty, funcs = [], &block)
      funcs ||= []
      case arg
      when nil
        return 0
      when Pointer
        return arg.to_i
      when IO
        case ty
        when TYPE_VOIDP
          return Pointer[arg].to_i
        else
          return arg.to_i
        end
      when Function
        if( block )
          arg.bind_at_call(&block)
          funcs.push(arg)
        elsif !arg.bound?
          raise(RuntimeError, "block must be given.")
        end
        return arg.to_i
      when String
        if( ty.is_a?(Array) )
          return arg.unpack('C*')
        else
          case SIZEOF_VOIDP
          when SIZEOF_LONG
            return [arg].pack("p").unpack("l!")[0]
          else
            if defined?(SIZEOF_LONG_LONG) and
              SIZEOF_VOIDP == SIZEOF_LONG_LONG
              return [arg].pack("p").unpack("q")[0]
            else
              raise(RuntimeError, "sizeof(void*)?")
            end
          end
        end
      when Float, Integer
        return arg
      when Array
        if( ty.is_a?(Array) ) # used only by struct
          case ty[0]
          when TYPE_VOIDP
            return arg.collect{|v| Integer(v)}
          when TYPE_CHAR
            if( arg.is_a?(String) )
              return val.unpack('C*')
            end
          end
          return arg
        else
          return arg
        end
      else
        if( arg.respond_to?(:to_ptr) )
          return arg.to_ptr.to_i
        else
          begin
            return Integer(arg)
          rescue
            raise(ArgumentError, "unknown argument type: #{arg.class}")
          end
        end
      end
    end
  end
end
PKDH[�3��A#A#share/ruby/fiddle/import.rbnu�[���# frozen_string_literal: true
require 'fiddle'
require 'fiddle/struct'
require 'fiddle/cparser'

module Fiddle

  # Used internally by Fiddle::Importer
  class CompositeHandler
    # Create a new handler with the open +handlers+
    #
    # Used internally by Fiddle::Importer.dlload
    def initialize(handlers)
      @handlers = handlers
    end

    # Array of the currently loaded libraries.
    def handlers()
      @handlers
    end

    # Returns the address as an Integer from any handlers with the function
    # named +symbol+.
    #
    # Raises a DLError if the handle is closed.
    def sym(symbol)
      @handlers.each{|handle|
        if( handle )
          begin
            addr = handle.sym(symbol)
            return addr
          rescue DLError
          end
        end
      }
      return nil
    end

    # See Fiddle::CompositeHandler.sym
    def [](symbol)
      sym(symbol)
    end
  end

  # A DSL that provides the means to dynamically load libraries and build
  # modules around them including calling extern functions within the C
  # library that has been loaded.
  #
  # == Example
  #
  #   require 'fiddle'
  #   require 'fiddle/import'
  #
  #   module LibSum
  #   	extend Fiddle::Importer
  #   	dlload './libsum.so'
  #   	extern 'double sum(double*, int)'
  #   	extern 'double split(double)'
  #   end
  #
  module Importer
    include Fiddle
    include CParser
    extend Importer

    attr_reader :type_alias
    private :type_alias

    # Creates an array of handlers for the given +libs+, can be an instance of
    # Fiddle::Handle, Fiddle::Importer, or will create a new instance of
    # Fiddle::Handle using Fiddle.dlopen
    #
    # Raises a DLError if the library cannot be loaded.
    #
    # See Fiddle.dlopen
    def dlload(*libs)
      handles = libs.collect{|lib|
        case lib
        when nil
          nil
        when Handle
          lib
        when Importer
          lib.handlers
        else
          begin
            Fiddle.dlopen(lib)
          rescue DLError
            raise(DLError, "can't load #{lib}")
          end
        end
      }.flatten()
      @handler = CompositeHandler.new(handles)
      @func_map = {}
      @type_alias = {}
    end

    # Sets the type alias for +alias_type+ as +orig_type+
    def typealias(alias_type, orig_type)
      @type_alias[alias_type] = orig_type
    end

    # Returns the sizeof +ty+, using Fiddle::Importer.parse_ctype to determine
    # the C type and the appropriate Fiddle constant.
    def sizeof(ty)
      case ty
      when String
        ty = parse_ctype(ty, type_alias).abs()
        case ty
        when TYPE_CHAR
          return SIZEOF_CHAR
        when TYPE_SHORT
          return SIZEOF_SHORT
        when TYPE_INT
          return SIZEOF_INT
        when TYPE_LONG
          return SIZEOF_LONG
        when TYPE_FLOAT
          return SIZEOF_FLOAT
        when TYPE_DOUBLE
          return SIZEOF_DOUBLE
        when TYPE_VOIDP
          return SIZEOF_VOIDP
        else
          if defined?(TYPE_LONG_LONG) and
            ty == TYPE_LONG_LONG
            return SIZEOF_LONG_LONG
          else
            raise(DLError, "unknown type: #{ty}")
          end
        end
      when Class
        if( ty.instance_methods().include?(:to_ptr) )
          return ty.size()
        end
      end
      return Pointer[ty].size()
    end

    def parse_bind_options(opts)
      h = {}
      while( opt = opts.shift() )
        case opt
        when :stdcall, :cdecl
          h[:call_type] = opt
        when :carried, :temp, :temporal, :bind
          h[:callback_type] = opt
          h[:carrier] = opts.shift()
        else
          h[opt] = true
        end
      end
      h
    end
    private :parse_bind_options

    # :stopdoc:
    CALL_TYPE_TO_ABI = Hash.new { |h, k|
      raise RuntimeError, "unsupported call type: #{k}"
    }.merge({ :stdcall => Function.const_defined?(:STDCALL) ? Function::STDCALL :
                          Function::DEFAULT,
              :cdecl   => Function::DEFAULT,
              nil      => Function::DEFAULT
            }).freeze
    private_constant :CALL_TYPE_TO_ABI
    # :startdoc:

    # Creates a global method from the given C +signature+.
    def extern(signature, *opts)
      symname, ctype, argtype = parse_signature(signature, type_alias)
      opt = parse_bind_options(opts)
      f = import_function(symname, ctype, argtype, opt[:call_type])
      name = symname.gsub(/@.+/,'')
      @func_map[name] = f
      # define_method(name){|*args,&block| f.call(*args,&block)}
      begin
        /^(.+?):(\d+)/ =~ caller.first
        file, line = $1, $2.to_i
      rescue
        file, line = __FILE__, __LINE__+3
      end
      module_eval(<<-EOS, file, line)
        def #{name}(*args, &block)
          @func_map['#{name}'].call(*args,&block)
        end
      EOS
      module_function(name)
      f
    end

    # Creates a global method from the given C +signature+ using the given
    # +opts+ as bind parameters with the given block.
    def bind(signature, *opts, &blk)
      name, ctype, argtype = parse_signature(signature, type_alias)
      h = parse_bind_options(opts)
      case h[:callback_type]
      when :bind, nil
        f = bind_function(name, ctype, argtype, h[:call_type], &blk)
      else
        raise(RuntimeError, "unknown callback type: #{h[:callback_type]}")
      end
      @func_map[name] = f
      #define_method(name){|*args,&block| f.call(*args,&block)}
      begin
        /^(.+?):(\d+)/ =~ caller.first
        file, line = $1, $2.to_i
      rescue
        file, line = __FILE__, __LINE__+3
      end
      module_eval(<<-EOS, file, line)
        def #{name}(*args,&block)
          @func_map['#{name}'].call(*args,&block)
        end
      EOS
      module_function(name)
      f
    end

    # Creates a class to wrap the C struct described by +signature+.
    #
    #   MyStruct = struct ['int i', 'char c']
    def struct(signature)
      tys, mems = parse_struct_signature(signature, type_alias)
      Fiddle::CStructBuilder.create(CStruct, tys, mems)
    end

    # Creates a class to wrap the C union described by +signature+.
    #
    #   MyUnion = union ['int i', 'char c']
    def union(signature)
      tys, mems = parse_struct_signature(signature, type_alias)
      Fiddle::CStructBuilder.create(CUnion, tys, mems)
    end

    # Returns the function mapped to +name+, that was created by either
    # Fiddle::Importer.extern or Fiddle::Importer.bind
    def [](name)
      @func_map[name]
    end

    # Creates a class to wrap the C struct with the value +ty+
    #
    # See also Fiddle::Importer.struct
    def create_value(ty, val=nil)
      s = struct([ty + " value"])
      ptr = s.malloc()
      if( val )
        ptr.value = val
      end
      return ptr
    end
    alias value create_value

    # Returns a new instance of the C struct with the value +ty+ at the +addr+
    # address.
    def import_value(ty, addr)
      s = struct([ty + " value"])
      ptr = s.new(addr)
      return ptr
    end


    # The Fiddle::CompositeHandler instance
    #
    # Will raise an error if no handlers are open.
    def handler
      (@handler ||= nil) or raise "call dlload before importing symbols and functions"
    end

    # Returns a new Fiddle::Pointer instance at the memory address of the given
    # +name+ symbol.
    #
    # Raises a DLError if the +name+ doesn't exist.
    #
    # See Fiddle::CompositeHandler.sym and Fiddle::Handle.sym
    def import_symbol(name)
      addr = handler.sym(name)
      if( !addr )
        raise(DLError, "cannot find the symbol: #{name}")
      end
      Pointer.new(addr)
    end

    # Returns a new Fiddle::Function instance at the memory address of the given
    # +name+ function.
    #
    # Raises a DLError if the +name+ doesn't exist.
    #
    # * +argtype+ is an Array of arguments, passed to the +name+ function.
    # * +ctype+ is the return type of the function
    # * +call_type+ is the ABI of the function
    #
    # See also Fiddle:Function.new
    #
    # See Fiddle::CompositeHandler.sym and Fiddle::Handler.sym
    def import_function(name, ctype, argtype, call_type = nil)
      addr = handler.sym(name)
      if( !addr )
        raise(DLError, "cannot find the function: #{name}()")
      end
      Function.new(addr, argtype, ctype, CALL_TYPE_TO_ABI[call_type],
                   name: name)
    end

    # Returns a new closure wrapper for the +name+ function.
    #
    # * +ctype+ is the return type of the function
    # * +argtype+ is an Array of arguments, passed to the callback function
    # * +call_type+ is the abi of the closure
    # * +block+ is passed to the callback
    #
    # See Fiddle::Closure
    def bind_function(name, ctype, argtype, call_type = nil, &block)
      abi = CALL_TYPE_TO_ABI[call_type]
      closure = Class.new(Fiddle::Closure) {
        define_method(:call, block)
      }.new(ctype, argtype, abi)

      Function.new(closure, argtype, ctype, abi, name: name)
    end
  end
end
PKDH[ڮ�R��share/ruby/ripper/core.rbnu�[���# frozen_string_literal: true
#
# $Id$
#
# Copyright (c) 2003-2005 Minero Aoki
#
# This program is free software.
# You can distribute and/or modify this program under the Ruby License.
# For details of Ruby License, see ruby/COPYING.
#

require 'ripper.so'

class Ripper

  # Parses the given Ruby program read from +src+.
  # +src+ must be a String or an IO or a object with a #gets method.
  def Ripper.parse(src, filename = '(ripper)', lineno = 1)
    new(src, filename, lineno).parse
  end

  # This array contains name of parser events.
  PARSER_EVENTS = PARSER_EVENT_TABLE.keys

  # This array contains name of scanner events.
  SCANNER_EVENTS = SCANNER_EVENT_TABLE.keys

  # This array contains name of all ripper events.
  EVENTS = PARSER_EVENTS + SCANNER_EVENTS

  private

  # :stopdoc:
  def _dispatch_0() nil end
  def _dispatch_1(a) a end
  def _dispatch_2(a, b) a end
  def _dispatch_3(a, b, c) a end
  def _dispatch_4(a, b, c, d) a end
  def _dispatch_5(a, b, c, d, e) a end
  def _dispatch_6(a, b, c, d, e, f) a end
  def _dispatch_7(a, b, c, d, e, f, g) a end
  # :startdoc:

  #
  # Parser Events
  #

  PARSER_EVENT_TABLE.each do |id, arity|
    alias_method "on_#{id}", "_dispatch_#{arity}"
  end

  # This method is called when weak warning is produced by the parser.
  # +fmt+ and +args+ is printf style.
  def warn(fmt, *args)
  end

  # This method is called when strong warning is produced by the parser.
  # +fmt+ and +args+ is printf style.
  def warning(fmt, *args)
  end

  # This method is called when the parser found syntax error.
  def compile_error(msg)
  end

  #
  # Scanner Events
  #

  SCANNER_EVENTS.each do |id|
    alias_method "on_#{id}", :_dispatch_1
  end

end
PKDH[��Cppshare/ruby/ripper/filter.rbnu�[���# frozen_string_literal: true
#
# $Id$
#
# Copyright (c) 2004,2005 Minero Aoki
#
# This program is free software.
# You can distribute and/or modify this program under the Ruby License.
# For details of Ruby License, see ruby/COPYING.
#

require 'ripper/lexer'

class Ripper

  # This class handles only scanner events,
  # which are dispatched in the 'right' order (same with input).
  class Filter

    # Creates a new Ripper::Filter instance, passes parameters +src+,
    # +filename+, and +lineno+ to Ripper::Lexer.new
    #
    # The lexer is for internal use only.
    def initialize(src, filename = '-', lineno = 1)
      @__lexer = Lexer.new(src, filename, lineno)
      @__line = nil
      @__col = nil
      @__state = nil
    end

    # The file name of the input.
    def filename
      @__lexer.filename
    end

    # The line number of the current token.
    # This value starts from 1.
    # This method is valid only in event handlers.
    def lineno
      @__line
    end

    # The column number of the current token.
    # This value starts from 0.
    # This method is valid only in event handlers.
    def column
      @__col
    end

    # The scanner's state of the current token.
    # This value is the bitwise OR of zero or more of the +Ripper::EXPR_*+ constants.
    def state
      @__state
    end

    # Starts the parser.
    # +init+ is a data accumulator and is passed to the next event handler (as
    # of Enumerable#inject).
    def parse(init = nil)
      data = init
      @__lexer.lex.each do |pos, event, tok, state|
        @__line, @__col = *pos
        @__state = state
        data = if respond_to?(event, true)
               then __send__(event, tok, data)
               else on_default(event, tok, data)
               end
      end
      data
    end

    private

    # This method is called when some event handler is undefined.
    # +event+ is :on_XXX, +token+ is the scanned token, and +data+ is a data
    # accumulator.
    #
    # The return value of this method is passed to the next event handler (as
    # of Enumerable#inject).
    def on_default(event, token, data)
      data
    end

  end

end
PKDH[d�%)))share/ruby/ripper/lexer.rbnu�[���# frozen_string_literal: true
#
# $Id$
#
# Copyright (c) 2004,2005 Minero Aoki
#
# This program is free software.
# You can distribute and/or modify this program under the Ruby License.
# For details of Ruby License, see ruby/COPYING.
#

require 'ripper/core'

class Ripper

  # Tokenizes the Ruby program and returns an array of strings.
  #
  #   p Ripper.tokenize("def m(a) nil end")
  #      # => ["def", " ", "m", "(", "a", ")", " ", "nil", " ", "end"]
  #
  def Ripper.tokenize(src, filename = '-', lineno = 1)
    Lexer.new(src, filename, lineno).tokenize
  end

  # Tokenizes the Ruby program and returns an array of an array,
  # which is formatted like
  # <code>[[lineno, column], type, token, state]</code>.
  #
  #   require 'ripper'
  #   require 'pp'
  #
  #   pp Ripper.lex("def m(a) nil end")
  #   #=> [[[1,  0], :on_kw,     "def", FNAME    ],
  #        [[1,  3], :on_sp,     " ",   FNAME    ],
  #        [[1,  4], :on_ident,  "m",   ENDFN    ],
  #        [[1,  5], :on_lparen, "(",   BEG|LABEL],
  #        [[1,  6], :on_ident,  "a",   ARG      ],
  #        [[1,  7], :on_rparen, ")",   ENDFN    ],
  #        [[1,  8], :on_sp,     " ",   BEG      ],
  #        [[1,  9], :on_kw,     "nil", END      ],
  #        [[1, 12], :on_sp,     " ",   END      ],
  #        [[1, 13], :on_kw,     "end", END      ]]
  #
  def Ripper.lex(src, filename = '-', lineno = 1)
    Lexer.new(src, filename, lineno).lex
  end

  class Lexer < ::Ripper   #:nodoc: internal use only
    State = Struct.new(:to_int, :to_s) do
      alias to_i to_int
      def initialize(i) super(i, Ripper.lex_state_name(i)).freeze end
      # def inspect; "#<#{self.class}: #{self}>" end
      alias inspect to_s
      def pretty_print(q) q.text(to_s) end
      def ==(i) super or to_int == i end
      def &(i) self.class.new(to_int & i) end
      def |(i) self.class.new(to_int | i) end
      def allbits?(i) to_int.allbits?(i) end
      def anybits?(i) to_int.anybits?(i) end
      def nobits?(i) to_int.nobits?(i) end
    end

    Elem = Struct.new(:pos, :event, :tok, :state, :message) do
      def initialize(pos, event, tok, state, message = nil)
        super(pos, event, tok, State.new(state), message)
      end

      def inspect
        "#<#{self.class}: #{event}@#{pos[0]}:#{pos[1]}:#{state}: #{tok.inspect}#{": " if message}#{message}>"
      end

      def pretty_print(q)
        q.group(2, "#<#{self.class}:", ">") {
          q.breakable
          q.text("#{event}@#{pos[0]}:#{pos[1]}")
          q.breakable
          q.text(state)
          q.breakable
          q.text("token: ")
          tok.pretty_print(q)
          if message
            q.breakable
            q.text("message: ")
            q.text(message)
          end
        }
      end

      def to_a
        a = super
        a.pop unless a.last
        a
      end
    end

    attr_reader :errors

    def tokenize
      parse().sort_by(&:pos).map(&:tok)
    end

    def lex
      parse().sort_by(&:pos).map(&:to_a)
    end

    # parse the code and returns elements including errors.
    def scan
      result = (parse() + errors + @stack.flatten).uniq.sort_by {|e| [*e.pos, (e.message ? -1 : 0)]}
      result.each_with_index do |e, i|
        if e.event == :on_parse_error and e.tok.empty? and (pre = result[i-1]) and
          pre.pos[0] == e.pos[0] and (pre.pos[1] + pre.tok.size) == e.pos[1]
          e.tok = pre.tok
          e.pos[1] = pre.pos[1]
          result[i-1] = e
          result[i] = pre
        end
      end
      result
    end

    def parse
      @errors = []
      @buf = []
      @stack = []
      super
      @buf.flatten!
      @buf
    end

    private

    unless SCANNER_EVENT_TABLE.key?(:ignored_sp)
      SCANNER_EVENT_TABLE[:ignored_sp] = 1
      SCANNER_EVENTS << :ignored_sp
      EVENTS << :ignored_sp
    end

    def on_heredoc_dedent(v, w)
      ignored_sp = []
      heredoc = @buf.last
      heredoc.each_with_index do |e, i|
        if Elem === e and e.event == :on_tstring_content and e.pos[1].zero?
          tok = e.tok.dup if w > 0 and /\A\s/ =~ e.tok
          if (n = dedent_string(e.tok, w)) > 0
            if e.tok.empty?
              e.tok = tok[0, n]
              e.event = :on_ignored_sp
              next
            end
            ignored_sp << [i, Elem.new(e.pos.dup, :on_ignored_sp, tok[0, n], e.state)]
            e.pos[1] += n
          end
        end
      end
      ignored_sp.reverse_each do |i, e|
        heredoc[i, 0] = [e]
      end
      v
    end

    def on_heredoc_beg(tok)
      @stack.push @buf
      buf = []
      @buf.push buf
      @buf = buf
      @buf.push Elem.new([lineno(), column()], __callee__, tok, state())
    end

    def on_heredoc_end(tok)
      @buf.push Elem.new([lineno(), column()], __callee__, tok, state())
      @buf = @stack.pop
    end

    def _push_token(tok)
      @buf.push Elem.new([lineno(), column()], __callee__, tok, state())
    end

    def on_error(mesg)
      @errors.push Elem.new([lineno(), column()], __callee__, token(), state(), mesg)
    end
    alias on_parse_error on_error
    alias compile_error on_error

    (SCANNER_EVENTS.map {|event|:"on_#{event}"} - private_instance_methods(false)).each do |event|
      alias_method event, :_push_token
    end
  end

  # [EXPERIMENTAL]
  # Parses +src+ and return a string which was matched to +pattern+.
  # +pattern+ should be described as Regexp.
  #
  #   require 'ripper'
  #
  #   p Ripper.slice('def m(a) nil end', 'ident')                   #=> "m"
  #   p Ripper.slice('def m(a) nil end', '[ident lparen rparen]+')  #=> "m(a)"
  #   p Ripper.slice("<<EOS\nstring\nEOS",
  #                  'heredoc_beg nl $(tstring_content*) heredoc_end', 1)
  #       #=> "string\n"
  #
  def Ripper.slice(src, pattern, n = 0)
    if m = token_match(src, pattern)
    then m.string(n)
    else nil
    end
  end

  def Ripper.token_match(src, pattern)   #:nodoc:
    TokenPattern.compile(pattern).match(src)
  end

  class TokenPattern   #:nodoc:

    class Error < ::StandardError # :nodoc:
    end
    class CompileError < Error # :nodoc:
    end
    class MatchError < Error # :nodoc:
    end

    class << self
      alias compile new
    end

    def initialize(pattern)
      @source = pattern
      @re = compile(pattern)
    end

    def match(str)
      match_list(::Ripper.lex(str))
    end

    def match_list(tokens)
      if m = @re.match(map_tokens(tokens))
      then MatchData.new(tokens, m)
      else nil
      end
    end

    private

    def compile(pattern)
      if m = /[^\w\s$()\[\]{}?*+\.]/.match(pattern)
        raise CompileError, "invalid char in pattern: #{m[0].inspect}"
      end
      buf = +''
      pattern.scan(/(?:\w+|\$\(|[()\[\]\{\}?*+\.]+)/) do |tok|
        case tok
        when /\w/
          buf.concat map_token(tok)
        when '$('
          buf.concat '('
        when '('
          buf.concat '(?:'
        when /[?*\[\])\.]/
          buf.concat tok
        else
          raise 'must not happen'
        end
      end
      Regexp.compile(buf)
    rescue RegexpError => err
      raise CompileError, err.message
    end

    def map_tokens(tokens)
      tokens.map {|pos,type,str| map_token(type.to_s.delete_prefix('on_')) }.join
    end

    MAP = {}
    seed = ('a'..'z').to_a + ('A'..'Z').to_a + ('0'..'9').to_a
    SCANNER_EVENT_TABLE.each do |ev, |
      raise CompileError, "[RIPPER FATAL] too many system token" if seed.empty?
      MAP[ev.to_s.delete_prefix('on_')] = seed.shift
    end

    def map_token(tok)
      MAP[tok]  or raise CompileError, "unknown token: #{tok}"
    end

    class MatchData # :nodoc:
      def initialize(tokens, match)
        @tokens = tokens
        @match = match
      end

      def string(n = 0)
        return nil unless @match
        match(n).join
      end

      private

      def match(n = 0)
        return [] unless @match
        @tokens[@match.begin(n)...@match.end(n)].map {|pos,type,str| str }
      end
    end

  end

end
PKDH[�'C:��share/ruby/ripper/sexp.rbnu�[���# frozen_string_literal: true
#
# $Id$
#
# Copyright (c) 2004,2005 Minero Aoki
#
# This program is free software.
# You can distribute and/or modify this program under the Ruby License.
# For details of Ruby License, see ruby/COPYING.
#

require 'ripper/core'

class Ripper

  # [EXPERIMENTAL]
  # Parses +src+ and create S-exp tree.
  # Returns more readable tree rather than Ripper.sexp_raw.
  # This method is mainly for developer use.
  #
  #   require 'ripper'
  #   require 'pp'
  #
  #   pp Ripper.sexp("def m(a) nil end")
  #     #=> [:program,
  #          [[:def,
  #           [:@ident, "m", [1, 4]],
  #           [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil, nil, nil, nil]],
  #           [:bodystmt, [[:var_ref, [:@kw, "nil", [1, 9]]]], nil, nil, nil]]]]
  #
  def Ripper.sexp(src, filename = '-', lineno = 1)
    builder = SexpBuilderPP.new(src, filename, lineno)
    sexp = builder.parse
    sexp unless builder.error?
  end

  # [EXPERIMENTAL]
  # Parses +src+ and create S-exp tree.
  # This method is mainly for developer use.
  #
  #   require 'ripper'
  #   require 'pp'
  #
  #   pp Ripper.sexp_raw("def m(a) nil end")
  #     #=> [:program,
  #          [:stmts_add,
  #           [:stmts_new],
  #           [:def,
  #            [:@ident, "m", [1, 4]],
  #            [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil]],
  #            [:bodystmt,
  #             [:stmts_add, [:stmts_new], [:var_ref, [:@kw, "nil", [1, 9]]]],
  #             nil,
  #             nil,
  #             nil]]]]
  #
  def Ripper.sexp_raw(src, filename = '-', lineno = 1)
    builder = SexpBuilder.new(src, filename, lineno)
    sexp = builder.parse
    sexp unless builder.error?
  end

  class SexpBuilder < ::Ripper   #:nodoc:
    private

    def dedent_element(e, width)
      if (n = dedent_string(e[1], width)) > 0
        e[2][1] += n
      end
      e
    end

    def on_heredoc_dedent(val, width)
      sub = proc do |cont|
        cont.map! do |e|
          if Array === e
            case e[0]
            when :@tstring_content
              e = dedent_element(e, width)
            when /_add\z/
              e[1] = sub[e[1]]
            end
          elsif String === e
            dedent_string(e, width)
          end
          e
        end
      end
      sub[val]
      val
    end

    events = private_instance_methods(false).grep(/\Aon_/) {$'.to_sym}
    (PARSER_EVENTS - events).each do |event|
      module_eval(<<-End, __FILE__, __LINE__ + 1)
        def on_#{event}(*args)
          args.unshift :#{event}
          args
        end
      End
    end

    SCANNER_EVENTS.each do |event|
      module_eval(<<-End, __FILE__, __LINE__ + 1)
        def on_#{event}(tok)
          [:@#{event}, tok, [lineno(), column()]]
        end
      End
    end
  end

  class SexpBuilderPP < SexpBuilder #:nodoc:
    private

    def on_heredoc_dedent(val, width)
      val.map! do |e|
        next e if Symbol === e and /_content\z/ =~ e
        if Array === e and e[0] == :@tstring_content
          e = dedent_element(e, width)
        elsif String === e
          dedent_string(e, width)
        end
        e
      end
      val
    end

    def _dispatch_event_new
      []
    end

    def _dispatch_event_push(list, item)
      list.push item
      list
    end

    def on_mlhs_paren(list)
      [:mlhs, *list]
    end

    def on_mlhs_add_star(list, star)
      list.push([:rest_param, star])
    end

    def on_mlhs_add_post(list, post)
      list.concat(post)
    end

    PARSER_EVENT_TABLE.each do |event, arity|
      if /_new\z/ =~ event and arity == 0
        alias_method "on_#{event}", :_dispatch_event_new
      elsif /_add\z/ =~ event
        alias_method "on_#{event}", :_dispatch_event_push
      end
    end
  end

end
PKDH[�w��ppshare/ruby/coverage.rbnu�[���require "coverage.so"

module Coverage
  def self.line_stub(file)
    lines = File.foreach(file).map { nil }
    iseqs = [RubyVM::InstructionSequence.compile_file(file)]
    until iseqs.empty?
      iseq = iseqs.pop
      iseq.trace_points.each {|n, type| lines[n - 1] = 0 if type == :line }
      iseq.each_child {|child| iseqs << child }
    end
    lines
  end
end
PKDH[L��;;share/ruby/optionparser.rbnu�[���# frozen_string_literal: false
require_relative 'optparse'
PKDH[AC.K����share/ruby/socket.rbnu�[���# frozen_string_literal: true

require 'socket.so'
require 'io/wait'

class Addrinfo
  # creates an Addrinfo object from the arguments.
  #
  # The arguments are interpreted as similar to self.
  #
  #   Addrinfo.tcp("0.0.0.0", 4649).family_addrinfo("www.ruby-lang.org", 80)
  #   #=> #<Addrinfo: 221.186.184.68:80 TCP (www.ruby-lang.org:80)>
  #
  #   Addrinfo.unix("/tmp/sock").family_addrinfo("/tmp/sock2")
  #   #=> #<Addrinfo: /tmp/sock2 SOCK_STREAM>
  #
  def family_addrinfo(*args)
    if args.empty?
      raise ArgumentError, "no address specified"
    elsif Addrinfo === args.first
      raise ArgumentError, "too many arguments" if args.length != 1
      addrinfo = args.first
      if (self.pfamily != addrinfo.pfamily) ||
         (self.socktype != addrinfo.socktype)
        raise ArgumentError, "Addrinfo type mismatch"
      end
      addrinfo
    elsif self.ip?
      raise ArgumentError, "IP address needs host and port but #{args.length} arguments given" if args.length != 2
      host, port = args
      Addrinfo.getaddrinfo(host, port, self.pfamily, self.socktype, self.protocol)[0]
    elsif self.unix?
      raise ArgumentError, "UNIX socket needs single path argument but #{args.length} arguments given" if args.length != 1
      path, = args
      Addrinfo.unix(path)
    else
      raise ArgumentError, "unexpected family"
    end
  end

  # creates a new Socket connected to the address of +local_addrinfo+.
  #
  # If _local_addrinfo_ is nil, the address of the socket is not bound.
  #
  # The _timeout_ specify the seconds for timeout.
  # Errno::ETIMEDOUT is raised when timeout occur.
  #
  # If a block is given the created socket is yielded for each address.
  #
  def connect_internal(local_addrinfo, timeout=nil) # :yields: socket
    sock = Socket.new(self.pfamily, self.socktype, self.protocol)
    begin
      sock.ipv6only! if self.ipv6?
      sock.bind local_addrinfo if local_addrinfo
      if timeout
        case sock.connect_nonblock(self, exception: false)
        when 0 # success or EISCONN, other errors raise
          break
        when :wait_writable
          sock.wait_writable(timeout) or
            raise Errno::ETIMEDOUT, 'user specified timeout'
        end while true
      else
        sock.connect(self)
      end
    rescue Exception
      sock.close
      raise
    end
    if block_given?
      begin
        yield sock
      ensure
        sock.close
      end
    else
      sock
    end
  end
  protected :connect_internal

  # :call-seq:
  #   addrinfo.connect_from([local_addr_args], [opts]) {|socket| ... }
  #   addrinfo.connect_from([local_addr_args], [opts])
  #
  # creates a socket connected to the address of self.
  #
  # If one or more arguments given as _local_addr_args_,
  # it is used as the local address of the socket.
  # _local_addr_args_ is given for family_addrinfo to obtain actual address.
  #
  # If _local_addr_args_ is not given, the local address of the socket is not bound.
  #
  # The optional last argument _opts_ is options represented by a hash.
  # _opts_ may have following options:
  #
  # [:timeout] specify the timeout in seconds.
  #
  # If a block is given, it is called with the socket and the value of the block is returned.
  # The socket is returned otherwise.
  #
  #   Addrinfo.tcp("www.ruby-lang.org", 80).connect_from("0.0.0.0", 4649) {|s|
  #     s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  #     puts s.read
  #   }
  #
  #   # Addrinfo object can be taken for the argument.
  #   Addrinfo.tcp("www.ruby-lang.org", 80).connect_from(Addrinfo.tcp("0.0.0.0", 4649)) {|s|
  #     s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  #     puts s.read
  #   }
  #
  def connect_from(*args, timeout: nil, &block)
    connect_internal(family_addrinfo(*args), timeout, &block)
  end

  # :call-seq:
  #   addrinfo.connect([opts]) {|socket| ... }
  #   addrinfo.connect([opts])
  #
  # creates a socket connected to the address of self.
  #
  # The optional argument _opts_ is options represented by a hash.
  # _opts_ may have following options:
  #
  # [:timeout] specify the timeout in seconds.
  #
  # If a block is given, it is called with the socket and the value of the block is returned.
  # The socket is returned otherwise.
  #
  #   Addrinfo.tcp("www.ruby-lang.org", 80).connect {|s|
  #     s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  #     puts s.read
  #   }
  #
  def connect(timeout: nil, &block)
    connect_internal(nil, timeout, &block)
  end

  # :call-seq:
  #   addrinfo.connect_to([remote_addr_args], [opts]) {|socket| ... }
  #   addrinfo.connect_to([remote_addr_args], [opts])
  #
  # creates a socket connected to _remote_addr_args_ and bound to self.
  #
  # The optional last argument _opts_ is options represented by a hash.
  # _opts_ may have following options:
  #
  # [:timeout] specify the timeout in seconds.
  #
  # If a block is given, it is called with the socket and the value of the block is returned.
  # The socket is returned otherwise.
  #
  #   Addrinfo.tcp("0.0.0.0", 4649).connect_to("www.ruby-lang.org", 80) {|s|
  #     s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  #     puts s.read
  #   }
  #
  def connect_to(*args, timeout: nil, &block)
    remote_addrinfo = family_addrinfo(*args)
    remote_addrinfo.connect_internal(self, timeout, &block)
  end

  # creates a socket bound to self.
  #
  # If a block is given, it is called with the socket and the value of the block is returned.
  # The socket is returned otherwise.
  #
  #   Addrinfo.udp("0.0.0.0", 9981).bind {|s|
  #     s.local_address.connect {|s| s.send "hello", 0 }
  #     p s.recv(10) #=> "hello"
  #   }
  #
  def bind
    sock = Socket.new(self.pfamily, self.socktype, self.protocol)
    begin
      sock.ipv6only! if self.ipv6?
      sock.setsockopt(:SOCKET, :REUSEADDR, 1)
      sock.bind(self)
    rescue Exception
      sock.close
      raise
    end
    if block_given?
      begin
        yield sock
      ensure
        sock.close
      end
    else
      sock
    end
  end

  # creates a listening socket bound to self.
  def listen(backlog=Socket::SOMAXCONN)
    sock = Socket.new(self.pfamily, self.socktype, self.protocol)
    begin
      sock.ipv6only! if self.ipv6?
      sock.setsockopt(:SOCKET, :REUSEADDR, 1)
      sock.bind(self)
      sock.listen(backlog)
    rescue Exception
      sock.close
      raise
    end
    if block_given?
      begin
        yield sock
      ensure
        sock.close
      end
    else
      sock
    end
  end

  # iterates over the list of Addrinfo objects obtained by Addrinfo.getaddrinfo.
  #
  #   Addrinfo.foreach(nil, 80) {|x| p x }
  #   #=> #<Addrinfo: 127.0.0.1:80 TCP (:80)>
  #   #   #<Addrinfo: 127.0.0.1:80 UDP (:80)>
  #   #   #<Addrinfo: [::1]:80 TCP (:80)>
  #   #   #<Addrinfo: [::1]:80 UDP (:80)>
  #
  def self.foreach(nodename, service, family=nil, socktype=nil, protocol=nil, flags=nil, timeout: nil, &block)
    Addrinfo.getaddrinfo(nodename, service, family, socktype, protocol, flags, timeout: timeout).each(&block)
  end
end

class BasicSocket < IO
  # Returns an address of the socket suitable for connect in the local machine.
  #
  # This method returns _self_.local_address, except following condition.
  #
  # - IPv4 unspecified address (0.0.0.0) is replaced by IPv4 loopback address (127.0.0.1).
  # - IPv6 unspecified address (::) is replaced by IPv6 loopback address (::1).
  #
  # If the local address is not suitable for connect, SocketError is raised.
  # IPv4 and IPv6 address which port is 0 is not suitable for connect.
  # Unix domain socket which has no path is not suitable for connect.
  #
  #   Addrinfo.tcp("0.0.0.0", 0).listen {|serv|
  #     p serv.connect_address #=> #<Addrinfo: 127.0.0.1:53660 TCP>
  #     serv.connect_address.connect {|c|
  #       s, _ = serv.accept
  #       p [c, s] #=> [#<Socket:fd 4>, #<Socket:fd 6>]
  #     }
  #   }
  #
  def connect_address
    addr = local_address
    afamily = addr.afamily
    if afamily == Socket::AF_INET
      raise SocketError, "unbound IPv4 socket" if addr.ip_port == 0
      if addr.ip_address == "0.0.0.0"
        addr = Addrinfo.new(["AF_INET", addr.ip_port, nil, "127.0.0.1"], addr.pfamily, addr.socktype, addr.protocol)
      end
    elsif defined?(Socket::AF_INET6) && afamily == Socket::AF_INET6
      raise SocketError, "unbound IPv6 socket" if addr.ip_port == 0
      if addr.ip_address == "::"
        addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
      elsif addr.ip_address == "0.0.0.0" # MacOS X 10.4 returns "a.b.c.d" for IPv4-mapped IPv6 address.
        addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
      elsif addr.ip_address == "::ffff:0.0.0.0" # MacOS X 10.6 returns "::ffff:a.b.c.d" for IPv4-mapped IPv6 address.
        addr = Addrinfo.new(["AF_INET6", addr.ip_port, nil, "::1"], addr.pfamily, addr.socktype, addr.protocol)
      end
    elsif defined?(Socket::AF_UNIX) && afamily == Socket::AF_UNIX
      raise SocketError, "unbound Unix socket" if addr.unix_path == ""
    end
    addr
  end

  # call-seq:
  #    basicsocket.sendmsg(mesg, flags=0, dest_sockaddr=nil, *controls) => numbytes_sent
  #
  # sendmsg sends a message using sendmsg(2) system call in blocking manner.
  #
  # _mesg_ is a string to send.
  #
  # _flags_ is bitwise OR of MSG_* constants such as Socket::MSG_OOB.
  #
  # _dest_sockaddr_ is a destination socket address for connection-less socket.
  # It should be a sockaddr such as a result of Socket.sockaddr_in.
  # An Addrinfo object can be used too.
  #
  # _controls_ is a list of ancillary data.
  # The element of _controls_ should be Socket::AncillaryData or
  # 3-elements array.
  # The 3-element array should contains cmsg_level, cmsg_type and data.
  #
  # The return value, _numbytes_sent_ is an integer which is the number of bytes sent.
  #
  # sendmsg can be used to implement send_io as follows:
  #
  #   # use Socket::AncillaryData.
  #   ancdata = Socket::AncillaryData.int(:UNIX, :SOCKET, :RIGHTS, io.fileno)
  #   sock.sendmsg("a", 0, nil, ancdata)
  #
  #   # use 3-element array.
  #   ancdata = [:SOCKET, :RIGHTS, [io.fileno].pack("i!")]
  #   sock.sendmsg("\0", 0, nil, ancdata)
  def sendmsg(mesg, flags = 0, dest_sockaddr = nil, *controls)
    __sendmsg(mesg, flags, dest_sockaddr, controls)
  end

  # call-seq:
  #    basicsocket.sendmsg_nonblock(mesg, flags=0, dest_sockaddr=nil, *controls, opts={}) => numbytes_sent
  #
  # sendmsg_nonblock sends a message using sendmsg(2) system call in non-blocking manner.
  #
  # It is similar to BasicSocket#sendmsg
  # but the non-blocking flag is set before the system call
  # and it doesn't retry the system call.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that sendmsg_nonblock should not raise an IO::WaitWritable exception, but
  # return the symbol +:wait_writable+ instead.
  def sendmsg_nonblock(mesg, flags = 0, dest_sockaddr = nil, *controls,
                       exception: true)
    __sendmsg_nonblock(mesg, flags, dest_sockaddr, controls, exception)
  end

  # call-seq:
  # 	basicsocket.recv_nonblock(maxlen [, flags [, buf [, options ]]]) => mesg
  #
  # Receives up to _maxlen_ bytes from +socket+ using recvfrom(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # _flags_ is zero or more of the +MSG_+ options.
  # The result, _mesg_, is the data received.
  #
  # When recvfrom(2) returns 0, Socket#recv_nonblock returns
  # an empty string as data.
  # The meaning depends on the socket: EOF on TCP, empty packet on UDP, etc.
  #
  # === Parameters
  # * +maxlen+ - the number of bytes to receive from the socket
  # * +flags+ - zero or more of the +MSG_+ options
  # * +buf+ - destination String buffer
  # * +options+ - keyword hash, supporting `exception: false`
  #
  # === Example
  # 	serv = TCPServer.new("127.0.0.1", 0)
  # 	af, port, host, addr = serv.addr
  # 	c = TCPSocket.new(addr, port)
  # 	s = serv.accept
  # 	c.send "aaa", 0
  # 	begin # emulate blocking recv.
  # 	  p s.recv_nonblock(10) #=> "aaa"
  # 	rescue IO::WaitReadable
  # 	  IO.select([s])
  # 	  retry
  # 	end
  #
  # Refer to Socket#recvfrom for the exceptions that may be thrown if the call
  # to _recv_nonblock_ fails.
  #
  # BasicSocket#recv_nonblock may raise any error corresponding to recvfrom(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying recv_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that recv_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * Socket#recvfrom
  def recv_nonblock(len, flag = 0, str = nil, exception: true)
    __recv_nonblock(len, flag, str, exception)
  end

  # call-seq:
  #    basicsocket.recvmsg(maxmesglen=nil, flags=0, maxcontrollen=nil, opts={}) => [mesg, sender_addrinfo, rflags, *controls]
  #
  # recvmsg receives a message using recvmsg(2) system call in blocking manner.
  #
  # _maxmesglen_ is the maximum length of mesg to receive.
  #
  # _flags_ is bitwise OR of MSG_* constants such as Socket::MSG_PEEK.
  #
  # _maxcontrollen_ is the maximum length of controls (ancillary data) to receive.
  #
  # _opts_ is option hash.
  # Currently :scm_rights=>bool is the only option.
  #
  # :scm_rights option specifies that application expects SCM_RIGHTS control message.
  # If the value is nil or false, application don't expects SCM_RIGHTS control message.
  # In this case, recvmsg closes the passed file descriptors immediately.
  # This is the default behavior.
  #
  # If :scm_rights value is neither nil nor false, application expects SCM_RIGHTS control message.
  # In this case, recvmsg creates IO objects for each file descriptors for
  # Socket::AncillaryData#unix_rights method.
  #
  # The return value is 4-elements array.
  #
  # _mesg_ is a string of the received message.
  #
  # _sender_addrinfo_ is a sender socket address for connection-less socket.
  # It is an Addrinfo object.
  # For connection-oriented socket such as TCP, sender_addrinfo is platform dependent.
  #
  # _rflags_ is a flags on the received message which is bitwise OR of MSG_* constants such as Socket::MSG_TRUNC.
  # It will be nil if the system uses 4.3BSD style old recvmsg system call.
  #
  # _controls_ is ancillary data which is an array of Socket::AncillaryData objects such as:
  #
  #   #<Socket::AncillaryData: AF_UNIX SOCKET RIGHTS 7>
  #
  # _maxmesglen_ and _maxcontrollen_ can be nil.
  # In that case, the buffer will be grown until the message is not truncated.
  # Internally, MSG_PEEK is used.
  # Buffer full and MSG_CTRUNC are checked for truncation.
  #
  # recvmsg can be used to implement recv_io as follows:
  #
  #   mesg, sender_sockaddr, rflags, *controls = sock.recvmsg(:scm_rights=>true)
  #   controls.each {|ancdata|
  #     if ancdata.cmsg_is?(:SOCKET, :RIGHTS)
  #       return ancdata.unix_rights[0]
  #     end
  #   }
  def recvmsg(dlen = nil, flags = 0, clen = nil, scm_rights: false)
    __recvmsg(dlen, flags, clen, scm_rights)
  end

  # call-seq:
  #    basicsocket.recvmsg_nonblock(maxdatalen=nil, flags=0, maxcontrollen=nil, opts={}) => [data, sender_addrinfo, rflags, *controls]
  #
  # recvmsg receives a message using recvmsg(2) system call in non-blocking manner.
  #
  # It is similar to BasicSocket#recvmsg
  # but non-blocking flag is set before the system call
  # and it doesn't retry the system call.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that recvmsg_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  def recvmsg_nonblock(dlen = nil, flags = 0, clen = nil,
                       scm_rights: false, exception: true)
    __recvmsg_nonblock(dlen, flags, clen, scm_rights, exception)
  end

  # Linux-specific optimizations to avoid fcntl for IO#read_nonblock
  # and IO#write_nonblock using MSG_DONTWAIT
  # Do other platforms support MSG_DONTWAIT reliably?
  if RUBY_PLATFORM =~ /linux/ && Socket.const_defined?(:MSG_DONTWAIT)
    def read_nonblock(len, str = nil, exception: true) # :nodoc:
      __read_nonblock(len, str, exception)
    end

    def write_nonblock(buf, exception: true) # :nodoc:
      __write_nonblock(buf, exception)
    end
  end
end

class Socket < BasicSocket
  # enable the socket option IPV6_V6ONLY if IPV6_V6ONLY is available.
  def ipv6only!
    if defined? Socket::IPV6_V6ONLY
      self.setsockopt(:IPV6, :V6ONLY, 1)
    end
  end

  # call-seq:
  #   socket.recvfrom_nonblock(maxlen[, flags[, outbuf[, opts]]]) => [mesg, sender_addrinfo]
  #
  # Receives up to _maxlen_ bytes from +socket+ using recvfrom(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # _flags_ is zero or more of the +MSG_+ options.
  # The first element of the results, _mesg_, is the data received.
  # The second element, _sender_addrinfo_, contains protocol-specific address
  # information of the sender.
  #
  # When recvfrom(2) returns 0, Socket#recvfrom_nonblock returns
  # an empty string as data.
  # The meaning depends on the socket: EOF on TCP, empty packet on UDP, etc.
  #
  # === Parameters
  # * +maxlen+ - the maximum number of bytes to receive from the socket
  # * +flags+ - zero or more of the +MSG_+ options
  # * +outbuf+ - destination String buffer
  # * +opts+ - keyword hash, supporting `exception: false`
  #
  # === Example
  #   # In one file, start this first
  #   require 'socket'
  #   include Socket::Constants
  #   socket = Socket.new(AF_INET, SOCK_STREAM, 0)
  #   sockaddr = Socket.sockaddr_in(2200, 'localhost')
  #   socket.bind(sockaddr)
  #   socket.listen(5)
  #   client, client_addrinfo = socket.accept
  #   begin # emulate blocking recvfrom
  #     pair = client.recvfrom_nonblock(20)
  #   rescue IO::WaitReadable
  #     IO.select([client])
  #     retry
  #   end
  #   data = pair[0].chomp
  #   puts "I only received 20 bytes '#{data}'"
  #   sleep 1
  #   socket.close
  #
  #   # In another file, start this second
  #   require 'socket'
  #   include Socket::Constants
  #   socket = Socket.new(AF_INET, SOCK_STREAM, 0)
  #   sockaddr = Socket.sockaddr_in(2200, 'localhost')
  #   socket.connect(sockaddr)
  #   socket.puts "Watch this get cut short!"
  #   socket.close
  #
  # Refer to Socket#recvfrom for the exceptions that may be thrown if the call
  # to _recvfrom_nonblock_ fails.
  #
  # Socket#recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying
  # recvfrom_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that recvfrom_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * Socket#recvfrom
  def recvfrom_nonblock(len, flag = 0, str = nil, exception: true)
    __recvfrom_nonblock(len, flag, str, exception)
  end

  # call-seq:
  #   socket.accept_nonblock([options]) => [client_socket, client_addrinfo]
  #
  # Accepts an incoming connection using accept(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # It returns an array containing the accepted socket
  # for the incoming connection, _client_socket_,
  # and an Addrinfo, _client_addrinfo_.
  #
  # === Example
  #   # In one script, start this first
  #   require 'socket'
  #   include Socket::Constants
  #   socket = Socket.new(AF_INET, SOCK_STREAM, 0)
  #   sockaddr = Socket.sockaddr_in(2200, 'localhost')
  #   socket.bind(sockaddr)
  #   socket.listen(5)
  #   begin # emulate blocking accept
  #     client_socket, client_addrinfo = socket.accept_nonblock
  #   rescue IO::WaitReadable, Errno::EINTR
  #     IO.select([socket])
  #     retry
  #   end
  #   puts "The client said, '#{client_socket.readline.chomp}'"
  #   client_socket.puts "Hello from script one!"
  #   socket.close
  #
  #   # In another script, start this second
  #   require 'socket'
  #   include Socket::Constants
  #   socket = Socket.new(AF_INET, SOCK_STREAM, 0)
  #   sockaddr = Socket.sockaddr_in(2200, 'localhost')
  #   socket.connect(sockaddr)
  #   socket.puts "Hello from script 2."
  #   puts "The server said, '#{socket.readline.chomp}'"
  #   socket.close
  #
  # Refer to Socket#accept for the exceptions that may be thrown if the call
  # to _accept_nonblock_ fails.
  #
  # Socket#accept_nonblock may raise any error corresponding to accept(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED or Errno::EPROTO,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that accept_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * Socket#accept
  def accept_nonblock(exception: true)
    __accept_nonblock(exception)
  end

  # :call-seq:
  #   Socket.tcp(host, port, local_host=nil, local_port=nil, [opts]) {|socket| ... }
  #   Socket.tcp(host, port, local_host=nil, local_port=nil, [opts])
  #
  # creates a new socket object connected to host:port using TCP/IP.
  #
  # If local_host:local_port is given,
  # the socket is bound to it.
  #
  # The optional last argument _opts_ is options represented by a hash.
  # _opts_ may have following options:
  #
  # [:connect_timeout] specify the timeout in seconds.
  # [:resolv_timeout] specify the name resolution timeout in seconds.
  #
  # If a block is given, the block is called with the socket.
  # The value of the block is returned.
  # The socket is closed when this method returns.
  #
  # If no block is given, the socket is returned.
  #
  #   Socket.tcp("www.ruby-lang.org", 80) {|sock|
  #     sock.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  #     sock.close_write
  #     puts sock.read
  #   }
  #
  def self.tcp(host, port, local_host = nil, local_port = nil, connect_timeout: nil, resolv_timeout: nil) # :yield: socket
    last_error = nil
    ret = nil

    local_addr_list = nil
    if local_host != nil || local_port != nil
      local_addr_list = Addrinfo.getaddrinfo(local_host, local_port, nil, :STREAM, nil)
    end

    Addrinfo.foreach(host, port, nil, :STREAM, timeout: resolv_timeout) {|ai|
      if local_addr_list
        local_addr = local_addr_list.find {|local_ai| local_ai.afamily == ai.afamily }
        next unless local_addr
      else
        local_addr = nil
      end
      begin
        sock = local_addr ?
          ai.connect_from(local_addr, timeout: connect_timeout) :
          ai.connect(timeout: connect_timeout)
      rescue SystemCallError
        last_error = $!
        next
      end
      ret = sock
      break
    }
    unless ret
      if last_error
        raise last_error
      else
        raise SocketError, "no appropriate local address"
      end
    end
    if block_given?
      begin
        yield ret
      ensure
        ret.close
      end
    else
      ret
    end
  end

  # :stopdoc:
  def self.ip_sockets_port0(ai_list, reuseaddr)
    sockets = []
    begin
      sockets.clear
      port = nil
      ai_list.each {|ai|
        begin
          s = Socket.new(ai.pfamily, ai.socktype, ai.protocol)
        rescue SystemCallError
          next
        end
        sockets << s
        s.ipv6only! if ai.ipv6?
        if reuseaddr
          s.setsockopt(:SOCKET, :REUSEADDR, 1)
        end
        unless port
          s.bind(ai)
          port = s.local_address.ip_port
        else
          s.bind(ai.family_addrinfo(ai.ip_address, port))
        end
      }
    rescue Errno::EADDRINUSE
      sockets.each(&:close)
      retry
    rescue Exception
      sockets.each(&:close)
      raise
    end
    sockets
  end
  class << self
    private :ip_sockets_port0
  end

  def self.tcp_server_sockets_port0(host)
    ai_list = Addrinfo.getaddrinfo(host, 0, nil, :STREAM, nil, Socket::AI_PASSIVE)
    sockets = ip_sockets_port0(ai_list, true)
    begin
      sockets.each {|s|
        s.listen(Socket::SOMAXCONN)
      }
    rescue Exception
      sockets.each(&:close)
      raise
    end
    sockets
  end
  class << self
    private :tcp_server_sockets_port0
  end
  # :startdoc:

  # creates TCP/IP server sockets for _host_ and _port_.
  # _host_ is optional.
  #
  # If no block given,
  # it returns an array of listening sockets.
  #
  # If a block is given, the block is called with the sockets.
  # The value of the block is returned.
  # The socket is closed when this method returns.
  #
  # If _port_ is 0, actual port number is chosen dynamically.
  # However all sockets in the result has same port number.
  #
  #   # tcp_server_sockets returns two sockets.
  #   sockets = Socket.tcp_server_sockets(1296)
  #   p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
  #
  #   # The sockets contains IPv6 and IPv4 sockets.
  #   sockets.each {|s| p s.local_address }
  #   #=> #<Addrinfo: [::]:1296 TCP>
  #   #   #<Addrinfo: 0.0.0.0:1296 TCP>
  #
  #   # IPv6 and IPv4 socket has same port number, 53114, even if it is chosen dynamically.
  #   sockets = Socket.tcp_server_sockets(0)
  #   sockets.each {|s| p s.local_address }
  #   #=> #<Addrinfo: [::]:53114 TCP>
  #   #   #<Addrinfo: 0.0.0.0:53114 TCP>
  #
  #   # The block is called with the sockets.
  #   Socket.tcp_server_sockets(0) {|sockets|
  #     p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
  #   }
  #
  def self.tcp_server_sockets(host=nil, port)
    if port == 0
      sockets = tcp_server_sockets_port0(host)
    else
      last_error = nil
      sockets = []
      begin
        Addrinfo.foreach(host, port, nil, :STREAM, nil, Socket::AI_PASSIVE) {|ai|
          begin
            s = ai.listen
          rescue SystemCallError
            last_error = $!
            next
          end
          sockets << s
        }
        if sockets.empty?
          raise last_error
        end
      rescue Exception
        sockets.each(&:close)
        raise
      end
    end
    if block_given?
      begin
        yield sockets
      ensure
        sockets.each(&:close)
      end
    else
      sockets
    end
  end

  # yield socket and client address for each a connection accepted via given sockets.
  #
  # The arguments are a list of sockets.
  # The individual argument should be a socket or an array of sockets.
  #
  # This method yields the block sequentially.
  # It means that the next connection is not accepted until the block returns.
  # So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
  #
  def self.accept_loop(*sockets) # :yield: socket, client_addrinfo
    sockets.flatten!(1)
    if sockets.empty?
      raise ArgumentError, "no sockets"
    end
    loop {
      readable, _, _ = IO.select(sockets)
      readable.each {|r|
        sock, addr = r.accept_nonblock(exception: false)
        next if sock == :wait_readable
        yield sock, addr
      }
    }
  end

  # creates a TCP/IP server on _port_ and calls the block for each connection accepted.
  # The block is called with a socket and a client_address as an Addrinfo object.
  #
  # If _host_ is specified, it is used with _port_ to determine the server addresses.
  #
  # The socket is *not* closed when the block returns.
  # So application should close it explicitly.
  #
  # This method calls the block sequentially.
  # It means that the next connection is not accepted until the block returns.
  # So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
  #
  # Note that Addrinfo.getaddrinfo is used to determine the server socket addresses.
  # When Addrinfo.getaddrinfo returns two or more addresses,
  # IPv4 and IPv6 address for example,
  # all of them are used.
  # Socket.tcp_server_loop succeeds if one socket can be used at least.
  #
  #   # Sequential echo server.
  #   # It services only one client at a time.
  #   Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
  #     begin
  #       IO.copy_stream(sock, sock)
  #     ensure
  #       sock.close
  #     end
  #   }
  #
  #   # Threaded echo server
  #   # It services multiple clients at a time.
  #   # Note that it may accept connections too much.
  #   Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
  #     Thread.new {
  #       begin
  #         IO.copy_stream(sock, sock)
  #       ensure
  #         sock.close
  #       end
  #     }
  #   }
  #
  def self.tcp_server_loop(host=nil, port, &b) # :yield: socket, client_addrinfo
    tcp_server_sockets(host, port) {|sockets|
      accept_loop(sockets, &b)
    }
  end

  # :call-seq:
  #   Socket.udp_server_sockets([host, ] port)
  #
  # Creates UDP/IP sockets for a UDP server.
  #
  # If no block given, it returns an array of sockets.
  #
  # If a block is given, the block is called with the sockets.
  # The value of the block is returned.
  # The sockets are closed when this method returns.
  #
  # If _port_ is zero, some port is chosen.
  # But the chosen port is used for the all sockets.
  #
  #   # UDP/IP echo server
  #   Socket.udp_server_sockets(0) {|sockets|
  #     p sockets.first.local_address.ip_port     #=> 32963
  #     Socket.udp_server_loop_on(sockets) {|msg, msg_src|
  #       msg_src.reply msg
  #     }
  #   }
  #
  def self.udp_server_sockets(host=nil, port)
    last_error = nil
    sockets = []

    ipv6_recvpktinfo = nil
    if defined? Socket::AncillaryData
      if defined? Socket::IPV6_RECVPKTINFO # RFC 3542
        ipv6_recvpktinfo = Socket::IPV6_RECVPKTINFO
      elsif defined? Socket::IPV6_PKTINFO # RFC 2292
        ipv6_recvpktinfo = Socket::IPV6_PKTINFO
      end
    end

    local_addrs = Socket.ip_address_list

    ip_list = []
    Addrinfo.foreach(host, port, nil, :DGRAM, nil, Socket::AI_PASSIVE) {|ai|
      if ai.ipv4? && ai.ip_address == "0.0.0.0"
        local_addrs.each {|a|
          next unless a.ipv4?
          ip_list << Addrinfo.new(a.to_sockaddr, :INET, :DGRAM, 0);
        }
      elsif ai.ipv6? && ai.ip_address == "::" && !ipv6_recvpktinfo
        local_addrs.each {|a|
          next unless a.ipv6?
          ip_list << Addrinfo.new(a.to_sockaddr, :INET6, :DGRAM, 0);
        }
      else
        ip_list << ai
      end
    }
    ip_list.uniq!(&:to_sockaddr)

    if port == 0
      sockets = ip_sockets_port0(ip_list, false)
    else
      ip_list.each {|ip|
        ai = Addrinfo.udp(ip.ip_address, port)
        begin
          s = ai.bind
        rescue SystemCallError
          last_error = $!
          next
        end
        sockets << s
      }
      if sockets.empty?
        raise last_error
      end
    end

    sockets.each {|s|
      ai = s.local_address
      if ipv6_recvpktinfo && ai.ipv6? && ai.ip_address == "::"
        s.setsockopt(:IPV6, ipv6_recvpktinfo, 1)
      end
    }

    if block_given?
      begin
        yield sockets
      ensure
        sockets.each(&:close) if sockets
      end
    else
      sockets
    end
  end

  # :call-seq:
  #   Socket.udp_server_recv(sockets) {|msg, msg_src| ... }
  #
  # Receive UDP/IP packets from the given _sockets_.
  # For each packet received, the block is called.
  #
  # The block receives _msg_ and _msg_src_.
  # _msg_ is a string which is the payload of the received packet.
  # _msg_src_ is a Socket::UDPSource object which is used for reply.
  #
  # Socket.udp_server_loop can be implemented using this method as follows.
  #
  #   udp_server_sockets(host, port) {|sockets|
  #     loop {
  #       readable, _, _ = IO.select(sockets)
  #       udp_server_recv(readable) {|msg, msg_src| ... }
  #     }
  #   }
  #
  def self.udp_server_recv(sockets)
    sockets.each {|r|
      msg, sender_addrinfo, _, *controls = r.recvmsg_nonblock(exception: false)
      next if msg == :wait_readable
      ai = r.local_address
      if ai.ipv6? and pktinfo = controls.find {|c| c.cmsg_is?(:IPV6, :PKTINFO) }
        ai = Addrinfo.udp(pktinfo.ipv6_pktinfo_addr.ip_address, ai.ip_port)
        yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg|
          r.sendmsg reply_msg, 0, sender_addrinfo, pktinfo
        }
      else
        yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg|
          r.send reply_msg, 0, sender_addrinfo
        }
      end
    }
  end

  # :call-seq:
  #   Socket.udp_server_loop_on(sockets) {|msg, msg_src| ... }
  #
  # Run UDP/IP server loop on the given sockets.
  #
  # The return value of Socket.udp_server_sockets is appropriate for the argument.
  #
  # It calls the block for each message received.
  #
  def self.udp_server_loop_on(sockets, &b) # :yield: msg, msg_src
    loop {
      readable, _, _ = IO.select(sockets)
      udp_server_recv(readable, &b)
    }
  end

  # :call-seq:
  #   Socket.udp_server_loop(port) {|msg, msg_src| ... }
  #   Socket.udp_server_loop(host, port) {|msg, msg_src| ... }
  #
  # creates a UDP/IP server on _port_ and calls the block for each message arrived.
  # The block is called with the message and its source information.
  #
  # This method allocates sockets internally using _port_.
  # If _host_ is specified, it is used conjunction with _port_ to determine the server addresses.
  #
  # The _msg_ is a string.
  #
  # The _msg_src_ is a Socket::UDPSource object.
  # It is used for reply.
  #
  #   # UDP/IP echo server.
  #   Socket.udp_server_loop(9261) {|msg, msg_src|
  #     msg_src.reply msg
  #   }
  #
  def self.udp_server_loop(host=nil, port, &b) # :yield: message, message_source
    udp_server_sockets(host, port) {|sockets|
      udp_server_loop_on(sockets, &b)
    }
  end

  # UDP/IP address information used by Socket.udp_server_loop.
  class UDPSource
    # +remote_address+ is an Addrinfo object.
    #
    # +local_address+ is an Addrinfo object.
    #
    # +reply_proc+ is a Proc used to send reply back to the source.
    def initialize(remote_address, local_address, &reply_proc)
      @remote_address = remote_address
      @local_address = local_address
      @reply_proc = reply_proc
    end

    # Address of the source
    attr_reader :remote_address

    # Local address
    attr_reader :local_address

    def inspect # :nodoc:
      "\#<#{self.class}: #{@remote_address.inspect_sockaddr} to #{@local_address.inspect_sockaddr}>".dup
    end

    # Sends the String +msg+ to the source
    def reply(msg)
      @reply_proc.call msg
    end
  end

  # creates a new socket connected to path using UNIX socket socket.
  #
  # If a block is given, the block is called with the socket.
  # The value of the block is returned.
  # The socket is closed when this method returns.
  #
  # If no block is given, the socket is returned.
  #
  #   # talk to /tmp/sock socket.
  #   Socket.unix("/tmp/sock") {|sock|
  #     t = Thread.new { IO.copy_stream(sock, STDOUT) }
  #     IO.copy_stream(STDIN, sock)
  #     t.join
  #   }
  #
  def self.unix(path) # :yield: socket
    addr = Addrinfo.unix(path)
    sock = addr.connect
    if block_given?
      begin
        yield sock
      ensure
        sock.close
      end
    else
      sock
    end
  end

  # creates a UNIX server socket on _path_
  #
  # If no block given, it returns a listening socket.
  #
  # If a block is given, it is called with the socket and the block value is returned.
  # When the block exits, the socket is closed and the socket file is removed.
  #
  #   socket = Socket.unix_server_socket("/tmp/s")
  #   p socket                  #=> #<Socket:fd 3>
  #   p socket.local_address    #=> #<Addrinfo: /tmp/s SOCK_STREAM>
  #
  #   Socket.unix_server_socket("/tmp/sock") {|s|
  #     p s                     #=> #<Socket:fd 3>
  #     p s.local_address       #=> # #<Addrinfo: /tmp/sock SOCK_STREAM>
  #   }
  #
  def self.unix_server_socket(path)
    unless unix_socket_abstract_name?(path)
      begin
        st = File.lstat(path)
      rescue Errno::ENOENT
      end
      if st&.socket? && st.owned?
        File.unlink path
      end
    end
    s = Addrinfo.unix(path).listen
    if block_given?
      begin
        yield s
      ensure
        s.close
        unless unix_socket_abstract_name?(path)
          File.unlink path
        end
      end
    else
      s
    end
  end

  class << self
    private

    def unix_socket_abstract_name?(path)
      /linux/ =~ RUBY_PLATFORM && /\A(\0|\z)/ =~ path
    end
  end

  # creates a UNIX socket server on _path_.
  # It calls the block for each socket accepted.
  #
  # If _host_ is specified, it is used with _port_ to determine the server ports.
  #
  # The socket is *not* closed when the block returns.
  # So application should close it.
  #
  # This method deletes the socket file pointed by _path_ at first if
  # the file is a socket file and it is owned by the user of the application.
  # This is safe only if the directory of _path_ is not changed by a malicious user.
  # So don't use /tmp/malicious-users-directory/socket.
  # Note that /tmp/socket and /tmp/your-private-directory/socket is safe assuming that /tmp has sticky bit.
  #
  #   # Sequential echo server.
  #   # It services only one client at a time.
  #   Socket.unix_server_loop("/tmp/sock") {|sock, client_addrinfo|
  #     begin
  #       IO.copy_stream(sock, sock)
  #     ensure
  #       sock.close
  #     end
  #   }
  #
  def self.unix_server_loop(path, &b) # :yield: socket, client_addrinfo
    unix_server_socket(path) {|serv|
      accept_loop(serv, &b)
    }
  end

  # call-seq:
  #   socket.connect_nonblock(remote_sockaddr, [options]) => 0
  #
  # Requests a connection to be made on the given +remote_sockaddr+ after
  # O_NONBLOCK is set for the underlying file descriptor.
  # Returns 0 if successful, otherwise an exception is raised.
  #
  # === Parameter
  #  # +remote_sockaddr+ - the +struct+ sockaddr contained in a string or Addrinfo object
  #
  # === Example:
  #   # Pull down Google's web page
  #   require 'socket'
  #   include Socket::Constants
  #   socket = Socket.new(AF_INET, SOCK_STREAM, 0)
  #   sockaddr = Socket.sockaddr_in(80, 'www.google.com')
  #   begin # emulate blocking connect
  #     socket.connect_nonblock(sockaddr)
  #   rescue IO::WaitWritable
  #     IO.select(nil, [socket]) # wait 3-way handshake completion
  #     begin
  #       socket.connect_nonblock(sockaddr) # check connection failure
  #     rescue Errno::EISCONN
  #     end
  #   end
  #   socket.write("GET / HTTP/1.0\r\n\r\n")
  #   results = socket.read
  #
  # Refer to Socket#connect for the exceptions that may be thrown if the call
  # to _connect_nonblock_ fails.
  #
  # Socket#connect_nonblock may raise any error corresponding to connect(2) failure,
  # including Errno::EINPROGRESS.
  #
  # If the exception is Errno::EINPROGRESS,
  # it is extended by IO::WaitWritable.
  # So IO::WaitWritable can be used to rescue the exceptions for retrying connect_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that connect_nonblock should not raise an IO::WaitWritable exception, but
  # return the symbol +:wait_writable+ instead.
  #
  # === See
  #  # Socket#connect
  def connect_nonblock(addr, exception: true)
    __connect_nonblock(addr, exception)
  end
end

class UDPSocket < IPSocket

  # call-seq:
  #   udpsocket.recvfrom_nonblock(maxlen [, flags[, outbuf [, options]]]) => [mesg, sender_inet_addr]
  #
  # Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # _flags_ is zero or more of the +MSG_+ options.
  # The first element of the results, _mesg_, is the data received.
  # The second element, _sender_inet_addr_, is an array to represent the sender address.
  #
  # When recvfrom(2) returns 0,
  # Socket#recvfrom_nonblock returns an empty string as data.
  # It means an empty packet.
  #
  # === Parameters
  # * +maxlen+ - the number of bytes to receive from the socket
  # * +flags+ - zero or more of the +MSG_+ options
  # * +outbuf+ - destination String buffer
  # * +options+ - keyword hash, supporting `exception: false`
  #
  # === Example
  # 	require 'socket'
  # 	s1 = UDPSocket.new
  # 	s1.bind("127.0.0.1", 0)
  # 	s2 = UDPSocket.new
  # 	s2.bind("127.0.0.1", 0)
  # 	s2.connect(*s1.addr.values_at(3,1))
  # 	s1.connect(*s2.addr.values_at(3,1))
  # 	s1.send "aaa", 0
  # 	begin # emulate blocking recvfrom
  # 	  p s2.recvfrom_nonblock(10)  #=> ["aaa", ["AF_INET", 33302, "localhost.localdomain", "127.0.0.1"]]
  # 	rescue IO::WaitReadable
  # 	  IO.select([s2])
  # 	  retry
  # 	end
  #
  # Refer to Socket#recvfrom for the exceptions that may be thrown if the call
  # to _recvfrom_nonblock_ fails.
  #
  # UDPSocket#recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying recvfrom_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that recvfrom_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * Socket#recvfrom
  def recvfrom_nonblock(len, flag = 0, outbuf = nil, exception: true)
    __recvfrom_nonblock(len, flag, outbuf, exception)
  end
end

class TCPServer < TCPSocket

  # call-seq:
  #   tcpserver.accept_nonblock([options]) => tcpsocket
  #
  # Accepts an incoming connection using accept(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # It returns an accepted TCPSocket for the incoming connection.
  #
  # === Example
  # 	require 'socket'
  # 	serv = TCPServer.new(2202)
  # 	begin # emulate blocking accept
  # 	  sock = serv.accept_nonblock
  # 	rescue IO::WaitReadable, Errno::EINTR
  # 	  IO.select([serv])
  # 	  retry
  # 	end
  # 	# sock is an accepted socket.
  #
  # Refer to Socket#accept for the exceptions that may be thrown if the call
  # to TCPServer#accept_nonblock fails.
  #
  # TCPServer#accept_nonblock may raise any error corresponding to accept(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED, Errno::EPROTO,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that accept_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * TCPServer#accept
  # * Socket#accept
  def accept_nonblock(exception: true)
    __accept_nonblock(exception)
  end
end

class UNIXServer < UNIXSocket
  # call-seq:
  #   unixserver.accept_nonblock([options]) => unixsocket
  #
  # Accepts an incoming connection using accept(2) after
  # O_NONBLOCK is set for the underlying file descriptor.
  # It returns an accepted UNIXSocket for the incoming connection.
  #
  # === Example
  # 	require 'socket'
  # 	serv = UNIXServer.new("/tmp/sock")
  # 	begin # emulate blocking accept
  # 	  sock = serv.accept_nonblock
  # 	rescue IO::WaitReadable, Errno::EINTR
  # 	  IO.select([serv])
  # 	  retry
  # 	end
  # 	# sock is an accepted socket.
  #
  # Refer to Socket#accept for the exceptions that may be thrown if the call
  # to UNIXServer#accept_nonblock fails.
  #
  # UNIXServer#accept_nonblock may raise any error corresponding to accept(2) failure,
  # including Errno::EWOULDBLOCK.
  #
  # If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED or Errno::EPROTO,
  # it is extended by IO::WaitReadable.
  # So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
  #
  # By specifying a keyword argument _exception_ to +false+, you can indicate
  # that accept_nonblock should not raise an IO::WaitReadable exception, but
  # return the symbol +:wait_readable+ instead.
  #
  # === See
  # * UNIXServer#accept
  # * Socket#accept
  def accept_nonblock(exception: true)
    __accept_nonblock(exception)
  end
end if defined?(UNIXSocket)
PKDH[~*�kk!share/ruby/forwardable/version.rbnu�[���module Forwardable
  # Version of +forwardable.rb+
  VERSION = "1.3.1"
  FORWARDABLE_VERSION = VERSION
end
PKDH[�_�s--share/ruby/forwardable/impl.rbnu�[���# :stopdoc:
module Forwardable
  def self._valid_method?(method)
    catch {|tag|
      eval("BEGIN{throw tag}; ().#{method}", binding, __FILE__, __LINE__)
    }
  rescue SyntaxError
    false
  else
    true
  end

  def self._compile_method(src, file, line)
    eval(src, nil, file, line)
  end
end
PKDH[a��share/ruby/monitor.rbnu�[���# frozen_string_literal: false
# = monitor.rb
#
# Copyright (C) 2001  Shugo Maeda <shugo@ruby-lang.org>
#
# This library is distributed under the terms of the Ruby license.
# You can freely distribute/modify this library.
#

#
# In concurrent programming, a monitor is an object or module intended to be
# used safely by more than one thread.  The defining characteristic of a
# monitor is that its methods are executed with mutual exclusion.  That is, at
# each point in time, at most one thread may be executing any of its methods.
# This mutual exclusion greatly simplifies reasoning about the implementation
# of monitors compared to reasoning about parallel code that updates a data
# structure.
#
# You can read more about the general principles on the Wikipedia page for
# Monitors[http://en.wikipedia.org/wiki/Monitor_%28synchronization%29]
#
# == Examples
#
# === Simple object.extend
#
#   require 'monitor.rb'
#
#   buf = []
#   buf.extend(MonitorMixin)
#   empty_cond = buf.new_cond
#
#   # consumer
#   Thread.start do
#     loop do
#       buf.synchronize do
#         empty_cond.wait_while { buf.empty? }
#         print buf.shift
#       end
#     end
#   end
#
#   # producer
#   while line = ARGF.gets
#     buf.synchronize do
#       buf.push(line)
#       empty_cond.signal
#     end
#   end
#
# The consumer thread waits for the producer thread to push a line to buf
# while <tt>buf.empty?</tt>.  The producer thread (main thread) reads a
# line from ARGF and pushes it into buf then calls <tt>empty_cond.signal</tt>
# to notify the consumer thread of new data.
#
# === Simple Class include
#
#   require 'monitor'
#
#   class SynchronizedArray < Array
#
#     include MonitorMixin
#
#     def initialize(*args)
#       super(*args)
#     end
#
#     alias :old_shift :shift
#     alias :old_unshift :unshift
#
#     def shift(n=1)
#       self.synchronize do
#         self.old_shift(n)
#       end
#     end
#
#     def unshift(item)
#       self.synchronize do
#         self.old_unshift(item)
#       end
#     end
#
#     # other methods ...
#   end
#
# +SynchronizedArray+ implements an Array with synchronized access to items.
# This Class is implemented as subclass of Array which includes the
# MonitorMixin module.
#

require 'monitor.so'

module MonitorMixin
  #
  # FIXME: This isn't documented in Nutshell.
  #
  # Since MonitorMixin.new_cond returns a ConditionVariable, and the example
  # above calls while_wait and signal, this class should be documented.
  #
  class ConditionVariable
    #
    # Releases the lock held in the associated monitor and waits; reacquires the lock on wakeup.
    #
    # If +timeout+ is given, this method returns after +timeout+ seconds passed,
    # even if no other thread doesn't signal.
    #
    def wait(timeout = nil)
      @monitor.mon_check_owner
      @monitor.wait_for_cond(@cond, timeout)
    end

    #
    # Calls wait repeatedly while the given block yields a truthy value.
    #
    def wait_while
      while yield
        wait
      end
    end

    #
    # Calls wait repeatedly until the given block yields a truthy value.
    #
    def wait_until
      until yield
        wait
      end
    end

    #
    # Wakes up the first thread in line waiting for this lock.
    #
    def signal
      @monitor.mon_check_owner
      @cond.signal
    end

    #
    # Wakes up all threads waiting for this lock.
    #
    def broadcast
      @monitor.mon_check_owner
      @cond.broadcast
    end

    private

    def initialize(monitor)
      @monitor = monitor
      @cond = Thread::ConditionVariable.new
    end
  end

  def self.extend_object(obj)
    super(obj)
    obj.__send__(:mon_initialize)
  end

  #
  # Attempts to enter exclusive section.  Returns +false+ if lock fails.
  #
  def mon_try_enter
    @mon_data.try_enter
  end
  # For backward compatibility
  alias try_mon_enter mon_try_enter

  #
  # Enters exclusive section.
  #
  def mon_enter
    @mon_data.enter
  end

  #
  # Leaves exclusive section.
  #
  def mon_exit
    mon_check_owner
    @mon_data.exit
  end

  #
  # Returns true if this monitor is locked by any thread
  #
  def mon_locked?
    @mon_data.mon_locked?
  end

  #
  # Returns true if this monitor is locked by current thread.
  #
  def mon_owned?
    @mon_data.mon_owned?
  end

  #
  # Enters exclusive section and executes the block.  Leaves the exclusive
  # section automatically when the block exits.  See example under
  # +MonitorMixin+.
  #
  def mon_synchronize(&b)
    @mon_data.synchronize(&b)
  end
  alias synchronize mon_synchronize

  #
  # Creates a new MonitorMixin::ConditionVariable associated with the
  # Monitor object.
  #
  def new_cond
    unless defined?(@mon_data)
      mon_initialize
      @mon_initialized_by_new_cond = true
    end
    return ConditionVariable.new(@mon_data)
  end

  private

  # Use <tt>extend MonitorMixin</tt> or <tt>include MonitorMixin</tt> instead
  # of this constructor.  Have look at the examples above to understand how to
  # use this module.
  def initialize(*args)
    super
    mon_initialize
  end

  # Initializes the MonitorMixin after being included in a class or when an
  # object has been extended with the MonitorMixin
  def mon_initialize
    if defined?(@mon_data)
      if defined?(@mon_initialized_by_new_cond)
        return # already initalized.
      elsif @mon_data_owner_object_id == self.object_id
        raise ThreadError, "already initialized"
      end
    end
    @mon_data = ::Monitor.new
    @mon_data_owner_object_id = self.object_id
  end

  def mon_check_owner
    @mon_data.mon_check_owner
  end
end

# Use the Monitor class when you want to have a lock object for blocks with
# mutual exclusion.
#
#   require 'monitor'
#
#   lock = Monitor.new
#   lock.synchronize do
#     # exclusive access
#   end
#
class Monitor
  def new_cond
    ::MonitorMixin::ConditionVariable.new(self)
  end

  # for compatibility
  alias try_mon_enter try_enter
  alias mon_try_enter try_enter
  alias mon_enter enter
  alias mon_exit exit
  alias mon_synchronize synchronize
end

# Documentation comments:
#  - All documentation comes from Nutshell.
#  - MonitorMixin.new_cond appears in the example, but is not documented in
#    Nutshell.
#  - All the internals (internal modules Accessible and Initializable, class
#    ConditionVariable) appear in RDoc.  It might be good to hide them, by
#    making them private, or marking them :nodoc:, etc.
#  - RDoc doesn't recognise aliases, so we have mon_synchronize documented, but
#    not synchronize.
#  - mon_owner is in Nutshell, but appears as an accessor in a separate module
#    here, so is hard/impossible to RDoc.  Some other useful accessors
#    (mon_count and some queue stuff) are also in this module, and don't appear
#    directly in the RDoc output.
#  - in short, it may be worth changing the code layout in this file to make the
#    documentation easier
PKDH[h
&�=�=share/ruby/getoptlong.rbnu�[���# frozen_string_literal: true
#
# GetoptLong for Ruby
#
# Copyright (C) 1998, 1999, 2000  Motoyuki Kasahara.
#
# You may redistribute and/or modify this library under the same license
# terms as Ruby.
#
# See GetoptLong for documentation.
#
# Additional documents and the latest version of `getoptlong.rb' can be
# found at http://www.sra.co.jp/people/m-kasahr/ruby/getoptlong/

# The GetoptLong class allows you to parse command line options similarly to
# the GNU getopt_long() C library call. Note, however, that GetoptLong is a
# pure Ruby implementation.
#
# GetoptLong allows for POSIX-style options like <tt>--file</tt> as well
# as single letter options like <tt>-f</tt>
#
# The empty option <tt>--</tt> (two minus symbols) is used to end option
# processing. This can be particularly important if options have optional
# arguments.
#
# Here is a simple example of usage:
#
#     require 'getoptlong'
#
#     opts = GetoptLong.new(
#       [ '--help', '-h', GetoptLong::NO_ARGUMENT ],
#       [ '--repeat', '-n', GetoptLong::REQUIRED_ARGUMENT ],
#       [ '--name', GetoptLong::OPTIONAL_ARGUMENT ]
#     )
#
#     dir = nil
#     name = nil
#     repetitions = 1
#     opts.each do |opt, arg|
#       case opt
#         when '--help'
#           puts <<-EOF
#     hello [OPTION] ... DIR
#
#     -h, --help:
#        show help
#
#     --repeat x, -n x:
#        repeat x times
#
#     --name [name]:
#        greet user by name, if name not supplied default is John
#
#     DIR: The directory in which to issue the greeting.
#           EOF
#         when '--repeat'
#           repetitions = arg.to_i
#         when '--name'
#           if arg == ''
#             name = 'John'
#           else
#             name = arg
#           end
#       end
#     end
#
#     if ARGV.length != 1
#       puts "Missing dir argument (try --help)"
#       exit 0
#     end
#
#     dir = ARGV.shift
#
#     Dir.chdir(dir)
#     for i in (1..repetitions)
#       print "Hello"
#       if name
#         print ", #{name}"
#       end
#       puts
#     end
#
# Example command line:
#
#     hello -n 6 --name -- /tmp
#
class GetoptLong
  #
  # Orderings.
  #
  ORDERINGS = [REQUIRE_ORDER = 0, PERMUTE = 1, RETURN_IN_ORDER = 2]

  #
  # Argument flags.
  #
  ARGUMENT_FLAGS = [NO_ARGUMENT = 0, REQUIRED_ARGUMENT = 1,
    OPTIONAL_ARGUMENT = 2]

  #
  # Status codes.
  #
  STATUS_YET, STATUS_STARTED, STATUS_TERMINATED = 0, 1, 2

  #
  # Error types.
  #
  class Error  < StandardError; end
  class AmbiguousOption   < Error; end
  class NeedlessArgument < Error; end
  class MissingArgument  < Error; end
  class InvalidOption    < Error; end

  #
  # Set up option processing.
  #
  # The options to support are passed to new() as an array of arrays.
  # Each sub-array contains any number of String option names which carry
  # the same meaning, and one of the following flags:
  #
  # GetoptLong::NO_ARGUMENT :: Option does not take an argument.
  #
  # GetoptLong::REQUIRED_ARGUMENT :: Option always takes an argument.
  #
  # GetoptLong::OPTIONAL_ARGUMENT :: Option may or may not take an argument.
  #
  # The first option name is considered to be the preferred (canonical) name.
  # Other than that, the elements of each sub-array can be in any order.
  #
  def initialize(*arguments)
    #
    # Current ordering.
    #
    if ENV.include?('POSIXLY_CORRECT')
      @ordering = REQUIRE_ORDER
    else
      @ordering = PERMUTE
    end

    #
    # Hash table of option names.
    # Keys of the table are option names, and their values are canonical
    # names of the options.
    #
    @canonical_names = Hash.new

    #
    # Hash table of argument flags.
    # Keys of the table are option names, and their values are argument
    # flags of the options.
    #
    @argument_flags = Hash.new

    #
    # Whether error messages are output to $stderr.
    #
    @quiet = false

    #
    # Status code.
    #
    @status = STATUS_YET

    #
    # Error code.
    #
    @error = nil

    #
    # Error message.
    #
    @error_message = nil

    #
    # Rest of catenated short options.
    #
    @rest_singles = ''

    #
    # List of non-option-arguments.
    # Append them to ARGV when option processing is terminated.
    #
    @non_option_arguments = Array.new

    if 0 < arguments.length
      set_options(*arguments)
    end
  end

  #
  # Set the handling of the ordering of options and arguments.
  # A RuntimeError is raised if option processing has already started.
  #
  # The supplied value must be a member of GetoptLong::ORDERINGS. It alters
  # the processing of options as follows:
  #
  # <b>REQUIRE_ORDER</b> :
  #
  # Options are required to occur before non-options.
  #
  # Processing of options ends as soon as a word is encountered that has not
  # been preceded by an appropriate option flag.
  #
  # For example, if -a and -b are options which do not take arguments,
  # parsing command line arguments of '-a one -b two' would result in
  # 'one', '-b', 'two' being left in ARGV, and only ('-a', '') being
  # processed as an option/arg pair.
  #
  # This is the default ordering, if the environment variable
  # POSIXLY_CORRECT is set. (This is for compatibility with GNU getopt_long.)
  #
  # <b>PERMUTE</b> :
  #
  # Options can occur anywhere in the command line parsed. This is the
  # default behavior.
  #
  # Every sequence of words which can be interpreted as an option (with or
  # without argument) is treated as an option; non-option words are skipped.
  #
  # For example, if -a does not require an argument and -b optionally takes
  # an argument, parsing '-a one -b two three' would result in ('-a','') and
  # ('-b', 'two') being processed as option/arg pairs, and 'one','three'
  # being left in ARGV.
  #
  # If the ordering is set to PERMUTE but the environment variable
  # POSIXLY_CORRECT is set, REQUIRE_ORDER is used instead. This is for
  # compatibility with GNU getopt_long.
  #
  # <b>RETURN_IN_ORDER</b> :
  #
  # All words on the command line are processed as options. Words not
  # preceded by a short or long option flag are passed as arguments
  # with an option of '' (empty string).
  #
  # For example, if -a requires an argument but -b does not, a command line
  # of '-a one -b two three' would result in option/arg pairs of ('-a', 'one')
  # ('-b', ''), ('', 'two'), ('', 'three') being processed.
  #
  def ordering=(ordering)
    #
    # The method is failed if option processing has already started.
    #
    if @status != STATUS_YET
      set_error(ArgumentError, "argument error")
      raise RuntimeError,
        "invoke ordering=, but option processing has already started"
    end

    #
    # Check ordering.
    #
    if !ORDERINGS.include?(ordering)
      raise ArgumentError, "invalid ordering `#{ordering}'"
    end
    if ordering == PERMUTE && ENV.include?('POSIXLY_CORRECT')
      @ordering = REQUIRE_ORDER
    else
      @ordering = ordering
    end
  end

  #
  # Return ordering.
  #
  attr_reader :ordering

  #
  # Set options. Takes the same argument as GetoptLong.new.
  #
  # Raises a RuntimeError if option processing has already started.
  #
  def set_options(*arguments)
    #
    # The method is failed if option processing has already started.
    #
    if @status != STATUS_YET
      raise RuntimeError,
        "invoke set_options, but option processing has already started"
    end

    #
    # Clear tables of option names and argument flags.
    #
    @canonical_names.clear
    @argument_flags.clear

    arguments.each do |arg|
      if !arg.is_a?(Array)
       raise ArgumentError, "the option list contains non-Array argument"
      end

      #
      # Find an argument flag and it set to `argument_flag'.
      #
      argument_flag = nil
      arg.each do |i|
        if ARGUMENT_FLAGS.include?(i)
          if argument_flag != nil
            raise ArgumentError, "too many argument-flags"
          end
          argument_flag = i
        end
      end

      raise ArgumentError, "no argument-flag" if argument_flag == nil

      canonical_name = nil
      arg.each do |i|
        #
        # Check an option name.
        #
        next if i == argument_flag
        begin
          if !i.is_a?(String) || i !~ /\A-([^-]|-.+)\z/
            raise ArgumentError, "an invalid option `#{i}'"
          end
          if (@canonical_names.include?(i))
            raise ArgumentError, "option redefined `#{i}'"
          end
        rescue
          @canonical_names.clear
          @argument_flags.clear
          raise
        end

        #
        # Register the option (`i') to the `@canonical_names' and
        # `@canonical_names' Hashes.
        #
        if canonical_name == nil
          canonical_name = i
        end
        @canonical_names[i] = canonical_name
        @argument_flags[i] = argument_flag
      end
      raise ArgumentError, "no option name" if canonical_name == nil
    end
    return self
  end

  #
  # Set/Unset `quiet' mode.
  #
  attr_writer :quiet

  #
  # Return the flag of `quiet' mode.
  #
  attr_reader :quiet

  #
  # `quiet?' is an alias of `quiet'.
  #
  alias quiet? quiet

  #
  # Explicitly terminate option processing.
  #
  def terminate
    return nil if @status == STATUS_TERMINATED
    raise RuntimeError, "an error has occurred" if @error != nil

    @status = STATUS_TERMINATED
    @non_option_arguments.reverse_each do |argument|
      ARGV.unshift(argument)
    end

    @canonical_names = nil
    @argument_flags = nil
    @rest_singles = nil
    @non_option_arguments = nil

    return self
  end

  #
  # Returns true if option processing has terminated, false otherwise.
  #
  def terminated?
    return @status == STATUS_TERMINATED
  end

  #
  # Set an error (a protected method).
  #
  def set_error(type, message)
    $stderr.print("#{$0}: #{message}\n") if !@quiet

    @error = type
    @error_message = message
    @canonical_names = nil
    @argument_flags = nil
    @rest_singles = nil
    @non_option_arguments = nil

    raise type, message
  end
  protected :set_error

  #
  # Examine whether an option processing is failed.
  #
  attr_reader :error

  #
  # `error?' is an alias of `error'.
  #
  alias error? error

  # Return the appropriate error message in POSIX-defined format.
  # If no error has occurred, returns nil.
  #
  def error_message
    return @error_message
  end

  #
  # Get next option name and its argument, as an Array of two elements.
  #
  # The option name is always converted to the first (preferred)
  # name given in the original options to GetoptLong.new.
  #
  # Example: ['--option', 'value']
  #
  # Returns nil if the processing is complete (as determined by
  # STATUS_TERMINATED).
  #
  def get
    option_name, option_argument = nil, ''

    #
    # Check status.
    #
    return nil if @error != nil
    case @status
    when STATUS_YET
      @status = STATUS_STARTED
    when STATUS_TERMINATED
      return nil
    end

    #
    # Get next option argument.
    #
    if 0 < @rest_singles.length
      argument = '-' + @rest_singles
    elsif (ARGV.length == 0)
      terminate
      return nil
    elsif @ordering == PERMUTE
      while 0 < ARGV.length && ARGV[0] !~ /\A-./
        @non_option_arguments.push(ARGV.shift)
      end
      if ARGV.length == 0
        terminate
        return nil
      end
      argument = ARGV.shift
    elsif @ordering == REQUIRE_ORDER
      if (ARGV[0] !~ /\A-./)
        terminate
        return nil
      end
      argument = ARGV.shift
    else
      argument = ARGV.shift
    end

    #
    # Check the special argument `--'.
    # `--' indicates the end of the option list.
    #
    if argument == '--' && @rest_singles.length == 0
      terminate
      return nil
    end

    #
    # Check for long and short options.
    #
    if argument =~ /\A(--[^=]+)/ && @rest_singles.length == 0
      #
      # This is a long style option, which start with `--'.
      #
      pattern = $1
      if @canonical_names.include?(pattern)
        option_name = pattern
      else
        #
        # The option `option_name' is not registered in `@canonical_names'.
        # It may be an abbreviated.
        #
        matches = []
        @canonical_names.each_key do |key|
          if key.index(pattern) == 0
            option_name = key
            matches << key
          end
        end
        if 2 <= matches.length
          set_error(AmbiguousOption, "option `#{argument}' is ambiguous between #{matches.join(', ')}")
        elsif matches.length == 0
          set_error(InvalidOption, "unrecognized option `#{argument}'")
        end
      end

      #
      # Check an argument to the option.
      #
      if @argument_flags[option_name] == REQUIRED_ARGUMENT
        if argument =~ /=(.*)/m
          option_argument = $1
        elsif 0 < ARGV.length
          option_argument = ARGV.shift
        else
          set_error(MissingArgument,
                    "option `#{argument}' requires an argument")
        end
      elsif @argument_flags[option_name] == OPTIONAL_ARGUMENT
        if argument =~ /=(.*)/m
          option_argument = $1
        elsif 0 < ARGV.length && ARGV[0] !~ /\A-./
          option_argument = ARGV.shift
        else
          option_argument = ''
        end
      elsif argument =~ /=(.*)/m
        set_error(NeedlessArgument,
                  "option `#{option_name}' doesn't allow an argument")
      end

    elsif argument =~ /\A(-(.))(.*)/m
      #
      # This is a short style option, which start with `-' (not `--').
      # Short options may be catenated (e.g. `-l -g' is equivalent to
      # `-lg').
      #
      option_name, ch, @rest_singles = $1, $2, $3

      if @canonical_names.include?(option_name)
        #
        # The option `option_name' is found in `@canonical_names'.
        # Check its argument.
        #
        if @argument_flags[option_name] == REQUIRED_ARGUMENT
          if 0 < @rest_singles.length
            option_argument = @rest_singles
            @rest_singles = ''
          elsif 0 < ARGV.length
            option_argument = ARGV.shift
          else
            # 1003.2 specifies the format of this message.
            set_error(MissingArgument, "option requires an argument -- #{ch}")
          end
        elsif @argument_flags[option_name] == OPTIONAL_ARGUMENT
          if 0 < @rest_singles.length
            option_argument = @rest_singles
            @rest_singles = ''
          elsif 0 < ARGV.length && ARGV[0] !~ /\A-./
            option_argument = ARGV.shift
          else
            option_argument = ''
          end
        end
      else
        #
        # This is an invalid option.
        # 1003.2 specifies the format of this message.
        #
        if ENV.include?('POSIXLY_CORRECT')
          set_error(InvalidOption, "invalid option -- #{ch}")
        else
          set_error(InvalidOption, "invalid option -- #{ch}")
        end
      end
    else
      #
      # This is a non-option argument.
      # Only RETURN_IN_ORDER fell into here.
      #
      return '', argument
    end

    return @canonical_names[option_name], option_argument
  end

  #
  # `get_option' is an alias of `get'.
  #
  alias get_option get

  # Iterator version of `get'.
  #
  # The block is called repeatedly with two arguments:
  # The first is the option name.
  # The second is the argument which followed it (if any).
  # Example: ('--opt', 'value')
  #
  # The option name is always converted to the first (preferred)
  # name given in the original options to GetoptLong.new.
  #
  def each
    loop do
      option_name, option_argument = get_option
      break if option_name == nil
      yield option_name, option_argument
    end
  end

  #
  # `each_option' is an alias of `each'.
  #
  alias each_option each
end
PKDH[P�:((share/ruby/delegate/version.rbnu�[���class Delegator
  VERSION = "0.1.0"
end
PKDH[��v"))share/ruby/singleton/version.rbnu�[���module Singleton
  VERSION = "0.1.0"
end
PKDH[{`�,**share/ruby/date.rbnu�[���# frozen_string_literal: true
# date.rb: Written by Tadayoshi Funaba 1998-2011

require 'date_core'

class Date
  VERSION = '3.0.3' # :nodoc:

  def infinite?
    false
  end

  class Infinity < Numeric # :nodoc:

    include Comparable

    def initialize(d=1) @d = d <=> 0 end

    def d() @d end

    protected :d

    def zero?() false end
    def finite?() false end
    def infinite?() d.nonzero? end
    def nan?() d.zero? end

    def abs() self.class.new end

    def -@() self.class.new(-d) end
    def +@() self.class.new(+d) end

    def <=>(other)
      case other
      when Infinity; return d <=> other.d
      when Numeric; return d
      else
        begin
          l, r = other.coerce(self)
          return l <=> r
        rescue NoMethodError
        end
      end
      nil
    end

    def coerce(other)
      case other
      when Numeric; return -d, d
      else
        super
      end
    end

    def to_f
      return 0 if @d == 0
      if @d > 0
        Float::INFINITY
      else
        -Float::INFINITY
      end
    end

  end

end
PKDH[���%%share/ruby/open3/version.rbnu�[���module Open3
  VERSION = "0.1.0"
end
PKDH[�y��share/ruby/shellwords.rbnu�[���# frozen-string-literal: true
##
# == Manipulates strings like the UNIX Bourne shell
#
# This module manipulates strings according to the word parsing rules
# of the UNIX Bourne shell.
#
# The shellwords() function was originally a port of shellwords.pl,
# but modified to conform to the Shell & Utilities volume of the IEEE
# Std 1003.1-2008, 2016 Edition [1].
#
# === Usage
#
# You can use Shellwords to parse a string into a Bourne shell friendly Array.
#
#   require 'shellwords'
#
#   argv = Shellwords.split('three blind "mice"')
#   argv #=> ["three", "blind", "mice"]
#
# Once you've required Shellwords, you can use the #split alias
# String#shellsplit.
#
#   argv = "see how they run".shellsplit
#   argv #=> ["see", "how", "they", "run"]
#
# Be careful you don't leave a quote unmatched.
#
#   argv = "they all ran after the farmer's wife".shellsplit
#        #=> ArgumentError: Unmatched double quote: ...
#
# In this case, you might want to use Shellwords.escape, or its alias
# String#shellescape.
#
# This method will escape the String for you to safely use with a Bourne shell.
#
#   argv = Shellwords.escape("special's.txt")
#   argv #=> "special\\'s.txt"
#   system("cat " + argv)
#
# Shellwords also comes with a core extension for Array, Array#shelljoin.
#
#   argv = %w{ls -lta lib}
#   system(argv.shelljoin)
#
# You can use this method to create an escaped string out of an array of tokens
# separated by a space. In this example we used the literal shortcut for
# Array.new.
#
# === Authors
# * Wakou Aoyama
# * Akinori MUSHA <knu@iDaemons.org>
#
# === Contact
# * Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
# === Resources
#
# 1: {IEEE Std 1003.1-2008, 2016 Edition, the Shell & Utilities volume}[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/contents.html]

module Shellwords
  # Splits a string into an array of tokens in the same way the UNIX
  # Bourne shell does.
  #
  #   argv = Shellwords.split('here are "two words"')
  #   argv #=> ["here", "are", "two words"]
  #
  # Note, however, that this is not a command line parser.  Shell
  # metacharacters except for the single and double quotes and
  # backslash are not treated as such.
  #
  #   argv = Shellwords.split('ruby my_prog.rb | less')
  #   argv #=> ["ruby", "my_prog.rb", "|", "less"]
  #
  # String#shellsplit is a shortcut for this function.
  #
  #   argv = 'here are "two words"'.shellsplit
  #   argv #=> ["here", "are", "two words"]
  def shellsplit(line)
    words = []
    field = String.new
    line.scan(/\G\s*(?>([^\s\\\'\"]+)|'([^\']*)'|"((?:[^\"\\]|\\.)*)"|(\\.?)|(\S))(\s|\z)?/m) do
      |word, sq, dq, esc, garbage, sep|
      raise ArgumentError, "Unmatched double quote: #{line.inspect}" if garbage
      # 2.2.3 Double-Quotes:
      #
      #   The <backslash> shall retain its special meaning as an
      #   escape character only when followed by one of the following
      #   characters when considered special:
      #
      #   $ ` " \ <newline>
      field << (word || sq || (dq && dq.gsub(/\\([$`"\\\n])/, '\\1')) || esc.gsub(/\\(.)/, '\\1'))
      if sep
        words << field
        field = String.new
      end
    end
    words
  end

  alias shellwords shellsplit

  module_function :shellsplit, :shellwords

  class << self
    alias split shellsplit
  end

  # Escapes a string so that it can be safely used in a Bourne shell
  # command line.  +str+ can be a non-string object that responds to
  # +to_s+.
  #
  # Note that a resulted string should be used unquoted and is not
  # intended for use in double quotes nor in single quotes.
  #
  #   argv = Shellwords.escape("It's better to give than to receive")
  #   argv #=> "It\\'s\\ better\\ to\\ give\\ than\\ to\\ receive"
  #
  # String#shellescape is a shorthand for this function.
  #
  #   argv = "It's better to give than to receive".shellescape
  #   argv #=> "It\\'s\\ better\\ to\\ give\\ than\\ to\\ receive"
  #
  #   # Search files in lib for method definitions
  #   pattern = "^[ \t]*def "
  #   open("| grep -Ern #{pattern.shellescape} lib") { |grep|
  #     grep.each_line { |line|
  #       file, lineno, matched_line = line.split(':', 3)
  #       # ...
  #     }
  #   }
  #
  # It is the caller's responsibility to encode the string in the right
  # encoding for the shell environment where this string is used.
  #
  # Multibyte characters are treated as multibyte characters, not as bytes.
  #
  # Returns an empty quoted String if +str+ has a length of zero.
  def shellescape(str)
    str = str.to_s

    # An empty argument will be skipped, so return empty quotes.
    return "''".dup if str.empty?

    str = str.dup

    # Treat multibyte characters as is.  It is the caller's responsibility
    # to encode the string in the right encoding for the shell
    # environment.
    str.gsub!(/[^A-Za-z0-9_\-.,:+\/@\n]/, "\\\\\\&")

    # A LF cannot be escaped with a backslash because a backslash + LF
    # combo is regarded as a line continuation and simply ignored.
    str.gsub!(/\n/, "'\n'")

    return str
  end

  module_function :shellescape

  class << self
    alias escape shellescape
  end

  # Builds a command line string from an argument list, +array+.
  #
  # All elements are joined into a single string with fields separated by a
  # space, where each element is escaped for the Bourne shell and stringified
  # using +to_s+.
  #
  #   ary = ["There's", "a", "time", "and", "place", "for", "everything"]
  #   argv = Shellwords.join(ary)
  #   argv #=> "There\\'s a time and place for everything"
  #
  # Array#shelljoin is a shortcut for this function.
  #
  #   ary = ["Don't", "rock", "the", "boat"]
  #   argv = ary.shelljoin
  #   argv #=> "Don\\'t rock the boat"
  #
  # You can also mix non-string objects in the elements as allowed in Array#join.
  #
  #   output = `#{['ps', '-p', $$].shelljoin}`
  #
  def shelljoin(array)
    array.map { |arg| shellescape(arg) }.join(' ')
  end

  module_function :shelljoin

  class << self
    alias join shelljoin
  end
end

class String
  # call-seq:
  #   str.shellsplit => array
  #
  # Splits +str+ into an array of tokens in the same way the UNIX
  # Bourne shell does.
  #
  # See Shellwords.shellsplit for details.
  def shellsplit
    Shellwords.split(self)
  end

  # call-seq:
  #   str.shellescape => string
  #
  # Escapes +str+ so that it can be safely used in a Bourne shell
  # command line.
  #
  # See Shellwords.shellescape for details.
  def shellescape
    Shellwords.escape(self)
  end
end

class Array
  # call-seq:
  #   array.shelljoin => string
  #
  # Builds a command line string from an argument list +array+ joining
  # all elements escaped for the Bourne shell and separated by a space.
  #
  # See Shellwords.shelljoin for details.
  def shelljoin
    Shellwords.join(self)
  end
end
PKDH[����:�:share/ruby/pstore.rbnu�[���# frozen_string_literal: true
# = PStore -- Transactional File Storage for Ruby Objects
#
# pstore.rb -
#   originally by matz
#   documentation by Kev Jackson and James Edward Gray II
#   improved by Hongli Lai
#
# See PStore for documentation.

require "digest"

#
# PStore implements a file based persistence mechanism based on a Hash.  User
# code can store hierarchies of Ruby objects (values) into the data store file
# by name (keys).  An object hierarchy may be just a single object.  User code
# may later read values back from the data store or even update data, as needed.
#
# The transactional behavior ensures that any changes succeed or fail together.
# This can be used to ensure that the data store is not left in a transitory
# state, where some values were updated but others were not.
#
# Behind the scenes, Ruby objects are stored to the data store file with
# Marshal.  That carries the usual limitations.  Proc objects cannot be
# marshalled, for example.
#
# == Usage example:
#
#  require "pstore"
#
#  # a mock wiki object...
#  class WikiPage
#    def initialize( page_name, author, contents )
#      @page_name = page_name
#      @revisions = Array.new
#
#      add_revision(author, contents)
#    end
#
#    attr_reader :page_name
#
#    def add_revision( author, contents )
#      @revisions << { :created  => Time.now,
#                      :author   => author,
#                      :contents => contents }
#    end
#
#    def wiki_page_references
#      [@page_name] + @revisions.last[:contents].scan(/\b(?:[A-Z]+[a-z]+){2,}/)
#    end
#
#    # ...
#  end
#
#  # create a new page...
#  home_page = WikiPage.new( "HomePage", "James Edward Gray II",
#                            "A page about the JoysOfDocumentation..." )
#
#  # then we want to update page data and the index together, or not at all...
#  wiki = PStore.new("wiki_pages.pstore")
#  wiki.transaction do  # begin transaction; do all of this or none of it
#    # store page...
#    wiki[home_page.page_name] = home_page
#    # ensure that an index has been created...
#    wiki[:wiki_index] ||= Array.new
#    # update wiki index...
#    wiki[:wiki_index].push(*home_page.wiki_page_references)
#  end                   # commit changes to wiki data store file
#
#  ### Some time later... ###
#
#  # read wiki data...
#  wiki.transaction(true) do  # begin read-only transaction, no changes allowed
#    wiki.roots.each do |data_root_name|
#      p data_root_name
#      p wiki[data_root_name]
#    end
#  end
#
# == Transaction modes
#
# By default, file integrity is only ensured as long as the operating system
# (and the underlying hardware) doesn't raise any unexpected I/O errors. If an
# I/O error occurs while PStore is writing to its file, then the file will
# become corrupted.
#
# You can prevent this by setting <em>pstore.ultra_safe = true</em>.
# However, this results in a minor performance loss, and only works on platforms
# that support atomic file renames. Please consult the documentation for
# +ultra_safe+ for details.
#
# Needless to say, if you're storing valuable data with PStore, then you should
# backup the PStore files from time to time.
class PStore
  RDWR_ACCESS = {mode: IO::RDWR | IO::CREAT | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze
  RD_ACCESS = {mode: IO::RDONLY | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze
  WR_ACCESS = {mode: IO::WRONLY | IO::CREAT | IO::TRUNC | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze

  # The error type thrown by all PStore methods.
  class Error < StandardError
  end

  # Whether PStore should do its best to prevent file corruptions, even when under
  # unlikely-to-occur error conditions such as out-of-space conditions and other
  # unusual OS filesystem errors. Setting this flag comes at the price in the form
  # of a performance loss.
  #
  # This flag only has effect on platforms on which file renames are atomic (e.g.
  # all POSIX platforms: Linux, MacOS X, FreeBSD, etc). The default value is false.
  attr_accessor :ultra_safe

  #
  # To construct a PStore object, pass in the _file_ path where you would like
  # the data to be stored.
  #
  # PStore objects are always reentrant. But if _thread_safe_ is set to true,
  # then it will become thread-safe at the cost of a minor performance hit.
  #
  def initialize(file, thread_safe = false)
    dir = File::dirname(file)
    unless File::directory? dir
      raise PStore::Error, format("directory %s does not exist", dir)
    end
    if File::exist? file and not File::readable? file
      raise PStore::Error, format("file %s not readable", file)
    end
    @filename = file
    @abort = false
    @ultra_safe = false
    @thread_safe = thread_safe
    @lock = Thread::Mutex.new
  end

  # Raises PStore::Error if the calling code is not in a PStore#transaction.
  def in_transaction
    raise PStore::Error, "not in transaction" unless @lock.locked?
  end
  #
  # Raises PStore::Error if the calling code is not in a PStore#transaction or
  # if the code is in a read-only PStore#transaction.
  #
  def in_transaction_wr
    in_transaction
    raise PStore::Error, "in read-only transaction" if @rdonly
  end
  private :in_transaction, :in_transaction_wr

  #
  # Retrieves a value from the PStore file data, by _name_.  The hierarchy of
  # Ruby objects stored under that root _name_ will be returned.
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def [](name)
    in_transaction
    @table[name]
  end
  #
  # This method is just like PStore#[], save that you may also provide a
  # _default_ value for the object.  In the event the specified _name_ is not
  # found in the data store, your _default_ will be returned instead.  If you do
  # not specify a default, PStore::Error will be raised if the object is not
  # found.
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def fetch(name, default=PStore::Error)
    in_transaction
    unless @table.key? name
      if default == PStore::Error
        raise PStore::Error, format("undefined root name `%s'", name)
      else
        return default
      end
    end
    @table[name]
  end
  #
  # Stores an individual Ruby object or a hierarchy of Ruby objects in the data
  # store file under the root _name_.  Assigning to a _name_ already in the data
  # store clobbers the old data.
  #
  # == Example:
  #
  #  require "pstore"
  #
  #  store = PStore.new("data_file.pstore")
  #  store.transaction do  # begin transaction
  #    # load some data into the store...
  #    store[:single_object] = "My data..."
  #    store[:obj_hierarchy] = { "Kev Jackson" => ["rational.rb", "pstore.rb"],
  #                              "James Gray"  => ["erb.rb", "pstore.rb"] }
  #  end                   # commit changes to data store file
  #
  # *WARNING*:  This method is only valid in a PStore#transaction and it cannot
  # be read-only.  It will raise PStore::Error if called at any other time.
  #
  def []=(name, value)
    in_transaction_wr
    @table[name] = value
  end
  #
  # Removes an object hierarchy from the data store, by _name_.
  #
  # *WARNING*:  This method is only valid in a PStore#transaction and it cannot
  # be read-only.  It will raise PStore::Error if called at any other time.
  #
  def delete(name)
    in_transaction_wr
    @table.delete name
  end

  #
  # Returns the names of all object hierarchies currently in the store.
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def roots
    in_transaction
    @table.keys
  end
  #
  # Returns true if the supplied _name_ is currently in the data store.
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def root?(name)
    in_transaction
    @table.key? name
  end
  # Returns the path to the data store file.
  def path
    @filename
  end

  #
  # Ends the current PStore#transaction, committing any changes to the data
  # store immediately.
  #
  # == Example:
  #
  #  require "pstore"
  #
  #  store = PStore.new("data_file.pstore")
  #  store.transaction do  # begin transaction
  #    # load some data into the store...
  #    store[:one] = 1
  #    store[:two] = 2
  #
  #    store.commit        # end transaction here, committing changes
  #
  #    store[:three] = 3   # this change is never reached
  #  end
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def commit
    in_transaction
    @abort = false
    throw :pstore_abort_transaction
  end
  #
  # Ends the current PStore#transaction, discarding any changes to the data
  # store.
  #
  # == Example:
  #
  #  require "pstore"
  #
  #  store = PStore.new("data_file.pstore")
  #  store.transaction do  # begin transaction
  #    store[:one] = 1     # this change is not applied, see below...
  #    store[:two] = 2     # this change is not applied, see below...
  #
  #    store.abort         # end transaction here, discard all changes
  #
  #    store[:three] = 3   # this change is never reached
  #  end
  #
  # *WARNING*:  This method is only valid in a PStore#transaction.  It will
  # raise PStore::Error if called at any other time.
  #
  def abort
    in_transaction
    @abort = true
    throw :pstore_abort_transaction
  end

  #
  # Opens a new transaction for the data store.  Code executed inside a block
  # passed to this method may read and write data to and from the data store
  # file.
  #
  # At the end of the block, changes are committed to the data store
  # automatically.  You may exit the transaction early with a call to either
  # PStore#commit or PStore#abort.  See those methods for details about how
  # changes are handled.  Raising an uncaught Exception in the block is
  # equivalent to calling PStore#abort.
  #
  # If _read_only_ is set to +true+, you will only be allowed to read from the
  # data store during the transaction and any attempts to change the data will
  # raise a PStore::Error.
  #
  # Note that PStore does not support nested transactions.
  #
  def transaction(read_only = false)  # :yields:  pstore
    value = nil
    if !@thread_safe
      raise PStore::Error, "nested transaction" unless @lock.try_lock
    else
      begin
        @lock.lock
      rescue ThreadError
        raise PStore::Error, "nested transaction"
      end
    end
    begin
      @rdonly = read_only
      @abort = false
      file = open_and_lock_file(@filename, read_only)
      if file
        begin
          @table, checksum, original_data_size = load_data(file, read_only)

          catch(:pstore_abort_transaction) do
            value = yield(self)
          end

          if !@abort && !read_only
            save_data(checksum, original_data_size, file)
          end
        ensure
          file.close
        end
      else
        # This can only occur if read_only == true.
        @table = {}
        catch(:pstore_abort_transaction) do
          value = yield(self)
        end
      end
    ensure
      @lock.unlock
    end
    value
  end

  private
  # Constant for relieving Ruby's garbage collector.
  CHECKSUM_ALGO = %w[SHA512 SHA384 SHA256 SHA1 RMD160 MD5].each do |algo|
    begin
      break Digest(algo)
    rescue LoadError
    end
  end
  EMPTY_STRING = ""
  EMPTY_MARSHAL_DATA = Marshal.dump({})
  EMPTY_MARSHAL_CHECKSUM = CHECKSUM_ALGO.digest(EMPTY_MARSHAL_DATA)

  #
  # Open the specified filename (either in read-only mode or in
  # read-write mode) and lock it for reading or writing.
  #
  # The opened File object will be returned. If _read_only_ is true,
  # and the file does not exist, then nil will be returned.
  #
  # All exceptions are propagated.
  #
  def open_and_lock_file(filename, read_only)
    if read_only
      begin
        file = File.new(filename, **RD_ACCESS)
        begin
          file.flock(File::LOCK_SH)
          return file
        rescue
          file.close
          raise
        end
      rescue Errno::ENOENT
        return nil
      end
    else
      file = File.new(filename, **RDWR_ACCESS)
      file.flock(File::LOCK_EX)
      return file
    end
  end

  # Load the given PStore file.
  # If +read_only+ is true, the unmarshalled Hash will be returned.
  # If +read_only+ is false, a 3-tuple will be returned: the unmarshalled
  # Hash, a checksum of the data, and the size of the data.
  def load_data(file, read_only)
    if read_only
      begin
        table = load(file)
        raise Error, "PStore file seems to be corrupted." unless table.is_a?(Hash)
      rescue EOFError
        # This seems to be a newly-created file.
        table = {}
      end
      table
    else
      data = file.read
      if data.empty?
        # This seems to be a newly-created file.
        table = {}
        checksum = empty_marshal_checksum
        size = empty_marshal_data.bytesize
      else
        table = load(data)
        checksum = CHECKSUM_ALGO.digest(data)
        size = data.bytesize
        raise Error, "PStore file seems to be corrupted." unless table.is_a?(Hash)
      end
      data.replace(EMPTY_STRING)
      [table, checksum, size]
    end
  end

  def on_windows?
    is_windows = RUBY_PLATFORM =~ /mswin|mingw|bccwin|wince/
    self.class.__send__(:define_method, :on_windows?) do
      is_windows
    end
    is_windows
  end

  def save_data(original_checksum, original_file_size, file)
    new_data = dump(@table)

    if new_data.bytesize != original_file_size || CHECKSUM_ALGO.digest(new_data) != original_checksum
      if @ultra_safe && !on_windows?
        # Windows doesn't support atomic file renames.
        save_data_with_atomic_file_rename_strategy(new_data, file)
      else
        save_data_with_fast_strategy(new_data, file)
      end
    end

    new_data.replace(EMPTY_STRING)
  end

  def save_data_with_atomic_file_rename_strategy(data, file)
    temp_filename = "#{@filename}.tmp.#{Process.pid}.#{rand 1000000}"
    temp_file = File.new(temp_filename, **WR_ACCESS)
    begin
      temp_file.flock(File::LOCK_EX)
      temp_file.write(data)
      temp_file.flush
      File.rename(temp_filename, @filename)
    rescue
      File.unlink(temp_file) rescue nil
      raise
    ensure
      temp_file.close
    end
  end

  def save_data_with_fast_strategy(data, file)
    file.rewind
    file.write(data)
    file.truncate(data.bytesize)
  end


  # This method is just a wrapped around Marshal.dump
  # to allow subclass overriding used in YAML::Store.
  def dump(table)  # :nodoc:
    Marshal::dump(table)
  end

  # This method is just a wrapped around Marshal.load.
  # to allow subclass overriding used in YAML::Store.
  def load(content)  # :nodoc:
    Marshal::load(content)
  end

  def empty_marshal_data
    EMPTY_MARSHAL_DATA
  end
  def empty_marshal_checksum
    EMPTY_MARSHAL_CHECKSUM
  end
end
PKDH[`Ҧ�share/ruby/mutex_m.rbnu�[���# frozen_string_literal: false
#
#   mutex_m.rb -
#       $Release Version: 3.0$
#       $Revision: 1.7 $
#       Original from mutex.rb
#       by Keiju ISHITSUKA(keiju@ishitsuka.com)
#       modified by matz
#       patched by akira yamada
#
# --

# = mutex_m.rb
#
# When 'mutex_m' is required, any object that extends or includes Mutex_m will
# be treated like a Mutex.
#
# Start by requiring the standard library Mutex_m:
#
#   require "mutex_m.rb"
#
# From here you can extend an object with Mutex instance methods:
#
#   obj = Object.new
#   obj.extend Mutex_m
#
# Or mixin Mutex_m into your module to your class inherit Mutex instance
# methods --- remember to call super() in your class initialize method.
#
#   class Foo
#     include Mutex_m
#     def initialize
#       # ...
#       super()
#     end
#     # ...
#   end
#   obj = Foo.new
#   # this obj can be handled like Mutex
#
module Mutex_m

  VERSION = "0.1.0"

  def Mutex_m.define_aliases(cl) # :nodoc:
    cl.module_eval %q{
      alias locked? mu_locked?
      alias lock mu_lock
      alias unlock mu_unlock
      alias try_lock mu_try_lock
      alias synchronize mu_synchronize
    }
  end

  def Mutex_m.append_features(cl) # :nodoc:
    super
    define_aliases(cl) unless cl.instance_of?(Module)
  end

  def Mutex_m.extend_object(obj) # :nodoc:
    super
    obj.mu_extended
  end

  def mu_extended # :nodoc:
    unless (defined? locked? and
            defined? lock and
            defined? unlock and
            defined? try_lock and
            defined? synchronize)
      Mutex_m.define_aliases(singleton_class)
    end
    mu_initialize
  end

  # See Mutex#synchronize
  def mu_synchronize(&block)
    @_mutex.synchronize(&block)
  end

  # See Mutex#locked?
  def mu_locked?
    @_mutex.locked?
  end

  # See Mutex#try_lock
  def mu_try_lock
    @_mutex.try_lock
  end

  # See Mutex#lock
  def mu_lock
    @_mutex.lock
  end

  # See Mutex#unlock
  def mu_unlock
    @_mutex.unlock
  end

  # See Mutex#sleep
  def sleep(timeout = nil)
    @_mutex.sleep(timeout)
  end

  private

  def mu_initialize # :nodoc:
    @_mutex = Thread::Mutex.new
  end

  def initialize(*args) # :nodoc:
    mu_initialize
    super
  end
end
PKDH[�T��share/ruby/webrick.rbnu�[���# frozen_string_literal: false
##
# = WEB server toolkit.
#
# WEBrick is an HTTP server toolkit that can be configured as an HTTPS server,
# a proxy server, and a virtual-host server.  WEBrick features complete
# logging of both server operations and HTTP access.  WEBrick supports both
# basic and digest authentication in addition to algorithms not in RFC 2617.
#
# A WEBrick server can be composed of multiple WEBrick servers or servlets to
# provide differing behavior on a per-host or per-path basis.  WEBrick
# includes servlets for handling CGI scripts, ERB pages, Ruby blocks and
# directory listings.
#
# WEBrick also includes tools for daemonizing a process and starting a process
# at a higher privilege level and dropping permissions.
#
# == Starting an HTTP server
#
# To create a new WEBrick::HTTPServer that will listen to connections on port
# 8000 and serve documents from the current user's public_html folder:
#
#   require 'webrick'
#
#   root = File.expand_path '~/public_html'
#   server = WEBrick::HTTPServer.new :Port => 8000, :DocumentRoot => root
#
# To run the server you will need to provide a suitable shutdown hook as
# starting the server blocks the current thread:
#
#   trap 'INT' do server.shutdown end
#
#   server.start
#
# == Custom Behavior
#
# The easiest way to have a server perform custom operations is through
# WEBrick::HTTPServer#mount_proc.  The block given will be called with a
# WEBrick::HTTPRequest with request info and a WEBrick::HTTPResponse which
# must be filled in appropriately:
#
#   server.mount_proc '/' do |req, res|
#     res.body = 'Hello, world!'
#   end
#
# Remember that +server.mount_proc+ must precede +server.start+.
#
# == Servlets
#
# Advanced custom behavior can be obtained through mounting a subclass of
# WEBrick::HTTPServlet::AbstractServlet.  Servlets provide more modularity
# when writing an HTTP server than mount_proc allows.  Here is a simple
# servlet:
#
#   class Simple < WEBrick::HTTPServlet::AbstractServlet
#     def do_GET request, response
#       status, content_type, body = do_stuff_with request
#
#       response.status = 200
#       response['Content-Type'] = 'text/plain'
#       response.body = 'Hello, World!'
#     end
#   end
#
# To initialize the servlet you mount it on the server:
#
#   server.mount '/simple', Simple
#
# See WEBrick::HTTPServlet::AbstractServlet for more details.
#
# == Virtual Hosts
#
# A server can act as a virtual host for multiple host names.  After creating
# the listening host, additional hosts that do not listen can be created and
# attached as virtual hosts:
#
#   server = WEBrick::HTTPServer.new # ...
#
#   vhost = WEBrick::HTTPServer.new :ServerName => 'vhost.example',
#                                   :DoNotListen => true, # ...
#   vhost.mount '/', ...
#
#   server.virtual_host vhost
#
# If no +:DocumentRoot+ is provided and no servlets or procs are mounted on the
# main server it will return 404 for all URLs.
#
# == HTTPS
#
# To create an HTTPS server you only need to enable SSL and provide an SSL
# certificate name:
#
#   require 'webrick'
#   require 'webrick/https'
#
#   cert_name = [
#     %w[CN localhost],
#   ]
#
#   server = WEBrick::HTTPServer.new(:Port => 8000,
#                                    :SSLEnable => true,
#                                    :SSLCertName => cert_name)
#
# This will start the server with a self-generated self-signed certificate.
# The certificate will be changed every time the server is restarted.
#
# To create a server with a pre-determined key and certificate you can provide
# them:
#
#   require 'webrick'
#   require 'webrick/https'
#   require 'openssl'
#
#   cert = OpenSSL::X509::Certificate.new File.read '/path/to/cert.pem'
#   pkey = OpenSSL::PKey::RSA.new File.read '/path/to/pkey.pem'
#
#   server = WEBrick::HTTPServer.new(:Port => 8000,
#                                    :SSLEnable => true,
#                                    :SSLCertificate => cert,
#                                    :SSLPrivateKey => pkey)
#
# == Proxy Server
#
# WEBrick can act as a proxy server:
#
#   require 'webrick'
#   require 'webrick/httpproxy'
#
#   proxy = WEBrick::HTTPProxyServer.new :Port => 8000
#
#   trap 'INT' do proxy.shutdown end
#
# See WEBrick::HTTPProxy for further details including modifying proxied
# responses.
#
# == Basic and Digest authentication
#
# WEBrick provides both Basic and Digest authentication for regular and proxy
# servers.  See WEBrick::HTTPAuth, WEBrick::HTTPAuth::BasicAuth and
# WEBrick::HTTPAuth::DigestAuth.
#
# == WEBrick as a Production Web Server
#
# WEBrick can be run as a production server for small loads.
#
# === Daemonizing
#
# To start a WEBrick server as a daemon simple run WEBrick::Daemon.start
# before starting the server.
#
# === Dropping Permissions
#
# WEBrick can be started as one user to gain permission to bind to port 80 or
# 443 for serving HTTP or HTTPS traffic then can drop these permissions for
# regular operation.  To listen on all interfaces for HTTP traffic:
#
#   sockets = WEBrick::Utils.create_listeners nil, 80
#
# Then drop privileges:
#
#   WEBrick::Utils.su 'www'
#
# Then create a server that does not listen by default:
#
#   server = WEBrick::HTTPServer.new :DoNotListen => true, # ...
#
# Then overwrite the listening sockets with the port 80 sockets:
#
#   server.listeners.replace sockets
#
# === Logging
#
# WEBrick can separately log server operations and end-user access.  For
# server operations:
#
#   log_file = File.open '/var/log/webrick.log', 'a+'
#   log = WEBrick::Log.new log_file
#
# For user access logging:
#
#   access_log = [
#     [log_file, WEBrick::AccessLog::COMBINED_LOG_FORMAT],
#   ]
#
#   server = WEBrick::HTTPServer.new :Logger => log, :AccessLog => access_log
#
# See WEBrick::AccessLog for further log formats.
#
# === Log Rotation
#
# To rotate logs in WEBrick on a HUP signal (like syslogd can send), open the
# log file in 'a+' mode (as above) and trap 'HUP' to reopen the log file:
#
#   trap 'HUP' do log_file.reopen '/path/to/webrick.log', 'a+'
#
# == Copyright
#
# Author: IPR -- Internet Programming with Ruby -- writers
#
# Copyright (c) 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#--
# $IPR: webrick.rb,v 1.12 2002/10/01 17:16:31 gotoyuzo Exp $

module WEBrick
end

require 'webrick/compat.rb'

require 'webrick/version.rb'
require 'webrick/config.rb'
require 'webrick/log.rb'
require 'webrick/server.rb'
require_relative 'webrick/utils.rb'
require 'webrick/accesslog'

require 'webrick/htmlutils.rb'
require 'webrick/httputils.rb'
require 'webrick/cookie.rb'
require 'webrick/httpversion.rb'
require 'webrick/httpstatus.rb'
require 'webrick/httprequest.rb'
require 'webrick/httpresponse.rb'
require 'webrick/httpserver.rb'
require 'webrick/httpservlet.rb'
require 'webrick/httpauth.rb'
PKDH[y'9E>&>&share/ruby/resolv.rbnu�[���# frozen_string_literal: true

require 'socket'
require 'timeout'
require 'io/wait'

begin
  require 'securerandom'
rescue LoadError
end

# Resolv is a thread-aware DNS resolver library written in Ruby.  Resolv can
# handle multiple DNS requests concurrently without blocking the entire Ruby
# interpreter.
#
# See also resolv-replace.rb to replace the libc resolver with Resolv.
#
# Resolv can look up various DNS resources using the DNS module directly.
#
# Examples:
#
#   p Resolv.getaddress "www.ruby-lang.org"
#   p Resolv.getname "210.251.121.214"
#
#   Resolv::DNS.open do |dns|
#     ress = dns.getresources "www.ruby-lang.org", Resolv::DNS::Resource::IN::A
#     p ress.map(&:address)
#     ress = dns.getresources "ruby-lang.org", Resolv::DNS::Resource::IN::MX
#     p ress.map { |r| [r.exchange.to_s, r.preference] }
#   end
#
#
# == Bugs
#
# * NIS is not supported.
# * /etc/nsswitch.conf is not supported.

class Resolv

  ##
  # Looks up the first IP address for +name+.

  def self.getaddress(name)
    DefaultResolver.getaddress(name)
  end

  ##
  # Looks up all IP address for +name+.

  def self.getaddresses(name)
    DefaultResolver.getaddresses(name)
  end

  ##
  # Iterates over all IP addresses for +name+.

  def self.each_address(name, &block)
    DefaultResolver.each_address(name, &block)
  end

  ##
  # Looks up the hostname of +address+.

  def self.getname(address)
    DefaultResolver.getname(address)
  end

  ##
  # Looks up all hostnames for +address+.

  def self.getnames(address)
    DefaultResolver.getnames(address)
  end

  ##
  # Iterates over all hostnames for +address+.

  def self.each_name(address, &proc)
    DefaultResolver.each_name(address, &proc)
  end

  ##
  # Creates a new Resolv using +resolvers+.

  def initialize(resolvers=[Hosts.new, DNS.new])
    @resolvers = resolvers
  end

  ##
  # Looks up the first IP address for +name+.

  def getaddress(name)
    each_address(name) {|address| return address}
    raise ResolvError.new("no address for #{name}")
  end

  ##
  # Looks up all IP address for +name+.

  def getaddresses(name)
    ret = []
    each_address(name) {|address| ret << address}
    return ret
  end

  ##
  # Iterates over all IP addresses for +name+.

  def each_address(name)
    if AddressRegex =~ name
      yield name
      return
    end
    yielded = false
    @resolvers.each {|r|
      r.each_address(name) {|address|
        yield address.to_s
        yielded = true
      }
      return if yielded
    }
  end

  ##
  # Looks up the hostname of +address+.

  def getname(address)
    each_name(address) {|name| return name}
    raise ResolvError.new("no name for #{address}")
  end

  ##
  # Looks up all hostnames for +address+.

  def getnames(address)
    ret = []
    each_name(address) {|name| ret << name}
    return ret
  end

  ##
  # Iterates over all hostnames for +address+.

  def each_name(address)
    yielded = false
    @resolvers.each {|r|
      r.each_name(address) {|name|
        yield name.to_s
        yielded = true
      }
      return if yielded
    }
  end

  ##
  # Indicates a failure to resolve a name or address.

  class ResolvError < StandardError; end

  ##
  # Indicates a timeout resolving a name or address.

  class ResolvTimeout < Timeout::Error; end

  ##
  # Resolv::Hosts is a hostname resolver that uses the system hosts file.

  class Hosts
    if /mswin|mingw|cygwin/ =~ RUBY_PLATFORM and
      begin
        require 'win32/resolv'
        DefaultFileName = Win32::Resolv.get_hosts_path || IO::NULL
      rescue LoadError
      end
    end
    DefaultFileName ||= '/etc/hosts'

    ##
    # Creates a new Resolv::Hosts, using +filename+ for its data source.

    def initialize(filename = DefaultFileName)
      @filename = filename
      @mutex = Thread::Mutex.new
      @initialized = nil
    end

    def lazy_initialize # :nodoc:
      @mutex.synchronize {
        unless @initialized
          @name2addr = {}
          @addr2name = {}
          File.open(@filename, 'rb') {|f|
            f.each {|line|
              line.sub!(/#.*/, '')
              addr, hostname, *aliases = line.split(/\s+/)
              next unless addr
              @addr2name[addr] = [] unless @addr2name.include? addr
              @addr2name[addr] << hostname
              @addr2name[addr] += aliases
              @name2addr[hostname] = [] unless @name2addr.include? hostname
              @name2addr[hostname] << addr
              aliases.each {|n|
                @name2addr[n] = [] unless @name2addr.include? n
                @name2addr[n] << addr
              }
            }
          }
          @name2addr.each {|name, arr| arr.reverse!}
          @initialized = true
        end
      }
      self
    end

    ##
    # Gets the IP address of +name+ from the hosts file.

    def getaddress(name)
      each_address(name) {|address| return address}
      raise ResolvError.new("#{@filename} has no name: #{name}")
    end

    ##
    # Gets all IP addresses for +name+ from the hosts file.

    def getaddresses(name)
      ret = []
      each_address(name) {|address| ret << address}
      return ret
    end

    ##
    # Iterates over all IP addresses for +name+ retrieved from the hosts file.

    def each_address(name, &proc)
      lazy_initialize
      @name2addr[name]&.each(&proc)
    end

    ##
    # Gets the hostname of +address+ from the hosts file.

    def getname(address)
      each_name(address) {|name| return name}
      raise ResolvError.new("#{@filename} has no address: #{address}")
    end

    ##
    # Gets all hostnames for +address+ from the hosts file.

    def getnames(address)
      ret = []
      each_name(address) {|name| ret << name}
      return ret
    end

    ##
    # Iterates over all hostnames for +address+ retrieved from the hosts file.

    def each_name(address, &proc)
      lazy_initialize
      @addr2name[address]&.each(&proc)
    end
  end

  ##
  # Resolv::DNS is a DNS stub resolver.
  #
  # Information taken from the following places:
  #
  # * STD0013
  # * RFC 1035
  # * ftp://ftp.isi.edu/in-notes/iana/assignments/dns-parameters
  # * etc.

  class DNS

    ##
    # Default DNS Port

    Port = 53

    ##
    # Default DNS UDP packet size

    UDPSize = 512

    ##
    # Creates a new DNS resolver.  See Resolv::DNS.new for argument details.
    #
    # Yields the created DNS resolver to the block, if given, otherwise
    # returns it.

    def self.open(*args)
      dns = new(*args)
      return dns unless block_given?
      begin
        yield dns
      ensure
        dns.close
      end
    end

    ##
    # Creates a new DNS resolver.
    #
    # +config_info+ can be:
    #
    # nil:: Uses /etc/resolv.conf.
    # String:: Path to a file using /etc/resolv.conf's format.
    # Hash:: Must contain :nameserver, :search and :ndots keys.
    # :nameserver_port can be used to specify port number of nameserver address.
    #
    # The value of :nameserver should be an address string or
    # an array of address strings.
    # - :nameserver => '8.8.8.8'
    # - :nameserver => ['8.8.8.8', '8.8.4.4']
    #
    # The value of :nameserver_port should be an array of
    # pair of nameserver address and port number.
    # - :nameserver_port => [['8.8.8.8', 53], ['8.8.4.4', 53]]
    #
    # Example:
    #
    #   Resolv::DNS.new(:nameserver => ['210.251.121.21'],
    #                   :search => ['ruby-lang.org'],
    #                   :ndots => 1)

    def initialize(config_info=nil)
      @mutex = Thread::Mutex.new
      @config = Config.new(config_info)
      @initialized = nil
    end

    # Sets the resolver timeouts.  This may be a single positive number
    # or an array of positive numbers representing timeouts in seconds.
    # If an array is specified, a DNS request will retry and wait for
    # each successive interval in the array until a successful response
    # is received.  Specifying +nil+ reverts to the default timeouts:
    # [ 5, second = 5 * 2 / nameserver_count, 2 * second, 4 * second ]
    #
    # Example:
    #
    #   dns.timeouts = 3
    #
    def timeouts=(values)
      @config.timeouts = values
    end

    def lazy_initialize # :nodoc:
      @mutex.synchronize {
        unless @initialized
          @config.lazy_initialize
          @initialized = true
        end
      }
      self
    end

    ##
    # Closes the DNS resolver.

    def close
      @mutex.synchronize {
        if @initialized
          @initialized = false
        end
      }
    end

    ##
    # Gets the IP address of +name+ from the DNS resolver.
    #
    # +name+ can be a Resolv::DNS::Name or a String.  Retrieved address will
    # be a Resolv::IPv4 or Resolv::IPv6

    def getaddress(name)
      each_address(name) {|address| return address}
      raise ResolvError.new("DNS result has no information for #{name}")
    end

    ##
    # Gets all IP addresses for +name+ from the DNS resolver.
    #
    # +name+ can be a Resolv::DNS::Name or a String.  Retrieved addresses will
    # be a Resolv::IPv4 or Resolv::IPv6

    def getaddresses(name)
      ret = []
      each_address(name) {|address| ret << address}
      return ret
    end

    ##
    # Iterates over all IP addresses for +name+ retrieved from the DNS
    # resolver.
    #
    # +name+ can be a Resolv::DNS::Name or a String.  Retrieved addresses will
    # be a Resolv::IPv4 or Resolv::IPv6

    def each_address(name)
      each_resource(name, Resource::IN::A) {|resource| yield resource.address}
      if use_ipv6?
        each_resource(name, Resource::IN::AAAA) {|resource| yield resource.address}
      end
    end

    def use_ipv6? # :nodoc:
      begin
        list = Socket.ip_address_list
      rescue NotImplementedError
        return true
      end
      list.any? {|a| a.ipv6? && !a.ipv6_loopback? && !a.ipv6_linklocal? }
    end
    private :use_ipv6?

    ##
    # Gets the hostname for +address+ from the DNS resolver.
    #
    # +address+ must be a Resolv::IPv4, Resolv::IPv6 or a String.  Retrieved
    # name will be a Resolv::DNS::Name.

    def getname(address)
      each_name(address) {|name| return name}
      raise ResolvError.new("DNS result has no information for #{address}")
    end

    ##
    # Gets all hostnames for +address+ from the DNS resolver.
    #
    # +address+ must be a Resolv::IPv4, Resolv::IPv6 or a String.  Retrieved
    # names will be Resolv::DNS::Name instances.

    def getnames(address)
      ret = []
      each_name(address) {|name| ret << name}
      return ret
    end

    ##
    # Iterates over all hostnames for +address+ retrieved from the DNS
    # resolver.
    #
    # +address+ must be a Resolv::IPv4, Resolv::IPv6 or a String.  Retrieved
    # names will be Resolv::DNS::Name instances.

    def each_name(address)
      case address
      when Name
        ptr = address
      when IPv4, IPv6
        ptr = address.to_name
      when IPv4::Regex
        ptr = IPv4.create(address).to_name
      when IPv6::Regex
        ptr = IPv6.create(address).to_name
      else
        raise ResolvError.new("cannot interpret as address: #{address}")
      end
      each_resource(ptr, Resource::IN::PTR) {|resource| yield resource.name}
    end

    ##
    # Look up the +typeclass+ DNS resource of +name+.
    #
    # +name+ must be a Resolv::DNS::Name or a String.
    #
    # +typeclass+ should be one of the following:
    #
    # * Resolv::DNS::Resource::IN::A
    # * Resolv::DNS::Resource::IN::AAAA
    # * Resolv::DNS::Resource::IN::ANY
    # * Resolv::DNS::Resource::IN::CNAME
    # * Resolv::DNS::Resource::IN::HINFO
    # * Resolv::DNS::Resource::IN::MINFO
    # * Resolv::DNS::Resource::IN::MX
    # * Resolv::DNS::Resource::IN::NS
    # * Resolv::DNS::Resource::IN::PTR
    # * Resolv::DNS::Resource::IN::SOA
    # * Resolv::DNS::Resource::IN::TXT
    # * Resolv::DNS::Resource::IN::WKS
    #
    # Returned resource is represented as a Resolv::DNS::Resource instance,
    # i.e. Resolv::DNS::Resource::IN::A.

    def getresource(name, typeclass)
      each_resource(name, typeclass) {|resource| return resource}
      raise ResolvError.new("DNS result has no information for #{name}")
    end

    ##
    # Looks up all +typeclass+ DNS resources for +name+.  See #getresource for
    # argument details.

    def getresources(name, typeclass)
      ret = []
      each_resource(name, typeclass) {|resource| ret << resource}
      return ret
    end

    ##
    # Iterates over all +typeclass+ DNS resources for +name+.  See
    # #getresource for argument details.

    def each_resource(name, typeclass, &proc)
      fetch_resource(name, typeclass) {|reply, reply_name|
        extract_resources(reply, reply_name, typeclass, &proc)
      }
    end

    def fetch_resource(name, typeclass)
      lazy_initialize
      begin
        requester = make_udp_requester
      rescue Errno::EACCES
        # fall back to TCP
      end
      senders = {}
      begin
        @config.resolv(name) {|candidate, tout, nameserver, port|
          requester ||= make_tcp_requester(nameserver, port)
          msg = Message.new
          msg.rd = 1
          msg.add_question(candidate, typeclass)
          unless sender = senders[[candidate, nameserver, port]]
            sender = requester.sender(msg, candidate, nameserver, port)
            next if !sender
            senders[[candidate, nameserver, port]] = sender
          end
          reply, reply_name = requester.request(sender, tout)
          case reply.rcode
          when RCode::NoError
            if reply.tc == 1 and not Requester::TCP === requester
              requester.close
              # Retry via TCP:
              requester = make_tcp_requester(nameserver, port)
              senders = {}
              # This will use TCP for all remaining candidates (assuming the
              # current candidate does not already respond successfully via
              # TCP).  This makes sense because we already know the full
              # response will not fit in an untruncated UDP packet.
              redo
            else
              yield(reply, reply_name)
            end
            return
          when RCode::NXDomain
            raise Config::NXDomain.new(reply_name.to_s)
          else
            raise Config::OtherResolvError.new(reply_name.to_s)
          end
        }
      ensure
        requester&.close
      end
    end

    def make_udp_requester # :nodoc:
      nameserver_port = @config.nameserver_port
      if nameserver_port.length == 1
        Requester::ConnectedUDP.new(*nameserver_port[0])
      else
        Requester::UnconnectedUDP.new(*nameserver_port)
      end
    end

    def make_tcp_requester(host, port) # :nodoc:
      return Requester::TCP.new(host, port)
    end

    def extract_resources(msg, name, typeclass) # :nodoc:
      if typeclass < Resource::ANY
        n0 = Name.create(name)
        msg.each_resource {|n, ttl, data|
          yield data if n0 == n
        }
      end
      yielded = false
      n0 = Name.create(name)
      msg.each_resource {|n, ttl, data|
        if n0 == n
          case data
          when typeclass
            yield data
            yielded = true
          when Resource::CNAME
            n0 = data.name
          end
        end
      }
      return if yielded
      msg.each_resource {|n, ttl, data|
        if n0 == n
          case data
          when typeclass
            yield data
          end
        end
      }
    end

    if defined? SecureRandom
      def self.random(arg) # :nodoc:
        begin
          SecureRandom.random_number(arg)
        rescue NotImplementedError
          rand(arg)
        end
      end
    else
      def self.random(arg) # :nodoc:
        rand(arg)
      end
    end

    RequestID = {} # :nodoc:
    RequestIDMutex = Thread::Mutex.new # :nodoc:

    def self.allocate_request_id(host, port) # :nodoc:
      id = nil
      RequestIDMutex.synchronize {
        h = (RequestID[[host, port]] ||= {})
        begin
          id = random(0x0000..0xffff)
        end while h[id]
        h[id] = true
      }
      id
    end

    def self.free_request_id(host, port, id) # :nodoc:
      RequestIDMutex.synchronize {
        key = [host, port]
        if h = RequestID[key]
          h.delete id
          if h.empty?
            RequestID.delete key
          end
        end
      }
    end

    def self.bind_random_port(udpsock, bind_host="0.0.0.0") # :nodoc:
      begin
        port = random(1024..65535)
        udpsock.bind(bind_host, port)
      rescue Errno::EADDRINUSE, # POSIX
             Errno::EACCES, # SunOS: See PRIV_SYS_NFS in privileges(5)
             Errno::EPERM # FreeBSD: security.mac.portacl.port_high is configurable.  See mac_portacl(4).
        retry
      end
    end

    class Requester # :nodoc:
      def initialize
        @senders = {}
        @socks = nil
      end

      def request(sender, tout)
        start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
        timelimit = start + tout
        begin
          sender.send
        rescue Errno::EHOSTUNREACH, # multi-homed IPv6 may generate this
               Errno::ENETUNREACH
          raise ResolvTimeout
        end
        while true
          before_select = Process.clock_gettime(Process::CLOCK_MONOTONIC)
          timeout = timelimit - before_select
          if timeout <= 0
            raise ResolvTimeout
          end
          if @socks.size == 1
            select_result = @socks[0].wait_readable(timeout) ? [ @socks ] : nil
          else
            select_result = IO.select(@socks, nil, nil, timeout)
          end
          if !select_result
            after_select = Process.clock_gettime(Process::CLOCK_MONOTONIC)
            next if after_select < timelimit
            raise ResolvTimeout
          end
          begin
            reply, from = recv_reply(select_result[0])
          rescue Errno::ECONNREFUSED, # GNU/Linux, FreeBSD
                 Errno::ECONNRESET # Windows
            # No name server running on the server?
            # Don't wait anymore.
            raise ResolvTimeout
          end
          begin
            msg = Message.decode(reply)
          rescue DecodeError
            next # broken DNS message ignored
          end
          if sender == sender_for(from, msg)
            break
          else
            # unexpected DNS message ignored
          end
        end
        return msg, sender.data
      end

      def sender_for(addr, msg)
        @senders[[addr,msg.id]]
      end

      def close
        socks = @socks
        @socks = nil
        socks&.each(&:close)
      end

      class Sender # :nodoc:
        def initialize(msg, data, sock)
          @msg = msg
          @data = data
          @sock = sock
        end
      end

      class UnconnectedUDP < Requester # :nodoc:
        def initialize(*nameserver_port)
          super()
          @nameserver_port = nameserver_port
          @initialized = false
          @mutex = Thread::Mutex.new
        end

        def lazy_initialize
          @mutex.synchronize {
            next if @initialized
            @initialized = true
            @socks_hash = {}
            @socks = []
            @nameserver_port.each {|host, port|
              if host.index(':')
                bind_host = "::"
                af = Socket::AF_INET6
              else
                bind_host = "0.0.0.0"
                af = Socket::AF_INET
              end
              next if @socks_hash[bind_host]
              begin
                sock = UDPSocket.new(af)
              rescue Errno::EAFNOSUPPORT
                next # The kernel doesn't support the address family.
              end
              @socks << sock
              @socks_hash[bind_host] = sock
              sock.do_not_reverse_lookup = true
              DNS.bind_random_port(sock, bind_host)
            }
          }
          self
        end

        def recv_reply(readable_socks)
          lazy_initialize
          reply, from = readable_socks[0].recvfrom(UDPSize)
          return reply, [from[3],from[1]]
        end

        def sender(msg, data, host, port=Port)
          host = Addrinfo.ip(host).ip_address
          lazy_initialize
          sock = @socks_hash[host.index(':') ? "::" : "0.0.0.0"]
          return nil if !sock
          service = [host, port]
          id = DNS.allocate_request_id(host, port)
          request = msg.encode
          request[0,2] = [id].pack('n')
          return @senders[[service, id]] =
            Sender.new(request, data, sock, host, port)
        end

        def close
          @mutex.synchronize {
            if @initialized
              super
              @senders.each_key {|service, id|
                DNS.free_request_id(service[0], service[1], id)
              }
              @initialized = false
            end
          }
        end

        class Sender < Requester::Sender # :nodoc:
          def initialize(msg, data, sock, host, port)
            super(msg, data, sock)
            @host = host
            @port = port
          end
          attr_reader :data

          def send
            raise "@sock is nil." if @sock.nil?
            @sock.send(@msg, 0, @host, @port)
          end
        end
      end

      class ConnectedUDP < Requester # :nodoc:
        def initialize(host, port=Port)
          super()
          @host = host
          @port = port
          @mutex = Thread::Mutex.new
          @initialized = false
        end

        def lazy_initialize
          @mutex.synchronize {
            next if @initialized
            @initialized = true
            is_ipv6 = @host.index(':')
            sock = UDPSocket.new(is_ipv6 ? Socket::AF_INET6 : Socket::AF_INET)
            @socks = [sock]
            sock.do_not_reverse_lookup = true
            DNS.bind_random_port(sock, is_ipv6 ? "::" : "0.0.0.0")
            sock.connect(@host, @port)
          }
          self
        end

        def recv_reply(readable_socks)
          lazy_initialize
          reply = readable_socks[0].recv(UDPSize)
          return reply, nil
        end

        def sender(msg, data, host=@host, port=@port)
          lazy_initialize
          unless host == @host && port == @port
            raise RequestError.new("host/port don't match: #{host}:#{port}")
          end
          id = DNS.allocate_request_id(@host, @port)
          request = msg.encode
          request[0,2] = [id].pack('n')
          return @senders[[nil,id]] = Sender.new(request, data, @socks[0])
        end

        def close
          @mutex.synchronize do
            if @initialized
              super
              @senders.each_key {|from, id|
                DNS.free_request_id(@host, @port, id)
              }
              @initialized = false
            end
          end
        end

        class Sender < Requester::Sender # :nodoc:
          def send
            raise "@sock is nil." if @sock.nil?
            @sock.send(@msg, 0)
          end
          attr_reader :data
        end
      end

      class MDNSOneShot < UnconnectedUDP # :nodoc:
        def sender(msg, data, host, port=Port)
          lazy_initialize
          id = DNS.allocate_request_id(host, port)
          request = msg.encode
          request[0,2] = [id].pack('n')
          sock = @socks_hash[host.index(':') ? "::" : "0.0.0.0"]
          return @senders[id] =
            UnconnectedUDP::Sender.new(request, data, sock, host, port)
        end

        def sender_for(addr, msg)
          lazy_initialize
          @senders[msg.id]
        end
      end

      class TCP < Requester # :nodoc:
        def initialize(host, port=Port)
          super()
          @host = host
          @port = port
          sock = TCPSocket.new(@host, @port)
          @socks = [sock]
          @senders = {}
        end

        def recv_reply(readable_socks)
          len = readable_socks[0].read(2).unpack('n')[0]
          reply = @socks[0].read(len)
          return reply, nil
        end

        def sender(msg, data, host=@host, port=@port)
          unless host == @host && port == @port
            raise RequestError.new("host/port don't match: #{host}:#{port}")
          end
          id = DNS.allocate_request_id(@host, @port)
          request = msg.encode
          request[0,2] = [request.length, id].pack('nn')
          return @senders[[nil,id]] = Sender.new(request, data, @socks[0])
        end

        class Sender < Requester::Sender # :nodoc:
          def send
            @sock.print(@msg)
            @sock.flush
          end
          attr_reader :data
        end

        def close
          super
          @senders.each_key {|from,id|
            DNS.free_request_id(@host, @port, id)
          }
        end
      end

      ##
      # Indicates a problem with the DNS request.

      class RequestError < StandardError
      end
    end

    class Config # :nodoc:
      def initialize(config_info=nil)
        @mutex = Thread::Mutex.new
        @config_info = config_info
        @initialized = nil
        @timeouts = nil
      end

      def timeouts=(values)
        if values
          values = Array(values)
          values.each do |t|
            Numeric === t or raise ArgumentError, "#{t.inspect} is not numeric"
            t > 0.0 or raise ArgumentError, "timeout=#{t} must be positive"
          end
          @timeouts = values
        else
          @timeouts = nil
        end
      end

      def Config.parse_resolv_conf(filename)
        nameserver = []
        search = nil
        ndots = 1
        File.open(filename, 'rb') {|f|
          f.each {|line|
            line.sub!(/[#;].*/, '')
            keyword, *args = line.split(/\s+/)
            next unless keyword
            case keyword
            when 'nameserver'
              nameserver += args
            when 'domain'
              next if args.empty?
              search = [args[0]]
            when 'search'
              next if args.empty?
              search = args
            when 'options'
              args.each {|arg|
                case arg
                when /\Andots:(\d+)\z/
                  ndots = $1.to_i
                end
              }
            end
          }
        }
        return { :nameserver => nameserver, :search => search, :ndots => ndots }
      end

      def Config.default_config_hash(filename="/etc/resolv.conf")
        if File.exist? filename
          config_hash = Config.parse_resolv_conf(filename)
        else
          if /mswin|cygwin|mingw|bccwin/ =~ RUBY_PLATFORM
            require 'win32/resolv'
            search, nameserver = Win32::Resolv.get_resolv_info
            config_hash = {}
            config_hash[:nameserver] = nameserver if nameserver
            config_hash[:search] = [search].flatten if search
          end
        end
        config_hash || {}
      end

      def lazy_initialize
        @mutex.synchronize {
          unless @initialized
            @nameserver_port = []
            @search = nil
            @ndots = 1
            case @config_info
            when nil
              config_hash = Config.default_config_hash
            when String
              config_hash = Config.parse_resolv_conf(@config_info)
            when Hash
              config_hash = @config_info.dup
              if String === config_hash[:nameserver]
                config_hash[:nameserver] = [config_hash[:nameserver]]
              end
              if String === config_hash[:search]
                config_hash[:search] = [config_hash[:search]]
              end
            else
              raise ArgumentError.new("invalid resolv configuration: #{@config_info.inspect}")
            end
            if config_hash.include? :nameserver
              @nameserver_port = config_hash[:nameserver].map {|ns| [ns, Port] }
            end
            if config_hash.include? :nameserver_port
              @nameserver_port = config_hash[:nameserver_port].map {|ns, port| [ns, (port || Port)] }
            end
            @search = config_hash[:search] if config_hash.include? :search
            @ndots = config_hash[:ndots] if config_hash.include? :ndots

            if @nameserver_port.empty?
              @nameserver_port << ['0.0.0.0', Port]
            end
            if @search
              @search = @search.map {|arg| Label.split(arg) }
            else
              hostname = Socket.gethostname
              if /\./ =~ hostname
                @search = [Label.split($')]
              else
                @search = [[]]
              end
            end

            if !@nameserver_port.kind_of?(Array) ||
               @nameserver_port.any? {|ns_port|
                  !(Array === ns_port) ||
                  ns_port.length != 2
                  !(String === ns_port[0]) ||
                  !(Integer === ns_port[1])
               }
              raise ArgumentError.new("invalid nameserver config: #{@nameserver_port.inspect}")
            end

            if !@search.kind_of?(Array) ||
               !@search.all? {|ls| ls.all? {|l| Label::Str === l } }
              raise ArgumentError.new("invalid search config: #{@search.inspect}")
            end

            if !@ndots.kind_of?(Integer)
              raise ArgumentError.new("invalid ndots config: #{@ndots.inspect}")
            end

            @initialized = true
          end
        }
        self
      end

      def single?
        lazy_initialize
        if @nameserver_port.length == 1
          return @nameserver_port[0]
        else
          return nil
        end
      end

      def nameserver_port
        @nameserver_port
      end

      def generate_candidates(name)
        candidates = nil
        name = Name.create(name)
        if name.absolute?
          candidates = [name]
        else
          if @ndots <= name.length - 1
            candidates = [Name.new(name.to_a)]
          else
            candidates = []
          end
          candidates.concat(@search.map {|domain| Name.new(name.to_a + domain)})
          fname = Name.create("#{name}.")
          if !candidates.include?(fname)
            candidates << fname
          end
        end
        return candidates
      end

      InitialTimeout = 5

      def generate_timeouts
        ts = [InitialTimeout]
        ts << ts[-1] * 2 / @nameserver_port.length
        ts << ts[-1] * 2
        ts << ts[-1] * 2
        return ts
      end

      def resolv(name)
        candidates = generate_candidates(name)
        timeouts = @timeouts || generate_timeouts
        begin
          candidates.each {|candidate|
            begin
              timeouts.each {|tout|
                @nameserver_port.each {|nameserver, port|
                  begin
                    yield candidate, tout, nameserver, port
                  rescue ResolvTimeout
                  end
                }
              }
              raise ResolvError.new("DNS resolv timeout: #{name}")
            rescue NXDomain
            end
          }
        rescue ResolvError
        end
      end

      ##
      # Indicates no such domain was found.

      class NXDomain < ResolvError
      end

      ##
      # Indicates some other unhandled resolver error was encountered.

      class OtherResolvError < ResolvError
      end
    end

    module OpCode # :nodoc:
      Query = 0
      IQuery = 1
      Status = 2
      Notify = 4
      Update = 5
    end

    module RCode # :nodoc:
      NoError = 0
      FormErr = 1
      ServFail = 2
      NXDomain = 3
      NotImp = 4
      Refused = 5
      YXDomain = 6
      YXRRSet = 7
      NXRRSet = 8
      NotAuth = 9
      NotZone = 10
      BADVERS = 16
      BADSIG = 16
      BADKEY = 17
      BADTIME = 18
      BADMODE = 19
      BADNAME = 20
      BADALG = 21
    end

    ##
    # Indicates that the DNS response was unable to be decoded.

    class DecodeError < StandardError
    end

    ##
    # Indicates that the DNS request was unable to be encoded.

    class EncodeError < StandardError
    end

    module Label # :nodoc:
      def self.split(arg)
        labels = []
        arg.scan(/[^\.]+/) {labels << Str.new($&)}
        return labels
      end

      class Str # :nodoc:
        def initialize(string)
          @string = string
          # case insensivity of DNS labels doesn't apply non-ASCII characters. [RFC 4343]
          # This assumes @string is given in ASCII compatible encoding.
          @downcase = string.b.downcase
        end
        attr_reader :string, :downcase

        def to_s
          return @string
        end

        def inspect
          return "#<#{self.class} #{self}>"
        end

        def ==(other)
          return self.class == other.class && @downcase == other.downcase
        end

        def eql?(other)
          return self == other
        end

        def hash
          return @downcase.hash
        end
      end
    end

    ##
    # A representation of a DNS name.

    class Name

      ##
      # Creates a new DNS name from +arg+.  +arg+ can be:
      #
      # Name:: returns +arg+.
      # String:: Creates a new Name.

      def self.create(arg)
        case arg
        when Name
          return arg
        when String
          return Name.new(Label.split(arg), /\.\z/ =~ arg ? true : false)
        else
          raise ArgumentError.new("cannot interpret as DNS name: #{arg.inspect}")
        end
      end

      def initialize(labels, absolute=true) # :nodoc:
        labels = labels.map {|label|
          case label
          when String then Label::Str.new(label)
          when Label::Str then label
          else
            raise ArgumentError, "unexpected label: #{label.inspect}"
          end
        }
        @labels = labels
        @absolute = absolute
      end

      def inspect # :nodoc:
        "#<#{self.class}: #{self}#{@absolute ? '.' : ''}>"
      end

      ##
      # True if this name is absolute.

      def absolute?
        return @absolute
      end

      def ==(other) # :nodoc:
        return false unless Name === other
        return false unless @absolute == other.absolute?
        return @labels == other.to_a
      end

      alias eql? == # :nodoc:

      ##
      # Returns true if +other+ is a subdomain.
      #
      # Example:
      #
      #   domain = Resolv::DNS::Name.create("y.z")
      #   p Resolv::DNS::Name.create("w.x.y.z").subdomain_of?(domain) #=> true
      #   p Resolv::DNS::Name.create("x.y.z").subdomain_of?(domain) #=> true
      #   p Resolv::DNS::Name.create("y.z").subdomain_of?(domain) #=> false
      #   p Resolv::DNS::Name.create("z").subdomain_of?(domain) #=> false
      #   p Resolv::DNS::Name.create("x.y.z.").subdomain_of?(domain) #=> false
      #   p Resolv::DNS::Name.create("w.z").subdomain_of?(domain) #=> false
      #

      def subdomain_of?(other)
        raise ArgumentError, "not a domain name: #{other.inspect}" unless Name === other
        return false if @absolute != other.absolute?
        other_len = other.length
        return false if @labels.length <= other_len
        return @labels[-other_len, other_len] == other.to_a
      end

      def hash # :nodoc:
        return @labels.hash ^ @absolute.hash
      end

      def to_a # :nodoc:
        return @labels
      end

      def length # :nodoc:
        return @labels.length
      end

      def [](i) # :nodoc:
        return @labels[i]
      end

      ##
      # returns the domain name as a string.
      #
      # The domain name doesn't have a trailing dot even if the name object is
      # absolute.
      #
      # Example:
      #
      #   p Resolv::DNS::Name.create("x.y.z.").to_s #=> "x.y.z"
      #   p Resolv::DNS::Name.create("x.y.z").to_s #=> "x.y.z"

      def to_s
        return @labels.join('.')
      end
    end

    class Message # :nodoc:
      @@identifier = -1

      def initialize(id = (@@identifier += 1) & 0xffff)
        @id = id
        @qr = 0
        @opcode = 0
        @aa = 0
        @tc = 0
        @rd = 0 # recursion desired
        @ra = 0 # recursion available
        @rcode = 0
        @question = []
        @answer = []
        @authority = []
        @additional = []
      end

      attr_accessor :id, :qr, :opcode, :aa, :tc, :rd, :ra, :rcode
      attr_reader :question, :answer, :authority, :additional

      def ==(other)
        return @id == other.id &&
               @qr == other.qr &&
               @opcode == other.opcode &&
               @aa == other.aa &&
               @tc == other.tc &&
               @rd == other.rd &&
               @ra == other.ra &&
               @rcode == other.rcode &&
               @question == other.question &&
               @answer == other.answer &&
               @authority == other.authority &&
               @additional == other.additional
      end

      def add_question(name, typeclass)
        @question << [Name.create(name), typeclass]
      end

      def each_question
        @question.each {|name, typeclass|
          yield name, typeclass
        }
      end

      def add_answer(name, ttl, data)
        @answer << [Name.create(name), ttl, data]
      end

      def each_answer
        @answer.each {|name, ttl, data|
          yield name, ttl, data
        }
      end

      def add_authority(name, ttl, data)
        @authority << [Name.create(name), ttl, data]
      end

      def each_authority
        @authority.each {|name, ttl, data|
          yield name, ttl, data
        }
      end

      def add_additional(name, ttl, data)
        @additional << [Name.create(name), ttl, data]
      end

      def each_additional
        @additional.each {|name, ttl, data|
          yield name, ttl, data
        }
      end

      def each_resource
        each_answer {|name, ttl, data| yield name, ttl, data}
        each_authority {|name, ttl, data| yield name, ttl, data}
        each_additional {|name, ttl, data| yield name, ttl, data}
      end

      def encode
        return MessageEncoder.new {|msg|
          msg.put_pack('nnnnnn',
            @id,
            (@qr & 1) << 15 |
            (@opcode & 15) << 11 |
            (@aa & 1) << 10 |
            (@tc & 1) << 9 |
            (@rd & 1) << 8 |
            (@ra & 1) << 7 |
            (@rcode & 15),
            @question.length,
            @answer.length,
            @authority.length,
            @additional.length)
          @question.each {|q|
            name, typeclass = q
            msg.put_name(name)
            msg.put_pack('nn', typeclass::TypeValue, typeclass::ClassValue)
          }
          [@answer, @authority, @additional].each {|rr|
            rr.each {|r|
              name, ttl, data = r
              msg.put_name(name)
              msg.put_pack('nnN', data.class::TypeValue, data.class::ClassValue, ttl)
              msg.put_length16 {data.encode_rdata(msg)}
            }
          }
        }.to_s
      end

      class MessageEncoder # :nodoc:
        def initialize
          @data = ''.dup
          @names = {}
          yield self
        end

        def to_s
          return @data
        end

        def put_bytes(d)
          @data << d
        end

        def put_pack(template, *d)
          @data << d.pack(template)
        end

        def put_length16
          length_index = @data.length
          @data << "\0\0"
          data_start = @data.length
          yield
          data_end = @data.length
          @data[length_index, 2] = [data_end - data_start].pack("n")
        end

        def put_string(d)
          self.put_pack("C", d.length)
          @data << d
        end

        def put_string_list(ds)
          ds.each {|d|
            self.put_string(d)
          }
        end

        def put_name(d)
          put_labels(d.to_a)
        end

        def put_labels(d)
          d.each_index {|i|
            domain = d[i..-1]
            if idx = @names[domain]
              self.put_pack("n", 0xc000 | idx)
              return
            else
              if @data.length < 0x4000
                @names[domain] = @data.length
              end
              self.put_label(d[i])
            end
          }
          @data << "\0"
        end

        def put_label(d)
          self.put_string(d.to_s)
        end
      end

      def Message.decode(m)
        o = Message.new(0)
        MessageDecoder.new(m) {|msg|
          id, flag, qdcount, ancount, nscount, arcount =
            msg.get_unpack('nnnnnn')
          o.id = id
          o.qr = (flag >> 15) & 1
          o.opcode = (flag >> 11) & 15
          o.aa = (flag >> 10) & 1
          o.tc = (flag >> 9) & 1
          o.rd = (flag >> 8) & 1
          o.ra = (flag >> 7) & 1
          o.rcode = flag & 15
          (1..qdcount).each {
            name, typeclass = msg.get_question
            o.add_question(name, typeclass)
          }
          (1..ancount).each {
            name, ttl, data = msg.get_rr
            o.add_answer(name, ttl, data)
          }
          (1..nscount).each {
            name, ttl, data = msg.get_rr
            o.add_authority(name, ttl, data)
          }
          (1..arcount).each {
            name, ttl, data = msg.get_rr
            o.add_additional(name, ttl, data)
          }
        }
        return o
      end

      class MessageDecoder # :nodoc:
        def initialize(data)
          @data = data
          @index = 0
          @limit = data.bytesize
          yield self
        end

        def inspect
          "\#<#{self.class}: #{@data.byteslice(0, @index).inspect} #{@data.byteslice(@index..-1).inspect}>"
        end

        def get_length16
          len, = self.get_unpack('n')
          save_limit = @limit
          @limit = @index + len
          d = yield(len)
          if @index < @limit
            raise DecodeError.new("junk exists")
          elsif @limit < @index
            raise DecodeError.new("limit exceeded")
          end
          @limit = save_limit
          return d
        end

        def get_bytes(len = @limit - @index)
          raise DecodeError.new("limit exceeded") if @limit < @index + len
          d = @data.byteslice(@index, len)
          @index += len
          return d
        end

        def get_unpack(template)
          len = 0
          template.each_byte {|byte|
            byte = "%c" % byte
            case byte
            when ?c, ?C
              len += 1
            when ?n
              len += 2
            when ?N
              len += 4
            else
              raise StandardError.new("unsupported template: '#{byte.chr}' in '#{template}'")
            end
          }
          raise DecodeError.new("limit exceeded") if @limit < @index + len
          arr = @data.unpack("@#{@index}#{template}")
          @index += len
          return arr
        end

        def get_string
          raise DecodeError.new("limit exceeded") if @limit <= @index
          len = @data.getbyte(@index)
          raise DecodeError.new("limit exceeded") if @limit < @index + 1 + len
          d = @data.byteslice(@index + 1, len)
          @index += 1 + len
          return d
        end

        def get_string_list
          strings = []
          while @index < @limit
            strings << self.get_string
          end
          strings
        end

        def get_name
          return Name.new(self.get_labels)
        end

        def get_labels
          prev_index = @index
          save_index = nil
          d = []
          while true
            raise DecodeError.new("limit exceeded") if @limit <= @index
            case @data.getbyte(@index)
            when 0
              @index += 1
              if save_index
                @index = save_index
              end
              return d
            when 192..255
              idx = self.get_unpack('n')[0] & 0x3fff
              if prev_index <= idx
                raise DecodeError.new("non-backward name pointer")
              end
              prev_index = idx
              if !save_index
                save_index = @index
              end
              @index = idx
            else
              d << self.get_label
            end
          end
        end

        def get_label
          return Label::Str.new(self.get_string)
        end

        def get_question
          name = self.get_name
          type, klass = self.get_unpack("nn")
          return name, Resource.get_class(type, klass)
        end

        def get_rr
          name = self.get_name
          type, klass, ttl = self.get_unpack('nnN')
          typeclass = Resource.get_class(type, klass)
          res = self.get_length16 do
            begin
              typeclass.decode_rdata self
            rescue => e
              raise DecodeError, e.message, e.backtrace
            end
          end
          res.instance_variable_set :@ttl, ttl
          return name, ttl, res
        end
      end
    end

    ##
    # A DNS query abstract class.

    class Query
      def encode_rdata(msg) # :nodoc:
        raise EncodeError.new("#{self.class} is query.")
      end

      def self.decode_rdata(msg) # :nodoc:
        raise DecodeError.new("#{self.class} is query.")
      end
    end

    ##
    # A DNS resource abstract class.

    class Resource < Query

      ##
      # Remaining Time To Live for this Resource.

      attr_reader :ttl

      ClassHash = {} # :nodoc:

      def encode_rdata(msg) # :nodoc:
        raise NotImplementedError.new
      end

      def self.decode_rdata(msg) # :nodoc:
        raise NotImplementedError.new
      end

      def ==(other) # :nodoc:
        return false unless self.class == other.class
        s_ivars = self.instance_variables
        s_ivars.sort!
        s_ivars.delete :@ttl
        o_ivars = other.instance_variables
        o_ivars.sort!
        o_ivars.delete :@ttl
        return s_ivars == o_ivars &&
          s_ivars.collect {|name| self.instance_variable_get name} ==
            o_ivars.collect {|name| other.instance_variable_get name}
      end

      def eql?(other) # :nodoc:
        return self == other
      end

      def hash # :nodoc:
        h = 0
        vars = self.instance_variables
        vars.delete :@ttl
        vars.each {|name|
          h ^= self.instance_variable_get(name).hash
        }
        return h
      end

      def self.get_class(type_value, class_value) # :nodoc:
        return ClassHash[[type_value, class_value]] ||
               Generic.create(type_value, class_value)
      end

      ##
      # A generic resource abstract class.

      class Generic < Resource

        ##
        # Creates a new generic resource.

        def initialize(data)
          @data = data
        end

        ##
        # Data for this generic resource.

        attr_reader :data

        def encode_rdata(msg) # :nodoc:
          msg.put_bytes(data)
        end

        def self.decode_rdata(msg) # :nodoc:
          return self.new(msg.get_bytes)
        end

        def self.create(type_value, class_value) # :nodoc:
          c = Class.new(Generic)
          c.const_set(:TypeValue, type_value)
          c.const_set(:ClassValue, class_value)
          Generic.const_set("Type#{type_value}_Class#{class_value}", c)
          ClassHash[[type_value, class_value]] = c
          return c
        end
      end

      ##
      # Domain Name resource abstract class.

      class DomainName < Resource

        ##
        # Creates a new DomainName from +name+.

        def initialize(name)
          @name = name
        end

        ##
        # The name of this DomainName.

        attr_reader :name

        def encode_rdata(msg) # :nodoc:
          msg.put_name(@name)
        end

        def self.decode_rdata(msg) # :nodoc:
          return self.new(msg.get_name)
        end
      end

      # Standard (class generic) RRs

      ClassValue = nil # :nodoc:

      ##
      # An authoritative name server.

      class NS < DomainName
        TypeValue = 2 # :nodoc:
      end

      ##
      # The canonical name for an alias.

      class CNAME < DomainName
        TypeValue = 5 # :nodoc:
      end

      ##
      # Start Of Authority resource.

      class SOA < Resource

        TypeValue = 6 # :nodoc:

        ##
        # Creates a new SOA record.  See the attr documentation for the
        # details of each argument.

        def initialize(mname, rname, serial, refresh, retry_, expire, minimum)
          @mname = mname
          @rname = rname
          @serial = serial
          @refresh = refresh
          @retry = retry_
          @expire = expire
          @minimum = minimum
        end

        ##
        # Name of the host where the master zone file for this zone resides.

        attr_reader :mname

        ##
        # The person responsible for this domain name.

        attr_reader :rname

        ##
        # The version number of the zone file.

        attr_reader :serial

        ##
        # How often, in seconds, a secondary name server is to check for
        # updates from the primary name server.

        attr_reader :refresh

        ##
        # How often, in seconds, a secondary name server is to retry after a
        # failure to check for a refresh.

        attr_reader :retry

        ##
        # Time in seconds that a secondary name server is to use the data
        # before refreshing from the primary name server.

        attr_reader :expire

        ##
        # The minimum number of seconds to be used for TTL values in RRs.

        attr_reader :minimum

        def encode_rdata(msg) # :nodoc:
          msg.put_name(@mname)
          msg.put_name(@rname)
          msg.put_pack('NNNNN', @serial, @refresh, @retry, @expire, @minimum)
        end

        def self.decode_rdata(msg) # :nodoc:
          mname = msg.get_name
          rname = msg.get_name
          serial, refresh, retry_, expire, minimum = msg.get_unpack('NNNNN')
          return self.new(
            mname, rname, serial, refresh, retry_, expire, minimum)
        end
      end

      ##
      # A Pointer to another DNS name.

      class PTR < DomainName
        TypeValue = 12 # :nodoc:
      end

      ##
      # Host Information resource.

      class HINFO < Resource

        TypeValue = 13 # :nodoc:

        ##
        # Creates a new HINFO running +os+ on +cpu+.

        def initialize(cpu, os)
          @cpu = cpu
          @os = os
        end

        ##
        # CPU architecture for this resource.

        attr_reader :cpu

        ##
        # Operating system for this resource.

        attr_reader :os

        def encode_rdata(msg) # :nodoc:
          msg.put_string(@cpu)
          msg.put_string(@os)
        end

        def self.decode_rdata(msg) # :nodoc:
          cpu = msg.get_string
          os = msg.get_string
          return self.new(cpu, os)
        end
      end

      ##
      # Mailing list or mailbox information.

      class MINFO < Resource

        TypeValue = 14 # :nodoc:

        def initialize(rmailbx, emailbx)
          @rmailbx = rmailbx
          @emailbx = emailbx
        end

        ##
        # Domain name responsible for this mail list or mailbox.

        attr_reader :rmailbx

        ##
        # Mailbox to use for error messages related to the mail list or mailbox.

        attr_reader :emailbx

        def encode_rdata(msg) # :nodoc:
          msg.put_name(@rmailbx)
          msg.put_name(@emailbx)
        end

        def self.decode_rdata(msg) # :nodoc:
          rmailbx = msg.get_string
          emailbx = msg.get_string
          return self.new(rmailbx, emailbx)
        end
      end

      ##
      # Mail Exchanger resource.

      class MX < Resource

        TypeValue= 15 # :nodoc:

        ##
        # Creates a new MX record with +preference+, accepting mail at
        # +exchange+.

        def initialize(preference, exchange)
          @preference = preference
          @exchange = exchange
        end

        ##
        # The preference for this MX.

        attr_reader :preference

        ##
        # The host of this MX.

        attr_reader :exchange

        def encode_rdata(msg) # :nodoc:
          msg.put_pack('n', @preference)
          msg.put_name(@exchange)
        end

        def self.decode_rdata(msg) # :nodoc:
          preference, = msg.get_unpack('n')
          exchange = msg.get_name
          return self.new(preference, exchange)
        end
      end

      ##
      # Unstructured text resource.

      class TXT < Resource

        TypeValue = 16 # :nodoc:

        def initialize(first_string, *rest_strings)
          @strings = [first_string, *rest_strings]
        end

        ##
        # Returns an Array of Strings for this TXT record.

        attr_reader :strings

        ##
        # Returns the concatenated string from +strings+.

        def data
          @strings.join("")
        end

        def encode_rdata(msg) # :nodoc:
          msg.put_string_list(@strings)
        end

        def self.decode_rdata(msg) # :nodoc:
          strings = msg.get_string_list
          return self.new(*strings)
        end
      end

      ##
      # Location resource

      class LOC < Resource

        TypeValue = 29 # :nodoc:

        def initialize(version, ssize, hprecision, vprecision, latitude, longitude, altitude)
          @version    = version
          @ssize      = Resolv::LOC::Size.create(ssize)
          @hprecision = Resolv::LOC::Size.create(hprecision)
          @vprecision = Resolv::LOC::Size.create(vprecision)
          @latitude   = Resolv::LOC::Coord.create(latitude)
          @longitude  = Resolv::LOC::Coord.create(longitude)
          @altitude   = Resolv::LOC::Alt.create(altitude)
        end

        ##
        # Returns the version value for this LOC record which should always be 00

        attr_reader :version

        ##
        # The spherical size of this LOC
        # in meters using scientific notation as 2 integers of XeY

        attr_reader :ssize

        ##
        # The horizontal precision using ssize type values
        # in meters using scientific notation as 2 integers of XeY
        # for precision use value/2 e.g. 2m = +/-1m

        attr_reader :hprecision

        ##
        # The vertical precision using ssize type values
        # in meters using scientific notation as 2 integers of XeY
        # for precision use value/2 e.g. 2m = +/-1m

        attr_reader :vprecision

        ##
        # The latitude for this LOC where 2**31 is the equator
        # in thousandths of an arc second as an unsigned 32bit integer

        attr_reader :latitude

        ##
        # The longitude for this LOC where 2**31 is the prime meridian
        # in thousandths of an arc second as an unsigned 32bit integer

        attr_reader :longitude

        ##
        # The altitude of the LOC above a reference sphere whose surface sits 100km below the WGS84 spheroid
        # in centimeters as an unsigned 32bit integer

        attr_reader :altitude


        def encode_rdata(msg) # :nodoc:
          msg.put_bytes(@version)
          msg.put_bytes(@ssize.scalar)
          msg.put_bytes(@hprecision.scalar)
          msg.put_bytes(@vprecision.scalar)
          msg.put_bytes(@latitude.coordinates)
          msg.put_bytes(@longitude.coordinates)
          msg.put_bytes(@altitude.altitude)
        end

        def self.decode_rdata(msg) # :nodoc:
          version    = msg.get_bytes(1)
          ssize      = msg.get_bytes(1)
          hprecision = msg.get_bytes(1)
          vprecision = msg.get_bytes(1)
          latitude   = msg.get_bytes(4)
          longitude  = msg.get_bytes(4)
          altitude   = msg.get_bytes(4)
          return self.new(
            version,
            Resolv::LOC::Size.new(ssize),
            Resolv::LOC::Size.new(hprecision),
            Resolv::LOC::Size.new(vprecision),
            Resolv::LOC::Coord.new(latitude,"lat"),
            Resolv::LOC::Coord.new(longitude,"lon"),
            Resolv::LOC::Alt.new(altitude)
          )
        end
      end

      ##
      # A Query type requesting any RR.

      class ANY < Query
        TypeValue = 255 # :nodoc:
      end

      ClassInsensitiveTypes = [ # :nodoc:
        NS, CNAME, SOA, PTR, HINFO, MINFO, MX, TXT, LOC, ANY
      ]

      ##
      # module IN contains ARPA Internet specific RRs.

      module IN

        ClassValue = 1 # :nodoc:

        ClassInsensitiveTypes.each {|s|
          c = Class.new(s)
          c.const_set(:TypeValue, s::TypeValue)
          c.const_set(:ClassValue, ClassValue)
          ClassHash[[s::TypeValue, ClassValue]] = c
          self.const_set(s.name.sub(/.*::/, ''), c)
        }

        ##
        # IPv4 Address resource

        class A < Resource
          TypeValue = 1
          ClassValue = IN::ClassValue
          ClassHash[[TypeValue, ClassValue]] = self # :nodoc:

          ##
          # Creates a new A for +address+.

          def initialize(address)
            @address = IPv4.create(address)
          end

          ##
          # The Resolv::IPv4 address for this A.

          attr_reader :address

          def encode_rdata(msg) # :nodoc:
            msg.put_bytes(@address.address)
          end

          def self.decode_rdata(msg) # :nodoc:
            return self.new(IPv4.new(msg.get_bytes(4)))
          end
        end

        ##
        # Well Known Service resource.

        class WKS < Resource
          TypeValue = 11
          ClassValue = IN::ClassValue
          ClassHash[[TypeValue, ClassValue]] = self # :nodoc:

          def initialize(address, protocol, bitmap)
            @address = IPv4.create(address)
            @protocol = protocol
            @bitmap = bitmap
          end

          ##
          # The host these services run on.

          attr_reader :address

          ##
          # IP protocol number for these services.

          attr_reader :protocol

          ##
          # A bit map of enabled services on this host.
          #
          # If protocol is 6 (TCP) then the 26th bit corresponds to the SMTP
          # service (port 25).  If this bit is set, then an SMTP server should
          # be listening on TCP port 25; if zero, SMTP service is not
          # supported.

          attr_reader :bitmap

          def encode_rdata(msg) # :nodoc:
            msg.put_bytes(@address.address)
            msg.put_pack("n", @protocol)
            msg.put_bytes(@bitmap)
          end

          def self.decode_rdata(msg) # :nodoc:
            address = IPv4.new(msg.get_bytes(4))
            protocol, = msg.get_unpack("n")
            bitmap = msg.get_bytes
            return self.new(address, protocol, bitmap)
          end
        end

        ##
        # An IPv6 address record.

        class AAAA < Resource
          TypeValue = 28
          ClassValue = IN::ClassValue
          ClassHash[[TypeValue, ClassValue]] = self # :nodoc:

          ##
          # Creates a new AAAA for +address+.

          def initialize(address)
            @address = IPv6.create(address)
          end

          ##
          # The Resolv::IPv6 address for this AAAA.

          attr_reader :address

          def encode_rdata(msg) # :nodoc:
            msg.put_bytes(@address.address)
          end

          def self.decode_rdata(msg) # :nodoc:
            return self.new(IPv6.new(msg.get_bytes(16)))
          end
        end

        ##
        # SRV resource record defined in RFC 2782
        #
        # These records identify the hostname and port that a service is
        # available at.

        class SRV < Resource
          TypeValue = 33
          ClassValue = IN::ClassValue
          ClassHash[[TypeValue, ClassValue]] = self # :nodoc:

          # Create a SRV resource record.
          #
          # See the documentation for #priority, #weight, #port and #target
          # for +priority+, +weight+, +port and +target+ respectively.

          def initialize(priority, weight, port, target)
            @priority = priority.to_int
            @weight = weight.to_int
            @port = port.to_int
            @target = Name.create(target)
          end

          # The priority of this target host.
          #
          # A client MUST attempt to contact the target host with the
          # lowest-numbered priority it can reach; target hosts with the same
          # priority SHOULD be tried in an order defined by the weight field.
          # The range is 0-65535.  Note that it is not widely implemented and
          # should be set to zero.

          attr_reader :priority

          # A server selection mechanism.
          #
          # The weight field specifies a relative weight for entries with the
          # same priority. Larger weights SHOULD be given a proportionately
          # higher probability of being selected. The range of this number is
          # 0-65535.  Domain administrators SHOULD use Weight 0 when there
          # isn't any server selection to do, to make the RR easier to read
          # for humans (less noisy). Note that it is not widely implemented
          # and should be set to zero.

          attr_reader :weight

          # The port on this target host of this service.
          #
          # The range is 0-65535.

          attr_reader :port

          # The domain name of the target host.
          #
          # A target of "." means that the service is decidedly not available
          # at this domain.

          attr_reader :target

          def encode_rdata(msg) # :nodoc:
            msg.put_pack("n", @priority)
            msg.put_pack("n", @weight)
            msg.put_pack("n", @port)
            msg.put_name(@target)
          end

          def self.decode_rdata(msg) # :nodoc:
            priority, = msg.get_unpack("n")
            weight,   = msg.get_unpack("n")
            port,     = msg.get_unpack("n")
            target    = msg.get_name
            return self.new(priority, weight, port, target)
          end
        end
      end
    end
  end

  ##
  # A Resolv::DNS IPv4 address.

  class IPv4

    ##
    # Regular expression IPv4 addresses must match.

    Regex256 = /0
               |1(?:[0-9][0-9]?)?
               |2(?:[0-4][0-9]?|5[0-5]?|[6-9])?
               |[3-9][0-9]?/x
    Regex = /\A(#{Regex256})\.(#{Regex256})\.(#{Regex256})\.(#{Regex256})\z/

    def self.create(arg)
      case arg
      when IPv4
        return arg
      when Regex
        if (0..255) === (a = $1.to_i) &&
           (0..255) === (b = $2.to_i) &&
           (0..255) === (c = $3.to_i) &&
           (0..255) === (d = $4.to_i)
          return self.new([a, b, c, d].pack("CCCC"))
        else
          raise ArgumentError.new("IPv4 address with invalid value: " + arg)
        end
      else
        raise ArgumentError.new("cannot interpret as IPv4 address: #{arg.inspect}")
      end
    end

    def initialize(address) # :nodoc:
      unless address.kind_of?(String)
        raise ArgumentError, 'IPv4 address must be a string'
      end
      unless address.length == 4
        raise ArgumentError, "IPv4 address expects 4 bytes but #{address.length} bytes"
      end
      @address = address
    end

    ##
    # A String representation of this IPv4 address.

    ##
    # The raw IPv4 address as a String.

    attr_reader :address

    def to_s # :nodoc:
      return sprintf("%d.%d.%d.%d", *@address.unpack("CCCC"))
    end

    def inspect # :nodoc:
      return "#<#{self.class} #{self}>"
    end

    ##
    # Turns this IPv4 address into a Resolv::DNS::Name.

    def to_name
      return DNS::Name.create(
        '%d.%d.%d.%d.in-addr.arpa.' % @address.unpack('CCCC').reverse)
    end

    def ==(other) # :nodoc:
      return @address == other.address
    end

    def eql?(other) # :nodoc:
      return self == other
    end

    def hash # :nodoc:
      return @address.hash
    end
  end

  ##
  # A Resolv::DNS IPv6 address.

  class IPv6

    ##
    # IPv6 address format a:b:c:d:e:f:g:h
    Regex_8Hex = /\A
      (?:[0-9A-Fa-f]{1,4}:){7}
         [0-9A-Fa-f]{1,4}
      \z/x

    ##
    # Compressed IPv6 address format a::b

    Regex_CompressedHex = /\A
      ((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?) ::
      ((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)
      \z/x

    ##
    # IPv4 mapped IPv6 address format a:b:c:d:e:f:w.x.y.z

    Regex_6Hex4Dec = /\A
      ((?:[0-9A-Fa-f]{1,4}:){6,6})
      (\d+)\.(\d+)\.(\d+)\.(\d+)
      \z/x

    ##
    # Compressed IPv4 mapped IPv6 address format a::b:w.x.y.z

    Regex_CompressedHex4Dec = /\A
      ((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?) ::
      ((?:[0-9A-Fa-f]{1,4}:)*)
      (\d+)\.(\d+)\.(\d+)\.(\d+)
      \z/x

    ##
    # A composite IPv6 address Regexp.

    Regex = /
      (?:#{Regex_8Hex}) |
      (?:#{Regex_CompressedHex}) |
      (?:#{Regex_6Hex4Dec}) |
      (?:#{Regex_CompressedHex4Dec})/x

    ##
    # Creates a new IPv6 address from +arg+ which may be:
    #
    # IPv6:: returns +arg+.
    # String:: +arg+ must match one of the IPv6::Regex* constants

    def self.create(arg)
      case arg
      when IPv6
        return arg
      when String
        address = ''.b
        if Regex_8Hex =~ arg
          arg.scan(/[0-9A-Fa-f]+/) {|hex| address << [hex.hex].pack('n')}
        elsif Regex_CompressedHex =~ arg
          prefix = $1
          suffix = $2
          a1 = ''.b
          a2 = ''.b
          prefix.scan(/[0-9A-Fa-f]+/) {|hex| a1 << [hex.hex].pack('n')}
          suffix.scan(/[0-9A-Fa-f]+/) {|hex| a2 << [hex.hex].pack('n')}
          omitlen = 16 - a1.length - a2.length
          address << a1 << "\0" * omitlen << a2
        elsif Regex_6Hex4Dec =~ arg
          prefix, a, b, c, d = $1, $2.to_i, $3.to_i, $4.to_i, $5.to_i
          if (0..255) === a && (0..255) === b && (0..255) === c && (0..255) === d
            prefix.scan(/[0-9A-Fa-f]+/) {|hex| address << [hex.hex].pack('n')}
            address << [a, b, c, d].pack('CCCC')
          else
            raise ArgumentError.new("not numeric IPv6 address: " + arg)
          end
        elsif Regex_CompressedHex4Dec =~ arg
          prefix, suffix, a, b, c, d = $1, $2, $3.to_i, $4.to_i, $5.to_i, $6.to_i
          if (0..255) === a && (0..255) === b && (0..255) === c && (0..255) === d
            a1 = ''.b
            a2 = ''.b
            prefix.scan(/[0-9A-Fa-f]+/) {|hex| a1 << [hex.hex].pack('n')}
            suffix.scan(/[0-9A-Fa-f]+/) {|hex| a2 << [hex.hex].pack('n')}
            omitlen = 12 - a1.length - a2.length
            address << a1 << "\0" * omitlen << a2 << [a, b, c, d].pack('CCCC')
          else
            raise ArgumentError.new("not numeric IPv6 address: " + arg)
          end
        else
          raise ArgumentError.new("not numeric IPv6 address: " + arg)
        end
        return IPv6.new(address)
      else
        raise ArgumentError.new("cannot interpret as IPv6 address: #{arg.inspect}")
      end
    end

    def initialize(address) # :nodoc:
      unless address.kind_of?(String) && address.length == 16
        raise ArgumentError.new('IPv6 address must be 16 bytes')
      end
      @address = address
    end

    ##
    # The raw IPv6 address as a String.

    attr_reader :address

    def to_s # :nodoc:
      address = sprintf("%x:%x:%x:%x:%x:%x:%x:%x", *@address.unpack("nnnnnnnn"))
      unless address.sub!(/(^|:)0(:0)+(:|$)/, '::')
        address.sub!(/(^|:)0(:|$)/, '::')
      end
      return address
    end

    def inspect # :nodoc:
      return "#<#{self.class} #{self}>"
    end

    ##
    # Turns this IPv6 address into a Resolv::DNS::Name.
    #--
    # ip6.arpa should be searched too. [RFC3152]

    def to_name
      return DNS::Name.new(
        @address.unpack("H32")[0].split(//).reverse + ['ip6', 'arpa'])
    end

    def ==(other) # :nodoc:
      return @address == other.address
    end

    def eql?(other) # :nodoc:
      return self == other
    end

    def hash # :nodoc:
      return @address.hash
    end
  end

  ##
  # Resolv::MDNS is a one-shot Multicast DNS (mDNS) resolver.  It blindly
  # makes queries to the mDNS addresses without understanding anything about
  # multicast ports.
  #
  # Information taken form the following places:
  #
  # * RFC 6762

  class MDNS < DNS

    ##
    # Default mDNS Port

    Port = 5353

    ##
    # Default IPv4 mDNS address

    AddressV4 = '224.0.0.251'

    ##
    # Default IPv6 mDNS address

    AddressV6 = 'ff02::fb'

    ##
    # Default mDNS addresses

    Addresses = [
      [AddressV4, Port],
      [AddressV6, Port],
    ]

    ##
    # Creates a new one-shot Multicast DNS (mDNS) resolver.
    #
    # +config_info+ can be:
    #
    # nil::
    #   Uses the default mDNS addresses
    #
    # Hash::
    #   Must contain :nameserver or :nameserver_port like
    #   Resolv::DNS#initialize.

    def initialize(config_info=nil)
      if config_info then
        super({ nameserver_port: Addresses }.merge(config_info))
      else
        super(nameserver_port: Addresses)
      end
    end

    ##
    # Iterates over all IP addresses for +name+ retrieved from the mDNS
    # resolver, provided name ends with "local".  If the name does not end in
    # "local" no records will be returned.
    #
    # +name+ can be a Resolv::DNS::Name or a String.  Retrieved addresses will
    # be a Resolv::IPv4 or Resolv::IPv6

    def each_address(name)
      name = Resolv::DNS::Name.create(name)

      return unless name[-1].to_s == 'local'

      super(name)
    end

    def make_udp_requester # :nodoc:
      nameserver_port = @config.nameserver_port
      Requester::MDNSOneShot.new(*nameserver_port)
    end

  end

  module LOC

    ##
    # A Resolv::LOC::Size

    class Size

      Regex = /^(\d+\.*\d*)[m]$/

      ##
      # Creates a new LOC::Size from +arg+ which may be:
      #
      # LOC::Size:: returns +arg+.
      # String:: +arg+ must match the LOC::Size::Regex constant

      def self.create(arg)
        case arg
        when Size
          return arg
        when String
          scalar = ''
          if Regex =~ arg
            scalar = [(($1.to_f*(1e2)).to_i.to_s[0].to_i*(2**4)+(($1.to_f*(1e2)).to_i.to_s.length-1))].pack("C")
          else
            raise ArgumentError.new("not a properly formed Size string: " + arg)
          end
          return Size.new(scalar)
        else
          raise ArgumentError.new("cannot interpret as Size: #{arg.inspect}")
        end
      end

      def initialize(scalar)
        @scalar = scalar
      end

      ##
      # The raw size

      attr_reader :scalar

      def to_s # :nodoc:
        s = @scalar.unpack("H2").join.to_s
        return ((s[0].to_i)*(10**(s[1].to_i-2))).to_s << "m"
      end

      def inspect # :nodoc:
        return "#<#{self.class} #{self}>"
      end

      def ==(other) # :nodoc:
        return @scalar == other.scalar
      end

      def eql?(other) # :nodoc:
        return self == other
      end

      def hash # :nodoc:
        return @scalar.hash
      end

    end

    ##
    # A Resolv::LOC::Coord

    class Coord

      Regex = /^(\d+)\s(\d+)\s(\d+\.\d+)\s([NESW])$/

      ##
      # Creates a new LOC::Coord from +arg+ which may be:
      #
      # LOC::Coord:: returns +arg+.
      # String:: +arg+ must match the LOC::Coord::Regex constant

      def self.create(arg)
        case arg
        when Coord
          return arg
        when String
          coordinates = ''
          if Regex =~ arg && $1.to_f < 180
            m = $~
            hemi = (m[4][/[NE]/]) || (m[4][/[SW]/]) ? 1 : -1
            coordinates = [ ((m[1].to_i*(36e5)) + (m[2].to_i*(6e4)) +
                             (m[3].to_f*(1e3))) * hemi+(2**31) ].pack("N")
            orientation = m[4][/[NS]/] ? 'lat' : 'lon'
          else
            raise ArgumentError.new("not a properly formed Coord string: " + arg)
          end
          return Coord.new(coordinates,orientation)
        else
          raise ArgumentError.new("cannot interpret as Coord: #{arg.inspect}")
        end
      end

      def initialize(coordinates,orientation)
        unless coordinates.kind_of?(String)
          raise ArgumentError.new("Coord must be a 32bit unsigned integer in hex format: #{coordinates.inspect}")
        end
        unless orientation.kind_of?(String) && orientation[/^lon$|^lat$/]
          raise ArgumentError.new('Coord expects orientation to be a String argument of "lat" or "lon"')
        end
        @coordinates = coordinates
        @orientation = orientation
      end

      ##
      # The raw coordinates

      attr_reader :coordinates

      ## The orientation of the hemisphere as 'lat' or 'lon'

      attr_reader :orientation

      def to_s # :nodoc:
          c = @coordinates.unpack("N").join.to_i
          val      = (c - (2**31)).abs
          fracsecs = (val % 1e3).to_i.to_s
          val      = val / 1e3
          secs     = (val % 60).to_i.to_s
          val      = val / 60
          mins     = (val % 60).to_i.to_s
          degs     = (val / 60).to_i.to_s
          posi = (c >= 2**31)
          case posi
          when true
            hemi = @orientation[/^lat$/] ? "N" : "E"
          else
            hemi = @orientation[/^lon$/] ? "W" : "S"
          end
          return degs << " " << mins << " " << secs << "." << fracsecs << " " << hemi
      end

      def inspect # :nodoc:
        return "#<#{self.class} #{self}>"
      end

      def ==(other) # :nodoc:
        return @coordinates == other.coordinates
      end

      def eql?(other) # :nodoc:
        return self == other
      end

      def hash # :nodoc:
        return @coordinates.hash
      end

    end

    ##
    # A Resolv::LOC::Alt

    class Alt

      Regex = /^([+-]*\d+\.*\d*)[m]$/

      ##
      # Creates a new LOC::Alt from +arg+ which may be:
      #
      # LOC::Alt:: returns +arg+.
      # String:: +arg+ must match the LOC::Alt::Regex constant

      def self.create(arg)
        case arg
        when Alt
          return arg
        when String
          altitude = ''
          if Regex =~ arg
            altitude = [($1.to_f*(1e2))+(1e7)].pack("N")
          else
            raise ArgumentError.new("not a properly formed Alt string: " + arg)
          end
          return Alt.new(altitude)
        else
          raise ArgumentError.new("cannot interpret as Alt: #{arg.inspect}")
        end
      end

      def initialize(altitude)
        @altitude = altitude
      end

      ##
      # The raw altitude

      attr_reader :altitude

      def to_s # :nodoc:
        a = @altitude.unpack("N").join.to_i
        return ((a.to_f/1e2)-1e5).to_s + "m"
      end

      def inspect # :nodoc:
        return "#<#{self.class} #{self}>"
      end

      def ==(other) # :nodoc:
        return @altitude == other.altitude
      end

      def eql?(other) # :nodoc:
        return self == other
      end

      def hash # :nodoc:
        return @altitude.hash
      end

    end

  end

  ##
  # Default resolver to use for Resolv class methods.

  DefaultResolver = self.new

  ##
  # Replaces the resolvers in the default resolver with +new_resolvers+.  This
  # allows resolvers to be changed for resolv-replace.

  def DefaultResolver.replace_resolvers new_resolvers
    @resolvers = new_resolvers
  end

  ##
  # Address Regexp to use for matching IP addresses.

  AddressRegex = /(?:#{IPv4::Regex})|(?:#{IPv6::Regex})/

end

PKDH[�T�``share/ruby/time.rbnu�[���# frozen_string_literal: true

require 'date'

# :stopdoc:

# = time.rb
#
# When 'time' is required, Time is extended with additional methods for parsing
# and converting Times.
#
# == Features
#
# This library extends the Time class with the following conversions between
# date strings and Time objects:
#
# * date-time defined by {RFC 2822}[http://www.ietf.org/rfc/rfc2822.txt]
# * HTTP-date defined by {RFC 2616}[http://www.ietf.org/rfc/rfc2616.txt]
# * dateTime defined by XML Schema Part 2: Datatypes ({ISO
#   8601}[http://www.iso.org/iso/date_and_time_format])
# * various formats handled by Date._parse
# * custom formats handled by Date._strptime

# :startdoc:

class Time
  class << Time

    #
    # A hash of timezones mapped to hour differences from UTC. The
    # set of time zones corresponds to the ones specified by RFC 2822
    # and ISO 8601.
    #
    ZoneOffset = { # :nodoc:
      'UTC' => 0,
      # ISO 8601
      'Z' => 0,
      # RFC 822
      'UT' => 0, 'GMT' => 0,
      'EST' => -5, 'EDT' => -4,
      'CST' => -6, 'CDT' => -5,
      'MST' => -7, 'MDT' => -6,
      'PST' => -8, 'PDT' => -7,
      # Following definition of military zones is original one.
      # See RFC 1123 and RFC 2822 for the error in RFC 822.
      'A' => +1, 'B' => +2, 'C' => +3, 'D' => +4,  'E' => +5,  'F' => +6,
      'G' => +7, 'H' => +8, 'I' => +9, 'K' => +10, 'L' => +11, 'M' => +12,
      'N' => -1, 'O' => -2, 'P' => -3, 'Q' => -4,  'R' => -5,  'S' => -6,
      'T' => -7, 'U' => -8, 'V' => -9, 'W' => -10, 'X' => -11, 'Y' => -12,
    }

    #
    # Return the number of seconds the specified time zone differs
    # from UTC.
    #
    # Numeric time zones that include minutes, such as
    # <code>-10:00</code> or <code>+1330</code> will work, as will
    # simpler hour-only time zones like <code>-10</code> or
    # <code>+13</code>.
    #
    # Textual time zones listed in ZoneOffset are also supported.
    #
    # If the time zone does not match any of the above, +zone_offset+
    # will check if the local time zone (both with and without
    # potential Daylight Saving \Time changes being in effect) matches
    # +zone+. Specifying a value for +year+ will change the year used
    # to find the local time zone.
    #
    # If +zone_offset+ is unable to determine the offset, nil will be
    # returned.
    #
    #     require 'time'
    #
    #     Time.zone_offset("EST") #=> -18000
    #
    # You must require 'time' to use this method.
    #
    def zone_offset(zone, year=self.now.year)
      off = nil
      zone = zone.upcase
      if /\A([+-])(\d\d)(:?)(\d\d)(?:\3(\d\d))?\z/ =~ zone
        off = ($1 == '-' ? -1 : 1) * (($2.to_i * 60 + $4.to_i) * 60 + $5.to_i)
      elsif zone.match?(/\A[+-]\d\d\z/)
        off = zone.to_i * 3600
      elsif ZoneOffset.include?(zone)
        off = ZoneOffset[zone] * 3600
      elsif ((t = self.local(year, 1, 1)).zone.upcase == zone rescue false)
        off = t.utc_offset
      elsif ((t = self.local(year, 7, 1)).zone.upcase == zone rescue false)
        off = t.utc_offset
      end
      off
    end

    def zone_utc?(zone)
      # * +0000
      #   In RFC 2822, +0000 indicate a time zone at Universal Time.
      #   Europe/Lisbon is "a time zone at Universal Time" in Winter.
      #   Atlantic/Reykjavik is "a time zone at Universal Time".
      #   Africa/Dakar is "a time zone at Universal Time".
      #   So +0000 is a local time such as Europe/London, etc.
      # * GMT
      #   GMT is used as a time zone abbreviation in Europe/London,
      #   Africa/Dakar, etc.
      #   So it is a local time.
      #
      # * -0000, -00:00
      #   In RFC 2822, -0000 the date-time contains no information about the
      #   local time zone.
      #   In RFC 3339, -00:00 is used for the time in UTC is known,
      #   but the offset to local time is unknown.
      #   They are not appropriate for specific time zone such as
      #   Europe/London because time zone neutral,
      #   So -00:00 and -0000 are treated as UTC.
      zone.match?(/\A(?:-00:00|-0000|-00|UTC|Z|UT)\z/i)
    end
    private :zone_utc?

    def force_zone!(t, zone, offset=nil)
      if zone_utc?(zone)
        t.utc
      elsif offset ||= zone_offset(zone)
        # Prefer the local timezone over the fixed offset timezone because
        # the former is a real timezone and latter is an artificial timezone.
        t.localtime
        if t.utc_offset != offset
          # Use the fixed offset timezone only if the local timezone cannot
          # represent the given offset.
          t.localtime(offset)
        end
      else
        t.localtime
      end
    end
    private :force_zone!

    LeapYearMonthDays = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # :nodoc:
    CommonYearMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # :nodoc:
    def month_days(y, m)
      if ((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0)
        LeapYearMonthDays[m-1]
      else
        CommonYearMonthDays[m-1]
      end
    end
    private :month_days

    def apply_offset(year, mon, day, hour, min, sec, off)
      if off < 0
        off = -off
        off, o = off.divmod(60)
        if o != 0 then sec += o; o, sec = sec.divmod(60); off += o end
        off, o = off.divmod(60)
        if o != 0 then min += o; o, min = min.divmod(60); off += o end
        off, o = off.divmod(24)
        if o != 0 then hour += o; o, hour = hour.divmod(24); off += o end
        if off != 0
          day += off
          days = month_days(year, mon)
          if days and days < day
            mon += 1
            if 12 < mon
              mon = 1
              year += 1
            end
            day = 1
          end
        end
      elsif 0 < off
        off, o = off.divmod(60)
        if o != 0 then sec -= o; o, sec = sec.divmod(60); off -= o end
        off, o = off.divmod(60)
        if o != 0 then min -= o; o, min = min.divmod(60); off -= o end
        off, o = off.divmod(24)
        if o != 0 then hour -= o; o, hour = hour.divmod(24); off -= o end
        if off != 0 then
          day -= off
          if day < 1
            mon -= 1
            if mon < 1
              year -= 1
              mon = 12
            end
            day = month_days(year, mon)
          end
        end
      end
      return year, mon, day, hour, min, sec
    end
    private :apply_offset

    def make_time(date, year, yday, mon, day, hour, min, sec, sec_fraction, zone, now)
      if !year && !yday && !mon && !day && !hour && !min && !sec && !sec_fraction
        raise ArgumentError, "no time information in #{date.inspect}"
      end

      off = nil
      if year || now
        off_year = year || now.year
        off = zone_offset(zone, off_year) if zone
      end

      if yday
        unless (1..366) === yday
          raise ArgumentError, "yday #{yday} out of range"
        end
        mon, day = (yday-1).divmod(31)
        mon += 1
        day += 1
        t = make_time(date, year, nil, mon, day, hour, min, sec, sec_fraction, zone, now)
        diff = yday - t.yday
        return t if diff.zero?
        day += diff
        if day > 28 and day > (mday = month_days(off_year, mon))
          if (mon += 1) > 12
            raise ArgumentError, "yday #{yday} out of range"
          end
          day -= mday
        end
        return make_time(date, year, nil, mon, day, hour, min, sec, sec_fraction, zone, now)
      end

      if now and now.respond_to?(:getlocal)
        if off
          now = now.getlocal(off) if now.utc_offset != off
        else
          now = now.getlocal
        end
      end

      usec = nil
      usec = sec_fraction * 1000000 if sec_fraction

      if now
        begin
          break if year; year = now.year
          break if mon; mon = now.mon
          break if day; day = now.day
          break if hour; hour = now.hour
          break if min; min = now.min
          break if sec; sec = now.sec
          break if sec_fraction; usec = now.tv_usec
        end until true
      end

      year ||= 1970
      mon ||= 1
      day ||= 1
      hour ||= 0
      min ||= 0
      sec ||= 0
      usec ||= 0

      if year != off_year
        off = nil
        off = zone_offset(zone, year) if zone
      end

      if off
        year, mon, day, hour, min, sec =
          apply_offset(year, mon, day, hour, min, sec, off)
        t = self.utc(year, mon, day, hour, min, sec, usec)
        force_zone!(t, zone, off)
        t
      else
        self.local(year, mon, day, hour, min, sec, usec)
      end
    end
    private :make_time

    #
    # Takes a string representation of a Time and attempts to parse it
    # using a heuristic.
    #
    #     require 'time'
    #
    #     Time.parse("2010-10-31") #=> 2010-10-31 00:00:00 -0500
    #
    # Any missing pieces of the date are inferred based on the current date.
    #
    #     require 'time'
    #
    #     # assuming the current date is "2011-10-31"
    #     Time.parse("12:00") #=> 2011-10-31 12:00:00 -0500
    #
    # We can change the date used to infer our missing elements by passing a second
    # object that responds to #mon, #day and #year, such as Date, Time or DateTime.
    # We can also use our own object.
    #
    #     require 'time'
    #
    #     class MyDate
    #       attr_reader :mon, :day, :year
    #
    #       def initialize(mon, day, year)
    #         @mon, @day, @year = mon, day, year
    #       end
    #     end
    #
    #     d  = Date.parse("2010-10-28")
    #     t  = Time.parse("2010-10-29")
    #     dt = DateTime.parse("2010-10-30")
    #     md = MyDate.new(10,31,2010)
    #
    #     Time.parse("12:00", d)  #=> 2010-10-28 12:00:00 -0500
    #     Time.parse("12:00", t)  #=> 2010-10-29 12:00:00 -0500
    #     Time.parse("12:00", dt) #=> 2010-10-30 12:00:00 -0500
    #     Time.parse("12:00", md) #=> 2010-10-31 12:00:00 -0500
    #
    # If a block is given, the year described in +date+ is converted
    # by the block.  This is specifically designed for handling two
    # digit years. For example, if you wanted to treat all two digit
    # years prior to 70 as the year 2000+ you could write this:
    #
    #     require 'time'
    #
    #     Time.parse("01-10-31") {|year| year + (year < 70 ? 2000 : 1900)}
    #     #=> 2001-10-31 00:00:00 -0500
    #     Time.parse("70-10-31") {|year| year + (year < 70 ? 2000 : 1900)}
    #     #=> 1970-10-31 00:00:00 -0500
    #
    # If the upper components of the given time are broken or missing, they are
    # supplied with those of +now+.  For the lower components, the minimum
    # values (1 or 0) are assumed if broken or missing.  For example:
    #
    #     require 'time'
    #
    #     # Suppose it is "Thu Nov 29 14:33:20 2001" now and
    #     # your time zone is EST which is GMT-5.
    #     now = Time.parse("Thu Nov 29 14:33:20 2001")
    #     Time.parse("16:30", now)     #=> 2001-11-29 16:30:00 -0500
    #     Time.parse("7/23", now)      #=> 2001-07-23 00:00:00 -0500
    #     Time.parse("Aug 31", now)    #=> 2001-08-31 00:00:00 -0500
    #     Time.parse("Aug 2000", now)  #=> 2000-08-01 00:00:00 -0500
    #
    # Since there are numerous conflicts among locally defined time zone
    # abbreviations all over the world, this method is not intended to
    # understand all of them.  For example, the abbreviation "CST" is
    # used variously as:
    #
    #     -06:00 in America/Chicago,
    #     -05:00 in America/Havana,
    #     +08:00 in Asia/Harbin,
    #     +09:30 in Australia/Darwin,
    #     +10:30 in Australia/Adelaide,
    #     etc.
    #
    # Based on this fact, this method only understands the time zone
    # abbreviations described in RFC 822 and the system time zone, in the
    # order named. (i.e. a definition in RFC 822 overrides the system
    # time zone definition.)  The system time zone is taken from
    # <tt>Time.local(year, 1, 1).zone</tt> and
    # <tt>Time.local(year, 7, 1).zone</tt>.
    # If the extracted time zone abbreviation does not match any of them,
    # it is ignored and the given time is regarded as a local time.
    #
    # ArgumentError is raised if Date._parse cannot extract information from
    # +date+ or if the Time class cannot represent specified date.
    #
    # This method can be used as a fail-safe for other parsing methods as:
    #
    #   Time.rfc2822(date) rescue Time.parse(date)
    #   Time.httpdate(date) rescue Time.parse(date)
    #   Time.xmlschema(date) rescue Time.parse(date)
    #
    # A failure of Time.parse should be checked, though.
    #
    # You must require 'time' to use this method.
    #
    def parse(date, now=self.now)
      comp = !block_given?
      d = Date._parse(date, comp)
      year = d[:year]
      year = yield(year) if year && !comp
      make_time(date, year, d[:yday], d[:mon], d[:mday], d[:hour], d[:min], d[:sec], d[:sec_fraction], d[:zone], now)
    end

    #
    # Works similar to +parse+ except that instead of using a
    # heuristic to detect the format of the input string, you provide
    # a second argument that describes the format of the string.
    #
    # If a block is given, the year described in +date+ is converted by the
    # block.  For example:
    #
    #   Time.strptime(...) {|y| y < 100 ? (y >= 69 ? y + 1900 : y + 2000) : y}
    #
    # Below is a list of the formatting options:
    #
    # %a :: The abbreviated weekday name ("Sun")
    # %A :: The  full  weekday  name ("Sunday")
    # %b :: The abbreviated month name ("Jan")
    # %B :: The  full  month  name ("January")
    # %c :: The preferred local date and time representation
    # %C :: Century (20 in 2009)
    # %d :: Day of the month (01..31)
    # %D :: Date (%m/%d/%y)
    # %e :: Day of the month, blank-padded ( 1..31)
    # %F :: Equivalent to %Y-%m-%d (the ISO 8601 date format)
    # %g :: The last two digits of the commercial year
    # %G :: The week-based year according to ISO-8601 (week 1 starts on Monday
    #       and includes January 4)
    # %h :: Equivalent to %b
    # %H :: Hour of the day, 24-hour clock (00..23)
    # %I :: Hour of the day, 12-hour clock (01..12)
    # %j :: Day of the year (001..366)
    # %k :: hour, 24-hour clock, blank-padded ( 0..23)
    # %l :: hour, 12-hour clock, blank-padded ( 0..12)
    # %L :: Millisecond of the second (000..999)
    # %m :: Month of the year (01..12)
    # %M :: Minute of the hour (00..59)
    # %n :: Newline (\n)
    # %N :: Fractional seconds digits
    # %p :: Meridian indicator ("AM" or "PM")
    # %P :: Meridian indicator ("am" or "pm")
    # %r :: time, 12-hour (same as %I:%M:%S %p)
    # %R :: time, 24-hour (%H:%M)
    # %s :: Number of seconds since 1970-01-01 00:00:00 UTC.
    # %S :: Second of the minute (00..60)
    # %t :: Tab character (\t)
    # %T :: time, 24-hour (%H:%M:%S)
    # %u :: Day of the week as a decimal, Monday being 1. (1..7)
    # %U :: Week number of the current year, starting with the first Sunday as
    #       the first day of the first week (00..53)
    # %v :: VMS date (%e-%b-%Y)
    # %V :: Week number of year according to ISO 8601 (01..53)
    # %W :: Week  number  of the current year, starting with the first Monday
    #       as the first day of the first week (00..53)
    # %w :: Day of the week (Sunday is 0, 0..6)
    # %x :: Preferred representation for the date alone, no time
    # %X :: Preferred representation for the time alone, no date
    # %y :: Year without a century (00..99)
    # %Y :: Year which may include century, if provided
    # %z :: Time zone as  hour offset from UTC (e.g. +0900)
    # %Z :: Time zone name
    # %% :: Literal "%" character
    # %+ :: date(1) (%a %b %e %H:%M:%S %Z %Y)
    #
    #     require 'time'
    #
    #     Time.strptime("2000-10-31", "%Y-%m-%d") #=> 2000-10-31 00:00:00 -0500
    #
    # You must require 'time' to use this method.
    #
    def strptime(date, format, now=self.now)
      d = Date._strptime(date, format)
      raise ArgumentError, "invalid date or strptime format - `#{date}' `#{format}'" unless d
      if seconds = d[:seconds]
        if sec_fraction = d[:sec_fraction]
          usec = sec_fraction * 1000000
          usec *= -1 if seconds < 0
        else
          usec = 0
        end
        t = Time.at(seconds, usec)
        if zone = d[:zone]
          force_zone!(t, zone)
        end
      else
        year = d[:year]
        year = yield(year) if year && block_given?
        yday = d[:yday]
        if (d[:cwyear] && !year) || ((d[:cwday] || d[:cweek]) && !(d[:mon] && d[:mday]))
          # make_time doesn't deal with cwyear/cwday/cweek
          return Date.strptime(date, format).to_time
        end
        if (d[:wnum0] || d[:wnum1]) && !yday && !(d[:mon] && d[:mday])
          yday = Date.strptime(date, format).yday
        end
        t = make_time(date, year, yday, d[:mon], d[:mday], d[:hour], d[:min], d[:sec], d[:sec_fraction], d[:zone], now)
      end
      t
    end

    MonthValue = { # :nodoc:
      'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6,
      'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' =>10, 'NOV' =>11, 'DEC' =>12
    }

    #
    # Parses +date+ as date-time defined by RFC 2822 and converts it to a Time
    # object.  The format is identical to the date format defined by RFC 822 and
    # updated by RFC 1123.
    #
    # ArgumentError is raised if +date+ is not compliant with RFC 2822
    # or if the Time class cannot represent specified date.
    #
    # See #rfc2822 for more information on this format.
    #
    #     require 'time'
    #
    #     Time.rfc2822("Wed, 05 Oct 2011 22:26:12 -0400")
    #     #=> 2010-10-05 22:26:12 -0400
    #
    # You must require 'time' to use this method.
    #
    def rfc2822(date)
      if /\A\s*
          (?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\s*,\s*)?
          (\d{1,2})\s+
          (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+
          (\d{2,})\s+
          (\d{2})\s*
          :\s*(\d{2})
          (?:\s*:\s*(\d\d))?\s+
          ([+-]\d{4}|
           UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Z])/ix =~ date
        # Since RFC 2822 permit comments, the regexp has no right anchor.
        day = $1.to_i
        mon = MonthValue[$2.upcase]
        year = $3.to_i
        short_year_p = $3.length <= 3
        hour = $4.to_i
        min = $5.to_i
        sec = $6 ? $6.to_i : 0
        zone = $7

        if short_year_p
          # following year completion is compliant with RFC 2822.
          year = if year < 50
                   2000 + year
                 else
                   1900 + year
                 end
        end

        off = zone_offset(zone)
        year, mon, day, hour, min, sec =
          apply_offset(year, mon, day, hour, min, sec, off)
        t = self.utc(year, mon, day, hour, min, sec)
        force_zone!(t, zone, off)
        t
      else
        raise ArgumentError.new("not RFC 2822 compliant date: #{date.inspect}")
      end
    end
    alias rfc822 rfc2822

    #
    # Parses +date+ as an HTTP-date defined by RFC 2616 and converts it to a
    # Time object.
    #
    # ArgumentError is raised if +date+ is not compliant with RFC 2616 or if
    # the Time class cannot represent specified date.
    #
    # See #httpdate for more information on this format.
    #
    #     require 'time'
    #
    #     Time.httpdate("Thu, 06 Oct 2011 02:26:12 GMT")
    #     #=> 2011-10-06 02:26:12 UTC
    #
    # You must require 'time' to use this method.
    #
    def httpdate(date)
      if date.match?(/\A\s*
          (?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),\x20
          (\d{2})\x20
          (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\x20
          (\d{4})\x20
          (\d{2}):(\d{2}):(\d{2})\x20
          GMT
          \s*\z/ix)
        self.rfc2822(date).utc
      elsif /\A\s*
             (?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday),\x20
             (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d)\x20
             (\d\d):(\d\d):(\d\d)\x20
             GMT
             \s*\z/ix =~ date
        year = $3.to_i
        if year < 50
          year += 2000
        else
          year += 1900
        end
        self.utc(year, $2, $1.to_i, $4.to_i, $5.to_i, $6.to_i)
      elsif /\A\s*
             (?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)\x20
             (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\x20
             (\d\d|\x20\d)\x20
             (\d\d):(\d\d):(\d\d)\x20
             (\d{4})
             \s*\z/ix =~ date
        self.utc($6.to_i, MonthValue[$1.upcase], $2.to_i,
                 $3.to_i, $4.to_i, $5.to_i)
      else
        raise ArgumentError.new("not RFC 2616 compliant date: #{date.inspect}")
      end
    end

    #
    # Parses +date+ as a dateTime defined by the XML Schema and converts it to
    # a Time object.  The format is a restricted version of the format defined
    # by ISO 8601.
    #
    # ArgumentError is raised if +date+ is not compliant with the format or if
    # the Time class cannot represent specified date.
    #
    # See #xmlschema for more information on this format.
    #
    #     require 'time'
    #
    #     Time.xmlschema("2011-10-05T22:26:12-04:00")
    #     #=> 2011-10-05 22:26:12-04:00
    #
    # You must require 'time' to use this method.
    #
    def xmlschema(date)
      if /\A\s*
          (-?\d+)-(\d\d)-(\d\d)
          T
          (\d\d):(\d\d):(\d\d)
          (\.\d+)?
          (Z|[+-]\d\d(?::?\d\d)?)?
          \s*\z/ix =~ date
        year = $1.to_i
        mon = $2.to_i
        day = $3.to_i
        hour = $4.to_i
        min = $5.to_i
        sec = $6.to_i
        usec = 0
        if $7
          usec = Rational($7) * 1000000
        end
        if $8
          zone = $8
          off = zone_offset(zone)
          year, mon, day, hour, min, sec =
            apply_offset(year, mon, day, hour, min, sec, off)
          t = self.utc(year, mon, day, hour, min, sec, usec)
          force_zone!(t, zone, off)
          t
        else
          self.local(year, mon, day, hour, min, sec, usec)
        end
      else
        raise ArgumentError.new("invalid date: #{date.inspect}")
      end
    end
    alias iso8601 xmlschema
  end # class << self

  #
  # Returns a string which represents the time as date-time defined by RFC 2822:
  #
  #   day-of-week, DD month-name CCYY hh:mm:ss zone
  #
  # where zone is [+-]hhmm.
  #
  # If +self+ is a UTC time, -0000 is used as zone.
  #
  #     require 'time'
  #
  #     t = Time.now
  #     t.rfc2822  # => "Wed, 05 Oct 2011 22:26:12 -0400"
  #
  # You must require 'time' to use this method.
  #
  def rfc2822
    sprintf('%s, %02d %s %0*d %02d:%02d:%02d ',
      RFC2822_DAY_NAME[wday],
      day, RFC2822_MONTH_NAME[mon-1], year < 0 ? 5 : 4, year,
      hour, min, sec) <<
    if utc?
      '-0000'
    else
      off = utc_offset
      sign = off < 0 ? '-' : '+'
      sprintf('%s%02d%02d', sign, *(off.abs / 60).divmod(60))
    end
  end
  alias rfc822 rfc2822


  RFC2822_DAY_NAME = [ # :nodoc:
    'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
  ]

  RFC2822_MONTH_NAME = [ # :nodoc:
    'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
  ]

  #
  # Returns a string which represents the time as RFC 1123 date of HTTP-date
  # defined by RFC 2616:
  #
  #   day-of-week, DD month-name CCYY hh:mm:ss GMT
  #
  # Note that the result is always UTC (GMT).
  #
  #     require 'time'
  #
  #     t = Time.now
  #     t.httpdate # => "Thu, 06 Oct 2011 02:26:12 GMT"
  #
  # You must require 'time' to use this method.
  #
  def httpdate
    t = dup.utc
    sprintf('%s, %02d %s %0*d %02d:%02d:%02d GMT',
      RFC2822_DAY_NAME[t.wday],
      t.day, RFC2822_MONTH_NAME[t.mon-1], t.year < 0 ? 5 : 4, t.year,
      t.hour, t.min, t.sec)
  end

  #
  # Returns a string which represents the time as a dateTime defined by XML
  # Schema:
  #
  #   CCYY-MM-DDThh:mm:ssTZD
  #   CCYY-MM-DDThh:mm:ss.sssTZD
  #
  # where TZD is Z or [+-]hh:mm.
  #
  # If self is a UTC time, Z is used as TZD.  [+-]hh:mm is used otherwise.
  #
  # +fractional_digits+ specifies a number of digits to use for fractional
  # seconds.  Its default value is 0.
  #
  #     require 'time'
  #
  #     t = Time.now
  #     t.iso8601  # => "2011-10-05T22:26:12-04:00"
  #
  # You must require 'time' to use this method.
  #
  def xmlschema(fraction_digits=0)
    fraction_digits = fraction_digits.to_i
    s = strftime("%FT%T")
    if fraction_digits > 0
      s << strftime(".%#{fraction_digits}N")
    end
    s << (utc? ? 'Z' : strftime("%:z"))
  end
  alias iso8601 xmlschema
end

PKDH[%share/gems/gems/psych-3.1.0/lib/psychnuȯ��PKDH[)iT���share/ruby/expect.rbnu�[���# frozen_string_literal: true
$expect_verbose = false

# Expect library adds the IO instance method #expect, which does similar act to
# tcl's expect extension.
#
# In order to use this method, you must require expect:
#
#   require 'expect'
#
# Please see #expect for usage.
class IO
  # call-seq:
  #   IO#expect(pattern,timeout=9999999)                  ->  Array
  #   IO#expect(pattern,timeout=9999999) { |result| ... } ->  nil
  #
  # Reads from the IO until the given +pattern+ matches or the +timeout+ is over.
  #
  # It returns an array with the read buffer, followed by the matches.
  # If a block is given, the result is yielded to the block and returns nil.
  #
  # When called without a block, it waits until the input that matches the
  # given +pattern+ is obtained from the IO or the time specified as the
  # timeout passes. An array is returned when the pattern is obtained from the
  # IO. The first element of the array is the entire string obtained from the
  # IO until the pattern matches, followed by elements indicating which the
  # pattern which matched to the anchor in the regular expression.
  #
  # The optional timeout parameter defines, in seconds, the total time to wait
  # for the pattern.  If the timeout expires or eof is found, nil is returned
  # or yielded.  However, the buffer in a timeout session is kept for the next
  # expect call.  The default timeout is 9999999 seconds.
  def expect(pat,timeout=9999999)
    buf = ''.dup
    case pat
    when String
      e_pat = Regexp.new(Regexp.quote(pat))
    when Regexp
      e_pat = pat
    else
      raise TypeError, "unsupported pattern class: #{pat.class}"
    end
    @unusedBuf ||= ''
    while true
      if not @unusedBuf.empty?
        c = @unusedBuf.slice!(0)
      elsif !IO.select([self],nil,nil,timeout) or eof? then
        result = nil
        @unusedBuf = buf
        break
      else
        c = getc
      end
      buf << c
      if $expect_verbose
        STDOUT.print c
        STDOUT.flush
      end
      if mat=e_pat.match(buf) then
        result = [buf,*mat.captures]
        break
      end
    end
    if block_given? then
      yield result
    else
      return result
    end
    nil
  end
end
PKDH[	B�@��#share/ruby/rexml/dtd/attlistdecl.rbnu�[���# frozen_string_literal: false
require_relative "../child"
module REXML
  module DTD
    class AttlistDecl < Child
      START = "<!ATTLIST"
      START_RE = /^\s*#{START}/um
      PATTERN_RE = /\s*(#{START}.*?>)/um
    end
  end
end
PKDH[������"share/ruby/rexml/dtd/entitydecl.rbnu�[���# frozen_string_literal: false
require_relative "../child"
module REXML
  module DTD
    class EntityDecl < Child
      START = "<!ENTITY"
      START_RE = /^\s*#{START}/um
      PUBLIC = /^\s*#{START}\s+(?:%\s+)?(\w+)\s+PUBLIC\s+((["']).*?\3)\s+((["']).*?\5)\s*>/um
      SYSTEM = /^\s*#{START}\s+(?:%\s+)?(\w+)\s+SYSTEM\s+((["']).*?\3)(?:\s+NDATA\s+\w+)?\s*>/um
      PLAIN = /^\s*#{START}\s+(\w+)\s+((["']).*?\3)\s*>/um
      PERCENT = /^\s*#{START}\s+%\s+(\w+)\s+((["']).*?\3)\s*>/um
      # <!ENTITY name SYSTEM "...">
      # <!ENTITY name "...">
      def initialize src
        super()
        md = nil
        if src.match( PUBLIC )
          md = src.match( PUBLIC, true )
          @middle = "PUBLIC"
          @content = "#{md[2]} #{md[4]}"
        elsif src.match( SYSTEM )
          md = src.match( SYSTEM, true )
          @middle = "SYSTEM"
          @content = md[2]
        elsif src.match( PLAIN )
          md = src.match( PLAIN, true )
          @middle = ""
          @content = md[2]
        elsif src.match( PERCENT )
          md = src.match( PERCENT, true )
          @middle = ""
          @content = md[2]
        end
        raise ParseException.new("failed Entity match", src) if md.nil?
        @name = md[1]
      end

      def to_s
        rv = "<!ENTITY #@name "
        rv << "#@middle " if @middle.size > 0
        rv << @content
        rv
      end

      def write( output, indent )
        indent( output, indent )
        output << to_s
      end

      def EntityDecl.parse_source source, listener
        md = source.match( PATTERN_RE, true )
        thing = md[0].squeeze(" \t\n\r")
        listener.send inspect.downcase, thing
      end
    end
  end
end
PKDH[+yHH$share/ruby/rexml/dtd/notationdecl.rbnu�[���# frozen_string_literal: false
require_relative "../child"
module REXML
  module DTD
    class NotationDecl < Child
      START = "<!NOTATION"
      START_RE = /^\s*#{START}/um
      PUBLIC = /^\s*#{START}\s+(\w[\w-]*)\s+(PUBLIC)\s+((["']).*?\4)\s*>/um
      SYSTEM = /^\s*#{START}\s+(\w[\w-]*)\s+(SYSTEM)\s+((["']).*?\4)\s*>/um
      def initialize src
        super()
        if src.match( PUBLIC )
          md = src.match( PUBLIC, true )
        elsif src.match( SYSTEM )
          md = src.match( SYSTEM, true )
        else
          raise ParseException.new( "error parsing notation: no matching pattern", src )
        end
        @name = md[1]
        @middle = md[2]
        @rest = md[3]
      end

      def to_s
        "<!NOTATION #@name #@middle #@rest>"
      end

      def write( output, indent )
        indent( output, indent )
        output << to_s
      end

      def NotationDecl.parse_source source, listener
        md = source.match( PATTERN_RE, true )
        thing = md[0].squeeze(" \t\n\r")
        listener.send inspect.downcase, thing
      end
    end
  end
end
PKDH[T/����#share/ruby/rexml/dtd/elementdecl.rbnu�[���# frozen_string_literal: false
require_relative "../child"
module REXML
  module DTD
    class ElementDecl < Child
      START = "<!ELEMENT"
      START_RE = /^\s*#{START}/um
      # PATTERN_RE = /^\s*(#{START}.*?)>/um
      PATTERN_RE = /^\s*#{START}\s+((?:[:\w][-\.\w]*:)?[-!\*\.\w]*)(.*?)>/
      #\s*((((["']).*?\5)|[^\/'">]*)*?)(\/)?>/um, true)

      def initialize match
        @name = match[1]
        @rest = match[2]
      end
    end
  end
end
PKDH[��_��share/ruby/rexml/dtd/dtd.rbnu�[���# frozen_string_literal: false
require_relative "elementdecl"
require_relative "entitydecl"
require_relative "../comment"
require_relative "notationdecl"
require_relative "attlistdecl"
require_relative "../parent"

module REXML
  module DTD
    class Parser
      def Parser.parse( input )
        case input
        when String
          parse_helper input
        when File
          parse_helper input.read
        end
      end

      # Takes a String and parses it out
      def Parser.parse_helper( input )
        contents = Parent.new
        while input.size > 0
          case input
          when ElementDecl.PATTERN_RE
            match = $&
            contents << ElementDecl.new( match )
          when AttlistDecl.PATTERN_RE
            matchdata = $~
            contents << AttlistDecl.new( matchdata )
          when EntityDecl.PATTERN_RE
            matchdata = $~
            contents << EntityDecl.new( matchdata )
          when Comment.PATTERN_RE
            matchdata = $~
            contents << Comment.new( matchdata )
          when NotationDecl.PATTERN_RE
            matchdata = $~
            contents << NotationDecl.new( matchdata )
          end
        end
        contents
      end
    end
  end
end
PKDH[�f�O��share/ruby/rexml/element.rbnu�[���# frozen_string_literal: false
require_relative "parent"
require_relative "namespace"
require_relative "attribute"
require_relative "cdata"
require_relative "xpath"
require_relative "parseexception"

module REXML
  # An implementation note about namespaces:
  # As we parse, when we find namespaces we put them in a hash and assign
  # them a unique ID.  We then convert the namespace prefix for the node
  # to the unique ID.  This makes namespace lookup much faster for the
  # cost of extra memory use.  We save the namespace prefix for the
  # context node and convert it back when we write it.
  @@namespaces = {}

  # Represents a tagged XML element.  Elements are characterized by
  # having children, attributes, and names, and can themselves be
  # children.
  class Element < Parent
    include Namespace

    UNDEFINED = "UNDEFINED";            # The default name

    # Mechanisms for accessing attributes and child elements of this
    # element.
    attr_reader :attributes, :elements
    # The context holds information about the processing environment, such as
    # whitespace handling.
    attr_accessor :context

    # Constructor
    # arg::
    #   if not supplied, will be set to the default value.
    #   If a String, the name of this object will be set to the argument.
    #   If an Element, the object will be shallowly cloned; name,
    #   attributes, and namespaces will be copied.  Children will +not+ be
    #   copied.
    # parent::
    #   if supplied, must be a Parent, and will be used as
    #   the parent of this object.
    # context::
    #   If supplied, must be a hash containing context items.  Context items
    #   include:
    # * <tt>:respect_whitespace</tt> the value of this is :+all+ or an array of
    #   strings being the names of the elements to respect
    #   whitespace for.  Defaults to :+all+.
    # * <tt>:compress_whitespace</tt> the value can be :+all+ or an array of
    #   strings being the names of the elements to ignore whitespace on.
    #   Overrides :+respect_whitespace+.
    # * <tt>:ignore_whitespace_nodes</tt> the value can be :+all+ or an array
    #   of strings being the names of the elements in which to ignore
    #   whitespace-only nodes.  If this is set, Text nodes which contain only
    #   whitespace will not be added to the document tree.
    # * <tt>:raw</tt> can be :+all+, or an array of strings being the names of
    #   the elements to process in raw mode.  In raw mode, special
    #   characters in text is not converted to or from entities.
    def initialize( arg = UNDEFINED, parent=nil, context=nil )
      super(parent)

      @elements = Elements.new(self)
      @attributes = Attributes.new(self)
      @context = context

      if arg.kind_of? String
        self.name = arg
      elsif arg.kind_of? Element
        self.name = arg.expanded_name
        arg.attributes.each_attribute{ |attribute|
          @attributes << Attribute.new( attribute )
        }
        @context = arg.context
      end
    end

    def inspect
      rv = "<#@expanded_name"

      @attributes.each_attribute do |attr|
        rv << " "
        attr.write( rv, 0 )
      end

      if children.size > 0
        rv << "> ... </>"
      else
        rv << "/>"
      end
    end


    # Creates a shallow copy of self.
    #   d = Document.new "<a><b/><b/><c><d/></c></a>"
    #   new_a = d.root.clone
    #   puts new_a  # => "<a/>"
    def clone
      self.class.new self
    end

    # Evaluates to the root node of the document that this element
    # belongs to. If this element doesn't belong to a document, but does
    # belong to another Element, the parent's root will be returned, until the
    # earliest ancestor is found.
    #
    # Note that this is not the same as the document element.
    # In the following example, <a> is the document element, and the root
    # node is the parent node of the document element.  You may ask yourself
    # why the root node is useful: consider the doctype and XML declaration,
    # and any processing instructions before the document element... they
    # are children of the root node, or siblings of the document element.
    # The only time this isn't true is when an Element is created that is
    # not part of any Document.  In this case, the ancestor that has no
    # parent acts as the root node.
    #  d = Document.new '<a><b><c/></b></a>'
    #  a = d[1] ; c = a[1][1]
    #  d.root_node == d   # TRUE
    #  a.root_node        # namely, d
    #  c.root_node        # again, d
    def root_node
      parent.nil? ? self : parent.root_node
    end

    def root
      return elements[1] if self.kind_of? Document
      return self if parent.kind_of? Document or parent.nil?
      return parent.root
    end

    # Evaluates to the document to which this element belongs, or nil if this
    # element doesn't belong to a document.
    def document
      rt = root
      rt.parent if rt
    end

    # Evaluates to +true+ if whitespace is respected for this element.  This
    # is the case if:
    # 1. Neither :+respect_whitespace+ nor :+compress_whitespace+ has any value
    # 2. The context has :+respect_whitespace+ set to :+all+ or
    #    an array containing the name of this element, and
    #    :+compress_whitespace+ isn't set to :+all+ or an array containing the
    #    name of this element.
    # The evaluation is tested against +expanded_name+, and so is namespace
    # sensitive.
    def whitespace
      @whitespace = nil
      if @context
        if @context[:respect_whitespace]
          @whitespace = (@context[:respect_whitespace] == :all or
                         @context[:respect_whitespace].include? expanded_name)
        end
        @whitespace = false if (@context[:compress_whitespace] and
                                (@context[:compress_whitespace] == :all or
                                 @context[:compress_whitespace].include? expanded_name)
                               )
      end
      @whitespace = true unless @whitespace == false
      @whitespace
    end

    def ignore_whitespace_nodes
      @ignore_whitespace_nodes = false
      if @context
        if @context[:ignore_whitespace_nodes]
          @ignore_whitespace_nodes =
            (@context[:ignore_whitespace_nodes] == :all or
             @context[:ignore_whitespace_nodes].include? expanded_name)
        end
      end
    end

    # Evaluates to +true+ if raw mode is set for this element.  This
    # is the case if the context has :+raw+ set to :+all+ or
    # an array containing the name of this element.
    #
    # The evaluation is tested against +expanded_name+, and so is namespace
    # sensitive.
    def raw
      @raw = (@context and @context[:raw] and
              (@context[:raw] == :all or
               @context[:raw].include? expanded_name))
               @raw
    end

    #once :whitespace, :raw, :ignore_whitespace_nodes

    #################################################
    # Namespaces                                    #
    #################################################

    # Evaluates to an +Array+ containing the prefixes (names) of all defined
    # namespaces at this context node.
    #  doc = Document.new("<a xmlns:x='1' xmlns:y='2'><b/><c xmlns:z='3'/></a>")
    #  doc.elements['//b'].prefixes # -> ['x', 'y']
    def prefixes
      prefixes = []
      prefixes = parent.prefixes if parent
      prefixes |= attributes.prefixes
      return prefixes
    end

    def namespaces
      namespaces = {}
      namespaces = parent.namespaces if parent
      namespaces = namespaces.merge( attributes.namespaces )
      return namespaces
    end

    # Evaluates to the URI for a prefix, or the empty string if no such
    # namespace is declared for this element. Evaluates recursively for
    # ancestors.  Returns the default namespace, if there is one.
    # prefix::
    #   the prefix to search for.  If not supplied, returns the default
    #   namespace if one exists
    # Returns::
    #   the namespace URI as a String, or nil if no such namespace
    #   exists.  If the namespace is undefined, returns an empty string
    #  doc = Document.new("<a xmlns='1' xmlns:y='2'><b/><c xmlns:z='3'/></a>")
    #  b = doc.elements['//b']
    #  b.namespace           # -> '1'
    #  b.namespace("y")      # -> '2'
    def namespace(prefix=nil)
      if prefix.nil?
        prefix = prefix()
      end
      if prefix == ''
        prefix = "xmlns"
      else
        prefix = "xmlns:#{prefix}" unless prefix[0,5] == 'xmlns'
      end
      ns = attributes[ prefix ]
      ns = parent.namespace(prefix) if ns.nil? and parent
      ns = '' if ns.nil? and prefix == 'xmlns'
      return ns
    end

    # Adds a namespace to this element.
    # prefix::
    #   the prefix string, or the namespace URI if +uri+ is not
    #   supplied
    # uri::
    #   the namespace URI.  May be nil, in which +prefix+ is used as
    #   the URI
    # Evaluates to: this Element
    #  a = Element.new("a")
    #  a.add_namespace("xmlns:foo", "bar" )
    #  a.add_namespace("foo", "bar")  # shorthand for previous line
    #  a.add_namespace("twiddle")
    #  puts a   #-> <a xmlns:foo='bar' xmlns='twiddle'/>
    def add_namespace( prefix, uri=nil )
      unless uri
        @attributes["xmlns"] = prefix
      else
        prefix = "xmlns:#{prefix}" unless prefix =~ /^xmlns:/
        @attributes[ prefix ] = uri
      end
      self
    end

    # Removes a namespace from this node.  This only works if the namespace is
    # actually declared in this node.  If no argument is passed, deletes the
    # default namespace.
    #
    # Evaluates to: this element
    #  doc = Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>"
    #  doc.root.delete_namespace
    #  puts doc     # -> <a xmlns:foo='bar'/>
    #  doc.root.delete_namespace 'foo'
    #  puts doc     # -> <a/>
    def delete_namespace namespace="xmlns"
      namespace = "xmlns:#{namespace}" unless namespace == 'xmlns'
      attribute = attributes.get_attribute(namespace)
      attribute.remove unless attribute.nil?
      self
    end

    #################################################
    # Elements                                      #
    #################################################

    # Adds a child to this element, optionally setting attributes in
    # the element.
    # element::
    #   optional.  If Element, the element is added.
    #   Otherwise, a new Element is constructed with the argument (see
    #   Element.initialize).
    # attrs::
    #   If supplied, must be a Hash containing String name,value
    #   pairs, which will be used to set the attributes of the new Element.
    # Returns:: the Element that was added
    #  el = doc.add_element 'my-tag'
    #  el = doc.add_element 'my-tag', {'attr1'=>'val1', 'attr2'=>'val2'}
    #  el = Element.new 'my-tag'
    #  doc.add_element el
    def add_element element, attrs=nil
      raise "First argument must be either an element name, or an Element object" if element.nil?
      el = @elements.add(element)
      attrs.each do |key, value|
        el.attributes[key]=value
      end       if attrs.kind_of? Hash
      el
    end

    # Deletes a child element.
    # element::
    #   Must be an +Element+, +String+, or +Integer+.  If Element,
    #   the element is removed.  If String, the element is found (via XPath)
    #   and removed.  <em>This means that any parent can remove any
    #   descendant.<em>  If Integer, the Element indexed by that number will be
    #   removed.
    # Returns:: the element that was removed.
    #  doc.delete_element "/a/b/c[@id='4']"
    #  doc.delete_element doc.elements["//k"]
    #  doc.delete_element 1
    def delete_element element
      @elements.delete element
    end

    # Evaluates to +true+ if this element has at least one child Element
    #  doc = Document.new "<a><b/><c>Text</c></a>"
    #  doc.root.has_elements               # -> true
    #  doc.elements["/a/b"].has_elements   # -> false
    #  doc.elements["/a/c"].has_elements   # -> false
    def has_elements?
      !@elements.empty?
    end

    # Iterates through the child elements, yielding for each Element that
    # has a particular attribute set.
    # key::
    #   the name of the attribute to search for
    # value::
    #   the value of the attribute
    # max::
    #   (optional) causes this method to return after yielding
    #   for this number of matching children
    # name::
    #   (optional) if supplied, this is an XPath that filters
    #   the children to check.
    #
    #  doc = Document.new "<a><b @id='1'/><c @id='2'/><d @id='1'/><e/></a>"
    #  # Yields b, c, d
    #  doc.root.each_element_with_attribute( 'id' ) {|e| p e}
    #  # Yields b, d
    #  doc.root.each_element_with_attribute( 'id', '1' ) {|e| p e}
    #  # Yields b
    #  doc.root.each_element_with_attribute( 'id', '1', 1 ) {|e| p e}
    #  # Yields d
    #  doc.root.each_element_with_attribute( 'id', '1', 0, 'd' ) {|e| p e}
    def each_element_with_attribute( key, value=nil, max=0, name=nil, &block ) # :yields: Element
      each_with_something( proc {|child|
        if value.nil?
          child.attributes[key] != nil
        else
          child.attributes[key]==value
        end
      }, max, name, &block )
    end

    # Iterates through the children, yielding for each Element that
    # has a particular text set.
    # text::
    #   the text to search for.  If nil, or not supplied, will iterate
    #   over all +Element+ children that contain at least one +Text+ node.
    # max::
    #   (optional) causes this method to return after yielding
    #   for this number of matching children
    # name::
    #   (optional) if supplied, this is an XPath that filters
    #   the children to check.
    #
    #  doc = Document.new '<a><b>b</b><c>b</c><d>d</d><e/></a>'
    #  # Yields b, c, d
    #  doc.each_element_with_text {|e|p e}
    #  # Yields b, c
    #  doc.each_element_with_text('b'){|e|p e}
    #  # Yields b
    #  doc.each_element_with_text('b', 1){|e|p e}
    #  # Yields d
    #  doc.each_element_with_text(nil, 0, 'd'){|e|p e}
    def each_element_with_text( text=nil, max=0, name=nil, &block ) # :yields: Element
      each_with_something( proc {|child|
        if text.nil?
          child.has_text?
        else
          child.text == text
        end
      }, max, name, &block )
    end

    # Synonym for Element.elements.each
    def each_element( xpath=nil, &block ) # :yields: Element
      @elements.each( xpath, &block )
    end

    # Synonym for Element.to_a
    # This is a little slower than calling elements.each directly.
    # xpath:: any XPath by which to search for elements in the tree
    # Returns:: an array of Elements that match the supplied path
    def get_elements( xpath )
      @elements.to_a( xpath )
    end

    # Returns the next sibling that is an element, or nil if there is
    # no Element sibling after this one
    #  doc = Document.new '<a><b/>text<c/></a>'
    #  doc.root.elements['b'].next_element          #-> <c/>
    #  doc.root.elements['c'].next_element          #-> nil
    def next_element
      element = next_sibling
      element = element.next_sibling until element.nil? or element.kind_of? Element
      return element
    end

    # Returns the previous sibling that is an element, or nil if there is
    # no Element sibling prior to this one
    #  doc = Document.new '<a><b/>text<c/></a>'
    #  doc.root.elements['c'].previous_element          #-> <b/>
    #  doc.root.elements['b'].previous_element          #-> nil
    def previous_element
      element = previous_sibling
      element = element.previous_sibling until element.nil? or element.kind_of? Element
      return element
    end


    #################################################
    # Text                                          #
    #################################################

    # Evaluates to +true+ if this element has at least one Text child
    def has_text?
      not text().nil?
    end

    # A convenience method which returns the String value of the _first_
    # child text element, if one exists, and +nil+ otherwise.
    #
    # <em>Note that an element may have multiple Text elements, perhaps
    # separated by other children</em>.  Be aware that this method only returns
    # the first Text node.
    #
    # This method returns the +value+ of the first text child node, which
    # ignores the +raw+ setting, so always returns normalized text. See
    # the Text::value documentation.
    #
    #  doc = Document.new "<p>some text <b>this is bold!</b> more text</p>"
    #  # The element 'p' has two text elements, "some text " and " more text".
    #  doc.root.text              #-> "some text "
    def text( path = nil )
      rv = get_text(path)
      return rv.value unless rv.nil?
      nil
    end

    # Returns the first child Text node, if any, or +nil+ otherwise.
    # This method returns the actual +Text+ node, rather than the String content.
    #  doc = Document.new "<p>some text <b>this is bold!</b> more text</p>"
    #  # The element 'p' has two text elements, "some text " and " more text".
    #  doc.root.get_text.value            #-> "some text "
    def get_text path = nil
      rv = nil
      if path
        element = @elements[ path ]
        rv = element.get_text unless element.nil?
      else
        rv = @children.find { |node| node.kind_of? Text }
      end
      return rv
    end

    # Sets the first Text child of this object.  See text() for a
    # discussion about Text children.
    #
    # If a Text child already exists, the child is replaced by this
    # content.  This means that Text content can be deleted by calling
    # this method with a nil argument.  In this case, the next Text
    # child becomes the first Text child.  In no case is the order of
    # any siblings disturbed.
    # text::
    #   If a String, a new Text child is created and added to
    #   this Element as the first Text child.  If Text, the text is set
    #   as the first Child element.  If nil, then any existing first Text
    #   child is removed.
    # Returns:: this Element.
    #  doc = Document.new '<a><b/></a>'
    #  doc.root.text = 'Sean'      #-> '<a><b/>Sean</a>'
    #  doc.root.text = 'Elliott'   #-> '<a><b/>Elliott</a>'
    #  doc.root.add_element 'c'    #-> '<a><b/>Elliott<c/></a>'
    #  doc.root.text = 'Russell'   #-> '<a><b/>Russell<c/></a>'
    #  doc.root.text = nil         #-> '<a><b/><c/></a>'
    def text=( text )
      if text.kind_of? String
        text = Text.new( text, whitespace(), nil, raw() )
      elsif !text.nil? and !text.kind_of? Text
        text = Text.new( text.to_s, whitespace(), nil, raw() )
      end
      old_text = get_text
      if text.nil?
        old_text.remove unless old_text.nil?
      else
        if old_text.nil?
          self << text
        else
          old_text.replace_with( text )
        end
      end
      return self
    end

    # A helper method to add a Text child.  Actual Text instances can
    # be added with regular Parent methods, such as add() and <<()
    # text::
    #   if a String, a new Text instance is created and added
    #   to the parent.  If Text, the object is added directly.
    # Returns:: this Element
    #  e = Element.new('a')          #-> <e/>
    #  e.add_text 'foo'              #-> <e>foo</e>
    #  e.add_text Text.new(' bar')    #-> <e>foo bar</e>
    # Note that at the end of this example, the branch has <b>3</b> nodes; the 'e'
    # element and <b>2</b> Text node children.
    def add_text( text )
      if text.kind_of? String
        if @children[-1].kind_of? Text
          @children[-1] << text
          return
        end
        text = Text.new( text, whitespace(), nil, raw() )
      end
      self << text unless text.nil?
      return self
    end

    def node_type
      :element
    end

    def xpath
      path_elements = []
      cur = self
      path_elements << __to_xpath_helper( self )
      while cur.parent
        cur = cur.parent
        path_elements << __to_xpath_helper( cur )
      end
      return path_elements.reverse.join( "/" )
    end

    #################################################
    # Attributes                                    #
    #################################################

    # Fetches an attribute value or a child.
    #
    # If String or Symbol is specified, it's treated as attribute
    # name. Attribute value as String or +nil+ is returned. This case
    # is shortcut of +attributes[name]+.
    #
    # If Integer is specified, it's treated as the index of
    # child. It returns Nth child.
    #
    #   doc = REXML::Document.new("<a attr='1'><b/><c/></a>")
    #   doc.root["attr"]             # => "1"
    #   doc.root.attributes["attr"]  # => "1"
    #   doc.root[1]                  # => <c/>
    def [](name_or_index)
      case name_or_index
      when String
        attributes[name_or_index]
      when Symbol
        attributes[name_or_index.to_s]
      else
        super
      end
    end

    def attribute( name, namespace=nil )
      prefix = nil
      if namespaces.respond_to? :key
        prefix = namespaces.key(namespace) if namespace
      else
        prefix = namespaces.index(namespace) if namespace
      end
      prefix = nil if prefix == 'xmlns'

      ret_val =
        attributes.get_attribute( "#{prefix ? prefix + ':' : ''}#{name}" )

      return ret_val unless ret_val.nil?
      return nil if prefix.nil?

      # now check that prefix'es namespace is not the same as the
      # default namespace
      return nil unless ( namespaces[ prefix ] == namespaces[ 'xmlns' ] )

      attributes.get_attribute( name )

    end

    # Evaluates to +true+ if this element has any attributes set, false
    # otherwise.
    def has_attributes?
      return !@attributes.empty?
    end

    # Adds an attribute to this element, overwriting any existing attribute
    # by the same name.
    # key::
    #   can be either an Attribute or a String.  If an Attribute,
    #   the attribute is added to the list of Element attributes.  If String,
    #   the argument is used as the name of the new attribute, and the value
    #   parameter must be supplied.
    # value::
    #   Required if +key+ is a String, and ignored if the first argument is
    #   an Attribute.  This is a String, and is used as the value
    #   of the new Attribute.  This should be the unnormalized value of the
    #   attribute (without entities).
    # Returns:: the Attribute added
    #  e = Element.new 'e'
    #  e.add_attribute( 'a', 'b' )               #-> <e a='b'/>
    #  e.add_attribute( 'x:a', 'c' )             #-> <e a='b' x:a='c'/>
    #  e.add_attribute Attribute.new('b', 'd')   #-> <e a='b' x:a='c' b='d'/>
    def add_attribute( key, value=nil )
      if key.kind_of? Attribute
        @attributes << key
      else
        @attributes[key] = value
      end
    end

    # Add multiple attributes to this element.
    # hash:: is either a hash, or array of arrays
    #  el.add_attributes( {"name1"=>"value1", "name2"=>"value2"} )
    #  el.add_attributes( [ ["name1","value1"], ["name2"=>"value2"] ] )
    def add_attributes hash
      if hash.kind_of? Hash
        hash.each_pair {|key, value| @attributes[key] = value }
      elsif hash.kind_of? Array
        hash.each { |value| @attributes[ value[0] ] = value[1] }
      end
    end

    # Removes an attribute
    # key::
    #   either an Attribute or a String.  In either case, the
    #   attribute is found by matching the attribute name to the argument,
    #   and then removed.  If no attribute is found, no action is taken.
    # Returns::
    #   the attribute removed, or nil if this Element did not contain
    #   a matching attribute
    #  e = Element.new('E')
    #  e.add_attribute( 'name', 'Sean' )             #-> <E name='Sean'/>
    #  r = e.add_attribute( 'sur:name', 'Russell' )  #-> <E name='Sean' sur:name='Russell'/>
    #  e.delete_attribute( 'name' )                  #-> <E sur:name='Russell'/>
    #  e.delete_attribute( r )                       #-> <E/>
    def delete_attribute(key)
      attr = @attributes.get_attribute(key)
      attr.remove unless attr.nil?
    end

    #################################################
    # Other Utilities                               #
    #################################################

    # Get an array of all CData children.
    # IMMUTABLE
    def cdatas
      find_all { |child| child.kind_of? CData }.freeze
    end

    # Get an array of all Comment children.
    # IMMUTABLE
    def comments
      find_all { |child| child.kind_of? Comment }.freeze
    end

    # Get an array of all Instruction children.
    # IMMUTABLE
    def instructions
      find_all { |child| child.kind_of? Instruction }.freeze
    end

    # Get an array of all Text children.
    # IMMUTABLE
    def texts
      find_all { |child| child.kind_of? Text }.freeze
    end

    # == DEPRECATED
    # See REXML::Formatters
    #
    # Writes out this element, and recursively, all children.
    # output::
    #     output an object which supports '<< string'; this is where the
    #   document will be written.
    # indent::
    #   An integer.  If -1, no indenting will be used; otherwise, the
    #   indentation will be this number of spaces, and children will be
    #   indented an additional amount.  Defaults to -1
    # transitive::
    #   If transitive is true and indent is >= 0, then the output will be
    #   pretty-printed in such a way that the added whitespace does not affect
    #   the parse tree of the document
    # ie_hack::
    #   This hack inserts a space before the /> on empty tags to address
    #   a limitation of Internet Explorer.  Defaults to false
    #
    #  out = ''
    #  doc.write( out )     #-> doc is written to the string 'out'
    #  doc.write( $stdout ) #-> doc written to the console
    def write(output=$stdout, indent=-1, transitive=false, ie_hack=false)
      Kernel.warn("#{self.class.name}.write is deprecated.  See REXML::Formatters", uplevel: 1)
      formatter = if indent > -1
          if transitive
            require_relative "formatters/transitive"
            REXML::Formatters::Transitive.new( indent, ie_hack )
          else
            REXML::Formatters::Pretty.new( indent, ie_hack )
          end
        else
          REXML::Formatters::Default.new( ie_hack )
        end
      formatter.write( self, output )
    end


    private
    def __to_xpath_helper node
      rv = node.expanded_name.clone
      if node.parent
        results = node.parent.find_all {|n|
          n.kind_of?(REXML::Element) and n.expanded_name == node.expanded_name
        }
        if results.length > 1
          idx = results.index( node )
          rv << "[#{idx+1}]"
        end
      end
      rv
    end

    # A private helper method
    def each_with_something( test, max=0, name=nil )
      num = 0
      @elements.each( name ){ |child|
        yield child if test.call(child) and num += 1
        return if max>0 and num == max
      }
    end
  end

  ########################################################################
  # ELEMENTS                                                             #
  ########################################################################

  # A class which provides filtering of children for Elements, and
  # XPath search support.  You are expected to only encounter this class as
  # the <tt>element.elements</tt> object.  Therefore, you are
  # _not_ expected to instantiate this yourself.
  class Elements
    include Enumerable
    # Constructor
    # parent:: the parent Element
    def initialize parent
      @element = parent
    end

    # Fetches a child element.  Filters only Element children, regardless of
    # the XPath match.
    # index::
    #   the search parameter.  This is either an Integer, which
    #   will be used to find the index'th child Element, or an XPath,
    #   which will be used to search for the Element.  <em>Because
    #   of the nature of XPath searches, any element in the connected XML
    #   document can be fetched through any other element.</em>  <b>The
    #   Integer index is 1-based, not 0-based.</b>  This means that the first
    #   child element is at index 1, not 0, and the +n+th element is at index
    #   +n+, not <tt>n-1</tt>.  This is because XPath indexes element children
    #   starting from 1, not 0, and the indexes should be the same.
    # name::
    #   optional, and only used in the first argument is an
    #   Integer.  In that case, the index'th child Element that has the
    #   supplied name will be returned.  Note again that the indexes start at 1.
    # Returns:: the first matching Element, or nil if no child matched
    #  doc = Document.new '<a><b/><c id="1"/><c id="2"/><d/></a>'
    #  doc.root.elements[1]       #-> <b/>
    #  doc.root.elements['c']     #-> <c id="1"/>
    #  doc.root.elements[2,'c']   #-> <c id="2"/>
    def []( index, name=nil)
      if index.kind_of? Integer
        raise "index (#{index}) must be >= 1" if index < 1
        name = literalize(name) if name
        num = 0
        @element.find { |child|
          child.kind_of? Element and
          (name.nil? ? true : child.has_name?( name )) and
          (num += 1) == index
        }
      else
        return XPath::first( @element, index )
        #{ |element|
        #       return element if element.kind_of? Element
        #}
        #return nil
      end
    end

    # Sets an element, replacing any previous matching element.  If no
    # existing element is found ,the element is added.
    # index:: Used to find a matching element to replace.  See []().
    # element::
    #   The element to replace the existing element with
    #   the previous element
    # Returns:: nil if no previous element was found.
    #
    #  doc = Document.new '<a/>'
    #  doc.root.elements[10] = Element.new('b')    #-> <a><b/></a>
    #  doc.root.elements[1]                        #-> <b/>
    #  doc.root.elements[1] = Element.new('c')     #-> <a><c/></a>
    #  doc.root.elements['c'] = Element.new('d')   #-> <a><d/></a>
    def []=( index, element )
      previous = self[index]
      if previous.nil?
        @element.add element
      else
        previous.replace_with element
      end
      return previous
    end

    # Returns +true+ if there are no +Element+ children, +false+ otherwise
    def empty?
      @element.find{ |child| child.kind_of? Element}.nil?
    end

    # Returns the index of the supplied child (starting at 1), or -1 if
    # the element is not a child
    # element:: an +Element+ child
    def index element
      rv = 0
      found = @element.find do |child|
        child.kind_of? Element and
        (rv += 1) and
        child == element
      end
      return rv if found == element
      return -1
    end

    # Deletes a child Element
    # element::
    #   Either an Element, which is removed directly; an
    #   xpath, where the first matching child is removed; or an Integer,
    #   where the n'th Element is removed.
    # Returns:: the removed child
    #  doc = Document.new '<a><b/><c/><c id="1"/></a>'
    #  b = doc.root.elements[1]
    #  doc.root.elements.delete b           #-> <a><c/><c id="1"/></a>
    #  doc.elements.delete("a/c[@id='1']")  #-> <a><c/></a>
    #  doc.root.elements.delete 1           #-> <a/>
    def delete element
      if element.kind_of? Element
        @element.delete element
      else
        el = self[element]
        el.remove if el
      end
    end

    # Removes multiple elements.  Filters for Element children, regardless of
    # XPath matching.
    # xpath:: all elements matching this String path are removed.
    # Returns:: an Array of Elements that have been removed
    #  doc = Document.new '<a><c/><c/><c/><c/></a>'
    #  deleted = doc.elements.delete_all 'a/c' #-> [<c/>, <c/>, <c/>, <c/>]
    def delete_all( xpath )
      rv = []
      XPath::each( @element, xpath) {|element|
        rv << element if element.kind_of? Element
      }
      rv.each do |element|
        @element.delete element
        element.remove
      end
      return rv
    end

    # Adds an element
    # element::
    #   if supplied, is either an Element, String, or
    #   Source (see Element.initialize).  If not supplied or nil, a
    #   new, default Element will be constructed
    # Returns:: the added Element
    #  a = Element.new('a')
    #  a.elements.add(Element.new('b'))  #-> <a><b/></a>
    #  a.elements.add('c')               #-> <a><b/><c/></a>
    def add element=nil
      if element.nil?
        Element.new("", self, @element.context)
      elsif not element.kind_of?(Element)
        Element.new(element, self, @element.context)
      else
        @element << element
        element.context = @element.context
        element
      end
    end

    alias :<< :add

    # Iterates through all of the child Elements, optionally filtering
    # them by a given XPath
    # xpath::
    #   optional.  If supplied, this is a String XPath, and is used to
    #   filter the children, so that only matching children are yielded.  Note
    #   that XPaths are automatically filtered for Elements, so that
    #   non-Element children will not be yielded
    #  doc = Document.new '<a><b/><c/><d/>sean<b/><c/><d/></a>'
    #  doc.root.elements.each {|e|p e}       #-> Yields b, c, d, b, c, d elements
    #  doc.root.elements.each('b') {|e|p e}  #-> Yields b, b elements
    #  doc.root.elements.each('child::node()')  {|e|p e}
    #  #-> Yields <b/>, <c/>, <d/>, <b/>, <c/>, <d/>
    #  XPath.each(doc.root, 'child::node()', &block)
    #  #-> Yields <b/>, <c/>, <d/>, sean, <b/>, <c/>, <d/>
    def each( xpath=nil )
      XPath::each( @element, xpath ) {|e| yield e if e.kind_of? Element }
    end

    def collect( xpath=nil )
      collection = []
      XPath::each( @element, xpath ) {|e|
        collection << yield(e)  if e.kind_of?(Element)
      }
      collection
    end

    def inject( xpath=nil, initial=nil )
      first = true
      XPath::each( @element, xpath ) {|e|
        if (e.kind_of? Element)
          if (first and initial == nil)
            initial = e
            first = false
          else
            initial = yield( initial, e ) if e.kind_of? Element
          end
        end
      }
      initial
    end

    # Returns the number of +Element+ children of the parent object.
    #  doc = Document.new '<a>sean<b/>elliott<b/>russell<b/></a>'
    #  doc.root.size            #-> 6, 3 element and 3 text nodes
    #  doc.root.elements.size   #-> 3
    def size
      count = 0
      @element.each {|child| count+=1 if child.kind_of? Element }
      count
    end

    # Returns an Array of Element children.  An XPath may be supplied to
    # filter the children.  Only Element children are returned, even if the
    # supplied XPath matches non-Element children.
    #  doc = Document.new '<a>sean<b/>elliott<c/></a>'
    #  doc.root.elements.to_a                  #-> [ <b/>, <c/> ]
    #  doc.root.elements.to_a("child::node()") #-> [ <b/>, <c/> ]
    #  XPath.match(doc.root, "child::node()")  #-> [ sean, <b/>, elliott, <c/> ]
    def to_a( xpath=nil )
      rv = XPath.match( @element, xpath )
      return rv.find_all{|e| e.kind_of? Element} if xpath
      rv
    end

    private
    # Private helper class.  Removes quotes from quoted strings
    def literalize name
      name = name[1..-2] if name[0] == ?' or name[0] == ?"               #'
      name
    end
  end

  ########################################################################
  # ATTRIBUTES                                                           #
  ########################################################################

  # A class that defines the set of Attributes of an Element and provides
  # operations for accessing elements in that set.
  class Attributes < Hash
    # Constructor
    # element:: the Element of which this is an Attribute
    def initialize element
      @element = element
    end

    # Fetches an attribute value.  If you want to get the Attribute itself,
    # use get_attribute()
    # name:: an XPath attribute name.  Namespaces are relevant here.
    # Returns::
    #   the String value of the matching attribute, or +nil+ if no
    #   matching attribute was found.  This is the unnormalized value
    #   (with entities expanded).
    #
    #  doc = Document.new "<a foo:att='1' bar:att='2' att='&lt;'/>"
    #  doc.root.attributes['att']         #-> '<'
    #  doc.root.attributes['bar:att']     #-> '2'
    def [](name)
      attr = get_attribute(name)
      return attr.value unless attr.nil?
      return nil
    end

    def to_a
      enum_for(:each_attribute).to_a
    end

    # Returns the number of attributes the owning Element contains.
    #  doc = Document "<a x='1' y='2' foo:x='3'/>"
    #  doc.root.attributes.length        #-> 3
    def length
      c = 0
      each_attribute { c+=1 }
      c
    end
    alias :size :length

    # Iterates over the attributes of an Element.  Yields actual Attribute
    # nodes, not String values.
    #
    #  doc = Document.new '<a x="1" y="2"/>'
    #  doc.root.attributes.each_attribute {|attr|
    #    p attr.expanded_name+" => "+attr.value
    #  }
    def each_attribute # :yields: attribute
      return to_enum(__method__) unless block_given?
      each_value do |val|
        if val.kind_of? Attribute
          yield val
        else
          val.each_value { |atr| yield atr }
        end
      end
    end

    # Iterates over each attribute of an Element, yielding the expanded name
    # and value as a pair of Strings.
    #
    #  doc = Document.new '<a x="1" y="2"/>'
    #  doc.root.attributes.each {|name, value| p name+" => "+value }
    def each
      return to_enum(__method__) unless block_given?
      each_attribute do |attr|
        yield [attr.expanded_name, attr.value]
      end
    end

    # Fetches an attribute
    # name::
    #   the name by which to search for the attribute.  Can be a
    #   <tt>prefix:name</tt> namespace name.
    # Returns:: The first matching attribute, or nil if there was none.  This
    # value is an Attribute node, not the String value of the attribute.
    #  doc = Document.new '<a x:foo="1" foo="2" bar="3"/>'
    #  doc.root.attributes.get_attribute("foo").value    #-> "2"
    #  doc.root.attributes.get_attribute("x:foo").value  #-> "1"
    def get_attribute( name )
      attr = fetch( name, nil )
      if attr.nil?
        return nil if name.nil?
        # Look for prefix
        name =~ Namespace::NAMESPLIT
        prefix, n = $1, $2
        if prefix
          attr = fetch( n, nil )
          # check prefix
          if attr == nil
          elsif attr.kind_of? Attribute
            return attr if prefix == attr.prefix
          else
            attr = attr[ prefix ]
            return attr
          end
        end
        element_document = @element.document
        if element_document and element_document.doctype
          expn = @element.expanded_name
          expn = element_document.doctype.name if expn.size == 0
          attr_val = element_document.doctype.attribute_of(expn, name)
          return Attribute.new( name, attr_val ) if attr_val
        end
        return nil
      end
      if attr.kind_of? Hash
        attr = attr[ @element.prefix ]
      end
      return attr
    end

    # Sets an attribute, overwriting any existing attribute value by the
    # same name.  Namespace is significant.
    # name:: the name of the attribute
    # value::
    #   (optional) If supplied, the value of the attribute.  If
    #   nil, any existing matching attribute is deleted.
    # Returns::
    #   Owning element
    #  doc = Document.new "<a x:foo='1' foo='3'/>"
    #  doc.root.attributes['y:foo'] = '2'
    #  doc.root.attributes['foo'] = '4'
    #  doc.root.attributes['x:foo'] = nil
    def []=( name, value )
      if value.nil?             # Delete the named attribute
        attr = get_attribute(name)
        delete attr
        return
      end

      unless value.kind_of? Attribute
        if @element.document and @element.document.doctype
          value = Text::normalize( value, @element.document.doctype )
        else
          value = Text::normalize( value, nil )
        end
        value = Attribute.new(name, value)
      end
      value.element = @element
      old_attr = fetch(value.name, nil)
      if old_attr.nil?
        store(value.name, value)
      elsif old_attr.kind_of? Hash
        old_attr[value.prefix] = value
      elsif old_attr.prefix != value.prefix
        # Check for conflicting namespaces
        if value.prefix != "xmlns" and old_attr.prefix != "xmlns"
          old_namespace = old_attr.namespace
          new_namespace = value.namespace
          if old_namespace == new_namespace
            raise ParseException.new(
                    "Namespace conflict in adding attribute \"#{value.name}\": "+
                    "Prefix \"#{old_attr.prefix}\" = \"#{old_namespace}\" and "+
                    "prefix \"#{value.prefix}\" = \"#{new_namespace}\"")
          end
        end
        store value.name, {old_attr.prefix => old_attr,
                           value.prefix    => value}
      else
        store value.name, value
      end
      return @element
    end

    # Returns an array of Strings containing all of the prefixes declared
    # by this set of # attributes.  The array does not include the default
    # namespace declaration, if one exists.
    #  doc = Document.new("<a xmlns='foo' xmlns:x='bar' xmlns:y='twee' "+
    #        "z='glorp' p:k='gru'/>")
    #  prefixes = doc.root.attributes.prefixes    #-> ['x', 'y']
    def prefixes
      ns = []
      each_attribute do |attribute|
        ns << attribute.name if attribute.prefix == 'xmlns'
      end
      if @element.document and @element.document.doctype
        expn = @element.expanded_name
        expn = @element.document.doctype.name if expn.size == 0
        @element.document.doctype.attributes_of(expn).each {
          |attribute|
          ns << attribute.name if attribute.prefix == 'xmlns'
        }
      end
      ns
    end

    def namespaces
      namespaces = {}
      each_attribute do |attribute|
        namespaces[attribute.name] = attribute.value if attribute.prefix == 'xmlns' or attribute.name == 'xmlns'
      end
      if @element.document and @element.document.doctype
        expn = @element.expanded_name
        expn = @element.document.doctype.name if expn.size == 0
        @element.document.doctype.attributes_of(expn).each {
          |attribute|
          namespaces[attribute.name] = attribute.value if attribute.prefix == 'xmlns' or attribute.name == 'xmlns'
        }
      end
      namespaces
    end

    # Removes an attribute
    # attribute::
    #   either a String, which is the name of the attribute to remove --
    #   namespaces are significant here -- or the attribute to remove.
    # Returns:: the owning element
    #  doc = Document.new "<a y:foo='0' x:foo='1' foo='3' z:foo='4'/>"
    #  doc.root.attributes.delete 'foo'   #-> <a y:foo='0' x:foo='1' z:foo='4'/>"
    #  doc.root.attributes.delete 'x:foo' #-> <a y:foo='0' z:foo='4'/>"
    #  attr = doc.root.attributes.get_attribute('y:foo')
    #  doc.root.attributes.delete attr    #-> <a z:foo='4'/>"
    def delete( attribute )
      name = nil
      prefix = nil
      if attribute.kind_of? Attribute
        name = attribute.name
        prefix = attribute.prefix
      else
        attribute =~ Namespace::NAMESPLIT
        prefix, name = $1, $2
        prefix = '' unless prefix
      end
      old = fetch(name, nil)
      if old.kind_of? Hash # the supplied attribute is one of many
        old.delete(prefix)
        if old.size == 1
          repl = nil
          old.each_value{|v| repl = v}
          store name, repl
        end
      elsif old.nil?
        return @element
      else # the supplied attribute is a top-level one
        super(name)
      end
      @element
    end

    # Adds an attribute, overriding any existing attribute by the
    # same name.  Namespaces are significant.
    # attribute:: An Attribute
    def add( attribute )
      self[attribute.name] = attribute
    end

    alias :<< :add

    # Deletes all attributes matching a name.  Namespaces are significant.
    # name::
    #   A String; all attributes that match this path will be removed
    # Returns:: an Array of the Attributes that were removed
    def delete_all( name )
      rv = []
      each_attribute { |attribute|
        rv << attribute if attribute.expanded_name == name
      }
      rv.each{ |attr| attr.remove }
      return rv
    end

    # The +get_attribute_ns+ method retrieves a method by its namespace
    # and name. Thus it is possible to reliably identify an attribute
    # even if an XML processor has changed the prefix.
    #
    # Method contributed by Henrik Martensson
    def get_attribute_ns(namespace, name)
      result = nil
      each_attribute() { |attribute|
        if name == attribute.name &&
          namespace == attribute.namespace() &&
          ( !namespace.empty? || !attribute.fully_expanded_name.index(':') )
          # foo will match xmlns:foo, but only if foo isn't also an attribute
          result = attribute if !result or !namespace.empty? or
                                !attribute.fully_expanded_name.index(':')
        end
      }
      result
    end
  end
end
PKDH[}��00)share/ruby/rexml/validation/validation.rbnu�[���# frozen_string_literal: false
require_relative 'validationexception'

module REXML
  module Validation
    module Validator
      NILEVENT = [ nil ]
      def reset
        @current = @root
        @root.reset
        @root.previous = true
        @attr_stack = []
        self
      end
      def dump
        puts @root.inspect
      end
      def validate( event )
        @attr_stack = [] unless defined? @attr_stack
        match = @current.next(event)
        raise ValidationException.new( "Validation error.  Expected: "+
          @current.expected.join( " or " )+" from #{@current.inspect} "+
          " but got #{Event.new( event[0], event[1] ).inspect}" ) unless match
        @current = match

        # Check for attributes
        case event[0]
        when :start_element
          @attr_stack << event[2]
          begin
            sattr = [:start_attribute, nil]
            eattr = [:end_attribute]
            text = [:text, nil]
            k, = event[2].find { |key,value|
              sattr[1] = key
              m = @current.next( sattr )
              if m
                # If the state has text children...
                if m.matches?( eattr )
                  @current = m
                else
                  text[1] = value
                  m = m.next( text )
                  text[1] = nil
                  return false unless m
                  @current = m if m
                end
                m = @current.next( eattr )
                if m
                  @current = m
                  true
                else
                  false
                end
              else
                false
              end
            }
            event[2].delete(k) if k
          end while k
        when :end_element
          attrs = @attr_stack.pop
          raise ValidationException.new( "Validation error.  Illegal "+
            " attributes: #{attrs.inspect}") if attrs.length > 0
        end
      end
    end

    class Event
      def initialize(event_type, event_arg=nil )
        @event_type = event_type
        @event_arg = event_arg
      end

      attr_reader :event_type
      attr_accessor :event_arg

      def done?
        @done
      end

      def single?
        return (@event_type != :start_element and @event_type != :start_attribute)
      end

      def matches?( event )
        return false unless event[0] == @event_type
        case event[0]
        when nil
          return true
        when :start_element
          return true if event[1] == @event_arg
        when :end_element
          return true
        when :start_attribute
          return true if event[1] == @event_arg
        when :end_attribute
          return true
        when :end_document
          return true
        when :text
          return (@event_arg.nil? or @event_arg == event[1])
=begin
        when :processing_instruction
          false
        when :xmldecl
          false
        when :start_doctype
          false
        when :end_doctype
          false
        when :externalentity
          false
        when :elementdecl
          false
        when :entity
          false
        when :attlistdecl
          false
        when :notationdecl
          false
        when :end_doctype
          false
=end
        else
          false
        end
      end

      def ==( other )
        return false unless other.kind_of? Event
        @event_type == other.event_type and @event_arg == other.event_arg
      end

      def to_s
        inspect
      end

      def inspect
        "#{@event_type.inspect}( #@event_arg )"
      end
    end
  end
end
PKDH[���sl5l5&share/ruby/rexml/validation/relaxng.rbnu�[���# frozen_string_literal: false
require_relative "validation"
require_relative "../parsers/baseparser"

module REXML
  module Validation
    # Implemented:
    # * empty
    # * element
    # * attribute
    # * text
    # * optional
    # * choice
    # * oneOrMore
    # * zeroOrMore
    # * group
    # * value
    # * interleave
    # * mixed
    # * ref
    # * grammar
    # * start
    # * define
    #
    # Not implemented:
    # * data
    # * param
    # * include
    # * externalRef
    # * notAllowed
    # * anyName
    # * nsName
    # * except
    # * name
    class RelaxNG
      include Validator

      INFINITY = 1.0 / 0.0
      EMPTY = Event.new( nil )
      TEXT = [:start_element, "text"]
      attr_accessor :current
      attr_accessor :count
      attr_reader :references

      # FIXME: Namespaces
      def initialize source
        parser = REXML::Parsers::BaseParser.new( source )

        @count = 0
        @references = {}
        @root = @current = Sequence.new(self)
        @root.previous = true
        states = [ @current ]
        begin
          event = parser.pull
          case event[0]
          when :start_element
            case event[1]
            when "empty"
            when "element", "attribute", "text", "value"
              states[-1] << event
            when "optional"
              states << Optional.new( self )
              states[-2] << states[-1]
            when "choice"
              states << Choice.new( self )
              states[-2] << states[-1]
            when "oneOrMore"
              states << OneOrMore.new( self )
              states[-2] << states[-1]
            when "zeroOrMore"
              states << ZeroOrMore.new( self )
              states[-2] << states[-1]
            when "group"
              states << Sequence.new( self )
              states[-2] << states[-1]
            when "interleave"
              states << Interleave.new( self )
              states[-2] << states[-1]
            when "mixed"
              states << Interleave.new( self )
              states[-2] << states[-1]
              states[-1] << TEXT
            when "define"
              states << [ event[2]["name"] ]
            when "ref"
              states[-1] << Ref.new( event[2]["name"] )
            when "anyName"
              states << AnyName.new( self )
              states[-2] << states[-1]
            when "nsName"
            when "except"
            when "name"
            when "data"
            when "param"
            when "include"
            when "grammar"
            when "start"
            when "externalRef"
            when "notAllowed"
            end
          when :end_element
            case event[1]
            when "element", "attribute"
              states[-1] << event
            when "zeroOrMore", "oneOrMore", "choice", "optional",
              "interleave", "group", "mixed"
              states.pop
            when "define"
              ref = states.pop
              @references[ ref.shift ] = ref
            #when "empty"
            end
          when :end_document
            states[-1] << event
          when :text
            states[-1] << event
          end
        end while event[0] != :end_document
      end

      def receive event
        validate( event )
      end
    end

    class State
      def initialize( context )
        @previous = []
        @events = []
        @current = 0
        @count = context.count += 1
        @references = context.references
        @value = false
      end

      def reset
        return if @current == 0
        @current = 0
        @events.each {|s| s.reset if s.kind_of? State }
      end

      def previous=( previous )
        @previous << previous
      end

      def next( event )
        #print "In next with #{event.inspect}.  "
        #p @previous
        return @previous.pop.next( event ) if @events[@current].nil?
        expand_ref_in( @events, @current ) if @events[@current].class == Ref
        if ( @events[@current].kind_of? State )
          @current += 1
          @events[@current-1].previous = self
          return @events[@current-1].next( event )
        end
        if ( @events[@current].matches?(event) )
          @current += 1
          if @events[@current].nil?
            return @previous.pop
          elsif @events[@current].kind_of? State
            @current += 1
            @events[@current-1].previous = self
            return @events[@current-1]
          else
            return self
          end
        else
          return nil
        end
      end

      def to_s
        # Abbreviated:
        self.class.name =~ /(?:::)(\w)\w+$/
        # Full:
        #self.class.name =~ /(?:::)(\w+)$/
        "#$1.#@count"
      end

      def inspect
        "< #{to_s} #{@events.collect{|e|
          pre = e == @events[@current] ? '#' : ''
          pre + e.inspect unless self == e
        }.join(', ')} >"
      end

      def expected
        return [@events[@current]]
      end

      def <<( event )
        add_event_to_arry( @events, event )
      end


      protected
      def expand_ref_in( arry, ind )
        new_events = []
        @references[ arry[ind].to_s ].each{ |evt|
          add_event_to_arry(new_events,evt)
        }
        arry[ind,1] = new_events
      end

      def add_event_to_arry( arry, evt )
        evt = generate_event( evt )
        if evt.kind_of? String
          arry[-1].event_arg = evt if arry[-1].kind_of? Event and @value
          @value = false
        else
          arry << evt
        end
      end

      def generate_event( event )
        return event if event.kind_of? State or event.class == Ref
        evt = nil
        arg = nil
        case event[0]
        when :start_element
          case event[1]
          when "element"
            evt = :start_element
            arg = event[2]["name"]
          when "attribute"
            evt = :start_attribute
            arg = event[2]["name"]
          when "text"
            evt = :text
          when "value"
            evt = :text
            @value = true
          end
        when :text
          return event[1]
        when :end_document
          return Event.new( event[0] )
        else # then :end_element
          case event[1]
          when "element"
            evt = :end_element
          when "attribute"
            evt = :end_attribute
          end
        end
        return Event.new( evt, arg )
      end
    end


    class Sequence < State
      def matches?(event)
        @events[@current].matches?( event )
      end
    end


    class Optional < State
      def next( event )
        if @current == 0
          rv = super
          return rv if rv
          @prior = @previous.pop
          return @prior.next( event )
        end
        super
      end

      def matches?(event)
        @events[@current].matches?(event) ||
        (@current == 0 and @previous[-1].matches?(event))
      end

      def expected
        return [ @prior.expected, @events[0] ].flatten if @current == 0
        return [@events[@current]]
      end
    end


    class ZeroOrMore < Optional
      def next( event )
        expand_ref_in( @events, @current ) if @events[@current].class == Ref
        if ( @events[@current].matches?(event) )
          @current += 1
          if @events[@current].nil?
            @current = 0
            return self
          elsif @events[@current].kind_of? State
            @current += 1
            @events[@current-1].previous = self
            return @events[@current-1]
          else
            return self
          end
        else
          @prior = @previous.pop
          return @prior.next( event ) if @current == 0
          return nil
        end
      end

      def expected
        return [ @prior.expected, @events[0] ].flatten if @current == 0
        return [@events[@current]]
      end
    end


    class OneOrMore < State
      def initialize context
        super
        @ord = 0
      end

      def reset
        super
        @ord = 0
      end

      def next( event )
        expand_ref_in( @events, @current ) if @events[@current].class == Ref
        if ( @events[@current].matches?(event) )
          @current += 1
          @ord += 1
          if @events[@current].nil?
            @current = 0
            return self
          elsif @events[@current].kind_of? State
            @current += 1
            @events[@current-1].previous = self
            return @events[@current-1]
          else
            return self
          end
        else
          return @previous.pop.next( event ) if @current == 0 and @ord > 0
          return nil
        end
      end

      def matches?( event )
        @events[@current].matches?(event) ||
        (@current == 0 and @ord > 0 and @previous[-1].matches?(event))
      end

      def expected
        if @current == 0 and @ord > 0
          return [@previous[-1].expected, @events[0]].flatten
        else
          return [@events[@current]]
        end
      end
    end


    class Choice < State
      def initialize context
        super
        @choices = []
      end

      def reset
        super
        @events = []
        @choices.each { |c| c.each { |s| s.reset if s.kind_of? State } }
      end

      def <<( event )
        add_event_to_arry( @choices, event )
      end

      def next( event )
        # Make the choice if we haven't
        if @events.size == 0
          c = 0 ; max = @choices.size
          while c < max
            if @choices[c][0].class == Ref
              expand_ref_in( @choices[c], 0 )
              @choices += @choices[c]
              @choices.delete( @choices[c] )
              max -= 1
            else
              c += 1
            end
          end
          @events = @choices.find { |evt| evt[0].matches? event }
          # Remove the references
          # Find the events
        end
        unless @events
          @events = []
          return nil
        end
        super
      end

      def matches?( event )
        return @events[@current].matches?( event ) if @events.size > 0
        !@choices.find{|evt| evt[0].matches?(event)}.nil?
      end

      def expected
        return [@events[@current]] if @events.size > 0
        return @choices.collect do |x|
          if x[0].kind_of? State
            x[0].expected
          else
            x[0]
          end
        end.flatten
      end

      def inspect
        "< #{to_s} #{@choices.collect{|e| e.collect{|f|f.to_s}.join(', ')}.join(' or ')} >"
      end

      protected
      def add_event_to_arry( arry, evt )
        if evt.kind_of? State or evt.class == Ref
          arry << [evt]
        elsif evt[0] == :text
         if arry[-1] and
            arry[-1][-1].kind_of?( Event ) and
            arry[-1][-1].event_type == :text and @value

            arry[-1][-1].event_arg = evt[1]
            @value = false
         end
        else
          arry << [] if evt[0] == :start_element
          arry[-1] << generate_event( evt )
        end
      end
    end


    class Interleave < Choice
      def initialize context
        super
        @choice = 0
      end

      def reset
        @choice = 0
      end

      def next_current( event )
        # Expand references
        c = 0 ; max = @choices.size
        while c < max
          if @choices[c][0].class == Ref
            expand_ref_in( @choices[c], 0 )
            @choices += @choices[c]
            @choices.delete( @choices[c] )
            max -= 1
          else
            c += 1
          end
        end
        @events = @choices[@choice..-1].find { |evt| evt[0].matches? event }
        @current = 0
        if @events
          # reorder the choices
          old = @choices[@choice]
          idx = @choices.index( @events )
          @choices[@choice] = @events
          @choices[idx] = old
          @choice += 1
        end

        @events = [] unless @events
      end


      def next( event )
        # Find the next series
        next_current(event) unless @events[@current]
        return nil unless @events[@current]

        expand_ref_in( @events, @current ) if @events[@current].class == Ref
        if ( @events[@current].kind_of? State )
          @current += 1
          @events[@current-1].previous = self
          return @events[@current-1].next( event )
        end
        return @previous.pop.next( event ) if @events[@current].nil?
        if ( @events[@current].matches?(event) )
          @current += 1
          if @events[@current].nil?
            return self unless @choices[@choice].nil?
            return @previous.pop
          elsif @events[@current].kind_of? State
            @current += 1
            @events[@current-1].previous = self
            return @events[@current-1]
          else
            return self
          end
        else
          return nil
        end
      end

      def matches?( event )
        return @events[@current].matches?( event ) if @events[@current]
        !@choices[@choice..-1].find{|evt| evt[0].matches?(event)}.nil?
      end

      def expected
        return [@events[@current]] if @events[@current]
        return @choices[@choice..-1].collect do |x|
          if x[0].kind_of? State
            x[0].expected
          else
            x[0]
          end
        end.flatten
      end

      def inspect
        "< #{to_s} #{@choices.collect{|e| e.collect{|f|f.to_s}.join(', ')}.join(' and ')} >"
      end
    end

    class Ref
      def initialize value
        @value = value
      end
      def to_s
        @value
      end
      def inspect
        "{#{to_s}}"
      end
    end
  end
end
PKDH[�Q���2share/ruby/rexml/validation/validationexception.rbnu�[���# frozen_string_literal: false
module REXML
  module Validation
    class ValidationException < RuntimeError
      def initialize msg
        super
      end
    end
  end
end
PKDH[9dj̏�share/ruby/rexml/instruction.rbnu�[���# frozen_string_literal: false

require_relative "child"
require_relative "source"

module REXML
  # Represents an XML Instruction; IE, <? ... ?>
  # TODO: Add parent arg (3rd arg) to constructor
  class Instruction < Child
    START = "<?"
    STOP = "?>"

    # target is the "name" of the Instruction; IE, the "tag" in <?tag ...?>
    # content is everything else.
    attr_accessor :target, :content

    # Constructs a new Instruction
    # @param target can be one of a number of things.  If String, then
    # the target of this instruction is set to this.  If an Instruction,
    # then the Instruction is shallowly cloned (target and content are
    # copied).
    # @param content Must be either a String, or a Parent.  Can only
    # be a Parent if the target argument is a Source.  Otherwise, this
    # String is set as the content of this instruction.
    def initialize(target, content=nil)
      case target
      when String
        super()
        @target = target
        @content = content
      when Instruction
        super(content)
        @target = target.target
        @content = target.content
      else
        message =
          "processing instruction target must be String or REXML::Instruction: "
        message << "<#{target.inspect}>"
        raise ArgumentError, message
      end
      @content.strip! if @content
    end

    def clone
      Instruction.new self
    end

    # == DEPRECATED
    # See the rexml/formatters package
    #
    def write writer, indent=-1, transitive=false, ie_hack=false
      Kernel.warn( "#{self.class.name}.write is deprecated", uplevel: 1)
      indent(writer, indent)
      writer << START
      writer << @target
      if @content
        writer << ' '
        writer << @content
      end
      writer << STOP
    end

    # @return true if other is an Instruction, and the content and target
    # of the other matches the target and content of this object.
    def ==( other )
      other.kind_of? Instruction and
      other.target == @target and
      other.content == @content
    end

    def node_type
      :processing_instruction
    end

    def inspect
      "<?p-i #{target} ...?>"
    end
  end
end
PKDH[N��88share/ruby/rexml/security.rbnu�[���# frozen_string_literal: false
module REXML
  module Security
    @@entity_expansion_limit = 10_000

    # Set the entity expansion limit. By default the limit is set to 10000.
    def self.entity_expansion_limit=( val )
      @@entity_expansion_limit = val
    end

    # Get the entity expansion limit. By default the limit is set to 10000.
    def self.entity_expansion_limit
      return @@entity_expansion_limit
    end

    @@entity_expansion_text_limit = 10_240

    # Set the entity expansion limit. By default the limit is set to 10240.
    def self.entity_expansion_text_limit=( val )
      @@entity_expansion_text_limit = val
    end

    # Get the entity expansion limit. By default the limit is set to 10240.
    def self.entity_expansion_text_limit
      return @@entity_expansion_text_limit
    end
  end
end
PKDH[n�R���share/ruby/rexml/source.rbnu�[���# coding: US-ASCII
# frozen_string_literal: false
require_relative 'encoding'

module REXML
  # Generates Source-s.  USE THIS CLASS.
  class SourceFactory
    # Generates a Source object
    # @param arg Either a String, or an IO
    # @return a Source, or nil if a bad argument was given
    def SourceFactory::create_from(arg)
      if arg.respond_to? :read and
          arg.respond_to? :readline and
          arg.respond_to? :nil? and
          arg.respond_to? :eof?
        IOSource.new(arg)
      elsif arg.respond_to? :to_str
        require 'stringio'
        IOSource.new(StringIO.new(arg))
      elsif arg.kind_of? Source
        arg
      else
        raise "#{arg.class} is not a valid input stream.  It must walk \n"+
          "like either a String, an IO, or a Source."
      end
    end
  end

  # A Source can be searched for patterns, and wraps buffers and other
  # objects and provides consumption of text
  class Source
    include Encoding
    # The current buffer (what we're going to read next)
    attr_reader :buffer
    # The line number of the last consumed text
    attr_reader :line
    attr_reader :encoding

    # Constructor
    # @param arg must be a String, and should be a valid XML document
    # @param encoding if non-null, sets the encoding of the source to this
    # value, overriding all encoding detection
    def initialize(arg, encoding=nil)
      @orig = @buffer = arg
      if encoding
        self.encoding = encoding
      else
        detect_encoding
      end
      @line = 0
    end


    # Inherited from Encoding
    # Overridden to support optimized en/decoding
    def encoding=(enc)
      return unless super
      encoding_updated
    end

    # Scans the source for a given pattern.  Note, that this is not your
    # usual scan() method.  For one thing, the pattern argument has some
    # requirements; for another, the source can be consumed.  You can easily
    # confuse this method.  Originally, the patterns were easier
    # to construct and this method more robust, because this method
    # generated search regexps on the fly; however, this was
    # computationally expensive and slowed down the entire REXML package
    # considerably, since this is by far the most commonly called method.
    # @param pattern must be a Regexp, and must be in the form of
    # /^\s*(#{your pattern, with no groups})(.*)/.  The first group
    # will be returned; the second group is used if the consume flag is
    # set.
    # @param consume if true, the pattern returned will be consumed, leaving
    # everything after it in the Source.
    # @return the pattern, if found, or nil if the Source is empty or the
    # pattern is not found.
    def scan(pattern, cons=false)
      return nil if @buffer.nil?
      rv = @buffer.scan(pattern)
      @buffer = $' if cons and rv.size>0
      rv
    end

    def read
    end

    def consume( pattern )
      @buffer = $' if pattern.match( @buffer )
    end

    def match_to( char, pattern )
      return pattern.match(@buffer)
    end

    def match_to_consume( char, pattern )
      md = pattern.match(@buffer)
      @buffer = $'
      return md
    end

    def match(pattern, cons=false)
      md = pattern.match(@buffer)
      @buffer = $' if cons and md
      return md
    end

    # @return true if the Source is exhausted
    def empty?
      @buffer == ""
    end

    def position
      @orig.index( @buffer )
    end

    # @return the current line in the source
    def current_line
      lines = @orig.split
      res = lines.grep @buffer[0..30]
      res = res[-1] if res.kind_of? Array
      lines.index( res ) if res
    end

    private
    def detect_encoding
      buffer_encoding = @buffer.encoding
      detected_encoding = "UTF-8"
      begin
        @buffer.force_encoding("ASCII-8BIT")
        if @buffer[0, 2] == "\xfe\xff"
          @buffer[0, 2] = ""
          detected_encoding = "UTF-16BE"
        elsif @buffer[0, 2] == "\xff\xfe"
          @buffer[0, 2] = ""
          detected_encoding = "UTF-16LE"
        elsif @buffer[0, 3] == "\xef\xbb\xbf"
          @buffer[0, 3] = ""
          detected_encoding = "UTF-8"
        end
      ensure
        @buffer.force_encoding(buffer_encoding)
      end
      self.encoding = detected_encoding
    end

    def encoding_updated
      if @encoding != 'UTF-8'
        @buffer = decode(@buffer)
        @to_utf = true
      else
        @to_utf = false
        @buffer.force_encoding ::Encoding::UTF_8
      end
    end
  end

  # A Source that wraps an IO.  See the Source class for method
  # documentation
  class IOSource < Source
    #attr_reader :block_size

    # block_size has been deprecated
    def initialize(arg, block_size=500, encoding=nil)
      @er_source = @source = arg
      @to_utf = false
      @pending_buffer = nil

      if encoding
        super("", encoding)
      else
        super(@source.read(3) || "")
      end

      if !@to_utf and
          @buffer.respond_to?(:force_encoding) and
          @source.respond_to?(:external_encoding) and
          @source.external_encoding != ::Encoding::UTF_8
        @force_utf8 = true
      else
        @force_utf8 = false
      end
    end

    def scan(pattern, cons=false)
      rv = super
      # You'll notice that this next section is very similar to the same
      # section in match(), but just a liiittle different.  This is
      # because it is a touch faster to do it this way with scan()
      # than the way match() does it; enough faster to warrant duplicating
      # some code
      if rv.size == 0
        until @buffer =~ pattern or @source.nil?
          begin
            @buffer << readline
          rescue Iconv::IllegalSequence
            raise
          rescue
            @source = nil
          end
        end
        rv = super
      end
      rv.taint if RUBY_VERSION < '2.7'
      rv
    end

    def read
      begin
        @buffer << readline
      rescue Exception, NameError
        @source = nil
      end
    end

    def consume( pattern )
      match( pattern, true )
    end

    def match( pattern, cons=false )
      rv = pattern.match(@buffer)
      @buffer = $' if cons and rv
      while !rv and @source
        begin
          @buffer << readline
          rv = pattern.match(@buffer)
          @buffer = $' if cons and rv
        rescue
          @source = nil
        end
      end
      rv.taint if RUBY_VERSION < '2.7'
      rv
    end

    def empty?
      super and ( @source.nil? || @source.eof? )
    end

    def position
      @er_source.pos rescue 0
    end

    # @return the current line in the source
    def current_line
      begin
        pos = @er_source.pos        # The byte position in the source
        lineno = @er_source.lineno  # The XML < position in the source
        @er_source.rewind
        line = 0                    # The \r\n position in the source
        begin
          while @er_source.pos < pos
            @er_source.readline
            line += 1
          end
        rescue
        end
        @er_source.seek(pos)
      rescue IOError
        pos = -1
        line = -1
      end
      [pos, lineno, line]
    end

    private
    def readline
      str = @source.readline(@line_break)
      if @pending_buffer
        if str.nil?
          str = @pending_buffer
        else
          str = @pending_buffer + str
        end
        @pending_buffer = nil
      end
      return nil if str.nil?

      if @to_utf
        decode(str)
      else
        str.force_encoding(::Encoding::UTF_8) if @force_utf8
        str
      end
    end

    def encoding_updated
      case @encoding
      when "UTF-16BE", "UTF-16LE"
        @source.binmode
        @source.set_encoding(@encoding, @encoding)
      end
      @line_break = encode(">")
      @pending_buffer, @buffer = @buffer, ""
      @pending_buffer.force_encoding(@encoding)
      super
    end
  end
end
PKDH[h�kA))share/ruby/rexml/output.rbnu�[���# frozen_string_literal: false
require_relative 'encoding'

module REXML
  class Output
    include Encoding

    attr_reader :encoding

    def initialize real_IO, encd="iso-8859-1"
      @output = real_IO
      self.encoding = encd

      @to_utf = encoding != 'UTF-8'

      if encoding == "UTF-16"
        @output << "\ufeff".encode("UTF-16BE")
        self.encoding = "UTF-16BE"
      end
    end

    def <<( content )
      @output << (@to_utf ? self.encode(content) : content)
    end

    def to_s
      "Output[#{encoding}]"
    end
  end
end
PKDH[��u�share/ruby/rexml/light/node.rbnu�[���# frozen_string_literal: false
require_relative '../xmltokens'

# [ :element, parent, name, attributes, children* ]
  # a = Node.new
  # a << "B"            # => <a>B</a>
  # a.b                 # => <a>B<b/></a>
  # a.b[1]                      # => <a>B<b/><b/><a>
  # a.b[1]["x"] = "y"   # => <a>B<b/><b x="y"/></a>
  # a.b[0].c            # => <a>B<b><c/></b><b x="y"/></a>
  # a.b.c << "D"                # => <a>B<b><c>D</c></b><b x="y"/></a>
module REXML
  module Light
    # Represents a tagged XML element.  Elements are characterized by
    # having children, attributes, and names, and can themselves be
    # children.
    class Node
      NAMESPLIT = /^(?:(#{XMLTokens::NCNAME_STR}):)?(#{XMLTokens::NCNAME_STR})/u
      PARENTS = [ :element, :document, :doctype ]
      # Create a new element.
      def initialize node=nil
        @node = node
        if node.kind_of? String
          node = [ :text, node ]
        elsif node.nil?
          node = [ :document, nil, nil ]
        elsif node[0] == :start_element
          node[0] = :element
        elsif node[0] == :start_doctype
          node[0] = :doctype
        elsif node[0] == :start_document
          node[0] = :document
        end
      end

      def size
        if PARENTS.include? @node[0]
          @node[-1].size
        else
          0
        end
      end

      def each
        size.times { |x| yield( at(x+4) ) }
      end

      def name
        at(2)
      end

      def name=( name_str, ns=nil )
        pfx = ''
        pfx = "#{prefix(ns)}:" if ns
        _old_put(2, "#{pfx}#{name_str}")
      end

      def parent=( node )
        _old_put(1,node)
      end

      def local_name
        namesplit
        @name
      end

      def local_name=( name_str )
        _old_put( 1, "#@prefix:#{name_str}" )
      end

      def prefix( namespace=nil )
        prefix_of( self, namespace )
      end

      def namespace( prefix=prefix() )
        namespace_of( self, prefix )
      end

      def namespace=( namespace )
        @prefix = prefix( namespace )
        pfx = ''
        pfx = "#@prefix:" if @prefix.size > 0
        _old_put(1, "#{pfx}#@name")
      end

      def []( reference, ns=nil )
        if reference.kind_of? String
          pfx = ''
          pfx = "#{prefix(ns)}:" if ns
          at(3)["#{pfx}#{reference}"]
        elsif reference.kind_of? Range
          _old_get( Range.new(4+reference.begin, reference.end, reference.exclude_end?) )
        else
          _old_get( 4+reference )
        end
      end

      def =~( path )
        XPath.match( self, path )
      end

      # Doesn't handle namespaces yet
      def []=( reference, ns, value=nil )
        if reference.kind_of? String
          value = ns unless value
          at( 3 )[reference] = value
        elsif reference.kind_of? Range
          _old_put( Range.new(3+reference.begin, reference.end, reference.exclude_end?), ns )
        else
          if value
            _old_put( 4+reference, ns, value )
          else
            _old_put( 4+reference, ns )
          end
        end
      end

      # Append a child to this element, optionally under a provided namespace.
      # The namespace argument is ignored if the element argument is an Element
      # object.  Otherwise, the element argument is a string, the namespace (if
      # provided) is the namespace the element is created in.
      def << element
        if node_type() == :text
          at(-1) << element
        else
          newnode = Node.new( element )
          newnode.parent = self
          self.push( newnode )
        end
        at(-1)
      end

      def node_type
        _old_get(0)
      end

      def text=( foo )
        replace = at(4).kind_of?(String)? 1 : 0
        self._old_put(4,replace, normalizefoo)
      end

      def root
        context = self
        context = context.at(1) while context.at(1)
      end

      def has_name?( name, namespace = '' )
        at(3) == name and namespace() == namespace
      end

      def children
        self
      end

      def parent
        at(1)
      end

      def to_s

      end

      private

      def namesplit
        return if @name.defined?
        at(2) =~ NAMESPLIT
        @prefix = '' || $1
        @name = $2
      end

      def namespace_of( node, prefix=nil )
        if not prefix
          name = at(2)
          name =~ NAMESPLIT
          prefix = $1
        end
        to_find = 'xmlns'
        to_find = "xmlns:#{prefix}" if not prefix.nil?
        ns = at(3)[ to_find ]
        ns ? ns : namespace_of( @node[0], prefix )
      end

      def prefix_of( node, namespace=nil )
        if not namespace
          name = node.name
          name =~ NAMESPLIT
          $1
        else
          ns = at(3).find { |k,v| v == namespace }
          ns ? ns : prefix_of( node.parent, namespace )
        end
      end
    end
  end
end
PKDH[Tߑs��share/ruby/rexml/doctype.rbnu�[���# frozen_string_literal: false
require_relative "parent"
require_relative "parseexception"
require_relative "namespace"
require_relative 'entity'
require_relative 'attlistdecl'
require_relative 'xmltokens'

module REXML
  class ReferenceWriter
    def initialize(id_type,
                   public_id_literal,
                   system_literal,
                   context=nil)
      @id_type = id_type
      @public_id_literal = public_id_literal
      @system_literal = system_literal
      if context and context[:prologue_quote] == :apostrophe
        @default_quote = "'"
      else
        @default_quote = "\""
      end
    end

    def write(output)
      output << " #{@id_type}"
      if @public_id_literal
        if @public_id_literal.include?("'")
          quote = "\""
        else
          quote = @default_quote
        end
        output << " #{quote}#{@public_id_literal}#{quote}"
      end
      if @system_literal
        if @system_literal.include?("'")
          quote = "\""
        elsif @system_literal.include?("\"")
          quote = "'"
        else
          quote = @default_quote
        end
        output << " #{quote}#{@system_literal}#{quote}"
      end
    end
  end

  # Represents an XML DOCTYPE declaration; that is, the contents of <!DOCTYPE
  # ... >.  DOCTYPES can be used to declare the DTD of a document, as well as
  # being used to declare entities used in the document.
  class DocType < Parent
    include XMLTokens
    START = "<!DOCTYPE"
    STOP = ">"
    SYSTEM = "SYSTEM"
    PUBLIC = "PUBLIC"
    DEFAULT_ENTITIES = {
      'gt'=>EntityConst::GT,
      'lt'=>EntityConst::LT,
      'quot'=>EntityConst::QUOT,
      "apos"=>EntityConst::APOS
    }

    # name is the name of the doctype
    # external_id is the referenced DTD, if given
    attr_reader :name, :external_id, :entities, :namespaces

    # Constructor
    #
    #   dt = DocType.new( 'foo', '-//I/Hate/External/IDs' )
    #   # <!DOCTYPE foo '-//I/Hate/External/IDs'>
    #   dt = DocType.new( doctype_to_clone )
    #   # Incomplete.  Shallow clone of doctype
    #
    # +Note+ that the constructor:
    #
    #  Doctype.new( Source.new( "<!DOCTYPE foo 'bar'>" ) )
    #
    # is _deprecated_.  Do not use it.  It will probably disappear.
    def initialize( first, parent=nil )
      @entities = DEFAULT_ENTITIES
      @long_name = @uri = nil
      if first.kind_of? String
        super()
        @name = first
        @external_id = parent
      elsif first.kind_of? DocType
        super( parent )
        @name = first.name
        @external_id = first.external_id
        @long_name = first.instance_variable_get(:@long_name)
        @uri = first.instance_variable_get(:@uri)
      elsif first.kind_of? Array
        super( parent )
        @name = first[0]
        @external_id = first[1]
        @long_name = first[2]
        @uri = first[3]
      elsif first.kind_of? Source
        super( parent )
        parser = Parsers::BaseParser.new( first )
        event = parser.pull
        if event[0] == :start_doctype
          @name, @external_id, @long_name, @uri, = event[1..-1]
        end
      else
        super()
      end
    end

    def node_type
      :doctype
    end

    def attributes_of element
      rv = []
      each do |child|
        child.each do |key,val|
          rv << Attribute.new(key,val)
        end if child.kind_of? AttlistDecl and child.element_name == element
      end
      rv
    end

    def attribute_of element, attribute
      att_decl = find do |child|
        child.kind_of? AttlistDecl and
        child.element_name == element and
        child.include? attribute
      end
      return nil unless att_decl
      att_decl[attribute]
    end

    def clone
      DocType.new self
    end

    # output::
    #   Where to write the string
    # indent::
    #   An integer.  If -1, no indentation will be used; otherwise, the
    #   indentation will be this number of spaces, and children will be
    #   indented an additional amount.
    # transitive::
    #   Ignored
    # ie_hack::
    #   Ignored
    def write( output, indent=0, transitive=false, ie_hack=false )
      f = REXML::Formatters::Default.new
      indent( output, indent )
      output << START
      output << ' '
      output << @name
      if @external_id
        reference_writer = ReferenceWriter.new(@external_id,
                                               @long_name,
                                               @uri,
                                               context)
        reference_writer.write(output)
      end
      unless @children.empty?
        output << ' ['
        @children.each { |child|
          output << "\n"
          f.write( child, output )
        }
        output << "\n]"
      end
      output << STOP
    end

    def context
      if @parent
        @parent.context
      else
        nil
      end
    end

    def entity( name )
      @entities[name].unnormalized if @entities[name]
    end

    def add child
      super(child)
      @entities = DEFAULT_ENTITIES.clone if @entities == DEFAULT_ENTITIES
      @entities[ child.name ] = child if child.kind_of? Entity
    end

    # This method retrieves the public identifier identifying the document's
    # DTD.
    #
    # Method contributed by Henrik Martensson
    def public
      case @external_id
      when "SYSTEM"
        nil
      when "PUBLIC"
        strip_quotes(@long_name)
      end
    end

    # This method retrieves the system identifier identifying the document's DTD
    #
    # Method contributed by Henrik Martensson
    def system
      case @external_id
      when "SYSTEM"
        strip_quotes(@long_name)
      when "PUBLIC"
        @uri.kind_of?(String) ? strip_quotes(@uri) : nil
      end
    end

    # This method returns a list of notations that have been declared in the
    # _internal_ DTD subset. Notations in the external DTD subset are not
    # listed.
    #
    # Method contributed by Henrik Martensson
    def notations
      children().select {|node| node.kind_of?(REXML::NotationDecl)}
    end

    # Retrieves a named notation. Only notations declared in the internal
    # DTD subset can be retrieved.
    #
    # Method contributed by Henrik Martensson
    def notation(name)
      notations.find { |notation_decl|
        notation_decl.name == name
      }
    end

    private

    # Method contributed by Henrik Martensson
    def strip_quotes(quoted_string)
      quoted_string =~ /^[\'\"].*[\'\"]$/ ?
        quoted_string[1, quoted_string.length-2] :
        quoted_string
    end
  end

  # We don't really handle any of these since we're not a validating
  # parser, so we can be pretty dumb about them.  All we need to be able
  # to do is spew them back out on a write()

  # This is an abstract class.  You never use this directly; it serves as a
  # parent class for the specific declarations.
  class Declaration < Child
    def initialize src
      super()
      @string = src
    end

    def to_s
      @string+'>'
    end

    # == DEPRECATED
    # See REXML::Formatters
    #
    def write( output, indent )
      output << to_s
    end
  end

  public
  class ElementDecl < Declaration
    def initialize( src )
      super
    end
  end

  class ExternalEntity < Child
    def initialize( src )
      super()
      @entity = src
    end
    def to_s
      @entity
    end
    def write( output, indent )
      output << @entity
    end
  end

  class NotationDecl < Child
    attr_accessor :public, :system
    def initialize name, middle, pub, sys
      super(nil)
      @name = name
      @middle = middle
      @public = pub
      @system = sys
    end

    def to_s
      context = nil
      context = parent.context if parent
      notation = "<!NOTATION #{@name}"
      reference_writer = ReferenceWriter.new(@middle, @public, @system, context)
      reference_writer.write(notation)
      notation << ">"
      notation
    end

    def write( output, indent=-1 )
      output << to_s
    end

    # This method retrieves the name of the notation.
    #
    # Method contributed by Henrik Martensson
    def name
      @name
    end
  end
end
PKDH[��71��share/ruby/rexml/attlistdecl.rbnu�[���# frozen_string_literal: false
#vim:ts=2 sw=2 noexpandtab:
require_relative 'child'
require_relative 'source'

module REXML
  # This class needs:
  # * Documentation
  # * Work!  Not all types of attlists are intelligently parsed, so we just
  # spew back out what we get in.  This works, but it would be better if
  # we formatted the output ourselves.
  #
  # AttlistDecls provide *just* enough support to allow namespace
  # declarations.  If you need some sort of generalized support, or have an
  # interesting idea about how to map the hideous, terrible design of DTD
  # AttlistDecls onto an intuitive Ruby interface, let me know.  I'm desperate
  # for anything to make DTDs more palateable.
  class AttlistDecl < Child
    include Enumerable

    # What is this?  Got me.
    attr_reader :element_name

    # Create an AttlistDecl, pulling the information from a Source.  Notice
    # that this isn't very convenient; to create an AttlistDecl, you basically
    # have to format it yourself, and then have the initializer parse it.
    # Sorry, but for the foreseeable future, DTD support in REXML is pretty
    # weak on convenience.  Have I mentioned how much I hate DTDs?
    def initialize(source)
      super()
      if (source.kind_of? Array)
        @element_name, @pairs, @contents = *source
      end
    end

    # Access the attlist attribute/value pairs.
    #  value = attlist_decl[ attribute_name ]
    def [](key)
      @pairs[key]
    end

    # Whether an attlist declaration includes the given attribute definition
    #  if attlist_decl.include? "xmlns:foobar"
    def include?(key)
      @pairs.keys.include? key
    end

    # Iterate over the key/value pairs:
    #  attlist_decl.each { |attribute_name, attribute_value| ... }
    def each(&block)
      @pairs.each(&block)
    end

    # Write out exactly what we got in.
    def write out, indent=-1
      out << @contents
    end

    def node_type
      :attlistdecl
    end
  end
end
PKDH[)�s�7�7share/ruby/rexml/text.rbnu�[���# frozen_string_literal: false
require_relative 'security'
require_relative 'entity'
require_relative 'doctype'
require_relative 'child'
require_relative 'doctype'
require_relative 'parseexception'

module REXML
  # Represents text nodes in an XML document
  class Text < Child
    include Comparable
    # The order in which the substitutions occur
    SPECIALS = [ /&(?!#?[\w-]+;)/u, /</u, />/u, /"/u, /'/u, /\r/u ]
    SUBSTITUTES = ['&amp;', '&lt;', '&gt;', '&quot;', '&apos;', '&#13;']
    # Characters which are substituted in written strings
    SLAICEPS = [ '<', '>', '"', "'", '&' ]
    SETUTITSBUS = [ /&lt;/u, /&gt;/u, /&quot;/u, /&apos;/u, /&amp;/u ]

    # If +raw+ is true, then REXML leaves the value alone
    attr_accessor :raw

    NEEDS_A_SECOND_CHECK = /(<|&((#{Entity::NAME});|(#0*((?:\d+)|(?:x[a-fA-F0-9]+)));)?)/um
    NUMERICENTITY = /&#0*((?:\d+)|(?:x[a-fA-F0-9]+));/
    VALID_CHAR = [
      0x9, 0xA, 0xD,
      (0x20..0xD7FF),
      (0xE000..0xFFFD),
      (0x10000..0x10FFFF)
    ]

    if String.method_defined? :encode
      VALID_XML_CHARS = Regexp.new('^['+
        VALID_CHAR.map { |item|
          case item
          when Integer
            [item].pack('U').force_encoding('utf-8')
          when Range
            [item.first, '-'.ord, item.last].pack('UUU').force_encoding('utf-8')
          end
        }.join +
      ']*$')
    else
      VALID_XML_CHARS = /^(
           [\x09\x0A\x0D\x20-\x7E]            # ASCII
         | [\xC2-\xDF][\x80-\xBF]             # non-overlong 2-byte
         |  \xE0[\xA0-\xBF][\x80-\xBF]        # excluding overlongs
         | [\xE1-\xEC\xEE][\x80-\xBF]{2}      # straight 3-byte
         |  \xEF[\x80-\xBE]{2}                #
         |  \xEF\xBF[\x80-\xBD]               # excluding U+fffe and U+ffff
         |  \xED[\x80-\x9F][\x80-\xBF]        # excluding surrogates
         |  \xF0[\x90-\xBF][\x80-\xBF]{2}     # planes 1-3
         | [\xF1-\xF3][\x80-\xBF]{3}          # planes 4-15
         |  \xF4[\x80-\x8F][\x80-\xBF]{2}     # plane 16
       )*$/nx;
    end

    # Constructor
    # +arg+ if a String, the content is set to the String.  If a Text,
    # the object is shallowly cloned.
    #
    # +respect_whitespace+ (boolean, false) if true, whitespace is
    # respected
    #
    # +parent+ (nil) if this is a Parent object, the parent
    # will be set to this.
    #
    # +raw+ (nil) This argument can be given three values.
    # If true, then the value of used to construct this object is expected to
    # contain no unescaped XML markup, and REXML will not change the text. If
    # this value is false, the string may contain any characters, and REXML will
    # escape any and all defined entities whose values are contained in the
    # text.  If this value is nil (the default), then the raw value of the
    # parent will be used as the raw value for this node.  If there is no raw
    # value for the parent, and no value is supplied, the default is false.
    # Use this field if you have entities defined for some text, and you don't
    # want REXML to escape that text in output.
    #   Text.new( "<&", false, nil, false ) #-> "&lt;&amp;"
    #   Text.new( "&lt;&amp;", false, nil, false ) #-> "&amp;lt;&amp;amp;"
    #   Text.new( "<&", false, nil, true )  #-> Parse exception
    #   Text.new( "&lt;&amp;", false, nil, true )  #-> "&lt;&amp;"
    #   # Assume that the entity "s" is defined to be "sean"
    #   # and that the entity    "r" is defined to be "russell"
    #   Text.new( "sean russell" )          #-> "&s; &r;"
    #   Text.new( "sean russell", false, nil, true ) #-> "sean russell"
    #
    # +entity_filter+ (nil) This can be an array of entities to match in the
    # supplied text.  This argument is only useful if +raw+ is set to false.
    #   Text.new( "sean russell", false, nil, false, ["s"] ) #-> "&s; russell"
    #   Text.new( "sean russell", false, nil, true, ["s"] ) #-> "sean russell"
    # In the last example, the +entity_filter+ argument is ignored.
    #
    # +illegal+ INTERNAL USE ONLY
    def initialize(arg, respect_whitespace=false, parent=nil, raw=nil,
      entity_filter=nil, illegal=NEEDS_A_SECOND_CHECK )

      @raw = false
      @parent = nil
      @entity_filter = nil

      if parent
        super( parent )
        @raw = parent.raw
      end

      if arg.kind_of? String
        @string = arg.dup
      elsif arg.kind_of? Text
        @string = arg.instance_variable_get(:@string).dup
        @raw = arg.raw
        @entity_filter = arg.instance_variable_get(:@entity_filter)
      else
        raise "Illegal argument of type #{arg.type} for Text constructor (#{arg})"
      end

      @string.squeeze!(" \n\t") unless respect_whitespace
      @string.gsub!(/\r\n?/, "\n")
      @raw = raw unless raw.nil?
      @entity_filter = entity_filter if entity_filter
      clear_cache

      Text.check(@string, illegal, doctype) if @raw
    end

    def parent= parent
      super(parent)
      Text.check(@string, NEEDS_A_SECOND_CHECK, doctype) if @raw and @parent
    end

    # check for illegal characters
    def Text.check string, pattern, doctype

      # illegal anywhere
      if string !~ VALID_XML_CHARS
        if String.method_defined? :encode
          string.chars.each do |c|
            case c.ord
            when *VALID_CHAR
            else
              raise "Illegal character #{c.inspect} in raw string #{string.inspect}"
            end
          end
        else
          string.scan(/[\x00-\x7F]|[\x80-\xBF][\xC0-\xF0]*|[\xC0-\xF0]/n) do |c|
            case c.unpack('U')
            when *VALID_CHAR
            else
              raise "Illegal character #{c.inspect} in raw string #{string.inspect}"
            end
          end
        end
      end

      # context sensitive
      string.scan(pattern) do
        if $1[-1] != ?;
          raise "Illegal character #{$1.inspect} in raw string #{string.inspect}"
        elsif $1[0] == ?&
          if $5 and $5[0] == ?#
            case ($5[1] == ?x ? $5[2..-1].to_i(16) : $5[1..-1].to_i)
            when *VALID_CHAR
            else
              raise "Illegal character #{$1.inspect} in raw string #{string.inspect}"
            end
          # FIXME: below can't work but this needs API change.
          # elsif @parent and $3 and !SUBSTITUTES.include?($1)
          #   if !doctype or !doctype.entities.has_key?($3)
          #     raise "Undeclared entity '#{$1}' in raw string \"#{string}\""
          #   end
          end
        end
      end
    end

    def node_type
      :text
    end

    def empty?
      @string.size==0
    end


    def clone
      return Text.new(self, true)
    end


    # Appends text to this text node.  The text is appended in the +raw+ mode
    # of this text node.
    #
    # +returns+ the text itself to enable method chain like
    # 'text << "XXX" << "YYY"'.
    def <<( to_append )
      @string << to_append.gsub( /\r\n?/, "\n" )
      clear_cache
      self
    end


    # +other+ a String or a Text
    # +returns+ the result of (to_s <=> arg.to_s)
    def <=>( other )
      to_s() <=> other.to_s
    end

    def doctype
      if @parent
        doc = @parent.document
        doc.doctype if doc
      end
    end

    REFERENCE = /#{Entity::REFERENCE}/
    # Returns the string value of this text node.  This string is always
    # escaped, meaning that it is a valid XML text node string, and all
    # entities that can be escaped, have been inserted.  This method respects
    # the entity filter set in the constructor.
    #
    #   # Assume that the entity "s" is defined to be "sean", and that the
    #   # entity "r" is defined to be "russell"
    #   t = Text.new( "< & sean russell", false, nil, false, ['s'] )
    #   t.to_s   #-> "&lt; &amp; &s; russell"
    #   t = Text.new( "< & &s; russell", false, nil, false )
    #   t.to_s   #-> "&lt; &amp; &s; russell"
    #   u = Text.new( "sean russell", false, nil, true )
    #   u.to_s   #-> "sean russell"
    def to_s
      return @string if @raw
      @normalized ||= Text::normalize( @string, doctype, @entity_filter )
    end

    def inspect
      @string.inspect
    end

    # Returns the string value of this text.  This is the text without
    # entities, as it might be used programmatically, or printed to the
    # console.  This ignores the 'raw' attribute setting, and any
    # entity_filter.
    #
    #   # Assume that the entity "s" is defined to be "sean", and that the
    #   # entity "r" is defined to be "russell"
    #   t = Text.new( "< & sean russell", false, nil, false, ['s'] )
    #   t.value   #-> "< & sean russell"
    #   t = Text.new( "< & &s; russell", false, nil, false )
    #   t.value   #-> "< & sean russell"
    #   u = Text.new( "sean russell", false, nil, true )
    #   u.value   #-> "sean russell"
    def value
      @unnormalized ||= Text::unnormalize( @string, doctype )
    end

    # Sets the contents of this text node.  This expects the text to be
    # unnormalized.  It returns self.
    #
    #   e = Element.new( "a" )
    #   e.add_text( "foo" )   # <a>foo</a>
    #   e[0].value = "bar"    # <a>bar</a>
    #   e[0].value = "<a>"    # <a>&lt;a&gt;</a>
    def value=( val )
      @string = val.gsub( /\r\n?/, "\n" )
      clear_cache
      @raw = false
    end

    def wrap(string, width, addnewline=false)
      # Recursively wrap string at width.
      return string if string.length <= width
      place = string.rindex(' ', width) # Position in string with last ' ' before cutoff
      if addnewline then
        return "\n" + string[0,place] + "\n" + wrap(string[place+1..-1], width)
      else
        return string[0,place] + "\n" + wrap(string[place+1..-1], width)
      end
    end

    def indent_text(string, level=1, style="\t", indentfirstline=true)
      return string if level < 0
      new_string = ''
      string.each_line { |line|
        indent_string = style * level
        new_line = (indent_string + line).sub(/[\s]+$/,'')
        new_string << new_line
      }
      new_string.strip! unless indentfirstline
      return new_string
    end

    # == DEPRECATED
    # See REXML::Formatters
    #
    def write( writer, indent=-1, transitive=false, ie_hack=false )
      Kernel.warn("#{self.class.name}.write is deprecated.  See REXML::Formatters", uplevel: 1)
      formatter = if indent > -1
          REXML::Formatters::Pretty.new( indent )
        else
          REXML::Formatters::Default.new
        end
      formatter.write( self, writer )
    end

    # FIXME
    # This probably won't work properly
    def xpath
      path = @parent.xpath
      path += "/text()"
      return path
    end

    # Writes out text, substituting special characters beforehand.
    # +out+ A String, IO, or any other object supporting <<( String )
    # +input+ the text to substitute and the write out
    #
    #   z=utf8.unpack("U*")
    #   ascOut=""
    #   z.each{|r|
    #     if r <  0x100
    #       ascOut.concat(r.chr)
    #     else
    #       ascOut.concat(sprintf("&#x%x;", r))
    #     end
    #   }
    #   puts ascOut
    def write_with_substitution out, input
      copy = input.clone
      # Doing it like this rather than in a loop improves the speed
      copy.gsub!( SPECIALS[0], SUBSTITUTES[0] )
      copy.gsub!( SPECIALS[1], SUBSTITUTES[1] )
      copy.gsub!( SPECIALS[2], SUBSTITUTES[2] )
      copy.gsub!( SPECIALS[3], SUBSTITUTES[3] )
      copy.gsub!( SPECIALS[4], SUBSTITUTES[4] )
      copy.gsub!( SPECIALS[5], SUBSTITUTES[5] )
      out << copy
    end

    private
    def clear_cache
      @normalized = nil
      @unnormalized = nil
    end

    # Reads text, substituting entities
    def Text::read_with_substitution( input, illegal=nil )
      copy = input.clone

      if copy =~ illegal
        raise ParseException.new( "malformed text: Illegal character #$& in \"#{copy}\"" )
      end if illegal

      copy.gsub!( /\r\n?/, "\n" )
      if copy.include? ?&
        copy.gsub!( SETUTITSBUS[0], SLAICEPS[0] )
        copy.gsub!( SETUTITSBUS[1], SLAICEPS[1] )
        copy.gsub!( SETUTITSBUS[2], SLAICEPS[2] )
        copy.gsub!( SETUTITSBUS[3], SLAICEPS[3] )
        copy.gsub!( SETUTITSBUS[4], SLAICEPS[4] )
        copy.gsub!( /&#0*((?:\d+)|(?:x[a-f0-9]+));/ ) {
          m=$1
          #m='0' if m==''
          m = "0#{m}" if m[0] == ?x
          [Integer(m)].pack('U*')
        }
      end
      copy
    end

    EREFERENCE = /&(?!#{Entity::NAME};)/
    # Escapes all possible entities
    def Text::normalize( input, doctype=nil, entity_filter=nil )
      copy = input.to_s
      # Doing it like this rather than in a loop improves the speed
      #copy = copy.gsub( EREFERENCE, '&amp;' )
      copy = copy.gsub( "&", "&amp;" )
      if doctype
        # Replace all ampersands that aren't part of an entity
        doctype.entities.each_value do |entity|
          copy = copy.gsub( entity.value,
            "&#{entity.name};" ) if entity.value and
              not( entity_filter and entity_filter.include?(entity.name) )
        end
      else
        # Replace all ampersands that aren't part of an entity
        DocType::DEFAULT_ENTITIES.each_value do |entity|
          copy = copy.gsub(entity.value, "&#{entity.name};" )
        end
      end
      copy
    end

    # Unescapes all possible entities
    def Text::unnormalize( string, doctype=nil, filter=nil, illegal=nil )
      sum = 0
      string.gsub( /\r\n?/, "\n" ).gsub( REFERENCE ) {
        s = Text.expand($&, doctype, filter)
        if sum + s.bytesize > Security.entity_expansion_text_limit
          raise "entity expansion has grown too large"
        else
          sum += s.bytesize
        end
        s
      }
    end

    def Text.expand(ref, doctype, filter)
      if ref[1] == ?#
        if ref[2] == ?x
          [ref[3...-1].to_i(16)].pack('U*')
        else
          [ref[2...-1].to_i].pack('U*')
        end
      elsif ref == '&amp;'
        '&'
      elsif filter and filter.include?( ref[1...-1] )
        ref
      elsif doctype
        doctype.entity( ref[1...-1] ) or ref
      else
        entity_value = DocType::DEFAULT_ENTITIES[ ref[1...-1] ]
        entity_value ? entity_value.value : ref
      end
    end
  end
end
PKDH[Po�L	L	share/ruby/rexml/xmltokens.rbnu�[���# frozen_string_literal: false
module REXML
  # Defines a number of tokens used for parsing XML.  Not for general
  # consumption.
  module XMLTokens
    # From http://www.w3.org/TR/REC-xml/#sec-common-syn
    #
    #   [4] NameStartChar ::=
    #         ":" |
    #         [A-Z] |
    #         "_" |
    #         [a-z] |
    #         [#xC0-#xD6] |
    #         [#xD8-#xF6] |
    #         [#xF8-#x2FF] |
    #         [#x370-#x37D] |
    #         [#x37F-#x1FFF] |
    #         [#x200C-#x200D] |
    #         [#x2070-#x218F] |
    #         [#x2C00-#x2FEF] |
    #         [#x3001-#xD7FF] |
    #         [#xF900-#xFDCF] |
    #         [#xFDF0-#xFFFD] |
    #         [#x10000-#xEFFFF]
    name_start_chars = [
      ":",
      "A-Z",
      "_",
      "a-z",
      "\\u00C0-\\u00D6",
      "\\u00D8-\\u00F6",
      "\\u00F8-\\u02FF",
      "\\u0370-\\u037D",
      "\\u037F-\\u1FFF",
      "\\u200C-\\u200D",
      "\\u2070-\\u218F",
      "\\u2C00-\\u2FEF",
      "\\u3001-\\uD7FF",
      "\\uF900-\\uFDCF",
      "\\uFDF0-\\uFFFD",
      "\\u{10000}-\\u{EFFFF}",
    ]
    # From http://www.w3.org/TR/REC-xml/#sec-common-syn
    #
    #   [4a] NameChar ::=
    #      NameStartChar |
    #      "-" |
    #      "." |
    #      [0-9] |
    #      #xB7 |
    #      [#x0300-#x036F] |
    #      [#x203F-#x2040]
    name_chars = name_start_chars + [
      "\\-",
      "\\.",
      "0-9",
      "\\u00B7",
      "\\u0300-\\u036F",
      "\\u203F-\\u2040",
    ]
    NAME_START_CHAR = "[#{name_start_chars.join('')}]"
    NAME_CHAR = "[#{name_chars.join('')}]"
    NAMECHAR = NAME_CHAR # deprecated. Use NAME_CHAR instead.

    # From http://www.w3.org/TR/xml-names11/#NT-NCName
    #
    #   [6] NCNameStartChar ::= NameStartChar - ':'
    ncname_start_chars = name_start_chars - [":"]
    # From http://www.w3.org/TR/xml-names11/#NT-NCName
    #
    #   [5] NCNameChar ::= NameChar - ':'
    ncname_chars = name_chars - [":"]
    NCNAME_STR = "[#{ncname_start_chars.join('')}][#{ncname_chars.join('')}]*"
    NAME_STR = "(?:#{NCNAME_STR}:)?#{NCNAME_STR}"

    NAME = "(#{NAME_START_CHAR}#{NAME_CHAR}*)"
    NMTOKEN = "(?:#{NAME_CHAR})+"
    NMTOKENS = "#{NMTOKEN}(\\s+#{NMTOKEN})*"
    REFERENCE = "(?:&#{NAME};|&#\\d+;|&#x[0-9a-fA-F]+;)"

    #REFERENCE = "(?:#{ENTITYREF}|#{CHARREF})"
    #ENTITYREF = "&#{NAME};"
    #CHARREF = "&#\\d+;|&#x[0-9a-fA-F]+;"
  end
end
PKDH[n�����share/ruby/rexml/namespace.rbnu�[���# frozen_string_literal: false

require_relative 'xmltokens'

module REXML
  # Adds named attributes to an object.
  module Namespace
    # The name of the object, valid if set
    attr_reader :name, :expanded_name
    # The expanded name of the object, valid if name is set
    attr_accessor :prefix
    include XMLTokens
    NAMESPLIT = /^(?:(#{NCNAME_STR}):)?(#{NCNAME_STR})/u

    # Sets the name and the expanded name
    def name=( name )
      @expanded_name = name
      case name
      when NAMESPLIT
        if $1
          @prefix = $1
        else
          @prefix = ""
          @namespace = ""
        end
        @name = $2
      when ""
        @prefix = nil
        @namespace = nil
        @name = nil
      else
        message = "name must be \#{PREFIX}:\#{LOCAL_NAME} or \#{LOCAL_NAME}: "
        message += "<#{name.inspect}>"
        raise ArgumentError, message
      end
    end

    # Compares names optionally WITH namespaces
    def has_name?( other, ns=nil )
      if ns
        return (namespace() == ns and name() == other)
      elsif other.include? ":"
        return fully_expanded_name == other
      else
        return name == other
      end
    end

    alias :local_name :name

    # Fully expand the name, even if the prefix wasn't specified in the
    # source file.
    def fully_expanded_name
      ns = prefix
      return "#{ns}:#@name" if ns.size > 0
      return @name
    end
  end
end
PKDH[�E���share/ruby/rexml/attribute.rbnu�[���# frozen_string_literal: false
require_relative "namespace"
require_relative 'text'

module REXML
  # Defines an Element Attribute; IE, a attribute=value pair, as in:
  # <element attribute="value"/>.  Attributes can be in their own
  # namespaces.  General users of REXML will not interact with the
  # Attribute class much.
  class Attribute
    include Node
    include Namespace

    # The element to which this attribute belongs
    attr_reader :element
    # The normalized value of this attribute.  That is, the attribute with
    # entities intact.
    attr_writer :normalized
    PATTERN = /\s*(#{NAME_STR})\s*=\s*(["'])(.*?)\2/um

    NEEDS_A_SECOND_CHECK = /(<|&((#{Entity::NAME});|(#0*((?:\d+)|(?:x[a-fA-F0-9]+)));)?)/um

    # Constructor.
    # FIXME: The parser doesn't catch illegal characters in attributes
    #
    # first::
    #   Either: an Attribute, which this new attribute will become a
    #   clone of; or a String, which is the name of this attribute
    # second::
    #   If +first+ is an Attribute, then this may be an Element, or nil.
    #   If nil, then the Element parent of this attribute is the parent
    #   of the +first+ Attribute.  If the first argument is a String,
    #   then this must also be a String, and is the content of the attribute.
    #   If this is the content, it must be fully normalized (contain no
    #   illegal characters).
    # parent::
    #   Ignored unless +first+ is a String; otherwise, may be the Element
    #   parent of this attribute, or nil.
    #
    #
    #  Attribute.new( attribute_to_clone )
    #  Attribute.new( attribute_to_clone, parent_element )
    #  Attribute.new( "attr", "attr_value" )
    #  Attribute.new( "attr", "attr_value", parent_element )
    def initialize( first, second=nil, parent=nil )
      @normalized = @unnormalized = @element = nil
      if first.kind_of? Attribute
        self.name = first.expanded_name
        @unnormalized = first.value
        if second.kind_of? Element
          @element = second
        else
          @element = first.element
        end
      elsif first.kind_of? String
        @element = parent
        self.name = first
        @normalized = second.to_s
      else
        raise "illegal argument #{first.class.name} to Attribute constructor"
      end
    end

    # Returns the namespace of the attribute.
    #
    #  e = Element.new( "elns:myelement" )
    #  e.add_attribute( "nsa:a", "aval" )
    #  e.add_attribute( "b", "bval" )
    #  e.attributes.get_attribute( "a" ).prefix   # -> "nsa"
    #  e.attributes.get_attribute( "b" ).prefix   # -> ""
    #  a = Attribute.new( "x", "y" )
    #  a.prefix                                   # -> ""
    def prefix
      super
    end

    # Returns the namespace URL, if defined, or nil otherwise
    #
    #  e = Element.new("el")
    #  e.add_namespace("ns", "http://url")
    #  e.add_attribute("ns:a", "b")
    #  e.add_attribute("nsx:a", "c")
    #  e.attribute("ns:a").namespace # => "http://url"
    #  e.attribute("nsx:a").namespace # => nil
    #
    # This method always returns "" for no namespace attribute. Because
    # the default namespace doesn't apply to attribute names.
    #
    # From https://www.w3.org/TR/xml-names/#uniqAttrs
    #
    # > the default namespace does not apply to attribute names
    #
    #  e = REXML::Element.new("el")
    #  e.add_namespace("", "http://example.com/")
    #  e.namespace # => "http://example.com/"
    #  e.add_attribute("a", "b")
    #  e.attribute("a").namespace # => ""
    def namespace arg=nil
      arg = prefix if arg.nil?
      if arg == ""
        ""
      else
        @element.namespace(arg)
      end
    end

    # Returns true if other is an Attribute and has the same name and value,
    # false otherwise.
    def ==( other )
      other.kind_of?(Attribute) and other.name==name and other.value==value
    end

    # Creates (and returns) a hash from both the name and value
    def hash
      name.hash + value.hash
    end

    # Returns this attribute out as XML source, expanding the name
    #
    #  a = Attribute.new( "x", "y" )
    #  a.to_string     # -> "x='y'"
    #  b = Attribute.new( "ns:x", "y" )
    #  b.to_string     # -> "ns:x='y'"
    def to_string
      if @element and @element.context and @element.context[:attribute_quote] == :quote
        %Q^#@expanded_name="#{to_s().gsub(/"/, '&quot;')}"^
      else
        "#@expanded_name='#{to_s().gsub(/'/, '&apos;')}'"
      end
    end

    def doctype
      if @element
        doc = @element.document
        doc.doctype if doc
      end
    end

    # Returns the attribute value, with entities replaced
    def to_s
      return @normalized if @normalized

      @normalized = Text::normalize( @unnormalized, doctype )
      @unnormalized = nil
      @normalized
    end

    # Returns the UNNORMALIZED value of this attribute.  That is, entities
    # have been expanded to their values
    def value
      return @unnormalized if @unnormalized
      @unnormalized = Text::unnormalize( @normalized, doctype )
      @normalized = nil
      @unnormalized
    end

    # Returns a copy of this attribute
    def clone
      Attribute.new self
    end

    # Sets the element of which this object is an attribute.  Normally, this
    # is not directly called.
    #
    # Returns this attribute
    def element=( element )
      @element = element

      if @normalized
        Text.check( @normalized, NEEDS_A_SECOND_CHECK, doctype )
      end

      self
    end

    # Removes this Attribute from the tree, and returns true if successful
    #
    # This method is usually not called directly.
    def remove
      @element.attributes.delete self.name unless @element.nil?
    end

    # Writes this attribute (EG, puts 'key="value"' to the output)
    def write( output, indent=-1 )
      output << to_string
    end

    def node_type
      :attribute
    end

    def inspect
      rv = ""
      write( rv )
      rv
    end

    def xpath
      path = @element.xpath
      path += "/@#{self.expanded_name}"
      return path
    end
  end
end
#vim:ts=2 sw=2 noexpandtab:
PKDH[%��3��share/ruby/rexml/entity.rbnu�[���# frozen_string_literal: false
require_relative 'child'
require_relative 'source'
require_relative 'xmltokens'

module REXML
  class Entity < Child
    include XMLTokens
    PUBIDCHAR = "\x20\x0D\x0Aa-zA-Z0-9\\-()+,./:=?;!*@$_%#"
    SYSTEMLITERAL = %Q{((?:"[^"]*")|(?:'[^']*'))}
    PUBIDLITERAL = %Q{("[#{PUBIDCHAR}']*"|'[#{PUBIDCHAR}]*')}
    EXTERNALID = "(?:(?:(SYSTEM)\\s+#{SYSTEMLITERAL})|(?:(PUBLIC)\\s+#{PUBIDLITERAL}\\s+#{SYSTEMLITERAL}))"
    NDATADECL = "\\s+NDATA\\s+#{NAME}"
    PEREFERENCE = "%#{NAME};"
    ENTITYVALUE = %Q{((?:"(?:[^%&"]|#{PEREFERENCE}|#{REFERENCE})*")|(?:'([^%&']|#{PEREFERENCE}|#{REFERENCE})*'))}
    PEDEF = "(?:#{ENTITYVALUE}|#{EXTERNALID})"
    ENTITYDEF = "(?:#{ENTITYVALUE}|(?:#{EXTERNALID}(#{NDATADECL})?))"
    PEDECL = "<!ENTITY\\s+(%)\\s+#{NAME}\\s+#{PEDEF}\\s*>"
    GEDECL = "<!ENTITY\\s+#{NAME}\\s+#{ENTITYDEF}\\s*>"
    ENTITYDECL = /\s*(?:#{GEDECL})|(?:#{PEDECL})/um

    attr_reader :name, :external, :ref, :ndata, :pubid

    # Create a new entity.  Simple entities can be constructed by passing a
    # name, value to the constructor; this creates a generic, plain entity
    # reference. For anything more complicated, you have to pass a Source to
    # the constructor with the entity definition, or use the accessor methods.
    # +WARNING+: There is no validation of entity state except when the entity
    # is read from a stream.  If you start poking around with the accessors,
    # you can easily create a non-conformant Entity.
    #
    #  e = Entity.new( 'amp', '&' )
    def initialize stream, value=nil, parent=nil, reference=false
      super(parent)
      @ndata = @pubid = @value = @external = nil
      if stream.kind_of? Array
        @name = stream[1]
        if stream[-1] == '%'
          @reference = true
          stream.pop
        else
          @reference = false
        end
        if stream[2] =~ /SYSTEM|PUBLIC/
          @external = stream[2]
          if @external == 'SYSTEM'
            @ref = stream[3]
            @ndata = stream[4] if stream.size == 5
          else
            @pubid = stream[3]
            @ref = stream[4]
          end
        else
          @value = stream[2]
        end
      else
        @reference = reference
        @external = nil
        @name = stream
        @value = value
      end
    end

    # Evaluates whether the given string matches an entity definition,
    # returning true if so, and false otherwise.
    def Entity::matches? string
      (ENTITYDECL =~ string) == 0
    end

    # Evaluates to the unnormalized value of this entity; that is, replacing
    # all entities -- both %ent; and &ent; entities.  This differs from
    # +value()+ in that +value+ only replaces %ent; entities.
    def unnormalized
      document.record_entity_expansion unless document.nil?
      v = value()
      return nil if v.nil?
      @unnormalized = Text::unnormalize(v, parent)
      @unnormalized
    end

    #once :unnormalized

    # Returns the value of this entity unprocessed -- raw.  This is the
    # normalized value; that is, with all %ent; and &ent; entities intact
    def normalized
      @value
    end

    # Write out a fully formed, correct entity definition (assuming the Entity
    # object itself is valid.)
    #
    # out::
    #   An object implementing <TT>&lt;&lt;</TT> to which the entity will be
    #   output
    # indent::
    #   *DEPRECATED* and ignored
    def write out, indent=-1
      out << '<!ENTITY '
      out << '% ' if @reference
      out << @name
      out << ' '
      if @external
        out << @external << ' '
        if @pubid
          q = @pubid.include?('"')?"'":'"'
          out << q << @pubid << q << ' '
        end
        q = @ref.include?('"')?"'":'"'
        out << q << @ref << q
        out << ' NDATA ' << @ndata if @ndata
      else
        q = @value.include?('"')?"'":'"'
        out << q << @value << q
      end
      out << '>'
    end

    # Returns this entity as a string.  See write().
    def to_s
      rv = ''
      write rv
      rv
    end

    PEREFERENCE_RE = /#{PEREFERENCE}/um
    # Returns the value of this entity.  At the moment, only internal entities
    # are processed.  If the value contains internal references (IE,
    # %blah;), those are replaced with their values.  IE, if the doctype
    # contains:
    #  <!ENTITY % foo "bar">
    #  <!ENTITY yada "nanoo %foo; nanoo>
    # then:
    #  doctype.entity('yada').value   #-> "nanoo bar nanoo"
    def value
      if @value
        matches = @value.scan(PEREFERENCE_RE)
        rv = @value.clone
        if @parent
          sum = 0
          matches.each do |entity_reference|
            entity_value = @parent.entity( entity_reference[0] )
            if sum + entity_value.bytesize > Security.entity_expansion_text_limit
              raise "entity expansion has grown too large"
            else
              sum += entity_value.bytesize
            end
            rv.gsub!( /%#{entity_reference.join};/um, entity_value )
          end
        end
        return rv
      end
      nil
    end
  end

  # This is a set of entity constants -- the ones defined in the XML
  # specification.  These are +gt+, +lt+, +amp+, +quot+ and +apos+.
  # CAUTION: these entities does not have parent and document
  module EntityConst
    # +>+
    GT = Entity.new( 'gt', '>' )
    # +<+
    LT = Entity.new( 'lt', '<' )
    # +&+
    AMP = Entity.new( 'amp', '&' )
    # +"+
    QUOT = Entity.new( 'quot', '"' )
    # +'+
    APOS = Entity.new( 'apos', "'" )
  end
end
PKDH[3OK5"share/ruby/rexml/parseexception.rbnu�[���# frozen_string_literal: false
module REXML
  class ParseException < RuntimeError
    attr_accessor :source, :parser, :continued_exception

    def initialize( message, source=nil, parser=nil, exception=nil )
      super(message)
      @source = source
      @parser = parser
      @continued_exception = exception
    end

    def to_s
      # Quote the original exception, if there was one
      if @continued_exception
        err = @continued_exception.inspect
        err << "\n"
        err << @continued_exception.backtrace.join("\n")
        err << "\n...\n"
      else
        err = ""
      end

      # Get the stack trace and error message
      err << super

      # Add contextual information
      if @source
        err << "\nLine: #{line}\n"
        err << "Position: #{position}\n"
        err << "Last 80 unconsumed characters:\n"
        err << @source.buffer[0..80].force_encoding("ASCII-8BIT").gsub(/\n/, ' ')
      end

      err
    end

    def position
      @source.current_line[0] if @source and defined? @source.current_line and
      @source.current_line
    end

    def line
      @source.current_line[2] if @source and defined? @source.current_line and
      @source.current_line
    end

    def context
      @source.current_line
    end
  end
end
PKDH[)�bdbd&share/ruby/rexml/parsers/baseparser.rbnu�[���# frozen_string_literal: false
require_relative '../parseexception'
require_relative '../undefinednamespaceexception'
require_relative '../source'
require 'set'
require "strscan"

module REXML
  module Parsers
    # = Using the Pull Parser
    # <em>This API is experimental, and subject to change.</em>
    #  parser = PullParser.new( "<a>text<b att='val'/>txet</a>" )
    #  while parser.has_next?
    #    res = parser.next
    #    puts res[1]['att'] if res.start_tag? and res[0] == 'b'
    #  end
    # See the PullEvent class for information on the content of the results.
    # The data is identical to the arguments passed for the various events to
    # the StreamListener API.
    #
    # Notice that:
    #  parser = PullParser.new( "<a>BAD DOCUMENT" )
    #  while parser.has_next?
    #    res = parser.next
    #    raise res[1] if res.error?
    #  end
    #
    # Nat Price gave me some good ideas for the API.
    class BaseParser
      LETTER = '[:alpha:]'
      DIGIT = '[:digit:]'

      COMBININGCHAR = '' # TODO
      EXTENDER = ''      # TODO

      NCNAME_STR= "[#{LETTER}_][-[:alnum:]._#{COMBININGCHAR}#{EXTENDER}]*"
      QNAME_STR= "(?:(#{NCNAME_STR}):)?(#{NCNAME_STR})"
      QNAME = /(#{QNAME_STR})/

      # Just for backward compatibility. For example, kramdown uses this.
      # It's not used in REXML.
      UNAME_STR= "(?:#{NCNAME_STR}:)?#{NCNAME_STR}"

      NAMECHAR = '[\-\w\.:]'
      NAME = "([\\w:]#{NAMECHAR}*)"
      NMTOKEN = "(?:#{NAMECHAR})+"
      NMTOKENS = "#{NMTOKEN}(\\s+#{NMTOKEN})*"
      REFERENCE = "&(?:#{NAME};|#\\d+;|#x[0-9a-fA-F]+;)"
      REFERENCE_RE = /#{REFERENCE}/

      DOCTYPE_START = /\A\s*<!DOCTYPE\s/um
      DOCTYPE_END = /\A\s*\]\s*>/um
      ATTRIBUTE_PATTERN = /\s*(#{QNAME_STR})\s*=\s*(["'])(.*?)\4/um
      COMMENT_START = /\A<!--/u
      COMMENT_PATTERN = /<!--(.*?)-->/um
      CDATA_START = /\A<!\[CDATA\[/u
      CDATA_END = /\A\s*\]\s*>/um
      CDATA_PATTERN = /<!\[CDATA\[(.*?)\]\]>/um
      XMLDECL_START = /\A<\?xml\s/u;
      XMLDECL_PATTERN = /<\?xml\s+(.*?)\?>/um
      INSTRUCTION_START = /\A<\?/u
      INSTRUCTION_PATTERN = /<\?#{NAME}(\s+.*?)?\?>/um
      TAG_MATCH = /\A<((?>#{QNAME_STR}))/um
      CLOSE_MATCH = /\A\s*<\/(#{QNAME_STR})\s*>/um

      VERSION = /\bversion\s*=\s*["'](.*?)['"]/um
      ENCODING = /\bencoding\s*=\s*["'](.*?)['"]/um
      STANDALONE = /\bstandalone\s*=\s*["'](.*?)['"]/um

      ENTITY_START = /\A\s*<!ENTITY/
      ELEMENTDECL_START = /\A\s*<!ELEMENT/um
      ELEMENTDECL_PATTERN = /\A\s*(<!ELEMENT.*?)>/um
      SYSTEMENTITY = /\A\s*(%.*?;)\s*$/um
      ENUMERATION = "\\(\\s*#{NMTOKEN}(?:\\s*\\|\\s*#{NMTOKEN})*\\s*\\)"
      NOTATIONTYPE = "NOTATION\\s+\\(\\s*#{NAME}(?:\\s*\\|\\s*#{NAME})*\\s*\\)"
      ENUMERATEDTYPE = "(?:(?:#{NOTATIONTYPE})|(?:#{ENUMERATION}))"
      ATTTYPE = "(CDATA|ID|IDREF|IDREFS|ENTITY|ENTITIES|NMTOKEN|NMTOKENS|#{ENUMERATEDTYPE})"
      ATTVALUE = "(?:\"((?:[^<&\"]|#{REFERENCE})*)\")|(?:'((?:[^<&']|#{REFERENCE})*)')"
      DEFAULTDECL = "(#REQUIRED|#IMPLIED|(?:(#FIXED\\s+)?#{ATTVALUE}))"
      ATTDEF = "\\s+#{NAME}\\s+#{ATTTYPE}\\s+#{DEFAULTDECL}"
      ATTDEF_RE = /#{ATTDEF}/
      ATTLISTDECL_START = /\A\s*<!ATTLIST/um
      ATTLISTDECL_PATTERN = /\A\s*<!ATTLIST\s+#{NAME}(?:#{ATTDEF})*\s*>/um

      TEXT_PATTERN = /\A([^<]*)/um

      # Entity constants
      PUBIDCHAR = "\x20\x0D\x0Aa-zA-Z0-9\\-()+,./:=?;!*@$_%#"
      SYSTEMLITERAL = %Q{((?:"[^"]*")|(?:'[^']*'))}
      PUBIDLITERAL = %Q{("[#{PUBIDCHAR}']*"|'[#{PUBIDCHAR}]*')}
      EXTERNALID = "(?:(?:(SYSTEM)\\s+#{SYSTEMLITERAL})|(?:(PUBLIC)\\s+#{PUBIDLITERAL}\\s+#{SYSTEMLITERAL}))"
      NDATADECL = "\\s+NDATA\\s+#{NAME}"
      PEREFERENCE = "%#{NAME};"
      ENTITYVALUE = %Q{((?:"(?:[^%&"]|#{PEREFERENCE}|#{REFERENCE})*")|(?:'([^%&']|#{PEREFERENCE}|#{REFERENCE})*'))}
      PEDEF = "(?:#{ENTITYVALUE}|#{EXTERNALID})"
      ENTITYDEF = "(?:#{ENTITYVALUE}|(?:#{EXTERNALID}(#{NDATADECL})?))"
      PEDECL = "<!ENTITY\\s+(%)\\s+#{NAME}\\s+#{PEDEF}\\s*>"
      GEDECL = "<!ENTITY\\s+#{NAME}\\s+#{ENTITYDEF}\\s*>"
      ENTITYDECL = /\s*(?:#{GEDECL})|(?:#{PEDECL})/um

      NOTATIONDECL_START = /\A\s*<!NOTATION/um
      EXTERNAL_ID_PUBLIC = /\A\s*PUBLIC\s+#{PUBIDLITERAL}\s+#{SYSTEMLITERAL}\s*/um
      EXTERNAL_ID_SYSTEM = /\A\s*SYSTEM\s+#{SYSTEMLITERAL}\s*/um
      PUBLIC_ID = /\A\s*PUBLIC\s+#{PUBIDLITERAL}\s*/um

      EREFERENCE = /&(?!#{NAME};)/

      DEFAULT_ENTITIES = {
        'gt' => [/&gt;/, '&gt;', '>', />/],
        'lt' => [/&lt;/, '&lt;', '<', /</],
        'quot' => [/&quot;/, '&quot;', '"', /"/],
        "apos" => [/&apos;/, "&apos;", "'", /'/]
      }

      def initialize( source )
        self.stream = source
        @listeners = []
      end

      def add_listener( listener )
        @listeners << listener
      end

      attr_reader :source

      def stream=( source )
        @source = SourceFactory.create_from( source )
        @closed = nil
        @document_status = nil
        @tags = []
        @stack = []
        @entities = []
        @nsstack = []
      end

      def position
        if @source.respond_to? :position
          @source.position
        else
          # FIXME
          0
        end
      end

      # Returns true if there are no more events
      def empty?
        return (@source.empty? and @stack.empty?)
      end

      # Returns true if there are more events.  Synonymous with !empty?
      def has_next?
        return !(@source.empty? and @stack.empty?)
      end

      # Push an event back on the head of the stream.  This method
      # has (theoretically) infinite depth.
      def unshift token
        @stack.unshift(token)
      end

      # Peek at the +depth+ event in the stack.  The first element on the stack
      # is at depth 0.  If +depth+ is -1, will parse to the end of the input
      # stream and return the last event, which is always :end_document.
      # Be aware that this causes the stream to be parsed up to the +depth+
      # event, so you can effectively pre-parse the entire document (pull the
      # entire thing into memory) using this method.
      def peek depth=0
        raise %Q[Illegal argument "#{depth}"] if depth < -1
        temp = []
        if depth == -1
          temp.push(pull()) until empty?
        else
          while @stack.size+temp.size < depth+1
            temp.push(pull())
          end
        end
        @stack += temp if temp.size > 0
        @stack[depth]
      end

      # Returns the next event.  This is a +PullEvent+ object.
      def pull
        pull_event.tap do |event|
          @listeners.each do |listener|
            listener.receive event
          end
        end
      end

      def pull_event
        if @closed
          x, @closed = @closed, nil
          return [ :end_element, x ]
        end
        return [ :end_document ] if empty?
        return @stack.shift if @stack.size > 0
        #STDERR.puts @source.encoding
        #STDERR.puts "BUFFER = #{@source.buffer.inspect}"
        if @document_status == nil
          word = @source.match( /\A((?:\s+)|(?:<[^>]*>))/um )
          word = word[1] unless word.nil?
          #STDERR.puts "WORD = #{word.inspect}"
          case word
          when COMMENT_START
            return [ :comment, @source.match( COMMENT_PATTERN, true )[1] ]
          when XMLDECL_START
            #STDERR.puts "XMLDECL"
            results = @source.match( XMLDECL_PATTERN, true )[1]
            version = VERSION.match( results )
            version = version[1] unless version.nil?
            encoding = ENCODING.match(results)
            encoding = encoding[1] unless encoding.nil?
            if need_source_encoding_update?(encoding)
              @source.encoding = encoding
            end
            if encoding.nil? and /\AUTF-16(?:BE|LE)\z/i =~ @source.encoding
              encoding = "UTF-16"
            end
            standalone = STANDALONE.match(results)
            standalone = standalone[1] unless standalone.nil?
            return [ :xmldecl, version, encoding, standalone ]
          when INSTRUCTION_START
            return process_instruction
          when DOCTYPE_START
            base_error_message = "Malformed DOCTYPE"
            @source.match(DOCTYPE_START, true)
            @nsstack.unshift(curr_ns=Set.new)
            name = parse_name(base_error_message)
            if @source.match(/\A\s*\[/um, true)
              id = [nil, nil, nil]
              @document_status = :in_doctype
            elsif @source.match(/\A\s*>/um, true)
              id = [nil, nil, nil]
              @document_status = :after_doctype
            else
              id = parse_id(base_error_message,
                            accept_external_id: true,
                            accept_public_id: false)
              if id[0] == "SYSTEM"
                # For backward compatibility
                id[1], id[2] = id[2], nil
              end
              if @source.match(/\A\s*\[/um, true)
                @document_status = :in_doctype
              elsif @source.match(/\A\s*>/um, true)
                @document_status = :after_doctype
              else
                message = "#{base_error_message}: garbage after external ID"
                raise REXML::ParseException.new(message, @source)
              end
            end
            args = [:start_doctype, name, *id]
            if @document_status == :after_doctype
              @source.match(/\A\s*/um, true)
              @stack << [ :end_doctype ]
            end
            return args
          when /\A\s+/
          else
            @document_status = :after_doctype
            if @source.encoding == "UTF-8"
              @source.buffer.force_encoding(::Encoding::UTF_8)
            end
          end
        end
        if @document_status == :in_doctype
          md = @source.match(/\A\s*(.*?>)/um)
          case md[1]
          when SYSTEMENTITY
            match = @source.match( SYSTEMENTITY, true )[1]
            return [ :externalentity, match ]

          when ELEMENTDECL_START
            return [ :elementdecl, @source.match( ELEMENTDECL_PATTERN, true )[1] ]

          when ENTITY_START
            match = @source.match( ENTITYDECL, true ).to_a.compact
            match[0] = :entitydecl
            ref = false
            if match[1] == '%'
              ref = true
              match.delete_at 1
            end
            # Now we have to sort out what kind of entity reference this is
            if match[2] == 'SYSTEM'
              # External reference
              match[3] = match[3][1..-2] # PUBID
              match.delete_at(4) if match.size > 4 # Chop out NDATA decl
              # match is [ :entity, name, SYSTEM, pubid(, ndata)? ]
            elsif match[2] == 'PUBLIC'
              # External reference
              match[3] = match[3][1..-2] # PUBID
              match[4] = match[4][1..-2] # HREF
              match.delete_at(5) if match.size > 5 # Chop out NDATA decl
              # match is [ :entity, name, PUBLIC, pubid, href(, ndata)? ]
            else
              match[2] = match[2][1..-2]
              match.pop if match.size == 4
              # match is [ :entity, name, value ]
            end
            match << '%' if ref
            return match
          when ATTLISTDECL_START
            md = @source.match( ATTLISTDECL_PATTERN, true )
            raise REXML::ParseException.new( "Bad ATTLIST declaration!", @source ) if md.nil?
            element = md[1]
            contents = md[0]

            pairs = {}
            values = md[0].scan( ATTDEF_RE )
            values.each do |attdef|
              unless attdef[3] == "#IMPLIED"
                attdef.compact!
                val = attdef[3]
                val = attdef[4] if val == "#FIXED "
                pairs[attdef[0]] = val
                if attdef[0] =~ /^xmlns:(.*)/
                  @nsstack[0] << $1
                end
              end
            end
            return [ :attlistdecl, element, pairs, contents ]
          when NOTATIONDECL_START
            base_error_message = "Malformed notation declaration"
            unless @source.match(/\A\s*<!NOTATION\s+/um, true)
              if @source.match(/\A\s*<!NOTATION\s*>/um)
                message = "#{base_error_message}: name is missing"
              else
                message = "#{base_error_message}: invalid declaration name"
              end
              raise REXML::ParseException.new(message, @source)
            end
            name = parse_name(base_error_message)
            id = parse_id(base_error_message,
                          accept_external_id: true,
                          accept_public_id: true)
            unless @source.match(/\A\s*>/um, true)
              message = "#{base_error_message}: garbage before end >"
              raise REXML::ParseException.new(message, @source)
            end
            return [:notationdecl, name, *id]
          when DOCTYPE_END
            @document_status = :after_doctype
            @source.match( DOCTYPE_END, true )
            return [ :end_doctype ]
          end
        end
        if @document_status == :after_doctype
          @source.match(/\A\s*/um, true)
        end
        begin
          @source.read if @source.buffer.size<2
          if @source.buffer[0] == ?<
            if @source.buffer[1] == ?/
              @nsstack.shift
              last_tag = @tags.pop
              md = @source.match( CLOSE_MATCH, true )
              if md and !last_tag
                message = "Unexpected top-level end tag (got '#{md[1]}')"
                raise REXML::ParseException.new(message, @source)
              end
              if md.nil? or last_tag != md[1]
                message = "Missing end tag for '#{last_tag}'"
                message << " (got '#{md[1]}')" if md
                raise REXML::ParseException.new(message, @source)
              end
              return [ :end_element, last_tag ]
            elsif @source.buffer[1] == ?!
              md = @source.match(/\A(\s*[^>]*>)/um)
              #STDERR.puts "SOURCE BUFFER = #{source.buffer}, #{source.buffer.size}"
              raise REXML::ParseException.new("Malformed node", @source) unless md
              if md[0][2] == ?-
                md = @source.match( COMMENT_PATTERN, true )

                case md[1]
                when /--/, /-\z/
                  raise REXML::ParseException.new("Malformed comment", @source)
                end

                return [ :comment, md[1] ] if md
              else
                md = @source.match( CDATA_PATTERN, true )
                return [ :cdata, md[1] ] if md
              end
              raise REXML::ParseException.new( "Declarations can only occur "+
                "in the doctype declaration.", @source)
            elsif @source.buffer[1] == ??
              return process_instruction
            else
              # Get the next tag
              md = @source.match(TAG_MATCH, true)
              unless md
                raise REXML::ParseException.new("malformed XML: missing tag start", @source)
              end
              @document_status = :in_element
              prefixes = Set.new
              prefixes << md[2] if md[2]
              @nsstack.unshift(curr_ns=Set.new)
              attributes, closed = parse_attributes(prefixes, curr_ns)
              # Verify that all of the prefixes have been defined
              for prefix in prefixes
                unless @nsstack.find{|k| k.member?(prefix)}
                  raise UndefinedNamespaceException.new(prefix,@source,self)
                end
              end

              if closed
                @closed = md[1]
                @nsstack.shift
              else
                @tags.push( md[1] )
              end
              return [ :start_element, md[1], attributes ]
            end
          else
            md = @source.match( TEXT_PATTERN, true )
            if md[0].length == 0
              @source.match( /(\s+)/, true )
            end
            #STDERR.puts "GOT #{md[1].inspect}" unless md[0].length == 0
            #return [ :text, "" ] if md[0].length == 0
            # unnormalized = Text::unnormalize( md[1], self )
            # return PullEvent.new( :text, md[1], unnormalized )
            return [ :text, md[1] ]
          end
        rescue REXML::UndefinedNamespaceException
          raise
        rescue REXML::ParseException
          raise
        rescue => error
          raise REXML::ParseException.new( "Exception parsing",
            @source, self, (error ? error : $!) )
        end
        return [ :dummy ]
      end
      private :pull_event

      def entity( reference, entities )
        value = nil
        value = entities[ reference ] if entities
        if not value
          value = DEFAULT_ENTITIES[ reference ]
          value = value[2] if value
        end
        unnormalize( value, entities ) if value
      end

      # Escapes all possible entities
      def normalize( input, entities=nil, entity_filter=nil )
        copy = input.clone
        # Doing it like this rather than in a loop improves the speed
        copy.gsub!( EREFERENCE, '&amp;' )
        entities.each do |key, value|
          copy.gsub!( value, "&#{key};" ) unless entity_filter and
                                      entity_filter.include?(entity)
        end if entities
        copy.gsub!( EREFERENCE, '&amp;' )
        DEFAULT_ENTITIES.each do |key, value|
          copy.gsub!( value[3], value[1] )
        end
        copy
      end

      # Unescapes all possible entities
      def unnormalize( string, entities=nil, filter=nil )
        rv = string.clone
        rv.gsub!( /\r\n?/, "\n" )
        matches = rv.scan( REFERENCE_RE )
        return rv if matches.size == 0
        rv.gsub!( /&#0*((?:\d+)|(?:x[a-fA-F0-9]+));/ ) {
          m=$1
          m = "0#{m}" if m[0] == ?x
          [Integer(m)].pack('U*')
        }
        matches.collect!{|x|x[0]}.compact!
        if matches.size > 0
          matches.each do |entity_reference|
            unless filter and filter.include?(entity_reference)
              entity_value = entity( entity_reference, entities )
              if entity_value
                re = /&#{entity_reference};/
                rv.gsub!( re, entity_value )
              else
                er = DEFAULT_ENTITIES[entity_reference]
                rv.gsub!( er[0], er[2] ) if er
              end
            end
          end
          rv.gsub!( /&amp;/, '&' )
        end
        rv
      end

      private
      def need_source_encoding_update?(xml_declaration_encoding)
        return false if xml_declaration_encoding.nil?
        return false if /\AUTF-16\z/i =~ xml_declaration_encoding
        true
      end

      def parse_name(base_error_message)
        md = @source.match(/\A\s*#{NAME}/um, true)
        unless md
          if @source.match(/\A\s*\S/um)
            message = "#{base_error_message}: invalid name"
          else
            message = "#{base_error_message}: name is missing"
          end
          raise REXML::ParseException.new(message, @source)
        end
        md[1]
      end

      def parse_id(base_error_message,
                   accept_external_id:,
                   accept_public_id:)
        if accept_external_id and (md = @source.match(EXTERNAL_ID_PUBLIC, true))
          pubid = system = nil
          pubid_literal = md[1]
          pubid = pubid_literal[1..-2] if pubid_literal # Remove quote
          system_literal = md[2]
          system = system_literal[1..-2] if system_literal # Remove quote
          ["PUBLIC", pubid, system]
        elsif accept_public_id and (md = @source.match(PUBLIC_ID, true))
          pubid = system = nil
          pubid_literal = md[1]
          pubid = pubid_literal[1..-2] if pubid_literal # Remove quote
          ["PUBLIC", pubid, nil]
        elsif accept_external_id and (md = @source.match(EXTERNAL_ID_SYSTEM, true))
          system = nil
          system_literal = md[1]
          system = system_literal[1..-2] if system_literal # Remove quote
          ["SYSTEM", nil, system]
        else
          details = parse_id_invalid_details(accept_external_id: accept_external_id,
                                             accept_public_id: accept_public_id)
          message = "#{base_error_message}: #{details}"
          raise REXML::ParseException.new(message, @source)
        end
      end

      def parse_id_invalid_details(accept_external_id:,
                                   accept_public_id:)
        public = /\A\s*PUBLIC/um
        system = /\A\s*SYSTEM/um
        if (accept_external_id or accept_public_id) and @source.match(/#{public}/um)
          if @source.match(/#{public}(?:\s+[^'"]|\s*[\[>])/um)
            return "public ID literal is missing"
          end
          unless @source.match(/#{public}\s+#{PUBIDLITERAL}/um)
            return "invalid public ID literal"
          end
          if accept_public_id
            if @source.match(/#{public}\s+#{PUBIDLITERAL}\s+[^'"]/um)
              return "system ID literal is missing"
            end
            unless @source.match(/#{public}\s+#{PUBIDLITERAL}\s+#{SYSTEMLITERAL}/um)
              return "invalid system literal"
            end
            "garbage after system literal"
          else
            "garbage after public ID literal"
          end
        elsif accept_external_id and @source.match(/#{system}/um)
          if @source.match(/#{system}(?:\s+[^'"]|\s*[\[>])/um)
            return "system literal is missing"
          end
          unless @source.match(/#{system}\s+#{SYSTEMLITERAL}/um)
            return "invalid system literal"
          end
          "garbage after system literal"
        else
          unless @source.match(/\A\s*(?:PUBLIC|SYSTEM)\s/um)
            return "invalid ID type"
          end
          "ID type is missing"
        end
      end

      def process_instruction
        match_data = @source.match(INSTRUCTION_PATTERN, true)
        unless match_data
          message = "Invalid processing instruction node"
          raise REXML::ParseException.new(message, @source)
        end
        [:processing_instruction, match_data[1], match_data[2]]
      end

      def parse_attributes(prefixes, curr_ns)
        attributes = {}
        closed = false
        match_data = @source.match(/^(.*?)(\/)?>/um, true)
        if match_data.nil?
          message = "Start tag isn't ended"
          raise REXML::ParseException.new(message, @source)
        end

        raw_attributes = match_data[1]
        closed = !match_data[2].nil?
        return attributes, closed if raw_attributes.nil?
        return attributes, closed if raw_attributes.empty?

        scanner = StringScanner.new(raw_attributes)
        until scanner.eos?
          if scanner.scan(/\s+/)
            break if scanner.eos?
          end

          pos = scanner.pos
          loop do
            break if scanner.scan(ATTRIBUTE_PATTERN)
            unless scanner.scan(QNAME)
              message = "Invalid attribute name: <#{scanner.rest}>"
              raise REXML::ParseException.new(message, @source)
            end
            name = scanner[0]
            unless scanner.scan(/\s*=\s*/um)
              message = "Missing attribute equal: <#{name}>"
              raise REXML::ParseException.new(message, @source)
            end
            quote = scanner.scan(/['"]/)
            unless quote
              message = "Missing attribute value start quote: <#{name}>"
              raise REXML::ParseException.new(message, @source)
            end
            unless scanner.scan(/.*#{Regexp.escape(quote)}/um)
              match_data = @source.match(/^(.*?)(\/)?>/um, true)
              if match_data
                scanner << "/" if closed
                scanner << ">"
                scanner << match_data[1]
                scanner.pos = pos
                closed = !match_data[2].nil?
                next
              end
              message =
                "Missing attribute value end quote: <#{name}>: <#{quote}>"
              raise REXML::ParseException.new(message, @source)
            end
          end
          name = scanner[1]
          prefix = scanner[2]
          local_part = scanner[3]
          # quote = scanner[4]
          value = scanner[5]
          if prefix == "xmlns"
            if local_part == "xml"
              if value != "http://www.w3.org/XML/1998/namespace"
                msg = "The 'xml' prefix must not be bound to any other namespace "+
                  "(http://www.w3.org/TR/REC-xml-names/#ns-decl)"
                raise REXML::ParseException.new( msg, @source, self )
              end
            elsif local_part == "xmlns"
              msg = "The 'xmlns' prefix must not be declared "+
                "(http://www.w3.org/TR/REC-xml-names/#ns-decl)"
              raise REXML::ParseException.new( msg, @source, self)
            end
            curr_ns << local_part
          elsif prefix
            prefixes << prefix unless prefix == "xml"
          end

          if attributes.has_key?(name)
            msg = "Duplicate attribute #{name.inspect}"
            raise REXML::ParseException.new(msg, @source, self)
          end

          attributes[name] = value
        end
        return attributes, closed
      end
    end
  end
end

=begin
  case event[0]
  when :start_element
  when :text
  when :end_element
  when :processing_instruction
  when :cdata
  when :comment
  when :xmldecl
  when :start_doctype
  when :end_doctype
  when :externalentity
  when :elementdecl
  when :entity
  when :attlistdecl
  when :notationdecl
  when :end_doctype
  end
=end
PKDH[u�I�I'share/ruby/rexml/parsers/xpathparser.rbnu�[���# frozen_string_literal: false
require_relative '../namespace'
require_relative '../xmltokens'

module REXML
  module Parsers
    # You don't want to use this class.  Really.  Use XPath, which is a wrapper
    # for this class.  Believe me.  You don't want to poke around in here.
    # There is strange, dark magic at work in this code.  Beware.  Go back!  Go
    # back while you still can!
    class XPathParser
      include XMLTokens
      LITERAL    = /^'([^']*)'|^"([^"]*)"/u

      def namespaces=( namespaces )
        Functions::namespace_context = namespaces
        @namespaces = namespaces
      end

      def parse path
        path = path.dup
        path.gsub!(/([\(\[])\s+/, '\1') # Strip ignorable spaces
        path.gsub!( /\s+([\]\)])/, '\1')
        parsed = []
        OrExpr(path, parsed)
        parsed
      end

      def predicate path
        parsed = []
        Predicate( "[#{path}]", parsed )
        parsed
      end

      def abbreviate( path )
        path = path.kind_of?(String) ? parse( path ) : path
        string = ""
        document = false
        while path.size > 0
          op = path.shift
          case op
          when :node
          when :attribute
            string << "/" if string.size > 0
            string << "@"
          when :child
            string << "/" if string.size > 0
          when :descendant_or_self
            string << "/"
          when :self
            string << "."
          when :parent
            string << ".."
          when :any
            string << "*"
          when :text
            string << "text()"
          when :following, :following_sibling,
                :ancestor, :ancestor_or_self, :descendant,
                :namespace, :preceding, :preceding_sibling
            string << "/" unless string.size == 0
            string << op.to_s.tr("_", "-")
            string << "::"
          when :qname
            prefix = path.shift
            name = path.shift
            string << prefix+":" if prefix.size > 0
            string << name
          when :predicate
            string << '['
            string << predicate_to_string( path.shift ) {|x| abbreviate( x ) }
            string << ']'
          when :document
            document = true
          when :function
            string << path.shift
            string << "( "
            string << predicate_to_string( path.shift[0] ) {|x| abbreviate( x )}
            string << " )"
          when :literal
            string << %Q{ "#{path.shift}" }
          else
            string << "/" unless string.size == 0
            string << "UNKNOWN("
            string << op.inspect
            string << ")"
          end
        end
        string = "/"+string if document
        return string
      end

      def expand( path )
        path = path.kind_of?(String) ? parse( path ) : path
        string = ""
        document = false
        while path.size > 0
          op = path.shift
          case op
          when :node
            string << "node()"
          when :attribute, :child, :following, :following_sibling,
                :ancestor, :ancestor_or_self, :descendant, :descendant_or_self,
                :namespace, :preceding, :preceding_sibling, :self, :parent
            string << "/" unless string.size == 0
            string << op.to_s.tr("_", "-")
            string << "::"
          when :any
            string << "*"
          when :qname
            prefix = path.shift
            name = path.shift
            string << prefix+":" if prefix.size > 0
            string << name
          when :predicate
            string << '['
            string << predicate_to_string( path.shift ) { |x| expand(x) }
            string << ']'
          when :document
            document = true
          else
            string << "/" unless string.size == 0
            string << "UNKNOWN("
            string << op.inspect
            string << ")"
          end
        end
        string = "/"+string if document
        return string
      end

      def predicate_to_string( path, &block )
        string = ""
        case path[0]
        when :and, :or, :mult, :plus, :minus, :neq, :eq, :lt, :gt, :lteq, :gteq, :div, :mod, :union
          op = path.shift
          case op
          when :eq
            op = "="
          when :lt
            op = "<"
          when :gt
            op = ">"
          when :lteq
            op = "<="
          when :gteq
            op = ">="
          when :neq
            op = "!="
          when :union
            op = "|"
          end
          left = predicate_to_string( path.shift, &block )
          right = predicate_to_string( path.shift, &block )
          string << " "
          string << left
          string << " "
          string << op.to_s
          string << " "
          string << right
          string << " "
        when :function
          path.shift
          name = path.shift
          string << name
          string << "( "
          string << predicate_to_string( path.shift, &block )
          string << " )"
        when :literal
          path.shift
          string << " "
          string << path.shift.inspect
          string << " "
        else
          string << " "
          string << yield( path )
          string << " "
        end
        return string.squeeze(" ")
      end

      private
      #LocationPath
      #  | RelativeLocationPath
      #  | '/' RelativeLocationPath?
      #  | '//' RelativeLocationPath
      def LocationPath path, parsed
        path = path.lstrip
        if path[0] == ?/
          parsed << :document
          if path[1] == ?/
            parsed << :descendant_or_self
            parsed << :node
            path = path[2..-1]
          else
            path = path[1..-1]
          end
        end
        return RelativeLocationPath( path, parsed ) if path.size > 0
      end

      #RelativeLocationPath
      #  |                                                    Step
      #    | (AXIS_NAME '::' | '@' | '')                     AxisSpecifier
      #      NodeTest
      #        Predicate
      #    | '.' | '..'                                      AbbreviatedStep
      #  |  RelativeLocationPath '/' Step
      #  | RelativeLocationPath '//' Step
      AXIS = /^(ancestor|ancestor-or-self|attribute|child|descendant|descendant-or-self|following|following-sibling|namespace|parent|preceding|preceding-sibling|self)::/
      def RelativeLocationPath path, parsed
        loop do
          original_path = path
          path = path.lstrip

          return original_path if path.empty?

          # (axis or @ or <child::>) nodetest predicate  >
          # OR                                          >  / Step
          # (. or ..)                                    >
          if path[0] == ?.
            if path[1] == ?.
              parsed << :parent
              parsed << :node
              path = path[2..-1]
            else
              parsed << :self
              parsed << :node
              path = path[1..-1]
            end
          else
            if path[0] == ?@
              parsed << :attribute
              path = path[1..-1]
              # Goto Nodetest
            elsif path =~ AXIS
              parsed << $1.tr('-','_').intern
              path = $'
              # Goto Nodetest
            else
              parsed << :child
            end

            n = []
            path = NodeTest( path, n)

            path = Predicate( path, n )

            parsed.concat(n)
          end

          original_path = path
          path = path.lstrip
          return original_path if path.empty?

          return original_path if path[0] != ?/

          if path[1] == ?/
            parsed << :descendant_or_self
            parsed << :node
            path = path[2..-1]
          else
            path = path[1..-1]
          end
        end
      end

      # Returns a 1-1 map of the nodeset
      # The contents of the resulting array are either:
      #   true/false, if a positive match
      #   String, if a name match
      #NodeTest
      #  | ('*' | NCNAME ':' '*' | QNAME)                NameTest
      #  | '*' ':' NCNAME                                NameTest since XPath 2.0
      #  | NODE_TYPE '(' ')'                             NodeType
      #  | PI '(' LITERAL ')'                            PI
      #    | '[' expr ']'                                Predicate
      PREFIX_WILDCARD = /^\*:(#{NCNAME_STR})/u
      LOCAL_NAME_WILDCARD = /^(#{NCNAME_STR}):\*/u
      QNAME     = Namespace::NAMESPLIT
      NODE_TYPE  = /^(comment|text|node)\(\s*\)/m
      PI        = /^processing-instruction\(/
      def NodeTest path, parsed
        original_path = path
        path = path.lstrip
        case path
        when PREFIX_WILDCARD
          prefix = nil
          name = $1
          path = $'
          parsed << :qname
          parsed << prefix
          parsed << name
        when /^\*/
          path = $'
          parsed << :any
        when NODE_TYPE
          type = $1
          path = $'
          parsed << type.tr('-', '_').intern
        when PI
          path = $'
          literal = nil
          if path !~ /^\s*\)/
            path =~ LITERAL
            literal = $1
            path = $'
            raise ParseException.new("Missing ')' after processing instruction") if path[0] != ?)
            path = path[1..-1]
          end
          parsed << :processing_instruction
          parsed << (literal || '')
        when LOCAL_NAME_WILDCARD
          prefix = $1
          path = $'
          parsed << :namespace
          parsed << prefix
        when QNAME
          prefix = $1
          name = $2
          path = $'
          prefix = "" unless prefix
          parsed << :qname
          parsed << prefix
          parsed << name
        else
          path = original_path
        end
        return path
      end

      # Filters the supplied nodeset on the predicate(s)
      def Predicate path, parsed
        original_path = path
        path = path.lstrip
        return original_path unless path[0] == ?[
        predicates = []
        while path[0] == ?[
          path, expr = get_group(path)
          predicates << expr[1..-2] if expr
        end
        predicates.each{ |pred|
          preds = []
          parsed << :predicate
          parsed << preds
          OrExpr(pred, preds)
        }
        path
      end

      # The following return arrays of true/false, a 1-1 mapping of the
      # supplied nodeset, except for axe(), which returns a filtered
      # nodeset

      #| OrExpr S 'or' S AndExpr
      #| AndExpr
      def OrExpr path, parsed
        n = []
        rest = AndExpr( path, n )
        if rest != path
          while rest =~ /^\s*( or )/
            n = [ :or, n, [] ]
            rest = AndExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| AndExpr S 'and' S EqualityExpr
      #| EqualityExpr
      def AndExpr path, parsed
        n = []
        rest = EqualityExpr( path, n )
        if rest != path
          while rest =~ /^\s*( and )/
            n = [ :and, n, [] ]
            rest = EqualityExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| EqualityExpr ('=' | '!=')  RelationalExpr
      #| RelationalExpr
      def EqualityExpr path, parsed
        n = []
        rest = RelationalExpr( path, n )
        if rest != path
          while rest =~ /^\s*(!?=)\s*/
            if $1[0] == ?!
              n = [ :neq, n, [] ]
            else
              n = [ :eq, n, [] ]
            end
            rest = RelationalExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| RelationalExpr ('<' | '>' | '<=' | '>=') AdditiveExpr
      #| AdditiveExpr
      def RelationalExpr path, parsed
        n = []
        rest = AdditiveExpr( path, n )
        if rest != path
          while rest =~ /^\s*([<>]=?)\s*/
            if $1[0] == ?<
              sym = "lt"
            else
              sym = "gt"
            end
            sym << "eq" if $1[-1] == ?=
            n = [ sym.intern, n, [] ]
            rest = AdditiveExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| AdditiveExpr ('+' | '-') MultiplicativeExpr
      #| MultiplicativeExpr
      def AdditiveExpr path, parsed
        n = []
        rest = MultiplicativeExpr( path, n )
        if rest != path
          while rest =~ /^\s*(\+|-)\s*/
            if $1[0] == ?+
              n = [ :plus, n, [] ]
            else
              n = [ :minus, n, [] ]
            end
            rest = MultiplicativeExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| MultiplicativeExpr ('*' | S ('div' | 'mod') S) UnaryExpr
      #| UnaryExpr
      def MultiplicativeExpr path, parsed
        n = []
        rest = UnaryExpr( path, n )
        if rest != path
          while rest =~ /^\s*(\*| div | mod )\s*/
            if $1[0] == ?*
              n = [ :mult, n, [] ]
            elsif $1.include?( "div" )
              n = [ :div, n, [] ]
            else
              n = [ :mod, n, [] ]
            end
            rest = UnaryExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace(n)
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| '-' UnaryExpr
      #| UnionExpr
      def UnaryExpr path, parsed
        path =~ /^(\-*)/
        path = $'
        if $1 and (($1.size % 2) != 0)
          mult = -1
        else
          mult = 1
        end
        parsed << :neg if mult < 0

        n = []
        path = UnionExpr( path, n )
        parsed.concat( n )
        path
      end

      #| UnionExpr '|' PathExpr
      #| PathExpr
      def UnionExpr path, parsed
        n = []
        rest = PathExpr( path, n )
        if rest != path
          while rest =~ /^\s*(\|)\s*/
            n = [ :union, n, [] ]
            rest = PathExpr( $', n[-1] )
          end
        end
        if parsed.size == 0 and n.size != 0
          parsed.replace( n )
        elsif n.size > 0
          parsed << n
        end
        rest
      end

      #| LocationPath
      #| FilterExpr ('/' | '//') RelativeLocationPath
      def PathExpr path, parsed
        path = path.lstrip
        n = []
        rest = FilterExpr( path, n )
        if rest != path
          if rest and rest[0] == ?/
            rest = RelativeLocationPath(rest, n)
            parsed.concat(n)
            return rest
          end
        end
        rest = LocationPath(rest, n) if rest =~ /\A[\/\.\@\[\w*]/
        parsed.concat(n)
        return rest
      end

      #| FilterExpr Predicate
      #| PrimaryExpr
      def FilterExpr path, parsed
        n = []
        path = PrimaryExpr( path, n )
        path = Predicate(path, n)
        parsed.concat(n)
        path
      end

      #| VARIABLE_REFERENCE
      #| '(' expr ')'
      #| LITERAL
      #| NUMBER
      #| FunctionCall
      VARIABLE_REFERENCE  = /^\$(#{NAME_STR})/u
      NUMBER              = /^(\d*\.?\d+)/
      NT        = /^comment|text|processing-instruction|node$/
      def PrimaryExpr path, parsed
        case path
        when VARIABLE_REFERENCE
          varname = $1
          path = $'
          parsed << :variable
          parsed << varname
          #arry << @variables[ varname ]
        when /^(\w[-\w]*)(?:\()/
          fname = $1
          tmp = $'
          return path if fname =~ NT
          path = tmp
          parsed << :function
          parsed << fname
          path = FunctionCall(path, parsed)
        when NUMBER
          varname = $1.nil? ? $2 : $1
          path = $'
          parsed << :literal
          parsed << (varname.include?('.') ? varname.to_f : varname.to_i)
        when LITERAL
          varname = $1.nil? ? $2 : $1
          path = $'
          parsed << :literal
          parsed << varname
        when /^\(/                                               #/
          path, contents = get_group(path)
          contents = contents[1..-2]
          n = []
          OrExpr( contents, n )
          parsed.concat(n)
        end
        path
      end

      #| FUNCTION_NAME '(' ( expr ( ',' expr )* )? ')'
      def FunctionCall rest, parsed
        path, arguments = parse_args(rest)
        argset = []
        for argument in arguments
          args = []
          OrExpr( argument, args )
          argset << args
        end
        parsed << argset
        path
      end

      # get_group( '[foo]bar' ) -> ['bar', '[foo]']
      def get_group string
        ind = 0
        depth = 0
        st = string[0,1]
        en = (st == "(" ? ")" : "]")
        begin
          case string[ind,1]
          when st
            depth += 1
          when en
            depth -= 1
          end
          ind += 1
        end while depth > 0 and ind < string.length
        return nil unless depth==0
        [string[ind..-1], string[0..ind-1]]
      end

      def parse_args( string )
        arguments = []
        ind = 0
        inquot = false
        inapos = false
        depth = 1
        begin
          case string[ind]
          when ?"
            inquot = !inquot unless inapos
          when ?'
            inapos = !inapos unless inquot
          else
            unless inquot or inapos
              case string[ind]
              when ?(
                depth += 1
                if depth == 1
                  string = string[1..-1]
                  ind -= 1
                end
              when ?)
                depth -= 1
                if depth == 0
                  s = string[0,ind].strip
                  arguments << s unless s == ""
                  string = string[ind+1..-1]
                end
              when ?,
                if depth == 1
                  s = string[0,ind].strip
                  arguments << s unless s == ""
                  string = string[ind+1..-1]
                  ind = -1
                end
              end
            end
          end
          ind += 1
        end while depth > 0 and ind < string.length
        return nil unless depth==0
        [string,arguments]
      end
    end
  end
end
PKDH[��+�
�
&share/ruby/rexml/parsers/treeparser.rbnu�[���# frozen_string_literal: false
require_relative '../validation/validationexception'
require_relative '../undefinednamespaceexception'

module REXML
  module Parsers
    class TreeParser
      def initialize( source, build_context = Document.new )
        @build_context = build_context
        @parser = Parsers::BaseParser.new( source )
      end

      def add_listener( listener )
        @parser.add_listener( listener )
      end

      def parse
        tag_stack = []
        in_doctype = false
        entities = nil
        begin
          while true
            event = @parser.pull
            #STDERR.puts "TREEPARSER GOT #{event.inspect}"
            case event[0]
            when :end_document
              unless tag_stack.empty?
                raise ParseException.new("No close tag for #{@build_context.xpath}",
                                         @parser.source, @parser)
              end
              return
            when :start_element
              tag_stack.push(event[1])
              el = @build_context = @build_context.add_element( event[1] )
              event[2].each do |key, value|
                el.attributes[key]=Attribute.new(key,value,self)
              end
            when :end_element
              tag_stack.pop
              @build_context = @build_context.parent
            when :text
              if not in_doctype
                if @build_context[-1].instance_of? Text
                  @build_context[-1] << event[1]
                else
                  @build_context.add(
                    Text.new(event[1], @build_context.whitespace, nil, true)
                  ) unless (
                    @build_context.ignore_whitespace_nodes and
                    event[1].strip.size==0
                  )
                end
              end
            when :comment
              c = Comment.new( event[1] )
              @build_context.add( c )
            when :cdata
              c = CData.new( event[1] )
              @build_context.add( c )
            when :processing_instruction
              @build_context.add( Instruction.new( event[1], event[2] ) )
            when :end_doctype
              in_doctype = false
              entities.each { |k,v| entities[k] = @build_context.entities[k].value }
              @build_context = @build_context.parent
            when :start_doctype
              doctype = DocType.new( event[1..-1], @build_context )
              @build_context = doctype
              entities = {}
              in_doctype = true
            when :attlistdecl
              n = AttlistDecl.new( event[1..-1] )
              @build_context.add( n )
            when :externalentity
              n = ExternalEntity.new( event[1] )
              @build_context.add( n )
            when :elementdecl
              n = ElementDecl.new( event[1] )
              @build_context.add(n)
            when :entitydecl
              entities[ event[1] ] = event[2] unless event[2] =~ /PUBLIC|SYSTEM/
              @build_context.add(Entity.new(event))
            when :notationdecl
              n = NotationDecl.new( *event[1..-1] )
              @build_context.add( n )
            when :xmldecl
              x = XMLDecl.new( event[1], event[2], event[3] )
              @build_context.add( x )
            end
          end
        rescue REXML::Validation::ValidationException
          raise
        rescue REXML::ParseException
          raise
        rescue
          raise ParseException.new( $!.message, @parser.source, @parser, $! )
        end
      end
    end
  end
end
PKDH[\�r��,share/ruby/rexml/parsers/ultralightparser.rbnu�[���# frozen_string_literal: false
require_relative 'streamparser'
require_relative 'baseparser'

module REXML
  module Parsers
    class UltraLightParser
      def initialize stream
        @stream = stream
        @parser = REXML::Parsers::BaseParser.new( stream )
      end

      def add_listener( listener )
        @parser.add_listener( listener )
      end

      def rewind
        @stream.rewind
        @parser.stream = @stream
      end

      def parse
        root = context = []
        while true
          event = @parser.pull
          case event[0]
          when :end_document
            break
          when :end_doctype
            context = context[1]
          when :start_element, :start_doctype
            context << event
            event[1,0] = [context]
            context = event
          when :end_element
            context = context[1]
          else
            context << event
          end
        end
        root
      end
    end

    # An element is an array.  The array contains:
    #  0                        The parent element
    #  1                        The tag name
    #  2                        A hash of attributes
    #  3..-1    The child elements
    # An element is an array of size > 3
    # Text is a String
    # PIs are [ :processing_instruction, target, data ]
    # Comments are [ :comment, data ]
    # DocTypes are DocType structs
    # The root is an array with XMLDecls, Text, DocType, Array, Text
  end
end
PKDH[�"�4++'share/ruby/rexml/parsers/lightparser.rbnu�[���# frozen_string_literal: false
require_relative 'streamparser'
require_relative 'baseparser'
require_relative '../light/node'

module REXML
  module Parsers
    class LightParser
      def initialize stream
        @stream = stream
        @parser = REXML::Parsers::BaseParser.new( stream )
      end

      def add_listener( listener )
        @parser.add_listener( listener )
      end

      def rewind
        @stream.rewind
        @parser.stream = @stream
      end

      def parse
        root = context = [ :document ]
        while true
          event = @parser.pull
          case event[0]
          when :end_document
            break
          when :start_element, :start_doctype
            new_node = event
            context << new_node
            new_node[1,0] = [context]
            context = new_node
          when :end_element, :end_doctype
            context = context[1]
          else
            new_node = event
            context << new_node
            new_node[1,0] = [context]
          end
        end
        root
      end
    end

    # An element is an array.  The array contains:
    #  0                        The parent element
    #  1                        The tag name
    #  2                        A hash of attributes
    #  3..-1    The child elements
    # An element is an array of size > 3
    # Text is a String
    # PIs are [ :processing_instruction, target, data ]
    # Comments are [ :comment, data ]
    # DocTypes are DocType structs
    # The root is an array with XMLDecls, Text, DocType, Array, Text
  end
end
PKDH[�3���(share/ruby/rexml/parsers/streamparser.rbnu�[���# frozen_string_literal: false
require_relative "baseparser"

module REXML
  module Parsers
    class StreamParser
      def initialize source, listener
        @listener = listener
        @parser = BaseParser.new( source )
        @tag_stack = []
      end

      def add_listener( listener )
        @parser.add_listener( listener )
      end

      def parse
        # entity string
        while true
          event = @parser.pull
          case event[0]
          when :end_document
            unless @tag_stack.empty?
              tag_path = "/" + @tag_stack.join("/")
              raise ParseException.new("Missing end tag for '#{tag_path}'",
                                       @parser.source)
            end
            return
          when :start_element
            @tag_stack << event[1]
            attrs = event[2].each do |n, v|
              event[2][n] = @parser.unnormalize( v )
            end
            @listener.tag_start( event[1], attrs )
          when :end_element
            @listener.tag_end( event[1] )
            @tag_stack.pop
          when :text
            normalized = @parser.unnormalize( event[1] )
            @listener.text( normalized )
          when :processing_instruction
            @listener.instruction( *event[1,2] )
          when :start_doctype
            @listener.doctype( *event[1..-1] )
          when :end_doctype
            # FIXME: remove this condition for milestone:3.2
            @listener.doctype_end if @listener.respond_to? :doctype_end
          when :comment, :attlistdecl, :cdata, :xmldecl, :elementdecl
            @listener.send( event[0].to_s, *event[1..-1] )
          when :entitydecl, :notationdecl
            @listener.send( event[0].to_s, event[1..-1] )
          when :externalentity
            entity_reference = event[1]
            content = entity_reference.gsub(/\A%|;\z/, "")
            @listener.entity(content)
          end
        end
      end
    end
  end
end
PKDH[��]�R$R$&share/ruby/rexml/parsers/sax2parser.rbnu�[���# frozen_string_literal: false
require_relative 'baseparser'
require_relative '../parseexception'
require_relative '../namespace'
require_relative '../text'

module REXML
  module Parsers
    # SAX2Parser
    class SAX2Parser
      def initialize source
        @parser = BaseParser.new(source)
        @listeners = []
        @procs = []
        @namespace_stack = []
        @has_listeners = false
        @tag_stack = []
        @entities = {}
      end

      def source
        @parser.source
      end

      def add_listener( listener )
        @parser.add_listener( listener )
      end

      # Listen arguments:
      #
      # Symbol, Array, Block
      #         Listen to Symbol events on Array elements
      # Symbol, Block
      #   Listen to Symbol events
      # Array, Listener
      #         Listen to all events on Array elements
      # Array, Block
      #         Listen to :start_element events on Array elements
      # Listener
      #         Listen to All events
      #
      # Symbol can be one of: :start_element, :end_element,
      # :start_prefix_mapping, :end_prefix_mapping, :characters,
      # :processing_instruction, :doctype, :attlistdecl, :elementdecl,
      # :entitydecl, :notationdecl, :cdata, :xmldecl, :comment
      #
      # There is an additional symbol that can be listened for: :progress.
      # This will be called for every event generated, passing in the current
      # stream position.
      #
      # Array contains regular expressions or strings which will be matched
      # against fully qualified element names.
      #
      # Listener must implement the methods in SAX2Listener
      #
      # Block will be passed the same arguments as a SAX2Listener method would
      # be, where the method name is the same as the matched Symbol.
      # See the SAX2Listener for more information.
      def listen( *args, &blok )
        if args[0].kind_of? Symbol
          if args.size == 2
            args[1].each { |match| @procs << [args[0], match, blok] }
          else
            add( [args[0], nil, blok] )
          end
        elsif args[0].kind_of? Array
          if args.size == 2
            args[0].each { |match| add( [nil, match, args[1]] ) }
          else
            args[0].each { |match| add( [ :start_element, match, blok ] ) }
          end
        else
          add([nil, nil, args[0]])
        end
      end

      def deafen( listener=nil, &blok )
        if listener
          @listeners.delete_if {|item| item[-1] == listener }
          @has_listeners = false if @listeners.size == 0
        else
          @procs.delete_if {|item| item[-1] == blok }
        end
      end

      def parse
        @procs.each { |sym,match,block| block.call if sym == :start_document }
        @listeners.each { |sym,match,block|
          block.start_document if sym == :start_document or sym.nil?
        }
        context = []
        while true
          event = @parser.pull
          case event[0]
          when :end_document
            handle( :end_document )
            break
          when :start_doctype
            handle( :doctype, *event[1..-1])
          when :end_doctype
            context = context[1]
          when :start_element
            @tag_stack.push(event[1])
            # find the observers for namespaces
            procs = get_procs( :start_prefix_mapping, event[1] )
            listeners = get_listeners( :start_prefix_mapping, event[1] )
            if procs or listeners
              # break out the namespace declarations
              # The attributes live in event[2]
              event[2].each {|n, v| event[2][n] = @parser.normalize(v)}
              nsdecl = event[2].find_all { |n, value| n =~ /^xmlns(:|$)/ }
              nsdecl.collect! { |n, value| [ n[6..-1], value ] }
              @namespace_stack.push({})
              nsdecl.each do |n,v|
                @namespace_stack[-1][n] = v
                # notify observers of namespaces
                procs.each { |ob| ob.call( n, v ) } if procs
                listeners.each { |ob| ob.start_prefix_mapping(n, v) } if listeners
              end
            end
            event[1] =~ Namespace::NAMESPLIT
            prefix = $1
            local = $2
            uri = get_namespace(prefix)
            # find the observers for start_element
            procs = get_procs( :start_element, event[1] )
            listeners = get_listeners( :start_element, event[1] )
            # notify observers
            procs.each { |ob| ob.call( uri, local, event[1], event[2] ) } if procs
            listeners.each { |ob|
              ob.start_element( uri, local, event[1], event[2] )
            } if listeners
          when :end_element
            @tag_stack.pop
            event[1] =~ Namespace::NAMESPLIT
            prefix = $1
            local = $2
            uri = get_namespace(prefix)
            # find the observers for start_element
            procs = get_procs( :end_element, event[1] )
            listeners = get_listeners( :end_element, event[1] )
            # notify observers
            procs.each { |ob| ob.call( uri, local, event[1] ) } if procs
            listeners.each { |ob|
              ob.end_element( uri, local, event[1] )
            } if listeners

            namespace_mapping = @namespace_stack.pop
            # find the observers for namespaces
            procs = get_procs( :end_prefix_mapping, event[1] )
            listeners = get_listeners( :end_prefix_mapping, event[1] )
            if procs or listeners
              namespace_mapping.each do |ns_prefix, ns_uri|
                # notify observers of namespaces
                procs.each { |ob| ob.call( ns_prefix ) } if procs
                listeners.each { |ob| ob.end_prefix_mapping(ns_prefix) } if listeners
              end
            end
          when :text
            #normalized = @parser.normalize( event[1] )
            #handle( :characters, normalized )
            copy = event[1].clone

            esub = proc { |match|
              if @entities.has_key?($1)
                @entities[$1].gsub(Text::REFERENCE, &esub)
              else
                match
              end
            }

            copy.gsub!( Text::REFERENCE, &esub )
            copy.gsub!( Text::NUMERICENTITY ) {|m|
              m=$1
              m = "0#{m}" if m[0] == ?x
              [Integer(m)].pack('U*')
            }
            handle( :characters, copy )
          when :entitydecl
            handle_entitydecl( event )
          when :processing_instruction, :comment, :attlistdecl,
            :elementdecl, :cdata, :notationdecl, :xmldecl
            handle( *event )
          end
          handle( :progress, @parser.position )
        end
      end

      private
      def handle( symbol, *arguments )
        tag = @tag_stack[-1]
        procs = get_procs( symbol, tag )
        listeners = get_listeners( symbol, tag )
        # notify observers
        procs.each { |ob| ob.call( *arguments ) } if procs
        listeners.each { |l|
          l.send( symbol.to_s, *arguments )
        } if listeners
      end

      def handle_entitydecl( event )
        @entities[ event[1] ] = event[2] if event.size == 3
        parameter_reference_p = false
        case event[2]
        when "SYSTEM"
          if event.size == 5
            if event.last == "%"
              parameter_reference_p = true
            else
              event[4, 0] = "NDATA"
            end
          end
        when "PUBLIC"
          if event.size == 6
            if event.last == "%"
              parameter_reference_p = true
            else
              event[5, 0] = "NDATA"
            end
          end
        else
          parameter_reference_p = (event.size == 4)
        end
        event[1, 0] = event.pop if parameter_reference_p
        handle( event[0], event[1..-1] )
      end

      # The following methods are duplicates, but it is faster than using
      # a helper
      def get_procs( symbol, name )
        return nil if @procs.size == 0
        @procs.find_all do |sym, match, block|
          (
            (sym.nil? or symbol == sym) and
            ((name.nil? and match.nil?) or match.nil? or (
              (name == match) or
              (match.kind_of? Regexp and name =~ match)
              )
            )
          )
        end.collect{|x| x[-1]}
      end
      def get_listeners( symbol, name )
        return nil if @listeners.size == 0
        @listeners.find_all do |sym, match, block|
          (
            (sym.nil? or symbol == sym) and
            ((name.nil? and match.nil?) or match.nil? or (
              (name == match) or
              (match.kind_of? Regexp and name =~ match)
              )
            )
          )
        end.collect{|x| x[-1]}
      end

      def add( pair )
        if pair[-1].respond_to? :call
          @procs << pair unless @procs.include? pair
        else
          @listeners << pair unless @listeners.include? pair
          @has_listeners = true
        end
      end

      def get_namespace( prefix )
        uris = (@namespace_stack.find_all { |ns| not ns[prefix].nil? }) ||
          (@namespace_stack.find { |ns| not ns[nil].nil? })
        uris[-1][prefix] unless uris.nil? or 0 == uris.size
      end
    end
  end
end
PKDH[�"�#||&share/ruby/rexml/parsers/pullparser.rbnu�[���# frozen_string_literal: false
require 'forwardable'

require_relative '../parseexception'
require_relative 'baseparser'
require_relative '../xmltokens'

module REXML
  module Parsers
    # = Using the Pull Parser
    # <em>This API is experimental, and subject to change.</em>
    #  parser = PullParser.new( "<a>text<b att='val'/>txet</a>" )
    #  while parser.has_next?
    #    res = parser.next
    #    puts res[1]['att'] if res.start_tag? and res[0] == 'b'
    #  end
    # See the PullEvent class for information on the content of the results.
    # The data is identical to the arguments passed for the various events to
    # the StreamListener API.
    #
    # Notice that:
    #  parser = PullParser.new( "<a>BAD DOCUMENT" )
    #  while parser.has_next?
    #    res = parser.next
    #    raise res[1] if res.error?
    #  end
    #
    # Nat Price gave me some good ideas for the API.
    class PullParser
      include XMLTokens
      extend Forwardable

      def_delegators( :@parser, :has_next? )
      def_delegators( :@parser, :entity )
      def_delegators( :@parser, :empty? )
      def_delegators( :@parser, :source )

      def initialize stream
        @entities = {}
        @listeners = nil
        @parser = BaseParser.new( stream )
        @my_stack = []
      end

      def add_listener( listener )
        @listeners = [] unless @listeners
        @listeners << listener
      end

      def each
        while has_next?
          yield self.pull
        end
      end

      def peek depth=0
        if @my_stack.length <= depth
          (depth - @my_stack.length + 1).times {
            e = PullEvent.new(@parser.pull)
            @my_stack.push(e)
          }
        end
        @my_stack[depth]
      end

      def pull
        return @my_stack.shift if @my_stack.length > 0

        event = @parser.pull
        case event[0]
        when :entitydecl
          @entities[ event[1] ] =
            event[2] unless event[2] =~ /PUBLIC|SYSTEM/
        when :text
          unnormalized = @parser.unnormalize( event[1], @entities )
          event << unnormalized
        end
        PullEvent.new( event )
      end

      def unshift token
        @my_stack.unshift token
      end
    end

    # A parsing event.  The contents of the event are accessed as an +Array?,
    # and the type is given either by the ...? methods, or by accessing the
    # +type+ accessor.  The contents of this object vary from event to event,
    # but are identical to the arguments passed to +StreamListener+s for each
    # event.
    class PullEvent
      # The type of this event.  Will be one of :tag_start, :tag_end, :text,
      # :processing_instruction, :comment, :doctype, :attlistdecl, :entitydecl,
      # :notationdecl, :entity, :cdata, :xmldecl, or :error.
      def initialize(arg)
        @contents = arg
      end

      def []( start, endd=nil)
        if start.kind_of? Range
          @contents.slice( start.begin+1 .. start.end )
        elsif start.kind_of? Numeric
          if endd.nil?
            @contents.slice( start+1 )
          else
            @contents.slice( start+1, endd )
          end
        else
          raise "Illegal argument #{start.inspect} (#{start.class})"
        end
      end

      def event_type
        @contents[0]
      end

      # Content: [ String tag_name, Hash attributes ]
      def start_element?
        @contents[0] == :start_element
      end

      # Content: [ String tag_name ]
      def end_element?
        @contents[0] == :end_element
      end

      # Content: [ String raw_text, String unnormalized_text ]
      def text?
        @contents[0] == :text
      end

      # Content: [ String text ]
      def instruction?
        @contents[0] == :processing_instruction
      end

      # Content: [ String text ]
      def comment?
        @contents[0] == :comment
      end

      # Content: [ String name, String pub_sys, String long_name, String uri ]
      def doctype?
        @contents[0] == :start_doctype
      end

      # Content: [ String text ]
      def attlistdecl?
        @contents[0] == :attlistdecl
      end

      # Content: [ String text ]
      def elementdecl?
        @contents[0] == :elementdecl
      end

      # Due to the wonders of DTDs, an entity declaration can be just about
      # anything.  There's no way to normalize it; you'll have to interpret the
      # content yourself.  However, the following is true:
      #
      # * If the entity declaration is an internal entity:
      #   [ String name, String value ]
      # Content: [ String text ]
      def entitydecl?
        @contents[0] == :entitydecl
      end

      # Content: [ String text ]
      def notationdecl?
        @contents[0] == :notationdecl
      end

      # Content: [ String text ]
      def entity?
        @contents[0] == :entity
      end

      # Content: [ String text ]
      def cdata?
        @contents[0] == :cdata
      end

      # Content: [ String version, String encoding, String standalone ]
      def xmldecl?
        @contents[0] == :xmldecl
      end

      def error?
        @contents[0] == :error
      end

      def inspect
        @contents[0].to_s + ": " + @contents[1..-1].inspect
      end
    end
  end
end
PKDH[Ӆ��3&3&share/ruby/rexml/document.rbnu�[���# frozen_string_literal: false
require_relative "security"
require_relative "element"
require_relative "xmldecl"
require_relative "source"
require_relative "comment"
require_relative "doctype"
require_relative "instruction"
require_relative "rexml"
require_relative "parseexception"
require_relative "output"
require_relative "parsers/baseparser"
require_relative "parsers/streamparser"
require_relative "parsers/treeparser"

module REXML
  # Represents a full XML document, including PIs, a doctype, etc.  A
  # Document has a single child that can be accessed by root().
  # Note that if you want to have an XML declaration written for a document
  # you create, you must add one; REXML documents do not write a default
  # declaration for you.  See |DECLARATION| and |write|.
  class Document < Element
    # A convenient default XML declaration.  If you want an XML declaration,
    # the easiest way to add one is mydoc << Document::DECLARATION
    # +DEPRECATED+
    # Use: mydoc << XMLDecl.default
    DECLARATION = XMLDecl.default

    # Constructor
    # @param source if supplied, must be a Document, String, or IO.
    # Documents have their context and Element attributes cloned.
    # Strings are expected to be valid XML documents.  IOs are expected
    # to be sources of valid XML documents.
    # @param context if supplied, contains the context of the document;
    # this should be a Hash.
    def initialize( source = nil, context = {} )
      @entity_expansion_count = 0
      super()
      @context = context
      return if source.nil?
      if source.kind_of? Document
        @context = source.context
        super source
      else
        build(  source )
      end
    end

    def node_type
      :document
    end

    # Should be obvious
    def clone
      Document.new self
    end

    # According to the XML spec, a root node has no expanded name
    def expanded_name
      ''
      #d = doc_type
      #d ? d.name : "UNDEFINED"
    end

    alias :name :expanded_name

    # We override this, because XMLDecls and DocTypes must go at the start
    # of the document
    def add( child )
      if child.kind_of? XMLDecl
        if @children[0].kind_of? XMLDecl
          @children[0] = child
        else
          @children.unshift child
        end
        child.parent = self
      elsif child.kind_of? DocType
        # Find first Element or DocType node and insert the decl right
        # before it.  If there is no such node, just insert the child at the
        # end.  If there is a child and it is an DocType, then replace it.
        insert_before_index = @children.find_index { |x|
          x.kind_of?(Element) || x.kind_of?(DocType)
        }
        if insert_before_index # Not null = not end of list
          if @children[ insert_before_index ].kind_of? DocType
            @children[ insert_before_index ] = child
          else
            @children[ insert_before_index-1, 0 ] = child
          end
        else  # Insert at end of list
          @children << child
        end
        child.parent = self
      else
        rv = super
        raise "attempted adding second root element to document" if @elements.size > 1
        rv
      end
    end
    alias :<< :add

    def add_element(arg=nil, arg2=nil)
      rv = super
      raise "attempted adding second root element to document" if @elements.size > 1
      rv
    end

    # @return the root Element of the document, or nil if this document
    # has no children.
    def root
      elements[1]
      #self
      #@children.find { |item| item.kind_of? Element }
    end

    # @return the DocType child of the document, if one exists,
    # and nil otherwise.
    def doctype
      @children.find { |item| item.kind_of? DocType }
    end

    # @return the XMLDecl of this document; if no XMLDecl has been
    # set, the default declaration is returned.
    def xml_decl
      rv = @children[0]
      return rv if rv.kind_of? XMLDecl
      @children.unshift(XMLDecl.default)[0]
    end

    # @return the XMLDecl version of this document as a String.
    # If no XMLDecl has been set, returns the default version.
    def version
      xml_decl().version
    end

    # @return the XMLDecl encoding of this document as an
    # Encoding object.
    # If no XMLDecl has been set, returns the default encoding.
    def encoding
      xml_decl().encoding
    end

    # @return the XMLDecl standalone value of this document as a String.
    # If no XMLDecl has been set, returns the default setting.
    def stand_alone?
      xml_decl().stand_alone?
    end

    # :call-seq:
    #    doc.write(output=$stdout, indent=-1, transtive=false, ie_hack=false, encoding=nil)
    #    doc.write(options={:output => $stdout, :indent => -1, :transtive => false, :ie_hack => false, :encoding => nil})
    #
    # Write the XML tree out, optionally with indent.  This writes out the
    # entire XML document, including XML declarations, doctype declarations,
    # and processing instructions (if any are given).
    #
    # A controversial point is whether Document should always write the XML
    # declaration (<?xml version='1.0'?>) whether or not one is given by the
    # user (or source document).  REXML does not write one if one was not
    # specified, because it adds unnecessary bandwidth to applications such
    # as XML-RPC.
    #
    # Accept Nth argument style and options Hash style as argument.
    # The recommended style is options Hash style for one or more
    # arguments case.
    #
    # _Examples_
    #   Document.new("<a><b/></a>").write
    #
    #   output = ""
    #   Document.new("<a><b/></a>").write(output)
    #
    #   output = ""
    #   Document.new("<a><b/></a>").write(:output => output, :indent => 2)
    #
    # See also the classes in the rexml/formatters package for the proper way
    # to change the default formatting of XML output.
    #
    # _Examples_
    #
    #   output = ""
    #   tr = Transitive.new
    #   tr.write(Document.new("<a><b/></a>"), output)
    #
    # output::
    #   output an object which supports '<< string'; this is where the
    #   document will be written.
    # indent::
    #   An integer.  If -1, no indenting will be used; otherwise, the
    #   indentation will be twice this number of spaces, and children will be
    #   indented an additional amount.  For a value of 3, every item will be
    #   indented 3 more levels, or 6 more spaces (2 * 3). Defaults to -1
    # transitive::
    #   If transitive is true and indent is >= 0, then the output will be
    #   pretty-printed in such a way that the added whitespace does not affect
    #   the absolute *value* of the document -- that is, it leaves the value
    #   and number of Text nodes in the document unchanged.
    # ie_hack::
    #   This hack inserts a space before the /> on empty tags to address
    #   a limitation of Internet Explorer.  Defaults to false
    # encoding::
    #   Encoding name as String. Change output encoding to specified encoding
    #   instead of encoding in XML declaration.
    #   Defaults to nil. It means encoding in XML declaration is used.
    def write(*arguments)
      if arguments.size == 1 and arguments[0].class == Hash
        options = arguments[0]

        output     = options[:output]
        indent     = options[:indent]
        transitive = options[:transitive]
        ie_hack    = options[:ie_hack]
        encoding   = options[:encoding]
      else
        output, indent, transitive, ie_hack, encoding, = *arguments
      end

      output   ||= $stdout
      indent   ||= -1
      transitive = false if transitive.nil?
      ie_hack    = false if ie_hack.nil?
      encoding ||= xml_decl.encoding

      if encoding != 'UTF-8' && !output.kind_of?(Output)
        output = Output.new( output, encoding )
      end
      formatter = if indent > -1
          if transitive
            require_relative "formatters/transitive"
            REXML::Formatters::Transitive.new( indent, ie_hack )
          else
            REXML::Formatters::Pretty.new( indent, ie_hack )
          end
        else
          REXML::Formatters::Default.new( ie_hack )
        end
      formatter.write( self, output )
    end


    def Document::parse_stream( source, listener )
      Parsers::StreamParser.new( source, listener ).parse
    end

    # Set the entity expansion limit. By default the limit is set to 10000.
    #
    # Deprecated. Use REXML::Security.entity_expansion_limit= instead.
    def Document::entity_expansion_limit=( val )
      Security.entity_expansion_limit = val
    end

    # Get the entity expansion limit. By default the limit is set to 10000.
    #
    # Deprecated. Use REXML::Security.entity_expansion_limit= instead.
    def Document::entity_expansion_limit
      return Security.entity_expansion_limit
    end

    # Set the entity expansion limit. By default the limit is set to 10240.
    #
    # Deprecated. Use REXML::Security.entity_expansion_text_limit= instead.
    def Document::entity_expansion_text_limit=( val )
      Security.entity_expansion_text_limit = val
    end

    # Get the entity expansion limit. By default the limit is set to 10240.
    #
    # Deprecated. Use REXML::Security.entity_expansion_text_limit instead.
    def Document::entity_expansion_text_limit
      return Security.entity_expansion_text_limit
    end

    attr_reader :entity_expansion_count

    def record_entity_expansion
      @entity_expansion_count += 1
      if @entity_expansion_count > Security.entity_expansion_limit
        raise "number of entity expansions exceeded, processing aborted."
      end
    end

    def document
      self
    end

    private
    def build( source )
      Parsers::TreeParser.new( source, self ).parse
    end
  end
end
PKDH[v�u3hh&share/ruby/rexml/formatters/default.rbnu�[���# frozen_string_literal: false

module REXML
  module Formatters
    class Default
      # Prints out the XML document with no formatting -- except if ie_hack is
      # set.
      #
      # ie_hack::
      #   If set to true, then inserts whitespace before the close of an empty
      #   tag, so that IE's bad XML parser doesn't choke.
      def initialize( ie_hack=false )
        @ie_hack = ie_hack
      end

      # Writes the node to some output.
      #
      # node::
      #   The node to write
      # output::
      #   A class implementing <TT>&lt;&lt;</TT>.  Pass in an Output object to
      #   change the output encoding.
      def write( node, output )
        case node

        when Document
          if node.xml_decl.encoding != 'UTF-8' && !output.kind_of?(Output)
            output = Output.new( output, node.xml_decl.encoding )
          end
          write_document( node, output )

        when Element
          write_element( node, output )

        when Declaration, ElementDecl, NotationDecl, ExternalEntity, Entity,
             Attribute, AttlistDecl
          node.write( output,-1 )

        when Instruction
          write_instruction( node, output )

        when DocType, XMLDecl
          node.write( output )

        when Comment
          write_comment( node, output )

        when CData
          write_cdata( node, output )

        when Text
          write_text( node, output )

        else
          raise Exception.new("XML FORMATTING ERROR")

        end
      end

      protected
      def write_document( node, output )
        node.children.each { |child| write( child, output ) }
      end

      def write_element( node, output )
        output << "<#{node.expanded_name}"

        node.attributes.to_a.map { |a|
          Hash === a ? a.values : a
        }.flatten.sort_by {|attr| attr.name}.each do |attr|
          output << " "
          attr.write( output )
        end unless node.attributes.empty?

        if node.children.empty?
          output << " " if @ie_hack
          output << "/"
        else
          output << ">"
          node.children.each { |child|
            write( child, output )
          }
          output << "</#{node.expanded_name}"
        end
        output << ">"
      end

      def write_text( node, output )
        output << node.to_s()
      end

      def write_comment( node, output )
        output << Comment::START
        output << node.to_s
        output << Comment::STOP
      end

      def write_cdata( node, output )
        output << CData::START
        output << node.to_s
        output << CData::STOP
      end

      def write_instruction( node, output )
        output << Instruction::START
        output << node.target
        content = node.content
        if content
          output << ' '
          output << content
        end
        output << Instruction::STOP
      end
    end
  end
end
PKDH[B*\<<)share/ruby/rexml/formatters/transitive.rbnu�[���# frozen_string_literal: false
require_relative 'pretty'

module REXML
  module Formatters
    # The Transitive formatter writes an XML document that parses to an
    # identical document as the source document.  This means that no extra
    # whitespace nodes are inserted, and whitespace within text nodes is
    # preserved.  Within these constraints, the document is pretty-printed,
    # with whitespace inserted into the metadata to introduce formatting.
    #
    # Note that this is only useful if the original XML is not already
    # formatted.  Since this formatter does not alter whitespace nodes, the
    # results of formatting already formatted XML will be odd.
    class Transitive < Default
      def initialize( indentation=2, ie_hack=false )
        @indentation = indentation
        @level = 0
        @ie_hack = ie_hack
      end

      protected
      def write_element( node, output )
        output << "<#{node.expanded_name}"

        node.attributes.each_attribute do |attr|
          output << " "
          attr.write( output )
        end unless node.attributes.empty?

        output << "\n"
        output << ' '*@level
        if node.children.empty?
          output << " " if @ie_hack
          output << "/"
        else
          output << ">"
          # If compact and all children are text, and if the formatted output
          # is less than the specified width, then try to print everything on
          # one line
          @level += @indentation
          node.children.each { |child|
            write( child, output )
          }
          @level -= @indentation
          output << "</#{node.expanded_name}"
          output << "\n"
          output << ' '*@level
        end
        output << ">"
      end

      def write_text( node, output )
        output << node.to_s()
      end
    end
  end
end
PKDH[���OO%share/ruby/rexml/formatters/pretty.rbnu�[���# frozen_string_literal: false
require_relative 'default'

module REXML
  module Formatters
    # Pretty-prints an XML document.  This destroys whitespace in text nodes
    # and will insert carriage returns and indentations.
    #
    # TODO: Add an option to print attributes on new lines
    class Pretty < Default

      # If compact is set to true, then the formatter will attempt to use as
      # little space as possible
      attr_accessor :compact
      # The width of a page.  Used for formatting text
      attr_accessor :width

      # Create a new pretty printer.
      #
      # output::
      #   An object implementing '<<(String)', to which the output will be written.
      # indentation::
      #   An integer greater than 0.  The indentation of each level will be
      #   this number of spaces.  If this is < 1, the behavior of this object
      #   is undefined.  Defaults to 2.
      # ie_hack::
      #   If true, the printer will insert whitespace before closing empty
      #   tags, thereby allowing Internet Explorer's XML parser to
      #   function. Defaults to false.
      def initialize( indentation=2, ie_hack=false )
        @indentation = indentation
        @level = 0
        @ie_hack = ie_hack
        @width = 80
        @compact = false
      end

      protected
      def write_element(node, output)
        output << ' '*@level
        output << "<#{node.expanded_name}"

        node.attributes.each_attribute do |attr|
          output << " "
          attr.write( output )
        end unless node.attributes.empty?

        if node.children.empty?
          if @ie_hack
            output << " "
          end
          output << "/"
        else
          output << ">"
          # If compact and all children are text, and if the formatted output
          # is less than the specified width, then try to print everything on
          # one line
          skip = false
          if compact
            if node.children.inject(true) {|s,c| s & c.kind_of?(Text)}
              string = ""
              old_level = @level
              @level = 0
              node.children.each { |child| write( child, string ) }
              @level = old_level
              if string.length < @width
                output << string
                skip = true
              end
            end
          end
          unless skip
            output << "\n"
            @level += @indentation
            node.children.each { |child|
              next if child.kind_of?(Text) and child.to_s.strip.length == 0
              write( child, output )
              output << "\n"
            }
            @level -= @indentation
            output << ' '*@level
          end
          output << "</#{node.expanded_name}"
        end
        output << ">"
      end

      def write_text( node, output )
        s = node.to_s()
        s.gsub!(/\s/,' ')
        s.squeeze!(" ")
        s = wrap(s, @width - @level)
        s = indent_text(s, @level, " ", true)
        output << (' '*@level + s)
      end

      def write_comment( node, output)
        output << ' ' * @level
        super
      end

      def write_cdata( node, output)
        output << ' ' * @level
        super
      end

      def write_document( node, output )
        # Ok, this is a bit odd.  All XML documents have an XML declaration,
        # but it may not write itself if the user didn't specifically add it,
        # either through the API or in the input document.  If it doesn't write
        # itself, then we don't need a carriage return... which makes this
        # logic more complex.
        node.children.each { |child|
          next if child == node.children[-1] and child.instance_of?(Text)
          unless child == node.children[0] or child.instance_of?(Text) or
            (child == node.children[1] and !node.children[0].writethis)
            output << "\n"
          end
          write( child, output )
        }
      end

      private
      def indent_text(string, level=1, style="\t", indentfirstline=true)
        return string if level < 0
        string.gsub(/\n/, "\n#{style*level}")
      end

      def wrap(string, width)
        parts = []
        while string.length > width and place = string.rindex(' ', width)
          parts << string[0...place]
          string = string[place+1..-1]
        end
        parts << string
        parts.join("\n")
      end

    end
  end
end

PKDH[đCshare/ruby/rexml/parent.rbnu�[���# frozen_string_literal: false
require_relative "child"

module REXML
  # A parent has children, and has methods for accessing them.  The Parent
  # class is never encountered except as the superclass for some other
  # object.
  class Parent < Child
    include Enumerable

    # Constructor
    # @param parent if supplied, will be set as the parent of this object
    def initialize parent=nil
      super(parent)
      @children = []
    end

    def add( object )
      object.parent = self
      @children << object
      object
    end

    alias :push :add
    alias :<< :push

    def unshift( object )
      object.parent = self
      @children.unshift object
    end

    def delete( object )
      found = false
      @children.delete_if {|c| c.equal?(object) and found = true }
      object.parent = nil if found
      found ? object : nil
    end

    def each(&block)
      @children.each(&block)
    end

    def delete_if( &block )
      @children.delete_if(&block)
    end

    def delete_at( index )
      @children.delete_at index
    end

    def each_index( &block )
      @children.each_index(&block)
    end

    # Fetches a child at a given index
    # @param index the Integer index of the child to fetch
    def []( index )
      @children[index]
    end

    alias :each_child :each



    # Set an index entry.  See Array.[]=
    # @param index the index of the element to set
    # @param opt either the object to set, or an Integer length
    # @param child if opt is an Integer, this is the child to set
    # @return the parent (self)
    def []=( *args )
      args[-1].parent = self
      @children[*args[0..-2]] = args[-1]
    end

    # Inserts an child before another child
    # @param child1 this is either an xpath or an Element.  If an Element,
    # child2 will be inserted before child1 in the child list of the parent.
    # If an xpath, child2 will be inserted before the first child to match
    # the xpath.
    # @param child2 the child to insert
    # @return the parent (self)
    def insert_before( child1, child2 )
      if child1.kind_of? String
        child1 = XPath.first( self, child1 )
        child1.parent.insert_before child1, child2
      else
        ind = index(child1)
        child2.parent.delete(child2) if child2.parent
        @children[ind,0] = child2
        child2.parent = self
      end
      self
    end

    # Inserts an child after another child
    # @param child1 this is either an xpath or an Element.  If an Element,
    # child2 will be inserted after child1 in the child list of the parent.
    # If an xpath, child2 will be inserted after the first child to match
    # the xpath.
    # @param child2 the child to insert
    # @return the parent (self)
    def insert_after( child1, child2 )
      if child1.kind_of? String
        child1 = XPath.first( self, child1 )
        child1.parent.insert_after child1, child2
      else
        ind = index(child1)+1
        child2.parent.delete(child2) if child2.parent
        @children[ind,0] = child2
        child2.parent = self
      end
      self
    end

    def to_a
      @children.dup
    end

    # Fetches the index of a given child
    # @param child the child to get the index of
    # @return the index of the child, or nil if the object is not a child
    # of this parent.
    def index( child )
      count = -1
      @children.find { |i| count += 1 ; i.hash == child.hash }
      count
    end

    # @return the number of children of this parent
    def size
      @children.size
    end

    alias :length :size

    # Replaces one child with another, making sure the nodelist is correct
    # @param to_replace the child to replace (must be a Child)
    # @param replacement the child to insert into the nodelist (must be a
    # Child)
    def replace_child( to_replace, replacement )
      @children.map! {|c| c.equal?( to_replace ) ? replacement : c }
      to_replace.parent = nil
      replacement.parent = self
    end

    # Deeply clones this object.  This creates a complete duplicate of this
    # Parent, including all descendants.
    def deep_clone
      cl = clone()
      each do |child|
        if child.kind_of? Parent
          cl << child.deep_clone
        else
          cl << child.clone
        end
      end
      cl
    end

    alias :children :to_a

    def parent?
      true
    end
  end
end
PKDH[Uꦭ
�
share/ruby/rexml/xpath.rbnu�[���# frozen_string_literal: false
require_relative 'functions'
require_relative 'xpath_parser'

module REXML
  # Wrapper class.  Use this class to access the XPath functions.
  class XPath
    include Functions
    # A base Hash object, supposing to be used when initializing a
    # default empty namespaces set, but is currently unused.
    # TODO: either set the namespaces=EMPTY_HASH, or deprecate this.
    EMPTY_HASH = {}

    # Finds and returns the first node that matches the supplied xpath.
    # element::
    #   The context element
    # path::
    #   The xpath to search for.  If not supplied or nil, returns the first
    #   node matching '*'.
    # namespaces::
    #   If supplied, a Hash which defines a namespace mapping.
    # variables::
    #   If supplied, a Hash which maps $variables in the query
    #   to values. This can be used to avoid XPath injection attacks
    #   or to automatically handle escaping string values.
    #
    #  XPath.first( node )
    #  XPath.first( doc, "//b"} )
    #  XPath.first( node, "a/x:b", { "x"=>"http://doofus" } )
    #  XPath.first( node, '/book/publisher/text()=$publisher', {}, {"publisher"=>"O'Reilly"})
    def XPath::first(element, path=nil, namespaces=nil, variables={}, options={})
      raise "The namespaces argument, if supplied, must be a hash object." unless namespaces.nil? or namespaces.kind_of?(Hash)
      raise "The variables argument, if supplied, must be a hash object." unless variables.kind_of?(Hash)
      parser = XPathParser.new(**options)
      parser.namespaces = namespaces
      parser.variables = variables
      path = "*" unless path
      element = [element] unless element.kind_of? Array
      parser.parse(path, element).flatten[0]
    end

    # Iterates over nodes that match the given path, calling the supplied
    # block with the match.
    # element::
    #   The context element
    # path::
    #   The xpath to search for.  If not supplied or nil, defaults to '*'
    # namespaces::
    #   If supplied, a Hash which defines a namespace mapping
    # variables::
    #   If supplied, a Hash which maps $variables in the query
    #   to values. This can be used to avoid XPath injection attacks
    #   or to automatically handle escaping string values.
    #
    #  XPath.each( node ) { |el| ... }
    #  XPath.each( node, '/*[@attr='v']' ) { |el| ... }
    #  XPath.each( node, 'ancestor::x' ) { |el| ... }
    #  XPath.each( node, '/book/publisher/text()=$publisher', {}, {"publisher"=>"O'Reilly"}) \
    #    {|el| ... }
    def XPath::each(element, path=nil, namespaces=nil, variables={}, options={}, &block)
      raise "The namespaces argument, if supplied, must be a hash object." unless namespaces.nil? or namespaces.kind_of?(Hash)
      raise "The variables argument, if supplied, must be a hash object." unless variables.kind_of?(Hash)
      parser = XPathParser.new(**options)
      parser.namespaces = namespaces
      parser.variables = variables
      path = "*" unless path
      element = [element] unless element.kind_of? Array
      parser.parse(path, element).each( &block )
    end

    # Returns an array of nodes matching a given XPath.
    def XPath::match(element, path=nil, namespaces=nil, variables={}, options={})
      parser = XPathParser.new(**options)
      parser.namespaces = namespaces
      parser.variables = variables
      path = "*" unless path
      element = [element] unless element.kind_of? Array
      parser.parse(path,element)
    end
  end
end
PKDH[3��Mmm share/ruby/rexml/sax2listener.rbnu�[���# frozen_string_literal: false
module REXML
  # A template for stream parser listeners.
  # Note that the declarations (attlistdecl, elementdecl, etc) are trivially
  # processed; REXML doesn't yet handle doctype entity declarations, so you
  # have to parse them out yourself.
  # === Missing methods from SAX2
  #  ignorable_whitespace
  # === Methods extending SAX2
  # +WARNING+
  # These methods are certainly going to change, until DTDs are fully
  # supported.  Be aware of this.
  #  start_document
  #  end_document
  #  doctype
  #  elementdecl
  #  attlistdecl
  #  entitydecl
  #  notationdecl
  #  cdata
  #  xmldecl
  #  comment
  module SAX2Listener
    def start_document
    end
    def end_document
    end
    def start_prefix_mapping prefix, uri
    end
    def end_prefix_mapping prefix
    end
    def start_element uri, localname, qname, attributes
    end
    def end_element uri, localname, qname
    end
    def characters text
    end
    def processing_instruction target, data
    end
    # Handles a doctype declaration. Any attributes of the doctype which are
    # not supplied will be nil.  # EG, <!DOCTYPE me PUBLIC "foo" "bar">
    # @p name the name of the doctype; EG, "me"
    # @p pub_sys "PUBLIC", "SYSTEM", or nil.  EG, "PUBLIC"
    # @p long_name the supplied long name, or nil.  EG, "foo"
    # @p uri the uri of the doctype, or nil.  EG, "bar"
    def doctype name, pub_sys, long_name, uri
    end
    # If a doctype includes an ATTLIST declaration, it will cause this
    # method to be called.  The content is the declaration itself, unparsed.
    # EG, <!ATTLIST el attr CDATA #REQUIRED> will come to this method as "el
    # attr CDATA #REQUIRED".  This is the same for all of the .*decl
    # methods.
    def attlistdecl(element, pairs, contents)
    end
    # <!ELEMENT ...>
    def elementdecl content
    end
    # <!ENTITY ...>
    # The argument passed to this method is an array of the entity
    # declaration.  It can be in a number of formats, but in general it
    # returns (example, result):
    #  <!ENTITY % YN '"Yes"'>
    #  ["%", "YN", "\"Yes\""]
    #  <!ENTITY % YN 'Yes'>
    #  ["%", "YN", "Yes"]
    #  <!ENTITY WhatHeSaid "He said %YN;">
    #  ["WhatHeSaid", "He said %YN;"]
    #  <!ENTITY open-hatch SYSTEM "http://www.textuality.com/boilerplate/OpenHatch.xml">
    #  ["open-hatch", "SYSTEM", "http://www.textuality.com/boilerplate/OpenHatch.xml"]
    #  <!ENTITY open-hatch PUBLIC "-//Textuality//TEXT Standard open-hatch boilerplate//EN" "http://www.textuality.com/boilerplate/OpenHatch.xml">
    # ["open-hatch", "PUBLIC", "-//Textuality//TEXT Standard open-hatch boilerplate//EN", "http://www.textuality.com/boilerplate/OpenHatch.xml"]
    #  <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif>
    #  ["hatch-pic", "SYSTEM", "../grafix/OpenHatch.gif", "NDATA", "gif"]
    def entitydecl declaration
    end
    # <!NOTATION ...>
    def notationdecl name, public_or_system, public_id, system_id
    end
    # Called when <![CDATA[ ... ]]> is encountered in a document.
    # @p content "..."
    def cdata content
    end
    # Called when an XML PI is encountered in the document.
    # EG: <?xml version="1.0" encoding="utf"?>
    # @p version the version attribute value.  EG, "1.0"
    # @p encoding the encoding attribute value, or nil.  EG, "utf"
    # @p standalone the standalone attribute value, or nil.  EG, nil
    # @p spaced the declaration is followed by a line break
    def xmldecl version, encoding, standalone
    end
    # Called when a comment is encountered.
    # @p comment The content of the comment
    def comment comment
    end
    def progress position
    end
  end
end
PKDH[�:v�11share/ruby/rexml/functions.rbnu�[���# frozen_string_literal: false
module REXML
  # If you add a method, keep in mind two things:
  # (1) the first argument will always be a list of nodes from which to
  # filter.  In the case of context methods (such as position), the function
  # should return an array with a value for each child in the array.
  # (2) all method calls from XML will have "-" replaced with "_".
  # Therefore, in XML, "local-name()" is identical (and actually becomes)
  # "local_name()"
  module Functions
    @@available_functions = {}
    @@context = nil
    @@namespace_context = {}
    @@variables = {}

    INTERNAL_METHODS = [
      :namespace_context,
      :namespace_context=,
      :variables,
      :variables=,
      :context=,
      :get_namespace,
      :send,
    ]
    class << self
      def singleton_method_added(name)
        unless INTERNAL_METHODS.include?(name)
          @@available_functions[name] = true
        end
      end
    end

    def Functions::namespace_context=(x) ; @@namespace_context=x ; end
    def Functions::variables=(x) ; @@variables=x ; end
    def Functions::namespace_context ; @@namespace_context ; end
    def Functions::variables ; @@variables ; end

    def Functions::context=(value); @@context = value; end

    def Functions::text( )
      if @@context[:node].node_type == :element
        return @@context[:node].find_all{|n| n.node_type == :text}.collect{|n| n.value}
      elsif @@context[:node].node_type == :text
        return @@context[:node].value
      else
        return false
      end
    end

    # Returns the last node of the given list of nodes.
    def Functions::last( )
      @@context[:size]
    end

    def Functions::position( )
      @@context[:index]
    end

    # Returns the size of the given list of nodes.
    def Functions::count( node_set )
      node_set.size
    end

    # Since REXML is non-validating, this method is not implemented as it
    # requires a DTD
    def Functions::id( object )
    end

    def Functions::local_name(node_set=nil)
      get_namespace(node_set) do |node|
        return node.local_name
      end
      ""
    end

    def Functions::namespace_uri( node_set=nil )
      get_namespace( node_set ) {|node| node.namespace}
    end

    def Functions::name( node_set=nil )
      get_namespace( node_set ) do |node|
        node.expanded_name
      end
    end

    # Helper method.
    def Functions::get_namespace( node_set = nil )
      if node_set == nil
        yield @@context[:node] if @@context[:node].respond_to?(:namespace)
      else
        if node_set.respond_to? :each
          result = []
          node_set.each do |node|
            result << yield(node) if node.respond_to?(:namespace)
          end
          result
        elsif node_set.respond_to? :namespace
          yield node_set
        end
      end
    end

    # A node-set is converted to a string by returning the string-value of the
    # node in the node-set that is first in document order. If the node-set is
    # empty, an empty string is returned.
    #
    # A number is converted to a string as follows
    #
    # NaN is converted to the string NaN
    #
    # positive zero is converted to the string 0
    #
    # negative zero is converted to the string 0
    #
    # positive infinity is converted to the string Infinity
    #
    # negative infinity is converted to the string -Infinity
    #
    # if the number is an integer, the number is represented in decimal form
    # as a Number with no decimal point and no leading zeros, preceded by a
    # minus sign (-) if the number is negative
    #
    # otherwise, the number is represented in decimal form as a Number
    # including a decimal point with at least one digit before the decimal
    # point and at least one digit after the decimal point, preceded by a
    # minus sign (-) if the number is negative; there must be no leading zeros
    # before the decimal point apart possibly from the one required digit
    # immediately before the decimal point; beyond the one required digit
    # after the decimal point there must be as many, but only as many, more
    # digits as are needed to uniquely distinguish the number from all other
    # IEEE 754 numeric values.
    #
    # The boolean false value is converted to the string false. The boolean
    # true value is converted to the string true.
    #
    # An object of a type other than the four basic types is converted to a
    # string in a way that is dependent on that type.
    def Functions::string( object=@@context[:node] )
      if object.respond_to?(:node_type)
        case object.node_type
        when :attribute
          object.value
        when :element
          string_value(object)
        when :document
          string_value(object.root)
        when :processing_instruction
          object.content
        else
          object.to_s
        end
      else
        case object
        when Array
          string(object[0])
        when Float
          if object.nan?
            "NaN"
          else
            integer = object.to_i
            if object == integer
              "%d" % integer
            else
              object.to_s
            end
          end
        else
          object.to_s
        end
      end
    end

    # A node-set is converted to a string by
    # returning the concatenation of the string-value
    # of each of the children of the node in the
    # node-set that is first in document order.
    # If the node-set is empty, an empty string is returned.
    def Functions::string_value( o )
      rv = ""
      o.children.each { |e|
        if e.node_type == :text
          rv << e.to_s
        elsif e.node_type == :element
          rv << string_value( e )
        end
      }
      rv
    end

    def Functions::concat( *objects )
      concatenated = ""
      objects.each do |object|
        concatenated << string(object)
      end
      concatenated
    end

    # Fixed by Mike Stok
    def Functions::starts_with( string, test )
      string(string).index(string(test)) == 0
    end

    # Fixed by Mike Stok
    def Functions::contains( string, test )
      string(string).include?(string(test))
    end

    # Kouhei fixed this
    def Functions::substring_before( string, test )
      ruby_string = string(string)
      ruby_index = ruby_string.index(string(test))
      if ruby_index.nil?
        ""
      else
        ruby_string[ 0...ruby_index ]
      end
    end

    # Kouhei fixed this too
    def Functions::substring_after( string, test )
      ruby_string = string(string)
      return $1 if ruby_string =~ /#{test}(.*)/
      ""
    end

    # Take equal portions of Mike Stok and Sean Russell; mix
    # vigorously, and pour into a tall, chilled glass.  Serves 10,000.
    def Functions::substring( string, start, length=nil )
      ruby_string = string(string)
      ruby_length = if length.nil?
                      ruby_string.length.to_f
                    else
                      number(length)
                    end
      ruby_start = number(start)

      # Handle the special cases
      return '' if (
        ruby_length.nan? or
        ruby_start.nan? or
        ruby_start.infinite?
      )

      infinite_length = ruby_length.infinite? == 1
      ruby_length = ruby_string.length if infinite_length

      # Now, get the bounds.  The XPath bounds are 1..length; the ruby bounds
      # are 0..length.  Therefore, we have to offset the bounds by one.
      ruby_start = round(ruby_start) - 1
      ruby_length = round(ruby_length)

      if ruby_start < 0
       ruby_length += ruby_start unless infinite_length
       ruby_start = 0
      end
      return '' if ruby_length <= 0
      ruby_string[ruby_start,ruby_length]
    end

    # UNTESTED
    def Functions::string_length( string )
      string(string).length
    end

    # UNTESTED
    def Functions::normalize_space( string=nil )
      string = string(@@context[:node]) if string.nil?
      if string.kind_of? Array
        string.collect{|x| string.to_s.strip.gsub(/\s+/um, ' ') if string}
      else
        string.to_s.strip.gsub(/\s+/um, ' ')
      end
    end

    # This is entirely Mike Stok's beast
    def Functions::translate( string, tr1, tr2 )
      from = string(tr1)
      to = string(tr2)

      # the map is our translation table.
      #
      # if a character occurs more than once in the
      # from string then we ignore the second &
      # subsequent mappings
      #
      # if a character maps to nil then we delete it
      # in the output.  This happens if the from
      # string is longer than the to string
      #
      # there's nothing about - or ^ being special in
      # http://www.w3.org/TR/xpath#function-translate
      # so we don't build ranges or negated classes

      map = Hash.new
      0.upto(from.length - 1) { |pos|
        from_char = from[pos]
        unless map.has_key? from_char
          map[from_char] =
          if pos < to.length
            to[pos]
          else
            nil
          end
        end
      }

      if ''.respond_to? :chars
        string(string).chars.collect { |c|
          if map.has_key? c then map[c] else c end
        }.compact.join
      else
        string(string).unpack('U*').collect { |c|
          if map.has_key? c then map[c] else c end
        }.compact.pack('U*')
      end
    end

    def Functions::boolean(object=@@context[:node])
      case object
      when true, false
        object
      when Float
        return false if object.zero?
        return false if object.nan?
        true
      when Numeric
        not object.zero?
      when String
        not object.empty?
      when Array
        not object.empty?
      else
        object ? true : false
      end
    end

    # UNTESTED
    def Functions::not( object )
      not boolean( object )
    end

    # UNTESTED
    def Functions::true( )
      true
    end

    # UNTESTED
    def Functions::false(  )
      false
    end

    # UNTESTED
    def Functions::lang( language )
      lang = false
      node = @@context[:node]
      attr = nil
      until node.nil?
        if node.node_type == :element
          attr = node.attributes["xml:lang"]
          unless attr.nil?
            lang = compare_language(string(language), attr)
            break
          else
          end
        end
        node = node.parent
      end
      lang
    end

    def Functions::compare_language lang1, lang2
      lang2.downcase.index(lang1.downcase) == 0
    end

    # a string that consists of optional whitespace followed by an optional
    # minus sign followed by a Number followed by whitespace is converted to
    # the IEEE 754 number that is nearest (according to the IEEE 754
    # round-to-nearest rule) to the mathematical value represented by the
    # string; any other string is converted to NaN
    #
    # boolean true is converted to 1; boolean false is converted to 0
    #
    # a node-set is first converted to a string as if by a call to the string
    # function and then converted in the same way as a string argument
    #
    # an object of a type other than the four basic types is converted to a
    # number in a way that is dependent on that type
    def Functions::number(object=@@context[:node])
      case object
      when true
        Float(1)
      when false
        Float(0)
      when Array
        number(string(object))
      when Numeric
        object.to_f
      else
        str = string(object)
        case str.strip
        when /\A\s*(-?(?:\d+(?:\.\d*)?|\.\d+))\s*\z/
          $1.to_f
        else
          Float::NAN
        end
      end
    end

    def Functions::sum( nodes )
      nodes = [nodes] unless nodes.kind_of? Array
      nodes.inject(0) { |r,n| r + number(string(n)) }
    end

    def Functions::floor( number )
      number(number).floor
    end

    def Functions::ceiling( number )
      number(number).ceil
    end

    def Functions::round( number )
      number = number(number)
      begin
        neg = number.negative?
        number = number.abs.round
        neg ? -number : number
      rescue FloatDomainError
        number
      end
    end

    def Functions::processing_instruction( node )
      node.node_type == :processing_instruction
    end

    def Functions::send(name, *args)
      if @@available_functions[name.to_sym]
        super
      else
        # TODO: Maybe, this is not XPath spec behavior.
        # This behavior must be reconsidered.
        XPath.match(@@context[:node], name.to_s)
      end
    end
  end
end
PKDH[�p�v�v share/ruby/rexml/xpath_parser.rbnu�[���# frozen_string_literal: false

require "pp"

require_relative 'namespace'
require_relative 'xmltokens'
require_relative 'attribute'
require_relative 'parsers/xpathparser'

class Object
  # provides a unified +clone+ operation, for REXML::XPathParser
  # to use across multiple Object types
  def dclone
    clone
  end
end
class Symbol
  # provides a unified +clone+ operation, for REXML::XPathParser
  # to use across multiple Object types
  def dclone ; self ; end
end
class Integer
  # provides a unified +clone+ operation, for REXML::XPathParser
  # to use across multiple Object types
  def dclone ; self ; end
end
class Float
  # provides a unified +clone+ operation, for REXML::XPathParser
  # to use across multiple Object types
  def dclone ; self ; end
end
class Array
  # provides a unified +clone+ operation, for REXML::XPathParser
  # to use across multiple Object+ types
  def dclone
    klone = self.clone
    klone.clear
    self.each{|v| klone << v.dclone}
    klone
  end
end

module REXML
  # You don't want to use this class.  Really.  Use XPath, which is a wrapper
  # for this class.  Believe me.  You don't want to poke around in here.
  # There is strange, dark magic at work in this code.  Beware.  Go back!  Go
  # back while you still can!
  class XPathParser
    include XMLTokens
    LITERAL    = /^'([^']*)'|^"([^"]*)"/u

    DEBUG = (ENV["REXML_XPATH_PARSER_DEBUG"] == "true")

    def initialize(strict: false)
      @debug = DEBUG
      @parser = REXML::Parsers::XPathParser.new
      @namespaces = nil
      @variables = {}
      @nest = 0
      @strict = strict
    end

    def namespaces=( namespaces={} )
      Functions::namespace_context = namespaces
      @namespaces = namespaces
    end

    def variables=( vars={} )
      Functions::variables = vars
      @variables = vars
    end

    def parse path, nodeset
      path_stack = @parser.parse( path )
      match( path_stack, nodeset )
    end

    def get_first path, nodeset
      path_stack = @parser.parse( path )
      first( path_stack, nodeset )
    end

    def predicate path, nodeset
      path_stack = @parser.parse( path )
      match( path_stack, nodeset )
    end

    def []=( variable_name, value )
      @variables[ variable_name ] = value
    end


    # Performs a depth-first (document order) XPath search, and returns the
    # first match.  This is the fastest, lightest way to return a single result.
    #
    # FIXME: This method is incomplete!
    def first( path_stack, node )
      return nil if path.size == 0

      case path[0]
      when :document
        # do nothing
        return first( path[1..-1], node )
      when :child
        for c in node.children
          r = first( path[1..-1], c )
          return r if r
        end
      when :qname
        name = path[2]
        if node.name == name
          return node if path.size == 3
          return first( path[3..-1], node )
        else
          return nil
        end
      when :descendant_or_self
        r = first( path[1..-1], node )
        return r if r
        for c in node.children
          r = first( path, c )
          return r if r
        end
      when :node
        return first( path[1..-1], node )
      when :any
        return first( path[1..-1], node )
      end
      return nil
    end


    def match(path_stack, nodeset)
      nodeset = nodeset.collect.with_index do |node, i|
        position = i + 1
        XPathNode.new(node, position: position)
      end
      result = expr(path_stack, nodeset)
      case result
      when Array # nodeset
        unnode(result)
      else
        [result]
      end
    end

    private
    def strict?
      @strict
    end

    # Returns a String namespace for a node, given a prefix
    # The rules are:
    #
    #  1. Use the supplied namespace mapping first.
    #  2. If no mapping was supplied, use the context node to look up the namespace
    def get_namespace( node, prefix )
      if @namespaces
        return @namespaces[prefix] || ''
      else
        return node.namespace( prefix ) if node.node_type == :element
        return ''
      end
    end


    # Expr takes a stack of path elements and a set of nodes (either a Parent
    # or an Array and returns an Array of matching nodes
    def expr( path_stack, nodeset, context=nil )
      enter(:expr, path_stack, nodeset) if @debug
      return nodeset if path_stack.length == 0 || nodeset.length == 0
      while path_stack.length > 0
        trace(:while, path_stack, nodeset) if @debug
        if nodeset.length == 0
          path_stack.clear
          return []
        end
        op = path_stack.shift
        case op
        when :document
          first_raw_node = nodeset.first.raw_node
          nodeset = [XPathNode.new(first_raw_node.root_node, position: 1)]
        when :self
          nodeset = step(path_stack) do
            [nodeset]
          end
        when :child
          nodeset = step(path_stack) do
            child(nodeset)
          end
        when :literal
          trace(:literal, path_stack, nodeset) if @debug
          return path_stack.shift
        when :attribute
          nodeset = step(path_stack, any_type: :attribute) do
            nodesets = []
            nodeset.each do |node|
              raw_node = node.raw_node
              next unless raw_node.node_type == :element
              attributes = raw_node.attributes
              next if attributes.empty?
              nodesets << attributes.each_attribute.collect.with_index do |attribute, i|
                XPathNode.new(attribute, position: i + 1)
              end
            end
            nodesets
          end
        when :namespace
          pre_defined_namespaces = {
            "xml" => "http://www.w3.org/XML/1998/namespace",
          }
          nodeset = step(path_stack, any_type: :namespace) do
            nodesets = []
            nodeset.each do |node|
              raw_node = node.raw_node
              case raw_node.node_type
              when :element
                if @namespaces
                  nodesets << pre_defined_namespaces.merge(@namespaces)
                else
                  nodesets << pre_defined_namespaces.merge(raw_node.namespaces)
                end
              when :attribute
                if @namespaces
                  nodesets << pre_defined_namespaces.merge(@namespaces)
                else
                  nodesets << pre_defined_namespaces.merge(raw_node.element.namespaces)
                end
              end
            end
            nodesets
          end
        when :parent
          nodeset = step(path_stack) do
            nodesets = []
            nodeset.each do |node|
              raw_node = node.raw_node
              if raw_node.node_type == :attribute
                parent = raw_node.element
              else
                parent = raw_node.parent
              end
              nodesets << [XPathNode.new(parent, position: 1)] if parent
            end
            nodesets
          end
        when :ancestor
          nodeset = step(path_stack) do
            nodesets = []
            # new_nodes = {}
            nodeset.each do |node|
              raw_node = node.raw_node
              new_nodeset = []
              while raw_node.parent
                raw_node = raw_node.parent
                # next if new_nodes.key?(node)
                new_nodeset << XPathNode.new(raw_node,
                                             position: new_nodeset.size + 1)
                # new_nodes[node] = true
              end
              nodesets << new_nodeset unless new_nodeset.empty?
            end
            nodesets
          end
        when :ancestor_or_self
          nodeset = step(path_stack) do
            nodesets = []
            # new_nodes = {}
            nodeset.each do |node|
              raw_node = node.raw_node
              next unless raw_node.node_type == :element
              new_nodeset = [XPathNode.new(raw_node, position: 1)]
              # new_nodes[node] = true
              while raw_node.parent
                raw_node = raw_node.parent
                # next if new_nodes.key?(node)
                new_nodeset << XPathNode.new(raw_node,
                                             position: new_nodeset.size + 1)
                # new_nodes[node] = true
              end
              nodesets << new_nodeset unless new_nodeset.empty?
            end
            nodesets
          end
        when :descendant_or_self
          nodeset = step(path_stack) do
            descendant(nodeset, true)
          end
        when :descendant
          nodeset = step(path_stack) do
            descendant(nodeset, false)
          end
        when :following_sibling
          nodeset = step(path_stack) do
            nodesets = []
            nodeset.each do |node|
              raw_node = node.raw_node
              next unless raw_node.respond_to?(:parent)
              next if raw_node.parent.nil?
              all_siblings = raw_node.parent.children
              current_index = all_siblings.index(raw_node)
              following_siblings = all_siblings[(current_index + 1)..-1]
              next if following_siblings.empty?
              nodesets << following_siblings.collect.with_index do |sibling, i|
                XPathNode.new(sibling, position: i + 1)
              end
            end
            nodesets
          end
        when :preceding_sibling
          nodeset = step(path_stack, order: :reverse) do
            nodesets = []
            nodeset.each do |node|
              raw_node = node.raw_node
              next unless raw_node.respond_to?(:parent)
              next if raw_node.parent.nil?
              all_siblings = raw_node.parent.children
              current_index = all_siblings.index(raw_node)
              preceding_siblings = all_siblings[0, current_index].reverse
              next if preceding_siblings.empty?
              nodesets << preceding_siblings.collect.with_index do |sibling, i|
                XPathNode.new(sibling, position: i + 1)
              end
            end
            nodesets
          end
        when :preceding
          nodeset = step(path_stack, order: :reverse) do
            unnode(nodeset) do |node|
              preceding(node)
            end
          end
        when :following
          nodeset = step(path_stack) do
            unnode(nodeset) do |node|
              following(node)
            end
          end
        when :variable
          var_name = path_stack.shift
          return [@variables[var_name]]

        when :eq, :neq, :lt, :lteq, :gt, :gteq
          left = expr( path_stack.shift, nodeset.dup, context )
          right = expr( path_stack.shift, nodeset.dup, context )
          res = equality_relational_compare( left, op, right )
          trace(op, left, right, res) if @debug
          return res

        when :or
          left = expr(path_stack.shift, nodeset.dup, context)
          return true if Functions.boolean(left)
          right = expr(path_stack.shift, nodeset.dup, context)
          return Functions.boolean(right)

        when :and
          left = expr(path_stack.shift, nodeset.dup, context)
          return false unless Functions.boolean(left)
          right = expr(path_stack.shift, nodeset.dup, context)
          return Functions.boolean(right)

        when :div, :mod, :mult, :plus, :minus
          left = expr(path_stack.shift, nodeset, context)
          right = expr(path_stack.shift, nodeset, context)
          left = unnode(left) if left.is_a?(Array)
          right = unnode(right) if right.is_a?(Array)
          left = Functions::number(left)
          right = Functions::number(right)
          case op
          when :div
            return left / right
          when :mod
            return left % right
          when :mult
            return left * right
          when :plus
            return left + right
          when :minus
            return left - right
          else
            raise "[BUG] Unexpected operator: <#{op.inspect}>"
          end
        when :union
          left = expr( path_stack.shift, nodeset, context )
          right = expr( path_stack.shift, nodeset, context )
          left = unnode(left) if left.is_a?(Array)
          right = unnode(right) if right.is_a?(Array)
          return (left | right)
        when :neg
          res = expr( path_stack, nodeset, context )
          res = unnode(res) if res.is_a?(Array)
          return -Functions.number(res)
        when :not
        when :function
          func_name = path_stack.shift.tr('-','_')
          arguments = path_stack.shift

          if nodeset.size != 1
            message = "[BUG] Node set size must be 1 for function call: "
            message += "<#{func_name}>: <#{nodeset.inspect}>: "
            message += "<#{arguments.inspect}>"
            raise message
          end

          node = nodeset.first
          if context
            target_context = context
          else
            target_context = {:size => nodeset.size}
            if node.is_a?(XPathNode)
              target_context[:node]  = node.raw_node
              target_context[:index] = node.position
            else
              target_context[:node]  = node
              target_context[:index] = 1
            end
          end
          args = arguments.dclone.collect do |arg|
            result = expr(arg, nodeset, target_context)
            result = unnode(result) if result.is_a?(Array)
            result
          end
          Functions.context = target_context
          return Functions.send(func_name, *args)

        else
          raise "[BUG] Unexpected path: <#{op.inspect}>: <#{path_stack.inspect}>"
        end
      end # while
      return nodeset
    ensure
      leave(:expr, path_stack, nodeset) if @debug
    end

    def step(path_stack, any_type: :element, order: :forward)
      nodesets = yield
      begin
        enter(:step, path_stack, nodesets) if @debug
        nodesets = node_test(path_stack, nodesets, any_type: any_type)
        while path_stack[0] == :predicate
          path_stack.shift # :predicate
          predicate_expression = path_stack.shift.dclone
          nodesets = evaluate_predicate(predicate_expression, nodesets)
        end
        if nodesets.size == 1
          ordered_nodeset = nodesets[0]
        else
          raw_nodes = []
          nodesets.each do |nodeset|
            nodeset.each do |node|
              if node.respond_to?(:raw_node)
                raw_nodes << node.raw_node
              else
                raw_nodes << node
              end
            end
          end
          ordered_nodeset = sort(raw_nodes, order)
        end
        new_nodeset = []
        ordered_nodeset.each do |node|
          # TODO: Remove duplicated
          new_nodeset << XPathNode.new(node, position: new_nodeset.size + 1)
        end
        new_nodeset
      ensure
        leave(:step, path_stack, new_nodeset) if @debug
      end
    end

    def node_test(path_stack, nodesets, any_type: :element)
      enter(:node_test, path_stack, nodesets) if @debug
      operator = path_stack.shift
      case operator
      when :qname
        prefix = path_stack.shift
        name = path_stack.shift
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            case raw_node.node_type
            when :element
              if prefix.nil?
                raw_node.name == name
              elsif prefix.empty?
                if strict?
                  raw_node.name == name and raw_node.namespace == ""
                else
                  # FIXME: This DOUBLES the time XPath searches take
                  ns = get_namespace(raw_node, prefix)
                  raw_node.name == name and raw_node.namespace == ns
                end
              else
                # FIXME: This DOUBLES the time XPath searches take
                ns = get_namespace(raw_node, prefix)
                raw_node.name == name and raw_node.namespace == ns
              end
            when :attribute
              if prefix.nil?
                raw_node.name == name
              elsif prefix.empty?
                raw_node.name == name and raw_node.namespace == ""
              else
                # FIXME: This DOUBLES the time XPath searches take
                ns = get_namespace(raw_node.element, prefix)
                raw_node.name == name and raw_node.namespace == ns
              end
            else
              false
            end
          end
        end
      when :namespace
        prefix = path_stack.shift
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            case raw_node.node_type
            when :element
              namespaces = @namespaces || raw_node.namespaces
              raw_node.namespace == namespaces[prefix]
            when :attribute
              namespaces = @namespaces || raw_node.element.namespaces
              raw_node.namespace == namespaces[prefix]
            else
              false
            end
          end
        end
      when :any
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            raw_node.node_type == any_type
          end
        end
      when :comment
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            raw_node.node_type == :comment
          end
        end
      when :text
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            raw_node.node_type == :text
          end
        end
      when :processing_instruction
        target = path_stack.shift
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            raw_node = node.raw_node
            (raw_node.node_type == :processing_instruction) and
              (target.empty? or (raw_node.target == target))
          end
        end
      when :node
        new_nodesets = nodesets.collect do |nodeset|
          filter_nodeset(nodeset) do |node|
            true
          end
        end
      else
        message = "[BUG] Unexpected node test: " +
          "<#{operator.inspect}>: <#{path_stack.inspect}>"
        raise message
      end
      new_nodesets
    ensure
      leave(:node_test, path_stack, new_nodesets) if @debug
    end

    def filter_nodeset(nodeset)
      new_nodeset = []
      nodeset.each do |node|
        next unless yield(node)
        new_nodeset << XPathNode.new(node, position: new_nodeset.size + 1)
      end
      new_nodeset
    end

    def evaluate_predicate(expression, nodesets)
      enter(:predicate, expression, nodesets) if @debug
      new_nodesets = nodesets.collect do |nodeset|
        new_nodeset = []
        subcontext = { :size => nodeset.size }
        nodeset.each_with_index do |node, index|
          if node.is_a?(XPathNode)
            subcontext[:node] = node.raw_node
            subcontext[:index] = node.position
          else
            subcontext[:node] = node
            subcontext[:index] = index + 1
          end
          result = expr(expression.dclone, [node], subcontext)
          trace(:predicate_evaluate, expression, node, subcontext, result) if @debug
          result = result[0] if result.kind_of? Array and result.length == 1
          if result.kind_of? Numeric
            if result == node.position
              new_nodeset << XPathNode.new(node, position: new_nodeset.size + 1)
            end
          elsif result.instance_of? Array
            if result.size > 0 and result.inject(false) {|k,s| s or k}
              if result.size > 0
                new_nodeset << XPathNode.new(node, position: new_nodeset.size + 1)
              end
            end
          else
            if result
              new_nodeset << XPathNode.new(node, position: new_nodeset.size + 1)
            end
          end
        end
        new_nodeset
      end
      new_nodesets
    ensure
      leave(:predicate, new_nodesets) if @debug
    end

    def trace(*args)
      indent = "  " * @nest
      PP.pp(args, "").each_line do |line|
        puts("#{indent}#{line}")
      end
    end

    def enter(tag, *args)
      trace(:enter, tag, *args)
      @nest += 1
    end

    def leave(tag, *args)
      @nest -= 1
      trace(:leave, tag, *args)
    end

    # Reorders an array of nodes so that they are in document order
    # It tries to do this efficiently.
    #
    # FIXME: I need to get rid of this, but the issue is that most of the XPath
    # interpreter functions as a filter, which means that we lose context going
    # in and out of function calls.  If I knew what the index of the nodes was,
    # I wouldn't have to do this.  Maybe add a document IDX for each node?
    # Problems with mutable documents.  Or, rewrite everything.
    def sort(array_of_nodes, order)
      new_arry = []
      array_of_nodes.each { |node|
        node_idx = []
        np = node.node_type == :attribute ? node.element : node
        while np.parent and np.parent.node_type == :element
          node_idx << np.parent.index( np )
          np = np.parent
        end
        new_arry << [ node_idx.reverse, node ]
      }
      ordered = new_arry.sort_by do |index, node|
        if order == :forward
          index
        else
          -index
        end
      end
      ordered.collect do |_index, node|
        node
      end
    end

    def descendant(nodeset, include_self)
      nodesets = []
      nodeset.each do |node|
        new_nodeset = []
        new_nodes = {}
        descendant_recursive(node.raw_node, new_nodeset, new_nodes, include_self)
        nodesets << new_nodeset unless new_nodeset.empty?
      end
      nodesets
    end

    def descendant_recursive(raw_node, new_nodeset, new_nodes, include_self)
      if include_self
        return if new_nodes.key?(raw_node)
        new_nodeset << XPathNode.new(raw_node, position: new_nodeset.size + 1)
        new_nodes[raw_node] = true
      end

      node_type = raw_node.node_type
      if node_type == :element or node_type == :document
        raw_node.children.each do |child|
          descendant_recursive(child, new_nodeset, new_nodes, true)
        end
      end
    end

    # Builds a nodeset of all of the preceding nodes of the supplied node,
    # in reverse document order
    # preceding:: includes every element in the document that precedes this node,
    # except for ancestors
    def preceding(node)
      ancestors = []
      parent = node.parent
      while parent
        ancestors << parent
        parent = parent.parent
      end

      precedings = []
      preceding_node = preceding_node_of(node)
      while preceding_node
        if ancestors.include?(preceding_node)
          ancestors.delete(preceding_node)
        else
          precedings << XPathNode.new(preceding_node,
                                      position: precedings.size + 1)
        end
        preceding_node = preceding_node_of(preceding_node)
      end
      precedings
    end

    def preceding_node_of( node )
      psn = node.previous_sibling_node
      if psn.nil?
        if node.parent.nil? or node.parent.class == Document
          return nil
        end
        return node.parent
        #psn = preceding_node_of( node.parent )
      end
      while psn and psn.kind_of? Element and psn.children.size > 0
        psn = psn.children[-1]
      end
      psn
    end

    def following(node)
      followings = []
      following_node = next_sibling_node(node)
      while following_node
        followings << XPathNode.new(following_node,
                                    position: followings.size + 1)
        following_node = following_node_of(following_node)
      end
      followings
    end

    def following_node_of( node )
      if node.kind_of? Element and node.children.size > 0
        return node.children[0]
      end
      return next_sibling_node(node)
    end

    def next_sibling_node(node)
      psn = node.next_sibling_node
      while psn.nil?
        if node.parent.nil? or node.parent.class == Document
          return nil
        end
        node = node.parent
        psn = node.next_sibling_node
      end
      return psn
    end

    def child(nodeset)
      nodesets = []
      nodeset.each do |node|
        raw_node = node.raw_node
        node_type = raw_node.node_type
        # trace(:child, node_type, node)
        case node_type
        when :element
          nodesets << raw_node.children.collect.with_index do |child_node, i|
            XPathNode.new(child_node, position: i + 1)
          end
        when :document
          new_nodeset = []
          raw_node.children.each do |child|
            case child
            when XMLDecl, Text
              # Ignore
            else
              new_nodeset << XPathNode.new(child, position: new_nodeset.size + 1)
            end
          end
          nodesets << new_nodeset unless new_nodeset.empty?
        end
      end
      nodesets
    end

    def norm b
      case b
      when true, false
        return b
      when 'true', 'false'
        return Functions::boolean( b )
      when /^\d+(\.\d+)?$/, Numeric
        return Functions::number( b )
      else
        return Functions::string( b )
      end
    end

    def equality_relational_compare(set1, op, set2)
      set1 = unnode(set1) if set1.is_a?(Array)
      set2 = unnode(set2) if set2.is_a?(Array)

      if set1.kind_of? Array and set2.kind_of? Array
        # If both objects to be compared are node-sets, then the
        # comparison will be true if and only if there is a node in the
        # first node-set and a node in the second node-set such that the
        # result of performing the comparison on the string-values of
        # the two nodes is true.
        set1.product(set2).any? do |node1, node2|
          node_string1 = Functions.string(node1)
          node_string2 = Functions.string(node2)
          compare(node_string1, op, node_string2)
        end
      elsif set1.kind_of? Array or set2.kind_of? Array
        # If one is nodeset and other is number, compare number to each item
        # in nodeset s.t. number op number(string(item))
        # If one is nodeset and other is string, compare string to each item
        # in nodeset s.t. string op string(item)
        # If one is nodeset and other is boolean, compare boolean to each item
        # in nodeset s.t. boolean op boolean(item)
        if set1.kind_of? Array
          a = set1
          b = set2
        else
          a = set2
          b = set1
        end

        case b
        when true, false
          each_unnode(a).any? do |unnoded|
            compare(Functions.boolean(unnoded), op, b)
          end
        when Numeric
          each_unnode(a).any? do |unnoded|
            compare(Functions.number(unnoded), op, b)
          end
        when /\A\d+(\.\d+)?\z/
          b = Functions.number(b)
          each_unnode(a).any? do |unnoded|
            compare(Functions.number(unnoded), op, b)
          end
        else
          b = Functions::string(b)
          each_unnode(a).any? do |unnoded|
            compare(Functions::string(unnoded), op, b)
          end
        end
      else
        # If neither is nodeset,
        #   If op is = or !=
        #     If either boolean, convert to boolean
        #     If either number, convert to number
        #     Else, convert to string
        #   Else
        #     Convert both to numbers and compare
        compare(set1, op, set2)
      end
    end

    def value_type(value)
      case value
      when true, false
        :boolean
      when Numeric
        :number
      when String
        :string
      else
        raise "[BUG] Unexpected value type: <#{value.inspect}>"
      end
    end

    def normalize_compare_values(a, operator, b)
      a_type = value_type(a)
      b_type = value_type(b)
      case operator
      when :eq, :neq
        if a_type == :boolean or b_type == :boolean
          a = Functions.boolean(a) unless a_type == :boolean
          b = Functions.boolean(b) unless b_type == :boolean
        elsif a_type == :number or b_type == :number
          a = Functions.number(a) unless a_type == :number
          b = Functions.number(b) unless b_type == :number
        else
          a = Functions.string(a) unless a_type == :string
          b = Functions.string(b) unless b_type == :string
        end
      when :lt, :lteq, :gt, :gteq
        a = Functions.number(a) unless a_type == :number
        b = Functions.number(b) unless b_type == :number
      else
        message = "[BUG] Unexpected compare operator: " +
          "<#{operator.inspect}>: <#{a.inspect}>: <#{b.inspect}>"
        raise message
      end
      [a, b]
    end

    def compare(a, operator, b)
      a, b = normalize_compare_values(a, operator, b)
      case operator
      when :eq
        a == b
      when :neq
        a != b
      when :lt
        a < b
      when :lteq
        a <= b
      when :gt
        a > b
      when :gteq
        a >= b
      else
        message = "[BUG] Unexpected compare operator: " +
          "<#{operator.inspect}>: <#{a.inspect}>: <#{b.inspect}>"
        raise message
      end
    end

    def each_unnode(nodeset)
      return to_enum(__method__, nodeset) unless block_given?
      nodeset.each do |node|
        if node.is_a?(XPathNode)
          unnoded = node.raw_node
        else
          unnoded = node
        end
        yield(unnoded)
      end
    end

    def unnode(nodeset)
      each_unnode(nodeset).collect do |unnoded|
        unnoded = yield(unnoded) if block_given?
        unnoded
      end
    end
  end

  # @private
  class XPathNode
    attr_reader :raw_node, :context
    def initialize(node, context=nil)
      if node.is_a?(XPathNode)
        @raw_node = node.raw_node
      else
        @raw_node = node
      end
      @context = context || {}
    end

    def position
      @context[:position]
    end
  end
end
PKDH[�dQ��/share/ruby/rexml/undefinednamespaceexception.rbnu�[���# frozen_string_literal: false
require_relative 'parseexception'
module REXML
  class UndefinedNamespaceException < ParseException
    def initialize( prefix, source, parser )
      super( "Undefined prefix #{prefix} found" )
    end
  end
end
PKDH[vo����share/ruby/rexml/node.rbnu�[���# frozen_string_literal: false
require_relative "parseexception"
require_relative "formatters/pretty"
require_relative "formatters/default"

module REXML
  # Represents a node in the tree.  Nodes are never encountered except as
  # superclasses of other objects.  Nodes have siblings.
  module Node
    # @return the next sibling (nil if unset)
    def next_sibling_node
      return nil if @parent.nil?
      @parent[ @parent.index(self) + 1 ]
    end

    # @return the previous sibling (nil if unset)
    def previous_sibling_node
      return nil if @parent.nil?
      ind = @parent.index(self)
      return nil if ind == 0
      @parent[ ind - 1 ]
    end

    # indent::
    #   *DEPRECATED* This parameter is now ignored.  See the formatters in the
    #   REXML::Formatters package for changing the output style.
    def to_s indent=nil
      unless indent.nil?
        Kernel.warn( "#{self.class.name}.to_s(indent) parameter is deprecated", uplevel: 1)
        f = REXML::Formatters::Pretty.new( indent )
        f.write( self, rv = "" )
      else
        f = REXML::Formatters::Default.new
        f.write( self, rv = "" )
      end
      return rv
    end

    def indent to, ind
                        if @parent and @parent.context and not @parent.context[:indentstyle].nil? then
                                indentstyle = @parent.context[:indentstyle]
                        else
                                indentstyle = '  '
                        end
                        to << indentstyle*ind unless ind<1
    end

    def parent?
      false;
    end


    # Visit all subnodes of +self+ recursively
    def each_recursive(&block) # :yields: node
      self.elements.each {|node|
        block.call(node)
        node.each_recursive(&block)
      }
    end

    # Find (and return) first subnode (recursively) for which the block
    # evaluates to true. Returns +nil+ if none was found.
    def find_first_recursive(&block) # :yields: node
      each_recursive {|node|
        return node if block.call(node)
      }
      return nil
    end

    # Returns the position that +self+ holds in its parent's array, indexed
    # from 1.
    def index_in_parent
      parent.index(self)+1
    end
  end
end
PKDH[��J�
�
share/ruby/rexml/child.rbnu�[���# frozen_string_literal: false
require_relative "node"

module REXML
  ##
  # A Child object is something contained by a parent, and this class
  # contains methods to support that.  Most user code will not use this
  # class directly.
  class Child
    include Node
    attr_reader :parent         # The Parent of this object

    # Constructor.  Any inheritors of this class should call super to make
    # sure this method is called.
    # parent::
    #   if supplied, the parent of this child will be set to the
    #   supplied value, and self will be added to the parent
    def initialize( parent = nil )
      @parent = nil
      # Declare @parent, but don't define it.  The next line sets the
      # parent.
      parent.add( self ) if parent
    end

    # Replaces this object with another object.  Basically, calls
    # Parent.replace_child
    #
    # Returns:: self
    def replace_with( child )
      @parent.replace_child( self, child )
      self
    end

    # Removes this child from the parent.
    #
    # Returns:: self
    def remove
      unless @parent.nil?
        @parent.delete self
      end
      self
    end

    # Sets the parent of this child to the supplied argument.
    #
    # other::
    #   Must be a Parent object.  If this object is the same object as the
    #   existing parent of this child, no action is taken. Otherwise, this
    #   child is removed from the current parent (if one exists), and is added
    #   to the new parent.
    # Returns:: The parent added
    def parent=( other )
      return @parent if @parent == other
      @parent.delete self if defined? @parent and @parent
      @parent = other
    end

    alias :next_sibling :next_sibling_node
    alias :previous_sibling :previous_sibling_node

    # Sets the next sibling of this child.  This can be used to insert a child
    # after some other child.
    #  a = Element.new("a")
    #  b = a.add_element("b")
    #  c = Element.new("c")
    #  b.next_sibling = c
    #  # => <a><b/><c/></a>
    def next_sibling=( other )
      parent.insert_after self, other
    end

    # Sets the previous sibling of this child.  This can be used to insert a
    # child before some other child.
    #  a = Element.new("a")
    #  b = a.add_element("b")
    #  c = Element.new("c")
    #  b.previous_sibling = c
    #  # => <a><b/><c/></a>
    def previous_sibling=(other)
      parent.insert_before self, other
    end

    # Returns:: the document this child belongs to, or nil if this child
    # belongs to no document
    def document
      return parent.document unless parent.nil?
      nil
    end

    # This doesn't yet handle encodings
    def bytes
      document.encoding

      to_s
    end
  end
end
PKDH[�}]XXshare/ruby/rexml/cdata.rbnu�[���# frozen_string_literal: false
require_relative "text"

module REXML
  class CData < Text
    START = '<![CDATA['
    STOP = ']]>'
    ILLEGAL = /(\]\]>)/

    #   Constructor.  CData is data between <![CDATA[ ... ]]>
    #
    # _Examples_
    #  CData.new( source )
    #  CData.new( "Here is some CDATA" )
    #  CData.new( "Some unprocessed data", respect_whitespace_TF, parent_element )
    def initialize( first, whitespace=true, parent=nil )
      super( first, whitespace, parent, false, true, ILLEGAL )
    end

    # Make a copy of this object
    #
    # _Examples_
    #  c = CData.new( "Some text" )
    #  d = c.clone
    #  d.to_s        # -> "Some text"
    def clone
      CData.new self
    end

    # Returns the content of this CData object
    #
    # _Examples_
    #  c = CData.new( "Some text" )
    #  c.to_s        # -> "Some text"
    def to_s
      @string
    end

    def value
      @string
    end

    # == DEPRECATED
    # See the rexml/formatters package
    #
    # Generates XML output of this object
    #
    # output::
    #   Where to write the string.  Defaults to $stdout
    # indent::
    #   The amount to indent this node by
    # transitive::
    #   Ignored
    # ie_hack::
    #   Ignored
    #
    # _Examples_
    #  c = CData.new( " Some text " )
    #  c.write( $stdout )     #->  <![CDATA[ Some text ]]>
    def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
      Kernel.warn( "#{self.class.name}.write is deprecated", uplevel: 1)
      indent( output, indent )
      output << START
      output << @string
      output << STOP
    end
  end
end
PKDH[Mʌ�\\"share/ruby/rexml/streamlistener.rbnu�[���# frozen_string_literal: false
module REXML
  # A template for stream parser listeners.
  # Note that the declarations (attlistdecl, elementdecl, etc) are trivially
  # processed; REXML doesn't yet handle doctype entity declarations, so you
  # have to parse them out yourself.
  module StreamListener
    # Called when a tag is encountered.
    # @p name the tag name
    # @p attrs an array of arrays of attribute/value pairs, suitable for
    # use with assoc or rassoc.  IE, <tag attr1="value1" attr2="value2">
    # will result in
    # tag_start( "tag", # [["attr1","value1"],["attr2","value2"]])
    def tag_start name, attrs
    end
    # Called when the end tag is reached.  In the case of <tag/>, tag_end
    # will be called immediately after tag_start
    # @p the name of the tag
    def tag_end name
    end
    # Called when text is encountered in the document
    # @p text the text content.
    def text text
    end
    # Called when an instruction is encountered.  EG: <?xsl sheet='foo'?>
    # @p name the instruction name; in the example, "xsl"
    # @p instruction the rest of the instruction.  In the example,
    # "sheet='foo'"
    def instruction name, instruction
    end
    # Called when a comment is encountered.
    # @p comment The content of the comment
    def comment comment
    end
    # Handles a doctype declaration. Any attributes of the doctype which are
    # not supplied will be nil.  # EG, <!DOCTYPE me PUBLIC "foo" "bar">
    # @p name the name of the doctype; EG, "me"
    # @p pub_sys "PUBLIC", "SYSTEM", or nil.  EG, "PUBLIC"
    # @p long_name the supplied long name, or nil.  EG, "foo"
    # @p uri the uri of the doctype, or nil.  EG, "bar"
    def doctype name, pub_sys, long_name, uri
    end
    # Called when the doctype is done
    def doctype_end
    end
    # If a doctype includes an ATTLIST declaration, it will cause this
    # method to be called.  The content is the declaration itself, unparsed.
    # EG, <!ATTLIST el attr CDATA #REQUIRED> will come to this method as "el
    # attr CDATA #REQUIRED".  This is the same for all of the .*decl
    # methods.
    def attlistdecl element_name, attributes, raw_content
    end
    # <!ELEMENT ...>
    def elementdecl content
    end
    # <!ENTITY ...>
    # The argument passed to this method is an array of the entity
    # declaration.  It can be in a number of formats, but in general it
    # returns (example, result):
    #  <!ENTITY % YN '"Yes"'>
    #  ["YN", "\"Yes\"", "%"]
    #  <!ENTITY % YN 'Yes'>
    #  ["YN", "Yes", "%"]
    #  <!ENTITY WhatHeSaid "He said %YN;">
    #  ["WhatHeSaid", "He said %YN;"]
    #  <!ENTITY open-hatch SYSTEM "http://www.textuality.com/boilerplate/OpenHatch.xml">
    #  ["open-hatch", "SYSTEM", "http://www.textuality.com/boilerplate/OpenHatch.xml"]
    #  <!ENTITY open-hatch PUBLIC "-//Textuality//TEXT Standard open-hatch boilerplate//EN" "http://www.textuality.com/boilerplate/OpenHatch.xml">
    #  ["open-hatch", "PUBLIC", "-//Textuality//TEXT Standard open-hatch boilerplate//EN", "http://www.textuality.com/boilerplate/OpenHatch.xml"]
    #  <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif>
    #  ["hatch-pic", "SYSTEM", "../grafix/OpenHatch.gif", "gif"]
    def entitydecl content
    end
    # <!NOTATION ...>
    def notationdecl content
    end
    # Called when %foo; is encountered in a doctype declaration.
    # @p content "foo"
    def entity content
    end
    # Called when <![CDATA[ ... ]]> is encountered in a document.
    # @p content "..."
    def cdata content
    end
    # Called when an XML PI is encountered in the document.
    # EG: <?xml version="1.0" encoding="utf"?>
    # @p version the version attribute value.  EG, "1.0"
    # @p encoding the encoding attribute value, or nil.  EG, "utf"
    # @p standalone the standalone attribute value, or nil.  EG, nil
    def xmldecl version, encoding, standalone
    end
  end
end
PKDH[��f��share/ruby/rexml/encoding.rbnu�[���# coding: US-ASCII
# frozen_string_literal: false
module REXML
  module Encoding
    # ID ---> Encoding name
    attr_reader :encoding
    def encoding=(encoding)
      encoding = encoding.name if encoding.is_a?(Encoding)
      if encoding.is_a?(String)
        original_encoding = encoding
        encoding = find_encoding(encoding)
        unless encoding
          raise ArgumentError, "Bad encoding name #{original_encoding}"
        end
      end
      return false if defined?(@encoding) and encoding == @encoding
      if encoding
        @encoding = encoding.upcase
      else
        @encoding = 'UTF-8'
      end
      true
    end

    def encode(string)
      string.encode(@encoding)
    end

    def decode(string)
      string.encode(::Encoding::UTF_8, @encoding)
    end

    private
    def find_encoding(name)
      case name
      when /\Ashift-jis\z/i
        return "SHIFT_JIS"
      when /\ACP-(\d+)\z/
        name = "CP#{$1}"
      when /\AUTF-8\z/i
        return name
      end
      begin
        ::Encoding::Converter.search_convpath(name, 'UTF-8')
      rescue ::Encoding::ConverterNotFoundError
        return nil
      end
      name
    end
  end
end
PKDH[�͉''share/ruby/rexml/rexml.rbnu�[���# -*- coding: utf-8 -*-
# frozen_string_literal: false
# REXML is an XML toolkit for Ruby[http://www.ruby-lang.org], in Ruby.
#
# REXML is a _pure_ Ruby, XML 1.0 conforming,
# non-validating[http://www.w3.org/TR/2004/REC-xml-20040204/#sec-conformance]
# toolkit with an intuitive API.  REXML passes 100% of the non-validating Oasis
# tests[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml],
# and provides tree, stream, SAX2, pull, and lightweight APIs.  REXML also
# includes a full XPath[http://www.w3c.org/tr/xpath] 1.0 implementation. Since
# Ruby 1.8, REXML is included in the standard Ruby distribution.
#
# Main page:: http://www.germane-software.com/software/rexml
# Author:: Sean Russell <serATgermaneHYPHENsoftwareDOTcom>
# Date:: 2008/019
# Version:: 3.1.7.3
#
# This API documentation can be downloaded from the REXML home page, or can
# be accessed online[http://www.germane-software.com/software/rexml_doc]
#
# A tutorial is available in the REXML distribution in docs/tutorial.html,
# or can be accessed
# online[http://www.germane-software.com/software/rexml/docs/tutorial.html]
module REXML
  COPYRIGHT = "Copyright © 2001-2008 Sean Russell <ser@germane-software.com>"
  DATE = "2008/019"
  VERSION = "3.2.3.1"
  REVISION = ""

  Copyright = COPYRIGHT
  Version = VERSION
end
PKEH[�zzshare/ruby/rexml/comment.rbnu�[���# frozen_string_literal: false
require_relative "child"

module REXML
  ##
  # Represents an XML comment; that is, text between \<!-- ... -->
  class Comment < Child
    include Comparable
    START = "<!--"
    STOP = "-->"

    # The content text

    attr_accessor :string

    ##
    # Constructor.  The first argument can be one of three types:
    # @param first If String, the contents of this comment are set to the
    # argument.  If Comment, the argument is duplicated.  If
    # Source, the argument is scanned for a comment.
    # @param second If the first argument is a Source, this argument
    # should be nil, not supplied, or a Parent to be set as the parent
    # of this object
    def initialize( first, second = nil )
      super(second)
      if first.kind_of? String
        @string = first
      elsif first.kind_of? Comment
        @string = first.string
      end
    end

    def clone
      Comment.new self
    end

    # == DEPRECATED
    # See REXML::Formatters
    #
    # output::
    #    Where to write the string
    # indent::
    #    An integer.    If -1, no indenting will be used; otherwise, the
    #    indentation will be this number of spaces, and children will be
    #    indented an additional amount.
    # transitive::
    #    Ignored by this class. The contents of comments are never modified.
    # ie_hack::
    #    Needed for conformity to the child API, but not used by this class.
    def write( output, indent=-1, transitive=false, ie_hack=false )
      Kernel.warn("Comment.write is deprecated.  See REXML::Formatters", uplevel: 1)
      indent( output, indent )
      output << START
      output << @string
      output << STOP
    end

    alias :to_s :string

    ##
    # Compares this Comment to another; the contents of the comment are used
    # in the comparison.
    def <=>(other)
      other.to_s <=> @string
    end

    ##
    # Compares this Comment to another; the contents of the comment are used
    # in the comparison.
    def ==( other )
      other.kind_of? Comment and
      (other <=> self) == 0
    end

    def node_type
      :comment
    end
  end
end
#vim:ts=2 sw=2 noexpandtab:
PKEH[�5����share/ruby/rexml/xmldecl.rbnu�[���# frozen_string_literal: false

require_relative 'encoding'
require_relative 'source'

module REXML
  # NEEDS DOCUMENTATION
  class XMLDecl < Child
    include Encoding

    DEFAULT_VERSION = "1.0"
    DEFAULT_ENCODING = "UTF-8"
    DEFAULT_STANDALONE = "no"
    START = "<?xml"
    STOP = "?>"

    attr_accessor :version, :standalone
    attr_reader :writeencoding, :writethis

    def initialize(version=DEFAULT_VERSION, encoding=nil, standalone=nil)
      @writethis = true
      @writeencoding = !encoding.nil?
      if version.kind_of? XMLDecl
        super()
        @version = version.version
        self.encoding = version.encoding
        @writeencoding = version.writeencoding
        @standalone = version.standalone
        @writethis = version.writethis
      else
        super()
        @version = version
        self.encoding = encoding
        @standalone = standalone
      end
      @version = DEFAULT_VERSION if @version.nil?
    end

    def clone
      XMLDecl.new(self)
    end

    # indent::
    #   Ignored.  There must be no whitespace before an XML declaration
    # transitive::
    #   Ignored
    # ie_hack::
    #   Ignored
    def write(writer, indent=-1, transitive=false, ie_hack=false)
      return nil unless @writethis or writer.kind_of? Output
      writer << START
      writer << " #{content encoding}"
      writer << STOP
    end

    def ==( other )
      other.kind_of?(XMLDecl) and
      other.version == @version and
      other.encoding == self.encoding and
      other.standalone == @standalone
    end

    def xmldecl version, encoding, standalone
      @version = version
      self.encoding = encoding
      @standalone = standalone
    end

    def node_type
      :xmldecl
    end

    alias :stand_alone? :standalone
    alias :old_enc= :encoding=

    def encoding=( enc )
      if enc.nil?
        self.old_enc = "UTF-8"
        @writeencoding = false
      else
        self.old_enc = enc
        @writeencoding = true
      end
      self.dowrite
    end

    # Only use this if you do not want the XML declaration to be written;
    # this object is ignored by the XML writer.  Otherwise, instantiate your
    # own XMLDecl and add it to the document.
    #
    # Note that XML 1.1 documents *must* include an XML declaration
    def XMLDecl.default
      rv = XMLDecl.new( "1.0" )
      rv.nowrite
      rv
    end

    def nowrite
      @writethis = false
    end

    def dowrite
      @writethis = true
    end

    def inspect
      "#{START} ... #{STOP}"
    end

    private
    def content(enc)
      context = nil
      context = parent.context if parent
      if context and context[:prologue_quote] == :quote
        quote = "\""
      else
        quote = "'"
      end

      rv = "version=#{quote}#{@version}#{quote}"
      if @writeencoding or enc !~ /\Autf-8\z/i
        rv << " encoding=#{quote}#{enc}#{quote}"
      end
      if @standalone
        rv << " standalone=#{quote}#{@standalone}#{quote}"
      end
      rv
    end
  end
end
PKEH[5�h}$}$share/ruby/rexml/quickpath.rbnu�[���# frozen_string_literal: false
require_relative 'functions'
require_relative 'xmltokens'

module REXML
  class QuickPath
    include Functions
    include XMLTokens

    # A base Hash object to be used when initializing a
    # default empty namespaces set.
    EMPTY_HASH = {}

    def QuickPath::first element, path, namespaces=EMPTY_HASH
      match(element, path, namespaces)[0]
    end

    def QuickPath::each element, path, namespaces=EMPTY_HASH, &block
      path = "*" unless path
      match(element, path, namespaces).each( &block )
    end

    def QuickPath::match element, path, namespaces=EMPTY_HASH
      raise "nil is not a valid xpath" unless path
      results = nil
      Functions::namespace_context = namespaces
      case path
      when /^\/([^\/]|$)/u
        # match on root
        path = path[1..-1]
        return [element.root.parent] if path == ''
        results = filter([element.root], path)
      when /^[-\w]*::/u
        results = filter([element], path)
      when /^\*/u
        results = filter(element.to_a, path)
      when /^[\[!\w:]/u
        # match on child
        children = element.to_a
        results = filter(children, path)
      else
        results = filter([element], path)
      end
      return results
    end

    # Given an array of nodes it filters the array based on the path. The
    # result is that when this method returns, the array will contain elements
    # which match the path
    def QuickPath::filter elements, path
      return elements if path.nil? or path == '' or elements.size == 0
      case path
      when /^\/\//u                                                                                     # Descendant
        return axe( elements, "descendant-or-self", $' )
      when /^\/?\b(\w[-\w]*)\b::/u                                                      # Axe
        return axe( elements, $1, $' )
      when /^\/(?=\b([:!\w][-\.\w]*:)?[-!\*\.\w]*\b([^:(]|$)|\*)/u      # Child
        rest = $'
        results = []
        elements.each do |element|
          results |= filter( element.to_a, rest )
        end
        return results
      when /^\/?(\w[-\w]*)\(/u                                                  # / Function
        return function( elements, $1, $' )
      when Namespace::NAMESPLIT         # Element name
        name = $2
        ns = $1
        rest = $'
        elements.delete_if do |element|
          !(element.kind_of? Element and
            (element.expanded_name == name or
             (element.name == name and
              element.namespace == Functions.namespace_context[ns])))
        end
        return filter( elements, rest )
      when /^\/\[/u
        matches = []
        elements.each do |element|
          matches |= predicate( element.to_a, path[1..-1] ) if element.kind_of? Element
        end
        return matches
      when /^\[/u                                                                                               # Predicate
        return predicate( elements, path )
      when /^\/?\.\.\./u                                                                                # Ancestor
        return axe( elements, "ancestor", $' )
      when /^\/?\.\./u                                                                                  # Parent
        return filter( elements.collect{|e|e.parent}, $' )
      when /^\/?\./u                                                                                            # Self
        return filter( elements, $' )
      when /^\*/u                                                                                                       # Any
        results = []
        elements.each do |element|
          results |= filter( [element], $' ) if element.kind_of? Element
          #if element.kind_of? Element
          #     children = element.to_a
          #     children.delete_if { |child| !child.kind_of?(Element) }
          #     results |= filter( children, $' )
          #end
        end
        return results
      end
      return []
    end

    def QuickPath::axe( elements, axe_name, rest )
      matches = []
      matches = filter( elements.dup, rest ) if axe_name =~ /-or-self$/u
      case axe_name
      when /^descendant/u
        elements.each do |element|
          matches |= filter( element.to_a, "descendant-or-self::#{rest}" ) if element.kind_of? Element
        end
      when /^ancestor/u
        elements.each do |element|
          while element.parent
            matches << element.parent
            element = element.parent
          end
        end
        matches = filter( matches, rest )
      when "self"
        matches = filter( elements, rest )
      when "child"
        elements.each do |element|
          matches |= filter( element.to_a, rest ) if element.kind_of? Element
        end
      when "attribute"
        elements.each do |element|
          matches << element.attributes[ rest ] if element.kind_of? Element
        end
      when "parent"
        matches = filter(elements.collect{|element| element.parent}.uniq, rest)
      when "following-sibling"
        matches = filter(elements.collect{|element| element.next_sibling}.uniq,
          rest)
      when "previous-sibling"
        matches = filter(elements.collect{|element|
          element.previous_sibling}.uniq, rest )
      end
      return matches.uniq
    end

    OPERAND_ = '((?=(?:(?!and|or).)*[^\s<>=])[^\s<>=]+)'
    # A predicate filters a node-set with respect to an axis to produce a
    # new node-set. For each node in the node-set to be filtered, the
    # PredicateExpr is evaluated with that node as the context node, with
    # the number of nodes in the node-set as the context size, and with the
    # proximity position of the node in the node-set with respect to the
    # axis as the context position; if PredicateExpr evaluates to true for
    # that node, the node is included in the new node-set; otherwise, it is
    # not included.
    #
    # A PredicateExpr is evaluated by evaluating the Expr and converting
    # the result to a boolean. If the result is a number, the result will
    # be converted to true if the number is equal to the context position
    # and will be converted to false otherwise; if the result is not a
    # number, then the result will be converted as if by a call to the
    # boolean function. Thus a location path para[3] is equivalent to
    # para[position()=3].
    def QuickPath::predicate( elements, path )
      ind = 1
      bcount = 1
      while bcount > 0
        bcount += 1 if path[ind] == ?[
        bcount -= 1 if path[ind] == ?]
        ind += 1
      end
      ind -= 1
      predicate = path[1..ind-1]
      rest = path[ind+1..-1]

      # have to change 'a [=<>] b [=<>] c' into 'a [=<>] b and b [=<>] c'
      #
      predicate.gsub!(
        /#{OPERAND_}\s*([<>=])\s*#{OPERAND_}\s*([<>=])\s*#{OPERAND_}/u,
        '\1 \2 \3 and \3 \4 \5' )
      # Let's do some Ruby trickery to avoid some work:
      predicate.gsub!( /&/u, "&&" )
      predicate.gsub!( /=/u, "==" )
      predicate.gsub!( /@(\w[-\w.]*)/u, 'attribute("\1")' )
      predicate.gsub!( /\bmod\b/u, "%" )
      predicate.gsub!( /\b(\w[-\w.]*\()/u ) {
        fname = $1
        fname.gsub( /-/u, "_" )
      }

      Functions.pair = [ 0, elements.size ]
      results = []
      elements.each do |element|
        Functions.pair[0] += 1
        Functions.node = element
        res = eval( predicate )
        case res
        when true
          results << element
        when Integer
          results << element if Functions.pair[0] == res
        when String
          results << element
        end
      end
      return filter( results, rest )
    end

    def QuickPath::attribute( name )
      return Functions.node.attributes[name] if Functions.node.kind_of? Element
    end

    def QuickPath::name()
      return Functions.node.name if Functions.node.kind_of? Element
    end

    def QuickPath::method_missing( id, *args )
      begin
        Functions.send( id.id2name, *args )
      rescue Exception
        raise "METHOD: #{id.id2name}(#{args.join ', '})\n#{$!.message}"
      end
    end

    def QuickPath::function( elements, fname, rest )
      args = parse_args( elements, rest )
      Functions.pair = [0, elements.size]
      results = []
      elements.each do |element|
        Functions.pair[0] += 1
        Functions.node = element
        res = Functions.send( fname, *args )
        case res
        when true
          results << element
        when Integer
          results << element if Functions.pair[0] == res
        end
      end
      return results
    end

    def QuickPath::parse_args( element, string )
      # /.*?(?:\)|,)/
      arguments = []
      buffer = ""
      while string and string != ""
        c = string[0]
        string.sub!(/^./u, "")
        case c
        when ?,
          # if depth = 1, then we start a new argument
          arguments << evaluate( buffer )
          #arguments << evaluate( string[0..count] )
        when ?(
          # start a new method call
          function( element, buffer, string )
          buffer = ""
        when ?)
          # close the method call and return arguments
          return arguments
        else
          buffer << c
        end
      end
      ""
    end
  end
end
PKEH[4;�@s@sshare/ruby/erb.rbnu�[���# -*- coding: us-ascii -*-
# frozen_string_literal: true
# = ERB -- Ruby Templating
#
# Author:: Masatoshi SEKI
# Documentation:: James Edward Gray II, Gavin Sinclair, and Simon Chiang
#
# See ERB for primary documentation and ERB::Util for a couple of utility
# routines.
#
# Copyright (c) 1999-2000,2002,2003 Masatoshi SEKI
#
# You can redistribute it and/or modify it under the same terms as Ruby.

require "cgi/util"

#
# = ERB -- Ruby Templating
#
# == Introduction
#
# ERB provides an easy to use but powerful templating system for Ruby.  Using
# ERB, actual Ruby code can be added to any plain text document for the
# purposes of generating document information details and/or flow control.
#
# A very simple example is this:
#
#   require 'erb'
#
#   x = 42
#   template = ERB.new <<-EOF
#     The value of x is: <%= x %>
#   EOF
#   puts template.result(binding)
#
# <em>Prints:</em> The value of x is: 42
#
# More complex examples are given below.
#
#
# == Recognized Tags
#
# ERB recognizes certain tags in the provided template and converts them based
# on the rules below:
#
#   <% Ruby code -- inline with output %>
#   <%= Ruby expression -- replace with result %>
#   <%# comment -- ignored -- useful in testing %>
#   % a line of Ruby code -- treated as <% line %> (optional -- see ERB.new)
#   %% replaced with % if first thing on a line and % processing is used
#   <%% or %%> -- replace with <% or %> respectively
#
# All other text is passed through ERB filtering unchanged.
#
#
# == Options
#
# There are several settings you can change when you use ERB:
# * the nature of the tags that are recognized;
# * the binding used to resolve local variables in the template.
#
# See the ERB.new and ERB#result methods for more detail.
#
# == Character encodings
#
# ERB (or Ruby code generated by ERB) returns a string in the same
# character encoding as the input string.  When the input string has
# a magic comment, however, it returns a string in the encoding specified
# by the magic comment.
#
#   # -*- coding: utf-8 -*-
#   require 'erb'
#
#   template = ERB.new <<EOF
#   <%#-*- coding: Big5 -*-%>
#     \_\_ENCODING\_\_ is <%= \_\_ENCODING\_\_ %>.
#   EOF
#   puts template.result
#
# <em>Prints:</em> \_\_ENCODING\_\_ is Big5.
#
#
# == Examples
#
# === Plain Text
#
# ERB is useful for any generic templating situation.  Note that in this example, we use the
# convenient "% at start of line" tag, and we quote the template literally with
# <tt>%q{...}</tt> to avoid trouble with the backslash.
#
#   require "erb"
#
#   # Create template.
#   template = %q{
#     From:  James Edward Gray II <james@grayproductions.net>
#     To:  <%= to %>
#     Subject:  Addressing Needs
#
#     <%= to[/\w+/] %>:
#
#     Just wanted to send a quick note assuring that your needs are being
#     addressed.
#
#     I want you to know that my team will keep working on the issues,
#     especially:
#
#     <%# ignore numerous minor requests -- focus on priorities %>
#     % priorities.each do |priority|
#       * <%= priority %>
#     % end
#
#     Thanks for your patience.
#
#     James Edward Gray II
#   }.gsub(/^  /, '')
#
#   message = ERB.new(template, trim_mode: "%<>")
#
#   # Set up template data.
#   to = "Community Spokesman <spokesman@ruby_community.org>"
#   priorities = [ "Run Ruby Quiz",
#                  "Document Modules",
#                  "Answer Questions on Ruby Talk" ]
#
#   # Produce result.
#   email = message.result
#   puts email
#
# <i>Generates:</i>
#
#   From:  James Edward Gray II <james@grayproductions.net>
#   To:  Community Spokesman <spokesman@ruby_community.org>
#   Subject:  Addressing Needs
#
#   Community:
#
#   Just wanted to send a quick note assuring that your needs are being addressed.
#
#   I want you to know that my team will keep working on the issues, especially:
#
#       * Run Ruby Quiz
#       * Document Modules
#       * Answer Questions on Ruby Talk
#
#   Thanks for your patience.
#
#   James Edward Gray II
#
# === Ruby in HTML
#
# ERB is often used in <tt>.rhtml</tt> files (HTML with embedded Ruby).  Notice the need in
# this example to provide a special binding when the template is run, so that the instance
# variables in the Product object can be resolved.
#
#   require "erb"
#
#   # Build template data class.
#   class Product
#     def initialize( code, name, desc, cost )
#       @code = code
#       @name = name
#       @desc = desc
#       @cost = cost
#
#       @features = [ ]
#     end
#
#     def add_feature( feature )
#       @features << feature
#     end
#
#     # Support templating of member data.
#     def get_binding
#       binding
#     end
#
#     # ...
#   end
#
#   # Create template.
#   template = %{
#     <html>
#       <head><title>Ruby Toys -- <%= @name %></title></head>
#       <body>
#
#         <h1><%= @name %> (<%= @code %>)</h1>
#         <p><%= @desc %></p>
#
#         <ul>
#           <% @features.each do |f| %>
#             <li><b><%= f %></b></li>
#           <% end %>
#         </ul>
#
#         <p>
#           <% if @cost < 10 %>
#             <b>Only <%= @cost %>!!!</b>
#           <% else %>
#              Call for a price, today!
#           <% end %>
#         </p>
#
#       </body>
#     </html>
#   }.gsub(/^  /, '')
#
#   rhtml = ERB.new(template)
#
#   # Set up template data.
#   toy = Product.new( "TZ-1002",
#                      "Rubysapien",
#                      "Geek's Best Friend!  Responds to Ruby commands...",
#                      999.95 )
#   toy.add_feature("Listens for verbal commands in the Ruby language!")
#   toy.add_feature("Ignores Perl, Java, and all C variants.")
#   toy.add_feature("Karate-Chop Action!!!")
#   toy.add_feature("Matz signature on left leg.")
#   toy.add_feature("Gem studded eyes... Rubies, of course!")
#
#   # Produce result.
#   rhtml.run(toy.get_binding)
#
# <i>Generates (some blank lines removed):</i>
#
#    <html>
#      <head><title>Ruby Toys -- Rubysapien</title></head>
#      <body>
#
#        <h1>Rubysapien (TZ-1002)</h1>
#        <p>Geek's Best Friend!  Responds to Ruby commands...</p>
#
#        <ul>
#            <li><b>Listens for verbal commands in the Ruby language!</b></li>
#            <li><b>Ignores Perl, Java, and all C variants.</b></li>
#            <li><b>Karate-Chop Action!!!</b></li>
#            <li><b>Matz signature on left leg.</b></li>
#            <li><b>Gem studded eyes... Rubies, of course!</b></li>
#        </ul>
#
#        <p>
#             Call for a price, today!
#        </p>
#
#      </body>
#    </html>
#
#
# == Notes
#
# There are a variety of templating solutions available in various Ruby projects.
# For example, RDoc, distributed with Ruby, uses its own template engine, which
# can be reused elsewhere.
#
# Other popular engines could be found in the corresponding
# {Category}[https://www.ruby-toolbox.com/categories/template_engines] of
# The Ruby Toolbox.
#
class ERB
  Revision = '$Date::                           $' # :nodoc: #'

  # Returns revision information for the erb.rb module.
  def self.version
    "erb.rb [2.2.0 #{ERB::Revision.split[1]}]"
  end
end

#--
# ERB::Compiler
class ERB
  # = ERB::Compiler
  #
  # Compiles ERB templates into Ruby code; the compiled code produces the
  # template result when evaluated. ERB::Compiler provides hooks to define how
  # generated output is handled.
  #
  # Internally ERB does something like this to generate the code returned by
  # ERB#src:
  #
  #   compiler = ERB::Compiler.new('<>')
  #   compiler.pre_cmd    = ["_erbout=+''"]
  #   compiler.put_cmd    = "_erbout.<<"
  #   compiler.insert_cmd = "_erbout.<<"
  #   compiler.post_cmd   = ["_erbout"]
  #
  #   code, enc = compiler.compile("Got <%= obj %>!\n")
  #   puts code
  #
  # <i>Generates</i>:
  #
  #   #coding:UTF-8
  #   _erbout=+''; _erbout.<< "Got ".freeze; _erbout.<<(( obj ).to_s); _erbout.<< "!\n".freeze; _erbout
  #
  # By default the output is sent to the print method.  For example:
  #
  #   compiler = ERB::Compiler.new('<>')
  #   code, enc = compiler.compile("Got <%= obj %>!\n")
  #   puts code
  #
  # <i>Generates</i>:
  #
  #   #coding:UTF-8
  #   print "Got ".freeze; print(( obj ).to_s); print "!\n".freeze
  #
  # == Evaluation
  #
  # The compiled code can be used in any context where the names in the code
  # correctly resolve. Using the last example, each of these print 'Got It!'
  #
  # Evaluate using a variable:
  #
  #   obj = 'It'
  #   eval code
  #
  # Evaluate using an input:
  #
  #   mod = Module.new
  #   mod.module_eval %{
  #     def get(obj)
  #       #{code}
  #     end
  #   }
  #   extend mod
  #   get('It')
  #
  # Evaluate using an accessor:
  #
  #   klass = Class.new Object
  #   klass.class_eval %{
  #     attr_accessor :obj
  #     def initialize(obj)
  #       @obj = obj
  #     end
  #     def get_it
  #       #{code}
  #     end
  #   }
  #   klass.new('It').get_it
  #
  # Good! See also ERB#def_method, ERB#def_module, and ERB#def_class.
  class Compiler # :nodoc:
    class PercentLine # :nodoc:
      def initialize(str)
        @value = str
      end
      attr_reader :value
      alias :to_s :value
    end

    class Scanner # :nodoc:
      @scanner_map = {}
      class << self
        def register_scanner(klass, trim_mode, percent)
          @scanner_map[[trim_mode, percent]] = klass
        end
        alias :regist_scanner :register_scanner
      end

      def self.default_scanner=(klass)
        @default_scanner = klass
      end

      def self.make_scanner(src, trim_mode, percent)
        klass = @scanner_map.fetch([trim_mode, percent], @default_scanner)
        klass.new(src, trim_mode, percent)
      end

      DEFAULT_STAGS = %w(<%% <%= <%# <%).freeze
      DEFAULT_ETAGS = %w(%%> %>).freeze
      def initialize(src, trim_mode, percent)
        @src = src
        @stag = nil
        @stags = DEFAULT_STAGS
        @etags = DEFAULT_ETAGS
      end
      attr_accessor :stag
      attr_reader :stags, :etags

      def scan; end
    end

    class TrimScanner < Scanner # :nodoc:
      def initialize(src, trim_mode, percent)
        super
        @trim_mode = trim_mode
        @percent = percent
        if @trim_mode == '>'
          @scan_reg  = /(.*?)(%>\r?\n|#{(stags + etags).join('|')}|\n|\z)/m
          @scan_line = self.method(:trim_line1)
        elsif @trim_mode == '<>'
          @scan_reg  = /(.*?)(%>\r?\n|#{(stags + etags).join('|')}|\n|\z)/m
          @scan_line = self.method(:trim_line2)
        elsif @trim_mode == '-'
          @scan_reg  = /(.*?)(^[ \t]*<%\-|<%\-|-%>\r?\n|-%>|#{(stags + etags).join('|')}|\z)/m
          @scan_line = self.method(:explicit_trim_line)
        else
          @scan_reg  = /(.*?)(#{(stags + etags).join('|')}|\n|\z)/m
          @scan_line = self.method(:scan_line)
        end
      end

      def scan(&block)
        @stag = nil
        if @percent
          @src.each_line do |line|
            percent_line(line, &block)
          end
        else
          @scan_line.call(@src, &block)
        end
        nil
      end

      def percent_line(line, &block)
        if @stag || line[0] != ?%
          return @scan_line.call(line, &block)
        end

        line[0] = ''
        if line[0] == ?%
          @scan_line.call(line, &block)
        else
          yield(PercentLine.new(line.chomp))
        end
      end

      def scan_line(line)
        line.scan(@scan_reg) do |tokens|
          tokens.each do |token|
            next if token.empty?
            yield(token)
          end
        end
      end

      def trim_line1(line)
        line.scan(@scan_reg) do |tokens|
          tokens.each do |token|
            next if token.empty?
            if token == "%>\n" || token == "%>\r\n"
              yield('%>')
              yield(:cr)
            else
              yield(token)
            end
          end
        end
      end

      def trim_line2(line)
        head = nil
        line.scan(@scan_reg) do |tokens|
          tokens.each do |token|
            next if token.empty?
            head = token unless head
            if token == "%>\n" || token == "%>\r\n"
              yield('%>')
              if is_erb_stag?(head)
                yield(:cr)
              else
                yield("\n")
              end
              head = nil
            else
              yield(token)
              head = nil if token == "\n"
            end
          end
        end
      end

      def explicit_trim_line(line)
        line.scan(@scan_reg) do |tokens|
          tokens.each do |token|
            next if token.empty?
            if @stag.nil? && /[ \t]*<%-/ =~ token
              yield('<%')
            elsif @stag && (token == "-%>\n" || token == "-%>\r\n")
              yield('%>')
              yield(:cr)
            elsif @stag && token == '-%>'
              yield('%>')
            else
              yield(token)
            end
          end
        end
      end

      ERB_STAG = %w(<%= <%# <%)
      def is_erb_stag?(s)
        ERB_STAG.member?(s)
      end
    end

    Scanner.default_scanner = TrimScanner

    begin
      require 'strscan'
    rescue LoadError
    else
      class SimpleScanner < Scanner # :nodoc:
        def scan
          stag_reg = (stags == DEFAULT_STAGS) ? /(.*?)(<%[%=#]?|\z)/m : /(.*?)(#{stags.join('|')}|\z)/m
          etag_reg = (etags == DEFAULT_ETAGS) ? /(.*?)(%%?>|\z)/m : /(.*?)(#{etags.join('|')}|\z)/m
          scanner = StringScanner.new(@src)
          while ! scanner.eos?
            scanner.scan(@stag ? etag_reg : stag_reg)
            yield(scanner[1])
            yield(scanner[2])
          end
        end
      end
      Scanner.register_scanner(SimpleScanner, nil, false)

      class ExplicitScanner < Scanner # :nodoc:
        def scan
          stag_reg = /(.*?)(^[ \t]*<%-|<%-|#{stags.join('|')}|\z)/m
          etag_reg = /(.*?)(-%>|#{etags.join('|')}|\z)/m
          scanner = StringScanner.new(@src)
          while ! scanner.eos?
            scanner.scan(@stag ? etag_reg : stag_reg)
            yield(scanner[1])

            elem = scanner[2]
            if /[ \t]*<%-/ =~ elem
              yield('<%')
            elsif elem == '-%>'
              yield('%>')
              yield(:cr) if scanner.scan(/(\r?\n|\z)/)
            else
              yield(elem)
            end
          end
        end
      end
      Scanner.register_scanner(ExplicitScanner, '-', false)
    end

    class Buffer # :nodoc:
      def initialize(compiler, enc=nil, frozen=nil)
        @compiler = compiler
        @line = []
        @script = +''
        @script << "#coding:#{enc}\n" if enc
        @script << "#frozen-string-literal:#{frozen}\n" unless frozen.nil?
        @compiler.pre_cmd.each do |x|
          push(x)
        end
      end
      attr_reader :script

      def push(cmd)
        @line << cmd
      end

      def cr
        @script << (@line.join('; '))
        @line = []
        @script << "\n"
      end

      def close
        return unless @line
        @compiler.post_cmd.each do |x|
          push(x)
        end
        @script << (@line.join('; '))
        @line = nil
      end
    end

    def add_put_cmd(out, content)
      out.push("#{@put_cmd} #{content.dump}.freeze#{"\n" * content.count("\n")}")
    end

    def add_insert_cmd(out, content)
      out.push("#{@insert_cmd}((#{content}).to_s)")
    end

    # Compiles an ERB template into Ruby code.  Returns an array of the code
    # and encoding like ["code", Encoding].
    def compile(s)
      enc = s.encoding
      raise ArgumentError, "#{enc} is not ASCII compatible" if enc.dummy?
      s = s.b # see String#b
      magic_comment = detect_magic_comment(s, enc)
      out = Buffer.new(self, *magic_comment)

      self.content = +''
      scanner = make_scanner(s)
      scanner.scan do |token|
        next if token.nil?
        next if token == ''
        if scanner.stag.nil?
          compile_stag(token, out, scanner)
        else
          compile_etag(token, out, scanner)
        end
      end
      add_put_cmd(out, content) if content.size > 0
      out.close
      return out.script, *magic_comment
    end

    def compile_stag(stag, out, scanner)
      case stag
      when PercentLine
        add_put_cmd(out, content) if content.size > 0
        self.content = +''
        out.push(stag.to_s)
        out.cr
      when :cr
        out.cr
      when '<%', '<%=', '<%#'
        scanner.stag = stag
        add_put_cmd(out, content) if content.size > 0
        self.content = +''
      when "\n"
        content << "\n"
        add_put_cmd(out, content)
        self.content = +''
      when '<%%'
        content << '<%'
      else
        content << stag
      end
    end

    def compile_etag(etag, out, scanner)
      case etag
      when '%>'
        compile_content(scanner.stag, out)
        scanner.stag = nil
        self.content = +''
      when '%%>'
        content << '%>'
      else
        content << etag
      end
    end

    def compile_content(stag, out)
      case stag
      when '<%'
        if content[-1] == ?\n
          content.chop!
          out.push(content)
          out.cr
        else
          out.push(content)
        end
      when '<%='
        add_insert_cmd(out, content)
      when '<%#'
        # commented out
      end
    end

    def prepare_trim_mode(mode) # :nodoc:
      case mode
      when 1
        return [false, '>']
      when 2
        return [false, '<>']
      when 0, nil
        return [false, nil]
      when String
        unless mode.match?(/\A(%|-|>|<>){1,2}\z/)
          warn_invalid_trim_mode(mode, uplevel: 5)
        end

        perc = mode.include?('%')
        if mode.include?('-')
          return [perc, '-']
        elsif mode.include?('<>')
          return [perc, '<>']
        elsif mode.include?('>')
          return [perc, '>']
        else
          [perc, nil]
        end
      else
        warn_invalid_trim_mode(mode, uplevel: 5)
        return [false, nil]
      end
    end

    def make_scanner(src) # :nodoc:
      Scanner.make_scanner(src, @trim_mode, @percent)
    end

    # Construct a new compiler using the trim_mode. See ERB::new for available
    # trim modes.
    def initialize(trim_mode)
      @percent, @trim_mode = prepare_trim_mode(trim_mode)
      @put_cmd = 'print'
      @insert_cmd = @put_cmd
      @pre_cmd = []
      @post_cmd = []
    end
    attr_reader :percent, :trim_mode

    # The command to handle text that ends with a newline
    attr_accessor :put_cmd

    # The command to handle text that is inserted prior to a newline
    attr_accessor :insert_cmd

    # An array of commands prepended to compiled code
    attr_accessor :pre_cmd

    # An array of commands appended to compiled code
    attr_accessor :post_cmd

    private

    # A buffered text in #compile
    attr_accessor :content

    def detect_magic_comment(s, enc = nil)
      re = @percent ? /\G(?:<%#(.*)%>|%#(.*)\n)/ : /\G<%#(.*)%>/
      frozen = nil
      s.scan(re) do
        comment = $+
        comment = $1 if comment[/-\*-\s*(.*?)\s*-*-$/]
        case comment
        when %r"coding\s*[=:]\s*([[:alnum:]\-_]+)"
          enc = Encoding.find($1.sub(/-(?:mac|dos|unix)/i, ''))
        when %r"frozen[-_]string[-_]literal\s*:\s*([[:alnum:]]+)"
          frozen = $1
        end
      end
      return enc, frozen
    end

    def warn_invalid_trim_mode(mode, uplevel:)
      warn "Invalid ERB trim mode: #{mode.inspect} (trim_mode: nil, 0, 1, 2, or String composed of '%' and/or '-', '>', '<>')", uplevel: uplevel + 1
    end
  end
end

#--
# ERB
class ERB
  #
  # Constructs a new ERB object with the template specified in _str_.
  #
  # An ERB object works by building a chunk of Ruby code that will output
  # the completed template when run.
  #
  # If _trim_mode_ is passed a String containing one or more of the following
  # modifiers, ERB will adjust its code generation as listed:
  #
  #     %  enables Ruby code processing for lines beginning with %
  #     <> omit newline for lines starting with <% and ending in %>
  #     >  omit newline for lines ending in %>
  #     -  omit blank lines ending in -%>
  #
  # _eoutvar_ can be used to set the name of the variable ERB will build up
  # its output in.  This is useful when you need to run multiple ERB
  # templates through the same binding and/or when you want to control where
  # output ends up.  Pass the name of the variable to be used inside a String.
  #
  # === Example
  #
  #  require "erb"
  #
  #  # build data class
  #  class Listings
  #    PRODUCT = { :name => "Chicken Fried Steak",
  #                :desc => "A well messages pattie, breaded and fried.",
  #                :cost => 9.95 }
  #
  #    attr_reader :product, :price
  #
  #    def initialize( product = "", price = "" )
  #      @product = product
  #      @price = price
  #    end
  #
  #    def build
  #      b = binding
  #      # create and run templates, filling member data variables
  #      ERB.new(<<-'END_PRODUCT'.gsub(/^\s+/, ""), trim_mode: "", eoutvar: "@product").result b
  #        <%= PRODUCT[:name] %>
  #        <%= PRODUCT[:desc] %>
  #      END_PRODUCT
  #      ERB.new(<<-'END_PRICE'.gsub(/^\s+/, ""), trim_mode: "", eoutvar: "@price").result b
  #        <%= PRODUCT[:name] %> -- <%= PRODUCT[:cost] %>
  #        <%= PRODUCT[:desc] %>
  #      END_PRICE
  #    end
  #  end
  #
  #  # setup template data
  #  listings = Listings.new
  #  listings.build
  #
  #  puts listings.product + "\n" + listings.price
  #
  # _Generates_
  #
  #  Chicken Fried Steak
  #  A well messages pattie, breaded and fried.
  #
  #  Chicken Fried Steak -- 9.95
  #  A well messages pattie, breaded and fried.
  #
  def initialize(str, safe_level=NOT_GIVEN, legacy_trim_mode=NOT_GIVEN, legacy_eoutvar=NOT_GIVEN, trim_mode: nil, eoutvar: '_erbout')
    # Complex initializer for $SAFE deprecation at [Feature #14256]. Use keyword arguments to pass trim_mode or eoutvar.
    if safe_level != NOT_GIVEN
      warn 'Passing safe_level with the 2nd argument of ERB.new is deprecated. Do not use it, and specify other arguments as keyword arguments.', uplevel: 1 if $VERBOSE || !ZERO_SAFE_LEVELS.include?(safe_level)
    end
    if legacy_trim_mode != NOT_GIVEN
      warn 'Passing trim_mode with the 3rd argument of ERB.new is deprecated. Use keyword argument like ERB.new(str, trim_mode: ...) instead.', uplevel: 1 if $VERBOSE
      trim_mode = legacy_trim_mode
    end
    if legacy_eoutvar != NOT_GIVEN
      warn 'Passing eoutvar with the 4th argument of ERB.new is deprecated. Use keyword argument like ERB.new(str, eoutvar: ...) instead.', uplevel: 1 if $VERBOSE
      eoutvar = legacy_eoutvar
    end

    compiler = make_compiler(trim_mode)
    set_eoutvar(compiler, eoutvar)
    @src, @encoding, @frozen_string = *compiler.compile(str)
    @filename = nil
    @lineno = 0
    @_init = self.class.singleton_class
  end
  NOT_GIVEN = Object.new
  private_constant :NOT_GIVEN
  ZERO_SAFE_LEVELS = [0, nil]
  private_constant :ZERO_SAFE_LEVELS

  ##
  # Creates a new compiler for ERB.  See ERB::Compiler.new for details

  def make_compiler(trim_mode)
    ERB::Compiler.new(trim_mode)
  end

  # The Ruby code generated by ERB
  attr_reader :src

  # The encoding to eval
  attr_reader :encoding

  # The optional _filename_ argument passed to Kernel#eval when the ERB code
  # is run
  attr_accessor :filename

  # The optional _lineno_ argument passed to Kernel#eval when the ERB code
  # is run
  attr_accessor :lineno

  #
  # Sets optional filename and line number that will be used in ERB code
  # evaluation and error reporting. See also #filename= and #lineno=
  #
  #   erb = ERB.new('<%= some_x %>')
  #   erb.render
  #   # undefined local variable or method `some_x'
  #   #   from (erb):1
  #
  #   erb.location = ['file.erb', 3]
  #   # All subsequent error reporting would use new location
  #   erb.render
  #   # undefined local variable or method `some_x'
  #   #   from file.erb:4
  #
  def location=((filename, lineno))
    @filename = filename
    @lineno = lineno if lineno
  end

  #
  # Can be used to set _eoutvar_ as described in ERB::new.  It's probably
  # easier to just use the constructor though, since calling this method
  # requires the setup of an ERB _compiler_ object.
  #
  def set_eoutvar(compiler, eoutvar = '_erbout')
    compiler.put_cmd = "#{eoutvar}.<<"
    compiler.insert_cmd = "#{eoutvar}.<<"
    compiler.pre_cmd = ["#{eoutvar} = +''"]
    compiler.post_cmd = [eoutvar]
  end

  # Generate results and print them. (see ERB#result)
  def run(b=new_toplevel)
    print self.result(b)
  end

  #
  # Executes the generated ERB code to produce a completed template, returning
  # the results of that code.  (See ERB::new for details on how this process
  # can be affected by _safe_level_.)
  #
  # _b_ accepts a Binding object which is used to set the context of
  # code evaluation.
  #
  def result(b=new_toplevel)
    unless @_init.equal?(self.class.singleton_class)
      raise ArgumentError, "not initialized"
    end
    eval(@src, b, (@filename || '(erb)'), @lineno)
  end

  # Render a template on a new toplevel binding with local variables specified
  # by a Hash object.
  def result_with_hash(hash)
    b = new_toplevel(hash.keys)
    hash.each_pair do |key, value|
      b.local_variable_set(key, value)
    end
    result(b)
  end

  ##
  # Returns a new binding each time *near* TOPLEVEL_BINDING for runs that do
  # not specify a binding.

  def new_toplevel(vars = nil)
    b = TOPLEVEL_BINDING
    if vars
      vars = vars.select {|v| b.local_variable_defined?(v)}
      unless vars.empty?
        return b.eval("tap {|;#{vars.join(',')}| break binding}")
      end
    end
    b.dup
  end
  private :new_toplevel

  # Define _methodname_ as instance method of _mod_ from compiled Ruby source.
  #
  # example:
  #   filename = 'example.rhtml'   # 'arg1' and 'arg2' are used in example.rhtml
  #   erb = ERB.new(File.read(filename))
  #   erb.def_method(MyClass, 'render(arg1, arg2)', filename)
  #   print MyClass.new.render('foo', 123)
  def def_method(mod, methodname, fname='(ERB)')
    src = self.src.sub(/^(?!#|$)/) {"def #{methodname}\n"} << "\nend\n"
    mod.module_eval do
      eval(src, binding, fname, -1)
    end
  end

  # Create unnamed module, define _methodname_ as instance method of it, and return it.
  #
  # example:
  #   filename = 'example.rhtml'   # 'arg1' and 'arg2' are used in example.rhtml
  #   erb = ERB.new(File.read(filename))
  #   erb.filename = filename
  #   MyModule = erb.def_module('render(arg1, arg2)')
  #   class MyClass
  #     include MyModule
  #   end
  def def_module(methodname='erb')
    mod = Module.new
    def_method(mod, methodname, @filename || '(ERB)')
    mod
  end

  # Define unnamed class which has _methodname_ as instance method, and return it.
  #
  # example:
  #   class MyClass_
  #     def initialize(arg1, arg2)
  #       @arg1 = arg1;  @arg2 = arg2
  #     end
  #   end
  #   filename = 'example.rhtml'  # @arg1 and @arg2 are used in example.rhtml
  #   erb = ERB.new(File.read(filename))
  #   erb.filename = filename
  #   MyClass = erb.def_class(MyClass_, 'render()')
  #   print MyClass.new('foo', 123).render()
  def def_class(superklass=Object, methodname='result')
    cls = Class.new(superklass)
    def_method(cls, methodname, @filename || '(ERB)')
    cls
  end
end

#--
# ERB::Util
class ERB
  # A utility module for conversion routines, often handy in HTML generation.
  module Util
    public
    #
    # A utility method for escaping HTML tag characters in _s_.
    #
    #   require "erb"
    #   include ERB::Util
    #
    #   puts html_escape("is a > 0 & a < 10?")
    #
    # _Generates_
    #
    #   is a &gt; 0 &amp; a &lt; 10?
    #
    def html_escape(s)
      CGI.escapeHTML(s.to_s)
    end
    alias h html_escape
    module_function :h
    module_function :html_escape

    #
    # A utility method for encoding the String _s_ as a URL.
    #
    #   require "erb"
    #   include ERB::Util
    #
    #   puts url_encode("Programming Ruby:  The Pragmatic Programmer's Guide")
    #
    # _Generates_
    #
    #   Programming%20Ruby%3A%20%20The%20Pragmatic%20Programmer%27s%20Guide
    #
    def url_encode(s)
      s.to_s.b.gsub(/[^a-zA-Z0-9_\-.~]/n) { |m|
        sprintf("%%%02X", m.unpack1("C"))
      }
    end
    alias u url_encode
    module_function :u
    module_function :url_encode
  end
end

#--
# ERB::DefMethod
class ERB
  # Utility module to define eRuby script as instance method.
  #
  # === Example
  #
  # example.rhtml:
  #   <% for item in @items %>
  #   <b><%= item %></b>
  #   <% end %>
  #
  # example.rb:
  #   require 'erb'
  #   class MyClass
  #     extend ERB::DefMethod
  #     def_erb_method('render()', 'example.rhtml')
  #     def initialize(items)
  #       @items = items
  #     end
  #   end
  #   print MyClass.new([10,20,30]).render()
  #
  # result:
  #
  #   <b>10</b>
  #
  #   <b>20</b>
  #
  #   <b>30</b>
  #
  module DefMethod
    public
    # define _methodname_ as instance method of current module, using ERB
    # object or eRuby file
    def def_erb_method(methodname, erb_or_fname)
      if erb_or_fname.kind_of? String
        fname = erb_or_fname
        erb = ERB.new(File.read(fname))
        erb.def_method(self, methodname, fname)
      else
        erb = erb_or_fname
        erb.def_method(self, methodname, erb.filename || '(ERB)')
      end
    end
    module_function :def_erb_method
  end
end
PKEH[���NNshare/ruby/ipaddr.rbnu�[���# frozen_string_literal: true
#
# ipaddr.rb - A class to manipulate an IP address
#
# Copyright (c) 2002 Hajimu UMEMOTO <ume@mahoroba.org>.
# Copyright (c) 2007, 2009, 2012 Akinori MUSHA <knu@iDaemons.org>.
# All rights reserved.
#
# You can redistribute and/or modify it under the same terms as Ruby.
#
# $Id$
#
# Contact:
#   - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
# TODO:
#   - scope_id support
#
require 'socket'

# IPAddr provides a set of methods to manipulate an IP address.  Both IPv4 and
# IPv6 are supported.
#
# == Example
#
#   require 'ipaddr'
#
#   ipaddr1 = IPAddr.new "3ffe:505:2::1"
#
#   p ipaddr1                   #=> #<IPAddr: IPv6:3ffe:0505:0002:0000:0000:0000:0000:0001/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff>
#
#   p ipaddr1.to_s              #=> "3ffe:505:2::1"
#
#   ipaddr2 = ipaddr1.mask(48)  #=> #<IPAddr: IPv6:3ffe:0505:0002:0000:0000:0000:0000:0000/ffff:ffff:ffff:0000:0000:0000:0000:0000>
#
#   p ipaddr2.to_s              #=> "3ffe:505:2::"
#
#   ipaddr3 = IPAddr.new "192.168.2.0/24"
#
#   p ipaddr3                   #=> #<IPAddr: IPv4:192.168.2.0/255.255.255.0>

class IPAddr

  # 32 bit mask for IPv4
  IN4MASK = 0xffffffff
  # 128 bit mask for IPv6
  IN6MASK = 0xffffffffffffffffffffffffffffffff
  # Format string for IPv6
  IN6FORMAT = (["%.4x"] * 8).join(':')

  # Regexp _internally_ used for parsing IPv4 address.
  RE_IPV4ADDRLIKE = %r{
    \A
    (\d+) \. (\d+) \. (\d+) \. (\d+)
    \z
  }x

  # Regexp _internally_ used for parsing IPv6 address.
  RE_IPV6ADDRLIKE_FULL = %r{
    \A
    (?:
      (?: [\da-f]{1,4} : ){7} [\da-f]{1,4}
    |
      ( (?: [\da-f]{1,4} : ){6} )
      (\d+) \. (\d+) \. (\d+) \. (\d+)
    )
    \z
  }xi

  # Regexp _internally_ used for parsing IPv6 address.
  RE_IPV6ADDRLIKE_COMPRESSED = %r{
    \A
    ( (?: (?: [\da-f]{1,4} : )* [\da-f]{1,4} )? )
    ::
    ( (?:
      ( (?: [\da-f]{1,4} : )* )
      (?:
        [\da-f]{1,4}
      |
        (\d+) \. (\d+) \. (\d+) \. (\d+)
      )
    )? )
    \z
  }xi

  # Generic IPAddr related error. Exceptions raised in this class should
  # inherit from Error.
  class Error < ArgumentError; end

  # Raised when the provided IP address is an invalid address.
  class InvalidAddressError < Error; end

  # Raised when the address family is invalid such as an address with an
  # unsupported family, an address with an inconsistent family, or an address
  # who's family cannot be determined.
  class AddressFamilyError < Error; end

  # Raised when the address is an invalid length.
  class InvalidPrefixError < InvalidAddressError; end

  # Returns the address family of this IP address.
  attr_reader :family

  # Creates a new ipaddr containing the given network byte ordered
  # string form of an IP address.
  def self.new_ntoh(addr)
    return new(ntop(addr))
  end

  # Convert a network byte ordered string form of an IP address into
  # human readable form.
  def self.ntop(addr)
    case addr.size
    when 4
      s = addr.unpack('C4').join('.')
    when 16
      s = IN6FORMAT % addr.unpack('n8')
    else
      raise AddressFamilyError, "unsupported address family"
    end
    return s
  end

  # Returns a new ipaddr built by bitwise AND.
  def &(other)
    return self.clone.set(@addr & coerce_other(other).to_i)
  end

  # Returns a new ipaddr built by bitwise OR.
  def |(other)
    return self.clone.set(@addr | coerce_other(other).to_i)
  end

  # Returns a new ipaddr built by bitwise right-shift.
  def >>(num)
    return self.clone.set(@addr >> num)
  end

  # Returns a new ipaddr built by bitwise left shift.
  def <<(num)
    return self.clone.set(addr_mask(@addr << num))
  end

  # Returns a new ipaddr built by bitwise negation.
  def ~
    return self.clone.set(addr_mask(~@addr))
  end

  # Returns true if two ipaddrs are equal.
  def ==(other)
    other = coerce_other(other)
  rescue
    false
  else
    @family == other.family && @addr == other.to_i
  end

  # Returns a new ipaddr built by masking IP address with the given
  # prefixlen/netmask. (e.g. 8, 64, "255.255.255.0", etc.)
  def mask(prefixlen)
    return self.clone.mask!(prefixlen)
  end

  # Returns true if the given ipaddr is in the range.
  #
  # e.g.:
  #   require 'ipaddr'
  #   net1 = IPAddr.new("192.168.2.0/24")
  #   net2 = IPAddr.new("192.168.2.100")
  #   net3 = IPAddr.new("192.168.3.0")
  #   p net1.include?(net2)     #=> true
  #   p net1.include?(net3)     #=> false
  def include?(other)
    other = coerce_other(other)
    if ipv4_mapped?
      if (@mask_addr >> 32) != 0xffffffffffffffffffffffff
        return false
      end
      mask_addr = (@mask_addr & IN4MASK)
      addr = (@addr & IN4MASK)
      family = Socket::AF_INET
    else
      mask_addr = @mask_addr
      addr = @addr
      family = @family
    end
    if other.ipv4_mapped?
      other_addr = (other.to_i & IN4MASK)
      other_family = Socket::AF_INET
    else
      other_addr = other.to_i
      other_family = other.family
    end

    if family != other_family
      return false
    end
    return ((addr & mask_addr) == (other_addr & mask_addr))
  end
  alias === include?

  # Returns the integer representation of the ipaddr.
  def to_i
    return @addr
  end

  # Returns a string containing the IP address representation.
  def to_s
    str = to_string
    return str if ipv4?

    str.gsub!(/\b0{1,3}([\da-f]+)\b/i, '\1')
    loop do
      break if str.sub!(/\A0:0:0:0:0:0:0:0\z/, '::')
      break if str.sub!(/\b0:0:0:0:0:0:0\b/, ':')
      break if str.sub!(/\b0:0:0:0:0:0\b/, ':')
      break if str.sub!(/\b0:0:0:0:0\b/, ':')
      break if str.sub!(/\b0:0:0:0\b/, ':')
      break if str.sub!(/\b0:0:0\b/, ':')
      break if str.sub!(/\b0:0\b/, ':')
      break
    end
    str.sub!(/:{3,}/, '::')

    if /\A::(ffff:)?([\da-f]{1,4}):([\da-f]{1,4})\z/i =~ str
      str = sprintf('::%s%d.%d.%d.%d', $1, $2.hex / 256, $2.hex % 256, $3.hex / 256, $3.hex % 256)
    end

    str
  end

  # Returns a string containing the IP address representation in
  # canonical form.
  def to_string
    return _to_string(@addr)
  end

  # Returns a network byte ordered string form of the IP address.
  def hton
    case @family
    when Socket::AF_INET
      return [@addr].pack('N')
    when Socket::AF_INET6
      return (0..7).map { |i|
        (@addr >> (112 - 16 * i)) & 0xffff
      }.pack('n8')
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  # Returns true if the ipaddr is an IPv4 address.
  def ipv4?
    return @family == Socket::AF_INET
  end

  # Returns true if the ipaddr is an IPv6 address.
  def ipv6?
    return @family == Socket::AF_INET6
  end

  # Returns true if the ipaddr is a loopback address.
  def loopback?
    case @family
    when Socket::AF_INET
      @addr & 0xff000000 == 0x7f000000
    when Socket::AF_INET6
      @addr == 1
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  # Returns true if the ipaddr is a private address.  IPv4 addresses
  # in 10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16 as defined in RFC
  # 1918 and IPv6 Unique Local Addresses in fc00::/7 as defined in RFC
  # 4193 are considered private.
  def private?
    case @family
    when Socket::AF_INET
      @addr & 0xff000000 == 0x0a000000 ||    # 10.0.0.0/8
        @addr & 0xfff00000 == 0xac100000 ||  # 172.16.0.0/12
        @addr & 0xffff0000 == 0xc0a80000     # 192.168.0.0/16
    when Socket::AF_INET6
      @addr & 0xfe00_0000_0000_0000_0000_0000_0000_0000 == 0xfc00_0000_0000_0000_0000_0000_0000_0000
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  # Returns true if the ipaddr is a link-local address.  IPv4
  # addresses in 169.254.0.0/16 reserved by RFC 3927 and Link-Local
  # IPv6 Unicast Addresses in fe80::/10 reserved by RFC 4291 are
  # considered link-local.
  def link_local?
    case @family
    when Socket::AF_INET
      @addr & 0xffff0000 == 0xa9fe0000 # 169.254.0.0/16
    when Socket::AF_INET6
      @addr & 0xffc0_0000_0000_0000_0000_0000_0000_0000 == 0xfe80_0000_0000_0000_0000_0000_0000_0000
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  # Returns true if the ipaddr is an IPv4-mapped IPv6 address.
  def ipv4_mapped?
    return ipv6? && (@addr >> 32) == 0xffff
  end

  # Returns true if the ipaddr is an IPv4-compatible IPv6 address.
  def ipv4_compat?
    warn "IPAddr\##{__callee__} is obsolete", uplevel: 1 if $VERBOSE
    _ipv4_compat?
  end

  def _ipv4_compat?
    if !ipv6? || (@addr >> 32) != 0
      return false
    end
    a = (@addr & IN4MASK)
    return a != 0 && a != 1
  end

  private :_ipv4_compat?

  # Returns a new ipaddr built by converting the native IPv4 address
  # into an IPv4-mapped IPv6 address.
  def ipv4_mapped
    if !ipv4?
      raise InvalidAddressError, "not an IPv4 address"
    end
    return self.clone.set(@addr | 0xffff00000000, Socket::AF_INET6)
  end

  # Returns a new ipaddr built by converting the native IPv4 address
  # into an IPv4-compatible IPv6 address.
  def ipv4_compat
    warn "IPAddr\##{__callee__} is obsolete", uplevel: 1 if $VERBOSE
    if !ipv4?
      raise InvalidAddressError, "not an IPv4 address"
    end
    return self.clone.set(@addr, Socket::AF_INET6)
  end

  # Returns a new ipaddr built by converting the IPv6 address into a
  # native IPv4 address.  If the IP address is not an IPv4-mapped or
  # IPv4-compatible IPv6 address, returns self.
  def native
    if !ipv4_mapped? && !_ipv4_compat?
      return self
    end
    return self.clone.set(@addr & IN4MASK, Socket::AF_INET)
  end

  # Returns a string for DNS reverse lookup.  It returns a string in
  # RFC3172 form for an IPv6 address.
  def reverse
    case @family
    when Socket::AF_INET
      return _reverse + ".in-addr.arpa"
    when Socket::AF_INET6
      return ip6_arpa
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  # Returns a string for DNS reverse lookup compatible with RFC3172.
  def ip6_arpa
    if !ipv6?
      raise InvalidAddressError, "not an IPv6 address"
    end
    return _reverse + ".ip6.arpa"
  end

  # Returns a string for DNS reverse lookup compatible with RFC1886.
  def ip6_int
    if !ipv6?
      raise InvalidAddressError, "not an IPv6 address"
    end
    return _reverse + ".ip6.int"
  end

  # Returns the successor to the ipaddr.
  def succ
    return self.clone.set(@addr + 1, @family)
  end

  # Compares the ipaddr with another.
  def <=>(other)
    other = coerce_other(other)
  rescue
    nil
  else
    @addr <=> other.to_i if other.family == @family
  end
  include Comparable

  # Checks equality used by Hash.
  def eql?(other)
    return self.class == other.class && self.hash == other.hash && self == other
  end

  # Returns a hash value used by Hash, Set, and Array classes
  def hash
    return ([@addr, @mask_addr].hash << 1) | (ipv4? ? 0 : 1)
  end

  # Creates a Range object for the network address.
  def to_range
    begin_addr = (@addr & @mask_addr)

    case @family
    when Socket::AF_INET
      end_addr = (@addr | (IN4MASK ^ @mask_addr))
    when Socket::AF_INET6
      end_addr = (@addr | (IN6MASK ^ @mask_addr))
    else
      raise AddressFamilyError, "unsupported address family"
    end

    return clone.set(begin_addr, @family)..clone.set(end_addr, @family)
  end

  # Returns the prefix length in bits for the ipaddr.
  def prefix
    case @family
    when Socket::AF_INET
      n = IN4MASK ^ @mask_addr
      i = 32
    when Socket::AF_INET6
      n = IN6MASK ^ @mask_addr
      i = 128
    else
      raise AddressFamilyError, "unsupported address family"
    end
    while n.positive?
      n >>= 1
      i -= 1
    end
    i
  end

  # Sets the prefix length in bits
  def prefix=(prefix)
    case prefix
    when Integer
      mask!(prefix)
    else
      raise InvalidPrefixError, "prefix must be an integer"
    end
  end

  # Returns a string containing a human-readable representation of the
  # ipaddr. ("#<IPAddr: family:address/mask>")
  def inspect
    case @family
    when Socket::AF_INET
      af = "IPv4"
    when Socket::AF_INET6
      af = "IPv6"
    else
      raise AddressFamilyError, "unsupported address family"
    end
    return sprintf("#<%s: %s:%s/%s>", self.class.name,
                   af, _to_string(@addr), _to_string(@mask_addr))
  end

  protected

  # Set +@addr+, the internal stored ip address, to given +addr+. The
  # parameter +addr+ is validated using the first +family+ member,
  # which is +Socket::AF_INET+ or +Socket::AF_INET6+.
  def set(addr, *family)
    case family[0] ? family[0] : @family
    when Socket::AF_INET
      if addr < 0 || addr > IN4MASK
        raise InvalidAddressError, "invalid address"
      end
    when Socket::AF_INET6
      if addr < 0 || addr > IN6MASK
        raise InvalidAddressError, "invalid address"
      end
    else
      raise AddressFamilyError, "unsupported address family"
    end
    @addr = addr
    if family[0]
      @family = family[0]
    end
    return self
  end

  # Set current netmask to given mask.
  def mask!(mask)
    case mask
    when String
      if mask =~ /\A\d+\z/
        prefixlen = mask.to_i
      else
        m = IPAddr.new(mask)
        if m.family != @family
          raise InvalidPrefixError, "address family is not same"
        end
        @mask_addr = m.to_i
        n = @mask_addr ^ m.instance_variable_get(:@mask_addr)
        unless ((n + 1) & n).zero?
          raise InvalidPrefixError, "invalid mask #{mask}"
        end
        @addr &= @mask_addr
        return self
      end
    else
      prefixlen = mask
    end
    case @family
    when Socket::AF_INET
      if prefixlen < 0 || prefixlen > 32
        raise InvalidPrefixError, "invalid length"
      end
      masklen = 32 - prefixlen
      @mask_addr = ((IN4MASK >> masklen) << masklen)
    when Socket::AF_INET6
      if prefixlen < 0 || prefixlen > 128
        raise InvalidPrefixError, "invalid length"
      end
      masklen = 128 - prefixlen
      @mask_addr = ((IN6MASK >> masklen) << masklen)
    else
      raise AddressFamilyError, "unsupported address family"
    end
    @addr = ((@addr >> masklen) << masklen)
    return self
  end

  private

  # Creates a new ipaddr object either from a human readable IP
  # address representation in string, or from a packed in_addr value
  # followed by an address family.
  #
  # In the former case, the following are the valid formats that will
  # be recognized: "address", "address/prefixlen" and "address/mask",
  # where IPv6 address may be enclosed in square brackets (`[' and
  # `]').  If a prefixlen or a mask is specified, it returns a masked
  # IP address.  Although the address family is determined
  # automatically from a specified string, you can specify one
  # explicitly by the optional second argument.
  #
  # Otherwise an IP address is generated from a packed in_addr value
  # and an address family.
  #
  # The IPAddr class defines many methods and operators, and some of
  # those, such as &, |, include? and ==, accept a string, or a packed
  # in_addr value instead of an IPAddr object.
  def initialize(addr = '::', family = Socket::AF_UNSPEC)
    if !addr.kind_of?(String)
      case family
      when Socket::AF_INET, Socket::AF_INET6
        set(addr.to_i, family)
        @mask_addr = (family == Socket::AF_INET) ? IN4MASK : IN6MASK
        return
      when Socket::AF_UNSPEC
        raise AddressFamilyError, "address family must be specified"
      else
        raise AddressFamilyError, "unsupported address family: #{family}"
      end
    end
    prefix, prefixlen = addr.split('/')
    if prefix =~ /\A\[(.*)\]\z/i
      prefix = $1
      family = Socket::AF_INET6
    end
    # It seems AI_NUMERICHOST doesn't do the job.
    #Socket.getaddrinfo(left, nil, Socket::AF_INET6, Socket::SOCK_STREAM, nil,
    #                  Socket::AI_NUMERICHOST)
    @addr = @family = nil
    if family == Socket::AF_UNSPEC || family == Socket::AF_INET
      @addr = in_addr(prefix)
      if @addr
        @family = Socket::AF_INET
      end
    end
    if !@addr && (family == Socket::AF_UNSPEC || family == Socket::AF_INET6)
      @addr = in6_addr(prefix)
      @family = Socket::AF_INET6
    end
    if family != Socket::AF_UNSPEC && @family != family
      raise AddressFamilyError, "address family mismatch"
    end
    if prefixlen
      mask!(prefixlen)
    else
      @mask_addr = (@family == Socket::AF_INET) ? IN4MASK : IN6MASK
    end
  rescue InvalidAddressError => e
    raise e.class, "#{e.message}: #{addr}"
  end

  def coerce_other(other)
    case other
    when IPAddr
      other
    when String
      self.class.new(other)
    else
      self.class.new(other, @family)
    end
  end

  def in_addr(addr)
    case addr
    when Array
      octets = addr
    else
      m = RE_IPV4ADDRLIKE.match(addr) or return nil
      octets = m.captures
    end
    octets.inject(0) { |i, s|
      (n = s.to_i) < 256 or raise InvalidAddressError, "invalid address"
      s.match(/\A0./) and raise InvalidAddressError, "zero-filled number in IPv4 address is ambiguous"
      i << 8 | n
    }
  end

  def in6_addr(left)
    case left
    when RE_IPV6ADDRLIKE_FULL
      if $2
        addr = in_addr($~[2,4])
        left = $1 + ':'
      else
        addr = 0
      end
      right = ''
    when RE_IPV6ADDRLIKE_COMPRESSED
      if $4
        left.count(':') <= 6 or raise InvalidAddressError, "invalid address"
        addr = in_addr($~[4,4])
        left = $1
        right = $3 + '0:0'
      else
        left.count(':') <= ($1.empty? || $2.empty? ? 8 : 7) or
          raise InvalidAddressError, "invalid address"
        left = $1
        right = $2
        addr = 0
      end
    else
      raise InvalidAddressError, "invalid address"
    end
    l = left.split(':')
    r = right.split(':')
    rest = 8 - l.size - r.size
    if rest < 0
      return nil
    end
    (l + Array.new(rest, '0') + r).inject(0) { |i, s|
      i << 16 | s.hex
    } | addr
  end

  def addr_mask(addr)
    case @family
    when Socket::AF_INET
      return addr & IN4MASK
    when Socket::AF_INET6
      return addr & IN6MASK
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  def _reverse
    case @family
    when Socket::AF_INET
      return (0..3).map { |i|
        (@addr >> (8 * i)) & 0xff
      }.join('.')
    when Socket::AF_INET6
      return ("%.32x" % @addr).reverse!.gsub!(/.(?!$)/, '\&.')
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

  def _to_string(addr)
    case @family
    when Socket::AF_INET
      return (0..3).map { |i|
        (addr >> (24 - 8 * i)) & 0xff
      }.join('.')
    when Socket::AF_INET6
      return (("%.32x" % addr).gsub!(/.{4}(?!$)/, '\&:'))
    else
      raise AddressFamilyError, "unsupported address family"
    end
  end

end

unless Socket.const_defined? :AF_INET6
  class Socket < BasicSocket
    # IPv6 protocol family
    AF_INET6 = Object.new
  end

  class << IPSocket
    private

    def valid_v6?(addr)
      case addr
      when IPAddr::RE_IPV6ADDRLIKE_FULL
        if $2
          $~[2,4].all? {|i| i.to_i < 256 }
        else
          true
        end
      when IPAddr::RE_IPV6ADDRLIKE_COMPRESSED
        if $4
          addr.count(':') <= 6 && $~[4,4].all? {|i| i.to_i < 256}
        else
          addr.count(':') <= 7
        end
      else
        false
      end
    end

    alias getaddress_orig getaddress

    public

    # Returns a +String+ based representation of a valid DNS hostname,
    # IPv4 or IPv6 address.
    #
    #   IPSocket.getaddress 'localhost'         #=> "::1"
    #   IPSocket.getaddress 'broadcasthost'     #=> "255.255.255.255"
    #   IPSocket.getaddress 'www.ruby-lang.org' #=> "221.186.184.68"
    #   IPSocket.getaddress 'www.ccc.de'        #=> "2a00:1328:e102:ccc0::122"
    def getaddress(s)
      if valid_v6?(s)
        s
      else
        getaddress_orig(s)
      end
    end
  end
end
PKEH[�eB�Y�Yshare/ruby/mkmf.rbnu�[���# -*- coding: us-ascii -*-
# frozen-string-literal: false
# module to create Makefile for extension modules
# invoke like: ruby -r mkmf extconf.rb

require 'rbconfig'
require 'fileutils'
require 'shellwords'

class String
  # :stopdoc:

  # Wraps a string in escaped quotes if it contains whitespace.
  def quote
    /\s/ =~ self ? "\"#{self}\"" : "#{self}"
  end

  # Escape whitespaces for Makefile.
  def unspace
    gsub(/\s/, '\\\\\\&')
  end

  # Generates a string used as cpp macro name.
  def tr_cpp
    strip.upcase.tr_s("^A-Z0-9_*", "_").tr_s("*", "P")
  end

  def funcall_style
    /\)\z/ =~ self ? dup : "#{self}()"
  end

  def sans_arguments
    self[/\A[^()]+/]
  end

  # :startdoc:
end

class Array
  # :stopdoc:

  # Wraps all strings in escaped quotes if they contain whitespace.
  def quote
    map {|s| s.quote}
  end

  # :startdoc:
end

##
# mkmf.rb is used by Ruby C extensions to generate a Makefile which will
# correctly compile and link the C extension to Ruby and a third-party
# library.
module MakeMakefile
  #### defer until this module become global-state free.
  # def self.extended(obj)
  #   obj.init_mkmf
  #   super
  # end
  #
  # def initialize(*args, rbconfig: RbConfig, **rest)
  #   init_mkmf(rbconfig::MAKEFILE_CONFIG, rbconfig::CONFIG)
  #   super(*args, **rest)
  # end

  ##
  # The makefile configuration using the defaults from when Ruby was built.

  CONFIG = RbConfig::MAKEFILE_CONFIG
  ORIG_LIBPATH = ENV['LIB']

  ##
  # Extensions for files compiled with a C compiler

  C_EXT = %w[c m]

  ##
  # Extensions for files complied with a C++ compiler

  CXX_EXT = %w[cc mm cxx cpp]
  unless File.exist?(File.join(*File.split(__FILE__).tap {|d, b| b.swapcase}))
    CXX_EXT.concat(%w[C])
  end

  ##
  # Extensions for source files

  SRC_EXT = C_EXT + CXX_EXT

  ##
  # Extensions for header files

  HDR_EXT = %w[h hpp]
  $static = nil
  $config_h = '$(arch_hdrdir)/ruby/config.h'
  $default_static = $static

  unless defined? $configure_args
    $configure_args = {}
    args = CONFIG["configure_args"]
    if ENV["CONFIGURE_ARGS"]
      args << " " << ENV["CONFIGURE_ARGS"]
    end
    for arg in Shellwords::shellwords(args)
      arg, val = arg.split('=', 2)
      next unless arg
      arg.tr!('_', '-')
      if arg.sub!(/^(?!--)/, '--')
        val or next
        arg.downcase!
      end
      next if /^--(?:top|topsrc|src|cur)dir$/ =~ arg
      $configure_args[arg] = val || true
    end
    for arg in ARGV
      arg, val = arg.split('=', 2)
      next unless arg
      arg.tr!('_', '-')
      if arg.sub!(/^(?!--)/, '--')
        val or next
        arg.downcase!
      end
      $configure_args[arg] = val || true
    end
  end

  $libdir = CONFIG["libdir"]
  $rubylibdir = CONFIG["rubylibdir"]
  $archdir = CONFIG["archdir"]
  $sitedir = CONFIG["sitedir"]
  $sitelibdir = CONFIG["sitelibdir"]
  $sitearchdir = CONFIG["sitearchdir"]
  $vendordir = CONFIG["vendordir"]
  $vendorlibdir = CONFIG["vendorlibdir"]
  $vendorarchdir = CONFIG["vendorarchdir"]

  $mswin = /mswin/ =~ RUBY_PLATFORM
  $mingw = /mingw/ =~ RUBY_PLATFORM
  $cygwin = /cygwin/ =~ RUBY_PLATFORM
  $netbsd = /netbsd/ =~ RUBY_PLATFORM
  $haiku = /haiku/ =~ RUBY_PLATFORM
  $solaris = /solaris/ =~ RUBY_PLATFORM
  $universal = /universal/ =~ RUBY_PLATFORM
  $dest_prefix_pattern = (File::PATH_SEPARATOR == ';' ? /\A([[:alpha:]]:)?/ : /\A/)

  # :stopdoc:

  def config_string(key, config = CONFIG)
    s = config[key] and !s.empty? and block_given? ? yield(s) : s
  end
  module_function :config_string

  def dir_re(dir)
    Regexp.new('\$(?:\('+dir+'\)|\{'+dir+'\})(?:\$(?:\(target_prefix\)|\{target_prefix\}))?')
  end
  module_function :dir_re

  def relative_from(path, base)
    dir = File.join(path, "")
    if File.expand_path(dir) == File.expand_path(dir, base)
      path
    else
      File.join(base, path)
    end
  end

  INSTALL_DIRS = [
    [dir_re('commondir'), "$(RUBYCOMMONDIR)"],
    [dir_re('sitedir'), "$(RUBYCOMMONDIR)"],
    [dir_re('vendordir'), "$(RUBYCOMMONDIR)"],
    [dir_re('rubylibdir'), "$(RUBYLIBDIR)"],
    [dir_re('archdir'), "$(RUBYARCHDIR)"],
    [dir_re('sitelibdir'), "$(RUBYLIBDIR)"],
    [dir_re('vendorlibdir'), "$(RUBYLIBDIR)"],
    [dir_re('sitearchdir'), "$(RUBYARCHDIR)"],
    [dir_re('vendorarchdir'), "$(RUBYARCHDIR)"],
    [dir_re('rubyhdrdir'), "$(RUBYHDRDIR)"],
    [dir_re('sitehdrdir'), "$(SITEHDRDIR)"],
    [dir_re('vendorhdrdir'), "$(VENDORHDRDIR)"],
    [dir_re('bindir'), "$(BINDIR)"],
  ]

  def install_dirs(target_prefix = nil)
    if $extout and $extmk
      dirs = [
        ['BINDIR',        '$(extout)/bin'],
        ['RUBYCOMMONDIR', '$(extout)/common'],
        ['RUBYLIBDIR',    '$(RUBYCOMMONDIR)$(target_prefix)'],
        ['RUBYARCHDIR',   '$(extout)/$(arch)$(target_prefix)'],
        ['HDRDIR',        '$(extout)/include/ruby$(target_prefix)'],
        ['ARCHHDRDIR',    '$(extout)/include/$(arch)/ruby$(target_prefix)'],
        ['extout',        "#$extout"],
        ['extout_prefix', "#$extout_prefix"],
      ]
    elsif $extmk
      dirs = [
        ['BINDIR',        '$(bindir)'],
        ['RUBYCOMMONDIR', '$(rubylibdir)'],
        ['RUBYLIBDIR',    '$(rubylibdir)$(target_prefix)'],
        ['RUBYARCHDIR',   '$(archdir)$(target_prefix)'],
        ['HDRDIR',        '$(rubyhdrdir)/ruby$(target_prefix)'],
        ['ARCHHDRDIR',    '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
      ]
    elsif $configure_args.has_key?('--vendor')
      dirs = [
        ['BINDIR',        '$(bindir)'],
        ['RUBYCOMMONDIR', '$(vendordir)$(target_prefix)'],
        ['RUBYLIBDIR',    '$(vendorlibdir)$(target_prefix)'],
        ['RUBYARCHDIR',   '$(vendorarchdir)$(target_prefix)'],
        ['HDRDIR',        '$(rubyhdrdir)/ruby$(target_prefix)'],
        ['ARCHHDRDIR',    '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
      ]
    else
      dirs = [
        ['BINDIR',        '$(bindir)'],
        ['RUBYCOMMONDIR', '$(sitedir)$(target_prefix)'],
        ['RUBYLIBDIR',    '$(sitelibdir)$(target_prefix)'],
        ['RUBYARCHDIR',   '$(sitearchdir)$(target_prefix)'],
        ['HDRDIR',        '$(rubyhdrdir)/ruby$(target_prefix)'],
        ['ARCHHDRDIR',    '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
      ]
    end
    dirs << ['target_prefix', (target_prefix ? "/#{target_prefix}" : "")]
    dirs
  end

  def map_dir(dir, map = nil)
    map ||= INSTALL_DIRS
    map.inject(dir) {|d, (orig, new)| d.gsub(orig, new)}
  end

  topdir = File.dirname(File.dirname(__FILE__))
  path = File.expand_path($0)
  until (dir = File.dirname(path)) == path
    if File.identical?(dir, topdir)
      $extmk = true if %r"\A(?:ext|enc|tool|test)\z" =~ File.basename(path)
      break
    end
    path = dir
  end
  $extmk ||= false
  if not $extmk and File.exist?(($hdrdir = RbConfig::CONFIG["rubyhdrdir"]) + "/ruby/ruby.h")
    $topdir = $hdrdir
    $top_srcdir = $hdrdir
    $arch_hdrdir = RbConfig::CONFIG["rubyarchhdrdir"]
  elsif File.exist?(($hdrdir = ($top_srcdir ||= topdir) + "/include")  + "/ruby.h")
    $topdir ||= RbConfig::CONFIG["topdir"]
    $arch_hdrdir = "$(extout)/include/$(arch)"
  else
    abort <<MESSAGE
mkmf.rb can't find header files for ruby at #{$hdrdir}/ruby.h

You might have to install separate package for the ruby development
environment, ruby-dev or ruby-devel for example.
MESSAGE
  end

  CONFTEST = "conftest".freeze
  CONFTEST_C = "#{CONFTEST}.c"

  OUTFLAG = CONFIG['OUTFLAG']
  COUTFLAG = CONFIG['COUTFLAG']
  CSRCFLAG = CONFIG['CSRCFLAG']
  CPPOUTFILE = config_string('CPPOUTFILE') {|str| str.sub(/\bconftest\b/, CONFTEST)}

  def rm_f(*files)
    opt = (Hash === files.last ? [files.pop] : [])
    FileUtils.rm_f(Dir[*files.flatten], *opt)
  end
  module_function :rm_f

  def rm_rf(*files)
    opt = (Hash === files.last ? [files.pop] : [])
    FileUtils.rm_rf(Dir[*files.flatten], *opt)
  end
  module_function :rm_rf

  # Returns time stamp of the +target+ file if it exists and is newer than or
  # equal to all of +times+.
  def modified?(target, times)
    (t = File.mtime(target)) rescue return nil
    Array === times or times = [times]
    t if times.all? {|n| n <= t}
  end

  def split_libs(*strs)
    strs.map {|s| s.split(/\s+(?=-|\z)/)}.flatten
  end

  def merge_libs(*libs)
    libs.inject([]) do |x, y|
      y = y.inject([]) {|ary, e| ary.last == e ? ary : ary << e}
      y.each_with_index do |v, yi|
        if xi = x.rindex(v)
          x[(xi+1)..-1] = merge_libs(y[(yi+1)..-1], x[(xi+1)..-1])
          x[xi, 0] = y[0...yi]
          break
        end
      end and x.concat(y)
      x
    end
  end

  # This is a custom logging module. It generates an mkmf.log file when you
  # run your extconf.rb script. This can be useful for debugging unexpected
  # failures.
  #
  # This module and its associated methods are meant for internal use only.
  #
  module Logging
    @log = nil
    @logfile = 'mkmf.log'
    @orgerr = $stderr.dup
    @orgout = $stdout.dup
    @postpone = 0
    @quiet = $extmk

    def self::log_open
      @log ||= File::open(@logfile, 'wb')
      @log.sync = true
    end

    def self::log_opened?
      @log and not @log.closed?
    end

    def self::open
      log_open
      $stderr.reopen(@log)
      $stdout.reopen(@log)
      yield
    ensure
      $stderr.reopen(@orgerr)
      $stdout.reopen(@orgout)
    end

    def self::message(*s)
      log_open
      @log.printf(*s)
    end

    def self::logfile file
      @logfile = file
      log_close
    end

    def self::log_close
      if @log and not @log.closed?
        @log.flush
        @log.close
        @log = nil
      end
    end

    def self::postpone
      tmplog = "mkmftmp#{@postpone += 1}.log"
      open do
        log, *save = @log, @logfile, @orgout, @orgerr
        @log, @logfile, @orgout, @orgerr = nil, tmplog, log, log
        begin
          log.print(open {yield @log})
        ensure
          @log.close if @log and not @log.closed?
          File::open(tmplog) {|t| FileUtils.copy_stream(t, log)} if File.exist?(tmplog)
          @log, @logfile, @orgout, @orgerr = log, *save
          @postpone -= 1
          MakeMakefile.rm_f tmplog
        end
      end
    end

    class << self
      attr_accessor :quiet
    end
  end

  def libpath_env
    # used only if native compiling
    if libpathenv = config_string("LIBPATHENV")
      pathenv = ENV[libpathenv]
      libpath = RbConfig.expand($DEFLIBPATH.join(File::PATH_SEPARATOR))
      {libpathenv => [libpath, pathenv].compact.join(File::PATH_SEPARATOR)}
    else
      {}
    end
  end

  def xsystem command, opts = nil
    varpat = /\$\((\w+)\)|\$\{(\w+)\}/
    if varpat =~ command
      vars = Hash.new {|h, k| h[k] = ENV[k]}
      command = command.dup
      nil while command.gsub!(varpat) {vars[$1||$2]}
    end
    Logging::open do
      puts command.quote
      if opts and opts[:werror]
        result = nil
        Logging.postpone do |log|
          output = IO.popen(libpath_env, command, &:read)
          result = ($?.success? and File.zero?(log.path))
          output
        end
        result
      else
        system(libpath_env, command)
      end
    end
  end

  def xpopen command, *mode, &block
    Logging::open do
      case mode[0]
      when nil, /^r/
        puts "#{command} |"
      else
        puts "| #{command}"
      end
      IO.popen(libpath_env, command, *mode, &block)
    end
  end

  def log_src(src, heading="checked program was")
    src = src.split(/^/)
    fmt = "%#{src.size.to_s.size}d: %s"
    Logging::message <<"EOM"
#{heading}:
/* begin */
EOM
    src.each_with_index {|line, no| Logging::message fmt, no+1, line}
    Logging::message <<"EOM"
/* end */

EOM
  end

  def conftest_source
    CONFTEST_C
  end

  def create_tmpsrc(src)
    src = "#{COMMON_HEADERS}\n#{src}"
    src = yield(src) if block_given?
    src.gsub!(/[ \t]+$/, '')
    src.gsub!(/\A\n+|^\n+$/, '')
    src.sub!(/[^\n]\z/, "\\&\n")
    count = 0
    begin
      open(conftest_source, "wb") do |cfile|
        cfile.print src
      end
    rescue Errno::EACCES
      if (count += 1) < 5
        sleep 0.2
        retry
      end
    end
    src
  end

  def have_devel?
    unless defined? $have_devel
      $have_devel = true
      $have_devel = try_link(MAIN_DOES_NOTHING)
    end
    $have_devel
  end

  def try_do(src, command, *opts, &b)
    unless have_devel?
      raise <<MSG
The compiler failed to generate an executable file.
You have to install development tools first.
MSG
    end
    begin
      src = create_tmpsrc(src, &b)
      xsystem(command, *opts)
    ensure
      log_src(src)
    end
  end

  def link_config(ldflags, opt="", libpath=$DEFLIBPATH|$LIBPATH)
    librubyarg = $extmk ? $LIBRUBYARG_STATIC : "$(LIBRUBYARG)"
    conf = RbConfig::CONFIG.merge('hdrdir' => $hdrdir.quote,
                                  'src' => "#{conftest_source}",
                                  'arch_hdrdir' => $arch_hdrdir.quote,
                                  'top_srcdir' => $top_srcdir.quote,
                                  'INCFLAGS' => "#$INCFLAGS",
                                  'CPPFLAGS' => "#$CPPFLAGS",
                                  'CFLAGS' => "#$CFLAGS",
                                  'ARCH_FLAG' => "#$ARCH_FLAG",
                                  'LDFLAGS' => "#$LDFLAGS #{ldflags}",
                                  'LOCAL_LIBS' => "#$LOCAL_LIBS #$libs",
                                  'LIBS' => "#{librubyarg} #{opt} #$LIBS")
    conf['LIBPATH'] = libpathflag(libpath.map {|s| RbConfig::expand(s.dup, conf)})
    conf
  end

  def link_command(ldflags, *opts)
    conf = link_config(ldflags, *opts)
    RbConfig::expand(TRY_LINK.dup, conf)
  end

  def cc_config(opt="")
    conf = RbConfig::CONFIG.merge('hdrdir' => $hdrdir.quote, 'srcdir' => $srcdir.quote,
                                  'arch_hdrdir' => $arch_hdrdir.quote,
                                  'top_srcdir' => $top_srcdir.quote)
    conf
  end

  def cc_command(opt="")
    conf = cc_config(opt)
    RbConfig::expand("$(CC) #$INCFLAGS #$CPPFLAGS #$CFLAGS #$ARCH_FLAG #{opt} -c #{CONFTEST_C}",
                     conf)
  end

  def cpp_command(outfile, opt="")
    conf = cc_config(opt)
    if $universal and (arch_flag = conf['ARCH_FLAG']) and !arch_flag.empty?
      conf['ARCH_FLAG'] = arch_flag.gsub(/(?:\G|\s)-arch\s+\S+/, '')
    end
    RbConfig::expand("$(CPP) #$INCFLAGS #$CPPFLAGS #$CFLAGS #{opt} #{CONFTEST_C} #{outfile}",
                     conf)
  end

  def libpathflag(libpath=$DEFLIBPATH|$LIBPATH)
    libpath.map{|x|
      case x
      when "$(topdir)", /\A\./
        LIBPATHFLAG
      else
        LIBPATHFLAG+RPATHFLAG
      end % x.quote
    }.join
  end

  def with_werror(opt, opts = nil)
    if opts
      if opts[:werror] and config_string("WERRORFLAG") {|flag| opt = opt ? "#{opt} #{flag}" : flag}
        (opts = opts.dup).delete(:werror)
      end
      yield(opt, opts)
    else
      yield(opt)
    end
  end

  def try_link0(src, opt="", *opts, &b) # :nodoc:
    exe = CONFTEST+$EXEEXT
    cmd = link_command("", opt)
    if $universal
      require 'tmpdir'
      Dir.mktmpdir("mkmf_", oldtmpdir = ENV["TMPDIR"]) do |tmpdir|
        begin
          ENV["TMPDIR"] = tmpdir
          try_do(src, cmd, *opts, &b)
        ensure
          ENV["TMPDIR"] = oldtmpdir
        end
      end
    else
      try_do(src, cmd, *opts, &b)
    end and File.executable?(exe) or return nil
    exe
  ensure
    MakeMakefile.rm_rf(*Dir["#{CONFTEST}*"]-[exe])
  end

  # Returns whether or not the +src+ can be compiled as a C source and linked
  # with its depending libraries successfully.  +opt+ is passed to the linker
  # as options. Note that +$CFLAGS+ and +$LDFLAGS+ are also passed to the
  # linker.
  #
  # If a block given, it is called with the source before compilation. You can
  # modify the source in the block.
  #
  # [+src+] a String which contains a C source
  # [+opt+] a String which contains linker options
  def try_link(src, opt="", *opts, &b)
    exe = try_link0(src, opt, *opts, &b) or return false
    MakeMakefile.rm_f exe
    true
  end

  # Returns whether or not the +src+ can be compiled as a C source.  +opt+ is
  # passed to the C compiler as options. Note that +$CFLAGS+ is also passed to
  # the compiler.
  #
  # If a block given, it is called with the source before compilation. You can
  # modify the source in the block.
  #
  # [+src+] a String which contains a C source
  # [+opt+] a String which contains compiler options
  def try_compile(src, opt="", *opts, &b)
    with_werror(opt, *opts) {|_opt, *| try_do(src, cc_command(_opt), *opts, &b)} and
      File.file?("#{CONFTEST}.#{$OBJEXT}")
  ensure
    MakeMakefile.rm_f "#{CONFTEST}*"
  end

  # Returns whether or not the +src+ can be preprocessed with the C
  # preprocessor.  +opt+ is passed to the preprocessor as options. Note that
  # +$CFLAGS+ is also passed to the preprocessor.
  #
  # If a block given, it is called with the source before preprocessing. You
  # can modify the source in the block.
  #
  # [+src+] a String which contains a C source
  # [+opt+] a String which contains preprocessor options
  def try_cpp(src, opt="", *opts, &b)
    try_do(src, cpp_command(CPPOUTFILE, opt), *opts, &b) and
      File.file?("#{CONFTEST}.i")
  ensure
    MakeMakefile.rm_f "#{CONFTEST}*"
  end

  alias_method :try_header, (config_string('try_header') || :try_cpp)

  def cpp_include(header)
    if header
      header = [header] unless header.kind_of? Array
      header.map {|h| String === h ? "#include <#{h}>\n" : h}.join
    else
      ""
    end
  end

  def with_cppflags(flags)
    cppflags = $CPPFLAGS
    $CPPFLAGS = flags.dup
    ret = yield
  ensure
    $CPPFLAGS = cppflags unless ret
  end

  def try_cppflags(flags, opts = {})
    try_header(MAIN_DOES_NOTHING, flags, {:werror => true}.update(opts))
  end

  def append_cppflags(flags, *opts)
    Array(flags).each do |flag|
      if checking_for("whether #{flag} is accepted as CPPFLAGS") {
           try_cppflags(flag, *opts)
         }
        $CPPFLAGS << " " << flag
      end
    end
  end

  def with_cflags(flags)
    cflags = $CFLAGS
    $CFLAGS = flags.dup
    ret = yield
  ensure
    $CFLAGS = cflags unless ret
  end

  def try_cflags(flags, opts = {})
    try_compile(MAIN_DOES_NOTHING, flags, {:werror => true}.update(opts))
  end

  def append_cflags(flags, *opts)
    Array(flags).each do |flag|
      if checking_for("whether #{flag} is accepted as CFLAGS") {
           try_cflags(flag, *opts)
         }
        $CFLAGS << " " << flag
      end
    end
  end

  def with_ldflags(flags)
    ldflags = $LDFLAGS
    $LDFLAGS = flags.dup
    ret = yield
  ensure
    $LDFLAGS = ldflags unless ret
  end

  def try_ldflags(flags, opts = {})
    opts = {:werror => true}.update(opts) if $mswin
    try_link(MAIN_DOES_NOTHING, flags, opts)
  end

  def append_ldflags(flags, *opts)
    Array(flags).each do |flag|
      if checking_for("whether #{flag} is accepted as LDFLAGS") {
           try_ldflags(flag, *opts)
         }
        $LDFLAGS << " " << flag
      end
    end
  end

  def try_static_assert(expr, headers = nil, opt = "", &b)
    headers = cpp_include(headers)
    try_compile(<<SRC, opt, &b)
#{headers}
/*top*/
int conftest_const[(#{expr}) ? 1 : -1];
SRC
  end

  def try_constant(const, headers = nil, opt = "", &b)
    includes = cpp_include(headers)
    neg = try_static_assert("#{const} < 0", headers, opt)
    if CROSS_COMPILING
      if neg
        const = "-(#{const})"
      elsif try_static_assert("#{const} > 0", headers, opt)
        # positive constant
      elsif try_static_assert("#{const} == 0", headers, opt)
        return 0
      else
        # not a constant
        return nil
      end
      upper = 1
      until try_static_assert("#{const} <= #{upper}", headers, opt)
        lower = upper
        upper <<= 1
      end
      return nil unless lower
      while upper > lower + 1
        mid = (upper + lower) / 2
        if try_static_assert("#{const} > #{mid}", headers, opt)
          lower = mid
        else
          upper = mid
        end
      end
      upper = -upper if neg
      return upper
    else
      src = %{#{includes}
#include <stdio.h>
/*top*/
typedef#{neg ? '' : ' unsigned'}
#ifdef PRI_LL_PREFIX
#define PRI_CONFTEST_PREFIX PRI_LL_PREFIX
LONG_LONG
#else
#define PRI_CONFTEST_PREFIX "l"
long
#endif
conftest_type;
conftest_type conftest_const = (conftest_type)(#{const});
int main() {printf("%"PRI_CONFTEST_PREFIX"#{neg ? 'd' : 'u'}\\n", conftest_const); return 0;}
}
      begin
        if try_link0(src, opt, &b)
          xpopen("./#{CONFTEST}") do |f|
            return Integer(f.gets)
          end
        end
      ensure
        MakeMakefile.rm_f "#{CONFTEST}#{$EXEEXT}"
      end
    end
    nil
  end

  # You should use +have_func+ rather than +try_func+.
  #
  # [+func+] a String which contains a symbol name
  # [+libs+] a String which contains library names.
  # [+headers+] a String or an Array of strings which contains names of header
  #             files.
  def try_func(func, libs, headers = nil, opt = "", &b)
    headers = cpp_include(headers)
    case func
    when /^&/
      decltype = proc {|x|"const volatile void *#{x}"}
    when /\)$/
      call = func
    when nil
      call = ""
    else
      call = "#{func}()"
      decltype = proc {|x| "void ((*#{x})())"}
    end
    if opt and !opt.empty?
      [[:to_str], [:join, " "], [:to_s]].each do |meth, *args|
        if opt.respond_to?(meth)
          break opt = opt.send(meth, *args)
        end
      end
      opt = "#{opt} #{libs}"
    else
      opt = libs
    end
    decltype && try_link(<<"SRC", opt, &b) or
#{headers}
/*top*/
extern int t(void);
#{MAIN_DOES_NOTHING 't'}
int t(void) { #{decltype["volatile p"]}; p = (#{decltype[]})#{func}; return !p; }
SRC
    call && try_link(<<"SRC", opt, &b)
#{headers}
/*top*/
extern int t(void);
#{MAIN_DOES_NOTHING 't'}
#{"extern void #{call};" if decltype}
int t(void) { #{call}; return 0; }
SRC
  end

  # You should use +have_var+ rather than +try_var+.
  def try_var(var, headers = nil, opt = "", &b)
    headers = cpp_include(headers)
    try_compile(<<"SRC", opt, &b)
#{headers}
/*top*/
extern int t(void);
#{MAIN_DOES_NOTHING 't'}
int t(void) { const volatile void *volatile p; p = &(&#{var})[0]; return !p; }
SRC
  end

  # Returns whether or not the +src+ can be preprocessed with the C
  # preprocessor and matches with +pat+.
  #
  # If a block given, it is called with the source before compilation. You can
  # modify the source in the block.
  #
  # [+pat+] a Regexp or a String
  # [+src+] a String which contains a C source
  # [+opt+] a String which contains preprocessor options
  #
  # NOTE: When pat is a Regexp the matching will be checked in process,
  # otherwise egrep(1) will be invoked to check it.
  def egrep_cpp(pat, src, opt = "", &b)
    src = create_tmpsrc(src, &b)
    xpopen(cpp_command('', opt)) do |f|
      if Regexp === pat
        puts("    ruby -ne 'print if #{pat.inspect}'")
        f.grep(pat) {|l|
          puts "#{f.lineno}: #{l}"
          return true
        }
        false
      else
        puts("    egrep '#{pat}'")
        begin
          stdin = $stdin.dup
          $stdin.reopen(f)
          system("egrep", pat)
        ensure
          $stdin.reopen(stdin)
        end
      end
    end
  ensure
    MakeMakefile.rm_f "#{CONFTEST}*"
    log_src(src)
  end

  # This is used internally by the have_macro? method.
  def macro_defined?(macro, src, opt = "", &b)
    src = src.sub(/[^\n]\z/, "\\&\n")
    try_compile(src + <<"SRC", opt, &b)
/*top*/
#ifndef #{macro}
# error
|:/ === #{macro} undefined === /:|
#endif
SRC
  end

  # Returns whether or not:
  # * the +src+ can be compiled as a C source,
  # * the result object can be linked with its depending libraries
  #   successfully,
  # * the linked file can be invoked as an executable
  # * and the executable exits successfully
  #
  # +opt+ is passed to the linker as options. Note that +$CFLAGS+ and
  # +$LDFLAGS+ are also passed to the linker.
  #
  # If a block given, it is called with the source before compilation. You can
  # modify the source in the block.
  #
  # [+src+] a String which contains a C source
  # [+opt+] a String which contains linker options
  #
  # Returns true when the executable exits successfully, false when it fails,
  # or nil when preprocessing, compilation or link fails.
  def try_run(src, opt = "", &b)
    raise "cannot run test program while cross compiling" if CROSS_COMPILING
    if try_link0(src, opt, &b)
      xsystem("./#{CONFTEST}")
    else
      nil
    end
  ensure
    MakeMakefile.rm_f "#{CONFTEST}*"
  end

  def install_files(mfile, ifiles, map = nil, srcprefix = nil)
    ifiles or return
    ifiles.empty? and return
    srcprefix ||= "$(srcdir)/#{srcprefix}".chomp('/')
    RbConfig::expand(srcdir = srcprefix.dup)
    dirs = []
    path = Hash.new {|h, i| h[i] = dirs.push([i])[-1]}
    ifiles.each do |files, dir, prefix|
      dir = map_dir(dir, map)
      prefix &&= %r|\A#{Regexp.quote(prefix)}/?|
      if /\A\.\// =~ files
        # install files which are in current working directory.
        files = files[2..-1]
        len = nil
      else
        # install files which are under the $(srcdir).
        files = File.join(srcdir, files)
        len = srcdir.size
      end
      f = nil
      Dir.glob(files) do |fx|
        f = fx
        f[0..len] = "" if len
        case File.basename(f)
        when *$NONINSTALLFILES
          next
        end
        d = File.dirname(f)
        d.sub!(prefix, "") if prefix
        d = (d.empty? || d == ".") ? dir : File.join(dir, d)
        f = File.join(srcprefix, f) if len
        path[d] << f
      end
      unless len or f
        d = File.dirname(files)
        d.sub!(prefix, "") if prefix
        d = (d.empty? || d == ".") ? dir : File.join(dir, d)
        path[d] << files
      end
    end
    dirs
  end

  def install_rb(mfile, dest, srcdir = nil)
    install_files(mfile, [["lib/**/*.rb", dest, "lib"]], nil, srcdir)
  end

  def append_library(libs, lib) # :no-doc:
    format(LIBARG, lib) + " " + libs
  end

  def message(*s)
    unless Logging.quiet and not $VERBOSE
      printf(*s)
      $stdout.flush
    end
  end

  # This emits a string to stdout that allows users to see the results of the
  # various have* and find* methods as they are tested.
  #
  # Internal use only.
  #
  def checking_for(m, fmt = nil)
    f = caller[0][/in `([^<].*)'$/, 1] and f << ": " #` for vim #'
    m = "checking #{/\Acheck/ =~ f ? '' : 'for '}#{m}... "
    message "%s", m
    a = r = nil
    Logging::postpone do
      r = yield
      a = (fmt ? "#{fmt % r}" : r ? "yes" : "no")
      "#{f}#{m}-------------------- #{a}\n\n"
    end
    message "%s\n", a
    Logging::message "--------------------\n\n"
    r
  end

  def checking_message(target, place = nil, opt = nil)
    [["in", place], ["with", opt]].inject("#{target}") do |msg, (pre, noun)|
      if noun
        [[:to_str], [:join, ","], [:to_s]].each do |meth, *args|
          if noun.respond_to?(meth)
            break noun = noun.send(meth, *args)
          end
        end
        unless noun.empty?
          msg << " #{pre} " unless msg.empty?
          msg << noun
        end
      end
      msg
    end
  end

  # :startdoc:

  # Returns whether or not +macro+ is defined either in the common header
  # files or within any +headers+ you provide.
  #
  # Any options you pass to +opt+ are passed along to the compiler.
  #
  def have_macro(macro, headers = nil, opt = "", &b)
    checking_for checking_message(macro, headers, opt) do
      macro_defined?(macro, cpp_include(headers), opt, &b)
    end
  end

  # Returns whether or not the given entry point +func+ can be found within
  # +lib+.  If +func+ is +nil+, the <code>main()</code> entry point is used by
  # default.  If found, it adds the library to list of libraries to be used
  # when linking your extension.
  #
  # If +headers+ are provided, it will include those header files as the
  # header files it looks in when searching for +func+.
  #
  # The real name of the library to be linked can be altered by
  # <code>--with-FOOlib</code> configuration option.
  #
  def have_library(lib, func = nil, headers = nil, opt = "", &b)
    dir_config(lib)
    lib = with_config(lib+'lib', lib)
    checking_for checking_message(func && func.funcall_style, LIBARG%lib, opt) do
      if COMMON_LIBS.include?(lib)
        true
      else
        libs = append_library($libs, lib)
        if try_func(func, libs, headers, opt, &b)
          $libs = libs
          true
        else
          false
        end
      end
    end
  end

  # Returns whether or not the entry point +func+ can be found within the
  # library +lib+ in one of the +paths+ specified, where +paths+ is an array
  # of strings.  If +func+ is +nil+ , then the <code>main()</code> function is
  # used as the entry point.
  #
  # If +lib+ is found, then the path it was found on is added to the list of
  # library paths searched and linked against.
  #
  def find_library(lib, func, *paths, &b)
    dir_config(lib)
    lib = with_config(lib+'lib', lib)
    paths = paths.collect {|path| path.split(File::PATH_SEPARATOR)}.flatten
    checking_for checking_message(func && func.funcall_style, LIBARG%lib) do
      libpath = $LIBPATH
      libs = append_library($libs, lib)
      begin
        until r = try_func(func, libs, &b) or paths.empty?
          $LIBPATH = libpath | [paths.shift]
        end
        if r
          $libs = libs
          libpath = nil
        end
      ensure
        $LIBPATH = libpath if libpath
      end
      r
    end
  end

  # Returns whether or not the function +func+ can be found in the common
  # header files, or within any +headers+ that you provide.  If found, a macro
  # is passed as a preprocessor constant to the compiler using the function
  # name, in uppercase, prepended with +HAVE_+.
  #
  # To check functions in an additional library, you need to check that
  # library first using <code>have_library()</code>.  The +func+ shall be
  # either mere function name or function name with arguments.
  #
  # For example, if <code>have_func('foo')</code> returned +true+, then the
  # +HAVE_FOO+ preprocessor macro would be passed to the compiler.
  #
  def have_func(func, headers = nil, opt = "", &b)
    checking_for checking_message(func.funcall_style, headers, opt) do
      if try_func(func, $libs, headers, opt, &b)
        $defs << "-DHAVE_#{func.sans_arguments.tr_cpp}"
        true
      else
        false
      end
    end
  end

  # Returns whether or not the variable +var+ can be found in the common
  # header files, or within any +headers+ that you provide.  If found, a macro
  # is passed as a preprocessor constant to the compiler using the variable
  # name, in uppercase, prepended with +HAVE_+.
  #
  # To check variables in an additional library, you need to check that
  # library first using <code>have_library()</code>.
  #
  # For example, if <code>have_var('foo')</code> returned true, then the
  # +HAVE_FOO+ preprocessor macro would be passed to the compiler.
  #
  def have_var(var, headers = nil, opt = "", &b)
    checking_for checking_message(var, headers, opt) do
      if try_var(var, headers, opt, &b)
        $defs.push(format("-DHAVE_%s", var.tr_cpp))
        true
      else
        false
      end
    end
  end

  # Returns whether or not the given +header+ file can be found on your system.
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the header file name, in uppercase, prepended with +HAVE_+.
  #
  # For example, if <code>have_header('foo.h')</code> returned true, then the
  # +HAVE_FOO_H+ preprocessor macro would be passed to the compiler.
  #
  def have_header(header, preheaders = nil, opt = "", &b)
    dir_config(header[/.*?(?=\/)|.*?(?=\.)/])
    checking_for header do
      if try_header(cpp_include(preheaders)+cpp_include(header), opt, &b)
        $defs.push(format("-DHAVE_%s", header.tr_cpp))
        true
      else
        false
      end
    end
  end

  # Returns whether or not the given +framework+ can be found on your system.
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the framework name, in uppercase, prepended with +HAVE_FRAMEWORK_+.
  #
  # For example, if <code>have_framework('Ruby')</code> returned true, then
  # the +HAVE_FRAMEWORK_RUBY+ preprocessor macro would be passed to the
  # compiler.
  #
  # If +fw+ is a pair of the framework name and its header file name
  # that header file is checked, instead of the normally used header
  # file which is named same as the framework.
  def have_framework(fw, &b)
    if Array === fw
      fw, header = *fw
    else
      header = "#{fw}.h"
    end
    checking_for fw do
      src = cpp_include("#{fw}/#{header}") << "\n" "int main(void){return 0;}"
      opt = " -framework #{fw}"
      if try_link(src, opt, &b) or (objc = try_link(src, "-ObjC#{opt}", &b))
        $defs.push(format("-DHAVE_FRAMEWORK_%s", fw.tr_cpp))
        # TODO: non-worse way than this hack, to get rid of separating
        # option and its argument.
        $LDFLAGS << " -ObjC" if objc and /(\A|\s)-ObjC(\s|\z)/ !~ $LDFLAGS
        $LIBS << opt
        true
      else
        false
      end
    end
  end

  # Instructs mkmf to search for the given +header+ in any of the +paths+
  # provided, and returns whether or not it was found in those paths.
  #
  # If the header is found then the path it was found on is added to the list
  # of included directories that are sent to the compiler (via the
  # <code>-I</code> switch).
  #
  def find_header(header, *paths)
    message = checking_message(header, paths)
    header = cpp_include(header)
    checking_for message do
      if try_header(header)
        true
      else
        found = false
        paths.each do |dir|
          opt = "-I#{dir}".quote
          if try_header(header, opt)
            $INCFLAGS << " " << opt
            found = true
            break
          end
        end
        found
      end
    end
  end

  # Returns whether or not the struct of type +type+ contains +member+.  If
  # it does not, or the struct type can't be found, then false is returned.
  # You may optionally specify additional +headers+ in which to look for the
  # struct (in addition to the common header files).
  #
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the type name and the member name, in uppercase, prepended with
  # +HAVE_+.
  #
  # For example, if <code>have_struct_member('struct foo', 'bar')</code>
  # returned true, then the +HAVE_STRUCT_FOO_BAR+ preprocessor macro would be
  # passed to the compiler.
  #
  # +HAVE_ST_BAR+ is also defined for backward compatibility.
  #
  def have_struct_member(type, member, headers = nil, opt = "", &b)
    checking_for checking_message("#{type}.#{member}", headers) do
      if try_compile(<<"SRC", opt, &b)
#{cpp_include(headers)}
/*top*/
int s = (char *)&((#{type}*)0)->#{member} - (char *)0;
#{MAIN_DOES_NOTHING}
SRC
        $defs.push(format("-DHAVE_%s_%s", type.tr_cpp, member.tr_cpp))
        $defs.push(format("-DHAVE_ST_%s", member.tr_cpp)) # backward compatibility
        true
      else
        false
      end
    end
  end

  # Returns whether or not the static type +type+ is defined.
  #
  # See also +have_type+
  #
  def try_type(type, headers = nil, opt = "", &b)
    if try_compile(<<"SRC", opt, &b)
#{cpp_include(headers)}
/*top*/
typedef #{type} conftest_type;
int conftestval[sizeof(conftest_type)?1:-1];
SRC
      $defs.push(format("-DHAVE_TYPE_%s", type.tr_cpp))
      true
    else
      false
    end
  end

  # Returns whether or not the static type +type+ is defined.  You may
  # optionally pass additional +headers+ to check against in addition to the
  # common header files.
  #
  # You may also pass additional flags to +opt+ which are then passed along to
  # the compiler.
  #
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the type name, in uppercase, prepended with +HAVE_TYPE_+.
  #
  # For example, if <code>have_type('foo')</code> returned true, then the
  # +HAVE_TYPE_FOO+ preprocessor macro would be passed to the compiler.
  #
  def have_type(type, headers = nil, opt = "", &b)
    checking_for checking_message(type, headers, opt) do
      try_type(type, headers, opt, &b)
    end
  end

  # Returns where the static type +type+ is defined.
  #
  # You may also pass additional flags to +opt+ which are then passed along to
  # the compiler.
  #
  # See also +have_type+.
  #
  def find_type(type, opt, *headers, &b)
    opt ||= ""
    fmt = "not found"
    def fmt.%(x)
      x ? x.respond_to?(:join) ? x.join(",") : x : self
    end
    checking_for checking_message(type, nil, opt), fmt do
      headers.find do |h|
        try_type(type, h, opt, &b)
      end
    end
  end

  # Returns whether or not the constant +const+ is defined.
  #
  # See also +have_const+
  #
  def try_const(const, headers = nil, opt = "", &b)
    const, type = *const
    if try_compile(<<"SRC", opt, &b)
#{cpp_include(headers)}
/*top*/
typedef #{type || 'int'} conftest_type;
conftest_type conftestval = #{type ? '' : '(int)'}#{const};
SRC
      $defs.push(format("-DHAVE_CONST_%s", const.tr_cpp))
      true
    else
      false
    end
  end

  # Returns whether or not the constant +const+ is defined.  You may
  # optionally pass the +type+ of +const+ as <code>[const, type]</code>,
  # such as:
  #
  #   have_const(%w[PTHREAD_MUTEX_INITIALIZER pthread_mutex_t], "pthread.h")
  #
  # You may also pass additional +headers+ to check against in addition to the
  # common header files, and additional flags to +opt+ which are then passed
  # along to the compiler.
  #
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the type name, in uppercase, prepended with +HAVE_CONST_+.
  #
  # For example, if <code>have_const('foo')</code> returned true, then the
  # +HAVE_CONST_FOO+ preprocessor macro would be passed to the compiler.
  #
  def have_const(const, headers = nil, opt = "", &b)
    checking_for checking_message([*const].compact.join(' '), headers, opt) do
      try_const(const, headers, opt, &b)
    end
  end

  # :stopdoc:
  STRING_OR_FAILED_FORMAT = "%s"
  def STRING_OR_FAILED_FORMAT.%(x) # :nodoc:
    x ? super : "failed"
  end

  def typedef_expr(type, headers)
    typename, member = type.split('.', 2)
    prelude = cpp_include(headers).split(/$/)
    prelude << "typedef #{typename} rbcv_typedef_;\n"
    return "rbcv_typedef_", member, prelude
  end

  def try_signedness(type, member, headers = nil, opts = nil)
    raise ArgumentError, "don't know how to tell signedness of members" if member
    if try_static_assert("(#{type})-1 < 0", headers, opts)
      return -1
    elsif try_static_assert("(#{type})-1 > 0", headers, opts)
      return +1
    end
  end

  # :startdoc:

  # Returns the size of the given +type+.  You may optionally specify
  # additional +headers+ to search in for the +type+.
  #
  # If found, a macro is passed as a preprocessor constant to the compiler
  # using the type name, in uppercase, prepended with +SIZEOF_+, followed by
  # the type name, followed by <code>=X</code> where "X" is the actual size.
  #
  # For example, if <code>check_sizeof('mystruct')</code> returned 12, then
  # the <code>SIZEOF_MYSTRUCT=12</code> preprocessor macro would be passed to
  # the compiler.
  #
  def check_sizeof(type, headers = nil, opts = "", &b)
    typedef, member, prelude = typedef_expr(type, headers)
    prelude << "#{typedef} *rbcv_ptr_;\n"
    prelude = [prelude]
    expr = "sizeof((*rbcv_ptr_)#{"." << member if member})"
    fmt = STRING_OR_FAILED_FORMAT
    checking_for checking_message("size of #{type}", headers), fmt do
      if size = try_constant(expr, prelude, opts, &b)
        $defs.push(format("-DSIZEOF_%s=%s", type.tr_cpp, size))
        size
      end
    end
  end

  # Returns the signedness of the given +type+.  You may optionally specify
  # additional +headers+ to search in for the +type+.
  #
  # If the +type+ is found and is a numeric type, a macro is passed as a
  # preprocessor constant to the compiler using the +type+ name, in uppercase,
  # prepended with +SIGNEDNESS_OF_+, followed by the +type+ name, followed by
  # <code>=X</code> where "X" is positive integer if the +type+ is unsigned
  # and a negative integer if the +type+ is signed.
  #
  # For example, if +size_t+ is defined as unsigned, then
  # <code>check_signedness('size_t')</code> would return +1 and the
  # <code>SIGNEDNESS_OF_SIZE_T=+1</code> preprocessor macro would be passed to
  # the compiler.  The <code>SIGNEDNESS_OF_INT=-1</code> macro would be set
  # for <code>check_signedness('int')</code>
  #
  def check_signedness(type, headers = nil, opts = nil, &b)
    typedef, member, prelude = typedef_expr(type, headers)
    signed = nil
    checking_for("signedness of #{type}", STRING_OR_FAILED_FORMAT) do
      signed = try_signedness(typedef, member, [prelude], opts, &b) or next nil
      $defs.push("-DSIGNEDNESS_OF_%s=%+d" % [type.tr_cpp, signed])
      signed < 0 ? "signed" : "unsigned"
    end
    signed
  end

  # Returns the convertible integer type of the given +type+.  You may
  # optionally specify additional +headers+ to search in for the +type+.
  # _convertible_ means actually the same type, or typedef'd from the same
  # type.
  #
  # If the +type+ is an integer type and the _convertible_ type is found,
  # the following macros are passed as preprocessor constants to the compiler
  # using the +type+ name, in uppercase.
  #
  # * +TYPEOF_+, followed by the +type+ name, followed by <code>=X</code>
  #   where "X" is the found _convertible_ type name.
  # * +TYP2NUM+ and +NUM2TYP+,
  #   where +TYP+ is the +type+ name in uppercase with replacing an +_t+
  #   suffix with "T", followed by <code>=X</code> where "X" is the macro name
  #   to convert +type+ to an Integer object, and vice versa.
  #
  # For example, if +foobar_t+ is defined as unsigned long, then
  # <code>convertible_int("foobar_t")</code> would return "unsigned long", and
  # define these macros:
  #
  #   #define TYPEOF_FOOBAR_T unsigned long
  #   #define FOOBART2NUM ULONG2NUM
  #   #define NUM2FOOBART NUM2ULONG
  #
  def convertible_int(type, headers = nil, opts = nil, &b)
    type, macname = *type
    checking_for("convertible type of #{type}", STRING_OR_FAILED_FORMAT) do
      if UNIVERSAL_INTS.include?(type)
        type
      else
        typedef, member, prelude = typedef_expr(type, headers, &b)
        if member
          prelude << "static rbcv_typedef_ rbcv_var;"
          compat = UNIVERSAL_INTS.find {|t|
            try_static_assert("sizeof(rbcv_var.#{member}) == sizeof(#{t})", [prelude], opts, &b)
          }
        else
          next unless signed = try_signedness(typedef, member, [prelude])
          u = "unsigned " if signed > 0
          prelude << "extern rbcv_typedef_ foo();"
          compat = UNIVERSAL_INTS.find {|t|
            try_compile([prelude, "extern #{u}#{t} foo();"].join("\n"), opts, :werror=>true, &b)
          }
        end
        if compat
          macname ||= type.sub(/_(?=t\z)/, '').tr_cpp
          conv = (compat == "long long" ? "LL" : compat.upcase)
          compat = "#{u}#{compat}"
          typename = type.tr_cpp
          $defs.push(format("-DSIZEOF_%s=SIZEOF_%s", typename, compat.tr_cpp))
          $defs.push(format("-DTYPEOF_%s=%s", typename, compat.quote))
          $defs.push(format("-DPRI_%s_PREFIX=PRI_%s_PREFIX", macname, conv))
          conv = (u ? "U" : "") + conv
          $defs.push(format("-D%s2NUM=%s2NUM", macname, conv))
          $defs.push(format("-DNUM2%s=NUM2%s", macname, conv))
          compat
        end
      end
    end
  end
  # :stopdoc:

  # Used internally by the what_type? method to determine if +type+ is a scalar
  # pointer.
  def scalar_ptr_type?(type, member = nil, headers = nil, &b)
    try_compile(<<"SRC", &b)   # pointer
#{cpp_include(headers)}
/*top*/
volatile #{type} conftestval;
extern int t(void);
#{MAIN_DOES_NOTHING 't'}
int t(void) {return (int)(1-*(conftestval#{member ? ".#{member}" : ""}));}
SRC
  end

  # Used internally by the what_type? method to determine if +type+ is a scalar
  # pointer.
  def scalar_type?(type, member = nil, headers = nil, &b)
    try_compile(<<"SRC", &b)   # pointer
#{cpp_include(headers)}
/*top*/
volatile #{type} conftestval;
extern int t(void);
#{MAIN_DOES_NOTHING 't'}
int t(void) {return (int)(1-(conftestval#{member ? ".#{member}" : ""}));}
SRC
  end

  # Used internally by the what_type? method to check if the _typeof_ GCC
  # extension is available.
  def have_typeof?
    return $typeof if defined?($typeof)
    $typeof = %w[__typeof__ typeof].find do |t|
      try_compile(<<SRC)
int rbcv_foo;
#{t}(rbcv_foo) rbcv_bar;
SRC
    end
  end

  def what_type?(type, member = nil, headers = nil, &b)
    m = "#{type}"
    var = val = "*rbcv_var_"
    func = "rbcv_func_(void)"
    if member
      m << "." << member
    else
      type, member = type.split('.', 2)
    end
    if member
      val = "(#{var}).#{member}"
    end
    prelude = [cpp_include(headers).split(/^/)]
    prelude << ["typedef #{type} rbcv_typedef_;\n",
                "extern rbcv_typedef_ *#{func};\n",
                "rbcv_typedef_ #{var};\n",
               ]
    type = "rbcv_typedef_"
    fmt = member && !(typeof = have_typeof?) ? "seems %s" : "%s"
    if typeof
      var = "*rbcv_member_"
      func = "rbcv_mem_func_(void)"
      member = nil
      type = "rbcv_mem_typedef_"
      prelude[-1] << "typedef #{typeof}(#{val}) #{type};\n"
      prelude[-1] << "extern #{type} *#{func};\n"
      prelude[-1] << "#{type} #{var};\n"
      val = var
    end
    def fmt.%(x)
      x ? super : "unknown"
    end
    checking_for checking_message(m, headers), fmt do
      if scalar_ptr_type?(type, member, prelude, &b)
        if try_static_assert("sizeof(*#{var}) == 1", prelude)
          return "string"
        end
        ptr = "*"
      elsif scalar_type?(type, member, prelude, &b)
        unless member and !typeof or try_static_assert("(#{type})-1 < 0", prelude)
          unsigned = "unsigned"
        end
        ptr = ""
      else
        next
      end
      type = UNIVERSAL_INTS.find do |t|
        pre = prelude
        unless member
          pre += [["#{unsigned} #{t} #{ptr}#{var};\n",
                   "extern #{unsigned} #{t} #{ptr}*#{func};\n"]]
        end
        try_static_assert("sizeof(#{ptr}#{val}) == sizeof(#{unsigned} #{t})", pre)
      end
      type or next
      [unsigned, type, ptr].join(" ").strip
    end
  end

  # This method is used internally by the find_executable method.
  #
  # Internal use only.
  #
  def find_executable0(bin, path = nil)
    executable_file = proc do |name|
      begin
        stat = File.stat(name)
      rescue SystemCallError
      else
        next name if stat.file? and stat.executable?
      end
    end

    exts = config_string('EXECUTABLE_EXTS') {|s| s.split} || config_string('EXEEXT') {|s| [s]}
    if File.expand_path(bin) == bin
      return bin if executable_file.call(bin)
      if exts
        exts.each {|ext| executable_file.call(file = bin + ext) and return file}
      end
      return nil
    end
    if path ||= ENV['PATH']
      path = path.split(File::PATH_SEPARATOR)
    else
      path = %w[/usr/local/bin /usr/ucb /usr/bin /bin]
    end
    file = nil
    path.each do |dir|
      dir.sub!(/\A"(.*)"\z/m, '\1') if $mswin or $mingw
      return file if executable_file.call(file = File.join(dir, bin))
      if exts
        exts.each {|ext| executable_file.call(ext = file + ext) and return ext}
      end
    end
    nil
  end

  # :startdoc:

  # Searches for the executable +bin+ on +path+.  The default path is your
  # +PATH+ environment variable. If that isn't defined, it will resort to
  # searching /usr/local/bin, /usr/ucb, /usr/bin and /bin.
  #
  # If found, it will return the full path, including the executable name, of
  # where it was found.
  #
  # Note that this method does not actually affect the generated Makefile.
  #
  def find_executable(bin, path = nil)
    checking_for checking_message(bin, path) do
      find_executable0(bin, path)
    end
  end

  # :stopdoc:

  def arg_config(config, default=nil, &block)
    $arg_config << [config, default]
    defaults = []
    if default
      defaults << default
    elsif !block
      defaults << nil
    end
    $configure_args.fetch(config.tr('_', '-'), *defaults, &block)
  end

  # :startdoc:

  # Tests for the presence of a <tt>--with-</tt>_config_ or
  # <tt>--without-</tt>_config_ option.  Returns +true+ if the with option is
  # given, +false+ if the without option is given, and the default value
  # otherwise.
  #
  # This can be useful for adding custom definitions, such as debug
  # information.
  #
  # Example:
  #
  #    if with_config("debug")
  #       $defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
  #    end
  #
  def with_config(config, default=nil)
    config = config.sub(/^--with[-_]/, '')
    val = arg_config("--with-"+config) do
      if arg_config("--without-"+config)
        false
      elsif block_given?
        yield(config, default)
      else
        break default
      end
    end
    case val
    when "yes"
      true
    when "no"
      false
    else
      val
    end
  end

  # Tests for the presence of an <tt>--enable-</tt>_config_ or
  # <tt>--disable-</tt>_config_ option. Returns +true+ if the enable option is
  # given, +false+ if the disable option is given, and the default value
  # otherwise.
  #
  # This can be useful for adding custom definitions, such as debug
  # information.
  #
  # Example:
  #
  #    if enable_config("debug")
  #       $defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
  #    end
  #
  def enable_config(config, default=nil)
    if arg_config("--enable-"+config)
      true
    elsif arg_config("--disable-"+config)
      false
    elsif block_given?
      yield(config, default)
    else
      return default
    end
  end

  # Generates a header file consisting of the various macro definitions
  # generated by other methods such as have_func and have_header. These are
  # then wrapped in a custom <code>#ifndef</code> based on the +header+ file
  # name, which defaults to "extconf.h".
  #
  # For example:
  #
  #   # extconf.rb
  #   require 'mkmf'
  #   have_func('realpath')
  #   have_header('sys/utime.h')
  #   create_header
  #   create_makefile('foo')
  #
  # The above script would generate the following extconf.h file:
  #
  #   #ifndef EXTCONF_H
  #   #define EXTCONF_H
  #   #define HAVE_REALPATH 1
  #   #define HAVE_SYS_UTIME_H 1
  #   #endif
  #
  # Given that the create_header method generates a file based on definitions
  # set earlier in your extconf.rb file, you will probably want to make this
  # one of the last methods you call in your script.
  #
  def create_header(header = "extconf.h")
    message "creating %s\n", header
    sym = header.tr_cpp
    hdr = ["#ifndef #{sym}\n#define #{sym}\n"]
    for line in $defs
      case line
      when /^-D([^=]+)(?:=(.*))?/
        hdr << "#define #$1 #{$2 ? Shellwords.shellwords($2)[0].gsub(/(?=\t+)/, "\\\n") : 1}\n"
      when /^-U(.*)/
        hdr << "#undef #$1\n"
      end
    end
    hdr << "#endif\n"
    hdr = hdr.join("")
    log_src(hdr, "#{header} is")
    unless (IO.read(header) == hdr rescue false)
      open(header, "wb") do |hfile|
        hfile.write(hdr)
      end
    end
    $extconf_h = header
  end

  # call-seq:
  #   dir_config(target)
  #   dir_config(target, prefix)
  #   dir_config(target, idefault, ldefault)
  #
  # Sets a +target+ name that the user can then use to configure
  # various "with" options with on the command line by using that
  # name.  For example, if the target is set to "foo", then the user
  # could use the <code>--with-foo-dir=prefix</code>,
  # <code>--with-foo-include=dir</code> and
  # <code>--with-foo-lib=dir</code> command line options to tell where
  # to search for header/library files.
  #
  # You may pass along additional parameters to specify default
  # values.  If one is given it is taken as default +prefix+, and if
  # two are given they are taken as "include" and "lib" defaults in
  # that order.
  #
  # In any case, the return value will be an array of determined
  # "include" and "lib" directories, either of which can be nil if no
  # corresponding command line option is given when no default value
  # is specified.
  #
  # Note that dir_config only adds to the list of places to search for
  # libraries and include files.  It does not link the libraries into your
  # application.
  #
  def dir_config(target, idefault=nil, ldefault=nil)
    if conf = $config_dirs[target]
      return conf
    end

    if dir = with_config(target + "-dir", (idefault unless ldefault))
      defaults = Array === dir ? dir : dir.split(File::PATH_SEPARATOR)
      idefault = ldefault = nil
    end

    idir = with_config(target + "-include", idefault)
    $arg_config.last[1] ||= "${#{target}-dir}/include"
    ldir = with_config(target + "-lib", ldefault)
    $arg_config.last[1] ||= "${#{target}-dir}/#{_libdir_basename}"

    idirs = idir ? Array === idir ? idir.dup : idir.split(File::PATH_SEPARATOR) : []
    if defaults
      idirs.concat(defaults.collect {|d| d + "/include"})
      idir = ([idir] + idirs).compact.join(File::PATH_SEPARATOR)
    end
    unless idirs.empty?
      idirs.collect! {|d| "-I" + d}
      idirs -= Shellwords.shellwords($CPPFLAGS)
      unless idirs.empty?
        $CPPFLAGS = (idirs.quote << $CPPFLAGS).join(" ")
      end
    end

    ldirs = ldir ? Array === ldir ? ldir.dup : ldir.split(File::PATH_SEPARATOR) : []
    if defaults
      ldirs.concat(defaults.collect {|d| "#{d}/#{_libdir_basename}"})
      ldir = ([ldir] + ldirs).compact.join(File::PATH_SEPARATOR)
    end
    $LIBPATH = ldirs | $LIBPATH

    $config_dirs[target] = [idir, ldir]
  end

  # Returns compile/link information about an installed library in a
  # tuple of <code>[cflags, ldflags, libs]</code>, by using the
  # command found first in the following commands:
  #
  # 1. If <code>--with-{pkg}-config={command}</code> is given via
  #    command line option: <code>{command} {option}</code>
  #
  # 2. <code>{pkg}-config {option}</code>
  #
  # 3. <code>pkg-config {option} {pkg}</code>
  #
  # Where {option} is, for instance, <code>--cflags</code>.
  #
  # The values obtained are appended to +$INCFLAGS+, +$CFLAGS+, +$LDFLAGS+ and
  # +$libs+.
  #
  # If an <code>option</code> argument is given, the config command is
  # invoked with the option and a stripped output string is returned
  # without modifying any of the global values mentioned above.
  def pkg_config(pkg, option=nil)
    if pkgconfig = with_config("#{pkg}-config") and find_executable0(pkgconfig)
      # iff package specific config command is given
    elsif ($PKGCONFIG ||=
           (pkgconfig = with_config("pkg-config", ("pkg-config" unless CROSS_COMPILING))) &&
           find_executable0(pkgconfig) && pkgconfig) and
        xsystem("#{$PKGCONFIG} --exists #{pkg}")
      # default to pkg-config command
      pkgconfig = $PKGCONFIG
      get = proc {|opt|
        opt = xpopen("#{$PKGCONFIG} --#{opt} #{pkg}", err:[:child, :out], &:read)
        Logging.open {puts opt.each_line.map{|s|"=> #{s.inspect}"}}
        opt.strip if $?.success?
      }
    elsif find_executable0(pkgconfig = "#{pkg}-config")
      # default to package specific config command, as a last resort.
    else
      pkgconfig = nil
    end
    if pkgconfig
      get ||= proc {|opt|
        opt = xpopen("#{pkgconfig} --#{opt}", err:[:child, :out], &:read)
        Logging.open {puts opt.each_line.map{|s|"=> #{s.inspect}"}}
        opt.strip if $?.success?
      }
    end
    orig_ldflags = $LDFLAGS
    if get and option
      get[option]
    elsif get and try_ldflags(ldflags = get['libs'])
      if incflags = get['cflags-only-I']
        $INCFLAGS << " " << incflags
        cflags = get['cflags-only-other']
      else
        cflags = get['cflags']
      end
      libs = get['libs-only-l']
      if cflags
        $CFLAGS += " " << cflags
        $CXXFLAGS += " " << cflags
      end
      if libs
        ldflags = (Shellwords.shellwords(ldflags) - Shellwords.shellwords(libs)).quote.join(" ")
      else
        libs, ldflags = Shellwords.shellwords(ldflags).partition {|s| s =~ /-l([^ ]+)/ }.map {|l|l.quote.join(" ")}
      end
      $libs += " " << libs

      $LDFLAGS = [orig_ldflags, ldflags].join(' ')
      Logging::message "package configuration for %s\n", pkg
      Logging::message "incflags: %s\ncflags: %s\nldflags: %s\nlibs: %s\n\n",
                       incflags, cflags, ldflags, libs
      [[incflags, cflags].join(' '), ldflags, libs]
    else
      Logging::message "package configuration for %s is not found\n", pkg
      nil
    end
  end

  # :stopdoc:

  def with_destdir(dir)
    dir = dir.sub($dest_prefix_pattern, '')
    /\A\$[\(\{]/ =~ dir ? dir : "$(DESTDIR)"+dir
  end

  # Converts forward slashes to backslashes. Aimed at MS Windows.
  #
  # Internal use only.
  #
  def winsep(s)
    s.tr('/', '\\')
  end

  # Converts native path to format acceptable in Makefile
  #
  # Internal use only.
  #
  if !CROSS_COMPILING
    case CONFIG['build_os']
    when 'mingw32'
      def mkintpath(path)
        # mingw uses make from msys and it needs special care
        # converts from C:\some\path to /C/some/path
        path = path.dup
        path.tr!('\\', '/')
        path.sub!(/\A([A-Za-z]):(?=\/)/, '/\1')
        path
      end
    when 'cygwin'
      if CONFIG['target_os'] != 'cygwin'
        def mkintpath(path)
          IO.popen(["cygpath", "-u", path], &:read).chomp
        end
      end
    end
  end
  unless method_defined?(:mkintpath)
    def mkintpath(path)
      path
    end
  end

  def configuration(srcdir)
    mk = []
    vpath = $VPATH.dup
    CONFIG["hdrdir"] ||= $hdrdir
    mk << %{
SHELL = /bin/sh

# V=0 quiet, V=1 verbose.  other values don't work.
V = 1
Q1 = $(V:1=)
Q = $(Q1:0=@)
ECHO1 = $(V:1=@ #{CONFIG['NULLCMD']})
ECHO = $(ECHO1:0=@ echo)
NULLCMD = #{CONFIG['NULLCMD']}

#### Start of system configuration section. ####
#{"top_srcdir = " + $top_srcdir.sub(%r"\A#{Regexp.quote($topdir)}/", "$(topdir)/") if $extmk}
srcdir = #{srcdir.gsub(/\$\((srcdir)\)|\$\{(srcdir)\}/) {mkintpath(CONFIG[$1||$2]).unspace}}
topdir = #{mkintpath(topdir = $extmk ? CONFIG["topdir"] : $topdir).unspace}
hdrdir = #{(hdrdir = CONFIG["hdrdir"]) == topdir ? "$(topdir)" : mkintpath(hdrdir).unspace}
arch_hdrdir = #{$arch_hdrdir.quote}
PATH_SEPARATOR = #{CONFIG['PATH_SEPARATOR']}
VPATH = #{vpath.join(CONFIG['PATH_SEPARATOR'])}
}
    if $extmk
      mk << "RUBYLIB =\n""RUBYOPT = -\n"
    end
    prefix = mkintpath(CONFIG["prefix"])
    if destdir = prefix[$dest_prefix_pattern, 1]
      mk << "\nDESTDIR = #{destdir}\n"
      prefix = prefix[destdir.size..-1]
    end
    mk << "prefix = #{with_destdir(prefix).unspace}\n"
    CONFIG.each do |key, var|
      mk << "#{key} = #{with_destdir(mkintpath(var)).unspace}\n" if /.prefix$/ =~ key
    end
    CONFIG.each do |key, var|
      next if /^abs_/ =~ key
      next if /^(?:src|top(?:_src)?|build|hdr)dir$/ =~ key
      next unless /dir$/ =~ key
      mk << "#{key} = #{with_destdir(var)}\n"
    end
    if !$extmk and !$configure_args.has_key?('--ruby') and
        sep = config_string('BUILD_FILE_SEPARATOR')
      sep = ":/=#{sep}"
    else
      sep = ""
    end
    possible_command = (proc {|s| s if /top_srcdir/ !~ s} unless $extmk)
    extconf_h = $extconf_h ? "-DRUBY_EXTCONF_H=\\\"$(RUBY_EXTCONF_H)\\\" " : $defs.join(" ") << " "
    headers = %w[
      $(hdrdir)/ruby.h
      $(hdrdir)/ruby/backward.h
      $(hdrdir)/ruby/ruby.h
      $(hdrdir)/ruby/defines.h
      $(hdrdir)/ruby/missing.h
      $(hdrdir)/ruby/intern.h
      $(hdrdir)/ruby/st.h
      $(hdrdir)/ruby/subst.h
    ]
    headers += $headers
    if RULE_SUBST
      headers.each {|h| h.sub!(/.*/, &RULE_SUBST.method(:%))}
    end
    headers << $config_h
    headers << '$(RUBY_EXTCONF_H)' if $extconf_h
    mk << %{

CC_WRAPPER = #{CONFIG['CC_WRAPPER']}
CC = #{CONFIG['CC']}
CXX = #{CONFIG['CXX']}
LIBRUBY = #{CONFIG['LIBRUBY']}
LIBRUBY_A = #{CONFIG['LIBRUBY_A']}
LIBRUBYARG_SHARED = #$LIBRUBYARG_SHARED
LIBRUBYARG_STATIC = #$LIBRUBYARG_STATIC
empty =
OUTFLAG = #{OUTFLAG}$(empty)
COUTFLAG = #{COUTFLAG}$(empty)
CSRCFLAG = #{CSRCFLAG}$(empty)

RUBY_EXTCONF_H = #{$extconf_h}
cflags   = #{CONFIG['cflags']}
cxxflags = #{CONFIG['cxxflags']}
optflags = #{CONFIG['optflags']}
debugflags = #{CONFIG['debugflags']}
warnflags = #{$warnflags}
cppflags = #{CONFIG['cppflags']}
CCDLFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']}
CFLAGS   = $(CCDLFLAGS) #$CFLAGS $(ARCH_FLAG)
INCFLAGS = -I. #$INCFLAGS
DEFS     = #{CONFIG['DEFS']}
CPPFLAGS = #{extconf_h}#{$CPPFLAGS}
CXXFLAGS = $(CCDLFLAGS) #$CXXFLAGS $(ARCH_FLAG)
ldflags  = #{$LDFLAGS}
dldflags = #{$DLDFLAGS} #{CONFIG['EXTDLDFLAGS']}
ARCH_FLAG = #{$ARCH_FLAG}
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
LDSHARED = #{CONFIG['LDSHARED']}
LDSHAREDXX = #{config_string('LDSHAREDXX') || '$(LDSHARED)'}
AR = #{CONFIG['AR']}
EXEEXT = #{CONFIG['EXEEXT']}

}
    CONFIG.each do |key, val|
      mk << "#{key} = #{val}\n" if /^RUBY.*NAME/ =~ key
    end
    mk << %{
arch = #{CONFIG['arch']}
sitearch = #{CONFIG['sitearch']}
ruby_version = #{RbConfig::CONFIG['ruby_version']}
ruby = #{$ruby.sub(%r[\A#{Regexp.quote(RbConfig::CONFIG['bindir'])}(?=/|\z)]) {'$(bindir)'}}
RUBY = $(ruby#{sep})
BUILTRUBY = #{if defined?($builtruby) && $builtruby
    $builtruby
  else
    File.join('$(bindir)', CONFIG["RUBY_INSTALL_NAME"] + CONFIG['EXEEXT'])
  end}
ruby_headers = #{headers.join(' ')}

RM = #{config_string('RM', &possible_command) || '$(RUBY) -run -e rm -- -f'}
RM_RF = #{'$(RUBY) -run -e rm -- -rf'}
RMDIRS = #{config_string('RMDIRS', &possible_command) || '$(RUBY) -run -e rmdir -- -p'}
MAKEDIRS = #{config_string('MAKEDIRS', &possible_command) || '@$(RUBY) -run -e mkdir -- -p'}
INSTALL = #{config_string('INSTALL', &possible_command) || '@$(RUBY) -run -e install -- -vp'}
INSTALL_PROG = #{config_string('INSTALL_PROG') || '$(INSTALL) -m 0755'}
INSTALL_DATA = #{config_string('INSTALL_DATA') || '$(INSTALL) -m 0644'}
COPY = #{config_string('CP', &possible_command) || '@$(RUBY) -run -e cp -- -v'}
TOUCH = exit >

#### End of system configuration section. ####

preload = #{defined?($preload) && $preload ? $preload.join(' ') : ''}
}
    mk
  end

  def timestamp_file(name, target_prefix = nil)
    pat = {}
    name = '$(RUBYARCHDIR)' if name == '$(TARGET_SO_DIR)'
    install_dirs.each do |n, d|
      pat[n] = $` if /\$\(target_prefix\)\z/ =~ d
    end
    name = name.gsub(/\$\((#{pat.keys.join("|")})\)/) {pat[$1]+target_prefix}
    name.sub!(/(\$\((?:site)?arch\))\/*/, '')
    arch = $1 || ''
    name.chomp!('/')
    name = name.gsub(/(\$[({]|[})])|(\/+)|[^-.\w]+/) {$1 ? "" : $2 ? ".-." : "_"}
    File.join("$(TIMESTAMP_DIR)", arch, "#{name.sub(/\A(?=.)/, '.')}.time")
  end
  # :startdoc:

  # creates a stub Makefile.
  #
  def dummy_makefile(srcdir)
    configuration(srcdir) << <<RULES << CLEANINGS
CLEANFILES = #{$cleanfiles.join(' ')}
DISTCLEANFILES = #{$distcleanfiles.join(' ')}

all install static install-so install-rb: Makefile
	@$(NULLCMD)
.PHONY: all install static install-so install-rb
.PHONY: clean clean-so clean-static clean-rb

RULES
  end

  def each_compile_rules # :nodoc:
    vpath_splat = /\$\(\*VPATH\*\)/
    COMPILE_RULES.each do |rule|
      if vpath_splat =~ rule
        $VPATH.each do |path|
          yield rule.sub(vpath_splat) {path}
        end
      else
        yield rule
      end
    end
  end

  # Processes the data contents of the "depend" file.  Each line of this file
  # is expected to be a file name.
  #
  # Returns the output of findings, in Makefile format.
  #
  def depend_rules(depend)
    suffixes = []
    depout = []
    cont = implicit = nil
    impconv = proc do
      each_compile_rules {|rule| depout << (rule % implicit[0]) << implicit[1]}
      implicit = nil
    end
    ruleconv = proc do |line|
      if implicit
        if /\A\t/ =~ line
          implicit[1] << line
          next
        else
          impconv[]
        end
      end
      if m = /\A\.(\w+)\.(\w+)(?:\s*:)/.match(line)
        suffixes << m[1] << m[2]
        implicit = [[m[1], m[2]], [m.post_match]]
        next
      elsif RULE_SUBST and /\A(?!\s*\w+\s*=)[$\w][^#]*:/ =~ line
        line.sub!(/\s*\#.*$/, '')
        comment = $&
        line.gsub!(%r"(\s)(?!\.)([^$(){}+=:\s\\,]+)(?=\s|\z)") {$1 + RULE_SUBST % $2}
        line = line.chomp + comment + "\n" if comment
      end
      depout << line
    end
    depend.each_line do |line|
      line.gsub!(/\.o\b/, ".#{$OBJEXT}")
      line.gsub!(/\{\$\(VPATH\)\}/, "") unless $nmake
      line.gsub!(/\$\((?:hdr|top)dir\)\/config.h/, $config_h)
      if $nmake && /\A\s*\$\(RM|COPY\)/ =~ line
        line.gsub!(%r"[-\w\./]{2,}"){$&.tr("/", "\\")}
        line.gsub!(/(\$\((?!RM|COPY)[^:)]+)(?=\))/, '\1:/=\\')
      end
      if /(?:^|[^\\])(?:\\\\)*\\$/ =~ line
        (cont ||= []) << line
        next
      elsif cont
        line = (cont << line).join
        cont = nil
      end
      ruleconv.call(line)
    end
    if cont
      ruleconv.call(cont.join)
    elsif implicit
      impconv.call
    end
    unless suffixes.empty?
      depout.unshift(".SUFFIXES: ." + suffixes.uniq.join(" .") + "\n\n")
    end
    if $extconf_h
      depout.unshift("$(OBJS): $(RUBY_EXTCONF_H)\n\n")
      depout.unshift("$(OBJS): $(hdrdir)/ruby/win32.h\n\n") if $mswin or $mingw
    end
    depout.flatten!
    depout
  end

  # Generates the Makefile for your extension, passing along any options and
  # preprocessor constants that you may have generated through other methods.
  #
  # The +target+ name should correspond the name of the global function name
  # defined within your C extension, minus the +Init_+.  For example, if your
  # C extension is defined as +Init_foo+, then your target would simply be
  # "foo".
  #
  # If any "/" characters are present in the target name, only the last name
  # is interpreted as the target name, and the rest are considered toplevel
  # directory names, and the generated Makefile will be altered accordingly to
  # follow that directory structure.
  #
  # For example, if you pass "test/foo" as a target name, your extension will
  # be installed under the "test" directory.  This means that in order to
  # load the file within a Ruby program later, that directory structure will
  # have to be followed, e.g. <code>require 'test/foo'</code>.
  #
  # The +srcprefix+ should be used when your source files are not in the same
  # directory as your build script. This will not only eliminate the need for
  # you to manually copy the source files into the same directory as your
  # build script, but it also sets the proper +target_prefix+ in the generated
  # Makefile.
  #
  # Setting the +target_prefix+ will, in turn, install the generated binary in
  # a directory under your <code>RbConfig::CONFIG['sitearchdir']</code> that
  # mimics your local filesystem when you run <code>make install</code>.
  #
  # For example, given the following file tree:
  #
  #   ext/
  #     extconf.rb
  #     test/
  #       foo.c
  #
  # And given the following code:
  #
  #   create_makefile('test/foo', 'test')
  #
  # That will set the +target_prefix+ in the generated Makefile to "test".
  # That, in turn, will create the following file tree when installed via the
  # <code>make install</code> command:
  #
  #   /path/to/ruby/sitearchdir/test/foo.so
  #
  # It is recommended that you use this approach to generate your makefiles,
  # instead of copying files around manually, because some third party
  # libraries may depend on the +target_prefix+ being set properly.
  #
  # The +srcprefix+ argument can be used to override the default source
  # directory, i.e. the current directory.  It is included as part of the
  # +VPATH+ and added to the list of +INCFLAGS+.
  #
  def create_makefile(target, srcprefix = nil)
    $target = target
    libpath = $DEFLIBPATH|$LIBPATH
    message "creating Makefile\n"
    MakeMakefile.rm_f "#{CONFTEST}*"
    if CONFIG["DLEXT"] == $OBJEXT
      for lib in libs = $libs.split
        lib.sub!(/-l(.*)/, %%"lib\\1.#{$LIBEXT}"%)
      end
      $defs.push(format("-DEXTLIB='%s'", libs.join(",")))
    end

    if target.include?('/')
      target_prefix, target = File.split(target)
      target_prefix[0,0] = '/'
    else
      target_prefix = ""
    end

    srcprefix ||= "$(srcdir)/#{srcprefix}".chomp('/')
    RbConfig.expand(srcdir = srcprefix.dup)

    ext = ".#{$OBJEXT}"
    orig_srcs = Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")].sort
    if not $objs
      srcs = $srcs || orig_srcs
      $objs = []
      objs = srcs.inject(Hash.new {[]}) {|h, f|
        h.key?(o = File.basename(f, ".*") << ext) or $objs << o
        h[o] <<= f
        h
      }
      unless objs.delete_if {|b, f| f.size == 1}.empty?
        dups = objs.sort.map {|b, f|
          "#{b[/.*\./]}{#{f.collect {|n| n[/([^.]+)\z/]}.join(',')}}"
        }
        abort "source files duplication - #{dups.join(", ")}"
      end
    else
      $objs.collect! {|o| File.basename(o, ".*") << ext} unless $OBJEXT == "o"
      srcs = $srcs || $objs.collect {|o| o.chomp(ext) << ".c"}
    end
    $srcs = srcs

    hdrs = Dir[File.join(srcdir, "*.{#{HDR_EXT.join(%q{,})}}")]

    target = nil if $objs.empty?

    if target and EXPORT_PREFIX
      if File.exist?(File.join(srcdir, target + '.def'))
        deffile = "$(srcdir)/$(TARGET).def"
        unless EXPORT_PREFIX.empty?
          makedef = %{$(RUBY) -pe "$$_.sub!(/^(?=\\w)/,'#{EXPORT_PREFIX}') unless 1../^EXPORTS$/i" #{deffile}}
        end
      else
        makedef = %{(echo EXPORTS && echo $(TARGET_ENTRY))}
      end
      if makedef
        $cleanfiles << '$(DEFFILE)'
        origdef = deffile
        deffile = "$(TARGET)-$(arch).def"
      end
    end
    origdef ||= ''

    if $extout and $INSTALLFILES
      $cleanfiles.concat($INSTALLFILES.collect {|files, dir|File.join(dir, files.delete_prefix('./'))})
      $distcleandirs.concat($INSTALLFILES.collect {|files, dir| dir})
    end

    if $extmk and $static
      $defs << "-DRUBY_EXPORT=1"
    end

    if $extmk and not $extconf_h
      create_header
    end

    libpath = libpathflag(libpath)

    dllib = target ? "$(TARGET).#{CONFIG['DLEXT']}" : ""
    staticlib = target ? "$(TARGET).#$LIBEXT" : ""
    conf = configuration(srcprefix)
    conf << "\
libpath = #{($DEFLIBPATH|$LIBPATH).join(" ")}
LIBPATH = #{libpath}
DEFFILE = #{deffile}

CLEANFILES = #{$cleanfiles.join(' ')}
DISTCLEANFILES = #{$distcleanfiles.join(' ')}
DISTCLEANDIRS = #{$distcleandirs.join(' ')}

extout = #{$extout && $extout.quote}
extout_prefix = #{$extout_prefix}
target_prefix = #{target_prefix}
LOCAL_LIBS = #{$LOCAL_LIBS}
LIBS = #{$LIBRUBYARG} #{$libs} #{$LIBS}
ORIG_SRCS = #{orig_srcs.collect(&File.method(:basename)).join(' ')}
SRCS = $(ORIG_SRCS) #{(srcs - orig_srcs).collect(&File.method(:basename)).join(' ')}
OBJS = #{$objs.join(" ")}
HDRS = #{hdrs.map{|h| '$(srcdir)/' + File.basename(h)}.join(' ')}
LOCAL_HDRS = #{$headers.join(' ')}
TARGET = #{target}
TARGET_NAME = #{target && target[/\A\w+/]}
TARGET_ENTRY = #{EXPORT_PREFIX || ''}Init_$(TARGET_NAME)
DLLIB = #{dllib}
EXTSTATIC = #{$static || ""}
STATIC_LIB = #{staticlib unless $static.nil?}
#{!$extout && defined?($installed_list) ? "INSTALLED_LIST = #{$installed_list}\n" : ""}
TIMESTAMP_DIR = #{$extout && $extmk ? '$(extout)/.timestamp' : '.'}
" #"
    # TODO: fixme
    install_dirs.each {|d| conf << ("%-14s= %s\n" % d) if /^[[:upper:]]/ =~ d[0]}
    sodir = $extout ? '$(TARGET_SO_DIR)' : '$(RUBYARCHDIR)'
    n = '$(TARGET_SO_DIR)$(TARGET)'
    conf << "\
TARGET_SO_DIR =#{$extout ? " $(RUBYARCHDIR)/" : ''}
TARGET_SO     = $(TARGET_SO_DIR)$(DLLIB)
CLEANLIBS     = #{'$(TARGET_SO) ' if target}#{config_string('cleanlibs') {|t| t.gsub(/\$\*/) {n}}}
CLEANOBJS     = *.#{$OBJEXT} #{config_string('cleanobjs') {|t| t.gsub(/\$\*/, "$(TARGET)#{deffile ? '-$(arch)': ''}")} if target} *.bak
" #"

    conf = yield(conf) if block_given?
    mfile = open("Makefile", "wb")
    mfile.puts(conf)
    mfile.print "
all:    #{$extout ? "install" : target ? "$(DLLIB)" : "Makefile"}
static: #{$extmk && !$static ? "all" : "$(STATIC_LIB)#{$extout ? " install-rb" : ""}"}
.PHONY: all install static install-so install-rb
.PHONY: clean clean-so clean-static clean-rb
" #"
    mfile.print CLEANINGS
    fsep = config_string('BUILD_FILE_SEPARATOR') {|s| s unless s == "/"}
    if fsep
      sep = ":/=#{fsep}"
      fseprepl = proc {|s|
        s = s.gsub("/", fsep)
        s = s.gsub(/(\$\(\w+)(\))/) {$1+sep+$2}
        s.gsub(/(\$\{\w+)(\})/) {$1+sep+$2}
      }
      rsep = ":#{fsep}=/"
    else
      fseprepl = proc {|s| s}
      sep = ""
      rsep = ""
    end
    dirs = []
    mfile.print "install: install-so install-rb\n\n"
    dir = sodir.dup
    mfile.print("install-so: ")
    if target
      f = "$(DLLIB)"
      dest = "$(TARGET_SO)"
      stamp = timestamp_file(dir, target_prefix)
      if $extout
        mfile.puts dest
        mfile.print "clean-so::\n"
        mfile.print "\t-$(Q)$(RM) #{fseprepl[dest]} #{fseprepl[stamp]}\n"
        mfile.print "\t-$(Q)$(RMDIRS) #{fseprepl[dir]}#{$ignore_error}\n"
      else
        mfile.print "#{f} #{stamp}\n"
        mfile.print "\t$(INSTALL_PROG) #{fseprepl[f]} #{dir}\n"
        if defined?($installed_list)
          mfile.print "\t@echo #{dir}/#{File.basename(f)}>>$(INSTALLED_LIST)\n"
        end
      end
      mfile.print "clean-static::\n"
      mfile.print "\t-$(Q)$(RM) $(STATIC_LIB)\n"
    else
      mfile.puts "Makefile"
    end
    mfile.print("install-rb: pre-install-rb do-install-rb install-rb-default\n")
    mfile.print("install-rb-default: pre-install-rb-default do-install-rb-default\n")
    mfile.print("pre-install-rb: Makefile\n")
    mfile.print("pre-install-rb-default: Makefile\n")
    mfile.print("do-install-rb:\n")
    mfile.print("do-install-rb-default:\n")
    for sfx, i in [["-default", [["lib/**/*.rb", "$(RUBYLIBDIR)", "lib"]]], ["", $INSTALLFILES]]
      files = install_files(mfile, i, nil, srcprefix) or next
      for dir, *files in files
        unless dirs.include?(dir)
          dirs << dir
          mfile.print "pre-install-rb#{sfx}: #{timestamp_file(dir, target_prefix)}\n"
        end
        for f in files
          dest = "#{dir}/#{File.basename(f)}"
          mfile.print("do-install-rb#{sfx}: #{dest}\n")
          mfile.print("#{dest}: #{f} #{timestamp_file(dir, target_prefix)}\n")
          mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D)\n")
          if defined?($installed_list) and !$extout
            mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n")
          end
          if $extout
            mfile.print("clean-rb#{sfx}::\n")
            mfile.print("\t-$(Q)$(RM) #{fseprepl[dest]}\n")
          end
        end
      end
      mfile.print "pre-install-rb#{sfx}:\n"
      if files.empty?
        mfile.print("\t@$(NULLCMD)\n")
      else
        q = "$(MAKE) -q do-install-rb#{sfx}"
        if $nmake
          mfile.print "!if \"$(Q)\" == \"@\"\n\t@#{q} || \\\n!endif\n\t"
        else
          mfile.print "\t$(Q1:0=@#{q} || )"
        end
        mfile.print "$(ECHO1:0=echo) installing#{sfx.sub(/^-/, " ")} #{target} libraries\n"
      end
      if $extout
        dirs.uniq!
        unless dirs.empty?
          mfile.print("clean-rb#{sfx}::\n")
          for dir in dirs.sort_by {|d| -d.count('/')}
            stamp = timestamp_file(dir, target_prefix)
            mfile.print("\t-$(Q)$(RM) #{fseprepl[stamp]}\n")
            mfile.print("\t-$(Q)$(RMDIRS) #{fseprepl[dir]}#{$ignore_error}\n")
          end
        end
      end
    end
    dirs.unshift(sodir) if target and !dirs.include?(sodir)
    dirs.each do |d|
      t = timestamp_file(d, target_prefix)
      mfile.print "#{t}:\n\t$(Q) $(MAKEDIRS) $(@D) #{d}\n\t$(Q) $(TOUCH) $@\n"
    end

    mfile.print <<-SITEINSTALL

site-install: site-install-so site-install-rb
site-install-so: install-so
site-install-rb: install-rb

    SITEINSTALL

    return unless target

    mfile.print ".SUFFIXES: .#{(SRC_EXT + [$OBJEXT, $ASMEXT]).compact.join(' .')}\n"
    mfile.print "\n"

    compile_command = "\n\t$(ECHO) compiling $(<#{rsep})\n\t$(Q) %s\n\n"
    command = compile_command % COMPILE_CXX
    asm_command = compile_command.sub(/compiling/, 'translating') % ASSEMBLE_CXX
    CXX_EXT.each do |e|
      each_compile_rules do |rule|
        mfile.printf(rule, e, $OBJEXT)
        mfile.print(command)
        mfile.printf(rule, e, $ASMEXT)
        mfile.print(asm_command)
      end
    end
    command = compile_command % COMPILE_C
    asm_command = compile_command.sub(/compiling/, 'translating') % ASSEMBLE_C
    C_EXT.each do |e|
      each_compile_rules do |rule|
        mfile.printf(rule, e, $OBJEXT)
        mfile.print(command)
        mfile.printf(rule, e, $ASMEXT)
        mfile.print(asm_command)
      end
    end

    mfile.print "$(TARGET_SO): "
    mfile.print "$(DEFFILE) " if makedef
    mfile.print "$(OBJS) Makefile"
    mfile.print " #{timestamp_file(sodir, target_prefix)}" if $extout
    mfile.print "\n"
    mfile.print "\t$(ECHO) linking shared-object #{target_prefix.sub(/\A\/(.*)/, '\1/')}$(DLLIB)\n"
    mfile.print "\t-$(Q)$(RM) $(@#{sep})\n"
    link_so = LINK_SO.gsub(/^/, "\t$(Q) ")
    if srcs.any?(&%r"\.(?:#{CXX_EXT.join('|')})\z".method(:===))
      link_so = link_so.sub(/\bLDSHARED\b/, '\&XX')
    end
    mfile.print link_so, "\n\n"
    unless $static.nil?
      mfile.print "$(STATIC_LIB): $(OBJS)\n\t-$(Q)$(RM) $(@#{sep})\n\t"
      mfile.print "$(ECHO) linking static-library $(@#{rsep})\n\t$(Q) "
      mfile.print "$(AR) #{config_string('ARFLAGS') || 'cru '}$@ $(OBJS)"
      config_string('RANLIB') do |ranlib|
        mfile.print "\n\t-$(Q)#{ranlib} $(@) 2> /dev/null || true"
      end
    end
    mfile.print "\n\n"
    if makedef
      mfile.print "$(DEFFILE): #{origdef}\n"
      mfile.print "\t$(ECHO) generating $(@#{rsep})\n"
      mfile.print "\t$(Q) #{makedef} > $@\n\n"
    end

    depend = File.join(srcdir, "depend")
    if File.exist?(depend)
      mfile.print("###\n", *depend_rules(File.read(depend)))
    else
      mfile.print "$(OBJS): $(HDRS) $(ruby_headers)\n"
    end

    $makefile_created = true
  ensure
    mfile.close if mfile
  end

  # :stopdoc:

  def init_mkmf(config = CONFIG, rbconfig = RbConfig::CONFIG)
    $makefile_created = false
    $arg_config = []
    $enable_shared = config['ENABLE_SHARED'] == 'yes'
    $defs = []
    $extconf_h = nil
    $config_dirs = {}

    if $warnflags = CONFIG['warnflags'] and CONFIG['GCC'] == 'yes'
      # turn warnings into errors only for bundled extensions.
      config['warnflags'] = $warnflags.gsub(/(\A|\s)-Werror[-=]/, '\1-W')
      if /icc\z/ =~ config['CC']
        config['warnflags'].gsub!(/(\A|\s)-W(?:division-by-zero|deprecated-declarations)/, '\1')
      end
      RbConfig.expand(rbconfig['warnflags'] = config['warnflags'].dup)
      config.each do |key, val|
        RbConfig.expand(rbconfig[key] = val.dup) if /warnflags/ =~ val
      end
      $warnflags = config['warnflags'] unless $extmk
    end
    if (w = rbconfig['CC_WRAPPER']) and !w.empty? and !File.executable?(w)
      rbconfig['CC_WRAPPER'] = config['CC_WRAPPER'] = ''
    end
    $CFLAGS = with_config("cflags", arg_config("CFLAGS", config["CFLAGS"])).dup
    $CXXFLAGS = (with_config("cxxflags", arg_config("CXXFLAGS", config["CXXFLAGS"]))||'').dup
    $ARCH_FLAG = with_config("arch_flag", arg_config("ARCH_FLAG", config["ARCH_FLAG"])).dup
    $CPPFLAGS = with_config("cppflags", arg_config("CPPFLAGS", config["CPPFLAGS"])).dup
    $LDFLAGS = with_config("ldflags", arg_config("LDFLAGS", config["LDFLAGS"])).dup
    $INCFLAGS = "-I$(arch_hdrdir)"
    $INCFLAGS << " -I$(hdrdir)/ruby/backward" unless $extmk
    $INCFLAGS << " -I$(hdrdir) -I$(srcdir)"
    $DLDFLAGS = with_config("dldflags", arg_config("DLDFLAGS", config["DLDFLAGS"])).dup
    config_string("ADDITIONAL_DLDFLAGS") {|flags| $DLDFLAGS << " " << flags} unless $extmk
    $LIBEXT = config['LIBEXT'].dup
    $OBJEXT = config["OBJEXT"].dup
    $EXEEXT = config["EXEEXT"].dup
    $ASMEXT = config_string('ASMEXT', &:dup) || 'S'
    $LIBS = "#{config['LIBS']} #{config['DLDLIBS']}"
    $LIBRUBYARG = ""
    $LIBRUBYARG_STATIC = config['LIBRUBYARG_STATIC']
    $LIBRUBYARG_SHARED = config['LIBRUBYARG_SHARED']
    $DEFLIBPATH = [$extmk ? "$(topdir)" : "$(#{config["libdirname"] || "libdir"})"]
    $DEFLIBPATH.unshift(".")
    $LIBPATH = []
    $INSTALLFILES = []
    $NONINSTALLFILES = [/~\z/, /\A#.*#\z/, /\A\.#/, /\.bak\z/i, /\.orig\z/, /\.rej\z/, /\.l[ao]\z/, /\.o\z/]
    $VPATH = %w[$(srcdir) $(arch_hdrdir)/ruby $(hdrdir)/ruby]

    $objs = nil
    $srcs = nil
    $headers = []
    $libs = ""
    if $enable_shared or RbConfig.expand(config["LIBRUBY"].dup) != RbConfig.expand(config["LIBRUBY_A"].dup)
      $LIBRUBYARG = config['LIBRUBYARG']
    end

    $LOCAL_LIBS = ""

    $cleanfiles = config_string('CLEANFILES') {|s| Shellwords.shellwords(s)} || []
    $cleanfiles << "mkmf.log"
    $distcleanfiles = config_string('DISTCLEANFILES') {|s| Shellwords.shellwords(s)} || []
    $distcleandirs = config_string('DISTCLEANDIRS') {|s| Shellwords.shellwords(s)} || []

    $extout ||= nil
    $extout_prefix ||= nil

    $arg_config.clear
    $config_dirs.clear
    dir_config("opt")
  end

  FailedMessage = <<MESSAGE
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
MESSAGE

  # Returns whether or not the Makefile was successfully generated. If not,
  # the script will abort with an error message.
  #
  # Internal use only.
  #
  def mkmf_failed(path)
    unless $makefile_created or File.exist?("Makefile")
      opts = $arg_config.collect {|t, n| "\t#{t}#{n ? "=#{n}" : ""}\n"}
      abort "*** #{path} failed ***\n" + FailedMessage + opts.join
    end
  end

  private

  def _libdir_basename
    @libdir_basename ||= config_string("libdir") {|name| name[/\A\$\(exec_prefix\)\/(.*)/, 1]} || "lib"
  end

  def MAIN_DOES_NOTHING(*refs)
    src = MAIN_DOES_NOTHING
    unless refs.empty?
      src = src.sub(/\{/) do
        $& +
          "\n  if (argc > 1000000) {\n" +
          refs.map {|n|"    int (* volatile #{n}p)(void)=(int (*)(void))&#{n};\n"}.join("") +
          refs.map {|n|"    printf(\"%d\", (*#{n}p)());\n"}.join("") +
          "  }\n"
      end
    end
    src
  end

  extend self
  init_mkmf

  $make = with_config("make-prog", ENV["MAKE"] || "make")
  make, = Shellwords.shellwords($make)
  $nmake = nil
  case
  when $mswin
    $nmake = ?m if /nmake/i =~ make
  end
  $ignore_error = $nmake ? '' : ' 2> /dev/null || true'

  RbConfig::CONFIG["srcdir"] = CONFIG["srcdir"] =
    $srcdir = arg_config("--srcdir", File.dirname($0))
  $configure_args["--topsrcdir"] ||= $srcdir
  if $curdir = arg_config("--curdir")
    RbConfig.expand(curdir = $curdir.dup)
  else
    curdir = $curdir = "."
  end
  unless File.expand_path(RbConfig::CONFIG["topdir"]) == File.expand_path(curdir)
    CONFIG["topdir"] = $curdir
    RbConfig::CONFIG["topdir"] = curdir
  end
  $configure_args["--topdir"] ||= $curdir
  $ruby = arg_config("--ruby", File.join(RbConfig::CONFIG["bindir"], CONFIG["ruby_install_name"]))

  RbConfig.expand(CONFIG["RUBY_SO_NAME"])

  # :startdoc:

  split = Shellwords.method(:shellwords).to_proc

  EXPORT_PREFIX = config_string('EXPORT_PREFIX') {|s| s.strip}

  hdr = ['#include "ruby.h"' "\n"]
  config_string('COMMON_MACROS') do |s|
    Shellwords.shellwords(s).each do |w|
      w, v = w.split(/=/, 2)
      hdr << "#ifndef #{w}"
      hdr << "#define #{[w, v].compact.join(" ")}"
      hdr << "#endif /* #{w} */"
    end
  end
  config_string('COMMON_HEADERS') do |s|
    Shellwords.shellwords(s).each {|w| hdr << "#include <#{w}>"}
  end

  ##
  # Common headers for Ruby C extensions

  COMMON_HEADERS = hdr.join("\n")

  ##
  # Common libraries for Ruby C extensions

  COMMON_LIBS = config_string('COMMON_LIBS', &split) || []

  ##
  # make compile rules

  COMPILE_RULES = config_string('COMPILE_RULES', &split) || %w[.%s.%s:]
  RULE_SUBST = config_string('RULE_SUBST')

  ##
  # Command which will compile C files in the generated Makefile

  COMPILE_C = config_string('COMPILE_C') || '$(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<'

  ##
  # Command which will compile C++ files in the generated Makefile

  COMPILE_CXX = config_string('COMPILE_CXX') || '$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<'

  ##
  # Command which will translate C files to assembler sources in the generated Makefile

  ASSEMBLE_C = config_string('ASSEMBLE_C') || COMPILE_C.sub(/(?<=\s)-c(?=\s)/, '-S')

  ##
  # Command which will translate C++ files to assembler sources in the generated Makefile

  ASSEMBLE_CXX = config_string('ASSEMBLE_CXX') || COMPILE_CXX.sub(/(?<=\s)-c(?=\s)/, '-S')

  ##
  # Command which will compile a program in order to test linking a library

  TRY_LINK = config_string('TRY_LINK') ||
    "$(CC) #{OUTFLAG}#{CONFTEST}#{$EXEEXT} $(INCFLAGS) $(CPPFLAGS) " \
    "$(CFLAGS) $(src) $(LIBPATH) $(LDFLAGS) $(ARCH_FLAG) $(LOCAL_LIBS) $(LIBS)"

  ##
  # Command which will link a shared library

  LINK_SO = (config_string('LINK_SO') || "").sub(/^$/) do
    if CONFIG["DLEXT"] == $OBJEXT
      "ld $(DLDFLAGS) -r -o $@ $(OBJS)\n"
    else
      "$(LDSHARED) #{OUTFLAG}$@ $(OBJS) " \
      "$(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)"
    end
  end

  ##
  # Argument which will add a library path to the linker

  LIBPATHFLAG = config_string('LIBPATHFLAG') || ' -L%s'
  RPATHFLAG = config_string('RPATHFLAG') || ''

  ##
  # Argument which will add a library to the linker

  LIBARG = config_string('LIBARG') || '-l%s'

  ##
  # A C main function which does no work

  MAIN_DOES_NOTHING = config_string('MAIN_DOES_NOTHING') || "int main(int argc, char **argv)\n{\n  return !!argv[argc];\n}"
  UNIVERSAL_INTS = config_string('UNIVERSAL_INTS') {|s| Shellwords.shellwords(s)} ||
    %w[int short long long\ long]

  sep = config_string('BUILD_FILE_SEPARATOR') {|s| ":/=#{s}" if s != "/"} || ""

  ##
  # Makefile rules that will clean the extension build directory

  CLEANINGS = "
clean-static::
clean-rb-default::
clean-rb::
clean-so::
clean: clean-so clean-static clean-rb-default clean-rb
\t\t-$(Q)$(RM) $(CLEANLIBS#{sep}) $(CLEANOBJS#{sep}) $(CLEANFILES#{sep}) .*.time

distclean-rb-default::
distclean-rb::
distclean-so::
distclean-static::
distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
\t\t-$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) #{CONFTEST}.* mkmf.log
\t\t-$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES#{sep})
\t\t-$(Q)$(RMDIRS) $(DISTCLEANDIRS#{sep})#{$ignore_error}

realclean: distclean
"

  @lang = Hash.new(self)

  def self.[](name)
    @lang.fetch(name)
  end

  def self.[]=(name, mod)
    @lang[name] = mod
  end

  self["C++"] = Module.new do
    include MakeMakefile
    extend self

    CONFTEST_CXX = "#{CONFTEST}.#{config_string('CXX_EXT') || CXX_EXT[0]}"

    TRY_LINK_CXX = config_string('TRY_LINK_CXX') ||
                   ((cmd = TRY_LINK.gsub(/\$\(C(?:C|(FLAGS))\)/, '$(CXX\1)')) != TRY_LINK && cmd) ||
                   "$(CXX) #{OUTFLAG}#{CONFTEST}#{$EXEEXT} $(INCFLAGS) $(CPPFLAGS) " \
                   "$(CXXFLAGS) $(src) $(LIBPATH) $(LDFLAGS) $(ARCH_FLAG) $(LOCAL_LIBS) $(LIBS)"

    def have_devel?
      unless defined? @have_devel
        @have_devel = true
        @have_devel = try_link(MAIN_DOES_NOTHING)
      end
      @have_devel
    end

    def conftest_source
      CONFTEST_CXX
    end

    def cc_command(opt="")
      conf = cc_config(opt)
      RbConfig::expand("$(CXX) #$INCFLAGS #$CPPFLAGS #$CXXFLAGS #$ARCH_FLAG #{opt} -c #{CONFTEST_CXX}",
                       conf)
    end

    def link_command(ldflags, *opts)
      conf = link_config(ldflags, *opts)
      RbConfig::expand(TRY_LINK_CXX.dup, conf)
    end
  end
end

include MakeMakefile

if not $extmk and /\A(extconf|makefile).rb\z/ =~ File.basename($0)
  END {mkmf_failed($0)}
end
PKEH[��vb�2�2share/ruby/csv/table.rbnu�[���# frozen_string_literal: true

require "forwardable"

class CSV
  #
  # A CSV::Table is a two-dimensional data structure for representing CSV
  # documents. Tables allow you to work with the data by row or column,
  # manipulate the data, and even convert the results back to CSV, if needed.
  #
  # All tables returned by CSV will be constructed from this class, if header
  # row processing is activated.
  #
  class Table
    #
    # Constructs a new CSV::Table from +array_of_rows+, which are expected
    # to be CSV::Row objects. All rows are assumed to have the same headers.
    #
    # The optional +headers+ parameter can be set to Array of headers.
    # If headers aren't set, headers are fetched from CSV::Row objects.
    # Otherwise, headers() method will return headers being set in
    # headers argument.
    #
    # A CSV::Table object supports the following Array methods through
    # delegation:
    #
    # * empty?()
    # * length()
    # * size()
    #
    def initialize(array_of_rows, headers: nil)
      @table = array_of_rows
      @headers = headers
      unless @headers
        if @table.empty?
          @headers = []
        else
          @headers = @table.first.headers
        end
      end

      @mode  = :col_or_row
    end

    # The current access mode for indexing and iteration.
    attr_reader :mode

    # Internal data format used to compare equality.
    attr_reader :table
    protected   :table

    ### Array Delegation ###

    extend Forwardable
    def_delegators :@table, :empty?, :length, :size

    #
    # Returns a duplicate table object, in column mode. This is handy for
    # chaining in a single call without changing the table mode, but be aware
    # that this method can consume a fair amount of memory for bigger data sets.
    #
    # This method returns the duplicate table for chaining. Don't chain
    # destructive methods (like []=()) this way though, since you are working
    # with a duplicate.
    #
    def by_col
      self.class.new(@table.dup).by_col!
    end

    #
    # Switches the mode of this table to column mode. All calls to indexing and
    # iteration methods will work with columns until the mode is changed again.
    #
    # This method returns the table and is safe to chain.
    #
    def by_col!
      @mode = :col

      self
    end

    #
    # Returns a duplicate table object, in mixed mode. This is handy for
    # chaining in a single call without changing the table mode, but be aware
    # that this method can consume a fair amount of memory for bigger data sets.
    #
    # This method returns the duplicate table for chaining.  Don't chain
    # destructive methods (like []=()) this way though, since you are working
    # with a duplicate.
    #
    def by_col_or_row
      self.class.new(@table.dup).by_col_or_row!
    end

    #
    # Switches the mode of this table to mixed mode. All calls to indexing and
    # iteration methods will use the default intelligent indexing system until
    # the mode is changed again. In mixed mode an index is assumed to be a row
    # reference while anything else is assumed to be column access by headers.
    #
    # This method returns the table and is safe to chain.
    #
    def by_col_or_row!
      @mode = :col_or_row

      self
    end

    #
    # Returns a duplicate table object, in row mode.  This is handy for chaining
    # in a single call without changing the table mode, but be aware that this
    # method can consume a fair amount of memory for bigger data sets.
    #
    # This method returns the duplicate table for chaining.  Don't chain
    # destructive methods (like []=()) this way though, since you are working
    # with a duplicate.
    #
    def by_row
      self.class.new(@table.dup).by_row!
    end

    #
    # Switches the mode of this table to row mode. All calls to indexing and
    # iteration methods will work with rows until the mode is changed again.
    #
    # This method returns the table and is safe to chain.
    #
    def by_row!
      @mode = :row

      self
    end

    #
    # Returns the headers for the first row of this table (assumed to match all
    # other rows). The headers Array passed to CSV::Table.new is returned for
    # empty tables.
    #
    def headers
      if @table.empty?
        @headers.dup
      else
        @table.first.headers
      end
    end

    #
    # In the default mixed mode, this method returns rows for index access and
    # columns for header access. You can force the index association by first
    # calling by_col!() or by_row!().
    #
    # Columns are returned as an Array of values.  Altering that Array has no
    # effect on the table.
    #
    def [](index_or_header)
      if @mode == :row or  # by index
         (@mode == :col_or_row and (index_or_header.is_a?(Integer) or index_or_header.is_a?(Range)))
        @table[index_or_header]
      else                 # by header
        @table.map { |row| row[index_or_header] }
      end
    end

    #
    # In the default mixed mode, this method assigns rows for index access and
    # columns for header access. You can force the index association by first
    # calling by_col!() or by_row!().
    #
    # Rows may be set to an Array of values (which will inherit the table's
    # headers()) or a CSV::Row.
    #
    # Columns may be set to a single value, which is copied to each row of the
    # column, or an Array of values. Arrays of values are assigned to rows top
    # to bottom in row major order. Excess values are ignored and if the Array
    # does not have a value for each row the extra rows will receive a +nil+.
    #
    # Assigning to an existing column or row clobbers the data. Assigning to
    # new columns creates them at the right end of the table.
    #
    def []=(index_or_header, value)
      if @mode == :row or  # by index
         (@mode == :col_or_row and index_or_header.is_a? Integer)
        if value.is_a? Array
          @table[index_or_header] = Row.new(headers, value)
        else
          @table[index_or_header] = value
        end
      else                 # set column
        unless index_or_header.is_a? Integer
          index = @headers.index(index_or_header) || @headers.size
          @headers[index] = index_or_header
        end
        if value.is_a? Array  # multiple values
          @table.each_with_index do |row, i|
            if row.header_row?
              row[index_or_header] = index_or_header
            else
              row[index_or_header] = value[i]
            end
          end
        else                  # repeated value
          @table.each do |row|
            if row.header_row?
              row[index_or_header] = index_or_header
            else
              row[index_or_header] = value
            end
          end
        end
      end
    end

    #
    # The mixed mode default is to treat a list of indices as row access,
    # returning the rows indicated. Anything else is considered columnar
    # access. For columnar access, the return set has an Array for each row
    # with the values indicated by the headers in each Array. You can force
    # column or row mode using by_col!() or by_row!().
    #
    # You cannot mix column and row access.
    #
    def values_at(*indices_or_headers)
      if @mode == :row or  # by indices
         ( @mode == :col_or_row and indices_or_headers.all? do |index|
                                      index.is_a?(Integer)         or
                                      ( index.is_a?(Range)         and
                                        index.first.is_a?(Integer) and
                                        index.last.is_a?(Integer) )
                                    end )
        @table.values_at(*indices_or_headers)
      else                 # by headers
        @table.map { |row| row.values_at(*indices_or_headers) }
      end
    end

    #
    # Adds a new row to the bottom end of this table. You can provide an Array,
    # which will be converted to a CSV::Row (inheriting the table's headers()),
    # or a CSV::Row.
    #
    # This method returns the table for chaining.
    #
    def <<(row_or_array)
      if row_or_array.is_a? Array  # append Array
        @table << Row.new(headers, row_or_array)
      else                         # append Row
        @table << row_or_array
      end

      self # for chaining
    end

    #
    # A shortcut for appending multiple rows. Equivalent to:
    #
    #   rows.each { |row| self << row }
    #
    # This method returns the table for chaining.
    #
    def push(*rows)
      rows.each { |row| self << row }

      self # for chaining
    end

    #
    # Removes and returns the indicated columns or rows. In the default mixed
    # mode indices refer to rows and everything else is assumed to be a column
    # headers. Use by_col!() or by_row!() to force the lookup.
    #
    def delete(*indexes_or_headers)
      if indexes_or_headers.empty?
        raise ArgumentError, "wrong number of arguments (given 0, expected 1+)"
      end
      deleted_values = indexes_or_headers.map do |index_or_header|
        if @mode == :row or  # by index
            (@mode == :col_or_row and index_or_header.is_a? Integer)
          @table.delete_at(index_or_header)
        else                 # by header
          if index_or_header.is_a? Integer
            @headers.delete_at(index_or_header)
          else
            @headers.delete(index_or_header)
          end
          @table.map { |row| row.delete(index_or_header).last }
        end
      end
      if indexes_or_headers.size == 1
        deleted_values[0]
      else
        deleted_values
      end
    end

    #
    # Removes any column or row for which the block returns +true+. In the
    # default mixed mode or row mode, iteration is the standard row major
    # walking of rows. In column mode, iteration will +yield+ two element
    # tuples containing the column name and an Array of values for that column.
    #
    # This method returns the table for chaining.
    #
    # If no block is given, an Enumerator is returned.
    #
    def delete_if(&block)
      return enum_for(__method__) { @mode == :row or @mode == :col_or_row ? size : headers.size } unless block_given?

      if @mode == :row or @mode == :col_or_row  # by index
        @table.delete_if(&block)
      else                                      # by header
        deleted = []
        headers.each do |header|
          deleted << delete(header) if yield([header, self[header]])
        end
      end

      self # for chaining
    end

    include Enumerable

    #
    # In the default mixed mode or row mode, iteration is the standard row major
    # walking of rows. In column mode, iteration will +yield+ two element
    # tuples containing the column name and an Array of values for that column.
    #
    # This method returns the table for chaining.
    #
    # If no block is given, an Enumerator is returned.
    #
    def each(&block)
      return enum_for(__method__) { @mode == :col ? headers.size : size } unless block_given?

      if @mode == :col
        headers.each { |header| yield([header, self[header]]) }
      else
        @table.each(&block)
      end

      self # for chaining
    end

    # Returns +true+ if all rows of this table ==() +other+'s rows.
    def ==(other)
      return @table == other.table if other.is_a? CSV::Table
      @table == other
    end

    #
    # Returns the table as an Array of Arrays. Headers will be the first row,
    # then all of the field rows will follow.
    #
    def to_a
      array = [headers]
      @table.each do |row|
        array.push(row.fields) unless row.header_row?
      end

      array
    end

    #
    # Returns the table as a complete CSV String. Headers will be listed first,
    # then all of the field rows.
    #
    # This method assumes you want the Table.headers(), unless you explicitly
    # pass <tt>:write_headers => false</tt>.
    #
    def to_csv(write_headers: true, **options)
      array = write_headers ? [headers.to_csv(**options)] : []
      @table.each do |row|
        array.push(row.fields.to_csv(**options)) unless row.header_row?
      end

      array.join("")
    end
    alias_method :to_s, :to_csv

    #
    # Extracts the nested value specified by the sequence of +index+ or +header+ objects by calling dig at each step,
    # returning nil if any intermediate step is nil.
    #
    def dig(index_or_header, *index_or_headers)
      value = self[index_or_header]
      if value.nil?
        nil
      elsif index_or_headers.empty?
        value
      else
        unless value.respond_to?(:dig)
          raise TypeError, "#{value.class} does not have \#dig method"
        end
        value.dig(*index_or_headers)
      end
    end

    # Shows the mode and size of this table in a US-ASCII String.
    def inspect
      "#<#{self.class} mode:#{@mode} row_count:#{to_a.size}>".encode("US-ASCII")
    end
  end
end
PKEH[�#vvshare/ruby/csv/delete_suffix.rbnu�[���# frozen_string_literal: true

# This provides String#delete_suffix? for Ruby 2.4.
unless String.method_defined?(:delete_suffix)
  class CSV
    module DeleteSuffix
      refine String do
        def delete_suffix(suffix)
          if end_with?(suffix)
            self[0...-suffix.size]
          else
            self
          end
        end
      end
    end
  end
end
PKEH[�jH��{�{share/ruby/csv/parser.rbnu�[���# frozen_string_literal: true

require "strscan"

require_relative "delete_suffix"
require_relative "match_p"
require_relative "row"
require_relative "table"

using CSV::DeleteSuffix if CSV.const_defined?(:DeleteSuffix)
using CSV::MatchP if CSV.const_defined?(:MatchP)

class CSV
  # Note: Don't use this class directly. This is an internal class.
  class Parser
    #
    # A CSV::Parser is m17n aware. The parser works in the Encoding of the IO
    # or String object being read from or written to. Your data is never transcoded
    # (unless you ask Ruby to transcode it for you) and will literally be parsed in
    # the Encoding it is in. Thus CSV will return Arrays or Rows of Strings in the
    # Encoding of your data. This is accomplished by transcoding the parser itself
    # into your Encoding.
    #

    # Raised when encoding is invalid.
    class InvalidEncoding < StandardError
    end

    #
    # CSV::Scanner receives a CSV output, scans it and return the content.
    # It also controls the life cycle of the object with its methods +keep_start+,
    # +keep_end+, +keep_back+, +keep_drop+.
    #
    # Uses StringScanner (the official strscan gem). Strscan provides lexical
    # scanning operations on a String. We inherit its object and take advantage
    # on the methods. For more information, please visit:
    # https://ruby-doc.org/stdlib-2.6.1/libdoc/strscan/rdoc/StringScanner.html
    #
    class Scanner < StringScanner
      alias_method :scan_all, :scan

      def initialize(*args)
        super
        @keeps = []
      end

      def each_line(row_separator)
        position = pos
        rest.each_line(row_separator) do |line|
          position += line.bytesize
          self.pos = position
          yield(line)
        end
      end

      def keep_start
        @keeps.push(pos)
      end

      def keep_end
        start = @keeps.pop
        string.byteslice(start, pos - start)
      end

      def keep_back
        self.pos = @keeps.pop
      end

      def keep_drop
        @keeps.pop
      end
    end

    #
    # CSV::InputsScanner receives IO inputs, encoding and the chunk_size.
    # It also controls the life cycle of the object with its methods +keep_start+,
    # +keep_end+, +keep_back+, +keep_drop+.
    #
    # CSV::InputsScanner.scan() tries to match with pattern at the current position.
    # If there's a match, the scanner advances the “scan pointer” and returns the matched string.
    # Otherwise, the scanner returns nil.
    #
    # CSV::InputsScanner.rest() returns the “rest” of the string (i.e. everything after the scan pointer).
    # If there is no more data (eos? = true), it returns "".
    #
    class InputsScanner
      def initialize(inputs, encoding, chunk_size: 8192)
        @inputs = inputs.dup
        @encoding = encoding
        @chunk_size = chunk_size
        @last_scanner = @inputs.empty?
        @keeps = []
        read_chunk
      end

      def each_line(row_separator)
        buffer = nil
        input = @scanner.rest
        position = @scanner.pos
        offset = 0
        n_row_separator_chars = row_separator.size
        while true
          input.each_line(row_separator) do |line|
            @scanner.pos += line.bytesize
            if buffer
              if n_row_separator_chars == 2 and
                buffer.end_with?(row_separator[0]) and
                line.start_with?(row_separator[1])
                buffer << line[0]
                line = line[1..-1]
                position += buffer.bytesize + offset
                @scanner.pos = position
                offset = 0
                yield(buffer)
                buffer = nil
                next if line.empty?
              else
                buffer << line
                line = buffer
                buffer = nil
              end
            end
            if line.end_with?(row_separator)
              position += line.bytesize + offset
              @scanner.pos = position
              offset = 0
              yield(line)
            else
              buffer = line
            end
          end
          break unless read_chunk
          input = @scanner.rest
          position = @scanner.pos
          offset = -buffer.bytesize if buffer
        end
        yield(buffer) if buffer
      end

      def scan(pattern)
        value = @scanner.scan(pattern)
        return value if @last_scanner

        if value
          read_chunk if @scanner.eos?
          return value
        else
          nil
        end
      end

      def scan_all(pattern)
        value = @scanner.scan(pattern)
        return value if @last_scanner

        return nil if value.nil?
        while @scanner.eos? and read_chunk and (sub_value = @scanner.scan(pattern))
          value << sub_value
        end
        value
      end

      def eos?
        @scanner.eos?
      end

      def keep_start
        @keeps.push([@scanner.pos, nil])
      end

      def keep_end
        start, buffer = @keeps.pop
        keep = @scanner.string.byteslice(start, @scanner.pos - start)
        if buffer
          buffer << keep
          keep = buffer
        end
        keep
      end

      def keep_back
        start, buffer = @keeps.pop
        if buffer
          string = @scanner.string
          keep = string.byteslice(start, string.bytesize - start)
          if keep and not keep.empty?
            @inputs.unshift(StringIO.new(keep))
            @last_scanner = false
          end
          @scanner = StringScanner.new(buffer)
        else
          @scanner.pos = start
        end
        read_chunk if @scanner.eos?
      end

      def keep_drop
        @keeps.pop
      end

      def rest
        @scanner.rest
      end

      private
      def read_chunk
        return false if @last_scanner

        unless @keeps.empty?
          keep = @keeps.last
          keep_start = keep[0]
          string = @scanner.string
          keep_data = string.byteslice(keep_start, @scanner.pos - keep_start)
          if keep_data
            keep_buffer = keep[1]
            if keep_buffer
              keep_buffer << keep_data
            else
              keep[1] = keep_data.dup
            end
          end
          keep[0] = 0
        end

        input = @inputs.first
        case input
        when StringIO
          string = input.read
          raise InvalidEncoding unless string.valid_encoding?
          @scanner = StringScanner.new(string)
          @inputs.shift
          @last_scanner = @inputs.empty?
          true
        else
          chunk = input.gets(nil, @chunk_size)
          if chunk
            raise InvalidEncoding unless chunk.valid_encoding?
            @scanner = StringScanner.new(chunk)
            if input.respond_to?(:eof?) and input.eof?
              @inputs.shift
              @last_scanner = @inputs.empty?
            end
            true
          else
            @scanner = StringScanner.new("".encode(@encoding))
            @inputs.shift
            @last_scanner = @inputs.empty?
            if @last_scanner
              false
            else
              read_chunk
            end
          end
        end
      end
    end

    def initialize(input, options)
      @input = input
      @options = options
      @samples = []

      prepare
    end

    def column_separator
      @column_separator
    end

    def row_separator
      @row_separator
    end

    def quote_character
      @quote_character
    end

    def field_size_limit
      @field_size_limit
    end

    def skip_lines
      @skip_lines
    end

    def unconverted_fields?
      @unconverted_fields
    end

    def headers
      @headers
    end

    def header_row?
      @use_headers and @headers.nil?
    end

    def return_headers?
      @return_headers
    end

    def skip_blanks?
      @skip_blanks
    end

    def liberal_parsing?
      @liberal_parsing
    end

    def lineno
      @lineno
    end

    def line
      last_line
    end

    def parse(&block)
      return to_enum(__method__) unless block_given?

      if @return_headers and @headers and @raw_headers
        headers = Row.new(@headers, @raw_headers, true)
        if @unconverted_fields
          headers = add_unconverted_fields(headers, [])
        end
        yield headers
      end

      begin
        @scanner ||= build_scanner
        if quote_character.nil?
          parse_no_quote(&block)
        elsif @need_robust_parsing
          parse_quotable_robust(&block)
        else
          parse_quotable_loose(&block)
        end
      rescue InvalidEncoding
        if @scanner
          ignore_broken_line
          lineno = @lineno
        else
          lineno = @lineno + 1
        end
        message = "Invalid byte sequence in #{@encoding}"
        raise MalformedCSVError.new(message, lineno)
      end
    end

    def use_headers?
      @use_headers
    end

    private
    # A set of tasks to prepare the file in order to parse it
    def prepare
      prepare_variable
      prepare_quote_character
      prepare_backslash
      prepare_skip_lines
      prepare_strip
      prepare_separators
      prepare_quoted
      prepare_unquoted
      prepare_line
      prepare_header
      prepare_parser
    end

    def prepare_variable
      @need_robust_parsing = false
      @encoding = @options[:encoding]
      liberal_parsing = @options[:liberal_parsing]
      if liberal_parsing
        @liberal_parsing = true
        if liberal_parsing.is_a?(Hash)
          @double_quote_outside_quote =
            liberal_parsing[:double_quote_outside_quote]
          @backslash_quote = liberal_parsing[:backslash_quote]
        else
          @double_quote_outside_quote = false
          @backslash_quote = false
        end
        @need_robust_parsing = true
      else
        @liberal_parsing = false
        @backslash_quote = false
      end
      @unconverted_fields = @options[:unconverted_fields]
      @field_size_limit = @options[:field_size_limit]
      @skip_blanks = @options[:skip_blanks]
      @fields_converter = @options[:fields_converter]
      @header_fields_converter = @options[:header_fields_converter]
    end

    def prepare_quote_character
      @quote_character = @options[:quote_character]
      if @quote_character.nil?
        @escaped_quote_character = nil
        @escaped_quote = nil
      else
        @quote_character = @quote_character.to_s.encode(@encoding)
        if @quote_character.length != 1
          message = ":quote_char has to be nil or a single character String"
          raise ArgumentError, message
        end
        @double_quote_character = @quote_character * 2
        @escaped_quote_character = Regexp.escape(@quote_character)
        @escaped_quote = Regexp.new(@escaped_quote_character)
      end
    end

    def prepare_backslash
      return unless @backslash_quote

      @backslash_character = "\\".encode(@encoding)

      @escaped_backslash_character = Regexp.escape(@backslash_character)
      @escaped_backslash = Regexp.new(@escaped_backslash_character)
      if @quote_character.nil?
        @backslash_quote_character = nil
      else
        @backslash_quote_character =
          @backslash_character + @escaped_quote_character
      end
    end

    def prepare_skip_lines
      skip_lines = @options[:skip_lines]
      case skip_lines
      when String
        @skip_lines = skip_lines.encode(@encoding)
      when Regexp, nil
        @skip_lines = skip_lines
      else
        unless skip_lines.respond_to?(:match)
          message =
            ":skip_lines has to respond to \#match: #{skip_lines.inspect}"
          raise ArgumentError, message
        end
        @skip_lines = skip_lines
      end
    end

    def prepare_strip
      @strip = @options[:strip]
      @escaped_strip = nil
      @strip_value = nil
      if @strip.is_a?(String)
        case @strip.length
        when 0
          raise ArgumentError, ":strip must not be an empty String"
        when 1
          # ok
        else
          raise ArgumentError, ":strip doesn't support 2 or more characters yet"
        end
        @strip = @strip.encode(@encoding)
        @escaped_strip = Regexp.escape(@strip)
        if @quote_character
          @strip_value = Regexp.new(@escaped_strip +
                                    "+".encode(@encoding))
        end
        @need_robust_parsing = true
      elsif @strip
        strip_values = " \t\f\v"
        @escaped_strip = strip_values.encode(@encoding)
        if @quote_character
          @strip_value = Regexp.new("[#{strip_values}]+".encode(@encoding))
        end
        @need_robust_parsing = true
      end
    end

    begin
      StringScanner.new("x").scan("x")
    rescue TypeError
      @@string_scanner_scan_accept_string = false
    else
      @@string_scanner_scan_accept_string = true
    end

    def prepare_separators
      column_separator = @options[:column_separator]
      @column_separator = column_separator.to_s.encode(@encoding)
      if @column_separator.size < 1
        message = ":col_sep must be 1 or more characters: "
        message += column_separator.inspect
        raise ArgumentError, message
      end
      @row_separator =
        resolve_row_separator(@options[:row_separator]).encode(@encoding)

      @escaped_column_separator = Regexp.escape(@column_separator)
      @escaped_first_column_separator = Regexp.escape(@column_separator[0])
      if @column_separator.size > 1
        @column_end = Regexp.new(@escaped_column_separator)
        @column_ends = @column_separator.each_char.collect do |char|
          Regexp.new(Regexp.escape(char))
        end
        @first_column_separators = Regexp.new(@escaped_first_column_separator +
                                              "+".encode(@encoding))
      else
        if @@string_scanner_scan_accept_string
          @column_end = @column_separator
        else
          @column_end = Regexp.new(@escaped_column_separator)
        end
        @column_ends = nil
        @first_column_separators = nil
      end

      escaped_row_separator = Regexp.escape(@row_separator)
      @row_end = Regexp.new(escaped_row_separator)
      if @row_separator.size > 1
        @row_ends = @row_separator.each_char.collect do |char|
          Regexp.new(Regexp.escape(char))
        end
      else
        @row_ends = nil
      end

      @cr = "\r".encode(@encoding)
      @lf = "\n".encode(@encoding)
      @cr_or_lf = Regexp.new("[\r\n]".encode(@encoding))
      @not_line_end = Regexp.new("[^\r\n]+".encode(@encoding))
    end

    def prepare_quoted
      if @quote_character
        @quotes = Regexp.new(@escaped_quote_character +
                             "+".encode(@encoding))
        no_quoted_values = @escaped_quote_character.dup
        if @backslash_quote
          no_quoted_values << @escaped_backslash_character
        end
        @quoted_value = Regexp.new("[^".encode(@encoding) +
                                   no_quoted_values +
                                   "]+".encode(@encoding))
      end
      if @escaped_strip
        @split_column_separator = Regexp.new(@escaped_strip +
                                             "*".encode(@encoding) +
                                             @escaped_column_separator +
                                             @escaped_strip +
                                             "*".encode(@encoding))
      else
        if @column_separator == " ".encode(@encoding)
          @split_column_separator = Regexp.new(@escaped_column_separator)
        else
          @split_column_separator = @column_separator
        end
      end
    end

    def prepare_unquoted
      return if @quote_character.nil?

      no_unquoted_values = "\r\n".encode(@encoding)
      no_unquoted_values << @escaped_first_column_separator
      unless @liberal_parsing
        no_unquoted_values << @escaped_quote_character
      end
      if @escaped_strip
        no_unquoted_values << @escaped_strip
      end
      @unquoted_value = Regexp.new("[^".encode(@encoding) +
                                   no_unquoted_values +
                                   "]+".encode(@encoding))
    end

    def resolve_row_separator(separator)
      if separator == :auto
        cr = "\r".encode(@encoding)
        lf = "\n".encode(@encoding)
        if @input.is_a?(StringIO)
          pos = @input.pos
          separator = detect_row_separator(@input.read, cr, lf)
          @input.seek(pos)
        elsif @input.respond_to?(:gets)
          if @input.is_a?(File)
            chunk_size = 32 * 1024
          else
            chunk_size = 1024
          end
          begin
            while separator == :auto
              #
              # if we run out of data, it's probably a single line
              # (ensure will set default value)
              #
              break unless sample = @input.gets(nil, chunk_size)

              # extend sample if we're unsure of the line ending
              if sample.end_with?(cr)
                sample << (@input.gets(nil, 1) || "")
              end

              @samples << sample

              separator = detect_row_separator(sample, cr, lf)
            end
          rescue IOError
            # do nothing:  ensure will set default
          end
        end
        separator = $INPUT_RECORD_SEPARATOR if separator == :auto
      end
      separator.to_s.encode(@encoding)
    end

    def detect_row_separator(sample, cr, lf)
      lf_index = sample.index(lf)
      if lf_index
        cr_index = sample[0, lf_index].index(cr)
      else
        cr_index = sample.index(cr)
      end
      if cr_index and lf_index
        if cr_index + 1 == lf_index
          cr + lf
        elsif cr_index < lf_index
          cr
        else
          lf
        end
      elsif cr_index
        cr
      elsif lf_index
        lf
      else
        :auto
      end
    end

    def prepare_line
      @lineno = 0
      @last_line = nil
      @scanner = nil
    end

    def last_line
      if @scanner
        @last_line ||= @scanner.keep_end
      else
        @last_line
      end
    end

    def prepare_header
      @return_headers = @options[:return_headers]

      headers = @options[:headers]
      case headers
      when Array
        @raw_headers = headers
        @use_headers = true
      when String
        @raw_headers = parse_headers(headers)
        @use_headers = true
      when nil, false
        @raw_headers = nil
        @use_headers = false
      else
        @raw_headers = nil
        @use_headers = true
      end
      if @raw_headers
        @headers = adjust_headers(@raw_headers)
      else
        @headers = nil
      end
    end

    def parse_headers(row)
      CSV.parse_line(row,
                     col_sep:    @column_separator,
                     row_sep:    @row_separator,
                     quote_char: @quote_character)
    end

    def adjust_headers(headers)
      adjusted_headers = @header_fields_converter.convert(headers, nil, @lineno)
      adjusted_headers.each {|h| h.freeze if h.is_a? String}
      adjusted_headers
    end

    def prepare_parser
      @may_quoted = may_quoted?
    end

    def may_quoted?
      return false if @quote_character.nil?

      if @input.is_a?(StringIO)
        pos = @input.pos
        sample = @input.read
        @input.seek(pos)
      else
        return false if @samples.empty?
        sample = @samples.first
      end
      sample[0, 128].index(@quote_character)
    end

    SCANNER_TEST = (ENV["CSV_PARSER_SCANNER_TEST"] == "yes")
    if SCANNER_TEST
      class UnoptimizedStringIO
        def initialize(string)
          @io = StringIO.new(string)
        end

        def gets(*args)
          @io.gets(*args)
        end

        def each_line(*args, &block)
          @io.each_line(*args, &block)
        end

        def eof?
          @io.eof?
        end
      end

      def build_scanner
        inputs = @samples.collect do |sample|
          UnoptimizedStringIO.new(sample)
        end
        if @input.is_a?(StringIO)
          inputs << UnoptimizedStringIO.new(@input.read)
        else
          inputs << @input
        end
        chunk_size = ENV["CSV_PARSER_SCANNER_TEST_CHUNK_SIZE"] || "1"
        InputsScanner.new(inputs,
                          @encoding,
                          chunk_size: Integer(chunk_size, 10))
      end
    else
      def build_scanner
        string = nil
        if @samples.empty? and @input.is_a?(StringIO)
          string = @input.read
        elsif @samples.size == 1 and @input.respond_to?(:eof?) and @input.eof?
          string = @samples[0]
        end
        if string
          unless string.valid_encoding?
            index = string.lines(@row_separator).index do |line|
              !line.valid_encoding?
            end
            if index
              message = "Invalid byte sequence in #{@encoding}"
              raise MalformedCSVError.new(message, @lineno + index + 1)
            end
          end
          Scanner.new(string)
        else
          inputs = @samples.collect do |sample|
            StringIO.new(sample)
          end
          inputs << @input
          InputsScanner.new(inputs, @encoding)
        end
      end
    end

    def skip_needless_lines
      return unless @skip_lines

      while true
        @scanner.keep_start
        line = @scanner.scan_all(@not_line_end) || "".encode(@encoding)
        line << @row_separator if parse_row_end
        if skip_line?(line)
          @lineno += 1
          @scanner.keep_drop
        else
          @scanner.keep_back
          return
        end
      end
    end

    def skip_line?(line)
      case @skip_lines
      when String
        line.include?(@skip_lines)
      when Regexp
        @skip_lines.match?(line)
      else
        @skip_lines.match(line)
      end
    end

    def parse_no_quote(&block)
      @scanner.each_line(@row_separator) do |line|
        next if @skip_lines and skip_line?(line)
        original_line = line
        line = line.delete_suffix(@row_separator)

        if line.empty?
          next if @skip_blanks
          row = []
        else
          line = strip_value(line)
          row = line.split(@split_column_separator, -1)
          n_columns = row.size
          i = 0
          while i < n_columns
            row[i] = nil if row[i].empty?
            i += 1
          end
        end
        @last_line = original_line
        emit_row(row, &block)
      end
    end

    def parse_quotable_loose(&block)
      @scanner.keep_start
      @scanner.each_line(@row_separator) do |line|
        if @skip_lines and skip_line?(line)
          @scanner.keep_drop
          @scanner.keep_start
          next
        end
        original_line = line
        line = line.delete_suffix(@row_separator)

        if line.empty?
          if @skip_blanks
            @scanner.keep_drop
            @scanner.keep_start
            next
          end
          row = []
        elsif line.include?(@cr) or line.include?(@lf)
          @scanner.keep_back
          @need_robust_parsing = true
          return parse_quotable_robust(&block)
        else
          row = line.split(@split_column_separator, -1)
          n_columns = row.size
          i = 0
          while i < n_columns
            column = row[i]
            if column.empty?
              row[i] = nil
            else
              n_quotes = column.count(@quote_character)
              if n_quotes.zero?
                # no quote
              elsif n_quotes == 2 and
                   column.start_with?(@quote_character) and
                   column.end_with?(@quote_character)
                row[i] = column[1..-2]
              else
                @scanner.keep_back
                @need_robust_parsing = true
                return parse_quotable_robust(&block)
              end
            end
            i += 1
          end
        end
        @scanner.keep_drop
        @scanner.keep_start
        @last_line = original_line
        emit_row(row, &block)
      end
      @scanner.keep_drop
    end

    def parse_quotable_robust(&block)
      row = []
      skip_needless_lines
      start_row
      while true
        @quoted_column_value = false
        @unquoted_column_value = false
        @scanner.scan_all(@strip_value) if @strip_value
        value = parse_column_value
        if value
          @scanner.scan_all(@strip_value) if @strip_value
          if @field_size_limit and value.size >= @field_size_limit
            ignore_broken_line
            raise MalformedCSVError.new("Field size exceeded", @lineno)
          end
        end
        if parse_column_end
          row << value
        elsif parse_row_end
          if row.empty? and value.nil?
            emit_row([], &block) unless @skip_blanks
          else
            row << value
            emit_row(row, &block)
            row = []
          end
          skip_needless_lines
          start_row
        elsif @scanner.eos?
          break if row.empty? and value.nil?
          row << value
          emit_row(row, &block)
          break
        else
          if @quoted_column_value
            ignore_broken_line
            message = "Any value after quoted field isn't allowed"
            raise MalformedCSVError.new(message, @lineno)
          elsif @unquoted_column_value and
                (new_line = @scanner.scan(@cr_or_lf))
            ignore_broken_line
            message = "Unquoted fields do not allow new line " +
                      "<#{new_line.inspect}>"
            raise MalformedCSVError.new(message, @lineno)
          elsif @scanner.rest.start_with?(@quote_character)
            ignore_broken_line
            message = "Illegal quoting"
            raise MalformedCSVError.new(message, @lineno)
          elsif (new_line = @scanner.scan(@cr_or_lf))
            ignore_broken_line
            message = "New line must be <#{@row_separator.inspect}> " +
                      "not <#{new_line.inspect}>"
            raise MalformedCSVError.new(message, @lineno)
          else
            ignore_broken_line
            raise MalformedCSVError.new("TODO: Meaningful message",
                                        @lineno)
          end
        end
      end
    end

    def parse_column_value
      if @liberal_parsing
        quoted_value = parse_quoted_column_value
        if quoted_value
          unquoted_value = parse_unquoted_column_value
          if unquoted_value
            if @double_quote_outside_quote
              unquoted_value = unquoted_value.gsub(@quote_character * 2,
                                                   @quote_character)
              if quoted_value.empty? # %Q{""...} case
                return @quote_character + unquoted_value
              end
            end
            @quote_character + quoted_value + @quote_character + unquoted_value
          else
            quoted_value
          end
        else
          parse_unquoted_column_value
        end
      elsif @may_quoted
        parse_quoted_column_value ||
          parse_unquoted_column_value
      else
        parse_unquoted_column_value ||
          parse_quoted_column_value
      end
    end

    def parse_unquoted_column_value
      value = @scanner.scan_all(@unquoted_value)
      return nil unless value

      @unquoted_column_value = true
      if @first_column_separators
        while true
          @scanner.keep_start
          is_column_end = @column_ends.all? do |column_end|
            @scanner.scan(column_end)
          end
          @scanner.keep_back
          break if is_column_end
          sub_separator = @scanner.scan_all(@first_column_separators)
          break if sub_separator.nil?
          value << sub_separator
          sub_value = @scanner.scan_all(@unquoted_value)
          break if sub_value.nil?
          value << sub_value
        end
      end
      value.gsub!(@backslash_quote_character, @quote_character) if @backslash_quote
      value
    end

    def parse_quoted_column_value
      quotes = @scanner.scan_all(@quotes)
      return nil unless quotes

      @quoted_column_value = true
      n_quotes = quotes.size
      if (n_quotes % 2).zero?
        quotes[0, (n_quotes - 2) / 2]
      else
        value = quotes[0, (n_quotes - 1) / 2]
        while true
          quoted_value = @scanner.scan_all(@quoted_value)
          value << quoted_value if quoted_value
          if @backslash_quote
            if @scanner.scan(@escaped_backslash)
              if @scanner.scan(@escaped_quote)
                value << @quote_character
              else
                value << @backslash_character
              end
              next
            end
          end

          quotes = @scanner.scan_all(@quotes)
          unless quotes
            ignore_broken_line
            message = "Unclosed quoted field"
            raise MalformedCSVError.new(message, @lineno)
          end
          n_quotes = quotes.size
          if n_quotes == 1
            break
          elsif (n_quotes % 2) == 1
            value << quotes[0, (n_quotes - 1) / 2]
            break
          else
            value << quotes[0, n_quotes / 2]
          end
        end
        value
      end
    end

    def parse_column_end
      return true if @scanner.scan(@column_end)
      return false unless @column_ends

      @scanner.keep_start
      if @column_ends.all? {|column_end| @scanner.scan(column_end)}
        @scanner.keep_drop
        true
      else
        @scanner.keep_back
        false
      end
    end

    def parse_row_end
      return true if @scanner.scan(@row_end)
      return false unless @row_ends
      @scanner.keep_start
      if @row_ends.all? {|row_end| @scanner.scan(row_end)}
        @scanner.keep_drop
        true
      else
        @scanner.keep_back
        false
      end
    end

    def strip_value(value)
      return value unless @strip
      return nil if value.nil?

      case @strip
      when String
        size = value.size
        while value.start_with?(@strip)
          size -= 1
          value = value[1, size]
        end
        while value.end_with?(@strip)
          size -= 1
          value = value[0, size]
        end
      else
        value.strip!
      end
      value
    end

    def ignore_broken_line
      @scanner.scan_all(@not_line_end)
      @scanner.scan_all(@cr_or_lf)
      @lineno += 1
    end

    def start_row
      if @last_line
        @last_line = nil
      else
        @scanner.keep_drop
      end
      @scanner.keep_start
    end

    def emit_row(row, &block)
      @lineno += 1

      raw_row = row
      if @use_headers
        if @headers.nil?
          @headers = adjust_headers(row)
          return unless @return_headers
          row = Row.new(@headers, row, true)
        else
          row = Row.new(@headers,
                        @fields_converter.convert(raw_row, @headers, @lineno))
        end
      else
        # convert fields, if needed...
        row = @fields_converter.convert(raw_row, nil, @lineno)
      end

      # inject unconverted fields and accessor, if requested...
      if @unconverted_fields and not row.respond_to?(:unconverted_fields)
        add_unconverted_fields(row, raw_row)
      end

      yield(row)
    end

    # This method injects an instance variable <tt>unconverted_fields</tt> into
    # +row+ and an accessor method for +row+ called unconverted_fields().  The
    # variable is set to the contents of +fields+.
    def add_unconverted_fields(row, fields)
      class << row
        attr_reader :unconverted_fields
      end
      row.instance_variable_set(:@unconverted_fields, fields)
      row
    end
  end
end
PKEH[�W�ރ,�,share/ruby/csv/row.rbnu�[���# frozen_string_literal: true

require "forwardable"

class CSV
  #
  # A CSV::Row is part Array and part Hash. It retains an order for the fields
  # and allows duplicates just as an Array would, but also allows you to access
  # fields by name just as you could if they were in a Hash.
  #
  # All rows returned by CSV will be constructed from this class, if header row
  # processing is activated.
  #
  class Row
    #
    # Constructs a new CSV::Row from +headers+ and +fields+, which are expected
    # to be Arrays. If one Array is shorter than the other, it will be padded
    # with +nil+ objects.
    #
    # The optional +header_row+ parameter can be set to +true+ to indicate, via
    # CSV::Row.header_row?() and CSV::Row.field_row?(), that this is a header
    # row. Otherwise, the row assumes to be a field row.
    #
    # A CSV::Row object supports the following Array methods through delegation:
    #
    # * empty?()
    # * length()
    # * size()
    #
    def initialize(headers, fields, header_row = false)
      @header_row = header_row
      headers.each { |h| h.freeze if h.is_a? String }

      # handle extra headers or fields
      @row = if headers.size >= fields.size
        headers.zip(fields)
      else
        fields.zip(headers).each(&:reverse!)
      end
    end

    # Internal data format used to compare equality.
    attr_reader :row
    protected   :row

    ### Array Delegation ###

    extend Forwardable
    def_delegators :@row, :empty?, :length, :size

    def initialize_copy(other)
      super
      @row = @row.dup
    end

    # Returns +true+ if this is a header row.
    def header_row?
      @header_row
    end

    # Returns +true+ if this is a field row.
    def field_row?
      not header_row?
    end

    # Returns the headers of this row.
    def headers
      @row.map(&:first)
    end

    #
    # :call-seq:
    #   field( header )
    #   field( header, offset )
    #   field( index )
    #
    # This method will return the field value by +header+ or +index+. If a field
    # is not found, +nil+ is returned.
    #
    # When provided, +offset+ ensures that a header match occurs on or later
    # than the +offset+ index. You can use this to find duplicate headers,
    # without resorting to hard-coding exact indices.
    #
    def field(header_or_index, minimum_index = 0)
      # locate the pair
      finder = (header_or_index.is_a?(Integer) || header_or_index.is_a?(Range)) ? :[] : :assoc
      pair   = @row[minimum_index..-1].send(finder, header_or_index)

      # return the field if we have a pair
      if pair.nil?
        nil
      else
        header_or_index.is_a?(Range) ? pair.map(&:last) : pair.last
      end
    end
    alias_method :[], :field

    #
    # :call-seq:
    #   fetch( header )
    #   fetch( header ) { |row| ... }
    #   fetch( header, default )
    #
    # This method will fetch the field value by +header+. It has the same
    # behavior as Hash#fetch: if there is a field with the given +header+, its
    # value is returned. Otherwise, if a block is given, it is yielded the
    # +header+ and its result is returned; if a +default+ is given as the
    # second argument, it is returned; otherwise a KeyError is raised.
    #
    def fetch(header, *varargs)
      raise ArgumentError, "Too many arguments" if varargs.length > 1
      pair = @row.assoc(header)
      if pair
        pair.last
      else
        if block_given?
          yield header
        elsif varargs.empty?
          raise KeyError, "key not found: #{header}"
        else
          varargs.first
        end
      end
    end

    # Returns +true+ if there is a field with the given +header+.
    def has_key?(header)
      !!@row.assoc(header)
    end
    alias_method :include?, :has_key?
    alias_method :key?,     :has_key?
    alias_method :member?,  :has_key?
    alias_method :header?,  :has_key?

    #
    # :call-seq:
    #   []=( header, value )
    #   []=( header, offset, value )
    #   []=( index, value )
    #
    # Looks up the field by the semantics described in CSV::Row.field() and
    # assigns the +value+.
    #
    # Assigning past the end of the row with an index will set all pairs between
    # to <tt>[nil, nil]</tt>. Assigning to an unused header appends the new
    # pair.
    #
    def []=(*args)
      value = args.pop

      if args.first.is_a? Integer
        if @row[args.first].nil?  # extending past the end with index
          @row[args.first] = [nil, value]
          @row.map! { |pair| pair.nil? ? [nil, nil] : pair }
        else                      # normal index assignment
          @row[args.first][1] = value
        end
      else
        index = index(*args)
        if index.nil?             # appending a field
          self << [args.first, value]
        else                      # normal header assignment
          @row[index][1] = value
        end
      end
    end

    #
    # :call-seq:
    #   <<( field )
    #   <<( header_and_field_array )
    #   <<( header_and_field_hash )
    #
    # If a two-element Array is provided, it is assumed to be a header and field
    # and the pair is appended. A Hash works the same way with the key being
    # the header and the value being the field. Anything else is assumed to be
    # a lone field which is appended with a +nil+ header.
    #
    # This method returns the row for chaining.
    #
    def <<(arg)
      if arg.is_a?(Array) and arg.size == 2  # appending a header and name
        @row << arg
      elsif arg.is_a?(Hash)                  # append header and name pairs
        arg.each { |pair| @row << pair }
      else                                   # append field value
        @row << [nil, arg]
      end

      self  # for chaining
    end

    #
    # A shortcut for appending multiple fields. Equivalent to:
    #
    #   args.each { |arg| csv_row << arg }
    #
    # This method returns the row for chaining.
    #
    def push(*args)
      args.each { |arg| self << arg }

      self  # for chaining
    end

    #
    # :call-seq:
    #   delete( header )
    #   delete( header, offset )
    #   delete( index )
    #
    # Removes a pair from the row by +header+ or +index+. The pair is
    # located as described in CSV::Row.field(). The deleted pair is returned,
    # or +nil+ if a pair could not be found.
    #
    def delete(header_or_index, minimum_index = 0)
      if header_or_index.is_a? Integer                 # by index
        @row.delete_at(header_or_index)
      elsif i = index(header_or_index, minimum_index)  # by header
        @row.delete_at(i)
      else
        [ ]
      end
    end

    #
    # The provided +block+ is passed a header and field for each pair in the row
    # and expected to return +true+ or +false+, depending on whether the pair
    # should be deleted.
    #
    # This method returns the row for chaining.
    #
    # If no block is given, an Enumerator is returned.
    #
    def delete_if(&block)
      return enum_for(__method__) { size } unless block_given?

      @row.delete_if(&block)

      self  # for chaining
    end

    #
    # This method accepts any number of arguments which can be headers, indices,
    # Ranges of either, or two-element Arrays containing a header and offset.
    # Each argument will be replaced with a field lookup as described in
    # CSV::Row.field().
    #
    # If called with no arguments, all fields are returned.
    #
    def fields(*headers_and_or_indices)
      if headers_and_or_indices.empty?  # return all fields--no arguments
        @row.map(&:last)
      else                              # or work like values_at()
        all = []
        headers_and_or_indices.each do |h_or_i|
          if h_or_i.is_a? Range
            index_begin = h_or_i.begin.is_a?(Integer) ? h_or_i.begin :
                                                        index(h_or_i.begin)
            index_end   = h_or_i.end.is_a?(Integer)   ? h_or_i.end :
                                                        index(h_or_i.end)
            new_range   = h_or_i.exclude_end? ? (index_begin...index_end) :
                                                (index_begin..index_end)
            all.concat(fields.values_at(new_range))
          else
            all << field(*Array(h_or_i))
          end
        end
        return all
      end
    end
    alias_method :values_at, :fields

    #
    # :call-seq:
    #   index( header )
    #   index( header, offset )
    #
    # This method will return the index of a field with the provided +header+.
    # The +offset+ can be used to locate duplicate header names, as described in
    # CSV::Row.field().
    #
    def index(header, minimum_index = 0)
      # find the pair
      index = headers[minimum_index..-1].index(header)
      # return the index at the right offset, if we found one
      index.nil? ? nil : index + minimum_index
    end

    #
    # Returns +true+ if +data+ matches a field in this row, and +false+
    # otherwise.
    #
    def field?(data)
      fields.include? data
    end

    include Enumerable

    #
    # Yields each pair of the row as header and field tuples (much like
    # iterating over a Hash). This method returns the row for chaining.
    #
    # If no block is given, an Enumerator is returned.
    #
    # Support for Enumerable.
    #
    def each(&block)
      return enum_for(__method__) { size } unless block_given?

      @row.each(&block)

      self  # for chaining
    end

    alias_method :each_pair, :each

    #
    # Returns +true+ if this row contains the same headers and fields in the
    # same order as +other+.
    #
    def ==(other)
      return @row == other.row if other.is_a? CSV::Row
      @row == other
    end

    #
    # Collapses the row into a simple Hash. Be warned that this discards field
    # order and clobbers duplicate fields.
    #
    def to_h
      hash = {}
      each do |key, _value|
        hash[key] = self[key] unless hash.key?(key)
      end
      hash
    end
    alias_method :to_hash, :to_h

    alias_method :to_ary, :to_a

    #
    # Returns the row as a CSV String. Headers are not used. Equivalent to:
    #
    #   csv_row.fields.to_csv( options )
    #
    def to_csv(**options)
      fields.to_csv(**options)
    end
    alias_method :to_s, :to_csv

    #
    # Extracts the nested value specified by the sequence of +index+ or +header+ objects by calling dig at each step,
    # returning nil if any intermediate step is nil.
    #
    def dig(index_or_header, *indexes)
      value = field(index_or_header)
      if value.nil?
        nil
      elsif indexes.empty?
        value
      else
        unless value.respond_to?(:dig)
          raise TypeError, "#{value.class} does not have \#dig method"
        end
        value.dig(*indexes)
      end
    end

    #
    # A summary of fields, by header, in an ASCII compatible String.
    #
    def inspect
      str = ["#<", self.class.to_s]
      each do |header, field|
        str << " " << (header.is_a?(Symbol) ? header.to_s : header.inspect) <<
               ":" << field.inspect
      end
      str << ">"
      begin
        str.join('')
      rescue  # any encoding error
        str.map do |s|
          e = Encoding::Converter.asciicompat_encoding(s.encoding)
          e ? s.encode(e) : s.force_encoding("ASCII-8BIT")
        end.join('')
      end
    end
  end
end
PKEH[{IW�kkshare/ruby/csv/version.rbnu�[���# frozen_string_literal: true

class CSV
  # The version of the installed library.
  VERSION = "3.1.2"
end
PKEH[ΑQl	l	"share/ruby/csv/fields_converter.rbnu�[���# frozen_string_literal: true

class CSV
  # Note: Don't use this class directly. This is an internal class.
  class FieldsConverter
    include Enumerable
    #
    # A CSV::FieldsConverter is a data structure for storing the
    # fields converter properties to be passed as a parameter
    # when parsing a new file (e.g. CSV::Parser.new(@io, parser_options))
    #

    def initialize(options={})
      @converters = []
      @nil_value = options[:nil_value]
      @empty_value = options[:empty_value]
      @empty_value_is_empty_string = (@empty_value == "")
      @accept_nil = options[:accept_nil]
      @builtin_converters = options[:builtin_converters]
      @need_static_convert = need_static_convert?
    end

    def add_converter(name=nil, &converter)
      if name.nil?  # custom converter
        @converters << converter
      else          # named converter
        combo = @builtin_converters[name]
        case combo
        when Array  # combo converter
          combo.each do |sub_name|
            add_converter(sub_name)
          end
        else        # individual named converter
          @converters << combo
        end
      end
    end

    def each(&block)
      @converters.each(&block)
    end

    def empty?
      @converters.empty?
    end

    def convert(fields, headers, lineno)
      return fields unless need_convert?

      fields.collect.with_index do |field, index|
        if field.nil?
          field = @nil_value
        elsif field.empty?
          field = @empty_value unless @empty_value_is_empty_string
        end
        @converters.each do |converter|
          break if field.nil? and @accept_nil
          if converter.arity == 1  # straight field converter
            field = converter[field]
          else                     # FieldInfo converter
            if headers
              header = headers[index]
            else
              header = nil
            end
            field = converter[field, FieldInfo.new(index, lineno, header)]
          end
          break unless field.is_a?(String)  # short-circuit pipeline for speed
        end
        field  # final state of each field, converted or original
      end
    end

    private
    def need_static_convert?
      not (@nil_value.nil? and @empty_value_is_empty_string)
    end

    def need_convert?
      @need_static_convert or
        (not @converters.empty?)
    end
  end
end
PKEH[����yyshare/ruby/csv/match_p.rbnu�[���# frozen_string_literal: true

# This provides String#match? and Regexp#match? for Ruby 2.3.
unless String.method_defined?(:match?)
  class CSV
    module MatchP
      refine String do
        def match?(pattern)
          self =~ pattern
        end
      end

      refine Regexp do
        def match?(string)
          self =~ string
        end
      end
    end
  end
end
PKEH[P���share/ruby/csv/writer.rbnu�[���# frozen_string_literal: true

require_relative "match_p"
require_relative "row"

using CSV::MatchP if CSV.const_defined?(:MatchP)

class CSV
  # Note: Don't use this class directly. This is an internal class.
  class Writer
    #
    # A CSV::Writer receives an output, prepares the header, format and output.
    # It allows us to write new rows in the object and rewind it.
    #
    attr_reader :lineno
    attr_reader :headers

    def initialize(output, options)
      @output = output
      @options = options
      @lineno = 0
      @fields_converter = nil
      prepare
      if @options[:write_headers] and @headers
        self << @headers
      end
      @fields_converter = @options[:fields_converter]
    end

    #
    # Adds a new row
    #
    def <<(row)
      case row
      when Row
        row = row.fields
      when Hash
        row = @headers.collect {|header| row[header]}
      end

      @headers ||= row if @use_headers
      @lineno += 1

      row = @fields_converter.convert(row, nil, lineno) if @fields_converter

      converted_row = row.collect do |field|
        quote(field)
      end
      line = converted_row.join(@column_separator) + @row_separator
      if @output_encoding
        line = line.encode(@output_encoding)
      end
      @output << line

      self
    end

    #
    # Winds back to the beginning
    #
    def rewind
      @lineno = 0
      @headers = nil if @options[:headers].nil?
    end

    private
    def prepare
      @encoding = @options[:encoding]

      prepare_header
      prepare_format
      prepare_output
    end

    def prepare_header
      headers = @options[:headers]
      case headers
      when Array
        @headers = headers
        @use_headers = true
      when String
        @headers = CSV.parse_line(headers,
                                  col_sep: @options[:column_separator],
                                  row_sep: @options[:row_separator],
                                  quote_char: @options[:quote_character])
        @use_headers = true
      when true
        @headers = nil
        @use_headers = true
      else
        @headers = nil
        @use_headers = false
      end
      return unless @headers

      converter = @options[:header_fields_converter]
      @headers = converter.convert(@headers, nil, 0)
      @headers.each do |header|
        header.freeze if header.is_a?(String)
      end
    end

    def prepare_format
      @column_separator = @options[:column_separator].to_s.encode(@encoding)
      row_separator = @options[:row_separator]
      if row_separator == :auto
        @row_separator = $INPUT_RECORD_SEPARATOR.encode(@encoding)
      else
        @row_separator = row_separator.to_s.encode(@encoding)
      end
      @quote_character = @options[:quote_character]
      @force_quotes = @options[:force_quotes]
      unless @force_quotes
        @quotable_pattern =
          Regexp.new("[\r\n".encode(@encoding) +
                     Regexp.escape(@column_separator) +
                     Regexp.escape(@quote_character.encode(@encoding)) +
                     "]".encode(@encoding))
      end
      @quote_empty = @options.fetch(:quote_empty, true)
    end

    def prepare_output
      @output_encoding = nil
      return unless @output.is_a?(StringIO)

      output_encoding = @output.internal_encoding || @output.external_encoding
      if @encoding != output_encoding
        if @options[:force_encoding]
          @output_encoding = output_encoding
        else
          compatible_encoding = Encoding.compatible?(@encoding, output_encoding)
          if compatible_encoding
            @output.set_encoding(compatible_encoding)
            @output.seek(0, IO::SEEK_END)
          end
        end
      end
    end

    def quote_field(field)
      field = String(field)
      encoded_quote_character = @quote_character.encode(field.encoding)
      encoded_quote_character +
        field.gsub(encoded_quote_character,
                   encoded_quote_character * 2) +
        encoded_quote_character
    end

    def quote(field)
      if @force_quotes
        quote_field(field)
      else
        if field.nil?  # represent +nil+ fields as empty unquoted fields
          ""
        else
          field = String(field)  # Stringify fields
          # represent empty fields as empty quoted fields
          if (@quote_empty and field.empty?) or @quotable_pattern.match?(field)
            quote_field(field)
          else
            field  # unquoted field
          end
        end
      end
    end
  end
end
PKEH[�����!share/ruby/csv/core_ext/string.rbnu�[���class String # :nodoc:
  # Equivalent to CSV::parse_line(self, options)
  #
  #   "CSV,data".parse_csv
  #     #=> ["CSV", "data"]
  def parse_csv(**options)
    CSV.parse_line(self, **options)
  end
end
PKEH[��z�� share/ruby/csv/core_ext/array.rbnu�[���class Array # :nodoc:
  # Equivalent to CSV::generate_line(self, options)
  #
  #   ["CSV", "data"].to_csv
  #     #=> "CSV,data\n"
  def to_csv(**options)
    CSV.generate_line(self, **options)
  end
end
PKEH[��g&share/ruby/matrix/lup_decomposition.rbnu�[���# frozen_string_literal: false
class Matrix
  # Adapted from JAMA: http://math.nist.gov/javanumerics/jama/

  #
  # For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n
  # unit lower triangular matrix L, an n-by-n upper triangular matrix U,
  # and a m-by-m permutation matrix P so that L*U = P*A.
  # If m < n, then L is m-by-m and U is m-by-n.
  #
  # The LUP decomposition with pivoting always exists, even if the matrix is
  # singular, so the constructor will never fail.  The primary use of the
  # LU decomposition is in the solution of square systems of simultaneous
  # linear equations.  This will fail if singular? returns true.
  #

  class LUPDecomposition
    # Returns the lower triangular factor +L+

    include Matrix::ConversionHelper

    def l
      Matrix.build(@row_count, [@column_count, @row_count].min) do |i, j|
        if (i > j)
          @lu[i][j]
        elsif (i == j)
          1
        else
          0
        end
      end
    end

    # Returns the upper triangular factor +U+

    def u
      Matrix.build([@column_count, @row_count].min, @column_count) do |i, j|
        if (i <= j)
          @lu[i][j]
        else
          0
        end
      end
    end

    # Returns the permutation matrix +P+

    def p
      rows = Array.new(@row_count){Array.new(@row_count, 0)}
      @pivots.each_with_index{|p, i| rows[i][p] = 1}
      Matrix.send :new, rows, @row_count
    end

    # Returns +L+, +U+, +P+ in an array

    def to_ary
      [l, u, p]
    end
    alias_method :to_a, :to_ary

    # Returns the pivoting indices

    attr_reader :pivots

    # Returns +true+ if +U+, and hence +A+, is singular.

    def singular?
      @column_count.times do |j|
        if (@lu[j][j] == 0)
          return true
        end
      end
      false
    end

    # Returns the determinant of +A+, calculated efficiently
    # from the factorization.

    def det
      if (@row_count != @column_count)
        raise Matrix::ErrDimensionMismatch
      end
      d = @pivot_sign
      @column_count.times do |j|
        d *= @lu[j][j]
      end
      d
    end
    alias_method :determinant, :det

    # Returns +m+ so that <tt>A*m = b</tt>,
    # or equivalently so that <tt>L*U*m = P*b</tt>
    # +b+ can be a Matrix or a Vector

    def solve b
      if (singular?)
        raise Matrix::ErrNotRegular, "Matrix is singular."
      end
      if b.is_a? Matrix
        if (b.row_count != @row_count)
          raise Matrix::ErrDimensionMismatch
        end

        # Copy right hand side with pivoting
        nx = b.column_count
        m = @pivots.map{|row| b.row(row).to_a}

        # Solve L*Y = P*b
        @column_count.times do |k|
          (k+1).upto(@column_count-1) do |i|
            nx.times do |j|
              m[i][j] -= m[k][j]*@lu[i][k]
            end
          end
        end
        # Solve U*m = Y
        (@column_count-1).downto(0) do |k|
          nx.times do |j|
            m[k][j] = m[k][j].quo(@lu[k][k])
          end
          k.times do |i|
            nx.times do |j|
              m[i][j] -= m[k][j]*@lu[i][k]
            end
          end
        end
        Matrix.send :new, m, nx
      else # same algorithm, specialized for simpler case of a vector
        b = convert_to_array(b)
        if (b.size != @row_count)
          raise Matrix::ErrDimensionMismatch
        end

        # Copy right hand side with pivoting
        m = b.values_at(*@pivots)

        # Solve L*Y = P*b
        @column_count.times do |k|
          (k+1).upto(@column_count-1) do |i|
            m[i] -= m[k]*@lu[i][k]
          end
        end
        # Solve U*m = Y
        (@column_count-1).downto(0) do |k|
          m[k] = m[k].quo(@lu[k][k])
          k.times do |i|
            m[i] -= m[k]*@lu[i][k]
          end
        end
        Vector.elements(m, false)
      end
    end

    def initialize a
      raise TypeError, "Expected Matrix but got #{a.class}" unless a.is_a?(Matrix)
      # Use a "left-looking", dot-product, Crout/Doolittle algorithm.
      @lu = a.to_a
      @row_count = a.row_count
      @column_count = a.column_count
      @pivots = Array.new(@row_count)
      @row_count.times do |i|
         @pivots[i] = i
      end
      @pivot_sign = 1
      lu_col_j = Array.new(@row_count)

      # Outer loop.

      @column_count.times do |j|

        # Make a copy of the j-th column to localize references.

        @row_count.times do |i|
          lu_col_j[i] = @lu[i][j]
        end

        # Apply previous transformations.

        @row_count.times do |i|
          lu_row_i = @lu[i]

          # Most of the time is spent in the following dot product.

          kmax = [i, j].min
          s = 0
          kmax.times do |k|
            s += lu_row_i[k]*lu_col_j[k]
          end

          lu_row_i[j] = lu_col_j[i] -= s
        end

        # Find pivot and exchange if necessary.

        p = j
        (j+1).upto(@row_count-1) do |i|
          if (lu_col_j[i].abs > lu_col_j[p].abs)
            p = i
          end
        end
        if (p != j)
          @column_count.times do |k|
            t = @lu[p][k]; @lu[p][k] = @lu[j][k]; @lu[j][k] = t
          end
          k = @pivots[p]; @pivots[p] = @pivots[j]; @pivots[j] = k
          @pivot_sign = -@pivot_sign
        end

        # Compute multipliers.

        if (j < @row_count && @lu[j][j] != 0)
          (j+1).upto(@row_count-1) do |i|
            @lu[i][j] = @lu[i][j].quo(@lu[j][j])
          end
        end
      end
    end
  end
end
PKEH[��xVxV-share/ruby/matrix/eigenvalue_decomposition.rbnu�[���# frozen_string_literal: false
class Matrix
  # Adapted from JAMA: http://math.nist.gov/javanumerics/jama/

  # Eigenvalues and eigenvectors of a real matrix.
  #
  # Computes the eigenvalues and eigenvectors of a matrix A.
  #
  # If A is diagonalizable, this provides matrices V and D
  # such that A = V*D*V.inv, where D is the diagonal matrix with entries
  # equal to the eigenvalues and V is formed by the eigenvectors.
  #
  # If A is symmetric, then V is orthogonal and thus A = V*D*V.t

  class EigenvalueDecomposition

    # Constructs the eigenvalue decomposition for a square matrix +A+
    #
    def initialize(a)
      # @d, @e: Arrays for internal storage of eigenvalues.
      # @v: Array for internal storage of eigenvectors.
      # @h: Array for internal storage of nonsymmetric Hessenberg form.
      raise TypeError, "Expected Matrix but got #{a.class}" unless a.is_a?(Matrix)
      @size = a.row_count
      @d = Array.new(@size, 0)
      @e = Array.new(@size, 0)

      if (@symmetric = a.symmetric?)
        @v = a.to_a
        tridiagonalize
        diagonalize
      else
        @v = Array.new(@size) { Array.new(@size, 0) }
        @h = a.to_a
        @ort = Array.new(@size, 0)
        reduce_to_hessenberg
        hessenberg_to_real_schur
      end
    end

    # Returns the eigenvector matrix +V+
    #
    def eigenvector_matrix
      Matrix.send(:new, build_eigenvectors.transpose)
    end
    alias_method :v, :eigenvector_matrix

    # Returns the inverse of the eigenvector matrix +V+
    #
    def eigenvector_matrix_inv
      r = Matrix.send(:new, build_eigenvectors)
      r = r.transpose.inverse unless @symmetric
      r
    end
    alias_method :v_inv, :eigenvector_matrix_inv

    # Returns the eigenvalues in an array
    #
    def eigenvalues
      values = @d.dup
      @e.each_with_index{|imag, i| values[i] = Complex(values[i], imag) unless imag == 0}
      values
    end

    # Returns an array of the eigenvectors
    #
    def eigenvectors
      build_eigenvectors.map{|ev| Vector.send(:new, ev)}
    end

    # Returns the block diagonal eigenvalue matrix +D+
    #
    def eigenvalue_matrix
      Matrix.diagonal(*eigenvalues)
    end
    alias_method :d, :eigenvalue_matrix

    # Returns [eigenvector_matrix, eigenvalue_matrix, eigenvector_matrix_inv]
    #
    def to_ary
      [v, d, v_inv]
    end
    alias_method :to_a, :to_ary


    private def build_eigenvectors
      # JAMA stores complex eigenvectors in a strange way
      # See http://web.archive.org/web/20111016032731/http://cio.nist.gov/esd/emaildir/lists/jama/msg01021.html
      @e.each_with_index.map do |imag, i|
        if imag == 0
          Array.new(@size){|j| @v[j][i]}
        elsif imag > 0
          Array.new(@size){|j| Complex(@v[j][i], @v[j][i+1])}
        else
          Array.new(@size){|j| Complex(@v[j][i-1], -@v[j][i])}
        end
      end
    end

    # Complex scalar division.

    private def cdiv(xr, xi, yr, yi)
      if (yr.abs > yi.abs)
        r = yi/yr
        d = yr + r*yi
        [(xr + r*xi)/d, (xi - r*xr)/d]
      else
        r = yr/yi
        d = yi + r*yr
        [(r*xr + xi)/d, (r*xi - xr)/d]
      end
    end


    # Symmetric Householder reduction to tridiagonal form.

    private def tridiagonalize

      #  This is derived from the Algol procedures tred2 by
      #  Bowdler, Martin, Reinsch, and Wilkinson, Handbook for
      #  Auto. Comp., Vol.ii-Linear Algebra, and the corresponding
      #  Fortran subroutine in EISPACK.

      @size.times do |j|
        @d[j] = @v[@size-1][j]
      end

      # Householder reduction to tridiagonal form.

      (@size-1).downto(0+1) do |i|

        # Scale to avoid under/overflow.

        scale = 0.0
        h = 0.0
        i.times do |k|
          scale = scale + @d[k].abs
        end
        if (scale == 0.0)
          @e[i] = @d[i-1]
          i.times do |j|
            @d[j] = @v[i-1][j]
            @v[i][j] = 0.0
            @v[j][i] = 0.0
          end
        else

          # Generate Householder vector.

          i.times do |k|
            @d[k] /= scale
            h += @d[k] * @d[k]
          end
          f = @d[i-1]
          g = Math.sqrt(h)
          if (f > 0)
            g = -g
          end
          @e[i] = scale * g
          h -= f * g
          @d[i-1] = f - g
          i.times do |j|
            @e[j] = 0.0
          end

          # Apply similarity transformation to remaining columns.

          i.times do |j|
            f = @d[j]
            @v[j][i] = f
            g = @e[j] + @v[j][j] * f
            (j+1).upto(i-1) do |k|
              g += @v[k][j] * @d[k]
              @e[k] += @v[k][j] * f
            end
            @e[j] = g
          end
          f = 0.0
          i.times do |j|
            @e[j] /= h
            f += @e[j] * @d[j]
          end
          hh = f / (h + h)
          i.times do |j|
            @e[j] -= hh * @d[j]
          end
          i.times do |j|
            f = @d[j]
            g = @e[j]
            j.upto(i-1) do |k|
              @v[k][j] -= (f * @e[k] + g * @d[k])
            end
            @d[j] = @v[i-1][j]
            @v[i][j] = 0.0
          end
        end
        @d[i] = h
      end

      # Accumulate transformations.

      0.upto(@size-1-1) do |i|
        @v[@size-1][i] = @v[i][i]
        @v[i][i] = 1.0
        h = @d[i+1]
        if (h != 0.0)
          0.upto(i) do |k|
            @d[k] = @v[k][i+1] / h
          end
          0.upto(i) do |j|
            g = 0.0
            0.upto(i) do |k|
              g += @v[k][i+1] * @v[k][j]
            end
            0.upto(i) do |k|
              @v[k][j] -= g * @d[k]
            end
          end
        end
        0.upto(i) do |k|
          @v[k][i+1] = 0.0
        end
      end
      @size.times do |j|
        @d[j] = @v[@size-1][j]
        @v[@size-1][j] = 0.0
      end
      @v[@size-1][@size-1] = 1.0
      @e[0] = 0.0
    end


    # Symmetric tridiagonal QL algorithm.

    private def diagonalize
      #  This is derived from the Algol procedures tql2, by
      #  Bowdler, Martin, Reinsch, and Wilkinson, Handbook for
      #  Auto. Comp., Vol.ii-Linear Algebra, and the corresponding
      #  Fortran subroutine in EISPACK.

      1.upto(@size-1) do |i|
        @e[i-1] = @e[i]
      end
      @e[@size-1] = 0.0

      f = 0.0
      tst1 = 0.0
      eps = Float::EPSILON
      @size.times do |l|

        # Find small subdiagonal element

        tst1 = [tst1, @d[l].abs + @e[l].abs].max
        m = l
        while (m < @size) do
          if (@e[m].abs <= eps*tst1)
            break
          end
          m+=1
        end

        # If m == l, @d[l] is an eigenvalue,
        # otherwise, iterate.

        if (m > l)
          iter = 0
          begin
            iter = iter + 1  # (Could check iteration count here.)

            # Compute implicit shift

            g = @d[l]
            p = (@d[l+1] - g) / (2.0 * @e[l])
            r = Math.hypot(p, 1.0)
            if (p < 0)
              r = -r
            end
            @d[l] = @e[l] / (p + r)
            @d[l+1] = @e[l] * (p + r)
            dl1 = @d[l+1]
            h = g - @d[l]
            (l+2).upto(@size-1) do |i|
              @d[i] -= h
            end
            f += h

            # Implicit QL transformation.

            p = @d[m]
            c = 1.0
            c2 = c
            c3 = c
            el1 = @e[l+1]
            s = 0.0
            s2 = 0.0
            (m-1).downto(l) do |i|
              c3 = c2
              c2 = c
              s2 = s
              g = c * @e[i]
              h = c * p
              r = Math.hypot(p, @e[i])
              @e[i+1] = s * r
              s = @e[i] / r
              c = p / r
              p = c * @d[i] - s * g
              @d[i+1] = h + s * (c * g + s * @d[i])

              # Accumulate transformation.

              @size.times do |k|
                h = @v[k][i+1]
                @v[k][i+1] = s * @v[k][i] + c * h
                @v[k][i] = c * @v[k][i] - s * h
              end
            end
            p = -s * s2 * c3 * el1 * @e[l] / dl1
            @e[l] = s * p
            @d[l] = c * p

            # Check for convergence.

          end while (@e[l].abs > eps*tst1)
        end
        @d[l] = @d[l] + f
        @e[l] = 0.0
      end

      # Sort eigenvalues and corresponding vectors.

      0.upto(@size-2) do |i|
        k = i
        p = @d[i]
        (i+1).upto(@size-1) do |j|
          if (@d[j] < p)
            k = j
            p = @d[j]
          end
        end
        if (k != i)
          @d[k] = @d[i]
          @d[i] = p
          @size.times do |j|
            p = @v[j][i]
            @v[j][i] = @v[j][k]
            @v[j][k] = p
          end
        end
      end
    end

    # Nonsymmetric reduction to Hessenberg form.

    private def reduce_to_hessenberg
      #  This is derived from the Algol procedures orthes and ortran,
      #  by Martin and Wilkinson, Handbook for Auto. Comp.,
      #  Vol.ii-Linear Algebra, and the corresponding
      #  Fortran subroutines in EISPACK.

      low = 0
      high = @size-1

      (low+1).upto(high-1) do |m|

        # Scale column.

        scale = 0.0
        m.upto(high) do |i|
          scale = scale + @h[i][m-1].abs
        end
        if (scale != 0.0)

          # Compute Householder transformation.

          h = 0.0
          high.downto(m) do |i|
            @ort[i] = @h[i][m-1]/scale
            h += @ort[i] * @ort[i]
          end
          g = Math.sqrt(h)
          if (@ort[m] > 0)
            g = -g
          end
          h -= @ort[m] * g
          @ort[m] = @ort[m] - g

          # Apply Householder similarity transformation
          # @h = (I-u*u'/h)*@h*(I-u*u')/h)

          m.upto(@size-1) do |j|
            f = 0.0
            high.downto(m) do |i|
              f += @ort[i]*@h[i][j]
            end
            f = f/h
            m.upto(high) do |i|
              @h[i][j] -= f*@ort[i]
            end
          end

          0.upto(high) do |i|
            f = 0.0
            high.downto(m) do |j|
              f += @ort[j]*@h[i][j]
            end
            f = f/h
            m.upto(high) do |j|
              @h[i][j] -= f*@ort[j]
            end
          end
          @ort[m] = scale*@ort[m]
          @h[m][m-1] = scale*g
        end
      end

      # Accumulate transformations (Algol's ortran).

      @size.times do |i|
        @size.times do |j|
          @v[i][j] = (i == j ? 1.0 : 0.0)
        end
      end

      (high-1).downto(low+1) do |m|
        if (@h[m][m-1] != 0.0)
          (m+1).upto(high) do |i|
            @ort[i] = @h[i][m-1]
          end
          m.upto(high) do |j|
            g = 0.0
            m.upto(high) do |i|
              g += @ort[i] * @v[i][j]
            end
            # Double division avoids possible underflow
            g = (g / @ort[m]) / @h[m][m-1]
            m.upto(high) do |i|
              @v[i][j] += g * @ort[i]
            end
          end
        end
      end
    end

    # Nonsymmetric reduction from Hessenberg to real Schur form.

    private def hessenberg_to_real_schur

      #  This is derived from the Algol procedure hqr2,
      #  by Martin and Wilkinson, Handbook for Auto. Comp.,
      #  Vol.ii-Linear Algebra, and the corresponding
      #  Fortran subroutine in EISPACK.

      # Initialize

      nn = @size
      n = nn-1
      low = 0
      high = nn-1
      eps = Float::EPSILON
      exshift = 0.0
      p = q = r = s = z = 0

      # Store roots isolated by balanc and compute matrix norm

      norm = 0.0
      nn.times do |i|
        if (i < low || i > high)
          @d[i] = @h[i][i]
          @e[i] = 0.0
        end
        ([i-1, 0].max).upto(nn-1) do |j|
          norm = norm + @h[i][j].abs
        end
      end

      # Outer loop over eigenvalue index

      iter = 0
      while (n >= low) do

        # Look for single small sub-diagonal element

        l = n
        while (l > low) do
          s = @h[l-1][l-1].abs + @h[l][l].abs
          if (s == 0.0)
            s = norm
          end
          if (@h[l][l-1].abs < eps * s)
            break
          end
          l-=1
        end

        # Check for convergence
        # One root found

        if (l == n)
          @h[n][n] = @h[n][n] + exshift
          @d[n] = @h[n][n]
          @e[n] = 0.0
          n-=1
          iter = 0

        # Two roots found

        elsif (l == n-1)
          w = @h[n][n-1] * @h[n-1][n]
          p = (@h[n-1][n-1] - @h[n][n]) / 2.0
          q = p * p + w
          z = Math.sqrt(q.abs)
          @h[n][n] = @h[n][n] + exshift
          @h[n-1][n-1] = @h[n-1][n-1] + exshift
          x = @h[n][n]

          # Real pair

          if (q >= 0)
            if (p >= 0)
              z = p + z
            else
              z = p - z
            end
            @d[n-1] = x + z
            @d[n] = @d[n-1]
            if (z != 0.0)
              @d[n] = x - w / z
            end
            @e[n-1] = 0.0
            @e[n] = 0.0
            x = @h[n][n-1]
            s = x.abs + z.abs
            p = x / s
            q = z / s
            r = Math.sqrt(p * p+q * q)
            p /= r
            q /= r

            # Row modification

            (n-1).upto(nn-1) do |j|
              z = @h[n-1][j]
              @h[n-1][j] = q * z + p * @h[n][j]
              @h[n][j] = q * @h[n][j] - p * z
            end

            # Column modification

            0.upto(n) do |i|
              z = @h[i][n-1]
              @h[i][n-1] = q * z + p * @h[i][n]
              @h[i][n] = q * @h[i][n] - p * z
            end

            # Accumulate transformations

            low.upto(high) do |i|
              z = @v[i][n-1]
              @v[i][n-1] = q * z + p * @v[i][n]
              @v[i][n] = q * @v[i][n] - p * z
            end

          # Complex pair

          else
            @d[n-1] = x + p
            @d[n] = x + p
            @e[n-1] = z
            @e[n] = -z
          end
          n -= 2
          iter = 0

        # No convergence yet

        else

          # Form shift

          x = @h[n][n]
          y = 0.0
          w = 0.0
          if (l < n)
            y = @h[n-1][n-1]
            w = @h[n][n-1] * @h[n-1][n]
          end

          # Wilkinson's original ad hoc shift

          if (iter == 10)
            exshift += x
            low.upto(n) do |i|
              @h[i][i] -= x
            end
            s = @h[n][n-1].abs + @h[n-1][n-2].abs
            x = y = 0.75 * s
            w = -0.4375 * s * s
          end

          # MATLAB's new ad hoc shift

          if (iter == 30)
             s = (y - x) / 2.0
             s *= s + w
             if (s > 0)
                s = Math.sqrt(s)
                if (y < x)
                  s = -s
                end
                s = x - w / ((y - x) / 2.0 + s)
                low.upto(n) do |i|
                  @h[i][i] -= s
                end
                exshift += s
                x = y = w = 0.964
             end
          end

          iter = iter + 1  # (Could check iteration count here.)

          # Look for two consecutive small sub-diagonal elements

          m = n-2
          while (m >= l) do
            z = @h[m][m]
            r = x - z
            s = y - z
            p = (r * s - w) / @h[m+1][m] + @h[m][m+1]
            q = @h[m+1][m+1] - z - r - s
            r = @h[m+2][m+1]
            s = p.abs + q.abs + r.abs
            p /= s
            q /= s
            r /= s
            if (m == l)
              break
            end
            if (@h[m][m-1].abs * (q.abs + r.abs) <
              eps * (p.abs * (@h[m-1][m-1].abs + z.abs +
              @h[m+1][m+1].abs)))
                break
            end
            m-=1
          end

          (m+2).upto(n) do |i|
            @h[i][i-2] = 0.0
            if (i > m+2)
              @h[i][i-3] = 0.0
            end
          end

          # Double QR step involving rows l:n and columns m:n

          m.upto(n-1) do |k|
            notlast = (k != n-1)
            if (k != m)
              p = @h[k][k-1]
              q = @h[k+1][k-1]
              r = (notlast ? @h[k+2][k-1] : 0.0)
              x = p.abs + q.abs + r.abs
              next if x == 0
              p /= x
              q /= x
              r /= x
            end
            s = Math.sqrt(p * p + q * q + r * r)
            if (p < 0)
              s = -s
            end
            if (s != 0)
              if (k != m)
                @h[k][k-1] = -s * x
              elsif (l != m)
                @h[k][k-1] = -@h[k][k-1]
              end
              p += s
              x = p / s
              y = q / s
              z = r / s
              q /= p
              r /= p

              # Row modification

              k.upto(nn-1) do |j|
                p = @h[k][j] + q * @h[k+1][j]
                if (notlast)
                  p += r * @h[k+2][j]
                  @h[k+2][j] = @h[k+2][j] - p * z
                end
                @h[k][j] = @h[k][j] - p * x
                @h[k+1][j] = @h[k+1][j] - p * y
              end

              # Column modification

              0.upto([n, k+3].min) do |i|
                p = x * @h[i][k] + y * @h[i][k+1]
                if (notlast)
                  p += z * @h[i][k+2]
                  @h[i][k+2] = @h[i][k+2] - p * r
                end
                @h[i][k] = @h[i][k] - p
                @h[i][k+1] = @h[i][k+1] - p * q
              end

              # Accumulate transformations

              low.upto(high) do |i|
                p = x * @v[i][k] + y * @v[i][k+1]
                if (notlast)
                  p += z * @v[i][k+2]
                  @v[i][k+2] = @v[i][k+2] - p * r
                end
                @v[i][k] = @v[i][k] - p
                @v[i][k+1] = @v[i][k+1] - p * q
              end
            end  # (s != 0)
          end  # k loop
        end  # check convergence
      end  # while (n >= low)

      # Backsubstitute to find vectors of upper triangular form

      if (norm == 0.0)
        return
      end

      (nn-1).downto(0) do |k|
        p = @d[k]
        q = @e[k]

        # Real vector

        if (q == 0)
          l = k
          @h[k][k] = 1.0
          (k-1).downto(0) do |i|
            w = @h[i][i] - p
            r = 0.0
            l.upto(k) do |j|
              r += @h[i][j] * @h[j][k]
            end
            if (@e[i] < 0.0)
              z = w
              s = r
            else
              l = i
              if (@e[i] == 0.0)
                if (w != 0.0)
                  @h[i][k] = -r / w
                else
                  @h[i][k] = -r / (eps * norm)
                end

              # Solve real equations

              else
                x = @h[i][i+1]
                y = @h[i+1][i]
                q = (@d[i] - p) * (@d[i] - p) + @e[i] * @e[i]
                t = (x * s - z * r) / q
                @h[i][k] = t
                if (x.abs > z.abs)
                  @h[i+1][k] = (-r - w * t) / x
                else
                  @h[i+1][k] = (-s - y * t) / z
                end
              end

              # Overflow control

              t = @h[i][k].abs
              if ((eps * t) * t > 1)
                i.upto(k) do |j|
                  @h[j][k] = @h[j][k] / t
                end
              end
            end
          end

        # Complex vector

        elsif (q < 0)
          l = n-1

          # Last vector component imaginary so matrix is triangular

          if (@h[n][n-1].abs > @h[n-1][n].abs)
            @h[n-1][n-1] = q / @h[n][n-1]
            @h[n-1][n] = -(@h[n][n] - p) / @h[n][n-1]
          else
            cdivr, cdivi = cdiv(0.0, -@h[n-1][n], @h[n-1][n-1]-p, q)
            @h[n-1][n-1] = cdivr
            @h[n-1][n] = cdivi
          end
          @h[n][n-1] = 0.0
          @h[n][n] = 1.0
          (n-2).downto(0) do |i|
            ra = 0.0
            sa = 0.0
            l.upto(n) do |j|
              ra = ra + @h[i][j] * @h[j][n-1]
              sa = sa + @h[i][j] * @h[j][n]
            end
            w = @h[i][i] - p

            if (@e[i] < 0.0)
              z = w
              r = ra
              s = sa
            else
              l = i
              if (@e[i] == 0)
                cdivr, cdivi = cdiv(-ra, -sa, w, q)
                @h[i][n-1] = cdivr
                @h[i][n] = cdivi
              else

                # Solve complex equations

                x = @h[i][i+1]
                y = @h[i+1][i]
                vr = (@d[i] - p) * (@d[i] - p) + @e[i] * @e[i] - q * q
                vi = (@d[i] - p) * 2.0 * q
                if (vr == 0.0 && vi == 0.0)
                  vr = eps * norm * (w.abs + q.abs +
                  x.abs + y.abs + z.abs)
                end
                cdivr, cdivi = cdiv(x*r-z*ra+q*sa, x*s-z*sa-q*ra, vr, vi)
                @h[i][n-1] = cdivr
                @h[i][n] = cdivi
                if (x.abs > (z.abs + q.abs))
                  @h[i+1][n-1] = (-ra - w * @h[i][n-1] + q * @h[i][n]) / x
                  @h[i+1][n] = (-sa - w * @h[i][n] - q * @h[i][n-1]) / x
                else
                  cdivr, cdivi = cdiv(-r-y*@h[i][n-1], -s-y*@h[i][n], z, q)
                  @h[i+1][n-1] = cdivr
                  @h[i+1][n] = cdivi
                end
              end

              # Overflow control

              t = [@h[i][n-1].abs, @h[i][n].abs].max
              if ((eps * t) * t > 1)
                i.upto(n) do |j|
                  @h[j][n-1] = @h[j][n-1] / t
                  @h[j][n] = @h[j][n] / t
                end
              end
            end
          end
        end
      end

      # Vectors of isolated roots

      nn.times do |i|
        if (i < low || i > high)
          i.upto(nn-1) do |j|
            @v[i][j] = @h[i][j]
          end
        end
      end

      # Back transformation to get eigenvectors of original matrix

      (nn-1).downto(low) do |j|
        low.upto(high) do |i|
          z = 0.0
          low.upto([j, high].min) do |k|
            z += @v[i][k] * @h[k][j]
          end
          @v[i][j] = z
        end
      end
    end

  end
end
PKEH[3��DDshare/ruby/matrix/version.rbnu�[���# frozen_string_literal: true

class Matrix
  VERSION = "0.2.0"
end
PKEH[P\_;%%share/ruby/pstore/version.rbnu�[���class PStore
  VERSION = "0.1.0"
end
PKEH[�����+�+share/ruby/tempfile.rbnu�[���# frozen_string_literal: true
#
# tempfile - manipulates temporary files
#
# $Id$
#

require 'delegate'
require 'tmpdir'

# A utility class for managing temporary files. When you create a Tempfile
# object, it will create a temporary file with a unique filename. A Tempfile
# objects behaves just like a File object, and you can perform all the usual
# file operations on it: reading data, writing data, changing its permissions,
# etc. So although this class does not explicitly document all instance methods
# supported by File, you can in fact call any File instance method on a
# Tempfile object.
#
# == Synopsis
#
#   require 'tempfile'
#
#   file = Tempfile.new('foo')
#   file.path      # => A unique filename in the OS's temp directory,
#                  #    e.g.: "/tmp/foo.24722.0"
#                  #    This filename contains 'foo' in its basename.
#   file.write("hello world")
#   file.rewind
#   file.read      # => "hello world"
#   file.close
#   file.unlink    # deletes the temp file
#
# == Good practices
#
# === Explicit close
#
# When a Tempfile object is garbage collected, or when the Ruby interpreter
# exits, its associated temporary file is automatically deleted. This means
# that's it's unnecessary to explicitly delete a Tempfile after use, though
# it's good practice to do so: not explicitly deleting unused Tempfiles can
# potentially leave behind large amounts of tempfiles on the filesystem
# until they're garbage collected. The existence of these temp files can make
# it harder to determine a new Tempfile filename.
#
# Therefore, one should always call #unlink or close in an ensure block, like
# this:
#
#   file = Tempfile.new('foo')
#   begin
#      # ...do something with file...
#   ensure
#      file.close
#      file.unlink   # deletes the temp file
#   end
#
# === Unlink after creation
#
# On POSIX systems, it's possible to unlink a file right after creating it,
# and before closing it. This removes the filesystem entry without closing
# the file handle, so it ensures that only the processes that already had
# the file handle open can access the file's contents. It's strongly
# recommended that you do this if you do not want any other processes to
# be able to read from or write to the Tempfile, and you do not need to
# know the Tempfile's filename either.
#
# For example, a practical use case for unlink-after-creation would be this:
# you need a large byte buffer that's too large to comfortably fit in RAM,
# e.g. when you're writing a web server and you want to buffer the client's
# file upload data.
#
# Please refer to #unlink for more information and a code example.
#
# == Minor notes
#
# Tempfile's filename picking method is both thread-safe and inter-process-safe:
# it guarantees that no other threads or processes will pick the same filename.
#
# Tempfile itself however may not be entirely thread-safe. If you access the
# same Tempfile object from multiple threads then you should protect it with a
# mutex.
class Tempfile < DelegateClass(File)
  # Creates a temporary file with permissions 0600 (= only readable and
  # writable by the owner) and opens it with mode "w+".
  #
  # The +basename+ parameter is used to determine the name of the
  # temporary file. You can either pass a String or an Array with
  # 2 String elements. In the former form, the temporary file's base
  # name will begin with the given string. In the latter form,
  # the temporary file's base name will begin with the array's first
  # element, and end with the second element. For example:
  #
  #   file = Tempfile.new('hello')
  #   file.path  # => something like: "/tmp/hello2843-8392-92849382--0"
  #
  #   # Use the Array form to enforce an extension in the filename:
  #   file = Tempfile.new(['hello', '.jpg'])
  #   file.path  # => something like: "/tmp/hello2843-8392-92849382--0.jpg"
  #
  # The temporary file will be placed in the directory as specified
  # by the +tmpdir+ parameter. By default, this is +Dir.tmpdir+.
  #
  #   file = Tempfile.new('hello', '/home/aisaka')
  #   file.path  # => something like: "/home/aisaka/hello2843-8392-92849382--0"
  #
  # You can also pass an options hash. Under the hood, Tempfile creates
  # the temporary file using +File.open+. These options will be passed to
  # +File.open+. This is mostly useful for specifying encoding
  # options, e.g.:
  #
  #   Tempfile.new('hello', '/home/aisaka', encoding: 'ascii-8bit')
  #
  #   # You can also omit the 'tmpdir' parameter:
  #   Tempfile.new('hello', encoding: 'ascii-8bit')
  #
  # Note: +mode+ keyword argument, as accepted by Tempfile, can only be
  # numeric, combination of the modes defined in File::Constants.
  #
  # === Exceptions
  #
  # If Tempfile.new cannot find a unique filename within a limited
  # number of tries, then it will raise an exception.
  def initialize(basename="", tmpdir=nil, mode: 0, **options)
    warn "Tempfile.new doesn't call the given block.", uplevel: 1 if block_given?

    @unlinked = false
    @mode = mode|File::RDWR|File::CREAT|File::EXCL
    ::Dir::Tmpname.create(basename, tmpdir, **options) do |tmpname, n, opts|
      opts[:perm] = 0600
      @tmpfile = File.open(tmpname, @mode, **opts)
      @opts = opts.freeze
    end
    ObjectSpace.define_finalizer(self, Remover.new(@tmpfile))

    super(@tmpfile)
  end

  # Opens or reopens the file with mode "r+".
  def open
    _close
    mode = @mode & ~(File::CREAT|File::EXCL)
    @tmpfile = File.open(@tmpfile.path, mode, **@opts)
    __setobj__(@tmpfile)
  end

  def _close    # :nodoc:
    @tmpfile.close
  end
  protected :_close

  # Closes the file. If +unlink_now+ is true, then the file will be unlinked
  # (deleted) after closing. Of course, you can choose to later call #unlink
  # if you do not unlink it now.
  #
  # If you don't explicitly unlink the temporary file, the removal
  # will be delayed until the object is finalized.
  def close(unlink_now=false)
    _close
    unlink if unlink_now
  end

  # Closes and unlinks (deletes) the file. Has the same effect as called
  # <tt>close(true)</tt>.
  def close!
    close(true)
  end

  # Unlinks (deletes) the file from the filesystem. One should always unlink
  # the file after using it, as is explained in the "Explicit close" good
  # practice section in the Tempfile overview:
  #
  #   file = Tempfile.new('foo')
  #   begin
  #      # ...do something with file...
  #   ensure
  #      file.close
  #      file.unlink   # deletes the temp file
  #   end
  #
  # === Unlink-before-close
  #
  # On POSIX systems it's possible to unlink a file before closing it. This
  # practice is explained in detail in the Tempfile overview (section
  # "Unlink after creation"); please refer there for more information.
  #
  # However, unlink-before-close may not be supported on non-POSIX operating
  # systems. Microsoft Windows is the most notable case: unlinking a non-closed
  # file will result in an error, which this method will silently ignore. If
  # you want to practice unlink-before-close whenever possible, then you should
  # write code like this:
  #
  #   file = Tempfile.new('foo')
  #   file.unlink   # On Windows this silently fails.
  #   begin
  #      # ... do something with file ...
  #   ensure
  #      file.close!   # Closes the file handle. If the file wasn't unlinked
  #                    # because #unlink failed, then this method will attempt
  #                    # to do so again.
  #   end
  def unlink
    return if @unlinked
    begin
      File.unlink(@tmpfile.path)
    rescue Errno::ENOENT
    rescue Errno::EACCES
      # may not be able to unlink on Windows; just ignore
      return
    end
    ObjectSpace.undefine_finalizer(self)
    @unlinked = true
  end
  alias delete unlink

  # Returns the full path name of the temporary file.
  # This will be nil if #unlink has been called.
  def path
    @unlinked ? nil : @tmpfile.path
  end

  # Returns the size of the temporary file.  As a side effect, the IO
  # buffer is flushed before determining the size.
  def size
    if !@tmpfile.closed?
      @tmpfile.size # File#size calls rb_io_flush_raw()
    else
      File.size(@tmpfile.path)
    end
  end
  alias length size

  # :stopdoc:
  def inspect
    if @tmpfile.closed?
      "#<#{self.class}:#{path} (closed)>"
    else
      "#<#{self.class}:#{path}>"
    end
  end

  class Remover # :nodoc:
    def initialize(tmpfile)
      @pid = Process.pid
      @tmpfile = tmpfile
    end

    def call(*args)
      return if @pid != Process.pid

      $stderr.puts "removing #{@tmpfile.path}..." if $DEBUG

      @tmpfile.close
      begin
        File.unlink(@tmpfile.path)
      rescue Errno::ENOENT
      end

      $stderr.puts "done" if $DEBUG
    end
  end

  class << self
    # :startdoc:

    # Creates a new Tempfile.
    #
    # If no block is given, this is a synonym for Tempfile.new.
    #
    # If a block is given, then a Tempfile object will be constructed,
    # and the block is run with said object as argument. The Tempfile
    # object will be automatically closed after the block terminates.
    # The call returns the value of the block.
    #
    # In any case, all arguments (<code>*args</code>) will be passed to Tempfile.new.
    #
    #   Tempfile.open('foo', '/home/temp') do |f|
    #      # ... do something with f ...
    #   end
    #
    #   # Equivalent:
    #   f = Tempfile.open('foo', '/home/temp')
    #   begin
    #      # ... do something with f ...
    #   ensure
    #      f.close
    #   end
    def open(*args, **kw)
      tempfile = new(*args, **kw)

      if block_given?
        begin
          yield(tempfile)
        ensure
          tempfile.close
        end
      else
        tempfile
      end
    end
  end
end

# Creates a temporary file as usual File object (not Tempfile).
# It doesn't use finalizer and delegation.
#
# If no block is given, this is similar to Tempfile.new except
# creating File instead of Tempfile.
# The created file is not removed automatically.
# You should use File.unlink to remove it.
#
# If a block is given, then a File object will be constructed,
# and the block is invoked with the object as the argument.
# The File object will be automatically closed and
# the temporary file is removed after the block terminates.
# The call returns the value of the block.
#
# In any case, all arguments (+basename+, +tmpdir+, +mode+, and
# <code>**options</code>) will be treated as Tempfile.new.
#
#   Tempfile.create('foo', '/home/temp') do |f|
#      # ... do something with f ...
#   end
#
def Tempfile.create(basename="", tmpdir=nil, mode: 0, **options)
  tmpfile = nil
  Dir::Tmpname.create(basename, tmpdir, **options) do |tmpname, n, opts|
    mode |= File::RDWR|File::CREAT|File::EXCL
    opts[:perm] = 0600
    tmpfile = File.open(tmpname, mode, **opts)
  end
  if block_given?
    begin
      yield tmpfile
    ensure
      unless tmpfile.closed?
        if File.identical?(tmpfile, tmpfile.path)
          unlinked = File.unlink tmpfile.path rescue nil
        end
        tmpfile.close
      end
      unless unlinked
        begin
          File.unlink tmpfile.path
        rescue Errno::ENOENT
        end
      end
    end
  else
    tmpfile
  end
end
PKEH[Ճ�5'5'share/ruby/cgi.rbnu�[���# frozen_string_literal: true
#
# cgi.rb - cgi support library
#
# Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
#
# Copyright (C) 2000  Information-technology Promotion Agency, Japan
#
# Author: Wakou Aoyama <wakou@ruby-lang.org>
#
# Documentation: Wakou Aoyama (RDoc'd and embellished by William Webber)
#

# == Overview
#
# The Common Gateway Interface (CGI) is a simple protocol for passing an HTTP
# request from a web server to a standalone program, and returning the output
# to the web browser.  Basically, a CGI program is called with the parameters
# of the request passed in either in the environment (GET) or via $stdin
# (POST), and everything it prints to $stdout is returned to the client.
#
# This file holds the CGI class.  This class provides functionality for
# retrieving HTTP request parameters, managing cookies, and generating HTML
# output.
#
# The file CGI::Session provides session management functionality; see that
# class for more details.
#
# See http://www.w3.org/CGI/ for more information on the CGI protocol.
#
# == Introduction
#
# CGI is a large class, providing several categories of methods, many of which
# are mixed in from other modules.  Some of the documentation is in this class,
# some in the modules CGI::QueryExtension and CGI::HtmlExtension.  See
# CGI::Cookie for specific information on handling cookies, and cgi/session.rb
# (CGI::Session) for information on sessions.
#
# For queries, CGI provides methods to get at environmental variables,
# parameters, cookies, and multipart request data.  For responses, CGI provides
# methods for writing output and generating HTML.
#
# Read on for more details.  Examples are provided at the bottom.
#
# == Queries
#
# The CGI class dynamically mixes in parameter and cookie-parsing
# functionality,  environmental variable access, and support for
# parsing multipart requests (including uploaded files) from the
# CGI::QueryExtension module.
#
# === Environmental Variables
#
# The standard CGI environmental variables are available as read-only
# attributes of a CGI object.  The following is a list of these variables:
#
#
#   AUTH_TYPE               HTTP_HOST          REMOTE_IDENT
#   CONTENT_LENGTH          HTTP_NEGOTIATE     REMOTE_USER
#   CONTENT_TYPE            HTTP_PRAGMA        REQUEST_METHOD
#   GATEWAY_INTERFACE       HTTP_REFERER       SCRIPT_NAME
#   HTTP_ACCEPT             HTTP_USER_AGENT    SERVER_NAME
#   HTTP_ACCEPT_CHARSET     PATH_INFO          SERVER_PORT
#   HTTP_ACCEPT_ENCODING    PATH_TRANSLATED    SERVER_PROTOCOL
#   HTTP_ACCEPT_LANGUAGE    QUERY_STRING       SERVER_SOFTWARE
#   HTTP_CACHE_CONTROL      REMOTE_ADDR
#   HTTP_FROM               REMOTE_HOST
#
#
# For each of these variables, there is a corresponding attribute with the
# same name, except all lower case and without a preceding HTTP_.
# +content_length+ and +server_port+ are integers; the rest are strings.
#
# === Parameters
#
# The method #params() returns a hash of all parameters in the request as
# name/value-list pairs, where the value-list is an Array of one or more
# values.  The CGI object itself also behaves as a hash of parameter names
# to values, but only returns a single value (as a String) for each
# parameter name.
#
# For instance, suppose the request contains the parameter
# "favourite_colours" with the multiple values "blue" and "green".  The
# following behavior would occur:
#
#   cgi.params["favourite_colours"]  # => ["blue", "green"]
#   cgi["favourite_colours"]         # => "blue"
#
# If a parameter does not exist, the former method will return an empty
# array, the latter an empty string.  The simplest way to test for existence
# of a parameter is by the #has_key? method.
#
# === Cookies
#
# HTTP Cookies are automatically parsed from the request.  They are available
# from the #cookies() accessor, which returns a hash from cookie name to
# CGI::Cookie object.
#
# === Multipart requests
#
# If a request's method is POST and its content type is multipart/form-data,
# then it may contain uploaded files.  These are stored by the QueryExtension
# module in the parameters of the request.  The parameter name is the name
# attribute of the file input field, as usual.  However, the value is not
# a string, but an IO object, either an IOString for small files, or a
# Tempfile for larger ones.  This object also has the additional singleton
# methods:
#
# #local_path():: the path of the uploaded file on the local filesystem
# #original_filename():: the name of the file on the client computer
# #content_type():: the content type of the file
#
# == Responses
#
# The CGI class provides methods for sending header and content output to
# the HTTP client, and mixes in methods for programmatic HTML generation
# from CGI::HtmlExtension and CGI::TagMaker modules.  The precise version of HTML
# to use for HTML generation is specified at object creation time.
#
# === Writing output
#
# The simplest way to send output to the HTTP client is using the #out() method.
# This takes the HTTP headers as a hash parameter, and the body content
# via a block.  The headers can be generated as a string using the #http_header()
# method.  The output stream can be written directly to using the #print()
# method.
#
# === Generating HTML
#
# Each HTML element has a corresponding method for generating that
# element as a String.  The name of this method is the same as that
# of the element, all lowercase.  The attributes of the element are
# passed in as a hash, and the body as a no-argument block that evaluates
# to a String.  The HTML generation module knows which elements are
# always empty, and silently drops any passed-in body.  It also knows
# which elements require matching closing tags and which don't.  However,
# it does not know what attributes are legal for which elements.
#
# There are also some additional HTML generation methods mixed in from
# the CGI::HtmlExtension module.  These include individual methods for the
# different types of form inputs, and methods for elements that commonly
# take particular attributes where the attributes can be directly specified
# as arguments, rather than via a hash.
#
# === Utility HTML escape and other methods like a function.
#
# There are some utility tool defined in cgi/util.rb .
# And when include, you can use utility methods like a function.
#
# == Examples of use
#
# === Get form values
#
#   require "cgi"
#   cgi = CGI.new
#   value = cgi['field_name']   # <== value string for 'field_name'
#     # if not 'field_name' included, then return "".
#   fields = cgi.keys            # <== array of field names
#
#   # returns true if form has 'field_name'
#   cgi.has_key?('field_name')
#   cgi.has_key?('field_name')
#   cgi.include?('field_name')
#
# CAUTION! cgi['field_name'] returned an Array with the old
# cgi.rb(included in Ruby 1.6)
#
# === Get form values as hash
#
#   require "cgi"
#   cgi = CGI.new
#   params = cgi.params
#
# cgi.params is a hash.
#
#   cgi.params['new_field_name'] = ["value"]  # add new param
#   cgi.params['field_name'] = ["new_value"]  # change value
#   cgi.params.delete('field_name')           # delete param
#   cgi.params.clear                          # delete all params
#
#
# === Save form values to file
#
#   require "pstore"
#   db = PStore.new("query.db")
#   db.transaction do
#     db["params"] = cgi.params
#   end
#
#
# === Restore form values from file
#
#   require "pstore"
#   db = PStore.new("query.db")
#   db.transaction do
#     cgi.params = db["params"]
#   end
#
#
# === Get multipart form values
#
#   require "cgi"
#   cgi = CGI.new
#   value = cgi['field_name']   # <== value string for 'field_name'
#   value.read                  # <== body of value
#   value.local_path            # <== path to local file of value
#   value.original_filename     # <== original filename of value
#   value.content_type          # <== content_type of value
#
# and value has StringIO or Tempfile class methods.
#
# === Get cookie values
#
#   require "cgi"
#   cgi = CGI.new
#   values = cgi.cookies['name']  # <== array of 'name'
#     # if not 'name' included, then return [].
#   names = cgi.cookies.keys      # <== array of cookie names
#
# and cgi.cookies is a hash.
#
# === Get cookie objects
#
#   require "cgi"
#   cgi = CGI.new
#   for name, cookie in cgi.cookies
#     cookie.expires = Time.now + 30
#   end
#   cgi.out("cookie" => cgi.cookies) {"string"}
#
#   cgi.cookies # { "name1" => cookie1, "name2" => cookie2, ... }
#
#   require "cgi"
#   cgi = CGI.new
#   cgi.cookies['name'].expires = Time.now + 30
#   cgi.out("cookie" => cgi.cookies['name']) {"string"}
#
# === Print http header and html string to $DEFAULT_OUTPUT ($>)
#
#   require "cgi"
#   cgi = CGI.new("html4")  # add HTML generation methods
#   cgi.out do
#     cgi.html do
#       cgi.head do
#         cgi.title { "TITLE" }
#       end +
#       cgi.body do
#         cgi.form("ACTION" => "uri") do
#           cgi.p do
#             cgi.textarea("get_text") +
#             cgi.br +
#             cgi.submit
#           end
#         end +
#         cgi.pre do
#           CGI.escapeHTML(
#             "params: #{cgi.params.inspect}\n" +
#             "cookies: #{cgi.cookies.inspect}\n" +
#             ENV.collect do |key, value|
#               "#{key} --> #{value}\n"
#             end.join("")
#           )
#         end
#       end
#     end
#   end
#
#   # add HTML generation methods
#   CGI.new("html3")    # html3.2
#   CGI.new("html4")    # html4.01 (Strict)
#   CGI.new("html4Tr")  # html4.01 Transitional
#   CGI.new("html4Fr")  # html4.01 Frameset
#   CGI.new("html5")    # html5
#
# === Some utility methods
#
#   require 'cgi/util'
#   CGI.escapeHTML('Usage: foo "bar" <baz>')
#
#
# === Some utility methods like a function
#
#   require 'cgi/util'
#   include CGI::Util
#   escapeHTML('Usage: foo "bar" <baz>')
#   h('Usage: foo "bar" <baz>') # alias
#
#

class CGI
end

require 'cgi/core'
require 'cgi/cookie'
require 'cgi/util'
CGI.autoload(:HtmlExtension, 'cgi/html')
PKEH[e�8Aaashare/ruby/rss/maker.rbnu�[���# frozen_string_literal: false
require_relative "rss"

module RSS
  ##
  #
  # Provides a set of builders for various RSS objects
  #
  # * Feeds
  #   * RSS 0.91
  #   * RSS 1.0
  #   * RSS 2.0
  #   * Atom 1.0
  #
  # * Elements
  #   * Atom::Entry

  module Maker

    # Collection of supported makers
    MAKERS = {}

    class << self
      # Builder for an RSS object
      # Creates an object of the type passed in +args+
      #
      # Executes the +block+ to populate elements of the created RSS object
      def make(version, &block)
        self[version].make(&block)
      end

      # Returns the maker for the +version+
      def [](version)
        maker_info = maker(version)
        raise UnsupportedMakerVersionError.new(version) if maker_info.nil?
        maker_info[:maker]
      end

      # Adds a maker to the set of supported makers
      def add_maker(version, normalized_version, maker)
        MAKERS[version] = {:maker => maker, :version => normalized_version}
      end

      # Returns collection of supported maker versions
      def versions
        MAKERS.keys.uniq.sort
      end

      # Returns collection of supported makers
      def makers
        MAKERS.values.collect { |info| info[:maker] }.uniq
      end

      # Returns true if the version is supported
      def supported?(version)
        versions.include?(version)
      end

      private
      # Can I remove this method?
      def maker(version)
        MAKERS[version]
      end
    end
  end
end

require_relative "maker/1.0"
require_relative "maker/2.0"
require_relative "maker/feed"
require_relative "maker/entry"
require_relative "maker/content"
require_relative "maker/dublincore"
require_relative "maker/slash"
require_relative "maker/syndication"
require_relative "maker/taxonomy"
require_relative "maker/trackback"
require_relative "maker/image"
require_relative "maker/itunes"
PKEH[�y���share/ruby/rss/converter.rbnu�[���# frozen_string_literal: false
require_relative "utils"

module RSS

  class Converter

    include Utils

    def initialize(to_enc, from_enc=nil)
      if "".respond_to?(:encode)
        @to_encoding = to_enc
        return
      end
      normalized_to_enc = to_enc.downcase.gsub(/-/, '_')
      from_enc ||= 'utf-8'
      normalized_from_enc = from_enc.downcase.gsub(/-/, '_')
      if normalized_to_enc == normalized_from_enc
        def_same_enc()
      else
        def_diff_enc = "def_to_#{normalized_to_enc}_from_#{normalized_from_enc}"
        if respond_to?(def_diff_enc)
          __send__(def_diff_enc)
        else
          def_else_enc(to_enc, from_enc)
        end
      end
    end

    def convert(value)
      if value.is_a?(String) and value.respond_to?(:encode)
        value.encode(@to_encoding)
      else
        value
      end
    end

    def def_convert(depth=0)
      instance_eval(<<-EOC, *get_file_and_line_from_caller(depth))
      def convert(value)
        if value.kind_of?(String)
          #{yield('value')}
        else
          value
        end
      end
      EOC
    end

    def def_iconv_convert(to_enc, from_enc, depth=0)
      begin
        require "iconv"
        @iconv = Iconv.new(to_enc, from_enc)
        def_convert(depth+1) do |value|
          <<-EOC
          begin
            @iconv.iconv(#{value})
          rescue Iconv::Failure
            raise ConversionError.new(#{value}, "#{to_enc}", "#{from_enc}")
          end
          EOC
        end
      rescue LoadError, ArgumentError, SystemCallError
        raise UnknownConversionMethodError.new(to_enc, from_enc)
      end
    end

    def def_else_enc(to_enc, from_enc)
      def_iconv_convert(to_enc, from_enc, 0)
    end

    def def_same_enc()
      def_convert do |value|
        value
      end
    end

    def def_uconv_convert_if_can(meth, to_enc, from_enc, nkf_arg)
      begin
        require "uconv"
        def_convert(1) do |value|
          <<-EOC
          begin
            Uconv.#{meth}(#{value})
          rescue Uconv::Error
            raise ConversionError.new(#{value}, "#{to_enc}", "#{from_enc}")
          end
          EOC
        end
      rescue LoadError
        require 'nkf'
        if NKF.const_defined?(:UTF8)
          def_convert(1) do |value|
            "NKF.nkf(#{nkf_arg.dump}, #{value})"
          end
        else
          def_iconv_convert(to_enc, from_enc, 1)
        end
      end
    end

    def def_to_euc_jp_from_utf_8
      def_uconv_convert_if_can('u8toeuc', 'EUC-JP', 'UTF-8', '-We')
    end

    def def_to_utf_8_from_euc_jp
      def_uconv_convert_if_can('euctou8', 'UTF-8', 'EUC-JP', '-Ew')
    end

    def def_to_shift_jis_from_utf_8
      def_uconv_convert_if_can('u8tosjis', 'Shift_JIS', 'UTF-8', '-Ws')
    end

    def def_to_utf_8_from_shift_jis
      def_uconv_convert_if_can('sjistou8', 'UTF-8', 'Shift_JIS', '-Sw')
    end

    def def_to_euc_jp_from_shift_jis
      require "nkf"
      def_convert do |value|
        "NKF.nkf('-Se', #{value})"
      end
    end

    def def_to_shift_jis_from_euc_jp
      require "nkf"
      def_convert do |value|
        "NKF.nkf('-Es', #{value})"
      end
    end

    def def_to_euc_jp_from_iso_2022_jp
      require "nkf"
      def_convert do |value|
        "NKF.nkf('-Je', #{value})"
      end
    end

    def def_to_iso_2022_jp_from_euc_jp
      require "nkf"
      def_convert do |value|
        "NKF.nkf('-Ej', #{value})"
      end
    end

    def def_to_utf_8_from_iso_8859_1
      def_convert do |value|
        "#{value}.unpack('C*').pack('U*')"
      end
    end

    def def_to_iso_8859_1_from_utf_8
      def_convert do |value|
        <<-EOC
        array_utf8 = #{value}.unpack('U*')
        array_enc = []
        array_utf8.each do |num|
          if num <= 0xFF
            array_enc << num
          else
            array_enc.concat "&\#\#{num};".unpack('C*')
          end
        end
        array_enc.pack('C*')
        EOC
      end
    end

  end

end
PKFH[BD�4(4(share/ruby/rss/maker/1.0.rbnu�[���# frozen_string_literal: false
require_relative "../1.0"

require_relative "base"

module RSS
  module Maker

    class RSS10 < RSSBase

      def initialize(feed_version="1.0")
        super
        @feed_type = "rss"
      end

      private
      def make_feed
        RDF.new(@version, @encoding, @standalone)
      end

      def setup_elements(rss)
        setup_channel(rss)
        setup_image(rss)
        setup_items(rss)
        setup_textinput(rss)
      end

      class Channel < ChannelBase
        include SetupDefaultLanguage

        def to_feed(rss)
          set_default_values do
            _not_set_required_variables = not_set_required_variables
            if _not_set_required_variables.empty?
              channel = RDF::Channel.new(@about)
              setup_values(channel)
              channel.dc_dates.clear
              rss.channel = channel
              set_parent(channel, rss)
              setup_items(rss)
              setup_image(rss)
              setup_textinput(rss)
              setup_other_elements(rss, channel)
            else
              raise NotSetError.new("maker.channel", _not_set_required_variables)
            end
          end
        end

        private
        def setup_items(rss)
          items = RDF::Channel::Items.new
          seq = items.Seq
          set_parent(items, seq)
          target_items = @maker.items.normalize
          raise NotSetError.new("maker", ["items"]) if target_items.empty?
          target_items.each do |item|
            li = RDF::Channel::Items::Seq::Li.new(item.link)
            seq.lis << li
            set_parent(li, seq)
          end
          rss.channel.items = items
          set_parent(rss.channel, items)
        end

        def setup_image(rss)
          if @maker.image.have_required_values?
            image = RDF::Channel::Image.new(@maker.image.url)
            rss.channel.image = image
            set_parent(image, rss.channel)
          end
        end

        def setup_textinput(rss)
          if @maker.textinput.have_required_values?
            textinput = RDF::Channel::Textinput.new(@maker.textinput.link)
            rss.channel.textinput = textinput
            set_parent(textinput, rss.channel)
          end
        end

        def required_variable_names
          %w(about link)
        end

        def not_set_required_variables
          vars = super
          vars << "description" unless description {|d| d.have_required_values?}
          vars << "title" unless title {|t| t.have_required_values?}
          vars
        end

        class SkipDays < SkipDaysBase
          def to_feed(*args)
          end

          class Day < DayBase
          end
        end

        class SkipHours < SkipHoursBase
          def to_feed(*args)
          end

          class Hour < HourBase
          end
        end

        class Cloud < CloudBase
          def to_feed(*args)
          end
        end

        class Categories < CategoriesBase
          def to_feed(*args)
          end

          class Category < CategoryBase
          end
        end

        class Links < LinksBase
          def to_feed(rss, channel)
            return if @links.empty?
            @links.first.to_feed(rss, channel)
          end

          class Link < LinkBase
            def to_feed(rss, channel)
              if have_required_values?
                channel.link = href
              else
                raise NotSetError.new("maker.channel.link",
                                      not_set_required_variables)
              end
            end

            private
            def required_variable_names
              %w(href)
            end
          end
        end

        class Authors < AuthorsBase
          def to_feed(rss, channel)
          end

          class Author < AuthorBase
            def to_feed(rss, channel)
            end
          end
        end

        class Contributors < ContributorsBase
          def to_feed(rss, channel)
          end

          class Contributor < ContributorBase
          end
        end

        class Generator < GeneratorBase
          def to_feed(rss, channel)
          end
        end

        class Copyright < CopyrightBase
          def to_feed(rss, channel)
          end
        end

        class Description < DescriptionBase
          def to_feed(rss, channel)
            channel.description = content if have_required_values?
          end

          private
          def required_variable_names
            %w(content)
          end
        end

        class Title < TitleBase
          def to_feed(rss, channel)
            channel.title = content if have_required_values?
          end

          private
          def required_variable_names
            %w(content)
          end
        end
      end

      class Image < ImageBase
        def to_feed(rss)
          if @url
            image = RDF::Image.new(@url)
            set = setup_values(image)
            if set
              rss.image = image
              set_parent(image, rss)
              setup_other_elements(rss, image)
            end
          end
        end

        def have_required_values?
          super and @maker.channel.have_required_values?
        end

        private
        def variables
          super + ["link"]
        end

        def required_variable_names
          %w(url title link)
        end
      end

      class Items < ItemsBase
        def to_feed(rss)
          if rss.channel
            normalize.each do |item|
              item.to_feed(rss)
            end
            setup_other_elements(rss, rss.items)
          end
        end

        class Item < ItemBase
          def to_feed(rss)
            set_default_values do
              item = RDF::Item.new(link)
              set = setup_values(item)
              if set
                item.dc_dates.clear
                rss.items << item
                set_parent(item, rss)
                setup_other_elements(rss, item)
              elsif !have_required_values?
                raise NotSetError.new("maker.item", not_set_required_variables)
              end
            end
          end

          private
          def required_variable_names
            %w(link)
          end

          def variables
            super + %w(link)
          end

          def not_set_required_variables
            set_default_values do
              vars = super
              vars << "title" unless title {|t| t.have_required_values?}
              vars
            end
          end

          class Guid < GuidBase
            def to_feed(*args)
            end
          end

          class Enclosure < EnclosureBase
            def to_feed(*args)
            end
          end

          class Source < SourceBase
            def to_feed(*args)
            end

            class Authors < AuthorsBase
              def to_feed(*args)
              end

              class Author < AuthorBase
              end
            end

            class Categories < CategoriesBase
              def to_feed(*args)
              end

              class Category < CategoryBase
              end
            end

            class Contributors < ContributorsBase
              def to_feed(*args)
              end

              class Contributor < ContributorBase
              end
            end

            class Generator < GeneratorBase
              def to_feed(*args)
              end
            end

            class Icon < IconBase
              def to_feed(*args)
              end
            end

            class Links < LinksBase
              def to_feed(*args)
              end

              class Link < LinkBase
              end
            end

            class Logo < LogoBase
              def to_feed(*args)
              end
            end

            class Rights < RightsBase
              def to_feed(*args)
              end
            end

            class Subtitle < SubtitleBase
              def to_feed(*args)
              end
            end

            class Title < TitleBase
              def to_feed(*args)
              end
            end
          end

          class Categories < CategoriesBase
            def to_feed(*args)
            end

            class Category < CategoryBase
            end
          end

          class Authors < AuthorsBase
            def to_feed(*args)
            end

            class Author < AuthorBase
            end
          end

          class Links < LinksBase
            def to_feed(*args)
            end

            class Link < LinkBase
            end
          end

          class Contributors < ContributorsBase
            def to_feed(rss, item)
            end

            class Contributor < ContributorBase
            end
          end

          class Rights < RightsBase
            def to_feed(rss, item)
            end
          end

          class Description < DescriptionBase
            def to_feed(rss, item)
              item.description = content if have_required_values?
            end

            private
            def required_variable_names
              %w(content)
            end
          end

          class Content < ContentBase
            def to_feed(rss, item)
            end
          end

          class Title < TitleBase
            def to_feed(rss, item)
              item.title = content if have_required_values?
            end

            private
            def required_variable_names
              %w(content)
            end
          end
        end
      end

      class Textinput < TextinputBase
        def to_feed(rss)
          if @link
            textinput = RDF::Textinput.new(@link)
            set = setup_values(textinput)
            if set
              rss.textinput = textinput
              set_parent(textinput, rss)
              setup_other_elements(rss, textinput)
            end
          end
        end

        def have_required_values?
          super and @maker.channel.have_required_values?
        end

        private
        def required_variable_names
          %w(title description name link)
        end
      end
    end

    add_maker("1.0", "1.0", RSS10)
    add_maker("rss1.0", "1.0", RSS10)
  end
end
PKFH[t�kk!share/ruby/rss/maker/trackback.rbnu�[���# frozen_string_literal: false
require_relative '../trackback'
require_relative '1.0'
require_relative '2.0'

module RSS
  module Maker
    module TrackBackModel
      def self.append_features(klass)
        super

        klass.def_other_element("#{RSS::TRACKBACK_PREFIX}_ping")
        klass.def_classed_elements("#{RSS::TRACKBACK_PREFIX}_about", "value",
                                   "TrackBackAbouts")
      end

      class TrackBackAboutsBase < Base
        def_array_element("about", nil, "TrackBackAbout")

        class TrackBackAboutBase < Base
          attr_accessor :value
          add_need_initialize_variable("value")

          alias_method(:resource, :value)
          alias_method(:resource=, :value=)
          alias_method(:content, :value)
          alias_method(:content=, :value=)

          def have_required_values?
            @value
          end

          def to_feed(feed, current)
            if current.respond_to?(:trackback_abouts) and have_required_values?
              about = current.class::TrackBackAbout.new
              setup_values(about)
              setup_other_elements(about)
              current.trackback_abouts << about
            end
          end
        end
      end
    end

    class ItemsBase
      class ItemBase; include TrackBackModel; end
    end

    makers.each do |maker|
      maker.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        class Items
          class Item
            class TrackBackAbouts < TrackBackAboutsBase
              class TrackBackAbout < TrackBackAboutBase
              end
            end
          end
        end
      EOC
    end
  end
end
PKFH[�b�share/ruby/rss/maker/slash.rbnu�[���# frozen_string_literal: false
require_relative '../slash'
require_relative '1.0'

module RSS
  module Maker
    module SlashModel
      def self.append_features(klass)
        super

        ::RSS::SlashModel::ELEMENT_INFOS.each do |name, type|
          full_name = "#{RSS::SLASH_PREFIX}_#{name}"
          case type
          when :csv_integer
            klass.def_csv_element(full_name, :integer)
          else
            klass.def_other_element(full_name)
          end
        end

        klass.module_eval do
          alias_method(:slash_hit_parades, :slash_hit_parade)
          alias_method(:slash_hit_parades=, :slash_hit_parade=)
        end
      end
    end

    class ItemsBase
      class ItemBase
        include SlashModel
      end
    end
  end
end
PKFH[A����� share/ruby/rss/maker/taxonomy.rbnu�[���# frozen_string_literal: false
require_relative '../taxonomy'
require_relative '1.0'
require_relative 'dublincore'

module RSS
  module Maker
    module TaxonomyTopicsModel
      def self.append_features(klass)
        super

        klass.def_classed_element("#{RSS::TAXO_PREFIX}_topics",
                                  "TaxonomyTopics")
      end

      def self.install_taxo_topics(klass)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class TaxonomyTopics < TaxonomyTopicsBase
            def to_feed(feed, current)
              if current.respond_to?(:taxo_topics)
                topics = current.class::TaxonomyTopics.new
                bag = topics.Bag
                @resources.each do |resource|
                  bag.lis << RDF::Bag::Li.new(resource)
                end
                current.taxo_topics = topics
              end
            end
          end
EOC
      end

      class TaxonomyTopicsBase < Base
        attr_reader :resources
        def_array_element("resource")
        remove_method :new_resource
      end
    end

    module TaxonomyTopicModel
      def self.append_features(klass)
        super

        class_name = "TaxonomyTopics"
        klass.def_classed_elements("#{TAXO_PREFIX}_topic", "value", class_name)
      end

      def self.install_taxo_topic(klass)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class TaxonomyTopics < TaxonomyTopicsBase
            class TaxonomyTopic < TaxonomyTopicBase
              DublinCoreModel.install_dublin_core(self)
              TaxonomyTopicsModel.install_taxo_topics(self)

              def to_feed(feed, current)
                if current.respond_to?(:taxo_topics)
                  topic = current.class::TaxonomyTopic.new(value)
                  topic.taxo_link = value
                  taxo_topics.to_feed(feed, topic) if taxo_topics
                  current.taxo_topics << topic
                  setup_other_elements(feed, topic)
                end
              end
            end
          end
EOC
      end

      class TaxonomyTopicsBase < Base
        def_array_element("topic", nil, "TaxonomyTopic")
        alias_method(:new_taxo_topic, :new_topic) # For backward compatibility

        class TaxonomyTopicBase < Base
          include DublinCoreModel
          include TaxonomyTopicsModel

          attr_accessor :value
          add_need_initialize_variable("value")
          alias_method(:taxo_link, :value)
          alias_method(:taxo_link=, :value=)

          def have_required_values?
            @value
          end
        end
      end
    end

    class RSSBase
      include TaxonomyTopicModel
    end

    class ChannelBase
      include TaxonomyTopicsModel
    end

    class ItemsBase
      class ItemBase
        include TaxonomyTopicsModel
      end
    end

    makers.each do |maker|
      maker.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        TaxonomyTopicModel.install_taxo_topic(self)

        class Channel
          TaxonomyTopicsModel.install_taxo_topics(self)
        end

        class Items
          class Item
            TaxonomyTopicsModel.install_taxo_topics(self)
          end
        end
      EOC
    end
  end
end
PKFH[�g��c`c`share/ruby/rss/maker/base.rbnu�[���# frozen_string_literal: false
require 'forwardable'

require_relative '../rss'

module RSS
  module Maker
    class Base
      extend Utils::InheritedReader

      OTHER_ELEMENTS = []
      NEED_INITIALIZE_VARIABLES = []

      class << self
        def other_elements
          inherited_array_reader("OTHER_ELEMENTS")
        end
        def need_initialize_variables
          inherited_array_reader("NEED_INITIALIZE_VARIABLES")
        end

        def inherited_base
          ::RSS::Maker::Base
        end

        def inherited(subclass)
          subclass.const_set(:OTHER_ELEMENTS, [])
          subclass.const_set(:NEED_INITIALIZE_VARIABLES, [])
        end

        def add_other_element(variable_name)
          self::OTHER_ELEMENTS << variable_name
        end

        def add_need_initialize_variable(variable_name, init_value=nil,
                                         &init_block)
          init_value ||= init_block
          self::NEED_INITIALIZE_VARIABLES << [variable_name, init_value]
        end

        def def_array_element(name, plural=nil, klass_name=nil)
          include Enumerable
          extend Forwardable

          plural ||= "#{name}s"
          klass_name ||= Utils.to_class_name(name)
          def_delegators("@#{plural}", :<<, :[], :[]=, :first, :last)
          def_delegators("@#{plural}", :push, :pop, :shift, :unshift)
          def_delegators("@#{plural}", :each, :size, :empty?, :clear)

          add_need_initialize_variable(plural) {[]}

          module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            def new_#{name}
              #{name} = self.class::#{klass_name}.new(@maker)
              @#{plural} << #{name}
              if block_given?
                yield #{name}
              else
                #{name}
              end
            end
            alias new_child new_#{name}

            def to_feed(*args)
              @#{plural}.each do |#{name}|
                #{name}.to_feed(*args)
              end
            end

            def replace(elements)
              @#{plural}.replace(elements.to_a)
            end
          EOC
        end

        def def_classed_element_without_accessor(name, class_name=nil)
          class_name ||= Utils.to_class_name(name)
          add_other_element(name)
          add_need_initialize_variable(name) do |object|
            object.send("make_#{name}")
          end
          module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            private
            def setup_#{name}(feed, current)
              @#{name}.to_feed(feed, current)
            end

            def make_#{name}
              self.class::#{class_name}.new(@maker)
            end
          EOC
        end

        def def_classed_element(name, class_name=nil, attribute_name=nil)
          def_classed_element_without_accessor(name, class_name)
          if attribute_name
            module_eval(<<-EOC, __FILE__, __LINE__ + 1)
              def #{name}
                if block_given?
                  yield(@#{name})
                else
                  @#{name}.#{attribute_name}
                end
              end

              def #{name}=(new_value)
                @#{name}.#{attribute_name} = new_value
              end
            EOC
          else
            attr_reader name
          end
        end

        def def_classed_elements(name, attribute, plural_class_name=nil,
                                 plural_name=nil, new_name=nil)
          plural_name ||= "#{name}s"
          new_name ||= name
          def_classed_element(plural_name, plural_class_name)
          local_variable_name = "_#{name}"
          new_value_variable_name = "new_value"
          additional_setup_code = nil
          if block_given?
            additional_setup_code = yield(local_variable_name,
                                          new_value_variable_name)
          end
          module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            def #{name}
              #{local_variable_name} = #{plural_name}.first
              #{local_variable_name} ? #{local_variable_name}.#{attribute} : nil
            end

            def #{name}=(#{new_value_variable_name})
              #{local_variable_name} =
                #{plural_name}.first || #{plural_name}.new_#{new_name}
              #{additional_setup_code}
              #{local_variable_name}.#{attribute} = #{new_value_variable_name}
            end
          EOC
        end

        def def_other_element(name)
          attr_accessor name
          def_other_element_without_accessor(name)
        end

        def def_other_element_without_accessor(name)
          add_need_initialize_variable(name)
          add_other_element(name)
          module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            def setup_#{name}(feed, current)
              if !@#{name}.nil? and current.respond_to?(:#{name}=)
                current.#{name} = @#{name}
              end
            end
          EOC
        end

        def def_csv_element(name, type=nil)
          def_other_element_without_accessor(name)
          attr_reader(name)
          converter = ""
          if type == :integer
            converter = "{|v| Integer(v)}"
          end
          module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            def #{name}=(value)
              @#{name} = Utils::CSV.parse(value)#{converter}
            end
          EOC
        end
      end

      attr_reader :maker
      def initialize(maker)
        @maker = maker
        @default_values_are_set = false
        initialize_variables
      end

      def have_required_values?
        not_set_required_variables.empty?
      end

      def variable_is_set?
        variables.any? {|var| not __send__(var).nil?}
      end

      private
      def initialize_variables
        self.class.need_initialize_variables.each do |variable_name, init_value|
          if init_value.nil?
            value = nil
          else
            if init_value.respond_to?(:call)
              value = init_value.call(self)
            elsif init_value.is_a?(String)
              # just for backward compatibility
              value = instance_eval(init_value, __FILE__, __LINE__)
            else
              value = init_value
            end
          end
          instance_variable_set("@#{variable_name}", value)
        end
      end

      def setup_other_elements(feed, current=nil)
        current ||= current_element(feed)
        self.class.other_elements.each do |element|
          __send__("setup_#{element}", feed, current)
        end
      end

      def current_element(feed)
        feed
      end

      def set_default_values(&block)
        return yield if @default_values_are_set

        begin
          @default_values_are_set = true
          _set_default_values(&block)
        ensure
          @default_values_are_set = false
        end
      end

      def _set_default_values(&block)
        yield
      end

      def setup_values(target)
        set = false
        if have_required_values?
          variables.each do |var|
            setter = "#{var}="
            if target.respond_to?(setter)
              value = __send__(var)
              unless value.nil?
                target.__send__(setter, value)
                set = true
              end
            end
          end
        end
        set
      end

      def set_parent(target, parent)
        target.parent = parent if target.class.need_parent?
      end

      def variables
        self.class.need_initialize_variables.find_all do |name, init|
          # init == "nil" is just for backward compatibility
          init.nil? or init == "nil"
        end.collect do |name, init|
          name
        end
      end

      def not_set_required_variables
        required_variable_names.find_all do |var|
          __send__(var).nil?
        end
      end

      def required_variables_are_set?
        required_variable_names.each do |var|
          return false if __send__(var).nil?
        end
        true
      end
    end

    module AtomPersonConstructBase
      def self.append_features(klass)
        super

        klass.class_eval(<<-EOC, __FILE__, __LINE__ + 1)
          %w(name uri email).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end
        EOC
      end
    end

    module AtomTextConstructBase
      module EnsureXMLContent
        class << self
          def included(base)
            super
            base.class_eval do
              %w(type content xml_content).each do |element|
                attr_reader element
                attr_writer element if element != "xml_content"
                add_need_initialize_variable(element)
              end

              alias_method(:xhtml, :xml_content)
            end
          end
        end

        def ensure_xml_content(content)
          xhtml_uri = ::RSS::Atom::XHTML_URI
          unless content.is_a?(RSS::XML::Element) and
              ["div", xhtml_uri] == [content.name, content.uri]
            children = content
            children = [children] unless content.is_a?(Array)
            children = set_xhtml_uri_as_default_uri(children)
            content = RSS::XML::Element.new("div", nil, xhtml_uri,
                                            {"xmlns" => xhtml_uri},
                                            children)
          end
          content
        end

        def xml_content=(content)
          @xml_content = ensure_xml_content(content)
        end

        def xhtml=(content)
          self.xml_content = content
        end

        private
        def set_xhtml_uri_as_default_uri(children)
          children.collect do |child|
            if child.is_a?(RSS::XML::Element) and
                child.prefix.nil? and child.uri.nil?
              RSS::XML::Element.new(child.name, nil, ::RSS::Atom::XHTML_URI,
                                    child.attributes.dup,
                                    set_xhtml_uri_as_default_uri(child.children))
            else
              child
            end
          end
        end
      end

      def self.append_features(klass)
        super

        klass.class_eval do
          include EnsureXMLContent
        end
      end
    end

    module SetupDefaultDate
      private
      def _set_default_values
        keep = {
          :date => date,
          :dc_dates => dc_dates.to_a.dup,
        }
        _date = _parse_date_if_needed(date)
        if _date and !dc_dates.any? {|dc_date| dc_date.value == _date}
          dc_date = self.class::DublinCoreDates::DublinCoreDate.new(self)
          dc_date.value = _date.dup
          dc_dates.unshift(dc_date)
        end
        self.date ||= self.dc_date
        super
      ensure
        self.date = keep[:date]
        dc_dates.replace(keep[:dc_dates])
      end

      def _parse_date_if_needed(date_value)
        date_value = Time.parse(date_value) if date_value.is_a?(String)
        date_value
      end
    end

    module SetupDefaultLanguage
      private
      def _set_default_values
        keep = {
          :dc_languages => dc_languages.to_a.dup,
        }
        _language = language
        if _language and
            !dc_languages.any? {|dc_language| dc_language.value == _language}
          dc_language = self.class::DublinCoreLanguages::DublinCoreLanguage.new(self)
          dc_language.value = _language.dup
          dc_languages.unshift(dc_language)
        end
        super
      ensure
        dc_languages.replace(keep[:dc_languages])
      end
    end

    class RSSBase < Base
      class << self
        def make(*args, &block)
          new(*args).make(&block)
        end
      end

      %w(xml_stylesheets channel image items textinput).each do |element|
        attr_reader element
        add_need_initialize_variable(element) do |object|
          object.send("make_#{element}")
        end
        module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          private
          def setup_#{element}(feed)
            @#{element}.to_feed(feed)
          end

          def make_#{element}
            self.class::#{Utils.to_class_name(element)}.new(self)
          end
        EOC
      end

      attr_reader :feed_version
      alias_method(:rss_version, :feed_version)
      attr_accessor :version, :encoding, :standalone

      def initialize(feed_version)
        super(self)
        @feed_type = nil
        @feed_subtype = nil
        @feed_version = feed_version
        @version = "1.0"
        @encoding = "UTF-8"
        @standalone = nil
      end

      def make
        yield(self)
        to_feed
      end

      def to_feed
        feed = make_feed
        setup_xml_stylesheets(feed)
        setup_elements(feed)
        setup_other_elements(feed)
        feed.validate
        feed
      end

      private
      remove_method :make_xml_stylesheets
      def make_xml_stylesheets
        XMLStyleSheets.new(self)
      end
    end

    class XMLStyleSheets < Base
      def_array_element("xml_stylesheet", nil, "XMLStyleSheet")

      class XMLStyleSheet < Base

        ::RSS::XMLStyleSheet::ATTRIBUTES.each do |attribute|
          attr_accessor attribute
          add_need_initialize_variable(attribute)
        end

        def to_feed(feed)
          xss = ::RSS::XMLStyleSheet.new
          guess_type_if_need(xss)
          set = setup_values(xss)
          if set
            feed.xml_stylesheets << xss
          end
        end

        private
        def guess_type_if_need(xss)
          if @type.nil?
            xss.href = @href
            @type = xss.type
          end
        end

        def required_variable_names
          %w(href type)
        end
      end
    end

    class ChannelBase < Base
      include SetupDefaultDate

      %w(cloud categories skipDays skipHours).each do |name|
        def_classed_element(name)
      end

      %w(generator copyright description title).each do |name|
        def_classed_element(name, nil, "content")
      end

      [
       ["link", "href", Proc.new {|target,| "#{target}.href = 'self'"}],
       ["author", "name"],
       ["contributor", "name"],
      ].each do |name, attribute, additional_setup_maker|
        def_classed_elements(name, attribute, &additional_setup_maker)
      end

      %w(id about language
         managingEditor webMaster rating docs ttl).each do |element|
        attr_accessor element
        add_need_initialize_variable(element)
      end

      %w(date lastBuildDate).each do |date_element|
        attr_reader date_element
        add_need_initialize_variable(date_element)
      end

      def date=(_date)
        @date = _parse_date_if_needed(_date)
      end

      def lastBuildDate=(_date)
        @lastBuildDate = _parse_date_if_needed(_date)
      end

      def pubDate
        date
      end

      def pubDate=(date)
        self.date = date
      end

      def updated
        date
      end

      def updated=(date)
        self.date = date
      end

      alias_method(:rights, :copyright)
      alias_method(:rights=, :copyright=)

      alias_method(:subtitle, :description)
      alias_method(:subtitle=, :description=)

      def icon
        image_favicon.about
      end

      def icon=(url)
        image_favicon.about = url
      end

      def logo
        maker.image.url
      end

      def logo=(url)
        maker.image.url = url
      end

      class SkipDaysBase < Base
        def_array_element("day")

        class DayBase < Base
          %w(content).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end
        end
      end

      class SkipHoursBase < Base
        def_array_element("hour")

        class HourBase < Base
          %w(content).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end
        end
      end

      class CloudBase < Base
        %w(domain port path registerProcedure protocol).each do |element|
          attr_accessor element
          add_need_initialize_variable(element)
        end
      end

      class CategoriesBase < Base
        def_array_element("category", "categories")

        class CategoryBase < Base
          %w(domain content label).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end

          alias_method(:term, :domain)
          alias_method(:term=, :domain=)
          alias_method(:scheme, :content)
          alias_method(:scheme=, :content=)
        end
      end

      class LinksBase < Base
        def_array_element("link")

        class LinkBase < Base
          %w(href rel type hreflang title length).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end
        end
      end

      class AuthorsBase < Base
        def_array_element("author")

        class AuthorBase < Base
          include AtomPersonConstructBase
        end
      end

      class ContributorsBase < Base
        def_array_element("contributor")

        class ContributorBase < Base
          include AtomPersonConstructBase
        end
      end

      class GeneratorBase < Base
        %w(uri version content).each do |element|
          attr_accessor element
          add_need_initialize_variable(element)
        end
      end

      class CopyrightBase < Base
        include AtomTextConstructBase
      end

      class DescriptionBase < Base
        include AtomTextConstructBase
      end

      class TitleBase < Base
        include AtomTextConstructBase
      end
    end

    class ImageBase < Base
      %w(title url width height description).each do |element|
        attr_accessor element
        add_need_initialize_variable(element)
      end

      def link
        @maker.channel.link
      end
    end

    class ItemsBase < Base
      def_array_element("item")

      attr_accessor :do_sort, :max_size

      def initialize(maker)
        super
        @do_sort = false
        @max_size = -1
      end

      def normalize
        if @max_size >= 0
          sort_if_need[0...@max_size]
        else
          sort_if_need[0..@max_size]
        end
      end

      private
      def sort_if_need
        if @do_sort.respond_to?(:call)
          @items.sort do |x, y|
            @do_sort.call(x, y)
          end
        elsif @do_sort
          @items.sort do |x, y|
            y <=> x
          end
        else
          @items
        end
      end

      class ItemBase < Base
        include SetupDefaultDate

        %w(guid enclosure source categories content).each do |name|
          def_classed_element(name)
        end

        %w(rights description title).each do |name|
          def_classed_element(name, nil, "content")
        end

        [
         ["author", "name"],
         ["link", "href", Proc.new {|target,| "#{target}.href = 'alternate'"}],
         ["contributor", "name"],
        ].each do |name, attribute|
          def_classed_elements(name, attribute)
        end

        %w(comments id published).each do |element|
          attr_accessor element
          add_need_initialize_variable(element)
        end

        %w(date).each do |date_element|
          attr_reader date_element
          add_need_initialize_variable(date_element)
        end

        def date=(_date)
          @date = _parse_date_if_needed(_date)
        end

        def pubDate
          date
        end

        def pubDate=(date)
          self.date = date
        end

        def updated
          date
        end

        def updated=(date)
          self.date = date
        end

        alias_method(:summary, :description)
        alias_method(:summary=, :description=)

        def <=>(other)
          _date = date || dc_date
          _other_date = other.date || other.dc_date
          if _date and _other_date
            _date <=> _other_date
          elsif _date
            1
          elsif _other_date
            -1
          else
            0
          end
        end

        class GuidBase < Base
          %w(isPermaLink content).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end

          def permanent_link?
            isPermaLink
          end

          def permanent_link=(bool)
            self.isPermaLink = bool
          end
        end

        class EnclosureBase < Base
          %w(url length type).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end
        end

        class SourceBase < Base
          include SetupDefaultDate

          %w(authors categories contributors generator icon
             logo rights subtitle title).each do |name|
            def_classed_element(name)
          end

          [
           ["link", "href"],
          ].each do |name, attribute|
            def_classed_elements(name, attribute)
          end

          %w(id content).each do |element|
            attr_accessor element
            add_need_initialize_variable(element)
          end

          alias_method(:url, :link)
          alias_method(:url=, :link=)

          %w(date).each do |date_element|
            attr_reader date_element
            add_need_initialize_variable(date_element)
          end

          def date=(_date)
            @date = _parse_date_if_needed(_date)
          end

          def updated
            date
          end

          def updated=(date)
            self.date = date
          end

          private
          AuthorsBase = ChannelBase::AuthorsBase
          CategoriesBase = ChannelBase::CategoriesBase
          ContributorsBase = ChannelBase::ContributorsBase
          GeneratorBase = ChannelBase::GeneratorBase

          class IconBase < Base
            %w(url).each do |element|
              attr_accessor element
              add_need_initialize_variable(element)
            end
          end

          LinksBase = ChannelBase::LinksBase

          class LogoBase < Base
            %w(uri).each do |element|
              attr_accessor element
              add_need_initialize_variable(element)
            end
          end

          class RightsBase < Base
            include AtomTextConstructBase
          end

          class SubtitleBase < Base
            include AtomTextConstructBase
          end

          class TitleBase < Base
            include AtomTextConstructBase
          end
        end

        CategoriesBase = ChannelBase::CategoriesBase
        AuthorsBase = ChannelBase::AuthorsBase
        LinksBase = ChannelBase::LinksBase
        ContributorsBase = ChannelBase::ContributorsBase

        class RightsBase < Base
          include AtomTextConstructBase
        end

        class DescriptionBase < Base
          include AtomTextConstructBase
        end

        class ContentBase < Base
          include AtomTextConstructBase::EnsureXMLContent

          %w(src).each do |element|
            attr_accessor(element)
            add_need_initialize_variable(element)
          end

          def xml_content=(content)
            content = ensure_xml_content(content) if inline_xhtml?
            @xml_content = content
          end

          alias_method(:xml, :xml_content)
          alias_method(:xml=, :xml_content=)

          def inline_text?
            [nil, "text", "html"].include?(@type)
          end

          def inline_html?
            @type == "html"
          end

          def inline_xhtml?
            @type == "xhtml"
          end

          def inline_other?
            !out_of_line? and ![nil, "text", "html", "xhtml"].include?(@type)
          end

          def inline_other_text?
            return false if @type.nil? or out_of_line?
            /\Atext\//i.match(@type) ? true : false
          end

          def inline_other_xml?
            return false if @type.nil? or out_of_line?
            /[\+\/]xml\z/i.match(@type) ? true : false
          end

          def inline_other_base64?
            return false if @type.nil? or out_of_line?
            @type.include?("/") and !inline_other_text? and !inline_other_xml?
          end

          def out_of_line?
            not @src.nil? and @content.nil?
          end
        end

        class TitleBase < Base
          include AtomTextConstructBase
        end
      end
    end

    class TextinputBase < Base
      %w(title description name link).each do |element|
        attr_accessor element
        add_need_initialize_variable(element)
      end
    end
  end
end
PKFH[�����share/ruby/rss/maker/2.0.rbnu�[���# frozen_string_literal: false
require_relative "../2.0"

require_relative "0.9"

module RSS
  module Maker

    class RSS20 < RSS09

      def initialize(feed_version="2.0")
        super
      end

      class Channel < RSS09::Channel

        private
        def required_variable_names
          %w(link)
        end

        class SkipDays < RSS09::Channel::SkipDays
          class Day < RSS09::Channel::SkipDays::Day
          end
        end

        class SkipHours < RSS09::Channel::SkipHours
          class Hour < RSS09::Channel::SkipHours::Hour
          end
        end

        class Cloud < RSS09::Channel::Cloud
          def to_feed(rss, channel)
            cloud = Rss::Channel::Cloud.new
            set = setup_values(cloud)
            if set
              channel.cloud = cloud
              set_parent(cloud, channel)
              setup_other_elements(rss, cloud)
            end
          end

          private
          def required_variable_names
            %w(domain port path registerProcedure protocol)
          end
        end

        class Categories < RSS09::Channel::Categories
          def to_feed(rss, channel)
            @categories.each do |category|
              category.to_feed(rss, channel)
            end
          end

          class Category < RSS09::Channel::Categories::Category
            def to_feed(rss, channel)
              category = Rss::Channel::Category.new
              set = setup_values(category)
              if set
                channel.categories << category
                set_parent(category, channel)
                setup_other_elements(rss, category)
              end
            end

            private
            def required_variable_names
              %w(content)
            end
          end
        end

        class Generator < GeneratorBase
          def to_feed(rss, channel)
            channel.generator = content
          end

          private
          def required_variable_names
            %w(content)
          end
        end
      end

      class Image < RSS09::Image
        private
        def required_element?
          false
        end
      end

      class Items < RSS09::Items
        class Item < RSS09::Items::Item
          private
          def required_variable_names
            []
          end

          def not_set_required_variables
            vars = super
            if !title {|t| t.have_required_values?} and
                !description {|d| d.have_required_values?}
              vars << "title or description"
            end
            vars
          end

          def variables
            super + ["pubDate"]
          end

          class Guid < RSS09::Items::Item::Guid
            def to_feed(rss, item)
              guid = Rss::Channel::Item::Guid.new
              set = setup_values(guid)
              if set
                item.guid = guid
                set_parent(guid, item)
                setup_other_elements(rss, guid)
              end
            end

            private
            def required_variable_names
              %w(content)
            end
          end

          class Enclosure < RSS09::Items::Item::Enclosure
            def to_feed(rss, item)
              enclosure = Rss::Channel::Item::Enclosure.new
              set = setup_values(enclosure)
              if set
                item.enclosure = enclosure
                set_parent(enclosure, item)
                setup_other_elements(rss, enclosure)
              end
            end

            private
            def required_variable_names
              %w(url length type)
            end
          end

          class Source < RSS09::Items::Item::Source
            def to_feed(rss, item)
              source = Rss::Channel::Item::Source.new
              set = setup_values(source)
              if set
                item.source = source
                set_parent(source, item)
                setup_other_elements(rss, source)
              end
            end

            private
            def required_variable_names
              %w(url content)
            end

            class Links < RSS09::Items::Item::Source::Links
              def to_feed(rss, source)
                return if @links.empty?
                @links.first.to_feed(rss, source)
              end

              class Link < RSS09::Items::Item::Source::Links::Link
                def to_feed(rss, source)
                  source.url = href
                end
              end
            end
          end

          class Categories < RSS09::Items::Item::Categories
            def to_feed(rss, item)
              @categories.each do |category|
                category.to_feed(rss, item)
              end
            end

            class Category < RSS09::Items::Item::Categories::Category
              def to_feed(rss, item)
                category = Rss::Channel::Item::Category.new
                set = setup_values(category)
                if set
                  item.categories << category
                  set_parent(category, item)
                  setup_other_elements(rss)
                end
              end

              private
              def required_variable_names
                %w(content)
              end
            end
          end

          class Authors < RSS09::Items::Item::Authors
            def to_feed(rss, item)
              return if @authors.empty?
              @authors.first.to_feed(rss, item)
            end

            class Author < RSS09::Items::Item::Authors::Author
              def to_feed(rss, item)
                item.author = name
              end
            end
          end
        end
      end

      class Textinput < RSS09::Textinput
      end
    end

    add_maker("2.0", "2.0", RSS20)
    add_maker("rss2.0", "2.0", RSS20)
  end
end
PKFH[�o?���share/ruby/rss/maker/image.rbnu�[���# frozen_string_literal: false
require_relative '../image'
require_relative '1.0'
require_relative 'dublincore'

module RSS
  module Maker
    module ImageItemModel
      def self.append_features(klass)
        super

        name = "#{RSS::IMAGE_PREFIX}_item"
        klass.def_classed_element(name)
      end

      def self.install_image_item(klass)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class ImageItem < ImageItemBase
            DublinCoreModel.install_dublin_core(self)
          end
EOC
      end

      class ImageItemBase < Base
        include Maker::DublinCoreModel

        attr_accessor :about, :resource, :image_width, :image_height
        add_need_initialize_variable("about")
        add_need_initialize_variable("resource")
        add_need_initialize_variable("image_width")
        add_need_initialize_variable("image_height")
        alias width= image_width=
        alias width image_width
        alias height= image_height=
        alias height image_height

        def have_required_values?
          @about
        end

        def to_feed(feed, current)
          if current.respond_to?(:image_item=) and have_required_values?
            item = current.class::ImageItem.new
            setup_values(item)
            setup_other_elements(item)
            current.image_item = item
          end
        end
      end
    end

    module ImageFaviconModel
      def self.append_features(klass)
        super

        name = "#{RSS::IMAGE_PREFIX}_favicon"
        klass.def_classed_element(name)
      end

      def self.install_image_favicon(klass)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class ImageFavicon < ImageFaviconBase
            DublinCoreModel.install_dublin_core(self)
          end
        EOC
      end

      class ImageFaviconBase < Base
        include Maker::DublinCoreModel

        attr_accessor :about, :image_size
        add_need_initialize_variable("about")
        add_need_initialize_variable("image_size")
        alias size image_size
        alias size= image_size=

        def have_required_values?
          @about and @image_size
        end

        def to_feed(feed, current)
          if current.respond_to?(:image_favicon=) and have_required_values?
            favicon = current.class::ImageFavicon.new
            setup_values(favicon)
            setup_other_elements(favicon)
            current.image_favicon = favicon
          end
        end
      end
    end

    class ChannelBase; include Maker::ImageFaviconModel; end

    class ItemsBase
      class ItemBase; include Maker::ImageItemModel; end
    end

    makers.each do |maker|
      maker.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        class Channel
          ImageFaviconModel.install_image_favicon(self)
        end

        class Items
          class Item
            ImageItemModel.install_image_item(self)
          end
        end
      EOC
    end
  end
end
PKFH[i^
ZCCshare/ruby/rss/maker/itunes.rbnu�[���# frozen_string_literal: false
require_relative '../itunes'
require_relative '2.0'

module RSS
  module Maker
    module ITunesBaseModel
      def def_class_accessor(klass, name, type, *args)
        name = name.gsub(/-/, "_").gsub(/^itunes_/, '')
        full_name = "#{RSS::ITUNES_PREFIX}_#{name}"
        case type
        when nil
          klass.def_other_element(full_name)
        when :yes_other
          def_yes_other_accessor(klass, full_name)
        when :explicit_clean_other
          def_explicit_clean_other_accessor(klass, full_name)
        when :csv
          def_csv_accessor(klass, full_name)
        when :element, :attribute
          recommended_attribute_name, = *args
          klass_name = "ITunes#{Utils.to_class_name(name)}"
          klass.def_classed_element(full_name, klass_name,
                                    recommended_attribute_name)
        when :elements
          plural_name, recommended_attribute_name = args
          plural_name ||= "#{name}s"
          full_plural_name = "#{RSS::ITUNES_PREFIX}_#{plural_name}"
          klass_name = "ITunes#{Utils.to_class_name(name)}"
          plural_klass_name = "ITunes#{Utils.to_class_name(plural_name)}"
          def_elements_class_accessor(klass, name, full_name, full_plural_name,
                                      klass_name, plural_klass_name,
                                      recommended_attribute_name)
        end
      end

      def def_yes_other_accessor(klass, full_name)
        klass.def_other_element(full_name)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          def #{full_name}?
            Utils::YesOther.parse(@#{full_name})
          end
        EOC
      end

      def def_explicit_clean_other_accessor(klass, full_name)
        klass.def_other_element(full_name)
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          def #{full_name}?
            Utils::ExplicitCleanOther.parse(#{full_name})
          end
        EOC
      end

      def def_csv_accessor(klass, full_name)
        klass.def_csv_element(full_name)
      end

      def def_elements_class_accessor(klass, name, full_name, full_plural_name,
                                      klass_name, plural_klass_name,
                                      recommended_attribute_name=nil)
        if recommended_attribute_name
          klass.def_classed_elements(full_name, recommended_attribute_name,
                                     plural_klass_name, full_plural_name)
        else
          klass.def_classed_element(full_plural_name, plural_klass_name)
        end
        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          def new_#{full_name}(text=nil)
            #{full_name} = @#{full_plural_name}.new_#{name}
            #{full_name}.text = text
            if block_given?
              yield #{full_name}
            else
              #{full_name}
            end
          end
        EOC
      end
    end

    module ITunesChannelModel
      extend ITunesBaseModel

      class << self
        def append_features(klass)
          super

          ::RSS::ITunesChannelModel::ELEMENT_INFOS.each do |name, type, *args|
            def_class_accessor(klass, name, type, *args)
          end
        end
      end

      class ITunesCategoriesBase < Base
        def_array_element("category", "itunes_categories",
                          "ITunesCategory")
        class ITunesCategoryBase < Base
          attr_accessor :text
          add_need_initialize_variable("text")
          def_array_element("category", "itunes_categories",
                            "ITunesCategory")

          def have_required_values?
            text
          end

          alias_method :to_feed_for_categories, :to_feed
          def to_feed(feed, current)
            if text and current.respond_to?(:itunes_category)
              new_item = current.class::ITunesCategory.new(text)
              to_feed_for_categories(feed, new_item)
              current.itunes_categories << new_item
            end
          end
        end
      end

      class ITunesImageBase < Base
        add_need_initialize_variable("href")
        attr_accessor("href")

        def to_feed(feed, current)
          if @href and current.respond_to?(:itunes_image)
            current.itunes_image ||= current.class::ITunesImage.new
            current.itunes_image.href = @href
          end
        end
      end

      class ITunesOwnerBase < Base
        %w(itunes_name itunes_email).each do |name|
          add_need_initialize_variable(name)
          attr_accessor(name)
        end

        def to_feed(feed, current)
          if current.respond_to?(:itunes_owner=)
            _not_set_required_variables = not_set_required_variables
            if (required_variable_names - _not_set_required_variables).empty?
              return
            end

            unless have_required_values?
              raise NotSetError.new("maker.channel.itunes_owner",
                                    _not_set_required_variables)
            end
            current.itunes_owner ||= current.class::ITunesOwner.new
            current.itunes_owner.itunes_name = @itunes_name
            current.itunes_owner.itunes_email = @itunes_email
          end
        end

        private
        def required_variable_names
          %w(itunes_name itunes_email)
        end
      end
    end

    module ITunesItemModel
      extend ITunesBaseModel

      class << self
        def append_features(klass)
          super

          ::RSS::ITunesItemModel::ELEMENT_INFOS.each do |name, type, *args|
            def_class_accessor(klass, name, type, *args)
          end
        end
      end

      class ITunesDurationBase < Base
        attr_reader :content
        add_need_initialize_variable("content")

        %w(hour minute second).each do |name|
          attr_reader(name)
          add_need_initialize_variable(name, 0)
        end

        def content=(content)
          if content.nil?
            @hour, @minute, @second, @content = nil
          else
            @hour, @minute, @second =
              ::RSS::ITunesItemModel::ITunesDuration.parse(content)
            @content = content
          end
        end

        def hour=(hour)
          @hour = Integer(hour)
          update_content
        end

        def minute=(minute)
          @minute = Integer(minute)
          update_content
        end

        def second=(second)
          @second = Integer(second)
          update_content
        end

        def to_feed(feed, current)
          if @content and current.respond_to?(:itunes_duration=)
            current.itunes_duration ||= current.class::ITunesDuration.new
            current.itunes_duration.content = @content
          end
        end

        private
        def update_content
          components = [@hour, @minute, @second]
          @content =
            ::RSS::ITunesItemModel::ITunesDuration.construct(*components)
        end
      end
    end

    class ChannelBase
      include Maker::ITunesChannelModel
      class ITunesCategories < ITunesCategoriesBase
        class ITunesCategory < ITunesCategoryBase
          ITunesCategory = self
        end
      end

      class ITunesImage < ITunesImageBase; end
      class ITunesOwner < ITunesOwnerBase; end
    end

    class ItemsBase
      class ItemBase
        include Maker::ITunesItemModel
        class ITunesDuration < ITunesDurationBase; end
      end
    end
  end
end
PKFH[|����share/ruby/rss/maker/entry.rbnu�[���# frozen_string_literal: false
require_relative "atom"
require_relative "feed"

module RSS
  module Maker
    module Atom
      class Entry < RSSBase
        def initialize(feed_version="1.0")
          super
          @feed_type = "atom"
          @feed_subtype = "entry"
        end

        private
        def make_feed
          ::RSS::Atom::Entry.new(@version, @encoding, @standalone)
        end

        def setup_elements(entry)
          setup_items(entry)
        end

        class Channel < ChannelBase
          class SkipDays < SkipDaysBase
            class Day < DayBase
            end
          end

          class SkipHours < SkipHoursBase
            class Hour < HourBase
            end
          end

          class Cloud < CloudBase
          end

          Categories = Feed::Channel::Categories
          Links = Feed::Channel::Links
          Authors = Feed::Channel::Authors
          Contributors = Feed::Channel::Contributors

          class Generator < GeneratorBase
            include AtomGenerator

            def self.not_set_name
              "maker.channel.generator"
            end
          end

          Copyright = Feed::Channel::Copyright

          class Description < DescriptionBase
          end

          Title = Feed::Channel::Title
        end

        class Image < ImageBase
        end

        class Items < ItemsBase
          def to_feed(entry)
            (normalize.first || Item.new(@maker)).to_feed(entry)
          end

          class Item < ItemBase
            def to_feed(entry)
              set_default_values do
                setup_values(entry)
                entry.dc_dates.clear
                setup_other_elements(entry)
                unless have_required_values?
                  raise NotSetError.new("maker.item", not_set_required_variables)
                end
              end
            end

            private
            def required_variable_names
              %w(id updated)
            end

            def variables
              super + ["updated"]
            end

            def variable_is_set?
              super or !authors.empty?
            end

            def not_set_required_variables
              set_default_values do
                vars = super
                if authors.all? {|author| !author.have_required_values?}
                  vars << "author"
                end
                vars << "title" unless title {|t| t.have_required_values?}
                vars
              end
            end

            def _set_default_values
              keep = {
                :authors => authors.to_a.dup,
                :contributors => contributors.to_a.dup,
                :categories => categories.to_a.dup,
                :id => id,
                :links => links.to_a.dup,
                :rights => @rights,
                :title => @title,
                :updated => updated,
              }
              authors.replace(@maker.channel.authors) if keep[:authors].empty?
              if keep[:contributors].empty?
                contributors.replace(@maker.channel.contributors)
              end
              if keep[:categories].empty?
                categories.replace(@maker.channel.categories)
              end
              self.id ||= link || @maker.channel.id
              links.replace(@maker.channel.links) if keep[:links].empty?
              unless keep[:rights].variable_is_set?
                @maker.channel.rights {|r| @rights = r}
              end
              unless keep[:title].variable_is_set?
                @maker.channel.title {|t| @title = t}
              end
              self.updated ||= @maker.channel.updated
              super
            ensure
              authors.replace(keep[:authors])
              contributors.replace(keep[:contributors])
              categories.replace(keep[:categories])
              links.replace(keep[:links])
              self.id = keep[:id]
              @rights = keep[:rights]
              @title = keep[:title]
              self.updated = keep[:updated]
            end

            Guid = Feed::Items::Item::Guid
            Enclosure = Feed::Items::Item::Enclosure
            Source = Feed::Items::Item::Source
            Categories = Feed::Items::Item::Categories
            Authors = Feed::Items::Item::Authors
            Contributors = Feed::Items::Item::Contributors
            Links = Feed::Items::Item::Links
            Rights = Feed::Items::Item::Rights
            Description = Feed::Items::Item::Description
            Title = Feed::Items::Item::Title
            Content = Feed::Items::Item::Content
          end
        end

        class Textinput < TextinputBase
        end
      end
    end

    add_maker("atom:entry", "1.0", Atom::Entry)
    add_maker("atom1.0:entry", "1.0", Atom::Entry)
  end
end
PKFH[%~I�"share/ruby/rss/maker/dublincore.rbnu�[���# frozen_string_literal: false
require_relative '../dublincore'
require_relative '1.0'

module RSS
  module Maker
    module DublinCoreModel
      def self.append_features(klass)
        super

        ::RSS::DublinCoreModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
          plural_name ||= "#{name}s"
          full_name = "#{RSS::DC_PREFIX}_#{name}"
          full_plural_name = "#{RSS::DC_PREFIX}_#{plural_name}"
          plural_klass_name = "DublinCore#{Utils.to_class_name(plural_name)}"
          klass.def_classed_elements(full_name, "value", plural_klass_name,
                                     full_plural_name, name)
          klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
            def new_#{full_name}(value=nil)
              _#{full_name} = #{full_plural_name}.new_#{name}
              _#{full_name}.value = value
              if block_given?
                yield _#{full_name}
              else
                _#{full_name}
              end
            end
          EOC
        end

        klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          # For backward compatibility
          alias #{DC_PREFIX}_rightses #{DC_PREFIX}_rights_list
        EOC
      end

      ::RSS::DublinCoreModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
        plural_name ||= "#{name}s"
        full_name ||= "#{DC_PREFIX}_#{name}"
        full_plural_name ||= "#{DC_PREFIX}_#{plural_name}"
        klass_name = Utils.to_class_name(name)
        full_klass_name = "DublinCore#{klass_name}"
        plural_klass_name = "DublinCore#{Utils.to_class_name(plural_name)}"
        module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        class #{plural_klass_name}Base < Base
          def_array_element(#{name.dump}, #{full_plural_name.dump},
                            #{full_klass_name.dump})

          class #{full_klass_name}Base < Base
            attr_accessor :value
            add_need_initialize_variable("value")
            alias_method(:content, :value)
            alias_method(:content=, :value=)

            def have_required_values?
              @value
            end

            def to_feed(feed, current)
              if value and current.respond_to?(:#{full_name})
                new_item = current.class::#{full_klass_name}.new(value)
                current.#{full_plural_name} << new_item
              end
            end
          end
          #{klass_name}Base = #{full_klass_name}Base
        end
        EOC
      end

      def self.install_dublin_core(klass)
        ::RSS::DublinCoreModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
          plural_name ||= "#{name}s"
          klass_name = Utils.to_class_name(name)
          full_klass_name = "DublinCore#{klass_name}"
          plural_klass_name = "DublinCore#{Utils.to_class_name(plural_name)}"
          klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class #{plural_klass_name} < #{plural_klass_name}Base
            class #{full_klass_name} < #{full_klass_name}Base
            end
            #{klass_name} = #{full_klass_name}
          end
EOC
        end
      end
    end

    class ChannelBase
      include DublinCoreModel
    end

    class ImageBase; include DublinCoreModel; end
    class ItemsBase
      class ItemBase
        include DublinCoreModel
      end
    end
    class TextinputBase; include DublinCoreModel; end

    makers.each do |maker|
      maker.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        class Channel
          DublinCoreModel.install_dublin_core(self)
        end

        class Image
          DublinCoreModel.install_dublin_core(self)
        end

        class Items
          class Item
            DublinCoreModel.install_dublin_core(self)
          end
        end

        class Textinput
          DublinCoreModel.install_dublin_core(self)
        end
      EOC
    end
  end
end
PKFH[�(���share/ruby/rss/maker/content.rbnu�[���# frozen_string_literal: false
require_relative '../content'
require_relative '1.0'
require_relative '2.0'

module RSS
  module Maker
    module ContentModel
      def self.append_features(klass)
        super

        ::RSS::ContentModel::ELEMENTS.each do |name|
          klass.def_other_element(name)
        end
      end
    end

    class ItemsBase
      class ItemBase; include ContentModel; end
    end
  end
end
PKFH[�:��%%share/ruby/rss/maker/atom.rbnu�[���# frozen_string_literal: false
require_relative "../atom"

require_relative "base"

module RSS
  module Maker
    module AtomPersons
      module_function
      def def_atom_persons(klass, name, maker_name, plural=nil)
        plural ||= "#{name}s"
        klass_name = Utils.to_class_name(name)
        plural_klass_name = Utils.to_class_name(plural)

        klass.class_eval(<<-EOC, __FILE__, __LINE__ + 1)
          class #{plural_klass_name} < #{plural_klass_name}Base
            class #{klass_name} < #{klass_name}Base
              def to_feed(feed, current)
                #{name} = feed.class::#{klass_name}.new
                set = setup_values(#{name})
                unless set
                  raise NotSetError.new(#{maker_name.dump},
                                        not_set_required_variables)
                end
                current.#{plural} << #{name}
                set_parent(#{name}, current)
                setup_other_elements(#{name})
              end

              private
              def required_variable_names
                %w(name)
              end
            end
          end
EOC
      end
    end

    module AtomTextConstruct
      class << self
        def def_atom_text_construct(klass, name, maker_name, klass_name=nil,
                                    atom_klass_name=nil)
          klass_name ||= Utils.to_class_name(name)
          atom_klass_name ||= Utils.to_class_name(name)

          klass.class_eval(<<-EOC, __FILE__, __LINE__ + 1)
            class #{klass_name} < #{klass_name}Base
              include #{self.name}
              def to_feed(feed, current)
                #{name} = current.class::#{atom_klass_name}.new
                if setup_values(#{name})
                  current.#{name} = #{name}
                  set_parent(#{name}, current)
                  setup_other_elements(feed)
                elsif variable_is_set?
                  raise NotSetError.new(#{maker_name.dump},
                                        not_set_required_variables)
                end
              end
            end
          EOC
        end
      end

      private
      def required_variable_names
        if type == "xhtml"
          %w(xml_content)
        else
          %w(content)
        end
      end

      def variables
        if type == "xhtml"
          super + %w(xhtml)
        else
          super
        end
      end
    end

    module AtomCategory
      def to_feed(feed, current)
        category = feed.class::Category.new
        set = setup_values(category)
        if set
          current.categories << category
          set_parent(category, current)
          setup_other_elements(feed)
        else
          raise NotSetError.new(self.class.not_set_name,
                                not_set_required_variables)
        end
      end

      private
      def required_variable_names
        %w(term)
      end

      def variables
        super + ["term", "scheme"]
      end
    end

    module AtomLink
      def to_feed(feed, current)
        link = feed.class::Link.new
        set = setup_values(link)
        if set
          current.links << link
          set_parent(link, current)
          setup_other_elements(feed)
        else
          raise NotSetError.new(self.class.not_set_name,
                                not_set_required_variables)
        end
      end

      private
      def required_variable_names
        %w(href)
      end
    end

    module AtomGenerator
      def to_feed(feed, current)
        generator = current.class::Generator.new
        if setup_values(generator)
          current.generator = generator
          set_parent(generator, current)
          setup_other_elements(feed)
        elsif variable_is_set?
          raise NotSetError.new(self.class.not_set_name,
                                not_set_required_variables)
        end
      end

      private
      def required_variable_names
        %w(content)
      end
    end

    module AtomLogo
      def to_feed(feed, current)
        logo = current.class::Logo.new
        class << logo
          alias_method(:uri=, :content=)
        end
        set = setup_values(logo)
        class << logo
          remove_method(:uri=)
        end
        if set
          current.logo = logo
          set_parent(logo, current)
          setup_other_elements(feed)
        elsif variable_is_set?
          raise NotSetError.new(self.class.not_set_name,
                                not_set_required_variables)
        end
      end

      private
      def required_variable_names
        %w(uri)
      end
    end
  end
end
PKFH[AcIw22share/ruby/rss/maker/feed.rbnu�[���# frozen_string_literal: false
require_relative "atom"

module RSS
  module Maker
    module Atom
      class Feed < RSSBase
        def initialize(feed_version="1.0")
          super
          @feed_type = "atom"
          @feed_subtype = "feed"
        end

        private
        def make_feed
          ::RSS::Atom::Feed.new(@version, @encoding, @standalone)
        end

        def setup_elements(feed)
          setup_channel(feed)
          setup_image(feed)
          setup_items(feed)
        end

        class Channel < ChannelBase
          include SetupDefaultLanguage

          def to_feed(feed)
            set_default_values do
              setup_values(feed)
              feed.dc_dates.clear
              setup_other_elements(feed)
              if image_favicon.about
                icon = feed.class::Icon.new
                icon.content = image_favicon.about
                feed.icon = icon
              end
              unless have_required_values?
                raise NotSetError.new("maker.channel",
                                      not_set_required_variables)
              end
            end
          end

          def have_required_values?
            super and
              (!authors.empty? or
               @maker.items.any? {|item| !item.authors.empty?})
          end

          private
          def required_variable_names
            %w(id updated)
          end

          def variables
            super + %w(id updated)
          end

          def variable_is_set?
            super or !authors.empty?
          end

          def not_set_required_variables
            vars = super
            if authors.empty? and
                @maker.items.all? {|item| item.author.to_s.empty?}
              vars << "author"
            end
            vars << "title" unless title {|t| t.have_required_values?}
            vars
          end

          def _set_default_values(&block)
            keep = {
              :id => id,
            }
            self.id ||= about
            super(&block)
          ensure
            self.id = keep[:id]
          end

          class SkipDays < SkipDaysBase
            def to_feed(*args)
            end

            class Day < DayBase
            end
          end

          class SkipHours < SkipHoursBase
            def to_feed(*args)
            end

            class Hour < HourBase
            end
          end

          class Cloud < CloudBase
            def to_feed(*args)
            end
          end

          class Categories < CategoriesBase
            class Category < CategoryBase
              include AtomCategory

              def self.not_set_name
                "maker.channel.category"
              end
            end
          end

          class Links < LinksBase
            class Link < LinkBase
              include AtomLink

              def self.not_set_name
                "maker.channel.link"
              end
            end
          end

          AtomPersons.def_atom_persons(self, "author", "maker.channel.author")
          AtomPersons.def_atom_persons(self, "contributor",
                                       "maker.channel.contributor")

          class Generator < GeneratorBase
            include AtomGenerator

            def self.not_set_name
              "maker.channel.generator"
            end
          end

          AtomTextConstruct.def_atom_text_construct(self, "rights",
                                                    "maker.channel.copyright",
                                                    "Copyright")
          AtomTextConstruct.def_atom_text_construct(self, "subtitle",
                                                    "maker.channel.description",
                                                    "Description")
          AtomTextConstruct.def_atom_text_construct(self, "title",
                                                    "maker.channel.title")
        end

        class Image < ImageBase
          def to_feed(feed)
            logo = feed.class::Logo.new
            class << logo
              alias_method(:url=, :content=)
            end
            set = setup_values(logo)
            class << logo
              remove_method(:url=)
            end
            if set
              feed.logo = logo
              set_parent(logo, feed)
              setup_other_elements(feed, logo)
            elsif variable_is_set?
              raise NotSetError.new("maker.image", not_set_required_variables)
            end
          end

          private
          def required_variable_names
            %w(url)
          end
        end

        class Items < ItemsBase
          def to_feed(feed)
            normalize.each do |item|
              item.to_feed(feed)
            end
            setup_other_elements(feed, feed.entries)
          end

          class Item < ItemBase
            def to_feed(feed)
              set_default_values do
                entry = feed.class::Entry.new
                set = setup_values(entry)
                entry.dc_dates.clear
                setup_other_elements(feed, entry)
                if set
                  feed.entries << entry
                  set_parent(entry, feed)
                elsif variable_is_set?
                  raise NotSetError.new("maker.item", not_set_required_variables)
                end
              end
            end

            def have_required_values?
              set_default_values do
                super and title {|t| t.have_required_values?}
              end
            end

            private
            def required_variable_names
              %w(id updated)
            end

            def variables
              super + ["updated"]
            end

            def not_set_required_variables
              vars = super
              vars << "title" unless title {|t| t.have_required_values?}
              vars
            end

            def _set_default_values(&block)
              keep = {
                :id => id,
              }
              self.id ||= link
              super(&block)
            ensure
              self.id = keep[:id]
            end

            class Guid < GuidBase
              def to_feed(feed, current)
              end
            end

            class Enclosure < EnclosureBase
              def to_feed(feed, current)
              end
            end

            class Source < SourceBase
              def to_feed(feed, current)
                source = current.class::Source.new
                setup_values(source)
                current.source = source
                set_parent(source, current)
                setup_other_elements(feed, source)
                current.source = nil if source.to_s == "<source/>"
              end

              private
              def required_variable_names
                []
              end

              def variables
                super + ["updated"]
              end

              AtomPersons.def_atom_persons(self, "author",
                                           "maker.item.source.author")
              AtomPersons.def_atom_persons(self, "contributor",
                                           "maker.item.source.contributor")

              class Categories < CategoriesBase
                class Category < CategoryBase
                  include AtomCategory

                  def self.not_set_name
                    "maker.item.source.category"
                  end
                end
              end

              class Generator < GeneratorBase
                include AtomGenerator

                def self.not_set_name
                  "maker.item.source.generator"
                end
              end

              class Icon < IconBase
                def to_feed(feed, current)
                  icon = current.class::Icon.new
                  class << icon
                    alias_method(:url=, :content=)
                  end
                  set = setup_values(icon)
                  class << icon
                    remove_method(:url=)
                  end
                  if set
                    current.icon = icon
                    set_parent(icon, current)
                    setup_other_elements(feed, icon)
                  elsif variable_is_set?
                    raise NotSetError.new("maker.item.source.icon",
                                          not_set_required_variables)
                  end
                end

                private
                def required_variable_names
                  %w(url)
                end
              end

              class Links < LinksBase
                class Link < LinkBase
                  include AtomLink

                  def self.not_set_name
                    "maker.item.source.link"
                  end
                end
              end

              class Logo < LogoBase
                include AtomLogo

                def self.not_set_name
                  "maker.item.source.logo"
                end
              end

              maker_name_base = "maker.item.source."
              maker_name = "#{maker_name_base}rights"
              AtomTextConstruct.def_atom_text_construct(self, "rights",
                                                        maker_name)
              maker_name = "#{maker_name_base}subtitle"
              AtomTextConstruct.def_atom_text_construct(self, "subtitle",
                                                        maker_name)
              maker_name = "#{maker_name_base}title"
              AtomTextConstruct.def_atom_text_construct(self, "title",
                                                        maker_name)
            end

            class Categories < CategoriesBase
              class Category < CategoryBase
                include AtomCategory

                def self.not_set_name
                  "maker.item.category"
                end
              end
            end

            AtomPersons.def_atom_persons(self, "author", "maker.item.author")
            AtomPersons.def_atom_persons(self, "contributor",
                                         "maker.item.contributor")

            class Links < LinksBase
              class Link < LinkBase
                include AtomLink

                def self.not_set_name
                  "maker.item.link"
                end
              end
            end

            AtomTextConstruct.def_atom_text_construct(self, "rights",
                                                      "maker.item.rights")
            AtomTextConstruct.def_atom_text_construct(self, "summary",
                                                      "maker.item.description",
                                                      "Description")
            AtomTextConstruct.def_atom_text_construct(self, "title",
                                                      "maker.item.title")

            class Content < ContentBase
              def to_feed(feed, current)
                content = current.class::Content.new
                if setup_values(content)
                  content.src = nil if content.src and content.content
                  current.content = content
                  set_parent(content, current)
                  setup_other_elements(feed, content)
                elsif variable_is_set?
                  raise NotSetError.new("maker.item.content",
                                        not_set_required_variables)
                end
              end

              alias_method(:xml, :xml_content)

              private
              def required_variable_names
                if out_of_line?
                  %w(type)
                elsif xml_type?
                  %w(xml_content)
                else
                  %w(content)
                end
              end

              def variables
                if out_of_line?
                  super
                elsif xml_type?
                  super + %w(xml)
                else
                  super
                end
              end

              def xml_type?
                _type = type
                return false if _type.nil?
                _type == "xhtml" or
                  /(?:\+xml|\/xml)$/i =~ _type or
                  %w(text/xml-external-parsed-entity
                     application/xml-external-parsed-entity
                     application/xml-dtd).include?(_type.downcase)
              end
            end
          end
        end

        class Textinput < TextinputBase
        end
      end
    end

    add_maker("atom", "1.0", Atom::Feed)
    add_maker("atom:feed", "1.0", Atom::Feed)
    add_maker("atom1.0", "1.0", Atom::Feed)
    add_maker("atom1.0:feed", "1.0", Atom::Feed)
  end
end
PKFH[&"��#share/ruby/rss/maker/syndication.rbnu�[���# frozen_string_literal: false
require_relative '../syndication'
require_relative '1.0'

module RSS
  module Maker
    module SyndicationModel
      def self.append_features(klass)
        super

        ::RSS::SyndicationModel::ELEMENTS.each do |name|
          klass.def_other_element(name)
        end
      end
    end

    class ChannelBase; include SyndicationModel; end
  end
end
PKFH[�PP�3/3/share/ruby/rss/maker/0.9.rbnu�[���# frozen_string_literal: false
require_relative "../0.9"

require_relative "base"

module RSS
  module Maker

    class RSS09 < RSSBase

      def initialize(feed_version)
        super
        @feed_type = "rss"
      end

      private
      def make_feed
        Rss.new(@feed_version, @version, @encoding, @standalone)
      end

      def setup_elements(rss)
        setup_channel(rss)
      end

      class Channel < ChannelBase
        def to_feed(rss)
          channel = Rss::Channel.new
          setup_values(channel)
          _not_set_required_variables = not_set_required_variables
          if _not_set_required_variables.empty?
            rss.channel = channel
            set_parent(channel, rss)
            setup_items(rss)
            setup_image(rss)
            setup_textinput(rss)
            setup_other_elements(rss, channel)
            rss
          else
            raise NotSetError.new("maker.channel", _not_set_required_variables)
          end
        end

        private
        def setup_items(rss)
          @maker.items.to_feed(rss)
        end

        def setup_image(rss)
          @maker.image.to_feed(rss)
        end

        def setup_textinput(rss)
          @maker.textinput.to_feed(rss)
        end

        def variables
          super + ["pubDate"]
        end

        def required_variable_names
          %w(link language)
        end

        def not_set_required_variables
          vars = super
          vars << "description" unless description {|d| d.have_required_values?}
          vars << "title" unless title {|t| t.have_required_values?}
          vars
        end

        class SkipDays < SkipDaysBase
          def to_feed(rss, channel)
            unless @days.empty?
              skipDays = Rss::Channel::SkipDays.new
              channel.skipDays = skipDays
              set_parent(skipDays, channel)
              @days.each do |day|
                day.to_feed(rss, skipDays.days)
              end
            end
          end

          class Day < DayBase
            def to_feed(rss, days)
              day = Rss::Channel::SkipDays::Day.new
              set = setup_values(day)
              if set
                days << day
                set_parent(day, days)
                setup_other_elements(rss, day)
              end
            end

            private
            def required_variable_names
              %w(content)
            end
          end
        end

        class SkipHours < SkipHoursBase
          def to_feed(rss, channel)
            unless @hours.empty?
              skipHours = Rss::Channel::SkipHours.new
              channel.skipHours = skipHours
              set_parent(skipHours, channel)
              @hours.each do |hour|
                hour.to_feed(rss, skipHours.hours)
              end
            end
          end

          class Hour < HourBase
            def to_feed(rss, hours)
              hour = Rss::Channel::SkipHours::Hour.new
              set = setup_values(hour)
              if set
                hours << hour
                set_parent(hour, hours)
                setup_other_elements(rss, hour)
              end
            end

            private
            def required_variable_names
              %w(content)
            end
          end
        end

        class Cloud < CloudBase
          def to_feed(*args)
          end
        end

        class Categories < CategoriesBase
          def to_feed(*args)
          end

          class Category < CategoryBase
          end
        end

        class Links < LinksBase
          def to_feed(rss, channel)
            return if @links.empty?
            @links.first.to_feed(rss, channel)
          end

          class Link < LinkBase
            def to_feed(rss, channel)
              if have_required_values?
                channel.link = href
              else
                raise NotSetError.new("maker.channel.link",
                                      not_set_required_variables)
              end
            end

            private
            def required_variable_names
              %w(href)
            end
          end
        end

        class Authors < AuthorsBase
          def to_feed(rss, channel)
          end

          class Author < AuthorBase
            def to_feed(rss, channel)
            end
          end
        end

        class Contributors < ContributorsBase
          def to_feed(rss, channel)
          end

          class Contributor < ContributorBase
          end
        end

        class Generator < GeneratorBase
          def to_feed(rss, channel)
          end
        end

        class Copyright < CopyrightBase
          def to_feed(rss, channel)
            channel.copyright = content if have_required_values?
          end

          private
          def required_variable_names
            %w(content)
          end
        end

        class Description < DescriptionBase
          def to_feed(rss, channel)
            channel.description = content if have_required_values?
          end

          private
          def required_variable_names
            %w(content)
          end
        end

        class Title < TitleBase
          def to_feed(rss, channel)
            channel.title = content if have_required_values?
          end

          private
          def required_variable_names
            %w(content)
          end
        end
      end

      class Image < ImageBase
        def to_feed(rss)
          image = Rss::Channel::Image.new
          set = setup_values(image)
          if set
            image.link = link
            rss.channel.image = image
            set_parent(image, rss.channel)
            setup_other_elements(rss, image)
          elsif required_element?
            raise NotSetError.new("maker.image", not_set_required_variables)
          end
        end

        private
        def required_variable_names
          %w(url title link)
        end

        def required_element?
          true
        end
      end

      class Items < ItemsBase
        def to_feed(rss)
          if rss.channel
            normalize.each do |item|
              item.to_feed(rss)
            end
            setup_other_elements(rss, rss.items)
          end
        end

        class Item < ItemBase
          def to_feed(rss)
            item = Rss::Channel::Item.new
            setup_values(item)
            _not_set_required_variables = not_set_required_variables
            if _not_set_required_variables.empty?
              rss.items << item
              set_parent(item, rss.channel)
              setup_other_elements(rss, item)
            elsif variable_is_set?
              raise NotSetError.new("maker.items", _not_set_required_variables)
            end
          end

          private
          def required_variable_names
            []
          end

          def not_set_required_variables
            vars = super
            if @maker.feed_version == "0.91"
              vars << "title" unless title {|t| t.have_required_values?}
              vars << "link" unless link
            end
            vars
          end

          class Guid < GuidBase
            def to_feed(*args)
            end
          end

          class Enclosure < EnclosureBase
            def to_feed(*args)
            end
          end

          class Source < SourceBase
            def to_feed(*args)
            end

            class Authors < AuthorsBase
              def to_feed(*args)
              end

              class Author < AuthorBase
              end
            end

            class Categories < CategoriesBase
              def to_feed(*args)
              end

              class Category < CategoryBase
              end
            end

            class Contributors < ContributorsBase
              def to_feed(*args)
              end

              class Contributor < ContributorBase
              end
            end

            class Generator < GeneratorBase
              def to_feed(*args)
              end
            end

            class Icon < IconBase
              def to_feed(*args)
              end
            end

            class Links < LinksBase
              def to_feed(*args)
              end

              class Link < LinkBase
              end
            end

            class Logo < LogoBase
              def to_feed(*args)
              end
            end

            class Rights < RightsBase
              def to_feed(*args)
              end
            end

            class Subtitle < SubtitleBase
              def to_feed(*args)
              end
            end

            class Title < TitleBase
              def to_feed(*args)
              end
            end
          end

          class Categories < CategoriesBase
            def to_feed(*args)
            end

            class Category < CategoryBase
            end
          end

          class Authors < AuthorsBase
            def to_feed(*args)
            end

            class Author < AuthorBase
            end
          end

          class Links < LinksBase
            def to_feed(rss, item)
              return if @links.empty?
              @links.first.to_feed(rss, item)
            end

            class Link < LinkBase
              def to_feed(rss, item)
                if have_required_values?
                  item.link = href
                else
                  raise NotSetError.new("maker.link",
                                        not_set_required_variables)
                end
              end

              private
              def required_variable_names
                %w(href)
              end
            end
          end

          class Contributors < ContributorsBase
            def to_feed(rss, item)
            end

            class Contributor < ContributorBase
            end
          end

          class Rights < RightsBase
            def to_feed(rss, item)
            end
          end

          class Description < DescriptionBase
            def to_feed(rss, item)
              item.description = content if have_required_values?
            end

            private
            def required_variable_names
              %w(content)
            end
          end

          class Content < ContentBase
            def to_feed(rss, item)
            end
          end

          class Title < TitleBase
            def to_feed(rss, item)
              item.title = content if have_required_values?
            end

            private
            def required_variable_names
              %w(content)
            end
          end
        end
      end

      class Textinput < TextinputBase
        def to_feed(rss)
          textInput = Rss::Channel::TextInput.new
          set = setup_values(textInput)
          if set
            rss.channel.textInput = textInput
            set_parent(textInput, rss.channel)
            setup_other_elements(rss, textInput)
          end
        end

        private
        def required_variable_names
          %w(title description name link)
        end
      end
    end

    class RSS091 < RSS09
      def initialize(feed_version="0.91")
        super
      end

      class Channel < RSS09::Channel
      end

      class Items < RSS09::Items
        class Item < RSS09::Items::Item
        end
      end

      class Image < RSS09::Image
      end

      class Textinput < RSS09::Textinput
      end
    end

    class RSS092 < RSS09
      def initialize(feed_version="0.92")
        super
      end

      class Channel < RSS09::Channel
      end

      class Items < RSS09::Items
        class Item < RSS09::Items::Item
        end
      end

      class Image < RSS09::Image
      end

      class Textinput < RSS09::Textinput
      end
    end

    add_maker("0.9", "0.92", RSS092)
    add_maker("0.91", "0.91", RSS091)
    add_maker("0.92", "0.92", RSS092)
    add_maker("rss0.9", "0.92", RSS092)
    add_maker("rss0.91", "0.91", RSS091)
    add_maker("rss0.92", "0.92", RSS092)
  end
end
PKFH["v݈��share/ruby/rss/xmlparser.rbnu�[���# frozen_string_literal: false
begin
  require "xml/parser"
rescue LoadError
  require "xmlparser"
end

begin
  require "xml/encoding-ja"
rescue LoadError
  require "xmlencoding-ja"
  if defined?(Kconv)
    module XMLEncoding_ja
      class SJISHandler
        include Kconv
      end
    end
  end
end

module XML
  class Parser
    unless defined?(Error)
      # This error is legacy, so we just set it to the new one
      Error = ::XMLParserError # :nodoc:
    end
  end
end

module RSS

  class REXMLLikeXMLParser < ::XML::Parser

    include ::XML::Encoding_ja

    def listener=(listener)
      @listener = listener
    end

    def startElement(name, attrs)
      @listener.tag_start(name, attrs)
    end

    def endElement(name)
      @listener.tag_end(name)
    end

    def character(data)
      @listener.text(data)
    end

    def xmlDecl(version, encoding, standalone)
      @listener.xmldecl(version, encoding, standalone == 1)
    end

    def processingInstruction(target, content)
      @listener.instruction(target, content)
    end

  end

  class XMLParserParser < BaseParser

    class << self
      def listener
        XMLParserListener
      end
    end

    private
    def _parse
      begin
        parser = REXMLLikeXMLParser.new
        parser.listener = @listener
        parser.parse(@rss)
      rescue ::XML::Parser::Error => e
        raise NotWellFormedError.new(parser.line){e.message}
      end
    end

  end

  class XMLParserListener < BaseListener

    include ListenerMixin

    def xmldecl(version, encoding, standalone)
      super
      # Encoding is converted to UTF-8 when XMLParser parses XML.
      @encoding = 'UTF-8'
    end

  end

end
PKFH[u/�i��share/ruby/rss/xmlscanner.rbnu�[���# frozen_string_literal: false
require 'xmlscan/scanner'
require 'stringio'

module RSS

  class XMLScanParser < BaseParser

    class << self
      def listener
        XMLScanListener
      end
    end

    private
    def _parse
      begin
        if @rss.is_a?(String)
          input = StringIO.new(@rss)
        else
          input = @rss
        end
        scanner = XMLScan::XMLScanner.new(@listener)
        scanner.parse(input)
      rescue XMLScan::Error => e
        lineno = e.lineno || scanner.lineno || input.lineno
        raise NotWellFormedError.new(lineno){e.message}
      end
    end

  end

  class XMLScanListener < BaseListener

    include XMLScan::Visitor
    include ListenerMixin

    ENTITIES = {
      'lt' => '<',
      'gt' => '>',
      'amp' => '&',
      'quot' => '"',
      'apos' => '\''
    }

    def on_xmldecl_version(str)
      @version = str
    end

    def on_xmldecl_encoding(str)
      @encoding = str
    end

    def on_xmldecl_standalone(str)
      @standalone = str
    end

    def on_xmldecl_end
      xmldecl(@version, @encoding, @standalone == "yes")
    end

    alias_method(:on_pi, :instruction)
    alias_method(:on_chardata, :text)
    alias_method(:on_cdata, :text)

    def on_etag(name)
      tag_end(name)
    end

    def on_entityref(ref)
      text(entity(ref))
    end

    def on_charref(code)
      text([code].pack('U'))
    end

    alias_method(:on_charref_hex, :on_charref)

    def on_stag(name)
      @attrs = {}
    end

    def on_attribute(name)
      @attrs[name] = @current_attr = ''
    end

    def on_attr_value(str)
      @current_attr << str
    end

    def on_attr_entityref(ref)
      @current_attr << entity(ref)
    end

    def on_attr_charref(code)
      @current_attr << [code].pack('U')
    end

    alias_method(:on_attr_charref_hex, :on_attr_charref)

    def on_stag_end(name)
      tag_start(name, @attrs)
    end

    def on_stag_end_empty(name)
      tag_start(name, @attrs)
      tag_end(name)
    end

    private
    def entity(ref)
      ent = ENTITIES[ref]
      if ent
        ent
      else
        wellformed_error("undefined entity: #{ref}")
      end
    end
  end

end
PKFH[�$�9�@�@share/ruby/rss/parser.rbnu�[���# frozen_string_literal: false
require "forwardable"
require "open-uri"

require_relative "rss"
require_relative "xml"

module RSS

  class NotWellFormedError < Error
    attr_reader :line, :element

    # Create a new NotWellFormedError for an error at +line+
    # in +element+.  If a block is given the return value of
    # the block ends up in the error message.
    def initialize(line=nil, element=nil)
      message = "This is not well formed XML"
      if element or line
        message << "\nerror occurred"
        message << " in #{element}" if element
        message << " at about #{line} line" if line
      end
      message << "\n#{yield}" if block_given?
      super(message)
    end
  end

  class XMLParserNotFound < Error
    def initialize
      super("available XML parser was not found in " <<
            "#{AVAILABLE_PARSER_LIBRARIES.inspect}.")
    end
  end

  class NotValidXMLParser < Error
    def initialize(parser)
      super("#{parser} is not an available XML parser. " <<
            "Available XML parser" <<
            (AVAILABLE_PARSERS.size > 1 ? "s are " : " is ") <<
            "#{AVAILABLE_PARSERS.inspect}.")
    end
  end

  class NSError < InvalidRSSError
    attr_reader :tag, :prefix, :uri
    def initialize(tag, prefix, require_uri)
      @tag, @prefix, @uri = tag, prefix, require_uri
      super("prefix <#{prefix}> doesn't associate uri " <<
            "<#{require_uri}> in tag <#{tag}>")
    end
  end

  class Parser

    extend Forwardable

    class << self

      @@default_parser = nil

      def default_parser
        @@default_parser || AVAILABLE_PARSERS.first
      end

      # Set @@default_parser to new_value if it is one of the
      # available parsers. Else raise NotValidXMLParser error.
      def default_parser=(new_value)
        if AVAILABLE_PARSERS.include?(new_value)
          @@default_parser = new_value
        else
          raise NotValidXMLParser.new(new_value)
        end
      end

      def parse(rss, *args)
        if args.last.is_a?(Hash)
          options = args.pop
        else
          options = {}
        end
        do_validate = boolean_argument(args[0], options[:validate], true)
        ignore_unknown_element =
          boolean_argument(args[1], options[:ignore_unknown_element], true)
        parser_class = args[2] || options[:parser_class] || default_parser
        parser = new(rss, parser_class)
        parser.do_validate = do_validate
        parser.ignore_unknown_element = ignore_unknown_element
        parser.parse
      end

      private
      def boolean_argument(positioned_value, option_value, default)
        value = positioned_value
        if value.nil? and not option_value.nil?
          value = option_value
        end
        value = default if value.nil?
        value
      end
    end

    def_delegators(:@parser, :parse, :rss,
                   :ignore_unknown_element,
                   :ignore_unknown_element=, :do_validate,
                   :do_validate=)

    def initialize(rss, parser_class=self.class.default_parser)
      @parser = parser_class.new(normalize_rss(rss))
    end

    private

    # Try to get the XML associated with +rss+.
    # Return +rss+ if it already looks like XML, or treat it as a URI,
    # or a file to get the XML,
    def normalize_rss(rss)
      return rss if maybe_xml?(rss)

      uri = to_uri(rss)

      if uri.respond_to?(:read)
        uri.read
      elsif (RUBY_VERSION >= '2.7' || !rss.tainted?) and File.readable?(rss)
        File.open(rss) {|f| f.read}
      else
        rss
      end
    end

    # maybe_xml? tests if source is a string that looks like XML.
    def maybe_xml?(source)
      source.is_a?(String) and /</ =~ source
    end

    # Attempt to convert rss to a URI, but just return it if
    # there's a ::URI::Error
    def to_uri(rss)
      return rss if rss.is_a?(::URI::Generic)

      begin
        ::URI.parse(rss)
      rescue ::URI::Error
        rss
      end
    end
  end

  class BaseParser

    class << self
      def raise_for_undefined_entity?
        listener.raise_for_undefined_entity?
      end
    end

    def initialize(rss)
      @listener = self.class.listener.new
      @rss = rss
    end

    def rss
      @listener.rss
    end

    def ignore_unknown_element
      @listener.ignore_unknown_element
    end

    def ignore_unknown_element=(new_value)
      @listener.ignore_unknown_element = new_value
    end

    def do_validate
      @listener.do_validate
    end

    def do_validate=(new_value)
      @listener.do_validate = new_value
    end

    def parse
      if @listener.rss.nil?
        _parse
      end
      @listener.rss
    end

  end

  class BaseListener

    extend Utils

    class << self

      @@accessor_bases = {}
      @@registered_uris = {}
      @@class_names = {}

      # return the setter for the uri, tag_name pair, or nil.
      def setter(uri, tag_name)
        _getter = getter(uri, tag_name)
        if _getter
          "#{_getter}="
        else
          nil
        end
      end

      def getter(uri, tag_name)
        (@@accessor_bases[uri] || {})[tag_name]
      end

      # return the tag_names for setters associated with uri
      def available_tags(uri)
        (@@accessor_bases[uri] || {}).keys
      end

      # register uri against this name.
      def register_uri(uri, name)
        @@registered_uris[name] ||= {}
        @@registered_uris[name][uri] = nil
      end

      # test if this uri is registered against this name
      def uri_registered?(uri, name)
        @@registered_uris[name].has_key?(uri)
      end

      # record class_name for the supplied uri and tag_name
      def install_class_name(uri, tag_name, class_name)
        @@class_names[uri] ||= {}
        @@class_names[uri][tag_name] = class_name
      end

      # retrieve class_name for the supplied uri and tag_name
      # If it doesn't exist, capitalize the tag_name
      def class_name(uri, tag_name)
        name = (@@class_names[uri] || {})[tag_name]
        return name if name

        tag_name = tag_name.gsub(/[_\-]([a-z]?)/) {$1.upcase}
        tag_name[0, 1].upcase + tag_name[1..-1]
      end

      def install_get_text_element(uri, name, accessor_base)
        install_accessor_base(uri, name, accessor_base)
        def_get_text_element(uri, name, *get_file_and_line_from_caller(1))
      end

      def raise_for_undefined_entity?
        true
      end

      private
      # set the accessor for the uri, tag_name pair
      def install_accessor_base(uri, tag_name, accessor_base)
        @@accessor_bases[uri] ||= {}
        @@accessor_bases[uri][tag_name] = accessor_base.chomp("=")
      end

      def def_get_text_element(uri, element_name, file, line)
        register_uri(uri, element_name)
        method_name = "start_#{element_name}"
        unless private_method_defined?(method_name)
          define_method(method_name) do |name, prefix, attrs, ns|
            uri = _ns(ns, prefix)
            if self.class.uri_registered?(uri, element_name)
              start_get_text_element(name, prefix, ns, uri)
            else
              start_else_element(name, prefix, attrs, ns)
            end
          end
          private(method_name)
        end
      end
    end
  end

  module ListenerMixin
    attr_reader :rss

    attr_accessor :ignore_unknown_element
    attr_accessor :do_validate

    def initialize
      @rss = nil
      @ignore_unknown_element = true
      @do_validate = true
      @ns_stack = [{"xml" => :xml}]
      @tag_stack = [[]]
      @text_stack = ['']
      @proc_stack = []
      @last_element = nil
      @version = @encoding = @standalone = nil
      @xml_stylesheets = []
      @xml_child_mode = false
      @xml_element = nil
      @last_xml_element = nil
    end

    # set instance vars for version, encoding, standalone
    def xmldecl(version, encoding, standalone)
      @version, @encoding, @standalone = version, encoding, standalone
    end

    def instruction(name, content)
      if name == "xml-stylesheet"
        params = parse_pi_content(content)
        if params.has_key?("href")
          @xml_stylesheets << XMLStyleSheet.new(params)
        end
      end
    end

    def tag_start(name, attributes)
      @text_stack.push('')

      ns = @ns_stack.last.dup
      attrs = {}
      attributes.each do |n, v|
        if /\Axmlns(?:\z|:)/ =~ n
          ns[$POSTMATCH] = v
        else
          attrs[n] = v
        end
      end
      @ns_stack.push(ns)

      prefix, local = split_name(name)
      @tag_stack.last.push([_ns(ns, prefix), local])
      @tag_stack.push([])
      if @xml_child_mode
        previous = @last_xml_element
        element_attrs = attributes.dup
        unless previous
          ns.each do |ns_prefix, value|
            next if ns_prefix == "xml"
            key = ns_prefix.empty? ? "xmlns" : "xmlns:#{ns_prefix}"
            element_attrs[key] ||= value
          end
        end
        next_element = XML::Element.new(local,
                                        prefix.empty? ? nil : prefix,
                                        _ns(ns, prefix),
                                        element_attrs)
        previous << next_element if previous
        @last_xml_element = next_element
        pr = Proc.new do |text, tags|
          if previous
            @last_xml_element = previous
          else
            @xml_element = @last_xml_element
            @last_xml_element = nil
          end
        end
        @proc_stack.push(pr)
      else
        if @rss.nil? and respond_to?("initial_start_#{local}", true)
          __send__("initial_start_#{local}", local, prefix, attrs, ns.dup)
        elsif respond_to?("start_#{local}", true)
          __send__("start_#{local}", local, prefix, attrs, ns.dup)
        else
          start_else_element(local, prefix, attrs, ns.dup)
        end
      end
    end

    def tag_end(name)
      if DEBUG
        p "end tag #{name}"
        p @tag_stack
      end
      text = @text_stack.pop
      tags = @tag_stack.pop
      pr = @proc_stack.pop
      pr.call(text, tags) unless pr.nil?
      @ns_stack.pop
    end

    def text(data)
      if @xml_child_mode
        @last_xml_element << data if @last_xml_element
      else
        @text_stack.last << data
      end
    end

    private
    def _ns(ns, prefix)
      ns.fetch(prefix, "")
    end

    CONTENT_PATTERN = /\s*([^=]+)=(["'])([^\2]+?)\2/
    # Extract the first name="value" pair from content.
    # Works with single quotes according to the constant
    # CONTENT_PATTERN. Return a Hash.
    def parse_pi_content(content)
      params = {}
      content.scan(CONTENT_PATTERN) do |name, quote, value|
        params[name] = value
      end
      params
    end

    def start_else_element(local, prefix, attrs, ns)
      class_name = self.class.class_name(_ns(ns, prefix), local)
      current_class = @last_element.class
      if known_class?(current_class, class_name)
        next_class = current_class.const_get(class_name)
        start_have_something_element(local, prefix, attrs, ns, next_class)
      else
        if !@do_validate or @ignore_unknown_element
          @proc_stack.push(setup_next_element_in_unknown_element)
        else
          parent = "ROOT ELEMENT???"
          if current_class.tag_name
            parent = current_class.tag_name
          end
          raise NotExpectedTagError.new(local, _ns(ns, prefix), parent)
        end
      end
    end

    if Module.method(:const_defined?).arity == -1
      def known_class?(target_class, class_name)
        class_name and
          (target_class.const_defined?(class_name, false) or
           target_class.constants.include?(class_name.to_sym))
      end
    else
      def known_class?(target_class, class_name)
        class_name and
          (target_class.const_defined?(class_name) or
           target_class.constants.include?(class_name))
      end
    end

    NAMESPLIT = /^(?:([\w:][-\w.]*):)?([\w:][-\w.]*)/
    def split_name(name)
      name =~ NAMESPLIT
      [$1 || '', $2]
    end

    def check_ns(tag_name, prefix, ns, require_uri, ignore_unknown_element=nil)
      if _ns(ns, prefix) == require_uri
        true
      else
        if ignore_unknown_element.nil?
          ignore_unknown_element = @ignore_unknown_element
        end

        if ignore_unknown_element
          false
        elsif @do_validate
          raise NSError.new(tag_name, prefix, require_uri)
        else
          # Force bind required URI with prefix
          @ns_stack.last[prefix] = require_uri
          true
        end
      end
    end

    def start_get_text_element(tag_name, prefix, ns, required_uri)
      pr = Proc.new do |text, tags|
        setter = self.class.setter(required_uri, tag_name)
        if setter and @last_element.respond_to?(setter)
          if @do_validate
            getter = self.class.getter(required_uri, tag_name)
            if @last_element.__send__(getter)
              raise TooMuchTagError.new(tag_name, @last_element.tag_name)
            end
          end
          @last_element.__send__(setter, text.to_s)
        else
          if @do_validate and !@ignore_unknown_element
            raise NotExpectedTagError.new(tag_name, _ns(ns, prefix),
                                          @last_element.tag_name)
          end
        end
      end
      @proc_stack.push(pr)
    end

    def start_have_something_element(tag_name, prefix, attrs, ns, klass)
      if check_ns(tag_name, prefix, ns, klass.required_uri)
        attributes = collect_attributes(tag_name, prefix, attrs, ns, klass)
        @proc_stack.push(setup_next_element(tag_name, klass, attributes))
      else
        @proc_stack.push(setup_next_element_in_unknown_element)
      end
    end

    def collect_attributes(tag_name, prefix, attrs, ns, klass)
      attributes = {}
      klass.get_attributes.each do |a_name, a_uri, required, element_name|
        if a_uri.is_a?(String) or !a_uri.respond_to?(:include?)
          a_uri = [a_uri]
        end
        unless a_uri == [""]
          for prefix, uri in ns
            if a_uri.include?(uri)
              val = attrs["#{prefix}:#{a_name}"]
              break if val
            end
          end
        end
        if val.nil? and a_uri.include?("")
          val = attrs[a_name]
        end

        if @do_validate and required and val.nil?
          unless a_uri.include?("")
            for prefix, uri in ns
              if a_uri.include?(uri)
                a_name = "#{prefix}:#{a_name}"
              end
            end
          end
          raise MissingAttributeError.new(tag_name, a_name)
        end

        attributes[a_name] = val
      end
      attributes
    end

    def setup_next_element(tag_name, klass, attributes)
      previous = @last_element
      next_element = klass.new(@do_validate, attributes)
      previous.set_next_element(tag_name, next_element)
      @last_element = next_element
      @last_element.parent = previous if klass.need_parent?
      @xml_child_mode = @last_element.have_xml_content?

      Proc.new do |text, tags|
        p(@last_element.class) if DEBUG
        if @xml_child_mode
          @last_element.content = @xml_element.to_s
          xml_setter = @last_element.class.xml_setter
          @last_element.__send__(xml_setter, @xml_element)
          @xml_element = nil
          @xml_child_mode = false
        else
          if klass.have_content?
            if @last_element.need_base64_encode?
              text = text.lstrip.unpack("m").first
            end
            @last_element.content = text
          end
        end
        if @do_validate
          @last_element.validate_for_stream(tags, @ignore_unknown_element)
        end
        @last_element = previous
      end
    end

    def setup_next_element_in_unknown_element
      current_element, @last_element = @last_element, nil
      Proc.new {@last_element = current_element}
    end
  end

  unless const_defined? :AVAILABLE_PARSER_LIBRARIES
    # The list of all available libraries for parsing.
    AVAILABLE_PARSER_LIBRARIES = [
      ["rss/xmlparser", :XMLParserParser],
      ["rss/xmlscanner", :XMLScanParser],
      ["rss/rexmlparser", :REXMLParser],
    ]
  end

  # The list of all available parsers, in constant form.
  AVAILABLE_PARSERS = []

  AVAILABLE_PARSER_LIBRARIES.each do |lib, parser|
    begin
      require lib
      AVAILABLE_PARSERS.push(const_get(parser))
    rescue LoadError
    end
  end

  if AVAILABLE_PARSERS.empty?
    raise XMLParserNotFound
  end
end
PKFH[�
N��&�&share/ruby/rss/1.0.rbnu�[���# frozen_string_literal: false
require_relative "parser"

module RSS

  ##
  # = RSS 1.0 support
  #
  # RSS has three different versions. This module contains support for version
  # 1.0[http://web.resource.org/rss/1.0/]
  #
  # == Producing RSS 1.0
  #
  # Producing our own RSS feeds is easy as well. Let's make a very basic feed:
  #
  #  require "rss"
  #
  #  rss = RSS::Maker.make("1.0") do |maker|
  #    maker.channel.language = "en"
  #    maker.channel.author = "matz"
  #    maker.channel.about = "About my feed."
  #    maker.channel.updated = Time.now.to_s
  #    maker.channel.link = "http://www.ruby-lang.org/en/feeds/news.rss"
  #    maker.channel.title = "Example Feed"
  #    maker.channel.description = "A longer description of my feed."
  #    maker.items.new_item do |item|
  #      item.link = "http://www.ruby-lang.org/en/news/2010/12/25/ruby-1-9-2-p136-is-released/"
  #      item.title = "Ruby 1.9.2-p136 is released"
  #      item.updated = Time.now.to_s
  #    end
  #  end
  #
  #  puts rss
  #
  # As you can see, this is a very Builder-like DSL. This code will spit out an
  # RSS 1.0 feed with one item. If we needed a second item, we'd make another
  # block with maker.items.new_item and build a second one.
  module RSS10
    NSPOOL = {}
    ELEMENTS = []

    def self.append_features(klass)
      super

      klass.install_must_call_validator('', ::RSS::URI)
    end

  end

  class RDF < Element

    include RSS10
    include RootElementMixin

    class << self

      def required_uri
        URI
      end

    end

    @tag_name = 'RDF'

    PREFIX = 'rdf'
    URI = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"

    install_ns('', ::RSS::URI)
    install_ns(PREFIX, URI)

    [
      ["channel", nil],
      ["image", "?"],
      ["item", "+", :children],
      ["textinput", "?"],
    ].each do |tag, occurs, type|
      type ||= :child
      __send__("install_have_#{type}_element", tag, ::RSS::URI, occurs)
    end

    alias_method(:rss_version, :feed_version)
    def initialize(version=nil, encoding=nil, standalone=nil)
      super('1.0', version, encoding, standalone)
      @feed_type = "rss"
    end

    def full_name
      tag_name_with_prefix(PREFIX)
    end

    class Li < Element

      include RSS10

      class << self
        def required_uri
          URI
        end
      end

      [
        ["resource", [URI, ""], true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.resource = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(PREFIX)
      end
    end

    class Seq < Element

      include RSS10

      Li = ::RSS::RDF::Li

      class << self
        def required_uri
          URI
        end
      end

      @tag_name = 'Seq'

      install_have_children_element("li", URI, "*")
      install_must_call_validator('rdf', ::RSS::RDF::URI)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          @li = args[0] if args[0]
        end
      end

      def full_name
        tag_name_with_prefix(PREFIX)
      end

      def setup_maker(target)
        lis.each do |li|
          target << li.resource
        end
      end
    end

    class Bag < Element

      include RSS10

      Li = ::RSS::RDF::Li

      class << self
        def required_uri
          URI
        end
      end

      @tag_name = 'Bag'

      install_have_children_element("li", URI, "*")
      install_must_call_validator('rdf', URI)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          @li = args[0] if args[0]
        end
      end

      def full_name
        tag_name_with_prefix(PREFIX)
      end

      def setup_maker(target)
        lis.each do |li|
          target << li.resource
        end
      end
    end

    class Channel < Element

      include RSS10

      class << self

        def required_uri
          ::RSS::URI
        end

      end

      [
        ["about", URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{PREFIX}:#{name}")
      end

      [
        ['title', nil, :text],
        ['link', nil, :text],
        ['description', nil, :text],
        ['image', '?', :have_child],
        ['items', nil, :have_child],
        ['textinput', '?', :have_child],
      ].each do |tag, occurs, type|
        __send__("install_#{type}_element", tag, ::RSS::URI, occurs)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
        end
      end

      private
      def maker_target(maker)
        maker.channel
      end

      def setup_maker_attributes(channel)
        channel.about = about
      end

      class Image < Element

        include RSS10

        class << self

          def required_uri
            ::RSS::URI
          end

        end

        [
          ["resource", URI, true]
        ].each do |name, uri, required|
          install_get_attribute(name, uri, required, nil, nil,
                                "#{PREFIX}:#{name}")
        end

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.resource = args[0]
          end
        end
      end

      class Textinput < Element

        include RSS10

        class << self

          def required_uri
            ::RSS::URI
          end

        end

        [
          ["resource", URI, true]
        ].each do |name, uri, required|
          install_get_attribute(name, uri, required, nil, nil,
                                "#{PREFIX}:#{name}")
        end

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.resource = args[0]
          end
        end
      end

      class Items < Element

        include RSS10

        Seq = ::RSS::RDF::Seq

        class << self

          def required_uri
            ::RSS::URI
          end

        end

        install_have_child_element("Seq", URI, nil)
        install_must_call_validator('rdf', URI)

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.Seq = args[0]
          end
          self.Seq ||= Seq.new
        end

        def resources
          if @Seq
            @Seq.lis.collect do |li|
              li.resource
            end
          else
            []
          end
        end
      end
    end

    class Image < Element

      include RSS10

      class << self

        def required_uri
          ::RSS::URI
        end

      end

      [
        ["about", URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{PREFIX}:#{name}")
      end

      %w(title url link).each do |name|
        install_text_element(name, ::RSS::URI, nil)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
        end
      end

      private
      def maker_target(maker)
        maker.image
      end
    end

    class Item < Element

      include RSS10

      class << self

        def required_uri
          ::RSS::URI
        end

      end


      [
        ["about", URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{PREFIX}:#{name}")
      end

      [
        ["title", nil],
        ["link", nil],
        ["description", "?"],
      ].each do |tag, occurs|
        install_text_element(tag, ::RSS::URI, occurs)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
        end
      end

      private
      def maker_target(items)
        if items.respond_to?("items")
          # For backward compatibility
          items = items.items
        end
        items.new_item
      end
    end

    class Textinput < Element

      include RSS10

      class << self

        def required_uri
          ::RSS::URI
        end

      end

      [
        ["about", URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{PREFIX}:#{name}")
      end

      %w(title description name link).each do |name|
        install_text_element(name, ::RSS::URI, nil)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
        end
      end

      private
      def maker_target(maker)
        maker.textinput
      end
    end

  end

  RSS10::ELEMENTS.each do |name|
    BaseListener.install_get_text_element(URI, name, name)
  end

  module ListenerMixin
    private
    def initial_start_RDF(tag_name, prefix, attrs, ns)
      check_ns(tag_name, prefix, ns, RDF::URI, false)

      @rss = RDF.new(@version, @encoding, @standalone)
      @rss.do_validate = @do_validate
      @rss.xml_stylesheets = @xml_stylesheets
      @last_element = @rss
      pr = Proc.new do |text, tags|
        @rss.validate_for_stream(tags, @ignore_unknown_element) if @do_validate
      end
      @proc_stack.push(pr)
    end
  end

end
PKFH[�(��share/ruby/rss/trackback.rbnu�[���# frozen_string_literal: false
# This file contains the implementation of trackbacks. It is entirely internal
# and not useful to outside developers.
require 'rss/1.0'
require 'rss/2.0'

module RSS # :nodoc: all

  TRACKBACK_PREFIX = 'trackback'
  TRACKBACK_URI = 'http://madskills.com/public/xml/rss/module/trackback/'

  RDF.install_ns(TRACKBACK_PREFIX, TRACKBACK_URI)
  Rss.install_ns(TRACKBACK_PREFIX, TRACKBACK_URI)

  module TrackBackUtils
    private
    def trackback_validate(ignore_unknown_element, tags, uri)
      return if tags.nil?
      if tags.find {|tag| tag == "about"} and
          !tags.find {|tag| tag == "ping"}
        raise MissingTagError.new("#{TRACKBACK_PREFIX}:ping", tag_name)
      end
    end
  end

  module BaseTrackBackModel

    ELEMENTS = %w(ping about)

    def append_features(klass)
      super

      unless klass.class == Module
        klass.module_eval {include TrackBackUtils}

        klass.install_must_call_validator(TRACKBACK_PREFIX, TRACKBACK_URI)
        %w(ping).each do |name|
          var_name = "#{TRACKBACK_PREFIX}_#{name}"
          klass_name = "TrackBack#{Utils.to_class_name(name)}"
          klass.install_have_child_element(name, TRACKBACK_URI, "?", var_name)
          klass.module_eval(<<-EOC, __FILE__, __LINE__)
            remove_method :#{var_name}
            def #{var_name}
              @#{var_name} and @#{var_name}.value
            end

            remove_method :#{var_name}=
            def #{var_name}=(value)
              @#{var_name} = Utils.new_with_value_if_need(#{klass_name}, value)
            end
          EOC
        end

        [%w(about s)].each do |name, postfix|
          var_name = "#{TRACKBACK_PREFIX}_#{name}"
          klass_name = "TrackBack#{Utils.to_class_name(name)}"
          klass.install_have_children_element(name, TRACKBACK_URI, "*",
                                              var_name)
          klass.module_eval(<<-EOC, __FILE__, __LINE__)
            remove_method :#{var_name}
            def #{var_name}(*args)
              if args.empty?
                @#{var_name}.first and @#{var_name}.first.value
              else
                ret = @#{var_name}.__send__("[]", *args)
                if ret.is_a?(Array)
                  ret.collect {|x| x.value}
                else
                  ret.value
                end
              end
            end

            remove_method :#{var_name}=
            remove_method :set_#{var_name}
            def #{var_name}=(*args)
              if args.size == 1
                item = Utils.new_with_value_if_need(#{klass_name}, args[0])
                @#{var_name}.push(item)
              else
                new_val = args.last
                if new_val.is_a?(Array)
                  new_val = new_value.collect do |val|
                    Utils.new_with_value_if_need(#{klass_name}, val)
                  end
                else
                  new_val = Utils.new_with_value_if_need(#{klass_name}, new_val)
                end
                @#{var_name}.__send__("[]=", *(args[0..-2] + [new_val]))
              end
            end
            alias set_#{var_name} #{var_name}=
          EOC
        end
      end
    end
  end

  module TrackBackModel10
    extend BaseModel
    extend BaseTrackBackModel

    class TrackBackPing < Element
      include RSS10

      class << self

        def required_prefix
          TRACKBACK_PREFIX
        end

        def required_uri
          TRACKBACK_URI
        end

      end

      @tag_name = "ping"

      [
        ["resource", ::RSS::RDF::URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{::RSS::RDF::PREFIX}:#{name}")
      end

      alias_method(:value, :resource)
      alias_method(:value=, :resource=)
      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.resource = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(TRACKBACK_PREFIX)
      end
    end

    class TrackBackAbout < Element
      include RSS10

      class << self

        def required_prefix
          TRACKBACK_PREFIX
        end

        def required_uri
          TRACKBACK_URI
        end

      end

      @tag_name = "about"

      [
        ["resource", ::RSS::RDF::URI, true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{::RSS::RDF::PREFIX}:#{name}")
      end

      alias_method(:value, :resource)
      alias_method(:value=, :resource=)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.resource = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(TRACKBACK_PREFIX)
      end

      private
      def maker_target(abouts)
        abouts.new_about
      end

      def setup_maker_attributes(about)
        about.resource = self.resource
      end

    end
  end

  module TrackBackModel20
    extend BaseModel
    extend BaseTrackBackModel

    class TrackBackPing < Element
      include RSS09

      @tag_name = "ping"

      content_setup

      class << self

        def required_prefix
          TRACKBACK_PREFIX
        end

        def required_uri
          TRACKBACK_URI
        end

      end

      alias_method(:value, :content)
      alias_method(:value=, :content=)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.content = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(TRACKBACK_PREFIX)
      end

    end

    class TrackBackAbout < Element
      include RSS09

      @tag_name = "about"

      content_setup

      class << self

        def required_prefix
          TRACKBACK_PREFIX
        end

        def required_uri
          TRACKBACK_URI
        end

      end

      alias_method(:value, :content)
      alias_method(:value=, :content=)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.content = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(TRACKBACK_PREFIX)
      end

    end
  end

  class RDF
    class Item; include TrackBackModel10; end
  end

  class Rss
    class Channel
      class Item; include TrackBackModel20; end
    end
  end

  BaseTrackBackModel::ELEMENTS.each do |name|
    class_name = Utils.to_class_name(name)
    BaseListener.install_class_name(TRACKBACK_URI, name,
                                    "TrackBack#{class_name}")
  end

  BaseTrackBackModel::ELEMENTS.collect! {|name| "#{TRACKBACK_PREFIX}_#{name}"}
end
PKFH[����share/ruby/rss/rexmlparser.rbnu�[���# frozen_string_literal: false
require "rexml/document"
require "rexml/streamlistener"

module RSS

  class REXMLParser < BaseParser

    class << self
      def listener
        REXMLListener
      end
    end

    private
    def _parse
      begin
        REXML::Document.parse_stream(@rss, @listener)
      rescue RuntimeError => e
        raise NotWellFormedError.new{e.message}
      rescue REXML::ParseException => e
        context = e.context
        line = context[0] if context
        raise NotWellFormedError.new(line){e.message}
      end
    end

  end

  class REXMLListener < BaseListener

    include REXML::StreamListener
    include ListenerMixin

    class << self
      def raise_for_undefined_entity?
        false
      end
    end

    def xmldecl(version, encoding, standalone)
      super(version, encoding, standalone == "yes")
      # Encoding is converted to UTF-8 when REXML parse XML.
      @encoding = 'UTF-8'
    end

    alias_method(:cdata, :text)
  end

end
PKFH[IOaɉ�share/ruby/rss/utils.rbnu�[���# frozen_string_literal: false
module RSS

  ##
  # RSS::Utils is a module that holds various utility functions that are used
  # across many parts of the rest of the RSS library. Like most modules named
  # some variant of 'util', its methods are probably not particularly useful
  # to those who aren't developing the library itself.
  module Utils
    module_function

    # Given a +name+ in a name_with_underscores or a name-with-dashes format,
    # returns the CamelCase version of +name+.
    #
    # If the +name+ is already CamelCased, nothing happens.
    #
    # Examples:
    #
    #   require 'rss/utils'
    #
    #   RSS::Utils.to_class_name("sample_name")
    #   # => "SampleName"
    #   RSS::Utils.to_class_name("with-dashes")
    #   # => "WithDashes"
    #   RSS::Utils.to_class_name("CamelCase")
    #   # => "CamelCase"
    def to_class_name(name)
      name.split(/[_\-]/).collect do |part|
        "#{part[0, 1].upcase}#{part[1..-1]}"
      end.join("")
    end

    # Returns an array of two elements: the filename where the calling method
    # is located, and the line number where it is defined.
    #
    # Takes an optional argument +i+, which specifies how many callers up the
    # stack to look.
    #
    # Examples:
    #
    #   require 'rss/utils'
    #
    #   def foo
    #     p RSS::Utils.get_file_and_line_from_caller
    #     p RSS::Utils.get_file_and_line_from_caller(1)
    #   end
    #
    #   def bar
    #     foo
    #   end
    #
    #   def baz
    #     bar
    #   end
    #
    #   baz
    #   # => ["test.rb", 5]
    #   # => ["test.rb", 9]
    #
    # If +i+ is not given, or is the default value of 0, it attempts to figure
    # out the correct value. This is useful when in combination with
    # instance_eval. For example:
    #
    #   require 'rss/utils'
    #
    #   def foo
    #     p RSS::Utils.get_file_and_line_from_caller(1)
    #   end
    #
    #   def bar
    #     foo
    #   end
    #
    #   instance_eval <<-RUBY, *RSS::Utils.get_file_and_line_from_caller
    #   def baz
    #     bar
    #   end
    #   RUBY
    #
    #   baz
    #
    #   # => ["test.rb", 8]
    def get_file_and_line_from_caller(i=0)
      file, line, = caller[i].split(':')
      line = line.to_i
      line += 1 if i.zero?
      [file, line]
    end

    # Takes a string +s+ with some HTML in it, and escapes '&', '"', '<' and '>', by
    # replacing them with the appropriate entities.
    #
    # This method is also aliased to h, for convenience.
    #
    # Examples:
    #
    #   require 'rss/utils'
    #
    #   RSS::Utils.html_escape("Dungeons & Dragons")
    #   # => "Dungeons &amp; Dragons"
    #   RSS::Utils.h(">_>")
    #   # => "&gt;_&gt;"
    def html_escape(s)
      s.to_s.gsub(/&/, "&amp;").gsub(/\"/, "&quot;").gsub(/>/, "&gt;").gsub(/</, "&lt;")
    end
    alias h html_escape

    # If +value+ is an instance of class +klass+, return it, else
    # create a new instance of +klass+ with value +value+.
    def new_with_value_if_need(klass, value)
      if value.is_a?(klass)
        value
      else
        klass.new(value)
      end
    end

    # This method is used inside of several different objects to determine
    # if special behavior is needed in the constructor.
    #
    # Special behavior is needed if the array passed in as +args+ has
    # +true+ or +false+ as its value, and if the second element of +args+
    # is a hash.
    def element_initialize_arguments?(args)
      [true, false].include?(args[0]) and args[1].is_a?(Hash)
    end

    module ExplicitCleanOther
      module_function
      def parse(value)
        if [true, false, nil].include?(value)
          value
        else
          case value.to_s
          when /\Aexplicit|yes|true\z/i
            true
          when /\Aclean|no|false\z/i
            false
          else
            nil
          end
        end
      end
    end

    module YesOther
      module_function
      def parse(value)
        if [true, false].include?(value)
          value
        else
          /\Ayes\z/i.match(value.to_s) ? true : false
        end
      end
    end

    module CSV
      module_function
      def parse(value, &block)
        if value.is_a?(String)
          value = value.strip.split(/\s*,\s*/)
          value = value.collect(&block) if block_given?
          value
        else
          value
        end
      end
    end

    module InheritedReader
      def inherited_reader(constant_name)
        base_class = inherited_base
        result = base_class.const_get(constant_name)
        found_base_class = false
        ancestors.reverse_each do |klass|
          if found_base_class
            if klass.const_defined?(constant_name)
              result = yield(result, klass.const_get(constant_name))
            end
          else
            found_base_class = klass == base_class
          end
        end
        result
      end

      def inherited_array_reader(constant_name)
        inherited_reader(constant_name) do |result, current|
          current + result
        end
      end

      def inherited_hash_reader(constant_name)
        inherited_reader(constant_name) do |result, current|
          result.merge(current)
        end
      end
    end
  end
end
PKFH[<��APPshare/ruby/rss/slash.rbnu�[���# frozen_string_literal: false
require 'rss/1.0'

module RSS
  # The prefix for the Slash XML namespace.
  SLASH_PREFIX = 'slash'
  # The URI of the Slash specification.
  SLASH_URI = "http://purl.org/rss/1.0/modules/slash/"

  RDF.install_ns(SLASH_PREFIX, SLASH_URI)

  module SlashModel
    extend BaseModel

    ELEMENT_INFOS = \
    [
     ["section"],
     ["department"],
     ["comments", :positive_integer],
     ["hit_parade", :csv_integer],
    ]

    class << self
      def append_features(klass)
        super

        return if klass.instance_of?(Module)
        klass.install_must_call_validator(SLASH_PREFIX, SLASH_URI)
        ELEMENT_INFOS.each do |name, type, *additional_infos|
          full_name = "#{SLASH_PREFIX}_#{name}"
          klass.install_text_element(full_name, SLASH_URI, "?",
                                     full_name, type, name)
        end

        klass.module_eval do
          alias_method(:slash_hit_parades, :slash_hit_parade)
          undef_method(:slash_hit_parade)
          alias_method(:slash_hit_parade, :slash_hit_parade_content)
        end
      end
    end
  end

  class RDF
    class Item; include SlashModel; end
  end

  SlashModel::ELEMENT_INFOS.each do |name, type|
    accessor_base = "#{SLASH_PREFIX}_#{name}"
    BaseListener.install_get_text_element(SLASH_URI, name, accessor_base)
  end
end
PKFH[�!
���share/ruby/rss/taxonomy.rbnu�[���# frozen_string_literal: false
require "rss/1.0"
require_relative "dublincore"

module RSS
  # The prefix for the Taxonomy XML namespace.
  TAXO_PREFIX = "taxo"
  # The URI for the specification of the Taxonomy XML namespace.
  TAXO_URI = "http://purl.org/rss/1.0/modules/taxonomy/"

  RDF.install_ns(TAXO_PREFIX, TAXO_URI)

  # The listing of all the taxonomy elements, with the appropriate namespace.
  TAXO_ELEMENTS = []

  %w(link).each do |name|
    full_name = "#{TAXO_PREFIX}_#{name}"
    BaseListener.install_get_text_element(TAXO_URI, name, full_name)
    TAXO_ELEMENTS << "#{TAXO_PREFIX}_#{name}"
  end

  %w(topic topics).each do |name|
    class_name = Utils.to_class_name(name)
    BaseListener.install_class_name(TAXO_URI, name, "Taxonomy#{class_name}")
    TAXO_ELEMENTS << "#{TAXO_PREFIX}_#{name}"
  end

  module TaxonomyTopicsModel
    extend BaseModel

    def self.append_features(klass)
      super

      klass.install_must_call_validator(TAXO_PREFIX, TAXO_URI)
      %w(topics).each do |name|
        klass.install_have_child_element(name, TAXO_URI, "?",
                                         "#{TAXO_PREFIX}_#{name}")
      end
    end

    class TaxonomyTopics < Element
      include RSS10

      Bag = ::RSS::RDF::Bag

      class << self
        def required_prefix
          TAXO_PREFIX
        end

        def required_uri
          TAXO_URI
        end
      end

      @tag_name = "topics"

      install_have_child_element("Bag", RDF::URI, nil)
      install_must_call_validator('rdf', RDF::URI)

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.Bag = args[0]
        end
        self.Bag ||= Bag.new
      end

      def full_name
        tag_name_with_prefix(TAXO_PREFIX)
      end

      def maker_target(target)
        target.taxo_topics
      end

      def resources
        if @Bag
          @Bag.lis.collect do |li|
            li.resource
          end
        else
          []
        end
      end
    end
  end

  module TaxonomyTopicModel
    extend BaseModel

    def self.append_features(klass)
      super
      var_name = "#{TAXO_PREFIX}_topic"
      klass.install_have_children_element("topic", TAXO_URI, "*", var_name)
    end

    class TaxonomyTopic < Element
      include RSS10

      include DublinCoreModel
      include TaxonomyTopicsModel

      class << self
        def required_prefix
          TAXO_PREFIX
        end

        def required_uri
          TAXO_URI
        end
      end

      @tag_name = "topic"

      install_get_attribute("about", ::RSS::RDF::URI, true, nil, nil,
                            "#{RDF::PREFIX}:about")
      install_text_element("link", TAXO_URI, "?", "#{TAXO_PREFIX}_link")

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(TAXO_PREFIX)
      end

      def maker_target(target)
        target.new_taxo_topic
      end
    end
  end

  class RDF
    include TaxonomyTopicModel
    class Channel
      include TaxonomyTopicsModel
    end
    class Item; include TaxonomyTopicsModel; end
  end
end
PKFH[;�u	BBshare/ruby/rss/version.rbnu�[���module RSS
  # The current version of RSS
  VERSION = "0.2.8"
end
PKFH[CW5share/ruby/rss/xml.rbnu�[���# frozen_string_literal: false
require_relative "utils"

module RSS
  module XML
    class Element
      include Enumerable

      attr_reader :name, :prefix, :uri, :attributes, :children
      def initialize(name, prefix=nil, uri=nil, attributes={}, children=[])
        @name = name
        @prefix = prefix
        @uri = uri
        @attributes = attributes
        if children.is_a?(String) or !children.respond_to?(:each)
          @children = [children]
        else
          @children = children
        end
      end

      def [](name)
        @attributes[name]
      end

      def []=(name, value)
        @attributes[name] = value
      end

      def <<(child)
        @children << child
      end

      def each(&block)
        @children.each(&block)
      end

      def ==(other)
        other.kind_of?(self.class) and
          @name == other.name and
          @uri == other.uri and
          @attributes == other.attributes and
          @children == other.children
      end

      def to_s
        rv = "<#{full_name}"
        attributes.each do |key, value|
          rv << " #{Utils.html_escape(key)}=\"#{Utils.html_escape(value)}\""
        end
        if children.empty?
          rv << "/>"
        else
          rv << ">"
          children.each do |child|
            rv << child.to_s
          end
          rv << "</#{full_name}>"
        end
        rv
      end

      def full_name
        if @prefix
          "#{@prefix}:#{@name}"
        else
          @name
        end
      end
    end
  end
end
PKFH[+��55 share/ruby/rss/dublincore/1.0.rbnu�[���# frozen_string_literal: false
require "rss/1.0"

module RSS
  RDF.install_ns(DC_PREFIX, DC_URI)

  class RDF
    class Channel; include DublinCoreModel; end
    class Image; include DublinCoreModel; end
    class Item; include DublinCoreModel; end
    class Textinput; include DublinCoreModel; end
  end
end
PKFH[�ö�� share/ruby/rss/dublincore/2.0.rbnu�[���# frozen_string_literal: false
require "rss/2.0"

module RSS
  Rss.install_ns(DC_PREFIX, DC_URI)

  class Rss
    class Channel
      include DublinCoreModel
      class Item; include DublinCoreModel; end
    end
  end
end
PKFH[�s��""!share/ruby/rss/dublincore/atom.rbnu�[���# frozen_string_literal: false
require_relative "../atom"

module RSS
  module Atom
    Feed.install_ns(DC_PREFIX, DC_URI)

    class Feed
      include DublinCoreModel
      class Entry; include DublinCoreModel; end
    end

    class Entry
      include DublinCoreModel
    end
  end
end
PKFH[b��
�
share/ruby/rss/2.0.rbnu�[���# frozen_string_literal: false
require "rss/0.9"

module RSS

  ##
  # = RSS 2.0 support
  #
  # RSS has three different versions. This module contains support for version
  # 2.0[http://www.rssboard.org/rss-specification]
  #
  # == Producing RSS 2.0
  #
  # Producing our own RSS feeds is easy as well. Let's make a very basic feed:
  #
  #  require "rss"
  #
  #  rss = RSS::Maker.make("2.0") do |maker|
  #    maker.channel.language = "en"
  #    maker.channel.author = "matz"
  #    maker.channel.updated = Time.now.to_s
  #    maker.channel.link = "http://www.ruby-lang.org/en/feeds/news.rss"
  #    maker.channel.title = "Example Feed"
  #    maker.channel.description = "A longer description of my feed."
  #    maker.items.new_item do |item|
  #      item.link = "http://www.ruby-lang.org/en/news/2010/12/25/ruby-1-9-2-p136-is-released/"
  #      item.title = "Ruby 1.9.2-p136 is released"
  #      item.updated = Time.now.to_s
  #    end
  #  end
  #
  #  puts rss
  #
  # As you can see, this is a very Builder-like DSL. This code will spit out an
  # RSS 2.0 feed with one item. If we needed a second item, we'd make another
  # block with maker.items.new_item and build a second one.
  class Rss

    class Channel

      [
        ["generator"],
        ["ttl", :integer],
      ].each do |name, type|
        install_text_element(name, "", "?", name, type)
      end

      [
        %w(category categories),
      ].each do |name, plural_name|
        install_have_children_element(name, "", "*", name, plural_name)
      end

      [
        ["image", "?"],
        ["language", "?"],
      ].each do |name, occurs|
        install_model(name, "", occurs)
      end

      Category = Item::Category

      class Item

        [
          ["comments", "?"],
          ["author", "?"],
        ].each do |name, occurs|
          install_text_element(name, "", occurs)
        end

        [
          ["pubDate", '?'],
        ].each do |name, occurs|
          install_date_element(name, "", occurs, name, 'rfc822')
        end
        alias date pubDate
        alias date= pubDate=

        [
          ["guid", '?'],
        ].each do |name, occurs|
          install_have_child_element(name, "", occurs)
        end

        private
        alias _setup_maker_element setup_maker_element
        def setup_maker_element(item)
          _setup_maker_element(item)
          @guid.setup_maker(item) if @guid
        end

        class Guid < Element

          include RSS09

          [
            ["isPermaLink", "", false, :boolean]
          ].each do |name, uri, required, type|
            install_get_attribute(name, uri, required, type)
          end

          content_setup

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.isPermaLink = args[0]
              self.content = args[1]
            end
          end

          alias_method :_PermaLink?, :PermaLink?
          private :_PermaLink?
          def PermaLink?
            perma = _PermaLink?
            perma or perma.nil?
          end

          private
          def maker_target(item)
            item.guid
          end

          def setup_maker_attributes(guid)
            guid.isPermaLink = isPermaLink
            guid.content = content
          end
        end

      end

    end

  end

  RSS09::ELEMENTS.each do |name|
    BaseListener.install_get_text_element("", name, name)
  end

end
PKFH[�b��11share/ruby/rss/image.rbnu�[���# frozen_string_literal: false
require 'rss/1.0'
require_relative 'dublincore'

module RSS

  # The prefix for the Image XML namespace.
  IMAGE_PREFIX = 'image'
  # The URI for the Image specification.
  IMAGE_URI = 'http://purl.org/rss/1.0/modules/image/'

  RDF.install_ns(IMAGE_PREFIX, IMAGE_URI)

  # This constant holds strings which contain the names of
  # image elements, with the appropriate prefix.
  IMAGE_ELEMENTS = []

  %w(item favicon).each do |name|
    class_name = Utils.to_class_name(name)
    BaseListener.install_class_name(IMAGE_URI, name, "Image#{class_name}")
    IMAGE_ELEMENTS << "#{IMAGE_PREFIX}_#{name}"
  end

  module ImageModelUtils
    def validate_one_tag_name(ignore_unknown_element, name, tags)
      if !ignore_unknown_element
        invalid = tags.find {|tag| tag != name}
        raise UnknownTagError.new(invalid, IMAGE_URI) if invalid
      end
      raise TooMuchTagError.new(name, tag_name) if tags.size > 1
    end
  end

  module ImageItemModel
    include ImageModelUtils
    extend BaseModel

    def self.append_features(klass)
      super

      klass.install_have_child_element("item", IMAGE_URI, "?",
                                       "#{IMAGE_PREFIX}_item")
      klass.install_must_call_validator(IMAGE_PREFIX, IMAGE_URI)
    end

    class ImageItem < Element
      include RSS10
      include DublinCoreModel

      @tag_name = "item"

      class << self
        def required_prefix
          IMAGE_PREFIX
        end

        def required_uri
          IMAGE_URI
        end
      end

      install_must_call_validator(IMAGE_PREFIX, IMAGE_URI)

      [
        ["about", ::RSS::RDF::URI, true],
        ["resource", ::RSS::RDF::URI, false],
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{::RSS::RDF::PREFIX}:#{name}")
      end

      %w(width height).each do |tag|
        full_name = "#{IMAGE_PREFIX}_#{tag}"
        disp_name = "#{IMAGE_PREFIX}:#{tag}"
        install_text_element(tag, IMAGE_URI, "?",
                             full_name, :integer, disp_name)
        BaseListener.install_get_text_element(IMAGE_URI, tag, full_name)
      end

      alias width= image_width=
      alias width image_width
      alias height= image_height=
      alias height image_height

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
          self.resource = args[1]
        end
      end

      def full_name
        tag_name_with_prefix(IMAGE_PREFIX)
      end

      private
      def maker_target(target)
        target.image_item
      end

      def setup_maker_attributes(item)
        item.about = self.about
        item.resource = self.resource
      end
    end
  end

  module ImageFaviconModel
    include ImageModelUtils
    extend BaseModel

    def self.append_features(klass)
      super

      unless klass.class == Module
        klass.install_have_child_element("favicon", IMAGE_URI, "?",
                                         "#{IMAGE_PREFIX}_favicon")
        klass.install_must_call_validator(IMAGE_PREFIX, IMAGE_URI)
      end
    end

    class ImageFavicon < Element
      include RSS10
      include DublinCoreModel

      @tag_name = "favicon"

      class << self
        def required_prefix
          IMAGE_PREFIX
        end

        def required_uri
          IMAGE_URI
        end
      end

      [
        ["about", ::RSS::RDF::URI, true, ::RSS::RDF::PREFIX],
        ["size", IMAGE_URI, true, IMAGE_PREFIX],
      ].each do |name, uri, required, prefix|
        install_get_attribute(name, uri, required, nil, nil,
                              "#{prefix}:#{name}")
      end

      AVAILABLE_SIZES = %w(small medium large)
      alias_method :set_size, :size=
      private :set_size
      def size=(new_value)
        if @do_validate and !new_value.nil?
          new_value = new_value.strip
          unless AVAILABLE_SIZES.include?(new_value)
            attr_name = "#{IMAGE_PREFIX}:size"
            raise NotAvailableValueError.new(full_name, new_value, attr_name)
          end
        end
        set_size(new_value)
      end

      alias image_size= size=
      alias image_size size

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
          self.size = args[1]
        end
      end

      def full_name
        tag_name_with_prefix(IMAGE_PREFIX)
      end

      private
      def maker_target(target)
        target.image_favicon
      end

      def setup_maker_attributes(favicon)
        favicon.about = self.about
        favicon.size = self.size
      end
    end

  end

  class RDF
    class Channel; include ImageFaviconModel; end
    class Item; include ImageItemModel; end
  end

end
PKFH[8ٞ��)�)share/ruby/rss/itunes.rbnu�[���# frozen_string_literal: false
require 'rss/2.0'

module RSS
  # The prefix for the iTunes XML namespace.
  ITUNES_PREFIX = 'itunes'
  # The URI of the iTunes specification.
  ITUNES_URI = 'http://www.itunes.com/dtds/podcast-1.0.dtd'

  Rss.install_ns(ITUNES_PREFIX, ITUNES_URI)

  module ITunesModelUtils
    include Utils

    def def_class_accessor(klass, name, type, *args)
        normalized_name = name.gsub(/-/, "_")
      full_name = "#{ITUNES_PREFIX}_#{normalized_name}"
      klass_name = "ITunes#{Utils.to_class_name(normalized_name)}"

      case type
      when :element, :attribute
        klass::ELEMENTS << full_name
        def_element_class_accessor(klass, name, full_name, klass_name, *args)
      when :elements
        klass::ELEMENTS << full_name
        def_elements_class_accessor(klass, name, full_name, klass_name, *args)
      else
        klass.install_must_call_validator(ITUNES_PREFIX, ITUNES_URI)
        klass.install_text_element(normalized_name, ITUNES_URI, "?",
                                   full_name, type, name)
      end
    end

    def def_element_class_accessor(klass, name, full_name, klass_name,
                                   recommended_attribute_name=nil)
      klass.install_have_child_element(name, ITUNES_PREFIX, "?", full_name)
    end

    def def_elements_class_accessor(klass, name, full_name, klass_name,
                                    plural_name, recommended_attribute_name=nil)
      full_plural_name = "#{ITUNES_PREFIX}_#{plural_name}"
      klass.install_have_children_element(name, ITUNES_PREFIX, "*",
                                          full_name, full_plural_name)
    end
  end

  module ITunesBaseModel
    extend ITunesModelUtils

    ELEMENTS = []

    ELEMENT_INFOS = [["author"],
                     ["block", :yes_other],
                     ["explicit", :explicit_clean_other],
                     ["keywords", :csv],
                     ["subtitle"],
                     ["summary"]]
  end

  module ITunesChannelModel
    extend BaseModel
    extend ITunesModelUtils
    include ITunesBaseModel

    ELEMENTS = []

    class << self
      def append_features(klass)
        super

        return if klass.instance_of?(Module)
        ELEMENT_INFOS.each do |name, type, *additional_infos|
          def_class_accessor(klass, name, type, *additional_infos)
        end
      end
    end

    ELEMENT_INFOS = [
                     ["category", :elements, "categories", "text"],
                     ["image", :attribute, "href"],
                     ["owner", :element],
                     ["new-feed-url"],
                    ] + ITunesBaseModel::ELEMENT_INFOS

    class ITunesCategory < Element
      include RSS09

      @tag_name = "category"

      class << self
        def required_prefix
          ITUNES_PREFIX
        end

        def required_uri
          ITUNES_URI
        end
      end

      [
        ["text", "", true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required)
      end

      ITunesCategory = self
      install_have_children_element("category", ITUNES_URI, "*",
                                    "#{ITUNES_PREFIX}_category",
                                    "#{ITUNES_PREFIX}_categories")

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.text = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(ITUNES_PREFIX)
      end

      private
      def maker_target(categories)
        if text or !itunes_categories.empty?
          categories.new_category
        else
          nil
        end
      end

      def setup_maker_attributes(category)
        category.text = text if text
      end

      def setup_maker_elements(category)
        super(category)
        itunes_categories.each do |sub_category|
          sub_category.setup_maker(category)
        end
      end
    end

    class ITunesImage < Element
      include RSS09

      @tag_name = "image"

      class << self
        def required_prefix
          ITUNES_PREFIX
        end

        def required_uri
          ITUNES_URI
        end
      end

      [
        ["href", "", true]
      ].each do |name, uri, required|
        install_get_attribute(name, uri, required)
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.href = args[0]
        end
      end

      def full_name
        tag_name_with_prefix(ITUNES_PREFIX)
      end

      private
      def maker_target(target)
        if href
          target.itunes_image {|image| image}
        else
          nil
        end
      end

      def setup_maker_attributes(image)
        image.href = href
      end
    end

    class ITunesOwner < Element
      include RSS09

      @tag_name = "owner"

      class << self
        def required_prefix
          ITUNES_PREFIX
        end

        def required_uri
          ITUNES_URI
        end
      end

      install_must_call_validator(ITUNES_PREFIX, ITUNES_URI)
      [
        ["name"],
        ["email"],
      ].each do |name,|
        ITunesBaseModel::ELEMENT_INFOS << name
        install_text_element(name, ITUNES_URI, nil, "#{ITUNES_PREFIX}_#{name}")
      end

      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.itunes_name = args[0]
          self.itunes_email = args[1]
        end
      end

      def full_name
        tag_name_with_prefix(ITUNES_PREFIX)
      end

      private
      def maker_target(target)
        target.itunes_owner
      end

      def setup_maker_element(owner)
        super(owner)
        owner.itunes_name = itunes_name
        owner.itunes_email = itunes_email
      end
    end
  end

  module ITunesItemModel
    extend BaseModel
    extend ITunesModelUtils
    include ITunesBaseModel

    class << self
      def append_features(klass)
        super

        return if klass.instance_of?(Module)
        ELEMENT_INFOS.each do |name, type|
          def_class_accessor(klass, name, type)
        end
      end
    end

    ELEMENT_INFOS = ITunesBaseModel::ELEMENT_INFOS +
      [["duration", :element, "content"]]

    class ITunesDuration < Element
      include RSS09

      @tag_name = "duration"

      class << self
        def required_prefix
          ITUNES_PREFIX
        end

        def required_uri
          ITUNES_URI
        end

        def parse(duration, do_validate=true)
          if do_validate and /\A(?:
                                  \d?\d:[0-5]\d:[0-5]\d|
                                  [0-5]?\d:[0-5]\d|
                                  \d+
                                )\z/x !~ duration
            raise ArgumentError,
                    "must be one of HH:MM:SS, H:MM:SS, MM:SS, M:SS, S+: " +
                    duration.inspect
          end

          if duration.include?(':')
            components = duration.split(':')
            components[3..-1] = nil if components.size > 3

            components.unshift("00") until components.size == 3
            components.collect do |component|
              component.to_i
            end
          else
            seconds_to_components(duration.to_i)
          end
        end

        def construct(hours, minutes, seconds)
          components = [minutes, seconds]
          if components.include?(nil)
            nil
          else
            components.unshift(hours) if hours and hours > 0
            components.collect do |component|
              "%02d" % component
            end.join(':')
          end
        end

        private
        def seconds_to_components(total_seconds)
          hours = total_seconds / (60 * 60)
          minutes = (total_seconds / 60) % 60
          seconds = total_seconds % 60
          [hours, minutes, seconds]
        end
      end

      content_setup
      alias_method(:value, :content)
      remove_method(:content=)

      attr_reader :hour, :minute, :second
      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          args = args[0] if args.size == 1 and args[0].is_a?(Array)
          if args.size == 1
            self.content = args[0]
          elsif args.size > 3
            raise ArgumentError,
                    "must be (do_validate, params), (content), " +
                    "(minute, second), ([minute, second]), "  +
                    "(hour, minute, second) or ([hour, minute, second]): " +
                    args.inspect
          else
            @second, @minute, @hour = args.reverse
            update_content
          end
        end
      end

      def content=(value)
        if value.nil?
          @content = nil
        elsif value.is_a?(self.class)
          self.content = value.content
        else
          begin
            @hour, @minute, @second = self.class.parse(value, @do_validate)
          rescue ArgumentError
            raise NotAvailableValueError.new(tag_name, value)
          end
          @content = value
        end
      end
      alias_method(:value=, :content=)

      def hour=(hour)
        @hour = @do_validate ? Integer(hour) : hour.to_i
        update_content
        hour
      end

      def minute=(minute)
        @minute = @do_validate ? Integer(minute) : minute.to_i
        update_content
        minute
      end

      def second=(second)
        @second = @do_validate ? Integer(second) : second.to_i
        update_content
        second
      end

      def full_name
        tag_name_with_prefix(ITUNES_PREFIX)
      end

      private
      def update_content
        @content = self.class.construct(hour, minute, second)
      end

      def maker_target(target)
        if @content
          target.itunes_duration {|duration| duration}
        else
          nil
        end
      end

      def setup_maker_element(duration)
        super(duration)
        duration.content = @content
      end
    end
  end

  class Rss
    class Channel
      include ITunesChannelModel
      class Item; include ITunesItemModel; end
    end
  end

  element_infos =
    ITunesChannelModel::ELEMENT_INFOS + ITunesItemModel::ELEMENT_INFOS
  element_infos.each do |name, type|
    case type
    when :element, :elements, :attribute
      class_name = Utils.to_class_name(name)
      BaseListener.install_class_name(ITUNES_URI, name, "ITunes#{class_name}")
    else
      accessor_base = "#{ITUNES_PREFIX}_#{name.gsub(/-/, '_')}"
      BaseListener.install_get_text_element(ITUNES_URI, name, accessor_base)
    end
  end
end
PKFH[k�Wi��share/ruby/rss/content/1.0.rbnu�[���# frozen_string_literal: false
require 'rss/1.0'

module RSS
  RDF.install_ns(CONTENT_PREFIX, CONTENT_URI)

  class RDF
    class Item; include ContentModel; end
  end
end
PKFH[s�}d��share/ruby/rss/content/2.0.rbnu�[���# frozen_string_literal: false
require "rss/2.0"

module RSS
  Rss.install_ns(CONTENT_PREFIX, CONTENT_URI)

  class Rss
    class Channel
      class Item; include ContentModel; end
    end
  end
end
PKFH[��h�AAshare/ruby/rss/dublincore.rbnu�[���# frozen_string_literal: false
require_relative "rss"

module RSS
  # The prefix for the Dublin Core XML namespace.
  DC_PREFIX = 'dc'
  # The URI of the Dublin Core specification.
  DC_URI = "http://purl.org/dc/elements/1.1/"

  module BaseDublinCoreModel
    def append_features(klass)
      super

      return if klass.instance_of?(Module)
      DublinCoreModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
        plural = plural_name || "#{name}s"
        full_name = "#{DC_PREFIX}_#{name}"
        full_plural_name = "#{DC_PREFIX}_#{plural}"
        klass_name = "DublinCore#{Utils.to_class_name(name)}"
        klass.install_must_call_validator(DC_PREFIX, DC_URI)
        klass.install_have_children_element(name, DC_URI, "*",
                                            full_name, full_plural_name)
        klass.module_eval(<<-EOC, *get_file_and_line_from_caller(0))
          remove_method :#{full_name}
          remove_method :#{full_name}=
          remove_method :set_#{full_name}

          def #{full_name}
            @#{full_name}.first and @#{full_name}.first.value
          end

          def #{full_name}=(new_value)
            @#{full_name}[0] = Utils.new_with_value_if_need(#{klass_name}, new_value)
          end
          alias set_#{full_name} #{full_name}=
        EOC
      end
      klass.module_eval(<<-EOC, *get_file_and_line_from_caller(0))
        if method_defined?(:date)
          alias date_without_#{DC_PREFIX}_date= date=

          def date=(value)
            self.date_without_#{DC_PREFIX}_date = value
            self.#{DC_PREFIX}_date = value
          end
        else
          alias date #{DC_PREFIX}_date
          alias date= #{DC_PREFIX}_date=
        end

        # For backward compatibility
        alias #{DC_PREFIX}_rightses #{DC_PREFIX}_rights_list
      EOC
    end
  end

  module DublinCoreModel

    extend BaseModel
    extend BaseDublinCoreModel

    TEXT_ELEMENTS = {
      "title" => nil,
      "description" => nil,
      "creator" => nil,
      "subject" => nil,
      "publisher" => nil,
      "contributor" => nil,
      "type" => nil,
      "format" => nil,
      "identifier" => nil,
      "source" => nil,
      "language" => nil,
      "relation" => nil,
      "coverage" => nil,
      "rights" => "rights_list"
    }

    DATE_ELEMENTS = {
      "date" => "w3cdtf",
    }

    ELEMENT_NAME_INFOS = DublinCoreModel::TEXT_ELEMENTS.to_a
    DublinCoreModel::DATE_ELEMENTS.each do |name, |
      ELEMENT_NAME_INFOS << [name, nil]
    end

    ELEMENTS = TEXT_ELEMENTS.keys + DATE_ELEMENTS.keys

    ELEMENTS.each do |name, plural_name|
      module_eval(<<-EOC, *get_file_and_line_from_caller(0))
        class DublinCore#{Utils.to_class_name(name)} < Element
          include RSS10

          content_setup

          class << self
            def required_prefix
              DC_PREFIX
            end

            def required_uri
              DC_URI
            end
          end

          @tag_name = #{name.dump}

          alias_method(:value, :content)
          alias_method(:value=, :content=)

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.content = args[0]
            end
          end

          def full_name
            tag_name_with_prefix(DC_PREFIX)
          end

          def maker_target(target)
            target.new_#{name}
          end

          def setup_maker_attributes(#{name})
            #{name}.content = content
          end
        end
      EOC
    end

    DATE_ELEMENTS.each do |name, type|
      tag_name = "#{DC_PREFIX}:#{name}"
      module_eval(<<-EOC, *get_file_and_line_from_caller(0))
        class DublinCore#{Utils.to_class_name(name)} < Element
          remove_method(:content=)
          remove_method(:value=)

          date_writer("content", #{type.dump}, #{tag_name.dump})

          alias_method(:value=, :content=)
        end
      EOC
    end
  end

  # For backward compatibility
  DublincoreModel = DublinCoreModel

  DublinCoreModel::ELEMENTS.each do |name|
    class_name = Utils.to_class_name(name)
    BaseListener.install_class_name(DC_URI, name, "DublinCore#{class_name}")
  end

  DublinCoreModel::ELEMENTS.collect! {|name| "#{DC_PREFIX}_#{name}"}
end

require 'rss/dublincore/1.0'
require 'rss/dublincore/2.0'
require_relative 'dublincore/atom'
PKFH[�L�share/ruby/rss/content.rbnu�[���# frozen_string_literal: false
require_relative "rss"

module RSS
  # The prefix for the Content XML namespace.
  CONTENT_PREFIX = 'content'
  # The URI of the Content specification.
  CONTENT_URI = "http://purl.org/rss/1.0/modules/content/"

  module ContentModel
    extend BaseModel

    ELEMENTS = ["#{CONTENT_PREFIX}_encoded"]

    def self.append_features(klass)
      super

      klass.install_must_call_validator(CONTENT_PREFIX, CONTENT_URI)
      ELEMENTS.each do |full_name|
        name = full_name[(CONTENT_PREFIX.size + 1)..-1]
        klass.install_text_element(name, CONTENT_URI, "?", full_name)
      end
    end
  end

  prefix_size = CONTENT_PREFIX.size + 1
  ContentModel::ELEMENTS.each do |full_name|
    name = full_name[prefix_size..-1]
    BaseListener.install_get_text_element(CONTENT_URI, name, full_name)
  end
end

require 'rss/content/1.0'
require 'rss/content/2.0'
PKFH[]���s�sshare/ruby/rss/atom.rbnu�[���# frozen_string_literal: false
require_relative 'parser'

module RSS
  ##
  # Atom is an XML-based document format that is used to describe 'feeds' of related information.
  # A typical use is in a news feed where the information is periodically updated and which users
  # can subscribe to.  The Atom format is described in http://tools.ietf.org/html/rfc4287
  #
  # The Atom module provides support in reading and creating feeds.
  #
  # See the RSS module for examples consuming and creating feeds.
  module Atom

    ##
    # The Atom URI W3C Namespace

    URI = "http://www.w3.org/2005/Atom"

    ##
    # The XHTML URI W3C Namespace

    XHTML_URI = "http://www.w3.org/1999/xhtml"

    module CommonModel
      NSPOOL = {}
      ELEMENTS = []

      def self.append_features(klass)
        super
        klass.install_must_call_validator("atom", URI)
        [
         ["lang", :xml],
         ["base", :xml],
        ].each do |name, uri, required|
          klass.install_get_attribute(name, uri, required, [nil, :inherit])
        end
        klass.class_eval do
          class << self
            # Returns the Atom URI W3C Namespace
            def required_uri
              URI
            end

            # Returns true
            def need_parent?
              true
            end
          end
        end
      end
    end

    module ContentModel
      module ClassMethods
        def content_type
          @content_type ||= nil
        end
      end

      class << self
        def append_features(klass)
          super
          klass.extend(ClassMethods)
          klass.content_setup(klass.content_type, klass.tag_name)
        end
      end

      def maker_target(target)
        target
      end

      private
      def setup_maker_element_writer
        "#{self.class.name.split(/::/).last.downcase}="
      end

      def setup_maker_element(target)
        target.__send__(setup_maker_element_writer, content)
        super
      end
    end

    module URIContentModel
      class  << self
        def append_features(klass)
          super
          klass.class_eval do
            @content_type = [nil, :uri]
            include(ContentModel)
          end
        end
      end
    end

    # The TextConstruct module is used to define a Text construct Atom element,
    # which is used to store small quantities of human-readable text.
    #
    # The TextConstruct has a type attribute, e.g. text, html, xhtml
    #
    # Reference: https://validator.w3.org/feed/docs/rfc4287.html#text.constructs
    module TextConstruct
      def self.append_features(klass)
        super
        klass.class_eval do
          [
           ["type", ""],
          ].each do |name, uri, required|
            install_get_attribute(name, uri, required, :text_type)
          end

          content_setup
          add_need_initialize_variable("xhtml")

          class << self
            def xml_getter
              "xhtml"
            end

            def xml_setter
              "xhtml="
            end
          end
        end
      end

      attr_writer :xhtml

      # Returns or builds the XHTML content.
      def xhtml
        return @xhtml if @xhtml.nil?
        if @xhtml.is_a?(XML::Element) and
            [@xhtml.name, @xhtml.uri] == ["div", XHTML_URI]
          return @xhtml
        end

        children = @xhtml
        children = [children] unless children.is_a?(Array)
        XML::Element.new("div", nil, XHTML_URI,
                         {"xmlns" => XHTML_URI}, children)
      end

      # Returns true if type is "xhtml".
      def have_xml_content?
        @type == "xhtml"
      end

      # Raises a MissingTagError or NotExpectedTagError
      # if the element is not properly formatted.
      def atom_validate(ignore_unknown_element, tags, uri)
        if have_xml_content?
          if @xhtml.nil?
            raise MissingTagError.new("div", tag_name)
          end
          unless [@xhtml.name, @xhtml.uri] == ["div", XHTML_URI]
            raise NotExpectedTagError.new(@xhtml.name, @xhtml.uri, tag_name)
          end
        end
      end

      private
      def maker_target(target)
        target.__send__(self.class.name.split(/::/).last.downcase) {|x| x}
      end

      def setup_maker_attributes(target)
        target.type = type
        target.content = content
        target.xml_content = @xhtml
      end
    end

    # The PersonConstruct module is used to define a person Atom element that can be
    # used to describe a person, corporation or similar entity.
    #
    # The PersonConstruct has a Name, Uri and Email child elements.
    #
    # Reference: https://validator.w3.org/feed/docs/rfc4287.html#atomPersonConstruct
    module PersonConstruct

      # Adds attributes for name, uri, and email to the +klass+
      def self.append_features(klass)
        super
        klass.class_eval do
          [
           ["name", nil],
           ["uri", "?"],
           ["email", "?"],
          ].each do |tag, occurs|
            install_have_attribute_element(tag, URI, occurs, nil, :content)
          end
        end
      end

      def maker_target(target)
        target.__send__("new_#{self.class.name.split(/::/).last.downcase}")
      end

      # The name of the person or entity.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.name
      class Name < RSS::Element
        include CommonModel
        include ContentModel
      end

      # The URI of the person or entity.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.uri
      class Uri < RSS::Element
        include CommonModel
        include URIContentModel
      end

      # The email of the person or entity.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.email
      class Email < RSS::Element
        include CommonModel
        include ContentModel
      end
    end

    # Element used to describe an Atom date and time in the ISO 8601 format
    #
    # Examples:
    # * 2013-03-04T15:30:02Z
    # * 2013-03-04T10:30:02-05:00
    module DateConstruct
      def self.append_features(klass)
        super
        klass.class_eval do
          @content_type = :w3cdtf
          include(ContentModel)
        end
      end

      # Raises NotAvailableValueError if element content is nil
      def atom_validate(ignore_unknown_element, tags, uri)
        raise NotAvailableValueError.new(tag_name, "") if content.nil?
      end
    end

    module DuplicateLinkChecker
      # Checks if there are duplicate links with the same type and hreflang attributes
      # that have an alternate (or empty) rel attribute
      #
      # Raises a TooMuchTagError if there are duplicates found
      def validate_duplicate_links(links)
        link_infos = {}
        links.each do |link|
          rel = link.rel || "alternate"
          next unless rel == "alternate"
          key = [link.hreflang, link.type]
          if link_infos.has_key?(key)
            raise TooMuchTagError.new("link", tag_name)
          end
          link_infos[key] = true
        end
      end
    end

    # Defines the top-level element of an Atom Feed Document.
    # It consists of a number of children Entry elements,
    # and has the following attributes:
    #
    # * author
    # * categories
    # * category
    # * content
    # * contributor
    # * entries (aliased as items)
    # * entry
    # * generator
    # * icon
    # * id
    # * link
    # * logo
    # * rights
    # * subtitle
    # * title
    # * updated
    #
    # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.feed
    class Feed < RSS::Element
      include RootElementMixin
      include CommonModel
      include DuplicateLinkChecker

      install_ns('', URI)

      [
       ["author", "*", :children],
       ["category", "*", :children, "categories"],
       ["contributor", "*", :children],
       ["generator", "?"],
       ["icon", "?", nil, :content],
       ["id", nil, nil, :content],
       ["link", "*", :children],
       ["logo", "?"],
       ["rights", "?"],
       ["subtitle", "?", nil, :content],
       ["title", nil, nil, :content],
       ["updated", nil, nil, :content],
       ["entry", "*", :children, "entries"],
      ].each do |tag, occurs, type, *args|
        type ||= :child
        __send__("install_have_#{type}_element",
                 tag, URI, occurs, tag, *args)
      end

      # Creates a new Atom feed
      def initialize(version=nil, encoding=nil, standalone=nil)
        super("1.0", version, encoding, standalone)
        @feed_type = "atom"
        @feed_subtype = "feed"
      end

      alias_method :items, :entries

      # Returns true if there are any authors for the feed or any of the Entry
      # child elements have an author
      def have_author?
        authors.any? {|author| !author.to_s.empty?} or
          entries.any? {|entry| entry.have_author?(false)}
      end

      private
      def atom_validate(ignore_unknown_element, tags, uri)
        unless have_author?
          raise MissingTagError.new("author", tag_name)
        end
        validate_duplicate_links(links)
      end

      def have_required_elements?
        super and have_author?
      end

      def maker_target(maker)
        maker.channel
      end

      def setup_maker_element(channel)
        prev_dc_dates = channel.dc_dates.to_a.dup
        super
        channel.about = id.content if id
        channel.dc_dates.replace(prev_dc_dates)
      end

      def setup_maker_elements(channel)
        super
        items = channel.maker.items
        entries.each do |entry|
          entry.setup_maker(items)
        end
      end

      # PersonConstruct that contains information regarding the author
      # of a Feed or Entry.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.author
      class Author < RSS::Element
        include CommonModel
        include PersonConstruct
      end

      # Contains information about a category associated with a Feed or Entry.
      # It has the following attributes:
      #
      # * term
      # * scheme
      # * label
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.category
      class Category < RSS::Element
        include CommonModel

        [
         ["term", "", true],
         ["scheme", "", false, [nil, :uri]],
         ["label", ""],
        ].each do |name, uri, required, type|
          install_get_attribute(name, uri, required, type)
        end

        private
        def maker_target(target)
          target.new_category
        end
      end

      # PersonConstruct that contains information regarding the
      # contributors of a Feed or Entry.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.contributor
      class Contributor < RSS::Element
        include CommonModel
        include PersonConstruct
      end

      # Contains information on the agent used to generate the feed.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.generator
      class Generator < RSS::Element
        include CommonModel
        include ContentModel

        [
         ["uri", "", false, [nil, :uri]],
         ["version", ""],
        ].each do |name, uri, required, type|
          install_get_attribute(name, uri, required, type)
        end

        private
        def setup_maker_attributes(target)
          target.generator do |generator|
            generator.uri = uri if uri
            generator.version = version if version
          end
        end
      end

      # Defines an image that provides a visual identification for a eed.
      # The image should have an aspect ratio of 1:1.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.icon
      class Icon < RSS::Element
        include CommonModel
        include URIContentModel
      end

      # Defines the Universally Unique Identifier (UUID) for a Feed or Entry.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.id
      class Id < RSS::Element
        include CommonModel
        include URIContentModel
      end

      # Defines a reference to a Web resource. It has the following
      # attributes:
      #
      # * href
      # * rel
      # * type
      # * hreflang
      # * title
      # * length
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.link
      class Link < RSS::Element
        include CommonModel

        [
         ["href", "", true, [nil, :uri]],
         ["rel", ""],
         ["type", ""],
         ["hreflang", ""],
         ["title", ""],
         ["length", ""],
        ].each do |name, uri, required, type|
          install_get_attribute(name, uri, required, type)
        end

        private
        def maker_target(target)
          target.new_link
        end
      end

      # Defines an image that provides a visual identification for the Feed.
      # The image should have an aspect ratio of 2:1 (horizontal:vertical).
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.logo
      class Logo < RSS::Element
        include CommonModel
        include URIContentModel

        def maker_target(target)
          target.maker.image
        end

        private
        def setup_maker_element_writer
          "url="
        end
      end

      # TextConstruct that contains copyright information regarding
      # the content in an Entry or Feed. It should not be used to
      # convey machine readable licensing information.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.rights
      class Rights < RSS::Element
        include CommonModel
        include TextConstruct
      end

      # TextConstruct that conveys a description or subtitle for a Feed.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.subtitle
      class Subtitle < RSS::Element
        include CommonModel
        include TextConstruct
      end

      # TextConstruct that conveys a description or title for a Feed or Entry.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.title
      class Title < RSS::Element
        include CommonModel
        include TextConstruct
      end

      # DateConstruct indicating the most recent time when a Feed or
      # Entry was modified in a way the publisher considers
      # significant.
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.updated
      class Updated < RSS::Element
        include CommonModel
        include DateConstruct
      end

      # Defines a child Atom Entry element of an Atom Feed element.
      # It has the following attributes:
      #
      # * author
      # * category
      # * categories
      # * content
      # * contributor
      # * id
      # * link
      # * published
      # * rights
      # * source
      # * summary
      # * title
      # * updated
      #
      # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.entry
      class Entry < RSS::Element
        include CommonModel
        include DuplicateLinkChecker

        [
         ["author", "*", :children],
         ["category", "*", :children, "categories"],
         ["content", "?", :child],
         ["contributor", "*", :children],
         ["id", nil, nil, :content],
         ["link", "*", :children],
         ["published", "?", :child, :content],
         ["rights", "?", :child],
         ["source", "?"],
         ["summary", "?", :child],
         ["title", nil],
         ["updated", nil, :child, :content],
        ].each do |tag, occurs, type, *args|
          type ||= :attribute
          __send__("install_have_#{type}_element",
                   tag, URI, occurs, tag, *args)
        end

        # Returns whether any of the following are true:
        #
        # * There are any authors in the feed
        # * If the parent element has an author and the +check_parent+
        #   parameter was given.
        # * There is a source element that has an author
        def have_author?(check_parent=true)
          authors.any? {|author| !author.to_s.empty?} or
            (check_parent and @parent and @parent.have_author?) or
            (source and source.have_author?)
        end

        private
        def atom_validate(ignore_unknown_element, tags, uri)
          unless have_author?
            raise MissingTagError.new("author", tag_name)
          end
          validate_duplicate_links(links)
        end

        def have_required_elements?
          super and have_author?
        end

        def maker_target(items)
          if items.respond_to?("items")
            # For backward compatibility
            items = items.items
          end
          items.new_item
        end

        # Feed::Author
        Author = Feed::Author
        # Feed::Category
        Category = Feed::Category

        # Contains or links to the content of the Entry.
        # It has the following attributes:
        #
        # * type
        # * src
        #
        # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.content
        class Content < RSS::Element
          include CommonModel

          class << self
            def xml_setter
              "xml="
            end

            def xml_getter
              "xml"
            end
          end

          [
           ["type", ""],
           ["src", "", false, [nil, :uri]],
          ].each do |name, uri, required, type|
            install_get_attribute(name, uri, required, type)
          end

          content_setup
          add_need_initialize_variable("xml")

          # Returns the element content in XML.
          attr_writer :xml

          # Returns true if the element has inline XML content.
          def have_xml_content?
            inline_xhtml? or inline_other_xml?
          end

          # Returns or builds the element content in XML.
          def xml
            return @xml unless inline_xhtml?
            return @xml if @xml.nil?
            if @xml.is_a?(XML::Element) and
                [@xml.name, @xml.uri] == ["div", XHTML_URI]
              return @xml
            end

            children = @xml
            children = [children] unless children.is_a?(Array)
            XML::Element.new("div", nil, XHTML_URI,
                             {"xmlns" => XHTML_URI}, children)
          end

          # Returns the element content in XHTML.
          def xhtml
            if inline_xhtml?
              xml
            else
              nil
            end
          end

          # Raises a MissingAttributeError, NotAvailableValueError,
          # MissingTagError or NotExpectedTagError if the element is
          # not properly formatted.
          def atom_validate(ignore_unknown_element, tags, uri)
            if out_of_line?
              raise MissingAttributeError.new(tag_name, "type") if @type.nil?
              unless (content.nil? or content.empty?)
                raise NotAvailableValueError.new(tag_name, content)
              end
            elsif inline_xhtml?
              if @xml.nil?
                raise MissingTagError.new("div", tag_name)
              end
              unless @xml.name == "div" and @xml.uri == XHTML_URI
                raise NotExpectedTagError.new(@xml.name, @xml.uri, tag_name)
              end
            end
          end

          # Returns true if the element contains inline content
          # that has a text or HTML media type, or no media type at all.
          def inline_text?
            !out_of_line? and [nil, "text", "html"].include?(@type)
          end

          # Returns true if the element contains inline content that
          # has a HTML media type.
          def inline_html?
            return false if out_of_line?
            @type == "html" or mime_split == ["text", "html"]
          end

          # Returns true if the element contains inline content that
          # has a XHTML media type.
          def inline_xhtml?
            !out_of_line? and @type == "xhtml"
          end

          # Returns true if the element contains inline content that
          # has a MIME media type.
          def inline_other?
            return false if out_of_line?
            media_type, subtype = mime_split
            return false if media_type.nil? or subtype.nil?
            true
          end

          # Returns true if the element contains inline content that
          # has a text media type.
          def inline_other_text?
            return false unless inline_other?
            return false if inline_other_xml?

            media_type, = mime_split
            return true if "text" == media_type.downcase
            false
          end

          # Returns true if the element contains inline content that
          # has a XML media type.
          def inline_other_xml?
            return false unless inline_other?

            media_type, subtype = mime_split
            normalized_mime_type = "#{media_type}/#{subtype}".downcase
            if /(?:\+xml|^xml)$/ =~ subtype or
                %w(text/xml-external-parsed-entity
                   application/xml-external-parsed-entity
                   application/xml-dtd).find {|x| x == normalized_mime_type}
              return true
            end
            false
          end

          # Returns true if the element contains inline content
          # encoded in base64.
          def inline_other_base64?
            inline_other? and !inline_other_text? and !inline_other_xml?
          end

          # Returns true if the element contains linked content.
          def out_of_line?
            not @src.nil?
          end

          # Splits the type attribute into an array, e.g. ["text", "xml"]
          def mime_split
            media_type = subtype = nil
            if /\A\s*([a-z]+)\/([a-z\+]+)\s*(?:;.*)?\z/i =~ @type.to_s
              media_type = $1.downcase
              subtype = $2.downcase
            end
            [media_type, subtype]
          end

          # Returns true if the content needs to be encoded in base64.
          def need_base64_encode?
            inline_other_base64?
          end

          private
          def empty_content?
            out_of_line? or super
          end
        end

        # Feed::Contributor
        Contributor = Feed::Contributor
        # Feed::Id
        Id = Feed::Id
        # Feed::Link
        Link = Feed::Link

        # DateConstruct that usually indicates the time of the initial
        # creation of an Entry.
        #
        # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.published
        class Published < RSS::Element
          include CommonModel
          include DateConstruct
        end

        # Feed::Rights
        Rights = Feed::Rights

        # Defines a Atom Source element. It has the following attributes:
        #
        # * author
        # * category
        # * categories
        # * content
        # * contributor
        # * generator
        # * icon
        # * id
        # * link
        # * logo
        # * rights
        # * subtitle
        # * title
        # * updated
        #
        # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.source
        class Source < RSS::Element
          include CommonModel

          [
           ["author", "*", :children],
           ["category", "*", :children, "categories"],
           ["contributor", "*", :children],
           ["generator", "?"],
           ["icon", "?"],
           ["id", "?", nil, :content],
           ["link", "*", :children],
           ["logo", "?"],
           ["rights", "?"],
           ["subtitle", "?"],
           ["title", "?"],
           ["updated", "?", nil, :content],
          ].each do |tag, occurs, type, *args|
            type ||= :attribute
            __send__("install_have_#{type}_element",
                     tag, URI, occurs, tag, *args)
          end

          # Returns true if the Source element has an author.
          def have_author?
            !author.to_s.empty?
          end

          # Feed::Author
          Author = Feed::Author
          # Feed::Category
          Category = Feed::Category
          # Feed::Contributor
          Contributor = Feed::Contributor
          # Feed::Generator
          Generator = Feed::Generator
          # Feed::Icon
          Icon = Feed::Icon
          # Feed::Id
          Id = Feed::Id
          # Feed::Link
          Link = Feed::Link
          # Feed::Logo
          Logo = Feed::Logo
          # Feed::Rights
          Rights = Feed::Rights
          # Feed::Subtitle
          Subtitle = Feed::Subtitle
          # Feed::Title
          Title = Feed::Title
          # Feed::Updated
          Updated = Feed::Updated
        end

        # TextConstruct that describes a summary of the Entry.
        #
        # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.summary
        class Summary < RSS::Element
          include CommonModel
          include TextConstruct
        end

        # Feed::Title
        Title = Feed::Title
        # Feed::Updated
        Updated = Feed::Updated
      end
    end

    # Defines a top-level Atom Entry element,
    # used as the document element of a stand-alone Atom Entry Document.
    # It has the following attributes:
    #
    # * author
    # * category
    # * categories
    # * content
    # * contributor
    # * id
    # * link
    # * published
    # * rights
    # * source
    # * summary
    # * title
    # * updated
    #
    # Reference: https://validator.w3.org/feed/docs/rfc4287.html#element.entry]
    class Entry < RSS::Element
      include RootElementMixin
      include CommonModel
      include DuplicateLinkChecker

      [
       ["author", "*", :children],
       ["category", "*", :children, "categories"],
       ["content", "?"],
       ["contributor", "*", :children],
       ["id", nil, nil, :content],
       ["link", "*", :children],
       ["published", "?", :child, :content],
       ["rights", "?"],
       ["source", "?"],
       ["summary", "?"],
       ["title", nil],
       ["updated", nil, nil, :content],
      ].each do |tag, occurs, type, *args|
        type ||= :attribute
        __send__("install_have_#{type}_element",
                 tag, URI, occurs, tag, *args)
      end

      # Creates a new Atom Entry element.
      def initialize(version=nil, encoding=nil, standalone=nil)
        super("1.0", version, encoding, standalone)
        @feed_type = "atom"
        @feed_subtype = "entry"
      end

      # Returns the Entry in an array.
      def items
        [self]
      end

      # Sets up the +maker+ for constructing Entry elements.
      def setup_maker(maker)
        maker = maker.maker if maker.respond_to?("maker")
        super(maker)
      end

      # Returns where there are any authors present or there is a
      # source with an author.
      def have_author?
        authors.any? {|author| !author.to_s.empty?} or
          (source and source.have_author?)
      end

      private
      def atom_validate(ignore_unknown_element, tags, uri)
        unless have_author?
          raise MissingTagError.new("author", tag_name)
        end
        validate_duplicate_links(links)
      end

      def have_required_elements?
        super and have_author?
      end

      def maker_target(maker)
        maker.items.new_item
      end

      # Feed::Entry::Author
      Author = Feed::Entry::Author
      # Feed::Entry::Category
      Category = Feed::Entry::Category
      # Feed::Entry::Content
      Content = Feed::Entry::Content
      # Feed::Entry::Contributor
      Contributor = Feed::Entry::Contributor
      # Feed::Entry::Id
      Id = Feed::Entry::Id
      # Feed::Entry::Link
      Link = Feed::Entry::Link
      # Feed::Entry::Published
      Published = Feed::Entry::Published
      # Feed::Entry::Rights
      Rights = Feed::Entry::Rights
      # Feed::Entry::Source
      Source = Feed::Entry::Source
      # Feed::Entry::Summary
      Summary = Feed::Entry::Summary
      # Feed::Entry::Title
      Title = Feed::Entry::Title
      # Feed::Entry::Updated
      Updated = Feed::Entry::Updated
    end
  end

  Atom::CommonModel::ELEMENTS.each do |name|
    BaseListener.install_get_text_element(Atom::URI, name, "#{name}=")
  end

  module ListenerMixin
    private
    def initial_start_feed(tag_name, prefix, attrs, ns)
      check_ns(tag_name, prefix, ns, Atom::URI, false)

      @rss = Atom::Feed.new(@version, @encoding, @standalone)
      @rss.do_validate = @do_validate
      @rss.xml_stylesheets = @xml_stylesheets
      @rss.lang = attrs["xml:lang"]
      @rss.base = attrs["xml:base"]
      @last_element = @rss
      pr = Proc.new do |text, tags|
        @rss.validate_for_stream(tags) if @do_validate
      end
      @proc_stack.push(pr)
    end

    def initial_start_entry(tag_name, prefix, attrs, ns)
      check_ns(tag_name, prefix, ns, Atom::URI, false)

      @rss = Atom::Entry.new(@version, @encoding, @standalone)
      @rss.do_validate = @do_validate
      @rss.xml_stylesheets = @xml_stylesheets
      @rss.lang = attrs["xml:lang"]
      @rss.base = attrs["xml:base"]
      @last_element = @rss
      pr = Proc.new do |text, tags|
        @rss.validate_for_stream(tags) if @do_validate
      end
      @proc_stack.push(pr)
    end
  end
end
PKFH[083l��share/ruby/rss/syndication.rbnu�[���# frozen_string_literal: false
require "rss/1.0"

module RSS
  # The prefix for the Syndication XML namespace.
  SY_PREFIX = 'sy'
  # The URI of the Syndication specification.
  SY_URI = "http://purl.org/rss/1.0/modules/syndication/"

  RDF.install_ns(SY_PREFIX, SY_URI)

  module SyndicationModel

    extend BaseModel

    ELEMENTS = []

    def self.append_features(klass)
      super

      klass.install_must_call_validator(SY_PREFIX, SY_URI)
      klass.module_eval do
        [
          ["updatePeriod"],
          ["updateFrequency", :positive_integer]
        ].each do |name, type|
          install_text_element(name, SY_URI, "?",
                               "#{SY_PREFIX}_#{name}", type,
                               "#{SY_PREFIX}:#{name}")
        end

        %w(updateBase).each do |name|
          install_date_element(name, SY_URI, "?",
                               "#{SY_PREFIX}_#{name}", 'w3cdtf',
                               "#{SY_PREFIX}:#{name}")
        end
      end

      klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        alias_method(:_sy_updatePeriod=, :sy_updatePeriod=)
        def sy_updatePeriod=(new_value)
          new_value = new_value.strip
          validate_sy_updatePeriod(new_value) if @do_validate
          self._sy_updatePeriod = new_value
        end
      EOC
    end

    private
    SY_UPDATEPERIOD_AVAILABLE_VALUES = %w(hourly daily weekly monthly yearly)
    def validate_sy_updatePeriod(value) # :nodoc:
      unless SY_UPDATEPERIOD_AVAILABLE_VALUES.include?(value)
        raise NotAvailableValueError.new("updatePeriod", value)
      end
    end
  end

  class RDF
    class Channel; include SyndicationModel; end
  end

  prefix_size = SY_PREFIX.size + 1
  SyndicationModel::ELEMENTS.uniq!
  SyndicationModel::ELEMENTS.each do |full_name|
    name = full_name[prefix_size..-1]
    BaseListener.install_get_text_element(SY_URI, name, full_name)
  end

end
PKFH[Ot�(�(�share/ruby/rss/rss.rbnu�[���# frozen_string_literal: false
require "time"

class Time
  class << self
    unless respond_to?(:w3cdtf)
      # This method converts a W3CDTF string date/time format to Time object.
      #
      # The W3CDTF format is defined here: http://www.w3.org/TR/NOTE-datetime
      #
      #   Time.w3cdtf('2003-02-15T13:50:05-05:00')
      #   # => 2003-02-15 10:50:05 -0800
      #   Time.w3cdtf('2003-02-15T13:50:05-05:00').class
      #   # => Time
      def w3cdtf(date)
        if /\A\s*
            (-?\d+)-(\d\d)-(\d\d)
            (?:T
            (\d\d):(\d\d)(?::(\d\d))?
            (\.\d+)?
            (Z|[+-]\d\d:\d\d)?)?
            \s*\z/ix =~ date and (($5 and $8) or (!$5 and !$8))
          datetime = [$1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, $6.to_i]
          usec = 0
          usec = $7.to_f * 1000000 if $7
          zone = $8
          if zone
            off = zone_offset(zone, datetime[0])
            datetime = apply_offset(*(datetime + [off]))
            datetime << usec
            time = Time.utc(*datetime)
            force_zone!(time, zone, off)
            time
          else
            datetime << usec
            Time.local(*datetime)
          end
        else
          raise ArgumentError.new("invalid date: #{date.inspect}")
        end
      end
    end
  end

  unless method_defined?(:w3cdtf)
    # This method converts a Time object to a String. The String contains the
    # time in W3CDTF date/time format.
    #
    # The W3CDTF format is defined here: http://www.w3.org/TR/NOTE-datetime
    #
    #  Time.now.w3cdtf
    #  # => "2013-08-26T14:12:10.817124-07:00"
    def w3cdtf
      if usec.zero?
        fraction_digits = 0
      else
        fraction_digits = strftime('%6N').index(/0*\z/)
      end
      xmlschema(fraction_digits)
    end
  end
end


require "English"
require_relative "utils"
require_relative "converter"
require_relative "xml-stylesheet"

module RSS
  # The URI of the RSS 1.0 specification
  URI = "http://purl.org/rss/1.0/"

  DEBUG = false # :nodoc:

  # The basic error all other RSS errors stem from. Rescue this error if you
  # want to handle any given RSS error and you don't care about the details.
  class Error < StandardError; end

  # RSS, being an XML-based format, has namespace support. If two namespaces are
  # declared with the same name, an OverlappedPrefixError will be raised.
  class OverlappedPrefixError < Error
    attr_reader :prefix
    def initialize(prefix)
      @prefix = prefix
    end
  end

  # The InvalidRSSError error is the base class for a variety of errors
  # related to a poorly-formed RSS feed. Rescue this error if you only
  # care that a file could be invalid, but don't care how it is invalid.
  class InvalidRSSError < Error; end

  # Since RSS is based on XML, it must have opening and closing tags that
  # match. If they don't, a MissingTagError will be raised.
  class MissingTagError < InvalidRSSError
    attr_reader :tag, :parent
    def initialize(tag, parent)
      @tag, @parent = tag, parent
      super("tag <#{tag}> is missing in tag <#{parent}>")
    end
  end

  # Some tags must only exist a specific number of times in a given RSS feed.
  # If a feed has too many occurrences of one of these tags, a TooMuchTagError
  # will be raised.
  class TooMuchTagError < InvalidRSSError
    attr_reader :tag, :parent
    def initialize(tag, parent)
      @tag, @parent = tag, parent
      super("tag <#{tag}> is too much in tag <#{parent}>")
    end
  end

  # Certain attributes are required on specific tags in an RSS feed. If a feed
  # is missing one of these attributes, a MissingAttributeError is raised.
  class MissingAttributeError < InvalidRSSError
    attr_reader :tag, :attribute
    def initialize(tag, attribute)
      @tag, @attribute = tag, attribute
      super("attribute <#{attribute}> is missing in tag <#{tag}>")
    end
  end

  # RSS does not allow for free-form tag names, so if an RSS feed contains a
  # tag that we don't know about, an UnknownTagError is raised.
  class UnknownTagError < InvalidRSSError
    attr_reader :tag, :uri
    def initialize(tag, uri)
      @tag, @uri = tag, uri
      super("tag <#{tag}> is unknown in namespace specified by uri <#{uri}>")
    end
  end

  # Raised when an unexpected tag is encountered.
  class NotExpectedTagError < InvalidRSSError
    attr_reader :tag, :uri, :parent
    def initialize(tag, uri, parent)
      @tag, @uri, @parent = tag, uri, parent
      super("tag <{#{uri}}#{tag}> is not expected in tag <#{parent}>")
    end
  end
  # For backward compatibility :X
  NotExceptedTagError = NotExpectedTagError # :nodoc:

  # Attributes are in key-value form, and if there's no value provided for an
  # attribute, a NotAvailableValueError will be raised.
  class NotAvailableValueError < InvalidRSSError
    attr_reader :tag, :value, :attribute
    def initialize(tag, value, attribute=nil)
      @tag, @value, @attribute = tag, value, attribute
      message = "value <#{value}> of "
      message << "attribute <#{attribute}> of " if attribute
      message << "tag <#{tag}> is not available."
      super(message)
    end
  end

  # Raised when an unknown conversion error occurs.
  class UnknownConversionMethodError < Error
    attr_reader :to, :from
    def initialize(to, from)
      @to = to
      @from = from
      super("can't convert to #{to} from #{from}.")
    end
  end
  # for backward compatibility
  UnknownConvertMethod = UnknownConversionMethodError # :nodoc:

  # Raised when a conversion failure occurs.
  class ConversionError < Error
    attr_reader :string, :to, :from
    def initialize(string, to, from)
      @string = string
      @to = to
      @from = from
      super("can't convert #{@string} to #{to} from #{from}.")
    end
  end

  # Raised when a required variable is not set.
  class NotSetError < Error
    attr_reader :name, :variables
    def initialize(name, variables)
      @name = name
      @variables = variables
      super("required variables of #{@name} are not set: #{@variables.join(', ')}")
    end
  end

  # Raised when a RSS::Maker attempts to use an unknown maker.
  class UnsupportedMakerVersionError < Error
    attr_reader :version
    def initialize(version)
      @version = version
      super("Maker doesn't support version: #{@version}")
    end
  end

  module BaseModel
    include Utils

    def install_have_child_element(tag_name, uri, occurs, name=nil, type=nil)
      name ||= tag_name
      add_need_initialize_variable(name)
      install_model(tag_name, uri, occurs, name)

      writer_type, reader_type = type
      def_corresponded_attr_writer name, writer_type
      def_corresponded_attr_reader name, reader_type
      install_element(name) do |n, elem_name|
        <<-EOC
        if @#{n}
          "\#{@#{n}.to_s(need_convert, indent)}"
        else
          ''
        end
EOC
      end
    end
    alias_method(:install_have_attribute_element, :install_have_child_element)

    def install_have_children_element(tag_name, uri, occurs, name=nil, plural_name=nil)
      name ||= tag_name
      plural_name ||= "#{name}s"
      add_have_children_element(name, plural_name)
      add_plural_form(name, plural_name)
      install_model(tag_name, uri, occurs, plural_name, true)

      def_children_accessor(name, plural_name)
      install_element(name, "s") do |n, elem_name|
        <<-EOC
        rv = []
        @#{n}.each do |x|
          value = "\#{x.to_s(need_convert, indent)}"
          rv << value if /\\A\\s*\\z/ !~ value
        end
        rv.join("\n")
EOC
      end
    end

    def install_text_element(tag_name, uri, occurs, name=nil, type=nil,
                             disp_name=nil)
      name ||= tag_name
      disp_name ||= name
      self::ELEMENTS << name unless self::ELEMENTS.include?(name)
      add_need_initialize_variable(name)
      install_model(tag_name, uri, occurs, name)

      def_corresponded_attr_writer(name, type, disp_name)
      def_corresponded_attr_reader(name, type || :convert)
      install_element(name) do |n, elem_name|
        <<-EOC
        if respond_to?(:#{n}_content)
          content = #{n}_content
        else
          content = @#{n}
        end
        if content
          rv = "\#{indent}<#{elem_name}>"
          value = html_escape(content)
          if need_convert
            rv << convert(value)
          else
            rv << value
          end
            rv << "</#{elem_name}>"
          rv
        else
          ''
        end
EOC
      end
    end

    def install_date_element(tag_name, uri, occurs, name=nil, type=nil, disp_name=nil)
      name ||= tag_name
      type ||= :w3cdtf
      disp_name ||= name
      self::ELEMENTS << name
      add_need_initialize_variable(name)
      install_model(tag_name, uri, occurs, name)

      # accessor
      convert_attr_reader name
      date_writer(name, type, disp_name)

      install_element(name) do |n, elem_name|
        <<-EOC
        if @#{n}
          rv = "\#{indent}<#{elem_name}>"
          value = html_escape(@#{n}.#{type})
          if need_convert
            rv << convert(value)
          else
            rv << value
          end
            rv << "</#{elem_name}>"
          rv
        else
          ''
        end
EOC
      end

    end

    private
    def install_element(name, postfix="")
      elem_name = name.sub('_', ':')
      method_name = "#{name}_element#{postfix}"
      add_to_element_method(method_name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{method_name}(need_convert=true, indent='')
        #{yield(name, elem_name)}
      end
      private :#{method_name}
EOC
    end

    def inherit_convert_attr_reader(*attrs)
      attrs.each do |attr|
        module_eval(<<-EOC, *get_file_and_line_from_caller(2))
        def #{attr}_without_inherit
          convert(@#{attr})
        end

        def #{attr}
          if @#{attr}
            #{attr}_without_inherit
          elsif @parent
            @parent.#{attr}
          else
            nil
          end
        end
EOC
      end
    end

    def uri_convert_attr_reader(*attrs)
      attrs.each do |attr|
        module_eval(<<-EOC, *get_file_and_line_from_caller(2))
        def #{attr}_without_base
          convert(@#{attr})
        end

        def #{attr}
          value = #{attr}_without_base
          return nil if value.nil?
          if /\\A[a-z][a-z0-9+.\\-]*:/i =~ value
            value
          else
            "\#{base}\#{value}"
          end
        end
EOC
      end
    end

    def convert_attr_reader(*attrs)
      attrs.each do |attr|
        module_eval(<<-EOC, *get_file_and_line_from_caller(2))
        def #{attr}
          convert(@#{attr})
        end
EOC
      end
    end

    def explicit_clean_other_attr_reader(*attrs)
      attrs.each do |attr|
        module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          attr_reader(:#{attr})
          def #{attr}?
            ExplicitCleanOther.parse(@#{attr})
          end
        EOC
      end
    end

    def yes_other_attr_reader(*attrs)
      attrs.each do |attr|
        module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          attr_reader(:#{attr})
          def #{attr}?
            Utils::YesOther.parse(@#{attr})
          end
        EOC
      end
    end

    def csv_attr_reader(*attrs)
      separator = nil
      if attrs.last.is_a?(Hash)
        options = attrs.pop
        separator = options[:separator]
      end
      separator ||= ", "
      attrs.each do |attr|
        module_eval(<<-EOC, __FILE__, __LINE__ + 1)
          attr_reader(:#{attr})
          def #{attr}_content
            if @#{attr}.nil?
              @#{attr}
            else
              @#{attr}.join(#{separator.dump})
            end
          end
        EOC
      end
    end

    def date_writer(name, type, disp_name=name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if new_value.nil?
          @#{name} = new_value
        elsif new_value.kind_of?(Time)
          @#{name} = new_value.dup
        else
          if @do_validate
            begin
              @#{name} = Time.__send__('#{type}', new_value)
            rescue ArgumentError
              raise NotAvailableValueError.new('#{disp_name}', new_value)
            end
          else
            @#{name} = nil
            if /\\A\\s*\\z/ !~ new_value.to_s
              begin
                unless Date._parse(new_value, false).empty?
                  @#{name} = Time.parse(new_value)
                end
              rescue ArgumentError
              end
            end
          end
        end

        # Is it need?
        if @#{name}
          class << @#{name}
            undef_method(:to_s)
            alias_method(:to_s, :#{type})
          end
        end

      end
EOC
    end

    def integer_writer(name, disp_name=name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if new_value.nil?
          @#{name} = new_value
        else
          if @do_validate
            begin
              @#{name} = Integer(new_value)
            rescue ArgumentError
              raise NotAvailableValueError.new('#{disp_name}', new_value)
            end
          else
            @#{name} = new_value.to_i
          end
        end
      end
EOC
    end

    def positive_integer_writer(name, disp_name=name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if new_value.nil?
          @#{name} = new_value
        else
          if @do_validate
            begin
              tmp = Integer(new_value)
              raise ArgumentError if tmp <= 0
              @#{name} = tmp
            rescue ArgumentError
              raise NotAvailableValueError.new('#{disp_name}', new_value)
            end
          else
            @#{name} = new_value.to_i
          end
        end
      end
EOC
    end

    def boolean_writer(name, disp_name=name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if new_value.nil?
          @#{name} = new_value
        else
          if @do_validate and
              ![true, false, "true", "false"].include?(new_value)
            raise NotAvailableValueError.new('#{disp_name}', new_value)
          end
          if [true, false].include?(new_value)
            @#{name} = new_value
          else
            @#{name} = new_value == "true"
          end
        end
      end
EOC
    end

    def text_type_writer(name, disp_name=name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if @do_validate and
            !["text", "html", "xhtml", nil].include?(new_value)
          raise NotAvailableValueError.new('#{disp_name}', new_value)
        end
        @#{name} = new_value
      end
EOC
    end

    def content_writer(name, disp_name=name)
      klass_name = "self.class::#{Utils.to_class_name(name)}"
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{name}=(new_value)
        if new_value.is_a?(#{klass_name})
          @#{name} = new_value
        else
          @#{name} = #{klass_name}.new
          @#{name}.content = new_value
        end
      end
EOC
    end

    def explicit_clean_other_writer(name, disp_name=name)
      module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        def #{name}=(value)
          value = (value ? "yes" : "no") if [true, false].include?(value)
          @#{name} = value
        end
      EOC
    end

    def yes_other_writer(name, disp_name=name)
      module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        def #{name}=(new_value)
          if [true, false].include?(new_value)
            new_value = new_value ? "yes" : "no"
          end
          @#{name} = new_value
        end
      EOC
    end

    def csv_writer(name, disp_name=name)
      module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        def #{name}=(new_value)
          @#{name} = Utils::CSV.parse(new_value)
        end
      EOC
    end

    def csv_integer_writer(name, disp_name=name)
      module_eval(<<-EOC, __FILE__, __LINE__ + 1)
        def #{name}=(new_value)
          @#{name} = Utils::CSV.parse(new_value) {|v| Integer(v)}
        end
      EOC
    end

    def def_children_accessor(accessor_name, plural_name)
      module_eval(<<-EOC, *get_file_and_line_from_caller(2))
      def #{plural_name}
        @#{accessor_name}
      end

      def #{accessor_name}(*args)
        if args.empty?
          @#{accessor_name}.first
        else
          @#{accessor_name}[*args]
        end
      end

      def #{accessor_name}=(*args)
        receiver = self.class.name
        warn("Don't use `\#{receiver}\##{accessor_name} = XXX'/" \
             "`\#{receiver}\#set_#{accessor_name}(XXX)'. " \
             "Those APIs are not sense of Ruby. " \
             "Use `\#{receiver}\##{plural_name} << XXX' instead of them.", uplevel: 1)
        if args.size == 1
          @#{accessor_name}.push(args[0])
        else
          @#{accessor_name}.__send__("[]=", *args)
        end
      end
      alias_method(:set_#{accessor_name}, :#{accessor_name}=)
EOC
    end
  end

  module SetupMaker
    def setup_maker(maker)
      target = maker_target(maker)
      unless target.nil?
        setup_maker_attributes(target)
        setup_maker_element(target)
        setup_maker_elements(target)
      end
    end

    private
    def maker_target(maker)
      nil
    end

    def setup_maker_attributes(target)
    end

    def setup_maker_element(target)
      self.class.need_initialize_variables.each do |var|
        value = __send__(var)
        next if value.nil?
        if value.respond_to?("setup_maker") and
            !not_need_to_call_setup_maker_variables.include?(var)
          value.setup_maker(target)
        else
          setter = "#{var}="
          if target.respond_to?(setter)
            target.__send__(setter, value)
          end
        end
      end
    end

    def not_need_to_call_setup_maker_variables
      []
    end

    def setup_maker_elements(parent)
      self.class.have_children_elements.each do |name, plural_name|
        if parent.respond_to?(plural_name)
          target = parent.__send__(plural_name)
          __send__(plural_name).each do |elem|
            elem.setup_maker(target)
          end
        end
      end
    end
  end

  class Element
    extend BaseModel
    include Utils
    extend Utils::InheritedReader
    include SetupMaker

    INDENT = "  "

    MUST_CALL_VALIDATORS = {}
    MODELS = []
    GET_ATTRIBUTES = []
    HAVE_CHILDREN_ELEMENTS = []
    TO_ELEMENT_METHODS = []
    NEED_INITIALIZE_VARIABLES = []
    PLURAL_FORMS = {}

    class << self
      def must_call_validators
        inherited_hash_reader("MUST_CALL_VALIDATORS")
      end
      def models
        inherited_array_reader("MODELS")
      end
      def get_attributes
        inherited_array_reader("GET_ATTRIBUTES")
      end
      def have_children_elements
        inherited_array_reader("HAVE_CHILDREN_ELEMENTS")
      end
      def to_element_methods
        inherited_array_reader("TO_ELEMENT_METHODS")
      end
      def need_initialize_variables
        inherited_array_reader("NEED_INITIALIZE_VARIABLES")
      end
      def plural_forms
        inherited_hash_reader("PLURAL_FORMS")
      end

      def inherited_base
        ::RSS::Element
      end

      def inherited(klass)
        klass.const_set(:MUST_CALL_VALIDATORS, {})
        klass.const_set(:MODELS, [])
        klass.const_set(:GET_ATTRIBUTES, [])
        klass.const_set(:HAVE_CHILDREN_ELEMENTS, [])
        klass.const_set(:TO_ELEMENT_METHODS, [])
        klass.const_set(:NEED_INITIALIZE_VARIABLES, [])
        klass.const_set(:PLURAL_FORMS, {})

        tag_name = klass.name.split(/::/).last
        tag_name[0, 1] = tag_name[0, 1].downcase
        klass.instance_variable_set(:@tag_name, tag_name)
        klass.instance_variable_set(:@have_content, false)
      end

      def install_must_call_validator(prefix, uri)
        self::MUST_CALL_VALIDATORS[uri] = prefix
      end

      def install_model(tag, uri, occurs=nil, getter=nil, plural=false)
        getter ||= tag
        if m = self::MODELS.find {|t, u, o, g, p| t == tag and u == uri}
          m[2] = occurs
        else
          self::MODELS << [tag, uri, occurs, getter, plural]
        end
      end

      def install_get_attribute(name, uri, required=true,
                                type=nil, disp_name=nil,
                                element_name=nil)
        disp_name ||= name
        element_name ||= name
        writer_type, reader_type = type
        def_corresponded_attr_writer name, writer_type, disp_name
        def_corresponded_attr_reader name, reader_type
        if type == :boolean and /^is/ =~ name
          alias_method "#{$POSTMATCH}?", name
        end
        self::GET_ATTRIBUTES << [name, uri, required, element_name]
        add_need_initialize_variable(disp_name)
      end

      def def_corresponded_attr_writer(name, type=nil, disp_name=nil)
        disp_name ||= name
        case type
        when :integer
          integer_writer name, disp_name
        when :positive_integer
          positive_integer_writer name, disp_name
        when :boolean
          boolean_writer name, disp_name
        when :w3cdtf, :rfc822, :rfc2822
          date_writer name, type, disp_name
        when :text_type
          text_type_writer name, disp_name
        when :content
          content_writer name, disp_name
        when :explicit_clean_other
          explicit_clean_other_writer name, disp_name
        when :yes_other
          yes_other_writer name, disp_name
        when :csv
          csv_writer name
        when :csv_integer
          csv_integer_writer name
        else
          attr_writer name
        end
      end

      def def_corresponded_attr_reader(name, type=nil)
        case type
        when :inherit
          inherit_convert_attr_reader name
        when :uri
          uri_convert_attr_reader name
        when :explicit_clean_other
          explicit_clean_other_attr_reader name
        when :yes_other
          yes_other_attr_reader name
        when :csv
          csv_attr_reader name
        when :csv_integer
          csv_attr_reader name, :separator => ","
        else
          convert_attr_reader name
        end
      end

      def content_setup(type=nil, disp_name=nil)
        writer_type, reader_type = type
        def_corresponded_attr_writer :content, writer_type, disp_name
        def_corresponded_attr_reader :content, reader_type
        @have_content = true
      end

      def have_content?
        @have_content
      end

      def add_have_children_element(variable_name, plural_name)
        self::HAVE_CHILDREN_ELEMENTS << [variable_name, plural_name]
      end

      def add_to_element_method(method_name)
        self::TO_ELEMENT_METHODS << method_name
      end

      def add_need_initialize_variable(variable_name)
        self::NEED_INITIALIZE_VARIABLES << variable_name
      end

      def add_plural_form(singular, plural)
        self::PLURAL_FORMS[singular] = plural
      end

      def required_prefix
        nil
      end

      def required_uri
        ""
      end

      def need_parent?
        false
      end

      def install_ns(prefix, uri)
        if self::NSPOOL.has_key?(prefix)
          raise OverlappedPrefixError.new(prefix)
        end
        self::NSPOOL[prefix] = uri
      end

      def tag_name
        @tag_name
      end
    end

    attr_accessor :parent, :do_validate

    def initialize(do_validate=true, attrs=nil)
      @parent = nil
      @converter = nil
      if attrs.nil? and (do_validate.is_a?(Hash) or do_validate.is_a?(Array))
        do_validate, attrs = true, do_validate
      end
      @do_validate = do_validate
      initialize_variables(attrs || {})
    end

    def tag_name
      self.class.tag_name
    end

    def full_name
      tag_name
    end

    def converter=(converter)
      @converter = converter
      targets = children.dup
      self.class.have_children_elements.each do |variable_name, plural_name|
        targets.concat(__send__(plural_name))
      end
      targets.each do |target|
        target.converter = converter unless target.nil?
      end
    end

    def convert(value)
      if @converter
        @converter.convert(value)
      else
        value
      end
    end

    def valid?(ignore_unknown_element=true)
      validate(ignore_unknown_element)
      true
    rescue RSS::Error
      false
    end

    def validate(ignore_unknown_element=true)
      do_validate = @do_validate
      @do_validate = true
      validate_attribute
      __validate(ignore_unknown_element)
    ensure
      @do_validate = do_validate
    end

    def validate_for_stream(tags, ignore_unknown_element=true)
      validate_attribute
      __validate(ignore_unknown_element, tags, false)
    end

    def to_s(need_convert=true, indent='')
      if self.class.have_content?
        return "" if !empty_content? and !content_is_set?
        rv = tag(indent) do |next_indent|
          if empty_content?
            ""
          else
            xmled_content
          end
        end
      else
        rv = tag(indent) do |next_indent|
          self.class.to_element_methods.collect do |method_name|
            __send__(method_name, false, next_indent)
          end
        end
      end
      rv = convert(rv) if need_convert
      rv
    end

    def have_xml_content?
      false
    end

    def need_base64_encode?
      false
    end

    def set_next_element(tag_name, next_element)
      klass = next_element.class
      prefix = ""
      prefix << "#{klass.required_prefix}_" if klass.required_prefix
      key = "#{prefix}#{tag_name.gsub(/-/, '_')}"
      if self.class.plural_forms.has_key?(key)
        ary = __send__("#{self.class.plural_forms[key]}")
        ary << next_element
      else
        __send__("#{key}=", next_element)
      end
    end

    protected
    def have_required_elements?
      self.class::MODELS.all? do |tag, uri, occurs, getter|
        if occurs.nil? or occurs == "+"
          child = __send__(getter)
          if child.is_a?(Array)
            children = child
            children.any? {|c| c.have_required_elements?}
          else
            not child.nil?
          end
        else
          true
        end
      end
    end

    private
    def initialize_variables(attrs)
      normalized_attrs = {}
      attrs.each do |key, value|
        normalized_attrs[key.to_s] = value
      end
      self.class.need_initialize_variables.each do |variable_name|
        value = normalized_attrs[variable_name.to_s]
        if value
          __send__("#{variable_name}=", value)
        else
          instance_variable_set("@#{variable_name}", nil)
        end
      end
      initialize_have_children_elements
      @content = normalized_attrs["content"] if self.class.have_content?
    end

    def initialize_have_children_elements
      self.class.have_children_elements.each do |variable_name, plural_name|
        instance_variable_set("@#{variable_name}", [])
      end
    end

    def tag(indent, additional_attrs={}, &block)
      next_indent = indent + INDENT

      attrs = collect_attrs
      return "" if attrs.nil?

      return "" unless have_required_elements?

      attrs.update(additional_attrs)
      start_tag = make_start_tag(indent, next_indent, attrs.dup)

      if block
        content = block.call(next_indent)
      else
        content = []
      end

      if content.is_a?(String)
        content = [content]
        start_tag << ">"
        end_tag = "</#{full_name}>"
      else
        content = content.reject{|x| x.empty?}
        if content.empty?
          return "" if attrs.empty?
          end_tag = "/>"
        else
          start_tag << ">\n"
          end_tag = "\n#{indent}</#{full_name}>"
        end
      end

      start_tag + content.join("\n") + end_tag
    end

    def make_start_tag(indent, next_indent, attrs)
      start_tag = ["#{indent}<#{full_name}"]
      unless attrs.empty?
        start_tag << attrs.collect do |key, value|
          %Q[#{h key}="#{h value}"]
        end.join("\n#{next_indent}")
      end
      start_tag.join(" ")
    end

    def collect_attrs
      attrs = {}
      _attrs.each do |name, required, alias_name|
        value = __send__(alias_name || name)
        return nil if required and value.nil?
        next if value.nil?
        return nil if attrs.has_key?(name)
        attrs[name] = value
      end
      attrs
    end

    def tag_name_with_prefix(prefix)
      "#{prefix}:#{tag_name}"
    end

    # For backward compatibility
    def calc_indent
      ''
    end

    def children
      rv = []
      self.class.models.each do |name, uri, occurs, getter|
        value = __send__(getter)
        next if value.nil?
        value = [value] unless value.is_a?(Array)
        value.each do |v|
          rv << v if v.is_a?(Element)
        end
      end
      rv
    end

    def _tags
      rv = []
      self.class.models.each do |name, uri, occurs, getter, plural|
        value = __send__(getter)
        next if value.nil?
        if plural and value.is_a?(Array)
          rv.concat([[uri, name]] * value.size)
        else
          rv << [uri, name]
        end
      end
      rv
    end

    def _attrs
      self.class.get_attributes.collect do |name, uri, required, element_name|
        [element_name, required, name]
      end
    end

    def __validate(ignore_unknown_element, tags=_tags, recursive=true)
      if recursive
        children.compact.each do |child|
          child.validate
        end
      end
      must_call_validators = self.class.must_call_validators
      tags = tag_filter(tags.dup)
      p tags if DEBUG
      must_call_validators.each do |uri, prefix|
        _validate(ignore_unknown_element, tags[uri], uri)
        meth = "#{prefix}_validate"
        if !prefix.empty? and respond_to?(meth, true)
          __send__(meth, ignore_unknown_element, tags[uri], uri)
        end
      end
    end

    def validate_attribute
      _attrs.each do |a_name, required, alias_name|
        value = instance_variable_get("@#{alias_name || a_name}")
        if required and value.nil?
          raise MissingAttributeError.new(tag_name, a_name)
        end
        __send__("#{alias_name || a_name}=", value)
      end
    end

    def _validate(ignore_unknown_element, tags, uri, models=self.class.models)
      count = 1
      do_redo = false
      not_shift = false
      tag = nil
      models = models.find_all {|model| model[1] == uri}
      element_names = models.collect {|model| model[0]}
      if tags
        tags_size = tags.size
        tags = tags.sort_by {|x| element_names.index(x) || tags_size}
      end

      models.each_with_index do |model, i|
        name, _, occurs, = model

        if DEBUG
          p "before"
          p tags
          p model
        end

        if not_shift
          not_shift = false
        elsif tags
          tag = tags.shift
        end

        if DEBUG
          p "mid"
          p count
        end

        case occurs
        when '?'
          if count > 2
            raise TooMuchTagError.new(name, tag_name)
          else
            if name == tag
              do_redo = true
            else
              not_shift = true
            end
          end
        when '*'
          if name == tag
            do_redo = true
          else
            not_shift = true
          end
        when '+'
          if name == tag
            do_redo = true
          else
            if count > 1
              not_shift = true
            else
              raise MissingTagError.new(name, tag_name)
            end
          end
        else
          if name == tag
            if models[i+1] and models[i+1][0] != name and
                tags and tags.first == name
              raise TooMuchTagError.new(name, tag_name)
            end
          else
            raise MissingTagError.new(name, tag_name)
          end
        end

        if DEBUG
          p "after"
          p not_shift
          p do_redo
          p tag
        end

        if do_redo
          do_redo = false
          count += 1
          redo
        else
          count = 1
        end

      end

      if !ignore_unknown_element and !tags.nil? and !tags.empty?
        raise NotExpectedTagError.new(tags.first, uri, tag_name)
      end

    end

    def tag_filter(tags)
      rv = {}
      tags.each do |tag|
        rv[tag[0]] = [] unless rv.has_key?(tag[0])
        rv[tag[0]].push(tag[1])
      end
      rv
    end

    def empty_content?
      false
    end

    def content_is_set?
      if have_xml_content?
        __send__(self.class.xml_getter)
      else
        content
      end
    end

    def xmled_content
      if have_xml_content?
        __send__(self.class.xml_getter).to_s
      else
        _content = content
        _content = [_content].pack("m0") if need_base64_encode?
        h(_content)
      end
    end
  end

  module RootElementMixin

    include XMLStyleSheetMixin

    attr_reader :output_encoding
    attr_reader :feed_type, :feed_subtype, :feed_version
    attr_accessor :version, :encoding, :standalone
    def initialize(feed_version, version=nil, encoding=nil, standalone=nil)
      super()
      @feed_type = nil
      @feed_subtype = nil
      @feed_version = feed_version
      @version = version || '1.0'
      @encoding = encoding
      @standalone = standalone
      @output_encoding = nil
    end

    def feed_info
      [@feed_type, @feed_version, @feed_subtype]
    end

    def output_encoding=(enc)
      @output_encoding = enc
      self.converter = Converter.new(@output_encoding, @encoding)
    end

    def setup_maker(maker)
      maker.version = version
      maker.encoding = encoding
      maker.standalone = standalone

      xml_stylesheets.each do |xss|
        xss.setup_maker(maker)
      end

      super
    end

    def to_feed(type, &block)
      Maker.make(type) do |maker|
        setup_maker(maker)
        block.call(maker) if block
      end
    end

    def to_rss(type, &block)
      to_feed("rss#{type}", &block)
    end

    def to_atom(type, &block)
      to_feed("atom:#{type}", &block)
    end

    def to_xml(type=nil, &block)
      if type.nil? or same_feed_type?(type)
        to_s
      else
        to_feed(type, &block).to_s
      end
    end

    private
    def same_feed_type?(type)
      if /^(atom|rss)?(\d+\.\d+)?(?::(.+))?$/i =~ type
        feed_type = ($1 || @feed_type).downcase
        feed_version = $2 || @feed_version
        feed_subtype = $3 || @feed_subtype
        [feed_type, feed_version, feed_subtype] == feed_info
      else
        false
      end
    end

    def tag(indent, attrs={}, &block)
      rv = super(indent, ns_declarations.merge(attrs), &block)
      return rv if rv.empty?
      "#{xmldecl}#{xml_stylesheet_pi}#{rv}"
    end

    def xmldecl
      rv = %Q[<?xml version="#{@version}"]
      if @output_encoding or @encoding
        rv << %Q[ encoding="#{@output_encoding or @encoding}"]
      end
      rv << %Q[ standalone="yes"] if @standalone
      rv << "?>\n"
      rv
    end

    def ns_declarations
      decls = {}
      self.class::NSPOOL.collect do |prefix, uri|
        prefix = ":#{prefix}" unless prefix.empty?
        decls["xmlns#{prefix}"] = uri
      end
      decls
    end

    def maker_target(target)
      target
    end
  end
end
PKFH[?i��� share/ruby/rss/xml-stylesheet.rbnu�[���# frozen_string_literal: false
require_relative "utils"

module RSS

  module XMLStyleSheetMixin
    attr_accessor :xml_stylesheets
    def initialize(*args)
      super
      @xml_stylesheets = []
    end

    private
    def xml_stylesheet_pi
      xsss = @xml_stylesheets.collect do |xss|
        pi = xss.to_s
        pi = nil if /\A\s*\z/ =~ pi
        pi
      end.compact
      xsss.push("") unless xsss.empty?
      xsss.join("\n")
    end
  end

  class XMLStyleSheet

    include Utils

    ATTRIBUTES = %w(href type title media charset alternate)

    GUESS_TABLE = {
      "xsl" => "text/xsl",
      "css" => "text/css",
    }

    attr_accessor(*ATTRIBUTES)
    attr_accessor(:do_validate)
    def initialize(*attrs)
      if attrs.size == 1 and
          (attrs.first.is_a?(Hash) or attrs.first.is_a?(Array))
        attrs = attrs.first
      end
      @do_validate = true
      ATTRIBUTES.each do |attr|
        __send__("#{attr}=", nil)
      end
      vars = ATTRIBUTES.dup
      vars.unshift(:do_validate)
      attrs.each do |name, value|
        if vars.include?(name.to_s)
          __send__("#{name}=", value)
        end
      end
    end

    def to_s
      rv = ""
      if @href
        rv << %Q[<?xml-stylesheet]
        ATTRIBUTES.each do |name|
          if __send__(name)
            rv << %Q[ #{name}="#{h __send__(name)}"]
          end
        end
        rv << %Q[?>]
      end
      rv
    end

    remove_method(:href=)
    def href=(value)
      @href = value
      if @href and @type.nil?
        @type = guess_type(@href)
      end
      @href
    end

    remove_method(:alternate=)
    def alternate=(value)
      if value.nil? or /\A(?:yes|no)\z/ =~ value
        @alternate = value
      else
        if @do_validate
          args = ["?xml-stylesheet?", %Q[alternate="#{value}"]]
          raise NotAvailableValueError.new(*args)
        end
      end
      @alternate
    end

    def setup_maker(maker)
      xss = maker.xml_stylesheets.new_xml_stylesheet
      ATTRIBUTES.each do |attr|
        xss.__send__("#{attr}=", __send__(attr))
      end
    end

    private
    def guess_type(filename)
      /\.([^.]+)$/ =~ filename
      GUESS_TABLE[$1]
    end

  end
end
PKFH[��v*v*share/ruby/rss/0.9.rbnu�[���# frozen_string_literal: false
require_relative "parser"

module RSS

  ##
  # = RSS 0.9 support
  #
  # RSS has three different versions. This module contains support for version
  # 0.9.1[http://www.rssboard.org/rss-0-9-1-netscape].
  #
  # == Producing RSS 0.9
  #
  # Producing our own RSS feeds is easy as well. Let's make a very basic feed:
  #
  #  require "rss"
  #
  #  rss = RSS::Maker.make("0.91") do |maker|
  #    maker.channel.language = "en"
  #    maker.channel.author = "matz"
  #    maker.channel.updated = Time.now.to_s
  #    maker.channel.link = "http://www.ruby-lang.org/en/feeds/news.rss"
  #    maker.channel.title = "Example Feed"
  #    maker.channel.description = "A longer description of my feed."
  #    maker.image.url = "http://www.ruby-lang.org/images/logo.gif"
  #    maker.image.title = "An image"
  #    maker.items.new_item do |item|
  #      item.link = "http://www.ruby-lang.org/en/news/2010/12/25/ruby-1-9-2-p136-is-released/"
  #      item.title = "Ruby 1.9.2-p136 is released"
  #      item.updated = Time.now.to_s
  #    end
  #  end
  #
  #  puts rss
  #
  # As you can see, this is a very Builder-like DSL. This code will spit out an
  # RSS 0.9 feed with one item. If we needed a second item, we'd make another
  # block with maker.items.new_item and build a second one.
  module RSS09
    NSPOOL = {}
    ELEMENTS = []

    def self.append_features(klass)
      super

      klass.install_must_call_validator('', "")
    end
  end

  class Rss < Element

    include RSS09
    include RootElementMixin

    %w(channel).each do |name|
      install_have_child_element(name, "", nil)
    end

    attr_writer :feed_version
    alias_method(:rss_version, :feed_version)
    alias_method(:rss_version=, :feed_version=)

    def initialize(feed_version, version=nil, encoding=nil, standalone=nil)
      super
      @feed_type = "rss"
    end

    def items
      if @channel
        @channel.items
      else
        []
      end
    end

    def image
      if @channel
        @channel.image
      else
        nil
      end
    end

    def textinput
      if @channel
        @channel.textInput
      else
        nil
      end
    end

    def setup_maker_elements(maker)
      super
      items.each do |item|
        item.setup_maker(maker.items)
      end
      image.setup_maker(maker) if image
      textinput.setup_maker(maker) if textinput
    end

    private
    def _attrs
      [
        ["version", true, "feed_version"],
      ]
    end

    class Channel < Element

      include RSS09

      [
        ["title", nil, :text],
        ["link", nil, :text],
        ["description", nil, :text],
        ["language", nil, :text],
        ["copyright", "?", :text],
        ["managingEditor", "?", :text],
        ["webMaster", "?", :text],
        ["rating", "?", :text],
        ["pubDate", "?", :date, :rfc822],
        ["lastBuildDate", "?", :date, :rfc822],
        ["docs", "?", :text],
        ["cloud", "?", :have_attribute],
        ["skipDays", "?", :have_child],
        ["skipHours", "?", :have_child],
        ["image", nil, :have_child],
        ["item", "*", :have_children],
        ["textInput", "?", :have_child],
      ].each do |name, occurs, type, *args|
        __send__("install_#{type}_element", name, "", occurs, name, *args)
      end
      alias date pubDate
      alias date= pubDate=

      private
      def maker_target(maker)
        maker.channel
      end

      def setup_maker_elements(channel)
        super
        [
          [skipDays, "day"],
          [skipHours, "hour"],
        ].each do |skip, key|
          if skip
            skip.__send__("#{key}s").each do |val|
              target_skips = channel.__send__("skip#{key.capitalize}s")
              new_target = target_skips.__send__("new_#{key}")
              new_target.content = val.content
            end
          end
        end
      end

      def not_need_to_call_setup_maker_variables
        %w(image textInput)
      end

      class SkipDays < Element
        include RSS09

        [
          ["day", "*"]
        ].each do |name, occurs|
          install_have_children_element(name, "", occurs)
        end

        class Day < Element
          include RSS09

          content_setup

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.content = args[0]
            end
          end

        end

      end

      class SkipHours < Element
        include RSS09

        [
          ["hour", "*"]
        ].each do |name, occurs|
          install_have_children_element(name, "", occurs)
        end

        class Hour < Element
          include RSS09

          content_setup(:integer)

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.content = args[0]
            end
          end
        end

      end

      class Image < Element

        include RSS09

        %w(url title link).each do |name|
          install_text_element(name, "", nil)
        end
        [
          ["width", :integer],
          ["height", :integer],
          ["description"],
        ].each do |name, type|
          install_text_element(name, "", "?", name, type)
        end

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.url = args[0]
            self.title = args[1]
            self.link = args[2]
            self.width = args[3]
            self.height = args[4]
            self.description = args[5]
          end
        end

        private
        def maker_target(maker)
          maker.image
        end
      end

      class Cloud < Element

        include RSS09

        [
          ["domain", "", true],
          ["port", "", true, :integer],
          ["path", "", true],
          ["registerProcedure", "", true],
          ["protocol", "", true],
        ].each do |name, uri, required, type|
          install_get_attribute(name, uri, required, type)
        end

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.domain = args[0]
            self.port = args[1]
            self.path = args[2]
            self.registerProcedure = args[3]
            self.protocol = args[4]
          end
        end
      end

      class Item < Element

        include RSS09

        [
          ["title", '?', :text],
          ["link", '?', :text],
          ["description", '?', :text],
          ["category", '*', :have_children, "categories"],
          ["source", '?', :have_child],
          ["enclosure", '?', :have_child],
        ].each do |tag, occurs, type, *args|
          __send__("install_#{type}_element", tag, "", occurs, tag, *args)
        end

        private
        def maker_target(items)
          if items.respond_to?("items")
            # For backward compatibility
            items = items.items
          end
          items.new_item
        end

        def setup_maker_element(item)
          super
          @enclosure.setup_maker(item) if @enclosure
          @source.setup_maker(item) if @source
        end

        class Source < Element

          include RSS09

          [
            ["url", "", true]
          ].each do |name, uri, required|
            install_get_attribute(name, uri, required)
          end

          content_setup

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.url = args[0]
              self.content = args[1]
            end
          end

          private
          def maker_target(item)
            item.source
          end

          def setup_maker_attributes(source)
            source.url = url
            source.content = content
          end
        end

        class Enclosure < Element

          include RSS09

          [
            ["url", "", true],
            ["length", "", true, :integer],
            ["type", "", true],
          ].each do |name, uri, required, type|
            install_get_attribute(name, uri, required, type)
          end

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.url = args[0]
              self.length = args[1]
              self.type = args[2]
            end
          end

          private
          def maker_target(item)
            item.enclosure
          end

          def setup_maker_attributes(enclosure)
            enclosure.url = url
            enclosure.length = length
            enclosure.type = type
          end
        end

        class Category < Element

          include RSS09

          [
            ["domain", "", false]
          ].each do |name, uri, required|
            install_get_attribute(name, uri, required)
          end

          content_setup

          def initialize(*args)
            if Utils.element_initialize_arguments?(args)
              super
            else
              super()
              self.domain = args[0]
              self.content = args[1]
            end
          end

          private
          def maker_target(item)
            item.new_category
          end

          def setup_maker_attributes(category)
            category.domain = domain
            category.content = content
          end

        end

      end

      class TextInput < Element

        include RSS09

        %w(title description name link).each do |name|
          install_text_element(name, "", nil)
        end

        def initialize(*args)
          if Utils.element_initialize_arguments?(args)
            super
          else
            super()
            self.title = args[0]
            self.description = args[1]
            self.name = args[2]
            self.link = args[3]
          end
        end

        private
        def maker_target(maker)
          maker.textinput
        end
      end

    end

  end

  RSS09::ELEMENTS.each do |name|
    BaseListener.install_get_text_element("", name, name)
  end

  module ListenerMixin
    private
    def initial_start_rss(tag_name, prefix, attrs, ns)
      check_ns(tag_name, prefix, ns, "", false)

      @rss = Rss.new(attrs['version'], @version, @encoding, @standalone)
      @rss.do_validate = @do_validate
      @rss.xml_stylesheets = @xml_stylesheets
      @last_element = @rss
      pr = Proc.new do |text, tags|
        @rss.validate_for_stream(tags, @ignore_unknown_element) if @do_validate
      end
      @proc_stack.push(pr)
    end

  end

end
PKFH[m�i?�?�?share/ruby/prettyprint.rbnu�[���# frozen_string_literal: true
#
# This class implements a pretty printing algorithm. It finds line breaks and
# nice indentations for grouped structure.
#
# By default, the class assumes that primitive elements are strings and each
# byte in the strings have single column in width. But it can be used for
# other situations by giving suitable arguments for some methods:
# * newline object and space generation block for PrettyPrint.new
# * optional width argument for PrettyPrint#text
# * PrettyPrint#breakable
#
# There are several candidate uses:
# * text formatting using proportional fonts
# * multibyte characters which has columns different to number of bytes
# * non-string formatting
#
# == Bugs
# * Box based formatting?
# * Other (better) model/algorithm?
#
# Report any bugs at http://bugs.ruby-lang.org
#
# == References
# Christian Lindig, Strictly Pretty, March 2000,
# http://www.st.cs.uni-sb.de/~lindig/papers/#pretty
#
# Philip Wadler, A prettier printer, March 1998,
# http://homepages.inf.ed.ac.uk/wadler/topics/language-design.html#prettier
#
# == Author
# Tanaka Akira <akr@fsij.org>
#
class PrettyPrint

  # This is a convenience method which is same as follows:
  #
  #   begin
  #     q = PrettyPrint.new(output, maxwidth, newline, &genspace)
  #     ...
  #     q.flush
  #     output
  #   end
  #
  def PrettyPrint.format(output=''.dup, maxwidth=79, newline="\n", genspace=lambda {|n| ' ' * n})
    q = PrettyPrint.new(output, maxwidth, newline, &genspace)
    yield q
    q.flush
    output
  end

  # This is similar to PrettyPrint::format but the result has no breaks.
  #
  # +maxwidth+, +newline+ and +genspace+ are ignored.
  #
  # The invocation of +breakable+ in the block doesn't break a line and is
  # treated as just an invocation of +text+.
  #
  def PrettyPrint.singleline_format(output=''.dup, maxwidth=nil, newline=nil, genspace=nil)
    q = SingleLine.new(output)
    yield q
    output
  end

  # Creates a buffer for pretty printing.
  #
  # +output+ is an output target. If it is not specified, '' is assumed. It
  # should have a << method which accepts the first argument +obj+ of
  # PrettyPrint#text, the first argument +sep+ of PrettyPrint#breakable, the
  # first argument +newline+ of PrettyPrint.new, and the result of a given
  # block for PrettyPrint.new.
  #
  # +maxwidth+ specifies maximum line length. If it is not specified, 79 is
  # assumed. However actual outputs may overflow +maxwidth+ if long
  # non-breakable texts are provided.
  #
  # +newline+ is used for line breaks. "\n" is used if it is not specified.
  #
  # The block is used to generate spaces. {|width| ' ' * width} is used if it
  # is not given.
  #
  def initialize(output=''.dup, maxwidth=79, newline="\n", &genspace)
    @output = output
    @maxwidth = maxwidth
    @newline = newline
    @genspace = genspace || lambda {|n| ' ' * n}

    @output_width = 0
    @buffer_width = 0
    @buffer = []

    root_group = Group.new(0)
    @group_stack = [root_group]
    @group_queue = GroupQueue.new(root_group)
    @indent = 0
  end

  # The output object.
  #
  # This defaults to '', and should accept the << method
  attr_reader :output

  # The maximum width of a line, before it is separated in to a newline
  #
  # This defaults to 79, and should be a Fixnum
  attr_reader :maxwidth

  # The value that is appended to +output+ to add a new line.
  #
  # This defaults to "\n", and should be String
  attr_reader :newline

  # A lambda or Proc, that takes one argument, of a Fixnum, and returns
  # the corresponding number of spaces.
  #
  # By default this is:
  #   lambda {|n| ' ' * n}
  attr_reader :genspace

  # The number of spaces to be indented
  attr_reader :indent

  # The PrettyPrint::GroupQueue of groups in stack to be pretty printed
  attr_reader :group_queue

  # Returns the group most recently added to the stack.
  #
  # Contrived example:
  #   out = ""
  #   => ""
  #   q = PrettyPrint.new(out)
  #   => #<PrettyPrint:0x82f85c0 @output="", @maxwidth=79, @newline="\n", @genspace=#<Proc:0x82f8368@/home/vbatts/.rvm/rubies/ruby-head/lib/ruby/2.0.0/prettyprint.rb:82 (lambda)>, @output_width=0, @buffer_width=0, @buffer=[], @group_stack=[#<PrettyPrint::Group:0x82f8138 @depth=0, @breakables=[], @break=false>], @group_queue=#<PrettyPrint::GroupQueue:0x82fb7c0 @queue=[[#<PrettyPrint::Group:0x82f8138 @depth=0, @breakables=[], @break=false>]]>, @indent=0>
  #   q.group {
  #     q.text q.current_group.inspect
  #     q.text q.newline
  #     q.group(q.current_group.depth + 1) {
  #       q.text q.current_group.inspect
  #       q.text q.newline
  #       q.group(q.current_group.depth + 1) {
  #         q.text q.current_group.inspect
  #         q.text q.newline
  #         q.group(q.current_group.depth + 1) {
  #           q.text q.current_group.inspect
  #           q.text q.newline
  #         }
  #       }
  #     }
  #   }
  #   => 284
  #    puts out
  #   #<PrettyPrint::Group:0x8354758 @depth=1, @breakables=[], @break=false>
  #   #<PrettyPrint::Group:0x8354550 @depth=2, @breakables=[], @break=false>
  #   #<PrettyPrint::Group:0x83541cc @depth=3, @breakables=[], @break=false>
  #   #<PrettyPrint::Group:0x8347e54 @depth=4, @breakables=[], @break=false>
  def current_group
    @group_stack.last
  end

  # Breaks the buffer into lines that are shorter than #maxwidth
  def break_outmost_groups
    while @maxwidth < @output_width + @buffer_width
      return unless group = @group_queue.deq
      until group.breakables.empty?
        data = @buffer.shift
        @output_width = data.output(@output, @output_width)
        @buffer_width -= data.width
      end
      while !@buffer.empty? && Text === @buffer.first
        text = @buffer.shift
        @output_width = text.output(@output, @output_width)
        @buffer_width -= text.width
      end
    end
  end

  # This adds +obj+ as a text of +width+ columns in width.
  #
  # If +width+ is not specified, obj.length is used.
  #
  def text(obj, width=obj.length)
    if @buffer.empty?
      @output << obj
      @output_width += width
    else
      text = @buffer.last
      unless Text === text
        text = Text.new
        @buffer << text
      end
      text.add(obj, width)
      @buffer_width += width
      break_outmost_groups
    end
  end

  # This is similar to #breakable except
  # the decision to break or not is determined individually.
  #
  # Two #fill_breakable under a group may cause 4 results:
  # (break,break), (break,non-break), (non-break,break), (non-break,non-break).
  # This is different to #breakable because two #breakable under a group
  # may cause 2 results:
  # (break,break), (non-break,non-break).
  #
  # The text +sep+ is inserted if a line is not broken at this point.
  #
  # If +sep+ is not specified, " " is used.
  #
  # If +width+ is not specified, +sep.length+ is used. You will have to
  # specify this when +sep+ is a multibyte character, for example.
  #
  def fill_breakable(sep=' ', width=sep.length)
    group { breakable sep, width }
  end

  # This says "you can break a line here if necessary", and a +width+\-column
  # text +sep+ is inserted if a line is not broken at the point.
  #
  # If +sep+ is not specified, " " is used.
  #
  # If +width+ is not specified, +sep.length+ is used. You will have to
  # specify this when +sep+ is a multibyte character, for example.
  #
  def breakable(sep=' ', width=sep.length)
    group = @group_stack.last
    if group.break?
      flush
      @output << @newline
      @output << @genspace.call(@indent)
      @output_width = @indent
      @buffer_width = 0
    else
      @buffer << Breakable.new(sep, width, self)
      @buffer_width += width
      break_outmost_groups
    end
  end

  # Groups line break hints added in the block. The line break hints are all
  # to be used or not.
  #
  # If +indent+ is specified, the method call is regarded as nested by
  # nest(indent) { ... }.
  #
  # If +open_obj+ is specified, <tt>text open_obj, open_width</tt> is called
  # before grouping. If +close_obj+ is specified, <tt>text close_obj,
  # close_width</tt> is called after grouping.
  #
  def group(indent=0, open_obj='', close_obj='', open_width=open_obj.length, close_width=close_obj.length)
    text open_obj, open_width
    group_sub {
      nest(indent) {
        yield
      }
    }
    text close_obj, close_width
  end

  # Takes a block and queues a new group that is indented 1 level further.
  def group_sub
    group = Group.new(@group_stack.last.depth + 1)
    @group_stack.push group
    @group_queue.enq group
    begin
      yield
    ensure
      @group_stack.pop
      if group.breakables.empty?
        @group_queue.delete group
      end
    end
  end

  # Increases left margin after newline with +indent+ for line breaks added in
  # the block.
  #
  def nest(indent)
    @indent += indent
    begin
      yield
    ensure
      @indent -= indent
    end
  end

  # outputs buffered data.
  #
  def flush
    @buffer.each {|data|
      @output_width = data.output(@output, @output_width)
    }
    @buffer.clear
    @buffer_width = 0
  end

  # The Text class is the means by which to collect strings from objects.
  #
  # This class is intended for internal use of the PrettyPrint buffers.
  class Text # :nodoc:

    # Creates a new text object.
    #
    # This constructor takes no arguments.
    #
    # The workflow is to append a PrettyPrint::Text object to the buffer, and
    # being able to call the buffer.last() to reference it.
    #
    # As there are objects, use PrettyPrint::Text#add to include the objects
    # and the width to utilized by the String version of this object.
    def initialize
      @objs = []
      @width = 0
    end

    # The total width of the objects included in this Text object.
    attr_reader :width

    # Render the String text of the objects that have been added to this Text object.
    #
    # Output the text to +out+, and increment the width to +output_width+
    def output(out, output_width)
      @objs.each {|obj| out << obj}
      output_width + @width
    end

    # Include +obj+ in the objects to be pretty printed, and increment
    # this Text object's total width by +width+
    def add(obj, width)
      @objs << obj
      @width += width
    end
  end

  # The Breakable class is used for breaking up object information
  #
  # This class is intended for internal use of the PrettyPrint buffers.
  class Breakable # :nodoc:

    # Create a new Breakable object.
    #
    # Arguments:
    # * +sep+ String of the separator
    # * +width+ Fixnum width of the +sep+
    # * +q+ parent PrettyPrint object, to base from
    def initialize(sep, width, q)
      @obj = sep
      @width = width
      @pp = q
      @indent = q.indent
      @group = q.current_group
      @group.breakables.push self
    end

    # Holds the separator String
    #
    # The +sep+ argument from ::new
    attr_reader :obj

    # The width of +obj+ / +sep+
    attr_reader :width

    # The number of spaces to indent.
    #
    # This is inferred from +q+ within PrettyPrint, passed in ::new
    attr_reader :indent

    # Render the String text of the objects that have been added to this
    # Breakable object.
    #
    # Output the text to +out+, and increment the width to +output_width+
    def output(out, output_width)
      @group.breakables.shift
      if @group.break?
        out << @pp.newline
        out << @pp.genspace.call(@indent)
        @indent
      else
        @pp.group_queue.delete @group if @group.breakables.empty?
        out << @obj
        output_width + @width
      end
    end
  end

  # The Group class is used for making indentation easier.
  #
  # While this class does neither the breaking into newlines nor indentation,
  # it is used in a stack (as well as a queue) within PrettyPrint, to group
  # objects.
  #
  # For information on using groups, see PrettyPrint#group
  #
  # This class is intended for internal use of the PrettyPrint buffers.
  class Group # :nodoc:
    # Create a Group object
    #
    # Arguments:
    # * +depth+ - this group's relation to previous groups
    def initialize(depth)
      @depth = depth
      @breakables = []
      @break = false
    end

    # This group's relation to previous groups
    attr_reader :depth

    # Array to hold the Breakable objects for this Group
    attr_reader :breakables

    # Makes a break for this Group, and returns true
    def break
      @break = true
    end

    # Boolean of whether this Group has made a break
    def break?
      @break
    end

    # Boolean of whether this Group has been queried for being first
    #
    # This is used as a predicate, and ought to be called first.
    def first?
      if defined? @first
        false
      else
        @first = false
        true
      end
    end
  end

  # The GroupQueue class is used for managing the queue of Group to be pretty
  # printed.
  #
  # This queue groups the Group objects, based on their depth.
  #
  # This class is intended for internal use of the PrettyPrint buffers.
  class GroupQueue # :nodoc:
    # Create a GroupQueue object
    #
    # Arguments:
    # * +groups+ - one or more PrettyPrint::Group objects
    def initialize(*groups)
      @queue = []
      groups.each {|g| enq g}
    end

    # Enqueue +group+
    #
    # This does not strictly append the group to the end of the queue,
    # but instead adds it in line, base on the +group.depth+
    def enq(group)
      depth = group.depth
      @queue << [] until depth < @queue.length
      @queue[depth] << group
    end

    # Returns the outer group of the queue
    def deq
      @queue.each {|gs|
        (gs.length-1).downto(0) {|i|
          unless gs[i].breakables.empty?
            group = gs.slice!(i, 1).first
            group.break
            return group
          end
        }
        gs.each {|group| group.break}
        gs.clear
      }
      return nil
    end

    # Remote +group+ from this queue
    def delete(group)
      @queue[group.depth].delete(group)
    end
  end

  # PrettyPrint::SingleLine is used by PrettyPrint.singleline_format
  #
  # It is passed to be similar to a PrettyPrint object itself, by responding to:
  # * #text
  # * #breakable
  # * #nest
  # * #group
  # * #flush
  # * #first?
  #
  # but instead, the output has no line breaks
  #
  class SingleLine
    # Create a PrettyPrint::SingleLine object
    #
    # Arguments:
    # * +output+ - String (or similar) to store rendered text. Needs to respond to '<<'
    # * +maxwidth+ - Argument position expected to be here for compatibility.
    #                This argument is a noop.
    # * +newline+ - Argument position expected to be here for compatibility.
    #               This argument is a noop.
    def initialize(output, maxwidth=nil, newline=nil)
      @output = output
      @first = [true]
    end

    # Add +obj+ to the text to be output.
    #
    # +width+ argument is here for compatibility. It is a noop argument.
    def text(obj, width=nil)
      @output << obj
    end

    # Appends +sep+ to the text to be output. By default +sep+ is ' '
    #
    # +width+ argument is here for compatibility. It is a noop argument.
    def breakable(sep=' ', width=nil)
      @output << sep
    end

    # Takes +indent+ arg, but does nothing with it.
    #
    # Yields to a block.
    def nest(indent) # :nodoc:
      yield
    end

    # Opens a block for grouping objects to be pretty printed.
    #
    # Arguments:
    # * +indent+ - noop argument. Present for compatibility.
    # * +open_obj+ - text appended before the &blok. Default is ''
    # * +close_obj+ - text appended after the &blok. Default is ''
    # * +open_width+ - noop argument. Present for compatibility.
    # * +close_width+ - noop argument. Present for compatibility.
    def group(indent=nil, open_obj='', close_obj='', open_width=nil, close_width=nil)
      @first.push true
      @output << open_obj
      yield
      @output << close_obj
      @first.pop
    end

    # Method present for compatibility, but is a noop
    def flush # :nodoc:
    end

    # This is used as a predicate, and ought to be called first.
    def first?
      result = @first[-1]
      @first[-1] = false
      result
    end
  end
end
PKFH[�*`share/ruby/bigdecimal.rbnu�[���require 'bigdecimal.so'
PKFH[R���_�_�share/ruby/net/imap.rbnu�[���# frozen_string_literal: true
#
# = net/imap.rb
#
# Copyright (C) 2000  Shugo Maeda <shugo@ruby-lang.org>
#
# This library is distributed under the terms of the Ruby license.
# You can freely distribute/modify this library.
#
# Documentation: Shugo Maeda, with RDoc conversion and overview by William
# Webber.
#
# See Net::IMAP for documentation.
#


require "socket"
require "monitor"
require "digest/md5"
require "strscan"
require_relative 'protocol'
begin
  require "openssl"
rescue LoadError
end

module Net

  #
  # Net::IMAP implements Internet Message Access Protocol (IMAP) client
  # functionality.  The protocol is described in [IMAP].
  #
  # == IMAP Overview
  #
  # An IMAP client connects to a server, and then authenticates
  # itself using either #authenticate() or #login().  Having
  # authenticated itself, there is a range of commands
  # available to it.  Most work with mailboxes, which may be
  # arranged in an hierarchical namespace, and each of which
  # contains zero or more messages.  How this is implemented on
  # the server is implementation-dependent; on a UNIX server, it
  # will frequently be implemented as files in mailbox format
  # within a hierarchy of directories.
  #
  # To work on the messages within a mailbox, the client must
  # first select that mailbox, using either #select() or (for
  # read-only access) #examine().  Once the client has successfully
  # selected a mailbox, they enter _selected_ state, and that
  # mailbox becomes the _current_ mailbox, on which mail-item
  # related commands implicitly operate.
  #
  # Messages have two sorts of identifiers: message sequence
  # numbers and UIDs.
  #
  # Message sequence numbers number messages within a mailbox
  # from 1 up to the number of items in the mailbox.  If a new
  # message arrives during a session, it receives a sequence
  # number equal to the new size of the mailbox.  If messages
  # are expunged from the mailbox, remaining messages have their
  # sequence numbers "shuffled down" to fill the gaps.
  #
  # UIDs, on the other hand, are permanently guaranteed not to
  # identify another message within the same mailbox, even if
  # the existing message is deleted.  UIDs are required to
  # be assigned in ascending (but not necessarily sequential)
  # order within a mailbox; this means that if a non-IMAP client
  # rearranges the order of mailitems within a mailbox, the
  # UIDs have to be reassigned.  An IMAP client thus cannot
  # rearrange message orders.
  #
  # == Examples of Usage
  #
  # === List sender and subject of all recent messages in the default mailbox
  #
  #   imap = Net::IMAP.new('mail.example.com')
  #   imap.authenticate('LOGIN', 'joe_user', 'joes_password')
  #   imap.examine('INBOX')
  #   imap.search(["RECENT"]).each do |message_id|
  #     envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"]
  #     puts "#{envelope.from[0].name}: \t#{envelope.subject}"
  #   end
  #
  # === Move all messages from April 2003 from "Mail/sent-mail" to "Mail/sent-apr03"
  #
  #   imap = Net::IMAP.new('mail.example.com')
  #   imap.authenticate('LOGIN', 'joe_user', 'joes_password')
  #   imap.select('Mail/sent-mail')
  #   if not imap.list('Mail/', 'sent-apr03')
  #     imap.create('Mail/sent-apr03')
  #   end
  #   imap.search(["BEFORE", "30-Apr-2003", "SINCE", "1-Apr-2003"]).each do |message_id|
  #     imap.copy(message_id, "Mail/sent-apr03")
  #     imap.store(message_id, "+FLAGS", [:Deleted])
  #   end
  #   imap.expunge
  #
  # == Thread Safety
  #
  # Net::IMAP supports concurrent threads. For example,
  #
  #   imap = Net::IMAP.new("imap.foo.net", "imap2")
  #   imap.authenticate("cram-md5", "bar", "password")
  #   imap.select("inbox")
  #   fetch_thread = Thread.start { imap.fetch(1..-1, "UID") }
  #   search_result = imap.search(["BODY", "hello"])
  #   fetch_result = fetch_thread.value
  #   imap.disconnect
  #
  # This script invokes the FETCH command and the SEARCH command concurrently.
  #
  # == Errors
  #
  # An IMAP server can send three different types of responses to indicate
  # failure:
  #
  # NO:: the attempted command could not be successfully completed.  For
  #      instance, the username/password used for logging in are incorrect;
  #      the selected mailbox does not exist; etc.
  #
  # BAD:: the request from the client does not follow the server's
  #       understanding of the IMAP protocol.  This includes attempting
  #       commands from the wrong client state; for instance, attempting
  #       to perform a SEARCH command without having SELECTed a current
  #       mailbox.  It can also signal an internal server
  #       failure (such as a disk crash) has occurred.
  #
  # BYE:: the server is saying goodbye.  This can be part of a normal
  #       logout sequence, and can be used as part of a login sequence
  #       to indicate that the server is (for some reason) unwilling
  #       to accept your connection.  As a response to any other command,
  #       it indicates either that the server is shutting down, or that
  #       the server is timing out the client connection due to inactivity.
  #
  # These three error response are represented by the errors
  # Net::IMAP::NoResponseError, Net::IMAP::BadResponseError, and
  # Net::IMAP::ByeResponseError, all of which are subclasses of
  # Net::IMAP::ResponseError.  Essentially, all methods that involve
  # sending a request to the server can generate one of these errors.
  # Only the most pertinent instances have been documented below.
  #
  # Because the IMAP class uses Sockets for communication, its methods
  # are also susceptible to the various errors that can occur when
  # working with sockets.  These are generally represented as
  # Errno errors.  For instance, any method that involves sending a
  # request to the server and/or receiving a response from it could
  # raise an Errno::EPIPE error if the network connection unexpectedly
  # goes down.  See the socket(7), ip(7), tcp(7), socket(2), connect(2),
  # and associated man pages.
  #
  # Finally, a Net::IMAP::DataFormatError is thrown if low-level data
  # is found to be in an incorrect format (for instance, when converting
  # between UTF-8 and UTF-16), and Net::IMAP::ResponseParseError is
  # thrown if a server response is non-parseable.
  #
  #
  # == References
  #
  # [[IMAP]]
  #    M. Crispin, "INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1",
  #    RFC 2060, December 1996.  (Note: since obsoleted by RFC 3501)
  #
  # [[LANGUAGE-TAGS]]
  #    Alvestrand, H., "Tags for the Identification of
  #    Languages", RFC 1766, March 1995.
  #
  # [[MD5]]
  #    Myers, J., and M. Rose, "The Content-MD5 Header Field", RFC
  #    1864, October 1995.
  #
  # [[MIME-IMB]]
  #    Freed, N., and N. Borenstein, "MIME (Multipurpose Internet
  #    Mail Extensions) Part One: Format of Internet Message Bodies", RFC
  #    2045, November 1996.
  #
  # [[RFC-822]]
  #    Crocker, D., "Standard for the Format of ARPA Internet Text
  #    Messages", STD 11, RFC 822, University of Delaware, August 1982.
  #
  # [[RFC-2087]]
  #    Myers, J., "IMAP4 QUOTA extension", RFC 2087, January 1997.
  #
  # [[RFC-2086]]
  #    Myers, J., "IMAP4 ACL extension", RFC 2086, January 1997.
  #
  # [[RFC-2195]]
  #    Klensin, J., Catoe, R., and Krumviede, P., "IMAP/POP AUTHorize Extension
  #    for Simple Challenge/Response", RFC 2195, September 1997.
  #
  # [[SORT-THREAD-EXT]]
  #    Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL - SORT and THREAD
  #    Extensions", draft-ietf-imapext-sort, May 2003.
  #
  # [[OSSL]]
  #    http://www.openssl.org
  #
  # [[RSSL]]
  #    http://savannah.gnu.org/projects/rubypki
  #
  # [[UTF7]]
  #    Goldsmith, D. and Davis, M., "UTF-7: A Mail-Safe Transformation Format of
  #    Unicode", RFC 2152, May 1997.
  #
  class IMAP < Protocol
    include MonitorMixin
    if defined?(OpenSSL::SSL)
      include OpenSSL
      include SSL
    end

    #  Returns an initial greeting response from the server.
    attr_reader :greeting

    # Returns recorded untagged responses.  For example:
    #
    #   imap.select("inbox")
    #   p imap.responses["EXISTS"][-1]
    #   #=> 2
    #   p imap.responses["UIDVALIDITY"][-1]
    #   #=> 968263756
    attr_reader :responses

    # Returns all response handlers.
    attr_reader :response_handlers

    # Seconds to wait until a connection is opened.
    # If the IMAP object cannot open a connection within this time,
    # it raises a Net::OpenTimeout exception. The default value is 30 seconds.
    attr_reader :open_timeout

    # The thread to receive exceptions.
    attr_accessor :client_thread

    # Flag indicating a message has been seen.
    SEEN = :Seen

    # Flag indicating a message has been answered.
    ANSWERED = :Answered

    # Flag indicating a message has been flagged for special or urgent
    # attention.
    FLAGGED = :Flagged

    # Flag indicating a message has been marked for deletion.  This
    # will occur when the mailbox is closed or expunged.
    DELETED = :Deleted

    # Flag indicating a message is only a draft or work-in-progress version.
    DRAFT = :Draft

    # Flag indicating that the message is "recent," meaning that this
    # session is the first session in which the client has been notified
    # of this message.
    RECENT = :Recent

    # Flag indicating that a mailbox context name cannot contain
    # children.
    NOINFERIORS = :Noinferiors

    # Flag indicating that a mailbox is not selected.
    NOSELECT = :Noselect

    # Flag indicating that a mailbox has been marked "interesting" by
    # the server; this commonly indicates that the mailbox contains
    # new messages.
    MARKED = :Marked

    # Flag indicating that the mailbox does not contains new messages.
    UNMARKED = :Unmarked

    # Returns the debug mode.
    def self.debug
      return @@debug
    end

    # Sets the debug mode.
    def self.debug=(val)
      return @@debug = val
    end

    # Returns the max number of flags interned to symbols.
    def self.max_flag_count
      return @@max_flag_count
    end

    # Sets the max number of flags interned to symbols.
    def self.max_flag_count=(count)
      @@max_flag_count = count
    end

    # Adds an authenticator for Net::IMAP#authenticate.  +auth_type+
    # is the type of authentication this authenticator supports
    # (for instance, "LOGIN").  The +authenticator+ is an object
    # which defines a process() method to handle authentication with
    # the server.  See Net::IMAP::LoginAuthenticator,
    # Net::IMAP::CramMD5Authenticator, and Net::IMAP::DigestMD5Authenticator
    # for examples.
    #
    #
    # If +auth_type+ refers to an existing authenticator, it will be
    # replaced by the new one.
    def self.add_authenticator(auth_type, authenticator)
      @@authenticators[auth_type] = authenticator
    end

    # The default port for IMAP connections, port 143
    def self.default_port
      return PORT
    end

    # The default port for IMAPS connections, port 993
    def self.default_tls_port
      return SSL_PORT
    end

    class << self
      alias default_imap_port default_port
      alias default_imaps_port default_tls_port
      alias default_ssl_port default_tls_port
    end

    # Disconnects from the server.
    def disconnect
      return if disconnected?
      begin
        begin
          # try to call SSL::SSLSocket#io.
          @sock.io.shutdown
        rescue NoMethodError
          # @sock is not an SSL::SSLSocket.
          @sock.shutdown
        end
      rescue Errno::ENOTCONN
        # ignore `Errno::ENOTCONN: Socket is not connected' on some platforms.
      rescue Exception => e
        @receiver_thread.raise(e)
      end
      @receiver_thread.join
      synchronize do
        @sock.close
      end
      raise e if e
    end

    # Returns true if disconnected from the server.
    def disconnected?
      return @sock.closed?
    end

    # Sends a CAPABILITY command, and returns an array of
    # capabilities that the server supports.  Each capability
    # is a string.  See [IMAP] for a list of possible
    # capabilities.
    #
    # Note that the Net::IMAP class does not modify its
    # behaviour according to the capabilities of the server;
    # it is up to the user of the class to ensure that
    # a certain capability is supported by a server before
    # using it.
    def capability
      synchronize do
        send_command("CAPABILITY")
        return @responses.delete("CAPABILITY")[-1]
      end
    end

    # Sends a NOOP command to the server. It does nothing.
    def noop
      send_command("NOOP")
    end

    # Sends a LOGOUT command to inform the server that the client is
    # done with the connection.
    def logout
      send_command("LOGOUT")
    end

    # Sends a STARTTLS command to start TLS session.
    def starttls(options = {}, verify = true)
      send_command("STARTTLS") do |resp|
        if resp.kind_of?(TaggedResponse) && resp.name == "OK"
          begin
            # for backward compatibility
            certs = options.to_str
            options = create_ssl_params(certs, verify)
          rescue NoMethodError
          end
          start_tls_session(options)
        end
      end
    end

    # Sends an AUTHENTICATE command to authenticate the client.
    # The +auth_type+ parameter is a string that represents
    # the authentication mechanism to be used. Currently Net::IMAP
    # supports the authentication mechanisms:
    #
    #   LOGIN:: login using cleartext user and password.
    #   CRAM-MD5:: login with cleartext user and encrypted password
    #              (see [RFC-2195] for a full description).  This
    #              mechanism requires that the server have the user's
    #              password stored in clear-text password.
    #
    # For both of these mechanisms, there should be two +args+: username
    # and (cleartext) password.  A server may not support one or the other
    # of these mechanisms; check #capability() for a capability of
    # the form "AUTH=LOGIN" or "AUTH=CRAM-MD5".
    #
    # Authentication is done using the appropriate authenticator object:
    # see @@authenticators for more information on plugging in your own
    # authenticator.
    #
    # For example:
    #
    #    imap.authenticate('LOGIN', user, password)
    #
    # A Net::IMAP::NoResponseError is raised if authentication fails.
    def authenticate(auth_type, *args)
      auth_type = auth_type.upcase
      unless @@authenticators.has_key?(auth_type)
        raise ArgumentError,
          format('unknown auth type - "%s"', auth_type)
      end
      authenticator = @@authenticators[auth_type].new(*args)
      send_command("AUTHENTICATE", auth_type) do |resp|
        if resp.instance_of?(ContinuationRequest)
          data = authenticator.process(resp.data.text.unpack("m")[0])
          s = [data].pack("m0")
          send_string_data(s)
          put_string(CRLF)
        end
      end
    end

    # Sends a LOGIN command to identify the client and carries
    # the plaintext +password+ authenticating this +user+.  Note
    # that, unlike calling #authenticate() with an +auth_type+
    # of "LOGIN", #login() does *not* use the login authenticator.
    #
    # A Net::IMAP::NoResponseError is raised if authentication fails.
    def login(user, password)
      send_command("LOGIN", user, password)
    end

    # Sends a SELECT command to select a +mailbox+ so that messages
    # in the +mailbox+ can be accessed.
    #
    # After you have selected a mailbox, you may retrieve the
    # number of items in that mailbox from @responses["EXISTS"][-1],
    # and the number of recent messages from @responses["RECENT"][-1].
    # Note that these values can change if new messages arrive
    # during a session; see #add_response_handler() for a way of
    # detecting this event.
    #
    # A Net::IMAP::NoResponseError is raised if the mailbox does not
    # exist or is for some reason non-selectable.
    def select(mailbox)
      synchronize do
        @responses.clear
        send_command("SELECT", mailbox)
      end
    end

    # Sends a EXAMINE command to select a +mailbox+ so that messages
    # in the +mailbox+ can be accessed.  Behaves the same as #select(),
    # except that the selected +mailbox+ is identified as read-only.
    #
    # A Net::IMAP::NoResponseError is raised if the mailbox does not
    # exist or is for some reason non-examinable.
    def examine(mailbox)
      synchronize do
        @responses.clear
        send_command("EXAMINE", mailbox)
      end
    end

    # Sends a CREATE command to create a new +mailbox+.
    #
    # A Net::IMAP::NoResponseError is raised if a mailbox with that name
    # cannot be created.
    def create(mailbox)
      send_command("CREATE", mailbox)
    end

    # Sends a DELETE command to remove the +mailbox+.
    #
    # A Net::IMAP::NoResponseError is raised if a mailbox with that name
    # cannot be deleted, either because it does not exist or because the
    # client does not have permission to delete it.
    def delete(mailbox)
      send_command("DELETE", mailbox)
    end

    # Sends a RENAME command to change the name of the +mailbox+ to
    # +newname+.
    #
    # A Net::IMAP::NoResponseError is raised if a mailbox with the
    # name +mailbox+ cannot be renamed to +newname+ for whatever
    # reason; for instance, because +mailbox+ does not exist, or
    # because there is already a mailbox with the name +newname+.
    def rename(mailbox, newname)
      send_command("RENAME", mailbox, newname)
    end

    # Sends a SUBSCRIBE command to add the specified +mailbox+ name to
    # the server's set of "active" or "subscribed" mailboxes as returned
    # by #lsub().
    #
    # A Net::IMAP::NoResponseError is raised if +mailbox+ cannot be
    # subscribed to; for instance, because it does not exist.
    def subscribe(mailbox)
      send_command("SUBSCRIBE", mailbox)
    end

    # Sends a UNSUBSCRIBE command to remove the specified +mailbox+ name
    # from the server's set of "active" or "subscribed" mailboxes.
    #
    # A Net::IMAP::NoResponseError is raised if +mailbox+ cannot be
    # unsubscribed from; for instance, because the client is not currently
    # subscribed to it.
    def unsubscribe(mailbox)
      send_command("UNSUBSCRIBE", mailbox)
    end

    # Sends a LIST command, and returns a subset of names from
    # the complete set of all names available to the client.
    # +refname+ provides a context (for instance, a base directory
    # in a directory-based mailbox hierarchy).  +mailbox+ specifies
    # a mailbox or (via wildcards) mailboxes under that context.
    # Two wildcards may be used in +mailbox+: '*', which matches
    # all characters *including* the hierarchy delimiter (for instance,
    # '/' on a UNIX-hosted directory-based mailbox hierarchy); and '%',
    # which matches all characters *except* the hierarchy delimiter.
    #
    # If +refname+ is empty, +mailbox+ is used directly to determine
    # which mailboxes to match.  If +mailbox+ is empty, the root
    # name of +refname+ and the hierarchy delimiter are returned.
    #
    # The return value is an array of +Net::IMAP::MailboxList+. For example:
    #
    #   imap.create("foo/bar")
    #   imap.create("foo/baz")
    #   p imap.list("", "foo/%")
    #   #=> [#<Net::IMAP::MailboxList attr=[:Noselect], delim="/", name="foo/">, \\
    #        #<Net::IMAP::MailboxList attr=[:Noinferiors, :Marked], delim="/", name="foo/bar">, \\
    #        #<Net::IMAP::MailboxList attr=[:Noinferiors], delim="/", name="foo/baz">]
    def list(refname, mailbox)
      synchronize do
        send_command("LIST", refname, mailbox)
        return @responses.delete("LIST")
      end
    end

    # Sends a XLIST command, and returns a subset of names from
    # the complete set of all names available to the client.
    # +refname+ provides a context (for instance, a base directory
    # in a directory-based mailbox hierarchy).  +mailbox+ specifies
    # a mailbox or (via wildcards) mailboxes under that context.
    # Two wildcards may be used in +mailbox+: '*', which matches
    # all characters *including* the hierarchy delimiter (for instance,
    # '/' on a UNIX-hosted directory-based mailbox hierarchy); and '%',
    # which matches all characters *except* the hierarchy delimiter.
    #
    # If +refname+ is empty, +mailbox+ is used directly to determine
    # which mailboxes to match.  If +mailbox+ is empty, the root
    # name of +refname+ and the hierarchy delimiter are returned.
    #
    # The XLIST command is like the LIST command except that the flags
    # returned refer to the function of the folder/mailbox, e.g. :Sent
    #
    # The return value is an array of +Net::IMAP::MailboxList+. For example:
    #
    #   imap.create("foo/bar")
    #   imap.create("foo/baz")
    #   p imap.xlist("", "foo/%")
    #   #=> [#<Net::IMAP::MailboxList attr=[:Noselect], delim="/", name="foo/">, \\
    #        #<Net::IMAP::MailboxList attr=[:Noinferiors, :Marked], delim="/", name="foo/bar">, \\
    #        #<Net::IMAP::MailboxList attr=[:Noinferiors], delim="/", name="foo/baz">]
    def xlist(refname, mailbox)
      synchronize do
        send_command("XLIST", refname, mailbox)
        return @responses.delete("XLIST")
      end
    end

    # Sends the GETQUOTAROOT command along with the specified +mailbox+.
    # This command is generally available to both admin and user.
    # If this mailbox exists, it returns an array containing objects of type
    # Net::IMAP::MailboxQuotaRoot and Net::IMAP::MailboxQuota.
    def getquotaroot(mailbox)
      synchronize do
        send_command("GETQUOTAROOT", mailbox)
        result = []
        result.concat(@responses.delete("QUOTAROOT"))
        result.concat(@responses.delete("QUOTA"))
        return result
      end
    end

    # Sends the GETQUOTA command along with specified +mailbox+.
    # If this mailbox exists, then an array containing a
    # Net::IMAP::MailboxQuota object is returned.  This
    # command is generally only available to server admin.
    def getquota(mailbox)
      synchronize do
        send_command("GETQUOTA", mailbox)
        return @responses.delete("QUOTA")
      end
    end

    # Sends a SETQUOTA command along with the specified +mailbox+ and
    # +quota+.  If +quota+ is nil, then +quota+ will be unset for that
    # mailbox.  Typically one needs to be logged in as a server admin
    # for this to work.  The IMAP quota commands are described in
    # [RFC-2087].
    def setquota(mailbox, quota)
      if quota.nil?
        data = '()'
      else
        data = '(STORAGE ' + quota.to_s + ')'
      end
      send_command("SETQUOTA", mailbox, RawData.new(data))
    end

    # Sends the SETACL command along with +mailbox+, +user+ and the
    # +rights+ that user is to have on that mailbox.  If +rights+ is nil,
    # then that user will be stripped of any rights to that mailbox.
    # The IMAP ACL commands are described in [RFC-2086].
    def setacl(mailbox, user, rights)
      if rights.nil?
        send_command("SETACL", mailbox, user, "")
      else
        send_command("SETACL", mailbox, user, rights)
      end
    end

    # Send the GETACL command along with a specified +mailbox+.
    # If this mailbox exists, an array containing objects of
    # Net::IMAP::MailboxACLItem will be returned.
    def getacl(mailbox)
      synchronize do
        send_command("GETACL", mailbox)
        return @responses.delete("ACL")[-1]
      end
    end

    # Sends a LSUB command, and returns a subset of names from the set
    # of names that the user has declared as being "active" or
    # "subscribed."  +refname+ and +mailbox+ are interpreted as
    # for #list().
    # The return value is an array of +Net::IMAP::MailboxList+.
    def lsub(refname, mailbox)
      synchronize do
        send_command("LSUB", refname, mailbox)
        return @responses.delete("LSUB")
      end
    end

    # Sends a STATUS command, and returns the status of the indicated
    # +mailbox+. +attr+ is a list of one or more attributes whose
    # statuses are to be requested.  Supported attributes include:
    #
    #   MESSAGES:: the number of messages in the mailbox.
    #   RECENT:: the number of recent messages in the mailbox.
    #   UNSEEN:: the number of unseen messages in the mailbox.
    #
    # The return value is a hash of attributes. For example:
    #
    #   p imap.status("inbox", ["MESSAGES", "RECENT"])
    #   #=> {"RECENT"=>0, "MESSAGES"=>44}
    #
    # A Net::IMAP::NoResponseError is raised if status values
    # for +mailbox+ cannot be returned; for instance, because it
    # does not exist.
    def status(mailbox, attr)
      synchronize do
        send_command("STATUS", mailbox, attr)
        return @responses.delete("STATUS")[-1].attr
      end
    end

    # Sends a APPEND command to append the +message+ to the end of
    # the +mailbox+. The optional +flags+ argument is an array of
    # flags initially passed to the new message.  The optional
    # +date_time+ argument specifies the creation time to assign to the
    # new message; it defaults to the current time.
    # For example:
    #
    #   imap.append("inbox", <<EOF.gsub(/\n/, "\r\n"), [:Seen], Time.now)
    #   Subject: hello
    #   From: shugo@ruby-lang.org
    #   To: shugo@ruby-lang.org
    #
    #   hello world
    #   EOF
    #
    # A Net::IMAP::NoResponseError is raised if the mailbox does
    # not exist (it is not created automatically), or if the flags,
    # date_time, or message arguments contain errors.
    def append(mailbox, message, flags = nil, date_time = nil)
      args = []
      if flags
        args.push(flags)
      end
      args.push(date_time) if date_time
      args.push(Literal.new(message))
      send_command("APPEND", mailbox, *args)
    end

    # Sends a CHECK command to request a checkpoint of the currently
    # selected mailbox.  This performs implementation-specific
    # housekeeping; for instance, reconciling the mailbox's
    # in-memory and on-disk state.
    def check
      send_command("CHECK")
    end

    # Sends a CLOSE command to close the currently selected mailbox.
    # The CLOSE command permanently removes from the mailbox all
    # messages that have the \Deleted flag set.
    def close
      send_command("CLOSE")
    end

    # Sends a EXPUNGE command to permanently remove from the currently
    # selected mailbox all messages that have the \Deleted flag set.
    def expunge
      synchronize do
        send_command("EXPUNGE")
        return @responses.delete("EXPUNGE")
      end
    end

    # Sends a SEARCH command to search the mailbox for messages that
    # match the given searching criteria, and returns message sequence
    # numbers.  +keys+ can either be a string holding the entire
    # search string, or a single-dimension array of search keywords and
    # arguments.  The following are some common search criteria;
    # see [IMAP] section 6.4.4 for a full list.
    #
    # <message set>:: a set of message sequence numbers.  ',' indicates
    #                 an interval, ':' indicates a range.  For instance,
    #                 '2,10:12,15' means "2,10,11,12,15".
    #
    # BEFORE <date>:: messages with an internal date strictly before
    #                 <date>.  The date argument has a format similar
    #                 to 8-Aug-2002.
    #
    # BODY <string>:: messages that contain <string> within their body.
    #
    # CC <string>:: messages containing <string> in their CC field.
    #
    # FROM <string>:: messages that contain <string> in their FROM field.
    #
    # NEW:: messages with the \Recent, but not the \Seen, flag set.
    #
    # NOT <search-key>:: negate the following search key.
    #
    # OR <search-key> <search-key>:: "or" two search keys together.
    #
    # ON <date>:: messages with an internal date exactly equal to <date>,
    #             which has a format similar to 8-Aug-2002.
    #
    # SINCE <date>:: messages with an internal date on or after <date>.
    #
    # SUBJECT <string>:: messages with <string> in their subject.
    #
    # TO <string>:: messages with <string> in their TO field.
    #
    # For example:
    #
    #   p imap.search(["SUBJECT", "hello", "NOT", "NEW"])
    #   #=> [1, 6, 7, 8]
    def search(keys, charset = nil)
      return search_internal("SEARCH", keys, charset)
    end

    # Similar to #search(), but returns unique identifiers.
    def uid_search(keys, charset = nil)
      return search_internal("UID SEARCH", keys, charset)
    end

    # Sends a FETCH command to retrieve data associated with a message
    # in the mailbox.
    #
    # The +set+ parameter is a number or a range between two numbers,
    # or an array of those.  The number is a message sequence number,
    # where -1 represents a '*' for use in range notation like 100..-1
    # being interpreted as '100:*'.  Beware that the +exclude_end?+
    # property of a Range object is ignored, and the contents of a
    # range are independent of the order of the range endpoints as per
    # the protocol specification, so 1...5, 5..1 and 5...1 are all
    # equivalent to 1..5.
    #
    # +attr+ is a list of attributes to fetch; see the documentation
    # for Net::IMAP::FetchData for a list of valid attributes.
    #
    # The return value is an array of Net::IMAP::FetchData or nil
    # (instead of an empty array) if there is no matching message.
    #
    # For example:
    #
    #   p imap.fetch(6..8, "UID")
    #   #=> [#<Net::IMAP::FetchData seqno=6, attr={"UID"=>98}>, \\
    #        #<Net::IMAP::FetchData seqno=7, attr={"UID"=>99}>, \\
    #        #<Net::IMAP::FetchData seqno=8, attr={"UID"=>100}>]
    #   p imap.fetch(6, "BODY[HEADER.FIELDS (SUBJECT)]")
    #   #=> [#<Net::IMAP::FetchData seqno=6, attr={"BODY[HEADER.FIELDS (SUBJECT)]"=>"Subject: test\r\n\r\n"}>]
    #   data = imap.uid_fetch(98, ["RFC822.SIZE", "INTERNALDATE"])[0]
    #   p data.seqno
    #   #=> 6
    #   p data.attr["RFC822.SIZE"]
    #   #=> 611
    #   p data.attr["INTERNALDATE"]
    #   #=> "12-Oct-2000 22:40:59 +0900"
    #   p data.attr["UID"]
    #   #=> 98
    def fetch(set, attr, mod = nil)
      return fetch_internal("FETCH", set, attr, mod)
    end

    # Similar to #fetch(), but +set+ contains unique identifiers.
    def uid_fetch(set, attr, mod = nil)
      return fetch_internal("UID FETCH", set, attr, mod)
    end

    # Sends a STORE command to alter data associated with messages
    # in the mailbox, in particular their flags. The +set+ parameter
    # is a number, an array of numbers, or a Range object. Each number
    # is a message sequence number.  +attr+ is the name of a data item
    # to store: 'FLAGS' will replace the message's flag list
    # with the provided one, '+FLAGS' will add the provided flags,
    # and '-FLAGS' will remove them.  +flags+ is a list of flags.
    #
    # The return value is an array of Net::IMAP::FetchData. For example:
    #
    #   p imap.store(6..8, "+FLAGS", [:Deleted])
    #   #=> [#<Net::IMAP::FetchData seqno=6, attr={"FLAGS"=>[:Seen, :Deleted]}>, \\
    #        #<Net::IMAP::FetchData seqno=7, attr={"FLAGS"=>[:Seen, :Deleted]}>, \\
    #        #<Net::IMAP::FetchData seqno=8, attr={"FLAGS"=>[:Seen, :Deleted]}>]
    def store(set, attr, flags)
      return store_internal("STORE", set, attr, flags)
    end

    # Similar to #store(), but +set+ contains unique identifiers.
    def uid_store(set, attr, flags)
      return store_internal("UID STORE", set, attr, flags)
    end

    # Sends a COPY command to copy the specified message(s) to the end
    # of the specified destination +mailbox+. The +set+ parameter is
    # a number, an array of numbers, or a Range object. The number is
    # a message sequence number.
    def copy(set, mailbox)
      copy_internal("COPY", set, mailbox)
    end

    # Similar to #copy(), but +set+ contains unique identifiers.
    def uid_copy(set, mailbox)
      copy_internal("UID COPY", set, mailbox)
    end

    # Sends a MOVE command to move the specified message(s) to the end
    # of the specified destination +mailbox+. The +set+ parameter is
    # a number, an array of numbers, or a Range object. The number is
    # a message sequence number.
    # The IMAP MOVE extension is described in [RFC-6851].
    def move(set, mailbox)
      copy_internal("MOVE", set, mailbox)
    end

    # Similar to #move(), but +set+ contains unique identifiers.
    def uid_move(set, mailbox)
      copy_internal("UID MOVE", set, mailbox)
    end

    # Sends a SORT command to sort messages in the mailbox.
    # Returns an array of message sequence numbers. For example:
    #
    #   p imap.sort(["FROM"], ["ALL"], "US-ASCII")
    #   #=> [1, 2, 3, 5, 6, 7, 8, 4, 9]
    #   p imap.sort(["DATE"], ["SUBJECT", "hello"], "US-ASCII")
    #   #=> [6, 7, 8, 1]
    #
    # See [SORT-THREAD-EXT] for more details.
    def sort(sort_keys, search_keys, charset)
      return sort_internal("SORT", sort_keys, search_keys, charset)
    end

    # Similar to #sort(), but returns an array of unique identifiers.
    def uid_sort(sort_keys, search_keys, charset)
      return sort_internal("UID SORT", sort_keys, search_keys, charset)
    end

    # Adds a response handler. For example, to detect when
    # the server sends a new EXISTS response (which normally
    # indicates new messages being added to the mailbox),
    # add the following handler after selecting the
    # mailbox:
    #
    #   imap.add_response_handler { |resp|
    #     if resp.kind_of?(Net::IMAP::UntaggedResponse) and resp.name == "EXISTS"
    #       puts "Mailbox now has #{resp.data} messages"
    #     end
    #   }
    #
    def add_response_handler(handler = nil, &block)
      raise ArgumentError, "two Procs are passed" if handler && block
      @response_handlers.push(block || handler)
    end

    # Removes the response handler.
    def remove_response_handler(handler)
      @response_handlers.delete(handler)
    end

    # Similar to #search(), but returns message sequence numbers in threaded
    # format, as a Net::IMAP::ThreadMember tree.  The supported algorithms
    # are:
    #
    # ORDEREDSUBJECT:: split into single-level threads according to subject,
    #                  ordered by date.
    # REFERENCES:: split into threads by parent/child relationships determined
    #              by which message is a reply to which.
    #
    # Unlike #search(), +charset+ is a required argument.  US-ASCII
    # and UTF-8 are sample values.
    #
    # See [SORT-THREAD-EXT] for more details.
    def thread(algorithm, search_keys, charset)
      return thread_internal("THREAD", algorithm, search_keys, charset)
    end

    # Similar to #thread(), but returns unique identifiers instead of
    # message sequence numbers.
    def uid_thread(algorithm, search_keys, charset)
      return thread_internal("UID THREAD", algorithm, search_keys, charset)
    end

    # Sends an IDLE command that waits for notifications of new or expunged
    # messages.  Yields responses from the server during the IDLE.
    #
    # Use #idle_done() to leave IDLE.
    #
    # If +timeout+ is given, this method returns after +timeout+ seconds passed.
    # +timeout+ can be used for keep-alive.  For example, the following code
    # checks the connection for each 60 seconds.
    #
    #   loop do
    #     imap.idle(60) do |res|
    #       ...
    #     end
    #   end
    def idle(timeout = nil, &response_handler)
      raise LocalJumpError, "no block given" unless response_handler

      response = nil

      synchronize do
        tag = Thread.current[:net_imap_tag] = generate_tag
        put_string("#{tag} IDLE#{CRLF}")

        begin
          add_response_handler(&response_handler)
          @idle_done_cond = new_cond
          @idle_done_cond.wait(timeout)
          @idle_done_cond = nil
          if @receiver_thread_terminating
            raise @exception || Net::IMAP::Error.new("connection closed")
          end
        ensure
          unless @receiver_thread_terminating
            remove_response_handler(response_handler)
            put_string("DONE#{CRLF}")
            response = get_tagged_response(tag, "IDLE")
          end
        end
      end

      return response
    end

    # Leaves IDLE.
    def idle_done
      synchronize do
        if @idle_done_cond.nil?
          raise Net::IMAP::Error, "not during IDLE"
        end
        @idle_done_cond.signal
      end
    end

    # Decode a string from modified UTF-7 format to UTF-8.
    #
    # UTF-7 is a 7-bit encoding of Unicode [UTF7].  IMAP uses a
    # slightly modified version of this to encode mailbox names
    # containing non-ASCII characters; see [IMAP] section 5.1.3.
    #
    # Net::IMAP does _not_ automatically encode and decode
    # mailbox names to and from UTF-7.
    def self.decode_utf7(s)
      return s.gsub(/&([^-]+)?-/n) {
        if $1
          ($1.tr(",", "/") + "===").unpack1("m").encode(Encoding::UTF_8, Encoding::UTF_16BE)
        else
          "&"
        end
      }
    end

    # Encode a string from UTF-8 format to modified UTF-7.
    def self.encode_utf7(s)
      return s.gsub(/(&)|[^\x20-\x7e]+/) {
        if $1
          "&-"
        else
          base64 = [$&.encode(Encoding::UTF_16BE)].pack("m0")
          "&" + base64.delete("=").tr("/", ",") + "-"
        end
      }.force_encoding("ASCII-8BIT")
    end

    # Formats +time+ as an IMAP-style date.
    def self.format_date(time)
      return time.strftime('%d-%b-%Y')
    end

    # Formats +time+ as an IMAP-style date-time.
    def self.format_datetime(time)
      return time.strftime('%d-%b-%Y %H:%M %z')
    end

    private

    CRLF = "\r\n"      # :nodoc:
    PORT = 143         # :nodoc:
    SSL_PORT = 993   # :nodoc:

    @@debug = false
    @@authenticators = {}
    @@max_flag_count = 10000

    # :call-seq:
    #    Net::IMAP.new(host, options = {})
    #
    # Creates a new Net::IMAP object and connects it to the specified
    # +host+.
    #
    # +options+ is an option hash, each key of which is a symbol.
    #
    # The available options are:
    #
    # port::  Port number (default value is 143 for imap, or 993 for imaps)
    # ssl::   If options[:ssl] is true, then an attempt will be made
    #         to use SSL (now TLS) to connect to the server.  For this to work
    #         OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to
    #         be installed.
    #         If options[:ssl] is a hash, it's passed to
    #         OpenSSL::SSL::SSLContext#set_params as parameters.
    # open_timeout:: Seconds to wait until a connection is opened
    #
    # The most common errors are:
    #
    # Errno::ECONNREFUSED:: Connection refused by +host+ or an intervening
    #                       firewall.
    # Errno::ETIMEDOUT:: Connection timed out (possibly due to packets
    #                    being dropped by an intervening firewall).
    # Errno::ENETUNREACH:: There is no route to that network.
    # SocketError:: Hostname not known or other socket error.
    # Net::IMAP::ByeResponseError:: The connected to the host was successful, but
    #                               it immediately said goodbye.
    def initialize(host, port_or_options = {},
                   usessl = false, certs = nil, verify = true)
      super()
      @host = host
      begin
        options = port_or_options.to_hash
      rescue NoMethodError
        # for backward compatibility
        options = {}
        options[:port] = port_or_options
        if usessl
          options[:ssl] = create_ssl_params(certs, verify)
        end
      end
      @port = options[:port] || (options[:ssl] ? SSL_PORT : PORT)
      @tag_prefix = "RUBY"
      @tagno = 0
      @open_timeout = options[:open_timeout] || 30
      @parser = ResponseParser.new
      @sock = tcp_socket(@host, @port)
      begin
        if options[:ssl]
          start_tls_session(options[:ssl])
          @usessl = true
        else
          @usessl = false
        end
        @responses = Hash.new([].freeze)
        @tagged_responses = {}
        @response_handlers = []
        @tagged_response_arrival = new_cond
        @continued_command_tag = nil
        @continuation_request_arrival = new_cond
        @continuation_request_exception = nil
        @idle_done_cond = nil
        @logout_command_tag = nil
        @debug_output_bol = true
        @exception = nil

        @greeting = get_response
        if @greeting.nil?
          raise Error, "connection closed"
        end
        if @greeting.name == "BYE"
          raise ByeResponseError, @greeting
        end

        @client_thread = Thread.current
        @receiver_thread = Thread.start {
          begin
            receive_responses
          rescue Exception
          end
        }
        @receiver_thread_terminating = false
      rescue Exception
        @sock.close
        raise
      end
    end

    def tcp_socket(host, port)
      s = Socket.tcp(host, port, :connect_timeout => @open_timeout)
      s.setsockopt(:SOL_SOCKET, :SO_KEEPALIVE, true)
      s
    rescue Errno::ETIMEDOUT
      raise Net::OpenTimeout, "Timeout to open TCP connection to " +
        "#{host}:#{port} (exceeds #{@open_timeout} seconds)"
    end

    def receive_responses
      connection_closed = false
      until connection_closed
        synchronize do
          @exception = nil
        end
        begin
          resp = get_response
        rescue Exception => e
          synchronize do
            @sock.close
            @exception = e
          end
          break
        end
        unless resp
          synchronize do
            @exception = EOFError.new("end of file reached")
          end
          break
        end
        begin
          synchronize do
            case resp
            when TaggedResponse
              @tagged_responses[resp.tag] = resp
              @tagged_response_arrival.broadcast
              case resp.tag
              when @logout_command_tag
                return
              when @continued_command_tag
                @continuation_request_exception =
                  RESPONSE_ERRORS[resp.name].new(resp)
                @continuation_request_arrival.signal
              end
            when UntaggedResponse
              record_response(resp.name, resp.data)
              if resp.data.instance_of?(ResponseText) &&
                  (code = resp.data.code)
                record_response(code.name, code.data)
              end
              if resp.name == "BYE" && @logout_command_tag.nil?
                @sock.close
                @exception = ByeResponseError.new(resp)
                connection_closed = true
              end
            when ContinuationRequest
              @continuation_request_arrival.signal
            end
            @response_handlers.each do |handler|
              handler.call(resp)
            end
          end
        rescue Exception => e
          @exception = e
          synchronize do
            @tagged_response_arrival.broadcast
            @continuation_request_arrival.broadcast
          end
        end
      end
      synchronize do
        @receiver_thread_terminating = true
        @tagged_response_arrival.broadcast
        @continuation_request_arrival.broadcast
        if @idle_done_cond
          @idle_done_cond.signal
        end
      end
    end

    def get_tagged_response(tag, cmd)
      until @tagged_responses.key?(tag)
        raise @exception if @exception
        @tagged_response_arrival.wait
      end
      resp = @tagged_responses.delete(tag)
      case resp.name
      when /\A(?:OK)\z/ni
        return resp
      when /\A(?:NO)\z/ni
        raise NoResponseError, resp
      when /\A(?:BAD)\z/ni
        raise BadResponseError, resp
      else
        raise UnknownResponseError, resp
      end
    end

    def get_response
      buff = String.new
      while true
        s = @sock.gets(CRLF)
        break unless s
        buff.concat(s)
        if /\{(\d+)\}\r\n/n =~ s
          s = @sock.read($1.to_i)
          buff.concat(s)
        else
          break
        end
      end
      return nil if buff.length == 0
      if @@debug
        $stderr.print(buff.gsub(/^/n, "S: "))
      end
      return @parser.parse(buff)
    end

    def record_response(name, data)
      unless @responses.has_key?(name)
        @responses[name] = []
      end
      @responses[name].push(data)
    end

    def send_command(cmd, *args, &block)
      synchronize do
        args.each do |i|
          validate_data(i)
        end
        tag = generate_tag
        put_string(tag + " " + cmd)
        args.each do |i|
          put_string(" ")
          send_data(i, tag)
        end
        put_string(CRLF)
        if cmd == "LOGOUT"
          @logout_command_tag = tag
        end
        if block
          add_response_handler(&block)
        end
        begin
          return get_tagged_response(tag, cmd)
        ensure
          if block
            remove_response_handler(block)
          end
        end
      end
    end

    def generate_tag
      @tagno += 1
      return format("%s%04d", @tag_prefix, @tagno)
    end

    def put_string(str)
      @sock.print(str)
      if @@debug
        if @debug_output_bol
          $stderr.print("C: ")
        end
        $stderr.print(str.gsub(/\n(?!\z)/n, "\nC: "))
        if /\r\n\z/n.match(str)
          @debug_output_bol = true
        else
          @debug_output_bol = false
        end
      end
    end

    def validate_data(data)
      case data
      when nil
      when String
      when Integer
        NumValidator.ensure_number(data)
      when Array
        if data[0] == 'CHANGEDSINCE'
          NumValidator.ensure_mod_sequence_value(data[1])
        else
          data.each do |i|
            validate_data(i)
          end
        end
      when Time
      when Symbol
      else
        data.validate
      end
    end

    def send_data(data, tag = nil)
      case data
      when nil
        put_string("NIL")
      when String
        send_string_data(data, tag)
      when Integer
        send_number_data(data)
      when Array
        send_list_data(data, tag)
      when Time
        send_time_data(data)
      when Symbol
        send_symbol_data(data)
      else
        data.send_data(self, tag)
      end
    end

    def send_string_data(str, tag = nil)
      case str
      when ""
        put_string('""')
      when /[\x80-\xff\r\n]/n
        # literal
        send_literal(str, tag)
      when /[(){ \x00-\x1f\x7f%*"\\]/n
        # quoted string
        send_quoted_string(str)
      else
        put_string(str)
      end
    end

    def send_quoted_string(str)
      put_string('"' + str.gsub(/["\\]/n, "\\\\\\&") + '"')
    end

    def send_literal(str, tag = nil)
      synchronize do
        put_string("{" + str.bytesize.to_s + "}" + CRLF)
        @continued_command_tag = tag
        @continuation_request_exception = nil
        begin
          @continuation_request_arrival.wait
          e = @continuation_request_exception || @exception
          raise e if e
          put_string(str)
        ensure
          @continued_command_tag = nil
          @continuation_request_exception = nil
        end
      end
    end

    def send_number_data(num)
      put_string(num.to_s)
    end

    def send_list_data(list, tag = nil)
      put_string("(")
      first = true
      list.each do |i|
        if first
          first = false
        else
          put_string(" ")
        end
        send_data(i, tag)
      end
      put_string(")")
    end

    DATE_MONTH = %w(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)

    def send_time_data(time)
      t = time.dup.gmtime
      s = format('"%2d-%3s-%4d %02d:%02d:%02d +0000"',
                 t.day, DATE_MONTH[t.month - 1], t.year,
                 t.hour, t.min, t.sec)
      put_string(s)
    end

    def send_symbol_data(symbol)
      put_string("\\" + symbol.to_s)
    end

    def search_internal(cmd, keys, charset)
      if keys.instance_of?(String)
        keys = [RawData.new(keys)]
      else
        normalize_searching_criteria(keys)
      end
      synchronize do
        if charset
          send_command(cmd, "CHARSET", charset, *keys)
        else
          send_command(cmd, *keys)
        end
        return @responses.delete("SEARCH")[-1]
      end
    end

    def fetch_internal(cmd, set, attr, mod = nil)
      case attr
      when String then
        attr = RawData.new(attr)
      when Array then
        attr = attr.map { |arg|
          arg.is_a?(String) ? RawData.new(arg) : arg
        }
      end

      synchronize do
        @responses.delete("FETCH")
        if mod
          send_command(cmd, MessageSet.new(set), attr, mod)
        else
          send_command(cmd, MessageSet.new(set), attr)
        end
        return @responses.delete("FETCH")
      end
    end

    def store_internal(cmd, set, attr, flags)
      if attr.instance_of?(String)
        attr = RawData.new(attr)
      end
      synchronize do
        @responses.delete("FETCH")
        send_command(cmd, MessageSet.new(set), attr, flags)
        return @responses.delete("FETCH")
      end
    end

    def copy_internal(cmd, set, mailbox)
      send_command(cmd, MessageSet.new(set), mailbox)
    end

    def sort_internal(cmd, sort_keys, search_keys, charset)
      if search_keys.instance_of?(String)
        search_keys = [RawData.new(search_keys)]
      else
        normalize_searching_criteria(search_keys)
      end
      normalize_searching_criteria(search_keys)
      synchronize do
        send_command(cmd, sort_keys, charset, *search_keys)
        return @responses.delete("SORT")[-1]
      end
    end

    def thread_internal(cmd, algorithm, search_keys, charset)
      if search_keys.instance_of?(String)
        search_keys = [RawData.new(search_keys)]
      else
        normalize_searching_criteria(search_keys)
      end
      normalize_searching_criteria(search_keys)
      send_command(cmd, algorithm, charset, *search_keys)
      return @responses.delete("THREAD")[-1]
    end

    def normalize_searching_criteria(keys)
      keys.collect! do |i|
        case i
        when -1, Range, Array
          MessageSet.new(i)
        else
          i
        end
      end
    end

    def create_ssl_params(certs = nil, verify = true)
      params = {}
      if certs
        if File.file?(certs)
          params[:ca_file] = certs
        elsif File.directory?(certs)
          params[:ca_path] = certs
        end
      end
      if verify
        params[:verify_mode] = VERIFY_PEER
      else
        params[:verify_mode] = VERIFY_NONE
      end
      return params
    end

    def start_tls_session(params = {})
      unless defined?(OpenSSL::SSL)
        raise "SSL extension not installed"
      end
      if @sock.kind_of?(OpenSSL::SSL::SSLSocket)
        raise RuntimeError, "already using SSL"
      end
      begin
        params = params.to_hash
      rescue NoMethodError
        params = {}
      end
      context = SSLContext.new
      context.set_params(params)
      if defined?(VerifyCallbackProc)
        context.verify_callback = VerifyCallbackProc
      end
      @sock = SSLSocket.new(@sock, context)
      @sock.sync_close = true
      @sock.hostname = @host if @sock.respond_to? :hostname=
      ssl_socket_connect(@sock, @open_timeout)
      if context.verify_mode != VERIFY_NONE
        @sock.post_connection_check(@host)
      end
    end

    class RawData # :nodoc:
      def send_data(imap, tag)
        imap.send(:put_string, @data)
      end

      def validate
      end

      private

      def initialize(data)
        @data = data
      end
    end

    class Atom # :nodoc:
      def send_data(imap, tag)
        imap.send(:put_string, @data)
      end

      def validate
      end

      private

      def initialize(data)
        @data = data
      end
    end

    class QuotedString # :nodoc:
      def send_data(imap, tag)
        imap.send(:send_quoted_string, @data)
      end

      def validate
      end

      private

      def initialize(data)
        @data = data
      end
    end

    class Literal # :nodoc:
      def send_data(imap, tag)
        imap.send(:send_literal, @data, tag)
      end

      def validate
      end

      private

      def initialize(data)
        @data = data
      end
    end

    class MessageSet # :nodoc:
      def send_data(imap, tag)
        imap.send(:put_string, format_internal(@data))
      end

      def validate
        validate_internal(@data)
      end

      private

      def initialize(data)
        @data = data
      end

      def format_internal(data)
        case data
        when "*"
          return data
        when Integer
          if data == -1
            return "*"
          else
            return data.to_s
          end
        when Range
          return format_internal(data.first) +
            ":" + format_internal(data.last)
        when Array
          return data.collect {|i| format_internal(i)}.join(",")
        when ThreadMember
          return data.seqno.to_s +
            ":" + data.children.collect {|i| format_internal(i).join(",")}
        end
      end

      def validate_internal(data)
        case data
        when "*"
        when Integer
          NumValidator.ensure_nz_number(data)
        when Range
        when Array
          data.each do |i|
            validate_internal(i)
          end
        when ThreadMember
          data.children.each do |i|
            validate_internal(i)
          end
        else
          raise DataFormatError, data.inspect
        end
      end
    end

    # Common validators of number and nz_number types
    module NumValidator # :nodoc
      class << self
        # Check is passed argument valid 'number' in RFC 3501 terminology
        def valid_number?(num)
          # [RFC 3501]
          # number          = 1*DIGIT
          #                    ; Unsigned 32-bit integer
          #                    ; (0 <= n < 4,294,967,296)
          num >= 0 && num < 4294967296
        end

        # Check is passed argument valid 'nz_number' in RFC 3501 terminology
        def valid_nz_number?(num)
          # [RFC 3501]
          # nz-number       = digit-nz *DIGIT
          #                    ; Non-zero unsigned 32-bit integer
          #                    ; (0 < n < 4,294,967,296)
          num != 0 && valid_number?(num)
        end

        # Check is passed argument valid 'mod_sequence_value' in RFC 4551 terminology
        def valid_mod_sequence_value?(num)
          # mod-sequence-value  = 1*DIGIT
          #                        ; Positive unsigned 64-bit integer
          #                        ; (mod-sequence)
          #                        ; (1 <= n < 18,446,744,073,709,551,615)
          num >= 1 && num < 18446744073709551615
        end

        # Ensure argument is 'number' or raise DataFormatError
        def ensure_number(num)
          return if valid_number?(num)

          msg = "number must be unsigned 32-bit integer: #{num}"
          raise DataFormatError, msg
        end

        # Ensure argument is 'nz_number' or raise DataFormatError
        def ensure_nz_number(num)
          return if valid_nz_number?(num)

          msg = "nz_number must be non-zero unsigned 32-bit integer: #{num}"
          raise DataFormatError, msg
        end

        # Ensure argument is 'mod_sequence_value' or raise DataFormatError
        def ensure_mod_sequence_value(num)
          return if valid_mod_sequence_value?(num)

          msg = "mod_sequence_value must be unsigned 64-bit integer: #{num}"
          raise DataFormatError, msg
        end
      end
    end

    # Net::IMAP::ContinuationRequest represents command continuation requests.
    #
    # The command continuation request response is indicated by a "+" token
    # instead of a tag.  This form of response indicates that the server is
    # ready to accept the continuation of a command from the client.  The
    # remainder of this response is a line of text.
    #
    #   continue_req    ::= "+" SPACE (resp_text / base64)
    #
    # ==== Fields:
    #
    # data:: Returns the data (Net::IMAP::ResponseText).
    #
    # raw_data:: Returns the raw data string.
    ContinuationRequest = Struct.new(:data, :raw_data)

    # Net::IMAP::UntaggedResponse represents untagged responses.
    #
    # Data transmitted by the server to the client and status responses
    # that do not indicate command completion are prefixed with the token
    # "*", and are called untagged responses.
    #
    #   response_data   ::= "*" SPACE (resp_cond_state / resp_cond_bye /
    #                       mailbox_data / message_data / capability_data)
    #
    # ==== Fields:
    #
    # name:: Returns the name, such as "FLAGS", "LIST", or "FETCH".
    #
    # data:: Returns the data such as an array of flag symbols,
    #        a ((<Net::IMAP::MailboxList>)) object.
    #
    # raw_data:: Returns the raw data string.
    UntaggedResponse = Struct.new(:name, :data, :raw_data)

    # Net::IMAP::TaggedResponse represents tagged responses.
    #
    # The server completion result response indicates the success or
    # failure of the operation.  It is tagged with the same tag as the
    # client command which began the operation.
    #
    #   response_tagged ::= tag SPACE resp_cond_state CRLF
    #
    #   tag             ::= 1*<any ATOM_CHAR except "+">
    #
    #   resp_cond_state ::= ("OK" / "NO" / "BAD") SPACE resp_text
    #
    # ==== Fields:
    #
    # tag:: Returns the tag.
    #
    # name:: Returns the name, one of "OK", "NO", or "BAD".
    #
    # data:: Returns the data. See ((<Net::IMAP::ResponseText>)).
    #
    # raw_data:: Returns the raw data string.
    #
    TaggedResponse = Struct.new(:tag, :name, :data, :raw_data)

    # Net::IMAP::ResponseText represents texts of responses.
    # The text may be prefixed by the response code.
    #
    #   resp_text       ::= ["[" resp_text_code "]" SPACE] (text_mime2 / text)
    #                       ;; text SHOULD NOT begin with "[" or "="
    #
    # ==== Fields:
    #
    # code:: Returns the response code. See ((<Net::IMAP::ResponseCode>)).
    #
    # text:: Returns the text.
    #
    ResponseText = Struct.new(:code, :text)

    # Net::IMAP::ResponseCode represents response codes.
    #
    #   resp_text_code  ::= "ALERT" / "PARSE" /
    #                       "PERMANENTFLAGS" SPACE "(" #(flag / "\*") ")" /
    #                       "READ-ONLY" / "READ-WRITE" / "TRYCREATE" /
    #                       "UIDVALIDITY" SPACE nz_number /
    #                       "UNSEEN" SPACE nz_number /
    #                       atom [SPACE 1*<any TEXT_CHAR except "]">]
    #
    # ==== Fields:
    #
    # name:: Returns the name, such as "ALERT", "PERMANENTFLAGS", or "UIDVALIDITY".
    #
    # data:: Returns the data, if it exists.
    #
    ResponseCode = Struct.new(:name, :data)

    # Net::IMAP::MailboxList represents contents of the LIST response.
    #
    #   mailbox_list    ::= "(" #("\Marked" / "\Noinferiors" /
    #                       "\Noselect" / "\Unmarked" / flag_extension) ")"
    #                       SPACE (<"> QUOTED_CHAR <"> / nil) SPACE mailbox
    #
    # ==== Fields:
    #
    # attr:: Returns the name attributes. Each name attribute is a symbol
    #        capitalized by String#capitalize, such as :Noselect (not :NoSelect).
    #
    # delim:: Returns the hierarchy delimiter.
    #
    # name:: Returns the mailbox name.
    #
    MailboxList = Struct.new(:attr, :delim, :name)

    # Net::IMAP::MailboxQuota represents contents of GETQUOTA response.
    # This object can also be a response to GETQUOTAROOT.  In the syntax
    # specification below, the delimiter used with the "#" construct is a
    # single space (SPACE).
    #
    #    quota_list      ::= "(" #quota_resource ")"
    #
    #    quota_resource  ::= atom SPACE number SPACE number
    #
    #    quota_response  ::= "QUOTA" SPACE astring SPACE quota_list
    #
    # ==== Fields:
    #
    # mailbox:: The mailbox with the associated quota.
    #
    # usage:: Current storage usage of the mailbox.
    #
    # quota:: Quota limit imposed on the mailbox.
    #
    MailboxQuota = Struct.new(:mailbox, :usage, :quota)

    # Net::IMAP::MailboxQuotaRoot represents part of the GETQUOTAROOT
    # response. (GETQUOTAROOT can also return Net::IMAP::MailboxQuota.)
    #
    #    quotaroot_response ::= "QUOTAROOT" SPACE astring *(SPACE astring)
    #
    # ==== Fields:
    #
    # mailbox:: The mailbox with the associated quota.
    #
    # quotaroots:: Zero or more quotaroots that affect the quota on the
    #              specified mailbox.
    #
    MailboxQuotaRoot = Struct.new(:mailbox, :quotaroots)

    # Net::IMAP::MailboxACLItem represents the response from GETACL.
    #
    #    acl_data        ::= "ACL" SPACE mailbox *(SPACE identifier SPACE rights)
    #
    #    identifier      ::= astring
    #
    #    rights          ::= astring
    #
    # ==== Fields:
    #
    # user:: Login name that has certain rights to the mailbox
    #        that was specified with the getacl command.
    #
    # rights:: The access rights the indicated user has to the
    #          mailbox.
    #
    MailboxACLItem = Struct.new(:user, :rights, :mailbox)

    # Net::IMAP::StatusData represents the contents of the STATUS response.
    #
    # ==== Fields:
    #
    # mailbox:: Returns the mailbox name.
    #
    # attr:: Returns a hash. Each key is one of "MESSAGES", "RECENT", "UIDNEXT",
    #        "UIDVALIDITY", "UNSEEN". Each value is a number.
    #
    StatusData = Struct.new(:mailbox, :attr)

    # Net::IMAP::FetchData represents the contents of the FETCH response.
    #
    # ==== Fields:
    #
    # seqno:: Returns the message sequence number.
    #         (Note: not the unique identifier, even for the UID command response.)
    #
    # attr:: Returns a hash. Each key is a data item name, and each value is
    #        its value.
    #
    #        The current data items are:
    #
    #        [BODY]
    #           A form of BODYSTRUCTURE without extension data.
    #        [BODY[<section>]<<origin_octet>>]
    #           A string expressing the body contents of the specified section.
    #        [BODYSTRUCTURE]
    #           An object that describes the [MIME-IMB] body structure of a message.
    #           See Net::IMAP::BodyTypeBasic, Net::IMAP::BodyTypeText,
    #           Net::IMAP::BodyTypeMessage, Net::IMAP::BodyTypeMultipart.
    #        [ENVELOPE]
    #           A Net::IMAP::Envelope object that describes the envelope
    #           structure of a message.
    #        [FLAGS]
    #           A array of flag symbols that are set for this message. Flag symbols
    #           are capitalized by String#capitalize.
    #        [INTERNALDATE]
    #           A string representing the internal date of the message.
    #        [RFC822]
    #           Equivalent to BODY[].
    #        [RFC822.HEADER]
    #           Equivalent to BODY.PEEK[HEADER].
    #        [RFC822.SIZE]
    #           A number expressing the [RFC-822] size of the message.
    #        [RFC822.TEXT]
    #           Equivalent to BODY[TEXT].
    #        [UID]
    #           A number expressing the unique identifier of the message.
    #
    FetchData = Struct.new(:seqno, :attr)

    # Net::IMAP::Envelope represents envelope structures of messages.
    #
    # ==== Fields:
    #
    # date:: Returns a string that represents the date.
    #
    # subject:: Returns a string that represents the subject.
    #
    # from:: Returns an array of Net::IMAP::Address that represents the from.
    #
    # sender:: Returns an array of Net::IMAP::Address that represents the sender.
    #
    # reply_to:: Returns an array of Net::IMAP::Address that represents the reply-to.
    #
    # to:: Returns an array of Net::IMAP::Address that represents the to.
    #
    # cc:: Returns an array of Net::IMAP::Address that represents the cc.
    #
    # bcc:: Returns an array of Net::IMAP::Address that represents the bcc.
    #
    # in_reply_to:: Returns a string that represents the in-reply-to.
    #
    # message_id:: Returns a string that represents the message-id.
    #
    Envelope = Struct.new(:date, :subject, :from, :sender, :reply_to,
                          :to, :cc, :bcc, :in_reply_to, :message_id)

    #
    # Net::IMAP::Address represents electronic mail addresses.
    #
    # ==== Fields:
    #
    # name:: Returns the phrase from [RFC-822] mailbox.
    #
    # route:: Returns the route from [RFC-822] route-addr.
    #
    # mailbox:: nil indicates end of [RFC-822] group.
    #           If non-nil and host is nil, returns [RFC-822] group name.
    #           Otherwise, returns [RFC-822] local-part.
    #
    # host:: nil indicates [RFC-822] group syntax.
    #        Otherwise, returns [RFC-822] domain name.
    #
    Address = Struct.new(:name, :route, :mailbox, :host)

    #
    # Net::IMAP::ContentDisposition represents Content-Disposition fields.
    #
    # ==== Fields:
    #
    # dsp_type:: Returns the disposition type.
    #
    # param:: Returns a hash that represents parameters of the Content-Disposition
    #         field.
    #
    ContentDisposition = Struct.new(:dsp_type, :param)

    # Net::IMAP::ThreadMember represents a thread-node returned
    # by Net::IMAP#thread.
    #
    # ==== Fields:
    #
    # seqno:: The sequence number of this message.
    #
    # children:: An array of Net::IMAP::ThreadMember objects for mail
    #            items that are children of this in the thread.
    #
    ThreadMember = Struct.new(:seqno, :children)

    # Net::IMAP::BodyTypeBasic represents basic body structures of messages.
    #
    # ==== Fields:
    #
    # media_type:: Returns the content media type name as defined in [MIME-IMB].
    #
    # subtype:: Returns the content subtype name as defined in [MIME-IMB].
    #
    # param:: Returns a hash that represents parameters as defined in [MIME-IMB].
    #
    # content_id:: Returns a string giving the content id as defined in [MIME-IMB].
    #
    # description:: Returns a string giving the content description as defined in
    #               [MIME-IMB].
    #
    # encoding:: Returns a string giving the content transfer encoding as defined in
    #            [MIME-IMB].
    #
    # size:: Returns a number giving the size of the body in octets.
    #
    # md5:: Returns a string giving the body MD5 value as defined in [MD5].
    #
    # disposition:: Returns a Net::IMAP::ContentDisposition object giving
    #               the content disposition.
    #
    # language:: Returns a string or an array of strings giving the body
    #            language value as defined in [LANGUAGE-TAGS].
    #
    # extension:: Returns extension data.
    #
    # multipart?:: Returns false.
    #
    class BodyTypeBasic < Struct.new(:media_type, :subtype,
                                     :param, :content_id,
                                     :description, :encoding, :size,
                                     :md5, :disposition, :language,
                                     :extension)
      def multipart?
        return false
      end

      # Obsolete: use +subtype+ instead.  Calling this will
      # generate a warning message to +stderr+, then return
      # the value of +subtype+.
      def media_subtype
        warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
        return subtype
      end
    end

    # Net::IMAP::BodyTypeText represents TEXT body structures of messages.
    #
    # ==== Fields:
    #
    # lines:: Returns the size of the body in text lines.
    #
    # And Net::IMAP::BodyTypeText has all fields of Net::IMAP::BodyTypeBasic.
    #
    class BodyTypeText < Struct.new(:media_type, :subtype,
                                    :param, :content_id,
                                    :description, :encoding, :size,
                                    :lines,
                                    :md5, :disposition, :language,
                                    :extension)
      def multipart?
        return false
      end

      # Obsolete: use +subtype+ instead.  Calling this will
      # generate a warning message to +stderr+, then return
      # the value of +subtype+.
      def media_subtype
        warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
        return subtype
      end
    end

    # Net::IMAP::BodyTypeMessage represents MESSAGE/RFC822 body structures of messages.
    #
    # ==== Fields:
    #
    # envelope:: Returns a Net::IMAP::Envelope giving the envelope structure.
    #
    # body:: Returns an object giving the body structure.
    #
    # And Net::IMAP::BodyTypeMessage has all methods of Net::IMAP::BodyTypeText.
    #
    class BodyTypeMessage < Struct.new(:media_type, :subtype,
                                       :param, :content_id,
                                       :description, :encoding, :size,
                                       :envelope, :body, :lines,
                                       :md5, :disposition, :language,
                                       :extension)
      def multipart?
        return false
      end

      # Obsolete: use +subtype+ instead.  Calling this will
      # generate a warning message to +stderr+, then return
      # the value of +subtype+.
      def media_subtype
        warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
        return subtype
      end
    end

    # Net::IMAP::BodyTypeAttachment represents attachment body structures
    # of messages.
    #
    # ==== Fields:
    #
    # media_type:: Returns the content media type name.
    #
    # subtype:: Returns +nil+.
    #
    # param:: Returns a hash that represents parameters.
    #
    # multipart?:: Returns false.
    #
    class BodyTypeAttachment < Struct.new(:media_type, :subtype,
                                          :param)
      def multipart?
        return false
      end
    end

    # Net::IMAP::BodyTypeMultipart represents multipart body structures
    # of messages.
    #
    # ==== Fields:
    #
    # media_type:: Returns the content media type name as defined in [MIME-IMB].
    #
    # subtype:: Returns the content subtype name as defined in [MIME-IMB].
    #
    # parts:: Returns multiple parts.
    #
    # param:: Returns a hash that represents parameters as defined in [MIME-IMB].
    #
    # disposition:: Returns a Net::IMAP::ContentDisposition object giving
    #               the content disposition.
    #
    # language:: Returns a string or an array of strings giving the body
    #            language value as defined in [LANGUAGE-TAGS].
    #
    # extension:: Returns extension data.
    #
    # multipart?:: Returns true.
    #
    class BodyTypeMultipart < Struct.new(:media_type, :subtype,
                                         :parts,
                                         :param, :disposition, :language,
                                         :extension)
      def multipart?
        return true
      end

      # Obsolete: use +subtype+ instead.  Calling this will
      # generate a warning message to +stderr+, then return
      # the value of +subtype+.
      def media_subtype
        warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
        return subtype
      end
    end

    class BodyTypeExtension < Struct.new(:media_type, :subtype,
                                         :params, :content_id,
                                         :description, :encoding, :size)
      def multipart?
        return false
      end
    end

    class ResponseParser # :nodoc:
      def initialize
        @str = nil
        @pos = nil
        @lex_state = nil
        @token = nil
        @flag_symbols = {}
      end

      def parse(str)
        @str = str
        @pos = 0
        @lex_state = EXPR_BEG
        @token = nil
        return response
      end

      private

      EXPR_BEG          = :EXPR_BEG
      EXPR_DATA         = :EXPR_DATA
      EXPR_TEXT         = :EXPR_TEXT
      EXPR_RTEXT        = :EXPR_RTEXT
      EXPR_CTEXT        = :EXPR_CTEXT

      T_SPACE   = :SPACE
      T_NIL     = :NIL
      T_NUMBER  = :NUMBER
      T_ATOM    = :ATOM
      T_QUOTED  = :QUOTED
      T_LPAR    = :LPAR
      T_RPAR    = :RPAR
      T_BSLASH  = :BSLASH
      T_STAR    = :STAR
      T_LBRA    = :LBRA
      T_RBRA    = :RBRA
      T_LITERAL = :LITERAL
      T_PLUS    = :PLUS
      T_PERCENT = :PERCENT
      T_CRLF    = :CRLF
      T_EOF     = :EOF
      T_TEXT    = :TEXT

      BEG_REGEXP = /\G(?:\
(?# 1:  SPACE   )( +)|\
(?# 2:  NIL     )(NIL)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\
(?# 3:  NUMBER  )(\d+)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\
(?# 4:  ATOM    )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+]+)|\
(?# 5:  QUOTED  )"((?:[^\x00\r\n"\\]|\\["\\])*)"|\
(?# 6:  LPAR    )(\()|\
(?# 7:  RPAR    )(\))|\
(?# 8:  BSLASH  )(\\)|\
(?# 9:  STAR    )(\*)|\
(?# 10: LBRA    )(\[)|\
(?# 11: RBRA    )(\])|\
(?# 12: LITERAL )\{(\d+)\}\r\n|\
(?# 13: PLUS    )(\+)|\
(?# 14: PERCENT )(%)|\
(?# 15: CRLF    )(\r\n)|\
(?# 16: EOF     )(\z))/ni

      DATA_REGEXP = /\G(?:\
(?# 1:  SPACE   )( )|\
(?# 2:  NIL     )(NIL)|\
(?# 3:  NUMBER  )(\d+)|\
(?# 4:  QUOTED  )"((?:[^\x00\r\n"\\]|\\["\\])*)"|\
(?# 5:  LITERAL )\{(\d+)\}\r\n|\
(?# 6:  LPAR    )(\()|\
(?# 7:  RPAR    )(\)))/ni

      TEXT_REGEXP = /\G(?:\
(?# 1:  TEXT    )([^\x00\r\n]*))/ni

      RTEXT_REGEXP = /\G(?:\
(?# 1:  LBRA    )(\[)|\
(?# 2:  TEXT    )([^\x00\r\n]*))/ni

      CTEXT_REGEXP = /\G(?:\
(?# 1:  TEXT    )([^\x00\r\n\]]*))/ni

      Token = Struct.new(:symbol, :value)

      def response
        token = lookahead
        case token.symbol
        when T_PLUS
          result = continue_req
        when T_STAR
          result = response_untagged
        else
          result = response_tagged
        end
        while lookahead.symbol == T_SPACE
          # Ignore trailing space for Microsoft Exchange Server
          shift_token
        end
        match(T_CRLF)
        match(T_EOF)
        return result
      end

      def continue_req
        match(T_PLUS)
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
          return ContinuationRequest.new(resp_text, @str)
        else
          return ContinuationRequest.new(ResponseText.new(nil, ""), @str)
        end
      end

      def response_untagged
        match(T_STAR)
        match(T_SPACE)
        token = lookahead
        if token.symbol == T_NUMBER
          return numeric_response
        elsif token.symbol == T_ATOM
          case token.value
          when /\A(?:OK|NO|BAD|BYE|PREAUTH)\z/ni
            return response_cond
          when /\A(?:FLAGS)\z/ni
            return flags_response
          when /\A(?:LIST|LSUB|XLIST)\z/ni
            return list_response
          when /\A(?:QUOTA)\z/ni
            return getquota_response
          when /\A(?:QUOTAROOT)\z/ni
            return getquotaroot_response
          when /\A(?:ACL)\z/ni
            return getacl_response
          when /\A(?:SEARCH|SORT)\z/ni
            return search_response
          when /\A(?:THREAD)\z/ni
            return thread_response
          when /\A(?:STATUS)\z/ni
            return status_response
          when /\A(?:CAPABILITY)\z/ni
            return capability_response
          else
            return text_response
          end
        else
          parse_error("unexpected token %s", token.symbol)
        end
      end

      def response_tagged
        tag = atom
        match(T_SPACE)
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return TaggedResponse.new(tag, name, resp_text, @str)
      end

      def response_cond
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return UntaggedResponse.new(name, resp_text, @str)
      end

      def numeric_response
        n = number
        match(T_SPACE)
        token = match(T_ATOM)
        name = token.value.upcase
        case name
        when "EXISTS", "RECENT", "EXPUNGE"
          return UntaggedResponse.new(name, n, @str)
        when "FETCH"
          shift_token
          match(T_SPACE)
          data = FetchData.new(n, msg_att(n))
          return UntaggedResponse.new(name, data, @str)
        end
      end

      def msg_att(n)
        match(T_LPAR)
        attr = {}
        while true
          token = lookahead
          case token.symbol
          when T_RPAR
            shift_token
            break
          when T_SPACE
            shift_token
            next
          end
          case token.value
          when /\A(?:ENVELOPE)\z/ni
            name, val = envelope_data
          when /\A(?:FLAGS)\z/ni
            name, val = flags_data
          when /\A(?:INTERNALDATE)\z/ni
            name, val = internaldate_data
          when /\A(?:RFC822(?:\.HEADER|\.TEXT)?)\z/ni
            name, val = rfc822_text
          when /\A(?:RFC822\.SIZE)\z/ni
            name, val = rfc822_size
          when /\A(?:BODY(?:STRUCTURE)?)\z/ni
            name, val = body_data
          when /\A(?:UID)\z/ni
            name, val = uid_data
          when /\A(?:MODSEQ)\z/ni
            name, val = modseq_data
          else
            parse_error("unknown attribute `%s' for {%d}", token.value, n)
          end
          attr[name] = val
        end
        return attr
      end

      def envelope_data
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return name, envelope
      end

      def envelope
        @lex_state = EXPR_DATA
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          result = nil
        else
          match(T_LPAR)
          date = nstring
          match(T_SPACE)
          subject = nstring
          match(T_SPACE)
          from = address_list
          match(T_SPACE)
          sender = address_list
          match(T_SPACE)
          reply_to = address_list
          match(T_SPACE)
          to = address_list
          match(T_SPACE)
          cc = address_list
          match(T_SPACE)
          bcc = address_list
          match(T_SPACE)
          in_reply_to = nstring
          match(T_SPACE)
          message_id = nstring
          match(T_RPAR)
          result = Envelope.new(date, subject, from, sender, reply_to,
                                to, cc, bcc, in_reply_to, message_id)
        end
        @lex_state = EXPR_BEG
        return result
      end

      def flags_data
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return name, flag_list
      end

      def internaldate_data
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        token = match(T_QUOTED)
        return name, token.value
      end

      def rfc822_text
        token = match(T_ATOM)
        name = token.value.upcase
        token = lookahead
        if token.symbol == T_LBRA
          shift_token
          match(T_RBRA)
        end
        match(T_SPACE)
        return name, nstring
      end

      def rfc822_size
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return name, number
      end

      def body_data
        token = match(T_ATOM)
        name = token.value.upcase
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
          return name, body
        end
        name.concat(section)
        token = lookahead
        if token.symbol == T_ATOM
          name.concat(token.value)
          shift_token
        end
        match(T_SPACE)
        data = nstring
        return name, data
      end

      def body
        @lex_state = EXPR_DATA
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          result = nil
        else
          match(T_LPAR)
          token = lookahead
          if token.symbol == T_LPAR
            result = body_type_mpart
          else
            result = body_type_1part
          end
          match(T_RPAR)
        end
        @lex_state = EXPR_BEG
        return result
      end

      def body_type_1part
        token = lookahead
        case token.value
        when /\A(?:TEXT)\z/ni
          return body_type_text
        when /\A(?:MESSAGE)\z/ni
          return body_type_msg
        when /\A(?:ATTACHMENT)\z/ni
          return body_type_attachment
        when /\A(?:MIXED)\z/ni
          return body_type_mixed
        else
          return body_type_basic
        end
      end

      def body_type_basic
        mtype, msubtype = media_type
        token = lookahead
        if token.symbol == T_RPAR
          return BodyTypeBasic.new(mtype, msubtype)
        end
        match(T_SPACE)
        param, content_id, desc, enc, size = body_fields
        md5, disposition, language, extension = body_ext_1part
        return BodyTypeBasic.new(mtype, msubtype,
                                 param, content_id,
                                 desc, enc, size,
                                 md5, disposition, language, extension)
      end

      def body_type_text
        mtype, msubtype = media_type
        match(T_SPACE)
        param, content_id, desc, enc, size = body_fields
        match(T_SPACE)
        lines = number
        md5, disposition, language, extension = body_ext_1part
        return BodyTypeText.new(mtype, msubtype,
                                param, content_id,
                                desc, enc, size,
                                lines,
                                md5, disposition, language, extension)
      end

      def body_type_msg
        mtype, msubtype = media_type
        match(T_SPACE)
        param, content_id, desc, enc, size = body_fields

        token = lookahead
        if token.symbol == T_RPAR
          # If this is not message/rfc822, we shouldn't apply the RFC822
          # spec to it.  We should handle anything other than
          # message/rfc822 using multipart extension data [rfc3501] (i.e.
          # the data itself won't be returned, we would have to retrieve it
          # with BODYSTRUCTURE instead of with BODY

          # Also, sometimes a message/rfc822 is included as a large
          # attachment instead of having all of the other details
          # (e.g. attaching a .eml file to an email)
          if msubtype == "RFC822"
            return BodyTypeMessage.new(mtype, msubtype, param, content_id,
                                       desc, enc, size, nil, nil, nil, nil,
                                       nil, nil, nil)
          else
            return BodyTypeExtension.new(mtype, msubtype,
                                         param, content_id,
                                         desc, enc, size)
          end
        end

        match(T_SPACE)
        env = envelope
        match(T_SPACE)
        b = body
        match(T_SPACE)
        lines = number
        md5, disposition, language, extension = body_ext_1part
        return BodyTypeMessage.new(mtype, msubtype,
                                   param, content_id,
                                   desc, enc, size,
                                   env, b, lines,
                                   md5, disposition, language, extension)
      end

      def body_type_attachment
        mtype = case_insensitive_string
        match(T_SPACE)
        param = body_fld_param
        return BodyTypeAttachment.new(mtype, nil, param)
      end

      def body_type_mixed
        mtype = "MULTIPART"
        msubtype = case_insensitive_string
        param, disposition, language, extension = body_ext_mpart
        return BodyTypeBasic.new(mtype, msubtype, param, nil, nil, nil, nil, nil, disposition, language, extension)
      end

      def body_type_mpart
        parts = []
        while true
          token = lookahead
          if token.symbol == T_SPACE
            shift_token
            break
          end
          parts.push(body)
        end
        mtype = "MULTIPART"
        msubtype = case_insensitive_string
        param, disposition, language, extension = body_ext_mpart
        return BodyTypeMultipart.new(mtype, msubtype, parts,
                                     param, disposition, language,
                                     extension)
      end

      def media_type
        mtype = case_insensitive_string
        token = lookahead
        if token.symbol != T_SPACE
          return mtype, nil
        end
        match(T_SPACE)
        msubtype = case_insensitive_string
        return mtype, msubtype
      end

      def body_fields
        param = body_fld_param
        match(T_SPACE)
        content_id = nstring
        match(T_SPACE)
        desc = nstring
        match(T_SPACE)
        enc = case_insensitive_string
        match(T_SPACE)
        size = number
        return param, content_id, desc, enc, size
      end

      def body_fld_param
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        end
        match(T_LPAR)
        param = {}
        while true
          token = lookahead
          case token.symbol
          when T_RPAR
            shift_token
            break
          when T_SPACE
            shift_token
          end
          name = case_insensitive_string
          match(T_SPACE)
          val = string
          param[name] = val
        end
        return param
      end

      def body_ext_1part
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return nil
        end
        md5 = nstring

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return md5
        end
        disposition = body_fld_dsp

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return md5, disposition
        end
        language = body_fld_lang

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return md5, disposition, language
        end

        extension = body_extensions
        return md5, disposition, language, extension
      end

      def body_ext_mpart
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return nil
        end
        param = body_fld_param

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return param
        end
        disposition = body_fld_dsp

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return param, disposition
        end
        language = body_fld_lang

        token = lookahead
        if token.symbol == T_SPACE
          shift_token
        else
          return param, disposition, language
        end

        extension = body_extensions
        return param, disposition, language, extension
      end

      def body_fld_dsp
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        end
        match(T_LPAR)
        dsp_type = case_insensitive_string
        match(T_SPACE)
        param = body_fld_param
        match(T_RPAR)
        return ContentDisposition.new(dsp_type, param)
      end

      def body_fld_lang
        token = lookahead
        if token.symbol == T_LPAR
          shift_token
          result = []
          while true
            token = lookahead
            case token.symbol
            when T_RPAR
              shift_token
              return result
            when T_SPACE
              shift_token
            end
            result.push(case_insensitive_string)
          end
        else
          lang = nstring
          if lang
            return lang.upcase
          else
            return lang
          end
        end
      end

      def body_extensions
        result = []
        while true
          token = lookahead
          case token.symbol
          when T_RPAR
            return result
          when T_SPACE
            shift_token
          end
          result.push(body_extension)
        end
      end

      def body_extension
        token = lookahead
        case token.symbol
        when T_LPAR
          shift_token
          result = body_extensions
          match(T_RPAR)
          return result
        when T_NUMBER
          return number
        else
          return nstring
        end
      end

      def section
        str = String.new
        token = match(T_LBRA)
        str.concat(token.value)
        token = match(T_ATOM, T_NUMBER, T_RBRA)
        if token.symbol == T_RBRA
          str.concat(token.value)
          return str
        end
        str.concat(token.value)
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
          str.concat(token.value)
          token = match(T_LPAR)
          str.concat(token.value)
          while true
            token = lookahead
            case token.symbol
            when T_RPAR
              str.concat(token.value)
              shift_token
              break
            when T_SPACE
              shift_token
              str.concat(token.value)
            end
            str.concat(format_string(astring))
          end
        end
        token = match(T_RBRA)
        str.concat(token.value)
        return str
      end

      def format_string(str)
        case str
        when ""
          return '""'
        when /[\x80-\xff\r\n]/n
          # literal
          return "{" + str.bytesize.to_s + "}" + CRLF + str
        when /[(){ \x00-\x1f\x7f%*"\\]/n
          # quoted string
          return '"' + str.gsub(/["\\]/n, "\\\\\\&") + '"'
        else
          # atom
          return str
        end
      end

      def uid_data
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return name, number
      end

      def modseq_data
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        match(T_LPAR)
        modseq = number
        match(T_RPAR)
        return name, modseq
      end

      def text_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        @lex_state = EXPR_TEXT
        token = match(T_TEXT)
        @lex_state = EXPR_BEG
        return UntaggedResponse.new(name, token.value)
      end

      def flags_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return UntaggedResponse.new(name, flag_list, @str)
      end

      def list_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        return UntaggedResponse.new(name, mailbox_list, @str)
      end

      def mailbox_list
        attr = flag_list
        match(T_SPACE)
        token = match(T_QUOTED, T_NIL)
        if token.symbol == T_NIL
          delim = nil
        else
          delim = token.value
        end
        match(T_SPACE)
        name = astring
        return MailboxList.new(attr, delim, name)
      end

      def getquota_response
        # If quota never established, get back
        # `NO Quota root does not exist'.
        # If quota removed, get `()' after the
        # folder spec with no mention of `STORAGE'.
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        mailbox = astring
        match(T_SPACE)
        match(T_LPAR)
        token = lookahead
        case token.symbol
        when T_RPAR
          shift_token
          data = MailboxQuota.new(mailbox, nil, nil)
          return UntaggedResponse.new(name, data, @str)
        when T_ATOM
          shift_token
          match(T_SPACE)
          token = match(T_NUMBER)
          usage = token.value
          match(T_SPACE)
          token = match(T_NUMBER)
          quota = token.value
          match(T_RPAR)
          data = MailboxQuota.new(mailbox, usage, quota)
          return UntaggedResponse.new(name, data, @str)
        else
          parse_error("unexpected token %s", token.symbol)
        end
      end

      def getquotaroot_response
        # Similar to getquota, but only admin can use getquota.
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        mailbox = astring
        quotaroots = []
        while true
          token = lookahead
          break unless token.symbol == T_SPACE
          shift_token
          quotaroots.push(astring)
        end
        data = MailboxQuotaRoot.new(mailbox, quotaroots)
        return UntaggedResponse.new(name, data, @str)
      end

      def getacl_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        mailbox = astring
        data = []
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
          while true
            token = lookahead
            case token.symbol
            when T_CRLF
              break
            when T_SPACE
              shift_token
            end
            user = astring
            match(T_SPACE)
            rights = astring
            data.push(MailboxACLItem.new(user, rights, mailbox))
          end
        end
        return UntaggedResponse.new(name, data, @str)
      end

      def search_response
        token = match(T_ATOM)
        name = token.value.upcase
        token = lookahead
        if token.symbol == T_SPACE
          shift_token
          data = []
          while true
            token = lookahead
            case token.symbol
            when T_CRLF
              break
            when T_SPACE
              shift_token
            when T_NUMBER
              data.push(number)
            when T_LPAR
              # TODO: include the MODSEQ value in a response
              shift_token
              match(T_ATOM)
              match(T_SPACE)
              match(T_NUMBER)
              match(T_RPAR)
            end
          end
        else
          data = []
        end
        return UntaggedResponse.new(name, data, @str)
      end

      def thread_response
        token = match(T_ATOM)
        name = token.value.upcase
        token = lookahead

        if token.symbol == T_SPACE
          threads = []

          while true
            shift_token
            token = lookahead

            case token.symbol
            when T_LPAR
              threads << thread_branch(token)
            when T_CRLF
              break
            end
          end
        else
          # no member
          threads = []
        end

        return UntaggedResponse.new(name, threads, @str)
      end

      def thread_branch(token)
        rootmember = nil
        lastmember = nil

        while true
          shift_token    # ignore first T_LPAR
          token = lookahead

          case token.symbol
          when T_NUMBER
            # new member
            newmember = ThreadMember.new(number, [])
            if rootmember.nil?
              rootmember = newmember
            else
              lastmember.children << newmember
            end
            lastmember = newmember
          when T_SPACE
            # do nothing
          when T_LPAR
            if rootmember.nil?
              # dummy member
              lastmember = rootmember = ThreadMember.new(nil, [])
            end

            lastmember.children << thread_branch(token)
          when T_RPAR
            break
          end
        end

        return rootmember
      end

      def status_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        mailbox = astring
        match(T_SPACE)
        match(T_LPAR)
        attr = {}
        while true
          token = lookahead
          case token.symbol
          when T_RPAR
            shift_token
            break
          when T_SPACE
            shift_token
          end
          token = match(T_ATOM)
          key = token.value.upcase
          match(T_SPACE)
          val = number
          attr[key] = val
        end
        data = StatusData.new(mailbox, attr)
        return UntaggedResponse.new(name, data, @str)
      end

      def capability_response
        token = match(T_ATOM)
        name = token.value.upcase
        match(T_SPACE)
        data = []
        while true
          token = lookahead
          case token.symbol
          when T_CRLF
            break
          when T_SPACE
            shift_token
            next
          end
          data.push(atom.upcase)
        end
        return UntaggedResponse.new(name, data, @str)
      end

      def resp_text
        @lex_state = EXPR_RTEXT
        token = lookahead
        if token.symbol == T_LBRA
          code = resp_text_code
        else
          code = nil
        end
        token = match(T_TEXT)
        @lex_state = EXPR_BEG
        return ResponseText.new(code, token.value)
      end

      def resp_text_code
        @lex_state = EXPR_BEG
        match(T_LBRA)
        token = match(T_ATOM)
        name = token.value.upcase
        case name
        when /\A(?:ALERT|PARSE|READ-ONLY|READ-WRITE|TRYCREATE|NOMODSEQ)\z/n
          result = ResponseCode.new(name, nil)
        when /\A(?:PERMANENTFLAGS)\z/n
          match(T_SPACE)
          result = ResponseCode.new(name, flag_list)
        when /\A(?:UIDVALIDITY|UIDNEXT|UNSEEN)\z/n
          match(T_SPACE)
          result = ResponseCode.new(name, number)
        else
          token = lookahead
          if token.symbol == T_SPACE
            shift_token
            @lex_state = EXPR_CTEXT
            token = match(T_TEXT)
            @lex_state = EXPR_BEG
            result = ResponseCode.new(name, token.value)
          else
            result = ResponseCode.new(name, nil)
          end
        end
        match(T_RBRA)
        @lex_state = EXPR_RTEXT
        return result
      end

      def address_list
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        else
          result = []
          match(T_LPAR)
          while true
            token = lookahead
            case token.symbol
            when T_RPAR
              shift_token
              break
            when T_SPACE
              shift_token
            end
            result.push(address)
          end
          return result
        end
      end

      ADDRESS_REGEXP = /\G\
(?# 1: NAME     )(?:NIL|"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)") \
(?# 2: ROUTE    )(?:NIL|"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)") \
(?# 3: MAILBOX  )(?:NIL|"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)") \
(?# 4: HOST     )(?:NIL|"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)")\
\)/ni

      def address
        match(T_LPAR)
        if @str.index(ADDRESS_REGEXP, @pos)
          # address does not include literal.
          @pos = $~.end(0)
          name = $1
          route = $2
          mailbox = $3
          host = $4
          for s in [name, route, mailbox, host]
            if s
              s.gsub!(/\\(["\\])/n, "\\1")
            end
          end
        else
          name = nstring
          match(T_SPACE)
          route = nstring
          match(T_SPACE)
          mailbox = nstring
          match(T_SPACE)
          host = nstring
          match(T_RPAR)
        end
        return Address.new(name, route, mailbox, host)
      end

      FLAG_REGEXP = /\
(?# FLAG        )\\([^\x80-\xff(){ \x00-\x1f\x7f%"\\]+)|\
(?# ATOM        )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\]+)/n

      def flag_list
        if @str.index(/\(([^)]*)\)/ni, @pos)
          @pos = $~.end(0)
          return $1.scan(FLAG_REGEXP).collect { |flag, atom|
            if atom
              atom
            else
              symbol = flag.capitalize.intern
              @flag_symbols[symbol] = true
              if @flag_symbols.length > IMAP.max_flag_count
                raise FlagCountError, "number of flag symbols exceeded"
              end
              symbol
            end
          }
        else
          parse_error("invalid flag list")
        end
      end

      def nstring
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        else
          return string
        end
      end

      def astring
        token = lookahead
        if string_token?(token)
          return string
        else
          return atom
        end
      end

      def string
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        end
        token = match(T_QUOTED, T_LITERAL)
        return token.value
      end

      STRING_TOKENS = [T_QUOTED, T_LITERAL, T_NIL]

      def string_token?(token)
        return STRING_TOKENS.include?(token.symbol)
      end

      def case_insensitive_string
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        end
        token = match(T_QUOTED, T_LITERAL)
        return token.value.upcase
      end

      def atom
        result = String.new
        while true
          token = lookahead
          if atom_token?(token)
            result.concat(token.value)
            shift_token
          else
            if result.empty?
              parse_error("unexpected token %s", token.symbol)
            else
              return result
            end
          end
        end
      end

      ATOM_TOKENS = [
        T_ATOM,
        T_NUMBER,
        T_NIL,
        T_LBRA,
        T_RBRA,
        T_PLUS
      ]

      def atom_token?(token)
        return ATOM_TOKENS.include?(token.symbol)
      end

      def number
        token = lookahead
        if token.symbol == T_NIL
          shift_token
          return nil
        end
        token = match(T_NUMBER)
        return token.value.to_i
      end

      def nil_atom
        match(T_NIL)
        return nil
      end

      def match(*args)
        token = lookahead
        unless args.include?(token.symbol)
          parse_error('unexpected token %s (expected %s)',
                      token.symbol.id2name,
                      args.collect {|i| i.id2name}.join(" or "))
        end
        shift_token
        return token
      end

      def lookahead
        unless @token
          @token = next_token
        end
        return @token
      end

      def shift_token
        @token = nil
      end

      def next_token
        case @lex_state
        when EXPR_BEG
          if @str.index(BEG_REGEXP, @pos)
            @pos = $~.end(0)
            if $1
              return Token.new(T_SPACE, $+)
            elsif $2
              return Token.new(T_NIL, $+)
            elsif $3
              return Token.new(T_NUMBER, $+)
            elsif $4
              return Token.new(T_ATOM, $+)
            elsif $5
              return Token.new(T_QUOTED,
                               $+.gsub(/\\(["\\])/n, "\\1"))
            elsif $6
              return Token.new(T_LPAR, $+)
            elsif $7
              return Token.new(T_RPAR, $+)
            elsif $8
              return Token.new(T_BSLASH, $+)
            elsif $9
              return Token.new(T_STAR, $+)
            elsif $10
              return Token.new(T_LBRA, $+)
            elsif $11
              return Token.new(T_RBRA, $+)
            elsif $12
              len = $+.to_i
              val = @str[@pos, len]
              @pos += len
              return Token.new(T_LITERAL, val)
            elsif $13
              return Token.new(T_PLUS, $+)
            elsif $14
              return Token.new(T_PERCENT, $+)
            elsif $15
              return Token.new(T_CRLF, $+)
            elsif $16
              return Token.new(T_EOF, $+)
            else
              parse_error("[Net::IMAP BUG] BEG_REGEXP is invalid")
            end
          else
            @str.index(/\S*/n, @pos)
            parse_error("unknown token - %s", $&.dump)
          end
        when EXPR_DATA
          if @str.index(DATA_REGEXP, @pos)
            @pos = $~.end(0)
            if $1
              return Token.new(T_SPACE, $+)
            elsif $2
              return Token.new(T_NIL, $+)
            elsif $3
              return Token.new(T_NUMBER, $+)
            elsif $4
              return Token.new(T_QUOTED,
                               $+.gsub(/\\(["\\])/n, "\\1"))
            elsif $5
              len = $+.to_i
              val = @str[@pos, len]
              @pos += len
              return Token.new(T_LITERAL, val)
            elsif $6
              return Token.new(T_LPAR, $+)
            elsif $7
              return Token.new(T_RPAR, $+)
            else
              parse_error("[Net::IMAP BUG] DATA_REGEXP is invalid")
            end
          else
            @str.index(/\S*/n, @pos)
            parse_error("unknown token - %s", $&.dump)
          end
        when EXPR_TEXT
          if @str.index(TEXT_REGEXP, @pos)
            @pos = $~.end(0)
            if $1
              return Token.new(T_TEXT, $+)
            else
              parse_error("[Net::IMAP BUG] TEXT_REGEXP is invalid")
            end
          else
            @str.index(/\S*/n, @pos)
            parse_error("unknown token - %s", $&.dump)
          end
        when EXPR_RTEXT
          if @str.index(RTEXT_REGEXP, @pos)
            @pos = $~.end(0)
            if $1
              return Token.new(T_LBRA, $+)
            elsif $2
              return Token.new(T_TEXT, $+)
            else
              parse_error("[Net::IMAP BUG] RTEXT_REGEXP is invalid")
            end
          else
            @str.index(/\S*/n, @pos)
            parse_error("unknown token - %s", $&.dump)
          end
        when EXPR_CTEXT
          if @str.index(CTEXT_REGEXP, @pos)
            @pos = $~.end(0)
            if $1
              return Token.new(T_TEXT, $+)
            else
              parse_error("[Net::IMAP BUG] CTEXT_REGEXP is invalid")
            end
          else
            @str.index(/\S*/n, @pos) #/
            parse_error("unknown token - %s", $&.dump)
          end
        else
          parse_error("invalid @lex_state - %s", @lex_state.inspect)
        end
      end

      def parse_error(fmt, *args)
        if IMAP.debug
          $stderr.printf("@str: %s\n", @str.dump)
          $stderr.printf("@pos: %d\n", @pos)
          $stderr.printf("@lex_state: %s\n", @lex_state)
          if @token
            $stderr.printf("@token.symbol: %s\n", @token.symbol)
            $stderr.printf("@token.value: %s\n", @token.value.inspect)
          end
        end
        raise ResponseParseError, format(fmt, *args)
      end
    end

    # Authenticator for the "LOGIN" authentication type.  See
    # #authenticate().
    class LoginAuthenticator
      def process(data)
        case @state
        when STATE_USER
          @state = STATE_PASSWORD
          return @user
        when STATE_PASSWORD
          return @password
        end
      end

      private

      STATE_USER = :USER
      STATE_PASSWORD = :PASSWORD

      def initialize(user, password)
        @user = user
        @password = password
        @state = STATE_USER
      end
    end
    add_authenticator "LOGIN", LoginAuthenticator

    # Authenticator for the "PLAIN" authentication type.  See
    # #authenticate().
    class PlainAuthenticator
      def process(data)
        return "\0#{@user}\0#{@password}"
      end

      private

      def initialize(user, password)
        @user = user
        @password = password
      end
    end
    add_authenticator "PLAIN", PlainAuthenticator

    # Authenticator for the "CRAM-MD5" authentication type.  See
    # #authenticate().
    class CramMD5Authenticator
      def process(challenge)
        digest = hmac_md5(challenge, @password)
        return @user + " " + digest
      end

      private

      def initialize(user, password)
        @user = user
        @password = password
      end

      def hmac_md5(text, key)
        if key.length > 64
          key = Digest::MD5.digest(key)
        end

        k_ipad = key + "\0" * (64 - key.length)
        k_opad = key + "\0" * (64 - key.length)
        for i in 0..63
          k_ipad[i] = (k_ipad[i].ord ^ 0x36).chr
          k_opad[i] = (k_opad[i].ord ^ 0x5c).chr
        end

        digest = Digest::MD5.digest(k_ipad + text)

        return Digest::MD5.hexdigest(k_opad + digest)
      end
    end
    add_authenticator "CRAM-MD5", CramMD5Authenticator

    # Authenticator for the "DIGEST-MD5" authentication type.  See
    # #authenticate().
    class DigestMD5Authenticator
      def process(challenge)
        case @stage
        when STAGE_ONE
          @stage = STAGE_TWO
          sparams = {}
          c = StringScanner.new(challenge)
          while c.scan(/(?:\s*,)?\s*(\w+)=("(?:[^\\"]+|\\.)*"|[^,]+)\s*/)
            k, v = c[1], c[2]
            if v =~ /^"(.*)"$/
              v = $1
              if v =~ /,/
                v = v.split(',')
              end
            end
            sparams[k] = v
          end

          raise DataFormatError, "Bad Challenge: '#{challenge}'" unless c.rest.size == 0
          raise Error, "Server does not support auth (qop = #{sparams['qop'].join(',')})" unless sparams['qop'].include?("auth")

          response = {
            :nonce => sparams['nonce'],
            :username => @user,
            :realm => sparams['realm'],
            :cnonce => Digest::MD5.hexdigest("%.15f:%.15f:%d" % [Time.now.to_f, rand, Process.pid.to_s]),
            :'digest-uri' => 'imap/' + sparams['realm'],
            :qop => 'auth',
            :maxbuf => 65535,
            :nc => "%08d" % nc(sparams['nonce']),
            :charset => sparams['charset'],
          }

          response[:authzid] = @authname unless @authname.nil?

          # now, the real thing
          a0 = Digest::MD5.digest( [ response.values_at(:username, :realm), @password ].join(':') )

          a1 = [ a0, response.values_at(:nonce,:cnonce) ].join(':')
          a1 << ':' + response[:authzid] unless response[:authzid].nil?

          a2 = "AUTHENTICATE:" + response[:'digest-uri']
          a2 << ":00000000000000000000000000000000" if response[:qop] and response[:qop] =~ /^auth-(?:conf|int)$/

          response[:response] = Digest::MD5.hexdigest(
            [
             Digest::MD5.hexdigest(a1),
             response.values_at(:nonce, :nc, :cnonce, :qop),
             Digest::MD5.hexdigest(a2)
            ].join(':')
          )

          return response.keys.map {|key| qdval(key.to_s, response[key]) }.join(',')
        when STAGE_TWO
          @stage = nil
          # if at the second stage, return an empty string
          if challenge =~ /rspauth=/
            return ''
          else
            raise ResponseParseError, challenge
          end
        else
          raise ResponseParseError, challenge
        end
      end

      def initialize(user, password, authname = nil)
        @user, @password, @authname = user, password, authname
        @nc, @stage = {}, STAGE_ONE
      end

      private

      STAGE_ONE = :stage_one
      STAGE_TWO = :stage_two

      def nc(nonce)
        if @nc.has_key? nonce
          @nc[nonce] = @nc[nonce] + 1
        else
          @nc[nonce] = 1
        end
        return @nc[nonce]
      end

      # some responses need quoting
      def qdval(k, v)
        return if k.nil? or v.nil?
        if %w"username authzid realm nonce cnonce digest-uri qop".include? k
          v.gsub!(/([\\"])/, "\\\1")
          return '%s="%s"' % [k, v]
        else
          return '%s=%s' % [k, v]
        end
      end
    end
    add_authenticator "DIGEST-MD5", DigestMD5Authenticator

    # Superclass of IMAP errors.
    class Error < StandardError
    end

    # Error raised when data is in the incorrect format.
    class DataFormatError < Error
    end

    # Error raised when a response from the server is non-parseable.
    class ResponseParseError < Error
    end

    # Superclass of all errors used to encapsulate "fail" responses
    # from the server.
    class ResponseError < Error

      # The response that caused this error
      attr_accessor :response

      def initialize(response)
        @response = response

        super @response.data.text
      end

    end

    # Error raised upon a "NO" response from the server, indicating
    # that the client command could not be completed successfully.
    class NoResponseError < ResponseError
    end

    # Error raised upon a "BAD" response from the server, indicating
    # that the client command violated the IMAP protocol, or an internal
    # server failure has occurred.
    class BadResponseError < ResponseError
    end

    # Error raised upon a "BYE" response from the server, indicating
    # that the client is not being allowed to login, or has been timed
    # out due to inactivity.
    class ByeResponseError < ResponseError
    end

    # Error raised upon an unknown response from the server.
    class UnknownResponseError < ResponseError
    end

    RESPONSE_ERRORS = Hash.new(ResponseError)
    RESPONSE_ERRORS["NO"] = NoResponseError
    RESPONSE_ERRORS["BAD"] = BadResponseError

    # Error raised when too many flags are interned to symbols.
    class FlagCountError < Error
    end
  end
end
PKFH[[wYYshare/ruby/net/smtp/version.rbnu�[���module Net
  class Protocol; end
  class SMTP < Protocol
    VERSION = "0.1.0"
  end
end
PKFH[���ȸ@�@share/ruby/net/http/header.rbnu�[���# frozen_string_literal: false
# The HTTPHeader module defines methods for reading and writing
# HTTP headers.
#
# It is used as a mixin by other classes, to provide hash-like
# access to HTTP header values. Unlike raw hash access, HTTPHeader
# provides access via case-insensitive keys. It also provides
# methods for accessing commonly-used HTTP header values in more
# convenient formats.
#
module Net::HTTPHeader
  MAX_KEY_LENGTH = 1024
  MAX_FIELD_LENGTH = 65536

  def initialize_http_header(initheader)
    @header = {}
    return unless initheader
    initheader.each do |key, value|
      warn "net/http: duplicated HTTP header: #{key}", uplevel: 3 if key?(key) and $VERBOSE
      if value.nil?
        warn "net/http: nil HTTP header: #{key}", uplevel: 3 if $VERBOSE
      else
        value = value.strip # raise error for invalid byte sequences
        if key.to_s.bytesize > MAX_KEY_LENGTH
          raise ArgumentError, "too long (#{key.bytesize} bytes) header: #{key[0, 30].inspect}..."
        end
        if value.to_s.bytesize > MAX_FIELD_LENGTH
          raise ArgumentError, "header #{key} has too long field vallue: #{value.bytesize}"
        end
        if value.count("\r\n") > 0
          raise ArgumentError, "header #{key} has field value #{value.inspect}, this cannot include CR/LF"
        end
        @header[key.downcase.to_s] = [value]
      end
    end
  end

  def size   #:nodoc: obsolete
    @header.size
  end

  alias length size   #:nodoc: obsolete

  # Returns the header field corresponding to the case-insensitive key.
  # For example, a key of "Content-Type" might return "text/html"
  def [](key)
    a = @header[key.downcase.to_s] or return nil
    a.join(', ')
  end

  # Sets the header field corresponding to the case-insensitive key.
  def []=(key, val)
    unless val
      @header.delete key.downcase.to_s
      return val
    end
    set_field(key, val)
  end

  # [Ruby 1.8.3]
  # Adds a value to a named header field, instead of replacing its value.
  # Second argument +val+ must be a String.
  # See also #[]=, #[] and #get_fields.
  #
  #   request.add_field 'X-My-Header', 'a'
  #   p request['X-My-Header']              #=> "a"
  #   p request.get_fields('X-My-Header')   #=> ["a"]
  #   request.add_field 'X-My-Header', 'b'
  #   p request['X-My-Header']              #=> "a, b"
  #   p request.get_fields('X-My-Header')   #=> ["a", "b"]
  #   request.add_field 'X-My-Header', 'c'
  #   p request['X-My-Header']              #=> "a, b, c"
  #   p request.get_fields('X-My-Header')   #=> ["a", "b", "c"]
  #
  def add_field(key, val)
    stringified_downcased_key = key.downcase.to_s
    if @header.key?(stringified_downcased_key)
      append_field_value(@header[stringified_downcased_key], val)
    else
      set_field(key, val)
    end
  end

  private def set_field(key, val)
    case val
    when Enumerable
      ary = []
      append_field_value(ary, val)
      @header[key.downcase.to_s] = ary
    else
      val = val.to_s # for compatibility use to_s instead of to_str
      if val.b.count("\r\n") > 0
        raise ArgumentError, 'header field value cannot include CR/LF'
      end
      @header[key.downcase.to_s] = [val]
    end
  end

  private def append_field_value(ary, val)
    case val
    when Enumerable
      val.each{|x| append_field_value(ary, x)}
    else
      val = val.to_s
      if /[\r\n]/n.match?(val.b)
        raise ArgumentError, 'header field value cannot include CR/LF'
      end
      ary.push val
    end
  end

  # [Ruby 1.8.3]
  # Returns an array of header field strings corresponding to the
  # case-insensitive +key+.  This method allows you to get duplicated
  # header fields without any processing.  See also #[].
  #
  #   p response.get_fields('Set-Cookie')
  #     #=> ["session=al98axx; expires=Fri, 31-Dec-1999 23:58:23",
  #          "query=rubyscript; expires=Fri, 31-Dec-1999 23:58:23"]
  #   p response['Set-Cookie']
  #     #=> "session=al98axx; expires=Fri, 31-Dec-1999 23:58:23, query=rubyscript; expires=Fri, 31-Dec-1999 23:58:23"
  #
  def get_fields(key)
    stringified_downcased_key = key.downcase.to_s
    return nil unless @header[stringified_downcased_key]
    @header[stringified_downcased_key].dup
  end

  # Returns the header field corresponding to the case-insensitive key.
  # Returns the default value +args+, or the result of the block, or
  # raises an IndexError if there's no header field named +key+
  # See Hash#fetch
  def fetch(key, *args, &block)   #:yield: +key+
    a = @header.fetch(key.downcase.to_s, *args, &block)
    a.kind_of?(Array) ? a.join(', ') : a
  end

  # Iterates through the header names and values, passing in the name
  # and value to the code block supplied.
  #
  # Returns an enumerator if no block is given.
  #
  # Example:
  #
  #     response.header.each_header {|key,value| puts "#{key} = #{value}" }
  #
  def each_header   #:yield: +key+, +value+
    block_given? or return enum_for(__method__) { @header.size }
    @header.each do |k,va|
      yield k, va.join(', ')
    end
  end

  alias each each_header

  # Iterates through the header names in the header, passing
  # each header name to the code block.
  #
  # Returns an enumerator if no block is given.
  def each_name(&block)   #:yield: +key+
    block_given? or return enum_for(__method__) { @header.size }
    @header.each_key(&block)
  end

  alias each_key each_name

  # Iterates through the header names in the header, passing
  # capitalized header names to the code block.
  #
  # Note that header names are capitalized systematically;
  # capitalization may not match that used by the remote HTTP
  # server in its response.
  #
  # Returns an enumerator if no block is given.
  def each_capitalized_name  #:yield: +key+
    block_given? or return enum_for(__method__) { @header.size }
    @header.each_key do |k|
      yield capitalize(k)
    end
  end

  # Iterates through header values, passing each value to the
  # code block.
  #
  # Returns an enumerator if no block is given.
  def each_value   #:yield: +value+
    block_given? or return enum_for(__method__) { @header.size }
    @header.each_value do |va|
      yield va.join(', ')
    end
  end

  # Removes a header field, specified by case-insensitive key.
  def delete(key)
    @header.delete(key.downcase.to_s)
  end

  # true if +key+ header exists.
  def key?(key)
    @header.key?(key.downcase.to_s)
  end

  # Returns a Hash consisting of header names and array of values.
  # e.g.
  # {"cache-control" => ["private"],
  #  "content-type" => ["text/html"],
  #  "date" => ["Wed, 22 Jun 2005 22:11:50 GMT"]}
  def to_hash
    @header.dup
  end

  # As for #each_header, except the keys are provided in capitalized form.
  #
  # Note that header names are capitalized systematically;
  # capitalization may not match that used by the remote HTTP
  # server in its response.
  #
  # Returns an enumerator if no block is given.
  def each_capitalized
    block_given? or return enum_for(__method__) { @header.size }
    @header.each do |k,v|
      yield capitalize(k), v.join(', ')
    end
  end

  alias canonical_each each_capitalized

  def capitalize(name)
    name.to_s.split(/-/).map {|s| s.capitalize }.join('-')
  end
  private :capitalize

  # Returns an Array of Range objects which represent the Range:
  # HTTP header field, or +nil+ if there is no such header.
  def range
    return nil unless @header['range']

    value = self['Range']
    # byte-range-set = *( "," OWS ) ( byte-range-spec / suffix-byte-range-spec )
    #   *( OWS "," [ OWS ( byte-range-spec / suffix-byte-range-spec ) ] )
    # corrected collected ABNF
    # http://tools.ietf.org/html/draft-ietf-httpbis-p5-range-19#section-5.4.1
    # http://tools.ietf.org/html/draft-ietf-httpbis-p5-range-19#appendix-C
    # http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-19#section-3.2.5
    unless /\Abytes=((?:,[ \t]*)*(?:\d+-\d*|-\d+)(?:[ \t]*,(?:[ \t]*\d+-\d*|-\d+)?)*)\z/ =~ value
      raise Net::HTTPHeaderSyntaxError, "invalid syntax for byte-ranges-specifier: '#{value}'"
    end

    byte_range_set = $1
    result = byte_range_set.split(/,/).map {|spec|
      m = /(\d+)?\s*-\s*(\d+)?/i.match(spec) or
              raise Net::HTTPHeaderSyntaxError, "invalid byte-range-spec: '#{spec}'"
      d1 = m[1].to_i
      d2 = m[2].to_i
      if m[1] and m[2]
        if d1 > d2
          raise Net::HTTPHeaderSyntaxError, "last-byte-pos MUST greater than or equal to first-byte-pos but '#{spec}'"
        end
        d1..d2
      elsif m[1]
        d1..-1
      elsif m[2]
        -d2..-1
      else
        raise Net::HTTPHeaderSyntaxError, 'range is not specified'
      end
    }
    # if result.empty?
    # byte-range-set must include at least one byte-range-spec or suffix-byte-range-spec
    # but above regexp already denies it.
    if result.size == 1 && result[0].begin == 0 && result[0].end == -1
      raise Net::HTTPHeaderSyntaxError, 'only one suffix-byte-range-spec with zero suffix-length'
    end
    result
  end

  # Sets the HTTP Range: header.
  # Accepts either a Range object as a single argument,
  # or a beginning index and a length from that index.
  # Example:
  #
  #   req.range = (0..1023)
  #   req.set_range 0, 1023
  #
  def set_range(r, e = nil)
    unless r
      @header.delete 'range'
      return r
    end
    r = (r...r+e) if e
    case r
    when Numeric
      n = r.to_i
      rangestr = (n > 0 ? "0-#{n-1}" : "-#{-n}")
    when Range
      first = r.first
      last = r.end
      last -= 1 if r.exclude_end?
      if last == -1
        rangestr = (first > 0 ? "#{first}-" : "-#{-first}")
      else
        raise Net::HTTPHeaderSyntaxError, 'range.first is negative' if first < 0
        raise Net::HTTPHeaderSyntaxError, 'range.last is negative' if last < 0
        raise Net::HTTPHeaderSyntaxError, 'must be .first < .last' if first > last
        rangestr = "#{first}-#{last}"
      end
    else
      raise TypeError, 'Range/Integer is required'
    end
    @header['range'] = ["bytes=#{rangestr}"]
    r
  end

  alias range= set_range

  # Returns an Integer object which represents the HTTP Content-Length:
  # header field, or +nil+ if that field was not provided.
  def content_length
    return nil unless key?('Content-Length')
    len = self['Content-Length'].slice(/\d+/) or
        raise Net::HTTPHeaderSyntaxError, 'wrong Content-Length format'
    len.to_i
  end

  def content_length=(len)
    unless len
      @header.delete 'content-length'
      return nil
    end
    @header['content-length'] = [len.to_i.to_s]
  end

  # Returns "true" if the "transfer-encoding" header is present and
  # set to "chunked".  This is an HTTP/1.1 feature, allowing
  # the content to be sent in "chunks" without at the outset
  # stating the entire content length.
  def chunked?
    return false unless @header['transfer-encoding']
    field = self['Transfer-Encoding']
    (/(?:\A|[^\-\w])chunked(?![\-\w])/i =~ field) ? true : false
  end

  # Returns a Range object which represents the value of the Content-Range:
  # header field.
  # For a partial entity body, this indicates where this fragment
  # fits inside the full entity body, as range of byte offsets.
  def content_range
    return nil unless @header['content-range']
    m = %r<bytes\s+(\d+)-(\d+)/(\d+|\*)>i.match(self['Content-Range']) or
        raise Net::HTTPHeaderSyntaxError, 'wrong Content-Range format'
    m[1].to_i .. m[2].to_i
  end

  # The length of the range represented in Content-Range: header.
  def range_length
    r = content_range() or return nil
    r.end - r.begin + 1
  end

  # Returns a content type string such as "text/html".
  # This method returns nil if Content-Type: header field does not exist.
  def content_type
    return nil unless main_type()
    if sub_type()
    then "#{main_type()}/#{sub_type()}"
    else main_type()
    end
  end

  # Returns a content type string such as "text".
  # This method returns nil if Content-Type: header field does not exist.
  def main_type
    return nil unless @header['content-type']
    self['Content-Type'].split(';').first.to_s.split('/')[0].to_s.strip
  end

  # Returns a content type string such as "html".
  # This method returns nil if Content-Type: header field does not exist
  # or sub-type is not given (e.g. "Content-Type: text").
  def sub_type
    return nil unless @header['content-type']
    _, sub = *self['Content-Type'].split(';').first.to_s.split('/')
    return nil unless sub
    sub.strip
  end

  # Any parameters specified for the content type, returned as a Hash.
  # For example, a header of Content-Type: text/html; charset=EUC-JP
  # would result in type_params returning {'charset' => 'EUC-JP'}
  def type_params
    result = {}
    list = self['Content-Type'].to_s.split(';')
    list.shift
    list.each do |param|
      k, v = *param.split('=', 2)
      result[k.strip] = v.strip
    end
    result
  end

  # Sets the content type in an HTTP header.
  # The +type+ should be a full HTTP content type, e.g. "text/html".
  # The +params+ are an optional Hash of parameters to add after the
  # content type, e.g. {'charset' => 'iso-8859-1'}
  def set_content_type(type, params = {})
    @header['content-type'] = [type + params.map{|k,v|"; #{k}=#{v}"}.join('')]
  end

  alias content_type= set_content_type

  # Set header fields and a body from HTML form data.
  # +params+ should be an Array of Arrays or
  # a Hash containing HTML form data.
  # Optional argument +sep+ means data record separator.
  #
  # Values are URL encoded as necessary and the content-type is set to
  # application/x-www-form-urlencoded
  #
  # Example:
  #    http.form_data = {"q" => "ruby", "lang" => "en"}
  #    http.form_data = {"q" => ["ruby", "perl"], "lang" => "en"}
  #    http.set_form_data({"q" => "ruby", "lang" => "en"}, ';')
  #
  def set_form_data(params, sep = '&')
    query = URI.encode_www_form(params)
    query.gsub!(/&/, sep) if sep != '&'
    self.body = query
    self.content_type = 'application/x-www-form-urlencoded'
  end

  alias form_data= set_form_data

  # Set an HTML form data set.
  # +params+ is the form data set; it is an Array of Arrays or a Hash
  # +enctype is the type to encode the form data set.
  # It is application/x-www-form-urlencoded or multipart/form-data.
  # +formopt+ is an optional hash to specify the detail.
  #
  # boundary:: the boundary of the multipart message
  # charset::  the charset of the message. All names and the values of
  #            non-file fields are encoded as the charset.
  #
  # Each item of params is an array and contains following items:
  # +name+::  the name of the field
  # +value+:: the value of the field, it should be a String or a File
  # +opt+::   an optional hash to specify additional information
  #
  # Each item is a file field or a normal field.
  # If +value+ is a File object or the +opt+ have a filename key,
  # the item is treated as a file field.
  #
  # If Transfer-Encoding is set as chunked, this send the request in
  # chunked encoding. Because chunked encoding is HTTP/1.1 feature,
  # you must confirm the server to support HTTP/1.1 before sending it.
  #
  # Example:
  #    http.set_form([["q", "ruby"], ["lang", "en"]])
  #
  # See also RFC 2388, RFC 2616, HTML 4.01, and HTML5
  #
  def set_form(params, enctype='application/x-www-form-urlencoded', formopt={})
    @body_data = params
    @body = nil
    @body_stream = nil
    @form_option = formopt
    case enctype
    when /\Aapplication\/x-www-form-urlencoded\z/i,
      /\Amultipart\/form-data\z/i
      self.content_type = enctype
    else
      raise ArgumentError, "invalid enctype: #{enctype}"
    end
  end

  # Set the Authorization: header for "Basic" authorization.
  def basic_auth(account, password)
    @header['authorization'] = [basic_encode(account, password)]
  end

  # Set Proxy-Authorization: header for "Basic" authorization.
  def proxy_basic_auth(account, password)
    @header['proxy-authorization'] = [basic_encode(account, password)]
  end

  def basic_encode(account, password)
    'Basic ' + ["#{account}:#{password}"].pack('m0')
  end
  private :basic_encode

  def connection_close?
    token = /(?:\A|,)\s*close\s*(?:\z|,)/i
    @header['connection']&.grep(token) {return true}
    @header['proxy-connection']&.grep(token) {return true}
    false
  end

  def connection_keep_alive?
    token = /(?:\A|,)\s*keep-alive\s*(?:\z|,)/i
    @header['connection']&.grep(token) {return true}
    @header['proxy-connection']&.grep(token) {return true}
    false
  end

end
PKFH[O'��
&
&&share/ruby/net/http/generic_request.rbnu�[���# frozen_string_literal: false
# HTTPGenericRequest is the parent of the Net::HTTPRequest class.
# Do not use this directly; use a subclass of Net::HTTPRequest.
#
# Mixes in the Net::HTTPHeader module to provide easier access to HTTP headers.
#
class Net::HTTPGenericRequest

  include Net::HTTPHeader

  def initialize(m, reqbody, resbody, uri_or_path, initheader = nil)
    @method = m
    @request_has_body = reqbody
    @response_has_body = resbody

    if URI === uri_or_path then
      raise ArgumentError, "not an HTTP URI" unless URI::HTTP === uri_or_path
      raise ArgumentError, "no host component for URI" unless uri_or_path.hostname
      @uri = uri_or_path.dup
      host = @uri.hostname.dup
      host << ":".freeze << @uri.port.to_s if @uri.port != @uri.default_port
      @path = uri_or_path.request_uri
      raise ArgumentError, "no HTTP request path given" unless @path
    else
      @uri = nil
      host = nil
      raise ArgumentError, "no HTTP request path given" unless uri_or_path
      raise ArgumentError, "HTTP request path is empty" if uri_or_path.empty?
      @path = uri_or_path.dup
    end

    @decode_content = false

    if @response_has_body and Net::HTTP::HAVE_ZLIB then
      if !initheader ||
         !initheader.keys.any? { |k|
           %w[accept-encoding range].include? k.downcase
         } then
        @decode_content = true
        initheader = initheader ? initheader.dup : {}
        initheader["accept-encoding"] =
          "gzip;q=1.0,deflate;q=0.6,identity;q=0.3"
      end
    end

    initialize_http_header initheader
    self['Accept'] ||= '*/*'
    self['User-Agent'] ||= 'Ruby'
    self['Host'] ||= host if host
    @body = nil
    @body_stream = nil
    @body_data = nil
  end

  attr_reader :method
  attr_reader :path
  attr_reader :uri

  # Automatically set to false if the user sets the Accept-Encoding header.
  # This indicates they wish to handle Content-encoding in responses
  # themselves.
  attr_reader :decode_content

  def inspect
    "\#<#{self.class} #{@method}>"
  end

  ##
  # Don't automatically decode response content-encoding if the user indicates
  # they want to handle it.

  def []=(key, val) # :nodoc:
    @decode_content = false if key.downcase == 'accept-encoding'

    super key, val
  end

  def request_body_permitted?
    @request_has_body
  end

  def response_body_permitted?
    @response_has_body
  end

  def body_exist?
    warn "Net::HTTPRequest#body_exist? is obsolete; use response_body_permitted?", uplevel: 1 if $VERBOSE
    response_body_permitted?
  end

  attr_reader :body

  def body=(str)
    @body = str
    @body_stream = nil
    @body_data = nil
    str
  end

  attr_reader :body_stream

  def body_stream=(input)
    @body = nil
    @body_stream = input
    @body_data = nil
    input
  end

  def set_body_internal(str)   #:nodoc: internal use only
    raise ArgumentError, "both of body argument and HTTPRequest#body set" if str and (@body or @body_stream)
    self.body = str if str
    if @body.nil? && @body_stream.nil? && @body_data.nil? && request_body_permitted?
      self.body = ''
    end
  end

  #
  # write
  #

  def exec(sock, ver, path)   #:nodoc: internal use only
    if @body
      send_request_with_body sock, ver, path, @body
    elsif @body_stream
      send_request_with_body_stream sock, ver, path, @body_stream
    elsif @body_data
      send_request_with_body_data sock, ver, path, @body_data
    else
      write_header sock, ver, path
    end
  end

  def update_uri(addr, port, ssl) # :nodoc: internal use only
    # reflect the connection and @path to @uri
    return unless @uri

    if ssl
      scheme = 'https'.freeze
      klass = URI::HTTPS
    else
      scheme = 'http'.freeze
      klass = URI::HTTP
    end

    if host = self['host']
      host.sub!(/:.*/s, ''.freeze)
    elsif host = @uri.host
    else
     host = addr
    end
    # convert the class of the URI
    if @uri.is_a?(klass)
      @uri.host = host
      @uri.port = port
    else
      @uri = klass.new(
        scheme, @uri.userinfo,
        host, port, nil,
        @uri.path, nil, @uri.query, nil)
    end
  end

  private

  class Chunker #:nodoc:
    def initialize(sock)
      @sock = sock
      @prev = nil
    end

    def write(buf)
      # avoid memcpy() of buf, buf can huge and eat memory bandwidth
      rv = buf.bytesize
      @sock.write("#{rv.to_s(16)}\r\n", buf, "\r\n")
      rv
    end

    def finish
      @sock.write("0\r\n\r\n")
    end
  end

  def send_request_with_body(sock, ver, path, body)
    self.content_length = body.bytesize
    delete 'Transfer-Encoding'
    supply_default_content_type
    write_header sock, ver, path
    wait_for_continue sock, ver if sock.continue_timeout
    sock.write body
  end

  def send_request_with_body_stream(sock, ver, path, f)
    unless content_length() or chunked?
      raise ArgumentError,
          "Content-Length not given and Transfer-Encoding is not `chunked'"
    end
    supply_default_content_type
    write_header sock, ver, path
    wait_for_continue sock, ver if sock.continue_timeout
    if chunked?
      chunker = Chunker.new(sock)
      IO.copy_stream(f, chunker)
      chunker.finish
    else
      # copy_stream can sendfile() to sock.io unless we use SSL.
      # If sock.io is an SSLSocket, copy_stream will hit SSL_write()
      IO.copy_stream(f, sock.io)
    end
  end

  def send_request_with_body_data(sock, ver, path, params)
    if /\Amultipart\/form-data\z/i !~ self.content_type
      self.content_type = 'application/x-www-form-urlencoded'
      return send_request_with_body(sock, ver, path, URI.encode_www_form(params))
    end

    opt = @form_option.dup
    require 'securerandom' unless defined?(SecureRandom)
    opt[:boundary] ||= SecureRandom.urlsafe_base64(40)
    self.set_content_type(self.content_type, boundary: opt[:boundary])
    if chunked?
      write_header sock, ver, path
      encode_multipart_form_data(sock, params, opt)
    else
      require 'tempfile'
      file = Tempfile.new('multipart')
      file.binmode
      encode_multipart_form_data(file, params, opt)
      file.rewind
      self.content_length = file.size
      write_header sock, ver, path
      IO.copy_stream(file, sock)
      file.close(true)
    end
  end

  def encode_multipart_form_data(out, params, opt)
    charset = opt[:charset]
    boundary = opt[:boundary]
    require 'securerandom' unless defined?(SecureRandom)
    boundary ||= SecureRandom.urlsafe_base64(40)
    chunked_p = chunked?

    buf = ''
    params.each do |key, value, h={}|
      key = quote_string(key, charset)
      filename =
        h.key?(:filename) ? h[:filename] :
        value.respond_to?(:to_path) ? File.basename(value.to_path) :
        nil

      buf << "--#{boundary}\r\n"
      if filename
        filename = quote_string(filename, charset)
        type = h[:content_type] || 'application/octet-stream'
        buf << "Content-Disposition: form-data; " \
          "name=\"#{key}\"; filename=\"#{filename}\"\r\n" \
          "Content-Type: #{type}\r\n\r\n"
        if !out.respond_to?(:write) || !value.respond_to?(:read)
          # if +out+ is not an IO or +value+ is not an IO
          buf << (value.respond_to?(:read) ? value.read : value)
        elsif value.respond_to?(:size) && chunked_p
          # if +out+ is an IO and +value+ is a File, use IO.copy_stream
          flush_buffer(out, buf, chunked_p)
          out << "%x\r\n" % value.size if chunked_p
          IO.copy_stream(value, out)
          out << "\r\n" if chunked_p
        else
          # +out+ is an IO, and +value+ is not a File but an IO
          flush_buffer(out, buf, chunked_p)
          1 while flush_buffer(out, value.read(4096), chunked_p)
        end
      else
        # non-file field:
        #   HTML5 says, "The parts of the generated multipart/form-data
        #   resource that correspond to non-file fields must not have a
        #   Content-Type header specified."
        buf << "Content-Disposition: form-data; name=\"#{key}\"\r\n\r\n"
        buf << (value.respond_to?(:read) ? value.read : value)
      end
      buf << "\r\n"
    end
    buf << "--#{boundary}--\r\n"
    flush_buffer(out, buf, chunked_p)
    out << "0\r\n\r\n" if chunked_p
  end

  def quote_string(str, charset)
    str = str.encode(charset, fallback:->(c){'&#%d;'%c.encode("UTF-8").ord}) if charset
    str.gsub(/[\\"]/, '\\\\\&')
  end

  def flush_buffer(out, buf, chunked_p)
    return unless buf
    out << "%x\r\n"%buf.bytesize if chunked_p
    out << buf
    out << "\r\n" if chunked_p
    buf.clear
  end

  def supply_default_content_type
    return if content_type()
    warn 'net/http: Content-Type did not set; using application/x-www-form-urlencoded', uplevel: 1 if $VERBOSE
    set_content_type 'application/x-www-form-urlencoded'
  end

  ##
  # Waits up to the continue timeout for a response from the server provided
  # we're speaking HTTP 1.1 and are expecting a 100-continue response.

  def wait_for_continue(sock, ver)
    if ver >= '1.1' and @header['expect'] and
        @header['expect'].include?('100-continue')
      if sock.io.to_io.wait_readable(sock.continue_timeout)
        res = Net::HTTPResponse.read_new(sock)
        unless res.kind_of?(Net::HTTPContinue)
          res.decode_content = @decode_content
          throw :response, res
        end
      end
    end
  end

  def write_header(sock, ver, path)
    reqline = "#{@method} #{path} HTTP/#{ver}"
    if /[\r\n]/ =~ reqline
      raise ArgumentError, "A Request-Line must not contain CR or LF"
    end
    buf = ""
    buf << reqline << "\r\n"
    each_capitalized do |k,v|
      buf << "#{k}: #{v}\r\n"
    end
    buf << "\r\n"
    sock.write buf
  end

end

PKFH[�tBD*D*share/ruby/net/http/response.rbnu�[���# frozen_string_literal: false
# HTTP response class.
#
# This class wraps together the response header and the response body (the
# entity requested).
#
# It mixes in the HTTPHeader module, which provides access to response
# header values both via hash-like methods and via individual readers.
#
# Note that each possible HTTP response code defines its own
# HTTPResponse subclass. All classes are defined under the Net module.
# Indentation indicates inheritance.  For a list of the classes see Net::HTTP.
#
# Correspondence <code>HTTP code => class</code> is stored in CODE_TO_OBJ
# constant:
#
#    Net::HTTPResponse::CODE_TO_OBJ['404'] #=> Net::HTTPNotFound
#
class Net::HTTPResponse
  class << self
    # true if the response has a body.
    def body_permitted?
      self::HAS_BODY
    end

    def exception_type   # :nodoc: internal use only
      self::EXCEPTION_TYPE
    end

    def read_new(sock)   #:nodoc: internal use only
      httpv, code, msg = read_status_line(sock)
      res = response_class(code).new(httpv, code, msg)
      each_response_header(sock) do |k,v|
        res.add_field k, v
      end
      res
    end

    private

    def read_status_line(sock)
      str = sock.readline
      m = /\AHTTP(?:\/(\d+\.\d+))?\s+(\d\d\d)(?:\s+(.*))?\z/in.match(str) or
        raise Net::HTTPBadResponse, "wrong status line: #{str.dump}"
      m.captures
    end

    def response_class(code)
      CODE_TO_OBJ[code] or
      CODE_CLASS_TO_OBJ[code[0,1]] or
      Net::HTTPUnknownResponse
    end

    def each_response_header(sock)
      key = value = nil
      while true
        line = sock.readuntil("\n", true).sub(/\s+\z/, '')
        break if line.empty?
        if line[0] == ?\s or line[0] == ?\t and value
          value << ' ' unless value.empty?
          value << line.strip
        else
          yield key, value if key
          key, value = line.strip.split(/\s*:\s*/, 2)
          raise Net::HTTPBadResponse, 'wrong header line format' if value.nil?
        end
      end
      yield key, value if key
    end
  end

  # next is to fix bug in RDoc, where the private inside class << self
  # spills out.
  public

  include Net::HTTPHeader

  def initialize(httpv, code, msg)   #:nodoc: internal use only
    @http_version = httpv
    @code         = code
    @message      = msg
    initialize_http_header nil
    @body = nil
    @read = false
    @uri  = nil
    @decode_content = false
  end

  # The HTTP version supported by the server.
  attr_reader :http_version

  # The HTTP result code string. For example, '302'.  You can also
  # determine the response type by examining which response subclass
  # the response object is an instance of.
  attr_reader :code

  # The HTTP result message sent by the server. For example, 'Not Found'.
  attr_reader :message
  alias msg message   # :nodoc: obsolete

  # The URI used to fetch this response.  The response URI is only available
  # if a URI was used to create the request.
  attr_reader :uri

  # Set to true automatically when the request did not contain an
  # Accept-Encoding header from the user.
  attr_accessor :decode_content

  def inspect
    "#<#{self.class} #{@code} #{@message} readbody=#{@read}>"
  end

  #
  # response <-> exception relationship
  #

  def code_type   #:nodoc:
    self.class
  end

  def error!   #:nodoc:
    message = @code
    message += ' ' + @message.dump if @message
    raise error_type().new(message, self)
  end

  def error_type   #:nodoc:
    self.class::EXCEPTION_TYPE
  end

  # Raises an HTTP error if the response is not 2xx (success).
  def value
    error! unless self.kind_of?(Net::HTTPSuccess)
  end

  def uri= uri # :nodoc:
    @uri = uri.dup if uri
  end

  #
  # header (for backward compatibility only; DO NOT USE)
  #

  def response   #:nodoc:
    warn "Net::HTTPResponse#response is obsolete", uplevel: 1 if $VERBOSE
    self
  end

  def header   #:nodoc:
    warn "Net::HTTPResponse#header is obsolete", uplevel: 1 if $VERBOSE
    self
  end

  def read_header   #:nodoc:
    warn "Net::HTTPResponse#read_header is obsolete", uplevel: 1 if $VERBOSE
    self
  end

  #
  # body
  #

  def reading_body(sock, reqmethodallowbody)  #:nodoc: internal use only
    @socket = sock
    @body_exist = reqmethodallowbody && self.class.body_permitted?
    begin
      yield
      self.body   # ensure to read body
    ensure
      @socket = nil
    end
  end

  # Gets the entity body returned by the remote HTTP server.
  #
  # If a block is given, the body is passed to the block, and
  # the body is provided in fragments, as it is read in from the socket.
  #
  # If +dest+ argument is given, response is read into that variable,
  # with <code>dest#<<</code> method (it could be String or IO, or any
  # other object responding to <code><<</code>).
  #
  # Calling this method a second or subsequent time for the same
  # HTTPResponse object will return the value already read.
  #
  #   http.request_get('/index.html') {|res|
  #     puts res.read_body
  #   }
  #
  #   http.request_get('/index.html') {|res|
  #     p res.read_body.object_id   # 538149362
  #     p res.read_body.object_id   # 538149362
  #   }
  #
  #   # using iterator
  #   http.request_get('/index.html') {|res|
  #     res.read_body do |segment|
  #       print segment
  #     end
  #   }
  #
  def read_body(dest = nil, &block)
    if @read
      raise IOError, "#{self.class}\#read_body called twice" if dest or block
      return @body
    end
    to = procdest(dest, block)
    stream_check
    if @body_exist
      read_body_0 to
      @body = to
    else
      @body = nil
    end
    @read = true

    @body
  end

  # Returns the full entity body.
  #
  # Calling this method a second or subsequent time will return the
  # string already read.
  #
  #   http.request_get('/index.html') {|res|
  #     puts res.body
  #   }
  #
  #   http.request_get('/index.html') {|res|
  #     p res.body.object_id   # 538149362
  #     p res.body.object_id   # 538149362
  #   }
  #
  def body
    read_body()
  end

  # Because it may be necessary to modify the body, Eg, decompression
  # this method facilitates that.
  def body=(value)
    @body = value
  end

  alias entity body   #:nodoc: obsolete

  private

  ##
  # Checks for a supported Content-Encoding header and yields an Inflate
  # wrapper for this response's socket when zlib is present.  If the
  # Content-Encoding is not supported or zlib is missing, the plain socket is
  # yielded.
  #
  # If a Content-Range header is present, a plain socket is yielded as the
  # bytes in the range may not be a complete deflate block.

  def inflater # :nodoc:
    return yield @socket unless Net::HTTP::HAVE_ZLIB
    return yield @socket unless @decode_content
    return yield @socket if self['content-range']

    v = self['content-encoding']
    case v&.downcase
    when 'deflate', 'gzip', 'x-gzip' then
      self.delete 'content-encoding'

      inflate_body_io = Inflater.new(@socket)

      begin
        yield inflate_body_io
        success = true
      ensure
        begin
          inflate_body_io.finish
        rescue => err
          # Ignore #finish's error if there is an exception from yield
          raise err if success
        end
      end
    when 'none', 'identity' then
      self.delete 'content-encoding'

      yield @socket
    else
      yield @socket
    end
  end

  def read_body_0(dest)
    inflater do |inflate_body_io|
      if chunked?
        read_chunked dest, inflate_body_io
        return
      end

      @socket = inflate_body_io

      clen = content_length()
      if clen
        @socket.read clen, dest, true   # ignore EOF
        return
      end
      clen = range_length()
      if clen
        @socket.read clen, dest
        return
      end
      @socket.read_all dest
    end
  end

  ##
  # read_chunked reads from +@socket+ for chunk-size, chunk-extension, CRLF,
  # etc. and +chunk_data_io+ for chunk-data which may be deflate or gzip
  # encoded.
  #
  # See RFC 2616 section 3.6.1 for definitions

  def read_chunked(dest, chunk_data_io) # :nodoc:
    total = 0
    while true
      line = @socket.readline
      hexlen = line.slice(/[0-9a-fA-F]+/) or
          raise Net::HTTPBadResponse, "wrong chunk size line: #{line}"
      len = hexlen.hex
      break if len == 0
      begin
        chunk_data_io.read len, dest
      ensure
        total += len
        @socket.read 2   # \r\n
      end
    end
    until @socket.readline.empty?
      # none
    end
  end

  def stream_check
    raise IOError, 'attempt to read body out of block' if @socket.closed?
  end

  def procdest(dest, block)
    raise ArgumentError, 'both arg and block given for HTTP method' if
      dest and block
    if block
      Net::ReadAdapter.new(block)
    else
      dest || ''
    end
  end

  ##
  # Inflater is a wrapper around Net::BufferedIO that transparently inflates
  # zlib and gzip streams.

  class Inflater # :nodoc:

    ##
    # Creates a new Inflater wrapping +socket+

    def initialize socket
      @socket = socket
      # zlib with automatic gzip detection
      @inflate = Zlib::Inflate.new(32 + Zlib::MAX_WBITS)
    end

    ##
    # Finishes the inflate stream.

    def finish
      return if @inflate.total_in == 0
      @inflate.finish
    end

    ##
    # Returns a Net::ReadAdapter that inflates each read chunk into +dest+.
    #
    # This allows a large response body to be inflated without storing the
    # entire body in memory.

    def inflate_adapter(dest)
      if dest.respond_to?(:set_encoding)
        dest.set_encoding(Encoding::ASCII_8BIT)
      elsif dest.respond_to?(:force_encoding)
        dest.force_encoding(Encoding::ASCII_8BIT)
      end
      block = proc do |compressed_chunk|
        @inflate.inflate(compressed_chunk) do |chunk|
          compressed_chunk.clear
          dest << chunk
        end
      end

      Net::ReadAdapter.new(block)
    end

    ##
    # Reads +clen+ bytes from the socket, inflates them, then writes them to
    # +dest+.  +ignore_eof+ is passed down to Net::BufferedIO#read
    #
    # Unlike Net::BufferedIO#read, this method returns more than +clen+ bytes.
    # At this time there is no way for a user of Net::HTTPResponse to read a
    # specific number of bytes from the HTTP response body, so this internal
    # API does not return the same number of bytes as were requested.
    #
    # See https://bugs.ruby-lang.org/issues/6492 for further discussion.

    def read clen, dest, ignore_eof = false
      temp_dest = inflate_adapter(dest)

      @socket.read clen, temp_dest, ignore_eof
    end

    ##
    # Reads the rest of the socket, inflates it, then writes it to +dest+.

    def read_all dest
      temp_dest = inflate_adapter(dest)

      @socket.read_all temp_dest
    end

  end

end

PKFH[�6�Q��share/ruby/net/http/requests.rbnu�[���# frozen_string_literal: false
#
# HTTP/1.1 methods --- RFC2616
#

# See Net::HTTPGenericRequest for attributes and methods.
# See Net::HTTP for usage examples.
class Net::HTTP::Get < Net::HTTPRequest
  METHOD = 'GET'
  REQUEST_HAS_BODY  = false
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
# See Net::HTTP for usage examples.
class Net::HTTP::Head < Net::HTTPRequest
  METHOD = 'HEAD'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = false
end

# See Net::HTTPGenericRequest for attributes and methods.
# See Net::HTTP for usage examples.
class Net::HTTP::Post < Net::HTTPRequest
  METHOD = 'POST'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
# See Net::HTTP for usage examples.
class Net::HTTP::Put < Net::HTTPRequest
  METHOD = 'PUT'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
# See Net::HTTP for usage examples.
class Net::HTTP::Delete < Net::HTTPRequest
  METHOD = 'DELETE'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Options < Net::HTTPRequest
  METHOD = 'OPTIONS'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Trace < Net::HTTPRequest
  METHOD = 'TRACE'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = true
end

#
# PATCH method --- RFC5789
#

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Patch < Net::HTTPRequest
  METHOD = 'PATCH'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

#
# WebDAV methods --- RFC2518
#

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Propfind < Net::HTTPRequest
  METHOD = 'PROPFIND'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Proppatch < Net::HTTPRequest
  METHOD = 'PROPPATCH'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Mkcol < Net::HTTPRequest
  METHOD = 'MKCOL'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Copy < Net::HTTPRequest
  METHOD = 'COPY'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Move < Net::HTTPRequest
  METHOD = 'MOVE'
  REQUEST_HAS_BODY = false
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Lock < Net::HTTPRequest
  METHOD = 'LOCK'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

# See Net::HTTPGenericRequest for attributes and methods.
class Net::HTTP::Unlock < Net::HTTPRequest
  METHOD = 'UNLOCK'
  REQUEST_HAS_BODY = true
  RESPONSE_HAS_BODY = true
end

PKFH[��8'8' share/ruby/net/http/responses.rbnu�[���# frozen_string_literal: true
# :stopdoc:
# https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
class Net::HTTPUnknownResponse < Net::HTTPResponse
  HAS_BODY = true
  EXCEPTION_TYPE = Net::HTTPError
end
class Net::HTTPInformation < Net::HTTPResponse           # 1xx
  HAS_BODY = false
  EXCEPTION_TYPE = Net::HTTPError
end
class Net::HTTPSuccess < Net::HTTPResponse               # 2xx
  HAS_BODY = true
  EXCEPTION_TYPE = Net::HTTPError
end
class Net::HTTPRedirection < Net::HTTPResponse           # 3xx
  HAS_BODY = true
  EXCEPTION_TYPE = Net::HTTPRetriableError
end
class Net::HTTPClientError < Net::HTTPResponse           # 4xx
  HAS_BODY = true
  EXCEPTION_TYPE = Net::HTTPClientException   # for backward compatibility
end
class Net::HTTPServerError < Net::HTTPResponse           # 5xx
  HAS_BODY = true
  EXCEPTION_TYPE = Net::HTTPFatalError    # for backward compatibility
end

class Net::HTTPContinue < Net::HTTPInformation           # 100
  HAS_BODY = false
end
class Net::HTTPSwitchProtocol < Net::HTTPInformation     # 101
  HAS_BODY = false
end
class Net::HTTPProcessing < Net::HTTPInformation         # 102
  HAS_BODY = false
end
class Net::HTTPEarlyHints < Net::HTTPInformation         # 103 - RFC 8297
  HAS_BODY = false
end

class Net::HTTPOK < Net::HTTPSuccess                            # 200
  HAS_BODY = true
end
class Net::HTTPCreated < Net::HTTPSuccess                       # 201
  HAS_BODY = true
end
class Net::HTTPAccepted < Net::HTTPSuccess                      # 202
  HAS_BODY = true
end
class Net::HTTPNonAuthoritativeInformation < Net::HTTPSuccess   # 203
  HAS_BODY = true
end
class Net::HTTPNoContent < Net::HTTPSuccess                     # 204
  HAS_BODY = false
end
class Net::HTTPResetContent < Net::HTTPSuccess                  # 205
  HAS_BODY = false
end
class Net::HTTPPartialContent < Net::HTTPSuccess                # 206
  HAS_BODY = true
end
class Net::HTTPMultiStatus < Net::HTTPSuccess                   # 207 - RFC 4918
  HAS_BODY = true
end
class Net::HTTPAlreadyReported < Net::HTTPSuccess               # 208 - RFC 5842
  HAS_BODY = true
end
class Net::HTTPIMUsed < Net::HTTPSuccess                        # 226 - RFC 3229
  HAS_BODY = true
end

class Net::HTTPMultipleChoices < Net::HTTPRedirection    # 300
  HAS_BODY = true
end
Net::HTTPMultipleChoice = Net::HTTPMultipleChoices
class Net::HTTPMovedPermanently < Net::HTTPRedirection   # 301
  HAS_BODY = true
end
class Net::HTTPFound < Net::HTTPRedirection              # 302
  HAS_BODY = true
end
Net::HTTPMovedTemporarily = Net::HTTPFound
class Net::HTTPSeeOther < Net::HTTPRedirection           # 303
  HAS_BODY = true
end
class Net::HTTPNotModified < Net::HTTPRedirection        # 304
  HAS_BODY = false
end
class Net::HTTPUseProxy < Net::HTTPRedirection           # 305
  HAS_BODY = false
end
# 306 Switch Proxy - no longer unused
class Net::HTTPTemporaryRedirect < Net::HTTPRedirection  # 307
  HAS_BODY = true
end
class Net::HTTPPermanentRedirect < Net::HTTPRedirection  # 308
  HAS_BODY = true
end

class Net::HTTPBadRequest < Net::HTTPClientError                    # 400
  HAS_BODY = true
end
class Net::HTTPUnauthorized < Net::HTTPClientError                  # 401
  HAS_BODY = true
end
class Net::HTTPPaymentRequired < Net::HTTPClientError               # 402
  HAS_BODY = true
end
class Net::HTTPForbidden < Net::HTTPClientError                     # 403
  HAS_BODY = true
end
class Net::HTTPNotFound < Net::HTTPClientError                      # 404
  HAS_BODY = true
end
class Net::HTTPMethodNotAllowed < Net::HTTPClientError              # 405
  HAS_BODY = true
end
class Net::HTTPNotAcceptable < Net::HTTPClientError                 # 406
  HAS_BODY = true
end
class Net::HTTPProxyAuthenticationRequired < Net::HTTPClientError   # 407
  HAS_BODY = true
end
class Net::HTTPRequestTimeout < Net::HTTPClientError                # 408
  HAS_BODY = true
end
Net::HTTPRequestTimeOut = Net::HTTPRequestTimeout
class Net::HTTPConflict < Net::HTTPClientError                      # 409
  HAS_BODY = true
end
class Net::HTTPGone < Net::HTTPClientError                          # 410
  HAS_BODY = true
end
class Net::HTTPLengthRequired < Net::HTTPClientError                # 411
  HAS_BODY = true
end
class Net::HTTPPreconditionFailed < Net::HTTPClientError            # 412
  HAS_BODY = true
end
class Net::HTTPPayloadTooLarge < Net::HTTPClientError               # 413
  HAS_BODY = true
end
Net::HTTPRequestEntityTooLarge = Net::HTTPPayloadTooLarge
class Net::HTTPURITooLong < Net::HTTPClientError                    # 414
  HAS_BODY = true
end
Net::HTTPRequestURITooLong = Net::HTTPURITooLong
Net::HTTPRequestURITooLarge = Net::HTTPRequestURITooLong
class Net::HTTPUnsupportedMediaType < Net::HTTPClientError          # 415
  HAS_BODY = true
end
class Net::HTTPRangeNotSatisfiable < Net::HTTPClientError           # 416
  HAS_BODY = true
end
Net::HTTPRequestedRangeNotSatisfiable = Net::HTTPRangeNotSatisfiable
class Net::HTTPExpectationFailed < Net::HTTPClientError             # 417
  HAS_BODY = true
end
# 418 I'm a teapot - RFC 2324; a joke RFC
# 420 Enhance Your Calm - Twitter
class Net::HTTPMisdirectedRequest < Net::HTTPClientError            # 421 - RFC 7540
  HAS_BODY = true
end
class Net::HTTPUnprocessableEntity < Net::HTTPClientError           # 422 - RFC 4918
  HAS_BODY = true
end
class Net::HTTPLocked < Net::HTTPClientError                        # 423 - RFC 4918
  HAS_BODY = true
end
class Net::HTTPFailedDependency < Net::HTTPClientError              # 424 - RFC 4918
  HAS_BODY = true
end
# 425 Unordered Collection - existed only in draft
class Net::HTTPUpgradeRequired < Net::HTTPClientError               # 426 - RFC 2817
  HAS_BODY = true
end
class Net::HTTPPreconditionRequired < Net::HTTPClientError          # 428 - RFC 6585
  HAS_BODY = true
end
class Net::HTTPTooManyRequests < Net::HTTPClientError               # 429 - RFC 6585
  HAS_BODY = true
end
class Net::HTTPRequestHeaderFieldsTooLarge < Net::HTTPClientError   # 431 - RFC 6585
  HAS_BODY = true
end
class Net::HTTPUnavailableForLegalReasons < Net::HTTPClientError    # 451 - RFC 7725
  HAS_BODY = true
end
# 444 No Response - Nginx
# 449 Retry With - Microsoft
# 450 Blocked by Windows Parental Controls - Microsoft
# 499 Client Closed Request - Nginx

class Net::HTTPInternalServerError < Net::HTTPServerError           # 500
  HAS_BODY = true
end
class Net::HTTPNotImplemented < Net::HTTPServerError                # 501
  HAS_BODY = true
end
class Net::HTTPBadGateway < Net::HTTPServerError                    # 502
  HAS_BODY = true
end
class Net::HTTPServiceUnavailable < Net::HTTPServerError            # 503
  HAS_BODY = true
end
class Net::HTTPGatewayTimeout < Net::HTTPServerError                # 504
  HAS_BODY = true
end
Net::HTTPGatewayTimeOut = Net::HTTPGatewayTimeout
class Net::HTTPVersionNotSupported < Net::HTTPServerError           # 505
  HAS_BODY = true
end
class Net::HTTPVariantAlsoNegotiates < Net::HTTPServerError         # 506
  HAS_BODY = true
end
class Net::HTTPInsufficientStorage < Net::HTTPServerError           # 507 - RFC 4918
  HAS_BODY = true
end
class Net::HTTPLoopDetected < Net::HTTPServerError                  # 508 - RFC 5842
  HAS_BODY = true
end
# 509 Bandwidth Limit Exceeded - Apache bw/limited extension
class Net::HTTPNotExtended < Net::HTTPServerError                   # 510 - RFC 2774
  HAS_BODY = true
end
class Net::HTTPNetworkAuthenticationRequired < Net::HTTPServerError # 511 - RFC 6585
  HAS_BODY = true
end

class Net::HTTPResponse
  CODE_CLASS_TO_OBJ = {
    '1' => Net::HTTPInformation,
    '2' => Net::HTTPSuccess,
    '3' => Net::HTTPRedirection,
    '4' => Net::HTTPClientError,
    '5' => Net::HTTPServerError
  }
  CODE_TO_OBJ = {
    '100' => Net::HTTPContinue,
    '101' => Net::HTTPSwitchProtocol,
    '102' => Net::HTTPProcessing,
    '103' => Net::HTTPEarlyHints,

    '200' => Net::HTTPOK,
    '201' => Net::HTTPCreated,
    '202' => Net::HTTPAccepted,
    '203' => Net::HTTPNonAuthoritativeInformation,
    '204' => Net::HTTPNoContent,
    '205' => Net::HTTPResetContent,
    '206' => Net::HTTPPartialContent,
    '207' => Net::HTTPMultiStatus,
    '208' => Net::HTTPAlreadyReported,
    '226' => Net::HTTPIMUsed,

    '300' => Net::HTTPMultipleChoices,
    '301' => Net::HTTPMovedPermanently,
    '302' => Net::HTTPFound,
    '303' => Net::HTTPSeeOther,
    '304' => Net::HTTPNotModified,
    '305' => Net::HTTPUseProxy,
    '307' => Net::HTTPTemporaryRedirect,
    '308' => Net::HTTPPermanentRedirect,

    '400' => Net::HTTPBadRequest,
    '401' => Net::HTTPUnauthorized,
    '402' => Net::HTTPPaymentRequired,
    '403' => Net::HTTPForbidden,
    '404' => Net::HTTPNotFound,
    '405' => Net::HTTPMethodNotAllowed,
    '406' => Net::HTTPNotAcceptable,
    '407' => Net::HTTPProxyAuthenticationRequired,
    '408' => Net::HTTPRequestTimeout,
    '409' => Net::HTTPConflict,
    '410' => Net::HTTPGone,
    '411' => Net::HTTPLengthRequired,
    '412' => Net::HTTPPreconditionFailed,
    '413' => Net::HTTPPayloadTooLarge,
    '414' => Net::HTTPURITooLong,
    '415' => Net::HTTPUnsupportedMediaType,
    '416' => Net::HTTPRangeNotSatisfiable,
    '417' => Net::HTTPExpectationFailed,
    '421' => Net::HTTPMisdirectedRequest,
    '422' => Net::HTTPUnprocessableEntity,
    '423' => Net::HTTPLocked,
    '424' => Net::HTTPFailedDependency,
    '426' => Net::HTTPUpgradeRequired,
    '428' => Net::HTTPPreconditionRequired,
    '429' => Net::HTTPTooManyRequests,
    '431' => Net::HTTPRequestHeaderFieldsTooLarge,
    '451' => Net::HTTPUnavailableForLegalReasons,

    '500' => Net::HTTPInternalServerError,
    '501' => Net::HTTPNotImplemented,
    '502' => Net::HTTPBadGateway,
    '503' => Net::HTTPServiceUnavailable,
    '504' => Net::HTTPGatewayTimeout,
    '505' => Net::HTTPVersionNotSupported,
    '506' => Net::HTTPVariantAlsoNegotiates,
    '507' => Net::HTTPInsufficientStorage,
    '508' => Net::HTTPLoopDetected,
    '510' => Net::HTTPNotExtended,
    '511' => Net::HTTPNetworkAuthenticationRequired,
  }
end

# :startdoc:
PKFH[���"share/ruby/net/http/proxy_delta.rbnu�[���# frozen_string_literal: false
module Net::HTTP::ProxyDelta   #:nodoc: internal use only
  private

  def conn_address
    proxy_address()
  end

  def conn_port
    proxy_port()
  end

  def edit_path(path)
    use_ssl? ? path : "http://#{addr_port()}#{path}"
  end
end

PKFH[+!�ii!share/ruby/net/http/exceptions.rbnu�[���# frozen_string_literal: false
# Net::HTTP exception class.
# You cannot use Net::HTTPExceptions directly; instead, you must use
# its subclasses.
module Net::HTTPExceptions
  def initialize(msg, res)   #:nodoc:
    super msg
    @response = res
  end
  attr_reader :response
  alias data response    #:nodoc: obsolete
end
class Net::HTTPError < Net::ProtocolError
  include Net::HTTPExceptions
end
class Net::HTTPRetriableError < Net::ProtoRetriableError
  include Net::HTTPExceptions
end
class Net::HTTPServerException < Net::ProtoServerError
  # We cannot use the name "HTTPServerError", it is the name of the response.
  include Net::HTTPExceptions
end

# for compatibility
Net::HTTPClientException = Net::HTTPServerException

class Net::HTTPFatalError < Net::ProtoFatalError
  include Net::HTTPExceptions
end

module Net
  deprecate_constant(:HTTPServerException)
end
PKFH[{���share/ruby/net/http/status.rbnu�[���# frozen_string_literal: true

require_relative '../http'

if $0 == __FILE__
  require 'open-uri'
  IO.foreach(__FILE__) do |line|
    puts line
    break if line.start_with?('end')
  end
  puts
  puts "Net::HTTP::STATUS_CODES = {"
  url = "https://www.iana.org/assignments/http-status-codes/http-status-codes-1.csv"
  URI(url).read.each_line do |line|
    code, mes, = line.split(',')
    next if ['(Unused)', 'Unassigned', 'Description'].include?(mes)
    puts "  #{code} => '#{mes}',"
  end
  puts "}"
end

Net::HTTP::STATUS_CODES = {
  100 => 'Continue',
  101 => 'Switching Protocols',
  102 => 'Processing',
  103 => 'Early Hints',
  200 => 'OK',
  201 => 'Created',
  202 => 'Accepted',
  203 => 'Non-Authoritative Information',
  204 => 'No Content',
  205 => 'Reset Content',
  206 => 'Partial Content',
  207 => 'Multi-Status',
  208 => 'Already Reported',
  226 => 'IM Used',
  300 => 'Multiple Choices',
  301 => 'Moved Permanently',
  302 => 'Found',
  303 => 'See Other',
  304 => 'Not Modified',
  305 => 'Use Proxy',
  307 => 'Temporary Redirect',
  308 => 'Permanent Redirect',
  400 => 'Bad Request',
  401 => 'Unauthorized',
  402 => 'Payment Required',
  403 => 'Forbidden',
  404 => 'Not Found',
  405 => 'Method Not Allowed',
  406 => 'Not Acceptable',
  407 => 'Proxy Authentication Required',
  408 => 'Request Timeout',
  409 => 'Conflict',
  410 => 'Gone',
  411 => 'Length Required',
  412 => 'Precondition Failed',
  413 => 'Payload Too Large',
  414 => 'URI Too Long',
  415 => 'Unsupported Media Type',
  416 => 'Range Not Satisfiable',
  417 => 'Expectation Failed',
  421 => 'Misdirected Request',
  422 => 'Unprocessable Entity',
  423 => 'Locked',
  424 => 'Failed Dependency',
  426 => 'Upgrade Required',
  428 => 'Precondition Required',
  429 => 'Too Many Requests',
  431 => 'Request Header Fields Too Large',
  451 => 'Unavailable For Legal Reasons',
  500 => 'Internal Server Error',
  501 => 'Not Implemented',
  502 => 'Bad Gateway',
  503 => 'Service Unavailable',
  504 => 'Gateway Timeout',
  505 => 'HTTP Version Not Supported',
  506 => 'Variant Also Negotiates',
  507 => 'Insufficient Storage',
  508 => 'Loop Detected',
  510 => 'Not Extended',
  511 => 'Network Authentication Required',
}
PKFH[w����share/ruby/net/http/request.rbnu�[���# frozen_string_literal: false
# HTTP request class.
# This class wraps together the request header and the request path.
# You cannot use this class directly. Instead, you should use one of its
# subclasses: Net::HTTP::Get, Net::HTTP::Post, Net::HTTP::Head.
#
class Net::HTTPRequest < Net::HTTPGenericRequest
  # Creates an HTTP request object for +path+.
  #
  # +initheader+ are the default headers to use.  Net::HTTP adds
  # Accept-Encoding to enable compression of the response body unless
  # Accept-Encoding or Range are supplied in +initheader+.

  def initialize(path, initheader = nil)
    super self.class::METHOD,
          self.class::REQUEST_HAS_BODY,
          self.class::RESPONSE_HAS_BODY,
          path, initheader
  end
end

PKFH[��~�aashare/ruby/net/http/backward.rbnu�[���# frozen_string_literal: false
# for backward compatibility

# :enddoc:

class Net::HTTP
  ProxyMod = ProxyDelta
end

module Net
  HTTPSession = Net::HTTP
end

module Net::NetPrivate
  HTTPRequest = ::Net::HTTPRequest
end

Net::HTTPInformationCode  = Net::HTTPInformation
Net::HTTPSuccessCode      = Net::HTTPSuccess
Net::HTTPRedirectionCode  = Net::HTTPRedirection
Net::HTTPRetriableCode    = Net::HTTPRedirection
Net::HTTPClientErrorCode  = Net::HTTPClientError
Net::HTTPFatalErrorCode   = Net::HTTPClientError
Net::HTTPServerErrorCode  = Net::HTTPServerError
Net::HTTPResponceReceiver = Net::HTTPResponse

PKFH[D=��*�*share/ruby/net/protocol.rbnu�[���# frozen_string_literal: true
#
# = net/protocol.rb
#
#--
# Copyright (c) 1999-2004 Yukihiro Matsumoto
# Copyright (c) 1999-2004 Minero Aoki
#
# written and maintained by Minero Aoki <aamine@loveruby.net>
#
# This program is free software. You can re-distribute and/or
# modify this program under the same terms as Ruby itself,
# Ruby Distribute License or GNU General Public License.
#
# $Id$
#++
#
# WARNING: This file is going to remove.
# Do not rely on the implementation written in this file.
#

require 'socket'
require 'timeout'
require 'io/wait'

module Net # :nodoc:

  class Protocol   #:nodoc: internal use only
    private
    def Protocol.protocol_param(name, val)
      module_eval(<<-End, __FILE__, __LINE__ + 1)
        def #{name}
          #{val}
        end
      End
    end

    def ssl_socket_connect(s, timeout)
      if timeout
        while true
          raise Net::OpenTimeout if timeout <= 0
          start = Process.clock_gettime Process::CLOCK_MONOTONIC
          # to_io is required because SSLSocket doesn't have wait_readable yet
          case s.connect_nonblock(exception: false)
          when :wait_readable; s.to_io.wait_readable(timeout)
          when :wait_writable; s.to_io.wait_writable(timeout)
          else; break
          end
          timeout -= Process.clock_gettime(Process::CLOCK_MONOTONIC) - start
        end
      else
        s.connect
      end
    end
  end


  class ProtocolError          < StandardError; end
  class ProtoSyntaxError       < ProtocolError; end
  class ProtoFatalError        < ProtocolError; end
  class ProtoUnknownError      < ProtocolError; end
  class ProtoServerError       < ProtocolError; end
  class ProtoAuthError         < ProtocolError; end
  class ProtoCommandError      < ProtocolError; end
  class ProtoRetriableError    < ProtocolError; end
  ProtocRetryError = ProtoRetriableError

  ##
  # OpenTimeout, a subclass of Timeout::Error, is raised if a connection cannot
  # be created within the open_timeout.

  class OpenTimeout            < Timeout::Error; end

  ##
  # ReadTimeout, a subclass of Timeout::Error, is raised if a chunk of the
  # response cannot be read within the read_timeout.

  class ReadTimeout < Timeout::Error
    def initialize(io = nil)
      @io = io
    end
    attr_reader :io

    def message
      msg = super
      if @io
        msg = "#{msg} with #{@io.inspect}"
      end
      msg
    end
  end

  ##
  # WriteTimeout, a subclass of Timeout::Error, is raised if a chunk of the
  # response cannot be written within the write_timeout.  Not raised on Windows.

  class WriteTimeout < Timeout::Error
    def initialize(io = nil)
      @io = io
    end
    attr_reader :io

    def message
      msg = super
      if @io
        msg = "#{msg} with #{@io.inspect}"
      end
      msg
    end
  end


  class BufferedIO   #:nodoc: internal use only
    def initialize(io, read_timeout: 60, write_timeout: 60, continue_timeout: nil, debug_output: nil)
      @io = io
      @read_timeout = read_timeout
      @write_timeout = write_timeout
      @continue_timeout = continue_timeout
      @debug_output = debug_output
      @rbuf = ''.b
    end

    attr_reader :io
    attr_accessor :read_timeout
    attr_accessor :write_timeout
    attr_accessor :continue_timeout
    attr_accessor :debug_output

    def inspect
      "#<#{self.class} io=#{@io}>"
    end

    def eof?
      @io.eof?
    end

    def closed?
      @io.closed?
    end

    def close
      @io.close
    end

    #
    # Read
    #

    public

    def read(len, dest = ''.b, ignore_eof = false)
      LOG "reading #{len} bytes..."
      read_bytes = 0
      begin
        while read_bytes + @rbuf.size < len
          s = rbuf_consume(@rbuf.size)
          read_bytes += s.size
          dest << s
          rbuf_fill
        end
        s = rbuf_consume(len - read_bytes)
        read_bytes += s.size
        dest << s
      rescue EOFError
        raise unless ignore_eof
      end
      LOG "read #{read_bytes} bytes"
      dest
    end

    def read_all(dest = ''.b)
      LOG 'reading all...'
      read_bytes = 0
      begin
        while true
          s = rbuf_consume(@rbuf.size)
          read_bytes += s.size
          dest << s
          rbuf_fill
        end
      rescue EOFError
        ;
      end
      LOG "read #{read_bytes} bytes"
      dest
    end

    def readuntil(terminator, ignore_eof = false)
      begin
        until idx = @rbuf.index(terminator)
          rbuf_fill
        end
        return rbuf_consume(idx + terminator.size)
      rescue EOFError
        raise unless ignore_eof
        return rbuf_consume(@rbuf.size)
      end
    end

    def readline
      readuntil("\n").chop
    end

    private

    BUFSIZE = 1024 * 16

    def rbuf_fill
      tmp = @rbuf.empty? ? @rbuf : nil
      case rv = @io.read_nonblock(BUFSIZE, tmp, exception: false)
      when String
        return if rv.equal?(tmp)
        @rbuf << rv
        rv.clear
        return
      when :wait_readable
        (io = @io.to_io).wait_readable(@read_timeout) or raise Net::ReadTimeout.new(io)
        # continue looping
      when :wait_writable
        # OpenSSL::Buffering#read_nonblock may fail with IO::WaitWritable.
        # http://www.openssl.org/support/faq.html#PROG10
        (io = @io.to_io).wait_writable(@read_timeout) or raise Net::ReadTimeout.new(io)
        # continue looping
      when nil
        raise EOFError, 'end of file reached'
      end while true
    end

    def rbuf_consume(len)
      if len == @rbuf.size
        s = @rbuf
        @rbuf = ''.b
      else
        s = @rbuf.slice!(0, len)
      end
      @debug_output << %Q[-> #{s.dump}\n] if @debug_output
      s
    end

    #
    # Write
    #

    public

    def write(*strs)
      writing {
        write0(*strs)
      }
    end

    alias << write

    def writeline(str)
      writing {
        write0 str + "\r\n"
      }
    end

    private

    def writing
      @written_bytes = 0
      @debug_output << '<- ' if @debug_output
      yield
      @debug_output << "\n" if @debug_output
      bytes = @written_bytes
      @written_bytes = nil
      bytes
    end

    def write0(*strs)
      @debug_output << strs.map(&:dump).join if @debug_output
      orig_written_bytes = @written_bytes
      strs.each_with_index do |str, i|
        need_retry = true
        case len = @io.write_nonblock(str, exception: false)
        when Integer
          @written_bytes += len
          len -= str.bytesize
          if len == 0
            if strs.size == i+1
              return @written_bytes - orig_written_bytes
            else
              need_retry = false
              # next string
            end
          elsif len < 0
            str = str.byteslice(len, -len)
          else # len > 0
            need_retry = false
            # next string
          end
          # continue looping
        when :wait_writable
          (io = @io.to_io).wait_writable(@write_timeout) or raise Net::WriteTimeout.new(io)
          # continue looping
        end while need_retry
      end
    end

    #
    # Logging
    #

    private

    def LOG_off
      @save_debug_out = @debug_output
      @debug_output = nil
    end

    def LOG_on
      @debug_output = @save_debug_out
    end

    def LOG(msg)
      return unless @debug_output
      @debug_output << msg + "\n"
    end
  end


  class InternetMessageIO < BufferedIO   #:nodoc: internal use only
    def initialize(*, **)
      super
      @wbuf = nil
    end

    #
    # Read
    #

    def each_message_chunk
      LOG 'reading message...'
      LOG_off()
      read_bytes = 0
      while (line = readuntil("\r\n")) != ".\r\n"
        read_bytes += line.size
        yield line.delete_prefix('.')
      end
      LOG_on()
      LOG "read message (#{read_bytes} bytes)"
    end

    # *library private* (cannot handle 'break')
    def each_list_item
      while (str = readuntil("\r\n")) != ".\r\n"
        yield str.chop
      end
    end

    def write_message_0(src)
      prev = @written_bytes
      each_crlf_line(src) do |line|
        write0 dot_stuff(line)
      end
      @written_bytes - prev
    end

    #
    # Write
    #

    def write_message(src)
      LOG "writing message from #{src.class}"
      LOG_off()
      len = writing {
        using_each_crlf_line {
          write_message_0 src
        }
      }
      LOG_on()
      LOG "wrote #{len} bytes"
      len
    end

    def write_message_by_block(&block)
      LOG 'writing message from block'
      LOG_off()
      len = writing {
        using_each_crlf_line {
          begin
            block.call(WriteAdapter.new(self, :write_message_0))
          rescue LocalJumpError
            # allow `break' from writer block
          end
        }
      }
      LOG_on()
      LOG "wrote #{len} bytes"
      len
    end

    private

    def dot_stuff(s)
      s.sub(/\A\./, '..')
    end

    def using_each_crlf_line
      @wbuf = ''.b
      yield
      if not @wbuf.empty?   # unterminated last line
        write0 dot_stuff(@wbuf.chomp) + "\r\n"
      elsif @written_bytes == 0   # empty src
        write0 "\r\n"
      end
      write0 ".\r\n"
      @wbuf = nil
    end

    def each_crlf_line(src)
      buffer_filling(@wbuf, src) do
        while line = @wbuf.slice!(/\A[^\r\n]*(?:\n|\r(?:\n|(?!\z)))/)
          yield line.chomp("\n") + "\r\n"
        end
      end
    end

    def buffer_filling(buf, src)
      case src
      when String    # for speeding up.
        0.step(src.size - 1, 1024) do |i|
          buf << src[i, 1024]
          yield
        end
      when File    # for speeding up.
        while s = src.read(1024)
          buf << s
          yield
        end
      else    # generic reader
        src.each do |str|
          buf << str
          yield if buf.size > 1024
        end
        yield unless buf.empty?
      end
    end
  end


  #
  # The writer adapter class
  #
  class WriteAdapter
    def initialize(socket, method)
      @socket = socket
      @method_id = method
    end

    def inspect
      "#<#{self.class} socket=#{@socket.inspect}>"
    end

    def write(str)
      @socket.__send__(@method_id, str)
    end

    alias print write

    def <<(str)
      write str
      self
    end

    def puts(str = '')
      write str.chomp("\n") + "\n"
    end

    def printf(*args)
      write sprintf(*args)
    end
  end


  class ReadAdapter   #:nodoc: internal use only
    def initialize(block)
      @block = block
    end

    def inspect
      "#<#{self.class}>"
    end

    def <<(str)
      call_block(str, &@block) if @block
    end

    private

    # This method is needed because @block must be called by yield,
    # not Proc#call.  You can see difference when using `break' in
    # the block.
    def call_block(str)
      yield str
    end
  end


  module NetPrivate   #:nodoc: obsolete
    Socket = ::Net::InternetMessageIO
  end

end   # module Net
PKFH[�RKvijijshare/ruby/net/pop.rbnu�[���# frozen_string_literal: true
# = net/pop.rb
#
# Copyright (c) 1999-2007 Yukihiro Matsumoto.
#
# Copyright (c) 1999-2007 Minero Aoki.
#
# Written & maintained by Minero Aoki <aamine@loveruby.net>.
#
# Documented by William Webber and Minero Aoki.
#
# This program is free software. You can re-distribute and/or
# modify this program under the same terms as Ruby itself,
# Ruby Distribute License.
#
# NOTE: You can find Japanese version of this document at:
# http://docs.ruby-lang.org/ja/latest/library/net=2fpop.html
#
#   $Id$
#
# See Net::POP3 for documentation.
#

require 'net/protocol'
require 'digest/md5'
require 'timeout'

begin
  require "openssl"
rescue LoadError
end

module Net

  # Non-authentication POP3 protocol error
  # (reply code "-ERR", except authentication).
  class POPError < ProtocolError; end

  # POP3 authentication error.
  class POPAuthenticationError < ProtoAuthError; end

  # Unexpected response from the server.
  class POPBadResponse < POPError; end

  #
  # == What is This Library?
  #
  # This library provides functionality for retrieving
  # email via POP3, the Post Office Protocol version 3. For details
  # of POP3, see [RFC1939] (http://www.ietf.org/rfc/rfc1939.txt).
  #
  # == Examples
  #
  # === Retrieving Messages
  #
  # This example retrieves messages from the server and deletes them
  # on the server.
  #
  # Messages are written to files named 'inbox/1', 'inbox/2', ....
  # Replace 'pop.example.com' with your POP3 server address, and
  # 'YourAccount' and 'YourPassword' with the appropriate account
  # details.
  #
  #     require 'net/pop'
  #
  #     pop = Net::POP3.new('pop.example.com')
  #     pop.start('YourAccount', 'YourPassword')             # (1)
  #     if pop.mails.empty?
  #       puts 'No mail.'
  #     else
  #       i = 0
  #       pop.each_mail do |m|   # or "pop.mails.each ..."   # (2)
  #         File.open("inbox/#{i}", 'w') do |f|
  #           f.write m.pop
  #         end
  #         m.delete
  #         i += 1
  #       end
  #       puts "#{pop.mails.size} mails popped."
  #     end
  #     pop.finish                                           # (3)
  #
  # 1. Call Net::POP3#start and start POP session.
  # 2. Access messages by using POP3#each_mail and/or POP3#mails.
  # 3. Close POP session by calling POP3#finish or use the block form of #start.
  #
  # === Shortened Code
  #
  # The example above is very verbose. You can shorten the code by using
  # some utility methods. First, the block form of Net::POP3.start can
  # be used instead of POP3.new, POP3#start and POP3#finish.
  #
  #     require 'net/pop'
  #
  #     Net::POP3.start('pop.example.com', 110,
  #                     'YourAccount', 'YourPassword') do |pop|
  #       if pop.mails.empty?
  #         puts 'No mail.'
  #       else
  #         i = 0
  #         pop.each_mail do |m|   # or "pop.mails.each ..."
  #           File.open("inbox/#{i}", 'w') do |f|
  #             f.write m.pop
  #           end
  #           m.delete
  #           i += 1
  #         end
  #         puts "#{pop.mails.size} mails popped."
  #       end
  #     end
  #
  # POP3#delete_all is an alternative for #each_mail and #delete.
  #
  #     require 'net/pop'
  #
  #     Net::POP3.start('pop.example.com', 110,
  #                     'YourAccount', 'YourPassword') do |pop|
  #       if pop.mails.empty?
  #         puts 'No mail.'
  #       else
  #         i = 1
  #         pop.delete_all do |m|
  #           File.open("inbox/#{i}", 'w') do |f|
  #             f.write m.pop
  #           end
  #           i += 1
  #         end
  #       end
  #     end
  #
  # And here is an even shorter example.
  #
  #     require 'net/pop'
  #
  #     i = 0
  #     Net::POP3.delete_all('pop.example.com', 110,
  #                          'YourAccount', 'YourPassword') do |m|
  #       File.open("inbox/#{i}", 'w') do |f|
  #         f.write m.pop
  #       end
  #       i += 1
  #     end
  #
  # === Memory Space Issues
  #
  # All the examples above get each message as one big string.
  # This example avoids this.
  #
  #     require 'net/pop'
  #
  #     i = 1
  #     Net::POP3.delete_all('pop.example.com', 110,
  #                          'YourAccount', 'YourPassword') do |m|
  #       File.open("inbox/#{i}", 'w') do |f|
  #         m.pop do |chunk|    # get a message little by little.
  #           f.write chunk
  #         end
  #         i += 1
  #       end
  #     end
  #
  # === Using APOP
  #
  # The net/pop library supports APOP authentication.
  # To use APOP, use the Net::APOP class instead of the Net::POP3 class.
  # You can use the utility method, Net::POP3.APOP(). For example:
  #
  #     require 'net/pop'
  #
  #     # Use APOP authentication if $isapop == true
  #     pop = Net::POP3.APOP($isapop).new('apop.example.com', 110)
  #     pop.start('YourAccount', 'YourPassword') do |pop|
  #       # Rest of the code is the same.
  #     end
  #
  # === Fetch Only Selected Mail Using 'UIDL' POP Command
  #
  # If your POP server provides UIDL functionality,
  # you can grab only selected mails from the POP server.
  # e.g.
  #
  #     def need_pop?( id )
  #       # determine if we need pop this mail...
  #     end
  #
  #     Net::POP3.start('pop.example.com', 110,
  #                     'Your account', 'Your password') do |pop|
  #       pop.mails.select { |m| need_pop?(m.unique_id) }.each do |m|
  #         do_something(m.pop)
  #       end
  #     end
  #
  # The POPMail#unique_id() method returns the unique-id of the message as a
  # String. Normally the unique-id is a hash of the message.
  #
  class POP3 < Protocol

    # svn revision of this library
    Revision = %q$Revision$.split[1]

    #
    # Class Parameters
    #

    # returns the port for POP3
    def POP3.default_port
      default_pop3_port()
    end

    # The default port for POP3 connections, port 110
    def POP3.default_pop3_port
      110
    end

    # The default port for POP3S connections, port 995
    def POP3.default_pop3s_port
      995
    end

    def POP3.socket_type   #:nodoc: obsolete
      Net::InternetMessageIO
    end

    #
    # Utilities
    #

    # Returns the APOP class if +isapop+ is true; otherwise, returns
    # the POP class.  For example:
    #
    #     # Example 1
    #     pop = Net::POP3::APOP($is_apop).new(addr, port)
    #
    #     # Example 2
    #     Net::POP3::APOP($is_apop).start(addr, port) do |pop|
    #       ....
    #     end
    #
    def POP3.APOP(isapop)
      isapop ? APOP : POP3
    end

    # Starts a POP3 session and iterates over each POPMail object,
    # yielding it to the +block+.
    # This method is equivalent to:
    #
    #     Net::POP3.start(address, port, account, password) do |pop|
    #       pop.each_mail do |m|
    #         yield m
    #       end
    #     end
    #
    # This method raises a POPAuthenticationError if authentication fails.
    #
    # === Example
    #
    #     Net::POP3.foreach('pop.example.com', 110,
    #                       'YourAccount', 'YourPassword') do |m|
    #       file.write m.pop
    #       m.delete if $DELETE
    #     end
    #
    def POP3.foreach(address, port = nil,
                     account = nil, password = nil,
                     isapop = false, &block)  # :yields: message
      start(address, port, account, password, isapop) {|pop|
        pop.each_mail(&block)
      }
    end

    # Starts a POP3 session and deletes all messages on the server.
    # If a block is given, each POPMail object is yielded to it before
    # being deleted.
    #
    # This method raises a POPAuthenticationError if authentication fails.
    #
    # === Example
    #
    #     Net::POP3.delete_all('pop.example.com', 110,
    #                          'YourAccount', 'YourPassword') do |m|
    #       file.write m.pop
    #     end
    #
    def POP3.delete_all(address, port = nil,
                        account = nil, password = nil,
                        isapop = false, &block)
      start(address, port, account, password, isapop) {|pop|
        pop.delete_all(&block)
      }
    end

    # Opens a POP3 session, attempts authentication, and quits.
    #
    # This method raises POPAuthenticationError if authentication fails.
    #
    # === Example: normal POP3
    #
    #     Net::POP3.auth_only('pop.example.com', 110,
    #                         'YourAccount', 'YourPassword')
    #
    # === Example: APOP
    #
    #     Net::POP3.auth_only('pop.example.com', 110,
    #                         'YourAccount', 'YourPassword', true)
    #
    def POP3.auth_only(address, port = nil,
                       account = nil, password = nil,
                       isapop = false)
      new(address, port, isapop).auth_only account, password
    end

    # Starts a pop3 session, attempts authentication, and quits.
    # This method must not be called while POP3 session is opened.
    # This method raises POPAuthenticationError if authentication fails.
    def auth_only(account, password)
      raise IOError, 'opening previously opened POP session' if started?
      start(account, password) {
        ;
      }
    end

    #
    # SSL
    #

    @ssl_params = nil

    # :call-seq:
    #    Net::POP.enable_ssl(params = {})
    #
    # Enable SSL for all new instances.
    # +params+ is passed to OpenSSL::SSLContext#set_params.
    def POP3.enable_ssl(*args)
      @ssl_params = create_ssl_params(*args)
    end

    # Constructs proper parameters from arguments
    def POP3.create_ssl_params(verify_or_params = {}, certs = nil)
      begin
        params = verify_or_params.to_hash
      rescue NoMethodError
        params = {}
        params[:verify_mode] = verify_or_params
        if certs
          if File.file?(certs)
            params[:ca_file] = certs
          elsif File.directory?(certs)
            params[:ca_path] = certs
          end
        end
      end
      return params
    end

    # Disable SSL for all new instances.
    def POP3.disable_ssl
      @ssl_params = nil
    end

    # returns the SSL Parameters
    #
    # see also POP3.enable_ssl
    def POP3.ssl_params
      return @ssl_params
    end

    # returns +true+ if POP3.ssl_params is set
    def POP3.use_ssl?
      return !@ssl_params.nil?
    end

    # returns whether verify_mode is enable from POP3.ssl_params
    def POP3.verify
      return @ssl_params[:verify_mode]
    end

    # returns the :ca_file or :ca_path from POP3.ssl_params
    def POP3.certs
      return @ssl_params[:ca_file] || @ssl_params[:ca_path]
    end

    #
    # Session management
    #

    # Creates a new POP3 object and open the connection.  Equivalent to
    #
    #   Net::POP3.new(address, port, isapop).start(account, password)
    #
    # If +block+ is provided, yields the newly-opened POP3 object to it,
    # and automatically closes it at the end of the session.
    #
    # === Example
    #
    #    Net::POP3.start(addr, port, account, password) do |pop|
    #      pop.each_mail do |m|
    #        file.write m.pop
    #        m.delete
    #      end
    #    end
    #
    def POP3.start(address, port = nil,
                   account = nil, password = nil,
                   isapop = false, &block)   # :yield: pop
      new(address, port, isapop).start(account, password, &block)
    end

    # Creates a new POP3 object.
    #
    # +address+ is the hostname or ip address of your POP3 server.
    #
    # The optional +port+ is the port to connect to.
    #
    # The optional +isapop+ specifies whether this connection is going
    # to use APOP authentication; it defaults to +false+.
    #
    # This method does *not* open the TCP connection.
    def initialize(addr, port = nil, isapop = false)
      @address = addr
      @ssl_params = POP3.ssl_params
      @port = port
      @apop = isapop

      @command = nil
      @socket = nil
      @started = false
      @open_timeout = 30
      @read_timeout = 60
      @debug_output = nil

      @mails = nil
      @n_mails = nil
      @n_bytes = nil
    end

    # Does this instance use APOP authentication?
    def apop?
      @apop
    end

    # does this instance use SSL?
    def use_ssl?
      return !@ssl_params.nil?
    end

    # :call-seq:
    #    Net::POP#enable_ssl(params = {})
    #
    # Enables SSL for this instance.  Must be called before the connection is
    # established to have any effect.
    # +params[:port]+ is port to establish the SSL connection on; Defaults to 995.
    # +params+ (except :port) is passed to OpenSSL::SSLContext#set_params.
    def enable_ssl(verify_or_params = {}, certs = nil, port = nil)
      begin
        @ssl_params = verify_or_params.to_hash.dup
        @port = @ssl_params.delete(:port) || @port
      rescue NoMethodError
        @ssl_params = POP3.create_ssl_params(verify_or_params, certs)
        @port = port || @port
      end
    end

    # Disable SSL for all new instances.
    def disable_ssl
      @ssl_params = nil
    end

    # Provide human-readable stringification of class state.
    def inspect
      +"#<#{self.class} #{@address}:#{@port} open=#{@started}>"
    end

    # *WARNING*: This method causes a serious security hole.
    # Use this method only for debugging.
    #
    # Set an output stream for debugging.
    #
    # === Example
    #
    #   pop = Net::POP.new(addr, port)
    #   pop.set_debug_output $stderr
    #   pop.start(account, passwd) do |pop|
    #     ....
    #   end
    #
    def set_debug_output(arg)
      @debug_output = arg
    end

    # The address to connect to.
    attr_reader :address

    # The port number to connect to.
    def port
      return @port || (use_ssl? ? POP3.default_pop3s_port : POP3.default_pop3_port)
    end

    # Seconds to wait until a connection is opened.
    # If the POP3 object cannot open a connection within this time,
    # it raises a Net::OpenTimeout exception. The default value is 30 seconds.
    attr_accessor :open_timeout

    # Seconds to wait until reading one block (by one read(1) call).
    # If the POP3 object cannot complete a read() within this time,
    # it raises a Net::ReadTimeout exception. The default value is 60 seconds.
    attr_reader :read_timeout

    # Set the read timeout.
    def read_timeout=(sec)
      @command.socket.read_timeout = sec if @command
      @read_timeout = sec
    end

    # +true+ if the POP3 session has started.
    def started?
      @started
    end

    alias active? started?   #:nodoc: obsolete

    # Starts a POP3 session.
    #
    # When called with block, gives a POP3 object to the block and
    # closes the session after block call finishes.
    #
    # This method raises a POPAuthenticationError if authentication fails.
    def start(account, password) # :yield: pop
      raise IOError, 'POP session already started' if @started
      if block_given?
        begin
          do_start account, password
          return yield(self)
        ensure
          do_finish
        end
      else
        do_start account, password
        return self
      end
    end

    # internal method for Net::POP3.start
    def do_start(account, password) # :nodoc:
      s = Timeout.timeout(@open_timeout, Net::OpenTimeout) do
        TCPSocket.open(@address, port)
      end
      if use_ssl?
        raise 'openssl library not installed' unless defined?(OpenSSL)
        context = OpenSSL::SSL::SSLContext.new
        context.set_params(@ssl_params)
        s = OpenSSL::SSL::SSLSocket.new(s, context)
        s.hostname = @address
        s.sync_close = true
        ssl_socket_connect(s, @open_timeout)
        if context.verify_mode != OpenSSL::SSL::VERIFY_NONE
          s.post_connection_check(@address)
        end
      end
      @socket = InternetMessageIO.new(s,
                                      read_timeout: @read_timeout,
                                      debug_output: @debug_output)
      logging "POP session started: #{@address}:#{@port} (#{@apop ? 'APOP' : 'POP'})"
      on_connect
      @command = POP3Command.new(@socket)
      if apop?
        @command.apop account, password
      else
        @command.auth account, password
      end
      @started = true
    ensure
      # Authentication failed, clean up connection.
      unless @started
        s.close if s
        @socket = nil
        @command = nil
      end
    end
    private :do_start

    # Does nothing
    def on_connect # :nodoc:
    end
    private :on_connect

    # Finishes a POP3 session and closes TCP connection.
    def finish
      raise IOError, 'POP session not yet started' unless started?
      do_finish
    end

    # nil's out the:
    # - mails
    # - number counter for mails
    # - number counter for bytes
    # - quits the current command, if any
    def do_finish # :nodoc:
      @mails = nil
      @n_mails = nil
      @n_bytes = nil
      @command.quit if @command
    ensure
      @started = false
      @command = nil
      @socket.close if @socket
      @socket = nil
    end
    private :do_finish

    # Returns the current command.
    #
    # Raises IOError if there is no active socket
    def command # :nodoc:
      raise IOError, 'POP session not opened yet' \
                                      if not @socket or @socket.closed?
      @command
    end
    private :command

    #
    # POP protocol wrapper
    #

    # Returns the number of messages on the POP server.
    def n_mails
      return @n_mails if @n_mails
      @n_mails, @n_bytes = command().stat
      @n_mails
    end

    # Returns the total size in bytes of all the messages on the POP server.
    def n_bytes
      return @n_bytes if @n_bytes
      @n_mails, @n_bytes = command().stat
      @n_bytes
    end

    # Returns an array of Net::POPMail objects, representing all the
    # messages on the server.  This array is renewed when the session
    # restarts; otherwise, it is fetched from the server the first time
    # this method is called (directly or indirectly) and cached.
    #
    # This method raises a POPError if an error occurs.
    def mails
      return @mails.dup if @mails
      if n_mails() == 0
        # some popd raises error for LIST on the empty mailbox.
        @mails = []
        return []
      end

      @mails = command().list.map {|num, size|
        POPMail.new(num, size, self, command())
      }
      @mails.dup
    end

    # Yields each message to the passed-in block in turn.
    # Equivalent to:
    #
    #   pop3.mails.each do |popmail|
    #     ....
    #   end
    #
    # This method raises a POPError if an error occurs.
    def each_mail(&block)  # :yield: message
      mails().each(&block)
    end

    alias each each_mail

    # Deletes all messages on the server.
    #
    # If called with a block, yields each message in turn before deleting it.
    #
    # === Example
    #
    #     n = 1
    #     pop.delete_all do |m|
    #       File.open("inbox/#{n}") do |f|
    #         f.write m.pop
    #       end
    #       n += 1
    #     end
    #
    # This method raises a POPError if an error occurs.
    #
    def delete_all # :yield: message
      mails().each do |m|
        yield m if block_given?
        m.delete unless m.deleted?
      end
    end

    # Resets the session.  This clears all "deleted" marks from messages.
    #
    # This method raises a POPError if an error occurs.
    def reset
      command().rset
      mails().each do |m|
        m.instance_eval {
          @deleted = false
        }
      end
    end

    def set_all_uids   #:nodoc: internal use only (called from POPMail#uidl)
      uidl = command().uidl
      @mails.each {|m| m.uid = uidl[m.number] }
    end

    # debugging output for +msg+
    def logging(msg)
      @debug_output << msg + "\n" if @debug_output
    end

  end   # class POP3

  # class aliases
  POP = POP3 # :nodoc:
  POPSession  = POP3 # :nodoc:
  POP3Session = POP3 # :nodoc:

  #
  # This class is equivalent to POP3, except that it uses APOP authentication.
  #
  class APOP < POP3
    # Always returns true.
    def apop?
      true
    end
  end

  # class aliases
  APOPSession = APOP

  #
  # This class represents a message which exists on the POP server.
  # Instances of this class are created by the POP3 class; they should
  # not be directly created by the user.
  #
  class POPMail

    def initialize(num, len, pop, cmd)   #:nodoc:
      @number = num
      @length = len
      @pop = pop
      @command = cmd
      @deleted = false
      @uid = nil
    end

    # The sequence number of the message on the server.
    attr_reader :number

    # The length of the message in octets.
    attr_reader :length
    alias size length

    # Provide human-readable stringification of class state.
    def inspect
      +"#<#{self.class} #{@number}#{@deleted ? ' deleted' : ''}>"
    end

    #
    # This method fetches the message.  If called with a block, the
    # message is yielded to the block one chunk at a time.  If called
    # without a block, the message is returned as a String.  The optional
    # +dest+ argument will be prepended to the returned String; this
    # argument is essentially obsolete.
    #
    # === Example without block
    #
    #     POP3.start('pop.example.com', 110,
    #                'YourAccount', 'YourPassword') do |pop|
    #       n = 1
    #       pop.mails.each do |popmail|
    #         File.open("inbox/#{n}", 'w') do |f|
    #           f.write popmail.pop
    #         end
    #         popmail.delete
    #         n += 1
    #       end
    #     end
    #
    # === Example with block
    #
    #     POP3.start('pop.example.com', 110,
    #                'YourAccount', 'YourPassword') do |pop|
    #       n = 1
    #       pop.mails.each do |popmail|
    #         File.open("inbox/#{n}", 'w') do |f|
    #           popmail.pop do |chunk|            ####
    #             f.write chunk
    #           end
    #         end
    #         n += 1
    #       end
    #     end
    #
    # This method raises a POPError if an error occurs.
    #
    def pop( dest = +'', &block ) # :yield: message_chunk
      if block_given?
        @command.retr(@number, &block)
        nil
      else
        @command.retr(@number) do |chunk|
          dest << chunk
        end
        dest
      end
    end

    alias all pop    #:nodoc: obsolete
    alias mail pop   #:nodoc: obsolete

    # Fetches the message header and +lines+ lines of body.
    #
    # The optional +dest+ argument is obsolete.
    #
    # This method raises a POPError if an error occurs.
    def top(lines, dest = +'')
      @command.top(@number, lines) do |chunk|
        dest << chunk
      end
      dest
    end

    # Fetches the message header.
    #
    # The optional +dest+ argument is obsolete.
    #
    # This method raises a POPError if an error occurs.
    def header(dest = +'')
      top(0, dest)
    end

    # Marks a message for deletion on the server.  Deletion does not
    # actually occur until the end of the session; deletion may be
    # cancelled for _all_ marked messages by calling POP3#reset().
    #
    # This method raises a POPError if an error occurs.
    #
    # === Example
    #
    #     POP3.start('pop.example.com', 110,
    #                'YourAccount', 'YourPassword') do |pop|
    #       n = 1
    #       pop.mails.each do |popmail|
    #         File.open("inbox/#{n}", 'w') do |f|
    #           f.write popmail.pop
    #         end
    #         popmail.delete         ####
    #         n += 1
    #       end
    #     end
    #
    def delete
      @command.dele @number
      @deleted = true
    end

    alias delete! delete    #:nodoc: obsolete

    # True if the mail has been deleted.
    def deleted?
      @deleted
    end

    # Returns the unique-id of the message.
    # Normally the unique-id is a hash string of the message.
    #
    # This method raises a POPError if an error occurs.
    def unique_id
      return @uid if @uid
      @pop.set_all_uids
      @uid
    end

    alias uidl unique_id

    def uid=(uid)   #:nodoc: internal use only
      @uid = uid
    end

  end   # class POPMail


  class POP3Command   #:nodoc: internal use only

    def initialize(sock)
      @socket = sock
      @error_occurred = false
      res = check_response(critical { recv_response() })
      @apop_stamp = res.slice(/<[!-~]+@[!-~]+>/)
    end

    attr_reader :socket

    def inspect
      +"#<#{self.class} socket=#{@socket}>"
    end

    def auth(account, password)
      check_response_auth(critical {
        check_response_auth(get_response('USER %s', account))
        get_response('PASS %s', password)
      })
    end

    def apop(account, password)
      raise POPAuthenticationError, 'not APOP server; cannot login' \
                                                      unless @apop_stamp
      check_response_auth(critical {
        get_response('APOP %s %s',
                     account,
                     Digest::MD5.hexdigest(@apop_stamp + password))
      })
    end

    def list
      critical {
        getok 'LIST'
        list = []
        @socket.each_list_item do |line|
          m = /\A(\d+)[ \t]+(\d+)/.match(line) or
                  raise POPBadResponse, "bad response: #{line}"
          list.push  [m[1].to_i, m[2].to_i]
        end
        return list
      }
    end

    def stat
      res = check_response(critical { get_response('STAT') })
      m = /\A\+OK\s+(\d+)\s+(\d+)/.match(res) or
              raise POPBadResponse, "wrong response format: #{res}"
      [m[1].to_i, m[2].to_i]
    end

    def rset
      check_response(critical { get_response('RSET') })
    end

    def top(num, lines = 0, &block)
      critical {
        getok('TOP %d %d', num, lines)
        @socket.each_message_chunk(&block)
      }
    end

    def retr(num, &block)
      critical {
        getok('RETR %d', num)
        @socket.each_message_chunk(&block)
      }
    end

    def dele(num)
      check_response(critical { get_response('DELE %d', num) })
    end

    def uidl(num = nil)
      if num
        res = check_response(critical { get_response('UIDL %d', num) })
        return res.split(/ /)[1]
      else
        critical {
          getok('UIDL')
          table = {}
          @socket.each_list_item do |line|
            num, uid = line.split
            table[num.to_i] = uid
          end
          return table
        }
      end
    end

    def quit
      check_response(critical { get_response('QUIT') })
    end

    private

    def getok(fmt, *fargs)
      @socket.writeline sprintf(fmt, *fargs)
      check_response(recv_response())
    end

    def get_response(fmt, *fargs)
      @socket.writeline sprintf(fmt, *fargs)
      recv_response()
    end

    def recv_response
      @socket.readline
    end

    def check_response(res)
      raise POPError, res unless /\A\+OK/i =~ res
      res
    end

    def check_response_auth(res)
      raise POPAuthenticationError, res unless /\A\+OK/i =~ res
      res
    end

    def critical
      return '+OK dummy ok response' if @error_occurred
      begin
        return yield()
      rescue Exception
        @error_occurred = true
        raise
      end
    end

  end   # class POP3Command

end   # module Net
PKFH[2i��w�wshare/ruby/net/smtp.rbnu�[���# frozen_string_literal: true
# = net/smtp.rb
#
# Copyright (c) 1999-2007 Yukihiro Matsumoto.
#
# Copyright (c) 1999-2007 Minero Aoki.
#
# Written & maintained by Minero Aoki <aamine@loveruby.net>.
#
# Documented by William Webber and Minero Aoki.
#
# This program is free software. You can re-distribute and/or
# modify this program under the same terms as Ruby itself.
#
# $Id$
#
# See Net::SMTP for documentation.
#

require 'net/protocol'
require 'digest/md5'
require 'timeout'
begin
  require 'openssl'
rescue LoadError
end

module Net

  # Module mixed in to all SMTP error classes
  module SMTPError
    # This *class* is a module for backward compatibility.
    # In later release, this module becomes a class.
  end

  # Represents an SMTP authentication error.
  class SMTPAuthenticationError < ProtoAuthError
    include SMTPError
  end

  # Represents SMTP error code 4xx, a temporary error.
  class SMTPServerBusy < ProtoServerError
    include SMTPError
  end

  # Represents an SMTP command syntax error (error code 500)
  class SMTPSyntaxError < ProtoSyntaxError
    include SMTPError
  end

  # Represents a fatal SMTP error (error code 5xx, except for 500)
  class SMTPFatalError < ProtoFatalError
    include SMTPError
  end

  # Unexpected reply code returned from server.
  class SMTPUnknownError < ProtoUnknownError
    include SMTPError
  end

  # Command is not supported on server.
  class SMTPUnsupportedCommand < ProtocolError
    include SMTPError
  end

  #
  # == What is This Library?
  #
  # This library provides functionality to send internet
  # mail via SMTP, the Simple Mail Transfer Protocol. For details of
  # SMTP itself, see [RFC2821] (http://www.ietf.org/rfc/rfc2821.txt).
  #
  # == What is This Library NOT?
  #
  # This library does NOT provide functions to compose internet mails.
  # You must create them by yourself. If you want better mail support,
  # try RubyMail or TMail or search for alternatives in
  # {RubyGems.org}[https://rubygems.org/] or {The Ruby
  # Toolbox}[https://www.ruby-toolbox.com/].
  #
  # FYI: the official documentation on internet mail is: [RFC2822] (http://www.ietf.org/rfc/rfc2822.txt).
  #
  # == Examples
  #
  # === Sending Messages
  #
  # You must open a connection to an SMTP server before sending messages.
  # The first argument is the address of your SMTP server, and the second
  # argument is the port number. Using SMTP.start with a block is the simplest
  # way to do this. This way, the SMTP connection is closed automatically
  # after the block is executed.
  #
  #     require 'net/smtp'
  #     Net::SMTP.start('your.smtp.server', 25) do |smtp|
  #       # Use the SMTP object smtp only in this block.
  #     end
  #
  # Replace 'your.smtp.server' with your SMTP server. Normally
  # your system manager or internet provider supplies a server
  # for you.
  #
  # Then you can send messages.
  #
  #     msgstr = <<END_OF_MESSAGE
  #     From: Your Name <your@mail.address>
  #     To: Destination Address <someone@example.com>
  #     Subject: test message
  #     Date: Sat, 23 Jun 2001 16:26:43 +0900
  #     Message-Id: <unique.message.id.string@example.com>
  #
  #     This is a test message.
  #     END_OF_MESSAGE
  #
  #     require 'net/smtp'
  #     Net::SMTP.start('your.smtp.server', 25) do |smtp|
  #       smtp.send_message msgstr,
  #                         'your@mail.address',
  #                         'his_address@example.com'
  #     end
  #
  # === Closing the Session
  #
  # You MUST close the SMTP session after sending messages, by calling
  # the #finish method:
  #
  #     # using SMTP#finish
  #     smtp = Net::SMTP.start('your.smtp.server', 25)
  #     smtp.send_message msgstr, 'from@address', 'to@address'
  #     smtp.finish
  #
  # You can also use the block form of SMTP.start/SMTP#start.  This closes
  # the SMTP session automatically:
  #
  #     # using block form of SMTP.start
  #     Net::SMTP.start('your.smtp.server', 25) do |smtp|
  #       smtp.send_message msgstr, 'from@address', 'to@address'
  #     end
  #
  # I strongly recommend this scheme.  This form is simpler and more robust.
  #
  # === HELO domain
  #
  # In almost all situations, you must provide a third argument
  # to SMTP.start/SMTP#start. This is the domain name which you are on
  # (the host to send mail from). It is called the "HELO domain".
  # The SMTP server will judge whether it should send or reject
  # the SMTP session by inspecting the HELO domain.
  #
  #     Net::SMTP.start('your.smtp.server', 25,
  #                     'mail.from.domain') { |smtp| ... }
  #
  # === SMTP Authentication
  #
  # The Net::SMTP class supports three authentication schemes;
  # PLAIN, LOGIN and CRAM MD5.  (SMTP Authentication: [RFC2554])
  # To use SMTP authentication, pass extra arguments to
  # SMTP.start/SMTP#start.
  #
  #     # PLAIN
  #     Net::SMTP.start('your.smtp.server', 25, 'mail.from.domain',
  #                     'Your Account', 'Your Password', :plain)
  #     # LOGIN
  #     Net::SMTP.start('your.smtp.server', 25, 'mail.from.domain',
  #                     'Your Account', 'Your Password', :login)
  #
  #     # CRAM MD5
  #     Net::SMTP.start('your.smtp.server', 25, 'mail.from.domain',
  #                     'Your Account', 'Your Password', :cram_md5)
  #
  class SMTP < Protocol

    Revision = %q$Revision$.split[1]

    # The default SMTP port number, 25.
    def SMTP.default_port
      25
    end

    # The default mail submission port number, 587.
    def SMTP.default_submission_port
      587
    end

    # The default SMTPS port number, 465.
    def SMTP.default_tls_port
      465
    end

    class << self
      alias default_ssl_port default_tls_port
    end

    def SMTP.default_ssl_context
      OpenSSL::SSL::SSLContext.new
    end

    #
    # Creates a new Net::SMTP object.
    #
    # +address+ is the hostname or ip address of your SMTP
    # server.  +port+ is the port to connect to; it defaults to
    # port 25.
    #
    # This method does not open the TCP connection.  You can use
    # SMTP.start instead of SMTP.new if you want to do everything
    # at once.  Otherwise, follow SMTP.new with SMTP#start.
    #
    def initialize(address, port = nil)
      @address = address
      @port = (port || SMTP.default_port)
      @esmtp = true
      @capabilities = nil
      @socket = nil
      @started = false
      @open_timeout = 30
      @read_timeout = 60
      @error_occurred = false
      @debug_output = nil
      @tls = false
      @starttls = false
      @ssl_context = nil
    end

    # Provide human-readable stringification of class state.
    def inspect
      "#<#{self.class} #{@address}:#{@port} started=#{@started}>"
    end

    #
    # Set whether to use ESMTP or not.  This should be done before
    # calling #start.  Note that if #start is called in ESMTP mode,
    # and the connection fails due to a ProtocolError, the SMTP
    # object will automatically switch to plain SMTP mode and
    # retry (but not vice versa).
    #
    attr_accessor :esmtp

    # +true+ if the SMTP object uses ESMTP (which it does by default).
    alias :esmtp? :esmtp

    # true if server advertises STARTTLS.
    # You cannot get valid value before opening SMTP session.
    def capable_starttls?
      capable?('STARTTLS')
    end

    def capable?(key)
      return nil unless @capabilities
      @capabilities[key] ? true : false
    end
    private :capable?

    # true if server advertises AUTH PLAIN.
    # You cannot get valid value before opening SMTP session.
    def capable_plain_auth?
      auth_capable?('PLAIN')
    end

    # true if server advertises AUTH LOGIN.
    # You cannot get valid value before opening SMTP session.
    def capable_login_auth?
      auth_capable?('LOGIN')
    end

    # true if server advertises AUTH CRAM-MD5.
    # You cannot get valid value before opening SMTP session.
    def capable_cram_md5_auth?
      auth_capable?('CRAM-MD5')
    end

    def auth_capable?(type)
      return nil unless @capabilities
      return false unless @capabilities['AUTH']
      @capabilities['AUTH'].include?(type)
    end
    private :auth_capable?

    # Returns supported authentication methods on this server.
    # You cannot get valid value before opening SMTP session.
    def capable_auth_types
      return [] unless @capabilities
      return [] unless @capabilities['AUTH']
      @capabilities['AUTH']
    end

    # true if this object uses SMTP/TLS (SMTPS).
    def tls?
      @tls
    end

    alias ssl? tls?

    # Enables SMTP/TLS (SMTPS: SMTP over direct TLS connection) for
    # this object.  Must be called before the connection is established
    # to have any effect.  +context+ is a OpenSSL::SSL::SSLContext object.
    def enable_tls(context = SMTP.default_ssl_context)
      raise 'openssl library not installed' unless defined?(OpenSSL)
      raise ArgumentError, "SMTPS and STARTTLS is exclusive" if @starttls
      @tls = true
      @ssl_context = context
    end

    alias enable_ssl enable_tls

    # Disables SMTP/TLS for this object.  Must be called before the
    # connection is established to have any effect.
    def disable_tls
      @tls = false
      @ssl_context = nil
    end

    alias disable_ssl disable_tls

    # Returns truth value if this object uses STARTTLS.
    # If this object always uses STARTTLS, returns :always.
    # If this object uses STARTTLS when the server support TLS, returns :auto.
    def starttls?
      @starttls
    end

    # true if this object uses STARTTLS.
    def starttls_always?
      @starttls == :always
    end

    # true if this object uses STARTTLS when server advertises STARTTLS.
    def starttls_auto?
      @starttls == :auto
    end

    # Enables SMTP/TLS (STARTTLS) for this object.
    # +context+ is a OpenSSL::SSL::SSLContext object.
    def enable_starttls(context = SMTP.default_ssl_context)
      raise 'openssl library not installed' unless defined?(OpenSSL)
      raise ArgumentError, "SMTPS and STARTTLS is exclusive" if @tls
      @starttls = :always
      @ssl_context = context
    end

    # Enables SMTP/TLS (STARTTLS) for this object if server accepts.
    # +context+ is a OpenSSL::SSL::SSLContext object.
    def enable_starttls_auto(context = SMTP.default_ssl_context)
      raise 'openssl library not installed' unless defined?(OpenSSL)
      raise ArgumentError, "SMTPS and STARTTLS is exclusive" if @tls
      @starttls = :auto
      @ssl_context = context
    end

    # Disables SMTP/TLS (STARTTLS) for this object.  Must be called
    # before the connection is established to have any effect.
    def disable_starttls
      @starttls = false
      @ssl_context = nil
    end

    # The address of the SMTP server to connect to.
    attr_reader :address

    # The port number of the SMTP server to connect to.
    attr_reader :port

    # Seconds to wait while attempting to open a connection.
    # If the connection cannot be opened within this time, a
    # Net::OpenTimeout is raised. The default value is 30 seconds.
    attr_accessor :open_timeout

    # Seconds to wait while reading one block (by one read(2) call).
    # If the read(2) call does not complete within this time, a
    # Net::ReadTimeout is raised. The default value is 60 seconds.
    attr_reader :read_timeout

    # Set the number of seconds to wait until timing-out a read(2)
    # call.
    def read_timeout=(sec)
      @socket.read_timeout = sec if @socket
      @read_timeout = sec
    end

    #
    # WARNING: This method causes serious security holes.
    # Use this method for only debugging.
    #
    # Set an output stream for debug logging.
    # You must call this before #start.
    #
    #   # example
    #   smtp = Net::SMTP.new(addr, port)
    #   smtp.set_debug_output $stderr
    #   smtp.start do |smtp|
    #     ....
    #   end
    #
    def debug_output=(arg)
      @debug_output = arg
    end

    alias set_debug_output debug_output=

    #
    # SMTP session control
    #

    #
    # Creates a new Net::SMTP object and connects to the server.
    #
    # This method is equivalent to:
    #
    #   Net::SMTP.new(address, port).start(helo_domain, account, password, authtype)
    #
    # === Example
    #
    #     Net::SMTP.start('your.smtp.server') do |smtp|
    #       smtp.send_message msgstr, 'from@example.com', ['dest@example.com']
    #     end
    #
    # === Block Usage
    #
    # If called with a block, the newly-opened Net::SMTP object is yielded
    # to the block, and automatically closed when the block finishes.  If called
    # without a block, the newly-opened Net::SMTP object is returned to
    # the caller, and it is the caller's responsibility to close it when
    # finished.
    #
    # === Parameters
    #
    # +address+ is the hostname or ip address of your smtp server.
    #
    # +port+ is the port to connect to; it defaults to port 25.
    #
    # +helo+ is the _HELO_ _domain_ provided by the client to the
    # server (see overview comments); it defaults to 'localhost'.
    #
    # The remaining arguments are used for SMTP authentication, if required
    # or desired.  +user+ is the account name; +secret+ is your password
    # or other authentication token; and +authtype+ is the authentication
    # type, one of :plain, :login, or :cram_md5.  See the discussion of
    # SMTP Authentication in the overview notes.
    #
    # === Errors
    #
    # This method may raise:
    #
    # * Net::SMTPAuthenticationError
    # * Net::SMTPServerBusy
    # * Net::SMTPSyntaxError
    # * Net::SMTPFatalError
    # * Net::SMTPUnknownError
    # * Net::OpenTimeout
    # * Net::ReadTimeout
    # * IOError
    #
    def SMTP.start(address, port = nil, helo = 'localhost',
                   user = nil, secret = nil, authtype = nil,
                   &block)   # :yield: smtp
      new(address, port).start(helo, user, secret, authtype, &block)
    end

    # +true+ if the SMTP session has been started.
    def started?
      @started
    end

    #
    # Opens a TCP connection and starts the SMTP session.
    #
    # === Parameters
    #
    # +helo+ is the _HELO_ _domain_ that you'll dispatch mails from; see
    # the discussion in the overview notes.
    #
    # If both of +user+ and +secret+ are given, SMTP authentication
    # will be attempted using the AUTH command.  +authtype+ specifies
    # the type of authentication to attempt; it must be one of
    # :login, :plain, and :cram_md5.  See the notes on SMTP Authentication
    # in the overview.
    #
    # === Block Usage
    #
    # When this methods is called with a block, the newly-started SMTP
    # object is yielded to the block, and automatically closed after
    # the block call finishes.  Otherwise, it is the caller's
    # responsibility to close the session when finished.
    #
    # === Example
    #
    # This is very similar to the class method SMTP.start.
    #
    #     require 'net/smtp'
    #     smtp = Net::SMTP.new('smtp.mail.server', 25)
    #     smtp.start(helo_domain, account, password, authtype) do |smtp|
    #       smtp.send_message msgstr, 'from@example.com', ['dest@example.com']
    #     end
    #
    # The primary use of this method (as opposed to SMTP.start)
    # is probably to set debugging (#set_debug_output) or ESMTP
    # (#esmtp=), which must be done before the session is
    # started.
    #
    # === Errors
    #
    # If session has already been started, an IOError will be raised.
    #
    # This method may raise:
    #
    # * Net::SMTPAuthenticationError
    # * Net::SMTPServerBusy
    # * Net::SMTPSyntaxError
    # * Net::SMTPFatalError
    # * Net::SMTPUnknownError
    # * Net::OpenTimeout
    # * Net::ReadTimeout
    # * IOError
    #
    def start(helo = 'localhost',
              user = nil, secret = nil, authtype = nil)   # :yield: smtp
      if block_given?
        begin
          do_start helo, user, secret, authtype
          return yield(self)
        ensure
          do_finish
        end
      else
        do_start helo, user, secret, authtype
        return self
      end
    end

    # Finishes the SMTP session and closes TCP connection.
    # Raises IOError if not started.
    def finish
      raise IOError, 'not yet started' unless started?
      do_finish
    end

    private

    def tcp_socket(address, port)
      TCPSocket.open address, port
    end

    def do_start(helo_domain, user, secret, authtype)
      raise IOError, 'SMTP session already started' if @started
      if user or secret
        check_auth_method(authtype || DEFAULT_AUTH_TYPE)
        check_auth_args user, secret
      end
      s = Timeout.timeout(@open_timeout, Net::OpenTimeout) do
        tcp_socket(@address, @port)
      end
      logging "Connection opened: #{@address}:#{@port}"
      @socket = new_internet_message_io(tls? ? tlsconnect(s) : s)
      check_response critical { recv_response() }
      do_helo helo_domain
      if starttls_always? or (capable_starttls? and starttls_auto?)
        unless capable_starttls?
          raise SMTPUnsupportedCommand,
              "STARTTLS is not supported on this server"
        end
        starttls
        @socket = new_internet_message_io(tlsconnect(s))
        # helo response may be different after STARTTLS
        do_helo helo_domain
      end
      authenticate user, secret, (authtype || DEFAULT_AUTH_TYPE) if user
      @started = true
    ensure
      unless @started
        # authentication failed, cancel connection.
        s.close if s
        @socket = nil
      end
    end

    def ssl_socket(socket, context)
      OpenSSL::SSL::SSLSocket.new socket, context
    end

    def tlsconnect(s)
      verified = false
      s = ssl_socket(s, @ssl_context)
      logging "TLS connection started"
      s.sync_close = true
      ssl_socket_connect(s, @open_timeout)
      if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
        s.post_connection_check(@address)
      end
      verified = true
      s
    ensure
      s.close unless verified
    end

    def new_internet_message_io(s)
      InternetMessageIO.new(s, read_timeout: @read_timeout,
                            debug_output: @debug_output)
    end

    def do_helo(helo_domain)
      res = @esmtp ? ehlo(helo_domain) : helo(helo_domain)
      @capabilities = res.capabilities
    rescue SMTPError
      if @esmtp
        @esmtp = false
        @error_occurred = false
        retry
      end
      raise
    end

    def do_finish
      quit if @socket and not @socket.closed? and not @error_occurred
    ensure
      @started = false
      @error_occurred = false
      @socket.close if @socket
      @socket = nil
    end

    #
    # Message Sending
    #

    public

    #
    # Sends +msgstr+ as a message.  Single CR ("\r") and LF ("\n") found
    # in the +msgstr+, are converted into the CR LF pair.  You cannot send a
    # binary message with this method. +msgstr+ should include both
    # the message headers and body.
    #
    # +from_addr+ is a String representing the source mail address.
    #
    # +to_addr+ is a String or Strings or Array of Strings, representing
    # the destination mail address or addresses.
    #
    # === Example
    #
    #     Net::SMTP.start('smtp.example.com') do |smtp|
    #       smtp.send_message msgstr,
    #                         'from@example.com',
    #                         ['dest@example.com', 'dest2@example.com']
    #     end
    #
    # === Errors
    #
    # This method may raise:
    #
    # * Net::SMTPServerBusy
    # * Net::SMTPSyntaxError
    # * Net::SMTPFatalError
    # * Net::SMTPUnknownError
    # * Net::ReadTimeout
    # * IOError
    #
    def send_message(msgstr, from_addr, *to_addrs)
      raise IOError, 'closed session' unless @socket
      mailfrom from_addr
      rcptto_list(to_addrs) {data msgstr}
    end

    alias send_mail send_message
    alias sendmail send_message   # obsolete

    #
    # Opens a message writer stream and gives it to the block.
    # The stream is valid only in the block, and has these methods:
    #
    # puts(str = '')::       outputs STR and CR LF.
    # print(str)::           outputs STR.
    # printf(fmt, *args)::   outputs sprintf(fmt,*args).
    # write(str)::           outputs STR and returns the length of written bytes.
    # <<(str)::              outputs STR and returns self.
    #
    # If a single CR ("\r") or LF ("\n") is found in the message,
    # it is converted to the CR LF pair.  You cannot send a binary
    # message with this method.
    #
    # === Parameters
    #
    # +from_addr+ is a String representing the source mail address.
    #
    # +to_addr+ is a String or Strings or Array of Strings, representing
    # the destination mail address or addresses.
    #
    # === Example
    #
    #     Net::SMTP.start('smtp.example.com', 25) do |smtp|
    #       smtp.open_message_stream('from@example.com', ['dest@example.com']) do |f|
    #         f.puts 'From: from@example.com'
    #         f.puts 'To: dest@example.com'
    #         f.puts 'Subject: test message'
    #         f.puts
    #         f.puts 'This is a test message.'
    #       end
    #     end
    #
    # === Errors
    #
    # This method may raise:
    #
    # * Net::SMTPServerBusy
    # * Net::SMTPSyntaxError
    # * Net::SMTPFatalError
    # * Net::SMTPUnknownError
    # * Net::ReadTimeout
    # * IOError
    #
    def open_message_stream(from_addr, *to_addrs, &block)   # :yield: stream
      raise IOError, 'closed session' unless @socket
      mailfrom from_addr
      rcptto_list(to_addrs) {data(&block)}
    end

    alias ready open_message_stream   # obsolete

    #
    # Authentication
    #

    public

    DEFAULT_AUTH_TYPE = :plain

    def authenticate(user, secret, authtype = DEFAULT_AUTH_TYPE)
      check_auth_method authtype
      check_auth_args user, secret
      send auth_method(authtype), user, secret
    end

    def auth_plain(user, secret)
      check_auth_args user, secret
      res = critical {
        get_response('AUTH PLAIN ' + base64_encode("\0#{user}\0#{secret}"))
      }
      check_auth_response res
      res
    end

    def auth_login(user, secret)
      check_auth_args user, secret
      res = critical {
        check_auth_continue get_response('AUTH LOGIN')
        check_auth_continue get_response(base64_encode(user))
        get_response(base64_encode(secret))
      }
      check_auth_response res
      res
    end

    def auth_cram_md5(user, secret)
      check_auth_args user, secret
      res = critical {
        res0 = get_response('AUTH CRAM-MD5')
        check_auth_continue res0
        crammed = cram_md5_response(secret, res0.cram_md5_challenge)
        get_response(base64_encode("#{user} #{crammed}"))
      }
      check_auth_response res
      res
    end

    private

    def check_auth_method(type)
      unless respond_to?(auth_method(type), true)
        raise ArgumentError, "wrong authentication type #{type}"
      end
    end

    def auth_method(type)
      "auth_#{type.to_s.downcase}".intern
    end

    def check_auth_args(user, secret, authtype = DEFAULT_AUTH_TYPE)
      unless user
        raise ArgumentError, 'SMTP-AUTH requested but missing user name'
      end
      unless secret
        raise ArgumentError, 'SMTP-AUTH requested but missing secret phrase'
      end
    end

    def base64_encode(str)
      # expects "str" may not become too long
      [str].pack('m0')
    end

    IMASK = 0x36
    OMASK = 0x5c

    # CRAM-MD5: [RFC2195]
    def cram_md5_response(secret, challenge)
      tmp = Digest::MD5.digest(cram_secret(secret, IMASK) + challenge)
      Digest::MD5.hexdigest(cram_secret(secret, OMASK) + tmp)
    end

    CRAM_BUFSIZE = 64

    def cram_secret(secret, mask)
      secret = Digest::MD5.digest(secret) if secret.size > CRAM_BUFSIZE
      buf = secret.ljust(CRAM_BUFSIZE, "\0")
      0.upto(buf.size - 1) do |i|
        buf[i] = (buf[i].ord ^ mask).chr
      end
      buf
    end

    #
    # SMTP command dispatcher
    #

    public

    # Aborts the current mail transaction

    def rset
      getok('RSET')
    end

    def starttls
      getok('STARTTLS')
    end

    def helo(domain)
      getok("HELO #{domain}")
    end

    def ehlo(domain)
      getok("EHLO #{domain}")
    end

    def mailfrom(from_addr)
      getok("MAIL FROM:<#{from_addr}>")
    end

    def rcptto_list(to_addrs)
      raise ArgumentError, 'mail destination not given' if to_addrs.empty?
      ok_users = []
      unknown_users = []
      to_addrs.flatten.each do |addr|
        begin
          rcptto addr
        rescue SMTPAuthenticationError
          unknown_users << addr.dump
        else
          ok_users << addr
        end
      end
      raise ArgumentError, 'mail destination not given' if ok_users.empty?
      ret = yield
      unless unknown_users.empty?
        raise SMTPAuthenticationError, "failed to deliver for #{unknown_users.join(', ')}"
      end
      ret
    end

    def rcptto(to_addr)
      getok("RCPT TO:<#{to_addr}>")
    end

    # This method sends a message.
    # If +msgstr+ is given, sends it as a message.
    # If block is given, yield a message writer stream.
    # You must write message before the block is closed.
    #
    #   # Example 1 (by string)
    #   smtp.data(<<EndMessage)
    #   From: john@example.com
    #   To: betty@example.com
    #   Subject: I found a bug
    #
    #   Check vm.c:58879.
    #   EndMessage
    #
    #   # Example 2 (by block)
    #   smtp.data {|f|
    #     f.puts "From: john@example.com"
    #     f.puts "To: betty@example.com"
    #     f.puts "Subject: I found a bug"
    #     f.puts ""
    #     f.puts "Check vm.c:58879."
    #   }
    #
    def data(msgstr = nil, &block)   #:yield: stream
      if msgstr and block
        raise ArgumentError, "message and block are exclusive"
      end
      unless msgstr or block
        raise ArgumentError, "message or block is required"
      end
      res = critical {
        check_continue get_response('DATA')
        socket_sync_bak = @socket.io.sync
        begin
          @socket.io.sync = false
          if msgstr
            @socket.write_message msgstr
          else
            @socket.write_message_by_block(&block)
          end
        ensure
          @socket.io.flush
          @socket.io.sync = socket_sync_bak
        end
        recv_response()
      }
      check_response res
      res
    end

    def quit
      getok('QUIT')
    end

    private

    def validate_line(line)
      # A bare CR or LF is not allowed in RFC5321.
      if /[\r\n]/ =~ line
        raise ArgumentError, "A line must not contain CR or LF"
      end
    end

    def getok(reqline)
      validate_line reqline
      res = critical {
        @socket.writeline reqline
        recv_response()
      }
      check_response res
      res
    end

    def get_response(reqline)
      validate_line reqline
      @socket.writeline reqline
      recv_response()
    end

    def recv_response
      buf = ''.dup
      while true
        line = @socket.readline
        buf << line << "\n"
        break unless line[3,1] == '-'   # "210-PIPELINING"
      end
      Response.parse(buf)
    end

    def critical
      return Response.parse('200 dummy reply code') if @error_occurred
      begin
        return yield()
      rescue Exception
        @error_occurred = true
        raise
      end
    end

    def check_response(res)
      unless res.success?
        raise res.exception_class, res.message
      end
    end

    def check_continue(res)
      unless res.continue?
        raise SMTPUnknownError, "could not get 3xx (#{res.status}: #{res.string})"
      end
    end

    def check_auth_response(res)
      unless res.success?
        raise SMTPAuthenticationError, res.message
      end
    end

    def check_auth_continue(res)
      unless res.continue?
        raise res.exception_class, res.message
      end
    end

    # This class represents a response received by the SMTP server. Instances
    # of this class are created by the SMTP class; they should not be directly
    # created by the user. For more information on SMTP responses, view
    # {Section 4.2 of RFC 5321}[http://tools.ietf.org/html/rfc5321#section-4.2]
    class Response
      # Parses the received response and separates the reply code and the human
      # readable reply text
      def self.parse(str)
        new(str[0,3], str)
      end

      # Creates a new instance of the Response class and sets the status and
      # string attributes
      def initialize(status, string)
        @status = status
        @string = string
      end

      # The three digit reply code of the SMTP response
      attr_reader :status

      # The human readable reply text of the SMTP response
      attr_reader :string

      # Takes the first digit of the reply code to determine the status type
      def status_type_char
        @status[0, 1]
      end

      # Determines whether the response received was a Positive Completion
      # reply (2xx reply code)
      def success?
        status_type_char() == '2'
      end

      # Determines whether the response received was a Positive Intermediate
      # reply (3xx reply code)
      def continue?
        status_type_char() == '3'
      end

      # The first line of the human readable reply text
      def message
        @string.lines.first
      end

      # Creates a CRAM-MD5 challenge. You can view more information on CRAM-MD5
      # on Wikipedia: https://en.wikipedia.org/wiki/CRAM-MD5
      def cram_md5_challenge
        @string.split(/ /)[1].unpack1('m')
      end

      # Returns a hash of the human readable reply text in the response if it
      # is multiple lines. It does not return the first line. The key of the
      # hash is the first word the value of the hash is an array with each word
      # thereafter being a value in the array
      def capabilities
        return {} unless @string[3, 1] == '-'
        h = {}
        @string.lines.drop(1).each do |line|
          k, *v = line[4..-1].chomp.split
          h[k] = v
        end
        h
      end

      # Determines whether there was an error and raises the appropriate error
      # based on the reply code of the response
      def exception_class
        case @status
        when /\A4/  then SMTPServerBusy
        when /\A50/ then SMTPSyntaxError
        when /\A53/ then SMTPAuthenticationError
        when /\A5/  then SMTPFatalError
        else             SMTPUnknownError
        end
      end
    end

    def logging(msg)
      @debug_output << msg + "\n" if @debug_output
    end

  end   # class SMTP

  SMTPSession = SMTP # :nodoc:

end
PKFH[�dܱshare/ruby/net/https.rbnu�[���# frozen_string_literal: false
=begin

= net/https -- SSL/TLS enhancement for Net::HTTP.

  This file has been merged with net/http.  There is no longer any need to
  require 'net/https' to use HTTPS.

  See Net::HTTP for details on how to make HTTPS connections.

== Info
  'OpenSSL for Ruby 2' project
  Copyright (C) 2001 GOTOU Yuuzou <gotoyuzo@notwork.org>
  All rights reserved.

== Licence
  This program is licensed under the same licence as Ruby.
  (See the file 'LICENCE'.)

=end

require_relative 'http'
require 'openssl'
PKFH[t�B�K�K�share/ruby/net/ftp.rbnu�[���# frozen_string_literal: true
#
# = net/ftp.rb - FTP Client Library
#
# Written by Shugo Maeda <shugo@ruby-lang.org>.
#
# Documentation by Gavin Sinclair, sourced from "Programming Ruby" (Hunt/Thomas)
# and "Ruby In a Nutshell" (Matsumoto), used with permission.
#
# This library is distributed under the terms of the Ruby license.
# You can freely distribute/modify this library.
#
# It is included in the Ruby standard library.
#
# See the Net::FTP class for an overview.
#

require "socket"
require "monitor"
require_relative "protocol"
require "time"
begin
  require "openssl"
rescue LoadError
end

module Net

  # :stopdoc:
  class FTPError < StandardError; end
  class FTPReplyError < FTPError; end
  class FTPTempError < FTPError; end
  class FTPPermError < FTPError; end
  class FTPProtoError < FTPError; end
  class FTPConnectionError < FTPError; end
  # :startdoc:

  #
  # This class implements the File Transfer Protocol.  If you have used a
  # command-line FTP program, and are familiar with the commands, you will be
  # able to use this class easily.  Some extra features are included to take
  # advantage of Ruby's style and strengths.
  #
  # == Example
  #
  #   require 'net/ftp'
  #
  # === Example 1
  #
  #   ftp = Net::FTP.new('example.com')
  #   ftp.login
  #   files = ftp.chdir('pub/lang/ruby/contrib')
  #   files = ftp.list('n*')
  #   ftp.getbinaryfile('nif.rb-0.91.gz', 'nif.gz', 1024)
  #   ftp.close
  #
  # === Example 2
  #
  #   Net::FTP.open('example.com') do |ftp|
  #     ftp.login
  #     files = ftp.chdir('pub/lang/ruby/contrib')
  #     files = ftp.list('n*')
  #     ftp.getbinaryfile('nif.rb-0.91.gz', 'nif.gz', 1024)
  #   end
  #
  # == Major Methods
  #
  # The following are the methods most likely to be useful to users:
  # - FTP.open
  # - #getbinaryfile
  # - #gettextfile
  # - #putbinaryfile
  # - #puttextfile
  # - #chdir
  # - #nlst
  # - #size
  # - #rename
  # - #delete
  #
  class FTP < Protocol
    include MonitorMixin
    if defined?(OpenSSL::SSL)
      include OpenSSL
      include SSL
    end

    # :stopdoc:
    FTP_PORT = 21
    CRLF = "\r\n"
    DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE
    @@default_passive = true
    # :startdoc:

    # When +true+, transfers are performed in binary mode.  Default: +true+.
    attr_reader :binary

    # When +true+, the connection is in passive mode.  Default: +true+.
    attr_accessor :passive

    # When +true+, use the IP address in PASV responses.  Otherwise, it uses
    # the same IP address for the control connection.  Default: +false+.
    attr_accessor :use_pasv_ip

    # When +true+, all traffic to and from the server is written
    # to +$stdout+.  Default: +false+.
    attr_accessor :debug_mode

    # Sets or retrieves the +resume+ status, which decides whether incomplete
    # transfers are resumed or restarted.  Default: +false+.
    attr_accessor :resume

    # Number of seconds to wait for the connection to open. Any number
    # may be used, including Floats for fractional seconds. If the FTP
    # object cannot open a connection in this many seconds, it raises a
    # Net::OpenTimeout exception. The default value is +nil+.
    attr_accessor :open_timeout

    # Number of seconds to wait for the TLS handshake. Any number
    # may be used, including Floats for fractional seconds. If the FTP
    # object cannot complete the TLS handshake in this many seconds, it
    # raises a Net::OpenTimeout exception. The default value is +nil+.
    # If +ssl_handshake_timeout+ is +nil+, +open_timeout+ is used instead.
    attr_accessor :ssl_handshake_timeout

    # Number of seconds to wait for one block to be read (via one read(2)
    # call). Any number may be used, including Floats for fractional
    # seconds. If the FTP object cannot read data in this many seconds,
    # it raises a Timeout::Error exception. The default value is 60 seconds.
    attr_reader :read_timeout

    # Setter for the read_timeout attribute.
    def read_timeout=(sec)
      @sock.read_timeout = sec
      @read_timeout = sec
    end

    # The server's welcome message.
    attr_reader :welcome

    # The server's last response code.
    attr_reader :last_response_code
    alias lastresp last_response_code

    # The server's last response.
    attr_reader :last_response

    # When +true+, connections are in passive mode per default.
    # Default: +true+.
    def self.default_passive=(value)
      @@default_passive = value
    end

    # When +true+, connections are in passive mode per default.
    # Default: +true+.
    def self.default_passive
      @@default_passive
    end

    #
    # A synonym for <tt>FTP.new</tt>, but with a mandatory host parameter.
    #
    # If a block is given, it is passed the +FTP+ object, which will be closed
    # when the block finishes, or when an exception is raised.
    #
    def FTP.open(host, *args)
      if block_given?
        ftp = new(host, *args)
        begin
          yield ftp
        ensure
          ftp.close
        end
      else
        new(host, *args)
      end
    end

    # :call-seq:
    #    Net::FTP.new(host = nil, options = {})
    #
    # Creates and returns a new +FTP+ object. If a +host+ is given, a connection
    # is made.
    #
    # +options+ is an option hash, each key of which is a symbol.
    #
    # The available options are:
    #
    # port::      Port number (default value is 21)
    # ssl::       If options[:ssl] is true, then an attempt will be made
    #             to use SSL (now TLS) to connect to the server.  For this
    #             to work OpenSSL [OSSL] and the Ruby OpenSSL [RSSL]
    #             extensions need to be installed.  If options[:ssl] is a
    #             hash, it's passed to OpenSSL::SSL::SSLContext#set_params
    #             as parameters.
    # private_data_connection::  If true, TLS is used for data connections.
    #                            Default: +true+ when options[:ssl] is true.
    # username::  Username for login.  If options[:username] is the string
    #             "anonymous" and the options[:password] is +nil+,
    #             "anonymous@" is used as a password.
    # password::  Password for login.
    # account::   Account information for ACCT.
    # passive::   When +true+, the connection is in passive mode. Default:
    #             +true+.
    # open_timeout::  Number of seconds to wait for the connection to open.
    #                 See Net::FTP#open_timeout for details.  Default: +nil+.
    # read_timeout::  Number of seconds to wait for one block to be read.
    #                 See Net::FTP#read_timeout for details.  Default: +60+.
    # ssl_handshake_timeout::  Number of seconds to wait for the TLS
    #                          handshake.
    #                          See Net::FTP#ssl_handshake_timeout for
    #                          details.  Default: +nil+.
    # use_pasv_ip::  When +true+, use the IP address in PASV responses.
    #                Otherwise, it uses the same IP address for the control
    #                connection.  Default: +false+.
    # debug_mode::  When +true+, all traffic to and from the server is
    #               written to +$stdout+.  Default: +false+.
    #
    def initialize(host = nil, user_or_options = {}, passwd = nil, acct = nil)
      super()
      begin
        options = user_or_options.to_hash
      rescue NoMethodError
        # for backward compatibility
        options = {}
        options[:username] = user_or_options
        options[:password] = passwd
        options[:account] = acct
      end
      @host = nil
      if options[:ssl]
        unless defined?(OpenSSL::SSL)
          raise "SSL extension not installed"
        end
        ssl_params = options[:ssl] == true ? {} : options[:ssl]
        @ssl_context = SSLContext.new
        @ssl_context.set_params(ssl_params)
        if defined?(VerifyCallbackProc)
          @ssl_context.verify_callback = VerifyCallbackProc
        end
        @ssl_context.session_cache_mode =
          OpenSSL::SSL::SSLContext::SESSION_CACHE_CLIENT |
          OpenSSL::SSL::SSLContext::SESSION_CACHE_NO_INTERNAL_STORE
        @ssl_context.session_new_cb = proc {|sock, sess| @ssl_session = sess }
        @ssl_session = nil
        if options[:private_data_connection].nil?
          @private_data_connection = true
        else
          @private_data_connection = options[:private_data_connection]
        end
      else
        @ssl_context = nil
        if options[:private_data_connection]
          raise ArgumentError,
            "private_data_connection can be set to true only when ssl is enabled"
        end
        @private_data_connection = false
      end
      @binary = true
      if options[:passive].nil?
        @passive = @@default_passive
      else
        @passive = options[:passive]
      end
      if options[:debug_mode].nil?
        @debug_mode = false
      else
        @debug_mode = options[:debug_mode]
      end
      @resume = false
      @bare_sock = @sock = NullSocket.new
      @logged_in = false
      @open_timeout = options[:open_timeout]
      @ssl_handshake_timeout = options[:ssl_handshake_timeout]
      @read_timeout = options[:read_timeout] || 60
      @use_pasv_ip = options[:use_pasv_ip] || false
      if host
        connect(host, options[:port] || FTP_PORT)
        if options[:username]
          login(options[:username], options[:password], options[:account])
        end
      end
    end

    # A setter to toggle transfers in binary mode.
    # +newmode+ is either +true+ or +false+
    def binary=(newmode)
      if newmode != @binary
        @binary = newmode
        send_type_command if @logged_in
      end
    end

    # Sends a command to destination host, with the current binary sendmode
    # type.
    #
    # If binary mode is +true+, then "TYPE I" (image) is sent, otherwise "TYPE
    # A" (ascii) is sent.
    def send_type_command # :nodoc:
      if @binary
        voidcmd("TYPE I")
      else
        voidcmd("TYPE A")
      end
    end
    private :send_type_command

    # Toggles transfers in binary mode and yields to a block.
    # This preserves your current binary send mode, but allows a temporary
    # transaction with binary sendmode of +newmode+.
    #
    # +newmode+ is either +true+ or +false+
    def with_binary(newmode) # :nodoc:
      oldmode = binary
      self.binary = newmode
      begin
        yield
      ensure
        self.binary = oldmode
      end
    end
    private :with_binary

    # Obsolete
    def return_code # :nodoc:
      warn("Net::FTP#return_code is obsolete and do nothing", uplevel: 1)
      return "\n"
    end

    # Obsolete
    def return_code=(s) # :nodoc:
      warn("Net::FTP#return_code= is obsolete and do nothing", uplevel: 1)
    end

    # Constructs a socket with +host+ and +port+.
    #
    # If SOCKSSocket is defined and the environment (ENV) defines
    # SOCKS_SERVER, then a SOCKSSocket is returned, else a Socket is
    # returned.
    def open_socket(host, port) # :nodoc:
      return Timeout.timeout(@open_timeout, OpenTimeout) {
        if defined? SOCKSSocket and ENV["SOCKS_SERVER"]
          @passive = true
          SOCKSSocket.open(host, port)
        else
          Socket.tcp(host, port)
        end
      }
    end
    private :open_socket

    def start_tls_session(sock)
      ssl_sock = SSLSocket.new(sock, @ssl_context)
      ssl_sock.sync_close = true
      ssl_sock.hostname = @host if ssl_sock.respond_to? :hostname=
      if @ssl_session &&
          Process.clock_gettime(Process::CLOCK_REALTIME) < @ssl_session.time.to_f + @ssl_session.timeout
        # ProFTPD returns 425 for data connections if session is not reused.
        ssl_sock.session = @ssl_session
      end
      ssl_socket_connect(ssl_sock, @ssl_handshake_timeout || @open_timeout)
      if @ssl_context.verify_mode != VERIFY_NONE
        ssl_sock.post_connection_check(@host)
      end
      return ssl_sock
    end
    private :start_tls_session

    #
    # Establishes an FTP connection to host, optionally overriding the default
    # port. If the environment variable +SOCKS_SERVER+ is set, sets up the
    # connection through a SOCKS proxy. Raises an exception (typically
    # <tt>Errno::ECONNREFUSED</tt>) if the connection cannot be established.
    #
    def connect(host, port = FTP_PORT)
      if @debug_mode
        print "connect: ", host, ", ", port, "\n"
      end
      synchronize do
        @host = host
        @bare_sock = open_socket(host, port)
        @sock = BufferedSocket.new(@bare_sock, read_timeout: @read_timeout)
        voidresp
        if @ssl_context
          begin
            voidcmd("AUTH TLS")
            ssl_sock = start_tls_session(@bare_sock)
            @sock = BufferedSSLSocket.new(ssl_sock, read_timeout: @read_timeout)
            if @private_data_connection
              voidcmd("PBSZ 0")
              voidcmd("PROT P")
            end
          rescue OpenSSL::SSL::SSLError, OpenTimeout
            @sock.close
            raise
          end
        end
      end
    end

    #
    # Set the socket used to connect to the FTP server.
    #
    # May raise FTPReplyError if +get_greeting+ is false.
    def set_socket(sock, get_greeting = true)
      synchronize do
        @sock = sock
        if get_greeting
          voidresp
        end
      end
    end

    # If string +s+ includes the PASS command (password), then the contents of
    # the password are cleaned from the string using "*"
    def sanitize(s) # :nodoc:
      if s =~ /^PASS /i
        return s[0, 5] + "*" * (s.length - 5)
      else
        return s
      end
    end
    private :sanitize

    # Ensures that +line+ has a control return / line feed (CRLF) and writes
    # it to the socket.
    def putline(line) # :nodoc:
      if @debug_mode
        print "put: ", sanitize(line), "\n"
      end
      if /[\r\n]/ =~ line
        raise ArgumentError, "A line must not contain CR or LF"
      end
      line = line + CRLF
      @sock.write(line)
    end
    private :putline

    # Reads a line from the sock.  If EOF, then it will raise EOFError
    def getline # :nodoc:
      line = @sock.readline # if get EOF, raise EOFError
      line.sub!(/(\r\n|\n|\r)\z/n, "")
      if @debug_mode
        print "get: ", sanitize(line), "\n"
      end
      return line
    end
    private :getline

    # Receive a section of lines until the response code's match.
    def getmultiline # :nodoc:
      lines = []
      lines << getline
      code = lines.last.slice(/\A([0-9a-zA-Z]{3})-/, 1)
      if code
        delimiter = code + " "
        begin
          lines << getline
        end until lines.last.start_with?(delimiter)
      end
      return lines.join("\n") + "\n"
    end
    private :getmultiline

    # Receives a response from the destination host.
    #
    # Returns the response code or raises FTPTempError, FTPPermError, or
    # FTPProtoError
    def getresp # :nodoc:
      @last_response = getmultiline
      @last_response_code = @last_response[0, 3]
      case @last_response_code
      when /\A[123]/
        return @last_response
      when /\A4/
        raise FTPTempError, @last_response
      when /\A5/
        raise FTPPermError, @last_response
      else
        raise FTPProtoError, @last_response
      end
    end
    private :getresp

    # Receives a response.
    #
    # Raises FTPReplyError if the first position of the response code is not
    # equal 2.
    def voidresp # :nodoc:
      resp = getresp
      if !resp.start_with?("2")
        raise FTPReplyError, resp
      end
    end
    private :voidresp

    #
    # Sends a command and returns the response.
    #
    def sendcmd(cmd)
      synchronize do
        putline(cmd)
        return getresp
      end
    end

    #
    # Sends a command and expect a response beginning with '2'.
    #
    def voidcmd(cmd)
      synchronize do
        putline(cmd)
        voidresp
      end
    end

    # Constructs and send the appropriate PORT (or EPRT) command
    def sendport(host, port) # :nodoc:
      remote_address = @bare_sock.remote_address
      if remote_address.ipv4?
        cmd = "PORT " + (host.split(".") + port.divmod(256)).join(",")
      elsif remote_address.ipv6?
        cmd = sprintf("EPRT |2|%s|%d|", host, port)
      else
        raise FTPProtoError, host
      end
      voidcmd(cmd)
    end
    private :sendport

    # Constructs a TCPServer socket
    def makeport # :nodoc:
      Addrinfo.tcp(@bare_sock.local_address.ip_address, 0).listen
    end
    private :makeport

    # sends the appropriate command to enable a passive connection
    def makepasv # :nodoc:
      if @bare_sock.remote_address.ipv4?
        host, port = parse227(sendcmd("PASV"))
      else
        host, port = parse229(sendcmd("EPSV"))
        #     host, port = parse228(sendcmd("LPSV"))
      end
      return host, port
    end
    private :makepasv

    # Constructs a connection for transferring data
    def transfercmd(cmd, rest_offset = nil) # :nodoc:
      if @passive
        host, port = makepasv
        conn = open_socket(host, port)
        if @resume and rest_offset
          resp = sendcmd("REST " + rest_offset.to_s)
          if !resp.start_with?("3")
            raise FTPReplyError, resp
          end
        end
        resp = sendcmd(cmd)
        # skip 2XX for some ftp servers
        resp = getresp if resp.start_with?("2")
        if !resp.start_with?("1")
          raise FTPReplyError, resp
        end
      else
        sock = makeport
        begin
          addr = sock.local_address
          sendport(addr.ip_address, addr.ip_port)
          if @resume and rest_offset
            resp = sendcmd("REST " + rest_offset.to_s)
            if !resp.start_with?("3")
              raise FTPReplyError, resp
            end
          end
          resp = sendcmd(cmd)
          # skip 2XX for some ftp servers
          resp = getresp if resp.start_with?("2")
          if !resp.start_with?("1")
            raise FTPReplyError, resp
          end
          conn, = sock.accept
          sock.shutdown(Socket::SHUT_WR) rescue nil
          sock.read rescue nil
        ensure
          sock.close
        end
      end
      if @private_data_connection
        return BufferedSSLSocket.new(start_tls_session(conn),
                                     read_timeout: @read_timeout)
      else
        return BufferedSocket.new(conn, read_timeout: @read_timeout)
      end
    end
    private :transfercmd

    #
    # Logs in to the remote host.  The session must have been
    # previously connected.  If +user+ is the string "anonymous" and
    # the +password+ is +nil+, "anonymous@" is used as a password.  If
    # the +acct+ parameter is not +nil+, an FTP ACCT command is sent
    # following the successful login.  Raises an exception on error
    # (typically <tt>Net::FTPPermError</tt>).
    #
    def login(user = "anonymous", passwd = nil, acct = nil)
      if user == "anonymous" and passwd == nil
        passwd = "anonymous@"
      end

      resp = ""
      synchronize do
        resp = sendcmd('USER ' + user)
        if resp.start_with?("3")
          raise FTPReplyError, resp if passwd.nil?
          resp = sendcmd('PASS ' + passwd)
        end
        if resp.start_with?("3")
          raise FTPReplyError, resp if acct.nil?
          resp = sendcmd('ACCT ' + acct)
        end
      end
      if !resp.start_with?("2")
        raise FTPReplyError, resp
      end
      @welcome = resp
      send_type_command
      @logged_in = true
    end

    #
    # Puts the connection into binary (image) mode, issues the given command,
    # and fetches the data returned, passing it to the associated block in
    # chunks of +blocksize+ characters. Note that +cmd+ is a server command
    # (such as "RETR myfile").
    #
    def retrbinary(cmd, blocksize, rest_offset = nil) # :yield: data
      synchronize do
        with_binary(true) do
          begin
            conn = transfercmd(cmd, rest_offset)
            while data = conn.read(blocksize)
              yield(data)
            end
            conn.shutdown(Socket::SHUT_WR) rescue nil
            conn.read_timeout = 1
            conn.read rescue nil
          ensure
            conn.close if conn
          end
          voidresp
        end
      end
    end

    #
    # Puts the connection into ASCII (text) mode, issues the given command, and
    # passes the resulting data, one line at a time, to the associated block. If
    # no block is given, prints the lines. Note that +cmd+ is a server command
    # (such as "RETR myfile").
    #
    def retrlines(cmd) # :yield: line
      synchronize do
        with_binary(false) do
          begin
            conn = transfercmd(cmd)
            while line = conn.gets
              yield(line.sub(/\r?\n\z/, ""), !line.match(/\n\z/).nil?)
            end
            conn.shutdown(Socket::SHUT_WR) rescue nil
            conn.read_timeout = 1
            conn.read rescue nil
          ensure
            conn.close if conn
          end
          voidresp
        end
      end
    end

    #
    # Puts the connection into binary (image) mode, issues the given server-side
    # command (such as "STOR myfile"), and sends the contents of the file named
    # +file+ to the server. If the optional block is given, it also passes it
    # the data, in chunks of +blocksize+ characters.
    #
    def storbinary(cmd, file, blocksize, rest_offset = nil) # :yield: data
      if rest_offset
        file.seek(rest_offset, IO::SEEK_SET)
      end
      synchronize do
        with_binary(true) do
          begin
            conn = transfercmd(cmd)
            while buf = file.read(blocksize)
              conn.write(buf)
              yield(buf) if block_given?
            end
            conn.shutdown(Socket::SHUT_WR) rescue nil
            conn.read_timeout = 1
            conn.read rescue nil
          ensure
            conn.close if conn
          end
          voidresp
        end
      end
    rescue Errno::EPIPE
      # EPIPE, in this case, means that the data connection was unexpectedly
      # terminated.  Rather than just raising EPIPE to the caller, check the
      # response on the control connection.  If getresp doesn't raise a more
      # appropriate exception, re-raise the original exception.
      getresp
      raise
    end

    #
    # Puts the connection into ASCII (text) mode, issues the given server-side
    # command (such as "STOR myfile"), and sends the contents of the file
    # named +file+ to the server, one line at a time. If the optional block is
    # given, it also passes it the lines.
    #
    def storlines(cmd, file) # :yield: line
      synchronize do
        with_binary(false) do
          begin
            conn = transfercmd(cmd)
            while buf = file.gets
              if buf[-2, 2] != CRLF
                buf = buf.chomp + CRLF
              end
              conn.write(buf)
              yield(buf) if block_given?
            end
            conn.shutdown(Socket::SHUT_WR) rescue nil
            conn.read_timeout = 1
            conn.read rescue nil
          ensure
            conn.close if conn
          end
          voidresp
        end
      end
    rescue Errno::EPIPE
      # EPIPE, in this case, means that the data connection was unexpectedly
      # terminated.  Rather than just raising EPIPE to the caller, check the
      # response on the control connection.  If getresp doesn't raise a more
      # appropriate exception, re-raise the original exception.
      getresp
      raise
    end

    #
    # Retrieves +remotefile+ in binary mode, storing the result in +localfile+.
    # If +localfile+ is nil, returns retrieved data.
    # If a block is supplied, it is passed the retrieved data in +blocksize+
    # chunks.
    #
    def getbinaryfile(remotefile, localfile = File.basename(remotefile),
                      blocksize = DEFAULT_BLOCKSIZE, &block) # :yield: data
      f = nil
      result = nil
      if localfile
        if @resume
          rest_offset = File.size?(localfile)
          f = File.open(localfile, "a")
        else
          rest_offset = nil
          f = File.open(localfile, "w")
        end
      elsif !block_given?
        result = String.new
      end
      begin
        f&.binmode
        retrbinary("RETR #{remotefile}", blocksize, rest_offset) do |data|
          f&.write(data)
          block&.(data)
          result&.concat(data)
        end
        return result
      ensure
        f&.close
      end
    end

    #
    # Retrieves +remotefile+ in ASCII (text) mode, storing the result in
    # +localfile+.
    # If +localfile+ is nil, returns retrieved data.
    # If a block is supplied, it is passed the retrieved data one
    # line at a time.
    #
    def gettextfile(remotefile, localfile = File.basename(remotefile),
                    &block) # :yield: line
      f = nil
      result = nil
      if localfile
        f = File.open(localfile, "w")
      elsif !block_given?
        result = String.new
      end
      begin
        retrlines("RETR #{remotefile}") do |line, newline|
          l = newline ? line + "\n" : line
          f&.print(l)
          block&.(line, newline)
          result&.concat(l)
        end
        return result
      ensure
        f&.close
      end
    end

    #
    # Retrieves +remotefile+ in whatever mode the session is set (text or
    # binary).  See #gettextfile and #getbinaryfile.
    #
    def get(remotefile, localfile = File.basename(remotefile),
            blocksize = DEFAULT_BLOCKSIZE, &block) # :yield: data
      if @binary
        getbinaryfile(remotefile, localfile, blocksize, &block)
      else
        gettextfile(remotefile, localfile, &block)
      end
    end

    #
    # Transfers +localfile+ to the server in binary mode, storing the result in
    # +remotefile+. If a block is supplied, calls it, passing in the transmitted
    # data in +blocksize+ chunks.
    #
    def putbinaryfile(localfile, remotefile = File.basename(localfile),
                      blocksize = DEFAULT_BLOCKSIZE, &block) # :yield: data
      if @resume
        begin
          rest_offset = size(remotefile)
        rescue Net::FTPPermError
          rest_offset = nil
        end
      else
        rest_offset = nil
      end
      f = File.open(localfile)
      begin
        f.binmode
        if rest_offset
          storbinary("APPE #{remotefile}", f, blocksize, rest_offset, &block)
        else
          storbinary("STOR #{remotefile}", f, blocksize, rest_offset, &block)
        end
      ensure
        f.close
      end
    end

    #
    # Transfers +localfile+ to the server in ASCII (text) mode, storing the result
    # in +remotefile+. If callback or an associated block is supplied, calls it,
    # passing in the transmitted data one line at a time.
    #
    def puttextfile(localfile, remotefile = File.basename(localfile), &block) # :yield: line
      f = File.open(localfile)
      begin
        storlines("STOR #{remotefile}", f, &block)
      ensure
        f.close
      end
    end

    #
    # Transfers +localfile+ to the server in whatever mode the session is set
    # (text or binary).  See #puttextfile and #putbinaryfile.
    #
    def put(localfile, remotefile = File.basename(localfile),
            blocksize = DEFAULT_BLOCKSIZE, &block)
      if @binary
        putbinaryfile(localfile, remotefile, blocksize, &block)
      else
        puttextfile(localfile, remotefile, &block)
      end
    end

    #
    # Sends the ACCT command.
    #
    # This is a less common FTP command, to send account
    # information if the destination host requires it.
    #
    def acct(account)
      cmd = "ACCT " + account
      voidcmd(cmd)
    end

    #
    # Returns an array of filenames in the remote directory.
    #
    def nlst(dir = nil)
      cmd = "NLST"
      if dir
        cmd = "#{cmd} #{dir}"
      end
      files = []
      retrlines(cmd) do |line|
        files.push(line)
      end
      return files
    end

    #
    # Returns an array of file information in the directory (the output is like
    # `ls -l`).  If a block is given, it iterates through the listing.
    #
    def list(*args, &block) # :yield: line
      cmd = "LIST"
      args.each do |arg|
        cmd = "#{cmd} #{arg}"
      end
      lines = []
      retrlines(cmd) do |line|
        lines << line
      end
      if block
        lines.each(&block)
      end
      return lines
    end
    alias ls list
    alias dir list

    #
    # MLSxEntry represents an entry in responses of MLST/MLSD.
    # Each entry has the facts (e.g., size, last modification time, etc.)
    # and the pathname.
    #
    class MLSxEntry
      attr_reader :facts, :pathname

      def initialize(facts, pathname)
        @facts = facts
        @pathname = pathname
      end

      standard_facts = %w(size modify create type unique perm
                          lang media-type charset)
      standard_facts.each do |factname|
        define_method factname.gsub(/-/, "_") do
          facts[factname]
        end
      end

      #
      # Returns +true+ if the entry is a file (i.e., the value of the type
      # fact is file).
      #
      def file?
        return facts["type"] == "file"
      end

      #
      # Returns +true+ if the entry is a directory (i.e., the value of the
      # type fact is dir, cdir, or pdir).
      #
      def directory?
        if /\A[cp]?dir\z/.match(facts["type"])
          return true
        else
          return false
        end
      end

      #
      # Returns +true+ if the APPE command may be applied to the file.
      #
      def appendable?
        return facts["perm"].include?(?a)
      end

      #
      # Returns +true+ if files may be created in the directory by STOU,
      # STOR, APPE, and RNTO.
      #
      def creatable?
        return facts["perm"].include?(?c)
      end

      #
      # Returns +true+ if the file or directory may be deleted by DELE/RMD.
      #
      def deletable?
        return facts["perm"].include?(?d)
      end

      #
      # Returns +true+ if the directory may be entered by CWD/CDUP.
      #
      def enterable?
        return facts["perm"].include?(?e)
      end

      #
      # Returns +true+ if the file or directory may be renamed by RNFR.
      #
      def renamable?
        return facts["perm"].include?(?f)
      end

      #
      # Returns +true+ if the listing commands, LIST, NLST, and MLSD are
      # applied to the directory.
      #
      def listable?
        return facts["perm"].include?(?l)
      end

      #
      # Returns +true+ if the MKD command may be used to create a new
      # directory within the directory.
      #
      def directory_makable?
        return facts["perm"].include?(?m)
      end

      #
      # Returns +true+ if the objects in the directory may be deleted, or
      # the directory may be purged.
      #
      def purgeable?
        return facts["perm"].include?(?p)
      end

      #
      # Returns +true+ if the RETR command may be applied to the file.
      #
      def readable?
        return facts["perm"].include?(?r)
      end

      #
      # Returns +true+ if the STOR command may be applied to the file.
      #
      def writable?
        return facts["perm"].include?(?w)
      end
    end

    CASE_DEPENDENT_PARSER = ->(value) { value }
    CASE_INDEPENDENT_PARSER = ->(value) { value.downcase }
    DECIMAL_PARSER = ->(value) { value.to_i }
    OCTAL_PARSER = ->(value) { value.to_i(8) }
    TIME_PARSER = ->(value, local = false) {
      unless /\A(?<year>\d{4})(?<month>\d{2})(?<day>\d{2})
            (?<hour>\d{2})(?<min>\d{2})(?<sec>\d{2})
            (\.(?<fractions>\d+))?/x =~ value
        raise FTPProtoError, "invalid time-val: #{value}"
      end
      usec = fractions.to_i * 10 ** (6 - fractions.to_s.size)
      Time.send(local ? :local : :utc, year, month, day, hour, min, sec, usec)
    }
    FACT_PARSERS = Hash.new(CASE_DEPENDENT_PARSER)
    FACT_PARSERS["size"] = DECIMAL_PARSER
    FACT_PARSERS["modify"] = TIME_PARSER
    FACT_PARSERS["create"] = TIME_PARSER
    FACT_PARSERS["type"] = CASE_INDEPENDENT_PARSER
    FACT_PARSERS["unique"] = CASE_DEPENDENT_PARSER
    FACT_PARSERS["perm"] = CASE_INDEPENDENT_PARSER
    FACT_PARSERS["lang"] = CASE_INDEPENDENT_PARSER
    FACT_PARSERS["media-type"] = CASE_INDEPENDENT_PARSER
    FACT_PARSERS["charset"] = CASE_INDEPENDENT_PARSER
    FACT_PARSERS["unix.mode"] = OCTAL_PARSER
    FACT_PARSERS["unix.owner"] = DECIMAL_PARSER
    FACT_PARSERS["unix.group"] = DECIMAL_PARSER
    FACT_PARSERS["unix.ctime"] = TIME_PARSER
    FACT_PARSERS["unix.atime"] = TIME_PARSER

    def parse_mlsx_entry(entry)
      facts, pathname = entry.chomp.split(/ /, 2)
      unless pathname
        raise FTPProtoError, entry
      end
      return MLSxEntry.new(
        facts.scan(/(.*?)=(.*?);/).each_with_object({}) {
          |(factname, value), h|
          name = factname.downcase
          h[name] = FACT_PARSERS[name].(value)
        },
        pathname)
    end
    private :parse_mlsx_entry

    #
    # Returns data (e.g., size, last modification time, entry type, etc.)
    # about the file or directory specified by +pathname+.
    # If +pathname+ is omitted, the current directory is assumed.
    #
    def mlst(pathname = nil)
      cmd = pathname ? "MLST #{pathname}" : "MLST"
      resp = sendcmd(cmd)
      if !resp.start_with?("250")
        raise FTPReplyError, resp
      end
      line = resp.lines[1]
      unless line
        raise FTPProtoError, resp
      end
      entry = line.sub(/\A(250-| *)/, "")
      return parse_mlsx_entry(entry)
    end

    #
    # Returns an array of the entries of the directory specified by
    # +pathname+.
    # Each entry has the facts (e.g., size, last modification time, etc.)
    # and the pathname.
    # If a block is given, it iterates through the listing.
    # If +pathname+ is omitted, the current directory is assumed.
    #
    def mlsd(pathname = nil, &block) # :yield: entry
      cmd = pathname ? "MLSD #{pathname}" : "MLSD"
      entries = []
      retrlines(cmd) do |line|
        entries << parse_mlsx_entry(line)
      end
      if block
        entries.each(&block)
      end
      return entries
    end

    #
    # Renames a file on the server.
    #
    def rename(fromname, toname)
      resp = sendcmd("RNFR #{fromname}")
      if !resp.start_with?("3")
        raise FTPReplyError, resp
      end
      voidcmd("RNTO #{toname}")
    end

    #
    # Deletes a file on the server.
    #
    def delete(filename)
      resp = sendcmd("DELE #{filename}")
      if resp.start_with?("250")
        return
      elsif resp.start_with?("5")
        raise FTPPermError, resp
      else
        raise FTPReplyError, resp
      end
    end

    #
    # Changes the (remote) directory.
    #
    def chdir(dirname)
      if dirname == ".."
        begin
          voidcmd("CDUP")
          return
        rescue FTPPermError => e
          if e.message[0, 3] != "500"
            raise e
          end
        end
      end
      cmd = "CWD #{dirname}"
      voidcmd(cmd)
    end

    def get_body(resp) # :nodoc:
      resp.slice(/\A[0-9a-zA-Z]{3} (.*)$/, 1)
    end
    private :get_body

    #
    # Returns the size of the given (remote) filename.
    #
    def size(filename)
      with_binary(true) do
        resp = sendcmd("SIZE #{filename}")
        if !resp.start_with?("213")
          raise FTPReplyError, resp
        end
        return get_body(resp).to_i
      end
    end

    #
    # Returns the last modification time of the (remote) file.  If +local+ is
    # +true+, it is returned as a local time, otherwise it's a UTC time.
    #
    def mtime(filename, local = false)
      return TIME_PARSER.(mdtm(filename), local)
    end

    #
    # Creates a remote directory.
    #
    def mkdir(dirname)
      resp = sendcmd("MKD #{dirname}")
      return parse257(resp)
    end

    #
    # Removes a remote directory.
    #
    def rmdir(dirname)
      voidcmd("RMD #{dirname}")
    end

    #
    # Returns the current remote directory.
    #
    def pwd
      resp = sendcmd("PWD")
      return parse257(resp)
    end
    alias getdir pwd

    #
    # Returns system information.
    #
    def system
      resp = sendcmd("SYST")
      if !resp.start_with?("215")
        raise FTPReplyError, resp
      end
      return get_body(resp)
    end

    #
    # Aborts the previous command (ABOR command).
    #
    def abort
      line = "ABOR" + CRLF
      print "put: ABOR\n" if @debug_mode
      @sock.send(line, Socket::MSG_OOB)
      resp = getmultiline
      unless ["426", "226", "225"].include?(resp[0, 3])
        raise FTPProtoError, resp
      end
      return resp
    end

    #
    # Returns the status (STAT command).
    #
    # pathname:: when stat is invoked with pathname as a parameter it acts like
    #            list but a lot faster and over the same tcp session.
    #
    def status(pathname = nil)
      line = pathname ? "STAT #{pathname}" : "STAT"
      if /[\r\n]/ =~ line
        raise ArgumentError, "A line must not contain CR or LF"
      end
      print "put: #{line}\n" if @debug_mode
      @sock.send(line + CRLF, Socket::MSG_OOB)
      return getresp
    end

    #
    # Returns the raw last modification time of the (remote) file in the format
    # "YYYYMMDDhhmmss" (MDTM command).
    #
    # Use +mtime+ if you want a parsed Time instance.
    #
    def mdtm(filename)
      resp = sendcmd("MDTM #{filename}")
      if resp.start_with?("213")
        return get_body(resp)
      end
    end

    #
    # Issues the HELP command.
    #
    def help(arg = nil)
      cmd = "HELP"
      if arg
        cmd = cmd + " " + arg
      end
      sendcmd(cmd)
    end

    #
    # Exits the FTP session.
    #
    def quit
      voidcmd("QUIT")
    end

    #
    # Issues a NOOP command.
    #
    # Does nothing except return a response.
    #
    def noop
      voidcmd("NOOP")
    end

    #
    # Issues a SITE command.
    #
    def site(arg)
      cmd = "SITE " + arg
      voidcmd(cmd)
    end

    #
    # Issues a FEAT command
    #
    # Returns an array of supported optional features
    #
    def features
      resp = sendcmd("FEAT")
      if !resp.start_with?("211")
        raise FTPReplyError, resp
      end

      feats = []
      resp.split("\n").each do |line|
        next if !line.start_with?(' ') # skip status lines

        feats << line.strip
      end

      return feats
    end

    #
    # Issues an OPTS command
    # - name Should be the name of the option to set
    # - params is any optional parameters to supply with the option
    #
    # example: option('UTF8', 'ON') => 'OPTS UTF8 ON'
    #
    def option(name, params = nil)
      cmd = "OPTS #{name}"
      cmd += " #{params}" if params

      voidcmd(cmd)
    end

    #
    # Closes the connection.  Further operations are impossible until you open
    # a new connection with #connect.
    #
    def close
      if @sock and not @sock.closed?
        begin
          @sock.shutdown(Socket::SHUT_WR) rescue nil
          orig, self.read_timeout = self.read_timeout, 3
          @sock.read rescue nil
        ensure
          @sock.close
          self.read_timeout = orig
        end
      end
    end

    #
    # Returns +true+ iff the connection is closed.
    #
    def closed?
      @sock == nil or @sock.closed?
    end

    # handler for response code 227
    # (Entering Passive Mode (h1,h2,h3,h4,p1,p2))
    #
    # Returns host and port.
    def parse227(resp) # :nodoc:
      if !resp.start_with?("227")
        raise FTPReplyError, resp
      end
      if m = /\((?<host>\d+(,\d+){3}),(?<port>\d+,\d+)\)/.match(resp)
        if @use_pasv_ip
          host = parse_pasv_ipv4_host(m["host"])
        else
          host = @bare_sock.remote_address.ip_address
        end
        return host, parse_pasv_port(m["port"])
      else
        raise FTPProtoError, resp
      end
    end
    private :parse227

    # handler for response code 228
    # (Entering Long Passive Mode)
    #
    # Returns host and port.
    def parse228(resp) # :nodoc:
      if !resp.start_with?("228")
        raise FTPReplyError, resp
      end
      if m = /\(4,4,(?<host>\d+(,\d+){3}),2,(?<port>\d+,\d+)\)/.match(resp)
        return parse_pasv_ipv4_host(m["host"]), parse_pasv_port(m["port"])
      elsif m = /\(6,16,(?<host>\d+(,(\d+)){15}),2,(?<port>\d+,\d+)\)/.match(resp)
        return parse_pasv_ipv6_host(m["host"]), parse_pasv_port(m["port"])
      else
        raise FTPProtoError, resp
      end
    end
    private :parse228

    def parse_pasv_ipv4_host(s)
      return s.tr(",", ".")
    end
    private :parse_pasv_ipv4_host

    def parse_pasv_ipv6_host(s)
      return s.split(/,/).map { |i|
        "%02x" % i.to_i
      }.each_slice(2).map(&:join).join(":")
    end
    private :parse_pasv_ipv6_host

    def parse_pasv_port(s)
      return s.split(/,/).map(&:to_i).inject { |x, y|
        (x << 8) + y
      }
    end
    private :parse_pasv_port

    # handler for response code 229
    # (Extended Passive Mode Entered)
    #
    # Returns host and port.
    def parse229(resp) # :nodoc:
      if !resp.start_with?("229")
        raise FTPReplyError, resp
      end
      if m = /\((?<d>[!-~])\k<d>\k<d>(?<port>\d+)\k<d>\)/.match(resp)
        return @bare_sock.remote_address.ip_address, m["port"].to_i
      else
        raise FTPProtoError, resp
      end
    end
    private :parse229

    # handler for response code 257
    # ("PATHNAME" created)
    #
    # Returns host and port.
    def parse257(resp) # :nodoc:
      if !resp.start_with?("257")
        raise FTPReplyError, resp
      end
      return resp.slice(/"(([^"]|"")*)"/, 1).to_s.gsub(/""/, '"')
    end
    private :parse257

    # :stopdoc:
    class NullSocket
      def read_timeout=(sec)
      end

      def closed?
        true
      end

      def close
      end

      def method_missing(mid, *args)
        raise FTPConnectionError, "not connected"
      end
    end

    class BufferedSocket < BufferedIO
      [:local_address, :remote_address, :addr, :peeraddr, :send, :shutdown].each do |method|
        define_method(method) { |*args|
          @io.__send__(method, *args)
        }
      end

      def read(len = nil)
        if len
          s = super(len, String.new, true)
          return s.empty? ? nil : s
        else
          result = String.new
          while s = super(DEFAULT_BLOCKSIZE, String.new, true)
            break if s.empty?
            result << s
          end
          return result
        end
      end

      def gets
        line = readuntil("\n", true)
        return line.empty? ? nil : line
      end

      def readline
        line = gets
        if line.nil?
          raise EOFError, "end of file reached"
        end
        return line
      end
    end

    if defined?(OpenSSL::SSL::SSLSocket)
      class BufferedSSLSocket <  BufferedSocket
        def initialize(*args, **options)
          super
          @is_shutdown = false
        end

        def shutdown(*args)
          # SSL_shutdown() will be called from SSLSocket#close, and
          # SSL_shutdown() will send the "close notify" alert to the peer,
          # so shutdown(2) should not be called.
          @is_shutdown = true
        end

        def send(mesg, flags, dest = nil)
          # Ignore flags and dest.
          @io.write(mesg)
        end

        private

        def rbuf_fill
          if @is_shutdown
            raise EOFError, "shutdown has been called"
          else
            super
          end
        end
      end
    end
    # :startdoc:
  end
end


# Documentation comments:
#  - sourced from pickaxe and nutshell, with improvements (hopefully)
PKFH[��LlYYshare/ruby/net/pop/version.rbnu�[���module Net
  class Protocol; end
  class POP3 < Protocol
    VERSION = "0.1.0"
  end
end
PKFH[��l���share/ruby/net/http.rbnu�[���# frozen_string_literal: false
#
# = net/http.rb
#
# Copyright (c) 1999-2007 Yukihiro Matsumoto
# Copyright (c) 1999-2007 Minero Aoki
# Copyright (c) 2001 GOTOU Yuuzou
#
# Written and maintained by Minero Aoki <aamine@loveruby.net>.
# HTTPS support added by GOTOU Yuuzou <gotoyuzo@notwork.org>.
#
# This file is derived from "http-access.rb".
#
# Documented by Minero Aoki; converted to RDoc by William Webber.
#
# This program is free software. You can re-distribute and/or
# modify this program under the same terms of ruby itself ---
# Ruby Distribution License or GNU General Public License.
#
# See Net::HTTP for an overview and examples.
#

require_relative 'protocol'
require 'uri'
autoload :OpenSSL, 'openssl'

module Net   #:nodoc:

  # :stopdoc:
  class HTTPBadResponse < StandardError; end
  class HTTPHeaderSyntaxError < StandardError; end
  # :startdoc:

  # == An HTTP client API for Ruby.
  #
  # Net::HTTP provides a rich library which can be used to build HTTP
  # user-agents.  For more details about HTTP see
  # [RFC2616](http://www.ietf.org/rfc/rfc2616.txt).
  #
  # Net::HTTP is designed to work closely with URI.  URI::HTTP#host,
  # URI::HTTP#port and URI::HTTP#request_uri are designed to work with
  # Net::HTTP.
  #
  # If you are only performing a few GET requests you should try OpenURI.
  #
  # == Simple Examples
  #
  # All examples assume you have loaded Net::HTTP with:
  #
  #   require 'net/http'
  #
  # This will also require 'uri' so you don't need to require it separately.
  #
  # The Net::HTTP methods in the following section do not persist
  # connections.  They are not recommended if you are performing many HTTP
  # requests.
  #
  # === GET
  #
  #   Net::HTTP.get('example.com', '/index.html') # => String
  #
  # === GET by URI
  #
  #   uri = URI('http://example.com/index.html?count=10')
  #   Net::HTTP.get(uri) # => String
  #
  # === GET with Dynamic Parameters
  #
  #   uri = URI('http://example.com/index.html')
  #   params = { :limit => 10, :page => 3 }
  #   uri.query = URI.encode_www_form(params)
  #
  #   res = Net::HTTP.get_response(uri)
  #   puts res.body if res.is_a?(Net::HTTPSuccess)
  #
  # === POST
  #
  #   uri = URI('http://www.example.com/search.cgi')
  #   res = Net::HTTP.post_form(uri, 'q' => 'ruby', 'max' => '50')
  #   puts res.body
  #
  # === POST with Multiple Values
  #
  #   uri = URI('http://www.example.com/search.cgi')
  #   res = Net::HTTP.post_form(uri, 'q' => ['ruby', 'perl'], 'max' => '50')
  #   puts res.body
  #
  # == How to use Net::HTTP
  #
  # The following example code can be used as the basis of an HTTP user-agent
  # which can perform a variety of request types using persistent
  # connections.
  #
  #   uri = URI('http://example.com/some_path?query=string')
  #
  #   Net::HTTP.start(uri.host, uri.port) do |http|
  #     request = Net::HTTP::Get.new uri
  #
  #     response = http.request request # Net::HTTPResponse object
  #   end
  #
  # Net::HTTP::start immediately creates a connection to an HTTP server which
  # is kept open for the duration of the block.  The connection will remain
  # open for multiple requests in the block if the server indicates it
  # supports persistent connections.
  #
  # If you wish to re-use a connection across multiple HTTP requests without
  # automatically closing it you can use ::new and then call #start and
  # #finish manually.
  #
  # The request types Net::HTTP supports are listed below in the section "HTTP
  # Request Classes".
  #
  # For all the Net::HTTP request objects and shortcut request methods you may
  # supply either a String for the request path or a URI from which Net::HTTP
  # will extract the request path.
  #
  # === Response Data
  #
  #   uri = URI('http://example.com/index.html')
  #   res = Net::HTTP.get_response(uri)
  #
  #   # Headers
  #   res['Set-Cookie']            # => String
  #   res.get_fields('set-cookie') # => Array
  #   res.to_hash['set-cookie']    # => Array
  #   puts "Headers: #{res.to_hash.inspect}"
  #
  #   # Status
  #   puts res.code       # => '200'
  #   puts res.message    # => 'OK'
  #   puts res.class.name # => 'HTTPOK'
  #
  #   # Body
  #   puts res.body if res.response_body_permitted?
  #
  # === Following Redirection
  #
  # Each Net::HTTPResponse object belongs to a class for its response code.
  #
  # For example, all 2XX responses are instances of a Net::HTTPSuccess
  # subclass, a 3XX response is an instance of a Net::HTTPRedirection
  # subclass and a 200 response is an instance of the Net::HTTPOK class.  For
  # details of response classes, see the section "HTTP Response Classes"
  # below.
  #
  # Using a case statement you can handle various types of responses properly:
  #
  #   def fetch(uri_str, limit = 10)
  #     # You should choose a better exception.
  #     raise ArgumentError, 'too many HTTP redirects' if limit == 0
  #
  #     response = Net::HTTP.get_response(URI(uri_str))
  #
  #     case response
  #     when Net::HTTPSuccess then
  #       response
  #     when Net::HTTPRedirection then
  #       location = response['location']
  #       warn "redirected to #{location}"
  #       fetch(location, limit - 1)
  #     else
  #       response.value
  #     end
  #   end
  #
  #   print fetch('http://www.ruby-lang.org')
  #
  # === POST
  #
  # A POST can be made using the Net::HTTP::Post request class.  This example
  # creates a URL encoded POST body:
  #
  #   uri = URI('http://www.example.com/todo.cgi')
  #   req = Net::HTTP::Post.new(uri)
  #   req.set_form_data('from' => '2005-01-01', 'to' => '2005-03-31')
  #
  #   res = Net::HTTP.start(uri.hostname, uri.port) do |http|
  #     http.request(req)
  #   end
  #
  #   case res
  #   when Net::HTTPSuccess, Net::HTTPRedirection
  #     # OK
  #   else
  #     res.value
  #   end
  #
  # To send multipart/form-data use Net::HTTPHeader#set_form:
  #
  #   req = Net::HTTP::Post.new(uri)
  #   req.set_form([['upload', File.open('foo.bar')]], 'multipart/form-data')
  #
  # Other requests that can contain a body such as PUT can be created in the
  # same way using the corresponding request class (Net::HTTP::Put).
  #
  # === Setting Headers
  #
  # The following example performs a conditional GET using the
  # If-Modified-Since header.  If the files has not been modified since the
  # time in the header a Not Modified response will be returned.  See RFC 2616
  # section 9.3 for further details.
  #
  #   uri = URI('http://example.com/cached_response')
  #   file = File.stat 'cached_response'
  #
  #   req = Net::HTTP::Get.new(uri)
  #   req['If-Modified-Since'] = file.mtime.rfc2822
  #
  #   res = Net::HTTP.start(uri.hostname, uri.port) {|http|
  #     http.request(req)
  #   }
  #
  #   open 'cached_response', 'w' do |io|
  #     io.write res.body
  #   end if res.is_a?(Net::HTTPSuccess)
  #
  # === Basic Authentication
  #
  # Basic authentication is performed according to
  # [RFC2617](http://www.ietf.org/rfc/rfc2617.txt).
  #
  #   uri = URI('http://example.com/index.html?key=value')
  #
  #   req = Net::HTTP::Get.new(uri)
  #   req.basic_auth 'user', 'pass'
  #
  #   res = Net::HTTP.start(uri.hostname, uri.port) {|http|
  #     http.request(req)
  #   }
  #   puts res.body
  #
  # === Streaming Response Bodies
  #
  # By default Net::HTTP reads an entire response into memory.  If you are
  # handling large files or wish to implement a progress bar you can instead
  # stream the body directly to an IO.
  #
  #   uri = URI('http://example.com/large_file')
  #
  #   Net::HTTP.start(uri.host, uri.port) do |http|
  #     request = Net::HTTP::Get.new uri
  #
  #     http.request request do |response|
  #       open 'large_file', 'w' do |io|
  #         response.read_body do |chunk|
  #           io.write chunk
  #         end
  #       end
  #     end
  #   end
  #
  # === HTTPS
  #
  # HTTPS is enabled for an HTTP connection by Net::HTTP#use_ssl=.
  #
  #   uri = URI('https://secure.example.com/some_path?query=string')
  #
  #   Net::HTTP.start(uri.host, uri.port, :use_ssl => true) do |http|
  #     request = Net::HTTP::Get.new uri
  #     response = http.request request # Net::HTTPResponse object
  #   end
  #
  # Or if you simply want to make a GET request, you may pass in an URI
  # object that has an HTTPS URL. Net::HTTP automatically turns on TLS
  # verification if the URI object has a 'https' URI scheme.
  #
  #   uri = URI('https://example.com/')
  #   Net::HTTP.get(uri) # => String
  #
  # In previous versions of Ruby you would need to require 'net/https' to use
  # HTTPS. This is no longer true.
  #
  # === Proxies
  #
  # Net::HTTP will automatically create a proxy from the +http_proxy+
  # environment variable if it is present.  To disable use of +http_proxy+,
  # pass +nil+ for the proxy address.
  #
  # You may also create a custom proxy:
  #
  #   proxy_addr = 'your.proxy.host'
  #   proxy_port = 8080
  #
  #   Net::HTTP.new('example.com', nil, proxy_addr, proxy_port).start { |http|
  #     # always proxy via your.proxy.addr:8080
  #   }
  #
  # See Net::HTTP.new for further details and examples such as proxies that
  # require a username and password.
  #
  # === Compression
  #
  # Net::HTTP automatically adds Accept-Encoding for compression of response
  # bodies and automatically decompresses gzip and deflate responses unless a
  # Range header was sent.
  #
  # Compression can be disabled through the Accept-Encoding: identity header.
  #
  # == HTTP Request Classes
  #
  # Here is the HTTP request class hierarchy.
  #
  # * Net::HTTPRequest
  #   * Net::HTTP::Get
  #   * Net::HTTP::Head
  #   * Net::HTTP::Post
  #   * Net::HTTP::Patch
  #   * Net::HTTP::Put
  #   * Net::HTTP::Proppatch
  #   * Net::HTTP::Lock
  #   * Net::HTTP::Unlock
  #   * Net::HTTP::Options
  #   * Net::HTTP::Propfind
  #   * Net::HTTP::Delete
  #   * Net::HTTP::Move
  #   * Net::HTTP::Copy
  #   * Net::HTTP::Mkcol
  #   * Net::HTTP::Trace
  #
  # == HTTP Response Classes
  #
  # Here is HTTP response class hierarchy.  All classes are defined in Net
  # module and are subclasses of Net::HTTPResponse.
  #
  # HTTPUnknownResponse:: For unhandled HTTP extensions
  # HTTPInformation::                    1xx
  #   HTTPContinue::                        100
  #   HTTPSwitchProtocol::                  101
  # HTTPSuccess::                        2xx
  #   HTTPOK::                              200
  #   HTTPCreated::                         201
  #   HTTPAccepted::                        202
  #   HTTPNonAuthoritativeInformation::     203
  #   HTTPNoContent::                       204
  #   HTTPResetContent::                    205
  #   HTTPPartialContent::                  206
  #   HTTPMultiStatus::                     207
  #   HTTPIMUsed::                          226
  # HTTPRedirection::                    3xx
  #   HTTPMultipleChoices::                 300
  #   HTTPMovedPermanently::                301
  #   HTTPFound::                           302
  #   HTTPSeeOther::                        303
  #   HTTPNotModified::                     304
  #   HTTPUseProxy::                        305
  #   HTTPTemporaryRedirect::               307
  # HTTPClientError::                    4xx
  #   HTTPBadRequest::                      400
  #   HTTPUnauthorized::                    401
  #   HTTPPaymentRequired::                 402
  #   HTTPForbidden::                       403
  #   HTTPNotFound::                        404
  #   HTTPMethodNotAllowed::                405
  #   HTTPNotAcceptable::                   406
  #   HTTPProxyAuthenticationRequired::     407
  #   HTTPRequestTimeOut::                  408
  #   HTTPConflict::                        409
  #   HTTPGone::                            410
  #   HTTPLengthRequired::                  411
  #   HTTPPreconditionFailed::              412
  #   HTTPRequestEntityTooLarge::           413
  #   HTTPRequestURITooLong::               414
  #   HTTPUnsupportedMediaType::            415
  #   HTTPRequestedRangeNotSatisfiable::    416
  #   HTTPExpectationFailed::               417
  #   HTTPUnprocessableEntity::             422
  #   HTTPLocked::                          423
  #   HTTPFailedDependency::                424
  #   HTTPUpgradeRequired::                 426
  #   HTTPPreconditionRequired::            428
  #   HTTPTooManyRequests::                 429
  #   HTTPRequestHeaderFieldsTooLarge::     431
  #   HTTPUnavailableForLegalReasons::      451
  # HTTPServerError::                    5xx
  #   HTTPInternalServerError::             500
  #   HTTPNotImplemented::                  501
  #   HTTPBadGateway::                      502
  #   HTTPServiceUnavailable::              503
  #   HTTPGatewayTimeOut::                  504
  #   HTTPVersionNotSupported::             505
  #   HTTPInsufficientStorage::             507
  #   HTTPNetworkAuthenticationRequired::   511
  #
  # There is also the Net::HTTPBadResponse exception which is raised when
  # there is a protocol error.
  #
  class HTTP < Protocol

    # :stopdoc:
    Revision = %q$Revision$.split[1]
    HTTPVersion = '1.1'
    begin
      require 'zlib'
      require 'stringio'  #for our purposes (unpacking gzip) lump these together
      HAVE_ZLIB=true
    rescue LoadError
      HAVE_ZLIB=false
    end
    # :startdoc:

    # Turns on net/http 1.2 (Ruby 1.8) features.
    # Defaults to ON in Ruby 1.8 or later.
    def HTTP.version_1_2
      true
    end

    # Returns true if net/http is in version 1.2 mode.
    # Defaults to true.
    def HTTP.version_1_2?
      true
    end

    def HTTP.version_1_1?  #:nodoc:
      false
    end

    class << HTTP
      alias is_version_1_1? version_1_1?   #:nodoc:
      alias is_version_1_2? version_1_2?   #:nodoc:
    end

    #
    # short cut methods
    #

    #
    # Gets the body text from the target and outputs it to $stdout.  The
    # target can either be specified as
    # (+uri+), or as (+host+, +path+, +port+ = 80); so:
    #
    #    Net::HTTP.get_print URI('http://www.example.com/index.html')
    #
    # or:
    #
    #    Net::HTTP.get_print 'www.example.com', '/index.html'
    #
    def HTTP.get_print(uri_or_host, path = nil, port = nil)
      get_response(uri_or_host, path, port) {|res|
        res.read_body do |chunk|
          $stdout.print chunk
        end
      }
      nil
    end

    # Sends a GET request to the target and returns the HTTP response
    # as a string.  The target can either be specified as
    # (+uri+), or as (+host+, +path+, +port+ = 80); so:
    #
    #    print Net::HTTP.get(URI('http://www.example.com/index.html'))
    #
    # or:
    #
    #    print Net::HTTP.get('www.example.com', '/index.html')
    #
    def HTTP.get(uri_or_host, path = nil, port = nil)
      get_response(uri_or_host, path, port).body
    end

    # Sends a GET request to the target and returns the HTTP response
    # as a Net::HTTPResponse object.  The target can either be specified as
    # (+uri+), or as (+host+, +path+, +port+ = 80); so:
    #
    #    res = Net::HTTP.get_response(URI('http://www.example.com/index.html'))
    #    print res.body
    #
    # or:
    #
    #    res = Net::HTTP.get_response('www.example.com', '/index.html')
    #    print res.body
    #
    def HTTP.get_response(uri_or_host, path = nil, port = nil, &block)
      if path
        host = uri_or_host
        new(host, port || HTTP.default_port).start {|http|
          return http.request_get(path, &block)
        }
      else
        uri = uri_or_host
        start(uri.hostname, uri.port,
              :use_ssl => uri.scheme == 'https') {|http|
          return http.request_get(uri, &block)
        }
      end
    end

    # Posts data to the specified URI object.
    #
    # Example:
    #
    #   require 'net/http'
    #   require 'uri'
    #
    #   Net::HTTP.post URI('http://www.example.com/api/search'),
    #                  { "q" => "ruby", "max" => "50" }.to_json,
    #                  "Content-Type" => "application/json"
    #
    def HTTP.post(url, data, header = nil)
      start(url.hostname, url.port,
            :use_ssl => url.scheme == 'https' ) {|http|
        http.post(url, data, header)
      }
    end

    # Posts HTML form data to the specified URI object.
    # The form data must be provided as a Hash mapping from String to String.
    # Example:
    #
    #   { "cmd" => "search", "q" => "ruby", "max" => "50" }
    #
    # This method also does Basic Authentication iff +url+.user exists.
    # But userinfo for authentication is deprecated (RFC3986).
    # So this feature will be removed.
    #
    # Example:
    #
    #   require 'net/http'
    #   require 'uri'
    #
    #   Net::HTTP.post_form URI('http://www.example.com/search.cgi'),
    #                       { "q" => "ruby", "max" => "50" }
    #
    def HTTP.post_form(url, params)
      req = Post.new(url)
      req.form_data = params
      req.basic_auth url.user, url.password if url.user
      start(url.hostname, url.port,
            :use_ssl => url.scheme == 'https' ) {|http|
        http.request(req)
      }
    end

    #
    # HTTP session management
    #

    # The default port to use for HTTP requests; defaults to 80.
    def HTTP.default_port
      http_default_port()
    end

    # The default port to use for HTTP requests; defaults to 80.
    def HTTP.http_default_port
      80
    end

    # The default port to use for HTTPS requests; defaults to 443.
    def HTTP.https_default_port
      443
    end

    def HTTP.socket_type   #:nodoc: obsolete
      BufferedIO
    end

    # :call-seq:
    #   HTTP.start(address, port, p_addr, p_port, p_user, p_pass, &block)
    #   HTTP.start(address, port=nil, p_addr=:ENV, p_port=nil, p_user=nil, p_pass=nil, opt, &block)
    #
    # Creates a new Net::HTTP object, then additionally opens the TCP
    # connection and HTTP session.
    #
    # Arguments are the following:
    # _address_ :: hostname or IP address of the server
    # _port_    :: port of the server
    # _p_addr_  :: address of proxy
    # _p_port_  :: port of proxy
    # _p_user_  :: user of proxy
    # _p_pass_  :: pass of proxy
    # _opt_     :: optional hash
    #
    # _opt_ sets following values by its accessor.
    # The keys are ipaddr, ca_file, ca_path, cert, cert_store, ciphers,
    # close_on_empty_response, key, open_timeout, read_timeout, write_timeout, ssl_timeout,
    # ssl_version, use_ssl, verify_callback, verify_depth and verify_mode.
    # If you set :use_ssl as true, you can use https and default value of
    # verify_mode is set as OpenSSL::SSL::VERIFY_PEER.
    #
    # If the optional block is given, the newly
    # created Net::HTTP object is passed to it and closed when the
    # block finishes.  In this case, the return value of this method
    # is the return value of the block.  If no block is given, the
    # return value of this method is the newly created Net::HTTP object
    # itself, and the caller is responsible for closing it upon completion
    # using the finish() method.
    def HTTP.start(address, *arg, &block) # :yield: +http+
      arg.pop if opt = Hash.try_convert(arg[-1])
      port, p_addr, p_port, p_user, p_pass = *arg
      p_addr = :ENV if arg.size < 2
      port = https_default_port if !port && opt && opt[:use_ssl]
      http = new(address, port, p_addr, p_port, p_user, p_pass)
      http.ipaddr = opt[:ipaddr] if opt && opt[:ipaddr]

      if opt
        if opt[:use_ssl]
          opt = {verify_mode: OpenSSL::SSL::VERIFY_PEER}.update(opt)
        end
        http.methods.grep(/\A(\w+)=\z/) do |meth|
          key = $1.to_sym
          opt.key?(key) or next
          http.__send__(meth, opt[key])
        end
      end

      http.start(&block)
    end

    class << HTTP
      alias newobj new # :nodoc:
    end

    # Creates a new Net::HTTP object without opening a TCP connection or
    # HTTP session.
    #
    # The +address+ should be a DNS hostname or IP address, the +port+ is the
    # port the server operates on.  If no +port+ is given the default port for
    # HTTP or HTTPS is used.
    #
    # If none of the +p_+ arguments are given, the proxy host and port are
    # taken from the +http_proxy+ environment variable (or its uppercase
    # equivalent) if present.  If the proxy requires authentication you must
    # supply it by hand.  See URI::Generic#find_proxy for details of proxy
    # detection from the environment.  To disable proxy detection set +p_addr+
    # to nil.
    #
    # If you are connecting to a custom proxy, +p_addr+ specifies the DNS name
    # or IP address of the proxy host, +p_port+ the port to use to access the
    # proxy, +p_user+ and +p_pass+ the username and password if authorization
    # is required to use the proxy, and p_no_proxy hosts which do not
    # use the proxy.
    #
    def HTTP.new(address, port = nil, p_addr = :ENV, p_port = nil, p_user = nil, p_pass = nil, p_no_proxy = nil)
      http = super address, port

      if proxy_class? then # from Net::HTTP::Proxy()
        http.proxy_from_env = @proxy_from_env
        http.proxy_address  = @proxy_address
        http.proxy_port     = @proxy_port
        http.proxy_user     = @proxy_user
        http.proxy_pass     = @proxy_pass
      elsif p_addr == :ENV then
        http.proxy_from_env = true
      else
        if p_addr && p_no_proxy && !URI::Generic.use_proxy?(p_addr, p_addr, p_port, p_no_proxy)
          p_addr = nil
          p_port = nil
        end
        http.proxy_address = p_addr
        http.proxy_port    = p_port || default_port
        http.proxy_user    = p_user
        http.proxy_pass    = p_pass
      end

      http
    end

    # Creates a new Net::HTTP object for the specified server address,
    # without opening the TCP connection or initializing the HTTP session.
    # The +address+ should be a DNS hostname or IP address.
    def initialize(address, port = nil)
      @address = address
      @port    = (port || HTTP.default_port)
      @ipaddr = nil
      @local_host = nil
      @local_port = nil
      @curr_http_version = HTTPVersion
      @keep_alive_timeout = 2
      @last_communicated = nil
      @close_on_empty_response = false
      @socket  = nil
      @started = false
      @open_timeout = 60
      @read_timeout = 60
      @write_timeout = 60
      @continue_timeout = nil
      @max_retries = 1
      @debug_output = nil

      @proxy_from_env = false
      @proxy_uri      = nil
      @proxy_address  = nil
      @proxy_port     = nil
      @proxy_user     = nil
      @proxy_pass     = nil

      @use_ssl = false
      @ssl_context = nil
      @ssl_session = nil
      @sspi_enabled = false
      SSL_IVNAMES.each do |ivname|
        instance_variable_set ivname, nil
      end
    end

    def inspect
      "#<#{self.class} #{@address}:#{@port} open=#{started?}>"
    end

    # *WARNING* This method opens a serious security hole.
    # Never use this method in production code.
    #
    # Sets an output stream for debugging.
    #
    #   http = Net::HTTP.new(hostname)
    #   http.set_debug_output $stderr
    #   http.start { .... }
    #
    def set_debug_output(output)
      warn 'Net::HTTP#set_debug_output called after HTTP started', uplevel: 1 if started?
      @debug_output = output
    end

    # The DNS host name or IP address to connect to.
    attr_reader :address

    # The port number to connect to.
    attr_reader :port

    # The local host used to establish the connection.
    attr_accessor :local_host

    # The local port used to establish the connection.
    attr_accessor :local_port

    attr_writer :proxy_from_env
    attr_writer :proxy_address
    attr_writer :proxy_port
    attr_writer :proxy_user
    attr_writer :proxy_pass

    # The IP address to connect to/used to connect to
    def ipaddr
      started? ?  @socket.io.peeraddr[3] : @ipaddr
    end

    # Set the IP address to connect to
    def ipaddr=(addr)
      raise IOError, "ipaddr value changed, but session already started" if started?
      @ipaddr = addr
    end

    # Number of seconds to wait for the connection to open. Any number
    # may be used, including Floats for fractional seconds. If the HTTP
    # object cannot open a connection in this many seconds, it raises a
    # Net::OpenTimeout exception. The default value is 60 seconds.
    attr_accessor :open_timeout

    # Number of seconds to wait for one block to be read (via one read(2)
    # call). Any number may be used, including Floats for fractional
    # seconds. If the HTTP object cannot read data in this many seconds,
    # it raises a Net::ReadTimeout exception. The default value is 60 seconds.
    attr_reader :read_timeout

    # Number of seconds to wait for one block to be written (via one write(2)
    # call). Any number may be used, including Floats for fractional
    # seconds. If the HTTP object cannot write data in this many seconds,
    # it raises a Net::WriteTimeout exception. The default value is 60 seconds.
    # Net::WriteTimeout is not raised on Windows.
    attr_reader :write_timeout

    # Maximum number of times to retry an idempotent request in case of
    # Net::ReadTimeout, IOError, EOFError, Errno::ECONNRESET,
    # Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL::SSLError,
    # Timeout::Error.
    # Should be a non-negative integer number. Zero means no retries.
    # The default value is 1.
    def max_retries=(retries)
      retries = retries.to_int
      if retries < 0
        raise ArgumentError, 'max_retries should be non-negative integer number'
      end
      @max_retries = retries
    end

    attr_reader :max_retries

    # Setter for the read_timeout attribute.
    def read_timeout=(sec)
      @socket.read_timeout = sec if @socket
      @read_timeout = sec
    end

    # Setter for the write_timeout attribute.
    def write_timeout=(sec)
      @socket.write_timeout = sec if @socket
      @write_timeout = sec
    end

    # Seconds to wait for 100 Continue response. If the HTTP object does not
    # receive a response in this many seconds it sends the request body. The
    # default value is +nil+.
    attr_reader :continue_timeout

    # Setter for the continue_timeout attribute.
    def continue_timeout=(sec)
      @socket.continue_timeout = sec if @socket
      @continue_timeout = sec
    end

    # Seconds to reuse the connection of the previous request.
    # If the idle time is less than this Keep-Alive Timeout,
    # Net::HTTP reuses the TCP/IP socket used by the previous communication.
    # The default value is 2 seconds.
    attr_accessor :keep_alive_timeout

    # Returns true if the HTTP session has been started.
    def started?
      @started
    end

    alias active? started?   #:nodoc: obsolete

    attr_accessor :close_on_empty_response

    # Returns true if SSL/TLS is being used with HTTP.
    def use_ssl?
      @use_ssl
    end

    # Turn on/off SSL.
    # This flag must be set before starting session.
    # If you change use_ssl value after session started,
    # a Net::HTTP object raises IOError.
    def use_ssl=(flag)
      flag = flag ? true : false
      if started? and @use_ssl != flag
        raise IOError, "use_ssl value changed, but session already started"
      end
      @use_ssl = flag
    end

    SSL_IVNAMES = [
      :@ca_file,
      :@ca_path,
      :@cert,
      :@cert_store,
      :@ciphers,
      :@key,
      :@ssl_timeout,
      :@ssl_version,
      :@min_version,
      :@max_version,
      :@verify_callback,
      :@verify_depth,
      :@verify_mode,
    ]
    SSL_ATTRIBUTES = [
      :ca_file,
      :ca_path,
      :cert,
      :cert_store,
      :ciphers,
      :key,
      :ssl_timeout,
      :ssl_version,
      :min_version,
      :max_version,
      :verify_callback,
      :verify_depth,
      :verify_mode,
    ]

    # Sets path of a CA certification file in PEM format.
    #
    # The file can contain several CA certificates.
    attr_accessor :ca_file

    # Sets path of a CA certification directory containing certifications in
    # PEM format.
    attr_accessor :ca_path

    # Sets an OpenSSL::X509::Certificate object as client certificate.
    # (This method is appeared in Michal Rokos's OpenSSL extension).
    attr_accessor :cert

    # Sets the X509::Store to verify peer certificate.
    attr_accessor :cert_store

    # Sets the available ciphers.  See OpenSSL::SSL::SSLContext#ciphers=
    attr_accessor :ciphers

    # Sets an OpenSSL::PKey::RSA or OpenSSL::PKey::DSA object.
    # (This method is appeared in Michal Rokos's OpenSSL extension.)
    attr_accessor :key

    # Sets the SSL timeout seconds.
    attr_accessor :ssl_timeout

    # Sets the SSL version.  See OpenSSL::SSL::SSLContext#ssl_version=
    attr_accessor :ssl_version

    # Sets the minimum SSL version.  See OpenSSL::SSL::SSLContext#min_version=
    attr_accessor :min_version

    # Sets the maximum SSL version.  See OpenSSL::SSL::SSLContext#max_version=
    attr_accessor :max_version

    # Sets the verify callback for the server certification verification.
    attr_accessor :verify_callback

    # Sets the maximum depth for the certificate chain verification.
    attr_accessor :verify_depth

    # Sets the flags for server the certification verification at beginning of
    # SSL/TLS session.
    #
    # OpenSSL::SSL::VERIFY_NONE or OpenSSL::SSL::VERIFY_PEER are acceptable.
    attr_accessor :verify_mode

    # Returns the X.509 certificates the server presented.
    def peer_cert
      if not use_ssl? or not @socket
        return nil
      end
      @socket.io.peer_cert
    end

    # Opens a TCP connection and HTTP session.
    #
    # When this method is called with a block, it passes the Net::HTTP
    # object to the block, and closes the TCP connection and HTTP session
    # after the block has been executed.
    #
    # When called with a block, it returns the return value of the
    # block; otherwise, it returns self.
    #
    def start  # :yield: http
      raise IOError, 'HTTP session already opened' if @started
      if block_given?
        begin
          do_start
          return yield(self)
        ensure
          do_finish
        end
      end
      do_start
      self
    end

    def do_start
      connect
      @started = true
    end
    private :do_start

    def connect
      if proxy? then
        conn_addr = proxy_address
        conn_port = proxy_port
      else
        conn_addr = conn_address
        conn_port = port
      end

      D "opening connection to #{conn_addr}:#{conn_port}..."
      s = Timeout.timeout(@open_timeout, Net::OpenTimeout) {
        begin
          TCPSocket.open(conn_addr, conn_port, @local_host, @local_port)
        rescue => e
          raise e, "Failed to open TCP connection to " +
            "#{conn_addr}:#{conn_port} (#{e.message})"
        end
      }
      s.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1)
      D "opened"
      if use_ssl?
        if proxy?
          plain_sock = BufferedIO.new(s, read_timeout: @read_timeout,
                                      write_timeout: @write_timeout,
                                      continue_timeout: @continue_timeout,
                                      debug_output: @debug_output)
          buf = "CONNECT #{conn_address}:#{@port} HTTP/#{HTTPVersion}\r\n"
          buf << "Host: #{@address}:#{@port}\r\n"
          if proxy_user
            credential = ["#{proxy_user}:#{proxy_pass}"].pack('m0')
            buf << "Proxy-Authorization: Basic #{credential}\r\n"
          end
          buf << "\r\n"
          plain_sock.write(buf)
          HTTPResponse.read_new(plain_sock).value
          # assuming nothing left in buffers after successful CONNECT response
        end

        ssl_parameters = Hash.new
        iv_list = instance_variables
        SSL_IVNAMES.each_with_index do |ivname, i|
          if iv_list.include?(ivname) and
            value = instance_variable_get(ivname)
            ssl_parameters[SSL_ATTRIBUTES[i]] = value if value
          end
        end
        @ssl_context = OpenSSL::SSL::SSLContext.new
        @ssl_context.set_params(ssl_parameters)
        @ssl_context.session_cache_mode =
          OpenSSL::SSL::SSLContext::SESSION_CACHE_CLIENT |
          OpenSSL::SSL::SSLContext::SESSION_CACHE_NO_INTERNAL_STORE
        @ssl_context.session_new_cb = proc {|sock, sess| @ssl_session = sess }
        D "starting SSL for #{conn_addr}:#{conn_port}..."
        s = OpenSSL::SSL::SSLSocket.new(s, @ssl_context)
        s.sync_close = true
        # Server Name Indication (SNI) RFC 3546
        s.hostname = @address if s.respond_to? :hostname=
        if @ssl_session and
           Process.clock_gettime(Process::CLOCK_REALTIME) < @ssl_session.time.to_f + @ssl_session.timeout
          s.session = @ssl_session
        end
        ssl_socket_connect(s, @open_timeout)
        if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
          s.post_connection_check(@address)
        end
        D "SSL established, protocol: #{s.ssl_version}, cipher: #{s.cipher[0]}"
      end
      @socket = BufferedIO.new(s, read_timeout: @read_timeout,
                               write_timeout: @write_timeout,
                               continue_timeout: @continue_timeout,
                               debug_output: @debug_output)
      on_connect
    rescue => exception
      if s
        D "Conn close because of connect error #{exception}"
        s.close
      end
      raise
    end
    private :connect

    def on_connect
    end
    private :on_connect

    # Finishes the HTTP session and closes the TCP connection.
    # Raises IOError if the session has not been started.
    def finish
      raise IOError, 'HTTP session not yet started' unless started?
      do_finish
    end

    def do_finish
      @started = false
      @socket.close if @socket
      @socket = nil
    end
    private :do_finish

    #
    # proxy
    #

    public

    # no proxy
    @is_proxy_class = false
    @proxy_from_env = false
    @proxy_addr = nil
    @proxy_port = nil
    @proxy_user = nil
    @proxy_pass = nil

    # Creates an HTTP proxy class which behaves like Net::HTTP, but
    # performs all access via the specified proxy.
    #
    # This class is obsolete.  You may pass these same parameters directly to
    # Net::HTTP.new.  See Net::HTTP.new for details of the arguments.
    def HTTP.Proxy(p_addr = :ENV, p_port = nil, p_user = nil, p_pass = nil)
      return self unless p_addr

      Class.new(self) {
        @is_proxy_class = true

        if p_addr == :ENV then
          @proxy_from_env = true
          @proxy_address = nil
          @proxy_port    = nil
        else
          @proxy_from_env = false
          @proxy_address = p_addr
          @proxy_port    = p_port || default_port
        end

        @proxy_user = p_user
        @proxy_pass = p_pass
      }
    end

    class << HTTP
      # returns true if self is a class which was created by HTTP::Proxy.
      def proxy_class?
        defined?(@is_proxy_class) ? @is_proxy_class : false
      end

      # Address of proxy host. If Net::HTTP does not use a proxy, nil.
      attr_reader :proxy_address

      # Port number of proxy host. If Net::HTTP does not use a proxy, nil.
      attr_reader :proxy_port

      # User name for accessing proxy. If Net::HTTP does not use a proxy, nil.
      attr_reader :proxy_user

      # User password for accessing proxy. If Net::HTTP does not use a proxy,
      # nil.
      attr_reader :proxy_pass
    end

    # True if requests for this connection will be proxied
    def proxy?
      !!(@proxy_from_env ? proxy_uri : @proxy_address)
    end

    # True if the proxy for this connection is determined from the environment
    def proxy_from_env?
      @proxy_from_env
    end

    # The proxy URI determined from the environment for this connection.
    def proxy_uri # :nodoc:
      return if @proxy_uri == false
      @proxy_uri ||= URI::HTTP.new(
        "http".freeze, nil, address, port, nil, nil, nil, nil, nil
      ).find_proxy || false
      @proxy_uri || nil
    end

    # The address of the proxy server, if one is configured.
    def proxy_address
      if @proxy_from_env then
        proxy_uri&.hostname
      else
        @proxy_address
      end
    end

    # The port of the proxy server, if one is configured.
    def proxy_port
      if @proxy_from_env then
        proxy_uri&.port
      else
        @proxy_port
      end
    end

    # [Bug #12921]
    if /linux|freebsd|darwin/ =~ RUBY_PLATFORM
      ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE = true
    else
      ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE = false
    end

    # The username of the proxy server, if one is configured.
    def proxy_user
      if ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE && @proxy_from_env
        proxy_uri&.user
      else
        @proxy_user
      end
    end

    # The password of the proxy server, if one is configured.
    def proxy_pass
      if ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE && @proxy_from_env
        proxy_uri&.password
      else
        @proxy_pass
      end
    end

    alias proxyaddr proxy_address   #:nodoc: obsolete
    alias proxyport proxy_port      #:nodoc: obsolete

    private

    # without proxy, obsolete

    def conn_address # :nodoc:
      @ipaddr || address()
    end

    def conn_port # :nodoc:
      port()
    end

    def edit_path(path)
      if proxy?
        if path.start_with?("ftp://") || use_ssl?
          path
        else
          "http://#{addr_port}#{path}"
        end
      else
        path
      end
    end

    #
    # HTTP operations
    #

    public

    # Retrieves data from +path+ on the connected-to host which may be an
    # absolute path String or a URI to extract the path from.
    #
    # +initheader+ must be a Hash like { 'Accept' => '*/*', ... },
    # and it defaults to an empty hash.
    # If +initheader+ doesn't have the key 'accept-encoding', then
    # a value of "gzip;q=1.0,deflate;q=0.6,identity;q=0.3" is used,
    # so that gzip compression is used in preference to deflate
    # compression, which is used in preference to no compression.
    # Ruby doesn't have libraries to support the compress (Lempel-Ziv)
    # compression, so that is not supported.  The intent of this is
    # to reduce bandwidth by default.   If this routine sets up
    # compression, then it does the decompression also, removing
    # the header as well to prevent confusion.  Otherwise
    # it leaves the body as it found it.
    #
    # This method returns a Net::HTTPResponse object.
    #
    # If called with a block, yields each fragment of the
    # entity body in turn as a string as it is read from
    # the socket.  Note that in this case, the returned response
    # object will *not* contain a (meaningful) body.
    #
    # +dest+ argument is obsolete.
    # It still works but you must not use it.
    #
    # This method never raises an exception.
    #
    #     response = http.get('/index.html')
    #
    #     # using block
    #     File.open('result.txt', 'w') {|f|
    #       http.get('/~foo/') do |str|
    #         f.write str
    #       end
    #     }
    #
    def get(path, initheader = nil, dest = nil, &block) # :yield: +body_segment+
      res = nil
      request(Get.new(path, initheader)) {|r|
        r.read_body dest, &block
        res = r
      }
      res
    end

    # Gets only the header from +path+ on the connected-to host.
    # +header+ is a Hash like { 'Accept' => '*/*', ... }.
    #
    # This method returns a Net::HTTPResponse object.
    #
    # This method never raises an exception.
    #
    #     response = nil
    #     Net::HTTP.start('some.www.server', 80) {|http|
    #       response = http.head('/index.html')
    #     }
    #     p response['content-type']
    #
    def head(path, initheader = nil)
      request(Head.new(path, initheader))
    end

    # Posts +data+ (must be a String) to +path+. +header+ must be a Hash
    # like { 'Accept' => '*/*', ... }.
    #
    # This method returns a Net::HTTPResponse object.
    #
    # If called with a block, yields each fragment of the
    # entity body in turn as a string as it is read from
    # the socket.  Note that in this case, the returned response
    # object will *not* contain a (meaningful) body.
    #
    # +dest+ argument is obsolete.
    # It still works but you must not use it.
    #
    # This method never raises exception.
    #
    #     response = http.post('/cgi-bin/search.rb', 'query=foo')
    #
    #     # using block
    #     File.open('result.txt', 'w') {|f|
    #       http.post('/cgi-bin/search.rb', 'query=foo') do |str|
    #         f.write str
    #       end
    #     }
    #
    # You should set Content-Type: header field for POST.
    # If no Content-Type: field given, this method uses
    # "application/x-www-form-urlencoded" by default.
    #
    def post(path, data, initheader = nil, dest = nil, &block) # :yield: +body_segment+
      send_entity(path, data, initheader, dest, Post, &block)
    end

    # Sends a PATCH request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def patch(path, data, initheader = nil, dest = nil, &block) # :yield: +body_segment+
      send_entity(path, data, initheader, dest, Patch, &block)
    end

    def put(path, data, initheader = nil)   #:nodoc:
      request(Put.new(path, initheader), data)
    end

    # Sends a PROPPATCH request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def proppatch(path, body, initheader = nil)
      request(Proppatch.new(path, initheader), body)
    end

    # Sends a LOCK request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def lock(path, body, initheader = nil)
      request(Lock.new(path, initheader), body)
    end

    # Sends a UNLOCK request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def unlock(path, body, initheader = nil)
      request(Unlock.new(path, initheader), body)
    end

    # Sends a OPTIONS request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def options(path, initheader = nil)
      request(Options.new(path, initheader))
    end

    # Sends a PROPFIND request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def propfind(path, body = nil, initheader = {'Depth' => '0'})
      request(Propfind.new(path, initheader), body)
    end

    # Sends a DELETE request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def delete(path, initheader = {'Depth' => 'Infinity'})
      request(Delete.new(path, initheader))
    end

    # Sends a MOVE request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def move(path, initheader = nil)
      request(Move.new(path, initheader))
    end

    # Sends a COPY request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def copy(path, initheader = nil)
      request(Copy.new(path, initheader))
    end

    # Sends a MKCOL request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def mkcol(path, body = nil, initheader = nil)
      request(Mkcol.new(path, initheader), body)
    end

    # Sends a TRACE request to the +path+ and gets a response,
    # as an HTTPResponse object.
    def trace(path, initheader = nil)
      request(Trace.new(path, initheader))
    end

    # Sends a GET request to the +path+.
    # Returns the response as a Net::HTTPResponse object.
    #
    # When called with a block, passes an HTTPResponse object to the block.
    # The body of the response will not have been read yet;
    # the block can process it using HTTPResponse#read_body,
    # if desired.
    #
    # Returns the response.
    #
    # This method never raises Net::* exceptions.
    #
    #     response = http.request_get('/index.html')
    #     # The entity body is already read in this case.
    #     p response['content-type']
    #     puts response.body
    #
    #     # Using a block
    #     http.request_get('/index.html') {|response|
    #       p response['content-type']
    #       response.read_body do |str|   # read body now
    #         print str
    #       end
    #     }
    #
    def request_get(path, initheader = nil, &block) # :yield: +response+
      request(Get.new(path, initheader), &block)
    end

    # Sends a HEAD request to the +path+ and returns the response
    # as a Net::HTTPResponse object.
    #
    # Returns the response.
    #
    # This method never raises Net::* exceptions.
    #
    #     response = http.request_head('/index.html')
    #     p response['content-type']
    #
    def request_head(path, initheader = nil, &block)
      request(Head.new(path, initheader), &block)
    end

    # Sends a POST request to the +path+.
    #
    # Returns the response as a Net::HTTPResponse object.
    #
    # When called with a block, the block is passed an HTTPResponse
    # object.  The body of that response will not have been read yet;
    # the block can process it using HTTPResponse#read_body, if desired.
    #
    # Returns the response.
    #
    # This method never raises Net::* exceptions.
    #
    #     # example
    #     response = http.request_post('/cgi-bin/nice.rb', 'datadatadata...')
    #     p response.status
    #     puts response.body          # body is already read in this case
    #
    #     # using block
    #     http.request_post('/cgi-bin/nice.rb', 'datadatadata...') {|response|
    #       p response.status
    #       p response['content-type']
    #       response.read_body do |str|   # read body now
    #         print str
    #       end
    #     }
    #
    def request_post(path, data, initheader = nil, &block) # :yield: +response+
      request Post.new(path, initheader), data, &block
    end

    def request_put(path, data, initheader = nil, &block)   #:nodoc:
      request Put.new(path, initheader), data, &block
    end

    alias get2   request_get    #:nodoc: obsolete
    alias head2  request_head   #:nodoc: obsolete
    alias post2  request_post   #:nodoc: obsolete
    alias put2   request_put    #:nodoc: obsolete


    # Sends an HTTP request to the HTTP server.
    # Also sends a DATA string if +data+ is given.
    #
    # Returns a Net::HTTPResponse object.
    #
    # This method never raises Net::* exceptions.
    #
    #    response = http.send_request('GET', '/index.html')
    #    puts response.body
    #
    def send_request(name, path, data = nil, header = nil)
      has_response_body = name != 'HEAD'
      r = HTTPGenericRequest.new(name,(data ? true : false),has_response_body,path,header)
      request r, data
    end

    # Sends an HTTPRequest object +req+ to the HTTP server.
    #
    # If +req+ is a Net::HTTP::Post or Net::HTTP::Put request containing
    # data, the data is also sent. Providing data for a Net::HTTP::Head or
    # Net::HTTP::Get request results in an ArgumentError.
    #
    # Returns an HTTPResponse object.
    #
    # When called with a block, passes an HTTPResponse object to the block.
    # The body of the response will not have been read yet;
    # the block can process it using HTTPResponse#read_body,
    # if desired.
    #
    # This method never raises Net::* exceptions.
    #
    def request(req, body = nil, &block)  # :yield: +response+
      unless started?
        start {
          req['connection'] ||= 'close'
          return request(req, body, &block)
        }
      end
      if proxy_user()
        req.proxy_basic_auth proxy_user(), proxy_pass() unless use_ssl?
      end
      req.set_body_internal body
      res = transport_request(req, &block)
      if sspi_auth?(res)
        sspi_auth(req)
        res = transport_request(req, &block)
      end
      res
    end

    private

    # Executes a request which uses a representation
    # and returns its body.
    def send_entity(path, data, initheader, dest, type, &block)
      res = nil
      request(type.new(path, initheader), data) {|r|
        r.read_body dest, &block
        res = r
      }
      res
    end

    IDEMPOTENT_METHODS_ = %w/GET HEAD PUT DELETE OPTIONS TRACE/ # :nodoc:

    def transport_request(req)
      count = 0
      begin
        begin_transport req
        res = catch(:response) {
          begin
            req.exec @socket, @curr_http_version, edit_path(req.path)
          rescue Errno::EPIPE
            # Failure when writing full request, but we can probably
            # still read the received response.
          end

          begin
            res = HTTPResponse.read_new(@socket)
            res.decode_content = req.decode_content
          end while res.kind_of?(HTTPInformation)

          res.uri = req.uri

          res
        }
        res.reading_body(@socket, req.response_body_permitted?) {
          yield res if block_given?
        }
      rescue Net::OpenTimeout
        raise
      rescue Net::ReadTimeout, IOError, EOFError,
             Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE, Errno::ETIMEDOUT,
             # avoid a dependency on OpenSSL
             defined?(OpenSSL::SSL) ? OpenSSL::SSL::SSLError : IOError,
             Timeout::Error => exception
        if count < max_retries && IDEMPOTENT_METHODS_.include?(req.method)
          count += 1
          @socket.close if @socket
          D "Conn close because of error #{exception}, and retry"
          retry
        end
        D "Conn close because of error #{exception}"
        @socket.close if @socket
        raise
      end

      end_transport req, res
      res
    rescue => exception
      D "Conn close because of error #{exception}"
      @socket.close if @socket
      raise exception
    end

    def begin_transport(req)
      if @socket.closed?
        connect
      elsif @last_communicated
        if @last_communicated + @keep_alive_timeout < Process.clock_gettime(Process::CLOCK_MONOTONIC)
          D 'Conn close because of keep_alive_timeout'
          @socket.close
          connect
        elsif @socket.io.to_io.wait_readable(0) && @socket.eof?
          D "Conn close because of EOF"
          @socket.close
          connect
        end
      end

      if not req.response_body_permitted? and @close_on_empty_response
        req['connection'] ||= 'close'
      end

      req.update_uri address, port, use_ssl?
      req['host'] ||= addr_port()
    end

    def end_transport(req, res)
      @curr_http_version = res.http_version
      @last_communicated = nil
      if @socket.closed?
        D 'Conn socket closed'
      elsif not res.body and @close_on_empty_response
        D 'Conn close'
        @socket.close
      elsif keep_alive?(req, res)
        D 'Conn keep-alive'
        @last_communicated = Process.clock_gettime(Process::CLOCK_MONOTONIC)
      else
        D 'Conn close'
        @socket.close
      end
    end

    def keep_alive?(req, res)
      return false if req.connection_close?
      if @curr_http_version <= '1.0'
        res.connection_keep_alive?
      else   # HTTP/1.1 or later
        not res.connection_close?
      end
    end

    def sspi_auth?(res)
      return false unless @sspi_enabled
      if res.kind_of?(HTTPProxyAuthenticationRequired) and
          proxy? and res["Proxy-Authenticate"].include?("Negotiate")
        begin
          require 'win32/sspi'
          true
        rescue LoadError
          false
        end
      else
        false
      end
    end

    def sspi_auth(req)
      n = Win32::SSPI::NegotiateAuth.new
      req["Proxy-Authorization"] = "Negotiate #{n.get_initial_token}"
      # Some versions of ISA will close the connection if this isn't present.
      req["Connection"] = "Keep-Alive"
      req["Proxy-Connection"] = "Keep-Alive"
      res = transport_request(req)
      authphrase = res["Proxy-Authenticate"]  or return res
      req["Proxy-Authorization"] = "Negotiate #{n.complete_authentication(authphrase)}"
    rescue => err
      raise HTTPAuthenticationError.new('HTTP authentication failed', err)
    end

    #
    # utils
    #

    private

    def addr_port
      addr = address
      addr = "[#{addr}]" if addr.include?(":")
      default_port = use_ssl? ? HTTP.https_default_port : HTTP.http_default_port
      default_port == port ? addr : "#{addr}:#{port}"
    end

    def D(msg)
      return unless @debug_output
      @debug_output << msg
      @debug_output << "\n"
    end
  end

end

require_relative 'http/exceptions'

require_relative 'http/header'

require_relative 'http/generic_request'
require_relative 'http/request'
require_relative 'http/requests'

require_relative 'http/response'
require_relative 'http/responses'

require_relative 'http/proxy_delta'

require_relative 'http/backward'
PKFH[����	�	share/ruby/ripper.rbnu�[���# frozen_string_literal: true
require 'ripper/core'
require 'ripper/lexer'
require 'ripper/filter'
require 'ripper/sexp'

# Ripper is a Ruby script parser.
#
# You can get information from the parser with event-based style.
# Information such as abstract syntax trees or simple lexical analysis of the
# Ruby program.
#
# == Usage
#
# Ripper provides an easy interface for parsing your program into a symbolic
# expression tree (or S-expression).
#
# Understanding the output of the parser may come as a challenge, it's
# recommended you use PP to format the output for legibility.
#
#   require 'ripper'
#   require 'pp'
#
#   pp Ripper.sexp('def hello(world) "Hello, #{world}!"; end')
#     #=> [:program,
#          [[:def,
#            [:@ident, "hello", [1, 4]],
#            [:paren,
#             [:params, [[:@ident, "world", [1, 10]]], nil, nil, nil, nil, nil, nil]],
#            [:bodystmt,
#             [[:string_literal,
#               [:string_content,
#                [:@tstring_content, "Hello, ", [1, 18]],
#                [:string_embexpr, [[:var_ref, [:@ident, "world", [1, 27]]]]],
#                [:@tstring_content, "!", [1, 33]]]]],
#             nil,
#             nil,
#             nil]]]]
#
# You can see in the example above, the expression starts with +:program+.
#
# From here, a method definition at +:def+, followed by the method's identifier
# <code>:@ident</code>. After the method's identifier comes the parentheses
# +:paren+ and the method parameters under +:params+.
#
# Next is the method body, starting at +:bodystmt+ (+stmt+ meaning statement),
# which contains the full definition of the method.
#
# In our case, we're simply returning a String, so next we have the
# +:string_literal+ expression.
#
# Within our +:string_literal+ you'll notice two <code>@tstring_content</code>,
# this is the literal part for <code>Hello, </code> and <code>!</code>. Between
# the two <code>@tstring_content</code> statements is a +:string_embexpr+,
# where _embexpr_ is an embedded expression. Our expression consists of a local
# variable, or +var_ref+, with the identifier (<code>@ident</code>) of +world+.
#
# == Resources
#
# * {Ruby Inside}[http://www.rubyinside.com/using-ripper-to-see-how-ruby-is-parsing-your-code-5270.html]
#
# == Requirements
#
# * ruby 1.9 (support CVS HEAD only)
# * bison 1.28 or later (Other yaccs do not work)
#
# == License
#
# Ruby License.
#
# - Minero Aoki
# - aamine@loveruby.net
# - http://i.loveruby.net
class Ripper; end
PKFH[`~l֪#�#share/ruby/forwardable.rbnu�[���# frozen_string_literal: false
#
#   forwardable.rb -
#       $Release Version: 1.1$
#       $Revision$
#       by Keiju ISHITSUKA(keiju@ishitsuka.com)
#       original definition by delegator.rb
#       Revised by Daniel J. Berger with suggestions from Florian Gross.
#
#       Documentation by James Edward Gray II and Gavin Sinclair



# The Forwardable module provides delegation of specified
# methods to a designated object, using the methods #def_delegator
# and #def_delegators.
#
# For example, say you have a class RecordCollection which
# contains an array <tt>@records</tt>.  You could provide the lookup method
# #record_number(), which simply calls #[] on the <tt>@records</tt>
# array, like this:
#
#   require 'forwardable'
#
#   class RecordCollection
#     attr_accessor :records
#     extend Forwardable
#     def_delegator :@records, :[], :record_number
#   end
#
# We can use the lookup method like so:
#
#   r = RecordCollection.new
#   r.records = [4,5,6]
#   r.record_number(0)  # => 4
#
# Further, if you wish to provide the methods #size, #<<, and #map,
# all of which delegate to @records, this is how you can do it:
#
#   class RecordCollection # re-open RecordCollection class
#     def_delegators :@records, :size, :<<, :map
#   end
#
#   r = RecordCollection.new
#   r.records = [1,2,3]
#   r.record_number(0)   # => 1
#   r.size               # => 3
#   r << 4               # => [1, 2, 3, 4]
#   r.map { |x| x * 2 }  # => [2, 4, 6, 8]
#
# You can even extend regular objects with Forwardable.
#
#   my_hash = Hash.new
#   my_hash.extend Forwardable              # prepare object for delegation
#   my_hash.def_delegator "STDOUT", "puts"  # add delegation for STDOUT.puts()
#   my_hash.puts "Howdy!"
#
# == Another example
#
# You could use Forwardable as an alternative to inheritance, when you don't want
# to inherit all methods from the superclass. For instance, here is how you might
# add a range of +Array+ instance methods to a new class +Queue+:
#
#   class Queue
#     extend Forwardable
#
#     def initialize
#       @q = [ ]    # prepare delegate object
#     end
#
#     # setup preferred interface, enq() and deq()...
#     def_delegator :@q, :push, :enq
#     def_delegator :@q, :shift, :deq
#
#     # support some general Array methods that fit Queues well
#     def_delegators :@q, :clear, :first, :push, :shift, :size
#   end
#
#   q = Queue.new
#   q.enq 1, 2, 3, 4, 5
#   q.push 6
#
#   q.shift    # => 1
#   while q.size > 0
#     puts q.deq
#   end
#
#   q.enq "Ruby", "Perl", "Python"
#   puts q.first
#   q.clear
#   puts q.first
#
# This should output:
#
#   2
#   3
#   4
#   5
#   6
#   Ruby
#   nil
#
# == Notes
#
# Be advised, RDoc will not detect delegated methods.
#
# +forwardable.rb+ provides single-method delegation via the def_delegator and
# def_delegators methods. For full-class delegation via DelegateClass, see
# +delegate.rb+.
#
module Forwardable
  require 'forwardable/impl'
  require "forwardable/version"

  @debug = nil
  class << self
    # ignored
    attr_accessor :debug
  end

  # Takes a hash as its argument.  The key is a symbol or an array of
  # symbols.  These symbols correspond to method names, instance variable
  # names, or constant names (see def_delegator).  The value is
  # the accessor to which the methods will be delegated.
  #
  # :call-seq:
  #    delegate method => accessor
  #    delegate [method, method, ...] => accessor
  #
  def instance_delegate(hash)
    hash.each do |methods, accessor|
      unless defined?(methods.each)
        def_instance_delegator(accessor, methods)
      else
        methods.each {|method| def_instance_delegator(accessor, method)}
      end
    end
  end

  #
  # Shortcut for defining multiple delegator methods, but with no
  # provision for using a different name.  The following two code
  # samples have the same effect:
  #
  #   def_delegators :@records, :size, :<<, :map
  #
  #   def_delegator :@records, :size
  #   def_delegator :@records, :<<
  #   def_delegator :@records, :map
  #
  def def_instance_delegators(accessor, *methods)
    methods.each do |method|
      next if /\A__(?:send|id)__\z/ =~ method
      def_instance_delegator(accessor, method)
    end
  end

  # Define +method+ as delegator instance method with an optional
  # alias name +ali+. Method calls to +ali+ will be delegated to
  # +accessor.method+.  +accessor+ should be a method name, instance
  # variable name, or constant name.  Use the full path to the
  # constant if providing the constant name.
  # Returns the name of the method defined.
  #
  #   class MyQueue
  #     CONST = 1
  #     extend Forwardable
  #     attr_reader :queue
  #     def initialize
  #       @queue = []
  #     end
  #
  #     def_delegator :@queue, :push, :mypush
  #     def_delegator 'MyQueue::CONST', :to_i
  #   end
  #
  #   q = MyQueue.new
  #   q.mypush 42
  #   q.queue    #=> [42]
  #   q.push 23  #=> NoMethodError
  #   q.to_i     #=> 1
  #
  def def_instance_delegator(accessor, method, ali = method)
    gen = Forwardable._delegator_method(self, accessor, method, ali)

    # If it's not a class or module, it's an instance
    mod = Module === self ? self : singleton_class
    ret = mod.module_eval(&gen)
    mod.send(:ruby2_keywords, ali) if RUBY_VERSION >= '2.7'
    ret
  end

  alias delegate instance_delegate
  alias def_delegators def_instance_delegators
  alias def_delegator def_instance_delegator

  # :nodoc:
  def self._delegator_method(obj, accessor, method, ali)
    accessor = accessor.to_s unless Symbol === accessor

    if Module === obj ?
         obj.method_defined?(accessor) || obj.private_method_defined?(accessor) :
         obj.respond_to?(accessor, true)
      accessor = "#{accessor}()"
    end

    method_call = ".__send__(:#{method}, *args, &block)"
    if _valid_method?(method)
      loc, = caller_locations(2,1)
      pre = "_ ="
      mesg = "#{Module === obj ? obj : obj.class}\##{ali} at #{loc.path}:#{loc.lineno} forwarding to private method "
      method_call = "#{<<-"begin;"}\n#{<<-"end;".chomp}"
        begin;
          unless defined? _.#{method}
            ::Kernel.warn #{mesg.dump}"\#{_.class}"'##{method}', uplevel: 1
            _#{method_call}
          else
            _.#{method}(*args, &block)
          end
        end;
    end

    _compile_method("#{<<-"begin;"}\n#{<<-"end;"}", __FILE__, __LINE__+1)
    begin;
      proc do
        def #{ali}(*args, &block)
          #{pre}
          begin
            #{accessor}
          end#{method_call}
        end
      end
    end;
  end
end

# SingleForwardable can be used to setup delegation at the object level as well.
#
#    printer = String.new
#    printer.extend SingleForwardable        # prepare object for delegation
#    printer.def_delegator "STDOUT", "puts"  # add delegation for STDOUT.puts()
#    printer.puts "Howdy!"
#
# Also, SingleForwardable can be used to set up delegation for a Class or Module.
#
#   class Implementation
#     def self.service
#       puts "serviced!"
#     end
#   end
#
#   module Facade
#     extend SingleForwardable
#     def_delegator :Implementation, :service
#   end
#
#   Facade.service #=> serviced!
#
# If you want to use both Forwardable and SingleForwardable, you can
# use methods def_instance_delegator and def_single_delegator, etc.
module SingleForwardable
  # Takes a hash as its argument.  The key is a symbol or an array of
  # symbols.  These symbols correspond to method names.  The value is
  # the accessor to which the methods will be delegated.
  #
  # :call-seq:
  #    delegate method => accessor
  #    delegate [method, method, ...] => accessor
  #
  def single_delegate(hash)
    hash.each do |methods, accessor|
      unless defined?(methods.each)
        def_single_delegator(accessor, methods)
      else
        methods.each {|method| def_single_delegator(accessor, method)}
      end
    end
  end

  #
  # Shortcut for defining multiple delegator methods, but with no
  # provision for using a different name.  The following two code
  # samples have the same effect:
  #
  #   def_delegators :@records, :size, :<<, :map
  #
  #   def_delegator :@records, :size
  #   def_delegator :@records, :<<
  #   def_delegator :@records, :map
  #
  def def_single_delegators(accessor, *methods)
    methods.each do |method|
      next if /\A__(?:send|id)__\z/ =~ method
      def_single_delegator(accessor, method)
    end
  end

  # :call-seq:
  #   def_single_delegator(accessor, method, new_name=method)
  #
  # Defines a method _method_ which delegates to _accessor_ (i.e. it calls
  # the method of the same name in _accessor_).  If _new_name_ is
  # provided, it is used as the name for the delegate method.
  # Returns the name of the method defined.
  def def_single_delegator(accessor, method, ali = method)
    gen = Forwardable._delegator_method(self, accessor, method, ali)

    ret = instance_eval(&gen)
    singleton_class.send(:ruby2_keywords, ali) if RUBY_VERSION >= '2.7'
    ret
  end

  alias delegate single_delegate
  alias def_delegators def_single_delegators
  alias def_delegator def_single_delegator
end
PKFH[n�Y~�'�'share/ruby/un.rbnu�[���# frozen_string_literal: false
#
# = un.rb
#
# Copyright (c) 2003 WATANABE Hirofumi <eban@ruby-lang.org>
#
# This program is free software.
# You can distribute/modify this program under the same terms of Ruby.
#
# == Utilities to replace common UNIX commands in Makefiles etc
#
# == SYNOPSIS
#
#   ruby -run -e cp -- [OPTION] SOURCE DEST
#   ruby -run -e ln -- [OPTION] TARGET LINK_NAME
#   ruby -run -e mv -- [OPTION] SOURCE DEST
#   ruby -run -e rm -- [OPTION] FILE
#   ruby -run -e mkdir -- [OPTION] DIRS
#   ruby -run -e rmdir -- [OPTION] DIRS
#   ruby -run -e install -- [OPTION] SOURCE DEST
#   ruby -run -e chmod -- [OPTION] OCTAL-MODE FILE
#   ruby -run -e touch -- [OPTION] FILE
#   ruby -run -e wait_writable -- [OPTION] FILE
#   ruby -run -e mkmf -- [OPTION] EXTNAME [OPTION]
#   ruby -run -e httpd -- [OPTION] DocumentRoot
#   ruby -run -e help [COMMAND]

require "fileutils"
require "optparse"

module FileUtils
#  @fileutils_label = ""
  @fileutils_output = $stdout
end

# :nodoc:
def setup(options = "", *long_options)
  caller = caller_locations(1, 1)[0].label
  opt_hash = {}
  argv = []
  OptionParser.new do |o|
    options.scan(/.:?/) do |s|
      opt_name = s.delete(":").intern
      o.on("-" + s.tr(":", " ")) do |val|
        opt_hash[opt_name] = val
      end
    end
    long_options.each do |s|
      opt_name, arg_name = s.split(/(?=[\s=])/, 2)
      opt_name.delete_prefix!('--')
      s = "--#{opt_name.gsub(/([A-Z]+|[a-z])([A-Z])/, '\1-\2').downcase}#{arg_name}"
      puts "#{opt_name}=>#{s}" if $DEBUG
      opt_name = opt_name.intern
      o.on(s) do |val|
        opt_hash[opt_name] = val
      end
    end
    o.on("-v") do opt_hash[:verbose] = true end
    o.on("--help") do
      UN.help([caller])
      exit
    end
    o.order!(ARGV) do |x|
      if /[*?\[{]/ =~ x
        argv.concat(Dir[x])
      else
        argv << x
      end
    end
  end
  yield argv, opt_hash
end

##
# Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY
#
#   ruby -run -e cp -- [OPTION] SOURCE DEST
#
#   -p          preserve file attributes if possible
#   -r          copy recursively
#   -v          verbose
#

def cp
  setup("pr") do |argv, options|
    cmd = "cp"
    cmd += "_r" if options.delete :r
    options[:preserve] = true if options.delete :p
    dest = argv.pop
    argv = argv[0] if argv.size == 1
    FileUtils.send cmd, argv, dest, **options
  end
end

##
# Create a link to the specified TARGET with LINK_NAME.
#
#   ruby -run -e ln -- [OPTION] TARGET LINK_NAME
#
#   -s          make symbolic links instead of hard links
#   -f          remove existing destination files
#   -v          verbose
#

def ln
  setup("sf") do |argv, options|
    cmd = "ln"
    cmd += "_s" if options.delete :s
    options[:force] = true if options.delete :f
    dest = argv.pop
    argv = argv[0] if argv.size == 1
    FileUtils.send cmd, argv, dest, **options
  end
end

##
# Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
#
#   ruby -run -e mv -- [OPTION] SOURCE DEST
#
#   -v          verbose
#

def mv
  setup do |argv, options|
    dest = argv.pop
    argv = argv[0] if argv.size == 1
    FileUtils.mv argv, dest, **options
  end
end

##
# Remove the FILE
#
#   ruby -run -e rm -- [OPTION] FILE
#
#   -f          ignore nonexistent files
#   -r          remove the contents of directories recursively
#   -v          verbose
#

def rm
  setup("fr") do |argv, options|
    cmd = "rm"
    cmd += "_r" if options.delete :r
    options[:force] = true if options.delete :f
    FileUtils.send cmd, argv, **options
  end
end

##
# Create the DIR, if they do not already exist.
#
#   ruby -run -e mkdir -- [OPTION] DIR
#
#   -p          no error if existing, make parent directories as needed
#   -v          verbose
#

def mkdir
  setup("p") do |argv, options|
    cmd = "mkdir"
    cmd += "_p" if options.delete :p
    FileUtils.send cmd, argv, **options
  end
end

##
# Remove the DIR.
#
#   ruby -run -e rmdir -- [OPTION] DIR
#
#   -p          remove DIRECTORY and its ancestors.
#   -v          verbose
#

def rmdir
  setup("p") do |argv, options|
    options[:parents] = true if options.delete :p
    FileUtils.rmdir argv, **options
  end
end

##
# Copy SOURCE to DEST.
#
#   ruby -run -e install -- [OPTION] SOURCE DEST
#
#   -p          apply access/modification times of SOURCE files to
#               corresponding destination files
#   -m          set permission mode (as in chmod), instead of 0755
#   -o          set owner user id, instead of the current owner
#   -g          set owner group id, instead of the current group
#   -v          verbose
#

def install
  setup("pm:o:g:") do |argv, options|
    (mode = options.delete :m) and options[:mode] = /\A\d/ =~ mode ? mode.oct : mode
    options[:preserve] = true if options.delete :p
    (owner = options.delete :o) and options[:owner] = owner
    (group = options.delete :g) and options[:group] = group
    dest = argv.pop
    argv = argv[0] if argv.size == 1
    FileUtils.install argv, dest, **options
  end
end

##
# Change the mode of each FILE to OCTAL-MODE.
#
#   ruby -run -e chmod -- [OPTION] OCTAL-MODE FILE
#
#   -v          verbose
#

def chmod
  setup do |argv, options|
    mode = argv.shift
    mode = /\A\d/ =~ mode ? mode.oct : mode
    FileUtils.chmod mode, argv, **options
  end
end

##
# Update the access and modification times of each FILE to the current time.
#
#   ruby -run -e touch -- [OPTION] FILE
#
#   -v          verbose
#

def touch
  setup do |argv, options|
    FileUtils.touch argv, **options
  end
end

##
# Wait until the file becomes writable.
#
#   ruby -run -e wait_writable -- [OPTION] FILE
#
#   -n RETRY    count to retry
#   -w SEC      each wait time in seconds
#   -v          verbose
#

def wait_writable
  setup("n:w:v") do |argv, options|
    verbose = options[:verbose]
    n = options[:n] and n = Integer(n)
    wait = (wait = options[:w]) ? Float(wait) : 0.2
    argv.each do |file|
      begin
        open(file, "r+b")
      rescue Errno::ENOENT
        break
      rescue Errno::EACCES => e
        raise if n and (n -= 1) <= 0
        if verbose
          puts e
          STDOUT.flush
        end
        sleep wait
        retry
      end
    end
  end
end

##
# Create makefile using mkmf.
#
#   ruby -run -e mkmf -- [OPTION] EXTNAME [OPTION]
#
#   -d ARGS     run dir_config
#   -h ARGS     run have_header
#   -l ARGS     run have_library
#   -f ARGS     run have_func
#   -v ARGS     run have_var
#   -t ARGS     run have_type
#   -m ARGS     run have_macro
#   -c ARGS     run have_const
#   --vendor    install to vendor_ruby
#

def mkmf
  setup("d:h:l:f:v:t:m:c:", "vendor") do |argv, options|
    require 'mkmf'
    opt = options[:d] and opt.split(/:/).each {|n| dir_config(*n.split(/,/))}
    opt = options[:h] and opt.split(/:/).each {|n| have_header(*n.split(/,/))}
    opt = options[:l] and opt.split(/:/).each {|n| have_library(*n.split(/,/))}
    opt = options[:f] and opt.split(/:/).each {|n| have_func(*n.split(/,/))}
    opt = options[:v] and opt.split(/:/).each {|n| have_var(*n.split(/,/))}
    opt = options[:t] and opt.split(/:/).each {|n| have_type(*n.split(/,/))}
    opt = options[:m] and opt.split(/:/).each {|n| have_macro(*n.split(/,/))}
    opt = options[:c] and opt.split(/:/).each {|n| have_const(*n.split(/,/))}
    $configure_args["--vendor"] = true if options[:vendor]
    create_makefile(*argv)
  end
end

##
# Run WEBrick HTTP server.
#
#   ruby -run -e httpd -- [OPTION] DocumentRoot
#
#   --bind-address=ADDR         address to bind
#   --port=NUM                  listening port number
#   --max-clients=MAX           max number of simultaneous clients
#   --temp-dir=DIR              temporary directory
#   --do-not-reverse-lookup     disable reverse lookup
#   --request-timeout=SECOND    request timeout in seconds
#   --http-version=VERSION      HTTP version
#   --server-name=NAME          name of the server host
#   --server-software=NAME      name and version of the server
#   --ssl-certificate=CERT      The SSL certificate file for the server
#   --ssl-private-key=KEY       The SSL private key file for the server certificate
#   -v                          verbose
#

def httpd
  setup("", "BindAddress=ADDR", "Port=PORT", "MaxClients=NUM", "TempDir=DIR",
        "DoNotReverseLookup", "RequestTimeout=SECOND", "HTTPVersion=VERSION",
        "ServerName=NAME", "ServerSoftware=NAME",
        "SSLCertificate=CERT", "SSLPrivateKey=KEY") do
    |argv, options|
    require 'webrick'
    opt = options[:RequestTimeout] and options[:RequestTimeout] = opt.to_i
    [:Port, :MaxClients].each do |name|
      opt = options[name] and (options[name] = Integer(opt)) rescue nil
    end
    if cert = options[:SSLCertificate]
      key = options[:SSLPrivateKey] or
        raise "--ssl-private-key option must also be given"
      require 'webrick/https'
      options[:SSLEnable] = true
      options[:SSLCertificate] = OpenSSL::X509::Certificate.new(File.read(cert))
      options[:SSLPrivateKey] = OpenSSL::PKey.read(File.read(key))
      options[:Port] ||= 8443   # HTTPS Alternate
    end
    options[:Port] ||= 8080     # HTTP Alternate
    options[:DocumentRoot] = argv.shift || '.'
    s = WEBrick::HTTPServer.new(options)
    shut = proc {s.shutdown}
    siglist = %w"TERM QUIT"
    siglist.concat(%w"HUP INT") if STDIN.tty?
    siglist &= Signal.list.keys
    siglist.each do |sig|
      Signal.trap(sig, shut)
    end
    s.start
  end
end

##
# Display help message.
#
#   ruby -run -e help [COMMAND]
#

def help
  setup do |argv,|
    UN.help(argv)
  end
end

module UN # :nodoc:
  module_function
  def help(argv, output: $stdout)
    all = argv.empty?
    cmd = nil
    if all
      store = proc {|msg| output << msg}
    else
      messages = {}
      store = proc {|msg| messages[cmd] = msg}
    end
    open(__FILE__) do |me|
      while me.gets("##\n")
        if help = me.gets("\n\n")
          if all or argv.include?(cmd = help[/^#\s*ruby\s.*-e\s+(\w+)/, 1])
            store[help.gsub(/^# ?/, "")]
            break unless all or argv.size > messages.size
          end
        end
      end
    end
    if messages
      argv.each {|arg| output << messages[arg]}
    end
  end
end
PKFH[��3
3
share/ruby/base64.rbnu�[���# frozen_string_literal: true
#
# = base64.rb: methods for base64-encoding and -decoding strings
#

# The Base64 module provides for the encoding (#encode64, #strict_encode64,
# #urlsafe_encode64) and decoding (#decode64, #strict_decode64,
# #urlsafe_decode64) of binary data using a Base64 representation.
#
# == Example
#
# A simple encoding and decoding.
#
#     require "base64"
#
#     enc   = Base64.encode64('Send reinforcements')
#                         # -> "U2VuZCByZWluZm9yY2VtZW50cw==\n"
#     plain = Base64.decode64(enc)
#                         # -> "Send reinforcements"
#
# The purpose of using base64 to encode data is that it translates any
# binary data into purely printable characters.

module Base64
  module_function

  # Returns the Base64-encoded version of +bin+.
  # This method complies with RFC 2045.
  # Line feeds are added to every 60 encoded characters.
  #
  #    require 'base64'
  #    Base64.encode64("Now is the time for all good coders\nto learn Ruby")
  #
  # <i>Generates:</i>
  #
  #    Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4g
  #    UnVieQ==
  def encode64(bin)
    [bin].pack("m")
  end

  # Returns the Base64-decoded version of +str+.
  # This method complies with RFC 2045.
  # Characters outside the base alphabet are ignored.
  #
  #   require 'base64'
  #   str = 'VGhpcyBpcyBsaW5lIG9uZQpUaGlzIG' +
  #         'lzIGxpbmUgdHdvClRoaXMgaXMgbGlu' +
  #         'ZSB0aHJlZQpBbmQgc28gb24uLi4K'
  #   puts Base64.decode64(str)
  #
  # <i>Generates:</i>
  #
  #    This is line one
  #    This is line two
  #    This is line three
  #    And so on...
  def decode64(str)
    str.unpack1("m")
  end

  # Returns the Base64-encoded version of +bin+.
  # This method complies with RFC 4648.
  # No line feeds are added.
  def strict_encode64(bin)
    [bin].pack("m0")
  end

  # Returns the Base64-decoded version of +str+.
  # This method complies with RFC 4648.
  # ArgumentError is raised if +str+ is incorrectly padded or contains
  # non-alphabet characters.  Note that CR or LF are also rejected.
  def strict_decode64(str)
    str.unpack1("m0")
  end

  # Returns the Base64-encoded version of +bin+.
  # This method complies with ``Base 64 Encoding with URL and Filename Safe
  # Alphabet'' in RFC 4648.
  # The alphabet uses '-' instead of '+' and '_' instead of '/'.
  # Note that the result can still contain '='.
  # You can remove the padding by setting +padding+ as false.
  def urlsafe_encode64(bin, padding: true)
    str = strict_encode64(bin)
    str.tr!("+/", "-_")
    str.delete!("=") unless padding
    str
  end

  # Returns the Base64-decoded version of +str+.
  # This method complies with ``Base 64 Encoding with URL and Filename Safe
  # Alphabet'' in RFC 4648.
  # The alphabet uses '-' instead of '+' and '_' instead of '/'.
  #
  # The padding character is optional.
  # This method accepts both correctly-padded and unpadded input.
  # Note that it still rejects incorrectly-padded input.
  def urlsafe_decode64(str)
    # NOTE: RFC 4648 does say nothing about unpadded input, but says that
    # "the excess pad characters MAY also be ignored", so it is inferred that
    # unpadded input is also acceptable.
    str = str.tr("-_", "+/")
    if !str.end_with?("=") && str.length % 4 != 0
      str = str.ljust((str.length + 3) & ~3, "=")
    end
    strict_decode64(str)
  end
end
PKFH[f����3�3share/ruby/reline.rbnu�[���require 'io/console'
require 'timeout'
require 'forwardable'
require 'reline/version'
require 'reline/config'
require 'reline/key_actor'
require 'reline/key_stroke'
require 'reline/line_editor'
require 'reline/history'
require 'rbconfig'

module Reline
  FILENAME_COMPLETION_PROC = nil
  USERNAME_COMPLETION_PROC = nil

  Key = Struct.new('Key', :char, :combined_char, :with_meta)
  CursorPos = Struct.new(:x, :y)

  class Core
    ATTR_READER_NAMES = %i(
      completion_append_character
      basic_word_break_characters
      completer_word_break_characters
      basic_quote_characters
      completer_quote_characters
      filename_quote_characters
      special_prefixes
      completion_proc
      output_modifier_proc
      prompt_proc
      auto_indent_proc
      pre_input_hook
      dig_perfect_match_proc
    ).each(&method(:attr_reader))

    attr_accessor :config
    attr_accessor :key_stroke
    attr_accessor :line_editor
    attr_accessor :ambiguous_width
    attr_accessor :last_incremental_search
    attr_reader :output

    def initialize
      self.output = STDOUT
      yield self
      @completion_quote_character = nil
    end

    def encoding
      Reline::IOGate.encoding
    end

    def completion_append_character=(val)
      if val.nil?
        @completion_append_character = nil
      elsif val.size == 1
        @completion_append_character = val.encode(Reline::IOGate.encoding)
      elsif val.size > 1
        @completion_append_character = val[0].encode(Reline::IOGate.encoding)
      else
        @completion_append_character = nil
      end
    end

    def basic_word_break_characters=(v)
      @basic_word_break_characters = v.encode(Reline::IOGate.encoding)
    end

    def completer_word_break_characters=(v)
      @completer_word_break_characters = v.encode(Reline::IOGate.encoding)
    end

    def basic_quote_characters=(v)
      @basic_quote_characters = v.encode(Reline::IOGate.encoding)
    end

    def completer_quote_characters=(v)
      @completer_quote_characters = v.encode(Reline::IOGate.encoding)
    end

    def filename_quote_characters=(v)
      @filename_quote_characters = v.encode(Reline::IOGate.encoding)
    end

    def special_prefixes=(v)
      @special_prefixes = v.encode(Reline::IOGate.encoding)
    end

    def completion_case_fold=(v)
      @config.completion_ignore_case = v
    end

    def completion_case_fold
      @config.completion_ignore_case
    end

    def completion_quote_character
      @completion_quote_character
    end

    def completion_proc=(p)
      raise ArgumentError unless p.respond_to?(:call) or p.nil?
      @completion_proc = p
    end

    def output_modifier_proc=(p)
      raise ArgumentError unless p.respond_to?(:call) or p.nil?
      @output_modifier_proc = p
    end

    def prompt_proc=(p)
      raise ArgumentError unless p.respond_to?(:call) or p.nil?
      @prompt_proc = p
    end

    def auto_indent_proc=(p)
      raise ArgumentError unless p.respond_to?(:call) or p.nil?
      @auto_indent_proc = p
    end

    def pre_input_hook=(p)
      @pre_input_hook = p
    end

    def dig_perfect_match_proc=(p)
      raise ArgumentError unless p.respond_to?(:call) or p.nil?
      @dig_perfect_match_proc = p
    end

    def input=(val)
      raise TypeError unless val.respond_to?(:getc) or val.nil?
      if val.respond_to?(:getc)
        if defined?(Reline::ANSI) and Reline::IOGate == Reline::ANSI
          Reline::ANSI.input = val
        elsif Reline::IOGate == Reline::GeneralIO
          Reline::GeneralIO.input = val
        end
      end
    end

    def output=(val)
      raise TypeError unless val.respond_to?(:write) or val.nil?
      @output = val
      if defined?(Reline::ANSI) and Reline::IOGate == Reline::ANSI
        Reline::ANSI.output = val
      end
    end

    def vi_editing_mode
      config.editing_mode = :vi_insert
      nil
    end

    def emacs_editing_mode
      config.editing_mode = :emacs
      nil
    end

    def vi_editing_mode?
      config.editing_mode_is?(:vi_insert, :vi_command)
    end

    def emacs_editing_mode?
      config.editing_mode_is?(:emacs)
    end

    def get_screen_size
      Reline::IOGate.get_screen_size
    end

    def readmultiline(prompt = '', add_hist = false, &confirm_multiline_termination)
      unless confirm_multiline_termination
        raise ArgumentError.new('#readmultiline needs block to confirm multiline termination')
      end
      inner_readline(prompt, add_hist, true, &confirm_multiline_termination)

      whole_buffer = line_editor.whole_buffer.dup
      whole_buffer.taint if RUBY_VERSION < '2.7'
      if add_hist and whole_buffer and whole_buffer.chomp("\n").size > 0
        Reline::HISTORY << whole_buffer
      end

      line_editor.reset_line if line_editor.whole_buffer.nil?
      whole_buffer
    end

    def readline(prompt = '', add_hist = false)
      inner_readline(prompt, add_hist, false)

      line = line_editor.line.dup
      line.taint if RUBY_VERSION < '2.7'
      if add_hist and line and line.chomp("\n").size > 0
        Reline::HISTORY << line.chomp("\n")
      end

      line_editor.reset_line if line_editor.line.nil?
      line
    end

    private def inner_readline(prompt, add_hist, multiline, &confirm_multiline_termination)
      if ENV['RELINE_STDERR_TTY']
        $stderr.reopen(ENV['RELINE_STDERR_TTY'], 'w')
        $stderr.sync = true
        $stderr.puts "Reline is used by #{Process.pid}"
      end
      otio = Reline::IOGate.prep

      may_req_ambiguous_char_width
      line_editor.reset(prompt, encoding: Reline::IOGate.encoding)
      if multiline
        line_editor.multiline_on
        if block_given?
          line_editor.confirm_multiline_termination_proc = confirm_multiline_termination
        end
      else
        line_editor.multiline_off
      end
      line_editor.output = output
      line_editor.completion_proc = completion_proc
      line_editor.completion_append_character = completion_append_character
      line_editor.output_modifier_proc = output_modifier_proc
      line_editor.prompt_proc = prompt_proc
      line_editor.auto_indent_proc = auto_indent_proc
      line_editor.dig_perfect_match_proc = dig_perfect_match_proc
      line_editor.pre_input_hook = pre_input_hook

      unless config.test_mode
        config.read
        config.reset_default_key_bindings
        Reline::IOGate::RAW_KEYSTROKE_CONFIG.each_pair do |key, func|
          config.add_default_key_binding(key, func)
        end
      end

      line_editor.rerender

      begin
        loop do
          read_io(config.keyseq_timeout) { |inputs|
            inputs.each { |c|
              line_editor.input_key(c)
              line_editor.rerender
            }
          }
          break if line_editor.finished?
        end
        Reline::IOGate.move_cursor_column(0)
      rescue Errno::EIO
        # Maybe the I/O has been closed.
      rescue StandardError => e
        line_editor.finalize
        Reline::IOGate.deprep(otio)
        raise e
      end

      line_editor.finalize
      Reline::IOGate.deprep(otio)
    end

    # Keystrokes of GNU Readline will timeout it with the specification of
    # "keyseq-timeout" when waiting for the 2nd character after the 1st one.
    # If the 2nd character comes after 1st ESC without timeout it has a
    # meta-property of meta-key to discriminate modified key with meta-key
    # from multibyte characters that come with 8th bit on.
    #
    # GNU Readline will wait for the 2nd character with "keyseq-timeout"
    # milli-seconds but wait forever after 3rd characters.
    private def read_io(keyseq_timeout, &block)
      buffer = []
      loop do
        c = Reline::IOGate.getc
        buffer << c
        result = key_stroke.match_status(buffer)
        case result
        when :matched
          expanded = key_stroke.expand(buffer).map{ |expanded_c|
            Reline::Key.new(expanded_c, expanded_c, false)
          }
          block.(expanded)
          break
        when :matching
          if buffer.size == 1
            begin
              succ_c = nil
              Timeout.timeout(keyseq_timeout / 1000.0) {
                succ_c = Reline::IOGate.getc
              }
            rescue Timeout::Error # cancel matching only when first byte
              block.([Reline::Key.new(c, c, false)])
              break
            else
              if key_stroke.match_status(buffer.dup.push(succ_c)) == :unmatched
                if c == "\e".ord
                  block.([Reline::Key.new(succ_c, succ_c | 0b10000000, true)])
                else
                  block.([Reline::Key.new(c, c, false), Reline::Key.new(succ_c, succ_c, false)])
                end
                break
              else
                Reline::IOGate.ungetc(succ_c)
              end
            end
          end
        when :unmatched
          if buffer.size == 1 and c == "\e".ord
            read_escaped_key(keyseq_timeout, c, block)
          else
            expanded = buffer.map{ |expanded_c|
              Reline::Key.new(expanded_c, expanded_c, false)
            }
            block.(expanded)
          end
          break
        end
      end
    end

    private def read_escaped_key(keyseq_timeout, c, block)
      begin
        escaped_c = nil
        Timeout.timeout(keyseq_timeout / 1000.0) {
          escaped_c = Reline::IOGate.getc
        }
      rescue Timeout::Error # independent ESC
        block.([Reline::Key.new(c, c, false)])
      else
        if escaped_c.nil?
          block.([Reline::Key.new(c, c, false)])
        elsif escaped_c >= 128 # maybe, first byte of multi byte
          block.([Reline::Key.new(c, c, false), Reline::Key.new(escaped_c, escaped_c, false)])
        elsif escaped_c == "\e".ord # escape twice
          block.([Reline::Key.new(c, c, false), Reline::Key.new(c, c, false)])
        else
          block.([Reline::Key.new(escaped_c, escaped_c | 0b10000000, true)])
        end
      end
    end

    private def may_req_ambiguous_char_width
      @ambiguous_width = 2 if Reline::IOGate == Reline::GeneralIO or STDOUT.is_a?(File)
      return if ambiguous_width
      Reline::IOGate.move_cursor_column(0)
      begin
        output.write "\u{25bd}"
      rescue Encoding::UndefinedConversionError
        # LANG=C
        @ambiguous_width = 1
      else
        @ambiguous_width = Reline::IOGate.cursor_pos.x
      end
      Reline::IOGate.move_cursor_column(0)
      Reline::IOGate.erase_after_cursor
    end
  end

  extend Forwardable
  extend SingleForwardable

  #--------------------------------------------------------
  # Documented API
  #--------------------------------------------------------

  (Core::ATTR_READER_NAMES).each { |name|
    def_single_delegators :core, "#{name}", "#{name}="
  }
  def_single_delegators :core, :input=, :output=
  def_single_delegators :core, :vi_editing_mode, :emacs_editing_mode
  def_single_delegators :core, :readline
  def_single_delegators :core, :completion_case_fold, :completion_case_fold=
  def_single_delegators :core, :completion_quote_character
  def_instance_delegators self, :readline
  private :readline


  #--------------------------------------------------------
  # Undocumented API
  #--------------------------------------------------------

  # Testable in original
  def_single_delegators :core, :get_screen_size
  def_single_delegators :line_editor, :eof?
  def_instance_delegators self, :eof?
  def_single_delegators :line_editor, :delete_text
  def_single_delegator :line_editor, :line, :line_buffer
  def_single_delegator :line_editor, :byte_pointer, :point
  def_single_delegator :line_editor, :byte_pointer=, :point=

  def self.insert_text(*args, &block)
    line_editor.insert_text(*args, &block)
    self
  end

  # Untestable in original
  def_single_delegator :line_editor, :rerender, :redisplay
  def_single_delegators :core, :vi_editing_mode?, :emacs_editing_mode?
  def_single_delegators :core, :ambiguous_width
  def_single_delegators :core, :last_incremental_search
  def_single_delegators :core, :last_incremental_search=

  def_single_delegators :core, :readmultiline
  def_instance_delegators self, :readmultiline
  private :readmultiline

  def self.encoding_system_needs
    self.core.encoding
  end

  def self.core
    @core ||= Core.new { |core|
      core.config = Reline::Config.new
      core.key_stroke = Reline::KeyStroke.new(core.config)
      core.line_editor = Reline::LineEditor.new(core.config, Reline::IOGate.encoding)

      core.basic_word_break_characters = " \t\n`><=;|&{("
      core.completer_word_break_characters = " \t\n`><=;|&{("
      core.basic_quote_characters = '"\''
      core.completer_quote_characters = '"\''
      core.filename_quote_characters = ""
      core.special_prefixes = ""
    }
  end

  def self.line_editor
    core.line_editor
  end
end

if RbConfig::CONFIG['host_os'] =~ /mswin|msys|mingw|cygwin|bccwin|wince|emc/
  require 'reline/windows'
  if Reline::Windows.msys_tty?
    require 'reline/ansi'
    Reline::IOGate = Reline::ANSI
  else
    Reline::IOGate = Reline::Windows
  end
else
  require 'reline/ansi'
  Reline::IOGate = Reline::ANSI
end
Reline::HISTORY = Reline::History.new(Reline.core.config)
require 'reline/general_io'
PKFH[�+��share/ruby/drb/gw.rbnu�[���# frozen_string_literal: false
require_relative 'drb'
require 'monitor'

module DRb

  # Gateway id conversion forms a gateway between different DRb protocols or
  # networks.
  #
  # The gateway needs to install this id conversion and create servers for
  # each of the protocols or networks it will be a gateway between.  It then
  # needs to create a server that attaches to each of these networks.  For
  # example:
  #
  #   require 'drb/drb'
  #   require 'drb/unix'
  #   require 'drb/gw'
  #
  #   DRb.install_id_conv DRb::GWIdConv.new
  #   gw = DRb::GW.new
  #   s1 = DRb::DRbServer.new 'drbunix:/path/to/gateway', gw
  #   s2 = DRb::DRbServer.new 'druby://example:10000', gw
  #
  #   s1.thread.join
  #   s2.thread.join
  #
  # Each client must register services with the gateway, for example:
  #
  #   DRb.start_service 'drbunix:', nil # an anonymous server
  #   gw = DRbObject.new nil, 'drbunix:/path/to/gateway'
  #   gw[:unix] = some_service
  #   DRb.thread.join

  class GWIdConv < DRbIdConv
    def to_obj(ref) # :nodoc:
      if Array === ref && ref[0] == :DRbObject
        return DRbObject.new_with(ref[1], ref[2])
      end
      super(ref)
    end
  end

  # The GW provides a synchronized store for participants in the gateway to
  # communicate.

  class GW
    include MonitorMixin

    # Creates a new GW

    def initialize
      super()
      @hash = {}
    end

    # Retrieves +key+ from the GW

    def [](key)
      synchronize do
        @hash[key]
      end
    end

    # Stores value +v+ at +key+ in the GW

    def []=(key, v)
      synchronize do
        @hash[key] = v
      end
    end
  end

  class DRbObject # :nodoc:
    def self._load(s)
      uri, ref = Marshal.load(s)
      if DRb.uri == uri
        return ref ? DRb.to_obj(ref) : DRb.front
      end

      self.new_with(DRb.uri, [:DRbObject, uri, ref])
    end

    def _dump(lv)
      if DRb.uri == @uri
        if Array === @ref && @ref[0] == :DRbObject
          Marshal.dump([@ref[1], @ref[2]])
        else
          Marshal.dump([@uri, @ref]) # ??
        end
      else
        Marshal.dump([DRb.uri, [:DRbObject, @uri, @ref]])
      end
    end
  end
end

=begin
DRb.install_id_conv(DRb::GWIdConv.new)

front = DRb::GW.new

s1 = DRb::DRbServer.new('drbunix:/tmp/gw_b_a', front)
s2 = DRb::DRbServer.new('drbunix:/tmp/gw_b_c', front)

s1.thread.join
s2.thread.join
=end

=begin
# foo.rb

require 'drb/drb'

class Foo
  include DRbUndumped
  def initialize(name, peer=nil)
    @name = name
    @peer = peer
  end

  def ping(obj)
    puts "#{@name}: ping: #{obj.inspect}"
    @peer.ping(self) if @peer
  end
end
=end

=begin
# gw_a.rb
require 'drb/unix'
require 'foo'

obj = Foo.new('a')
DRb.start_service("drbunix:/tmp/gw_a", obj)

robj = DRbObject.new_with_uri('drbunix:/tmp/gw_b_a')
robj[:a] = obj

DRb.thread.join
=end

=begin
# gw_c.rb
require 'drb/unix'
require 'foo'

foo = Foo.new('c', nil)

DRb.start_service("drbunix:/tmp/gw_c", nil)

robj = DRbObject.new_with_uri("drbunix:/tmp/gw_b_c")

puts "c->b"
a = robj[:a]
sleep 2

a.ping(foo)

DRb.thread.join
=end

PKFH[U��share/ruby/drb/unix.rbnu�[���# frozen_string_literal: false
require 'socket'
require_relative 'drb'
require 'tmpdir'

raise(LoadError, "UNIXServer is required") unless defined?(UNIXServer)

module DRb

  # Implements DRb over a UNIX socket
  #
  # DRb UNIX socket URIs look like <code>drbunix:<path>?<option></code>.  The
  # option is optional.

  class DRbUNIXSocket < DRbTCPSocket
    # :stopdoc:
    def self.parse_uri(uri)
      if /\Adrbunix:(.*?)(\?(.*))?\z/ =~ uri
        filename = $1
        option = $3
        [filename, option]
      else
        raise(DRbBadScheme, uri) unless uri.start_with?('drbunix:')
        raise(DRbBadURI, 'can\'t parse uri:' + uri)
      end
    end

    def self.open(uri, config)
      filename, = parse_uri(uri)
      soc = UNIXSocket.open(filename)
      self.new(uri, soc, config)
    end

    def self.open_server(uri, config)
      filename, = parse_uri(uri)
      if filename.size == 0
        soc = temp_server
        filename = soc.path
        uri = 'drbunix:' + soc.path
      else
        soc = UNIXServer.open(filename)
      end
      owner = config[:UNIXFileOwner]
      group = config[:UNIXFileGroup]
      if owner || group
        require 'etc'
        owner = Etc.getpwnam( owner ).uid  if owner
        group = Etc.getgrnam( group ).gid  if group
        File.chown owner, group, filename
      end
      mode = config[:UNIXFileMode]
      File.chmod(mode, filename) if mode

      self.new(uri, soc, config, true)
    end

    def self.uri_option(uri, config)
      filename, option = parse_uri(uri)
      return "drbunix:#{filename}", option
    end

    def initialize(uri, soc, config={}, server_mode = false)
      super(uri, soc, config)
      set_sockopt(@socket)
      @server_mode = server_mode
      @acl = nil
    end

    # import from tempfile.rb
    Max_try = 10
    private
    def self.temp_server
      tmpdir = Dir::tmpdir
      n = 0
      while true
        begin
          tmpname = sprintf('%s/druby%d.%d', tmpdir, $$, n)
          lock = tmpname + '.lock'
          unless File.exist?(tmpname) or File.exist?(lock)
            Dir.mkdir(lock)
            break
          end
        rescue
          raise "cannot generate tempfile `%s'" % tmpname if n >= Max_try
          #sleep(1)
        end
        n += 1
      end
      soc = UNIXServer.new(tmpname)
      Dir.rmdir(lock)
      soc
    end

    public
    def close
      return unless @socket
      shutdown # DRbProtocol#shutdown
      path = @socket.path if @server_mode
      @socket.close
      File.unlink(path) if @server_mode
      @socket = nil
      close_shutdown_pipe
    end

    def accept
      s = accept_or_shutdown
      return nil unless s
      self.class.new(nil, s, @config)
    end

    def set_sockopt(soc)
      # no-op for now
    end
  end

  DRbProtocol.add_protocol(DRbUNIXSocket)
  # :startdoc:
end
PKFH[D[���share/ruby/drb/timeridconv.rbnu�[���# frozen_string_literal: false
require_relative 'drb'
require 'monitor'

module DRb

  # Timer id conversion keeps objects alive for a certain amount of time after
  # their last access.  The default time period is 600 seconds and can be
  # changed upon initialization.
  #
  # To use TimerIdConv:
  #
  #  DRb.install_id_conv TimerIdConv.new 60 # one minute

  class TimerIdConv < DRbIdConv
    class TimerHolder2 # :nodoc:
      include MonitorMixin

      class InvalidIndexError < RuntimeError; end

      def initialize(keeping=600)
        super()
        @sentinel = Object.new
        @gc = {}
        @renew = {}
        @keeping = keeping
        @expires = nil
      end

      def add(obj)
        synchronize do
          rotate
          key = obj.__id__
          @renew[key] = obj
          invoke_keeper
          return key
        end
      end

      def fetch(key)
        synchronize do
          rotate
          obj = peek(key)
          raise InvalidIndexError if obj == @sentinel
          @renew[key] = obj # KeepIt
          return obj
        end
      end

      private
      def peek(key)
        return @renew.fetch(key) { @gc.fetch(key, @sentinel) }
      end

      def invoke_keeper
        return if @expires
        @expires = Time.now + @keeping
        on_gc
      end

      def on_gc
        return unless Thread.main.alive?
        return if @expires.nil?
        Thread.new { rotate } if @expires < Time.now
        ObjectSpace.define_finalizer(Object.new) {on_gc}
      end

      def rotate
        synchronize do
          if @expires &.< Time.now
            @gc = @renew      # GCed
            @renew = {}
            @expires = @gc.empty? ? nil : Time.now + @keeping
          end
        end
      end
    end

    # Creates a new TimerIdConv which will hold objects for +keeping+ seconds.
    def initialize(keeping=600)
      @holder = TimerHolder2.new(keeping)
    end

    def to_obj(ref) # :nodoc:
      return super if ref.nil?
      @holder.fetch(ref)
    rescue TimerHolder2::InvalidIndexError
      raise "invalid reference"
    end

    def to_id(obj) # :nodoc:
      return @holder.add(obj)
    end
  end
end

# DRb.install_id_conv(TimerIdConv.new)
PKFH[��,�}}share/ruby/drb/weakidconv.rbnu�[���# frozen_string_literal: false
require_relative 'drb'
require 'monitor'

module DRb

  # To use WeakIdConv:
  #
  #  DRb.start_service(nil, nil, {:idconv => DRb::WeakIdConv.new})

  class WeakIdConv < DRbIdConv
    class WeakSet
      include MonitorMixin
      def initialize
        super()
        @immutable = {}
        @map = ObjectSpace::WeakMap.new
      end

      def add(obj)
        synchronize do
          begin
            @map[obj] = self
          rescue ArgumentError
            @immutable[obj.__id__] = obj
          end
          return obj.__id__
        end
      end

      def fetch(ref)
        synchronize do
          @immutable.fetch(ref) {
            @map.each { |key, _|
              return key if key.__id__ == ref
            }
            raise RangeError.new("invalid reference")
          }
        end
      end
    end

    def initialize()
      super()
      @weak_set = WeakSet.new
    end

    def to_obj(ref) # :nodoc:
      return super if ref.nil?
      @weak_set.fetch(ref)
    end

    def to_id(obj) # :nodoc:
      return @weak_set.add(obj)
    end
  end
end

# DRb.install_id_conv(WeakIdConv.new)
PKFH[Ew|��share/ruby/drb/extservm.rbnu�[���# frozen_string_literal: false
=begin
 external service manager
        Copyright (c) 2000 Masatoshi SEKI
=end

require_relative 'drb'
require 'monitor'

module DRb
  class ExtServManager
    include DRbUndumped
    include MonitorMixin

    @@command = {}

    def self.command
      @@command
    end

    def self.command=(cmd)
      @@command = cmd
    end

    def initialize
      super()
      @cond = new_cond
      @servers = {}
      @waiting = []
      @queue = Thread::Queue.new
      @thread = invoke_thread
      @uri = nil
    end
    attr_accessor :uri

    def service(name)
      synchronize do
        while true
          server = @servers[name]
          return server if server && server.alive? # server may be `false'
          invoke_service(name)
          @cond.wait
        end
      end
    end

    def regist(name, ro)
      synchronize do
        @servers[name] = ro
        @cond.signal
      end
      self
    end

    def unregist(name)
      synchronize do
        @servers.delete(name)
      end
    end

    private
    def invoke_thread
      Thread.new do
        while name = @queue.pop
          invoke_service_command(name, @@command[name])
        end
      end
    end

    def invoke_service(name)
      @queue.push(name)
    end

    def invoke_service_command(name, command)
      raise "invalid command. name: #{name}" unless command
      synchronize do
        return if @servers.include?(name)
        @servers[name] = false
      end
      uri = @uri || DRb.uri
      if command.respond_to? :to_ary
        command = command.to_ary + [uri, name]
        pid = spawn(*command)
      else
        pid = spawn("#{command} #{uri} #{name}")
      end
      th = Process.detach(pid)
      th[:drb_service] = name
      th
    end
  end
end
PKFH[���^DDshare/ruby/drb/extserv.rbnu�[���# frozen_string_literal: false
=begin
 external service
        Copyright (c) 2000,2002 Masatoshi SEKI
=end

require_relative 'drb'
require 'monitor'

module DRb
  class ExtServ
    include MonitorMixin
    include DRbUndumped

    def initialize(there, name, server=nil)
      super()
      @server = server || DRb::primary_server
      @name = name
      ro = DRbObject.new(nil, there)
      synchronize do
        @invoker = ro.regist(name, DRbObject.new(self, @server.uri))
      end
    end
    attr_reader :server

    def front
      DRbObject.new(nil, @server.uri)
    end

    def stop_service
      synchronize do
        @invoker.unregist(@name)
        server = @server
        @server = nil
        server.stop_service
        true
      end
    end

    def alive?
      @server ? @server.alive? : false
    end
  end
end
PKFH[��4share/ruby/drb/eq.rbnu�[���# frozen_string_literal: false
module DRb
  class DRbObject # :nodoc:
    def ==(other)
      return false unless DRbObject === other
     (@ref == other.__drbref) && (@uri == other.__drburi)
    end

    def hash
      [@uri, @ref].hash
    end

    alias eql? ==
  end
end
PKFH[ы>�qqshare/ruby/drb/acl.rbnu�[���# frozen_string_literal: false
# Copyright (c) 2000,2002,2003 Masatoshi SEKI
#
# acl.rb is copyrighted free software by Masatoshi SEKI.
# You can redistribute it and/or modify it under the same terms as Ruby.

require 'ipaddr'

##
# Simple Access Control Lists.
#
# Access control lists are composed of "allow" and "deny" halves to control
# access.  Use "all" or "*" to match any address.  To match a specific address
# use any address or address mask that IPAddr can understand.
#
# Example:
#
#   list = %w[
#     deny all
#     allow 192.168.1.1
#     allow ::ffff:192.168.1.2
#     allow 192.168.1.3
#   ]
#
#   # From Socket#peeraddr, see also ACL#allow_socket?
#   addr = ["AF_INET", 10, "lc630", "192.168.1.3"]
#
#   acl = ACL.new
#   p acl.allow_addr?(addr) # => true
#
#   acl = ACL.new(list, ACL::DENY_ALLOW)
#   p acl.allow_addr?(addr) # => true

class ACL

  ##
  # The current version of ACL

  VERSION=["2.0.0"]

  ##
  # An entry in an ACL

  class ACLEntry

    ##
    # Creates a new entry using +str+.
    #
    # +str+ may be "*" or "all" to match any address, an IP address string
    # to match a specific address, an IP address mask per IPAddr, or one
    # containing "*" to match part of an IPv4 address.
    #
    # IPAddr::InvalidPrefixError may be raised when an IP network
    # address with an invalid netmask/prefix is given.

    def initialize(str)
      if str == '*' or str == 'all'
        @pat = [:all]
      elsif str.include?('*')
        @pat = [:name, dot_pat(str)]
      else
        begin
          @pat = [:ip, IPAddr.new(str)]
        rescue IPAddr::InvalidPrefixError
          # In this case, `str` shouldn't be a host name pattern
          # because it contains a slash.
          raise
        rescue ArgumentError
          @pat = [:name, dot_pat(str)]
        end
      end
    end

    private

    ##
    # Creates a regular expression to match IPv4 addresses

    def dot_pat_str(str)
      list = str.split('.').collect { |s|
        (s == '*') ? '.+' : s
      }
      list.join("\\.")
    end

    private

    ##
    # Creates a Regexp to match an address.

    def dot_pat(str)
      /\A#{dot_pat_str(str)}\z/
    end

    public

    ##
    # Matches +addr+ against this entry.

    def match(addr)
      case @pat[0]
      when :all
        true
      when :ip
        begin
          ipaddr = IPAddr.new(addr[3])
          ipaddr = ipaddr.ipv4_mapped if @pat[1].ipv6? && ipaddr.ipv4?
        rescue ArgumentError
          return false
        end
        (@pat[1].include?(ipaddr)) ? true : false
      when :name
        (@pat[1] =~ addr[2]) ? true : false
      else
        false
      end
    end
  end

  ##
  # A list of ACLEntry objects.  Used to implement the allow and deny halves
  # of an ACL

  class ACLList

    ##
    # Creates an empty ACLList

    def initialize
      @list = []
    end

    public

    ##
    # Matches +addr+ against each ACLEntry in this list.

    def match(addr)
      @list.each do |e|
        return true if e.match(addr)
      end
      false
    end

    public

    ##
    # Adds +str+ as an ACLEntry in this list

    def add(str)
      @list.push(ACLEntry.new(str))
    end

  end

  ##
  # Default to deny

  DENY_ALLOW = 0

  ##
  # Default to allow

  ALLOW_DENY = 1

  ##
  # Creates a new ACL from +list+ with an evaluation +order+ of DENY_ALLOW or
  # ALLOW_DENY.
  #
  # An ACL +list+ is an Array of "allow" or "deny" and an address or address
  # mask or "all" or "*" to match any address:
  #
  #   %w[
  #     deny all
  #     allow 192.0.2.2
  #     allow 192.0.2.128/26
  #   ]

  def initialize(list=nil, order = DENY_ALLOW)
    @order = order
    @deny = ACLList.new
    @allow = ACLList.new
    install_list(list) if list
  end

  public

  ##
  # Allow connections from Socket +soc+?

  def allow_socket?(soc)
    allow_addr?(soc.peeraddr)
  end

  public

  ##
  # Allow connections from addrinfo +addr+?  It must be formatted like
  # Socket#peeraddr:
  #
  #   ["AF_INET", 10, "lc630", "192.0.2.1"]

  def allow_addr?(addr)
    case @order
    when DENY_ALLOW
      return true if @allow.match(addr)
      return false if @deny.match(addr)
      return true
    when ALLOW_DENY
      return false if @deny.match(addr)
      return true if @allow.match(addr)
      return false
    else
      false
    end
  end

  public

  ##
  # Adds +list+ of ACL entries to this ACL.

  def install_list(list)
    i = 0
    while i < list.size
      permission, domain = list.slice(i,2)
      case permission.downcase
      when 'allow'
        @allow.add(domain)
      when 'deny'
        @deny.add(domain)
      else
        raise "Invalid ACL entry #{list}"
      end
      i += 2
    end
  end

end
PKFH[�@��%.%.share/ruby/drb/ssl.rbnu�[���# frozen_string_literal: false
require 'socket'
require 'openssl'
require_relative 'drb'
require 'singleton'

module DRb

  # The protocol for DRb over an SSL socket
  #
  # The URI for a DRb socket over SSL is:
  # <code>drbssl://<host>:<port>?<option></code>.  The option is optional
  class DRbSSLSocket < DRbTCPSocket

    # SSLConfig handles the needed SSL information for establishing a
    # DRbSSLSocket connection, including generating the X509 / RSA pair.
    #
    # An instance of this config can be passed to DRbSSLSocket.new,
    # DRbSSLSocket.open and DRbSSLSocket.open_server
    #
    # See DRb::DRbSSLSocket::SSLConfig.new for more details
    class SSLConfig

      # Default values for a SSLConfig instance.
      #
      # See DRb::DRbSSLSocket::SSLConfig.new for more details
      DEFAULT = {
        :SSLCertificate       => nil,
        :SSLPrivateKey        => nil,
        :SSLClientCA          => nil,
        :SSLCACertificatePath => nil,
        :SSLCACertificateFile => nil,
        :SSLTmpDhCallback     => nil,
        :SSLVerifyMode        => ::OpenSSL::SSL::VERIFY_NONE,
        :SSLVerifyDepth       => nil,
        :SSLVerifyCallback    => nil,   # custom verification
        :SSLCertificateStore  => nil,
        # Must specify if you use auto generated certificate.
        :SSLCertName          => nil,   # e.g. [["CN","fqdn.example.com"]]
        :SSLCertComment       => "Generated by Ruby/OpenSSL"
      }

      # Create a new DRb::DRbSSLSocket::SSLConfig instance
      #
      # The DRb::DRbSSLSocket will take either a +config+ Hash or an instance
      # of SSLConfig, and will setup the certificate for its session for the
      # configuration. If want it to generate a generic certificate, the bare
      # minimum is to provide the :SSLCertName
      #
      # === Config options
      #
      # From +config+ Hash:
      #
      # :SSLCertificate ::
      #   An instance of OpenSSL::X509::Certificate.  If this is not provided,
      #   then a generic X509 is generated, with a correspond :SSLPrivateKey
      #
      # :SSLPrivateKey ::
      #   A private key instance, like OpenSSL::PKey::RSA.  This key must be
      #   the key that signed the :SSLCertificate
      #
      # :SSLClientCA ::
      #   An OpenSSL::X509::Certificate, or Array of certificates that will
      #   used as ClientCAs in the SSL Context
      #
      # :SSLCACertificatePath ::
      #   A path to the directory of CA certificates.  The certificates must
      #   be in PEM format.
      #
      # :SSLCACertificateFile ::
      #   A path to a CA certificate file, in PEM format.
      #
      # :SSLTmpDhCallback ::
      #   A DH callback. See OpenSSL::SSL::SSLContext.tmp_dh_callback
      #
      # :SSLVerifyMode ::
      #   This is the SSL verification mode.  See OpenSSL::SSL::VERIFY_* for
      #   available modes.  The default is OpenSSL::SSL::VERIFY_NONE
      #
      # :SSLVerifyDepth ::
      #   Number of CA certificates to walk, when verifying a certificate
      #   chain.
      #
      # :SSLVerifyCallback ::
      #   A callback to be used for additional verification.  See
      #   OpenSSL::SSL::SSLContext.verify_callback
      #
      # :SSLCertificateStore ::
      #   A OpenSSL::X509::Store used for verification of certificates
      #
      # :SSLCertName ::
      #   Issuer name for the certificate.  This is required when generating
      #   the certificate (if :SSLCertificate and :SSLPrivateKey were not
      #   given).  The value of this is to be an Array of pairs:
      #
      #     [["C", "Raleigh"], ["ST","North Carolina"],
      #      ["CN","fqdn.example.com"]]
      #
      #   See also OpenSSL::X509::Name
      #
      # :SSLCertComment ::
      #   A comment to be used for generating the certificate.  The default is
      #   "Generated by Ruby/OpenSSL"
      #
      #
      # === Example
      #
      # These values can be added after the fact, like a Hash.
      #
      #   require 'drb/ssl'
      #   c = DRb::DRbSSLSocket::SSLConfig.new {}
      #   c[:SSLCertificate] =
      #     OpenSSL::X509::Certificate.new(File.read('mycert.crt'))
      #   c[:SSLPrivateKey] = OpenSSL::PKey::RSA.new(File.read('mycert.key'))
      #   c[:SSLVerifyMode] = OpenSSL::SSL::VERIFY_PEER
      #   c[:SSLCACertificatePath] = "/etc/ssl/certs/"
      #   c.setup_certificate
      #
      # or
      #
      #   require 'drb/ssl'
      #   c = DRb::DRbSSLSocket::SSLConfig.new({
      #           :SSLCertName => [["CN" => DRb::DRbSSLSocket.getservername]]
      #           })
      #   c.setup_certificate
      #
      def initialize(config)
        @config  = config
        @cert    = config[:SSLCertificate]
        @pkey    = config[:SSLPrivateKey]
        @ssl_ctx = nil
      end

      # A convenience method to access the values like a Hash
      def [](key);
        @config[key] || DEFAULT[key]
      end

      # Connect to IO +tcp+, with context of the current certificate
      # configuration
      def connect(tcp)
        ssl = ::OpenSSL::SSL::SSLSocket.new(tcp, @ssl_ctx)
        ssl.sync = true
        ssl.connect
        ssl
      end

      # Accept connection to IO +tcp+, with context of the current certificate
      # configuration
      def accept(tcp)
        ssl = OpenSSL::SSL::SSLSocket.new(tcp, @ssl_ctx)
        ssl.sync = true
        ssl.accept
        ssl
      end

      # Ensures that :SSLCertificate and :SSLPrivateKey have been provided
      # or that a new certificate is generated with the other parameters
      # provided.
      def setup_certificate
        if @cert && @pkey
          return
        end

        rsa = OpenSSL::PKey::RSA.new(2048){|p, n|
          next unless self[:verbose]
          case p
          when 0; $stderr.putc "."  # BN_generate_prime
          when 1; $stderr.putc "+"  # BN_generate_prime
          when 2; $stderr.putc "*"  # searching good prime,
                                    # n = #of try,
                                    # but also data from BN_generate_prime
          when 3; $stderr.putc "\n" # found good prime, n==0 - p, n==1 - q,
                                    # but also data from BN_generate_prime
          else;   $stderr.putc "*"  # BN_generate_prime
          end
        }

        cert = OpenSSL::X509::Certificate.new
        cert.version = 3
        cert.serial = 0
        name = OpenSSL::X509::Name.new(self[:SSLCertName])
        cert.subject = name
        cert.issuer = name
        cert.not_before = Time.now
        cert.not_after = Time.now + (365*24*60*60)
        cert.public_key = rsa.public_key

        ef = OpenSSL::X509::ExtensionFactory.new(nil,cert)
        cert.extensions = [
          ef.create_extension("basicConstraints","CA:FALSE"),
          ef.create_extension("subjectKeyIdentifier", "hash") ]
        ef.issuer_certificate = cert
        cert.add_extension(ef.create_extension("authorityKeyIdentifier",
                                               "keyid:always,issuer:always"))
        if comment = self[:SSLCertComment]
          cert.add_extension(ef.create_extension("nsComment", comment))
        end
        cert.sign(rsa, OpenSSL::Digest::SHA256.new)

        @cert = cert
        @pkey = rsa
      end

      # Establish the OpenSSL::SSL::SSLContext with the configuration
      # parameters provided.
      def setup_ssl_context
        ctx = ::OpenSSL::SSL::SSLContext.new
        ctx.cert            = @cert
        ctx.key             = @pkey
        ctx.client_ca       = self[:SSLClientCA]
        ctx.ca_path         = self[:SSLCACertificatePath]
        ctx.ca_file         = self[:SSLCACertificateFile]
        ctx.tmp_dh_callback = self[:SSLTmpDhCallback]
        ctx.verify_mode     = self[:SSLVerifyMode]
        ctx.verify_depth    = self[:SSLVerifyDepth]
        ctx.verify_callback = self[:SSLVerifyCallback]
        ctx.cert_store      = self[:SSLCertificateStore]
        @ssl_ctx = ctx
      end
    end

    # Parse the dRuby +uri+ for an SSL connection.
    #
    # Expects drbssl://...
    #
    # Raises DRbBadScheme or DRbBadURI if +uri+ is not matching or malformed
    def self.parse_uri(uri) # :nodoc:
      if /\Adrbssl:\/\/(.*?):(\d+)(\?(.*))?\z/ =~ uri
        host = $1
        port = $2.to_i
        option = $4
        [host, port, option]
      else
        raise(DRbBadScheme, uri) unless uri.start_with?('drbssl:')
        raise(DRbBadURI, 'can\'t parse uri:' + uri)
      end
    end

    # Return an DRb::DRbSSLSocket instance as a client-side connection,
    # with the SSL connected.  This is called from DRb::start_service or while
    # connecting to a remote object:
    #
    #   DRb.start_service 'drbssl://localhost:0', front, config
    #
    # +uri+ is the URI we are connected to,
    # <code>'drbssl://localhost:0'</code> above, +config+ is our
    # configuration.  Either a Hash or DRb::DRbSSLSocket::SSLConfig
    def self.open(uri, config)
      host, port, = parse_uri(uri)
      soc = TCPSocket.open(host, port)
      ssl_conf = SSLConfig::new(config)
      ssl_conf.setup_ssl_context
      ssl = ssl_conf.connect(soc)
      self.new(uri, ssl, ssl_conf, true)
    end

    # Returns a DRb::DRbSSLSocket instance as a server-side connection, with
    # the SSL connected.  This is called from DRb::start_service or while
    # connecting to a remote object:
    #
    #   DRb.start_service 'drbssl://localhost:0', front, config
    #
    # +uri+ is the URI we are connected to,
    # <code>'drbssl://localhost:0'</code> above, +config+ is our
    # configuration.  Either a Hash or DRb::DRbSSLSocket::SSLConfig
    def self.open_server(uri, config)
      uri = 'drbssl://:0' unless uri
      host, port, = parse_uri(uri)
      if host.size == 0
        host = getservername
        soc = open_server_inaddr_any(host, port)
      else
        soc = TCPServer.open(host, port)
      end
      port = soc.addr[1] if port == 0
      @uri = "drbssl://#{host}:#{port}"

      ssl_conf = SSLConfig.new(config)
      ssl_conf.setup_certificate
      ssl_conf.setup_ssl_context
      self.new(@uri, soc, ssl_conf, false)
    end

    # This is a convenience method to parse +uri+ and separate out any
    # additional options appended in the +uri+.
    #
    # Returns an option-less uri and the option => [uri,option]
    #
    # The +config+ is completely unused, so passing nil is sufficient.
    def self.uri_option(uri, config) # :nodoc:
      host, port, option = parse_uri(uri)
      return "drbssl://#{host}:#{port}", option
    end

    # Create a DRb::DRbSSLSocket instance.
    #
    # +uri+ is the URI we are connected to.
    # +soc+ is the tcp socket we are bound to.
    # +config+ is our configuration. Either a Hash or SSLConfig
    # +is_established+ is a boolean of whether +soc+ is currently established
    #
    # This is called automatically based on the DRb protocol.
    def initialize(uri, soc, config, is_established)
      @ssl = is_established ? soc : nil
      super(uri, soc.to_io, config)
    end

    # Returns the SSL stream
    def stream; @ssl; end # :nodoc:

    # Closes the SSL stream before closing the dRuby connection.
    def close # :nodoc:
      if @ssl
        @ssl.close
        @ssl = nil
      end
      super
    end

    def accept # :nodoc:
      begin
      while true
        soc = accept_or_shutdown
        return nil unless soc
        break if (@acl ? @acl.allow_socket?(soc) : true)
        soc.close
      end
      begin
        ssl = @config.accept(soc)
      rescue Exception
        soc.close
        raise
      end
      self.class.new(uri, ssl, @config, true)
      rescue OpenSSL::SSL::SSLError
        warn("#{$!.message} (#{$!.class})", uplevel: 0) if @config[:verbose]
        retry
      end
    end
  end

  DRbProtocol.add_protocol(DRbSSLSocket)
end
PKFH[a����share/ruby/drb/observer.rbnu�[���# frozen_string_literal: false
require 'observer'

module DRb
  # The Observable module extended to DRb.  See Observable for details.
  module DRbObservable
    include Observable

    # Notifies observers of a change in state.  See also
    # Observable#notify_observers
    def notify_observers(*arg)
      if defined? @observer_state and @observer_state
        if defined? @observer_peers
          @observer_peers.each do |observer, method|
            begin
              observer.send(method, *arg)
            rescue
              delete_observer(observer)
            end
          end
        end
        @observer_state = false
      end
    end
  end
end
PKFH[*Y)		share/ruby/drb/invokemethod.rbnu�[���# frozen_string_literal: false
# for ruby-1.8.0

module DRb # :nodoc: all
  class DRbServer
    module InvokeMethod18Mixin
      def block_yield(x)
        if x.size == 1 && x[0].class == Array
          x[0] = DRbArray.new(x[0])
        end
        @block.call(*x)
      end

      def perform_with_block
        @obj.__send__(@msg_id, *@argv) do |*x|
          jump_error = nil
          begin
            block_value = block_yield(x)
          rescue LocalJumpError
            jump_error = $!
          end
          if jump_error
            case jump_error.reason
            when :break
              break(jump_error.exit_value)
            else
              raise jump_error
            end
          end
          block_value
        end
      end
    end
  end
end
PKFH[��Y����share/ruby/drb/drb.rbnu�[���# frozen_string_literal: false
#
# = drb/drb.rb
#
# Distributed Ruby: _dRuby_ version 2.0.4
#
# Copyright (c) 1999-2003 Masatoshi SEKI.  You can redistribute it and/or
# modify it under the same terms as Ruby.
#
# Author:: Masatoshi SEKI
#
# Documentation:: William Webber (william@williamwebber.com)
#
# == Overview
#
# dRuby is a distributed object system for Ruby.  It allows an object in one
# Ruby process to invoke methods on an object in another Ruby process on the
# same or a different machine.
#
# The Ruby standard library contains the core classes of the dRuby package.
# However, the full package also includes access control lists and the
# Rinda tuple-space distributed task management system, as well as a
# large number of samples.  The full dRuby package can be downloaded from
# the dRuby home page (see *References*).
#
# For an introduction and examples of usage see the documentation to the
# DRb module.
#
# == References
#
# [http://www2a.biglobe.ne.jp/~seki/ruby/druby.html]
#    The dRuby home page, in Japanese.  Contains the full dRuby package
#    and links to other Japanese-language sources.
#
# [http://www2a.biglobe.ne.jp/~seki/ruby/druby.en.html]
#    The English version of the dRuby home page.
#
# [http://pragprog.com/book/sidruby/the-druby-book]
#    The dRuby Book: Distributed and Parallel Computing with Ruby
#    by Masatoshi Seki and Makoto Inoue
#
# [http://www.ruby-doc.org/docs/ProgrammingRuby/html/ospace.html]
#   The chapter from *Programming* *Ruby* by Dave Thomas and Andy Hunt
#   which discusses dRuby.
#
# [http://www.clio.ne.jp/home/web-i31s/Flotuard/Ruby/PRC2K_seki/dRuby.en.html]
#   Translation of presentation on Ruby by Masatoshi Seki.

require 'socket'
require 'io/wait'
require 'monitor'
require_relative 'eq'

#
# == Overview
#
# dRuby is a distributed object system for Ruby.  It is written in
# pure Ruby and uses its own protocol.  No add-in services are needed
# beyond those provided by the Ruby runtime, such as TCP sockets.  It
# does not rely on or interoperate with other distributed object
# systems such as CORBA, RMI, or .NET.
#
# dRuby allows methods to be called in one Ruby process upon a Ruby
# object located in another Ruby process, even on another machine.
# References to objects can be passed between processes.  Method
# arguments and return values are dumped and loaded in marshalled
# format.  All of this is done transparently to both the caller of the
# remote method and the object that it is called upon.
#
# An object in a remote process is locally represented by a
# DRb::DRbObject instance.  This acts as a sort of proxy for the
# remote object.  Methods called upon this DRbObject instance are
# forwarded to its remote object.  This is arranged dynamically at run
# time.  There are no statically declared interfaces for remote
# objects, such as CORBA's IDL.
#
# dRuby calls made into a process are handled by a DRb::DRbServer
# instance within that process.  This reconstitutes the method call,
# invokes it upon the specified local object, and returns the value to
# the remote caller.  Any object can receive calls over dRuby.  There
# is no need to implement a special interface, or mixin special
# functionality.  Nor, in the general case, does an object need to
# explicitly register itself with a DRbServer in order to receive
# dRuby calls.
#
# One process wishing to make dRuby calls upon another process must
# somehow obtain an initial reference to an object in the remote
# process by some means other than as the return value of a remote
# method call, as there is initially no remote object reference it can
# invoke a method upon.  This is done by attaching to the server by
# URI.  Each DRbServer binds itself to a URI such as
# 'druby://example.com:8787'.  A DRbServer can have an object attached
# to it that acts as the server's *front* *object*.  A DRbObject can
# be explicitly created from the server's URI.  This DRbObject's
# remote object will be the server's front object.  This front object
# can then return references to other Ruby objects in the DRbServer's
# process.
#
# Method calls made over dRuby behave largely the same as normal Ruby
# method calls made within a process.  Method calls with blocks are
# supported, as are raising exceptions.  In addition to a method's
# standard errors, a dRuby call may also raise one of the
# dRuby-specific errors, all of which are subclasses of DRb::DRbError.
#
# Any type of object can be passed as an argument to a dRuby call or
# returned as its return value.  By default, such objects are dumped
# or marshalled at the local end, then loaded or unmarshalled at the
# remote end.  The remote end therefore receives a copy of the local
# object, not a distributed reference to it; methods invoked upon this
# copy are executed entirely in the remote process, not passed on to
# the local original.  This has semantics similar to pass-by-value.
#
# However, if an object cannot be marshalled, a dRuby reference to it
# is passed or returned instead.  This will turn up at the remote end
# as a DRbObject instance.  All methods invoked upon this remote proxy
# are forwarded to the local object, as described in the discussion of
# DRbObjects.  This has semantics similar to the normal Ruby
# pass-by-reference.
#
# The easiest way to signal that we want an otherwise marshallable
# object to be passed or returned as a DRbObject reference, rather
# than marshalled and sent as a copy, is to include the
# DRb::DRbUndumped mixin module.
#
# dRuby supports calling remote methods with blocks.  As blocks (or
# rather the Proc objects that represent them) are not marshallable,
# the block executes in the local, not the remote, context.  Each
# value yielded to the block is passed from the remote object to the
# local block, then the value returned by each block invocation is
# passed back to the remote execution context to be collected, before
# the collected values are finally returned to the local context as
# the return value of the method invocation.
#
# == Examples of usage
#
# For more dRuby samples, see the +samples+ directory in the full
# dRuby distribution.
#
# === dRuby in client/server mode
#
# This illustrates setting up a simple client-server drb
# system.  Run the server and client code in different terminals,
# starting the server code first.
#
# ==== Server code
#
#   require 'drb/drb'
#
#   # The URI for the server to connect to
#   URI="druby://localhost:8787"
#
#   class TimeServer
#
#     def get_current_time
#       return Time.now
#     end
#
#   end
#
#   # The object that handles requests on the server
#   FRONT_OBJECT=TimeServer.new
#
#   DRb.start_service(URI, FRONT_OBJECT)
#   # Wait for the drb server thread to finish before exiting.
#   DRb.thread.join
#
# ==== Client code
#
#   require 'drb/drb'
#
#   # The URI to connect to
#   SERVER_URI="druby://localhost:8787"
#
#   # Start a local DRbServer to handle callbacks.
#   #
#   # Not necessary for this small example, but will be required
#   # as soon as we pass a non-marshallable object as an argument
#   # to a dRuby call.
#   #
#   # Note: this must be called at least once per process to take any effect.
#   # This is particularly important if your application forks.
#   DRb.start_service
#
#   timeserver = DRbObject.new_with_uri(SERVER_URI)
#   puts timeserver.get_current_time
#
# === Remote objects under dRuby
#
# This example illustrates returning a reference to an object
# from a dRuby call.  The Logger instances live in the server
# process.  References to them are returned to the client process,
# where methods can be invoked upon them.  These methods are
# executed in the server process.
#
# ==== Server code
#
#   require 'drb/drb'
#
#   URI="druby://localhost:8787"
#
#   class Logger
#
#       # Make dRuby send Logger instances as dRuby references,
#       # not copies.
#       include DRb::DRbUndumped
#
#       def initialize(n, fname)
#           @name = n
#           @filename = fname
#       end
#
#       def log(message)
#           File.open(@filename, "a") do |f|
#               f.puts("#{Time.now}: #{@name}: #{message}")
#           end
#       end
#
#   end
#
#   # We have a central object for creating and retrieving loggers.
#   # This retains a local reference to all loggers created.  This
#   # is so an existing logger can be looked up by name, but also
#   # to prevent loggers from being garbage collected.  A dRuby
#   # reference to an object is not sufficient to prevent it being
#   # garbage collected!
#   class LoggerFactory
#
#       def initialize(bdir)
#           @basedir = bdir
#           @loggers = {}
#       end
#
#       def get_logger(name)
#           if !@loggers.has_key? name
#               # make the filename safe, then declare it to be so
#               fname = name.gsub(/[.\/\\\:]/, "_")
#               @loggers[name] = Logger.new(name, @basedir + "/" + fname)
#           end
#           return @loggers[name]
#       end
#
#   end
#
#   FRONT_OBJECT=LoggerFactory.new("/tmp/dlog")
#
#   DRb.start_service(URI, FRONT_OBJECT)
#   DRb.thread.join
#
# ==== Client code
#
#   require 'drb/drb'
#
#   SERVER_URI="druby://localhost:8787"
#
#   DRb.start_service
#
#   log_service=DRbObject.new_with_uri(SERVER_URI)
#
#   ["loga", "logb", "logc"].each do |logname|
#
#       logger=log_service.get_logger(logname)
#
#       logger.log("Hello, world!")
#       logger.log("Goodbye, world!")
#       logger.log("=== EOT ===")
#
#   end
#
# == Security
#
# As with all network services, security needs to be considered when
# using dRuby.  By allowing external access to a Ruby object, you are
# not only allowing outside clients to call the methods you have
# defined for that object, but by default to execute arbitrary Ruby
# code on your server.  Consider the following:
#
#    # !!! UNSAFE CODE !!!
#    ro = DRbObject::new_with_uri("druby://your.server.com:8989")
#    class << ro
#      undef :instance_eval  # force call to be passed to remote object
#    end
#    ro.instance_eval("`rm -rf *`")
#
# The dangers posed by instance_eval and friends are such that a
# DRbServer should only be used when clients are trusted.
#
# A DRbServer can be configured with an access control list to
# selectively allow or deny access from specified IP addresses.  The
# main druby distribution provides the ACL class for this purpose.  In
# general, this mechanism should only be used alongside, rather than
# as a replacement for, a good firewall.
#
# == dRuby internals
#
# dRuby is implemented using three main components: a remote method
# call marshaller/unmarshaller; a transport protocol; and an
# ID-to-object mapper.  The latter two can be directly, and the first
# indirectly, replaced, in order to provide different behaviour and
# capabilities.
#
# Marshalling and unmarshalling of remote method calls is performed by
# a DRb::DRbMessage instance.  This uses the Marshal module to dump
# the method call before sending it over the transport layer, then
# reconstitute it at the other end.  There is normally no need to
# replace this component, and no direct way is provided to do so.
# However, it is possible to implement an alternative marshalling
# scheme as part of an implementation of the transport layer.
#
# The transport layer is responsible for opening client and server
# network connections and forwarding dRuby request across them.
# Normally, it uses DRb::DRbMessage internally to manage marshalling
# and unmarshalling.  The transport layer is managed by
# DRb::DRbProtocol.  Multiple protocols can be installed in
# DRbProtocol at the one time; selection between them is determined by
# the scheme of a dRuby URI.  The default transport protocol is
# selected by the scheme 'druby:', and implemented by
# DRb::DRbTCPSocket.  This uses plain TCP/IP sockets for
# communication.  An alternative protocol, using UNIX domain sockets,
# is implemented by DRb::DRbUNIXSocket in the file drb/unix.rb, and
# selected by the scheme 'drbunix:'.  A sample implementation over
# HTTP can be found in the samples accompanying the main dRuby
# distribution.
#
# The ID-to-object mapping component maps dRuby object ids to the
# objects they refer to, and vice versa.  The implementation to use
# can be specified as part of a DRb::DRbServer's configuration.  The
# default implementation is provided by DRb::DRbIdConv.  It uses an
# object's ObjectSpace id as its dRuby id.  This means that the dRuby
# reference to that object only remains meaningful for the lifetime of
# the object's process and the lifetime of the object within that
# process.  A modified implementation is provided by DRb::TimerIdConv
# in the file drb/timeridconv.rb.  This implementation retains a local
# reference to all objects exported over dRuby for a configurable
# period of time (defaulting to ten minutes), to prevent them being
# garbage-collected within this time.  Another sample implementation
# is provided in sample/name.rb in the main dRuby distribution.  This
# allows objects to specify their own id or "name".  A dRuby reference
# can be made persistent across processes by having each process
# register an object using the same dRuby name.
#
module DRb

  # Superclass of all errors raised in the DRb module.
  class DRbError < RuntimeError; end

  # Error raised when an error occurs on the underlying communication
  # protocol.
  class DRbConnError < DRbError; end

  # Class responsible for converting between an object and its id.
  #
  # This, the default implementation, uses an object's local ObjectSpace
  # __id__ as its id.  This means that an object's identification over
  # drb remains valid only while that object instance remains alive
  # within the server runtime.
  #
  # For alternative mechanisms, see DRb::TimerIdConv in drb/timeridconv.rb
  # and DRbNameIdConv in sample/name.rb in the full drb distribution.
  class DRbIdConv

    # Convert an object reference id to an object.
    #
    # This implementation looks up the reference id in the local object
    # space and returns the object it refers to.
    def to_obj(ref)
      ObjectSpace._id2ref(ref)
    end

    # Convert an object into a reference id.
    #
    # This implementation returns the object's __id__ in the local
    # object space.
    def to_id(obj)
      case obj
      when Object
        obj.nil? ? nil : obj.__id__
      when BasicObject
        obj.__id__
      end
    end
  end

  # Mixin module making an object undumpable or unmarshallable.
  #
  # If an object which includes this module is returned by method
  # called over drb, then the object remains in the server space
  # and a reference to the object is returned, rather than the
  # object being marshalled and moved into the client space.
  module DRbUndumped
    def _dump(dummy)  # :nodoc:
      raise TypeError, 'can\'t dump'
    end
  end

  # Error raised by the DRb module when an attempt is made to refer to
  # the context's current drb server but the context does not have one.
  # See #current_server.
  class DRbServerNotFound < DRbError; end

  # Error raised by the DRbProtocol module when it cannot find any
  # protocol implementation support the scheme specified in a URI.
  class DRbBadURI < DRbError; end

  # Error raised by a dRuby protocol when it doesn't support the
  # scheme specified in a URI.  See DRb::DRbProtocol.
  class DRbBadScheme < DRbError; end

  # An exception wrapping a DRb::DRbUnknown object
  class DRbUnknownError < DRbError

    # Create a new DRbUnknownError for the DRb::DRbUnknown object +unknown+
    def initialize(unknown)
      @unknown = unknown
      super(unknown.name)
    end

    # Get the wrapped DRb::DRbUnknown object.
    attr_reader :unknown

    def self._load(s)  # :nodoc:
      Marshal::load(s)
    end

    def _dump(lv) # :nodoc:
      Marshal::dump(@unknown)
    end
  end

  # An exception wrapping an error object
  class DRbRemoteError < DRbError

    # Creates a new remote error that wraps the Exception +error+
    def initialize(error)
      @reason = error.class.to_s
      super("#{error.message} (#{error.class})")
      set_backtrace(error.backtrace)
    end

    # the class of the error, as a string.
    attr_reader :reason
  end

  # Class wrapping a marshalled object whose type is unknown locally.
  #
  # If an object is returned by a method invoked over drb, but the
  # class of the object is unknown in the client namespace, or
  # the object is a constant unknown in the client namespace, then
  # the still-marshalled object is returned wrapped in a DRbUnknown instance.
  #
  # If this object is passed as an argument to a method invoked over
  # drb, then the wrapped object is passed instead.
  #
  # The class or constant name of the object can be read from the
  # +name+ attribute.  The marshalled object is held in the +buf+
  # attribute.
  class DRbUnknown

    # Create a new DRbUnknown object.
    #
    # +buf+ is a string containing a marshalled object that could not
    # be unmarshalled.  +err+ is the error message that was raised
    # when the unmarshalling failed.  It is used to determine the
    # name of the unmarshalled object.
    def initialize(err, buf)
      case err.to_s
      when /uninitialized constant (\S+)/
        @name = $1
      when /undefined class\/module (\S+)/
        @name = $1
      else
        @name = nil
      end
      @buf = buf
    end

    # The name of the unknown thing.
    #
    # Class name for unknown objects; variable name for unknown
    # constants.
    attr_reader :name

    # Buffer contained the marshalled, unknown object.
    attr_reader :buf

    def self._load(s) # :nodoc:
      begin
        Marshal::load(s)
      rescue NameError, ArgumentError
        DRbUnknown.new($!, s)
      end
    end

    def _dump(lv) # :nodoc:
      @buf
    end

    # Attempt to load the wrapped marshalled object again.
    #
    # If the class of the object is now known locally, the object
    # will be unmarshalled and returned.  Otherwise, a new
    # but identical DRbUnknown object will be returned.
    def reload
      self.class._load(@buf)
    end

    # Create a DRbUnknownError exception containing this object.
    def exception
      DRbUnknownError.new(self)
    end
  end

  # An Array wrapper that can be sent to another server via DRb.
  #
  # All entries in the array will be dumped or be references that point to
  # the local server.

  class DRbArray

    # Creates a new DRbArray that either dumps or wraps all the items in the
    # Array +ary+ so they can be loaded by a remote DRb server.

    def initialize(ary)
      @ary = ary.collect { |obj|
        if obj.kind_of? DRbUndumped
          DRbObject.new(obj)
        else
          begin
            Marshal.dump(obj)
            obj
          rescue
            DRbObject.new(obj)
          end
        end
      }
    end

    def self._load(s) # :nodoc:
      Marshal::load(s)
    end

    def _dump(lv) # :nodoc:
      Marshal.dump(@ary)
    end
  end

  # Handler for sending and receiving drb messages.
  #
  # This takes care of the low-level marshalling and unmarshalling
  # of drb requests and responses sent over the wire between server
  # and client.  This relieves the implementor of a new drb
  # protocol layer with having to deal with these details.
  #
  # The user does not have to directly deal with this object in
  # normal use.
  class DRbMessage
    def initialize(config) # :nodoc:
      @load_limit = config[:load_limit]
      @argc_limit = config[:argc_limit]
    end

    def dump(obj, error=false)  # :nodoc:
      case obj
      when DRbUndumped
        obj = make_proxy(obj, error)
      when Object
        # nothing
      else
        obj = make_proxy(obj, error)
      end
      begin
        str = Marshal::dump(obj)
      rescue
        str = Marshal::dump(make_proxy(obj, error))
      end
      [str.size].pack('N') + str
    end

    def load(soc)  # :nodoc:
      begin
        sz = soc.read(4)        # sizeof (N)
      rescue
        raise(DRbConnError, $!.message, $!.backtrace)
      end
      raise(DRbConnError, 'connection closed') if sz.nil?
      raise(DRbConnError, 'premature header') if sz.size < 4
      sz = sz.unpack('N')[0]
      raise(DRbConnError, "too large packet #{sz}") if @load_limit < sz
      begin
        str = soc.read(sz)
      rescue
        raise(DRbConnError, $!.message, $!.backtrace)
      end
      raise(DRbConnError, 'connection closed') if str.nil?
      raise(DRbConnError, 'premature marshal format(can\'t read)') if str.size < sz
      DRb.mutex.synchronize do
        begin
          Marshal::load(str)
        rescue NameError, ArgumentError
          DRbUnknown.new($!, str)
        end
      end
    end

    def send_request(stream, ref, msg_id, arg, b) # :nodoc:
      ary = []
      ary.push(dump(ref.__drbref))
      ary.push(dump(msg_id.id2name))
      ary.push(dump(arg.length))
      arg.each do |e|
        ary.push(dump(e))
      end
      ary.push(dump(b))
      stream.write(ary.join(''))
    rescue
      raise(DRbConnError, $!.message, $!.backtrace)
    end

    def recv_request(stream) # :nodoc:
      ref = load(stream)
      ro = DRb.to_obj(ref)
      msg = load(stream)
      argc = load(stream)
      raise(DRbConnError, "too many arguments") if @argc_limit < argc
      argv = Array.new(argc, nil)
      argc.times do |n|
        argv[n] = load(stream)
      end
      block = load(stream)
      return ro, msg, argv, block
    end

    def send_reply(stream, succ, result)  # :nodoc:
      stream.write(dump(succ) + dump(result, !succ))
    rescue
      raise(DRbConnError, $!.message, $!.backtrace)
    end

    def recv_reply(stream)  # :nodoc:
      succ = load(stream)
      result = load(stream)
      [succ, result]
    end

    private
    def make_proxy(obj, error=false) # :nodoc:
      if error
        DRbRemoteError.new(obj)
      else
        DRbObject.new(obj)
      end
    end
  end

  # Module managing the underlying network protocol(s) used by drb.
  #
  # By default, drb uses the DRbTCPSocket protocol.  Other protocols
  # can be defined.  A protocol must define the following class methods:
  #
  #   [open(uri, config)] Open a client connection to the server at +uri+,
  #                       using configuration +config+.  Return a protocol
  #                       instance for this connection.
  #   [open_server(uri, config)] Open a server listening at +uri+,
  #                              using configuration +config+.  Return a
  #                              protocol instance for this listener.
  #   [uri_option(uri, config)] Take a URI, possibly containing an option
  #                             component (e.g. a trailing '?param=val'),
  #                             and return a [uri, option] tuple.
  #
  # All of these methods should raise a DRbBadScheme error if the URI
  # does not identify the protocol they support (e.g. "druby:" for
  # the standard Ruby protocol).  This is how the DRbProtocol module,
  # given a URI, determines which protocol implementation serves that
  # protocol.
  #
  # The protocol instance returned by #open_server must have the
  # following methods:
  #
  # [accept] Accept a new connection to the server.  Returns a protocol
  #          instance capable of communicating with the client.
  # [close] Close the server connection.
  # [uri] Get the URI for this server.
  #
  # The protocol instance returned by #open must have the following methods:
  #
  # [send_request (ref, msg_id, arg, b)]
  #      Send a request to +ref+ with the given message id and arguments.
  #      This is most easily implemented by calling DRbMessage.send_request,
  #      providing a stream that sits on top of the current protocol.
  # [recv_reply]
  #      Receive a reply from the server and return it as a [success-boolean,
  #      reply-value] pair.  This is most easily implemented by calling
  #      DRb.recv_reply, providing a stream that sits on top of the
  #      current protocol.
  # [alive?]
  #      Is this connection still alive?
  # [close]
  #      Close this connection.
  #
  # The protocol instance returned by #open_server().accept() must have
  # the following methods:
  #
  # [recv_request]
  #     Receive a request from the client and return a [object, message,
  #     args, block] tuple.  This is most easily implemented by calling
  #     DRbMessage.recv_request, providing a stream that sits on top of
  #     the current protocol.
  # [send_reply(succ, result)]
  #     Send a reply to the client.  This is most easily implemented
  #     by calling DRbMessage.send_reply, providing a stream that sits
  #     on top of the current protocol.
  # [close]
  #     Close this connection.
  #
  # A new protocol is registered with the DRbProtocol module using
  # the add_protocol method.
  #
  # For examples of other protocols, see DRbUNIXSocket in drb/unix.rb,
  # and HTTP0 in sample/http0.rb and sample/http0serv.rb in the full
  # drb distribution.
  module DRbProtocol

    # Add a new protocol to the DRbProtocol module.
    def add_protocol(prot)
      @protocol.push(prot)
    end
    module_function :add_protocol

    # Open a client connection to +uri+ with the configuration +config+.
    #
    # The DRbProtocol module asks each registered protocol in turn to
    # try to open the URI.  Each protocol signals that it does not handle that
    # URI by raising a DRbBadScheme error.  If no protocol recognises the
    # URI, then a DRbBadURI error is raised.  If a protocol accepts the
    # URI, but an error occurs in opening it, a DRbConnError is raised.
    def open(uri, config, first=true)
      @protocol.each do |prot|
        begin
          return prot.open(uri, config)
        rescue DRbBadScheme
        rescue DRbConnError
          raise($!)
        rescue
          raise(DRbConnError, "#{uri} - #{$!.inspect}")
        end
      end
      if first && (config[:auto_load] != false)
        auto_load(uri)
        return open(uri, config, false)
      end
      raise DRbBadURI, 'can\'t parse uri:' + uri
    end
    module_function :open

    # Open a server listening for connections at +uri+ with
    # configuration +config+.
    #
    # The DRbProtocol module asks each registered protocol in turn to
    # try to open a server at the URI.  Each protocol signals that it does
    # not handle that URI by raising a DRbBadScheme error.  If no protocol
    # recognises the URI, then a DRbBadURI error is raised.  If a protocol
    # accepts the URI, but an error occurs in opening it, the underlying
    # error is passed on to the caller.
    def open_server(uri, config, first=true)
      @protocol.each do |prot|
        begin
          return prot.open_server(uri, config)
        rescue DRbBadScheme
        end
      end
      if first && (config[:auto_load] != false)
        auto_load(uri)
        return open_server(uri, config, false)
      end
      raise DRbBadURI, 'can\'t parse uri:' + uri
    end
    module_function :open_server

    # Parse +uri+ into a [uri, option] pair.
    #
    # The DRbProtocol module asks each registered protocol in turn to
    # try to parse the URI.  Each protocol signals that it does not handle that
    # URI by raising a DRbBadScheme error.  If no protocol recognises the
    # URI, then a DRbBadURI error is raised.
    def uri_option(uri, config, first=true)
      @protocol.each do |prot|
        begin
          uri, opt = prot.uri_option(uri, config)
          # opt = nil if opt == ''
          return uri, opt
        rescue DRbBadScheme
        end
      end
      if first && (config[:auto_load] != false)
        auto_load(uri)
        return uri_option(uri, config, false)
      end
      raise DRbBadURI, 'can\'t parse uri:' + uri
    end
    module_function :uri_option

    def auto_load(uri)  # :nodoc:
      if /\Adrb([a-z0-9]+):/ =~ uri
        require("drb/#{$1}") rescue nil
      end
    end
    module_function :auto_load
  end

  # The default drb protocol which communicates over a TCP socket.
  #
  # The DRb TCP protocol URI looks like:
  # <code>druby://<host>:<port>?<option></code>.  The option is optional.

  class DRbTCPSocket
    # :stopdoc:
    private
    def self.parse_uri(uri)
      if /\Adruby:\/\/(.*?):(\d+)(\?(.*))?\z/ =~ uri
        host = $1
        port = $2.to_i
        option = $4
        [host, port, option]
      else
        raise(DRbBadScheme, uri) unless uri.start_with?('druby:')
        raise(DRbBadURI, 'can\'t parse uri:' + uri)
      end
    end

    public

    # Open a client connection to +uri+ (DRb URI string) using configuration
    # +config+.
    #
    # This can raise DRb::DRbBadScheme or DRb::DRbBadURI if +uri+ is not for a
    # recognized protocol.  See DRb::DRbServer.new for information on built-in
    # URI protocols.
    def self.open(uri, config)
      host, port, = parse_uri(uri)
      soc = TCPSocket.open(host, port)
      self.new(uri, soc, config)
    end

    # Returns the hostname of this server
    def self.getservername
      host = Socket::gethostname
      begin
        Socket::getaddrinfo(host, nil,
                                  Socket::AF_UNSPEC,
                                  Socket::SOCK_STREAM,
                                  0,
                                  Socket::AI_PASSIVE)[0][3]
      rescue
        'localhost'
      end
    end

    # For the families available for +host+, returns a TCPServer on +port+.
    # If +port+ is 0 the first available port is used.  IPv4 servers are
    # preferred over IPv6 servers.
    def self.open_server_inaddr_any(host, port)
      infos = Socket::getaddrinfo(host, nil,
                                  Socket::AF_UNSPEC,
                                  Socket::SOCK_STREAM,
                                  0,
                                  Socket::AI_PASSIVE)
      families = Hash[*infos.collect { |af, *_| af }.uniq.zip([]).flatten]
      return TCPServer.open('0.0.0.0', port) if families.has_key?('AF_INET')
      return TCPServer.open('::', port) if families.has_key?('AF_INET6')
      return TCPServer.open(port)
      # :stopdoc:
    end

    # Open a server listening for connections at +uri+ using
    # configuration +config+.
    def self.open_server(uri, config)
      uri = 'druby://:0' unless uri
      host, port, _ = parse_uri(uri)
      config = {:tcp_original_host => host}.update(config)
      if host.size == 0
        host = getservername
        soc = open_server_inaddr_any(host, port)
      else
        soc = TCPServer.open(host, port)
      end
      port = soc.addr[1] if port == 0
      config[:tcp_port] = port
      uri = "druby://#{host}:#{port}"
      self.new(uri, soc, config)
    end

    # Parse +uri+ into a [uri, option] pair.
    def self.uri_option(uri, config)
      host, port, option = parse_uri(uri)
      return "druby://#{host}:#{port}", option
    end

    # Create a new DRbTCPSocket instance.
    #
    # +uri+ is the URI we are connected to.
    # +soc+ is the tcp socket we are bound to.  +config+ is our
    # configuration.
    def initialize(uri, soc, config={})
      @uri = uri
      @socket = soc
      @config = config
      @acl = config[:tcp_acl]
      @msg = DRbMessage.new(config)
      set_sockopt(@socket)
      @shutdown_pipe_r, @shutdown_pipe_w = IO.pipe
    end

    # Get the URI that we are connected to.
    attr_reader :uri

    # Get the address of our TCP peer (the other end of the socket
    # we are bound to.
    def peeraddr
      @socket.peeraddr
    end

    # Get the socket.
    def stream; @socket; end

    # On the client side, send a request to the server.
    def send_request(ref, msg_id, arg, b)
      @msg.send_request(stream, ref, msg_id, arg, b)
    end

    # On the server side, receive a request from the client.
    def recv_request
      @msg.recv_request(stream)
    end

    # On the server side, send a reply to the client.
    def send_reply(succ, result)
      @msg.send_reply(stream, succ, result)
    end

    # On the client side, receive a reply from the server.
    def recv_reply
      @msg.recv_reply(stream)
    end

    public

    # Close the connection.
    #
    # If this is an instance returned by #open_server, then this stops
    # listening for new connections altogether.  If this is an instance
    # returned by #open or by #accept, then it closes this particular
    # client-server session.
    def close
      shutdown
      if @socket
        @socket.close
        @socket = nil
      end
      close_shutdown_pipe
    end

    def close_shutdown_pipe
      @shutdown_pipe_w.close
      @shutdown_pipe_r.close
    end
    private :close_shutdown_pipe

    # On the server side, for an instance returned by #open_server,
    # accept a client connection and return a new instance to handle
    # the server's side of this client-server session.
    def accept
      while true
        s = accept_or_shutdown
        return nil unless s
        break if (@acl ? @acl.allow_socket?(s) : true)
        s.close
      end
      if @config[:tcp_original_host].to_s.size == 0
        uri = "druby://#{s.addr[3]}:#{@config[:tcp_port]}"
      else
        uri = @uri
      end
      self.class.new(uri, s, @config)
    end

    def accept_or_shutdown
      readables, = IO.select([@socket, @shutdown_pipe_r])
      if readables.include? @shutdown_pipe_r
        return nil
      end
      @socket.accept
    end
    private :accept_or_shutdown

    # Graceful shutdown
    def shutdown
      @shutdown_pipe_w.close
    end

    # Check to see if this connection is alive.
    def alive?
      return false unless @socket
      if @socket.to_io.wait_readable(0)
        close
        return false
      end
      true
    end

    def set_sockopt(soc) # :nodoc:
      soc.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1)
    rescue IOError, Errno::ECONNRESET, Errno::EINVAL
      # closed/shutdown socket, ignore error
    end
  end

  module DRbProtocol
    @protocol = [DRbTCPSocket] # default
  end

  class DRbURIOption  # :nodoc:  I don't understand the purpose of this class...
    def initialize(option)
      @option = option.to_s
    end
    attr_reader :option
    def to_s; @option; end

    def ==(other)
      return false unless DRbURIOption === other
      @option == other.option
    end

    def hash
      @option.hash
    end

    alias eql? ==
  end

  # Object wrapping a reference to a remote drb object.
  #
  # Method calls on this object are relayed to the remote
  # object that this object is a stub for.
  class DRbObject

    # Unmarshall a marshalled DRbObject.
    #
    # If the referenced object is located within the local server, then
    # the object itself is returned.  Otherwise, a new DRbObject is
    # created to act as a stub for the remote referenced object.
    def self._load(s)
      uri, ref = Marshal.load(s)

      if DRb.here?(uri)
        obj = DRb.to_obj(ref)
        return obj
      end

      self.new_with(uri, ref)
    end

    # Creates a DRb::DRbObject given the reference information to the remote
    # host +uri+ and object +ref+.

    def self.new_with(uri, ref)
      it = self.allocate
      it.instance_variable_set(:@uri, uri)
      it.instance_variable_set(:@ref, ref)
      it
    end

    # Create a new DRbObject from a URI alone.
    def self.new_with_uri(uri)
      self.new(nil, uri)
    end

    # Marshall this object.
    #
    # The URI and ref of the object are marshalled.
    def _dump(lv)
      Marshal.dump([@uri, @ref])
    end

    # Create a new remote object stub.
    #
    # +obj+ is the (local) object we want to create a stub for.  Normally
    # this is +nil+.  +uri+ is the URI of the remote object that this
    # will be a stub for.
    def initialize(obj, uri=nil)
      @uri = nil
      @ref = nil
      case obj
      when Object
        is_nil = obj.nil?
      when BasicObject
        is_nil = false
      end

      if is_nil
        return if uri.nil?
        @uri, option = DRbProtocol.uri_option(uri, DRb.config)
        @ref = DRbURIOption.new(option) unless option.nil?
      else
        @uri = uri ? uri : (DRb.uri rescue nil)
        @ref = obj ? DRb.to_id(obj) : nil
      end
    end

    # Get the URI of the remote object.
    def __drburi
      @uri
    end

    # Get the reference of the object, if local.
    def __drbref
      @ref
    end

    undef :to_s
    undef :to_a if respond_to?(:to_a)

    # Routes respond_to? to the referenced remote object.
    def respond_to?(msg_id, priv=false)
      case msg_id
      when :_dump
        true
      when :marshal_dump
        false
      else
        method_missing(:respond_to?, msg_id, priv)
      end
    end

    # Routes method calls to the referenced remote object.
    ruby2_keywords def method_missing(msg_id, *a, &b)
      if DRb.here?(@uri)
        obj = DRb.to_obj(@ref)
        DRb.current_server.check_insecure_method(obj, msg_id)
        return obj.__send__(msg_id, *a, &b)
      end

      succ, result = self.class.with_friend(@uri) do
        DRbConn.open(@uri) do |conn|
          conn.send_message(self, msg_id, a, b)
        end
      end

      if succ
        return result
      elsif DRbUnknown === result
        raise result
      else
        bt = self.class.prepare_backtrace(@uri, result)
        result.set_backtrace(bt + caller)
        raise result
      end
    end

    # Given the +uri+ of another host executes the block provided.
    def self.with_friend(uri) # :nodoc:
      friend = DRb.fetch_server(uri)
      return yield() unless friend

      save = Thread.current['DRb']
      Thread.current['DRb'] = { 'server' => friend }
      return yield
    ensure
      Thread.current['DRb'] = save if friend
    end

    # Returns a modified backtrace from +result+ with the +uri+ where each call
    # in the backtrace came from.
    def self.prepare_backtrace(uri, result) # :nodoc:
      prefix = "(#{uri}) "
      bt = []
      result.backtrace.each do |x|
        break if /`__send__'$/ =~ x
        if /\A\(druby:\/\// =~ x
          bt.push(x)
        else
          bt.push(prefix + x)
        end
      end
      bt
    end

    def pretty_print(q)   # :nodoc:
      q.pp_object(self)
    end

    def pretty_print_cycle(q)   # :nodoc:
      q.object_address_group(self) {
        q.breakable
        q.text '...'
      }
    end
  end

  class ThreadObject
    include MonitorMixin

    def initialize(&blk)
      super()
      @wait_ev = new_cond
      @req_ev = new_cond
      @res_ev = new_cond
      @status = :wait
      @req = nil
      @res = nil
      @thread = Thread.new(self, &blk)
    end

    def alive?
      @thread.alive?
    end

    def kill
      @thread.kill
      @thread.join
    end

    def method_missing(msg, *arg, &blk)
      synchronize do
        @wait_ev.wait_until { @status == :wait }
        @req = [msg] + arg
        @status = :req
        @req_ev.broadcast
        @res_ev.wait_until { @status == :res }
        value = @res
        @req = @res = nil
        @status = :wait
        @wait_ev.broadcast
        return value
      end
    end

    def _execute()
      synchronize do
        @req_ev.wait_until { @status == :req }
        @res = yield(@req)
        @status = :res
        @res_ev.signal
      end
    end
  end

  # Class handling the connection between a DRbObject and the
  # server the real object lives on.
  #
  # This class maintains a pool of connections, to reduce the
  # overhead of starting and closing down connections for each
  # method call.
  #
  # This class is used internally by DRbObject.  The user does
  # not normally need to deal with it directly.
  class DRbConn
    POOL_SIZE = 16  # :nodoc:

    def self.make_pool
      ThreadObject.new do |queue|
        pool = []
        while true
          queue._execute do |message|
            case(message[0])
            when :take then
              remote_uri = message[1]
              conn = nil
              new_pool = []
              pool.each do |c|
                if conn.nil? and c.uri == remote_uri
                  conn = c if c.alive?
                else
                  new_pool.push c
                end
              end
              pool = new_pool
              conn
            when :store then
              conn = message[1]
              pool.unshift(conn)
              pool.pop.close while pool.size > POOL_SIZE
              conn
            else
              nil
            end
          end
        end
      end
    end
    @pool_proxy = nil

    def self.stop_pool
      @pool_proxy&.kill
      @pool_proxy = nil
    end

    def self.open(remote_uri)  # :nodoc:
      begin
        @pool_proxy = make_pool unless @pool_proxy&.alive?

        conn = @pool_proxy.take(remote_uri)
        conn = self.new(remote_uri) unless conn
        succ, result = yield(conn)
        return succ, result

      ensure
        if conn
          if succ
            @pool_proxy.store(conn)
          else
            conn.close
          end
        end
      end
    end

    def initialize(remote_uri)  # :nodoc:
      @uri = remote_uri
      @protocol = DRbProtocol.open(remote_uri, DRb.config)
    end
    attr_reader :uri  # :nodoc:

    def send_message(ref, msg_id, arg, block)  # :nodoc:
      @protocol.send_request(ref, msg_id, arg, block)
      @protocol.recv_reply
    end

    def close  # :nodoc:
      @protocol.close
      @protocol = nil
    end

    def alive?  # :nodoc:
      return false unless @protocol
      @protocol.alive?
    end
  end

  # Class representing a drb server instance.
  #
  # A DRbServer must be running in the local process before any incoming
  # dRuby calls can be accepted, or any local objects can be passed as
  # dRuby references to remote processes, even if those local objects are
  # never actually called remotely. You do not need to start a DRbServer
  # in the local process if you are only making outgoing dRuby calls
  # passing marshalled parameters.
  #
  # Unless multiple servers are being used, the local DRbServer is normally
  # started by calling DRb.start_service.
  class DRbServer
    @@acl = nil
    @@idconv = DRbIdConv.new
    @@secondary_server = nil
    @@argc_limit = 256
    @@load_limit = 0xffffffff
    @@verbose = false

    # Set the default value for the :argc_limit option.
    #
    # See #new().  The initial default value is 256.
    def self.default_argc_limit(argc)
      @@argc_limit = argc
    end

    # Set the default value for the :load_limit option.
    #
    # See #new().  The initial default value is 25 MB.
    def self.default_load_limit(sz)
      @@load_limit = sz
    end

    # Set the default access control list to +acl+.  The default ACL is +nil+.
    #
    # See also DRb::ACL and #new()
    def self.default_acl(acl)
      @@acl = acl
    end

    # Set the default value for the :id_conv option.
    #
    # See #new().  The initial default value is a DRbIdConv instance.
    def self.default_id_conv(idconv)
      @@idconv = idconv
    end

    def self.default_safe_level(level) # :nodoc:
      # Remove in Ruby 3.0
    end

    # Set the default value of the :verbose option.
    #
    # See #new().  The initial default value is false.
    def self.verbose=(on)
      @@verbose = on
    end

    # Get the default value of the :verbose option.
    def self.verbose
      @@verbose
    end

    def self.make_config(hash={})  # :nodoc:
      default_config = {
        :idconv => @@idconv,
        :verbose => @@verbose,
        :tcp_acl => @@acl,
        :load_limit => @@load_limit,
        :argc_limit => @@argc_limit,
      }
      default_config.update(hash)
    end

    # Create a new DRbServer instance.
    #
    # +uri+ is the URI to bind to.  This is normally of the form
    # 'druby://<hostname>:<port>' where <hostname> is a hostname of
    # the local machine.  If nil, then the system's default hostname
    # will be bound to, on a port selected by the system; these value
    # can be retrieved from the +uri+ attribute.  'druby:' specifies
    # the default dRuby transport protocol: another protocol, such
    # as 'drbunix:', can be specified instead.
    #
    # +front+ is the front object for the server, that is, the object
    # to which remote method calls on the server will be passed.  If
    # nil, then the server will not accept remote method calls.
    #
    # If +config_or_acl+ is a hash, it is the configuration to
    # use for this server.  The following options are recognised:
    #
    # :idconv :: an id-to-object conversion object.  This defaults
    #            to an instance of the class DRb::DRbIdConv.
    # :verbose :: if true, all unsuccessful remote calls on objects
    #             in the server will be logged to $stdout. false
    #             by default.
    # :tcp_acl :: the access control list for this server.  See
    #             the ACL class from the main dRuby distribution.
    # :load_limit :: the maximum message size in bytes accepted by
    #                the server.  Defaults to 25 MB (26214400).
    # :argc_limit :: the maximum number of arguments to a remote
    #                method accepted by the server.  Defaults to
    #                256.
    # The default values of these options can be modified on
    # a class-wide basis by the class methods #default_argc_limit,
    # #default_load_limit, #default_acl, #default_id_conv,
    # and #verbose=
    #
    # If +config_or_acl+ is not a hash, but is not nil, it is
    # assumed to be the access control list for this server.
    # See the :tcp_acl option for more details.
    #
    # If no other server is currently set as the primary server,
    # this will become the primary server.
    #
    # The server will immediately start running in its own thread.
    def initialize(uri=nil, front=nil, config_or_acl=nil)
      if Hash === config_or_acl
        config = config_or_acl.dup
      else
        acl = config_or_acl || @@acl
        config = {
          :tcp_acl => acl
        }
      end

      @config = self.class.make_config(config)

      @protocol = DRbProtocol.open_server(uri, @config)
      @uri = @protocol.uri
      @exported_uri = [@uri]

      @front = front
      @idconv = @config[:idconv]

      @grp = ThreadGroup.new
      @thread = run

      DRb.regist_server(self)
    end

    # The URI of this DRbServer.
    attr_reader :uri

    # The main thread of this DRbServer.
    #
    # This is the thread that listens for and accepts connections
    # from clients, not that handles each client's request-response
    # session.
    attr_reader :thread

    # The front object of the DRbServer.
    #
    # This object receives remote method calls made on the server's
    # URI alone, with an object id.
    attr_reader :front

    # The configuration of this DRbServer
    attr_reader :config

    def safe_level # :nodoc:
      # Remove in Ruby 3.0
      0
    end

    # Set whether to operate in verbose mode.
    #
    # In verbose mode, failed calls are logged to stdout.
    def verbose=(v); @config[:verbose]=v; end

    # Get whether the server is in verbose mode.
    #
    # In verbose mode, failed calls are logged to stdout.
    def verbose; @config[:verbose]; end

    # Is this server alive?
    def alive?
      @thread.alive?
    end

    # Is +uri+ the URI for this server?
    def here?(uri)
      @exported_uri.include?(uri)
    end

    # Stop this server.
    def stop_service
      DRb.remove_server(self)
      if  Thread.current['DRb'] && Thread.current['DRb']['server'] == self
        Thread.current['DRb']['stop_service'] = true
      else
        shutdown
      end
    end

    # Convert a dRuby reference to the local object it refers to.
    def to_obj(ref)
      return front if ref.nil?
      return front[ref.to_s] if DRbURIOption === ref
      @idconv.to_obj(ref)
    end

    # Convert a local object to a dRuby reference.
    def to_id(obj)
      return nil if obj.__id__ == front.__id__
      @idconv.to_id(obj)
    end

    private

    def shutdown
      current = Thread.current
      if @protocol.respond_to? :shutdown
        @protocol.shutdown
      else
        [@thread, *@grp.list].each { |thread|
          thread.kill unless thread == current # xxx: Thread#kill
        }
      end
      @thread.join unless @thread == current
    end

    ##
    # Starts the DRb main loop in a new thread.

    def run
      Thread.start do
        begin
          while main_loop
          end
        ensure
          @protocol.close if @protocol
        end
      end
    end

    # List of insecure methods.
    #
    # These methods are not callable via dRuby.
    INSECURE_METHOD = [
      :__send__
    ]

    # Has a method been included in the list of insecure methods?
    def insecure_method?(msg_id)
      INSECURE_METHOD.include?(msg_id)
    end

    # Coerce an object to a string, providing our own representation if
    # to_s is not defined for the object.
    def any_to_s(obj)
      "#{obj}:#{obj.class}"
    rescue
      Kernel.instance_method(:to_s).bind_call(obj)
    end

    # Check that a method is callable via dRuby.
    #
    # +obj+ is the object we want to invoke the method on. +msg_id+ is the
    # method name, as a Symbol.
    #
    # If the method is an insecure method (see #insecure_method?) a
    # SecurityError is thrown.  If the method is private or undefined,
    # a NameError is thrown.
    def check_insecure_method(obj, msg_id)
      return true if Proc === obj && msg_id == :__drb_yield
      raise(ArgumentError, "#{any_to_s(msg_id)} is not a symbol") unless Symbol == msg_id.class
      raise(SecurityError, "insecure method `#{msg_id}'") if insecure_method?(msg_id)

      case obj
      when Object
        if obj.private_methods.include?(msg_id)
          desc = any_to_s(obj)
          raise NoMethodError, "private method `#{msg_id}' called for #{desc}"
        elsif obj.protected_methods.include?(msg_id)
          desc = any_to_s(obj)
          raise NoMethodError, "protected method `#{msg_id}' called for #{desc}"
        else
          true
        end
      else
        if Kernel.instance_method(:private_methods).bind(obj).call.include?(msg_id)
          desc = any_to_s(obj)
          raise NoMethodError, "private method `#{msg_id}' called for #{desc}"
        elsif Kernel.instance_method(:protected_methods).bind(obj).call.include?(msg_id)
          desc = any_to_s(obj)
          raise NoMethodError, "protected method `#{msg_id}' called for #{desc}"
        else
          true
        end
      end
    end
    public :check_insecure_method

    class InvokeMethod  # :nodoc:
      def initialize(drb_server, client)
        @drb_server = drb_server
        @client = client
      end

      def perform
        @result = nil
        @succ = false
        setup_message

        if @block
          @result = perform_with_block
        else
          @result = perform_without_block
        end
        @succ = true
        case @result
        when Array
          if @msg_id == :to_ary
            @result = DRbArray.new(@result)
          end
        end
        return @succ, @result
      rescue NoMemoryError, SystemExit, SystemStackError, SecurityError
        raise
      rescue Exception
        @result = $!
        return @succ, @result
      end

      private
      def init_with_client
        obj, msg, argv, block = @client.recv_request
        @obj = obj
        @msg_id = msg.intern
        @argv = argv
        @block = block
      end

      def check_insecure_method
        @drb_server.check_insecure_method(@obj, @msg_id)
      end

      def setup_message
        init_with_client
        check_insecure_method
      end

      def perform_without_block
        if Proc === @obj && @msg_id == :__drb_yield
          if @argv.size == 1
            ary = @argv
          else
            ary = [@argv]
          end
          ary.collect(&@obj)[0]
        else
          @obj.__send__(@msg_id, *@argv)
        end
      end

    end

    require_relative 'invokemethod'
    class InvokeMethod
      include InvokeMethod18Mixin
    end

    def error_print(exception)
      exception.backtrace.inject(true) do |first, x|
        if first
          $stderr.puts "#{x}: #{exception} (#{exception.class})"
        else
          $stderr.puts "\tfrom #{x}"
        end
        false
      end
    end

    # The main loop performed by a DRbServer's internal thread.
    #
    # Accepts a connection from a client, and starts up its own
    # thread to handle it.  This thread loops, receiving requests
    # from the client, invoking them on a local object, and
    # returning responses, until the client closes the connection
    # or a local method call fails.
    def main_loop
      client0 = @protocol.accept
      return nil if !client0
      Thread.start(client0) do |client|
        @grp.add Thread.current
        Thread.current['DRb'] = { 'client' => client ,
                                  'server' => self }
        DRb.mutex.synchronize do
          client_uri = client.uri
          @exported_uri << client_uri unless @exported_uri.include?(client_uri)
        end
        loop do
          begin
            succ = false
            invoke_method = InvokeMethod.new(self, client)
            succ, result = invoke_method.perform
            error_print(result) if !succ && verbose
            unless DRbConnError === result && result.message == 'connection closed'
              client.send_reply(succ, result)
            end
          rescue Exception => e
            error_print(e) if verbose
          ensure
            client.close unless succ
            if Thread.current['DRb']['stop_service']
              shutdown
              break
            end
            break unless succ
          end
        end
      end
    end
  end

  @primary_server = nil

  # Start a dRuby server locally.
  #
  # The new dRuby server will become the primary server, even
  # if another server is currently the primary server.
  #
  # +uri+ is the URI for the server to bind to.  If nil,
  # the server will bind to random port on the default local host
  # name and use the default dRuby protocol.
  #
  # +front+ is the server's front object.  This may be nil.
  #
  # +config+ is the configuration for the new server.  This may
  # be nil.
  #
  # See DRbServer::new.
  def start_service(uri=nil, front=nil, config=nil)
    @primary_server = DRbServer.new(uri, front, config)
  end
  module_function :start_service

  # The primary local dRuby server.
  #
  # This is the server created by the #start_service call.
  attr_accessor :primary_server
  module_function :primary_server=, :primary_server

  # Get the 'current' server.
  #
  # In the context of execution taking place within the main
  # thread of a dRuby server (typically, as a result of a remote
  # call on the server or one of its objects), the current
  # server is that server.  Otherwise, the current server is
  # the primary server.
  #
  # If the above rule fails to find a server, a DRbServerNotFound
  # error is raised.
  def current_server
    drb = Thread.current['DRb']
    server = (drb && drb['server']) ? drb['server'] : @primary_server
    raise DRbServerNotFound unless server
    return server
  end
  module_function :current_server

  # Stop the local dRuby server.
  #
  # This operates on the primary server.  If there is no primary
  # server currently running, it is a noop.
  def stop_service
    @primary_server.stop_service if @primary_server
    @primary_server = nil
  end
  module_function :stop_service

  # Get the URI defining the local dRuby space.
  #
  # This is the URI of the current server.  See #current_server.
  def uri
    drb = Thread.current['DRb']
    client = (drb && drb['client'])
    if client
      uri = client.uri
      return uri if uri
    end
    current_server.uri
  end
  module_function :uri

  # Is +uri+ the URI for the current local server?
  def here?(uri)
    current_server.here?(uri) rescue false
    # (current_server.uri rescue nil) == uri
  end
  module_function :here?

  # Get the configuration of the current server.
  #
  # If there is no current server, this returns the default configuration.
  # See #current_server and DRbServer::make_config.
  def config
    current_server.config
  rescue
    DRbServer.make_config
  end
  module_function :config

  # Get the front object of the current server.
  #
  # This raises a DRbServerNotFound error if there is no current server.
  # See #current_server.
  def front
    current_server.front
  end
  module_function :front

  # Convert a reference into an object using the current server.
  #
  # This raises a DRbServerNotFound error if there is no current server.
  # See #current_server.
  def to_obj(ref)
    current_server.to_obj(ref)
  end

  # Get a reference id for an object using the current server.
  #
  # This raises a DRbServerNotFound error if there is no current server.
  # See #current_server.
  def to_id(obj)
    current_server.to_id(obj)
  end
  module_function :to_id
  module_function :to_obj

  # Get the thread of the primary server.
  #
  # This returns nil if there is no primary server.  See #primary_server.
  def thread
    @primary_server ? @primary_server.thread : nil
  end
  module_function :thread

  # Set the default id conversion object.
  #
  # This is expected to be an instance such as DRb::DRbIdConv that responds to
  # #to_id and #to_obj that can convert objects to and from DRb references.
  #
  # See DRbServer#default_id_conv.
  def install_id_conv(idconv)
    DRbServer.default_id_conv(idconv)
  end
  module_function :install_id_conv

  # Set the default ACL to +acl+.
  #
  # See DRb::DRbServer.default_acl.
  def install_acl(acl)
    DRbServer.default_acl(acl)
  end
  module_function :install_acl

  @mutex = Thread::Mutex.new
  def mutex # :nodoc:
    @mutex
  end
  module_function :mutex

  @server = {}
  # Registers +server+ with DRb.
  #
  # This is called when a new DRb::DRbServer is created.
  #
  # If there is no primary server then +server+ becomes the primary server.
  #
  # Example:
  #
  #  require 'drb'
  #
  #  s = DRb::DRbServer.new # automatically calls regist_server
  #  DRb.fetch_server s.uri #=> #<DRb::DRbServer:0x...>
  def regist_server(server)
    @server[server.uri] = server
    mutex.synchronize do
      @primary_server = server unless @primary_server
    end
  end
  module_function :regist_server

  # Removes +server+ from the list of registered servers.
  def remove_server(server)
    @server.delete(server.uri)
    mutex.synchronize do
      if @primary_server == server
        @primary_server = nil
      end
    end
  end
  module_function :remove_server

  # Retrieves the server with the given +uri+.
  #
  # See also regist_server and remove_server.
  def fetch_server(uri)
    @server[uri]
  end
  module_function :fetch_server
end

# :stopdoc:
DRbObject = DRb::DRbObject
DRbUndumped = DRb::DRbUndumped
DRbIdConv = DRb::DRbIdConv
PKFH[MU�y--share/ruby/uri/ldap.rbnu�[���# frozen_string_literal: false
# = uri/ldap.rb
#
# Author::
#  Takaaki Tateishi <ttate@jaist.ac.jp>
#  Akira Yamada <akira@ruby-lang.org>
# License::
#   URI::LDAP is copyrighted free software by Takaaki Tateishi and Akira Yamada.
#   You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'generic'

module URI

  #
  # LDAP URI SCHEMA (described in RFC2255).
  #--
  # ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]
  #++
  class LDAP < Generic

    # A Default port of 389 for URI::LDAP.
    DEFAULT_PORT = 389

    # An Array of the available components for URI::LDAP.
    COMPONENT = [
      :scheme,
      :host, :port,
      :dn,
      :attributes,
      :scope,
      :filter,
      :extensions,
    ].freeze

    # Scopes available for the starting point.
    #
    # * SCOPE_BASE - the Base DN
    # * SCOPE_ONE  - one level under the Base DN, not including the base DN and
    #   not including any entries under this
    # * SCOPE_SUB  - subtrees, all entries at all levels
    #
    SCOPE = [
      SCOPE_ONE = 'one',
      SCOPE_SUB = 'sub',
      SCOPE_BASE = 'base',
    ].freeze

    #
    # == Description
    #
    # Creates a new URI::LDAP object from components, with syntax checking.
    #
    # The components accepted are host, port, dn, attributes,
    # scope, filter, and extensions.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[host, port, dn, attributes, scope, filter, extensions]</code>.
    #
    # Example:
    #
    #     uri = URI::LDAP.build({:host => 'ldap.example.com',
    #       :dn => '/dc=example'})
    #
    #     uri = URI::LDAP.build(["ldap.example.com", nil,
    #       "/dc=example;dc=com", "query", nil, nil, nil])
    #
    def self.build(args)
      tmp = Util::make_components_hash(self, args)

      if tmp[:dn]
        tmp[:path] = tmp[:dn]
      end

      query = []
      [:extensions, :filter, :scope, :attributes].collect do |x|
        next if !tmp[x] && query.size == 0
        query.unshift(tmp[x])
      end

      tmp[:query] = query.join('?')

      return super(tmp)
    end

    #
    # == Description
    #
    # Creates a new URI::LDAP object from generic URI components as per
    # RFC 2396. No LDAP-specific syntax checking is performed.
    #
    # Arguments are +scheme+, +userinfo+, +host+, +port+, +registry+, +path+,
    # +opaque+, +query+, and +fragment+, in that order.
    #
    # Example:
    #
    #     uri = URI::LDAP.new("ldap", nil, "ldap.example.com", nil, nil,
    #       "/dc=example;dc=com", nil, "query", nil)
    #
    # See also URI::Generic.new.
    #
    def initialize(*arg)
      super(*arg)

      if @fragment
        raise InvalidURIError, 'bad LDAP URL'
      end

      parse_dn
      parse_query
    end

    # Private method to cleanup +dn+ from using the +path+ component attribute.
    def parse_dn
      raise InvalidURIError, 'bad LDAP URL' unless @path
      @dn = @path[1..-1]
    end
    private :parse_dn

    # Private method to cleanup +attributes+, +scope+, +filter+, and +extensions+
    # from using the +query+ component attribute.
    def parse_query
      @attributes = nil
      @scope      = nil
      @filter     = nil
      @extensions = nil

      if @query
        attrs, scope, filter, extensions = @query.split('?')

        @attributes = attrs if attrs && attrs.size > 0
        @scope      = scope if scope && scope.size > 0
        @filter     = filter if filter && filter.size > 0
        @extensions = extensions if extensions && extensions.size > 0
      end
    end
    private :parse_query

    # Private method to assemble +query+ from +attributes+, +scope+, +filter+, and +extensions+.
    def build_path_query
      @path = '/' + @dn

      query = []
      [@extensions, @filter, @scope, @attributes].each do |x|
        next if !x && query.size == 0
        query.unshift(x)
      end
      @query = query.join('?')
    end
    private :build_path_query

    # Returns dn.
    def dn
      @dn
    end

    # Private setter for dn +val+.
    def set_dn(val)
      @dn = val
      build_path_query
      @dn
    end
    protected :set_dn

    # Setter for dn +val+.
    def dn=(val)
      set_dn(val)
      val
    end

    # Returns attributes.
    def attributes
      @attributes
    end

    # Private setter for attributes +val+.
    def set_attributes(val)
      @attributes = val
      build_path_query
      @attributes
    end
    protected :set_attributes

    # Setter for attributes +val+.
    def attributes=(val)
      set_attributes(val)
      val
    end

    # Returns scope.
    def scope
      @scope
    end

    # Private setter for scope +val+.
    def set_scope(val)
      @scope = val
      build_path_query
      @scope
    end
    protected :set_scope

    # Setter for scope +val+.
    def scope=(val)
      set_scope(val)
      val
    end

    # Returns filter.
    def filter
      @filter
    end

    # Private setter for filter +val+.
    def set_filter(val)
      @filter = val
      build_path_query
      @filter
    end
    protected :set_filter

    # Setter for filter +val+.
    def filter=(val)
      set_filter(val)
      val
    end

    # Returns extensions.
    def extensions
      @extensions
    end

    # Private setter for extensions +val+.
    def set_extensions(val)
      @extensions = val
      build_path_query
      @extensions
    end
    protected :set_extensions

    # Setter for extensions +val+.
    def extensions=(val)
      set_extensions(val)
      val
    end

    # Checks if URI has a path.
    # For URI::LDAP this will return +false+.
    def hierarchical?
      false
    end
  end

  @@schemes['LDAP'] = LDAP
end
PKFH[`���share/ruby/uri/ldaps.rbnu�[���# frozen_string_literal: false
# = uri/ldap.rb
#
# License:: You can redistribute it and/or modify it under the same term as Ruby.
#
# See URI for general documentation
#

require_relative 'ldap'

module URI

  # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
  # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
  # see URI::LDAP.
  class LDAPS < LDAP
    # A Default port of 636 for URI::LDAPS
    DEFAULT_PORT = 636
  end
  @@schemes['LDAPS'] = LDAPS
end
PKFH[�q�
�
�share/ruby/uri/generic.rbnu�[���# frozen_string_literal: true

# = uri/generic.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'common'
autoload :IPSocket, 'socket'
autoload :IPAddr, 'ipaddr'

module URI

  #
  # Base class for all URI classes.
  # Implements generic URI syntax as per RFC 2396.
  #
  class Generic
    include URI

    #
    # A Default port of nil for URI::Generic.
    #
    DEFAULT_PORT = nil

    #
    # Returns default port.
    #
    def self.default_port
      self::DEFAULT_PORT
    end

    #
    # Returns default port.
    #
    def default_port
      self.class.default_port
    end

    #
    # An Array of the available components for URI::Generic.
    #
    COMPONENT = [
      :scheme,
      :userinfo, :host, :port, :registry,
      :path, :opaque,
      :query,
      :fragment
    ].freeze

    #
    # Components of the URI in the order.
    #
    def self.component
      self::COMPONENT
    end

    USE_REGISTRY = false # :nodoc:

    def self.use_registry # :nodoc:
      self::USE_REGISTRY
    end

    #
    # == Synopsis
    #
    # See ::new.
    #
    # == Description
    #
    # At first, tries to create a new URI::Generic instance using
    # URI::Generic::build. But, if exception URI::InvalidComponentError is raised,
    # then it does URI::Escape.escape all URI components and tries again.
    #
    def self.build2(args)
      begin
        return self.build(args)
      rescue InvalidComponentError
        if args.kind_of?(Array)
          return self.build(args.collect{|x|
            if x.is_a?(String)
              DEFAULT_PARSER.escape(x)
            else
              x
            end
          })
        elsif args.kind_of?(Hash)
          tmp = {}
          args.each do |key, value|
            tmp[key] = if value
                DEFAULT_PARSER.escape(value)
              else
                value
              end
          end
          return self.build(tmp)
        end
      end
    end

    #
    # == Synopsis
    #
    # See ::new.
    #
    # == Description
    #
    # Creates a new URI::Generic instance from components of URI::Generic
    # with check.  Components are: scheme, userinfo, host, port, registry, path,
    # opaque, query, and fragment. You can provide arguments either by an Array or a Hash.
    # See ::new for hash keys to use or for order of array items.
    #
    def self.build(args)
      if args.kind_of?(Array) &&
          args.size == ::URI::Generic::COMPONENT.size
        tmp = args.dup
      elsif args.kind_of?(Hash)
        tmp = ::URI::Generic::COMPONENT.collect do |c|
          if args.include?(c)
            args[c]
          else
            nil
          end
        end
      else
        component = self.class.component rescue ::URI::Generic::COMPONENT
        raise ArgumentError,
        "expected Array of or Hash of components of #{self.class} (#{component.join(', ')})"
      end

      tmp << nil
      tmp << true
      return self.new(*tmp)
    end

    #
    # == Args
    #
    # +scheme+::
    #   Protocol scheme, i.e. 'http','ftp','mailto' and so on.
    # +userinfo+::
    #   User name and password, i.e. 'sdmitry:bla'.
    # +host+::
    #   Server host name.
    # +port+::
    #   Server port.
    # +registry+::
    #   Registry of naming authorities.
    # +path+::
    #   Path on server.
    # +opaque+::
    #   Opaque part.
    # +query+::
    #   Query data.
    # +fragment+::
    #   Part of the URI after '#' character.
    # +parser+::
    #   Parser for internal use [URI::DEFAULT_PARSER by default].
    # +arg_check+::
    #   Check arguments [false by default].
    #
    # == Description
    #
    # Creates a new URI::Generic instance from ``generic'' components without check.
    #
    def initialize(scheme,
                   userinfo, host, port, registry,
                   path, opaque,
                   query,
                   fragment,
                   parser = DEFAULT_PARSER,
                   arg_check = false)
      @scheme = nil
      @user = nil
      @password = nil
      @host = nil
      @port = nil
      @path = nil
      @query = nil
      @opaque = nil
      @fragment = nil
      @parser = parser == DEFAULT_PARSER ? nil : parser

      if arg_check
        self.scheme = scheme
        self.userinfo = userinfo
        self.hostname = host
        self.port = port
        self.path = path
        self.query = query
        self.opaque = opaque
        self.fragment = fragment
      else
        self.set_scheme(scheme)
        self.set_userinfo(userinfo)
        self.set_host(host)
        self.set_port(port)
        self.set_path(path)
        self.query = query
        self.set_opaque(opaque)
        self.fragment=(fragment)
      end
      if registry
        raise InvalidURIError,
          "the scheme #{@scheme} does not accept registry part: #{registry} (or bad hostname?)"
      end

      @scheme&.freeze
      self.set_path('') if !@path && !@opaque # (see RFC2396 Section 5.2)
      self.set_port(self.default_port) if self.default_port && !@port
    end

    #
    # Returns the scheme component of the URI.
    #
    #   URI("http://foo/bar/baz").scheme #=> "http"
    #
    attr_reader :scheme

    # Returns the host component of the URI.
    #
    #   URI("http://foo/bar/baz").host #=> "foo"
    #
    # It returns nil if no host component exists.
    #
    #   URI("mailto:foo@example.org").host #=> nil
    #
    # The component does not contain the port number.
    #
    #   URI("http://foo:8080/bar/baz").host #=> "foo"
    #
    # Since IPv6 addresses are wrapped with brackets in URIs,
    # this method returns IPv6 addresses wrapped with brackets.
    # This form is not appropriate to pass to socket methods such as TCPSocket.open.
    # If unwrapped host names are required, use the #hostname method.
    #
    #   URI("http://[::1]/bar/baz").host     #=> "[::1]"
    #   URI("http://[::1]/bar/baz").hostname #=> "::1"
    #
    attr_reader :host

    # Returns the port component of the URI.
    #
    #   URI("http://foo/bar/baz").port      #=> 80
    #   URI("http://foo:8080/bar/baz").port #=> 8080
    #
    attr_reader :port

    def registry # :nodoc:
      nil
    end

    # Returns the path component of the URI.
    #
    #   URI("http://foo/bar/baz").path #=> "/bar/baz"
    #
    attr_reader :path

    # Returns the query component of the URI.
    #
    #   URI("http://foo/bar/baz?search=FooBar").query #=> "search=FooBar"
    #
    attr_reader :query

    # Returns the opaque part of the URI.
    #
    #   URI("mailto:foo@example.org").opaque #=> "foo@example.org"
    #   URI("http://foo/bar/baz").opaque     #=> nil
    #
    # The portion of the path that does not make use of the slash '/'.
    # The path typically refers to an absolute path or an opaque part.
    # (See RFC2396 Section 3 and 5.2.)
    #
    attr_reader :opaque

    # Returns the fragment component of the URI.
    #
    #   URI("http://foo/bar/baz?search=FooBar#ponies").fragment #=> "ponies"
    #
    attr_reader :fragment

    # Returns the parser to be used.
    #
    # Unless a URI::Parser is defined, DEFAULT_PARSER is used.
    #
    def parser
      if !defined?(@parser) || !@parser
        DEFAULT_PARSER
      else
        @parser || DEFAULT_PARSER
      end
    end

    # Replaces self by other URI object.
    #
    def replace!(oth)
      if self.class != oth.class
        raise ArgumentError, "expected #{self.class} object"
      end

      component.each do |c|
        self.__send__("#{c}=", oth.__send__(c))
      end
    end
    private :replace!

    #
    # Components of the URI in the order.
    #
    def component
      self.class.component
    end

    #
    # Checks the scheme +v+ component against the URI::Parser Regexp for :SCHEME.
    #
    def check_scheme(v)
      if v && parser.regexp[:SCHEME] !~ v
        raise InvalidComponentError,
          "bad component(expected scheme component): #{v}"
      end

      return true
    end
    private :check_scheme

    # Protected setter for the scheme component +v+.
    #
    # See also URI::Generic.scheme=.
    #
    def set_scheme(v)
      @scheme = v&.downcase
    end
    protected :set_scheme

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the scheme component +v+
    # (with validation).
    #
    # See also URI::Generic.check_scheme.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.scheme = "https"
    #   uri.to_s  #=> "https://my.example.com"
    #
    def scheme=(v)
      check_scheme(v)
      set_scheme(v)
      v
    end

    #
    # Checks the +user+ and +password+.
    #
    # If +password+ is not provided, then +user+ is
    # split, using URI::Generic.split_userinfo, to
    # pull +user+ and +password.
    #
    # See also URI::Generic.check_user, URI::Generic.check_password.
    #
    def check_userinfo(user, password = nil)
      if !password
        user, password = split_userinfo(user)
      end
      check_user(user)
      check_password(password, user)

      return true
    end
    private :check_userinfo

    #
    # Checks the user +v+ component for RFC2396 compliance
    # and against the URI::Parser Regexp for :USERINFO.
    #
    # Can not have a registry or opaque component defined,
    # with a user component defined.
    #
    def check_user(v)
      if @opaque
        raise InvalidURIError,
          "can not set user with opaque"
      end

      return v unless v

      if parser.regexp[:USERINFO] !~ v
        raise InvalidComponentError,
          "bad component(expected userinfo component or user component): #{v}"
      end

      return true
    end
    private :check_user

    #
    # Checks the password +v+ component for RFC2396 compliance
    # and against the URI::Parser Regexp for :USERINFO.
    #
    # Can not have a registry or opaque component defined,
    # with a user component defined.
    #
    def check_password(v, user = @user)
      if @opaque
        raise InvalidURIError,
          "can not set password with opaque"
      end
      return v unless v

      if !user
        raise InvalidURIError,
          "password component depends user component"
      end

      if parser.regexp[:USERINFO] !~ v
        raise InvalidComponentError,
          "bad password component"
      end

      return true
    end
    private :check_password

    #
    # Sets userinfo, argument is string like 'name:pass'.
    #
    def userinfo=(userinfo)
      if userinfo.nil?
        return nil
      end
      check_userinfo(*userinfo)
      set_userinfo(*userinfo)
      # returns userinfo
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the +user+ component
    # (with validation).
    #
    # See also URI::Generic.check_user.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://john:S3nsit1ve@my.example.com")
    #   uri.user = "sam"
    #   uri.to_s  #=> "http://sam:V3ry_S3nsit1ve@my.example.com"
    #
    def user=(user)
      check_user(user)
      set_user(user)
      # returns user
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the +password+ component
    # (with validation).
    #
    # See also URI::Generic.check_password.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://john:S3nsit1ve@my.example.com")
    #   uri.password = "V3ry_S3nsit1ve"
    #   uri.to_s  #=> "http://john:V3ry_S3nsit1ve@my.example.com"
    #
    def password=(password)
      check_password(password)
      set_password(password)
      # returns password
    end

    # Protected setter for the +user+ component, and +password+ if available
    # (with validation).
    #
    # See also URI::Generic.userinfo=.
    #
    def set_userinfo(user, password = nil)
      unless password
        user, password = split_userinfo(user)
      end
      @user     = user
      @password = password if password

      [@user, @password]
    end
    protected :set_userinfo

    # Protected setter for the user component +v+.
    #
    # See also URI::Generic.user=.
    #
    def set_user(v)
      set_userinfo(v, @password)
      v
    end
    protected :set_user

    # Protected setter for the password component +v+.
    #
    # See also URI::Generic.password=.
    #
    def set_password(v)
      @password = v
      # returns v
    end
    protected :set_password

    # Returns the userinfo +ui+ as <code>[user, password]</code>
    # if properly formatted as 'user:password'.
    def split_userinfo(ui)
      return nil, nil unless ui
      user, password = ui.split(':', 2)

      return user, password
    end
    private :split_userinfo

    # Escapes 'user:password' +v+ based on RFC 1738 section 3.1.
    def escape_userpass(v)
      parser.escape(v, /[@:\/]/o) # RFC 1738 section 3.1 #/
    end
    private :escape_userpass

    # Returns the userinfo, either as 'user' or 'user:password'.
    def userinfo
      if @user.nil?
        nil
      elsif @password.nil?
        @user
      else
        @user + ':' + @password
      end
    end

    # Returns the user component.
    def user
      @user
    end

    # Returns the password component.
    def password
      @password
    end

    #
    # Checks the host +v+ component for RFC2396 compliance
    # and against the URI::Parser Regexp for :HOST.
    #
    # Can not have a registry or opaque component defined,
    # with a host component defined.
    #
    def check_host(v)
      return v unless v

      if @opaque
        raise InvalidURIError,
          "can not set host with registry or opaque"
      elsif parser.regexp[:HOST] !~ v
        raise InvalidComponentError,
          "bad component(expected host component): #{v}"
      end

      return true
    end
    private :check_host

    # Protected setter for the host component +v+.
    #
    # See also URI::Generic.host=.
    #
    def set_host(v)
      @host = v
    end
    protected :set_host

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the host component +v+
    # (with validation).
    #
    # See also URI::Generic.check_host.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.host = "foo.com"
    #   uri.to_s  #=> "http://foo.com"
    #
    def host=(v)
      check_host(v)
      set_host(v)
      v
    end

    # Extract the host part of the URI and unwrap brackets for IPv6 addresses.
    #
    # This method is the same as URI::Generic#host except
    # brackets for IPv6 (and future IP) addresses are removed.
    #
    #   uri = URI("http://[::1]/bar")
    #   uri.hostname      #=> "::1"
    #   uri.host          #=> "[::1]"
    #
    def hostname
      v = self.host
      /\A\[(.*)\]\z/ =~ v ? $1 : v
    end

    # Sets the host part of the URI as the argument with brackets for IPv6 addresses.
    #
    # This method is the same as URI::Generic#host= except
    # the argument can be a bare IPv6 address.
    #
    #   uri = URI("http://foo/bar")
    #   uri.hostname = "::1"
    #   uri.to_s  #=> "http://[::1]/bar"
    #
    # If the argument seems to be an IPv6 address,
    # it is wrapped with brackets.
    #
    def hostname=(v)
      v = "[#{v}]" if /\A\[.*\]\z/ !~ v && /:/ =~ v
      self.host = v
    end

    #
    # Checks the port +v+ component for RFC2396 compliance
    # and against the URI::Parser Regexp for :PORT.
    #
    # Can not have a registry or opaque component defined,
    # with a port component defined.
    #
    def check_port(v)
      return v unless v

      if @opaque
        raise InvalidURIError,
          "can not set port with registry or opaque"
      elsif !v.kind_of?(Integer) && parser.regexp[:PORT] !~ v
        raise InvalidComponentError,
          "bad component(expected port component): #{v.inspect}"
      end

      return true
    end
    private :check_port

    # Protected setter for the port component +v+.
    #
    # See also URI::Generic.port=.
    #
    def set_port(v)
      v = v.empty? ? nil : v.to_i unless !v || v.kind_of?(Integer)
      @port = v
    end
    protected :set_port

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the port component +v+
    # (with validation).
    #
    # See also URI::Generic.check_port.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.port = 8080
    #   uri.to_s  #=> "http://my.example.com:8080"
    #
    def port=(v)
      check_port(v)
      set_port(v)
      port
    end

    def check_registry(v) # :nodoc:
      raise InvalidURIError, "can not set registry"
    end
    private :check_registry

    def set_registry(v) #:nodoc:
      raise InvalidURIError, "can not set registry"
    end
    protected :set_registry

    def registry=(v)
      raise InvalidURIError, "can not set registry"
    end

    #
    # Checks the path +v+ component for RFC2396 compliance
    # and against the URI::Parser Regexp
    # for :ABS_PATH and :REL_PATH.
    #
    # Can not have a opaque component defined,
    # with a path component defined.
    #
    def check_path(v)
      # raise if both hier and opaque are not nil, because:
      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      if v && @opaque
        raise InvalidURIError,
          "path conflicts with opaque"
      end

      # If scheme is ftp, path may be relative.
      # See RFC 1738 section 3.2.2, and RFC 2396.
      if @scheme && @scheme != "ftp"
        if v && v != '' && parser.regexp[:ABS_PATH] !~ v
          raise InvalidComponentError,
            "bad component(expected absolute path component): #{v}"
        end
      else
        if v && v != '' && parser.regexp[:ABS_PATH] !~ v &&
           parser.regexp[:REL_PATH] !~ v
          raise InvalidComponentError,
            "bad component(expected relative path component): #{v}"
        end
      end

      return true
    end
    private :check_path

    # Protected setter for the path component +v+.
    #
    # See also URI::Generic.path=.
    #
    def set_path(v)
      @path = v
    end
    protected :set_path

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the path component +v+
    # (with validation).
    #
    # See also URI::Generic.check_path.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com/pub/files")
    #   uri.path = "/faq/"
    #   uri.to_s  #=> "http://my.example.com/faq/"
    #
    def path=(v)
      check_path(v)
      set_path(v)
      v
    end

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the query component +v+.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com/?id=25")
    #   uri.query = "id=1"
    #   uri.to_s  #=> "http://my.example.com/?id=1"
    #
    def query=(v)
      return @query = nil unless v
      raise InvalidURIError, "query conflicts with opaque" if @opaque

      x = v.to_str
      v = x.dup if x.equal? v
      v.encode!(Encoding::UTF_8) rescue nil
      v.delete!("\t\r\n")
      v.force_encoding(Encoding::ASCII_8BIT)
      raise InvalidURIError, "invalid percent escape: #{$1}" if /(%\H\H)/n.match(v)
      v.gsub!(/(?!%\h\h|[!$-&(-;=?-_a-~])./n.freeze){'%%%02X' % $&.ord}
      v.force_encoding(Encoding::US_ASCII)
      @query = v
    end

    #
    # Checks the opaque +v+ component for RFC2396 compliance and
    # against the URI::Parser Regexp for :OPAQUE.
    #
    # Can not have a host, port, user, or path component defined,
    # with an opaque component defined.
    #
    def check_opaque(v)
      return v unless v

      # raise if both hier and opaque are not nil, because:
      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      if @host || @port || @user || @path  # userinfo = @user + ':' + @password
        raise InvalidURIError,
          "can not set opaque with host, port, userinfo or path"
      elsif v && parser.regexp[:OPAQUE] !~ v
        raise InvalidComponentError,
          "bad component(expected opaque component): #{v}"
      end

      return true
    end
    private :check_opaque

    # Protected setter for the opaque component +v+.
    #
    # See also URI::Generic.opaque=.
    #
    def set_opaque(v)
      @opaque = v
    end
    protected :set_opaque

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the opaque component +v+
    # (with validation).
    #
    # See also URI::Generic.check_opaque.
    #
    def opaque=(v)
      check_opaque(v)
      set_opaque(v)
      v
    end

    #
    # Checks the fragment +v+ component against the URI::Parser Regexp for :FRAGMENT.
    #
    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the fragment component +v+
    # (with validation).
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com/?id=25#time=1305212049")
    #   uri.fragment = "time=1305212086"
    #   uri.to_s  #=> "http://my.example.com/?id=25#time=1305212086"
    #
    def fragment=(v)
      return @fragment = nil unless v

      x = v.to_str
      v = x.dup if x.equal? v
      v.encode!(Encoding::UTF_8) rescue nil
      v.delete!("\t\r\n")
      v.force_encoding(Encoding::ASCII_8BIT)
      v.gsub!(/(?!%\h\h|[!-~])./n){'%%%02X' % $&.ord}
      v.force_encoding(Encoding::US_ASCII)
      @fragment = v
    end

    #
    # Returns true if URI is hierarchical.
    #
    # == Description
    #
    # URI has components listed in order of decreasing significance from left to right,
    # see RFC3986 https://tools.ietf.org/html/rfc3986 1.2.3.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com/")
    #   uri.hierarchical?
    #   #=> true
    #   uri = URI.parse("mailto:joe@example.com")
    #   uri.hierarchical?
    #   #=> false
    #
    def hierarchical?
      if @path
        true
      else
        false
      end
    end

    #
    # Returns true if URI has a scheme (e.g. http:// or https://) specified.
    #
    def absolute?
      if @scheme
        true
      else
        false
      end
    end
    alias absolute absolute?

    #
    # Returns true if URI does not have a scheme (e.g. http:// or https://) specified.
    #
    def relative?
      !absolute?
    end

    #
    # Returns an Array of the path split on '/'.
    #
    def split_path(path)
      path.split("/", -1)
    end
    private :split_path

    #
    # Merges a base path +base+, with relative path +rel+,
    # returns a modified base path.
    #
    def merge_path(base, rel)

      # RFC2396, Section 5.2, 5)
      # RFC2396, Section 5.2, 6)
      base_path = split_path(base)
      rel_path  = split_path(rel)

      # RFC2396, Section 5.2, 6), a)
      base_path << '' if base_path.last == '..'
      while i = base_path.index('..')
        base_path.slice!(i - 1, 2)
      end

      if (first = rel_path.first) and first.empty?
        base_path.clear
        rel_path.shift
      end

      # RFC2396, Section 5.2, 6), c)
      # RFC2396, Section 5.2, 6), d)
      rel_path.push('') if rel_path.last == '.' || rel_path.last == '..'
      rel_path.delete('.')

      # RFC2396, Section 5.2, 6), e)
      tmp = []
      rel_path.each do |x|
        if x == '..' &&
            !(tmp.empty? || tmp.last == '..')
          tmp.pop
        else
          tmp << x
        end
      end

      add_trailer_slash = !tmp.empty?
      if base_path.empty?
        base_path = [''] # keep '/' for root directory
      elsif add_trailer_slash
        base_path.pop
      end
      while x = tmp.shift
        if x == '..'
          # RFC2396, Section 4
          # a .. or . in an absolute path has no special meaning
          base_path.pop if base_path.size > 1
        else
          # if x == '..'
          #   valid absolute (but abnormal) path "/../..."
          # else
          #   valid absolute path
          # end
          base_path << x
          tmp.each {|t| base_path << t}
          add_trailer_slash = false
          break
        end
      end
      base_path.push('') if add_trailer_slash

      return base_path.join('/')
    end
    private :merge_path

    #
    # == Args
    #
    # +oth+::
    #    URI or String
    #
    # == Description
    #
    # Destructive form of #merge.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.merge!("/main.rbx?page=1")
    #   uri.to_s  # => "http://my.example.com/main.rbx?page=1"
    #
    def merge!(oth)
      t = merge(oth)
      if self == t
        nil
      else
        replace!(t)
        self
      end
    end

    #
    # == Args
    #
    # +oth+::
    #    URI or String
    #
    # == Description
    #
    # Merges two URIs.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.merge("/main.rbx?page=1")
    #   # => "http://my.example.com/main.rbx?page=1"
    #
    def merge(oth)
      rel = parser.send(:convert_to_uri, oth)

      if rel.absolute?
        #raise BadURIError, "both URI are absolute" if absolute?
        # hmm... should return oth for usability?
        return rel
      end

      unless self.absolute?
        raise BadURIError, "both URI are relative"
      end

      base = self.dup

      authority = rel.userinfo || rel.host || rel.port

      # RFC2396, Section 5.2, 2)
      if (rel.path.nil? || rel.path.empty?) && !authority && !rel.query
        base.fragment=(rel.fragment) if rel.fragment
        return base
      end

      base.query = nil
      base.fragment=(nil)

      # RFC2396, Section 5.2, 4)
      if !authority
        base.set_path(merge_path(base.path, rel.path)) if base.path && rel.path
      else
        # RFC2396, Section 5.2, 4)
        base.set_path(rel.path) if rel.path
      end

      # RFC2396, Section 5.2, 7)
      base.set_userinfo(rel.userinfo) if rel.userinfo
      base.set_host(rel.host)         if rel.host
      base.set_port(rel.port)         if rel.port
      base.query = rel.query       if rel.query
      base.fragment=(rel.fragment) if rel.fragment

      return base
    end # merge
    alias + merge

    # :stopdoc:
    def route_from_path(src, dst)
      case dst
      when src
        # RFC2396, Section 4.2
        return ''
      when %r{(?:\A|/)\.\.?(?:/|\z)}
        # dst has abnormal absolute path,
        # like "/./", "/../", "/x/../", ...
        return dst.dup
      end

      src_path = src.scan(%r{[^/]*/})
      dst_path = dst.scan(%r{[^/]*/?})

      # discard same parts
      while !dst_path.empty? && dst_path.first == src_path.first
        src_path.shift
        dst_path.shift
      end

      tmp = dst_path.join

      # calculate
      if src_path.empty?
        if tmp.empty?
          return './'
        elsif dst_path.first.include?(':') # (see RFC2396 Section 5)
          return './' + tmp
        else
          return tmp
        end
      end

      return '../' * src_path.size + tmp
    end
    private :route_from_path
    # :startdoc:

    # :stopdoc:
    def route_from0(oth)
      oth = parser.send(:convert_to_uri, oth)
      if self.relative?
        raise BadURIError,
          "relative URI: #{self}"
      end
      if oth.relative?
        raise BadURIError,
          "relative URI: #{oth}"
      end

      if self.scheme != oth.scheme
        return self, self.dup
      end
      rel = URI::Generic.new(nil, # it is relative URI
                             self.userinfo, self.host, self.port,
                             nil, self.path, self.opaque,
                             self.query, self.fragment, parser)

      if rel.userinfo != oth.userinfo ||
          rel.host.to_s.downcase != oth.host.to_s.downcase ||
          rel.port != oth.port

        if self.userinfo.nil? && self.host.nil?
          return self, self.dup
        end

        rel.set_port(nil) if rel.port == oth.default_port
        return rel, rel
      end
      rel.set_userinfo(nil)
      rel.set_host(nil)
      rel.set_port(nil)

      if rel.path && rel.path == oth.path
        rel.set_path('')
        rel.query = nil if rel.query == oth.query
        return rel, rel
      elsif rel.opaque && rel.opaque == oth.opaque
        rel.set_opaque('')
        rel.query = nil if rel.query == oth.query
        return rel, rel
      end

      # you can modify `rel', but can not `oth'.
      return oth, rel
    end
    private :route_from0
    # :startdoc:

    #
    # == Args
    #
    # +oth+::
    #    URI or String
    #
    # == Description
    #
    # Calculates relative path from oth to self.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse('http://my.example.com/main.rbx?page=1')
    #   uri.route_from('http://my.example.com')
    #   #=> #<URI::Generic /main.rbx?page=1>
    #
    def route_from(oth)
      # you can modify `rel', but can not `oth'.
      begin
        oth, rel = route_from0(oth)
      rescue
        raise $!.class, $!.message
      end
      if oth == rel
        return rel
      end

      rel.set_path(route_from_path(oth.path, self.path))
      if rel.path == './' && self.query
        # "./?foo" -> "?foo"
        rel.set_path('')
      end

      return rel
    end

    alias - route_from

    #
    # == Args
    #
    # +oth+::
    #    URI or String
    #
    # == Description
    #
    # Calculates relative path to oth from self.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse('http://my.example.com')
    #   uri.route_to('http://my.example.com/main.rbx?page=1')
    #   #=> #<URI::Generic /main.rbx?page=1>
    #
    def route_to(oth)
      parser.send(:convert_to_uri, oth).route_from(self)
    end

    #
    # Returns normalized URI.
    #
    #   require 'uri'
    #
    #   URI("HTTP://my.EXAMPLE.com").normalize
    #   #=> #<URI::HTTP http://my.example.com/>
    #
    # Normalization here means:
    #
    # * scheme and host are converted to lowercase,
    # * an empty path component is set to "/".
    #
    def normalize
      uri = dup
      uri.normalize!
      uri
    end

    #
    # Destructive version of #normalize.
    #
    def normalize!
      if path&.empty?
        set_path('/')
      end
      if scheme && scheme != scheme.downcase
        set_scheme(self.scheme.downcase)
      end
      if host && host != host.downcase
        set_host(self.host.downcase)
      end
    end

    #
    # Constructs String from URI.
    #
    def to_s
      str = ''.dup
      if @scheme
        str << @scheme
        str << ':'
      end

      if @opaque
        str << @opaque
      else
        if @host || %w[file postgres].include?(@scheme)
          str << '//'
        end
        if self.userinfo
          str << self.userinfo
          str << '@'
        end
        if @host
          str << @host
        end
        if @port && @port != self.default_port
          str << ':'
          str << @port.to_s
        end
        str << @path
        if @query
          str << '?'
          str << @query
        end
      end
      if @fragment
        str << '#'
        str << @fragment
      end
      str
    end

    #
    # Compares two URIs.
    #
    def ==(oth)
      if self.class == oth.class
        self.normalize.component_ary == oth.normalize.component_ary
      else
        false
      end
    end

    def hash
      self.component_ary.hash
    end

    def eql?(oth)
      self.class == oth.class &&
      parser == oth.parser &&
      self.component_ary.eql?(oth.component_ary)
    end

=begin

--- URI::Generic#===(oth)

=end
#    def ===(oth)
#      raise NotImplementedError
#    end

=begin
=end


    # Returns an Array of the components defined from the COMPONENT Array.
    def component_ary
      component.collect do |x|
        self.send(x)
      end
    end
    protected :component_ary

    # == Args
    #
    # +components+::
    #    Multiple Symbol arguments defined in URI::HTTP.
    #
    # == Description
    #
    # Selects specified components from URI.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse('http://myuser:mypass@my.example.com/test.rbx')
    #   uri.select(:userinfo, :host, :path)
    #   # => ["myuser:mypass", "my.example.com", "/test.rbx"]
    #
    def select(*components)
      components.collect do |c|
        if component.include?(c)
          self.send(c)
        else
          raise ArgumentError,
            "expected of components of #{self.class} (#{self.class.component.join(', ')})"
        end
      end
    end

    def inspect
      "#<#{self.class} #{self}>"
    end

    #
    # == Args
    #
    # +v+::
    #    URI or String
    #
    # == Description
    #
    # Attempts to parse other URI +oth+,
    # returns [parsed_oth, self].
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("http://my.example.com")
    #   uri.coerce("http://foo.com")
    #   #=> [#<URI::HTTP http://foo.com>, #<URI::HTTP http://my.example.com>]
    #
    def coerce(oth)
      case oth
      when String
        oth = parser.parse(oth)
      else
        super
      end

      return oth, self
    end

    # Returns a proxy URI.
    # The proxy URI is obtained from environment variables such as http_proxy,
    # ftp_proxy, no_proxy, etc.
    # If there is no proper proxy, nil is returned.
    #
    # If the optional parameter +env+ is specified, it is used instead of ENV.
    #
    # Note that capitalized variables (HTTP_PROXY, FTP_PROXY, NO_PROXY, etc.)
    # are examined, too.
    #
    # But http_proxy and HTTP_PROXY is treated specially under CGI environment.
    # It's because HTTP_PROXY may be set by Proxy: header.
    # So HTTP_PROXY is not used.
    # http_proxy is not used too if the variable is case insensitive.
    # CGI_HTTP_PROXY can be used instead.
    def find_proxy(env=ENV)
      raise BadURIError, "relative URI: #{self}" if self.relative?
      name = self.scheme.downcase + '_proxy'
      proxy_uri = nil
      if name == 'http_proxy' && env.include?('REQUEST_METHOD') # CGI?
        # HTTP_PROXY conflicts with *_proxy for proxy settings and
        # HTTP_* for header information in CGI.
        # So it should be careful to use it.
        pairs = env.reject {|k, v| /\Ahttp_proxy\z/i !~ k }
        case pairs.length
        when 0 # no proxy setting anyway.
          proxy_uri = nil
        when 1
          k, _ = pairs.shift
          if k == 'http_proxy' && env[k.upcase] == nil
            # http_proxy is safe to use because ENV is case sensitive.
            proxy_uri = env[name]
          else
            proxy_uri = nil
          end
        else # http_proxy is safe to use because ENV is case sensitive.
          proxy_uri = env.to_hash[name]
        end
        if !proxy_uri
          # Use CGI_HTTP_PROXY.  cf. libwww-perl.
          proxy_uri = env["CGI_#{name.upcase}"]
        end
      elsif name == 'http_proxy'
        unless proxy_uri = env[name]
          if proxy_uri = env[name.upcase]
            warn 'The environment variable HTTP_PROXY is discouraged.  Use http_proxy.', uplevel: 1
          end
        end
      else
        proxy_uri = env[name] || env[name.upcase]
      end

      if proxy_uri.nil? || proxy_uri.empty?
        return nil
      end

      if self.hostname
        begin
          addr = IPSocket.getaddress(self.hostname)
          return nil if /\A127\.|\A::1\z/ =~ addr
        rescue SocketError
        end
      end

      name = 'no_proxy'
      if no_proxy = env[name] || env[name.upcase]
        return nil unless URI::Generic.use_proxy?(self.hostname, addr, self.port, no_proxy)
      end
      URI.parse(proxy_uri)
    end

    def self.use_proxy?(hostname, addr, port, no_proxy) # :nodoc:
      hostname = hostname.downcase
      dothostname = ".#{hostname}"
      no_proxy.scan(/([^:,\s]+)(?::(\d+))?/) {|p_host, p_port|
        if !p_port || port == p_port.to_i
          if p_host.start_with?('.')
            return false if hostname.end_with?(p_host.downcase)
          else
            return false if dothostname.end_with?(".#{p_host.downcase}")
          end
          if addr
            begin
              return false if IPAddr.new(p_host).include?(addr)
            rescue IPAddr::InvalidAddressError
              next
            end
          end
        end
      }
      true
    end
  end
end
PKFH[�bUb�� share/ruby/uri/rfc3986_parser.rbnu�[���# frozen_string_literal: false
module URI
  class RFC3986_Parser # :nodoc:
    # URI defined in RFC3986
    # this regexp is modified not to host is not empty string
    RFC3986_URI = /\A(?<URI>(?<scheme>[A-Za-z][+\-.0-9A-Za-z]*+):(?<hier-part>\/\/(?<authority>(?:(?<userinfo>(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*+)@)?(?<host>(?<IP-literal>\[(?:(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{1,4}?::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:)?\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h++\.[!$&-.0-;=A-Z_a-z~]++))\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])++))?(?::(?<port>\d*+))?)(?<path-abempty>(?:\/(?<segment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*+))*+)|(?<path-absolute>\/(?:(?<segment-nz>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])++)(?:\/\g<segment>)*+)?)|(?<path-rootless>\g<segment-nz>(?:\/\g<segment>)*+)|(?<path-empty>))(?:\?(?<query>[^#]*+))?(?:\#(?<fragment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*+))?)\z/
    RFC3986_relative_ref = /\A(?<relative-ref>(?<relative-part>\/\/(?<authority>(?:(?<userinfo>(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*+)@)?(?<host>(?<IP-literal>\[(?:(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{1,4}?::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:){,1}\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h++\.[!$&-.0-;=A-Z_a-z~]++))\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])++))?(?::(?<port>\d*+))?)(?<path-abempty>(?:\/(?<segment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*+))*+)|(?<path-absolute>\/(?:(?<segment-nz>(?:%\h\h|[!$&-.0-;=@-Z_a-z~])++)(?:\/\g<segment>)*+)?)|(?<path-noscheme>(?<segment-nz-nc>(?:%\h\h|[!$&-.0-9;=@-Z_a-z~])++)(?:\/\g<segment>)*+)|(?<path-empty>))(?:\?(?<query>[^#]*+))?(?:\#(?<fragment>(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*+))?)\z/
    attr_reader :regexp

    def initialize
      @regexp = default_regexp.each_value(&:freeze).freeze
    end

    def split(uri) #:nodoc:
      begin
        uri = uri.to_str
      rescue NoMethodError
        raise InvalidURIError, "bad URI(is not URI?): #{uri.inspect}"
      end
      uri.ascii_only? or
        raise InvalidURIError, "URI must be ascii only #{uri.dump}"
      if m = RFC3986_URI.match(uri)
        query = m["query".freeze]
        scheme = m["scheme".freeze]
        opaque = m["path-rootless".freeze]
        if opaque
          opaque << "?#{query}" if query
          [ scheme,
            nil, # userinfo
            nil, # host
            nil, # port
            nil, # registry
            nil, # path
            opaque,
            nil, # query
            m["fragment".freeze]
          ]
        else # normal
          [ scheme,
            m["userinfo".freeze],
            m["host".freeze],
            m["port".freeze],
            nil, # registry
            (m["path-abempty".freeze] ||
             m["path-absolute".freeze] ||
             m["path-empty".freeze]),
            nil, # opaque
            query,
            m["fragment".freeze]
          ]
        end
      elsif m = RFC3986_relative_ref.match(uri)
        [ nil, # scheme
          m["userinfo".freeze],
          m["host".freeze],
          m["port".freeze],
          nil, # registry,
          (m["path-abempty".freeze] ||
           m["path-absolute".freeze] ||
           m["path-noscheme".freeze] ||
           m["path-empty".freeze]),
          nil, # opaque
          m["query".freeze],
          m["fragment".freeze]
        ]
      else
        raise InvalidURIError, "bad URI(is not URI?): #{uri.inspect}"
      end
    end

    def parse(uri) # :nodoc:
      scheme, userinfo, host, port,
        registry, path, opaque, query, fragment = self.split(uri)
      scheme_list = URI.scheme_list
      if scheme && scheme_list.include?(uc = scheme.upcase)
        scheme_list[uc].new(scheme, userinfo, host, port,
                            registry, path, opaque, query,
                            fragment, self)
      else
        Generic.new(scheme, userinfo, host, port,
                    registry, path, opaque, query,
                    fragment, self)
      end
    end


    def join(*uris) # :nodoc:
      uris[0] = convert_to_uri(uris[0])
      uris.inject :merge
    end

    @@to_s = Kernel.instance_method(:to_s)
    def inspect
      @@to_s.bind_call(self)
    end

    private

    def default_regexp # :nodoc:
      {
        SCHEME: /\A[A-Za-z][A-Za-z0-9+\-.]*\z/,
        USERINFO: /\A(?:%\h\h|[!$&-.0-;=A-Z_a-z~])*\z/,
        HOST: /\A(?:(?<IP-literal>\[(?:(?<IPv6address>(?:\h{1,4}:){6}(?<ls32>\h{1,4}:\h{1,4}|(?<IPv4address>(?<dec-octet>[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]|\d)\.\g<dec-octet>\.\g<dec-octet>\.\g<dec-octet>))|::(?:\h{1,4}:){5}\g<ls32>|\h{,4}::(?:\h{1,4}:){4}\g<ls32>|(?:(?:\h{1,4}:)?\h{1,4})?::(?:\h{1,4}:){3}\g<ls32>|(?:(?:\h{1,4}:){,2}\h{1,4})?::(?:\h{1,4}:){2}\g<ls32>|(?:(?:\h{1,4}:){,3}\h{1,4})?::\h{1,4}:\g<ls32>|(?:(?:\h{1,4}:){,4}\h{1,4})?::\g<ls32>|(?:(?:\h{1,4}:){,5}\h{1,4})?::\h{1,4}|(?:(?:\h{1,4}:){,6}\h{1,4})?::)|(?<IPvFuture>v\h+\.[!$&-.0-;=A-Z_a-z~]+))\])|\g<IPv4address>|(?<reg-name>(?:%\h\h|[!$&-.0-9;=A-Z_a-z~])*))\z/,
        ABS_PATH: /\A\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*(?:\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*)*\z/,
        REL_PATH: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~])+(?:\/(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*)*\z/,
        QUERY: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*\z/,
        FRAGMENT: /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~\/?])*\z/,
        OPAQUE: /\A(?:[^\/].*)?\z/,
        PORT: /\A[\x09\x0a\x0c\x0d ]*\d*[\x09\x0a\x0c\x0d ]*\z/,
      }
    end

    def convert_to_uri(uri)
      if uri.is_a?(URI::Generic)
        uri
      elsif uri = String.try_convert(uri)
        parse(uri)
      else
        raise ArgumentError,
          "bad argument (expected URI object or URI string)"
      end
    end

  end # class Parser
end # module URI
PKFH[e��;;share/ruby/uri/https.rbnu�[���# frozen_string_literal: false
# = uri/https.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'http'

module URI

  # The default port for HTTPS URIs is 443, and the scheme is 'https:' rather
  # than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs;
  # see URI::HTTP.
  class HTTPS < HTTP
    # A Default port of 443 for URI::HTTPS
    DEFAULT_PORT = 443
  end
  @@schemes['HTTPS'] = HTTPS
end
PKFH[�����share/ruby/uri/version.rbnu�[���module URI
  # :stopdoc:
  VERSION_CODE = '00100002'.freeze
  VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
  # :startdoc:
end
PKFH[K���((share/ruby/uri/ftp.rbnu�[���# frozen_string_literal: false
# = uri/ftp.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'generic'

module URI

  #
  # FTP URI syntax is defined by RFC1738 section 3.2.
  #
  # This class will be redesigned because of difference of implementations;
  # the structure of its path. draft-hoffman-ftp-uri-04 is a draft but it
  # is a good summary about the de facto spec.
  # http://tools.ietf.org/html/draft-hoffman-ftp-uri-04
  #
  class FTP < Generic
    # A Default port of 21 for URI::FTP.
    DEFAULT_PORT = 21

    #
    # An Array of the available components for URI::FTP.
    #
    COMPONENT = [
      :scheme,
      :userinfo, :host, :port,
      :path, :typecode
    ].freeze

    #
    # Typecode is "a", "i", or "d".
    #
    # * "a" indicates a text file (the FTP command was ASCII)
    # * "i" indicates a binary file (FTP command IMAGE)
    # * "d" indicates the contents of a directory should be displayed
    #
    TYPECODE = ['a', 'i', 'd'].freeze

    # Typecode prefix ";type=".
    TYPECODE_PREFIX = ';type='.freeze

    def self.new2(user, password, host, port, path,
                  typecode = nil, arg_check = true) # :nodoc:
      # Do not use this method!  Not tested.  [Bug #7301]
      # This methods remains just for compatibility,
      # Keep it undocumented until the active maintainer is assigned.
      typecode = nil if typecode.size == 0
      if typecode && !TYPECODE.include?(typecode)
        raise ArgumentError,
          "bad typecode is specified: #{typecode}"
      end

      # do escape

      self.new('ftp',
               [user, password],
               host, port, nil,
               typecode ? path + TYPECODE_PREFIX + typecode : path,
               nil, nil, nil, arg_check)
    end

    #
    # == Description
    #
    # Creates a new URI::FTP object from components, with syntax checking.
    #
    # The components accepted are +userinfo+, +host+, +port+, +path+, and
    # +typecode+.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[userinfo, host, port, path, typecode]</code>.
    #
    # If the path supplied is absolute, it will be escaped in order to
    # make it absolute in the URI.
    #
    # Examples:
    #
    #     require 'uri'
    #
    #     uri1 = URI::FTP.build(['user:password', 'ftp.example.com', nil,
    #       '/path/file.zip', 'i'])
    #     uri1.to_s  # => "ftp://user:password@ftp.example.com/%2Fpath/file.zip;type=i"
    #
    #     uri2 = URI::FTP.build({:host => 'ftp.example.com',
    #       :path => 'ruby/src'})
    #     uri2.to_s  # => "ftp://ftp.example.com/ruby/src"
    #
    def self.build(args)

      # Fix the incoming path to be generic URL syntax
      # FTP path  ->  URL path
      # foo/bar       /foo/bar
      # /foo/bar      /%2Ffoo/bar
      #
      if args.kind_of?(Array)
        args[3] = '/' + args[3].sub(/^\//, '%2F')
      else
        args[:path] = '/' + args[:path].sub(/^\//, '%2F')
      end

      tmp = Util::make_components_hash(self, args)

      if tmp[:typecode]
        if tmp[:typecode].size == 1
          tmp[:typecode] = TYPECODE_PREFIX + tmp[:typecode]
        end
        tmp[:path] << tmp[:typecode]
      end

      return super(tmp)
    end

    #
    # == Description
    #
    # Creates a new URI::FTP object from generic URL components with no
    # syntax checking.
    #
    # Unlike build(), this method does not escape the path component as
    # required by RFC1738; instead it is treated as per RFC2396.
    #
    # Arguments are +scheme+, +userinfo+, +host+, +port+, +registry+, +path+,
    # +opaque+, +query+, and +fragment+, in that order.
    #
    def initialize(scheme,
                   userinfo, host, port, registry,
                   path, opaque,
                   query,
                   fragment,
                   parser = nil,
                   arg_check = false)
      raise InvalidURIError unless path
      path = path.sub(/^\//,'')
      path.sub!(/^%2F/,'/')
      super(scheme, userinfo, host, port, registry, path, opaque,
            query, fragment, parser, arg_check)
      @typecode = nil
      if tmp = @path.index(TYPECODE_PREFIX)
        typecode = @path[tmp + TYPECODE_PREFIX.size..-1]
        @path = @path[0..tmp - 1]

        if arg_check
          self.typecode = typecode
        else
          self.set_typecode(typecode)
        end
      end
    end

    # typecode accessor.
    #
    # See URI::FTP::COMPONENT.
    attr_reader :typecode

    # Validates typecode +v+,
    # returns +true+ or +false+.
    #
    def check_typecode(v)
      if TYPECODE.include?(v)
        return true
      else
        raise InvalidComponentError,
          "bad typecode(expected #{TYPECODE.join(', ')}): #{v}"
      end
    end
    private :check_typecode

    # Private setter for the typecode +v+.
    #
    # See also URI::FTP.typecode=.
    #
    def set_typecode(v)
      @typecode = v
    end
    protected :set_typecode

    #
    # == Args
    #
    # +v+::
    #    String
    #
    # == Description
    #
    # Public setter for the typecode +v+
    # (with validation).
    #
    # See also URI::FTP.check_typecode.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   uri = URI.parse("ftp://john@ftp.example.com/my_file.img")
    #   #=> #<URI::FTP ftp://john@ftp.example.com/my_file.img>
    #   uri.typecode = "i"
    #   uri
    #   #=> #<URI::FTP ftp://john@ftp.example.com/my_file.img;type=i>
    #
    def typecode=(typecode)
      check_typecode(typecode)
      set_typecode(typecode)
      typecode
    end

    def merge(oth) # :nodoc:
      tmp = super(oth)
      if self != tmp
        tmp.set_typecode(oth.typecode)
      end

      return tmp
    end

    # Returns the path from an FTP URI.
    #
    # RFC 1738 specifically states that the path for an FTP URI does not
    # include the / which separates the URI path from the URI host. Example:
    #
    # <code>ftp://ftp.example.com/pub/ruby</code>
    #
    # The above URI indicates that the client should connect to
    # ftp.example.com then cd to pub/ruby from the initial login directory.
    #
    # If you want to cd to an absolute directory, you must include an
    # escaped / (%2F) in the path. Example:
    #
    # <code>ftp://ftp.example.com/%2Fpub/ruby</code>
    #
    # This method will then return "/pub/ruby".
    #
    def path
      return @path.sub(/^\//,'').sub(/^%2F/,'/')
    end

    # Private setter for the path of the URI::FTP.
    def set_path(v)
      super("/" + v.sub(/^\//, "%2F"))
    end
    protected :set_path

    # Returns a String representation of the URI::FTP.
    def to_s
      save_path = nil
      if @typecode
        save_path = @path
        @path = @path + TYPECODE_PREFIX + @typecode
      end
      str = super
      if @typecode
        @path = save_path
      end

      return str
    end
  end
  @@schemes['FTP'] = FTP
end
PKFH[F2)�E�E share/ruby/uri/rfc2396_parser.rbnu�[���# frozen_string_literal: false
#--
# = uri/common.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Revision:: $Id$
# License::
#   You can redistribute it and/or modify it under the same term as Ruby.
#
# See URI for general documentation
#

module URI
  #
  # Includes URI::REGEXP::PATTERN
  #
  module RFC2396_REGEXP
    #
    # Patterns used to parse URI's
    #
    module PATTERN
      # :stopdoc:

      # RFC 2396 (URI Generic Syntax)
      # RFC 2732 (IPv6 Literal Addresses in URL's)
      # RFC 2373 (IPv6 Addressing Architecture)

      # alpha         = lowalpha | upalpha
      ALPHA = "a-zA-Z"
      # alphanum      = alpha | digit
      ALNUM = "#{ALPHA}\\d"

      # hex           = digit | "A" | "B" | "C" | "D" | "E" | "F" |
      #                         "a" | "b" | "c" | "d" | "e" | "f"
      HEX     = "a-fA-F\\d"
      # escaped       = "%" hex hex
      ESCAPED = "%[#{HEX}]{2}"
      # mark          = "-" | "_" | "." | "!" | "~" | "*" | "'" |
      #                 "(" | ")"
      # unreserved    = alphanum | mark
      UNRESERVED = "\\-_.!~*'()#{ALNUM}"
      # reserved      = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
      #                 "$" | ","
      # reserved      = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
      #                 "$" | "," | "[" | "]" (RFC 2732)
      RESERVED = ";/?:@&=+$,\\[\\]"

      # domainlabel   = alphanum | alphanum *( alphanum | "-" ) alphanum
      DOMLABEL = "(?:[#{ALNUM}](?:[-#{ALNUM}]*[#{ALNUM}])?)"
      # toplabel      = alpha | alpha *( alphanum | "-" ) alphanum
      TOPLABEL = "(?:[#{ALPHA}](?:[-#{ALNUM}]*[#{ALNUM}])?)"
      # hostname      = *( domainlabel "." ) toplabel [ "." ]
      HOSTNAME = "(?:#{DOMLABEL}\\.)*#{TOPLABEL}\\.?"

      # :startdoc:
    end # PATTERN

    # :startdoc:
  end # REGEXP

  # Class that parses String's into URI's.
  #
  # It contains a Hash set of patterns and Regexp's that match and validate.
  #
  class RFC2396_Parser
    include RFC2396_REGEXP

    #
    # == Synopsis
    #
    #   URI::Parser.new([opts])
    #
    # == Args
    #
    # The constructor accepts a hash as options for parser.
    # Keys of options are pattern names of URI components
    # and values of options are pattern strings.
    # The constructor generates set of regexps for parsing URIs.
    #
    # You can use the following keys:
    #
    #   * :ESCAPED (URI::PATTERN::ESCAPED in default)
    #   * :UNRESERVED (URI::PATTERN::UNRESERVED in default)
    #   * :DOMLABEL (URI::PATTERN::DOMLABEL in default)
    #   * :TOPLABEL (URI::PATTERN::TOPLABEL in default)
    #   * :HOSTNAME (URI::PATTERN::HOSTNAME in default)
    #
    # == Examples
    #
    #   p = URI::Parser.new(:ESCAPED => "(?:%[a-fA-F0-9]{2}|%u[a-fA-F0-9]{4})")
    #   u = p.parse("http://example.jp/%uABCD") #=> #<URI::HTTP http://example.jp/%uABCD>
    #   URI.parse(u.to_s) #=> raises URI::InvalidURIError
    #
    #   s = "http://example.com/ABCD"
    #   u1 = p.parse(s) #=> #<URI::HTTP http://example.com/ABCD>
    #   u2 = URI.parse(s) #=> #<URI::HTTP http://example.com/ABCD>
    #   u1 == u2 #=> true
    #   u1.eql?(u2) #=> false
    #
    def initialize(opts = {})
      @pattern = initialize_pattern(opts)
      @pattern.each_value(&:freeze)
      @pattern.freeze

      @regexp = initialize_regexp(@pattern)
      @regexp.each_value(&:freeze)
      @regexp.freeze
    end

    # The Hash of patterns.
    #
    # See also URI::Parser.initialize_pattern.
    attr_reader :pattern

    # The Hash of Regexp.
    #
    # See also URI::Parser.initialize_regexp.
    attr_reader :regexp

    # Returns a split URI against regexp[:ABS_URI].
    def split(uri)
      case uri
      when ''
        # null uri

      when @regexp[:ABS_URI]
        scheme, opaque, userinfo, host, port,
          registry, path, query, fragment = $~[1..-1]

        # URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]

        # absoluteURI   = scheme ":" ( hier_part | opaque_part )
        # hier_part     = ( net_path | abs_path ) [ "?" query ]
        # opaque_part   = uric_no_slash *uric

        # abs_path      = "/"  path_segments
        # net_path      = "//" authority [ abs_path ]

        # authority     = server | reg_name
        # server        = [ [ userinfo "@" ] hostport ]

        if !scheme
          raise InvalidURIError,
            "bad URI(absolute but no scheme): #{uri}"
        end
        if !opaque && (!path && (!host && !registry))
          raise InvalidURIError,
            "bad URI(absolute but no path): #{uri}"
        end

      when @regexp[:REL_URI]
        scheme = nil
        opaque = nil

        userinfo, host, port, registry,
          rel_segment, abs_path, query, fragment = $~[1..-1]
        if rel_segment && abs_path
          path = rel_segment + abs_path
        elsif rel_segment
          path = rel_segment
        elsif abs_path
          path = abs_path
        end

        # URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]

        # relativeURI   = ( net_path | abs_path | rel_path ) [ "?" query ]

        # net_path      = "//" authority [ abs_path ]
        # abs_path      = "/"  path_segments
        # rel_path      = rel_segment [ abs_path ]

        # authority     = server | reg_name
        # server        = [ [ userinfo "@" ] hostport ]

      else
        raise InvalidURIError, "bad URI(is not URI?): #{uri}"
      end

      path = '' if !path && !opaque # (see RFC2396 Section 5.2)
      ret = [
        scheme,
        userinfo, host, port,         # X
        registry,                     # X
        path,                         # Y
        opaque,                       # Y
        query,
        fragment
      ]
      return ret
    end

    #
    # == Args
    #
    # +uri+::
    #    String
    #
    # == Description
    #
    # Parses +uri+ and constructs either matching URI scheme object
    # (File, FTP, HTTP, HTTPS, LDAP, LDAPS, or MailTo) or URI::Generic.
    #
    # == Usage
    #
    #   p = URI::Parser.new
    #   p.parse("ldap://ldap.example.com/dc=example?user=john")
    #   #=> #<URI::LDAP ldap://ldap.example.com/dc=example?user=john>
    #
    def parse(uri)
      scheme, userinfo, host, port,
        registry, path, opaque, query, fragment = self.split(uri)

      if scheme && URI.scheme_list.include?(scheme.upcase)
        URI.scheme_list[scheme.upcase].new(scheme, userinfo, host, port,
                                           registry, path, opaque, query,
                                           fragment, self)
      else
        Generic.new(scheme, userinfo, host, port,
                    registry, path, opaque, query,
                    fragment, self)
      end
    end


    #
    # == Args
    #
    # +uris+::
    #    an Array of Strings
    #
    # == Description
    #
    # Attempts to parse and merge a set of URIs.
    #
    def join(*uris)
      uris[0] = convert_to_uri(uris[0])
      uris.inject :merge
    end

    #
    # :call-seq:
    #   extract( str )
    #   extract( str, schemes )
    #   extract( str, schemes ) {|item| block }
    #
    # == Args
    #
    # +str+::
    #    String to search
    # +schemes+::
    #    Patterns to apply to +str+
    #
    # == Description
    #
    # Attempts to parse and merge a set of URIs.
    # If no +block+ given, then returns the result,
    # else it calls +block+ for each element in result.
    #
    # See also URI::Parser.make_regexp.
    #
    def extract(str, schemes = nil)
      if block_given?
        str.scan(make_regexp(schemes)) { yield $& }
        nil
      else
        result = []
        str.scan(make_regexp(schemes)) { result.push $& }
        result
      end
    end

    # Returns Regexp that is default self.regexp[:ABS_URI_REF],
    # unless +schemes+ is provided. Then it is a Regexp.union with self.pattern[:X_ABS_URI].
    def make_regexp(schemes = nil)
      unless schemes
        @regexp[:ABS_URI_REF]
      else
        /(?=#{Regexp.union(*schemes)}:)#{@pattern[:X_ABS_URI]}/x
      end
    end

    #
    # :call-seq:
    #   escape( str )
    #   escape( str, unsafe )
    #
    # == Args
    #
    # +str+::
    #    String to make safe
    # +unsafe+::
    #    Regexp to apply. Defaults to self.regexp[:UNSAFE]
    #
    # == Description
    #
    # Constructs a safe String from +str+, removing unsafe characters,
    # replacing them with codes.
    #
    def escape(str, unsafe = @regexp[:UNSAFE])
      unless unsafe.kind_of?(Regexp)
        # perhaps unsafe is String object
        unsafe = Regexp.new("[#{Regexp.quote(unsafe)}]", false)
      end
      str.gsub(unsafe) do
        us = $&
        tmp = ''
        us.each_byte do |uc|
          tmp << sprintf('%%%02X', uc)
        end
        tmp
      end.force_encoding(Encoding::US_ASCII)
    end

    #
    # :call-seq:
    #   unescape( str )
    #   unescape( str, escaped )
    #
    # == Args
    #
    # +str+::
    #    String to remove escapes from
    # +escaped+::
    #    Regexp to apply. Defaults to self.regexp[:ESCAPED]
    #
    # == Description
    #
    # Removes escapes from +str+.
    #
    def unescape(str, escaped = @regexp[:ESCAPED])
      enc = str.encoding
      enc = Encoding::UTF_8 if enc == Encoding::US_ASCII
      str.gsub(escaped) { [$&[1, 2]].pack('H2').force_encoding(enc) }
    end

    @@to_s = Kernel.instance_method(:to_s)
    def inspect
      @@to_s.bind_call(self)
    end

    private

    # Constructs the default Hash of patterns.
    def initialize_pattern(opts = {})
      ret = {}
      ret[:ESCAPED] = escaped = (opts.delete(:ESCAPED) || PATTERN::ESCAPED)
      ret[:UNRESERVED] = unreserved = opts.delete(:UNRESERVED) || PATTERN::UNRESERVED
      ret[:RESERVED] = reserved = opts.delete(:RESERVED) || PATTERN::RESERVED
      ret[:DOMLABEL] = opts.delete(:DOMLABEL) || PATTERN::DOMLABEL
      ret[:TOPLABEL] = opts.delete(:TOPLABEL) || PATTERN::TOPLABEL
      ret[:HOSTNAME] = hostname = opts.delete(:HOSTNAME)

      # RFC 2396 (URI Generic Syntax)
      # RFC 2732 (IPv6 Literal Addresses in URL's)
      # RFC 2373 (IPv6 Addressing Architecture)

      # uric          = reserved | unreserved | escaped
      ret[:URIC] = uric = "(?:[#{unreserved}#{reserved}]|#{escaped})"
      # uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" |
      #                 "&" | "=" | "+" | "$" | ","
      ret[:URIC_NO_SLASH] = uric_no_slash = "(?:[#{unreserved};?:@&=+$,]|#{escaped})"
      # query         = *uric
      ret[:QUERY] = query = "#{uric}*"
      # fragment      = *uric
      ret[:FRAGMENT] = fragment = "#{uric}*"

      # hostname      = *( domainlabel "." ) toplabel [ "." ]
      # reg-name      = *( unreserved / pct-encoded / sub-delims ) # RFC3986
      unless hostname
        ret[:HOSTNAME] = hostname = "(?:[a-zA-Z0-9\\-.]|%\\h\\h)+"
      end

      # RFC 2373, APPENDIX B:
      # IPv6address = hexpart [ ":" IPv4address ]
      # IPv4address   = 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT
      # hexpart = hexseq | hexseq "::" [ hexseq ] | "::" [ hexseq ]
      # hexseq  = hex4 *( ":" hex4)
      # hex4    = 1*4HEXDIG
      #
      # XXX: This definition has a flaw. "::" + IPv4address must be
      # allowed too.  Here is a replacement.
      #
      # IPv4address = 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT "." 1*3DIGIT
      ret[:IPV4ADDR] = ipv4addr = "\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}"
      # hex4     = 1*4HEXDIG
      hex4 = "[#{PATTERN::HEX}]{1,4}"
      # lastpart = hex4 | IPv4address
      lastpart = "(?:#{hex4}|#{ipv4addr})"
      # hexseq1  = *( hex4 ":" ) hex4
      hexseq1 = "(?:#{hex4}:)*#{hex4}"
      # hexseq2  = *( hex4 ":" ) lastpart
      hexseq2 = "(?:#{hex4}:)*#{lastpart}"
      # IPv6address = hexseq2 | [ hexseq1 ] "::" [ hexseq2 ]
      ret[:IPV6ADDR] = ipv6addr = "(?:#{hexseq2}|(?:#{hexseq1})?::(?:#{hexseq2})?)"

      # IPv6prefix  = ( hexseq1 | [ hexseq1 ] "::" [ hexseq1 ] ) "/" 1*2DIGIT
      # unused

      # ipv6reference = "[" IPv6address "]" (RFC 2732)
      ret[:IPV6REF] = ipv6ref = "\\[#{ipv6addr}\\]"

      # host          = hostname | IPv4address
      # host          = hostname | IPv4address | IPv6reference (RFC 2732)
      ret[:HOST] = host = "(?:#{hostname}|#{ipv4addr}|#{ipv6ref})"
      # port          = *digit
      ret[:PORT] = port = '\d*'
      # hostport      = host [ ":" port ]
      ret[:HOSTPORT] = hostport = "#{host}(?::#{port})?"

      # userinfo      = *( unreserved | escaped |
      #                    ";" | ":" | "&" | "=" | "+" | "$" | "," )
      ret[:USERINFO] = userinfo = "(?:[#{unreserved};:&=+$,]|#{escaped})*"

      # pchar         = unreserved | escaped |
      #                 ":" | "@" | "&" | "=" | "+" | "$" | ","
      pchar = "(?:[#{unreserved}:@&=+$,]|#{escaped})"
      # param         = *pchar
      param = "#{pchar}*"
      # segment       = *pchar *( ";" param )
      segment = "#{pchar}*(?:;#{param})*"
      # path_segments = segment *( "/" segment )
      ret[:PATH_SEGMENTS] = path_segments = "#{segment}(?:/#{segment})*"

      # server        = [ [ userinfo "@" ] hostport ]
      server = "(?:#{userinfo}@)?#{hostport}"
      # reg_name      = 1*( unreserved | escaped | "$" | "," |
      #                     ";" | ":" | "@" | "&" | "=" | "+" )
      ret[:REG_NAME] = reg_name = "(?:[#{unreserved}$,;:@&=+]|#{escaped})+"
      # authority     = server | reg_name
      authority = "(?:#{server}|#{reg_name})"

      # rel_segment   = 1*( unreserved | escaped |
      #                     ";" | "@" | "&" | "=" | "+" | "$" | "," )
      ret[:REL_SEGMENT] = rel_segment = "(?:[#{unreserved};@&=+$,]|#{escaped})+"

      # scheme        = alpha *( alpha | digit | "+" | "-" | "." )
      ret[:SCHEME] = scheme = "[#{PATTERN::ALPHA}][\\-+.#{PATTERN::ALPHA}\\d]*"

      # abs_path      = "/"  path_segments
      ret[:ABS_PATH] = abs_path = "/#{path_segments}"
      # rel_path      = rel_segment [ abs_path ]
      ret[:REL_PATH] = rel_path = "#{rel_segment}(?:#{abs_path})?"
      # net_path      = "//" authority [ abs_path ]
      ret[:NET_PATH] = net_path = "//#{authority}(?:#{abs_path})?"

      # hier_part     = ( net_path | abs_path ) [ "?" query ]
      ret[:HIER_PART] = hier_part = "(?:#{net_path}|#{abs_path})(?:\\?(?:#{query}))?"
      # opaque_part   = uric_no_slash *uric
      ret[:OPAQUE_PART] = opaque_part = "#{uric_no_slash}#{uric}*"

      # absoluteURI   = scheme ":" ( hier_part | opaque_part )
      ret[:ABS_URI] = abs_uri = "#{scheme}:(?:#{hier_part}|#{opaque_part})"
      # relativeURI   = ( net_path | abs_path | rel_path ) [ "?" query ]
      ret[:REL_URI] = rel_uri = "(?:#{net_path}|#{abs_path}|#{rel_path})(?:\\?#{query})?"

      # URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]
      ret[:URI_REF] = "(?:#{abs_uri}|#{rel_uri})?(?:##{fragment})?"

      ret[:X_ABS_URI] = "
        (#{scheme}):                           (?# 1: scheme)
        (?:
           (#{opaque_part})                    (?# 2: opaque)
        |
           (?:(?:
             //(?:
                 (?:(?:(#{userinfo})@)?        (?# 3: userinfo)
                   (?:(#{host})(?::(\\d*))?))? (?# 4: host, 5: port)
               |
                 (#{reg_name})                 (?# 6: registry)
               )
             |
             (?!//))                           (?# XXX: '//' is the mark for hostport)
             (#{abs_path})?                    (?# 7: path)
           )(?:\\?(#{query}))?                 (?# 8: query)
        )
        (?:\\#(#{fragment}))?                  (?# 9: fragment)
      "

      ret[:X_REL_URI] = "
        (?:
          (?:
            //
            (?:
              (?:(#{userinfo})@)?       (?# 1: userinfo)
                (#{host})?(?::(\\d*))?  (?# 2: host, 3: port)
            |
              (#{reg_name})             (?# 4: registry)
            )
          )
        |
          (#{rel_segment})              (?# 5: rel_segment)
        )?
        (#{abs_path})?                  (?# 6: abs_path)
        (?:\\?(#{query}))?              (?# 7: query)
        (?:\\#(#{fragment}))?           (?# 8: fragment)
      "

      ret
    end

    # Constructs the default Hash of Regexp's.
    def initialize_regexp(pattern)
      ret = {}

      # for URI::split
      ret[:ABS_URI] = Regexp.new('\A\s*' + pattern[:X_ABS_URI] + '\s*\z', Regexp::EXTENDED)
      ret[:REL_URI] = Regexp.new('\A\s*' + pattern[:X_REL_URI] + '\s*\z', Regexp::EXTENDED)

      # for URI::extract
      ret[:URI_REF]     = Regexp.new(pattern[:URI_REF])
      ret[:ABS_URI_REF] = Regexp.new(pattern[:X_ABS_URI], Regexp::EXTENDED)
      ret[:REL_URI_REF] = Regexp.new(pattern[:X_REL_URI], Regexp::EXTENDED)

      # for URI::escape/unescape
      ret[:ESCAPED] = Regexp.new(pattern[:ESCAPED])
      ret[:UNSAFE]  = Regexp.new("[^#{pattern[:UNRESERVED]}#{pattern[:RESERVED]}]")

      # for Generic#initialize
      ret[:SCHEME]   = Regexp.new("\\A#{pattern[:SCHEME]}\\z")
      ret[:USERINFO] = Regexp.new("\\A#{pattern[:USERINFO]}\\z")
      ret[:HOST]     = Regexp.new("\\A#{pattern[:HOST]}\\z")
      ret[:PORT]     = Regexp.new("\\A#{pattern[:PORT]}\\z")
      ret[:OPAQUE]   = Regexp.new("\\A#{pattern[:OPAQUE_PART]}\\z")
      ret[:REGISTRY] = Regexp.new("\\A#{pattern[:REG_NAME]}\\z")
      ret[:ABS_PATH] = Regexp.new("\\A#{pattern[:ABS_PATH]}\\z")
      ret[:REL_PATH] = Regexp.new("\\A#{pattern[:REL_PATH]}\\z")
      ret[:QUERY]    = Regexp.new("\\A#{pattern[:QUERY]}\\z")
      ret[:FRAGMENT] = Regexp.new("\\A#{pattern[:FRAGMENT]}\\z")

      ret
    end

    def convert_to_uri(uri)
      if uri.is_a?(URI::Generic)
        uri
      elsif uri = String.try_convert(uri)
        parse(uri)
      else
        raise ArgumentError,
          "bad argument (expected URI object or URI string)"
      end
    end

  end # class Parser
end # module URI
PKFH[��p�WWshare/ruby/uri/mailto.rbnu�[���# frozen_string_literal: false
# = uri/mailto.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'generic'

module URI

  #
  # RFC6068, the mailto URL scheme.
  #
  class MailTo < Generic
    include REGEXP

    # A Default port of nil for URI::MailTo.
    DEFAULT_PORT = nil

    # An Array of the available components for URI::MailTo.
    COMPONENT = [ :scheme, :to, :headers ].freeze

    # :stopdoc:
    #  "hname" and "hvalue" are encodings of an RFC 822 header name and
    #  value, respectively. As with "to", all URL reserved characters must
    #  be encoded.
    #
    #  "#mailbox" is as specified in RFC 822 [RFC822]. This means that it
    #  consists of zero or more comma-separated mail addresses, possibly
    #  including "phrase" and "comment" components. Note that all URL
    #  reserved characters in "to" must be encoded: in particular,
    #  parentheses, commas, and the percent sign ("%"), which commonly occur
    #  in the "mailbox" syntax.
    #
    #  Within mailto URLs, the characters "?", "=", "&" are reserved.

    # ; RFC 6068
    # hfields      = "?" hfield *( "&" hfield )
    # hfield       = hfname "=" hfvalue
    # hfname       = *qchar
    # hfvalue      = *qchar
    # qchar        = unreserved / pct-encoded / some-delims
    # some-delims  = "!" / "$" / "'" / "(" / ")" / "*"
    #              / "+" / "," / ";" / ":" / "@"
    #
    # ; RFC3986
    # unreserved   = ALPHA / DIGIT / "-" / "." / "_" / "~"
    # pct-encoded  = "%" HEXDIG HEXDIG
    HEADER_REGEXP  = /\A(?<hfield>(?:%\h\h|[!$'-.0-;@-Z_a-z~])*=(?:%\h\h|[!$'-.0-;@-Z_a-z~])*)(?:&\g<hfield>)*\z/
    # practical regexp for email address
    # https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address
    EMAIL_REGEXP = /\A[a-zA-Z0-9.!\#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*\z/
    # :startdoc:

    #
    # == Description
    #
    # Creates a new URI::MailTo object from components, with syntax checking.
    #
    # Components can be provided as an Array or Hash. If an Array is used,
    # the components must be supplied as <code>[to, headers]</code>.
    #
    # If a Hash is used, the keys are the component names preceded by colons.
    #
    # The headers can be supplied as a pre-encoded string, such as
    # <code>"subject=subscribe&cc=address"</code>, or as an Array of Arrays
    # like <code>[['subject', 'subscribe'], ['cc', 'address']]</code>.
    #
    # Examples:
    #
    #    require 'uri'
    #
    #    m1 = URI::MailTo.build(['joe@example.com', 'subject=Ruby'])
    #    m1.to_s  # => "mailto:joe@example.com?subject=Ruby"
    #
    #    m2 = URI::MailTo.build(['john@example.com', [['Subject', 'Ruby'], ['Cc', 'jack@example.com']]])
    #    m2.to_s  # => "mailto:john@example.com?Subject=Ruby&Cc=jack@example.com"
    #
    #    m3 = URI::MailTo.build({:to => 'listman@example.com', :headers => [['subject', 'subscribe']]})
    #    m3.to_s  # => "mailto:listman@example.com?subject=subscribe"
    #
    def self.build(args)
      tmp = Util.make_components_hash(self, args)

      case tmp[:to]
      when Array
        tmp[:opaque] = tmp[:to].join(',')
      when String
        tmp[:opaque] = tmp[:to].dup
      else
        tmp[:opaque] = ''
      end

      if tmp[:headers]
        query =
          case tmp[:headers]
          when Array
            tmp[:headers].collect { |x|
              if x.kind_of?(Array)
                x[0] + '=' + x[1..-1].join
              else
                x.to_s
              end
            }.join('&')
          when Hash
            tmp[:headers].collect { |h,v|
              h + '=' + v
            }.join('&')
          else
            tmp[:headers].to_s
          end
        unless query.empty?
          tmp[:opaque] << '?' << query
        end
      end

      super(tmp)
    end

    #
    # == Description
    #
    # Creates a new URI::MailTo object from generic URL components with
    # no syntax checking.
    #
    # This method is usually called from URI::parse, which checks
    # the validity of each component.
    #
    def initialize(*arg)
      super(*arg)

      @to = nil
      @headers = []

      # The RFC3986 parser does not normally populate opaque
      @opaque = "?#{@query}" if @query && !@opaque

      unless @opaque
        raise InvalidComponentError,
          "missing opaque part for mailto URL"
      end
      to, header = @opaque.split('?', 2)
      # allow semicolon as a addr-spec separator
      # http://support.microsoft.com/kb/820868
      unless /\A(?:[^@,;]+@[^@,;]+(?:\z|[,;]))*\z/ =~ to
        raise InvalidComponentError,
          "unrecognised opaque part for mailtoURL: #{@opaque}"
      end

      if arg[10] # arg_check
        self.to = to
        self.headers = header
      else
        set_to(to)
        set_headers(header)
      end
    end

    # The primary e-mail address of the URL, as a String.
    attr_reader :to

    # E-mail headers set by the URL, as an Array of Arrays.
    attr_reader :headers

    # Checks the to +v+ component.
    def check_to(v)
      return true unless v
      return true if v.size == 0

      v.split(/[,;]/).each do |addr|
        # check url safety as path-rootless
        if /\A(?:%\h\h|[!$&-.0-;=@-Z_a-z~])*\z/ !~ addr
          raise InvalidComponentError,
            "an address in 'to' is invalid as URI #{addr.dump}"
        end

        # check addr-spec
        # don't s/\+/ /g
        addr.gsub!(/%\h\h/, URI::TBLDECWWWCOMP_)
        if EMAIL_REGEXP !~ addr
          raise InvalidComponentError,
            "an address in 'to' is invalid as uri-escaped addr-spec #{addr.dump}"
        end
      end

      true
    end
    private :check_to

    # Private setter for to +v+.
    def set_to(v)
      @to = v
    end
    protected :set_to

    # Setter for to +v+.
    def to=(v)
      check_to(v)
      set_to(v)
      v
    end

    # Checks the headers +v+ component against either
    # * HEADER_REGEXP
    def check_headers(v)
      return true unless v
      return true if v.size == 0
      if HEADER_REGEXP !~ v
        raise InvalidComponentError,
          "bad component(expected opaque component): #{v}"
      end

      true
    end
    private :check_headers

    # Private setter for headers +v+.
    def set_headers(v)
      @headers = []
      if v
        v.split('&').each do |x|
          @headers << x.split(/=/, 2)
        end
      end
    end
    protected :set_headers

    # Setter for headers +v+.
    def headers=(v)
      check_headers(v)
      set_headers(v)
      v
    end

    # Constructs String from URI.
    def to_s
      @scheme + ':' +
        if @to
          @to
        else
          ''
        end +
        if @headers.size > 0
          '?' + @headers.collect{|x| x.join('=')}.join('&')
        else
          ''
        end +
        if @fragment
          '#' + @fragment
        else
          ''
        end
    end

    # Returns the RFC822 e-mail text equivalent of the URL, as a String.
    #
    # Example:
    #
    #   require 'uri'
    #
    #   uri = URI.parse("mailto:ruby-list@ruby-lang.org?Subject=subscribe&cc=myaddr")
    #   uri.to_mailtext
    #   # => "To: ruby-list@ruby-lang.org\nSubject: subscribe\nCc: myaddr\n\n\n"
    #
    def to_mailtext
      to = URI.decode_www_form_component(@to)
      head = ''
      body = ''
      @headers.each do |x|
        case x[0]
        when 'body'
          body = URI.decode_www_form_component(x[1])
        when 'to'
          to << ', ' + URI.decode_www_form_component(x[1])
        else
          head << URI.decode_www_form_component(x[0]).capitalize + ': ' +
            URI.decode_www_form_component(x[1])  + "\n"
        end
      end

      "To: #{to}
#{head}
#{body}
"
    end
    alias to_rfc822text to_mailtext
  end

  @@schemes['MAILTO'] = MailTo
end
PKFH[�ЫBshare/ruby/uri/file.rbnu�[���# frozen_string_literal: true

require_relative 'generic'

module URI

  #
  # The "file" URI is defined by RFC8089.
  #
  class File < Generic
    # A Default port of nil for URI::File.
    DEFAULT_PORT = nil

    #
    # An Array of the available components for URI::File.
    #
    COMPONENT = [
      :scheme,
      :host,
      :path
    ].freeze

    #
    # == Description
    #
    # Creates a new URI::File object from components, with syntax checking.
    #
    # The components accepted are +host+ and +path+.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[host, path]</code>.
    #
    # Examples:
    #
    #     require 'uri'
    #
    #     uri1 = URI::File.build(['host.example.com', '/path/file.zip'])
    #     uri1.to_s  # => "file://host.example.com/path/file.zip"
    #
    #     uri2 = URI::File.build({:host => 'host.example.com',
    #       :path => '/ruby/src'})
    #     uri2.to_s  # => "file://host.example.com/ruby/src"
    #
    def self.build(args)
      tmp = Util::make_components_hash(self, args)
      super(tmp)
    end

    # Protected setter for the host component +v+.
    #
    # See also URI::Generic.host=.
    #
    def set_host(v)
      v = "" if v.nil? || v == "localhost"
      @host = v
    end

    # do nothing
    def set_port(v)
    end

    # raise InvalidURIError
    def check_userinfo(user)
      raise URI::InvalidURIError, "can not set userinfo for file URI"
    end

    # raise InvalidURIError
    def check_user(user)
      raise URI::InvalidURIError, "can not set user for file URI"
    end

    # raise InvalidURIError
    def check_password(user)
      raise URI::InvalidURIError, "can not set password for file URI"
    end

    # do nothing
    def set_userinfo(v)
    end

    # do nothing
    def set_user(v)
    end

    # do nothing
    def set_password(v)
    end
  end

  @@schemes['FILE'] = File
end
PKFH[�>�zNzNshare/ruby/uri/common.rbnu�[���# frozen_string_literal: true
#--
# = uri/common.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Revision:: $Id$
# License::
#   You can redistribute it and/or modify it under the same term as Ruby.
#
# See URI for general documentation
#

require_relative "rfc2396_parser"
require_relative "rfc3986_parser"

module URI
  REGEXP = RFC2396_REGEXP
  Parser = RFC2396_Parser
  RFC3986_PARSER = RFC3986_Parser.new

  # URI::Parser.new
  DEFAULT_PARSER = Parser.new
  DEFAULT_PARSER.pattern.each_pair do |sym, str|
    unless REGEXP::PATTERN.const_defined?(sym)
      REGEXP::PATTERN.const_set(sym, str)
    end
  end
  DEFAULT_PARSER.regexp.each_pair do |sym, str|
    const_set(sym, str)
  end

  module Util # :nodoc:
    def make_components_hash(klass, array_hash)
      tmp = {}
      if array_hash.kind_of?(Array) &&
          array_hash.size == klass.component.size - 1
        klass.component[1..-1].each_index do |i|
          begin
            tmp[klass.component[i + 1]] = array_hash[i].clone
          rescue TypeError
            tmp[klass.component[i + 1]] = array_hash[i]
          end
        end

      elsif array_hash.kind_of?(Hash)
        array_hash.each do |key, value|
          begin
            tmp[key] = value.clone
          rescue TypeError
            tmp[key] = value
          end
        end
      else
        raise ArgumentError,
          "expected Array of or Hash of components of #{klass} (#{klass.component[1..-1].join(', ')})"
      end
      tmp[:scheme] = klass.to_s.sub(/\A.*::/, '').downcase

      return tmp
    end
    module_function :make_components_hash
  end

  # Module for escaping unsafe characters with codes.
  module Escape
    #
    # == Synopsis
    #
    #   URI.escape(str [, unsafe])
    #
    # == Args
    #
    # +str+::
    #   String to replaces in.
    # +unsafe+::
    #   Regexp that matches all symbols that must be replaced with codes.
    #   By default uses <tt>UNSAFE</tt>.
    #   When this argument is a String, it represents a character set.
    #
    # == Description
    #
    # Escapes the string, replacing all unsafe characters with codes.
    #
    # This method is obsolete and should not be used. Instead, use
    # CGI.escape, URI.encode_www_form or URI.encode_www_form_component
    # depending on your specific use case.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   enc_uri = URI.escape("http://example.com/?a=\11\15")
    #   # => "http://example.com/?a=%09%0D"
    #
    #   URI.unescape(enc_uri)
    #   # => "http://example.com/?a=\t\r"
    #
    #   URI.escape("@?@!", "!?")
    #   # => "@%3F@%21"
    #
    def escape(*arg)
      warn "URI.escape is obsolete", uplevel: 1
      DEFAULT_PARSER.escape(*arg)
    end
    alias encode escape
    #
    # == Synopsis
    #
    #   URI.unescape(str)
    #
    # == Args
    #
    # +str+::
    #   String to unescape.
    #
    # == Description
    #
    # This method is obsolete and should not be used. Instead, use
    # CGI.unescape, URI.decode_www_form or URI.decode_www_form_component
    # depending on your specific use case.
    #
    # == Usage
    #
    #   require 'uri'
    #
    #   enc_uri = URI.escape("http://example.com/?a=\11\15")
    #   # => "http://example.com/?a=%09%0D"
    #
    #   URI.unescape(enc_uri)
    #   # => "http://example.com/?a=\t\r"
    #
    def unescape(*arg)
      warn "URI.unescape is obsolete", uplevel: 1
      DEFAULT_PARSER.unescape(*arg)
    end
    alias decode unescape
  end # module Escape

  extend Escape
  include REGEXP

  @@schemes = {}
  # Returns a Hash of the defined schemes.
  def self.scheme_list
    @@schemes
  end

  #
  # Base class for all URI exceptions.
  #
  class Error < StandardError; end
  #
  # Not a URI.
  #
  class InvalidURIError < Error; end
  #
  # Not a URI component.
  #
  class InvalidComponentError < Error; end
  #
  # URI is valid, bad usage is not.
  #
  class BadURIError < Error; end

  #
  # == Synopsis
  #
  #   URI::split(uri)
  #
  # == Args
  #
  # +uri+::
  #   String with URI.
  #
  # == Description
  #
  # Splits the string on following parts and returns array with result:
  #
  # * Scheme
  # * Userinfo
  # * Host
  # * Port
  # * Registry
  # * Path
  # * Opaque
  # * Query
  # * Fragment
  #
  # == Usage
  #
  #   require 'uri'
  #
  #   URI.split("http://www.ruby-lang.org/")
  #   # => ["http", nil, "www.ruby-lang.org", nil, nil, "/", nil, nil, nil]
  #
  def self.split(uri)
    RFC3986_PARSER.split(uri)
  end

  #
  # == Synopsis
  #
  #   URI::parse(uri_str)
  #
  # == Args
  #
  # +uri_str+::
  #   String with URI.
  #
  # == Description
  #
  # Creates one of the URI's subclasses instance from the string.
  #
  # == Raises
  #
  # URI::InvalidURIError::
  #   Raised if URI given is not a correct one.
  #
  # == Usage
  #
  #   require 'uri'
  #
  #   uri = URI.parse("http://www.ruby-lang.org/")
  #   # => #<URI::HTTP http://www.ruby-lang.org/>
  #   uri.scheme
  #   # => "http"
  #   uri.host
  #   # => "www.ruby-lang.org"
  #
  # It's recommended to first ::escape the provided +uri_str+ if there are any
  # invalid URI characters.
  #
  def self.parse(uri)
    RFC3986_PARSER.parse(uri)
  end

  #
  # == Synopsis
  #
  #   URI::join(str[, str, ...])
  #
  # == Args
  #
  # +str+::
  #   String(s) to work with, will be converted to RFC3986 URIs before merging.
  #
  # == Description
  #
  # Joins URIs.
  #
  # == Usage
  #
  #   require 'uri'
  #
  #   URI.join("http://example.com/","main.rbx")
  #   # => #<URI::HTTP http://example.com/main.rbx>
  #
  #   URI.join('http://example.com', 'foo')
  #   # => #<URI::HTTP http://example.com/foo>
  #
  #   URI.join('http://example.com', '/foo', '/bar')
  #   # => #<URI::HTTP http://example.com/bar>
  #
  #   URI.join('http://example.com', '/foo', 'bar')
  #   # => #<URI::HTTP http://example.com/bar>
  #
  #   URI.join('http://example.com', '/foo/', 'bar')
  #   # => #<URI::HTTP http://example.com/foo/bar>
  #
  def self.join(*str)
    RFC3986_PARSER.join(*str)
  end

  #
  # == Synopsis
  #
  #   URI::extract(str[, schemes][,&blk])
  #
  # == Args
  #
  # +str+::
  #   String to extract URIs from.
  # +schemes+::
  #   Limit URI matching to specific schemes.
  #
  # == Description
  #
  # Extracts URIs from a string. If block given, iterates through all matched URIs.
  # Returns nil if block given or array with matches.
  #
  # == Usage
  #
  #   require "uri"
  #
  #   URI.extract("text here http://foo.example.org/bla and here mailto:test@example.com and here also.")
  #   # => ["http://foo.example.com/bla", "mailto:test@example.com"]
  #
  def self.extract(str, schemes = nil, &block)
    warn "URI.extract is obsolete", uplevel: 1 if $VERBOSE
    DEFAULT_PARSER.extract(str, schemes, &block)
  end

  #
  # == Synopsis
  #
  #   URI::regexp([match_schemes])
  #
  # == Args
  #
  # +match_schemes+::
  #   Array of schemes. If given, resulting regexp matches to URIs
  #   whose scheme is one of the match_schemes.
  #
  # == Description
  #
  # Returns a Regexp object which matches to URI-like strings.
  # The Regexp object returned by this method includes arbitrary
  # number of capture group (parentheses).  Never rely on it's number.
  #
  # == Usage
  #
  #   require 'uri'
  #
  #   # extract first URI from html_string
  #   html_string.slice(URI.regexp)
  #
  #   # remove ftp URIs
  #   html_string.sub(URI.regexp(['ftp']), '')
  #
  #   # You should not rely on the number of parentheses
  #   html_string.scan(URI.regexp) do |*matches|
  #     p $&
  #   end
  #
  def self.regexp(schemes = nil)
    warn "URI.regexp is obsolete", uplevel: 1 if $VERBOSE
    DEFAULT_PARSER.make_regexp(schemes)
  end

  TBLENCWWWCOMP_ = {} # :nodoc:
  256.times do |i|
    TBLENCWWWCOMP_[-i.chr] = -('%%%02X' % i)
  end
  TBLENCWWWCOMP_[' '] = '+'
  TBLENCWWWCOMP_.freeze
  TBLDECWWWCOMP_ = {} # :nodoc:
  256.times do |i|
    h, l = i>>4, i&15
    TBLDECWWWCOMP_[-('%%%X%X' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%x%X' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%X%x' % [h, l])] = -i.chr
    TBLDECWWWCOMP_[-('%%%x%x' % [h, l])] = -i.chr
  end
  TBLDECWWWCOMP_['+'] = ' '
  TBLDECWWWCOMP_.freeze

  # Encodes given +str+ to URL-encoded form data.
  #
  # This method doesn't convert *, -, ., 0-9, A-Z, _, a-z, but does convert SP
  # (ASCII space) to + and converts others to %XX.
  #
  # If +enc+ is given, convert +str+ to the encoding before percent encoding.
  #
  # This is an implementation of
  # http://www.w3.org/TR/2013/CR-html5-20130806/forms.html#url-encoded-form-data.
  #
  # See URI.decode_www_form_component, URI.encode_www_form.
  def self.encode_www_form_component(str, enc=nil)
    str = str.to_s.dup
    if str.encoding != Encoding::ASCII_8BIT
      if enc && enc != Encoding::ASCII_8BIT
        str.encode!(Encoding::UTF_8, invalid: :replace, undef: :replace)
        str.encode!(enc, fallback: ->(x){"&##{x.ord};"})
      end
      str.force_encoding(Encoding::ASCII_8BIT)
    end
    str.gsub!(/[^*\-.0-9A-Z_a-z]/, TBLENCWWWCOMP_)
    str.force_encoding(Encoding::US_ASCII)
  end

  # Decodes given +str+ of URL-encoded form data.
  #
  # This decodes + to SP.
  #
  # See URI.encode_www_form_component, URI.decode_www_form.
  def self.decode_www_form_component(str, enc=Encoding::UTF_8)
    raise ArgumentError, "invalid %-encoding (#{str})" if /%(?!\h\h)/ =~ str
    str.b.gsub(/\+|%\h\h/, TBLDECWWWCOMP_).force_encoding(enc)
  end

  # Generates URL-encoded form data from given +enum+.
  #
  # This generates application/x-www-form-urlencoded data defined in HTML5
  # from given an Enumerable object.
  #
  # This internally uses URI.encode_www_form_component(str).
  #
  # This method doesn't convert the encoding of given items, so convert them
  # before calling this method if you want to send data as other than original
  # encoding or mixed encoding data. (Strings which are encoded in an HTML5
  # ASCII incompatible encoding are converted to UTF-8.)
  #
  # This method doesn't handle files.  When you send a file, use
  # multipart/form-data.
  #
  # This refers http://url.spec.whatwg.org/#concept-urlencoded-serializer
  #
  #    URI.encode_www_form([["q", "ruby"], ["lang", "en"]])
  #    #=> "q=ruby&lang=en"
  #    URI.encode_www_form("q" => "ruby", "lang" => "en")
  #    #=> "q=ruby&lang=en"
  #    URI.encode_www_form("q" => ["ruby", "perl"], "lang" => "en")
  #    #=> "q=ruby&q=perl&lang=en"
  #    URI.encode_www_form([["q", "ruby"], ["q", "perl"], ["lang", "en"]])
  #    #=> "q=ruby&q=perl&lang=en"
  #
  # See URI.encode_www_form_component, URI.decode_www_form.
  def self.encode_www_form(enum, enc=nil)
    enum.map do |k,v|
      if v.nil?
        encode_www_form_component(k, enc)
      elsif v.respond_to?(:to_ary)
        v.to_ary.map do |w|
          str = encode_www_form_component(k, enc)
          unless w.nil?
            str << '='
            str << encode_www_form_component(w, enc)
          end
        end.join('&')
      else
        str = encode_www_form_component(k, enc)
        str << '='
        str << encode_www_form_component(v, enc)
      end
    end.join('&')
  end

  # Decodes URL-encoded form data from given +str+.
  #
  # This decodes application/x-www-form-urlencoded data
  # and returns an array of key-value arrays.
  #
  # This refers http://url.spec.whatwg.org/#concept-urlencoded-parser,
  # so this supports only &-separator, and doesn't support ;-separator.
  #
  #    ary = URI.decode_www_form("a=1&a=2&b=3")
  #    ary                   #=> [['a', '1'], ['a', '2'], ['b', '3']]
  #    ary.assoc('a').last   #=> '1'
  #    ary.assoc('b').last   #=> '3'
  #    ary.rassoc('a').last  #=> '2'
  #    Hash[ary]             #=> {"a"=>"2", "b"=>"3"}
  #
  # See URI.decode_www_form_component, URI.encode_www_form.
  def self.decode_www_form(str, enc=Encoding::UTF_8, separator: '&', use__charset_: false, isindex: false)
    raise ArgumentError, "the input of #{self.name}.#{__method__} must be ASCII only string" unless str.ascii_only?
    ary = []
    return ary if str.empty?
    enc = Encoding.find(enc)
    str.b.each_line(separator) do |string|
      string.chomp!(separator)
      key, sep, val = string.partition('=')
      if isindex
        if sep.empty?
          val = key
          key = +''
        end
        isindex = false
      end

      if use__charset_ and key == '_charset_' and e = get_encoding(val)
        enc = e
        use__charset_ = false
      end

      key.gsub!(/\+|%\h\h/, TBLDECWWWCOMP_)
      if val
        val.gsub!(/\+|%\h\h/, TBLDECWWWCOMP_)
      else
        val = +''
      end

      ary << [key, val]
    end
    ary.each do |k, v|
      k.force_encoding(enc)
      k.scrub!
      v.force_encoding(enc)
      v.scrub!
    end
    ary
  end

  private
=begin command for WEB_ENCODINGS_
  curl https://encoding.spec.whatwg.org/encodings.json|
  ruby -rjson -e 'H={}
  h={
    "shift_jis"=>"Windows-31J",
    "euc-jp"=>"cp51932",
    "iso-2022-jp"=>"cp50221",
    "x-mac-cyrillic"=>"macCyrillic",
  }
  JSON($<.read).map{|x|x["encodings"]}.flatten.each{|x|
    Encoding.find(n=h.fetch(n=x["name"].downcase,n))rescue next
    x["labels"].each{|y|H[y]=n}
  }
  puts "{"
  H.each{|k,v|puts %[  #{k.dump}=>#{v.dump},]}
  puts "}"
'
=end
  WEB_ENCODINGS_ = {
    "unicode-1-1-utf-8"=>"utf-8",
    "utf-8"=>"utf-8",
    "utf8"=>"utf-8",
    "866"=>"ibm866",
    "cp866"=>"ibm866",
    "csibm866"=>"ibm866",
    "ibm866"=>"ibm866",
    "csisolatin2"=>"iso-8859-2",
    "iso-8859-2"=>"iso-8859-2",
    "iso-ir-101"=>"iso-8859-2",
    "iso8859-2"=>"iso-8859-2",
    "iso88592"=>"iso-8859-2",
    "iso_8859-2"=>"iso-8859-2",
    "iso_8859-2:1987"=>"iso-8859-2",
    "l2"=>"iso-8859-2",
    "latin2"=>"iso-8859-2",
    "csisolatin3"=>"iso-8859-3",
    "iso-8859-3"=>"iso-8859-3",
    "iso-ir-109"=>"iso-8859-3",
    "iso8859-3"=>"iso-8859-3",
    "iso88593"=>"iso-8859-3",
    "iso_8859-3"=>"iso-8859-3",
    "iso_8859-3:1988"=>"iso-8859-3",
    "l3"=>"iso-8859-3",
    "latin3"=>"iso-8859-3",
    "csisolatin4"=>"iso-8859-4",
    "iso-8859-4"=>"iso-8859-4",
    "iso-ir-110"=>"iso-8859-4",
    "iso8859-4"=>"iso-8859-4",
    "iso88594"=>"iso-8859-4",
    "iso_8859-4"=>"iso-8859-4",
    "iso_8859-4:1988"=>"iso-8859-4",
    "l4"=>"iso-8859-4",
    "latin4"=>"iso-8859-4",
    "csisolatincyrillic"=>"iso-8859-5",
    "cyrillic"=>"iso-8859-5",
    "iso-8859-5"=>"iso-8859-5",
    "iso-ir-144"=>"iso-8859-5",
    "iso8859-5"=>"iso-8859-5",
    "iso88595"=>"iso-8859-5",
    "iso_8859-5"=>"iso-8859-5",
    "iso_8859-5:1988"=>"iso-8859-5",
    "arabic"=>"iso-8859-6",
    "asmo-708"=>"iso-8859-6",
    "csiso88596e"=>"iso-8859-6",
    "csiso88596i"=>"iso-8859-6",
    "csisolatinarabic"=>"iso-8859-6",
    "ecma-114"=>"iso-8859-6",
    "iso-8859-6"=>"iso-8859-6",
    "iso-8859-6-e"=>"iso-8859-6",
    "iso-8859-6-i"=>"iso-8859-6",
    "iso-ir-127"=>"iso-8859-6",
    "iso8859-6"=>"iso-8859-6",
    "iso88596"=>"iso-8859-6",
    "iso_8859-6"=>"iso-8859-6",
    "iso_8859-6:1987"=>"iso-8859-6",
    "csisolatingreek"=>"iso-8859-7",
    "ecma-118"=>"iso-8859-7",
    "elot_928"=>"iso-8859-7",
    "greek"=>"iso-8859-7",
    "greek8"=>"iso-8859-7",
    "iso-8859-7"=>"iso-8859-7",
    "iso-ir-126"=>"iso-8859-7",
    "iso8859-7"=>"iso-8859-7",
    "iso88597"=>"iso-8859-7",
    "iso_8859-7"=>"iso-8859-7",
    "iso_8859-7:1987"=>"iso-8859-7",
    "sun_eu_greek"=>"iso-8859-7",
    "csiso88598e"=>"iso-8859-8",
    "csisolatinhebrew"=>"iso-8859-8",
    "hebrew"=>"iso-8859-8",
    "iso-8859-8"=>"iso-8859-8",
    "iso-8859-8-e"=>"iso-8859-8",
    "iso-ir-138"=>"iso-8859-8",
    "iso8859-8"=>"iso-8859-8",
    "iso88598"=>"iso-8859-8",
    "iso_8859-8"=>"iso-8859-8",
    "iso_8859-8:1988"=>"iso-8859-8",
    "visual"=>"iso-8859-8",
    "csisolatin6"=>"iso-8859-10",
    "iso-8859-10"=>"iso-8859-10",
    "iso-ir-157"=>"iso-8859-10",
    "iso8859-10"=>"iso-8859-10",
    "iso885910"=>"iso-8859-10",
    "l6"=>"iso-8859-10",
    "latin6"=>"iso-8859-10",
    "iso-8859-13"=>"iso-8859-13",
    "iso8859-13"=>"iso-8859-13",
    "iso885913"=>"iso-8859-13",
    "iso-8859-14"=>"iso-8859-14",
    "iso8859-14"=>"iso-8859-14",
    "iso885914"=>"iso-8859-14",
    "csisolatin9"=>"iso-8859-15",
    "iso-8859-15"=>"iso-8859-15",
    "iso8859-15"=>"iso-8859-15",
    "iso885915"=>"iso-8859-15",
    "iso_8859-15"=>"iso-8859-15",
    "l9"=>"iso-8859-15",
    "iso-8859-16"=>"iso-8859-16",
    "cskoi8r"=>"koi8-r",
    "koi"=>"koi8-r",
    "koi8"=>"koi8-r",
    "koi8-r"=>"koi8-r",
    "koi8_r"=>"koi8-r",
    "koi8-ru"=>"koi8-u",
    "koi8-u"=>"koi8-u",
    "dos-874"=>"windows-874",
    "iso-8859-11"=>"windows-874",
    "iso8859-11"=>"windows-874",
    "iso885911"=>"windows-874",
    "tis-620"=>"windows-874",
    "windows-874"=>"windows-874",
    "cp1250"=>"windows-1250",
    "windows-1250"=>"windows-1250",
    "x-cp1250"=>"windows-1250",
    "cp1251"=>"windows-1251",
    "windows-1251"=>"windows-1251",
    "x-cp1251"=>"windows-1251",
    "ansi_x3.4-1968"=>"windows-1252",
    "ascii"=>"windows-1252",
    "cp1252"=>"windows-1252",
    "cp819"=>"windows-1252",
    "csisolatin1"=>"windows-1252",
    "ibm819"=>"windows-1252",
    "iso-8859-1"=>"windows-1252",
    "iso-ir-100"=>"windows-1252",
    "iso8859-1"=>"windows-1252",
    "iso88591"=>"windows-1252",
    "iso_8859-1"=>"windows-1252",
    "iso_8859-1:1987"=>"windows-1252",
    "l1"=>"windows-1252",
    "latin1"=>"windows-1252",
    "us-ascii"=>"windows-1252",
    "windows-1252"=>"windows-1252",
    "x-cp1252"=>"windows-1252",
    "cp1253"=>"windows-1253",
    "windows-1253"=>"windows-1253",
    "x-cp1253"=>"windows-1253",
    "cp1254"=>"windows-1254",
    "csisolatin5"=>"windows-1254",
    "iso-8859-9"=>"windows-1254",
    "iso-ir-148"=>"windows-1254",
    "iso8859-9"=>"windows-1254",
    "iso88599"=>"windows-1254",
    "iso_8859-9"=>"windows-1254",
    "iso_8859-9:1989"=>"windows-1254",
    "l5"=>"windows-1254",
    "latin5"=>"windows-1254",
    "windows-1254"=>"windows-1254",
    "x-cp1254"=>"windows-1254",
    "cp1255"=>"windows-1255",
    "windows-1255"=>"windows-1255",
    "x-cp1255"=>"windows-1255",
    "cp1256"=>"windows-1256",
    "windows-1256"=>"windows-1256",
    "x-cp1256"=>"windows-1256",
    "cp1257"=>"windows-1257",
    "windows-1257"=>"windows-1257",
    "x-cp1257"=>"windows-1257",
    "cp1258"=>"windows-1258",
    "windows-1258"=>"windows-1258",
    "x-cp1258"=>"windows-1258",
    "x-mac-cyrillic"=>"macCyrillic",
    "x-mac-ukrainian"=>"macCyrillic",
    "chinese"=>"gbk",
    "csgb2312"=>"gbk",
    "csiso58gb231280"=>"gbk",
    "gb2312"=>"gbk",
    "gb_2312"=>"gbk",
    "gb_2312-80"=>"gbk",
    "gbk"=>"gbk",
    "iso-ir-58"=>"gbk",
    "x-gbk"=>"gbk",
    "gb18030"=>"gb18030",
    "big5"=>"big5",
    "big5-hkscs"=>"big5",
    "cn-big5"=>"big5",
    "csbig5"=>"big5",
    "x-x-big5"=>"big5",
    "cseucpkdfmtjapanese"=>"cp51932",
    "euc-jp"=>"cp51932",
    "x-euc-jp"=>"cp51932",
    "csiso2022jp"=>"cp50221",
    "iso-2022-jp"=>"cp50221",
    "csshiftjis"=>"Windows-31J",
    "ms932"=>"Windows-31J",
    "ms_kanji"=>"Windows-31J",
    "shift-jis"=>"Windows-31J",
    "shift_jis"=>"Windows-31J",
    "sjis"=>"Windows-31J",
    "windows-31j"=>"Windows-31J",
    "x-sjis"=>"Windows-31J",
    "cseuckr"=>"euc-kr",
    "csksc56011987"=>"euc-kr",
    "euc-kr"=>"euc-kr",
    "iso-ir-149"=>"euc-kr",
    "korean"=>"euc-kr",
    "ks_c_5601-1987"=>"euc-kr",
    "ks_c_5601-1989"=>"euc-kr",
    "ksc5601"=>"euc-kr",
    "ksc_5601"=>"euc-kr",
    "windows-949"=>"euc-kr",
    "utf-16be"=>"utf-16be",
    "utf-16"=>"utf-16le",
    "utf-16le"=>"utf-16le",
  } # :nodoc:

  # :nodoc:
  # return encoding or nil
  # http://encoding.spec.whatwg.org/#concept-encoding-get
  def self.get_encoding(label)
    Encoding.find(WEB_ENCODINGS_[label.to_str.strip.downcase]) rescue nil
  end
end # module URI

module Kernel

  #
  # Returns +uri+ converted to an URI object.
  #
  def URI(uri)
    if uri.is_a?(URI::Generic)
      uri
    elsif uri = String.try_convert(uri)
      URI.parse(uri)
    else
      raise ArgumentError,
        "bad argument (expected URI object or URI string)"
    end
  end
  module_function :URI
end
PKFH[`��i	i	share/ruby/uri/http.rbnu�[���# frozen_string_literal: false
# = uri/http.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# License:: You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#
# See URI for general documentation
#

require_relative 'generic'

module URI

  #
  # The syntax of HTTP URIs is defined in RFC1738 section 3.3.
  #
  # Note that the Ruby URI library allows HTTP URLs containing usernames and
  # passwords. This is not legal as per the RFC, but used to be
  # supported in Internet Explorer 5 and 6, before the MS04-004 security
  # update. See <URL:http://support.microsoft.com/kb/834489>.
  #
  class HTTP < Generic
    # A Default port of 80 for URI::HTTP.
    DEFAULT_PORT = 80

    # An Array of the available components for URI::HTTP.
    COMPONENT = %i[
      scheme
      userinfo host port
      path
      query
      fragment
    ].freeze

    #
    # == Description
    #
    # Creates a new URI::HTTP object from components, with syntax checking.
    #
    # The components accepted are userinfo, host, port, path, query, and
    # fragment.
    #
    # The components should be provided either as an Array, or as a Hash
    # with keys formed by preceding the component names with a colon.
    #
    # If an Array is used, the components must be passed in the
    # order <code>[userinfo, host, port, path, query, fragment]</code>.
    #
    # Example:
    #
    #     uri = URI::HTTP.build(host: 'www.example.com', path: '/foo/bar')
    #
    #     uri = URI::HTTP.build([nil, "www.example.com", nil, "/path",
    #       "query", 'fragment'])
    #
    # Currently, if passed userinfo components this method generates
    # invalid HTTP URIs as per RFC 1738.
    #
    def self.build(args)
      tmp = Util.make_components_hash(self, args)
      super(tmp)
    end

    #
    # == Description
    #
    # Returns the full path for an HTTP request, as required by Net::HTTP::Get.
    #
    # If the URI contains a query, the full path is URI#path + '?' + URI#query.
    # Otherwise, the path is simply URI#path.
    #
    # Example:
    #
    #     uri = URI::HTTP.build(path: '/foo/bar', query: 'test=true')
    #     uri.request_uri #  => "/foo/bar?test=true"
    #
    def request_uri
      return unless @path

      url = @query ? "#@path?#@query" : @path.dup
      url.start_with?(?/.freeze) ? url : ?/ + url
    end
  end

  @@schemes['HTTP'] = HTTP

end
PKFH[(	���share/ruby/kconv.rbnu�[���# frozen_string_literal: false
#
# kconv.rb - Kanji Converter.
#
# $Id$
#
# ----
#
# kconv.rb implements the Kconv class for Kanji Converter.  Additionally,
# some methods in String classes are added to allow easy conversion.
#

require 'nkf'

#
# Kanji Converter for Ruby.
#
module Kconv
  #
  # Public Constants
  #

  #Constant of Encoding

  # Auto-Detect
  AUTO = NKF::AUTO
  # ISO-2022-JP
  JIS = NKF::JIS
  # EUC-JP
  EUC = NKF::EUC
  # Shift_JIS
  SJIS = NKF::SJIS
  # BINARY
  BINARY = NKF::BINARY
  # NOCONV
  NOCONV = NKF::NOCONV
  # ASCII
  ASCII = NKF::ASCII
  # UTF-8
  UTF8 = NKF::UTF8
  # UTF-16
  UTF16 = NKF::UTF16
  # UTF-32
  UTF32 = NKF::UTF32
  # UNKNOWN
  UNKNOWN = NKF::UNKNOWN

  #
  # Public Methods
  #

  # call-seq:
  #    Kconv.kconv(str, to_enc, from_enc=nil)
  #
  # Convert <code>str</code> to <code>to_enc</code>.
  # <code>to_enc</code> and <code>from_enc</code> are given as constants of Kconv or Encoding objects.
  def kconv(str, to_enc, from_enc=nil)
    opt = ''
    opt += ' --ic=' + from_enc.to_s if from_enc
    opt += ' --oc=' + to_enc.to_s if to_enc

    ::NKF::nkf(opt, str)
  end
  module_function :kconv

  #
  # Encode to
  #

  # call-seq:
  #    Kconv.tojis(str)   => string
  #
  # Convert <code>str</code> to ISO-2022-JP
  def tojis(str)
    kconv(str, JIS)
  end
  module_function :tojis

  # call-seq:
  #    Kconv.toeuc(str)   => string
  #
  # Convert <code>str</code> to EUC-JP
  def toeuc(str)
    kconv(str, EUC)
  end
  module_function :toeuc

  # call-seq:
  #    Kconv.tosjis(str)   => string
  #
  # Convert <code>str</code> to Shift_JIS
  def tosjis(str)
    kconv(str, SJIS)
  end
  module_function :tosjis

  # call-seq:
  #    Kconv.toutf8(str)   => string
  #
  # Convert <code>str</code> to UTF-8
  def toutf8(str)
    kconv(str, UTF8)
  end
  module_function :toutf8

  # call-seq:
  #    Kconv.toutf16(str)   => string
  #
  # Convert <code>str</code> to UTF-16
  def toutf16(str)
    kconv(str, UTF16)
  end
  module_function :toutf16

  # call-seq:
  #    Kconv.toutf32(str)   => string
  #
  # Convert <code>str</code> to UTF-32
  def toutf32(str)
    kconv(str, UTF32)
  end
  module_function :toutf32

  # call-seq:
  #    Kconv.tolocale   => string
  #
  # Convert <code>self</code> to locale encoding
  def tolocale(str)
    kconv(str, Encoding.locale_charmap)
  end
  module_function :tolocale

  #
  # guess
  #

  # call-seq:
  #    Kconv.guess(str)   => encoding
  #
  # Guess input encoding by NKF.guess
  def guess(str)
    ::NKF::guess(str)
  end
  module_function :guess

  #
  # isEncoding
  #

  # call-seq:
  #    Kconv.iseuc(str)   => true or false
  #
  # Returns whether input encoding is EUC-JP or not.
  #
  # *Note* don't expect this return value is MatchData.
  def iseuc(str)
    str.dup.force_encoding(EUC).valid_encoding?
  end
  module_function :iseuc

  # call-seq:
  #    Kconv.issjis(str)   => true or false
  #
  # Returns whether input encoding is Shift_JIS or not.
  def issjis(str)
    str.dup.force_encoding(SJIS).valid_encoding?
  end
  module_function :issjis

  # call-seq:
  #    Kconv.isjis(str)   => true or false
  #
  # Returns whether input encoding is ISO-2022-JP or not.
  def isjis(str)
    /\A [\t\n\r\x20-\x7E]*
      (?:
        (?:\x1b \x28 I      [\x21-\x7E]*
          |\x1b \x28 J      [\x21-\x7E]*
          |\x1b \x24 @      (?:[\x21-\x7E]{2})*
          |\x1b \x24 B      (?:[\x21-\x7E]{2})*
          |\x1b \x24 \x28 D (?:[\x21-\x7E]{2})*
        )*
        \x1b \x28 B [\t\n\r\x20-\x7E]*
      )*
     \z/nox =~ str.dup.force_encoding('BINARY') ? true : false
  end
  module_function :isjis

  # call-seq:
  #    Kconv.isutf8(str)   => true or false
  #
  # Returns whether input encoding is UTF-8 or not.
  def isutf8(str)
    str.dup.force_encoding(UTF8).valid_encoding?
  end
  module_function :isutf8
end

class String
  # call-seq:
  #    String#kconv(to_enc, from_enc)
  #
  # Convert <code>self</code> to <code>to_enc</code>.
  # <code>to_enc</code> and <code>from_enc</code> are given as constants of Kconv or Encoding objects.
  def kconv(to_enc, from_enc=nil)
    from_enc = self.encoding if !from_enc && self.encoding != Encoding.list[0]
    Kconv::kconv(self, to_enc, from_enc)
  end

  #
  # to Encoding
  #

  # call-seq:
  #    String#tojis   => string
  #
  # Convert <code>self</code> to ISO-2022-JP
  def tojis; Kconv.tojis(self) end

  # call-seq:
  #    String#toeuc   => string
  #
  # Convert <code>self</code> to EUC-JP
  def toeuc; Kconv.toeuc(self) end

  # call-seq:
  #    String#tosjis   => string
  #
  # Convert <code>self</code> to Shift_JIS
  def tosjis; Kconv.tosjis(self) end

  # call-seq:
  #    String#toutf8   => string
  #
  # Convert <code>self</code> to UTF-8
  def toutf8; Kconv.toutf8(self) end

  # call-seq:
  #    String#toutf16   => string
  #
  # Convert <code>self</code> to UTF-16
  def toutf16; Kconv.toutf16(self) end

  # call-seq:
  #    String#toutf32   => string
  #
  # Convert <code>self</code> to UTF-32
  def toutf32; Kconv.toutf32(self) end

  # call-seq:
  #    String#tolocale   => string
  #
  # Convert <code>self</code> to locale encoding
  def tolocale; Kconv.tolocale(self) end

  #
  # is Encoding
  #

  # call-seq:
  #    String#iseuc   => true or false
  #
  # Returns whether <code>self</code>'s encoding is EUC-JP or not.
  def iseuc;	Kconv.iseuc(self) end

  # call-seq:
  #    String#issjis   => true or false
  #
  # Returns whether <code>self</code>'s encoding is Shift_JIS or not.
  def issjis;	Kconv.issjis(self) end

  # call-seq:
  #    String#isjis   => true or false
  #
  # Returns whether <code>self</code>'s encoding is ISO-2022-JP or not.
  def isjis;	Kconv.isjis(self) end

  # call-seq:
  #    String#isutf8   => true or false
  #
  # Returns whether <code>self</code>'s encoding is UTF-8 or not.
  def isutf8;	Kconv.isutf8(self) end
end
PKFH[6�c`�
�
share/ruby/abbrev.rbnu�[���# frozen_string_literal: true
#--
# Copyright (c) 2001,2003 Akinori MUSHA <knu@iDaemons.org>
#
# All rights reserved.  You can redistribute and/or modify it under
# the same terms as Ruby.
#
# $Idaemons: /home/cvs/rb/abbrev.rb,v 1.2 2001/05/30 09:37:45 knu Exp $
# $RoughId: abbrev.rb,v 1.4 2003/10/14 19:45:42 knu Exp $
# $Id$
#++

##
# Calculates the set of unambiguous abbreviations for a given set of strings.
#
#   require 'abbrev'
#   require 'pp'
#
#   pp Abbrev.abbrev(['ruby'])
#   #=>  {"ruby"=>"ruby", "rub"=>"ruby", "ru"=>"ruby", "r"=>"ruby"}
#
#   pp Abbrev.abbrev(%w{ ruby rules })
#
# _Generates:_
#   { "ruby"  =>  "ruby",
#     "rub"   =>  "ruby",
#     "rules" =>  "rules",
#     "rule"  =>  "rules",
#     "rul"   =>  "rules" }
#
# It also provides an array core extension, Array#abbrev.
#
#   pp %w{ summer winter }.abbrev
#
# _Generates:_
#   { "summer"  => "summer",
#     "summe"   => "summer",
#     "summ"    => "summer",
#     "sum"     => "summer",
#     "su"      => "summer",
#     "s"       => "summer",
#     "winter"  => "winter",
#     "winte"   => "winter",
#     "wint"    => "winter",
#     "win"     => "winter",
#     "wi"      => "winter",
#     "w"       => "winter" }

module Abbrev

  # Given a set of strings, calculate the set of unambiguous abbreviations for
  # those strings, and return a hash where the keys are all the possible
  # abbreviations and the values are the full strings.
  #
  # Thus, given +words+ is "car" and "cone", the keys pointing to "car" would
  # be "ca" and "car", while those pointing to "cone" would be "co", "con", and
  # "cone".
  #
  #   require 'abbrev'
  #
  #   Abbrev.abbrev(%w{ car cone })
  #   #=> {"ca"=>"car", "con"=>"cone", "co"=>"cone", "car"=>"car", "cone"=>"cone"}
  #
  # The optional +pattern+ parameter is a pattern or a string. Only input
  # strings that match the pattern or start with the string are included in the
  # output hash.
  #
  #   Abbrev.abbrev(%w{car box cone crab}, /b/)
  #   #=> {"box"=>"box", "bo"=>"box", "b"=>"box", "crab" => "crab"}
  #
  #   Abbrev.abbrev(%w{car box cone}, 'ca')
  #   #=> {"car"=>"car", "ca"=>"car"}
  def abbrev(words, pattern = nil)
    table = {}
    seen = Hash.new(0)

    if pattern.is_a?(String)
      pattern = /\A#{Regexp.quote(pattern)}/  # regard as a prefix
    end

    words.each do |word|
      next if word.empty?
      word.size.downto(1) { |len|
        abbrev = word[0...len]

        next if pattern && pattern !~ abbrev

        case seen[abbrev] += 1
        when 1
          table[abbrev] = word
        when 2
          table.delete(abbrev)
        else
          break
        end
      }
    end

    words.each do |word|
      next if pattern && pattern !~ word

      table[word] = word
    end

    table
  end

  module_function :abbrev
end

class Array
  # Calculates the set of unambiguous abbreviations for the strings in +self+.
  #
  #   require 'abbrev'
  #   %w{ car cone }.abbrev
  #   #=> {"car"=>"car", "ca"=>"car", "cone"=>"cone", "con"=>"cone", "co"=>"cone"}
  #
  # The optional +pattern+ parameter is a pattern or a string. Only input
  # strings that match the pattern or start with the string are included in the
  # output hash.
  #
  #   %w{ fast boat day }.abbrev(/^.a/)
  #   #=> {"fast"=>"fast", "fas"=>"fast", "fa"=>"fast", "day"=>"day", "da"=>"day"}
  #
  #   Abbrev.abbrev(%w{car box cone}, "ca")
  #   #=> {"car"=>"car", "ca"=>"car"}
  #
  # See also Abbrev.abbrev
  def abbrev(pattern = nil)
    Abbrev::abbrev(self, pattern)
  end
end
PKFH[
��!)) share/ruby/getoptlong/version.rbnu�[���class GetoptLong
  VERSION = "0.1.0"
end
PKFH[=�ˮ@�@share/ruby/pathname.rbnu�[���# frozen_string_literal: true
#
# = pathname.rb
#
# Object-Oriented Pathname Class
#
# Author:: Tanaka Akira <akr@m17n.org>
# Documentation:: Author and Gavin Sinclair
#
# For documentation, see class Pathname.
#

require 'pathname.so'

class Pathname

  # :stopdoc:

  # to_path is implemented so Pathname objects are usable with File.open, etc.
  TO_PATH = :to_path

  SAME_PATHS = if File::FNM_SYSCASE.nonzero?
    # Avoid #zero? here because #casecmp can return nil.
    proc {|a, b| a.casecmp(b) == 0}
  else
    proc {|a, b| a == b}
  end


  if File::ALT_SEPARATOR
    SEPARATOR_LIST = "#{Regexp.quote File::ALT_SEPARATOR}#{Regexp.quote File::SEPARATOR}"
    SEPARATOR_PAT = /[#{SEPARATOR_LIST}]/
  else
    SEPARATOR_LIST = "#{Regexp.quote File::SEPARATOR}"
    SEPARATOR_PAT = /#{Regexp.quote File::SEPARATOR}/
  end

  # :startdoc:

  # chop_basename(path) -> [pre-basename, basename] or nil
  def chop_basename(path) # :nodoc:
    base = File.basename(path)
    if /\A#{SEPARATOR_PAT}?\z/o.match?(base)
      return nil
    else
      return path[0, path.rindex(base)], base
    end
  end
  private :chop_basename

  # split_names(path) -> prefix, [name, ...]
  def split_names(path) # :nodoc:
    names = []
    while r = chop_basename(path)
      path, basename = r
      names.unshift basename
    end
    return path, names
  end
  private :split_names

  def prepend_prefix(prefix, relpath) # :nodoc:
    if relpath.empty?
      File.dirname(prefix)
    elsif /#{SEPARATOR_PAT}/o.match?(prefix)
      prefix = File.dirname(prefix)
      prefix = File.join(prefix, "") if File.basename(prefix + 'a') != 'a'
      prefix + relpath
    else
      prefix + relpath
    end
  end
  private :prepend_prefix

  # Returns clean pathname of +self+ with consecutive slashes and useless dots
  # removed.  The filesystem is not accessed.
  #
  # If +consider_symlink+ is +true+, then a more conservative algorithm is used
  # to avoid breaking symbolic linkages.  This may retain more +..+
  # entries than absolutely necessary, but without accessing the filesystem,
  # this can't be avoided.
  #
  # See Pathname#realpath.
  #
  def cleanpath(consider_symlink=false)
    if consider_symlink
      cleanpath_conservative
    else
      cleanpath_aggressive
    end
  end

  #
  # Clean the path simply by resolving and removing excess +.+ and +..+ entries.
  # Nothing more, nothing less.
  #
  def cleanpath_aggressive # :nodoc:
    path = @path
    names = []
    pre = path
    while r = chop_basename(pre)
      pre, base = r
      case base
      when '.'
      when '..'
        names.unshift base
      else
        if names[0] == '..'
          names.shift
        else
          names.unshift base
        end
      end
    end
    pre.tr!(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
    if /#{SEPARATOR_PAT}/o.match?(File.basename(pre))
      names.shift while names[0] == '..'
    end
    self.class.new(prepend_prefix(pre, File.join(*names)))
  end
  private :cleanpath_aggressive

  # has_trailing_separator?(path) -> bool
  def has_trailing_separator?(path) # :nodoc:
    if r = chop_basename(path)
      pre, basename = r
      pre.length + basename.length < path.length
    else
      false
    end
  end
  private :has_trailing_separator?

  # add_trailing_separator(path) -> path
  def add_trailing_separator(path) # :nodoc:
    if File.basename(path + 'a') == 'a'
      path
    else
      File.join(path, "") # xxx: Is File.join is appropriate to add separator?
    end
  end
  private :add_trailing_separator

  def del_trailing_separator(path) # :nodoc:
    if r = chop_basename(path)
      pre, basename = r
      pre + basename
    elsif /#{SEPARATOR_PAT}+\z/o =~ path
      $` + File.dirname(path)[/#{SEPARATOR_PAT}*\z/o]
    else
      path
    end
  end
  private :del_trailing_separator

  def cleanpath_conservative # :nodoc:
    path = @path
    names = []
    pre = path
    while r = chop_basename(pre)
      pre, base = r
      names.unshift base if base != '.'
    end
    pre.tr!(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
    if /#{SEPARATOR_PAT}/o.match?(File.basename(pre))
      names.shift while names[0] == '..'
    end
    if names.empty?
      self.class.new(File.dirname(pre))
    else
      if names.last != '..' && File.basename(path) == '.'
        names << '.'
      end
      result = prepend_prefix(pre, File.join(*names))
      if /\A(?:\.|\.\.)\z/ !~ names.last && has_trailing_separator?(path)
        self.class.new(add_trailing_separator(result))
      else
        self.class.new(result)
      end
    end
  end
  private :cleanpath_conservative

  # Returns the parent directory.
  #
  # This is same as <code>self + '..'</code>.
  def parent
    self + '..'
  end

  # Returns +true+ if +self+ points to a mountpoint.
  def mountpoint?
    begin
      stat1 = self.lstat
      stat2 = self.parent.lstat
      stat1.dev != stat2.dev || stat1.ino == stat2.ino
    rescue Errno::ENOENT
      false
    end
  end

  #
  # Predicate method for root directories.  Returns +true+ if the
  # pathname consists of consecutive slashes.
  #
  # It doesn't access the filesystem.  So it may return +false+ for some
  # pathnames which points to roots such as <tt>/usr/..</tt>.
  #
  def root?
    chop_basename(@path) == nil && /#{SEPARATOR_PAT}/o.match?(@path)
  end

  # Predicate method for testing whether a path is absolute.
  #
  # It returns +true+ if the pathname begins with a slash.
  #
  #   p = Pathname.new('/im/sure')
  #   p.absolute?
  #       #=> true
  #
  #   p = Pathname.new('not/so/sure')
  #   p.absolute?
  #       #=> false
  def absolute?
    !relative?
  end

  # The opposite of Pathname#absolute?
  #
  # It returns +false+ if the pathname begins with a slash.
  #
  #   p = Pathname.new('/im/sure')
  #   p.relative?
  #       #=> false
  #
  #   p = Pathname.new('not/so/sure')
  #   p.relative?
  #       #=> true
  def relative?
    path = @path
    while r = chop_basename(path)
      path, = r
    end
    path == ''
  end

  #
  # Iterates over each component of the path.
  #
  #   Pathname.new("/usr/bin/ruby").each_filename {|filename| ... }
  #     # yields "usr", "bin", and "ruby".
  #
  # Returns an Enumerator if no block was given.
  #
  #   enum = Pathname.new("/usr/bin/ruby").each_filename
  #     # ... do stuff ...
  #   enum.each { |e| ... }
  #     # yields "usr", "bin", and "ruby".
  #
  def each_filename # :yield: filename
    return to_enum(__method__) unless block_given?
    _, names = split_names(@path)
    names.each {|filename| yield filename }
    nil
  end

  # Iterates over and yields a new Pathname object
  # for each element in the given path in descending order.
  #
  #  Pathname.new('/path/to/some/file.rb').descend {|v| p v}
  #     #<Pathname:/>
  #     #<Pathname:/path>
  #     #<Pathname:/path/to>
  #     #<Pathname:/path/to/some>
  #     #<Pathname:/path/to/some/file.rb>
  #
  #  Pathname.new('path/to/some/file.rb').descend {|v| p v}
  #     #<Pathname:path>
  #     #<Pathname:path/to>
  #     #<Pathname:path/to/some>
  #     #<Pathname:path/to/some/file.rb>
  #
  # Returns an Enumerator if no block was given.
  #
  #   enum = Pathname.new("/usr/bin/ruby").descend
  #     # ... do stuff ...
  #   enum.each { |e| ... }
  #     # yields Pathnames /, /usr, /usr/bin, and /usr/bin/ruby.
  #
  # It doesn't access the filesystem.
  #
  def descend
    return to_enum(__method__) unless block_given?
    vs = []
    ascend {|v| vs << v }
    vs.reverse_each {|v| yield v }
    nil
  end

  # Iterates over and yields a new Pathname object
  # for each element in the given path in ascending order.
  #
  #  Pathname.new('/path/to/some/file.rb').ascend {|v| p v}
  #     #<Pathname:/path/to/some/file.rb>
  #     #<Pathname:/path/to/some>
  #     #<Pathname:/path/to>
  #     #<Pathname:/path>
  #     #<Pathname:/>
  #
  #  Pathname.new('path/to/some/file.rb').ascend {|v| p v}
  #     #<Pathname:path/to/some/file.rb>
  #     #<Pathname:path/to/some>
  #     #<Pathname:path/to>
  #     #<Pathname:path>
  #
  # Returns an Enumerator if no block was given.
  #
  #   enum = Pathname.new("/usr/bin/ruby").ascend
  #     # ... do stuff ...
  #   enum.each { |e| ... }
  #     # yields Pathnames /usr/bin/ruby, /usr/bin, /usr, and /.
  #
  # It doesn't access the filesystem.
  #
  def ascend
    return to_enum(__method__) unless block_given?
    path = @path
    yield self
    while r = chop_basename(path)
      path, = r
      break if path.empty?
      yield self.class.new(del_trailing_separator(path))
    end
  end

  #
  # Appends a pathname fragment to +self+ to produce a new Pathname object.
  #
  #   p1 = Pathname.new("/usr")      # Pathname:/usr
  #   p2 = p1 + "bin/ruby"           # Pathname:/usr/bin/ruby
  #   p3 = p1 + "/etc/passwd"        # Pathname:/etc/passwd
  #
  #   # / is aliased to +.
  #   p4 = p1 / "bin/ruby"           # Pathname:/usr/bin/ruby
  #   p5 = p1 / "/etc/passwd"        # Pathname:/etc/passwd
  #
  # This method doesn't access the file system; it is pure string manipulation.
  #
  def +(other)
    other = Pathname.new(other) unless Pathname === other
    Pathname.new(plus(@path, other.to_s))
  end
  alias / +

  def plus(path1, path2) # -> path # :nodoc:
    prefix2 = path2
    index_list2 = []
    basename_list2 = []
    while r2 = chop_basename(prefix2)
      prefix2, basename2 = r2
      index_list2.unshift prefix2.length
      basename_list2.unshift basename2
    end
    return path2 if prefix2 != ''
    prefix1 = path1
    while true
      while !basename_list2.empty? && basename_list2.first == '.'
        index_list2.shift
        basename_list2.shift
      end
      break unless r1 = chop_basename(prefix1)
      prefix1, basename1 = r1
      next if basename1 == '.'
      if basename1 == '..' || basename_list2.empty? || basename_list2.first != '..'
        prefix1 = prefix1 + basename1
        break
      end
      index_list2.shift
      basename_list2.shift
    end
    r1 = chop_basename(prefix1)
    if !r1 && (r1 = /#{SEPARATOR_PAT}/o.match?(File.basename(prefix1)))
      while !basename_list2.empty? && basename_list2.first == '..'
        index_list2.shift
        basename_list2.shift
      end
    end
    if !basename_list2.empty?
      suffix2 = path2[index_list2.first..-1]
      r1 ? File.join(prefix1, suffix2) : prefix1 + suffix2
    else
      r1 ? prefix1 : File.dirname(prefix1)
    end
  end
  private :plus

  #
  # Joins the given pathnames onto +self+ to create a new Pathname object.
  #
  #   path0 = Pathname.new("/usr")                # Pathname:/usr
  #   path0 = path0.join("bin/ruby")              # Pathname:/usr/bin/ruby
  #       # is the same as
  #   path1 = Pathname.new("/usr") + "bin/ruby"   # Pathname:/usr/bin/ruby
  #   path0 == path1
  #       #=> true
  #
  def join(*args)
    return self if args.empty?
    result = args.pop
    result = Pathname.new(result) unless Pathname === result
    return result if result.absolute?
    args.reverse_each {|arg|
      arg = Pathname.new(arg) unless Pathname === arg
      result = arg + result
      return result if result.absolute?
    }
    self + result
  end

  #
  # Returns the children of the directory (files and subdirectories, not
  # recursive) as an array of Pathname objects.
  #
  # By default, the returned pathnames will have enough information to access
  # the files. If you set +with_directory+ to +false+, then the returned
  # pathnames will contain the filename only.
  #
  # For example:
  #   pn = Pathname("/usr/lib/ruby/1.8")
  #   pn.children
  #       # -> [ Pathname:/usr/lib/ruby/1.8/English.rb,
  #              Pathname:/usr/lib/ruby/1.8/Env.rb,
  #              Pathname:/usr/lib/ruby/1.8/abbrev.rb, ... ]
  #   pn.children(false)
  #       # -> [ Pathname:English.rb, Pathname:Env.rb, Pathname:abbrev.rb, ... ]
  #
  # Note that the results never contain the entries +.+ and +..+ in
  # the directory because they are not children.
  #
  def children(with_directory=true)
    with_directory = false if @path == '.'
    result = []
    Dir.foreach(@path) {|e|
      next if e == '.' || e == '..'
      if with_directory
        result << self.class.new(File.join(@path, e))
      else
        result << self.class.new(e)
      end
    }
    result
  end

  # Iterates over the children of the directory
  # (files and subdirectories, not recursive).
  #
  # It yields Pathname object for each child.
  #
  # By default, the yielded pathnames will have enough information to access
  # the files.
  #
  # If you set +with_directory+ to +false+, then the returned pathnames will
  # contain the filename only.
  #
  #   Pathname("/usr/local").each_child {|f| p f }
  #   #=> #<Pathname:/usr/local/share>
  #   #   #<Pathname:/usr/local/bin>
  #   #   #<Pathname:/usr/local/games>
  #   #   #<Pathname:/usr/local/lib>
  #   #   #<Pathname:/usr/local/include>
  #   #   #<Pathname:/usr/local/sbin>
  #   #   #<Pathname:/usr/local/src>
  #   #   #<Pathname:/usr/local/man>
  #
  #   Pathname("/usr/local").each_child(false) {|f| p f }
  #   #=> #<Pathname:share>
  #   #   #<Pathname:bin>
  #   #   #<Pathname:games>
  #   #   #<Pathname:lib>
  #   #   #<Pathname:include>
  #   #   #<Pathname:sbin>
  #   #   #<Pathname:src>
  #   #   #<Pathname:man>
  #
  # Note that the results never contain the entries +.+ and +..+ in
  # the directory because they are not children.
  #
  # See Pathname#children
  #
  def each_child(with_directory=true, &b)
    children(with_directory).each(&b)
  end

  #
  # Returns a relative path from the given +base_directory+ to the receiver.
  #
  # If +self+ is absolute, then +base_directory+ must be absolute too.
  #
  # If +self+ is relative, then +base_directory+ must be relative too.
  #
  # This method doesn't access the filesystem.  It assumes no symlinks.
  #
  # ArgumentError is raised when it cannot find a relative path.
  #
  def relative_path_from(base_directory)
    base_directory = Pathname.new(base_directory) unless base_directory.is_a? Pathname
    dest_directory = self.cleanpath.to_s
    base_directory = base_directory.cleanpath.to_s
    dest_prefix = dest_directory
    dest_names = []
    while r = chop_basename(dest_prefix)
      dest_prefix, basename = r
      dest_names.unshift basename if basename != '.'
    end
    base_prefix = base_directory
    base_names = []
    while r = chop_basename(base_prefix)
      base_prefix, basename = r
      base_names.unshift basename if basename != '.'
    end
    unless SAME_PATHS[dest_prefix, base_prefix]
      raise ArgumentError, "different prefix: #{dest_prefix.inspect} and #{base_directory.inspect}"
    end
    while !dest_names.empty? &&
          !base_names.empty? &&
          SAME_PATHS[dest_names.first, base_names.first]
      dest_names.shift
      base_names.shift
    end
    if base_names.include? '..'
      raise ArgumentError, "base_directory has ..: #{base_directory.inspect}"
    end
    base_names.fill('..')
    relpath_names = base_names + dest_names
    if relpath_names.empty?
      Pathname.new('.')
    else
      Pathname.new(File.join(*relpath_names))
    end
  end
end


class Pathname    # * Find *
  #
  # Iterates over the directory tree in a depth first manner, yielding a
  # Pathname for each file under "this" directory.
  #
  # Returns an Enumerator if no block is given.
  #
  # Since it is implemented by the standard library module Find, Find.prune can
  # be used to control the traversal.
  #
  # If +self+ is +.+, yielded pathnames begin with a filename in the
  # current directory, not +./+.
  #
  # See Find.find
  #
  def find(ignore_error: true) # :yield: pathname
    return to_enum(__method__, ignore_error: ignore_error) unless block_given?
    require 'find'
    if @path == '.'
      Find.find(@path, ignore_error: ignore_error) {|f| yield self.class.new(f.sub(%r{\A\./}, '')) }
    else
      Find.find(@path, ignore_error: ignore_error) {|f| yield self.class.new(f) }
    end
  end
end


class Pathname    # * FileUtils *
  # Creates a full path, including any intermediate directories that don't yet
  # exist.
  #
  # See FileUtils.mkpath and FileUtils.mkdir_p
  def mkpath
    require 'fileutils'
    FileUtils.mkpath(@path)
    nil
  end

  # Recursively deletes a directory, including all directories beneath it.
  #
  # See FileUtils.rm_r
  def rmtree
    # The name "rmtree" is borrowed from File::Path of Perl.
    # File::Path provides "mkpath" and "rmtree".
    require 'fileutils'
    FileUtils.rm_r(@path)
    nil
  end
end

PKFH[��A�	�	share/ruby/find.rbnu�[���# frozen_string_literal: true
#
# find.rb: the Find module for processing all files under a given directory.
#

#
# The +Find+ module supports the top-down traversal of a set of file paths.
#
# For example, to total the size of all files under your home directory,
# ignoring anything in a "dot" directory (e.g. $HOME/.ssh):
#
#   require 'find'
#
#   total_size = 0
#
#   Find.find(ENV["HOME"]) do |path|
#     if FileTest.directory?(path)
#       if File.basename(path).start_with?('.')
#         Find.prune       # Don't look any further into this directory.
#       else
#         next
#       end
#     else
#       total_size += FileTest.size(path)
#     end
#   end
#
module Find

  #
  # Calls the associated block with the name of every file and directory listed
  # as arguments, then recursively on their subdirectories, and so on.
  #
  # Returns an enumerator if no block is given.
  #
  # See the +Find+ module documentation for an example.
  #
  def find(*paths, ignore_error: true) # :yield: path
    block_given? or return enum_for(__method__, *paths, ignore_error: ignore_error)

    fs_encoding = Encoding.find("filesystem")

    paths.collect!{|d| raise Errno::ENOENT, d unless File.exist?(d); d.dup}.each do |path|
      path = path.to_path if path.respond_to? :to_path
      enc = path.encoding == Encoding::US_ASCII ? fs_encoding : path.encoding
      ps = [path]
      while file = ps.shift
        catch(:prune) do
          yield file.dup
          begin
            s = File.lstat(file)
          rescue Errno::ENOENT, Errno::EACCES, Errno::ENOTDIR, Errno::ELOOP, Errno::ENAMETOOLONG
            raise unless ignore_error
            next
          end
          if s.directory? then
            begin
              fs = Dir.children(file, encoding: enc)
            rescue Errno::ENOENT, Errno::EACCES, Errno::ENOTDIR, Errno::ELOOP, Errno::ENAMETOOLONG
              raise unless ignore_error
              next
            end
            fs.sort!
            fs.reverse_each {|f|
              f = File.join(file, f)
              ps.unshift f
            }
          end
        end
      end
    end
    nil
  end

  #
  # Skips the current file or directory, restarting the loop with the next
  # entry. If the current file is a directory, that directory will not be
  # recursively entered. Meaningful only within the block associated with
  # Find::find.
  #
  # See the +Find+ module documentation for an example.
  #
  def prune
    throw :prune
  end

  module_function :find, :prune
end
PKFH[�v��~1~1share/ruby/prime.rbnu�[���# frozen_string_literal: false
#
# = prime.rb
#
# Prime numbers and factorization library.
#
# Copyright::
#   Copyright (c) 1998-2008 Keiju ISHITSUKA(SHL Japan Inc.)
#   Copyright (c) 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
#
# Documentation::
#   Yuki Sonoda
#

require "singleton"
require "forwardable"

class Integer
  # Re-composes a prime factorization and returns the product.
  #
  # See Prime#int_from_prime_division for more details.
  def Integer.from_prime_division(pd)
    Prime.int_from_prime_division(pd)
  end

  # Returns the factorization of +self+.
  #
  # See Prime#prime_division for more details.
  def prime_division(generator = Prime::Generator23.new)
    Prime.prime_division(self, generator)
  end

  # Returns true if +self+ is a prime number, else returns false.
  def prime?
    return self >= 2 if self <= 3
    return true if self == 5
    return false unless 30.gcd(self) == 1
    (7..Integer.sqrt(self)).step(30) do |p|
      return false if
        self%(p)    == 0 || self%(p+4)  == 0 || self%(p+6)  == 0 || self%(p+10) == 0 ||
        self%(p+12) == 0 || self%(p+16) == 0 || self%(p+22) == 0 || self%(p+24) == 0
    end
    true
  end

  # Iterates the given block over all prime numbers.
  #
  # See +Prime+#each for more details.
  def Integer.each_prime(ubound, &block) # :yields: prime
    Prime.each(ubound, &block)
  end
end

#
# The set of all prime numbers.
#
# == Example
#
#   Prime.each(100) do |prime|
#     p prime  #=> 2, 3, 5, 7, 11, ...., 97
#   end
#
# Prime is Enumerable:
#
#   Prime.first 5 # => [2, 3, 5, 7, 11]
#
# == Retrieving the instance
#
# For convenience, each instance method of +Prime+.instance can be accessed
# as a class method of +Prime+.
#
# e.g.
#   Prime.instance.prime?(2)  #=> true
#   Prime.prime?(2)           #=> true
#
# == Generators
#
# A "generator" provides an implementation of enumerating pseudo-prime
# numbers and it remembers the position of enumeration and upper bound.
# Furthermore, it is an external iterator of prime enumeration which is
# compatible with an Enumerator.
#
# +Prime+::+PseudoPrimeGenerator+ is the base class for generators.
# There are few implementations of generator.
#
# [+Prime+::+EratosthenesGenerator+]
#   Uses eratosthenes' sieve.
# [+Prime+::+TrialDivisionGenerator+]
#   Uses the trial division method.
# [+Prime+::+Generator23+]
#   Generates all positive integers which are not divisible by either 2 or 3.
#   This sequence is very bad as a pseudo-prime sequence. But this
#   is faster and uses much less memory than the other generators. So,
#   it is suitable for factorizing an integer which is not large but
#   has many prime factors. e.g. for Prime#prime? .

class Prime

  VERSION = "0.1.1"

  include Enumerable
  include Singleton

  class << self
    extend Forwardable
    include Enumerable

    def method_added(method) # :nodoc:
      (class<< self;self;end).def_delegator :instance, method
    end
  end

  # Iterates the given block over all prime numbers.
  #
  # == Parameters
  #
  # +ubound+::
  #   Optional. An arbitrary positive number.
  #   The upper bound of enumeration. The method enumerates
  #   prime numbers infinitely if +ubound+ is nil.
  # +generator+::
  #   Optional. An implementation of pseudo-prime generator.
  #
  # == Return value
  #
  # An evaluated value of the given block at the last time.
  # Or an enumerator which is compatible to an +Enumerator+
  # if no block given.
  #
  # == Description
  #
  # Calls +block+ once for each prime number, passing the prime as
  # a parameter.
  #
  # +ubound+::
  #   Upper bound of prime numbers. The iterator stops after it
  #   yields all prime numbers p <= +ubound+.
  #
  def each(ubound = nil, generator = EratosthenesGenerator.new, &block)
    generator.upper_bound = ubound
    generator.each(&block)
  end


  # Returns true if +value+ is a prime number, else returns false.
  #
  # == Parameters
  #
  # +value+:: an arbitrary integer to be checked.
  # +generator+:: optional. A pseudo-prime generator.
  def prime?(value, generator = Prime::Generator23.new)
    raise ArgumentError, "Expected a prime generator, got #{generator}" unless generator.respond_to? :each
    raise ArgumentError, "Expected an integer, got #{value}" unless value.respond_to?(:integer?) && value.integer?
    return false if value < 2
    generator.each do |num|
      q,r = value.divmod num
      return true if q < num
      return false if r == 0
    end
  end

  # Re-composes a prime factorization and returns the product.
  #
  # == Parameters
  # +pd+:: Array of pairs of integers. The each internal
  #        pair consists of a prime number -- a prime factor --
  #        and a natural number -- an exponent.
  #
  # == Example
  # For <tt>[[p_1, e_1], [p_2, e_2], ...., [p_n, e_n]]</tt>, it returns:
  #
  #   p_1**e_1 * p_2**e_2 * .... * p_n**e_n.
  #
  #   Prime.int_from_prime_division([[2,2], [3,1]])  #=> 12
  def int_from_prime_division(pd)
    pd.inject(1){|value, (prime, index)|
      value * prime**index
    }
  end

  # Returns the factorization of +value+.
  #
  # == Parameters
  # +value+:: An arbitrary integer.
  # +generator+:: Optional. A pseudo-prime generator.
  #               +generator+.succ must return the next
  #               pseudo-prime number in the ascending
  #               order. It must generate all prime numbers,
  #               but may also generate non prime numbers too.
  #
  # === Exceptions
  # +ZeroDivisionError+:: when +value+ is zero.
  #
  # == Example
  # For an arbitrary integer:
  #
  #   n = p_1**e_1 * p_2**e_2 * .... * p_n**e_n,
  #
  # prime_division(n) returns:
  #
  #   [[p_1, e_1], [p_2, e_2], ...., [p_n, e_n]].
  #
  #   Prime.prime_division(12) #=> [[2,2], [3,1]]
  #
  def prime_division(value, generator = Prime::Generator23.new)
    raise ZeroDivisionError if value == 0
    if value < 0
      value = -value
      pv = [[-1, 1]]
    else
      pv = []
    end
    generator.each do |prime|
      count = 0
      while (value1, mod = value.divmod(prime)
             mod) == 0
        value = value1
        count += 1
      end
      if count != 0
        pv.push [prime, count]
      end
      break if value1 <= prime
    end
    if value > 1
      pv.push [value, 1]
    end
    pv
  end

  # An abstract class for enumerating pseudo-prime numbers.
  #
  # Concrete subclasses should override succ, next, rewind.
  class PseudoPrimeGenerator
    include Enumerable

    def initialize(ubound = nil)
      @ubound = ubound
    end

    def upper_bound=(ubound)
      @ubound = ubound
    end
    def upper_bound
      @ubound
    end

    # returns the next pseudo-prime number, and move the internal
    # position forward.
    #
    # +PseudoPrimeGenerator+#succ raises +NotImplementedError+.
    def succ
      raise NotImplementedError, "need to define `succ'"
    end

    # alias of +succ+.
    def next
      raise NotImplementedError, "need to define `next'"
    end

    # Rewinds the internal position for enumeration.
    #
    # See +Enumerator+#rewind.
    def rewind
      raise NotImplementedError, "need to define `rewind'"
    end

    # Iterates the given block for each prime number.
    def each
      return self.dup unless block_given?
      if @ubound
        last_value = nil
        loop do
          prime = succ
          break last_value if prime > @ubound
          last_value = yield prime
        end
      else
        loop do
          yield succ
        end
      end
    end

    # see +Enumerator+#with_index.
    def with_index(offset = 0, &block)
      return enum_for(:with_index, offset) { Float::INFINITY } unless block
      return each_with_index(&block) if offset == 0

      each do |prime|
        yield prime, offset
        offset += 1
      end
    end

    # see +Enumerator+#with_object.
    def with_object(obj)
      return enum_for(:with_object, obj) { Float::INFINITY } unless block_given?
      each do |prime|
        yield prime, obj
      end
    end

    def size
      Float::INFINITY
    end
  end

  # An implementation of +PseudoPrimeGenerator+.
  #
  # Uses +EratosthenesSieve+.
  class EratosthenesGenerator < PseudoPrimeGenerator
    def initialize
      @last_prime_index = -1
      super
    end

    def succ
      @last_prime_index += 1
      EratosthenesSieve.instance.get_nth_prime(@last_prime_index)
    end
    def rewind
      initialize
    end
    alias next succ
  end

  # An implementation of +PseudoPrimeGenerator+ which uses
  # a prime table generated by trial division.
  class TrialDivisionGenerator < PseudoPrimeGenerator
    def initialize
      @index = -1
      super
    end

    def succ
      TrialDivision.instance[@index += 1]
    end
    def rewind
      initialize
    end
    alias next succ
  end

  # Generates all integers which are greater than 2 and
  # are not divisible by either 2 or 3.
  #
  # This is a pseudo-prime generator, suitable on
  # checking primality of an integer by brute force
  # method.
  class Generator23 < PseudoPrimeGenerator
    def initialize
      @prime = 1
      @step = nil
      super
    end

    def succ
      if (@step)
        @prime += @step
        @step = 6 - @step
      else
        case @prime
        when 1; @prime = 2
        when 2; @prime = 3
        when 3; @prime = 5; @step = 2
        end
      end
      @prime
    end
    alias next succ
    def rewind
      initialize
    end
  end

  # Internal use. An implementation of prime table by trial division method.
  class TrialDivision
    include Singleton

    def initialize # :nodoc:
      # These are included as class variables to cache them for later uses.  If memory
      #   usage is a problem, they can be put in Prime#initialize as instance variables.

      # There must be no primes between @primes[-1] and @next_to_check.
      @primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101]
      # @next_to_check % 6 must be 1.
      @next_to_check = 103            # @primes[-1] - @primes[-1] % 6 + 7
      @ulticheck_index = 3            # @primes.index(@primes.reverse.find {|n|
      #   n < Math.sqrt(@@next_to_check) })
      @ulticheck_next_squared = 121   # @primes[@ulticheck_index + 1] ** 2
    end

    # Returns the +index+th prime number.
    #
    # +index+ is a 0-based index.
    def [](index)
      while index >= @primes.length
        # Only check for prime factors up to the square root of the potential primes,
        #   but without the performance hit of an actual square root calculation.
        if @next_to_check + 4 > @ulticheck_next_squared
          @ulticheck_index += 1
          @ulticheck_next_squared = @primes.at(@ulticheck_index + 1) ** 2
        end
        # Only check numbers congruent to one and five, modulo six. All others

        #   are divisible by two or three.  This also allows us to skip checking against
        #   two and three.
        @primes.push @next_to_check if @primes[2..@ulticheck_index].find {|prime| @next_to_check % prime == 0 }.nil?
        @next_to_check += 4
        @primes.push @next_to_check if @primes[2..@ulticheck_index].find {|prime| @next_to_check % prime == 0 }.nil?
        @next_to_check += 2
      end
      @primes[index]
    end
  end

  # Internal use. An implementation of Eratosthenes' sieve
  class EratosthenesSieve
    include Singleton

    def initialize
      @primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101]
      # @max_checked must be an even number
      @max_checked = @primes.last + 1
    end

    def get_nth_prime(n)
      compute_primes while @primes.size <= n
      @primes[n]
    end

    private
    def compute_primes
      # max_segment_size must be an even number
      max_segment_size = 1e6.to_i
      max_cached_prime = @primes.last
      # do not double count primes if #compute_primes is interrupted
      # by Timeout.timeout
      @max_checked = max_cached_prime + 1 if max_cached_prime > @max_checked

      segment_min = @max_checked
      segment_max = [segment_min + max_segment_size, max_cached_prime * 2].min
      root = Integer.sqrt(segment_max)

      segment = ((segment_min + 1) .. segment_max).step(2).to_a

      (1..Float::INFINITY).each do |sieving|
        prime = @primes[sieving]
        break if prime > root
        composite_index = (-(segment_min + 1 + prime) / 2) % prime
        while composite_index < segment.size do
          segment[composite_index] = nil
          composite_index += prime
        end
      end

      @primes.concat(segment.compact!)

      @max_checked = segment_max
    end
  end
end
PKGH[?pF�SSshare/ruby/rinda/rinda.rbnu�[���# frozen_string_literal: false
require 'drb/drb'

##
# A module to implement the Linda distributed computing paradigm in Ruby.
#
# Rinda is part of DRb (dRuby).
#
# == Example(s)
#
# See the sample/drb/ directory in the Ruby distribution, from 1.8.2 onwards.
#
#--
# TODO
# == Introduction to Linda/rinda?
#
# == Why is this library separate from DRb?

module Rinda

  ##
  # Rinda error base class

  class RindaError < RuntimeError; end

  ##
  # Raised when a hash-based tuple has an invalid key.

  class InvalidHashTupleKey < RindaError; end

  ##
  # Raised when trying to use a canceled tuple.

  class RequestCanceledError < ThreadError; end

  ##
  # Raised when trying to use an expired tuple.

  class RequestExpiredError < ThreadError; end

  ##
  # A tuple is the elementary object in Rinda programming.
  # Tuples may be matched against templates if the tuple and
  # the template are the same size.

  class Tuple

    ##
    # Creates a new Tuple from +ary_or_hash+ which must be an Array or Hash.

    def initialize(ary_or_hash)
      if hash?(ary_or_hash)
        init_with_hash(ary_or_hash)
      else
        init_with_ary(ary_or_hash)
      end
    end

    ##
    # The number of elements in the tuple.

    def size
      @tuple.size
    end

    ##
    # Accessor method for elements of the tuple.

    def [](k)
      @tuple[k]
    end

    ##
    # Fetches item +k+ from the tuple.

    def fetch(k)
      @tuple.fetch(k)
    end

    ##
    # Iterate through the tuple, yielding the index or key, and the
    # value, thus ensuring arrays are iterated similarly to hashes.

    def each # FIXME
      if Hash === @tuple
        @tuple.each { |k, v| yield(k, v) }
      else
        @tuple.each_with_index { |v, k| yield(k, v) }
      end
    end

    ##
    # Return the tuple itself
    def value
      @tuple
    end

    private

    def hash?(ary_or_hash)
      ary_or_hash.respond_to?(:keys)
    end

    ##
    # Munges +ary+ into a valid Tuple.

    def init_with_ary(ary)
      @tuple = Array.new(ary.size)
      @tuple.size.times do |i|
        @tuple[i] = ary[i]
      end
    end

    ##
    # Ensures +hash+ is a valid Tuple.

    def init_with_hash(hash)
      @tuple = Hash.new
      hash.each do |k, v|
        raise InvalidHashTupleKey unless String === k
        @tuple[k] = v
      end
    end

  end

  ##
  # Templates are used to match tuples in Rinda.

  class Template < Tuple

    ##
    # Matches this template against +tuple+.  The +tuple+ must be the same
    # size as the template.  An element with a +nil+ value in a template acts
    # as a wildcard, matching any value in the corresponding position in the
    # tuple.  Elements of the template match the +tuple+ if the are #== or
    # #===.
    #
    #   Template.new([:foo, 5]).match   Tuple.new([:foo, 5]) # => true
    #   Template.new([:foo, nil]).match Tuple.new([:foo, 5]) # => true
    #   Template.new([String]).match    Tuple.new(['hello']) # => true
    #
    #   Template.new([:foo]).match      Tuple.new([:foo, 5]) # => false
    #   Template.new([:foo, 6]).match   Tuple.new([:foo, 5]) # => false
    #   Template.new([:foo, nil]).match Tuple.new([:foo])    # => false
    #   Template.new([:foo, 6]).match   Tuple.new([:foo])    # => false

    def match(tuple)
      return false unless tuple.respond_to?(:size)
      return false unless tuple.respond_to?(:fetch)
      return false unless self.size == tuple.size
      each do |k, v|
        begin
          it = tuple.fetch(k)
        rescue
          return false
        end
        next if v.nil?
        next if v == it
        next if v === it
        return false
      end
      return true
    end

    ##
    # Alias for #match.

    def ===(tuple)
      match(tuple)
    end

  end

  ##
  # <i>Documentation?</i>

  class DRbObjectTemplate

    ##
    # Creates a new DRbObjectTemplate that will match against +uri+ and +ref+.

    def initialize(uri=nil, ref=nil)
      @drb_uri = uri
      @drb_ref = ref
    end

    ##
    # This DRbObjectTemplate matches +ro+ if the remote object's drburi and
    # drbref are the same.  +nil+ is used as a wildcard.

    def ===(ro)
      return true if super(ro)
      unless @drb_uri.nil?
        return false unless (@drb_uri === ro.__drburi rescue false)
      end
      unless @drb_ref.nil?
        return false unless (@drb_ref === ro.__drbref rescue false)
      end
      true
    end

  end

  ##
  # TupleSpaceProxy allows a remote Tuplespace to appear as local.

  class TupleSpaceProxy
    ##
    # A Port ensures that a moved tuple arrives properly at its destination
    # and does not get lost.
    #
    # See https://bugs.ruby-lang.org/issues/8125

    class Port # :nodoc:
      attr_reader :value

      def self.deliver
        port = new

        begin
          yield(port)
        ensure
          port.close
        end

        port.value
      end

      def initialize
        @open = true
        @value = nil
      end

      ##
      # Don't let the DRb thread push to it when remote sends tuple

      def close
        @open = false
      end

      ##
      # Stores +value+ and ensure it does not get marshaled multiple times.

      def push value
        raise 'port closed' unless @open

        @value = value

        nil # avoid Marshal
      end
    end

    ##
    # Creates a new TupleSpaceProxy to wrap +ts+.

    def initialize(ts)
      @ts = ts
    end

    ##
    # Adds +tuple+ to the proxied TupleSpace.  See TupleSpace#write.

    def write(tuple, sec=nil)
      @ts.write(tuple, sec)
    end

    ##
    # Takes +tuple+ from the proxied TupleSpace.  See TupleSpace#take.

    def take(tuple, sec=nil, &block)
      Port.deliver do |port|
        @ts.move(DRbObject.new(port), tuple, sec, &block)
      end
    end

    ##
    # Reads +tuple+ from the proxied TupleSpace.  See TupleSpace#read.

    def read(tuple, sec=nil, &block)
      @ts.read(tuple, sec, &block)
    end

    ##
    # Reads all tuples matching +tuple+ from the proxied TupleSpace.  See
    # TupleSpace#read_all.

    def read_all(tuple)
      @ts.read_all(tuple)
    end

    ##
    # Registers for notifications of event +ev+ on the proxied TupleSpace.
    # See TupleSpace#notify

    def notify(ev, tuple, sec=nil)
      @ts.notify(ev, tuple, sec)
    end

  end

  ##
  # An SimpleRenewer allows a TupleSpace to check if a TupleEntry is still
  # alive.

  class SimpleRenewer

    include DRbUndumped

    ##
    # Creates a new SimpleRenewer that keeps an object alive for another +sec+
    # seconds.

    def initialize(sec=180)
      @sec = sec
    end

    ##
    # Called by the TupleSpace to check if the object is still alive.

    def renew
      @sec
    end
  end

end

PKGH[0��T�7�7share/ruby/rinda/tuplespace.rbnu�[���# frozen_string_literal: false
require 'monitor'
require 'drb/drb'
require_relative 'rinda'
require 'forwardable'

module Rinda

  ##
  # A TupleEntry is a Tuple (i.e. a possible entry in some Tuplespace)
  # together with expiry and cancellation data.

  class TupleEntry

    include DRbUndumped

    attr_accessor :expires

    ##
    # Creates a TupleEntry based on +ary+ with an optional renewer or expiry
    # time +sec+.
    #
    # A renewer must implement the +renew+ method which returns a Numeric,
    # nil, or true to indicate when the tuple has expired.

    def initialize(ary, sec=nil)
      @cancel = false
      @expires = nil
      @tuple = make_tuple(ary)
      @renewer = nil
      renew(sec)
    end

    ##
    # Marks this TupleEntry as canceled.

    def cancel
      @cancel = true
    end

    ##
    # A TupleEntry is dead when it is canceled or expired.

    def alive?
      !canceled? && !expired?
    end

    ##
    # Return the object which makes up the tuple itself: the Array
    # or Hash.

    def value; @tuple.value; end

    ##
    # Returns the canceled status.

    def canceled?; @cancel; end

    ##
    # Has this tuple expired? (true/false).
    #
    # A tuple has expired when its expiry timer based on the +sec+ argument to
    # #initialize runs out.

    def expired?
      return true unless @expires
      return false if @expires > Time.now
      return true if @renewer.nil?
      renew(@renewer)
      return true unless @expires
      return @expires < Time.now
    end

    ##
    # Reset the expiry time according to +sec_or_renewer+.
    #
    # +nil+::    it is set to expire in the far future.
    # +true+::   it has expired.
    # Numeric::  it will expire in that many seconds.
    #
    # Otherwise the argument refers to some kind of renewer object
    # which will reset its expiry time.

    def renew(sec_or_renewer)
      sec, @renewer = get_renewer(sec_or_renewer)
      @expires = make_expires(sec)
    end

    ##
    # Returns an expiry Time based on +sec+ which can be one of:
    # Numeric:: +sec+ seconds into the future
    # +true+::  the expiry time is the start of 1970 (i.e. expired)
    # +nil+::   it is  Tue Jan 19 03:14:07 GMT Standard Time 2038 (i.e. when
    #           UNIX clocks will die)

    def make_expires(sec=nil)
      case sec
      when Numeric
        Time.now + sec
      when true
        Time.at(1)
      when nil
        Time.at(2**31-1)
      end
    end

    ##
    # Retrieves +key+ from the tuple.

    def [](key)
      @tuple[key]
    end

    ##
    # Fetches +key+ from the tuple.

    def fetch(key)
      @tuple.fetch(key)
    end

    ##
    # The size of the tuple.

    def size
      @tuple.size
    end

    ##
    # Creates a Rinda::Tuple for +ary+.

    def make_tuple(ary)
      Rinda::Tuple.new(ary)
    end

    private

    ##
    # Returns a valid argument to make_expires and the renewer or nil.
    #
    # Given +true+, +nil+, or Numeric, returns that value and +nil+ (no actual
    # renewer).  Otherwise it returns an expiry value from calling +it.renew+
    # and the renewer.

    def get_renewer(it)
      case it
      when Numeric, true, nil
        return it, nil
      else
        begin
          return it.renew, it
        rescue Exception
          return it, nil
        end
      end
    end

  end

  ##
  # A TemplateEntry is a Template together with expiry and cancellation data.

  class TemplateEntry < TupleEntry
    ##
    # Matches this TemplateEntry against +tuple+.  See Template#match for
    # details on how a Template matches a Tuple.

    def match(tuple)
      @tuple.match(tuple)
    end

    alias === match

    def make_tuple(ary) # :nodoc:
      Rinda::Template.new(ary)
    end

  end

  ##
  # <i>Documentation?</i>

  class WaitTemplateEntry < TemplateEntry

    attr_reader :found

    def initialize(place, ary, expires=nil)
      super(ary, expires)
      @place = place
      @cond = place.new_cond
      @found = nil
    end

    def cancel
      super
      signal
    end

    def wait
      @cond.wait
    end

    def read(tuple)
      @found = tuple
      signal
    end

    def signal
      @place.synchronize do
        @cond.signal
      end
    end

  end

  ##
  # A NotifyTemplateEntry is returned by TupleSpace#notify and is notified of
  # TupleSpace changes.  You may receive either your subscribed event or the
  # 'close' event when iterating over notifications.
  #
  # See TupleSpace#notify_event for valid notification types.
  #
  # == Example
  #
  #   ts = Rinda::TupleSpace.new
  #   observer = ts.notify 'write', [nil]
  #
  #   Thread.start do
  #     observer.each { |t| p t }
  #   end
  #
  #   3.times { |i| ts.write [i] }
  #
  # Outputs:
  #
  #   ['write', [0]]
  #   ['write', [1]]
  #   ['write', [2]]

  class NotifyTemplateEntry < TemplateEntry

    ##
    # Creates a new NotifyTemplateEntry that watches +place+ for +event+s that
    # match +tuple+.

    def initialize(place, event, tuple, expires=nil)
      ary = [event, Rinda::Template.new(tuple)]
      super(ary, expires)
      @queue = Thread::Queue.new
      @done = false
    end

    ##
    # Called by TupleSpace to notify this NotifyTemplateEntry of a new event.

    def notify(ev)
      @queue.push(ev)
    end

    ##
    # Retrieves a notification.  Raises RequestExpiredError when this
    # NotifyTemplateEntry expires.

    def pop
      raise RequestExpiredError if @done
      it = @queue.pop
      @done = true if it[0] == 'close'
      return it
    end

    ##
    # Yields event/tuple pairs until this NotifyTemplateEntry expires.

    def each # :yields: event, tuple
      while !@done
        it = pop
        yield(it)
      end
    rescue
    ensure
      cancel
    end

  end

  ##
  # TupleBag is an unordered collection of tuples. It is the basis
  # of Tuplespace.

  class TupleBag
    class TupleBin
      extend Forwardable
      def_delegators '@bin', :find_all, :delete_if, :each, :empty?

      def initialize
        @bin = []
      end

      def add(tuple)
        @bin.push(tuple)
      end

      def delete(tuple)
        idx = @bin.rindex(tuple)
        @bin.delete_at(idx) if idx
      end

      def find
        @bin.reverse_each do |x|
          return x if yield(x)
        end
        nil
      end
    end

    def initialize # :nodoc:
      @hash = {}
      @enum = enum_for(:each_entry)
    end

    ##
    # +true+ if the TupleBag to see if it has any expired entries.

    def has_expires?
      @enum.find do |tuple|
        tuple.expires
      end
    end

    ##
    # Add +tuple+ to the TupleBag.

    def push(tuple)
      key = bin_key(tuple)
      @hash[key] ||= TupleBin.new
      @hash[key].add(tuple)
    end

    ##
    # Removes +tuple+ from the TupleBag.

    def delete(tuple)
      key = bin_key(tuple)
      bin = @hash[key]
      return nil unless bin
      bin.delete(tuple)
      @hash.delete(key) if bin.empty?
      tuple
    end

    ##
    # Finds all live tuples that match +template+.
    def find_all(template)
      bin_for_find(template).find_all do |tuple|
        tuple.alive? && template.match(tuple)
      end
    end

    ##
    # Finds a live tuple that matches +template+.

    def find(template)
      bin_for_find(template).find do |tuple|
        tuple.alive? && template.match(tuple)
      end
    end

    ##
    # Finds all tuples in the TupleBag which when treated as templates, match
    # +tuple+ and are alive.

    def find_all_template(tuple)
      @enum.find_all do |template|
        template.alive? && template.match(tuple)
      end
    end

    ##
    # Delete tuples which dead tuples from the TupleBag, returning the deleted
    # tuples.

    def delete_unless_alive
      deleted = []
      @hash.each do |key, bin|
        bin.delete_if do |tuple|
          if tuple.alive?
            false
          else
            deleted.push(tuple)
            true
          end
        end
      end
      deleted
    end

    private
    def each_entry(&blk)
      @hash.each do |k, v|
        v.each(&blk)
      end
    end

    def bin_key(tuple)
      head = tuple[0]
      if head.class == Symbol
        return head
      else
        false
      end
    end

    def bin_for_find(template)
      key = bin_key(template)
      key ? @hash.fetch(key, []) : @enum
    end
  end

  ##
  # The Tuplespace manages access to the tuples it contains,
  # ensuring mutual exclusion requirements are met.
  #
  # The +sec+ option for the write, take, move, read and notify methods may
  # either be a number of seconds or a Renewer object.

  class TupleSpace

    include DRbUndumped
    include MonitorMixin

    ##
    # Creates a new TupleSpace.  +period+ is used to control how often to look
    # for dead tuples after modifications to the TupleSpace.
    #
    # If no dead tuples are found +period+ seconds after the last
    # modification, the TupleSpace will stop looking for dead tuples.

    def initialize(period=60)
      super()
      @bag = TupleBag.new
      @read_waiter = TupleBag.new
      @take_waiter = TupleBag.new
      @notify_waiter = TupleBag.new
      @period = period
      @keeper = nil
    end

    ##
    # Adds +tuple+

    def write(tuple, sec=nil)
      entry = create_entry(tuple, sec)
      synchronize do
        if entry.expired?
          @read_waiter.find_all_template(entry).each do |template|
            template.read(tuple)
          end
          notify_event('write', entry.value)
          notify_event('delete', entry.value)
        else
          @bag.push(entry)
          start_keeper if entry.expires
          @read_waiter.find_all_template(entry).each do |template|
            template.read(tuple)
          end
          @take_waiter.find_all_template(entry).each do |template|
            template.signal
          end
          notify_event('write', entry.value)
        end
      end
      entry
    end

    ##
    # Removes +tuple+

    def take(tuple, sec=nil, &block)
      move(nil, tuple, sec, &block)
    end

    ##
    # Moves +tuple+ to +port+.

    def move(port, tuple, sec=nil)
      template = WaitTemplateEntry.new(self, tuple, sec)
      yield(template) if block_given?
      synchronize do
        entry = @bag.find(template)
        if entry
          port.push(entry.value) if port
          @bag.delete(entry)
          notify_event('take', entry.value)
          return port ? nil : entry.value
        end
        raise RequestExpiredError if template.expired?

        begin
          @take_waiter.push(template)
          start_keeper if template.expires
          while true
            raise RequestCanceledError if template.canceled?
            raise RequestExpiredError if template.expired?
            entry = @bag.find(template)
            if entry
              port.push(entry.value) if port
              @bag.delete(entry)
              notify_event('take', entry.value)
              return port ? nil : entry.value
            end
            template.wait
          end
        ensure
          @take_waiter.delete(template)
        end
      end
    end

    ##
    # Reads +tuple+, but does not remove it.

    def read(tuple, sec=nil)
      template = WaitTemplateEntry.new(self, tuple, sec)
      yield(template) if block_given?
      synchronize do
        entry = @bag.find(template)
        return entry.value if entry
        raise RequestExpiredError if template.expired?

        begin
          @read_waiter.push(template)
          start_keeper if template.expires
          template.wait
          raise RequestCanceledError if template.canceled?
          raise RequestExpiredError if template.expired?
          return template.found
        ensure
          @read_waiter.delete(template)
        end
      end
    end

    ##
    # Returns all tuples matching +tuple+.  Does not remove the found tuples.

    def read_all(tuple)
      template = WaitTemplateEntry.new(self, tuple, nil)
      synchronize do
        entry = @bag.find_all(template)
        entry.collect do |e|
          e.value
        end
      end
    end

    ##
    # Registers for notifications of +event+.  Returns a NotifyTemplateEntry.
    # See NotifyTemplateEntry for examples of how to listen for notifications.
    #
    # +event+ can be:
    # 'write'::  A tuple was added
    # 'take'::   A tuple was taken or moved
    # 'delete':: A tuple was lost after being overwritten or expiring
    #
    # The TupleSpace will also notify you of the 'close' event when the
    # NotifyTemplateEntry has expired.

    def notify(event, tuple, sec=nil)
      template = NotifyTemplateEntry.new(self, event, tuple, sec)
      synchronize do
        @notify_waiter.push(template)
      end
      template
    end

    private

    def create_entry(tuple, sec)
      TupleEntry.new(tuple, sec)
    end

    ##
    # Removes dead tuples.

    def keep_clean
      synchronize do
        @read_waiter.delete_unless_alive.each do |e|
          e.signal
        end
        @take_waiter.delete_unless_alive.each do |e|
          e.signal
        end
        @notify_waiter.delete_unless_alive.each do |e|
          e.notify(['close'])
        end
        @bag.delete_unless_alive.each do |e|
          notify_event('delete', e.value)
        end
      end
    end

    ##
    # Notifies all registered listeners for +event+ of a status change of
    # +tuple+.

    def notify_event(event, tuple)
      ev = [event, tuple]
      @notify_waiter.find_all_template(ev).each do |template|
        template.notify(ev)
      end
    end

    ##
    # Creates a thread that scans the tuplespace for expired tuples.

    def start_keeper
      return if @keeper && @keeper.alive?
      @keeper = Thread.new do
        while true
          sleep(@period)
          synchronize do
            break unless need_keeper?
            keep_clean
          end
        end
      end
    end

    ##
    # Checks the tuplespace to see if it needs cleaning.

    def need_keeper?
      return true if @bag.has_expires?
      return true if @read_waiter.has_expires?
      return true if @take_waiter.has_expires?
      return true if @notify_waiter.has_expires?
    end

  end

end

PKGH[]@��1212share/ruby/rinda/ring.rbnu�[���# frozen_string_literal: false
#
# Note: Rinda::Ring API is unstable.
#
require 'drb/drb'
require_relative 'rinda'
require 'ipaddr'

module Rinda

  ##
  # The default port Ring discovery will use.

  Ring_PORT = 7647

  ##
  # A RingServer allows a Rinda::TupleSpace to be located via UDP broadcasts.
  # Default service location uses the following steps:
  #
  # 1. A RingServer begins listening on the network broadcast UDP address.
  # 2. A RingFinger sends a UDP packet containing the DRb URI where it will
  #    listen for a reply.
  # 3. The RingServer receives the UDP packet and connects back to the
  #    provided DRb URI with the DRb service.
  #
  # A RingServer requires a TupleSpace:
  #
  #   ts = Rinda::TupleSpace.new
  #   rs = Rinda::RingServer.new
  #
  # RingServer can also listen on multicast addresses for announcements.  This
  # allows multiple RingServers to run on the same host.  To use network
  # broadcast and multicast:
  #
  #   ts = Rinda::TupleSpace.new
  #   rs = Rinda::RingServer.new ts, %w[Socket::INADDR_ANY, 239.0.0.1 ff02::1]

  class RingServer

    include DRbUndumped

    ##
    # Special renewer for the RingServer to allow shutdown

    class Renewer # :nodoc:
      include DRbUndumped

      ##
      # Set to false to shutdown future requests using this Renewer

      attr_writer :renew

      def initialize # :nodoc:
        @renew = true
      end

      def renew # :nodoc:
        @renew ? 1 : true
      end
    end

    ##
    # Advertises +ts+ on the given +addresses+ at +port+.
    #
    # If +addresses+ is omitted only the UDP broadcast address is used.
    #
    # +addresses+ can contain multiple addresses.  If a multicast address is
    # given in +addresses+ then the RingServer will listen for multicast
    # queries.
    #
    # If you use IPv4 multicast you may need to set an address of the inbound
    # interface which joins a multicast group.
    #
    #   ts = Rinda::TupleSpace.new
    #   rs = Rinda::RingServer.new(ts, [['239.0.0.1', '9.5.1.1']])
    #
    # You can set addresses as an Array Object.  The first element of the
    # Array is a multicast address and the second is an inbound interface
    # address.  If the second is omitted then '0.0.0.0' is used.
    #
    # If you use IPv6 multicast you may need to set both the local interface
    # address and the inbound interface index:
    #
    #   rs = Rinda::RingServer.new(ts, [['ff02::1', '::1', 1]])
    #
    # The first element is a multicast address and the second is an inbound
    # interface address.  The third is an inbound interface index.
    #
    # At this time there is no easy way to get an interface index by name.
    #
    # If the second is omitted then '::1' is used.
    # If the third is omitted then 0 (default interface) is used.

    def initialize(ts, addresses=[Socket::INADDR_ANY], port=Ring_PORT)
      @port = port

      if Integer === addresses then
        addresses, @port = [Socket::INADDR_ANY], addresses
      end

      @renewer = Renewer.new

      @ts = ts
      @sockets = []
      addresses.each do |address|
        if Array === address
          make_socket(*address)
        else
          make_socket(address)
        end
      end

      @w_services = write_services
      @r_service  = reply_service
    end

    ##
    # Creates a socket at +address+
    #
    # If +address+ is multicast address then +interface_address+ and
    # +multicast_interface+ can be set as optional.
    #
    # A created socket is bound to +interface_address+.  If you use IPv4
    # multicast then the interface of +interface_address+ is used as the
    # inbound interface.  If +interface_address+ is omitted or nil then
    # '0.0.0.0' or '::1' is used.
    #
    # If you use IPv6 multicast then +multicast_interface+ is used as the
    # inbound interface.  +multicast_interface+ is a network interface index.
    # If +multicast_interface+ is omitted then 0 (default interface) is used.

    def make_socket(address, interface_address=nil, multicast_interface=0)
      addrinfo = Addrinfo.udp(address, @port)

      socket = Socket.new(addrinfo.pfamily, addrinfo.socktype,
                          addrinfo.protocol)

      if addrinfo.ipv4_multicast? or addrinfo.ipv6_multicast? then
        if Socket.const_defined?(:SO_REUSEPORT) then
          socket.setsockopt(:SOCKET, :SO_REUSEPORT, true)
        else
          socket.setsockopt(:SOCKET, :SO_REUSEADDR, true)
        end

        if addrinfo.ipv4_multicast? then
          interface_address = '0.0.0.0' if interface_address.nil?
          socket.bind(Addrinfo.udp(interface_address, @port))

          mreq = IPAddr.new(addrinfo.ip_address).hton +
            IPAddr.new(interface_address).hton

          socket.setsockopt(:IPPROTO_IP, :IP_ADD_MEMBERSHIP, mreq)
        else
          interface_address = '::1' if interface_address.nil?
          socket.bind(Addrinfo.udp(interface_address, @port))

          mreq = IPAddr.new(addrinfo.ip_address).hton +
            [multicast_interface].pack('I')

          socket.setsockopt(:IPPROTO_IPV6, :IPV6_JOIN_GROUP, mreq)
        end
      else
        socket.bind(addrinfo)
      end

      socket
    rescue
      socket = socket.close if socket
      raise
    ensure
      @sockets << socket if socket
    end

    ##
    # Creates threads that pick up UDP packets and passes them to do_write for
    # decoding.

    def write_services
      @sockets.map do |s|
        Thread.new(s) do |socket|
          loop do
            msg = socket.recv(1024)
            do_write(msg)
          end
        end
      end
    end

    ##
    # Extracts the response URI from +msg+ and adds it to TupleSpace where it
    # will be picked up by +reply_service+ for notification.

    def do_write(msg)
      Thread.new do
        begin
          tuple, sec = Marshal.load(msg)
          @ts.write(tuple, sec)
        rescue
        end
      end
    end

    ##
    # Creates a thread that notifies waiting clients from the TupleSpace.

    def reply_service
      Thread.new do
        loop do
          do_reply
        end
      end
    end

    ##
    # Pulls lookup tuples out of the TupleSpace and sends their DRb object the
    # address of the local TupleSpace.

    def do_reply
      tuple = @ts.take([:lookup_ring, nil], @renewer)
      Thread.new { tuple[1].call(@ts) rescue nil}
    rescue
    end

    ##
    # Shuts down the RingServer

    def shutdown
      @renewer.renew = false

      @w_services.each do |thread|
        thread.kill
        thread.join
      end

      @sockets.each do |socket|
        socket.close
      end

      @r_service.kill
      @r_service.join
    end

  end

  ##
  # RingFinger is used by RingServer clients to discover the RingServer's
  # TupleSpace.  Typically, all a client needs to do is call
  # RingFinger.primary to retrieve the remote TupleSpace, which it can then
  # begin using.
  #
  # To find the first available remote TupleSpace:
  #
  #   Rinda::RingFinger.primary
  #
  # To create a RingFinger that broadcasts to a custom list:
  #
  #   rf = Rinda::RingFinger.new  ['localhost', '192.0.2.1']
  #   rf.primary
  #
  # Rinda::RingFinger also understands multicast addresses and sets them up
  # properly.  This allows you to run multiple RingServers on the same host:
  #
  #   rf = Rinda::RingFinger.new ['239.0.0.1']
  #   rf.primary
  #
  # You can set the hop count (or TTL) for multicast searches using
  # #multicast_hops.
  #
  # If you use IPv6 multicast you may need to set both an address and the
  # outbound interface index:
  #
  #   rf = Rinda::RingFinger.new ['ff02::1']
  #   rf.multicast_interface = 1
  #   rf.primary
  #
  # At this time there is no easy way to get an interface index by name.

  class RingFinger

    @@broadcast_list = ['<broadcast>', 'localhost']

    @@finger = nil

    ##
    # Creates a singleton RingFinger and looks for a RingServer.  Returns the
    # created RingFinger.

    def self.finger
      unless @@finger
        @@finger = self.new
        @@finger.lookup_ring_any
      end
      @@finger
    end

    ##
    # Returns the first advertised TupleSpace.

    def self.primary
      finger.primary
    end

    ##
    # Contains all discovered TupleSpaces except for the primary.

    def self.to_a
      finger.to_a
    end

    ##
    # The list of addresses where RingFinger will send query packets.

    attr_accessor :broadcast_list

    ##
    # Maximum number of hops for sent multicast packets (if using a multicast
    # address in the broadcast list).  The default is 1 (same as UDP
    # broadcast).

    attr_accessor :multicast_hops

    ##
    # The interface index to send IPv6 multicast packets from.

    attr_accessor :multicast_interface

    ##
    # The port that RingFinger will send query packets to.

    attr_accessor :port

    ##
    # Contain the first advertised TupleSpace after lookup_ring_any is called.

    attr_accessor :primary

    ##
    # Creates a new RingFinger that will look for RingServers at +port+ on
    # the addresses in +broadcast_list+.
    #
    # If +broadcast_list+ contains a multicast address then multicast queries
    # will be made using the given multicast_hops and multicast_interface.

    def initialize(broadcast_list=@@broadcast_list, port=Ring_PORT)
      @broadcast_list = broadcast_list || ['localhost']
      @port = port
      @primary = nil
      @rings = []

      @multicast_hops = 1
      @multicast_interface = 0
    end

    ##
    # Contains all discovered TupleSpaces except for the primary.

    def to_a
      @rings
    end

    ##
    # Iterates over all discovered TupleSpaces starting with the primary.

    def each
      lookup_ring_any unless @primary
      return unless @primary
      yield(@primary)
      @rings.each { |x| yield(x) }
    end

    ##
    # Looks up RingServers waiting +timeout+ seconds.  RingServers will be
    # given +block+ as a callback, which will be called with the remote
    # TupleSpace.

    def lookup_ring(timeout=5, &block)
      return lookup_ring_any(timeout) unless block_given?

      msg = Marshal.dump([[:lookup_ring, DRbObject.new(block)], timeout])
      @broadcast_list.each do |it|
        send_message(it, msg)
      end
      sleep(timeout)
    end

    ##
    # Returns the first found remote TupleSpace.  Any further recovered
    # TupleSpaces can be found by calling +to_a+.

    def lookup_ring_any(timeout=5)
      queue = Thread::Queue.new

      Thread.new do
        self.lookup_ring(timeout) do |ts|
          queue.push(ts)
        end
        queue.push(nil)
      end

      @primary = queue.pop
      raise('RingNotFound') if @primary.nil?

      Thread.new do
        while it = queue.pop
          @rings.push(it)
        end
      end

      @primary
    end

    ##
    # Creates a socket for +address+ with the appropriate multicast options
    # for multicast addresses.

    def make_socket(address) # :nodoc:
      addrinfo = Addrinfo.udp(address, @port)

      soc = Socket.new(addrinfo.pfamily, addrinfo.socktype, addrinfo.protocol)
      begin
        if addrinfo.ipv4_multicast? then
          soc.setsockopt(Socket::Option.ipv4_multicast_loop(1))
          soc.setsockopt(Socket::Option.ipv4_multicast_ttl(@multicast_hops))
        elsif addrinfo.ipv6_multicast? then
          soc.setsockopt(:IPPROTO_IPV6, :IPV6_MULTICAST_LOOP, true)
          soc.setsockopt(:IPPROTO_IPV6, :IPV6_MULTICAST_HOPS,
                         [@multicast_hops].pack('I'))
          soc.setsockopt(:IPPROTO_IPV6, :IPV6_MULTICAST_IF,
                         [@multicast_interface].pack('I'))
        else
          soc.setsockopt(:SOL_SOCKET, :SO_BROADCAST, true)
        end

        soc.connect(addrinfo)
      rescue Exception
        soc.close
        raise
      end

      soc
    end

    def send_message(address, message) # :nodoc:
      soc = make_socket(address)

      soc.send(message, 0)
    rescue
      nil
    ensure
      soc.close if soc
    end

  end

  ##
  # RingProvider uses a RingServer advertised TupleSpace as a name service.
  # TupleSpace clients can register themselves with the remote TupleSpace and
  # look up other provided services via the remote TupleSpace.
  #
  # Services are registered with a tuple of the format [:name, klass,
  # DRbObject, description].

  class RingProvider

    ##
    # Creates a RingProvider that will provide a +klass+ service running on
    # +front+, with a +description+.  +renewer+ is optional.

    def initialize(klass, front, desc, renewer = nil)
      @tuple = [:name, klass, front, desc]
      @renewer = renewer || Rinda::SimpleRenewer.new
    end

    ##
    # Advertises this service on the primary remote TupleSpace.

    def provide
      ts = Rinda::RingFinger.primary
      ts.write(@tuple, @renewer)
    end

  end

end
PKGH[nW~8%8%share/ruby/securerandom.rbnu�[���# -*- coding: us-ascii -*-
# frozen_string_literal: true

# == Secure random number generator interface.
#
# This library is an interface to secure random number generators which are
# suitable for generating session keys in HTTP cookies, etc.
#
# You can use this library in your application by requiring it:
#
#   require 'securerandom'
#
# It supports the following secure random number generators:
#
# * openssl
# * /dev/urandom
# * Win32
#
# SecureRandom is extended by the Random::Formatter module which
# defines the following methods:
#
# * alphanumeric
# * base64
# * choose
# * gen_random
# * hex
# * rand
# * random_bytes
# * random_number
# * urlsafe_base64
# * uuid
#
# These methods are usable as class methods of SecureRandom such as
# `SecureRandom.hex`.
#
# === Examples
#
# Generate random hexadecimal strings:
#
#   require 'securerandom'
#
#   SecureRandom.hex(10) #=> "52750b30ffbc7de3b362"
#   SecureRandom.hex(10) #=> "92b15d6c8dc4beb5f559"
#   SecureRandom.hex(13) #=> "39b290146bea6ce975c37cfc23"
#
# Generate random base64 strings:
#
#   SecureRandom.base64(10) #=> "EcmTPZwWRAozdA=="
#   SecureRandom.base64(10) #=> "KO1nIU+p9DKxGg=="
#   SecureRandom.base64(12) #=> "7kJSM/MzBJI+75j8"
#
# Generate random binary strings:
#
#   SecureRandom.random_bytes(10) #=> "\016\t{\370g\310pbr\301"
#   SecureRandom.random_bytes(10) #=> "\323U\030TO\234\357\020\a\337"
#
# Generate alphanumeric strings:
#
#   SecureRandom.alphanumeric(10) #=> "S8baxMJnPl"
#   SecureRandom.alphanumeric(10) #=> "aOxAg8BAJe"
#
# Generate UUIDs:
#
#   SecureRandom.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
#   SecureRandom.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
#

module SecureRandom
  @rng_chooser = Mutex.new # :nodoc:

  class << self
    def bytes(n)
      return gen_random(n)
    end

    def gen_random(n)
      ret = Random.urandom(1)
      if ret.nil?
        begin
          require 'openssl'
        rescue NoMethodError
          raise NotImplementedError, "No random device"
        else
          @rng_chooser.synchronize do
            class << self
              remove_method :gen_random
              alias gen_random gen_random_openssl
              public :gen_random
            end
          end
          return gen_random(n)
        end
      else
        @rng_chooser.synchronize do
          class << self
            remove_method :gen_random
            alias gen_random gen_random_urandom
            public :gen_random
          end
        end
        return gen_random(n)
      end
    end

    private

    def gen_random_openssl(n)
      @pid = 0 unless defined?(@pid)
      pid = $$
      unless @pid == pid
        now = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
        OpenSSL::Random.random_add([now, @pid, pid].join(""), 0.0)
        seed = Random.urandom(16)
        if (seed)
          OpenSSL::Random.random_add(seed, 16)
        end
        @pid = pid
      end
      return OpenSSL::Random.random_bytes(n)
    end

    def gen_random_urandom(n)
      ret = Random.urandom(n)
      unless ret
        raise NotImplementedError, "No random device"
      end
      unless ret.length == n
        raise NotImplementedError, "Unexpected partial read from random device: only #{ret.length} for #{n} bytes"
      end
      ret
    end
  end
end

module Random::Formatter

  # SecureRandom.random_bytes generates a random binary string.
  #
  # The argument _n_ specifies the length of the result string.
  #
  # If _n_ is not specified or is nil, 16 is assumed.
  # It may be larger in future.
  #
  # The result may contain any byte: "\x00" - "\xff".
  #
  #   require 'securerandom'
  #
  #   SecureRandom.random_bytes #=> "\xD8\\\xE0\xF4\r\xB2\xFC*WM\xFF\x83\x18\xF45\xB6"
  #   SecureRandom.random_bytes #=> "m\xDC\xFC/\a\x00Uf\xB2\xB2P\xBD\xFF6S\x97"
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  def random_bytes(n=nil)
    n = n ? n.to_int : 16
    gen_random(n)
  end

  # SecureRandom.hex generates a random hexadecimal string.
  #
  # The argument _n_ specifies the length, in bytes, of the random number to be generated.
  # The length of the resulting hexadecimal string is twice of _n_.
  #
  # If _n_ is not specified or is nil, 16 is assumed.
  # It may be larger in the future.
  #
  # The result may contain 0-9 and a-f.
  #
  #   require 'securerandom'
  #
  #   SecureRandom.hex #=> "eb693ec8252cd630102fd0d0fb7c3485"
  #   SecureRandom.hex #=> "91dc3bfb4de5b11d029d376634589b61"
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  def hex(n=nil)
    random_bytes(n).unpack("H*")[0]
  end

  # SecureRandom.base64 generates a random base64 string.
  #
  # The argument _n_ specifies the length, in bytes, of the random number
  # to be generated. The length of the result string is about 4/3 of _n_.
  #
  # If _n_ is not specified or is nil, 16 is assumed.
  # It may be larger in the future.
  #
  # The result may contain A-Z, a-z, 0-9, "+", "/" and "=".
  #
  #   require 'securerandom'
  #
  #   SecureRandom.base64 #=> "/2BuBuLf3+WfSKyQbRcc/A=="
  #   SecureRandom.base64 #=> "6BbW0pxO0YENxn38HMUbcQ=="
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  #
  # See RFC 3548 for the definition of base64.
  def base64(n=nil)
    [random_bytes(n)].pack("m0")
  end

  # SecureRandom.urlsafe_base64 generates a random URL-safe base64 string.
  #
  # The argument _n_ specifies the length, in bytes, of the random number
  # to be generated. The length of the result string is about 4/3 of _n_.
  #
  # If _n_ is not specified or is nil, 16 is assumed.
  # It may be larger in the future.
  #
  # The boolean argument _padding_ specifies the padding.
  # If it is false or nil, padding is not generated.
  # Otherwise padding is generated.
  # By default, padding is not generated because "=" may be used as a URL delimiter.
  #
  # The result may contain A-Z, a-z, 0-9, "-" and "_".
  # "=" is also used if _padding_ is true.
  #
  #   require 'securerandom'
  #
  #   SecureRandom.urlsafe_base64 #=> "b4GOKm4pOYU_-BOXcrUGDg"
  #   SecureRandom.urlsafe_base64 #=> "UZLdOkzop70Ddx-IJR0ABg"
  #
  #   SecureRandom.urlsafe_base64(nil, true) #=> "i0XQ-7gglIsHGV2_BNPrdQ=="
  #   SecureRandom.urlsafe_base64(nil, true) #=> "-M8rLhr7JEpJlqFGUMmOxg=="
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  #
  # See RFC 3548 for the definition of URL-safe base64.
  def urlsafe_base64(n=nil, padding=false)
    s = [random_bytes(n)].pack("m0")
    s.tr!("+/", "-_")
    s.delete!("=") unless padding
    s
  end

  # SecureRandom.uuid generates a random v4 UUID (Universally Unique IDentifier).
  #
  #   require 'securerandom'
  #
  #   SecureRandom.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
  #   SecureRandom.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
  #   SecureRandom.uuid #=> "62936e70-1815-439b-bf89-8492855a7e6b"
  #
  # The version 4 UUID is purely random (except the version).
  # It doesn't contain meaningful information such as MAC addresses, timestamps, etc.
  #
  # The result contains 122 random bits (15.25 random bytes).
  #
  # See RFC 4122 for details of UUID.
  #
  def uuid
    ary = random_bytes(16).unpack("NnnnnN")
    ary[2] = (ary[2] & 0x0fff) | 0x4000
    ary[3] = (ary[3] & 0x3fff) | 0x8000
    "%08x-%04x-%04x-%04x-%04x%08x" % ary
  end

  private def gen_random(n)
    self.bytes(n)
  end

  # SecureRandom.choose generates a string that randomly draws from a
  # source array of characters.
  #
  # The argument _source_ specifies the array of characters from which
  # to generate the string.
  # The argument _n_ specifies the length, in characters, of the string to be
  # generated.
  #
  # The result may contain whatever characters are in the source array.
  #
  #   require 'securerandom'
  #
  #   SecureRandom.choose([*'l'..'r'], 16) #=> "lmrqpoonmmlqlron"
  #   SecureRandom.choose([*'0'..'9'], 5)  #=> "27309"
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  private def choose(source, n)
    size = source.size
    m = 1
    limit = size
    while limit * size <= 0x100000000
      limit *= size
      m += 1
    end
    result = ''.dup
    while m <= n
      rs = random_number(limit)
      is = rs.digits(size)
      (m-is.length).times { is << 0 }
      result << source.values_at(*is).join('')
      n -= m
    end
    if 0 < n
      rs = random_number(limit)
      is = rs.digits(size)
      if is.length < n
        (n-is.length).times { is << 0 }
      else
        is.pop while n < is.length
      end
      result.concat source.values_at(*is).join('')
    end
    result
  end

  ALPHANUMERIC = [*'A'..'Z', *'a'..'z', *'0'..'9']
  # SecureRandom.alphanumeric generates a random alphanumeric string.
  #
  # The argument _n_ specifies the length, in characters, of the alphanumeric
  # string to be generated.
  #
  # If _n_ is not specified or is nil, 16 is assumed.
  # It may be larger in the future.
  #
  # The result may contain A-Z, a-z and 0-9.
  #
  #   require 'securerandom'
  #
  #   SecureRandom.alphanumeric     #=> "2BuBuLf3WfSKyQbR"
  #   SecureRandom.alphanumeric(10) #=> "i6K93NdqiH"
  #
  # If a secure random number generator is not available,
  # +NotImplementedError+ is raised.
  def alphanumeric(n=nil)
    n = 16 if n.nil?
    choose(ALPHANUMERIC, n)
  end
end

SecureRandom.extend(Random::Formatter)
PKGH[#share/gems/gems/json-2.3.0/lib/jsonnuȯ��PKGH[W�_�,share/ruby/webrick/httpauth/authenticator.rbnu�[���# frozen_string_literal: false
#--
# httpauth/authenticator.rb -- Authenticator mix-in module.
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: authenticator.rb,v 1.3 2003/02/20 07:15:47 gotoyuzo Exp $

module WEBrick
  module HTTPAuth

    ##
    # Module providing generic support for both Digest and Basic
    # authentication schemes.

    module Authenticator

      RequestField      = "Authorization" # :nodoc:
      ResponseField     = "WWW-Authenticate" # :nodoc:
      ResponseInfoField = "Authentication-Info" # :nodoc:
      AuthException     = HTTPStatus::Unauthorized # :nodoc:

      ##
      # Method of authentication, must be overridden by the including class

      AuthScheme        = nil

      ##
      # The realm this authenticator covers

      attr_reader :realm

      ##
      # The user database for this authenticator

      attr_reader :userdb

      ##
      # The logger for this authenticator

      attr_reader :logger

      private

      # :stopdoc:

      ##
      # Initializes the authenticator from +config+

      def check_init(config)
        [:UserDB, :Realm].each{|sym|
          unless config[sym]
            raise ArgumentError, "Argument #{sym.inspect} missing."
          end
        }
        @realm     = config[:Realm]
        @userdb    = config[:UserDB]
        @logger    = config[:Logger] || Log::new($stderr)
        @reload_db = config[:AutoReloadUserDB]
        @request_field   = self::class::RequestField
        @response_field  = self::class::ResponseField
        @resp_info_field = self::class::ResponseInfoField
        @auth_exception  = self::class::AuthException
        @auth_scheme     = self::class::AuthScheme
      end

      ##
      # Ensures +req+ has credentials that can be authenticated.

      def check_scheme(req)
        unless credentials = req[@request_field]
          error("no credentials in the request.")
          return nil
        end
        unless match = /^#{@auth_scheme}\s+/i.match(credentials)
          error("invalid scheme in %s.", credentials)
          info("%s: %s", @request_field, credentials) if $DEBUG
          return nil
        end
        return match.post_match
      end

      def log(meth, fmt, *args)
        msg = format("%s %s: ", @auth_scheme, @realm)
        msg << fmt % args
        @logger.send(meth, msg)
      end

      def error(fmt, *args)
        if @logger.error?
          log(:error, fmt, *args)
        end
      end

      def info(fmt, *args)
        if @logger.info?
          log(:info, fmt, *args)
        end
      end

      # :startdoc:
    end

    ##
    # Module providing generic support for both Digest and Basic
    # authentication schemes for proxies.

    module ProxyAuthenticator
      RequestField  = "Proxy-Authorization" # :nodoc:
      ResponseField = "Proxy-Authenticate" # :nodoc:
      InfoField     = "Proxy-Authentication-Info" # :nodoc:
      AuthException = HTTPStatus::ProxyAuthenticationRequired # :nodoc:
    end
  end
end
PKGH[����
�
'share/ruby/webrick/httpauth/htdigest.rbnu�[���# frozen_string_literal: false
#
# httpauth/htdigest.rb -- Apache compatible htdigest file
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: htdigest.rb,v 1.4 2003/07/22 19:20:45 gotoyuzo Exp $

require_relative 'userdb'
require_relative 'digestauth'
require 'tempfile'

module WEBrick
  module HTTPAuth

    ##
    # Htdigest accesses apache-compatible digest password files.  Passwords are
    # matched to a realm where they are valid.  For security, the path for a
    # digest password database should be stored outside of the paths available
    # to the HTTP server.
    #
    # Htdigest is intended for use with WEBrick::HTTPAuth::DigestAuth and
    # stores passwords using cryptographic hashes.
    #
    #   htpasswd = WEBrick::HTTPAuth::Htdigest.new 'my_password_file'
    #   htpasswd.set_passwd 'my realm', 'username', 'password'
    #   htpasswd.flush

    class Htdigest
      include UserDB

      ##
      # Open a digest password database at +path+

      def initialize(path)
        @path = path
        @mtime = Time.at(0)
        @digest = Hash.new
        @mutex = Thread::Mutex::new
        @auth_type = DigestAuth
        File.open(@path,"a").close unless File.exist?(@path)
        reload
      end

      ##
      # Reloads passwords from the database

      def reload
        mtime = File::mtime(@path)
        if mtime > @mtime
          @digest.clear
          File.open(@path){|io|
            while line = io.gets
              line.chomp!
              user, realm, pass = line.split(/:/, 3)
              unless @digest[realm]
                @digest[realm] = Hash.new
              end
              @digest[realm][user] = pass
            end
          }
          @mtime = mtime
        end
      end

      ##
      # Flush the password database.  If +output+ is given the database will
      # be written there instead of to the original path.

      def flush(output=nil)
        output ||= @path
        tmp = Tempfile.create("htpasswd", File::dirname(output))
        renamed = false
        begin
          each{|item| tmp.puts(item.join(":")) }
          tmp.close
          File::rename(tmp.path, output)
          renamed = true
        ensure
          tmp.close
          File.unlink(tmp.path) if !renamed
        end
      end

      ##
      # Retrieves a password from the database for +user+ in +realm+.  If
      # +reload_db+ is true the database will be reloaded first.

      def get_passwd(realm, user, reload_db)
        reload() if reload_db
        if hash = @digest[realm]
          hash[user]
        end
      end

      ##
      # Sets a password in the database for +user+ in +realm+ to +pass+.

      def set_passwd(realm, user, pass)
        @mutex.synchronize{
          unless @digest[realm]
            @digest[realm] = Hash.new
          end
          @digest[realm][user] = make_passwd(realm, user, pass)
        }
      end

      ##
      # Removes a password from the database for +user+ in +realm+.

      def delete_passwd(realm, user)
        if hash = @digest[realm]
          hash.delete(user)
        end
      end

      ##
      # Iterate passwords in the database.

      def each # :yields: [user, realm, password_hash]
        @digest.keys.sort.each{|realm|
          hash = @digest[realm]
          hash.keys.sort.each{|user|
            yield([user, realm, hash[user]])
          }
        }
      end
    end
  end
end
PKGH[S1
�

(share/ruby/webrick/httpauth/basicauth.rbnu�[���# frozen_string_literal: false
#
# httpauth/basicauth.rb -- HTTP basic access authentication
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: basicauth.rb,v 1.5 2003/02/20 07:15:47 gotoyuzo Exp $

require_relative '../config'
require_relative '../httpstatus'
require_relative 'authenticator'

module WEBrick
  module HTTPAuth

    ##
    # Basic Authentication for WEBrick
    #
    # Use this class to add basic authentication to a WEBrick servlet.
    #
    # Here is an example of how to set up a BasicAuth:
    #
    #   config = { :Realm => 'BasicAuth example realm' }
    #
    #   htpasswd = WEBrick::HTTPAuth::Htpasswd.new 'my_password_file', password_hash: :bcrypt
    #   htpasswd.set_passwd config[:Realm], 'username', 'password'
    #   htpasswd.flush
    #
    #   config[:UserDB] = htpasswd
    #
    #   basic_auth = WEBrick::HTTPAuth::BasicAuth.new config

    class BasicAuth
      include Authenticator

      AuthScheme = "Basic" # :nodoc:

      ##
      # Used by UserDB to create a basic password entry

      def self.make_passwd(realm, user, pass)
        pass ||= ""
        pass.crypt(Utils::random_string(2))
      end

      attr_reader :realm, :userdb, :logger

      ##
      # Creates a new BasicAuth instance.
      #
      # See WEBrick::Config::BasicAuth for default configuration entries
      #
      # You must supply the following configuration entries:
      #
      # :Realm:: The name of the realm being protected.
      # :UserDB:: A database of usernames and passwords.
      #           A WEBrick::HTTPAuth::Htpasswd instance should be used.

      def initialize(config, default=Config::BasicAuth)
        check_init(config)
        @config = default.dup.update(config)
      end

      ##
      # Authenticates a +req+ and returns a 401 Unauthorized using +res+ if
      # the authentication was not correct.

      def authenticate(req, res)
        unless basic_credentials = check_scheme(req)
          challenge(req, res)
        end
        userid, password = basic_credentials.unpack("m*")[0].split(":", 2)
        password ||= ""
        if userid.empty?
          error("user id was not given.")
          challenge(req, res)
        end
        unless encpass = @userdb.get_passwd(@realm, userid, @reload_db)
          error("%s: the user is not allowed.", userid)
          challenge(req, res)
        end

        case encpass
        when /\A\$2[aby]\$/
          password_matches = BCrypt::Password.new(encpass.sub(/\A\$2[aby]\$/, '$2a$')) == password
        else
          password_matches = password.crypt(encpass) == encpass
        end

        unless password_matches
          error("%s: password unmatch.", userid)
          challenge(req, res)
        end
        info("%s: authentication succeeded.", userid)
        req.user = userid
      end

      ##
      # Returns a challenge response which asks for authentication information

      def challenge(req, res)
        res[@response_field] = "#{@auth_scheme} realm=\"#{@realm}\""
        raise @auth_exception
      end
    end

    ##
    # Basic authentication for proxy servers.  See BasicAuth for details.

    class ProxyBasicAuth < BasicAuth
      include ProxyAuthenticator
    end
  end
end
PKGH[x˨�/3/3)share/ruby/webrick/httpauth/digestauth.rbnu�[���# frozen_string_literal: false
#
# httpauth/digestauth.rb -- HTTP digest access authentication
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers.
# Copyright (c) 2003 H.M.
#
# The original implementation is provided by H.M.
#   URL: http://rwiki.jin.gr.jp/cgi-bin/rw-cgi.rb?cmd=view;name=
#        %C7%A7%BE%DA%B5%A1%C7%BD%A4%F2%B2%FE%C2%A4%A4%B7%A4%C6%A4%DF%A4%EB
#
# $IPR: digestauth.rb,v 1.5 2003/02/20 07:15:47 gotoyuzo Exp $

require_relative '../config'
require_relative '../httpstatus'
require_relative 'authenticator'
require 'digest/md5'
require 'digest/sha1'

module WEBrick
  module HTTPAuth

    ##
    # RFC 2617 Digest Access Authentication for WEBrick
    #
    # Use this class to add digest authentication to a WEBrick servlet.
    #
    # Here is an example of how to set up DigestAuth:
    #
    #   config = { :Realm => 'DigestAuth example realm' }
    #
    #   htdigest = WEBrick::HTTPAuth::Htdigest.new 'my_password_file'
    #   htdigest.set_passwd config[:Realm], 'username', 'password'
    #   htdigest.flush
    #
    #   config[:UserDB] = htdigest
    #
    #   digest_auth = WEBrick::HTTPAuth::DigestAuth.new config
    #
    # When using this as with a servlet be sure not to create a new DigestAuth
    # object in the servlet's #initialize.  By default WEBrick creates a new
    # servlet instance for every request and the DigestAuth object must be
    # used across requests.

    class DigestAuth
      include Authenticator

      AuthScheme = "Digest" # :nodoc:

      ##
      # Struct containing the opaque portion of the digest authentication

      OpaqueInfo = Struct.new(:time, :nonce, :nc) # :nodoc:

      ##
      # Digest authentication algorithm

      attr_reader :algorithm

      ##
      # Quality of protection.  RFC 2617 defines "auth" and "auth-int"

      attr_reader :qop

      ##
      # Used by UserDB to create a digest password entry

      def self.make_passwd(realm, user, pass)
        pass ||= ""
        Digest::MD5::hexdigest([user, realm, pass].join(":"))
      end

      ##
      # Creates a new DigestAuth instance.  Be sure to use the same DigestAuth
      # instance for multiple requests as it saves state between requests in
      # order to perform authentication.
      #
      # See WEBrick::Config::DigestAuth for default configuration entries
      #
      # You must supply the following configuration entries:
      #
      # :Realm:: The name of the realm being protected.
      # :UserDB:: A database of usernames and passwords.
      #           A WEBrick::HTTPAuth::Htdigest instance should be used.

      def initialize(config, default=Config::DigestAuth)
        check_init(config)
        @config                 = default.dup.update(config)
        @algorithm              = @config[:Algorithm]
        @domain                 = @config[:Domain]
        @qop                    = @config[:Qop]
        @use_opaque             = @config[:UseOpaque]
        @use_next_nonce         = @config[:UseNextNonce]
        @check_nc               = @config[:CheckNc]
        @use_auth_info_header   = @config[:UseAuthenticationInfoHeader]
        @nonce_expire_period    = @config[:NonceExpirePeriod]
        @nonce_expire_delta     = @config[:NonceExpireDelta]
        @internet_explorer_hack = @config[:InternetExplorerHack]

        case @algorithm
        when 'MD5','MD5-sess'
          @h = Digest::MD5
        when 'SHA1','SHA1-sess'  # it is a bonus feature :-)
          @h = Digest::SHA1
        else
          msg = format('Algorithm "%s" is not supported.', @algorithm)
          raise ArgumentError.new(msg)
        end

        @instance_key = hexdigest(self.__id__, Time.now.to_i, Process.pid)
        @opaques = {}
        @last_nonce_expire = Time.now
        @mutex = Thread::Mutex.new
      end

      ##
      # Authenticates a +req+ and returns a 401 Unauthorized using +res+ if
      # the authentication was not correct.

      def authenticate(req, res)
        unless result = @mutex.synchronize{ _authenticate(req, res) }
          challenge(req, res)
        end
        if result == :nonce_is_stale
          challenge(req, res, true)
        end
        return true
      end

      ##
      # Returns a challenge response which asks for authentication information

      def challenge(req, res, stale=false)
        nonce = generate_next_nonce(req)
        if @use_opaque
          opaque = generate_opaque(req)
          @opaques[opaque].nonce = nonce
        end

        param = Hash.new
        param["realm"]  = HTTPUtils::quote(@realm)
        param["domain"] = HTTPUtils::quote(@domain.to_a.join(" ")) if @domain
        param["nonce"]  = HTTPUtils::quote(nonce)
        param["opaque"] = HTTPUtils::quote(opaque) if opaque
        param["stale"]  = stale.to_s
        param["algorithm"] = @algorithm
        param["qop"]    = HTTPUtils::quote(@qop.to_a.join(",")) if @qop

        res[@response_field] =
          "#{@auth_scheme} " + param.map{|k,v| "#{k}=#{v}" }.join(", ")
        info("%s: %s", @response_field, res[@response_field]) if $DEBUG
        raise @auth_exception
      end

      private

      # :stopdoc:

      MustParams = ['username','realm','nonce','uri','response']
      MustParamsAuth = ['cnonce','nc']

      def _authenticate(req, res)
        unless digest_credentials = check_scheme(req)
          return false
        end

        auth_req = split_param_value(digest_credentials)
        if auth_req['qop'] == "auth" || auth_req['qop'] == "auth-int"
          req_params = MustParams + MustParamsAuth
        else
          req_params = MustParams
        end
        req_params.each{|key|
          unless auth_req.has_key?(key)
            error('%s: parameter missing. "%s"', auth_req['username'], key)
            raise HTTPStatus::BadRequest
          end
        }

        if !check_uri(req, auth_req)
          raise HTTPStatus::BadRequest
        end

        if auth_req['realm'] != @realm
          error('%s: realm unmatch. "%s" for "%s"',
                auth_req['username'], auth_req['realm'], @realm)
          return false
        end

        auth_req['algorithm'] ||= 'MD5'
        if auth_req['algorithm'].upcase != @algorithm.upcase
          error('%s: algorithm unmatch. "%s" for "%s"',
                auth_req['username'], auth_req['algorithm'], @algorithm)
          return false
        end

        if (@qop.nil? && auth_req.has_key?('qop')) ||
           (@qop && (! @qop.member?(auth_req['qop'])))
          error('%s: the qop is not allowed. "%s"',
                auth_req['username'], auth_req['qop'])
          return false
        end

        password = @userdb.get_passwd(@realm, auth_req['username'], @reload_db)
        unless password
          error('%s: the user is not allowed.', auth_req['username'])
          return false
        end

        nonce_is_invalid = false
        if @use_opaque
          info("@opaque = %s", @opaque.inspect) if $DEBUG
          if !(opaque = auth_req['opaque'])
            error('%s: opaque is not given.', auth_req['username'])
            nonce_is_invalid = true
          elsif !(opaque_struct = @opaques[opaque])
            error('%s: invalid opaque is given.', auth_req['username'])
            nonce_is_invalid = true
          elsif !check_opaque(opaque_struct, req, auth_req)
            @opaques.delete(auth_req['opaque'])
            nonce_is_invalid = true
          end
        elsif !check_nonce(req, auth_req)
          nonce_is_invalid = true
        end

        if /-sess$/i =~ auth_req['algorithm']
          ha1 = hexdigest(password, auth_req['nonce'], auth_req['cnonce'])
        else
          ha1 = password
        end

        if auth_req['qop'] == "auth" || auth_req['qop'] == nil
          ha2 = hexdigest(req.request_method, auth_req['uri'])
          ha2_res = hexdigest("", auth_req['uri'])
        elsif auth_req['qop'] == "auth-int"
          body_digest = @h.new
          req.body { |chunk| body_digest.update(chunk) }
          body_digest = body_digest.hexdigest
          ha2 = hexdigest(req.request_method, auth_req['uri'], body_digest)
          ha2_res = hexdigest("", auth_req['uri'], body_digest)
        end

        if auth_req['qop'] == "auth" || auth_req['qop'] == "auth-int"
          param2 = ['nonce', 'nc', 'cnonce', 'qop'].map{|key|
            auth_req[key]
          }.join(':')
          digest     = hexdigest(ha1, param2, ha2)
          digest_res = hexdigest(ha1, param2, ha2_res)
        else
          digest     = hexdigest(ha1, auth_req['nonce'], ha2)
          digest_res = hexdigest(ha1, auth_req['nonce'], ha2_res)
        end

        if digest != auth_req['response']
          error("%s: digest unmatch.", auth_req['username'])
          return false
        elsif nonce_is_invalid
          error('%s: digest is valid, but nonce is not valid.',
                auth_req['username'])
          return :nonce_is_stale
        elsif @use_auth_info_header
          auth_info = {
            'nextnonce' => generate_next_nonce(req),
            'rspauth'   => digest_res
          }
          if @use_opaque
            opaque_struct.time  = req.request_time
            opaque_struct.nonce = auth_info['nextnonce']
            opaque_struct.nc    = "%08x" % (auth_req['nc'].hex + 1)
          end
          if auth_req['qop'] == "auth" || auth_req['qop'] == "auth-int"
            ['qop','cnonce','nc'].each{|key|
              auth_info[key] = auth_req[key]
            }
          end
          res[@resp_info_field] = auth_info.keys.map{|key|
            if key == 'nc'
              key + '=' + auth_info[key]
            else
              key + "=" + HTTPUtils::quote(auth_info[key])
            end
          }.join(', ')
        end
        info('%s: authentication succeeded.', auth_req['username'])
        req.user = auth_req['username']
        return true
      end

      def split_param_value(string)
        ret = {}
        string.scan(/\G\s*([\w\-.*%!]+)=\s*(?:\"((?>\\.|[^\"])*)\"|([^,\"]*))\s*,?/) do
          ret[$1] = $3 || $2.gsub(/\\(.)/, "\\1")
        end
        ret
      end

      def generate_next_nonce(req)
        now = "%012d" % req.request_time.to_i
        pk  = hexdigest(now, @instance_key)[0,32]
        nonce = [now + ":" + pk].pack("m0") # it has 60 length of chars.
        nonce
      end

      def check_nonce(req, auth_req)
        username = auth_req['username']
        nonce = auth_req['nonce']

        pub_time, pk = nonce.unpack("m*")[0].split(":", 2)
        if (!pub_time || !pk)
          error("%s: empty nonce is given", username)
          return false
        elsif (hexdigest(pub_time, @instance_key)[0,32] != pk)
          error("%s: invalid private-key: %s for %s",
                username, hexdigest(pub_time, @instance_key)[0,32], pk)
          return false
        end

        diff_time = req.request_time.to_i - pub_time.to_i
        if (diff_time < 0)
          error("%s: difference of time-stamp is negative.", username)
          return false
        elsif diff_time > @nonce_expire_period
          error("%s: nonce is expired.", username)
          return false
        end

        return true
      end

      def generate_opaque(req)
        @mutex.synchronize{
          now = req.request_time
          if now - @last_nonce_expire > @nonce_expire_delta
            @opaques.delete_if{|key,val|
              (now - val.time) > @nonce_expire_period
            }
            @last_nonce_expire = now
          end
          begin
            opaque = Utils::random_string(16)
          end while @opaques[opaque]
          @opaques[opaque] = OpaqueInfo.new(now, nil, '00000001')
          opaque
        }
      end

      def check_opaque(opaque_struct, req, auth_req)
        if (@use_next_nonce && auth_req['nonce'] != opaque_struct.nonce)
          error('%s: nonce unmatched. "%s" for "%s"',
                auth_req['username'], auth_req['nonce'], opaque_struct.nonce)
          return false
        elsif !check_nonce(req, auth_req)
          return false
        end
        if (@check_nc && auth_req['nc'] != opaque_struct.nc)
          error('%s: nc unmatched."%s" for "%s"',
                auth_req['username'], auth_req['nc'], opaque_struct.nc)
          return false
        end
        true
      end

      def check_uri(req, auth_req)
        uri = auth_req['uri']
        if uri != req.request_uri.to_s && uri != req.unparsed_uri &&
           (@internet_explorer_hack && uri != req.path)
          error('%s: uri unmatch. "%s" for "%s"', auth_req['username'],
                auth_req['uri'], req.request_uri.to_s)
          return false
        end
        true
      end

      def hexdigest(*args)
        @h.hexdigest(args.join(":"))
      end

      # :startdoc:
    end

    ##
    # Digest authentication for proxy servers.  See DigestAuth for details.

    class ProxyDigestAuth < DigestAuth
      include ProxyAuthenticator

      private
      def check_uri(req, auth_req) # :nodoc:
        return true
      end
    end
  end
end
PKGH[Xp][[['share/ruby/webrick/httpauth/htpasswd.rbnu�[���# frozen_string_literal: false
#
# httpauth/htpasswd -- Apache compatible htpasswd file
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: htpasswd.rb,v 1.4 2003/07/22 19:20:45 gotoyuzo Exp $

require_relative 'userdb'
require_relative 'basicauth'
require 'tempfile'

module WEBrick
  module HTTPAuth

    ##
    # Htpasswd accesses apache-compatible password files.  Passwords are
    # matched to a realm where they are valid.  For security, the path for a
    # password database should be stored outside of the paths available to the
    # HTTP server.
    #
    # Htpasswd is intended for use with WEBrick::HTTPAuth::BasicAuth.
    #
    # To create an Htpasswd database with a single user:
    #
    #   htpasswd = WEBrick::HTTPAuth::Htpasswd.new 'my_password_file'
    #   htpasswd.set_passwd 'my realm', 'username', 'password'
    #   htpasswd.flush

    class Htpasswd
      include UserDB

      ##
      # Open a password database at +path+

      def initialize(path, password_hash: nil)
        @path = path
        @mtime = Time.at(0)
        @passwd = Hash.new
        @auth_type = BasicAuth
        @password_hash = password_hash

        case @password_hash
        when nil
          # begin
          #   require "string/crypt"
          # rescue LoadError
          #   warn("Unable to load string/crypt, proceeding with deprecated use of String#crypt, consider using password_hash: :bcrypt")
          # end
          @password_hash = :crypt
        when :crypt
          # require "string/crypt"
        when :bcrypt
          require "bcrypt"
        else
          raise ArgumentError, "only :crypt and :bcrypt are supported for password_hash keyword argument"
        end

        File.open(@path,"a").close unless File.exist?(@path)
        reload
      end

      ##
      # Reload passwords from the database

      def reload
        mtime = File::mtime(@path)
        if mtime > @mtime
          @passwd.clear
          File.open(@path){|io|
            while line = io.gets
              line.chomp!
              case line
              when %r!\A[^:]+:[a-zA-Z0-9./]{13}\z!
                if @password_hash == :bcrypt
                  raise StandardError, ".htpasswd file contains crypt password, only bcrypt passwords supported"
                end
                user, pass = line.split(":")
              when %r!\A[^:]+:\$2[aby]\$\d{2}\$.{53}\z!
                if @password_hash == :crypt
                  raise StandardError, ".htpasswd file contains bcrypt password, only crypt passwords supported"
                end
                user, pass = line.split(":")
              when /:\$/, /:{SHA}/
                raise NotImplementedError,
                      'MD5, SHA1 .htpasswd file not supported'
              else
                raise StandardError, 'bad .htpasswd file'
              end
              @passwd[user] = pass
            end
          }
          @mtime = mtime
        end
      end

      ##
      # Flush the password database.  If +output+ is given the database will
      # be written there instead of to the original path.

      def flush(output=nil)
        output ||= @path
        tmp = Tempfile.create("htpasswd", File::dirname(output))
        renamed = false
        begin
          each{|item| tmp.puts(item.join(":")) }
          tmp.close
          File::rename(tmp.path, output)
          renamed = true
        ensure
          tmp.close
          File.unlink(tmp.path) if !renamed
        end
      end

      ##
      # Retrieves a password from the database for +user+ in +realm+.  If
      # +reload_db+ is true the database will be reloaded first.

      def get_passwd(realm, user, reload_db)
        reload() if reload_db
        @passwd[user]
      end

      ##
      # Sets a password in the database for +user+ in +realm+ to +pass+.

      def set_passwd(realm, user, pass)
        if @password_hash == :bcrypt
          # Cost of 5 to match Apache default, and because the
          # bcrypt default of 10 will introduce significant delays
          # for every request.
          @passwd[user] = BCrypt::Password.create(pass, :cost=>5)
        else
          @passwd[user] = make_passwd(realm, user, pass)
        end
      end

      ##
      # Removes a password from the database for +user+ in +realm+.

      def delete_passwd(realm, user)
        @passwd.delete(user)
      end

      ##
      # Iterate passwords in the database.

      def each # :yields: [user, password]
        @passwd.keys.sort.each{|user|
          yield([user, @passwd[user]])
        }
      end
    end
  end
end
PKGH[`MWBB%share/ruby/webrick/httpauth/userdb.rbnu�[���# frozen_string_literal: false
#--
# httpauth/userdb.rb -- UserDB mix-in module.
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: userdb.rb,v 1.2 2003/02/20 07:15:48 gotoyuzo Exp $

module WEBrick
  module HTTPAuth

    ##
    # User database mixin for HTTPAuth.  This mixin dispatches user record
    # access to the underlying auth_type for this database.

    module UserDB

      ##
      # The authentication type.
      #
      # WEBrick::HTTPAuth::BasicAuth or WEBrick::HTTPAuth::DigestAuth are
      # built-in.

      attr_accessor :auth_type

      ##
      # Creates an obscured password in +realm+ with +user+ and +password+
      # using the auth_type of this database.

      def make_passwd(realm, user, pass)
        @auth_type::make_passwd(realm, user, pass)
      end

      ##
      # Sets a password in +realm+ with +user+ and +password+ for the
      # auth_type of this database.

      def set_passwd(realm, user, pass)
        self[user] = pass
      end

      ##
      # Retrieves a password in +realm+ for +user+ for the auth_type of this
      # database.  +reload_db+ is a dummy value.

      def get_passwd(realm, user, reload_db=false)
        make_passwd(realm, user, self[user])
      end
    end
  end
end
PKGH[�E)M�	�	&share/ruby/webrick/httpauth/htgroup.rbnu�[���# frozen_string_literal: false
#
# httpauth/htgroup.rb -- Apache compatible htgroup file
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: htgroup.rb,v 1.1 2003/02/16 22:22:56 gotoyuzo Exp $

require 'tempfile'

module WEBrick
  module HTTPAuth

    ##
    # Htgroup accesses apache-compatible group files.  Htgroup can be used to
    # provide group-based authentication for users.  Currently Htgroup is not
    # directly integrated with any authenticators in WEBrick.  For security,
    # the path for a digest password database should be stored outside of the
    # paths available to the HTTP server.
    #
    # Example:
    #
    #   htgroup = WEBrick::HTTPAuth::Htgroup.new 'my_group_file'
    #   htgroup.add 'superheroes', %w[spiderman batman]
    #
    #   htgroup.members('superheroes').include? 'magneto' # => false

    class Htgroup

      ##
      # Open a group database at +path+

      def initialize(path)
        @path = path
        @mtime = Time.at(0)
        @group = Hash.new
        File.open(@path,"a").close unless File.exist?(@path)
        reload
      end

      ##
      # Reload groups from the database

      def reload
        if (mtime = File::mtime(@path)) > @mtime
          @group.clear
          File.open(@path){|io|
            while line = io.gets
              line.chomp!
              group, members = line.split(/:\s*/)
              @group[group] = members.split(/\s+/)
            end
          }
          @mtime = mtime
        end
      end

      ##
      # Flush the group database.  If +output+ is given the database will be
      # written there instead of to the original path.

      def flush(output=nil)
        output ||= @path
        tmp = Tempfile.create("htgroup", File::dirname(output))
        begin
          @group.keys.sort.each{|group|
            tmp.puts(format("%s: %s", group, self.members(group).join(" ")))
          }
        ensure
          tmp.close
          if $!
            File.unlink(tmp.path)
          else
            return File.rename(tmp.path, output)
          end
        end
      end

      ##
      # Retrieve the list of members from +group+

      def members(group)
        reload
        @group[group] || []
      end

      ##
      # Add an Array of +members+ to +group+

      def add(group, members)
        @group[group] = members(group) | members
      end
    end
  end
end
PKGH[�O�)�4�4"share/ruby/webrick/httpresponse.rbnu�[���# frozen_string_literal: false
#
# httpresponse.rb -- HTTPResponse Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpresponse.rb,v 1.45 2003/07/11 11:02:25 gotoyuzo Exp $

require 'time'
require 'uri'
require_relative 'httpversion'
require_relative 'htmlutils'
require_relative 'httputils'
require_relative 'httpstatus'

module WEBrick
  ##
  # An HTTP response.  This is filled in by the service or do_* methods of a
  # WEBrick HTTP Servlet.

  class HTTPResponse
    class InvalidHeader < StandardError
    end

    ##
    # HTTP Response version

    attr_reader :http_version

    ##
    # Response status code (200)

    attr_reader :status

    ##
    # Response header

    attr_reader :header

    ##
    # Response cookies

    attr_reader :cookies

    ##
    # Response reason phrase ("OK")

    attr_accessor :reason_phrase

    ##
    # Body may be:
    # * a String;
    # * an IO-like object that responds to +#read+ and +#readpartial+;
    # * a Proc-like object that responds to +#call+.
    #
    # In the latter case, either #chunked= should be set to +true+,
    # or <code>header['content-length']</code> explicitly provided.
    # Example:
    #
    #   server.mount_proc '/' do |req, res|
    #     res.chunked = true
    #     # or
    #     # res.header['content-length'] = 10
    #     res.body = proc { |out| out.write(Time.now.to_s) }
    #   end

    attr_accessor :body

    ##
    # Request method for this response

    attr_accessor :request_method

    ##
    # Request URI for this response

    attr_accessor :request_uri

    ##
    # Request HTTP version for this response

    attr_accessor :request_http_version

    ##
    # Filename of the static file in this response.  Only used by the
    # FileHandler servlet.

    attr_accessor :filename

    ##
    # Is this a keep-alive response?

    attr_accessor :keep_alive

    ##
    # Configuration for this response

    attr_reader :config

    ##
    # Bytes sent in this response

    attr_reader :sent_size

    ##
    # Creates a new HTTP response object.  WEBrick::Config::HTTP is the
    # default configuration.

    def initialize(config)
      @config = config
      @buffer_size = config[:OutputBufferSize]
      @logger = config[:Logger]
      @header = Hash.new
      @status = HTTPStatus::RC_OK
      @reason_phrase = nil
      @http_version = HTTPVersion::convert(@config[:HTTPVersion])
      @body = ''
      @keep_alive = true
      @cookies = []
      @request_method = nil
      @request_uri = nil
      @request_http_version = @http_version  # temporary
      @chunked = false
      @filename = nil
      @sent_size = 0
      @bodytempfile = nil
    end

    ##
    # The response's HTTP status line

    def status_line
      "HTTP/#@http_version #@status #@reason_phrase".rstrip << CRLF
    end

    ##
    # Sets the response's status to the +status+ code

    def status=(status)
      @status = status
      @reason_phrase = HTTPStatus::reason_phrase(status)
    end

    ##
    # Retrieves the response header +field+

    def [](field)
      @header[field.downcase]
    end

    ##
    # Sets the response header +field+ to +value+

    def []=(field, value)
      @chunked = value.to_s.downcase == 'chunked' if field.downcase == 'transfer-encoding'
      @header[field.downcase] = value.to_s
    end

    ##
    # The content-length header

    def content_length
      if len = self['content-length']
        return Integer(len)
      end
    end

    ##
    # Sets the content-length header to +len+

    def content_length=(len)
      self['content-length'] = len.to_s
    end

    ##
    # The content-type header

    def content_type
      self['content-type']
    end

    ##
    # Sets the content-type header to +type+

    def content_type=(type)
      self['content-type'] = type
    end

    ##
    # Iterates over each header in the response

    def each
      @header.each{|field, value|  yield(field, value) }
    end

    ##
    # Will this response body be returned using chunked transfer-encoding?

    def chunked?
      @chunked
    end

    ##
    # Enables chunked transfer encoding.

    def chunked=(val)
      @chunked = val ? true : false
    end

    ##
    # Will this response's connection be kept alive?

    def keep_alive?
      @keep_alive
    end

    ##
    # Sends the response on +socket+

    def send_response(socket) # :nodoc:
      begin
        setup_header()
        send_header(socket)
        send_body(socket)
      rescue Errno::EPIPE, Errno::ECONNRESET, Errno::ENOTCONN => ex
        @logger.debug(ex)
        @keep_alive = false
      rescue Exception => ex
        @logger.error(ex)
        @keep_alive = false
      end
    end

    ##
    # Sets up the headers for sending

    def setup_header() # :nodoc:
      @reason_phrase    ||= HTTPStatus::reason_phrase(@status)
      @header['server'] ||= @config[:ServerSoftware]
      @header['date']   ||= Time.now.httpdate

      # HTTP/0.9 features
      if @request_http_version < "1.0"
        @http_version = HTTPVersion.new("0.9")
        @keep_alive = false
      end

      # HTTP/1.0 features
      if @request_http_version < "1.1"
        if chunked?
          @chunked = false
          ver = @request_http_version.to_s
          msg = "chunked is set for an HTTP/#{ver} request. (ignored)"
          @logger.warn(msg)
        end
      end

      # Determine the message length (RFC2616 -- 4.4 Message Length)
      if @status == 304 || @status == 204 || HTTPStatus::info?(@status)
        @header.delete('content-length')
        @body = ""
      elsif chunked?
        @header["transfer-encoding"] = "chunked"
        @header.delete('content-length')
      elsif %r{^multipart/byteranges} =~ @header['content-type']
        @header.delete('content-length')
      elsif @header['content-length'].nil?
        if @body.respond_to? :readpartial
        elsif @body.respond_to? :call
          make_body_tempfile
        else
          @header['content-length'] = (@body ? @body.bytesize : 0).to_s
        end
      end

      # Keep-Alive connection.
      if @header['connection'] == "close"
         @keep_alive = false
      elsif keep_alive?
        if chunked? || @header['content-length'] || @status == 304 || @status == 204 || HTTPStatus.info?(@status)
          @header['connection'] = "Keep-Alive"
        else
          msg = "Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true"
          @logger.warn(msg)
          @header['connection'] = "close"
          @keep_alive = false
        end
      else
        @header['connection'] = "close"
      end

      # Location is a single absoluteURI.
      if location = @header['location']
        if @request_uri
          @header['location'] = @request_uri.merge(location).to_s
        end
      end
    end

    def make_body_tempfile # :nodoc:
      return if @bodytempfile
      bodytempfile = Tempfile.create("webrick")
      if @body.nil?
        # nothing
      elsif @body.respond_to? :readpartial
        IO.copy_stream(@body, bodytempfile)
        @body.close
      elsif @body.respond_to? :call
        @body.call(bodytempfile)
      else
        bodytempfile.write @body
      end
      bodytempfile.rewind
      @body = @bodytempfile = bodytempfile
      @header['content-length'] = bodytempfile.stat.size.to_s
    end

    def remove_body_tempfile # :nodoc:
      if @bodytempfile
        @bodytempfile.close
        File.unlink @bodytempfile.path
        @bodytempfile = nil
      end
    end


    ##
    # Sends the headers on +socket+

    def send_header(socket) # :nodoc:
      if @http_version.major > 0
        data = status_line()
        @header.each{|key, value|
          tmp = key.gsub(/\bwww|^te$|\b\w/){ $&.upcase }
          data << "#{tmp}: #{check_header(value)}" << CRLF
        }
        @cookies.each{|cookie|
          data << "Set-Cookie: " << check_header(cookie.to_s) << CRLF
        }
        data << CRLF
        socket.write(data)
      end
    rescue InvalidHeader => e
      @header.clear
      @cookies.clear
      set_error e
      retry
    end

    ##
    # Sends the body on +socket+

    def send_body(socket) # :nodoc:
      if @body.respond_to? :readpartial then
        send_body_io(socket)
      elsif @body.respond_to?(:call) then
        send_body_proc(socket)
      else
        send_body_string(socket)
      end
    end

    ##
    # Redirects to +url+ with a WEBrick::HTTPStatus::Redirect +status+.
    #
    # Example:
    #
    #   res.set_redirect WEBrick::HTTPStatus::TemporaryRedirect

    def set_redirect(status, url)
      url = URI(url).to_s
      @body = "<HTML><A HREF=\"#{url}\">#{url}</A>.</HTML>\n"
      @header['location'] = url
      raise status
    end

    ##
    # Creates an error page for exception +ex+ with an optional +backtrace+

    def set_error(ex, backtrace=false)
      case ex
      when HTTPStatus::Status
        @keep_alive = false if HTTPStatus::error?(ex.code)
        self.status = ex.code
      else
        @keep_alive = false
        self.status = HTTPStatus::RC_INTERNAL_SERVER_ERROR
      end
      @header['content-type'] = "text/html; charset=ISO-8859-1"

      if respond_to?(:create_error_page)
        create_error_page()
        return
      end

      if @request_uri
        host, port = @request_uri.host, @request_uri.port
      else
        host, port = @config[:ServerName], @config[:Port]
      end

      error_body(backtrace, ex, host, port)
    end

    private

    def check_header(header_value)
      header_value = header_value.to_s
      if /[\r\n]/ =~ header_value
        raise InvalidHeader
      else
        header_value
      end
    end

    # :stopdoc:

    def error_body(backtrace, ex, host, port)
      @body = ''
      @body << <<-_end_of_html_
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
  <HEAD><TITLE>#{HTMLUtils::escape(@reason_phrase)}</TITLE></HEAD>
  <BODY>
    <H1>#{HTMLUtils::escape(@reason_phrase)}</H1>
    #{HTMLUtils::escape(ex.message)}
    <HR>
      _end_of_html_

      if backtrace && $DEBUG
        @body << "backtrace of `#{HTMLUtils::escape(ex.class.to_s)}' "
        @body << "#{HTMLUtils::escape(ex.message)}"
        @body << "<PRE>"
        ex.backtrace.each{|line| @body << "\t#{line}\n"}
        @body << "</PRE><HR>"
      end

      @body << <<-_end_of_html_
    <ADDRESS>
     #{HTMLUtils::escape(@config[:ServerSoftware])} at
     #{host}:#{port}
    </ADDRESS>
  </BODY>
</HTML>
      _end_of_html_
    end

    def send_body_io(socket)
      begin
        if @request_method == "HEAD"
          # do nothing
        elsif chunked?
          buf  = ''
          begin
            @body.readpartial(@buffer_size, buf)
            size = buf.bytesize
            data = "#{size.to_s(16)}#{CRLF}#{buf}#{CRLF}"
            socket.write(data)
            data.clear
            @sent_size += size
          rescue EOFError
            break
          end while true
          buf.clear
          socket.write("0#{CRLF}#{CRLF}")
        else
          if %r{\Abytes (\d+)-(\d+)/\d+\z} =~ @header['content-range']
            offset = $1.to_i
            size = $2.to_i - offset + 1
          else
            offset = nil
            size = @header['content-length']
            size = size.to_i if size
          end
          begin
            @sent_size = IO.copy_stream(@body, socket, size, offset)
          rescue NotImplementedError
            @body.seek(offset, IO::SEEK_SET)
            @sent_size = IO.copy_stream(@body, socket, size)
          end
        end
      ensure
        @body.close
      end
      remove_body_tempfile
    end

    def send_body_string(socket)
      if @request_method == "HEAD"
        # do nothing
      elsif chunked?
        body ? @body.bytesize : 0
        while buf = @body[@sent_size, @buffer_size]
          break if buf.empty?
          size = buf.bytesize
          data = "#{size.to_s(16)}#{CRLF}#{buf}#{CRLF}"
          buf.clear
          socket.write(data)
          @sent_size += size
        end
        socket.write("0#{CRLF}#{CRLF}")
      else
        if @body && @body.bytesize > 0
          socket.write(@body)
          @sent_size = @body.bytesize
        end
      end
    end

    def send_body_proc(socket)
      if @request_method == "HEAD"
        # do nothing
      elsif chunked?
        @body.call(ChunkedWrapper.new(socket, self))
        socket.write("0#{CRLF}#{CRLF}")
      else
        size = @header['content-length'].to_i
        if @bodytempfile
          @bodytempfile.rewind
          IO.copy_stream(@bodytempfile, socket)
        else
          @body.call(socket)
        end
        @sent_size = size
      end
    end

    class ChunkedWrapper
      def initialize(socket, resp)
        @socket = socket
        @resp = resp
      end

      def write(buf)
        return 0 if buf.empty?
        socket = @socket
        @resp.instance_eval {
          size = buf.bytesize
          data = "#{size.to_s(16)}#{CRLF}#{buf}#{CRLF}"
          socket.write(data)
          data.clear
          @sent_size += size
          size
        }
      end

      def <<(*buf)
        write(buf)
        self
      end
    end

    # preserved for compatibility with some 3rd-party handlers
    def _write_data(socket, data)
      socket << data
    end

    # :startdoc:
  end

end
PKGH[��3�3share/ruby/webrick/httputils.rbnu�[���# frozen_string_literal: false
#
# httputils.rb -- HTTPUtils Module
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httputils.rb,v 1.34 2003/06/05 21:34:08 gotoyuzo Exp $

require 'socket'
require 'tempfile'

module WEBrick
  CR   = "\x0d"     # :nodoc:
  LF   = "\x0a"     # :nodoc:
  CRLF = "\x0d\x0a" # :nodoc:

  ##
  # HTTPUtils provides utility methods for working with the HTTP protocol.
  #
  # This module is generally used internally by WEBrick

  module HTTPUtils

    ##
    # Normalizes a request path.  Raises an exception if the path cannot be
    # normalized.

    def normalize_path(path)
      raise "abnormal path `#{path}'" if path[0] != ?/
      ret = path.dup

      ret.gsub!(%r{/+}o, '/')                    # //      => /
      while ret.sub!(%r'/\.(?:/|\Z)', '/'); end  # /.      => /
      while ret.sub!(%r'/(?!\.\./)[^/]+/\.\.(?:/|\Z)', '/'); end # /foo/.. => /foo

      raise "abnormal path `#{path}'" if %r{/\.\.(/|\Z)} =~ ret
      ret
    end
    module_function :normalize_path

    ##
    # Default mime types

    DefaultMimeTypes = {
      "ai"    => "application/postscript",
      "asc"   => "text/plain",
      "avi"   => "video/x-msvideo",
      "bin"   => "application/octet-stream",
      "bmp"   => "image/bmp",
      "class" => "application/octet-stream",
      "cer"   => "application/pkix-cert",
      "crl"   => "application/pkix-crl",
      "crt"   => "application/x-x509-ca-cert",
     #"crl"   => "application/x-pkcs7-crl",
      "css"   => "text/css",
      "dms"   => "application/octet-stream",
      "doc"   => "application/msword",
      "dvi"   => "application/x-dvi",
      "eps"   => "application/postscript",
      "etx"   => "text/x-setext",
      "exe"   => "application/octet-stream",
      "gif"   => "image/gif",
      "htm"   => "text/html",
      "html"  => "text/html",
      "jpe"   => "image/jpeg",
      "jpeg"  => "image/jpeg",
      "jpg"   => "image/jpeg",
      "js"    => "application/javascript",
      "json"  => "application/json",
      "lha"   => "application/octet-stream",
      "lzh"   => "application/octet-stream",
      "mov"   => "video/quicktime",
      "mpe"   => "video/mpeg",
      "mpeg"  => "video/mpeg",
      "mpg"   => "video/mpeg",
      "pbm"   => "image/x-portable-bitmap",
      "pdf"   => "application/pdf",
      "pgm"   => "image/x-portable-graymap",
      "png"   => "image/png",
      "pnm"   => "image/x-portable-anymap",
      "ppm"   => "image/x-portable-pixmap",
      "ppt"   => "application/vnd.ms-powerpoint",
      "ps"    => "application/postscript",
      "qt"    => "video/quicktime",
      "ras"   => "image/x-cmu-raster",
      "rb"    => "text/plain",
      "rd"    => "text/plain",
      "rtf"   => "application/rtf",
      "sgm"   => "text/sgml",
      "sgml"  => "text/sgml",
      "svg"   => "image/svg+xml",
      "tif"   => "image/tiff",
      "tiff"  => "image/tiff",
      "txt"   => "text/plain",
      "wasm"  => "application/wasm",
      "xbm"   => "image/x-xbitmap",
      "xhtml" => "text/html",
      "xls"   => "application/vnd.ms-excel",
      "xml"   => "text/xml",
      "xpm"   => "image/x-xpixmap",
      "xwd"   => "image/x-xwindowdump",
      "zip"   => "application/zip",
    }

    ##
    # Loads Apache-compatible mime.types in +file+.

    def load_mime_types(file)
      # note: +file+ may be a "| command" for now; some people may
      # rely on this, but currently we do not use this method by default.
      open(file){ |io|
        hash = Hash.new
        io.each{ |line|
          next if /^#/ =~ line
          line.chomp!
          mimetype, ext0 = line.split(/\s+/, 2)
          next unless ext0
          next if ext0.empty?
          ext0.split(/\s+/).each{ |ext| hash[ext] = mimetype }
        }
        hash
      }
    end
    module_function :load_mime_types

    ##
    # Returns the mime type of +filename+ from the list in +mime_tab+.  If no
    # mime type was found application/octet-stream is returned.

    def mime_type(filename, mime_tab)
      suffix1 = (/\.(\w+)$/ =~ filename && $1.downcase)
      suffix2 = (/\.(\w+)\.[\w\-]+$/ =~ filename && $1.downcase)
      mime_tab[suffix1] || mime_tab[suffix2] || "application/octet-stream"
    end
    module_function :mime_type

    ##
    # Parses an HTTP header +raw+ into a hash of header fields with an Array
    # of values.

    def parse_header(raw)
      header = Hash.new([].freeze)
      field = nil
      raw.each_line{|line|
        case line
        when /^([A-Za-z0-9!\#$%&'*+\-.^_`|~]+):\s*(.*?)\s*\z/om
          field, value = $1, $2
          field.downcase!
          header[field] = [] unless header.has_key?(field)
          header[field] << value
        when /^\s+(.*?)\s*\z/om
          value = $1
          unless field
            raise HTTPStatus::BadRequest, "bad header '#{line}'."
          end
          header[field][-1] << " " << value
        else
          raise HTTPStatus::BadRequest, "bad header '#{line}'."
        end
      }
      header.each{|key, values|
        values.each(&:strip!)
      }
      header
    end
    module_function :parse_header

    ##
    # Splits a header value +str+ according to HTTP specification.

    def split_header_value(str)
      str.scan(%r'\G((?:"(?:\\.|[^"])+?"|[^",]+)+)
                    (?:,\s*|\Z)'xn).flatten
    end
    module_function :split_header_value

    ##
    # Parses a Range header value +ranges_specifier+

    def parse_range_header(ranges_specifier)
      if /^bytes=(.*)/ =~ ranges_specifier
        byte_range_set = split_header_value($1)
        byte_range_set.collect{|range_spec|
          case range_spec
          when /^(\d+)-(\d+)/ then $1.to_i .. $2.to_i
          when /^(\d+)-/      then $1.to_i .. -1
          when /^-(\d+)/      then -($1.to_i) .. -1
          else return nil
          end
        }
      end
    end
    module_function :parse_range_header

    ##
    # Parses q values in +value+ as used in Accept headers.

    def parse_qvalues(value)
      tmp = []
      if value
        parts = value.split(/,\s*/)
        parts.each {|part|
          if m = %r{^([^\s,]+?)(?:;\s*q=(\d+(?:\.\d+)?))?$}.match(part)
            val = m[1]
            q = (m[2] or 1).to_f
            tmp.push([val, q])
          end
        }
        tmp = tmp.sort_by{|val, q| -q}
        tmp.collect!{|val, q| val}
      end
      return tmp
    end
    module_function :parse_qvalues

    ##
    # Removes quotes and escapes from +str+

    def dequote(str)
      ret = (/\A"(.*)"\Z/ =~ str) ? $1 : str.dup
      ret.gsub!(/\\(.)/, "\\1")
      ret
    end
    module_function :dequote

    ##
    # Quotes and escapes quotes in +str+

    def quote(str)
      '"' << str.gsub(/[\\\"]/o, "\\\1") << '"'
    end
    module_function :quote

    ##
    # Stores multipart form data.  FormData objects are created when
    # WEBrick::HTTPUtils.parse_form_data is called.

    class FormData < String
      EmptyRawHeader = [].freeze # :nodoc:
      EmptyHeader = {}.freeze # :nodoc:

      ##
      # The name of the form data part

      attr_accessor :name

      ##
      # The filename of the form data part

      attr_accessor :filename

      attr_accessor :next_data # :nodoc:
      protected :next_data

      ##
      # Creates a new FormData object.
      #
      # +args+ is an Array of form data entries.  One FormData will be created
      # for each entry.
      #
      # This is called by WEBrick::HTTPUtils.parse_form_data for you

      def initialize(*args)
        @name = @filename = @next_data = nil
        if args.empty?
          @raw_header = []
          @header = nil
          super("")
        else
          @raw_header = EmptyRawHeader
          @header = EmptyHeader
          super(args.shift)
          unless args.empty?
            @next_data = self.class.new(*args)
          end
        end
      end

      ##
      # Retrieves the header at the first entry in +key+

      def [](*key)
        begin
          @header[key[0].downcase].join(", ")
        rescue StandardError, NameError
          super
        end
      end

      ##
      # Adds +str+ to this FormData which may be the body, a header or a
      # header entry.
      #
      # This is called by WEBrick::HTTPUtils.parse_form_data for you

      def <<(str)
        if @header
          super
        elsif str == CRLF
          @header = HTTPUtils::parse_header(@raw_header.join)
          if cd = self['content-disposition']
            if /\s+name="(.*?)"/ =~ cd then @name = $1 end
            if /\s+filename="(.*?)"/ =~ cd then @filename = $1 end
          end
        else
          @raw_header << str
        end
        self
      end

      ##
      # Adds +data+ at the end of the chain of entries
      #
      # This is called by WEBrick::HTTPUtils.parse_form_data for you.

      def append_data(data)
        tmp = self
        while tmp
          unless tmp.next_data
            tmp.next_data = data
            break
          end
          tmp = tmp.next_data
        end
        self
      end

      ##
      # Yields each entry in this FormData

      def each_data
        tmp = self
        while tmp
          next_data = tmp.next_data
          yield(tmp)
          tmp = next_data
        end
      end

      ##
      # Returns all the FormData as an Array

      def list
        ret = []
        each_data{|data|
          ret << data.to_s
        }
        ret
      end

      ##
      # A FormData will behave like an Array

      alias :to_ary :list

      ##
      # This FormData's body

      def to_s
        String.new(self)
      end
    end

    ##
    # Parses the query component of a URI in +str+

    def parse_query(str)
      query = Hash.new
      if str
        str.split(/[&;]/).each{|x|
          next if x.empty?
          key, val = x.split(/=/,2)
          key = unescape_form(key)
          val = unescape_form(val.to_s)
          val = FormData.new(val)
          val.name = key
          if query.has_key?(key)
            query[key].append_data(val)
            next
          end
          query[key] = val
        }
      end
      query
    end
    module_function :parse_query

    ##
    # Parses form data in +io+ with the given +boundary+

    def parse_form_data(io, boundary)
      boundary_regexp = /\A--#{Regexp.quote(boundary)}(--)?#{CRLF}\z/
      form_data = Hash.new
      return form_data unless io
      data = nil
      io.each_line{|line|
        if boundary_regexp =~ line
          if data
            data.chop!
            key = data.name
            if form_data.has_key?(key)
              form_data[key].append_data(data)
            else
              form_data[key] = data
            end
          end
          data = FormData.new
          next
        else
          if data
            data << line
          end
        end
      }
      return form_data
    end
    module_function :parse_form_data

    #####

    reserved = ';/?:@&=+$,'
    num      = '0123456789'
    lowalpha = 'abcdefghijklmnopqrstuvwxyz'
    upalpha  = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    mark     = '-_.!~*\'()'
    unreserved = num + lowalpha + upalpha + mark
    control  = (0x0..0x1f).collect{|c| c.chr }.join + "\x7f"
    space    = " "
    delims   = '<>#%"'
    unwise   = '{}|\\^[]`'
    nonascii = (0x80..0xff).collect{|c| c.chr }.join

    module_function

    # :stopdoc:

    def _make_regex(str) /([#{Regexp.escape(str)}])/n end
    def _make_regex!(str) /([^#{Regexp.escape(str)}])/n end
    def _escape(str, regex)
      str = str.b
      str.gsub!(regex) {"%%%02X" % $1.ord}
      # %-escaped string should contain US-ASCII only
      str.force_encoding(Encoding::US_ASCII)
    end
    def _unescape(str, regex)
      str = str.b
      str.gsub!(regex) {$1.hex.chr}
      # encoding of %-unescaped string is unknown
      str
    end

    UNESCAPED = _make_regex(control+space+delims+unwise+nonascii)
    UNESCAPED_FORM = _make_regex(reserved+control+delims+unwise+nonascii)
    NONASCII  = _make_regex(nonascii)
    ESCAPED   = /%([0-9a-fA-F]{2})/
    UNESCAPED_PCHAR = _make_regex!(unreserved+":@&=+$,")

    # :startdoc:

    ##
    # Escapes HTTP reserved and unwise characters in +str+

    def escape(str)
      _escape(str, UNESCAPED)
    end

    ##
    # Unescapes HTTP reserved and unwise characters in +str+

    def unescape(str)
      _unescape(str, ESCAPED)
    end

    ##
    # Escapes form reserved characters in +str+

    def escape_form(str)
      ret = _escape(str, UNESCAPED_FORM)
      ret.gsub!(/ /, "+")
      ret
    end

    ##
    # Unescapes form reserved characters in +str+

    def unescape_form(str)
      _unescape(str.gsub(/\+/, " "), ESCAPED)
    end

    ##
    # Escapes path +str+

    def escape_path(str)
      result = ""
      str.scan(%r{/([^/]*)}).each{|i|
        result << "/" << _escape(i[0], UNESCAPED_PCHAR)
      }
      return result
    end

    ##
    # Escapes 8 bit characters in +str+

    def escape8bit(str)
      _escape(str, NONASCII)
    end
  end
end
PKGH[�b�� share/ruby/webrick/httpstatus.rbnu�[���# frozen_string_literal: false
#--
# httpstatus.rb -- HTTPStatus Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpstatus.rb,v 1.11 2003/03/24 20:18:55 gotoyuzo Exp $

require_relative 'accesslog'

module WEBrick

  ##
  # This module is used to manager HTTP status codes.
  #
  # See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for more
  # information.
  module HTTPStatus

    ##
    # Root of the HTTP status class hierarchy
    class Status < StandardError
      class << self
        attr_reader :code, :reason_phrase # :nodoc:
      end

      # Returns the HTTP status code
      def code() self::class::code end

      # Returns the HTTP status description
      def reason_phrase() self::class::reason_phrase end

      alias to_i code # :nodoc:
    end

    # Root of the HTTP info statuses
    class Info        < Status; end
    # Root of the HTTP success statuses
    class Success     < Status; end
    # Root of the HTTP redirect statuses
    class Redirect    < Status; end
    # Root of the HTTP error statuses
    class Error       < Status; end
    # Root of the HTTP client error statuses
    class ClientError < Error; end
    # Root of the HTTP server error statuses
    class ServerError < Error; end

    class EOFError < StandardError; end

    # HTTP status codes and descriptions
    StatusMessage = { # :nodoc:
      100 => 'Continue',
      101 => 'Switching Protocols',
      200 => 'OK',
      201 => 'Created',
      202 => 'Accepted',
      203 => 'Non-Authoritative Information',
      204 => 'No Content',
      205 => 'Reset Content',
      206 => 'Partial Content',
      207 => 'Multi-Status',
      300 => 'Multiple Choices',
      301 => 'Moved Permanently',
      302 => 'Found',
      303 => 'See Other',
      304 => 'Not Modified',
      305 => 'Use Proxy',
      307 => 'Temporary Redirect',
      400 => 'Bad Request',
      401 => 'Unauthorized',
      402 => 'Payment Required',
      403 => 'Forbidden',
      404 => 'Not Found',
      405 => 'Method Not Allowed',
      406 => 'Not Acceptable',
      407 => 'Proxy Authentication Required',
      408 => 'Request Timeout',
      409 => 'Conflict',
      410 => 'Gone',
      411 => 'Length Required',
      412 => 'Precondition Failed',
      413 => 'Request Entity Too Large',
      414 => 'Request-URI Too Large',
      415 => 'Unsupported Media Type',
      416 => 'Request Range Not Satisfiable',
      417 => 'Expectation Failed',
      422 => 'Unprocessable Entity',
      423 => 'Locked',
      424 => 'Failed Dependency',
      426 => 'Upgrade Required',
      428 => 'Precondition Required',
      429 => 'Too Many Requests',
      431 => 'Request Header Fields Too Large',
      451 => 'Unavailable For Legal Reasons',
      500 => 'Internal Server Error',
      501 => 'Not Implemented',
      502 => 'Bad Gateway',
      503 => 'Service Unavailable',
      504 => 'Gateway Timeout',
      505 => 'HTTP Version Not Supported',
      507 => 'Insufficient Storage',
      511 => 'Network Authentication Required',
    }

    # Maps a status code to the corresponding Status class
    CodeToError = {} # :nodoc:

    # Creates a status or error class for each status code and
    # populates the CodeToError map.
    StatusMessage.each{|code, message|
      message.freeze
      var_name = message.gsub(/[ \-]/,'_').upcase
      err_name = message.gsub(/[ \-]/,'')

      case code
      when 100...200; parent = Info
      when 200...300; parent = Success
      when 300...400; parent = Redirect
      when 400...500; parent = ClientError
      when 500...600; parent = ServerError
      end

      const_set("RC_#{var_name}", code)
      err_class = Class.new(parent)
      err_class.instance_variable_set(:@code, code)
      err_class.instance_variable_set(:@reason_phrase, message)
      const_set(err_name, err_class)
      CodeToError[code] = err_class
    }

    ##
    # Returns the description corresponding to the HTTP status +code+
    #
    #   WEBrick::HTTPStatus.reason_phrase 404
    #   => "Not Found"
    def reason_phrase(code)
      StatusMessage[code.to_i]
    end

    ##
    # Is +code+ an informational status?
    def info?(code)
      code.to_i >= 100 and code.to_i < 200
    end

    ##
    # Is +code+ a successful status?
    def success?(code)
      code.to_i >= 200 and code.to_i < 300
    end

    ##
    # Is +code+ a redirection status?
    def redirect?(code)
      code.to_i >= 300 and code.to_i < 400
    end

    ##
    # Is +code+ an error status?
    def error?(code)
      code.to_i >= 400 and code.to_i < 600
    end

    ##
    # Is +code+ a client error status?
    def client_error?(code)
      code.to_i >= 400 and code.to_i < 500
    end

    ##
    # Is +code+ a server error status?
    def server_error?(code)
      code.to_i >= 500 and code.to_i < 600
    end

    ##
    # Returns the status class corresponding to +code+
    #
    #   WEBrick::HTTPStatus[302]
    #   => WEBrick::HTTPStatus::NotFound
    #
    def self.[](code)
      CodeToError[code]
    end

    module_function :reason_phrase
    module_function :info?, :success?, :redirect?, :error?
    module_function :client_error?, :server_error?
  end
end
PKGH[�(��))share/ruby/webrick/httpproxy.rbnu�[���# frozen_string_literal: false
#
# httpproxy.rb -- HTTPProxy Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2002 GOTO Kentaro
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpproxy.rb,v 1.18 2003/03/08 18:58:10 gotoyuzo Exp $
# $kNotwork: straw.rb,v 1.3 2002/02/12 15:13:07 gotoken Exp $

require_relative "httpserver"
require "net/http"

module WEBrick

  NullReader = Object.new # :nodoc:
  class << NullReader # :nodoc:
    def read(*args)
      nil
    end
    alias gets read
  end

  FakeProxyURI = Object.new # :nodoc:
  class << FakeProxyURI # :nodoc:
    def method_missing(meth, *args)
      if %w(scheme host port path query userinfo).member?(meth.to_s)
        return nil
      end
      super
    end
  end

  # :startdoc:

  ##
  # An HTTP Proxy server which proxies GET, HEAD and POST requests.
  #
  # To create a simple proxy server:
  #
  #   require 'webrick'
  #   require 'webrick/httpproxy'
  #
  #   proxy = WEBrick::HTTPProxyServer.new Port: 8000
  #
  #   trap 'INT'  do proxy.shutdown end
  #   trap 'TERM' do proxy.shutdown end
  #
  #   proxy.start
  #
  # See ::new for proxy-specific configuration items.
  #
  # == Modifying proxied responses
  #
  # To modify content the proxy server returns use the +:ProxyContentHandler+
  # option:
  #
  #   handler = proc do |req, res|
  #     if res['content-type'] == 'text/plain' then
  #       res.body << "\nThis content was proxied!\n"
  #     end
  #   end
  #
  #   proxy =
  #     WEBrick::HTTPProxyServer.new Port: 8000, ProxyContentHandler: handler

  class HTTPProxyServer < HTTPServer

    ##
    # Proxy server configurations.  The proxy server handles the following
    # configuration items in addition to those supported by HTTPServer:
    #
    # :ProxyAuthProc:: Called with a request and response to authorize a
    #                  request
    # :ProxyVia:: Appended to the via header
    # :ProxyURI:: The proxy server's URI
    # :ProxyContentHandler:: Called with a request and response and allows
    #                        modification of the response
    # :ProxyTimeout:: Sets the proxy timeouts to 30 seconds for open and 60
    #                 seconds for read operations

    def initialize(config={}, default=Config::HTTP)
      super(config, default)
      c = @config
      @via = "#{c[:HTTPVersion]} #{c[:ServerName]}:#{c[:Port]}"
    end

    # :stopdoc:
    def service(req, res)
      if req.request_method == "CONNECT"
        do_CONNECT(req, res)
      elsif req.unparsed_uri =~ %r!^http://!
        proxy_service(req, res)
      else
        super(req, res)
      end
    end

    def proxy_auth(req, res)
      if proc = @config[:ProxyAuthProc]
        proc.call(req, res)
      end
      req.header.delete("proxy-authorization")
    end

    def proxy_uri(req, res)
      # should return upstream proxy server's URI
      return @config[:ProxyURI]
    end

    def proxy_service(req, res)
      # Proxy Authentication
      proxy_auth(req, res)

      begin
        self.send("do_#{req.request_method}", req, res)
      rescue NoMethodError
        raise HTTPStatus::MethodNotAllowed,
          "unsupported method `#{req.request_method}'."
      rescue => err
        logger.debug("#{err.class}: #{err.message}")
        raise HTTPStatus::ServiceUnavailable, err.message
      end

      # Process contents
      if handler = @config[:ProxyContentHandler]
        handler.call(req, res)
      end
    end

    def do_CONNECT(req, res)
      # Proxy Authentication
      proxy_auth(req, res)

      ua = Thread.current[:WEBrickSocket]  # User-Agent
      raise HTTPStatus::InternalServerError,
        "[BUG] cannot get socket" unless ua

      host, port = req.unparsed_uri.split(":", 2)
      # Proxy authentication for upstream proxy server
      if proxy = proxy_uri(req, res)
        proxy_request_line = "CONNECT #{host}:#{port} HTTP/1.0"
        if proxy.userinfo
          credentials = "Basic " + [proxy.userinfo].pack("m0")
        end
        host, port = proxy.host, proxy.port
      end

      begin
        @logger.debug("CONNECT: upstream proxy is `#{host}:#{port}'.")
        os = TCPSocket.new(host, port)     # origin server

        if proxy
          @logger.debug("CONNECT: sending a Request-Line")
          os << proxy_request_line << CRLF
          @logger.debug("CONNECT: > #{proxy_request_line}")
          if credentials
            @logger.debug("CONNECT: sending credentials")
            os << "Proxy-Authorization: " << credentials << CRLF
          end
          os << CRLF
          proxy_status_line = os.gets(LF)
          @logger.debug("CONNECT: read Status-Line from the upstream server")
          @logger.debug("CONNECT: < #{proxy_status_line}")
          if %r{^HTTP/\d+\.\d+\s+200\s*} =~ proxy_status_line
            while line = os.gets(LF)
              break if /\A(#{CRLF}|#{LF})\z/om =~ line
            end
          else
            raise HTTPStatus::BadGateway
          end
        end
        @logger.debug("CONNECT #{host}:#{port}: succeeded")
        res.status = HTTPStatus::RC_OK
      rescue => ex
        @logger.debug("CONNECT #{host}:#{port}: failed `#{ex.message}'")
        res.set_error(ex)
        raise HTTPStatus::EOFError
      ensure
        if handler = @config[:ProxyContentHandler]
          handler.call(req, res)
        end
        res.send_response(ua)
        access_log(@config, req, res)

        # Should clear request-line not to send the response twice.
        # see: HTTPServer#run
        req.parse(NullReader) rescue nil
      end

      begin
        while fds = IO::select([ua, os])
          if fds[0].member?(ua)
            buf = ua.readpartial(1024);
            @logger.debug("CONNECT: #{buf.bytesize} byte from User-Agent")
            os.write(buf)
          elsif fds[0].member?(os)
            buf = os.readpartial(1024);
            @logger.debug("CONNECT: #{buf.bytesize} byte from #{host}:#{port}")
            ua.write(buf)
          end
        end
      rescue
        os.close
        @logger.debug("CONNECT #{host}:#{port}: closed")
      end

      raise HTTPStatus::EOFError
    end

    def do_GET(req, res)
      perform_proxy_request(req, res, Net::HTTP::Get)
    end

    def do_HEAD(req, res)
      perform_proxy_request(req, res, Net::HTTP::Head)
    end

    def do_POST(req, res)
      perform_proxy_request(req, res, Net::HTTP::Post, req.body_reader)
    end

    def do_OPTIONS(req, res)
      res['allow'] = "GET,HEAD,POST,OPTIONS,CONNECT"
    end

    private

    # Some header fields should not be transferred.
    HopByHop = %w( connection keep-alive proxy-authenticate upgrade
                   proxy-authorization te trailers transfer-encoding )
    ShouldNotTransfer = %w( set-cookie proxy-connection )
    def split_field(f) f ? f.split(/,\s+/).collect{|i| i.downcase } : [] end

    def choose_header(src, dst)
      connections = split_field(src['connection'])
      src.each{|key, value|
        key = key.downcase
        if HopByHop.member?(key)          || # RFC2616: 13.5.1
           connections.member?(key)       || # RFC2616: 14.10
           ShouldNotTransfer.member?(key)    # pragmatics
          @logger.debug("choose_header: `#{key}: #{value}'")
          next
        end
        dst[key] = value
      }
    end

    # Net::HTTP is stupid about the multiple header fields.
    # Here is workaround:
    def set_cookie(src, dst)
      if str = src['set-cookie']
        cookies = []
        str.split(/,\s*/).each{|token|
          if /^[^=]+;/o =~ token
            cookies[-1] << ", " << token
          elsif /=/o =~ token
            cookies << token
          else
            cookies[-1] << ", " << token
          end
        }
        dst.cookies.replace(cookies)
      end
    end

    def set_via(h)
      if @config[:ProxyVia]
        if  h['via']
          h['via'] << ", " << @via
        else
          h['via'] = @via
        end
      end
    end

    def setup_proxy_header(req, res)
      # Choose header fields to transfer
      header = Hash.new
      choose_header(req, header)
      set_via(header)
      return header
    end

    def setup_upstream_proxy_authentication(req, res, header)
      if upstream = proxy_uri(req, res)
        if upstream.userinfo
          header['proxy-authorization'] =
            "Basic " + [upstream.userinfo].pack("m0")
        end
        return upstream
      end
      return FakeProxyURI
    end

    def perform_proxy_request(req, res, req_class, body_stream = nil)
      uri = req.request_uri
      path = uri.path.dup
      path << "?" << uri.query if uri.query
      header = setup_proxy_header(req, res)
      upstream = setup_upstream_proxy_authentication(req, res, header)

      body_tmp = []
      http = Net::HTTP.new(uri.host, uri.port, upstream.host, upstream.port)
      req_fib = Fiber.new do
        http.start do
          if @config[:ProxyTimeout]
            ##################################   these issues are
            http.open_timeout = 30   # secs  #   necessary (maybe because
            http.read_timeout = 60   # secs  #   Ruby's bug, but why?)
            ##################################
          end
          if body_stream && req['transfer-encoding'] =~ /\bchunked\b/i
            header['Transfer-Encoding'] = 'chunked'
          end
          http_req = req_class.new(path, header)
          http_req.body_stream = body_stream if body_stream
          http.request(http_req) do |response|
            # Persistent connection requirements are mysterious for me.
            # So I will close the connection in every response.
            res['proxy-connection'] = "close"
            res['connection'] = "close"

            # stream Net::HTTP::HTTPResponse to WEBrick::HTTPResponse
            res.status = response.code.to_i
            res.chunked = response.chunked?
            choose_header(response, res)
            set_cookie(response, res)
            set_via(res)
            response.read_body do |buf|
              body_tmp << buf
              Fiber.yield # wait for res.body Proc#call
            end
          end # http.request
        end
      end
      req_fib.resume # read HTTP response headers and first chunk of the body
      res.body = ->(socket) do
        while buf = body_tmp.shift
          socket.write(buf)
          buf.clear
          req_fib.resume # continue response.read_body
        end
      end
    end
    # :stopdoc:
  end
end
PKGH[
[�jj!share/ruby/webrick/httpversion.rbnu�[���# frozen_string_literal: false
#--
# HTTPVersion.rb -- presentation of HTTP version
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpversion.rb,v 1.5 2002/09/21 12:23:37 gotoyuzo Exp $

module WEBrick

  ##
  # Represents an HTTP protocol version

  class HTTPVersion
    include Comparable

    ##
    # The major protocol version number

    attr_accessor :major

    ##
    # The minor protocol version number

    attr_accessor :minor

    ##
    # Converts +version+ into an HTTPVersion

    def self.convert(version)
      version.is_a?(self) ? version : new(version)
    end

    ##
    # Creates a new HTTPVersion from +version+.

    def initialize(version)
      case version
      when HTTPVersion
        @major, @minor = version.major, version.minor
      when String
        if /^(\d+)\.(\d+)$/ =~ version
          @major, @minor = $1.to_i, $2.to_i
        end
      end
      if @major.nil? || @minor.nil?
        raise ArgumentError,
          format("cannot convert %s into %s", version.class, self.class)
      end
    end

    ##
    # Compares this version with +other+ according to the HTTP specification
    # rules.

    def <=>(other)
      unless other.is_a?(self.class)
        other = self.class.new(other)
      end
      if (ret = @major <=> other.major) == 0
        return @minor <=> other.minor
      end
      return ret
    end

    ##
    # The HTTP version as show in the HTTP request and response.  For example,
    # "1.1"

    def to_s
      format("%d.%d", @major, @minor)
    end
  end
end
PKGH[���%��share/ruby/webrick/config.rbnu�[���# frozen_string_literal: false
#
# config.rb -- Default configurations.
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: config.rb,v 1.52 2003/07/22 19:20:42 gotoyuzo Exp $

require_relative 'version'
require_relative 'httpversion'
require_relative 'httputils'
require_relative 'utils'
require_relative 'log'

module WEBrick
  module Config
    LIBDIR = File::dirname(__FILE__) # :nodoc:

    # for GenericServer
    General = Hash.new { |hash, key|
      case key
      when :ServerName
        hash[key] = Utils.getservername
      else
        nil
      end
    }.update(
      :BindAddress    => nil,   # "0.0.0.0" or "::" or nil
      :Port           => nil,   # users MUST specify this!!
      :MaxClients     => 100,   # maximum number of the concurrent connections
      :ServerType     => nil,   # default: WEBrick::SimpleServer
      :Logger         => nil,   # default: WEBrick::Log.new
      :ServerSoftware => "WEBrick/#{WEBrick::VERSION} " +
                         "(Ruby/#{RUBY_VERSION}/#{RUBY_RELEASE_DATE})",
      :TempDir        => ENV['TMPDIR']||ENV['TMP']||ENV['TEMP']||'/tmp',
      :DoNotListen    => false,
      :StartCallback  => nil,
      :StopCallback   => nil,
      :AcceptCallback => nil,
      :DoNotReverseLookup => true,
      :ShutdownSocketWithoutClose => false,
    )

    # for HTTPServer, HTTPRequest, HTTPResponse ...
    HTTP = General.dup.update(
      :Port           => 80,
      :RequestTimeout => 30,
      :HTTPVersion    => HTTPVersion.new("1.1"),
      :AccessLog      => nil,
      :MimeTypes      => HTTPUtils::DefaultMimeTypes,
      :DirectoryIndex => ["index.html","index.htm","index.cgi","index.rhtml"],
      :DocumentRoot   => nil,
      :DocumentRootOptions => { :FancyIndexing => true },
      :RequestCallback => nil,
      :ServerAlias    => nil,
      :InputBufferSize  => 65536, # input buffer size in reading request body
      :OutputBufferSize => 65536, # output buffer size in sending File or IO

      # for HTTPProxyServer
      :ProxyAuthProc  => nil,
      :ProxyContentHandler => nil,
      :ProxyVia       => true,
      :ProxyTimeout   => true,
      :ProxyURI       => nil,

      :CGIInterpreter => nil,
      :CGIPathEnv     => nil,

      # workaround: if Request-URIs contain 8bit chars,
      # they should be escaped before calling of URI::parse().
      :Escape8bitURI  => false
    )

    ##
    # Default configuration for WEBrick::HTTPServlet::FileHandler
    #
    # :AcceptableLanguages::
    #   Array of languages allowed for accept-language.  There is no default
    # :DirectoryCallback::
    #   Allows preprocessing of directory requests.  There is no default
    #   callback.
    # :FancyIndexing::
    #   If true, show an index for directories.  The default is true.
    # :FileCallback::
    #   Allows preprocessing of file requests.  There is no default callback.
    # :HandlerCallback::
    #   Allows preprocessing of requests.  There is no default callback.
    # :HandlerTable::
    #   Maps file suffixes to file handlers.  DefaultFileHandler is used by
    #   default but any servlet can be used.
    # :NondisclosureName::
    #   Do not show files matching this array of globs.  .ht* and *~ are
    #   excluded by default.
    # :UserDir::
    #   Directory inside ~user to serve content from for /~user requests.
    #   Only works if mounted on /.  Disabled by default.

    FileHandler = {
      :NondisclosureName => [".ht*", "*~"],
      :FancyIndexing     => false,
      :HandlerTable      => {},
      :HandlerCallback   => nil,
      :DirectoryCallback => nil,
      :FileCallback      => nil,
      :UserDir           => nil,  # e.g. "public_html"
      :AcceptableLanguages => []  # ["en", "ja", ... ]
    }

    ##
    # Default configuration for WEBrick::HTTPAuth::BasicAuth
    #
    # :AutoReloadUserDB:: Reload the user database provided by :UserDB
    #                     automatically?

    BasicAuth = {
      :AutoReloadUserDB     => true,
    }

    ##
    # Default configuration for WEBrick::HTTPAuth::DigestAuth.
    #
    # :Algorithm:: MD5, MD5-sess (default), SHA1, SHA1-sess
    # :Domain:: An Array of URIs that define the protected space
    # :Qop:: 'auth' for authentication, 'auth-int' for integrity protection or
    #        both
    # :UseOpaque:: Should the server send opaque values to the client?  This
    #              helps prevent replay attacks.
    # :CheckNc:: Should the server check the nonce count?  This helps the
    #            server detect replay attacks.
    # :UseAuthenticationInfoHeader:: Should the server send an
    #                                AuthenticationInfo header?
    # :AutoReloadUserDB:: Reload the user database provided by :UserDB
    #                     automatically?
    # :NonceExpirePeriod:: How long should we store used nonces?  Default is
    #                      30 minutes.
    # :NonceExpireDelta:: How long is a nonce valid?  Default is 1 minute
    # :InternetExplorerHack:: Hack which allows Internet Explorer to work.
    # :OperaHack:: Hack which allows Opera to work.

    DigestAuth = {
      :Algorithm            => 'MD5-sess', # or 'MD5'
      :Domain               => nil,        # an array includes domain names.
      :Qop                  => [ 'auth' ], # 'auth' or 'auth-int' or both.
      :UseOpaque            => true,
      :UseNextNonce         => false,
      :CheckNc              => false,
      :UseAuthenticationInfoHeader => true,
      :AutoReloadUserDB     => true,
      :NonceExpirePeriod    => 30*60,
      :NonceExpireDelta     => 60,
      :InternetExplorerHack => true,
      :OperaHack            => true,
    }
  end
end
PKGH[�[����!share/ruby/webrick/httpservlet.rbnu�[���# frozen_string_literal: false
#
# httpservlet.rb -- HTTPServlet Utility File
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpservlet.rb,v 1.21 2003/02/23 12:24:46 gotoyuzo Exp $

require_relative 'httpservlet/abstract'
require_relative 'httpservlet/filehandler'
require_relative 'httpservlet/cgihandler'
require_relative 'httpservlet/erbhandler'
require_relative 'httpservlet/prochandler'

module WEBrick
  module HTTPServlet
    FileHandler.add_handler("cgi", CGIHandler)
    FileHandler.add_handler("rhtml", ERBHandler)
  end
end
PKGH[�3	��share/ruby/webrick/compat.rbnu�[���# frozen_string_literal: false
#
# compat.rb -- cross platform compatibility
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2002 GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $

##
# System call error module used by webrick for cross platform compatibility.
#
# EPROTO:: protocol error
# ECONNRESET:: remote host reset the connection request
# ECONNABORTED:: Client sent TCP reset (RST) before server has accepted the
#                connection requested by client.
#
module Errno
  ##
  # Protocol error.

  class EPROTO       < SystemCallError; end

  ##
  # Remote host reset the connection request.

  class ECONNRESET   < SystemCallError; end

  ##
  # Client sent TCP reset (RST) before server has accepted the connection
  # requested by client.

  class ECONNABORTED < SystemCallError; end
end
PKGH[��M{TTshare/ruby/webrick/accesslog.rbnu�[���# frozen_string_literal: false
#--
# accesslog.rb -- Access log handling utilities
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2002 keita yamaguchi
# Copyright (c) 2002 Internet Programming with Ruby writers
#
# $IPR: accesslog.rb,v 1.1 2002/10/01 17:16:32 gotoyuzo Exp $

module WEBrick

  ##
  # AccessLog provides logging to various files in various formats.
  #
  # Multiple logs may be written to at the same time:
  #
  #   access_log = [
  #     [$stderr, WEBrick::AccessLog::COMMON_LOG_FORMAT],
  #     [$stderr, WEBrick::AccessLog::REFERER_LOG_FORMAT],
  #   ]
  #
  #   server = WEBrick::HTTPServer.new :AccessLog => access_log
  #
  # Custom log formats may be defined.  WEBrick::AccessLog provides a subset
  # of the formatting from Apache's mod_log_config
  # http://httpd.apache.org/docs/mod/mod_log_config.html#formats.  See
  # AccessLog::setup_params for a list of supported options

  module AccessLog

    ##
    # Raised if a parameter such as %e, %i, %o or %n is used without fetching
    # a specific field.

    class AccessLogError < StandardError; end

    ##
    # The Common Log Format's time format

    CLF_TIME_FORMAT     = "[%d/%b/%Y:%H:%M:%S %Z]"

    ##
    # Common Log Format

    COMMON_LOG_FORMAT   = "%h %l %u %t \"%r\" %s %b"

    ##
    # Short alias for Common Log Format

    CLF                 = COMMON_LOG_FORMAT

    ##
    # Referer Log Format

    REFERER_LOG_FORMAT  = "%{Referer}i -> %U"

    ##
    # User-Agent Log Format

    AGENT_LOG_FORMAT    = "%{User-Agent}i"

    ##
    # Combined Log Format

    COMBINED_LOG_FORMAT = "#{CLF} \"%{Referer}i\" \"%{User-agent}i\""

    module_function

    # This format specification is a subset of mod_log_config of Apache:
    #
    # %a:: Remote IP address
    # %b:: Total response size
    # %e{variable}:: Given variable in ENV
    # %f:: Response filename
    # %h:: Remote host name
    # %{header}i:: Given request header
    # %l:: Remote logname, always "-"
    # %m:: Request method
    # %{attr}n:: Given request attribute from <tt>req.attributes</tt>
    # %{header}o:: Given response header
    # %p:: Server's request port
    # %{format}p:: The canonical port of the server serving the request or the
    #              actual port or the client's actual port.  Valid formats are
    #              canonical, local or remote.
    # %q:: Request query string
    # %r:: First line of the request
    # %s:: Request status
    # %t:: Time the request was received
    # %T:: Time taken to process the request
    # %u:: Remote user from auth
    # %U:: Unparsed URI
    # %%:: Literal %

    def setup_params(config, req, res)
      params = Hash.new("")
      params["a"] = req.peeraddr[3]
      params["b"] = res.sent_size
      params["e"] = ENV
      params["f"] = res.filename || ""
      params["h"] = req.peeraddr[2]
      params["i"] = req
      params["l"] = "-"
      params["m"] = req.request_method
      params["n"] = req.attributes
      params["o"] = res
      params["p"] = req.port
      params["q"] = req.query_string
      params["r"] = req.request_line.sub(/\x0d?\x0a\z/o, '')
      params["s"] = res.status       # won't support "%>s"
      params["t"] = req.request_time
      params["T"] = Time.now - req.request_time
      params["u"] = req.user || "-"
      params["U"] = req.unparsed_uri
      params["v"] = config[:ServerName]
      params
    end

    ##
    # Formats +params+ according to +format_string+ which is described in
    # setup_params.

    def format(format_string, params)
      format_string.gsub(/\%(?:\{(.*?)\})?>?([a-zA-Z%])/){
         param, spec = $1, $2
         case spec[0]
         when ?e, ?i, ?n, ?o
           raise AccessLogError,
             "parameter is required for \"#{spec}\"" unless param
           (param = params[spec][param]) ? escape(param) : "-"
         when ?t
           params[spec].strftime(param || CLF_TIME_FORMAT)
         when ?p
           case param
           when 'remote'
             escape(params["i"].peeraddr[1].to_s)
           else
             escape(params["p"].to_s)
           end
         when ?%
           "%"
         else
           escape(params[spec].to_s)
         end
      }
    end

    ##
    # Escapes control characters in +data+

    def escape(data)
      data = data.gsub(/[[:cntrl:]\\]+/) {$&.dump[1...-1]}
      data.untaint if RUBY_VERSION < '2.7'
      data
    end
  end
end
PKGH[P���  share/ruby/webrick/cgi.rbnu�[���# frozen_string_literal: false
#
# cgi.rb -- Yet another CGI library
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $Id$

require_relative "httprequest"
require_relative "httpresponse"
require_relative "config"
require "stringio"

module WEBrick

  # A CGI library using WEBrick requests and responses.
  #
  # Example:
  #
  #   class MyCGI < WEBrick::CGI
  #     def do_GET req, res
  #       res.body = 'it worked!'
  #       res.status = 200
  #     end
  #   end
  #
  #   MyCGI.new.start

  class CGI

    # The CGI error exception class

    CGIError = Class.new(StandardError)

    ##
    # The CGI configuration.  This is based on WEBrick::Config::HTTP

    attr_reader :config

    ##
    # The CGI logger

    attr_reader :logger

    ##
    # Creates a new CGI interface.
    #
    # The first argument in +args+ is a configuration hash which would update
    # WEBrick::Config::HTTP.
    #
    # Any remaining arguments are stored in the <code>@options</code> instance
    # variable for use by a subclass.

    def initialize(*args)
      if defined?(MOD_RUBY)
        unless ENV.has_key?("GATEWAY_INTERFACE")
          Apache.request.setup_cgi_env
        end
      end
      if %r{HTTP/(\d+\.\d+)} =~ ENV["SERVER_PROTOCOL"]
        httpv = $1
      end
      @config = WEBrick::Config::HTTP.dup.update(
        :ServerSoftware => ENV["SERVER_SOFTWARE"] || "null",
        :HTTPVersion    => HTTPVersion.new(httpv || "1.0"),
        :RunOnCGI       => true,   # to detect if it runs on CGI.
        :NPH            => false   # set true to run as NPH script.
      )
      if config = args.shift
        @config.update(config)
      end
      @config[:Logger] ||= WEBrick::BasicLog.new($stderr)
      @logger = @config[:Logger]
      @options = args
    end

    ##
    # Reads +key+ from the configuration

    def [](key)
      @config[key]
    end

    ##
    # Starts the CGI process with the given environment +env+ and standard
    # input and output +stdin+ and +stdout+.

    def start(env=ENV, stdin=$stdin, stdout=$stdout)
      sock = WEBrick::CGI::Socket.new(@config, env, stdin, stdout)
      req = HTTPRequest.new(@config)
      res = HTTPResponse.new(@config)
      unless @config[:NPH] or defined?(MOD_RUBY)
        def res.setup_header
          unless @header["status"]
            phrase = HTTPStatus::reason_phrase(@status)
            @header["status"] = "#{@status} #{phrase}"
          end
          super
        end
        def res.status_line
          ""
        end
      end

      begin
        req.parse(sock)
        req.script_name = (env["SCRIPT_NAME"] || File.expand_path($0)).dup
        req.path_info = (env["PATH_INFO"] || "").dup
        req.query_string = env["QUERY_STRING"]
        req.user = env["REMOTE_USER"]
        res.request_method = req.request_method
        res.request_uri = req.request_uri
        res.request_http_version = req.http_version
        res.keep_alive = req.keep_alive?
        self.service(req, res)
      rescue HTTPStatus::Error => ex
        res.set_error(ex)
      rescue HTTPStatus::Status => ex
        res.status = ex.code
      rescue Exception => ex
        @logger.error(ex)
        res.set_error(ex, true)
      ensure
        req.fixup
        if defined?(MOD_RUBY)
          res.setup_header
          Apache.request.status_line = "#{res.status} #{res.reason_phrase}"
          Apache.request.status = res.status
          table = Apache.request.headers_out
          res.header.each{|key, val|
            case key
            when /^content-encoding$/i
              Apache::request.content_encoding = val
            when /^content-type$/i
              Apache::request.content_type = val
            else
              table[key] = val.to_s
            end
          }
          res.cookies.each{|cookie|
            table.add("Set-Cookie", cookie.to_s)
          }
          Apache.request.send_http_header
          res.send_body(sock)
        else
          res.send_response(sock)
        end
      end
    end

    ##
    # Services the request +req+ which will fill in the response +res+.  See
    # WEBrick::HTTPServlet::AbstractServlet#service for details.

    def service(req, res)
      method_name = "do_" + req.request_method.gsub(/-/, "_")
      if respond_to?(method_name)
        __send__(method_name, req, res)
      else
        raise HTTPStatus::MethodNotAllowed,
              "unsupported method `#{req.request_method}'."
      end
    end

    ##
    # Provides HTTP socket emulation from the CGI environment

    class Socket # :nodoc:
      include Enumerable

      private

      def initialize(config, env, stdin, stdout)
        @config = config
        @env = env
        @header_part = StringIO.new
        @body_part = stdin
        @out_port = stdout
        @out_port.binmode

        @server_addr = @env["SERVER_ADDR"] || "0.0.0.0"
        @server_name = @env["SERVER_NAME"]
        @server_port = @env["SERVER_PORT"]
        @remote_addr = @env["REMOTE_ADDR"]
        @remote_host = @env["REMOTE_HOST"] || @remote_addr
        @remote_port = @env["REMOTE_PORT"] || 0

        begin
          @header_part << request_line << CRLF
          setup_header
          @header_part << CRLF
          @header_part.rewind
        rescue Exception
          raise CGIError, "invalid CGI environment"
        end
      end

      def request_line
        meth = @env["REQUEST_METHOD"] || "GET"
        unless url = @env["REQUEST_URI"]
          url = (@env["SCRIPT_NAME"] || File.expand_path($0)).dup
          url << @env["PATH_INFO"].to_s
          url = WEBrick::HTTPUtils.escape_path(url)
          if query_string = @env["QUERY_STRING"]
            unless query_string.empty?
              url << "?" << query_string
            end
          end
        end
        # we cannot get real HTTP version of client ;)
        httpv = @config[:HTTPVersion]
        return "#{meth} #{url} HTTP/#{httpv}"
      end

      def setup_header
        @env.each{|key, value|
          case key
          when "CONTENT_TYPE", "CONTENT_LENGTH"
            add_header(key.gsub(/_/, "-"), value)
          when /^HTTP_(.*)/
            add_header($1.gsub(/_/, "-"), value)
          end
        }
      end

      def add_header(hdrname, value)
        unless value.empty?
          @header_part << hdrname << ": " << value << CRLF
        end
      end

      def input
        @header_part.eof? ? @body_part : @header_part
      end

      public

      def peeraddr
        [nil, @remote_port, @remote_host, @remote_addr]
      end

      def addr
        [nil, @server_port, @server_name, @server_addr]
      end

      def gets(eol=LF, size=nil)
        input.gets(eol, size)
      end

      def read(size=nil)
        input.read(size)
      end

      def each
        input.each{|line| yield(line) }
      end

      def eof?
        input.eof?
      end

      def <<(data)
        @out_port << data
      end

      def write(data)
        @out_port.write(data)
      end

      def cert
        return nil unless defined?(OpenSSL)
        if pem = @env["SSL_SERVER_CERT"]
          OpenSSL::X509::Certificate.new(pem) unless pem.empty?
        end
      end

      def peer_cert
        return nil unless defined?(OpenSSL)
        if pem = @env["SSL_CLIENT_CERT"]
          OpenSSL::X509::Certificate.new(pem) unless pem.empty?
        end
      end

      def peer_cert_chain
        return nil unless defined?(OpenSSL)
        if @env["SSL_CLIENT_CERT_CHAIN_0"]
          keys = @env.keys
          certs = keys.sort.collect{|k|
            if /^SSL_CLIENT_CERT_CHAIN_\d+$/ =~ k
              if pem = @env[k]
                OpenSSL::X509::Certificate.new(pem) unless pem.empty?
              end
            end
          }
          certs.compact
        end
      end

      def cipher
        return nil unless defined?(OpenSSL)
        if cipher = @env["SSL_CIPHER"]
          ret = [ cipher ]
          ret << @env["SSL_PROTOCOL"]
          ret << @env["SSL_CIPHER_USEKEYSIZE"]
          ret << @env["SSL_CIPHER_ALGKEYSIZE"]
          ret
        end
      end
    end
  end
end
PKGH[�����share/ruby/webrick/utils.rbnu�[���# frozen_string_literal: false
#
# utils.rb -- Miscellaneous utilities
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: utils.rb,v 1.10 2003/02/16 22:22:54 gotoyuzo Exp $

require 'socket'
require 'io/nonblock'
require 'etc'

module WEBrick
  module Utils
    ##
    # Sets IO operations on +io+ to be non-blocking
    def set_non_blocking(io)
      io.nonblock = true if io.respond_to?(:nonblock=)
    end
    module_function :set_non_blocking

    ##
    # Sets the close on exec flag for +io+
    def set_close_on_exec(io)
      io.close_on_exec = true if io.respond_to?(:close_on_exec=)
    end
    module_function :set_close_on_exec

    ##
    # Changes the process's uid and gid to the ones of +user+
    def su(user)
      if pw = Etc.getpwnam(user)
        Process::initgroups(user, pw.gid)
        Process::Sys::setgid(pw.gid)
        Process::Sys::setuid(pw.uid)
      else
        warn("WEBrick::Utils::su doesn't work on this platform", uplevel: 1)
      end
    end
    module_function :su

    ##
    # The server hostname
    def getservername
      host = Socket::gethostname
      begin
        Socket::gethostbyname(host)[0]
      rescue
        host
      end
    end
    module_function :getservername

    ##
    # Creates TCP server sockets bound to +address+:+port+ and returns them.
    #
    # It will create IPV4 and IPV6 sockets on all interfaces.
    def create_listeners(address, port)
      unless port
        raise ArgumentError, "must specify port"
      end
      sockets = Socket.tcp_server_sockets(address, port)
      sockets = sockets.map {|s|
        s.autoclose = false
        ts = TCPServer.for_fd(s.fileno)
        s.close
        ts
      }
      return sockets
    end
    module_function :create_listeners

    ##
    # Characters used to generate random strings
    RAND_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
                 "0123456789" +
                 "abcdefghijklmnopqrstuvwxyz"

    ##
    # Generates a random string of length +len+
    def random_string(len)
      rand_max = RAND_CHARS.bytesize
      ret = ""
      len.times{ ret << RAND_CHARS[rand(rand_max)] }
      ret
    end
    module_function :random_string

    ###########

    require "timeout"
    require "singleton"

    ##
    # Class used to manage timeout handlers across multiple threads.
    #
    # Timeout handlers should be managed by using the class methods which are
    # synchronized.
    #
    #   id = TimeoutHandler.register(10, Timeout::Error)
    #   begin
    #     sleep 20
    #     puts 'foo'
    #   ensure
    #     TimeoutHandler.cancel(id)
    #   end
    #
    # will raise Timeout::Error
    #
    #   id = TimeoutHandler.register(10, Timeout::Error)
    #   begin
    #     sleep 5
    #     puts 'foo'
    #   ensure
    #     TimeoutHandler.cancel(id)
    #   end
    #
    # will print 'foo'
    #
    class TimeoutHandler
      include Singleton

      ##
      # Mutex used to synchronize access across threads
      TimeoutMutex = Thread::Mutex.new # :nodoc:

      ##
      # Registers a new timeout handler
      #
      # +time+:: Timeout in seconds
      # +exception+:: Exception to raise when timeout elapsed
      def TimeoutHandler.register(seconds, exception)
        at = Process.clock_gettime(Process::CLOCK_MONOTONIC) + seconds
        instance.register(Thread.current, at, exception)
      end

      ##
      # Cancels the timeout handler +id+
      def TimeoutHandler.cancel(id)
        instance.cancel(Thread.current, id)
      end

      def self.terminate
        instance.terminate
      end

      ##
      # Creates a new TimeoutHandler.  You should use ::register and ::cancel
      # instead of creating the timeout handler directly.
      def initialize
        TimeoutMutex.synchronize{
          @timeout_info = Hash.new
        }
        @queue = Thread::Queue.new
        @watcher = nil
      end

      # :nodoc:
      private \
        def watch
          to_interrupt = []
          while true
            now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
            wakeup = nil
            to_interrupt.clear
            TimeoutMutex.synchronize{
              @timeout_info.each {|thread, ary|
                next unless ary
                ary.each{|info|
                  time, exception = *info
                  if time < now
                    to_interrupt.push [thread, info.object_id, exception]
                  elsif !wakeup || time < wakeup
                    wakeup = time
                  end
                }
              }
            }
            to_interrupt.each {|arg| interrupt(*arg)}
            if !wakeup
              @queue.pop
            elsif (wakeup -= now) > 0
              begin
                (th = Thread.start {@queue.pop}).join(wakeup)
              ensure
                th&.kill&.join
              end
            end
            @queue.clear
          end
        end

      # :nodoc:
      private \
        def watcher
          (w = @watcher)&.alive? and return w # usual case
          TimeoutMutex.synchronize{
            (w = @watcher)&.alive? and next w # pathological check
            @watcher = Thread.start(&method(:watch))
          }
        end

      ##
      # Interrupts the timeout handler +id+ and raises +exception+
      def interrupt(thread, id, exception)
        if cancel(thread, id) && thread.alive?
          thread.raise(exception, "execution timeout")
        end
      end

      ##
      # Registers a new timeout handler
      #
      # +time+:: Timeout in seconds
      # +exception+:: Exception to raise when timeout elapsed
      def register(thread, time, exception)
        info = nil
        TimeoutMutex.synchronize{
          (@timeout_info[thread] ||= []) << (info = [time, exception])
        }
        @queue.push nil
        watcher
        return info.object_id
      end

      ##
      # Cancels the timeout handler +id+
      def cancel(thread, id)
        TimeoutMutex.synchronize{
          if ary = @timeout_info[thread]
            ary.delete_if{|info| info.object_id == id }
            if ary.empty?
              @timeout_info.delete(thread)
            end
            return true
          end
          return false
        }
      end

      ##
      def terminate
        TimeoutMutex.synchronize{
          @timeout_info.clear
          @watcher&.kill&.join
        }
      end
    end

    ##
    # Executes the passed block and raises +exception+ if execution takes more
    # than +seconds+.
    #
    # If +seconds+ is zero or nil, simply executes the block
    def timeout(seconds, exception=Timeout::Error)
      return yield if seconds.nil? or seconds.zero?
      # raise ThreadError, "timeout within critical session" if Thread.critical
      id = TimeoutHandler.register(seconds, exception)
      begin
        yield(seconds)
      ensure
        TimeoutHandler.cancel(id)
      end
    end
    module_function :timeout
  end
end
PKGH[v��MMshare/ruby/webrick/https.rbnu�[���# frozen_string_literal: false
#
# https.rb -- SSL/TLS enhancement for HTTPServer
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: https.rb,v 1.15 2003/07/22 19:20:42 gotoyuzo Exp $

require_relative 'ssl'
require_relative 'httpserver'

module WEBrick
  module Config
    HTTP.update(SSL)
  end

  ##
  #--
  # Adds SSL functionality to WEBrick::HTTPRequest

  class HTTPRequest

    ##
    # HTTP request SSL cipher

    attr_reader :cipher

    ##
    # HTTP request server certificate

    attr_reader :server_cert

    ##
    # HTTP request client certificate

    attr_reader :client_cert

    # :stopdoc:

    alias orig_parse parse

    def parse(socket=nil)
      if socket.respond_to?(:cert)
        @server_cert = socket.cert || @config[:SSLCertificate]
        @client_cert = socket.peer_cert
        @client_cert_chain = socket.peer_cert_chain
        @cipher      = socket.cipher
      end
      orig_parse(socket)
    end

    alias orig_parse_uri parse_uri

    def parse_uri(str, scheme="https")
      if server_cert
        return orig_parse_uri(str, scheme)
      end
      return orig_parse_uri(str)
    end
    private :parse_uri

    alias orig_meta_vars meta_vars

    def meta_vars
      meta = orig_meta_vars
      if server_cert
        meta["HTTPS"] = "on"
        meta["SSL_SERVER_CERT"] = @server_cert.to_pem
        meta["SSL_CLIENT_CERT"] = @client_cert ? @client_cert.to_pem : ""
        if @client_cert_chain
          @client_cert_chain.each_with_index{|cert, i|
            meta["SSL_CLIENT_CERT_CHAIN_#{i}"] = cert.to_pem
          }
        end
        meta["SSL_CIPHER"] = @cipher[0]
        meta["SSL_PROTOCOL"] = @cipher[1]
        meta["SSL_CIPHER_USEKEYSIZE"] = @cipher[2].to_s
        meta["SSL_CIPHER_ALGKEYSIZE"] = @cipher[3].to_s
      end
      meta
    end

    # :startdoc:
  end

  ##
  #--
  # Fake WEBrick::HTTPRequest for lookup_server

  class SNIRequest

    ##
    # The SNI hostname

    attr_reader :host

    ##
    # The socket address of the server

    attr_reader :addr

    ##
    # The port this request is for

    attr_reader :port

    ##
    # Creates a new SNIRequest.

    def initialize(sslsocket, hostname)
      @host = hostname
      @addr = sslsocket.addr
      @port = @addr[1]
    end
  end


  ##
  #--
  # Adds SSL functionality to WEBrick::HTTPServer

  class HTTPServer < ::WEBrick::GenericServer
    ##
    # ServerNameIndication callback

    def ssl_servername_callback(sslsocket, hostname = nil)
      req = SNIRequest.new(sslsocket, hostname)
      server = lookup_server(req)
      server ? server.ssl_context : nil
    end

    # :stopdoc:

    ##
    # Check whether +server+ is also SSL server.
    # Also +server+'s SSL context will be created.

    alias orig_virtual_host virtual_host

    def virtual_host(server)
      if @config[:SSLEnable] && !server.ssl_context
        raise ArgumentError, "virtual host must set SSLEnable to true"
      end
      orig_virtual_host(server)
    end

    # :startdoc:
  end
end
PKGH[�{����share/ruby/webrick/version.rbnu�[���# frozen_string_literal: false
#--
# version.rb -- version and release date
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: version.rb,v 1.74 2003/07/22 19:20:43 gotoyuzo Exp $

module WEBrick

  ##
  # The WEBrick version

  VERSION      = "1.6.1"
end
PKGH[���0(0(share/ruby/webrick/server.rbnu�[���# frozen_string_literal: false
#
# server.rb -- GenericServer Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: server.rb,v 1.62 2003/07/22 19:20:43 gotoyuzo Exp $

require 'socket'
require_relative 'config'
require_relative 'log'

module WEBrick

  ##
  # Server error exception

  class ServerError < StandardError; end

  ##
  # Base server class

  class SimpleServer

    ##
    # A SimpleServer only yields when you start it

    def SimpleServer.start
      yield
    end
  end

  ##
  # A generic module for daemonizing a process

  class Daemon

    ##
    # Performs the standard operations for daemonizing a process.  Runs a
    # block, if given.

    def Daemon.start
      Process.daemon
      File.umask(0)
      yield if block_given?
    end
  end

  ##
  # Base TCP server class.  You must subclass GenericServer and provide a #run
  # method.

  class GenericServer

    ##
    # The server status.  One of :Stop, :Running or :Shutdown

    attr_reader :status

    ##
    # The server configuration

    attr_reader :config

    ##
    # The server logger.  This is independent from the HTTP access log.

    attr_reader :logger

    ##
    # Tokens control the number of outstanding clients.  The
    # <code>:MaxClients</code> configuration sets this.

    attr_reader :tokens

    ##
    # Sockets listening for connections.

    attr_reader :listeners

    ##
    # Creates a new generic server from +config+.  The default configuration
    # comes from +default+.

    def initialize(config={}, default=Config::General)
      @config = default.dup.update(config)
      @status = :Stop
      @config[:Logger] ||= Log::new
      @logger = @config[:Logger]

      @tokens = Thread::SizedQueue.new(@config[:MaxClients])
      @config[:MaxClients].times{ @tokens.push(nil) }

      webrickv = WEBrick::VERSION
      rubyv = "#{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
      @logger.info("WEBrick #{webrickv}")
      @logger.info("ruby #{rubyv}")

      @listeners = []
      @shutdown_pipe = nil
      unless @config[:DoNotListen]
        if @config[:Listen]
          warn(":Listen option is deprecated; use GenericServer#listen", uplevel: 1)
        end
        listen(@config[:BindAddress], @config[:Port])
        if @config[:Port] == 0
          @config[:Port] = @listeners[0].addr[1]
        end
      end
    end

    ##
    # Retrieves +key+ from the configuration

    def [](key)
      @config[key]
    end

    ##
    # Adds listeners from +address+ and +port+ to the server.  See
    # WEBrick::Utils::create_listeners for details.

    def listen(address, port)
      @listeners += Utils::create_listeners(address, port)
    end

    ##
    # Starts the server and runs the +block+ for each connection.  This method
    # does not return until the server is stopped from a signal handler or
    # another thread using #stop or #shutdown.
    #
    # If the block raises a subclass of StandardError the exception is logged
    # and ignored.  If an IOError or Errno::EBADF exception is raised the
    # exception is ignored.  If an Exception subclass is raised the exception
    # is logged and re-raised which stops the server.
    #
    # To completely shut down a server call #shutdown from ensure:
    #
    #   server = WEBrick::GenericServer.new
    #   # or WEBrick::HTTPServer.new
    #
    #   begin
    #     server.start
    #   ensure
    #     server.shutdown
    #   end

    def start(&block)
      raise ServerError, "already started." if @status != :Stop
      server_type = @config[:ServerType] || SimpleServer

      setup_shutdown_pipe

      server_type.start{
        @logger.info \
          "#{self.class}#start: pid=#{$$} port=#{@config[:Port]}"
        @status = :Running
        call_callback(:StartCallback)

        shutdown_pipe = @shutdown_pipe

        thgroup = ThreadGroup.new
        begin
          while @status == :Running
            begin
              sp = shutdown_pipe[0]
              if svrs = IO.select([sp, *@listeners])
                if svrs[0].include? sp
                  # swallow shutdown pipe
                  buf = String.new
                  nil while String ===
                            sp.read_nonblock([sp.nread, 8].max, buf, exception: false)
                  break
                end
                svrs[0].each{|svr|
                  @tokens.pop          # blocks while no token is there.
                  if sock = accept_client(svr)
                    unless config[:DoNotReverseLookup].nil?
                      sock.do_not_reverse_lookup = !!config[:DoNotReverseLookup]
                    end
                    th = start_thread(sock, &block)
                    th[:WEBrickThread] = true
                    thgroup.add(th)
                  else
                    @tokens.push(nil)
                  end
                }
              end
            rescue Errno::EBADF, Errno::ENOTSOCK, IOError => ex
              # if the listening socket was closed in GenericServer#shutdown,
              # IO::select raise it.
            rescue StandardError => ex
              msg = "#{ex.class}: #{ex.message}\n\t#{ex.backtrace[0]}"
              @logger.error msg
            rescue Exception => ex
              @logger.fatal ex
              raise
            end
          end
        ensure
          cleanup_shutdown_pipe(shutdown_pipe)
          cleanup_listener
          @status = :Shutdown
          @logger.info "going to shutdown ..."
          thgroup.list.each{|th| th.join if th[:WEBrickThread] }
          call_callback(:StopCallback)
          @logger.info "#{self.class}#start done."
          @status = :Stop
        end
      }
    end

    ##
    # Stops the server from accepting new connections.

    def stop
      if @status == :Running
        @status = :Shutdown
      end

      alarm_shutdown_pipe {|f| f.write_nonblock("\0")}
    end

    ##
    # Shuts down the server and all listening sockets.  New listeners must be
    # provided to restart the server.

    def shutdown
      stop

      alarm_shutdown_pipe(&:close)
    end

    ##
    # You must subclass GenericServer and implement \#run which accepts a TCP
    # client socket

    def run(sock)
      @logger.fatal "run() must be provided by user."
    end

    private

    # :stopdoc:

    ##
    # Accepts a TCP client socket from the TCP server socket +svr+ and returns
    # the client socket.

    def accept_client(svr)
      case sock = svr.to_io.accept_nonblock(exception: false)
      when :wait_readable
        nil
      else
        if svr.respond_to?(:start_immediately)
          sock = OpenSSL::SSL::SSLSocket.new(sock, ssl_context)
          sock.sync_close = true
          # we cannot do OpenSSL::SSL::SSLSocket#accept here because
          # a slow client can prevent us from accepting connections
          # from other clients
        end
        sock
      end
    rescue Errno::ECONNRESET, Errno::ECONNABORTED,
           Errno::EPROTO, Errno::EINVAL
      nil
    rescue StandardError => ex
      msg = "#{ex.class}: #{ex.message}\n\t#{ex.backtrace[0]}"
      @logger.error msg
      nil
    end

    ##
    # Starts a server thread for the client socket +sock+ that runs the given
    # +block+.
    #
    # Sets the socket to the <code>:WEBrickSocket</code> thread local variable
    # in the thread.
    #
    # If any errors occur in the block they are logged and handled.

    def start_thread(sock, &block)
      Thread.start{
        begin
          Thread.current[:WEBrickSocket] = sock
          begin
            addr = sock.peeraddr
            @logger.debug "accept: #{addr[3]}:#{addr[1]}"
          rescue SocketError
            @logger.debug "accept: <address unknown>"
            raise
          end
          if sock.respond_to?(:sync_close=) && @config[:SSLStartImmediately]
            WEBrick::Utils.timeout(@config[:RequestTimeout]) do
              begin
                sock.accept # OpenSSL::SSL::SSLSocket#accept
              rescue Errno::ECONNRESET, Errno::ECONNABORTED,
                     Errno::EPROTO, Errno::EINVAL
                Thread.exit
              end
            end
          end
          call_callback(:AcceptCallback, sock)
          block ? block.call(sock) : run(sock)
        rescue Errno::ENOTCONN
          @logger.debug "Errno::ENOTCONN raised"
        rescue ServerError => ex
          msg = "#{ex.class}: #{ex.message}\n\t#{ex.backtrace[0]}"
          @logger.error msg
        rescue Exception => ex
          @logger.error ex
        ensure
          @tokens.push(nil)
          Thread.current[:WEBrickSocket] = nil
          if addr
            @logger.debug "close: #{addr[3]}:#{addr[1]}"
          else
            @logger.debug "close: <address unknown>"
          end
          sock.close
        end
      }
    end

    ##
    # Calls the callback +callback_name+ from the configuration with +args+

    def call_callback(callback_name, *args)
      @config[callback_name]&.call(*args)
    end

    def setup_shutdown_pipe
      return @shutdown_pipe ||= IO.pipe
    end

    def cleanup_shutdown_pipe(shutdown_pipe)
      @shutdown_pipe = nil
      shutdown_pipe&.each(&:close)
    end

    def alarm_shutdown_pipe
      _, pipe = @shutdown_pipe # another thread may modify @shutdown_pipe.
      if pipe
        if !pipe.closed?
          begin
            yield pipe
          rescue IOError # closed by another thread.
          end
        end
      end
    end

    def cleanup_listener
      @listeners.each{|s|
        if @logger.debug?
          addr = s.addr
          @logger.debug("close TCPSocket(#{addr[2]}, #{addr[1]})")
        end
        begin
          s.shutdown
        rescue Errno::ENOTCONN
          # when `Errno::ENOTCONN: Socket is not connected' on some platforms,
          # call #close instead of #shutdown.
          # (ignore @config[:ShutdownSocketWithoutClose])
          s.close
        else
          unless @config[:ShutdownSocketWithoutClose]
            s.close
          end
        end
      }
      @listeners.clear
    end
  end    # end of GenericServer
end
PKGH[�>肾>�>!share/ruby/webrick/httprequest.rbnu�[���# frozen_string_literal: false
#
# httprequest.rb -- HTTPRequest Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httprequest.rb,v 1.64 2003/07/13 17:18:22 gotoyuzo Exp $

require 'uri'
require_relative 'httpversion'
require_relative 'httpstatus'
require_relative 'httputils'
require_relative 'cookie'

module WEBrick

  ##
  # An HTTP request.  This is consumed by service and do_* methods in
  # WEBrick servlets

  class HTTPRequest

    BODY_CONTAINABLE_METHODS = [ "POST", "PUT" ] # :nodoc:

    # :section: Request line

    ##
    # The complete request line such as:
    #
    #   GET / HTTP/1.1

    attr_reader :request_line

    ##
    # The request method, GET, POST, PUT, etc.

    attr_reader :request_method

    ##
    # The unparsed URI of the request

    attr_reader :unparsed_uri

    ##
    # The HTTP version of the request

    attr_reader :http_version

    # :section: Request-URI

    ##
    # The parsed URI of the request

    attr_reader :request_uri

    ##
    # The request path

    attr_reader :path

    ##
    # The script name (CGI variable)

    attr_accessor :script_name

    ##
    # The path info (CGI variable)

    attr_accessor :path_info

    ##
    # The query from the URI of the request

    attr_accessor :query_string

    # :section: Header and entity body

    ##
    # The raw header of the request

    attr_reader :raw_header

    ##
    # The parsed header of the request

    attr_reader :header

    ##
    # The parsed request cookies

    attr_reader :cookies

    ##
    # The Accept header value

    attr_reader :accept

    ##
    # The Accept-Charset header value

    attr_reader :accept_charset

    ##
    # The Accept-Encoding header value

    attr_reader :accept_encoding

    ##
    # The Accept-Language header value

    attr_reader :accept_language

    # :section:

    ##
    # The remote user (CGI variable)

    attr_accessor :user

    ##
    # The socket address of the server

    attr_reader :addr

    ##
    # The socket address of the client

    attr_reader :peeraddr

    ##
    # Hash of request attributes

    attr_reader :attributes

    ##
    # Is this a keep-alive connection?

    attr_reader :keep_alive

    ##
    # The local time this request was received

    attr_reader :request_time

    ##
    # Creates a new HTTP request.  WEBrick::Config::HTTP is the default
    # configuration.

    def initialize(config)
      @config = config
      @buffer_size = @config[:InputBufferSize]
      @logger = config[:Logger]

      @request_line = @request_method =
        @unparsed_uri = @http_version = nil

      @request_uri = @host = @port = @path = nil
      @script_name = @path_info = nil
      @query_string = nil
      @query = nil
      @form_data = nil

      @raw_header = Array.new
      @header = nil
      @cookies = []
      @accept = []
      @accept_charset = []
      @accept_encoding = []
      @accept_language = []
      @body = ""

      @addr = @peeraddr = nil
      @attributes = {}
      @user = nil
      @keep_alive = false
      @request_time = nil

      @remaining_size = nil
      @socket = nil

      @forwarded_proto = @forwarded_host = @forwarded_port =
        @forwarded_server = @forwarded_for = nil
    end

    ##
    # Parses a request from +socket+.  This is called internally by
    # WEBrick::HTTPServer.

    def parse(socket=nil)
      @socket = socket
      begin
        @peeraddr = socket.respond_to?(:peeraddr) ? socket.peeraddr : []
        @addr = socket.respond_to?(:addr) ? socket.addr : []
      rescue Errno::ENOTCONN
        raise HTTPStatus::EOFError
      end

      read_request_line(socket)
      if @http_version.major > 0
        read_header(socket)
        @header['cookie'].each{|cookie|
          @cookies += Cookie::parse(cookie)
        }
        @accept = HTTPUtils.parse_qvalues(self['accept'])
        @accept_charset = HTTPUtils.parse_qvalues(self['accept-charset'])
        @accept_encoding = HTTPUtils.parse_qvalues(self['accept-encoding'])
        @accept_language = HTTPUtils.parse_qvalues(self['accept-language'])
      end
      return if @request_method == "CONNECT"
      return if @unparsed_uri == "*"

      begin
        setup_forwarded_info
        @request_uri = parse_uri(@unparsed_uri)
        @path = HTTPUtils::unescape(@request_uri.path)
        @path = HTTPUtils::normalize_path(@path)
        @host = @request_uri.host
        @port = @request_uri.port
        @query_string = @request_uri.query
        @script_name = ""
        @path_info = @path.dup
      rescue
        raise HTTPStatus::BadRequest, "bad URI `#{@unparsed_uri}'."
      end

      if /\Aclose\z/io =~ self["connection"]
        @keep_alive = false
      elsif /\Akeep-alive\z/io =~ self["connection"]
        @keep_alive = true
      elsif @http_version < "1.1"
        @keep_alive = false
      else
        @keep_alive = true
      end
    end

    ##
    # Generate HTTP/1.1 100 continue response if the client expects it,
    # otherwise does nothing.

    def continue # :nodoc:
      if self['expect'] == '100-continue' && @config[:HTTPVersion] >= "1.1"
        @socket << "HTTP/#{@config[:HTTPVersion]} 100 continue#{CRLF}#{CRLF}"
        @header.delete('expect')
      end
    end

    ##
    # Returns the request body.

    def body(&block) # :yields: body_chunk
      block ||= Proc.new{|chunk| @body << chunk }
      read_body(@socket, block)
      @body.empty? ? nil : @body
    end

    ##
    # Prepares the HTTPRequest object for use as the
    # source for IO.copy_stream

    def body_reader
      @body_tmp = []
      @body_rd = Fiber.new do
        body do |buf|
          @body_tmp << buf
          Fiber.yield
        end
      end
      @body_rd.resume # grab the first chunk and yield
      self
    end

    # for IO.copy_stream.  Note: we may return a larger string than +size+
    # here; but IO.copy_stream does not care.
    def readpartial(size, buf = ''.b) # :nodoc
      res = @body_tmp.shift or raise EOFError, 'end of file reached'
      buf.replace(res)
      res.clear
      @body_rd.resume # get more chunks
      buf
    end

    ##
    # Request query as a Hash

    def query
      unless @query
        parse_query()
      end
      @query
    end

    ##
    # The content-length header

    def content_length
      return Integer(self['content-length'])
    end

    ##
    # The content-type header

    def content_type
      return self['content-type']
    end

    ##
    # Retrieves +header_name+

    def [](header_name)
      if @header
        value = @header[header_name.downcase]
        value.empty? ? nil : value.join(", ")
      end
    end

    ##
    # Iterates over the request headers

    def each
      if @header
        @header.each{|k, v|
          value = @header[k]
          yield(k, value.empty? ? nil : value.join(", "))
        }
      end
    end

    ##
    # The host this request is for

    def host
      return @forwarded_host || @host
    end

    ##
    # The port this request is for

    def port
      return @forwarded_port || @port
    end

    ##
    # The server name this request is for

    def server_name
      return @forwarded_server || @config[:ServerName]
    end

    ##
    # The client's IP address

    def remote_ip
      return self["client-ip"] || @forwarded_for || @peeraddr[3]
    end

    ##
    # Is this an SSL request?

    def ssl?
      return @request_uri.scheme == "https"
    end

    ##
    # Should the connection this request was made on be kept alive?

    def keep_alive?
      @keep_alive
    end

    def to_s # :nodoc:
      ret = @request_line.dup
      @raw_header.each{|line| ret << line }
      ret << CRLF
      ret << body if body
      ret
    end

    ##
    # Consumes any remaining body and updates keep-alive status

    def fixup() # :nodoc:
      begin
        body{|chunk| }   # read remaining body
      rescue HTTPStatus::Error => ex
        @logger.error("HTTPRequest#fixup: #{ex.class} occurred.")
        @keep_alive = false
      rescue => ex
        @logger.error(ex)
        @keep_alive = false
      end
    end

    # This method provides the metavariables defined by the revision 3
    # of "The WWW Common Gateway Interface Version 1.1"
    # To browse the current document of CGI Version 1.1, see below:
    # http://tools.ietf.org/html/rfc3875

    def meta_vars
      meta = Hash.new

      cl = self["Content-Length"]
      ct = self["Content-Type"]
      meta["CONTENT_LENGTH"]    = cl if cl.to_i > 0
      meta["CONTENT_TYPE"]      = ct.dup if ct
      meta["GATEWAY_INTERFACE"] = "CGI/1.1"
      meta["PATH_INFO"]         = @path_info ? @path_info.dup : ""
     #meta["PATH_TRANSLATED"]   = nil      # no plan to be provided
      meta["QUERY_STRING"]      = @query_string ? @query_string.dup : ""
      meta["REMOTE_ADDR"]       = @peeraddr[3]
      meta["REMOTE_HOST"]       = @peeraddr[2]
     #meta["REMOTE_IDENT"]      = nil      # no plan to be provided
      meta["REMOTE_USER"]       = @user
      meta["REQUEST_METHOD"]    = @request_method.dup
      meta["REQUEST_URI"]       = @request_uri.to_s
      meta["SCRIPT_NAME"]       = @script_name.dup
      meta["SERVER_NAME"]       = @host
      meta["SERVER_PORT"]       = @port.to_s
      meta["SERVER_PROTOCOL"]   = "HTTP/" + @config[:HTTPVersion].to_s
      meta["SERVER_SOFTWARE"]   = @config[:ServerSoftware].dup

      self.each{|key, val|
        next if /^content-type$/i =~ key
        next if /^content-length$/i =~ key
        name = "HTTP_" + key
        name.gsub!(/-/o, "_")
        name.upcase!
        meta[name] = val
      }

      meta
    end

    private

    # :stopdoc:

    MAX_URI_LENGTH = 2083 # :nodoc:

    # same as Mongrel, Thin and Puma
    MAX_HEADER_LENGTH = (112 * 1024) # :nodoc:

    def read_request_line(socket)
      @request_line = read_line(socket, MAX_URI_LENGTH) if socket
      raise HTTPStatus::EOFError unless @request_line

      @request_bytes = @request_line.bytesize
      if @request_bytes >= MAX_URI_LENGTH and @request_line[-1, 1] != LF
        raise HTTPStatus::RequestURITooLarge
      end

      @request_time = Time.now
      if /^(\S+)\s+(\S++)(?:\s+HTTP\/(\d+\.\d+))?\r?\n/mo =~ @request_line
        @request_method = $1
        @unparsed_uri   = $2
        @http_version   = HTTPVersion.new($3 ? $3 : "0.9")
      else
        rl = @request_line.sub(/\x0d?\x0a\z/o, '')
        raise HTTPStatus::BadRequest, "bad Request-Line `#{rl}'."
      end
    end

    def read_header(socket)
      if socket
        while line = read_line(socket)
          break if /\A(#{CRLF}|#{LF})\z/om =~ line
          if (@request_bytes += line.bytesize) > MAX_HEADER_LENGTH
            raise HTTPStatus::RequestEntityTooLarge, 'headers too large'
          end
          @raw_header << line
        end
      end
      @header = HTTPUtils::parse_header(@raw_header.join)
    end

    def parse_uri(str, scheme="http")
      if @config[:Escape8bitURI]
        str = HTTPUtils::escape8bit(str)
      end
      str.sub!(%r{\A/+}o, '/')
      uri = URI::parse(str)
      return uri if uri.absolute?
      if @forwarded_host
        host, port = @forwarded_host, @forwarded_port
      elsif self["host"]
        pattern = /\A(#{URI::REGEXP::PATTERN::HOST})(?::(\d+))?\z/n
        host, port = *self['host'].scan(pattern)[0]
      elsif @addr.size > 0
        host, port = @addr[2], @addr[1]
      else
        host, port = @config[:ServerName], @config[:Port]
      end
      uri.scheme = @forwarded_proto || scheme
      uri.host = host
      uri.port = port ? port.to_i : nil
      return URI::parse(uri.to_s)
    end

    def read_body(socket, block)
      return unless socket
      if tc = self['transfer-encoding']
        case tc
        when /\Achunked\z/io then read_chunked(socket, block)
        else raise HTTPStatus::NotImplemented, "Transfer-Encoding: #{tc}."
        end
      elsif self['content-length'] || @remaining_size
        @remaining_size ||= self['content-length'].to_i
        while @remaining_size > 0
          sz = [@buffer_size, @remaining_size].min
          break unless buf = read_data(socket, sz)
          @remaining_size -= buf.bytesize
          block.call(buf)
        end
        if @remaining_size > 0 && @socket.eof?
          raise HTTPStatus::BadRequest, "invalid body size."
        end
      elsif BODY_CONTAINABLE_METHODS.member?(@request_method)
        raise HTTPStatus::LengthRequired
      end
      return @body
    end

    def read_chunk_size(socket)
      line = read_line(socket)
      if /^([0-9a-fA-F]+)(?:;(\S+))?/ =~ line
        chunk_size = $1.hex
        chunk_ext = $2
        [ chunk_size, chunk_ext ]
      else
        raise HTTPStatus::BadRequest, "bad chunk `#{line}'."
      end
    end

    def read_chunked(socket, block)
      chunk_size, = read_chunk_size(socket)
      while chunk_size > 0
        begin
          sz = [ chunk_size, @buffer_size ].min
          data = read_data(socket, sz) # read chunk-data
          if data.nil? || data.bytesize != sz
            raise HTTPStatus::BadRequest, "bad chunk data size."
          end
          block.call(data)
        end while (chunk_size -= sz) > 0

        read_line(socket)                    # skip CRLF
        chunk_size, = read_chunk_size(socket)
      end
      read_header(socket)                    # trailer + CRLF
      @header.delete("transfer-encoding")
      @remaining_size = 0
    end

    def _read_data(io, method, *arg)
      begin
        WEBrick::Utils.timeout(@config[:RequestTimeout]){
          return io.__send__(method, *arg)
        }
      rescue Errno::ECONNRESET
        return nil
      rescue Timeout::Error
        raise HTTPStatus::RequestTimeout
      end
    end

    def read_line(io, size=4096)
      _read_data(io, :gets, LF, size)
    end

    def read_data(io, size)
      _read_data(io, :read, size)
    end

    def parse_query()
      begin
        if @request_method == "GET" || @request_method == "HEAD"
          @query = HTTPUtils::parse_query(@query_string)
        elsif self['content-type'] =~ /^application\/x-www-form-urlencoded/
          @query = HTTPUtils::parse_query(body)
        elsif self['content-type'] =~ /^multipart\/form-data; boundary=(.+)/
          boundary = HTTPUtils::dequote($1)
          @query = HTTPUtils::parse_form_data(body, boundary)
        else
          @query = Hash.new
        end
      rescue => ex
        raise HTTPStatus::BadRequest, ex.message
      end
    end

    PrivateNetworkRegexp = /
      ^unknown$|
      ^((::ffff:)?127.0.0.1|::1)$|
      ^(::ffff:)?(10|172\.(1[6-9]|2[0-9]|3[01])|192\.168)\.
    /ixo

    # It's said that all X-Forwarded-* headers will contain more than one
    # (comma-separated) value if the original request already contained one of
    # these headers. Since we could use these values as Host header, we choose
    # the initial(first) value. (apr_table_mergen() adds new value after the
    # existing value with ", " prefix)
    def setup_forwarded_info
      if @forwarded_server = self["x-forwarded-server"]
        @forwarded_server = @forwarded_server.split(",", 2).first
      end
      if @forwarded_proto = self["x-forwarded-proto"]
        @forwarded_proto = @forwarded_proto.split(",", 2).first
      end
      if host_port = self["x-forwarded-host"]
        host_port = host_port.split(",", 2).first
        if host_port =~ /\A(\[[0-9a-fA-F:]+\])(?::(\d+))?\z/
          @forwarded_host = $1
          tmp = $2
        else
          @forwarded_host, tmp = host_port.split(":", 2)
        end
        @forwarded_port = (tmp || (@forwarded_proto == "https" ? 443 : 80)).to_i
      end
      if addrs = self["x-forwarded-for"]
        addrs = addrs.split(",").collect(&:strip)
        addrs.reject!{|ip| PrivateNetworkRegexp =~ ip }
        @forwarded_for = addrs.first
      end
    end

    # :startdoc:
  end
end
PKGH[��/B��share/ruby/webrick/ssl.rbnu�[���# frozen_string_literal: false
#
# ssl.rb -- SSL/TLS enhancement for GenericServer
#
# Copyright (c) 2003 GOTOU Yuuzou All rights reserved.
#
# $Id$

require 'webrick'
require 'openssl'

module WEBrick
  module Config
    svrsoft = General[:ServerSoftware]
    osslv = ::OpenSSL::OPENSSL_VERSION.split[1]

    ##
    # Default SSL server configuration.
    #
    # WEBrick can automatically create a self-signed certificate if
    # <code>:SSLCertName</code> is set.  For more information on the various
    # SSL options see OpenSSL::SSL::SSLContext.
    #
    # :ServerSoftware       ::
    #   The server software name used in the Server: header.
    # :SSLEnable            :: false,
    #   Enable SSL for this server.  Defaults to false.
    # :SSLCertificate       ::
    #   The SSL certificate for the server.
    # :SSLPrivateKey        ::
    #   The SSL private key for the server certificate.
    # :SSLClientCA          :: nil,
    #   Array of certificates that will be sent to the client.
    # :SSLExtraChainCert    :: nil,
    #   Array of certificates that will be added to the certificate chain
    # :SSLCACertificateFile :: nil,
    #   Path to a CA certificate file
    # :SSLCACertificatePath :: nil,
    #   Path to a directory containing CA certificates
    # :SSLCertificateStore  :: nil,
    #   OpenSSL::X509::Store used for certificate validation of the client
    # :SSLTmpDhCallback     :: nil,
    #   Callback invoked when DH parameters are required.
    # :SSLVerifyClient      ::
    #   Sets whether the client is verified.  This defaults to VERIFY_NONE
    #   which is typical for an HTTPS server.
    # :SSLVerifyDepth       ::
    #   Number of CA certificates to walk when verifying a certificate chain
    # :SSLVerifyCallback    ::
    #   Custom certificate verification callback
    # :SSLServerNameCallback::
    #   Custom servername indication callback
    # :SSLTimeout           ::
    #   Maximum session lifetime
    # :SSLOptions           ::
    #   Various SSL options
    # :SSLCiphers           ::
    #   Ciphers to be used
    # :SSLStartImmediately  ::
    #   Immediately start SSL upon connection?  Defaults to true
    # :SSLCertName          ::
    #   SSL certificate name.  Must be set to enable automatic certificate
    #   creation.
    # :SSLCertComment       ::
    #   Comment used during automatic certificate creation.

    SSL = {
      :ServerSoftware       => "#{svrsoft} OpenSSL/#{osslv}",
      :SSLEnable            => false,
      :SSLCertificate       => nil,
      :SSLPrivateKey        => nil,
      :SSLClientCA          => nil,
      :SSLExtraChainCert    => nil,
      :SSLCACertificateFile => nil,
      :SSLCACertificatePath => nil,
      :SSLCertificateStore  => nil,
      :SSLTmpDhCallback     => nil,
      :SSLVerifyClient      => ::OpenSSL::SSL::VERIFY_NONE,
      :SSLVerifyDepth       => nil,
      :SSLVerifyCallback    => nil,   # custom verification
      :SSLTimeout           => nil,
      :SSLOptions           => nil,
      :SSLCiphers           => nil,
      :SSLStartImmediately  => true,
      # Must specify if you use auto generated certificate.
      :SSLCertName          => nil,
      :SSLCertComment       => "Generated by Ruby/OpenSSL"
    }
    General.update(SSL)
  end

  module Utils
    ##
    # Creates a self-signed certificate with the given number of +bits+,
    # the issuer +cn+ and a +comment+ to be stored in the certificate.

    def create_self_signed_cert(bits, cn, comment)
      rsa = OpenSSL::PKey::RSA.new(bits){|p, n|
        case p
        when 0; $stderr.putc "."  # BN_generate_prime
        when 1; $stderr.putc "+"  # BN_generate_prime
        when 2; $stderr.putc "*"  # searching good prime,
                                  # n = #of try,
                                  # but also data from BN_generate_prime
        when 3; $stderr.putc "\n" # found good prime, n==0 - p, n==1 - q,
                                  # but also data from BN_generate_prime
        else;   $stderr.putc "*"  # BN_generate_prime
        end
      }
      cert = OpenSSL::X509::Certificate.new
      cert.version = 2
      cert.serial = 1
      name = (cn.kind_of? String) ? OpenSSL::X509::Name.parse(cn)
                                  : OpenSSL::X509::Name.new(cn)
      cert.subject = name
      cert.issuer = name
      cert.not_before = Time.now
      cert.not_after = Time.now + (365*24*60*60)
      cert.public_key = rsa.public_key

      ef = OpenSSL::X509::ExtensionFactory.new(nil,cert)
      ef.issuer_certificate = cert
      cert.extensions = [
        ef.create_extension("basicConstraints","CA:FALSE"),
        ef.create_extension("keyUsage", "keyEncipherment"),
        ef.create_extension("subjectKeyIdentifier", "hash"),
        ef.create_extension("extendedKeyUsage", "serverAuth"),
        ef.create_extension("nsComment", comment),
      ]
      aki = ef.create_extension("authorityKeyIdentifier",
                                "keyid:always,issuer:always")
      cert.add_extension(aki)
      cert.sign(rsa, OpenSSL::Digest::SHA256.new)

      return [ cert, rsa ]
    end
    module_function :create_self_signed_cert
  end

  ##
  #--
  # Updates WEBrick::GenericServer with SSL functionality

  class GenericServer

    ##
    # SSL context for the server when run in SSL mode

    def ssl_context # :nodoc:
      @ssl_context ||= begin
        if @config[:SSLEnable]
          ssl_context = setup_ssl_context(@config)
          @logger.info("\n" + @config[:SSLCertificate].to_text)
          ssl_context
        end
      end
    end

    undef listen

    ##
    # Updates +listen+ to enable SSL when the SSL configuration is active.

    def listen(address, port) # :nodoc:
      listeners = Utils::create_listeners(address, port)
      if @config[:SSLEnable]
        listeners.collect!{|svr|
          ssvr = ::OpenSSL::SSL::SSLServer.new(svr, ssl_context)
          ssvr.start_immediately = @config[:SSLStartImmediately]
          ssvr
        }
      end
      @listeners += listeners
      setup_shutdown_pipe
    end

    ##
    # Sets up an SSL context for +config+

    def setup_ssl_context(config) # :nodoc:
      unless config[:SSLCertificate]
        cn = config[:SSLCertName]
        comment = config[:SSLCertComment]
        cert, key = Utils::create_self_signed_cert(2048, cn, comment)
        config[:SSLCertificate] = cert
        config[:SSLPrivateKey] = key
      end
      ctx = OpenSSL::SSL::SSLContext.new
      ctx.key = config[:SSLPrivateKey]
      ctx.cert = config[:SSLCertificate]
      ctx.client_ca = config[:SSLClientCA]
      ctx.extra_chain_cert = config[:SSLExtraChainCert]
      ctx.ca_file = config[:SSLCACertificateFile]
      ctx.ca_path = config[:SSLCACertificatePath]
      ctx.cert_store = config[:SSLCertificateStore]
      ctx.tmp_dh_callback = config[:SSLTmpDhCallback]
      ctx.verify_mode = config[:SSLVerifyClient]
      ctx.verify_depth = config[:SSLVerifyDepth]
      ctx.verify_callback = config[:SSLVerifyCallback]
      ctx.servername_cb = config[:SSLServerNameCallback] || proc { |args| ssl_servername_callback(*args) }
      ctx.timeout = config[:SSLTimeout]
      ctx.options = config[:SSLOptions]
      ctx.ciphers = config[:SSLCiphers]
      ctx
    end

    ##
    # ServerNameIndication callback

    def ssl_servername_callback(sslsocket, hostname = nil)
      # default
    end

  end
end
PKGH[�:���share/ruby/webrick/htmlutils.rbnu�[���# frozen_string_literal: false
#--
# htmlutils.rb -- HTMLUtils Module
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: htmlutils.rb,v 1.7 2002/09/21 12:23:35 gotoyuzo Exp $

module WEBrick
  module HTMLUtils

    ##
    # Escapes &, ", > and < in +string+

    def escape(string)
      return "" unless string
      str = string.b
      str.gsub!(/&/n, '&amp;')
      str.gsub!(/\"/n, '&quot;')
      str.gsub!(/>/n, '&gt;')
      str.gsub!(/</n, '&lt;')
      str.force_encoding(string.encoding)
    end
    module_function :escape

  end
end
PKGH[�����share/ruby/webrick/log.rbnu�[���# frozen_string_literal: false
#--
# log.rb -- Log Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: log.rb,v 1.26 2002/10/06 17:06:10 gotoyuzo Exp $

module WEBrick

  ##
  # A generic logging class

  class BasicLog

    # Fatal log level which indicates a server crash

    FATAL = 1

    # Error log level which indicates a recoverable error

    ERROR = 2

    # Warning log level which indicates a possible problem

    WARN  = 3

    # Information log level which indicates possibly useful information

    INFO  = 4

    # Debugging error level for messages used in server development or
    # debugging

    DEBUG = 5

    # log-level, messages above this level will be logged
    attr_accessor :level

    ##
    # Initializes a new logger for +log_file+ that outputs messages at +level+
    # or higher.  +log_file+ can be a filename, an IO-like object that
    # responds to #<< or nil which outputs to $stderr.
    #
    # If no level is given INFO is chosen by default

    def initialize(log_file=nil, level=nil)
      @level = level || INFO
      case log_file
      when String
        @log = File.open(log_file, "a+")
        @log.sync = true
        @opened = true
      when NilClass
        @log = $stderr
      else
        @log = log_file  # requires "<<". (see BasicLog#log)
      end
    end

    ##
    # Closes the logger (also closes the log device associated to the logger)
    def close
      @log.close if @opened
      @log = nil
    end

    ##
    # Logs +data+ at +level+ if the given level is above the current log
    # level.

    def log(level, data)
      if @log && level <= @level
        data += "\n" if /\n\Z/ !~ data
        @log << data
      end
    end

    ##
    # Synonym for log(INFO, obj.to_s)
    def <<(obj)
      log(INFO, obj.to_s)
    end

    # Shortcut for logging a FATAL message
    def fatal(msg) log(FATAL, "FATAL " << format(msg)); end
    # Shortcut for logging an ERROR message
    def error(msg) log(ERROR, "ERROR " << format(msg)); end
    # Shortcut for logging a WARN message
    def warn(msg)  log(WARN,  "WARN  " << format(msg)); end
    # Shortcut for logging an INFO message
    def info(msg)  log(INFO,  "INFO  " << format(msg)); end
    # Shortcut for logging a DEBUG message
    def debug(msg) log(DEBUG, "DEBUG " << format(msg)); end

    # Will the logger output FATAL messages?
    def fatal?; @level >= FATAL; end
    # Will the logger output ERROR messages?
    def error?; @level >= ERROR; end
    # Will the logger output WARN messages?
    def warn?;  @level >= WARN; end
    # Will the logger output INFO messages?
    def info?;  @level >= INFO; end
    # Will the logger output DEBUG messages?
    def debug?; @level >= DEBUG; end

    private

    ##
    # Formats +arg+ for the logger
    #
    # * If +arg+ is an Exception, it will format the error message and
    #   the back trace.
    # * If +arg+ responds to #to_str, it will return it.
    # * Otherwise it will return +arg+.inspect.
    def format(arg)
      if arg.is_a?(Exception)
        "#{arg.class}: #{AccessLog.escape(arg.message)}\n\t" <<
        arg.backtrace.join("\n\t") << "\n"
      elsif arg.respond_to?(:to_str)
        AccessLog.escape(arg.to_str)
      else
        arg.inspect
      end
    end
  end

  ##
  # A logging class that prepends a timestamp to each message.

  class Log < BasicLog
    # Format of the timestamp which is applied to each logged line.  The
    # default is <tt>"[%Y-%m-%d %H:%M:%S]"</tt>
    attr_accessor :time_format

    ##
    # Same as BasicLog#initialize
    #
    # You can set the timestamp format through #time_format
    def initialize(log_file=nil, level=nil)
      super(log_file, level)
      @time_format = "[%Y-%m-%d %H:%M:%S]"
    end

    ##
    # Same as BasicLog#log
    def log(level, data)
      tmp = Time.now.strftime(@time_format)
      tmp << " " << data
      super(level, tmp)
    end
  end
end
PKGH[��c}� �  share/ruby/webrick/httpserver.rbnu�[���# frozen_string_literal: false
#
# httpserver.rb -- HTTPServer Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpserver.rb,v 1.63 2002/10/01 17:16:32 gotoyuzo Exp $

require 'io/wait'
require_relative 'server'
require_relative 'httputils'
require_relative 'httpstatus'
require_relative 'httprequest'
require_relative 'httpresponse'
require_relative 'httpservlet'
require_relative 'accesslog'

module WEBrick
  class HTTPServerError < ServerError; end

  ##
  # An HTTP Server

  class HTTPServer < ::WEBrick::GenericServer
    ##
    # Creates a new HTTP server according to +config+
    #
    # An HTTP server uses the following attributes:
    #
    # :AccessLog:: An array of access logs.  See WEBrick::AccessLog
    # :BindAddress:: Local address for the server to bind to
    # :DocumentRoot:: Root path to serve files from
    # :DocumentRootOptions:: Options for the default HTTPServlet::FileHandler
    # :HTTPVersion:: The HTTP version of this server
    # :Port:: Port to listen on
    # :RequestCallback:: Called with a request and response before each
    #                    request is serviced.
    # :RequestTimeout:: Maximum time to wait between requests
    # :ServerAlias:: Array of alternate names for this server for virtual
    #                hosting
    # :ServerName:: Name for this server for virtual hosting

    def initialize(config={}, default=Config::HTTP)
      super(config, default)
      @http_version = HTTPVersion::convert(@config[:HTTPVersion])

      @mount_tab = MountTable.new
      if @config[:DocumentRoot]
        mount("/", HTTPServlet::FileHandler, @config[:DocumentRoot],
              @config[:DocumentRootOptions])
      end

      unless @config[:AccessLog]
        @config[:AccessLog] = [
          [ $stderr, AccessLog::COMMON_LOG_FORMAT ],
          [ $stderr, AccessLog::REFERER_LOG_FORMAT ]
        ]
      end

      @virtual_hosts = Array.new
    end

    ##
    # Processes requests on +sock+

    def run(sock)
      while true
        req = create_request(@config)
        res = create_response(@config)
        server = self
        begin
          timeout = @config[:RequestTimeout]
          while timeout > 0
            break if sock.to_io.wait_readable(0.5)
            break if @status != :Running
            timeout -= 0.5
          end
          raise HTTPStatus::EOFError if timeout <= 0 || @status != :Running
          raise HTTPStatus::EOFError if sock.eof?
          req.parse(sock)
          res.request_method = req.request_method
          res.request_uri = req.request_uri
          res.request_http_version = req.http_version
          res.keep_alive = req.keep_alive?
          server = lookup_server(req) || self
          if callback = server[:RequestCallback]
            callback.call(req, res)
          elsif callback = server[:RequestHandler]
            msg = ":RequestHandler is deprecated, please use :RequestCallback"
            @logger.warn(msg)
            callback.call(req, res)
          end
          server.service(req, res)
        rescue HTTPStatus::EOFError, HTTPStatus::RequestTimeout => ex
          res.set_error(ex)
        rescue HTTPStatus::Error => ex
          @logger.error(ex.message)
          res.set_error(ex)
        rescue HTTPStatus::Status => ex
          res.status = ex.code
        rescue StandardError => ex
          @logger.error(ex)
          res.set_error(ex, true)
        ensure
          if req.request_line
            if req.keep_alive? && res.keep_alive?
              req.fixup()
            end
            res.send_response(sock)
            server.access_log(@config, req, res)
          end
        end
        break if @http_version < "1.1"
        break unless req.keep_alive?
        break unless res.keep_alive?
      end
    end

    ##
    # Services +req+ and fills in +res+

    def service(req, res)
      if req.unparsed_uri == "*"
        if req.request_method == "OPTIONS"
          do_OPTIONS(req, res)
          raise HTTPStatus::OK
        end
        raise HTTPStatus::NotFound, "`#{req.unparsed_uri}' not found."
      end

      servlet, options, script_name, path_info = search_servlet(req.path)
      raise HTTPStatus::NotFound, "`#{req.path}' not found." unless servlet
      req.script_name = script_name
      req.path_info = path_info
      si = servlet.get_instance(self, *options)
      @logger.debug(format("%s is invoked.", si.class.name))
      si.service(req, res)
    end

    ##
    # The default OPTIONS request handler says GET, HEAD, POST and OPTIONS
    # requests are allowed.

    def do_OPTIONS(req, res)
      res["allow"] = "GET,HEAD,POST,OPTIONS"
    end

    ##
    # Mounts +servlet+ on +dir+ passing +options+ to the servlet at creation
    # time

    def mount(dir, servlet, *options)
      @logger.debug(sprintf("%s is mounted on %s.", servlet.inspect, dir))
      @mount_tab[dir] = [ servlet, options ]
    end

    ##
    # Mounts +proc+ or +block+ on +dir+ and calls it with a
    # WEBrick::HTTPRequest and WEBrick::HTTPResponse

    def mount_proc(dir, proc=nil, &block)
      proc ||= block
      raise HTTPServerError, "must pass a proc or block" unless proc
      mount(dir, HTTPServlet::ProcHandler.new(proc))
    end

    ##
    # Unmounts +dir+

    def unmount(dir)
      @logger.debug(sprintf("unmount %s.", dir))
      @mount_tab.delete(dir)
    end
    alias umount unmount

    ##
    # Finds a servlet for +path+

    def search_servlet(path)
      script_name, path_info = @mount_tab.scan(path)
      servlet, options = @mount_tab[script_name]
      if servlet
        [ servlet, options, script_name, path_info ]
      end
    end

    ##
    # Adds +server+ as a virtual host.

    def virtual_host(server)
      @virtual_hosts << server
      @virtual_hosts = @virtual_hosts.sort_by{|s|
        num = 0
        num -= 4 if s[:BindAddress]
        num -= 2 if s[:Port]
        num -= 1 if s[:ServerName]
        num
      }
    end

    ##
    # Finds the appropriate virtual host to handle +req+

    def lookup_server(req)
      @virtual_hosts.find{|s|
        (s[:BindAddress].nil? || req.addr[3] == s[:BindAddress]) &&
        (s[:Port].nil?        || req.port == s[:Port])           &&
        ((s[:ServerName].nil?  || req.host == s[:ServerName]) ||
         (!s[:ServerAlias].nil? && s[:ServerAlias].find{|h| h === req.host}))
      }
    end

    ##
    # Logs +req+ and +res+ in the access logs.  +config+ is used for the
    # server name.

    def access_log(config, req, res)
      param = AccessLog::setup_params(config, req, res)
      @config[:AccessLog].each{|logger, fmt|
        logger << AccessLog::format(fmt+"\n", param)
      }
    end

    ##
    # Creates the HTTPRequest used when handling the HTTP
    # request. Can be overridden by subclasses.
    def create_request(with_webrick_config)
      HTTPRequest.new(with_webrick_config)
    end

    ##
    # Creates the HTTPResponse used when handling the HTTP
    # request. Can be overridden by subclasses.
    def create_response(with_webrick_config)
      HTTPResponse.new(with_webrick_config)
    end

    ##
    # Mount table for the path a servlet is mounted on in the directory space
    # of the server.  Users of WEBrick can only access this indirectly via
    # WEBrick::HTTPServer#mount, WEBrick::HTTPServer#unmount and
    # WEBrick::HTTPServer#search_servlet

    class MountTable # :nodoc:
      def initialize
        @tab = Hash.new
        compile
      end

      def [](dir)
        dir = normalize(dir)
        @tab[dir]
      end

      def []=(dir, val)
        dir = normalize(dir)
        @tab[dir] = val
        compile
        val
      end

      def delete(dir)
        dir = normalize(dir)
        res = @tab.delete(dir)
        compile
        res
      end

      def scan(path)
        @scanner =~ path
        [ $&, $' ]
      end

      private

      def compile
        k = @tab.keys
        k.sort!
        k.reverse!
        k.collect!{|path| Regexp.escape(path) }
        @scanner = Regexp.new("\\A(" + k.join("|") +")(?=/|\\z)")
      end

      def normalize(dir)
        ret = dir ? dir.dup : ""
        ret.sub!(%r|/+\z|, "")
        ret
      end
    end
  end
end
PKGH[Z�=-share/ruby/webrick/httpservlet/prochandler.rbnu�[���# frozen_string_literal: false
#
# prochandler.rb -- ProcHandler Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: prochandler.rb,v 1.7 2002/09/21 12:23:42 gotoyuzo Exp $

require_relative 'abstract'

module WEBrick
  module HTTPServlet

    ##
    # Mounts a proc at a path that accepts a request and response.
    #
    # Instead of mounting this servlet with WEBrick::HTTPServer#mount use
    # WEBrick::HTTPServer#mount_proc:
    #
    #   server.mount_proc '/' do |req, res|
    #     res.body = 'it worked!'
    #     res.status = 200
    #   end

    class ProcHandler < AbstractServlet
      # :stopdoc:
      def get_instance(server, *options)
        self
      end

      def initialize(proc)
        @proc = proc
      end

      def do_GET(request, response)
        @proc.call(request, response)
      end

      alias do_POST do_GET
      # :startdoc:
    end

  end
end
PKGH[Ͻ�			,share/ruby/webrick/httpservlet/erbhandler.rbnu�[���# frozen_string_literal: false
#
# erbhandler.rb -- ERBHandler Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: erbhandler.rb,v 1.25 2003/02/24 19:25:31 gotoyuzo Exp $

require_relative 'abstract'

require 'erb'

module WEBrick
  module HTTPServlet

    ##
    # ERBHandler evaluates an ERB file and returns the result.  This handler
    # is automatically used if there are .rhtml files in a directory served by
    # the FileHandler.
    #
    # ERBHandler supports GET and POST methods.
    #
    # The ERB file is evaluated with the local variables +servlet_request+ and
    # +servlet_response+ which are a WEBrick::HTTPRequest and
    # WEBrick::HTTPResponse respectively.
    #
    # Example .rhtml file:
    #
    #   Request to <%= servlet_request.request_uri %>
    #
    #   Query params <%= servlet_request.query.inspect %>

    class ERBHandler < AbstractServlet

      ##
      # Creates a new ERBHandler on +server+ that will evaluate and serve the
      # ERB file +name+

      def initialize(server, name)
        super(server, name)
        @script_filename = name
      end

      ##
      # Handles GET requests

      def do_GET(req, res)
        unless defined?(ERB)
          @logger.warn "#{self.class}: ERB not defined."
          raise HTTPStatus::Forbidden, "ERBHandler cannot work."
        end
        begin
          data = File.open(@script_filename, &:read)
          res.body = evaluate(ERB.new(data), req, res)
          res['content-type'] ||=
            HTTPUtils::mime_type(@script_filename, @config[:MimeTypes])
        rescue StandardError
          raise
        rescue Exception => ex
          @logger.error(ex)
          raise HTTPStatus::InternalServerError, ex.message
        end
      end

      ##
      # Handles POST requests

      alias do_POST do_GET

      private

      ##
      # Evaluates +erb+ providing +servlet_request+ and +servlet_response+ as
      # local variables.

      def evaluate(erb, servlet_request, servlet_response)
        Module.new.module_eval{
          servlet_request.meta_vars
          servlet_request.query
          erb.result(binding)
        }
      end
    end
  end
end
PKGH[�����,share/ruby/webrick/httpservlet/cgi_runner.rbnu�[���# frozen_string_literal: false
#
# cgi_runner.rb -- CGI launcher.
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: cgi_runner.rb,v 1.9 2002/09/25 11:33:15 gotoyuzo Exp $

def sysread(io, size)
  buf = ""
  while size > 0
    tmp = io.sysread(size)
    buf << tmp
    size -= tmp.bytesize
  end
  return buf
end

STDIN.binmode

len = sysread(STDIN, 8).to_i
out = sysread(STDIN, len)
STDOUT.reopen(File.open(out, "w"))

len = sysread(STDIN, 8).to_i
err = sysread(STDIN, len)
STDERR.reopen(File.open(err, "w"))

len  = sysread(STDIN, 8).to_i
dump = sysread(STDIN, len)
hash = Marshal.restore(dump)
ENV.keys.each{|name| ENV.delete(name) }
hash.each{|k, v| ENV[k] = v if v }

dir = File::dirname(ENV["SCRIPT_FILENAME"])
Dir::chdir dir

if ARGV[0]
  argv = ARGV.dup
  argv << ENV["SCRIPT_FILENAME"]
  exec(*argv)
  # NOTREACHED
end
exec ENV["SCRIPT_FILENAME"]
PKGH[�%f��C�C-share/ruby/webrick/httpservlet/filehandler.rbnu�[���# frozen_string_literal: false
#
# filehandler.rb -- FileHandler Module
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2003 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: filehandler.rb,v 1.44 2003/06/07 01:34:51 gotoyuzo Exp $

require 'time'

require_relative '../htmlutils'
require_relative '../httputils'
require_relative '../httpstatus'

module WEBrick
  module HTTPServlet

    ##
    # Servlet for serving a single file.  You probably want to use the
    # FileHandler servlet instead as it handles directories and fancy indexes.
    #
    # Example:
    #
    #   server.mount('/my_page.txt', WEBrick::HTTPServlet::DefaultFileHandler,
    #                '/path/to/my_page.txt')
    #
    # This servlet handles If-Modified-Since and Range requests.

    class DefaultFileHandler < AbstractServlet

      ##
      # Creates a DefaultFileHandler instance for the file at +local_path+.

      def initialize(server, local_path)
        super(server, local_path)
        @local_path = local_path
      end

      # :stopdoc:

      def do_GET(req, res)
        st = File::stat(@local_path)
        mtime = st.mtime
        res['etag'] = sprintf("%x-%x-%x", st.ino, st.size, st.mtime.to_i)

        if not_modified?(req, res, mtime, res['etag'])
          res.body = ''
          raise HTTPStatus::NotModified
        elsif req['range']
          make_partial_content(req, res, @local_path, st.size)
          raise HTTPStatus::PartialContent
        else
          mtype = HTTPUtils::mime_type(@local_path, @config[:MimeTypes])
          res['content-type'] = mtype
          res['content-length'] = st.size.to_s
          res['last-modified'] = mtime.httpdate
          res.body = File.open(@local_path, "rb")
        end
      end

      def not_modified?(req, res, mtime, etag)
        if ir = req['if-range']
          begin
            if Time.httpdate(ir) >= mtime
              return true
            end
          rescue
            if HTTPUtils::split_header_value(ir).member?(res['etag'])
              return true
            end
          end
        end

        if (ims = req['if-modified-since']) && Time.parse(ims) >= mtime
          return true
        end

        if (inm = req['if-none-match']) &&
           HTTPUtils::split_header_value(inm).member?(res['etag'])
          return true
        end

        return false
      end

      # returns a lambda for webrick/httpresponse.rb send_body_proc
      def multipart_body(body, parts, boundary, mtype, filesize)
        lambda do |socket|
          begin
            begin
              first = parts.shift
              last = parts.shift
              socket.write(
                "--#{boundary}#{CRLF}" \
                "Content-Type: #{mtype}#{CRLF}" \
                "Content-Range: bytes #{first}-#{last}/#{filesize}#{CRLF}" \
                "#{CRLF}"
              )

              begin
                IO.copy_stream(body, socket, last - first + 1, first)
              rescue NotImplementedError
                body.seek(first, IO::SEEK_SET)
                IO.copy_stream(body, socket, last - first + 1)
              end
              socket.write(CRLF)
            end while parts[0]
            socket.write("--#{boundary}--#{CRLF}")
          ensure
            body.close
          end
        end
      end

      def make_partial_content(req, res, filename, filesize)
        mtype = HTTPUtils::mime_type(filename, @config[:MimeTypes])
        unless ranges = HTTPUtils::parse_range_header(req['range'])
          raise HTTPStatus::BadRequest,
            "Unrecognized range-spec: \"#{req['range']}\""
        end
        File.open(filename, "rb"){|io|
          if ranges.size > 1
            time = Time.now
            boundary = "#{time.sec}_#{time.usec}_#{Process::pid}"
            parts = []
            ranges.each {|range|
              prange = prepare_range(range, filesize)
              next if prange[0] < 0
              parts.concat(prange)
            }
            raise HTTPStatus::RequestRangeNotSatisfiable if parts.empty?
            res["content-type"] = "multipart/byteranges; boundary=#{boundary}"
            if req.http_version < '1.1'
              res['connection'] = 'close'
            else
              res.chunked = true
            end
            res.body = multipart_body(io.dup, parts, boundary, mtype, filesize)
          elsif range = ranges[0]
            first, last = prepare_range(range, filesize)
            raise HTTPStatus::RequestRangeNotSatisfiable if first < 0
            res['content-type'] = mtype
            res['content-range'] = "bytes #{first}-#{last}/#{filesize}"
            res['content-length'] = (last - first + 1).to_s
            res.body = io.dup
          else
            raise HTTPStatus::BadRequest
          end
        }
      end

      def prepare_range(range, filesize)
        first = range.first < 0 ? filesize + range.first : range.first
        return -1, -1 if first < 0 || first >= filesize
        last = range.last < 0 ? filesize + range.last : range.last
        last = filesize - 1 if last >= filesize
        return first, last
      end

      # :startdoc:
    end

    ##
    # Serves a directory including fancy indexing and a variety of other
    # options.
    #
    # Example:
    #
    #   server.mount('/assets', WEBrick::HTTPServlet::FileHandler,
    #                '/path/to/assets')

    class FileHandler < AbstractServlet
      HandlerTable = Hash.new # :nodoc:

      ##
      # Allow custom handling of requests for files with +suffix+ by class
      # +handler+

      def self.add_handler(suffix, handler)
        HandlerTable[suffix] = handler
      end

      ##
      # Remove custom handling of requests for files with +suffix+

      def self.remove_handler(suffix)
        HandlerTable.delete(suffix)
      end

      ##
      # Creates a FileHandler servlet on +server+ that serves files starting
      # at directory +root+
      #
      # +options+ may be a Hash containing keys from
      # WEBrick::Config::FileHandler or +true+ or +false+.
      #
      # If +options+ is true or false then +:FancyIndexing+ is enabled or
      # disabled respectively.

      def initialize(server, root, options={}, default=Config::FileHandler)
        @config = server.config
        @logger = @config[:Logger]
        @root = File.expand_path(root)
        if options == true || options == false
          options = { :FancyIndexing => options }
        end
        @options = default.dup.update(options)
      end

      # :stopdoc:

      def service(req, res)
        # if this class is mounted on "/" and /~username is requested.
        # we're going to override path informations before invoking service.
        if defined?(Etc) && @options[:UserDir] && req.script_name.empty?
          if %r|^(/~([^/]+))| =~ req.path_info
            script_name, user = $1, $2
            path_info = $'
            begin
              passwd = Etc::getpwnam(user)
              @root = File::join(passwd.dir, @options[:UserDir])
              req.script_name = script_name
              req.path_info = path_info
            rescue
              @logger.debug "#{self.class}#do_GET: getpwnam(#{user}) failed"
            end
          end
        end
        prevent_directory_traversal(req, res)
        super(req, res)
      end

      def do_GET(req, res)
        unless exec_handler(req, res)
          set_dir_list(req, res)
        end
      end

      def do_POST(req, res)
        unless exec_handler(req, res)
          raise HTTPStatus::NotFound, "`#{req.path}' not found."
        end
      end

      def do_OPTIONS(req, res)
        unless exec_handler(req, res)
          super(req, res)
        end
      end

      # ToDo
      # RFC2518: HTTP Extensions for Distributed Authoring -- WEBDAV
      #
      # PROPFIND PROPPATCH MKCOL DELETE PUT COPY MOVE
      # LOCK UNLOCK

      # RFC3253: Versioning Extensions to WebDAV
      #          (Web Distributed Authoring and Versioning)
      #
      # VERSION-CONTROL REPORT CHECKOUT CHECK_IN UNCHECKOUT
      # MKWORKSPACE UPDATE LABEL MERGE ACTIVITY

      private

      def trailing_pathsep?(path)
        # check for trailing path separator:
        #   File.dirname("/aaaa/bbbb/")      #=> "/aaaa")
        #   File.dirname("/aaaa/bbbb/x")     #=> "/aaaa/bbbb")
        #   File.dirname("/aaaa/bbbb")       #=> "/aaaa")
        #   File.dirname("/aaaa/bbbbx")      #=> "/aaaa")
        return File.dirname(path) != File.dirname(path+"x")
      end

      def prevent_directory_traversal(req, res)
        # Preventing directory traversal on Windows platforms;
        # Backslashes (0x5c) in path_info are not interpreted as special
        # character in URI notation. So the value of path_info should be
        # normalize before accessing to the filesystem.

        # dirty hack for filesystem encoding; in nature, File.expand_path
        # should not be used for path normalization.  [Bug #3345]
        path = req.path_info.dup.force_encoding(Encoding.find("filesystem"))
        if trailing_pathsep?(req.path_info)
          # File.expand_path removes the trailing path separator.
          # Adding a character is a workaround to save it.
          #  File.expand_path("/aaa/")        #=> "/aaa"
          #  File.expand_path("/aaa/" + "x")  #=> "/aaa/x"
          expanded = File.expand_path(path + "x")
          expanded.chop!  # remove trailing "x"
        else
          expanded = File.expand_path(path)
        end
        expanded.force_encoding(req.path_info.encoding)
        req.path_info = expanded
      end

      def exec_handler(req, res)
        raise HTTPStatus::NotFound, "`#{req.path}' not found" unless @root
        if set_filename(req, res)
          handler = get_handler(req, res)
          call_callback(:HandlerCallback, req, res)
          h = handler.get_instance(@config, res.filename)
          h.service(req, res)
          return true
        end
        call_callback(:HandlerCallback, req, res)
        return false
      end

      def get_handler(req, res)
        suffix1 = (/\.(\w+)\z/ =~ res.filename) && $1.downcase
        if /\.(\w+)\.([\w\-]+)\z/ =~ res.filename
          if @options[:AcceptableLanguages].include?($2.downcase)
            suffix2 = $1.downcase
          end
        end
        handler_table = @options[:HandlerTable]
        return handler_table[suffix1] || handler_table[suffix2] ||
               HandlerTable[suffix1] || HandlerTable[suffix2] ||
               DefaultFileHandler
      end

      def set_filename(req, res)
        res.filename = @root.dup
        path_info = req.path_info.scan(%r|/[^/]*|)

        path_info.unshift("")  # dummy for checking @root dir
        while base = path_info.first
          break if base == "/"
          break unless File.directory?(File.expand_path(res.filename + base))
          shift_path_info(req, res, path_info)
          call_callback(:DirectoryCallback, req, res)
        end

        if base = path_info.first
          if base == "/"
            if file = search_index_file(req, res)
              shift_path_info(req, res, path_info, file)
              call_callback(:FileCallback, req, res)
              return true
            end
            shift_path_info(req, res, path_info)
          elsif file = search_file(req, res, base)
            shift_path_info(req, res, path_info, file)
            call_callback(:FileCallback, req, res)
            return true
          else
            raise HTTPStatus::NotFound, "`#{req.path}' not found."
          end
        end

        return false
      end

      def check_filename(req, res, name)
        if nondisclosure_name?(name) || windows_ambiguous_name?(name)
          @logger.warn("the request refers nondisclosure name `#{name}'.")
          raise HTTPStatus::NotFound, "`#{req.path}' not found."
        end
      end

      def shift_path_info(req, res, path_info, base=nil)
        tmp = path_info.shift
        base = base || tmp
        req.path_info = path_info.join
        req.script_name << base
        res.filename = File.expand_path(res.filename + base)
        check_filename(req, res, File.basename(res.filename))
      end

      def search_index_file(req, res)
        @config[:DirectoryIndex].each{|index|
          if file = search_file(req, res, "/"+index)
            return file
          end
        }
        return nil
      end

      def search_file(req, res, basename)
        langs = @options[:AcceptableLanguages]
        path = res.filename + basename
        if File.file?(path)
          return basename
        elsif langs.size > 0
          req.accept_language.each{|lang|
            path_with_lang = path + ".#{lang}"
            if langs.member?(lang) && File.file?(path_with_lang)
              return basename + ".#{lang}"
            end
          }
          (langs - req.accept_language).each{|lang|
            path_with_lang = path + ".#{lang}"
            if File.file?(path_with_lang)
              return basename + ".#{lang}"
            end
          }
        end
        return nil
      end

      def call_callback(callback_name, req, res)
        if cb = @options[callback_name]
          cb.call(req, res)
        end
      end

      def windows_ambiguous_name?(name)
        return true if /[. ]+\z/ =~ name
        return true if /::\$DATA\z/ =~ name
        return false
      end

      def nondisclosure_name?(name)
        @options[:NondisclosureName].each{|pattern|
          if File.fnmatch(pattern, name, File::FNM_CASEFOLD)
            return true
          end
        }
        return false
      end

      def set_dir_list(req, res)
        redirect_to_directory_uri(req, res)
        unless @options[:FancyIndexing]
          raise HTTPStatus::Forbidden, "no access permission to `#{req.path}'"
        end
        local_path = res.filename
        list = Dir::entries(local_path).collect{|name|
          next if name == "." || name == ".."
          next if nondisclosure_name?(name)
          next if windows_ambiguous_name?(name)
          st = (File::stat(File.join(local_path, name)) rescue nil)
          if st.nil?
            [ name, nil, -1 ]
          elsif st.directory?
            [ name + "/", st.mtime, -1 ]
          else
            [ name, st.mtime, st.size ]
          end
        }
        list.compact!

        query = req.query

        d0 = nil
        idx = nil
        %w[N M S].each_with_index do |q, i|
          if d = query.delete(q)
            idx ||= i
            d0 ||= d
          end
        end
        d0 ||= "A"
        idx ||= 0
        d1 = (d0 == "A") ? "D" : "A"

        if d0 == "A"
          list.sort!{|a,b| a[idx] <=> b[idx] }
        else
          list.sort!{|a,b| b[idx] <=> a[idx] }
        end

        namewidth = query["NameWidth"]
        if namewidth == "*"
          namewidth = nil
        elsif !namewidth or (namewidth = namewidth.to_i) < 2
          namewidth = 25
        end
        query = query.inject('') {|s, (k, v)| s << '&' << HTMLUtils::escape("#{k}=#{v}")}

        type = "text/html"
        case enc = Encoding.find('filesystem')
        when Encoding::US_ASCII, Encoding::ASCII_8BIT
        else
          type << "; charset=\"#{enc.name}\""
        end
        res['content-type'] = type

        title = "Index of #{HTMLUtils::escape(req.path)}"
        res.body = <<-_end_of_html_
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
  <HEAD>
    <TITLE>#{title}</TITLE>
    <style type="text/css">
    <!--
    .name, .mtime { text-align: left; }
    .size { text-align: right; }
    td { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
    table { border-collapse: collapse; }
    tr th { border-bottom: 2px groove; }
    //-->
    </style>
  </HEAD>
  <BODY>
    <H1>#{title}</H1>
        _end_of_html_

        res.body << "<TABLE width=\"100%\"><THEAD><TR>\n"
        res.body << "<TH class=\"name\"><A HREF=\"?N=#{d1}#{query}\">Name</A></TH>"
        res.body << "<TH class=\"mtime\"><A HREF=\"?M=#{d1}#{query}\">Last modified</A></TH>"
        res.body << "<TH class=\"size\"><A HREF=\"?S=#{d1}#{query}\">Size</A></TH>\n"
        res.body << "</TR></THEAD>\n"
        res.body << "<TBODY>\n"

        query.sub!(/\A&/, '?')
        list.unshift [ "..", File::mtime(local_path+"/.."), -1 ]
        list.each{ |name, time, size|
          if name == ".."
            dname = "Parent Directory"
          elsif namewidth and name.size > namewidth
            dname = name[0...(namewidth - 2)] << '..'
          else
            dname = name
          end
          s =  "<TR><TD class=\"name\"><A HREF=\"#{HTTPUtils::escape(name)}#{query if name.end_with?('/')}\">#{HTMLUtils::escape(dname)}</A></TD>"
          s << "<TD class=\"mtime\">" << (time ? time.strftime("%Y/%m/%d %H:%M") : "") << "</TD>"
          s << "<TD class=\"size\">" << (size >= 0 ? size.to_s : "-") << "</TD></TR>\n"
          res.body << s
        }
        res.body << "</TBODY></TABLE>"
        res.body << "<HR>"

        res.body << <<-_end_of_html_
    <ADDRESS>
     #{HTMLUtils::escape(@config[:ServerSoftware])}<BR>
     at #{req.host}:#{req.port}
    </ADDRESS>
  </BODY>
</HTML>
        _end_of_html_
      end

      # :startdoc:
    end
  end
end
PKGH[�x�NN,share/ruby/webrick/httpservlet/cgihandler.rbnu�[���# frozen_string_literal: false
#
# cgihandler.rb -- CGIHandler Class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: cgihandler.rb,v 1.27 2003/03/21 19:56:01 gotoyuzo Exp $

require 'rbconfig'
require 'tempfile'
require_relative '../config'
require_relative 'abstract'

module WEBrick
  module HTTPServlet

    ##
    # Servlet for handling CGI scripts
    #
    # Example:
    #
    #  server.mount('/cgi/my_script', WEBrick::HTTPServlet::CGIHandler,
    #               '/path/to/my_script')

    class CGIHandler < AbstractServlet
      Ruby = RbConfig.ruby # :nodoc:
      CGIRunner = "\"#{Ruby}\" \"#{WEBrick::Config::LIBDIR}/httpservlet/cgi_runner.rb\"" # :nodoc:
      CGIRunnerArray = [Ruby, "#{WEBrick::Config::LIBDIR}/httpservlet/cgi_runner.rb".freeze].freeze # :nodoc:

      ##
      # Creates a new CGI script servlet for the script at +name+

      def initialize(server, name)
        super(server, name)
        @script_filename = name
        @tempdir = server[:TempDir]
        interpreter = server[:CGIInterpreter]
        if interpreter.is_a?(Array)
          @cgicmd = CGIRunnerArray + interpreter
        else
          @cgicmd = "#{CGIRunner} #{interpreter}"
        end
      end

      # :stopdoc:

      def do_GET(req, res)
        cgi_in = IO::popen(@cgicmd, "wb")
        cgi_out = Tempfile.new("webrick.cgiout.", @tempdir, mode: IO::BINARY)
        cgi_out.set_encoding("ASCII-8BIT")
        cgi_err = Tempfile.new("webrick.cgierr.", @tempdir, mode: IO::BINARY)
        cgi_err.set_encoding("ASCII-8BIT")
        begin
          cgi_in.sync = true
          meta = req.meta_vars
          meta["SCRIPT_FILENAME"] = @script_filename
          meta["PATH"] = @config[:CGIPathEnv]
          meta.delete("HTTP_PROXY")
          if /mswin|bccwin|mingw/ =~ RUBY_PLATFORM
            meta["SystemRoot"] = ENV["SystemRoot"]
          end
          dump = Marshal.dump(meta)

          cgi_in.write("%8d" % cgi_out.path.bytesize)
          cgi_in.write(cgi_out.path)
          cgi_in.write("%8d" % cgi_err.path.bytesize)
          cgi_in.write(cgi_err.path)
          cgi_in.write("%8d" % dump.bytesize)
          cgi_in.write(dump)

          req.body { |chunk| cgi_in.write(chunk) }
        ensure
          cgi_in.close
          status = $?.exitstatus
          sleep 0.1 if /mswin|bccwin|mingw/ =~ RUBY_PLATFORM
          data = cgi_out.read
          cgi_out.close(true)
          if errmsg = cgi_err.read
            if errmsg.bytesize > 0
              @logger.error("CGIHandler: #{@script_filename}:\n" + errmsg)
            end
          end
          cgi_err.close(true)
        end

        if status != 0
          @logger.error("CGIHandler: #{@script_filename} exit with #{status}")
        end

        data = "" unless data
        raw_header, body = data.split(/^[\xd\xa]+/, 2)
        raise HTTPStatus::InternalServerError,
          "Premature end of script headers: #{@script_filename}" if body.nil?

        begin
          header = HTTPUtils::parse_header(raw_header)
          if /^(\d+)/ =~ header['status'][0]
            res.status = $1.to_i
            header.delete('status')
          end
          if header.has_key?('location')
            # RFC 3875 6.2.3, 6.2.4
            res.status = 302 unless (300...400) === res.status
          end
          if header.has_key?('set-cookie')
            header['set-cookie'].each{|k|
              res.cookies << Cookie.parse_set_cookie(k)
            }
            header.delete('set-cookie')
          end
          header.each{|key, val| res[key] = val.join(", ") }
        rescue => ex
          raise HTTPStatus::InternalServerError, ex.message
        end
        res.body = body
      end
      alias do_POST do_GET

      # :startdoc:
    end

  end
end
PKGH[~҆���*share/ruby/webrick/httpservlet/abstract.rbnu�[���# frozen_string_literal: false
#
# httpservlet.rb -- HTTPServlet Module
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: abstract.rb,v 1.24 2003/07/11 11:16:46 gotoyuzo Exp $

require_relative '../htmlutils'
require_relative '../httputils'
require_relative '../httpstatus'

module WEBrick
  module HTTPServlet
    class HTTPServletError < StandardError; end

    ##
    # AbstractServlet allows HTTP server modules to be reused across multiple
    # servers and allows encapsulation of functionality.
    #
    # By default a servlet will respond to GET, HEAD (through an alias to GET)
    # and OPTIONS requests.
    #
    # By default a new servlet is initialized for every request.  A servlet
    # instance can be reused by overriding ::get_instance in the
    # AbstractServlet subclass.
    #
    # == A Simple Servlet
    #
    #  class Simple < WEBrick::HTTPServlet::AbstractServlet
    #    def do_GET request, response
    #      status, content_type, body = do_stuff_with request
    #
    #      response.status = status
    #      response['Content-Type'] = content_type
    #      response.body = body
    #    end
    #
    #    def do_stuff_with request
    #      return 200, 'text/plain', 'you got a page'
    #    end
    #  end
    #
    # This servlet can be mounted on a server at a given path:
    #
    #   server.mount '/simple', Simple
    #
    # == Servlet Configuration
    #
    # Servlets can be configured via initialize.  The first argument is the
    # HTTP server the servlet is being initialized for.
    #
    #  class Configurable < Simple
    #    def initialize server, color, size
    #      super server
    #      @color = color
    #      @size = size
    #    end
    #
    #    def do_stuff_with request
    #      content = "<p " \
    #                %q{style="color: #{@color}; font-size: #{@size}"} \
    #                ">Hello, World!"
    #
    #      return 200, "text/html", content
    #    end
    #  end
    #
    # This servlet must be provided two arguments at mount time:
    #
    #   server.mount '/configurable', Configurable, 'red', '2em'

    class AbstractServlet

      ##
      # Factory for servlet instances that will handle a request from +server+
      # using +options+ from the mount point.  By default a new servlet
      # instance is created for every call.

      def self.get_instance(server, *options)
        self.new(server, *options)
      end

      ##
      # Initializes a new servlet for +server+ using +options+ which are
      # stored as-is in +@options+.  +@logger+ is also provided.

      def initialize(server, *options)
        @server = @config = server
        @logger = @server[:Logger]
        @options = options
      end

      ##
      # Dispatches to a +do_+ method based on +req+ if such a method is
      # available.  (+do_GET+ for a GET request).  Raises a MethodNotAllowed
      # exception if the method is not implemented.

      def service(req, res)
        method_name = "do_" + req.request_method.gsub(/-/, "_")
        if respond_to?(method_name)
          __send__(method_name, req, res)
        else
          raise HTTPStatus::MethodNotAllowed,
                "unsupported method `#{req.request_method}'."
        end
      end

      ##
      # Raises a NotFound exception

      def do_GET(req, res)
        raise HTTPStatus::NotFound, "not found."
      end

      ##
      # Dispatches to do_GET

      def do_HEAD(req, res)
        do_GET(req, res)
      end

      ##
      # Returns the allowed HTTP request methods

      def do_OPTIONS(req, res)
        m = self.methods.grep(/\Ado_([A-Z]+)\z/) {$1}
        m.sort!
        res["allow"] = m.join(",")
      end

      private

      ##
      # Redirects to a path ending in /

      def redirect_to_directory_uri(req, res)
        if req.path[-1] != ?/
          location = WEBrick::HTTPUtils.escape_path(req.path + "/")
          if req.query_string && req.query_string.bytesize > 0
            location << "?" << req.query_string
          end
          res.set_redirect(HTTPStatus::MovedPermanently, location)
        end
      end
    end

  end
end
PKGH[�g�+��share/ruby/webrick/cookie.rbnu�[���# frozen_string_literal: false
#
# cookie.rb -- Cookie class
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: cookie.rb,v 1.16 2002/09/21 12:23:35 gotoyuzo Exp $

require 'time'
require_relative 'httputils'

module WEBrick

  ##
  # Processes HTTP cookies

  class Cookie

    ##
    # The cookie name

    attr_reader :name

    ##
    # The cookie value

    attr_accessor :value

    ##
    # The cookie version

    attr_accessor :version

    ##
    # The cookie domain
    attr_accessor :domain

    ##
    # The cookie path

    attr_accessor :path

    ##
    # Is this a secure cookie?

    attr_accessor :secure

    ##
    # The cookie comment

    attr_accessor :comment

    ##
    # The maximum age of the cookie

    attr_accessor :max_age

    #attr_accessor :comment_url, :discard, :port

    ##
    # Creates a new cookie with the given +name+ and +value+

    def initialize(name, value)
      @name = name
      @value = value
      @version = 0     # Netscape Cookie

      @domain = @path = @secure = @comment = @max_age =
      @expires = @comment_url = @discard = @port = nil
    end

    ##
    # Sets the cookie expiration to the time +t+.  The expiration time may be
    # a false value to disable expiration or a Time or HTTP format time string
    # to set the expiration date.

    def expires=(t)
      @expires = t && (t.is_a?(Time) ? t.httpdate : t.to_s)
    end

    ##
    # Retrieves the expiration time as a Time

    def expires
      @expires && Time.parse(@expires)
    end

    ##
    # The cookie string suitable for use in an HTTP header

    def to_s
      ret = ""
      ret << @name << "=" << @value
      ret << "; " << "Version=" << @version.to_s if @version > 0
      ret << "; " << "Domain="  << @domain  if @domain
      ret << "; " << "Expires=" << @expires if @expires
      ret << "; " << "Max-Age=" << @max_age.to_s if @max_age
      ret << "; " << "Comment=" << @comment if @comment
      ret << "; " << "Path="    << @path if @path
      ret << "; " << "Secure"   if @secure
      ret
    end

    ##
    # Parses a Cookie field sent from the user-agent.  Returns an array of
    # cookies.

    def self.parse(str)
      if str
        ret = []
        cookie = nil
        ver = 0
        str.split(/;\s+/).each{|x|
          key, val = x.split(/=/,2)
          val = val ? HTTPUtils::dequote(val) : ""
          case key
          when "$Version"; ver = val.to_i
          when "$Path";    cookie.path = val
          when "$Domain";  cookie.domain = val
          when "$Port";    cookie.port = val
          else
            ret << cookie if cookie
            cookie = self.new(key, val)
            cookie.version = ver
          end
        }
        ret << cookie if cookie
        ret
      end
    end

    ##
    # Parses the cookie in +str+

    def self.parse_set_cookie(str)
      cookie_elem = str.split(/;/)
      first_elem = cookie_elem.shift
      first_elem.strip!
      key, value = first_elem.split(/=/, 2)
      cookie = new(key, HTTPUtils.dequote(value))
      cookie_elem.each{|pair|
        pair.strip!
        key, value = pair.split(/=/, 2)
        if value
          value = HTTPUtils.dequote(value.strip)
        end
        case key.downcase
        when "domain"  then cookie.domain  = value
        when "path"    then cookie.path    = value
        when "expires" then cookie.expires = value
        when "max-age" then cookie.max_age = Integer(value)
        when "comment" then cookie.comment = value
        when "version" then cookie.version = Integer(value)
        when "secure"  then cookie.secure = true
        end
      }
      return cookie
    end

    ##
    # Parses the cookies in +str+

    def self.parse_set_cookies(str)
      return str.split(/,(?=[^;,]*=)|,$/).collect{|c|
        parse_set_cookie(c)
      }
    end
  end
end
PKGH[G�Vs
s
share/ruby/webrick/httpauth.rbnu�[���# frozen_string_literal: false
#
# httpauth.rb -- HTTP access authentication
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpauth.rb,v 1.14 2003/07/22 19:20:42 gotoyuzo Exp $

require_relative 'httpauth/basicauth'
require_relative 'httpauth/digestauth'
require_relative 'httpauth/htpasswd'
require_relative 'httpauth/htdigest'
require_relative 'httpauth/htgroup'

module WEBrick

  ##
  # HTTPAuth provides both basic and digest authentication.
  #
  # To enable authentication for requests in WEBrick you will need a user
  # database and an authenticator.  To start, here's an Htpasswd database for
  # use with a DigestAuth authenticator:
  #
  #   config = { :Realm => 'DigestAuth example realm' }
  #
  #   htpasswd = WEBrick::HTTPAuth::Htpasswd.new 'my_password_file'
  #   htpasswd.auth_type = WEBrick::HTTPAuth::DigestAuth
  #   htpasswd.set_passwd config[:Realm], 'username', 'password'
  #   htpasswd.flush
  #
  # The +:Realm+ is used to provide different access to different groups
  # across several resources on a server.  Typically you'll need only one
  # realm for a server.
  #
  # This database can be used to create an authenticator:
  #
  #   config[:UserDB] = htpasswd
  #
  #   digest_auth = WEBrick::HTTPAuth::DigestAuth.new config
  #
  # To authenticate a request call #authenticate with a request and response
  # object in a servlet:
  #
  #   def do_GET req, res
  #     @authenticator.authenticate req, res
  #   end
  #
  # For digest authentication the authenticator must not be created every
  # request, it must be passed in as an option via WEBrick::HTTPServer#mount.

  module HTTPAuth
    module_function

    def _basic_auth(req, res, realm, req_field, res_field, err_type,
                    block) # :nodoc:
      user = pass = nil
      if /^Basic\s+(.*)/o =~ req[req_field]
        userpass = $1
        user, pass = userpass.unpack("m*")[0].split(":", 2)
      end
      if block.call(user, pass)
        req.user = user
        return
      end
      res[res_field] = "Basic realm=\"#{realm}\""
      raise err_type
    end

    ##
    # Simple wrapper for providing basic authentication for a request.  When
    # called with a request +req+, response +res+, authentication +realm+ and
    # +block+ the block will be called with a +username+ and +password+.  If
    # the block returns true the request is allowed to continue, otherwise an
    # HTTPStatus::Unauthorized error is raised.

    def basic_auth(req, res, realm, &block) # :yield: username, password
      _basic_auth(req, res, realm, "Authorization", "WWW-Authenticate",
                  HTTPStatus::Unauthorized, block)
    end

    ##
    # Simple wrapper for providing basic authentication for a proxied request.
    # When called with a request +req+, response +res+, authentication +realm+
    # and +block+ the block will be called with a +username+ and +password+.
    # If the block returns true the request is allowed to continue, otherwise
    # an HTTPStatus::ProxyAuthenticationRequired error is raised.

    def proxy_basic_auth(req, res, realm, &block) # :yield: username, password
      _basic_auth(req, res, realm, "Proxy-Authorization", "Proxy-Authenticate",
                  HTTPStatus::ProxyAuthenticationRequired, block)
    end
  end
end
PKGH[�f����share/ruby/tracer.rbnu�[���# frozen_string_literal: false
#--
# $Release Version: 0.3$
# $Revision: 1.12 $

##
# Outputs a source level execution trace of a Ruby program.
#
# It does this by registering an event handler with Kernel#set_trace_func for
# processing incoming events.  It also provides methods for filtering unwanted
# trace output (see Tracer.add_filter, Tracer.on, and Tracer.off).
#
# == Example
#
# Consider the following Ruby script
#
#   class A
#     def square(a)
#       return a*a
#     end
#   end
#
#   a = A.new
#   a.square(5)
#
# Running the above script using <code>ruby -r tracer example.rb</code> will
# output the following trace to STDOUT (Note you can also explicitly
# <code>require 'tracer'</code>)
#
#   #0:<internal:lib/rubygems/custom_require>:38:Kernel:<: -
#   #0:example.rb:3::-: class A
#   #0:example.rb:3::C: class A
#   #0:example.rb:4::-:   def square(a)
#   #0:example.rb:7::E: end
#   #0:example.rb:9::-: a = A.new
#   #0:example.rb:10::-: a.square(5)
#   #0:example.rb:4:A:>:   def square(a)
#   #0:example.rb:5:A:-:     return a*a
#   #0:example.rb:6:A:<:   end
#    |  |         | |  |
#    |  |         | |   ---------------------+ event
#    |  |         |  ------------------------+ class
#    |  |          --------------------------+ line
#    |   ------------------------------------+ filename
#     ---------------------------------------+ thread
#
# Symbol table used for displaying incoming events:
#
# +}+:: call a C-language routine
# +{+:: return from a C-language routine
# +>+:: call a Ruby method
# +C+:: start a class or module definition
# +E+:: finish a class or module definition
# +-+:: execute code on a new line
# +^+:: raise an exception
# +<+:: return from a Ruby method
#
# == Copyright
#
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
class Tracer

  class << self
    # display additional debug information (defaults to false)
    attr_accessor :verbose
    alias verbose? verbose

    # output stream used to output trace (defaults to STDOUT)
    attr_accessor :stdout

    # mutex lock used by tracer for displaying trace output
    attr_reader :stdout_mutex

    # display process id in trace output (defaults to false)
    attr_accessor :display_process_id
    alias display_process_id? display_process_id

    # display thread id in trace output (defaults to true)
    attr_accessor :display_thread_id
    alias display_thread_id? display_thread_id

    # display C-routine calls in trace output (defaults to false)
    attr_accessor :display_c_call
    alias display_c_call? display_c_call
  end

  Tracer::stdout = STDOUT
  Tracer::verbose = false
  Tracer::display_process_id = false
  Tracer::display_thread_id = true
  Tracer::display_c_call = false

  @stdout_mutex = Thread::Mutex.new

  # Symbol table used for displaying trace information
  EVENT_SYMBOL = {
    "line" => "-",
    "call" => ">",
    "return" => "<",
    "class" => "C",
    "end" => "E",
    "raise" => "^",
    "c-call" => "}",
    "c-return" => "{",
    "unknown" => "?"
  }

  def initialize # :nodoc:
    @threads = Hash.new
    if defined? Thread.main
      @threads[Thread.main.object_id] = 0
    else
      @threads[Thread.current.object_id] = 0
    end

    @get_line_procs = {}

    @filters = []
  end

  def stdout # :nodoc:
    Tracer.stdout
  end

  def on # :nodoc:
    if block_given?
      on
      begin
        yield
      ensure
        off
      end
    else
      set_trace_func method(:trace_func).to_proc
      stdout.print "Trace on\n" if Tracer.verbose?
    end
  end

  def off # :nodoc:
    set_trace_func nil
    stdout.print "Trace off\n" if Tracer.verbose?
  end

  def add_filter(p = nil, &b) # :nodoc:
    p ||= b
    @filters.push p
  end

  def set_get_line_procs(file, p = nil, &b) # :nodoc:
    p ||= b
    @get_line_procs[file] = p
  end

  def get_line(file, line) # :nodoc:
    if p = @get_line_procs[file]
      return p.call(line)
    end

    unless list = SCRIPT_LINES__[file]
      list = File.readlines(file) rescue []
      SCRIPT_LINES__[file] = list
    end

    if l = list[line - 1]
      l
    else
      "-\n"
    end
  end

  def get_thread_no # :nodoc:
    if no = @threads[Thread.current.object_id]
      no
    else
      @threads[Thread.current.object_id] = @threads.size
    end
  end

  def trace_func(event, file, line, id, binding, klass, *) # :nodoc:
    return if file == __FILE__

    for p in @filters
      return unless p.call event, file, line, id, binding, klass
    end

    return unless Tracer::display_c_call? or
      event != "c-call" && event != "c-return"

    Tracer::stdout_mutex.synchronize do
      if EVENT_SYMBOL[event]
        stdout.printf("<%d>", $$) if Tracer::display_process_id?
        stdout.printf("#%d:", get_thread_no) if Tracer::display_thread_id?
        if line == 0
          source = "?\n"
        else
          source = get_line(file, line)
        end
        stdout.printf("%s:%d:%s:%s: %s",
               file,
               line,
               klass || '',
               EVENT_SYMBOL[event],
               source)
      end
    end

  end

  # Reference to singleton instance of Tracer
  Single = new

  ##
  # Start tracing
  #
  # === Example
  #
  #   Tracer.on
  #   # code to trace here
  #   Tracer.off
  #
  # You can also pass a block:
  #
  #   Tracer.on {
  #     # trace everything in this block
  #   }

  def Tracer.on
    if block_given?
      Single.on{yield}
    else
      Single.on
    end
  end

  ##
  # Disable tracing

  def Tracer.off
    Single.off
  end

  ##
  # Register an event handler <code>p</code> which is called every time a line
  # in +file_name+ is executed.
  #
  # Example:
  #
  #   Tracer.set_get_line_procs("example.rb", lambda { |line|
  #     puts "line number executed is #{line}"
  #   })

  def Tracer.set_get_line_procs(file_name, p = nil, &b)
    p ||= b
    Single.set_get_line_procs(file_name, p)
  end

  ##
  # Used to filter unwanted trace output
  #
  # Example which only outputs lines of code executed within the Kernel class:
  #
  #   Tracer.add_filter do |event, file, line, id, binding, klass, *rest|
  #     "Kernel" == klass.to_s
  #   end

  def Tracer.add_filter(p = nil, &b)
    p ||= b
    Single.add_filter(p)
  end
end

# :stopdoc:
SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__

if $0 == __FILE__
  # direct call

  $0 = ARGV[0]
  ARGV.shift
  Tracer.on
  require $0
else
  # call Tracer.on only if required by -r command-line option
  count = caller.count {|bt| %r%/rubygems/core_ext/kernel_require\.rb:% !~ bt}
  if (defined?(Gem) and count == 0) or
     (!defined?(Gem) and count <= 1)
    Tracer.on
  end
end
# :startdoc:
PKGH[c�}���share/ruby/racc.rbnu�[���require 'racc/compat'
require 'racc/debugflags'
require 'racc/grammar'
require 'racc/state'
require 'racc/exception'
require 'racc/info'
PKGH[Q�:%��share/ruby/uri.rbnu�[���# frozen_string_literal: false
# URI is a module providing classes to handle Uniform Resource Identifiers
# (RFC2396[http://tools.ietf.org/html/rfc2396]).
#
# == Features
#
# * Uniform way of handling URIs.
# * Flexibility to introduce custom URI schemes.
# * Flexibility to have an alternate URI::Parser (or just different patterns
#   and regexp's).
#
# == Basic example
#
#   require 'uri'
#
#   uri = URI("http://foo.com/posts?id=30&limit=5#time=1305298413")
#   #=> #<URI::HTTP http://foo.com/posts?id=30&limit=5#time=1305298413>
#
#   uri.scheme    #=> "http"
#   uri.host      #=> "foo.com"
#   uri.path      #=> "/posts"
#   uri.query     #=> "id=30&limit=5"
#   uri.fragment  #=> "time=1305298413"
#
#   uri.to_s      #=> "http://foo.com/posts?id=30&limit=5#time=1305298413"
#
# == Adding custom URIs
#
#   module URI
#     class RSYNC < Generic
#       DEFAULT_PORT = 873
#     end
#     @@schemes['RSYNC'] = RSYNC
#   end
#   #=> URI::RSYNC
#
#   URI.scheme_list
#   #=> {"FILE"=>URI::File, "FTP"=>URI::FTP, "HTTP"=>URI::HTTP,
#   #    "HTTPS"=>URI::HTTPS, "LDAP"=>URI::LDAP, "LDAPS"=>URI::LDAPS,
#   #    "MAILTO"=>URI::MailTo, "RSYNC"=>URI::RSYNC}
#
#   uri = URI("rsync://rsync.foo.com")
#   #=> #<URI::RSYNC rsync://rsync.foo.com>
#
# == RFC References
#
# A good place to view an RFC spec is http://www.ietf.org/rfc.html.
#
# Here is a list of all related RFC's:
# - RFC822[http://tools.ietf.org/html/rfc822]
# - RFC1738[http://tools.ietf.org/html/rfc1738]
# - RFC2255[http://tools.ietf.org/html/rfc2255]
# - RFC2368[http://tools.ietf.org/html/rfc2368]
# - RFC2373[http://tools.ietf.org/html/rfc2373]
# - RFC2396[http://tools.ietf.org/html/rfc2396]
# - RFC2732[http://tools.ietf.org/html/rfc2732]
# - RFC3986[http://tools.ietf.org/html/rfc3986]
#
# == Class tree
#
# - URI::Generic (in uri/generic.rb)
#   - URI::File - (in uri/file.rb)
#   - URI::FTP - (in uri/ftp.rb)
#   - URI::HTTP - (in uri/http.rb)
#     - URI::HTTPS - (in uri/https.rb)
#   - URI::LDAP - (in uri/ldap.rb)
#     - URI::LDAPS - (in uri/ldaps.rb)
#   - URI::MailTo - (in uri/mailto.rb)
# - URI::Parser - (in uri/common.rb)
# - URI::REGEXP - (in uri/common.rb)
#   - URI::REGEXP::PATTERN - (in uri/common.rb)
# - URI::Util - (in uri/common.rb)
# - URI::Escape - (in uri/common.rb)
# - URI::Error - (in uri/common.rb)
#   - URI::InvalidURIError - (in uri/common.rb)
#   - URI::InvalidComponentError - (in uri/common.rb)
#   - URI::BadURIError - (in uri/common.rb)
#
# == Copyright Info
#
# Author:: Akira Yamada <akira@ruby-lang.org>
# Documentation::
#   Akira Yamada <akira@ruby-lang.org>
#   Dmitry V. Sabanin <sdmitry@lrn.ru>
#   Vincent Batts <vbatts@hashbangbash.com>
# License::
#  Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
#  You can redistribute it and/or modify it under the same term as Ruby.
# Revision:: $Id$
#

module URI
end

require 'uri/version'
require 'uri/common'
require 'uri/generic'
require 'uri/file'
require 'uri/ftp'
require 'uri/http'
require 'uri/https'
require 'uri/ldap'
require 'uri/ldaps'
require 'uri/mailto'
PKGH[_��HHshare/ruby/benchmark.rbnu�[���# frozen_string_literal: true
#--
# benchmark.rb - a performance benchmarking library
#
# $Id$
#
# Created by Gotoken (gotoken@notwork.org).
#
# Documentation by Gotoken (original RD), Lyle Johnson (RDoc conversion), and
# Gavin Sinclair (editing).
#++
#
# == Overview
#
# The Benchmark module provides methods for benchmarking Ruby code, giving
# detailed reports on the time taken for each task.
#

# The Benchmark module provides methods to measure and report the time
# used to execute Ruby code.
#
# * Measure the time to construct the string given by the expression
#   <code>"a"*1_000_000_000</code>:
#
#       require 'benchmark'
#
#       puts Benchmark.measure { "a"*1_000_000_000 }
#
#   On my machine (OSX 10.8.3 on i5 1.7 GHz) this generates:
#
#       0.350000   0.400000   0.750000 (  0.835234)
#
#   This report shows the user CPU time, system CPU time, the sum of
#   the user and system CPU times, and the elapsed real time. The unit
#   of time is seconds.
#
# * Do some experiments sequentially using the #bm method:
#
#       require 'benchmark'
#
#       n = 5000000
#       Benchmark.bm do |x|
#         x.report { for i in 1..n; a = "1"; end }
#         x.report { n.times do   ; a = "1"; end }
#         x.report { 1.upto(n) do ; a = "1"; end }
#       end
#
#   The result:
#
#              user     system      total        real
#          1.010000   0.000000   1.010000 (  1.014479)
#          1.000000   0.000000   1.000000 (  0.998261)
#          0.980000   0.000000   0.980000 (  0.981335)
#
# * Continuing the previous example, put a label in each report:
#
#       require 'benchmark'
#
#       n = 5000000
#       Benchmark.bm(7) do |x|
#         x.report("for:")   { for i in 1..n; a = "1"; end }
#         x.report("times:") { n.times do   ; a = "1"; end }
#         x.report("upto:")  { 1.upto(n) do ; a = "1"; end }
#       end
#
# The result:
#
#                     user     system      total        real
#       for:      1.010000   0.000000   1.010000 (  1.015688)
#       times:    1.000000   0.000000   1.000000 (  1.003611)
#       upto:     1.030000   0.000000   1.030000 (  1.028098)
#
# * The times for some benchmarks depend on the order in which items
#   are run.  These differences are due to the cost of memory
#   allocation and garbage collection. To avoid these discrepancies,
#   the #bmbm method is provided.  For example, to compare ways to
#   sort an array of floats:
#
#       require 'benchmark'
#
#       array = (1..1000000).map { rand }
#
#       Benchmark.bmbm do |x|
#         x.report("sort!") { array.dup.sort! }
#         x.report("sort")  { array.dup.sort  }
#       end
#
#   The result:
#
#        Rehearsal -----------------------------------------
#        sort!   1.490000   0.010000   1.500000 (  1.490520)
#        sort    1.460000   0.000000   1.460000 (  1.463025)
#        -------------------------------- total: 2.960000sec
#
#                    user     system      total        real
#        sort!   1.460000   0.000000   1.460000 (  1.460465)
#        sort    1.450000   0.010000   1.460000 (  1.448327)
#
# * Report statistics of sequential experiments with unique labels,
#   using the #benchmark method:
#
#       require 'benchmark'
#       include Benchmark         # we need the CAPTION and FORMAT constants
#
#       n = 5000000
#       Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
#         tf = x.report("for:")   { for i in 1..n; a = "1"; end }
#         tt = x.report("times:") { n.times do   ; a = "1"; end }
#         tu = x.report("upto:")  { 1.upto(n) do ; a = "1"; end }
#         [tf+tt+tu, (tf+tt+tu)/3]
#       end
#
#   The result:
#
#                     user     system      total        real
#        for:      0.950000   0.000000   0.950000 (  0.952039)
#        times:    0.980000   0.000000   0.980000 (  0.984938)
#        upto:     0.950000   0.000000   0.950000 (  0.946787)
#        >total:   2.880000   0.000000   2.880000 (  2.883764)
#        >avg:     0.960000   0.000000   0.960000 (  0.961255)

module Benchmark

  BENCHMARK_VERSION = "2002-04-25" # :nodoc:

  # Invokes the block with a Benchmark::Report object, which
  # may be used to collect and report on the results of individual
  # benchmark tests. Reserves +label_width+ leading spaces for
  # labels on each line. Prints +caption+ at the top of the
  # report, and uses +format+ to format each line.
  # Returns an array of Benchmark::Tms objects.
  #
  # If the block returns an array of
  # Benchmark::Tms objects, these will be used to format
  # additional lines of output. If +labels+ parameter are
  # given, these are used to label these extra lines.
  #
  # _Note_: Other methods provide a simpler interface to this one, and are
  # suitable for nearly all benchmarking requirements.  See the examples in
  # Benchmark, and the #bm and #bmbm methods.
  #
  # Example:
  #
  #     require 'benchmark'
  #     include Benchmark          # we need the CAPTION and FORMAT constants
  #
  #     n = 5000000
  #     Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
  #       tf = x.report("for:")   { for i in 1..n; a = "1"; end }
  #       tt = x.report("times:") { n.times do   ; a = "1"; end }
  #       tu = x.report("upto:")  { 1.upto(n) do ; a = "1"; end }
  #       [tf+tt+tu, (tf+tt+tu)/3]
  #     end
  #
  # Generates:
  #
  #                     user     system      total        real
  #       for:      0.970000   0.000000   0.970000 (  0.970493)
  #       times:    0.990000   0.000000   0.990000 (  0.989542)
  #       upto:     0.970000   0.000000   0.970000 (  0.972854)
  #       >total:   2.930000   0.000000   2.930000 (  2.932889)
  #       >avg:     0.976667   0.000000   0.976667 (  0.977630)
  #

  def benchmark(caption = "", label_width = nil, format = nil, *labels) # :yield: report
    sync = STDOUT.sync
    STDOUT.sync = true
    label_width ||= 0
    label_width += 1
    format ||= FORMAT
    print ' '*label_width + caption unless caption.empty?
    report = Report.new(label_width, format)
    results = yield(report)
    Array === results and results.grep(Tms).each {|t|
      print((labels.shift || t.label || "").ljust(label_width), t.format(format))
    }
    report.list
  ensure
    STDOUT.sync = sync unless sync.nil?
  end


  # A simple interface to the #benchmark method, #bm generates sequential
  # reports with labels. +label_width+ and +labels+ parameters have the same
  # meaning as for #benchmark.
  #
  #     require 'benchmark'
  #
  #     n = 5000000
  #     Benchmark.bm(7) do |x|
  #       x.report("for:")   { for i in 1..n; a = "1"; end }
  #       x.report("times:") { n.times do   ; a = "1"; end }
  #       x.report("upto:")  { 1.upto(n) do ; a = "1"; end }
  #     end
  #
  # Generates:
  #
  #                     user     system      total        real
  #       for:      0.960000   0.000000   0.960000 (  0.957966)
  #       times:    0.960000   0.000000   0.960000 (  0.960423)
  #       upto:     0.950000   0.000000   0.950000 (  0.954864)
  #

  def bm(label_width = 0, *labels, &blk) # :yield: report
    benchmark(CAPTION, label_width, FORMAT, *labels, &blk)
  end


  # Sometimes benchmark results are skewed because code executed
  # earlier encounters different garbage collection overheads than
  # that run later. #bmbm attempts to minimize this effect by running
  # the tests twice, the first time as a rehearsal in order to get the
  # runtime environment stable, the second time for
  # real. GC.start is executed before the start of each of
  # the real timings; the cost of this is not included in the
  # timings. In reality, though, there's only so much that #bmbm can
  # do, and the results are not guaranteed to be isolated from garbage
  # collection and other effects.
  #
  # Because #bmbm takes two passes through the tests, it can
  # calculate the required label width.
  #
  #       require 'benchmark'
  #
  #       array = (1..1000000).map { rand }
  #
  #       Benchmark.bmbm do |x|
  #         x.report("sort!") { array.dup.sort! }
  #         x.report("sort")  { array.dup.sort  }
  #       end
  #
  # Generates:
  #
  #        Rehearsal -----------------------------------------
  #        sort!   1.440000   0.010000   1.450000 (  1.446833)
  #        sort    1.440000   0.000000   1.440000 (  1.448257)
  #        -------------------------------- total: 2.890000sec
  #
  #                    user     system      total        real
  #        sort!   1.460000   0.000000   1.460000 (  1.458065)
  #        sort    1.450000   0.000000   1.450000 (  1.455963)
  #
  # #bmbm yields a Benchmark::Job object and returns an array of
  # Benchmark::Tms objects.
  #
  def bmbm(width = 0) # :yield: job
    job = Job.new(width)
    yield(job)
    width = job.width + 1
    sync = STDOUT.sync
    STDOUT.sync = true

    # rehearsal
    puts 'Rehearsal '.ljust(width+CAPTION.length,'-')
    ets = job.list.inject(Tms.new) { |sum,(label,item)|
      print label.ljust(width)
      res = Benchmark.measure(&item)
      print res.format
      sum + res
    }.format("total: %tsec")
    print " #{ets}\n\n".rjust(width+CAPTION.length+2,'-')

    # take
    print ' '*width + CAPTION
    job.list.map { |label,item|
      GC.start
      print label.ljust(width)
      Benchmark.measure(label, &item).tap { |res| print res }
    }
  ensure
    STDOUT.sync = sync unless sync.nil?
  end

  #
  # Returns the time used to execute the given block as a
  # Benchmark::Tms object. Takes +label+ option.
  #
  #       require 'benchmark'
  #
  #       n = 1000000
  #
  #       time = Benchmark.measure do
  #         n.times { a = "1" }
  #       end
  #       puts time
  #
  # Generates:
  #
  #        0.220000   0.000000   0.220000 (  0.227313)
  #
  def measure(label = "") # :yield:
    t0, r0 = Process.times, Process.clock_gettime(Process::CLOCK_MONOTONIC)
    yield
    t1, r1 = Process.times, Process.clock_gettime(Process::CLOCK_MONOTONIC)
    Benchmark::Tms.new(t1.utime  - t0.utime,
                       t1.stime  - t0.stime,
                       t1.cutime - t0.cutime,
                       t1.cstime - t0.cstime,
                       r1 - r0,
                       label)
  end

  #
  # Returns the elapsed real time used to execute the given block.
  #
  def realtime # :yield:
    r0 = Process.clock_gettime(Process::CLOCK_MONOTONIC)
    yield
    Process.clock_gettime(Process::CLOCK_MONOTONIC) - r0
  end

  module_function :benchmark, :measure, :realtime, :bm, :bmbm

  #
  # A Job is a sequence of labelled blocks to be processed by the
  # Benchmark.bmbm method.  It is of little direct interest to the user.
  #
  class Job # :nodoc:
    #
    # Returns an initialized Job instance.
    # Usually, one doesn't call this method directly, as new
    # Job objects are created by the #bmbm method.
    # +width+ is a initial value for the label offset used in formatting;
    # the #bmbm method passes its +width+ argument to this constructor.
    #
    def initialize(width)
      @width = width
      @list = []
    end

    #
    # Registers the given label and block pair in the job list.
    #
    def item(label = "", &blk) # :yield:
      raise ArgumentError, "no block" unless block_given?
      label = label.to_s
      w = label.length
      @width = w if @width < w
      @list << [label, blk]
      self
    end

    alias report item

    # An array of 2-element arrays, consisting of label and block pairs.
    attr_reader :list

    # Length of the widest label in the #list.
    attr_reader :width
  end

  #
  # This class is used by the Benchmark.benchmark and Benchmark.bm methods.
  # It is of little direct interest to the user.
  #
  class Report # :nodoc:
    #
    # Returns an initialized Report instance.
    # Usually, one doesn't call this method directly, as new
    # Report objects are created by the #benchmark and #bm methods.
    # +width+ and +format+ are the label offset and
    # format string used by Tms#format.
    #
    def initialize(width = 0, format = nil)
      @width, @format, @list = width, format, []
    end

    #
    # Prints the +label+ and measured time for the block,
    # formatted by +format+. See Tms#format for the
    # formatting rules.
    #
    def item(label = "", *format, &blk) # :yield:
      print label.to_s.ljust(@width)
      @list << res = Benchmark.measure(label, &blk)
      print res.format(@format, *format)
      res
    end

    alias report item

    # An array of Benchmark::Tms objects representing each item.
    attr_reader :list
  end



  #
  # A data object, representing the times associated with a benchmark
  # measurement.
  #
  class Tms

    # Default caption, see also Benchmark::CAPTION
    CAPTION = "      user     system      total        real\n"

    # Default format string, see also Benchmark::FORMAT
    FORMAT = "%10.6u %10.6y %10.6t %10.6r\n"

    # User CPU time
    attr_reader :utime

    # System CPU time
    attr_reader :stime

    # User CPU time of children
    attr_reader :cutime

    # System CPU time of children
    attr_reader :cstime

    # Elapsed real time
    attr_reader :real

    # Total time, that is +utime+ + +stime+ + +cutime+ + +cstime+
    attr_reader :total

    # Label
    attr_reader :label

    #
    # Returns an initialized Tms object which has
    # +utime+ as the user CPU time, +stime+ as the system CPU time,
    # +cutime+ as the children's user CPU time, +cstime+ as the children's
    # system CPU time, +real+ as the elapsed real time and +label+ as the label.
    #
    def initialize(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil)
      @utime, @stime, @cutime, @cstime, @real, @label = utime, stime, cutime, cstime, real, label.to_s
      @total = @utime + @stime + @cutime + @cstime
    end

    #
    # Returns a new Tms object whose times are the sum of the times for this
    # Tms object, plus the time required to execute the code block (+blk+).
    #
    def add(&blk) # :yield:
      self + Benchmark.measure(&blk)
    end

    #
    # An in-place version of #add.
    # Changes the times of this Tms object by making it the sum of the times
    # for this Tms object, plus the time required to execute
    # the code block (+blk+).
    #
    def add!(&blk)
      t = Benchmark.measure(&blk)
      @utime  = utime + t.utime
      @stime  = stime + t.stime
      @cutime = cutime + t.cutime
      @cstime = cstime + t.cstime
      @real   = real + t.real
      self
    end

    #
    # Returns a new Tms object obtained by memberwise summation
    # of the individual times for this Tms object with those of the +other+
    # Tms object.
    # This method and #/() are useful for taking statistics.
    #
    def +(other); memberwise(:+, other) end

    #
    # Returns a new Tms object obtained by memberwise subtraction
    # of the individual times for the +other+ Tms object from those of this
    # Tms object.
    #
    def -(other); memberwise(:-, other) end

    #
    # Returns a new Tms object obtained by memberwise multiplication
    # of the individual times for this Tms object by +x+.
    #
    def *(x); memberwise(:*, x) end

    #
    # Returns a new Tms object obtained by memberwise division
    # of the individual times for this Tms object by +x+.
    # This method and #+() are useful for taking statistics.
    #
    def /(x); memberwise(:/, x) end

    #
    # Returns the contents of this Tms object as
    # a formatted string, according to a +format+ string
    # like that passed to Kernel.format. In addition, #format
    # accepts the following extensions:
    #
    # <tt>%u</tt>::     Replaced by the user CPU time, as reported by Tms#utime.
    # <tt>%y</tt>::     Replaced by the system CPU time, as reported by #stime (Mnemonic: y of "s*y*stem")
    # <tt>%U</tt>::     Replaced by the children's user CPU time, as reported by Tms#cutime
    # <tt>%Y</tt>::     Replaced by the children's system CPU time, as reported by Tms#cstime
    # <tt>%t</tt>::     Replaced by the total CPU time, as reported by Tms#total
    # <tt>%r</tt>::     Replaced by the elapsed real time, as reported by Tms#real
    # <tt>%n</tt>::     Replaced by the label string, as reported by Tms#label (Mnemonic: n of "*n*ame")
    #
    # If +format+ is not given, FORMAT is used as default value, detailing the
    # user, system and real elapsed time.
    #
    def format(format = nil, *args)
      str = (format || FORMAT).dup
      str.gsub!(/(%[-+.\d]*)n/) { "#{$1}s" % label }
      str.gsub!(/(%[-+.\d]*)u/) { "#{$1}f" % utime }
      str.gsub!(/(%[-+.\d]*)y/) { "#{$1}f" % stime }
      str.gsub!(/(%[-+.\d]*)U/) { "#{$1}f" % cutime }
      str.gsub!(/(%[-+.\d]*)Y/) { "#{$1}f" % cstime }
      str.gsub!(/(%[-+.\d]*)t/) { "#{$1}f" % total }
      str.gsub!(/(%[-+.\d]*)r/) { "(#{$1}f)" % real }
      format ? str % args : str
    end

    #
    # Same as #format.
    #
    def to_s
      format
    end

    #
    # Returns a new 6-element array, consisting of the
    # label, user CPU time, system CPU time, children's
    # user CPU time, children's system CPU time and elapsed
    # real time.
    #
    def to_a
      [@label, @utime, @stime, @cutime, @cstime, @real]
    end

    protected

    #
    # Returns a new Tms object obtained by memberwise operation +op+
    # of the individual times for this Tms object with those of the other
    # Tms object (+x+).
    #
    # +op+ can be a mathematical operation such as <tt>+</tt>, <tt>-</tt>,
    # <tt>*</tt>, <tt>/</tt>
    #
    def memberwise(op, x)
      case x
      when Benchmark::Tms
        Benchmark::Tms.new(utime.__send__(op, x.utime),
                           stime.__send__(op, x.stime),
                           cutime.__send__(op, x.cutime),
                           cstime.__send__(op, x.cstime),
                           real.__send__(op, x.real)
                           )
      else
        Benchmark::Tms.new(utime.__send__(op, x),
                           stime.__send__(op, x),
                           cutime.__send__(op, x),
                           cstime.__send__(op, x),
                           real.__send__(op, x)
                           )
      end
    end
  end

  # The default caption string (heading above the output times).
  CAPTION = Benchmark::Tms::CAPTION

  # The default format string used to display times.  See also Benchmark::Tms#format.
  FORMAT = Benchmark::Tms::FORMAT
end
PKGH[��+DDshare/ruby/tracer/version.rbnu�[���# frozen_string_literal: true

class Tracer
  VERSION = "0.1.0"
end
PKGH[@�.`.`share/ruby/set.rbnu�[���#--
# frozen_string_literal: true
#
# set.rb - defines the Set class
#++
# Copyright (c) 2002-2016 Akinori MUSHA <knu@iDaemons.org>
#
# Documentation by Akinori MUSHA and Gavin Sinclair.
#
# All rights reserved.  You can redistribute and/or modify it under the same
# terms as Ruby.
#
#   $Id$
#
# == Overview
#
# This library provides the Set class, which deals with a collection
# of unordered values with no duplicates.  It is a hybrid of Array's
# intuitive inter-operation facilities and Hash's fast lookup.  If you
# need to keep values sorted in some order, use the SortedSet class.
#
# The method +to_set+ is added to Enumerable for convenience.
#
# See the Set and SortedSet documentation for examples of usage.


#
# Set implements a collection of unordered values with no duplicates.
# This is a hybrid of Array's intuitive inter-operation facilities and
# Hash's fast lookup.
#
# Set is easy to use with Enumerable objects (implementing +each+).
# Most of the initializer methods and binary operators accept generic
# Enumerable objects besides sets and arrays.  An Enumerable object
# can be converted to Set using the +to_set+ method.
#
# Set uses Hash as storage, so you must note the following points:
#
# * Equality of elements is determined according to Object#eql? and
#   Object#hash.  Use Set#compare_by_identity to make a set compare
#   its elements by their identity.
# * Set assumes that the identity of each element does not change
#   while it is stored.  Modifying an element of a set will render the
#   set to an unreliable state.
# * When a string is to be stored, a frozen copy of the string is
#   stored instead unless the original string is already frozen.
#
# == Comparison
#
# The comparison operators <, >, <=, and >= are implemented as
# shorthand for the {proper_,}{subset?,superset?} methods.  However,
# the <=> operator is intentionally left out because not every pair of
# sets is comparable ({x, y} vs. {x, z} for example).
#
# == Example
#
#   require 'set'
#   s1 = Set[1, 2]                        #=> #<Set: {1, 2}>
#   s2 = [1, 2].to_set                    #=> #<Set: {1, 2}>
#   s1 == s2                              #=> true
#   s1.add("foo")                         #=> #<Set: {1, 2, "foo"}>
#   s1.merge([2, 6])                      #=> #<Set: {1, 2, "foo", 6}>
#   s1.subset?(s2)                        #=> false
#   s2.subset?(s1)                        #=> true
#
# == Contact
#
#   - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
class Set
  include Enumerable

  # Creates a new set containing the given objects.
  #
  #     Set[1, 2]                   # => #<Set: {1, 2}>
  #     Set[1, 2, 1]                # => #<Set: {1, 2}>
  #     Set[1, 'c', :s]             # => #<Set: {1, "c", :s}>
  def self.[](*ary)
    new(ary)
  end

  # Creates a new set containing the elements of the given enumerable
  # object.
  #
  # If a block is given, the elements of enum are preprocessed by the
  # given block.
  #
  #     Set.new([1, 2])                       #=> #<Set: {1, 2}>
  #     Set.new([1, 2, 1])                    #=> #<Set: {1, 2}>
  #     Set.new([1, 'c', :s])                 #=> #<Set: {1, "c", :s}>
  #     Set.new(1..5)                         #=> #<Set: {1, 2, 3, 4, 5}>
  #     Set.new([1, 2, 3]) { |x| x * x }      #=> #<Set: {1, 4, 9}>
  def initialize(enum = nil, &block) # :yields: o
    @hash ||= Hash.new(false)

    enum.nil? and return

    if block
      do_with_enum(enum) { |o| add(block[o]) }
    else
      merge(enum)
    end
  end

  # Makes the set compare its elements by their identity and returns
  # self.  This method may not be supported by all subclasses of Set.
  def compare_by_identity
    if @hash.respond_to?(:compare_by_identity)
      @hash.compare_by_identity
      self
    else
      raise NotImplementedError, "#{self.class.name}\##{__method__} is not implemented"
    end
  end

  # Returns true if the set will compare its elements by their
  # identity.  Also see Set#compare_by_identity.
  def compare_by_identity?
    @hash.respond_to?(:compare_by_identity?) && @hash.compare_by_identity?
  end

  def do_with_enum(enum, &block) # :nodoc:
    if enum.respond_to?(:each_entry)
      enum.each_entry(&block) if block
    elsif enum.respond_to?(:each)
      enum.each(&block) if block
    else
      raise ArgumentError, "value must be enumerable"
    end
  end
  private :do_with_enum

  # Dup internal hash.
  def initialize_dup(orig)
    super
    @hash = orig.instance_variable_get(:@hash).dup
  end

  # Clone internal hash.
  def initialize_clone(orig)
    super
    @hash = orig.instance_variable_get(:@hash).clone
  end

  def freeze    # :nodoc:
    @hash.freeze
    super
  end

  # Returns the number of elements.
  def size
    @hash.size
  end
  alias length size

  # Returns true if the set contains no elements.
  def empty?
    @hash.empty?
  end

  # Removes all elements and returns self.
  #
  #     set = Set[1, 'c', :s]             #=> #<Set: {1, "c", :s}>
  #     set.clear                         #=> #<Set: {}>
  #     set                               #=> #<Set: {}>
  def clear
    @hash.clear
    self
  end

  # Replaces the contents of the set with the contents of the given
  # enumerable object and returns self.
  #
  #     set = Set[1, 'c', :s]             #=> #<Set: {1, "c", :s}>
  #     set.replace([1, 2])               #=> #<Set: {1, 2}>
  #     set                               #=> #<Set: {1, 2}>
  def replace(enum)
    if enum.instance_of?(self.class)
      @hash.replace(enum.instance_variable_get(:@hash))
      self
    else
      do_with_enum(enum)  # make sure enum is enumerable before calling clear
      clear
      merge(enum)
    end
  end

  # Converts the set to an array.  The order of elements is uncertain.
  #
  #     Set[1, 2].to_a                    #=> [1, 2]
  #     Set[1, 'c', :s].to_a              #=> [1, "c", :s]
  def to_a
    @hash.keys
  end

  # Returns self if no arguments are given.  Otherwise, converts the
  # set to another with klass.new(self, *args, &block).
  #
  # In subclasses, returns klass.new(self, *args, &block) unless
  # overridden.
  def to_set(klass = Set, *args, &block)
    return self if instance_of?(Set) && klass == Set && block.nil? && args.empty?
    klass.new(self, *args, &block)
  end

  def flatten_merge(set, seen = Set.new) # :nodoc:
    set.each { |e|
      if e.is_a?(Set)
        if seen.include?(e_id = e.object_id)
          raise ArgumentError, "tried to flatten recursive Set"
        end

        seen.add(e_id)
        flatten_merge(e, seen)
        seen.delete(e_id)
      else
        add(e)
      end
    }

    self
  end
  protected :flatten_merge

  # Returns a new set that is a copy of the set, flattening each
  # containing set recursively.
  def flatten
    self.class.new.flatten_merge(self)
  end

  # Equivalent to Set#flatten, but replaces the receiver with the
  # result in place.  Returns nil if no modifications were made.
  def flatten!
    replace(flatten()) if any? { |e| e.is_a?(Set) }
  end

  # Returns true if the set contains the given object.
  #
  # Note that <code>include?</code> and <code>member?</code> do not test member
  # equality using <code>==</code> as do other Enumerables.
  #
  # See also Enumerable#include?
  def include?(o)
    @hash[o]
  end
  alias member? include?

  # Returns true if the set is a superset of the given set.
  def superset?(set)
    case
    when set.instance_of?(self.class) && @hash.respond_to?(:>=)
      @hash >= set.instance_variable_get(:@hash)
    when set.is_a?(Set)
      size >= set.size && set.all? { |o| include?(o) }
    else
      raise ArgumentError, "value must be a set"
    end
  end
  alias >= superset?

  # Returns true if the set is a proper superset of the given set.
  def proper_superset?(set)
    case
    when set.instance_of?(self.class) && @hash.respond_to?(:>)
      @hash > set.instance_variable_get(:@hash)
    when set.is_a?(Set)
      size > set.size && set.all? { |o| include?(o) }
    else
      raise ArgumentError, "value must be a set"
    end
  end
  alias > proper_superset?

  # Returns true if the set is a subset of the given set.
  def subset?(set)
    case
    when set.instance_of?(self.class) && @hash.respond_to?(:<=)
      @hash <= set.instance_variable_get(:@hash)
    when set.is_a?(Set)
      size <= set.size && all? { |o| set.include?(o) }
    else
      raise ArgumentError, "value must be a set"
    end
  end
  alias <= subset?

  # Returns true if the set is a proper subset of the given set.
  def proper_subset?(set)
    case
    when set.instance_of?(self.class) && @hash.respond_to?(:<)
      @hash < set.instance_variable_get(:@hash)
    when set.is_a?(Set)
      size < set.size && all? { |o| set.include?(o) }
    else
      raise ArgumentError, "value must be a set"
    end
  end
  alias < proper_subset?

  # Returns true if the set and the given set have at least one
  # element in common.
  #
  #   Set[1, 2, 3].intersect? Set[4, 5]   #=> false
  #   Set[1, 2, 3].intersect? Set[3, 4]   #=> true
  def intersect?(set)
    set.is_a?(Set) or raise ArgumentError, "value must be a set"
    if size < set.size
      any? { |o| set.include?(o) }
    else
      set.any? { |o| include?(o) }
    end
  end

  # Returns true if the set and the given set have no element in
  # common.  This method is the opposite of +intersect?+.
  #
  #   Set[1, 2, 3].disjoint? Set[3, 4]   #=> false
  #   Set[1, 2, 3].disjoint? Set[4, 5]   #=> true
  def disjoint?(set)
    !intersect?(set)
  end

  # Calls the given block once for each element in the set, passing
  # the element as parameter.  Returns an enumerator if no block is
  # given.
  def each(&block)
    block or return enum_for(__method__) { size }
    @hash.each_key(&block)
    self
  end

  # Adds the given object to the set and returns self.  Use +merge+ to
  # add many elements at once.
  #
  #     Set[1, 2].add(3)                    #=> #<Set: {1, 2, 3}>
  #     Set[1, 2].add([3, 4])               #=> #<Set: {1, 2, [3, 4]}>
  #     Set[1, 2].add(2)                    #=> #<Set: {1, 2}>
  def add(o)
    @hash[o] = true
    self
  end
  alias << add

  # Adds the given object to the set and returns self.  If the
  # object is already in the set, returns nil.
  #
  #     Set[1, 2].add?(3)                    #=> #<Set: {1, 2, 3}>
  #     Set[1, 2].add?([3, 4])               #=> #<Set: {1, 2, [3, 4]}>
  #     Set[1, 2].add?(2)                    #=> nil
  def add?(o)
    add(o) unless include?(o)
  end

  # Deletes the given object from the set and returns self.  Use +subtract+ to
  # delete many items at once.
  def delete(o)
    @hash.delete(o)
    self
  end

  # Deletes the given object from the set and returns self.  If the
  # object is not in the set, returns nil.
  def delete?(o)
    delete(o) if include?(o)
  end

  # Deletes every element of the set for which block evaluates to
  # true, and returns self. Returns an enumerator if no block is
  # given.
  def delete_if
    block_given? or return enum_for(__method__) { size }
    # @hash.delete_if should be faster, but using it breaks the order
    # of enumeration in subclasses.
    select { |o| yield o }.each { |o| @hash.delete(o) }
    self
  end

  # Deletes every element of the set for which block evaluates to
  # false, and returns self. Returns an enumerator if no block is
  # given.
  def keep_if
    block_given? or return enum_for(__method__) { size }
    # @hash.keep_if should be faster, but using it breaks the order of
    # enumeration in subclasses.
    reject { |o| yield o }.each { |o| @hash.delete(o) }
    self
  end

  # Replaces the elements with ones returned by collect().
  # Returns an enumerator if no block is given.
  def collect!
    block_given? or return enum_for(__method__) { size }
    set = self.class.new
    each { |o| set << yield(o) }
    replace(set)
  end
  alias map! collect!

  # Equivalent to Set#delete_if, but returns nil if no changes were
  # made. Returns an enumerator if no block is given.
  def reject!(&block)
    block or return enum_for(__method__) { size }
    n = size
    delete_if(&block)
    self if size != n
  end

  # Equivalent to Set#keep_if, but returns nil if no changes were
  # made. Returns an enumerator if no block is given.
  def select!(&block)
    block or return enum_for(__method__) { size }
    n = size
    keep_if(&block)
    self if size != n
  end

  # Equivalent to Set#select!
  alias filter! select!

  # Merges the elements of the given enumerable object to the set and
  # returns self.
  def merge(enum)
    if enum.instance_of?(self.class)
      @hash.update(enum.instance_variable_get(:@hash))
    else
      do_with_enum(enum) { |o| add(o) }
    end

    self
  end

  # Deletes every element that appears in the given enumerable object
  # and returns self.
  def subtract(enum)
    do_with_enum(enum) { |o| delete(o) }
    self
  end

  # Returns a new set built by merging the set and the elements of the
  # given enumerable object.
  #
  #     Set[1, 2, 3] | Set[2, 4, 5]         #=> #<Set: {1, 2, 3, 4, 5}>
  #     Set[1, 5, 'z'] | (1..6)             #=> #<Set: {1, 5, "z", 2, 3, 4, 6}>
  def |(enum)
    dup.merge(enum)
  end
  alias + |
  alias union |

  # Returns a new set built by duplicating the set, removing every
  # element that appears in the given enumerable object.
  #
  #     Set[1, 3, 5] - Set[1, 5]                #=> #<Set: {3}>
  #     Set['a', 'b', 'z'] - ['a', 'c']         #=> #<Set: {"b", "z"}>
  def -(enum)
    dup.subtract(enum)
  end
  alias difference -

  # Returns a new set containing elements common to the set and the
  # given enumerable object.
  #
  #     Set[1, 3, 5] & Set[3, 2, 1]             #=> #<Set: {3, 1}>
  #     Set['a', 'b', 'z'] & ['a', 'b', 'c']    #=> #<Set: {"a", "b"}>
  def &(enum)
    n = self.class.new
    do_with_enum(enum) { |o| n.add(o) if include?(o) }
    n
  end
  alias intersection &

  # Returns a new set containing elements exclusive between the set
  # and the given enumerable object.  (set ^ enum) is equivalent to
  # ((set | enum) - (set & enum)).
  #
  #     Set[1, 2] ^ Set[2, 3]                   #=> #<Set: {3, 1}>
  #     Set[1, 'b', 'c'] ^ ['b', 'd']           #=> #<Set: {"d", 1, "c"}>
  def ^(enum)
    n = Set.new(enum)
    each { |o| n.add(o) unless n.delete?(o) }
    n
  end

  # Returns true if two sets are equal.  The equality of each couple
  # of elements is defined according to Object#eql?.
  #
  #     Set[1, 2] == Set[2, 1]                       #=> true
  #     Set[1, 3, 5] == Set[1, 5]                    #=> false
  #     Set['a', 'b', 'c'] == Set['a', 'c', 'b']     #=> true
  #     Set['a', 'b', 'c'] == ['a', 'c', 'b']        #=> false
  def ==(other)
    if self.equal?(other)
      true
    elsif other.instance_of?(self.class)
      @hash == other.instance_variable_get(:@hash)
    elsif other.is_a?(Set) && self.size == other.size
      other.all? { |o| @hash.include?(o) }
    else
      false
    end
  end

  def hash      # :nodoc:
    @hash.hash
  end

  def eql?(o)   # :nodoc:
    return false unless o.is_a?(Set)
    @hash.eql?(o.instance_variable_get(:@hash))
  end

  # Resets the internal state after modification to existing elements
  # and returns self.
  #
  # Elements will be reindexed and deduplicated.
  def reset
    if @hash.respond_to?(:rehash)
      @hash.rehash # This should perform frozenness check.
    else
      raise FrozenError, "can't modify frozen #{self.class.name}" if frozen?
    end
    self
  end

  # Returns true if the given object is a member of the set,
  # and false otherwise.
  #
  # Used in case statements:
  #
  #   require 'set'
  #
  #   case :apple
  #   when Set[:potato, :carrot]
  #     "vegetable"
  #   when Set[:apple, :banana]
  #     "fruit"
  #   end
  #   # => "fruit"
  #
  # Or by itself:
  #
  #   Set[1, 2, 3] === 2   #=> true
  #   Set[1, 2, 3] === 4   #=> false
  #
  alias === include?

  # Classifies the set by the return value of the given block and
  # returns a hash of {value => set of elements} pairs.  The block is
  # called once for each element of the set, passing the element as
  # parameter.
  #
  #   require 'set'
  #   files = Set.new(Dir.glob("*.rb"))
  #   hash = files.classify { |f| File.mtime(f).year }
  #   hash       #=> {2000=>#<Set: {"a.rb", "b.rb"}>,
  #              #    2001=>#<Set: {"c.rb", "d.rb", "e.rb"}>,
  #              #    2002=>#<Set: {"f.rb"}>}
  #
  # Returns an enumerator if no block is given.
  def classify # :yields: o
    block_given? or return enum_for(__method__) { size }

    h = {}

    each { |i|
      (h[yield(i)] ||= self.class.new).add(i)
    }

    h
  end

  # Divides the set into a set of subsets according to the commonality
  # defined by the given block.
  #
  # If the arity of the block is 2, elements o1 and o2 are in common
  # if block.call(o1, o2) is true.  Otherwise, elements o1 and o2 are
  # in common if block.call(o1) == block.call(o2).
  #
  #   require 'set'
  #   numbers = Set[1, 3, 4, 6, 9, 10, 11]
  #   set = numbers.divide { |i,j| (i - j).abs == 1 }
  #   set        #=> #<Set: {#<Set: {1}>,
  #              #           #<Set: {11, 9, 10}>,
  #              #           #<Set: {3, 4}>,
  #              #           #<Set: {6}>}>
  #
  # Returns an enumerator if no block is given.
  def divide(&func)
    func or return enum_for(__method__) { size }

    if func.arity == 2
      require 'tsort'

      class << dig = {}         # :nodoc:
        include TSort

        alias tsort_each_node each_key
        def tsort_each_child(node, &block)
          fetch(node).each(&block)
        end
      end

      each { |u|
        dig[u] = a = []
        each{ |v| func.call(u, v) and a << v }
      }

      set = Set.new()
      dig.each_strongly_connected_component { |css|
        set.add(self.class.new(css))
      }
      set
    else
      Set.new(classify(&func).values)
    end
  end

  InspectKey = :__inspect_key__         # :nodoc:

  # Returns a string containing a human-readable representation of the
  # set ("#<Set: {element1, element2, ...}>").
  def inspect
    ids = (Thread.current[InspectKey] ||= [])

    if ids.include?(object_id)
      return sprintf('#<%s: {...}>', self.class.name)
    end

    ids << object_id
    begin
      return sprintf('#<%s: {%s}>', self.class, to_a.inspect[1..-2])
    ensure
      ids.pop
    end
  end

  alias to_s inspect

  def pretty_print(pp)  # :nodoc:
    pp.text sprintf('#<%s: {', self.class.name)
    pp.nest(1) {
      pp.seplist(self) { |o|
        pp.pp o
      }
    }
    pp.text "}>"
  end

  def pretty_print_cycle(pp)    # :nodoc:
    pp.text sprintf('#<%s: {%s}>', self.class.name, empty? ? '' : '...')
  end
end

#
# SortedSet implements a Set that guarantees that its elements are
# yielded in sorted order (according to the return values of their
# #<=> methods) when iterating over them.
#
# All elements that are added to a SortedSet must respond to the <=>
# method for comparison.
#
# Also, all elements must be <em>mutually comparable</em>: <tt>el1 <=>
# el2</tt> must not return <tt>nil</tt> for any elements <tt>el1</tt>
# and <tt>el2</tt>, else an ArgumentError will be raised when
# iterating over the SortedSet.
#
# == Example
#
#   require "set"
#
#   set = SortedSet.new([2, 1, 5, 6, 4, 5, 3, 3, 3])
#   ary = []
#
#   set.each do |obj|
#     ary << obj
#   end
#
#   p ary # => [1, 2, 3, 4, 5, 6]
#
#   set2 = SortedSet.new([1, 2, "3"])
#   set2.each { |obj| } # => raises ArgumentError: comparison of Fixnum with String failed
#
class SortedSet < Set
  @@setup = false
  @@mutex = Mutex.new

  class << self
    def [](*ary)        # :nodoc:
      new(ary)
    end

    def setup   # :nodoc:
      @@setup and return
      ret = nil

      @@mutex.synchronize do
        # a hack to shut up warning
        alias_method :old_init, :initialize

        begin
          require 'rbtree'
          ret = :rbtree

          module_eval <<-END, __FILE__, __LINE__+1
            def initialize(*args)
              @hash = RBTree.new
              super
            end

            def add(o)
              o.respond_to?(:<=>) or raise ArgumentError, "value must respond to <=>"
              super
            end
            alias << add
          END
        rescue LoadError
          ret = true
          module_eval <<-END, __FILE__, __LINE__+1
            def initialize(*args)
              @keys = nil
              super
            end

            def clear
              @keys = nil
              super
            end

            def replace(enum)
              @keys = nil
              super
            end

            def add(o)
              o.respond_to?(:<=>) or raise ArgumentError, "value must respond to <=>"
              @keys = nil
              super
            end
            alias << add

            def delete(o)
              @keys = nil
              @hash.delete(o)
              self
            end

            def delete_if
              block_given? or return enum_for(__method__) { size }
              n = @hash.size
              super
              @keys = nil if @hash.size != n
              self
            end

            def keep_if
              block_given? or return enum_for(__method__) { size }
              n = @hash.size
              super
              @keys = nil if @hash.size != n
              self
            end

            def merge(enum)
              @keys = nil
              super
            end

            def each(&block)
              block or return enum_for(__method__) { size }
              to_a.each(&block)
              self
            end

            def to_a
              (@keys = @hash.keys).sort! unless @keys
              @keys
            end

            def freeze
              to_a
              super
            end

            def rehash
              @keys = nil
              super
            end
          END
        end
        # a hack to shut up warning
        remove_method :old_init

        @@setup = true
        ret
      end
    end
  end

  def initialize(*args, &block) # :nodoc:
    if SortedSet.setup == :rbtree
      @hash = RBTree.new
    else
      @keys = nil
    end
    super
  end
end

module Enumerable
  # Makes a set from the enumerable object with given arguments.
  # Needs to +require "set"+ to use this method.
  def to_set(klass = Set, *args, &block)
    klass.new(self, *args, &block)
  end
end

# =begin
# == RestricedSet class
# RestricedSet implements a set with restrictions defined by a given
# block.
#
# === Super class
#     Set
#
# === Class Methods
# --- RestricedSet::new(enum = nil) { |o| ... }
# --- RestricedSet::new(enum = nil) { |rset, o| ... }
#     Creates a new restricted set containing the elements of the given
#     enumerable object.  Restrictions are defined by the given block.
#
#     If the block's arity is 2, it is called with the RestrictedSet
#     itself and an object to see if the object is allowed to be put in
#     the set.
#
#     Otherwise, the block is called with an object to see if the object
#     is allowed to be put in the set.
#
# === Instance Methods
# --- restriction_proc
#     Returns the restriction procedure of the set.
#
# =end
#
# class RestricedSet < Set
#   def initialize(*args, &block)
#     @proc = block or raise ArgumentError, "missing a block"
#
#     if @proc.arity == 2
#       instance_eval %{
#       def add(o)
#         @hash[o] = true if @proc.call(self, o)
#         self
#       end
#       alias << add
#
#       def add?(o)
#         if include?(o) || !@proc.call(self, o)
#           nil
#         else
#           @hash[o] = true
#           self
#         end
#       end
#
#       def replace(enum)
#         enum.respond_to?(:each) or raise ArgumentError, "value must be enumerable"
#         clear
#         enum.each_entry { |o| add(o) }
#
#         self
#       end
#
#       def merge(enum)
#         enum.respond_to?(:each) or raise ArgumentError, "value must be enumerable"
#         enum.each_entry { |o| add(o) }
#
#         self
#       end
#       }
#     else
#       instance_eval %{
#       def add(o)
#         if @proc.call(o)
#           @hash[o] = true
#         end
#         self
#       end
#       alias << add
#
#       def add?(o)
#         if include?(o) || !@proc.call(o)
#           nil
#         else
#           @hash[o] = true
#           self
#         end
#       end
#       }
#     end
#
#     super(*args)
#   end
#
#   def restriction_proc
#     @proc
#   end
# end

# Tests have been moved to test/test_set.rb.
PKGH[���D[�[�share/ruby/csv.rbnu�[���# encoding: US-ASCII
# frozen_string_literal: true
# = csv.rb -- CSV Reading and Writing
#
# Created by James Edward Gray II on 2005-10-31.
#
# See CSV for documentation.
#
# == Description
#
# Welcome to the new and improved CSV.
#
# This version of the CSV library began its life as FasterCSV. FasterCSV was
# intended as a replacement to Ruby's then standard CSV library. It was
# designed to address concerns users of that library had and it had three
# primary goals:
#
# 1.  Be significantly faster than CSV while remaining a pure Ruby library.
# 2.  Use a smaller and easier to maintain code base. (FasterCSV eventually
#     grew larger, was also but considerably richer in features. The parsing
#     core remains quite small.)
# 3.  Improve on the CSV interface.
#
# Obviously, the last one is subjective. I did try to defer to the original
# interface whenever I didn't have a compelling reason to change it though, so
# hopefully this won't be too radically different.
#
# We must have met our goals because FasterCSV was renamed to CSV and replaced
# the original library as of Ruby 1.9. If you are migrating code from 1.8 or
# earlier, you may have to change your code to comply with the new interface.
#
# == What's the Different From the Old CSV?
#
# I'm sure I'll miss something, but I'll try to mention most of the major
# differences I am aware of, to help others quickly get up to speed:
#
# === CSV Parsing
#
# * This parser is m17n aware. See CSV for full details.
# * This library has a stricter parser and will throw MalformedCSVErrors on
#   problematic data.
# * This library has a less liberal idea of a line ending than CSV. What you
#   set as the <tt>:row_sep</tt> is law. It can auto-detect your line endings
#   though.
# * The old library returned empty lines as <tt>[nil]</tt>. This library calls
#   them <tt>[]</tt>.
# * This library has a much faster parser.
#
# === Interface
#
# * CSV now uses Hash-style parameters to set options.
# * CSV no longer has generate_row() or parse_row().
# * The old CSV's Reader and Writer classes have been dropped.
# * CSV::open() is now more like Ruby's open().
# * CSV objects now support most standard IO methods.
# * CSV now has a new() method used to wrap objects like String and IO for
#   reading and writing.
# * CSV::generate() is different from the old method.
# * CSV no longer supports partial reads. It works line-by-line.
# * CSV no longer allows the instance methods to override the separators for
#   performance reasons. They must be set in the constructor.
#
# If you use this library and find yourself missing any functionality I have
# trimmed, please {let me know}[mailto:james@grayproductions.net].
#
# == Documentation
#
# See CSV for documentation.
#
# == What is CSV, really?
#
# CSV maintains a pretty strict definition of CSV taken directly from
# {the RFC}[http://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one
# place and that is to make using this library easier. CSV will parse all valid
# CSV.
#
# What you don't want to do is to feed CSV invalid data. Because of the way the
# CSV format works, it's common for a parser to need to read until the end of
# the file to be sure a field is invalid. This consumes a lot of time and memory.
#
# Luckily, when working with invalid CSV, Ruby's built-in methods will almost
# always be superior in every way. For example, parsing non-quoted fields is as
# easy as:
#
#   data.split(",")
#
# == Questions and/or Comments
#
# Feel free to email {James Edward Gray II}[mailto:james@grayproductions.net]
# with any questions.

require "forwardable"
require "English"
require "date"
require "stringio"

require_relative "csv/fields_converter"
require_relative "csv/match_p"
require_relative "csv/parser"
require_relative "csv/row"
require_relative "csv/table"
require_relative "csv/writer"

using CSV::MatchP if CSV.const_defined?(:MatchP)

#
# This class provides a complete interface to CSV files and data. It offers
# tools to enable you to read and write to and from Strings or IO objects, as
# needed.
#
# The most generic interface of the library is:
#
#    csv = CSV.new(string_or_io, **options)
#
#    # Reading: IO object should be open for read
#    csv.read # => array of rows
#    # or
#    csv.each do |row|
#      # ...
#    end
#    # or
#    row = csv.shift
#
#    # Writing: IO object should be open for write
#    csv << row
#
# There are several specialized class methods for one-statement reading or writing,
# described in the Specialized Methods section.
#
# If a String is passed into ::new, it is internally wrapped into a StringIO object.
#
# +options+ can be used for specifying the particular CSV flavor (column
# separators, row separators, value quoting and so on), and for data conversion,
# see Data Conversion section for the description of the latter.
#
# == Specialized Methods
#
# === Reading
#
#   # From a file: all at once
#   arr_of_rows = CSV.read("path/to/file.csv", **options)
#   # iterator-style:
#   CSV.foreach("path/to/file.csv", **options) do |row|
#     # ...
#   end
#
#   # From a string
#   arr_of_rows = CSV.parse("CSV,data,String", **options)
#   # or
#   CSV.parse("CSV,data,String", **options) do |row|
#     # ...
#   end
#
# === Writing
#
#   # To a file
#   CSV.open("path/to/file.csv", "wb") do |csv|
#     csv << ["row", "of", "CSV", "data"]
#     csv << ["another", "row"]
#     # ...
#   end
#
#   # To a String
#   csv_string = CSV.generate do |csv|
#     csv << ["row", "of", "CSV", "data"]
#     csv << ["another", "row"]
#     # ...
#   end
#
# === Shortcuts
#
#   # Core extensions for converting one line
#   csv_string = ["CSV", "data"].to_csv   # to CSV
#   csv_array  = "CSV,String".parse_csv   # from CSV
#
#   # CSV() method
#   CSV             { |csv_out| csv_out << %w{my data here} }  # to $stdout
#   CSV(csv = "")   { |csv_str| csv_str << %w{my data here} }  # to a String
#   CSV($stderr)    { |csv_err| csv_err << %w{my data here} }  # to $stderr
#   CSV($stdin)     { |csv_in|  csv_in.each { |row| p row } }  # from $stdin
#
# == Data Conversion
#
# === CSV with headers
#
# CSV allows to specify column names of CSV file, whether they are in data, or
# provided separately. If headers are specified, reading methods return an instance
# of CSV::Table, consisting of CSV::Row.
#
#   # Headers are part of data
#   data = CSV.parse(<<~ROWS, headers: true)
#     Name,Department,Salary
#     Bob,Engineering,1000
#     Jane,Sales,2000
#     John,Management,5000
#   ROWS
#
#   data.class      #=> CSV::Table
#   data.first      #=> #<CSV::Row "Name":"Bob" "Department":"Engineering" "Salary":"1000">
#   data.first.to_h #=> {"Name"=>"Bob", "Department"=>"Engineering", "Salary"=>"1000"}
#
#   # Headers provided by developer
#   data = CSV.parse('Bob,Engineering,1000', headers: %i[name department salary])
#   data.first      #=> #<CSV::Row name:"Bob" department:"Engineering" salary:"1000">
#
# === Typed data reading
#
# CSV allows to provide a set of data _converters_ e.g. transformations to try on input
# data. Converter could be a symbol from CSV::Converters constant's keys, or lambda.
#
#   # Without any converters:
#   CSV.parse('Bob,2018-03-01,100')
#   #=> [["Bob", "2018-03-01", "100"]]
#
#   # With built-in converters:
#   CSV.parse('Bob,2018-03-01,100', converters: %i[numeric date])
#   #=> [["Bob", #<Date: 2018-03-01>, 100]]
#
#   # With custom converters:
#   CSV.parse('Bob,2018-03-01,100', converters: [->(v) { Time.parse(v) rescue v }])
#   #=> [["Bob", 2018-03-01 00:00:00 +0200, "100"]]
#
# == CSV and Character Encodings (M17n or Multilingualization)
#
# This new CSV parser is m17n savvy.  The parser works in the Encoding of the IO
# or String object being read from or written to. Your data is never transcoded
# (unless you ask Ruby to transcode it for you) and will literally be parsed in
# the Encoding it is in. Thus CSV will return Arrays or Rows of Strings in the
# Encoding of your data. This is accomplished by transcoding the parser itself
# into your Encoding.
#
# Some transcoding must take place, of course, to accomplish this multiencoding
# support. For example, <tt>:col_sep</tt>, <tt>:row_sep</tt>, and
# <tt>:quote_char</tt> must be transcoded to match your data.  Hopefully this
# makes the entire process feel transparent, since CSV's defaults should just
# magically work for your data. However, you can set these values manually in
# the target Encoding to avoid the translation.
#
# It's also important to note that while all of CSV's core parser is now
# Encoding agnostic, some features are not. For example, the built-in
# converters will try to transcode data to UTF-8 before making conversions.
# Again, you can provide custom converters that are aware of your Encodings to
# avoid this translation. It's just too hard for me to support native
# conversions in all of Ruby's Encodings.
#
# Anyway, the practical side of this is simple: make sure IO and String objects
# passed into CSV have the proper Encoding set and everything should just work.
# CSV methods that allow you to open IO objects (CSV::foreach(), CSV::open(),
# CSV::read(), and CSV::readlines()) do allow you to specify the Encoding.
#
# One minor exception comes when generating CSV into a String with an Encoding
# that is not ASCII compatible. There's no existing data for CSV to use to
# prepare itself and thus you will probably need to manually specify the desired
# Encoding for most of those cases. It will try to guess using the fields in a
# row of output though, when using CSV::generate_line() or Array#to_csv().
#
# I try to point out any other Encoding issues in the documentation of methods
# as they come up.
#
# This has been tested to the best of my ability with all non-"dummy" Encodings
# Ruby ships with. However, it is brave new code and may have some bugs.
# Please feel free to {report}[mailto:james@grayproductions.net] any issues you
# find with it.
#
class CSV

  # The error thrown when the parser encounters illegal CSV formatting.
  class MalformedCSVError < RuntimeError
    attr_reader :line_number
    alias_method :lineno, :line_number
    def initialize(message, line_number)
      @line_number = line_number
      super("#{message} in line #{line_number}.")
    end
  end

  #
  # A FieldInfo Struct contains details about a field's position in the data
  # source it was read from.  CSV will pass this Struct to some blocks that make
  # decisions based on field structure.  See CSV.convert_fields() for an
  # example.
  #
  # <b><tt>index</tt></b>::  The zero-based index of the field in its row.
  # <b><tt>line</tt></b>::   The line of the data source this row is from.
  # <b><tt>header</tt></b>:: The header for the column, when available.
  #
  FieldInfo = Struct.new(:index, :line, :header)

  # A Regexp used to find and convert some common Date formats.
  DateMatcher     = / \A(?: (\w+,?\s+)?\w+\s+\d{1,2},?\s+\d{2,4} |
                            \d{4}-\d{2}-\d{2} )\z /x
  # A Regexp used to find and convert some common DateTime formats.
  DateTimeMatcher =
    / \A(?: (\w+,?\s+)?\w+\s+\d{1,2}\s+\d{1,2}:\d{1,2}:\d{1,2},?\s+\d{2,4} |
            \d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2} |
            # ISO-8601
            \d{4}-\d{2}-\d{2}
              (?:T\d{2}:\d{2}(?::\d{2}(?:\.\d+)?(?:[+-]\d{2}(?::\d{2})|Z)?)?)?
        )\z /x

  # The encoding used by all converters.
  ConverterEncoding = Encoding.find("UTF-8")

  #
  # This Hash holds the built-in converters of CSV that can be accessed by name.
  # You can select Converters with CSV.convert() or through the +options+ Hash
  # passed to CSV::new().
  #
  # <b><tt>:integer</tt></b>::    Converts any field Integer() accepts.
  # <b><tt>:float</tt></b>::      Converts any field Float() accepts.
  # <b><tt>:numeric</tt></b>::    A combination of <tt>:integer</tt>
  #                               and <tt>:float</tt>.
  # <b><tt>:date</tt></b>::       Converts any field Date::parse() accepts.
  # <b><tt>:date_time</tt></b>::  Converts any field DateTime::parse() accepts.
  # <b><tt>:all</tt></b>::        All built-in converters.  A combination of
  #                               <tt>:date_time</tt> and <tt>:numeric</tt>.
  #
  # All built-in converters transcode field data to UTF-8 before attempting a
  # conversion.  If your data cannot be transcoded to UTF-8 the conversion will
  # fail and the field will remain unchanged.
  #
  # This Hash is intentionally left unfrozen and users should feel free to add
  # values to it that can be accessed by all CSV objects.
  #
  # To add a combo field, the value should be an Array of names.  Combo fields
  # can be nested with other combo fields.
  #
  Converters  = {
    integer:   lambda { |f|
      Integer(f.encode(ConverterEncoding)) rescue f
    },
    float:     lambda { |f|
      Float(f.encode(ConverterEncoding)) rescue f
    },
    numeric:   [:integer, :float],
    date:      lambda { |f|
      begin
        e = f.encode(ConverterEncoding)
        e.match?(DateMatcher) ? Date.parse(e) : f
      rescue  # encoding conversion or date parse errors
        f
      end
    },
    date_time: lambda { |f|
      begin
        e = f.encode(ConverterEncoding)
        e.match?(DateTimeMatcher) ? DateTime.parse(e) : f
      rescue  # encoding conversion or date parse errors
        f
      end
    },
    all:       [:date_time, :numeric],
  }

  #
  # This Hash holds the built-in header converters of CSV that can be accessed
  # by name. You can select HeaderConverters with CSV.header_convert() or
  # through the +options+ Hash passed to CSV::new().
  #
  # <b><tt>:downcase</tt></b>::  Calls downcase() on the header String.
  # <b><tt>:symbol</tt></b>::    Leading/trailing spaces are dropped, string is
  #                              downcased, remaining spaces are replaced with
  #                              underscores, non-word characters are dropped,
  #                              and finally to_sym() is called.
  #
  # All built-in header converters transcode header data to UTF-8 before
  # attempting a conversion. If your data cannot be transcoded to UTF-8 the
  # conversion will fail and the header will remain unchanged.
  #
  # This Hash is intentionally left unfrozen and users should feel free to add
  # values to it that can be accessed by all CSV objects.
  #
  # To add a combo field, the value should be an Array of names. Combo fields
  # can be nested with other combo fields.
  #
  HeaderConverters = {
    downcase: lambda { |h| h.encode(ConverterEncoding).downcase },
    symbol:   lambda { |h|
      h.encode(ConverterEncoding).downcase.gsub(/[^\s\w]+/, "").strip.
                                           gsub(/\s+/, "_").to_sym
    }
  }

  #
  # The options used when no overrides are given by calling code. They are:
  #
  # <b><tt>:col_sep</tt></b>::            <tt>","</tt>
  # <b><tt>:row_sep</tt></b>::            <tt>:auto</tt>
  # <b><tt>:quote_char</tt></b>::         <tt>'"'</tt>
  # <b><tt>:field_size_limit</tt></b>::   +nil+
  # <b><tt>:converters</tt></b>::         +nil+
  # <b><tt>:unconverted_fields</tt></b>:: +nil+
  # <b><tt>:headers</tt></b>::            +false+
  # <b><tt>:return_headers</tt></b>::     +false+
  # <b><tt>:header_converters</tt></b>::  +nil+
  # <b><tt>:skip_blanks</tt></b>::        +false+
  # <b><tt>:force_quotes</tt></b>::       +false+
  # <b><tt>:skip_lines</tt></b>::         +nil+
  # <b><tt>:liberal_parsing</tt></b>::    +false+
  # <b><tt>:quote_empty</tt></b>::        +true+
  #
  DEFAULT_OPTIONS = {
    col_sep:            ",",
    row_sep:            :auto,
    quote_char:         '"',
    field_size_limit:   nil,
    converters:         nil,
    unconverted_fields: nil,
    headers:            false,
    return_headers:     false,
    header_converters:  nil,
    skip_blanks:        false,
    force_quotes:       false,
    skip_lines:         nil,
    liberal_parsing:    false,
    quote_empty:        true,
  }.freeze

  class << self
    #
    # This method will return a CSV instance, just like CSV::new(), but the
    # instance will be cached and returned for all future calls to this method for
    # the same +data+ object (tested by Object#object_id()) with the same
    # +options+.
    #
    # If a block is given, the instance is passed to the block and the return
    # value becomes the return value of the block.
    #
    def instance(data = $stdout, **options)
      # create a _signature_ for this method call, data object and options
      sig = [data.object_id] +
            options.values_at(*DEFAULT_OPTIONS.keys.sort_by { |sym| sym.to_s })

      # fetch or create the instance for this signature
      @@instances ||= Hash.new
      instance = (@@instances[sig] ||= new(data, **options))

      if block_given?
        yield instance  # run block, if given, returning result
      else
        instance        # or return the instance
      end
    end

    #
    # :call-seq:
    #   filter( **options ) { |row| ... }
    #   filter( input, **options ) { |row| ... }
    #   filter( input, output, **options ) { |row| ... }
    #
    # This method is a convenience for building Unix-like filters for CSV data.
    # Each row is yielded to the provided block which can alter it as needed.
    # After the block returns, the row is appended to +output+ altered or not.
    #
    # The +input+ and +output+ arguments can be anything CSV::new() accepts
    # (generally String or IO objects). If not given, they default to
    # <tt>ARGF</tt> and <tt>$stdout</tt>.
    #
    # The +options+ parameter is also filtered down to CSV::new() after some
    # clever key parsing. Any key beginning with <tt>:in_</tt> or
    # <tt>:input_</tt> will have that leading identifier stripped and will only
    # be used in the +options+ Hash for the +input+ object. Keys starting with
    # <tt>:out_</tt> or <tt>:output_</tt> affect only +output+. All other keys
    # are assigned to both objects.
    #
    # The <tt>:output_row_sep</tt> +option+ defaults to
    # <tt>$INPUT_RECORD_SEPARATOR</tt> (<tt>$/</tt>).
    #
    def filter(input=nil, output=nil, **options)
      # parse options for input, output, or both
      in_options, out_options = Hash.new, {row_sep: $INPUT_RECORD_SEPARATOR}
      options.each do |key, value|
        case key.to_s
        when /\Ain(?:put)?_(.+)\Z/
          in_options[$1.to_sym] = value
        when /\Aout(?:put)?_(.+)\Z/
          out_options[$1.to_sym] = value
        else
          in_options[key]  = value
          out_options[key] = value
        end
      end
      # build input and output wrappers
      input  = new(input  || ARGF,    **in_options)
      output = new(output || $stdout, **out_options)

      # read, yield, write
      input.each do |row|
        yield row
        output << row
      end
    end

    #
    # This method is intended as the primary interface for reading CSV files. You
    # pass a +path+ and any +options+ you wish to set for the read. Each row of
    # file will be passed to the provided +block+ in turn.
    #
    # The +options+ parameter can be anything CSV::new() understands. This method
    # also understands an additional <tt>:encoding</tt> parameter that you can use
    # to specify the Encoding of the data in the file to be read. You must provide
    # this unless your data is in Encoding::default_external(). CSV will use this
    # to determine how to parse the data. You may provide a second Encoding to
    # have the data transcoded as it is read. For example,
    # <tt>encoding: "UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file
    # but transcode it to UTF-8 before CSV parses it.
    #
    def foreach(path, mode="r", **options, &block)
      return to_enum(__method__, path, mode, **options) unless block_given?
      open(path, mode, **options) do |csv|
        csv.each(&block)
      end
    end

    #
    # :call-seq:
    #   generate( str, **options ) { |csv| ... }
    #   generate( **options ) { |csv| ... }
    #
    # This method wraps a String you provide, or an empty default String, in a
    # CSV object which is passed to the provided block. You can use the block to
    # append CSV rows to the String and when the block exits, the final String
    # will be returned.
    #
    # Note that a passed String *is* modified by this method. Call dup() before
    # passing if you need a new String.
    #
    # The +options+ parameter can be anything CSV::new() understands.  This method
    # understands an additional <tt>:encoding</tt> parameter when not passed a
    # String to set the base Encoding for the output.  CSV needs this hint if you
    # plan to output non-ASCII compatible data.
    #
    def generate(str=nil, **options)
      # add a default empty String, if none was given
      if str
        str = StringIO.new(str)
        str.seek(0, IO::SEEK_END)
      else
        encoding = options[:encoding]
        str = +""
        str.force_encoding(encoding) if encoding
      end
      csv = new(str, **options) # wrap
      yield csv         # yield for appending
      csv.string        # return final String
    end

    #
    # This method is a shortcut for converting a single row (Array) into a CSV
    # String.
    #
    # The +options+ parameter can be anything CSV::new() understands. This method
    # understands an additional <tt>:encoding</tt> parameter to set the base
    # Encoding for the output. This method will try to guess your Encoding from
    # the first non-+nil+ field in +row+, if possible, but you may need to use
    # this parameter as a backup plan.
    #
    # The <tt>:row_sep</tt> +option+ defaults to <tt>$INPUT_RECORD_SEPARATOR</tt>
    # (<tt>$/</tt>) when calling this method.
    #
    def generate_line(row, **options)
      options = {row_sep: $INPUT_RECORD_SEPARATOR}.merge(options)
      str = +""
      if options[:encoding]
        str.force_encoding(options[:encoding])
      elsif field = row.find {|f| f.is_a?(String)}
        str.force_encoding(field.encoding)
      end
      (new(str, **options) << row).string
    end

    #
    # :call-seq:
    #   open( filename, mode = "rb", **options ) { |faster_csv| ... }
    #   open( filename, **options ) { |faster_csv| ... }
    #   open( filename, mode = "rb", **options )
    #   open( filename, **options )
    #
    # This method opens an IO object, and wraps that with CSV. This is intended
    # as the primary interface for writing a CSV file.
    #
    # You must pass a +filename+ and may optionally add a +mode+ for Ruby's
    # open(). You may also pass an optional Hash containing any +options+
    # CSV::new() understands as the final argument.
    #
    # This method works like Ruby's open() call, in that it will pass a CSV object
    # to a provided block and close it when the block terminates, or it will
    # return the CSV object when no block is provided. (*Note*: This is different
    # from the Ruby 1.8 CSV library which passed rows to the block. Use
    # CSV::foreach() for that behavior.)
    #
    # You must provide a +mode+ with an embedded Encoding designator unless your
    # data is in Encoding::default_external(). CSV will check the Encoding of the
    # underlying IO object (set by the +mode+ you pass) to determine how to parse
    # the data. You may provide a second Encoding to have the data transcoded as
    # it is read just as you can with a normal call to IO::open(). For example,
    # <tt>"rb:UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file but
    # transcode it to UTF-8 before CSV parses it.
    #
    # An opened CSV object will delegate to many IO methods for convenience. You
    # may call:
    #
    # * binmode()
    # * binmode?()
    # * close()
    # * close_read()
    # * close_write()
    # * closed?()
    # * eof()
    # * eof?()
    # * external_encoding()
    # * fcntl()
    # * fileno()
    # * flock()
    # * flush()
    # * fsync()
    # * internal_encoding()
    # * ioctl()
    # * isatty()
    # * path()
    # * pid()
    # * pos()
    # * pos=()
    # * reopen()
    # * seek()
    # * stat()
    # * sync()
    # * sync=()
    # * tell()
    # * to_i()
    # * to_io()
    # * truncate()
    # * tty?()
    #
    def open(filename, mode="r", **options)
      # wrap a File opened with the remaining +args+ with no newline
      # decorator
      file_opts = {universal_newline: false}.merge(options)

      begin
        f = File.open(filename, mode, **file_opts)
      rescue ArgumentError => e
        raise unless /needs binmode/.match?(e.message) and mode == "r"
        mode = "rb"
        file_opts = {encoding: Encoding.default_external}.merge(file_opts)
        retry
      end
      begin
        csv = new(f, **options)
      rescue Exception
        f.close
        raise
      end

      # handle blocks like Ruby's open(), not like the CSV library
      if block_given?
        begin
          yield csv
        ensure
          csv.close
        end
      else
        csv
      end
    end

    #
    # :call-seq:
    #   parse( str, **options ) { |row| ... }
    #   parse( str, **options )
    #
    # This method can be used to easily parse CSV out of a String. You may either
    # provide a +block+ which will be called with each row of the String in turn,
    # or just use the returned Array of Arrays (when no +block+ is given).
    #
    # You pass your +str+ to read from, and an optional +options+ containing
    # anything CSV::new() understands.
    #
    def parse(str, **options, &block)
      csv = new(str, **options)

      return csv.each(&block) if block_given?

      # slurp contents, if no block is given
      begin
        csv.read
      ensure
        csv.close
      end
    end

    #
    # This method is a shortcut for converting a single line of a CSV String into
    # an Array. Note that if +line+ contains multiple rows, anything beyond the
    # first row is ignored.
    #
    # The +options+ parameter can be anything CSV::new() understands.
    #
    def parse_line(line, **options)
      new(line, **options).shift
    end

    #
    # Use to slurp a CSV file into an Array of Arrays. Pass the +path+ to the
    # file and any +options+ CSV::new() understands. This method also understands
    # an additional <tt>:encoding</tt> parameter that you can use to specify the
    # Encoding of the data in the file to be read. You must provide this unless
    # your data is in Encoding::default_external(). CSV will use this to determine
    # how to parse the data. You may provide a second Encoding to have the data
    # transcoded as it is read. For example,
    # <tt>encoding: "UTF-32BE:UTF-8"</tt> would read UTF-32BE data from the file
    # but transcode it to UTF-8 before CSV parses it.
    #
    def read(path, **options)
      open(path, **options) { |csv| csv.read }
    end

    # Alias for CSV::read().
    def readlines(path, **options)
      read(path, **options)
    end

    #
    # A shortcut for:
    #
    #   CSV.read( path, { headers:           true,
    #                     converters:        :numeric,
    #                     header_converters: :symbol }.merge(options) )
    #
    def table(path, **options)
      default_options = {
        headers:           true,
        converters:        :numeric,
        header_converters: :symbol,
      }
      options = default_options.merge(options)
      read(path, **options)
    end
  end

  #
  # This constructor will wrap either a String or IO object passed in +data+ for
  # reading and/or writing. In addition to the CSV instance methods, several IO
  # methods are delegated. (See CSV::open() for a complete list.) If you pass
  # a String for +data+, you can later retrieve it (after writing to it, for
  # example) with CSV.string().
  #
  # Note that a wrapped String will be positioned at the beginning (for
  # reading). If you want it at the end (for writing), use CSV::generate().
  # If you want any other positioning, pass a preset StringIO object instead.
  #
  # You may set any reading and/or writing preferences in the +options+ Hash.
  # Available options are:
  #
  # <b><tt>:col_sep</tt></b>::            The String placed between each field.
  #                                       This String will be transcoded into
  #                                       the data's Encoding before parsing.
  # <b><tt>:row_sep</tt></b>::            The String appended to the end of each
  #                                       row. This can be set to the special
  #                                       <tt>:auto</tt> setting, which requests
  #                                       that CSV automatically discover this
  #                                       from the data. Auto-discovery reads
  #                                       ahead in the data looking for the next
  #                                       <tt>"\r\n"</tt>, <tt>"\n"</tt>, or
  #                                       <tt>"\r"</tt> sequence. A sequence
  #                                       will be selected even if it occurs in
  #                                       a quoted field, assuming that you
  #                                       would have the same line endings
  #                                       there. If none of those sequences is
  #                                       found, +data+ is <tt>ARGF</tt>,
  #                                       <tt>STDIN</tt>, <tt>STDOUT</tt>, or
  #                                       <tt>STDERR</tt>, or the stream is only
  #                                       available for output, the default
  #                                       <tt>$INPUT_RECORD_SEPARATOR</tt>
  #                                       (<tt>$/</tt>) is used. Obviously,
  #                                       discovery takes a little time. Set
  #                                       manually if speed is important. Also
  #                                       note that IO objects should be opened
  #                                       in binary mode on Windows if this
  #                                       feature will be used as the
  #                                       line-ending translation can cause
  #                                       problems with resetting the document
  #                                       position to where it was before the
  #                                       read ahead. This String will be
  #                                       transcoded into the data's Encoding
  #                                       before parsing.
  # <b><tt>:quote_char</tt></b>::         The character used to quote fields.
  #                                       This has to be a single character
  #                                       String. This is useful for
  #                                       application that incorrectly use
  #                                       <tt>'</tt> as the quote character
  #                                       instead of the correct <tt>"</tt>.
  #                                       CSV will always consider a double
  #                                       sequence of this character to be an
  #                                       escaped quote. This String will be
  #                                       transcoded into the data's Encoding
  #                                       before parsing.
  # <b><tt>:field_size_limit</tt></b>::   This is a maximum size CSV will read
  #                                       ahead looking for the closing quote
  #                                       for a field. (In truth, it reads to
  #                                       the first line ending beyond this
  #                                       size.) If a quote cannot be found
  #                                       within the limit CSV will raise a
  #                                       MalformedCSVError, assuming the data
  #                                       is faulty. You can use this limit to
  #                                       prevent what are effectively DoS
  #                                       attacks on the parser. However, this
  #                                       limit can cause a legitimate parse to
  #                                       fail and thus is set to +nil+, or off,
  #                                       by default.
  # <b><tt>:converters</tt></b>::         An Array of names from the Converters
  #                                       Hash and/or lambdas that handle custom
  #                                       conversion. A single converter
  #                                       doesn't have to be in an Array. All
  #                                       built-in converters try to transcode
  #                                       fields to UTF-8 before converting.
  #                                       The conversion will fail if the data
  #                                       cannot be transcoded, leaving the
  #                                       field unchanged.
  # <b><tt>:unconverted_fields</tt></b>:: If set to +true+, an
  #                                       unconverted_fields() method will be
  #                                       added to all returned rows (Array or
  #                                       CSV::Row) that will return the fields
  #                                       as they were before conversion. Note
  #                                       that <tt>:headers</tt> supplied by
  #                                       Array or String were not fields of the
  #                                       document and thus will have an empty
  #                                       Array attached.
  # <b><tt>:headers</tt></b>::            If set to <tt>:first_row</tt> or
  #                                       +true+, the initial row of the CSV
  #                                       file will be treated as a row of
  #                                       headers. If set to an Array, the
  #                                       contents will be used as the headers.
  #                                       If set to a String, the String is run
  #                                       through a call of CSV::parse_line()
  #                                       with the same <tt>:col_sep</tt>,
  #                                       <tt>:row_sep</tt>, and
  #                                       <tt>:quote_char</tt> as this instance
  #                                       to produce an Array of headers. This
  #                                       setting causes CSV#shift() to return
  #                                       rows as CSV::Row objects instead of
  #                                       Arrays and CSV#read() to return
  #                                       CSV::Table objects instead of an Array
  #                                       of Arrays.
  # <b><tt>:return_headers</tt></b>::     When +false+, header rows are silently
  #                                       swallowed. If set to +true+, header
  #                                       rows are returned in a CSV::Row object
  #                                       with identical headers and
  #                                       fields (save that the fields do not go
  #                                       through the converters).
  # <b><tt>:write_headers</tt></b>::      When +true+ and <tt>:headers</tt> is
  #                                       set, a header row will be added to the
  #                                       output.
  # <b><tt>:header_converters</tt></b>::  Identical in functionality to
  #                                       <tt>:converters</tt> save that the
  #                                       conversions are only made to header
  #                                       rows. All built-in converters try to
  #                                       transcode headers to UTF-8 before
  #                                       converting. The conversion will fail
  #                                       if the data cannot be transcoded,
  #                                       leaving the header unchanged.
  # <b><tt>:skip_blanks</tt></b>::        When setting a +true+ value, CSV will
  #                                       skip over any empty rows. Note that
  #                                       this setting will not skip rows that
  #                                       contain column separators, even if
  #                                       the rows contain no actual data. If
  #                                       you want to skip rows that contain
  #                                       separators but no content, consider
  #                                       using <tt>:skip_lines</tt>, or
  #                                       inspecting fields.compact.empty? on
  #                                       each row.
  # <b><tt>:force_quotes</tt></b>::       When setting a +true+ value, CSV will
  #                                       quote all CSV fields it creates.
  # <b><tt>:skip_lines</tt></b>::         When setting an object responding to
  #                                       <tt>match</tt>, every line matching
  #                                       it is considered a comment and ignored
  #                                       during parsing. When set to a String,
  #                                       it is first converted to a Regexp.
  #                                       When set to +nil+ no line is considered
  #                                       a comment. If the passed object does
  #                                       not respond to <tt>match</tt>,
  #                                       <tt>ArgumentError</tt> is thrown.
  # <b><tt>:liberal_parsing</tt></b>::    When setting a +true+ value, CSV will
  #                                       attempt to parse input not conformant
  #                                       with RFC 4180, such as double quotes
  #                                       in unquoted fields.
  # <b><tt>:nil_value</tt></b>::          When set an object, any values of an
  #                                       empty field is replaced by the set
  #                                       object, not nil.
  # <b><tt>:empty_value</tt></b>::        When setting an object, any values of a
  #                                       blank string field is replaced by
  #                                       the set object.
  # <b><tt>:quote_empty</tt></b>::        When setting a +true+ value, CSV will
  #                                       quote empty values with double quotes.
  #                                       When +false+, CSV will emit an
  #                                       empty string for an empty field value.
  # <b><tt>:write_converters</tt></b>::   Converts values on each line with the
  #                                       specified <tt>Proc</tt> object(s),
  #                                       which receive a <tt>String</tt> value
  #                                       and return a <tt>String</tt> or +nil+
  #                                       value.
  #                                       When an array is specified, each
  #                                       converter will be applied in order.
  # <b><tt>:write_nil_value</tt></b>::    When a <tt>String</tt> value, +nil+
  #                                       value(s) on each line will be replaced
  #                                       with the specified value.
  # <b><tt>:write_empty_value</tt></b>::  When a <tt>String</tt> or +nil+ value,
  #                                       empty value(s) on each line will be
  #                                       replaced with the specified value.
  # <b><tt>:strip</tt></b>::              When setting a +true+ value, CSV will
  #                                       strip "\t\r\n\f\v" around the values.
  #                                       If you specify a string instead of
  #                                       +true+, CSV will strip string. The
  #                                       length of the string must be 1.
  #
  # See CSV::DEFAULT_OPTIONS for the default settings.
  #
  # Options cannot be overridden in the instance methods for performance reasons,
  # so be sure to set what you want here.
  #
  def initialize(data,
                 col_sep: ",",
                 row_sep: :auto,
                 quote_char: '"',
                 field_size_limit: nil,
                 converters: nil,
                 unconverted_fields: nil,
                 headers: false,
                 return_headers: false,
                 write_headers: nil,
                 header_converters: nil,
                 skip_blanks: false,
                 force_quotes: false,
                 skip_lines: nil,
                 liberal_parsing: false,
                 internal_encoding: nil,
                 external_encoding: nil,
                 encoding: nil,
                 nil_value: nil,
                 empty_value: "",
                 quote_empty: true,
                 write_converters: nil,
                 write_nil_value: nil,
                 write_empty_value: "",
                 strip: false)
    raise ArgumentError.new("Cannot parse nil as CSV") if data.nil?

    if data.is_a?(String)
      @io = StringIO.new(data)
      @io.set_encoding(encoding || data.encoding)
    else
      @io = data
    end
    @encoding = determine_encoding(encoding, internal_encoding)

    @base_fields_converter_options = {
      nil_value: nil_value,
      empty_value: empty_value,
    }
    @write_fields_converter_options = {
      nil_value: write_nil_value,
      empty_value: write_empty_value,
    }
    @initial_converters = converters
    @initial_header_converters = header_converters
    @initial_write_converters = write_converters

    @parser_options = {
      column_separator: col_sep,
      row_separator: row_sep,
      quote_character: quote_char,
      field_size_limit: field_size_limit,
      unconverted_fields: unconverted_fields,
      headers: headers,
      return_headers: return_headers,
      skip_blanks: skip_blanks,
      skip_lines: skip_lines,
      liberal_parsing: liberal_parsing,
      encoding: @encoding,
      nil_value: nil_value,
      empty_value: empty_value,
      strip: strip,
    }
    @parser = nil
    @parser_enumerator = nil
    @eof_error = nil

    @writer_options = {
      encoding: @encoding,
      force_encoding: (not encoding.nil?),
      force_quotes: force_quotes,
      headers: headers,
      write_headers: write_headers,
      column_separator: col_sep,
      row_separator: row_sep,
      quote_character: quote_char,
      quote_empty: quote_empty,
    }

    @writer = nil
    writer if @writer_options[:write_headers]
  end

  #
  # The encoded <tt>:col_sep</tt> used in parsing and writing.
  # See CSV::new for details.
  #
  def col_sep
    parser.column_separator
  end

  #
  # The encoded <tt>:row_sep</tt> used in parsing and writing.
  # See CSV::new for details.
  #
  def row_sep
    parser.row_separator
  end

  #
  # The encoded <tt>:quote_char</tt> used in parsing and writing.
  # See CSV::new for details.
  #
  def quote_char
    parser.quote_character
  end

  #
  # The limit for field size, if any.
  # See CSV::new for details.
  #
  def field_size_limit
    parser.field_size_limit
  end

  #
  # The regex marking a line as a comment.
  # See CSV::new for details.
  #
  def skip_lines
    parser.skip_lines
  end

  #
  # Returns the current list of converters in effect. See CSV::new for details.
  # Built-in converters will be returned by name, while others will be returned
  # as is.
  #
  def converters
    parser_fields_converter.map do |converter|
      name = Converters.rassoc(converter)
      name ? name.first : converter
    end
  end

  #
  # Returns +true+ if unconverted_fields() to parsed results.
  # See CSV::new for details.
  #
  def unconverted_fields?
    parser.unconverted_fields?
  end

  #
  # Returns +nil+ if headers will not be used, +true+ if they will but have not
  # yet been read, or the actual headers after they have been read.
  # See CSV::new for details.
  #
  def headers
    if @writer
      @writer.headers
    else
      parsed_headers = parser.headers
      return parsed_headers if parsed_headers
      raw_headers = @parser_options[:headers]
      raw_headers = nil if raw_headers == false
      raw_headers
    end
  end
  #
  # Returns +true+ if headers will be returned as a row of results.
  # See CSV::new for details.
  #
  def return_headers?
    parser.return_headers?
  end

  #
  # Returns +true+ if headers are written in output.
  # See CSV::new for details.
  #
  def write_headers?
    @writer_options[:write_headers]
  end

  #
  # Returns the current list of converters in effect for headers. See CSV::new
  # for details. Built-in converters will be returned by name, while others
  # will be returned as is.
  #
  def header_converters
    header_fields_converter.map do |converter|
      name = HeaderConverters.rassoc(converter)
      name ? name.first : converter
    end
  end

  #
  # Returns +true+ blank lines are skipped by the parser. See CSV::new
  # for details.
  #
  def skip_blanks?
    parser.skip_blanks?
  end

  # Returns +true+ if all output fields are quoted. See CSV::new for details.
  def force_quotes?
    @writer_options[:force_quotes]
  end

  # Returns +true+ if illegal input is handled. See CSV::new for details.
  def liberal_parsing?
    parser.liberal_parsing?
  end

  #
  # The Encoding CSV is parsing or writing in.  This will be the Encoding you
  # receive parsed data in and/or the Encoding data will be written in.
  #
  attr_reader :encoding

  #
  # The line number of the last row read from this file. Fields with nested
  # line-end characters will not affect this count.
  #
  def lineno
    if @writer
      @writer.lineno
    else
      parser.lineno
    end
  end

  #
  # The last row read from this file.
  #
  def line
    parser.line
  end

  ### IO and StringIO Delegation ###

  extend Forwardable
  def_delegators :@io, :binmode, :close, :close_read, :close_write,
                       :closed?, :external_encoding, :fcntl,
                       :fileno, :flush, :fsync, :internal_encoding,
                       :isatty, :pid, :pos, :pos=, :reopen,
                       :seek, :string, :sync, :sync=, :tell,
                       :truncate, :tty?

  def binmode?
    if @io.respond_to?(:binmode?)
      @io.binmode?
    else
      false
    end
  end

  def flock(*args)
    raise NotImplementedError unless @io.respond_to?(:flock)
    @io.flock(*args)
  end

  def ioctl(*args)
    raise NotImplementedError unless @io.respond_to?(:ioctl)
    @io.ioctl(*args)
  end

  def path
    @io.path if @io.respond_to?(:path)
  end

  def stat(*args)
    raise NotImplementedError unless @io.respond_to?(:stat)
    @io.stat(*args)
  end

  def to_i
    raise NotImplementedError unless @io.respond_to?(:to_i)
    @io.to_i
  end

  def to_io
    @io.respond_to?(:to_io) ? @io.to_io : @io
  end

  def eof?
    return false if @eof_error
    begin
      parser_enumerator.peek
      false
    rescue MalformedCSVError => error
      @eof_error = error
      false
    rescue StopIteration
      true
    end
  end
  alias_method :eof, :eof?

  # Rewinds the underlying IO object and resets CSV's lineno() counter.
  def rewind
    @parser = nil
    @parser_enumerator = nil
    @eof_error = nil
    @writer.rewind if @writer
    @io.rewind
  end

  ### End Delegation ###

  #
  # The primary write method for wrapped Strings and IOs, +row+ (an Array or
  # CSV::Row) is converted to CSV and appended to the data source. When a
  # CSV::Row is passed, only the row's fields() are appended to the output.
  #
  # The data source must be open for writing.
  #
  def <<(row)
    writer << row
    self
  end
  alias_method :add_row, :<<
  alias_method :puts,    :<<

  #
  # :call-seq:
  #   convert( name )
  #   convert { |field| ... }
  #   convert { |field, field_info| ... }
  #
  # You can use this method to install a CSV::Converters built-in, or provide a
  # block that handles a custom conversion.
  #
  # If you provide a block that takes one argument, it will be passed the field
  # and is expected to return the converted value or the field itself. If your
  # block takes two arguments, it will also be passed a CSV::FieldInfo Struct,
  # containing details about the field. Again, the block should return a
  # converted field or the field itself.
  #
  def convert(name = nil, &converter)
    parser_fields_converter.add_converter(name, &converter)
  end

  #
  # :call-seq:
  #   header_convert( name )
  #   header_convert { |field| ... }
  #   header_convert { |field, field_info| ... }
  #
  # Identical to CSV#convert(), but for header rows.
  #
  # Note that this method must be called before header rows are read to have any
  # effect.
  #
  def header_convert(name = nil, &converter)
    header_fields_converter.add_converter(name, &converter)
  end

  include Enumerable

  #
  # Yields each row of the data source in turn.
  #
  # Support for Enumerable.
  #
  # The data source must be open for reading.
  #
  def each(&block)
    parser_enumerator.each(&block)
  end

  #
  # Slurps the remaining rows and returns an Array of Arrays.
  #
  # The data source must be open for reading.
  #
  def read
    rows = to_a
    if parser.use_headers?
      Table.new(rows, headers: parser.headers)
    else
      rows
    end
  end
  alias_method :readlines, :read

  # Returns +true+ if the next row read will be a header row.
  def header_row?
    parser.header_row?
  end

  #
  # The primary read method for wrapped Strings and IOs, a single row is pulled
  # from the data source, parsed and returned as an Array of fields (if header
  # rows are not used) or a CSV::Row (when header rows are used).
  #
  # The data source must be open for reading.
  #
  def shift
    if @eof_error
      eof_error, @eof_error = @eof_error, nil
      raise eof_error
    end
    begin
      parser_enumerator.next
    rescue StopIteration
      nil
    end
  end
  alias_method :gets,     :shift
  alias_method :readline, :shift

  #
  # Returns a simplified description of the key CSV attributes in an
  # ASCII compatible String.
  #
  def inspect
    str = ["#<", self.class.to_s, " io_type:"]
    # show type of wrapped IO
    if    @io == $stdout then str << "$stdout"
    elsif @io == $stdin  then str << "$stdin"
    elsif @io == $stderr then str << "$stderr"
    else                      str << @io.class.to_s
    end
    # show IO.path(), if available
    if @io.respond_to?(:path) and (p = @io.path)
      str << " io_path:" << p.inspect
    end
    # show encoding
    str << " encoding:" << @encoding.name
    # show other attributes
    ["lineno", "col_sep", "row_sep", "quote_char"].each do |attr_name|
      if a = __send__(attr_name)
        str << " " << attr_name << ":" << a.inspect
      end
    end
    ["skip_blanks", "liberal_parsing"].each do |attr_name|
      if a = __send__("#{attr_name}?")
        str << " " << attr_name << ":" << a.inspect
      end
    end
    _headers = headers
    str << " headers:" << _headers.inspect if _headers
    str << ">"
    begin
      str.join('')
    rescue  # any encoding error
      str.map do |s|
        e = Encoding::Converter.asciicompat_encoding(s.encoding)
        e ? s.encode(e) : s.force_encoding("ASCII-8BIT")
      end.join('')
    end
  end

  private

  def determine_encoding(encoding, internal_encoding)
    # honor the IO encoding if we can, otherwise default to ASCII-8BIT
    io_encoding = raw_encoding
    return io_encoding if io_encoding

    return Encoding.find(internal_encoding) if internal_encoding

    if encoding
      encoding, = encoding.split(":", 2) if encoding.is_a?(String)
      return Encoding.find(encoding)
    end

    Encoding.default_internal || Encoding.default_external
  end

  def normalize_converters(converters)
    converters ||= []
    unless converters.is_a?(Array)
      converters = [converters]
    end
    converters.collect do |converter|
      case converter
      when Proc # custom code block
        [nil, converter]
      else # by name
        [converter, nil]
      end
    end
  end

  #
  # Processes +fields+ with <tt>@converters</tt>, or <tt>@header_converters</tt>
  # if +headers+ is passed as +true+, returning the converted field set. Any
  # converter that changes the field into something other than a String halts
  # the pipeline of conversion for that field. This is primarily an efficiency
  # shortcut.
  #
  def convert_fields(fields, headers = false)
    if headers
      header_fields_converter.convert(fields, nil, 0)
    else
      parser_fields_converter.convert(fields, @headers, lineno)
    end
  end

  #
  # Returns the encoding of the internal IO object.
  #
  def raw_encoding
    if @io.respond_to? :internal_encoding
      @io.internal_encoding || @io.external_encoding
    elsif @io.respond_to? :encoding
      @io.encoding
    else
      nil
    end
  end

  def parser_fields_converter
    @parser_fields_converter ||= build_parser_fields_converter
  end

  def build_parser_fields_converter
    specific_options = {
      builtin_converters: Converters,
    }
    options = @base_fields_converter_options.merge(specific_options)
    build_fields_converter(@initial_converters, options)
  end

  def header_fields_converter
    @header_fields_converter ||= build_header_fields_converter
  end

  def build_header_fields_converter
    specific_options = {
      builtin_converters: HeaderConverters,
      accept_nil: true,
    }
    options = @base_fields_converter_options.merge(specific_options)
    build_fields_converter(@initial_header_converters, options)
  end

  def writer_fields_converter
    @writer_fields_converter ||= build_writer_fields_converter
  end

  def build_writer_fields_converter
    build_fields_converter(@initial_write_converters,
                           @write_fields_converter_options)
  end

  def build_fields_converter(initial_converters, options)
    fields_converter = FieldsConverter.new(options)
    normalize_converters(initial_converters).each do |name, converter|
      fields_converter.add_converter(name, &converter)
    end
    fields_converter
  end

  def parser
    @parser ||= Parser.new(@io, parser_options)
  end

  def parser_options
    @parser_options.merge(header_fields_converter: header_fields_converter,
                          fields_converter: parser_fields_converter)
  end

  def parser_enumerator
    @parser_enumerator ||= parser.parse
  end

  def writer
    @writer ||= Writer.new(@io, writer_options)
  end

  def writer_options
    @writer_options.merge(header_fields_converter: header_fields_converter,
                          fields_converter: writer_fields_converter)
  end
end

# Passes +args+ to CSV::instance.
#
#   CSV("CSV,data").read
#     #=> [["CSV", "data"]]
#
# If a block is given, the instance is passed the block and the return value
# becomes the return value of the block.
#
#   CSV("CSV,data") { |c|
#     c.read.any? { |a| a.include?("data") }
#   } #=> true
#
#   CSV("CSV,data") { |c|
#     c.read.any? { |a| a.include?("zombies") }
#   } #=> false
#
def CSV(*args, &block)
  CSV.instance(*args, &block)
end

require_relative "csv/version"
require_relative "csv/core_ext/array"
require_relative "csv/core_ext/string"
PKGH[���K2929share/ruby/tsort.rbnu�[���# frozen_string_literal: true

#--
# tsort.rb - provides a module for topological sorting and strongly connected components.
#++
#

#
# TSort implements topological sorting using Tarjan's algorithm for
# strongly connected components.
#
# TSort is designed to be able to be used with any object which can be
# interpreted as a directed graph.
#
# TSort requires two methods to interpret an object as a graph,
# tsort_each_node and tsort_each_child.
#
# * tsort_each_node is used to iterate for all nodes over a graph.
# * tsort_each_child is used to iterate for child nodes of a given node.
#
# The equality of nodes are defined by eql? and hash since
# TSort uses Hash internally.
#
# == A Simple Example
#
# The following example demonstrates how to mix the TSort module into an
# existing class (in this case, Hash). Here, we're treating each key in
# the hash as a node in the graph, and so we simply alias the required
# #tsort_each_node method to Hash's #each_key method. For each key in the
# hash, the associated value is an array of the node's child nodes. This
# choice in turn leads to our implementation of the required #tsort_each_child
# method, which fetches the array of child nodes and then iterates over that
# array using the user-supplied block.
#
#   require 'tsort'
#
#   class Hash
#     include TSort
#     alias tsort_each_node each_key
#     def tsort_each_child(node, &block)
#       fetch(node).each(&block)
#     end
#   end
#
#   {1=>[2, 3], 2=>[3], 3=>[], 4=>[]}.tsort
#   #=> [3, 2, 1, 4]
#
#   {1=>[2], 2=>[3, 4], 3=>[2], 4=>[]}.strongly_connected_components
#   #=> [[4], [2, 3], [1]]
#
# == A More Realistic Example
#
# A very simple `make' like tool can be implemented as follows:
#
#   require 'tsort'
#
#   class Make
#     def initialize
#       @dep = {}
#       @dep.default = []
#     end
#
#     def rule(outputs, inputs=[], &block)
#       triple = [outputs, inputs, block]
#       outputs.each {|f| @dep[f] = [triple]}
#       @dep[triple] = inputs
#     end
#
#     def build(target)
#       each_strongly_connected_component_from(target) {|ns|
#         if ns.length != 1
#           fs = ns.delete_if {|n| Array === n}
#           raise TSort::Cyclic.new("cyclic dependencies: #{fs.join ', '}")
#         end
#         n = ns.first
#         if Array === n
#           outputs, inputs, block = n
#           inputs_time = inputs.map {|f| File.mtime f}.max
#           begin
#             outputs_time = outputs.map {|f| File.mtime f}.min
#           rescue Errno::ENOENT
#             outputs_time = nil
#           end
#           if outputs_time == nil ||
#              inputs_time != nil && outputs_time <= inputs_time
#             sleep 1 if inputs_time != nil && inputs_time.to_i == Time.now.to_i
#             block.call
#           end
#         end
#       }
#     end
#
#     def tsort_each_child(node, &block)
#       @dep[node].each(&block)
#     end
#     include TSort
#   end
#
#   def command(arg)
#     print arg, "\n"
#     system arg
#   end
#
#   m = Make.new
#   m.rule(%w[t1]) { command 'date > t1' }
#   m.rule(%w[t2]) { command 'date > t2' }
#   m.rule(%w[t3]) { command 'date > t3' }
#   m.rule(%w[t4], %w[t1 t3]) { command 'cat t1 t3 > t4' }
#   m.rule(%w[t5], %w[t4 t2]) { command 'cat t4 t2 > t5' }
#   m.build('t5')
#
# == Bugs
#
# * 'tsort.rb' is wrong name because this library uses
#   Tarjan's algorithm for strongly connected components.
#   Although 'strongly_connected_components.rb' is correct but too long.
#
# == References
#
# R. E. Tarjan, "Depth First Search and Linear Graph Algorithms",
# <em>SIAM Journal on Computing</em>, Vol. 1, No. 2, pp. 146-160, June 1972.
#

module TSort
  class Cyclic < StandardError
  end

  # Returns a topologically sorted array of nodes.
  # The array is sorted from children to parents, i.e.
  # the first element has no child and the last node has no parent.
  #
  # If there is a cycle, TSort::Cyclic is raised.
  #
  #   class G
  #     include TSort
  #     def initialize(g)
  #       @g = g
  #     end
  #     def tsort_each_child(n, &b) @g[n].each(&b) end
  #     def tsort_each_node(&b) @g.each_key(&b) end
  #   end
  #
  #   graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
  #   p graph.tsort #=> [4, 2, 3, 1]
  #
  #   graph = G.new({1=>[2], 2=>[3, 4], 3=>[2], 4=>[]})
  #   p graph.tsort # raises TSort::Cyclic
  #
  def tsort
    each_node = method(:tsort_each_node)
    each_child = method(:tsort_each_child)
    TSort.tsort(each_node, each_child)
  end

  # Returns a topologically sorted array of nodes.
  # The array is sorted from children to parents, i.e.
  # the first element has no child and the last node has no parent.
  #
  # The graph is represented by _each_node_ and _each_child_.
  # _each_node_ should have +call+ method which yields for each node in the graph.
  # _each_child_ should have +call+ method which takes a node argument and yields for each child node.
  #
  # If there is a cycle, TSort::Cyclic is raised.
  #
  #   g = {1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   p TSort.tsort(each_node, each_child) #=> [4, 2, 3, 1]
  #
  #   g = {1=>[2], 2=>[3, 4], 3=>[2], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   p TSort.tsort(each_node, each_child) # raises TSort::Cyclic
  #
  def TSort.tsort(each_node, each_child)
    TSort.tsort_each(each_node, each_child).to_a
  end

  # The iterator version of the #tsort method.
  # <tt><em>obj</em>.tsort_each</tt> is similar to <tt><em>obj</em>.tsort.each</tt>, but
  # modification of _obj_ during the iteration may lead to unexpected results.
  #
  # #tsort_each returns +nil+.
  # If there is a cycle, TSort::Cyclic is raised.
  #
  #   class G
  #     include TSort
  #     def initialize(g)
  #       @g = g
  #     end
  #     def tsort_each_child(n, &b) @g[n].each(&b) end
  #     def tsort_each_node(&b) @g.each_key(&b) end
  #   end
  #
  #   graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
  #   graph.tsort_each {|n| p n }
  #   #=> 4
  #   #   2
  #   #   3
  #   #   1
  #
  def tsort_each(&block) # :yields: node
    each_node = method(:tsort_each_node)
    each_child = method(:tsort_each_child)
    TSort.tsort_each(each_node, each_child, &block)
  end

  # The iterator version of the TSort.tsort method.
  #
  # The graph is represented by _each_node_ and _each_child_.
  # _each_node_ should have +call+ method which yields for each node in the graph.
  # _each_child_ should have +call+ method which takes a node argument and yields for each child node.
  #
  #   g = {1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   TSort.tsort_each(each_node, each_child) {|n| p n }
  #   #=> 4
  #   #   2
  #   #   3
  #   #   1
  #
  def TSort.tsort_each(each_node, each_child) # :yields: node
    return to_enum(__method__, each_node, each_child) unless block_given?

    TSort.each_strongly_connected_component(each_node, each_child) {|component|
      if component.size == 1
        yield component.first
      else
        raise Cyclic.new("topological sort failed: #{component.inspect}")
      end
    }
  end

  # Returns strongly connected components as an array of arrays of nodes.
  # The array is sorted from children to parents.
  # Each elements of the array represents a strongly connected component.
  #
  #   class G
  #     include TSort
  #     def initialize(g)
  #       @g = g
  #     end
  #     def tsort_each_child(n, &b) @g[n].each(&b) end
  #     def tsort_each_node(&b) @g.each_key(&b) end
  #   end
  #
  #   graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
  #   p graph.strongly_connected_components #=> [[4], [2], [3], [1]]
  #
  #   graph = G.new({1=>[2], 2=>[3, 4], 3=>[2], 4=>[]})
  #   p graph.strongly_connected_components #=> [[4], [2, 3], [1]]
  #
  def strongly_connected_components
    each_node = method(:tsort_each_node)
    each_child = method(:tsort_each_child)
    TSort.strongly_connected_components(each_node, each_child)
  end

  # Returns strongly connected components as an array of arrays of nodes.
  # The array is sorted from children to parents.
  # Each elements of the array represents a strongly connected component.
  #
  # The graph is represented by _each_node_ and _each_child_.
  # _each_node_ should have +call+ method which yields for each node in the graph.
  # _each_child_ should have +call+ method which takes a node argument and yields for each child node.
  #
  #   g = {1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   p TSort.strongly_connected_components(each_node, each_child)
  #   #=> [[4], [2], [3], [1]]
  #
  #   g = {1=>[2], 2=>[3, 4], 3=>[2], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   p TSort.strongly_connected_components(each_node, each_child)
  #   #=> [[4], [2, 3], [1]]
  #
  def TSort.strongly_connected_components(each_node, each_child)
    TSort.each_strongly_connected_component(each_node, each_child).to_a
  end

  # The iterator version of the #strongly_connected_components method.
  # <tt><em>obj</em>.each_strongly_connected_component</tt> is similar to
  # <tt><em>obj</em>.strongly_connected_components.each</tt>, but
  # modification of _obj_ during the iteration may lead to unexpected results.
  #
  # #each_strongly_connected_component returns +nil+.
  #
  #   class G
  #     include TSort
  #     def initialize(g)
  #       @g = g
  #     end
  #     def tsort_each_child(n, &b) @g[n].each(&b) end
  #     def tsort_each_node(&b) @g.each_key(&b) end
  #   end
  #
  #   graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
  #   graph.each_strongly_connected_component {|scc| p scc }
  #   #=> [4]
  #   #   [2]
  #   #   [3]
  #   #   [1]
  #
  #   graph = G.new({1=>[2], 2=>[3, 4], 3=>[2], 4=>[]})
  #   graph.each_strongly_connected_component {|scc| p scc }
  #   #=> [4]
  #   #   [2, 3]
  #   #   [1]
  #
  def each_strongly_connected_component(&block) # :yields: nodes
    each_node = method(:tsort_each_node)
    each_child = method(:tsort_each_child)
    TSort.each_strongly_connected_component(each_node, each_child, &block)
  end

  # The iterator version of the TSort.strongly_connected_components method.
  #
  # The graph is represented by _each_node_ and _each_child_.
  # _each_node_ should have +call+ method which yields for each node in the graph.
  # _each_child_ should have +call+ method which takes a node argument and yields for each child node.
  #
  #   g = {1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   TSort.each_strongly_connected_component(each_node, each_child) {|scc| p scc }
  #   #=> [4]
  #   #   [2]
  #   #   [3]
  #   #   [1]
  #
  #   g = {1=>[2], 2=>[3, 4], 3=>[2], 4=>[]}
  #   each_node = lambda {|&b| g.each_key(&b) }
  #   each_child = lambda {|n, &b| g[n].each(&b) }
  #   TSort.each_strongly_connected_component(each_node, each_child) {|scc| p scc }
  #   #=> [4]
  #   #   [2, 3]
  #   #   [1]
  #
  def TSort.each_strongly_connected_component(each_node, each_child) # :yields: nodes
    return to_enum(__method__, each_node, each_child) unless block_given?

    id_map = {}
    stack = []
    each_node.call {|node|
      unless id_map.include? node
        TSort.each_strongly_connected_component_from(node, each_child, id_map, stack) {|c|
          yield c
        }
      end
    }
    nil
  end

  # Iterates over strongly connected component in the subgraph reachable from
  # _node_.
  #
  # Return value is unspecified.
  #
  # #each_strongly_connected_component_from doesn't call #tsort_each_node.
  #
  #   class G
  #     include TSort
  #     def initialize(g)
  #       @g = g
  #     end
  #     def tsort_each_child(n, &b) @g[n].each(&b) end
  #     def tsort_each_node(&b) @g.each_key(&b) end
  #   end
  #
  #   graph = G.new({1=>[2, 3], 2=>[4], 3=>[2, 4], 4=>[]})
  #   graph.each_strongly_connected_component_from(2) {|scc| p scc }
  #   #=> [4]
  #   #   [2]
  #
  #   graph = G.new({1=>[2], 2=>[3, 4], 3=>[2], 4=>[]})
  #   graph.each_strongly_connected_component_from(2) {|scc| p scc }
  #   #=> [4]
  #   #   [2, 3]
  #
  def each_strongly_connected_component_from(node, id_map={}, stack=[], &block) # :yields: nodes
    TSort.each_strongly_connected_component_from(node, method(:tsort_each_child), id_map, stack, &block)
  end

  # Iterates over strongly connected components in a graph.
  # The graph is represented by _node_ and _each_child_.
  #
  # _node_ is the first node.
  # _each_child_ should have +call+ method which takes a node argument
  # and yields for each child node.
  #
  # Return value is unspecified.
  #
  # #TSort.each_strongly_connected_component_from is a class method and
  # it doesn't need a class to represent a graph which includes TSort.
  #
  #   graph = {1=>[2], 2=>[3, 4], 3=>[2], 4=>[]}
  #   each_child = lambda {|n, &b| graph[n].each(&b) }
  #   TSort.each_strongly_connected_component_from(1, each_child) {|scc|
  #     p scc
  #   }
  #   #=> [4]
  #   #   [2, 3]
  #   #   [1]
  #
  def TSort.each_strongly_connected_component_from(node, each_child, id_map={}, stack=[]) # :yields: nodes
    return to_enum(__method__, node, each_child, id_map, stack) unless block_given?

    minimum_id = node_id = id_map[node] = id_map.size
    stack_length = stack.length
    stack << node

    each_child.call(node) {|child|
      if id_map.include? child
        child_id = id_map[child]
        minimum_id = child_id if child_id && child_id < minimum_id
      else
        sub_minimum_id =
          TSort.each_strongly_connected_component_from(child, each_child, id_map, stack) {|c|
            yield c
          }
        minimum_id = sub_minimum_id if sub_minimum_id < minimum_id
      end
    }

    if node_id == minimum_id
      component = stack.slice!(stack_length .. -1)
      component.each {|n| id_map[n] = nil}
      yield component
    end

    minimum_id
  end

  # Should be implemented by a extended class.
  #
  # #tsort_each_node is used to iterate for all nodes over a graph.
  #
  def tsort_each_node # :yields: node
    raise NotImplementedError.new
  end

  # Should be implemented by a extended class.
  #
  # #tsort_each_child is used to iterate for child nodes of _node_.
  #
  def tsort_each_child(node) # :yields: child
    raise NotImplementedError.new
  end
end
PKGH[�o�share/ruby/digest/sha2.rbnu�[���# frozen_string_literal: false
#--
# sha2.rb - defines Digest::SHA2 class which wraps up the SHA256,
#           SHA384, and SHA512 classes.
#++
# Copyright (c) 2006 Akinori MUSHA <knu@iDaemons.org>
#
# All rights reserved.  You can redistribute and/or modify it under the same
# terms as Ruby.
#
#   $Id$

require 'digest'
require 'digest/sha2.so'

module Digest
  #
  # A meta digest provider class for SHA256, SHA384 and SHA512.
  #
  # FIPS 180-2 describes SHA2 family of digest algorithms. It defines
  # three algorithms:
  # * one which works on chunks of 512 bits and returns a 256-bit
  #   digest (SHA256),
  # * one which works on chunks of 1024 bits and returns a 384-bit
  #   digest (SHA384),
  # * and one which works on chunks of 1024 bits and returns a 512-bit
  #   digest (SHA512).
  #
  # ==Examples
  #  require 'digest'
  #
  #  # Compute a complete digest
  #  Digest::SHA2.hexdigest 'abc'          # => "ba7816bf8..."
  #  Digest::SHA2.new(256).hexdigest 'abc' # => "ba7816bf8..."
  #  Digest::SHA256.hexdigest 'abc'        # => "ba7816bf8..."
  #
  #  Digest::SHA2.new(384).hexdigest 'abc' # => "cb00753f4..."
  #  Digest::SHA384.hexdigest 'abc'        # => "cb00753f4..."
  #
  #  Digest::SHA2.new(512).hexdigest 'abc' # => "ddaf35a19..."
  #  Digest::SHA512.hexdigest 'abc'        # => "ddaf35a19..."
  #
  #  # Compute digest by chunks
  #  sha2 = Digest::SHA2.new               # =>#<Digest::SHA2:256>
  #  sha2.update "ab"
  #  sha2 << "c"                           # alias for #update
  #  sha2.hexdigest                        # => "ba7816bf8..."
  #
  #  # Use the same object to compute another digest
  #  sha2.reset
  #  sha2 << "message"
  #  sha2.hexdigest                        # => "ab530a13e..."
  #
  class SHA2 < Digest::Class
    # call-seq:
    #   Digest::SHA2.new(bitlen = 256) -> digest_obj
    #
    # Create a new SHA2 hash object with a given bit length.
    #
    # Valid bit lengths are 256, 384 and 512.
    def initialize(bitlen = 256)
      case bitlen
      when 256
        @sha2 = Digest::SHA256.new
      when 384
        @sha2 = Digest::SHA384.new
      when 512
        @sha2 = Digest::SHA512.new
      else
        raise ArgumentError, "unsupported bit length: %s" % bitlen.inspect
      end
      @bitlen = bitlen
    end

    # call-seq:
    #   digest_obj.reset -> digest_obj
    #
    # Reset the digest to the initial state and return self.
    def reset
      @sha2.reset
      self
    end

    # call-seq:
    #   digest_obj.update(string) -> digest_obj
    #   digest_obj << string -> digest_obj
    #
    # Update the digest using a given _string_ and return self.
    def update(str)
      @sha2.update(str)
      self
    end
    alias << update

    def finish # :nodoc:
      @sha2.digest!
    end
    private :finish


    # call-seq:
    #   digest_obj.block_length -> Integer
    #
    # Return the block length of the digest in bytes.
    #
    #   Digest::SHA256.new.block_length * 8
    #   # => 512
    #   Digest::SHA384.new.block_length * 8
    #   # => 1024
    #   Digest::SHA512.new.block_length * 8
    #   # => 1024
    def block_length
      @sha2.block_length
    end

    # call-seq:
    #   digest_obj.digest_length -> Integer
    #
    # Return the length of the hash value (the digest) in bytes.
    #
    #   Digest::SHA256.new.digest_length * 8
    #   # => 256
    #   Digest::SHA384.new.digest_length * 8
    #   # => 384
    #   Digest::SHA512.new.digest_length * 8
    #   # => 512
    #
    # For example, digests produced by Digest::SHA256 will always be 32 bytes
    # (256 bits) in size.
    def digest_length
      @sha2.digest_length
    end

    def initialize_copy(other) # :nodoc:
      @sha2 = other.instance_eval { @sha2.clone }
    end

    def inspect # :nodoc:
      "#<%s:%d %s>" % [self.class.name, @bitlen, hexdigest]
    end
  end
end
PKGH[�w��''share/ruby/timeout/version.rbnu�[���module Timeout
  VERSION = "0.1.0"
end
PKHH[aɣ�))'share/ruby/did_you_mean/jaro_winkler.rbnu�[���module DidYouMean
  module Jaro
    module_function

    def distance(str1, str2)
      str1, str2 = str2, str1 if str1.length > str2.length
      length1, length2 = str1.length, str2.length

      m          = 0.0
      t          = 0.0
      range      = (length2 / 2).floor - 1
      range      = 0 if range < 0
      flags1     = 0
      flags2     = 0

      # Avoid duplicating enumerable objects
      str1_codepoints = str1.codepoints
      str2_codepoints = str2.codepoints

      i = 0
      while i < length1
        last = i + range
        j    = (i >= range) ? i - range : 0

        while j <= last
          if flags2[j] == 0 && str1_codepoints[i] == str2_codepoints[j]
            flags2 |= (1 << j)
            flags1 |= (1 << i)
            m += 1
            break
          end

          j += 1
        end

        i += 1
      end

      k = i = 0
      while i < length1
        if flags1[i] != 0
          j = index = k

          k = while j < length2
            index = j
            break(j + 1) if flags2[j] != 0

            j += 1
          end

          t += 1 if str1_codepoints[i] != str2_codepoints[index]
        end

        i += 1
      end
      t = (t / 2).floor

      m == 0 ? 0 : (m / length1 + m / length2 + (m - t) / m) / 3
    end
  end

  module JaroWinkler
    WEIGHT    = 0.1
    THRESHOLD = 0.7

    module_function

    def distance(str1, str2)
      jaro_distance = Jaro.distance(str1, str2)

      if jaro_distance > THRESHOLD
        codepoints2  = str2.codepoints
        prefix_bonus = 0

        i = 0
        str1.each_codepoint do |char1|
          char1 == codepoints2[i] && i < 4 ? prefix_bonus += 1 : break
          i += 1
        end

        jaro_distance + (prefix_bonus * WEIGHT * (1 - jaro_distance))
      else
        jaro_distance
      end
    end
  end
end
PKHH[KvI���(share/ruby/did_you_mean/spell_checker.rbnu�[���# frozen-string-literal: true

require_relative "levenshtein"
require_relative "jaro_winkler"

module DidYouMean
  class SpellChecker
    def initialize(dictionary:)
      @dictionary = dictionary
    end

    def correct(input)
      input     = normalize(input)
      threshold = input.length > 3 ? 0.834 : 0.77

      words = @dictionary.select { |word| JaroWinkler.distance(normalize(word), input) >= threshold }
      words.reject! { |word| input == word.to_s }
      words.sort_by! { |word| JaroWinkler.distance(word.to_s, input) }
      words.reverse!

      # Correct mistypes
      threshold   = (input.length * 0.25).ceil
      corrections = words.select { |c| Levenshtein.distance(normalize(c), input) <= threshold }

      # Correct misspells
      if corrections.empty?
        corrections = words.select do |word|
          word   = normalize(word)
          length = input.length < word.length ? input.length : word.length

          Levenshtein.distance(word, input) < length
        end.first(1)
      end

      corrections
    end

    private

    def normalize(str_or_symbol) #:nodoc:
      str = str_or_symbol.to_s.downcase
      str.tr!("@", "")
      str
    end
  end
end
PKHH[+*�77=share/ruby/did_you_mean/spell_checkers/name_error_checkers.rbnu�[���require_relative 'name_error_checkers/class_name_checker'
require_relative 'name_error_checkers/variable_name_checker'

module DidYouMean
  class << (NameErrorCheckers = Object.new)
    def new(exception)
      case exception.original_message
      when /uninitialized constant/
        ClassNameChecker
      when /undefined local variable or method/,
           /undefined method/,
           /uninitialized class variable/,
           /no member '.*' in struct/
        VariableNameChecker
      else
        NullChecker
      end.new(exception)
    end
  end
end
PKHH[	���hh6share/ruby/did_you_mean/spell_checkers/null_checker.rbnu�[���module DidYouMean
  class NullChecker
    def initialize(*);  end
    def corrections; [] end
  end
end
PKHH[	��Sshare/ruby/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rbnu�[���# frozen-string-literal: true

require_relative "../../spell_checker"

module DidYouMean
  class VariableNameChecker
    attr_reader :name, :method_names, :lvar_names, :ivar_names, :cvar_names

    NAMES_TO_EXCLUDE = { 'foo' => [:fork, :for] }
    NAMES_TO_EXCLUDE.default = []

    # +VariableNameChecker::RB_RESERVED_WORDS+ is the list of all reserved
    # words in Ruby. They could be declared like methods are, and a typo would
    # cause Ruby to raise a +NameError+ because of the way they are declared.
    #
    # The +:VariableNameChecker+ will use this list to suggest a reversed word
    # if a +NameError+ is raised and found closest matches, excluding:
    #
    #   * +do+
    #   * +if+
    #   * +in+
    #   * +or+
    #
    # Also see +MethodNameChecker::RB_RESERVED_WORDS+.
    RB_RESERVED_WORDS = %i(
      BEGIN
      END
      alias
      and
      begin
      break
      case
      class
      def
      defined?
      else
      elsif
      end
      ensure
      false
      for
      module
      next
      nil
      not
      redo
      rescue
      retry
      return
      self
      super
      then
      true
      undef
      unless
      until
      when
      while
      yield
      __LINE__
      __FILE__
      __ENCODING__
    )

    def initialize(exception)
      @name       = exception.name.to_s.tr("@", "")
      @lvar_names = exception.respond_to?(:local_variables) ? exception.local_variables : []
      receiver    = exception.receiver

      @method_names = receiver.methods + receiver.private_methods
      @ivar_names   = receiver.instance_variables
      @cvar_names   = receiver.class.class_variables
      @cvar_names  += receiver.class_variables if receiver.kind_of?(Module)
    end

    def corrections
      @corrections ||= SpellChecker
                     .new(dictionary: (RB_RESERVED_WORDS + lvar_names + method_names + ivar_names + cvar_names))
                     .correct(name) - NAMES_TO_EXCLUDE[@name]
    end
  end
end
PKHH[�l'��Pshare/ruby/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rbnu�[���# frozen-string-literal: true

require_relative "../../spell_checker"

module DidYouMean
  class ClassNameChecker
    attr_reader :class_name

    def initialize(exception)
      @class_name, @receiver, @original_message = exception.name, exception.receiver, exception.original_message
    end

    def corrections
      @corrections ||= SpellChecker.new(dictionary: class_names)
                         .correct(class_name)
                         .map(&:full_name)
                         .reject {|qualified_name| @original_message.include?(qualified_name) }
    end

    def class_names
      scopes.flat_map do |scope|
        scope.constants.map do |c|
          ClassName.new(c, scope == Object ? "" : "#{scope}::")
        end
      end
    end

    def scopes
      @scopes ||= @receiver.to_s.split("::").inject([Object]) do |_scopes, scope|
        _scopes << _scopes.last.const_get(scope)
      end.uniq
    end

    class ClassName < String
      attr :namespace

      def initialize(name, namespace = '')
        super(name.to_s)
        @namespace = namespace
      end

      def full_name
        self.class.new("#{namespace}#{self}")
      end
    end

    private_constant :ClassName
  end
end
PKHH[|;iԑ�=share/ruby/did_you_mean/spell_checkers/method_name_checker.rbnu�[���require_relative "../spell_checker"

module DidYouMean
  class MethodNameChecker
    attr_reader :method_name, :receiver

    NAMES_TO_EXCLUDE = { NilClass => nil.methods }
    NAMES_TO_EXCLUDE.default = []

    # +MethodNameChecker::RB_RESERVED_WORDS+ is the list of reserved words in
    # Ruby that take an argument. Unlike
    # +VariableNameChecker::RB_RESERVED_WORDS+, these reserved words require
    # an argument, and a +NoMethodError+ is raised due to the presence of the
    # argument.
    #
    # The +MethodNameChecker+ will use this list to suggest a reversed word if
    # a +NoMethodError+ is raised and found closest matches.
    #
    # Also see +VariableNameChecker::RB_RESERVED_WORDS+.
    RB_RESERVED_WORDS = %i(
      alias
      case
      def
      defined?
      elsif
      end
      ensure
      for
      rescue
      super
      undef
      unless
      until
      when
      while
      yield
    )

    def initialize(exception)
      @method_name  = exception.name
      @receiver     = exception.receiver
      @private_call = exception.respond_to?(:private_call?) ? exception.private_call? : false
    end

    def corrections
      @corrections ||= SpellChecker.new(dictionary: RB_RESERVED_WORDS + method_names).correct(method_name) - names_to_exclude
    end

    def method_names
      if Object === receiver
        method_names = receiver.methods + receiver.singleton_methods
        method_names += receiver.private_methods if @private_call
        method_names.uniq!
        method_names
      else
        []
      end
    end

    def names_to_exclude
      Object === receiver ? NAMES_TO_EXCLUDE[receiver.class] : []
    end
  end
end
PKHH[T��)��;share/ruby/did_you_mean/spell_checkers/key_error_checker.rbnu�[���require_relative "../spell_checker"

module DidYouMean
  class KeyErrorChecker
    def initialize(key_error)
      @key = key_error.key
      @keys = key_error.receiver.keys
    end

    def corrections
      @corrections ||= exact_matches.empty? ? SpellChecker.new(dictionary: @keys).correct(@key).map(&:inspect) : exact_matches
    end

    private

    def exact_matches
      @exact_matches ||= @keys.select { |word| @key == word.to_s }.map(&:inspect)
    end
  end
end
PKHH[��a��Cshare/ruby/did_you_mean/experimental/initializer_name_correction.rbnu�[���# frozen-string-literal: true

require_relative '../levenshtein'

module DidYouMean
  module Experimental
    module InitializerNameCorrection
      def method_added(name)
        super

        distance = Levenshtein.distance(name.to_s, 'initialize')
        if distance != 0 && distance <= 2
          warn "warning: #{name} might be misspelled, perhaps you meant initialize?"
        end
      end
    end

    ::Class.prepend(InitializerNameCorrection)
  end
end
PKHH[H�``<share/ruby/did_you_mean/experimental/ivar_name_correction.rbnu�[���# frozen-string-literal: true

require_relative '../../did_you_mean'

module DidYouMean
  module Experimental #:nodoc:
    class IvarNameCheckerBuilder #:nodoc:
      attr_reader :original_checker

      def initialize(original_checker) #:nodoc:
        @original_checker = original_checker
      end

      def new(no_method_error) #:nodoc:
        IvarNameChecker.new(no_method_error, original_checker: @original_checker)
      end
    end

    class IvarNameChecker #:nodoc:
      REPLS = {
        "(irb)" => -> { Readline::HISTORY.to_a.last }
      }

      TRACE = TracePoint.trace(:raise) do |tp|
        e = tp.raised_exception

        if SPELL_CHECKERS.include?(e.class.to_s) && !e.instance_variable_defined?(:@frame_binding)
          e.instance_variable_set(:@frame_binding, tp.binding)
        end
      end

      attr_reader :original_checker

      def initialize(no_method_error, original_checker: )
        @original_checker = original_checker.new(no_method_error)

        @location   = no_method_error.backtrace_locations.first
        @ivar_names = no_method_error.frame_binding.receiver.instance_variables

        no_method_error.remove_instance_variable(:@frame_binding)
      end

      def corrections
        original_checker.corrections + ivar_name_corrections
      end

      def ivar_name_corrections
        @ivar_name_corrections ||= SpellChecker.new(dictionary: @ivar_names).correct(receiver_name.to_s)
      end

      private

      def receiver_name
        return unless @original_checker.receiver.nil?

        abs_path = @location.absolute_path
        lineno   = @location.lineno

        /@(\w+)*\.#{@original_checker.method_name}/ =~ line(abs_path, lineno).to_s && $1
      end

      def line(abs_path, lineno)
        if REPLS[abs_path]
          REPLS[abs_path].call
        elsif File.exist?(abs_path)
          File.open(abs_path) do |file|
            file.detect { file.lineno == lineno }
          end
        end
      end
    end
  end

  NameError.send(:attr, :frame_binding)
  SPELL_CHECKERS['NoMethodError'] = Experimental::IvarNameCheckerBuilder.new(SPELL_CHECKERS['NoMethodError'])
end
PKHH[LA�
�
-share/ruby/did_you_mean/tree_spell_checker.rbnu�[���module DidYouMean
  # spell checker for a dictionary that has a tree
  # structure, see doc/tree_spell_checker_api.md
  class TreeSpellChecker
    attr_reader :dictionary, :dimensions, :separator, :augment

    def initialize(dictionary:, separator: '/', augment: nil)
      @dictionary = dictionary
      @separator = separator
      @augment = augment
      @dimensions = parse_dimensions
    end

    def correct(input)
      plausibles = plausible_dimensions input
      return no_idea(input) if plausibles.empty?
      suggestions = find_suggestions input, plausibles
      return no_idea(input) if suggestions.empty?
      suggestions
    end

    private

    def parse_dimensions
      ParseDimensions.new(dictionary, separator).call
    end

    def find_suggestions(input, plausibles)
      states = plausibles[0].product(*plausibles[1..-1])
      paths = possible_paths states
      leaf = input.split(separator).last
      ideas = find_ideas(paths, leaf)
      ideas.compact.flatten
    end

    def no_idea(input)
      return [] unless augment
      ::DidYouMean::SpellChecker.new(dictionary: dictionary).correct(input)
    end

    def find_ideas(paths, leaf)
      paths.map do |path|
        names = find_leaves(path)
        ideas = CorrectElement.new.call names, leaf
        ideas_to_paths ideas, leaf, names, path
      end
    end

    def ideas_to_paths(ideas, leaf, names, path)
      return nil if ideas.empty?
      return [path + separator + leaf] if names.include? leaf
      ideas.map { |str| path + separator + str }
    end

    def find_leaves(path)
      dictionary.map do |str|
        next unless str.include? "#{path}#{separator}"
        str.gsub("#{path}#{separator}", '')
      end.compact
    end

    def possible_paths(states)
      states.map do |state|
        state.join separator
      end
    end

    def plausible_dimensions(input)
      elements = input.split(separator)[0..-2]
      elements.each_with_index.map do |element, i|
        next if dimensions[i].nil?
        CorrectElement.new.call dimensions[i], element
      end.compact
    end
  end

  # parses the elements in each dimension
  class ParseDimensions
    def initialize(dictionary, separator)
      @dictionary = dictionary
      @separator = separator
    end

    def call
      leafless = remove_leaves
      dimensions = find_elements leafless
      dimensions.map do |elements|
        elements.to_set.to_a
      end
    end

    private

    def remove_leaves
      dictionary.map do |a|
        elements = a.split(separator)
        elements[0..-2]
      end.to_set.to_a
    end

    def find_elements(leafless)
      max_elements = leafless.map(&:size).max
      dimensions = Array.new(max_elements) { [] }
      (0...max_elements).each do |i|
        leafless.each do |elements|
          dimensions[i] << elements[i] unless elements[i].nil?
        end
      end
      dimensions
    end

    attr_reader :dictionary, :separator
  end

  # identifies the elements close to element
  class CorrectElement
    def initialize
    end

    def call(names, element)
      return names if names.size == 1
      str = normalize element
      return [str] if names.include? str
      checker = ::DidYouMean::SpellChecker.new(dictionary: names)
      checker.correct(str)
    end

    private

    def normalize(leaf)
      str = leaf.dup
      str.downcase!
      return str unless str.include? '@'
      str.tr!('@', '  ')
    end
  end
end
PKHH[�7�I**"share/ruby/did_you_mean/version.rbnu�[���module DidYouMean
  VERSION = "1.4.0"
end
PKHH[����5share/ruby/did_you_mean/formatters/plain_formatter.rbnu�[���# frozen-string-literal: true

module DidYouMean
  # The +DidYouMean::PlainFormatter+ is the basic, default formatter for the
  # gem. The formatter responds to the +message_for+ method and it returns a
  # human readable string.
  class PlainFormatter

    # Returns a human readable string that contains +corrections+. This
    # formatter is designed to be less verbose to not take too much screen
    # space while being helpful enough to the user.
    #
    # @example
    #
    #   formatter = DidYouMean::PlainFormatter.new
    #
    #   # displays suggestions in two lines with the leading empty line
    #   puts formatter.message_for(["methods", "method"])
    #
    #   Did you mean?  methods
    #                   method
    #   # => nil
    #
    #   # displays an empty line
    #   puts formatter.message_for([])
    #
    #   # => nil
    #
    def message_for(corrections)
      corrections.empty? ? "" : "\nDid you mean?  #{corrections.join("\n               ")}"
    end
  end
end
PKHH[��Ӱ�7share/ruby/did_you_mean/formatters/verbose_formatter.rbnu�[���# frozen-string-literal: true

module DidYouMean
  # The +DidYouMean::VerboseFormatter+ uses extra empty lines to make the
  # suggestion stand out more in the error message.
  #
  # In order to activate the verbose formatter,
  #
  # @example
  #
  #   OBject
  #   # => NameError: uninitialized constant OBject
  #   #    Did you mean?  Object
  #
  #   require 'did_you_mean/verbose'
  #
  #   OBject
  #   # => NameError: uninitialized constant OBject
  #   #
  #   #        Did you mean? Object
  #   #
  #
  class VerboseFormatter

    # Returns a human readable string that contains +corrections+. This
    # formatter is designed to be less verbose to not take too much screen
    # space while being helpful enough to the user.
    #
    # @example
    #
    #   formatter = DidYouMean::PlainFormatter.new
    #
    #   puts formatter.message_for(["methods", "method"])
    #
    #
    #       Did you mean? methods
    #                     method
    #
    #   # => nil
    #
    def message_for(corrections)
      return "" if corrections.empty?

      output = "\n\n    Did you mean? ".dup
      output << corrections.join("\n                  ")
      output << "\n "
    end
  end
end
PKHH[\Ն0��'share/ruby/did_you_mean/experimental.rbnu�[���warn "Experimental features in the did_you_mean gem has been removed " \
     "and `require \"did_you_mean/experimental\"' has no effect."
PKHH[z=���.share/ruby/did_you_mean/core_ext/name_error.rbnu�[���module DidYouMean
  module Correctable
    def original_message
      method(:to_s).super_method.call
    end

    def to_s
      msg = super.dup
      suggestion = DidYouMean.formatter.message_for(corrections)

      msg << suggestion if !msg.end_with?(suggestion)
      msg
    rescue
      super
    end

    def corrections
      @corrections ||= spell_checker.corrections
    end

    def spell_checker
      SPELL_CHECKERS[self.class.to_s].new(self)
    end
  end
end
PKHH[7m���"share/ruby/did_you_mean/verbose.rbnu�[���require_relative '../did_you_mean'
require_relative 'formatters/verbose_formatter'

DidYouMean.formatter = DidYouMean::VerboseFormatter.new
PKHH[U1i__&share/ruby/did_you_mean/levenshtein.rbnu�[���module DidYouMean
  module Levenshtein # :nodoc:
    # This code is based directly on the Text gem implementation
    # Copyright (c) 2006-2013 Paul Battley, Michael Neumann, Tim Fletcher.
    #
    # Returns a value representing the "cost" of transforming str1 into str2
    def distance(str1, str2)
      n = str1.length
      m = str2.length
      return m if n.zero?
      return n if m.zero?

      d = (0..m).to_a
      x = nil

      # to avoid duplicating an enumerable object, create it outside of the loop
      str2_codepoints = str2.codepoints

      str1.each_codepoint.with_index(1) do |char1, i|
        j = 0
        while j < m
          cost = (char1 == str2_codepoints[j]) ? 0 : 1
          x = min3(
            d[j+1] + 1, # insertion
            i + 1,      # deletion
            d[j] + cost # substitution
          )
          d[j] = i
          i = x

          j += 1
        end
        d[m] = x
      end

      x
    end
    module_function :distance

    private

    # detects the minimum value out of three arguments. This method is
    # faster than `[a, b, c].min` and puts less GC pressure.
    # See https://github.com/ruby/did_you_mean/pull/1 for a performance
    # benchmark.
    def min3(a, b, c)
      if a < b && a < c
        a
      elsif b < c
        b
      else
        c
      end
    end
    module_function :min3
  end
end
PKHH[	/V55share/ruby/yaml.rbnu�[���# frozen_string_literal: false

begin
  require 'psych'
rescue LoadError
  warn "It seems your ruby installation is missing psych (for YAML output).\n" \
    "To eliminate this warning, please install libyaml and reinstall your ruby.\n",
    uplevel: 1
  raise
end

YAML = Psych # :nodoc:

# YAML Ain't Markup Language
#
# This module provides a Ruby interface for data serialization in YAML format.
#
# The YAML module is an alias of Psych, the YAML engine for Ruby.
#
# == Usage
#
# Working with YAML can be very simple, for example:
#
#     require 'yaml'
#     # Parse a YAML string
#     YAML.load("--- foo") #=> "foo"
#
#     # Emit some YAML
#     YAML.dump("foo")     # => "--- foo\n...\n"
#     { :a => 'b'}.to_yaml  # => "---\n:a: b\n"
#
# As the implementation is provided by the Psych library, detailed documentation
# can be found in that library's docs (also part of standard library).
#
# == Security
#
# Do not use YAML to load untrusted data. Doing so is unsafe and could allow
# malicious input to execute arbitrary code inside your application. Please see
# doc/security.rdoc for more information.
#
# == History
#
# Syck was the original for YAML implementation in Ruby's standard library
# developed by why the lucky stiff.
#
# You can still use Syck, if you prefer, for parsing and emitting YAML, but you
# must install the 'syck' gem now in order to use it.
#
# In older Ruby versions, ie. <= 1.9, Syck is still provided, however it was
# completely removed with the release of Ruby 2.0.0.
#
# == More info
#
# For more advanced details on the implementation see Psych, and also check out
# http://yaml.org for spec details and other helpful information.
#
# Psych is maintained by Aaron Patterson on github: https://github.com/ruby/psych
#
# Syck can also be found on github: https://github.com/ruby/syck
module YAML
end
PKHH[c�EP;�;�share/ruby/fileutils.rbnu�[���# frozen_string_literal: true

begin
  require 'rbconfig'
rescue LoadError
  # for make mjit-headers
end

#
# = fileutils.rb
#
# Copyright (c) 2000-2007 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
#
# == module FileUtils
#
# Namespace for several file utility methods for copying, moving, removing, etc.
#
# === Module Functions
#
#   require 'fileutils'
#
#   FileUtils.cd(dir, **options)
#   FileUtils.cd(dir, **options) {|dir| block }
#   FileUtils.pwd()
#   FileUtils.mkdir(dir, **options)
#   FileUtils.mkdir(list, **options)
#   FileUtils.mkdir_p(dir, **options)
#   FileUtils.mkdir_p(list, **options)
#   FileUtils.rmdir(dir, **options)
#   FileUtils.rmdir(list, **options)
#   FileUtils.ln(target, link, **options)
#   FileUtils.ln(targets, dir, **options)
#   FileUtils.ln_s(target, link, **options)
#   FileUtils.ln_s(targets, dir, **options)
#   FileUtils.ln_sf(target, link, **options)
#   FileUtils.cp(src, dest, **options)
#   FileUtils.cp(list, dir, **options)
#   FileUtils.cp_r(src, dest, **options)
#   FileUtils.cp_r(list, dir, **options)
#   FileUtils.mv(src, dest, **options)
#   FileUtils.mv(list, dir, **options)
#   FileUtils.rm(list, **options)
#   FileUtils.rm_r(list, **options)
#   FileUtils.rm_rf(list, **options)
#   FileUtils.install(src, dest, **options)
#   FileUtils.chmod(mode, list, **options)
#   FileUtils.chmod_R(mode, list, **options)
#   FileUtils.chown(user, group, list, **options)
#   FileUtils.chown_R(user, group, list, **options)
#   FileUtils.touch(list, **options)
#
# Possible <tt>options</tt> are:
#
# <tt>:force</tt> :: forced operation (rewrite files if exist, remove
#                    directories if not empty, etc.);
# <tt>:verbose</tt> :: print command to be run, in bash syntax, before
#                      performing it;
# <tt>:preserve</tt> :: preserve object's group, user and modification
#                       time on copying;
# <tt>:noop</tt> :: no changes are made (usable in combination with
#                   <tt>:verbose</tt> which will print the command to run)
#
# Each method documents the options that it honours. See also ::commands,
# ::options and ::options_of methods to introspect which command have which
# options.
#
# All methods that have the concept of a "source" file or directory can take
# either one file or a list of files in that argument.  See the method
# documentation for examples.
#
# There are some `low level' methods, which do not accept keyword arguments:
#
#   FileUtils.copy_entry(src, dest, preserve = false, dereference_root = false, remove_destination = false)
#   FileUtils.copy_file(src, dest, preserve = false, dereference = true)
#   FileUtils.copy_stream(srcstream, deststream)
#   FileUtils.remove_entry(path, force = false)
#   FileUtils.remove_entry_secure(path, force = false)
#   FileUtils.remove_file(path, force = false)
#   FileUtils.compare_file(path_a, path_b)
#   FileUtils.compare_stream(stream_a, stream_b)
#   FileUtils.uptodate?(file, cmp_list)
#
# == module FileUtils::Verbose
#
# This module has all methods of FileUtils module, but it outputs messages
# before acting.  This equates to passing the <tt>:verbose</tt> flag to methods
# in FileUtils.
#
# == module FileUtils::NoWrite
#
# This module has all methods of FileUtils module, but never changes
# files/directories.  This equates to passing the <tt>:noop</tt> flag to methods
# in FileUtils.
#
# == module FileUtils::DryRun
#
# This module has all methods of FileUtils module, but never changes
# files/directories.  This equates to passing the <tt>:noop</tt> and
# <tt>:verbose</tt> flags to methods in FileUtils.
#
module FileUtils
  VERSION = "1.4.1"

  def self.private_module_function(name)   #:nodoc:
    module_function name
    private_class_method name
  end

  #
  # Returns the name of the current directory.
  #
  def pwd
    Dir.pwd
  end
  module_function :pwd

  alias getwd pwd
  module_function :getwd

  #
  # Changes the current directory to the directory +dir+.
  #
  # If this method is called with block, resumes to the previous
  # working directory after the block execution has finished.
  #
  #   FileUtils.cd('/')  # change directory
  #
  #   FileUtils.cd('/', verbose: true)   # change directory and report it
  #
  #   FileUtils.cd('/') do  # change directory
  #     # ...               # do something
  #   end                   # return to original directory
  #
  def cd(dir, verbose: nil, &block) # :yield: dir
    fu_output_message "cd #{dir}" if verbose
    result = Dir.chdir(dir, &block)
    fu_output_message 'cd -' if verbose and block
    result
  end
  module_function :cd

  alias chdir cd
  module_function :chdir

  #
  # Returns true if +new+ is newer than all +old_list+.
  # Non-existent files are older than any file.
  #
  #   FileUtils.uptodate?('hello.o', %w(hello.c hello.h)) or \
  #       system 'make hello.o'
  #
  def uptodate?(new, old_list)
    return false unless File.exist?(new)
    new_time = File.mtime(new)
    old_list.each do |old|
      if File.exist?(old)
        return false unless new_time > File.mtime(old)
      end
    end
    true
  end
  module_function :uptodate?

  def remove_trailing_slash(dir)   #:nodoc:
    dir == '/' ? dir : dir.chomp(?/)
  end
  private_module_function :remove_trailing_slash

  #
  # Creates one or more directories.
  #
  #   FileUtils.mkdir 'test'
  #   FileUtils.mkdir %w(tmp data)
  #   FileUtils.mkdir 'notexist', noop: true  # Does not really create.
  #   FileUtils.mkdir 'tmp', mode: 0700
  #
  def mkdir(list, mode: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "mkdir #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
    return if noop

    list.each do |dir|
      fu_mkdir dir, mode
    end
  end
  module_function :mkdir

  #
  # Creates a directory and all its parent directories.
  # For example,
  #
  #   FileUtils.mkdir_p '/usr/local/lib/ruby'
  #
  # causes to make following directories, if they do not exist.
  #
  # * /usr
  # * /usr/local
  # * /usr/local/lib
  # * /usr/local/lib/ruby
  #
  # You can pass several directories at a time in a list.
  #
  def mkdir_p(list, mode: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "mkdir -p #{mode ? ('-m %03o ' % mode) : ''}#{list.join ' '}" if verbose
    return *list if noop

    list.map {|path| remove_trailing_slash(path)}.each do |path|
      # optimize for the most common case
      begin
        fu_mkdir path, mode
        next
      rescue SystemCallError
        next if File.directory?(path)
      end

      stack = []
      until path == stack.last   # dirname("/")=="/", dirname("C:/")=="C:/"
        stack.push path
        path = File.dirname(path)
      end
      stack.pop                 # root directory should exist
      stack.reverse_each do |dir|
        begin
          fu_mkdir dir, mode
        rescue SystemCallError
          raise unless File.directory?(dir)
        end
      end
    end

    return *list
  end
  module_function :mkdir_p

  alias mkpath    mkdir_p
  alias makedirs  mkdir_p
  module_function :mkpath
  module_function :makedirs

  def fu_mkdir(path, mode)   #:nodoc:
    path = remove_trailing_slash(path)
    if mode
      Dir.mkdir path, mode
      File.chmod mode, path
    else
      Dir.mkdir path
    end
  end
  private_module_function :fu_mkdir

  #
  # Removes one or more directories.
  #
  #   FileUtils.rmdir 'somedir'
  #   FileUtils.rmdir %w(somedir anydir otherdir)
  #   # Does not really remove directory; outputs message.
  #   FileUtils.rmdir 'somedir', verbose: true, noop: true
  #
  def rmdir(list, parents: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "rmdir #{parents ? '-p ' : ''}#{list.join ' '}" if verbose
    return if noop
    list.each do |dir|
      Dir.rmdir(dir = remove_trailing_slash(dir))
      if parents
        begin
          until (parent = File.dirname(dir)) == '.' or parent == dir
            dir = parent
            Dir.rmdir(dir)
          end
        rescue Errno::ENOTEMPTY, Errno::EEXIST, Errno::ENOENT
        end
      end
    end
  end
  module_function :rmdir

  #
  # :call-seq:
  #   FileUtils.ln(target, link, force: nil, noop: nil, verbose: nil)
  #   FileUtils.ln(target,  dir, force: nil, noop: nil, verbose: nil)
  #   FileUtils.ln(targets, dir, force: nil, noop: nil, verbose: nil)
  #
  # In the first form, creates a hard link +link+ which points to +target+.
  # If +link+ already exists, raises Errno::EEXIST.
  # But if the +force+ option is set, overwrites +link+.
  #
  #   FileUtils.ln 'gcc', 'cc', verbose: true
  #   FileUtils.ln '/usr/bin/emacs21', '/usr/bin/emacs'
  #
  # In the second form, creates a link +dir/target+ pointing to +target+.
  # In the third form, creates several hard links in the directory +dir+,
  # pointing to each item in +targets+.
  # If +dir+ is not a directory, raises Errno::ENOTDIR.
  #
  #   FileUtils.cd '/sbin'
  #   FileUtils.ln %w(cp mv mkdir), '/bin'   # Now /sbin/cp and /bin/cp are linked.
  #
  def ln(src, dest, force: nil, noop: nil, verbose: nil)
    fu_output_message "ln#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest0(src, dest) do |s,d|
      remove_file d, true if force
      File.link s, d
    end
  end
  module_function :ln

  alias link ln
  module_function :link

  #
  # Hard link +src+ to +dest+. If +src+ is a directory, this method links
  # all its contents recursively. If +dest+ is a directory, links
  # +src+ to +dest/src+.
  #
  # +src+ can be a list of files.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  #   FileUtils.rm_r site_ruby + '/mylib', force: true
  #   FileUtils.cp_lr 'lib/', site_ruby + '/mylib'
  #
  #   # Examples of linking several files to target directory.
  #   FileUtils.cp_lr %w(mail.rb field.rb debug/), site_ruby + '/tmail'
  #   FileUtils.cp_lr Dir.glob('*.rb'), '/home/aamine/lib/ruby', noop: true, verbose: true
  #
  #   # If you want to link all contents of a directory instead of the
  #   # directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
  #   # use the following code.
  #   FileUtils.cp_lr 'src/.', 'dest'  # cp_lr('src', 'dest') makes dest/src, but this doesn't.
  #
  def cp_lr(src, dest, noop: nil, verbose: nil,
            dereference_root: true, remove_destination: false)
    fu_output_message "cp -lr#{remove_destination ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      link_entry s, d, dereference_root, remove_destination
    end
  end
  module_function :cp_lr

  #
  # :call-seq:
  #   FileUtils.ln_s(target, link, force: nil, noop: nil, verbose: nil)
  #   FileUtils.ln_s(target,  dir, force: nil, noop: nil, verbose: nil)
  #   FileUtils.ln_s(targets, dir, force: nil, noop: nil, verbose: nil)
  #
  # In the first form, creates a symbolic link +link+ which points to +target+.
  # If +link+ already exists, raises Errno::EEXIST.
  # But if the <tt>force</tt> option is set, overwrites +link+.
  #
  #   FileUtils.ln_s '/usr/bin/ruby', '/usr/local/bin/ruby'
  #   FileUtils.ln_s 'verylongsourcefilename.c', 'c', force: true
  #
  # In the second form, creates a link +dir/target+ pointing to +target+.
  # In the third form, creates several symbolic links in the directory +dir+,
  # pointing to each item in +targets+.
  # If +dir+ is not a directory, raises Errno::ENOTDIR.
  #
  #   FileUtils.ln_s Dir.glob('/bin/*.rb'), '/home/foo/bin'
  #
  def ln_s(src, dest, force: nil, noop: nil, verbose: nil)
    fu_output_message "ln -s#{force ? 'f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest0(src, dest) do |s,d|
      remove_file d, true if force
      File.symlink s, d
    end
  end
  module_function :ln_s

  alias symlink ln_s
  module_function :symlink

  #
  # :call-seq:
  #   FileUtils.ln_sf(*args)
  #
  # Same as
  #
  #   FileUtils.ln_s(*args, force: true)
  #
  def ln_sf(src, dest, noop: nil, verbose: nil)
    ln_s src, dest, force: true, noop: noop, verbose: verbose
  end
  module_function :ln_sf

  #
  # Hard links a file system entry +src+ to +dest+.
  # If +src+ is a directory, this method links its contents recursively.
  #
  # Both of +src+ and +dest+ must be a path name.
  # +src+ must exist, +dest+ must not exist.
  #
  # If +dereference_root+ is true, this method dereferences the tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  def link_entry(src, dest, dereference_root = false, remove_destination = false)
    Entry_.new(src, nil, dereference_root).traverse do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      File.unlink destent.path if remove_destination && File.file?(destent.path)
      ent.link destent.path
    end
  end
  module_function :link_entry

  #
  # Copies a file content +src+ to +dest+.  If +dest+ is a directory,
  # copies +src+ to +dest/src+.
  #
  # If +src+ is a list of files, then +dest+ must be a directory.
  #
  #   FileUtils.cp 'eval.c', 'eval.c.org'
  #   FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'
  #   FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6', verbose: true
  #   FileUtils.cp 'symlink', 'dest'   # copy content, "dest" is not a symlink
  #
  def cp(src, dest, preserve: nil, noop: nil, verbose: nil)
    fu_output_message "cp#{preserve ? ' -p' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      copy_file s, d, preserve
    end
  end
  module_function :cp

  alias copy cp
  module_function :copy

  #
  # Copies +src+ to +dest+. If +src+ is a directory, this method copies
  # all its contents recursively. If +dest+ is a directory, copies
  # +src+ to +dest/src+.
  #
  # +src+ can be a list of files.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  #   # Installing Ruby library "mylib" under the site_ruby
  #   FileUtils.rm_r site_ruby + '/mylib', force: true
  #   FileUtils.cp_r 'lib/', site_ruby + '/mylib'
  #
  #   # Examples of copying several files to target directory.
  #   FileUtils.cp_r %w(mail.rb field.rb debug/), site_ruby + '/tmail'
  #   FileUtils.cp_r Dir.glob('*.rb'), '/home/foo/lib/ruby', noop: true, verbose: true
  #
  #   # If you want to copy all contents of a directory instead of the
  #   # directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
  #   # use following code.
  #   FileUtils.cp_r 'src/.', 'dest'     # cp_r('src', 'dest') makes dest/src,
  #                                      # but this doesn't.
  #
  def cp_r(src, dest, preserve: nil, noop: nil, verbose: nil,
           dereference_root: true, remove_destination: nil)
    fu_output_message "cp -r#{preserve ? 'p' : ''}#{remove_destination ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      copy_entry s, d, preserve, dereference_root, remove_destination
    end
  end
  module_function :cp_r

  #
  # Copies a file system entry +src+ to +dest+.
  # If +src+ is a directory, this method copies its contents recursively.
  # This method preserves file types, c.f. symlink, directory...
  # (FIFO, device files and etc. are not supported yet)
  #
  # Both of +src+ and +dest+ must be a path name.
  # +src+ must exist, +dest+ must not exist.
  #
  # If +preserve+ is true, this method preserves owner, group, and
  # modified time.  Permissions are copied regardless +preserve+.
  #
  # If +dereference_root+ is true, this method dereference tree root.
  #
  # If +remove_destination+ is true, this method removes each destination file before copy.
  #
  def copy_entry(src, dest, preserve = false, dereference_root = false, remove_destination = false)
    if dereference_root
      src = File.realpath(src)
    end

    Entry_.new(src, nil, false).wrap_traverse(proc do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      File.unlink destent.path if remove_destination && (File.file?(destent.path) || File.symlink?(destent.path))
      ent.copy destent.path
    end, proc do |ent|
      destent = Entry_.new(dest, ent.rel, false)
      ent.copy_metadata destent.path if preserve
    end)
  end
  module_function :copy_entry

  #
  # Copies file contents of +src+ to +dest+.
  # Both of +src+ and +dest+ must be a path name.
  #
  def copy_file(src, dest, preserve = false, dereference = true)
    ent = Entry_.new(src, nil, dereference)
    ent.copy_file dest
    ent.copy_metadata dest if preserve
  end
  module_function :copy_file

  #
  # Copies stream +src+ to +dest+.
  # +src+ must respond to #read(n) and
  # +dest+ must respond to #write(str).
  #
  def copy_stream(src, dest)
    IO.copy_stream(src, dest)
  end
  module_function :copy_stream

  #
  # Moves file(s) +src+ to +dest+.  If +file+ and +dest+ exist on the different
  # disk partition, the file is copied then the original file is removed.
  #
  #   FileUtils.mv 'badname.rb', 'goodname.rb'
  #   FileUtils.mv 'stuff.rb', '/notexist/lib/ruby', force: true  # no error
  #
  #   FileUtils.mv %w(junk.txt dust.txt), '/home/foo/.trash/'
  #   FileUtils.mv Dir.glob('test*.rb'), 'test', noop: true, verbose: true
  #
  def mv(src, dest, force: nil, noop: nil, verbose: nil, secure: nil)
    fu_output_message "mv#{force ? ' -f' : ''} #{[src,dest].flatten.join ' '}" if verbose
    return if noop
    fu_each_src_dest(src, dest) do |s, d|
      destent = Entry_.new(d, nil, true)
      begin
        if destent.exist?
          if destent.directory?
            raise Errno::EEXIST, d
          end
        end
        begin
          File.rename s, d
        rescue Errno::EXDEV,
               Errno::EPERM # move from unencrypted to encrypted dir (ext4)
          copy_entry s, d, true
          if secure
            remove_entry_secure s, force
          else
            remove_entry s, force
          end
        end
      rescue SystemCallError
        raise unless force
      end
    end
  end
  module_function :mv

  alias move mv
  module_function :move

  #
  # Remove file(s) specified in +list+.  This method cannot remove directories.
  # All StandardErrors are ignored when the :force option is set.
  #
  #   FileUtils.rm %w( junk.txt dust.txt )
  #   FileUtils.rm Dir.glob('*.so')
  #   FileUtils.rm 'NotExistFile', force: true   # never raises exception
  #
  def rm(list, force: nil, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message "rm#{force ? ' -f' : ''} #{list.join ' '}" if verbose
    return if noop

    list.each do |path|
      remove_file path, force
    end
  end
  module_function :rm

  alias remove rm
  module_function :remove

  #
  # Equivalent to
  #
  #   FileUtils.rm(list, force: true)
  #
  def rm_f(list, noop: nil, verbose: nil)
    rm list, force: true, noop: noop, verbose: verbose
  end
  module_function :rm_f

  alias safe_unlink rm_f
  module_function :safe_unlink

  #
  # remove files +list+[0] +list+[1]... If +list+[n] is a directory,
  # removes its all contents recursively. This method ignores
  # StandardError when :force option is set.
  #
  #   FileUtils.rm_r Dir.glob('/tmp/*')
  #   FileUtils.rm_r 'some_dir', force: true
  #
  # WARNING: This method causes local vulnerability
  # if one of parent directories or removing directory tree are world
  # writable (including /tmp, whose permission is 1777), and the current
  # process has strong privilege such as Unix super user (root), and the
  # system has symbolic link.  For secure removing, read the documentation
  # of remove_entry_secure carefully, and set :secure option to true.
  # Default is <tt>secure: false</tt>.
  #
  # NOTE: This method calls remove_entry_secure if :secure option is set.
  # See also remove_entry_secure.
  #
  def rm_r(list, force: nil, noop: nil, verbose: nil, secure: nil)
    list = fu_list(list)
    fu_output_message "rm -r#{force ? 'f' : ''} #{list.join ' '}" if verbose
    return if noop
    list.each do |path|
      if secure
        remove_entry_secure path, force
      else
        remove_entry path, force
      end
    end
  end
  module_function :rm_r

  #
  # Equivalent to
  #
  #   FileUtils.rm_r(list, force: true)
  #
  # WARNING: This method causes local vulnerability.
  # Read the documentation of rm_r first.
  #
  def rm_rf(list, noop: nil, verbose: nil, secure: nil)
    rm_r list, force: true, noop: noop, verbose: verbose, secure: secure
  end
  module_function :rm_rf

  alias rmtree rm_rf
  module_function :rmtree

  #
  # This method removes a file system entry +path+.  +path+ shall be a
  # regular file, a directory, or something.  If +path+ is a directory,
  # remove it recursively.  This method is required to avoid TOCTTOU
  # (time-of-check-to-time-of-use) local security vulnerability of rm_r.
  # #rm_r causes security hole when:
  #
  # * Parent directory is world writable (including /tmp).
  # * Removing directory tree includes world writable directory.
  # * The system has symbolic link.
  #
  # To avoid this security hole, this method applies special preprocess.
  # If +path+ is a directory, this method chown(2) and chmod(2) all
  # removing directories.  This requires the current process is the
  # owner of the removing whole directory tree, or is the super user (root).
  #
  # WARNING: You must ensure that *ALL* parent directories cannot be
  # moved by other untrusted users.  For example, parent directories
  # should not be owned by untrusted users, and should not be world
  # writable except when the sticky bit set.
  #
  # WARNING: Only the owner of the removing directory tree, or Unix super
  # user (root) should invoke this method.  Otherwise this method does not
  # work.
  #
  # For details of this security vulnerability, see Perl's case:
  #
  # * https://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0448
  # * https://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0452
  #
  # For fileutils.rb, this vulnerability is reported in [ruby-dev:26100].
  #
  def remove_entry_secure(path, force = false)
    unless fu_have_symlink?
      remove_entry path, force
      return
    end
    fullpath = File.expand_path(path)
    st = File.lstat(fullpath)
    unless st.directory?
      File.unlink fullpath
      return
    end
    # is a directory.
    parent_st = File.stat(File.dirname(fullpath))
    unless parent_st.world_writable?
      remove_entry path, force
      return
    end
    unless parent_st.sticky?
      raise ArgumentError, "parent directory is world writable, FileUtils#remove_entry_secure does not work; abort: #{path.inspect} (parent directory mode #{'%o' % parent_st.mode})"
    end

    # freeze tree root
    euid = Process.euid
    dot_file = fullpath + "/."
    begin
      File.open(dot_file) {|f|
        unless fu_stat_identical_entry?(st, f.stat)
          # symlink (TOC-to-TOU attack?)
          File.unlink fullpath
          return
        end
        f.chown euid, -1
        f.chmod 0700
      }
    rescue Errno::EISDIR # JRuby in non-native mode can't open files as dirs
      File.lstat(dot_file).tap {|fstat|
        unless fu_stat_identical_entry?(st, fstat)
          # symlink (TOC-to-TOU attack?)
          File.unlink fullpath
          return
        end
        File.chown euid, -1, dot_file
        File.chmod 0700, dot_file
      }
    end

    unless fu_stat_identical_entry?(st, File.lstat(fullpath))
      # TOC-to-TOU attack?
      File.unlink fullpath
      return
    end

    # ---- tree root is frozen ----
    root = Entry_.new(path)
    root.preorder_traverse do |ent|
      if ent.directory?
        ent.chown euid, -1
        ent.chmod 0700
      end
    end
    root.postorder_traverse do |ent|
      begin
        ent.remove
      rescue
        raise unless force
      end
    end
  rescue
    raise unless force
  end
  module_function :remove_entry_secure

  def fu_have_symlink?   #:nodoc:
    File.symlink nil, nil
  rescue NotImplementedError
    return false
  rescue TypeError
    return true
  end
  private_module_function :fu_have_symlink?

  def fu_stat_identical_entry?(a, b)   #:nodoc:
    a.dev == b.dev and a.ino == b.ino
  end
  private_module_function :fu_stat_identical_entry?

  #
  # This method removes a file system entry +path+.
  # +path+ might be a regular file, a directory, or something.
  # If +path+ is a directory, remove it recursively.
  #
  # See also remove_entry_secure.
  #
  def remove_entry(path, force = false)
    Entry_.new(path).postorder_traverse do |ent|
      begin
        ent.remove
      rescue
        raise unless force
      end
    end
  rescue
    raise unless force
  end
  module_function :remove_entry

  #
  # Removes a file +path+.
  # This method ignores StandardError if +force+ is true.
  #
  def remove_file(path, force = false)
    Entry_.new(path).remove_file
  rescue
    raise unless force
  end
  module_function :remove_file

  #
  # Removes a directory +dir+ and its contents recursively.
  # This method ignores StandardError if +force+ is true.
  #
  def remove_dir(path, force = false)
    remove_entry path, force   # FIXME?? check if it is a directory
  end
  module_function :remove_dir

  #
  # Returns true if the contents of a file +a+ and a file +b+ are identical.
  #
  #   FileUtils.compare_file('somefile', 'somefile')       #=> true
  #   FileUtils.compare_file('/dev/null', '/dev/urandom')  #=> false
  #
  def compare_file(a, b)
    return false unless File.size(a) == File.size(b)
    File.open(a, 'rb') {|fa|
      File.open(b, 'rb') {|fb|
        return compare_stream(fa, fb)
      }
    }
  end
  module_function :compare_file

  alias identical? compare_file
  alias cmp compare_file
  module_function :identical?
  module_function :cmp

  #
  # Returns true if the contents of a stream +a+ and +b+ are identical.
  #
  def compare_stream(a, b)
    bsize = fu_stream_blksize(a, b)

    if RUBY_VERSION > "2.4"
      sa = String.new(capacity: bsize)
      sb = String.new(capacity: bsize)
    else
      sa = String.new
      sb = String.new
    end

    begin
      a.read(bsize, sa)
      b.read(bsize, sb)
      return true if sa.empty? && sb.empty?
    end while sa == sb
    false
  end
  module_function :compare_stream

  #
  # If +src+ is not same as +dest+, copies it and changes the permission
  # mode to +mode+.  If +dest+ is a directory, destination is +dest+/+src+.
  # This method removes destination before copy.
  #
  #   FileUtils.install 'ruby', '/usr/local/bin/ruby', mode: 0755, verbose: true
  #   FileUtils.install 'lib.rb', '/usr/local/lib/ruby/site_ruby', verbose: true
  #
  def install(src, dest, mode: nil, owner: nil, group: nil, preserve: nil,
              noop: nil, verbose: nil)
    if verbose
      msg = +"install -c"
      msg << ' -p' if preserve
      msg << ' -m ' << mode_to_s(mode) if mode
      msg << " -o #{owner}" if owner
      msg << " -g #{group}" if group
      msg << ' ' << [src,dest].flatten.join(' ')
      fu_output_message msg
    end
    return if noop
    uid = fu_get_uid(owner)
    gid = fu_get_gid(group)
    fu_each_src_dest(src, dest) do |s, d|
      st = File.stat(s)
      unless File.exist?(d) and compare_file(s, d)
        remove_file d, true
        copy_file s, d
        File.utime st.atime, st.mtime, d if preserve
        File.chmod fu_mode(mode, st), d if mode
        File.chown uid, gid, d if uid or gid
      end
    end
  end
  module_function :install

  def user_mask(target)  #:nodoc:
    target.each_char.inject(0) do |mask, chr|
      case chr
      when "u"
        mask | 04700
      when "g"
        mask | 02070
      when "o"
        mask | 01007
      when "a"
        mask | 07777
      else
        raise ArgumentError, "invalid `who' symbol in file mode: #{chr}"
      end
    end
  end
  private_module_function :user_mask

  def apply_mask(mode, user_mask, op, mode_mask)   #:nodoc:
    case op
    when '='
      (mode & ~user_mask) | (user_mask & mode_mask)
    when '+'
      mode | (user_mask & mode_mask)
    when '-'
      mode & ~(user_mask & mode_mask)
    end
  end
  private_module_function :apply_mask

  def symbolic_modes_to_i(mode_sym, path)  #:nodoc:
    mode = if File::Stat === path
             path.mode
           else
             File.stat(path).mode
           end
    mode_sym.split(/,/).inject(mode & 07777) do |current_mode, clause|
      target, *actions = clause.split(/([=+-])/)
      raise ArgumentError, "invalid file mode: #{mode_sym}" if actions.empty?
      target = 'a' if target.empty?
      user_mask = user_mask(target)
      actions.each_slice(2) do |op, perm|
        need_apply = op == '='
        mode_mask = (perm || '').each_char.inject(0) do |mask, chr|
          case chr
          when "r"
            mask | 0444
          when "w"
            mask | 0222
          when "x"
            mask | 0111
          when "X"
            if FileTest.directory? path
              mask | 0111
            else
              mask
            end
          when "s"
            mask | 06000
          when "t"
            mask | 01000
          when "u", "g", "o"
            if mask.nonzero?
              current_mode = apply_mask(current_mode, user_mask, op, mask)
            end
            need_apply = false
            copy_mask = user_mask(chr)
            (current_mode & copy_mask) / (copy_mask & 0111) * (user_mask & 0111)
          else
            raise ArgumentError, "invalid `perm' symbol in file mode: #{chr}"
          end
        end

        if mode_mask.nonzero? || need_apply
          current_mode = apply_mask(current_mode, user_mask, op, mode_mask)
        end
      end
      current_mode
    end
  end
  private_module_function :symbolic_modes_to_i

  def fu_mode(mode, path)  #:nodoc:
    mode.is_a?(String) ? symbolic_modes_to_i(mode, path) : mode
  end
  private_module_function :fu_mode

  def mode_to_s(mode)  #:nodoc:
    mode.is_a?(String) ? mode : "%o" % mode
  end
  private_module_function :mode_to_s

  #
  # Changes permission bits on the named files (in +list+) to the bit pattern
  # represented by +mode+.
  #
  # +mode+ is the symbolic and absolute mode can be used.
  #
  # Absolute mode is
  #   FileUtils.chmod 0755, 'somecommand'
  #   FileUtils.chmod 0644, %w(my.rb your.rb his.rb her.rb)
  #   FileUtils.chmod 0755, '/usr/bin/ruby', verbose: true
  #
  # Symbolic mode is
  #   FileUtils.chmod "u=wrx,go=rx", 'somecommand'
  #   FileUtils.chmod "u=wr,go=rr", %w(my.rb your.rb his.rb her.rb)
  #   FileUtils.chmod "u=wrx,go=rx", '/usr/bin/ruby', verbose: true
  #
  # "a" :: is user, group, other mask.
  # "u" :: is user's mask.
  # "g" :: is group's mask.
  # "o" :: is other's mask.
  # "w" :: is write permission.
  # "r" :: is read permission.
  # "x" :: is execute permission.
  # "X" ::
  #   is execute permission for directories only, must be used in conjunction with "+"
  # "s" :: is uid, gid.
  # "t" :: is sticky bit.
  # "+" :: is added to a class given the specified mode.
  # "-" :: Is removed from a given class given mode.
  # "=" :: Is the exact nature of the class will be given a specified mode.

  def chmod(mode, list, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message sprintf('chmod %s %s', mode_to_s(mode), list.join(' ')) if verbose
    return if noop
    list.each do |path|
      Entry_.new(path).chmod(fu_mode(mode, path))
    end
  end
  module_function :chmod

  #
  # Changes permission bits on the named files (in +list+)
  # to the bit pattern represented by +mode+.
  #
  #   FileUtils.chmod_R 0700, "/tmp/app.#{$$}"
  #   FileUtils.chmod_R "u=wrx", "/tmp/app.#{$$}"
  #
  def chmod_R(mode, list, noop: nil, verbose: nil, force: nil)
    list = fu_list(list)
    fu_output_message sprintf('chmod -R%s %s %s',
                              (force ? 'f' : ''),
                              mode_to_s(mode), list.join(' ')) if verbose
    return if noop
    list.each do |root|
      Entry_.new(root).traverse do |ent|
        begin
          ent.chmod(fu_mode(mode, ent.path))
        rescue
          raise unless force
        end
      end
    end
  end
  module_function :chmod_R

  #
  # Changes owner and group on the named files (in +list+)
  # to the user +user+ and the group +group+.  +user+ and +group+
  # may be an ID (Integer/String) or a name (String).
  # If +user+ or +group+ is nil, this method does not change
  # the attribute.
  #
  #   FileUtils.chown 'root', 'staff', '/usr/local/bin/ruby'
  #   FileUtils.chown nil, 'bin', Dir.glob('/usr/bin/*'), verbose: true
  #
  def chown(user, group, list, noop: nil, verbose: nil)
    list = fu_list(list)
    fu_output_message sprintf('chown %s %s',
                              (group ? "#{user}:#{group}" : user || ':'),
                              list.join(' ')) if verbose
    return if noop
    uid = fu_get_uid(user)
    gid = fu_get_gid(group)
    list.each do |path|
      Entry_.new(path).chown uid, gid
    end
  end
  module_function :chown

  #
  # Changes owner and group on the named files (in +list+)
  # to the user +user+ and the group +group+ recursively.
  # +user+ and +group+ may be an ID (Integer/String) or
  # a name (String).  If +user+ or +group+ is nil, this
  # method does not change the attribute.
  #
  #   FileUtils.chown_R 'www', 'www', '/var/www/htdocs'
  #   FileUtils.chown_R 'cvs', 'cvs', '/var/cvs', verbose: true
  #
  def chown_R(user, group, list, noop: nil, verbose: nil, force: nil)
    list = fu_list(list)
    fu_output_message sprintf('chown -R%s %s %s',
                              (force ? 'f' : ''),
                              (group ? "#{user}:#{group}" : user || ':'),
                              list.join(' ')) if verbose
    return if noop
    uid = fu_get_uid(user)
    gid = fu_get_gid(group)
    list.each do |root|
      Entry_.new(root).traverse do |ent|
        begin
          ent.chown uid, gid
        rescue
          raise unless force
        end
      end
    end
  end
  module_function :chown_R

  def fu_get_uid(user)   #:nodoc:
    return nil unless user
    case user
    when Integer
      user
    when /\A\d+\z/
      user.to_i
    else
      require 'etc'
      Etc.getpwnam(user) ? Etc.getpwnam(user).uid : nil
    end
  end
  private_module_function :fu_get_uid

  def fu_get_gid(group)   #:nodoc:
    return nil unless group
    case group
    when Integer
      group
    when /\A\d+\z/
      group.to_i
    else
      require 'etc'
      Etc.getgrnam(group) ? Etc.getgrnam(group).gid : nil
    end
  end
  private_module_function :fu_get_gid

  #
  # Updates modification time (mtime) and access time (atime) of file(s) in
  # +list+.  Files are created if they don't exist.
  #
  #   FileUtils.touch 'timestamp'
  #   FileUtils.touch Dir.glob('*.c');  system 'make'
  #
  def touch(list, noop: nil, verbose: nil, mtime: nil, nocreate: nil)
    list = fu_list(list)
    t = mtime
    if verbose
      fu_output_message "touch #{nocreate ? '-c ' : ''}#{t ? t.strftime('-t %Y%m%d%H%M.%S ') : ''}#{list.join ' '}"
    end
    return if noop
    list.each do |path|
      created = nocreate
      begin
        File.utime(t, t, path)
      rescue Errno::ENOENT
        raise if created
        File.open(path, 'a') {
          ;
        }
        created = true
        retry if t
      end
    end
  end
  module_function :touch

  private

  module StreamUtils_
    private

    case (defined?(::RbConfig) ? ::RbConfig::CONFIG['host_os'] : ::RUBY_PLATFORM)
    when /mswin|mingw/
      def fu_windows?; true end
    else
      def fu_windows?; false end
    end

    def fu_copy_stream0(src, dest, blksize = nil)   #:nodoc:
      IO.copy_stream(src, dest)
    end

    def fu_stream_blksize(*streams)
      streams.each do |s|
        next unless s.respond_to?(:stat)
        size = fu_blksize(s.stat)
        return size if size
      end
      fu_default_blksize()
    end

    def fu_blksize(st)
      s = st.blksize
      return nil unless s
      return nil if s == 0
      s
    end

    def fu_default_blksize
      1024
    end
  end

  include StreamUtils_
  extend StreamUtils_

  class Entry_   #:nodoc: internal use only
    include StreamUtils_

    def initialize(a, b = nil, deref = false)
      @prefix = @rel = @path = nil
      if b
        @prefix = a
        @rel = b
      else
        @path = a
      end
      @deref = deref
      @stat = nil
      @lstat = nil
    end

    def inspect
      "\#<#{self.class} #{path()}>"
    end

    def path
      if @path
        File.path(@path)
      else
        join(@prefix, @rel)
      end
    end

    def prefix
      @prefix || @path
    end

    def rel
      @rel
    end

    def dereference?
      @deref
    end

    def exist?
      begin
        lstat
        true
      rescue Errno::ENOENT
        false
      end
    end

    def file?
      s = lstat!
      s and s.file?
    end

    def directory?
      s = lstat!
      s and s.directory?
    end

    def symlink?
      s = lstat!
      s and s.symlink?
    end

    def chardev?
      s = lstat!
      s and s.chardev?
    end

    def blockdev?
      s = lstat!
      s and s.blockdev?
    end

    def socket?
      s = lstat!
      s and s.socket?
    end

    def pipe?
      s = lstat!
      s and s.pipe?
    end

    S_IF_DOOR = 0xD000

    def door?
      s = lstat!
      s and (s.mode & 0xF000 == S_IF_DOOR)
    end

    def entries
      opts = {}
      opts[:encoding] = ::Encoding::UTF_8 if fu_windows?

      files = if Dir.respond_to?(:children)
        Dir.children(path, **opts)
      else
        Dir.entries(path(), **opts)
           .reject {|n| n == '.' or n == '..' }
      end

      untaint = RUBY_VERSION < '2.7'
      files.map {|n| Entry_.new(prefix(), join(rel(), untaint ? n.untaint : n)) }
    end

    def stat
      return @stat if @stat
      if lstat() and lstat().symlink?
        @stat = File.stat(path())
      else
        @stat = lstat()
      end
      @stat
    end

    def stat!
      return @stat if @stat
      if lstat! and lstat!.symlink?
        @stat = File.stat(path())
      else
        @stat = lstat!
      end
      @stat
    rescue SystemCallError
      nil
    end

    def lstat
      if dereference?
        @lstat ||= File.stat(path())
      else
        @lstat ||= File.lstat(path())
      end
    end

    def lstat!
      lstat()
    rescue SystemCallError
      nil
    end

    def chmod(mode)
      if symlink?
        File.lchmod mode, path() if have_lchmod?
      else
        File.chmod mode, path()
      end
    rescue Errno::EOPNOTSUPP
    end

    def chown(uid, gid)
      if symlink?
        File.lchown uid, gid, path() if have_lchown?
      else
        File.chown uid, gid, path()
      end
    end

    def link(dest)
      case
      when directory?
        if !File.exist?(dest) and descendant_directory?(dest, path)
          raise ArgumentError, "cannot link directory %s to itself %s" % [path, dest]
        end
        begin
          Dir.mkdir dest
        rescue
          raise unless File.directory?(dest)
        end
      else
        File.link path(), dest
      end
    end

    def copy(dest)
      lstat
      case
      when file?
        copy_file dest
      when directory?
        if !File.exist?(dest) and descendant_directory?(dest, path)
          raise ArgumentError, "cannot copy directory %s to itself %s" % [path, dest]
        end
        begin
          Dir.mkdir dest
        rescue
          raise unless File.directory?(dest)
        end
      when symlink?
        File.symlink File.readlink(path()), dest
      when chardev?, blockdev?
        raise "cannot handle device file"
      when socket?
        begin
          require 'socket'
        rescue LoadError
          raise "cannot handle socket"
        else
          raise "cannot handle socket" unless defined?(UNIXServer)
        end
        UNIXServer.new(dest).close
        File.chmod lstat().mode, dest
      when pipe?
        raise "cannot handle FIFO" unless File.respond_to?(:mkfifo)
        File.mkfifo dest, lstat().mode
      when door?
        raise "cannot handle door: #{path()}"
      else
        raise "unknown file type: #{path()}"
      end
    end

    def copy_file(dest)
      File.open(path()) do |s|
        File.open(dest, 'wb', s.stat.mode) do |f|
          IO.copy_stream(s, f)
        end
      end
    end

    def copy_metadata(path)
      st = lstat()
      if !st.symlink?
        File.utime st.atime, st.mtime, path
      end
      mode = st.mode
      begin
        if st.symlink?
          begin
            File.lchown st.uid, st.gid, path
          rescue NotImplementedError
          end
        else
          File.chown st.uid, st.gid, path
        end
      rescue Errno::EPERM, Errno::EACCES
        # clear setuid/setgid
        mode &= 01777
      end
      if st.symlink?
        begin
          File.lchmod mode, path
        rescue NotImplementedError, Errno::EOPNOTSUPP
        end
      else
        File.chmod mode, path
      end
    end

    def remove
      if directory?
        remove_dir1
      else
        remove_file
      end
    end

    def remove_dir1
      platform_support {
        Dir.rmdir path().chomp(?/)
      }
    end

    def remove_file
      platform_support {
        File.unlink path
      }
    end

    def platform_support
      return yield unless fu_windows?
      first_time_p = true
      begin
        yield
      rescue Errno::ENOENT
        raise
      rescue => err
        if first_time_p
          first_time_p = false
          begin
            File.chmod 0700, path()   # Windows does not have symlink
            retry
          rescue SystemCallError
          end
        end
        raise err
      end
    end

    def preorder_traverse
      stack = [self]
      while ent = stack.pop
        yield ent
        stack.concat ent.entries.reverse if ent.directory?
      end
    end

    alias traverse preorder_traverse

    def postorder_traverse
      if directory?
        entries().each do |ent|
          ent.postorder_traverse do |e|
            yield e
          end
        end
      end
    ensure
      yield self
    end

    def wrap_traverse(pre, post)
      pre.call self
      if directory?
        entries.each do |ent|
          ent.wrap_traverse pre, post
        end
      end
      post.call self
    end

    private

    @@fileutils_rb_have_lchmod = nil

    def have_lchmod?
      # This is not MT-safe, but it does not matter.
      if @@fileutils_rb_have_lchmod == nil
        @@fileutils_rb_have_lchmod = check_have_lchmod?
      end
      @@fileutils_rb_have_lchmod
    end

    def check_have_lchmod?
      return false unless File.respond_to?(:lchmod)
      File.lchmod 0
      return true
    rescue NotImplementedError
      return false
    end

    @@fileutils_rb_have_lchown = nil

    def have_lchown?
      # This is not MT-safe, but it does not matter.
      if @@fileutils_rb_have_lchown == nil
        @@fileutils_rb_have_lchown = check_have_lchown?
      end
      @@fileutils_rb_have_lchown
    end

    def check_have_lchown?
      return false unless File.respond_to?(:lchown)
      File.lchown nil, nil
      return true
    rescue NotImplementedError
      return false
    end

    def join(dir, base)
      return File.path(dir) if not base or base == '.'
      return File.path(base) if not dir or dir == '.'
      File.join(dir, base)
    end

    if File::ALT_SEPARATOR
      DIRECTORY_TERM = "(?=[/#{Regexp.quote(File::ALT_SEPARATOR)}]|\\z)"
    else
      DIRECTORY_TERM = "(?=/|\\z)"
    end

    def descendant_directory?(descendant, ascendant)
      if File::FNM_SYSCASE.nonzero?
        File.expand_path(File.dirname(descendant)).casecmp(File.expand_path(ascendant)) == 0
      else
        File.expand_path(File.dirname(descendant)) == File.expand_path(ascendant)
      end
    end
  end   # class Entry_

  def fu_list(arg)   #:nodoc:
    [arg].flatten.map {|path| File.path(path) }
  end
  private_module_function :fu_list

  def fu_each_src_dest(src, dest)   #:nodoc:
    fu_each_src_dest0(src, dest) do |s, d|
      raise ArgumentError, "same file: #{s} and #{d}" if fu_same?(s, d)
      yield s, d
    end
  end
  private_module_function :fu_each_src_dest

  def fu_each_src_dest0(src, dest)   #:nodoc:
    if tmp = Array.try_convert(src)
      tmp.each do |s|
        s = File.path(s)
        yield s, File.join(dest, File.basename(s))
      end
    else
      src = File.path(src)
      if File.directory?(dest)
        yield src, File.join(dest, File.basename(src))
      else
        yield src, File.path(dest)
      end
    end
  end
  private_module_function :fu_each_src_dest0

  def fu_same?(a, b)   #:nodoc:
    File.identical?(a, b)
  end
  private_module_function :fu_same?

  def fu_output_message(msg)   #:nodoc:
    output = @fileutils_output if defined?(@fileutils_output)
    output ||= $stderr
    if defined?(@fileutils_label)
      msg = @fileutils_label + msg
    end
    output.puts msg
  end
  private_module_function :fu_output_message

  # This hash table holds command options.
  OPT_TABLE = {}    #:nodoc: internal use only
  (private_instance_methods & methods(false)).inject(OPT_TABLE) {|tbl, name|
    (tbl[name.to_s] = instance_method(name).parameters).map! {|t, n| n if t == :key}.compact!
    tbl
  }

  public

  #
  # Returns an Array of names of high-level methods that accept any keyword
  # arguments.
  #
  #   p FileUtils.commands  #=> ["chmod", "cp", "cp_r", "install", ...]
  #
  def self.commands
    OPT_TABLE.keys
  end

  #
  # Returns an Array of option names.
  #
  #   p FileUtils.options  #=> ["noop", "force", "verbose", "preserve", "mode"]
  #
  def self.options
    OPT_TABLE.values.flatten.uniq.map {|sym| sym.to_s }
  end

  #
  # Returns true if the method +mid+ have an option +opt+.
  #
  #   p FileUtils.have_option?(:cp, :noop)     #=> true
  #   p FileUtils.have_option?(:rm, :force)    #=> true
  #   p FileUtils.have_option?(:rm, :preserve) #=> false
  #
  def self.have_option?(mid, opt)
    li = OPT_TABLE[mid.to_s] or raise ArgumentError, "no such method: #{mid}"
    li.include?(opt)
  end

  #
  # Returns an Array of option names of the method +mid+.
  #
  #   p FileUtils.options_of(:rm)  #=> ["noop", "verbose", "force"]
  #
  def self.options_of(mid)
    OPT_TABLE[mid.to_s].map {|sym| sym.to_s }
  end

  #
  # Returns an Array of methods names which have the option +opt+.
  #
  #   p FileUtils.collect_method(:preserve) #=> ["cp", "cp_r", "copy", "install"]
  #
  def self.collect_method(opt)
    OPT_TABLE.keys.select {|m| OPT_TABLE[m].include?(opt) }
  end

  private

  LOW_METHODS = singleton_methods(false) - collect_method(:noop).map(&:intern) # :nodoc:
  module LowMethods # :nodoc: internal use only
    private
    def _do_nothing(*)end
    ::FileUtils::LOW_METHODS.map {|name| alias_method name, :_do_nothing}
  end

  METHODS = singleton_methods() - [:private_module_function,                  # :nodoc:
      :commands, :options, :have_option?, :options_of, :collect_method]

  #
  # This module has all methods of FileUtils module, but it outputs messages
  # before acting.  This equates to passing the <tt>:verbose</tt> flag to
  # methods in FileUtils.
  #
  module Verbose
    include FileUtils
    names = ::FileUtils.collect_method(:verbose)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, verbose: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::FileUtils::METHODS)
    end
  end

  #
  # This module has all methods of FileUtils module, but never changes
  # files/directories.  This equates to passing the <tt>:noop</tt> flag
  # to methods in FileUtils.
  #
  module NoWrite
    include FileUtils
    include LowMethods
    names = ::FileUtils.collect_method(:noop)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, noop: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::FileUtils::METHODS)
    end
  end

  #
  # This module has all methods of FileUtils module, but never changes
  # files/directories, with printing message before acting.
  # This equates to passing the <tt>:noop</tt> and <tt>:verbose</tt> flag
  # to methods in FileUtils.
  #
  module DryRun
    include FileUtils
    include LowMethods
    names = ::FileUtils.collect_method(:noop)
    names.each do |name|
      module_eval(<<-EOS, __FILE__, __LINE__ + 1)
        def #{name}(*args, **options)
          super(*args, **options, noop: true, verbose: true)
        end
      EOS
    end
    private(*names)
    extend self
    class << self
      public(*::FileUtils::METHODS)
    end
  end

end
PKHH[��+��share/ruby/weakref.rbnu�[���# frozen_string_literal: true
require "delegate"

# Weak Reference class that allows a referenced object to be
# garbage-collected.
#
# A WeakRef may be used exactly like the object it references.
#
# Usage:
#
#   foo = Object.new            # create a new object instance
#   p foo.to_s                  # original's class
#   foo = WeakRef.new(foo)      # reassign foo with WeakRef instance
#   p foo.to_s                  # should be same class
#   GC.start                    # start the garbage collector
#   p foo.to_s                  # should raise exception (recycled)
#

class WeakRef < Delegator

  ##
  # RefError is raised when a referenced object has been recycled by the
  # garbage collector

  class RefError < StandardError
  end

  @@__map = ::ObjectSpace::WeakMap.new

  ##
  # Creates a weak reference to +orig+
  #
  # Raises an ArgumentError if the given +orig+ is immutable, such as Symbol,
  # Integer, or Float.

  def initialize(orig)
    case orig
    when true, false, nil
      @delegate_sd_obj = orig
    else
      @@__map[self] = orig
    end
    super
  end

  def __getobj__ # :nodoc:
    @@__map[self] or defined?(@delegate_sd_obj) ? @delegate_sd_obj :
      Kernel::raise(RefError, "Invalid Reference - probably recycled", Kernel::caller(2))
  end

  def __setobj__(obj) # :nodoc:
  end

  ##
  # Returns true if the referenced object is still alive.

  def weakref_alive?
    @@__map.key?(self) or defined?(@delegate_sd_obj)
  end
end
PKHH[�ݧ�O,O,share/ruby/delegate.rbnu�[���# frozen_string_literal: true
# = delegate -- Support for the Delegation Pattern
#
# Documentation by James Edward Gray II and Gavin Sinclair

##
# This library provides three different ways to delegate method calls to an
# object.  The easiest to use is SimpleDelegator.  Pass an object to the
# constructor and all methods supported by the object will be delegated.  This
# object can be changed later.
#
# Going a step further, the top level DelegateClass method allows you to easily
# setup delegation through class inheritance.  This is considerably more
# flexible and thus probably the most common use for this library.
#
# Finally, if you need full control over the delegation scheme, you can inherit
# from the abstract class Delegator and customize as needed.  (If you find
# yourself needing this control, have a look at Forwardable which is also in
# the standard library.  It may suit your needs better.)
#
# SimpleDelegator's implementation serves as a nice example of the use of
# Delegator:
#
#   class SimpleDelegator < Delegator
#     def __getobj__
#       @delegate_sd_obj # return object we are delegating to, required
#     end
#
#     def __setobj__(obj)
#       @delegate_sd_obj = obj # change delegation object,
#                              # a feature we're providing
#     end
#   end
#
# == Notes
#
# Be advised, RDoc will not detect delegated methods.
#
class Delegator < BasicObject
  kernel = ::Kernel.dup
  kernel.class_eval do
    alias __raise__ raise
    [:to_s, :inspect, :=~, :!~, :===, :<=>, :hash].each do |m|
      undef_method m
    end
    private_instance_methods.each do |m|
      if /\Ablock_given\?\z|\Aiterator\?\z|\A__.*__\z/ =~ m
        next
      end
      undef_method m
    end
  end
  include kernel

  # :stopdoc:
  def self.const_missing(n)
    ::Object.const_get(n)
  end
  # :startdoc:

  ##
  # :method: raise
  # Use #__raise__ if your Delegator does not have a object to delegate the
  # #raise method call.
  #

  #
  # Pass in the _obj_ to delegate method calls to.  All methods supported by
  # _obj_ will be delegated to.
  #
  def initialize(obj)
    __setobj__(obj)
  end

  #
  # Handles the magic of delegation through \_\_getobj\_\_.
  #
  ruby2_keywords def method_missing(m, *args, &block)
    r = true
    target = self.__getobj__ {r = false}

    if r && target_respond_to?(target, m, false)
      target.__send__(m, *args, &block)
    elsif ::Kernel.method_defined?(m) || ::Kernel.private_method_defined?(m)
      ::Kernel.instance_method(m).bind_call(self, *args, &block)
    else
      super(m, *args, &block)
    end
  end

  #
  # Checks for a method provided by this the delegate object by forwarding the
  # call through \_\_getobj\_\_.
  #
  def respond_to_missing?(m, include_private)
    r = true
    target = self.__getobj__ {r = false}
    r &&= target_respond_to?(target, m, include_private)
    if r && include_private && !target_respond_to?(target, m, false)
      warn "delegator does not forward private method \##{m}", uplevel: 3
      return false
    end
    r
  end

  KERNEL_RESPOND_TO = ::Kernel.instance_method(:respond_to?)
  private_constant :KERNEL_RESPOND_TO

  # Handle BasicObject instances
  private def target_respond_to?(target, m, include_private)
    case target
    when Object
      target.respond_to?(m, include_private)
    else
      if KERNEL_RESPOND_TO.bind_call(target, :respond_to?)
        target.respond_to?(m, include_private)
      else
        KERNEL_RESPOND_TO.bind_call(target, m, include_private)
      end
    end
  end

  #
  # Returns the methods available to this delegate object as the union
  # of this object's and \_\_getobj\_\_ methods.
  #
  def methods(all=true)
    __getobj__.methods(all) | super
  end

  #
  # Returns the methods available to this delegate object as the union
  # of this object's and \_\_getobj\_\_ public methods.
  #
  def public_methods(all=true)
    __getobj__.public_methods(all) | super
  end

  #
  # Returns the methods available to this delegate object as the union
  # of this object's and \_\_getobj\_\_ protected methods.
  #
  def protected_methods(all=true)
    __getobj__.protected_methods(all) | super
  end

  # Note: no need to specialize private_methods, since they are not forwarded

  #
  # Returns true if two objects are considered of equal value.
  #
  def ==(obj)
    return true if obj.equal?(self)
    self.__getobj__ == obj
  end

  #
  # Returns true if two objects are not considered of equal value.
  #
  def !=(obj)
    return false if obj.equal?(self)
    __getobj__ != obj
  end

  #
  # Returns true if two objects are considered of equal value.
  #
  def eql?(obj)
    return true if obj.equal?(self)
    obj.eql?(__getobj__)
  end

  #
  # Delegates ! to the \_\_getobj\_\_
  #
  def !
    !__getobj__
  end

  #
  # This method must be overridden by subclasses and should return the object
  # method calls are being delegated to.
  #
  def __getobj__
    __raise__ ::NotImplementedError, "need to define `__getobj__'"
  end

  #
  # This method must be overridden by subclasses and change the object delegate
  # to _obj_.
  #
  def __setobj__(obj)
    __raise__ ::NotImplementedError, "need to define `__setobj__'"
  end

  #
  # Serialization support for the object returned by \_\_getobj\_\_.
  #
  def marshal_dump
    ivars = instance_variables.reject {|var| /\A@delegate_/ =~ var}
    [
      :__v2__,
      ivars, ivars.map {|var| instance_variable_get(var)},
      __getobj__
    ]
  end

  #
  # Reinitializes delegation from a serialized object.
  #
  def marshal_load(data)
    version, vars, values, obj = data
    if version == :__v2__
      vars.each_with_index {|var, i| instance_variable_set(var, values[i])}
      __setobj__(obj)
    else
      __setobj__(data)
    end
  end

  def initialize_clone(obj) # :nodoc:
    self.__setobj__(obj.__getobj__.clone)
  end
  def initialize_dup(obj) # :nodoc:
    self.__setobj__(obj.__getobj__.dup)
  end
  private :initialize_clone, :initialize_dup

  ##
  # :method: freeze
  # Freeze both the object returned by \_\_getobj\_\_ and self.
  #
  def freeze
    __getobj__.freeze
    super()
  end

  @delegator_api = self.public_instance_methods
  def self.public_api # :nodoc:
    @delegator_api
  end
end

##
# A concrete implementation of Delegator, this class provides the means to
# delegate all supported method calls to the object passed into the constructor
# and even to change the object being delegated to at a later time with
# #__setobj__.
#
#   class User
#     def born_on
#       Date.new(1989, 9, 10)
#     end
#   end
#
#   class UserDecorator < SimpleDelegator
#     def birth_year
#       born_on.year
#     end
#   end
#
#   decorated_user = UserDecorator.new(User.new)
#   decorated_user.birth_year  #=> 1989
#   decorated_user.__getobj__  #=> #<User: ...>
#
# A SimpleDelegator instance can take advantage of the fact that SimpleDelegator
# is a subclass of +Delegator+ to call <tt>super</tt> to have methods called on
# the object being delegated to.
#
#   class SuperArray < SimpleDelegator
#     def [](*args)
#       super + 1
#     end
#   end
#
#   SuperArray.new([1])[0]  #=> 2
#
# Here's a simple example that takes advantage of the fact that
# SimpleDelegator's delegation object can be changed at any time.
#
#   class Stats
#     def initialize
#       @source = SimpleDelegator.new([])
#     end
#
#     def stats(records)
#       @source.__setobj__(records)
#
#       "Elements:  #{@source.size}\n" +
#       " Non-Nil:  #{@source.compact.size}\n" +
#       "  Unique:  #{@source.uniq.size}\n"
#     end
#   end
#
#   s = Stats.new
#   puts s.stats(%w{James Edward Gray II})
#   puts
#   puts s.stats([1, 2, 3, nil, 4, 5, 1, 2])
#
# Prints:
#
#   Elements:  4
#    Non-Nil:  4
#     Unique:  4
#
#   Elements:  8
#    Non-Nil:  7
#     Unique:  6
#
class SimpleDelegator < Delegator
  # Returns the current object method calls are being delegated to.
  def __getobj__
    unless defined?(@delegate_sd_obj)
      return yield if block_given?
      __raise__ ::ArgumentError, "not delegated"
    end
    @delegate_sd_obj
  end

  #
  # Changes the delegate object to _obj_.
  #
  # It's important to note that this does *not* cause SimpleDelegator's methods
  # to change.  Because of this, you probably only want to change delegation
  # to objects of the same type as the original delegate.
  #
  # Here's an example of changing the delegation object.
  #
  #   names = SimpleDelegator.new(%w{James Edward Gray II})
  #   puts names[1]    # => Edward
  #   names.__setobj__(%w{Gavin Sinclair})
  #   puts names[1]    # => Sinclair
  #
  def __setobj__(obj)
    __raise__ ::ArgumentError, "cannot delegate to self" if self.equal?(obj)
    @delegate_sd_obj = obj
  end
end

def Delegator.delegating_block(mid) # :nodoc:
  lambda do |*args, &block|
    target = self.__getobj__
    target.__send__(mid, *args, &block)
  end.ruby2_keywords
end

#
# The primary interface to this library.  Use to setup delegation when defining
# your class.
#
#   class MyClass < DelegateClass(ClassToDelegateTo) # Step 1
#     def initialize
#       super(obj_of_ClassToDelegateTo)              # Step 2
#     end
#   end
#
# or:
#
#   MyClass = DelegateClass(ClassToDelegateTo) do    # Step 1
#     def initialize
#       super(obj_of_ClassToDelegateTo)              # Step 2
#     end
#   end
#
# Here's a sample of use from Tempfile which is really a File object with a
# few special rules about storage location and when the File should be
# deleted.  That makes for an almost textbook perfect example of how to use
# delegation.
#
#   class Tempfile < DelegateClass(File)
#     # constant and class member data initialization...
#
#     def initialize(basename, tmpdir=Dir::tmpdir)
#       # build up file path/name in var tmpname...
#
#       @tmpfile = File.open(tmpname, File::RDWR|File::CREAT|File::EXCL, 0600)
#
#       # ...
#
#       super(@tmpfile)
#
#       # below this point, all methods of File are supported...
#     end
#
#     # ...
#   end
#
def DelegateClass(superclass, &block)
  klass = Class.new(Delegator)
  ignores = [*::Delegator.public_api, :to_s, :inspect, :=~, :!~, :===]
  protected_instance_methods = superclass.protected_instance_methods
  protected_instance_methods -= ignores
  public_instance_methods = superclass.public_instance_methods
  public_instance_methods -= ignores
  klass.module_eval do
    def __getobj__ # :nodoc:
      unless defined?(@delegate_dc_obj)
        return yield if block_given?
        __raise__ ::ArgumentError, "not delegated"
      end
      @delegate_dc_obj
    end
    def __setobj__(obj)  # :nodoc:
      __raise__ ::ArgumentError, "cannot delegate to self" if self.equal?(obj)
      @delegate_dc_obj = obj
    end
    protected_instance_methods.each do |method|
      define_method(method, Delegator.delegating_block(method))
      protected method
    end
    public_instance_methods.each do |method|
      define_method(method, Delegator.delegating_block(method))
    end
  end
  klass.define_singleton_method :public_instance_methods do |all=true|
    super(all) | superclass.public_instance_methods
  end
  klass.define_singleton_method :protected_instance_methods do |all=true|
    super(all) | superclass.protected_instance_methods
  end
  klass.module_eval(&block) if block
  return klass
end
PKIH[=�rrshare/ruby/English.rbnu�[���# frozen_string_literal: true
#  Include the English library file in a Ruby script, and you can
#  reference the global variables such as <tt>$_</tt> using less
#  cryptic names, listed below.
#
#  Without 'English':
#
#      $\ = ' -- '
#      "waterbuffalo" =~ /buff/
#      print $', $$, "\n"
#
#  With English:
#
#      require "English"
#
#      $OUTPUT_FIELD_SEPARATOR = ' -- '
#      "waterbuffalo" =~ /buff/
#      print $POSTMATCH, $PID, "\n"
#
#  Below is a full list of descriptive aliases and their associated global
#  variable:
#
#  $ERROR_INFO::              $!
#  $ERROR_POSITION::          $@
#  $FS::                      $;
#  $FIELD_SEPARATOR::         $;
#  $OFS::                     $,
#  $OUTPUT_FIELD_SEPARATOR::  $,
#  $RS::                      $/
#  $INPUT_RECORD_SEPARATOR::  $/
#  $ORS::                     $\
#  $OUTPUT_RECORD_SEPARATOR:: $\
#  $INPUT_LINE_NUMBER::       $.
#  $NR::                      $.
#  $LAST_READ_LINE::          $_
#  $DEFAULT_OUTPUT::          $>
#  $DEFAULT_INPUT::           $<
#  $PID::                     $$
#  $PROCESS_ID::              $$
#  $CHILD_STATUS::            $?
#  $LAST_MATCH_INFO::         $~
#  $IGNORECASE::              $=
#  $ARGV::                    $*
#  $MATCH::                   $&
#  $PREMATCH::                $`
#  $POSTMATCH::               $'
#  $LAST_PAREN_MATCH::        $+
#
module English end if false

# The exception object passed to +raise+.
alias $ERROR_INFO              $!

# The stack backtrace generated by the last
# exception. See Kernel#caller for details. Thread local.
alias $ERROR_POSITION          $@

# The default separator pattern used by String#split.  May be set from
# the command line using the <tt>-F</tt> flag.
alias $FS                      $;

# The default separator pattern used by String#split.  May be set from
# the command line using the <tt>-F</tt> flag.
alias $FIELD_SEPARATOR         $;

# The separator string output between the parameters to methods such
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
# text.
alias $OFS                     $,

# The separator string output between the parameters to methods such
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
# text.
alias $OUTPUT_FIELD_SEPARATOR  $,

# The input record separator (newline by default). This is the value
# that routines such as Kernel#gets use to determine record
# boundaries. If set to +nil+, +gets+ will read the entire file.
alias $RS                      $/

# The input record separator (newline by default). This is the value
# that routines such as Kernel#gets use to determine record
# boundaries. If set to +nil+, +gets+ will read the entire file.
alias $INPUT_RECORD_SEPARATOR  $/

# The string appended to the output of every call to methods such as
# Kernel#print and IO#write. The default value is +nil+.
alias $ORS                     $\

# The string appended to the output of every call to methods such as
# Kernel#print and IO#write. The default value is +nil+.
alias $OUTPUT_RECORD_SEPARATOR $\

# The number of the last line read from the current input file.
alias $INPUT_LINE_NUMBER       $.

# The number of the last line read from the current input file.
alias $NR                      $.

# The last line read by Kernel#gets or
# Kernel#readline. Many string-related functions in the
# Kernel module operate on <tt>$_</tt> by default. The variable is
# local to the current scope. Thread local.
alias $LAST_READ_LINE          $_

# The destination of output for Kernel#print
# and Kernel#printf. The default value is
# <tt>$stdout</tt>.
alias $DEFAULT_OUTPUT          $>

# An object that provides access to the concatenation
# of the contents of all the files
# given as command-line arguments, or <tt>$stdin</tt>
# (in the case where there are no
# arguments). <tt>$<</tt> supports methods similar to a
# File object:
# +inmode+, +close+,
# <tt>closed?</tt>, +each+,
# <tt>each_byte</tt>, <tt>each_line</tt>,
# +eof+, <tt>eof?</tt>, +file+,
# +filename+, +fileno+,
# +getc+, +gets+, +lineno+,
# <tt>lineno=</tt>, +path+,
# +pos+, <tt>pos=</tt>,
# +read+, +readchar+,
# +readline+, +readlines+,
# +rewind+, +seek+, +skip+,
# +tell+, <tt>to_a</tt>, <tt>to_i</tt>,
# <tt>to_io</tt>, <tt>to_s</tt>, along with the
# methods in Enumerable. The method +file+
# returns a File object for the file currently
# being read. This may change as <tt>$<</tt> reads
# through the files on the command line. Read only.
alias $DEFAULT_INPUT           $<

# The process number of the program being executed. Read only.
alias $PID                     $$

# The process number of the program being executed. Read only.
alias $PROCESS_ID              $$

# The exit status of the last child process to terminate. Read
# only. Thread local.
alias $CHILD_STATUS            $?

# A +MatchData+ object that encapsulates the results of a successful
# pattern match. The variables <tt>$&</tt>, <tt>$`</tt>, <tt>$'</tt>,
# and <tt>$1</tt> to <tt>$9</tt> are all derived from
# <tt>$~</tt>. Assigning to <tt>$~</tt> changes the values of these
# derived variables.  This variable is local to the current
# scope.
alias $LAST_MATCH_INFO         $~

# This variable is no longer effective. Deprecated.
alias $IGNORECASE              $=

# An array of strings containing the command-line
# options from the invocation of the program. Options
# used by the Ruby interpreter will have been
# removed. Read only. Also known simply as +ARGV+.
alias $ARGV                    $*

# The string matched by the last successful pattern
# match. This variable is local to the current
# scope. Read only.
alias $MATCH                   $&

# The string preceding the match in the last
# successful pattern match. This variable is local to
# the current scope. Read only.
alias $PREMATCH                $`

# The string following the match in the last
# successful pattern match. This variable is local to
# the current scope. Read only.
alias $POSTMATCH               $'

# The contents of the highest-numbered group matched in the last
# successful pattern match. Thus, in <tt>"cat" =~ /(c|a)(t|z)/</tt>,
# <tt>$+</tt> will be set to "t".  This variable is local to the
# current scope. Read only.
alias $LAST_PAREN_MATCH        $+
PKIH[�~䢌X�X&share/ruby/unicode_normalize/tables.rbnu�[���# coding: us-ascii
# frozen_string_literal: true

# automatically generated by template/unicode_norm_gen.tmpl

module UnicodeNormalize  # :nodoc:
  accents = "" \
    "[\u0300-\u034E" \
    "\u0350-\u036F" \
    "\u0483-\u0487" \
    "\u0591-\u05BD" \
    "\u05BF" \
    "\u05C1\u05C2" \
    "\u05C4\u05C5" \
    "\u05C7" \
    "\u0610-\u061A" \
    "\u064B-\u065F" \
    "\u0670" \
    "\u06D6-\u06DC" \
    "\u06DF-\u06E4" \
    "\u06E7\u06E8" \
    "\u06EA-\u06ED" \
    "\u0711" \
    "\u0730-\u074A" \
    "\u07EB-\u07F3" \
    "\u07FD" \
    "\u0816-\u0819" \
    "\u081B-\u0823" \
    "\u0825-\u0827" \
    "\u0829-\u082D" \
    "\u0859-\u085B" \
    "\u08D3-\u08E1" \
    "\u08E3-\u08FF" \
    "\u093C" \
    "\u094D" \
    "\u0951-\u0954" \
    "\u09BC" \
    "\u09BE" \
    "\u09CD" \
    "\u09D7" \
    "\u09FE" \
    "\u0A3C" \
    "\u0A4D" \
    "\u0ABC" \
    "\u0ACD" \
    "\u0B3C" \
    "\u0B3E" \
    "\u0B4D" \
    "\u0B56\u0B57" \
    "\u0BBE" \
    "\u0BCD" \
    "\u0BD7" \
    "\u0C4D" \
    "\u0C55\u0C56" \
    "\u0CBC" \
    "\u0CC2" \
    "\u0CCD" \
    "\u0CD5\u0CD6" \
    "\u0D3B\u0D3C" \
    "\u0D3E" \
    "\u0D4D" \
    "\u0D57" \
    "\u0DCA" \
    "\u0DCF" \
    "\u0DDF" \
    "\u0E38-\u0E3A" \
    "\u0E48-\u0E4B" \
    "\u0EB8-\u0EBA" \
    "\u0EC8-\u0ECB" \
    "\u0F18\u0F19" \
    "\u0F35" \
    "\u0F37" \
    "\u0F39" \
    "\u0F71\u0F72" \
    "\u0F74" \
    "\u0F7A-\u0F7D" \
    "\u0F80" \
    "\u0F82-\u0F84" \
    "\u0F86\u0F87" \
    "\u0FC6" \
    "\u102E" \
    "\u1037" \
    "\u1039\u103A" \
    "\u108D" \
    "\u135D-\u135F" \
    "\u1714" \
    "\u1734" \
    "\u17D2" \
    "\u17DD" \
    "\u18A9" \
    "\u1939-\u193B" \
    "\u1A17\u1A18" \
    "\u1A60" \
    "\u1A75-\u1A7C" \
    "\u1A7F" \
    "\u1AB0-\u1ABD" \
    "\u1B34\u1B35" \
    "\u1B44" \
    "\u1B6B-\u1B73" \
    "\u1BAA\u1BAB" \
    "\u1BE6" \
    "\u1BF2\u1BF3" \
    "\u1C37" \
    "\u1CD0-\u1CD2" \
    "\u1CD4-\u1CE0" \
    "\u1CE2-\u1CE8" \
    "\u1CED" \
    "\u1CF4" \
    "\u1CF8\u1CF9" \
    "\u1DC0-\u1DF9" \
    "\u1DFB-\u1DFF" \
    "\u20D0-\u20DC" \
    "\u20E1" \
    "\u20E5-\u20F0" \
    "\u2CEF-\u2CF1" \
    "\u2D7F" \
    "\u2DE0-\u2DFF" \
    "\u302A-\u302F" \
    "\u3099\u309A" \
    "\uA66F" \
    "\uA674-\uA67D" \
    "\uA69E\uA69F" \
    "\uA6F0\uA6F1" \
    "\uA806" \
    "\uA8C4" \
    "\uA8E0-\uA8F1" \
    "\uA92B-\uA92D" \
    "\uA953" \
    "\uA9B3" \
    "\uA9C0" \
    "\uAAB0" \
    "\uAAB2-\uAAB4" \
    "\uAAB7\uAAB8" \
    "\uAABE\uAABF" \
    "\uAAC1" \
    "\uAAF6" \
    "\uABED" \
    "\uFB1E" \
    "\uFE20-\uFE2F" \
    "\u{101FD}" \
    "\u{102E0}" \
    "\u{10376}-\u{1037A}" \
    "\u{10A0D}" \
    "\u{10A0F}" \
    "\u{10A38}-\u{10A3A}" \
    "\u{10A3F}" \
    "\u{10AE5}\u{10AE6}" \
    "\u{10D24}-\u{10D27}" \
    "\u{10F46}-\u{10F50}" \
    "\u{11046}" \
    "\u{1107F}" \
    "\u{110B9}\u{110BA}" \
    "\u{11100}-\u{11102}" \
    "\u{11127}" \
    "\u{11133}\u{11134}" \
    "\u{11173}" \
    "\u{111C0}" \
    "\u{111CA}" \
    "\u{11235}\u{11236}" \
    "\u{112E9}\u{112EA}" \
    "\u{1133B}\u{1133C}" \
    "\u{1133E}" \
    "\u{1134D}" \
    "\u{11357}" \
    "\u{11366}-\u{1136C}" \
    "\u{11370}-\u{11374}" \
    "\u{11442}" \
    "\u{11446}" \
    "\u{1145E}" \
    "\u{114B0}" \
    "\u{114BA}" \
    "\u{114BD}" \
    "\u{114C2}\u{114C3}" \
    "\u{115AF}" \
    "\u{115BF}\u{115C0}" \
    "\u{1163F}" \
    "\u{116B6}\u{116B7}" \
    "\u{1172B}" \
    "\u{11839}\u{1183A}" \
    "\u{119E0}" \
    "\u{11A34}" \
    "\u{11A47}" \
    "\u{11A99}" \
    "\u{11C3F}" \
    "\u{11D42}" \
    "\u{11D44}\u{11D45}" \
    "\u{11D97}" \
    "\u{16AF0}-\u{16AF4}" \
    "\u{16B30}-\u{16B36}" \
    "\u{1BC9E}" \
    "\u{1D165}-\u{1D169}" \
    "\u{1D16D}-\u{1D172}" \
    "\u{1D17B}-\u{1D182}" \
    "\u{1D185}-\u{1D18B}" \
    "\u{1D1AA}-\u{1D1AD}" \
    "\u{1D242}-\u{1D244}" \
    "\u{1E000}-\u{1E006}" \
    "\u{1E008}-\u{1E018}" \
    "\u{1E01B}-\u{1E021}" \
    "\u{1E023}\u{1E024}" \
    "\u{1E026}-\u{1E02A}" \
    "\u{1E130}-\u{1E136}" \
    "\u{1E2EC}-\u{1E2EF}" \
    "\u{1E8D0}-\u{1E8D6}" \
    "\u{1E944}-\u{1E94A}" \
    "]"
  ACCENTS = accents
  REGEXP_D_STRING = "#{''  # composition starters and composition exclusions
    }" \
    "[\u00C0-\u00C5" \
    "\u00C7-\u00CF" \
    "\u00D1-\u00D6" \
    "\u00D9-\u00DD" \
    "\u00E0-\u00E5" \
    "\u00E7-\u00EF" \
    "\u00F1-\u00F6" \
    "\u00F9-\u00FD" \
    "\u00FF-\u010F" \
    "\u0112-\u0125" \
    "\u0128-\u0130" \
    "\u0134-\u0137" \
    "\u0139-\u013E" \
    "\u0143-\u0148" \
    "\u014C-\u0151" \
    "\u0154-\u0165" \
    "\u0168-\u017E" \
    "\u01A0\u01A1" \
    "\u01AF\u01B0" \
    "\u01CD-\u01DC" \
    "\u01DE-\u01E3" \
    "\u01E6-\u01F0" \
    "\u01F4\u01F5" \
    "\u01F8-\u021B" \
    "\u021E\u021F" \
    "\u0226-\u0233" \
    "\u0340\u0341" \
    "\u0343\u0344" \
    "\u0374" \
    "\u037E" \
    "\u0385-\u038A" \
    "\u038C" \
    "\u038E-\u0390" \
    "\u03AA-\u03B0" \
    "\u03CA-\u03CE" \
    "\u03D3\u03D4" \
    "\u0400\u0401" \
    "\u0403" \
    "\u0407" \
    "\u040C-\u040E" \
    "\u0419" \
    "\u0439" \
    "\u0450\u0451" \
    "\u0453" \
    "\u0457" \
    "\u045C-\u045E" \
    "\u0476\u0477" \
    "\u04C1\u04C2" \
    "\u04D0-\u04D3" \
    "\u04D6\u04D7" \
    "\u04DA-\u04DF" \
    "\u04E2-\u04E7" \
    "\u04EA-\u04F5" \
    "\u04F8\u04F9" \
    "\u0622-\u0626" \
    "\u06C0" \
    "\u06C2" \
    "\u06D3" \
    "\u0929" \
    "\u0931" \
    "\u0934" \
    "\u0958-\u095F" \
    "\u09CB\u09CC" \
    "\u09DC\u09DD" \
    "\u09DF" \
    "\u0A33" \
    "\u0A36" \
    "\u0A59-\u0A5B" \
    "\u0A5E" \
    "\u0B48" \
    "\u0B4B\u0B4C" \
    "\u0B5C\u0B5D" \
    "\u0B94" \
    "\u0BCA-\u0BCC" \
    "\u0C48" \
    "\u0CC0" \
    "\u0CC7\u0CC8" \
    "\u0CCA\u0CCB" \
    "\u0D4A-\u0D4C" \
    "\u0DDA" \
    "\u0DDC-\u0DDE" \
    "\u0F43" \
    "\u0F4D" \
    "\u0F52" \
    "\u0F57" \
    "\u0F5C" \
    "\u0F69" \
    "\u0F73" \
    "\u0F75\u0F76" \
    "\u0F78" \
    "\u0F81" \
    "\u0F93" \
    "\u0F9D" \
    "\u0FA2" \
    "\u0FA7" \
    "\u0FAC" \
    "\u0FB9" \
    "\u1026" \
    "\u1B06" \
    "\u1B08" \
    "\u1B0A" \
    "\u1B0C" \
    "\u1B0E" \
    "\u1B12" \
    "\u1B3B" \
    "\u1B3D" \
    "\u1B40\u1B41" \
    "\u1B43" \
    "\u1E00-\u1E99" \
    "\u1E9B" \
    "\u1EA0-\u1EF9" \
    "\u1F00-\u1F15" \
    "\u1F18-\u1F1D" \
    "\u1F20-\u1F45" \
    "\u1F48-\u1F4D" \
    "\u1F50-\u1F57" \
    "\u1F59" \
    "\u1F5B" \
    "\u1F5D" \
    "\u1F5F-\u1F7D" \
    "\u1F80-\u1FB4" \
    "\u1FB6-\u1FBC" \
    "\u1FBE" \
    "\u1FC1-\u1FC4" \
    "\u1FC6-\u1FD3" \
    "\u1FD6-\u1FDB" \
    "\u1FDD-\u1FEF" \
    "\u1FF2-\u1FF4" \
    "\u1FF6-\u1FFD" \
    "\u2000\u2001" \
    "\u2126" \
    "\u212A\u212B" \
    "\u219A\u219B" \
    "\u21AE" \
    "\u21CD-\u21CF" \
    "\u2204" \
    "\u2209" \
    "\u220C" \
    "\u2224" \
    "\u2226" \
    "\u2241" \
    "\u2244" \
    "\u2247" \
    "\u2249" \
    "\u2260" \
    "\u2262" \
    "\u226D-\u2271" \
    "\u2274\u2275" \
    "\u2278\u2279" \
    "\u2280\u2281" \
    "\u2284\u2285" \
    "\u2288\u2289" \
    "\u22AC-\u22AF" \
    "\u22E0-\u22E3" \
    "\u22EA-\u22ED" \
    "\u2329\u232A" \
    "\u2ADC" \
    "\u304C" \
    "\u304E" \
    "\u3050" \
    "\u3052" \
    "\u3054" \
    "\u3056" \
    "\u3058" \
    "\u305A" \
    "\u305C" \
    "\u305E" \
    "\u3060" \
    "\u3062" \
    "\u3065" \
    "\u3067" \
    "\u3069" \
    "\u3070\u3071" \
    "\u3073\u3074" \
    "\u3076\u3077" \
    "\u3079\u307A" \
    "\u307C\u307D" \
    "\u3094" \
    "\u309E" \
    "\u30AC" \
    "\u30AE" \
    "\u30B0" \
    "\u30B2" \
    "\u30B4" \
    "\u30B6" \
    "\u30B8" \
    "\u30BA" \
    "\u30BC" \
    "\u30BE" \
    "\u30C0" \
    "\u30C2" \
    "\u30C5" \
    "\u30C7" \
    "\u30C9" \
    "\u30D0\u30D1" \
    "\u30D3\u30D4" \
    "\u30D6\u30D7" \
    "\u30D9\u30DA" \
    "\u30DC\u30DD" \
    "\u30F4" \
    "\u30F7-\u30FA" \
    "\u30FE" \
    "\uF900-\uFA0D" \
    "\uFA10" \
    "\uFA12" \
    "\uFA15-\uFA1E" \
    "\uFA20" \
    "\uFA22" \
    "\uFA25\uFA26" \
    "\uFA2A-\uFA6D" \
    "\uFA70-\uFAD9" \
    "\uFB1D" \
    "\uFB1F" \
    "\uFB2A-\uFB36" \
    "\uFB38-\uFB3C" \
    "\uFB3E" \
    "\uFB40\uFB41" \
    "\uFB43\uFB44" \
    "\uFB46-\uFB4E" \
    "\u{1109A}" \
    "\u{1109C}" \
    "\u{110AB}" \
    "\u{1112E}\u{1112F}" \
    "\u{1134B}\u{1134C}" \
    "\u{114BB}\u{114BC}" \
    "\u{114BE}" \
    "\u{115BA}\u{115BB}" \
    "\u{1D15E}-\u{1D164}" \
    "\u{1D1BB}-\u{1D1C0}" \
    "\u{2F800}-\u{2FA1D}" \
    "]#{accents}*" \
    "|#{''  # characters that can be the result of a composition, except composition starters
    }" \
    "[<->" \
    "A-P" \
    "R-Z" \
    "a-p" \
    "r-z" \
    "\u00A8" \
    "\u00C6" \
    "\u00D8" \
    "\u00E6" \
    "\u00F8" \
    "\u017F" \
    "\u01B7" \
    "\u0292" \
    "\u0391" \
    "\u0395" \
    "\u0397" \
    "\u0399" \
    "\u039F" \
    "\u03A1" \
    "\u03A5" \
    "\u03A9" \
    "\u03B1" \
    "\u03B5" \
    "\u03B7" \
    "\u03B9" \
    "\u03BF" \
    "\u03C1" \
    "\u03C5" \
    "\u03C9" \
    "\u03D2" \
    "\u0406" \
    "\u0410" \
    "\u0413" \
    "\u0415-\u0418" \
    "\u041A" \
    "\u041E" \
    "\u0423" \
    "\u0427" \
    "\u042B" \
    "\u042D" \
    "\u0430" \
    "\u0433" \
    "\u0435-\u0438" \
    "\u043A" \
    "\u043E" \
    "\u0443" \
    "\u0447" \
    "\u044B" \
    "\u044D" \
    "\u0456" \
    "\u0474\u0475" \
    "\u04D8\u04D9" \
    "\u04E8\u04E9" \
    "\u0627" \
    "\u0648" \
    "\u064A" \
    "\u06C1" \
    "\u06D2" \
    "\u06D5" \
    "\u0928" \
    "\u0930" \
    "\u0933" \
    "\u09C7" \
    "\u0B47" \
    "\u0B92" \
    "\u0BC6\u0BC7" \
    "\u0C46" \
    "\u0CBF" \
    "\u0CC6" \
    "\u0D46\u0D47" \
    "\u0DD9" \
    "\u1025" \
    "\u1B05" \
    "\u1B07" \
    "\u1B09" \
    "\u1B0B" \
    "\u1B0D" \
    "\u1B11" \
    "\u1B3A" \
    "\u1B3C" \
    "\u1B3E\u1B3F" \
    "\u1B42" \
    "\u1FBF" \
    "\u1FFE" \
    "\u2190" \
    "\u2192" \
    "\u2194" \
    "\u21D0" \
    "\u21D2" \
    "\u21D4" \
    "\u2203" \
    "\u2208" \
    "\u220B" \
    "\u2223" \
    "\u2225" \
    "\u223C" \
    "\u2243" \
    "\u2245" \
    "\u2248" \
    "\u224D" \
    "\u2261" \
    "\u2264\u2265" \
    "\u2272\u2273" \
    "\u2276\u2277" \
    "\u227A-\u227D" \
    "\u2282\u2283" \
    "\u2286\u2287" \
    "\u2291\u2292" \
    "\u22A2" \
    "\u22A8\u22A9" \
    "\u22AB" \
    "\u22B2-\u22B5" \
    "\u3046" \
    "\u304B" \
    "\u304D" \
    "\u304F" \
    "\u3051" \
    "\u3053" \
    "\u3055" \
    "\u3057" \
    "\u3059" \
    "\u305B" \
    "\u305D" \
    "\u305F" \
    "\u3061" \
    "\u3064" \
    "\u3066" \
    "\u3068" \
    "\u306F" \
    "\u3072" \
    "\u3075" \
    "\u3078" \
    "\u307B" \
    "\u309D" \
    "\u30A6" \
    "\u30AB" \
    "\u30AD" \
    "\u30AF" \
    "\u30B1" \
    "\u30B3" \
    "\u30B5" \
    "\u30B7" \
    "\u30B9" \
    "\u30BB" \
    "\u30BD" \
    "\u30BF" \
    "\u30C1" \
    "\u30C4" \
    "\u30C6" \
    "\u30C8" \
    "\u30CF" \
    "\u30D2" \
    "\u30D5" \
    "\u30D8" \
    "\u30DB" \
    "\u30EF-\u30F2" \
    "\u30FD" \
    "\u{11099}" \
    "\u{1109B}" \
    "\u{110A5}" \
    "\u{11131}\u{11132}" \
    "\u{11347}" \
    "\u{114B9}" \
    "\u{115B8}\u{115B9}" \
    "]?#{accents}+" \
    "|#{''  # precomposed Hangul syllables
    }" \
    "[\u{AC00}-\u{D7A4}]"
  REGEXP_C_STRING = "#{''  # composition exclusions
    }" \
    "[\u0340\u0341" \
    "\u0343\u0344" \
    "\u0374" \
    "\u037E" \
    "\u0387" \
    "\u0958-\u095F" \
    "\u09DC\u09DD" \
    "\u09DF" \
    "\u0A33" \
    "\u0A36" \
    "\u0A59-\u0A5B" \
    "\u0A5E" \
    "\u0B5C\u0B5D" \
    "\u0F43" \
    "\u0F4D" \
    "\u0F52" \
    "\u0F57" \
    "\u0F5C" \
    "\u0F69" \
    "\u0F73" \
    "\u0F75\u0F76" \
    "\u0F78" \
    "\u0F81" \
    "\u0F93" \
    "\u0F9D" \
    "\u0FA2" \
    "\u0FA7" \
    "\u0FAC" \
    "\u0FB9" \
    "\u1F71" \
    "\u1F73" \
    "\u1F75" \
    "\u1F77" \
    "\u1F79" \
    "\u1F7B" \
    "\u1F7D" \
    "\u1FBB" \
    "\u1FBE" \
    "\u1FC9" \
    "\u1FCB" \
    "\u1FD3" \
    "\u1FDB" \
    "\u1FE3" \
    "\u1FEB" \
    "\u1FEE\u1FEF" \
    "\u1FF9" \
    "\u1FFB" \
    "\u1FFD" \
    "\u2000\u2001" \
    "\u2126" \
    "\u212A\u212B" \
    "\u2329\u232A" \
    "\u2ADC" \
    "\uF900-\uFA0D" \
    "\uFA10" \
    "\uFA12" \
    "\uFA15-\uFA1E" \
    "\uFA20" \
    "\uFA22" \
    "\uFA25\uFA26" \
    "\uFA2A-\uFA6D" \
    "\uFA70-\uFAD9" \
    "\uFB1D" \
    "\uFB1F" \
    "\uFB2A-\uFB36" \
    "\uFB38-\uFB3C" \
    "\uFB3E" \
    "\uFB40\uFB41" \
    "\uFB43\uFB44" \
    "\uFB46-\uFB4E" \
    "\u{1D15E}-\u{1D164}" \
    "\u{1D1BB}-\u{1D1C0}" \
    "\u{2F800}-\u{2FA1D}" \
    "]#{accents}*" \
    "|#{''  # composition starters and characters that can be the result of a composition
    }" \
    "[<->" \
    "A-P" \
    "R-Z" \
    "a-p" \
    "r-z" \
    "\u00A8" \
    "\u00C0-\u00CF" \
    "\u00D1-\u00D6" \
    "\u00D8-\u00DD" \
    "\u00E0-\u00EF" \
    "\u00F1-\u00F6" \
    "\u00F8-\u00FD" \
    "\u00FF-\u010F" \
    "\u0112-\u0125" \
    "\u0128-\u0130" \
    "\u0134-\u0137" \
    "\u0139-\u013E" \
    "\u0143-\u0148" \
    "\u014C-\u0151" \
    "\u0154-\u0165" \
    "\u0168-\u017F" \
    "\u01A0\u01A1" \
    "\u01AF\u01B0" \
    "\u01B7" \
    "\u01CD-\u01DC" \
    "\u01DE-\u01E3" \
    "\u01E6-\u01F0" \
    "\u01F4\u01F5" \
    "\u01F8-\u021B" \
    "\u021E\u021F" \
    "\u0226-\u0233" \
    "\u0292" \
    "\u0385\u0386" \
    "\u0388-\u038A" \
    "\u038C" \
    "\u038E-\u0391" \
    "\u0395" \
    "\u0397" \
    "\u0399" \
    "\u039F" \
    "\u03A1" \
    "\u03A5" \
    "\u03A9-\u03B1" \
    "\u03B5" \
    "\u03B7" \
    "\u03B9" \
    "\u03BF" \
    "\u03C1" \
    "\u03C5" \
    "\u03C9-\u03CE" \
    "\u03D2-\u03D4" \
    "\u0400\u0401" \
    "\u0403" \
    "\u0406\u0407" \
    "\u040C-\u040E" \
    "\u0410" \
    "\u0413" \
    "\u0415-\u041A" \
    "\u041E" \
    "\u0423" \
    "\u0427" \
    "\u042B" \
    "\u042D" \
    "\u0430" \
    "\u0433" \
    "\u0435-\u043A" \
    "\u043E" \
    "\u0443" \
    "\u0447" \
    "\u044B" \
    "\u044D" \
    "\u0450\u0451" \
    "\u0453" \
    "\u0456\u0457" \
    "\u045C-\u045E" \
    "\u0474-\u0477" \
    "\u04C1\u04C2" \
    "\u04D0-\u04D3" \
    "\u04D6-\u04DF" \
    "\u04E2-\u04F5" \
    "\u04F8\u04F9" \
    "\u0622-\u0627" \
    "\u0648" \
    "\u064A" \
    "\u06C0-\u06C2" \
    "\u06D2\u06D3" \
    "\u06D5" \
    "\u0928\u0929" \
    "\u0930\u0931" \
    "\u0933\u0934" \
    "\u09C7" \
    "\u09CB\u09CC" \
    "\u0B47\u0B48" \
    "\u0B4B\u0B4C" \
    "\u0B92" \
    "\u0B94" \
    "\u0BC6\u0BC7" \
    "\u0BCA-\u0BCC" \
    "\u0C46" \
    "\u0C48" \
    "\u0CBF\u0CC0" \
    "\u0CC6-\u0CC8" \
    "\u0CCA\u0CCB" \
    "\u0D46\u0D47" \
    "\u0D4A-\u0D4C" \
    "\u0DD9\u0DDA" \
    "\u0DDC-\u0DDE" \
    "\u1025\u1026" \
    "\u1B05-\u1B0E" \
    "\u1B11\u1B12" \
    "\u1B3A-\u1B43" \
    "\u1E00-\u1E99" \
    "\u1E9B" \
    "\u1EA0-\u1EF9" \
    "\u1F00-\u1F15" \
    "\u1F18-\u1F1D" \
    "\u1F20-\u1F45" \
    "\u1F48-\u1F4D" \
    "\u1F50-\u1F57" \
    "\u1F59" \
    "\u1F5B" \
    "\u1F5D" \
    "\u1F5F-\u1F70" \
    "\u1F72" \
    "\u1F74" \
    "\u1F76" \
    "\u1F78" \
    "\u1F7A" \
    "\u1F7C" \
    "\u1F80-\u1FB4" \
    "\u1FB6-\u1FBA" \
    "\u1FBC" \
    "\u1FBF" \
    "\u1FC1-\u1FC4" \
    "\u1FC6-\u1FC8" \
    "\u1FCA" \
    "\u1FCC-\u1FD2" \
    "\u1FD6-\u1FDA" \
    "\u1FDD-\u1FE2" \
    "\u1FE4-\u1FEA" \
    "\u1FEC\u1FED" \
    "\u1FF2-\u1FF4" \
    "\u1FF6-\u1FF8" \
    "\u1FFA" \
    "\u1FFC" \
    "\u1FFE" \
    "\u2190" \
    "\u2192" \
    "\u2194" \
    "\u219A\u219B" \
    "\u21AE" \
    "\u21CD-\u21D0" \
    "\u21D2" \
    "\u21D4" \
    "\u2203\u2204" \
    "\u2208\u2209" \
    "\u220B\u220C" \
    "\u2223-\u2226" \
    "\u223C" \
    "\u2241" \
    "\u2243-\u2245" \
    "\u2247-\u2249" \
    "\u224D" \
    "\u2260-\u2262" \
    "\u2264\u2265" \
    "\u226D-\u227D" \
    "\u2280-\u2289" \
    "\u2291\u2292" \
    "\u22A2" \
    "\u22A8\u22A9" \
    "\u22AB-\u22AF" \
    "\u22B2-\u22B5" \
    "\u22E0-\u22E3" \
    "\u22EA-\u22ED" \
    "\u3046" \
    "\u304B-\u3062" \
    "\u3064-\u3069" \
    "\u306F-\u307D" \
    "\u3094" \
    "\u309D\u309E" \
    "\u30A6" \
    "\u30AB-\u30C2" \
    "\u30C4-\u30C9" \
    "\u30CF-\u30DD" \
    "\u30EF-\u30F2" \
    "\u30F4" \
    "\u30F7-\u30FA" \
    "\u30FD\u30FE" \
    "\u{11099}-\u{1109C}" \
    "\u{110A5}" \
    "\u{110AB}" \
    "\u{1112E}\u{1112F}" \
    "\u{11131}\u{11132}" \
    "\u{11347}" \
    "\u{1134B}\u{1134C}" \
    "\u{114B9}" \
    "\u{114BB}\u{114BC}" \
    "\u{114BE}" \
    "\u{115B8}-\u{115BB}" \
    "]?#{accents}+" \
    "|#{''  # Hangul syllables with separate trailer
    }" \
    "[\uAC00" \
    "\uAC1C" \
    "\uAC38" \
    "\uAC54" \
    "\uAC70" \
    "\uAC8C" \
    "\uACA8" \
    "\uACC4" \
    "\uACE0" \
    "\uACFC" \
    "\uAD18" \
    "\uAD34" \
    "\uAD50" \
    "\uAD6C" \
    "\uAD88" \
    "\uADA4" \
    "\uADC0" \
    "\uADDC" \
    "\uADF8" \
    "\uAE14" \
    "\uAE30" \
    "\uAE4C" \
    "\uAE68" \
    "\uAE84" \
    "\uAEA0" \
    "\uAEBC" \
    "\uAED8" \
    "\uAEF4" \
    "\uAF10" \
    "\uAF2C" \
    "\uAF48" \
    "\uAF64" \
    "\uAF80" \
    "\uAF9C" \
    "\uAFB8" \
    "\uAFD4" \
    "\uAFF0" \
    "\uB00C" \
    "\uB028" \
    "\uB044" \
    "\uB060" \
    "\uB07C" \
    "\uB098" \
    "\uB0B4" \
    "\uB0D0" \
    "\uB0EC" \
    "\uB108" \
    "\uB124" \
    "\uB140" \
    "\uB15C" \
    "\uB178" \
    "\uB194" \
    "\uB1B0" \
    "\uB1CC" \
    "\uB1E8" \
    "\uB204" \
    "\uB220" \
    "\uB23C" \
    "\uB258" \
    "\uB274" \
    "\uB290" \
    "\uB2AC" \
    "\uB2C8" \
    "\uB2E4" \
    "\uB300" \
    "\uB31C" \
    "\uB338" \
    "\uB354" \
    "\uB370" \
    "\uB38C" \
    "\uB3A8" \
    "\uB3C4" \
    "\uB3E0" \
    "\uB3FC" \
    "\uB418" \
    "\uB434" \
    "\uB450" \
    "\uB46C" \
    "\uB488" \
    "\uB4A4" \
    "\uB4C0" \
    "\uB4DC" \
    "\uB4F8" \
    "\uB514" \
    "\uB530" \
    "\uB54C" \
    "\uB568" \
    "\uB584" \
    "\uB5A0" \
    "\uB5BC" \
    "\uB5D8" \
    "\uB5F4" \
    "\uB610" \
    "\uB62C" \
    "\uB648" \
    "\uB664" \
    "\uB680" \
    "\uB69C" \
    "\uB6B8" \
    "\uB6D4" \
    "\uB6F0" \
    "\uB70C" \
    "\uB728" \
    "\uB744" \
    "\uB760" \
    "\uB77C" \
    "\uB798" \
    "\uB7B4" \
    "\uB7D0" \
    "\uB7EC" \
    "\uB808" \
    "\uB824" \
    "\uB840" \
    "\uB85C" \
    "\uB878" \
    "\uB894" \
    "\uB8B0" \
    "\uB8CC" \
    "\uB8E8" \
    "\uB904" \
    "\uB920" \
    "\uB93C" \
    "\uB958" \
    "\uB974" \
    "\uB990" \
    "\uB9AC" \
    "\uB9C8" \
    "\uB9E4" \
    "\uBA00" \
    "\uBA1C" \
    "\uBA38" \
    "\uBA54" \
    "\uBA70" \
    "\uBA8C" \
    "\uBAA8" \
    "\uBAC4" \
    "\uBAE0" \
    "\uBAFC" \
    "\uBB18" \
    "\uBB34" \
    "\uBB50" \
    "\uBB6C" \
    "\uBB88" \
    "\uBBA4" \
    "\uBBC0" \
    "\uBBDC" \
    "\uBBF8" \
    "\uBC14" \
    "\uBC30" \
    "\uBC4C" \
    "\uBC68" \
    "\uBC84" \
    "\uBCA0" \
    "\uBCBC" \
    "\uBCD8" \
    "\uBCF4" \
    "\uBD10" \
    "\uBD2C" \
    "\uBD48" \
    "\uBD64" \
    "\uBD80" \
    "\uBD9C" \
    "\uBDB8" \
    "\uBDD4" \
    "\uBDF0" \
    "\uBE0C" \
    "\uBE28" \
    "\uBE44" \
    "\uBE60" \
    "\uBE7C" \
    "\uBE98" \
    "\uBEB4" \
    "\uBED0" \
    "\uBEEC" \
    "\uBF08" \
    "\uBF24" \
    "\uBF40" \
    "\uBF5C" \
    "\uBF78" \
    "\uBF94" \
    "\uBFB0" \
    "\uBFCC" \
    "\uBFE8" \
    "\uC004" \
    "\uC020" \
    "\uC03C" \
    "\uC058" \
    "\uC074" \
    "\uC090" \
    "\uC0AC" \
    "\uC0C8" \
    "\uC0E4" \
    "\uC100" \
    "\uC11C" \
    "\uC138" \
    "\uC154" \
    "\uC170" \
    "\uC18C" \
    "\uC1A8" \
    "\uC1C4" \
    "\uC1E0" \
    "\uC1FC" \
    "\uC218" \
    "\uC234" \
    "\uC250" \
    "\uC26C" \
    "\uC288" \
    "\uC2A4" \
    "\uC2C0" \
    "\uC2DC" \
    "\uC2F8" \
    "\uC314" \
    "\uC330" \
    "\uC34C" \
    "\uC368" \
    "\uC384" \
    "\uC3A0" \
    "\uC3BC" \
    "\uC3D8" \
    "\uC3F4" \
    "\uC410" \
    "\uC42C" \
    "\uC448" \
    "\uC464" \
    "\uC480" \
    "\uC49C" \
    "\uC4B8" \
    "\uC4D4" \
    "\uC4F0" \
    "\uC50C" \
    "\uC528" \
    "\uC544" \
    "\uC560" \
    "\uC57C" \
    "\uC598" \
    "\uC5B4" \
    "\uC5D0" \
    "\uC5EC" \
    "\uC608" \
    "\uC624" \
    "\uC640" \
    "\uC65C" \
    "\uC678" \
    "\uC694" \
    "\uC6B0" \
    "\uC6CC" \
    "\uC6E8" \
    "\uC704" \
    "\uC720" \
    "\uC73C" \
    "\uC758" \
    "\uC774" \
    "\uC790" \
    "\uC7AC" \
    "\uC7C8" \
    "\uC7E4" \
    "\uC800" \
    "\uC81C" \
    "\uC838" \
    "\uC854" \
    "\uC870" \
    "\uC88C" \
    "\uC8A8" \
    "\uC8C4" \
    "\uC8E0" \
    "\uC8FC" \
    "\uC918" \
    "\uC934" \
    "\uC950" \
    "\uC96C" \
    "\uC988" \
    "\uC9A4" \
    "\uC9C0" \
    "\uC9DC" \
    "\uC9F8" \
    "\uCA14" \
    "\uCA30" \
    "\uCA4C" \
    "\uCA68" \
    "\uCA84" \
    "\uCAA0" \
    "\uCABC" \
    "\uCAD8" \
    "\uCAF4" \
    "\uCB10" \
    "\uCB2C" \
    "\uCB48" \
    "\uCB64" \
    "\uCB80" \
    "\uCB9C" \
    "\uCBB8" \
    "\uCBD4" \
    "\uCBF0" \
    "\uCC0C" \
    "\uCC28" \
    "\uCC44" \
    "\uCC60" \
    "\uCC7C" \
    "\uCC98" \
    "\uCCB4" \
    "\uCCD0" \
    "\uCCEC" \
    "\uCD08" \
    "\uCD24" \
    "\uCD40" \
    "\uCD5C" \
    "\uCD78" \
    "\uCD94" \
    "\uCDB0" \
    "\uCDCC" \
    "\uCDE8" \
    "\uCE04" \
    "\uCE20" \
    "\uCE3C" \
    "\uCE58" \
    "\uCE74" \
    "\uCE90" \
    "\uCEAC" \
    "\uCEC8" \
    "\uCEE4" \
    "\uCF00" \
    "\uCF1C" \
    "\uCF38" \
    "\uCF54" \
    "\uCF70" \
    "\uCF8C" \
    "\uCFA8" \
    "\uCFC4" \
    "\uCFE0" \
    "\uCFFC" \
    "\uD018" \
    "\uD034" \
    "\uD050" \
    "\uD06C" \
    "\uD088" \
    "\uD0A4" \
    "\uD0C0" \
    "\uD0DC" \
    "\uD0F8" \
    "\uD114" \
    "\uD130" \
    "\uD14C" \
    "\uD168" \
    "\uD184" \
    "\uD1A0" \
    "\uD1BC" \
    "\uD1D8" \
    "\uD1F4" \
    "\uD210" \
    "\uD22C" \
    "\uD248" \
    "\uD264" \
    "\uD280" \
    "\uD29C" \
    "\uD2B8" \
    "\uD2D4" \
    "\uD2F0" \
    "\uD30C" \
    "\uD328" \
    "\uD344" \
    "\uD360" \
    "\uD37C" \
    "\uD398" \
    "\uD3B4" \
    "\uD3D0" \
    "\uD3EC" \
    "\uD408" \
    "\uD424" \
    "\uD440" \
    "\uD45C" \
    "\uD478" \
    "\uD494" \
    "\uD4B0" \
    "\uD4CC" \
    "\uD4E8" \
    "\uD504" \
    "\uD520" \
    "\uD53C" \
    "\uD558" \
    "\uD574" \
    "\uD590" \
    "\uD5AC" \
    "\uD5C8" \
    "\uD5E4" \
    "\uD600" \
    "\uD61C" \
    "\uD638" \
    "\uD654" \
    "\uD670" \
    "\uD68C" \
    "\uD6A8" \
    "\uD6C4" \
    "\uD6E0" \
    "\uD6FC" \
    "\uD718" \
    "\uD734" \
    "\uD750" \
    "\uD76C" \
    "\uD788" \
    "][\u11A8-\u11C2]" \
    "|#{''  # decomposed Hangul syllables
    }" \
    "[\u1100-\u1112][\u1161-\u1175][\u11A8-\u11C2]?"
  REGEXP_K_STRING = "" \
    "[\u00A0" \
    "\u00A8" \
    "\u00AA" \
    "\u00AF" \
    "\u00B2-\u00B5" \
    "\u00B8-\u00BA" \
    "\u00BC-\u00BE" \
    "\u0132\u0133" \
    "\u013F\u0140" \
    "\u0149" \
    "\u017F" \
    "\u01C4-\u01CC" \
    "\u01F1-\u01F3" \
    "\u02B0-\u02B8" \
    "\u02D8-\u02DD" \
    "\u02E0-\u02E4" \
    "\u037A" \
    "\u0384\u0385" \
    "\u03D0-\u03D6" \
    "\u03F0-\u03F2" \
    "\u03F4\u03F5" \
    "\u03F9" \
    "\u0587" \
    "\u0675-\u0678" \
    "\u0E33" \
    "\u0EB3" \
    "\u0EDC\u0EDD" \
    "\u0F0C" \
    "\u0F77" \
    "\u0F79" \
    "\u10FC" \
    "\u1D2C-\u1D2E" \
    "\u1D30-\u1D3A" \
    "\u1D3C-\u1D4D" \
    "\u1D4F-\u1D6A" \
    "\u1D78" \
    "\u1D9B-\u1DBF" \
    "\u1E9A\u1E9B" \
    "\u1FBD" \
    "\u1FBF-\u1FC1" \
    "\u1FCD-\u1FCF" \
    "\u1FDD-\u1FDF" \
    "\u1FED\u1FEE" \
    "\u1FFD\u1FFE" \
    "\u2000-\u200A" \
    "\u2011" \
    "\u2017" \
    "\u2024-\u2026" \
    "\u202F" \
    "\u2033\u2034" \
    "\u2036\u2037" \
    "\u203C" \
    "\u203E" \
    "\u2047-\u2049" \
    "\u2057" \
    "\u205F" \
    "\u2070\u2071" \
    "\u2074-\u208E" \
    "\u2090-\u209C" \
    "\u20A8" \
    "\u2100-\u2103" \
    "\u2105-\u2107" \
    "\u2109-\u2113" \
    "\u2115\u2116" \
    "\u2119-\u211D" \
    "\u2120-\u2122" \
    "\u2124" \
    "\u2128" \
    "\u212C\u212D" \
    "\u212F-\u2131" \
    "\u2133-\u2139" \
    "\u213B-\u2140" \
    "\u2145-\u2149" \
    "\u2150-\u217F" \
    "\u2189" \
    "\u222C\u222D" \
    "\u222F\u2230" \
    "\u2460-\u24EA" \
    "\u2A0C" \
    "\u2A74-\u2A76" \
    "\u2C7C\u2C7D" \
    "\u2D6F" \
    "\u2E9F" \
    "\u2EF3" \
    "\u2F00-\u2FD5" \
    "\u3000" \
    "\u3036" \
    "\u3038-\u303A" \
    "\u309B\u309C" \
    "\u309F" \
    "\u30FF" \
    "\u3131-\u318E" \
    "\u3192-\u319F" \
    "\u3200-\u321E" \
    "\u3220-\u3247" \
    "\u3250-\u327E" \
    "\u3280-\u33FF" \
    "\uA69C\uA69D" \
    "\uA770" \
    "\uA7F8\uA7F9" \
    "\uAB5C-\uAB5F" \
    "\uFB00-\uFB06" \
    "\uFB13-\uFB17" \
    "\uFB20-\uFB29" \
    "\uFB4F-\uFBB1" \
    "\uFBD3-\uFD3D" \
    "\uFD50-\uFD8F" \
    "\uFD92-\uFDC7" \
    "\uFDF0-\uFDFC" \
    "\uFE10-\uFE19" \
    "\uFE30-\uFE44" \
    "\uFE47-\uFE52" \
    "\uFE54-\uFE66" \
    "\uFE68-\uFE6B" \
    "\uFE70-\uFE72" \
    "\uFE74" \
    "\uFE76-\uFEFC" \
    "\uFF01-\uFFBE" \
    "\uFFC2-\uFFC7" \
    "\uFFCA-\uFFCF" \
    "\uFFD2-\uFFD7" \
    "\uFFDA-\uFFDC" \
    "\uFFE0-\uFFE6" \
    "\uFFE8-\uFFEE" \
    "\u{1D400}-\u{1D454}" \
    "\u{1D456}-\u{1D49C}" \
    "\u{1D49E}\u{1D49F}" \
    "\u{1D4A2}" \
    "\u{1D4A5}\u{1D4A6}" \
    "\u{1D4A9}-\u{1D4AC}" \
    "\u{1D4AE}-\u{1D4B9}" \
    "\u{1D4BB}" \
    "\u{1D4BD}-\u{1D4C3}" \
    "\u{1D4C5}-\u{1D505}" \
    "\u{1D507}-\u{1D50A}" \
    "\u{1D50D}-\u{1D514}" \
    "\u{1D516}-\u{1D51C}" \
    "\u{1D51E}-\u{1D539}" \
    "\u{1D53B}-\u{1D53E}" \
    "\u{1D540}-\u{1D544}" \
    "\u{1D546}" \
    "\u{1D54A}-\u{1D550}" \
    "\u{1D552}-\u{1D6A5}" \
    "\u{1D6A8}-\u{1D7CB}" \
    "\u{1D7CE}-\u{1D7FF}" \
    "\u{1EE00}-\u{1EE03}" \
    "\u{1EE05}-\u{1EE1F}" \
    "\u{1EE21}\u{1EE22}" \
    "\u{1EE24}" \
    "\u{1EE27}" \
    "\u{1EE29}-\u{1EE32}" \
    "\u{1EE34}-\u{1EE37}" \
    "\u{1EE39}" \
    "\u{1EE3B}" \
    "\u{1EE42}" \
    "\u{1EE47}" \
    "\u{1EE49}" \
    "\u{1EE4B}" \
    "\u{1EE4D}-\u{1EE4F}" \
    "\u{1EE51}\u{1EE52}" \
    "\u{1EE54}" \
    "\u{1EE57}" \
    "\u{1EE59}" \
    "\u{1EE5B}" \
    "\u{1EE5D}" \
    "\u{1EE5F}" \
    "\u{1EE61}\u{1EE62}" \
    "\u{1EE64}" \
    "\u{1EE67}-\u{1EE6A}" \
    "\u{1EE6C}-\u{1EE72}" \
    "\u{1EE74}-\u{1EE77}" \
    "\u{1EE79}-\u{1EE7C}" \
    "\u{1EE7E}" \
    "\u{1EE80}-\u{1EE89}" \
    "\u{1EE8B}-\u{1EE9B}" \
    "\u{1EEA1}-\u{1EEA3}" \
    "\u{1EEA5}-\u{1EEA9}" \
    "\u{1EEAB}-\u{1EEBB}" \
    "\u{1F100}-\u{1F10A}" \
    "\u{1F110}-\u{1F12E}" \
    "\u{1F130}-\u{1F14F}" \
    "\u{1F16A}-\u{1F16C}" \
    "\u{1F190}" \
    "\u{1F200}-\u{1F202}" \
    "\u{1F210}-\u{1F23B}" \
    "\u{1F240}-\u{1F248}" \
    "\u{1F250}\u{1F251}" \
    "]"

  class_table = {
    "\u0300"=>230,
    "\u0301"=>230,
    "\u0302"=>230,
    "\u0303"=>230,
    "\u0304"=>230,
    "\u0305"=>230,
    "\u0306"=>230,
    "\u0307"=>230,
    "\u0308"=>230,
    "\u0309"=>230,
    "\u030A"=>230,
    "\u030B"=>230,
    "\u030C"=>230,
    "\u030D"=>230,
    "\u030E"=>230,
    "\u030F"=>230,
    "\u0310"=>230,
    "\u0311"=>230,
    "\u0312"=>230,
    "\u0313"=>230,
    "\u0314"=>230,
    "\u0315"=>232,
    "\u0316"=>220,
    "\u0317"=>220,
    "\u0318"=>220,
    "\u0319"=>220,
    "\u031A"=>232,
    "\u031B"=>216,
    "\u031C"=>220,
    "\u031D"=>220,
    "\u031E"=>220,
    "\u031F"=>220,
    "\u0320"=>220,
    "\u0321"=>202,
    "\u0322"=>202,
    "\u0323"=>220,
    "\u0324"=>220,
    "\u0325"=>220,
    "\u0326"=>220,
    "\u0327"=>202,
    "\u0328"=>202,
    "\u0329"=>220,
    "\u032A"=>220,
    "\u032B"=>220,
    "\u032C"=>220,
    "\u032D"=>220,
    "\u032E"=>220,
    "\u032F"=>220,
    "\u0330"=>220,
    "\u0331"=>220,
    "\u0332"=>220,
    "\u0333"=>220,
    "\u0334"=>1,
    "\u0335"=>1,
    "\u0336"=>1,
    "\u0337"=>1,
    "\u0338"=>1,
    "\u0339"=>220,
    "\u033A"=>220,
    "\u033B"=>220,
    "\u033C"=>220,
    "\u033D"=>230,
    "\u033E"=>230,
    "\u033F"=>230,
    "\u0340"=>230,
    "\u0341"=>230,
    "\u0342"=>230,
    "\u0343"=>230,
    "\u0344"=>230,
    "\u0345"=>240,
    "\u0346"=>230,
    "\u0347"=>220,
    "\u0348"=>220,
    "\u0349"=>220,
    "\u034A"=>230,
    "\u034B"=>230,
    "\u034C"=>230,
    "\u034D"=>220,
    "\u034E"=>220,
    "\u0350"=>230,
    "\u0351"=>230,
    "\u0352"=>230,
    "\u0353"=>220,
    "\u0354"=>220,
    "\u0355"=>220,
    "\u0356"=>220,
    "\u0357"=>230,
    "\u0358"=>232,
    "\u0359"=>220,
    "\u035A"=>220,
    "\u035B"=>230,
    "\u035C"=>233,
    "\u035D"=>234,
    "\u035E"=>234,
    "\u035F"=>233,
    "\u0360"=>234,
    "\u0361"=>234,
    "\u0362"=>233,
    "\u0363"=>230,
    "\u0364"=>230,
    "\u0365"=>230,
    "\u0366"=>230,
    "\u0367"=>230,
    "\u0368"=>230,
    "\u0369"=>230,
    "\u036A"=>230,
    "\u036B"=>230,
    "\u036C"=>230,
    "\u036D"=>230,
    "\u036E"=>230,
    "\u036F"=>230,
    "\u0483"=>230,
    "\u0484"=>230,
    "\u0485"=>230,
    "\u0486"=>230,
    "\u0487"=>230,
    "\u0591"=>220,
    "\u0592"=>230,
    "\u0593"=>230,
    "\u0594"=>230,
    "\u0595"=>230,
    "\u0596"=>220,
    "\u0597"=>230,
    "\u0598"=>230,
    "\u0599"=>230,
    "\u059A"=>222,
    "\u059B"=>220,
    "\u059C"=>230,
    "\u059D"=>230,
    "\u059E"=>230,
    "\u059F"=>230,
    "\u05A0"=>230,
    "\u05A1"=>230,
    "\u05A2"=>220,
    "\u05A3"=>220,
    "\u05A4"=>220,
    "\u05A5"=>220,
    "\u05A6"=>220,
    "\u05A7"=>220,
    "\u05A8"=>230,
    "\u05A9"=>230,
    "\u05AA"=>220,
    "\u05AB"=>230,
    "\u05AC"=>230,
    "\u05AD"=>222,
    "\u05AE"=>228,
    "\u05AF"=>230,
    "\u05B0"=>10,
    "\u05B1"=>11,
    "\u05B2"=>12,
    "\u05B3"=>13,
    "\u05B4"=>14,
    "\u05B5"=>15,
    "\u05B6"=>16,
    "\u05B7"=>17,
    "\u05B8"=>18,
    "\u05B9"=>19,
    "\u05BA"=>19,
    "\u05BB"=>20,
    "\u05BC"=>21,
    "\u05BD"=>22,
    "\u05BF"=>23,
    "\u05C1"=>24,
    "\u05C2"=>25,
    "\u05C4"=>230,
    "\u05C5"=>220,
    "\u05C7"=>18,
    "\u0610"=>230,
    "\u0611"=>230,
    "\u0612"=>230,
    "\u0613"=>230,
    "\u0614"=>230,
    "\u0615"=>230,
    "\u0616"=>230,
    "\u0617"=>230,
    "\u0618"=>30,
    "\u0619"=>31,
    "\u061A"=>32,
    "\u064B"=>27,
    "\u064C"=>28,
    "\u064D"=>29,
    "\u064E"=>30,
    "\u064F"=>31,
    "\u0650"=>32,
    "\u0651"=>33,
    "\u0652"=>34,
    "\u0653"=>230,
    "\u0654"=>230,
    "\u0655"=>220,
    "\u0656"=>220,
    "\u0657"=>230,
    "\u0658"=>230,
    "\u0659"=>230,
    "\u065A"=>230,
    "\u065B"=>230,
    "\u065C"=>220,
    "\u065D"=>230,
    "\u065E"=>230,
    "\u065F"=>220,
    "\u0670"=>35,
    "\u06D6"=>230,
    "\u06D7"=>230,
    "\u06D8"=>230,
    "\u06D9"=>230,
    "\u06DA"=>230,
    "\u06DB"=>230,
    "\u06DC"=>230,
    "\u06DF"=>230,
    "\u06E0"=>230,
    "\u06E1"=>230,
    "\u06E2"=>230,
    "\u06E3"=>220,
    "\u06E4"=>230,
    "\u06E7"=>230,
    "\u06E8"=>230,
    "\u06EA"=>220,
    "\u06EB"=>230,
    "\u06EC"=>230,
    "\u06ED"=>220,
    "\u0711"=>36,
    "\u0730"=>230,
    "\u0731"=>220,
    "\u0732"=>230,
    "\u0733"=>230,
    "\u0734"=>220,
    "\u0735"=>230,
    "\u0736"=>230,
    "\u0737"=>220,
    "\u0738"=>220,
    "\u0739"=>220,
    "\u073A"=>230,
    "\u073B"=>220,
    "\u073C"=>220,
    "\u073D"=>230,
    "\u073E"=>220,
    "\u073F"=>230,
    "\u0740"=>230,
    "\u0741"=>230,
    "\u0742"=>220,
    "\u0743"=>230,
    "\u0744"=>220,
    "\u0745"=>230,
    "\u0746"=>220,
    "\u0747"=>230,
    "\u0748"=>220,
    "\u0749"=>230,
    "\u074A"=>230,
    "\u07EB"=>230,
    "\u07EC"=>230,
    "\u07ED"=>230,
    "\u07EE"=>230,
    "\u07EF"=>230,
    "\u07F0"=>230,
    "\u07F1"=>230,
    "\u07F2"=>220,
    "\u07F3"=>230,
    "\u07FD"=>220,
    "\u0816"=>230,
    "\u0817"=>230,
    "\u0818"=>230,
    "\u0819"=>230,
    "\u081B"=>230,
    "\u081C"=>230,
    "\u081D"=>230,
    "\u081E"=>230,
    "\u081F"=>230,
    "\u0820"=>230,
    "\u0821"=>230,
    "\u0822"=>230,
    "\u0823"=>230,
    "\u0825"=>230,
    "\u0826"=>230,
    "\u0827"=>230,
    "\u0829"=>230,
    "\u082A"=>230,
    "\u082B"=>230,
    "\u082C"=>230,
    "\u082D"=>230,
    "\u0859"=>220,
    "\u085A"=>220,
    "\u085B"=>220,
    "\u08D3"=>220,
    "\u08D4"=>230,
    "\u08D5"=>230,
    "\u08D6"=>230,
    "\u08D7"=>230,
    "\u08D8"=>230,
    "\u08D9"=>230,
    "\u08DA"=>230,
    "\u08DB"=>230,
    "\u08DC"=>230,
    "\u08DD"=>230,
    "\u08DE"=>230,
    "\u08DF"=>230,
    "\u08E0"=>230,
    "\u08E1"=>230,
    "\u08E3"=>220,
    "\u08E4"=>230,
    "\u08E5"=>230,
    "\u08E6"=>220,
    "\u08E7"=>230,
    "\u08E8"=>230,
    "\u08E9"=>220,
    "\u08EA"=>230,
    "\u08EB"=>230,
    "\u08EC"=>230,
    "\u08ED"=>220,
    "\u08EE"=>220,
    "\u08EF"=>220,
    "\u08F0"=>27,
    "\u08F1"=>28,
    "\u08F2"=>29,
    "\u08F3"=>230,
    "\u08F4"=>230,
    "\u08F5"=>230,
    "\u08F6"=>220,
    "\u08F7"=>230,
    "\u08F8"=>230,
    "\u08F9"=>220,
    "\u08FA"=>220,
    "\u08FB"=>230,
    "\u08FC"=>230,
    "\u08FD"=>230,
    "\u08FE"=>230,
    "\u08FF"=>230,
    "\u093C"=>7,
    "\u094D"=>9,
    "\u0951"=>230,
    "\u0952"=>220,
    "\u0953"=>230,
    "\u0954"=>230,
    "\u09BC"=>7,
    "\u09CD"=>9,
    "\u09FE"=>230,
    "\u0A3C"=>7,
    "\u0A4D"=>9,
    "\u0ABC"=>7,
    "\u0ACD"=>9,
    "\u0B3C"=>7,
    "\u0B4D"=>9,
    "\u0BCD"=>9,
    "\u0C4D"=>9,
    "\u0C55"=>84,
    "\u0C56"=>91,
    "\u0CBC"=>7,
    "\u0CCD"=>9,
    "\u0D3B"=>9,
    "\u0D3C"=>9,
    "\u0D4D"=>9,
    "\u0DCA"=>9,
    "\u0E38"=>103,
    "\u0E39"=>103,
    "\u0E3A"=>9,
    "\u0E48"=>107,
    "\u0E49"=>107,
    "\u0E4A"=>107,
    "\u0E4B"=>107,
    "\u0EB8"=>118,
    "\u0EB9"=>118,
    "\u0EBA"=>9,
    "\u0EC8"=>122,
    "\u0EC9"=>122,
    "\u0ECA"=>122,
    "\u0ECB"=>122,
    "\u0F18"=>220,
    "\u0F19"=>220,
    "\u0F35"=>220,
    "\u0F37"=>220,
    "\u0F39"=>216,
    "\u0F71"=>129,
    "\u0F72"=>130,
    "\u0F74"=>132,
    "\u0F7A"=>130,
    "\u0F7B"=>130,
    "\u0F7C"=>130,
    "\u0F7D"=>130,
    "\u0F80"=>130,
    "\u0F82"=>230,
    "\u0F83"=>230,
    "\u0F84"=>9,
    "\u0F86"=>230,
    "\u0F87"=>230,
    "\u0FC6"=>220,
    "\u1037"=>7,
    "\u1039"=>9,
    "\u103A"=>9,
    "\u108D"=>220,
    "\u135D"=>230,
    "\u135E"=>230,
    "\u135F"=>230,
    "\u1714"=>9,
    "\u1734"=>9,
    "\u17D2"=>9,
    "\u17DD"=>230,
    "\u18A9"=>228,
    "\u1939"=>222,
    "\u193A"=>230,
    "\u193B"=>220,
    "\u1A17"=>230,
    "\u1A18"=>220,
    "\u1A60"=>9,
    "\u1A75"=>230,
    "\u1A76"=>230,
    "\u1A77"=>230,
    "\u1A78"=>230,
    "\u1A79"=>230,
    "\u1A7A"=>230,
    "\u1A7B"=>230,
    "\u1A7C"=>230,
    "\u1A7F"=>220,
    "\u1AB0"=>230,
    "\u1AB1"=>230,
    "\u1AB2"=>230,
    "\u1AB3"=>230,
    "\u1AB4"=>230,
    "\u1AB5"=>220,
    "\u1AB6"=>220,
    "\u1AB7"=>220,
    "\u1AB8"=>220,
    "\u1AB9"=>220,
    "\u1ABA"=>220,
    "\u1ABB"=>230,
    "\u1ABC"=>230,
    "\u1ABD"=>220,
    "\u1B34"=>7,
    "\u1B44"=>9,
    "\u1B6B"=>230,
    "\u1B6C"=>220,
    "\u1B6D"=>230,
    "\u1B6E"=>230,
    "\u1B6F"=>230,
    "\u1B70"=>230,
    "\u1B71"=>230,
    "\u1B72"=>230,
    "\u1B73"=>230,
    "\u1BAA"=>9,
    "\u1BAB"=>9,
    "\u1BE6"=>7,
    "\u1BF2"=>9,
    "\u1BF3"=>9,
    "\u1C37"=>7,
    "\u1CD0"=>230,
    "\u1CD1"=>230,
    "\u1CD2"=>230,
    "\u1CD4"=>1,
    "\u1CD5"=>220,
    "\u1CD6"=>220,
    "\u1CD7"=>220,
    "\u1CD8"=>220,
    "\u1CD9"=>220,
    "\u1CDA"=>230,
    "\u1CDB"=>230,
    "\u1CDC"=>220,
    "\u1CDD"=>220,
    "\u1CDE"=>220,
    "\u1CDF"=>220,
    "\u1CE0"=>230,
    "\u1CE2"=>1,
    "\u1CE3"=>1,
    "\u1CE4"=>1,
    "\u1CE5"=>1,
    "\u1CE6"=>1,
    "\u1CE7"=>1,
    "\u1CE8"=>1,
    "\u1CED"=>220,
    "\u1CF4"=>230,
    "\u1CF8"=>230,
    "\u1CF9"=>230,
    "\u1DC0"=>230,
    "\u1DC1"=>230,
    "\u1DC2"=>220,
    "\u1DC3"=>230,
    "\u1DC4"=>230,
    "\u1DC5"=>230,
    "\u1DC6"=>230,
    "\u1DC7"=>230,
    "\u1DC8"=>230,
    "\u1DC9"=>230,
    "\u1DCA"=>220,
    "\u1DCB"=>230,
    "\u1DCC"=>230,
    "\u1DCD"=>234,
    "\u1DCE"=>214,
    "\u1DCF"=>220,
    "\u1DD0"=>202,
    "\u1DD1"=>230,
    "\u1DD2"=>230,
    "\u1DD3"=>230,
    "\u1DD4"=>230,
    "\u1DD5"=>230,
    "\u1DD6"=>230,
    "\u1DD7"=>230,
    "\u1DD8"=>230,
    "\u1DD9"=>230,
    "\u1DDA"=>230,
    "\u1DDB"=>230,
    "\u1DDC"=>230,
    "\u1DDD"=>230,
    "\u1DDE"=>230,
    "\u1DDF"=>230,
    "\u1DE0"=>230,
    "\u1DE1"=>230,
    "\u1DE2"=>230,
    "\u1DE3"=>230,
    "\u1DE4"=>230,
    "\u1DE5"=>230,
    "\u1DE6"=>230,
    "\u1DE7"=>230,
    "\u1DE8"=>230,
    "\u1DE9"=>230,
    "\u1DEA"=>230,
    "\u1DEB"=>230,
    "\u1DEC"=>230,
    "\u1DED"=>230,
    "\u1DEE"=>230,
    "\u1DEF"=>230,
    "\u1DF0"=>230,
    "\u1DF1"=>230,
    "\u1DF2"=>230,
    "\u1DF3"=>230,
    "\u1DF4"=>230,
    "\u1DF5"=>230,
    "\u1DF6"=>232,
    "\u1DF7"=>228,
    "\u1DF8"=>228,
    "\u1DF9"=>220,
    "\u1DFB"=>230,
    "\u1DFC"=>233,
    "\u1DFD"=>220,
    "\u1DFE"=>230,
    "\u1DFF"=>220,
    "\u20D0"=>230,
    "\u20D1"=>230,
    "\u20D2"=>1,
    "\u20D3"=>1,
    "\u20D4"=>230,
    "\u20D5"=>230,
    "\u20D6"=>230,
    "\u20D7"=>230,
    "\u20D8"=>1,
    "\u20D9"=>1,
    "\u20DA"=>1,
    "\u20DB"=>230,
    "\u20DC"=>230,
    "\u20E1"=>230,
    "\u20E5"=>1,
    "\u20E6"=>1,
    "\u20E7"=>230,
    "\u20E8"=>220,
    "\u20E9"=>230,
    "\u20EA"=>1,
    "\u20EB"=>1,
    "\u20EC"=>220,
    "\u20ED"=>220,
    "\u20EE"=>220,
    "\u20EF"=>220,
    "\u20F0"=>230,
    "\u2CEF"=>230,
    "\u2CF0"=>230,
    "\u2CF1"=>230,
    "\u2D7F"=>9,
    "\u2DE0"=>230,
    "\u2DE1"=>230,
    "\u2DE2"=>230,
    "\u2DE3"=>230,
    "\u2DE4"=>230,
    "\u2DE5"=>230,
    "\u2DE6"=>230,
    "\u2DE7"=>230,
    "\u2DE8"=>230,
    "\u2DE9"=>230,
    "\u2DEA"=>230,
    "\u2DEB"=>230,
    "\u2DEC"=>230,
    "\u2DED"=>230,
    "\u2DEE"=>230,
    "\u2DEF"=>230,
    "\u2DF0"=>230,
    "\u2DF1"=>230,
    "\u2DF2"=>230,
    "\u2DF3"=>230,
    "\u2DF4"=>230,
    "\u2DF5"=>230,
    "\u2DF6"=>230,
    "\u2DF7"=>230,
    "\u2DF8"=>230,
    "\u2DF9"=>230,
    "\u2DFA"=>230,
    "\u2DFB"=>230,
    "\u2DFC"=>230,
    "\u2DFD"=>230,
    "\u2DFE"=>230,
    "\u2DFF"=>230,
    "\u302A"=>218,
    "\u302B"=>228,
    "\u302C"=>232,
    "\u302D"=>222,
    "\u302E"=>224,
    "\u302F"=>224,
    "\u3099"=>8,
    "\u309A"=>8,
    "\uA66F"=>230,
    "\uA674"=>230,
    "\uA675"=>230,
    "\uA676"=>230,
    "\uA677"=>230,
    "\uA678"=>230,
    "\uA679"=>230,
    "\uA67A"=>230,
    "\uA67B"=>230,
    "\uA67C"=>230,
    "\uA67D"=>230,
    "\uA69E"=>230,
    "\uA69F"=>230,
    "\uA6F0"=>230,
    "\uA6F1"=>230,
    "\uA806"=>9,
    "\uA8C4"=>9,
    "\uA8E0"=>230,
    "\uA8E1"=>230,
    "\uA8E2"=>230,
    "\uA8E3"=>230,
    "\uA8E4"=>230,
    "\uA8E5"=>230,
    "\uA8E6"=>230,
    "\uA8E7"=>230,
    "\uA8E8"=>230,
    "\uA8E9"=>230,
    "\uA8EA"=>230,
    "\uA8EB"=>230,
    "\uA8EC"=>230,
    "\uA8ED"=>230,
    "\uA8EE"=>230,
    "\uA8EF"=>230,
    "\uA8F0"=>230,
    "\uA8F1"=>230,
    "\uA92B"=>220,
    "\uA92C"=>220,
    "\uA92D"=>220,
    "\uA953"=>9,
    "\uA9B3"=>7,
    "\uA9C0"=>9,
    "\uAAB0"=>230,
    "\uAAB2"=>230,
    "\uAAB3"=>230,
    "\uAAB4"=>220,
    "\uAAB7"=>230,
    "\uAAB8"=>230,
    "\uAABE"=>230,
    "\uAABF"=>230,
    "\uAAC1"=>230,
    "\uAAF6"=>9,
    "\uABED"=>9,
    "\uFB1E"=>26,
    "\uFE20"=>230,
    "\uFE21"=>230,
    "\uFE22"=>230,
    "\uFE23"=>230,
    "\uFE24"=>230,
    "\uFE25"=>230,
    "\uFE26"=>230,
    "\uFE27"=>220,
    "\uFE28"=>220,
    "\uFE29"=>220,
    "\uFE2A"=>220,
    "\uFE2B"=>220,
    "\uFE2C"=>220,
    "\uFE2D"=>220,
    "\uFE2E"=>230,
    "\uFE2F"=>230,
    "\u{101FD}"=>220,
    "\u{102E0}"=>220,
    "\u{10376}"=>230,
    "\u{10377}"=>230,
    "\u{10378}"=>230,
    "\u{10379}"=>230,
    "\u{1037A}"=>230,
    "\u{10A0D}"=>220,
    "\u{10A0F}"=>230,
    "\u{10A38}"=>230,
    "\u{10A39}"=>1,
    "\u{10A3A}"=>220,
    "\u{10A3F}"=>9,
    "\u{10AE5}"=>230,
    "\u{10AE6}"=>220,
    "\u{10D24}"=>230,
    "\u{10D25}"=>230,
    "\u{10D26}"=>230,
    "\u{10D27}"=>230,
    "\u{10F46}"=>220,
    "\u{10F47}"=>220,
    "\u{10F48}"=>230,
    "\u{10F49}"=>230,
    "\u{10F4A}"=>230,
    "\u{10F4B}"=>220,
    "\u{10F4C}"=>230,
    "\u{10F4D}"=>220,
    "\u{10F4E}"=>220,
    "\u{10F4F}"=>220,
    "\u{10F50}"=>220,
    "\u{11046}"=>9,
    "\u{1107F}"=>9,
    "\u{110B9}"=>9,
    "\u{110BA}"=>7,
    "\u{11100}"=>230,
    "\u{11101}"=>230,
    "\u{11102}"=>230,
    "\u{11133}"=>9,
    "\u{11134}"=>9,
    "\u{11173}"=>7,
    "\u{111C0}"=>9,
    "\u{111CA}"=>7,
    "\u{11235}"=>9,
    "\u{11236}"=>7,
    "\u{112E9}"=>7,
    "\u{112EA}"=>9,
    "\u{1133B}"=>7,
    "\u{1133C}"=>7,
    "\u{1134D}"=>9,
    "\u{11366}"=>230,
    "\u{11367}"=>230,
    "\u{11368}"=>230,
    "\u{11369}"=>230,
    "\u{1136A}"=>230,
    "\u{1136B}"=>230,
    "\u{1136C}"=>230,
    "\u{11370}"=>230,
    "\u{11371}"=>230,
    "\u{11372}"=>230,
    "\u{11373}"=>230,
    "\u{11374}"=>230,
    "\u{11442}"=>9,
    "\u{11446}"=>7,
    "\u{1145E}"=>230,
    "\u{114C2}"=>9,
    "\u{114C3}"=>7,
    "\u{115BF}"=>9,
    "\u{115C0}"=>7,
    "\u{1163F}"=>9,
    "\u{116B6}"=>9,
    "\u{116B7}"=>7,
    "\u{1172B}"=>9,
    "\u{11839}"=>9,
    "\u{1183A}"=>7,
    "\u{119E0}"=>9,
    "\u{11A34}"=>9,
    "\u{11A47}"=>9,
    "\u{11A99}"=>9,
    "\u{11C3F}"=>9,
    "\u{11D42}"=>7,
    "\u{11D44}"=>9,
    "\u{11D45}"=>9,
    "\u{11D97}"=>9,
    "\u{16AF0}"=>1,
    "\u{16AF1}"=>1,
    "\u{16AF2}"=>1,
    "\u{16AF3}"=>1,
    "\u{16AF4}"=>1,
    "\u{16B30}"=>230,
    "\u{16B31}"=>230,
    "\u{16B32}"=>230,
    "\u{16B33}"=>230,
    "\u{16B34}"=>230,
    "\u{16B35}"=>230,
    "\u{16B36}"=>230,
    "\u{1BC9E}"=>1,
    "\u{1D165}"=>216,
    "\u{1D166}"=>216,
    "\u{1D167}"=>1,
    "\u{1D168}"=>1,
    "\u{1D169}"=>1,
    "\u{1D16D}"=>226,
    "\u{1D16E}"=>216,
    "\u{1D16F}"=>216,
    "\u{1D170}"=>216,
    "\u{1D171}"=>216,
    "\u{1D172}"=>216,
    "\u{1D17B}"=>220,
    "\u{1D17C}"=>220,
    "\u{1D17D}"=>220,
    "\u{1D17E}"=>220,
    "\u{1D17F}"=>220,
    "\u{1D180}"=>220,
    "\u{1D181}"=>220,
    "\u{1D182}"=>220,
    "\u{1D185}"=>230,
    "\u{1D186}"=>230,
    "\u{1D187}"=>230,
    "\u{1D188}"=>230,
    "\u{1D189}"=>230,
    "\u{1D18A}"=>220,
    "\u{1D18B}"=>220,
    "\u{1D1AA}"=>230,
    "\u{1D1AB}"=>230,
    "\u{1D1AC}"=>230,
    "\u{1D1AD}"=>230,
    "\u{1D242}"=>230,
    "\u{1D243}"=>230,
    "\u{1D244}"=>230,
    "\u{1E000}"=>230,
    "\u{1E001}"=>230,
    "\u{1E002}"=>230,
    "\u{1E003}"=>230,
    "\u{1E004}"=>230,
    "\u{1E005}"=>230,
    "\u{1E006}"=>230,
    "\u{1E008}"=>230,
    "\u{1E009}"=>230,
    "\u{1E00A}"=>230,
    "\u{1E00B}"=>230,
    "\u{1E00C}"=>230,
    "\u{1E00D}"=>230,
    "\u{1E00E}"=>230,
    "\u{1E00F}"=>230,
    "\u{1E010}"=>230,
    "\u{1E011}"=>230,
    "\u{1E012}"=>230,
    "\u{1E013}"=>230,
    "\u{1E014}"=>230,
    "\u{1E015}"=>230,
    "\u{1E016}"=>230,
    "\u{1E017}"=>230,
    "\u{1E018}"=>230,
    "\u{1E01B}"=>230,
    "\u{1E01C}"=>230,
    "\u{1E01D}"=>230,
    "\u{1E01E}"=>230,
    "\u{1E01F}"=>230,
    "\u{1E020}"=>230,
    "\u{1E021}"=>230,
    "\u{1E023}"=>230,
    "\u{1E024}"=>230,
    "\u{1E026}"=>230,
    "\u{1E027}"=>230,
    "\u{1E028}"=>230,
    "\u{1E029}"=>230,
    "\u{1E02A}"=>230,
    "\u{1E130}"=>230,
    "\u{1E131}"=>230,
    "\u{1E132}"=>230,
    "\u{1E133}"=>230,
    "\u{1E134}"=>230,
    "\u{1E135}"=>230,
    "\u{1E136}"=>230,
    "\u{1E2EC}"=>230,
    "\u{1E2ED}"=>230,
    "\u{1E2EE}"=>230,
    "\u{1E2EF}"=>230,
    "\u{1E8D0}"=>220,
    "\u{1E8D1}"=>220,
    "\u{1E8D2}"=>220,
    "\u{1E8D3}"=>220,
    "\u{1E8D4}"=>220,
    "\u{1E8D5}"=>220,
    "\u{1E8D6}"=>220,
    "\u{1E944}"=>230,
    "\u{1E945}"=>230,
    "\u{1E946}"=>230,
    "\u{1E947}"=>230,
    "\u{1E948}"=>230,
    "\u{1E949}"=>230,
    "\u{1E94A}"=>7,
  }
  class_table.default = 0
  CLASS_TABLE = class_table.freeze

  DECOMPOSITION_TABLE = {
    "\u00C0"=>"A\u0300",
    "\u00C1"=>"A\u0301",
    "\u00C2"=>"A\u0302",
    "\u00C3"=>"A\u0303",
    "\u00C4"=>"A\u0308",
    "\u00C5"=>"A\u030A",
    "\u00C7"=>"C\u0327",
    "\u00C8"=>"E\u0300",
    "\u00C9"=>"E\u0301",
    "\u00CA"=>"E\u0302",
    "\u00CB"=>"E\u0308",
    "\u00CC"=>"I\u0300",
    "\u00CD"=>"I\u0301",
    "\u00CE"=>"I\u0302",
    "\u00CF"=>"I\u0308",
    "\u00D1"=>"N\u0303",
    "\u00D2"=>"O\u0300",
    "\u00D3"=>"O\u0301",
    "\u00D4"=>"O\u0302",
    "\u00D5"=>"O\u0303",
    "\u00D6"=>"O\u0308",
    "\u00D9"=>"U\u0300",
    "\u00DA"=>"U\u0301",
    "\u00DB"=>"U\u0302",
    "\u00DC"=>"U\u0308",
    "\u00DD"=>"Y\u0301",
    "\u00E0"=>"a\u0300",
    "\u00E1"=>"a\u0301",
    "\u00E2"=>"a\u0302",
    "\u00E3"=>"a\u0303",
    "\u00E4"=>"a\u0308",
    "\u00E5"=>"a\u030A",
    "\u00E7"=>"c\u0327",
    "\u00E8"=>"e\u0300",
    "\u00E9"=>"e\u0301",
    "\u00EA"=>"e\u0302",
    "\u00EB"=>"e\u0308",
    "\u00EC"=>"i\u0300",
    "\u00ED"=>"i\u0301",
    "\u00EE"=>"i\u0302",
    "\u00EF"=>"i\u0308",
    "\u00F1"=>"n\u0303",
    "\u00F2"=>"o\u0300",
    "\u00F3"=>"o\u0301",
    "\u00F4"=>"o\u0302",
    "\u00F5"=>"o\u0303",
    "\u00F6"=>"o\u0308",
    "\u00F9"=>"u\u0300",
    "\u00FA"=>"u\u0301",
    "\u00FB"=>"u\u0302",
    "\u00FC"=>"u\u0308",
    "\u00FD"=>"y\u0301",
    "\u00FF"=>"y\u0308",
    "\u0100"=>"A\u0304",
    "\u0101"=>"a\u0304",
    "\u0102"=>"A\u0306",
    "\u0103"=>"a\u0306",
    "\u0104"=>"A\u0328",
    "\u0105"=>"a\u0328",
    "\u0106"=>"C\u0301",
    "\u0107"=>"c\u0301",
    "\u0108"=>"C\u0302",
    "\u0109"=>"c\u0302",
    "\u010A"=>"C\u0307",
    "\u010B"=>"c\u0307",
    "\u010C"=>"C\u030C",
    "\u010D"=>"c\u030C",
    "\u010E"=>"D\u030C",
    "\u010F"=>"d\u030C",
    "\u0112"=>"E\u0304",
    "\u0113"=>"e\u0304",
    "\u0114"=>"E\u0306",
    "\u0115"=>"e\u0306",
    "\u0116"=>"E\u0307",
    "\u0117"=>"e\u0307",
    "\u0118"=>"E\u0328",
    "\u0119"=>"e\u0328",
    "\u011A"=>"E\u030C",
    "\u011B"=>"e\u030C",
    "\u011C"=>"G\u0302",
    "\u011D"=>"g\u0302",
    "\u011E"=>"G\u0306",
    "\u011F"=>"g\u0306",
    "\u0120"=>"G\u0307",
    "\u0121"=>"g\u0307",
    "\u0122"=>"G\u0327",
    "\u0123"=>"g\u0327",
    "\u0124"=>"H\u0302",
    "\u0125"=>"h\u0302",
    "\u0128"=>"I\u0303",
    "\u0129"=>"i\u0303",
    "\u012A"=>"I\u0304",
    "\u012B"=>"i\u0304",
    "\u012C"=>"I\u0306",
    "\u012D"=>"i\u0306",
    "\u012E"=>"I\u0328",
    "\u012F"=>"i\u0328",
    "\u0130"=>"I\u0307",
    "\u0134"=>"J\u0302",
    "\u0135"=>"j\u0302",
    "\u0136"=>"K\u0327",
    "\u0137"=>"k\u0327",
    "\u0139"=>"L\u0301",
    "\u013A"=>"l\u0301",
    "\u013B"=>"L\u0327",
    "\u013C"=>"l\u0327",
    "\u013D"=>"L\u030C",
    "\u013E"=>"l\u030C",
    "\u0143"=>"N\u0301",
    "\u0144"=>"n\u0301",
    "\u0145"=>"N\u0327",
    "\u0146"=>"n\u0327",
    "\u0147"=>"N\u030C",
    "\u0148"=>"n\u030C",
    "\u014C"=>"O\u0304",
    "\u014D"=>"o\u0304",
    "\u014E"=>"O\u0306",
    "\u014F"=>"o\u0306",
    "\u0150"=>"O\u030B",
    "\u0151"=>"o\u030B",
    "\u0154"=>"R\u0301",
    "\u0155"=>"r\u0301",
    "\u0156"=>"R\u0327",
    "\u0157"=>"r\u0327",
    "\u0158"=>"R\u030C",
    "\u0159"=>"r\u030C",
    "\u015A"=>"S\u0301",
    "\u015B"=>"s\u0301",
    "\u015C"=>"S\u0302",
    "\u015D"=>"s\u0302",
    "\u015E"=>"S\u0327",
    "\u015F"=>"s\u0327",
    "\u0160"=>"S\u030C",
    "\u0161"=>"s\u030C",
    "\u0162"=>"T\u0327",
    "\u0163"=>"t\u0327",
    "\u0164"=>"T\u030C",
    "\u0165"=>"t\u030C",
    "\u0168"=>"U\u0303",
    "\u0169"=>"u\u0303",
    "\u016A"=>"U\u0304",
    "\u016B"=>"u\u0304",
    "\u016C"=>"U\u0306",
    "\u016D"=>"u\u0306",
    "\u016E"=>"U\u030A",
    "\u016F"=>"u\u030A",
    "\u0170"=>"U\u030B",
    "\u0171"=>"u\u030B",
    "\u0172"=>"U\u0328",
    "\u0173"=>"u\u0328",
    "\u0174"=>"W\u0302",
    "\u0175"=>"w\u0302",
    "\u0176"=>"Y\u0302",
    "\u0177"=>"y\u0302",
    "\u0178"=>"Y\u0308",
    "\u0179"=>"Z\u0301",
    "\u017A"=>"z\u0301",
    "\u017B"=>"Z\u0307",
    "\u017C"=>"z\u0307",
    "\u017D"=>"Z\u030C",
    "\u017E"=>"z\u030C",
    "\u01A0"=>"O\u031B",
    "\u01A1"=>"o\u031B",
    "\u01AF"=>"U\u031B",
    "\u01B0"=>"u\u031B",
    "\u01CD"=>"A\u030C",
    "\u01CE"=>"a\u030C",
    "\u01CF"=>"I\u030C",
    "\u01D0"=>"i\u030C",
    "\u01D1"=>"O\u030C",
    "\u01D2"=>"o\u030C",
    "\u01D3"=>"U\u030C",
    "\u01D4"=>"u\u030C",
    "\u01D5"=>"U\u0308\u0304",
    "\u01D6"=>"u\u0308\u0304",
    "\u01D7"=>"U\u0308\u0301",
    "\u01D8"=>"u\u0308\u0301",
    "\u01D9"=>"U\u0308\u030C",
    "\u01DA"=>"u\u0308\u030C",
    "\u01DB"=>"U\u0308\u0300",
    "\u01DC"=>"u\u0308\u0300",
    "\u01DE"=>"A\u0308\u0304",
    "\u01DF"=>"a\u0308\u0304",
    "\u01E0"=>"A\u0307\u0304",
    "\u01E1"=>"a\u0307\u0304",
    "\u01E2"=>"\u00C6\u0304",
    "\u01E3"=>"\u00E6\u0304",
    "\u01E6"=>"G\u030C",
    "\u01E7"=>"g\u030C",
    "\u01E8"=>"K\u030C",
    "\u01E9"=>"k\u030C",
    "\u01EA"=>"O\u0328",
    "\u01EB"=>"o\u0328",
    "\u01EC"=>"O\u0328\u0304",
    "\u01ED"=>"o\u0328\u0304",
    "\u01EE"=>"\u01B7\u030C",
    "\u01EF"=>"\u0292\u030C",
    "\u01F0"=>"j\u030C",
    "\u01F4"=>"G\u0301",
    "\u01F5"=>"g\u0301",
    "\u01F8"=>"N\u0300",
    "\u01F9"=>"n\u0300",
    "\u01FA"=>"A\u030A\u0301",
    "\u01FB"=>"a\u030A\u0301",
    "\u01FC"=>"\u00C6\u0301",
    "\u01FD"=>"\u00E6\u0301",
    "\u01FE"=>"\u00D8\u0301",
    "\u01FF"=>"\u00F8\u0301",
    "\u0200"=>"A\u030F",
    "\u0201"=>"a\u030F",
    "\u0202"=>"A\u0311",
    "\u0203"=>"a\u0311",
    "\u0204"=>"E\u030F",
    "\u0205"=>"e\u030F",
    "\u0206"=>"E\u0311",
    "\u0207"=>"e\u0311",
    "\u0208"=>"I\u030F",
    "\u0209"=>"i\u030F",
    "\u020A"=>"I\u0311",
    "\u020B"=>"i\u0311",
    "\u020C"=>"O\u030F",
    "\u020D"=>"o\u030F",
    "\u020E"=>"O\u0311",
    "\u020F"=>"o\u0311",
    "\u0210"=>"R\u030F",
    "\u0211"=>"r\u030F",
    "\u0212"=>"R\u0311",
    "\u0213"=>"r\u0311",
    "\u0214"=>"U\u030F",
    "\u0215"=>"u\u030F",
    "\u0216"=>"U\u0311",
    "\u0217"=>"u\u0311",
    "\u0218"=>"S\u0326",
    "\u0219"=>"s\u0326",
    "\u021A"=>"T\u0326",
    "\u021B"=>"t\u0326",
    "\u021E"=>"H\u030C",
    "\u021F"=>"h\u030C",
    "\u0226"=>"A\u0307",
    "\u0227"=>"a\u0307",
    "\u0228"=>"E\u0327",
    "\u0229"=>"e\u0327",
    "\u022A"=>"O\u0308\u0304",
    "\u022B"=>"o\u0308\u0304",
    "\u022C"=>"O\u0303\u0304",
    "\u022D"=>"o\u0303\u0304",
    "\u022E"=>"O\u0307",
    "\u022F"=>"o\u0307",
    "\u0230"=>"O\u0307\u0304",
    "\u0231"=>"o\u0307\u0304",
    "\u0232"=>"Y\u0304",
    "\u0233"=>"y\u0304",
    "\u0340"=>"\u0300",
    "\u0341"=>"\u0301",
    "\u0343"=>"\u0313",
    "\u0344"=>"\u0308\u0301",
    "\u0374"=>"\u02B9",
    "\u037E"=>";",
    "\u0385"=>"\u00A8\u0301",
    "\u0386"=>"\u0391\u0301",
    "\u0387"=>"\u00B7",
    "\u0388"=>"\u0395\u0301",
    "\u0389"=>"\u0397\u0301",
    "\u038A"=>"\u0399\u0301",
    "\u038C"=>"\u039F\u0301",
    "\u038E"=>"\u03A5\u0301",
    "\u038F"=>"\u03A9\u0301",
    "\u0390"=>"\u03B9\u0308\u0301",
    "\u03AA"=>"\u0399\u0308",
    "\u03AB"=>"\u03A5\u0308",
    "\u03AC"=>"\u03B1\u0301",
    "\u03AD"=>"\u03B5\u0301",
    "\u03AE"=>"\u03B7\u0301",
    "\u03AF"=>"\u03B9\u0301",
    "\u03B0"=>"\u03C5\u0308\u0301",
    "\u03CA"=>"\u03B9\u0308",
    "\u03CB"=>"\u03C5\u0308",
    "\u03CC"=>"\u03BF\u0301",
    "\u03CD"=>"\u03C5\u0301",
    "\u03CE"=>"\u03C9\u0301",
    "\u03D3"=>"\u03D2\u0301",
    "\u03D4"=>"\u03D2\u0308",
    "\u0400"=>"\u0415\u0300",
    "\u0401"=>"\u0415\u0308",
    "\u0403"=>"\u0413\u0301",
    "\u0407"=>"\u0406\u0308",
    "\u040C"=>"\u041A\u0301",
    "\u040D"=>"\u0418\u0300",
    "\u040E"=>"\u0423\u0306",
    "\u0419"=>"\u0418\u0306",
    "\u0439"=>"\u0438\u0306",
    "\u0450"=>"\u0435\u0300",
    "\u0451"=>"\u0435\u0308",
    "\u0453"=>"\u0433\u0301",
    "\u0457"=>"\u0456\u0308",
    "\u045C"=>"\u043A\u0301",
    "\u045D"=>"\u0438\u0300",
    "\u045E"=>"\u0443\u0306",
    "\u0476"=>"\u0474\u030F",
    "\u0477"=>"\u0475\u030F",
    "\u04C1"=>"\u0416\u0306",
    "\u04C2"=>"\u0436\u0306",
    "\u04D0"=>"\u0410\u0306",
    "\u04D1"=>"\u0430\u0306",
    "\u04D2"=>"\u0410\u0308",
    "\u04D3"=>"\u0430\u0308",
    "\u04D6"=>"\u0415\u0306",
    "\u04D7"=>"\u0435\u0306",
    "\u04DA"=>"\u04D8\u0308",
    "\u04DB"=>"\u04D9\u0308",
    "\u04DC"=>"\u0416\u0308",
    "\u04DD"=>"\u0436\u0308",
    "\u04DE"=>"\u0417\u0308",
    "\u04DF"=>"\u0437\u0308",
    "\u04E2"=>"\u0418\u0304",
    "\u04E3"=>"\u0438\u0304",
    "\u04E4"=>"\u0418\u0308",
    "\u04E5"=>"\u0438\u0308",
    "\u04E6"=>"\u041E\u0308",
    "\u04E7"=>"\u043E\u0308",
    "\u04EA"=>"\u04E8\u0308",
    "\u04EB"=>"\u04E9\u0308",
    "\u04EC"=>"\u042D\u0308",
    "\u04ED"=>"\u044D\u0308",
    "\u04EE"=>"\u0423\u0304",
    "\u04EF"=>"\u0443\u0304",
    "\u04F0"=>"\u0423\u0308",
    "\u04F1"=>"\u0443\u0308",
    "\u04F2"=>"\u0423\u030B",
    "\u04F3"=>"\u0443\u030B",
    "\u04F4"=>"\u0427\u0308",
    "\u04F5"=>"\u0447\u0308",
    "\u04F8"=>"\u042B\u0308",
    "\u04F9"=>"\u044B\u0308",
    "\u0622"=>"\u0627\u0653",
    "\u0623"=>"\u0627\u0654",
    "\u0624"=>"\u0648\u0654",
    "\u0625"=>"\u0627\u0655",
    "\u0626"=>"\u064A\u0654",
    "\u06C0"=>"\u06D5\u0654",
    "\u06C2"=>"\u06C1\u0654",
    "\u06D3"=>"\u06D2\u0654",
    "\u0929"=>"\u0928\u093C",
    "\u0931"=>"\u0930\u093C",
    "\u0934"=>"\u0933\u093C",
    "\u0958"=>"\u0915\u093C",
    "\u0959"=>"\u0916\u093C",
    "\u095A"=>"\u0917\u093C",
    "\u095B"=>"\u091C\u093C",
    "\u095C"=>"\u0921\u093C",
    "\u095D"=>"\u0922\u093C",
    "\u095E"=>"\u092B\u093C",
    "\u095F"=>"\u092F\u093C",
    "\u09CB"=>"\u09C7\u09BE",
    "\u09CC"=>"\u09C7\u09D7",
    "\u09DC"=>"\u09A1\u09BC",
    "\u09DD"=>"\u09A2\u09BC",
    "\u09DF"=>"\u09AF\u09BC",
    "\u0A33"=>"\u0A32\u0A3C",
    "\u0A36"=>"\u0A38\u0A3C",
    "\u0A59"=>"\u0A16\u0A3C",
    "\u0A5A"=>"\u0A17\u0A3C",
    "\u0A5B"=>"\u0A1C\u0A3C",
    "\u0A5E"=>"\u0A2B\u0A3C",
    "\u0B48"=>"\u0B47\u0B56",
    "\u0B4B"=>"\u0B47\u0B3E",
    "\u0B4C"=>"\u0B47\u0B57",
    "\u0B5C"=>"\u0B21\u0B3C",
    "\u0B5D"=>"\u0B22\u0B3C",
    "\u0B94"=>"\u0B92\u0BD7",
    "\u0BCA"=>"\u0BC6\u0BBE",
    "\u0BCB"=>"\u0BC7\u0BBE",
    "\u0BCC"=>"\u0BC6\u0BD7",
    "\u0C48"=>"\u0C46\u0C56",
    "\u0CC0"=>"\u0CBF\u0CD5",
    "\u0CC7"=>"\u0CC6\u0CD5",
    "\u0CC8"=>"\u0CC6\u0CD6",
    "\u0CCA"=>"\u0CC6\u0CC2",
    "\u0CCB"=>"\u0CC6\u0CC2\u0CD5",
    "\u0D4A"=>"\u0D46\u0D3E",
    "\u0D4B"=>"\u0D47\u0D3E",
    "\u0D4C"=>"\u0D46\u0D57",
    "\u0DDA"=>"\u0DD9\u0DCA",
    "\u0DDC"=>"\u0DD9\u0DCF",
    "\u0DDD"=>"\u0DD9\u0DCF\u0DCA",
    "\u0DDE"=>"\u0DD9\u0DDF",
    "\u0F43"=>"\u0F42\u0FB7",
    "\u0F4D"=>"\u0F4C\u0FB7",
    "\u0F52"=>"\u0F51\u0FB7",
    "\u0F57"=>"\u0F56\u0FB7",
    "\u0F5C"=>"\u0F5B\u0FB7",
    "\u0F69"=>"\u0F40\u0FB5",
    "\u0F73"=>"\u0F71\u0F72",
    "\u0F75"=>"\u0F71\u0F74",
    "\u0F76"=>"\u0FB2\u0F80",
    "\u0F78"=>"\u0FB3\u0F80",
    "\u0F81"=>"\u0F71\u0F80",
    "\u0F93"=>"\u0F92\u0FB7",
    "\u0F9D"=>"\u0F9C\u0FB7",
    "\u0FA2"=>"\u0FA1\u0FB7",
    "\u0FA7"=>"\u0FA6\u0FB7",
    "\u0FAC"=>"\u0FAB\u0FB7",
    "\u0FB9"=>"\u0F90\u0FB5",
    "\u1026"=>"\u1025\u102E",
    "\u1B06"=>"\u1B05\u1B35",
    "\u1B08"=>"\u1B07\u1B35",
    "\u1B0A"=>"\u1B09\u1B35",
    "\u1B0C"=>"\u1B0B\u1B35",
    "\u1B0E"=>"\u1B0D\u1B35",
    "\u1B12"=>"\u1B11\u1B35",
    "\u1B3B"=>"\u1B3A\u1B35",
    "\u1B3D"=>"\u1B3C\u1B35",
    "\u1B40"=>"\u1B3E\u1B35",
    "\u1B41"=>"\u1B3F\u1B35",
    "\u1B43"=>"\u1B42\u1B35",
    "\u1E00"=>"A\u0325",
    "\u1E01"=>"a\u0325",
    "\u1E02"=>"B\u0307",
    "\u1E03"=>"b\u0307",
    "\u1E04"=>"B\u0323",
    "\u1E05"=>"b\u0323",
    "\u1E06"=>"B\u0331",
    "\u1E07"=>"b\u0331",
    "\u1E08"=>"C\u0327\u0301",
    "\u1E09"=>"c\u0327\u0301",
    "\u1E0A"=>"D\u0307",
    "\u1E0B"=>"d\u0307",
    "\u1E0C"=>"D\u0323",
    "\u1E0D"=>"d\u0323",
    "\u1E0E"=>"D\u0331",
    "\u1E0F"=>"d\u0331",
    "\u1E10"=>"D\u0327",
    "\u1E11"=>"d\u0327",
    "\u1E12"=>"D\u032D",
    "\u1E13"=>"d\u032D",
    "\u1E14"=>"E\u0304\u0300",
    "\u1E15"=>"e\u0304\u0300",
    "\u1E16"=>"E\u0304\u0301",
    "\u1E17"=>"e\u0304\u0301",
    "\u1E18"=>"E\u032D",
    "\u1E19"=>"e\u032D",
    "\u1E1A"=>"E\u0330",
    "\u1E1B"=>"e\u0330",
    "\u1E1C"=>"E\u0327\u0306",
    "\u1E1D"=>"e\u0327\u0306",
    "\u1E1E"=>"F\u0307",
    "\u1E1F"=>"f\u0307",
    "\u1E20"=>"G\u0304",
    "\u1E21"=>"g\u0304",
    "\u1E22"=>"H\u0307",
    "\u1E23"=>"h\u0307",
    "\u1E24"=>"H\u0323",
    "\u1E25"=>"h\u0323",
    "\u1E26"=>"H\u0308",
    "\u1E27"=>"h\u0308",
    "\u1E28"=>"H\u0327",
    "\u1E29"=>"h\u0327",
    "\u1E2A"=>"H\u032E",
    "\u1E2B"=>"h\u032E",
    "\u1E2C"=>"I\u0330",
    "\u1E2D"=>"i\u0330",
    "\u1E2E"=>"I\u0308\u0301",
    "\u1E2F"=>"i\u0308\u0301",
    "\u1E30"=>"K\u0301",
    "\u1E31"=>"k\u0301",
    "\u1E32"=>"K\u0323",
    "\u1E33"=>"k\u0323",
    "\u1E34"=>"K\u0331",
    "\u1E35"=>"k\u0331",
    "\u1E36"=>"L\u0323",
    "\u1E37"=>"l\u0323",
    "\u1E38"=>"L\u0323\u0304",
    "\u1E39"=>"l\u0323\u0304",
    "\u1E3A"=>"L\u0331",
    "\u1E3B"=>"l\u0331",
    "\u1E3C"=>"L\u032D",
    "\u1E3D"=>"l\u032D",
    "\u1E3E"=>"M\u0301",
    "\u1E3F"=>"m\u0301",
    "\u1E40"=>"M\u0307",
    "\u1E41"=>"m\u0307",
    "\u1E42"=>"M\u0323",
    "\u1E43"=>"m\u0323",
    "\u1E44"=>"N\u0307",
    "\u1E45"=>"n\u0307",
    "\u1E46"=>"N\u0323",
    "\u1E47"=>"n\u0323",
    "\u1E48"=>"N\u0331",
    "\u1E49"=>"n\u0331",
    "\u1E4A"=>"N\u032D",
    "\u1E4B"=>"n\u032D",
    "\u1E4C"=>"O\u0303\u0301",
    "\u1E4D"=>"o\u0303\u0301",
    "\u1E4E"=>"O\u0303\u0308",
    "\u1E4F"=>"o\u0303\u0308",
    "\u1E50"=>"O\u0304\u0300",
    "\u1E51"=>"o\u0304\u0300",
    "\u1E52"=>"O\u0304\u0301",
    "\u1E53"=>"o\u0304\u0301",
    "\u1E54"=>"P\u0301",
    "\u1E55"=>"p\u0301",
    "\u1E56"=>"P\u0307",
    "\u1E57"=>"p\u0307",
    "\u1E58"=>"R\u0307",
    "\u1E59"=>"r\u0307",
    "\u1E5A"=>"R\u0323",
    "\u1E5B"=>"r\u0323",
    "\u1E5C"=>"R\u0323\u0304",
    "\u1E5D"=>"r\u0323\u0304",
    "\u1E5E"=>"R\u0331",
    "\u1E5F"=>"r\u0331",
    "\u1E60"=>"S\u0307",
    "\u1E61"=>"s\u0307",
    "\u1E62"=>"S\u0323",
    "\u1E63"=>"s\u0323",
    "\u1E64"=>"S\u0301\u0307",
    "\u1E65"=>"s\u0301\u0307",
    "\u1E66"=>"S\u030C\u0307",
    "\u1E67"=>"s\u030C\u0307",
    "\u1E68"=>"S\u0323\u0307",
    "\u1E69"=>"s\u0323\u0307",
    "\u1E6A"=>"T\u0307",
    "\u1E6B"=>"t\u0307",
    "\u1E6C"=>"T\u0323",
    "\u1E6D"=>"t\u0323",
    "\u1E6E"=>"T\u0331",
    "\u1E6F"=>"t\u0331",
    "\u1E70"=>"T\u032D",
    "\u1E71"=>"t\u032D",
    "\u1E72"=>"U\u0324",
    "\u1E73"=>"u\u0324",
    "\u1E74"=>"U\u0330",
    "\u1E75"=>"u\u0330",
    "\u1E76"=>"U\u032D",
    "\u1E77"=>"u\u032D",
    "\u1E78"=>"U\u0303\u0301",
    "\u1E79"=>"u\u0303\u0301",
    "\u1E7A"=>"U\u0304\u0308",
    "\u1E7B"=>"u\u0304\u0308",
    "\u1E7C"=>"V\u0303",
    "\u1E7D"=>"v\u0303",
    "\u1E7E"=>"V\u0323",
    "\u1E7F"=>"v\u0323",
    "\u1E80"=>"W\u0300",
    "\u1E81"=>"w\u0300",
    "\u1E82"=>"W\u0301",
    "\u1E83"=>"w\u0301",
    "\u1E84"=>"W\u0308",
    "\u1E85"=>"w\u0308",
    "\u1E86"=>"W\u0307",
    "\u1E87"=>"w\u0307",
    "\u1E88"=>"W\u0323",
    "\u1E89"=>"w\u0323",
    "\u1E8A"=>"X\u0307",
    "\u1E8B"=>"x\u0307",
    "\u1E8C"=>"X\u0308",
    "\u1E8D"=>"x\u0308",
    "\u1E8E"=>"Y\u0307",
    "\u1E8F"=>"y\u0307",
    "\u1E90"=>"Z\u0302",
    "\u1E91"=>"z\u0302",
    "\u1E92"=>"Z\u0323",
    "\u1E93"=>"z\u0323",
    "\u1E94"=>"Z\u0331",
    "\u1E95"=>"z\u0331",
    "\u1E96"=>"h\u0331",
    "\u1E97"=>"t\u0308",
    "\u1E98"=>"w\u030A",
    "\u1E99"=>"y\u030A",
    "\u1E9B"=>"\u017F\u0307",
    "\u1EA0"=>"A\u0323",
    "\u1EA1"=>"a\u0323",
    "\u1EA2"=>"A\u0309",
    "\u1EA3"=>"a\u0309",
    "\u1EA4"=>"A\u0302\u0301",
    "\u1EA5"=>"a\u0302\u0301",
    "\u1EA6"=>"A\u0302\u0300",
    "\u1EA7"=>"a\u0302\u0300",
    "\u1EA8"=>"A\u0302\u0309",
    "\u1EA9"=>"a\u0302\u0309",
    "\u1EAA"=>"A\u0302\u0303",
    "\u1EAB"=>"a\u0302\u0303",
    "\u1EAC"=>"A\u0323\u0302",
    "\u1EAD"=>"a\u0323\u0302",
    "\u1EAE"=>"A\u0306\u0301",
    "\u1EAF"=>"a\u0306\u0301",
    "\u1EB0"=>"A\u0306\u0300",
    "\u1EB1"=>"a\u0306\u0300",
    "\u1EB2"=>"A\u0306\u0309",
    "\u1EB3"=>"a\u0306\u0309",
    "\u1EB4"=>"A\u0306\u0303",
    "\u1EB5"=>"a\u0306\u0303",
    "\u1EB6"=>"A\u0323\u0306",
    "\u1EB7"=>"a\u0323\u0306",
    "\u1EB8"=>"E\u0323",
    "\u1EB9"=>"e\u0323",
    "\u1EBA"=>"E\u0309",
    "\u1EBB"=>"e\u0309",
    "\u1EBC"=>"E\u0303",
    "\u1EBD"=>"e\u0303",
    "\u1EBE"=>"E\u0302\u0301",
    "\u1EBF"=>"e\u0302\u0301",
    "\u1EC0"=>"E\u0302\u0300",
    "\u1EC1"=>"e\u0302\u0300",
    "\u1EC2"=>"E\u0302\u0309",
    "\u1EC3"=>"e\u0302\u0309",
    "\u1EC4"=>"E\u0302\u0303",
    "\u1EC5"=>"e\u0302\u0303",
    "\u1EC6"=>"E\u0323\u0302",
    "\u1EC7"=>"e\u0323\u0302",
    "\u1EC8"=>"I\u0309",
    "\u1EC9"=>"i\u0309",
    "\u1ECA"=>"I\u0323",
    "\u1ECB"=>"i\u0323",
    "\u1ECC"=>"O\u0323",
    "\u1ECD"=>"o\u0323",
    "\u1ECE"=>"O\u0309",
    "\u1ECF"=>"o\u0309",
    "\u1ED0"=>"O\u0302\u0301",
    "\u1ED1"=>"o\u0302\u0301",
    "\u1ED2"=>"O\u0302\u0300",
    "\u1ED3"=>"o\u0302\u0300",
    "\u1ED4"=>"O\u0302\u0309",
    "\u1ED5"=>"o\u0302\u0309",
    "\u1ED6"=>"O\u0302\u0303",
    "\u1ED7"=>"o\u0302\u0303",
    "\u1ED8"=>"O\u0323\u0302",
    "\u1ED9"=>"o\u0323\u0302",
    "\u1EDA"=>"O\u031B\u0301",
    "\u1EDB"=>"o\u031B\u0301",
    "\u1EDC"=>"O\u031B\u0300",
    "\u1EDD"=>"o\u031B\u0300",
    "\u1EDE"=>"O\u031B\u0309",
    "\u1EDF"=>"o\u031B\u0309",
    "\u1EE0"=>"O\u031B\u0303",
    "\u1EE1"=>"o\u031B\u0303",
    "\u1EE2"=>"O\u031B\u0323",
    "\u1EE3"=>"o\u031B\u0323",
    "\u1EE4"=>"U\u0323",
    "\u1EE5"=>"u\u0323",
    "\u1EE6"=>"U\u0309",
    "\u1EE7"=>"u\u0309",
    "\u1EE8"=>"U\u031B\u0301",
    "\u1EE9"=>"u\u031B\u0301",
    "\u1EEA"=>"U\u031B\u0300",
    "\u1EEB"=>"u\u031B\u0300",
    "\u1EEC"=>"U\u031B\u0309",
    "\u1EED"=>"u\u031B\u0309",
    "\u1EEE"=>"U\u031B\u0303",
    "\u1EEF"=>"u\u031B\u0303",
    "\u1EF0"=>"U\u031B\u0323",
    "\u1EF1"=>"u\u031B\u0323",
    "\u1EF2"=>"Y\u0300",
    "\u1EF3"=>"y\u0300",
    "\u1EF4"=>"Y\u0323",
    "\u1EF5"=>"y\u0323",
    "\u1EF6"=>"Y\u0309",
    "\u1EF7"=>"y\u0309",
    "\u1EF8"=>"Y\u0303",
    "\u1EF9"=>"y\u0303",
    "\u1F00"=>"\u03B1\u0313",
    "\u1F01"=>"\u03B1\u0314",
    "\u1F02"=>"\u03B1\u0313\u0300",
    "\u1F03"=>"\u03B1\u0314\u0300",
    "\u1F04"=>"\u03B1\u0313\u0301",
    "\u1F05"=>"\u03B1\u0314\u0301",
    "\u1F06"=>"\u03B1\u0313\u0342",
    "\u1F07"=>"\u03B1\u0314\u0342",
    "\u1F08"=>"\u0391\u0313",
    "\u1F09"=>"\u0391\u0314",
    "\u1F0A"=>"\u0391\u0313\u0300",
    "\u1F0B"=>"\u0391\u0314\u0300",
    "\u1F0C"=>"\u0391\u0313\u0301",
    "\u1F0D"=>"\u0391\u0314\u0301",
    "\u1F0E"=>"\u0391\u0313\u0342",
    "\u1F0F"=>"\u0391\u0314\u0342",
    "\u1F10"=>"\u03B5\u0313",
    "\u1F11"=>"\u03B5\u0314",
    "\u1F12"=>"\u03B5\u0313\u0300",
    "\u1F13"=>"\u03B5\u0314\u0300",
    "\u1F14"=>"\u03B5\u0313\u0301",
    "\u1F15"=>"\u03B5\u0314\u0301",
    "\u1F18"=>"\u0395\u0313",
    "\u1F19"=>"\u0395\u0314",
    "\u1F1A"=>"\u0395\u0313\u0300",
    "\u1F1B"=>"\u0395\u0314\u0300",
    "\u1F1C"=>"\u0395\u0313\u0301",
    "\u1F1D"=>"\u0395\u0314\u0301",
    "\u1F20"=>"\u03B7\u0313",
    "\u1F21"=>"\u03B7\u0314",
    "\u1F22"=>"\u03B7\u0313\u0300",
    "\u1F23"=>"\u03B7\u0314\u0300",
    "\u1F24"=>"\u03B7\u0313\u0301",
    "\u1F25"=>"\u03B7\u0314\u0301",
    "\u1F26"=>"\u03B7\u0313\u0342",
    "\u1F27"=>"\u03B7\u0314\u0342",
    "\u1F28"=>"\u0397\u0313",
    "\u1F29"=>"\u0397\u0314",
    "\u1F2A"=>"\u0397\u0313\u0300",
    "\u1F2B"=>"\u0397\u0314\u0300",
    "\u1F2C"=>"\u0397\u0313\u0301",
    "\u1F2D"=>"\u0397\u0314\u0301",
    "\u1F2E"=>"\u0397\u0313\u0342",
    "\u1F2F"=>"\u0397\u0314\u0342",
    "\u1F30"=>"\u03B9\u0313",
    "\u1F31"=>"\u03B9\u0314",
    "\u1F32"=>"\u03B9\u0313\u0300",
    "\u1F33"=>"\u03B9\u0314\u0300",
    "\u1F34"=>"\u03B9\u0313\u0301",
    "\u1F35"=>"\u03B9\u0314\u0301",
    "\u1F36"=>"\u03B9\u0313\u0342",
    "\u1F37"=>"\u03B9\u0314\u0342",
    "\u1F38"=>"\u0399\u0313",
    "\u1F39"=>"\u0399\u0314",
    "\u1F3A"=>"\u0399\u0313\u0300",
    "\u1F3B"=>"\u0399\u0314\u0300",
    "\u1F3C"=>"\u0399\u0313\u0301",
    "\u1F3D"=>"\u0399\u0314\u0301",
    "\u1F3E"=>"\u0399\u0313\u0342",
    "\u1F3F"=>"\u0399\u0314\u0342",
    "\u1F40"=>"\u03BF\u0313",
    "\u1F41"=>"\u03BF\u0314",
    "\u1F42"=>"\u03BF\u0313\u0300",
    "\u1F43"=>"\u03BF\u0314\u0300",
    "\u1F44"=>"\u03BF\u0313\u0301",
    "\u1F45"=>"\u03BF\u0314\u0301",
    "\u1F48"=>"\u039F\u0313",
    "\u1F49"=>"\u039F\u0314",
    "\u1F4A"=>"\u039F\u0313\u0300",
    "\u1F4B"=>"\u039F\u0314\u0300",
    "\u1F4C"=>"\u039F\u0313\u0301",
    "\u1F4D"=>"\u039F\u0314\u0301",
    "\u1F50"=>"\u03C5\u0313",
    "\u1F51"=>"\u03C5\u0314",
    "\u1F52"=>"\u03C5\u0313\u0300",
    "\u1F53"=>"\u03C5\u0314\u0300",
    "\u1F54"=>"\u03C5\u0313\u0301",
    "\u1F55"=>"\u03C5\u0314\u0301",
    "\u1F56"=>"\u03C5\u0313\u0342",
    "\u1F57"=>"\u03C5\u0314\u0342",
    "\u1F59"=>"\u03A5\u0314",
    "\u1F5B"=>"\u03A5\u0314\u0300",
    "\u1F5D"=>"\u03A5\u0314\u0301",
    "\u1F5F"=>"\u03A5\u0314\u0342",
    "\u1F60"=>"\u03C9\u0313",
    "\u1F61"=>"\u03C9\u0314",
    "\u1F62"=>"\u03C9\u0313\u0300",
    "\u1F63"=>"\u03C9\u0314\u0300",
    "\u1F64"=>"\u03C9\u0313\u0301",
    "\u1F65"=>"\u03C9\u0314\u0301",
    "\u1F66"=>"\u03C9\u0313\u0342",
    "\u1F67"=>"\u03C9\u0314\u0342",
    "\u1F68"=>"\u03A9\u0313",
    "\u1F69"=>"\u03A9\u0314",
    "\u1F6A"=>"\u03A9\u0313\u0300",
    "\u1F6B"=>"\u03A9\u0314\u0300",
    "\u1F6C"=>"\u03A9\u0313\u0301",
    "\u1F6D"=>"\u03A9\u0314\u0301",
    "\u1F6E"=>"\u03A9\u0313\u0342",
    "\u1F6F"=>"\u03A9\u0314\u0342",
    "\u1F70"=>"\u03B1\u0300",
    "\u1F71"=>"\u03B1\u0301",
    "\u1F72"=>"\u03B5\u0300",
    "\u1F73"=>"\u03B5\u0301",
    "\u1F74"=>"\u03B7\u0300",
    "\u1F75"=>"\u03B7\u0301",
    "\u1F76"=>"\u03B9\u0300",
    "\u1F77"=>"\u03B9\u0301",
    "\u1F78"=>"\u03BF\u0300",
    "\u1F79"=>"\u03BF\u0301",
    "\u1F7A"=>"\u03C5\u0300",
    "\u1F7B"=>"\u03C5\u0301",
    "\u1F7C"=>"\u03C9\u0300",
    "\u1F7D"=>"\u03C9\u0301",
    "\u1F80"=>"\u03B1\u0313\u0345",
    "\u1F81"=>"\u03B1\u0314\u0345",
    "\u1F82"=>"\u03B1\u0313\u0300\u0345",
    "\u1F83"=>"\u03B1\u0314\u0300\u0345",
    "\u1F84"=>"\u03B1\u0313\u0301\u0345",
    "\u1F85"=>"\u03B1\u0314\u0301\u0345",
    "\u1F86"=>"\u03B1\u0313\u0342\u0345",
    "\u1F87"=>"\u03B1\u0314\u0342\u0345",
    "\u1F88"=>"\u0391\u0313\u0345",
    "\u1F89"=>"\u0391\u0314\u0345",
    "\u1F8A"=>"\u0391\u0313\u0300\u0345",
    "\u1F8B"=>"\u0391\u0314\u0300\u0345",
    "\u1F8C"=>"\u0391\u0313\u0301\u0345",
    "\u1F8D"=>"\u0391\u0314\u0301\u0345",
    "\u1F8E"=>"\u0391\u0313\u0342\u0345",
    "\u1F8F"=>"\u0391\u0314\u0342\u0345",
    "\u1F90"=>"\u03B7\u0313\u0345",
    "\u1F91"=>"\u03B7\u0314\u0345",
    "\u1F92"=>"\u03B7\u0313\u0300\u0345",
    "\u1F93"=>"\u03B7\u0314\u0300\u0345",
    "\u1F94"=>"\u03B7\u0313\u0301\u0345",
    "\u1F95"=>"\u03B7\u0314\u0301\u0345",
    "\u1F96"=>"\u03B7\u0313\u0342\u0345",
    "\u1F97"=>"\u03B7\u0314\u0342\u0345",
    "\u1F98"=>"\u0397\u0313\u0345",
    "\u1F99"=>"\u0397\u0314\u0345",
    "\u1F9A"=>"\u0397\u0313\u0300\u0345",
    "\u1F9B"=>"\u0397\u0314\u0300\u0345",
    "\u1F9C"=>"\u0397\u0313\u0301\u0345",
    "\u1F9D"=>"\u0397\u0314\u0301\u0345",
    "\u1F9E"=>"\u0397\u0313\u0342\u0345",
    "\u1F9F"=>"\u0397\u0314\u0342\u0345",
    "\u1FA0"=>"\u03C9\u0313\u0345",
    "\u1FA1"=>"\u03C9\u0314\u0345",
    "\u1FA2"=>"\u03C9\u0313\u0300\u0345",
    "\u1FA3"=>"\u03C9\u0314\u0300\u0345",
    "\u1FA4"=>"\u03C9\u0313\u0301\u0345",
    "\u1FA5"=>"\u03C9\u0314\u0301\u0345",
    "\u1FA6"=>"\u03C9\u0313\u0342\u0345",
    "\u1FA7"=>"\u03C9\u0314\u0342\u0345",
    "\u1FA8"=>"\u03A9\u0313\u0345",
    "\u1FA9"=>"\u03A9\u0314\u0345",
    "\u1FAA"=>"\u03A9\u0313\u0300\u0345",
    "\u1FAB"=>"\u03A9\u0314\u0300\u0345",
    "\u1FAC"=>"\u03A9\u0313\u0301\u0345",
    "\u1FAD"=>"\u03A9\u0314\u0301\u0345",
    "\u1FAE"=>"\u03A9\u0313\u0342\u0345",
    "\u1FAF"=>"\u03A9\u0314\u0342\u0345",
    "\u1FB0"=>"\u03B1\u0306",
    "\u1FB1"=>"\u03B1\u0304",
    "\u1FB2"=>"\u03B1\u0300\u0345",
    "\u1FB3"=>"\u03B1\u0345",
    "\u1FB4"=>"\u03B1\u0301\u0345",
    "\u1FB6"=>"\u03B1\u0342",
    "\u1FB7"=>"\u03B1\u0342\u0345",
    "\u1FB8"=>"\u0391\u0306",
    "\u1FB9"=>"\u0391\u0304",
    "\u1FBA"=>"\u0391\u0300",
    "\u1FBB"=>"\u0391\u0301",
    "\u1FBC"=>"\u0391\u0345",
    "\u1FBE"=>"\u03B9",
    "\u1FC1"=>"\u00A8\u0342",
    "\u1FC2"=>"\u03B7\u0300\u0345",
    "\u1FC3"=>"\u03B7\u0345",
    "\u1FC4"=>"\u03B7\u0301\u0345",
    "\u1FC6"=>"\u03B7\u0342",
    "\u1FC7"=>"\u03B7\u0342\u0345",
    "\u1FC8"=>"\u0395\u0300",
    "\u1FC9"=>"\u0395\u0301",
    "\u1FCA"=>"\u0397\u0300",
    "\u1FCB"=>"\u0397\u0301",
    "\u1FCC"=>"\u0397\u0345",
    "\u1FCD"=>"\u1FBF\u0300",
    "\u1FCE"=>"\u1FBF\u0301",
    "\u1FCF"=>"\u1FBF\u0342",
    "\u1FD0"=>"\u03B9\u0306",
    "\u1FD1"=>"\u03B9\u0304",
    "\u1FD2"=>"\u03B9\u0308\u0300",
    "\u1FD3"=>"\u03B9\u0308\u0301",
    "\u1FD6"=>"\u03B9\u0342",
    "\u1FD7"=>"\u03B9\u0308\u0342",
    "\u1FD8"=>"\u0399\u0306",
    "\u1FD9"=>"\u0399\u0304",
    "\u1FDA"=>"\u0399\u0300",
    "\u1FDB"=>"\u0399\u0301",
    "\u1FDD"=>"\u1FFE\u0300",
    "\u1FDE"=>"\u1FFE\u0301",
    "\u1FDF"=>"\u1FFE\u0342",
    "\u1FE0"=>"\u03C5\u0306",
    "\u1FE1"=>"\u03C5\u0304",
    "\u1FE2"=>"\u03C5\u0308\u0300",
    "\u1FE3"=>"\u03C5\u0308\u0301",
    "\u1FE4"=>"\u03C1\u0313",
    "\u1FE5"=>"\u03C1\u0314",
    "\u1FE6"=>"\u03C5\u0342",
    "\u1FE7"=>"\u03C5\u0308\u0342",
    "\u1FE8"=>"\u03A5\u0306",
    "\u1FE9"=>"\u03A5\u0304",
    "\u1FEA"=>"\u03A5\u0300",
    "\u1FEB"=>"\u03A5\u0301",
    "\u1FEC"=>"\u03A1\u0314",
    "\u1FED"=>"\u00A8\u0300",
    "\u1FEE"=>"\u00A8\u0301",
    "\u1FEF"=>"`",
    "\u1FF2"=>"\u03C9\u0300\u0345",
    "\u1FF3"=>"\u03C9\u0345",
    "\u1FF4"=>"\u03C9\u0301\u0345",
    "\u1FF6"=>"\u03C9\u0342",
    "\u1FF7"=>"\u03C9\u0342\u0345",
    "\u1FF8"=>"\u039F\u0300",
    "\u1FF9"=>"\u039F\u0301",
    "\u1FFA"=>"\u03A9\u0300",
    "\u1FFB"=>"\u03A9\u0301",
    "\u1FFC"=>"\u03A9\u0345",
    "\u1FFD"=>"\u00B4",
    "\u2000"=>"\u2002",
    "\u2001"=>"\u2003",
    "\u2126"=>"\u03A9",
    "\u212A"=>"K",
    "\u212B"=>"A\u030A",
    "\u219A"=>"\u2190\u0338",
    "\u219B"=>"\u2192\u0338",
    "\u21AE"=>"\u2194\u0338",
    "\u21CD"=>"\u21D0\u0338",
    "\u21CE"=>"\u21D4\u0338",
    "\u21CF"=>"\u21D2\u0338",
    "\u2204"=>"\u2203\u0338",
    "\u2209"=>"\u2208\u0338",
    "\u220C"=>"\u220B\u0338",
    "\u2224"=>"\u2223\u0338",
    "\u2226"=>"\u2225\u0338",
    "\u2241"=>"\u223C\u0338",
    "\u2244"=>"\u2243\u0338",
    "\u2247"=>"\u2245\u0338",
    "\u2249"=>"\u2248\u0338",
    "\u2260"=>"=\u0338",
    "\u2262"=>"\u2261\u0338",
    "\u226D"=>"\u224D\u0338",
    "\u226E"=>"<\u0338",
    "\u226F"=>">\u0338",
    "\u2270"=>"\u2264\u0338",
    "\u2271"=>"\u2265\u0338",
    "\u2274"=>"\u2272\u0338",
    "\u2275"=>"\u2273\u0338",
    "\u2278"=>"\u2276\u0338",
    "\u2279"=>"\u2277\u0338",
    "\u2280"=>"\u227A\u0338",
    "\u2281"=>"\u227B\u0338",
    "\u2284"=>"\u2282\u0338",
    "\u2285"=>"\u2283\u0338",
    "\u2288"=>"\u2286\u0338",
    "\u2289"=>"\u2287\u0338",
    "\u22AC"=>"\u22A2\u0338",
    "\u22AD"=>"\u22A8\u0338",
    "\u22AE"=>"\u22A9\u0338",
    "\u22AF"=>"\u22AB\u0338",
    "\u22E0"=>"\u227C\u0338",
    "\u22E1"=>"\u227D\u0338",
    "\u22E2"=>"\u2291\u0338",
    "\u22E3"=>"\u2292\u0338",
    "\u22EA"=>"\u22B2\u0338",
    "\u22EB"=>"\u22B3\u0338",
    "\u22EC"=>"\u22B4\u0338",
    "\u22ED"=>"\u22B5\u0338",
    "\u2329"=>"\u3008",
    "\u232A"=>"\u3009",
    "\u2ADC"=>"\u2ADD\u0338",
    "\u304C"=>"\u304B\u3099",
    "\u304E"=>"\u304D\u3099",
    "\u3050"=>"\u304F\u3099",
    "\u3052"=>"\u3051\u3099",
    "\u3054"=>"\u3053\u3099",
    "\u3056"=>"\u3055\u3099",
    "\u3058"=>"\u3057\u3099",
    "\u305A"=>"\u3059\u3099",
    "\u305C"=>"\u305B\u3099",
    "\u305E"=>"\u305D\u3099",
    "\u3060"=>"\u305F\u3099",
    "\u3062"=>"\u3061\u3099",
    "\u3065"=>"\u3064\u3099",
    "\u3067"=>"\u3066\u3099",
    "\u3069"=>"\u3068\u3099",
    "\u3070"=>"\u306F\u3099",
    "\u3071"=>"\u306F\u309A",
    "\u3073"=>"\u3072\u3099",
    "\u3074"=>"\u3072\u309A",
    "\u3076"=>"\u3075\u3099",
    "\u3077"=>"\u3075\u309A",
    "\u3079"=>"\u3078\u3099",
    "\u307A"=>"\u3078\u309A",
    "\u307C"=>"\u307B\u3099",
    "\u307D"=>"\u307B\u309A",
    "\u3094"=>"\u3046\u3099",
    "\u309E"=>"\u309D\u3099",
    "\u30AC"=>"\u30AB\u3099",
    "\u30AE"=>"\u30AD\u3099",
    "\u30B0"=>"\u30AF\u3099",
    "\u30B2"=>"\u30B1\u3099",
    "\u30B4"=>"\u30B3\u3099",
    "\u30B6"=>"\u30B5\u3099",
    "\u30B8"=>"\u30B7\u3099",
    "\u30BA"=>"\u30B9\u3099",
    "\u30BC"=>"\u30BB\u3099",
    "\u30BE"=>"\u30BD\u3099",
    "\u30C0"=>"\u30BF\u3099",
    "\u30C2"=>"\u30C1\u3099",
    "\u30C5"=>"\u30C4\u3099",
    "\u30C7"=>"\u30C6\u3099",
    "\u30C9"=>"\u30C8\u3099",
    "\u30D0"=>"\u30CF\u3099",
    "\u30D1"=>"\u30CF\u309A",
    "\u30D3"=>"\u30D2\u3099",
    "\u30D4"=>"\u30D2\u309A",
    "\u30D6"=>"\u30D5\u3099",
    "\u30D7"=>"\u30D5\u309A",
    "\u30D9"=>"\u30D8\u3099",
    "\u30DA"=>"\u30D8\u309A",
    "\u30DC"=>"\u30DB\u3099",
    "\u30DD"=>"\u30DB\u309A",
    "\u30F4"=>"\u30A6\u3099",
    "\u30F7"=>"\u30EF\u3099",
    "\u30F8"=>"\u30F0\u3099",
    "\u30F9"=>"\u30F1\u3099",
    "\u30FA"=>"\u30F2\u3099",
    "\u30FE"=>"\u30FD\u3099",
    "\uF900"=>"\u8C48",
    "\uF901"=>"\u66F4",
    "\uF902"=>"\u8ECA",
    "\uF903"=>"\u8CC8",
    "\uF904"=>"\u6ED1",
    "\uF905"=>"\u4E32",
    "\uF906"=>"\u53E5",
    "\uF907"=>"\u9F9C",
    "\uF908"=>"\u9F9C",
    "\uF909"=>"\u5951",
    "\uF90A"=>"\u91D1",
    "\uF90B"=>"\u5587",
    "\uF90C"=>"\u5948",
    "\uF90D"=>"\u61F6",
    "\uF90E"=>"\u7669",
    "\uF90F"=>"\u7F85",
    "\uF910"=>"\u863F",
    "\uF911"=>"\u87BA",
    "\uF912"=>"\u88F8",
    "\uF913"=>"\u908F",
    "\uF914"=>"\u6A02",
    "\uF915"=>"\u6D1B",
    "\uF916"=>"\u70D9",
    "\uF917"=>"\u73DE",
    "\uF918"=>"\u843D",
    "\uF919"=>"\u916A",
    "\uF91A"=>"\u99F1",
    "\uF91B"=>"\u4E82",
    "\uF91C"=>"\u5375",
    "\uF91D"=>"\u6B04",
    "\uF91E"=>"\u721B",
    "\uF91F"=>"\u862D",
    "\uF920"=>"\u9E1E",
    "\uF921"=>"\u5D50",
    "\uF922"=>"\u6FEB",
    "\uF923"=>"\u85CD",
    "\uF924"=>"\u8964",
    "\uF925"=>"\u62C9",
    "\uF926"=>"\u81D8",
    "\uF927"=>"\u881F",
    "\uF928"=>"\u5ECA",
    "\uF929"=>"\u6717",
    "\uF92A"=>"\u6D6A",
    "\uF92B"=>"\u72FC",
    "\uF92C"=>"\u90CE",
    "\uF92D"=>"\u4F86",
    "\uF92E"=>"\u51B7",
    "\uF92F"=>"\u52DE",
    "\uF930"=>"\u64C4",
    "\uF931"=>"\u6AD3",
    "\uF932"=>"\u7210",
    "\uF933"=>"\u76E7",
    "\uF934"=>"\u8001",
    "\uF935"=>"\u8606",
    "\uF936"=>"\u865C",
    "\uF937"=>"\u8DEF",
    "\uF938"=>"\u9732",
    "\uF939"=>"\u9B6F",
    "\uF93A"=>"\u9DFA",
    "\uF93B"=>"\u788C",
    "\uF93C"=>"\u797F",
    "\uF93D"=>"\u7DA0",
    "\uF93E"=>"\u83C9",
    "\uF93F"=>"\u9304",
    "\uF940"=>"\u9E7F",
    "\uF941"=>"\u8AD6",
    "\uF942"=>"\u58DF",
    "\uF943"=>"\u5F04",
    "\uF944"=>"\u7C60",
    "\uF945"=>"\u807E",
    "\uF946"=>"\u7262",
    "\uF947"=>"\u78CA",
    "\uF948"=>"\u8CC2",
    "\uF949"=>"\u96F7",
    "\uF94A"=>"\u58D8",
    "\uF94B"=>"\u5C62",
    "\uF94C"=>"\u6A13",
    "\uF94D"=>"\u6DDA",
    "\uF94E"=>"\u6F0F",
    "\uF94F"=>"\u7D2F",
    "\uF950"=>"\u7E37",
    "\uF951"=>"\u964B",
    "\uF952"=>"\u52D2",
    "\uF953"=>"\u808B",
    "\uF954"=>"\u51DC",
    "\uF955"=>"\u51CC",
    "\uF956"=>"\u7A1C",
    "\uF957"=>"\u7DBE",
    "\uF958"=>"\u83F1",
    "\uF959"=>"\u9675",
    "\uF95A"=>"\u8B80",
    "\uF95B"=>"\u62CF",
    "\uF95C"=>"\u6A02",
    "\uF95D"=>"\u8AFE",
    "\uF95E"=>"\u4E39",
    "\uF95F"=>"\u5BE7",
    "\uF960"=>"\u6012",
    "\uF961"=>"\u7387",
    "\uF962"=>"\u7570",
    "\uF963"=>"\u5317",
    "\uF964"=>"\u78FB",
    "\uF965"=>"\u4FBF",
    "\uF966"=>"\u5FA9",
    "\uF967"=>"\u4E0D",
    "\uF968"=>"\u6CCC",
    "\uF969"=>"\u6578",
    "\uF96A"=>"\u7D22",
    "\uF96B"=>"\u53C3",
    "\uF96C"=>"\u585E",
    "\uF96D"=>"\u7701",
    "\uF96E"=>"\u8449",
    "\uF96F"=>"\u8AAA",
    "\uF970"=>"\u6BBA",
    "\uF971"=>"\u8FB0",
    "\uF972"=>"\u6C88",
    "\uF973"=>"\u62FE",
    "\uF974"=>"\u82E5",
    "\uF975"=>"\u63A0",
    "\uF976"=>"\u7565",
    "\uF977"=>"\u4EAE",
    "\uF978"=>"\u5169",
    "\uF979"=>"\u51C9",
    "\uF97A"=>"\u6881",
    "\uF97B"=>"\u7CE7",
    "\uF97C"=>"\u826F",
    "\uF97D"=>"\u8AD2",
    "\uF97E"=>"\u91CF",
    "\uF97F"=>"\u52F5",
    "\uF980"=>"\u5442",
    "\uF981"=>"\u5973",
    "\uF982"=>"\u5EEC",
    "\uF983"=>"\u65C5",
    "\uF984"=>"\u6FFE",
    "\uF985"=>"\u792A",
    "\uF986"=>"\u95AD",
    "\uF987"=>"\u9A6A",
    "\uF988"=>"\u9E97",
    "\uF989"=>"\u9ECE",
    "\uF98A"=>"\u529B",
    "\uF98B"=>"\u66C6",
    "\uF98C"=>"\u6B77",
    "\uF98D"=>"\u8F62",
    "\uF98E"=>"\u5E74",
    "\uF98F"=>"\u6190",
    "\uF990"=>"\u6200",
    "\uF991"=>"\u649A",
    "\uF992"=>"\u6F23",
    "\uF993"=>"\u7149",
    "\uF994"=>"\u7489",
    "\uF995"=>"\u79CA",
    "\uF996"=>"\u7DF4",
    "\uF997"=>"\u806F",
    "\uF998"=>"\u8F26",
    "\uF999"=>"\u84EE",
    "\uF99A"=>"\u9023",
    "\uF99B"=>"\u934A",
    "\uF99C"=>"\u5217",
    "\uF99D"=>"\u52A3",
    "\uF99E"=>"\u54BD",
    "\uF99F"=>"\u70C8",
    "\uF9A0"=>"\u88C2",
    "\uF9A1"=>"\u8AAA",
    "\uF9A2"=>"\u5EC9",
    "\uF9A3"=>"\u5FF5",
    "\uF9A4"=>"\u637B",
    "\uF9A5"=>"\u6BAE",
    "\uF9A6"=>"\u7C3E",
    "\uF9A7"=>"\u7375",
    "\uF9A8"=>"\u4EE4",
    "\uF9A9"=>"\u56F9",
    "\uF9AA"=>"\u5BE7",
    "\uF9AB"=>"\u5DBA",
    "\uF9AC"=>"\u601C",
    "\uF9AD"=>"\u73B2",
    "\uF9AE"=>"\u7469",
    "\uF9AF"=>"\u7F9A",
    "\uF9B0"=>"\u8046",
    "\uF9B1"=>"\u9234",
    "\uF9B2"=>"\u96F6",
    "\uF9B3"=>"\u9748",
    "\uF9B4"=>"\u9818",
    "\uF9B5"=>"\u4F8B",
    "\uF9B6"=>"\u79AE",
    "\uF9B7"=>"\u91B4",
    "\uF9B8"=>"\u96B8",
    "\uF9B9"=>"\u60E1",
    "\uF9BA"=>"\u4E86",
    "\uF9BB"=>"\u50DA",
    "\uF9BC"=>"\u5BEE",
    "\uF9BD"=>"\u5C3F",
    "\uF9BE"=>"\u6599",
    "\uF9BF"=>"\u6A02",
    "\uF9C0"=>"\u71CE",
    "\uF9C1"=>"\u7642",
    "\uF9C2"=>"\u84FC",
    "\uF9C3"=>"\u907C",
    "\uF9C4"=>"\u9F8D",
    "\uF9C5"=>"\u6688",
    "\uF9C6"=>"\u962E",
    "\uF9C7"=>"\u5289",
    "\uF9C8"=>"\u677B",
    "\uF9C9"=>"\u67F3",
    "\uF9CA"=>"\u6D41",
    "\uF9CB"=>"\u6E9C",
    "\uF9CC"=>"\u7409",
    "\uF9CD"=>"\u7559",
    "\uF9CE"=>"\u786B",
    "\uF9CF"=>"\u7D10",
    "\uF9D0"=>"\u985E",
    "\uF9D1"=>"\u516D",
    "\uF9D2"=>"\u622E",
    "\uF9D3"=>"\u9678",
    "\uF9D4"=>"\u502B",
    "\uF9D5"=>"\u5D19",
    "\uF9D6"=>"\u6DEA",
    "\uF9D7"=>"\u8F2A",
    "\uF9D8"=>"\u5F8B",
    "\uF9D9"=>"\u6144",
    "\uF9DA"=>"\u6817",
    "\uF9DB"=>"\u7387",
    "\uF9DC"=>"\u9686",
    "\uF9DD"=>"\u5229",
    "\uF9DE"=>"\u540F",
    "\uF9DF"=>"\u5C65",
    "\uF9E0"=>"\u6613",
    "\uF9E1"=>"\u674E",
    "\uF9E2"=>"\u68A8",
    "\uF9E3"=>"\u6CE5",
    "\uF9E4"=>"\u7406",
    "\uF9E5"=>"\u75E2",
    "\uF9E6"=>"\u7F79",
    "\uF9E7"=>"\u88CF",
    "\uF9E8"=>"\u88E1",
    "\uF9E9"=>"\u91CC",
    "\uF9EA"=>"\u96E2",
    "\uF9EB"=>"\u533F",
    "\uF9EC"=>"\u6EBA",
    "\uF9ED"=>"\u541D",
    "\uF9EE"=>"\u71D0",
    "\uF9EF"=>"\u7498",
    "\uF9F0"=>"\u85FA",
    "\uF9F1"=>"\u96A3",
    "\uF9F2"=>"\u9C57",
    "\uF9F3"=>"\u9E9F",
    "\uF9F4"=>"\u6797",
    "\uF9F5"=>"\u6DCB",
    "\uF9F6"=>"\u81E8",
    "\uF9F7"=>"\u7ACB",
    "\uF9F8"=>"\u7B20",
    "\uF9F9"=>"\u7C92",
    "\uF9FA"=>"\u72C0",
    "\uF9FB"=>"\u7099",
    "\uF9FC"=>"\u8B58",
    "\uF9FD"=>"\u4EC0",
    "\uF9FE"=>"\u8336",
    "\uF9FF"=>"\u523A",
    "\uFA00"=>"\u5207",
    "\uFA01"=>"\u5EA6",
    "\uFA02"=>"\u62D3",
    "\uFA03"=>"\u7CD6",
    "\uFA04"=>"\u5B85",
    "\uFA05"=>"\u6D1E",
    "\uFA06"=>"\u66B4",
    "\uFA07"=>"\u8F3B",
    "\uFA08"=>"\u884C",
    "\uFA09"=>"\u964D",
    "\uFA0A"=>"\u898B",
    "\uFA0B"=>"\u5ED3",
    "\uFA0C"=>"\u5140",
    "\uFA0D"=>"\u55C0",
    "\uFA10"=>"\u585A",
    "\uFA12"=>"\u6674",
    "\uFA15"=>"\u51DE",
    "\uFA16"=>"\u732A",
    "\uFA17"=>"\u76CA",
    "\uFA18"=>"\u793C",
    "\uFA19"=>"\u795E",
    "\uFA1A"=>"\u7965",
    "\uFA1B"=>"\u798F",
    "\uFA1C"=>"\u9756",
    "\uFA1D"=>"\u7CBE",
    "\uFA1E"=>"\u7FBD",
    "\uFA20"=>"\u8612",
    "\uFA22"=>"\u8AF8",
    "\uFA25"=>"\u9038",
    "\uFA26"=>"\u90FD",
    "\uFA2A"=>"\u98EF",
    "\uFA2B"=>"\u98FC",
    "\uFA2C"=>"\u9928",
    "\uFA2D"=>"\u9DB4",
    "\uFA2E"=>"\u90DE",
    "\uFA2F"=>"\u96B7",
    "\uFA30"=>"\u4FAE",
    "\uFA31"=>"\u50E7",
    "\uFA32"=>"\u514D",
    "\uFA33"=>"\u52C9",
    "\uFA34"=>"\u52E4",
    "\uFA35"=>"\u5351",
    "\uFA36"=>"\u559D",
    "\uFA37"=>"\u5606",
    "\uFA38"=>"\u5668",
    "\uFA39"=>"\u5840",
    "\uFA3A"=>"\u58A8",
    "\uFA3B"=>"\u5C64",
    "\uFA3C"=>"\u5C6E",
    "\uFA3D"=>"\u6094",
    "\uFA3E"=>"\u6168",
    "\uFA3F"=>"\u618E",
    "\uFA40"=>"\u61F2",
    "\uFA41"=>"\u654F",
    "\uFA42"=>"\u65E2",
    "\uFA43"=>"\u6691",
    "\uFA44"=>"\u6885",
    "\uFA45"=>"\u6D77",
    "\uFA46"=>"\u6E1A",
    "\uFA47"=>"\u6F22",
    "\uFA48"=>"\u716E",
    "\uFA49"=>"\u722B",
    "\uFA4A"=>"\u7422",
    "\uFA4B"=>"\u7891",
    "\uFA4C"=>"\u793E",
    "\uFA4D"=>"\u7949",
    "\uFA4E"=>"\u7948",
    "\uFA4F"=>"\u7950",
    "\uFA50"=>"\u7956",
    "\uFA51"=>"\u795D",
    "\uFA52"=>"\u798D",
    "\uFA53"=>"\u798E",
    "\uFA54"=>"\u7A40",
    "\uFA55"=>"\u7A81",
    "\uFA56"=>"\u7BC0",
    "\uFA57"=>"\u7DF4",
    "\uFA58"=>"\u7E09",
    "\uFA59"=>"\u7E41",
    "\uFA5A"=>"\u7F72",
    "\uFA5B"=>"\u8005",
    "\uFA5C"=>"\u81ED",
    "\uFA5D"=>"\u8279",
    "\uFA5E"=>"\u8279",
    "\uFA5F"=>"\u8457",
    "\uFA60"=>"\u8910",
    "\uFA61"=>"\u8996",
    "\uFA62"=>"\u8B01",
    "\uFA63"=>"\u8B39",
    "\uFA64"=>"\u8CD3",
    "\uFA65"=>"\u8D08",
    "\uFA66"=>"\u8FB6",
    "\uFA67"=>"\u9038",
    "\uFA68"=>"\u96E3",
    "\uFA69"=>"\u97FF",
    "\uFA6A"=>"\u983B",
    "\uFA6B"=>"\u6075",
    "\uFA6C"=>"\u{242EE}",
    "\uFA6D"=>"\u8218",
    "\uFA70"=>"\u4E26",
    "\uFA71"=>"\u51B5",
    "\uFA72"=>"\u5168",
    "\uFA73"=>"\u4F80",
    "\uFA74"=>"\u5145",
    "\uFA75"=>"\u5180",
    "\uFA76"=>"\u52C7",
    "\uFA77"=>"\u52FA",
    "\uFA78"=>"\u559D",
    "\uFA79"=>"\u5555",
    "\uFA7A"=>"\u5599",
    "\uFA7B"=>"\u55E2",
    "\uFA7C"=>"\u585A",
    "\uFA7D"=>"\u58B3",
    "\uFA7E"=>"\u5944",
    "\uFA7F"=>"\u5954",
    "\uFA80"=>"\u5A62",
    "\uFA81"=>"\u5B28",
    "\uFA82"=>"\u5ED2",
    "\uFA83"=>"\u5ED9",
    "\uFA84"=>"\u5F69",
    "\uFA85"=>"\u5FAD",
    "\uFA86"=>"\u60D8",
    "\uFA87"=>"\u614E",
    "\uFA88"=>"\u6108",
    "\uFA89"=>"\u618E",
    "\uFA8A"=>"\u6160",
    "\uFA8B"=>"\u61F2",
    "\uFA8C"=>"\u6234",
    "\uFA8D"=>"\u63C4",
    "\uFA8E"=>"\u641C",
    "\uFA8F"=>"\u6452",
    "\uFA90"=>"\u6556",
    "\uFA91"=>"\u6674",
    "\uFA92"=>"\u6717",
    "\uFA93"=>"\u671B",
    "\uFA94"=>"\u6756",
    "\uFA95"=>"\u6B79",
    "\uFA96"=>"\u6BBA",
    "\uFA97"=>"\u6D41",
    "\uFA98"=>"\u6EDB",
    "\uFA99"=>"\u6ECB",
    "\uFA9A"=>"\u6F22",
    "\uFA9B"=>"\u701E",
    "\uFA9C"=>"\u716E",
    "\uFA9D"=>"\u77A7",
    "\uFA9E"=>"\u7235",
    "\uFA9F"=>"\u72AF",
    "\uFAA0"=>"\u732A",
    "\uFAA1"=>"\u7471",
    "\uFAA2"=>"\u7506",
    "\uFAA3"=>"\u753B",
    "\uFAA4"=>"\u761D",
    "\uFAA5"=>"\u761F",
    "\uFAA6"=>"\u76CA",
    "\uFAA7"=>"\u76DB",
    "\uFAA8"=>"\u76F4",
    "\uFAA9"=>"\u774A",
    "\uFAAA"=>"\u7740",
    "\uFAAB"=>"\u78CC",
    "\uFAAC"=>"\u7AB1",
    "\uFAAD"=>"\u7BC0",
    "\uFAAE"=>"\u7C7B",
    "\uFAAF"=>"\u7D5B",
    "\uFAB0"=>"\u7DF4",
    "\uFAB1"=>"\u7F3E",
    "\uFAB2"=>"\u8005",
    "\uFAB3"=>"\u8352",
    "\uFAB4"=>"\u83EF",
    "\uFAB5"=>"\u8779",
    "\uFAB6"=>"\u8941",
    "\uFAB7"=>"\u8986",
    "\uFAB8"=>"\u8996",
    "\uFAB9"=>"\u8ABF",
    "\uFABA"=>"\u8AF8",
    "\uFABB"=>"\u8ACB",
    "\uFABC"=>"\u8B01",
    "\uFABD"=>"\u8AFE",
    "\uFABE"=>"\u8AED",
    "\uFABF"=>"\u8B39",
    "\uFAC0"=>"\u8B8A",
    "\uFAC1"=>"\u8D08",
    "\uFAC2"=>"\u8F38",
    "\uFAC3"=>"\u9072",
    "\uFAC4"=>"\u9199",
    "\uFAC5"=>"\u9276",
    "\uFAC6"=>"\u967C",
    "\uFAC7"=>"\u96E3",
    "\uFAC8"=>"\u9756",
    "\uFAC9"=>"\u97DB",
    "\uFACA"=>"\u97FF",
    "\uFACB"=>"\u980B",
    "\uFACC"=>"\u983B",
    "\uFACD"=>"\u9B12",
    "\uFACE"=>"\u9F9C",
    "\uFACF"=>"\u{2284A}",
    "\uFAD0"=>"\u{22844}",
    "\uFAD1"=>"\u{233D5}",
    "\uFAD2"=>"\u3B9D",
    "\uFAD3"=>"\u4018",
    "\uFAD4"=>"\u4039",
    "\uFAD5"=>"\u{25249}",
    "\uFAD6"=>"\u{25CD0}",
    "\uFAD7"=>"\u{27ED3}",
    "\uFAD8"=>"\u9F43",
    "\uFAD9"=>"\u9F8E",
    "\uFB1D"=>"\u05D9\u05B4",
    "\uFB1F"=>"\u05F2\u05B7",
    "\uFB2A"=>"\u05E9\u05C1",
    "\uFB2B"=>"\u05E9\u05C2",
    "\uFB2C"=>"\u05E9\u05BC\u05C1",
    "\uFB2D"=>"\u05E9\u05BC\u05C2",
    "\uFB2E"=>"\u05D0\u05B7",
    "\uFB2F"=>"\u05D0\u05B8",
    "\uFB30"=>"\u05D0\u05BC",
    "\uFB31"=>"\u05D1\u05BC",
    "\uFB32"=>"\u05D2\u05BC",
    "\uFB33"=>"\u05D3\u05BC",
    "\uFB34"=>"\u05D4\u05BC",
    "\uFB35"=>"\u05D5\u05BC",
    "\uFB36"=>"\u05D6\u05BC",
    "\uFB38"=>"\u05D8\u05BC",
    "\uFB39"=>"\u05D9\u05BC",
    "\uFB3A"=>"\u05DA\u05BC",
    "\uFB3B"=>"\u05DB\u05BC",
    "\uFB3C"=>"\u05DC\u05BC",
    "\uFB3E"=>"\u05DE\u05BC",
    "\uFB40"=>"\u05E0\u05BC",
    "\uFB41"=>"\u05E1\u05BC",
    "\uFB43"=>"\u05E3\u05BC",
    "\uFB44"=>"\u05E4\u05BC",
    "\uFB46"=>"\u05E6\u05BC",
    "\uFB47"=>"\u05E7\u05BC",
    "\uFB48"=>"\u05E8\u05BC",
    "\uFB49"=>"\u05E9\u05BC",
    "\uFB4A"=>"\u05EA\u05BC",
    "\uFB4B"=>"\u05D5\u05B9",
    "\uFB4C"=>"\u05D1\u05BF",
    "\uFB4D"=>"\u05DB\u05BF",
    "\uFB4E"=>"\u05E4\u05BF",
    "\u{1109A}"=>"\u{11099}\u{110BA}",
    "\u{1109C}"=>"\u{1109B}\u{110BA}",
    "\u{110AB}"=>"\u{110A5}\u{110BA}",
    "\u{1112E}"=>"\u{11131}\u{11127}",
    "\u{1112F}"=>"\u{11132}\u{11127}",
    "\u{1134B}"=>"\u{11347}\u{1133E}",
    "\u{1134C}"=>"\u{11347}\u{11357}",
    "\u{114BB}"=>"\u{114B9}\u{114BA}",
    "\u{114BC}"=>"\u{114B9}\u{114B0}",
    "\u{114BE}"=>"\u{114B9}\u{114BD}",
    "\u{115BA}"=>"\u{115B8}\u{115AF}",
    "\u{115BB}"=>"\u{115B9}\u{115AF}",
    "\u{1D15E}"=>"\u{1D157}\u{1D165}",
    "\u{1D15F}"=>"\u{1D158}\u{1D165}",
    "\u{1D160}"=>"\u{1D158}\u{1D165}\u{1D16E}",
    "\u{1D161}"=>"\u{1D158}\u{1D165}\u{1D16F}",
    "\u{1D162}"=>"\u{1D158}\u{1D165}\u{1D170}",
    "\u{1D163}"=>"\u{1D158}\u{1D165}\u{1D171}",
    "\u{1D164}"=>"\u{1D158}\u{1D165}\u{1D172}",
    "\u{1D1BB}"=>"\u{1D1B9}\u{1D165}",
    "\u{1D1BC}"=>"\u{1D1BA}\u{1D165}",
    "\u{1D1BD}"=>"\u{1D1B9}\u{1D165}\u{1D16E}",
    "\u{1D1BE}"=>"\u{1D1BA}\u{1D165}\u{1D16E}",
    "\u{1D1BF}"=>"\u{1D1B9}\u{1D165}\u{1D16F}",
    "\u{1D1C0}"=>"\u{1D1BA}\u{1D165}\u{1D16F}",
    "\u{2F800}"=>"\u4E3D",
    "\u{2F801}"=>"\u4E38",
    "\u{2F802}"=>"\u4E41",
    "\u{2F803}"=>"\u{20122}",
    "\u{2F804}"=>"\u4F60",
    "\u{2F805}"=>"\u4FAE",
    "\u{2F806}"=>"\u4FBB",
    "\u{2F807}"=>"\u5002",
    "\u{2F808}"=>"\u507A",
    "\u{2F809}"=>"\u5099",
    "\u{2F80A}"=>"\u50E7",
    "\u{2F80B}"=>"\u50CF",
    "\u{2F80C}"=>"\u349E",
    "\u{2F80D}"=>"\u{2063A}",
    "\u{2F80E}"=>"\u514D",
    "\u{2F80F}"=>"\u5154",
    "\u{2F810}"=>"\u5164",
    "\u{2F811}"=>"\u5177",
    "\u{2F812}"=>"\u{2051C}",
    "\u{2F813}"=>"\u34B9",
    "\u{2F814}"=>"\u5167",
    "\u{2F815}"=>"\u518D",
    "\u{2F816}"=>"\u{2054B}",
    "\u{2F817}"=>"\u5197",
    "\u{2F818}"=>"\u51A4",
    "\u{2F819}"=>"\u4ECC",
    "\u{2F81A}"=>"\u51AC",
    "\u{2F81B}"=>"\u51B5",
    "\u{2F81C}"=>"\u{291DF}",
    "\u{2F81D}"=>"\u51F5",
    "\u{2F81E}"=>"\u5203",
    "\u{2F81F}"=>"\u34DF",
    "\u{2F820}"=>"\u523B",
    "\u{2F821}"=>"\u5246",
    "\u{2F822}"=>"\u5272",
    "\u{2F823}"=>"\u5277",
    "\u{2F824}"=>"\u3515",
    "\u{2F825}"=>"\u52C7",
    "\u{2F826}"=>"\u52C9",
    "\u{2F827}"=>"\u52E4",
    "\u{2F828}"=>"\u52FA",
    "\u{2F829}"=>"\u5305",
    "\u{2F82A}"=>"\u5306",
    "\u{2F82B}"=>"\u5317",
    "\u{2F82C}"=>"\u5349",
    "\u{2F82D}"=>"\u5351",
    "\u{2F82E}"=>"\u535A",
    "\u{2F82F}"=>"\u5373",
    "\u{2F830}"=>"\u537D",
    "\u{2F831}"=>"\u537F",
    "\u{2F832}"=>"\u537F",
    "\u{2F833}"=>"\u537F",
    "\u{2F834}"=>"\u{20A2C}",
    "\u{2F835}"=>"\u7070",
    "\u{2F836}"=>"\u53CA",
    "\u{2F837}"=>"\u53DF",
    "\u{2F838}"=>"\u{20B63}",
    "\u{2F839}"=>"\u53EB",
    "\u{2F83A}"=>"\u53F1",
    "\u{2F83B}"=>"\u5406",
    "\u{2F83C}"=>"\u549E",
    "\u{2F83D}"=>"\u5438",
    "\u{2F83E}"=>"\u5448",
    "\u{2F83F}"=>"\u5468",
    "\u{2F840}"=>"\u54A2",
    "\u{2F841}"=>"\u54F6",
    "\u{2F842}"=>"\u5510",
    "\u{2F843}"=>"\u5553",
    "\u{2F844}"=>"\u5563",
    "\u{2F845}"=>"\u5584",
    "\u{2F846}"=>"\u5584",
    "\u{2F847}"=>"\u5599",
    "\u{2F848}"=>"\u55AB",
    "\u{2F849}"=>"\u55B3",
    "\u{2F84A}"=>"\u55C2",
    "\u{2F84B}"=>"\u5716",
    "\u{2F84C}"=>"\u5606",
    "\u{2F84D}"=>"\u5717",
    "\u{2F84E}"=>"\u5651",
    "\u{2F84F}"=>"\u5674",
    "\u{2F850}"=>"\u5207",
    "\u{2F851}"=>"\u58EE",
    "\u{2F852}"=>"\u57CE",
    "\u{2F853}"=>"\u57F4",
    "\u{2F854}"=>"\u580D",
    "\u{2F855}"=>"\u578B",
    "\u{2F856}"=>"\u5832",
    "\u{2F857}"=>"\u5831",
    "\u{2F858}"=>"\u58AC",
    "\u{2F859}"=>"\u{214E4}",
    "\u{2F85A}"=>"\u58F2",
    "\u{2F85B}"=>"\u58F7",
    "\u{2F85C}"=>"\u5906",
    "\u{2F85D}"=>"\u591A",
    "\u{2F85E}"=>"\u5922",
    "\u{2F85F}"=>"\u5962",
    "\u{2F860}"=>"\u{216A8}",
    "\u{2F861}"=>"\u{216EA}",
    "\u{2F862}"=>"\u59EC",
    "\u{2F863}"=>"\u5A1B",
    "\u{2F864}"=>"\u5A27",
    "\u{2F865}"=>"\u59D8",
    "\u{2F866}"=>"\u5A66",
    "\u{2F867}"=>"\u36EE",
    "\u{2F868}"=>"\u36FC",
    "\u{2F869}"=>"\u5B08",
    "\u{2F86A}"=>"\u5B3E",
    "\u{2F86B}"=>"\u5B3E",
    "\u{2F86C}"=>"\u{219C8}",
    "\u{2F86D}"=>"\u5BC3",
    "\u{2F86E}"=>"\u5BD8",
    "\u{2F86F}"=>"\u5BE7",
    "\u{2F870}"=>"\u5BF3",
    "\u{2F871}"=>"\u{21B18}",
    "\u{2F872}"=>"\u5BFF",
    "\u{2F873}"=>"\u5C06",
    "\u{2F874}"=>"\u5F53",
    "\u{2F875}"=>"\u5C22",
    "\u{2F876}"=>"\u3781",
    "\u{2F877}"=>"\u5C60",
    "\u{2F878}"=>"\u5C6E",
    "\u{2F879}"=>"\u5CC0",
    "\u{2F87A}"=>"\u5C8D",
    "\u{2F87B}"=>"\u{21DE4}",
    "\u{2F87C}"=>"\u5D43",
    "\u{2F87D}"=>"\u{21DE6}",
    "\u{2F87E}"=>"\u5D6E",
    "\u{2F87F}"=>"\u5D6B",
    "\u{2F880}"=>"\u5D7C",
    "\u{2F881}"=>"\u5DE1",
    "\u{2F882}"=>"\u5DE2",
    "\u{2F883}"=>"\u382F",
    "\u{2F884}"=>"\u5DFD",
    "\u{2F885}"=>"\u5E28",
    "\u{2F886}"=>"\u5E3D",
    "\u{2F887}"=>"\u5E69",
    "\u{2F888}"=>"\u3862",
    "\u{2F889}"=>"\u{22183}",
    "\u{2F88A}"=>"\u387C",
    "\u{2F88B}"=>"\u5EB0",
    "\u{2F88C}"=>"\u5EB3",
    "\u{2F88D}"=>"\u5EB6",
    "\u{2F88E}"=>"\u5ECA",
    "\u{2F88F}"=>"\u{2A392}",
    "\u{2F890}"=>"\u5EFE",
    "\u{2F891}"=>"\u{22331}",
    "\u{2F892}"=>"\u{22331}",
    "\u{2F893}"=>"\u8201",
    "\u{2F894}"=>"\u5F22",
    "\u{2F895}"=>"\u5F22",
    "\u{2F896}"=>"\u38C7",
    "\u{2F897}"=>"\u{232B8}",
    "\u{2F898}"=>"\u{261DA}",
    "\u{2F899}"=>"\u5F62",
    "\u{2F89A}"=>"\u5F6B",
    "\u{2F89B}"=>"\u38E3",
    "\u{2F89C}"=>"\u5F9A",
    "\u{2F89D}"=>"\u5FCD",
    "\u{2F89E}"=>"\u5FD7",
    "\u{2F89F}"=>"\u5FF9",
    "\u{2F8A0}"=>"\u6081",
    "\u{2F8A1}"=>"\u393A",
    "\u{2F8A2}"=>"\u391C",
    "\u{2F8A3}"=>"\u6094",
    "\u{2F8A4}"=>"\u{226D4}",
    "\u{2F8A5}"=>"\u60C7",
    "\u{2F8A6}"=>"\u6148",
    "\u{2F8A7}"=>"\u614C",
    "\u{2F8A8}"=>"\u614E",
    "\u{2F8A9}"=>"\u614C",
    "\u{2F8AA}"=>"\u617A",
    "\u{2F8AB}"=>"\u618E",
    "\u{2F8AC}"=>"\u61B2",
    "\u{2F8AD}"=>"\u61A4",
    "\u{2F8AE}"=>"\u61AF",
    "\u{2F8AF}"=>"\u61DE",
    "\u{2F8B0}"=>"\u61F2",
    "\u{2F8B1}"=>"\u61F6",
    "\u{2F8B2}"=>"\u6210",
    "\u{2F8B3}"=>"\u621B",
    "\u{2F8B4}"=>"\u625D",
    "\u{2F8B5}"=>"\u62B1",
    "\u{2F8B6}"=>"\u62D4",
    "\u{2F8B7}"=>"\u6350",
    "\u{2F8B8}"=>"\u{22B0C}",
    "\u{2F8B9}"=>"\u633D",
    "\u{2F8BA}"=>"\u62FC",
    "\u{2F8BB}"=>"\u6368",
    "\u{2F8BC}"=>"\u6383",
    "\u{2F8BD}"=>"\u63E4",
    "\u{2F8BE}"=>"\u{22BF1}",
    "\u{2F8BF}"=>"\u6422",
    "\u{2F8C0}"=>"\u63C5",
    "\u{2F8C1}"=>"\u63A9",
    "\u{2F8C2}"=>"\u3A2E",
    "\u{2F8C3}"=>"\u6469",
    "\u{2F8C4}"=>"\u647E",
    "\u{2F8C5}"=>"\u649D",
    "\u{2F8C6}"=>"\u6477",
    "\u{2F8C7}"=>"\u3A6C",
    "\u{2F8C8}"=>"\u654F",
    "\u{2F8C9}"=>"\u656C",
    "\u{2F8CA}"=>"\u{2300A}",
    "\u{2F8CB}"=>"\u65E3",
    "\u{2F8CC}"=>"\u66F8",
    "\u{2F8CD}"=>"\u6649",
    "\u{2F8CE}"=>"\u3B19",
    "\u{2F8CF}"=>"\u6691",
    "\u{2F8D0}"=>"\u3B08",
    "\u{2F8D1}"=>"\u3AE4",
    "\u{2F8D2}"=>"\u5192",
    "\u{2F8D3}"=>"\u5195",
    "\u{2F8D4}"=>"\u6700",
    "\u{2F8D5}"=>"\u669C",
    "\u{2F8D6}"=>"\u80AD",
    "\u{2F8D7}"=>"\u43D9",
    "\u{2F8D8}"=>"\u6717",
    "\u{2F8D9}"=>"\u671B",
    "\u{2F8DA}"=>"\u6721",
    "\u{2F8DB}"=>"\u675E",
    "\u{2F8DC}"=>"\u6753",
    "\u{2F8DD}"=>"\u{233C3}",
    "\u{2F8DE}"=>"\u3B49",
    "\u{2F8DF}"=>"\u67FA",
    "\u{2F8E0}"=>"\u6785",
    "\u{2F8E1}"=>"\u6852",
    "\u{2F8E2}"=>"\u6885",
    "\u{2F8E3}"=>"\u{2346D}",
    "\u{2F8E4}"=>"\u688E",
    "\u{2F8E5}"=>"\u681F",
    "\u{2F8E6}"=>"\u6914",
    "\u{2F8E7}"=>"\u3B9D",
    "\u{2F8E8}"=>"\u6942",
    "\u{2F8E9}"=>"\u69A3",
    "\u{2F8EA}"=>"\u69EA",
    "\u{2F8EB}"=>"\u6AA8",
    "\u{2F8EC}"=>"\u{236A3}",
    "\u{2F8ED}"=>"\u6ADB",
    "\u{2F8EE}"=>"\u3C18",
    "\u{2F8EF}"=>"\u6B21",
    "\u{2F8F0}"=>"\u{238A7}",
    "\u{2F8F1}"=>"\u6B54",
    "\u{2F8F2}"=>"\u3C4E",
    "\u{2F8F3}"=>"\u6B72",
    "\u{2F8F4}"=>"\u6B9F",
    "\u{2F8F5}"=>"\u6BBA",
    "\u{2F8F6}"=>"\u6BBB",
    "\u{2F8F7}"=>"\u{23A8D}",
    "\u{2F8F8}"=>"\u{21D0B}",
    "\u{2F8F9}"=>"\u{23AFA}",
    "\u{2F8FA}"=>"\u6C4E",
    "\u{2F8FB}"=>"\u{23CBC}",
    "\u{2F8FC}"=>"\u6CBF",
    "\u{2F8FD}"=>"\u6CCD",
    "\u{2F8FE}"=>"\u6C67",
    "\u{2F8FF}"=>"\u6D16",
    "\u{2F900}"=>"\u6D3E",
    "\u{2F901}"=>"\u6D77",
    "\u{2F902}"=>"\u6D41",
    "\u{2F903}"=>"\u6D69",
    "\u{2F904}"=>"\u6D78",
    "\u{2F905}"=>"\u6D85",
    "\u{2F906}"=>"\u{23D1E}",
    "\u{2F907}"=>"\u6D34",
    "\u{2F908}"=>"\u6E2F",
    "\u{2F909}"=>"\u6E6E",
    "\u{2F90A}"=>"\u3D33",
    "\u{2F90B}"=>"\u6ECB",
    "\u{2F90C}"=>"\u6EC7",
    "\u{2F90D}"=>"\u{23ED1}",
    "\u{2F90E}"=>"\u6DF9",
    "\u{2F90F}"=>"\u6F6E",
    "\u{2F910}"=>"\u{23F5E}",
    "\u{2F911}"=>"\u{23F8E}",
    "\u{2F912}"=>"\u6FC6",
    "\u{2F913}"=>"\u7039",
    "\u{2F914}"=>"\u701E",
    "\u{2F915}"=>"\u701B",
    "\u{2F916}"=>"\u3D96",
    "\u{2F917}"=>"\u704A",
    "\u{2F918}"=>"\u707D",
    "\u{2F919}"=>"\u7077",
    "\u{2F91A}"=>"\u70AD",
    "\u{2F91B}"=>"\u{20525}",
    "\u{2F91C}"=>"\u7145",
    "\u{2F91D}"=>"\u{24263}",
    "\u{2F91E}"=>"\u719C",
    "\u{2F91F}"=>"\u{243AB}",
    "\u{2F920}"=>"\u7228",
    "\u{2F921}"=>"\u7235",
    "\u{2F922}"=>"\u7250",
    "\u{2F923}"=>"\u{24608}",
    "\u{2F924}"=>"\u7280",
    "\u{2F925}"=>"\u7295",
    "\u{2F926}"=>"\u{24735}",
    "\u{2F927}"=>"\u{24814}",
    "\u{2F928}"=>"\u737A",
    "\u{2F929}"=>"\u738B",
    "\u{2F92A}"=>"\u3EAC",
    "\u{2F92B}"=>"\u73A5",
    "\u{2F92C}"=>"\u3EB8",
    "\u{2F92D}"=>"\u3EB8",
    "\u{2F92E}"=>"\u7447",
    "\u{2F92F}"=>"\u745C",
    "\u{2F930}"=>"\u7471",
    "\u{2F931}"=>"\u7485",
    "\u{2F932}"=>"\u74CA",
    "\u{2F933}"=>"\u3F1B",
    "\u{2F934}"=>"\u7524",
    "\u{2F935}"=>"\u{24C36}",
    "\u{2F936}"=>"\u753E",
    "\u{2F937}"=>"\u{24C92}",
    "\u{2F938}"=>"\u7570",
    "\u{2F939}"=>"\u{2219F}",
    "\u{2F93A}"=>"\u7610",
    "\u{2F93B}"=>"\u{24FA1}",
    "\u{2F93C}"=>"\u{24FB8}",
    "\u{2F93D}"=>"\u{25044}",
    "\u{2F93E}"=>"\u3FFC",
    "\u{2F93F}"=>"\u4008",
    "\u{2F940}"=>"\u76F4",
    "\u{2F941}"=>"\u{250F3}",
    "\u{2F942}"=>"\u{250F2}",
    "\u{2F943}"=>"\u{25119}",
    "\u{2F944}"=>"\u{25133}",
    "\u{2F945}"=>"\u771E",
    "\u{2F946}"=>"\u771F",
    "\u{2F947}"=>"\u771F",
    "\u{2F948}"=>"\u774A",
    "\u{2F949}"=>"\u4039",
    "\u{2F94A}"=>"\u778B",
    "\u{2F94B}"=>"\u4046",
    "\u{2F94C}"=>"\u4096",
    "\u{2F94D}"=>"\u{2541D}",
    "\u{2F94E}"=>"\u784E",
    "\u{2F94F}"=>"\u788C",
    "\u{2F950}"=>"\u78CC",
    "\u{2F951}"=>"\u40E3",
    "\u{2F952}"=>"\u{25626}",
    "\u{2F953}"=>"\u7956",
    "\u{2F954}"=>"\u{2569A}",
    "\u{2F955}"=>"\u{256C5}",
    "\u{2F956}"=>"\u798F",
    "\u{2F957}"=>"\u79EB",
    "\u{2F958}"=>"\u412F",
    "\u{2F959}"=>"\u7A40",
    "\u{2F95A}"=>"\u7A4A",
    "\u{2F95B}"=>"\u7A4F",
    "\u{2F95C}"=>"\u{2597C}",
    "\u{2F95D}"=>"\u{25AA7}",
    "\u{2F95E}"=>"\u{25AA7}",
    "\u{2F95F}"=>"\u7AEE",
    "\u{2F960}"=>"\u4202",
    "\u{2F961}"=>"\u{25BAB}",
    "\u{2F962}"=>"\u7BC6",
    "\u{2F963}"=>"\u7BC9",
    "\u{2F964}"=>"\u4227",
    "\u{2F965}"=>"\u{25C80}",
    "\u{2F966}"=>"\u7CD2",
    "\u{2F967}"=>"\u42A0",
    "\u{2F968}"=>"\u7CE8",
    "\u{2F969}"=>"\u7CE3",
    "\u{2F96A}"=>"\u7D00",
    "\u{2F96B}"=>"\u{25F86}",
    "\u{2F96C}"=>"\u7D63",
    "\u{2F96D}"=>"\u4301",
    "\u{2F96E}"=>"\u7DC7",
    "\u{2F96F}"=>"\u7E02",
    "\u{2F970}"=>"\u7E45",
    "\u{2F971}"=>"\u4334",
    "\u{2F972}"=>"\u{26228}",
    "\u{2F973}"=>"\u{26247}",
    "\u{2F974}"=>"\u4359",
    "\u{2F975}"=>"\u{262D9}",
    "\u{2F976}"=>"\u7F7A",
    "\u{2F977}"=>"\u{2633E}",
    "\u{2F978}"=>"\u7F95",
    "\u{2F979}"=>"\u7FFA",
    "\u{2F97A}"=>"\u8005",
    "\u{2F97B}"=>"\u{264DA}",
    "\u{2F97C}"=>"\u{26523}",
    "\u{2F97D}"=>"\u8060",
    "\u{2F97E}"=>"\u{265A8}",
    "\u{2F97F}"=>"\u8070",
    "\u{2F980}"=>"\u{2335F}",
    "\u{2F981}"=>"\u43D5",
    "\u{2F982}"=>"\u80B2",
    "\u{2F983}"=>"\u8103",
    "\u{2F984}"=>"\u440B",
    "\u{2F985}"=>"\u813E",
    "\u{2F986}"=>"\u5AB5",
    "\u{2F987}"=>"\u{267A7}",
    "\u{2F988}"=>"\u{267B5}",
    "\u{2F989}"=>"\u{23393}",
    "\u{2F98A}"=>"\u{2339C}",
    "\u{2F98B}"=>"\u8201",
    "\u{2F98C}"=>"\u8204",
    "\u{2F98D}"=>"\u8F9E",
    "\u{2F98E}"=>"\u446B",
    "\u{2F98F}"=>"\u8291",
    "\u{2F990}"=>"\u828B",
    "\u{2F991}"=>"\u829D",
    "\u{2F992}"=>"\u52B3",
    "\u{2F993}"=>"\u82B1",
    "\u{2F994}"=>"\u82B3",
    "\u{2F995}"=>"\u82BD",
    "\u{2F996}"=>"\u82E6",
    "\u{2F997}"=>"\u{26B3C}",
    "\u{2F998}"=>"\u82E5",
    "\u{2F999}"=>"\u831D",
    "\u{2F99A}"=>"\u8363",
    "\u{2F99B}"=>"\u83AD",
    "\u{2F99C}"=>"\u8323",
    "\u{2F99D}"=>"\u83BD",
    "\u{2F99E}"=>"\u83E7",
    "\u{2F99F}"=>"\u8457",
    "\u{2F9A0}"=>"\u8353",
    "\u{2F9A1}"=>"\u83CA",
    "\u{2F9A2}"=>"\u83CC",
    "\u{2F9A3}"=>"\u83DC",
    "\u{2F9A4}"=>"\u{26C36}",
    "\u{2F9A5}"=>"\u{26D6B}",
    "\u{2F9A6}"=>"\u{26CD5}",
    "\u{2F9A7}"=>"\u452B",
    "\u{2F9A8}"=>"\u84F1",
    "\u{2F9A9}"=>"\u84F3",
    "\u{2F9AA}"=>"\u8516",
    "\u{2F9AB}"=>"\u{273CA}",
    "\u{2F9AC}"=>"\u8564",
    "\u{2F9AD}"=>"\u{26F2C}",
    "\u{2F9AE}"=>"\u455D",
    "\u{2F9AF}"=>"\u4561",
    "\u{2F9B0}"=>"\u{26FB1}",
    "\u{2F9B1}"=>"\u{270D2}",
    "\u{2F9B2}"=>"\u456B",
    "\u{2F9B3}"=>"\u8650",
    "\u{2F9B4}"=>"\u865C",
    "\u{2F9B5}"=>"\u8667",
    "\u{2F9B6}"=>"\u8669",
    "\u{2F9B7}"=>"\u86A9",
    "\u{2F9B8}"=>"\u8688",
    "\u{2F9B9}"=>"\u870E",
    "\u{2F9BA}"=>"\u86E2",
    "\u{2F9BB}"=>"\u8779",
    "\u{2F9BC}"=>"\u8728",
    "\u{2F9BD}"=>"\u876B",
    "\u{2F9BE}"=>"\u8786",
    "\u{2F9BF}"=>"\u45D7",
    "\u{2F9C0}"=>"\u87E1",
    "\u{2F9C1}"=>"\u8801",
    "\u{2F9C2}"=>"\u45F9",
    "\u{2F9C3}"=>"\u8860",
    "\u{2F9C4}"=>"\u8863",
    "\u{2F9C5}"=>"\u{27667}",
    "\u{2F9C6}"=>"\u88D7",
    "\u{2F9C7}"=>"\u88DE",
    "\u{2F9C8}"=>"\u4635",
    "\u{2F9C9}"=>"\u88FA",
    "\u{2F9CA}"=>"\u34BB",
    "\u{2F9CB}"=>"\u{278AE}",
    "\u{2F9CC}"=>"\u{27966}",
    "\u{2F9CD}"=>"\u46BE",
    "\u{2F9CE}"=>"\u46C7",
    "\u{2F9CF}"=>"\u8AA0",
    "\u{2F9D0}"=>"\u8AED",
    "\u{2F9D1}"=>"\u8B8A",
    "\u{2F9D2}"=>"\u8C55",
    "\u{2F9D3}"=>"\u{27CA8}",
    "\u{2F9D4}"=>"\u8CAB",
    "\u{2F9D5}"=>"\u8CC1",
    "\u{2F9D6}"=>"\u8D1B",
    "\u{2F9D7}"=>"\u8D77",
    "\u{2F9D8}"=>"\u{27F2F}",
    "\u{2F9D9}"=>"\u{20804}",
    "\u{2F9DA}"=>"\u8DCB",
    "\u{2F9DB}"=>"\u8DBC",
    "\u{2F9DC}"=>"\u8DF0",
    "\u{2F9DD}"=>"\u{208DE}",
    "\u{2F9DE}"=>"\u8ED4",
    "\u{2F9DF}"=>"\u8F38",
    "\u{2F9E0}"=>"\u{285D2}",
    "\u{2F9E1}"=>"\u{285ED}",
    "\u{2F9E2}"=>"\u9094",
    "\u{2F9E3}"=>"\u90F1",
    "\u{2F9E4}"=>"\u9111",
    "\u{2F9E5}"=>"\u{2872E}",
    "\u{2F9E6}"=>"\u911B",
    "\u{2F9E7}"=>"\u9238",
    "\u{2F9E8}"=>"\u92D7",
    "\u{2F9E9}"=>"\u92D8",
    "\u{2F9EA}"=>"\u927C",
    "\u{2F9EB}"=>"\u93F9",
    "\u{2F9EC}"=>"\u9415",
    "\u{2F9ED}"=>"\u{28BFA}",
    "\u{2F9EE}"=>"\u958B",
    "\u{2F9EF}"=>"\u4995",
    "\u{2F9F0}"=>"\u95B7",
    "\u{2F9F1}"=>"\u{28D77}",
    "\u{2F9F2}"=>"\u49E6",
    "\u{2F9F3}"=>"\u96C3",
    "\u{2F9F4}"=>"\u5DB2",
    "\u{2F9F5}"=>"\u9723",
    "\u{2F9F6}"=>"\u{29145}",
    "\u{2F9F7}"=>"\u{2921A}",
    "\u{2F9F8}"=>"\u4A6E",
    "\u{2F9F9}"=>"\u4A76",
    "\u{2F9FA}"=>"\u97E0",
    "\u{2F9FB}"=>"\u{2940A}",
    "\u{2F9FC}"=>"\u4AB2",
    "\u{2F9FD}"=>"\u{29496}",
    "\u{2F9FE}"=>"\u980B",
    "\u{2F9FF}"=>"\u980B",
    "\u{2FA00}"=>"\u9829",
    "\u{2FA01}"=>"\u{295B6}",
    "\u{2FA02}"=>"\u98E2",
    "\u{2FA03}"=>"\u4B33",
    "\u{2FA04}"=>"\u9929",
    "\u{2FA05}"=>"\u99A7",
    "\u{2FA06}"=>"\u99C2",
    "\u{2FA07}"=>"\u99FE",
    "\u{2FA08}"=>"\u4BCE",
    "\u{2FA09}"=>"\u{29B30}",
    "\u{2FA0A}"=>"\u9B12",
    "\u{2FA0B}"=>"\u9C40",
    "\u{2FA0C}"=>"\u9CFD",
    "\u{2FA0D}"=>"\u4CCE",
    "\u{2FA0E}"=>"\u4CED",
    "\u{2FA0F}"=>"\u9D67",
    "\u{2FA10}"=>"\u{2A0CE}",
    "\u{2FA11}"=>"\u4CF8",
    "\u{2FA12}"=>"\u{2A105}",
    "\u{2FA13}"=>"\u{2A20E}",
    "\u{2FA14}"=>"\u{2A291}",
    "\u{2FA15}"=>"\u9EBB",
    "\u{2FA16}"=>"\u4D56",
    "\u{2FA17}"=>"\u9EF9",
    "\u{2FA18}"=>"\u9EFE",
    "\u{2FA19}"=>"\u9F05",
    "\u{2FA1A}"=>"\u9F0F",
    "\u{2FA1B}"=>"\u9F16",
    "\u{2FA1C}"=>"\u9F3B",
    "\u{2FA1D}"=>"\u{2A600}",
  }.freeze

  KOMPATIBLE_TABLE = {
    "\u00A0"=>" ",
    "\u00A8"=>" \u0308",
    "\u00AA"=>"a",
    "\u00AF"=>" \u0304",
    "\u00B2"=>"2",
    "\u00B3"=>"3",
    "\u00B4"=>" \u0301",
    "\u00B5"=>"\u03BC",
    "\u00B8"=>" \u0327",
    "\u00B9"=>"1",
    "\u00BA"=>"o",
    "\u00BC"=>"1\u20444",
    "\u00BD"=>"1\u20442",
    "\u00BE"=>"3\u20444",
    "\u0132"=>"IJ",
    "\u0133"=>"ij",
    "\u013F"=>"L\u00B7",
    "\u0140"=>"l\u00B7",
    "\u0149"=>"\u02BCn",
    "\u017F"=>"s",
    "\u01C4"=>"D\u017D",
    "\u01C5"=>"D\u017E",
    "\u01C6"=>"d\u017E",
    "\u01C7"=>"LJ",
    "\u01C8"=>"Lj",
    "\u01C9"=>"lj",
    "\u01CA"=>"NJ",
    "\u01CB"=>"Nj",
    "\u01CC"=>"nj",
    "\u01F1"=>"DZ",
    "\u01F2"=>"Dz",
    "\u01F3"=>"dz",
    "\u02B0"=>"h",
    "\u02B1"=>"\u0266",
    "\u02B2"=>"j",
    "\u02B3"=>"r",
    "\u02B4"=>"\u0279",
    "\u02B5"=>"\u027B",
    "\u02B6"=>"\u0281",
    "\u02B7"=>"w",
    "\u02B8"=>"y",
    "\u02D8"=>" \u0306",
    "\u02D9"=>" \u0307",
    "\u02DA"=>" \u030A",
    "\u02DB"=>" \u0328",
    "\u02DC"=>" \u0303",
    "\u02DD"=>" \u030B",
    "\u02E0"=>"\u0263",
    "\u02E1"=>"l",
    "\u02E2"=>"s",
    "\u02E3"=>"x",
    "\u02E4"=>"\u0295",
    "\u037A"=>" \u0345",
    "\u0384"=>" \u0301",
    "\u03D0"=>"\u03B2",
    "\u03D1"=>"\u03B8",
    "\u03D2"=>"\u03A5",
    "\u03D5"=>"\u03C6",
    "\u03D6"=>"\u03C0",
    "\u03F0"=>"\u03BA",
    "\u03F1"=>"\u03C1",
    "\u03F2"=>"\u03C2",
    "\u03F4"=>"\u0398",
    "\u03F5"=>"\u03B5",
    "\u03F9"=>"\u03A3",
    "\u0587"=>"\u0565\u0582",
    "\u0675"=>"\u0627\u0674",
    "\u0676"=>"\u0648\u0674",
    "\u0677"=>"\u06C7\u0674",
    "\u0678"=>"\u064A\u0674",
    "\u0E33"=>"\u0E4D\u0E32",
    "\u0EB3"=>"\u0ECD\u0EB2",
    "\u0EDC"=>"\u0EAB\u0E99",
    "\u0EDD"=>"\u0EAB\u0EA1",
    "\u0F0C"=>"\u0F0B",
    "\u0F77"=>"\u0FB2\u0F81",
    "\u0F79"=>"\u0FB3\u0F81",
    "\u10FC"=>"\u10DC",
    "\u1D2C"=>"A",
    "\u1D2D"=>"\u00C6",
    "\u1D2E"=>"B",
    "\u1D30"=>"D",
    "\u1D31"=>"E",
    "\u1D32"=>"\u018E",
    "\u1D33"=>"G",
    "\u1D34"=>"H",
    "\u1D35"=>"I",
    "\u1D36"=>"J",
    "\u1D37"=>"K",
    "\u1D38"=>"L",
    "\u1D39"=>"M",
    "\u1D3A"=>"N",
    "\u1D3C"=>"O",
    "\u1D3D"=>"\u0222",
    "\u1D3E"=>"P",
    "\u1D3F"=>"R",
    "\u1D40"=>"T",
    "\u1D41"=>"U",
    "\u1D42"=>"W",
    "\u1D43"=>"a",
    "\u1D44"=>"\u0250",
    "\u1D45"=>"\u0251",
    "\u1D46"=>"\u1D02",
    "\u1D47"=>"b",
    "\u1D48"=>"d",
    "\u1D49"=>"e",
    "\u1D4A"=>"\u0259",
    "\u1D4B"=>"\u025B",
    "\u1D4C"=>"\u025C",
    "\u1D4D"=>"g",
    "\u1D4F"=>"k",
    "\u1D50"=>"m",
    "\u1D51"=>"\u014B",
    "\u1D52"=>"o",
    "\u1D53"=>"\u0254",
    "\u1D54"=>"\u1D16",
    "\u1D55"=>"\u1D17",
    "\u1D56"=>"p",
    "\u1D57"=>"t",
    "\u1D58"=>"u",
    "\u1D59"=>"\u1D1D",
    "\u1D5A"=>"\u026F",
    "\u1D5B"=>"v",
    "\u1D5C"=>"\u1D25",
    "\u1D5D"=>"\u03B2",
    "\u1D5E"=>"\u03B3",
    "\u1D5F"=>"\u03B4",
    "\u1D60"=>"\u03C6",
    "\u1D61"=>"\u03C7",
    "\u1D62"=>"i",
    "\u1D63"=>"r",
    "\u1D64"=>"u",
    "\u1D65"=>"v",
    "\u1D66"=>"\u03B2",
    "\u1D67"=>"\u03B3",
    "\u1D68"=>"\u03C1",
    "\u1D69"=>"\u03C6",
    "\u1D6A"=>"\u03C7",
    "\u1D78"=>"\u043D",
    "\u1D9B"=>"\u0252",
    "\u1D9C"=>"c",
    "\u1D9D"=>"\u0255",
    "\u1D9E"=>"\u00F0",
    "\u1D9F"=>"\u025C",
    "\u1DA0"=>"f",
    "\u1DA1"=>"\u025F",
    "\u1DA2"=>"\u0261",
    "\u1DA3"=>"\u0265",
    "\u1DA4"=>"\u0268",
    "\u1DA5"=>"\u0269",
    "\u1DA6"=>"\u026A",
    "\u1DA7"=>"\u1D7B",
    "\u1DA8"=>"\u029D",
    "\u1DA9"=>"\u026D",
    "\u1DAA"=>"\u1D85",
    "\u1DAB"=>"\u029F",
    "\u1DAC"=>"\u0271",
    "\u1DAD"=>"\u0270",
    "\u1DAE"=>"\u0272",
    "\u1DAF"=>"\u0273",
    "\u1DB0"=>"\u0274",
    "\u1DB1"=>"\u0275",
    "\u1DB2"=>"\u0278",
    "\u1DB3"=>"\u0282",
    "\u1DB4"=>"\u0283",
    "\u1DB5"=>"\u01AB",
    "\u1DB6"=>"\u0289",
    "\u1DB7"=>"\u028A",
    "\u1DB8"=>"\u1D1C",
    "\u1DB9"=>"\u028B",
    "\u1DBA"=>"\u028C",
    "\u1DBB"=>"z",
    "\u1DBC"=>"\u0290",
    "\u1DBD"=>"\u0291",
    "\u1DBE"=>"\u0292",
    "\u1DBF"=>"\u03B8",
    "\u1E9A"=>"a\u02BE",
    "\u1FBD"=>" \u0313",
    "\u1FBF"=>" \u0313",
    "\u1FC0"=>" \u0342",
    "\u1FFE"=>" \u0314",
    "\u2002"=>" ",
    "\u2003"=>" ",
    "\u2004"=>" ",
    "\u2005"=>" ",
    "\u2006"=>" ",
    "\u2007"=>" ",
    "\u2008"=>" ",
    "\u2009"=>" ",
    "\u200A"=>" ",
    "\u2011"=>"\u2010",
    "\u2017"=>" \u0333",
    "\u2024"=>".",
    "\u2025"=>"..",
    "\u2026"=>"...",
    "\u202F"=>" ",
    "\u2033"=>"\u2032\u2032",
    "\u2034"=>"\u2032\u2032\u2032",
    "\u2036"=>"\u2035\u2035",
    "\u2037"=>"\u2035\u2035\u2035",
    "\u203C"=>"!!",
    "\u203E"=>" \u0305",
    "\u2047"=>"??",
    "\u2048"=>"?!",
    "\u2049"=>"!?",
    "\u2057"=>"\u2032\u2032\u2032\u2032",
    "\u205F"=>" ",
    "\u2070"=>"0",
    "\u2071"=>"i",
    "\u2074"=>"4",
    "\u2075"=>"5",
    "\u2076"=>"6",
    "\u2077"=>"7",
    "\u2078"=>"8",
    "\u2079"=>"9",
    "\u207A"=>"+",
    "\u207B"=>"\u2212",
    "\u207C"=>"=",
    "\u207D"=>"(",
    "\u207E"=>")",
    "\u207F"=>"n",
    "\u2080"=>"0",
    "\u2081"=>"1",
    "\u2082"=>"2",
    "\u2083"=>"3",
    "\u2084"=>"4",
    "\u2085"=>"5",
    "\u2086"=>"6",
    "\u2087"=>"7",
    "\u2088"=>"8",
    "\u2089"=>"9",
    "\u208A"=>"+",
    "\u208B"=>"\u2212",
    "\u208C"=>"=",
    "\u208D"=>"(",
    "\u208E"=>")",
    "\u2090"=>"a",
    "\u2091"=>"e",
    "\u2092"=>"o",
    "\u2093"=>"x",
    "\u2094"=>"\u0259",
    "\u2095"=>"h",
    "\u2096"=>"k",
    "\u2097"=>"l",
    "\u2098"=>"m",
    "\u2099"=>"n",
    "\u209A"=>"p",
    "\u209B"=>"s",
    "\u209C"=>"t",
    "\u20A8"=>"Rs",
    "\u2100"=>"a/c",
    "\u2101"=>"a/s",
    "\u2102"=>"C",
    "\u2103"=>"\u00B0C",
    "\u2105"=>"c/o",
    "\u2106"=>"c/u",
    "\u2107"=>"\u0190",
    "\u2109"=>"\u00B0F",
    "\u210A"=>"g",
    "\u210B"=>"H",
    "\u210C"=>"H",
    "\u210D"=>"H",
    "\u210E"=>"h",
    "\u210F"=>"\u0127",
    "\u2110"=>"I",
    "\u2111"=>"I",
    "\u2112"=>"L",
    "\u2113"=>"l",
    "\u2115"=>"N",
    "\u2116"=>"No",
    "\u2119"=>"P",
    "\u211A"=>"Q",
    "\u211B"=>"R",
    "\u211C"=>"R",
    "\u211D"=>"R",
    "\u2120"=>"SM",
    "\u2121"=>"TEL",
    "\u2122"=>"TM",
    "\u2124"=>"Z",
    "\u2128"=>"Z",
    "\u212C"=>"B",
    "\u212D"=>"C",
    "\u212F"=>"e",
    "\u2130"=>"E",
    "\u2131"=>"F",
    "\u2133"=>"M",
    "\u2134"=>"o",
    "\u2135"=>"\u05D0",
    "\u2136"=>"\u05D1",
    "\u2137"=>"\u05D2",
    "\u2138"=>"\u05D3",
    "\u2139"=>"i",
    "\u213B"=>"FAX",
    "\u213C"=>"\u03C0",
    "\u213D"=>"\u03B3",
    "\u213E"=>"\u0393",
    "\u213F"=>"\u03A0",
    "\u2140"=>"\u2211",
    "\u2145"=>"D",
    "\u2146"=>"d",
    "\u2147"=>"e",
    "\u2148"=>"i",
    "\u2149"=>"j",
    "\u2150"=>"1\u20447",
    "\u2151"=>"1\u20449",
    "\u2152"=>"1\u204410",
    "\u2153"=>"1\u20443",
    "\u2154"=>"2\u20443",
    "\u2155"=>"1\u20445",
    "\u2156"=>"2\u20445",
    "\u2157"=>"3\u20445",
    "\u2158"=>"4\u20445",
    "\u2159"=>"1\u20446",
    "\u215A"=>"5\u20446",
    "\u215B"=>"1\u20448",
    "\u215C"=>"3\u20448",
    "\u215D"=>"5\u20448",
    "\u215E"=>"7\u20448",
    "\u215F"=>"1\u2044",
    "\u2160"=>"I",
    "\u2161"=>"II",
    "\u2162"=>"III",
    "\u2163"=>"IV",
    "\u2164"=>"V",
    "\u2165"=>"VI",
    "\u2166"=>"VII",
    "\u2167"=>"VIII",
    "\u2168"=>"IX",
    "\u2169"=>"X",
    "\u216A"=>"XI",
    "\u216B"=>"XII",
    "\u216C"=>"L",
    "\u216D"=>"C",
    "\u216E"=>"D",
    "\u216F"=>"M",
    "\u2170"=>"i",
    "\u2171"=>"ii",
    "\u2172"=>"iii",
    "\u2173"=>"iv",
    "\u2174"=>"v",
    "\u2175"=>"vi",
    "\u2176"=>"vii",
    "\u2177"=>"viii",
    "\u2178"=>"ix",
    "\u2179"=>"x",
    "\u217A"=>"xi",
    "\u217B"=>"xii",
    "\u217C"=>"l",
    "\u217D"=>"c",
    "\u217E"=>"d",
    "\u217F"=>"m",
    "\u2189"=>"0\u20443",
    "\u222C"=>"\u222B\u222B",
    "\u222D"=>"\u222B\u222B\u222B",
    "\u222F"=>"\u222E\u222E",
    "\u2230"=>"\u222E\u222E\u222E",
    "\u2460"=>"1",
    "\u2461"=>"2",
    "\u2462"=>"3",
    "\u2463"=>"4",
    "\u2464"=>"5",
    "\u2465"=>"6",
    "\u2466"=>"7",
    "\u2467"=>"8",
    "\u2468"=>"9",
    "\u2469"=>"10",
    "\u246A"=>"11",
    "\u246B"=>"12",
    "\u246C"=>"13",
    "\u246D"=>"14",
    "\u246E"=>"15",
    "\u246F"=>"16",
    "\u2470"=>"17",
    "\u2471"=>"18",
    "\u2472"=>"19",
    "\u2473"=>"20",
    "\u2474"=>"(1)",
    "\u2475"=>"(2)",
    "\u2476"=>"(3)",
    "\u2477"=>"(4)",
    "\u2478"=>"(5)",
    "\u2479"=>"(6)",
    "\u247A"=>"(7)",
    "\u247B"=>"(8)",
    "\u247C"=>"(9)",
    "\u247D"=>"(10)",
    "\u247E"=>"(11)",
    "\u247F"=>"(12)",
    "\u2480"=>"(13)",
    "\u2481"=>"(14)",
    "\u2482"=>"(15)",
    "\u2483"=>"(16)",
    "\u2484"=>"(17)",
    "\u2485"=>"(18)",
    "\u2486"=>"(19)",
    "\u2487"=>"(20)",
    "\u2488"=>"1.",
    "\u2489"=>"2.",
    "\u248A"=>"3.",
    "\u248B"=>"4.",
    "\u248C"=>"5.",
    "\u248D"=>"6.",
    "\u248E"=>"7.",
    "\u248F"=>"8.",
    "\u2490"=>"9.",
    "\u2491"=>"10.",
    "\u2492"=>"11.",
    "\u2493"=>"12.",
    "\u2494"=>"13.",
    "\u2495"=>"14.",
    "\u2496"=>"15.",
    "\u2497"=>"16.",
    "\u2498"=>"17.",
    "\u2499"=>"18.",
    "\u249A"=>"19.",
    "\u249B"=>"20.",
    "\u249C"=>"(a)",
    "\u249D"=>"(b)",
    "\u249E"=>"(c)",
    "\u249F"=>"(d)",
    "\u24A0"=>"(e)",
    "\u24A1"=>"(f)",
    "\u24A2"=>"(g)",
    "\u24A3"=>"(h)",
    "\u24A4"=>"(i)",
    "\u24A5"=>"(j)",
    "\u24A6"=>"(k)",
    "\u24A7"=>"(l)",
    "\u24A8"=>"(m)",
    "\u24A9"=>"(n)",
    "\u24AA"=>"(o)",
    "\u24AB"=>"(p)",
    "\u24AC"=>"(q)",
    "\u24AD"=>"(r)",
    "\u24AE"=>"(s)",
    "\u24AF"=>"(t)",
    "\u24B0"=>"(u)",
    "\u24B1"=>"(v)",
    "\u24B2"=>"(w)",
    "\u24B3"=>"(x)",
    "\u24B4"=>"(y)",
    "\u24B5"=>"(z)",
    "\u24B6"=>"A",
    "\u24B7"=>"B",
    "\u24B8"=>"C",
    "\u24B9"=>"D",
    "\u24BA"=>"E",
    "\u24BB"=>"F",
    "\u24BC"=>"G",
    "\u24BD"=>"H",
    "\u24BE"=>"I",
    "\u24BF"=>"J",
    "\u24C0"=>"K",
    "\u24C1"=>"L",
    "\u24C2"=>"M",
    "\u24C3"=>"N",
    "\u24C4"=>"O",
    "\u24C5"=>"P",
    "\u24C6"=>"Q",
    "\u24C7"=>"R",
    "\u24C8"=>"S",
    "\u24C9"=>"T",
    "\u24CA"=>"U",
    "\u24CB"=>"V",
    "\u24CC"=>"W",
    "\u24CD"=>"X",
    "\u24CE"=>"Y",
    "\u24CF"=>"Z",
    "\u24D0"=>"a",
    "\u24D1"=>"b",
    "\u24D2"=>"c",
    "\u24D3"=>"d",
    "\u24D4"=>"e",
    "\u24D5"=>"f",
    "\u24D6"=>"g",
    "\u24D7"=>"h",
    "\u24D8"=>"i",
    "\u24D9"=>"j",
    "\u24DA"=>"k",
    "\u24DB"=>"l",
    "\u24DC"=>"m",
    "\u24DD"=>"n",
    "\u24DE"=>"o",
    "\u24DF"=>"p",
    "\u24E0"=>"q",
    "\u24E1"=>"r",
    "\u24E2"=>"s",
    "\u24E3"=>"t",
    "\u24E4"=>"u",
    "\u24E5"=>"v",
    "\u24E6"=>"w",
    "\u24E7"=>"x",
    "\u24E8"=>"y",
    "\u24E9"=>"z",
    "\u24EA"=>"0",
    "\u2A0C"=>"\u222B\u222B\u222B\u222B",
    "\u2A74"=>"::=",
    "\u2A75"=>"==",
    "\u2A76"=>"===",
    "\u2C7C"=>"j",
    "\u2C7D"=>"V",
    "\u2D6F"=>"\u2D61",
    "\u2E9F"=>"\u6BCD",
    "\u2EF3"=>"\u9F9F",
    "\u2F00"=>"\u4E00",
    "\u2F01"=>"\u4E28",
    "\u2F02"=>"\u4E36",
    "\u2F03"=>"\u4E3F",
    "\u2F04"=>"\u4E59",
    "\u2F05"=>"\u4E85",
    "\u2F06"=>"\u4E8C",
    "\u2F07"=>"\u4EA0",
    "\u2F08"=>"\u4EBA",
    "\u2F09"=>"\u513F",
    "\u2F0A"=>"\u5165",
    "\u2F0B"=>"\u516B",
    "\u2F0C"=>"\u5182",
    "\u2F0D"=>"\u5196",
    "\u2F0E"=>"\u51AB",
    "\u2F0F"=>"\u51E0",
    "\u2F10"=>"\u51F5",
    "\u2F11"=>"\u5200",
    "\u2F12"=>"\u529B",
    "\u2F13"=>"\u52F9",
    "\u2F14"=>"\u5315",
    "\u2F15"=>"\u531A",
    "\u2F16"=>"\u5338",
    "\u2F17"=>"\u5341",
    "\u2F18"=>"\u535C",
    "\u2F19"=>"\u5369",
    "\u2F1A"=>"\u5382",
    "\u2F1B"=>"\u53B6",
    "\u2F1C"=>"\u53C8",
    "\u2F1D"=>"\u53E3",
    "\u2F1E"=>"\u56D7",
    "\u2F1F"=>"\u571F",
    "\u2F20"=>"\u58EB",
    "\u2F21"=>"\u5902",
    "\u2F22"=>"\u590A",
    "\u2F23"=>"\u5915",
    "\u2F24"=>"\u5927",
    "\u2F25"=>"\u5973",
    "\u2F26"=>"\u5B50",
    "\u2F27"=>"\u5B80",
    "\u2F28"=>"\u5BF8",
    "\u2F29"=>"\u5C0F",
    "\u2F2A"=>"\u5C22",
    "\u2F2B"=>"\u5C38",
    "\u2F2C"=>"\u5C6E",
    "\u2F2D"=>"\u5C71",
    "\u2F2E"=>"\u5DDB",
    "\u2F2F"=>"\u5DE5",
    "\u2F30"=>"\u5DF1",
    "\u2F31"=>"\u5DFE",
    "\u2F32"=>"\u5E72",
    "\u2F33"=>"\u5E7A",
    "\u2F34"=>"\u5E7F",
    "\u2F35"=>"\u5EF4",
    "\u2F36"=>"\u5EFE",
    "\u2F37"=>"\u5F0B",
    "\u2F38"=>"\u5F13",
    "\u2F39"=>"\u5F50",
    "\u2F3A"=>"\u5F61",
    "\u2F3B"=>"\u5F73",
    "\u2F3C"=>"\u5FC3",
    "\u2F3D"=>"\u6208",
    "\u2F3E"=>"\u6236",
    "\u2F3F"=>"\u624B",
    "\u2F40"=>"\u652F",
    "\u2F41"=>"\u6534",
    "\u2F42"=>"\u6587",
    "\u2F43"=>"\u6597",
    "\u2F44"=>"\u65A4",
    "\u2F45"=>"\u65B9",
    "\u2F46"=>"\u65E0",
    "\u2F47"=>"\u65E5",
    "\u2F48"=>"\u66F0",
    "\u2F49"=>"\u6708",
    "\u2F4A"=>"\u6728",
    "\u2F4B"=>"\u6B20",
    "\u2F4C"=>"\u6B62",
    "\u2F4D"=>"\u6B79",
    "\u2F4E"=>"\u6BB3",
    "\u2F4F"=>"\u6BCB",
    "\u2F50"=>"\u6BD4",
    "\u2F51"=>"\u6BDB",
    "\u2F52"=>"\u6C0F",
    "\u2F53"=>"\u6C14",
    "\u2F54"=>"\u6C34",
    "\u2F55"=>"\u706B",
    "\u2F56"=>"\u722A",
    "\u2F57"=>"\u7236",
    "\u2F58"=>"\u723B",
    "\u2F59"=>"\u723F",
    "\u2F5A"=>"\u7247",
    "\u2F5B"=>"\u7259",
    "\u2F5C"=>"\u725B",
    "\u2F5D"=>"\u72AC",
    "\u2F5E"=>"\u7384",
    "\u2F5F"=>"\u7389",
    "\u2F60"=>"\u74DC",
    "\u2F61"=>"\u74E6",
    "\u2F62"=>"\u7518",
    "\u2F63"=>"\u751F",
    "\u2F64"=>"\u7528",
    "\u2F65"=>"\u7530",
    "\u2F66"=>"\u758B",
    "\u2F67"=>"\u7592",
    "\u2F68"=>"\u7676",
    "\u2F69"=>"\u767D",
    "\u2F6A"=>"\u76AE",
    "\u2F6B"=>"\u76BF",
    "\u2F6C"=>"\u76EE",
    "\u2F6D"=>"\u77DB",
    "\u2F6E"=>"\u77E2",
    "\u2F6F"=>"\u77F3",
    "\u2F70"=>"\u793A",
    "\u2F71"=>"\u79B8",
    "\u2F72"=>"\u79BE",
    "\u2F73"=>"\u7A74",
    "\u2F74"=>"\u7ACB",
    "\u2F75"=>"\u7AF9",
    "\u2F76"=>"\u7C73",
    "\u2F77"=>"\u7CF8",
    "\u2F78"=>"\u7F36",
    "\u2F79"=>"\u7F51",
    "\u2F7A"=>"\u7F8A",
    "\u2F7B"=>"\u7FBD",
    "\u2F7C"=>"\u8001",
    "\u2F7D"=>"\u800C",
    "\u2F7E"=>"\u8012",
    "\u2F7F"=>"\u8033",
    "\u2F80"=>"\u807F",
    "\u2F81"=>"\u8089",
    "\u2F82"=>"\u81E3",
    "\u2F83"=>"\u81EA",
    "\u2F84"=>"\u81F3",
    "\u2F85"=>"\u81FC",
    "\u2F86"=>"\u820C",
    "\u2F87"=>"\u821B",
    "\u2F88"=>"\u821F",
    "\u2F89"=>"\u826E",
    "\u2F8A"=>"\u8272",
    "\u2F8B"=>"\u8278",
    "\u2F8C"=>"\u864D",
    "\u2F8D"=>"\u866B",
    "\u2F8E"=>"\u8840",
    "\u2F8F"=>"\u884C",
    "\u2F90"=>"\u8863",
    "\u2F91"=>"\u897E",
    "\u2F92"=>"\u898B",
    "\u2F93"=>"\u89D2",
    "\u2F94"=>"\u8A00",
    "\u2F95"=>"\u8C37",
    "\u2F96"=>"\u8C46",
    "\u2F97"=>"\u8C55",
    "\u2F98"=>"\u8C78",
    "\u2F99"=>"\u8C9D",
    "\u2F9A"=>"\u8D64",
    "\u2F9B"=>"\u8D70",
    "\u2F9C"=>"\u8DB3",
    "\u2F9D"=>"\u8EAB",
    "\u2F9E"=>"\u8ECA",
    "\u2F9F"=>"\u8F9B",
    "\u2FA0"=>"\u8FB0",
    "\u2FA1"=>"\u8FB5",
    "\u2FA2"=>"\u9091",
    "\u2FA3"=>"\u9149",
    "\u2FA4"=>"\u91C6",
    "\u2FA5"=>"\u91CC",
    "\u2FA6"=>"\u91D1",
    "\u2FA7"=>"\u9577",
    "\u2FA8"=>"\u9580",
    "\u2FA9"=>"\u961C",
    "\u2FAA"=>"\u96B6",
    "\u2FAB"=>"\u96B9",
    "\u2FAC"=>"\u96E8",
    "\u2FAD"=>"\u9751",
    "\u2FAE"=>"\u975E",
    "\u2FAF"=>"\u9762",
    "\u2FB0"=>"\u9769",
    "\u2FB1"=>"\u97CB",
    "\u2FB2"=>"\u97ED",
    "\u2FB3"=>"\u97F3",
    "\u2FB4"=>"\u9801",
    "\u2FB5"=>"\u98A8",
    "\u2FB6"=>"\u98DB",
    "\u2FB7"=>"\u98DF",
    "\u2FB8"=>"\u9996",
    "\u2FB9"=>"\u9999",
    "\u2FBA"=>"\u99AC",
    "\u2FBB"=>"\u9AA8",
    "\u2FBC"=>"\u9AD8",
    "\u2FBD"=>"\u9ADF",
    "\u2FBE"=>"\u9B25",
    "\u2FBF"=>"\u9B2F",
    "\u2FC0"=>"\u9B32",
    "\u2FC1"=>"\u9B3C",
    "\u2FC2"=>"\u9B5A",
    "\u2FC3"=>"\u9CE5",
    "\u2FC4"=>"\u9E75",
    "\u2FC5"=>"\u9E7F",
    "\u2FC6"=>"\u9EA5",
    "\u2FC7"=>"\u9EBB",
    "\u2FC8"=>"\u9EC3",
    "\u2FC9"=>"\u9ECD",
    "\u2FCA"=>"\u9ED1",
    "\u2FCB"=>"\u9EF9",
    "\u2FCC"=>"\u9EFD",
    "\u2FCD"=>"\u9F0E",
    "\u2FCE"=>"\u9F13",
    "\u2FCF"=>"\u9F20",
    "\u2FD0"=>"\u9F3B",
    "\u2FD1"=>"\u9F4A",
    "\u2FD2"=>"\u9F52",
    "\u2FD3"=>"\u9F8D",
    "\u2FD4"=>"\u9F9C",
    "\u2FD5"=>"\u9FA0",
    "\u3000"=>" ",
    "\u3036"=>"\u3012",
    "\u3038"=>"\u5341",
    "\u3039"=>"\u5344",
    "\u303A"=>"\u5345",
    "\u309B"=>" \u3099",
    "\u309C"=>" \u309A",
    "\u309F"=>"\u3088\u308A",
    "\u30FF"=>"\u30B3\u30C8",
    "\u3131"=>"\u1100",
    "\u3132"=>"\u1101",
    "\u3133"=>"\u11AA",
    "\u3134"=>"\u1102",
    "\u3135"=>"\u11AC",
    "\u3136"=>"\u11AD",
    "\u3137"=>"\u1103",
    "\u3138"=>"\u1104",
    "\u3139"=>"\u1105",
    "\u313A"=>"\u11B0",
    "\u313B"=>"\u11B1",
    "\u313C"=>"\u11B2",
    "\u313D"=>"\u11B3",
    "\u313E"=>"\u11B4",
    "\u313F"=>"\u11B5",
    "\u3140"=>"\u111A",
    "\u3141"=>"\u1106",
    "\u3142"=>"\u1107",
    "\u3143"=>"\u1108",
    "\u3144"=>"\u1121",
    "\u3145"=>"\u1109",
    "\u3146"=>"\u110A",
    "\u3147"=>"\u110B",
    "\u3148"=>"\u110C",
    "\u3149"=>"\u110D",
    "\u314A"=>"\u110E",
    "\u314B"=>"\u110F",
    "\u314C"=>"\u1110",
    "\u314D"=>"\u1111",
    "\u314E"=>"\u1112",
    "\u314F"=>"\u1161",
    "\u3150"=>"\u1162",
    "\u3151"=>"\u1163",
    "\u3152"=>"\u1164",
    "\u3153"=>"\u1165",
    "\u3154"=>"\u1166",
    "\u3155"=>"\u1167",
    "\u3156"=>"\u1168",
    "\u3157"=>"\u1169",
    "\u3158"=>"\u116A",
    "\u3159"=>"\u116B",
    "\u315A"=>"\u116C",
    "\u315B"=>"\u116D",
    "\u315C"=>"\u116E",
    "\u315D"=>"\u116F",
    "\u315E"=>"\u1170",
    "\u315F"=>"\u1171",
    "\u3160"=>"\u1172",
    "\u3161"=>"\u1173",
    "\u3162"=>"\u1174",
    "\u3163"=>"\u1175",
    "\u3164"=>"\u1160",
    "\u3165"=>"\u1114",
    "\u3166"=>"\u1115",
    "\u3167"=>"\u11C7",
    "\u3168"=>"\u11C8",
    "\u3169"=>"\u11CC",
    "\u316A"=>"\u11CE",
    "\u316B"=>"\u11D3",
    "\u316C"=>"\u11D7",
    "\u316D"=>"\u11D9",
    "\u316E"=>"\u111C",
    "\u316F"=>"\u11DD",
    "\u3170"=>"\u11DF",
    "\u3171"=>"\u111D",
    "\u3172"=>"\u111E",
    "\u3173"=>"\u1120",
    "\u3174"=>"\u1122",
    "\u3175"=>"\u1123",
    "\u3176"=>"\u1127",
    "\u3177"=>"\u1129",
    "\u3178"=>"\u112B",
    "\u3179"=>"\u112C",
    "\u317A"=>"\u112D",
    "\u317B"=>"\u112E",
    "\u317C"=>"\u112F",
    "\u317D"=>"\u1132",
    "\u317E"=>"\u1136",
    "\u317F"=>"\u1140",
    "\u3180"=>"\u1147",
    "\u3181"=>"\u114C",
    "\u3182"=>"\u11F1",
    "\u3183"=>"\u11F2",
    "\u3184"=>"\u1157",
    "\u3185"=>"\u1158",
    "\u3186"=>"\u1159",
    "\u3187"=>"\u1184",
    "\u3188"=>"\u1185",
    "\u3189"=>"\u1188",
    "\u318A"=>"\u1191",
    "\u318B"=>"\u1192",
    "\u318C"=>"\u1194",
    "\u318D"=>"\u119E",
    "\u318E"=>"\u11A1",
    "\u3192"=>"\u4E00",
    "\u3193"=>"\u4E8C",
    "\u3194"=>"\u4E09",
    "\u3195"=>"\u56DB",
    "\u3196"=>"\u4E0A",
    "\u3197"=>"\u4E2D",
    "\u3198"=>"\u4E0B",
    "\u3199"=>"\u7532",
    "\u319A"=>"\u4E59",
    "\u319B"=>"\u4E19",
    "\u319C"=>"\u4E01",
    "\u319D"=>"\u5929",
    "\u319E"=>"\u5730",
    "\u319F"=>"\u4EBA",
    "\u3200"=>"(\u1100)",
    "\u3201"=>"(\u1102)",
    "\u3202"=>"(\u1103)",
    "\u3203"=>"(\u1105)",
    "\u3204"=>"(\u1106)",
    "\u3205"=>"(\u1107)",
    "\u3206"=>"(\u1109)",
    "\u3207"=>"(\u110B)",
    "\u3208"=>"(\u110C)",
    "\u3209"=>"(\u110E)",
    "\u320A"=>"(\u110F)",
    "\u320B"=>"(\u1110)",
    "\u320C"=>"(\u1111)",
    "\u320D"=>"(\u1112)",
    "\u320E"=>"(\u1100\u1161)",
    "\u320F"=>"(\u1102\u1161)",
    "\u3210"=>"(\u1103\u1161)",
    "\u3211"=>"(\u1105\u1161)",
    "\u3212"=>"(\u1106\u1161)",
    "\u3213"=>"(\u1107\u1161)",
    "\u3214"=>"(\u1109\u1161)",
    "\u3215"=>"(\u110B\u1161)",
    "\u3216"=>"(\u110C\u1161)",
    "\u3217"=>"(\u110E\u1161)",
    "\u3218"=>"(\u110F\u1161)",
    "\u3219"=>"(\u1110\u1161)",
    "\u321A"=>"(\u1111\u1161)",
    "\u321B"=>"(\u1112\u1161)",
    "\u321C"=>"(\u110C\u116E)",
    "\u321D"=>"(\u110B\u1169\u110C\u1165\u11AB)",
    "\u321E"=>"(\u110B\u1169\u1112\u116E)",
    "\u3220"=>"(\u4E00)",
    "\u3221"=>"(\u4E8C)",
    "\u3222"=>"(\u4E09)",
    "\u3223"=>"(\u56DB)",
    "\u3224"=>"(\u4E94)",
    "\u3225"=>"(\u516D)",
    "\u3226"=>"(\u4E03)",
    "\u3227"=>"(\u516B)",
    "\u3228"=>"(\u4E5D)",
    "\u3229"=>"(\u5341)",
    "\u322A"=>"(\u6708)",
    "\u322B"=>"(\u706B)",
    "\u322C"=>"(\u6C34)",
    "\u322D"=>"(\u6728)",
    "\u322E"=>"(\u91D1)",
    "\u322F"=>"(\u571F)",
    "\u3230"=>"(\u65E5)",
    "\u3231"=>"(\u682A)",
    "\u3232"=>"(\u6709)",
    "\u3233"=>"(\u793E)",
    "\u3234"=>"(\u540D)",
    "\u3235"=>"(\u7279)",
    "\u3236"=>"(\u8CA1)",
    "\u3237"=>"(\u795D)",
    "\u3238"=>"(\u52B4)",
    "\u3239"=>"(\u4EE3)",
    "\u323A"=>"(\u547C)",
    "\u323B"=>"(\u5B66)",
    "\u323C"=>"(\u76E3)",
    "\u323D"=>"(\u4F01)",
    "\u323E"=>"(\u8CC7)",
    "\u323F"=>"(\u5354)",
    "\u3240"=>"(\u796D)",
    "\u3241"=>"(\u4F11)",
    "\u3242"=>"(\u81EA)",
    "\u3243"=>"(\u81F3)",
    "\u3244"=>"\u554F",
    "\u3245"=>"\u5E7C",
    "\u3246"=>"\u6587",
    "\u3247"=>"\u7B8F",
    "\u3250"=>"PTE",
    "\u3251"=>"21",
    "\u3252"=>"22",
    "\u3253"=>"23",
    "\u3254"=>"24",
    "\u3255"=>"25",
    "\u3256"=>"26",
    "\u3257"=>"27",
    "\u3258"=>"28",
    "\u3259"=>"29",
    "\u325A"=>"30",
    "\u325B"=>"31",
    "\u325C"=>"32",
    "\u325D"=>"33",
    "\u325E"=>"34",
    "\u325F"=>"35",
    "\u3260"=>"\u1100",
    "\u3261"=>"\u1102",
    "\u3262"=>"\u1103",
    "\u3263"=>"\u1105",
    "\u3264"=>"\u1106",
    "\u3265"=>"\u1107",
    "\u3266"=>"\u1109",
    "\u3267"=>"\u110B",
    "\u3268"=>"\u110C",
    "\u3269"=>"\u110E",
    "\u326A"=>"\u110F",
    "\u326B"=>"\u1110",
    "\u326C"=>"\u1111",
    "\u326D"=>"\u1112",
    "\u326E"=>"\u1100\u1161",
    "\u326F"=>"\u1102\u1161",
    "\u3270"=>"\u1103\u1161",
    "\u3271"=>"\u1105\u1161",
    "\u3272"=>"\u1106\u1161",
    "\u3273"=>"\u1107\u1161",
    "\u3274"=>"\u1109\u1161",
    "\u3275"=>"\u110B\u1161",
    "\u3276"=>"\u110C\u1161",
    "\u3277"=>"\u110E\u1161",
    "\u3278"=>"\u110F\u1161",
    "\u3279"=>"\u1110\u1161",
    "\u327A"=>"\u1111\u1161",
    "\u327B"=>"\u1112\u1161",
    "\u327C"=>"\u110E\u1161\u11B7\u1100\u1169",
    "\u327D"=>"\u110C\u116E\u110B\u1174",
    "\u327E"=>"\u110B\u116E",
    "\u3280"=>"\u4E00",
    "\u3281"=>"\u4E8C",
    "\u3282"=>"\u4E09",
    "\u3283"=>"\u56DB",
    "\u3284"=>"\u4E94",
    "\u3285"=>"\u516D",
    "\u3286"=>"\u4E03",
    "\u3287"=>"\u516B",
    "\u3288"=>"\u4E5D",
    "\u3289"=>"\u5341",
    "\u328A"=>"\u6708",
    "\u328B"=>"\u706B",
    "\u328C"=>"\u6C34",
    "\u328D"=>"\u6728",
    "\u328E"=>"\u91D1",
    "\u328F"=>"\u571F",
    "\u3290"=>"\u65E5",
    "\u3291"=>"\u682A",
    "\u3292"=>"\u6709",
    "\u3293"=>"\u793E",
    "\u3294"=>"\u540D",
    "\u3295"=>"\u7279",
    "\u3296"=>"\u8CA1",
    "\u3297"=>"\u795D",
    "\u3298"=>"\u52B4",
    "\u3299"=>"\u79D8",
    "\u329A"=>"\u7537",
    "\u329B"=>"\u5973",
    "\u329C"=>"\u9069",
    "\u329D"=>"\u512A",
    "\u329E"=>"\u5370",
    "\u329F"=>"\u6CE8",
    "\u32A0"=>"\u9805",
    "\u32A1"=>"\u4F11",
    "\u32A2"=>"\u5199",
    "\u32A3"=>"\u6B63",
    "\u32A4"=>"\u4E0A",
    "\u32A5"=>"\u4E2D",
    "\u32A6"=>"\u4E0B",
    "\u32A7"=>"\u5DE6",
    "\u32A8"=>"\u53F3",
    "\u32A9"=>"\u533B",
    "\u32AA"=>"\u5B97",
    "\u32AB"=>"\u5B66",
    "\u32AC"=>"\u76E3",
    "\u32AD"=>"\u4F01",
    "\u32AE"=>"\u8CC7",
    "\u32AF"=>"\u5354",
    "\u32B0"=>"\u591C",
    "\u32B1"=>"36",
    "\u32B2"=>"37",
    "\u32B3"=>"38",
    "\u32B4"=>"39",
    "\u32B5"=>"40",
    "\u32B6"=>"41",
    "\u32B7"=>"42",
    "\u32B8"=>"43",
    "\u32B9"=>"44",
    "\u32BA"=>"45",
    "\u32BB"=>"46",
    "\u32BC"=>"47",
    "\u32BD"=>"48",
    "\u32BE"=>"49",
    "\u32BF"=>"50",
    "\u32C0"=>"1\u6708",
    "\u32C1"=>"2\u6708",
    "\u32C2"=>"3\u6708",
    "\u32C3"=>"4\u6708",
    "\u32C4"=>"5\u6708",
    "\u32C5"=>"6\u6708",
    "\u32C6"=>"7\u6708",
    "\u32C7"=>"8\u6708",
    "\u32C8"=>"9\u6708",
    "\u32C9"=>"10\u6708",
    "\u32CA"=>"11\u6708",
    "\u32CB"=>"12\u6708",
    "\u32CC"=>"Hg",
    "\u32CD"=>"erg",
    "\u32CE"=>"eV",
    "\u32CF"=>"LTD",
    "\u32D0"=>"\u30A2",
    "\u32D1"=>"\u30A4",
    "\u32D2"=>"\u30A6",
    "\u32D3"=>"\u30A8",
    "\u32D4"=>"\u30AA",
    "\u32D5"=>"\u30AB",
    "\u32D6"=>"\u30AD",
    "\u32D7"=>"\u30AF",
    "\u32D8"=>"\u30B1",
    "\u32D9"=>"\u30B3",
    "\u32DA"=>"\u30B5",
    "\u32DB"=>"\u30B7",
    "\u32DC"=>"\u30B9",
    "\u32DD"=>"\u30BB",
    "\u32DE"=>"\u30BD",
    "\u32DF"=>"\u30BF",
    "\u32E0"=>"\u30C1",
    "\u32E1"=>"\u30C4",
    "\u32E2"=>"\u30C6",
    "\u32E3"=>"\u30C8",
    "\u32E4"=>"\u30CA",
    "\u32E5"=>"\u30CB",
    "\u32E6"=>"\u30CC",
    "\u32E7"=>"\u30CD",
    "\u32E8"=>"\u30CE",
    "\u32E9"=>"\u30CF",
    "\u32EA"=>"\u30D2",
    "\u32EB"=>"\u30D5",
    "\u32EC"=>"\u30D8",
    "\u32ED"=>"\u30DB",
    "\u32EE"=>"\u30DE",
    "\u32EF"=>"\u30DF",
    "\u32F0"=>"\u30E0",
    "\u32F1"=>"\u30E1",
    "\u32F2"=>"\u30E2",
    "\u32F3"=>"\u30E4",
    "\u32F4"=>"\u30E6",
    "\u32F5"=>"\u30E8",
    "\u32F6"=>"\u30E9",
    "\u32F7"=>"\u30EA",
    "\u32F8"=>"\u30EB",
    "\u32F9"=>"\u30EC",
    "\u32FA"=>"\u30ED",
    "\u32FB"=>"\u30EF",
    "\u32FC"=>"\u30F0",
    "\u32FD"=>"\u30F1",
    "\u32FE"=>"\u30F2",
    "\u32FF"=>"\u4EE4\u548C",
    "\u3300"=>"\u30A2\u30D1\u30FC\u30C8",
    "\u3301"=>"\u30A2\u30EB\u30D5\u30A1",
    "\u3302"=>"\u30A2\u30F3\u30DA\u30A2",
    "\u3303"=>"\u30A2\u30FC\u30EB",
    "\u3304"=>"\u30A4\u30CB\u30F3\u30B0",
    "\u3305"=>"\u30A4\u30F3\u30C1",
    "\u3306"=>"\u30A6\u30A9\u30F3",
    "\u3307"=>"\u30A8\u30B9\u30AF\u30FC\u30C9",
    "\u3308"=>"\u30A8\u30FC\u30AB\u30FC",
    "\u3309"=>"\u30AA\u30F3\u30B9",
    "\u330A"=>"\u30AA\u30FC\u30E0",
    "\u330B"=>"\u30AB\u30A4\u30EA",
    "\u330C"=>"\u30AB\u30E9\u30C3\u30C8",
    "\u330D"=>"\u30AB\u30ED\u30EA\u30FC",
    "\u330E"=>"\u30AC\u30ED\u30F3",
    "\u330F"=>"\u30AC\u30F3\u30DE",
    "\u3310"=>"\u30AE\u30AC",
    "\u3311"=>"\u30AE\u30CB\u30FC",
    "\u3312"=>"\u30AD\u30E5\u30EA\u30FC",
    "\u3313"=>"\u30AE\u30EB\u30C0\u30FC",
    "\u3314"=>"\u30AD\u30ED",
    "\u3315"=>"\u30AD\u30ED\u30B0\u30E9\u30E0",
    "\u3316"=>"\u30AD\u30ED\u30E1\u30FC\u30C8\u30EB",
    "\u3317"=>"\u30AD\u30ED\u30EF\u30C3\u30C8",
    "\u3318"=>"\u30B0\u30E9\u30E0",
    "\u3319"=>"\u30B0\u30E9\u30E0\u30C8\u30F3",
    "\u331A"=>"\u30AF\u30EB\u30BC\u30A4\u30ED",
    "\u331B"=>"\u30AF\u30ED\u30FC\u30CD",
    "\u331C"=>"\u30B1\u30FC\u30B9",
    "\u331D"=>"\u30B3\u30EB\u30CA",
    "\u331E"=>"\u30B3\u30FC\u30DD",
    "\u331F"=>"\u30B5\u30A4\u30AF\u30EB",
    "\u3320"=>"\u30B5\u30F3\u30C1\u30FC\u30E0",
    "\u3321"=>"\u30B7\u30EA\u30F3\u30B0",
    "\u3322"=>"\u30BB\u30F3\u30C1",
    "\u3323"=>"\u30BB\u30F3\u30C8",
    "\u3324"=>"\u30C0\u30FC\u30B9",
    "\u3325"=>"\u30C7\u30B7",
    "\u3326"=>"\u30C9\u30EB",
    "\u3327"=>"\u30C8\u30F3",
    "\u3328"=>"\u30CA\u30CE",
    "\u3329"=>"\u30CE\u30C3\u30C8",
    "\u332A"=>"\u30CF\u30A4\u30C4",
    "\u332B"=>"\u30D1\u30FC\u30BB\u30F3\u30C8",
    "\u332C"=>"\u30D1\u30FC\u30C4",
    "\u332D"=>"\u30D0\u30FC\u30EC\u30EB",
    "\u332E"=>"\u30D4\u30A2\u30B9\u30C8\u30EB",
    "\u332F"=>"\u30D4\u30AF\u30EB",
    "\u3330"=>"\u30D4\u30B3",
    "\u3331"=>"\u30D3\u30EB",
    "\u3332"=>"\u30D5\u30A1\u30E9\u30C3\u30C9",
    "\u3333"=>"\u30D5\u30A3\u30FC\u30C8",
    "\u3334"=>"\u30D6\u30C3\u30B7\u30A7\u30EB",
    "\u3335"=>"\u30D5\u30E9\u30F3",
    "\u3336"=>"\u30D8\u30AF\u30BF\u30FC\u30EB",
    "\u3337"=>"\u30DA\u30BD",
    "\u3338"=>"\u30DA\u30CB\u30D2",
    "\u3339"=>"\u30D8\u30EB\u30C4",
    "\u333A"=>"\u30DA\u30F3\u30B9",
    "\u333B"=>"\u30DA\u30FC\u30B8",
    "\u333C"=>"\u30D9\u30FC\u30BF",
    "\u333D"=>"\u30DD\u30A4\u30F3\u30C8",
    "\u333E"=>"\u30DC\u30EB\u30C8",
    "\u333F"=>"\u30DB\u30F3",
    "\u3340"=>"\u30DD\u30F3\u30C9",
    "\u3341"=>"\u30DB\u30FC\u30EB",
    "\u3342"=>"\u30DB\u30FC\u30F3",
    "\u3343"=>"\u30DE\u30A4\u30AF\u30ED",
    "\u3344"=>"\u30DE\u30A4\u30EB",
    "\u3345"=>"\u30DE\u30C3\u30CF",
    "\u3346"=>"\u30DE\u30EB\u30AF",
    "\u3347"=>"\u30DE\u30F3\u30B7\u30E7\u30F3",
    "\u3348"=>"\u30DF\u30AF\u30ED\u30F3",
    "\u3349"=>"\u30DF\u30EA",
    "\u334A"=>"\u30DF\u30EA\u30D0\u30FC\u30EB",
    "\u334B"=>"\u30E1\u30AC",
    "\u334C"=>"\u30E1\u30AC\u30C8\u30F3",
    "\u334D"=>"\u30E1\u30FC\u30C8\u30EB",
    "\u334E"=>"\u30E4\u30FC\u30C9",
    "\u334F"=>"\u30E4\u30FC\u30EB",
    "\u3350"=>"\u30E6\u30A2\u30F3",
    "\u3351"=>"\u30EA\u30C3\u30C8\u30EB",
    "\u3352"=>"\u30EA\u30E9",
    "\u3353"=>"\u30EB\u30D4\u30FC",
    "\u3354"=>"\u30EB\u30FC\u30D6\u30EB",
    "\u3355"=>"\u30EC\u30E0",
    "\u3356"=>"\u30EC\u30F3\u30C8\u30B2\u30F3",
    "\u3357"=>"\u30EF\u30C3\u30C8",
    "\u3358"=>"0\u70B9",
    "\u3359"=>"1\u70B9",
    "\u335A"=>"2\u70B9",
    "\u335B"=>"3\u70B9",
    "\u335C"=>"4\u70B9",
    "\u335D"=>"5\u70B9",
    "\u335E"=>"6\u70B9",
    "\u335F"=>"7\u70B9",
    "\u3360"=>"8\u70B9",
    "\u3361"=>"9\u70B9",
    "\u3362"=>"10\u70B9",
    "\u3363"=>"11\u70B9",
    "\u3364"=>"12\u70B9",
    "\u3365"=>"13\u70B9",
    "\u3366"=>"14\u70B9",
    "\u3367"=>"15\u70B9",
    "\u3368"=>"16\u70B9",
    "\u3369"=>"17\u70B9",
    "\u336A"=>"18\u70B9",
    "\u336B"=>"19\u70B9",
    "\u336C"=>"20\u70B9",
    "\u336D"=>"21\u70B9",
    "\u336E"=>"22\u70B9",
    "\u336F"=>"23\u70B9",
    "\u3370"=>"24\u70B9",
    "\u3371"=>"hPa",
    "\u3372"=>"da",
    "\u3373"=>"AU",
    "\u3374"=>"bar",
    "\u3375"=>"oV",
    "\u3376"=>"pc",
    "\u3377"=>"dm",
    "\u3378"=>"dm2",
    "\u3379"=>"dm3",
    "\u337A"=>"IU",
    "\u337B"=>"\u5E73\u6210",
    "\u337C"=>"\u662D\u548C",
    "\u337D"=>"\u5927\u6B63",
    "\u337E"=>"\u660E\u6CBB",
    "\u337F"=>"\u682A\u5F0F\u4F1A\u793E",
    "\u3380"=>"pA",
    "\u3381"=>"nA",
    "\u3382"=>"\u03BCA",
    "\u3383"=>"mA",
    "\u3384"=>"kA",
    "\u3385"=>"KB",
    "\u3386"=>"MB",
    "\u3387"=>"GB",
    "\u3388"=>"cal",
    "\u3389"=>"kcal",
    "\u338A"=>"pF",
    "\u338B"=>"nF",
    "\u338C"=>"\u03BCF",
    "\u338D"=>"\u03BCg",
    "\u338E"=>"mg",
    "\u338F"=>"kg",
    "\u3390"=>"Hz",
    "\u3391"=>"kHz",
    "\u3392"=>"MHz",
    "\u3393"=>"GHz",
    "\u3394"=>"THz",
    "\u3395"=>"\u03BCl",
    "\u3396"=>"ml",
    "\u3397"=>"dl",
    "\u3398"=>"kl",
    "\u3399"=>"fm",
    "\u339A"=>"nm",
    "\u339B"=>"\u03BCm",
    "\u339C"=>"mm",
    "\u339D"=>"cm",
    "\u339E"=>"km",
    "\u339F"=>"mm2",
    "\u33A0"=>"cm2",
    "\u33A1"=>"m2",
    "\u33A2"=>"km2",
    "\u33A3"=>"mm3",
    "\u33A4"=>"cm3",
    "\u33A5"=>"m3",
    "\u33A6"=>"km3",
    "\u33A7"=>"m\u2215s",
    "\u33A8"=>"m\u2215s2",
    "\u33A9"=>"Pa",
    "\u33AA"=>"kPa",
    "\u33AB"=>"MPa",
    "\u33AC"=>"GPa",
    "\u33AD"=>"rad",
    "\u33AE"=>"rad\u2215s",
    "\u33AF"=>"rad\u2215s2",
    "\u33B0"=>"ps",
    "\u33B1"=>"ns",
    "\u33B2"=>"\u03BCs",
    "\u33B3"=>"ms",
    "\u33B4"=>"pV",
    "\u33B5"=>"nV",
    "\u33B6"=>"\u03BCV",
    "\u33B7"=>"mV",
    "\u33B8"=>"kV",
    "\u33B9"=>"MV",
    "\u33BA"=>"pW",
    "\u33BB"=>"nW",
    "\u33BC"=>"\u03BCW",
    "\u33BD"=>"mW",
    "\u33BE"=>"kW",
    "\u33BF"=>"MW",
    "\u33C0"=>"k\u03A9",
    "\u33C1"=>"M\u03A9",
    "\u33C2"=>"a.m.",
    "\u33C3"=>"Bq",
    "\u33C4"=>"cc",
    "\u33C5"=>"cd",
    "\u33C6"=>"C\u2215kg",
    "\u33C7"=>"Co.",
    "\u33C8"=>"dB",
    "\u33C9"=>"Gy",
    "\u33CA"=>"ha",
    "\u33CB"=>"HP",
    "\u33CC"=>"in",
    "\u33CD"=>"KK",
    "\u33CE"=>"KM",
    "\u33CF"=>"kt",
    "\u33D0"=>"lm",
    "\u33D1"=>"ln",
    "\u33D2"=>"log",
    "\u33D3"=>"lx",
    "\u33D4"=>"mb",
    "\u33D5"=>"mil",
    "\u33D6"=>"mol",
    "\u33D7"=>"PH",
    "\u33D8"=>"p.m.",
    "\u33D9"=>"PPM",
    "\u33DA"=>"PR",
    "\u33DB"=>"sr",
    "\u33DC"=>"Sv",
    "\u33DD"=>"Wb",
    "\u33DE"=>"V\u2215m",
    "\u33DF"=>"A\u2215m",
    "\u33E0"=>"1\u65E5",
    "\u33E1"=>"2\u65E5",
    "\u33E2"=>"3\u65E5",
    "\u33E3"=>"4\u65E5",
    "\u33E4"=>"5\u65E5",
    "\u33E5"=>"6\u65E5",
    "\u33E6"=>"7\u65E5",
    "\u33E7"=>"8\u65E5",
    "\u33E8"=>"9\u65E5",
    "\u33E9"=>"10\u65E5",
    "\u33EA"=>"11\u65E5",
    "\u33EB"=>"12\u65E5",
    "\u33EC"=>"13\u65E5",
    "\u33ED"=>"14\u65E5",
    "\u33EE"=>"15\u65E5",
    "\u33EF"=>"16\u65E5",
    "\u33F0"=>"17\u65E5",
    "\u33F1"=>"18\u65E5",
    "\u33F2"=>"19\u65E5",
    "\u33F3"=>"20\u65E5",
    "\u33F4"=>"21\u65E5",
    "\u33F5"=>"22\u65E5",
    "\u33F6"=>"23\u65E5",
    "\u33F7"=>"24\u65E5",
    "\u33F8"=>"25\u65E5",
    "\u33F9"=>"26\u65E5",
    "\u33FA"=>"27\u65E5",
    "\u33FB"=>"28\u65E5",
    "\u33FC"=>"29\u65E5",
    "\u33FD"=>"30\u65E5",
    "\u33FE"=>"31\u65E5",
    "\u33FF"=>"gal",
    "\uA69C"=>"\u044A",
    "\uA69D"=>"\u044C",
    "\uA770"=>"\uA76F",
    "\uA7F8"=>"\u0126",
    "\uA7F9"=>"\u0153",
    "\uAB5C"=>"\uA727",
    "\uAB5D"=>"\uAB37",
    "\uAB5E"=>"\u026B",
    "\uAB5F"=>"\uAB52",
    "\uFB00"=>"ff",
    "\uFB01"=>"fi",
    "\uFB02"=>"fl",
    "\uFB03"=>"ffi",
    "\uFB04"=>"ffl",
    "\uFB05"=>"st",
    "\uFB06"=>"st",
    "\uFB13"=>"\u0574\u0576",
    "\uFB14"=>"\u0574\u0565",
    "\uFB15"=>"\u0574\u056B",
    "\uFB16"=>"\u057E\u0576",
    "\uFB17"=>"\u0574\u056D",
    "\uFB20"=>"\u05E2",
    "\uFB21"=>"\u05D0",
    "\uFB22"=>"\u05D3",
    "\uFB23"=>"\u05D4",
    "\uFB24"=>"\u05DB",
    "\uFB25"=>"\u05DC",
    "\uFB26"=>"\u05DD",
    "\uFB27"=>"\u05E8",
    "\uFB28"=>"\u05EA",
    "\uFB29"=>"+",
    "\uFB4F"=>"\u05D0\u05DC",
    "\uFB50"=>"\u0671",
    "\uFB51"=>"\u0671",
    "\uFB52"=>"\u067B",
    "\uFB53"=>"\u067B",
    "\uFB54"=>"\u067B",
    "\uFB55"=>"\u067B",
    "\uFB56"=>"\u067E",
    "\uFB57"=>"\u067E",
    "\uFB58"=>"\u067E",
    "\uFB59"=>"\u067E",
    "\uFB5A"=>"\u0680",
    "\uFB5B"=>"\u0680",
    "\uFB5C"=>"\u0680",
    "\uFB5D"=>"\u0680",
    "\uFB5E"=>"\u067A",
    "\uFB5F"=>"\u067A",
    "\uFB60"=>"\u067A",
    "\uFB61"=>"\u067A",
    "\uFB62"=>"\u067F",
    "\uFB63"=>"\u067F",
    "\uFB64"=>"\u067F",
    "\uFB65"=>"\u067F",
    "\uFB66"=>"\u0679",
    "\uFB67"=>"\u0679",
    "\uFB68"=>"\u0679",
    "\uFB69"=>"\u0679",
    "\uFB6A"=>"\u06A4",
    "\uFB6B"=>"\u06A4",
    "\uFB6C"=>"\u06A4",
    "\uFB6D"=>"\u06A4",
    "\uFB6E"=>"\u06A6",
    "\uFB6F"=>"\u06A6",
    "\uFB70"=>"\u06A6",
    "\uFB71"=>"\u06A6",
    "\uFB72"=>"\u0684",
    "\uFB73"=>"\u0684",
    "\uFB74"=>"\u0684",
    "\uFB75"=>"\u0684",
    "\uFB76"=>"\u0683",
    "\uFB77"=>"\u0683",
    "\uFB78"=>"\u0683",
    "\uFB79"=>"\u0683",
    "\uFB7A"=>"\u0686",
    "\uFB7B"=>"\u0686",
    "\uFB7C"=>"\u0686",
    "\uFB7D"=>"\u0686",
    "\uFB7E"=>"\u0687",
    "\uFB7F"=>"\u0687",
    "\uFB80"=>"\u0687",
    "\uFB81"=>"\u0687",
    "\uFB82"=>"\u068D",
    "\uFB83"=>"\u068D",
    "\uFB84"=>"\u068C",
    "\uFB85"=>"\u068C",
    "\uFB86"=>"\u068E",
    "\uFB87"=>"\u068E",
    "\uFB88"=>"\u0688",
    "\uFB89"=>"\u0688",
    "\uFB8A"=>"\u0698",
    "\uFB8B"=>"\u0698",
    "\uFB8C"=>"\u0691",
    "\uFB8D"=>"\u0691",
    "\uFB8E"=>"\u06A9",
    "\uFB8F"=>"\u06A9",
    "\uFB90"=>"\u06A9",
    "\uFB91"=>"\u06A9",
    "\uFB92"=>"\u06AF",
    "\uFB93"=>"\u06AF",
    "\uFB94"=>"\u06AF",
    "\uFB95"=>"\u06AF",
    "\uFB96"=>"\u06B3",
    "\uFB97"=>"\u06B3",
    "\uFB98"=>"\u06B3",
    "\uFB99"=>"\u06B3",
    "\uFB9A"=>"\u06B1",
    "\uFB9B"=>"\u06B1",
    "\uFB9C"=>"\u06B1",
    "\uFB9D"=>"\u06B1",
    "\uFB9E"=>"\u06BA",
    "\uFB9F"=>"\u06BA",
    "\uFBA0"=>"\u06BB",
    "\uFBA1"=>"\u06BB",
    "\uFBA2"=>"\u06BB",
    "\uFBA3"=>"\u06BB",
    "\uFBA4"=>"\u06C0",
    "\uFBA5"=>"\u06C0",
    "\uFBA6"=>"\u06C1",
    "\uFBA7"=>"\u06C1",
    "\uFBA8"=>"\u06C1",
    "\uFBA9"=>"\u06C1",
    "\uFBAA"=>"\u06BE",
    "\uFBAB"=>"\u06BE",
    "\uFBAC"=>"\u06BE",
    "\uFBAD"=>"\u06BE",
    "\uFBAE"=>"\u06D2",
    "\uFBAF"=>"\u06D2",
    "\uFBB0"=>"\u06D3",
    "\uFBB1"=>"\u06D3",
    "\uFBD3"=>"\u06AD",
    "\uFBD4"=>"\u06AD",
    "\uFBD5"=>"\u06AD",
    "\uFBD6"=>"\u06AD",
    "\uFBD7"=>"\u06C7",
    "\uFBD8"=>"\u06C7",
    "\uFBD9"=>"\u06C6",
    "\uFBDA"=>"\u06C6",
    "\uFBDB"=>"\u06C8",
    "\uFBDC"=>"\u06C8",
    "\uFBDD"=>"\u06C7\u0674",
    "\uFBDE"=>"\u06CB",
    "\uFBDF"=>"\u06CB",
    "\uFBE0"=>"\u06C5",
    "\uFBE1"=>"\u06C5",
    "\uFBE2"=>"\u06C9",
    "\uFBE3"=>"\u06C9",
    "\uFBE4"=>"\u06D0",
    "\uFBE5"=>"\u06D0",
    "\uFBE6"=>"\u06D0",
    "\uFBE7"=>"\u06D0",
    "\uFBE8"=>"\u0649",
    "\uFBE9"=>"\u0649",
    "\uFBEA"=>"\u0626\u0627",
    "\uFBEB"=>"\u0626\u0627",
    "\uFBEC"=>"\u0626\u06D5",
    "\uFBED"=>"\u0626\u06D5",
    "\uFBEE"=>"\u0626\u0648",
    "\uFBEF"=>"\u0626\u0648",
    "\uFBF0"=>"\u0626\u06C7",
    "\uFBF1"=>"\u0626\u06C7",
    "\uFBF2"=>"\u0626\u06C6",
    "\uFBF3"=>"\u0626\u06C6",
    "\uFBF4"=>"\u0626\u06C8",
    "\uFBF5"=>"\u0626\u06C8",
    "\uFBF6"=>"\u0626\u06D0",
    "\uFBF7"=>"\u0626\u06D0",
    "\uFBF8"=>"\u0626\u06D0",
    "\uFBF9"=>"\u0626\u0649",
    "\uFBFA"=>"\u0626\u0649",
    "\uFBFB"=>"\u0626\u0649",
    "\uFBFC"=>"\u06CC",
    "\uFBFD"=>"\u06CC",
    "\uFBFE"=>"\u06CC",
    "\uFBFF"=>"\u06CC",
    "\uFC00"=>"\u0626\u062C",
    "\uFC01"=>"\u0626\u062D",
    "\uFC02"=>"\u0626\u0645",
    "\uFC03"=>"\u0626\u0649",
    "\uFC04"=>"\u0626\u064A",
    "\uFC05"=>"\u0628\u062C",
    "\uFC06"=>"\u0628\u062D",
    "\uFC07"=>"\u0628\u062E",
    "\uFC08"=>"\u0628\u0645",
    "\uFC09"=>"\u0628\u0649",
    "\uFC0A"=>"\u0628\u064A",
    "\uFC0B"=>"\u062A\u062C",
    "\uFC0C"=>"\u062A\u062D",
    "\uFC0D"=>"\u062A\u062E",
    "\uFC0E"=>"\u062A\u0645",
    "\uFC0F"=>"\u062A\u0649",
    "\uFC10"=>"\u062A\u064A",
    "\uFC11"=>"\u062B\u062C",
    "\uFC12"=>"\u062B\u0645",
    "\uFC13"=>"\u062B\u0649",
    "\uFC14"=>"\u062B\u064A",
    "\uFC15"=>"\u062C\u062D",
    "\uFC16"=>"\u062C\u0645",
    "\uFC17"=>"\u062D\u062C",
    "\uFC18"=>"\u062D\u0645",
    "\uFC19"=>"\u062E\u062C",
    "\uFC1A"=>"\u062E\u062D",
    "\uFC1B"=>"\u062E\u0645",
    "\uFC1C"=>"\u0633\u062C",
    "\uFC1D"=>"\u0633\u062D",
    "\uFC1E"=>"\u0633\u062E",
    "\uFC1F"=>"\u0633\u0645",
    "\uFC20"=>"\u0635\u062D",
    "\uFC21"=>"\u0635\u0645",
    "\uFC22"=>"\u0636\u062C",
    "\uFC23"=>"\u0636\u062D",
    "\uFC24"=>"\u0636\u062E",
    "\uFC25"=>"\u0636\u0645",
    "\uFC26"=>"\u0637\u062D",
    "\uFC27"=>"\u0637\u0645",
    "\uFC28"=>"\u0638\u0645",
    "\uFC29"=>"\u0639\u062C",
    "\uFC2A"=>"\u0639\u0645",
    "\uFC2B"=>"\u063A\u062C",
    "\uFC2C"=>"\u063A\u0645",
    "\uFC2D"=>"\u0641\u062C",
    "\uFC2E"=>"\u0641\u062D",
    "\uFC2F"=>"\u0641\u062E",
    "\uFC30"=>"\u0641\u0645",
    "\uFC31"=>"\u0641\u0649",
    "\uFC32"=>"\u0641\u064A",
    "\uFC33"=>"\u0642\u062D",
    "\uFC34"=>"\u0642\u0645",
    "\uFC35"=>"\u0642\u0649",
    "\uFC36"=>"\u0642\u064A",
    "\uFC37"=>"\u0643\u0627",
    "\uFC38"=>"\u0643\u062C",
    "\uFC39"=>"\u0643\u062D",
    "\uFC3A"=>"\u0643\u062E",
    "\uFC3B"=>"\u0643\u0644",
    "\uFC3C"=>"\u0643\u0645",
    "\uFC3D"=>"\u0643\u0649",
    "\uFC3E"=>"\u0643\u064A",
    "\uFC3F"=>"\u0644\u062C",
    "\uFC40"=>"\u0644\u062D",
    "\uFC41"=>"\u0644\u062E",
    "\uFC42"=>"\u0644\u0645",
    "\uFC43"=>"\u0644\u0649",
    "\uFC44"=>"\u0644\u064A",
    "\uFC45"=>"\u0645\u062C",
    "\uFC46"=>"\u0645\u062D",
    "\uFC47"=>"\u0645\u062E",
    "\uFC48"=>"\u0645\u0645",
    "\uFC49"=>"\u0645\u0649",
    "\uFC4A"=>"\u0645\u064A",
    "\uFC4B"=>"\u0646\u062C",
    "\uFC4C"=>"\u0646\u062D",
    "\uFC4D"=>"\u0646\u062E",
    "\uFC4E"=>"\u0646\u0645",
    "\uFC4F"=>"\u0646\u0649",
    "\uFC50"=>"\u0646\u064A",
    "\uFC51"=>"\u0647\u062C",
    "\uFC52"=>"\u0647\u0645",
    "\uFC53"=>"\u0647\u0649",
    "\uFC54"=>"\u0647\u064A",
    "\uFC55"=>"\u064A\u062C",
    "\uFC56"=>"\u064A\u062D",
    "\uFC57"=>"\u064A\u062E",
    "\uFC58"=>"\u064A\u0645",
    "\uFC59"=>"\u064A\u0649",
    "\uFC5A"=>"\u064A\u064A",
    "\uFC5B"=>"\u0630\u0670",
    "\uFC5C"=>"\u0631\u0670",
    "\uFC5D"=>"\u0649\u0670",
    "\uFC5E"=>" \u064C\u0651",
    "\uFC5F"=>" \u064D\u0651",
    "\uFC60"=>" \u064E\u0651",
    "\uFC61"=>" \u064F\u0651",
    "\uFC62"=>" \u0650\u0651",
    "\uFC63"=>" \u0651\u0670",
    "\uFC64"=>"\u0626\u0631",
    "\uFC65"=>"\u0626\u0632",
    "\uFC66"=>"\u0626\u0645",
    "\uFC67"=>"\u0626\u0646",
    "\uFC68"=>"\u0626\u0649",
    "\uFC69"=>"\u0626\u064A",
    "\uFC6A"=>"\u0628\u0631",
    "\uFC6B"=>"\u0628\u0632",
    "\uFC6C"=>"\u0628\u0645",
    "\uFC6D"=>"\u0628\u0646",
    "\uFC6E"=>"\u0628\u0649",
    "\uFC6F"=>"\u0628\u064A",
    "\uFC70"=>"\u062A\u0631",
    "\uFC71"=>"\u062A\u0632",
    "\uFC72"=>"\u062A\u0645",
    "\uFC73"=>"\u062A\u0646",
    "\uFC74"=>"\u062A\u0649",
    "\uFC75"=>"\u062A\u064A",
    "\uFC76"=>"\u062B\u0631",
    "\uFC77"=>"\u062B\u0632",
    "\uFC78"=>"\u062B\u0645",
    "\uFC79"=>"\u062B\u0646",
    "\uFC7A"=>"\u062B\u0649",
    "\uFC7B"=>"\u062B\u064A",
    "\uFC7C"=>"\u0641\u0649",
    "\uFC7D"=>"\u0641\u064A",
    "\uFC7E"=>"\u0642\u0649",
    "\uFC7F"=>"\u0642\u064A",
    "\uFC80"=>"\u0643\u0627",
    "\uFC81"=>"\u0643\u0644",
    "\uFC82"=>"\u0643\u0645",
    "\uFC83"=>"\u0643\u0649",
    "\uFC84"=>"\u0643\u064A",
    "\uFC85"=>"\u0644\u0645",
    "\uFC86"=>"\u0644\u0649",
    "\uFC87"=>"\u0644\u064A",
    "\uFC88"=>"\u0645\u0627",
    "\uFC89"=>"\u0645\u0645",
    "\uFC8A"=>"\u0646\u0631",
    "\uFC8B"=>"\u0646\u0632",
    "\uFC8C"=>"\u0646\u0645",
    "\uFC8D"=>"\u0646\u0646",
    "\uFC8E"=>"\u0646\u0649",
    "\uFC8F"=>"\u0646\u064A",
    "\uFC90"=>"\u0649\u0670",
    "\uFC91"=>"\u064A\u0631",
    "\uFC92"=>"\u064A\u0632",
    "\uFC93"=>"\u064A\u0645",
    "\uFC94"=>"\u064A\u0646",
    "\uFC95"=>"\u064A\u0649",
    "\uFC96"=>"\u064A\u064A",
    "\uFC97"=>"\u0626\u062C",
    "\uFC98"=>"\u0626\u062D",
    "\uFC99"=>"\u0626\u062E",
    "\uFC9A"=>"\u0626\u0645",
    "\uFC9B"=>"\u0626\u0647",
    "\uFC9C"=>"\u0628\u062C",
    "\uFC9D"=>"\u0628\u062D",
    "\uFC9E"=>"\u0628\u062E",
    "\uFC9F"=>"\u0628\u0645",
    "\uFCA0"=>"\u0628\u0647",
    "\uFCA1"=>"\u062A\u062C",
    "\uFCA2"=>"\u062A\u062D",
    "\uFCA3"=>"\u062A\u062E",
    "\uFCA4"=>"\u062A\u0645",
    "\uFCA5"=>"\u062A\u0647",
    "\uFCA6"=>"\u062B\u0645",
    "\uFCA7"=>"\u062C\u062D",
    "\uFCA8"=>"\u062C\u0645",
    "\uFCA9"=>"\u062D\u062C",
    "\uFCAA"=>"\u062D\u0645",
    "\uFCAB"=>"\u062E\u062C",
    "\uFCAC"=>"\u062E\u0645",
    "\uFCAD"=>"\u0633\u062C",
    "\uFCAE"=>"\u0633\u062D",
    "\uFCAF"=>"\u0633\u062E",
    "\uFCB0"=>"\u0633\u0645",
    "\uFCB1"=>"\u0635\u062D",
    "\uFCB2"=>"\u0635\u062E",
    "\uFCB3"=>"\u0635\u0645",
    "\uFCB4"=>"\u0636\u062C",
    "\uFCB5"=>"\u0636\u062D",
    "\uFCB6"=>"\u0636\u062E",
    "\uFCB7"=>"\u0636\u0645",
    "\uFCB8"=>"\u0637\u062D",
    "\uFCB9"=>"\u0638\u0645",
    "\uFCBA"=>"\u0639\u062C",
    "\uFCBB"=>"\u0639\u0645",
    "\uFCBC"=>"\u063A\u062C",
    "\uFCBD"=>"\u063A\u0645",
    "\uFCBE"=>"\u0641\u062C",
    "\uFCBF"=>"\u0641\u062D",
    "\uFCC0"=>"\u0641\u062E",
    "\uFCC1"=>"\u0641\u0645",
    "\uFCC2"=>"\u0642\u062D",
    "\uFCC3"=>"\u0642\u0645",
    "\uFCC4"=>"\u0643\u062C",
    "\uFCC5"=>"\u0643\u062D",
    "\uFCC6"=>"\u0643\u062E",
    "\uFCC7"=>"\u0643\u0644",
    "\uFCC8"=>"\u0643\u0645",
    "\uFCC9"=>"\u0644\u062C",
    "\uFCCA"=>"\u0644\u062D",
    "\uFCCB"=>"\u0644\u062E",
    "\uFCCC"=>"\u0644\u0645",
    "\uFCCD"=>"\u0644\u0647",
    "\uFCCE"=>"\u0645\u062C",
    "\uFCCF"=>"\u0645\u062D",
    "\uFCD0"=>"\u0645\u062E",
    "\uFCD1"=>"\u0645\u0645",
    "\uFCD2"=>"\u0646\u062C",
    "\uFCD3"=>"\u0646\u062D",
    "\uFCD4"=>"\u0646\u062E",
    "\uFCD5"=>"\u0646\u0645",
    "\uFCD6"=>"\u0646\u0647",
    "\uFCD7"=>"\u0647\u062C",
    "\uFCD8"=>"\u0647\u0645",
    "\uFCD9"=>"\u0647\u0670",
    "\uFCDA"=>"\u064A\u062C",
    "\uFCDB"=>"\u064A\u062D",
    "\uFCDC"=>"\u064A\u062E",
    "\uFCDD"=>"\u064A\u0645",
    "\uFCDE"=>"\u064A\u0647",
    "\uFCDF"=>"\u0626\u0645",
    "\uFCE0"=>"\u0626\u0647",
    "\uFCE1"=>"\u0628\u0645",
    "\uFCE2"=>"\u0628\u0647",
    "\uFCE3"=>"\u062A\u0645",
    "\uFCE4"=>"\u062A\u0647",
    "\uFCE5"=>"\u062B\u0645",
    "\uFCE6"=>"\u062B\u0647",
    "\uFCE7"=>"\u0633\u0645",
    "\uFCE8"=>"\u0633\u0647",
    "\uFCE9"=>"\u0634\u0645",
    "\uFCEA"=>"\u0634\u0647",
    "\uFCEB"=>"\u0643\u0644",
    "\uFCEC"=>"\u0643\u0645",
    "\uFCED"=>"\u0644\u0645",
    "\uFCEE"=>"\u0646\u0645",
    "\uFCEF"=>"\u0646\u0647",
    "\uFCF0"=>"\u064A\u0645",
    "\uFCF1"=>"\u064A\u0647",
    "\uFCF2"=>"\u0640\u064E\u0651",
    "\uFCF3"=>"\u0640\u064F\u0651",
    "\uFCF4"=>"\u0640\u0650\u0651",
    "\uFCF5"=>"\u0637\u0649",
    "\uFCF6"=>"\u0637\u064A",
    "\uFCF7"=>"\u0639\u0649",
    "\uFCF8"=>"\u0639\u064A",
    "\uFCF9"=>"\u063A\u0649",
    "\uFCFA"=>"\u063A\u064A",
    "\uFCFB"=>"\u0633\u0649",
    "\uFCFC"=>"\u0633\u064A",
    "\uFCFD"=>"\u0634\u0649",
    "\uFCFE"=>"\u0634\u064A",
    "\uFCFF"=>"\u062D\u0649",
    "\uFD00"=>"\u062D\u064A",
    "\uFD01"=>"\u062C\u0649",
    "\uFD02"=>"\u062C\u064A",
    "\uFD03"=>"\u062E\u0649",
    "\uFD04"=>"\u062E\u064A",
    "\uFD05"=>"\u0635\u0649",
    "\uFD06"=>"\u0635\u064A",
    "\uFD07"=>"\u0636\u0649",
    "\uFD08"=>"\u0636\u064A",
    "\uFD09"=>"\u0634\u062C",
    "\uFD0A"=>"\u0634\u062D",
    "\uFD0B"=>"\u0634\u062E",
    "\uFD0C"=>"\u0634\u0645",
    "\uFD0D"=>"\u0634\u0631",
    "\uFD0E"=>"\u0633\u0631",
    "\uFD0F"=>"\u0635\u0631",
    "\uFD10"=>"\u0636\u0631",
    "\uFD11"=>"\u0637\u0649",
    "\uFD12"=>"\u0637\u064A",
    "\uFD13"=>"\u0639\u0649",
    "\uFD14"=>"\u0639\u064A",
    "\uFD15"=>"\u063A\u0649",
    "\uFD16"=>"\u063A\u064A",
    "\uFD17"=>"\u0633\u0649",
    "\uFD18"=>"\u0633\u064A",
    "\uFD19"=>"\u0634\u0649",
    "\uFD1A"=>"\u0634\u064A",
    "\uFD1B"=>"\u062D\u0649",
    "\uFD1C"=>"\u062D\u064A",
    "\uFD1D"=>"\u062C\u0649",
    "\uFD1E"=>"\u062C\u064A",
    "\uFD1F"=>"\u062E\u0649",
    "\uFD20"=>"\u062E\u064A",
    "\uFD21"=>"\u0635\u0649",
    "\uFD22"=>"\u0635\u064A",
    "\uFD23"=>"\u0636\u0649",
    "\uFD24"=>"\u0636\u064A",
    "\uFD25"=>"\u0634\u062C",
    "\uFD26"=>"\u0634\u062D",
    "\uFD27"=>"\u0634\u062E",
    "\uFD28"=>"\u0634\u0645",
    "\uFD29"=>"\u0634\u0631",
    "\uFD2A"=>"\u0633\u0631",
    "\uFD2B"=>"\u0635\u0631",
    "\uFD2C"=>"\u0636\u0631",
    "\uFD2D"=>"\u0634\u062C",
    "\uFD2E"=>"\u0634\u062D",
    "\uFD2F"=>"\u0634\u062E",
    "\uFD30"=>"\u0634\u0645",
    "\uFD31"=>"\u0633\u0647",
    "\uFD32"=>"\u0634\u0647",
    "\uFD33"=>"\u0637\u0645",
    "\uFD34"=>"\u0633\u062C",
    "\uFD35"=>"\u0633\u062D",
    "\uFD36"=>"\u0633\u062E",
    "\uFD37"=>"\u0634\u062C",
    "\uFD38"=>"\u0634\u062D",
    "\uFD39"=>"\u0634\u062E",
    "\uFD3A"=>"\u0637\u0645",
    "\uFD3B"=>"\u0638\u0645",
    "\uFD3C"=>"\u0627\u064B",
    "\uFD3D"=>"\u0627\u064B",
    "\uFD50"=>"\u062A\u062C\u0645",
    "\uFD51"=>"\u062A\u062D\u062C",
    "\uFD52"=>"\u062A\u062D\u062C",
    "\uFD53"=>"\u062A\u062D\u0645",
    "\uFD54"=>"\u062A\u062E\u0645",
    "\uFD55"=>"\u062A\u0645\u062C",
    "\uFD56"=>"\u062A\u0645\u062D",
    "\uFD57"=>"\u062A\u0645\u062E",
    "\uFD58"=>"\u062C\u0645\u062D",
    "\uFD59"=>"\u062C\u0645\u062D",
    "\uFD5A"=>"\u062D\u0645\u064A",
    "\uFD5B"=>"\u062D\u0645\u0649",
    "\uFD5C"=>"\u0633\u062D\u062C",
    "\uFD5D"=>"\u0633\u062C\u062D",
    "\uFD5E"=>"\u0633\u062C\u0649",
    "\uFD5F"=>"\u0633\u0645\u062D",
    "\uFD60"=>"\u0633\u0645\u062D",
    "\uFD61"=>"\u0633\u0645\u062C",
    "\uFD62"=>"\u0633\u0645\u0645",
    "\uFD63"=>"\u0633\u0645\u0645",
    "\uFD64"=>"\u0635\u062D\u062D",
    "\uFD65"=>"\u0635\u062D\u062D",
    "\uFD66"=>"\u0635\u0645\u0645",
    "\uFD67"=>"\u0634\u062D\u0645",
    "\uFD68"=>"\u0634\u062D\u0645",
    "\uFD69"=>"\u0634\u062C\u064A",
    "\uFD6A"=>"\u0634\u0645\u062E",
    "\uFD6B"=>"\u0634\u0645\u062E",
    "\uFD6C"=>"\u0634\u0645\u0645",
    "\uFD6D"=>"\u0634\u0645\u0645",
    "\uFD6E"=>"\u0636\u062D\u0649",
    "\uFD6F"=>"\u0636\u062E\u0645",
    "\uFD70"=>"\u0636\u062E\u0645",
    "\uFD71"=>"\u0637\u0645\u062D",
    "\uFD72"=>"\u0637\u0645\u062D",
    "\uFD73"=>"\u0637\u0645\u0645",
    "\uFD74"=>"\u0637\u0645\u064A",
    "\uFD75"=>"\u0639\u062C\u0645",
    "\uFD76"=>"\u0639\u0645\u0645",
    "\uFD77"=>"\u0639\u0645\u0645",
    "\uFD78"=>"\u0639\u0645\u0649",
    "\uFD79"=>"\u063A\u0645\u0645",
    "\uFD7A"=>"\u063A\u0645\u064A",
    "\uFD7B"=>"\u063A\u0645\u0649",
    "\uFD7C"=>"\u0641\u062E\u0645",
    "\uFD7D"=>"\u0641\u062E\u0645",
    "\uFD7E"=>"\u0642\u0645\u062D",
    "\uFD7F"=>"\u0642\u0645\u0645",
    "\uFD80"=>"\u0644\u062D\u0645",
    "\uFD81"=>"\u0644\u062D\u064A",
    "\uFD82"=>"\u0644\u062D\u0649",
    "\uFD83"=>"\u0644\u062C\u062C",
    "\uFD84"=>"\u0644\u062C\u062C",
    "\uFD85"=>"\u0644\u062E\u0645",
    "\uFD86"=>"\u0644\u062E\u0645",
    "\uFD87"=>"\u0644\u0645\u062D",
    "\uFD88"=>"\u0644\u0645\u062D",
    "\uFD89"=>"\u0645\u062D\u062C",
    "\uFD8A"=>"\u0645\u062D\u0645",
    "\uFD8B"=>"\u0645\u062D\u064A",
    "\uFD8C"=>"\u0645\u062C\u062D",
    "\uFD8D"=>"\u0645\u062C\u0645",
    "\uFD8E"=>"\u0645\u062E\u062C",
    "\uFD8F"=>"\u0645\u062E\u0645",
    "\uFD92"=>"\u0645\u062C\u062E",
    "\uFD93"=>"\u0647\u0645\u062C",
    "\uFD94"=>"\u0647\u0645\u0645",
    "\uFD95"=>"\u0646\u062D\u0645",
    "\uFD96"=>"\u0646\u062D\u0649",
    "\uFD97"=>"\u0646\u062C\u0645",
    "\uFD98"=>"\u0646\u062C\u0645",
    "\uFD99"=>"\u0646\u062C\u0649",
    "\uFD9A"=>"\u0646\u0645\u064A",
    "\uFD9B"=>"\u0646\u0645\u0649",
    "\uFD9C"=>"\u064A\u0645\u0645",
    "\uFD9D"=>"\u064A\u0645\u0645",
    "\uFD9E"=>"\u0628\u062E\u064A",
    "\uFD9F"=>"\u062A\u062C\u064A",
    "\uFDA0"=>"\u062A\u062C\u0649",
    "\uFDA1"=>"\u062A\u062E\u064A",
    "\uFDA2"=>"\u062A\u062E\u0649",
    "\uFDA3"=>"\u062A\u0645\u064A",
    "\uFDA4"=>"\u062A\u0645\u0649",
    "\uFDA5"=>"\u062C\u0645\u064A",
    "\uFDA6"=>"\u062C\u062D\u0649",
    "\uFDA7"=>"\u062C\u0645\u0649",
    "\uFDA8"=>"\u0633\u062E\u0649",
    "\uFDA9"=>"\u0635\u062D\u064A",
    "\uFDAA"=>"\u0634\u062D\u064A",
    "\uFDAB"=>"\u0636\u062D\u064A",
    "\uFDAC"=>"\u0644\u062C\u064A",
    "\uFDAD"=>"\u0644\u0645\u064A",
    "\uFDAE"=>"\u064A\u062D\u064A",
    "\uFDAF"=>"\u064A\u062C\u064A",
    "\uFDB0"=>"\u064A\u0645\u064A",
    "\uFDB1"=>"\u0645\u0645\u064A",
    "\uFDB2"=>"\u0642\u0645\u064A",
    "\uFDB3"=>"\u0646\u062D\u064A",
    "\uFDB4"=>"\u0642\u0645\u062D",
    "\uFDB5"=>"\u0644\u062D\u0645",
    "\uFDB6"=>"\u0639\u0645\u064A",
    "\uFDB7"=>"\u0643\u0645\u064A",
    "\uFDB8"=>"\u0646\u062C\u062D",
    "\uFDB9"=>"\u0645\u062E\u064A",
    "\uFDBA"=>"\u0644\u062C\u0645",
    "\uFDBB"=>"\u0643\u0645\u0645",
    "\uFDBC"=>"\u0644\u062C\u0645",
    "\uFDBD"=>"\u0646\u062C\u062D",
    "\uFDBE"=>"\u062C\u062D\u064A",
    "\uFDBF"=>"\u062D\u062C\u064A",
    "\uFDC0"=>"\u0645\u062C\u064A",
    "\uFDC1"=>"\u0641\u0645\u064A",
    "\uFDC2"=>"\u0628\u062D\u064A",
    "\uFDC3"=>"\u0643\u0645\u0645",
    "\uFDC4"=>"\u0639\u062C\u0645",
    "\uFDC5"=>"\u0635\u0645\u0645",
    "\uFDC6"=>"\u0633\u062E\u064A",
    "\uFDC7"=>"\u0646\u062C\u064A",
    "\uFDF0"=>"\u0635\u0644\u06D2",
    "\uFDF1"=>"\u0642\u0644\u06D2",
    "\uFDF2"=>"\u0627\u0644\u0644\u0647",
    "\uFDF3"=>"\u0627\u0643\u0628\u0631",
    "\uFDF4"=>"\u0645\u062D\u0645\u062F",
    "\uFDF5"=>"\u0635\u0644\u0639\u0645",
    "\uFDF6"=>"\u0631\u0633\u0648\u0644",
    "\uFDF7"=>"\u0639\u0644\u064A\u0647",
    "\uFDF8"=>"\u0648\u0633\u0644\u0645",
    "\uFDF9"=>"\u0635\u0644\u0649",
    "\uFDFA"=>"\u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064A\u0647 \u0648\u0633\u0644\u0645",
    "\uFDFB"=>"\u062C\u0644 \u062C\u0644\u0627\u0644\u0647",
    "\uFDFC"=>"\u0631\u06CC\u0627\u0644",
    "\uFE10"=>",",
    "\uFE11"=>"\u3001",
    "\uFE12"=>"\u3002",
    "\uFE13"=>":",
    "\uFE14"=>";",
    "\uFE15"=>"!",
    "\uFE16"=>"?",
    "\uFE17"=>"\u3016",
    "\uFE18"=>"\u3017",
    "\uFE19"=>"...",
    "\uFE30"=>"..",
    "\uFE31"=>"\u2014",
    "\uFE32"=>"\u2013",
    "\uFE33"=>"_",
    "\uFE34"=>"_",
    "\uFE35"=>"(",
    "\uFE36"=>")",
    "\uFE37"=>"{",
    "\uFE38"=>"}",
    "\uFE39"=>"\u3014",
    "\uFE3A"=>"\u3015",
    "\uFE3B"=>"\u3010",
    "\uFE3C"=>"\u3011",
    "\uFE3D"=>"\u300A",
    "\uFE3E"=>"\u300B",
    "\uFE3F"=>"\u3008",
    "\uFE40"=>"\u3009",
    "\uFE41"=>"\u300C",
    "\uFE42"=>"\u300D",
    "\uFE43"=>"\u300E",
    "\uFE44"=>"\u300F",
    "\uFE47"=>"[",
    "\uFE48"=>"]",
    "\uFE49"=>" \u0305",
    "\uFE4A"=>" \u0305",
    "\uFE4B"=>" \u0305",
    "\uFE4C"=>" \u0305",
    "\uFE4D"=>"_",
    "\uFE4E"=>"_",
    "\uFE4F"=>"_",
    "\uFE50"=>",",
    "\uFE51"=>"\u3001",
    "\uFE52"=>".",
    "\uFE54"=>";",
    "\uFE55"=>":",
    "\uFE56"=>"?",
    "\uFE57"=>"!",
    "\uFE58"=>"\u2014",
    "\uFE59"=>"(",
    "\uFE5A"=>")",
    "\uFE5B"=>"{",
    "\uFE5C"=>"}",
    "\uFE5D"=>"\u3014",
    "\uFE5E"=>"\u3015",
    "\uFE5F"=>"#",
    "\uFE60"=>"&",
    "\uFE61"=>"*",
    "\uFE62"=>"+",
    "\uFE63"=>"-",
    "\uFE64"=>"<",
    "\uFE65"=>">",
    "\uFE66"=>"=",
    "\uFE68"=>"\\",
    "\uFE69"=>"$",
    "\uFE6A"=>"%",
    "\uFE6B"=>"@",
    "\uFE70"=>" \u064B",
    "\uFE71"=>"\u0640\u064B",
    "\uFE72"=>" \u064C",
    "\uFE74"=>" \u064D",
    "\uFE76"=>" \u064E",
    "\uFE77"=>"\u0640\u064E",
    "\uFE78"=>" \u064F",
    "\uFE79"=>"\u0640\u064F",
    "\uFE7A"=>" \u0650",
    "\uFE7B"=>"\u0640\u0650",
    "\uFE7C"=>" \u0651",
    "\uFE7D"=>"\u0640\u0651",
    "\uFE7E"=>" \u0652",
    "\uFE7F"=>"\u0640\u0652",
    "\uFE80"=>"\u0621",
    "\uFE81"=>"\u0622",
    "\uFE82"=>"\u0622",
    "\uFE83"=>"\u0623",
    "\uFE84"=>"\u0623",
    "\uFE85"=>"\u0624",
    "\uFE86"=>"\u0624",
    "\uFE87"=>"\u0625",
    "\uFE88"=>"\u0625",
    "\uFE89"=>"\u0626",
    "\uFE8A"=>"\u0626",
    "\uFE8B"=>"\u0626",
    "\uFE8C"=>"\u0626",
    "\uFE8D"=>"\u0627",
    "\uFE8E"=>"\u0627",
    "\uFE8F"=>"\u0628",
    "\uFE90"=>"\u0628",
    "\uFE91"=>"\u0628",
    "\uFE92"=>"\u0628",
    "\uFE93"=>"\u0629",
    "\uFE94"=>"\u0629",
    "\uFE95"=>"\u062A",
    "\uFE96"=>"\u062A",
    "\uFE97"=>"\u062A",
    "\uFE98"=>"\u062A",
    "\uFE99"=>"\u062B",
    "\uFE9A"=>"\u062B",
    "\uFE9B"=>"\u062B",
    "\uFE9C"=>"\u062B",
    "\uFE9D"=>"\u062C",
    "\uFE9E"=>"\u062C",
    "\uFE9F"=>"\u062C",
    "\uFEA0"=>"\u062C",
    "\uFEA1"=>"\u062D",
    "\uFEA2"=>"\u062D",
    "\uFEA3"=>"\u062D",
    "\uFEA4"=>"\u062D",
    "\uFEA5"=>"\u062E",
    "\uFEA6"=>"\u062E",
    "\uFEA7"=>"\u062E",
    "\uFEA8"=>"\u062E",
    "\uFEA9"=>"\u062F",
    "\uFEAA"=>"\u062F",
    "\uFEAB"=>"\u0630",
    "\uFEAC"=>"\u0630",
    "\uFEAD"=>"\u0631",
    "\uFEAE"=>"\u0631",
    "\uFEAF"=>"\u0632",
    "\uFEB0"=>"\u0632",
    "\uFEB1"=>"\u0633",
    "\uFEB2"=>"\u0633",
    "\uFEB3"=>"\u0633",
    "\uFEB4"=>"\u0633",
    "\uFEB5"=>"\u0634",
    "\uFEB6"=>"\u0634",
    "\uFEB7"=>"\u0634",
    "\uFEB8"=>"\u0634",
    "\uFEB9"=>"\u0635",
    "\uFEBA"=>"\u0635",
    "\uFEBB"=>"\u0635",
    "\uFEBC"=>"\u0635",
    "\uFEBD"=>"\u0636",
    "\uFEBE"=>"\u0636",
    "\uFEBF"=>"\u0636",
    "\uFEC0"=>"\u0636",
    "\uFEC1"=>"\u0637",
    "\uFEC2"=>"\u0637",
    "\uFEC3"=>"\u0637",
    "\uFEC4"=>"\u0637",
    "\uFEC5"=>"\u0638",
    "\uFEC6"=>"\u0638",
    "\uFEC7"=>"\u0638",
    "\uFEC8"=>"\u0638",
    "\uFEC9"=>"\u0639",
    "\uFECA"=>"\u0639",
    "\uFECB"=>"\u0639",
    "\uFECC"=>"\u0639",
    "\uFECD"=>"\u063A",
    "\uFECE"=>"\u063A",
    "\uFECF"=>"\u063A",
    "\uFED0"=>"\u063A",
    "\uFED1"=>"\u0641",
    "\uFED2"=>"\u0641",
    "\uFED3"=>"\u0641",
    "\uFED4"=>"\u0641",
    "\uFED5"=>"\u0642",
    "\uFED6"=>"\u0642",
    "\uFED7"=>"\u0642",
    "\uFED8"=>"\u0642",
    "\uFED9"=>"\u0643",
    "\uFEDA"=>"\u0643",
    "\uFEDB"=>"\u0643",
    "\uFEDC"=>"\u0643",
    "\uFEDD"=>"\u0644",
    "\uFEDE"=>"\u0644",
    "\uFEDF"=>"\u0644",
    "\uFEE0"=>"\u0644",
    "\uFEE1"=>"\u0645",
    "\uFEE2"=>"\u0645",
    "\uFEE3"=>"\u0645",
    "\uFEE4"=>"\u0645",
    "\uFEE5"=>"\u0646",
    "\uFEE6"=>"\u0646",
    "\uFEE7"=>"\u0646",
    "\uFEE8"=>"\u0646",
    "\uFEE9"=>"\u0647",
    "\uFEEA"=>"\u0647",
    "\uFEEB"=>"\u0647",
    "\uFEEC"=>"\u0647",
    "\uFEED"=>"\u0648",
    "\uFEEE"=>"\u0648",
    "\uFEEF"=>"\u0649",
    "\uFEF0"=>"\u0649",
    "\uFEF1"=>"\u064A",
    "\uFEF2"=>"\u064A",
    "\uFEF3"=>"\u064A",
    "\uFEF4"=>"\u064A",
    "\uFEF5"=>"\u0644\u0622",
    "\uFEF6"=>"\u0644\u0622",
    "\uFEF7"=>"\u0644\u0623",
    "\uFEF8"=>"\u0644\u0623",
    "\uFEF9"=>"\u0644\u0625",
    "\uFEFA"=>"\u0644\u0625",
    "\uFEFB"=>"\u0644\u0627",
    "\uFEFC"=>"\u0644\u0627",
    "\uFF01"=>"!",
    "\uFF02"=>"\"",
    "\uFF03"=>"#",
    "\uFF04"=>"$",
    "\uFF05"=>"%",
    "\uFF06"=>"&",
    "\uFF07"=>"'",
    "\uFF08"=>"(",
    "\uFF09"=>")",
    "\uFF0A"=>"*",
    "\uFF0B"=>"+",
    "\uFF0C"=>",",
    "\uFF0D"=>"-",
    "\uFF0E"=>".",
    "\uFF0F"=>"/",
    "\uFF10"=>"0",
    "\uFF11"=>"1",
    "\uFF12"=>"2",
    "\uFF13"=>"3",
    "\uFF14"=>"4",
    "\uFF15"=>"5",
    "\uFF16"=>"6",
    "\uFF17"=>"7",
    "\uFF18"=>"8",
    "\uFF19"=>"9",
    "\uFF1A"=>":",
    "\uFF1B"=>";",
    "\uFF1C"=>"<",
    "\uFF1D"=>"=",
    "\uFF1E"=>">",
    "\uFF1F"=>"?",
    "\uFF20"=>"@",
    "\uFF21"=>"A",
    "\uFF22"=>"B",
    "\uFF23"=>"C",
    "\uFF24"=>"D",
    "\uFF25"=>"E",
    "\uFF26"=>"F",
    "\uFF27"=>"G",
    "\uFF28"=>"H",
    "\uFF29"=>"I",
    "\uFF2A"=>"J",
    "\uFF2B"=>"K",
    "\uFF2C"=>"L",
    "\uFF2D"=>"M",
    "\uFF2E"=>"N",
    "\uFF2F"=>"O",
    "\uFF30"=>"P",
    "\uFF31"=>"Q",
    "\uFF32"=>"R",
    "\uFF33"=>"S",
    "\uFF34"=>"T",
    "\uFF35"=>"U",
    "\uFF36"=>"V",
    "\uFF37"=>"W",
    "\uFF38"=>"X",
    "\uFF39"=>"Y",
    "\uFF3A"=>"Z",
    "\uFF3B"=>"[",
    "\uFF3C"=>"\\",
    "\uFF3D"=>"]",
    "\uFF3E"=>"^",
    "\uFF3F"=>"_",
    "\uFF40"=>"`",
    "\uFF41"=>"a",
    "\uFF42"=>"b",
    "\uFF43"=>"c",
    "\uFF44"=>"d",
    "\uFF45"=>"e",
    "\uFF46"=>"f",
    "\uFF47"=>"g",
    "\uFF48"=>"h",
    "\uFF49"=>"i",
    "\uFF4A"=>"j",
    "\uFF4B"=>"k",
    "\uFF4C"=>"l",
    "\uFF4D"=>"m",
    "\uFF4E"=>"n",
    "\uFF4F"=>"o",
    "\uFF50"=>"p",
    "\uFF51"=>"q",
    "\uFF52"=>"r",
    "\uFF53"=>"s",
    "\uFF54"=>"t",
    "\uFF55"=>"u",
    "\uFF56"=>"v",
    "\uFF57"=>"w",
    "\uFF58"=>"x",
    "\uFF59"=>"y",
    "\uFF5A"=>"z",
    "\uFF5B"=>"{",
    "\uFF5C"=>"|",
    "\uFF5D"=>"}",
    "\uFF5E"=>"~",
    "\uFF5F"=>"\u2985",
    "\uFF60"=>"\u2986",
    "\uFF61"=>"\u3002",
    "\uFF62"=>"\u300C",
    "\uFF63"=>"\u300D",
    "\uFF64"=>"\u3001",
    "\uFF65"=>"\u30FB",
    "\uFF66"=>"\u30F2",
    "\uFF67"=>"\u30A1",
    "\uFF68"=>"\u30A3",
    "\uFF69"=>"\u30A5",
    "\uFF6A"=>"\u30A7",
    "\uFF6B"=>"\u30A9",
    "\uFF6C"=>"\u30E3",
    "\uFF6D"=>"\u30E5",
    "\uFF6E"=>"\u30E7",
    "\uFF6F"=>"\u30C3",
    "\uFF70"=>"\u30FC",
    "\uFF71"=>"\u30A2",
    "\uFF72"=>"\u30A4",
    "\uFF73"=>"\u30A6",
    "\uFF74"=>"\u30A8",
    "\uFF75"=>"\u30AA",
    "\uFF76"=>"\u30AB",
    "\uFF77"=>"\u30AD",
    "\uFF78"=>"\u30AF",
    "\uFF79"=>"\u30B1",
    "\uFF7A"=>"\u30B3",
    "\uFF7B"=>"\u30B5",
    "\uFF7C"=>"\u30B7",
    "\uFF7D"=>"\u30B9",
    "\uFF7E"=>"\u30BB",
    "\uFF7F"=>"\u30BD",
    "\uFF80"=>"\u30BF",
    "\uFF81"=>"\u30C1",
    "\uFF82"=>"\u30C4",
    "\uFF83"=>"\u30C6",
    "\uFF84"=>"\u30C8",
    "\uFF85"=>"\u30CA",
    "\uFF86"=>"\u30CB",
    "\uFF87"=>"\u30CC",
    "\uFF88"=>"\u30CD",
    "\uFF89"=>"\u30CE",
    "\uFF8A"=>"\u30CF",
    "\uFF8B"=>"\u30D2",
    "\uFF8C"=>"\u30D5",
    "\uFF8D"=>"\u30D8",
    "\uFF8E"=>"\u30DB",
    "\uFF8F"=>"\u30DE",
    "\uFF90"=>"\u30DF",
    "\uFF91"=>"\u30E0",
    "\uFF92"=>"\u30E1",
    "\uFF93"=>"\u30E2",
    "\uFF94"=>"\u30E4",
    "\uFF95"=>"\u30E6",
    "\uFF96"=>"\u30E8",
    "\uFF97"=>"\u30E9",
    "\uFF98"=>"\u30EA",
    "\uFF99"=>"\u30EB",
    "\uFF9A"=>"\u30EC",
    "\uFF9B"=>"\u30ED",
    "\uFF9C"=>"\u30EF",
    "\uFF9D"=>"\u30F3",
    "\uFF9E"=>"\u3099",
    "\uFF9F"=>"\u309A",
    "\uFFA0"=>"\u1160",
    "\uFFA1"=>"\u1100",
    "\uFFA2"=>"\u1101",
    "\uFFA3"=>"\u11AA",
    "\uFFA4"=>"\u1102",
    "\uFFA5"=>"\u11AC",
    "\uFFA6"=>"\u11AD",
    "\uFFA7"=>"\u1103",
    "\uFFA8"=>"\u1104",
    "\uFFA9"=>"\u1105",
    "\uFFAA"=>"\u11B0",
    "\uFFAB"=>"\u11B1",
    "\uFFAC"=>"\u11B2",
    "\uFFAD"=>"\u11B3",
    "\uFFAE"=>"\u11B4",
    "\uFFAF"=>"\u11B5",
    "\uFFB0"=>"\u111A",
    "\uFFB1"=>"\u1106",
    "\uFFB2"=>"\u1107",
    "\uFFB3"=>"\u1108",
    "\uFFB4"=>"\u1121",
    "\uFFB5"=>"\u1109",
    "\uFFB6"=>"\u110A",
    "\uFFB7"=>"\u110B",
    "\uFFB8"=>"\u110C",
    "\uFFB9"=>"\u110D",
    "\uFFBA"=>"\u110E",
    "\uFFBB"=>"\u110F",
    "\uFFBC"=>"\u1110",
    "\uFFBD"=>"\u1111",
    "\uFFBE"=>"\u1112",
    "\uFFC2"=>"\u1161",
    "\uFFC3"=>"\u1162",
    "\uFFC4"=>"\u1163",
    "\uFFC5"=>"\u1164",
    "\uFFC6"=>"\u1165",
    "\uFFC7"=>"\u1166",
    "\uFFCA"=>"\u1167",
    "\uFFCB"=>"\u1168",
    "\uFFCC"=>"\u1169",
    "\uFFCD"=>"\u116A",
    "\uFFCE"=>"\u116B",
    "\uFFCF"=>"\u116C",
    "\uFFD2"=>"\u116D",
    "\uFFD3"=>"\u116E",
    "\uFFD4"=>"\u116F",
    "\uFFD5"=>"\u1170",
    "\uFFD6"=>"\u1171",
    "\uFFD7"=>"\u1172",
    "\uFFDA"=>"\u1173",
    "\uFFDB"=>"\u1174",
    "\uFFDC"=>"\u1175",
    "\uFFE0"=>"\u00A2",
    "\uFFE1"=>"\u00A3",
    "\uFFE2"=>"\u00AC",
    "\uFFE3"=>" \u0304",
    "\uFFE4"=>"\u00A6",
    "\uFFE5"=>"\u00A5",
    "\uFFE6"=>"\u20A9",
    "\uFFE8"=>"\u2502",
    "\uFFE9"=>"\u2190",
    "\uFFEA"=>"\u2191",
    "\uFFEB"=>"\u2192",
    "\uFFEC"=>"\u2193",
    "\uFFED"=>"\u25A0",
    "\uFFEE"=>"\u25CB",
    "\u{1D400}"=>"A",
    "\u{1D401}"=>"B",
    "\u{1D402}"=>"C",
    "\u{1D403}"=>"D",
    "\u{1D404}"=>"E",
    "\u{1D405}"=>"F",
    "\u{1D406}"=>"G",
    "\u{1D407}"=>"H",
    "\u{1D408}"=>"I",
    "\u{1D409}"=>"J",
    "\u{1D40A}"=>"K",
    "\u{1D40B}"=>"L",
    "\u{1D40C}"=>"M",
    "\u{1D40D}"=>"N",
    "\u{1D40E}"=>"O",
    "\u{1D40F}"=>"P",
    "\u{1D410}"=>"Q",
    "\u{1D411}"=>"R",
    "\u{1D412}"=>"S",
    "\u{1D413}"=>"T",
    "\u{1D414}"=>"U",
    "\u{1D415}"=>"V",
    "\u{1D416}"=>"W",
    "\u{1D417}"=>"X",
    "\u{1D418}"=>"Y",
    "\u{1D419}"=>"Z",
    "\u{1D41A}"=>"a",
    "\u{1D41B}"=>"b",
    "\u{1D41C}"=>"c",
    "\u{1D41D}"=>"d",
    "\u{1D41E}"=>"e",
    "\u{1D41F}"=>"f",
    "\u{1D420}"=>"g",
    "\u{1D421}"=>"h",
    "\u{1D422}"=>"i",
    "\u{1D423}"=>"j",
    "\u{1D424}"=>"k",
    "\u{1D425}"=>"l",
    "\u{1D426}"=>"m",
    "\u{1D427}"=>"n",
    "\u{1D428}"=>"o",
    "\u{1D429}"=>"p",
    "\u{1D42A}"=>"q",
    "\u{1D42B}"=>"r",
    "\u{1D42C}"=>"s",
    "\u{1D42D}"=>"t",
    "\u{1D42E}"=>"u",
    "\u{1D42F}"=>"v",
    "\u{1D430}"=>"w",
    "\u{1D431}"=>"x",
    "\u{1D432}"=>"y",
    "\u{1D433}"=>"z",
    "\u{1D434}"=>"A",
    "\u{1D435}"=>"B",
    "\u{1D436}"=>"C",
    "\u{1D437}"=>"D",
    "\u{1D438}"=>"E",
    "\u{1D439}"=>"F",
    "\u{1D43A}"=>"G",
    "\u{1D43B}"=>"H",
    "\u{1D43C}"=>"I",
    "\u{1D43D}"=>"J",
    "\u{1D43E}"=>"K",
    "\u{1D43F}"=>"L",
    "\u{1D440}"=>"M",
    "\u{1D441}"=>"N",
    "\u{1D442}"=>"O",
    "\u{1D443}"=>"P",
    "\u{1D444}"=>"Q",
    "\u{1D445}"=>"R",
    "\u{1D446}"=>"S",
    "\u{1D447}"=>"T",
    "\u{1D448}"=>"U",
    "\u{1D449}"=>"V",
    "\u{1D44A}"=>"W",
    "\u{1D44B}"=>"X",
    "\u{1D44C}"=>"Y",
    "\u{1D44D}"=>"Z",
    "\u{1D44E}"=>"a",
    "\u{1D44F}"=>"b",
    "\u{1D450}"=>"c",
    "\u{1D451}"=>"d",
    "\u{1D452}"=>"e",
    "\u{1D453}"=>"f",
    "\u{1D454}"=>"g",
    "\u{1D456}"=>"i",
    "\u{1D457}"=>"j",
    "\u{1D458}"=>"k",
    "\u{1D459}"=>"l",
    "\u{1D45A}"=>"m",
    "\u{1D45B}"=>"n",
    "\u{1D45C}"=>"o",
    "\u{1D45D}"=>"p",
    "\u{1D45E}"=>"q",
    "\u{1D45F}"=>"r",
    "\u{1D460}"=>"s",
    "\u{1D461}"=>"t",
    "\u{1D462}"=>"u",
    "\u{1D463}"=>"v",
    "\u{1D464}"=>"w",
    "\u{1D465}"=>"x",
    "\u{1D466}"=>"y",
    "\u{1D467}"=>"z",
    "\u{1D468}"=>"A",
    "\u{1D469}"=>"B",
    "\u{1D46A}"=>"C",
    "\u{1D46B}"=>"D",
    "\u{1D46C}"=>"E",
    "\u{1D46D}"=>"F",
    "\u{1D46E}"=>"G",
    "\u{1D46F}"=>"H",
    "\u{1D470}"=>"I",
    "\u{1D471}"=>"J",
    "\u{1D472}"=>"K",
    "\u{1D473}"=>"L",
    "\u{1D474}"=>"M",
    "\u{1D475}"=>"N",
    "\u{1D476}"=>"O",
    "\u{1D477}"=>"P",
    "\u{1D478}"=>"Q",
    "\u{1D479}"=>"R",
    "\u{1D47A}"=>"S",
    "\u{1D47B}"=>"T",
    "\u{1D47C}"=>"U",
    "\u{1D47D}"=>"V",
    "\u{1D47E}"=>"W",
    "\u{1D47F}"=>"X",
    "\u{1D480}"=>"Y",
    "\u{1D481}"=>"Z",
    "\u{1D482}"=>"a",
    "\u{1D483}"=>"b",
    "\u{1D484}"=>"c",
    "\u{1D485}"=>"d",
    "\u{1D486}"=>"e",
    "\u{1D487}"=>"f",
    "\u{1D488}"=>"g",
    "\u{1D489}"=>"h",
    "\u{1D48A}"=>"i",
    "\u{1D48B}"=>"j",
    "\u{1D48C}"=>"k",
    "\u{1D48D}"=>"l",
    "\u{1D48E}"=>"m",
    "\u{1D48F}"=>"n",
    "\u{1D490}"=>"o",
    "\u{1D491}"=>"p",
    "\u{1D492}"=>"q",
    "\u{1D493}"=>"r",
    "\u{1D494}"=>"s",
    "\u{1D495}"=>"t",
    "\u{1D496}"=>"u",
    "\u{1D497}"=>"v",
    "\u{1D498}"=>"w",
    "\u{1D499}"=>"x",
    "\u{1D49A}"=>"y",
    "\u{1D49B}"=>"z",
    "\u{1D49C}"=>"A",
    "\u{1D49E}"=>"C",
    "\u{1D49F}"=>"D",
    "\u{1D4A2}"=>"G",
    "\u{1D4A5}"=>"J",
    "\u{1D4A6}"=>"K",
    "\u{1D4A9}"=>"N",
    "\u{1D4AA}"=>"O",
    "\u{1D4AB}"=>"P",
    "\u{1D4AC}"=>"Q",
    "\u{1D4AE}"=>"S",
    "\u{1D4AF}"=>"T",
    "\u{1D4B0}"=>"U",
    "\u{1D4B1}"=>"V",
    "\u{1D4B2}"=>"W",
    "\u{1D4B3}"=>"X",
    "\u{1D4B4}"=>"Y",
    "\u{1D4B5}"=>"Z",
    "\u{1D4B6}"=>"a",
    "\u{1D4B7}"=>"b",
    "\u{1D4B8}"=>"c",
    "\u{1D4B9}"=>"d",
    "\u{1D4BB}"=>"f",
    "\u{1D4BD}"=>"h",
    "\u{1D4BE}"=>"i",
    "\u{1D4BF}"=>"j",
    "\u{1D4C0}"=>"k",
    "\u{1D4C1}"=>"l",
    "\u{1D4C2}"=>"m",
    "\u{1D4C3}"=>"n",
    "\u{1D4C5}"=>"p",
    "\u{1D4C6}"=>"q",
    "\u{1D4C7}"=>"r",
    "\u{1D4C8}"=>"s",
    "\u{1D4C9}"=>"t",
    "\u{1D4CA}"=>"u",
    "\u{1D4CB}"=>"v",
    "\u{1D4CC}"=>"w",
    "\u{1D4CD}"=>"x",
    "\u{1D4CE}"=>"y",
    "\u{1D4CF}"=>"z",
    "\u{1D4D0}"=>"A",
    "\u{1D4D1}"=>"B",
    "\u{1D4D2}"=>"C",
    "\u{1D4D3}"=>"D",
    "\u{1D4D4}"=>"E",
    "\u{1D4D5}"=>"F",
    "\u{1D4D6}"=>"G",
    "\u{1D4D7}"=>"H",
    "\u{1D4D8}"=>"I",
    "\u{1D4D9}"=>"J",
    "\u{1D4DA}"=>"K",
    "\u{1D4DB}"=>"L",
    "\u{1D4DC}"=>"M",
    "\u{1D4DD}"=>"N",
    "\u{1D4DE}"=>"O",
    "\u{1D4DF}"=>"P",
    "\u{1D4E0}"=>"Q",
    "\u{1D4E1}"=>"R",
    "\u{1D4E2}"=>"S",
    "\u{1D4E3}"=>"T",
    "\u{1D4E4}"=>"U",
    "\u{1D4E5}"=>"V",
    "\u{1D4E6}"=>"W",
    "\u{1D4E7}"=>"X",
    "\u{1D4E8}"=>"Y",
    "\u{1D4E9}"=>"Z",
    "\u{1D4EA}"=>"a",
    "\u{1D4EB}"=>"b",
    "\u{1D4EC}"=>"c",
    "\u{1D4ED}"=>"d",
    "\u{1D4EE}"=>"e",
    "\u{1D4EF}"=>"f",
    "\u{1D4F0}"=>"g",
    "\u{1D4F1}"=>"h",
    "\u{1D4F2}"=>"i",
    "\u{1D4F3}"=>"j",
    "\u{1D4F4}"=>"k",
    "\u{1D4F5}"=>"l",
    "\u{1D4F6}"=>"m",
    "\u{1D4F7}"=>"n",
    "\u{1D4F8}"=>"o",
    "\u{1D4F9}"=>"p",
    "\u{1D4FA}"=>"q",
    "\u{1D4FB}"=>"r",
    "\u{1D4FC}"=>"s",
    "\u{1D4FD}"=>"t",
    "\u{1D4FE}"=>"u",
    "\u{1D4FF}"=>"v",
    "\u{1D500}"=>"w",
    "\u{1D501}"=>"x",
    "\u{1D502}"=>"y",
    "\u{1D503}"=>"z",
    "\u{1D504}"=>"A",
    "\u{1D505}"=>"B",
    "\u{1D507}"=>"D",
    "\u{1D508}"=>"E",
    "\u{1D509}"=>"F",
    "\u{1D50A}"=>"G",
    "\u{1D50D}"=>"J",
    "\u{1D50E}"=>"K",
    "\u{1D50F}"=>"L",
    "\u{1D510}"=>"M",
    "\u{1D511}"=>"N",
    "\u{1D512}"=>"O",
    "\u{1D513}"=>"P",
    "\u{1D514}"=>"Q",
    "\u{1D516}"=>"S",
    "\u{1D517}"=>"T",
    "\u{1D518}"=>"U",
    "\u{1D519}"=>"V",
    "\u{1D51A}"=>"W",
    "\u{1D51B}"=>"X",
    "\u{1D51C}"=>"Y",
    "\u{1D51E}"=>"a",
    "\u{1D51F}"=>"b",
    "\u{1D520}"=>"c",
    "\u{1D521}"=>"d",
    "\u{1D522}"=>"e",
    "\u{1D523}"=>"f",
    "\u{1D524}"=>"g",
    "\u{1D525}"=>"h",
    "\u{1D526}"=>"i",
    "\u{1D527}"=>"j",
    "\u{1D528}"=>"k",
    "\u{1D529}"=>"l",
    "\u{1D52A}"=>"m",
    "\u{1D52B}"=>"n",
    "\u{1D52C}"=>"o",
    "\u{1D52D}"=>"p",
    "\u{1D52E}"=>"q",
    "\u{1D52F}"=>"r",
    "\u{1D530}"=>"s",
    "\u{1D531}"=>"t",
    "\u{1D532}"=>"u",
    "\u{1D533}"=>"v",
    "\u{1D534}"=>"w",
    "\u{1D535}"=>"x",
    "\u{1D536}"=>"y",
    "\u{1D537}"=>"z",
    "\u{1D538}"=>"A",
    "\u{1D539}"=>"B",
    "\u{1D53B}"=>"D",
    "\u{1D53C}"=>"E",
    "\u{1D53D}"=>"F",
    "\u{1D53E}"=>"G",
    "\u{1D540}"=>"I",
    "\u{1D541}"=>"J",
    "\u{1D542}"=>"K",
    "\u{1D543}"=>"L",
    "\u{1D544}"=>"M",
    "\u{1D546}"=>"O",
    "\u{1D54A}"=>"S",
    "\u{1D54B}"=>"T",
    "\u{1D54C}"=>"U",
    "\u{1D54D}"=>"V",
    "\u{1D54E}"=>"W",
    "\u{1D54F}"=>"X",
    "\u{1D550}"=>"Y",
    "\u{1D552}"=>"a",
    "\u{1D553}"=>"b",
    "\u{1D554}"=>"c",
    "\u{1D555}"=>"d",
    "\u{1D556}"=>"e",
    "\u{1D557}"=>"f",
    "\u{1D558}"=>"g",
    "\u{1D559}"=>"h",
    "\u{1D55A}"=>"i",
    "\u{1D55B}"=>"j",
    "\u{1D55C}"=>"k",
    "\u{1D55D}"=>"l",
    "\u{1D55E}"=>"m",
    "\u{1D55F}"=>"n",
    "\u{1D560}"=>"o",
    "\u{1D561}"=>"p",
    "\u{1D562}"=>"q",
    "\u{1D563}"=>"r",
    "\u{1D564}"=>"s",
    "\u{1D565}"=>"t",
    "\u{1D566}"=>"u",
    "\u{1D567}"=>"v",
    "\u{1D568}"=>"w",
    "\u{1D569}"=>"x",
    "\u{1D56A}"=>"y",
    "\u{1D56B}"=>"z",
    "\u{1D56C}"=>"A",
    "\u{1D56D}"=>"B",
    "\u{1D56E}"=>"C",
    "\u{1D56F}"=>"D",
    "\u{1D570}"=>"E",
    "\u{1D571}"=>"F",
    "\u{1D572}"=>"G",
    "\u{1D573}"=>"H",
    "\u{1D574}"=>"I",
    "\u{1D575}"=>"J",
    "\u{1D576}"=>"K",
    "\u{1D577}"=>"L",
    "\u{1D578}"=>"M",
    "\u{1D579}"=>"N",
    "\u{1D57A}"=>"O",
    "\u{1D57B}"=>"P",
    "\u{1D57C}"=>"Q",
    "\u{1D57D}"=>"R",
    "\u{1D57E}"=>"S",
    "\u{1D57F}"=>"T",
    "\u{1D580}"=>"U",
    "\u{1D581}"=>"V",
    "\u{1D582}"=>"W",
    "\u{1D583}"=>"X",
    "\u{1D584}"=>"Y",
    "\u{1D585}"=>"Z",
    "\u{1D586}"=>"a",
    "\u{1D587}"=>"b",
    "\u{1D588}"=>"c",
    "\u{1D589}"=>"d",
    "\u{1D58A}"=>"e",
    "\u{1D58B}"=>"f",
    "\u{1D58C}"=>"g",
    "\u{1D58D}"=>"h",
    "\u{1D58E}"=>"i",
    "\u{1D58F}"=>"j",
    "\u{1D590}"=>"k",
    "\u{1D591}"=>"l",
    "\u{1D592}"=>"m",
    "\u{1D593}"=>"n",
    "\u{1D594}"=>"o",
    "\u{1D595}"=>"p",
    "\u{1D596}"=>"q",
    "\u{1D597}"=>"r",
    "\u{1D598}"=>"s",
    "\u{1D599}"=>"t",
    "\u{1D59A}"=>"u",
    "\u{1D59B}"=>"v",
    "\u{1D59C}"=>"w",
    "\u{1D59D}"=>"x",
    "\u{1D59E}"=>"y",
    "\u{1D59F}"=>"z",
    "\u{1D5A0}"=>"A",
    "\u{1D5A1}"=>"B",
    "\u{1D5A2}"=>"C",
    "\u{1D5A3}"=>"D",
    "\u{1D5A4}"=>"E",
    "\u{1D5A5}"=>"F",
    "\u{1D5A6}"=>"G",
    "\u{1D5A7}"=>"H",
    "\u{1D5A8}"=>"I",
    "\u{1D5A9}"=>"J",
    "\u{1D5AA}"=>"K",
    "\u{1D5AB}"=>"L",
    "\u{1D5AC}"=>"M",
    "\u{1D5AD}"=>"N",
    "\u{1D5AE}"=>"O",
    "\u{1D5AF}"=>"P",
    "\u{1D5B0}"=>"Q",
    "\u{1D5B1}"=>"R",
    "\u{1D5B2}"=>"S",
    "\u{1D5B3}"=>"T",
    "\u{1D5B4}"=>"U",
    "\u{1D5B5}"=>"V",
    "\u{1D5B6}"=>"W",
    "\u{1D5B7}"=>"X",
    "\u{1D5B8}"=>"Y",
    "\u{1D5B9}"=>"Z",
    "\u{1D5BA}"=>"a",
    "\u{1D5BB}"=>"b",
    "\u{1D5BC}"=>"c",
    "\u{1D5BD}"=>"d",
    "\u{1D5BE}"=>"e",
    "\u{1D5BF}"=>"f",
    "\u{1D5C0}"=>"g",
    "\u{1D5C1}"=>"h",
    "\u{1D5C2}"=>"i",
    "\u{1D5C3}"=>"j",
    "\u{1D5C4}"=>"k",
    "\u{1D5C5}"=>"l",
    "\u{1D5C6}"=>"m",
    "\u{1D5C7}"=>"n",
    "\u{1D5C8}"=>"o",
    "\u{1D5C9}"=>"p",
    "\u{1D5CA}"=>"q",
    "\u{1D5CB}"=>"r",
    "\u{1D5CC}"=>"s",
    "\u{1D5CD}"=>"t",
    "\u{1D5CE}"=>"u",
    "\u{1D5CF}"=>"v",
    "\u{1D5D0}"=>"w",
    "\u{1D5D1}"=>"x",
    "\u{1D5D2}"=>"y",
    "\u{1D5D3}"=>"z",
    "\u{1D5D4}"=>"A",
    "\u{1D5D5}"=>"B",
    "\u{1D5D6}"=>"C",
    "\u{1D5D7}"=>"D",
    "\u{1D5D8}"=>"E",
    "\u{1D5D9}"=>"F",
    "\u{1D5DA}"=>"G",
    "\u{1D5DB}"=>"H",
    "\u{1D5DC}"=>"I",
    "\u{1D5DD}"=>"J",
    "\u{1D5DE}"=>"K",
    "\u{1D5DF}"=>"L",
    "\u{1D5E0}"=>"M",
    "\u{1D5E1}"=>"N",
    "\u{1D5E2}"=>"O",
    "\u{1D5E3}"=>"P",
    "\u{1D5E4}"=>"Q",
    "\u{1D5E5}"=>"R",
    "\u{1D5E6}"=>"S",
    "\u{1D5E7}"=>"T",
    "\u{1D5E8}"=>"U",
    "\u{1D5E9}"=>"V",
    "\u{1D5EA}"=>"W",
    "\u{1D5EB}"=>"X",
    "\u{1D5EC}"=>"Y",
    "\u{1D5ED}"=>"Z",
    "\u{1D5EE}"=>"a",
    "\u{1D5EF}"=>"b",
    "\u{1D5F0}"=>"c",
    "\u{1D5F1}"=>"d",
    "\u{1D5F2}"=>"e",
    "\u{1D5F3}"=>"f",
    "\u{1D5F4}"=>"g",
    "\u{1D5F5}"=>"h",
    "\u{1D5F6}"=>"i",
    "\u{1D5F7}"=>"j",
    "\u{1D5F8}"=>"k",
    "\u{1D5F9}"=>"l",
    "\u{1D5FA}"=>"m",
    "\u{1D5FB}"=>"n",
    "\u{1D5FC}"=>"o",
    "\u{1D5FD}"=>"p",
    "\u{1D5FE}"=>"q",
    "\u{1D5FF}"=>"r",
    "\u{1D600}"=>"s",
    "\u{1D601}"=>"t",
    "\u{1D602}"=>"u",
    "\u{1D603}"=>"v",
    "\u{1D604}"=>"w",
    "\u{1D605}"=>"x",
    "\u{1D606}"=>"y",
    "\u{1D607}"=>"z",
    "\u{1D608}"=>"A",
    "\u{1D609}"=>"B",
    "\u{1D60A}"=>"C",
    "\u{1D60B}"=>"D",
    "\u{1D60C}"=>"E",
    "\u{1D60D}"=>"F",
    "\u{1D60E}"=>"G",
    "\u{1D60F}"=>"H",
    "\u{1D610}"=>"I",
    "\u{1D611}"=>"J",
    "\u{1D612}"=>"K",
    "\u{1D613}"=>"L",
    "\u{1D614}"=>"M",
    "\u{1D615}"=>"N",
    "\u{1D616}"=>"O",
    "\u{1D617}"=>"P",
    "\u{1D618}"=>"Q",
    "\u{1D619}"=>"R",
    "\u{1D61A}"=>"S",
    "\u{1D61B}"=>"T",
    "\u{1D61C}"=>"U",
    "\u{1D61D}"=>"V",
    "\u{1D61E}"=>"W",
    "\u{1D61F}"=>"X",
    "\u{1D620}"=>"Y",
    "\u{1D621}"=>"Z",
    "\u{1D622}"=>"a",
    "\u{1D623}"=>"b",
    "\u{1D624}"=>"c",
    "\u{1D625}"=>"d",
    "\u{1D626}"=>"e",
    "\u{1D627}"=>"f",
    "\u{1D628}"=>"g",
    "\u{1D629}"=>"h",
    "\u{1D62A}"=>"i",
    "\u{1D62B}"=>"j",
    "\u{1D62C}"=>"k",
    "\u{1D62D}"=>"l",
    "\u{1D62E}"=>"m",
    "\u{1D62F}"=>"n",
    "\u{1D630}"=>"o",
    "\u{1D631}"=>"p",
    "\u{1D632}"=>"q",
    "\u{1D633}"=>"r",
    "\u{1D634}"=>"s",
    "\u{1D635}"=>"t",
    "\u{1D636}"=>"u",
    "\u{1D637}"=>"v",
    "\u{1D638}"=>"w",
    "\u{1D639}"=>"x",
    "\u{1D63A}"=>"y",
    "\u{1D63B}"=>"z",
    "\u{1D63C}"=>"A",
    "\u{1D63D}"=>"B",
    "\u{1D63E}"=>"C",
    "\u{1D63F}"=>"D",
    "\u{1D640}"=>"E",
    "\u{1D641}"=>"F",
    "\u{1D642}"=>"G",
    "\u{1D643}"=>"H",
    "\u{1D644}"=>"I",
    "\u{1D645}"=>"J",
    "\u{1D646}"=>"K",
    "\u{1D647}"=>"L",
    "\u{1D648}"=>"M",
    "\u{1D649}"=>"N",
    "\u{1D64A}"=>"O",
    "\u{1D64B}"=>"P",
    "\u{1D64C}"=>"Q",
    "\u{1D64D}"=>"R",
    "\u{1D64E}"=>"S",
    "\u{1D64F}"=>"T",
    "\u{1D650}"=>"U",
    "\u{1D651}"=>"V",
    "\u{1D652}"=>"W",
    "\u{1D653}"=>"X",
    "\u{1D654}"=>"Y",
    "\u{1D655}"=>"Z",
    "\u{1D656}"=>"a",
    "\u{1D657}"=>"b",
    "\u{1D658}"=>"c",
    "\u{1D659}"=>"d",
    "\u{1D65A}"=>"e",
    "\u{1D65B}"=>"f",
    "\u{1D65C}"=>"g",
    "\u{1D65D}"=>"h",
    "\u{1D65E}"=>"i",
    "\u{1D65F}"=>"j",
    "\u{1D660}"=>"k",
    "\u{1D661}"=>"l",
    "\u{1D662}"=>"m",
    "\u{1D663}"=>"n",
    "\u{1D664}"=>"o",
    "\u{1D665}"=>"p",
    "\u{1D666}"=>"q",
    "\u{1D667}"=>"r",
    "\u{1D668}"=>"s",
    "\u{1D669}"=>"t",
    "\u{1D66A}"=>"u",
    "\u{1D66B}"=>"v",
    "\u{1D66C}"=>"w",
    "\u{1D66D}"=>"x",
    "\u{1D66E}"=>"y",
    "\u{1D66F}"=>"z",
    "\u{1D670}"=>"A",
    "\u{1D671}"=>"B",
    "\u{1D672}"=>"C",
    "\u{1D673}"=>"D",
    "\u{1D674}"=>"E",
    "\u{1D675}"=>"F",
    "\u{1D676}"=>"G",
    "\u{1D677}"=>"H",
    "\u{1D678}"=>"I",
    "\u{1D679}"=>"J",
    "\u{1D67A}"=>"K",
    "\u{1D67B}"=>"L",
    "\u{1D67C}"=>"M",
    "\u{1D67D}"=>"N",
    "\u{1D67E}"=>"O",
    "\u{1D67F}"=>"P",
    "\u{1D680}"=>"Q",
    "\u{1D681}"=>"R",
    "\u{1D682}"=>"S",
    "\u{1D683}"=>"T",
    "\u{1D684}"=>"U",
    "\u{1D685}"=>"V",
    "\u{1D686}"=>"W",
    "\u{1D687}"=>"X",
    "\u{1D688}"=>"Y",
    "\u{1D689}"=>"Z",
    "\u{1D68A}"=>"a",
    "\u{1D68B}"=>"b",
    "\u{1D68C}"=>"c",
    "\u{1D68D}"=>"d",
    "\u{1D68E}"=>"e",
    "\u{1D68F}"=>"f",
    "\u{1D690}"=>"g",
    "\u{1D691}"=>"h",
    "\u{1D692}"=>"i",
    "\u{1D693}"=>"j",
    "\u{1D694}"=>"k",
    "\u{1D695}"=>"l",
    "\u{1D696}"=>"m",
    "\u{1D697}"=>"n",
    "\u{1D698}"=>"o",
    "\u{1D699}"=>"p",
    "\u{1D69A}"=>"q",
    "\u{1D69B}"=>"r",
    "\u{1D69C}"=>"s",
    "\u{1D69D}"=>"t",
    "\u{1D69E}"=>"u",
    "\u{1D69F}"=>"v",
    "\u{1D6A0}"=>"w",
    "\u{1D6A1}"=>"x",
    "\u{1D6A2}"=>"y",
    "\u{1D6A3}"=>"z",
    "\u{1D6A4}"=>"\u0131",
    "\u{1D6A5}"=>"\u0237",
    "\u{1D6A8}"=>"\u0391",
    "\u{1D6A9}"=>"\u0392",
    "\u{1D6AA}"=>"\u0393",
    "\u{1D6AB}"=>"\u0394",
    "\u{1D6AC}"=>"\u0395",
    "\u{1D6AD}"=>"\u0396",
    "\u{1D6AE}"=>"\u0397",
    "\u{1D6AF}"=>"\u0398",
    "\u{1D6B0}"=>"\u0399",
    "\u{1D6B1}"=>"\u039A",
    "\u{1D6B2}"=>"\u039B",
    "\u{1D6B3}"=>"\u039C",
    "\u{1D6B4}"=>"\u039D",
    "\u{1D6B5}"=>"\u039E",
    "\u{1D6B6}"=>"\u039F",
    "\u{1D6B7}"=>"\u03A0",
    "\u{1D6B8}"=>"\u03A1",
    "\u{1D6B9}"=>"\u0398",
    "\u{1D6BA}"=>"\u03A3",
    "\u{1D6BB}"=>"\u03A4",
    "\u{1D6BC}"=>"\u03A5",
    "\u{1D6BD}"=>"\u03A6",
    "\u{1D6BE}"=>"\u03A7",
    "\u{1D6BF}"=>"\u03A8",
    "\u{1D6C0}"=>"\u03A9",
    "\u{1D6C1}"=>"\u2207",
    "\u{1D6C2}"=>"\u03B1",
    "\u{1D6C3}"=>"\u03B2",
    "\u{1D6C4}"=>"\u03B3",
    "\u{1D6C5}"=>"\u03B4",
    "\u{1D6C6}"=>"\u03B5",
    "\u{1D6C7}"=>"\u03B6",
    "\u{1D6C8}"=>"\u03B7",
    "\u{1D6C9}"=>"\u03B8",
    "\u{1D6CA}"=>"\u03B9",
    "\u{1D6CB}"=>"\u03BA",
    "\u{1D6CC}"=>"\u03BB",
    "\u{1D6CD}"=>"\u03BC",
    "\u{1D6CE}"=>"\u03BD",
    "\u{1D6CF}"=>"\u03BE",
    "\u{1D6D0}"=>"\u03BF",
    "\u{1D6D1}"=>"\u03C0",
    "\u{1D6D2}"=>"\u03C1",
    "\u{1D6D3}"=>"\u03C2",
    "\u{1D6D4}"=>"\u03C3",
    "\u{1D6D5}"=>"\u03C4",
    "\u{1D6D6}"=>"\u03C5",
    "\u{1D6D7}"=>"\u03C6",
    "\u{1D6D8}"=>"\u03C7",
    "\u{1D6D9}"=>"\u03C8",
    "\u{1D6DA}"=>"\u03C9",
    "\u{1D6DB}"=>"\u2202",
    "\u{1D6DC}"=>"\u03B5",
    "\u{1D6DD}"=>"\u03B8",
    "\u{1D6DE}"=>"\u03BA",
    "\u{1D6DF}"=>"\u03C6",
    "\u{1D6E0}"=>"\u03C1",
    "\u{1D6E1}"=>"\u03C0",
    "\u{1D6E2}"=>"\u0391",
    "\u{1D6E3}"=>"\u0392",
    "\u{1D6E4}"=>"\u0393",
    "\u{1D6E5}"=>"\u0394",
    "\u{1D6E6}"=>"\u0395",
    "\u{1D6E7}"=>"\u0396",
    "\u{1D6E8}"=>"\u0397",
    "\u{1D6E9}"=>"\u0398",
    "\u{1D6EA}"=>"\u0399",
    "\u{1D6EB}"=>"\u039A",
    "\u{1D6EC}"=>"\u039B",
    "\u{1D6ED}"=>"\u039C",
    "\u{1D6EE}"=>"\u039D",
    "\u{1D6EF}"=>"\u039E",
    "\u{1D6F0}"=>"\u039F",
    "\u{1D6F1}"=>"\u03A0",
    "\u{1D6F2}"=>"\u03A1",
    "\u{1D6F3}"=>"\u0398",
    "\u{1D6F4}"=>"\u03A3",
    "\u{1D6F5}"=>"\u03A4",
    "\u{1D6F6}"=>"\u03A5",
    "\u{1D6F7}"=>"\u03A6",
    "\u{1D6F8}"=>"\u03A7",
    "\u{1D6F9}"=>"\u03A8",
    "\u{1D6FA}"=>"\u03A9",
    "\u{1D6FB}"=>"\u2207",
    "\u{1D6FC}"=>"\u03B1",
    "\u{1D6FD}"=>"\u03B2",
    "\u{1D6FE}"=>"\u03B3",
    "\u{1D6FF}"=>"\u03B4",
    "\u{1D700}"=>"\u03B5",
    "\u{1D701}"=>"\u03B6",
    "\u{1D702}"=>"\u03B7",
    "\u{1D703}"=>"\u03B8",
    "\u{1D704}"=>"\u03B9",
    "\u{1D705}"=>"\u03BA",
    "\u{1D706}"=>"\u03BB",
    "\u{1D707}"=>"\u03BC",
    "\u{1D708}"=>"\u03BD",
    "\u{1D709}"=>"\u03BE",
    "\u{1D70A}"=>"\u03BF",
    "\u{1D70B}"=>"\u03C0",
    "\u{1D70C}"=>"\u03C1",
    "\u{1D70D}"=>"\u03C2",
    "\u{1D70E}"=>"\u03C3",
    "\u{1D70F}"=>"\u03C4",
    "\u{1D710}"=>"\u03C5",
    "\u{1D711}"=>"\u03C6",
    "\u{1D712}"=>"\u03C7",
    "\u{1D713}"=>"\u03C8",
    "\u{1D714}"=>"\u03C9",
    "\u{1D715}"=>"\u2202",
    "\u{1D716}"=>"\u03B5",
    "\u{1D717}"=>"\u03B8",
    "\u{1D718}"=>"\u03BA",
    "\u{1D719}"=>"\u03C6",
    "\u{1D71A}"=>"\u03C1",
    "\u{1D71B}"=>"\u03C0",
    "\u{1D71C}"=>"\u0391",
    "\u{1D71D}"=>"\u0392",
    "\u{1D71E}"=>"\u0393",
    "\u{1D71F}"=>"\u0394",
    "\u{1D720}"=>"\u0395",
    "\u{1D721}"=>"\u0396",
    "\u{1D722}"=>"\u0397",
    "\u{1D723}"=>"\u0398",
    "\u{1D724}"=>"\u0399",
    "\u{1D725}"=>"\u039A",
    "\u{1D726}"=>"\u039B",
    "\u{1D727}"=>"\u039C",
    "\u{1D728}"=>"\u039D",
    "\u{1D729}"=>"\u039E",
    "\u{1D72A}"=>"\u039F",
    "\u{1D72B}"=>"\u03A0",
    "\u{1D72C}"=>"\u03A1",
    "\u{1D72D}"=>"\u0398",
    "\u{1D72E}"=>"\u03A3",
    "\u{1D72F}"=>"\u03A4",
    "\u{1D730}"=>"\u03A5",
    "\u{1D731}"=>"\u03A6",
    "\u{1D732}"=>"\u03A7",
    "\u{1D733}"=>"\u03A8",
    "\u{1D734}"=>"\u03A9",
    "\u{1D735}"=>"\u2207",
    "\u{1D736}"=>"\u03B1",
    "\u{1D737}"=>"\u03B2",
    "\u{1D738}"=>"\u03B3",
    "\u{1D739}"=>"\u03B4",
    "\u{1D73A}"=>"\u03B5",
    "\u{1D73B}"=>"\u03B6",
    "\u{1D73C}"=>"\u03B7",
    "\u{1D73D}"=>"\u03B8",
    "\u{1D73E}"=>"\u03B9",
    "\u{1D73F}"=>"\u03BA",
    "\u{1D740}"=>"\u03BB",
    "\u{1D741}"=>"\u03BC",
    "\u{1D742}"=>"\u03BD",
    "\u{1D743}"=>"\u03BE",
    "\u{1D744}"=>"\u03BF",
    "\u{1D745}"=>"\u03C0",
    "\u{1D746}"=>"\u03C1",
    "\u{1D747}"=>"\u03C2",
    "\u{1D748}"=>"\u03C3",
    "\u{1D749}"=>"\u03C4",
    "\u{1D74A}"=>"\u03C5",
    "\u{1D74B}"=>"\u03C6",
    "\u{1D74C}"=>"\u03C7",
    "\u{1D74D}"=>"\u03C8",
    "\u{1D74E}"=>"\u03C9",
    "\u{1D74F}"=>"\u2202",
    "\u{1D750}"=>"\u03B5",
    "\u{1D751}"=>"\u03B8",
    "\u{1D752}"=>"\u03BA",
    "\u{1D753}"=>"\u03C6",
    "\u{1D754}"=>"\u03C1",
    "\u{1D755}"=>"\u03C0",
    "\u{1D756}"=>"\u0391",
    "\u{1D757}"=>"\u0392",
    "\u{1D758}"=>"\u0393",
    "\u{1D759}"=>"\u0394",
    "\u{1D75A}"=>"\u0395",
    "\u{1D75B}"=>"\u0396",
    "\u{1D75C}"=>"\u0397",
    "\u{1D75D}"=>"\u0398",
    "\u{1D75E}"=>"\u0399",
    "\u{1D75F}"=>"\u039A",
    "\u{1D760}"=>"\u039B",
    "\u{1D761}"=>"\u039C",
    "\u{1D762}"=>"\u039D",
    "\u{1D763}"=>"\u039E",
    "\u{1D764}"=>"\u039F",
    "\u{1D765}"=>"\u03A0",
    "\u{1D766}"=>"\u03A1",
    "\u{1D767}"=>"\u0398",
    "\u{1D768}"=>"\u03A3",
    "\u{1D769}"=>"\u03A4",
    "\u{1D76A}"=>"\u03A5",
    "\u{1D76B}"=>"\u03A6",
    "\u{1D76C}"=>"\u03A7",
    "\u{1D76D}"=>"\u03A8",
    "\u{1D76E}"=>"\u03A9",
    "\u{1D76F}"=>"\u2207",
    "\u{1D770}"=>"\u03B1",
    "\u{1D771}"=>"\u03B2",
    "\u{1D772}"=>"\u03B3",
    "\u{1D773}"=>"\u03B4",
    "\u{1D774}"=>"\u03B5",
    "\u{1D775}"=>"\u03B6",
    "\u{1D776}"=>"\u03B7",
    "\u{1D777}"=>"\u03B8",
    "\u{1D778}"=>"\u03B9",
    "\u{1D779}"=>"\u03BA",
    "\u{1D77A}"=>"\u03BB",
    "\u{1D77B}"=>"\u03BC",
    "\u{1D77C}"=>"\u03BD",
    "\u{1D77D}"=>"\u03BE",
    "\u{1D77E}"=>"\u03BF",
    "\u{1D77F}"=>"\u03C0",
    "\u{1D780}"=>"\u03C1",
    "\u{1D781}"=>"\u03C2",
    "\u{1D782}"=>"\u03C3",
    "\u{1D783}"=>"\u03C4",
    "\u{1D784}"=>"\u03C5",
    "\u{1D785}"=>"\u03C6",
    "\u{1D786}"=>"\u03C7",
    "\u{1D787}"=>"\u03C8",
    "\u{1D788}"=>"\u03C9",
    "\u{1D789}"=>"\u2202",
    "\u{1D78A}"=>"\u03B5",
    "\u{1D78B}"=>"\u03B8",
    "\u{1D78C}"=>"\u03BA",
    "\u{1D78D}"=>"\u03C6",
    "\u{1D78E}"=>"\u03C1",
    "\u{1D78F}"=>"\u03C0",
    "\u{1D790}"=>"\u0391",
    "\u{1D791}"=>"\u0392",
    "\u{1D792}"=>"\u0393",
    "\u{1D793}"=>"\u0394",
    "\u{1D794}"=>"\u0395",
    "\u{1D795}"=>"\u0396",
    "\u{1D796}"=>"\u0397",
    "\u{1D797}"=>"\u0398",
    "\u{1D798}"=>"\u0399",
    "\u{1D799}"=>"\u039A",
    "\u{1D79A}"=>"\u039B",
    "\u{1D79B}"=>"\u039C",
    "\u{1D79C}"=>"\u039D",
    "\u{1D79D}"=>"\u039E",
    "\u{1D79E}"=>"\u039F",
    "\u{1D79F}"=>"\u03A0",
    "\u{1D7A0}"=>"\u03A1",
    "\u{1D7A1}"=>"\u0398",
    "\u{1D7A2}"=>"\u03A3",
    "\u{1D7A3}"=>"\u03A4",
    "\u{1D7A4}"=>"\u03A5",
    "\u{1D7A5}"=>"\u03A6",
    "\u{1D7A6}"=>"\u03A7",
    "\u{1D7A7}"=>"\u03A8",
    "\u{1D7A8}"=>"\u03A9",
    "\u{1D7A9}"=>"\u2207",
    "\u{1D7AA}"=>"\u03B1",
    "\u{1D7AB}"=>"\u03B2",
    "\u{1D7AC}"=>"\u03B3",
    "\u{1D7AD}"=>"\u03B4",
    "\u{1D7AE}"=>"\u03B5",
    "\u{1D7AF}"=>"\u03B6",
    "\u{1D7B0}"=>"\u03B7",
    "\u{1D7B1}"=>"\u03B8",
    "\u{1D7B2}"=>"\u03B9",
    "\u{1D7B3}"=>"\u03BA",
    "\u{1D7B4}"=>"\u03BB",
    "\u{1D7B5}"=>"\u03BC",
    "\u{1D7B6}"=>"\u03BD",
    "\u{1D7B7}"=>"\u03BE",
    "\u{1D7B8}"=>"\u03BF",
    "\u{1D7B9}"=>"\u03C0",
    "\u{1D7BA}"=>"\u03C1",
    "\u{1D7BB}"=>"\u03C2",
    "\u{1D7BC}"=>"\u03C3",
    "\u{1D7BD}"=>"\u03C4",
    "\u{1D7BE}"=>"\u03C5",
    "\u{1D7BF}"=>"\u03C6",
    "\u{1D7C0}"=>"\u03C7",
    "\u{1D7C1}"=>"\u03C8",
    "\u{1D7C2}"=>"\u03C9",
    "\u{1D7C3}"=>"\u2202",
    "\u{1D7C4}"=>"\u03B5",
    "\u{1D7C5}"=>"\u03B8",
    "\u{1D7C6}"=>"\u03BA",
    "\u{1D7C7}"=>"\u03C6",
    "\u{1D7C8}"=>"\u03C1",
    "\u{1D7C9}"=>"\u03C0",
    "\u{1D7CA}"=>"\u03DC",
    "\u{1D7CB}"=>"\u03DD",
    "\u{1D7CE}"=>"0",
    "\u{1D7CF}"=>"1",
    "\u{1D7D0}"=>"2",
    "\u{1D7D1}"=>"3",
    "\u{1D7D2}"=>"4",
    "\u{1D7D3}"=>"5",
    "\u{1D7D4}"=>"6",
    "\u{1D7D5}"=>"7",
    "\u{1D7D6}"=>"8",
    "\u{1D7D7}"=>"9",
    "\u{1D7D8}"=>"0",
    "\u{1D7D9}"=>"1",
    "\u{1D7DA}"=>"2",
    "\u{1D7DB}"=>"3",
    "\u{1D7DC}"=>"4",
    "\u{1D7DD}"=>"5",
    "\u{1D7DE}"=>"6",
    "\u{1D7DF}"=>"7",
    "\u{1D7E0}"=>"8",
    "\u{1D7E1}"=>"9",
    "\u{1D7E2}"=>"0",
    "\u{1D7E3}"=>"1",
    "\u{1D7E4}"=>"2",
    "\u{1D7E5}"=>"3",
    "\u{1D7E6}"=>"4",
    "\u{1D7E7}"=>"5",
    "\u{1D7E8}"=>"6",
    "\u{1D7E9}"=>"7",
    "\u{1D7EA}"=>"8",
    "\u{1D7EB}"=>"9",
    "\u{1D7EC}"=>"0",
    "\u{1D7ED}"=>"1",
    "\u{1D7EE}"=>"2",
    "\u{1D7EF}"=>"3",
    "\u{1D7F0}"=>"4",
    "\u{1D7F1}"=>"5",
    "\u{1D7F2}"=>"6",
    "\u{1D7F3}"=>"7",
    "\u{1D7F4}"=>"8",
    "\u{1D7F5}"=>"9",
    "\u{1D7F6}"=>"0",
    "\u{1D7F7}"=>"1",
    "\u{1D7F8}"=>"2",
    "\u{1D7F9}"=>"3",
    "\u{1D7FA}"=>"4",
    "\u{1D7FB}"=>"5",
    "\u{1D7FC}"=>"6",
    "\u{1D7FD}"=>"7",
    "\u{1D7FE}"=>"8",
    "\u{1D7FF}"=>"9",
    "\u{1EE00}"=>"\u0627",
    "\u{1EE01}"=>"\u0628",
    "\u{1EE02}"=>"\u062C",
    "\u{1EE03}"=>"\u062F",
    "\u{1EE05}"=>"\u0648",
    "\u{1EE06}"=>"\u0632",
    "\u{1EE07}"=>"\u062D",
    "\u{1EE08}"=>"\u0637",
    "\u{1EE09}"=>"\u064A",
    "\u{1EE0A}"=>"\u0643",
    "\u{1EE0B}"=>"\u0644",
    "\u{1EE0C}"=>"\u0645",
    "\u{1EE0D}"=>"\u0646",
    "\u{1EE0E}"=>"\u0633",
    "\u{1EE0F}"=>"\u0639",
    "\u{1EE10}"=>"\u0641",
    "\u{1EE11}"=>"\u0635",
    "\u{1EE12}"=>"\u0642",
    "\u{1EE13}"=>"\u0631",
    "\u{1EE14}"=>"\u0634",
    "\u{1EE15}"=>"\u062A",
    "\u{1EE16}"=>"\u062B",
    "\u{1EE17}"=>"\u062E",
    "\u{1EE18}"=>"\u0630",
    "\u{1EE19}"=>"\u0636",
    "\u{1EE1A}"=>"\u0638",
    "\u{1EE1B}"=>"\u063A",
    "\u{1EE1C}"=>"\u066E",
    "\u{1EE1D}"=>"\u06BA",
    "\u{1EE1E}"=>"\u06A1",
    "\u{1EE1F}"=>"\u066F",
    "\u{1EE21}"=>"\u0628",
    "\u{1EE22}"=>"\u062C",
    "\u{1EE24}"=>"\u0647",
    "\u{1EE27}"=>"\u062D",
    "\u{1EE29}"=>"\u064A",
    "\u{1EE2A}"=>"\u0643",
    "\u{1EE2B}"=>"\u0644",
    "\u{1EE2C}"=>"\u0645",
    "\u{1EE2D}"=>"\u0646",
    "\u{1EE2E}"=>"\u0633",
    "\u{1EE2F}"=>"\u0639",
    "\u{1EE30}"=>"\u0641",
    "\u{1EE31}"=>"\u0635",
    "\u{1EE32}"=>"\u0642",
    "\u{1EE34}"=>"\u0634",
    "\u{1EE35}"=>"\u062A",
    "\u{1EE36}"=>"\u062B",
    "\u{1EE37}"=>"\u062E",
    "\u{1EE39}"=>"\u0636",
    "\u{1EE3B}"=>"\u063A",
    "\u{1EE42}"=>"\u062C",
    "\u{1EE47}"=>"\u062D",
    "\u{1EE49}"=>"\u064A",
    "\u{1EE4B}"=>"\u0644",
    "\u{1EE4D}"=>"\u0646",
    "\u{1EE4E}"=>"\u0633",
    "\u{1EE4F}"=>"\u0639",
    "\u{1EE51}"=>"\u0635",
    "\u{1EE52}"=>"\u0642",
    "\u{1EE54}"=>"\u0634",
    "\u{1EE57}"=>"\u062E",
    "\u{1EE59}"=>"\u0636",
    "\u{1EE5B}"=>"\u063A",
    "\u{1EE5D}"=>"\u06BA",
    "\u{1EE5F}"=>"\u066F",
    "\u{1EE61}"=>"\u0628",
    "\u{1EE62}"=>"\u062C",
    "\u{1EE64}"=>"\u0647",
    "\u{1EE67}"=>"\u062D",
    "\u{1EE68}"=>"\u0637",
    "\u{1EE69}"=>"\u064A",
    "\u{1EE6A}"=>"\u0643",
    "\u{1EE6C}"=>"\u0645",
    "\u{1EE6D}"=>"\u0646",
    "\u{1EE6E}"=>"\u0633",
    "\u{1EE6F}"=>"\u0639",
    "\u{1EE70}"=>"\u0641",
    "\u{1EE71}"=>"\u0635",
    "\u{1EE72}"=>"\u0642",
    "\u{1EE74}"=>"\u0634",
    "\u{1EE75}"=>"\u062A",
    "\u{1EE76}"=>"\u062B",
    "\u{1EE77}"=>"\u062E",
    "\u{1EE79}"=>"\u0636",
    "\u{1EE7A}"=>"\u0638",
    "\u{1EE7B}"=>"\u063A",
    "\u{1EE7C}"=>"\u066E",
    "\u{1EE7E}"=>"\u06A1",
    "\u{1EE80}"=>"\u0627",
    "\u{1EE81}"=>"\u0628",
    "\u{1EE82}"=>"\u062C",
    "\u{1EE83}"=>"\u062F",
    "\u{1EE84}"=>"\u0647",
    "\u{1EE85}"=>"\u0648",
    "\u{1EE86}"=>"\u0632",
    "\u{1EE87}"=>"\u062D",
    "\u{1EE88}"=>"\u0637",
    "\u{1EE89}"=>"\u064A",
    "\u{1EE8B}"=>"\u0644",
    "\u{1EE8C}"=>"\u0645",
    "\u{1EE8D}"=>"\u0646",
    "\u{1EE8E}"=>"\u0633",
    "\u{1EE8F}"=>"\u0639",
    "\u{1EE90}"=>"\u0641",
    "\u{1EE91}"=>"\u0635",
    "\u{1EE92}"=>"\u0642",
    "\u{1EE93}"=>"\u0631",
    "\u{1EE94}"=>"\u0634",
    "\u{1EE95}"=>"\u062A",
    "\u{1EE96}"=>"\u062B",
    "\u{1EE97}"=>"\u062E",
    "\u{1EE98}"=>"\u0630",
    "\u{1EE99}"=>"\u0636",
    "\u{1EE9A}"=>"\u0638",
    "\u{1EE9B}"=>"\u063A",
    "\u{1EEA1}"=>"\u0628",
    "\u{1EEA2}"=>"\u062C",
    "\u{1EEA3}"=>"\u062F",
    "\u{1EEA5}"=>"\u0648",
    "\u{1EEA6}"=>"\u0632",
    "\u{1EEA7}"=>"\u062D",
    "\u{1EEA8}"=>"\u0637",
    "\u{1EEA9}"=>"\u064A",
    "\u{1EEAB}"=>"\u0644",
    "\u{1EEAC}"=>"\u0645",
    "\u{1EEAD}"=>"\u0646",
    "\u{1EEAE}"=>"\u0633",
    "\u{1EEAF}"=>"\u0639",
    "\u{1EEB0}"=>"\u0641",
    "\u{1EEB1}"=>"\u0635",
    "\u{1EEB2}"=>"\u0642",
    "\u{1EEB3}"=>"\u0631",
    "\u{1EEB4}"=>"\u0634",
    "\u{1EEB5}"=>"\u062A",
    "\u{1EEB6}"=>"\u062B",
    "\u{1EEB7}"=>"\u062E",
    "\u{1EEB8}"=>"\u0630",
    "\u{1EEB9}"=>"\u0636",
    "\u{1EEBA}"=>"\u0638",
    "\u{1EEBB}"=>"\u063A",
    "\u{1F100}"=>"0.",
    "\u{1F101}"=>"0,",
    "\u{1F102}"=>"1,",
    "\u{1F103}"=>"2,",
    "\u{1F104}"=>"3,",
    "\u{1F105}"=>"4,",
    "\u{1F106}"=>"5,",
    "\u{1F107}"=>"6,",
    "\u{1F108}"=>"7,",
    "\u{1F109}"=>"8,",
    "\u{1F10A}"=>"9,",
    "\u{1F110}"=>"(A)",
    "\u{1F111}"=>"(B)",
    "\u{1F112}"=>"(C)",
    "\u{1F113}"=>"(D)",
    "\u{1F114}"=>"(E)",
    "\u{1F115}"=>"(F)",
    "\u{1F116}"=>"(G)",
    "\u{1F117}"=>"(H)",
    "\u{1F118}"=>"(I)",
    "\u{1F119}"=>"(J)",
    "\u{1F11A}"=>"(K)",
    "\u{1F11B}"=>"(L)",
    "\u{1F11C}"=>"(M)",
    "\u{1F11D}"=>"(N)",
    "\u{1F11E}"=>"(O)",
    "\u{1F11F}"=>"(P)",
    "\u{1F120}"=>"(Q)",
    "\u{1F121}"=>"(R)",
    "\u{1F122}"=>"(S)",
    "\u{1F123}"=>"(T)",
    "\u{1F124}"=>"(U)",
    "\u{1F125}"=>"(V)",
    "\u{1F126}"=>"(W)",
    "\u{1F127}"=>"(X)",
    "\u{1F128}"=>"(Y)",
    "\u{1F129}"=>"(Z)",
    "\u{1F12A}"=>"\u3014S\u3015",
    "\u{1F12B}"=>"C",
    "\u{1F12C}"=>"R",
    "\u{1F12D}"=>"CD",
    "\u{1F12E}"=>"WZ",
    "\u{1F130}"=>"A",
    "\u{1F131}"=>"B",
    "\u{1F132}"=>"C",
    "\u{1F133}"=>"D",
    "\u{1F134}"=>"E",
    "\u{1F135}"=>"F",
    "\u{1F136}"=>"G",
    "\u{1F137}"=>"H",
    "\u{1F138}"=>"I",
    "\u{1F139}"=>"J",
    "\u{1F13A}"=>"K",
    "\u{1F13B}"=>"L",
    "\u{1F13C}"=>"M",
    "\u{1F13D}"=>"N",
    "\u{1F13E}"=>"O",
    "\u{1F13F}"=>"P",
    "\u{1F140}"=>"Q",
    "\u{1F141}"=>"R",
    "\u{1F142}"=>"S",
    "\u{1F143}"=>"T",
    "\u{1F144}"=>"U",
    "\u{1F145}"=>"V",
    "\u{1F146}"=>"W",
    "\u{1F147}"=>"X",
    "\u{1F148}"=>"Y",
    "\u{1F149}"=>"Z",
    "\u{1F14A}"=>"HV",
    "\u{1F14B}"=>"MV",
    "\u{1F14C}"=>"SD",
    "\u{1F14D}"=>"SS",
    "\u{1F14E}"=>"PPV",
    "\u{1F14F}"=>"WC",
    "\u{1F16A}"=>"MC",
    "\u{1F16B}"=>"MD",
    "\u{1F16C}"=>"MR",
    "\u{1F190}"=>"DJ",
    "\u{1F200}"=>"\u307B\u304B",
    "\u{1F201}"=>"\u30B3\u30B3",
    "\u{1F202}"=>"\u30B5",
    "\u{1F210}"=>"\u624B",
    "\u{1F211}"=>"\u5B57",
    "\u{1F212}"=>"\u53CC",
    "\u{1F213}"=>"\u30C7",
    "\u{1F214}"=>"\u4E8C",
    "\u{1F215}"=>"\u591A",
    "\u{1F216}"=>"\u89E3",
    "\u{1F217}"=>"\u5929",
    "\u{1F218}"=>"\u4EA4",
    "\u{1F219}"=>"\u6620",
    "\u{1F21A}"=>"\u7121",
    "\u{1F21B}"=>"\u6599",
    "\u{1F21C}"=>"\u524D",
    "\u{1F21D}"=>"\u5F8C",
    "\u{1F21E}"=>"\u518D",
    "\u{1F21F}"=>"\u65B0",
    "\u{1F220}"=>"\u521D",
    "\u{1F221}"=>"\u7D42",
    "\u{1F222}"=>"\u751F",
    "\u{1F223}"=>"\u8CA9",
    "\u{1F224}"=>"\u58F0",
    "\u{1F225}"=>"\u5439",
    "\u{1F226}"=>"\u6F14",
    "\u{1F227}"=>"\u6295",
    "\u{1F228}"=>"\u6355",
    "\u{1F229}"=>"\u4E00",
    "\u{1F22A}"=>"\u4E09",
    "\u{1F22B}"=>"\u904A",
    "\u{1F22C}"=>"\u5DE6",
    "\u{1F22D}"=>"\u4E2D",
    "\u{1F22E}"=>"\u53F3",
    "\u{1F22F}"=>"\u6307",
    "\u{1F230}"=>"\u8D70",
    "\u{1F231}"=>"\u6253",
    "\u{1F232}"=>"\u7981",
    "\u{1F233}"=>"\u7A7A",
    "\u{1F234}"=>"\u5408",
    "\u{1F235}"=>"\u6E80",
    "\u{1F236}"=>"\u6709",
    "\u{1F237}"=>"\u6708",
    "\u{1F238}"=>"\u7533",
    "\u{1F239}"=>"\u5272",
    "\u{1F23A}"=>"\u55B6",
    "\u{1F23B}"=>"\u914D",
    "\u{1F240}"=>"\u3014\u672C\u3015",
    "\u{1F241}"=>"\u3014\u4E09\u3015",
    "\u{1F242}"=>"\u3014\u4E8C\u3015",
    "\u{1F243}"=>"\u3014\u5B89\u3015",
    "\u{1F244}"=>"\u3014\u70B9\u3015",
    "\u{1F245}"=>"\u3014\u6253\u3015",
    "\u{1F246}"=>"\u3014\u76D7\u3015",
    "\u{1F247}"=>"\u3014\u52DD\u3015",
    "\u{1F248}"=>"\u3014\u6557\u3015",
    "\u{1F250}"=>"\u5F97",
    "\u{1F251}"=>"\u53EF",
    "\u0385"=>" \u0308\u0301",
    "\u03D3"=>"\u03A5\u0301",
    "\u03D4"=>"\u03A5\u0308",
    "\u1E9B"=>"s\u0307",
    "\u1FC1"=>" \u0308\u0342",
    "\u1FCD"=>" \u0313\u0300",
    "\u1FCE"=>" \u0313\u0301",
    "\u1FCF"=>" \u0313\u0342",
    "\u1FDD"=>" \u0314\u0300",
    "\u1FDE"=>" \u0314\u0301",
    "\u1FDF"=>" \u0314\u0342",
    "\u1FED"=>" \u0308\u0300",
    "\u1FEE"=>" \u0308\u0301",
    "\u1FFD"=>" \u0301",
    "\u2000"=>" ",
    "\u2001"=>" ",
  }.freeze

  COMPOSITION_TABLE = {
    "A\u0300"=>"\u00C0",
    "A\u0301"=>"\u00C1",
    "A\u0302"=>"\u00C2",
    "A\u0303"=>"\u00C3",
    "A\u0308"=>"\u00C4",
    "A\u030A"=>"\u00C5",
    "C\u0327"=>"\u00C7",
    "E\u0300"=>"\u00C8",
    "E\u0301"=>"\u00C9",
    "E\u0302"=>"\u00CA",
    "E\u0308"=>"\u00CB",
    "I\u0300"=>"\u00CC",
    "I\u0301"=>"\u00CD",
    "I\u0302"=>"\u00CE",
    "I\u0308"=>"\u00CF",
    "N\u0303"=>"\u00D1",
    "O\u0300"=>"\u00D2",
    "O\u0301"=>"\u00D3",
    "O\u0302"=>"\u00D4",
    "O\u0303"=>"\u00D5",
    "O\u0308"=>"\u00D6",
    "U\u0300"=>"\u00D9",
    "U\u0301"=>"\u00DA",
    "U\u0302"=>"\u00DB",
    "U\u0308"=>"\u00DC",
    "Y\u0301"=>"\u00DD",
    "a\u0300"=>"\u00E0",
    "a\u0301"=>"\u00E1",
    "a\u0302"=>"\u00E2",
    "a\u0303"=>"\u00E3",
    "a\u0308"=>"\u00E4",
    "a\u030A"=>"\u00E5",
    "c\u0327"=>"\u00E7",
    "e\u0300"=>"\u00E8",
    "e\u0301"=>"\u00E9",
    "e\u0302"=>"\u00EA",
    "e\u0308"=>"\u00EB",
    "i\u0300"=>"\u00EC",
    "i\u0301"=>"\u00ED",
    "i\u0302"=>"\u00EE",
    "i\u0308"=>"\u00EF",
    "n\u0303"=>"\u00F1",
    "o\u0300"=>"\u00F2",
    "o\u0301"=>"\u00F3",
    "o\u0302"=>"\u00F4",
    "o\u0303"=>"\u00F5",
    "o\u0308"=>"\u00F6",
    "u\u0300"=>"\u00F9",
    "u\u0301"=>"\u00FA",
    "u\u0302"=>"\u00FB",
    "u\u0308"=>"\u00FC",
    "y\u0301"=>"\u00FD",
    "y\u0308"=>"\u00FF",
    "A\u0304"=>"\u0100",
    "a\u0304"=>"\u0101",
    "A\u0306"=>"\u0102",
    "a\u0306"=>"\u0103",
    "A\u0328"=>"\u0104",
    "a\u0328"=>"\u0105",
    "C\u0301"=>"\u0106",
    "c\u0301"=>"\u0107",
    "C\u0302"=>"\u0108",
    "c\u0302"=>"\u0109",
    "C\u0307"=>"\u010A",
    "c\u0307"=>"\u010B",
    "C\u030C"=>"\u010C",
    "c\u030C"=>"\u010D",
    "D\u030C"=>"\u010E",
    "d\u030C"=>"\u010F",
    "E\u0304"=>"\u0112",
    "e\u0304"=>"\u0113",
    "E\u0306"=>"\u0114",
    "e\u0306"=>"\u0115",
    "E\u0307"=>"\u0116",
    "e\u0307"=>"\u0117",
    "E\u0328"=>"\u0118",
    "e\u0328"=>"\u0119",
    "E\u030C"=>"\u011A",
    "e\u030C"=>"\u011B",
    "G\u0302"=>"\u011C",
    "g\u0302"=>"\u011D",
    "G\u0306"=>"\u011E",
    "g\u0306"=>"\u011F",
    "G\u0307"=>"\u0120",
    "g\u0307"=>"\u0121",
    "G\u0327"=>"\u0122",
    "g\u0327"=>"\u0123",
    "H\u0302"=>"\u0124",
    "h\u0302"=>"\u0125",
    "I\u0303"=>"\u0128",
    "i\u0303"=>"\u0129",
    "I\u0304"=>"\u012A",
    "i\u0304"=>"\u012B",
    "I\u0306"=>"\u012C",
    "i\u0306"=>"\u012D",
    "I\u0328"=>"\u012E",
    "i\u0328"=>"\u012F",
    "I\u0307"=>"\u0130",
    "J\u0302"=>"\u0134",
    "j\u0302"=>"\u0135",
    "K\u0327"=>"\u0136",
    "k\u0327"=>"\u0137",
    "L\u0301"=>"\u0139",
    "l\u0301"=>"\u013A",
    "L\u0327"=>"\u013B",
    "l\u0327"=>"\u013C",
    "L\u030C"=>"\u013D",
    "l\u030C"=>"\u013E",
    "N\u0301"=>"\u0143",
    "n\u0301"=>"\u0144",
    "N\u0327"=>"\u0145",
    "n\u0327"=>"\u0146",
    "N\u030C"=>"\u0147",
    "n\u030C"=>"\u0148",
    "O\u0304"=>"\u014C",
    "o\u0304"=>"\u014D",
    "O\u0306"=>"\u014E",
    "o\u0306"=>"\u014F",
    "O\u030B"=>"\u0150",
    "o\u030B"=>"\u0151",
    "R\u0301"=>"\u0154",
    "r\u0301"=>"\u0155",
    "R\u0327"=>"\u0156",
    "r\u0327"=>"\u0157",
    "R\u030C"=>"\u0158",
    "r\u030C"=>"\u0159",
    "S\u0301"=>"\u015A",
    "s\u0301"=>"\u015B",
    "S\u0302"=>"\u015C",
    "s\u0302"=>"\u015D",
    "S\u0327"=>"\u015E",
    "s\u0327"=>"\u015F",
    "S\u030C"=>"\u0160",
    "s\u030C"=>"\u0161",
    "T\u0327"=>"\u0162",
    "t\u0327"=>"\u0163",
    "T\u030C"=>"\u0164",
    "t\u030C"=>"\u0165",
    "U\u0303"=>"\u0168",
    "u\u0303"=>"\u0169",
    "U\u0304"=>"\u016A",
    "u\u0304"=>"\u016B",
    "U\u0306"=>"\u016C",
    "u\u0306"=>"\u016D",
    "U\u030A"=>"\u016E",
    "u\u030A"=>"\u016F",
    "U\u030B"=>"\u0170",
    "u\u030B"=>"\u0171",
    "U\u0328"=>"\u0172",
    "u\u0328"=>"\u0173",
    "W\u0302"=>"\u0174",
    "w\u0302"=>"\u0175",
    "Y\u0302"=>"\u0176",
    "y\u0302"=>"\u0177",
    "Y\u0308"=>"\u0178",
    "Z\u0301"=>"\u0179",
    "z\u0301"=>"\u017A",
    "Z\u0307"=>"\u017B",
    "z\u0307"=>"\u017C",
    "Z\u030C"=>"\u017D",
    "z\u030C"=>"\u017E",
    "O\u031B"=>"\u01A0",
    "o\u031B"=>"\u01A1",
    "U\u031B"=>"\u01AF",
    "u\u031B"=>"\u01B0",
    "A\u030C"=>"\u01CD",
    "a\u030C"=>"\u01CE",
    "I\u030C"=>"\u01CF",
    "i\u030C"=>"\u01D0",
    "O\u030C"=>"\u01D1",
    "o\u030C"=>"\u01D2",
    "U\u030C"=>"\u01D3",
    "u\u030C"=>"\u01D4",
    "\u00DC\u0304"=>"\u01D5",
    "\u00FC\u0304"=>"\u01D6",
    "\u00DC\u0301"=>"\u01D7",
    "\u00FC\u0301"=>"\u01D8",
    "\u00DC\u030C"=>"\u01D9",
    "\u00FC\u030C"=>"\u01DA",
    "\u00DC\u0300"=>"\u01DB",
    "\u00FC\u0300"=>"\u01DC",
    "\u00C4\u0304"=>"\u01DE",
    "\u00E4\u0304"=>"\u01DF",
    "\u0226\u0304"=>"\u01E0",
    "\u0227\u0304"=>"\u01E1",
    "\u00C6\u0304"=>"\u01E2",
    "\u00E6\u0304"=>"\u01E3",
    "G\u030C"=>"\u01E6",
    "g\u030C"=>"\u01E7",
    "K\u030C"=>"\u01E8",
    "k\u030C"=>"\u01E9",
    "O\u0328"=>"\u01EA",
    "o\u0328"=>"\u01EB",
    "\u01EA\u0304"=>"\u01EC",
    "\u01EB\u0304"=>"\u01ED",
    "\u01B7\u030C"=>"\u01EE",
    "\u0292\u030C"=>"\u01EF",
    "j\u030C"=>"\u01F0",
    "G\u0301"=>"\u01F4",
    "g\u0301"=>"\u01F5",
    "N\u0300"=>"\u01F8",
    "n\u0300"=>"\u01F9",
    "\u00C5\u0301"=>"\u01FA",
    "\u00E5\u0301"=>"\u01FB",
    "\u00C6\u0301"=>"\u01FC",
    "\u00E6\u0301"=>"\u01FD",
    "\u00D8\u0301"=>"\u01FE",
    "\u00F8\u0301"=>"\u01FF",
    "A\u030F"=>"\u0200",
    "a\u030F"=>"\u0201",
    "A\u0311"=>"\u0202",
    "a\u0311"=>"\u0203",
    "E\u030F"=>"\u0204",
    "e\u030F"=>"\u0205",
    "E\u0311"=>"\u0206",
    "e\u0311"=>"\u0207",
    "I\u030F"=>"\u0208",
    "i\u030F"=>"\u0209",
    "I\u0311"=>"\u020A",
    "i\u0311"=>"\u020B",
    "O\u030F"=>"\u020C",
    "o\u030F"=>"\u020D",
    "O\u0311"=>"\u020E",
    "o\u0311"=>"\u020F",
    "R\u030F"=>"\u0210",
    "r\u030F"=>"\u0211",
    "R\u0311"=>"\u0212",
    "r\u0311"=>"\u0213",
    "U\u030F"=>"\u0214",
    "u\u030F"=>"\u0215",
    "U\u0311"=>"\u0216",
    "u\u0311"=>"\u0217",
    "S\u0326"=>"\u0218",
    "s\u0326"=>"\u0219",
    "T\u0326"=>"\u021A",
    "t\u0326"=>"\u021B",
    "H\u030C"=>"\u021E",
    "h\u030C"=>"\u021F",
    "A\u0307"=>"\u0226",
    "a\u0307"=>"\u0227",
    "E\u0327"=>"\u0228",
    "e\u0327"=>"\u0229",
    "\u00D6\u0304"=>"\u022A",
    "\u00F6\u0304"=>"\u022B",
    "\u00D5\u0304"=>"\u022C",
    "\u00F5\u0304"=>"\u022D",
    "O\u0307"=>"\u022E",
    "o\u0307"=>"\u022F",
    "\u022E\u0304"=>"\u0230",
    "\u022F\u0304"=>"\u0231",
    "Y\u0304"=>"\u0232",
    "y\u0304"=>"\u0233",
    "\u00A8\u0301"=>"\u0385",
    "\u0391\u0301"=>"\u0386",
    "\u0395\u0301"=>"\u0388",
    "\u0397\u0301"=>"\u0389",
    "\u0399\u0301"=>"\u038A",
    "\u039F\u0301"=>"\u038C",
    "\u03A5\u0301"=>"\u038E",
    "\u03A9\u0301"=>"\u038F",
    "\u03CA\u0301"=>"\u0390",
    "\u0399\u0308"=>"\u03AA",
    "\u03A5\u0308"=>"\u03AB",
    "\u03B1\u0301"=>"\u03AC",
    "\u03B5\u0301"=>"\u03AD",
    "\u03B7\u0301"=>"\u03AE",
    "\u03B9\u0301"=>"\u03AF",
    "\u03CB\u0301"=>"\u03B0",
    "\u03B9\u0308"=>"\u03CA",
    "\u03C5\u0308"=>"\u03CB",
    "\u03BF\u0301"=>"\u03CC",
    "\u03C5\u0301"=>"\u03CD",
    "\u03C9\u0301"=>"\u03CE",
    "\u03D2\u0301"=>"\u03D3",
    "\u03D2\u0308"=>"\u03D4",
    "\u0415\u0300"=>"\u0400",
    "\u0415\u0308"=>"\u0401",
    "\u0413\u0301"=>"\u0403",
    "\u0406\u0308"=>"\u0407",
    "\u041A\u0301"=>"\u040C",
    "\u0418\u0300"=>"\u040D",
    "\u0423\u0306"=>"\u040E",
    "\u0418\u0306"=>"\u0419",
    "\u0438\u0306"=>"\u0439",
    "\u0435\u0300"=>"\u0450",
    "\u0435\u0308"=>"\u0451",
    "\u0433\u0301"=>"\u0453",
    "\u0456\u0308"=>"\u0457",
    "\u043A\u0301"=>"\u045C",
    "\u0438\u0300"=>"\u045D",
    "\u0443\u0306"=>"\u045E",
    "\u0474\u030F"=>"\u0476",
    "\u0475\u030F"=>"\u0477",
    "\u0416\u0306"=>"\u04C1",
    "\u0436\u0306"=>"\u04C2",
    "\u0410\u0306"=>"\u04D0",
    "\u0430\u0306"=>"\u04D1",
    "\u0410\u0308"=>"\u04D2",
    "\u0430\u0308"=>"\u04D3",
    "\u0415\u0306"=>"\u04D6",
    "\u0435\u0306"=>"\u04D7",
    "\u04D8\u0308"=>"\u04DA",
    "\u04D9\u0308"=>"\u04DB",
    "\u0416\u0308"=>"\u04DC",
    "\u0436\u0308"=>"\u04DD",
    "\u0417\u0308"=>"\u04DE",
    "\u0437\u0308"=>"\u04DF",
    "\u0418\u0304"=>"\u04E2",
    "\u0438\u0304"=>"\u04E3",
    "\u0418\u0308"=>"\u04E4",
    "\u0438\u0308"=>"\u04E5",
    "\u041E\u0308"=>"\u04E6",
    "\u043E\u0308"=>"\u04E7",
    "\u04E8\u0308"=>"\u04EA",
    "\u04E9\u0308"=>"\u04EB",
    "\u042D\u0308"=>"\u04EC",
    "\u044D\u0308"=>"\u04ED",
    "\u0423\u0304"=>"\u04EE",
    "\u0443\u0304"=>"\u04EF",
    "\u0423\u0308"=>"\u04F0",
    "\u0443\u0308"=>"\u04F1",
    "\u0423\u030B"=>"\u04F2",
    "\u0443\u030B"=>"\u04F3",
    "\u0427\u0308"=>"\u04F4",
    "\u0447\u0308"=>"\u04F5",
    "\u042B\u0308"=>"\u04F8",
    "\u044B\u0308"=>"\u04F9",
    "\u0627\u0653"=>"\u0622",
    "\u0627\u0654"=>"\u0623",
    "\u0648\u0654"=>"\u0624",
    "\u0627\u0655"=>"\u0625",
    "\u064A\u0654"=>"\u0626",
    "\u06D5\u0654"=>"\u06C0",
    "\u06C1\u0654"=>"\u06C2",
    "\u06D2\u0654"=>"\u06D3",
    "\u0928\u093C"=>"\u0929",
    "\u0930\u093C"=>"\u0931",
    "\u0933\u093C"=>"\u0934",
    "\u09C7\u09BE"=>"\u09CB",
    "\u09C7\u09D7"=>"\u09CC",
    "\u0B47\u0B56"=>"\u0B48",
    "\u0B47\u0B3E"=>"\u0B4B",
    "\u0B47\u0B57"=>"\u0B4C",
    "\u0B92\u0BD7"=>"\u0B94",
    "\u0BC6\u0BBE"=>"\u0BCA",
    "\u0BC7\u0BBE"=>"\u0BCB",
    "\u0BC6\u0BD7"=>"\u0BCC",
    "\u0C46\u0C56"=>"\u0C48",
    "\u0CBF\u0CD5"=>"\u0CC0",
    "\u0CC6\u0CD5"=>"\u0CC7",
    "\u0CC6\u0CD6"=>"\u0CC8",
    "\u0CC6\u0CC2"=>"\u0CCA",
    "\u0CCA\u0CD5"=>"\u0CCB",
    "\u0D46\u0D3E"=>"\u0D4A",
    "\u0D47\u0D3E"=>"\u0D4B",
    "\u0D46\u0D57"=>"\u0D4C",
    "\u0DD9\u0DCA"=>"\u0DDA",
    "\u0DD9\u0DCF"=>"\u0DDC",
    "\u0DDC\u0DCA"=>"\u0DDD",
    "\u0DD9\u0DDF"=>"\u0DDE",
    "\u1025\u102E"=>"\u1026",
    "\u1B05\u1B35"=>"\u1B06",
    "\u1B07\u1B35"=>"\u1B08",
    "\u1B09\u1B35"=>"\u1B0A",
    "\u1B0B\u1B35"=>"\u1B0C",
    "\u1B0D\u1B35"=>"\u1B0E",
    "\u1B11\u1B35"=>"\u1B12",
    "\u1B3A\u1B35"=>"\u1B3B",
    "\u1B3C\u1B35"=>"\u1B3D",
    "\u1B3E\u1B35"=>"\u1B40",
    "\u1B3F\u1B35"=>"\u1B41",
    "\u1B42\u1B35"=>"\u1B43",
    "A\u0325"=>"\u1E00",
    "a\u0325"=>"\u1E01",
    "B\u0307"=>"\u1E02",
    "b\u0307"=>"\u1E03",
    "B\u0323"=>"\u1E04",
    "b\u0323"=>"\u1E05",
    "B\u0331"=>"\u1E06",
    "b\u0331"=>"\u1E07",
    "\u00C7\u0301"=>"\u1E08",
    "\u00E7\u0301"=>"\u1E09",
    "D\u0307"=>"\u1E0A",
    "d\u0307"=>"\u1E0B",
    "D\u0323"=>"\u1E0C",
    "d\u0323"=>"\u1E0D",
    "D\u0331"=>"\u1E0E",
    "d\u0331"=>"\u1E0F",
    "D\u0327"=>"\u1E10",
    "d\u0327"=>"\u1E11",
    "D\u032D"=>"\u1E12",
    "d\u032D"=>"\u1E13",
    "\u0112\u0300"=>"\u1E14",
    "\u0113\u0300"=>"\u1E15",
    "\u0112\u0301"=>"\u1E16",
    "\u0113\u0301"=>"\u1E17",
    "E\u032D"=>"\u1E18",
    "e\u032D"=>"\u1E19",
    "E\u0330"=>"\u1E1A",
    "e\u0330"=>"\u1E1B",
    "\u0228\u0306"=>"\u1E1C",
    "\u0229\u0306"=>"\u1E1D",
    "F\u0307"=>"\u1E1E",
    "f\u0307"=>"\u1E1F",
    "G\u0304"=>"\u1E20",
    "g\u0304"=>"\u1E21",
    "H\u0307"=>"\u1E22",
    "h\u0307"=>"\u1E23",
    "H\u0323"=>"\u1E24",
    "h\u0323"=>"\u1E25",
    "H\u0308"=>"\u1E26",
    "h\u0308"=>"\u1E27",
    "H\u0327"=>"\u1E28",
    "h\u0327"=>"\u1E29",
    "H\u032E"=>"\u1E2A",
    "h\u032E"=>"\u1E2B",
    "I\u0330"=>"\u1E2C",
    "i\u0330"=>"\u1E2D",
    "\u00CF\u0301"=>"\u1E2E",
    "\u00EF\u0301"=>"\u1E2F",
    "K\u0301"=>"\u1E30",
    "k\u0301"=>"\u1E31",
    "K\u0323"=>"\u1E32",
    "k\u0323"=>"\u1E33",
    "K\u0331"=>"\u1E34",
    "k\u0331"=>"\u1E35",
    "L\u0323"=>"\u1E36",
    "l\u0323"=>"\u1E37",
    "\u1E36\u0304"=>"\u1E38",
    "\u1E37\u0304"=>"\u1E39",
    "L\u0331"=>"\u1E3A",
    "l\u0331"=>"\u1E3B",
    "L\u032D"=>"\u1E3C",
    "l\u032D"=>"\u1E3D",
    "M\u0301"=>"\u1E3E",
    "m\u0301"=>"\u1E3F",
    "M\u0307"=>"\u1E40",
    "m\u0307"=>"\u1E41",
    "M\u0323"=>"\u1E42",
    "m\u0323"=>"\u1E43",
    "N\u0307"=>"\u1E44",
    "n\u0307"=>"\u1E45",
    "N\u0323"=>"\u1E46",
    "n\u0323"=>"\u1E47",
    "N\u0331"=>"\u1E48",
    "n\u0331"=>"\u1E49",
    "N\u032D"=>"\u1E4A",
    "n\u032D"=>"\u1E4B",
    "\u00D5\u0301"=>"\u1E4C",
    "\u00F5\u0301"=>"\u1E4D",
    "\u00D5\u0308"=>"\u1E4E",
    "\u00F5\u0308"=>"\u1E4F",
    "\u014C\u0300"=>"\u1E50",
    "\u014D\u0300"=>"\u1E51",
    "\u014C\u0301"=>"\u1E52",
    "\u014D\u0301"=>"\u1E53",
    "P\u0301"=>"\u1E54",
    "p\u0301"=>"\u1E55",
    "P\u0307"=>"\u1E56",
    "p\u0307"=>"\u1E57",
    "R\u0307"=>"\u1E58",
    "r\u0307"=>"\u1E59",
    "R\u0323"=>"\u1E5A",
    "r\u0323"=>"\u1E5B",
    "\u1E5A\u0304"=>"\u1E5C",
    "\u1E5B\u0304"=>"\u1E5D",
    "R\u0331"=>"\u1E5E",
    "r\u0331"=>"\u1E5F",
    "S\u0307"=>"\u1E60",
    "s\u0307"=>"\u1E61",
    "S\u0323"=>"\u1E62",
    "s\u0323"=>"\u1E63",
    "\u015A\u0307"=>"\u1E64",
    "\u015B\u0307"=>"\u1E65",
    "\u0160\u0307"=>"\u1E66",
    "\u0161\u0307"=>"\u1E67",
    "\u1E62\u0307"=>"\u1E68",
    "\u1E63\u0307"=>"\u1E69",
    "T\u0307"=>"\u1E6A",
    "t\u0307"=>"\u1E6B",
    "T\u0323"=>"\u1E6C",
    "t\u0323"=>"\u1E6D",
    "T\u0331"=>"\u1E6E",
    "t\u0331"=>"\u1E6F",
    "T\u032D"=>"\u1E70",
    "t\u032D"=>"\u1E71",
    "U\u0324"=>"\u1E72",
    "u\u0324"=>"\u1E73",
    "U\u0330"=>"\u1E74",
    "u\u0330"=>"\u1E75",
    "U\u032D"=>"\u1E76",
    "u\u032D"=>"\u1E77",
    "\u0168\u0301"=>"\u1E78",
    "\u0169\u0301"=>"\u1E79",
    "\u016A\u0308"=>"\u1E7A",
    "\u016B\u0308"=>"\u1E7B",
    "V\u0303"=>"\u1E7C",
    "v\u0303"=>"\u1E7D",
    "V\u0323"=>"\u1E7E",
    "v\u0323"=>"\u1E7F",
    "W\u0300"=>"\u1E80",
    "w\u0300"=>"\u1E81",
    "W\u0301"=>"\u1E82",
    "w\u0301"=>"\u1E83",
    "W\u0308"=>"\u1E84",
    "w\u0308"=>"\u1E85",
    "W\u0307"=>"\u1E86",
    "w\u0307"=>"\u1E87",
    "W\u0323"=>"\u1E88",
    "w\u0323"=>"\u1E89",
    "X\u0307"=>"\u1E8A",
    "x\u0307"=>"\u1E8B",
    "X\u0308"=>"\u1E8C",
    "x\u0308"=>"\u1E8D",
    "Y\u0307"=>"\u1E8E",
    "y\u0307"=>"\u1E8F",
    "Z\u0302"=>"\u1E90",
    "z\u0302"=>"\u1E91",
    "Z\u0323"=>"\u1E92",
    "z\u0323"=>"\u1E93",
    "Z\u0331"=>"\u1E94",
    "z\u0331"=>"\u1E95",
    "h\u0331"=>"\u1E96",
    "t\u0308"=>"\u1E97",
    "w\u030A"=>"\u1E98",
    "y\u030A"=>"\u1E99",
    "\u017F\u0307"=>"\u1E9B",
    "A\u0323"=>"\u1EA0",
    "a\u0323"=>"\u1EA1",
    "A\u0309"=>"\u1EA2",
    "a\u0309"=>"\u1EA3",
    "\u00C2\u0301"=>"\u1EA4",
    "\u00E2\u0301"=>"\u1EA5",
    "\u00C2\u0300"=>"\u1EA6",
    "\u00E2\u0300"=>"\u1EA7",
    "\u00C2\u0309"=>"\u1EA8",
    "\u00E2\u0309"=>"\u1EA9",
    "\u00C2\u0303"=>"\u1EAA",
    "\u00E2\u0303"=>"\u1EAB",
    "\u1EA0\u0302"=>"\u1EAC",
    "\u1EA1\u0302"=>"\u1EAD",
    "\u0102\u0301"=>"\u1EAE",
    "\u0103\u0301"=>"\u1EAF",
    "\u0102\u0300"=>"\u1EB0",
    "\u0103\u0300"=>"\u1EB1",
    "\u0102\u0309"=>"\u1EB2",
    "\u0103\u0309"=>"\u1EB3",
    "\u0102\u0303"=>"\u1EB4",
    "\u0103\u0303"=>"\u1EB5",
    "\u1EA0\u0306"=>"\u1EB6",
    "\u1EA1\u0306"=>"\u1EB7",
    "E\u0323"=>"\u1EB8",
    "e\u0323"=>"\u1EB9",
    "E\u0309"=>"\u1EBA",
    "e\u0309"=>"\u1EBB",
    "E\u0303"=>"\u1EBC",
    "e\u0303"=>"\u1EBD",
    "\u00CA\u0301"=>"\u1EBE",
    "\u00EA\u0301"=>"\u1EBF",
    "\u00CA\u0300"=>"\u1EC0",
    "\u00EA\u0300"=>"\u1EC1",
    "\u00CA\u0309"=>"\u1EC2",
    "\u00EA\u0309"=>"\u1EC3",
    "\u00CA\u0303"=>"\u1EC4",
    "\u00EA\u0303"=>"\u1EC5",
    "\u1EB8\u0302"=>"\u1EC6",
    "\u1EB9\u0302"=>"\u1EC7",
    "I\u0309"=>"\u1EC8",
    "i\u0309"=>"\u1EC9",
    "I\u0323"=>"\u1ECA",
    "i\u0323"=>"\u1ECB",
    "O\u0323"=>"\u1ECC",
    "o\u0323"=>"\u1ECD",
    "O\u0309"=>"\u1ECE",
    "o\u0309"=>"\u1ECF",
    "\u00D4\u0301"=>"\u1ED0",
    "\u00F4\u0301"=>"\u1ED1",
    "\u00D4\u0300"=>"\u1ED2",
    "\u00F4\u0300"=>"\u1ED3",
    "\u00D4\u0309"=>"\u1ED4",
    "\u00F4\u0309"=>"\u1ED5",
    "\u00D4\u0303"=>"\u1ED6",
    "\u00F4\u0303"=>"\u1ED7",
    "\u1ECC\u0302"=>"\u1ED8",
    "\u1ECD\u0302"=>"\u1ED9",
    "\u01A0\u0301"=>"\u1EDA",
    "\u01A1\u0301"=>"\u1EDB",
    "\u01A0\u0300"=>"\u1EDC",
    "\u01A1\u0300"=>"\u1EDD",
    "\u01A0\u0309"=>"\u1EDE",
    "\u01A1\u0309"=>"\u1EDF",
    "\u01A0\u0303"=>"\u1EE0",
    "\u01A1\u0303"=>"\u1EE1",
    "\u01A0\u0323"=>"\u1EE2",
    "\u01A1\u0323"=>"\u1EE3",
    "U\u0323"=>"\u1EE4",
    "u\u0323"=>"\u1EE5",
    "U\u0309"=>"\u1EE6",
    "u\u0309"=>"\u1EE7",
    "\u01AF\u0301"=>"\u1EE8",
    "\u01B0\u0301"=>"\u1EE9",
    "\u01AF\u0300"=>"\u1EEA",
    "\u01B0\u0300"=>"\u1EEB",
    "\u01AF\u0309"=>"\u1EEC",
    "\u01B0\u0309"=>"\u1EED",
    "\u01AF\u0303"=>"\u1EEE",
    "\u01B0\u0303"=>"\u1EEF",
    "\u01AF\u0323"=>"\u1EF0",
    "\u01B0\u0323"=>"\u1EF1",
    "Y\u0300"=>"\u1EF2",
    "y\u0300"=>"\u1EF3",
    "Y\u0323"=>"\u1EF4",
    "y\u0323"=>"\u1EF5",
    "Y\u0309"=>"\u1EF6",
    "y\u0309"=>"\u1EF7",
    "Y\u0303"=>"\u1EF8",
    "y\u0303"=>"\u1EF9",
    "\u03B1\u0313"=>"\u1F00",
    "\u03B1\u0314"=>"\u1F01",
    "\u1F00\u0300"=>"\u1F02",
    "\u1F01\u0300"=>"\u1F03",
    "\u1F00\u0301"=>"\u1F04",
    "\u1F01\u0301"=>"\u1F05",
    "\u1F00\u0342"=>"\u1F06",
    "\u1F01\u0342"=>"\u1F07",
    "\u0391\u0313"=>"\u1F08",
    "\u0391\u0314"=>"\u1F09",
    "\u1F08\u0300"=>"\u1F0A",
    "\u1F09\u0300"=>"\u1F0B",
    "\u1F08\u0301"=>"\u1F0C",
    "\u1F09\u0301"=>"\u1F0D",
    "\u1F08\u0342"=>"\u1F0E",
    "\u1F09\u0342"=>"\u1F0F",
    "\u03B5\u0313"=>"\u1F10",
    "\u03B5\u0314"=>"\u1F11",
    "\u1F10\u0300"=>"\u1F12",
    "\u1F11\u0300"=>"\u1F13",
    "\u1F10\u0301"=>"\u1F14",
    "\u1F11\u0301"=>"\u1F15",
    "\u0395\u0313"=>"\u1F18",
    "\u0395\u0314"=>"\u1F19",
    "\u1F18\u0300"=>"\u1F1A",
    "\u1F19\u0300"=>"\u1F1B",
    "\u1F18\u0301"=>"\u1F1C",
    "\u1F19\u0301"=>"\u1F1D",
    "\u03B7\u0313"=>"\u1F20",
    "\u03B7\u0314"=>"\u1F21",
    "\u1F20\u0300"=>"\u1F22",
    "\u1F21\u0300"=>"\u1F23",
    "\u1F20\u0301"=>"\u1F24",
    "\u1F21\u0301"=>"\u1F25",
    "\u1F20\u0342"=>"\u1F26",
    "\u1F21\u0342"=>"\u1F27",
    "\u0397\u0313"=>"\u1F28",
    "\u0397\u0314"=>"\u1F29",
    "\u1F28\u0300"=>"\u1F2A",
    "\u1F29\u0300"=>"\u1F2B",
    "\u1F28\u0301"=>"\u1F2C",
    "\u1F29\u0301"=>"\u1F2D",
    "\u1F28\u0342"=>"\u1F2E",
    "\u1F29\u0342"=>"\u1F2F",
    "\u03B9\u0313"=>"\u1F30",
    "\u03B9\u0314"=>"\u1F31",
    "\u1F30\u0300"=>"\u1F32",
    "\u1F31\u0300"=>"\u1F33",
    "\u1F30\u0301"=>"\u1F34",
    "\u1F31\u0301"=>"\u1F35",
    "\u1F30\u0342"=>"\u1F36",
    "\u1F31\u0342"=>"\u1F37",
    "\u0399\u0313"=>"\u1F38",
    "\u0399\u0314"=>"\u1F39",
    "\u1F38\u0300"=>"\u1F3A",
    "\u1F39\u0300"=>"\u1F3B",
    "\u1F38\u0301"=>"\u1F3C",
    "\u1F39\u0301"=>"\u1F3D",
    "\u1F38\u0342"=>"\u1F3E",
    "\u1F39\u0342"=>"\u1F3F",
    "\u03BF\u0313"=>"\u1F40",
    "\u03BF\u0314"=>"\u1F41",
    "\u1F40\u0300"=>"\u1F42",
    "\u1F41\u0300"=>"\u1F43",
    "\u1F40\u0301"=>"\u1F44",
    "\u1F41\u0301"=>"\u1F45",
    "\u039F\u0313"=>"\u1F48",
    "\u039F\u0314"=>"\u1F49",
    "\u1F48\u0300"=>"\u1F4A",
    "\u1F49\u0300"=>"\u1F4B",
    "\u1F48\u0301"=>"\u1F4C",
    "\u1F49\u0301"=>"\u1F4D",
    "\u03C5\u0313"=>"\u1F50",
    "\u03C5\u0314"=>"\u1F51",
    "\u1F50\u0300"=>"\u1F52",
    "\u1F51\u0300"=>"\u1F53",
    "\u1F50\u0301"=>"\u1F54",
    "\u1F51\u0301"=>"\u1F55",
    "\u1F50\u0342"=>"\u1F56",
    "\u1F51\u0342"=>"\u1F57",
    "\u03A5\u0314"=>"\u1F59",
    "\u1F59\u0300"=>"\u1F5B",
    "\u1F59\u0301"=>"\u1F5D",
    "\u1F59\u0342"=>"\u1F5F",
    "\u03C9\u0313"=>"\u1F60",
    "\u03C9\u0314"=>"\u1F61",
    "\u1F60\u0300"=>"\u1F62",
    "\u1F61\u0300"=>"\u1F63",
    "\u1F60\u0301"=>"\u1F64",
    "\u1F61\u0301"=>"\u1F65",
    "\u1F60\u0342"=>"\u1F66",
    "\u1F61\u0342"=>"\u1F67",
    "\u03A9\u0313"=>"\u1F68",
    "\u03A9\u0314"=>"\u1F69",
    "\u1F68\u0300"=>"\u1F6A",
    "\u1F69\u0300"=>"\u1F6B",
    "\u1F68\u0301"=>"\u1F6C",
    "\u1F69\u0301"=>"\u1F6D",
    "\u1F68\u0342"=>"\u1F6E",
    "\u1F69\u0342"=>"\u1F6F",
    "\u03B1\u0300"=>"\u1F70",
    "\u03B5\u0300"=>"\u1F72",
    "\u03B7\u0300"=>"\u1F74",
    "\u03B9\u0300"=>"\u1F76",
    "\u03BF\u0300"=>"\u1F78",
    "\u03C5\u0300"=>"\u1F7A",
    "\u03C9\u0300"=>"\u1F7C",
    "\u1F00\u0345"=>"\u1F80",
    "\u1F01\u0345"=>"\u1F81",
    "\u1F02\u0345"=>"\u1F82",
    "\u1F03\u0345"=>"\u1F83",
    "\u1F04\u0345"=>"\u1F84",
    "\u1F05\u0345"=>"\u1F85",
    "\u1F06\u0345"=>"\u1F86",
    "\u1F07\u0345"=>"\u1F87",
    "\u1F08\u0345"=>"\u1F88",
    "\u1F09\u0345"=>"\u1F89",
    "\u1F0A\u0345"=>"\u1F8A",
    "\u1F0B\u0345"=>"\u1F8B",
    "\u1F0C\u0345"=>"\u1F8C",
    "\u1F0D\u0345"=>"\u1F8D",
    "\u1F0E\u0345"=>"\u1F8E",
    "\u1F0F\u0345"=>"\u1F8F",
    "\u1F20\u0345"=>"\u1F90",
    "\u1F21\u0345"=>"\u1F91",
    "\u1F22\u0345"=>"\u1F92",
    "\u1F23\u0345"=>"\u1F93",
    "\u1F24\u0345"=>"\u1F94",
    "\u1F25\u0345"=>"\u1F95",
    "\u1F26\u0345"=>"\u1F96",
    "\u1F27\u0345"=>"\u1F97",
    "\u1F28\u0345"=>"\u1F98",
    "\u1F29\u0345"=>"\u1F99",
    "\u1F2A\u0345"=>"\u1F9A",
    "\u1F2B\u0345"=>"\u1F9B",
    "\u1F2C\u0345"=>"\u1F9C",
    "\u1F2D\u0345"=>"\u1F9D",
    "\u1F2E\u0345"=>"\u1F9E",
    "\u1F2F\u0345"=>"\u1F9F",
    "\u1F60\u0345"=>"\u1FA0",
    "\u1F61\u0345"=>"\u1FA1",
    "\u1F62\u0345"=>"\u1FA2",
    "\u1F63\u0345"=>"\u1FA3",
    "\u1F64\u0345"=>"\u1FA4",
    "\u1F65\u0345"=>"\u1FA5",
    "\u1F66\u0345"=>"\u1FA6",
    "\u1F67\u0345"=>"\u1FA7",
    "\u1F68\u0345"=>"\u1FA8",
    "\u1F69\u0345"=>"\u1FA9",
    "\u1F6A\u0345"=>"\u1FAA",
    "\u1F6B\u0345"=>"\u1FAB",
    "\u1F6C\u0345"=>"\u1FAC",
    "\u1F6D\u0345"=>"\u1FAD",
    "\u1F6E\u0345"=>"\u1FAE",
    "\u1F6F\u0345"=>"\u1FAF",
    "\u03B1\u0306"=>"\u1FB0",
    "\u03B1\u0304"=>"\u1FB1",
    "\u1F70\u0345"=>"\u1FB2",
    "\u03B1\u0345"=>"\u1FB3",
    "\u03AC\u0345"=>"\u1FB4",
    "\u03B1\u0342"=>"\u1FB6",
    "\u1FB6\u0345"=>"\u1FB7",
    "\u0391\u0306"=>"\u1FB8",
    "\u0391\u0304"=>"\u1FB9",
    "\u0391\u0300"=>"\u1FBA",
    "\u0391\u0345"=>"\u1FBC",
    "\u00A8\u0342"=>"\u1FC1",
    "\u1F74\u0345"=>"\u1FC2",
    "\u03B7\u0345"=>"\u1FC3",
    "\u03AE\u0345"=>"\u1FC4",
    "\u03B7\u0342"=>"\u1FC6",
    "\u1FC6\u0345"=>"\u1FC7",
    "\u0395\u0300"=>"\u1FC8",
    "\u0397\u0300"=>"\u1FCA",
    "\u0397\u0345"=>"\u1FCC",
    "\u1FBF\u0300"=>"\u1FCD",
    "\u1FBF\u0301"=>"\u1FCE",
    "\u1FBF\u0342"=>"\u1FCF",
    "\u03B9\u0306"=>"\u1FD0",
    "\u03B9\u0304"=>"\u1FD1",
    "\u03CA\u0300"=>"\u1FD2",
    "\u03B9\u0342"=>"\u1FD6",
    "\u03CA\u0342"=>"\u1FD7",
    "\u0399\u0306"=>"\u1FD8",
    "\u0399\u0304"=>"\u1FD9",
    "\u0399\u0300"=>"\u1FDA",
    "\u1FFE\u0300"=>"\u1FDD",
    "\u1FFE\u0301"=>"\u1FDE",
    "\u1FFE\u0342"=>"\u1FDF",
    "\u03C5\u0306"=>"\u1FE0",
    "\u03C5\u0304"=>"\u1FE1",
    "\u03CB\u0300"=>"\u1FE2",
    "\u03C1\u0313"=>"\u1FE4",
    "\u03C1\u0314"=>"\u1FE5",
    "\u03C5\u0342"=>"\u1FE6",
    "\u03CB\u0342"=>"\u1FE7",
    "\u03A5\u0306"=>"\u1FE8",
    "\u03A5\u0304"=>"\u1FE9",
    "\u03A5\u0300"=>"\u1FEA",
    "\u03A1\u0314"=>"\u1FEC",
    "\u00A8\u0300"=>"\u1FED",
    "\u1F7C\u0345"=>"\u1FF2",
    "\u03C9\u0345"=>"\u1FF3",
    "\u03CE\u0345"=>"\u1FF4",
    "\u03C9\u0342"=>"\u1FF6",
    "\u1FF6\u0345"=>"\u1FF7",
    "\u039F\u0300"=>"\u1FF8",
    "\u03A9\u0300"=>"\u1FFA",
    "\u03A9\u0345"=>"\u1FFC",
    "\u2190\u0338"=>"\u219A",
    "\u2192\u0338"=>"\u219B",
    "\u2194\u0338"=>"\u21AE",
    "\u21D0\u0338"=>"\u21CD",
    "\u21D4\u0338"=>"\u21CE",
    "\u21D2\u0338"=>"\u21CF",
    "\u2203\u0338"=>"\u2204",
    "\u2208\u0338"=>"\u2209",
    "\u220B\u0338"=>"\u220C",
    "\u2223\u0338"=>"\u2224",
    "\u2225\u0338"=>"\u2226",
    "\u223C\u0338"=>"\u2241",
    "\u2243\u0338"=>"\u2244",
    "\u2245\u0338"=>"\u2247",
    "\u2248\u0338"=>"\u2249",
    "=\u0338"=>"\u2260",
    "\u2261\u0338"=>"\u2262",
    "\u224D\u0338"=>"\u226D",
    "<\u0338"=>"\u226E",
    ">\u0338"=>"\u226F",
    "\u2264\u0338"=>"\u2270",
    "\u2265\u0338"=>"\u2271",
    "\u2272\u0338"=>"\u2274",
    "\u2273\u0338"=>"\u2275",
    "\u2276\u0338"=>"\u2278",
    "\u2277\u0338"=>"\u2279",
    "\u227A\u0338"=>"\u2280",
    "\u227B\u0338"=>"\u2281",
    "\u2282\u0338"=>"\u2284",
    "\u2283\u0338"=>"\u2285",
    "\u2286\u0338"=>"\u2288",
    "\u2287\u0338"=>"\u2289",
    "\u22A2\u0338"=>"\u22AC",
    "\u22A8\u0338"=>"\u22AD",
    "\u22A9\u0338"=>"\u22AE",
    "\u22AB\u0338"=>"\u22AF",
    "\u227C\u0338"=>"\u22E0",
    "\u227D\u0338"=>"\u22E1",
    "\u2291\u0338"=>"\u22E2",
    "\u2292\u0338"=>"\u22E3",
    "\u22B2\u0338"=>"\u22EA",
    "\u22B3\u0338"=>"\u22EB",
    "\u22B4\u0338"=>"\u22EC",
    "\u22B5\u0338"=>"\u22ED",
    "\u304B\u3099"=>"\u304C",
    "\u304D\u3099"=>"\u304E",
    "\u304F\u3099"=>"\u3050",
    "\u3051\u3099"=>"\u3052",
    "\u3053\u3099"=>"\u3054",
    "\u3055\u3099"=>"\u3056",
    "\u3057\u3099"=>"\u3058",
    "\u3059\u3099"=>"\u305A",
    "\u305B\u3099"=>"\u305C",
    "\u305D\u3099"=>"\u305E",
    "\u305F\u3099"=>"\u3060",
    "\u3061\u3099"=>"\u3062",
    "\u3064\u3099"=>"\u3065",
    "\u3066\u3099"=>"\u3067",
    "\u3068\u3099"=>"\u3069",
    "\u306F\u3099"=>"\u3070",
    "\u306F\u309A"=>"\u3071",
    "\u3072\u3099"=>"\u3073",
    "\u3072\u309A"=>"\u3074",
    "\u3075\u3099"=>"\u3076",
    "\u3075\u309A"=>"\u3077",
    "\u3078\u3099"=>"\u3079",
    "\u3078\u309A"=>"\u307A",
    "\u307B\u3099"=>"\u307C",
    "\u307B\u309A"=>"\u307D",
    "\u3046\u3099"=>"\u3094",
    "\u309D\u3099"=>"\u309E",
    "\u30AB\u3099"=>"\u30AC",
    "\u30AD\u3099"=>"\u30AE",
    "\u30AF\u3099"=>"\u30B0",
    "\u30B1\u3099"=>"\u30B2",
    "\u30B3\u3099"=>"\u30B4",
    "\u30B5\u3099"=>"\u30B6",
    "\u30B7\u3099"=>"\u30B8",
    "\u30B9\u3099"=>"\u30BA",
    "\u30BB\u3099"=>"\u30BC",
    "\u30BD\u3099"=>"\u30BE",
    "\u30BF\u3099"=>"\u30C0",
    "\u30C1\u3099"=>"\u30C2",
    "\u30C4\u3099"=>"\u30C5",
    "\u30C6\u3099"=>"\u30C7",
    "\u30C8\u3099"=>"\u30C9",
    "\u30CF\u3099"=>"\u30D0",
    "\u30CF\u309A"=>"\u30D1",
    "\u30D2\u3099"=>"\u30D3",
    "\u30D2\u309A"=>"\u30D4",
    "\u30D5\u3099"=>"\u30D6",
    "\u30D5\u309A"=>"\u30D7",
    "\u30D8\u3099"=>"\u30D9",
    "\u30D8\u309A"=>"\u30DA",
    "\u30DB\u3099"=>"\u30DC",
    "\u30DB\u309A"=>"\u30DD",
    "\u30A6\u3099"=>"\u30F4",
    "\u30EF\u3099"=>"\u30F7",
    "\u30F0\u3099"=>"\u30F8",
    "\u30F1\u3099"=>"\u30F9",
    "\u30F2\u3099"=>"\u30FA",
    "\u30FD\u3099"=>"\u30FE",
    "\u{11099}\u{110BA}"=>"\u{1109A}",
    "\u{1109B}\u{110BA}"=>"\u{1109C}",
    "\u{110A5}\u{110BA}"=>"\u{110AB}",
    "\u{11131}\u{11127}"=>"\u{1112E}",
    "\u{11132}\u{11127}"=>"\u{1112F}",
    "\u{11347}\u{1133E}"=>"\u{1134B}",
    "\u{11347}\u{11357}"=>"\u{1134C}",
    "\u{114B9}\u{114BA}"=>"\u{114BB}",
    "\u{114B9}\u{114B0}"=>"\u{114BC}",
    "\u{114B9}\u{114BD}"=>"\u{114BE}",
    "\u{115B8}\u{115AF}"=>"\u{115BA}",
    "\u{115B9}\u{115AF}"=>"\u{115BB}",
  }.freeze
end
PKIH[�.
��)share/ruby/unicode_normalize/normalize.rbnu�[���# coding: utf-8
# frozen_string_literal: false

# Copyright Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp)

# This file, the companion file tables.rb (autogenerated), and the module,
# constants, and method defined herein are part of the implementation of the
# built-in String class, not part of the standard library. They should
# therefore never be gemified. They implement the methods
# String#unicode_normalize, String#unicode_normalize!, and String#unicode_normalized?.
#
# They are placed here because they are written in Ruby. They are loaded on
# demand when any of the three methods mentioned above is executed for the
# first time. This reduces the memory footprint and startup time for scripts
# and applications that do not use those methods.
#
# The name and even the existence of the module UnicodeNormalize and all of its
# content are purely an implementation detail, and should not be exposed in
# any test or spec or otherwise.

require_relative 'tables'


module UnicodeNormalize  # :nodoc:
  ## Constant for max hash capacity to avoid DoS attack
  MAX_HASH_LENGTH = 18000 # enough for all test cases, otherwise tests get slow

  ## Regular Expressions and Hash Constants
  REGEXP_D = Regexp.compile(REGEXP_D_STRING, Regexp::EXTENDED)
  REGEXP_C = Regexp.compile(REGEXP_C_STRING, Regexp::EXTENDED)
  REGEXP_K = Regexp.compile(REGEXP_K_STRING, Regexp::EXTENDED)
  NF_HASH_D = Hash.new do |hash, key|
                         hash.shift if hash.length>MAX_HASH_LENGTH # prevent DoS attack
                         hash[key] = nfd_one(key)
                       end
  NF_HASH_C = Hash.new do |hash, key|
                         hash.shift if hash.length>MAX_HASH_LENGTH # prevent DoS attack
                         hash[key] = nfc_one(key)
                       end

  ## Constants For Hangul
  # for details such as the meaning of the identifiers below, please see
  # http://www.unicode.org/versions/Unicode7.0.0/ch03.pdf, pp. 144/145
  SBASE = 0xAC00
  LBASE = 0x1100
  VBASE = 0x1161
  TBASE = 0x11A7
  LCOUNT = 19
  VCOUNT = 21
  TCOUNT = 28
  NCOUNT = VCOUNT * TCOUNT
  SCOUNT = LCOUNT * NCOUNT

  # Unicode-based encodings (except UTF-8)
  UNICODE_ENCODINGS = [Encoding::UTF_16BE, Encoding::UTF_16LE, Encoding::UTF_32BE, Encoding::UTF_32LE,
                       Encoding::GB18030, Encoding::UCS_2BE, Encoding::UCS_4BE]

  ## Hangul Algorithm
  def self.hangul_decomp_one(target)
    syllable_index = target.ord - SBASE
    return target if syllable_index < 0 || syllable_index >= SCOUNT
    l = LBASE + syllable_index / NCOUNT
    v = VBASE + (syllable_index % NCOUNT) / TCOUNT
    t = TBASE + syllable_index % TCOUNT
    (t==TBASE ? [l, v] : [l, v, t]).pack('U*') + target[1..-1]
  end

  def self.hangul_comp_one(string)
    length = string.length
    if length>1 and 0 <= (lead =string[0].ord-LBASE) and lead  < LCOUNT and
                    0 <= (vowel=string[1].ord-VBASE) and vowel < VCOUNT
      lead_vowel = SBASE + (lead * VCOUNT + vowel) * TCOUNT
      if length>2 and 0 < (trail=string[2].ord-TBASE) and trail < TCOUNT
        (lead_vowel + trail).chr(Encoding::UTF_8) + string[3..-1]
      else
        lead_vowel.chr(Encoding::UTF_8) + string[2..-1]
      end
    else
      string
    end
  end

  ## Canonical Ordering
  def self.canonical_ordering_one(string)
    sorting = string.each_char.collect { |c| [c, CLASS_TABLE[c]] }
    (sorting.length-2).downto(0) do |i| # almost, but not exactly bubble sort
      (0..i).each do |j|
        later_class = sorting[j+1].last
        if 0<later_class and later_class<sorting[j].last
          sorting[j], sorting[j+1] = sorting[j+1], sorting[j]
        end
      end
    end
    return sorting.collect(&:first).join('')
  end

  ## Normalization Forms for Patterns (not whole Strings)
  def self.nfd_one(string)
    string = string.chars.map! {|c| DECOMPOSITION_TABLE[c] || c}.join('')
    canonical_ordering_one(hangul_decomp_one(string))
  end

  def self.nfc_one(string)
    nfd_string = nfd_one string
    start = nfd_string[0]
    last_class = CLASS_TABLE[start]-1
    accents = ''
    nfd_string[1..-1].each_char do |accent|
      accent_class = CLASS_TABLE[accent]
      if last_class<accent_class and composite = COMPOSITION_TABLE[start+accent]
        start = composite
      else
        accents << accent
        last_class = accent_class
      end
    end
    hangul_comp_one(start+accents)
  end

  def self.normalize(string, form = :nfc)
    encoding = string.encoding
    case encoding
    when Encoding::UTF_8
      case form
      when :nfc then
        string.gsub REGEXP_C, NF_HASH_C
      when :nfd then
        string.gsub REGEXP_D, NF_HASH_D
      when :nfkc then
        string.gsub(REGEXP_K, KOMPATIBLE_TABLE).gsub(REGEXP_C, NF_HASH_C)
      when :nfkd then
        string.gsub(REGEXP_K, KOMPATIBLE_TABLE).gsub(REGEXP_D, NF_HASH_D)
      else
        raise ArgumentError, "Invalid normalization form #{form}."
      end
    when Encoding::US_ASCII
      string
    when *UNICODE_ENCODINGS
      normalize(string.encode(Encoding::UTF_8), form).encode(encoding)
    else
      raise Encoding::CompatibilityError, "Unicode Normalization not appropriate for #{encoding}"
    end
  end

  def self.normalized?(string, form = :nfc)
    encoding = string.encoding
    case encoding
    when Encoding::UTF_8
      case form
      when :nfc then
        string.scan REGEXP_C do |match|
          return false  if NF_HASH_C[match] != match
        end
        true
      when :nfd then
        string.scan REGEXP_D do |match|
          return false  if NF_HASH_D[match] != match
        end
        true
      when :nfkc then
        normalized?(string, :nfc) and string !~ REGEXP_K
      when :nfkd then
        normalized?(string, :nfd) and string !~ REGEXP_K
      else
        raise ArgumentError, "Invalid normalization form #{form}."
      end
    when Encoding::US_ASCII
      true
    when *UNICODE_ENCODINGS
      normalized? string.encode(Encoding::UTF_8), form
    else
      raise Encoding::CompatibilityError, "Unicode Normalization not appropriate for #{encoding}"
    end
  end
end # module
PKIH[}KYtSSshare/ruby/observer.rbnu�[���# frozen_string_literal: true
#
# Implementation of the _Observer_ object-oriented design pattern.  The
# following documentation is copied, with modifications, from "Programming
# Ruby", by Hunt and Thomas; http://www.ruby-doc.org/docs/ProgrammingRuby/html/lib_patterns.html.
#
# See Observable for more info.

# The Observer pattern (also known as publish/subscribe) provides a simple
# mechanism for one object to inform a set of interested third-party objects
# when its state changes.
#
# == Mechanism
#
# The notifying class mixes in the +Observable+
# module, which provides the methods for managing the associated observer
# objects.
#
# The observable object must:
# * assert that it has +#changed+
# * call +#notify_observers+
#
# An observer subscribes to updates using Observable#add_observer, which also
# specifies the method called via #notify_observers. The default method for
# #notify_observers is #update.
#
# === Example
#
# The following example demonstrates this nicely.  A +Ticker+, when run,
# continually receives the stock +Price+ for its <tt>@symbol</tt>.  A +Warner+
# is a general observer of the price, and two warners are demonstrated, a
# +WarnLow+ and a +WarnHigh+, which print a warning if the price is below or
# above their set limits, respectively.
#
# The +update+ callback allows the warners to run without being explicitly
# called.  The system is set up with the +Ticker+ and several observers, and the
# observers do their duty without the top-level code having to interfere.
#
# Note that the contract between publisher and subscriber (observable and
# observer) is not declared or enforced.  The +Ticker+ publishes a time and a
# price, and the warners receive that.  But if you don't ensure that your
# contracts are correct, nothing else can warn you.
#
#   require "observer"
#
#   class Ticker          ### Periodically fetch a stock price.
#     include Observable
#
#     def initialize(symbol)
#       @symbol = symbol
#     end
#
#     def run
#       last_price = nil
#       loop do
#         price = Price.fetch(@symbol)
#         print "Current price: #{price}\n"
#         if price != last_price
#           changed                 # notify observers
#           last_price = price
#           notify_observers(Time.now, price)
#         end
#         sleep 1
#       end
#     end
#   end
#
#   class Price           ### A mock class to fetch a stock price (60 - 140).
#     def self.fetch(symbol)
#       60 + rand(80)
#     end
#   end
#
#   class Warner          ### An abstract observer of Ticker objects.
#     def initialize(ticker, limit)
#       @limit = limit
#       ticker.add_observer(self)
#     end
#   end
#
#   class WarnLow < Warner
#     def update(time, price)       # callback for observer
#       if price < @limit
#         print "--- #{time.to_s}: Price below #@limit: #{price}\n"
#       end
#     end
#   end
#
#   class WarnHigh < Warner
#     def update(time, price)       # callback for observer
#       if price > @limit
#         print "+++ #{time.to_s}: Price above #@limit: #{price}\n"
#       end
#     end
#   end
#
#   ticker = Ticker.new("MSFT")
#   WarnLow.new(ticker, 80)
#   WarnHigh.new(ticker, 120)
#   ticker.run
#
# Produces:
#
#   Current price: 83
#   Current price: 75
#   --- Sun Jun 09 00:10:25 CDT 2002: Price below 80: 75
#   Current price: 90
#   Current price: 134
#   +++ Sun Jun 09 00:10:25 CDT 2002: Price above 120: 134
#   Current price: 134
#   Current price: 112
#   Current price: 79
#   --- Sun Jun 09 00:10:25 CDT 2002: Price below 80: 79
module Observable

  #
  # Add +observer+ as an observer on this object. So that it will receive
  # notifications.
  #
  # +observer+:: the object that will be notified of changes.
  # +func+:: Symbol naming the method that will be called when this Observable
  #          has changes.
  #
  #          This method must return true for +observer.respond_to?+ and will
  #          receive <tt>*arg</tt> when #notify_observers is called, where
  #          <tt>*arg</tt> is the value passed to #notify_observers by this
  #          Observable
  def add_observer(observer, func=:update)
    @observer_peers = {} unless defined? @observer_peers
    unless observer.respond_to? func
      raise NoMethodError, "observer does not respond to `#{func}'"
    end
    @observer_peers[observer] = func
  end

  #
  # Remove +observer+ as an observer on this object so that it will no longer
  # receive notifications.
  #
  # +observer+:: An observer of this Observable
  def delete_observer(observer)
    @observer_peers.delete observer if defined? @observer_peers
  end

  #
  # Remove all observers associated with this object.
  #
  def delete_observers
    @observer_peers.clear if defined? @observer_peers
  end

  #
  # Return the number of observers associated with this object.
  #
  def count_observers
    if defined? @observer_peers
      @observer_peers.size
    else
      0
    end
  end

  #
  # Set the changed state of this object.  Notifications will be sent only if
  # the changed +state+ is +true+.
  #
  # +state+:: Boolean indicating the changed state of this Observable.
  #
  def changed(state=true)
    @observer_state = state
  end

  #
  # Returns true if this object's state has been changed since the last
  # #notify_observers call.
  #
  def changed?
    if defined? @observer_state and @observer_state
      true
    else
      false
    end
  end

  #
  # Notify observers of a change in state *if* this object's changed state is
  # +true+.
  #
  # This will invoke the method named in #add_observer, passing <tt>*arg</tt>.
  # The changed state is then set to +false+.
  #
  # <tt>*arg</tt>:: Any arguments to pass to the observers.
  def notify_observers(*arg)
    if defined? @observer_state and @observer_state
      if defined? @observer_peers
        @observer_peers.each do |k, v|
          k.send v, *arg
        end
      end
      @observer_state = false
    end
  end

end
PKIH[/share/gems/gems/bigdecimal-2.0.0/lib/bigdecimalnuȯ��PKIH[�^(���share/ruby/fiddle.rbnu�[���# frozen_string_literal: true
require 'fiddle.so'
require 'fiddle/function'
require 'fiddle/closure'

module Fiddle
  if WINDOWS
    # Returns the last win32 +Error+ of the current executing +Thread+ or nil
    # if none
    def self.win32_last_error
      Thread.current[:__FIDDLE_WIN32_LAST_ERROR__]
    end

    # Sets the last win32 +Error+ of the current executing +Thread+ to +error+
    def self.win32_last_error= error
      Thread.current[:__FIDDLE_WIN32_LAST_ERROR__] = error
    end
  end

  # Returns the last +Error+ of the current executing +Thread+ or nil if none
  def self.last_error
    Thread.current[:__FIDDLE_LAST_ERROR__]
  end

  # Sets the last +Error+ of the current executing +Thread+ to +error+
  def self.last_error= error
    Thread.current[:__DL2_LAST_ERROR__] = error
    Thread.current[:__FIDDLE_LAST_ERROR__] = error
  end

  # call-seq: dlopen(library) => Fiddle::Handle
  #
  # Creates a new handler that opens +library+, and returns an instance of
  # Fiddle::Handle.
  #
  # If +nil+ is given for the +library+, Fiddle::Handle::DEFAULT is used, which
  # is the equivalent to RTLD_DEFAULT. See <code>man 3 dlopen</code> for more.
  #
  #   lib = Fiddle.dlopen(nil)
  #
  # The default is dependent on OS, and provide a handle for all libraries
  # already loaded. For example, in most cases you can use this to access
  # +libc+ functions, or ruby functions like +rb_str_new+.
  #
  # See Fiddle::Handle.new for more.
  def dlopen library
    Fiddle::Handle.new library
  end
  module_function :dlopen

  # Add constants for backwards compat

  RTLD_GLOBAL = Handle::RTLD_GLOBAL # :nodoc:
  RTLD_LAZY   = Handle::RTLD_LAZY   # :nodoc:
  RTLD_NOW    = Handle::RTLD_NOW    # :nodoc:
end
PKIH[9�ܒ!*!*share/ruby/ostruct.rbnu�[���# frozen_string_literal: true
#
# = ostruct.rb: OpenStruct implementation
#
# Author:: Yukihiro Matsumoto
# Documentation:: Gavin Sinclair
#
# OpenStruct allows the creation of data objects with arbitrary attributes.
# See OpenStruct for an example.
#

#
# An OpenStruct is a data structure, similar to a Hash, that allows the
# definition of arbitrary attributes with their accompanying values. This is
# accomplished by using Ruby's metaprogramming to define methods on the class
# itself.
#
# == Examples
#
#   require "ostruct"
#
#   person = OpenStruct.new
#   person.name = "John Smith"
#   person.age  = 70
#
#   person.name      # => "John Smith"
#   person.age       # => 70
#   person.address   # => nil
#
# An OpenStruct employs a Hash internally to store the attributes and values
# and can even be initialized with one:
#
#   australia = OpenStruct.new(:country => "Australia", :capital => "Canberra")
#     # => #<OpenStruct country="Australia", capital="Canberra">
#
# Hash keys with spaces or characters that could normally not be used for
# method calls (e.g. <code>()[]*</code>) will not be immediately available
# on the OpenStruct object as a method for retrieval or assignment, but can
# still be reached through the Object#send method.
#
#   measurements = OpenStruct.new("length (in inches)" => 24)
#   measurements.send("length (in inches)")   # => 24
#
#   message = OpenStruct.new(:queued? => true)
#   message.queued?                           # => true
#   message.send("queued?=", false)
#   message.queued?                           # => false
#
# Removing the presence of an attribute requires the execution of the
# delete_field method as setting the property value to +nil+ will not
# remove the attribute.
#
#   first_pet  = OpenStruct.new(:name => "Rowdy", :owner => "John Smith")
#   second_pet = OpenStruct.new(:name => "Rowdy")
#
#   first_pet.owner = nil
#   first_pet                 # => #<OpenStruct name="Rowdy", owner=nil>
#   first_pet == second_pet   # => false
#
#   first_pet.delete_field(:owner)
#   first_pet                 # => #<OpenStruct name="Rowdy">
#   first_pet == second_pet   # => true
#
#
# == Implementation
#
# An OpenStruct utilizes Ruby's method lookup structure to find and define the
# necessary methods for properties. This is accomplished through the methods
# method_missing and define_singleton_method.
#
# This should be a consideration if there is a concern about the performance of
# the objects that are created, as there is much more overhead in the setting
# of these properties compared to using a Hash or a Struct.
#

require_relative 'ostruct/version'

class OpenStruct

  #
  # Creates a new OpenStruct object.  By default, the resulting OpenStruct
  # object will have no attributes.
  #
  # The optional +hash+, if given, will generate attributes and values
  # (can be a Hash, an OpenStruct or a Struct).
  # For example:
  #
  #   require "ostruct"
  #   hash = { "country" => "Australia", :capital => "Canberra" }
  #   data = OpenStruct.new(hash)
  #
  #   data   # => #<OpenStruct country="Australia", capital="Canberra">
  #
  def initialize(hash=nil)
    @table = {}
    if hash
      hash.each_pair do |k, v|
        k = k.to_sym
        @table[k] = v
      end
    end
  end

  # Duplicates an OpenStruct object's Hash table.
  def initialize_copy(orig) # :nodoc:
    super
    @table = @table.dup
  end

  #
  # call-seq:
  #   ostruct.to_h                        -> hash
  #   ostruct.to_h {|name, value| block } -> hash
  #
  # Converts the OpenStruct to a hash with keys representing
  # each attribute (as symbols) and their corresponding values.
  #
  # If a block is given, the results of the block on each pair of
  # the receiver will be used as pairs.
  #
  #   require "ostruct"
  #   data = OpenStruct.new("country" => "Australia", :capital => "Canberra")
  #   data.to_h   # => {:country => "Australia", :capital => "Canberra" }
  #   data.to_h {|name, value| [name.to_s, value.upcase] }
  #               # => {"country" => "AUSTRALIA", "capital" => "CANBERRA" }
  #
  def to_h(&block)
    if block_given?
      @table.to_h(&block)
    else
      @table.dup
    end
  end

  #
  # :call-seq:
  #   ostruct.each_pair {|name, value| block }  -> ostruct
  #   ostruct.each_pair                         -> Enumerator
  #
  # Yields all attributes (as symbols) along with the corresponding values
  # or returns an enumerator if no block is given.
  #
  #   require "ostruct"
  #   data = OpenStruct.new("country" => "Australia", :capital => "Canberra")
  #   data.each_pair.to_a   # => [[:country, "Australia"], [:capital, "Canberra"]]
  #
  def each_pair
    return to_enum(__method__) { @table.size } unless block_given?
    @table.each_pair{|p| yield p}
    self
  end

  #
  # Provides marshalling support for use by the Marshal library.
  #
  def marshal_dump
    @table
  end

  #
  # Provides marshalling support for use by the Marshal library.
  #
  def marshal_load(x)
    @table = x
  end

  #
  # Used internally to check if the OpenStruct is able to be
  # modified before granting access to the internal Hash table to be modified.
  #
  def modifiable? # :nodoc:
    begin
      @modifiable = true
    rescue
      exception_class = defined?(FrozenError) ? FrozenError : RuntimeError
      raise exception_class, "can't modify frozen #{self.class}", caller(3)
    end
    @table
  end
  private :modifiable?

  #
  # Used internally to defined properties on the
  # OpenStruct. It does this by using the metaprogramming function
  # define_singleton_method for both the getter method and the setter method.
  #
  def new_ostruct_member!(name) # :nodoc:
    name = name.to_sym
    unless singleton_class.method_defined?(name)
      define_singleton_method(name) { @table[name] }
      define_singleton_method("#{name}=") {|x| modifiable?[name] = x}
    end
    name
  end
  private :new_ostruct_member!

  def freeze
    @table.each_key {|key| new_ostruct_member!(key)}
    super
  end

  def respond_to_missing?(mid, include_private = false) # :nodoc:
    mname = mid.to_s.chomp("=").to_sym
    defined?(@table) && @table.key?(mname) || super
  end

  def method_missing(mid, *args) # :nodoc:
    len = args.length
    if mname = mid[/.*(?==\z)/m]
      if len != 1
        raise ArgumentError, "wrong number of arguments (given #{len}, expected 1)", caller(1)
      end
      modifiable?[new_ostruct_member!(mname)] = args[0]
    elsif len == 0 # and /\A[a-z_]\w*\z/ =~ mid #
      if @table.key?(mid)
        new_ostruct_member!(mid) unless frozen?
        @table[mid]
      end
    elsif @table.key?(mid)
      raise ArgumentError, "wrong number of arguments (given #{len}, expected 0)"
    else
      begin
        super
      rescue NoMethodError => err
        err.backtrace.shift
        raise
      end
    end
  end

  #
  # :call-seq:
  #   ostruct[name]  -> object
  #
  # Returns the value of an attribute.
  #
  #   require "ostruct"
  #   person = OpenStruct.new("name" => "John Smith", "age" => 70)
  #   person[:age]   # => 70, same as person.age
  #
  def [](name)
    @table[name.to_sym]
  end

  #
  # :call-seq:
  #   ostruct[name] = obj  -> obj
  #
  # Sets the value of an attribute.
  #
  #   require "ostruct"
  #   person = OpenStruct.new("name" => "John Smith", "age" => 70)
  #   person[:age] = 42   # equivalent to person.age = 42
  #   person.age          # => 42
  #
  def []=(name, value)
    modifiable?[new_ostruct_member!(name)] = value
  end

  #
  # :call-seq:
  #   ostruct.dig(name, ...)  -> object
  #
  # Extracts the nested value specified by the sequence of +name+
  # objects by calling +dig+ at each step, returning +nil+ if any
  # intermediate step is +nil+.
  #
  #   require "ostruct"
  #   address = OpenStruct.new("city" => "Anytown NC", "zip" => 12345)
  #   person  = OpenStruct.new("name" => "John Smith", "address" => address)
  #
  #   person.dig(:address, "zip")            # => 12345
  #   person.dig(:business_address, "zip")   # => nil
  #
  #   data = OpenStruct.new(:array => [1, [2, 3]])
  #
  #   data.dig(:array, 1, 0)   # => 2
  #   data.dig(:array, 0, 0)   # TypeError: Integer does not have #dig method
  #
  def dig(name, *names)
    begin
      name = name.to_sym
    rescue NoMethodError
      raise TypeError, "#{name} is not a symbol nor a string"
    end
    @table.dig(name, *names)
  end

  #
  # Removes the named field from the object. Returns the value that the field
  # contained if it was defined.
  #
  #   require "ostruct"
  #
  #   person = OpenStruct.new(name: "John", age: 70, pension: 300)
  #
  #   person.delete_field("age")   # => 70
  #   person                       # => #<OpenStruct name="John", pension=300>
  #
  # Setting the value to +nil+ will not remove the attribute:
  #
  #   person.pension = nil
  #   person                 # => #<OpenStruct name="John", pension=nil>
  #
  def delete_field(name)
    sym = name.to_sym
    begin
      singleton_class.remove_method(sym, "#{sym}=")
    rescue NameError
    end
    @table.delete(sym) do
      raise NameError.new("no field `#{sym}' in #{self}", sym)
    end
  end

  InspectKey = :__inspect_key__ # :nodoc:

  #
  # Returns a string containing a detailed summary of the keys and values.
  #
  def inspect
    ids = (Thread.current[InspectKey] ||= [])
    if ids.include?(object_id)
      detail = ' ...'
    else
      ids << object_id
      begin
        detail = @table.map do |key, value|
          " #{key}=#{value.inspect}"
        end.join(',')
      ensure
        ids.pop
      end
    end
    ['#<', self.class, detail, '>'].join
  end
  alias :to_s :inspect

  attr_reader :table # :nodoc:
  protected :table
  alias table! table

  #
  # Compares this object and +other+ for equality.  An OpenStruct is equal to
  # +other+ when +other+ is an OpenStruct and the two objects' Hash tables are
  # equal.
  #
  #   require "ostruct"
  #   first_pet  = OpenStruct.new("name" => "Rowdy")
  #   second_pet = OpenStruct.new(:name  => "Rowdy")
  #   third_pet  = OpenStruct.new("name" => "Rowdy", :age => nil)
  #
  #   first_pet == second_pet   # => true
  #   first_pet == third_pet    # => false
  #
  def ==(other)
    return false unless other.kind_of?(OpenStruct)
    @table == other.table!
  end

  #
  # Compares this object and +other+ for equality.  An OpenStruct is eql? to
  # +other+ when +other+ is an OpenStruct and the two objects' Hash tables are
  # eql?.
  #
  def eql?(other)
    return false unless other.kind_of?(OpenStruct)
    @table.eql?(other.table!)
  end

  # Computes a hash code for this OpenStruct.
  # Two OpenStruct objects with the same content will have the same hash code
  # (and will compare using #eql?).
  #
  # See also Object#hash.
  def hash
    @table.hash
  end
end
PKIH[`�T�

share/ruby/resolv-replace.rbnu�[���# frozen_string_literal: true

require 'socket'
require 'resolv'

class << IPSocket
  # :stopdoc:
  alias original_resolv_getaddress getaddress
  # :startdoc:
  def getaddress(host)
    begin
      return Resolv.getaddress(host).to_s
    rescue Resolv::ResolvError
      raise SocketError, "Hostname not known: #{host}"
    end
  end
end

class TCPSocket < IPSocket
  # :stopdoc:
  alias original_resolv_initialize initialize
  # :startdoc:
  def initialize(host, serv, *rest)
    rest[0] = IPSocket.getaddress(rest[0]) if rest[0]
    original_resolv_initialize(IPSocket.getaddress(host), serv, *rest)
  end
end

class UDPSocket < IPSocket
  # :stopdoc:
  alias original_resolv_bind bind
  # :startdoc:
  def bind(host, port)
    host = IPSocket.getaddress(host) if host != ""
    original_resolv_bind(host, port)
  end

  # :stopdoc:
  alias original_resolv_connect connect
  # :startdoc:
  def connect(host, port)
    original_resolv_connect(IPSocket.getaddress(host), port)
  end

  # :stopdoc:
  alias original_resolv_send send
  # :startdoc:
  def send(mesg, flags, *rest)
    if rest.length == 2
      host, port = rest
      begin
        addrs = Resolv.getaddresses(host)
      rescue Resolv::ResolvError
        raise SocketError, "Hostname not known: #{host}"
      end
      addrs[0...-1].each {|addr|
        begin
          return original_resolv_send(mesg, flags, addr, port)
        rescue SystemCallError
        end
      }
      original_resolv_send(mesg, flags, addrs[-1], port)
    else
      original_resolv_send(mesg, flags, *rest)
    end
  end
end

class SOCKSSocket < TCPSocket
  # :stopdoc:
  alias original_resolv_initialize initialize
  # :startdoc:
  def initialize(host, serv)
    original_resolv_initialize(IPSocket.getaddress(host), port)
  end
end if defined? SOCKSSocket
PKIH[�I
�"")share/ruby/reline/key_actor/vi_command.rbnu�[���class Reline::KeyActor::ViCommand < Reline::KeyActor::Base
  MAPPING = [
    #   0 ^@
    :ed_unassigned,
    #   1 ^A
    :ed_move_to_beg,
    #   2 ^B
    :ed_unassigned,
    #   3 ^C
    :ed_ignore,
    #   4 ^D
    :vi_end_of_transmission,
    #   5 ^E
    :ed_move_to_end,
    #   6 ^F
    :ed_unassigned,
    #   7 ^G
    :ed_unassigned,
    #   8 ^H
    :ed_delete_prev_char,
    #   9 ^I
    :ed_unassigned,
    #  10 ^J
    :ed_newline,
    #  11 ^K
    :ed_kill_line,
    #  12 ^L
    :ed_clear_screen,
    #  13 ^M
    :ed_newline,
    #  14 ^N
    :ed_next_history,
    #  15 ^O
    :ed_ignore,
    #  16 ^P
    :ed_prev_history,
    #  17 ^Q
    :ed_ignore,
    #  18 ^R
    :vi_search_prev,
    #  19 ^S
    :ed_ignore,
    #  20 ^T
    :ed_unassigned,
    #  21 ^U
    :vi_kill_line_prev,
    #  22 ^V
    :ed_quoted_insert,
    #  23 ^W
    :ed_delete_prev_word,
    #  24 ^X
    :ed_unassigned,
    #  25 ^Y
    :ed_unassigned,
    #  26 ^Z
    :ed_unassigned,
    #  27 ^[
    :ed_unassigned,
    #  28 ^\
    :ed_ignore,
    #  29 ^]
    :ed_unassigned,
    #  30 ^^
    :ed_unassigned,
    #  31 ^_
    :ed_unassigned,
    #  32 SPACE
    :ed_next_char,
    #  33 !
    :ed_unassigned,
    #  34 "
    :ed_unassigned,
    #  35 #
    :vi_comment_out,
    #  36 $
    :ed_move_to_end,
    #  37 %
    :vi_match,
    #  38 &
    :ed_unassigned,
    #  39 '
    :ed_unassigned,
    #  40 (
    :ed_unassigned,
    #  41 )
    :ed_unassigned,
    #  42 *
    :ed_unassigned,
    #  43 +
    :ed_next_history,
    #  44 ,
    :vi_repeat_prev_char,
    #  45 -
    :ed_prev_history,
    #  46 .
    :vi_redo,
    #  47 /
    :vi_search_prev,
    #  48 0
    :vi_zero,
    #  49 1
    :ed_argument_digit,
    #  50 2
    :ed_argument_digit,
    #  51 3
    :ed_argument_digit,
    #  52 4
    :ed_argument_digit,
    #  53 5
    :ed_argument_digit,
    #  54 6
    :ed_argument_digit,
    #  55 7
    :ed_argument_digit,
    #  56 8
    :ed_argument_digit,
    #  57 9
    :ed_argument_digit,
    #  58 :
    :ed_command,
    #  59 ;
    :vi_repeat_next_char,
    #  60 <
    :ed_unassigned,
    #  61 =
    :ed_unassigned,
    #  62 >
    :ed_unassigned,
    #  63 ?
    :vi_search_next,
    #  64 @
    :vi_alias,
    #  65 A
    :vi_add_at_eol,
    #  66 B
    :vi_prev_big_word,
    #  67 C
    :vi_change_to_eol,
    #  68 D
    :ed_kill_line,
    #  69 E
    :vi_end_big_word,
    #  70 F
    :vi_prev_char,
    #  71 G
    :vi_to_history_line,
    #  72 H
    :ed_unassigned,
    #  73 I
    :vi_insert_at_bol,
    #  74 J
    :vi_join_lines,
    #  75 K
    :vi_search_prev,
    #  76 L
    :ed_unassigned,
    #  77 M
    :ed_unassigned,
    #  78 N
    :vi_repeat_search_prev,
    #  79 O
    :ed_sequence_lead_in,
    #  80 P
    :vi_paste_prev,
    #  81 Q
    :ed_unassigned,
    #  82 R
    :vi_replace_mode,
    #  83 S
    :vi_substitute_line,
    #  84 T
    :vi_to_prev_char,
    #  85 U
    :vi_undo_line,
    #  86 V
    :ed_unassigned,
    #  87 W
    :vi_next_big_word,
    #  88 X
    :ed_delete_prev_char,
    #  89 Y
    :vi_yank_end,
    #  90 Z
    :ed_unassigned,
    #  91 [
    :ed_sequence_lead_in,
    #  92 \
    :ed_unassigned,
    #  93 ]
    :ed_unassigned,
    #  94 ^
    :vi_first_print,
    #  95 _
    :vi_history_word,
    #  96 `
    :ed_unassigned,
    #  97 a
    :vi_add,
    #  98 b
    :vi_prev_word,
    #  99 c
    :vi_change_meta,
    # 100 d
    :vi_delete_meta,
    # 101 e
    :vi_end_word,
    # 102 f
    :vi_next_char,
    # 103 g
    :ed_unassigned,
    # 104 h
    :ed_prev_char,
    # 105 i
    :vi_insert,
    # 106 j
    :ed_next_history,
    # 107 k
    :ed_prev_history,
    # 108 l
    :ed_next_char,
    # 109 m
    :ed_unassigned,
    # 110 n
    :vi_repeat_search_next,
    # 111 o
    :ed_unassigned,
    # 112 p
    :vi_paste_next,
    # 113 q
    :ed_unassigned,
    # 114 r
    :vi_replace_char,
    # 115 s
    :vi_substitute_char,
    # 116 t
    :vi_to_next_char,
    # 117 u
    :vi_undo,
    # 118 v
    :vi_histedit,
    # 119 w
    :vi_next_word,
    # 120 x
    :ed_delete_next_char,
    # 121 y
    :vi_yank,
    # 122 z
    :ed_unassigned,
    # 123 {
    :ed_unassigned,
    # 124 |
    :vi_to_column,
    # 125 }
    :ed_unassigned,
    # 126 ~
    :vi_change_case,
    # 127 ^?
    :ed_delete_prev_char,
    # 128 M-^@
    :ed_unassigned,
    # 129 M-^A
    :ed_unassigned,
    # 130 M-^B
    :ed_unassigned,
    # 131 M-^C
    :ed_unassigned,
    # 132 M-^D
    :ed_unassigned,
    # 133 M-^E
    :ed_unassigned,
    # 134 M-^F
    :ed_unassigned,
    # 135 M-^G
    :ed_unassigned,
    # 136 M-^H
    :ed_unassigned,
    # 137 M-^I
    :ed_unassigned,
    # 138 M-^J
    :ed_unassigned,
    # 139 M-^K
    :ed_unassigned,
    # 140 M-^L
    :ed_unassigned,
    # 141 M-^M
    :ed_unassigned,
    # 142 M-^N
    :ed_unassigned,
    # 143 M-^O
    :ed_unassigned,
    # 144 M-^P
    :ed_unassigned,
    # 145 M-^Q
    :ed_unassigned,
    # 146 M-^R
    :ed_unassigned,
    # 147 M-^S
    :ed_unassigned,
    # 148 M-^T
    :ed_unassigned,
    # 149 M-^U
    :ed_unassigned,
    # 150 M-^V
    :ed_unassigned,
    # 151 M-^W
    :ed_unassigned,
    # 152 M-^X
    :ed_unassigned,
    # 153 M-^Y
    :ed_unassigned,
    # 154 M-^Z
    :ed_unassigned,
    # 155 M-^[
    :ed_unassigned,
    # 156 M-^\
    :ed_unassigned,
    # 157 M-^]
    :ed_unassigned,
    # 158 M-^^
    :ed_unassigned,
    # 159 M-^_
    :ed_unassigned,
    # 160 M-SPACE
    :ed_unassigned,
    # 161 M-!
    :ed_unassigned,
    # 162 M-"
    :ed_unassigned,
    # 163 M-#
    :ed_unassigned,
    # 164 M-$
    :ed_unassigned,
    # 165 M-%
    :ed_unassigned,
    # 166 M-&
    :ed_unassigned,
    # 167 M-'
    :ed_unassigned,
    # 168 M-(
    :ed_unassigned,
    # 169 M-)
    :ed_unassigned,
    # 170 M-*
    :ed_unassigned,
    # 171 M-+
    :ed_unassigned,
    # 172 M-,
    :ed_unassigned,
    # 173 M--
    :ed_unassigned,
    # 174 M-.
    :ed_unassigned,
    # 175 M-/
    :ed_unassigned,
    # 176 M-0
    :ed_unassigned,
    # 177 M-1
    :ed_unassigned,
    # 178 M-2
    :ed_unassigned,
    # 179 M-3
    :ed_unassigned,
    # 180 M-4
    :ed_unassigned,
    # 181 M-5
    :ed_unassigned,
    # 182 M-6
    :ed_unassigned,
    # 183 M-7
    :ed_unassigned,
    # 184 M-8
    :ed_unassigned,
    # 185 M-9
    :ed_unassigned,
    # 186 M-:
    :ed_unassigned,
    # 187 M-;
    :ed_unassigned,
    # 188 M-<
    :ed_unassigned,
    # 189 M-=
    :ed_unassigned,
    # 190 M->
    :ed_unassigned,
    # 191 M-?
    :ed_unassigned,
    # 192 M-@
    :ed_unassigned,
    # 193 M-A
    :ed_unassigned,
    # 194 M-B
    :ed_unassigned,
    # 195 M-C
    :ed_unassigned,
    # 196 M-D
    :ed_unassigned,
    # 197 M-E
    :ed_unassigned,
    # 198 M-F
    :ed_unassigned,
    # 199 M-G
    :ed_unassigned,
    # 200 M-H
    :ed_unassigned,
    # 201 M-I
    :ed_unassigned,
    # 202 M-J
    :ed_unassigned,
    # 203 M-K
    :ed_unassigned,
    # 204 M-L
    :ed_unassigned,
    # 205 M-M
    :ed_unassigned,
    # 206 M-N
    :ed_unassigned,
    # 207 M-O
    :ed_sequence_lead_in,
    # 208 M-P
    :ed_unassigned,
    # 209 M-Q
    :ed_unassigned,
    # 210 M-R
    :ed_unassigned,
    # 211 M-S
    :ed_unassigned,
    # 212 M-T
    :ed_unassigned,
    # 213 M-U
    :ed_unassigned,
    # 214 M-V
    :ed_unassigned,
    # 215 M-W
    :ed_unassigned,
    # 216 M-X
    :ed_unassigned,
    # 217 M-Y
    :ed_unassigned,
    # 218 M-Z
    :ed_unassigned,
    # 219 M-[
    :ed_sequence_lead_in,
    # 220 M-\
    :ed_unassigned,
    # 221 M-]
    :ed_unassigned,
    # 222 M-^
    :ed_unassigned,
    # 223 M-_
    :ed_unassigned,
    # 224 M-`
    :ed_unassigned,
    # 225 M-a
    :ed_unassigned,
    # 226 M-b
    :ed_unassigned,
    # 227 M-c
    :ed_unassigned,
    # 228 M-d
    :ed_unassigned,
    # 229 M-e
    :ed_unassigned,
    # 230 M-f
    :ed_unassigned,
    # 231 M-g
    :ed_unassigned,
    # 232 M-h
    :ed_unassigned,
    # 233 M-i
    :ed_unassigned,
    # 234 M-j
    :ed_unassigned,
    # 235 M-k
    :ed_unassigned,
    # 236 M-l
    :ed_unassigned,
    # 237 M-m
    :ed_unassigned,
    # 238 M-n
    :ed_unassigned,
    # 239 M-o
    :ed_unassigned,
    # 240 M-p
    :ed_unassigned,
    # 241 M-q
    :ed_unassigned,
    # 242 M-r
    :ed_unassigned,
    # 243 M-s
    :ed_unassigned,
    # 244 M-t
    :ed_unassigned,
    # 245 M-u
    :ed_unassigned,
    # 246 M-v
    :ed_unassigned,
    # 247 M-w
    :ed_unassigned,
    # 248 M-x
    :ed_unassigned,
    # 249 M-y
    :ed_unassigned,
    # 250 M-z
    :ed_unassigned,
    # 251 M-{
    :ed_unassigned,
    # 252 M-|
    :ed_unassigned,
    # 253 M-}
    :ed_unassigned,
    # 254 M-~
    :ed_unassigned,
    # 255 M-^?
    :ed_unassigned
    # EOF
  ]
end

PKIH[V�����(share/ruby/reline/key_actor/vi_insert.rbnu�[���class Reline::KeyActor::ViInsert < Reline::KeyActor::Base
  MAPPING = [
    #   0 ^@
    :ed_unassigned,
    #   1 ^A
    :ed_insert,
    #   2 ^B
    :ed_insert,
    #   3 ^C
    :ed_insert,
    #   4 ^D
    :vi_list_or_eof,
    #   5 ^E
    :ed_insert,
    #   6 ^F
    :ed_insert,
    #   7 ^G
    :ed_insert,
    #   8 ^H
    :vi_delete_prev_char,
    #   9 ^I
    :ed_insert,
    #  10 ^J
    :ed_newline,
    #  11 ^K
    :ed_insert,
    #  12 ^L
    :ed_insert,
    #  13 ^M
    :ed_newline,
    #  14 ^N
    :ed_insert,
    #  15 ^O
    :ed_insert,
    #  16 ^P
    :ed_insert,
    #  17 ^Q
    :ed_ignore,
    #  18 ^R
    :vi_search_prev,
    #  19 ^S
    :vi_search_next,
    #  20 ^T
    :ed_insert,
    #  21 ^U
    :vi_kill_line_prev,
    #  22 ^V
    :ed_quoted_insert,
    #  23 ^W
    :ed_delete_prev_word,
    #  24 ^X
    :ed_insert,
    #  25 ^Y
    :ed_insert,
    #  26 ^Z
    :ed_insert,
    #  27 ^[
    :vi_command_mode,
    #  28 ^\
    :ed_ignore,
    #  29 ^]
    :ed_insert,
    #  30 ^^
    :ed_insert,
    #  31 ^_
    :ed_insert,
    #  32 SPACE
    :ed_insert,
    #  33 !
    :ed_insert,
    #  34 "
    :ed_insert,
    #  35 #
    :ed_insert,
    #  36 $
    :ed_insert,
    #  37 %
    :ed_insert,
    #  38 &
    :ed_insert,
    #  39 '
    :ed_insert,
    #  40 (
    :ed_insert,
    #  41 )
    :ed_insert,
    #  42 *
    :ed_insert,
    #  43 +
    :ed_insert,
    #  44 ,
    :ed_insert,
    #  45 -
    :ed_insert,
    #  46 .
    :ed_insert,
    #  47 /
    :ed_insert,
    #  48 0
    :ed_insert,
    #  49 1
    :ed_insert,
    #  50 2
    :ed_insert,
    #  51 3
    :ed_insert,
    #  52 4
    :ed_insert,
    #  53 5
    :ed_insert,
    #  54 6
    :ed_insert,
    #  55 7
    :ed_insert,
    #  56 8
    :ed_insert,
    #  57 9
    :ed_insert,
    #  58 :
    :ed_insert,
    #  59 ;
    :ed_insert,
    #  60 <
    :ed_insert,
    #  61 =
    :ed_insert,
    #  62 >
    :ed_insert,
    #  63 ?
    :ed_insert,
    #  64 @
    :ed_insert,
    #  65 A
    :ed_insert,
    #  66 B
    :ed_insert,
    #  67 C
    :ed_insert,
    #  68 D
    :ed_insert,
    #  69 E
    :ed_insert,
    #  70 F
    :ed_insert,
    #  71 G
    :ed_insert,
    #  72 H
    :ed_insert,
    #  73 I
    :ed_insert,
    #  74 J
    :ed_insert,
    #  75 K
    :ed_insert,
    #  76 L
    :ed_insert,
    #  77 M
    :ed_insert,
    #  78 N
    :ed_insert,
    #  79 O
    :ed_insert,
    #  80 P
    :ed_insert,
    #  81 Q
    :ed_insert,
    #  82 R
    :ed_insert,
    #  83 S
    :ed_insert,
    #  84 T
    :ed_insert,
    #  85 U
    :ed_insert,
    #  86 V
    :ed_insert,
    #  87 W
    :ed_insert,
    #  88 X
    :ed_insert,
    #  89 Y
    :ed_insert,
    #  90 Z
    :ed_insert,
    #  91 [
    :ed_insert,
    #  92 \
    :ed_insert,
    #  93 ]
    :ed_insert,
    #  94 ^
    :ed_insert,
    #  95 _
    :ed_insert,
    #  96 `
    :ed_insert,
    #  97 a
    :ed_insert,
    #  98 b
    :ed_insert,
    #  99 c
    :ed_insert,
    # 100 d
    :ed_insert,
    # 101 e
    :ed_insert,
    # 102 f
    :ed_insert,
    # 103 g
    :ed_insert,
    # 104 h
    :ed_insert,
    # 105 i
    :ed_insert,
    # 106 j
    :ed_insert,
    # 107 k
    :ed_insert,
    # 108 l
    :ed_insert,
    # 109 m
    :ed_insert,
    # 110 n
    :ed_insert,
    # 111 o
    :ed_insert,
    # 112 p
    :ed_insert,
    # 113 q
    :ed_insert,
    # 114 r
    :ed_insert,
    # 115 s
    :ed_insert,
    # 116 t
    :ed_insert,
    # 117 u
    :ed_insert,
    # 118 v
    :ed_insert,
    # 119 w
    :ed_insert,
    # 120 x
    :ed_insert,
    # 121 y
    :ed_insert,
    # 122 z
    :ed_insert,
    # 123 {
    :ed_insert,
    # 124 |
    :ed_insert,
    # 125 }
    :ed_insert,
    # 126 ~
    :ed_insert,
    # 127 ^?
    :vi_delete_prev_char,
    # 128 M-^@
    :ed_unassigned,
    # 129 M-^A
    :ed_unassigned,
    # 130 M-^B
    :ed_unassigned,
    # 131 M-^C
    :ed_unassigned,
    # 132 M-^D
    :ed_unassigned,
    # 133 M-^E
    :ed_unassigned,
    # 134 M-^F
    :ed_unassigned,
    # 135 M-^G
    :ed_unassigned,
    # 136 M-^H
    :ed_unassigned,
    # 137 M-^I
    :ed_unassigned,
    # 138 M-^J
    :key_newline,
    # 139 M-^K
    :ed_unassigned,
    # 140 M-^L
    :ed_unassigned,
    # 141 M-^M
    :key_newline,
    # 142 M-^N
    :ed_unassigned,
    # 143 M-^O
    :ed_unassigned,
    # 144 M-^P
    :ed_unassigned,
    # 145 M-^Q
    :ed_unassigned,
    # 146 M-^R
    :ed_unassigned,
    # 147 M-^S
    :ed_unassigned,
    # 148 M-^T
    :ed_unassigned,
    # 149 M-^U
    :ed_unassigned,
    # 150 M-^V
    :ed_unassigned,
    # 151 M-^W
    :ed_unassigned,
    # 152 M-^X
    :ed_unassigned,
    # 153 M-^Y
    :ed_unassigned,
    # 154 M-^Z
    :ed_unassigned,
    # 155 M-^[
    :ed_unassigned,
    # 156 M-^\
    :ed_unassigned,
    # 157 M-^]
    :ed_unassigned,
    # 158 M-^^
    :ed_unassigned,
    # 159 M-^_
    :ed_unassigned,
    # 160 M-SPACE
    :ed_unassigned,
    # 161 M-!
    :ed_unassigned,
    # 162 M-"
    :ed_unassigned,
    # 163 M-#
    :ed_unassigned,
    # 164 M-$
    :ed_unassigned,
    # 165 M-%
    :ed_unassigned,
    # 166 M-&
    :ed_unassigned,
    # 167 M-'
    :ed_unassigned,
    # 168 M-(
    :ed_unassigned,
    # 169 M-)
    :ed_unassigned,
    # 170 M-*
    :ed_unassigned,
    # 171 M-+
    :ed_unassigned,
    # 172 M-,
    :ed_unassigned,
    # 173 M--
    :ed_unassigned,
    # 174 M-.
    :ed_unassigned,
    # 175 M-/
    :ed_unassigned,
    # 176 M-0
    :ed_unassigned,
    # 177 M-1
    :ed_unassigned,
    # 178 M-2
    :ed_unassigned,
    # 179 M-3
    :ed_unassigned,
    # 180 M-4
    :ed_unassigned,
    # 181 M-5
    :ed_unassigned,
    # 182 M-6
    :ed_unassigned,
    # 183 M-7
    :ed_unassigned,
    # 184 M-8
    :ed_unassigned,
    # 185 M-9
    :ed_unassigned,
    # 186 M-:
    :ed_unassigned,
    # 187 M-;
    :ed_unassigned,
    # 188 M-<
    :ed_unassigned,
    # 189 M-=
    :ed_unassigned,
    # 190 M->
    :ed_unassigned,
    # 191 M-?
    :ed_unassigned,
    # 192 M-@
    :ed_unassigned,
    # 193 M-A
    :ed_unassigned,
    # 194 M-B
    :ed_unassigned,
    # 195 M-C
    :ed_unassigned,
    # 196 M-D
    :ed_unassigned,
    # 197 M-E
    :ed_unassigned,
    # 198 M-F
    :ed_unassigned,
    # 199 M-G
    :ed_unassigned,
    # 200 M-H
    :ed_unassigned,
    # 201 M-I
    :ed_unassigned,
    # 202 M-J
    :ed_unassigned,
    # 203 M-K
    :ed_unassigned,
    # 204 M-L
    :ed_unassigned,
    # 205 M-M
    :ed_unassigned,
    # 206 M-N
    :ed_unassigned,
    # 207 M-O
    :ed_unassigned,
    # 208 M-P
    :ed_unassigned,
    # 209 M-Q
    :ed_unassigned,
    # 210 M-R
    :ed_unassigned,
    # 211 M-S
    :ed_unassigned,
    # 212 M-T
    :ed_unassigned,
    # 213 M-U
    :ed_unassigned,
    # 214 M-V
    :ed_unassigned,
    # 215 M-W
    :ed_unassigned,
    # 216 M-X
    :ed_unassigned,
    # 217 M-Y
    :ed_unassigned,
    # 218 M-Z
    :ed_unassigned,
    # 219 M-[
    :ed_unassigned,
    # 220 M-\
    :ed_unassigned,
    # 221 M-]
    :ed_unassigned,
    # 222 M-^
    :ed_unassigned,
    # 223 M-_
    :ed_unassigned,
    # 224 M-`
    :ed_unassigned,
    # 225 M-a
    :ed_unassigned,
    # 226 M-b
    :ed_unassigned,
    # 227 M-c
    :ed_unassigned,
    # 228 M-d
    :ed_unassigned,
    # 229 M-e
    :ed_unassigned,
    # 230 M-f
    :ed_unassigned,
    # 231 M-g
    :ed_unassigned,
    # 232 M-h
    :ed_unassigned,
    # 233 M-i
    :ed_unassigned,
    # 234 M-j
    :ed_unassigned,
    # 235 M-k
    :ed_unassigned,
    # 236 M-l
    :ed_unassigned,
    # 237 M-m
    :ed_unassigned,
    # 238 M-n
    :ed_unassigned,
    # 239 M-o
    :ed_unassigned,
    # 240 M-p
    :ed_unassigned,
    # 241 M-q
    :ed_unassigned,
    # 242 M-r
    :ed_unassigned,
    # 243 M-s
    :ed_unassigned,
    # 244 M-t
    :ed_unassigned,
    # 245 M-u
    :ed_unassigned,
    # 246 M-v
    :ed_unassigned,
    # 247 M-w
    :ed_unassigned,
    # 248 M-x
    :ed_unassigned,
    # 249 M-y
    :ed_unassigned,
    # 250 M-z
    :ed_unassigned,
    # 251 M-{
    :ed_unassigned,
    # 252 M-|
    :ed_unassigned,
    # 253 M-}
    :ed_unassigned,
    # 254 M-~
    :ed_unassigned,
    # 255 M-^?
    :ed_unassigned
    # EOF
  ]
end
PKIH[��vv#share/ruby/reline/key_actor/base.rbnu�[���class Reline::KeyActor::Base
  MAPPING = Array.new(256)

  def get_method(key)
    self.class::MAPPING[key]
  end
end
PKJH[d�9�j j $share/ruby/reline/key_actor/emacs.rbnu�[���class Reline::KeyActor::Emacs < Reline::KeyActor::Base
  MAPPING = [
    #   0 ^@
    :em_set_mark,
    #   1 ^A
    :ed_move_to_beg,
    #   2 ^B
    :ed_prev_char,
    #   3 ^C
    :ed_ignore,
    #   4 ^D
    :em_delete,
    #   5 ^E
    :ed_move_to_end,
    #   6 ^F
    :ed_next_char,
    #   7 ^G
    :ed_unassigned,
    #   8 ^H
    :em_delete_prev_char,
    #   9 ^I
    :ed_unassigned,
    #  10 ^J
    :ed_newline,
    #  11 ^K
    :ed_kill_line,
    #  12 ^L
    :ed_clear_screen,
    #  13 ^M
    :ed_newline,
    #  14 ^N
    :ed_next_history,
    #  15 ^O
    :ed_ignore,
    #  16 ^P
    :ed_prev_history,
    #  17 ^Q
    :ed_quoted_insert,
    #  18 ^R
    :vi_search_prev,
    #  19 ^S
    :vi_search_next,
    #  20 ^T
    :ed_transpose_chars,
    #  21 ^U
    :em_kill_line,
    #  22 ^V
    :ed_quoted_insert,
    #  23 ^W
    :em_kill_region,
    #  24 ^X
    :ed_sequence_lead_in,
    #  25 ^Y
    :em_yank,
    #  26 ^Z
    :ed_ignore,
    #  27 ^[
    :em_meta_next,
    #  28 ^\
    :ed_ignore,
    #  29 ^]
    :ed_ignore,
    #  30 ^^
    :ed_unassigned,
    #  31 ^_
    :ed_unassigned,
    #  32 SPACE
    :ed_insert,
    #  33 !
    :ed_insert,
    #  34 "
    :ed_insert,
    #  35 #
    :ed_insert,
    #  36 $
    :ed_insert,
    #  37 %
    :ed_insert,
    #  38 &
    :ed_insert,
    #  39 '
    :ed_insert,
    #  40 (
    :ed_insert,
    #  41 )
    :ed_insert,
    #  42 *
    :ed_insert,
    #  43 +
    :ed_insert,
    #  44 ,
    :ed_insert,
    #  45 -
    :ed_insert,
    #  46 .
    :ed_insert,
    #  47 /
    :ed_insert,
    #  48 0
    :ed_digit,
    #  49 1
    :ed_digit,
    #  50 2
    :ed_digit,
    #  51 3
    :ed_digit,
    #  52 4
    :ed_digit,
    #  53 5
    :ed_digit,
    #  54 6
    :ed_digit,
    #  55 7
    :ed_digit,
    #  56 8
    :ed_digit,
    #  57 9
    :ed_digit,
    #  58 :
    :ed_insert,
    #  59 ;
    :ed_insert,
    #  60 <
    :ed_insert,
    #  61 =
    :ed_insert,
    #  62 >
    :ed_insert,
    #  63 ?
    :ed_insert,
    #  64 @
    :ed_insert,
    #  65 A
    :ed_insert,
    #  66 B
    :ed_insert,
    #  67 C
    :ed_insert,
    #  68 D
    :ed_insert,
    #  69 E
    :ed_insert,
    #  70 F
    :ed_insert,
    #  71 G
    :ed_insert,
    #  72 H
    :ed_insert,
    #  73 I
    :ed_insert,
    #  74 J
    :ed_insert,
    #  75 K
    :ed_insert,
    #  76 L
    :ed_insert,
    #  77 M
    :ed_insert,
    #  78 N
    :ed_insert,
    #  79 O
    :ed_insert,
    #  80 P
    :ed_insert,
    #  81 Q
    :ed_insert,
    #  82 R
    :ed_insert,
    #  83 S
    :ed_insert,
    #  84 T
    :ed_insert,
    #  85 U
    :ed_insert,
    #  86 V
    :ed_insert,
    #  87 W
    :ed_insert,
    #  88 X
    :ed_insert,
    #  89 Y
    :ed_insert,
    #  90 Z
    :ed_insert,
    #  91 [
    :ed_insert,
    #  92 \
    :ed_insert,
    #  93 ]
    :ed_insert,
    #  94 ^
    :ed_insert,
    #  95 _
    :ed_insert,
    #  96 `
    :ed_insert,
    #  97 a
    :ed_insert,
    #  98 b
    :ed_insert,
    #  99 c
    :ed_insert,
    # 100 d
    :ed_insert,
    # 101 e
    :ed_insert,
    # 102 f
    :ed_insert,
    # 103 g
    :ed_insert,
    # 104 h
    :ed_insert,
    # 105 i
    :ed_insert,
    # 106 j
    :ed_insert,
    # 107 k
    :ed_insert,
    # 108 l
    :ed_insert,
    # 109 m
    :ed_insert,
    # 110 n
    :ed_insert,
    # 111 o
    :ed_insert,
    # 112 p
    :ed_insert,
    # 113 q
    :ed_insert,
    # 114 r
    :ed_insert,
    # 115 s
    :ed_insert,
    # 116 t
    :ed_insert,
    # 117 u
    :ed_insert,
    # 118 v
    :ed_insert,
    # 119 w
    :ed_insert,
    # 120 x
    :ed_insert,
    # 121 y
    :ed_insert,
    # 122 z
    :ed_insert,
    # 123 {
    :ed_insert,
    # 124 |
    :ed_insert,
    # 125 }
    :ed_insert,
    # 126 ~
    :ed_insert,
    # 127 ^?
    :em_delete_prev_char,
    # 128 M-^@
    :ed_unassigned,
    # 129 M-^A
    :ed_unassigned,
    # 130 M-^B
    :ed_unassigned,
    # 131 M-^C
    :ed_unassigned,
    # 132 M-^D
    :ed_unassigned,
    # 133 M-^E
    :ed_unassigned,
    # 134 M-^F
    :ed_unassigned,
    # 135 M-^G
    :ed_unassigned,
    # 136 M-^H
    :ed_delete_prev_word,
    # 137 M-^I
    :ed_unassigned,
    # 138 M-^J
    :key_newline,
    # 139 M-^K
    :ed_unassigned,
    # 140 M-^L
    :ed_clear_screen,
    # 141 M-^M
    :key_newline,
    # 142 M-^N
    :ed_unassigned,
    # 143 M-^O
    :ed_unassigned,
    # 144 M-^P
    :ed_unassigned,
    # 145 M-^Q
    :ed_unassigned,
    # 146 M-^R
    :ed_unassigned,
    # 147 M-^S
    :ed_unassigned,
    # 148 M-^T
    :ed_unassigned,
    # 149 M-^U
    :ed_unassigned,
    # 150 M-^V
    :ed_unassigned,
    # 151 M-^W
    :ed_unassigned,
    # 152 M-^X
    :ed_unassigned,
    # 153 M-^Y
    :ed_unassigned,
    # 154 M-^Z
    :ed_unassigned,
    # 155 M-^[
    :ed_unassigned,
    # 156 M-^\
    :ed_unassigned,
    # 157 M-^]
    :ed_unassigned,
    # 158 M-^^
    :ed_unassigned,
    # 159 M-^_
    :em_copy_prev_word,
    # 160 M-SPACE
    :ed_unassigned,
    # 161 M-!
    :ed_unassigned,
    # 162 M-"
    :ed_unassigned,
    # 163 M-#
    :ed_unassigned,
    # 164 M-$
    :ed_unassigned,
    # 165 M-%
    :ed_unassigned,
    # 166 M-&
    :ed_unassigned,
    # 167 M-'
    :ed_unassigned,
    # 168 M-(
    :ed_unassigned,
    # 169 M-)
    :ed_unassigned,
    # 170 M-*
    :ed_unassigned,
    # 171 M-+
    :ed_unassigned,
    # 172 M-,
    :ed_unassigned,
    # 173 M--
    :ed_unassigned,
    # 174 M-.
    :ed_unassigned,
    # 175 M-/
    :ed_unassigned,
    # 176 M-0
    :ed_argument_digit,
    # 177 M-1
    :ed_argument_digit,
    # 178 M-2
    :ed_argument_digit,
    # 179 M-3
    :ed_argument_digit,
    # 180 M-4
    :ed_argument_digit,
    # 181 M-5
    :ed_argument_digit,
    # 182 M-6
    :ed_argument_digit,
    # 183 M-7
    :ed_argument_digit,
    # 184 M-8
    :ed_argument_digit,
    # 185 M-9
    :ed_argument_digit,
    # 186 M-:
    :ed_unassigned,
    # 187 M-;
    :ed_unassigned,
    # 188 M-<
    :ed_unassigned,
    # 189 M-=
    :ed_unassigned,
    # 190 M->
    :ed_unassigned,
    # 191 M-?
    :ed_unassigned,
    # 192 M-@
    :ed_unassigned,
    # 193 M-A
    :ed_unassigned,
    # 194 M-B
    :ed_prev_word,
    # 195 M-C
    :em_capitol_case,
    # 196 M-D
    :em_delete_next_word,
    # 197 M-E
    :ed_unassigned,
    # 198 M-F
    :em_next_word,
    # 199 M-G
    :ed_unassigned,
    # 200 M-H
    :ed_unassigned,
    # 201 M-I
    :ed_unassigned,
    # 202 M-J
    :ed_unassigned,
    # 203 M-K
    :ed_unassigned,
    # 204 M-L
    :em_lower_case,
    # 205 M-M
    :ed_unassigned,
    # 206 M-N
    :vi_search_next,
    # 207 M-O
    :ed_sequence_lead_in,
    # 208 M-P
    :vi_search_prev,
    # 209 M-Q
    :ed_unassigned,
    # 210 M-R
    :ed_unassigned,
    # 211 M-S
    :ed_unassigned,
    # 212 M-T
    :ed_unassigned,
    # 213 M-U
    :em_upper_case,
    # 214 M-V
    :ed_unassigned,
    # 215 M-W
    :em_copy_region,
    # 216 M-X
    :ed_command,
    # 217 M-Y
    :ed_unassigned,
    # 218 M-Z
    :ed_unassigned,
    # 219 M-[
    :ed_sequence_lead_in,
    # 220 M-\
    :ed_unassigned,
    # 221 M-]
    :ed_unassigned,
    # 222 M-^
    :ed_unassigned,
    # 223 M-_
    :ed_unassigned,
    # 224 M-`
    :ed_unassigned,
    # 225 M-a
    :ed_unassigned,
    # 226 M-b
    :ed_prev_word,
    # 227 M-c
    :em_capitol_case,
    # 228 M-d
    :em_delete_next_word,
    # 229 M-e
    :ed_unassigned,
    # 230 M-f
    :em_next_word,
    # 231 M-g
    :ed_unassigned,
    # 232 M-h
    :ed_unassigned,
    # 233 M-i
    :ed_unassigned,
    # 234 M-j
    :ed_unassigned,
    # 235 M-k
    :ed_unassigned,
    # 236 M-l
    :em_lower_case,
    # 237 M-m
    :ed_unassigned,
    # 238 M-n
    :vi_search_next,
    # 239 M-o
    :ed_unassigned,
    # 240 M-p
    :vi_search_prev,
    # 241 M-q
    :ed_unassigned,
    # 242 M-r
    :ed_unassigned,
    # 243 M-s
    :ed_unassigned,
    # 244 M-t
    :ed_transpose_words,
    # 245 M-u
    :em_upper_case,
    # 246 M-v
    :ed_unassigned,
    # 247 M-w
    :em_copy_region,
    # 248 M-x
    :ed_command,
    # 249 M-y
    :ed_unassigned,
    # 250 M-z
    :ed_unassigned,
    # 251 M-{
    :ed_unassigned,
    # 252 M-|
    :ed_unassigned,
    # 253 M-}
    :ed_unassigned,
    # 254 M-~
    :ed_unassigned,
    # 255 M-^?
    :ed_delete_prev_word
    # EOF
  ]
end
PKJH[9!��share/ruby/reline/ansi.rbnu�[���require 'io/console'

class Reline::ANSI
  def self.encoding
    Encoding.default_external
  end

  def self.win?
    false
  end

  RAW_KEYSTROKE_CONFIG = {
    # Console (80x25)
    [27, 91, 49, 126] => :ed_move_to_beg, # Home
    [27, 91, 52, 126] => :ed_move_to_end, # End
    [27, 91, 51, 126] => :key_delete,     # Del
    [27, 91, 65] => :ed_prev_history,     # ↑
    [27, 91, 66] => :ed_next_history,     # ↓
    [27, 91, 67] => :ed_next_char,        # →
    [27, 91, 68] => :ed_prev_char,        # ←

    # KDE
    [27, 91, 72] => :ed_move_to_beg,      # Home
    [27, 91, 70] => :ed_move_to_end,      # End
    # Del is 0x08
    [27, 71, 65] => :ed_prev_history,     # ↑
    [27, 71, 66] => :ed_next_history,     # ↓
    [27, 71, 67] => :ed_next_char,        # →
    [27, 71, 68] => :ed_prev_char,        # ←

    # urxvt / exoterm
    [27, 91, 55, 126] => :ed_move_to_beg, # Home
    [27, 91, 56, 126] => :ed_move_to_end, # End

    # GNOME
    [27, 79, 72] => :ed_move_to_beg,      # Home
    [27, 79, 70] => :ed_move_to_end,      # End
    # Del is 0x08
    # Arrow keys are the same of KDE

    # iTerm2
    [27, 27, 91, 67] => :em_next_word,    # Option+→
    [27, 27, 91, 68] => :ed_prev_word,    # Option+←
    [195, 166] => :em_next_word,          # Option+f
    [195, 162] => :ed_prev_word,          # Option+b

    # others
    [27, 32] => :em_set_mark,             # M-<space>
    [24, 24] => :em_exchange_mark,        # C-x C-x TODO also add Windows
    [27, 91, 49, 59, 53, 67] => :em_next_word, # Ctrl+→
    [27, 91, 49, 59, 53, 68] => :ed_prev_word, # Ctrl+←

    [27, 79, 65] => :ed_prev_history,     # ↑
    [27, 79, 66] => :ed_next_history,     # ↓
    [27, 79, 67] => :ed_next_char,        # →
    [27, 79, 68] => :ed_prev_char,        # ←
  }

  @@input = STDIN
  def self.input=(val)
    @@input = val
  end

  @@output = STDOUT
  def self.output=(val)
    @@output = val
  end

  @@buf = []
  def self.getc
    unless @@buf.empty?
      return @@buf.shift
    end
    until c = @@input.raw(intr: true, &:getbyte)
      sleep 0.1
    end
    (c == 0x16 && @@input.raw(min: 0, tim: 0, &:getbyte)) || c
  rescue Errno::EIO
    # Maybe the I/O has been closed.
    nil
  end

  def self.ungetc(c)
    @@buf.unshift(c)
  end

  def self.retrieve_keybuffer
    begin
      result = select([@@input], [], [], 0.001)
      return if result.nil?
      str = @@input.read_nonblock(1024)
      str.bytes.each do |c|
        @@buf.push(c)
      end
    rescue EOFError
    end
  end

  def self.get_screen_size
    s = @@input.winsize
    return s if s[0] > 0 && s[1] > 0
    s = [ENV["LINES"].to_i, ENV["COLUMNS"].to_i]
    return s if s[0] > 0 && s[1] > 0
    [24, 80]
  rescue Errno::ENOTTY
    [24, 80]
  end

  def self.set_screen_size(rows, columns)
    @@input.winsize = [rows, columns]
    self
  rescue Errno::ENOTTY
    self
  end

  def self.cursor_pos
    begin
      res = ''
      m = nil
      @@input.raw do |stdin|
        @@output << "\e[6n"
        @@output.flush
        loop do
          c = stdin.getc
          next if c.nil?
          res << c
          m = res.match(/\e\[(?<row>\d+);(?<column>\d+)R/)
          break if m
        end
        (m.pre_match + m.post_match).chars.reverse_each do |ch|
          stdin.ungetc ch
        end
      end
      column = m[:column].to_i - 1
      row = m[:row].to_i - 1
    rescue Errno::ENOTTY
      begin
        buf = @@output.pread(@@output.pos, 0)
        row = buf.count("\n")
        column = buf.rindex("\n") ? (buf.size - buf.rindex("\n")) - 1 : 0
      rescue Errno::ESPIPE
        # Just returns column 1 for ambiguous width because this I/O is not
        # tty and can't seek.
        row = 0
        column = 1
      end
    end
    Reline::CursorPos.new(column, row)
  end

  def self.move_cursor_column(x)
    @@output.write "\e[#{x + 1}G"
  end

  def self.move_cursor_up(x)
    if x > 0
      @@output.write "\e[#{x}A" if x > 0
    elsif x < 0
      move_cursor_down(-x)
    end
  end

  def self.move_cursor_down(x)
    if x > 0
      @@output.write "\e[#{x}B" if x > 0
    elsif x < 0
      move_cursor_up(-x)
    end
  end

  def self.erase_after_cursor
    @@output.write "\e[K"
  end

  def self.scroll_down(x)
    return if x.zero?
    @@output.write "\e[#{x}S"
  end

  def self.clear_screen
    @@output.write "\e[2J"
    @@output.write "\e[1;1H"
  end

  @@old_winch_handler = nil
  def self.set_winch_handler(&handler)
    @@old_winch_handler = Signal.trap('WINCH', &handler)
  end

  def self.prep
    retrieve_keybuffer
    int_handle = Signal.trap('INT', 'IGNORE')
    Signal.trap('INT', int_handle)
    nil
  end

  def self.deprep(otio)
    int_handle = Signal.trap('INT', 'IGNORE')
    Signal.trap('INT', int_handle)
    Signal.trap('WINCH', @@old_winch_handler) if @@old_winch_handler
  end
end
PKJH[�cUeHkHk-share/ruby/reline/unicode/east_asian_width.rbnu�[���class Reline::Unicode::EastAsianWidth
  # This is based on EastAsianWidth.txt
  # http://www.unicode.org/Public/12.1.0/ucd/EastAsianWidth.txt

  # Fullwidth
  TYPE_F = /^(
    \u{3000} |
    [\u{FF01}-\u{FF60}] |
    [\u{FFE0}-\u{FFE6}]
  )/x

  # Halfwidth
  TYPE_H = /^(
    \u{20A9} |
    [\u{FF61}-\u{FFBE}] |
    [\u{FFC2}-\u{FFC7}] |
    [\u{FFCA}-\u{FFCF}] |
    [\u{FFD2}-\u{FFD7}] |
    [\u{FFDA}-\u{FFDC}] |
    [\u{FFE8}-\u{FFEE}]
  )/x

  # Wide
  TYPE_W = /^(
    [\u{1100}-\u{115F}] |
    [\u{231A}-\u{231B}] |
    [\u{2329}-\u{232A}] |
    [\u{23E9}-\u{23EC}] |
    \u{23F0} |
    \u{23F3} |
    [\u{25FD}-\u{25FE}] |
    [\u{2614}-\u{2615}] |
    [\u{2648}-\u{2653}] |
    \u{267F} |
    \u{2693} |
    \u{26A1} |
    [\u{26AA}-\u{26AB}] |
    [\u{26BD}-\u{26BE}] |
    [\u{26C4}-\u{26C5}] |
    \u{26CE} |
    \u{26D4} |
    \u{26EA} |
    [\u{26F2}-\u{26F3}] |
    \u{26F5} |
    \u{26FA} |
    \u{26FD} |
    \u{2705} |
    [\u{270A}-\u{270B}] |
    \u{2728} |
    \u{274C} |
    \u{274E} |
    [\u{2753}-\u{2755}] |
    \u{2757} |
    [\u{2795}-\u{2797}] |
    \u{27B0} |
    \u{27BF} |
    [\u{2B1B}-\u{2B1C}] |
    \u{2B50} |
    \u{2B55} |
    [\u{2E80}-\u{2E99}] |
    [\u{2E9B}-\u{2EF3}] |
    [\u{2F00}-\u{2FD5}] |
    [\u{2FF0}-\u{2FFB}] |
    [\u{3001}-\u{303E}] |
    [\u{3041}-\u{3096}] |
    [\u{3099}-\u{30FF}] |
    [\u{3105}-\u{312F}] |
    [\u{3131}-\u{318E}] |
    [\u{3190}-\u{31BA}] |
    [\u{31C0}-\u{31E3}] |
    [\u{31F0}-\u{321E}] |
    [\u{3220}-\u{3247}] |
    [\u{3250}-\u{4DBF}] |
    [\u{4E00}-\u{A48C}] |
    [\u{A490}-\u{A4C6}] |
    [\u{A960}-\u{A97C}] |
    [\u{AC00}-\u{D7A3}] |
    [\u{F900}-\u{FAFF}] |
    [\u{FE10}-\u{FE19}] |
    [\u{FE30}-\u{FE52}] |
    [\u{FE54}-\u{FE66}] |
    [\u{FE68}-\u{FE6B}] |
    [\u{16FE0}-\u{16FE3}] |
    [\u{17000}-\u{187F7}] |
    [\u{18800}-\u{18AF2}] |
    [\u{1B000}-\u{1B11E}] |
    [\u{1B150}-\u{1B152}] |
    [\u{1B164}-\u{1B167}] |
    [\u{1B170}-\u{1B2FB}] |
    \u{1F004} |
    \u{1F0CF} |
    \u{1F18E} |
    [\u{1F191}-\u{1F19A}] |
    [\u{1F200}-\u{1F202}] |
    [\u{1F210}-\u{1F23B}] |
    [\u{1F240}-\u{1F248}] |
    [\u{1F250}-\u{1F251}] |
    [\u{1F260}-\u{1F265}] |
    [\u{1F300}-\u{1F320}] |
    [\u{1F32D}-\u{1F335}] |
    [\u{1F337}-\u{1F37C}] |
    [\u{1F37E}-\u{1F393}] |
    [\u{1F3A0}-\u{1F3CA}] |
    [\u{1F3CF}-\u{1F3D3}] |
    [\u{1F3E0}-\u{1F3F0}] |
    \u{1F3F4} |
    [\u{1F3F8}-\u{1F43E}] |
    \u{1F440} |
    [\u{1F442}-\u{1F4FC}] |
    [\u{1F4FF}-\u{1F53D}] |
    [\u{1F54B}-\u{1F54E}] |
    [\u{1F550}-\u{1F567}] |
    \u{1F57A} |
    [\u{1F595}-\u{1F596}] |
    \u{1F5A4} |
    [\u{1F5FB}-\u{1F64F}] |
    [\u{1F680}-\u{1F6C5}] |
    \u{1F6CC} |
    [\u{1F6D0}-\u{1F6D2}] |
    \u{1F6D5} |
    [\u{1F6EB}-\u{1F6EC}] |
    [\u{1F6F4}-\u{1F6FA}] |
    [\u{1F7E0}-\u{1F7EB}] |
    [\u{1F90D}-\u{1F971}] |
    [\u{1F973}-\u{1F976}] |
    [\u{1F97A}-\u{1F9A2}] |
    [\u{1F9A5}-\u{1F9AA}] |
    [\u{1F9AE}-\u{1F9CA}] |
    [\u{1F9CD}-\u{1F9FF}] |
    [\u{1FA70}-\u{1FA73}] |
    [\u{1FA78}-\u{1FA7A}] |
    [\u{1FA80}-\u{1FA82}] |
    [\u{1FA90}-\u{1FA95}] |
    [\u{20000}-\u{2FFFD}] |
    [\u{30000}-\u{3FFFD}]
  )/x

  # Narrow
  TYPE_NA = /^(
    [\u{0020}-\u{007E}] |
    [\u{00A2}-\u{00A3}] |
    [\u{00A5}-\u{00A6}] |
    \u{00AC} |
    \u{00AF} |
    [\u{27E6}-\u{27ED}] |
    [\u{2985}-\u{2986}]
  )/x

  # Ambiguous
  TYPE_A = /^(
    \u{00A1} |
    \u{00A4} |
    [\u{00A7}-\u{00A8}] |
    \u{00AA} |
    [\u{00AD}-\u{00AE}] |
    [\u{00B0}-\u{00B4}] |
    [\u{00B6}-\u{00BA}] |
    [\u{00BC}-\u{00BF}] |
    \u{00C6} |
    \u{00D0} |
    [\u{00D7}-\u{00D8}] |
    [\u{00DE}-\u{00E1}] |
    \u{00E6} |
    [\u{00E8}-\u{00EA}] |
    [\u{00EC}-\u{00ED}] |
    \u{00F0} |
    [\u{00F2}-\u{00F3}] |
    [\u{00F7}-\u{00FA}] |
    \u{00FC} |
    \u{00FE} |
    \u{0101} |
    \u{0111} |
    \u{0113} |
    \u{011B} |
    [\u{0126}-\u{0127}] |
    \u{012B} |
    [\u{0131}-\u{0133}] |
    \u{0138} |
    [\u{013F}-\u{0142}] |
    \u{0144} |
    [\u{0148}-\u{014B}] |
    \u{014D} |
    [\u{0152}-\u{0153}] |
    [\u{0166}-\u{0167}] |
    \u{016B} |
    \u{01CE} |
    \u{01D0} |
    \u{01D2} |
    \u{01D4} |
    \u{01D6} |
    \u{01D8} |
    \u{01DA} |
    \u{01DC} |
    \u{0251} |
    \u{0261} |
    \u{02C4} |
    \u{02C7} |
    [\u{02C9}-\u{02CB}] |
    \u{02CD} |
    \u{02D0} |
    [\u{02D8}-\u{02DB}] |
    \u{02DD} |
    \u{02DF} |
    [\u{0300}-\u{036F}] |
    [\u{0391}-\u{03A1}] |
    [\u{03A3}-\u{03A9}] |
    [\u{03B1}-\u{03C1}] |
    [\u{03C3}-\u{03C9}] |
    \u{0401} |
    [\u{0410}-\u{044F}] |
    \u{0451} |
    \u{2010} |
    [\u{2013}-\u{2016}] |
    [\u{2018}-\u{2019}] |
    [\u{201C}-\u{201D}] |
    [\u{2020}-\u{2022}] |
    [\u{2024}-\u{2027}] |
    \u{2030} |
    [\u{2032}-\u{2033}] |
    \u{2035} |
    \u{203B} |
    \u{203E} |
    \u{2074} |
    \u{207F} |
    [\u{2081}-\u{2084}] |
    \u{20AC} |
    \u{2103} |
    \u{2105} |
    \u{2109} |
    \u{2113} |
    \u{2116} |
    [\u{2121}-\u{2122}] |
    \u{2126} |
    \u{212B} |
    [\u{2153}-\u{2154}] |
    [\u{215B}-\u{215E}] |
    [\u{2160}-\u{216B}] |
    [\u{2170}-\u{2179}] |
    \u{2189} |
    [\u{2190}-\u{2199}] |
    [\u{21B8}-\u{21B9}] |
    \u{21D2} |
    \u{21D4} |
    \u{21E7} |
    \u{2200} |
    [\u{2202}-\u{2203}] |
    [\u{2207}-\u{2208}] |
    \u{220B} |
    \u{220F} |
    \u{2211} |
    \u{2215} |
    \u{221A} |
    [\u{221D}-\u{2220}] |
    \u{2223} |
    \u{2225} |
    [\u{2227}-\u{222C}] |
    \u{222E} |
    [\u{2234}-\u{2237}] |
    [\u{223C}-\u{223D}] |
    \u{2248} |
    \u{224C} |
    \u{2252} |
    [\u{2260}-\u{2261}] |
    [\u{2264}-\u{2267}] |
    [\u{226A}-\u{226B}] |
    [\u{226E}-\u{226F}] |
    [\u{2282}-\u{2283}] |
    [\u{2286}-\u{2287}] |
    \u{2295} |
    \u{2299} |
    \u{22A5} |
    \u{22BF} |
    \u{2312} |
    [\u{2460}-\u{24E9}] |
    [\u{24EB}-\u{254B}] |
    [\u{2550}-\u{2573}] |
    [\u{2580}-\u{258F}] |
    [\u{2592}-\u{2595}] |
    [\u{25A0}-\u{25A1}] |
    [\u{25A3}-\u{25A9}] |
    [\u{25B2}-\u{25B3}] |
    [\u{25B6}-\u{25B7}] |
    [\u{25BC}-\u{25BD}] |
    [\u{25C0}-\u{25C1}] |
    [\u{25C6}-\u{25C8}] |
    \u{25CB} |
    [\u{25CE}-\u{25D1}] |
    [\u{25E2}-\u{25E5}] |
    \u{25EF} |
    [\u{2605}-\u{2606}] |
    \u{2609} |
    [\u{260E}-\u{260F}] |
    \u{261C} |
    \u{261E} |
    \u{2640} |
    \u{2642} |
    [\u{2660}-\u{2661}] |
    [\u{2663}-\u{2665}] |
    [\u{2667}-\u{266A}] |
    [\u{266C}-\u{266D}] |
    \u{266F} |
    [\u{269E}-\u{269F}] |
    \u{26BF} |
    [\u{26C6}-\u{26CD}] |
    [\u{26CF}-\u{26D3}] |
    [\u{26D5}-\u{26E1}] |
    \u{26E3} |
    [\u{26E8}-\u{26E9}] |
    [\u{26EB}-\u{26F1}] |
    \u{26F4} |
    [\u{26F6}-\u{26F9}] |
    [\u{26FB}-\u{26FC}] |
    [\u{26FE}-\u{26FF}] |
    \u{273D} |
    [\u{2776}-\u{277F}] |
    [\u{2B56}-\u{2B59}] |
    [\u{3248}-\u{324F}] |
    [\u{E000}-\u{F8FF}] |
    [\u{FE00}-\u{FE0F}] |
    \u{FFFD} |
    [\u{1F100}-\u{1F10A}] |
    [\u{1F110}-\u{1F12D}] |
    [\u{1F130}-\u{1F169}] |
    [\u{1F170}-\u{1F18D}] |
    [\u{1F18F}-\u{1F190}] |
    [\u{1F19B}-\u{1F1AC}] |
    [\u{E0100}-\u{E01EF}] |
    [\u{F0000}-\u{FFFFD}] |
    [\u{100000}-\u{10FFFD}]
  )/x

  # Neutral
  TYPE_N = /^(
    [\u{0000}-\u{001F}] |
    [\u{007F}-\u{00A0}] |
    \u{00A9} |
    \u{00AB} |
    \u{00B5} |
    \u{00BB} |
    [\u{00C0}-\u{00C5}] |
    [\u{00C7}-\u{00CF}] |
    [\u{00D1}-\u{00D6}] |
    [\u{00D9}-\u{00DD}] |
    [\u{00E2}-\u{00E5}] |
    \u{00E7} |
    \u{00EB} |
    [\u{00EE}-\u{00EF}] |
    \u{00F1} |
    [\u{00F4}-\u{00F6}] |
    \u{00FB} |
    \u{00FD} |
    [\u{00FF}-\u{0100}] |
    [\u{0102}-\u{0110}] |
    \u{0112} |
    [\u{0114}-\u{011A}] |
    [\u{011C}-\u{0125}] |
    [\u{0128}-\u{012A}] |
    [\u{012C}-\u{0130}] |
    [\u{0134}-\u{0137}] |
    [\u{0139}-\u{013E}] |
    \u{0143} |
    [\u{0145}-\u{0147}] |
    \u{014C} |
    [\u{014E}-\u{0151}] |
    [\u{0154}-\u{0165}] |
    [\u{0168}-\u{016A}] |
    [\u{016C}-\u{01CD}] |
    \u{01CF} |
    \u{01D1} |
    \u{01D3} |
    \u{01D5} |
    \u{01D7} |
    \u{01D9} |
    \u{01DB} |
    [\u{01DD}-\u{0250}] |
    [\u{0252}-\u{0260}] |
    [\u{0262}-\u{02C3}] |
    [\u{02C5}-\u{02C6}] |
    \u{02C8} |
    \u{02CC} |
    [\u{02CE}-\u{02CF}] |
    [\u{02D1}-\u{02D7}] |
    \u{02DC} |
    \u{02DE} |
    [\u{02E0}-\u{02FF}] |
    [\u{0370}-\u{0377}] |
    [\u{037A}-\u{037F}] |
    [\u{0384}-\u{038A}] |
    \u{038C} |
    [\u{038E}-\u{0390}] |
    [\u{03AA}-\u{03B0}] |
    \u{03C2} |
    [\u{03CA}-\u{0400}] |
    [\u{0402}-\u{040F}] |
    \u{0450} |
    [\u{0452}-\u{052F}] |
    [\u{0531}-\u{0556}] |
    [\u{0559}-\u{058A}] |
    [\u{058D}-\u{058F}] |
    [\u{0591}-\u{05C7}] |
    [\u{05D0}-\u{05EA}] |
    [\u{05EF}-\u{05F4}] |
    [\u{0600}-\u{061C}] |
    [\u{061E}-\u{070D}] |
    [\u{070F}-\u{074A}] |
    [\u{074D}-\u{07B1}] |
    [\u{07C0}-\u{07FA}] |
    [\u{07FD}-\u{082D}] |
    [\u{0830}-\u{083E}] |
    [\u{0840}-\u{085B}] |
    \u{085E} |
    [\u{0860}-\u{086A}] |
    [\u{08A0}-\u{08B4}] |
    [\u{08B6}-\u{08BD}] |
    [\u{08D3}-\u{0983}] |
    [\u{0985}-\u{098C}] |
    [\u{098F}-\u{0990}] |
    [\u{0993}-\u{09A8}] |
    [\u{09AA}-\u{09B0}] |
    \u{09B2} |
    [\u{09B6}-\u{09B9}] |
    [\u{09BC}-\u{09C4}] |
    [\u{09C7}-\u{09C8}] |
    [\u{09CB}-\u{09CE}] |
    \u{09D7} |
    [\u{09DC}-\u{09DD}] |
    [\u{09DF}-\u{09E3}] |
    [\u{09E6}-\u{09FE}] |
    [\u{0A01}-\u{0A03}] |
    [\u{0A05}-\u{0A0A}] |
    [\u{0A0F}-\u{0A10}] |
    [\u{0A13}-\u{0A28}] |
    [\u{0A2A}-\u{0A30}] |
    [\u{0A32}-\u{0A33}] |
    [\u{0A35}-\u{0A36}] |
    [\u{0A38}-\u{0A39}] |
    \u{0A3C} |
    [\u{0A3E}-\u{0A42}] |
    [\u{0A47}-\u{0A48}] |
    [\u{0A4B}-\u{0A4D}] |
    \u{0A51} |
    [\u{0A59}-\u{0A5C}] |
    \u{0A5E} |
    [\u{0A66}-\u{0A76}] |
    [\u{0A81}-\u{0A83}] |
    [\u{0A85}-\u{0A8D}] |
    [\u{0A8F}-\u{0A91}] |
    [\u{0A93}-\u{0AA8}] |
    [\u{0AAA}-\u{0AB0}] |
    [\u{0AB2}-\u{0AB3}] |
    [\u{0AB5}-\u{0AB9}] |
    [\u{0ABC}-\u{0AC5}] |
    [\u{0AC7}-\u{0AC9}] |
    [\u{0ACB}-\u{0ACD}] |
    \u{0AD0} |
    [\u{0AE0}-\u{0AE3}] |
    [\u{0AE6}-\u{0AF1}] |
    [\u{0AF9}-\u{0AFF}] |
    [\u{0B01}-\u{0B03}] |
    [\u{0B05}-\u{0B0C}] |
    [\u{0B0F}-\u{0B10}] |
    [\u{0B13}-\u{0B28}] |
    [\u{0B2A}-\u{0B30}] |
    [\u{0B32}-\u{0B33}] |
    [\u{0B35}-\u{0B39}] |
    [\u{0B3C}-\u{0B44}] |
    [\u{0B47}-\u{0B48}] |
    [\u{0B4B}-\u{0B4D}] |
    [\u{0B56}-\u{0B57}] |
    [\u{0B5C}-\u{0B5D}] |
    [\u{0B5F}-\u{0B63}] |
    [\u{0B66}-\u{0B77}] |
    [\u{0B82}-\u{0B83}] |
    [\u{0B85}-\u{0B8A}] |
    [\u{0B8E}-\u{0B90}] |
    [\u{0B92}-\u{0B95}] |
    [\u{0B99}-\u{0B9A}] |
    \u{0B9C} |
    [\u{0B9E}-\u{0B9F}] |
    [\u{0BA3}-\u{0BA4}] |
    [\u{0BA8}-\u{0BAA}] |
    [\u{0BAE}-\u{0BB9}] |
    [\u{0BBE}-\u{0BC2}] |
    [\u{0BC6}-\u{0BC8}] |
    [\u{0BCA}-\u{0BCD}] |
    \u{0BD0} |
    \u{0BD7} |
    [\u{0BE6}-\u{0BFA}] |
    [\u{0C00}-\u{0C0C}] |
    [\u{0C0E}-\u{0C10}] |
    [\u{0C12}-\u{0C28}] |
    [\u{0C2A}-\u{0C39}] |
    [\u{0C3D}-\u{0C44}] |
    [\u{0C46}-\u{0C48}] |
    [\u{0C4A}-\u{0C4D}] |
    [\u{0C55}-\u{0C56}] |
    [\u{0C58}-\u{0C5A}] |
    [\u{0C60}-\u{0C63}] |
    [\u{0C66}-\u{0C6F}] |
    [\u{0C77}-\u{0C8C}] |
    [\u{0C8E}-\u{0C90}] |
    [\u{0C92}-\u{0CA8}] |
    [\u{0CAA}-\u{0CB3}] |
    [\u{0CB5}-\u{0CB9}] |
    [\u{0CBC}-\u{0CC4}] |
    [\u{0CC6}-\u{0CC8}] |
    [\u{0CCA}-\u{0CCD}] |
    [\u{0CD5}-\u{0CD6}] |
    \u{0CDE} |
    [\u{0CE0}-\u{0CE3}] |
    [\u{0CE6}-\u{0CEF}] |
    [\u{0CF1}-\u{0CF2}] |
    [\u{0D00}-\u{0D03}] |
    [\u{0D05}-\u{0D0C}] |
    [\u{0D0E}-\u{0D10}] |
    [\u{0D12}-\u{0D44}] |
    [\u{0D46}-\u{0D48}] |
    [\u{0D4A}-\u{0D4F}] |
    [\u{0D54}-\u{0D63}] |
    [\u{0D66}-\u{0D7F}] |
    [\u{0D82}-\u{0D83}] |
    [\u{0D85}-\u{0D96}] |
    [\u{0D9A}-\u{0DB1}] |
    [\u{0DB3}-\u{0DBB}] |
    \u{0DBD} |
    [\u{0DC0}-\u{0DC6}] |
    \u{0DCA} |
    [\u{0DCF}-\u{0DD4}] |
    \u{0DD6} |
    [\u{0DD8}-\u{0DDF}] |
    [\u{0DE6}-\u{0DEF}] |
    [\u{0DF2}-\u{0DF4}] |
    [\u{0E01}-\u{0E3A}] |
    [\u{0E3F}-\u{0E5B}] |
    [\u{0E81}-\u{0E82}] |
    \u{0E84} |
    [\u{0E86}-\u{0E8A}] |
    [\u{0E8C}-\u{0EA3}] |
    \u{0EA5} |
    [\u{0EA7}-\u{0EBD}] |
    [\u{0EC0}-\u{0EC4}] |
    \u{0EC6} |
    [\u{0EC8}-\u{0ECD}] |
    [\u{0ED0}-\u{0ED9}] |
    [\u{0EDC}-\u{0EDF}] |
    [\u{0F00}-\u{0F47}] |
    [\u{0F49}-\u{0F6C}] |
    [\u{0F71}-\u{0F97}] |
    [\u{0F99}-\u{0FBC}] |
    [\u{0FBE}-\u{0FCC}] |
    [\u{0FCE}-\u{0FDA}] |
    [\u{1000}-\u{10C5}] |
    \u{10C7} |
    \u{10CD} |
    [\u{10D0}-\u{10FF}] |
    [\u{1160}-\u{1248}] |
    [\u{124A}-\u{124D}] |
    [\u{1250}-\u{1256}] |
    \u{1258} |
    [\u{125A}-\u{125D}] |
    [\u{1260}-\u{1288}] |
    [\u{128A}-\u{128D}] |
    [\u{1290}-\u{12B0}] |
    [\u{12B2}-\u{12B5}] |
    [\u{12B8}-\u{12BE}] |
    \u{12C0} |
    [\u{12C2}-\u{12C5}] |
    [\u{12C8}-\u{12D6}] |
    [\u{12D8}-\u{1310}] |
    [\u{1312}-\u{1315}] |
    [\u{1318}-\u{135A}] |
    [\u{135D}-\u{137C}] |
    [\u{1380}-\u{1399}] |
    [\u{13A0}-\u{13F5}] |
    [\u{13F8}-\u{13FD}] |
    [\u{1400}-\u{169C}] |
    [\u{16A0}-\u{16F8}] |
    [\u{1700}-\u{170C}] |
    [\u{170E}-\u{1714}] |
    [\u{1720}-\u{1736}] |
    [\u{1740}-\u{1753}] |
    [\u{1760}-\u{176C}] |
    [\u{176E}-\u{1770}] |
    [\u{1772}-\u{1773}] |
    [\u{1780}-\u{17DD}] |
    [\u{17E0}-\u{17E9}] |
    [\u{17F0}-\u{17F9}] |
    [\u{1800}-\u{180E}] |
    [\u{1810}-\u{1819}] |
    [\u{1820}-\u{1878}] |
    [\u{1880}-\u{18AA}] |
    [\u{18B0}-\u{18F5}] |
    [\u{1900}-\u{191E}] |
    [\u{1920}-\u{192B}] |
    [\u{1930}-\u{193B}] |
    \u{1940} |
    [\u{1944}-\u{196D}] |
    [\u{1970}-\u{1974}] |
    [\u{1980}-\u{19AB}] |
    [\u{19B0}-\u{19C9}] |
    [\u{19D0}-\u{19DA}] |
    [\u{19DE}-\u{1A1B}] |
    [\u{1A1E}-\u{1A5E}] |
    [\u{1A60}-\u{1A7C}] |
    [\u{1A7F}-\u{1A89}] |
    [\u{1A90}-\u{1A99}] |
    [\u{1AA0}-\u{1AAD}] |
    [\u{1AB0}-\u{1ABE}] |
    [\u{1B00}-\u{1B4B}] |
    [\u{1B50}-\u{1B7C}] |
    [\u{1B80}-\u{1BF3}] |
    [\u{1BFC}-\u{1C37}] |
    [\u{1C3B}-\u{1C49}] |
    [\u{1C4D}-\u{1C88}] |
    [\u{1C90}-\u{1CBA}] |
    [\u{1CBD}-\u{1CC7}] |
    [\u{1CD0}-\u{1CFA}] |
    [\u{1D00}-\u{1DF9}] |
    [\u{1DFB}-\u{1F15}] |
    [\u{1F18}-\u{1F1D}] |
    [\u{1F20}-\u{1F45}] |
    [\u{1F48}-\u{1F4D}] |
    [\u{1F50}-\u{1F57}] |
    \u{1F59} |
    \u{1F5B} |
    \u{1F5D} |
    [\u{1F5F}-\u{1F7D}] |
    [\u{1F80}-\u{1FB4}] |
    [\u{1FB6}-\u{1FC4}] |
    [\u{1FC6}-\u{1FD3}] |
    [\u{1FD6}-\u{1FDB}] |
    [\u{1FDD}-\u{1FEF}] |
    [\u{1FF2}-\u{1FF4}] |
    [\u{1FF6}-\u{1FFE}] |
    [\u{2000}-\u{200F}] |
    [\u{2011}-\u{2012}] |
    \u{2017} |
    [\u{201A}-\u{201B}] |
    [\u{201E}-\u{201F}] |
    \u{2023} |
    [\u{2028}-\u{202F}] |
    \u{2031} |
    \u{2034} |
    [\u{2036}-\u{203A}] |
    [\u{203C}-\u{203D}] |
    [\u{203F}-\u{2064}] |
    [\u{2066}-\u{2071}] |
    [\u{2075}-\u{207E}] |
    \u{2080} |
    [\u{2085}-\u{208E}] |
    [\u{2090}-\u{209C}] |
    [\u{20A0}-\u{20A8}] |
    [\u{20AA}-\u{20AB}] |
    [\u{20AD}-\u{20BF}] |
    [\u{20D0}-\u{20F0}] |
    [\u{2100}-\u{2102}] |
    \u{2104} |
    [\u{2106}-\u{2108}] |
    [\u{210A}-\u{2112}] |
    [\u{2114}-\u{2115}] |
    [\u{2117}-\u{2120}] |
    [\u{2123}-\u{2125}] |
    [\u{2127}-\u{212A}] |
    [\u{212C}-\u{2152}] |
    [\u{2155}-\u{215A}] |
    \u{215F} |
    [\u{216C}-\u{216F}] |
    [\u{217A}-\u{2188}] |
    [\u{218A}-\u{218B}] |
    [\u{219A}-\u{21B7}] |
    [\u{21BA}-\u{21D1}] |
    \u{21D3} |
    [\u{21D5}-\u{21E6}] |
    [\u{21E8}-\u{21FF}] |
    \u{2201} |
    [\u{2204}-\u{2206}] |
    [\u{2209}-\u{220A}] |
    [\u{220C}-\u{220E}] |
    \u{2210} |
    [\u{2212}-\u{2214}] |
    [\u{2216}-\u{2219}] |
    [\u{221B}-\u{221C}] |
    [\u{2221}-\u{2222}] |
    \u{2224} |
    \u{2226} |
    \u{222D} |
    [\u{222F}-\u{2233}] |
    [\u{2238}-\u{223B}] |
    [\u{223E}-\u{2247}] |
    [\u{2249}-\u{224B}] |
    [\u{224D}-\u{2251}] |
    [\u{2253}-\u{225F}] |
    [\u{2262}-\u{2263}] |
    [\u{2268}-\u{2269}] |
    [\u{226C}-\u{226D}] |
    [\u{2270}-\u{2281}] |
    [\u{2284}-\u{2285}] |
    [\u{2288}-\u{2294}] |
    [\u{2296}-\u{2298}] |
    [\u{229A}-\u{22A4}] |
    [\u{22A6}-\u{22BE}] |
    [\u{22C0}-\u{2311}] |
    [\u{2313}-\u{2319}] |
    [\u{231C}-\u{2328}] |
    [\u{232B}-\u{23E8}] |
    [\u{23ED}-\u{23EF}] |
    [\u{23F1}-\u{23F2}] |
    [\u{23F4}-\u{2426}] |
    [\u{2440}-\u{244A}] |
    \u{24EA} |
    [\u{254C}-\u{254F}] |
    [\u{2574}-\u{257F}] |
    [\u{2590}-\u{2591}] |
    [\u{2596}-\u{259F}] |
    \u{25A2} |
    [\u{25AA}-\u{25B1}] |
    [\u{25B4}-\u{25B5}] |
    [\u{25B8}-\u{25BB}] |
    [\u{25BE}-\u{25BF}] |
    [\u{25C2}-\u{25C5}] |
    [\u{25C9}-\u{25CA}] |
    [\u{25CC}-\u{25CD}] |
    [\u{25D2}-\u{25E1}] |
    [\u{25E6}-\u{25EE}] |
    [\u{25F0}-\u{25FC}] |
    [\u{25FF}-\u{2604}] |
    [\u{2607}-\u{2608}] |
    [\u{260A}-\u{260D}] |
    [\u{2610}-\u{2613}] |
    [\u{2616}-\u{261B}] |
    \u{261D} |
    [\u{261F}-\u{263F}] |
    \u{2641} |
    [\u{2643}-\u{2647}] |
    [\u{2654}-\u{265F}] |
    \u{2662} |
    \u{2666} |
    \u{266B} |
    \u{266E} |
    [\u{2670}-\u{267E}] |
    [\u{2680}-\u{2692}] |
    [\u{2694}-\u{269D}] |
    \u{26A0} |
    [\u{26A2}-\u{26A9}] |
    [\u{26AC}-\u{26BC}] |
    [\u{26C0}-\u{26C3}] |
    \u{26E2} |
    [\u{26E4}-\u{26E7}] |
    [\u{2700}-\u{2704}] |
    [\u{2706}-\u{2709}] |
    [\u{270C}-\u{2727}] |
    [\u{2729}-\u{273C}] |
    [\u{273E}-\u{274B}] |
    \u{274D} |
    [\u{274F}-\u{2752}] |
    \u{2756} |
    [\u{2758}-\u{2775}] |
    [\u{2780}-\u{2794}] |
    [\u{2798}-\u{27AF}] |
    [\u{27B1}-\u{27BE}] |
    [\u{27C0}-\u{27E5}] |
    [\u{27EE}-\u{2984}] |
    [\u{2987}-\u{2B1A}] |
    [\u{2B1D}-\u{2B4F}] |
    [\u{2B51}-\u{2B54}] |
    [\u{2B5A}-\u{2B73}] |
    [\u{2B76}-\u{2B95}] |
    [\u{2B98}-\u{2C2E}] |
    [\u{2C30}-\u{2C5E}] |
    [\u{2C60}-\u{2CF3}] |
    [\u{2CF9}-\u{2D25}] |
    \u{2D27} |
    \u{2D2D} |
    [\u{2D30}-\u{2D67}] |
    [\u{2D6F}-\u{2D70}] |
    [\u{2D7F}-\u{2D96}] |
    [\u{2DA0}-\u{2DA6}] |
    [\u{2DA8}-\u{2DAE}] |
    [\u{2DB0}-\u{2DB6}] |
    [\u{2DB8}-\u{2DBE}] |
    [\u{2DC0}-\u{2DC6}] |
    [\u{2DC8}-\u{2DCE}] |
    [\u{2DD0}-\u{2DD6}] |
    [\u{2DD8}-\u{2DDE}] |
    [\u{2DE0}-\u{2E4F}] |
    \u{303F} |
    [\u{4DC0}-\u{4DFF}] |
    [\u{A4D0}-\u{A62B}] |
    [\u{A640}-\u{A6F7}] |
    [\u{A700}-\u{A7BF}] |
    [\u{A7C2}-\u{A7C6}] |
    [\u{A7F7}-\u{A82B}] |
    [\u{A830}-\u{A839}] |
    [\u{A840}-\u{A877}] |
    [\u{A880}-\u{A8C5}] |
    [\u{A8CE}-\u{A8D9}] |
    [\u{A8E0}-\u{A953}] |
    \u{A95F} |
    [\u{A980}-\u{A9CD}] |
    [\u{A9CF}-\u{A9D9}] |
    [\u{A9DE}-\u{A9FE}] |
    [\u{AA00}-\u{AA36}] |
    [\u{AA40}-\u{AA4D}] |
    [\u{AA50}-\u{AA59}] |
    [\u{AA5C}-\u{AAC2}] |
    [\u{AADB}-\u{AAF6}] |
    [\u{AB01}-\u{AB06}] |
    [\u{AB09}-\u{AB0E}] |
    [\u{AB11}-\u{AB16}] |
    [\u{AB20}-\u{AB26}] |
    [\u{AB28}-\u{AB2E}] |
    [\u{AB30}-\u{AB67}] |
    [\u{AB70}-\u{ABED}] |
    [\u{ABF0}-\u{ABF9}] |
    [\u{D7B0}-\u{D7C6}] |
    [\u{D7CB}-\u{D7FB}] |
    [\u{FB00}-\u{FB06}] |
    [\u{FB13}-\u{FB17}] |
    [\u{FB1D}-\u{FB36}] |
    [\u{FB38}-\u{FB3C}] |
    \u{FB3E} |
    [\u{FB40}-\u{FB41}] |
    [\u{FB43}-\u{FB44}] |
    [\u{FB46}-\u{FBC1}] |
    [\u{FBD3}-\u{FD3F}] |
    [\u{FD50}-\u{FD8F}] |
    [\u{FD92}-\u{FDC7}] |
    [\u{FDF0}-\u{FDFD}] |
    [\u{FE20}-\u{FE2F}] |
    [\u{FE70}-\u{FE74}] |
    [\u{FE76}-\u{FEFC}] |
    \u{FEFF} |
    [\u{FFF9}-\u{FFFC}] |
    [\u{10000}-\u{1000B}] |
    [\u{1000D}-\u{10026}] |
    [\u{10028}-\u{1003A}] |
    [\u{1003C}-\u{1003D}] |
    [\u{1003F}-\u{1004D}] |
    [\u{10050}-\u{1005D}] |
    [\u{10080}-\u{100FA}] |
    [\u{10100}-\u{10102}] |
    [\u{10107}-\u{10133}] |
    [\u{10137}-\u{1018E}] |
    [\u{10190}-\u{1019B}] |
    \u{101A0} |
    [\u{101D0}-\u{101FD}] |
    [\u{10280}-\u{1029C}] |
    [\u{102A0}-\u{102D0}] |
    [\u{102E0}-\u{102FB}] |
    [\u{10300}-\u{10323}] |
    [\u{1032D}-\u{1034A}] |
    [\u{10350}-\u{1037A}] |
    [\u{10380}-\u{1039D}] |
    [\u{1039F}-\u{103C3}] |
    [\u{103C8}-\u{103D5}] |
    [\u{10400}-\u{1049D}] |
    [\u{104A0}-\u{104A9}] |
    [\u{104B0}-\u{104D3}] |
    [\u{104D8}-\u{104FB}] |
    [\u{10500}-\u{10527}] |
    [\u{10530}-\u{10563}] |
    \u{1056F} |
    [\u{10600}-\u{10736}] |
    [\u{10740}-\u{10755}] |
    [\u{10760}-\u{10767}] |
    [\u{10800}-\u{10805}] |
    \u{10808} |
    [\u{1080A}-\u{10835}] |
    [\u{10837}-\u{10838}] |
    \u{1083C} |
    [\u{1083F}-\u{10855}] |
    [\u{10857}-\u{1089E}] |
    [\u{108A7}-\u{108AF}] |
    [\u{108E0}-\u{108F2}] |
    [\u{108F4}-\u{108F5}] |
    [\u{108FB}-\u{1091B}] |
    [\u{1091F}-\u{10939}] |
    \u{1093F} |
    [\u{10980}-\u{109B7}] |
    [\u{109BC}-\u{109CF}] |
    [\u{109D2}-\u{10A03}] |
    [\u{10A05}-\u{10A06}] |
    [\u{10A0C}-\u{10A13}] |
    [\u{10A15}-\u{10A17}] |
    [\u{10A19}-\u{10A35}] |
    [\u{10A38}-\u{10A3A}] |
    [\u{10A3F}-\u{10A48}] |
    [\u{10A50}-\u{10A58}] |
    [\u{10A60}-\u{10A9F}] |
    [\u{10AC0}-\u{10AE6}] |
    [\u{10AEB}-\u{10AF6}] |
    [\u{10B00}-\u{10B35}] |
    [\u{10B39}-\u{10B55}] |
    [\u{10B58}-\u{10B72}] |
    [\u{10B78}-\u{10B91}] |
    [\u{10B99}-\u{10B9C}] |
    [\u{10BA9}-\u{10BAF}] |
    [\u{10C00}-\u{10C48}] |
    [\u{10C80}-\u{10CB2}] |
    [\u{10CC0}-\u{10CF2}] |
    [\u{10CFA}-\u{10D27}] |
    [\u{10D30}-\u{10D39}] |
    [\u{10E60}-\u{10E7E}] |
    [\u{10F00}-\u{10F27}] |
    [\u{10F30}-\u{10F59}] |
    [\u{10FE0}-\u{10FF6}] |
    [\u{11000}-\u{1104D}] |
    [\u{11052}-\u{1106F}] |
    [\u{1107F}-\u{110C1}] |
    \u{110CD} |
    [\u{110D0}-\u{110E8}] |
    [\u{110F0}-\u{110F9}] |
    [\u{11100}-\u{11134}] |
    [\u{11136}-\u{11146}] |
    [\u{11150}-\u{11176}] |
    [\u{11180}-\u{111CD}] |
    [\u{111D0}-\u{111DF}] |
    [\u{111E1}-\u{111F4}] |
    [\u{11200}-\u{11211}] |
    [\u{11213}-\u{1123E}] |
    [\u{11280}-\u{11286}] |
    \u{11288} |
    [\u{1128A}-\u{1128D}] |
    [\u{1128F}-\u{1129D}] |
    [\u{1129F}-\u{112A9}] |
    [\u{112B0}-\u{112EA}] |
    [\u{112F0}-\u{112F9}] |
    [\u{11300}-\u{11303}] |
    [\u{11305}-\u{1130C}] |
    [\u{1130F}-\u{11310}] |
    [\u{11313}-\u{11328}] |
    [\u{1132A}-\u{11330}] |
    [\u{11332}-\u{11333}] |
    [\u{11335}-\u{11339}] |
    [\u{1133B}-\u{11344}] |
    [\u{11347}-\u{11348}] |
    [\u{1134B}-\u{1134D}] |
    \u{11350} |
    \u{11357} |
    [\u{1135D}-\u{11363}] |
    [\u{11366}-\u{1136C}] |
    [\u{11370}-\u{11374}] |
    [\u{11400}-\u{11459}] |
    \u{1145B} |
    [\u{1145D}-\u{1145F}] |
    [\u{11480}-\u{114C7}] |
    [\u{114D0}-\u{114D9}] |
    [\u{11580}-\u{115B5}] |
    [\u{115B8}-\u{115DD}] |
    [\u{11600}-\u{11644}] |
    [\u{11650}-\u{11659}] |
    [\u{11660}-\u{1166C}] |
    [\u{11680}-\u{116B8}] |
    [\u{116C0}-\u{116C9}] |
    [\u{11700}-\u{1171A}] |
    [\u{1171D}-\u{1172B}] |
    [\u{11730}-\u{1173F}] |
    [\u{11800}-\u{1183B}] |
    [\u{118A0}-\u{118F2}] |
    \u{118FF} |
    [\u{119A0}-\u{119A7}] |
    [\u{119AA}-\u{119D7}] |
    [\u{119DA}-\u{119E4}] |
    [\u{11A00}-\u{11A47}] |
    [\u{11A50}-\u{11AA2}] |
    [\u{11AC0}-\u{11AF8}] |
    [\u{11C00}-\u{11C08}] |
    [\u{11C0A}-\u{11C36}] |
    [\u{11C38}-\u{11C45}] |
    [\u{11C50}-\u{11C6C}] |
    [\u{11C70}-\u{11C8F}] |
    [\u{11C92}-\u{11CA7}] |
    [\u{11CA9}-\u{11CB6}] |
    [\u{11D00}-\u{11D06}] |
    [\u{11D08}-\u{11D09}] |
    [\u{11D0B}-\u{11D36}] |
    \u{11D3A} |
    [\u{11D3C}-\u{11D3D}] |
    [\u{11D3F}-\u{11D47}] |
    [\u{11D50}-\u{11D59}] |
    [\u{11D60}-\u{11D65}] |
    [\u{11D67}-\u{11D68}] |
    [\u{11D6A}-\u{11D8E}] |
    [\u{11D90}-\u{11D91}] |
    [\u{11D93}-\u{11D98}] |
    [\u{11DA0}-\u{11DA9}] |
    [\u{11EE0}-\u{11EF8}] |
    [\u{11FC0}-\u{11FF1}] |
    [\u{11FFF}-\u{12399}] |
    [\u{12400}-\u{1246E}] |
    [\u{12470}-\u{12474}] |
    [\u{12480}-\u{12543}] |
    [\u{13000}-\u{1342E}] |
    [\u{13430}-\u{13438}] |
    [\u{14400}-\u{14646}] |
    [\u{16800}-\u{16A38}] |
    [\u{16A40}-\u{16A5E}] |
    [\u{16A60}-\u{16A69}] |
    [\u{16A6E}-\u{16A6F}] |
    [\u{16AD0}-\u{16AED}] |
    [\u{16AF0}-\u{16AF5}] |
    [\u{16B00}-\u{16B45}] |
    [\u{16B50}-\u{16B59}] |
    [\u{16B5B}-\u{16B61}] |
    [\u{16B63}-\u{16B77}] |
    [\u{16B7D}-\u{16B8F}] |
    [\u{16E40}-\u{16E9A}] |
    [\u{16F00}-\u{16F4A}] |
    [\u{16F4F}-\u{16F87}] |
    [\u{16F8F}-\u{16F9F}] |
    [\u{1BC00}-\u{1BC6A}] |
    [\u{1BC70}-\u{1BC7C}] |
    [\u{1BC80}-\u{1BC88}] |
    [\u{1BC90}-\u{1BC99}] |
    [\u{1BC9C}-\u{1BCA3}] |
    [\u{1D000}-\u{1D0F5}] |
    [\u{1D100}-\u{1D126}] |
    [\u{1D129}-\u{1D1E8}] |
    [\u{1D200}-\u{1D245}] |
    [\u{1D2E0}-\u{1D2F3}] |
    [\u{1D300}-\u{1D356}] |
    [\u{1D360}-\u{1D378}] |
    [\u{1D400}-\u{1D454}] |
    [\u{1D456}-\u{1D49C}] |
    [\u{1D49E}-\u{1D49F}] |
    \u{1D4A2} |
    [\u{1D4A5}-\u{1D4A6}] |
    [\u{1D4A9}-\u{1D4AC}] |
    [\u{1D4AE}-\u{1D4B9}] |
    \u{1D4BB} |
    [\u{1D4BD}-\u{1D4C3}] |
    [\u{1D4C5}-\u{1D505}] |
    [\u{1D507}-\u{1D50A}] |
    [\u{1D50D}-\u{1D514}] |
    [\u{1D516}-\u{1D51C}] |
    [\u{1D51E}-\u{1D539}] |
    [\u{1D53B}-\u{1D53E}] |
    [\u{1D540}-\u{1D544}] |
    \u{1D546} |
    [\u{1D54A}-\u{1D550}] |
    [\u{1D552}-\u{1D6A5}] |
    [\u{1D6A8}-\u{1D7CB}] |
    [\u{1D7CE}-\u{1DA8B}] |
    [\u{1DA9B}-\u{1DA9F}] |
    [\u{1DAA1}-\u{1DAAF}] |
    [\u{1E000}-\u{1E006}] |
    [\u{1E008}-\u{1E018}] |
    [\u{1E01B}-\u{1E021}] |
    [\u{1E023}-\u{1E024}] |
    [\u{1E026}-\u{1E02A}] |
    [\u{1E100}-\u{1E12C}] |
    [\u{1E130}-\u{1E13D}] |
    [\u{1E140}-\u{1E149}] |
    [\u{1E14E}-\u{1E14F}] |
    [\u{1E2C0}-\u{1E2F9}] |
    \u{1E2FF} |
    [\u{1E800}-\u{1E8C4}] |
    [\u{1E8C7}-\u{1E8D6}] |
    [\u{1E900}-\u{1E94B}] |
    [\u{1E950}-\u{1E959}] |
    [\u{1E95E}-\u{1E95F}] |
    [\u{1EC71}-\u{1ECB4}] |
    [\u{1ED01}-\u{1ED3D}] |
    [\u{1EE00}-\u{1EE03}] |
    [\u{1EE05}-\u{1EE1F}] |
    [\u{1EE21}-\u{1EE22}] |
    \u{1EE24} |
    \u{1EE27} |
    [\u{1EE29}-\u{1EE32}] |
    [\u{1EE34}-\u{1EE37}] |
    \u{1EE39} |
    \u{1EE3B} |
    \u{1EE42} |
    \u{1EE47} |
    \u{1EE49} |
    \u{1EE4B} |
    [\u{1EE4D}-\u{1EE4F}] |
    [\u{1EE51}-\u{1EE52}] |
    \u{1EE54} |
    \u{1EE57} |
    \u{1EE59} |
    \u{1EE5B} |
    \u{1EE5D} |
    \u{1EE5F} |
    [\u{1EE61}-\u{1EE62}] |
    \u{1EE64} |
    [\u{1EE67}-\u{1EE6A}] |
    [\u{1EE6C}-\u{1EE72}] |
    [\u{1EE74}-\u{1EE77}] |
    [\u{1EE79}-\u{1EE7C}] |
    \u{1EE7E} |
    [\u{1EE80}-\u{1EE89}] |
    [\u{1EE8B}-\u{1EE9B}] |
    [\u{1EEA1}-\u{1EEA3}] |
    [\u{1EEA5}-\u{1EEA9}] |
    [\u{1EEAB}-\u{1EEBB}] |
    [\u{1EEF0}-\u{1EEF1}] |
    [\u{1F000}-\u{1F003}] |
    [\u{1F005}-\u{1F02B}] |
    [\u{1F030}-\u{1F093}] |
    [\u{1F0A0}-\u{1F0AE}] |
    [\u{1F0B1}-\u{1F0BF}] |
    [\u{1F0C1}-\u{1F0CE}] |
    [\u{1F0D1}-\u{1F0F5}] |
    [\u{1F10B}-\u{1F10C}] |
    [\u{1F12E}-\u{1F12F}] |
    [\u{1F16A}-\u{1F16C}] |
    [\u{1F1E6}-\u{1F1FF}] |
    [\u{1F321}-\u{1F32C}] |
    \u{1F336} |
    \u{1F37D} |
    [\u{1F394}-\u{1F39F}] |
    [\u{1F3CB}-\u{1F3CE}] |
    [\u{1F3D4}-\u{1F3DF}] |
    [\u{1F3F1}-\u{1F3F3}] |
    [\u{1F3F5}-\u{1F3F7}] |
    \u{1F43F} |
    \u{1F441} |
    [\u{1F4FD}-\u{1F4FE}] |
    [\u{1F53E}-\u{1F54A}] |
    \u{1F54F} |
    [\u{1F568}-\u{1F579}] |
    [\u{1F57B}-\u{1F594}] |
    [\u{1F597}-\u{1F5A3}] |
    [\u{1F5A5}-\u{1F5FA}] |
    [\u{1F650}-\u{1F67F}] |
    [\u{1F6C6}-\u{1F6CB}] |
    [\u{1F6CD}-\u{1F6CF}] |
    [\u{1F6D3}-\u{1F6D4}] |
    [\u{1F6E0}-\u{1F6EA}] |
    [\u{1F6F0}-\u{1F6F3}] |
    [\u{1F700}-\u{1F773}] |
    [\u{1F780}-\u{1F7D8}] |
    [\u{1F800}-\u{1F80B}] |
    [\u{1F810}-\u{1F847}] |
    [\u{1F850}-\u{1F859}] |
    [\u{1F860}-\u{1F887}] |
    [\u{1F890}-\u{1F8AD}] |
    [\u{1F900}-\u{1F90B}] |
    [\u{1FA00}-\u{1FA53}] |
    [\u{1FA60}-\u{1FA6D}] |
    \u{E0001} |
    [\u{E0020}-\u{E007F}]
  )/x
end
PKJH[��b"b"share/ruby/reline/config.rbnu�[���class Reline::Config
  attr_reader :test_mode

  KEYSEQ_PATTERN = /\\(?:C|Control)-[A-Za-z_]|\\(?:M|Meta)-[0-9A-Za-z_]|\\(?:C|Control)-(?:M|Meta)-[A-Za-z_]|\\(?:M|Meta)-(?:C|Control)-[A-Za-z_]|\\e|\\[\\\"\'abdfnrtv]|\\\d{1,3}|\\x\h{1,2}|./

  class InvalidInputrc < RuntimeError
    attr_accessor :file, :lineno
  end

  VARIABLE_NAMES = %w{
    bind-tty-special-chars
    blink-matching-paren
    byte-oriented
    completion-ignore-case
    convert-meta
    disable-completion
    enable-keypad
    expand-tilde
    history-preserve-point
    history-size
    horizontal-scroll-mode
    input-meta
    keyseq-timeout
    mark-directories
    mark-modified-lines
    mark-symlinked-directories
    match-hidden-files
    meta-flag
    output-meta
    page-completions
    prefer-visible-bell
    print-completions-horizontally
    show-all-if-ambiguous
    show-all-if-unmodified
    visible-stats
    show-mode-in-prompt
    vi-cmd-mode-icon
    vi-ins-mode-icon
    emacs-mode-string
  }
  VARIABLE_NAME_SYMBOLS = VARIABLE_NAMES.map { |v| :"#{v.tr(?-, ?_)}" }
  VARIABLE_NAME_SYMBOLS.each do |v|
    attr_accessor v
  end

  def initialize
    @additional_key_bindings = {} # from inputrc
    @default_key_bindings = {} # environment-dependent
    @skip_section = nil
    @if_stack = nil
    @editing_mode_label = :emacs
    @keymap_label = :emacs
    @key_actors = {}
    @key_actors[:emacs] = Reline::KeyActor::Emacs.new
    @key_actors[:vi_insert] = Reline::KeyActor::ViInsert.new
    @key_actors[:vi_command] = Reline::KeyActor::ViCommand.new
    @vi_cmd_mode_icon = '(cmd)'
    @vi_ins_mode_icon = '(ins)'
    @emacs_mode_string = '@'
    # https://tiswww.case.edu/php/chet/readline/readline.html#IDX25
    @history_size = -1 # unlimited
    @keyseq_timeout = 500
    @test_mode = false
  end

  def reset
    if editing_mode_is?(:vi_command)
      @editing_mode_label = :vi_insert
    end
    @additional_key_bindings = {}
    @default_key_bindings = {}
  end

  def editing_mode
    @key_actors[@editing_mode_label]
  end

  def editing_mode=(val)
    @editing_mode_label = val
  end

  def editing_mode_is?(*val)
    (val.respond_to?(:any?) ? val : [val]).any?(@editing_mode_label)
  end

  def keymap
    @key_actors[@keymap_label]
  end

  def inputrc_path
    case ENV['INPUTRC']
    when nil, ''
    else
      return File.expand_path(ENV['INPUTRC'])
    end

    # In the XDG Specification, if ~/.config/readline/inputrc exists, then
    # ~/.inputrc should not be read, but for compatibility with GNU Readline,
    # if ~/.inputrc exists, then it is given priority.
    home_rc_path = File.expand_path('~/.inputrc')
    return home_rc_path if File.exist?(home_rc_path)

    case path = ENV['XDG_CONFIG_HOME']
    when nil, ''
    else
      path = File.join(path, 'readline/inputrc')
      return path if File.exist?(path) and path == File.expand_path(path)
    end

    path = File.expand_path('~/.config/readline/inputrc')
    return path if File.exist?(path)

    return home_rc_path
  end

  def read(file = nil)
    file ||= inputrc_path
    begin
      if file.respond_to?(:readlines)
        lines = file.readlines
      else
        lines = File.readlines(file)
      end
    rescue Errno::ENOENT
      return nil
    end

    read_lines(lines, file)
    self
  rescue InvalidInputrc => e
    warn e.message
    nil
  end

  def key_bindings
    # override @default_key_bindings with @additional_key_bindings
    @default_key_bindings.merge(@additional_key_bindings)
  end

  def add_default_key_binding(keystroke, target)
    @default_key_bindings[keystroke] = target
  end

  def reset_default_key_bindings
    @default_key_bindings = {}
  end

  def read_lines(lines, file = nil)
    conditions = [@skip_section, @if_stack]
    @skip_section = nil
    @if_stack = []

    lines.each_with_index do |line, no|
      next if line.match(/\A\s*#/)

      no += 1

      line = line.chomp.lstrip
      if line.start_with?('$')
        handle_directive(line[1..-1], file, no)
        next
      end

      next if @skip_section

      case line
      when /^set +([^ ]+) +([^ ]+)/i
        var, value = $1.downcase, $2
        bind_variable(var, value)
        next
      when /\s*("#{KEYSEQ_PATTERN}+")\s*:\s*(.*)\s*$/o
        key, func_name = $1, $2
        keystroke, func = bind_key(key, func_name)
        next unless keystroke
        @additional_key_bindings[keystroke] = func
      end
    end
    unless @if_stack.empty?
      raise InvalidInputrc, "#{file}:#{@if_stack.last[1]}: unclosed if"
    end
  ensure
    @skip_section, @if_stack = conditions
  end

  def handle_directive(directive, file, no)
    directive, args = directive.split(' ')
    case directive
    when 'if'
      condition = false
      case args
      when 'mode'
      when 'term'
      when 'version'
      else # application name
        condition = true if args == 'Ruby'
        condition = true if args == 'Reline'
      end
      @if_stack << [file, no, @skip_section]
      @skip_section = !condition
    when 'else'
      if @if_stack.empty?
        raise InvalidInputrc, "#{file}:#{no}: unmatched else"
      end
      @skip_section = !@skip_section
    when 'endif'
      if @if_stack.empty?
        raise InvalidInputrc, "#{file}:#{no}: unmatched endif"
      end
      @skip_section = @if_stack.pop
    when 'include'
      read(args)
    end
  end

  def bind_variable(name, value)
    case name
    when 'history-size'
      begin
        @history_size = Integer(value)
      rescue ArgumentError
        @history_size = 500
      end
    when 'bell-style'
      @bell_style =
        case value
        when 'none', 'off'
          :none
        when 'audible', 'on'
          :audible
        when 'visible'
          :visible
        else
          :audible
        end
    when 'comment-begin'
      @comment_begin = value.dup
    when 'completion-query-items'
      @completion_query_items = value.to_i
    when 'isearch-terminators'
      @isearch_terminators = instance_eval(value)
    when 'editing-mode'
      case value
      when 'emacs'
        @editing_mode_label = :emacs
        @keymap_label = :emacs
      when 'vi'
        @editing_mode_label = :vi_insert
        @keymap_label = :vi_insert
      end
    when 'keymap'
      case value
      when 'emacs', 'emacs-standard', 'emacs-meta', 'emacs-ctlx'
        @keymap_label = :emacs
      when 'vi', 'vi-move', 'vi-command'
        @keymap_label = :vi_command
      when 'vi-insert'
        @keymap_label = :vi_insert
      end
    when 'keyseq-timeout'
      @keyseq_timeout = value.to_i
    when 'show-mode-in-prompt'
      case value
      when 'off'
        @show_mode_in_prompt = false
      when 'on'
        @show_mode_in_prompt = true
      else
        @show_mode_in_prompt = false
      end
    when 'vi-cmd-mode-string'
      @vi_cmd_mode_icon = retrieve_string(value)
    when 'vi-ins-mode-string'
      @vi_ins_mode_icon = retrieve_string(value)
    when 'emacs-mode-string'
      @emacs_mode_string = retrieve_string(value)
    when *VARIABLE_NAMES then
      variable_name = :"@#{name.tr(?-, ?_)}"
      instance_variable_set(variable_name, value.nil? || value == '1' || value == 'on')
    end
  end

  def retrieve_string(str)
    if str =~ /\A"(.*)"\z/
      parse_keyseq($1).map(&:chr).join
    else
      parse_keyseq(str).map(&:chr).join
    end
  end

  def bind_key(key, func_name)
    if key =~ /\A"(.*)"\z/
      keyseq = parse_keyseq($1)
    else
      keyseq = nil
    end
    if func_name =~ /"(.*)"/
      func = parse_keyseq($1)
    else
      func = func_name.tr(?-, ?_).to_sym # It must be macro.
    end
    [keyseq, func]
  end

  def key_notation_to_code(notation)
    case notation
    when /\\(?:C|Control)-([A-Za-z_])/
      (1 + $1.downcase.ord - ?a.ord)
    when /\\(?:M|Meta)-([0-9A-Za-z_])/
      modified_key = $1
      case $1
      when /[0-9]/
        ?\M-0.bytes.first + (modified_key.ord - ?0.ord)
      when /[A-Z]/
        ?\M-A.bytes.first + (modified_key.ord - ?A.ord)
      when /[a-z]/
        ?\M-a.bytes.first + (modified_key.ord - ?a.ord)
      end
    when /\\(?:C|Control)-(?:M|Meta)-[A-Za-z_]/, /\\(?:M|Meta)-(?:C|Control)-[A-Za-z_]/
    # 129 M-^A
    when /\\(\d{1,3})/ then $1.to_i(8) # octal
    when /\\x(\h{1,2})/ then $1.to_i(16) # hexadecimal
    when "\\e" then ?\e.ord
    when "\\\\" then ?\\.ord
    when "\\\"" then ?".ord
    when "\\'" then ?'.ord
    when "\\a" then ?\a.ord
    when "\\b" then ?\b.ord
    when "\\d" then ?\d.ord
    when "\\f" then ?\f.ord
    when "\\n" then ?\n.ord
    when "\\r" then ?\r.ord
    when "\\t" then ?\t.ord
    when "\\v" then ?\v.ord
    else notation.ord
    end
  end

  def parse_keyseq(str)
    ret = []
    str.scan(KEYSEQ_PATTERN) do
      ret << key_notation_to_code($&)
    end
    ret
  end
end
PKJH[��Bshare/ruby/reline/general_io.rbnu�[���require 'timeout'

class Reline::GeneralIO
  def self.encoding
    RUBY_PLATFORM =~ /mswin|mingw/ ? Encoding::UTF_8 : Encoding::default_external
  end

  def self.win?
    false
  end

  RAW_KEYSTROKE_CONFIG = {}

  @@buf = []

  def self.input=(val)
    @@input = val
  end

  def self.getc
    unless @@buf.empty?
      return @@buf.shift
    end
    c = nil
    loop do
      result = select([@@input], [], [], 0.1)
      next if result.nil?
      c = @@input.read(1)
      break
    end
    c&.ord
  end

  def self.ungetc(c)
    @@buf.unshift(c)
  end

  def self.get_screen_size
    [1, 1]
  end

  def self.cursor_pos
    Reline::CursorPos.new(1, 1)
  end

  def self.move_cursor_column(val)
  end

  def self.move_cursor_up(val)
  end

  def self.move_cursor_down(val)
  end

  def self.erase_after_cursor
  end

  def self.scroll_down(val)
  end

  def self.clear_screen
  end

  def self.set_screen_size(rows, columns)
  end

  def self.set_winch_handler(&handler)
  end

  def self.prep
  end

  def self.deprep(otio)
  end
end
PKJH[;Ȝ9+J+Jshare/ruby/reline/unicode.rbnu�[���class Reline::Unicode
  EscapedPairs = {
    0x00 => '^@',
    0x01 => '^A', # C-a
    0x02 => '^B',
    0x03 => '^C',
    0x04 => '^D',
    0x05 => '^E',
    0x06 => '^F',
    0x07 => '^G',
    0x08 => '^H', # Backspace
    0x09 => '^I',
    0x0A => '^J',
    0x0B => '^K',
    0x0C => '^L',
    0x0D => '^M', # Enter
    0x0E => '^N',
    0x0F => '^O',
    0x10 => '^P',
    0x11 => '^Q',
    0x12 => '^R',
    0x13 => '^S',
    0x14 => '^T',
    0x15 => '^U',
    0x16 => '^V',
    0x17 => '^W',
    0x18 => '^X',
    0x19 => '^Y',
    0x1A => '^Z', # C-z
    0x1B => '^[', # C-[ C-3
    0x1D => '^]', # C-]
    0x1E => '^^', # C-~ C-6
    0x1F => '^_', # C-_ C-7
    0x7F => '^?', # C-? C-8
  }
  EscapedChars = EscapedPairs.keys.map(&:chr)

  CSI_REGEXP = /\e\[[\d;]*[ABCDEFGHJKSTfminsuhl]/
  OSC_REGEXP = /\e\]\d+(?:;[^;]+)*\a/
  NON_PRINTING_START = "\1"
  NON_PRINTING_END = "\2"
  WIDTH_SCANNER = /\G(?:#{NON_PRINTING_START}|#{NON_PRINTING_END}|#{CSI_REGEXP}|#{OSC_REGEXP}|\X)/

  def self.get_mbchar_byte_size_by_first_char(c)
    # Checks UTF-8 character byte size
    case c.ord
    # 0b0xxxxxxx
    when ->(code) { (code ^ 0b10000000).allbits?(0b10000000) } then 1
    # 0b110xxxxx
    when ->(code) { (code ^ 0b00100000).allbits?(0b11100000) } then 2
    # 0b1110xxxx
    when ->(code) { (code ^ 0b00010000).allbits?(0b11110000) } then 3
    # 0b11110xxx
    when ->(code) { (code ^ 0b00001000).allbits?(0b11111000) } then 4
    # 0b111110xx
    when ->(code) { (code ^ 0b00000100).allbits?(0b11111100) } then 5
    # 0b1111110x
    when ->(code) { (code ^ 0b00000010).allbits?(0b11111110) } then 6
    # successor of mbchar
    else 0
    end
  end

  def self.escape_for_print(str)
    str.chars.map! { |gr|
      escaped = EscapedPairs[gr.ord]
      if escaped && gr != -"\n" && gr != -"\t"
        escaped
      else
        gr
      end
    }.join
  end

  def self.get_mbchar_width(mbchar)
    case mbchar.encode(Encoding::UTF_8)
    when *EscapedChars # ^ + char, such as ^M, ^H, ^[, ...
      2
    when /^\u{2E3B}/ # THREE-EM DASH
      3
    when /^\p{M}/
      0
    when EastAsianWidth::TYPE_A
      Reline.ambiguous_width
    when EastAsianWidth::TYPE_F, EastAsianWidth::TYPE_W
      2
    when EastAsianWidth::TYPE_H, EastAsianWidth::TYPE_NA, EastAsianWidth::TYPE_N
      1
    else
      nil
    end
  end

  def self.calculate_width(str, allow_escape_code = false)
    if allow_escape_code
      width = 0
      rest = str.encode(Encoding::UTF_8)
      in_zero_width = false
      rest.scan(WIDTH_SCANNER) do |gc|
        case gc
        when NON_PRINTING_START
          in_zero_width = true
        when NON_PRINTING_END
          in_zero_width = false
        when CSI_REGEXP, OSC_REGEXP
        else
          unless in_zero_width
            width += get_mbchar_width(gc)
          end
        end
      end
      width
    else
      str.encode(Encoding::UTF_8).grapheme_clusters.inject(0) { |w, gc|
        w + get_mbchar_width(gc)
      }
    end
  end

  def self.split_by_width(str, max_width, encoding = str.encoding)
    lines = [String.new(encoding: encoding)]
    height = 1
    width = 0
    rest = str.encode(Encoding::UTF_8)
    in_zero_width = false
    rest.scan(WIDTH_SCANNER) do |gc|
      case gc
      when NON_PRINTING_START
        in_zero_width = true
      when NON_PRINTING_END
        in_zero_width = false
      when CSI_REGEXP, OSC_REGEXP
        lines.last << gc
      else
        unless in_zero_width
          mbchar_width = get_mbchar_width(gc)
          if (width += mbchar_width) > max_width
            width = mbchar_width
            lines << nil
            lines << String.new(encoding: encoding)
            height += 1
          end
        end
        lines.last << gc
      end
    end
    # The cursor moves to next line in first
    if width == max_width
      lines << nil
      lines << String.new(encoding: encoding)
      height += 1
    end
    [lines, height]
  end

  def self.get_next_mbchar_size(line, byte_pointer)
    grapheme = line.byteslice(byte_pointer..-1).grapheme_clusters.first
    grapheme ? grapheme.bytesize : 0
  end

  def self.get_prev_mbchar_size(line, byte_pointer)
    if byte_pointer.zero?
      0
    else
      grapheme = line.byteslice(0..(byte_pointer - 1)).grapheme_clusters.last
      grapheme ? grapheme.bytesize : 0
    end
  end

  def self.em_forward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.em_forward_word_with_capitalization(line, byte_pointer)
    width = 0
    byte_size = 0
    new_str = String.new
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
      new_str += mbchar
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    first = true
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
      if first
        new_str += mbchar.upcase
        first = false
      else
        new_str += mbchar.downcase
      end
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width, new_str]
  end

  def self.em_backward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.em_big_backward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar =~ /\S/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar =~ /\s/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.ed_transpose_words(line, byte_pointer)
    right_word_start = nil
    size = get_next_mbchar_size(line, byte_pointer)
    mbchar = line.byteslice(byte_pointer, size)
    if size.zero?
      # ' aaa bbb [cursor]'
      byte_size = 0
      while 0 < (byte_pointer + byte_size)
        size = get_prev_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size - size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
        byte_size -= size
      end
      while 0 < (byte_pointer + byte_size)
        size = get_prev_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size - size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
        byte_size -= size
      end
      right_word_start = byte_pointer + byte_size
      byte_size = 0
      while line.bytesize > (byte_pointer + byte_size)
        size = get_next_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
        byte_size += size
      end
      after_start = byte_pointer + byte_size
    elsif mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
      # ' aaa bb[cursor]b'
      byte_size = 0
      while 0 < (byte_pointer + byte_size)
        size = get_prev_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size - size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
        byte_size -= size
      end
      right_word_start = byte_pointer + byte_size
      byte_size = 0
      while line.bytesize > (byte_pointer + byte_size)
        size = get_next_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
        byte_size += size
      end
      after_start = byte_pointer + byte_size
    else
      byte_size = 0
      while (line.bytesize - 1) > (byte_pointer + byte_size)
        size = get_next_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size, size)
        break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
        byte_size += size
      end
      if (byte_pointer + byte_size) == (line.bytesize - 1)
        # ' aaa bbb [cursor] '
        after_start = line.bytesize
        while 0 < (byte_pointer + byte_size)
          size = get_prev_mbchar_size(line, byte_pointer + byte_size)
          mbchar = line.byteslice(byte_pointer + byte_size - size, size)
          break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
          byte_size -= size
        end
        while 0 < (byte_pointer + byte_size)
          size = get_prev_mbchar_size(line, byte_pointer + byte_size)
          mbchar = line.byteslice(byte_pointer + byte_size - size, size)
          break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
          byte_size -= size
        end
        right_word_start = byte_pointer + byte_size
      else
        # ' aaa [cursor] bbb '
        right_word_start = byte_pointer + byte_size
        while line.bytesize > (byte_pointer + byte_size)
          size = get_next_mbchar_size(line, byte_pointer + byte_size)
          mbchar = line.byteslice(byte_pointer + byte_size, size)
          break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
          byte_size += size
        end
        after_start = byte_pointer + byte_size
      end
    end
    byte_size = right_word_start - byte_pointer
    while 0 < (byte_pointer + byte_size)
      size = get_prev_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size - size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\p{Word}/
      byte_size -= size
    end
    middle_start = byte_pointer + byte_size
    byte_size = middle_start - byte_pointer
    while 0 < (byte_pointer + byte_size)
      size = get_prev_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size - size, size)
      break if mbchar.encode(Encoding::UTF_8) =~ /\P{Word}/
      byte_size -= size
    end
    left_word_start = byte_pointer + byte_size
    [left_word_start, middle_start, right_word_start, after_start]
  end

  def self.vi_big_forward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar =~ /\s/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar =~ /\S/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.vi_big_forward_end_word(line, byte_pointer)
    if (line.bytesize - 1) > byte_pointer
      size = get_next_mbchar_size(line, byte_pointer)
      mbchar = line.byteslice(byte_pointer, size)
      width = get_mbchar_width(mbchar)
      byte_size = size
    else
      return [0, 0]
    end
    while (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar =~ /\S/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    prev_width = width
    prev_byte_size = byte_size
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar =~ /\s/
      prev_width = width
      prev_byte_size = byte_size
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [prev_byte_size, prev_width]
  end

  def self.vi_big_backward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar =~ /\S/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      break if mbchar =~ /\s/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.vi_forward_word(line, byte_pointer)
    if (line.bytesize - 1) > byte_pointer
      size = get_next_mbchar_size(line, byte_pointer)
      mbchar = line.byteslice(byte_pointer, size)
      if mbchar =~ /\w/
        started_by = :word
      elsif mbchar =~ /\s/
        started_by = :space
      else
        started_by = :non_word_printable
      end
      width = get_mbchar_width(mbchar)
      byte_size = size
    else
      return [0, 0]
    end
    while (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      case started_by
      when :word
        break if mbchar =~ /\W/
      when :space
        break if mbchar =~ /\S/
      when :non_word_printable
        break if mbchar =~ /\w|\s/
      end
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      break if mbchar =~ /\S/
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.vi_forward_end_word(line, byte_pointer)
    if (line.bytesize - 1) > byte_pointer
      size = get_next_mbchar_size(line, byte_pointer)
      mbchar = line.byteslice(byte_pointer, size)
      if mbchar =~ /\w/
        started_by = :word
      elsif mbchar =~ /\s/
        started_by = :space
      else
        started_by = :non_word_printable
      end
      width = get_mbchar_width(mbchar)
      byte_size = size
    else
      return [0, 0]
    end
    if (line.bytesize - 1) > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      if mbchar =~ /\w/
        second = :word
      elsif mbchar =~ /\s/
        second = :space
      else
        second = :non_word_printable
      end
      second_width = get_mbchar_width(mbchar)
      second_byte_size = size
    else
      return [byte_size, width]
    end
    if second == :space
      width += second_width
      byte_size += second_byte_size
      while (line.bytesize - 1) > (byte_pointer + byte_size)
        size = get_next_mbchar_size(line, byte_pointer + byte_size)
        mbchar = line.byteslice(byte_pointer + byte_size, size)
        if mbchar =~ /\S/
          if mbchar =~ /\w/
            started_by = :word
          else
            started_by = :non_word_printable
          end
          break
        end
        width += get_mbchar_width(mbchar)
        byte_size += size
      end
    else
      case [started_by, second]
      when [:word, :non_word_printable], [:non_word_printable, :word]
        started_by = second
      else
        width += second_width
        byte_size += second_byte_size
        started_by = second
      end
    end
    prev_width = width
    prev_byte_size = byte_size
    while line.bytesize > (byte_pointer + byte_size)
      size = get_next_mbchar_size(line, byte_pointer + byte_size)
      mbchar = line.byteslice(byte_pointer + byte_size, size)
      case started_by
      when :word
        break if mbchar =~ /\W/
      when :non_word_printable
        break if mbchar =~ /[\w\s]/
      end
      prev_width = width
      prev_byte_size = byte_size
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [prev_byte_size, prev_width]
  end

  def self.vi_backward_word(line, byte_pointer)
    width = 0
    byte_size = 0
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      if mbchar =~ /\S/
        if mbchar =~ /\w/
          started_by = :word
        else
          started_by = :non_word_printable
        end
        break
      end
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    while 0 < (byte_pointer - byte_size)
      size = get_prev_mbchar_size(line, byte_pointer - byte_size)
      mbchar = line.byteslice(byte_pointer - byte_size - size, size)
      case started_by
      when :word
        break if mbchar =~ /\W/
      when :non_word_printable
        break if mbchar =~ /[\w\s]/
      end
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end

  def self.vi_first_print(line)
    width = 0
    byte_size = 0
    while (line.bytesize - 1) > byte_size
      size = get_next_mbchar_size(line, byte_size)
      mbchar = line.byteslice(byte_size, size)
      if mbchar =~ /\S/
        break
      end
      width += get_mbchar_width(mbchar)
      byte_size += size
    end
    [byte_size, width]
  end
end

require 'reline/unicode/east_asian_width'
PKJH[	6��"�" share/ruby/reline/line_editor.rbnu�[���require 'reline/kill_ring'
require 'reline/unicode'

require 'tempfile'

class Reline::LineEditor
  # TODO: undo
  attr_reader :line
  attr_reader :byte_pointer
  attr_accessor :confirm_multiline_termination_proc
  attr_accessor :completion_proc
  attr_accessor :completion_append_character
  attr_accessor :output_modifier_proc
  attr_accessor :prompt_proc
  attr_accessor :auto_indent_proc
  attr_accessor :pre_input_hook
  attr_accessor :dig_perfect_match_proc
  attr_writer :output

  VI_MOTIONS = %i{
    ed_prev_char
    ed_next_char
    vi_zero
    ed_move_to_beg
    ed_move_to_end
    vi_to_column
    vi_next_char
    vi_prev_char
    vi_next_word
    vi_prev_word
    vi_to_next_char
    vi_to_prev_char
    vi_end_word
    vi_next_big_word
    vi_prev_big_word
    vi_end_big_word
    vi_repeat_next_char
    vi_repeat_prev_char
  }

  module CompletionState
    NORMAL = :normal
    COMPLETION = :completion
    MENU = :menu
    JOURNEY = :journey
    MENU_WITH_PERFECT_MATCH = :menu_with_perfect_match
    PERFECT_MATCH = :perfect_match
  end

  CompletionJourneyData = Struct.new('CompletionJourneyData', :preposing, :postposing, :list, :pointer)
  MenuInfo = Struct.new('MenuInfo', :target, :list)

  def initialize(config, encoding)
    @config = config
    @completion_append_character = ''
    reset_variables(encoding: encoding)
  end

  private def check_multiline_prompt(buffer, prompt)
    if @vi_arg
      prompt = "(arg: #{@vi_arg}) "
      @rerender_all = true
    elsif @searching_prompt
      prompt = @searching_prompt
      @rerender_all = true
    else
      prompt = @prompt
    end
    if @prompt_proc
      prompt_list = @prompt_proc.(buffer)
      prompt_list.map!{ prompt } if @vi_arg or @searching_prompt
      if @config.show_mode_in_prompt
        if @config.editing_mode_is?(:vi_command)
          mode_icon = @config.vi_cmd_mode_icon
        elsif @config.editing_mode_is?(:vi_insert)
          mode_icon = @config.vi_ins_mode_icon
        elsif @config.editing_mode_is?(:emacs)
          mode_icon = @config.emacs_mode_string
        else
          mode_icon = '?'
        end
        prompt_list.map!{ |pr| mode_icon + pr }
      end
      prompt = prompt_list[@line_index]
      prompt_width = calculate_width(prompt, true)
      [prompt, prompt_width, prompt_list]
    else
      prompt_width = calculate_width(prompt, true)
      if @config.show_mode_in_prompt
        if @config.editing_mode_is?(:vi_command)
          mode_icon = @config.vi_cmd_mode_icon
        elsif @config.editing_mode_is?(:vi_insert)
          mode_icon = @config.vi_ins_mode_icon
        elsif @config.editing_mode_is?(:emacs)
          mode_icon = @config.emacs_mode_string
        else
          mode_icon = '?'
        end
        prompt = mode_icon + prompt
      end
      [prompt, prompt_width, nil]
    end
  end

  def reset(prompt = '', encoding:)
    @rest_height = (Reline::IOGate.get_screen_size.first - 1) - Reline::IOGate.cursor_pos.y
    @screen_size = Reline::IOGate.get_screen_size
    reset_variables(prompt, encoding: encoding)
    @old_trap = Signal.trap('SIGINT') {
      @old_trap.call if @old_trap.respond_to?(:call) # can also be string, ex: "DEFAULT"
      raise Interrupt
    }
    Reline::IOGate.set_winch_handler do
      @rest_height = (Reline::IOGate.get_screen_size.first - 1) - Reline::IOGate.cursor_pos.y
      old_screen_size = @screen_size
      @screen_size = Reline::IOGate.get_screen_size
      if old_screen_size.last < @screen_size.last # columns increase
        @rerender_all = true
        rerender
      else
        back = 0
        new_buffer = whole_lines
        prompt, prompt_width, prompt_list = check_multiline_prompt(new_buffer, prompt)
        new_buffer.each_with_index do |line, index|
          prompt_width = calculate_width(prompt_list[index], true) if @prompt_proc
          width = prompt_width + calculate_width(line)
          height = calculate_height_by_width(width)
          back += height
        end
        @highest_in_all = back
        @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
        @first_line_started_from =
          if @line_index.zero?
            0
          else
            calculate_height_by_lines(@buffer_of_lines[0..(@line_index - 1)], prompt_list || prompt)
          end
        if @prompt_proc
          prompt = prompt_list[@line_index]
          prompt_width = calculate_width(prompt, true)
        end
        calculate_nearest_cursor
        @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
        Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
        @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
        @rerender_all = true
      end
    end
  end

  def finalize
    Signal.trap('SIGINT', @old_trap)
  end

  def eof?
    @eof
  end

  def reset_variables(prompt = '', encoding:)
    @prompt = prompt
    @mark_pointer = nil
    @encoding = encoding
    @is_multiline = false
    @finished = false
    @cleared = false
    @rerender_all = false
    @history_pointer = nil
    @kill_ring = Reline::KillRing.new
    @vi_clipboard = ''
    @vi_arg = nil
    @waiting_proc = nil
    @waiting_operator_proc = nil
    @completion_journey_data = nil
    @completion_state = CompletionState::NORMAL
    @perfect_matched = nil
    @menu_info = nil
    @first_prompt = true
    @searching_prompt = nil
    @first_char = true
    @eof = false
    reset_line
  end

  def reset_line
    @cursor = 0
    @cursor_max = 0
    @byte_pointer = 0
    @buffer_of_lines = [String.new(encoding: @encoding)]
    @line_index = 0
    @previous_line_index = nil
    @line = @buffer_of_lines[0]
    @first_line_started_from = 0
    @move_up = 0
    @started_from = 0
    @highest_in_this = 1
    @highest_in_all = 1
    @line_backup_in_history = nil
    @multibyte_buffer = String.new(encoding: 'ASCII-8BIT')
    @check_new_auto_indent = false
  end

  def multiline_on
    @is_multiline = true
  end

  def multiline_off
    @is_multiline = false
  end

  private def calculate_height_by_lines(lines, prompt)
    result = 0
    prompt_list = prompt.is_a?(Array) ? prompt : nil
    lines.each_with_index { |line, i|
      prompt = prompt_list[i] if prompt_list and prompt_list[i]
      result += calculate_height_by_width(calculate_width(prompt, true) + calculate_width(line))
    }
    result
  end

  private def insert_new_line(cursor_line, next_line)
    @line = cursor_line
    @buffer_of_lines.insert(@line_index + 1, String.new(next_line, encoding: @encoding))
    @previous_line_index = @line_index
    @line_index += 1
  end

  private def calculate_height_by_width(width)
    width.div(@screen_size.last) + 1
  end

  private def split_by_width(str, max_width)
    Reline::Unicode.split_by_width(str, max_width, @encoding)
  end

  private def scroll_down(val)
    if val <= @rest_height
      Reline::IOGate.move_cursor_down(val)
      @rest_height -= val
    else
      Reline::IOGate.move_cursor_down(@rest_height)
      Reline::IOGate.scroll_down(val - @rest_height)
      @rest_height = 0
    end
  end

  private def move_cursor_up(val)
    if val > 0
      Reline::IOGate.move_cursor_up(val)
      @rest_height += val
    elsif val < 0
      move_cursor_down(-val)
    end
  end

  private def move_cursor_down(val)
    if val > 0
      Reline::IOGate.move_cursor_down(val)
      @rest_height -= val
      @rest_height = 0 if @rest_height < 0
    elsif val < 0
      move_cursor_up(-val)
    end
  end

  private def calculate_nearest_cursor
    @cursor_max = calculate_width(line)
    new_cursor = 0
    new_byte_pointer = 0
    height = 1
    max_width = @screen_size.last
    if @config.editing_mode_is?(:vi_command)
      last_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @line.bytesize)
      if last_byte_size > 0
        last_mbchar = @line.byteslice(@line.bytesize - last_byte_size, last_byte_size)
        last_width = Reline::Unicode.get_mbchar_width(last_mbchar)
        cursor_max = @cursor_max - last_width
      else
        cursor_max = @cursor_max
      end
    else
      cursor_max = @cursor_max
    end
    @line.encode(Encoding::UTF_8).grapheme_clusters.each do |gc|
      mbchar_width = Reline::Unicode.get_mbchar_width(gc)
      now = new_cursor + mbchar_width
      if now > cursor_max or now > @cursor
        break
      end
      new_cursor += mbchar_width
      if new_cursor > max_width * height
        height += 1
      end
      new_byte_pointer += gc.bytesize
    end
    @started_from = height - 1
    @cursor = new_cursor
    @byte_pointer = new_byte_pointer
  end

  def rerender
    return if @line.nil?
    if @menu_info
      scroll_down(@highest_in_all - @first_line_started_from)
      @rerender_all = true
      @menu_info.list.sort!.each do |item|
        Reline::IOGate.move_cursor_column(0)
        @output.write item
        @output.flush
        scroll_down(1)
      end
      scroll_down(@highest_in_all - 1)
      move_cursor_up(@highest_in_all - 1 - @first_line_started_from)
      @menu_info = nil
    end
    prompt, prompt_width, prompt_list = check_multiline_prompt(whole_lines, prompt)
    if @cleared
      Reline::IOGate.clear_screen
      @cleared = false
      back = 0
      modify_lines(whole_lines).each_with_index do |line, index|
        if @prompt_proc
          pr = prompt_list[index]
          height = render_partial(pr, calculate_width(pr), line, false)
        else
          height = render_partial(prompt, prompt_width, line, false)
        end
        if index < (@buffer_of_lines.size - 1)
          move_cursor_down(height)
          back += height
        end
      end
      move_cursor_up(back)
      move_cursor_down(@first_line_started_from + @started_from)
      Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
      return
    end
    new_highest_in_this = calculate_height_by_width(prompt_width + calculate_width(@line.nil? ? '' : @line))
    # FIXME: end of logical line sometimes breaks
    if @previous_line_index or new_highest_in_this != @highest_in_this
      if @previous_line_index
        new_lines = whole_lines(index: @previous_line_index, line: @line)
      else
        new_lines = whole_lines
      end
      prompt, prompt_width, prompt_list = check_multiline_prompt(new_lines, prompt)
      all_height = calculate_height_by_lines(new_lines, prompt_list || prompt)
      diff = all_height - @highest_in_all
      move_cursor_down(@highest_in_all - @first_line_started_from - @started_from - 1)
      if diff > 0
        scroll_down(diff)
        move_cursor_up(all_height - 1)
      elsif diff < 0
        (-diff).times do
          Reline::IOGate.move_cursor_column(0)
          Reline::IOGate.erase_after_cursor
          move_cursor_up(1)
        end
        move_cursor_up(all_height - 1)
      else
        move_cursor_up(all_height - 1)
      end
      @highest_in_all = all_height
      back = 0
      modify_lines(new_lines).each_with_index do |line, index|
        if @prompt_proc
          prompt = prompt_list[index]
          prompt_width = calculate_width(prompt, true)
        end
        height = render_partial(prompt, prompt_width, line, false)
        if index < (new_lines.size - 1)
          scroll_down(1)
          back += height
        else
          back += height - 1
        end
      end
      move_cursor_up(back)
      if @previous_line_index
        @buffer_of_lines[@previous_line_index] = @line
        @line = @buffer_of_lines[@line_index]
      end
      @first_line_started_from =
        if @line_index.zero?
          0
        else
          calculate_height_by_lines(@buffer_of_lines[0..(@line_index - 1)], prompt_list || prompt)
        end
      if @prompt_proc
        prompt = prompt_list[@line_index]
        prompt_width = calculate_width(prompt, true)
      end
      move_cursor_down(@first_line_started_from)
      calculate_nearest_cursor
      @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
      move_cursor_down(@started_from)
      Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
      @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
      @previous_line_index = nil
      rendered = true
    elsif @rerender_all
      move_cursor_up(@first_line_started_from + @started_from)
      Reline::IOGate.move_cursor_column(0)
      back = 0
      new_buffer = whole_lines
      prompt, prompt_width, prompt_list = check_multiline_prompt(new_buffer, prompt)
      new_buffer.each_with_index do |line, index|
        prompt_width = calculate_width(prompt_list[index], true) if @prompt_proc
        width = prompt_width + calculate_width(line)
        height = calculate_height_by_width(width)
        back += height
      end
      if back > @highest_in_all
        scroll_down(back - 1)
        move_cursor_up(back - 1)
      elsif back < @highest_in_all
        scroll_down(back)
        Reline::IOGate.erase_after_cursor
        (@highest_in_all - back - 1).times do
          scroll_down(1)
          Reline::IOGate.erase_after_cursor
        end
        move_cursor_up(@highest_in_all - 1)
      end
      modify_lines(new_buffer).each_with_index do |line, index|
        if @prompt_proc
          prompt = prompt_list[index]
          prompt_width = calculate_width(prompt, true)
        end
        render_partial(prompt, prompt_width, line, false)
        if index < (new_buffer.size - 1)
          move_cursor_down(1)
        end
      end
      move_cursor_up(back - 1)
      if @prompt_proc
        prompt = prompt_list[@line_index]
        prompt_width = calculate_width(prompt, true)
      end
      @highest_in_all = back
      @highest_in_this = calculate_height_by_width(prompt_width + @cursor_max)
      @first_line_started_from =
        if @line_index.zero?
          0
        else
          calculate_height_by_lines(new_buffer[0..(@line_index - 1)], prompt_list || prompt)
        end
      @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
      move_cursor_down(@first_line_started_from + @started_from)
      Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
      @rerender_all = false
      rendered = true
    end
    line = modify_lines(whole_lines)[@line_index]
    if @is_multiline
      prompt, prompt_width, prompt_list = check_multiline_prompt(whole_lines, prompt)
      if finished?
        # Always rerender on finish because output_modifier_proc may return a different output.
        render_partial(prompt, prompt_width, line)
        scroll_down(1)
        Reline::IOGate.move_cursor_column(0)
        Reline::IOGate.erase_after_cursor
      elsif not rendered
        render_partial(prompt, prompt_width, line)
      end
    else
      render_partial(prompt, prompt_width, line)
      if finished?
        scroll_down(1)
        Reline::IOGate.move_cursor_column(0)
        Reline::IOGate.erase_after_cursor
      end
    end
  end

  private def render_partial(prompt, prompt_width, line_to_render, with_control = true)
    visual_lines, height = split_by_width(line_to_render.nil? ? prompt : prompt + line_to_render, @screen_size.last)
    if with_control
      if height > @highest_in_this
        diff = height - @highest_in_this
        scroll_down(diff)
        @highest_in_all += diff
        @highest_in_this = height
        move_cursor_up(diff)
      elsif height < @highest_in_this
        diff = @highest_in_this - height
        @highest_in_all -= diff
        @highest_in_this = height
      end
      move_cursor_up(@started_from)
      @started_from = calculate_height_by_width(prompt_width + @cursor) - 1
    end
    Reline::IOGate.move_cursor_column(0)
    visual_lines.each_with_index do |line, index|
      if line.nil?
        if calculate_width(visual_lines[index - 1], true) == Reline::IOGate.get_screen_size.last
          # reaches the end of line
          if Reline::IOGate.win?
            # A newline is automatically inserted if a character is rendered at
            # eol on command prompt.
          else
            # When the cursor is at the end of the line and erases characters
            # after the cursor, some terminals delete the character at the
            # cursor position.
            move_cursor_down(1)
            Reline::IOGate.move_cursor_column(0)
          end
        else
          Reline::IOGate.erase_after_cursor
          move_cursor_down(1)
          Reline::IOGate.move_cursor_column(0)
        end
        next
      end
      @output.write line
      if Reline::IOGate.win? and calculate_width(line, true) == Reline::IOGate.get_screen_size.last
        # A newline is automatically inserted if a character is rendered at eol on command prompt.
        @rest_height -= 1 if @rest_height > 0
      end
      @output.flush
      if @first_prompt
        @first_prompt = false
        @pre_input_hook&.call
      end
    end
    Reline::IOGate.erase_after_cursor
    if with_control
      # Just after rendring, so the cursor is on the last line.
      if finished?
        Reline::IOGate.move_cursor_column(0)
      else
        # Moves up from bottom of lines to the cursor position.
        move_cursor_up(height - 1 - @started_from)
        Reline::IOGate.move_cursor_column((prompt_width + @cursor) % @screen_size.last)
      end
    end
    height
  end

  private def modify_lines(before)
    return before if before.nil? || before.empty?

    if after = @output_modifier_proc&.call("#{before.join("\n")}\n", complete: finished?)
      after.lines("\n").map { |l| l.chomp('') }
    else
      before
    end
  end

  def editing_mode
    @config.editing_mode
  end

  private def menu(target, list)
    @menu_info = MenuInfo.new(target, list)
  end

  private def complete_internal_proc(list, is_menu)
    preposing, target, postposing = retrieve_completion_block
    list = list.select { |i|
      if i and not Encoding.compatible?(target.encoding, i.encoding)
        raise Encoding::CompatibilityError, "#{target.encoding.name} is not compatible with #{i.encoding.name}"
      end
      if @config.completion_ignore_case
        i&.downcase&.start_with?(target.downcase)
      else
        i&.start_with?(target)
      end
    }
    if is_menu
      menu(target, list)
      return nil
    end
    completed = list.inject { |memo, item|
      begin
        memo_mbchars = memo.unicode_normalize.grapheme_clusters
        item_mbchars = item.unicode_normalize.grapheme_clusters
      rescue Encoding::CompatibilityError
        memo_mbchars = memo.grapheme_clusters
        item_mbchars = item.grapheme_clusters
      end
      size = [memo_mbchars.size, item_mbchars.size].min
      result = ''
      size.times do |i|
        if @config.completion_ignore_case
          if memo_mbchars[i].casecmp?(item_mbchars[i])
            result << memo_mbchars[i]
          else
            break
          end
        else
          if memo_mbchars[i] == item_mbchars[i]
            result << memo_mbchars[i]
          else
            break
          end
        end
      end
      result
    }
    [target, preposing, completed, postposing]
  end

  private def complete(list, just_show_list = false)
    case @completion_state
    when CompletionState::NORMAL, CompletionState::JOURNEY
      @completion_state = CompletionState::COMPLETION
    when CompletionState::PERFECT_MATCH
      @dig_perfect_match_proc&.(@perfect_matched)
    end
    if just_show_list
      is_menu = true
    elsif @completion_state == CompletionState::MENU
      is_menu = true
    elsif @completion_state == CompletionState::MENU_WITH_PERFECT_MATCH
      is_menu = true
    else
      is_menu = false
    end
    result = complete_internal_proc(list, is_menu)
    if @completion_state == CompletionState::MENU_WITH_PERFECT_MATCH
      @completion_state = CompletionState::PERFECT_MATCH
    end
    return if result.nil?
    target, preposing, completed, postposing = result
    return if completed.nil?
    if target <= completed and (@completion_state == CompletionState::COMPLETION)
      if list.include?(completed)
        if list.one?
          @completion_state = CompletionState::PERFECT_MATCH
        else
          @completion_state = CompletionState::MENU_WITH_PERFECT_MATCH
        end
        @perfect_matched = completed
      else
        @completion_state = CompletionState::MENU
      end
      if not just_show_list and target < completed
        @line = preposing + completed + completion_append_character.to_s + postposing
        line_to_pointer = preposing + completed + completion_append_character.to_s
        @cursor_max = calculate_width(@line)
        @cursor = calculate_width(line_to_pointer)
        @byte_pointer = line_to_pointer.bytesize
      end
    end
  end

  private def move_completed_list(list, direction)
    case @completion_state
    when CompletionState::NORMAL, CompletionState::COMPLETION,
         CompletionState::MENU, CompletionState::MENU_WITH_PERFECT_MATCH
      @completion_state = CompletionState::JOURNEY
      result = retrieve_completion_block
      return if result.nil?
      preposing, target, postposing = result
      @completion_journey_data = CompletionJourneyData.new(
        preposing, postposing,
        [target] + list.select{ |item| item.start_with?(target) }, 0)
      @completion_state = CompletionState::JOURNEY
    else
      case direction
      when :up
        @completion_journey_data.pointer -= 1
        if @completion_journey_data.pointer < 0
          @completion_journey_data.pointer = @completion_journey_data.list.size - 1
        end
      when :down
        @completion_journey_data.pointer += 1
        if @completion_journey_data.pointer >= @completion_journey_data.list.size
          @completion_journey_data.pointer = 0
        end
      end
      completed = @completion_journey_data.list[@completion_journey_data.pointer]
      @line = @completion_journey_data.preposing + completed + @completion_journey_data.postposing
      line_to_pointer = @completion_journey_data.preposing + completed
      @cursor_max = calculate_width(@line)
      @cursor = calculate_width(line_to_pointer)
      @byte_pointer = line_to_pointer.bytesize
    end
  end

  private def run_for_operators(key, method_symbol, &block)
    if @waiting_operator_proc
      if VI_MOTIONS.include?(method_symbol)
        old_cursor, old_byte_pointer = @cursor, @byte_pointer
        block.()
        unless @waiting_proc
          cursor_diff, byte_pointer_diff = @cursor - old_cursor, @byte_pointer - old_byte_pointer
          @cursor, @byte_pointer = old_cursor, old_byte_pointer
          @waiting_operator_proc.(cursor_diff, byte_pointer_diff)
        else
          old_waiting_proc = @waiting_proc
          old_waiting_operator_proc = @waiting_operator_proc
          @waiting_proc = proc { |k|
            old_cursor, old_byte_pointer = @cursor, @byte_pointer
            old_waiting_proc.(k)
            cursor_diff, byte_pointer_diff = @cursor - old_cursor, @byte_pointer - old_byte_pointer
            @cursor, @byte_pointer = old_cursor, old_byte_pointer
            @waiting_operator_proc.(cursor_diff, byte_pointer_diff)
            @waiting_operator_proc = old_waiting_operator_proc
          }
        end
      else
        # Ignores operator when not motion is given.
        block.()
      end
      @waiting_operator_proc = nil
    else
      block.()
    end
  end

  private def argumentable?(method_obj)
    method_obj and method_obj.parameters.length != 1
  end

  private def process_key(key, method_symbol)
    if method_symbol and respond_to?(method_symbol, true)
      method_obj = method(method_symbol)
    else
      method_obj = nil
    end
    if method_symbol and key.is_a?(Symbol)
      if @vi_arg and argumentable?(method_obj)
        run_for_operators(key, method_symbol) do
          method_obj.(key, arg: @vi_arg)
        end
      else
        method_obj&.(key)
      end
      @kill_ring.process
      @vi_arg = nil
    elsif @vi_arg
      if key.chr =~ /[0-9]/
        ed_argument_digit(key)
      else
        if argumentable?(method_obj)
          run_for_operators(key, method_symbol) do
            method_obj.(key, arg: @vi_arg)
          end
        elsif @waiting_proc
          @waiting_proc.(key)
        elsif method_obj
          method_obj.(key)
        else
          ed_insert(key)
        end
        @kill_ring.process
        @vi_arg = nil
      end
    elsif @waiting_proc
      @waiting_proc.(key)
      @kill_ring.process
    elsif method_obj
      if method_symbol == :ed_argument_digit
        method_obj.(key)
      else
        run_for_operators(key, method_symbol) do
          method_obj.(key)
        end
      end
      @kill_ring.process
    else
      ed_insert(key)
    end
  end

  private def normal_char(key)
    method_symbol = method_obj = nil
    if key.combined_char.is_a?(Symbol)
      process_key(key.combined_char, key.combined_char)
      return
    end
    @multibyte_buffer << key.combined_char
    if @multibyte_buffer.size > 1
      if @multibyte_buffer.dup.force_encoding(@encoding).valid_encoding?
        process_key(@multibyte_buffer.dup.force_encoding(@encoding), nil)
        @multibyte_buffer.clear
      else
        # invalid
        return
      end
    else # single byte
      return if key.char >= 128 # maybe, first byte of multi byte
      method_symbol = @config.editing_mode.get_method(key.combined_char)
      if key.with_meta and method_symbol == :ed_unassigned
        # split ESC + key
        method_symbol = @config.editing_mode.get_method("\e".ord)
        process_key("\e".ord, method_symbol)
        method_symbol = @config.editing_mode.get_method(key.char)
        process_key(key.char, method_symbol)
      else
        process_key(key.combined_char, method_symbol)
      end
      @multibyte_buffer.clear
    end
    if @config.editing_mode_is?(:vi_command) and @cursor > 0 and @cursor == @cursor_max
      byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
      @byte_pointer -= byte_size
      mbchar = @line.byteslice(@byte_pointer, byte_size)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor -= width
    end
  end

  def input_key(key)
    if key.char.nil?
      if @first_char
        @line = nil
      end
      finish
      return
    end
    @first_char = false
    completion_occurs = false
    if @config.editing_mode_is?(:emacs, :vi_insert) and key.char == "\C-i".ord
      unless @config.disable_completion
        result = call_completion_proc
        if result.is_a?(Array)
          completion_occurs = true
          complete(result)
        end
      end
    elsif not @config.disable_completion and @config.editing_mode_is?(:vi_insert) and ["\C-p".ord, "\C-n".ord].include?(key.char)
      unless @config.disable_completion
        result = call_completion_proc
        if result.is_a?(Array)
          completion_occurs = true
          move_completed_list(result, "\C-p".ord == key.char ? :up : :down)
        end
      end
    elsif Symbol === key.char and respond_to?(key.char, true)
      process_key(key.char, key.char)
    else
      normal_char(key)
    end
    unless completion_occurs
      @completion_state = CompletionState::NORMAL
    end
    if @is_multiline and @auto_indent_proc
      process_auto_indent
    end
  end

  def call_completion_proc
    result = retrieve_completion_block(true)
    slice = result[1]
    result = @completion_proc.(slice) if @completion_proc and slice
    Reline.core.instance_variable_set(:@completion_quote_character, nil)
    result
  end

  private def process_auto_indent
    return if not @check_new_auto_indent and @previous_line_index # move cursor up or down
    if @check_new_auto_indent and @previous_line_index and @previous_line_index > 0 and @line_index > @previous_line_index
      # Fix indent of a line when a newline is inserted to the next
      new_lines = whole_lines(index: @previous_line_index, line: @line)
      new_indent = @auto_indent_proc.(new_lines[0..-3].push(''), @line_index - 1, 0, true)
      md = @line.match(/\A */)
      prev_indent = md[0].count(' ')
      @line = ' ' * new_indent + @line.lstrip

      new_indent = nil
      result = @auto_indent_proc.(new_lines[0..-2], @line_index - 1, (new_lines[-2].size + 1), false)
      if result
        new_indent = result
      end
      if new_indent&.>= 0
        @line = ' ' * new_indent + @line.lstrip
      end
    end
    if @previous_line_index
      new_lines = whole_lines(index: @previous_line_index, line: @line)
    else
      new_lines = whole_lines
    end
    new_indent = @auto_indent_proc.(new_lines, @line_index, @byte_pointer, @check_new_auto_indent)
    if new_indent&.>= 0
      md = new_lines[@line_index].match(/\A */)
      prev_indent = md[0].count(' ')
      if @check_new_auto_indent
        @buffer_of_lines[@line_index] = ' ' * new_indent + @buffer_of_lines[@line_index].lstrip
        @cursor = new_indent
        @byte_pointer = new_indent
      else
        @line = ' ' * new_indent + @line.lstrip
        @cursor += new_indent - prev_indent
        @byte_pointer += new_indent - prev_indent
      end
    end
    @check_new_auto_indent = false
  end

  def retrieve_completion_block(set_completion_quote_character = false)
    word_break_regexp = /\A[#{Regexp.escape(Reline.completer_word_break_characters)}]/
    quote_characters_regexp = /\A[#{Regexp.escape(Reline.completer_quote_characters)}]/
    before = @line.byteslice(0, @byte_pointer)
    rest = nil
    break_pointer = nil
    quote = nil
    closing_quote = nil
    escaped_quote = nil
    i = 0
    while i < @byte_pointer do
      slice = @line.byteslice(i, @byte_pointer - i)
      unless slice.valid_encoding?
        i += 1
        next
      end
      if quote and slice.start_with?(closing_quote)
        quote = nil
        i += 1
        rest = nil
      elsif quote and slice.start_with?(escaped_quote)
        # skip
        i += 2
      elsif slice =~ quote_characters_regexp # find new "
        rest = $'
        quote = $&
        closing_quote = /(?!\\)#{Regexp.escape(quote)}/
        escaped_quote = /\\#{Regexp.escape(quote)}/
        i += 1
        break_pointer = i - 1
      elsif not quote and slice =~ word_break_regexp
        rest = $'
        i += 1
        before = @line.byteslice(i, @byte_pointer - i)
        break_pointer = i
      else
        i += 1
      end
    end
    postposing = @line.byteslice(@byte_pointer, @line.bytesize - @byte_pointer)
    if rest
      preposing = @line.byteslice(0, break_pointer)
      target = rest
      if set_completion_quote_character and quote
        Reline.core.instance_variable_set(:@completion_quote_character, quote)
        if postposing !~ /(?!\\)#{Regexp.escape(quote)}/ # closing quote
          insert_text(quote)
        end
      end
    else
      preposing = ''
      if break_pointer
        preposing = @line.byteslice(0, break_pointer)
      else
        preposing = ''
      end
      target = before
    end
    [preposing.encode(@encoding), target.encode(@encoding), postposing.encode(@encoding)]
  end

  def confirm_multiline_termination
    temp_buffer = @buffer_of_lines.dup
    if @previous_line_index and @line_index == (@buffer_of_lines.size - 1)
      temp_buffer[@previous_line_index] = @line
    else
      temp_buffer[@line_index] = @line
    end
    @confirm_multiline_termination_proc.(temp_buffer.join("\n") + "\n")
  end

  def insert_text(text)
    width = calculate_width(text)
    if @cursor == @cursor_max
      @line += text
    else
      @line = byteinsert(@line, @byte_pointer, text)
    end
    @byte_pointer += text.bytesize
    @cursor += width
    @cursor_max += width
  end

  def delete_text(start = nil, length = nil)
    if start.nil? and length.nil?
      @line&.clear
      @byte_pointer = 0
      @cursor = 0
      @cursor_max = 0
    elsif not start.nil? and not length.nil?
      if @line
        before = @line.byteslice(0, start)
        after = @line.byteslice(start + length, @line.bytesize)
        @line = before + after
        @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
        str = @line.byteslice(0, @byte_pointer)
        @cursor = calculate_width(str)
        @cursor_max = calculate_width(@line)
      end
    elsif start.is_a?(Range)
      range = start
      first = range.first
      last = range.last
      last = @line.bytesize - 1 if last > @line.bytesize
      last += @line.bytesize if last < 0
      first += @line.bytesize if first < 0
      range = range.exclude_end? ? first...last : first..last
      @line = @line.bytes.reject.with_index{ |c, i| range.include?(i) }.map{ |c| c.chr(Encoding::ASCII_8BIT) }.join.force_encoding(@encoding)
      @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
      str = @line.byteslice(0, @byte_pointer)
      @cursor = calculate_width(str)
      @cursor_max = calculate_width(@line)
    else
      @line = @line.byteslice(0, start)
      @byte_pointer = @line.bytesize if @byte_pointer > @line.bytesize
      str = @line.byteslice(0, @byte_pointer)
      @cursor = calculate_width(str)
      @cursor_max = calculate_width(@line)
    end
  end

  def byte_pointer=(val)
    @byte_pointer = val
    str = @line.byteslice(0, @byte_pointer)
    @cursor = calculate_width(str)
    @cursor_max = calculate_width(@line)
  end

  def whole_lines(index: @line_index, line: @line)
    temp_lines = @buffer_of_lines.dup
    temp_lines[index] = line
    temp_lines
  end

  def whole_buffer
    if @buffer_of_lines.size == 1 and @line.nil?
      nil
    else
      whole_lines.join("\n")
    end
  end

  def finished?
    @finished
  end

  def finish
    @finished = true
    @config.reset
  end

  private def byteslice!(str, byte_pointer, size)
    new_str = str.byteslice(0, byte_pointer)
    new_str << str.byteslice(byte_pointer + size, str.bytesize)
    [new_str, str.byteslice(byte_pointer, size)]
  end

  private def byteinsert(str, byte_pointer, other)
    new_str = str.byteslice(0, byte_pointer)
    new_str << other
    new_str << str.byteslice(byte_pointer, str.bytesize)
    new_str
  end

  private def calculate_width(str, allow_escape_code = false)
    Reline::Unicode.calculate_width(str, allow_escape_code)
  end

  private def key_delete(key)
    if @config.editing_mode_is?(:vi_insert, :emacs)
      ed_delete_next_char(key)
    end
  end

  private def key_newline(key)
    if @is_multiline
      next_line = @line.byteslice(@byte_pointer, @line.bytesize - @byte_pointer)
      cursor_line = @line.byteslice(0, @byte_pointer)
      insert_new_line(cursor_line, next_line)
      @cursor = 0
      @check_new_auto_indent = true
    end
  end

  private def ed_unassigned(key) end # do nothing

  private def ed_insert(key)
    if key.instance_of?(String)
      begin
        key.encode(Encoding::UTF_8)
      rescue Encoding::UndefinedConversionError
        return
      end
      width = Reline::Unicode.get_mbchar_width(key)
      if @cursor == @cursor_max
        @line += key
      else
        @line = byteinsert(@line, @byte_pointer, key)
      end
      @byte_pointer += key.bytesize
      @cursor += width
      @cursor_max += width
    else
      begin
        key.chr.encode(Encoding::UTF_8)
      rescue Encoding::UndefinedConversionError
        return
      end
      if @cursor == @cursor_max
        @line += key.chr
      else
        @line = byteinsert(@line, @byte_pointer, key.chr)
      end
      width = Reline::Unicode.get_mbchar_width(key.chr)
      @byte_pointer += 1
      @cursor += width
      @cursor_max += width
    end
  end
  alias_method :ed_digit, :ed_insert
  alias_method :self_insert, :ed_insert

  private def ed_quoted_insert(str, arg: 1)
    @waiting_proc = proc { |key|
      arg.times do
        if key == "\C-j".ord or key == "\C-m".ord
          key_newline(key)
        else
          ed_insert(key)
        end
      end
      @waiting_proc = nil
    }
  end
  alias_method :quoted_insert, :ed_quoted_insert

  private def ed_next_char(key, arg: 1)
    byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
    if (@byte_pointer < @line.bytesize)
      mbchar = @line.byteslice(@byte_pointer, byte_size)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor += width if width
      @byte_pointer += byte_size
    elsif @is_multiline and @config.editing_mode_is?(:emacs) and @byte_pointer == @line.bytesize and @line_index < @buffer_of_lines.size - 1
      next_line = @buffer_of_lines[@line_index + 1]
      @cursor = 0
      @byte_pointer = 0
      @cursor_max = calculate_width(next_line)
      @previous_line_index = @line_index
      @line_index += 1
    end
    arg -= 1
    ed_next_char(key, arg: arg) if arg > 0
  end
  alias_method :forward_char, :ed_next_char

  private def ed_prev_char(key, arg: 1)
    if @cursor > 0
      byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
      @byte_pointer -= byte_size
      mbchar = @line.byteslice(@byte_pointer, byte_size)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor -= width
    elsif @is_multiline and @config.editing_mode_is?(:emacs) and @byte_pointer == 0 and @line_index > 0
      prev_line = @buffer_of_lines[@line_index - 1]
      @cursor = calculate_width(prev_line)
      @byte_pointer = prev_line.bytesize
      @cursor_max = calculate_width(prev_line)
      @previous_line_index = @line_index
      @line_index -= 1
    end
    arg -= 1
    ed_prev_char(key, arg: arg) if arg > 0
  end

  private def vi_first_print(key)
    @byte_pointer, @cursor = Reline::Unicode.vi_first_print(@line)
  end

  private def ed_move_to_beg(key)
    @byte_pointer = @cursor = 0
  end
  alias_method :beginning_of_line, :ed_move_to_beg

  private def ed_move_to_end(key)
    @byte_pointer = 0
    @cursor = 0
    byte_size = 0
    while @byte_pointer < @line.bytesize
      byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
      if byte_size > 0
        mbchar = @line.byteslice(@byte_pointer, byte_size)
        @cursor += Reline::Unicode.get_mbchar_width(mbchar)
      end
      @byte_pointer += byte_size
    end
  end
  alias_method :end_of_line, :ed_move_to_end

  private def generate_searcher
    Fiber.new do |first_key|
      prev_search_key = first_key
      search_word = String.new(encoding: @encoding)
      multibyte_buf = String.new(encoding: 'ASCII-8BIT')
      last_hit = nil
      case first_key
      when "\C-r".ord
        prompt_name = 'reverse-i-search'
      when "\C-s".ord
        prompt_name = 'i-search'
      end
      loop do
        key = Fiber.yield(search_word)
        search_again = false
        case key
        when -1 # determined
          Reline.last_incremental_search = search_word
          break
        when "\C-h".ord, "\C-?".ord
          grapheme_clusters = search_word.grapheme_clusters
          if grapheme_clusters.size > 0
            grapheme_clusters.pop
            search_word = grapheme_clusters.join
          end
        when "\C-r".ord, "\C-s".ord
          search_again = true if prev_search_key == key
          prev_search_key = key
        else
          multibyte_buf << key
          if multibyte_buf.dup.force_encoding(@encoding).valid_encoding?
            search_word << multibyte_buf.dup.force_encoding(@encoding)
            multibyte_buf.clear
          end
        end
        hit = nil
        if not search_word.empty? and @line_backup_in_history&.include?(search_word)
          @history_pointer = nil
          hit = @line_backup_in_history
        else
          if search_again
            if search_word.empty? and Reline.last_incremental_search
              search_word = Reline.last_incremental_search
            end
            if @history_pointer
              case prev_search_key
              when "\C-r".ord
                history_pointer_base = 0
                history = Reline::HISTORY[0..(@history_pointer - 1)]
              when "\C-s".ord
                history_pointer_base = @history_pointer + 1
                history = Reline::HISTORY[(@history_pointer + 1)..-1]
              end
            else
              history_pointer_base = 0
              history = Reline::HISTORY
            end
          elsif @history_pointer
            case prev_search_key
            when "\C-r".ord
              history_pointer_base = 0
              history = Reline::HISTORY[0..@history_pointer]
            when "\C-s".ord
              history_pointer_base = @history_pointer
              history = Reline::HISTORY[@history_pointer..-1]
            end
          else
            history_pointer_base = 0
            history = Reline::HISTORY
          end
          case prev_search_key
          when "\C-r".ord
            hit_index = history.rindex { |item|
              item.include?(search_word)
            }
          when "\C-s".ord
            hit_index = history.index { |item|
              item.include?(search_word)
            }
          end
          if hit_index
            @history_pointer = history_pointer_base + hit_index
            hit = Reline::HISTORY[@history_pointer]
          end
        end
        case prev_search_key
        when "\C-r".ord
          prompt_name = 'reverse-i-search'
        when "\C-s".ord
          prompt_name = 'i-search'
        end
        if hit
          if @is_multiline
            @buffer_of_lines = hit.split("\n")
            @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
            @line_index = @buffer_of_lines.size - 1
            @line = @buffer_of_lines.last
            @rerender_all = true
            @searching_prompt = "(%s)`%s'" % [prompt_name, search_word]
          else
            @line = hit
            @searching_prompt = "(%s)`%s': %s" % [prompt_name, search_word, hit]
          end
          last_hit = hit
        else
          if @is_multiline
            @rerender_all = true
            @searching_prompt = "(failed %s)`%s'" % [prompt_name, search_word]
          else
            @searching_prompt = "(failed %s)`%s': %s" % [prompt_name, search_word, last_hit]
          end
        end
      end
    end
  end

  private def incremental_search_history(key)
    unless @history_pointer
      if @is_multiline
        @line_backup_in_history = whole_buffer
      else
        @line_backup_in_history = @line
      end
    end
    searcher = generate_searcher
    searcher.resume(key)
    @searching_prompt = "(reverse-i-search)`': "
    @waiting_proc = ->(k) {
      case k
      when "\C-j".ord
        if @history_pointer
          buffer = Reline::HISTORY[@history_pointer]
        else
          buffer = @line_backup_in_history
        end
        if @is_multiline
          @buffer_of_lines = buffer.split("\n")
          @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
          @line_index = @buffer_of_lines.size - 1
          @line = @buffer_of_lines.last
          @rerender_all = true
        else
          @line = buffer
        end
        @searching_prompt = nil
        @waiting_proc = nil
        @cursor_max = calculate_width(@line)
        @cursor = @byte_pointer = 0
        searcher.resume(-1)
      when "\C-g".ord
        if @is_multiline
          @buffer_of_lines = @line_backup_in_history.split("\n")
          @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
          @line_index = @buffer_of_lines.size - 1
          @line = @buffer_of_lines.last
          @rerender_all = true
        else
          @line = @line_backup_in_history
        end
        @history_pointer = nil
        @searching_prompt = nil
        @waiting_proc = nil
        @line_backup_in_history = nil
        @cursor_max = calculate_width(@line)
        @cursor = @byte_pointer = 0
        @rerender_all = true
      else
        chr = k.is_a?(String) ? k : k.chr(Encoding::ASCII_8BIT)
        if chr.match?(/[[:print:]]/) or k == "\C-h".ord or k == "\C-?".ord or k == "\C-r".ord or k == "\C-s".ord
          searcher.resume(k)
        else
          if @history_pointer
            line = Reline::HISTORY[@history_pointer]
          else
            line = @line_backup_in_history
          end
          if @is_multiline
            @line_backup_in_history = whole_buffer
            @buffer_of_lines = line.split("\n")
            @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
            @line_index = @buffer_of_lines.size - 1
            @line = @buffer_of_lines.last
            @rerender_all = true
          else
            @line_backup_in_history = @line
            @line = line
          end
          @searching_prompt = nil
          @waiting_proc = nil
          @cursor_max = calculate_width(@line)
          @cursor = @byte_pointer = 0
          searcher.resume(-1)
        end
      end
    }
  end

  private def vi_search_prev(key)
    incremental_search_history(key)
  end
  alias_method :reverse_search_history, :vi_search_prev

  private def vi_search_next(key)
    incremental_search_history(key)
  end
  alias_method :forward_search_history, :vi_search_next

  private def ed_search_prev_history(key, arg: 1)
    history = nil
    h_pointer = nil
    line_no = nil
    substr = @line.slice(0, @byte_pointer)
    if @history_pointer.nil?
      return if not @line.empty? and substr.empty?
      history = Reline::HISTORY
    elsif @history_pointer.zero?
      history = nil
      h_pointer = nil
    else
      history = Reline::HISTORY.slice(0, @history_pointer)
    end
    return if history.nil?
    if @is_multiline
      h_pointer = history.rindex { |h|
        h.split("\n").each_with_index { |l, i|
          if l.start_with?(substr)
            line_no = i
            break
          end
        }
        not line_no.nil?
      }
    else
      h_pointer = history.rindex { |l|
        l.start_with?(substr)
      }
    end
    return if h_pointer.nil?
    @history_pointer = h_pointer
    if @is_multiline
      @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
      @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
      @line_index = line_no
      @line = @buffer_of_lines.last
      @rerender_all = true
    else
      @line = Reline::HISTORY[@history_pointer]
    end
    @cursor_max = calculate_width(@line)
    arg -= 1
    ed_search_prev_history(key, arg: arg) if arg > 0
  end
  alias_method :history_search_backward, :ed_search_prev_history

  private def ed_search_next_history(key, arg: 1)
    substr = @line.slice(0, @byte_pointer)
    if @history_pointer.nil?
      return
    elsif @history_pointer == (Reline::HISTORY.size - 1) and not substr.empty?
      return
    end
    history = Reline::HISTORY.slice((@history_pointer + 1)..-1)
    h_pointer = nil
    line_no = nil
    if @is_multiline
      h_pointer = history.index { |h|
        h.split("\n").each_with_index { |l, i|
          if l.start_with?(substr)
            line_no = i
            break
          end
        }
        not line_no.nil?
      }
    else
      h_pointer = history.index { |l|
        l.start_with?(substr)
      }
    end
    h_pointer += @history_pointer + 1 if h_pointer and @history_pointer
    return if h_pointer.nil? and not substr.empty?
    @history_pointer = h_pointer
    if @is_multiline
      if @history_pointer.nil? and substr.empty?
        @buffer_of_lines = []
        @line_index = 0
      else
        @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
        @line_index = line_no
      end
      @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
      @line = @buffer_of_lines.last
      @rerender_all = true
    else
      if @history_pointer.nil? and substr.empty?
        @line = ''
      else
        @line = Reline::HISTORY[@history_pointer]
      end
    end
    @cursor_max = calculate_width(@line)
    arg -= 1
    ed_search_next_history(key, arg: arg) if arg > 0
  end
  alias_method :history_search_forward, :ed_search_next_history

  private def ed_prev_history(key, arg: 1)
    if @is_multiline and @line_index > 0
      @previous_line_index = @line_index
      @line_index -= 1
      return
    end
    if Reline::HISTORY.empty?
      return
    end
    if @history_pointer.nil?
      @history_pointer = Reline::HISTORY.size - 1
      if @is_multiline
        @line_backup_in_history = whole_buffer
        @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
        @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
        @line_index = @buffer_of_lines.size - 1
        @line = @buffer_of_lines.last
        @rerender_all = true
      else
        @line_backup_in_history = @line
        @line = Reline::HISTORY[@history_pointer]
      end
    elsif @history_pointer.zero?
      return
    else
      if @is_multiline
        Reline::HISTORY[@history_pointer] = whole_buffer
        @history_pointer -= 1
        @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
        @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
        @line_index = @buffer_of_lines.size - 1
        @line = @buffer_of_lines.last
        @rerender_all = true
      else
        Reline::HISTORY[@history_pointer] = @line
        @history_pointer -= 1
        @line = Reline::HISTORY[@history_pointer]
      end
    end
    if @config.editing_mode_is?(:emacs, :vi_insert)
      @cursor_max = @cursor = calculate_width(@line)
      @byte_pointer = @line.bytesize
    elsif @config.editing_mode_is?(:vi_command)
      @byte_pointer = @cursor = 0
      @cursor_max = calculate_width(@line)
    end
    arg -= 1
    ed_prev_history(key, arg: arg) if arg > 0
  end

  private def ed_next_history(key, arg: 1)
    if @is_multiline and @line_index < (@buffer_of_lines.size - 1)
      @previous_line_index = @line_index
      @line_index += 1
      return
    end
    if @history_pointer.nil?
      return
    elsif @history_pointer == (Reline::HISTORY.size - 1)
      if @is_multiline
        @history_pointer = nil
        @buffer_of_lines = @line_backup_in_history.split("\n")
        @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
        @line_index = 0
        @line = @buffer_of_lines.first
        @rerender_all = true
      else
        @history_pointer = nil
        @line = @line_backup_in_history
      end
    else
      if @is_multiline
        Reline::HISTORY[@history_pointer] = whole_buffer
        @history_pointer += 1
        @buffer_of_lines = Reline::HISTORY[@history_pointer].split("\n")
        @buffer_of_lines = [String.new(encoding: @encoding)] if @buffer_of_lines.empty?
        @line_index = 0
        @line = @buffer_of_lines.first
        @rerender_all = true
      else
        Reline::HISTORY[@history_pointer] = @line
        @history_pointer += 1
        @line = Reline::HISTORY[@history_pointer]
      end
    end
    @line = '' unless @line
    if @config.editing_mode_is?(:emacs, :vi_insert)
      @cursor_max = @cursor = calculate_width(@line)
      @byte_pointer = @line.bytesize
    elsif @config.editing_mode_is?(:vi_command)
      @byte_pointer = @cursor = 0
      @cursor_max = calculate_width(@line)
    end
    arg -= 1
    ed_next_history(key, arg: arg) if arg > 0
  end

  private def ed_newline(key)
    if @is_multiline
      if @config.editing_mode_is?(:vi_command)
        if @line_index < (@buffer_of_lines.size - 1)
          ed_next_history(key) # means cursor down
        else
          # should check confirm_multiline_termination to finish?
          finish
        end
      else
        if @line_index == (@buffer_of_lines.size - 1)
          if confirm_multiline_termination
            finish
          else
            key_newline(key)
          end
        else
          # should check confirm_multiline_termination to finish?
          @previous_line_index = @line_index
          @line_index = @buffer_of_lines.size - 1
          finish
        end
      end
    else
      if @history_pointer
        Reline::HISTORY[@history_pointer] = @line
        @history_pointer = nil
      end
      finish
    end
  end

  private def em_delete_prev_char(key)
    if @is_multiline and @cursor == 0 and @line_index > 0
      @buffer_of_lines[@line_index] = @line
      @cursor = calculate_width(@buffer_of_lines[@line_index - 1])
      @byte_pointer = @buffer_of_lines[@line_index - 1].bytesize
      @buffer_of_lines[@line_index - 1] += @buffer_of_lines.delete_at(@line_index)
      @line_index -= 1
      @line = @buffer_of_lines[@line_index]
      @cursor_max = calculate_width(@line)
      @rerender_all = true
    elsif @cursor > 0
      byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
      @byte_pointer -= byte_size
      @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor -= width
      @cursor_max -= width
    end
  end
  alias_method :backward_delete_char, :em_delete_prev_char

  private def ed_kill_line(key)
    if @line.bytesize > @byte_pointer
      @line, deleted = byteslice!(@line, @byte_pointer, @line.bytesize - @byte_pointer)
      @byte_pointer = @line.bytesize
      @cursor = @cursor_max = calculate_width(@line)
      @kill_ring.append(deleted)
    elsif @is_multiline and @byte_pointer == @line.bytesize and @buffer_of_lines.size > @line_index + 1
      @cursor = calculate_width(@line)
      @byte_pointer = @line.bytesize
      @line += @buffer_of_lines.delete_at(@line_index + 1)
      @cursor_max = calculate_width(@line)
      @buffer_of_lines[@line_index] = @line
      @rerender_all = true
      @rest_height += 1
    end
  end

  private def em_kill_line(key)
    if @byte_pointer > 0
      @line, deleted = byteslice!(@line, 0, @byte_pointer)
      @byte_pointer = 0
      @kill_ring.append(deleted, true)
      @cursor_max = calculate_width(@line)
      @cursor = 0
    end
  end

  private def em_delete(key)
    if (not @is_multiline and @line.empty?) or (@is_multiline and @line.empty? and @buffer_of_lines.size == 1)
      @line = nil
      if @buffer_of_lines.size > 1
        scroll_down(@highest_in_all - @first_line_started_from)
      end
      Reline::IOGate.move_cursor_column(0)
      @eof = true
      finish
    elsif @byte_pointer < @line.bytesize
      splitted_last = @line.byteslice(@byte_pointer, @line.bytesize)
      mbchar = splitted_last.grapheme_clusters.first
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor_max -= width
      @line, = byteslice!(@line, @byte_pointer, mbchar.bytesize)
    elsif @is_multiline and @byte_pointer == @line.bytesize and @buffer_of_lines.size > @line_index + 1
      @cursor = calculate_width(@line)
      @byte_pointer = @line.bytesize
      @line += @buffer_of_lines.delete_at(@line_index + 1)
      @cursor_max = calculate_width(@line)
      @buffer_of_lines[@line_index] = @line
      @rerender_all = true
      @rest_height += 1
    end
  end
  alias_method :delete_char, :em_delete

  private def em_delete_or_list(key)
    if @line.empty? or @byte_pointer < @line.bytesize
      em_delete(key)
    else # show completed list
      result = call_completion_proc
      if result.is_a?(Array)
        complete(result, true)
      end
    end
  end
  alias_method :delete_char_or_list, :em_delete_or_list

  private def em_yank(key)
    yanked = @kill_ring.yank
    if yanked
      @line = byteinsert(@line, @byte_pointer, yanked)
      yanked_width = calculate_width(yanked)
      @cursor += yanked_width
      @cursor_max += yanked_width
      @byte_pointer += yanked.bytesize
    end
  end

  private def em_yank_pop(key)
    yanked, prev_yank = @kill_ring.yank_pop
    if yanked
      prev_yank_width = calculate_width(prev_yank)
      @cursor -= prev_yank_width
      @cursor_max -= prev_yank_width
      @byte_pointer -= prev_yank.bytesize
      @line, = byteslice!(@line, @byte_pointer, prev_yank.bytesize)
      @line = byteinsert(@line, @byte_pointer, yanked)
      yanked_width = calculate_width(yanked)
      @cursor += yanked_width
      @cursor_max += yanked_width
      @byte_pointer += yanked.bytesize
    end
  end

  private def ed_clear_screen(key)
    @cleared = true
  end
  alias_method :clear_screen, :ed_clear_screen

  private def em_next_word(key)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.em_forward_word(@line, @byte_pointer)
      @byte_pointer += byte_size
      @cursor += width
    end
  end
  alias_method :forward_word, :em_next_word

  private def ed_prev_word(key)
    if @byte_pointer > 0
      byte_size, width = Reline::Unicode.em_backward_word(@line, @byte_pointer)
      @byte_pointer -= byte_size
      @cursor -= width
    end
  end
  alias_method :backward_word, :ed_prev_word

  private def em_delete_next_word(key)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.em_forward_word(@line, @byte_pointer)
      @line, word = byteslice!(@line, @byte_pointer, byte_size)
      @kill_ring.append(word)
      @cursor_max -= width
    end
  end

  private def ed_delete_prev_word(key)
    if @byte_pointer > 0
      byte_size, width = Reline::Unicode.em_backward_word(@line, @byte_pointer)
      @line, word = byteslice!(@line, @byte_pointer - byte_size, byte_size)
      @kill_ring.append(word, true)
      @byte_pointer -= byte_size
      @cursor -= width
      @cursor_max -= width
    end
  end

  private def ed_transpose_chars(key)
    if @byte_pointer > 0
      if @cursor_max > @cursor
        byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
        mbchar = @line.byteslice(@byte_pointer, byte_size)
        width = Reline::Unicode.get_mbchar_width(mbchar)
        @cursor += width
        @byte_pointer += byte_size
      end
      back1_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
      if (@byte_pointer - back1_byte_size) > 0
        back2_byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer - back1_byte_size)
        back2_pointer = @byte_pointer - back1_byte_size - back2_byte_size
        @line, back2_mbchar = byteslice!(@line, back2_pointer, back2_byte_size)
        @line = byteinsert(@line, @byte_pointer - back2_byte_size, back2_mbchar)
      end
    end
  end
  alias_method :transpose_chars, :ed_transpose_chars

  private def ed_transpose_words(key)
    left_word_start, middle_start, right_word_start, after_start = Reline::Unicode.ed_transpose_words(@line, @byte_pointer)
    before = @line.byteslice(0, left_word_start)
    left_word = @line.byteslice(left_word_start, middle_start - left_word_start)
    middle = @line.byteslice(middle_start, right_word_start - middle_start)
    right_word = @line.byteslice(right_word_start, after_start - right_word_start)
    after = @line.byteslice(after_start, @line.bytesize - after_start)
    return if left_word.empty? or right_word.empty?
    @line = before + right_word + middle + left_word + after
    from_head_to_left_word = before + right_word + middle + left_word
    @byte_pointer = from_head_to_left_word.bytesize
    @cursor = calculate_width(from_head_to_left_word)
  end
  alias_method :transpose_words, :ed_transpose_words

  private def em_capitol_case(key)
    if @line.bytesize > @byte_pointer
      byte_size, _, new_str = Reline::Unicode.em_forward_word_with_capitalization(@line, @byte_pointer)
      before = @line.byteslice(0, @byte_pointer)
      after = @line.byteslice((@byte_pointer + byte_size)..-1)
      @line = before + new_str + after
      @byte_pointer += new_str.bytesize
      @cursor += calculate_width(new_str)
    end
  end
  alias_method :capitalize_word, :em_capitol_case

  private def em_lower_case(key)
    if @line.bytesize > @byte_pointer
      byte_size, = Reline::Unicode.em_forward_word(@line, @byte_pointer)
      part = @line.byteslice(@byte_pointer, byte_size).grapheme_clusters.map { |mbchar|
        mbchar =~ /[A-Z]/ ? mbchar.downcase : mbchar
      }.join
      rest = @line.byteslice((@byte_pointer + byte_size)..-1)
      @line = @line.byteslice(0, @byte_pointer) + part
      @byte_pointer = @line.bytesize
      @cursor = calculate_width(@line)
      @cursor_max = @cursor + calculate_width(rest)
      @line += rest
    end
  end
  alias_method :downcase_word, :em_lower_case

  private def em_upper_case(key)
    if @line.bytesize > @byte_pointer
      byte_size, = Reline::Unicode.em_forward_word(@line, @byte_pointer)
      part = @line.byteslice(@byte_pointer, byte_size).grapheme_clusters.map { |mbchar|
        mbchar =~ /[a-z]/ ? mbchar.upcase : mbchar
      }.join
      rest = @line.byteslice((@byte_pointer + byte_size)..-1)
      @line = @line.byteslice(0, @byte_pointer) + part
      @byte_pointer = @line.bytesize
      @cursor = calculate_width(@line)
      @cursor_max = @cursor + calculate_width(rest)
      @line += rest
    end
  end
  alias_method :upcase_word, :em_upper_case

  private def em_kill_region(key)
    if @byte_pointer > 0
      byte_size, width = Reline::Unicode.em_big_backward_word(@line, @byte_pointer)
      @line, deleted = byteslice!(@line, @byte_pointer - byte_size, byte_size)
      @byte_pointer -= byte_size
      @cursor -= width
      @cursor_max -= width
      @kill_ring.append(deleted)
    end
  end

  private def copy_for_vi(text)
    if @config.editing_mode_is?(:vi_insert) or @config.editing_mode_is?(:vi_command)
      @vi_clipboard = text
    end
  end

  private def vi_insert(key)
    @config.editing_mode = :vi_insert
  end

  private def vi_add(key)
    @config.editing_mode = :vi_insert
    ed_next_char(key)
  end

  private def vi_command_mode(key)
    ed_prev_char(key)
    @config.editing_mode = :vi_command
  end
  alias_method :backward_char, :ed_prev_char

  private def vi_next_word(key, arg: 1)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.vi_forward_word(@line, @byte_pointer)
      @byte_pointer += byte_size
      @cursor += width
    end
    arg -= 1
    vi_next_word(key, arg: arg) if arg > 0
  end

  private def vi_prev_word(key, arg: 1)
    if @byte_pointer > 0
      byte_size, width = Reline::Unicode.vi_backward_word(@line, @byte_pointer)
      @byte_pointer -= byte_size
      @cursor -= width
    end
    arg -= 1
    vi_prev_word(key, arg: arg) if arg > 0
  end

  private def vi_end_word(key, arg: 1)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.vi_forward_end_word(@line, @byte_pointer)
      @byte_pointer += byte_size
      @cursor += width
    end
    arg -= 1
    vi_end_word(key, arg: arg) if arg > 0
  end

  private def vi_next_big_word(key, arg: 1)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.vi_big_forward_word(@line, @byte_pointer)
      @byte_pointer += byte_size
      @cursor += width
    end
    arg -= 1
    vi_next_big_word(key, arg: arg) if arg > 0
  end

  private def vi_prev_big_word(key, arg: 1)
    if @byte_pointer > 0
      byte_size, width = Reline::Unicode.vi_big_backward_word(@line, @byte_pointer)
      @byte_pointer -= byte_size
      @cursor -= width
    end
    arg -= 1
    vi_prev_big_word(key, arg: arg) if arg > 0
  end

  private def vi_end_big_word(key, arg: 1)
    if @line.bytesize > @byte_pointer
      byte_size, width = Reline::Unicode.vi_big_forward_end_word(@line, @byte_pointer)
      @byte_pointer += byte_size
      @cursor += width
    end
    arg -= 1
    vi_end_big_word(key, arg: arg) if arg > 0
  end

  private def vi_delete_prev_char(key)
    if @is_multiline and @cursor == 0 and @line_index > 0
      @buffer_of_lines[@line_index] = @line
      @cursor = calculate_width(@buffer_of_lines[@line_index - 1])
      @byte_pointer = @buffer_of_lines[@line_index - 1].bytesize
      @buffer_of_lines[@line_index - 1] += @buffer_of_lines.delete_at(@line_index)
      @line_index -= 1
      @line = @buffer_of_lines[@line_index]
      @cursor_max = calculate_width(@line)
      @rerender_all = true
    elsif @cursor > 0
      byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
      @byte_pointer -= byte_size
      @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor -= width
      @cursor_max -= width
    end
  end

  private def vi_insert_at_bol(key)
    ed_move_to_beg(key)
    @config.editing_mode = :vi_insert
  end

  private def vi_add_at_eol(key)
    ed_move_to_end(key)
    @config.editing_mode = :vi_insert
  end

  private def ed_delete_prev_char(key, arg: 1)
    deleted = ''
    arg.times do
      if @cursor > 0
        byte_size = Reline::Unicode.get_prev_mbchar_size(@line, @byte_pointer)
        @byte_pointer -= byte_size
        @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
        deleted.prepend(mbchar)
        width = Reline::Unicode.get_mbchar_width(mbchar)
        @cursor -= width
        @cursor_max -= width
      end
    end
    copy_for_vi(deleted)
  end

  private def vi_zero(key)
    @byte_pointer = 0
    @cursor = 0
  end

  private def vi_change_meta(key)
    @waiting_operator_proc = proc { |cursor_diff, byte_pointer_diff|
      if byte_pointer_diff > 0
        @line, cut = byteslice!(@line, @byte_pointer, byte_pointer_diff)
      elsif byte_pointer_diff < 0
        @line, cut = byteslice!(@line, @byte_pointer + byte_pointer_diff, -byte_pointer_diff)
      end
      copy_for_vi(cut)
      @cursor += cursor_diff if cursor_diff < 0
      @cursor_max -= cursor_diff.abs
      @byte_pointer += byte_pointer_diff if byte_pointer_diff < 0
      @config.editing_mode = :vi_insert
    }
  end

  private def vi_delete_meta(key)
    @waiting_operator_proc = proc { |cursor_diff, byte_pointer_diff|
      if byte_pointer_diff > 0
        @line, cut = byteslice!(@line, @byte_pointer, byte_pointer_diff)
      elsif byte_pointer_diff < 0
        @line, cut = byteslice!(@line, @byte_pointer + byte_pointer_diff, -byte_pointer_diff)
      end
      copy_for_vi(cut)
      @cursor += cursor_diff if cursor_diff < 0
      @cursor_max -= cursor_diff.abs
      @byte_pointer += byte_pointer_diff if byte_pointer_diff < 0
    }
  end

  private def vi_yank(key)
  end

  private def vi_list_or_eof(key)
    if (not @is_multiline and @line.empty?) or (@is_multiline and @line.empty? and @buffer_of_lines.size == 1)
      @line = nil
      if @buffer_of_lines.size > 1
        scroll_down(@highest_in_all - @first_line_started_from)
      end
      Reline::IOGate.move_cursor_column(0)
      @eof = true
      finish
    else
      ed_newline(key)
    end
  end
  alias_method :vi_end_of_transmission, :vi_list_or_eof
  alias_method :vi_eof_maybe, :vi_list_or_eof

  private def ed_delete_next_char(key, arg: 1)
    byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
    unless @line.empty? || byte_size == 0
      @line, mbchar = byteslice!(@line, @byte_pointer, byte_size)
      copy_for_vi(mbchar)
      width = Reline::Unicode.get_mbchar_width(mbchar)
      @cursor_max -= width
      if @cursor > 0 and @cursor >= @cursor_max
        @byte_pointer -= byte_size
        @cursor -= width
      end
    end
    arg -= 1
    ed_delete_next_char(key, arg: arg) if arg > 0
  end

  private def vi_to_history_line(key)
    if Reline::HISTORY.empty?
      return
    end
    if @history_pointer.nil?
      @history_pointer = 0
      @line_backup_in_history = @line
      @line = Reline::HISTORY[@history_pointer]
      @cursor_max = calculate_width(@line)
      @cursor = 0
      @byte_pointer = 0
    elsif @history_pointer.zero?
      return
    else
      Reline::HISTORY[@history_pointer] = @line
      @history_pointer = 0
      @line = Reline::HISTORY[@history_pointer]
      @cursor_max = calculate_width(@line)
      @cursor = 0
      @byte_pointer = 0
    end
  end

  private def vi_histedit(key)
    path = Tempfile.open { |fp|
      fp.write @line
      fp.path
    }
    system("#{ENV['EDITOR']} #{path}")
    @line = File.read(path)
    finish
  end

  private def vi_paste_prev(key, arg: 1)
    if @vi_clipboard.size > 0
      @line = byteinsert(@line, @byte_pointer, @vi_clipboard)
      @cursor_max += calculate_width(@vi_clipboard)
      cursor_point = @vi_clipboard.grapheme_clusters[0..-2].join
      @cursor += calculate_width(cursor_point)
      @byte_pointer += cursor_point.bytesize
    end
    arg -= 1
    vi_paste_prev(key, arg: arg) if arg > 0
  end

  private def vi_paste_next(key, arg: 1)
    if @vi_clipboard.size > 0
      byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
      @line = byteinsert(@line, @byte_pointer + byte_size, @vi_clipboard)
      @cursor_max += calculate_width(@vi_clipboard)
      @cursor += calculate_width(@vi_clipboard)
      @byte_pointer += @vi_clipboard.bytesize
    end
    arg -= 1
    vi_paste_next(key, arg: arg) if arg > 0
  end

  private def ed_argument_digit(key)
    if @vi_arg.nil?
      unless key.chr.to_i.zero?
        @vi_arg = key.chr.to_i
      end
    else
      @vi_arg = @vi_arg * 10 + key.chr.to_i
    end
  end

  private def vi_to_column(key, arg: 0)
    @byte_pointer, @cursor = @line.grapheme_clusters.inject([0, 0]) { |total, gc|
      # total has [byte_size, cursor]
      mbchar_width = Reline::Unicode.get_mbchar_width(gc)
      if (total.last + mbchar_width) >= arg
        break total
      elsif (total.last + mbchar_width) >= @cursor_max
        break total
      else
        total = [total.first + gc.bytesize, total.last + mbchar_width]
        total
      end
    }
  end

  private def vi_replace_char(key, arg: 1)
    @waiting_proc = ->(k) {
      if arg == 1
        byte_size = Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer)
        before = @line.byteslice(0, @byte_pointer)
        remaining_point = @byte_pointer + byte_size
        after = @line.byteslice(remaining_point, @line.size - remaining_point)
        @line = before + k.chr + after
        @cursor_max = calculate_width(@line)
        @waiting_proc = nil
      elsif arg > 1
        byte_size = 0
        arg.times do
          byte_size += Reline::Unicode.get_next_mbchar_size(@line, @byte_pointer + byte_size)
        end
        before = @line.byteslice(0, @byte_pointer)
        remaining_point = @byte_pointer + byte_size
        after = @line.byteslice(remaining_point, @line.size - remaining_point)
        replaced = k.chr * arg
        @line = before + replaced + after
        @byte_pointer += replaced.bytesize
        @cursor += calculate_width(replaced)
        @cursor_max = calculate_width(@line)
        @waiting_proc = nil
      end
    }
  end

  private def vi_next_char(key, arg: 1)
    @waiting_proc = ->(key_for_proc) { search_next_char(key_for_proc, arg) }
  end

  private def vi_to_next_char(key, arg: 1)
    @waiting_proc = ->(key_for_proc) { search_next_char(key_for_proc, arg, true) }
  end

  private def search_next_char(key, arg, need_prev_char = false)
    if key.instance_of?(String)
      inputed_char = key
    else
      inputed_char = key.chr
    end
    prev_total = nil
    total = nil
    found = false
    @line.byteslice(@byte_pointer..-1).grapheme_clusters.each do |mbchar|
      # total has [byte_size, cursor]
      unless total
        # skip cursor point
        width = Reline::Unicode.get_mbchar_width(mbchar)
        total = [mbchar.bytesize, width]
      else
        if inputed_char == mbchar
          arg -= 1
          if arg.zero?
            found = true
            break
          end
        end
        width = Reline::Unicode.get_mbchar_width(mbchar)
        prev_total = total
        total = [total.first + mbchar.bytesize, total.last + width]
      end
    end
    if not need_prev_char and found and total
      byte_size, width = total
      @byte_pointer += byte_size
      @cursor += width
    elsif need_prev_char and found and prev_total
      byte_size, width = prev_total
      @byte_pointer += byte_size
      @cursor += width
    end
    @waiting_proc = nil
  end

  private def vi_prev_char(key, arg: 1)
    @waiting_proc = ->(key_for_proc) { search_prev_char(key_for_proc, arg) }
  end

  private def vi_to_prev_char(key, arg: 1)
    @waiting_proc = ->(key_for_proc) { search_prev_char(key_for_proc, arg, true) }
  end

  private def search_prev_char(key, arg, need_next_char = false)
    if key.instance_of?(String)
      inputed_char = key
    else
      inputed_char = key.chr
    end
    prev_total = nil
    total = nil
    found = false
    @line.byteslice(0..@byte_pointer).grapheme_clusters.reverse_each do |mbchar|
      # total has [byte_size, cursor]
      unless total
        # skip cursor point
        width = Reline::Unicode.get_mbchar_width(mbchar)
        total = [mbchar.bytesize, width]
      else
        if inputed_char == mbchar
          arg -= 1
          if arg.zero?
            found = true
            break
          end
        end
        width = Reline::Unicode.get_mbchar_width(mbchar)
        prev_total = total
        total = [total.first + mbchar.bytesize, total.last + width]
      end
    end
    if not need_next_char and found and total
      byte_size, width = total
      @byte_pointer -= byte_size
      @cursor -= width
    elsif need_next_char and found and prev_total
      byte_size, width = prev_total
      @byte_pointer -= byte_size
      @cursor -= width
    end
    @waiting_proc = nil
  end

  private def vi_join_lines(key, arg: 1)
    if @is_multiline and @buffer_of_lines.size > @line_index + 1
      @cursor = calculate_width(@line)
      @byte_pointer = @line.bytesize
      @line += ' ' + @buffer_of_lines.delete_at(@line_index + 1).lstrip
      @cursor_max = calculate_width(@line)
      @buffer_of_lines[@line_index] = @line
      @rerender_all = true
      @rest_height += 1
    end
    arg -= 1
    vi_join_lines(key, arg: arg) if arg > 0
  end

  private def em_set_mark(key)
    @mark_pointer = [@byte_pointer, @line_index]
  end
  alias_method :set_mark, :em_set_mark

  private def em_exchange_mark(key)
    new_pointer = [@byte_pointer, @line_index]
    @previous_line_index = @line_index
    @byte_pointer, @line_index = @mark_pointer
    @cursor = calculate_width(@line.byteslice(0, @byte_pointer))
    @cursor_max = calculate_width(@line)
    @mark_pointer = new_pointer
  end
  alias_method :exchange_point_and_mark, :em_exchange_mark
end
PKJH[�>�&&share/ruby/reline/version.rbnu�[���module Reline
  VERSION = '0.1.5'
end
PKJH[�(����share/ruby/reline/kill_ring.rbnu�[���class Reline::KillRing
  module State
    FRESH = :fresh
    CONTINUED = :continued
    PROCESSED = :processed
    YANK = :yank
  end

  RingPoint = Struct.new(:backward, :forward, :str) do
    def initialize(str)
      super(nil, nil, str)
    end

    def ==(other)
      object_id == other.object_id
    end
  end

  class RingBuffer
    attr_reader :size
    attr_reader :head

    def initialize(max = 1024)
      @max = max
      @size = 0
      @head = nil # reading head of ring-shaped tape
    end

    def <<(point)
      if @size.zero?
        @head = point
        @head.backward = @head
        @head.forward = @head
        @size = 1
      elsif @size >= @max
        tail = @head.forward
        new_tail = tail.forward
        @head.forward = point
        point.backward = @head
        new_tail.backward = point
        point.forward = new_tail
        @head = point
      else
        tail = @head.forward
        @head.forward = point
        point.backward = @head
        tail.backward = point
        point.forward = tail
        @head = point
        @size += 1
      end
    end

    def empty?
      @size.zero?
    end
  end

  def initialize(max = 1024)
    @ring = RingBuffer.new(max)
    @ring_pointer = nil
    @buffer = nil
    @state = State::FRESH
  end

  def append(string, before_p = false)
    case @state
    when State::FRESH, State::YANK
      @ring << RingPoint.new(string)
      @state = State::CONTINUED
    when State::CONTINUED, State::PROCESSED
      if before_p
        @ring.head.str.prepend(string)
      else
        @ring.head.str.concat(string)
      end
      @state = State::CONTINUED
    end
  end

  def process
    case @state
    when State::FRESH
      # nothing to do
    when State::CONTINUED
      @state = State::PROCESSED
    when State::PROCESSED
      @state = State::FRESH
    when State::YANK
      # nothing to do
    end
  end

  def yank
    unless @ring.empty?
      @state = State::YANK
      @ring_pointer = @ring.head
      @ring_pointer.str
    else
      nil
    end
  end

  def yank_pop
    if @state == State::YANK
      prev_yank = @ring_pointer.str
      @ring_pointer = @ring_pointer.backward
      [@ring_pointer.str, prev_yank]
    else
      nil
    end
  end
end
PKJH[o]#zzshare/ruby/reline/history.rbnu�[���class Reline::History < Array
  def initialize(config)
    @config = config
  end

  def to_s
    'HISTORY'
  end

  def delete_at(index)
    index = check_index(index)
    super(index)
  end

  def [](index)
    index = check_index(index) unless index.is_a?(Range)
    super(index)
  end

  def []=(index, val)
    index = check_index(index)
    super(index, String.new(val, encoding: Reline.encoding_system_needs))
  end

  def concat(*val)
    val.each do |v|
      push(*v)
    end
  end

  def push(*val)
    # If history_size is zero, all histories are dropped.
    return self if @config.history_size.zero?
    # If history_size is negative, history size is unlimited.
    if @config.history_size.positive?
      diff = size + val.size - @config.history_size
      if diff > 0
        if diff <= size
          shift(diff)
        else
          diff -= size
          clear
          val.shift(diff)
        end
      end
    end
    super(*(val.map{ |v|
      String.new(v, encoding: Reline.encoding_system_needs)
    }))
  end

  def <<(val)
    # If history_size is zero, all histories are dropped.
    return self if @config.history_size.zero?
    # If history_size is negative, history size is unlimited.
    if @config.history_size.positive?
      shift if size + 1 > @config.history_size
    end
    super(String.new(val, encoding: Reline.encoding_system_needs))
  end

  private def check_index(index)
    index += size if index < 0
    if index < -2147483648 or 2147483647 < index
      raise RangeError.new("integer #{index} too big to convert to `int'")
    end
    # If history_size is negative, history size is unlimited.
    if @config.history_size.positive?
      if index < -@config.history_size or @config.history_size < index
        raise RangeError.new("index=<#{index}>")
      end
    end
    raise IndexError.new("index=<#{index}>") if index < 0 or size <= index
    index
  end
end
PKJH[���share/ruby/reline/key_stroke.rbnu�[���class Reline::KeyStroke
  using Module.new {
    refine Array do
      def start_with?(other)
        other.size <= size && other == self.take(other.size)
      end

      def bytes
        self
      end
    end
  }

  def initialize(config)
    @config = config
  end

  def match_status(input)
    key_mapping.keys.select { |lhs|
      lhs.start_with? input
    }.tap { |it|
      return :matched  if it.size == 1 && (it.max_by(&:size)&.size&.== input.size)
      return :matching if it.size == 1 && (it.max_by(&:size)&.size&.!= input.size)
      return :matched  if it.max_by(&:size)&.size&.< input.size
      return :matching if it.size > 1
    }
    key_mapping.keys.select { |lhs|
      input.start_with? lhs
    }.tap { |it|
      return it.size > 0 ? :matched : :unmatched
    }
  end

  def expand(input)
    lhs = key_mapping.keys.select { |item| input.start_with? item }.sort_by(&:size).reverse.first
    return input unless lhs
    rhs = key_mapping[lhs]

    case rhs
    when String
      rhs_bytes = rhs.bytes
      expand(expand(rhs_bytes) + expand(input.drop(lhs.size)))
    when Symbol
      [rhs] + expand(input.drop(lhs.size))
    when Array
      rhs
    end
  end

  private

  def key_mapping
    @config.key_bindings
  end
end
PKJH[.x�p��share/ruby/reline/key_actor.rbnu�[���module Reline::KeyActor
end

require 'reline/key_actor/base'
require 'reline/key_actor/emacs'
require 'reline/key_actor/vi_command'
require 'reline/key_actor/vi_insert'
PKJH[~=.%$%$share/ruby/reline/windows.rbnu�[���require 'fiddle/import'

class Reline::Windows
  def self.encoding
    Encoding::UTF_8
  end

  def self.win?
    true
  end

  RAW_KEYSTROKE_CONFIG = {
    [224, 72] => :ed_prev_history, # ↑
    [224, 80] => :ed_next_history, # ↓
    [224, 77] => :ed_next_char,    # →
    [224, 75] => :ed_prev_char,    # ←
    [224, 83] => :key_delete,      # Del
    [224, 71] => :ed_move_to_beg,  # Home
    [224, 79] => :ed_move_to_end,  # End
    [  0, 41] => :ed_unassigned,   # input method on/off
    [  0, 72] => :ed_prev_history, # ↑
    [  0, 80] => :ed_next_history, # ↓
    [  0, 77] => :ed_next_char,    # →
    [  0, 75] => :ed_prev_char,    # ←
    [  0, 83] => :key_delete,      # Del
    [  0, 71] => :ed_move_to_beg,  # Home
    [  0, 79] => :ed_move_to_end   # End
  }

  if defined? JRUBY_VERSION
    require 'win32api'
  else
    class Win32API
      DLL = {}
      TYPEMAP = {"0" => Fiddle::TYPE_VOID, "S" => Fiddle::TYPE_VOIDP, "I" => Fiddle::TYPE_LONG}
      POINTER_TYPE = Fiddle::SIZEOF_VOIDP == Fiddle::SIZEOF_LONG_LONG ? 'q*' : 'l!*'

      WIN32_TYPES = "VPpNnLlIi"
      DL_TYPES = "0SSI"

      def initialize(dllname, func, import, export = "0", calltype = :stdcall)
        @proto = [import].join.tr(WIN32_TYPES, DL_TYPES).sub(/^(.)0*$/, '\1')
        import = @proto.chars.map {|win_type| TYPEMAP[win_type.tr(WIN32_TYPES, DL_TYPES)]}
        export = TYPEMAP[export.tr(WIN32_TYPES, DL_TYPES)]
        calltype = Fiddle::Importer.const_get(:CALL_TYPE_TO_ABI)[calltype]

        handle = DLL[dllname] ||=
                 begin
                   Fiddle.dlopen(dllname)
                 rescue Fiddle::DLError
                   raise unless File.extname(dllname).empty?
                   Fiddle.dlopen(dllname + ".dll")
                 end

        @func = Fiddle::Function.new(handle[func], import, export, calltype)
      rescue Fiddle::DLError => e
        raise LoadError, e.message, e.backtrace
      end

      def call(*args)
        import = @proto.split("")
        args.each_with_index do |x, i|
          args[i], = [x == 0 ? nil : x].pack("p").unpack(POINTER_TYPE) if import[i] == "S"
          args[i], = [x].pack("I").unpack("i") if import[i] == "I"
        end
        ret, = @func.call(*args)
        return ret || 0
      end
    end
  end

  VK_MENU = 0x12
  VK_LMENU = 0xA4
  VK_CONTROL = 0x11
  VK_SHIFT = 0x10
  STD_INPUT_HANDLE = -10
  STD_OUTPUT_HANDLE = -11
  WINDOW_BUFFER_SIZE_EVENT = 0x04
  FILE_TYPE_PIPE = 0x0003
  FILE_NAME_INFO = 2
  @@getwch = Win32API.new('msvcrt', '_getwch', [], 'I')
  @@kbhit = Win32API.new('msvcrt', '_kbhit', [], 'I')
  @@GetKeyState = Win32API.new('user32', 'GetKeyState', ['L'], 'L')
  @@GetConsoleScreenBufferInfo = Win32API.new('kernel32', 'GetConsoleScreenBufferInfo', ['L', 'P'], 'L')
  @@SetConsoleCursorPosition = Win32API.new('kernel32', 'SetConsoleCursorPosition', ['L', 'L'], 'L')
  @@GetStdHandle = Win32API.new('kernel32', 'GetStdHandle', ['L'], 'L')
  @@FillConsoleOutputCharacter = Win32API.new('kernel32', 'FillConsoleOutputCharacter', ['L', 'L', 'L', 'L', 'P'], 'L')
  @@ScrollConsoleScreenBuffer = Win32API.new('kernel32', 'ScrollConsoleScreenBuffer', ['L', 'P', 'P', 'L', 'P'], 'L')
  @@hConsoleHandle = @@GetStdHandle.call(STD_OUTPUT_HANDLE)
  @@hConsoleInputHandle = @@GetStdHandle.call(STD_INPUT_HANDLE)
  @@GetNumberOfConsoleInputEvents = Win32API.new('kernel32', 'GetNumberOfConsoleInputEvents', ['L', 'P'], 'L')
  @@ReadConsoleInput = Win32API.new('kernel32', 'ReadConsoleInput', ['L', 'P', 'L', 'P'], 'L')
  @@GetFileType = Win32API.new('kernel32', 'GetFileType', ['L'], 'L')
  @@GetFileInformationByHandleEx = Win32API.new('kernel32', 'GetFileInformationByHandleEx', ['L', 'I', 'P', 'L'], 'I')
  @@FillConsoleOutputAttribute = Win32API.new('kernel32', 'FillConsoleOutputAttribute', ['L', 'L', 'L', 'L', 'P'], 'L')

  @@input_buf = []
  @@output_buf = []

  def self.msys_tty?(io=@@hConsoleInputHandle)
    # check if fd is a pipe
    if @@GetFileType.call(io) != FILE_TYPE_PIPE
      return false
    end

    bufsize = 1024
    p_buffer = "\0" * bufsize
    res = @@GetFileInformationByHandleEx.call(io, FILE_NAME_INFO, p_buffer, bufsize - 2)
    return false if res == 0

    # get pipe name: p_buffer layout is:
    #   struct _FILE_NAME_INFO {
    #     DWORD FileNameLength;
    #     WCHAR FileName[1];
    #   } FILE_NAME_INFO
    len = p_buffer[0, 4].unpack("L")[0]
    name = p_buffer[4, len].encode(Encoding::UTF_8, Encoding::UTF_16LE, invalid: :replace)

    # Check if this could be a MSYS2 pty pipe ('\msys-XXXX-ptyN-XX')
    # or a cygwin pty pipe ('\cygwin-XXXX-ptyN-XX')
    name =~ /(msys-|cygwin-).*-pty/ ? true : false
  end

  def self.getwch
    unless @@input_buf.empty?
      return @@input_buf.shift
    end
    while @@kbhit.call == 0
      sleep(0.001)
    end
    until @@kbhit.call == 0
      ret = @@getwch.call
      if ret == 0 or ret == 0xE0
        @@input_buf << ret
        ret = @@getwch.call
        @@input_buf << ret
        return @@input_buf.shift
      end
      begin
        bytes = ret.chr(Encoding::UTF_8).bytes
        @@input_buf.push(*bytes)
      rescue Encoding::UndefinedConversionError
        @@input_buf << ret
        @@input_buf << @@getwch.call if ret == 224
      end
    end
    @@input_buf.shift
  end

  def self.getc
    num_of_events = 0.chr * 8
    while @@GetNumberOfConsoleInputEvents.(@@hConsoleInputHandle, num_of_events) != 0 and num_of_events.unpack('L').first > 0
      input_record = 0.chr * 18
      read_event = 0.chr * 4
      if @@ReadConsoleInput.(@@hConsoleInputHandle, input_record, 1, read_event) != 0
        event = input_record[0, 2].unpack('s*').first
        if event == WINDOW_BUFFER_SIZE_EVENT
          @@winch_handler.()
        end
      end
    end
    unless @@output_buf.empty?
      return @@output_buf.shift
    end
    input = getwch
    meta = (@@GetKeyState.call(VK_LMENU) & 0x80) != 0
    control = (@@GetKeyState.call(VK_CONTROL) & 0x80) != 0
    shift = (@@GetKeyState.call(VK_SHIFT) & 0x80) != 0
    force_enter = !input.instance_of?(Array) && (control or shift) && input == 0x0D
    if force_enter
      # It's treated as Meta+Enter on Windows
      @@output_buf.push("\e".ord)
      @@output_buf.push(input)
    else
      case input
      when 0x00
        meta = false
        @@output_buf.push(input)
        input = getwch
        @@output_buf.push(*input)
      when 0xE0
        @@output_buf.push(input)
        input = getwch
        @@output_buf.push(*input)
      when 0x03
        @@output_buf.push(input)
      else
        @@output_buf.push(input)
      end
    end
    if meta
      "\e".ord
    else
      @@output_buf.shift
    end
  end

  def self.ungetc(c)
    @@output_buf.unshift(c)
  end

  def self.get_screen_size
    csbi = 0.chr * 22
    @@GetConsoleScreenBufferInfo.call(@@hConsoleHandle, csbi)
    csbi[0, 4].unpack('SS').reverse
  end

  def self.cursor_pos
    csbi = 0.chr * 22
    @@GetConsoleScreenBufferInfo.call(@@hConsoleHandle, csbi)
    x = csbi[4, 2].unpack('s*').first
    y = csbi[6, 2].unpack('s*').first
    Reline::CursorPos.new(x, y)
  end

  def self.move_cursor_column(val)
    @@SetConsoleCursorPosition.call(@@hConsoleHandle, cursor_pos.y * 65536 + val)
  end

  def self.move_cursor_up(val)
    if val > 0
      @@SetConsoleCursorPosition.call(@@hConsoleHandle, (cursor_pos.y - val) * 65536 + cursor_pos.x)
    elsif val < 0
      move_cursor_down(-val)
    end
  end

  def self.move_cursor_down(val)
    if val > 0
      @@SetConsoleCursorPosition.call(@@hConsoleHandle, (cursor_pos.y + val) * 65536 + cursor_pos.x)
    elsif val < 0
      move_cursor_up(-val)
    end
  end

  def self.erase_after_cursor
    csbi = 0.chr * 24
    @@GetConsoleScreenBufferInfo.call(@@hConsoleHandle, csbi)
    cursor = csbi[4, 4].unpack('L').first
    written = 0.chr * 4
    @@FillConsoleOutputCharacter.call(@@hConsoleHandle, 0x20, get_screen_size.last - cursor_pos.x, cursor, written)
  end

  def self.scroll_down(val)
    return if val.zero?
    scroll_rectangle = [0, val, get_screen_size.last, get_screen_size.first].pack('s4')
    destination_origin = 0 # y * 65536 + x
    fill = [' '.ord, 0].pack('SS')
    @@ScrollConsoleScreenBuffer.call(@@hConsoleHandle, scroll_rectangle, nil, destination_origin, fill)
  end

  def self.clear_screen
    csbi = 0.chr * 22
    return if @@GetConsoleScreenBufferInfo.call(@@hConsoleHandle, csbi) == 0
    buffer_width = csbi[0, 2].unpack('S').first
    attributes = csbi[8, 2].unpack('S').first
    _window_left, window_top, _window_right, window_bottom = *csbi[10,8].unpack('S*')
    fill_length = buffer_width * (window_bottom - window_top + 1)
    screen_topleft = window_top * 65536
    written = 0.chr * 4
    @@FillConsoleOutputCharacter.call(@@hConsoleHandle, 0x20, fill_length, screen_topleft, written)
    @@FillConsoleOutputAttribute.call(@@hConsoleHandle, attributes, fill_length, screen_topleft, written)
    @@SetConsoleCursorPosition.call(@@hConsoleHandle, screen_topleft)
  end

  def self.set_screen_size(rows, columns)
    raise NotImplementedError
  end

  def self.set_winch_handler(&handler)
    @@winch_handler = handler
  end

  def self.prep
    # do nothing
    nil
  end

  def self.deprep(otio)
    # do nothing
  end
end
PKJH[q7�@W@Wshare/ruby/open3.rbnu�[���# frozen_string_literal: true

#
# = open3.rb: Popen, but with stderr, too
#
# Author:: Yukihiro Matsumoto
# Documentation:: Konrad Meyer
#
# Open3 gives you access to stdin, stdout, and stderr when running other
# programs.
#

#
# Open3 grants you access to stdin, stdout, stderr and a thread to wait for the
# child process when running another program.
# You can specify various attributes, redirections, current directory, etc., of
# the program in the same way as for Process.spawn.
#
# - Open3.popen3 : pipes for stdin, stdout, stderr
# - Open3.popen2 : pipes for stdin, stdout
# - Open3.popen2e : pipes for stdin, merged stdout and stderr
# - Open3.capture3 : give a string for stdin; get strings for stdout, stderr
# - Open3.capture2 : give a string for stdin; get a string for stdout
# - Open3.capture2e : give a string for stdin; get a string for merged stdout and stderr
# - Open3.pipeline_rw : pipes for first stdin and last stdout of a pipeline
# - Open3.pipeline_r : pipe for last stdout of a pipeline
# - Open3.pipeline_w : pipe for first stdin of a pipeline
# - Open3.pipeline_start : run a pipeline without waiting
# - Open3.pipeline : run a pipeline and wait for its completion
#

module Open3

  # Open stdin, stdout, and stderr streams and start external executable.
  # In addition, a thread to wait for the started process is created.
  # The thread has a pid method and a thread variable :pid which is the pid of
  # the started process.
  #
  # Block form:
  #
  #   Open3.popen3([env,] cmd... [, opts]) {|stdin, stdout, stderr, wait_thr|
  #     pid = wait_thr.pid # pid of the started process.
  #     ...
  #     exit_status = wait_thr.value # Process::Status object returned.
  #   }
  #
  # Non-block form:
  #
  #   stdin, stdout, stderr, wait_thr = Open3.popen3([env,] cmd... [, opts])
  #   pid = wait_thr[:pid]  # pid of the started process
  #   ...
  #   stdin.close  # stdin, stdout and stderr should be closed explicitly in this form.
  #   stdout.close
  #   stderr.close
  #   exit_status = wait_thr.value  # Process::Status object returned.
  #
  # The parameters env, cmd, and opts are passed to Process.spawn.
  # A commandline string and a list of argument strings can be accepted as follows:
  #
  #   Open3.popen3("echo abc") {|i, o, e, t| ... }
  #   Open3.popen3("echo", "abc") {|i, o, e, t| ... }
  #   Open3.popen3(["echo", "argv0"], "abc") {|i, o, e, t| ... }
  #
  # If the last parameter, opts, is a Hash, it is recognized as an option for Process.spawn.
  #
  #   Open3.popen3("pwd", :chdir=>"/") {|i,o,e,t|
  #     p o.read.chomp #=> "/"
  #   }
  #
  # wait_thr.value waits for the termination of the process.
  # The block form also waits for the process when it returns.
  #
  # Closing stdin, stdout and stderr does not wait for the process to complete.
  #
  # You should be careful to avoid deadlocks.
  # Since pipes are fixed length buffers,
  # Open3.popen3("prog") {|i, o, e, t| o.read } deadlocks if
  # the program generates too much output on stderr.
  # You should read stdout and stderr simultaneously (using threads or IO.select).
  # However, if you don't need stderr output, you can use Open3.popen2.
  # If merged stdout and stderr output is not a problem, you can use Open3.popen2e.
  # If you really need stdout and stderr output as separate strings, you can consider Open3.capture3.
  #
  def popen3(*cmd, &block)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    in_r, in_w = IO.pipe
    opts[:in] = in_r
    in_w.sync = true

    out_r, out_w = IO.pipe
    opts[:out] = out_w

    err_r, err_w = IO.pipe
    opts[:err] = err_w

    popen_run(cmd, opts, [in_r, out_w, err_w], [in_w, out_r, err_r], &block)
  end
  module_function :popen3

  # Open3.popen2 is similar to Open3.popen3 except that it doesn't create a pipe for
  # the standard error stream.
  #
  # Block form:
  #
  #   Open3.popen2([env,] cmd... [, opts]) {|stdin, stdout, wait_thr|
  #     pid = wait_thr.pid # pid of the started process.
  #     ...
  #     exit_status = wait_thr.value # Process::Status object returned.
  #   }
  #
  # Non-block form:
  #
  #   stdin, stdout, wait_thr = Open3.popen2([env,] cmd... [, opts])
  #   ...
  #   stdin.close  # stdin and stdout should be closed explicitly in this form.
  #   stdout.close
  #
  # See Process.spawn for the optional hash arguments _env_ and _opts_.
  #
  # Example:
  #
  #   Open3.popen2("wc -c") {|i,o,t|
  #     i.print "answer to life the universe and everything"
  #     i.close
  #     p o.gets #=> "42\n"
  #   }
  #
  #   Open3.popen2("bc -q") {|i,o,t|
  #     i.puts "obase=13"
  #     i.puts "6 * 9"
  #     p o.gets #=> "42\n"
  #   }
  #
  #   Open3.popen2("dc") {|i,o,t|
  #     i.print "42P"
  #     i.close
  #     p o.read #=> "*"
  #   }
  #
  def popen2(*cmd, &block)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    in_r, in_w = IO.pipe
    opts[:in] = in_r
    in_w.sync = true

    out_r, out_w = IO.pipe
    opts[:out] = out_w

    popen_run(cmd, opts, [in_r, out_w], [in_w, out_r], &block)
  end
  module_function :popen2

  # Open3.popen2e is similar to Open3.popen3 except that it merges
  # the standard output stream and the standard error stream.
  #
  # Block form:
  #
  #   Open3.popen2e([env,] cmd... [, opts]) {|stdin, stdout_and_stderr, wait_thr|
  #     pid = wait_thr.pid # pid of the started process.
  #     ...
  #     exit_status = wait_thr.value # Process::Status object returned.
  #   }
  #
  # Non-block form:
  #
  #   stdin, stdout_and_stderr, wait_thr = Open3.popen2e([env,] cmd... [, opts])
  #   ...
  #   stdin.close  # stdin and stdout_and_stderr should be closed explicitly in this form.
  #   stdout_and_stderr.close
  #
  # See Process.spawn for the optional hash arguments _env_ and _opts_.
  #
  # Example:
  #   # check gcc warnings
  #   source = "foo.c"
  #   Open3.popen2e("gcc", "-Wall", source) {|i,oe,t|
  #     oe.each {|line|
  #       if /warning/ =~ line
  #         ...
  #       end
  #     }
  #   }
  #
  def popen2e(*cmd, &block)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    in_r, in_w = IO.pipe
    opts[:in] = in_r
    in_w.sync = true

    out_r, out_w = IO.pipe
    opts[[:out, :err]] = out_w

    popen_run(cmd, opts, [in_r, out_w], [in_w, out_r], &block)
  end
  module_function :popen2e

  def popen_run(cmd, opts, child_io, parent_io) # :nodoc:
    pid = spawn(*cmd, opts)
    wait_thr = Process.detach(pid)
    child_io.each(&:close)
    result = [*parent_io, wait_thr]
    if defined? yield
      begin
        return yield(*result)
      ensure
        parent_io.each(&:close)
        wait_thr.join
      end
    end
    result
  end
  module_function :popen_run
  class << self
    private :popen_run
  end

  # Open3.capture3 captures the standard output and the standard error of a command.
  #
  #   stdout_str, stderr_str, status = Open3.capture3([env,] cmd... [, opts])
  #
  # The arguments env, cmd and opts are passed to Open3.popen3 except
  # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>.  See Process.spawn.
  #
  # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
  #
  # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
  #
  # Examples:
  #
  #   # dot is a command of graphviz.
  #   graph = <<'End'
  #     digraph g {
  #       a -> b
  #     }
  #   End
  #   drawn_graph, dot_log = Open3.capture3("dot -v", :stdin_data=>graph)
  #
  #   o, e, s = Open3.capture3("echo abc; sort >&2", :stdin_data=>"foo\nbar\nbaz\n")
  #   p o #=> "abc\n"
  #   p e #=> "bar\nbaz\nfoo\n"
  #   p s #=> #<Process::Status: pid 32682 exit 0>
  #
  #   # generate a thumbnail image using the convert command of ImageMagick.
  #   # However, if the image is really stored in a file,
  #   # system("convert", "-thumbnail", "80", "png:#{filename}", "png:-") is better
  #   # because of reduced memory consumption.
  #   # But if the image is stored in a DB or generated by the gnuplot Open3.capture2 example,
  #   # Open3.capture3 should be considered.
  #   #
  #   image = File.read("/usr/share/openclipart/png/animals/mammals/sheep-md-v0.1.png", :binmode=>true)
  #   thumbnail, err, s = Open3.capture3("convert -thumbnail 80 png:- png:-", :stdin_data=>image, :binmode=>true)
  #   if s.success?
  #     STDOUT.binmode; print thumbnail
  #   end
  #
  def capture3(*cmd)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    stdin_data = opts.delete(:stdin_data) || ''
    binmode = opts.delete(:binmode)

    popen3(*cmd, opts) {|i, o, e, t|
      if binmode
        i.binmode
        o.binmode
        e.binmode
      end
      out_reader = Thread.new { o.read }
      err_reader = Thread.new { e.read }
      begin
        if stdin_data.respond_to? :readpartial
          IO.copy_stream(stdin_data, i)
        else
          i.write stdin_data
        end
      rescue Errno::EPIPE
      end
      i.close
      [out_reader.value, err_reader.value, t.value]
    }
  end
  module_function :capture3

  # Open3.capture2 captures the standard output of a command.
  #
  #   stdout_str, status = Open3.capture2([env,] cmd... [, opts])
  #
  # The arguments env, cmd and opts are passed to Open3.popen3 except
  # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>.  See Process.spawn.
  #
  # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
  #
  # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
  #
  # Example:
  #
  #   # factor is a command for integer factorization.
  #   o, s = Open3.capture2("factor", :stdin_data=>"42")
  #   p o #=> "42: 2 3 7\n"
  #
  #   # generate x**2 graph in png using gnuplot.
  #   gnuplot_commands = <<"End"
  #     set terminal png
  #     plot x**2, "-" with lines
  #     1 14
  #     2 1
  #     3 8
  #     4 5
  #     e
  #   End
  #   image, s = Open3.capture2("gnuplot", :stdin_data=>gnuplot_commands, :binmode=>true)
  #
  def capture2(*cmd)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    stdin_data = opts.delete(:stdin_data)
    binmode = opts.delete(:binmode)

    popen2(*cmd, opts) {|i, o, t|
      if binmode
        i.binmode
        o.binmode
      end
      out_reader = Thread.new { o.read }
      if stdin_data
        begin
          if stdin_data.respond_to? :readpartial
            IO.copy_stream(stdin_data, i)
          else
            i.write stdin_data
          end
        rescue Errno::EPIPE
        end
      end
      i.close
      [out_reader.value, t.value]
    }
  end
  module_function :capture2

  # Open3.capture2e captures the standard output and the standard error of a command.
  #
  #   stdout_and_stderr_str, status = Open3.capture2e([env,] cmd... [, opts])
  #
  # The arguments env, cmd and opts are passed to Open3.popen3 except
  # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>.  See Process.spawn.
  #
  # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
  #
  # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
  #
  # Example:
  #
  #   # capture make log
  #   make_log, s = Open3.capture2e("make")
  #
  def capture2e(*cmd)
    if Hash === cmd.last
      opts = cmd.pop.dup
    else
      opts = {}
    end

    stdin_data = opts.delete(:stdin_data)
    binmode = opts.delete(:binmode)

    popen2e(*cmd, opts) {|i, oe, t|
      if binmode
        i.binmode
        oe.binmode
      end
      outerr_reader = Thread.new { oe.read }
      if stdin_data
        begin
          if stdin_data.respond_to? :readpartial
            IO.copy_stream(stdin_data, i)
          else
            i.write stdin_data
          end
        rescue Errno::EPIPE
        end
      end
      i.close
      [outerr_reader.value, t.value]
    }
  end
  module_function :capture2e

  # Open3.pipeline_rw starts a list of commands as a pipeline with pipes
  # which connect to stdin of the first command and stdout of the last command.
  #
  #   Open3.pipeline_rw(cmd1, cmd2, ... [, opts]) {|first_stdin, last_stdout, wait_threads|
  #     ...
  #   }
  #
  #   first_stdin, last_stdout, wait_threads = Open3.pipeline_rw(cmd1, cmd2, ... [, opts])
  #   ...
  #   first_stdin.close
  #   last_stdout.close
  #
  # Each cmd is a string or an array.
  # If it is an array, the elements are passed to Process.spawn.
  #
  #   cmd:
  #     commandline                              command line string which is passed to a shell
  #     [env, commandline, opts]                 command line string which is passed to a shell
  #     [env, cmdname, arg1, ..., opts]          command name and one or more arguments (no shell)
  #     [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell)
  #
  #   Note that env and opts are optional, as for Process.spawn.
  #
  # The options to pass to Process.spawn are constructed by merging
  # +opts+, the last hash element of the array, and
  # specifications for the pipes between each of the commands.
  #
  # Example:
  #
  #   Open3.pipeline_rw("tr -dc A-Za-z", "wc -c") {|i, o, ts|
  #     i.puts "All persons more than a mile high to leave the court."
  #     i.close
  #     p o.gets #=> "42\n"
  #   }
  #
  #   Open3.pipeline_rw("sort", "cat -n") {|stdin, stdout, wait_thrs|
  #     stdin.puts "foo"
  #     stdin.puts "bar"
  #     stdin.puts "baz"
  #     stdin.close     # send EOF to sort.
  #     p stdout.read   #=> "     1\tbar\n     2\tbaz\n     3\tfoo\n"
  #   }
  def pipeline_rw(*cmds, &block)
    if Hash === cmds.last
      opts = cmds.pop.dup
    else
      opts = {}
    end

    in_r, in_w = IO.pipe
    opts[:in] = in_r
    in_w.sync = true

    out_r, out_w = IO.pipe
    opts[:out] = out_w

    pipeline_run(cmds, opts, [in_r, out_w], [in_w, out_r], &block)
  end
  module_function :pipeline_rw

  # Open3.pipeline_r starts a list of commands as a pipeline with a pipe
  # which connects to stdout of the last command.
  #
  #   Open3.pipeline_r(cmd1, cmd2, ... [, opts]) {|last_stdout, wait_threads|
  #     ...
  #   }
  #
  #   last_stdout, wait_threads = Open3.pipeline_r(cmd1, cmd2, ... [, opts])
  #   ...
  #   last_stdout.close
  #
  # Each cmd is a string or an array.
  # If it is an array, the elements are passed to Process.spawn.
  #
  #   cmd:
  #     commandline                              command line string which is passed to a shell
  #     [env, commandline, opts]                 command line string which is passed to a shell
  #     [env, cmdname, arg1, ..., opts]          command name and one or more arguments (no shell)
  #     [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell)
  #
  #   Note that env and opts are optional, as for Process.spawn.
  #
  # Example:
  #
  #   Open3.pipeline_r("zcat /var/log/apache2/access.log.*.gz",
  #                    [{"LANG"=>"C"}, "grep", "GET /favicon.ico"],
  #                    "logresolve") {|o, ts|
  #     o.each_line {|line|
  #       ...
  #     }
  #   }
  #
  #   Open3.pipeline_r("yes", "head -10") {|o, ts|
  #     p o.read      #=> "y\ny\ny\ny\ny\ny\ny\ny\ny\ny\n"
  #     p ts[0].value #=> #<Process::Status: pid 24910 SIGPIPE (signal 13)>
  #     p ts[1].value #=> #<Process::Status: pid 24913 exit 0>
  #   }
  #
  def pipeline_r(*cmds, &block)
    if Hash === cmds.last
      opts = cmds.pop.dup
    else
      opts = {}
    end

    out_r, out_w = IO.pipe
    opts[:out] = out_w

    pipeline_run(cmds, opts, [out_w], [out_r], &block)
  end
  module_function :pipeline_r

  # Open3.pipeline_w starts a list of commands as a pipeline with a pipe
  # which connects to stdin of the first command.
  #
  #   Open3.pipeline_w(cmd1, cmd2, ... [, opts]) {|first_stdin, wait_threads|
  #     ...
  #   }
  #
  #   first_stdin, wait_threads = Open3.pipeline_w(cmd1, cmd2, ... [, opts])
  #   ...
  #   first_stdin.close
  #
  # Each cmd is a string or an array.
  # If it is an array, the elements are passed to Process.spawn.
  #
  #   cmd:
  #     commandline                              command line string which is passed to a shell
  #     [env, commandline, opts]                 command line string which is passed to a shell
  #     [env, cmdname, arg1, ..., opts]          command name and one or more arguments (no shell)
  #     [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell)
  #
  #   Note that env and opts are optional, as for Process.spawn.
  #
  # Example:
  #
  #   Open3.pipeline_w("bzip2 -c", :out=>"/tmp/hello.bz2") {|i, ts|
  #     i.puts "hello"
  #   }
  #
  def pipeline_w(*cmds, &block)
    if Hash === cmds.last
      opts = cmds.pop.dup
    else
      opts = {}
    end

    in_r, in_w = IO.pipe
    opts[:in] = in_r
    in_w.sync = true

    pipeline_run(cmds, opts, [in_r], [in_w], &block)
  end
  module_function :pipeline_w

  # Open3.pipeline_start starts a list of commands as a pipeline.
  # No pipes are created for stdin of the first command and
  # stdout of the last command.
  #
  #   Open3.pipeline_start(cmd1, cmd2, ... [, opts]) {|wait_threads|
  #     ...
  #   }
  #
  #   wait_threads = Open3.pipeline_start(cmd1, cmd2, ... [, opts])
  #   ...
  #
  # Each cmd is a string or an array.
  # If it is an array, the elements are passed to Process.spawn.
  #
  #   cmd:
  #     commandline                              command line string which is passed to a shell
  #     [env, commandline, opts]                 command line string which is passed to a shell
  #     [env, cmdname, arg1, ..., opts]          command name and one or more arguments (no shell)
  #     [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell)
  #
  #   Note that env and opts are optional, as for Process.spawn.
  #
  # Example:
  #
  #   # Run xeyes in 10 seconds.
  #   Open3.pipeline_start("xeyes") {|ts|
  #     sleep 10
  #     t = ts[0]
  #     Process.kill("TERM", t.pid)
  #     p t.value #=> #<Process::Status: pid 911 SIGTERM (signal 15)>
  #   }
  #
  #   # Convert pdf to ps and send it to a printer.
  #   # Collect error message of pdftops and lpr.
  #   pdf_file = "paper.pdf"
  #   printer = "printer-name"
  #   err_r, err_w = IO.pipe
  #   Open3.pipeline_start(["pdftops", pdf_file, "-"],
  #                        ["lpr", "-P#{printer}"],
  #                        :err=>err_w) {|ts|
  #     err_w.close
  #     p err_r.read # error messages of pdftops and lpr.
  #   }
  #
  def pipeline_start(*cmds, &block)
    if Hash === cmds.last
      opts = cmds.pop.dup
    else
      opts = {}
    end

    if block
      pipeline_run(cmds, opts, [], [], &block)
    else
      ts, = pipeline_run(cmds, opts, [], [])
      ts
    end
  end
  module_function :pipeline_start

  # Open3.pipeline starts a list of commands as a pipeline.
  # It waits for the completion of the commands.
  # No pipes are created for stdin of the first command and
  # stdout of the last command.
  #
  #   status_list = Open3.pipeline(cmd1, cmd2, ... [, opts])
  #
  # Each cmd is a string or an array.
  # If it is an array, the elements are passed to Process.spawn.
  #
  #   cmd:
  #     commandline                              command line string which is passed to a shell
  #     [env, commandline, opts]                 command line string which is passed to a shell
  #     [env, cmdname, arg1, ..., opts]          command name and one or more arguments (no shell)
  #     [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell)
  #
  #   Note that env and opts are optional, as Process.spawn.
  #
  # Example:
  #
  #   fname = "/usr/share/man/man1/ruby.1.gz"
  #   p Open3.pipeline(["zcat", fname], "nroff -man", "less")
  #   #=> [#<Process::Status: pid 11817 exit 0>,
  #   #    #<Process::Status: pid 11820 exit 0>,
  #   #    #<Process::Status: pid 11828 exit 0>]
  #
  #   fname = "/usr/share/man/man1/ls.1.gz"
  #   Open3.pipeline(["zcat", fname], "nroff -man", "colcrt")
  #
  #   # convert PDF to PS and send to a printer by lpr
  #   pdf_file = "paper.pdf"
  #   printer = "printer-name"
  #   Open3.pipeline(["pdftops", pdf_file, "-"],
  #                  ["lpr", "-P#{printer}"])
  #
  #   # count lines
  #   Open3.pipeline("sort", "uniq -c", :in=>"names.txt", :out=>"count")
  #
  #   # cyclic pipeline
  #   r,w = IO.pipe
  #   w.print "ibase=14\n10\n"
  #   Open3.pipeline("bc", "tee /dev/tty", :in=>r, :out=>w)
  #   #=> 14
  #   #   18
  #   #   22
  #   #   30
  #   #   42
  #   #   58
  #   #   78
  #   #   106
  #   #   202
  #
  def pipeline(*cmds)
    if Hash === cmds.last
      opts = cmds.pop.dup
    else
      opts = {}
    end

    pipeline_run(cmds, opts, [], []) {|ts|
      ts.map(&:value)
    }
  end
  module_function :pipeline

  def pipeline_run(cmds, pipeline_opts, child_io, parent_io) # :nodoc:
    if cmds.empty?
      raise ArgumentError, "no commands"
    end

    opts_base = pipeline_opts.dup
    opts_base.delete :in
    opts_base.delete :out

    wait_thrs = []
    r = nil
    cmds.each_with_index {|cmd, i|
      cmd_opts = opts_base.dup
      if String === cmd
        cmd = [cmd]
      else
        cmd_opts.update cmd.pop if Hash === cmd.last
      end
      if i == 0
        if !cmd_opts.include?(:in)
          if pipeline_opts.include?(:in)
            cmd_opts[:in] = pipeline_opts[:in]
          end
        end
      else
        cmd_opts[:in] = r
      end
      if i != cmds.length - 1
        r2, w2 = IO.pipe
        cmd_opts[:out] = w2
      else
        if !cmd_opts.include?(:out)
          if pipeline_opts.include?(:out)
            cmd_opts[:out] = pipeline_opts[:out]
          end
        end
      end
      pid = spawn(*cmd, cmd_opts)
      wait_thrs << Process.detach(pid)
      r&.close
      w2&.close
      r = r2
    }
    result = parent_io + [wait_thrs]
    child_io.each(&:close)
    if defined? yield
      begin
        return yield(*result)
      ensure
        parent_io.each(&:close)
        wait_thrs.each(&:join)
      end
    end
    result
  end
  module_function :pipeline_run
  class << self
    private :pipeline_run
  end

end
PKJH[)�Ȗ�share/ruby/optparse/kwargs.rbnu�[���# frozen_string_literal: true
require 'optparse'

class OptionParser
  def define_by_keywords(options, meth, **opts)
    meth.parameters.each do |type, name|
      case type
      when :key, :keyreq
        op, cl = *(type == :key ? %w"[ ]" : ["", ""])
        define("--#{name}=#{op}#{name.upcase}#{cl}", *opts[name]) do |o|
          options[name] = o
        end
      end
    end
    options
  end
end
PKJH[*Ivhshare/ruby/optparse/ac.rbnu�[���# frozen_string_literal: false
require 'optparse'

class OptionParser::AC < OptionParser
  private

  def _check_ac_args(name, block)
    unless /\A\w[-\w]*\z/ =~ name
      raise ArgumentError, name
    end
    unless block
      raise ArgumentError, "no block given", ParseError.filter_backtrace(caller)
    end
  end

  ARG_CONV = proc {|val| val.nil? ? true : val}

  def _ac_arg_enable(prefix, name, help_string, block)
    _check_ac_args(name, block)

    sdesc = []
    ldesc = ["--#{prefix}-#{name}"]
    desc = [help_string]
    q = name.downcase
    ac_block = proc {|val| block.call(ARG_CONV.call(val))}
    enable = Switch::PlacedArgument.new(nil, ARG_CONV, sdesc, ldesc, nil, desc, ac_block)
    disable = Switch::NoArgument.new(nil, proc {false}, sdesc, ldesc, nil, desc, ac_block)
    top.append(enable, [], ["enable-" + q], disable, ['disable-' + q])
    enable
  end

  public

  def ac_arg_enable(name, help_string, &block)
    _ac_arg_enable("enable", name, help_string, block)
  end

  def ac_arg_disable(name, help_string, &block)
    _ac_arg_enable("disable", name, help_string, block)
  end

  def ac_arg_with(name, help_string, &block)
    _check_ac_args(name, block)

    sdesc = []
    ldesc = ["--with-#{name}"]
    desc = [help_string]
    q = name.downcase
    with = Switch::PlacedArgument.new(*search(:atype, String), sdesc, ldesc, nil, desc, block)
    without = Switch::NoArgument.new(nil, proc {}, sdesc, ldesc, nil, desc, block)
    top.append(with, [], ["with-" + q], without, ['without-' + q])
    with
  end
end
PKJH[��/ddshare/ruby/optparse/date.rbnu�[���# frozen_string_literal: false
require 'optparse'
require 'date'

OptionParser.accept(DateTime) do |s,|
  begin
    DateTime.parse(s) if s
  rescue ArgumentError
    raise OptionParser::InvalidArgument, s
  end
end
OptionParser.accept(Date) do |s,|
  begin
    Date.parse(s) if s
  rescue ArgumentError
    raise OptionParser::InvalidArgument, s
  end
end
PKJH[>1M��!share/ruby/optparse/shellwords.rbnu�[���# frozen_string_literal: false
# -*- ruby -*-

require 'shellwords'
require 'optparse'

OptionParser.accept(Shellwords) {|s,| Shellwords.shellwords(s)}
PKJH[�����share/ruby/optparse/time.rbnu�[���# frozen_string_literal: false
require 'optparse'
require 'time'

OptionParser.accept(Time) do |s,|
  begin
    (Time.httpdate(s) rescue Time.parse(s)) if s
  rescue
    raise OptionParser::InvalidArgument, s
  end
end
PKJH[9"�Q

share/ruby/optparse/version.rbnu�[���# frozen_string_literal: false
# OptionParser internal utility

class << OptionParser
  def show_version(*pkgs)
    progname = ARGV.options.program_name
    result = false
    show = proc do |klass, cname, version|
      str = "#{progname}"
      unless klass == ::Object and cname == :VERSION
        version = version.join(".") if Array === version
        str << ": #{klass}" unless klass == Object
        str << " version #{version}"
      end
      [:Release, :RELEASE].find do |rel|
        if klass.const_defined?(rel)
          str << " (#{klass.const_get(rel)})"
        end
      end
      puts str
      result = true
    end
    if pkgs.size == 1 and pkgs[0] == "all"
      self.search_const(::Object, /\AV(?:ERSION|ersion)\z/) do |klass, cname, version|
        unless cname[1] == ?e and klass.const_defined?(:Version)
          show.call(klass, cname.intern, version)
        end
      end
    else
      pkgs.each do |pkg|
        begin
          pkg = pkg.split(/::|\//).inject(::Object) {|m, c| m.const_get(c)}
          v = case
              when pkg.const_defined?(:Version)
                pkg.const_get(n = :Version)
              when pkg.const_defined?(:VERSION)
                pkg.const_get(n = :VERSION)
              else
                n = nil
                "unknown"
              end
          show.call(pkg, n, v)
        rescue NameError
        end
      end
    end
    result
  end

  def each_const(path, base = ::Object)
    path.split(/::|\//).inject(base) do |klass, name|
      raise NameError, path unless Module === klass
      klass.constants.grep(/#{name}/i) do |c|
        klass.const_defined?(c) or next
        klass.const_get(c)
      end
    end
  end

  def search_const(klass, name)
    klasses = [klass]
    while klass = klasses.shift
      klass.constants.each do |cname|
        klass.const_defined?(cname) or next
        const = klass.const_get(cname)
        yield klass, cname, const if name === cname
        klasses << const if Module === const and const != ::Object
      end
    end
  end
end
PKJH[�oBσ�share/ruby/optparse/uri.rbnu�[���# frozen_string_literal: false
# -*- ruby -*-

require 'optparse'
require 'uri'

OptionParser.accept(URI) {|s,| URI.parse(s) if s}
PKJH["���w�wshare/ruby/debug.rbnu�[���# frozen_string_literal: true
# Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
# Copyright (C) 2000  Information-technology Promotion Agency, Japan
# Copyright (C) 2000-2003  NAKAMURA, Hiroshi  <nahi@ruby-lang.org>

require 'continuation'

require 'tracer'
require 'pp'

class Tracer # :nodoc:
  def Tracer.trace_func(*vars)
    Single.trace_func(*vars)
  end
end

SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__ # :nodoc:

##
# This library provides debugging functionality to Ruby.
#
# To add a debugger to your code, start by requiring +debug+ in your
# program:
#
#   def say(word)
#     require 'debug'
#     puts word
#   end
#
# This will cause Ruby to interrupt execution and show a prompt when the +say+
# method is run.
#
# Once you're inside the prompt, you can start debugging your program.
#
#   (rdb:1) p word
#   "hello"
#
# == Getting help
#
# You can get help at any time by pressing +h+.
#
#   (rdb:1) h
#   Debugger help v.-0.002b
#   Commands
#     b[reak] [file:|class:]<line|method>
#     b[reak] [class.]<line|method>
#                                set breakpoint to some position
#     wat[ch] <expression>       set watchpoint to some expression
#     cat[ch] (<exception>|off)  set catchpoint to an exception
#     b[reak]                    list breakpoints
#     cat[ch]                    show catchpoint
#     del[ete][ nnn]             delete some or all breakpoints
#     disp[lay] <expression>     add expression into display expression list
#     undisp[lay][ nnn]          delete one particular or all display expressions
#     c[ont]                     run until program ends or hit breakpoint
#     s[tep][ nnn]               step (into methods) one line or till line nnn
#     n[ext][ nnn]               go over one line or till line nnn
#     w[here]                    display frames
#     f[rame]                    alias for where
#     l[ist][ (-|nn-mm)]         list program, - lists backwards
#                                nn-mm lists given lines
#     up[ nn]                    move to higher frame
#     down[ nn]                  move to lower frame
#     fin[ish]                   return to outer frame
#     tr[ace] (on|off)           set trace mode of current thread
#     tr[ace] (on|off) all       set trace mode of all threads
#     q[uit]                     exit from debugger
#     v[ar] g[lobal]             show global variables
#     v[ar] l[ocal]              show local variables
#     v[ar] i[nstance] <object>  show instance variables of object
#     v[ar] c[onst] <object>     show constants of object
#     m[ethod] i[nstance] <obj>  show methods of object
#     m[ethod] <class|module>    show instance methods of class or module
#     th[read] l[ist]            list all threads
#     th[read] c[ur[rent]]       show current thread
#     th[read] [sw[itch]] <nnn>  switch thread context to nnn
#     th[read] stop <nnn>        stop thread nnn
#     th[read] resume <nnn>      resume thread nnn
#     p expression               evaluate expression and print its value
#     h[elp]                     print this help
#     <everything else>          evaluate
#
# == Usage
#
# The following is a list of common functionalities that the debugger
# provides.
#
# === Navigating through your code
#
# In general, a debugger is used to find bugs in your program, which
# often means pausing execution and inspecting variables at some point
# in time.
#
# Let's look at an example:
#
#   def my_method(foo)
#     require 'debug'
#     foo = get_foo if foo.nil?
#     raise if foo.nil?
#   end
#
# When you run this program, the debugger will kick in just before the
# +foo+ assignment.
#
#   (rdb:1) p foo
#   nil
#
# In this example, it'd be interesting to move to the next line and
# inspect the value of +foo+ again. You can do that by pressing +n+:
#
#   (rdb:1) n # goes to next line
#   (rdb:1) p foo
#   nil
#
# You now know that the original value of +foo+ was nil, and that it
# still was nil after calling +get_foo+.
#
# Other useful commands for navigating through your code are:
#
# +c+::
#   Runs the program until it either exists or encounters another breakpoint.
#   You usually press +c+ when you are finished debugging your program and
#   want to resume its execution.
# +s+::
#   Steps into method definition. In the previous example, +s+ would take you
#   inside the method definition of +get_foo+.
# +r+::
#   Restart the program.
# +q+::
#   Quit the program.
#
# === Inspecting variables
#
# You can use the debugger to easily inspect both local and global variables.
# We've seen how to inspect local variables before:
#
#   (rdb:1) p my_arg
#   42
#
# You can also pretty print the result of variables or expressions:
#
#   (rdb:1) pp %w{a very long long array containing many words}
#   ["a",
#    "very",
#    "long",
#    ...
#   ]
#
# You can list all local variables with +v l+:
#
#   (rdb:1) v l
#     foo => "hello"
#
# Similarly, you can show all global variables with +v g+:
#
#   (rdb:1) v g
#     all global variables
#
# Finally, you can omit +p+ if you simply want to evaluate a variable or
# expression
#
#   (rdb:1) 5**2
#   25
#
# === Going beyond basics
#
# Ruby Debug provides more advanced functionalities like switching
# between threads, setting breakpoints and watch expressions, and more.
# The full list of commands is available at any time by pressing +h+.
#
# == Staying out of trouble
#
# Make sure you remove every instance of +require 'debug'+ before
# shipping your code. Failing to do so may result in your program
# hanging unpredictably.
#
# Debug is not available in safe mode.

class DEBUGGER__
  MUTEX = Thread::Mutex.new # :nodoc:

  class Context # :nodoc:
    DEBUG_LAST_CMD = []

    begin
      require 'readline'
      def readline(prompt, hist)
        Readline::readline(prompt, hist)
      end
    rescue LoadError
      def readline(prompt, hist)
        STDOUT.print prompt
        STDOUT.flush
        line = STDIN.gets
        exit unless line
        line.chomp!
        line
      end
      USE_READLINE = false
    end

    def initialize
      if Thread.current == Thread.main
        @stop_next = 1
      else
        @stop_next = 0
      end
      @last_file = nil
      @file = nil
      @line = nil
      @no_step = nil
      @frames = []
      @finish_pos = 0
      @trace = false
      @catch = "StandardError"
      @suspend_next = false
    end

    def stop_next(n=1)
      @stop_next = n
    end

    def set_suspend
      @suspend_next = true
    end

    def clear_suspend
      @suspend_next = false
    end

    def suspend_all
      DEBUGGER__.suspend
    end

    def resume_all
      DEBUGGER__.resume
    end

    def check_suspend
      while MUTEX.synchronize {
          if @suspend_next
            DEBUGGER__.waiting.push Thread.current
            @suspend_next = false
            true
          end
        }
      end
    end

    def trace?
      @trace
    end

    def set_trace(arg)
      @trace = arg
    end

    def stdout
      DEBUGGER__.stdout
    end

    def break_points
      DEBUGGER__.break_points
    end

    def display
      DEBUGGER__.display
    end

    def context(th)
      DEBUGGER__.context(th)
    end

    def set_trace_all(arg)
      DEBUGGER__.set_trace(arg)
    end

    def set_last_thread(th)
      DEBUGGER__.set_last_thread(th)
    end

    def debug_eval(str, binding)
      begin
        eval(str, binding)
      rescue StandardError, ScriptError => e
        at = eval("caller(1)", binding)
        stdout.printf "%s:%s\n", at.shift, e.to_s.sub(/\(eval\):1:(in `.*?':)?/, '')
        for i in at
          stdout.printf "\tfrom %s\n", i
        end
        throw :debug_error
      end
    end

    def debug_silent_eval(str, binding)
      begin
        eval(str, binding)
      rescue StandardError, ScriptError
        nil
      end
    end

    def var_list(ary, binding)
      ary.sort!
      for v in ary
        stdout.printf "  %s => %s\n", v, eval(v.to_s, binding).inspect
      end
    end

    def debug_variable_info(input, binding)
      case input
      when /^\s*g(?:lobal)?\s*$/
        var_list(global_variables, binding)

      when /^\s*l(?:ocal)?\s*$/
        var_list(eval("local_variables", binding), binding)

      when /^\s*i(?:nstance)?\s+/
        obj = debug_eval($', binding)
        var_list(obj.instance_variables, obj.instance_eval{binding()})

      when /^\s*c(?:onst(?:ant)?)?\s+/
        obj = debug_eval($', binding)
        unless obj.kind_of? Module
          stdout.print "Should be Class/Module: ", $', "\n"
        else
          var_list(obj.constants, obj.module_eval{binding()})
        end
      end
    end

    def debug_method_info(input, binding)
      case input
      when /^i(:?nstance)?\s+/
        obj = debug_eval($', binding)

        len = 0
        for v in obj.methods.sort
          len += v.size + 1
          if len > 70
            len = v.size + 1
            stdout.print "\n"
          end
          stdout.print v, " "
        end
        stdout.print "\n"

      else
        obj = debug_eval(input, binding)
        unless obj.kind_of? Module
          stdout.print "Should be Class/Module: ", input, "\n"
        else
          len = 0
          for v in obj.instance_methods(false).sort
            len += v.size + 1
            if len > 70
              len = v.size + 1
              stdout.print "\n"
            end
            stdout.print v, " "
          end
          stdout.print "\n"
        end
      end
    end

    def thnum
      num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
      unless num
        DEBUGGER__.make_thread_list
        num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
      end
      num
    end

    def debug_command(file, line, id, binding)
      MUTEX.lock
      unless defined?($debugger_restart) and $debugger_restart
        callcc{|c| $debugger_restart = c}
      end
      set_last_thread(Thread.current)
      frame_pos = 0
      binding_file = file
      binding_line = line
      previous_line = nil
      if ENV['EMACS']
        stdout.printf "\032\032%s:%d:\n", binding_file, binding_line
      else
        stdout.printf "%s:%d:%s", binding_file, binding_line,
          line_at(binding_file, binding_line)
      end
      @frames[0] = [binding, file, line, id]
      display_expressions(binding)
      prompt = true
      while prompt and input = readline("(rdb:%d) "%thnum(), true)
        catch(:debug_error) do
          if input == ""
            next unless DEBUG_LAST_CMD[0]
            input = DEBUG_LAST_CMD[0]
            stdout.print input, "\n"
          else
            DEBUG_LAST_CMD[0] = input
          end

          case input
          when /^\s*tr(?:ace)?(?:\s+(on|off))?(?:\s+(all))?$/
            if defined?( $2 )
              if $1 == 'on'
                set_trace_all true
              else
                set_trace_all false
              end
            elsif defined?( $1 )
              if $1 == 'on'
                set_trace true
              else
                set_trace false
              end
            end
            if trace?
              stdout.print "Trace on.\n"
            else
              stdout.print "Trace off.\n"
            end

          when /^\s*b(?:reak)?\s+(?:(.+):)?([^.:]+)$/
            pos = $2
            if $1
              klass = debug_silent_eval($1, binding)
              file = File.expand_path($1)
            end
            if pos =~ /^\d+$/
              pname = pos
              pos = pos.to_i
            else
              pname = pos = pos.intern.id2name
            end
            break_points.push [true, 0, klass || file, pos]
            stdout.printf "Set breakpoint %d at %s:%s\n", break_points.size, klass || file, pname

          when /^\s*b(?:reak)?\s+(.+)[#.]([^.:]+)$/
            pos = $2.intern.id2name
            klass = debug_eval($1, binding)
            break_points.push [true, 0, klass, pos]
            stdout.printf "Set breakpoint %d at %s.%s\n", break_points.size, klass, pos

          when /^\s*wat(?:ch)?\s+(.+)$/
            exp = $1
            break_points.push [true, 1, exp]
            stdout.printf "Set watchpoint %d:%s\n", break_points.size, exp

          when /^\s*b(?:reak)?$/
            if break_points.find{|b| b[1] == 0}
              n = 1
              stdout.print "Breakpoints:\n"
              break_points.each do |b|
                if b[0] and b[1] == 0
                  stdout.printf "  %d %s:%s\n", n, b[2], b[3]
                end
                n += 1
              end
            end
            if break_points.find{|b| b[1] == 1}
              n = 1
              stdout.print "\n"
              stdout.print "Watchpoints:\n"
              for b in break_points
                if b[0] and b[1] == 1
                  stdout.printf "  %d %s\n", n, b[2]
                end
                n += 1
              end
            end
            if break_points.size == 0
              stdout.print "No breakpoints\n"
            else
              stdout.print "\n"
            end

          when /^\s*del(?:ete)?(?:\s+(\d+))?$/
            pos = $1
            unless pos
              input = readline("Clear all breakpoints? (y/n) ", false)
              if input == "y"
                for b in break_points
                  b[0] = false
                end
              end
            else
              pos = pos.to_i
              if break_points[pos-1]
                break_points[pos-1][0] = false
              else
                stdout.printf "Breakpoint %d is not defined\n", pos
              end
            end

          when /^\s*disp(?:lay)?\s+(.+)$/
            exp = $1
            display.push [true, exp]
            stdout.printf "%d: ", display.size
            display_expression(exp, binding)

          when /^\s*disp(?:lay)?$/
            display_expressions(binding)

          when /^\s*undisp(?:lay)?(?:\s+(\d+))?$/
            pos = $1
            unless pos
              input = readline("Clear all expressions? (y/n) ", false)
              if input == "y"
                for d in display
                  d[0] = false
                end
              end
            else
              pos = pos.to_i
              if display[pos-1]
                display[pos-1][0] = false
              else
                stdout.printf "Display expression %d is not defined\n", pos
              end
            end

          when /^\s*c(?:ont)?$/
            prompt = false

          when /^\s*s(?:tep)?(?:\s+(\d+))?$/
            if $1
              lev = $1.to_i
            else
              lev = 1
            end
            @stop_next = lev
            prompt = false

          when /^\s*n(?:ext)?(?:\s+(\d+))?$/
            if $1
              lev = $1.to_i
            else
              lev = 1
            end
            @stop_next = lev
            @no_step = @frames.size - frame_pos
            prompt = false

          when /^\s*w(?:here)?$/, /^\s*f(?:rame)?$/
            display_frames(frame_pos)

          when /^\s*l(?:ist)?(?:\s+(.+))?$/
            if not $1
              b = previous_line ? previous_line + 10 : binding_line - 5
              e = b + 9
            elsif $1 == '-'
              b = previous_line ? previous_line - 10 : binding_line - 5
              e = b + 9
            else
              b, e = $1.split(/[-,]/)
              if e
                b = b.to_i
                e = e.to_i
              else
                b = b.to_i - 5
                e = b + 9
              end
            end
            previous_line = b
            display_list(b, e, binding_file, binding_line)

          when /^\s*up(?:\s+(\d+))?$/
            previous_line = nil
            if $1
              lev = $1.to_i
            else
              lev = 1
            end
            frame_pos += lev
            if frame_pos >= @frames.size
              frame_pos = @frames.size - 1
              stdout.print "At toplevel\n"
            end
            binding, binding_file, binding_line = @frames[frame_pos]
            stdout.print format_frame(frame_pos)

          when /^\s*down(?:\s+(\d+))?$/
            previous_line = nil
            if $1
              lev = $1.to_i
            else
              lev = 1
            end
            frame_pos -= lev
            if frame_pos < 0
              frame_pos = 0
              stdout.print "At stack bottom\n"
            end
            binding, binding_file, binding_line = @frames[frame_pos]
            stdout.print format_frame(frame_pos)

          when /^\s*fin(?:ish)?$/
            if frame_pos == @frames.size
              stdout.print "\"finish\" not meaningful in the outermost frame.\n"
            else
              @finish_pos = @frames.size - frame_pos
              frame_pos = 0
              prompt = false
            end

          when /^\s*cat(?:ch)?(?:\s+(.+))?$/
            if $1
              excn = $1
              if excn == 'off'
                @catch = nil
                stdout.print "Clear catchpoint.\n"
              else
                @catch = excn
                stdout.printf "Set catchpoint %s.\n", @catch
              end
            else
              if @catch
                stdout.printf "Catchpoint %s.\n", @catch
              else
                stdout.print "No catchpoint.\n"
              end
            end

          when /^\s*q(?:uit)?$/
            input = readline("Really quit? (y/n) ", false)
            if input == "y"
              exit!  # exit -> exit!: No graceful way to stop threads...
            end

          when /^\s*v(?:ar)?\s+/
            debug_variable_info($', binding)

          when /^\s*m(?:ethod)?\s+/
            debug_method_info($', binding)

          when /^\s*th(?:read)?\s+/
            if DEBUGGER__.debug_thread_info($', binding) == :cont
              prompt = false
            end

          when /^\s*pp\s+/
            PP.pp(debug_eval($', binding), stdout)

          when /^\s*p\s+/
            stdout.printf "%s\n", debug_eval($', binding).inspect

          when /^\s*r(?:estart)?$/
            $debugger_restart.call

          when /^\s*h(?:elp)?$/
            debug_print_help()

          else
            v = debug_eval(input, binding)
            stdout.printf "%s\n", v.inspect
          end
        end
      end
      MUTEX.unlock
      resume_all
    end

    def debug_print_help
      stdout.print <<EOHELP
Debugger help v.-0.002b
Commands
  b[reak] [file:|class:]<line|method>
  b[reak] [class.]<line|method>
                             set breakpoint to some position
  wat[ch] <expression>       set watchpoint to some expression
  cat[ch] (<exception>|off)  set catchpoint to an exception
  b[reak]                    list breakpoints
  cat[ch]                    show catchpoint
  del[ete][ nnn]             delete some or all breakpoints
  disp[lay] <expression>     add expression into display expression list
  undisp[lay][ nnn]          delete one particular or all display expressions
  c[ont]                     run until program ends or hit breakpoint
  s[tep][ nnn]               step (into methods) one line or till line nnn
  n[ext][ nnn]               go over one line or till line nnn
  w[here]                    display frames
  f[rame]                    alias for where
  l[ist][ (-|nn-mm)]         list program, - lists backwards
                             nn-mm lists given lines
  up[ nn]                    move to higher frame
  down[ nn]                  move to lower frame
  fin[ish]                   return to outer frame
  tr[ace] (on|off)           set trace mode of current thread
  tr[ace] (on|off) all       set trace mode of all threads
  q[uit]                     exit from debugger
  v[ar] g[lobal]             show global variables
  v[ar] l[ocal]              show local variables
  v[ar] i[nstance] <object>  show instance variables of object
  v[ar] c[onst] <object>     show constants of object
  m[ethod] i[nstance] <obj>  show methods of object
  m[ethod] <class|module>    show instance methods of class or module
  th[read] l[ist]            list all threads
  th[read] c[ur[rent]]       show current thread
  th[read] [sw[itch]] <nnn>  switch thread context to nnn
  th[read] stop <nnn>        stop thread nnn
  th[read] resume <nnn>      resume thread nnn
  pp expression              evaluate expression and pretty_print its value
  p expression               evaluate expression and print its value
  r[estart]                  restart program
  h[elp]                     print this help
  <everything else>          evaluate
EOHELP
    end

    def display_expressions(binding)
      n = 1
      for d in display
        if d[0]
          stdout.printf "%d: ", n
          display_expression(d[1], binding)
        end
        n += 1
      end
    end

    def display_expression(exp, binding)
      stdout.printf "%s = %s\n", exp, debug_silent_eval(exp, binding).to_s
    end

    def frame_set_pos(file, line)
      if @frames[0]
        @frames[0][1] = file
        @frames[0][2] = line
      end
    end

    def display_frames(pos)
      0.upto(@frames.size - 1) do |n|
        if n == pos
          stdout.print "--> "
        else
          stdout.print "    "
        end
        stdout.print format_frame(n)
      end
    end

    def format_frame(pos)
      _, file, line, id = @frames[pos]
      sprintf "#%d %s:%s%s\n", pos + 1, file, line,
        (id ? ":in `#{id.id2name}'" : "")
    end

    def script_lines(file, line)
      unless (lines = SCRIPT_LINES__[file]) and lines != true
        Tracer::Single.get_line(file, line) if File.exist?(file)
        lines = SCRIPT_LINES__[file]
        lines = nil if lines == true
      end
      lines
    end

    def display_list(b, e, file, line)
      if lines = script_lines(file, line)
        stdout.printf "[%d, %d] in %s\n", b, e, file
        b.upto(e) do |n|
          if n > 0 && lines[n-1]
            if n == line
              stdout.printf "=> %d  %s\n", n, lines[n-1].chomp
            else
              stdout.printf "   %d  %s\n", n, lines[n-1].chomp
            end
          end
        end
      else
        stdout.printf "No sourcefile available for %s\n", file
      end
    end

    def line_at(file, line)
      lines = script_lines(file, line)
      if lines and line = lines[line-1]
        return line
      end
      return "\n"
    end

    def debug_funcname(id)
      if id.nil?
        "toplevel"
      else
        id.id2name
      end
    end

    def check_break_points(file, klass, pos, binding, id)
      return false if break_points.empty?
      n = 1
      for b in break_points
        if b[0]           # valid
          if b[1] == 0    # breakpoint
            if (b[2] == file and b[3] == pos) or
                (klass and b[2] == klass and b[3] == pos)
              stdout.printf "Breakpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
              return true
            end
          elsif b[1] == 1 # watchpoint
            if debug_silent_eval(b[2], binding)
              stdout.printf "Watchpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
              return true
            end
          end
        end
        n += 1
      end
      return false
    end

    def excn_handle(file, line, id, binding)
      if $!.class <= SystemExit
        set_trace_func nil
        exit
      end

      if @catch and ($!.class.ancestors.find { |e| e.to_s == @catch })
        stdout.printf "%s:%d: `%s' (%s)\n", file, line, $!, $!.class
        fs = @frames.size
        tb = caller(0)[-fs..-1]
        if tb
          for i in tb
            stdout.printf "\tfrom %s\n", i
          end
        end
        suspend_all
        debug_command(file, line, id, binding)
      end
    end

    def trace_func(event, file, line, id, binding, klass)
      Tracer.trace_func(event, file, line, id, binding, klass) if trace?
      context(Thread.current).check_suspend
      @file = file
      @line = line
      case event
      when 'line'
        frame_set_pos(file, line)
        if !@no_step or @frames.size == @no_step
          @stop_next -= 1
          @stop_next = -1 if @stop_next < 0
        elsif @frames.size < @no_step
          @stop_next = 0          # break here before leaving...
        else
          # nothing to do. skipped.
        end
        if @stop_next == 0 or check_break_points(file, nil, line, binding, id)
          @no_step = nil
          suspend_all
          debug_command(file, line, id, binding)
        end

      when 'call'
        @frames.unshift [binding, file, line, id]
        if check_break_points(file, klass, id.id2name, binding, id)
          suspend_all
          debug_command(file, line, id, binding)
        end

      when 'c-call'
        frame_set_pos(file, line)

      when 'class'
        @frames.unshift [binding, file, line, id]

      when 'return', 'end'
        if @frames.size == @finish_pos
          @stop_next = 1
          @finish_pos = 0
        end
        @frames.shift

      when 'raise'
        excn_handle(file, line, id, binding)

      end
      @last_file = file
    end
  end

  trap("INT") { DEBUGGER__.interrupt }
  @last_thread = Thread::main
  @max_thread = 1
  @thread_list = {Thread::main => 1}
  @break_points = []
  @display = []
  @waiting = []
  @stdout = STDOUT

  class << DEBUGGER__
    # Returns the IO used as stdout. Defaults to STDOUT
    def stdout
      @stdout
    end

    # Sets the IO used as stdout. Defaults to STDOUT
    def stdout=(s)
      @stdout = s
    end

    # Returns the display expression list
    #
    # See DEBUGGER__ for more usage
    def display
      @display
    end

    # Returns the list of break points where execution will be stopped.
    #
    # See DEBUGGER__ for more usage
    def break_points
      @break_points
    end

    # Returns the list of waiting threads.
    #
    # When stepping through the traces of a function, thread gets suspended, to
    # be resumed later.
    def waiting
      @waiting
    end

    def set_trace( arg )
      MUTEX.synchronize do
        make_thread_list
        for th, in @thread_list
          context(th).set_trace arg
        end
      end
      arg
    end

    def set_last_thread(th)
      @last_thread = th
    end

    def suspend
      MUTEX.synchronize do
        make_thread_list
        for th, in @thread_list
          next if th == Thread.current
          context(th).set_suspend
        end
      end
      # Schedule other threads to suspend as soon as possible.
      Thread.pass
    end

    def resume
      MUTEX.synchronize do
        make_thread_list
        @thread_list.each do |th,|
          next if th == Thread.current
          context(th).clear_suspend
        end
        waiting.each do |th|
          th.run
        end
        waiting.clear
      end
      # Schedule other threads to restart as soon as possible.
      Thread.pass
    end

    def context(thread=Thread.current)
      c = thread[:__debugger_data__]
      unless c
        thread[:__debugger_data__] = c = Context.new
      end
      c
    end

    def interrupt
      context(@last_thread).stop_next
    end

    def get_thread(num)
      th = @thread_list.key(num)
      unless th
        @stdout.print "No thread ##{num}\n"
        throw :debug_error
      end
      th
    end

    def thread_list(num)
      th = get_thread(num)
      if th == Thread.current
        @stdout.print "+"
      else
        @stdout.print " "
      end
      @stdout.printf "%d ", num
      @stdout.print th.inspect, "\t"
      file = context(th).instance_eval{@file}
      if file
        @stdout.print file,":",context(th).instance_eval{@line}
      end
      @stdout.print "\n"
    end

    # Prints all threads in @thread_list to @stdout. Returns a sorted array of
    # values from the @thread_list hash.
    #
    # While in the debugger you can list all of
    # the threads with: <b>DEBUGGER__.thread_list_all</b>
    #
    #   (rdb:1) DEBUGGER__.thread_list_all
    #   +1 #<Thread:0x007fb2320c03f0 run> debug_me.rb.rb:3
    #    2 #<Thread:0x007fb23218a538@debug_me.rb.rb:3 sleep>
    #    3 #<Thread:0x007fb23218b0f0@debug_me.rb.rb:3 sleep>
    #   [1, 2, 3]
    #
    # Your current thread is indicated by a <b>+</b>
    #
    # Additionally you can list all threads with <b>th l</b>
    #
    #   (rdb:1) th l
    #    +1 #<Thread:0x007f99328c0410 run>  debug_me.rb:3
    #     2 #<Thread:0x007f9932938230@debug_me.rb:3 sleep> debug_me.rb:3
    #     3 #<Thread:0x007f9932938e10@debug_me.rb:3 sleep> debug_me.rb:3
    #
    # See DEBUGGER__ for more usage.

    def thread_list_all
      for th in @thread_list.values.sort
        thread_list(th)
      end
    end

    def make_thread_list
      hash = {}
      for th in Thread::list
        if @thread_list.key? th
          hash[th] = @thread_list[th]
        else
          @max_thread += 1
          hash[th] = @max_thread
        end
      end
      @thread_list = hash
    end

    def debug_thread_info(input, binding)
      case input
      when /^l(?:ist)?/
        make_thread_list
        thread_list_all

      when /^c(?:ur(?:rent)?)?$/
        make_thread_list
        thread_list(@thread_list[Thread.current])

      when /^(?:sw(?:itch)?\s+)?(\d+)/
        make_thread_list
        th = get_thread($1.to_i)
        if th == Thread.current
          @stdout.print "It's the current thread.\n"
        else
          thread_list(@thread_list[th])
          context(th).stop_next
          th.run
          return :cont
        end

      when /^stop\s+(\d+)/
        make_thread_list
        th = get_thread($1.to_i)
        if th == Thread.current
          @stdout.print "It's the current thread.\n"
        elsif th.stop?
          @stdout.print "Already stopped.\n"
        else
          thread_list(@thread_list[th])
          context(th).suspend
        end

      when /^resume\s+(\d+)/
        make_thread_list
        th = get_thread($1.to_i)
        if th == Thread.current
          @stdout.print "It's the current thread.\n"
        elsif !th.stop?
          @stdout.print "Already running."
        else
          thread_list(@thread_list[th])
          th.run
        end
      end
    end
  end

  stdout.printf "Debug.rb\n"
  stdout.printf "Emacs support available.\n\n"
  RubyVM::InstructionSequence.compile_option = {
    trace_instruction: true
  }
  set_trace_func proc { |event, file, line, id, binding, klass, *rest|
    DEBUGGER__.context.trace_func event, file, line, id, binding, klass
  }
end
PKJH[Ż|@����share/ruby/optparse.rbnu�[���# frozen_string_literal: true
#
# optparse.rb - command-line option analysis with the OptionParser class.
#
# Author:: Nobu Nakada
# Documentation:: Nobu Nakada and Gavin Sinclair.
#
# See OptionParser for documentation.
#


#--
# == Developer Documentation (not for RDoc output)
#
# === Class tree
#
# - OptionParser:: front end
# - OptionParser::Switch:: each switches
# - OptionParser::List:: options list
# - OptionParser::ParseError:: errors on parsing
#   - OptionParser::AmbiguousOption
#   - OptionParser::NeedlessArgument
#   - OptionParser::MissingArgument
#   - OptionParser::InvalidOption
#   - OptionParser::InvalidArgument
#     - OptionParser::AmbiguousArgument
#
# === Object relationship diagram
#
#   +--------------+
#   | OptionParser |<>-----+
#   +--------------+       |                      +--------+
#                          |                    ,-| Switch |
#        on_head -------->+---------------+    /  +--------+
#        accept/reject -->| List          |<|>-
#                         |               |<|>-  +----------+
#        on ------------->+---------------+    `-| argument |
#                           :           :        |  class   |
#                         +---------------+      |==========|
#        on_tail -------->|               |      |pattern   |
#                         +---------------+      |----------|
#   OptionParser.accept ->| DefaultList   |      |converter |
#                reject   |(shared between|      +----------+
#                         | all instances)|
#                         +---------------+
#
#++
#
# == OptionParser
#
# === Introduction
#
# OptionParser is a class for command-line option analysis.  It is much more
# advanced, yet also easier to use, than GetoptLong, and is a more Ruby-oriented
# solution.
#
# === Features
#
# 1. The argument specification and the code to handle it are written in the
#    same place.
# 2. It can output an option summary; you don't need to maintain this string
#    separately.
# 3. Optional and mandatory arguments are specified very gracefully.
# 4. Arguments can be automatically converted to a specified class.
# 5. Arguments can be restricted to a certain set.
#
# All of these features are demonstrated in the examples below.  See
# #make_switch for full documentation.
#
# === Minimal example
#
#   require 'optparse'
#
#   options = {}
#   OptionParser.new do |opts|
#     opts.banner = "Usage: example.rb [options]"
#
#     opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
#       options[:verbose] = v
#     end
#   end.parse!
#
#   p options
#   p ARGV
#
# === Generating Help
#
# OptionParser can be used to automatically generate help for the commands you
# write:
#
#   require 'optparse'
#
#   Options = Struct.new(:name)
#
#   class Parser
#     def self.parse(options)
#       args = Options.new("world")
#
#       opt_parser = OptionParser.new do |opts|
#         opts.banner = "Usage: example.rb [options]"
#
#         opts.on("-nNAME", "--name=NAME", "Name to say hello to") do |n|
#           args.name = n
#         end
#
#         opts.on("-h", "--help", "Prints this help") do
#           puts opts
#           exit
#         end
#       end
#
#       opt_parser.parse!(options)
#       return args
#     end
#   end
#   options = Parser.parse %w[--help]
#
#   #=>
#      # Usage: example.rb [options]
#      #     -n, --name=NAME                  Name to say hello to
#      #     -h, --help                       Prints this help
#
# === Required Arguments
#
# For options that require an argument, option specification strings may include an
# option name in all caps. If an option is used without the required argument,
# an exception will be raised.
#
#   require 'optparse'
#
#   options = {}
#   OptionParser.new do |parser|
#     parser.on("-r", "--require LIBRARY",
#               "Require the LIBRARY before executing your script") do |lib|
#       puts "You required #{lib}!"
#     end
#   end.parse!
#
# Used:
#
#   $ ruby optparse-test.rb -r
#   optparse-test.rb:9:in `<main>': missing argument: -r (OptionParser::MissingArgument)
#   $ ruby optparse-test.rb -r my-library
#   You required my-library!
#
# === Type Coercion
#
# OptionParser supports the ability to coerce command line arguments
# into objects for us.
#
# OptionParser comes with a few ready-to-use kinds of  type
# coercion. They are:
#
# - Date  -- Anything accepted by +Date.parse+
# - DateTime -- Anything accepted by +DateTime.parse+
# - Time -- Anything accepted by +Time.httpdate+ or +Time.parse+
# - URI  -- Anything accepted by +URI.parse+
# - Shellwords -- Anything accepted by +Shellwords.shellwords+
# - String -- Any non-empty string
# - Integer -- Any integer. Will convert octal. (e.g. 124, -3, 040)
# - Float -- Any float. (e.g. 10, 3.14, -100E+13)
# - Numeric -- Any integer, float, or rational (1, 3.4, 1/3)
# - DecimalInteger -- Like +Integer+, but no octal format.
# - OctalInteger -- Like +Integer+, but no decimal format.
# - DecimalNumeric -- Decimal integer or float.
# - TrueClass --  Accepts '+, yes, true, -, no, false' and
#   defaults as +true+
# - FalseClass -- Same as +TrueClass+, but defaults to +false+
# - Array -- Strings separated by ',' (e.g. 1,2,3)
# - Regexp -- Regular expressions. Also includes options.
#
# We can also add our own coercions, which we will cover below.
#
# ==== Using Built-in Conversions
#
# As an example, the built-in +Time+ conversion is used. The other built-in
# conversions behave in the same way.
# OptionParser will attempt to parse the argument
# as a +Time+. If it succeeds, that time will be passed to the
# handler block. Otherwise, an exception will be raised.
#
#   require 'optparse'
#   require 'optparse/time'
#   OptionParser.new do |parser|
#     parser.on("-t", "--time [TIME]", Time, "Begin execution at given time") do |time|
#       p time
#     end
#   end.parse!
#
# Used:
#
#   $ ruby optparse-test.rb  -t nonsense
#   ... invalid argument: -t nonsense (OptionParser::InvalidArgument)
#   $ ruby optparse-test.rb  -t 10-11-12
#   2010-11-12 00:00:00 -0500
#   $ ruby optparse-test.rb  -t 9:30
#   2014-08-13 09:30:00 -0400
#
# ==== Creating Custom Conversions
#
# The +accept+ method on OptionParser may be used to create converters.
# It specifies which conversion block to call whenever a class is specified.
# The example below uses it to fetch a +User+ object before the +on+ handler receives it.
#
#   require 'optparse'
#
#   User = Struct.new(:id, :name)
#
#   def find_user id
#     not_found = ->{ raise "No User Found for id #{id}" }
#     [ User.new(1, "Sam"),
#       User.new(2, "Gandalf") ].find(not_found) do |u|
#       u.id == id
#     end
#   end
#
#   op = OptionParser.new
#   op.accept(User) do |user_id|
#     find_user user_id.to_i
#   end
#
#   op.on("--user ID", User) do |user|
#     puts user
#   end
#
#   op.parse!
#
# Used:
#
#   $ ruby optparse-test.rb --user 1
#   #<struct User id=1, name="Sam">
#   $ ruby optparse-test.rb --user 2
#   #<struct User id=2, name="Gandalf">
#   $ ruby optparse-test.rb --user 3
#   optparse-test.rb:15:in `block in find_user': No User Found for id 3 (RuntimeError)
#
# === Store options to a Hash
#
# The +into+ option of +order+, +parse+ and so on methods stores command line options into a Hash.
#
#   require 'optparse'
#
#   params = {}
#   OptionParser.new do |opts|
#     opts.on('-a')
#     opts.on('-b NUM', Integer)
#     opts.on('-v', '--verbose')
#   end.parse!(into: params)
#
#   p params
#
# Used:
#
#   $ ruby optparse-test.rb -a
#   {:a=>true}
#   $ ruby optparse-test.rb -a -v
#   {:a=>true, :verbose=>true}
#   $ ruby optparse-test.rb -a -b 100
#   {:a=>true, :b=>100}
#
# === Complete example
#
# The following example is a complete Ruby program.  You can run it and see the
# effect of specifying various options.  This is probably the best way to learn
# the features of +optparse+.
#
#   require 'optparse'
#   require 'optparse/time'
#   require 'ostruct'
#   require 'pp'
#
#   class OptparseExample
#     Version = '1.0.0'
#
#     CODES = %w[iso-2022-jp shift_jis euc-jp utf8 binary]
#     CODE_ALIASES = { "jis" => "iso-2022-jp", "sjis" => "shift_jis" }
#
#     class ScriptOptions
#       attr_accessor :library, :inplace, :encoding, :transfer_type,
#                     :verbose, :extension, :delay, :time, :record_separator,
#                     :list
#
#       def initialize
#         self.library = []
#         self.inplace = false
#         self.encoding = "utf8"
#         self.transfer_type = :auto
#         self.verbose = false
#       end
#
#       def define_options(parser)
#         parser.banner = "Usage: example.rb [options]"
#         parser.separator ""
#         parser.separator "Specific options:"
#
#         # add additional options
#         perform_inplace_option(parser)
#         delay_execution_option(parser)
#         execute_at_time_option(parser)
#         specify_record_separator_option(parser)
#         list_example_option(parser)
#         specify_encoding_option(parser)
#         optional_option_argument_with_keyword_completion_option(parser)
#         boolean_verbose_option(parser)
#
#         parser.separator ""
#         parser.separator "Common options:"
#         # No argument, shows at tail.  This will print an options summary.
#         # Try it and see!
#         parser.on_tail("-h", "--help", "Show this message") do
#           puts parser
#           exit
#         end
#         # Another typical switch to print the version.
#         parser.on_tail("--version", "Show version") do
#           puts Version
#           exit
#         end
#       end
#
#       def perform_inplace_option(parser)
#         # Specifies an optional option argument
#         parser.on("-i", "--inplace [EXTENSION]",
#                   "Edit ARGV files in place",
#                   "(make backup if EXTENSION supplied)") do |ext|
#           self.inplace = true
#           self.extension = ext || ''
#           self.extension.sub!(/\A\.?(?=.)/, ".")  # Ensure extension begins with dot.
#         end
#       end
#
#       def delay_execution_option(parser)
#         # Cast 'delay' argument to a Float.
#         parser.on("--delay N", Float, "Delay N seconds before executing") do |n|
#           self.delay = n
#         end
#       end
#
#       def execute_at_time_option(parser)
#         # Cast 'time' argument to a Time object.
#         parser.on("-t", "--time [TIME]", Time, "Begin execution at given time") do |time|
#           self.time = time
#         end
#       end
#
#       def specify_record_separator_option(parser)
#         # Cast to octal integer.
#         parser.on("-F", "--irs [OCTAL]", OptionParser::OctalInteger,
#                   "Specify record separator (default \\0)") do |rs|
#           self.record_separator = rs
#         end
#       end
#
#       def list_example_option(parser)
#         # List of arguments.
#         parser.on("--list x,y,z", Array, "Example 'list' of arguments") do |list|
#           self.list = list
#         end
#       end
#
#       def specify_encoding_option(parser)
#         # Keyword completion.  We are specifying a specific set of arguments (CODES
#         # and CODE_ALIASES - notice the latter is a Hash), and the user may provide
#         # the shortest unambiguous text.
#         code_list = (CODE_ALIASES.keys + CODES).join(', ')
#         parser.on("--code CODE", CODES, CODE_ALIASES, "Select encoding",
#                   "(#{code_list})") do |encoding|
#           self.encoding = encoding
#         end
#       end
#
#       def optional_option_argument_with_keyword_completion_option(parser)
#         # Optional '--type' option argument with keyword completion.
#         parser.on("--type [TYPE]", [:text, :binary, :auto],
#                   "Select transfer type (text, binary, auto)") do |t|
#           self.transfer_type = t
#         end
#       end
#
#       def boolean_verbose_option(parser)
#         # Boolean switch.
#         parser.on("-v", "--[no-]verbose", "Run verbosely") do |v|
#           self.verbose = v
#         end
#       end
#     end
#
#     #
#     # Return a structure describing the options.
#     #
#     def parse(args)
#       # The options specified on the command line will be collected in
#       # *options*.
#
#       @options = ScriptOptions.new
#       @args = OptionParser.new do |parser|
#         @options.define_options(parser)
#         parser.parse!(args)
#       end
#       @options
#     end
#
#     attr_reader :parser, :options
#   end  # class OptparseExample
#
#   example = OptparseExample.new
#   options = example.parse(ARGV)
#   pp options # example.options
#   pp ARGV
#
# === Shell Completion
#
# For modern shells (e.g. bash, zsh, etc.), you can use shell
# completion for command line options.
#
# === Further documentation
#
# The above examples should be enough to learn how to use this class.  If you
# have any questions, file a ticket at http://bugs.ruby-lang.org.
#
class OptionParser
  # :stopdoc:
  NoArgument = [NO_ARGUMENT = :NONE, nil].freeze
  RequiredArgument = [REQUIRED_ARGUMENT = :REQUIRED, true].freeze
  OptionalArgument = [OPTIONAL_ARGUMENT = :OPTIONAL, false].freeze
  # :startdoc:

  #
  # Keyword completion module.  This allows partial arguments to be specified
  # and resolved against a list of acceptable values.
  #
  module Completion
    def self.regexp(key, icase)
      Regexp.new('\A' + Regexp.quote(key).gsub(/\w+\b/, '\&\w*'), icase)
    end

    def self.candidate(key, icase = false, pat = nil, &block)
      pat ||= Completion.regexp(key, icase)
      candidates = []
      block.call do |k, *v|
        (if Regexp === k
           kn = ""
           k === key
         else
           kn = defined?(k.id2name) ? k.id2name : k
           pat === kn
         end) or next
        v << k if v.empty?
        candidates << [k, v, kn]
      end
      candidates
    end

    def candidate(key, icase = false, pat = nil)
      Completion.candidate(key, icase, pat, &method(:each))
    end

    public
    def complete(key, icase = false, pat = nil)
      candidates = candidate(key, icase, pat, &method(:each)).sort_by {|k, v, kn| kn.size}
      if candidates.size == 1
        canon, sw, * = candidates[0]
      elsif candidates.size > 1
        canon, sw, cn = candidates.shift
        candidates.each do |k, v, kn|
          next if sw == v
          if String === cn and String === kn
            if cn.rindex(kn, 0)
              canon, sw, cn = k, v, kn
              next
            elsif kn.rindex(cn, 0)
              next
            end
          end
          throw :ambiguous, key
        end
      end
      if canon
        block_given? or return key, *sw
        yield(key, *sw)
      end
    end

    def convert(opt = nil, val = nil, *)
      val
    end
  end


  #
  # Map from option/keyword string to object with completion.
  #
  class OptionMap < Hash
    include Completion
  end


  #
  # Individual switch class.  Not important to the user.
  #
  # Defined within Switch are several Switch-derived classes: NoArgument,
  # RequiredArgument, etc.
  #
  class Switch
    attr_reader :pattern, :conv, :short, :long, :arg, :desc, :block

    #
    # Guesses argument style from +arg+.  Returns corresponding
    # OptionParser::Switch class (OptionalArgument, etc.).
    #
    def self.guess(arg)
      case arg
      when ""
        t = self
      when /\A=?\[/
        t = Switch::OptionalArgument
      when /\A\s+\[/
        t = Switch::PlacedArgument
      else
        t = Switch::RequiredArgument
      end
      self >= t or incompatible_argument_styles(arg, t)
      t
    end

    def self.incompatible_argument_styles(arg, t)
      raise(ArgumentError, "#{arg}: incompatible argument styles\n  #{self}, #{t}",
            ParseError.filter_backtrace(caller(2)))
    end

    def self.pattern
      NilClass
    end

    def initialize(pattern = nil, conv = nil,
                   short = nil, long = nil, arg = nil,
                   desc = ([] if short or long), block = nil, &_block)
      raise if Array === pattern
      block ||= _block
      @pattern, @conv, @short, @long, @arg, @desc, @block =
        pattern, conv, short, long, arg, desc, block
    end

    #
    # Parses +arg+ and returns rest of +arg+ and matched portion to the
    # argument pattern. Yields when the pattern doesn't match substring.
    #
    def parse_arg(arg)
      pattern or return nil, [arg]
      unless m = pattern.match(arg)
        yield(InvalidArgument, arg)
        return arg, []
      end
      if String === m
        m = [s = m]
      else
        m = m.to_a
        s = m[0]
        return nil, m unless String === s
      end
      raise InvalidArgument, arg unless arg.rindex(s, 0)
      return nil, m if s.length == arg.length
      yield(InvalidArgument, arg) # didn't match whole arg
      return arg[s.length..-1], m
    end
    private :parse_arg

    #
    # Parses argument, converts and returns +arg+, +block+ and result of
    # conversion. Yields at semi-error condition instead of raising an
    # exception.
    #
    def conv_arg(arg, val = [])
      if conv
        val = conv.call(*val)
      else
        val = proc {|v| v}.call(*val)
      end
      return arg, block, val
    end
    private :conv_arg

    #
    # Produces the summary text. Each line of the summary is yielded to the
    # block (without newline).
    #
    # +sdone+::  Already summarized short style options keyed hash.
    # +ldone+::  Already summarized long style options keyed hash.
    # +width+::  Width of left side (option part). In other words, the right
    #            side (description part) starts after +width+ columns.
    # +max+::    Maximum width of left side -> the options are filled within
    #            +max+ columns.
    # +indent+:: Prefix string indents all summarized lines.
    #
    def summarize(sdone = {}, ldone = {}, width = 1, max = width - 1, indent = "")
      sopts, lopts = [], [], nil
      @short.each {|s| sdone.fetch(s) {sopts << s}; sdone[s] = true} if @short
      @long.each {|s| ldone.fetch(s) {lopts << s}; ldone[s] = true} if @long
      return if sopts.empty? and lopts.empty? # completely hidden

      left = [sopts.join(', ')]
      right = desc.dup

      while s = lopts.shift
        l = left[-1].length + s.length
        l += arg.length if left.size == 1 && arg
        l < max or sopts.empty? or left << +''
        left[-1] << (left[-1].empty? ? ' ' * 4 : ', ') << s
      end

      if arg
        left[0] << (left[1] ? arg.sub(/\A(\[?)=/, '\1') + ',' : arg)
      end
      mlen = left.collect {|ss| ss.length}.max.to_i
      while mlen > width and l = left.shift
        mlen = left.collect {|ss| ss.length}.max.to_i if l.length == mlen
        if l.length < width and (r = right[0]) and !r.empty?
          l = l.to_s.ljust(width) + ' ' + r
          right.shift
        end
        yield(indent + l)
      end

      while begin l = left.shift; r = right.shift; l or r end
        l = l.to_s.ljust(width) + ' ' + r if r and !r.empty?
        yield(indent + l)
      end

      self
    end

    def add_banner(to)  # :nodoc:
      unless @short or @long
        s = desc.join
        to << " [" + s + "]..." unless s.empty?
      end
      to
    end

    def match_nonswitch?(str)  # :nodoc:
      @pattern =~ str unless @short or @long
    end

    #
    # Main name of the switch.
    #
    def switch_name
      (long.first || short.first).sub(/\A-+(?:\[no-\])?/, '')
    end

    def compsys(sdone, ldone)   # :nodoc:
      sopts, lopts = [], []
      @short.each {|s| sdone.fetch(s) {sopts << s}; sdone[s] = true} if @short
      @long.each {|s| ldone.fetch(s) {lopts << s}; ldone[s] = true} if @long
      return if sopts.empty? and lopts.empty? # completely hidden

      (sopts+lopts).each do |opt|
        # "(-x -c -r)-l[left justify]"
        if /^--\[no-\](.+)$/ =~ opt
          o = $1
          yield("--#{o}", desc.join(""))
          yield("--no-#{o}", desc.join(""))
        else
          yield("#{opt}", desc.join(""))
        end
      end
    end

    #
    # Switch that takes no arguments.
    #
    class NoArgument < self

      #
      # Raises an exception if any arguments given.
      #
      def parse(arg, argv)
        yield(NeedlessArgument, arg) if arg
        conv_arg(arg)
      end

      def self.incompatible_argument_styles(*)
      end

      def self.pattern
        Object
      end
    end

    #
    # Switch that takes an argument.
    #
    class RequiredArgument < self

      #
      # Raises an exception if argument is not present.
      #
      def parse(arg, argv)
        unless arg
          raise MissingArgument if argv.empty?
          arg = argv.shift
        end
        conv_arg(*parse_arg(arg, &method(:raise)))
      end
    end

    #
    # Switch that can omit argument.
    #
    class OptionalArgument < self

      #
      # Parses argument if given, or uses default value.
      #
      def parse(arg, argv, &error)
        if arg
          conv_arg(*parse_arg(arg, &error))
        else
          conv_arg(arg)
        end
      end
    end

    #
    # Switch that takes an argument, which does not begin with '-'.
    #
    class PlacedArgument < self

      #
      # Returns nil if argument is not present or begins with '-'.
      #
      def parse(arg, argv, &error)
        if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
          return nil, block, nil
        end
        opt = (val = parse_arg(val, &error))[1]
        val = conv_arg(*val)
        if opt and !arg
          argv.shift
        else
          val[0] = nil
        end
        val
      end
    end
  end

  #
  # Simple option list providing mapping from short and/or long option
  # string to OptionParser::Switch and mapping from acceptable argument to
  # matching pattern and converter pair. Also provides summary feature.
  #
  class List
    # Map from acceptable argument types to pattern and converter pairs.
    attr_reader :atype

    # Map from short style option switches to actual switch objects.
    attr_reader :short

    # Map from long style option switches to actual switch objects.
    attr_reader :long

    # List of all switches and summary string.
    attr_reader :list

    #
    # Just initializes all instance variables.
    #
    def initialize
      @atype = {}
      @short = OptionMap.new
      @long = OptionMap.new
      @list = []
    end

    #
    # See OptionParser.accept.
    #
    def accept(t, pat = /.*/m, &block)
      if pat
        pat.respond_to?(:match) or
          raise TypeError, "has no `match'", ParseError.filter_backtrace(caller(2))
      else
        pat = t if t.respond_to?(:match)
      end
      unless block
        block = pat.method(:convert).to_proc if pat.respond_to?(:convert)
      end
      @atype[t] = [pat, block]
    end

    #
    # See OptionParser.reject.
    #
    def reject(t)
      @atype.delete(t)
    end

    #
    # Adds +sw+ according to +sopts+, +lopts+ and +nlopts+.
    #
    # +sw+::     OptionParser::Switch instance to be added.
    # +sopts+::  Short style option list.
    # +lopts+::  Long style option list.
    # +nlopts+:: Negated long style options list.
    #
    def update(sw, sopts, lopts, nsw = nil, nlopts = nil)
      sopts.each {|o| @short[o] = sw} if sopts
      lopts.each {|o| @long[o] = sw} if lopts
      nlopts.each {|o| @long[o] = nsw} if nsw and nlopts
      used = @short.invert.update(@long.invert)
      @list.delete_if {|o| Switch === o and !used[o]}
    end
    private :update

    #
    # Inserts +switch+ at the head of the list, and associates short, long
    # and negated long options. Arguments are:
    #
    # +switch+::      OptionParser::Switch instance to be inserted.
    # +short_opts+::  List of short style options.
    # +long_opts+::   List of long style options.
    # +nolong_opts+:: List of long style options with "no-" prefix.
    #
    #   prepend(switch, short_opts, long_opts, nolong_opts)
    #
    def prepend(*args)
      update(*args)
      @list.unshift(args[0])
    end

    #
    # Appends +switch+ at the tail of the list, and associates short, long
    # and negated long options. Arguments are:
    #
    # +switch+::      OptionParser::Switch instance to be inserted.
    # +short_opts+::  List of short style options.
    # +long_opts+::   List of long style options.
    # +nolong_opts+:: List of long style options with "no-" prefix.
    #
    #   append(switch, short_opts, long_opts, nolong_opts)
    #
    def append(*args)
      update(*args)
      @list.push(args[0])
    end

    #
    # Searches +key+ in +id+ list. The result is returned or yielded if a
    # block is given. If it isn't found, nil is returned.
    #
    def search(id, key)
      if list = __send__(id)
        val = list.fetch(key) {return nil}
        block_given? ? yield(val) : val
      end
    end

    #
    # Searches list +id+ for +opt+ and the optional patterns for completion
    # +pat+. If +icase+ is true, the search is case insensitive. The result
    # is returned or yielded if a block is given. If it isn't found, nil is
    # returned.
    #
    def complete(id, opt, icase = false, *pat, &block)
      __send__(id).complete(opt, icase, *pat, &block)
    end

    def get_candidates(id)
      yield __send__(id).keys
    end

    #
    # Iterates over each option, passing the option to the +block+.
    #
    def each_option(&block)
      list.each(&block)
    end

    #
    # Creates the summary table, passing each line to the +block+ (without
    # newline). The arguments +args+ are passed along to the summarize
    # method which is called on every option.
    #
    def summarize(*args, &block)
      sum = []
      list.reverse_each do |opt|
        if opt.respond_to?(:summarize) # perhaps OptionParser::Switch
          s = []
          opt.summarize(*args) {|l| s << l}
          sum.concat(s.reverse)
        elsif !opt or opt.empty?
          sum << ""
        elsif opt.respond_to?(:each_line)
          sum.concat([*opt.each_line].reverse)
        else
          sum.concat([*opt.each].reverse)
        end
      end
      sum.reverse_each(&block)
    end

    def add_banner(to)  # :nodoc:
      list.each do |opt|
        if opt.respond_to?(:add_banner)
          opt.add_banner(to)
        end
      end
      to
    end

    def compsys(*args, &block)  # :nodoc:
      list.each do |opt|
        if opt.respond_to?(:compsys)
          opt.compsys(*args, &block)
        end
      end
    end
  end

  #
  # Hash with completion search feature. See OptionParser::Completion.
  #
  class CompletingHash < Hash
    include Completion

    #
    # Completion for hash key.
    #
    def match(key)
      *values = fetch(key) {
        raise AmbiguousArgument, catch(:ambiguous) {return complete(key)}
      }
      return key, *values
    end
  end

  # :stopdoc:

  #
  # Enumeration of acceptable argument styles. Possible values are:
  #
  # NO_ARGUMENT::       The switch takes no arguments. (:NONE)
  # REQUIRED_ARGUMENT:: The switch requires an argument. (:REQUIRED)
  # OPTIONAL_ARGUMENT:: The switch requires an optional argument. (:OPTIONAL)
  #
  # Use like --switch=argument (long style) or -Xargument (short style). For
  # short style, only portion matched to argument pattern is treated as
  # argument.
  #
  ArgumentStyle = {}
  NoArgument.each {|el| ArgumentStyle[el] = Switch::NoArgument}
  RequiredArgument.each {|el| ArgumentStyle[el] = Switch::RequiredArgument}
  OptionalArgument.each {|el| ArgumentStyle[el] = Switch::OptionalArgument}
  ArgumentStyle.freeze

  #
  # Switches common used such as '--', and also provides default
  # argument classes
  #
  DefaultList = List.new
  DefaultList.short['-'] = Switch::NoArgument.new {}
  DefaultList.long[''] = Switch::NoArgument.new {throw :terminate}


  COMPSYS_HEADER = <<'XXX'      # :nodoc:

typeset -A opt_args
local context state line

_arguments -s -S \
XXX

  def compsys(to, name = File.basename($0)) # :nodoc:
    to << "#compdef #{name}\n"
    to << COMPSYS_HEADER
    visit(:compsys, {}, {}) {|o, d|
      to << %Q[  "#{o}[#{d.gsub(/[\"\[\]]/, '\\\\\&')}]" \\\n]
    }
    to << "  '*:file:_files' && return 0\n"
  end

  #
  # Default options for ARGV, which never appear in option summary.
  #
  Officious = {}

  #
  # --help
  # Shows option summary.
  #
  Officious['help'] = proc do |parser|
    Switch::NoArgument.new do |arg|
      puts parser.help
      exit
    end
  end

  #
  # --*-completion-bash=WORD
  # Shows candidates for command line completion.
  #
  Officious['*-completion-bash'] = proc do |parser|
    Switch::RequiredArgument.new do |arg|
      puts parser.candidate(arg)
      exit
    end
  end

  #
  # --*-completion-zsh[=NAME:FILE]
  # Creates zsh completion file.
  #
  Officious['*-completion-zsh'] = proc do |parser|
    Switch::OptionalArgument.new do |arg|
      parser.compsys(STDOUT, arg)
      exit
    end
  end

  #
  # --version
  # Shows version string if Version is defined.
  #
  Officious['version'] = proc do |parser|
    Switch::OptionalArgument.new do |pkg|
      if pkg
        begin
          require 'optparse/version'
        rescue LoadError
        else
          show_version(*pkg.split(/,/)) or
            abort("#{parser.program_name}: no version found in package #{pkg}")
          exit
        end
      end
      v = parser.ver or abort("#{parser.program_name}: version unknown")
      puts v
      exit
    end
  end

  # :startdoc:

  #
  # Class methods
  #

  #
  # Initializes a new instance and evaluates the optional block in context
  # of the instance. Arguments +args+ are passed to #new, see there for
  # description of parameters.
  #
  # This method is *deprecated*, its behavior corresponds to the older #new
  # method.
  #
  def self.with(*args, &block)
    opts = new(*args)
    opts.instance_eval(&block)
    opts
  end

  #
  # Returns an incremented value of +default+ according to +arg+.
  #
  def self.inc(arg, default = nil)
    case arg
    when Integer
      arg.nonzero?
    when nil
      default.to_i + 1
    end
  end
  def inc(*args)
    self.class.inc(*args)
  end

  #
  # Initializes the instance and yields itself if called with a block.
  #
  # +banner+:: Banner message.
  # +width+::  Summary width.
  # +indent+:: Summary indent.
  #
  def initialize(banner = nil, width = 32, indent = ' ' * 4)
    @stack = [DefaultList, List.new, List.new]
    @program_name = nil
    @banner = banner
    @summary_width = width
    @summary_indent = indent
    @default_argv = ARGV
    add_officious
    yield self if block_given?
  end

  def add_officious  # :nodoc:
    list = base()
    Officious.each do |opt, block|
      list.long[opt] ||= block.call(self)
    end
  end

  #
  # Terminates option parsing. Optional parameter +arg+ is a string pushed
  # back to be the first non-option argument.
  #
  def terminate(arg = nil)
    self.class.terminate(arg)
  end
  def self.terminate(arg = nil)
    throw :terminate, arg
  end

  @stack = [DefaultList]
  def self.top() DefaultList end

  #
  # Directs to accept specified class +t+. The argument string is passed to
  # the block in which it should be converted to the desired class.
  #
  # +t+::   Argument class specifier, any object including Class.
  # +pat+:: Pattern for argument, defaults to +t+ if it responds to match.
  #
  #   accept(t, pat, &block)
  #
  def accept(*args, &blk) top.accept(*args, &blk) end
  #
  # See #accept.
  #
  def self.accept(*args, &blk) top.accept(*args, &blk) end

  #
  # Directs to reject specified class argument.
  #
  # +t+:: Argument class specifier, any object including Class.
  #
  #   reject(t)
  #
  def reject(*args, &blk) top.reject(*args, &blk) end
  #
  # See #reject.
  #
  def self.reject(*args, &blk) top.reject(*args, &blk) end

  #
  # Instance methods
  #

  # Heading banner preceding summary.
  attr_writer :banner

  # Program name to be emitted in error message and default banner,
  # defaults to $0.
  attr_writer :program_name

  # Width for option list portion of summary. Must be Numeric.
  attr_accessor :summary_width

  # Indentation for summary. Must be String (or have + String method).
  attr_accessor :summary_indent

  # Strings to be parsed in default.
  attr_accessor :default_argv

  #
  # Heading banner preceding summary.
  #
  def banner
    unless @banner
      @banner = +"Usage: #{program_name} [options]"
      visit(:add_banner, @banner)
    end
    @banner
  end

  #
  # Program name to be emitted in error message and default banner, defaults
  # to $0.
  #
  def program_name
    @program_name || File.basename($0, '.*')
  end

  # for experimental cascading :-)
  alias set_banner banner=
  alias set_program_name program_name=
  alias set_summary_width summary_width=
  alias set_summary_indent summary_indent=

  # Version
  attr_writer :version
  # Release code
  attr_writer :release

  #
  # Version
  #
  def version
    (defined?(@version) && @version) || (defined?(::Version) && ::Version)
  end

  #
  # Release code
  #
  def release
    (defined?(@release) && @release) || (defined?(::Release) && ::Release) || (defined?(::RELEASE) && ::RELEASE)
  end

  #
  # Returns version string from program_name, version and release.
  #
  def ver
    if v = version
      str = +"#{program_name} #{[v].join('.')}"
      str << " (#{v})" if v = release
      str
    end
  end

  def warn(mesg = $!)
    super("#{program_name}: #{mesg}")
  end

  def abort(mesg = $!)
    super("#{program_name}: #{mesg}")
  end

  #
  # Subject of #on / #on_head, #accept / #reject
  #
  def top
    @stack[-1]
  end

  #
  # Subject of #on_tail.
  #
  def base
    @stack[1]
  end

  #
  # Pushes a new List.
  #
  def new
    @stack.push(List.new)
    if block_given?
      yield self
    else
      self
    end
  end

  #
  # Removes the last List.
  #
  def remove
    @stack.pop
  end

  #
  # Puts option summary into +to+ and returns +to+. Yields each line if
  # a block is given.
  #
  # +to+:: Output destination, which must have method <<. Defaults to [].
  # +width+:: Width of left side, defaults to @summary_width.
  # +max+:: Maximum length allowed for left side, defaults to +width+ - 1.
  # +indent+:: Indentation, defaults to @summary_indent.
  #
  def summarize(to = [], width = @summary_width, max = width - 1, indent = @summary_indent, &blk)
    nl = "\n"
    blk ||= proc {|l| to << (l.index(nl, -1) ? l : l + nl)}
    visit(:summarize, {}, {}, width, max, indent, &blk)
    to
  end

  #
  # Returns option summary string.
  #
  def help; summarize("#{banner}".sub(/\n?\z/, "\n")) end
  alias to_s help

  #
  # Returns option summary list.
  #
  def to_a; summarize("#{banner}".split(/^/)) end

  #
  # Checks if an argument is given twice, in which case an ArgumentError is
  # raised. Called from OptionParser#switch only.
  #
  # +obj+:: New argument.
  # +prv+:: Previously specified argument.
  # +msg+:: Exception message.
  #
  def notwice(obj, prv, msg)
    unless !prv or prv == obj
      raise(ArgumentError, "argument #{msg} given twice: #{obj}",
            ParseError.filter_backtrace(caller(2)))
    end
    obj
  end
  private :notwice

  SPLAT_PROC = proc {|*a| a.length <= 1 ? a.first : a} # :nodoc:
  #
  # Creates an OptionParser::Switch from the parameters. The parsed argument
  # value is passed to the given block, where it can be processed.
  #
  # See at the beginning of OptionParser for some full examples.
  #
  # +opts+ can include the following elements:
  #
  # [Argument style:]
  #   One of the following:
  #     :NONE, :REQUIRED, :OPTIONAL
  #
  # [Argument pattern:]
  #   Acceptable option argument format, must be pre-defined with
  #   OptionParser.accept or OptionParser#accept, or Regexp. This can appear
  #   once or assigned as String if not present, otherwise causes an
  #   ArgumentError. Examples:
  #     Float, Time, Array
  #
  # [Possible argument values:]
  #   Hash or Array.
  #     [:text, :binary, :auto]
  #     %w[iso-2022-jp shift_jis euc-jp utf8 binary]
  #     { "jis" => "iso-2022-jp", "sjis" => "shift_jis" }
  #
  # [Long style switch:]
  #   Specifies a long style switch which takes a mandatory, optional or no
  #   argument. It's a string of the following form:
  #     "--switch=MANDATORY" or "--switch MANDATORY"
  #     "--switch[=OPTIONAL]"
  #     "--switch"
  #
  # [Short style switch:]
  #   Specifies short style switch which takes a mandatory, optional or no
  #   argument. It's a string of the following form:
  #     "-xMANDATORY"
  #     "-x[OPTIONAL]"
  #     "-x"
  #   There is also a special form which matches character range (not full
  #   set of regular expression):
  #     "-[a-z]MANDATORY"
  #     "-[a-z][OPTIONAL]"
  #     "-[a-z]"
  #
  # [Argument style and description:]
  #   Instead of specifying mandatory or optional arguments directly in the
  #   switch parameter, this separate parameter can be used.
  #     "=MANDATORY"
  #     "=[OPTIONAL]"
  #
  # [Description:]
  #   Description string for the option.
  #     "Run verbosely"
  #   If you give multiple description strings, each string will be printed
  #   line by line.
  #
  # [Handler:]
  #   Handler for the parsed argument value. Either give a block or pass a
  #   Proc or Method as an argument.
  #
  def make_switch(opts, block = nil)
    short, long, nolong, style, pattern, conv, not_pattern, not_conv, not_style = [], [], []
    ldesc, sdesc, desc, arg = [], [], []
    default_style = Switch::NoArgument
    default_pattern = nil
    klass = nil
    q, a = nil
    has_arg = false

    opts.each do |o|
      # argument class
      next if search(:atype, o) do |pat, c|
        klass = notwice(o, klass, 'type')
        if not_style and not_style != Switch::NoArgument
          not_pattern, not_conv = pat, c
        else
          default_pattern, conv = pat, c
        end
      end

      # directly specified pattern(any object possible to match)
      if (!(String === o || Symbol === o)) and o.respond_to?(:match)
        pattern = notwice(o, pattern, 'pattern')
        if pattern.respond_to?(:convert)
          conv = pattern.method(:convert).to_proc
        else
          conv = SPLAT_PROC
        end
        next
      end

      # anything others
      case o
      when Proc, Method
        block = notwice(o, block, 'block')
      when Array, Hash
        case pattern
        when CompletingHash
        when nil
          pattern = CompletingHash.new
          conv = pattern.method(:convert).to_proc if pattern.respond_to?(:convert)
        else
          raise ArgumentError, "argument pattern given twice"
        end
        o.each {|pat, *v| pattern[pat] = v.fetch(0) {pat}}
      when Module
        raise ArgumentError, "unsupported argument type: #{o}", ParseError.filter_backtrace(caller(4))
      when *ArgumentStyle.keys
        style = notwice(ArgumentStyle[o], style, 'style')
      when /^--no-([^\[\]=\s]*)(.+)?/
        q, a = $1, $2
        o = notwice(a ? Object : TrueClass, klass, 'type')
        not_pattern, not_conv = search(:atype, o) unless not_style
        not_style = (not_style || default_style).guess(arg = a) if a
        default_style = Switch::NoArgument
        default_pattern, conv = search(:atype, FalseClass) unless default_pattern
        ldesc << "--no-#{q}"
        (q = q.downcase).tr!('_', '-')
        long << "no-#{q}"
        nolong << q
      when /^--\[no-\]([^\[\]=\s]*)(.+)?/
        q, a = $1, $2
        o = notwice(a ? Object : TrueClass, klass, 'type')
        if a
          default_style = default_style.guess(arg = a)
          default_pattern, conv = search(:atype, o) unless default_pattern
        end
        ldesc << "--[no-]#{q}"
        (o = q.downcase).tr!('_', '-')
        long << o
        not_pattern, not_conv = search(:atype, FalseClass) unless not_style
        not_style = Switch::NoArgument
        nolong << "no-#{o}"
      when /^--([^\[\]=\s]*)(.+)?/
        q, a = $1, $2
        if a
          o = notwice(NilClass, klass, 'type')
          default_style = default_style.guess(arg = a)
          default_pattern, conv = search(:atype, o) unless default_pattern
        end
        ldesc << "--#{q}"
        (o = q.downcase).tr!('_', '-')
        long << o
      when /^-(\[\^?\]?(?:[^\\\]]|\\.)*\])(.+)?/
        q, a = $1, $2
        o = notwice(Object, klass, 'type')
        if a
          default_style = default_style.guess(arg = a)
          default_pattern, conv = search(:atype, o) unless default_pattern
        else
          has_arg = true
        end
        sdesc << "-#{q}"
        short << Regexp.new(q)
      when /^-(.)(.+)?/
        q, a = $1, $2
        if a
          o = notwice(NilClass, klass, 'type')
          default_style = default_style.guess(arg = a)
          default_pattern, conv = search(:atype, o) unless default_pattern
        end
        sdesc << "-#{q}"
        short << q
      when /^=/
        style = notwice(default_style.guess(arg = o), style, 'style')
        default_pattern, conv = search(:atype, Object) unless default_pattern
      else
        desc.push(o)
      end
    end

    default_pattern, conv = search(:atype, default_style.pattern) unless default_pattern
    if !(short.empty? and long.empty?)
      if has_arg and default_style == Switch::NoArgument
        default_style = Switch::RequiredArgument
      end
      s = (style || default_style).new(pattern || default_pattern,
                                       conv, sdesc, ldesc, arg, desc, block)
    elsif !block
      if style or pattern
        raise ArgumentError, "no switch given", ParseError.filter_backtrace(caller)
      end
      s = desc
    else
      short << pattern
      s = (style || default_style).new(pattern,
                                       conv, nil, nil, arg, desc, block)
    end
    return s, short, long,
      (not_style.new(not_pattern, not_conv, sdesc, ldesc, nil, desc, block) if not_style),
      nolong
  end

  def define(*opts, &block)
    top.append(*(sw = make_switch(opts, block)))
    sw[0]
  end

  #
  # Add option switch and handler. See #make_switch for an explanation of
  # parameters.
  #
  def on(*opts, &block)
    define(*opts, &block)
    self
  end
  alias def_option define

  def define_head(*opts, &block)
    top.prepend(*(sw = make_switch(opts, block)))
    sw[0]
  end

  #
  # Add option switch like with #on, but at head of summary.
  #
  def on_head(*opts, &block)
    define_head(*opts, &block)
    self
  end
  alias def_head_option define_head

  def define_tail(*opts, &block)
    base.append(*(sw = make_switch(opts, block)))
    sw[0]
  end

  #
  # Add option switch like with #on, but at tail of summary.
  #
  def on_tail(*opts, &block)
    define_tail(*opts, &block)
    self
  end
  alias def_tail_option define_tail

  #
  # Add separator in summary.
  #
  def separator(string)
    top.append(string, nil, nil)
  end

  #
  # Parses command line arguments +argv+ in order. When a block is given,
  # each non-option argument is yielded. When optional +into+ keyword
  # argument is provided, the parsed option values are stored there via
  # <code>[]=</code> method (so it can be Hash, or OpenStruct, or other
  # similar object).
  #
  # Returns the rest of +argv+ left unparsed.
  #
  def order(*argv, into: nil, &nonopt)
    argv = argv[0].dup if argv.size == 1 and Array === argv[0]
    order!(argv, into: into, &nonopt)
  end

  #
  # Same as #order, but removes switches destructively.
  # Non-option arguments remain in +argv+.
  #
  def order!(argv = default_argv, into: nil, &nonopt)
    setter = ->(name, val) {into[name.to_sym] = val} if into
    parse_in_order(argv, setter, &nonopt)
  end

  def parse_in_order(argv = default_argv, setter = nil, &nonopt)  # :nodoc:
    opt, arg, val, rest = nil
    nonopt ||= proc {|a| throw :terminate, a}
    argv.unshift(arg) if arg = catch(:terminate) {
      while arg = argv.shift
        case arg
        # long option
        when /\A--([^=]*)(?:=(.*))?/m
          opt, rest = $1, $2
          opt.tr!('_', '-')
          begin
            sw, = complete(:long, opt, true)
          rescue ParseError
            raise $!.set_option(arg, true)
          end
          begin
            opt, cb, val = sw.parse(rest, argv) {|*exc| raise(*exc)}
            val = cb.call(val) if cb
            setter.call(sw.switch_name, val) if setter
          rescue ParseError
            raise $!.set_option(arg, rest)
          end

        # short option
        when /\A-(.)((=).*|.+)?/m
          eq, rest, opt = $3, $2, $1
          has_arg, val = eq, rest
          begin
            sw, = search(:short, opt)
            unless sw
              begin
                sw, = complete(:short, opt)
                # short option matched.
                val = arg.delete_prefix('-')
                has_arg = true
              rescue InvalidOption
                # if no short options match, try completion with long
                # options.
                sw, = complete(:long, opt)
                eq ||= !rest
              end
            end
          rescue ParseError
            raise $!.set_option(arg, true)
          end
          begin
            opt, cb, val = sw.parse(val, argv) {|*exc| raise(*exc) if eq}
            raise InvalidOption, arg if has_arg and !eq and arg == "-#{opt}"
            argv.unshift(opt) if opt and (!rest or (opt = opt.sub(/\A-*/, '-')) != '-')
            val = cb.call(val) if cb
            setter.call(sw.switch_name, val) if setter
          rescue ParseError
            raise $!.set_option(arg, arg.length > 2)
          end

        # non-option argument
        else
          catch(:prune) do
            visit(:each_option) do |sw0|
              sw = sw0
              sw.block.call(arg) if Switch === sw and sw.match_nonswitch?(arg)
            end
            nonopt.call(arg)
          end
        end
      end

      nil
    }

    visit(:search, :short, nil) {|sw| sw.block.call(*argv) if !sw.pattern}

    argv
  end
  private :parse_in_order

  #
  # Parses command line arguments +argv+ in permutation mode and returns
  # list of non-option arguments. When optional +into+ keyword
  # argument is provided, the parsed option values are stored there via
  # <code>[]=</code> method (so it can be Hash, or OpenStruct, or other
  # similar object).
  #
  def permute(*argv, into: nil)
    argv = argv[0].dup if argv.size == 1 and Array === argv[0]
    permute!(argv, into: into)
  end

  #
  # Same as #permute, but removes switches destructively.
  # Non-option arguments remain in +argv+.
  #
  def permute!(argv = default_argv, into: nil)
    nonopts = []
    order!(argv, into: into, &nonopts.method(:<<))
    argv[0, 0] = nonopts
    argv
  end

  #
  # Parses command line arguments +argv+ in order when environment variable
  # POSIXLY_CORRECT is set, and in permutation mode otherwise.
  # When optional +into+ keyword argument is provided, the parsed option
  # values are stored there via <code>[]=</code> method (so it can be Hash,
  # or OpenStruct, or other similar object).
  #
  def parse(*argv, into: nil)
    argv = argv[0].dup if argv.size == 1 and Array === argv[0]
    parse!(argv, into: into)
  end

  #
  # Same as #parse, but removes switches destructively.
  # Non-option arguments remain in +argv+.
  #
  def parse!(argv = default_argv, into: nil)
    if ENV.include?('POSIXLY_CORRECT')
      order!(argv, into: into)
    else
      permute!(argv, into: into)
    end
  end

  #
  # Wrapper method for getopts.rb.
  #
  #   params = ARGV.getopts("ab:", "foo", "bar:", "zot:Z;zot option")
  #   # params["a"] = true   # -a
  #   # params["b"] = "1"    # -b1
  #   # params["foo"] = "1"  # --foo
  #   # params["bar"] = "x"  # --bar x
  #   # params["zot"] = "z"  # --zot Z
  #
  def getopts(*args)
    argv = Array === args.first ? args.shift : default_argv
    single_options, *long_options = *args

    result = {}

    single_options.scan(/(.)(:)?/) do |opt, val|
      if val
        result[opt] = nil
        define("-#{opt} VAL")
      else
        result[opt] = false
        define("-#{opt}")
      end
    end if single_options

    long_options.each do |arg|
      arg, desc = arg.split(';', 2)
      opt, val = arg.split(':', 2)
      if val
        result[opt] = val.empty? ? nil : val
        define("--#{opt}=#{result[opt] || "VAL"}", *[desc].compact)
      else
        result[opt] = false
        define("--#{opt}", *[desc].compact)
      end
    end

    parse_in_order(argv, result.method(:[]=))
    result
  end

  #
  # See #getopts.
  #
  def self.getopts(*args)
    new.getopts(*args)
  end

  #
  # Traverses @stack, sending each element method +id+ with +args+ and
  # +block+.
  #
  def visit(id, *args, &block)
    @stack.reverse_each do |el|
      el.send(id, *args, &block)
    end
    nil
  end
  private :visit

  #
  # Searches +key+ in @stack for +id+ hash and returns or yields the result.
  #
  def search(id, key)
    block_given = block_given?
    visit(:search, id, key) do |k|
      return block_given ? yield(k) : k
    end
  end
  private :search

  #
  # Completes shortened long style option switch and returns pair of
  # canonical switch and switch descriptor OptionParser::Switch.
  #
  # +typ+::   Searching table.
  # +opt+::   Searching key.
  # +icase+:: Search case insensitive if true.
  # +pat+::   Optional pattern for completion.
  #
  def complete(typ, opt, icase = false, *pat)
    if pat.empty?
      search(typ, opt) {|sw| return [sw, opt]} # exact match or...
    end
    ambiguous = catch(:ambiguous) {
      visit(:complete, typ, opt, icase, *pat) {|o, *sw| return sw}
    }
    exc = ambiguous ? AmbiguousOption : InvalidOption
    raise exc.new(opt, additional: self.method(:additional_message).curry[typ])
  end
  private :complete

  #
  # Returns additional info.
  #
  def additional_message(typ, opt)
    return unless typ and opt and defined?(DidYouMean::SpellChecker)
    all_candidates = []
    visit(:get_candidates, typ) do |candidates|
      all_candidates.concat(candidates)
    end
    all_candidates.select! {|cand| cand.is_a?(String) }
    checker = DidYouMean::SpellChecker.new(dictionary: all_candidates)
    DidYouMean.formatter.message_for(all_candidates & checker.correct(opt))
  end

  def candidate(word)
    list = []
    case word
    when '-'
      long = short = true
    when /\A--/
      word, arg = word.split(/=/, 2)
      argpat = Completion.regexp(arg, false) if arg and !arg.empty?
      long = true
    when /\A-/
      short = true
    end
    pat = Completion.regexp(word, long)
    visit(:each_option) do |opt|
      next unless Switch === opt
      opts = (long ? opt.long : []) + (short ? opt.short : [])
      opts = Completion.candidate(word, true, pat, &opts.method(:each)).map(&:first) if pat
      if /\A=/ =~ opt.arg
        opts.map! {|sw| sw + "="}
        if arg and CompletingHash === opt.pattern
          if opts = opt.pattern.candidate(arg, false, argpat)
            opts.map!(&:last)
          end
        end
      end
      list.concat(opts)
    end
    list
  end

  #
  # Loads options from file names as +filename+. Does nothing when the file
  # is not present. Returns whether successfully loaded.
  #
  # +filename+ defaults to basename of the program without suffix in a
  # directory ~/.options, then the basename with '.options' suffix
  # under XDG and Haiku standard places.
  #
  def load(filename = nil)
    unless filename
      basename = File.basename($0, '.*')
      return true if load(File.expand_path(basename, '~/.options')) rescue nil
      basename << ".options"
      return [
        # XDG
        ENV['XDG_CONFIG_HOME'],
        '~/.config',
        *ENV['XDG_CONFIG_DIRS']&.split(File::PATH_SEPARATOR),

        # Haiku
        '~/config/settings',
      ].any? {|dir|
        next if !dir or dir.empty?
        load(File.expand_path(basename, dir)) rescue nil
      }
    end
    begin
      parse(*IO.readlines(filename).each {|s| s.chomp!})
      true
    rescue Errno::ENOENT, Errno::ENOTDIR
      false
    end
  end

  #
  # Parses environment variable +env+ or its uppercase with splitting like a
  # shell.
  #
  # +env+ defaults to the basename of the program.
  #
  def environment(env = File.basename($0, '.*'))
    env = ENV[env] || ENV[env.upcase] or return
    require 'shellwords'
    parse(*Shellwords.shellwords(env))
  end

  #
  # Acceptable argument classes
  #

  #
  # Any string and no conversion. This is fall-back.
  #
  accept(Object) {|s,|s or s.nil?}

  accept(NilClass) {|s,|s}

  #
  # Any non-empty string, and no conversion.
  #
  accept(String, /.+/m) {|s,*|s}

  #
  # Ruby/C-like integer, octal for 0-7 sequence, binary for 0b, hexadecimal
  # for 0x, and decimal for others; with optional sign prefix. Converts to
  # Integer.
  #
  decimal = '\d+(?:_\d+)*'
  binary = 'b[01]+(?:_[01]+)*'
  hex = 'x[\da-f]+(?:_[\da-f]+)*'
  octal = "0(?:[0-7]+(?:_[0-7]+)*|#{binary}|#{hex})?"
  integer = "#{octal}|#{decimal}"

  accept(Integer, %r"\A[-+]?(?:#{integer})\z"io) {|s,|
    begin
      Integer(s)
    rescue ArgumentError
      raise OptionParser::InvalidArgument, s
    end if s
  }

  #
  # Float number format, and converts to Float.
  #
  float = "(?:#{decimal}(?=(.)?)(?:\\.(?:#{decimal})?)?|\\.#{decimal})(?:E[-+]?#{decimal})?"
  floatpat = %r"\A[-+]?#{float}\z"io
  accept(Float, floatpat) {|s,| s.to_f if s}

  #
  # Generic numeric format, converts to Integer for integer format, Float
  # for float format, and Rational for rational format.
  #
  real = "[-+]?(?:#{octal}|#{float})"
  accept(Numeric, /\A(#{real})(?:\/(#{real}))?\z/io) {|s, d, f, n,|
    if n
      Rational(d, n)
    elsif f
      Float(s)
    else
      Integer(s)
    end
  }

  #
  # Decimal integer format, to be converted to Integer.
  #
  DecimalInteger = /\A[-+]?#{decimal}\z/io
  accept(DecimalInteger, DecimalInteger) {|s,|
    begin
      Integer(s, 10)
    rescue ArgumentError
      raise OptionParser::InvalidArgument, s
    end if s
  }

  #
  # Ruby/C like octal/hexadecimal/binary integer format, to be converted to
  # Integer.
  #
  OctalInteger = /\A[-+]?(?:[0-7]+(?:_[0-7]+)*|0(?:#{binary}|#{hex}))\z/io
  accept(OctalInteger, OctalInteger) {|s,|
    begin
      Integer(s, 8)
    rescue ArgumentError
      raise OptionParser::InvalidArgument, s
    end if s
  }

  #
  # Decimal integer/float number format, to be converted to Integer for
  # integer format, Float for float format.
  #
  DecimalNumeric = floatpat     # decimal integer is allowed as float also.
  accept(DecimalNumeric, floatpat) {|s, f|
    begin
      if f
        Float(s)
      else
        Integer(s)
      end
    rescue ArgumentError
      raise OptionParser::InvalidArgument, s
    end if s
  }

  #
  # Boolean switch, which means whether it is present or not, whether it is
  # absent or not with prefix no-, or it takes an argument
  # yes/no/true/false/+/-.
  #
  yesno = CompletingHash.new
  %w[- no false].each {|el| yesno[el] = false}
  %w[+ yes true].each {|el| yesno[el] = true}
  yesno['nil'] = false          # should be nil?
  accept(TrueClass, yesno) {|arg, val| val == nil or val}
  #
  # Similar to TrueClass, but defaults to false.
  #
  accept(FalseClass, yesno) {|arg, val| val != nil and val}

  #
  # List of strings separated by ",".
  #
  accept(Array) do |s, |
    if s
      s = s.split(',').collect {|ss| ss unless ss.empty?}
    end
    s
  end

  #
  # Regular expression with options.
  #
  accept(Regexp, %r"\A/((?:\\.|[^\\])*)/([[:alpha:]]+)?\z|.*") do |all, s, o|
    f = 0
    if o
      f |= Regexp::IGNORECASE if /i/ =~ o
      f |= Regexp::MULTILINE if /m/ =~ o
      f |= Regexp::EXTENDED if /x/ =~ o
      k = o.delete("imx")
      k = nil if k.empty?
    end
    Regexp.new(s || all, f, k)
  end

  #
  # Exceptions
  #

  #
  # Base class of exceptions from OptionParser.
  #
  class ParseError < RuntimeError
    # Reason which caused the error.
    Reason = 'parse error'

    def initialize(*args, additional: nil)
      @additional = additional
      @arg0, = args
      @args = args
      @reason = nil
    end

    attr_reader :args
    attr_writer :reason
    attr_accessor :additional

    #
    # Pushes back erred argument(s) to +argv+.
    #
    def recover(argv)
      argv[0, 0] = @args
      argv
    end

    def self.filter_backtrace(array)
      unless $DEBUG
        array.delete_if(&%r"\A#{Regexp.quote(__FILE__)}:"o.method(:=~))
      end
      array
    end

    def set_backtrace(array)
      super(self.class.filter_backtrace(array))
    end

    def set_option(opt, eq)
      if eq
        @args[0] = opt
      else
        @args.unshift(opt)
      end
      self
    end

    #
    # Returns error reason. Override this for I18N.
    #
    def reason
      @reason || self.class::Reason
    end

    def inspect
      "#<#{self.class}: #{args.join(' ')}>"
    end

    #
    # Default stringizing method to emit standard error message.
    #
    def message
      "#{reason}: #{args.join(' ')}#{additional[@arg0] if additional}"
    end

    alias to_s message
  end

  #
  # Raises when ambiguously completable string is encountered.
  #
  class AmbiguousOption < ParseError
    const_set(:Reason, 'ambiguous option')
  end

  #
  # Raises when there is an argument for a switch which takes no argument.
  #
  class NeedlessArgument < ParseError
    const_set(:Reason, 'needless argument')
  end

  #
  # Raises when a switch with mandatory argument has no argument.
  #
  class MissingArgument < ParseError
    const_set(:Reason, 'missing argument')
  end

  #
  # Raises when switch is undefined.
  #
  class InvalidOption < ParseError
    const_set(:Reason, 'invalid option')
  end

  #
  # Raises when the given argument does not match required format.
  #
  class InvalidArgument < ParseError
    const_set(:Reason, 'invalid argument')
  end

  #
  # Raises when the given argument word can't be completed uniquely.
  #
  class AmbiguousArgument < InvalidArgument
    const_set(:Reason, 'ambiguous argument')
  end

  #
  # Miscellaneous
  #

  #
  # Extends command line arguments array (ARGV) to parse itself.
  #
  module Arguable

    #
    # Sets OptionParser object, when +opt+ is +false+ or +nil+, methods
    # OptionParser::Arguable#options and OptionParser::Arguable#options= are
    # undefined. Thus, there is no ways to access the OptionParser object
    # via the receiver object.
    #
    def options=(opt)
      unless @optparse = opt
        class << self
          undef_method(:options)
          undef_method(:options=)
        end
      end
    end

    #
    # Actual OptionParser object, automatically created if nonexistent.
    #
    # If called with a block, yields the OptionParser object and returns the
    # result of the block. If an OptionParser::ParseError exception occurs
    # in the block, it is rescued, a error message printed to STDERR and
    # +nil+ returned.
    #
    def options
      @optparse ||= OptionParser.new
      @optparse.default_argv = self
      block_given? or return @optparse
      begin
        yield @optparse
      rescue ParseError
        @optparse.warn $!
        nil
      end
    end

    #
    # Parses +self+ destructively in order and returns +self+ containing the
    # rest arguments left unparsed.
    #
    def order!(&blk) options.order!(self, &blk) end

    #
    # Parses +self+ destructively in permutation mode and returns +self+
    # containing the rest arguments left unparsed.
    #
    def permute!() options.permute!(self) end

    #
    # Parses +self+ destructively and returns +self+ containing the
    # rest arguments left unparsed.
    #
    def parse!() options.parse!(self) end

    #
    # Substitution of getopts is possible as follows. Also see
    # OptionParser#getopts.
    #
    #   def getopts(*args)
    #     ($OPT = ARGV.getopts(*args)).each do |opt, val|
    #       eval "$OPT_#{opt.gsub(/[^A-Za-z0-9_]/, '_')} = val"
    #     end
    #   rescue OptionParser::ParseError
    #   end
    #
    def getopts(*args)
      options.getopts(self, *args)
    end

    #
    # Initializes instance variable.
    #
    def self.extend_object(obj)
      super
      obj.instance_eval {@optparse = nil}
    end
    def initialize(*args)
      super
      @optparse = nil
    end
  end

  #
  # Acceptable argument classes. Now contains DecimalInteger, OctalInteger
  # and DecimalNumeric. See Acceptable argument classes (in source code).
  #
  module Acceptables
    const_set(:DecimalInteger, OptionParser::DecimalInteger)
    const_set(:OctalInteger, OptionParser::OctalInteger)
    const_set(:DecimalNumeric, OptionParser::DecimalNumeric)
  end
end

# ARGV is arguable by OptionParser
ARGV.extend(OptionParser::Arguable)

# An alias for OptionParser.
OptParse = OptionParser  # :nodoc:
PKJH[[82lj>j>share/ruby/pp.rbnu�[���# frozen_string_literal: true

require 'prettyprint'

##
# A pretty-printer for Ruby objects.
#
##
# == What PP Does
#
# Standard output by #p returns this:
#   #<PP:0x81fedf0 @genspace=#<Proc:0x81feda0>, @group_queue=#<PrettyPrint::GroupQueue:0x81fed3c @queue=[[#<PrettyPrint::Group:0x81fed78 @breakables=[], @depth=0, @break=false>], []]>, @buffer=[], @newline="\n", @group_stack=[#<PrettyPrint::Group:0x81fed78 @breakables=[], @depth=0, @break=false>], @buffer_width=0, @indent=0, @maxwidth=79, @output_width=2, @output=#<IO:0x8114ee4>>
#
# Pretty-printed output returns this:
#   #<PP:0x81fedf0
#    @buffer=[],
#    @buffer_width=0,
#    @genspace=#<Proc:0x81feda0>,
#    @group_queue=
#     #<PrettyPrint::GroupQueue:0x81fed3c
#      @queue=
#       [[#<PrettyPrint::Group:0x81fed78 @break=false, @breakables=[], @depth=0>],
#        []]>,
#    @group_stack=
#     [#<PrettyPrint::Group:0x81fed78 @break=false, @breakables=[], @depth=0>],
#    @indent=0,
#    @maxwidth=79,
#    @newline="\n",
#    @output=#<IO:0x8114ee4>,
#    @output_width=2>
#
##
# == Usage
#
#   pp(obj)             #=> obj
#   pp obj              #=> obj
#   pp(obj1, obj2, ...) #=> [obj1, obj2, ...]
#   pp()                #=> nil
#
# Output <tt>obj(s)</tt> to <tt>$></tt> in pretty printed format.
#
# It returns <tt>obj(s)</tt>.
#
##
# == Output Customization
#
# To define a customized pretty printing function for your classes,
# redefine method <code>#pretty_print(pp)</code> in the class.
#
# <code>#pretty_print</code> takes the +pp+ argument, which is an instance of the PP class.
# The method uses #text, #breakable, #nest, #group and #pp to print the
# object.
#
##
# == Pretty-Print JSON
#
# To pretty-print JSON refer to JSON#pretty_generate.
#
##
# == Author
# Tanaka Akira <akr@fsij.org>

class PP < PrettyPrint
  # Outputs +obj+ to +out+ in pretty printed format of
  # +width+ columns in width.
  #
  # If +out+ is omitted, <code>$></code> is assumed.
  # If +width+ is omitted, 79 is assumed.
  #
  # PP.pp returns +out+.
  def PP.pp(obj, out=$>, width=79)
    q = PP.new(out, width)
    q.guard_inspect_key {q.pp obj}
    q.flush
    #$pp = q
    out << "\n"
  end

  # Outputs +obj+ to +out+ like PP.pp but with no indent and
  # newline.
  #
  # PP.singleline_pp returns +out+.
  def PP.singleline_pp(obj, out=$>)
    q = SingleLine.new(out)
    q.guard_inspect_key {q.pp obj}
    q.flush
    out
  end

  # :stopdoc:
  def PP.mcall(obj, mod, meth, *args, &block)
    mod.instance_method(meth).bind_call(obj, *args, &block)
  end
  # :startdoc:

  @sharing_detection = false
  class << self
    # Returns the sharing detection flag as a boolean value.
    # It is false by default.
    attr_accessor :sharing_detection
  end

  module PPMethods

    # Yields to a block
    # and preserves the previous set of objects being printed.
    def guard_inspect_key
      if Thread.current[:__recursive_key__] == nil
        Thread.current[:__recursive_key__] = {}.compare_by_identity
      end

      if Thread.current[:__recursive_key__][:inspect] == nil
        Thread.current[:__recursive_key__][:inspect] = {}.compare_by_identity
      end

      save = Thread.current[:__recursive_key__][:inspect]

      begin
        Thread.current[:__recursive_key__][:inspect] = {}.compare_by_identity
        yield
      ensure
        Thread.current[:__recursive_key__][:inspect] = save
      end
    end

    # Check whether the object_id +id+ is in the current buffer of objects
    # to be pretty printed. Used to break cycles in chains of objects to be
    # pretty printed.
    def check_inspect_key(id)
      Thread.current[:__recursive_key__] &&
      Thread.current[:__recursive_key__][:inspect] &&
      Thread.current[:__recursive_key__][:inspect].include?(id)
    end

    # Adds the object_id +id+ to the set of objects being pretty printed, so
    # as to not repeat objects.
    def push_inspect_key(id)
      Thread.current[:__recursive_key__][:inspect][id] = true
    end

    # Removes an object from the set of objects being pretty printed.
    def pop_inspect_key(id)
      Thread.current[:__recursive_key__][:inspect].delete id
    end

    # Adds +obj+ to the pretty printing buffer
    # using Object#pretty_print or Object#pretty_print_cycle.
    #
    # Object#pretty_print_cycle is used when +obj+ is already
    # printed, a.k.a the object reference chain has a cycle.
    def pp(obj)
      # If obj is a Delegator then use the object being delegated to for cycle
      # detection
      obj = obj.__getobj__ if defined?(::Delegator) and obj.is_a?(::Delegator)

      if check_inspect_key(obj)
        group {obj.pretty_print_cycle self}
        return
      end

      begin
        push_inspect_key(obj)
        group {obj.pretty_print self}
      ensure
        pop_inspect_key(obj) unless PP.sharing_detection
      end
    end

    # A convenience method which is same as follows:
    #
    #   group(1, '#<' + obj.class.name, '>') { ... }
    def object_group(obj, &block) # :yield:
      group(1, '#<' + obj.class.name, '>', &block)
    end

    # A convenience method, like object_group, but also reformats the Object's
    # object_id.
    def object_address_group(obj, &block)
      str = Kernel.instance_method(:to_s).bind_call(obj)
      str.chomp!('>')
      group(1, str, '>', &block)
    end

    # A convenience method which is same as follows:
    #
    #   text ','
    #   breakable
    def comma_breakable
      text ','
      breakable
    end

    # Adds a separated list.
    # The list is separated by comma with breakable space, by default.
    #
    # #seplist iterates the +list+ using +iter_method+.
    # It yields each object to the block given for #seplist.
    # The procedure +separator_proc+ is called between each yields.
    #
    # If the iteration is zero times, +separator_proc+ is not called at all.
    #
    # If +separator_proc+ is nil or not given,
    # +lambda { comma_breakable }+ is used.
    # If +iter_method+ is not given, :each is used.
    #
    # For example, following 3 code fragments has similar effect.
    #
    #   q.seplist([1,2,3]) {|v| xxx v }
    #
    #   q.seplist([1,2,3], lambda { q.comma_breakable }, :each) {|v| xxx v }
    #
    #   xxx 1
    #   q.comma_breakable
    #   xxx 2
    #   q.comma_breakable
    #   xxx 3
    def seplist(list, sep=nil, iter_method=:each) # :yield: element
      sep ||= lambda { comma_breakable }
      first = true
      list.__send__(iter_method) {|*v|
        if first
          first = false
        else
          sep.call
        end
        case v.last
        when Hash
          if Hash.ruby2_keywords_hash?(v.last)
            yield(*v, **{})
          else
            yield(*v)
          end
        else
          yield(*v)
        end
      }
    end

    # A present standard failsafe for pretty printing any given Object
    def pp_object(obj)
      object_address_group(obj) {
        seplist(obj.pretty_print_instance_variables, lambda { text ',' }) {|v|
          breakable
          v = v.to_s if Symbol === v
          text v
          text '='
          group(1) {
            breakable ''
            pp(obj.instance_eval(v))
          }
        }
      }
    end

    # A pretty print for a Hash
    def pp_hash(obj)
      group(1, '{', '}') {
        seplist(obj, nil, :each_pair) {|k, v|
          group {
            pp k
            text '=>'
            group(1) {
              breakable ''
              pp v
            }
          }
        }
      }
    end
  end

  include PPMethods

  class SingleLine < PrettyPrint::SingleLine # :nodoc:
    include PPMethods
  end

  module ObjectMixin # :nodoc:
    # 1. specific pretty_print
    # 2. specific inspect
    # 3. generic pretty_print

    # A default pretty printing method for general objects.
    # It calls #pretty_print_instance_variables to list instance variables.
    #
    # If +self+ has a customized (redefined) #inspect method,
    # the result of self.inspect is used but it obviously has no
    # line break hints.
    #
    # This module provides predefined #pretty_print methods for some of
    # the most commonly used built-in classes for convenience.
    def pretty_print(q)
      umethod_method = Object.instance_method(:method)
      begin
        inspect_method = umethod_method.bind_call(self, :inspect)
      rescue NameError
      end
      if inspect_method && inspect_method.owner != Kernel
        q.text self.inspect
      elsif !inspect_method && self.respond_to?(:inspect)
        q.text self.inspect
      else
        q.pp_object(self)
      end
    end

    # A default pretty printing method for general objects that are
    # detected as part of a cycle.
    def pretty_print_cycle(q)
      q.object_address_group(self) {
        q.breakable
        q.text '...'
      }
    end

    # Returns a sorted array of instance variable names.
    #
    # This method should return an array of names of instance variables as symbols or strings as:
    # +[:@a, :@b]+.
    def pretty_print_instance_variables
      instance_variables.sort
    end

    # Is #inspect implementation using #pretty_print.
    # If you implement #pretty_print, it can be used as follows.
    #
    #   alias inspect pretty_print_inspect
    #
    # However, doing this requires that every class that #inspect is called on
    # implement #pretty_print, or a RuntimeError will be raised.
    def pretty_print_inspect
      if Object.instance_method(:method).bind_call(self, :pretty_print).owner == PP::ObjectMixin
        raise "pretty_print is not overridden for #{self.class}"
      end
      PP.singleline_pp(self, ''.dup)
    end
  end
end

class Array # :nodoc:
  def pretty_print(q) # :nodoc:
    q.group(1, '[', ']') {
      q.seplist(self) {|v|
        q.pp v
      }
    }
  end

  def pretty_print_cycle(q) # :nodoc:
    q.text(empty? ? '[]' : '[...]')
  end
end

class Hash # :nodoc:
  def pretty_print(q) # :nodoc:
    q.pp_hash self
  end

  def pretty_print_cycle(q) # :nodoc:
    q.text(empty? ? '{}' : '{...}')
  end
end

class << ENV # :nodoc:
  def pretty_print(q) # :nodoc:
    h = {}
    ENV.keys.sort.each {|k|
      h[k] = ENV[k]
    }
    q.pp_hash h
  end
end

class Struct # :nodoc:
  def pretty_print(q) # :nodoc:
    q.group(1, sprintf("#<struct %s", PP.mcall(self, Kernel, :class).name), '>') {
      q.seplist(PP.mcall(self, Struct, :members), lambda { q.text "," }) {|member|
        q.breakable
        q.text member.to_s
        q.text '='
        q.group(1) {
          q.breakable ''
          q.pp self[member]
        }
      }
    }
  end

  def pretty_print_cycle(q) # :nodoc:
    q.text sprintf("#<struct %s:...>", PP.mcall(self, Kernel, :class).name)
  end
end

class Range # :nodoc:
  def pretty_print(q) # :nodoc:
    q.pp self.begin
    q.breakable ''
    q.text(self.exclude_end? ? '...' : '..')
    q.breakable ''
    q.pp self.end if self.end
  end
end

class String # :nodoc:
  def pretty_print(q) # :nodoc:
    lines = self.lines
    if lines.size > 1
      q.group(0, '', '') do
        q.seplist(lines, lambda { q.text ' +'; q.breakable }) do |v|
          q.pp v
        end
      end
    else
      q.text inspect
    end
  end
end

class File < IO # :nodoc:
  class Stat # :nodoc:
    def pretty_print(q) # :nodoc:
      require 'etc.so'
      q.object_group(self) {
        q.breakable
        q.text sprintf("dev=0x%x", self.dev); q.comma_breakable
        q.text "ino="; q.pp self.ino; q.comma_breakable
        q.group {
          m = self.mode
          q.text sprintf("mode=0%o", m)
          q.breakable
          q.text sprintf("(%s %c%c%c%c%c%c%c%c%c)",
            self.ftype,
            (m & 0400 == 0 ? ?- : ?r),
            (m & 0200 == 0 ? ?- : ?w),
            (m & 0100 == 0 ? (m & 04000 == 0 ? ?- : ?S) :
                             (m & 04000 == 0 ? ?x : ?s)),
            (m & 0040 == 0 ? ?- : ?r),
            (m & 0020 == 0 ? ?- : ?w),
            (m & 0010 == 0 ? (m & 02000 == 0 ? ?- : ?S) :
                             (m & 02000 == 0 ? ?x : ?s)),
            (m & 0004 == 0 ? ?- : ?r),
            (m & 0002 == 0 ? ?- : ?w),
            (m & 0001 == 0 ? (m & 01000 == 0 ? ?- : ?T) :
                             (m & 01000 == 0 ? ?x : ?t)))
        }
        q.comma_breakable
        q.text "nlink="; q.pp self.nlink; q.comma_breakable
        q.group {
          q.text "uid="; q.pp self.uid
          begin
            pw = Etc.getpwuid(self.uid)
          rescue ArgumentError
          end
          if pw
            q.breakable; q.text "(#{pw.name})"
          end
        }
        q.comma_breakable
        q.group {
          q.text "gid="; q.pp self.gid
          begin
            gr = Etc.getgrgid(self.gid)
          rescue ArgumentError
          end
          if gr
            q.breakable; q.text "(#{gr.name})"
          end
        }
        q.comma_breakable
        q.group {
          q.text sprintf("rdev=0x%x", self.rdev)
          if self.rdev_major && self.rdev_minor
            q.breakable
            q.text sprintf('(%d, %d)', self.rdev_major, self.rdev_minor)
          end
        }
        q.comma_breakable
        q.text "size="; q.pp self.size; q.comma_breakable
        q.text "blksize="; q.pp self.blksize; q.comma_breakable
        q.text "blocks="; q.pp self.blocks; q.comma_breakable
        q.group {
          t = self.atime
          q.text "atime="; q.pp t
          q.breakable; q.text "(#{t.tv_sec})"
        }
        q.comma_breakable
        q.group {
          t = self.mtime
          q.text "mtime="; q.pp t
          q.breakable; q.text "(#{t.tv_sec})"
        }
        q.comma_breakable
        q.group {
          t = self.ctime
          q.text "ctime="; q.pp t
          q.breakable; q.text "(#{t.tv_sec})"
        }
      }
    end
  end
end

class MatchData # :nodoc:
  def pretty_print(q) # :nodoc:
    nc = []
    self.regexp.named_captures.each {|name, indexes|
      indexes.each {|i| nc[i] = name }
    }
    q.object_group(self) {
      q.breakable
      q.seplist(0...self.size, lambda { q.breakable }) {|i|
        if i == 0
          q.pp self[i]
        else
          if nc[i]
            q.text nc[i]
          else
            q.pp i
          end
          q.text ':'
          q.pp self[i]
        end
      }
    }
  end
end

class RubyVM::AbstractSyntaxTree::Node
  def pretty_print_children(q, names = [])
    children.zip(names) do |c, n|
      if n
        q.breakable
        q.text "#{n}:"
      end
      q.group(2) do
        q.breakable
        q.pp c
      end
    end
  end

  def pretty_print(q)
    q.group(1, "(#{type}@#{first_lineno}:#{first_column}-#{last_lineno}:#{last_column}", ")") {
      case type
      when :SCOPE
        pretty_print_children(q, %w"tbl args body")
      when :ARGS
        pretty_print_children(q, %w[pre_num pre_init opt first_post post_num post_init rest kw kwrest block])
      when :DEFN
        pretty_print_children(q, %w[mid body])
      when :ARYPTN
        pretty_print_children(q, %w[const pre rest post])
      when :HSHPTN
        pretty_print_children(q, %w[const kw kwrest])
      else
        pretty_print_children(q)
      end
    }
  end
end

class Object < BasicObject # :nodoc:
  include PP::ObjectMixin
end

[Numeric, Symbol, FalseClass, TrueClass, NilClass, Module].each {|c|
  c.class_eval {
    def pretty_print_cycle(q)
      q.text inspect
    end
  }
}

[Numeric, FalseClass, TrueClass, Module].each {|c|
  c.class_eval {
    def pretty_print(q)
      q.text inspect
    end
  }
}

module Kernel
  # Returns a pretty printed object as a string.
  #
  # In order to use this method you must first require the PP module:
  #
  #   require 'pp'
  #
  # See the PP module for more information.
  def pretty_inspect
    PP.pp(self, ''.dup)
  end

  # prints arguments in pretty form.
  #
  # pp returns argument(s).
  def pp(*objs)
    objs.each {|obj|
      PP.pp(obj)
    }
    objs.size <= 1 ? objs.first : objs
  end
  module_function :pp
end
PKJH[�+x6��share/ruby/did_you_mean.rbnu�[���require_relative "did_you_mean/version"
require_relative "did_you_mean/core_ext/name_error"

require_relative "did_you_mean/spell_checker"
require_relative 'did_you_mean/spell_checkers/name_error_checkers'
require_relative 'did_you_mean/spell_checkers/method_name_checker'
require_relative 'did_you_mean/spell_checkers/key_error_checker'
require_relative 'did_you_mean/spell_checkers/null_checker'
require_relative 'did_you_mean/formatters/plain_formatter'
require_relative 'did_you_mean/tree_spell_checker'

# The +DidYouMean+ gem adds functionality to suggest possible method/class
# names upon errors such as +NameError+ and +NoMethodError+. In Ruby 2.3 or
# later, it is automatically activated during startup.
#
# @example
#
#   methosd
#   # => NameError: undefined local variable or method `methosd' for main:Object
#   #   Did you mean?  methods
#   #                  method
#
#   OBject
#   # => NameError: uninitialized constant OBject
#   #    Did you mean?  Object
#
#   @full_name = "Yuki Nishijima"
#   first_name, last_name = full_name.split(" ")
#   # => NameError: undefined local variable or method `full_name' for main:Object
#   #    Did you mean?  @full_name
#
#   @@full_name = "Yuki Nishijima"
#   @@full_anme
#   # => NameError: uninitialized class variable @@full_anme in Object
#   #    Did you mean?  @@full_name
#
#   full_name = "Yuki Nishijima"
#   full_name.starts_with?("Y")
#   # => NoMethodError: undefined method `starts_with?' for "Yuki Nishijima":String
#   #    Did you mean?  start_with?
#
#   hash = {foo: 1, bar: 2, baz: 3}
#   hash.fetch(:fooo)
#   # => KeyError: key not found: :fooo
#   #    Did you mean?  :foo
#
#
# == Disabling +did_you_mean+
#
# Occasionally, you may want to disable the +did_you_mean+ gem for e.g.
# debugging issues in the error object itself. You can disable it entirely by
# specifying +--disable-did_you_mean+ option to the +ruby+ command:
#
#   $ ruby --disable-did_you_mean -e "1.zeor?"
#   -e:1:in `<main>': undefined method `zeor?' for 1:Integer (NameError)
#
# When you do not have direct access to the +ruby+ command (e.g.
# +rails console+, +irb+), you could applyoptions using the +RUBYOPT+
# environment variable:
#
#   $ RUBYOPT='--disable-did_you_mean' irb
#   irb:0> 1.zeor?
#   # => NoMethodError (undefined method `zeor?' for 1:Integer)
#
#
# == Getting the original error message
#
# Sometimes, you do not want to disable the gem entirely, but need to get the
# original error message without suggestions (e.g. testing). In this case, you
# could use the +#original_message+ method on the error object:
#
#   no_method_error = begin
#                       1.zeor?
#                     rescue NoMethodError => error
#                       error
#                     end
#
#   no_method_error.message
#   # => NoMethodError (undefined method `zeor?' for 1:Integer)
#   #    Did you mean?  zero?
#
#   no_method_error.original_message
#   # => NoMethodError (undefined method `zeor?' for 1:Integer)
#
module DidYouMean
  # Map of error types and spell checker objects.
  SPELL_CHECKERS = Hash.new(NullChecker)

  # Adds +DidYouMean+ functionality to an error using a given spell checker
  def self.correct_error(error_class, spell_checker)
    SPELL_CHECKERS[error_class.name] = spell_checker
    error_class.prepend(Correctable) unless error_class < Correctable
  end

  correct_error NameError, NameErrorCheckers
  correct_error KeyError, KeyErrorChecker
  correct_error NoMethodError, MethodNameChecker

  # Returns the currenctly set formatter. By default, it is set to +DidYouMean::Formatter+.
  def self.formatter
    @@formatter
  end

  # Updates the primary formatter used to format the suggestions.
  def self.formatter=(formatter)
    @@formatter = formatter
  end

  self.formatter = PlainFormatter.new
end
PKJH[(:���e�eshare/ruby/open-uri.rbnu�[���# frozen_string_literal: true
require 'uri'
require 'stringio'
require 'time'

module Kernel
  private
  alias open_uri_original_open open # :nodoc:
  class << self
    alias open_uri_original_open open # :nodoc:
  end

  def open(name, *rest, **kw, &block) # :nodoc:
    if (name.respond_to?(:open) && !name.respond_to?(:to_path)) ||
       (name.respond_to?(:to_str) &&
        %r{\A[A-Za-z][A-Za-z0-9+\-\.]*://} =~ name &&
        (uri = URI.parse(name)).respond_to?(:open))
      warn('calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open', uplevel: 1)
      URI.open(name, *rest, **kw, &block)
    else
      open_uri_original_open(name, *rest, **kw, &block)
    end
  end
  module_function :open
end

module URI
  # Allows the opening of various resources including URIs.
  #
  # If the first argument responds to the 'open' method, 'open' is called on
  # it with the rest of the arguments.
  #
  # If the first argument is a string that begins with <code>(protocol)://<code>, it is parsed by
  # URI.parse.  If the parsed object responds to the 'open' method,
  # 'open' is called on it with the rest of the arguments.
  #
  # Otherwise, Kernel#open is called.
  #
  # OpenURI::OpenRead#open provides URI::HTTP#open, URI::HTTPS#open and
  # URI::FTP#open, Kernel#open.
  #
  # We can accept URIs and strings that begin with http://, https:// and
  # ftp://. In these cases, the opened file object is extended by OpenURI::Meta.
  def self.open(name, *rest, &block)
    if name.respond_to?(:open)
      name.open(*rest, &block)
    elsif name.respond_to?(:to_str) &&
          %r{\A[A-Za-z][A-Za-z0-9+\-\.]*://} =~ name &&
          (uri = URI.parse(name)).respond_to?(:open)
      uri.open(*rest, &block)
    else
      open_uri_original_open(name, *rest, &block)
      # After Kernel#open override is removed:
      #super
    end
  end
end

# OpenURI is an easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP.
#
# == Example
#
# It is possible to open an http, https or ftp URL as though it were a file:
#
#   URI.open("http://www.ruby-lang.org/") {|f|
#     f.each_line {|line| p line}
#   }
#
# The opened file has several getter methods for its meta-information, as
# follows, since it is extended by OpenURI::Meta.
#
#   URI.open("http://www.ruby-lang.org/en") {|f|
#     f.each_line {|line| p line}
#     p f.base_uri         # <URI::HTTP:0x40e6ef2 URL:http://www.ruby-lang.org/en/>
#     p f.content_type     # "text/html"
#     p f.charset          # "iso-8859-1"
#     p f.content_encoding # []
#     p f.last_modified    # Thu Dec 05 02:45:02 UTC 2002
#   }
#
# Additional header fields can be specified by an optional hash argument.
#
#   URI.open("http://www.ruby-lang.org/en/",
#     "User-Agent" => "Ruby/#{RUBY_VERSION}",
#     "From" => "foo@bar.invalid",
#     "Referer" => "http://www.ruby-lang.org/") {|f|
#     # ...
#   }
#
# The environment variables such as http_proxy, https_proxy and ftp_proxy
# are in effect by default. Here we disable proxy:
#
#   URI.open("http://www.ruby-lang.org/en/", :proxy => nil) {|f|
#     # ...
#   }
#
# See OpenURI::OpenRead.open and URI.open for more on available options.
#
# URI objects can be opened in a similar way.
#
#   uri = URI.parse("http://www.ruby-lang.org/en/")
#   uri.open {|f|
#     # ...
#   }
#
# URI objects can be read directly. The returned string is also extended by
# OpenURI::Meta.
#
#   str = uri.read
#   p str.base_uri
#
# Author:: Tanaka Akira <akr@m17n.org>

module OpenURI
  Options = {
    :proxy => true,
    :proxy_http_basic_authentication => true,
    :progress_proc => true,
    :content_length_proc => true,
    :http_basic_authentication => true,
    :read_timeout => true,
    :open_timeout => true,
    :ssl_ca_cert => nil,
    :ssl_verify_mode => nil,
    :ftp_active_mode => false,
    :redirect => true,
    :encoding => nil,
  }

  def OpenURI.check_options(options) # :nodoc:
    options.each {|k, v|
      next unless Symbol === k
      unless Options.include? k
        raise ArgumentError, "unrecognized option: #{k}"
      end
    }
  end

  def OpenURI.scan_open_optional_arguments(*rest) # :nodoc:
    if !rest.empty? && (String === rest.first || Integer === rest.first)
      mode = rest.shift
      if !rest.empty? && Integer === rest.first
        perm = rest.shift
      end
    end
    return mode, perm, rest
  end

  def OpenURI.open_uri(name, *rest) # :nodoc:
    uri = URI::Generic === name ? name : URI.parse(name)
    mode, _, rest = OpenURI.scan_open_optional_arguments(*rest)
    options = rest.shift if !rest.empty? && Hash === rest.first
    raise ArgumentError.new("extra arguments") if !rest.empty?
    options ||= {}
    OpenURI.check_options(options)

    if /\Arb?(?:\Z|:([^:]+))/ =~ mode
      encoding, = $1,Encoding.find($1) if $1
      mode = nil
    end
    if options.has_key? :encoding
      if !encoding.nil?
        raise ArgumentError, "encoding specified twice"
      end
      encoding = Encoding.find(options[:encoding])
    end

    unless mode == nil ||
           mode == 'r' || mode == 'rb' ||
           mode == File::RDONLY
      raise ArgumentError.new("invalid access mode #{mode} (#{uri.class} resource is read only.)")
    end

    io = open_loop(uri, options)
    io.set_encoding(encoding) if encoding
    if block_given?
      begin
        yield io
      ensure
        if io.respond_to? :close!
          io.close! # Tempfile
        else
          io.close if !io.closed?
        end
      end
    else
      io
    end
  end

  def OpenURI.open_loop(uri, options) # :nodoc:
    proxy_opts = []
    proxy_opts << :proxy_http_basic_authentication if options.include? :proxy_http_basic_authentication
    proxy_opts << :proxy if options.include? :proxy
    proxy_opts.compact!
    if 1 < proxy_opts.length
      raise ArgumentError, "multiple proxy options specified"
    end
    case proxy_opts.first
    when :proxy_http_basic_authentication
      opt_proxy, proxy_user, proxy_pass = options.fetch(:proxy_http_basic_authentication)
      proxy_user = proxy_user.to_str
      proxy_pass = proxy_pass.to_str
      if opt_proxy == true
        raise ArgumentError.new("Invalid authenticated proxy option: #{options[:proxy_http_basic_authentication].inspect}")
      end
    when :proxy
      opt_proxy = options.fetch(:proxy)
      proxy_user = nil
      proxy_pass = nil
    when nil
      opt_proxy = true
      proxy_user = nil
      proxy_pass = nil
    end
    case opt_proxy
    when true
      find_proxy = lambda {|u| pxy = u.find_proxy; pxy ? [pxy, nil, nil] : nil}
    when nil, false
      find_proxy = lambda {|u| nil}
    when String
      opt_proxy = URI.parse(opt_proxy)
      find_proxy = lambda {|u| [opt_proxy, proxy_user, proxy_pass]}
    when URI::Generic
      find_proxy = lambda {|u| [opt_proxy, proxy_user, proxy_pass]}
    else
      raise ArgumentError.new("Invalid proxy option: #{opt_proxy}")
    end

    uri_set = {}
    buf = nil
    while true
      redirect = catch(:open_uri_redirect) {
        buf = Buffer.new
        uri.buffer_open(buf, find_proxy.call(uri), options)
        nil
      }
      if redirect
        if redirect.relative?
          # Although it violates RFC2616, Location: field may have relative
          # URI.  It is converted to absolute URI using uri as a base URI.
          redirect = uri + redirect
        end
        if !options.fetch(:redirect, true)
          raise HTTPRedirect.new(buf.io.status.join(' '), buf.io, redirect)
        end
        unless OpenURI.redirectable?(uri, redirect)
          raise "redirection forbidden: #{uri} -> #{redirect}"
        end
        if options.include? :http_basic_authentication
          # send authentication only for the URI directly specified.
          options = options.dup
          options.delete :http_basic_authentication
        end
        uri = redirect
        raise "HTTP redirection loop: #{uri}" if uri_set.include? uri.to_s
        uri_set[uri.to_s] = true
      else
        break
      end
    end
    io = buf.io
    io.base_uri = uri
    io
  end

  def OpenURI.redirectable?(uri1, uri2) # :nodoc:
    # This test is intended to forbid a redirection from http://... to
    # file:///etc/passwd, file:///dev/zero, etc.  CVE-2011-1521
    # https to http redirect is also forbidden intentionally.
    # It avoids sending secure cookie or referer by non-secure HTTP protocol.
    # (RFC 2109 4.3.1, RFC 2965 3.3, RFC 2616 15.1.3)
    # However this is ad hoc.  It should be extensible/configurable.
    uri1.scheme.downcase == uri2.scheme.downcase ||
    (/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:https?|ftp)\z/i =~ uri2.scheme)
  end

  def OpenURI.open_http(buf, target, proxy, options) # :nodoc:
    if proxy
      proxy_uri, proxy_user, proxy_pass = proxy
      raise "Non-HTTP proxy URI: #{proxy_uri}" if proxy_uri.class != URI::HTTP
    end

    if target.userinfo
      raise ArgumentError, "userinfo not supported.  [RFC3986]"
    end

    header = {}
    options.each {|k, v| header[k] = v if String === k }

    require 'net/http'
    klass = Net::HTTP
    if URI::HTTP === target
      # HTTP or HTTPS
      if proxy
        unless proxy_user && proxy_pass
          proxy_user, proxy_pass = proxy_uri.userinfo.split(':') if proxy_uri.userinfo
        end
        if proxy_user && proxy_pass
          klass = Net::HTTP::Proxy(proxy_uri.hostname, proxy_uri.port, proxy_user, proxy_pass)
        else
          klass = Net::HTTP::Proxy(proxy_uri.hostname, proxy_uri.port)
        end
      end
      target_host = target.hostname
      target_port = target.port
      request_uri = target.request_uri
    else
      # FTP over HTTP proxy
      target_host = proxy_uri.hostname
      target_port = proxy_uri.port
      request_uri = target.to_s
      if proxy_user && proxy_pass
        header["Proxy-Authorization"] =
                        'Basic ' + ["#{proxy_user}:#{proxy_pass}"].pack('m0')
      end
    end

    http = proxy ? klass.new(target_host, target_port) : klass.new(target_host, target_port, nil)
    if target.class == URI::HTTPS
      require 'net/https'
      http.use_ssl = true
      http.verify_mode = options[:ssl_verify_mode] || OpenSSL::SSL::VERIFY_PEER
      store = OpenSSL::X509::Store.new
      if options[:ssl_ca_cert]
        Array(options[:ssl_ca_cert]).each do |cert|
          if File.directory? cert
            store.add_path cert
          else
            store.add_file cert
          end
        end
      else
        store.set_default_paths
      end
      http.cert_store = store
    end
    if options.include? :read_timeout
      http.read_timeout = options[:read_timeout]
    end
    if options.include? :open_timeout
      http.open_timeout = options[:open_timeout]
    end

    resp = nil
    http.start {
      req = Net::HTTP::Get.new(request_uri, header)
      if options.include? :http_basic_authentication
        user, pass = options[:http_basic_authentication]
        req.basic_auth user, pass
      end
      http.request(req) {|response|
        resp = response
        if options[:content_length_proc] && Net::HTTPSuccess === resp
          if resp.key?('Content-Length')
            options[:content_length_proc].call(resp['Content-Length'].to_i)
          else
            options[:content_length_proc].call(nil)
          end
        end
        resp.read_body {|str|
          buf << str
          if options[:progress_proc] && Net::HTTPSuccess === resp
            options[:progress_proc].call(buf.size)
          end
          str.clear
        }
      }
    }
    io = buf.io
    io.rewind
    io.status = [resp.code, resp.message]
    resp.each_name {|name| buf.io.meta_add_field2 name, resp.get_fields(name) }
    case resp
    when Net::HTTPSuccess
    when Net::HTTPMovedPermanently, # 301
         Net::HTTPFound, # 302
         Net::HTTPSeeOther, # 303
         Net::HTTPTemporaryRedirect # 307
      begin
        loc_uri = URI.parse(resp['location'])
      rescue URI::InvalidURIError
        raise OpenURI::HTTPError.new(io.status.join(' ') + ' (Invalid Location URI)', io)
      end
      throw :open_uri_redirect, loc_uri
    else
      raise OpenURI::HTTPError.new(io.status.join(' '), io)
    end
  end

  class HTTPError < StandardError
    def initialize(message, io)
      super(message)
      @io = io
    end
    attr_reader :io
  end

  # Raised on redirection,
  # only occurs when +redirect+ option for HTTP is +false+.
  class HTTPRedirect < HTTPError
    def initialize(message, io, uri)
      super(message, io)
      @uri = uri
    end
    attr_reader :uri
  end

  class Buffer # :nodoc: all
    def initialize
      @io = StringIO.new
      @size = 0
    end
    attr_reader :size

    StringMax = 10240
    def <<(str)
      @io << str
      @size += str.length
      if StringIO === @io && StringMax < @size
        require 'tempfile'
        io = Tempfile.new('open-uri')
        io.binmode
        Meta.init io, @io if Meta === @io
        io << @io.string
        @io = io
      end
    end

    def io
      Meta.init @io unless Meta === @io
      @io
    end
  end

  # Mixin for holding meta-information.
  module Meta
    def Meta.init(obj, src=nil) # :nodoc:
      obj.extend Meta
      obj.instance_eval {
        @base_uri = nil
        @meta = {} # name to string.  legacy.
        @metas = {} # name to array of strings.
      }
      if src
        obj.status = src.status
        obj.base_uri = src.base_uri
        src.metas.each {|name, values|
          obj.meta_add_field2(name, values)
        }
      end
    end

    # returns an Array that consists of status code and message.
    attr_accessor :status

    # returns a URI that is the base of relative URIs in the data.
    # It may differ from the URI supplied by a user due to redirection.
    attr_accessor :base_uri

    # returns a Hash that represents header fields.
    # The Hash keys are downcased for canonicalization.
    # The Hash values are a field body.
    # If there are multiple field with same field name,
    # the field values are concatenated with a comma.
    attr_reader :meta

    # returns a Hash that represents header fields.
    # The Hash keys are downcased for canonicalization.
    # The Hash value are an array of field values.
    attr_reader :metas

    def meta_setup_encoding # :nodoc:
      charset = self.charset
      enc = nil
      if charset
        begin
          enc = Encoding.find(charset)
        rescue ArgumentError
        end
      end
      enc = Encoding::ASCII_8BIT unless enc
      if self.respond_to? :force_encoding
        self.force_encoding(enc)
      elsif self.respond_to? :string
        self.string.force_encoding(enc)
      else # Tempfile
        self.set_encoding enc
      end
    end

    def meta_add_field2(name, values) # :nodoc:
      name = name.downcase
      @metas[name] = values
      @meta[name] = values.join(', ')
      meta_setup_encoding if name == 'content-type'
    end

    def meta_add_field(name, value) # :nodoc:
      meta_add_field2(name, [value])
    end

    # returns a Time that represents the Last-Modified field.
    def last_modified
      if vs = @metas['last-modified']
        v = vs.join(', ')
        Time.httpdate(v)
      else
        nil
      end
    end

    # :stopdoc:
    RE_LWS = /[\r\n\t ]+/n
    RE_TOKEN = %r{[^\x00- ()<>@,;:\\"/\[\]?={}\x7f]+}n
    RE_QUOTED_STRING = %r{"(?:[\r\n\t !#-\[\]-~\x80-\xff]|\\[\x00-\x7f])*"}n
    RE_PARAMETERS = %r{(?:;#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?=#{RE_LWS}?(?:#{RE_TOKEN}|#{RE_QUOTED_STRING})#{RE_LWS}?)*}n
    # :startdoc:

    def content_type_parse # :nodoc:
      vs = @metas['content-type']
      # The last (?:;#{RE_LWS}?)? matches extra ";" which violates RFC2045.
      if vs && %r{\A#{RE_LWS}?(#{RE_TOKEN})#{RE_LWS}?/(#{RE_TOKEN})#{RE_LWS}?(#{RE_PARAMETERS})(?:;#{RE_LWS}?)?\z}no =~ vs.join(', ')
        type = $1.downcase
        subtype = $2.downcase
        parameters = []
        $3.scan(/;#{RE_LWS}?(#{RE_TOKEN})#{RE_LWS}?=#{RE_LWS}?(?:(#{RE_TOKEN})|(#{RE_QUOTED_STRING}))/no) {|att, val, qval|
          if qval
            val = qval[1...-1].gsub(/[\r\n\t !#-\[\]-~\x80-\xff]+|(\\[\x00-\x7f])/n) { $1 ? $1[1,1] : $& }
          end
          parameters << [att.downcase, val]
        }
        ["#{type}/#{subtype}", *parameters]
      else
        nil
      end
    end

    # returns "type/subtype" which is MIME Content-Type.
    # It is downcased for canonicalization.
    # Content-Type parameters are stripped.
    def content_type
      type, *_ = content_type_parse
      type || 'application/octet-stream'
    end

    # returns a charset parameter in Content-Type field.
    # It is downcased for canonicalization.
    #
    # If charset parameter is not given but a block is given,
    # the block is called and its result is returned.
    # It can be used to guess charset.
    #
    # If charset parameter and block is not given,
    # nil is returned except text type.
    # In that case, "utf-8" is returned as defined by RFC6838 4.2.1
    def charset
      type, *parameters = content_type_parse
      if pair = parameters.assoc('charset')
        pair.last.downcase
      elsif block_given?
        yield
      elsif type && %r{\Atext/} =~ type
        "utf-8" # RFC6838 4.2.1
      else
        nil
      end
    end

    # Returns a list of encodings in Content-Encoding field as an array of
    # strings.
    #
    # The encodings are downcased for canonicalization.
    def content_encoding
      vs = @metas['content-encoding']
      if vs && %r{\A#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?(?:,#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?)*}o =~ (v = vs.join(', '))
        v.scan(RE_TOKEN).map {|content_coding| content_coding.downcase}
      else
        []
      end
    end
  end

  # Mixin for HTTP and FTP URIs.
  module OpenRead
    # OpenURI::OpenRead#open provides `open' for URI::HTTP and URI::FTP.
    #
    # OpenURI::OpenRead#open takes optional 3 arguments as:
    #
    #   OpenURI::OpenRead#open([mode [, perm]] [, options]) [{|io| ... }]
    #
    # OpenURI::OpenRead#open returns an IO-like object if block is not given.
    # Otherwise it yields the IO object and return the value of the block.
    # The IO object is extended with OpenURI::Meta.
    #
    # +mode+ and +perm+ are the same as Kernel#open.
    #
    # However, +mode+ must be read mode because OpenURI::OpenRead#open doesn't
    # support write mode (yet).
    # Also +perm+ is ignored because it is meaningful only for file creation.
    #
    # +options+ must be a hash.
    #
    # Each option with a string key specifies an extra header field for HTTP.
    # I.e., it is ignored for FTP without HTTP proxy.
    #
    # The hash may include other options, where keys are symbols:
    #
    # [:proxy]
    #  Synopsis:
    #    :proxy => "http://proxy.foo.com:8000/"
    #    :proxy => URI.parse("http://proxy.foo.com:8000/")
    #    :proxy => true
    #    :proxy => false
    #    :proxy => nil
    #
    #  If :proxy option is specified, the value should be String, URI,
    #  boolean or nil.
    #
    #  When String or URI is given, it is treated as proxy URI.
    #
    #  When true is given or the option itself is not specified,
    #  environment variable `scheme_proxy' is examined.
    #  `scheme' is replaced by `http', `https' or `ftp'.
    #
    #  When false or nil is given, the environment variables are ignored and
    #  connection will be made to a server directly.
    #
    # [:proxy_http_basic_authentication]
    #  Synopsis:
    #    :proxy_http_basic_authentication =>
    #      ["http://proxy.foo.com:8000/", "proxy-user", "proxy-password"]
    #    :proxy_http_basic_authentication =>
    #      [URI.parse("http://proxy.foo.com:8000/"),
    #       "proxy-user", "proxy-password"]
    #
    #  If :proxy option is specified, the value should be an Array with 3
    #  elements.  It should contain a proxy URI, a proxy user name and a proxy
    #  password.  The proxy URI should be a String, an URI or nil.  The proxy
    #  user name and password should be a String.
    #
    #  If nil is given for the proxy URI, this option is just ignored.
    #
    #  If :proxy and :proxy_http_basic_authentication is specified,
    #  ArgumentError is raised.
    #
    # [:http_basic_authentication]
    #  Synopsis:
    #    :http_basic_authentication=>[user, password]
    #
    #  If :http_basic_authentication is specified,
    #  the value should be an array which contains 2 strings:
    #  username and password.
    #  It is used for HTTP Basic authentication defined by RFC 2617.
    #
    # [:content_length_proc]
    #  Synopsis:
    #    :content_length_proc => lambda {|content_length| ... }
    #
    #  If :content_length_proc option is specified, the option value procedure
    #  is called before actual transfer is started.
    #  It takes one argument, which is expected content length in bytes.
    #
    #  If two or more transfers are performed by HTTP redirection, the
    #  procedure is called only once for the last transfer.
    #
    #  When expected content length is unknown, the procedure is called with
    #  nil.  This happens when the HTTP response has no Content-Length header.
    #
    # [:progress_proc]
    #  Synopsis:
    #    :progress_proc => lambda {|size| ...}
    #
    #  If :progress_proc option is specified, the proc is called with one
    #  argument each time when `open' gets content fragment from network.
    #  The argument +size+ is the accumulated transferred size in bytes.
    #
    #  If two or more transfer is done by HTTP redirection, the procedure
    #  is called only one for a last transfer.
    #
    #  :progress_proc and :content_length_proc are intended to be used for
    #  progress bar.
    #  For example, it can be implemented as follows using Ruby/ProgressBar.
    #
    #    pbar = nil
    #    open("http://...",
    #      :content_length_proc => lambda {|t|
    #        if t && 0 < t
    #          pbar = ProgressBar.new("...", t)
    #          pbar.file_transfer_mode
    #        end
    #      },
    #      :progress_proc => lambda {|s|
    #        pbar.set s if pbar
    #      }) {|f| ... }
    #
    # [:read_timeout]
    #  Synopsis:
    #    :read_timeout=>nil     (no timeout)
    #    :read_timeout=>10      (10 second)
    #
    #  :read_timeout option specifies a timeout of read for http connections.
    #
    # [:open_timeout]
    #  Synopsis:
    #    :open_timeout=>nil     (no timeout)
    #    :open_timeout=>10      (10 second)
    #
    #  :open_timeout option specifies a timeout of open for http connections.
    #
    # [:ssl_ca_cert]
    #  Synopsis:
    #    :ssl_ca_cert=>filename or an Array of filenames
    #
    #  :ssl_ca_cert is used to specify CA certificate for SSL.
    #  If it is given, default certificates are not used.
    #
    # [:ssl_verify_mode]
    #  Synopsis:
    #    :ssl_verify_mode=>mode
    #
    #  :ssl_verify_mode is used to specify openssl verify mode.
    #
    # [:ftp_active_mode]
    #  Synopsis:
    #    :ftp_active_mode=>bool
    #
    #  <tt>:ftp_active_mode => true</tt> is used to make ftp active mode.
    #  Ruby 1.9 uses passive mode by default.
    #  Note that the active mode is default in Ruby 1.8 or prior.
    #
    # [:redirect]
    #  Synopsis:
    #    :redirect=>bool
    #
    #  +:redirect+ is true by default.  <tt>:redirect => false</tt> is used to
    #  disable all HTTP redirects.
    #
    #  OpenURI::HTTPRedirect exception raised on redirection.
    #  Using +true+ also means that redirections between http and ftp are
    #  permitted.
    #
    def open(*rest, &block)
      OpenURI.open_uri(self, *rest, &block)
    end

    # OpenURI::OpenRead#read([options]) reads a content referenced by self and
    # returns the content as string.
    # The string is extended with OpenURI::Meta.
    # The argument +options+ is same as OpenURI::OpenRead#open.
    def read(options={})
      self.open(options) {|f|
        str = f.read
        Meta.init str, f
        str
      }
    end
  end
end

module URI
  class HTTP
    def buffer_open(buf, proxy, options) # :nodoc:
      OpenURI.open_http(buf, self, proxy, options)
    end

    include OpenURI::OpenRead
  end

  class FTP
    def buffer_open(buf, proxy, options) # :nodoc:
      if proxy
        OpenURI.open_http(buf, self, proxy, options)
        return
      end
      require 'net/ftp'

      path = self.path
      path = path.sub(%r{\A/}, '%2F') # re-encode the beginning slash because uri library decodes it.
      directories = path.split(%r{/}, -1)
      directories.each {|d|
        d.gsub!(/%([0-9A-Fa-f][0-9A-Fa-f])/) { [$1].pack("H2") }
      }
      unless filename = directories.pop
        raise ArgumentError, "no filename: #{self.inspect}"
      end
      directories.each {|d|
        if /[\r\n]/ =~ d
          raise ArgumentError, "invalid directory: #{d.inspect}"
        end
      }
      if /[\r\n]/ =~ filename
        raise ArgumentError, "invalid filename: #{filename.inspect}"
      end
      typecode = self.typecode
      if typecode && /\A[aid]\z/ !~ typecode
        raise ArgumentError, "invalid typecode: #{typecode.inspect}"
      end

      # The access sequence is defined by RFC 1738
      ftp = Net::FTP.new
      ftp.connect(self.hostname, self.port)
      ftp.passive = !options[:ftp_active_mode]
      # todo: extract user/passwd from .netrc.
      user = 'anonymous'
      passwd = nil
      user, passwd = self.userinfo.split(/:/) if self.userinfo
      ftp.login(user, passwd)
      directories.each {|cwd|
        ftp.voidcmd("CWD #{cwd}")
      }
      if typecode
        # xxx: typecode D is not handled.
        ftp.voidcmd("TYPE #{typecode.upcase}")
      end
      if options[:content_length_proc]
        options[:content_length_proc].call(ftp.size(filename))
      end
      ftp.retrbinary("RETR #{filename}", 4096) { |str|
        buf << str
        options[:progress_proc].call(buf.size) if options[:progress_proc]
      }
      ftp.close
      buf.io.rewind
    end

    include OpenURI::OpenRead
  end
end
PKJH[&a���share/ruby/rss.rbnu�[���# frozen_string_literal: false
##
# = RSS reading and writing
#
# Really Simple Syndication (RSS) is a family of formats that describe 'feeds,'
# specially constructed XML documents that allow an interested person to
# subscribe and receive updates from a particular web service. This portion of
# the standard library provides tooling to read and create these feeds.
#
# The standard library supports RSS 0.91, 1.0, 2.0, and Atom, a related format.
# Here are some links to the standards documents for these formats:
#
# * RSS
#   * 0.9.1[http://www.rssboard.org/rss-0-9-1-netscape]
#   * 1.0[http://web.resource.org/rss/1.0/]
#   * 2.0[http://www.rssboard.org/rss-specification]
# * Atom[http://tools.ietf.org/html/rfc4287]
#
# == Consuming RSS
#
# If you'd like to read someone's RSS feed with your Ruby code, you've come to
# the right place. It's really easy to do this, but we'll need the help of
# open-uri:
#
#   require 'rss'
#   require 'open-uri'
#
#   url = 'http://www.ruby-lang.org/en/feeds/news.rss'
#   open(url) do |rss|
#     feed = RSS::Parser.parse(rss)
#     puts "Title: #{feed.channel.title}"
#     feed.items.each do |item|
#       puts "Item: #{item.title}"
#     end
#   end
#
# As you can see, the workhorse is RSS::Parser#parse, which takes the source of
# the feed and a parameter that performs validation on the feed. We get back an
# object that has all of the data from our feed, accessible through methods.
# This example shows getting the title out of the channel element, and looping
# through the list of items.
#
# == Producing RSS
#
# Producing our own RSS feeds is easy as well. Let's make a very basic feed:
#
#   require "rss"
#
#   rss = RSS::Maker.make("atom") do |maker|
#     maker.channel.author = "matz"
#     maker.channel.updated = Time.now.to_s
#     maker.channel.about = "http://www.ruby-lang.org/en/feeds/news.rss"
#     maker.channel.title = "Example Feed"
#
#     maker.items.new_item do |item|
#       item.link = "http://www.ruby-lang.org/en/news/2010/12/25/ruby-1-9-2-p136-is-released/"
#       item.title = "Ruby 1.9.2-p136 is released"
#       item.updated = Time.now.to_s
#     end
#   end
#
#   puts rss
#
# As you can see, this is a very Builder-like DSL. This code will spit out an
# Atom feed with one item. If we needed a second item, we'd make another block
# with maker.items.new_item and build a second one.
#
# == Copyright
#
# Copyright (c) 2003-2007 Kouhei Sutou <kou@cozmixng.org>
#
# You can redistribute it and/or modify it under the same terms as Ruby.
#
# There is an additional tutorial by the author of RSS at:
# http://www.cozmixng.org/~rwiki/?cmd=view;name=RSS+Parser%3A%3ATutorial.en

module RSS
end

require "rss/version"

require 'rss/1.0'
require 'rss/2.0'
require 'rss/atom'
require 'rss/content'
require 'rss/dublincore'
require 'rss/image'
require 'rss/itunes'
require 'rss/slash'
require 'rss/syndication'
require 'rss/taxonomy'
require 'rss/trackback'

require "rss/maker"
PKJH[`?�UNNshare/ruby/digest.rbnu�[���# frozen_string_literal: false
require 'digest.so'

module Digest
  # A mutex for Digest().
  REQUIRE_MUTEX = Thread::Mutex.new

  def self.const_missing(name) # :nodoc:
    case name
    when :SHA256, :SHA384, :SHA512
      lib = 'digest/sha2.so'
    else
      lib = File.join('digest', name.to_s.downcase)
    end

    begin
      require lib
    rescue LoadError
      raise LoadError, "library not found for class Digest::#{name} -- #{lib}", caller(1)
    end
    unless Digest.const_defined?(name)
      raise NameError, "uninitialized constant Digest::#{name}", caller(1)
    end
    Digest.const_get(name)
  end

  class ::Digest::Class
    # Creates a digest object and reads a given file, _name_.
    # Optional arguments are passed to the constructor of the digest
    # class.
    #
    #   p Digest::SHA256.file("X11R6.8.2-src.tar.bz2").hexdigest
    #   # => "f02e3c85572dc9ad7cb77c2a638e3be24cc1b5bea9fdbb0b0299c9668475c534"
    def self.file(name, *args)
      new(*args).file(name)
    end

    # Returns the base64 encoded hash value of a given _string_.  The
    # return value is properly padded with '=' and contains no line
    # feeds.
    def self.base64digest(str, *args)
      [digest(str, *args)].pack('m0')
    end
  end

  module Instance
    # Updates the digest with the contents of a given file _name_ and
    # returns self.
    def file(name)
      File.open(name, "rb") {|f|
        buf = ""
        while f.read(16384, buf)
          update buf
        end
      }
      self
    end

    # If none is given, returns the resulting hash value of the digest
    # in a base64 encoded form, keeping the digest's state.
    #
    # If a +string+ is given, returns the hash value for the given
    # +string+ in a base64 encoded form, resetting the digest to the
    # initial state before and after the process.
    #
    # In either case, the return value is properly padded with '=' and
    # contains no line feeds.
    def base64digest(str = nil)
      [str ? digest(str) : digest].pack('m0')
    end

    # Returns the resulting hash value and resets the digest to the
    # initial state.
    def base64digest!
      [digest!].pack('m0')
    end
  end
end

# call-seq:
#   Digest(name) -> digest_subclass
#
# Returns a Digest subclass by +name+ in a thread-safe manner even
# when on-demand loading is involved.
#
#   require 'digest'
#
#   Digest("MD5")
#   # => Digest::MD5
#
#   Digest(:SHA256)
#   # => Digest::SHA256
#
#   Digest(:Foo)
#   # => LoadError: library not found for class Digest::Foo -- digest/foo
def Digest(name)
  const = name.to_sym
  Digest::REQUIRE_MUTEX.synchronize {
    # Ignore autoload's because it is void when we have #const_missing
    Digest.const_missing(const)
  }
rescue LoadError
  # Constants do not necessarily rely on digest/*.
  if Digest.const_defined?(const)
    Digest.const_get(const)
  else
    raise
  end
end
PKJH[t#\�HHshare/ruby/ostruct/version.rbnu�[���# frozen_string_literal: true

class OpenStruct
  VERSION = "0.2.0"
end
PKJH[�6g  share/ruby/syslog/logger.rbnu�[���# frozen_string_literal: false
require 'syslog'
require 'logger'

##
# Syslog::Logger is a Logger work-alike that logs via syslog instead of to a
# file.  You can use Syslog::Logger to aggregate logs between multiple
# machines.
#
# By default, Syslog::Logger uses the program name 'ruby', but this can be
# changed via the first argument to Syslog::Logger.new.
#
# NOTE! You can only set the Syslog::Logger program name when you initialize
# Syslog::Logger for the first time.  This is a limitation of the way
# Syslog::Logger uses syslog (and in some ways, a limitation of the way
# syslog(3) works).  Attempts to change Syslog::Logger's program name after
# the first initialization will be ignored.
#
# === Example
#
# The following will log to syslogd on your local machine:
#
#   require 'syslog/logger'
#
#   log = Syslog::Logger.new 'my_program'
#   log.info 'this line will be logged via syslog(3)'
#
# Also the facility may be set to specify the facility level which will be used:
#
#   log.info 'this line will be logged using Syslog default facility level'
#
#   log_local1 = Syslog::Logger.new 'my_program', Syslog::LOG_LOCAL1
#   log_local1.info 'this line will be logged using local1 facility level'
#
#
# You may need to perform some syslog.conf setup first.  For a BSD machine add
# the following lines to /etc/syslog.conf:
#
#  !my_program
#  *.*                                             /var/log/my_program.log
#
# Then touch /var/log/my_program.log and signal syslogd with a HUP
# (killall -HUP syslogd, on FreeBSD).
#
# If you wish to have logs automatically roll over and archive, see the
# newsyslog.conf(5) and newsyslog(8) man pages.

class Syslog::Logger
  # Default formatter for log messages.
  class Formatter
    def call severity, time, progname, msg
      clean msg
    end

    private

    ##
    # Clean up messages so they're nice and pretty.

    def clean message
      message = message.to_s.strip
      message.gsub!(/\e\[[0-9;]*m/, '') # remove useless ansi color codes
      return message
    end
  end

  ##
  # The version of Syslog::Logger you are using.

  VERSION = '2.1.0'

  ##
  # Maps Logger warning types to syslog(3) warning types.
  #
  # Messages from Ruby applications are not considered as critical as messages
  # from other system daemons using syslog(3), so most messages are reduced by
  # one level.  For example, a fatal message for Ruby's Logger is considered
  # an error for syslog(3).

  LEVEL_MAP = {
    ::Logger::UNKNOWN => Syslog::LOG_ALERT,
    ::Logger::FATAL   => Syslog::LOG_ERR,
    ::Logger::ERROR   => Syslog::LOG_WARNING,
    ::Logger::WARN    => Syslog::LOG_NOTICE,
    ::Logger::INFO    => Syslog::LOG_INFO,
    ::Logger::DEBUG   => Syslog::LOG_DEBUG,
  }

  ##
  # Returns the internal Syslog object that is initialized when the
  # first instance is created.

  def self.syslog
    @@syslog
  end

  ##
  # Specifies the internal Syslog object to be used.

  def self.syslog= syslog
    @@syslog = syslog
  end

  ##
  # Builds a methods for level +meth+.

  def self.make_methods meth
    level = ::Logger.const_get(meth.upcase)
    eval <<-EOM, nil, __FILE__, __LINE__ + 1
      def #{meth}(message = nil, &block)
        add(#{level}, message, &block)
      end

      def #{meth}?
        level <= #{level}
      end
    EOM
  end

  ##
  # :method: unknown
  #
  # Logs a +message+ at the unknown (syslog alert) log level, or logs the
  # message returned from the block.

  ##
  # :method: fatal
  #
  # Logs a +message+ at the fatal (syslog err) log level, or logs the message
  # returned from the block.

  ##
  # :method: error
  #
  # Logs a +message+ at the error (syslog warning) log level, or logs the
  # message returned from the block.

  ##
  # :method: warn
  #
  # Logs a +message+ at the warn (syslog notice) log level, or logs the
  # message returned from the block.

  ##
  # :method: info
  #
  # Logs a +message+ at the info (syslog info) log level, or logs the message
  # returned from the block.

  ##
  # :method: debug
  #
  # Logs a +message+ at the debug (syslog debug) log level, or logs the
  # message returned from the block.

  Logger::Severity::constants.each do |severity|
    make_methods severity.downcase
  end

  ##
  # Log level for Logger compatibility.

  attr_accessor :level

  # Logging formatter, as a +Proc+ that will take four arguments and
  # return the formatted message. The arguments are:
  #
  # +severity+:: The Severity of the log message.
  # +time+:: A Time instance representing when the message was logged.
  # +progname+:: The #progname configured, or passed to the logger method.
  # +msg+:: The _Object_ the user passed to the log message; not necessarily a
  #         String.
  #
  # The block should return an Object that can be written to the logging
  # device via +write+.  The default formatter is used when no formatter is
  # set.
  attr_accessor :formatter

  ##
  # The facility argument is used to specify what type of program is logging the message.

  attr_accessor :facility

  ##
  # Fills in variables for Logger compatibility.  If this is the first
  # instance of Syslog::Logger, +program_name+ may be set to change the logged
  # program name. The +facility+ may be set to specify the facility level which will be used.
  #
  # Due to the way syslog works, only one program name may be chosen.

  def initialize program_name = 'ruby', facility = nil
    @level = ::Logger::DEBUG
    @formatter = Formatter.new

    @@syslog ||= Syslog.open(program_name)

    @facility = (facility || @@syslog.facility)
  end

  ##
  # Almost duplicates Logger#add.  +progname+ is ignored.

  def add severity, message = nil, progname = nil, &block
    severity ||= ::Logger::UNKNOWN
    level <= severity and
      @@syslog.log( (LEVEL_MAP[severity] | @facility), '%s', formatter.call(severity, Time.now, progname, (message || block.call)) )
    true
  end
end
PKJH[�S|���share/ruby/logger/errors.rbnu�[���# frozen_string_literal: true

# not used after 1.2.7. just for compat.
class Logger
  class Error < RuntimeError # :nodoc:
  end
  class ShiftingError < Error # :nodoc:
  end
end
PKJH[^��DDshare/ruby/logger/version.rbnu�[���# frozen_string_literal: true

class Logger
  VERSION = "1.4.2"
end
PKJH[6�E^��share/ruby/logger/severity.rbnu�[���# frozen_string_literal: true

class Logger
  # Logging severity.
  module Severity
    # Low-level information, mostly for developers.
    DEBUG = 0
    # Generic (useful) information about system operation.
    INFO = 1
    # A warning.
    WARN = 2
    # A handleable error condition.
    ERROR = 3
    # An unhandleable error that results in a program crash.
    FATAL = 4
    # An unknown message that should always be logged.
    UNKNOWN = 5
  end
end
PKJH[����share/ruby/logger/formatter.rbnu�[���# frozen_string_literal: true

class Logger
  # Default formatter for log messages.
  class Formatter
    Format = "%s, [%s#%d] %5s -- %s: %s\n"

    attr_accessor :datetime_format

    def initialize
      @datetime_format = nil
    end

    def call(severity, time, progname, msg)
      Format % [severity[0..0], format_datetime(time), $$, severity, progname,
        msg2str(msg)]
    end

  private

    def format_datetime(time)
      time.strftime(@datetime_format || "%Y-%m-%dT%H:%M:%S.%6N ")
    end

    def msg2str(msg)
      case msg
      when ::String
        msg
      when ::Exception
        "#{ msg.message } (#{ msg.class })\n#{ msg.backtrace.join("\n") if msg.backtrace }"
      else
        msg.inspect
      end
    end
  end
end
PKJH[%��::share/ruby/logger/log_device.rbnu�[���# frozen_string_literal: true

require_relative 'period'

class Logger
  # Device used for logging messages.
  class LogDevice
    include Period

    attr_reader :dev
    attr_reader :filename
    include MonitorMixin

    def initialize(log = nil, shift_age: nil, shift_size: nil, shift_period_suffix: nil, binmode: false)
      @dev = @filename = @shift_age = @shift_size = @shift_period_suffix = nil
      @binmode = binmode
      mon_initialize
      set_dev(log)
      if @filename
        @shift_age = shift_age || 7
        @shift_size = shift_size || 1048576
        @shift_period_suffix = shift_period_suffix || '%Y%m%d'

        unless @shift_age.is_a?(Integer)
          base_time = @dev.respond_to?(:stat) ? @dev.stat.mtime : Time.now
          @next_rotate_time = next_rotate_time(base_time, @shift_age)
        end
      end
    end

    def write(message)
      begin
        synchronize do
          if @shift_age and @dev.respond_to?(:stat)
            begin
              check_shift_log
            rescue
              warn("log shifting failed. #{$!}")
            end
          end
          begin
            @dev.write(message)
          rescue
            warn("log writing failed. #{$!}")
          end
        end
      rescue Exception => ignored
        warn("log writing failed. #{ignored}")
      end
    end

    def close
      begin
        synchronize do
          @dev.close rescue nil
        end
      rescue Exception
        @dev.close rescue nil
      end
    end

    def reopen(log = nil)
      # reopen the same filename if no argument, do nothing for IO
      log ||= @filename if @filename
      if log
        synchronize do
          if @filename and @dev
            @dev.close rescue nil # close only file opened by Logger
            @filename = nil
          end
          set_dev(log)
        end
      end
      self
    end

  private

    def set_dev(log)
      if log.respond_to?(:write) and log.respond_to?(:close)
        @dev = log
        if log.respond_to?(:path)
          @filename = log.path
        end
      else
        @dev = open_logfile(log)
        @dev.sync = true
        @dev.binmode if @binmode
        @filename = log
      end
    end

    def open_logfile(filename)
      begin
        File.open(filename, (File::WRONLY | File::APPEND))
      rescue Errno::ENOENT
        create_logfile(filename)
      end
    end

    def create_logfile(filename)
      begin
        logdev = File.open(filename, (File::WRONLY | File::APPEND | File::CREAT | File::EXCL))
        logdev.flock(File::LOCK_EX)
        logdev.sync = true
        logdev.binmode if @binmode
        add_log_header(logdev)
        logdev.flock(File::LOCK_UN)
      rescue Errno::EEXIST
        # file is created by another process
        logdev = open_logfile(filename)
        logdev.sync = true
      end
      logdev
    end

    def add_log_header(file)
      file.write(
        "# Logfile created on %s by %s\n" % [Time.now.to_s, Logger::ProgName]
      ) if file.size == 0
    end

    def check_shift_log
      if @shift_age.is_a?(Integer)
        # Note: always returns false if '0'.
        if @filename && (@shift_age > 0) && (@dev.stat.size > @shift_size)
          lock_shift_log { shift_log_age }
        end
      else
        now = Time.now
        if now >= @next_rotate_time
          @next_rotate_time = next_rotate_time(now, @shift_age)
          lock_shift_log { shift_log_period(previous_period_end(now, @shift_age)) }
        end
      end
    end

    if /mswin|mingw/ =~ RUBY_PLATFORM
      def lock_shift_log
        yield
      end
    else
      def lock_shift_log
        retry_limit = 8
        retry_sleep = 0.1
        begin
          File.open(@filename, File::WRONLY | File::APPEND) do |lock|
            lock.flock(File::LOCK_EX) # inter-process locking. will be unlocked at closing file
            if File.identical?(@filename, lock) and File.identical?(lock, @dev)
              yield # log shifting
            else
              # log shifted by another process (i-node before locking and i-node after locking are different)
              @dev.close rescue nil
              @dev = open_logfile(@filename)
              @dev.sync = true
            end
          end
        rescue Errno::ENOENT
          # @filename file would not exist right after #rename and before #create_logfile
          if retry_limit <= 0
            warn("log rotation inter-process lock failed. #{$!}")
          else
            sleep retry_sleep
            retry_limit -= 1
            retry_sleep *= 2
            retry
          end
        end
      rescue
        warn("log rotation inter-process lock failed. #{$!}")
      end
    end

    def shift_log_age
      (@shift_age-3).downto(0) do |i|
        if FileTest.exist?("#{@filename}.#{i}")
          File.rename("#{@filename}.#{i}", "#{@filename}.#{i+1}")
        end
      end
      @dev.close rescue nil
      File.rename("#{@filename}", "#{@filename}.0")
      @dev = create_logfile(@filename)
      return true
    end

    def shift_log_period(period_end)
      suffix = period_end.strftime(@shift_period_suffix)
      age_file = "#{@filename}.#{suffix}"
      if FileTest.exist?(age_file)
        # try to avoid filename crash caused by Timestamp change.
        idx = 0
        # .99 can be overridden; avoid too much file search with 'loop do'
        while idx < 100
          idx += 1
          age_file = "#{@filename}.#{suffix}.#{idx}"
          break unless FileTest.exist?(age_file)
        end
      end
      @dev.close rescue nil
      File.rename("#{@filename}", age_file)
      @dev = create_logfile(@filename)
      return true
    end
  end
end
PKJH[�{��share/ruby/logger/period.rbnu�[���# frozen_string_literal: true

class Logger
  module Period
    module_function

    SiD = 24 * 60 * 60

    def next_rotate_time(now, shift_age)
      case shift_age
      when 'daily'
        t = Time.mktime(now.year, now.month, now.mday) + SiD
      when 'weekly'
        t = Time.mktime(now.year, now.month, now.mday) + SiD * (7 - now.wday)
      when 'monthly'
        t = Time.mktime(now.year, now.month, 1) + SiD * 32
        return Time.mktime(t.year, t.month, 1)
      when 'now', 'everytime'
        return now
      else
        raise ArgumentError, "invalid :shift_age #{shift_age.inspect}, should be daily, weekly, monthly, or everytime"
      end
      if t.hour.nonzero? or t.min.nonzero? or t.sec.nonzero?
        hour = t.hour
        t = Time.mktime(t.year, t.month, t.mday)
        t += SiD if hour > 12
      end
      t
    end

    def previous_period_end(now, shift_age)
      case shift_age
      when 'daily'
        t = Time.mktime(now.year, now.month, now.mday) - SiD / 2
      when 'weekly'
        t = Time.mktime(now.year, now.month, now.mday) - (SiD * now.wday + SiD / 2)
      when 'monthly'
        t = Time.mktime(now.year, now.month, 1) - SiD / 2
      when 'now', 'everytime'
        return now
      else
        raise ArgumentError, "invalid :shift_age #{shift_age.inspect}, should be daily, weekly, monthly, or everytime"
      end
      Time.mktime(t.year, t.month, t.mday, 23, 59, 59)
    end
  end
end
PKJH['share/gems/gems/io-console-0.5.6/lib/ionuȯ��PKJH[�+DF>>share/ruby/singleton.rbnu�[���# frozen_string_literal: false

# The Singleton module implements the Singleton pattern.
#
# == Usage
#
# To use Singleton, include the module in your class.
#
#    class Klass
#       include Singleton
#       # ...
#    end
#
# This ensures that only one instance of Klass can be created.
#
#      a,b  = Klass.instance, Klass.instance
#
#      a == b
#      # => true
#
#      Klass.new
#      # => NoMethodError - new is private ...
#
# The instance is created at upon the first call of Klass.instance().
#
#      class OtherKlass
#        include Singleton
#        # ...
#      end
#
#      ObjectSpace.each_object(OtherKlass){}
#      # => 0
#
#      OtherKlass.instance
#      ObjectSpace.each_object(OtherKlass){}
#      # => 1
#
#
# This behavior is preserved under inheritance and cloning.
#
# == Implementation
#
# This above is achieved by:
#
# *  Making Klass.new and Klass.allocate private.
#
# *  Overriding Klass.inherited(sub_klass) and Klass.clone() to ensure that the
#    Singleton properties are kept when inherited and cloned.
#
# *  Providing the Klass.instance() method that returns the same object each
#    time it is called.
#
# *  Overriding Klass._load(str) to call Klass.instance().
#
# *  Overriding Klass#clone and Klass#dup to raise TypeErrors to prevent
#    cloning or duping.
#
# == Singleton and Marshal
#
# By default Singleton's #_dump(depth) returns the empty string. Marshalling by
# default will strip state information, e.g. instance variables from the instance.
# Classes using Singleton can provide custom _load(str) and _dump(depth) methods
# to retain some of the previous state of the instance.
#
#    require 'singleton'
#
#    class Example
#      include Singleton
#      attr_accessor :keep, :strip
#      def _dump(depth)
#        # this strips the @strip information from the instance
#        Marshal.dump(@keep, depth)
#      end
#
#      def self._load(str)
#        instance.keep = Marshal.load(str)
#        instance
#      end
#    end
#
#    a = Example.instance
#    a.keep = "keep this"
#    a.strip = "get rid of this"
#
#    stored_state = Marshal.dump(a)
#
#    a.keep = nil
#    a.strip = nil
#    b = Marshal.load(stored_state)
#    p a == b  #  => true
#    p a.keep  #  => "keep this"
#    p a.strip #  => nil
#
module Singleton
  # Raises a TypeError to prevent cloning.
  def clone
    raise TypeError, "can't clone instance of singleton #{self.class}"
  end

  # Raises a TypeError to prevent duping.
  def dup
    raise TypeError, "can't dup instance of singleton #{self.class}"
  end

  # By default, do not retain any state when marshalling.
  def _dump(depth = -1)
    ''
  end

  module SingletonClassMethods # :nodoc:

    def clone # :nodoc:
      Singleton.__init__(super)
    end

    # By default calls instance(). Override to retain singleton state.
    def _load(str)
      instance
    end

    def instance # :nodoc:
      return @singleton__instance__ if @singleton__instance__
      @singleton__mutex__.synchronize {
        return @singleton__instance__ if @singleton__instance__
        @singleton__instance__ = new()
      }
      @singleton__instance__
    end

    private

    def inherited(sub_klass)
      super
      Singleton.__init__(sub_klass)
    end
  end

  class << Singleton # :nodoc:
    def __init__(klass) # :nodoc:
      klass.instance_eval {
        @singleton__instance__ = nil
        @singleton__mutex__ = Thread::Mutex.new
      }
      klass
    end

    private

    # extending an object with Singleton is a bad idea
    undef_method :extend_object

    def append_features(mod)
      #  help out people counting on transitive mixins
      unless mod.instance_of?(Class)
        raise TypeError, "Inclusion of the OO-Singleton module in module #{mod}"
      end
      super
    end

    def included(klass)
      super
      klass.private_class_method :new, :allocate
      klass.extend SingletonClassMethods
      Singleton.__init__(klass)
    end
  end

  ##
  # :singleton-method: _load
  #  By default calls instance(). Override to retain singleton state.

  ##
  # :singleton-method: instance
  #  Returns the singleton instance.
end
PKJH[�"�22share/ruby/drb.rbnu�[���# frozen_string_literal: false
require 'drb/drb'

PKJH[\��	����share/ruby/cgi/html.rbnu�[���# frozen_string_literal: true
class CGI
  # Base module for HTML-generation mixins.
  #
  # Provides methods for code generation for tags following
  # the various DTD element types.
  module TagMaker # :nodoc:

    # Generate code for an element with required start and end tags.
    #
    #   - -
    def nn_element(element, attributes = {})
      s = nOE_element(element, attributes)
      if block_given?
        s << yield.to_s
      end
      s << "</#{element.upcase}>"
    end

    def nn_element_def(attributes = {}, &block)
      nn_element(__callee__, attributes, &block)
    end

    # Generate code for an empty element.
    #
    #   - O EMPTY
    def nOE_element(element, attributes = {})
      attributes={attributes=>nil} if attributes.kind_of?(String)
      s = "<#{element.upcase}".dup
      attributes.each do|name, value|
        next unless value
        s << " "
        s << CGI.escapeHTML(name.to_s)
        if value != true
          s << '="'
          s << CGI.escapeHTML(value.to_s)
          s << '"'
        end
      end
      s << ">"
    end

    def nOE_element_def(attributes = {}, &block)
      nOE_element(__callee__, attributes, &block)
    end


    # Generate code for an element for which the end (and possibly the
    # start) tag is optional.
    #
    #   O O or - O
    def nO_element(element, attributes = {})
      s = nOE_element(element, attributes)
      if block_given?
        s << yield.to_s
        s << "</#{element.upcase}>"
      end
      s
    end

    def nO_element_def(attributes = {}, &block)
      nO_element(__callee__, attributes, &block)
    end

  end # TagMaker


  # Mixin module providing HTML generation methods.
  #
  # For example,
  #   cgi.a("http://www.example.com") { "Example" }
  #     # => "<A HREF=\"http://www.example.com\">Example</A>"
  #
  # Modules Html3, Html4, etc., contain more basic HTML-generation methods
  # (+#title+, +#h1+, etc.).
  #
  # See class CGI for a detailed example.
  #
  module HtmlExtension


    # Generate an Anchor element as a string.
    #
    # +href+ can either be a string, giving the URL
    # for the HREF attribute, or it can be a hash of
    # the element's attributes.
    #
    # The body of the element is the string returned by the no-argument
    # block passed in.
    #
    #   a("http://www.example.com") { "Example" }
    #     # => "<A HREF=\"http://www.example.com\">Example</A>"
    #
    #   a("HREF" => "http://www.example.com", "TARGET" => "_top") { "Example" }
    #     # => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>"
    #
    def a(href = "") # :yield:
      attributes = if href.kind_of?(String)
                     { "HREF" => href }
                   else
                     href
                   end
      super(attributes)
    end

    # Generate a Document Base URI element as a String.
    #
    # +href+ can either by a string, giving the base URL for the HREF
    # attribute, or it can be a has of the element's attributes.
    #
    # The passed-in no-argument block is ignored.
    #
    #   base("http://www.example.com/cgi")
    #     # => "<BASE HREF=\"http://www.example.com/cgi\">"
    def base(href = "") # :yield:
      attributes = if href.kind_of?(String)
                     { "HREF" => href }
                   else
                     href
                   end
      super(attributes)
    end

    # Generate a BlockQuote element as a string.
    #
    # +cite+ can either be a string, give the URI for the source of
    # the quoted text, or a hash, giving all attributes of the element,
    # or it can be omitted, in which case the element has no attributes.
    #
    # The body is provided by the passed-in no-argument block
    #
    #   blockquote("http://www.example.com/quotes/foo.html") { "Foo!" }
    #     #=> "<BLOCKQUOTE CITE=\"http://www.example.com/quotes/foo.html\">Foo!</BLOCKQUOTE>
    def blockquote(cite = {})  # :yield:
      attributes = if cite.kind_of?(String)
                     { "CITE" => cite }
                   else
                     cite
                   end
      super(attributes)
    end


    # Generate a Table Caption element as a string.
    #
    # +align+ can be a string, giving the alignment of the caption
    # (one of top, bottom, left, or right).  It can be a hash of
    # all the attributes of the element.  Or it can be omitted.
    #
    # The body of the element is provided by the passed-in no-argument block.
    #
    #   caption("left") { "Capital Cities" }
    #     # => <CAPTION ALIGN=\"left\">Capital Cities</CAPTION>
    def caption(align = {}) # :yield:
      attributes = if align.kind_of?(String)
                     { "ALIGN" => align }
                   else
                     align
                   end
      super(attributes)
    end


    # Generate a Checkbox Input element as a string.
    #
    # The attributes of the element can be specified as three arguments,
    # +name+, +value+, and +checked+.  +checked+ is a boolean value;
    # if true, the CHECKED attribute will be included in the element.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   checkbox("name")
    #     # = checkbox("NAME" => "name")
    #
    #   checkbox("name", "value")
    #     # = checkbox("NAME" => "name", "VALUE" => "value")
    #
    #   checkbox("name", "value", true)
    #     # = checkbox("NAME" => "name", "VALUE" => "value", "CHECKED" => true)
    def checkbox(name = "", value = nil, checked = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "checkbox", "NAME" => name,
                       "VALUE" => value, "CHECKED" => checked }
                   else
                     name["TYPE"] = "checkbox"
                     name
                   end
      input(attributes)
    end

    # Generate a sequence of checkbox elements, as a String.
    #
    # The checkboxes will all have the same +name+ attribute.
    # Each checkbox is followed by a label.
    # There will be one checkbox for each value.  Each value
    # can be specified as a String, which will be used both
    # as the value of the VALUE attribute and as the label
    # for that checkbox.  A single-element array has the
    # same effect.
    #
    # Each value can also be specified as a three-element array.
    # The first element is the VALUE attribute; the second is the
    # label; and the third is a boolean specifying whether this
    # checkbox is CHECKED.
    #
    # Each value can also be specified as a two-element
    # array, by omitting either the value element (defaults
    # to the same as the label), or the boolean checked element
    # (defaults to false).
    #
    #   checkbox_group("name", "foo", "bar", "baz")
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="foo">foo
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="bar">bar
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="baz">baz
    #
    #   checkbox_group("name", ["foo"], ["bar", true], "baz")
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="foo">foo
    #     # <INPUT TYPE="checkbox" CHECKED NAME="name" VALUE="bar">bar
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="baz">baz
    #
    #   checkbox_group("name", ["1", "Foo"], ["2", "Bar", true], "Baz")
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="1">Foo
    #     # <INPUT TYPE="checkbox" CHECKED NAME="name" VALUE="2">Bar
    #     # <INPUT TYPE="checkbox" NAME="name" VALUE="Baz">Baz
    #
    #   checkbox_group("NAME" => "name",
    #                    "VALUES" => ["foo", "bar", "baz"])
    #
    #   checkbox_group("NAME" => "name",
    #                    "VALUES" => [["foo"], ["bar", true], "baz"])
    #
    #   checkbox_group("NAME" => "name",
    #                    "VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"])
    def checkbox_group(name = "", *values)
      if name.kind_of?(Hash)
        values = name["VALUES"]
        name = name["NAME"]
      end
      values.collect{|value|
        if value.kind_of?(String)
          checkbox(name, value) + value
        else
          if value[-1] == true || value[-1] == false
            checkbox(name, value[0],  value[-1]) +
            value[-2]
          else
            checkbox(name, value[0]) +
            value[-1]
          end
        end
      }.join
    end


    # Generate an File Upload Input element as a string.
    #
    # The attributes of the element can be specified as three arguments,
    # +name+, +size+, and +maxlength+.  +maxlength+ is the maximum length
    # of the file's _name_, not of the file's _contents_.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    # See #multipart_form() for forms that include file uploads.
    #
    #   file_field("name")
    #     # <INPUT TYPE="file" NAME="name" SIZE="20">
    #
    #   file_field("name", 40)
    #     # <INPUT TYPE="file" NAME="name" SIZE="40">
    #
    #   file_field("name", 40, 100)
    #     # <INPUT TYPE="file" NAME="name" SIZE="40" MAXLENGTH="100">
    #
    #   file_field("NAME" => "name", "SIZE" => 40)
    #     # <INPUT TYPE="file" NAME="name" SIZE="40">
    def file_field(name = "", size = 20, maxlength = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "file", "NAME" => name,
                       "SIZE" => size.to_s }
                   else
                     name["TYPE"] = "file"
                     name
                   end
      attributes["MAXLENGTH"] = maxlength.to_s if maxlength
      input(attributes)
    end


    # Generate a Form element as a string.
    #
    # +method+ should be either "get" or "post", and defaults to the latter.
    # +action+ defaults to the current CGI script name.  +enctype+
    # defaults to "application/x-www-form-urlencoded".
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    # See also #multipart_form() for forms that include file uploads.
    #
    #   form{ "string" }
    #     # <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
    #
    #   form("get") { "string" }
    #     # <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
    #
    #   form("get", "url") { "string" }
    #     # <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
    #
    #   form("METHOD" => "post", "ENCTYPE" => "enctype") { "string" }
    #     # <FORM METHOD="post" ENCTYPE="enctype">string</FORM>
    def form(method = "post", action = script_name, enctype = "application/x-www-form-urlencoded")
      attributes = if method.kind_of?(String)
                     { "METHOD" => method, "ACTION" => action,
                       "ENCTYPE" => enctype }
                   else
                     unless method.has_key?("METHOD")
                       method["METHOD"] = "post"
                     end
                     unless method.has_key?("ENCTYPE")
                       method["ENCTYPE"] = enctype
                     end
                     method
                   end
      if block_given?
        body = yield
      else
        body = ""
      end
      if @output_hidden
        body << @output_hidden.collect{|k,v|
          "<INPUT TYPE=\"HIDDEN\" NAME=\"#{k}\" VALUE=\"#{v}\">"
        }.join
      end
      super(attributes){body}
    end

    # Generate a Hidden Input element as a string.
    #
    # The attributes of the element can be specified as two arguments,
    # +name+ and +value+.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   hidden("name")
    #     # <INPUT TYPE="hidden" NAME="name">
    #
    #   hidden("name", "value")
    #     # <INPUT TYPE="hidden" NAME="name" VALUE="value">
    #
    #   hidden("NAME" => "name", "VALUE" => "reset", "ID" => "foo")
    #     # <INPUT TYPE="hidden" NAME="name" VALUE="value" ID="foo">
    def hidden(name = "", value = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "hidden", "NAME" => name, "VALUE" => value }
                   else
                     name["TYPE"] = "hidden"
                     name
                   end
      input(attributes)
    end

    # Generate a top-level HTML element as a string.
    #
    # The attributes of the element are specified as a hash.  The
    # pseudo-attribute "PRETTY" can be used to specify that the generated
    # HTML string should be indented.  "PRETTY" can also be specified as
    # a string as the sole argument to this method.  The pseudo-attribute
    # "DOCTYPE", if given, is used as the leading DOCTYPE SGML tag; it
    # should include the entire text of this tag, including angle brackets.
    #
    # The body of the html element is supplied as a block.
    #
    #   html{ "string" }
    #     # <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><HTML>string</HTML>
    #
    #   html("LANG" => "ja") { "string" }
    #     # <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><HTML LANG="ja">string</HTML>
    #
    #   html("DOCTYPE" => false) { "string" }
    #     # <HTML>string</HTML>
    #
    #   html("DOCTYPE" => '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">') { "string" }
    #     # <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><HTML>string</HTML>
    #
    #   html("PRETTY" => "  ") { "<BODY></BODY>" }
    #     # <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    #     # <HTML>
    #     #   <BODY>
    #     #   </BODY>
    #     # </HTML>
    #
    #   html("PRETTY" => "\t") { "<BODY></BODY>" }
    #     # <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    #     # <HTML>
    #     #         <BODY>
    #     #         </BODY>
    #     # </HTML>
    #
    #   html("PRETTY") { "<BODY></BODY>" }
    #     # = html("PRETTY" => "  ") { "<BODY></BODY>" }
    #
    #   html(if $VERBOSE then "PRETTY" end) { "HTML string" }
    #
    def html(attributes = {}) # :yield:
      if nil == attributes
        attributes = {}
      elsif "PRETTY" == attributes
        attributes = { "PRETTY" => true }
      end
      pretty = attributes.delete("PRETTY")
      pretty = "  " if true == pretty
      buf = "".dup

      if attributes.has_key?("DOCTYPE")
        if attributes["DOCTYPE"]
          buf << attributes.delete("DOCTYPE")
        else
          attributes.delete("DOCTYPE")
        end
      else
        buf << doctype
      end

      buf << super(attributes)

      if pretty
        CGI.pretty(buf, pretty)
      else
        buf
      end

    end

    # Generate an Image Button Input element as a string.
    #
    # +src+ is the URL of the image to use for the button.  +name+
    # is the input name.  +alt+ is the alternative text for the image.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   image_button("url")
    #     # <INPUT TYPE="image" SRC="url">
    #
    #   image_button("url", "name", "string")
    #     # <INPUT TYPE="image" SRC="url" NAME="name" ALT="string">
    #
    #   image_button("SRC" => "url", "ALT" => "string")
    #     # <INPUT TYPE="image" SRC="url" ALT="string">
    def image_button(src = "", name = nil, alt = nil)
      attributes = if src.kind_of?(String)
                     { "TYPE" => "image", "SRC" => src, "NAME" => name,
                       "ALT" => alt }
                   else
                     src["TYPE"] = "image"
                     src["SRC"] ||= ""
                     src
                   end
      input(attributes)
    end


    # Generate an Image element as a string.
    #
    # +src+ is the URL of the image.  +alt+ is the alternative text for
    # the image.  +width+ is the width of the image, and +height+ is
    # its height.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   img("src", "alt", 100, 50)
    #     # <IMG SRC="src" ALT="alt" WIDTH="100" HEIGHT="50">
    #
    #   img("SRC" => "src", "ALT" => "alt", "WIDTH" => 100, "HEIGHT" => 50)
    #     # <IMG SRC="src" ALT="alt" WIDTH="100" HEIGHT="50">
    def img(src = "", alt = "", width = nil, height = nil)
      attributes = if src.kind_of?(String)
                     { "SRC" => src, "ALT" => alt }
                   else
                     src
                   end
      attributes["WIDTH"] = width.to_s if width
      attributes["HEIGHT"] = height.to_s if height
      super(attributes)
    end


    # Generate a Form element with multipart encoding as a String.
    #
    # Multipart encoding is used for forms that include file uploads.
    #
    # +action+ is the action to perform.  +enctype+ is the encoding
    # type, which defaults to "multipart/form-data".
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   multipart_form{ "string" }
    #     # <FORM METHOD="post" ENCTYPE="multipart/form-data">string</FORM>
    #
    #   multipart_form("url") { "string" }
    #     # <FORM METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>
    def multipart_form(action = nil, enctype = "multipart/form-data")
      attributes = if action == nil
                     { "METHOD" => "post", "ENCTYPE" => enctype }
                   elsif action.kind_of?(String)
                     { "METHOD" => "post", "ACTION" => action,
                       "ENCTYPE" => enctype }
                   else
                     unless action.has_key?("METHOD")
                       action["METHOD"] = "post"
                     end
                     unless action.has_key?("ENCTYPE")
                       action["ENCTYPE"] = enctype
                     end
                     action
                   end
      if block_given?
        form(attributes){ yield }
      else
        form(attributes)
      end
    end


    # Generate a Password Input element as a string.
    #
    # +name+ is the name of the input field.  +value+ is its default
    # value.  +size+ is the size of the input field display.  +maxlength+
    # is the maximum length of the inputted password.
    #
    # Alternatively, attributes can be specified as a hash.
    #
    #   password_field("name")
    #     # <INPUT TYPE="password" NAME="name" SIZE="40">
    #
    #   password_field("name", "value")
    #     # <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="40">
    #
    #   password_field("password", "value", 80, 200)
    #     # <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="80" MAXLENGTH="200">
    #
    #   password_field("NAME" => "name", "VALUE" => "value")
    #     # <INPUT TYPE="password" NAME="name" VALUE="value">
    def password_field(name = "", value = nil, size = 40, maxlength = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "password", "NAME" => name,
                       "VALUE" => value, "SIZE" => size.to_s }
                   else
                     name["TYPE"] = "password"
                     name
                   end
      attributes["MAXLENGTH"] = maxlength.to_s if maxlength
      input(attributes)
    end

    # Generate a Select element as a string.
    #
    # +name+ is the name of the element.  The +values+ are the options that
    # can be selected from the Select menu.  Each value can be a String or
    # a one, two, or three-element Array.  If a String or a one-element
    # Array, this is both the value of that option and the text displayed for
    # it.  If a three-element Array, the elements are the option value, displayed
    # text, and a boolean value specifying whether this option starts as selected.
    # The two-element version omits either the option value (defaults to the same
    # as the display text) or the boolean selected specifier (defaults to false).
    #
    # The attributes and options can also be specified as a hash.  In this
    # case, options are specified as an array of values as described above,
    # with the hash key of "VALUES".
    #
    #   popup_menu("name", "foo", "bar", "baz")
    #     # <SELECT NAME="name">
    #     #   <OPTION VALUE="foo">foo</OPTION>
    #     #   <OPTION VALUE="bar">bar</OPTION>
    #     #   <OPTION VALUE="baz">baz</OPTION>
    #     # </SELECT>
    #
    #   popup_menu("name", ["foo"], ["bar", true], "baz")
    #     # <SELECT NAME="name">
    #     #   <OPTION VALUE="foo">foo</OPTION>
    #     #   <OPTION VALUE="bar" SELECTED>bar</OPTION>
    #     #   <OPTION VALUE="baz">baz</OPTION>
    #     # </SELECT>
    #
    #   popup_menu("name", ["1", "Foo"], ["2", "Bar", true], "Baz")
    #     # <SELECT NAME="name">
    #     #   <OPTION VALUE="1">Foo</OPTION>
    #     #   <OPTION SELECTED VALUE="2">Bar</OPTION>
    #     #   <OPTION VALUE="Baz">Baz</OPTION>
    #     # </SELECT>
    #
    #   popup_menu("NAME" => "name", "SIZE" => 2, "MULTIPLE" => true,
    #               "VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"])
    #     # <SELECT NAME="name" MULTIPLE SIZE="2">
    #     #   <OPTION VALUE="1">Foo</OPTION>
    #     #   <OPTION SELECTED VALUE="2">Bar</OPTION>
    #     #   <OPTION VALUE="Baz">Baz</OPTION>
    #     # </SELECT>
    def popup_menu(name = "", *values)

      if name.kind_of?(Hash)
        values   = name["VALUES"]
        size     = name["SIZE"].to_s if name["SIZE"]
        multiple = name["MULTIPLE"]
        name     = name["NAME"]
      else
        size = nil
        multiple = nil
      end

      select({ "NAME" => name, "SIZE" => size,
               "MULTIPLE" => multiple }){
        values.collect{|value|
          if value.kind_of?(String)
            option({ "VALUE" => value }){ value }
          else
            if value[value.size - 1] == true
              option({ "VALUE" => value[0], "SELECTED" => true }){
                value[value.size - 2]
              }
            else
              option({ "VALUE" => value[0] }){
                value[value.size - 1]
              }
            end
          end
        }.join
      }

    end

    # Generates a radio-button Input element.
    #
    # +name+ is the name of the input field.  +value+ is the value of
    # the field if checked.  +checked+ specifies whether the field
    # starts off checked.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   radio_button("name", "value")
    #     # <INPUT TYPE="radio" NAME="name" VALUE="value">
    #
    #   radio_button("name", "value", true)
    #     # <INPUT TYPE="radio" NAME="name" VALUE="value" CHECKED>
    #
    #   radio_button("NAME" => "name", "VALUE" => "value", "ID" => "foo")
    #     # <INPUT TYPE="radio" NAME="name" VALUE="value" ID="foo">
    def radio_button(name = "", value = nil, checked = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "radio", "NAME" => name,
                       "VALUE" => value, "CHECKED" => checked }
                   else
                     name["TYPE"] = "radio"
                     name
                   end
      input(attributes)
    end

    # Generate a sequence of radio button Input elements, as a String.
    #
    # This works the same as #checkbox_group().  However, it is not valid
    # to have more than one radiobutton in a group checked.
    #
    #   radio_group("name", "foo", "bar", "baz")
    #     # <INPUT TYPE="radio" NAME="name" VALUE="foo">foo
    #     # <INPUT TYPE="radio" NAME="name" VALUE="bar">bar
    #     # <INPUT TYPE="radio" NAME="name" VALUE="baz">baz
    #
    #   radio_group("name", ["foo"], ["bar", true], "baz")
    #     # <INPUT TYPE="radio" NAME="name" VALUE="foo">foo
    #     # <INPUT TYPE="radio" CHECKED NAME="name" VALUE="bar">bar
    #     # <INPUT TYPE="radio" NAME="name" VALUE="baz">baz
    #
    #   radio_group("name", ["1", "Foo"], ["2", "Bar", true], "Baz")
    #     # <INPUT TYPE="radio" NAME="name" VALUE="1">Foo
    #     # <INPUT TYPE="radio" CHECKED NAME="name" VALUE="2">Bar
    #     # <INPUT TYPE="radio" NAME="name" VALUE="Baz">Baz
    #
    #   radio_group("NAME" => "name",
    #                 "VALUES" => ["foo", "bar", "baz"])
    #
    #   radio_group("NAME" => "name",
    #                 "VALUES" => [["foo"], ["bar", true], "baz"])
    #
    #   radio_group("NAME" => "name",
    #                 "VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"])
    def radio_group(name = "", *values)
      if name.kind_of?(Hash)
        values = name["VALUES"]
        name = name["NAME"]
      end
      values.collect{|value|
        if value.kind_of?(String)
          radio_button(name, value) + value
        else
          if value[-1] == true || value[-1] == false
            radio_button(name, value[0],  value[-1]) +
            value[-2]
          else
            radio_button(name, value[0]) +
            value[-1]
          end
        end
      }.join
    end

    # Generate a reset button Input element, as a String.
    #
    # This resets the values on a form to their initial values.  +value+
    # is the text displayed on the button. +name+ is the name of this button.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   reset
    #     # <INPUT TYPE="reset">
    #
    #   reset("reset")
    #     # <INPUT TYPE="reset" VALUE="reset">
    #
    #   reset("VALUE" => "reset", "ID" => "foo")
    #     # <INPUT TYPE="reset" VALUE="reset" ID="foo">
    def reset(value = nil, name = nil)
      attributes = if (not value) or value.kind_of?(String)
                     { "TYPE" => "reset", "VALUE" => value, "NAME" => name }
                   else
                     value["TYPE"] = "reset"
                     value
                   end
      input(attributes)
    end

    alias scrolling_list popup_menu

    # Generate a submit button Input element, as a String.
    #
    # +value+ is the text to display on the button.  +name+ is the name
    # of the input.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   submit
    #     # <INPUT TYPE="submit">
    #
    #   submit("ok")
    #     # <INPUT TYPE="submit" VALUE="ok">
    #
    #   submit("ok", "button1")
    #     # <INPUT TYPE="submit" VALUE="ok" NAME="button1">
    #
    #   submit("VALUE" => "ok", "NAME" => "button1", "ID" => "foo")
    #     # <INPUT TYPE="submit" VALUE="ok" NAME="button1" ID="foo">
    def submit(value = nil, name = nil)
      attributes = if (not value) or value.kind_of?(String)
                     { "TYPE" => "submit", "VALUE" => value, "NAME" => name }
                   else
                     value["TYPE"] = "submit"
                     value
                   end
      input(attributes)
    end

    # Generate a text field Input element, as a String.
    #
    # +name+ is the name of the input field.  +value+ is its initial
    # value.  +size+ is the size of the input area.  +maxlength+
    # is the maximum length of input accepted.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    #   text_field("name")
    #     # <INPUT TYPE="text" NAME="name" SIZE="40">
    #
    #   text_field("name", "value")
    #     # <INPUT TYPE="text" NAME="name" VALUE="value" SIZE="40">
    #
    #   text_field("name", "value", 80)
    #     # <INPUT TYPE="text" NAME="name" VALUE="value" SIZE="80">
    #
    #   text_field("name", "value", 80, 200)
    #     # <INPUT TYPE="text" NAME="name" VALUE="value" SIZE="80" MAXLENGTH="200">
    #
    #   text_field("NAME" => "name", "VALUE" => "value")
    #     # <INPUT TYPE="text" NAME="name" VALUE="value">
    def text_field(name = "", value = nil, size = 40, maxlength = nil)
      attributes = if name.kind_of?(String)
                     { "TYPE" => "text", "NAME" => name, "VALUE" => value,
                       "SIZE" => size.to_s }
                   else
                     name["TYPE"] = "text"
                     name
                   end
      attributes["MAXLENGTH"] = maxlength.to_s if maxlength
      input(attributes)
    end

    # Generate a TextArea element, as a String.
    #
    # +name+ is the name of the textarea.  +cols+ is the number of
    # columns and +rows+ is the number of rows in the display.
    #
    # Alternatively, the attributes can be specified as a hash.
    #
    # The body is provided by the passed-in no-argument block
    #
    #   textarea("name")
    #      # = textarea("NAME" => "name", "COLS" => 70, "ROWS" => 10)
    #
    #   textarea("name", 40, 5)
    #      # = textarea("NAME" => "name", "COLS" => 40, "ROWS" => 5)
    def textarea(name = "", cols = 70, rows = 10)  # :yield:
      attributes = if name.kind_of?(String)
                     { "NAME" => name, "COLS" => cols.to_s,
                       "ROWS" => rows.to_s }
                   else
                     name
                   end
      super(attributes)
    end

  end # HtmlExtension


  # Mixin module for HTML version 3 generation methods.
  module Html3 # :nodoc:
    include TagMaker

    # The DOCTYPE declaration for this version of HTML
    def doctype
      %|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">|
    end

    instance_method(:nn_element_def).tap do |m|
      # - -
      for element in %w[ A TT I B U STRIKE BIG SMALL SUB SUP EM STRONG
          DFN CODE SAMP KBD VAR CITE FONT ADDRESS DIV CENTER MAP
          APPLET PRE XMP LISTING DL OL UL DIR MENU SELECT TABLE TITLE
          STYLE SCRIPT H1 H2 H3 H4 H5 H6 TEXTAREA FORM BLOCKQUOTE
          CAPTION ]
        define_method(element.downcase, m)
      end
    end

    instance_method(:nOE_element_def).tap do |m|
      # - O EMPTY
      for element in %w[ IMG BASE BASEFONT BR AREA LINK PARAM HR INPUT
          ISINDEX META ]
        define_method(element.downcase, m)
      end
    end

    instance_method(:nO_element_def).tap do |m|
      # O O or - O
      for element in %w[ HTML HEAD BODY P PLAINTEXT DT DD LI OPTION TR
          TH TD ]
        define_method(element.downcase, m)
      end
    end

  end # Html3


  # Mixin module for HTML version 4 generation methods.
  module Html4 # :nodoc:
    include TagMaker

    # The DOCTYPE declaration for this version of HTML
    def doctype
      %|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|
    end

    # Initialize the HTML generation methods for this version.
    # - -
    instance_method(:nn_element_def).tap do |m|
      for element in %w[ TT I B BIG SMALL EM STRONG DFN CODE SAMP KBD
        VAR CITE ABBR ACRONYM SUB SUP SPAN BDO ADDRESS DIV MAP OBJECT
        H1 H2 H3 H4 H5 H6 PRE Q INS DEL DL OL UL LABEL SELECT OPTGROUP
        FIELDSET LEGEND BUTTON TABLE TITLE STYLE SCRIPT NOSCRIPT
        TEXTAREA FORM A BLOCKQUOTE CAPTION ]
        define_method(element.downcase, m)
      end
    end

    # - O EMPTY
    instance_method(:nOE_element_def).tap do |m|
      for element in %w[ IMG BASE BR AREA LINK PARAM HR INPUT COL META ]
        define_method(element.downcase, m)
      end
    end

    # O O or - O
    instance_method(:nO_element_def).tap do |m|
      for element in %w[ HTML BODY P DT DD LI OPTION THEAD TFOOT TBODY
          COLGROUP TR TH TD HEAD ]
        define_method(element.downcase, m)
      end
    end

  end # Html4


  # Mixin module for HTML version 4 transitional generation methods.
  module Html4Tr # :nodoc:
    include TagMaker

    # The DOCTYPE declaration for this version of HTML
    def doctype
      %|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">|
    end

    # Initialise the HTML generation methods for this version.
    # - -
    instance_method(:nn_element_def).tap do |m|
      for element in %w[ TT I B U S STRIKE BIG SMALL EM STRONG DFN
          CODE SAMP KBD VAR CITE ABBR ACRONYM FONT SUB SUP SPAN BDO
          ADDRESS DIV CENTER MAP OBJECT APPLET H1 H2 H3 H4 H5 H6 PRE Q
          INS DEL DL OL UL DIR MENU LABEL SELECT OPTGROUP FIELDSET
          LEGEND BUTTON TABLE IFRAME NOFRAMES TITLE STYLE SCRIPT
          NOSCRIPT TEXTAREA FORM A BLOCKQUOTE CAPTION ]
        define_method(element.downcase, m)
      end
    end

    # - O EMPTY
    instance_method(:nOE_element_def).tap do |m|
      for element in %w[ IMG BASE BASEFONT BR AREA LINK PARAM HR INPUT
          COL ISINDEX META ]
        define_method(element.downcase, m)
      end
    end

    # O O or - O
    instance_method(:nO_element_def).tap do |m|
      for element in %w[ HTML BODY P DT DD LI OPTION THEAD TFOOT TBODY
          COLGROUP TR TH TD HEAD ]
        define_method(element.downcase, m)
      end
    end

  end # Html4Tr


  # Mixin module for generating HTML version 4 with framesets.
  module Html4Fr # :nodoc:
    include TagMaker

    # The DOCTYPE declaration for this version of HTML
    def doctype
      %|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">|
    end

    # Initialise the HTML generation methods for this version.
    # - -
    instance_method(:nn_element_def).tap do |m|
      for element in %w[ FRAMESET ]
        define_method(element.downcase, m)
      end
    end

    # - O EMPTY
    instance_method(:nOE_element_def).tap do |m|
      for element in %w[ FRAME ]
        define_method(element.downcase, m)
      end
    end

  end # Html4Fr


  # Mixin module for HTML version 5 generation methods.
  module Html5 # :nodoc:
    include TagMaker

    # The DOCTYPE declaration for this version of HTML
    def doctype
      %|<!DOCTYPE HTML>|
    end

    # Initialise the HTML generation methods for this version.
    # - -
    instance_method(:nn_element_def).tap do |m|
      for element in %w[ SECTION NAV ARTICLE ASIDE HGROUP HEADER
        FOOTER FIGURE FIGCAPTION S TIME U MARK RUBY BDI IFRAME
        VIDEO AUDIO CANVAS DATALIST OUTPUT PROGRESS METER DETAILS
        SUMMARY MENU DIALOG I B SMALL EM STRONG DFN CODE SAMP KBD
        VAR CITE ABBR SUB SUP SPAN BDO ADDRESS DIV MAP OBJECT
        H1 H2 H3 H4 H5 H6 PRE Q INS DEL DL OL UL LABEL SELECT
        FIELDSET LEGEND BUTTON TABLE TITLE STYLE SCRIPT NOSCRIPT
        TEXTAREA FORM A BLOCKQUOTE CAPTION ]
        define_method(element.downcase, m)
      end
    end

    # - O EMPTY
    instance_method(:nOE_element_def).tap do |m|
      for element in %w[ IMG BASE BR AREA LINK PARAM HR INPUT COL META
        COMMAND EMBED KEYGEN SOURCE TRACK WBR ]
        define_method(element.downcase, m)
      end
    end

    # O O or - O
    instance_method(:nO_element_def).tap do |m|
      for element in %w[ HTML HEAD BODY P DT DD LI OPTION THEAD TFOOT TBODY
          OPTGROUP COLGROUP RT RP TR TH TD ]
        define_method(element.downcase, m)
      end
    end

  end # Html5

  class HTML3
    include Html3
    include HtmlExtension
  end

  class HTML4
    include Html4
    include HtmlExtension
  end

  class HTML4Tr
    include Html4Tr
    include HtmlExtension
  end

  class HTML4Fr
    include Html4Tr
    include Html4Fr
    include HtmlExtension
  end

  class HTML5
    include Html5
    include HtmlExtension
  end

end
PKJH[�mK�H�Hshare/ruby/cgi/session.rbnu�[���# frozen_string_literal: true
#
# cgi/session.rb - session support for cgi scripts
#
# Copyright (C) 2001  Yukihiro "Matz" Matsumoto
# Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
# Copyright (C) 2000  Information-technology Promotion Agency, Japan
#
# Author: Yukihiro "Matz" Matsumoto
#
# Documentation: William Webber (william@williamwebber.com)

require 'cgi'
require 'tmpdir'

class CGI

  # == Overview
  #
  # This file provides the CGI::Session class, which provides session
  # support for CGI scripts.  A session is a sequence of HTTP requests
  # and responses linked together and associated with a single client.
  # Information associated with the session is stored
  # on the server between requests.  A session id is passed between client
  # and server with every request and response, transparently
  # to the user.  This adds state information to the otherwise stateless
  # HTTP request/response protocol.
  #
  # == Lifecycle
  #
  # A CGI::Session instance is created from a CGI object.  By default,
  # this CGI::Session instance will start a new session if none currently
  # exists, or continue the current session for this client if one does
  # exist.  The +new_session+ option can be used to either always or
  # never create a new session.  See #new() for more details.
  #
  # #delete() deletes a session from session storage.  It
  # does not however remove the session id from the client.  If the client
  # makes another request with the same id, the effect will be to start
  # a new session with the old session's id.
  #
  # == Setting and retrieving session data.
  #
  # The Session class associates data with a session as key-value pairs.
  # This data can be set and retrieved by indexing the Session instance
  # using '[]', much the same as hashes (although other hash methods
  # are not supported).
  #
  # When session processing has been completed for a request, the
  # session should be closed using the close() method.  This will
  # store the session's state to persistent storage.  If you want
  # to store the session's state to persistent storage without
  # finishing session processing for this request, call the update()
  # method.
  #
  # == Storing session state
  #
  # The caller can specify what form of storage to use for the session's
  # data with the +database_manager+ option to CGI::Session::new.  The
  # following storage classes are provided as part of the standard library:
  #
  # CGI::Session::FileStore:: stores data as plain text in a flat file.  Only
  #                           works with String data.  This is the default
  #                           storage type.
  # CGI::Session::MemoryStore:: stores data in an in-memory hash.  The data
  #                             only persists for as long as the current Ruby
  #                             interpreter instance does.
  # CGI::Session::PStore:: stores data in Marshalled format.  Provided by
  #                        cgi/session/pstore.rb.  Supports data of any type,
  #                        and provides file-locking and transaction support.
  #
  # Custom storage types can also be created by defining a class with
  # the following methods:
  #
  #    new(session, options)
  #    restore  # returns hash of session data.
  #    update
  #    close
  #    delete
  #
  # Changing storage type mid-session does not work.  Note in particular
  # that by default the FileStore and PStore session data files have the
  # same name.  If your application switches from one to the other without
  # making sure that filenames will be different
  # and clients still have old sessions lying around in cookies, then
  # things will break nastily!
  #
  # == Maintaining the session id.
  #
  # Most session state is maintained on the server.  However, a session
  # id must be passed backwards and forwards between client and server
  # to maintain a reference to this session state.
  #
  # The simplest way to do this is via cookies.  The CGI::Session class
  # provides transparent support for session id communication via cookies
  # if the client has cookies enabled.
  #
  # If the client has cookies disabled, the session id must be included
  # as a parameter of all requests sent by the client to the server.  The
  # CGI::Session class in conjunction with the CGI class will transparently
  # add the session id as a hidden input field to all forms generated
  # using the CGI#form() HTML generation method.  No built-in support is
  # provided for other mechanisms, such as URL re-writing.  The caller is
  # responsible for extracting the session id from the session_id
  # attribute and manually encoding it in URLs and adding it as a hidden
  # input to HTML forms created by other mechanisms.  Also, session expiry
  # is not automatically handled.
  #
  # == Examples of use
  #
  # === Setting the user's name
  #
  #   require 'cgi'
  #   require 'cgi/session'
  #   require 'cgi/session/pstore'     # provides CGI::Session::PStore
  #
  #   cgi = CGI.new("html4")
  #
  #   session = CGI::Session.new(cgi,
  #       'database_manager' => CGI::Session::PStore,  # use PStore
  #       'session_key' => '_rb_sess_id',              # custom session key
  #       'session_expires' => Time.now + 30 * 60,     # 30 minute timeout
  #       'prefix' => 'pstore_sid_')                   # PStore option
  #   if cgi.has_key?('user_name') and cgi['user_name'] != ''
  #       # coerce to String: cgi[] returns the
  #       # string-like CGI::QueryExtension::Value
  #       session['user_name'] = cgi['user_name'].to_s
  #   elsif !session['user_name']
  #       session['user_name'] = "guest"
  #   end
  #   session.close
  #
  # === Creating a new session safely
  #
  #   require 'cgi'
  #   require 'cgi/session'
  #
  #   cgi = CGI.new("html4")
  #
  #   # We make sure to delete an old session if one exists,
  #   # not just to free resources, but to prevent the session
  #   # from being maliciously hijacked later on.
  #   begin
  #       session = CGI::Session.new(cgi, 'new_session' => false)
  #       session.delete
  #   rescue ArgumentError  # if no old session
  #   end
  #   session = CGI::Session.new(cgi, 'new_session' => true)
  #   session.close
  #
  class Session

    class NoSession < RuntimeError #:nodoc:
    end

    # The id of this session.
    attr_reader :session_id, :new_session

    def Session::callback(dbman)  #:nodoc:
      Proc.new{
        dbman[0].close unless dbman.empty?
      }
    end

    # Create a new session id.
    #
    # The session id is a secure random number by SecureRandom
    # if possible, otherwise an SHA512 hash based upon the time,
    # a random number, and a constant string.  This routine is
    # used internally for automatically generated session ids.
    def create_new_id
      require 'securerandom'
      begin
        # by OpenSSL, or system provided entropy pool
        session_id = SecureRandom.hex(16)
      rescue NotImplementedError
        # never happens on modern systems
        require 'digest'
        d = Digest('SHA512').new
        now = Time::now
        d.update(now.to_s)
        d.update(String(now.usec))
        d.update(String(rand(0)))
        d.update(String($$))
        d.update('foobar')
        session_id = d.hexdigest[0, 32]
      end
      session_id
    end
    private :create_new_id

    # Create a new CGI::Session object for +request+.
    #
    # +request+ is an instance of the +CGI+ class (see cgi.rb).
    # +option+ is a hash of options for initialising this
    # CGI::Session instance.  The following options are
    # recognised:
    #
    # session_key:: the parameter name used for the session id.
    #               Defaults to '_session_id'.
    # session_id:: the session id to use.  If not provided, then
    #              it is retrieved from the +session_key+ parameter
    #              of the request, or automatically generated for
    #              a new session.
    # new_session:: if true, force creation of a new session.  If not set,
    #               a new session is only created if none currently
    #               exists.  If false, a new session is never created,
    #               and if none currently exists and the +session_id+
    #               option is not set, an ArgumentError is raised.
    # database_manager:: the name of the class providing storage facilities
    #                    for session state persistence.  Built-in support
    #                    is provided for +FileStore+ (the default),
    #                    +MemoryStore+, and +PStore+ (from
    #                    cgi/session/pstore.rb).  See the documentation for
    #                    these classes for more details.
    #
    # The following options are also recognised, but only apply if the
    # session id is stored in a cookie.
    #
    # session_expires:: the time the current session expires, as a
    #                   +Time+ object.  If not set, the session will terminate
    #                   when the user's browser is closed.
    # session_domain:: the hostname domain for which this session is valid.
    #                  If not set, defaults to the hostname of the server.
    # session_secure:: if +true+, this session will only work over HTTPS.
    # session_path:: the path for which this session applies.  Defaults
    #                to the directory of the CGI script.
    #
    # +option+ is also passed on to the session storage class initializer; see
    # the documentation for each session storage class for the options
    # they support.
    #
    # The retrieved or created session is automatically added to +request+
    # as a cookie, and also to its +output_hidden+ table, which is used
    # to add hidden input elements to forms.
    #
    # *WARNING* the +output_hidden+
    # fields are surrounded by a <fieldset> tag in HTML 4 generation, which
    # is _not_ invisible on many browsers; you may wish to disable the
    # use of fieldsets with code similar to the following
    # (see http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-list/37805)
    #
    #   cgi = CGI.new("html4")
    #   class << cgi
    #       undef_method :fieldset
    #   end
    #
    def initialize(request, option={})
      @new_session = false
      session_key = option['session_key'] || '_session_id'
      session_id = option['session_id']
      unless session_id
        if option['new_session']
          session_id = create_new_id
          @new_session = true
        end
      end
      unless session_id
        if request.key?(session_key)
          session_id = request[session_key]
          session_id = session_id.read if session_id.respond_to?(:read)
        end
        unless session_id
          session_id, = request.cookies[session_key]
        end
        unless session_id
          unless option.fetch('new_session', true)
            raise ArgumentError, "session_key `%s' should be supplied"%session_key
          end
          session_id = create_new_id
          @new_session = true
        end
      end
      @session_id = session_id
      dbman = option['database_manager'] || FileStore
      begin
        @dbman = dbman::new(self, option)
      rescue NoSession
        unless option.fetch('new_session', true)
          raise ArgumentError, "invalid session_id `%s'"%session_id
        end
        session_id = @session_id = create_new_id unless session_id
        @new_session=true
        retry
      end
      request.instance_eval do
        @output_hidden = {session_key => session_id} unless option['no_hidden']
        @output_cookies =  [
          Cookie::new("name" => session_key,
          "value" => session_id,
          "expires" => option['session_expires'],
          "domain" => option['session_domain'],
          "secure" => option['session_secure'],
          "path" =>
          if option['session_path']
            option['session_path']
          elsif ENV["SCRIPT_NAME"]
            File::dirname(ENV["SCRIPT_NAME"])
          else
          ""
          end)
        ] unless option['no_cookies']
      end
      @dbprot = [@dbman]
      ObjectSpace::define_finalizer(self, Session::callback(@dbprot))
    end

    # Retrieve the session data for key +key+.
    def [](key)
      @data ||= @dbman.restore
      @data[key]
    end

    # Set the session data for key +key+.
    def []=(key, val)
      @write_lock ||= true
      @data ||= @dbman.restore
      @data[key] = val
    end

    # Store session data on the server.  For some session storage types,
    # this is a no-op.
    def update
      @dbman.update
    end

    # Store session data on the server and close the session storage.
    # For some session storage types, this is a no-op.
    def close
      @dbman.close
      @dbprot.clear
    end

    # Delete the session from storage.  Also closes the storage.
    #
    # Note that the session's data is _not_ automatically deleted
    # upon the session expiring.
    def delete
      @dbman.delete
      @dbprot.clear
    end

    # File-based session storage class.
    #
    # Implements session storage as a flat file of 'key=value' values.
    # This storage type only works directly with String values; the
    # user is responsible for converting other types to Strings when
    # storing and from Strings when retrieving.
    class FileStore
      # Create a new FileStore instance.
      #
      # This constructor is used internally by CGI::Session.  The
      # user does not generally need to call it directly.
      #
      # +session+ is the session for which this instance is being
      # created.  The session id must only contain alphanumeric
      # characters; automatically generated session ids observe
      # this requirement.
      #
      # +option+ is a hash of options for the initializer.  The
      # following options are recognised:
      #
      # tmpdir:: the directory to use for storing the FileStore
      #          file.  Defaults to Dir::tmpdir (generally "/tmp"
      #          on Unix systems).
      # prefix:: the prefix to add to the session id when generating
      #          the filename for this session's FileStore file.
      #          Defaults to "cgi_sid_".
      # suffix:: the prefix to add to the session id when generating
      #          the filename for this session's FileStore file.
      #          Defaults to the empty string.
      #
      # This session's FileStore file will be created if it does
      # not exist, or opened if it does.
      def initialize(session, option={})
        dir = option['tmpdir'] || Dir::tmpdir
        prefix = option['prefix'] || 'cgi_sid_'
        suffix = option['suffix'] || ''
        id = session.session_id
        require 'digest/md5'
        md5 = Digest::MD5.hexdigest(id)[0,16]
        @path = dir+"/"+prefix+md5+suffix
        if File::exist? @path
          @hash = nil
        else
          unless session.new_session
            raise CGI::Session::NoSession, "uninitialized session"
          end
          @hash = {}
        end
      end

      # Restore session state from the session's FileStore file.
      #
      # Returns the session state as a hash.
      def restore
        unless @hash
          @hash = {}
          begin
            lockf = File.open(@path+".lock", "r")
            lockf.flock File::LOCK_SH
            f = File.open(@path, 'r')
            for line in f
              line.chomp!
              k, v = line.split('=',2)
              @hash[CGI.unescape(k)] = Marshal.restore(CGI.unescape(v))
            end
          ensure
            f&.close
            lockf&.close
          end
        end
        @hash
      end

      # Save session state to the session's FileStore file.
      def update
        return unless @hash
        begin
          lockf = File.open(@path+".lock", File::CREAT|File::RDWR, 0600)
          lockf.flock File::LOCK_EX
          f = File.open(@path+".new", File::CREAT|File::TRUNC|File::WRONLY, 0600)
          for k,v in @hash
            f.printf "%s=%s\n", CGI.escape(k), CGI.escape(String(Marshal.dump(v)))
          end
          f.close
          File.rename @path+".new", @path
        ensure
          f&.close
          lockf&.close
        end
      end

      # Update and close the session's FileStore file.
      def close
        update
      end

      # Close and delete the session's FileStore file.
      def delete
        File::unlink @path+".lock" rescue nil
        File::unlink @path+".new" rescue nil
        File::unlink @path rescue nil
      end
    end

    # In-memory session storage class.
    #
    # Implements session storage as a global in-memory hash.  Session
    # data will only persist for as long as the Ruby interpreter
    # instance does.
    class MemoryStore
      GLOBAL_HASH_TABLE = {} #:nodoc:

      # Create a new MemoryStore instance.
      #
      # +session+ is the session this instance is associated with.
      # +option+ is a list of initialisation options.  None are
      # currently recognized.
      def initialize(session, option=nil)
        @session_id = session.session_id
        unless GLOBAL_HASH_TABLE.key?(@session_id)
          unless session.new_session
            raise CGI::Session::NoSession, "uninitialized session"
          end
          GLOBAL_HASH_TABLE[@session_id] = {}
        end
      end

      # Restore session state.
      #
      # Returns session data as a hash.
      def restore
        GLOBAL_HASH_TABLE[@session_id]
      end

      # Update session state.
      #
      # A no-op.
      def update
        # don't need to update; hash is shared
      end

      # Close session storage.
      #
      # A no-op.
      def close
        # don't need to close
      end

      # Delete the session state.
      def delete
        GLOBAL_HASH_TABLE.delete(@session_id)
      end
    end

    # Dummy session storage class.
    #
    # Implements session storage place holder.  No actual storage
    # will be done.
    class NullStore
      # Create a new NullStore instance.
      #
      # +session+ is the session this instance is associated with.
      # +option+ is a list of initialisation options.  None are
      # currently recognised.
      def initialize(session, option=nil)
      end

      # Restore (empty) session state.
      def restore
        {}
      end

      # Update session state.
      #
      # A no-op.
      def update
      end

      # Close session storage.
      #
      # A no-op.
      def close
      end

      # Delete the session state.
      #
      # A no-op.
      def delete
      end
    end
  end
end
PKJH[@��%u%ushare/ruby/cgi/core.rbnu�[���# frozen_string_literal: true
#--
# Methods for generating HTML, parsing CGI-related parameters, and
# generating HTTP responses.
#++
class CGI
  unless const_defined?(:Util)
    module Util
      @@accept_charset = "UTF-8" # :nodoc:
    end
    include Util
    extend Util
  end

  $CGI_ENV = ENV    # for FCGI support

  # String for carriage return
  CR  = "\015"

  # String for linefeed
  LF  = "\012"

  # Standard internet newline sequence
  EOL = CR + LF

  REVISION = '$Id$' #:nodoc:

  # Whether processing will be required in binary vs text
  NEEDS_BINMODE = File::BINARY != 0

  # Path separators in different environments.
  PATH_SEPARATOR = {'UNIX'=>'/', 'WINDOWS'=>'\\', 'MACINTOSH'=>':'}

  # HTTP status codes.
  HTTP_STATUS = {
    "OK"                  => "200 OK",
    "PARTIAL_CONTENT"     => "206 Partial Content",
    "MULTIPLE_CHOICES"    => "300 Multiple Choices",
    "MOVED"               => "301 Moved Permanently",
    "REDIRECT"            => "302 Found",
    "NOT_MODIFIED"        => "304 Not Modified",
    "BAD_REQUEST"         => "400 Bad Request",
    "AUTH_REQUIRED"       => "401 Authorization Required",
    "FORBIDDEN"           => "403 Forbidden",
    "NOT_FOUND"           => "404 Not Found",
    "METHOD_NOT_ALLOWED"  => "405 Method Not Allowed",
    "NOT_ACCEPTABLE"      => "406 Not Acceptable",
    "LENGTH_REQUIRED"     => "411 Length Required",
    "PRECONDITION_FAILED" => "412 Precondition Failed",
    "SERVER_ERROR"        => "500 Internal Server Error",
    "NOT_IMPLEMENTED"     => "501 Method Not Implemented",
    "BAD_GATEWAY"         => "502 Bad Gateway",
    "VARIANT_ALSO_VARIES" => "506 Variant Also Negotiates"
  }

  # :startdoc:

  # Synonym for ENV.
  def env_table
    ENV
  end

  # Synonym for $stdin.
  def stdinput
    $stdin
  end

  # Synonym for $stdout.
  def stdoutput
    $stdout
  end

  private :env_table, :stdinput, :stdoutput

  # Create an HTTP header block as a string.
  #
  # :call-seq:
  #   http_header(content_type_string="text/html")
  #   http_header(headers_hash)
  #
  # Includes the empty line that ends the header block.
  #
  # +content_type_string+::
  #   If this form is used, this string is the <tt>Content-Type</tt>
  # +headers_hash+::
  #   A Hash of header values. The following header keys are recognized:
  #
  #   type:: The Content-Type header.  Defaults to "text/html"
  #   charset:: The charset of the body, appended to the Content-Type header.
  #   nph:: A boolean value.  If true, prepend protocol string and status
  #         code, and date; and sets default values for "server" and
  #         "connection" if not explicitly set.
  #   status::
  #     The HTTP status code as a String, returned as the Status header.  The
  #     values are:
  #
  #     OK:: 200 OK
  #     PARTIAL_CONTENT:: 206 Partial Content
  #     MULTIPLE_CHOICES:: 300 Multiple Choices
  #     MOVED:: 301 Moved Permanently
  #     REDIRECT:: 302 Found
  #     NOT_MODIFIED:: 304 Not Modified
  #     BAD_REQUEST:: 400 Bad Request
  #     AUTH_REQUIRED:: 401 Authorization Required
  #     FORBIDDEN:: 403 Forbidden
  #     NOT_FOUND:: 404 Not Found
  #     METHOD_NOT_ALLOWED:: 405 Method Not Allowed
  #     NOT_ACCEPTABLE:: 406 Not Acceptable
  #     LENGTH_REQUIRED:: 411 Length Required
  #     PRECONDITION_FAILED:: 412 Precondition Failed
  #     SERVER_ERROR:: 500 Internal Server Error
  #     NOT_IMPLEMENTED:: 501 Method Not Implemented
  #     BAD_GATEWAY:: 502 Bad Gateway
  #     VARIANT_ALSO_VARIES:: 506 Variant Also Negotiates
  #
  #   server:: The server software, returned as the Server header.
  #   connection:: The connection type, returned as the Connection header (for
  #                instance, "close".
  #   length:: The length of the content that will be sent, returned as the
  #            Content-Length header.
  #   language:: The language of the content, returned as the Content-Language
  #              header.
  #   expires:: The time on which the current content expires, as a +Time+
  #             object, returned as the Expires header.
  #   cookie::
  #     A cookie or cookies, returned as one or more Set-Cookie headers.  The
  #     value can be the literal string of the cookie; a CGI::Cookie object;
  #     an Array of literal cookie strings or Cookie objects; or a hash all of
  #     whose values are literal cookie strings or Cookie objects.
  #
  #     These cookies are in addition to the cookies held in the
  #     @output_cookies field.
  #
  #   Other headers can also be set; they are appended as key: value.
  #
  # Examples:
  #
  #   http_header
  #     # Content-Type: text/html
  #
  #   http_header("text/plain")
  #     # Content-Type: text/plain
  #
  #   http_header("nph"        => true,
  #               "status"     => "OK",  # == "200 OK"
  #                 # "status"     => "200 GOOD",
  #               "server"     => ENV['SERVER_SOFTWARE'],
  #               "connection" => "close",
  #               "type"       => "text/html",
  #               "charset"    => "iso-2022-jp",
  #                 # Content-Type: text/html; charset=iso-2022-jp
  #               "length"     => 103,
  #               "language"   => "ja",
  #               "expires"    => Time.now + 30,
  #               "cookie"     => [cookie1, cookie2],
  #               "my_header1" => "my_value",
  #               "my_header2" => "my_value")
  #
  # This method does not perform charset conversion.
  def http_header(options='text/html')
    if options.is_a?(String)
      content_type = options
      buf = _header_for_string(content_type)
    elsif options.is_a?(Hash)
      if options.size == 1 && options.has_key?('type')
        content_type = options['type']
        buf = _header_for_string(content_type)
      else
        buf = _header_for_hash(options.dup)
      end
    else
      raise ArgumentError.new("expected String or Hash but got #{options.class}")
    end
    if defined?(MOD_RUBY)
      _header_for_modruby(buf)
      return ''
    else
      buf << EOL    # empty line of separator
      return buf
    end
  end # http_header()

  # This method is an alias for #http_header, when HTML5 tag maker is inactive.
  #
  # NOTE: use #http_header to create HTTP header blocks, this alias is only
  # provided for backwards compatibility.
  #
  # Using #header with the HTML5 tag maker will create a <header> element.
  alias :header :http_header

  def _no_crlf_check(str)
    if str
      str = str.to_s
      raise "A HTTP status or header field must not include CR and LF" if str =~ /[\r\n]/
      str
    else
      nil
    end
  end
  private :_no_crlf_check

  def _header_for_string(content_type) #:nodoc:
    buf = ''.dup
    if nph?()
      buf << "#{_no_crlf_check($CGI_ENV['SERVER_PROTOCOL']) || 'HTTP/1.0'} 200 OK#{EOL}"
      buf << "Date: #{CGI.rfc1123_date(Time.now)}#{EOL}"
      buf << "Server: #{_no_crlf_check($CGI_ENV['SERVER_SOFTWARE'])}#{EOL}"
      buf << "Connection: close#{EOL}"
    end
    buf << "Content-Type: #{_no_crlf_check(content_type)}#{EOL}"
    if @output_cookies
      @output_cookies.each {|cookie| buf << "Set-Cookie: #{_no_crlf_check(cookie)}#{EOL}" }
    end
    return buf
  end # _header_for_string
  private :_header_for_string

  def _header_for_hash(options)  #:nodoc:
    buf = ''.dup
    ## add charset to option['type']
    options['type'] ||= 'text/html'
    charset = options.delete('charset')
    options['type'] += "; charset=#{charset}" if charset
    ## NPH
    options.delete('nph') if defined?(MOD_RUBY)
    if options.delete('nph') || nph?()
      protocol = _no_crlf_check($CGI_ENV['SERVER_PROTOCOL']) || 'HTTP/1.0'
      status = options.delete('status')
      status = HTTP_STATUS[status] || _no_crlf_check(status) || '200 OK'
      buf << "#{protocol} #{status}#{EOL}"
      buf << "Date: #{CGI.rfc1123_date(Time.now)}#{EOL}"
      options['server'] ||= $CGI_ENV['SERVER_SOFTWARE'] || ''
      options['connection'] ||= 'close'
    end
    ## common headers
    status = options.delete('status')
    buf << "Status: #{HTTP_STATUS[status] || _no_crlf_check(status)}#{EOL}" if status
    server = options.delete('server')
    buf << "Server: #{_no_crlf_check(server)}#{EOL}" if server
    connection = options.delete('connection')
    buf << "Connection: #{_no_crlf_check(connection)}#{EOL}" if connection
    type = options.delete('type')
    buf << "Content-Type: #{_no_crlf_check(type)}#{EOL}" #if type
    length = options.delete('length')
    buf << "Content-Length: #{_no_crlf_check(length)}#{EOL}" if length
    language = options.delete('language')
    buf << "Content-Language: #{_no_crlf_check(language)}#{EOL}" if language
    expires = options.delete('expires')
    buf << "Expires: #{CGI.rfc1123_date(expires)}#{EOL}" if expires
    ## cookie
    if cookie = options.delete('cookie')
      case cookie
      when String, Cookie
        buf << "Set-Cookie: #{_no_crlf_check(cookie)}#{EOL}"
      when Array
        arr = cookie
        arr.each {|c| buf << "Set-Cookie: #{_no_crlf_check(c)}#{EOL}" }
      when Hash
        hash = cookie
        hash.each_value {|c| buf << "Set-Cookie: #{_no_crlf_check(c)}#{EOL}" }
      end
    end
    if @output_cookies
      @output_cookies.each {|c| buf << "Set-Cookie: #{_no_crlf_check(c)}#{EOL}" }
    end
    ## other headers
    options.each do |key, value|
      buf << "#{_no_crlf_check(key)}: #{_no_crlf_check(value)}#{EOL}"
    end
    return buf
  end # _header_for_hash
  private :_header_for_hash

  def nph?  #:nodoc:
    return /IIS\/(\d+)/ =~ $CGI_ENV['SERVER_SOFTWARE'] && $1.to_i < 5
  end

  def _header_for_modruby(buf)  #:nodoc:
    request = Apache::request
    buf.scan(/([^:]+): (.+)#{EOL}/o) do |name, value|
      $stderr.printf("name:%s value:%s\n", name, value) if $DEBUG
      case name
      when 'Set-Cookie'
        request.headers_out.add(name, value)
      when /^status$/i
        request.status_line = value
        request.status = value.to_i
      when /^content-type$/i
        request.content_type = value
      when /^content-encoding$/i
        request.content_encoding = value
      when /^location$/i
        request.status = 302 if request.status == 200
        request.headers_out[name] = value
      else
        request.headers_out[name] = value
      end
    end
    request.send_http_header
    return ''
  end
  private :_header_for_modruby

  # Print an HTTP header and body to $DEFAULT_OUTPUT ($>)
  #
  # :call-seq:
  #   cgi.out(content_type_string='text/html')
  #   cgi.out(headers_hash)
  #
  # +content_type_string+::
  #   If a string is passed, it is assumed to be the content type.
  # +headers_hash+::
  #   This is a Hash of headers, similar to that used by #http_header.
  # +block+::
  #   A block is required and should evaluate to the body of the response.
  #
  # <tt>Content-Length</tt> is automatically calculated from the size of
  # the String returned by the content block.
  #
  # If <tt>ENV['REQUEST_METHOD'] == "HEAD"</tt>, then only the header
  # is output (the content block is still required, but it is ignored).
  #
  # If the charset is "iso-2022-jp" or "euc-jp" or "shift_jis" then the
  # content is converted to this charset, and the language is set to "ja".
  #
  # Example:
  #
  #   cgi = CGI.new
  #   cgi.out{ "string" }
  #     # Content-Type: text/html
  #     # Content-Length: 6
  #     #
  #     # string
  #
  #   cgi.out("text/plain") { "string" }
  #     # Content-Type: text/plain
  #     # Content-Length: 6
  #     #
  #     # string
  #
  #   cgi.out("nph"        => true,
  #           "status"     => "OK",  # == "200 OK"
  #           "server"     => ENV['SERVER_SOFTWARE'],
  #           "connection" => "close",
  #           "type"       => "text/html",
  #           "charset"    => "iso-2022-jp",
  #             # Content-Type: text/html; charset=iso-2022-jp
  #           "language"   => "ja",
  #           "expires"    => Time.now + (3600 * 24 * 30),
  #           "cookie"     => [cookie1, cookie2],
  #           "my_header1" => "my_value",
  #           "my_header2" => "my_value") { "string" }
  #      # HTTP/1.1 200 OK
  #      # Date: Sun, 15 May 2011 17:35:54 GMT
  #      # Server: Apache 2.2.0
  #      # Connection: close
  #      # Content-Type: text/html; charset=iso-2022-jp
  #      # Content-Length: 6
  #      # Content-Language: ja
  #      # Expires: Tue, 14 Jun 2011 17:35:54 GMT
  #      # Set-Cookie: foo
  #      # Set-Cookie: bar
  #      # my_header1: my_value
  #      # my_header2: my_value
  #      #
  #      # string
  def out(options = "text/html") # :yield:

    options = { "type" => options } if options.kind_of?(String)
    content = yield
    options["length"] = content.bytesize.to_s
    output = stdoutput
    output.binmode if defined? output.binmode
    output.print http_header(options)
    output.print content unless "HEAD" == env_table['REQUEST_METHOD']
  end


  # Print an argument or list of arguments to the default output stream
  #
  #   cgi = CGI.new
  #   cgi.print    # default:  cgi.print == $DEFAULT_OUTPUT.print
  def print(*options)
    stdoutput.print(*options)
  end

  # Parse an HTTP query string into a hash of key=>value pairs.
  #
  #   params = CGI.parse("query_string")
  #     # {"name1" => ["value1", "value2", ...],
  #     #  "name2" => ["value1", "value2", ...], ... }
  #
  def self.parse(query)
    params = {}
    query.split(/[&;]/).each do |pairs|
      key, value = pairs.split('=',2).collect{|v| CGI.unescape(v) }

      next unless key

      params[key] ||= []
      params[key].push(value) if value
    end

    params.default=[].freeze
    params
  end

  # Maximum content length of post data
  ##MAX_CONTENT_LENGTH  = 2 * 1024 * 1024

  # Maximum number of request parameters when multipart
  MAX_MULTIPART_COUNT = 128

  # Mixin module that provides the following:
  #
  # 1. Access to the CGI environment variables as methods.  See
  #    documentation to the CGI class for a list of these variables.  The
  #    methods are exposed by removing the leading +HTTP_+ (if it exists) and
  #    downcasing the name.  For example, +auth_type+ will return the
  #    environment variable +AUTH_TYPE+, and +accept+ will return the value
  #    for +HTTP_ACCEPT+.
  #
  # 2. Access to cookies, including the cookies attribute.
  #
  # 3. Access to parameters, including the params attribute, and overloading
  #    #[] to perform parameter value lookup by key.
  #
  # 4. The initialize_query method, for initializing the above
  #    mechanisms, handling multipart forms, and allowing the
  #    class to be used in "offline" mode.
  #
  module QueryExtension

    %w[ CONTENT_LENGTH SERVER_PORT ].each do |env|
      define_method(env.delete_prefix('HTTP_').downcase) do
        (val = env_table[env]) && Integer(val)
      end
    end

    %w[ AUTH_TYPE CONTENT_TYPE GATEWAY_INTERFACE PATH_INFO
        PATH_TRANSLATED QUERY_STRING REMOTE_ADDR REMOTE_HOST
        REMOTE_IDENT REMOTE_USER REQUEST_METHOD SCRIPT_NAME
        SERVER_NAME SERVER_PROTOCOL SERVER_SOFTWARE

        HTTP_ACCEPT HTTP_ACCEPT_CHARSET HTTP_ACCEPT_ENCODING
        HTTP_ACCEPT_LANGUAGE HTTP_CACHE_CONTROL HTTP_FROM HTTP_HOST
        HTTP_NEGOTIATE HTTP_PRAGMA HTTP_REFERER HTTP_USER_AGENT ].each do |env|
      define_method(env.delete_prefix('HTTP_').downcase) do
        env_table[env]
      end
    end

    # Get the raw cookies as a string.
    def raw_cookie
      env_table["HTTP_COOKIE"]
    end

    # Get the raw RFC2965 cookies as a string.
    def raw_cookie2
      env_table["HTTP_COOKIE2"]
    end

    # Get the cookies as a hash of cookie-name=>Cookie pairs.
    attr_accessor :cookies

    # Get the parameters as a hash of name=>values pairs, where
    # values is an Array.
    attr_reader :params

    # Get the uploaded files as a hash of name=>values pairs
    attr_reader :files

    # Set all the parameters.
    def params=(hash)
      @params.clear
      @params.update(hash)
    end

    ##
    # Parses multipart form elements according to
    #   http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2
    #
    # Returns a hash of multipart form parameters with bodies of type StringIO or
    # Tempfile depending on whether the multipart form element exceeds 10 KB
    #
    #   params[name => body]
    #
    def read_multipart(boundary, content_length)
      ## read first boundary
      stdin = stdinput
      first_line = "--#{boundary}#{EOL}"
      content_length -= first_line.bytesize
      status = stdin.read(first_line.bytesize)
      raise EOFError.new("no content body")  unless status
      raise EOFError.new("bad content body") unless first_line == status
      ## parse and set params
      params = {}
      @files = {}
      boundary_rexp = /--#{Regexp.quote(boundary)}(#{EOL}|--)/
      boundary_size = "#{EOL}--#{boundary}#{EOL}".bytesize
      buf = ''.dup
      bufsize = 10 * 1024
      max_count = MAX_MULTIPART_COUNT
      n = 0
      tempfiles = []
      while true
        (n += 1) < max_count or raise StandardError.new("too many parameters.")
        ## create body (StringIO or Tempfile)
        body = create_body(bufsize < content_length)
        tempfiles << body if defined?(Tempfile) && body.kind_of?(Tempfile)
        class << body
          if method_defined?(:path)
            alias local_path path
          else
            def local_path
              nil
            end
          end
          attr_reader :original_filename, :content_type
        end
        ## find head and boundary
        head = nil
        separator = EOL * 2
        until head && matched = boundary_rexp.match(buf)
          if !head && pos = buf.index(separator)
            len  = pos + EOL.bytesize
            head = buf[0, len]
            buf  = buf[(pos+separator.bytesize)..-1]
          else
            if head && buf.size > boundary_size
              len = buf.size - boundary_size
              body.print(buf[0, len])
              buf[0, len] = ''
            end
            c = stdin.read(bufsize < content_length ? bufsize : content_length)
            raise EOFError.new("bad content body") if c.nil? || c.empty?
            buf << c
            content_length -= c.bytesize
          end
        end
        ## read to end of boundary
        m = matched
        len = m.begin(0)
        s = buf[0, len]
        if s =~ /(\r?\n)\z/
          s = buf[0, len - $1.bytesize]
        end
        body.print(s)
        buf = buf[m.end(0)..-1]
        boundary_end = m[1]
        content_length = -1 if boundary_end == '--'
        ## reset file cursor position
        body.rewind
        ## original filename
        /Content-Disposition:.* filename=(?:"(.*?)"|([^;\r\n]*))/i.match(head)
        filename = $1 || $2 || ''.dup
        filename = CGI.unescape(filename) if unescape_filename?()
        body.instance_variable_set(:@original_filename, filename)
        ## content type
        /Content-Type: (.*)/i.match(head)
        (content_type = $1 || ''.dup).chomp!
        body.instance_variable_set(:@content_type, content_type)
        ## query parameter name
        /Content-Disposition:.* name=(?:"(.*?)"|([^;\r\n]*))/i.match(head)
        name = $1 || $2 || ''
        if body.original_filename.empty?
          value=body.read.dup.force_encoding(@accept_charset)
          body.close! if defined?(Tempfile) && body.kind_of?(Tempfile)
          (params[name] ||= []) << value
          unless value.valid_encoding?
            if @accept_charset_error_block
              @accept_charset_error_block.call(name,value)
            else
              raise InvalidEncoding,"Accept-Charset encoding error"
            end
          end
          class << params[name].last;self;end.class_eval do
            define_method(:read){self}
            define_method(:original_filename){""}
            define_method(:content_type){""}
          end
        else
          (params[name] ||= []) << body
          @files[name]=body
        end
        ## break loop
        break if content_length == -1
      end
      raise EOFError, "bad boundary end of body part" unless boundary_end =~ /--/
      params.default = []
      params
    rescue Exception
      if tempfiles
        tempfiles.each {|t|
          if t.path
            t.close!
          end
        }
      end
      raise
    end # read_multipart
    private :read_multipart
    def create_body(is_large)  #:nodoc:
      if is_large
        require 'tempfile'
        body = Tempfile.new('CGI', encoding: Encoding::ASCII_8BIT)
      else
        begin
          require 'stringio'
          body = StringIO.new("".b)
        rescue LoadError
          require 'tempfile'
          body = Tempfile.new('CGI', encoding: Encoding::ASCII_8BIT)
        end
      end
      body.binmode if defined? body.binmode
      return body
    end
    def unescape_filename?  #:nodoc:
      user_agent = $CGI_ENV['HTTP_USER_AGENT']
      return false unless user_agent
      return /Mac/i.match(user_agent) && /Mozilla/i.match(user_agent) && !/MSIE/i.match(user_agent)
    end

    # offline mode. read name=value pairs on standard input.
    def read_from_cmdline
      require "shellwords"

      string = unless ARGV.empty?
        ARGV.join(' ')
      else
        if STDIN.tty?
          STDERR.print(
            %|(offline mode: enter name=value pairs on standard input)\n|
          )
        end
        array = readlines rescue nil
        if not array.nil?
            array.join(' ').gsub(/\n/n, '')
        else
            ""
        end
      end.gsub(/\\=/n, '%3D').gsub(/\\&/n, '%26')

      words = Shellwords.shellwords(string)

      if words.find{|x| /=/n.match(x) }
        words.join('&')
      else
        words.join('+')
      end
    end
    private :read_from_cmdline

    # A wrapper class to use a StringIO object as the body and switch
    # to a TempFile when the passed threshold is passed.
    # Initialize the data from the query.
    #
    # Handles multipart forms (in particular, forms that involve file uploads).
    # Reads query parameters in the @params field, and cookies into @cookies.
    def initialize_query()
      if ("POST" == env_table['REQUEST_METHOD']) and
        %r|\Amultipart/form-data.*boundary=\"?([^\";,]+)\"?| =~ env_table['CONTENT_TYPE']
        current_max_multipart_length = @max_multipart_length.respond_to?(:call) ? @max_multipart_length.call : @max_multipart_length
        raise StandardError.new("too large multipart data.") if env_table['CONTENT_LENGTH'].to_i > current_max_multipart_length
        boundary = $1.dup
        @multipart = true
        @params = read_multipart(boundary, Integer(env_table['CONTENT_LENGTH']))
      else
        @multipart = false
        @params = CGI.parse(
                    case env_table['REQUEST_METHOD']
                    when "GET", "HEAD"
                      if defined?(MOD_RUBY)
                        Apache::request.args or ""
                      else
                        env_table['QUERY_STRING'] or ""
                      end
                    when "POST"
                      stdinput.binmode if defined? stdinput.binmode
                      stdinput.read(Integer(env_table['CONTENT_LENGTH'])) or ''
                    else
                      read_from_cmdline
                    end.dup.force_encoding(@accept_charset)
                  )
        unless Encoding.find(@accept_charset) == Encoding::ASCII_8BIT
          @params.each do |key,values|
            values.each do |value|
              unless value.valid_encoding?
                if @accept_charset_error_block
                  @accept_charset_error_block.call(key,value)
                else
                  raise InvalidEncoding,"Accept-Charset encoding error"
                end
              end
            end
          end
        end
      end

      @cookies = CGI::Cookie.parse((env_table['HTTP_COOKIE'] or env_table['COOKIE']))
    end
    private :initialize_query

    # Returns whether the form contained multipart/form-data
    def multipart?
      @multipart
    end

    # Get the value for the parameter with a given key.
    #
    # If the parameter has multiple values, only the first will be
    # retrieved; use #params to get the array of values.
    def [](key)
      params = @params[key]
      return '' unless params
      value = params[0]
      if @multipart
        if value
          return value
        elsif defined? StringIO
          StringIO.new("".b)
        else
          Tempfile.new("CGI",encoding: Encoding::ASCII_8BIT)
        end
      else
        str = if value then value.dup else "" end
        str
      end
    end

    # Return all query parameter names as an array of String.
    def keys(*args)
      @params.keys(*args)
    end

    # Returns true if a given query string parameter exists.
    def has_key?(*args)
      @params.has_key?(*args)
    end
    alias key? has_key?
    alias include? has_key?

  end # QueryExtension

  # Exception raised when there is an invalid encoding detected
  class InvalidEncoding < Exception; end

  # @@accept_charset is default accept character set.
  # This default value default is "UTF-8"
  # If you want to change the default accept character set
  # when create a new CGI instance, set this:
  #
  #   CGI.accept_charset = "EUC-JP"
  #
  @@accept_charset="UTF-8" if false # needed for rdoc?

  # Return the accept character set for all new CGI instances.
  def self.accept_charset
    @@accept_charset
  end

  # Set the accept character set for all new CGI instances.
  def self.accept_charset=(accept_charset)
    @@accept_charset=accept_charset
  end

  # Return the accept character set for this CGI instance.
  attr_reader :accept_charset

  # @@max_multipart_length is the maximum length of multipart data.
  # The default value is 128 * 1024 * 1024 bytes
  #
  # The default can be set to something else in the CGI constructor,
  # via the :max_multipart_length key in the option hash.
  #
  # See CGI.new documentation.
  #
  @@max_multipart_length= 128 * 1024 * 1024

  # Create a new CGI instance.
  #
  # :call-seq:
  #   CGI.new(tag_maker) { block }
  #   CGI.new(options_hash = {}) { block }
  #
  #
  # <tt>tag_maker</tt>::
  #   This is the same as using the +options_hash+ form with the value <tt>{
  #   :tag_maker => tag_maker }</tt> Note that it is recommended to use the
  #   +options_hash+ form, since it also allows you specify the charset you
  #   will accept.
  # <tt>options_hash</tt>::
  #   A Hash that recognizes three options:
  #
  #   <tt>:accept_charset</tt>::
  #     specifies encoding of received query string.  If omitted,
  #     <tt>@@accept_charset</tt> is used.  If the encoding is not valid, a
  #     CGI::InvalidEncoding will be raised.
  #
  #     Example. Suppose <tt>@@accept_charset</tt> is "UTF-8"
  #
  #     when not specified:
  #
  #         cgi=CGI.new      # @accept_charset # => "UTF-8"
  #
  #     when specified as "EUC-JP":
  #
  #         cgi=CGI.new(:accept_charset => "EUC-JP") # => "EUC-JP"
  #
  #   <tt>:tag_maker</tt>::
  #     String that specifies which version of the HTML generation methods to
  #     use.  If not specified, no HTML generation methods will be loaded.
  #
  #     The following values are supported:
  #
  #     "html3":: HTML 3.x
  #     "html4":: HTML 4.0
  #     "html4Tr":: HTML 4.0 Transitional
  #     "html4Fr":: HTML 4.0 with Framesets
  #     "html5":: HTML 5
  #
  #   <tt>:max_multipart_length</tt>::
  #     Specifies maximum length of multipart data. Can be an Integer scalar or
  #     a lambda, that will be evaluated when the request is parsed. This
  #     allows more complex logic to be set when determining whether to accept
  #     multipart data (e.g. consult a registered users upload allowance)
  #
  #     Default is 128 * 1024 * 1024 bytes
  #
  #         cgi=CGI.new(:max_multipart_length => 268435456) # simple scalar
  #
  #         cgi=CGI.new(:max_multipart_length => -> {check_filesystem}) # lambda
  #
  # <tt>block</tt>::
  #   If provided, the block is called when an invalid encoding is
  #   encountered. For example:
  #
  #     encoding_errors={}
  #     cgi=CGI.new(:accept_charset=>"EUC-JP") do |name,value|
  #       encoding_errors[name] = value
  #     end
  #
  # Finally, if the CGI object is not created in a standard CGI call
  # environment (that is, it can't locate REQUEST_METHOD in its environment),
  # then it will run in "offline" mode.  In this mode, it reads its parameters
  # from the command line or (failing that) from standard input.  Otherwise,
  # cookies and other parameters are parsed automatically from the standard
  # CGI locations, which varies according to the REQUEST_METHOD.
  def initialize(options = {}, &block) # :yields: name, value
    @accept_charset_error_block = block_given? ? block : nil
    @options={
      :accept_charset=>@@accept_charset,
      :max_multipart_length=>@@max_multipart_length
    }
    case options
    when Hash
      @options.merge!(options)
    when String
      @options[:tag_maker]=options
    end
    @accept_charset=@options[:accept_charset]
    @max_multipart_length=@options[:max_multipart_length]
    if defined?(MOD_RUBY) && !ENV.key?("GATEWAY_INTERFACE")
      Apache.request.setup_cgi_env
    end

    extend QueryExtension
    @multipart = false

    initialize_query()  # set @params, @cookies
    @output_cookies = nil
    @output_hidden = nil

    case @options[:tag_maker]
    when "html3"
      require_relative 'html'
      extend Html3
      extend HtmlExtension
    when "html4"
      require_relative 'html'
      extend Html4
      extend HtmlExtension
    when "html4Tr"
      require_relative 'html'
      extend Html4Tr
      extend HtmlExtension
    when "html4Fr"
      require_relative 'html'
      extend Html4Tr
      extend Html4Fr
      extend HtmlExtension
    when "html5"
      require_relative 'html'
      extend Html5
      extend HtmlExtension
    end
  end

end   # class CGI
PKJH[��|�� share/ruby/cgi/session/pstore.rbnu�[���# frozen_string_literal: true
#
# cgi/session/pstore.rb - persistent storage of marshalled session data
#
# Documentation: William Webber (william@williamwebber.com)
#
# == Overview
#
# This file provides the CGI::Session::PStore class, which builds
# persistent of session data on top of the pstore library.  See
# cgi/session.rb for more details on session storage managers.

require_relative '../session'
require 'pstore'

class CGI
  class Session
    # PStore-based session storage class.
    #
    # This builds upon the top-level PStore class provided by the
    # library file pstore.rb.  Session data is marshalled and stored
    # in a file.  File locking and transaction services are provided.
    class PStore
      # Create a new CGI::Session::PStore instance
      #
      # This constructor is used internally by CGI::Session.  The
      # user does not generally need to call it directly.
      #
      # +session+ is the session for which this instance is being
      # created.  The session id must only contain alphanumeric
      # characters; automatically generated session ids observe
      # this requirement.
      #
      # +option+ is a hash of options for the initializer.  The
      # following options are recognised:
      #
      # tmpdir:: the directory to use for storing the PStore
      #          file.  Defaults to Dir::tmpdir (generally "/tmp"
      #          on Unix systems).
      # prefix:: the prefix to add to the session id when generating
      #          the filename for this session's PStore file.
      #          Defaults to the empty string.
      #
      # This session's PStore file will be created if it does
      # not exist, or opened if it does.
      def initialize(session, option={})
        dir = option['tmpdir'] || Dir::tmpdir
        prefix = option['prefix'] || ''
        id = session.session_id
        require 'digest/md5'
        md5 = Digest::MD5.hexdigest(id)[0,16]
        path = dir+"/"+prefix+md5
        if File::exist?(path)
          @hash = nil
        else
          unless session.new_session
            raise CGI::Session::NoSession, "uninitialized session"
          end
          @hash = {}
        end
        @p = ::PStore.new(path)
        @p.transaction do |p|
          File.chmod(0600, p.path)
        end
      end

      # Restore session state from the session's PStore file.
      #
      # Returns the session state as a hash.
      def restore
        unless @hash
          @p.transaction do
            @hash = @p['hash'] || {}
          end
        end
        @hash
      end

      # Save session state to the session's PStore file.
      def update
        @p.transaction do
          @p['hash'] = @hash
        end
      end

      # Update and close the session's PStore file.
      def close
        update
      end

      # Close and delete the session's PStore file.
      def delete
        path = @p.path
        File::unlink path
      end

    end
  end
end
# :enddoc:
PKJH[r�U*$$share/ruby/cgi/version.rbnu�[���class CGI
  VERSION = "0.1.0.2"
end
PKJH[�%C��share/ruby/cgi/util.rbnu�[���# frozen_string_literal: true
class CGI
  module Util; end
  include Util
  extend Util
end
module CGI::Util
  @@accept_charset="UTF-8" unless defined?(@@accept_charset)
  # URL-encode a string.
  #   url_encoded_string = CGI.escape("'Stop!' said Fred")
  #      # => "%27Stop%21%27+said+Fred"
  def escape(string)
    encoding = string.encoding
    string.b.gsub(/([^ a-zA-Z0-9_.\-~]+)/) do |m|
      '%' + m.unpack('H2' * m.bytesize).join('%').upcase
    end.tr(' ', '+').force_encoding(encoding)
  end

  # URL-decode a string with encoding(optional).
  #   string = CGI.unescape("%27Stop%21%27+said+Fred")
  #      # => "'Stop!' said Fred"
  def unescape(string,encoding=@@accept_charset)
    str=string.tr('+', ' ').b.gsub(/((?:%[0-9a-fA-F]{2})+)/) do |m|
      [m.delete('%')].pack('H*')
    end.force_encoding(encoding)
    str.valid_encoding? ? str : str.force_encoding(string.encoding)
  end

  # The set of special characters and their escaped values
  TABLE_FOR_ESCAPE_HTML__ = {
    "'" => '&#39;',
    '&' => '&amp;',
    '"' => '&quot;',
    '<' => '&lt;',
    '>' => '&gt;',
  }

  # Escape special characters in HTML, namely '&\"<>
  #   CGI.escapeHTML('Usage: foo "bar" <baz>')
  #      # => "Usage: foo &quot;bar&quot; &lt;baz&gt;"
  def escapeHTML(string)
    enc = string.encoding
    unless enc.ascii_compatible?
      if enc.dummy?
        origenc = enc
        enc = Encoding::Converter.asciicompat_encoding(enc)
        string = enc ? string.encode(enc) : string.b
      end
      table = Hash[TABLE_FOR_ESCAPE_HTML__.map {|pair|pair.map {|s|s.encode(enc)}}]
      string = string.gsub(/#{"['&\"<>]".encode(enc)}/, table)
      string.encode!(origenc) if origenc
      return string
    end
    string.gsub(/['&\"<>]/, TABLE_FOR_ESCAPE_HTML__)
  end

  begin
    require 'cgi/escape'
  rescue LoadError
  end

  # Unescape a string that has been HTML-escaped
  #   CGI.unescapeHTML("Usage: foo &quot;bar&quot; &lt;baz&gt;")
  #      # => "Usage: foo \"bar\" <baz>"
  def unescapeHTML(string)
    enc = string.encoding
    unless enc.ascii_compatible?
      if enc.dummy?
        origenc = enc
        enc = Encoding::Converter.asciicompat_encoding(enc)
        string = enc ? string.encode(enc) : string.b
      end
      string = string.gsub(Regexp.new('&(apos|amp|quot|gt|lt|#[0-9]+|#x[0-9A-Fa-f]+);'.encode(enc))) do
        case $1.encode(Encoding::US_ASCII)
        when 'apos'                then "'".encode(enc)
        when 'amp'                 then '&'.encode(enc)
        when 'quot'                then '"'.encode(enc)
        when 'gt'                  then '>'.encode(enc)
        when 'lt'                  then '<'.encode(enc)
        when /\A#0*(\d+)\z/        then $1.to_i.chr(enc)
        when /\A#x([0-9a-f]+)\z/i  then $1.hex.chr(enc)
        end
      end
      string.encode!(origenc) if origenc
      return string
    end
    return string unless string.include? '&'
    charlimit = case enc
                when Encoding::UTF_8; 0x10ffff
                when Encoding::ISO_8859_1; 256
                else 128
                end
    string.gsub(/&(apos|amp|quot|gt|lt|\#[0-9]+|\#[xX][0-9A-Fa-f]+);/) do
      match = $1.dup
      case match
      when 'apos'                then "'"
      when 'amp'                 then '&'
      when 'quot'                then '"'
      when 'gt'                  then '>'
      when 'lt'                  then '<'
      when /\A#0*(\d+)\z/
        n = $1.to_i
        if n < charlimit
          n.chr(enc)
        else
          "&##{$1};"
        end
      when /\A#x([0-9a-f]+)\z/i
        n = $1.hex
        if n < charlimit
          n.chr(enc)
        else
          "&#x#{$1};"
        end
      else
        "&#{match};"
      end
    end
  end

  # Synonym for CGI.escapeHTML(str)
  alias escape_html escapeHTML

  # Synonym for CGI.unescapeHTML(str)
  alias unescape_html unescapeHTML

  # Escape only the tags of certain HTML elements in +string+.
  #
  # Takes an element or elements or array of elements.  Each element
  # is specified by the name of the element, without angle brackets.
  # This matches both the start and the end tag of that element.
  # The attribute list of the open tag will also be escaped (for
  # instance, the double-quotes surrounding attribute values).
  #
  #   print CGI.escapeElement('<BR><A HREF="url"></A>', "A", "IMG")
  #     # "<BR>&lt;A HREF=&quot;url&quot;&gt;&lt;/A&gt"
  #
  #   print CGI.escapeElement('<BR><A HREF="url"></A>', ["A", "IMG"])
  #     # "<BR>&lt;A HREF=&quot;url&quot;&gt;&lt;/A&gt"
  def escapeElement(string, *elements)
    elements = elements[0] if elements[0].kind_of?(Array)
    unless elements.empty?
      string.gsub(/<\/?(?:#{elements.join("|")})(?!\w)(?:.|\n)*?>/i) do
        CGI.escapeHTML($&)
      end
    else
      string
    end
  end

  # Undo escaping such as that done by CGI.escapeElement()
  #
  #   print CGI.unescapeElement(
  #           CGI.escapeHTML('<BR><A HREF="url"></A>'), "A", "IMG")
  #     # "&lt;BR&gt;<A HREF="url"></A>"
  #
  #   print CGI.unescapeElement(
  #           CGI.escapeHTML('<BR><A HREF="url"></A>'), ["A", "IMG"])
  #     # "&lt;BR&gt;<A HREF="url"></A>"
  def unescapeElement(string, *elements)
    elements = elements[0] if elements[0].kind_of?(Array)
    unless elements.empty?
      string.gsub(/&lt;\/?(?:#{elements.join("|")})(?!\w)(?:.|\n)*?&gt;/i) do
        unescapeHTML($&)
      end
    else
      string
    end
  end

  # Synonym for CGI.escapeElement(str)
  alias escape_element escapeElement

  # Synonym for CGI.unescapeElement(str)
  alias unescape_element unescapeElement

  # Abbreviated day-of-week names specified by RFC 822
  RFC822_DAYS = %w[ Sun Mon Tue Wed Thu Fri Sat ]

  # Abbreviated month names specified by RFC 822
  RFC822_MONTHS = %w[ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ]

  # Format a +Time+ object as a String using the format specified by RFC 1123.
  #
  #   CGI.rfc1123_date(Time.now)
  #     # Sat, 01 Jan 2000 00:00:00 GMT
  def rfc1123_date(time)
    t = time.clone.gmtime
    return format("%s, %.2d %s %.4d %.2d:%.2d:%.2d GMT",
                  RFC822_DAYS[t.wday], t.day, RFC822_MONTHS[t.month-1], t.year,
                  t.hour, t.min, t.sec)
  end

  # Prettify (indent) an HTML string.
  #
  # +string+ is the HTML string to indent.  +shift+ is the indentation
  # unit to use; it defaults to two spaces.
  #
  #   print CGI.pretty("<HTML><BODY></BODY></HTML>")
  #     # <HTML>
  #     #   <BODY>
  #     #   </BODY>
  #     # </HTML>
  #
  #   print CGI.pretty("<HTML><BODY></BODY></HTML>", "\t")
  #     # <HTML>
  #     #         <BODY>
  #     #         </BODY>
  #     # </HTML>
  #
  def pretty(string, shift = "  ")
    lines = string.gsub(/(?!\A)<.*?>/m, "\n\\0").gsub(/<.*?>(?!\n)/m, "\\0\n")
    end_pos = 0
    while end_pos = lines.index(/^<\/(\w+)/, end_pos)
      element = $1.dup
      start_pos = lines.rindex(/^\s*<#{element}/i, end_pos)
      lines[start_pos ... end_pos] = "__" + lines[start_pos ... end_pos].gsub(/\n(?!\z)/, "\n" + shift) + "__"
    end
    lines.gsub(/^((?:#{Regexp::quote(shift)})*)__(?=<\/?\w)/, '\1')
  end

  alias h escapeHTML
end
PKJH[(F�EEshare/ruby/cgi/cookie.rbnu�[���# frozen_string_literal: true
require_relative 'util'
class CGI
  # Class representing an HTTP cookie.
  #
  # In addition to its specific fields and methods, a Cookie instance
  # is a delegator to the array of its values.
  #
  # See RFC 2965.
  #
  # == Examples of use
  #   cookie1 = CGI::Cookie.new("name", "value1", "value2", ...)
  #   cookie1 = CGI::Cookie.new("name" => "name", "value" => "value")
  #   cookie1 = CGI::Cookie.new('name'     => 'name',
  #                             'value'    => ['value1', 'value2', ...],
  #                             'path'     => 'path',   # optional
  #                             'domain'   => 'domain', # optional
  #                             'expires'  => Time.now, # optional
  #                             'secure'   => true,     # optional
  #                             'httponly' => true      # optional
  #                             )
  #
  #   cgi.out("cookie" => [cookie1, cookie2]) { "string" }
  #
  #   name     = cookie1.name
  #   values   = cookie1.value
  #   path     = cookie1.path
  #   domain   = cookie1.domain
  #   expires  = cookie1.expires
  #   secure   = cookie1.secure
  #   httponly = cookie1.httponly
  #
  #   cookie1.name     = 'name'
  #   cookie1.value    = ['value1', 'value2', ...]
  #   cookie1.path     = 'path'
  #   cookie1.domain   = 'domain'
  #   cookie1.expires  = Time.now + 30
  #   cookie1.secure   = true
  #   cookie1.httponly = true
  class Cookie < Array
    @@accept_charset="UTF-8" unless defined?(@@accept_charset)

    TOKEN_RE = %r"\A[[!-~]&&[^()<>@,;:\\\"/?=\[\]{}]]+\z"
    PATH_VALUE_RE = %r"\A[[ -~]&&[^;]]*\z"
    DOMAIN_VALUE_RE = %r"\A(?<label>(?!-)[-A-Za-z0-9]+(?<!-))(?:\.\g<label>)*\z"

    # Create a new CGI::Cookie object.
    #
    # :call-seq:
    #   Cookie.new(name_string,*value)
    #   Cookie.new(options_hash)
    #
    # +name_string+::
    #   The name of the cookie; in this form, there is no #domain or
    #   #expiration.  The #path is gleaned from the +SCRIPT_NAME+ environment
    #   variable, and #secure is false.
    # <tt>*value</tt>::
    #   value or list of values of the cookie
    # +options_hash+::
    #   A Hash of options to initialize this Cookie.  Possible options are:
    #
    #   name:: the name of the cookie.  Required.
    #   value:: the cookie's value or list of values.
    #   path:: the path for which this cookie applies.  Defaults to
    #          the value of the +SCRIPT_NAME+ environment variable.
    #   domain:: the domain for which this cookie applies.
    #   expires:: the time at which this cookie expires, as a +Time+ object.
    #   secure:: whether this cookie is a secure cookie or not (default to
    #            false).  Secure cookies are only transmitted to HTTPS
    #            servers.
    #   httponly:: whether this cookie is a HttpOnly cookie or not (default to
    #            false).  HttpOnly cookies are not available to javascript.
    #
    #   These keywords correspond to attributes of the cookie object.
    def initialize(name = "", *value)
      @domain = nil
      @expires = nil
      if name.kind_of?(String)
        self.name = name
        self.path = (%r|\A(.*/)| =~ ENV["SCRIPT_NAME"] ? $1 : "")
        @secure = false
        @httponly = false
        return super(value)
      end

      options = name
      unless options.has_key?("name")
        raise ArgumentError, "`name' required"
      end

      self.name = options["name"]
      value = Array(options["value"])
      # simple support for IE
      self.path = options["path"] || (%r|\A(.*/)| =~ ENV["SCRIPT_NAME"] ? $1 : "")
      self.domain = options["domain"]
      @expires = options["expires"]
      @secure = options["secure"] == true
      @httponly = options["httponly"] == true

      super(value)
    end

    # Name of this cookie, as a +String+
    attr_reader :name
    # Set name of this cookie
    def name=(str)
      if str and !TOKEN_RE.match?(str)
        raise ArgumentError, "invalid name: #{str.dump}"
      end
      @name = str
    end

    # Path for which this cookie applies, as a +String+
    attr_reader :path
    # Set path for which this cookie applies
    def path=(str)
      if str and !PATH_VALUE_RE.match?(str)
        raise ArgumentError, "invalid path: #{str.dump}"
      end
      @path = str
    end

    # Domain for which this cookie applies, as a +String+
    attr_reader :domain
    # Set domain for which this cookie applies
    def domain=(str)
      if str and ((str = str.b).bytesize > 255 or !DOMAIN_VALUE_RE.match?(str))
        raise ArgumentError, "invalid domain: #{str.dump}"
      end
      @domain = str
    end

    # Time at which this cookie expires, as a +Time+
    attr_accessor :expires
    # True if this cookie is secure; false otherwise
    attr_reader :secure
    # True if this cookie is httponly; false otherwise
    attr_reader :httponly

    # Returns the value or list of values for this cookie.
    def value
      self
    end

    # Replaces the value of this cookie with a new value or list of values.
    def value=(val)
      replace(Array(val))
    end

    # Set whether the Cookie is a secure cookie or not.
    #
    # +val+ must be a boolean.
    def secure=(val)
      @secure = val if val == true or val == false
      @secure
    end

    # Set whether the Cookie is a httponly cookie or not.
    #
    # +val+ must be a boolean.
    def httponly=(val)
      @httponly = !!val
    end

    # Convert the Cookie to its string representation.
    def to_s
      val = collect{|v| CGI.escape(v) }.join("&")
      buf = "#{@name}=#{val}".dup
      buf << "; domain=#{@domain}" if @domain
      buf << "; path=#{@path}"     if @path
      buf << "; expires=#{CGI.rfc1123_date(@expires)}" if @expires
      buf << "; secure"            if @secure
      buf << "; HttpOnly"          if @httponly
      buf
    end

    # Parse a raw cookie string into a hash of cookie-name=>Cookie
    # pairs.
    #
    #   cookies = CGI::Cookie.parse("raw_cookie_string")
    #     # { "name1" => cookie1, "name2" => cookie2, ... }
    #
    def self.parse(raw_cookie)
      cookies = Hash.new([])
      return cookies unless raw_cookie

      raw_cookie.split(/;\s?/).each do |pairs|
        name, values = pairs.split('=',2)
        next unless name and values
        values ||= ""
        values = values.split('&').collect{|v| CGI.unescape(v,@@accept_charset) }
        if cookies.has_key?(name)
          values = cookies[name].value + values
        end
        cookies[name] = Cookie.new(name, *values)
      end

      cookies
    end

    # A summary of cookie string.
    def inspect
      "#<CGI::Cookie: #{self.to_s.inspect}>"
    end

  end # class Cookie
end


PKJH[�j"�))share/ruby/benchmark/version.rbnu�[���module Benchmark
  VERSION = "0.1.0"
end
PKJH[���^��share/ruby/matrix.rbnu�[���# encoding: utf-8
# frozen_string_literal: false
#
# = matrix.rb
#
# An implementation of Matrix and Vector classes.
#
# See classes Matrix and Vector for documentation.
#
# Current Maintainer:: Marc-André Lafortune
# Original Author:: Keiju ISHITSUKA
# Original Documentation:: Gavin Sinclair (sourced from <i>Ruby in a Nutshell</i> (Matsumoto, O'Reilly))
##

require_relative "matrix/version"

module ExceptionForMatrix # :nodoc:
  class ErrDimensionMismatch < StandardError
    def initialize(val = nil)
      if val
        super(val)
      else
        super("Dimension mismatch")
      end
    end
  end

  class ErrNotRegular < StandardError
    def initialize(val = nil)
      if val
        super(val)
      else
        super("Not Regular Matrix")
      end
    end
  end

  class ErrOperationNotDefined < StandardError
    def initialize(vals)
      if vals.is_a?(Array)
        super("Operation(#{vals[0]}) can\\'t be defined: #{vals[1]} op #{vals[2]}")
      else
        super(vals)
      end
    end
  end

  class ErrOperationNotImplemented < StandardError
    def initialize(vals)
      super("Sorry, Operation(#{vals[0]}) not implemented: #{vals[1]} op #{vals[2]}")
    end
  end
end

#
# The +Matrix+ class represents a mathematical matrix. It provides methods for creating
# matrices, operating on them arithmetically and algebraically,
# and determining their mathematical properties such as trace, rank, inverse, determinant,
# or eigensystem.
#
class Matrix
  include Enumerable
  include ExceptionForMatrix
  autoload :EigenvalueDecomposition, "matrix/eigenvalue_decomposition"
  autoload :LUPDecomposition, "matrix/lup_decomposition"

  # instance creations
  private_class_method :new
  attr_reader :rows
  protected :rows

  #
  # Creates a matrix where each argument is a row.
  #   Matrix[ [25, 93], [-1, 66] ]
  #      =>  25 93
  #          -1 66
  #
  def Matrix.[](*rows)
    rows(rows, false)
  end

  #
  # Creates a matrix where +rows+ is an array of arrays, each of which is a row
  # of the matrix.  If the optional argument +copy+ is false, use the given
  # arrays as the internal structure of the matrix without copying.
  #   Matrix.rows([[25, 93], [-1, 66]])
  #      =>  25 93
  #          -1 66
  #
  def Matrix.rows(rows, copy = true)
    rows = convert_to_array(rows, copy)
    rows.map! do |row|
      convert_to_array(row, copy)
    end
    size = (rows[0] || []).size
    rows.each do |row|
      raise ErrDimensionMismatch, "row size differs (#{row.size} should be #{size})" unless row.size == size
    end
    new rows, size
  end

  #
  # Creates a matrix using +columns+ as an array of column vectors.
  #   Matrix.columns([[25, 93], [-1, 66]])
  #      =>  25 -1
  #          93 66
  #
  def Matrix.columns(columns)
    rows(columns, false).transpose
  end

  #
  # Creates a matrix of size +row_count+ x +column_count+.
  # It fills the values by calling the given block,
  # passing the current row and column.
  # Returns an enumerator if no block is given.
  #
  #   m = Matrix.build(2, 4) {|row, col| col - row }
  #     => Matrix[[0, 1, 2, 3], [-1, 0, 1, 2]]
  #   m = Matrix.build(3) { rand }
  #     => a 3x3 matrix with random elements
  #
  def Matrix.build(row_count, column_count = row_count)
    row_count = CoercionHelper.coerce_to_int(row_count)
    column_count = CoercionHelper.coerce_to_int(column_count)
    raise ArgumentError if row_count < 0 || column_count < 0
    return to_enum :build, row_count, column_count unless block_given?
    rows = Array.new(row_count) do |i|
      Array.new(column_count) do |j|
        yield i, j
      end
    end
    new rows, column_count
  end

  #
  # Creates a matrix where the diagonal elements are composed of +values+.
  #   Matrix.diagonal(9, 5, -3)
  #     =>  9  0  0
  #         0  5  0
  #         0  0 -3
  #
  def Matrix.diagonal(*values)
    size = values.size
    return Matrix.empty if size == 0
    rows = Array.new(size) {|j|
      row = Array.new(size, 0)
      row[j] = values[j]
      row
    }
    new rows
  end

  #
  # Creates an +n+ by +n+ diagonal matrix where each diagonal element is
  # +value+.
  #   Matrix.scalar(2, 5)
  #     => 5 0
  #        0 5
  #
  def Matrix.scalar(n, value)
    diagonal(*Array.new(n, value))
  end

  #
  # Creates an +n+ by +n+ identity matrix.
  #   Matrix.identity(2)
  #     => 1 0
  #        0 1
  #
  def Matrix.identity(n)
    scalar(n, 1)
  end
  class << Matrix
    alias_method :unit, :identity
    alias_method :I, :identity
  end

  #
  # Creates a zero matrix.
  #   Matrix.zero(2)
  #     => 0 0
  #        0 0
  #
  def Matrix.zero(row_count, column_count = row_count)
    rows = Array.new(row_count){Array.new(column_count, 0)}
    new rows, column_count
  end

  #
  # Creates a single-row matrix where the values of that row are as given in
  # +row+.
  #   Matrix.row_vector([4,5,6])
  #     => 4 5 6
  #
  def Matrix.row_vector(row)
    row = convert_to_array(row)
    new [row]
  end

  #
  # Creates a single-column matrix where the values of that column are as given
  # in +column+.
  #   Matrix.column_vector([4,5,6])
  #     => 4
  #        5
  #        6
  #
  def Matrix.column_vector(column)
    column = convert_to_array(column)
    new [column].transpose, 1
  end

  #
  # Creates a empty matrix of +row_count+ x +column_count+.
  # At least one of +row_count+ or +column_count+ must be 0.
  #
  #   m = Matrix.empty(2, 0)
  #   m == Matrix[ [], [] ]
  #     => true
  #   n = Matrix.empty(0, 3)
  #   n == Matrix.columns([ [], [], [] ])
  #     => true
  #   m * n
  #     => Matrix[[0, 0, 0], [0, 0, 0]]
  #
  def Matrix.empty(row_count = 0, column_count = 0)
    raise ArgumentError, "One size must be 0" if column_count != 0 && row_count != 0
    raise ArgumentError, "Negative size" if column_count < 0 || row_count < 0

    new([[]]*row_count, column_count)
  end

  #
  # Create a matrix by stacking matrices vertically
  #
  #   x = Matrix[[1, 2], [3, 4]]
  #   y = Matrix[[5, 6], [7, 8]]
  #   Matrix.vstack(x, y) # => Matrix[[1, 2], [3, 4], [5, 6], [7, 8]]
  #
  def Matrix.vstack(x, *matrices)
    x = CoercionHelper.coerce_to_matrix(x)
    result = x.send(:rows).map(&:dup)
    matrices.each do |m|
      m = CoercionHelper.coerce_to_matrix(m)
      if m.column_count != x.column_count
        raise ErrDimensionMismatch, "The given matrices must have #{x.column_count} columns, but one has #{m.column_count}"
      end
      result.concat(m.send(:rows))
    end
    new result, x.column_count
  end


  #
  # Create a matrix by stacking matrices horizontally
  #
  #   x = Matrix[[1, 2], [3, 4]]
  #   y = Matrix[[5, 6], [7, 8]]
  #   Matrix.hstack(x, y) # => Matrix[[1, 2, 5, 6], [3, 4, 7, 8]]
  #
  def Matrix.hstack(x, *matrices)
    x = CoercionHelper.coerce_to_matrix(x)
    result = x.send(:rows).map(&:dup)
    total_column_count = x.column_count
    matrices.each do |m|
      m = CoercionHelper.coerce_to_matrix(m)
      if m.row_count != x.row_count
        raise ErrDimensionMismatch, "The given matrices must have #{x.row_count} rows, but one has #{m.row_count}"
      end
      result.each_with_index do |row, i|
        row.concat m.send(:rows)[i]
      end
      total_column_count += m.column_count
    end
    new result, total_column_count
  end

  #
  # Create a matrix by combining matrices entrywise, using the given block
  #
  #   x = Matrix[[6, 6], [4, 4]]
  #   y = Matrix[[1, 2], [3, 4]]
  #   Matrix.combine(x, y) {|a, b| a - b} # => Matrix[[5, 4], [1, 0]]
  #
  def Matrix.combine(*matrices)
    return to_enum(__method__, *matrices) unless block_given?

    return Matrix.empty if matrices.empty?
    matrices.map!(&CoercionHelper.method(:coerce_to_matrix))
    x = matrices.first
    matrices.each do |m|
      raise ErrDimensionMismatch unless x.row_count == m.row_count && x.column_count == m.column_count
    end

    rows = Array.new(x.row_count) do |i|
      Array.new(x.column_count) do |j|
        yield matrices.map{|m| m[i,j]}
      end
    end
    new rows, x.column_count
  end

  def combine(*matrices, &block)
    Matrix.combine(self, *matrices, &block)
  end

  #
  # Matrix.new is private; use Matrix.rows, columns, [], etc... to create.
  #
  def initialize(rows, column_count = rows[0].size)
    # No checking is done at this point. rows must be an Array of Arrays.
    # column_count must be the size of the first row, if there is one,
    # otherwise it *must* be specified and can be any integer >= 0
    @rows = rows
    @column_count = column_count
  end

  private def new_matrix(rows, column_count = rows[0].size) # :nodoc:
    self.class.send(:new, rows, column_count) # bypass privacy of Matrix.new
  end

  #
  # Returns element (+i+,+j+) of the matrix.  That is: row +i+, column +j+.
  #
  def [](i, j)
    @rows.fetch(i){return nil}[j]
  end
  alias element []
  alias component []

  #
  # :call-seq:
  #   matrix[range, range] = matrix/element
  #   matrix[range, integer] = vector/column_matrix/element
  #   matrix[integer, range] = vector/row_matrix/element
  #   matrix[integer, integer] = element
  #
  # Set element or elements of matrix.
  def []=(i, j, v)
    raise FrozenError, "can't modify frozen Matrix" if frozen?
    rows = check_range(i, :row) or row = check_int(i, :row)
    columns = check_range(j, :column) or column = check_int(j, :column)
    if rows && columns
      set_row_and_col_range(rows, columns, v)
    elsif rows
      set_row_range(rows, column, v)
    elsif columns
      set_col_range(row, columns, v)
    else
      set_value(row, column, v)
    end
  end
  alias set_element []=
  alias set_component []=
  private :set_element, :set_component

  # Returns range or nil
  private def check_range(val, direction)
    return unless val.is_a?(Range)
    count = direction == :row ? row_count : column_count
    CoercionHelper.check_range(val, count, direction)
  end

  private def check_int(val, direction)
    count = direction == :row ? row_count : column_count
    CoercionHelper.check_int(val, count, direction)
  end

  private def set_value(row, col, value)
    raise ErrDimensionMismatch, "Expected a a value, got a #{value.class}" if value.respond_to?(:to_matrix)

    @rows[row][col] = value
  end

  private def set_row_and_col_range(row_range, col_range, value)
    if value.is_a?(Matrix)
      if row_range.size != value.row_count || col_range.size != value.column_count
        raise ErrDimensionMismatch, [
          'Expected a Matrix of dimensions',
          "#{row_range.size}x#{col_range.size}",
          'got',
          "#{value.row_count}x#{value.column_count}",
        ].join(' ')
      end
      source = value.instance_variable_get :@rows
      row_range.each_with_index do |row, i|
        @rows[row][col_range] = source[i]
      end
    elsif value.is_a?(Vector)
      raise ErrDimensionMismatch, 'Expected a Matrix or a value, got a Vector'
    else
      value_to_set = Array.new(col_range.size, value)
      row_range.each do |i|
        @rows[i][col_range] = value_to_set
      end
    end
  end

  private def set_row_range(row_range, col, value)
    if value.is_a?(Vector)
      raise ErrDimensionMismatch unless row_range.size == value.size
      set_column_vector(row_range, col, value)
    elsif value.is_a?(Matrix)
      raise ErrDimensionMismatch unless value.column_count == 1
      value = value.column(0)
      raise ErrDimensionMismatch unless row_range.size == value.size
      set_column_vector(row_range, col, value)
    else
      @rows[row_range].each{|e| e[col] = value }
    end
  end

  private def set_column_vector(row_range, col, value)
    value.each_with_index do |e, index|
      r = row_range.begin + index
      @rows[r][col] = e
    end
  end

  private def set_col_range(row, col_range, value)
    value = if value.is_a?(Vector)
      value.to_a
    elsif value.is_a?(Matrix)
      raise ErrDimensionMismatch unless value.row_count == 1
      value.row(0).to_a
    else
      Array.new(col_range.size, value)
    end
    raise ErrDimensionMismatch unless col_range.size == value.size
    @rows[row][col_range] = value
  end

  #
  # Returns the number of rows.
  #
  def row_count
    @rows.size
  end

  alias_method :row_size, :row_count
  #
  # Returns the number of columns.
  #
  attr_reader :column_count
  alias_method :column_size, :column_count

  #
  # Returns row vector number +i+ of the matrix as a Vector (starting at 0 like
  # an array).  When a block is given, the elements of that vector are iterated.
  #
  def row(i, &block) # :yield: e
    if block_given?
      @rows.fetch(i){return self}.each(&block)
      self
    else
      Vector.elements(@rows.fetch(i){return nil})
    end
  end

  #
  # Returns column vector number +j+ of the matrix as a Vector (starting at 0
  # like an array).  When a block is given, the elements of that vector are
  # iterated.
  #
  def column(j) # :yield: e
    if block_given?
      return self if j >= column_count || j < -column_count
      row_count.times do |i|
        yield @rows[i][j]
      end
      self
    else
      return nil if j >= column_count || j < -column_count
      col = Array.new(row_count) {|i|
        @rows[i][j]
      }
      Vector.elements(col, false)
    end
  end

  #
  # Returns a matrix that is the result of iteration of the given block over all
  # elements of the matrix.
  # Elements can be restricted by passing an argument:
  # * :all (default): yields all elements
  # * :diagonal: yields only elements on the diagonal
  # * :off_diagonal: yields all elements except on the diagonal
  # * :lower: yields only elements on or below the diagonal
  # * :strict_lower: yields only elements below the diagonal
  # * :strict_upper: yields only elements above the diagonal
  # * :upper: yields only elements on or above the diagonal
  #   Matrix[ [1,2], [3,4] ].collect { |e| e**2 }
  #     => 1  4
  #        9 16
  #
  def collect(which = :all, &block) # :yield: e
    return to_enum(:collect, which) unless block_given?
    dup.collect!(which, &block)
  end
  alias_method :map, :collect

  #
  # Invokes the given block for each element of matrix, replacing the element with the value
  # returned by the block.
  # Elements can be restricted by passing an argument:
  # * :all (default): yields all elements
  # * :diagonal: yields only elements on the diagonal
  # * :off_diagonal: yields all elements except on the diagonal
  # * :lower: yields only elements on or below the diagonal
  # * :strict_lower: yields only elements below the diagonal
  # * :strict_upper: yields only elements above the diagonal
  # * :upper: yields only elements on or above the diagonal
  #
  def collect!(which = :all)
    return to_enum(:collect!, which) unless block_given?
    raise FrozenError, "can't modify frozen Matrix" if frozen?
    each_with_index(which){ |e, row_index, col_index| @rows[row_index][col_index] = yield e }
  end

  alias map! collect!

  def freeze
    @rows.freeze
    super
  end

  #
  # Yields all elements of the matrix, starting with those of the first row,
  # or returns an Enumerator if no block given.
  # Elements can be restricted by passing an argument:
  # * :all (default): yields all elements
  # * :diagonal: yields only elements on the diagonal
  # * :off_diagonal: yields all elements except on the diagonal
  # * :lower: yields only elements on or below the diagonal
  # * :strict_lower: yields only elements below the diagonal
  # * :strict_upper: yields only elements above the diagonal
  # * :upper: yields only elements on or above the diagonal
  #
  #   Matrix[ [1,2], [3,4] ].each { |e| puts e }
  #     # => prints the numbers 1 to 4
  #   Matrix[ [1,2], [3,4] ].each(:strict_lower).to_a # => [3]
  #
  def each(which = :all, &block) # :yield: e
    return to_enum :each, which unless block_given?
    last = column_count - 1
    case which
    when :all
      @rows.each do |row|
        row.each(&block)
      end
    when :diagonal
      @rows.each_with_index do |row, row_index|
        yield row.fetch(row_index){return self}
      end
    when :off_diagonal
      @rows.each_with_index do |row, row_index|
        column_count.times do |col_index|
          yield row[col_index] unless row_index == col_index
        end
      end
    when :lower
      @rows.each_with_index do |row, row_index|
        0.upto([row_index, last].min) do |col_index|
          yield row[col_index]
        end
      end
    when :strict_lower
      @rows.each_with_index do |row, row_index|
        [row_index, column_count].min.times do |col_index|
          yield row[col_index]
        end
      end
    when :strict_upper
      @rows.each_with_index do |row, row_index|
        (row_index+1).upto(last) do |col_index|
          yield row[col_index]
        end
      end
    when :upper
      @rows.each_with_index do |row, row_index|
        row_index.upto(last) do |col_index|
          yield row[col_index]
        end
      end
    else
      raise ArgumentError, "expected #{which.inspect} to be one of :all, :diagonal, :off_diagonal, :lower, :strict_lower, :strict_upper or :upper"
    end
    self
  end

  #
  # Same as #each, but the row index and column index in addition to the element
  #
  #   Matrix[ [1,2], [3,4] ].each_with_index do |e, row, col|
  #     puts "#{e} at #{row}, #{col}"
  #   end
  #     # => Prints:
  #     #    1 at 0, 0
  #     #    2 at 0, 1
  #     #    3 at 1, 0
  #     #    4 at 1, 1
  #
  def each_with_index(which = :all) # :yield: e, row, column
    return to_enum :each_with_index, which unless block_given?
    last = column_count - 1
    case which
    when :all
      @rows.each_with_index do |row, row_index|
        row.each_with_index do |e, col_index|
          yield e, row_index, col_index
        end
      end
    when :diagonal
      @rows.each_with_index do |row, row_index|
        yield row.fetch(row_index){return self}, row_index, row_index
      end
    when :off_diagonal
      @rows.each_with_index do |row, row_index|
        column_count.times do |col_index|
          yield row[col_index], row_index, col_index unless row_index == col_index
        end
      end
    when :lower
      @rows.each_with_index do |row, row_index|
        0.upto([row_index, last].min) do |col_index|
          yield row[col_index], row_index, col_index
        end
      end
    when :strict_lower
      @rows.each_with_index do |row, row_index|
        [row_index, column_count].min.times do |col_index|
          yield row[col_index], row_index, col_index
        end
      end
    when :strict_upper
      @rows.each_with_index do |row, row_index|
        (row_index+1).upto(last) do |col_index|
          yield row[col_index], row_index, col_index
        end
      end
    when :upper
      @rows.each_with_index do |row, row_index|
        row_index.upto(last) do |col_index|
          yield row[col_index], row_index, col_index
        end
      end
    else
      raise ArgumentError, "expected #{which.inspect} to be one of :all, :diagonal, :off_diagonal, :lower, :strict_lower, :strict_upper or :upper"
    end
    self
  end

  SELECTORS = {all: true, diagonal: true, off_diagonal: true, lower: true, strict_lower: true, strict_upper: true, upper: true}.freeze
  #
  # :call-seq:
  #   index(value, selector = :all) -> [row, column]
  #   index(selector = :all){ block } -> [row, column]
  #   index(selector = :all) -> an_enumerator
  #
  # The index method is specialized to return the index as [row, column]
  # It also accepts an optional +selector+ argument, see #each for details.
  #
  #   Matrix[ [1,2], [3,4] ].index(&:even?) # => [0, 1]
  #   Matrix[ [1,1], [1,1] ].index(1, :strict_lower) # => [1, 0]
  #
  def index(*args)
    raise ArgumentError, "wrong number of arguments(#{args.size} for 0-2)" if args.size > 2
    which = (args.size == 2 || SELECTORS.include?(args.last)) ? args.pop : :all
    return to_enum :find_index, which, *args unless block_given? || args.size == 1
    if args.size == 1
      value = args.first
      each_with_index(which) do |e, row_index, col_index|
        return row_index, col_index if e == value
      end
    else
      each_with_index(which) do |e, row_index, col_index|
        return row_index, col_index if yield e
      end
    end
    nil
  end
  alias_method :find_index, :index

  #
  # Returns a section of the matrix.  The parameters are either:
  # *  start_row, nrows, start_col, ncols; OR
  # *  row_range, col_range
  #
  #   Matrix.diagonal(9, 5, -3).minor(0..1, 0..2)
  #     => 9 0 0
  #        0 5 0
  #
  # Like Array#[], negative indices count backward from the end of the
  # row or column (-1 is the last element). Returns nil if the starting
  # row or column is greater than row_count or column_count respectively.
  #
  def minor(*param)
    case param.size
    when 2
      row_range, col_range = param
      from_row = row_range.first
      from_row += row_count if from_row < 0
      to_row = row_range.end
      to_row += row_count if to_row < 0
      to_row += 1 unless row_range.exclude_end?
      size_row = to_row - from_row

      from_col = col_range.first
      from_col += column_count if from_col < 0
      to_col = col_range.end
      to_col += column_count if to_col < 0
      to_col += 1 unless col_range.exclude_end?
      size_col = to_col - from_col
    when 4
      from_row, size_row, from_col, size_col = param
      return nil if size_row < 0 || size_col < 0
      from_row += row_count if from_row < 0
      from_col += column_count if from_col < 0
    else
      raise ArgumentError, param.inspect
    end

    return nil if from_row > row_count || from_col > column_count || from_row < 0 || from_col < 0
    rows = @rows[from_row, size_row].collect{|row|
      row[from_col, size_col]
    }
    new_matrix rows, [column_count - from_col, size_col].min
  end

  #
  # Returns the submatrix obtained by deleting the specified row and column.
  #
  #   Matrix.diagonal(9, 5, -3, 4).first_minor(1, 2)
  #     => 9 0 0
  #        0 0 0
  #        0 0 4
  #
  def first_minor(row, column)
    raise RuntimeError, "first_minor of empty matrix is not defined" if empty?

    unless 0 <= row && row < row_count
      raise ArgumentError, "invalid row (#{row.inspect} for 0..#{row_count - 1})"
    end

    unless 0 <= column && column < column_count
      raise ArgumentError, "invalid column (#{column.inspect} for 0..#{column_count - 1})"
    end

    arrays = to_a
    arrays.delete_at(row)
    arrays.each do |array|
      array.delete_at(column)
    end

    new_matrix arrays, column_count - 1
  end

  #
  # Returns the (row, column) cofactor which is obtained by multiplying
  # the first minor by (-1)**(row + column).
  #
  #   Matrix.diagonal(9, 5, -3, 4).cofactor(1, 1)
  #     => -108
  #
  def cofactor(row, column)
    raise RuntimeError, "cofactor of empty matrix is not defined" if empty?
    raise ErrDimensionMismatch unless square?

    det_of_minor = first_minor(row, column).determinant
    det_of_minor * (-1) ** (row + column)
  end

  #
  # Returns the adjugate of the matrix.
  #
  #   Matrix[ [7,6],[3,9] ].adjugate
  #     => 9 -6
  #        -3 7
  #
  def adjugate
    raise ErrDimensionMismatch unless square?
    Matrix.build(row_count, column_count) do |row, column|
      cofactor(column, row)
    end
  end

  #
  # Returns the Laplace expansion along given row or column.
  #
  #    Matrix[[7,6], [3,9]].laplace_expansion(column: 1)
  #     => 45
  #
  #    Matrix[[Vector[1, 0], Vector[0, 1]], [2, 3]].laplace_expansion(row: 0)
  #     => Vector[3, -2]
  #
  #
  def laplace_expansion(row: nil, column: nil)
    num = row || column

    if !num || (row && column)
      raise ArgumentError, "exactly one the row or column arguments must be specified"
    end

    raise ErrDimensionMismatch unless square?
    raise RuntimeError, "laplace_expansion of empty matrix is not defined" if empty?

    unless 0 <= num && num < row_count
      raise ArgumentError, "invalid num (#{num.inspect} for 0..#{row_count - 1})"
    end

    send(row ? :row : :column, num).map.with_index { |e, k|
      e * cofactor(*(row ? [num, k] : [k,num]))
    }.inject(:+)
  end
  alias_method :cofactor_expansion, :laplace_expansion


  #--
  # TESTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns +true+ if this is a diagonal matrix.
  # Raises an error if matrix is not square.
  #
  def diagonal?
    raise ErrDimensionMismatch unless square?
    each(:off_diagonal).all?(&:zero?)
  end

  #
  # Returns +true+ if this is an empty matrix, i.e. if the number of rows
  # or the number of columns is 0.
  #
  def empty?
    column_count == 0 || row_count == 0
  end

  #
  # Returns +true+ if this is an hermitian matrix.
  # Raises an error if matrix is not square.
  #
  def hermitian?
    raise ErrDimensionMismatch unless square?
    each_with_index(:upper).all? do |e, row, col|
      e == rows[col][row].conj
    end
  end

  #
  # Returns +true+ if this is a lower triangular matrix.
  #
  def lower_triangular?
    each(:strict_upper).all?(&:zero?)
  end

  #
  # Returns +true+ if this is a normal matrix.
  # Raises an error if matrix is not square.
  #
  def normal?
    raise ErrDimensionMismatch unless square?
    rows.each_with_index do |row_i, i|
      rows.each_with_index do |row_j, j|
        s = 0
        rows.each_with_index do |row_k, k|
          s += row_i[k] * row_j[k].conj - row_k[i].conj * row_k[j]
        end
        return false unless s == 0
      end
    end
    true
  end

  #
  # Returns +true+ if this is an orthogonal matrix
  # Raises an error if matrix is not square.
  #
  def orthogonal?
    raise ErrDimensionMismatch unless square?
    rows.each_with_index do |row, i|
      column_count.times do |j|
        s = 0
        row_count.times do |k|
          s += row[k] * rows[k][j]
        end
        return false unless s == (i == j ? 1 : 0)
      end
    end
    true
  end

  #
  # Returns +true+ if this is a permutation matrix
  # Raises an error if matrix is not square.
  #
  def permutation?
    raise ErrDimensionMismatch unless square?
    cols = Array.new(column_count)
    rows.each_with_index do |row, i|
      found = false
      row.each_with_index do |e, j|
        if e == 1
          return false if found || cols[j]
          found = cols[j] = true
        elsif e != 0
          return false
        end
      end
      return false unless found
    end
    true
  end

  #
  # Returns +true+ if all entries of the matrix are real.
  #
  def real?
    all?(&:real?)
  end

  #
  # Returns +true+ if this is a regular (i.e. non-singular) matrix.
  #
  def regular?
    not singular?
  end

  #
  # Returns +true+ if this is a singular matrix.
  #
  def singular?
    determinant == 0
  end

  #
  # Returns +true+ if this is a square matrix.
  #
  def square?
    column_count == row_count
  end

  #
  # Returns +true+ if this is a symmetric matrix.
  # Raises an error if matrix is not square.
  #
  def symmetric?
    raise ErrDimensionMismatch unless square?
    each_with_index(:strict_upper) do |e, row, col|
      return false if e != rows[col][row]
    end
    true
  end

  #
  # Returns +true+ if this is an antisymmetric matrix.
  # Raises an error if matrix is not square.
  #
  def antisymmetric?
    raise ErrDimensionMismatch unless square?
    each_with_index(:upper) do |e, row, col|
      return false unless e == -rows[col][row]
    end
    true
  end
  alias_method :skew_symmetric?, :antisymmetric?

  #
  # Returns +true+ if this is a unitary matrix
  # Raises an error if matrix is not square.
  #
  def unitary?
    raise ErrDimensionMismatch unless square?
    rows.each_with_index do |row, i|
      column_count.times do |j|
        s = 0
        row_count.times do |k|
          s += row[k].conj * rows[k][j]
        end
        return false unless s == (i == j ? 1 : 0)
      end
    end
    true
  end

  #
  # Returns +true+ if this is an upper triangular matrix.
  #
  def upper_triangular?
    each(:strict_lower).all?(&:zero?)
  end

  #
  # Returns +true+ if this is a matrix with only zero elements
  #
  def zero?
    all?(&:zero?)
  end

  #--
  # OBJECT METHODS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns +true+ if and only if the two matrices contain equal elements.
  #
  def ==(other)
    return false unless Matrix === other &&
                        column_count == other.column_count # necessary for empty matrices
    rows == other.rows
  end

  def eql?(other)
    return false unless Matrix === other &&
                        column_count == other.column_count # necessary for empty matrices
    rows.eql? other.rows
  end

  #
  # Called for dup & clone.
  #
  private def initialize_copy(m)
    super
    @rows = @rows.map(&:dup) unless frozen?
  end

  #
  # Returns a hash-code for the matrix.
  #
  def hash
    @rows.hash
  end

  #--
  # ARITHMETIC -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Matrix multiplication.
  #   Matrix[[2,4], [6,8]] * Matrix.identity(2)
  #     => 2 4
  #        6 8
  #
  def *(m) # m is matrix or vector or number
    case(m)
    when Numeric
      rows = @rows.collect {|row|
        row.collect {|e| e * m }
      }
      return new_matrix rows, column_count
    when Vector
      m = self.class.column_vector(m)
      r = self * m
      return r.column(0)
    when Matrix
      raise ErrDimensionMismatch if column_count != m.row_count

      rows = Array.new(row_count) {|i|
        Array.new(m.column_count) {|j|
          (0 ... column_count).inject(0) do |vij, k|
            vij + self[i, k] * m[k, j]
          end
        }
      }
      return new_matrix rows, m.column_count
    else
      return apply_through_coercion(m, __method__)
    end
  end

  #
  # Matrix addition.
  #   Matrix.scalar(2,5) + Matrix[[1,0], [-4,7]]
  #     =>  6  0
  #        -4 12
  #
  def +(m)
    case m
    when Numeric
      raise ErrOperationNotDefined, ["+", self.class, m.class]
    when Vector
      m = self.class.column_vector(m)
    when Matrix
    else
      return apply_through_coercion(m, __method__)
    end

    raise ErrDimensionMismatch unless row_count == m.row_count && column_count == m.column_count

    rows = Array.new(row_count) {|i|
      Array.new(column_count) {|j|
        self[i, j] + m[i, j]
      }
    }
    new_matrix rows, column_count
  end

  #
  # Matrix subtraction.
  #   Matrix[[1,5], [4,2]] - Matrix[[9,3], [-4,1]]
  #     => -8  2
  #         8  1
  #
  def -(m)
    case m
    when Numeric
      raise ErrOperationNotDefined, ["-", self.class, m.class]
    when Vector
      m = self.class.column_vector(m)
    when Matrix
    else
      return apply_through_coercion(m, __method__)
    end

    raise ErrDimensionMismatch unless row_count == m.row_count && column_count == m.column_count

    rows = Array.new(row_count) {|i|
      Array.new(column_count) {|j|
        self[i, j] - m[i, j]
      }
    }
    new_matrix rows, column_count
  end

  #
  # Matrix division (multiplication by the inverse).
  #   Matrix[[7,6], [3,9]] / Matrix[[2,9], [3,1]]
  #     => -7  1
  #        -3 -6
  #
  def /(other)
    case other
    when Numeric
      rows = @rows.collect {|row|
        row.collect {|e| e / other }
      }
      return new_matrix rows, column_count
    when Matrix
      return self * other.inverse
    else
      return apply_through_coercion(other, __method__)
    end
  end

  #
  # Hadamard product
  #    Matrix[[1,2], [3,4]].hadamard_product(Matrix[[1,2], [3,2]])
  #      => 1  4
  #         9  8
  #
  def hadamard_product(m)
    combine(m){|a, b| a * b}
  end
  alias_method :entrywise_product, :hadamard_product

  #
  # Returns the inverse of the matrix.
  #   Matrix[[-1, -1], [0, -1]].inverse
  #     => -1  1
  #         0 -1
  #
  def inverse
    raise ErrDimensionMismatch unless square?
    self.class.I(row_count).send(:inverse_from, self)
  end
  alias_method :inv, :inverse

  private def inverse_from(src) # :nodoc:
    last = row_count - 1
    a = src.to_a

    0.upto(last) do |k|
      i = k
      akk = a[k][k].abs
      (k+1).upto(last) do |j|
        v = a[j][k].abs
        if v > akk
          i = j
          akk = v
        end
      end
      raise ErrNotRegular if akk == 0
      if i != k
        a[i], a[k] = a[k], a[i]
        @rows[i], @rows[k] = @rows[k], @rows[i]
      end
      akk = a[k][k]

      0.upto(last) do |ii|
        next if ii == k
        q = a[ii][k].quo(akk)
        a[ii][k] = 0

        (k + 1).upto(last) do |j|
          a[ii][j] -= a[k][j] * q
        end
        0.upto(last) do |j|
          @rows[ii][j] -= @rows[k][j] * q
        end
      end

      (k+1).upto(last) do |j|
        a[k][j] = a[k][j].quo(akk)
      end
      0.upto(last) do |j|
        @rows[k][j] = @rows[k][j].quo(akk)
      end
    end
    self
  end

  #
  # Matrix exponentiation.
  # Equivalent to multiplying the matrix by itself N times.
  # Non integer exponents will be handled by diagonalizing the matrix.
  #
  #   Matrix[[7,6], [3,9]] ** 2
  #     => 67 96
  #        48 99
  #
  def **(other)
    case other
    when Integer
      x = self
      if other <= 0
        x = self.inverse
        return self.class.identity(self.column_count) if other == 0
        other = -other
      end
      z = nil
      loop do
        z = z ? z * x : x if other[0] == 1
        return z if (other >>= 1).zero?
        x *= x
      end
    when Numeric
      v, d, v_inv = eigensystem
      v * self.class.diagonal(*d.each(:diagonal).map{|e| e ** other}) * v_inv
    else
      raise ErrOperationNotDefined, ["**", self.class, other.class]
    end
  end

  def +@
    self
  end

  def -@
    collect {|e| -e }
  end

  #
  # Returns the absolute value elementwise
  #
  def abs
    collect(&:abs)
  end

  #--
  # MATRIX FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns the determinant of the matrix.
  #
  # Beware that using Float values can yield erroneous results
  # because of their lack of precision.
  # Consider using exact types like Rational or BigDecimal instead.
  #
  #   Matrix[[7,6], [3,9]].determinant
  #     => 45
  #
  def determinant
    raise ErrDimensionMismatch unless square?
    m = @rows
    case row_count
      # Up to 4x4, give result using Laplacian expansion by minors.
      # This will typically be faster, as well as giving good results
      # in case of Floats
    when 0
      +1
    when 1
      + m[0][0]
    when 2
      + m[0][0] * m[1][1] - m[0][1] * m[1][0]
    when 3
      m0, m1, m2 = m
      + m0[0] * m1[1] * m2[2] - m0[0] * m1[2] * m2[1] \
      - m0[1] * m1[0] * m2[2] + m0[1] * m1[2] * m2[0] \
      + m0[2] * m1[0] * m2[1] - m0[2] * m1[1] * m2[0]
    when 4
      m0, m1, m2, m3 = m
      + m0[0] * m1[1] * m2[2] * m3[3] - m0[0] * m1[1] * m2[3] * m3[2] \
      - m0[0] * m1[2] * m2[1] * m3[3] + m0[0] * m1[2] * m2[3] * m3[1] \
      + m0[0] * m1[3] * m2[1] * m3[2] - m0[0] * m1[3] * m2[2] * m3[1] \
      - m0[1] * m1[0] * m2[2] * m3[3] + m0[1] * m1[0] * m2[3] * m3[2] \
      + m0[1] * m1[2] * m2[0] * m3[3] - m0[1] * m1[2] * m2[3] * m3[0] \
      - m0[1] * m1[3] * m2[0] * m3[2] + m0[1] * m1[3] * m2[2] * m3[0] \
      + m0[2] * m1[0] * m2[1] * m3[3] - m0[2] * m1[0] * m2[3] * m3[1] \
      - m0[2] * m1[1] * m2[0] * m3[3] + m0[2] * m1[1] * m2[3] * m3[0] \
      + m0[2] * m1[3] * m2[0] * m3[1] - m0[2] * m1[3] * m2[1] * m3[0] \
      - m0[3] * m1[0] * m2[1] * m3[2] + m0[3] * m1[0] * m2[2] * m3[1] \
      + m0[3] * m1[1] * m2[0] * m3[2] - m0[3] * m1[1] * m2[2] * m3[0] \
      - m0[3] * m1[2] * m2[0] * m3[1] + m0[3] * m1[2] * m2[1] * m3[0]
    else
      # For bigger matrices, use an efficient and general algorithm.
      # Currently, we use the Gauss-Bareiss algorithm
      determinant_bareiss
    end
  end
  alias_method :det, :determinant

  #
  # Private. Use Matrix#determinant
  #
  # Returns the determinant of the matrix, using
  # Bareiss' multistep integer-preserving gaussian elimination.
  # It has the same computational cost order O(n^3) as standard Gaussian elimination.
  # Intermediate results are fraction free and of lower complexity.
  # A matrix of Integers will have thus intermediate results that are also Integers,
  # with smaller bignums (if any), while a matrix of Float will usually have
  # intermediate results with better precision.
  #
  private def determinant_bareiss
    size = row_count
    last = size - 1
    a = to_a
    no_pivot = Proc.new{ return 0 }
    sign = +1
    pivot = 1
    size.times do |k|
      previous_pivot = pivot
      if (pivot = a[k][k]) == 0
        switch = (k+1 ... size).find(no_pivot) {|row|
          a[row][k] != 0
        }
        a[switch], a[k] = a[k], a[switch]
        pivot = a[k][k]
        sign = -sign
      end
      (k+1).upto(last) do |i|
        ai = a[i]
        (k+1).upto(last) do |j|
          ai[j] =  (pivot * ai[j] - ai[k] * a[k][j]) / previous_pivot
        end
      end
    end
    sign * pivot
  end

  #
  # deprecated; use Matrix#determinant
  #
  def determinant_e
    warn "Matrix#determinant_e is deprecated; use #determinant", uplevel: 1
    determinant
  end
  alias_method :det_e, :determinant_e

  #
  # Returns a new matrix resulting by stacking horizontally
  # the receiver with the given matrices
  #
  #   x = Matrix[[1, 2], [3, 4]]
  #   y = Matrix[[5, 6], [7, 8]]
  #   x.hstack(y) # => Matrix[[1, 2, 5, 6], [3, 4, 7, 8]]
  #
  def hstack(*matrices)
    self.class.hstack(self, *matrices)
  end

  #
  # Returns the rank of the matrix.
  # Beware that using Float values can yield erroneous results
  # because of their lack of precision.
  # Consider using exact types like Rational or BigDecimal instead.
  #
  #   Matrix[[7,6], [3,9]].rank
  #     => 2
  #
  def rank
    # We currently use Bareiss' multistep integer-preserving gaussian elimination
    # (see comments on determinant)
    a = to_a
    last_column = column_count - 1
    last_row = row_count - 1
    pivot_row = 0
    previous_pivot = 1
    0.upto(last_column) do |k|
      switch_row = (pivot_row .. last_row).find {|row|
        a[row][k] != 0
      }
      if switch_row
        a[switch_row], a[pivot_row] = a[pivot_row], a[switch_row] unless pivot_row == switch_row
        pivot = a[pivot_row][k]
        (pivot_row+1).upto(last_row) do |i|
           ai = a[i]
           (k+1).upto(last_column) do |j|
             ai[j] =  (pivot * ai[j] - ai[k] * a[pivot_row][j]) / previous_pivot
           end
         end
        pivot_row += 1
        previous_pivot = pivot
      end
    end
    pivot_row
  end

  #
  # deprecated; use Matrix#rank
  #
  def rank_e
    warn "Matrix#rank_e is deprecated; use #rank", uplevel: 1
    rank
  end

  # Returns a matrix with entries rounded to the given precision
  # (see Float#round)
  #
  def round(ndigits=0)
    map{|e| e.round(ndigits)}
  end

  #
  # Returns the trace (sum of diagonal elements) of the matrix.
  #   Matrix[[7,6], [3,9]].trace
  #     => 16
  #
  def trace
    raise ErrDimensionMismatch unless square?
    (0...column_count).inject(0) do |tr, i|
      tr + @rows[i][i]
    end
  end
  alias_method :tr, :trace

  #
  # Returns the transpose of the matrix.
  #   Matrix[[1,2], [3,4], [5,6]]
  #     => 1 2
  #        3 4
  #        5 6
  #   Matrix[[1,2], [3,4], [5,6]].transpose
  #     => 1 3 5
  #        2 4 6
  #
  def transpose
    return self.class.empty(column_count, 0) if row_count.zero?
    new_matrix @rows.transpose, row_count
  end
  alias_method :t, :transpose

  #
  # Returns a new matrix resulting by stacking vertically
  # the receiver with the given matrices
  #
  #   x = Matrix[[1, 2], [3, 4]]
  #   y = Matrix[[5, 6], [7, 8]]
  #   x.vstack(y) # => Matrix[[1, 2], [3, 4], [5, 6], [7, 8]]
  #
  def vstack(*matrices)
    self.class.vstack(self, *matrices)
  end

  #--
  # DECOMPOSITIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  #++

  #
  # Returns the Eigensystem of the matrix; see +EigenvalueDecomposition+.
  #   m = Matrix[[1, 2], [3, 4]]
  #   v, d, v_inv = m.eigensystem
  #   d.diagonal? # => true
  #   v.inv == v_inv # => true
  #   (v * d * v_inv).round(5) == m # => true
  #
  def eigensystem
    EigenvalueDecomposition.new(self)
  end
  alias_method :eigen, :eigensystem

  #
  # Returns the LUP decomposition of the matrix; see +LUPDecomposition+.
  #   a = Matrix[[1, 2], [3, 4]]
  #   l, u, p = a.lup
  #   l.lower_triangular? # => true
  #   u.upper_triangular? # => true
  #   p.permutation?      # => true
  #   l * u == p * a      # => true
  #   a.lup.solve([2, 5]) # => Vector[(1/1), (1/2)]
  #
  def lup
    LUPDecomposition.new(self)
  end
  alias_method :lup_decomposition, :lup

  #--
  # COMPLEX ARITHMETIC -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  #++

  #
  # Returns the conjugate of the matrix.
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
  #     => 1+2i   i  0
  #           1   2  3
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].conjugate
  #     => 1-2i  -i  0
  #           1   2  3
  #
  def conjugate
    collect(&:conjugate)
  end
  alias_method :conj, :conjugate

  #
  # Returns the imaginary part of the matrix.
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
  #     => 1+2i  i  0
  #           1  2  3
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].imaginary
  #     =>   2i  i  0
  #           0  0  0
  #
  def imaginary
    collect(&:imaginary)
  end
  alias_method :imag, :imaginary

  #
  # Returns the real part of the matrix.
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
  #     => 1+2i  i  0
  #           1  2  3
  #   Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].real
  #     =>    1  0  0
  #           1  2  3
  #
  def real
    collect(&:real)
  end

  #
  # Returns an array containing matrices corresponding to the real and imaginary
  # parts of the matrix
  #
  # m.rect == [m.real, m.imag]  # ==> true for all matrices m
  #
  def rect
    [real, imag]
  end
  alias_method :rectangular, :rect

  #--
  # CONVERTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # The coerce method provides support for Ruby type coercion.
  # This coercion mechanism is used by Ruby to handle mixed-type
  # numeric operations: it is intended to find a compatible common
  # type between the two operands of the operator.
  # See also Numeric#coerce.
  #
  def coerce(other)
    case other
    when Numeric
      return Scalar.new(other), self
    else
      raise TypeError, "#{self.class} can't be coerced into #{other.class}"
    end
  end

  #
  # Returns an array of the row vectors of the matrix.  See Vector.
  #
  def row_vectors
    Array.new(row_count) {|i|
      row(i)
    }
  end

  #
  # Returns an array of the column vectors of the matrix.  See Vector.
  #
  def column_vectors
    Array.new(column_count) {|i|
      column(i)
    }
  end

  #
  # Explicit conversion to a Matrix. Returns self
  #
  def to_matrix
    self
  end

  #
  # Returns an array of arrays that describe the rows of the matrix.
  #
  def to_a
    @rows.collect(&:dup)
  end

  # Deprecated.
  #
  # Use map(&:to_f)
  def elements_to_f
    warn "Matrix#elements_to_f is deprecated, use map(&:to_f)", uplevel: 1
    map(&:to_f)
  end

  # Deprecated.
  #
  # Use map(&:to_i)
  def elements_to_i
    warn "Matrix#elements_to_i is deprecated, use map(&:to_i)", uplevel: 1
    map(&:to_i)
  end

  # Deprecated.
  #
  # Use map(&:to_r)
  def elements_to_r
    warn "Matrix#elements_to_r is deprecated, use map(&:to_r)", uplevel: 1
    map(&:to_r)
  end

  #--
  # PRINTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Overrides Object#to_s
  #
  def to_s
    if empty?
      "#{self.class}.empty(#{row_count}, #{column_count})"
    else
      "#{self.class}[" + @rows.collect{|row|
        "[" + row.collect{|e| e.to_s}.join(", ") + "]"
      }.join(", ")+"]"
    end
  end

  #
  # Overrides Object#inspect
  #
  def inspect
    if empty?
      "#{self.class}.empty(#{row_count}, #{column_count})"
    else
      "#{self.class}#{@rows.inspect}"
    end
  end

  # Private helper modules

  module ConversionHelper # :nodoc:
    #
    # Converts the obj to an Array. If copy is set to true
    # a copy of obj will be made if necessary.
    #
    private def convert_to_array(obj, copy = false) # :nodoc:
      case obj
      when Array
        copy ? obj.dup : obj
      when Vector
        obj.to_a
      else
        begin
          converted = obj.to_ary
        rescue Exception => e
          raise TypeError, "can't convert #{obj.class} into an Array (#{e.message})"
        end
        raise TypeError, "#{obj.class}#to_ary should return an Array" unless converted.is_a? Array
        converted
      end
    end
  end

  extend ConversionHelper

  module CoercionHelper # :nodoc:
    #
    # Applies the operator +oper+ with argument +obj+
    # through coercion of +obj+
    #
    private def apply_through_coercion(obj, oper)
      coercion = obj.coerce(self)
      raise TypeError unless coercion.is_a?(Array) && coercion.length == 2
      coercion[0].public_send(oper, coercion[1])
    rescue
      raise TypeError, "#{obj.inspect} can't be coerced into #{self.class}"
    end

    #
    # Helper method to coerce a value into a specific class.
    # Raises a TypeError if the coercion fails or the returned value
    # is not of the right class.
    # (from Rubinius)
    #
    def self.coerce_to(obj, cls, meth) # :nodoc:
      return obj if obj.kind_of?(cls)
      raise TypeError, "Expected a #{cls} but got a #{obj.class}" unless obj.respond_to? meth
      begin
        ret = obj.__send__(meth)
      rescue Exception => e
        raise TypeError, "Coercion error: #{obj.inspect}.#{meth} => #{cls} failed:\n" \
                         "(#{e.message})"
      end
      raise TypeError, "Coercion error: obj.#{meth} did NOT return a #{cls} (was #{ret.class})" unless ret.kind_of? cls
      ret
    end

    def self.coerce_to_int(obj)
      coerce_to(obj, Integer, :to_int)
    end

    def self.coerce_to_matrix(obj)
      coerce_to(obj, Matrix, :to_matrix)
    end

    # Returns `nil` for non Ranges
    # Checks range validity, return canonical range with 0 <= begin <= end < count
    def self.check_range(val, count, kind)
      canonical = (val.begin + (val.begin < 0 ? count : 0))..
                  (val.end ? val.end + (val.end < 0 ? count : 0) - (val.exclude_end? ? 1 : 0)
                           : count - 1)
      unless 0 <= canonical.begin && canonical.begin <= canonical.end && canonical.end < count
        raise IndexError, "given range #{val} is outside of #{kind} dimensions: 0...#{count}"
      end
      canonical
    end

    def self.check_int(val, count, kind)
      val = CoercionHelper.coerce_to_int(val)
      if val >= count || val < -count
        raise IndexError, "given #{kind} #{val} is outside of #{-count}...#{count}"
      end
      val
    end
  end

  include CoercionHelper

  # Private CLASS

  class Scalar < Numeric # :nodoc:
    include ExceptionForMatrix
    include CoercionHelper

    def initialize(value)
      @value = value
    end

    # ARITHMETIC
    def +(other)
      case other
      when Numeric
        Scalar.new(@value + other)
      when Vector, Matrix
        raise ErrOperationNotDefined, ["+", @value.class, other.class]
      else
        apply_through_coercion(other, __method__)
      end
    end

    def -(other)
      case other
      when Numeric
        Scalar.new(@value - other)
      when Vector, Matrix
        raise ErrOperationNotDefined, ["-", @value.class, other.class]
      else
        apply_through_coercion(other, __method__)
      end
    end

    def *(other)
      case other
      when Numeric
        Scalar.new(@value * other)
      when Vector, Matrix
        other.collect{|e| @value * e}
      else
        apply_through_coercion(other, __method__)
      end
    end

    def /(other)
      case other
      when Numeric
        Scalar.new(@value / other)
      when Vector
        raise ErrOperationNotDefined, ["/", @value.class, other.class]
      when Matrix
        self * other.inverse
      else
        apply_through_coercion(other, __method__)
      end
    end

    def **(other)
      case other
      when Numeric
        Scalar.new(@value ** other)
      when Vector
        raise ErrOperationNotDefined, ["**", @value.class, other.class]
      when Matrix
        #other.powered_by(self)
        raise ErrOperationNotImplemented, ["**", @value.class, other.class]
      else
        apply_through_coercion(other, __method__)
      end
    end
  end

end


#
# The +Vector+ class represents a mathematical vector, which is useful in its own right, and
# also constitutes a row or column of a Matrix.
#
# == Method Catalogue
#
# To create a Vector:
# * Vector.[](*array)
# * Vector.elements(array, copy = true)
# * Vector.basis(size: n, index: k)
# * Vector.zero(n)
#
# To access elements:
# * #[](i)
#
# To set elements:
# * #[]=(i, v)
#
# To enumerate the elements:
# * #each2(v)
# * #collect2(v)
#
# Properties of vectors:
# * #angle_with(v)
# * Vector.independent?(*vs)
# * #independent?(*vs)
# * #zero?
#
# Vector arithmetic:
# * #*(x) "is matrix or number"
# * #+(v)
# * #-(v)
# * #/(v)
# * #+@
# * #-@
#
# Vector functions:
# * #inner_product(v), dot(v)
# * #cross_product(v), cross(v)
# * #collect
# * #collect!
# * #magnitude
# * #map
# * #map!
# * #map2(v)
# * #norm
# * #normalize
# * #r
# * #round
# * #size
#
# Conversion to other data types:
# * #covector
# * #to_a
# * #coerce(other)
#
# String representations:
# * #to_s
# * #inspect
#
class Vector
  include ExceptionForMatrix
  include Enumerable
  include Matrix::CoercionHelper
  extend Matrix::ConversionHelper
  #INSTANCE CREATION

  private_class_method :new
  attr_reader :elements
  protected :elements

  #
  # Creates a Vector from a list of elements.
  #   Vector[7, 4, ...]
  #
  def Vector.[](*array)
    new convert_to_array(array, false)
  end

  #
  # Creates a vector from an Array.  The optional second argument specifies
  # whether the array itself or a copy is used internally.
  #
  def Vector.elements(array, copy = true)
    new convert_to_array(array, copy)
  end

  #
  # Returns a standard basis +n+-vector, where k is the index.
  #
  #    Vector.basis(size:, index:) # => Vector[0, 1, 0]
  #
  def Vector.basis(size:, index:)
    raise ArgumentError, "invalid size (#{size} for 1..)" if size < 1
    raise ArgumentError, "invalid index (#{index} for 0...#{size})" unless 0 <= index && index < size
    array = Array.new(size, 0)
    array[index] = 1
    new convert_to_array(array, false)
  end

  #
  # Return a zero vector.
  #
  #    Vector.zero(3) => Vector[0, 0, 0]
  #
  def Vector.zero(size)
    raise ArgumentError, "invalid size (#{size} for 0..)" if size < 0
    array = Array.new(size, 0)
    new convert_to_array(array, false)
  end

  #
  # Vector.new is private; use Vector[] or Vector.elements to create.
  #
  def initialize(array)
    # No checking is done at this point.
    @elements = array
  end

  # ACCESSING

  #
  # :call-seq:
  #   vector[range]
  #   vector[integer]
  #
  # Returns element or elements of the vector.
  #
  def [](i)
    @elements[i]
  end
  alias element []
  alias component []

  #
  # :call-seq:
  #   vector[range] = new_vector
  #   vector[range] = row_matrix
  #   vector[range] = new_element
  #   vector[integer] = new_element
  #
  # Set element or elements of vector.
  #
  def []=(i, v)
    raise FrozenError, "can't modify frozen Vector" if frozen?
    if i.is_a?(Range)
      range = Matrix::CoercionHelper.check_range(i, size, :vector)
      set_range(range, v)
    else
      index = Matrix::CoercionHelper.check_int(i, size, :index)
      set_value(index, v)
    end
  end
  alias set_element []=
  alias set_component []=
  private :set_element, :set_component

  private def set_value(index, value)
    @elements[index] = value
  end

  private def set_range(range, value)
    if value.is_a?(Vector)
      raise ArgumentError, "vector to be set has wrong size" unless range.size == value.size
      @elements[range] = value.elements
    elsif value.is_a?(Matrix)
      raise ErrDimensionMismatch unless value.row_count == 1
      @elements[range] = value.row(0).elements
    else
      @elements[range] = Array.new(range.size, value)
    end
  end

  # Returns a vector with entries rounded to the given precision
  # (see Float#round)
  #
  def round(ndigits=0)
    map{|e| e.round(ndigits)}
  end

  #
  # Returns the number of elements in the vector.
  #
  def size
    @elements.size
  end

  #--
  # ENUMERATIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Iterate over the elements of this vector
  #
  def each(&block)
    return to_enum(:each) unless block_given?
    @elements.each(&block)
    self
  end

  #
  # Iterate over the elements of this vector and +v+ in conjunction.
  #
  def each2(v) # :yield: e1, e2
    raise TypeError, "Integer is not like Vector" if v.kind_of?(Integer)
    raise ErrDimensionMismatch if size != v.size
    return to_enum(:each2, v) unless block_given?
    size.times do |i|
      yield @elements[i], v[i]
    end
    self
  end

  #
  # Collects (as in Enumerable#collect) over the elements of this vector and +v+
  # in conjunction.
  #
  def collect2(v) # :yield: e1, e2
    raise TypeError, "Integer is not like Vector" if v.kind_of?(Integer)
    raise ErrDimensionMismatch if size != v.size
    return to_enum(:collect2, v) unless block_given?
    Array.new(size) do |i|
      yield @elements[i], v[i]
    end
  end

  #--
  # PROPERTIES -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns +true+ iff all of vectors are linearly independent.
  #
  #   Vector.independent?(Vector[1,0], Vector[0,1])
  #     => true
  #
  #   Vector.independent?(Vector[1,2], Vector[2,4])
  #     => false
  #
  def Vector.independent?(*vs)
    vs.each do |v|
      raise TypeError, "expected Vector, got #{v.class}" unless v.is_a?(Vector)
      raise ErrDimensionMismatch unless v.size == vs.first.size
    end
    return false if vs.count > vs.first.size
    Matrix[*vs].rank.eql?(vs.count)
  end

  #
  # Returns +true+ iff all of vectors are linearly independent.
  #
  #   Vector[1,0].independent?(Vector[0,1])
  #     => true
  #
  #   Vector[1,2].independent?(Vector[2,4])
  #     => false
  #
  def independent?(*vs)
    self.class.independent?(self, *vs)
  end

  #
  # Returns +true+ iff all elements are zero.
  #
  def zero?
    all?(&:zero?)
  end

  def freeze
    @elements.freeze
    super
  end

  #
  # Called for dup & clone.
  #
  private def initialize_copy(v)
    super
    @elements = @elements.dup unless frozen?
  end


  #--
  # COMPARING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns +true+ iff the two vectors have the same elements in the same order.
  #
  def ==(other)
    return false unless Vector === other
    @elements == other.elements
  end

  def eql?(other)
    return false unless Vector === other
    @elements.eql? other.elements
  end

  #
  # Returns a hash-code for the vector.
  #
  def hash
    @elements.hash
  end

  #--
  # ARITHMETIC -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Multiplies the vector by +x+, where +x+ is a number or a matrix.
  #
  def *(x)
    case x
    when Numeric
      els = @elements.collect{|e| e * x}
      self.class.elements(els, false)
    when Matrix
      Matrix.column_vector(self) * x
    when Vector
      raise ErrOperationNotDefined, ["*", self.class, x.class]
    else
      apply_through_coercion(x, __method__)
    end
  end

  #
  # Vector addition.
  #
  def +(v)
    case v
    when Vector
      raise ErrDimensionMismatch if size != v.size
      els = collect2(v) {|v1, v2|
        v1 + v2
      }
      self.class.elements(els, false)
    when Matrix
      Matrix.column_vector(self) + v
    else
      apply_through_coercion(v, __method__)
    end
  end

  #
  # Vector subtraction.
  #
  def -(v)
    case v
    when Vector
      raise ErrDimensionMismatch if size != v.size
      els = collect2(v) {|v1, v2|
        v1 - v2
      }
      self.class.elements(els, false)
    when Matrix
      Matrix.column_vector(self) - v
    else
      apply_through_coercion(v, __method__)
    end
  end

  #
  # Vector division.
  #
  def /(x)
    case x
    when Numeric
      els = @elements.collect{|e| e / x}
      self.class.elements(els, false)
    when Matrix, Vector
      raise ErrOperationNotDefined, ["/", self.class, x.class]
    else
      apply_through_coercion(x, __method__)
    end
  end

  def +@
    self
  end

  def -@
    collect {|e| -e }
  end

  #--
  # VECTOR FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Returns the inner product of this vector with the other.
  #   Vector[4,7].inner_product Vector[10,1]  => 47
  #
  def inner_product(v)
    raise ErrDimensionMismatch if size != v.size

    p = 0
    each2(v) {|v1, v2|
      p += v1 * v2.conj
    }
    p
  end
  alias_method :dot, :inner_product

  #
  # Returns the cross product of this vector with the others.
  #   Vector[1, 0, 0].cross_product Vector[0, 1, 0]   => Vector[0, 0, 1]
  #
  # It is generalized to other dimensions to return a vector perpendicular
  # to the arguments.
  #   Vector[1, 2].cross_product # => Vector[-2, 1]
  #   Vector[1, 0, 0, 0].cross_product(
  #      Vector[0, 1, 0, 0],
  #      Vector[0, 0, 1, 0]
  #   )  #=> Vector[0, 0, 0, 1]
  #
  def cross_product(*vs)
    raise ErrOperationNotDefined, "cross product is not defined on vectors of dimension #{size}" unless size >= 2
    raise ArgumentError, "wrong number of arguments (#{vs.size} for #{size - 2})" unless vs.size == size - 2
    vs.each do |v|
      raise TypeError, "expected Vector, got #{v.class}" unless v.is_a? Vector
      raise ErrDimensionMismatch unless v.size == size
    end
    case size
    when 2
      Vector[-@elements[1], @elements[0]]
    when 3
      v = vs[0]
      Vector[ v[2]*@elements[1] - v[1]*@elements[2],
        v[0]*@elements[2] - v[2]*@elements[0],
        v[1]*@elements[0] - v[0]*@elements[1] ]
    else
      rows = self, *vs, Array.new(size) {|i| Vector.basis(size: size, index: i) }
      Matrix.rows(rows).laplace_expansion(row: size - 1)
    end
  end
  alias_method :cross, :cross_product

  #
  # Like Array#collect.
  #
  def collect(&block) # :yield: e
    return to_enum(:collect) unless block_given?
    els = @elements.collect(&block)
    self.class.elements(els, false)
  end
  alias_method :map, :collect

  #
  # Like Array#collect!
  #
  def collect!(&block)
    return to_enum(:collect!) unless block_given?
    raise FrozenError, "can't modify frozen Vector" if frozen?
    @elements.collect!(&block)
    self
  end
  alias map! collect!

  #
  # Returns the modulus (Pythagorean distance) of the vector.
  #   Vector[5,8,2].r => 9.643650761
  #
  def magnitude
    Math.sqrt(@elements.inject(0) {|v, e| v + e.abs2})
  end
  alias_method :r, :magnitude
  alias_method :norm, :magnitude

  #
  # Like Vector#collect2, but returns a Vector instead of an Array.
  #
  def map2(v, &block) # :yield: e1, e2
    return to_enum(:map2, v) unless block_given?
    els = collect2(v, &block)
    self.class.elements(els, false)
  end

  class ZeroVectorError < StandardError
  end
  #
  # Returns a new vector with the same direction but with norm 1.
  #   v = Vector[5,8,2].normalize
  #   # => Vector[0.5184758473652127, 0.8295613557843402, 0.20739033894608505]
  #   v.norm => 1.0
  #
  def normalize
    n = magnitude
    raise ZeroVectorError, "Zero vectors can not be normalized" if n == 0
    self / n
  end

  #
  # Returns an angle with another vector. Result is within the [0..Math::PI].
  #   Vector[1,0].angle_with(Vector[0,1])
  #   # => Math::PI / 2
  #
  def angle_with(v)
    raise TypeError, "Expected a Vector, got a #{v.class}" unless v.is_a?(Vector)
    raise ErrDimensionMismatch if size != v.size
    prod = magnitude * v.magnitude
    raise ZeroVectorError, "Can't get angle of zero vector" if prod == 0
    dot = inner_product(v)
    if dot.abs >= prod
      dot.positive? ? 0 : Math::PI
    else
      Math.acos(dot / prod)
    end
  end

  #--
  # CONVERTING
  #++

  #
  # Creates a single-row matrix from this vector.
  #
  def covector
    Matrix.row_vector(self)
  end

  #
  # Returns the elements of the vector in an array.
  #
  def to_a
    @elements.dup
  end

  #
  # Return a single-column matrix from this vector
  #
  def to_matrix
    Matrix.column_vector(self)
  end

  def elements_to_f
    warn "Vector#elements_to_f is deprecated", uplevel: 1
    map(&:to_f)
  end

  def elements_to_i
    warn "Vector#elements_to_i is deprecated", uplevel: 1
    map(&:to_i)
  end

  def elements_to_r
    warn "Vector#elements_to_r is deprecated", uplevel: 1
    map(&:to_r)
  end

  #
  # The coerce method provides support for Ruby type coercion.
  # This coercion mechanism is used by Ruby to handle mixed-type
  # numeric operations: it is intended to find a compatible common
  # type between the two operands of the operator.
  # See also Numeric#coerce.
  #
  def coerce(other)
    case other
    when Numeric
      return Matrix::Scalar.new(other), self
    else
      raise TypeError, "#{self.class} can't be coerced into #{other.class}"
    end
  end

  #--
  # PRINTING -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  #++

  #
  # Overrides Object#to_s
  #
  def to_s
    "Vector[" + @elements.join(", ") + "]"
  end

  #
  # Overrides Object#inspect
  #
  def inspect
    "Vector" + @elements.inspect
  end
end
PKJH[�qo$share/licenses/alt-ruby27-devel/BSDLnu�[���Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
PKJH[!�V()�)�%share/licenses/alt-ruby27-devel/LEGALnu�[���# -*- rdoc -*-

= LEGAL NOTICE INFORMATION
--------------------------

All the files in this distribution are covered under either the Ruby's
license (see the file COPYING) or public-domain except some files
mentioned below.

ccan/build_assert/build_assert.h::
ccan/check_type/check_type.h::
ccan/container_of/container_of.h::
ccan/str/str.h::

  These files are licensed under the CC0.

  >>>
    https://creativecommons.org/choose/zero/

ccan/list/list.h::

  This file is licensed under the MIT License.

  >>>
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.

include/ruby/onigmo.h::
include/ruby/oniguruma.h::
regcomp.c::
regenc.c::
regenc.h::
regerror.c::
regexec.c::
regint.h::
regparse.c::
regparse.h::
enc/ascii.c::
enc/big5.c::
enc/cp949.c::
enc/emacs_mule.c::
enc/encdb.c::
enc/euc_jp.c::
enc/euc_kr.c::
enc/euc_tw.c::
enc/gb18030.c::
enc/gb2312.c::
enc/gbk.c::
enc/iso_8859_1.c::
enc/iso_8859_10.c::
enc/iso_8859_11.c::
enc/iso_8859_13.c::
enc/iso_8859_14.c::
enc/iso_8859_15.c::
enc/iso_8859_16.c::
enc/iso_8859_2.c::
enc/iso_8859_3.c::
enc/iso_8859_4.c::
enc/iso_8859_5.c::
enc/iso_8859_6.c::
enc/iso_8859_7.c::
enc/iso_8859_8.c::
enc/iso_8859_9.c::
enc/koi8_r.c::
enc/koi8_u.c::
enc/shift_jis.c::
enc/unicode.c::
enc/us_ascii.c::
enc/utf_16be.c::
enc/utf_16le.c::
enc/utf_32be.c::
enc/utf_32le.c::
enc/utf_8.c::
enc/windows_1251.c::

  Onigmo (Oniguruma-mod) LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    Copyright (c) 2011-2014  K.Takata  <kentkt AT csc DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  Oniguruma LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  * https://github.com/k-takata/Onigmo/
  * https://github.com/kkos/oniguruma
  * https://svnweb.freebsd.org/ports/head/devel/oniguruma/

    When this software is partly used or it is distributed with Ruby,
    this of Ruby follows the license of Ruby.

enc/trans/GB/GB12345%UCS.src::
enc/trans/GB/UCS%GB12345.src::
enc/trans/GB/GB2312%UCS.src::
enc/trans/GB/UCS%GB2312.src::

  These files have this explanatory texts.

  >>>
    This mapping data was created from files provided by Unicode, Inc.
    (The Unicode Consortium). The files were used to create a product supporting
    Unicode, as explicitly permitted in the files' copyright notices.
    Please note that Unicode, Inc. never made any claims as to fitness of these
    files for any particular purpose, and has ceased to publish the files many
    years ago.

enc/trans/JIS/JISX0201-KANA%UCS.src::
enc/trans/JIS/JISX0208\@1990%UCS.src::
enc/trans/JIS/JISX0212%UCS.src::
enc/trans/JIS/UCS%JISX0201-KANA.src::
enc/trans/JIS/UCS%JISX0208@1990.src::
enc/trans/JIS/UCS%JISX0212.src::

  These files are copyrighted as the following.

  >>>
    © 2015 Unicode®, Inc.

    For terms of use, see http://www.unicode.org/terms_of_use.html

enc/trans/JIS/JISX0213-1%UCS@BMP.src::
enc/trans/JIS/JISX0213-1%UCS@SIP.src::
enc/trans/JIS/JISX0213-2%UCS@BMP.src::
enc/trans/JIS/JISX0213-2%UCS@SIP.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    Copyright (C) 2006 Project X0213, All Rights Reserved.  
    You can use, modify, distribute this table freely.

enc/trans/JIS/UCS@BMP%JISX0213-1.src::
enc/trans/JIS/UCS@BMP%JISX0213-2.src::
enc/trans/JIS/UCS@SIP%JISX0213-1.src::
enc/trans/JIS/UCS@SIP%JISX0213-2.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    You can use, modify, distribute this table freely.

configure::

  This file is free software.

  >>>
    Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.

    This configure script is free software; the Free Software Foundation
    gives unlimited permission to copy, distribute and modify it.

tool/config.guess::
tool/config.sub::

  As long as you distribute these files with the file configure, they
  are covered under the Ruby's license.

  >>>
    Copyright 1992-2018 Free Software Foundation, Inc.

    This file is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, see <https://www.gnu.org/licenses/>.

    As a special exception to the GNU General Public License, if you
    distribute this file as part of a program that contains a
    configuration script generated by Autoconf, you may include it under
    the same distribution terms that you use for the rest of that
    program.  This Exception is an additional permission under section 7
    of the GNU General Public License, version 3 ("GPLv3").

parse.c::

  This file is licensed under the GPL, but is incorporated into Ruby and
  redistributed under the terms of the Ruby license, as permitted by the
  exception to the GPL below.

  >>>
    Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc.

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    As a special exception, you may create a larger work that contains
    part or all of the Bison parser skeleton and distribute that work
    under terms of your choice, so long as that work isn't itself a
    parser generator using the skeleton or a modified version thereof
    as a parser skeleton.  Alternatively, if you modify or redistribute
    the parser skeleton itself, you may (at your option) remove this
    special exception, which will cause the skeleton and the resulting
    Bison output files to be licensed under the GNU General Public
    License without this special exception.

    This special exception was added by the Free Software Foundation in
    version 2.2 of Bison.

missing/dtoa.c::

  This file is under these licenses.

  >>>
    Copyright (c) 1991, 2000, 2001 by Lucent Technologies.

    Permission to use, copy, modify, and distribute this software for any
    purpose without fee is hereby granted, provided that this entire notice
    is included in all copies of any software which is or includes a copy
    or modification of this software and in all copies of the supporting
    documentation for such software.

    THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
    WARRANTY.  IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
    REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
    OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.

  >>>
    Copyright (c) 2004-2008 David Schultz <das@FreeBSD.ORG>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

win32/win32.{c,h}::

  You can apply the Artistic License to these files. (or GPL,
  alternatively)

  >>>
    Copyright (c) 1993, Intergraph Corporation

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the perl README file.

missing/mt19937.c::

  This file is under the new-style BSD license.

  >>>
    A C-program for MT19937, with initialization improved 2002/2/10.
    Coded by Takuji Nishimura and Makoto Matsumoto.  
    This is a faster version by taking Shawn Cokus's optimization,
    Matthe Bellew's simplification, Isaku Wada's real version.

    Before using, initialize the state by using init_genrand(seed)
    or init_by_array(init_key, key_length).

    Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. The names of its contributors may not be used to endorse or promote
       products derived from this software without specific prior written
       permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


    Any feedback is very welcome.
    http://www.math.keio.ac.jp/matumoto/emt.html
    email: matumoto@math.keio.ac.jp

  The Wayback Machine url: http://web.archive.org/web/19990429082237/http://www.math.keio.ac.jp/matumoto/emt.html

missing/procstat_vm.c::

  This file is under the new-style BSD license.

  >>>
    Copyright (c) 2007 Robert N. M. Watson  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    $FreeBSD: head/usr.bin/procstat/procstat_vm.c 261780 2014-02-11 21:57:37Z jhb $

vsnprintf.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1990, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Chris Torek.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    IMPORTANT NOTE:
    --------------
    From ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
    paragraph 3 above is now null and void.

st.c::
strftime.c::
include/ruby/st.h::
missing/acosh.c::
missing/alloca.c::
missing/dup2.c::
missing/erf.c::
missing/finite.c::
missing/hypot.c::
missing/isinf.c::
missing/isnan.c::
missing/lgamma_r.c::
missing/memcmp.c::
missing/memmove.c::
missing/strchr.c::
missing/strerror.c::
missing/strstr.c::
missing/tgamma.c::
ext/date/date_strftime.c::
ext/digest/sha1/sha1.c::
ext/digest/sha1/sha1.h::
ext/sdbm/_sdbm.c::
ext/sdbm/sdbm.h::

  These files are all under public domain.

missing/crypt.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1989, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Tom Truscott.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/setproctitle.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright 2003 Damien Miller  
    Copyright (c) 1983, 1995-1997 Eric P. Allman  
    Copyright (c) 1988, 1993  
    The Regents of the University of California.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/strlcat.c::
missing/strlcpy.c::

  These files are under an ISC-style license.

  >>>
    Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>

    Permission to use, copy, modify, and distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

missing/langinfo.c::

  This file is from http://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c.
  Ruby uses a modified version. The file contains the following
  author/copyright notice:

  >>>
    Markus.Kuhn@cl.cam.ac.uk -- 2002-03-11  
    Permission to use, copy, modify, and distribute this software
    for any purpose and without fee is hereby granted. The author
    disclaims all warranties with regard to this software.

ext/digest/md5/md5.c::
ext/digest/md5/md5.h::

  These files are under the following license.  Ruby uses modified
  versions of them.

  >>>
    Copyright (C) 1999, 2000 Aladdin Enterprises.  All rights reserved.

    This software is provided 'as-is', without any express or implied
    warranty.  In no event will the authors be held liable for any damages
    arising from the use of this software.

    Permission is granted to anyone to use this software for any purpose,
    including commercial applications, and to alter it and redistribute it
    freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must not
       claim that you wrote the original software. If you use this software
       in a product, an acknowledgment in the product documentation would be
       appreciated but is not required.
    2. Altered source versions must be plainly marked as such, and must not be
       misrepresented as being the original software.
    3. This notice may not be removed or altered from any source distribution.

    L. Peter Deutsch
    ghost@aladdin.com

ext/digest/rmd160/rmd160.c::
ext/digest/rmd160/rmd160.h::

  These files have the following copyright information, and by the
  author we are allowed to use it under the new-style BSD license.

  >>>
    AUTHOR::  Antoon Bosselaers, ESAT-COSIC
              (Arranged for libc by Todd C. Miller)
    DATE::    1 March 1996

    Copyright (c) Katholieke Universiteit Leuven
    1996, All Rights Reserved

ext/digest/sha2/sha2.c::
ext/digest/sha2/sha2.h::

  These files are under the new-style BSD license.

  >>>
    Copyright 2000 Aaron D. Gifford.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holder nor the names of contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTOR(S) ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/json/generator/generator.c::

  The file contains the following copyright notice.

  >>>
    Copyright 2001-2004 Unicode, Inc.

    Disclaimer::

      This source code is provided as is by Unicode, Inc. No claims are
      made as to fitness for any particular purpose. No warranties of any
      kind are expressed or implied. The recipient agrees to determine
      applicability of information provided. If this file has been
      purchased on magnetic or optical media from Unicode, Inc., the
      sole remedy for any claim will be exchange of defective media
      within 90 days of receipt.

    Limitations on Rights to Redistribute This Code::

      Unicode, Inc. hereby grants the right to freely use the information
      supplied in this file in the creation of products supporting the
      Unicode Standard, and to make copies of this file in any form
      for internal or external distribution as long as this notice
      remains attached.

ext/nkf/nkf-utf8/config.h::
ext/nkf/nkf-utf8/nkf.c::
ext/nkf/nkf-utf8/utf8tbl.c::

  These files are under the following license.  So to speak, it is
  copyrighted semi-public-domain software.

  >>>
    Copyright (C) 1987, Fujitsu LTD. (Itaru ICHIKAWA)

    Everyone is permitted to do anything on this program
    including copying, modifying, improving,
    as long as you don't try to pretend that you wrote it.
    i.e., the above copyright notice has to appear in all copies.
    Binary distribution requires original version messages.
    You don't have to ask before copying, redistribution or publishing.
    THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.

ext/psych::
test/psych::

  The files under these directories are under the following license, except for
  ext/psych/yaml.

  >>>
    Copyright 2009 Aaron Patterson, et al.

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the 'Software'), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/psych/yaml::

  The files under this directory are under the following license.

  >>>
    Copyright (c) 2006 Kirill Simonov

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/socket/addrinfo.h::
ext/socket/getaddrinfo.c::
ext/socket/getnameinfo.c::

  These files are under the new-style BSD license.

  >>>
    Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the project nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/win32ole/win32ole.c::

  You can apply the Artistic License to this file. (or GPL,
  alternatively)

  >>>
    (c) 1995 Microsoft Corporation. All rights reserved.
    Developed by ActiveWare Internet Corp., http://www.ActiveWare.com

    Other modifications Copyright (c) 1997, 1998 by Gurusamy Sarathy
    <gsar@umich.edu> and Jan Dubois <jan.dubois@ibm.net>

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the README file
    of the Perl distribution.

  The Wayback Machine url: http://web.archive.org/web/19970607104352/http://www.activeware.com:80/

lib/rdoc/generator/template/darkfish/css/fonts.css::

  This file is licensed under the SIL Open Font License.

  >>>
    http://scripts.sil.org/OFL

spec/mspec::
spec/ruby::

  The files under these directories are under the following license.

  >>>
    Copyright (c) 2008 Engine Yard, Inc. All rights reserved.

    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.

lib/rubygems.rb::
lib/rubygems::
test/rubygems::

  RubyGems is under the following license.

  >>>
    RubyGems is copyrighted free software by Chad Fowler, Rich Kilmer, Jim
    Weirich and others.  You can redistribute it and/or modify it under
    either the terms of the MIT license (see the file MIT.txt), or the
    conditions below:

    1. You may make and give away verbatim copies of the source form of the
       software without restriction, provided that you duplicate all of the
       original copyright notices and associated disclaimers.

    2. You may modify your copy of the software in any way, provided that
       you do at least ONE of the following:

       a. place your modifications in the Public Domain or otherwise
          make them Freely Available, such as by posting said
          modifications to Usenet or an equivalent medium, or by allowing
          the author to include your modifications in the software.

       b. use the modified software only within your corporation or
          organization.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    3. You may distribute the software in object code or executable
       form, provided that you do at least ONE of the following:

       a. distribute the executables and library files of the software,
          together with instructions (in the manual page or equivalent)
          on where to get the original distribution.

       b. accompany the distribution with the machine-readable source of
          the software.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    4. You may modify and include the part of the software into any other
       software (possibly commercial).

    5. The scripts and library files supplied as input to or produced as
       output from the software do not automatically fall under the
       copyright of the software, but belong to whomever generated them,
       and may be sold commercially, and may be aggregated with this
       software.

    6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
       IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
       PURPOSE.

lib/bundler::
lib/bundler.rb::
lib/bundler.gemspec::
spec/bundler::
man/bundle-*,gemfile.*::

  Bundler is under the following license.

  >>>
    Portions copyright (c) 2010 Andre Arko  
    Portions copyright (c) 2009 Engine Yard  

    MIT License::

      Permission is hereby granted, free of charge, to any person obtaining
      a copy of this software and associated documentation files (the
      "Software"), to deal in the Software without restriction, including
      without limitation the rights to use, copy, modify, merge, publish,
      distribute, sublicense, and/or sell copies of the Software, and to
      permit persons to whom the Software is furnished to do so, subject to
      the following conditions:

      The above copyright notice and this permission notice shall be
      included in all copies or substantial portions of the Software.

      THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
PKJH[��FN�F�F#share/licenses/alt-ruby27-devel/GPLnu�[���                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
PKJH[Q�{	{	'share/licenses/alt-ruby27-devel/COPYINGnu�[���Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
You can redistribute it and/or modify it under either the terms of the
2-clause BSDL (see the file BSDL), or the conditions below:

1. You may make and give away verbatim copies of the source form of the
   software without restriction, provided that you duplicate all of the
   original copyright notices and associated disclaimers.

2. You may modify your copy of the software in any way, provided that
   you do at least ONE of the following:

   a. place your modifications in the Public Domain or otherwise
      make them Freely Available, such as by posting said
      modifications to Usenet or an equivalent medium, or by allowing
      the author to include your modifications in the software.

   b. use the modified software only within your corporation or
      organization.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

3. You may distribute the software in object code or binary form,
   provided that you do at least ONE of the following:

   a. distribute the binaries and library files of the software,
      together with instructions (in the manual page or equivalent)
      on where to get the original distribution.

   b. accompany the distribution with the machine-readable source of
      the software.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

4. You may modify and include the part of the software into any other
   software (possibly commercial).  But some files in the distribution
   are not written by the author, so that they are not under these terms.

   For the list of those files and their copying conditions, see the
   file LEGAL.

5. The scripts and library files supplied as input to or produced as
   output from the software do not automatically fall under the
   copyright of the software, but belong to whomever generated them,
   and may be sold commercially, and may be aggregated with this
   software.

6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   PURPOSE.
PKJH[z]��	�	*share/licenses/alt-ruby27-devel/COPYING.janu�[���本プログラムはフリーソフトウェアです.2-clause BSDL
または以下に示す条件で本プログラムを再配布できます
2-clause BSDLについてはBSDLファイルを参照して下さい.

1. 複製は制限なく自由です.

2. 以下の条件のいずれかを満たす時に本プログラムのソースを
   自由に変更できます.

   a.  ネットニューズにポストしたり,作者に変更を送付する
       などの方法で,変更を公開する.

   b.  変更した本プログラムを自分の所属する組織内部だけで
       使う.

   c.  変更点を明示したうえ,ソフトウェアの名前を変更する.
       そのソフトウェアを配布する時には変更前の本プログラ
       ムも同時に配布する.または変更前の本プログラムのソー
       スの入手法を明示する.

   d.  その他の変更条件を作者と合意する.

3. 以下の条件のいずれかを満たす時に本プログラムをコンパイ
   ルしたオブジェクトコードや実行形式でも配布できます.

   a.  バイナリを受け取った人がソースを入手できるように,
       ソースの入手法を明示する.

   b.  機械可読なソースコードを添付する.

   c.  変更を行ったバイナリは名前を変更したうえ,オリジナ
       ルのソースコードの入手法を明示する.

   d.  その他の配布条件を作者と合意する.

4. 他のプログラムへの引用はいかなる目的であれ自由です.た
   だし,本プログラムに含まれる他の作者によるコードは,そ
   れぞれの作者の意向による制限が加えられる場合があります.

   それらファイルの一覧とそれぞれの配布条件などに付いては
   LEGALファイルを参照してください.

5. 本プログラムへの入力となるスクリプトおよび,本プログラ
   ムからの出力の権利は本プログラムの作者ではなく,それぞ
   れの入出力を生成した人に属します.また,本プログラムに
   組み込まれるための拡張ライブラリについても同様です.

6. 本プログラムは無保証です.作者は本プログラムをサポート
   する意志はありますが,プログラム自身のバグあるいは本プ
   ログラムの実行などから発生するいかなる損害に対しても責
   任を持ちません.
PKJH[�qoshare/licenses/alt-ruby27/BSDLnu�[���Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
PKJH[!�V()�)�share/licenses/alt-ruby27/LEGALnu�[���# -*- rdoc -*-

= LEGAL NOTICE INFORMATION
--------------------------

All the files in this distribution are covered under either the Ruby's
license (see the file COPYING) or public-domain except some files
mentioned below.

ccan/build_assert/build_assert.h::
ccan/check_type/check_type.h::
ccan/container_of/container_of.h::
ccan/str/str.h::

  These files are licensed under the CC0.

  >>>
    https://creativecommons.org/choose/zero/

ccan/list/list.h::

  This file is licensed under the MIT License.

  >>>
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.

include/ruby/onigmo.h::
include/ruby/oniguruma.h::
regcomp.c::
regenc.c::
regenc.h::
regerror.c::
regexec.c::
regint.h::
regparse.c::
regparse.h::
enc/ascii.c::
enc/big5.c::
enc/cp949.c::
enc/emacs_mule.c::
enc/encdb.c::
enc/euc_jp.c::
enc/euc_kr.c::
enc/euc_tw.c::
enc/gb18030.c::
enc/gb2312.c::
enc/gbk.c::
enc/iso_8859_1.c::
enc/iso_8859_10.c::
enc/iso_8859_11.c::
enc/iso_8859_13.c::
enc/iso_8859_14.c::
enc/iso_8859_15.c::
enc/iso_8859_16.c::
enc/iso_8859_2.c::
enc/iso_8859_3.c::
enc/iso_8859_4.c::
enc/iso_8859_5.c::
enc/iso_8859_6.c::
enc/iso_8859_7.c::
enc/iso_8859_8.c::
enc/iso_8859_9.c::
enc/koi8_r.c::
enc/koi8_u.c::
enc/shift_jis.c::
enc/unicode.c::
enc/us_ascii.c::
enc/utf_16be.c::
enc/utf_16le.c::
enc/utf_32be.c::
enc/utf_32le.c::
enc/utf_8.c::
enc/windows_1251.c::

  Onigmo (Oniguruma-mod) LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    Copyright (c) 2011-2014  K.Takata  <kentkt AT csc DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  Oniguruma LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  * https://github.com/k-takata/Onigmo/
  * https://github.com/kkos/oniguruma
  * https://svnweb.freebsd.org/ports/head/devel/oniguruma/

    When this software is partly used or it is distributed with Ruby,
    this of Ruby follows the license of Ruby.

enc/trans/GB/GB12345%UCS.src::
enc/trans/GB/UCS%GB12345.src::
enc/trans/GB/GB2312%UCS.src::
enc/trans/GB/UCS%GB2312.src::

  These files have this explanatory texts.

  >>>
    This mapping data was created from files provided by Unicode, Inc.
    (The Unicode Consortium). The files were used to create a product supporting
    Unicode, as explicitly permitted in the files' copyright notices.
    Please note that Unicode, Inc. never made any claims as to fitness of these
    files for any particular purpose, and has ceased to publish the files many
    years ago.

enc/trans/JIS/JISX0201-KANA%UCS.src::
enc/trans/JIS/JISX0208\@1990%UCS.src::
enc/trans/JIS/JISX0212%UCS.src::
enc/trans/JIS/UCS%JISX0201-KANA.src::
enc/trans/JIS/UCS%JISX0208@1990.src::
enc/trans/JIS/UCS%JISX0212.src::

  These files are copyrighted as the following.

  >>>
    © 2015 Unicode®, Inc.

    For terms of use, see http://www.unicode.org/terms_of_use.html

enc/trans/JIS/JISX0213-1%UCS@BMP.src::
enc/trans/JIS/JISX0213-1%UCS@SIP.src::
enc/trans/JIS/JISX0213-2%UCS@BMP.src::
enc/trans/JIS/JISX0213-2%UCS@SIP.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    Copyright (C) 2006 Project X0213, All Rights Reserved.  
    You can use, modify, distribute this table freely.

enc/trans/JIS/UCS@BMP%JISX0213-1.src::
enc/trans/JIS/UCS@BMP%JISX0213-2.src::
enc/trans/JIS/UCS@SIP%JISX0213-1.src::
enc/trans/JIS/UCS@SIP%JISX0213-2.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    You can use, modify, distribute this table freely.

configure::

  This file is free software.

  >>>
    Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.

    This configure script is free software; the Free Software Foundation
    gives unlimited permission to copy, distribute and modify it.

tool/config.guess::
tool/config.sub::

  As long as you distribute these files with the file configure, they
  are covered under the Ruby's license.

  >>>
    Copyright 1992-2018 Free Software Foundation, Inc.

    This file is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, see <https://www.gnu.org/licenses/>.

    As a special exception to the GNU General Public License, if you
    distribute this file as part of a program that contains a
    configuration script generated by Autoconf, you may include it under
    the same distribution terms that you use for the rest of that
    program.  This Exception is an additional permission under section 7
    of the GNU General Public License, version 3 ("GPLv3").

parse.c::

  This file is licensed under the GPL, but is incorporated into Ruby and
  redistributed under the terms of the Ruby license, as permitted by the
  exception to the GPL below.

  >>>
    Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc.

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    As a special exception, you may create a larger work that contains
    part or all of the Bison parser skeleton and distribute that work
    under terms of your choice, so long as that work isn't itself a
    parser generator using the skeleton or a modified version thereof
    as a parser skeleton.  Alternatively, if you modify or redistribute
    the parser skeleton itself, you may (at your option) remove this
    special exception, which will cause the skeleton and the resulting
    Bison output files to be licensed under the GNU General Public
    License without this special exception.

    This special exception was added by the Free Software Foundation in
    version 2.2 of Bison.

missing/dtoa.c::

  This file is under these licenses.

  >>>
    Copyright (c) 1991, 2000, 2001 by Lucent Technologies.

    Permission to use, copy, modify, and distribute this software for any
    purpose without fee is hereby granted, provided that this entire notice
    is included in all copies of any software which is or includes a copy
    or modification of this software and in all copies of the supporting
    documentation for such software.

    THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
    WARRANTY.  IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
    REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
    OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.

  >>>
    Copyright (c) 2004-2008 David Schultz <das@FreeBSD.ORG>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

win32/win32.{c,h}::

  You can apply the Artistic License to these files. (or GPL,
  alternatively)

  >>>
    Copyright (c) 1993, Intergraph Corporation

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the perl README file.

missing/mt19937.c::

  This file is under the new-style BSD license.

  >>>
    A C-program for MT19937, with initialization improved 2002/2/10.
    Coded by Takuji Nishimura and Makoto Matsumoto.  
    This is a faster version by taking Shawn Cokus's optimization,
    Matthe Bellew's simplification, Isaku Wada's real version.

    Before using, initialize the state by using init_genrand(seed)
    or init_by_array(init_key, key_length).

    Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. The names of its contributors may not be used to endorse or promote
       products derived from this software without specific prior written
       permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


    Any feedback is very welcome.
    http://www.math.keio.ac.jp/matumoto/emt.html
    email: matumoto@math.keio.ac.jp

  The Wayback Machine url: http://web.archive.org/web/19990429082237/http://www.math.keio.ac.jp/matumoto/emt.html

missing/procstat_vm.c::

  This file is under the new-style BSD license.

  >>>
    Copyright (c) 2007 Robert N. M. Watson  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    $FreeBSD: head/usr.bin/procstat/procstat_vm.c 261780 2014-02-11 21:57:37Z jhb $

vsnprintf.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1990, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Chris Torek.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    IMPORTANT NOTE:
    --------------
    From ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
    paragraph 3 above is now null and void.

st.c::
strftime.c::
include/ruby/st.h::
missing/acosh.c::
missing/alloca.c::
missing/dup2.c::
missing/erf.c::
missing/finite.c::
missing/hypot.c::
missing/isinf.c::
missing/isnan.c::
missing/lgamma_r.c::
missing/memcmp.c::
missing/memmove.c::
missing/strchr.c::
missing/strerror.c::
missing/strstr.c::
missing/tgamma.c::
ext/date/date_strftime.c::
ext/digest/sha1/sha1.c::
ext/digest/sha1/sha1.h::
ext/sdbm/_sdbm.c::
ext/sdbm/sdbm.h::

  These files are all under public domain.

missing/crypt.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1989, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Tom Truscott.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/setproctitle.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright 2003 Damien Miller  
    Copyright (c) 1983, 1995-1997 Eric P. Allman  
    Copyright (c) 1988, 1993  
    The Regents of the University of California.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/strlcat.c::
missing/strlcpy.c::

  These files are under an ISC-style license.

  >>>
    Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>

    Permission to use, copy, modify, and distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

missing/langinfo.c::

  This file is from http://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c.
  Ruby uses a modified version. The file contains the following
  author/copyright notice:

  >>>
    Markus.Kuhn@cl.cam.ac.uk -- 2002-03-11  
    Permission to use, copy, modify, and distribute this software
    for any purpose and without fee is hereby granted. The author
    disclaims all warranties with regard to this software.

ext/digest/md5/md5.c::
ext/digest/md5/md5.h::

  These files are under the following license.  Ruby uses modified
  versions of them.

  >>>
    Copyright (C) 1999, 2000 Aladdin Enterprises.  All rights reserved.

    This software is provided 'as-is', without any express or implied
    warranty.  In no event will the authors be held liable for any damages
    arising from the use of this software.

    Permission is granted to anyone to use this software for any purpose,
    including commercial applications, and to alter it and redistribute it
    freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must not
       claim that you wrote the original software. If you use this software
       in a product, an acknowledgment in the product documentation would be
       appreciated but is not required.
    2. Altered source versions must be plainly marked as such, and must not be
       misrepresented as being the original software.
    3. This notice may not be removed or altered from any source distribution.

    L. Peter Deutsch
    ghost@aladdin.com

ext/digest/rmd160/rmd160.c::
ext/digest/rmd160/rmd160.h::

  These files have the following copyright information, and by the
  author we are allowed to use it under the new-style BSD license.

  >>>
    AUTHOR::  Antoon Bosselaers, ESAT-COSIC
              (Arranged for libc by Todd C. Miller)
    DATE::    1 March 1996

    Copyright (c) Katholieke Universiteit Leuven
    1996, All Rights Reserved

ext/digest/sha2/sha2.c::
ext/digest/sha2/sha2.h::

  These files are under the new-style BSD license.

  >>>
    Copyright 2000 Aaron D. Gifford.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holder nor the names of contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTOR(S) ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/json/generator/generator.c::

  The file contains the following copyright notice.

  >>>
    Copyright 2001-2004 Unicode, Inc.

    Disclaimer::

      This source code is provided as is by Unicode, Inc. No claims are
      made as to fitness for any particular purpose. No warranties of any
      kind are expressed or implied. The recipient agrees to determine
      applicability of information provided. If this file has been
      purchased on magnetic or optical media from Unicode, Inc., the
      sole remedy for any claim will be exchange of defective media
      within 90 days of receipt.

    Limitations on Rights to Redistribute This Code::

      Unicode, Inc. hereby grants the right to freely use the information
      supplied in this file in the creation of products supporting the
      Unicode Standard, and to make copies of this file in any form
      for internal or external distribution as long as this notice
      remains attached.

ext/nkf/nkf-utf8/config.h::
ext/nkf/nkf-utf8/nkf.c::
ext/nkf/nkf-utf8/utf8tbl.c::

  These files are under the following license.  So to speak, it is
  copyrighted semi-public-domain software.

  >>>
    Copyright (C) 1987, Fujitsu LTD. (Itaru ICHIKAWA)

    Everyone is permitted to do anything on this program
    including copying, modifying, improving,
    as long as you don't try to pretend that you wrote it.
    i.e., the above copyright notice has to appear in all copies.
    Binary distribution requires original version messages.
    You don't have to ask before copying, redistribution or publishing.
    THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.

ext/psych::
test/psych::

  The files under these directories are under the following license, except for
  ext/psych/yaml.

  >>>
    Copyright 2009 Aaron Patterson, et al.

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the 'Software'), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/psych/yaml::

  The files under this directory are under the following license.

  >>>
    Copyright (c) 2006 Kirill Simonov

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/socket/addrinfo.h::
ext/socket/getaddrinfo.c::
ext/socket/getnameinfo.c::

  These files are under the new-style BSD license.

  >>>
    Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the project nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/win32ole/win32ole.c::

  You can apply the Artistic License to this file. (or GPL,
  alternatively)

  >>>
    (c) 1995 Microsoft Corporation. All rights reserved.
    Developed by ActiveWare Internet Corp., http://www.ActiveWare.com

    Other modifications Copyright (c) 1997, 1998 by Gurusamy Sarathy
    <gsar@umich.edu> and Jan Dubois <jan.dubois@ibm.net>

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the README file
    of the Perl distribution.

  The Wayback Machine url: http://web.archive.org/web/19970607104352/http://www.activeware.com:80/

lib/rdoc/generator/template/darkfish/css/fonts.css::

  This file is licensed under the SIL Open Font License.

  >>>
    http://scripts.sil.org/OFL

spec/mspec::
spec/ruby::

  The files under these directories are under the following license.

  >>>
    Copyright (c) 2008 Engine Yard, Inc. All rights reserved.

    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.

lib/rubygems.rb::
lib/rubygems::
test/rubygems::

  RubyGems is under the following license.

  >>>
    RubyGems is copyrighted free software by Chad Fowler, Rich Kilmer, Jim
    Weirich and others.  You can redistribute it and/or modify it under
    either the terms of the MIT license (see the file MIT.txt), or the
    conditions below:

    1. You may make and give away verbatim copies of the source form of the
       software without restriction, provided that you duplicate all of the
       original copyright notices and associated disclaimers.

    2. You may modify your copy of the software in any way, provided that
       you do at least ONE of the following:

       a. place your modifications in the Public Domain or otherwise
          make them Freely Available, such as by posting said
          modifications to Usenet or an equivalent medium, or by allowing
          the author to include your modifications in the software.

       b. use the modified software only within your corporation or
          organization.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    3. You may distribute the software in object code or executable
       form, provided that you do at least ONE of the following:

       a. distribute the executables and library files of the software,
          together with instructions (in the manual page or equivalent)
          on where to get the original distribution.

       b. accompany the distribution with the machine-readable source of
          the software.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    4. You may modify and include the part of the software into any other
       software (possibly commercial).

    5. The scripts and library files supplied as input to or produced as
       output from the software do not automatically fall under the
       copyright of the software, but belong to whomever generated them,
       and may be sold commercially, and may be aggregated with this
       software.

    6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
       IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
       PURPOSE.

lib/bundler::
lib/bundler.rb::
lib/bundler.gemspec::
spec/bundler::
man/bundle-*,gemfile.*::

  Bundler is under the following license.

  >>>
    Portions copyright (c) 2010 Andre Arko  
    Portions copyright (c) 2009 Engine Yard  

    MIT License::

      Permission is hereby granted, free of charge, to any person obtaining
      a copy of this software and associated documentation files (the
      "Software"), to deal in the Software without restriction, including
      without limitation the rights to use, copy, modify, merge, publish,
      distribute, sublicense, and/or sell copies of the Software, and to
      permit persons to whom the Software is furnished to do so, subject to
      the following conditions:

      The above copyright notice and this permission notice shall be
      included in all copies or substantial portions of the Software.

      THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
PKJH[��FN�F�Fshare/licenses/alt-ruby27/GPLnu�[���                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
PKJH[Q�{	{	!share/licenses/alt-ruby27/COPYINGnu�[���Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
You can redistribute it and/or modify it under either the terms of the
2-clause BSDL (see the file BSDL), or the conditions below:

1. You may make and give away verbatim copies of the source form of the
   software without restriction, provided that you duplicate all of the
   original copyright notices and associated disclaimers.

2. You may modify your copy of the software in any way, provided that
   you do at least ONE of the following:

   a. place your modifications in the Public Domain or otherwise
      make them Freely Available, such as by posting said
      modifications to Usenet or an equivalent medium, or by allowing
      the author to include your modifications in the software.

   b. use the modified software only within your corporation or
      organization.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

3. You may distribute the software in object code or binary form,
   provided that you do at least ONE of the following:

   a. distribute the binaries and library files of the software,
      together with instructions (in the manual page or equivalent)
      on where to get the original distribution.

   b. accompany the distribution with the machine-readable source of
      the software.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

4. You may modify and include the part of the software into any other
   software (possibly commercial).  But some files in the distribution
   are not written by the author, so that they are not under these terms.

   For the list of those files and their copying conditions, see the
   file LEGAL.

5. The scripts and library files supplied as input to or produced as
   output from the software do not automatically fall under the
   copyright of the software, but belong to whomever generated them,
   and may be sold commercially, and may be aggregated with this
   software.

6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   PURPOSE.
PKJH[z]��	�	$share/licenses/alt-ruby27/COPYING.janu�[���本プログラムはフリーソフトウェアです.2-clause BSDL
または以下に示す条件で本プログラムを再配布できます
2-clause BSDLについてはBSDLファイルを参照して下さい.

1. 複製は制限なく自由です.

2. 以下の条件のいずれかを満たす時に本プログラムのソースを
   自由に変更できます.

   a.  ネットニューズにポストしたり,作者に変更を送付する
       などの方法で,変更を公開する.

   b.  変更した本プログラムを自分の所属する組織内部だけで
       使う.

   c.  変更点を明示したうえ,ソフトウェアの名前を変更する.
       そのソフトウェアを配布する時には変更前の本プログラ
       ムも同時に配布する.または変更前の本プログラムのソー
       スの入手法を明示する.

   d.  その他の変更条件を作者と合意する.

3. 以下の条件のいずれかを満たす時に本プログラムをコンパイ
   ルしたオブジェクトコードや実行形式でも配布できます.

   a.  バイナリを受け取った人がソースを入手できるように,
       ソースの入手法を明示する.

   b.  機械可読なソースコードを添付する.

   c.  変更を行ったバイナリは名前を変更したうえ,オリジナ
       ルのソースコードの入手法を明示する.

   d.  その他の配布条件を作者と合意する.

4. 他のプログラムへの引用はいかなる目的であれ自由です.た
   だし,本プログラムに含まれる他の作者によるコードは,そ
   れぞれの作者の意向による制限が加えられる場合があります.

   それらファイルの一覧とそれぞれの配布条件などに付いては
   LEGALファイルを参照してください.

5. 本プログラムへの入力となるスクリプトおよび,本プログラ
   ムからの出力の権利は本プログラムの作者ではなく,それぞ
   れの入出力を生成した人に属します.また,本プログラムに
   組み込まれるための拡張ライブラリについても同様です.

6. 本プログラムは無保証です.作者は本プログラムをサポート
   する意志はありますが,プログラム自身のバグあるいは本プ
   ログラムの実行などから発生するいかなる損害に対しても責
   任を持ちません.
PKJH[!�V()�)�$share/licenses/alt-ruby27-libs/LEGALnu�[���# -*- rdoc -*-

= LEGAL NOTICE INFORMATION
--------------------------

All the files in this distribution are covered under either the Ruby's
license (see the file COPYING) or public-domain except some files
mentioned below.

ccan/build_assert/build_assert.h::
ccan/check_type/check_type.h::
ccan/container_of/container_of.h::
ccan/str/str.h::

  These files are licensed under the CC0.

  >>>
    https://creativecommons.org/choose/zero/

ccan/list/list.h::

  This file is licensed under the MIT License.

  >>>
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.

include/ruby/onigmo.h::
include/ruby/oniguruma.h::
regcomp.c::
regenc.c::
regenc.h::
regerror.c::
regexec.c::
regint.h::
regparse.c::
regparse.h::
enc/ascii.c::
enc/big5.c::
enc/cp949.c::
enc/emacs_mule.c::
enc/encdb.c::
enc/euc_jp.c::
enc/euc_kr.c::
enc/euc_tw.c::
enc/gb18030.c::
enc/gb2312.c::
enc/gbk.c::
enc/iso_8859_1.c::
enc/iso_8859_10.c::
enc/iso_8859_11.c::
enc/iso_8859_13.c::
enc/iso_8859_14.c::
enc/iso_8859_15.c::
enc/iso_8859_16.c::
enc/iso_8859_2.c::
enc/iso_8859_3.c::
enc/iso_8859_4.c::
enc/iso_8859_5.c::
enc/iso_8859_6.c::
enc/iso_8859_7.c::
enc/iso_8859_8.c::
enc/iso_8859_9.c::
enc/koi8_r.c::
enc/koi8_u.c::
enc/shift_jis.c::
enc/unicode.c::
enc/us_ascii.c::
enc/utf_16be.c::
enc/utf_16le.c::
enc/utf_32be.c::
enc/utf_32le.c::
enc/utf_8.c::
enc/windows_1251.c::

  Onigmo (Oniguruma-mod) LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    Copyright (c) 2011-2014  K.Takata  <kentkt AT csc DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  Oniguruma LICENSE

  >>>
    Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

  * https://github.com/k-takata/Onigmo/
  * https://github.com/kkos/oniguruma
  * https://svnweb.freebsd.org/ports/head/devel/oniguruma/

    When this software is partly used or it is distributed with Ruby,
    this of Ruby follows the license of Ruby.

enc/trans/GB/GB12345%UCS.src::
enc/trans/GB/UCS%GB12345.src::
enc/trans/GB/GB2312%UCS.src::
enc/trans/GB/UCS%GB2312.src::

  These files have this explanatory texts.

  >>>
    This mapping data was created from files provided by Unicode, Inc.
    (The Unicode Consortium). The files were used to create a product supporting
    Unicode, as explicitly permitted in the files' copyright notices.
    Please note that Unicode, Inc. never made any claims as to fitness of these
    files for any particular purpose, and has ceased to publish the files many
    years ago.

enc/trans/JIS/JISX0201-KANA%UCS.src::
enc/trans/JIS/JISX0208\@1990%UCS.src::
enc/trans/JIS/JISX0212%UCS.src::
enc/trans/JIS/UCS%JISX0201-KANA.src::
enc/trans/JIS/UCS%JISX0208@1990.src::
enc/trans/JIS/UCS%JISX0212.src::

  These files are copyrighted as the following.

  >>>
    © 2015 Unicode®, Inc.

    For terms of use, see http://www.unicode.org/terms_of_use.html

enc/trans/JIS/JISX0213-1%UCS@BMP.src::
enc/trans/JIS/JISX0213-1%UCS@SIP.src::
enc/trans/JIS/JISX0213-2%UCS@BMP.src::
enc/trans/JIS/JISX0213-2%UCS@SIP.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    Copyright (C) 2006 Project X0213, All Rights Reserved.  
    You can use, modify, distribute this table freely.

enc/trans/JIS/UCS@BMP%JISX0213-1.src::
enc/trans/JIS/UCS@BMP%JISX0213-2.src::
enc/trans/JIS/UCS@SIP%JISX0213-1.src::
enc/trans/JIS/UCS@SIP%JISX0213-2.src::

  These files are copyrighted as the following.

  >>>
    Copyright (C) 2001 earthian@tama.or.jp, All Rights Reserved.  
    Copyright (C) 2001 I'O, All Rights Reserved.  
    You can use, modify, distribute this table freely.

configure::

  This file is free software.

  >>>
    Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.

    This configure script is free software; the Free Software Foundation
    gives unlimited permission to copy, distribute and modify it.

tool/config.guess::
tool/config.sub::

  As long as you distribute these files with the file configure, they
  are covered under the Ruby's license.

  >>>
    Copyright 1992-2018 Free Software Foundation, Inc.

    This file is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, see <https://www.gnu.org/licenses/>.

    As a special exception to the GNU General Public License, if you
    distribute this file as part of a program that contains a
    configuration script generated by Autoconf, you may include it under
    the same distribution terms that you use for the rest of that
    program.  This Exception is an additional permission under section 7
    of the GNU General Public License, version 3 ("GPLv3").

parse.c::

  This file is licensed under the GPL, but is incorporated into Ruby and
  redistributed under the terms of the Ruby license, as permitted by the
  exception to the GPL below.

  >>>
    Copyright (C) 1984, 1989-1990, 2000-2015, 2018 Free Software Foundation, Inc.

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    As a special exception, you may create a larger work that contains
    part or all of the Bison parser skeleton and distribute that work
    under terms of your choice, so long as that work isn't itself a
    parser generator using the skeleton or a modified version thereof
    as a parser skeleton.  Alternatively, if you modify or redistribute
    the parser skeleton itself, you may (at your option) remove this
    special exception, which will cause the skeleton and the resulting
    Bison output files to be licensed under the GNU General Public
    License without this special exception.

    This special exception was added by the Free Software Foundation in
    version 2.2 of Bison.

missing/dtoa.c::

  This file is under these licenses.

  >>>
    Copyright (c) 1991, 2000, 2001 by Lucent Technologies.

    Permission to use, copy, modify, and distribute this software for any
    purpose without fee is hereby granted, provided that this entire notice
    is included in all copies of any software which is or includes a copy
    or modification of this software and in all copies of the supporting
    documentation for such software.

    THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
    WARRANTY.  IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
    REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
    OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.

  >>>
    Copyright (c) 2004-2008 David Schultz <das@FreeBSD.ORG>  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

win32/win32.{c,h}::

  You can apply the Artistic License to these files. (or GPL,
  alternatively)

  >>>
    Copyright (c) 1993, Intergraph Corporation

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the perl README file.

missing/mt19937.c::

  This file is under the new-style BSD license.

  >>>
    A C-program for MT19937, with initialization improved 2002/2/10.
    Coded by Takuji Nishimura and Makoto Matsumoto.  
    This is a faster version by taking Shawn Cokus's optimization,
    Matthe Bellew's simplification, Isaku Wada's real version.

    Before using, initialize the state by using init_genrand(seed)
    or init_by_array(init_key, key_length).

    Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. The names of its contributors may not be used to endorse or promote
       products derived from this software without specific prior written
       permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


    Any feedback is very welcome.
    http://www.math.keio.ac.jp/matumoto/emt.html
    email: matumoto@math.keio.ac.jp

  The Wayback Machine url: http://web.archive.org/web/19990429082237/http://www.math.keio.ac.jp/matumoto/emt.html

missing/procstat_vm.c::

  This file is under the new-style BSD license.

  >>>
    Copyright (c) 2007 Robert N. M. Watson  
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    $FreeBSD: head/usr.bin/procstat/procstat_vm.c 261780 2014-02-11 21:57:37Z jhb $

vsnprintf.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1990, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Chris Torek.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

    IMPORTANT NOTE:
    --------------
    From ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
    paragraph 3 above is now null and void.

st.c::
strftime.c::
include/ruby/st.h::
missing/acosh.c::
missing/alloca.c::
missing/dup2.c::
missing/erf.c::
missing/finite.c::
missing/hypot.c::
missing/isinf.c::
missing/isnan.c::
missing/lgamma_r.c::
missing/memcmp.c::
missing/memmove.c::
missing/strchr.c::
missing/strerror.c::
missing/strstr.c::
missing/tgamma.c::
ext/date/date_strftime.c::
ext/digest/sha1/sha1.c::
ext/digest/sha1/sha1.h::
ext/sdbm/_sdbm.c::
ext/sdbm/sdbm.h::

  These files are all under public domain.

missing/crypt.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright (c) 1989, 1993  
    The Regents of the University of California.  All rights reserved.

    This code is derived from software contributed to Berkeley by
    Tom Truscott.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/setproctitle.c::

  This file is under the old-style BSD license.  Note that the
  paragraph 3 below is now null and void.

  >>>
    Copyright 2003 Damien Miller  
    Copyright (c) 1983, 1995-1997 Eric P. Allman  
    Copyright (c) 1988, 1993  
    The Regents of the University of California.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the University nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

missing/strlcat.c::
missing/strlcpy.c::

  These files are under an ISC-style license.

  >>>
    Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>

    Permission to use, copy, modify, and distribute this software for any
    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

missing/langinfo.c::

  This file is from http://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c.
  Ruby uses a modified version. The file contains the following
  author/copyright notice:

  >>>
    Markus.Kuhn@cl.cam.ac.uk -- 2002-03-11  
    Permission to use, copy, modify, and distribute this software
    for any purpose and without fee is hereby granted. The author
    disclaims all warranties with regard to this software.

ext/digest/md5/md5.c::
ext/digest/md5/md5.h::

  These files are under the following license.  Ruby uses modified
  versions of them.

  >>>
    Copyright (C) 1999, 2000 Aladdin Enterprises.  All rights reserved.

    This software is provided 'as-is', without any express or implied
    warranty.  In no event will the authors be held liable for any damages
    arising from the use of this software.

    Permission is granted to anyone to use this software for any purpose,
    including commercial applications, and to alter it and redistribute it
    freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must not
       claim that you wrote the original software. If you use this software
       in a product, an acknowledgment in the product documentation would be
       appreciated but is not required.
    2. Altered source versions must be plainly marked as such, and must not be
       misrepresented as being the original software.
    3. This notice may not be removed or altered from any source distribution.

    L. Peter Deutsch
    ghost@aladdin.com

ext/digest/rmd160/rmd160.c::
ext/digest/rmd160/rmd160.h::

  These files have the following copyright information, and by the
  author we are allowed to use it under the new-style BSD license.

  >>>
    AUTHOR::  Antoon Bosselaers, ESAT-COSIC
              (Arranged for libc by Todd C. Miller)
    DATE::    1 March 1996

    Copyright (c) Katholieke Universiteit Leuven
    1996, All Rights Reserved

ext/digest/sha2/sha2.c::
ext/digest/sha2/sha2.h::

  These files are under the new-style BSD license.

  >>>
    Copyright 2000 Aaron D. Gifford.  All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holder nor the names of contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTOR(S) ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/json/generator/generator.c::

  The file contains the following copyright notice.

  >>>
    Copyright 2001-2004 Unicode, Inc.

    Disclaimer::

      This source code is provided as is by Unicode, Inc. No claims are
      made as to fitness for any particular purpose. No warranties of any
      kind are expressed or implied. The recipient agrees to determine
      applicability of information provided. If this file has been
      purchased on magnetic or optical media from Unicode, Inc., the
      sole remedy for any claim will be exchange of defective media
      within 90 days of receipt.

    Limitations on Rights to Redistribute This Code::

      Unicode, Inc. hereby grants the right to freely use the information
      supplied in this file in the creation of products supporting the
      Unicode Standard, and to make copies of this file in any form
      for internal or external distribution as long as this notice
      remains attached.

ext/nkf/nkf-utf8/config.h::
ext/nkf/nkf-utf8/nkf.c::
ext/nkf/nkf-utf8/utf8tbl.c::

  These files are under the following license.  So to speak, it is
  copyrighted semi-public-domain software.

  >>>
    Copyright (C) 1987, Fujitsu LTD. (Itaru ICHIKAWA)

    Everyone is permitted to do anything on this program
    including copying, modifying, improving,
    as long as you don't try to pretend that you wrote it.
    i.e., the above copyright notice has to appear in all copies.
    Binary distribution requires original version messages.
    You don't have to ask before copying, redistribution or publishing.
    THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.

ext/psych::
test/psych::

  The files under these directories are under the following license, except for
  ext/psych/yaml.

  >>>
    Copyright 2009 Aaron Patterson, et al.

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the 'Software'), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/psych/yaml::

  The files under this directory are under the following license.

  >>>
    Copyright (c) 2006 Kirill Simonov

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

ext/socket/addrinfo.h::
ext/socket/getaddrinfo.c::
ext/socket/getnameinfo.c::

  These files are under the new-style BSD license.

  >>>
    Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
    3. Neither the name of the project nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.

ext/win32ole/win32ole.c::

  You can apply the Artistic License to this file. (or GPL,
  alternatively)

  >>>
    (c) 1995 Microsoft Corporation. All rights reserved.
    Developed by ActiveWare Internet Corp., http://www.ActiveWare.com

    Other modifications Copyright (c) 1997, 1998 by Gurusamy Sarathy
    <gsar@umich.edu> and Jan Dubois <jan.dubois@ibm.net>

    You may distribute under the terms of either the GNU General Public
    License or the Artistic License, as specified in the README file
    of the Perl distribution.

  The Wayback Machine url: http://web.archive.org/web/19970607104352/http://www.activeware.com:80/

lib/rdoc/generator/template/darkfish/css/fonts.css::

  This file is licensed under the SIL Open Font License.

  >>>
    http://scripts.sil.org/OFL

spec/mspec::
spec/ruby::

  The files under these directories are under the following license.

  >>>
    Copyright (c) 2008 Engine Yard, Inc. All rights reserved.

    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.

lib/rubygems.rb::
lib/rubygems::
test/rubygems::

  RubyGems is under the following license.

  >>>
    RubyGems is copyrighted free software by Chad Fowler, Rich Kilmer, Jim
    Weirich and others.  You can redistribute it and/or modify it under
    either the terms of the MIT license (see the file MIT.txt), or the
    conditions below:

    1. You may make and give away verbatim copies of the source form of the
       software without restriction, provided that you duplicate all of the
       original copyright notices and associated disclaimers.

    2. You may modify your copy of the software in any way, provided that
       you do at least ONE of the following:

       a. place your modifications in the Public Domain or otherwise
          make them Freely Available, such as by posting said
          modifications to Usenet or an equivalent medium, or by allowing
          the author to include your modifications in the software.

       b. use the modified software only within your corporation or
          organization.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    3. You may distribute the software in object code or executable
       form, provided that you do at least ONE of the following:

       a. distribute the executables and library files of the software,
          together with instructions (in the manual page or equivalent)
          on where to get the original distribution.

       b. accompany the distribution with the machine-readable source of
          the software.

       c. give non-standard executables non-standard names, with
          instructions on where to get the original software distribution.

       d. make other distribution arrangements with the author.

    4. You may modify and include the part of the software into any other
       software (possibly commercial).

    5. The scripts and library files supplied as input to or produced as
       output from the software do not automatically fall under the
       copyright of the software, but belong to whomever generated them,
       and may be sold commercially, and may be aggregated with this
       software.

    6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
       IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
       PURPOSE.

lib/bundler::
lib/bundler.rb::
lib/bundler.gemspec::
spec/bundler::
man/bundle-*,gemfile.*::

  Bundler is under the following license.

  >>>
    Portions copyright (c) 2010 Andre Arko  
    Portions copyright (c) 2009 Engine Yard  

    MIT License::

      Permission is hereby granted, free of charge, to any person obtaining
      a copy of this software and associated documentation files (the
      "Software"), to deal in the Software without restriction, including
      without limitation the rights to use, copy, modify, merge, publish,
      distribute, sublicense, and/or sell copies of the Software, and to
      permit persons to whom the Software is furnished to do so, subject to
      the following conditions:

      The above copyright notice and this permission notice shall be
      included in all copies or substantial portions of the Software.

      THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
PKJH[��FN�F�F"share/licenses/alt-ruby27-libs/GPLnu�[���                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
PKJH[Q�{	{	&share/licenses/alt-ruby27-libs/COPYINGnu�[���Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
You can redistribute it and/or modify it under either the terms of the
2-clause BSDL (see the file BSDL), or the conditions below:

1. You may make and give away verbatim copies of the source form of the
   software without restriction, provided that you duplicate all of the
   original copyright notices and associated disclaimers.

2. You may modify your copy of the software in any way, provided that
   you do at least ONE of the following:

   a. place your modifications in the Public Domain or otherwise
      make them Freely Available, such as by posting said
      modifications to Usenet or an equivalent medium, or by allowing
      the author to include your modifications in the software.

   b. use the modified software only within your corporation or
      organization.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

3. You may distribute the software in object code or binary form,
   provided that you do at least ONE of the following:

   a. distribute the binaries and library files of the software,
      together with instructions (in the manual page or equivalent)
      on where to get the original distribution.

   b. accompany the distribution with the machine-readable source of
      the software.

   c. give non-standard binaries non-standard names, with
      instructions on where to get the original software distribution.

   d. make other distribution arrangements with the author.

4. You may modify and include the part of the software into any other
   software (possibly commercial).  But some files in the distribution
   are not written by the author, so that they are not under these terms.

   For the list of those files and their copying conditions, see the
   file LEGAL.

5. The scripts and library files supplied as input to or produced as
   output from the software do not automatically fall under the
   copyright of the software, but belong to whomever generated them,
   and may be sold commercially, and may be aggregated with this
   software.

6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   PURPOSE.
PKJH[z]��	�	)share/licenses/alt-ruby27-libs/COPYING.janu�[���本プログラムはフリーソフトウェアです.2-clause BSDL
または以下に示す条件で本プログラムを再配布できます
2-clause BSDLについてはBSDLファイルを参照して下さい.

1. 複製は制限なく自由です.

2. 以下の条件のいずれかを満たす時に本プログラムのソースを
   自由に変更できます.

   a.  ネットニューズにポストしたり,作者に変更を送付する
       などの方法で,変更を公開する.

   b.  変更した本プログラムを自分の所属する組織内部だけで
       使う.

   c.  変更点を明示したうえ,ソフトウェアの名前を変更する.
       そのソフトウェアを配布する時には変更前の本プログラ
       ムも同時に配布する.または変更前の本プログラムのソー
       スの入手法を明示する.

   d.  その他の変更条件を作者と合意する.

3. 以下の条件のいずれかを満たす時に本プログラムをコンパイ
   ルしたオブジェクトコードや実行形式でも配布できます.

   a.  バイナリを受け取った人がソースを入手できるように,
       ソースの入手法を明示する.

   b.  機械可読なソースコードを添付する.

   c.  変更を行ったバイナリは名前を変更したうえ,オリジナ
       ルのソースコードの入手法を明示する.

   d.  その他の配布条件を作者と合意する.

4. 他のプログラムへの引用はいかなる目的であれ自由です.た
   だし,本プログラムに含まれる他の作者によるコードは,そ
   れぞれの作者の意向による制限が加えられる場合があります.

   それらファイルの一覧とそれぞれの配布条件などに付いては
   LEGALファイルを参照してください.

5. 本プログラムへの入力となるスクリプトおよび,本プログラ
   ムからの出力の権利は本プログラムの作者ではなく,それぞ
   れの入出力を生成した人に属します.また,本プログラムに
   組み込まれるための拡張ライブラリについても同様です.

6. 本プログラムは無保証です.作者は本プログラムをサポート
   する意志はありますが,プログラム自身のバグあるいは本プ
   ログラムの実行などから発生するいかなる損害に対しても責
   任を持ちません.
PKJH[;���ddinclude/ruby.hnu�[���/**********************************************************************

  ruby.h -

  $Author$
  created at: Sun 10 12:06:15 Jun JST 2007

  Copyright (C) 2007-2008 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_H
#define RUBY_H 1

#define HAVE_RUBY_DEFINES_H     1
#define HAVE_RUBY_ENCODING_H    1
#define HAVE_RUBY_INTERN_H      1
#define HAVE_RUBY_IO_H          1
#define HAVE_RUBY_MISSING_H     1
#define HAVE_RUBY_ONIGURUMA_H   1
#define HAVE_RUBY_RE_H          1
#define HAVE_RUBY_REGEX_H       1
#define HAVE_RUBY_RUBY_H        1
#define HAVE_RUBY_ST_H          1
#define HAVE_RUBY_THREAD_H      1
#define HAVE_RUBY_UTIL_H        1
#define HAVE_RUBY_VERSION_H     1
#define HAVE_RUBY_VM_H          1
#ifdef _WIN32
#define HAVE_RUBY_WIN32_H       1
#endif

#include "ruby/ruby.h"

#endif /* RUBY_H */
PKJH[��b�OO"include/rb_mjit_min_header-2.7.8.hnu�[���/*
 * Kluge to support multilib installation of both 32- and 64-bit RPMS:
 * we need to arrange that header files that appear in both RPMs are
 * identical.  Hence, this file is architecture-independent and calls
 * in an arch-dependent file that will appear in just one RPM.
 *
 * To avoid breaking arches not explicitly supported by Red Hat, we
 * use this indirection file *only* on known multilib arches.
 *
 * We pay attention to include _only_ the original multilib-unclean
 * header file.  Including any other system-header file could cause
 * unpredictable include-ordering issues (rhbz#1412274, comment #16).
 *
 * Note: this may well fail if user tries to use gcc's -I- option.
 * But that option is deprecated anyway.
 */
#if defined(__x86_64__)
#include "rb_mjit_min_header-2.7.8-x86_64.h"
#elif defined(__i386__)
#include "rb_mjit_min_header-2.7.8-i386.h"
#elif defined(__ppc64__) || defined(__powerpc64__)
#include "rb_mjit_min_header-2.7.8-ppc64.h"
#elif defined(__ppc__) || defined(__powerpc__)
#include "rb_mjit_min_header-2.7.8-ppc.h"
#elif defined(__s390x__)
#include "rb_mjit_min_header-2.7.8-s390x.h"
#elif defined(__s390__)
#include "rb_mjit_min_header-2.7.8-s390.h"
#elif defined(__sparc__) && defined(__arch64__)
#include "rb_mjit_min_header-2.7.8-sparc64.h"
#elif defined(__sparc__)
#include "rb_mjit_min_header-2.7.8-sparc.h"
#endif
PKJH[��

����)include/rb_mjit_min_header-2.7.8-x86_64.hnu�[���#ifdef __GNUC__
# pragma GCC system_header
#endif
#define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x

typedef long unsigned int size_t;
typedef __builtin_va_list __gnuc_va_list;
typedef unsigned char __u_char;
typedef unsigned short int __u_short;
typedef unsigned int __u_int;
typedef unsigned long int __u_long;
typedef signed char __int8_t;
typedef unsigned char __uint8_t;
typedef signed short int __int16_t;
typedef unsigned short int __uint16_t;
typedef signed int __int32_t;
typedef unsigned int __uint32_t;
typedef signed long int __int64_t;
typedef unsigned long int __uint64_t;
typedef __int8_t __int_least8_t;
typedef __uint8_t __uint_least8_t;
typedef __int16_t __int_least16_t;
typedef __uint16_t __uint_least16_t;
typedef __int32_t __int_least32_t;
typedef __uint32_t __uint_least32_t;
typedef __int64_t __int_least64_t;
typedef __uint64_t __uint_least64_t;
typedef long int __quad_t;
typedef unsigned long int __u_quad_t;
typedef long int __intmax_t;
typedef unsigned long int __uintmax_t;
typedef unsigned long int __dev_t;
typedef unsigned int __uid_t;
typedef unsigned int __gid_t;
typedef unsigned long int __ino_t;
typedef unsigned long int __ino64_t;
typedef unsigned int __mode_t;
typedef unsigned long int __nlink_t;
typedef long int __off_t;
typedef long int __off64_t;
typedef int __pid_t;
typedef struct { int __val[2]; } __fsid_t;
typedef long int __clock_t;
typedef unsigned long int __rlim_t;
typedef unsigned long int __rlim64_t;
typedef unsigned int __id_t;
typedef long int __time_t;
typedef unsigned int __useconds_t;
typedef long int __suseconds_t;
typedef int __daddr_t;
typedef int __key_t;
typedef int __clockid_t;
typedef void * __timer_t;
typedef long int __blksize_t;
typedef long int __blkcnt_t;
typedef long int __blkcnt64_t;
typedef unsigned long int __fsblkcnt_t;
typedef unsigned long int __fsblkcnt64_t;
typedef unsigned long int __fsfilcnt_t;
typedef unsigned long int __fsfilcnt64_t;
typedef long int __fsword_t;
typedef long int __ssize_t;
typedef long int __syscall_slong_t;
typedef unsigned long int __syscall_ulong_t;
typedef __off64_t __loff_t;
typedef char *__caddr_t;
typedef long int __intptr_t;
typedef unsigned int __socklen_t;
typedef int __sig_atomic_t;
typedef struct
{
  int __count;
  union
  {
    unsigned int __wch;
    char __wchb[4];
  } __value;
} __mbstate_t;
typedef struct _G_fpos_t
{
  __off_t __pos;
  __mbstate_t __state;
} __fpos_t;
typedef struct _G_fpos64_t
{
  __off64_t __pos;
  __mbstate_t __state;
} __fpos64_t;
struct _IO_FILE;
typedef struct _IO_FILE __FILE;
struct _IO_FILE;
typedef struct _IO_FILE FILE;
struct _IO_FILE;
struct _IO_marker;
struct _IO_codecvt;
struct _IO_wide_data;
typedef void _IO_lock_t;
struct _IO_FILE
{
  int _flags;
  char *_IO_read_ptr;
  char *_IO_read_end;
  char *_IO_read_base;
  char *_IO_write_base;
  char *_IO_write_ptr;
  char *_IO_write_end;
  char *_IO_buf_base;
  char *_IO_buf_end;
  char *_IO_save_base;
  char *_IO_backup_base;
  char *_IO_save_end;
  struct _IO_marker *_markers;
  struct _IO_FILE *_chain;
  int _fileno;
  int _flags2;
  __off_t _old_offset;
  unsigned short _cur_column;
  signed char _vtable_offset;
  char _shortbuf[1];
  _IO_lock_t *_lock;
  __off64_t _offset;
  struct _IO_codecvt *_codecvt;
  struct _IO_wide_data *_wide_data;
  struct _IO_FILE *_freeres_list;
  void *_freeres_buf;
  size_t __pad5;
  int _mode;
  char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)];
};
typedef __ssize_t cookie_read_function_t (void *__cookie, char *__buf,
                                          size_t __nbytes);
typedef __ssize_t cookie_write_function_t (void *__cookie, const char *__buf,
                                           size_t __nbytes);
typedef int cookie_seek_function_t (void *__cookie, __off64_t *__pos, int __w);
typedef int cookie_close_function_t (void *__cookie);
typedef struct _IO_cookie_io_functions_t
{
  cookie_read_function_t *read;
  cookie_write_function_t *write;
  cookie_seek_function_t *seek;
  cookie_close_function_t *close;
} cookie_io_functions_t;
typedef __gnuc_va_list va_list;
typedef __off_t off_t;
typedef __off64_t off64_t;
typedef __ssize_t ssize_t;
typedef __fpos_t fpos_t;
typedef __fpos64_t fpos64_t;
extern FILE *stdin;
extern FILE *stdout;
extern FILE *stderr;
extern int remove (const char *__filename) __attribute__ ((__nothrow__ , __leaf__));
extern int rename (const char *__old, const char *__new) __attribute__ ((__nothrow__ , __leaf__));
extern int renameat (int __oldfd, const char *__old, int __newfd,
       const char *__new) __attribute__ ((__nothrow__ , __leaf__));
extern int renameat2 (int __oldfd, const char *__old, int __newfd,
        const char *__new, unsigned int __flags) __attribute__ ((__nothrow__ , __leaf__));
extern FILE *tmpfile (void) __attribute__ ((__warn_unused_result__));
extern FILE *tmpfile64 (void) __attribute__ ((__warn_unused_result__));
extern char *tmpnam (char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *tmpnam_r (char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *tempnam (const char *__dir, const char *__pfx)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__warn_unused_result__));
extern int fclose (FILE *__stream);
extern int fflush (FILE *__stream);
extern int fflush_unlocked (FILE *__stream);
extern int fcloseall (void);
extern FILE *fopen (const char *__restrict __filename,
      const char *__restrict __modes) __attribute__ ((__warn_unused_result__));
extern FILE *freopen (const char *__restrict __filename,
        const char *__restrict __modes,
        FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern FILE *fopen64 (const char *__restrict __filename,
        const char *__restrict __modes) __attribute__ ((__warn_unused_result__));
extern FILE *freopen64 (const char *__restrict __filename,
   const char *__restrict __modes,
   FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern FILE *fdopen (int __fd, const char *__modes) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern FILE *fopencookie (void *__restrict __magic_cookie,
     const char *__restrict __modes,
     cookie_io_functions_t __io_funcs) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern FILE *fmemopen (void *__s, size_t __len, const char *__modes)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__));
extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
      int __modes, size_t __n) __attribute__ ((__nothrow__ , __leaf__));
extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
         size_t __size) __attribute__ ((__nothrow__ , __leaf__));
extern void setlinebuf (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__));
extern int fprintf (FILE *__restrict __stream,
      const char *__restrict __format, ...);
extern int printf (const char *__restrict __format, ...);
extern int sprintf (char *__restrict __s,
      const char *__restrict __format, ...) __attribute__ ((__nothrow__));
extern int vfprintf (FILE *__restrict __s, const char *__restrict __format,
       __gnuc_va_list __arg);
extern int vprintf (const char *__restrict __format, __gnuc_va_list __arg);
extern int vsprintf (char *__restrict __s, const char *__restrict __format,
       __gnuc_va_list __arg) __attribute__ ((__nothrow__));
extern int snprintf (char *__restrict __s, size_t __maxlen,
       const char *__restrict __format, ...)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 3, 4)));
extern int vsnprintf (char *__restrict __s, size_t __maxlen,
        const char *__restrict __format, __gnuc_va_list __arg)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 3, 0)));
extern int vasprintf (char **__restrict __ptr, const char *__restrict __f,
        __gnuc_va_list __arg)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 2, 0))) __attribute__ ((__warn_unused_result__));
extern int __asprintf (char **__restrict __ptr,
         const char *__restrict __fmt, ...)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 2, 3))) __attribute__ ((__warn_unused_result__));
extern int asprintf (char **__restrict __ptr,
       const char *__restrict __fmt, ...)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 2, 3))) __attribute__ ((__warn_unused_result__));
extern int vdprintf (int __fd, const char *__restrict __fmt,
       __gnuc_va_list __arg)
     __attribute__ ((__format__ (__printf__, 2, 0)));
extern int dprintf (int __fd, const char *__restrict __fmt, ...)
     __attribute__ ((__format__ (__printf__, 2, 3)));
extern int fscanf (FILE *__restrict __stream,
     const char *__restrict __format, ...) __attribute__ ((__warn_unused_result__));
extern int scanf (const char *__restrict __format, ...) __attribute__ ((__warn_unused_result__));
extern int sscanf (const char *__restrict __s,
     const char *__restrict __format, ...) __attribute__ ((__nothrow__ , __leaf__));
extern int vfscanf (FILE *__restrict __s, const char *__restrict __format,
      __gnuc_va_list __arg)
     __attribute__ ((__format__ (__scanf__, 2, 0))) __attribute__ ((__warn_unused_result__));
extern int vscanf (const char *__restrict __format, __gnuc_va_list __arg)
     __attribute__ ((__format__ (__scanf__, 1, 0))) __attribute__ ((__warn_unused_result__));
extern int vsscanf (const char *__restrict __s,
      const char *__restrict __format, __gnuc_va_list __arg)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__scanf__, 2, 0)));
extern int fgetc (FILE *__stream);
extern int getc (FILE *__stream);
extern int getchar (void);
extern int getc_unlocked (FILE *__stream);
extern int getchar_unlocked (void);
extern int fgetc_unlocked (FILE *__stream);
extern int fputc (int __c, FILE *__stream);
extern int putc (int __c, FILE *__stream);
extern int putchar (int __c);
extern int fputc_unlocked (int __c, FILE *__stream);
extern int putc_unlocked (int __c, FILE *__stream);
extern int putchar_unlocked (int __c);
extern int getw (FILE *__stream);
extern int putw (int __w, FILE *__stream);
extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
     __attribute__ ((__warn_unused_result__));
extern char *fgets_unlocked (char *__restrict __s, int __n,
        FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern __ssize_t __getdelim (char **__restrict __lineptr,
                             size_t *__restrict __n, int __delimiter,
                             FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern __ssize_t getdelim (char **__restrict __lineptr,
                           size_t *__restrict __n, int __delimiter,
                           FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern __ssize_t getline (char **__restrict __lineptr,
                          size_t *__restrict __n,
                          FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern int fputs (const char *__restrict __s, FILE *__restrict __stream);
extern int puts (const char *__s);
extern int ungetc (int __c, FILE *__stream);
extern size_t fread (void *__restrict __ptr, size_t __size,
       size_t __n, FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern size_t fwrite (const void *__restrict __ptr, size_t __size,
        size_t __n, FILE *__restrict __s);
extern int fputs_unlocked (const char *__restrict __s,
      FILE *__restrict __stream);
extern size_t fread_unlocked (void *__restrict __ptr, size_t __size,
         size_t __n, FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern size_t fwrite_unlocked (const void *__restrict __ptr, size_t __size,
          size_t __n, FILE *__restrict __stream);
extern int fseek (FILE *__stream, long int __off, int __whence);
extern long int ftell (FILE *__stream) __attribute__ ((__warn_unused_result__));
extern void rewind (FILE *__stream);
extern int fseeko (FILE *__stream, __off_t __off, int __whence);
extern __off_t ftello (FILE *__stream) __attribute__ ((__warn_unused_result__));
extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
extern int fsetpos (FILE *__stream, const fpos_t *__pos);
extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
extern __off64_t ftello64 (FILE *__stream) __attribute__ ((__warn_unused_result__));
extern int fgetpos64 (FILE *__restrict __stream, fpos64_t *__restrict __pos);
extern int fsetpos64 (FILE *__stream, const fpos64_t *__pos);
extern void clearerr (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__));
extern int feof (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int ferror (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void clearerr_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__));
extern int feof_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int ferror_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void perror (const char *__s);
extern int sys_nerr;
extern const char *const sys_errlist[];
extern int _sys_nerr;
extern const char *const _sys_errlist[];
extern int fileno (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int fileno_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern FILE *popen (const char *__command, const char *__modes) __attribute__ ((__warn_unused_result__));
extern int pclose (FILE *__stream);
extern char *ctermid (char *__s) __attribute__ ((__nothrow__ , __leaf__));
extern char *cuserid (char *__s);
struct obstack;
extern int obstack_printf (struct obstack *__restrict __obstack,
      const char *__restrict __format, ...)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 2, 3)));
extern int obstack_vprintf (struct obstack *__restrict __obstack,
       const char *__restrict __format,
       __gnuc_va_list __args)
     __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 2, 0)));
extern void flockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__));
extern int ftrylockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void funlockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__));
extern int __uflow (FILE *);
extern int __overflow (FILE *, int);
extern __inline __attribute__ ((__gnu_inline__)) int
getchar (void)
{
  return getc (stdin);
}
extern __inline __attribute__ ((__gnu_inline__)) int
fgetc_unlocked (FILE *__fp)
{
  return (__builtin_expect (((__fp)->_IO_read_ptr >= (__fp)->_IO_read_end), 0) ? __uflow (__fp) : *(unsigned char *) (__fp)->_IO_read_ptr++);
}
extern __inline __attribute__ ((__gnu_inline__)) int
getc_unlocked (FILE *__fp)
{
  return (__builtin_expect (((__fp)->_IO_read_ptr >= (__fp)->_IO_read_end), 0) ? __uflow (__fp) : *(unsigned char *) (__fp)->_IO_read_ptr++);
}
extern __inline __attribute__ ((__gnu_inline__)) int
getchar_unlocked (void)
{
  return (__builtin_expect (((stdin)->_IO_read_ptr >= (stdin)->_IO_read_end), 0) ? __uflow (stdin) : *(unsigned char *) (stdin)->_IO_read_ptr++);
}
extern __inline __attribute__ ((__gnu_inline__)) int
putchar (int __c)
{
  return putc (__c, stdout);
}
extern __inline __attribute__ ((__gnu_inline__)) int
fputc_unlocked (int __c, FILE *__stream)
{
  return (__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0) ? __overflow (__stream, (unsigned char) (__c)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (__c)));
}
extern __inline __attribute__ ((__gnu_inline__)) int
putc_unlocked (int __c, FILE *__stream)
{
  return (__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0) ? __overflow (__stream, (unsigned char) (__c)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (__c)));
}
extern __inline __attribute__ ((__gnu_inline__)) int
putchar_unlocked (int __c)
{
  return (__builtin_expect (((stdout)->_IO_write_ptr >= (stdout)->_IO_write_end), 0) ? __overflow (stdout, (unsigned char) (__c)) : (unsigned char) (*(stdout)->_IO_write_ptr++ = (__c)));
}
extern __inline __attribute__ ((__gnu_inline__)) __ssize_t
getline (char **__lineptr, size_t *__n, FILE *__stream)
{
  return __getdelim (__lineptr, __n, '\n', __stream);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) feof_unlocked (FILE *__stream)
{
  return (((__stream)->_flags & 0x0010) != 0);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) ferror_unlocked (FILE *__stream)
{
  return (((__stream)->_flags & 0x0020) != 0);
}
extern int __sprintf_chk (char *__restrict __s, int __flag, size_t __slen,
     const char *__restrict __format, ...) __attribute__ ((__nothrow__ , __leaf__));
extern int __vsprintf_chk (char *__restrict __s, int __flag, size_t __slen,
      const char *__restrict __format,
      __gnuc_va_list __ap) __attribute__ ((__nothrow__ , __leaf__));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) sprintf (char *__restrict __s, const char *__restrict __fmt, ...)
{
  return __builtin___sprintf_chk (__s, 2 - 1,
      __builtin_object_size (__s, 2 > 1), __fmt,
      __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) vsprintf (char *__restrict __s, const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __builtin___vsprintf_chk (__s, 2 - 1,
       __builtin_object_size (__s, 2 > 1), __fmt, __ap);
}
extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
      size_t __slen, const char *__restrict __format,
      ...) __attribute__ ((__nothrow__ , __leaf__));
extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
       size_t __slen, const char *__restrict __format,
       __gnuc_va_list __ap) __attribute__ ((__nothrow__ , __leaf__));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) snprintf (char *__restrict __s, size_t __n, const char *__restrict __fmt, ...)
{
  return __builtin___snprintf_chk (__s, __n, 2 - 1,
       __builtin_object_size (__s, 2 > 1), __fmt,
       __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) vsnprintf (char *__restrict __s, size_t __n, const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __builtin___vsnprintf_chk (__s, __n, 2 - 1,
        __builtin_object_size (__s, 2 > 1), __fmt, __ap);
}
extern int __fprintf_chk (FILE *__restrict __stream, int __flag,
     const char *__restrict __format, ...);
extern int __printf_chk (int __flag, const char *__restrict __format, ...);
extern int __vfprintf_chk (FILE *__restrict __stream, int __flag,
      const char *__restrict __format, __gnuc_va_list __ap);
extern int __vprintf_chk (int __flag, const char *__restrict __format,
     __gnuc_va_list __ap);
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
fprintf (FILE *__restrict __stream, const char *__restrict __fmt, ...)
{
  return __fprintf_chk (__stream, 2 - 1, __fmt,
   __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
printf (const char *__restrict __fmt, ...)
{
  return __printf_chk (2 - 1, __fmt, __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
vprintf (const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __vfprintf_chk (stdout, 2 - 1, __fmt, __ap);
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
vfprintf (FILE *__restrict __stream,
   const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __vfprintf_chk (__stream, 2 - 1, __fmt, __ap);
}
extern int __dprintf_chk (int __fd, int __flag, const char *__restrict __fmt,
     ...) __attribute__ ((__format__ (__printf__, 3, 4)));
extern int __vdprintf_chk (int __fd, int __flag,
      const char *__restrict __fmt, __gnuc_va_list __arg)
     __attribute__ ((__format__ (__printf__, 3, 0)));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
dprintf (int __fd, const char *__restrict __fmt, ...)
{
  return __dprintf_chk (__fd, 2 - 1, __fmt,
   __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
vdprintf (int __fd, const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __vdprintf_chk (__fd, 2 - 1, __fmt, __ap);
}
extern int __asprintf_chk (char **__restrict __ptr, int __flag,
      const char *__restrict __fmt, ...)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__printf__, 3, 4))) __attribute__ ((__warn_unused_result__));
extern int __vasprintf_chk (char **__restrict __ptr, int __flag,
       const char *__restrict __fmt, __gnuc_va_list __arg)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__printf__, 3, 0))) __attribute__ ((__warn_unused_result__));
extern int __obstack_printf_chk (struct obstack *__restrict __obstack,
     int __flag, const char *__restrict __format,
     ...)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__printf__, 3, 4)));
extern int __obstack_vprintf_chk (struct obstack *__restrict __obstack,
      int __flag,
      const char *__restrict __format,
      __gnuc_va_list __args)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__printf__, 3, 0)));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) asprintf (char **__restrict __ptr, const char *__restrict __fmt, ...)
{
  return __asprintf_chk (__ptr, 2 - 1, __fmt,
    __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) __asprintf (char **__restrict __ptr, const char *__restrict __fmt, ...)
{
  return __asprintf_chk (__ptr, 2 - 1, __fmt,
    __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) obstack_printf (struct obstack *__restrict __obstack, const char *__restrict __fmt, ...)
{
  return __obstack_printf_chk (__obstack, 2 - 1, __fmt,
          __builtin_va_arg_pack ());
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) vasprintf (char **__restrict __ptr, const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __vasprintf_chk (__ptr, 2 - 1, __fmt, __ap);
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) obstack_vprintf (struct obstack *__restrict __obstack, const char *__restrict __fmt, __gnuc_va_list __ap)
{
  return __obstack_vprintf_chk (__obstack, 2 - 1, __fmt,
    __ap);
}
extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n,
     FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern char *__fgets_alias (char *__restrict __s, int __n, FILE *__restrict __stream) __asm__ ("" "fgets") __attribute__ ((__warn_unused_result__));
extern char *__fgets_chk_warn (char *__restrict __s, size_t __size, int __n, FILE *__restrict __stream) __asm__ ("" "__fgets_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("fgets called with bigger size than length " "of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) char *
fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
{
  size_t sz = __builtin_object_size (__s, 2 > 1);
  if (((__builtin_constant_p (sz) && (sz) == (long unsigned int) -1) || (((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= ((sz)) / ((sizeof (char))))) && (((long unsigned int) (__n)) <= ((sz)) / ((sizeof (char)))))))
    return __fgets_alias (__s, __n, __stream);
  if ((((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= (sz) / (sizeof (char)))) && !(((long unsigned int) (__n)) <= (sz) / (sizeof (char)))))
    return __fgets_chk_warn (__s, sz, __n, __stream);
  return __fgets_chk (__s, sz, __n, __stream);
}
extern size_t __fread_chk (void *__restrict __ptr, size_t __ptrlen,
      size_t __size, size_t __n,
      FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern size_t __fread_alias (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) __asm__ ("" "fread") __attribute__ ((__warn_unused_result__));
extern size_t __fread_chk_warn (void *__restrict __ptr, size_t __ptrlen, size_t __size, size_t __n, FILE *__restrict __stream) __asm__ ("" "__fread_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("fread called with bigger size * nmemb than length " "of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) size_t
fread (void *__restrict __ptr, size_t __size, size_t __n,
       FILE *__restrict __stream)
{
  size_t sz = __builtin_object_size (__ptr, 0);
  if (((__builtin_constant_p (sz) && (sz) == (long unsigned int) -1) || (((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= ((sz)) / ((__size)))) && (((long unsigned int) (__n)) <= ((sz)) / ((__size))))))
    return __fread_alias (__ptr, __size, __n, __stream);
  if ((((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= (sz) / (__size))) && !(((long unsigned int) (__n)) <= (sz) / (__size))))
    return __fread_chk_warn (__ptr, sz, __size, __n, __stream);
  return __fread_chk (__ptr, sz, __size, __n, __stream);
}
extern char *__fgets_unlocked_chk (char *__restrict __s, size_t __size,
       int __n, FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern char *__fgets_unlocked_alias (char *__restrict __s, int __n, FILE *__restrict __stream) __asm__ ("" "fgets_unlocked") __attribute__ ((__warn_unused_result__));
extern char *__fgets_unlocked_chk_warn (char *__restrict __s, size_t __size, int __n, FILE *__restrict __stream) __asm__ ("" "__fgets_unlocked_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("fgets_unlocked called with bigger size than length " "of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) char *
fgets_unlocked (char *__restrict __s, int __n, FILE *__restrict __stream)
{
  size_t sz = __builtin_object_size (__s, 2 > 1);
  if (((__builtin_constant_p (sz) && (sz) == (long unsigned int) -1) || (((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= ((sz)) / ((sizeof (char))))) && (((long unsigned int) (__n)) <= ((sz)) / ((sizeof (char)))))))
    return __fgets_unlocked_alias (__s, __n, __stream);
  if ((((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= (sz) / (sizeof (char)))) && !(((long unsigned int) (__n)) <= (sz) / (sizeof (char)))))
    return __fgets_unlocked_chk_warn (__s, sz, __n, __stream);
  return __fgets_unlocked_chk (__s, sz, __n, __stream);
}
extern size_t __fread_unlocked_chk (void *__restrict __ptr, size_t __ptrlen,
        size_t __size, size_t __n,
        FILE *__restrict __stream) __attribute__ ((__warn_unused_result__));
extern size_t __fread_unlocked_alias (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) __asm__ ("" "fread_unlocked") __attribute__ ((__warn_unused_result__));
extern size_t __fread_unlocked_chk_warn (void *__restrict __ptr, size_t __ptrlen, size_t __size, size_t __n, FILE *__restrict __stream) __asm__ ("" "__fread_unlocked_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("fread_unlocked called with bigger size * nmemb than " "length of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) size_t
fread_unlocked (void *__restrict __ptr, size_t __size, size_t __n,
  FILE *__restrict __stream)
{
  size_t sz = __builtin_object_size (__ptr, 0);
  if (((__builtin_constant_p (sz) && (sz) == (long unsigned int) -1) || (((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= ((sz)) / ((__size)))) && (((long unsigned int) (__n)) <= ((sz)) / ((__size))))))
    {
      if (__builtin_constant_p (__size)
   && __builtin_constant_p (__n)
   && (__size | __n) < (((size_t) 1) << (8 * sizeof (size_t) / 2))
   && __size * __n <= 8)
 {
   size_t __cnt = __size * __n;
   char *__cptr = (char *) __ptr;
   if (__cnt == 0)
     return 0;
   for (; __cnt > 0; --__cnt)
     {
       int __c = getc_unlocked (__stream);
       if (__c == (-1))
  break;
       *__cptr++ = __c;
     }
   return (__cptr - (char *) __ptr) / __size;
 }
      return __fread_unlocked_alias (__ptr, __size, __n, __stream);
    }
  if ((((__typeof (__n)) 0 < (__typeof (__n)) -1 || (__builtin_constant_p (__n) && (__n) > 0)) && __builtin_constant_p ((((long unsigned int) (__n)) <= (sz) / (__size))) && !(((long unsigned int) (__n)) <= (sz) / (__size))))
    return __fread_unlocked_chk_warn (__ptr, sz, __size, __n, __stream);
  return __fread_unlocked_chk (__ptr, sz, __size, __n, __stream);
}


typedef __u_char u_char;
typedef __u_short u_short;
typedef __u_int u_int;
typedef __u_long u_long;
typedef __quad_t quad_t;
typedef __u_quad_t u_quad_t;
typedef __fsid_t fsid_t;
typedef __loff_t loff_t;
typedef __ino_t ino_t;
typedef __ino64_t ino64_t;
typedef __dev_t dev_t;
typedef __gid_t gid_t;
typedef __mode_t mode_t;
typedef __nlink_t nlink_t;
typedef __uid_t uid_t;
typedef __pid_t pid_t;
typedef __id_t id_t;
typedef __daddr_t daddr_t;
typedef __caddr_t caddr_t;
typedef __key_t key_t;
typedef __clock_t clock_t;
typedef __clockid_t clockid_t;
typedef __time_t time_t;
typedef __timer_t timer_t;
typedef __useconds_t useconds_t;
typedef __suseconds_t suseconds_t;
typedef unsigned long int ulong;
typedef unsigned short int ushort;
typedef unsigned int uint;
typedef __int8_t int8_t;
typedef __int16_t int16_t;
typedef __int32_t int32_t;
typedef __int64_t int64_t;
typedef __uint8_t u_int8_t;
typedef __uint16_t u_int16_t;
typedef __uint32_t u_int32_t;
typedef __uint64_t u_int64_t;
typedef int register_t __attribute__ ((__mode__ (__word__)));
static __inline __uint16_t
__bswap_16 (__uint16_t __bsx)
{
  return __builtin_bswap16 (__bsx);
}
static __inline __uint32_t
__bswap_32 (__uint32_t __bsx)
{
  return __builtin_bswap32 (__bsx);
}
__extension__ static __inline __uint64_t
__bswap_64 (__uint64_t __bsx)
{
  return __builtin_bswap64 (__bsx);
}
static __inline __uint16_t
__uint16_identity (__uint16_t __x)
{
  return __x;
}
static __inline __uint32_t
__uint32_identity (__uint32_t __x)
{
  return __x;
}
static __inline __uint64_t
__uint64_identity (__uint64_t __x)
{
  return __x;
}
typedef struct
{
  unsigned long int __val[(1024 / (8 * sizeof (unsigned long int)))];
} __sigset_t;
typedef __sigset_t sigset_t;
struct timeval
{
  __time_t tv_sec;
  __suseconds_t tv_usec;
};
struct timespec
{
  __time_t tv_sec;
  __syscall_slong_t tv_nsec;
};
typedef long int __fd_mask;
typedef struct
  {
    __fd_mask fds_bits[1024 / (8 * (int) sizeof (__fd_mask))];
  } fd_set;
typedef __fd_mask fd_mask;

extern int select (int __nfds, fd_set *__restrict __readfds,
     fd_set *__restrict __writefds,
     fd_set *__restrict __exceptfds,
     struct timeval *__restrict __timeout);
extern int pselect (int __nfds, fd_set *__restrict __readfds,
      fd_set *__restrict __writefds,
      fd_set *__restrict __exceptfds,
      const struct timespec *__restrict __timeout,
      const __sigset_t *__restrict __sigmask);
extern long int __fdelt_chk (long int __d);
extern long int __fdelt_warn (long int __d)
  __attribute__((__warning__ ("bit outside of fd_set selected")));

typedef __blksize_t blksize_t;
typedef __blkcnt_t blkcnt_t;
typedef __fsblkcnt_t fsblkcnt_t;
typedef __fsfilcnt_t fsfilcnt_t;
typedef __blkcnt64_t blkcnt64_t;
typedef __fsblkcnt64_t fsblkcnt64_t;
typedef __fsfilcnt64_t fsfilcnt64_t;
struct __pthread_rwlock_arch_t
{
  unsigned int __readers;
  unsigned int __writers;
  unsigned int __wrphase_futex;
  unsigned int __writers_futex;
  unsigned int __pad3;
  unsigned int __pad4;
  int __cur_writer;
  int __shared;
  signed char __rwelision;
  unsigned char __pad1[7];
  unsigned long int __pad2;
  unsigned int __flags;
};
typedef struct __pthread_internal_list
{
  struct __pthread_internal_list *__prev;
  struct __pthread_internal_list *__next;
} __pthread_list_t;
struct __pthread_mutex_s
{
  int __lock ;
  unsigned int __count;
  int __owner;
  unsigned int __nusers;
  int __kind;
 
  short __spins; short __elision;
  __pthread_list_t __list;
 
};
struct __pthread_cond_s
{
  __extension__ union
  {
    __extension__ unsigned long long int __wseq;
    struct
    {
      unsigned int __low;
      unsigned int __high;
    } __wseq32;
  };
  __extension__ union
  {
    __extension__ unsigned long long int __g1_start;
    struct
    {
      unsigned int __low;
      unsigned int __high;
    } __g1_start32;
  };
  unsigned int __g_refs[2] ;
  unsigned int __g_size[2];
  unsigned int __g1_orig_size;
  unsigned int __wrefs;
  unsigned int __g_signals[2];
};
typedef unsigned long int pthread_t;
typedef union
{
  char __size[4];
  int __align;
} pthread_mutexattr_t;
typedef union
{
  char __size[4];
  int __align;
} pthread_condattr_t;
typedef unsigned int pthread_key_t;
typedef int pthread_once_t;
union pthread_attr_t
{
  char __size[56];
  long int __align;
};
typedef union pthread_attr_t pthread_attr_t;
typedef union
{
  struct __pthread_mutex_s __data;
  char __size[40];
  long int __align;
} pthread_mutex_t;
typedef union
{
  struct __pthread_cond_s __data;
  char __size[48];
  __extension__ long long int __align;
} pthread_cond_t;
typedef union
{
  struct __pthread_rwlock_arch_t __data;
  char __size[56];
  long int __align;
} pthread_rwlock_t;
typedef union
{
  char __size[8];
  long int __align;
} pthread_rwlockattr_t;
typedef volatile int pthread_spinlock_t;
typedef union
{
  char __size[32];
  long int __align;
} pthread_barrier_t;
typedef union
{
  char __size[4];
  int __align;
} pthread_barrierattr_t;


struct stat
  {
    __dev_t st_dev;
    __ino_t st_ino;
    __nlink_t st_nlink;
    __mode_t st_mode;
    __uid_t st_uid;
    __gid_t st_gid;
    int __pad0;
    __dev_t st_rdev;
    __off_t st_size;
    __blksize_t st_blksize;
    __blkcnt_t st_blocks;
    struct timespec st_atim;
    struct timespec st_mtim;
    struct timespec st_ctim;
    __syscall_slong_t __glibc_reserved[3];
  };
struct stat64
  {
    __dev_t st_dev;
    __ino64_t st_ino;
    __nlink_t st_nlink;
    __mode_t st_mode;
    __uid_t st_uid;
    __gid_t st_gid;
    int __pad0;
    __dev_t st_rdev;
    __off_t st_size;
    __blksize_t st_blksize;
    __blkcnt64_t st_blocks;
    struct timespec st_atim;
    struct timespec st_mtim;
    struct timespec st_ctim;
    __syscall_slong_t __glibc_reserved[3];
  };
extern int stat (const char *__restrict __file,
   struct stat *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int fstat (int __fd, struct stat *__buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int stat64 (const char *__restrict __file,
     struct stat64 *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int fstat64 (int __fd, struct stat64 *__buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int fstatat (int __fd, const char *__restrict __file,
      struct stat *__restrict __buf, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int fstatat64 (int __fd, const char *__restrict __file,
        struct stat64 *__restrict __buf, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int lstat (const char *__restrict __file,
    struct stat *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int lstat64 (const char *__restrict __file,
      struct stat64 *__restrict __buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int chmod (const char *__file, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int lchmod (const char *__file, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int fchmod (int __fd, __mode_t __mode) __attribute__ ((__nothrow__ , __leaf__));
extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
       int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))) __attribute__ ((__warn_unused_result__));
extern __mode_t umask (__mode_t __mask) __attribute__ ((__nothrow__ , __leaf__));
extern __mode_t getumask (void) __attribute__ ((__nothrow__ , __leaf__));
extern int mkdir (const char *__path, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int mknod (const char *__path, __mode_t __mode, __dev_t __dev)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int mknodat (int __fd, const char *__path, __mode_t __mode,
      __dev_t __dev) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int mkfifo (const char *__path, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int mkfifoat (int __fd, const char *__path, __mode_t __mode)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int utimensat (int __fd, const char *__path,
        const struct timespec __times[2],
        int __flags)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int futimens (int __fd, const struct timespec __times[2]) __attribute__ ((__nothrow__ , __leaf__));
extern int __fxstat (int __ver, int __fildes, struct stat *__stat_buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int __xstat (int __ver, const char *__filename,
      struct stat *__stat_buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int __lxstat (int __ver, const char *__filename,
       struct stat *__stat_buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int __fxstatat (int __ver, int __fildes, const char *__filename,
         struct stat *__stat_buf, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4)));
extern int __fxstat64 (int __ver, int __fildes, struct stat64 *__stat_buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int __xstat64 (int __ver, const char *__filename,
        struct stat64 *__stat_buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int __lxstat64 (int __ver, const char *__filename,
         struct stat64 *__stat_buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int __fxstatat64 (int __ver, int __fildes, const char *__filename,
    struct stat64 *__stat_buf, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4)));
extern int __xmknod (int __ver, const char *__path, __mode_t __mode,
       __dev_t *__dev) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 4)));
extern int __xmknodat (int __ver, int __fd, const char *__path,
         __mode_t __mode, __dev_t *__dev)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 5)));
typedef __signed__ char __s8;
typedef unsigned char __u8;
typedef __signed__ short __s16;
typedef unsigned short __u16;
typedef __signed__ int __s32;
typedef unsigned int __u32;
__extension__ typedef __signed__ long long __s64;
__extension__ typedef unsigned long long __u64;
typedef struct {
 unsigned long fds_bits[1024 / (8 * sizeof(long))];
} __kernel_fd_set;
typedef void (*__kernel_sighandler_t)(int);
typedef int __kernel_key_t;
typedef int __kernel_mqd_t;
typedef unsigned short __kernel_old_uid_t;
typedef unsigned short __kernel_old_gid_t;
typedef unsigned long __kernel_old_dev_t;
typedef long __kernel_long_t;
typedef unsigned long __kernel_ulong_t;
typedef __kernel_ulong_t __kernel_ino_t;
typedef unsigned int __kernel_mode_t;
typedef int __kernel_pid_t;
typedef int __kernel_ipc_pid_t;
typedef unsigned int __kernel_uid_t;
typedef unsigned int __kernel_gid_t;
typedef __kernel_long_t __kernel_suseconds_t;
typedef int __kernel_daddr_t;
typedef unsigned int __kernel_uid32_t;
typedef unsigned int __kernel_gid32_t;
typedef __kernel_ulong_t __kernel_size_t;
typedef __kernel_long_t __kernel_ssize_t;
typedef __kernel_long_t __kernel_ptrdiff_t;
typedef struct {
 int val[2];
} __kernel_fsid_t;
typedef __kernel_long_t __kernel_off_t;
typedef long long __kernel_loff_t;
typedef __kernel_long_t __kernel_old_time_t;
typedef __kernel_long_t __kernel_time_t;
typedef long long __kernel_time64_t;
typedef __kernel_long_t __kernel_clock_t;
typedef int __kernel_timer_t;
typedef int __kernel_clockid_t;
typedef char * __kernel_caddr_t;
typedef unsigned short __kernel_uid16_t;
typedef unsigned short __kernel_gid16_t;
typedef __u16 __le16;
typedef __u16 __be16;
typedef __u32 __le32;
typedef __u32 __be32;
typedef __u64 __le64;
typedef __u64 __be64;
typedef __u16 __sum16;
typedef __u32 __wsum;
typedef unsigned __poll_t;
struct statx_timestamp {
 __s64 tv_sec;
 __u32 tv_nsec;
 __s32 __reserved;
};
struct statx {
 __u32 stx_mask;
 __u32 stx_blksize;
 __u64 stx_attributes;
 __u32 stx_nlink;
 __u32 stx_uid;
 __u32 stx_gid;
 __u16 stx_mode;
 __u16 __spare0[1];
 __u64 stx_ino;
 __u64 stx_size;
 __u64 stx_blocks;
 __u64 stx_attributes_mask;
 struct statx_timestamp stx_atime;
 struct statx_timestamp stx_btime;
 struct statx_timestamp stx_ctime;
 struct statx_timestamp stx_mtime;
 __u32 stx_rdev_major;
 __u32 stx_rdev_minor;
 __u32 stx_dev_major;
 __u32 stx_dev_minor;
 __u64 __spare2[14];
};

int statx (int __dirfd, const char *__restrict __path, int __flags,
           unsigned int __mask, struct statx *__restrict __buf)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 5)));

extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) stat (const char *__path, struct stat *__statbuf)
{
  return __xstat (1, __path, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) lstat (const char *__path, struct stat *__statbuf)
{
  return __lxstat (1, __path, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) fstat (int __fd, struct stat *__statbuf)
{
  return __fxstat (1, __fd, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) fstatat (int __fd, const char *__filename, struct stat *__statbuf, int __flag)
{
  return __fxstatat (1, __fd, __filename, __statbuf, __flag);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) mknod (const char *__path, __mode_t __mode, __dev_t __dev)
{
  return __xmknod (0, __path, __mode, &__dev);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) mknodat (int __fd, const char *__path, __mode_t __mode, __dev_t __dev)
{
  return __xmknodat (0, __fd, __path, __mode, &__dev);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) stat64 (const char *__path, struct stat64 *__statbuf)
{
  return __xstat64 (1, __path, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) lstat64 (const char *__path, struct stat64 *__statbuf)
{
  return __lxstat64 (1, __path, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) fstat64 (int __fd, struct stat64 *__statbuf)
{
  return __fxstat64 (1, __fd, __statbuf);
}
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) fstatat64 (int __fd, const char *__filename, struct stat64 *__statbuf, int __flag)
{
  return __fxstatat64 (1, __fd, __filename, __statbuf, __flag);
}

typedef int wchar_t;

typedef struct
  {
    int quot;
    int rem;
  } div_t;
typedef struct
  {
    long int quot;
    long int rem;
  } ldiv_t;
__extension__ typedef struct
  {
    long long int quot;
    long long int rem;
  } lldiv_t;
extern size_t __ctype_get_mb_cur_max (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern double atof (const char *__nptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int atoi (const char *__nptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern long int atol (const char *__nptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
__extension__ extern long long int atoll (const char *__nptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern double strtod (const char *__restrict __nptr,
        char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern float strtof (const char *__restrict __nptr,
       char **__restrict __endptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern long double strtold (const char *__restrict __nptr,
       char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern _Float32 strtof32 (const char *__restrict __nptr,
     char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern _Float64 strtof64 (const char *__restrict __nptr,
     char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern _Float128 strtof128 (const char *__restrict __nptr,
       char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern _Float32x strtof32x (const char *__restrict __nptr,
       char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern _Float64x strtof64x (const char *__restrict __nptr,
       char **__restrict __endptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern long int strtol (const char *__restrict __nptr,
   char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern unsigned long int strtoul (const char *__restrict __nptr,
      char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
__extension__
extern long long int strtoq (const char *__restrict __nptr,
        char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
__extension__
extern unsigned long long int strtouq (const char *__restrict __nptr,
           char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
__extension__
extern long long int strtoll (const char *__restrict __nptr,
         char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
__extension__
extern unsigned long long int strtoull (const char *__restrict __nptr,
     char **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int strfromd (char *__dest, size_t __size, const char *__format,
       double __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf (char *__dest, size_t __size, const char *__format,
       float __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfroml (char *__dest, size_t __size, const char *__format,
       long double __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf32 (char *__dest, size_t __size, const char * __format,
         _Float32 __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf64 (char *__dest, size_t __size, const char * __format,
         _Float64 __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf128 (char *__dest, size_t __size, const char * __format,
   _Float128 __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf32x (char *__dest, size_t __size, const char * __format,
   _Float32x __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int strfromf64x (char *__dest, size_t __size, const char * __format,
   _Float64x __f)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
struct __locale_struct
{
  struct __locale_data *__locales[13];
  const unsigned short int *__ctype_b;
  const int *__ctype_tolower;
  const int *__ctype_toupper;
  const char *__names[13];
};
typedef struct __locale_struct *__locale_t;
typedef __locale_t locale_t;
extern long int strtol_l (const char *__restrict __nptr,
     char **__restrict __endptr, int __base,
     locale_t __loc) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 4)));
extern unsigned long int strtoul_l (const char *__restrict __nptr,
        char **__restrict __endptr,
        int __base, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 4)));
__extension__
extern long long int strtoll_l (const char *__restrict __nptr,
    char **__restrict __endptr, int __base,
    locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 4)));
__extension__
extern unsigned long long int strtoull_l (const char *__restrict __nptr,
       char **__restrict __endptr,
       int __base, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 4)));
extern double strtod_l (const char *__restrict __nptr,
   char **__restrict __endptr, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern float strtof_l (const char *__restrict __nptr,
         char **__restrict __endptr, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern long double strtold_l (const char *__restrict __nptr,
         char **__restrict __endptr,
         locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern _Float32 strtof32_l (const char *__restrict __nptr,
       char **__restrict __endptr,
       locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern _Float64 strtof64_l (const char *__restrict __nptr,
       char **__restrict __endptr,
       locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern _Float128 strtof128_l (const char *__restrict __nptr,
         char **__restrict __endptr,
         locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern _Float32x strtof32x_l (const char *__restrict __nptr,
         char **__restrict __endptr,
         locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern _Float64x strtof64x_l (const char *__restrict __nptr,
         char **__restrict __endptr,
         locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) atoi (const char *__nptr)
{
  return (int) strtol (__nptr, (char **) ((void *)0), 10);
}
extern __inline __attribute__ ((__gnu_inline__)) long int
__attribute__ ((__nothrow__ , __leaf__)) atol (const char *__nptr)
{
  return strtol (__nptr, (char **) ((void *)0), 10);
}
__extension__ extern __inline __attribute__ ((__gnu_inline__)) long long int
__attribute__ ((__nothrow__ , __leaf__)) atoll (const char *__nptr)
{
  return strtoll (__nptr, (char **) ((void *)0), 10);
}
extern char *l64a (long int __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern long int a64l (const char *__s)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern long int random (void) __attribute__ ((__nothrow__ , __leaf__));
extern void srandom (unsigned int __seed) __attribute__ ((__nothrow__ , __leaf__));
extern char *initstate (unsigned int __seed, char *__statebuf,
   size_t __statelen) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern char *setstate (char *__statebuf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
struct random_data
  {
    int32_t *fptr;
    int32_t *rptr;
    int32_t *state;
    int rand_type;
    int rand_deg;
    int rand_sep;
    int32_t *end_ptr;
  };
extern int random_r (struct random_data *__restrict __buf,
       int32_t *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int srandom_r (unsigned int __seed, struct random_data *__buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int initstate_r (unsigned int __seed, char *__restrict __statebuf,
   size_t __statelen,
   struct random_data *__restrict __buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 4)));
extern int setstate_r (char *__restrict __statebuf,
         struct random_data *__restrict __buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int rand (void) __attribute__ ((__nothrow__ , __leaf__));
extern void srand (unsigned int __seed) __attribute__ ((__nothrow__ , __leaf__));
extern int rand_r (unsigned int *__seed) __attribute__ ((__nothrow__ , __leaf__));
extern double drand48 (void) __attribute__ ((__nothrow__ , __leaf__));
extern double erand48 (unsigned short int __xsubi[3]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern long int lrand48 (void) __attribute__ ((__nothrow__ , __leaf__));
extern long int nrand48 (unsigned short int __xsubi[3])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern long int mrand48 (void) __attribute__ ((__nothrow__ , __leaf__));
extern long int jrand48 (unsigned short int __xsubi[3])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern void srand48 (long int __seedval) __attribute__ ((__nothrow__ , __leaf__));
extern unsigned short int *seed48 (unsigned short int __seed16v[3])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern void lcong48 (unsigned short int __param[7]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
struct drand48_data
  {
    unsigned short int __x[3];
    unsigned short int __old_x[3];
    unsigned short int __c;
    unsigned short int __init;
    __extension__ unsigned long long int __a;
  };
extern int drand48_r (struct drand48_data *__restrict __buffer,
        double *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int erand48_r (unsigned short int __xsubi[3],
        struct drand48_data *__restrict __buffer,
        double *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int lrand48_r (struct drand48_data *__restrict __buffer,
        long int *__restrict __result)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int nrand48_r (unsigned short int __xsubi[3],
        struct drand48_data *__restrict __buffer,
        long int *__restrict __result)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int mrand48_r (struct drand48_data *__restrict __buffer,
        long int *__restrict __result)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int jrand48_r (unsigned short int __xsubi[3],
        struct drand48_data *__restrict __buffer,
        long int *__restrict __result)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int srand48_r (long int __seedval, struct drand48_data *__buffer)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int seed48_r (unsigned short int __seed16v[3],
       struct drand48_data *__buffer) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int lcong48_r (unsigned short int __param[7],
        struct drand48_data *__buffer)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *malloc (size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__warn_unused_result__));
extern void *calloc (size_t __nmemb, size_t __size)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__warn_unused_result__));
extern void *realloc (void *__ptr, size_t __size)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void *reallocarray (void *__ptr, size_t __nmemb, size_t __size)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void free (void *__ptr) __attribute__ ((__nothrow__ , __leaf__));

extern void *alloca (size_t __size) __attribute__ ((__nothrow__ , __leaf__));

extern void *valloc (size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__warn_unused_result__));
extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern void *aligned_alloc (size_t __alignment, size_t __size)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__alloc_size__ (2))) __attribute__ ((__warn_unused_result__));
extern void abort (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern int atexit (void (*__func) (void)) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int at_quick_exit (void (*__func) (void)) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int on_exit (void (*__func) (int __status, void *__arg), void *__arg)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern void exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern void quick_exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern void _Exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern char *getenv (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern char *secure_getenv (const char *__name)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int putenv (char *__string) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int setenv (const char *__name, const char *__value, int __replace)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int unsetenv (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int clearenv (void) __attribute__ ((__nothrow__ , __leaf__));
extern char *mktemp (char *__template) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int mkstemp (char *__template) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkstemp64 (char *__template) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkstemps (char *__template, int __suffixlen) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkstemps64 (char *__template, int __suffixlen)
     __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern char *mkdtemp (char *__template) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkostemp (char *__template, int __flags) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkostemp64 (char *__template, int __flags) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkostemps (char *__template, int __suffixlen, int __flags)
     __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int mkostemps64 (char *__template, int __suffixlen, int __flags)
     __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int system (const char *__command) __attribute__ ((__warn_unused_result__));
extern char *canonicalize_file_name (const char *__name)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern char *realpath (const char *__restrict __name,
         char *__restrict __resolved) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
typedef int (*__compar_fn_t) (const void *, const void *);
typedef __compar_fn_t comparison_fn_t;
typedef int (*__compar_d_fn_t) (const void *, const void *, void *);
extern void *bsearch (const void *__key, const void *__base,
        size_t __nmemb, size_t __size, __compar_fn_t __compar)
     __attribute__ ((__nonnull__ (1, 2, 5))) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__gnu_inline__)) void *
bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size,
  __compar_fn_t __compar)
{
  size_t __l, __u, __idx;
  const void *__p;
  int __comparison;
  __l = 0;
  __u = __nmemb;
  while (__l < __u)
    {
      __idx = (__l + __u) / 2;
      __p = (void *) (((const char *) __base) + (__idx * __size));
      __comparison = (*__compar) (__key, __p);
      if (__comparison < 0)
 __u = __idx;
      else if (__comparison > 0)
 __l = __idx + 1;
      else
 return (void *) __p;
    }
  return ((void *)0);
}
extern void qsort (void *__base, size_t __nmemb, size_t __size,
     __compar_fn_t __compar) __attribute__ ((__nonnull__ (1, 4)));
extern void qsort_r (void *__base, size_t __nmemb, size_t __size,
       __compar_d_fn_t __compar, void *__arg)
  __attribute__ ((__nonnull__ (1, 4)));
extern int abs (int __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
extern long int labs (long int __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
__extension__ extern long long int llabs (long long int __x)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
extern div_t div (int __numer, int __denom)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
extern ldiv_t ldiv (long int __numer, long int __denom)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
__extension__ extern lldiv_t lldiv (long long int __numer,
        long long int __denom)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) __attribute__ ((__warn_unused_result__));
extern char *ecvt (double __value, int __ndigit, int *__restrict __decpt,
     int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) __attribute__ ((__warn_unused_result__));
extern char *fcvt (double __value, int __ndigit, int *__restrict __decpt,
     int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) __attribute__ ((__warn_unused_result__));
extern char *gcvt (double __value, int __ndigit, char *__buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3))) __attribute__ ((__warn_unused_result__));
extern char *qecvt (long double __value, int __ndigit,
      int *__restrict __decpt, int *__restrict __sign)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) __attribute__ ((__warn_unused_result__));
extern char *qfcvt (long double __value, int __ndigit,
      int *__restrict __decpt, int *__restrict __sign)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) __attribute__ ((__warn_unused_result__));
extern char *qgcvt (long double __value, int __ndigit, char *__buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3))) __attribute__ ((__warn_unused_result__));
extern int ecvt_r (double __value, int __ndigit, int *__restrict __decpt,
     int *__restrict __sign, char *__restrict __buf,
     size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5)));
extern int fcvt_r (double __value, int __ndigit, int *__restrict __decpt,
     int *__restrict __sign, char *__restrict __buf,
     size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5)));
extern int qecvt_r (long double __value, int __ndigit,
      int *__restrict __decpt, int *__restrict __sign,
      char *__restrict __buf, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5)));
extern int qfcvt_r (long double __value, int __ndigit,
      int *__restrict __decpt, int *__restrict __sign,
      char *__restrict __buf, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5)));
extern int mblen (const char *__s, size_t __n) __attribute__ ((__nothrow__ , __leaf__));
extern int mbtowc (wchar_t *__restrict __pwc,
     const char *__restrict __s, size_t __n) __attribute__ ((__nothrow__ , __leaf__));
extern int wctomb (char *__s, wchar_t __wchar) __attribute__ ((__nothrow__ , __leaf__));
extern size_t mbstowcs (wchar_t *__restrict __pwcs,
   const char *__restrict __s, size_t __n) __attribute__ ((__nothrow__ , __leaf__));
extern size_t wcstombs (char *__restrict __s,
   const wchar_t *__restrict __pwcs, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__));
extern int rpmatch (const char *__response) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int getsubopt (char **__restrict __optionp,
        char *const *__restrict __tokens,
        char **__restrict __valuep)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2, 3))) __attribute__ ((__warn_unused_result__));
extern int posix_openpt (int __oflag) __attribute__ ((__warn_unused_result__));
extern int grantpt (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern int unlockpt (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern char *ptsname (int __fd) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int ptsname_r (int __fd, char *__buf, size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int getpt (void);
extern int getloadavg (double __loadavg[], int __nelem)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern __inline __attribute__ ((__gnu_inline__)) double
__attribute__ ((__nothrow__ , __leaf__)) atof (const char *__nptr)
{
  return strtod (__nptr, (char **) ((void *)0));
}
extern char *__realpath_chk (const char *__restrict __name,
        char *__restrict __resolved,
        size_t __resolvedlen) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *__realpath_alias (const char *__restrict __name, char *__restrict __resolved) __asm__ ("" "realpath") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *__realpath_chk_warn (const char *__restrict __name, char *__restrict __resolved, size_t __resolvedlen) __asm__ ("" "__realpath_chk") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__))
     __attribute__((__warning__ ("second argument of realpath must be either NULL or at " "least PATH_MAX bytes long buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) char *
__attribute__ ((__nothrow__ , __leaf__)) realpath (const char *__restrict __name, char *__restrict __resolved)
{
  size_t sz = __builtin_object_size (__resolved, 2 > 1);
  if (sz == (size_t) -1)
    return __realpath_alias (__name, __resolved);
  return __realpath_chk (__name, __resolved, sz);
}
extern int __ptsname_r_chk (int __fd, char *__buf, size_t __buflen,
       size_t __nreal) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int __ptsname_r_alias (int __fd, char *__buf, size_t __buflen) __asm__ ("" "ptsname_r") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2)));
extern int __ptsname_r_chk_warn (int __fd, char *__buf, size_t __buflen, size_t __nreal) __asm__ ("" "__ptsname_r_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2))) __attribute__((__warning__ ("ptsname_r called with buflen bigger than " "size of buf")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) ptsname_r (int __fd, char *__buf, size_t __buflen)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __ptsname_r_alias (__fd, __buf, __buflen) : ((((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __ptsname_r_chk_warn (__fd, __buf, __buflen, __builtin_object_size (__buf, 2 > 1)) : __ptsname_r_chk (__fd, __buf, __buflen, __builtin_object_size (__buf, 2 > 1))));
}
extern int __wctomb_chk (char *__s, wchar_t __wchar, size_t __buflen)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int __wctomb_alias (char *__s, wchar_t __wchar) __asm__ ("" "wctomb") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) int
__attribute__ ((__nothrow__ , __leaf__)) wctomb (char *__s, wchar_t __wchar)
{
  if (__builtin_object_size (__s, 2 > 1) != (size_t) -1
      && 16 > __builtin_object_size (__s, 2 > 1))
    return __wctomb_chk (__s, __wchar, __builtin_object_size (__s, 2 > 1));
  return __wctomb_alias (__s, __wchar);
}
extern size_t __mbstowcs_chk (wchar_t *__restrict __dst,
         const char *__restrict __src,
         size_t __len, size_t __dstlen) __attribute__ ((__nothrow__ , __leaf__));
extern size_t __mbstowcs_alias (wchar_t *__restrict __dst, const char *__restrict __src, size_t __len) __asm__ ("" "mbstowcs") __attribute__ ((__nothrow__ , __leaf__));
extern size_t __mbstowcs_chk_warn (wchar_t *__restrict __dst, const char *__restrict __src, size_t __len, size_t __dstlen) __asm__ ("" "__mbstowcs_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__((__warning__ ("mbstowcs called with dst buffer smaller than len " "* sizeof (wchar_t)")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) size_t
__attribute__ ((__nothrow__ , __leaf__)) mbstowcs (wchar_t *__restrict __dst, const char *__restrict __src, size_t __len)
{
  return (((__builtin_constant_p (__builtin_object_size (__dst, 2 > 1)) && (__builtin_object_size (__dst, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= ((__builtin_object_size (__dst, 2 > 1))) / ((sizeof (wchar_t))))) && (((long unsigned int) (__len)) <= ((__builtin_object_size (__dst, 2 > 1))) / ((sizeof (wchar_t)))))) ? __mbstowcs_alias (__dst, __src, __len) : ((((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= (__builtin_object_size (__dst, 2 > 1)) / (sizeof (wchar_t)))) && !(((long unsigned int) (__len)) <= (__builtin_object_size (__dst, 2 > 1)) / (sizeof (wchar_t)))) ? __mbstowcs_chk_warn (__dst, __src, __len, (__builtin_object_size (__dst, 2 > 1)) / (sizeof (wchar_t))) : __mbstowcs_chk (__dst, __src, __len, (__builtin_object_size (__dst, 2 > 1)) / (sizeof (wchar_t)))));
}
extern size_t __wcstombs_chk (char *__restrict __dst,
         const wchar_t *__restrict __src,
         size_t __len, size_t __dstlen) __attribute__ ((__nothrow__ , __leaf__));
extern size_t __wcstombs_alias (char *__restrict __dst, const wchar_t *__restrict __src, size_t __len) __asm__ ("" "wcstombs") __attribute__ ((__nothrow__ , __leaf__));
extern size_t __wcstombs_chk_warn (char *__restrict __dst, const wchar_t *__restrict __src, size_t __len, size_t __dstlen) __asm__ ("" "__wcstombs_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__((__warning__ ("wcstombs called with dst buffer smaller than len")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) size_t
__attribute__ ((__nothrow__ , __leaf__)) wcstombs (char *__restrict __dst, const wchar_t *__restrict __src, size_t __len)
{
  return (((__builtin_constant_p (__builtin_object_size (__dst, 2 > 1)) && (__builtin_object_size (__dst, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= ((__builtin_object_size (__dst, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__len)) <= ((__builtin_object_size (__dst, 2 > 1))) / ((sizeof (char)))))) ? __wcstombs_alias (__dst, __src, __len) : ((((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= (__builtin_object_size (__dst, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__len)) <= (__builtin_object_size (__dst, 2 > 1)) / (sizeof (char)))) ? __wcstombs_chk_warn (__dst, __src, __len, __builtin_object_size (__dst, 2 > 1)) : __wcstombs_chk (__dst, __src, __len, __builtin_object_size (__dst, 2 > 1))));
}

typedef long int ptrdiff_t;
typedef struct {
  long long __max_align_ll __attribute__((__aligned__(__alignof__(long long))));
  long double __max_align_ld __attribute__((__aligned__(__alignof__(long double))));
} max_align_t;

extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
       size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *memmove (void *__dest, const void *__src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *memccpy (void *__restrict __dest, const void *__restrict __src,
        int __c, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *memset (void *__s, int __c, size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int memcmp (const void *__s1, const void *__s2, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *memchr (const void *__s, int __c, size_t __n)
      __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern void *rawmemchr (const void *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern void *memrchr (const void *__s, int __c, size_t __n)
      __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strncpy (char *__restrict __dest,
        const char *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strcat (char *__restrict __dest, const char *__restrict __src)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strncat (char *__restrict __dest, const char *__restrict __src,
        size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strcmp (const char *__s1, const char *__s2)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strncmp (const char *__s1, const char *__s2, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strcoll (const char *__s1, const char *__s2)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern size_t strxfrm (char *__restrict __dest,
         const char *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int strcoll_l (const char *__s1, const char *__s2, locale_t __l)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2, 3)));
extern size_t strxfrm_l (char *__dest, const char *__src, size_t __n,
    locale_t __l) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 4)));
extern char *strdup (const char *__s)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__nonnull__ (1)));
extern char *strndup (const char *__string, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__nonnull__ (1)));
extern char *strchr (const char *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern char *strrchr (const char *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern char *strchrnul (const char *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern size_t strcspn (const char *__s, const char *__reject)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern size_t strspn (const char *__s, const char *__accept)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strpbrk (const char *__s, const char *__accept)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strstr (const char *__haystack, const char *__needle)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strtok (char *__restrict __s, const char *__restrict __delim)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern char *__strtok_r (char *__restrict __s,
    const char *__restrict __delim,
    char **__restrict __save_ptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern char *strtok_r (char *__restrict __s, const char *__restrict __delim,
         char **__restrict __save_ptr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern char *strcasestr (const char *__haystack, const char *__needle)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *memmem (const void *__haystack, size_t __haystacklen,
       const void *__needle, size_t __needlelen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 3)));
extern void *__mempcpy (void *__restrict __dest,
   const void *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void *mempcpy (void *__restrict __dest,
        const void *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern size_t strlen (const char *__s)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern size_t strnlen (const char *__string, size_t __maxlen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern char *strerror (int __errnum) __attribute__ ((__nothrow__ , __leaf__));
extern char *strerror_r (int __errnum, char *__buf, size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))) __attribute__ ((__warn_unused_result__));
extern char *strerror_l (int __errnum, locale_t __l) __attribute__ ((__nothrow__ , __leaf__));

extern int bcmp (const void *__s1, const void *__s2, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern void bcopy (const void *__src, void *__dest, size_t __n)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void bzero (void *__s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern char *index (const char *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern char *rindex (const char *__s, int __c)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
extern int ffs (int __i) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int ffsl (long int __l) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
__extension__ extern int ffsll (long long int __ll)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int strcasecmp (const char *__s1, const char *__s2)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strncasecmp (const char *__s1, const char *__s2, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strcasecmp_l (const char *__s1, const char *__s2, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2, 3)));
extern int strncasecmp_l (const char *__s1, const char *__s2,
     size_t __n, locale_t __loc)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2, 4)));

extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void
__attribute__ ((__nothrow__ , __leaf__)) bcopy (const void *__src, void *__dest, size_t __len)
{
  (void) __builtin___memmove_chk (__dest, __src, __len,
      __builtin_object_size (__dest, 0));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void
__attribute__ ((__nothrow__ , __leaf__)) bzero (void *__dest, size_t __len)
{
  (void) __builtin___memset_chk (__dest, '\0', __len,
     __builtin_object_size (__dest, 0));
}
extern void explicit_bzero (void *__s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern char *strsep (char **__restrict __stringp,
       const char *__restrict __delim)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strsignal (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern char *__stpcpy (char *__restrict __dest, const char *__restrict __src)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *stpcpy (char *__restrict __dest, const char *__restrict __src)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *__stpncpy (char *__restrict __dest,
   const char *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *stpncpy (char *__restrict __dest,
        const char *__restrict __src, size_t __n)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int strverscmp (const char *__s1, const char *__s2)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1, 2)));
extern char *strfry (char *__string) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern void *memfrob (void *__s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern char *basename (const char *__filename) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void *
__attribute__ ((__nothrow__ , __leaf__)) memcpy (void *__restrict __dest, const void *__restrict __src, size_t __len)
{
  return __builtin___memcpy_chk (__dest, __src, __len,
     __builtin_object_size (__dest, 0));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void *
__attribute__ ((__nothrow__ , __leaf__)) memmove (void *__dest, const void *__src, size_t __len)
{
  return __builtin___memmove_chk (__dest, __src, __len,
      __builtin_object_size (__dest, 0));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void *
__attribute__ ((__nothrow__ , __leaf__)) mempcpy (void *__restrict __dest, const void *__restrict __src, size_t __len)
{
  return __builtin___mempcpy_chk (__dest, __src, __len,
      __builtin_object_size (__dest, 0));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void *
__attribute__ ((__nothrow__ , __leaf__)) memset (void *__dest, int __ch, size_t __len)
{
  return __builtin___memset_chk (__dest, __ch, __len,
     __builtin_object_size (__dest, 0));
}
void __explicit_bzero_chk (void *__dest, size_t __len, size_t __destlen)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) void
__attribute__ ((__nothrow__ , __leaf__)) explicit_bzero (void *__dest, size_t __len)
{
  __explicit_bzero_chk (__dest, __len, __builtin_object_size (__dest, 0));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) strcpy (char *__restrict __dest, const char *__restrict __src)
{
  return __builtin___strcpy_chk (__dest, __src, __builtin_object_size (__dest, 2 > 1));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) stpcpy (char *__restrict __dest, const char *__restrict __src)
{
  return __builtin___stpcpy_chk (__dest, __src, __builtin_object_size (__dest, 2 > 1));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) strncpy (char *__restrict __dest, const char *__restrict __src, size_t __len)
{
  return __builtin___strncpy_chk (__dest, __src, __len,
      __builtin_object_size (__dest, 2 > 1));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) stpncpy (char *__dest, const char *__src, size_t __n)
{
  return __builtin___stpncpy_chk (__dest, __src, __n,
      __builtin_object_size (__dest, 2 > 1));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) strcat (char *__restrict __dest, const char *__restrict __src)
{
  return __builtin___strcat_chk (__dest, __src, __builtin_object_size (__dest, 2 > 1));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) char *
__attribute__ ((__nothrow__ , __leaf__)) strncat (char *__restrict __dest, const char *__restrict __src, size_t __len)
{
  return __builtin___strncat_chk (__dest, __src, __len,
      __builtin_object_size (__dest, 2 > 1));
}

typedef __uint8_t uint8_t;
typedef __uint16_t uint16_t;
typedef __uint32_t uint32_t;
typedef __uint64_t uint64_t;
typedef __int_least8_t int_least8_t;
typedef __int_least16_t int_least16_t;
typedef __int_least32_t int_least32_t;
typedef __int_least64_t int_least64_t;
typedef __uint_least8_t uint_least8_t;
typedef __uint_least16_t uint_least16_t;
typedef __uint_least32_t uint_least32_t;
typedef __uint_least64_t uint_least64_t;
typedef signed char int_fast8_t;
typedef long int int_fast16_t;
typedef long int int_fast32_t;
typedef long int int_fast64_t;
typedef unsigned char uint_fast8_t;
typedef unsigned long int uint_fast16_t;
typedef unsigned long int uint_fast32_t;
typedef unsigned long int uint_fast64_t;
typedef long int intptr_t;
typedef unsigned long int uintptr_t;
typedef __intmax_t intmax_t;
typedef __uintmax_t uintmax_t;
typedef int __gwchar_t;

typedef struct
  {
    long int quot;
    long int rem;
  } imaxdiv_t;
extern intmax_t imaxabs (intmax_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern imaxdiv_t imaxdiv (intmax_t __numer, intmax_t __denom)
      __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern intmax_t strtoimax (const char *__restrict __nptr,
      char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__));
extern uintmax_t strtoumax (const char *__restrict __nptr,
       char ** __restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__));
extern intmax_t wcstoimax (const __gwchar_t *__restrict __nptr,
      __gwchar_t **__restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__));
extern uintmax_t wcstoumax (const __gwchar_t *__restrict __nptr,
       __gwchar_t ** __restrict __endptr, int __base)
     __attribute__ ((__nothrow__ , __leaf__));
extern long int __strtol_internal (const char *__restrict __nptr,
       char **__restrict __endptr,
       int __base, int __group)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__gnu_inline__)) intmax_t
__attribute__ ((__nothrow__ , __leaf__)) strtoimax (const char *__restrict nptr, char **__restrict endptr, int base)
{
  return __strtol_internal (nptr, endptr, base, 0);
}
extern unsigned long int __strtoul_internal (const char *__restrict __nptr,
          char ** __restrict __endptr,
          int __base, int __group)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__gnu_inline__)) uintmax_t
__attribute__ ((__nothrow__ , __leaf__)) strtoumax (const char *__restrict nptr, char **__restrict endptr, int base)
{
  return __strtoul_internal (nptr, endptr, base, 0);
}
extern long int __wcstol_internal (const __gwchar_t * __restrict __nptr,
       __gwchar_t **__restrict __endptr,
       int __base, int __group)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__gnu_inline__)) intmax_t
__attribute__ ((__nothrow__ , __leaf__)) wcstoimax (const __gwchar_t *__restrict nptr, __gwchar_t **__restrict endptr, int base)
{
  return __wcstol_internal (nptr, endptr, base, 0);
}
extern unsigned long int __wcstoul_internal (const __gwchar_t *
          __restrict __nptr,
          __gwchar_t **
          __restrict __endptr,
          int __base, int __group)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern __inline __attribute__ ((__gnu_inline__)) uintmax_t
__attribute__ ((__nothrow__ , __leaf__)) wcstoumax (const __gwchar_t *__restrict nptr, __gwchar_t **__restrict endptr, int base)
{
  return __wcstoul_internal (nptr, endptr, base, 0);
}


typedef __socklen_t socklen_t;
extern int access (const char *__name, int __type) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int euidaccess (const char *__name, int __type)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int eaccess (const char *__name, int __type)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int faccessat (int __fd, const char *__file, int __type, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))) __attribute__ ((__warn_unused_result__));
extern __off_t lseek (int __fd, __off_t __offset, int __whence) __attribute__ ((__nothrow__ , __leaf__));
extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence)
     __attribute__ ((__nothrow__ , __leaf__));
extern int close (int __fd);
extern ssize_t read (int __fd, void *__buf, size_t __nbytes) __attribute__ ((__warn_unused_result__));
extern ssize_t write (int __fd, const void *__buf, size_t __n) __attribute__ ((__warn_unused_result__));
extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
        __off_t __offset) __attribute__ ((__warn_unused_result__));
extern ssize_t pwrite (int __fd, const void *__buf, size_t __n,
         __off_t __offset) __attribute__ ((__warn_unused_result__));
extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
   __off64_t __offset) __attribute__ ((__warn_unused_result__));
extern ssize_t pwrite64 (int __fd, const void *__buf, size_t __n,
    __off64_t __offset) __attribute__ ((__warn_unused_result__));
extern int pipe (int __pipedes[2]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int pipe2 (int __pipedes[2], int __flags) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern unsigned int alarm (unsigned int __seconds) __attribute__ ((__nothrow__ , __leaf__));
extern unsigned int sleep (unsigned int __seconds);
extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
     __attribute__ ((__nothrow__ , __leaf__));
extern int usleep (__useconds_t __useconds);
extern int pause (void);
extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int lchown (const char *__file, __uid_t __owner, __gid_t __group)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int fchownat (int __fd, const char *__file, __uid_t __owner,
       __gid_t __group, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))) __attribute__ ((__warn_unused_result__));
extern int chdir (const char *__path) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int fchdir (int __fd) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *getcwd (char *__buf, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *get_current_dir_name (void) __attribute__ ((__nothrow__ , __leaf__));
extern char *getwd (char *__buf)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__deprecated__)) __attribute__ ((__warn_unused_result__));
extern int dup (int __fd) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int dup2 (int __fd, int __fd2) __attribute__ ((__nothrow__ , __leaf__));
extern int dup3 (int __fd, int __fd2, int __flags) __attribute__ ((__nothrow__ , __leaf__));
extern char **__environ;
extern char **environ;
extern int execve (const char *__path, char *const __argv[],
     char *const __envp[]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int fexecve (int __fd, char *const __argv[], char *const __envp[])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int execv (const char *__path, char *const __argv[])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int execle (const char *__path, const char *__arg, ...)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int execl (const char *__path, const char *__arg, ...)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int execvp (const char *__file, char *const __argv[])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int execlp (const char *__file, const char *__arg, ...)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int execvpe (const char *__file, char *const __argv[],
      char *const __envp[])
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int nice (int __inc) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void _exit (int __status) __attribute__ ((__noreturn__));
enum
  {
    _PC_LINK_MAX,
    _PC_MAX_CANON,
    _PC_MAX_INPUT,
    _PC_NAME_MAX,
    _PC_PATH_MAX,
    _PC_PIPE_BUF,
    _PC_CHOWN_RESTRICTED,
    _PC_NO_TRUNC,
    _PC_VDISABLE,
    _PC_SYNC_IO,
    _PC_ASYNC_IO,
    _PC_PRIO_IO,
    _PC_SOCK_MAXBUF,
    _PC_FILESIZEBITS,
    _PC_REC_INCR_XFER_SIZE,
    _PC_REC_MAX_XFER_SIZE,
    _PC_REC_MIN_XFER_SIZE,
    _PC_REC_XFER_ALIGN,
    _PC_ALLOC_SIZE_MIN,
    _PC_SYMLINK_MAX,
    _PC_2_SYMLINKS
  };
enum
  {
    _SC_ARG_MAX,
    _SC_CHILD_MAX,
    _SC_CLK_TCK,
    _SC_NGROUPS_MAX,
    _SC_OPEN_MAX,
    _SC_STREAM_MAX,
    _SC_TZNAME_MAX,
    _SC_JOB_CONTROL,
    _SC_SAVED_IDS,
    _SC_REALTIME_SIGNALS,
    _SC_PRIORITY_SCHEDULING,
    _SC_TIMERS,
    _SC_ASYNCHRONOUS_IO,
    _SC_PRIORITIZED_IO,
    _SC_SYNCHRONIZED_IO,
    _SC_FSYNC,
    _SC_MAPPED_FILES,
    _SC_MEMLOCK,
    _SC_MEMLOCK_RANGE,
    _SC_MEMORY_PROTECTION,
    _SC_MESSAGE_PASSING,
    _SC_SEMAPHORES,
    _SC_SHARED_MEMORY_OBJECTS,
    _SC_AIO_LISTIO_MAX,
    _SC_AIO_MAX,
    _SC_AIO_PRIO_DELTA_MAX,
    _SC_DELAYTIMER_MAX,
    _SC_MQ_OPEN_MAX,
    _SC_MQ_PRIO_MAX,
    _SC_VERSION,
    _SC_PAGESIZE,
    _SC_RTSIG_MAX,
    _SC_SEM_NSEMS_MAX,
    _SC_SEM_VALUE_MAX,
    _SC_SIGQUEUE_MAX,
    _SC_TIMER_MAX,
    _SC_BC_BASE_MAX,
    _SC_BC_DIM_MAX,
    _SC_BC_SCALE_MAX,
    _SC_BC_STRING_MAX,
    _SC_COLL_WEIGHTS_MAX,
    _SC_EQUIV_CLASS_MAX,
    _SC_EXPR_NEST_MAX,
    _SC_LINE_MAX,
    _SC_RE_DUP_MAX,
    _SC_CHARCLASS_NAME_MAX,
    _SC_2_VERSION,
    _SC_2_C_BIND,
    _SC_2_C_DEV,
    _SC_2_FORT_DEV,
    _SC_2_FORT_RUN,
    _SC_2_SW_DEV,
    _SC_2_LOCALEDEF,
    _SC_PII,
    _SC_PII_XTI,
    _SC_PII_SOCKET,
    _SC_PII_INTERNET,
    _SC_PII_OSI,
    _SC_POLL,
    _SC_SELECT,
    _SC_UIO_MAXIOV,
    _SC_IOV_MAX = _SC_UIO_MAXIOV,
    _SC_PII_INTERNET_STREAM,
    _SC_PII_INTERNET_DGRAM,
    _SC_PII_OSI_COTS,
    _SC_PII_OSI_CLTS,
    _SC_PII_OSI_M,
    _SC_T_IOV_MAX,
    _SC_THREADS,
    _SC_THREAD_SAFE_FUNCTIONS,
    _SC_GETGR_R_SIZE_MAX,
    _SC_GETPW_R_SIZE_MAX,
    _SC_LOGIN_NAME_MAX,
    _SC_TTY_NAME_MAX,
    _SC_THREAD_DESTRUCTOR_ITERATIONS,
    _SC_THREAD_KEYS_MAX,
    _SC_THREAD_STACK_MIN,
    _SC_THREAD_THREADS_MAX,
    _SC_THREAD_ATTR_STACKADDR,
    _SC_THREAD_ATTR_STACKSIZE,
    _SC_THREAD_PRIORITY_SCHEDULING,
    _SC_THREAD_PRIO_INHERIT,
    _SC_THREAD_PRIO_PROTECT,
    _SC_THREAD_PROCESS_SHARED,
    _SC_NPROCESSORS_CONF,
    _SC_NPROCESSORS_ONLN,
    _SC_PHYS_PAGES,
    _SC_AVPHYS_PAGES,
    _SC_ATEXIT_MAX,
    _SC_PASS_MAX,
    _SC_XOPEN_VERSION,
    _SC_XOPEN_XCU_VERSION,
    _SC_XOPEN_UNIX,
    _SC_XOPEN_CRYPT,
    _SC_XOPEN_ENH_I18N,
    _SC_XOPEN_SHM,
    _SC_2_CHAR_TERM,
    _SC_2_C_VERSION,
    _SC_2_UPE,
    _SC_XOPEN_XPG2,
    _SC_XOPEN_XPG3,
    _SC_XOPEN_XPG4,
    _SC_CHAR_BIT,
    _SC_CHAR_MAX,
    _SC_CHAR_MIN,
    _SC_INT_MAX,
    _SC_INT_MIN,
    _SC_LONG_BIT,
    _SC_WORD_BIT,
    _SC_MB_LEN_MAX,
    _SC_NZERO,
    _SC_SSIZE_MAX,
    _SC_SCHAR_MAX,
    _SC_SCHAR_MIN,
    _SC_SHRT_MAX,
    _SC_SHRT_MIN,
    _SC_UCHAR_MAX,
    _SC_UINT_MAX,
    _SC_ULONG_MAX,
    _SC_USHRT_MAX,
    _SC_NL_ARGMAX,
    _SC_NL_LANGMAX,
    _SC_NL_MSGMAX,
    _SC_NL_NMAX,
    _SC_NL_SETMAX,
    _SC_NL_TEXTMAX,
    _SC_XBS5_ILP32_OFF32,
    _SC_XBS5_ILP32_OFFBIG,
    _SC_XBS5_LP64_OFF64,
    _SC_XBS5_LPBIG_OFFBIG,
    _SC_XOPEN_LEGACY,
    _SC_XOPEN_REALTIME,
    _SC_XOPEN_REALTIME_THREADS,
    _SC_ADVISORY_INFO,
    _SC_BARRIERS,
    _SC_BASE,
    _SC_C_LANG_SUPPORT,
    _SC_C_LANG_SUPPORT_R,
    _SC_CLOCK_SELECTION,
    _SC_CPUTIME,
    _SC_THREAD_CPUTIME,
    _SC_DEVICE_IO,
    _SC_DEVICE_SPECIFIC,
    _SC_DEVICE_SPECIFIC_R,
    _SC_FD_MGMT,
    _SC_FIFO,
    _SC_PIPE,
    _SC_FILE_ATTRIBUTES,
    _SC_FILE_LOCKING,
    _SC_FILE_SYSTEM,
    _SC_MONOTONIC_CLOCK,
    _SC_MULTI_PROCESS,
    _SC_SINGLE_PROCESS,
    _SC_NETWORKING,
    _SC_READER_WRITER_LOCKS,
    _SC_SPIN_LOCKS,
    _SC_REGEXP,
    _SC_REGEX_VERSION,
    _SC_SHELL,
    _SC_SIGNALS,
    _SC_SPAWN,
    _SC_SPORADIC_SERVER,
    _SC_THREAD_SPORADIC_SERVER,
    _SC_SYSTEM_DATABASE,
    _SC_SYSTEM_DATABASE_R,
    _SC_TIMEOUTS,
    _SC_TYPED_MEMORY_OBJECTS,
    _SC_USER_GROUPS,
    _SC_USER_GROUPS_R,
    _SC_2_PBS,
    _SC_2_PBS_ACCOUNTING,
    _SC_2_PBS_LOCATE,
    _SC_2_PBS_MESSAGE,
    _SC_2_PBS_TRACK,
    _SC_SYMLOOP_MAX,
    _SC_STREAMS,
    _SC_2_PBS_CHECKPOINT,
    _SC_V6_ILP32_OFF32,
    _SC_V6_ILP32_OFFBIG,
    _SC_V6_LP64_OFF64,
    _SC_V6_LPBIG_OFFBIG,
    _SC_HOST_NAME_MAX,
    _SC_TRACE,
    _SC_TRACE_EVENT_FILTER,
    _SC_TRACE_INHERIT,
    _SC_TRACE_LOG,
    _SC_LEVEL1_ICACHE_SIZE,
    _SC_LEVEL1_ICACHE_ASSOC,
    _SC_LEVEL1_ICACHE_LINESIZE,
    _SC_LEVEL1_DCACHE_SIZE,
    _SC_LEVEL1_DCACHE_ASSOC,
    _SC_LEVEL1_DCACHE_LINESIZE,
    _SC_LEVEL2_CACHE_SIZE,
    _SC_LEVEL2_CACHE_ASSOC,
    _SC_LEVEL2_CACHE_LINESIZE,
    _SC_LEVEL3_CACHE_SIZE,
    _SC_LEVEL3_CACHE_ASSOC,
    _SC_LEVEL3_CACHE_LINESIZE,
    _SC_LEVEL4_CACHE_SIZE,
    _SC_LEVEL4_CACHE_ASSOC,
    _SC_LEVEL4_CACHE_LINESIZE,
    _SC_IPV6 = _SC_LEVEL1_ICACHE_SIZE + 50,
    _SC_RAW_SOCKETS,
    _SC_V7_ILP32_OFF32,
    _SC_V7_ILP32_OFFBIG,
    _SC_V7_LP64_OFF64,
    _SC_V7_LPBIG_OFFBIG,
    _SC_SS_REPL_MAX,
    _SC_TRACE_EVENT_NAME_MAX,
    _SC_TRACE_NAME_MAX,
    _SC_TRACE_SYS_MAX,
    _SC_TRACE_USER_EVENT_MAX,
    _SC_XOPEN_STREAMS,
    _SC_THREAD_ROBUST_PRIO_INHERIT,
    _SC_THREAD_ROBUST_PRIO_PROTECT
  };
enum
  {
    _CS_PATH,
    _CS_V6_WIDTH_RESTRICTED_ENVS,
    _CS_GNU_LIBC_VERSION,
    _CS_GNU_LIBPTHREAD_VERSION,
    _CS_V5_WIDTH_RESTRICTED_ENVS,
    _CS_V7_WIDTH_RESTRICTED_ENVS,
    _CS_LFS_CFLAGS = 1000,
    _CS_LFS_LDFLAGS,
    _CS_LFS_LIBS,
    _CS_LFS_LINTFLAGS,
    _CS_LFS64_CFLAGS,
    _CS_LFS64_LDFLAGS,
    _CS_LFS64_LIBS,
    _CS_LFS64_LINTFLAGS,
    _CS_XBS5_ILP32_OFF32_CFLAGS = 1100,
    _CS_XBS5_ILP32_OFF32_LDFLAGS,
    _CS_XBS5_ILP32_OFF32_LIBS,
    _CS_XBS5_ILP32_OFF32_LINTFLAGS,
    _CS_XBS5_ILP32_OFFBIG_CFLAGS,
    _CS_XBS5_ILP32_OFFBIG_LDFLAGS,
    _CS_XBS5_ILP32_OFFBIG_LIBS,
    _CS_XBS5_ILP32_OFFBIG_LINTFLAGS,
    _CS_XBS5_LP64_OFF64_CFLAGS,
    _CS_XBS5_LP64_OFF64_LDFLAGS,
    _CS_XBS5_LP64_OFF64_LIBS,
    _CS_XBS5_LP64_OFF64_LINTFLAGS,
    _CS_XBS5_LPBIG_OFFBIG_CFLAGS,
    _CS_XBS5_LPBIG_OFFBIG_LDFLAGS,
    _CS_XBS5_LPBIG_OFFBIG_LIBS,
    _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS,
    _CS_POSIX_V6_ILP32_OFF32_CFLAGS,
    _CS_POSIX_V6_ILP32_OFF32_LDFLAGS,
    _CS_POSIX_V6_ILP32_OFF32_LIBS,
    _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS,
    _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS,
    _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS,
    _CS_POSIX_V6_ILP32_OFFBIG_LIBS,
    _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS,
    _CS_POSIX_V6_LP64_OFF64_CFLAGS,
    _CS_POSIX_V6_LP64_OFF64_LDFLAGS,
    _CS_POSIX_V6_LP64_OFF64_LIBS,
    _CS_POSIX_V6_LP64_OFF64_LINTFLAGS,
    _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS,
    _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS,
    _CS_POSIX_V6_LPBIG_OFFBIG_LIBS,
    _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS,
    _CS_POSIX_V7_ILP32_OFF32_CFLAGS,
    _CS_POSIX_V7_ILP32_OFF32_LDFLAGS,
    _CS_POSIX_V7_ILP32_OFF32_LIBS,
    _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS,
    _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS,
    _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS,
    _CS_POSIX_V7_ILP32_OFFBIG_LIBS,
    _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS,
    _CS_POSIX_V7_LP64_OFF64_CFLAGS,
    _CS_POSIX_V7_LP64_OFF64_LDFLAGS,
    _CS_POSIX_V7_LP64_OFF64_LIBS,
    _CS_POSIX_V7_LP64_OFF64_LINTFLAGS,
    _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS,
    _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS,
    _CS_POSIX_V7_LPBIG_OFFBIG_LIBS,
    _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS,
    _CS_V6_ENV,
    _CS_V7_ENV
  };
extern long int pathconf (const char *__path, int __name)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern long int fpathconf (int __fd, int __name) __attribute__ ((__nothrow__ , __leaf__));
extern long int sysconf (int __name) __attribute__ ((__nothrow__ , __leaf__));
extern size_t confstr (int __name, char *__buf, size_t __len) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t getpid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t getppid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t getpgrp (void) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t __getpgid (__pid_t __pid) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t getpgid (__pid_t __pid) __attribute__ ((__nothrow__ , __leaf__));
extern int setpgid (__pid_t __pid, __pid_t __pgid) __attribute__ ((__nothrow__ , __leaf__));
extern int setpgrp (void) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t setsid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __pid_t getsid (__pid_t __pid) __attribute__ ((__nothrow__ , __leaf__));
extern __uid_t getuid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __uid_t geteuid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __gid_t getgid (void) __attribute__ ((__nothrow__ , __leaf__));
extern __gid_t getegid (void) __attribute__ ((__nothrow__ , __leaf__));
extern int getgroups (int __size, __gid_t __list[]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int group_member (__gid_t __gid) __attribute__ ((__nothrow__ , __leaf__));
extern int setuid (__uid_t __uid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int setreuid (__uid_t __ruid, __uid_t __euid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int seteuid (__uid_t __uid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int setgid (__gid_t __gid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int setregid (__gid_t __rgid, __gid_t __egid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int setegid (__gid_t __gid) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int getresuid (__uid_t *__ruid, __uid_t *__euid, __uid_t *__suid)
     __attribute__ ((__nothrow__ , __leaf__));
extern int getresgid (__gid_t *__rgid, __gid_t *__egid, __gid_t *__sgid)
     __attribute__ ((__nothrow__ , __leaf__));
extern int setresuid (__uid_t __ruid, __uid_t __euid, __uid_t __suid)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int setresgid (__gid_t __rgid, __gid_t __egid, __gid_t __sgid)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern __pid_t fork (void) __attribute__ ((__nothrow__));
extern __pid_t vfork (void) __attribute__ ((__nothrow__ , __leaf__));
extern char *ttyname (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))) __attribute__ ((__warn_unused_result__));
extern int isatty (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern int ttyslot (void) __attribute__ ((__nothrow__ , __leaf__));
extern int link (const char *__from, const char *__to)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__));
extern int linkat (int __fromfd, const char *__from, int __tofd,
     const char *__to, int __flags)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 4))) __attribute__ ((__warn_unused_result__));
extern int symlink (const char *__from, const char *__to)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__));
extern ssize_t readlink (const char *__restrict __path,
    char *__restrict __buf, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__));
extern int symlinkat (const char *__from, int __tofd,
        const char *__to) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3))) __attribute__ ((__warn_unused_result__));
extern ssize_t readlinkat (int __fd, const char *__restrict __path,
      char *__restrict __buf, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3))) __attribute__ ((__warn_unused_result__));
extern int unlink (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int unlinkat (int __fd, const char *__name, int __flag)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int rmdir (const char *__path) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern __pid_t tcgetpgrp (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __attribute__ ((__nothrow__ , __leaf__));
extern char *getlogin (void);
extern int getlogin_r (char *__name, size_t __name_len) __attribute__ ((__nonnull__ (1)));
extern int setlogin (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));

extern char *optarg;
extern int optind;
extern int opterr;
extern int optopt;
extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
       __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));



extern int gethostname (char *__name, size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sethostname (const char *__name, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int sethostid (long int __id) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int getdomainname (char *__name, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int setdomainname (const char *__name, size_t __len)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int vhangup (void) __attribute__ ((__nothrow__ , __leaf__));
extern int revoke (const char *__file) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int profil (unsigned short int *__sample_buffer, size_t __size,
     size_t __offset, unsigned int __scale)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int acct (const char *__name) __attribute__ ((__nothrow__ , __leaf__));
extern char *getusershell (void) __attribute__ ((__nothrow__ , __leaf__));
extern void endusershell (void) __attribute__ ((__nothrow__ , __leaf__));
extern void setusershell (void) __attribute__ ((__nothrow__ , __leaf__));
extern int daemon (int __nochdir, int __noclose) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int chroot (const char *__path) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern char *getpass (const char *__prompt) __attribute__ ((__nonnull__ (1)));
extern int fsync (int __fd);
extern int syncfs (int __fd) __attribute__ ((__nothrow__ , __leaf__));
extern long int gethostid (void);
extern void sync (void) __attribute__ ((__nothrow__ , __leaf__));
extern int getpagesize (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int getdtablesize (void) __attribute__ ((__nothrow__ , __leaf__));
extern int truncate (const char *__file, __off_t __length)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int truncate64 (const char *__file, __off64_t __length)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int ftruncate (int __fd, __off_t __length) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int ftruncate64 (int __fd, __off64_t __length) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int brk (void *__addr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void *sbrk (intptr_t __delta) __attribute__ ((__nothrow__ , __leaf__));
extern long int syscall (long int __sysno, ...) __attribute__ ((__nothrow__ , __leaf__));
extern int lockf (int __fd, int __cmd, __off_t __len) __attribute__ ((__warn_unused_result__));
extern int lockf64 (int __fd, int __cmd, __off64_t __len) __attribute__ ((__warn_unused_result__));
ssize_t copy_file_range (int __infd, __off64_t *__pinoff,
    int __outfd, __off64_t *__poutoff,
    size_t __length, unsigned int __flags);
extern int fdatasync (int __fildes);
extern char *crypt (const char *__key, const char *__salt)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern void swab (const void *__restrict __from, void *__restrict __to,
    ssize_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
int getentropy (void *__buffer, size_t __length) __attribute__ ((__warn_unused_result__));
extern ssize_t __read_chk (int __fd, void *__buf, size_t __nbytes,
      size_t __buflen) __attribute__ ((__warn_unused_result__));
extern ssize_t __read_alias (int __fd, void *__buf, size_t __nbytes) __asm__ ("" "read") __attribute__ ((__warn_unused_result__));
extern ssize_t __read_chk_warn (int __fd, void *__buf, size_t __nbytes, size_t __buflen) __asm__ ("" "__read_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("read called with bigger length than size of " "the destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) ssize_t
read (int __fd, void *__buf, size_t __nbytes)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 0)) && (__builtin_object_size (__buf, 0)) == (long unsigned int) -1) || (((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char))))) && (((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char)))))) ? __read_alias (__fd, __buf, __nbytes) : ((((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) && !(((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) ? __read_chk_warn (__fd, __buf, __nbytes, __builtin_object_size (__buf, 0)) : __read_chk (__fd, __buf, __nbytes, __builtin_object_size (__buf, 0))));
}
extern ssize_t __pread_chk (int __fd, void *__buf, size_t __nbytes,
       __off_t __offset, size_t __bufsize) __attribute__ ((__warn_unused_result__));
extern ssize_t __pread64_chk (int __fd, void *__buf, size_t __nbytes,
         __off64_t __offset, size_t __bufsize) __attribute__ ((__warn_unused_result__));
extern ssize_t __pread_alias (int __fd, void *__buf, size_t __nbytes, __off_t __offset) __asm__ ("" "pread") __attribute__ ((__warn_unused_result__));
extern ssize_t __pread64_alias (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) __asm__ ("" "pread64") __attribute__ ((__warn_unused_result__));
extern ssize_t __pread_chk_warn (int __fd, void *__buf, size_t __nbytes, __off_t __offset, size_t __bufsize) __asm__ ("" "__pread_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("pread called with bigger length than size of " "the destination buffer")));
extern ssize_t __pread64_chk_warn (int __fd, void *__buf, size_t __nbytes, __off64_t __offset, size_t __bufsize) __asm__ ("" "__pread64_chk")
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("pread64 called with bigger length than size of " "the destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) ssize_t
pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 0)) && (__builtin_object_size (__buf, 0)) == (long unsigned int) -1) || (((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char))))) && (((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char)))))) ? __pread_alias (__fd, __buf, __nbytes, __offset) : ((((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) && !(((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) ? __pread_chk_warn (__fd, __buf, __nbytes, __offset, __builtin_object_size (__buf, 0)) : __pread_chk (__fd, __buf, __nbytes, __offset, __builtin_object_size (__buf, 0))));
}
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) ssize_t
pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 0)) && (__builtin_object_size (__buf, 0)) == (long unsigned int) -1) || (((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char))))) && (((long unsigned int) (__nbytes)) <= ((__builtin_object_size (__buf, 0))) / ((sizeof (char)))))) ? __pread64_alias (__fd, __buf, __nbytes, __offset) : ((((__typeof (__nbytes)) 0 < (__typeof (__nbytes)) -1 || (__builtin_constant_p (__nbytes) && (__nbytes) > 0)) && __builtin_constant_p ((((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) && !(((long unsigned int) (__nbytes)) <= (__builtin_object_size (__buf, 0)) / (sizeof (char)))) ? __pread64_chk_warn (__fd, __buf, __nbytes, __offset, __builtin_object_size (__buf, 0)) : __pread64_chk (__fd, __buf, __nbytes, __offset, __builtin_object_size (__buf, 0))));
}
extern ssize_t __readlink_chk (const char *__restrict __path,
          char *__restrict __buf, size_t __len,
          size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__));
extern ssize_t __readlink_alias (const char *__restrict __path, char *__restrict __buf, size_t __len) __asm__ ("" "readlink") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__));
extern ssize_t __readlink_chk_warn (const char *__restrict __path, char *__restrict __buf, size_t __len, size_t __buflen) __asm__ ("" "__readlink_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("readlink called with bigger length " "than size of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__warn_unused_result__)) ssize_t
__attribute__ ((__nothrow__ , __leaf__)) readlink (const char *__restrict __path, char *__restrict __buf, size_t __len)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __readlink_alias (__path, __buf, __len) : ((((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __readlink_chk_warn (__path, __buf, __len, __builtin_object_size (__buf, 2 > 1)) : __readlink_chk (__path, __buf, __len, __builtin_object_size (__buf, 2 > 1))));
}
extern ssize_t __readlinkat_chk (int __fd, const char *__restrict __path,
     char *__restrict __buf, size_t __len,
     size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3))) __attribute__ ((__warn_unused_result__));
extern ssize_t __readlinkat_alias (int __fd, const char *__restrict __path, char *__restrict __buf, size_t __len) __asm__ ("" "readlinkat") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2, 3))) __attribute__ ((__warn_unused_result__));
extern ssize_t __readlinkat_chk_warn (int __fd, const char *__restrict __path, char *__restrict __buf, size_t __len, size_t __buflen) __asm__ ("" "__readlinkat_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2, 3))) __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("readlinkat called with bigger " "length than size of destination " "buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__nonnull__ (2, 3))) __attribute__ ((__warn_unused_result__)) ssize_t
__attribute__ ((__nothrow__ , __leaf__)) readlinkat (int __fd, const char *__restrict __path, char *__restrict __buf, size_t __len)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __readlinkat_alias (__fd, __path, __buf, __len) : ((((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __readlinkat_chk_warn (__fd, __path, __buf, __len, __builtin_object_size (__buf, 2 > 1)) : __readlinkat_chk (__fd, __path, __buf, __len, __builtin_object_size (__buf, 2 > 1))));
}
extern char *__getcwd_chk (char *__buf, size_t __size, size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *__getcwd_alias (char *__buf, size_t __size) __asm__ ("" "getcwd") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern char *__getcwd_chk_warn (char *__buf, size_t __size, size_t __buflen) __asm__ ("" "__getcwd_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("getcwd caller with bigger length than size of " "destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__warn_unused_result__)) char *
__attribute__ ((__nothrow__ , __leaf__)) getcwd (char *__buf, size_t __size)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__size)) 0 < (__typeof (__size)) -1 || (__builtin_constant_p (__size) && (__size) > 0)) && __builtin_constant_p ((((long unsigned int) (__size)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__size)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __getcwd_alias (__buf, __size) : ((((__typeof (__size)) 0 < (__typeof (__size)) -1 || (__builtin_constant_p (__size) && (__size) > 0)) && __builtin_constant_p ((((long unsigned int) (__size)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__size)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __getcwd_chk_warn (__buf, __size, __builtin_object_size (__buf, 2 > 1)) : __getcwd_chk (__buf, __size, __builtin_object_size (__buf, 2 > 1))));
}
extern char *__getwd_chk (char *__buf, size_t buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern char *__getwd_warn (char *__buf) __asm__ ("" "getwd") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("please use getcwd instead, as getwd " "doesn't specify buffer size")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__deprecated__)) __attribute__ ((__warn_unused_result__)) char *
__attribute__ ((__nothrow__ , __leaf__)) getwd (char *__buf)
{
  if (__builtin_object_size (__buf, 2 > 1) != (size_t) -1)
    return __getwd_chk (__buf, __builtin_object_size (__buf, 2 > 1));
  return __getwd_warn (__buf);
}
extern size_t __confstr_chk (int __name, char *__buf, size_t __len,
        size_t __buflen) __attribute__ ((__nothrow__ , __leaf__));
extern size_t __confstr_alias (int __name, char *__buf, size_t __len) __asm__ ("" "confstr") __attribute__ ((__nothrow__ , __leaf__));
extern size_t __confstr_chk_warn (int __name, char *__buf, size_t __len, size_t __buflen) __asm__ ("" "__confstr_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__((__warning__ ("confstr called with bigger length than size of destination " "buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) size_t
__attribute__ ((__nothrow__ , __leaf__)) confstr (int __name, char *__buf, size_t __len)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__len)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __confstr_alias (__name, __buf, __len) : ((((__typeof (__len)) 0 < (__typeof (__len)) -1 || (__builtin_constant_p (__len) && (__len) > 0)) && __builtin_constant_p ((((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__len)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __confstr_chk_warn (__name, __buf, __len, __builtin_object_size (__buf, 2 > 1)) : __confstr_chk (__name, __buf, __len, __builtin_object_size (__buf, 2 > 1))));
}
extern int __getgroups_chk (int __size, __gid_t __list[], size_t __listlen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int __getgroups_alias (int __size, __gid_t __list[]) __asm__ ("" "getgroups") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern int __getgroups_chk_warn (int __size, __gid_t __list[], size_t __listlen) __asm__ ("" "__getgroups_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("getgroups called with bigger group count than what " "can fit into destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) getgroups (int __size, __gid_t __list[])
{
  return (((__builtin_constant_p (__builtin_object_size (__list, 2 > 1)) && (__builtin_object_size (__list, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__size)) 0 < (__typeof (__size)) -1 || (__builtin_constant_p (__size) && (__size) > 0)) && __builtin_constant_p ((((long unsigned int) (__size)) <= ((__builtin_object_size (__list, 2 > 1))) / ((sizeof (__gid_t))))) && (((long unsigned int) (__size)) <= ((__builtin_object_size (__list, 2 > 1))) / ((sizeof (__gid_t)))))) ? __getgroups_alias (__size, __list) : ((((__typeof (__size)) 0 < (__typeof (__size)) -1 || (__builtin_constant_p (__size) && (__size) > 0)) && __builtin_constant_p ((((long unsigned int) (__size)) <= (__builtin_object_size (__list, 2 > 1)) / (sizeof (__gid_t)))) && !(((long unsigned int) (__size)) <= (__builtin_object_size (__list, 2 > 1)) / (sizeof (__gid_t)))) ? __getgroups_chk_warn (__size, __list, __builtin_object_size (__list, 2 > 1)) : __getgroups_chk (__size, __list, __builtin_object_size (__list, 2 > 1))));
}
extern int __ttyname_r_chk (int __fd, char *__buf, size_t __buflen,
       size_t __nreal) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int __ttyname_r_alias (int __fd, char *__buf, size_t __buflen) __asm__ ("" "ttyname_r") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2)));
extern int __ttyname_r_chk_warn (int __fd, char *__buf, size_t __buflen, size_t __nreal) __asm__ ("" "__ttyname_r_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (2))) __attribute__((__warning__ ("ttyname_r called with bigger buflen than " "size of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) ttyname_r (int __fd, char *__buf, size_t __buflen)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __ttyname_r_alias (__fd, __buf, __buflen) : ((((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __ttyname_r_chk_warn (__fd, __buf, __buflen, __builtin_object_size (__buf, 2 > 1)) : __ttyname_r_chk (__fd, __buf, __buflen, __builtin_object_size (__buf, 2 > 1))));
}
extern int __getlogin_r_chk (char *__buf, size_t __buflen, size_t __nreal)
     __attribute__ ((__nonnull__ (1)));
extern int __getlogin_r_alias (char *__buf, size_t __buflen) __asm__ ("" "getlogin_r") __attribute__ ((__nonnull__ (1)));
extern int __getlogin_r_chk_warn (char *__buf, size_t __buflen, size_t __nreal) __asm__ ("" "__getlogin_r_chk")
     __attribute__ ((__nonnull__ (1))) __attribute__((__warning__ ("getlogin_r called with bigger buflen than " "size of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
getlogin_r (char *__buf, size_t __buflen)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __getlogin_r_alias (__buf, __buflen) : ((((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __getlogin_r_chk_warn (__buf, __buflen, __builtin_object_size (__buf, 2 > 1)) : __getlogin_r_chk (__buf, __buflen, __builtin_object_size (__buf, 2 > 1))));
}
extern int __gethostname_chk (char *__buf, size_t __buflen, size_t __nreal)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int __gethostname_alias (char *__buf, size_t __buflen) __asm__ ("" "gethostname") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int __gethostname_chk_warn (char *__buf, size_t __buflen, size_t __nreal) __asm__ ("" "__gethostname_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (1))) __attribute__((__warning__ ("gethostname called with bigger buflen than " "size of destination buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) gethostname (char *__buf, size_t __buflen)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __gethostname_alias (__buf, __buflen) : ((((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __gethostname_chk_warn (__buf, __buflen, __builtin_object_size (__buf, 2 > 1)) : __gethostname_chk (__buf, __buflen, __builtin_object_size (__buf, 2 > 1))));
}
extern int __getdomainname_chk (char *__buf, size_t __buflen, size_t __nreal)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int __getdomainname_alias (char *__buf, size_t __buflen) __asm__ ("" "getdomainname") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__));
extern int __getdomainname_chk_warn (char *__buf, size_t __buflen, size_t __nreal) __asm__ ("" "__getdomainname_chk") __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__nonnull__ (1))) __attribute__ ((__warn_unused_result__)) __attribute__((__warning__ ("getdomainname called with bigger " "buflen than size of destination " "buffer")));
extern __inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) __attribute__ ((__artificial__)) int
__attribute__ ((__nothrow__ , __leaf__)) getdomainname (char *__buf, size_t __buflen)
{
  return (((__builtin_constant_p (__builtin_object_size (__buf, 2 > 1)) && (__builtin_object_size (__buf, 2 > 1)) == (long unsigned int) -1) || (((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char))))) && (((long unsigned int) (__buflen)) <= ((__builtin_object_size (__buf, 2 > 1))) / ((sizeof (char)))))) ? __getdomainname_alias (__buf, __buflen) : ((((__typeof (__buflen)) 0 < (__typeof (__buflen)) -1 || (__builtin_constant_p (__buflen) && (__buflen) > 0)) && __builtin_constant_p ((((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) && !(((long unsigned int) (__buflen)) <= (__builtin_object_size (__buf, 2 > 1)) / (sizeof (char)))) ? __getdomainname_chk_warn (__buf, __buflen, __builtin_object_size (__buf, 2 > 1)) : __getdomainname_chk (__buf, __buflen, __builtin_object_size (__buf, 2 > 1))));
}


typedef float float_t;
typedef double double_t;
enum
  {
    FP_INT_UPWARD =
      0,
    FP_INT_DOWNWARD =
      1,
    FP_INT_TOWARDZERO =
      2,
    FP_INT_TONEARESTFROMZERO =
      3,
    FP_INT_TONEAREST =
      4,
  };
extern int __fpclassify (double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __signbit (double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __isinf (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __finite (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __isnan (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __iseqsig (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern int __issignaling (double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern double acos (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __acos (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double asin (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __asin (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double atan (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __atan (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double atan2 (double __y, double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __atan2 (double __y, double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern double cos (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __cos (double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern double sin (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __sin (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double tan (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __tan (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double cosh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __cosh (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double sinh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __sinh (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double tanh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __tanh (double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincos (double __x, double *__sinx, double *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincos (double __x, double *__sinx, double *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern double acosh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __acosh (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double asinh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __asinh (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double atanh (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __atanh (double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern double exp (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __exp (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double frexp (double __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern double __frexp (double __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern double ldexp (double __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern double __ldexp (double __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern double log (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __log (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double log10 (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __log10 (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double modf (double __x, double *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern double __modf (double __x, double *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern double exp10 (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __exp10 (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double expm1 (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __expm1 (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double log1p (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __log1p (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double logb (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __logb (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double exp2 (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __exp2 (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double log2 (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __log2 (double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern double pow (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __pow (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double sqrt (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __sqrt (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double hypot (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __hypot (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double cbrt (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __cbrt (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double ceil (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __ceil (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double fabs (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __fabs (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double floor (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __floor (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double fmod (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __fmod (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern int isinf (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int finite (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double drem (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __drem (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double significand (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __significand (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double copysign (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __copysign (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double nan (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern double __nan (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern int isnan (double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double j0 (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __j0 (double) __attribute__ ((__nothrow__ , __leaf__));
extern double j1 (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __j1 (double) __attribute__ ((__nothrow__ , __leaf__));
extern double jn (int, double) __attribute__ ((__nothrow__ , __leaf__)); extern double __jn (int, double) __attribute__ ((__nothrow__ , __leaf__));
extern double y0 (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __y0 (double) __attribute__ ((__nothrow__ , __leaf__));
extern double y1 (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __y1 (double) __attribute__ ((__nothrow__ , __leaf__));
extern double yn (int, double) __attribute__ ((__nothrow__ , __leaf__)); extern double __yn (int, double) __attribute__ ((__nothrow__ , __leaf__));
extern double erf (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __erf (double) __attribute__ ((__nothrow__ , __leaf__));
extern double erfc (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __erfc (double) __attribute__ ((__nothrow__ , __leaf__));
extern double lgamma (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __lgamma (double) __attribute__ ((__nothrow__ , __leaf__));
extern double tgamma (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __tgamma (double) __attribute__ ((__nothrow__ , __leaf__));
extern double gamma (double) __attribute__ ((__nothrow__ , __leaf__)); extern double __gamma (double) __attribute__ ((__nothrow__ , __leaf__));
extern double lgamma_r (double, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern double __lgamma_r (double, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern double rint (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __rint (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double nextafter (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __nextafter (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double nexttoward (double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __nexttoward (double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double nextdown (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __nextdown (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double nextup (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __nextup (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double remainder (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __remainder (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double scalbn (double __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern double __scalbn (double __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogb (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogb (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogb (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogb (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double scalbln (double __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern double __scalbln (double __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern double nearbyint (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern double __nearbyint (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double round (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __round (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double trunc (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __trunc (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double remquo (double __x, double __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern double __remquo (double __x, double __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrint (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrint (double __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrint (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrint (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lround (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lround (double __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llround (double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llround (double __x) __attribute__ ((__nothrow__ , __leaf__));
extern double fdim (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)); extern double __fdim (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double fmax (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __fmax (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double fmin (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __fmin (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double fma (double __x, double __y, double __z) __attribute__ ((__nothrow__ , __leaf__)); extern double __fma (double __x, double __y, double __z) __attribute__ ((__nothrow__ , __leaf__));
extern double roundeven (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __roundeven (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfp (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfp (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfp (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfp (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpx (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpx (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpx (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpx (double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern double fmaxmag (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __fmaxmag (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern double fminmag (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern double __fminmag (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorder (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermag (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalize (double *__cx, const double *__x) __attribute__ ((__nothrow__ , __leaf__));
extern double getpayload (const double *__x) __attribute__ ((__nothrow__ , __leaf__)); extern double __getpayload (const double *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayload (double *__x, double __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsig (double *__x, double __payload) __attribute__ ((__nothrow__ , __leaf__));
extern double scalb (double __x, double __n) __attribute__ ((__nothrow__ , __leaf__)); extern double __scalb (double __x, double __n) __attribute__ ((__nothrow__ , __leaf__));
extern int __fpclassifyf (float __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __signbitf (float __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __isinff (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __finitef (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __isnanf (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __iseqsigf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern int __issignalingf (float __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern float acosf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __acosf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float asinf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __asinf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float atanf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __atanf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float atan2f (float __y, float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __atan2f (float __y, float __x) __attribute__ ((__nothrow__ , __leaf__));
 extern float cosf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __cosf (float __x) __attribute__ ((__nothrow__ , __leaf__));
 extern float sinf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __sinf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float tanf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __tanf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float coshf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __coshf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float sinhf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __sinhf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float tanhf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __tanhf (float __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf (float __x, float *__sinx, float *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf (float __x, float *__sinx, float *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern float acoshf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __acoshf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float asinhf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __asinhf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float atanhf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __atanhf (float __x) __attribute__ ((__nothrow__ , __leaf__));
 extern float expf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __expf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float frexpf (float __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern float __frexpf (float __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern float ldexpf (float __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern float __ldexpf (float __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern float logf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __logf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float log10f (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __log10f (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float modff (float __x, float *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern float __modff (float __x, float *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern float exp10f (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __exp10f (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float expm1f (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __expm1f (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float log1pf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __log1pf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float logbf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __logbf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float exp2f (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __exp2f (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float log2f (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __log2f (float __x) __attribute__ ((__nothrow__ , __leaf__));
 extern float powf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __powf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float sqrtf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __sqrtf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float hypotf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __hypotf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float cbrtf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __cbrtf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float ceilf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __ceilf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float fabsf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __fabsf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float floorf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __floorf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float fmodf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __fmodf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern int isinff (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int finitef (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float dremf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __dremf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float significandf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __significandf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float copysignf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __copysignf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float nanf (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern float __nanf (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern int isnanf (float __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float j0f (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __j0f (float) __attribute__ ((__nothrow__ , __leaf__));
extern float j1f (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __j1f (float) __attribute__ ((__nothrow__ , __leaf__));
extern float jnf (int, float) __attribute__ ((__nothrow__ , __leaf__)); extern float __jnf (int, float) __attribute__ ((__nothrow__ , __leaf__));
extern float y0f (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __y0f (float) __attribute__ ((__nothrow__ , __leaf__));
extern float y1f (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __y1f (float) __attribute__ ((__nothrow__ , __leaf__));
extern float ynf (int, float) __attribute__ ((__nothrow__ , __leaf__)); extern float __ynf (int, float) __attribute__ ((__nothrow__ , __leaf__));
extern float erff (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __erff (float) __attribute__ ((__nothrow__ , __leaf__));
extern float erfcf (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __erfcf (float) __attribute__ ((__nothrow__ , __leaf__));
extern float lgammaf (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __lgammaf (float) __attribute__ ((__nothrow__ , __leaf__));
extern float tgammaf (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __tgammaf (float) __attribute__ ((__nothrow__ , __leaf__));
extern float gammaf (float) __attribute__ ((__nothrow__ , __leaf__)); extern float __gammaf (float) __attribute__ ((__nothrow__ , __leaf__));
extern float lgammaf_r (float, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern float __lgammaf_r (float, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern float rintf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __rintf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float nextafterf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __nextafterf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float nexttowardf (float __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __nexttowardf (float __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float nextdownf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __nextdownf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float nextupf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __nextupf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float remainderf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __remainderf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float scalbnf (float __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern float __scalbnf (float __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float scalblnf (float __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern float __scalblnf (float __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern float nearbyintf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern float __nearbyintf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float roundf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __roundf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float truncf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __truncf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float remquof (float __x, float __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern float __remquof (float __x, float __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf (float __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf (float __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf (float __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf (float __x) __attribute__ ((__nothrow__ , __leaf__));
extern float fdimf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)); extern float __fdimf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fmaxf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __fmaxf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float fminf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __fminf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float fmaf (float __x, float __y, float __z) __attribute__ ((__nothrow__ , __leaf__)); extern float __fmaf (float __x, float __y, float __z) __attribute__ ((__nothrow__ , __leaf__));
extern float roundevenf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __roundevenf (float __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf (float __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern float fmaxmagf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __fmaxmagf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern float fminmagf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern float __fminmagf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf (float __x, float __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef (float *__cx, const float *__x) __attribute__ ((__nothrow__ , __leaf__));
extern float getpayloadf (const float *__x) __attribute__ ((__nothrow__ , __leaf__)); extern float __getpayloadf (const float *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf (float *__x, float __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf (float *__x, float __payload) __attribute__ ((__nothrow__ , __leaf__));
extern float scalbf (float __x, float __n) __attribute__ ((__nothrow__ , __leaf__)); extern float __scalbf (float __x, float __n) __attribute__ ((__nothrow__ , __leaf__));
extern int __fpclassifyl (long double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __signbitl (long double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __isinfl (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __finitel (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __isnanl (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __iseqsigl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern int __issignalingl (long double __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern long double acosl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __acosl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double asinl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __asinl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double atanl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __atanl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double atan2l (long double __y, long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __atan2l (long double __y, long double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern long double cosl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __cosl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern long double sinl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __sinl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double tanl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __tanl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double coshl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __coshl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double sinhl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __sinhl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double tanhl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __tanhl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosl (long double __x, long double *__sinx, long double *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosl (long double __x, long double *__sinx, long double *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern long double acoshl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __acoshl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double asinhl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __asinhl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double atanhl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __atanhl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern long double expl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __expl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double frexpl (long double __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern long double __frexpl (long double __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern long double ldexpl (long double __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern long double __ldexpl (long double __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern long double logl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __logl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double log10l (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __log10l (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double modfl (long double __x, long double *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern long double __modfl (long double __x, long double *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern long double exp10l (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __exp10l (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double expm1l (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __expm1l (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double log1pl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __log1pl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double logbl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __logbl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double exp2l (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __exp2l (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double log2l (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __log2l (long double __x) __attribute__ ((__nothrow__ , __leaf__));
 extern long double powl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __powl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double sqrtl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __sqrtl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double hypotl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __hypotl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double cbrtl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __cbrtl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double ceill (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __ceill (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double fabsl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __fabsl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double floorl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __floorl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double fmodl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __fmodl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern int isinfl (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int finitel (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double dreml (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __dreml (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double significandl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __significandl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double copysignl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __copysignl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double nanl (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nanl (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern int isnanl (long double __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double j0l (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __j0l (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double j1l (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __j1l (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double jnl (int, long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __jnl (int, long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double y0l (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __y0l (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double y1l (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __y1l (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double ynl (int, long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __ynl (int, long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double erfl (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __erfl (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double erfcl (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __erfcl (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double lgammal (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __lgammal (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double tgammal (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __tgammal (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double gammal (long double) __attribute__ ((__nothrow__ , __leaf__)); extern long double __gammal (long double) __attribute__ ((__nothrow__ , __leaf__));
extern long double lgammal_r (long double, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern long double __lgammal_r (long double, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern long double rintl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __rintl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double nextafterl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nextafterl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double nexttowardl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nexttowardl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double nextdownl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nextdownl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double nextupl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nextupl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double remainderl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __remainderl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double scalbnl (long double __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern long double __scalbnl (long double __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double scalblnl (long double __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern long double __scalblnl (long double __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern long double nearbyintl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __nearbyintl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double roundl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __roundl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double truncl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __truncl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double remquol (long double __x, long double __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern long double __remquol (long double __x, long double __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundl (long double __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundl (long double __x) __attribute__ ((__nothrow__ , __leaf__));
extern long double fdiml (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)); extern long double __fdiml (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern long double fmaxl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __fmaxl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double fminl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __fminl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double fmal (long double __x, long double __y, long double __z) __attribute__ ((__nothrow__ , __leaf__)); extern long double __fmal (long double __x, long double __y, long double __z) __attribute__ ((__nothrow__ , __leaf__));
extern long double roundevenl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __roundevenl (long double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxl (long double __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern long double fmaxmagl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __fmaxmagl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern long double fminmagl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern long double __fminmagl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizel (long double *__cx, const long double *__x) __attribute__ ((__nothrow__ , __leaf__));
extern long double getpayloadl (const long double *__x) __attribute__ ((__nothrow__ , __leaf__)); extern long double __getpayloadl (const long double *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadl (long double *__x, long double __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigl (long double *__x, long double __payload) __attribute__ ((__nothrow__ , __leaf__));
extern long double scalbl (long double __x, long double __n) __attribute__ ((__nothrow__ , __leaf__)); extern long double __scalbl (long double __x, long double __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 acosf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __acosf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 asinf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __asinf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 atanf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __atanf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 atan2f32 (_Float32 __y, _Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __atan2f32 (_Float32 __y, _Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32 cosf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __cosf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32 sinf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __sinf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 tanf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __tanf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 coshf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __coshf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 sinhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __sinhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 tanhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __tanhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf32 (_Float32 __x, _Float32 *__sinx, _Float32 *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf32 (_Float32 __x, _Float32 *__sinx, _Float32 *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 acoshf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __acoshf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 asinhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __asinhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 atanhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __atanhf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32 expf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __expf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 frexpf32 (_Float32 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __frexpf32 (_Float32 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 ldexpf32 (_Float32 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __ldexpf32 (_Float32 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32 logf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __logf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 log10f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __log10f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 modff32 (_Float32 __x, _Float32 *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __modff32 (_Float32 __x, _Float32 *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern _Float32 exp10f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __exp10f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 expm1f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __expm1f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 log1pf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __log1pf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 logbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __logbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 exp2f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __exp2f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 log2f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __log2f32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32 powf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __powf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 sqrtf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __sqrtf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 hypotf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __hypotf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 cbrtf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __cbrtf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 ceilf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __ceilf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 fabsf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __fabsf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 floorf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __floorf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 fmodf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __fmodf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 copysignf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __copysignf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 nanf32 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __nanf32 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 j0f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __j0f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 j1f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __j1f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 jnf32 (int, _Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __jnf32 (int, _Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 y0f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __y0f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 y1f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __y1f32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 ynf32 (int, _Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __ynf32 (int, _Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 erff32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __erff32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 erfcf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __erfcf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 lgammaf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __lgammaf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 tgammaf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __tgammaf32 (_Float32) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 lgammaf32_r (_Float32, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __lgammaf32_r (_Float32, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 rintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __rintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 nextafterf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __nextafterf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 nextdownf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __nextdownf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 nextupf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __nextupf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 remainderf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __remainderf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 scalbnf32 (_Float32 __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __scalbnf32 (_Float32 __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 scalblnf32 (_Float32 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __scalblnf32 (_Float32 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 nearbyintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __nearbyintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 roundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __roundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 truncf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __truncf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 remquof32 (_Float32 __x, _Float32 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __remquof32 (_Float32 __x, _Float32 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 fdimf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __fdimf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 fmaxf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __fmaxf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 fminf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __fminf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 fmaf32 (_Float32 __x, _Float32 __y, _Float32 __z) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __fmaf32 (_Float32 __x, _Float32 __y, _Float32 __z) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 roundevenf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __roundevenf32 (_Float32 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf32 (_Float32 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 fmaxmagf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __fmaxmagf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32 fminmagf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32 __fminmagf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf32 (_Float32 __x, _Float32 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef32 (_Float32 *__cx, const _Float32 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 getpayloadf32 (const _Float32 *__x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32 __getpayloadf32 (const _Float32 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf32 (_Float32 *__x, _Float32 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf32 (_Float32 *__x, _Float32 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 acosf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __acosf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 asinf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __asinf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 atanf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __atanf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 atan2f64 (_Float64 __y, _Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __atan2f64 (_Float64 __y, _Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64 cosf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __cosf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64 sinf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __sinf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 tanf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __tanf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 coshf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __coshf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 sinhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __sinhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 tanhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __tanhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf64 (_Float64 __x, _Float64 *__sinx, _Float64 *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf64 (_Float64 __x, _Float64 *__sinx, _Float64 *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 acoshf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __acoshf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 asinhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __asinhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 atanhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __atanhf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64 expf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __expf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 frexpf64 (_Float64 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __frexpf64 (_Float64 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 ldexpf64 (_Float64 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __ldexpf64 (_Float64 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64 logf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __logf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 log10f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __log10f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 modff64 (_Float64 __x, _Float64 *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __modff64 (_Float64 __x, _Float64 *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern _Float64 exp10f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __exp10f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 expm1f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __expm1f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 log1pf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __log1pf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 logbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __logbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 exp2f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __exp2f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 log2f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __log2f64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64 powf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __powf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 sqrtf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __sqrtf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 hypotf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __hypotf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 cbrtf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __cbrtf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 ceilf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __ceilf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 fabsf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __fabsf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 floorf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __floorf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 fmodf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __fmodf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 copysignf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __copysignf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 nanf64 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __nanf64 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 j0f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __j0f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 j1f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __j1f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 jnf64 (int, _Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __jnf64 (int, _Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 y0f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __y0f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 y1f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __y1f64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 ynf64 (int, _Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __ynf64 (int, _Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 erff64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __erff64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 erfcf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __erfcf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 lgammaf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __lgammaf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 tgammaf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __tgammaf64 (_Float64) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 lgammaf64_r (_Float64, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __lgammaf64_r (_Float64, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 rintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __rintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 nextafterf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __nextafterf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 nextdownf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __nextdownf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 nextupf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __nextupf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 remainderf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __remainderf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 scalbnf64 (_Float64 __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __scalbnf64 (_Float64 __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 scalblnf64 (_Float64 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __scalblnf64 (_Float64 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 nearbyintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __nearbyintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 roundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __roundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 truncf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __truncf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 remquof64 (_Float64 __x, _Float64 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __remquof64 (_Float64 __x, _Float64 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 fdimf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __fdimf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 fmaxf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __fmaxf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 fminf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __fminf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 fmaf64 (_Float64 __x, _Float64 __y, _Float64 __z) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __fmaf64 (_Float64 __x, _Float64 __y, _Float64 __z) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 roundevenf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __roundevenf64 (_Float64 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf64 (_Float64 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 fmaxmagf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __fmaxmagf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64 fminmagf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64 __fminmagf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef64 (_Float64 *__cx, const _Float64 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 getpayloadf64 (const _Float64 *__x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64 __getpayloadf64 (const _Float64 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf64 (_Float64 *__x, _Float64 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf64 (_Float64 *__x, _Float64 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int __fpclassifyf128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __signbitf128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int __isinff128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __finitef128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __isnanf128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int __iseqsigf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern int __issignalingf128 (_Float128 __value) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern _Float128 acosf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __acosf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 asinf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __asinf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 atanf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __atanf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 atan2f128 (_Float128 __y, _Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __atan2f128 (_Float128 __y, _Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float128 cosf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __cosf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float128 sinf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __sinf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 tanf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __tanf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 coshf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __coshf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 sinhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __sinhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 tanhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __tanhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf128 (_Float128 __x, _Float128 *__sinx, _Float128 *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf128 (_Float128 __x, _Float128 *__sinx, _Float128 *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 acoshf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __acoshf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 asinhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __asinhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 atanhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __atanhf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float128 expf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __expf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 frexpf128 (_Float128 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __frexpf128 (_Float128 __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 ldexpf128 (_Float128 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __ldexpf128 (_Float128 __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float128 logf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __logf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 log10f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __log10f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 modff128 (_Float128 __x, _Float128 *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __modff128 (_Float128 __x, _Float128 *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern _Float128 exp10f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __exp10f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 expm1f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __expm1f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 log1pf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __log1pf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 logbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __logbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 exp2f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __exp2f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 log2f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __log2f128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float128 powf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __powf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 sqrtf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __sqrtf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 hypotf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __hypotf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 cbrtf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __cbrtf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 ceilf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __ceilf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 fabsf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __fabsf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 floorf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __floorf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 fmodf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __fmodf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 copysignf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __copysignf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 nanf128 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __nanf128 (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 j0f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __j0f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 j1f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __j1f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 jnf128 (int, _Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __jnf128 (int, _Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 y0f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __y0f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 y1f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __y1f128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 ynf128 (int, _Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __ynf128 (int, _Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 erff128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __erff128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 erfcf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __erfcf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 lgammaf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __lgammaf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 tgammaf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __tgammaf128 (_Float128) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 lgammaf128_r (_Float128, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __lgammaf128_r (_Float128, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 rintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __rintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 nextafterf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __nextafterf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 nextdownf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __nextdownf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 nextupf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __nextupf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 remainderf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __remainderf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 scalbnf128 (_Float128 __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __scalbnf128 (_Float128 __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 scalblnf128 (_Float128 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __scalblnf128 (_Float128 __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 nearbyintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __nearbyintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 roundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __roundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 truncf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __truncf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 remquof128 (_Float128 __x, _Float128 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __remquof128 (_Float128 __x, _Float128 __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 fdimf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __fdimf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 fmaxf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __fmaxf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 fminf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __fminf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 fmaf128 (_Float128 __x, _Float128 __y, _Float128 __z) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __fmaf128 (_Float128 __x, _Float128 __y, _Float128 __z) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 roundevenf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __roundevenf128 (_Float128 __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf128 (_Float128 __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 fmaxmagf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __fmaxmagf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float128 fminmagf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float128 __fminmagf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef128 (_Float128 *__cx, const _Float128 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float128 getpayloadf128 (const _Float128 *__x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float128 __getpayloadf128 (const _Float128 *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf128 (_Float128 *__x, _Float128 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf128 (_Float128 *__x, _Float128 __payload) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x acosf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __acosf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x asinf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __asinf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x atanf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __atanf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x atan2f32x (_Float32x __y, _Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __atan2f32x (_Float32x __y, _Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32x cosf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __cosf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32x sinf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __sinf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x tanf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __tanf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x coshf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __coshf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x sinhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __sinhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x tanhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __tanhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf32x (_Float32x __x, _Float32x *__sinx, _Float32x *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf32x (_Float32x __x, _Float32x *__sinx, _Float32x *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x acoshf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __acoshf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x asinhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __asinhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x atanhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __atanhf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32x expf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __expf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x frexpf32x (_Float32x __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __frexpf32x (_Float32x __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x ldexpf32x (_Float32x __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __ldexpf32x (_Float32x __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32x logf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __logf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x log10f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __log10f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x modff32x (_Float32x __x, _Float32x *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __modff32x (_Float32x __x, _Float32x *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern _Float32x exp10f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __exp10f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x expm1f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __expm1f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x log1pf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __log1pf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x logbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __logbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x exp2f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __exp2f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x log2f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __log2f32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float32x powf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __powf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x sqrtf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __sqrtf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x hypotf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __hypotf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x cbrtf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __cbrtf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x ceilf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __ceilf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x fabsf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __fabsf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x floorf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __floorf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x fmodf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __fmodf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x copysignf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __copysignf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x nanf32x (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __nanf32x (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x j0f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __j0f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x j1f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __j1f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x jnf32x (int, _Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __jnf32x (int, _Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x y0f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __y0f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x y1f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __y1f32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x ynf32x (int, _Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __ynf32x (int, _Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x erff32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __erff32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x erfcf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __erfcf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x lgammaf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __lgammaf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x tgammaf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __tgammaf32x (_Float32x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x lgammaf32x_r (_Float32x, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __lgammaf32x_r (_Float32x, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x rintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __rintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x nextafterf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __nextafterf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x nextdownf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __nextdownf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x nextupf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __nextupf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x remainderf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __remainderf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x scalbnf32x (_Float32x __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __scalbnf32x (_Float32x __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x scalblnf32x (_Float32x __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __scalblnf32x (_Float32x __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x nearbyintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __nearbyintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x roundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __roundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x truncf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __truncf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x remquof32x (_Float32x __x, _Float32x __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __remquof32x (_Float32x __x, _Float32x __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x fdimf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __fdimf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x fmaxf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __fmaxf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x fminf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __fminf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x fmaf32x (_Float32x __x, _Float32x __y, _Float32x __z) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __fmaf32x (_Float32x __x, _Float32x __y, _Float32x __z) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x roundevenf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __roundevenf32x (_Float32x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf32x (_Float32x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x fmaxmagf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __fmaxmagf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float32x fminmagf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float32x __fminmagf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef32x (_Float32x *__cx, const _Float32x *__x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x getpayloadf32x (const _Float32x *__x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float32x __getpayloadf32x (const _Float32x *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf32x (_Float32x *__x, _Float32x __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf32x (_Float32x *__x, _Float32x __payload) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x acosf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __acosf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x asinf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __asinf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x atanf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __atanf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x atan2f64x (_Float64x __y, _Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __atan2f64x (_Float64x __y, _Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64x cosf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __cosf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64x sinf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __sinf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x tanf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __tanf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x coshf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __coshf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x sinhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __sinhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x tanhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __tanhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern void sincosf64x (_Float64x __x, _Float64x *__sinx, _Float64x *__cosx) __attribute__ ((__nothrow__ , __leaf__)); extern void __sincosf64x (_Float64x __x, _Float64x *__sinx, _Float64x *__cosx) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x acoshf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __acoshf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x asinhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __asinhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x atanhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __atanhf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64x expf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __expf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x frexpf64x (_Float64x __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __frexpf64x (_Float64x __x, int *__exponent) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x ldexpf64x (_Float64x __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __ldexpf64x (_Float64x __x, int __exponent) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64x logf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __logf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x log10f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __log10f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x modff64x (_Float64x __x, _Float64x *__iptr) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __modff64x (_Float64x __x, _Float64x *__iptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern _Float64x exp10f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __exp10f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x expm1f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __expm1f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x log1pf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __log1pf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x logbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __logbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x exp2f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __exp2f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x log2f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __log2f64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
 extern _Float64x powf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __powf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x sqrtf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __sqrtf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x hypotf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __hypotf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x cbrtf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __cbrtf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x ceilf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __ceilf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x fabsf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __fabsf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x floorf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __floorf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x fmodf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __fmodf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x copysignf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __copysignf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x nanf64x (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __nanf64x (const char *__tagb) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x j0f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __j0f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x j1f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __j1f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x jnf64x (int, _Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __jnf64x (int, _Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x y0f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __y0f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x y1f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __y1f64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x ynf64x (int, _Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __ynf64x (int, _Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x erff64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __erff64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x erfcf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __erfcf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x lgammaf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __lgammaf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x tgammaf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __tgammaf64x (_Float64x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x lgammaf64x_r (_Float64x, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __lgammaf64x_r (_Float64x, int *__signgamp) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x rintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __rintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x nextafterf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __nextafterf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x nextdownf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __nextdownf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x nextupf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __nextupf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x remainderf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __remainderf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x scalbnf64x (_Float64x __x, int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __scalbnf64x (_Float64x __x, int __n) __attribute__ ((__nothrow__ , __leaf__));
extern int ilogbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern int __ilogbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int llogbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __llogbf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x scalblnf64x (_Float64x __x, long int __n) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __scalblnf64x (_Float64x __x, long int __n) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x nearbyintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __nearbyintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x roundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __roundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x truncf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __truncf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x remquof64x (_Float64x __x, _Float64x __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __remquof64x (_Float64x __x, _Float64x __y, int *__quo) __attribute__ ((__nothrow__ , __leaf__));
extern long int lrintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lrintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llrintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llrintf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern long int lroundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long int __lroundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
__extension__
extern long long int llroundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)); extern long long int __llroundf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x fdimf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __fdimf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x fmaxf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __fmaxf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x fminf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __fminf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x fmaf64x (_Float64x __x, _Float64x __y, _Float64x __z) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __fmaf64x (_Float64x __x, _Float64x __y, _Float64x __z) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x roundevenf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __roundevenf64x (_Float64x __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern __intmax_t fromfpf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __intmax_t fromfpxf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __intmax_t __fromfpxf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern __uintmax_t ufromfpxf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__)); extern __uintmax_t __ufromfpxf64x (_Float64x __x, int __round, unsigned int __width) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x fmaxmagf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __fmaxmagf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern _Float64x fminmagf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern _Float64x __fminmagf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int totalorderf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int totalordermagf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__))
     __attribute__ ((__const__));
extern int canonicalizef64x (_Float64x *__cx, const _Float64x *__x) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x getpayloadf64x (const _Float64x *__x) __attribute__ ((__nothrow__ , __leaf__)); extern _Float64x __getpayloadf64x (const _Float64x *__x) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadf64x (_Float64x *__x, _Float64x __payload) __attribute__ ((__nothrow__ , __leaf__));
extern int setpayloadsigf64x (_Float64x *__x, _Float64x __payload) __attribute__ ((__nothrow__ , __leaf__));
extern float fadd (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fdiv (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fmul (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fsub (double __x, double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float faddl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fdivl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fmull (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern float fsubl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double daddl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double ddivl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double dmull (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern double dsubl (long double __x, long double __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32addf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32divf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32mulf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32subf32x (_Float32x __x, _Float32x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32addf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32divf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32mulf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32subf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32addf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32divf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32mulf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32subf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32addf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32divf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32mulf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32 f32subf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xaddf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xdivf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xmulf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xsubf64 (_Float64 __x, _Float64 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xaddf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xdivf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xmulf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xsubf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xaddf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xdivf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xmulf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float32x f32xsubf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64addf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64divf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64mulf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64subf64x (_Float64x __x, _Float64x __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64addf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64divf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64mulf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64 f64subf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x f64xaddf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x f64xdivf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x f64xmulf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern _Float64x f64xsubf128 (_Float128 __x, _Float128 __y) __attribute__ ((__nothrow__ , __leaf__));
extern int signgam;
enum
  {
    FP_NAN =
      0,
    FP_INFINITE =
      1,
    FP_ZERO =
      2,
    FP_SUBNORMAL =
      3,
    FP_NORMAL =
      4
  };
extern int __iscanonicall (long double __x)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));



extern size_t strlcpy(char *, const char*, size_t);
extern size_t strlcat(char *, const char*, size_t);
extern void setproctitle(const char *fmt, ...);




void *ruby_xmalloc(size_t) __attribute__((__malloc__)) __attribute__((__returns_nonnull__)) __attribute__ ((alloc_size (1)));
void *ruby_xmalloc2(size_t,size_t) __attribute__((__malloc__)) __attribute__((__returns_nonnull__)) __attribute__ ((alloc_size (1,2)));
void *ruby_xcalloc(size_t,size_t) __attribute__((__malloc__)) __attribute__((__returns_nonnull__)) __attribute__ ((alloc_size (1,2)));
void *ruby_xrealloc(void*,size_t) __attribute__((__returns_nonnull__)) __attribute__ ((alloc_size (2)));
void *ruby_xrealloc2(void*,size_t,size_t) __attribute__((__returns_nonnull__)) __attribute__ ((alloc_size (2,3)));
void ruby_xfree(void*);


__attribute__ ((__noreturn__)) void rb_assert_failure(const char *, int, const char *, const char *);


typedef unsigned long VALUE;
typedef unsigned long ID;
typedef char ruby_check_sizeof_int[4 == sizeof(int) ? 1 : -1];
typedef char ruby_check_sizeof_long[8 == sizeof(long) ? 1 : -1];
typedef char ruby_check_sizeof_long_long[8 == sizeof(long long) ? 1 : -1];
typedef char ruby_check_sizeof_voidp[8 == sizeof(void*) ? 1 : -1];
VALUE rb_int2inum(intptr_t);
VALUE rb_uint2inum(uintptr_t);
VALUE rb_ll2inum(long long);
VALUE rb_ull2inum(unsigned long long);
__attribute__ ((__noreturn__)) void rb_out_of_int(long num);
static inline int
rb_long2int_inline(long n)
{
    int i = (int)n;
    if ((long)i != n)
 rb_out_of_int(n);
    return i;
}
static inline long
rb_fix2long(VALUE x)
{
    return ((long)(((long)(x))>>(int)(1)));
}
static inline unsigned long
rb_fix2ulong(VALUE x)
{
    return ((unsigned long)((long)(((long)(x))>>(int)(1))));
}
ID rb_sym2id(VALUE);
VALUE rb_id2sym(ID);
enum ruby_special_consts {
    RUBY_Qfalse = 0x00,
    RUBY_Qtrue = 0x14,
    RUBY_Qnil = 0x08,
    RUBY_Qundef = 0x34,
    RUBY_IMMEDIATE_MASK = 0x07,
    RUBY_FIXNUM_FLAG = 0x01,
    RUBY_FLONUM_MASK = 0x03,
    RUBY_FLONUM_FLAG = 0x02,
    RUBY_SYMBOL_FLAG = 0x0c,
    RUBY_SPECIAL_SHIFT = 8
};
enum ruby_value_type {
    RUBY_T_NONE = 0x00,
    RUBY_T_OBJECT = 0x01,
    RUBY_T_CLASS = 0x02,
    RUBY_T_MODULE = 0x03,
    RUBY_T_FLOAT = 0x04,
    RUBY_T_STRING = 0x05,
    RUBY_T_REGEXP = 0x06,
    RUBY_T_ARRAY = 0x07,
    RUBY_T_HASH = 0x08,
    RUBY_T_STRUCT = 0x09,
    RUBY_T_BIGNUM = 0x0a,
    RUBY_T_FILE = 0x0b,
    RUBY_T_DATA = 0x0c,
    RUBY_T_MATCH = 0x0d,
    RUBY_T_COMPLEX = 0x0e,
    RUBY_T_RATIONAL = 0x0f,
    RUBY_T_NIL = 0x11,
    RUBY_T_TRUE = 0x12,
    RUBY_T_FALSE = 0x13,
    RUBY_T_SYMBOL = 0x14,
    RUBY_T_FIXNUM = 0x15,
    RUBY_T_UNDEF = 0x16,
    RUBY_T_IMEMO = 0x1a,
    RUBY_T_NODE = 0x1b,
    RUBY_T_ICLASS = 0x1c,
    RUBY_T_ZOMBIE = 0x1d,
    RUBY_T_MOVED = 0x1e,
    RUBY_T_MASK = 0x1f
};
static inline int rb_type(VALUE obj);
void rb_check_type(VALUE,int);
VALUE rb_str_to_str(VALUE);
VALUE rb_string_value(volatile VALUE*);
char *rb_string_value_ptr(volatile VALUE*);
char *rb_string_value_cstr(volatile VALUE*);
void rb_check_safe_obj(VALUE);
void rb_check_safe_str(VALUE) __attribute__((error("rb_check_safe_str() and Check_SafeStr() are obsolete; use StringValue() instead")));
VALUE rb_str_export(VALUE);
VALUE rb_str_export_locale(VALUE);
VALUE rb_get_path(VALUE);
VALUE rb_get_path_no_checksafe(VALUE);
void rb_secure(int);
int rb_safe_level(void);
void rb_set_safe_level(int);
int ruby_safe_level_2_error(void) __attribute__((error("$SAFE=2 to 4 are obsolete")));
int ruby_safe_level_2_warning(void) __attribute__((const,warning("$SAFE=2 to 4 are obsolete")));
void rb_set_safe_level_force(int);
void rb_secure_update(VALUE);
__attribute__ ((__noreturn__)) void rb_insecure_operation(void);
VALUE rb_errinfo(void);
void rb_set_errinfo(VALUE);
long rb_num2long(VALUE);
unsigned long rb_num2ulong(VALUE);
static inline long
rb_num2long_inline(VALUE x)
{
    if ((((int)(long)(x))&RUBY_FIXNUM_FLAG))
 return ((long)(((long)(x))>>(int)(1)));
    else
 return rb_num2long(x);
}
static inline unsigned long
rb_num2ulong_inline(VALUE x)
{
    if ((((int)(long)(x))&RUBY_FIXNUM_FLAG))
 return ((unsigned long)((long)(((long)(x))>>(int)(1))));
    else
 return rb_num2ulong(x);
}
long rb_num2int(VALUE);
long rb_fix2int(VALUE);
static inline int
rb_num2int_inline(VALUE x)
{
    if ((((int)(long)(x))&RUBY_FIXNUM_FLAG))
 return (int)rb_fix2int(x);
    else
 return (int)rb_num2int(x);
}
unsigned long rb_num2uint(VALUE);
unsigned long rb_fix2uint(VALUE);
short rb_num2short(VALUE);
unsigned short rb_num2ushort(VALUE);
short rb_fix2short(VALUE);
unsigned short rb_fix2ushort(VALUE);
static inline short
rb_num2short_inline(VALUE x)
{
    if ((((int)(long)(x))&RUBY_FIXNUM_FLAG))
 return rb_fix2short(x);
    else
 return rb_num2short(x);
}
long long rb_num2ll(VALUE);
unsigned long long rb_num2ull(VALUE);
static inline long long
rb_num2ll_inline(VALUE x)
{
    if ((((int)(long)(x))&RUBY_FIXNUM_FLAG))
 return ((long)(((long)(x))>>(int)(1)));
    else
 return rb_num2ll(x);
}
double rb_num2dbl(VALUE);
VALUE rb_uint2big(uintptr_t);
VALUE rb_int2big(intptr_t);
VALUE rb_newobj(void);
VALUE rb_newobj_of(VALUE, VALUE);
VALUE rb_obj_setup(VALUE obj, VALUE klass, VALUE type);
__extension__
enum ruby_fl_type {
    RUBY_FL_WB_PROTECTED = (1<<5),
    RUBY_FL_PROMOTED0 = (1<<5),
    RUBY_FL_PROMOTED1 = (1<<6),
    RUBY_FL_PROMOTED = RUBY_FL_PROMOTED0|RUBY_FL_PROMOTED1,
    RUBY_FL_FINALIZE = (1<<7),
    RUBY_FL_TAINT = (1<<8),
    RUBY_FL_UNTRUSTED = RUBY_FL_TAINT,
    RUBY_FL_SEEN_OBJ_ID = (1<<9),
    RUBY_FL_EXIVAR = (1<<10),
    RUBY_FL_FREEZE = (1<<11),
    RUBY_FL_USHIFT = 12,
    RUBY_FL_USER0 = (1<<(RUBY_FL_USHIFT+0)),
    RUBY_FL_USER1 = (1<<(RUBY_FL_USHIFT+1)),
    RUBY_FL_USER2 = (1<<(RUBY_FL_USHIFT+2)),
    RUBY_FL_USER3 = (1<<(RUBY_FL_USHIFT+3)),
    RUBY_FL_USER4 = (1<<(RUBY_FL_USHIFT+4)),
    RUBY_FL_USER5 = (1<<(RUBY_FL_USHIFT+5)),
    RUBY_FL_USER6 = (1<<(RUBY_FL_USHIFT+6)),
    RUBY_FL_USER7 = (1<<(RUBY_FL_USHIFT+7)),
    RUBY_FL_USER8 = (1<<(RUBY_FL_USHIFT+8)),
    RUBY_FL_USER9 = (1<<(RUBY_FL_USHIFT+9)),
    RUBY_FL_USER10 = (1<<(RUBY_FL_USHIFT+10)),
    RUBY_FL_USER11 = (1<<(RUBY_FL_USHIFT+11)),
    RUBY_FL_USER12 = (1<<(RUBY_FL_USHIFT+12)),
    RUBY_FL_USER13 = (1<<(RUBY_FL_USHIFT+13)),
    RUBY_FL_USER14 = (1<<(RUBY_FL_USHIFT+14)),
    RUBY_FL_USER15 = (1<<(RUBY_FL_USHIFT+15)),
    RUBY_FL_USER16 = (1<<(RUBY_FL_USHIFT+16)),
    RUBY_FL_USER17 = (1<<(RUBY_FL_USHIFT+17)),
    RUBY_FL_USER18 = (1<<(RUBY_FL_USHIFT+18)),
    RUBY_FL_USER19 = (1<<(RUBY_FL_USHIFT+19)),
    RUBY_ELTS_SHARED = RUBY_FL_USER2,
    RUBY_FL_DUPPED = (RUBY_T_MASK|RUBY_FL_EXIVAR|RUBY_FL_TAINT),
    RUBY_FL_SINGLETON = RUBY_FL_USER0
};
struct __attribute__((__aligned__(8))) RBasic {
    VALUE flags;
    const VALUE klass;
};
VALUE rb_obj_hide(VALUE obj);
VALUE rb_obj_reveal(VALUE obj, VALUE klass);
enum ruby_rvalue_flags {
    RVALUE_EMBED_LEN_MAX = 3,
};
enum ruby_robject_flags {
    ROBJECT_EMBED_LEN_MAX = RVALUE_EMBED_LEN_MAX,
    ROBJECT_EMBED = RUBY_FL_USER1,
    ROBJECT_ENUM_END
};
struct RObject {
    struct RBasic basic;
    union {
 struct {
     uint32_t numiv;
     VALUE *ivptr;
            void *iv_index_tbl;
 } heap;
 VALUE ary[ROBJECT_EMBED_LEN_MAX];
    } as;
};
enum ruby_rmodule_flags {
    RMODULE_IS_OVERLAID = RUBY_FL_USER2,
    RMODULE_IS_REFINEMENT = RUBY_FL_USER3,
    RMODULE_INCLUDED_INTO_REFINEMENT = RUBY_FL_USER4,
    RMODULE_ENUM_END
};
__attribute__ ((__pure__)) double rb_float_value(VALUE);
VALUE rb_float_new(double);
VALUE rb_float_new_in_heap(double);
enum ruby_rstring_flags {
    RSTRING_NOEMBED = RUBY_FL_USER1,
    RSTRING_EMBED_LEN_MASK = (RUBY_FL_USER2|RUBY_FL_USER3|RUBY_FL_USER4|
         RUBY_FL_USER5|RUBY_FL_USER6),
    RSTRING_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+2),
    RSTRING_EMBED_LEN_MAX = (int)((sizeof(VALUE)*RVALUE_EMBED_LEN_MAX)/sizeof(char)-1),
    RSTRING_FSTR = RUBY_FL_USER17,
    RSTRING_ENUM_END
};
struct RString {
    struct RBasic basic;
    union {
 struct {
     long len;
     char *ptr;
     union {
  long capa;
  VALUE shared;
     } aux;
 } heap;
 char ary[RSTRING_EMBED_LEN_MAX + 1];
    } as;
};
enum ruby_rarray_flags {
    RARRAY_EMBED_LEN_MAX = RVALUE_EMBED_LEN_MAX,
    RARRAY_EMBED_FLAG = RUBY_FL_USER1,
    RARRAY_EMBED_LEN_MASK = (RUBY_FL_USER4|RUBY_FL_USER3),
    RARRAY_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+3),
    RARRAY_TRANSIENT_FLAG = RUBY_FL_USER13,
    RARRAY_ENUM_END
};
struct RArray {
    struct RBasic basic;
    union {
 struct {
     long len;
     union {
  long capa;
                const
                VALUE shared_root;
     } aux;
     const VALUE *ptr;
 } heap;
 const VALUE ary[RARRAY_EMBED_LEN_MAX];
    } as;
};
struct RRegexp {
    struct RBasic basic;
    struct re_pattern_buffer *ptr;
    const VALUE src;
    unsigned long usecnt;
};
size_t rb_hash_size_num(VALUE hash);
struct RFile {
    struct RBasic basic;
    struct rb_io_t *fptr;
};
struct RData {
    struct RBasic basic;
    void (*dmark)(void*);
    void (*dfree)(void*);
    void *data;
};
typedef struct rb_data_type_struct rb_data_type_t;
struct rb_data_type_struct {
    const char *wrap_struct_name;
    struct {
 void (*dmark)(void*);
 void (*dfree)(void*);
 size_t (*dsize)(const void *);
        void (*dcompact)(void*);
        void *reserved[1];
    } function;
    const rb_data_type_t *parent;
    void *data;
    VALUE flags;
};
struct RTypedData {
    struct RBasic basic;
    const rb_data_type_t *type;
    VALUE typed_flag;
    void *data;
};
typedef void (*RUBY_DATA_FUNC)(void*);
VALUE rb_data_object_wrap(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC);
VALUE rb_data_object_zalloc(VALUE,size_t,RUBY_DATA_FUNC,RUBY_DATA_FUNC);
VALUE rb_data_typed_object_wrap(VALUE klass, void *datap, const rb_data_type_t *);
VALUE rb_data_typed_object_zalloc(VALUE klass, size_t size, const rb_data_type_t *type);
int rb_typeddata_inherited_p(const rb_data_type_t *child, const rb_data_type_t *parent);
int rb_typeddata_is_kind_of(VALUE, const rb_data_type_t *);
void *rb_check_typeddata(VALUE, const rb_data_type_t *);
int rb_big_sign(VALUE);
void rb_freeze_singleton_class(VALUE klass);
static inline void
rb_obj_freeze_inline(VALUE x)
{
    if ((!(((VALUE)(x) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(x) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK) != RUBY_T_NODE)) {
 (void)(((struct RBasic*)(x))->flags |= RUBY_FL_FREEZE);
 if ((((struct RBasic*)(x))->klass) && !(((struct RBasic*)(x))->flags & RUBY_FL_SINGLETON)) {
     rb_freeze_singleton_class(x);
 }
    }
}
static inline VALUE rb_data_object_wrap_warning(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC) __attribute__((warning("untyped Data is unsafe; use TypedData instead")));
static inline void *rb_data_object_get_warning(VALUE) __attribute__((warning("untyped Data is unsafe; use TypedData instead")));
static inline VALUE
rb_data_object_wrap_warning(VALUE klass, void *ptr, RUBY_DATA_FUNC mark, RUBY_DATA_FUNC free)
{
    return rb_data_object_wrap(klass, ptr, mark, free);
}
static inline void *
rb_data_object_get(VALUE obj)
{
    rb_check_type((VALUE)(obj),(RUBY_T_DATA));
    return ((struct RData *)obj)->data;
}
static inline void *
rb_data_object_get_warning(VALUE obj)
{
    return rb_data_object_get(obj);
}
static inline VALUE
rb_data_object_make(VALUE klass, RUBY_DATA_FUNC mark_func, RUBY_DATA_FUNC free_func, void **datap, size_t size)
{
    VALUE result = rb_data_object_zalloc((klass), (size), (RUBY_DATA_FUNC)(mark_func), (RUBY_DATA_FUNC)(free_func)); (void)((*datap) = (void *)(((struct RData*)(result))->data));;
    return result;
}
static inline VALUE
rb_data_typed_object_make(VALUE klass, const rb_data_type_t *type, void **datap, size_t size)
{
    VALUE result = rb_data_typed_object_zalloc(klass, size, type); (void)((*datap) = (void *)(((struct RData*)(result))->data));;
    return result;
}
__attribute__ ((__deprecated__("by ""rb_data_object_wrap"))) static inline VALUE rb_data_object_alloc(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC);
static inline VALUE
rb_data_object_alloc(VALUE klass, void *data, RUBY_DATA_FUNC dmark, RUBY_DATA_FUNC dfree)
{
    return rb_data_object_wrap(klass, data, dmark, dfree);
}
__attribute__ ((__deprecated__("by ""rb_data_typed_object_wrap"))) static inline VALUE rb_data_typed_object_alloc(VALUE,void*,const rb_data_type_t*);
static inline VALUE
rb_data_typed_object_alloc(VALUE klass, void *datap, const rb_data_type_t *type)
{
    return rb_data_typed_object_wrap(klass, datap, type);
}
void rb_gc_writebarrier(VALUE a, VALUE b);
void rb_gc_writebarrier_unprotect(VALUE obj);
static inline VALUE
rb_obj_wb_unprotect(VALUE x, const char *filename __attribute__ ((unused)), int line __attribute__ ((unused)))
{
    rb_gc_writebarrier_unprotect(x);
    return x;
}
static inline VALUE
rb_obj_written(VALUE a, VALUE oldv __attribute__ ((unused)), VALUE b, const char *filename __attribute__ ((unused)), int line __attribute__ ((unused)))
{
    if (!(((VALUE)(b) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(b) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 rb_gc_writebarrier(a, b);
    }
    return a;
}
static inline VALUE
rb_obj_write(VALUE a, VALUE *slot, VALUE b, const char *filename __attribute__ ((unused)), int line __attribute__ ((unused)))
{
    *slot = b;
    rb_obj_written(a, ((VALUE)RUBY_Qundef) , b, filename, line);
    return a;
}
static inline int
rb_integer_type_p(VALUE obj)
{
    return ((((int)(long)(obj))&RUBY_FIXNUM_FLAG) ||
     (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) &&
      (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_BIGNUM));
}
static inline VALUE
rb_long2num_inline(long v)
{
    if ((((v) < (0x7fffffffffffffffL>>1)+1) && ((v) >= (((long)(-0x7fffffffffffffffL - 1L))>>(int)(1)))))
 return (((VALUE)(v))<<1 | RUBY_FIXNUM_FLAG);
    else
 return rb_int2big(v);
}
static inline VALUE
rb_ulong2num_inline(unsigned long v)
{
    if (((v) < (0x7fffffffffffffffL>>1)+1))
 return (((VALUE)(v))<<1 | RUBY_FIXNUM_FLAG);
    else
 return rb_uint2big(v);
}
static inline char
rb_num2char_inline(VALUE x)
{
    if (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)(x))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? ((x) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? ((x) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? ((x) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? ((x) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)(x)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(x) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(x) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)(x))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(x) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(x) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(x) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(x) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK) == (RUBY_T_STRING))) && ((!(((struct RBasic*)(x))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(x))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(x))->as.heap.len)>=1))
 return (!(((struct RBasic*)(x))->flags & RSTRING_NOEMBED) ? ((struct RString*)(x))->as.ary : ((struct RString*)(x))->as.heap.ptr)[0];
    else
 return (char)(rb_num2int_inline(x) & 0xff);
}
void *rb_alloc_tmp_buffer(volatile VALUE *store, long len) __attribute__ ((alloc_size (2)));
void *rb_alloc_tmp_buffer_with_count(volatile VALUE *store, size_t len,size_t count) __attribute__ ((alloc_size (2,3)));
void rb_free_tmp_buffer(volatile VALUE *store);
__attribute__ ((__noreturn__)) void ruby_malloc_size_overflow(size_t, size_t);
static inline int
rb_mul_size_overflow(size_t a, size_t b, size_t max, size_t *c)
{
    __extension__
    unsigned __int128 c2 = (unsigned __int128)a * (unsigned __int128)b;
    if (c2 > max) return 1;
    *c = (size_t)c2;
    return 0;
}
static inline void *
rb_alloc_tmp_buffer2(volatile VALUE *store, long count, size_t elsize)
{
    size_t cnt = (size_t)count;
    if (elsize == sizeof(VALUE)) {
 if ((__builtin_expect(!!(cnt > 0x7fffffffffffffffL / sizeof(VALUE)), 0))) {
     ruby_malloc_size_overflow(cnt, elsize);
 }
    }
    else {
 size_t size, max = 0x7fffffffffffffffL - sizeof(VALUE) + 1;
 if ((__builtin_expect(!!(rb_mul_size_overflow(cnt, elsize, max, &size)), 0))) {
     ruby_malloc_size_overflow(cnt, elsize);
 }
 cnt = (size + sizeof(VALUE) - 1) / sizeof(VALUE);
    }
    return rb_alloc_tmp_buffer_with_count(store, cnt * sizeof(VALUE), cnt);
}
static inline void *
ruby_nonempty_memcpy(void *dest, const void *src, size_t n)
{
    return (n ? memcpy(dest, src, n) : dest);
}
void rb_obj_infect(VALUE victim, VALUE carrier);
typedef int ruby_glob_func(const char*,VALUE, void*);
void rb_glob(const char*,void(*)(const char*,VALUE,void*),VALUE);
int ruby_glob(const char*,int,ruby_glob_func*,VALUE);
int ruby_brace_glob(const char*,int,ruby_glob_func*,VALUE);
VALUE rb_define_class(const char*,VALUE);
VALUE rb_define_module(const char*);
VALUE rb_define_class_under(VALUE, const char*, VALUE);
VALUE rb_define_module_under(VALUE, const char*);
void rb_include_module(VALUE,VALUE);
void rb_extend_object(VALUE,VALUE);
void rb_prepend_module(VALUE,VALUE);
typedef VALUE rb_gvar_getter_t(ID id, VALUE *data);
typedef void rb_gvar_setter_t(VALUE val, ID id, VALUE *data);
typedef void rb_gvar_marker_t(VALUE *var);
rb_gvar_getter_t rb_gvar_undef_getter;
rb_gvar_setter_t rb_gvar_undef_setter;
rb_gvar_marker_t rb_gvar_undef_marker;
rb_gvar_getter_t rb_gvar_val_getter;
rb_gvar_setter_t rb_gvar_val_setter;
rb_gvar_marker_t rb_gvar_val_marker;
rb_gvar_getter_t rb_gvar_var_getter;
rb_gvar_setter_t rb_gvar_var_setter;
rb_gvar_marker_t rb_gvar_var_marker;
__attribute__ ((__noreturn__)) rb_gvar_setter_t rb_gvar_readonly_setter;
void rb_define_variable(const char*,VALUE*);
void rb_define_virtual_variable(const char*,rb_gvar_getter_t*,rb_gvar_setter_t*);
void rb_define_hooked_variable(const char*,VALUE*,rb_gvar_getter_t*,rb_gvar_setter_t*);
void rb_define_readonly_variable(const char*,const VALUE*);
void rb_define_const(VALUE,const char*,VALUE);
void rb_define_global_const(const char*,VALUE);
void rb_define_method(VALUE,const char*,VALUE(*)(),int);
void rb_define_module_function(VALUE,const char*,VALUE(*)(),int);
void rb_define_global_function(const char*,VALUE(*)(),int);
void rb_undef_method(VALUE,const char*);
void rb_define_alias(VALUE,const char*,const char*);
void rb_define_attr(VALUE,const char*,int,int);
void rb_global_variable(VALUE*);
void rb_gc_register_mark_object(VALUE);
void rb_gc_register_address(VALUE*);
void rb_gc_unregister_address(VALUE*);
ID rb_intern(const char*);
ID rb_intern2(const char*, long);
ID rb_intern_str(VALUE str);
const char *rb_id2name(ID);
ID rb_check_id(volatile VALUE *);
ID rb_to_id(VALUE);
VALUE rb_id2str(ID);
VALUE rb_sym2str(VALUE);
VALUE rb_to_symbol(VALUE name);
VALUE rb_check_symbol(volatile VALUE *namep);
__attribute__ ((__error__ (" argument length doesn't match"))) int rb_varargs_bad_length(int,int);
const char *rb_class2name(VALUE);
const char *rb_obj_classname(VALUE);
void rb_p(VALUE);
VALUE rb_eval_string(const char*);
VALUE rb_eval_string_protect(const char*, int*);
VALUE rb_eval_string_wrap(const char*, int*);
VALUE rb_funcall(VALUE, ID, int, ...);
VALUE rb_funcallv(VALUE, ID, int, const VALUE*);
VALUE rb_funcallv_kw(VALUE, ID, int, const VALUE*, int);
VALUE rb_funcallv_public(VALUE, ID, int, const VALUE*);
VALUE rb_funcallv_public_kw(VALUE, ID, int, const VALUE*, int);
VALUE rb_funcall_passing_block(VALUE, ID, int, const VALUE*);
VALUE rb_funcall_passing_block_kw(VALUE, ID, int, const VALUE*, int);
VALUE rb_funcall_with_block(VALUE, ID, int, const VALUE*, VALUE);
VALUE rb_funcall_with_block_kw(VALUE, ID, int, const VALUE*, VALUE, int);
int rb_scan_args(int, const VALUE*, const char*, ...);
int rb_scan_args_kw(int, int, const VALUE*, const char*, ...);
VALUE rb_call_super(int, const VALUE*);
VALUE rb_call_super_kw(int, const VALUE*, int);
VALUE rb_current_receiver(void);
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *);
VALUE rb_extract_keywords(VALUE *orighash);
VALUE rb_gv_set(const char*, VALUE);
VALUE rb_gv_get(const char*);
VALUE rb_iv_get(VALUE, const char*);
VALUE rb_iv_set(VALUE, const char*, VALUE);
VALUE rb_equal(VALUE,VALUE);
VALUE *rb_ruby_verbose_ptr(void);
VALUE *rb_ruby_debug_ptr(void);
enum rb_io_wait_readwrite {RB_IO_WAIT_READABLE, RB_IO_WAIT_WRITABLE};
__attribute__ ((__noreturn__)) void rb_raise(VALUE, const char*, ...) __attribute__((format(printf, 2, 3)));
__attribute__ ((__noreturn__)) void rb_fatal(const char*, ...) __attribute__((format(printf, 1, 2)));
__attribute__((cold)) __attribute__ ((__noreturn__)) void rb_bug(const char*, ...) __attribute__((format(printf, 1, 2)));
__attribute__ ((__noreturn__)) void rb_bug_errno(const char*, int);
__attribute__ ((__noreturn__)) void rb_sys_fail(const char*);
__attribute__ ((__noreturn__)) void rb_sys_fail_str(VALUE);
__attribute__ ((__noreturn__)) void rb_mod_sys_fail(VALUE, const char*);
__attribute__ ((__noreturn__)) void rb_mod_sys_fail_str(VALUE, VALUE);
__attribute__ ((__noreturn__)) void rb_readwrite_sys_fail(enum rb_io_wait_readwrite, const char*);
__attribute__ ((__noreturn__)) void rb_iter_break(void);
__attribute__ ((__noreturn__)) void rb_iter_break_value(VALUE);
__attribute__ ((__noreturn__)) void rb_exit(int);
__attribute__ ((__noreturn__)) void rb_notimplement(void);
VALUE rb_syserr_new(int, const char *);
VALUE rb_syserr_new_str(int n, VALUE arg);
__attribute__ ((__noreturn__)) void rb_syserr_fail(int, const char*);
__attribute__ ((__noreturn__)) void rb_syserr_fail_str(int, VALUE);
__attribute__ ((__noreturn__)) void rb_mod_syserr_fail(VALUE, int, const char*);
__attribute__ ((__noreturn__)) void rb_mod_syserr_fail_str(VALUE, int, VALUE);
__attribute__ ((__noreturn__)) void rb_readwrite_syserr_fail(enum rb_io_wait_readwrite, int, const char*);
void rb_warning(const char*, ...) __attribute__((format(printf, 1, 2)));
void rb_compile_warning(const char *, int, const char*, ...) __attribute__((format(printf, 3, 4)));
void rb_sys_warning(const char*, ...) __attribute__((format(printf, 1, 2)));
__attribute__((cold)) void rb_warn(const char*, ...) __attribute__((format(printf, 1, 2)));
void rb_compile_warn(const char *, int, const char*, ...) __attribute__((format(printf, 3, 4)));
typedef VALUE rb_block_call_func(VALUE yielded_arg, VALUE callback_arg, int argc, const VALUE *argv, VALUE blockarg);
typedef rb_block_call_func *rb_block_call_func_t;
VALUE rb_each(VALUE);
VALUE rb_yield(VALUE);
VALUE rb_yield_values(int n, ...);
VALUE rb_yield_values2(int n, const VALUE *argv);
VALUE rb_yield_values_kw(int n, const VALUE *argv, int kw_splat);
VALUE rb_yield_splat(VALUE);
VALUE rb_yield_splat_kw(VALUE, int);
VALUE rb_yield_block(VALUE yielded_arg, VALUE callback_arg, int argc, const VALUE *argv, VALUE blockarg);
int rb_keyword_given_p(void);
int rb_block_given_p(void);
void rb_need_block(void);
VALUE rb_iterate(VALUE(*)(VALUE),VALUE,rb_block_call_func_t,VALUE);
VALUE rb_block_call(VALUE,ID,int,const VALUE*,rb_block_call_func_t,VALUE);
VALUE rb_block_call_kw(VALUE,ID,int,const VALUE*,rb_block_call_func_t,VALUE,int);
VALUE rb_rescue(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE);
VALUE rb_rescue2(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE,...);
VALUE rb_vrescue2(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE,va_list);
VALUE rb_ensure(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE),VALUE);
VALUE rb_catch(const char*,rb_block_call_func_t,VALUE);
VALUE rb_catch_obj(VALUE,rb_block_call_func_t,VALUE);
__attribute__ ((__noreturn__)) void rb_throw(const char*,VALUE);
__attribute__ ((__noreturn__)) void rb_throw_obj(VALUE,VALUE);
VALUE rb_require(const char*);
extern VALUE rb_mKernel;
extern VALUE rb_mComparable;
extern VALUE rb_mEnumerable;
extern VALUE rb_mErrno;
extern VALUE rb_mFileTest;
extern VALUE rb_mGC;
extern VALUE rb_mMath;
extern VALUE rb_mProcess;
extern VALUE rb_mWaitReadable;
extern VALUE rb_mWaitWritable;
extern VALUE rb_cBasicObject;
extern VALUE rb_cObject;
extern VALUE rb_cArray;
extern VALUE rb_cBinding;
extern VALUE rb_cClass;
extern VALUE rb_cCont;
extern VALUE rb_cData;
extern VALUE rb_cDir;
extern VALUE rb_cEncoding;
extern VALUE rb_cEnumerator;
extern VALUE rb_cFalseClass;
extern VALUE rb_cFile;
extern VALUE rb_cComplex;
extern VALUE rb_cFloat;
extern VALUE rb_cHash;
extern VALUE rb_cIO;
extern VALUE rb_cInteger;
extern VALUE rb_cMatch;
extern VALUE rb_cMethod;
extern VALUE rb_cModule;
extern VALUE rb_cNameErrorMesg;
extern VALUE rb_cNilClass;
extern VALUE rb_cNumeric;
extern VALUE rb_cProc;
extern VALUE rb_cRandom;
extern VALUE rb_cRange;
extern VALUE rb_cRational;
extern VALUE rb_cRegexp;
extern VALUE rb_cStat;
extern VALUE rb_cString;
extern VALUE rb_cStruct;
extern VALUE rb_cSymbol;
extern VALUE rb_cThread;
extern VALUE rb_cTime;
extern VALUE rb_cTrueClass;
extern VALUE rb_cUnboundMethod;
extern VALUE rb_eException;
extern VALUE rb_eStandardError;
extern VALUE rb_eSystemExit;
extern VALUE rb_eInterrupt;
extern VALUE rb_eSignal;
extern VALUE rb_eFatal;
extern VALUE rb_eArgError;
extern VALUE rb_eEOFError;
extern VALUE rb_eIndexError;
extern VALUE rb_eStopIteration;
extern VALUE rb_eKeyError;
extern VALUE rb_eRangeError;
extern VALUE rb_eIOError;
extern VALUE rb_eRuntimeError;
extern VALUE rb_eFrozenError;
extern VALUE rb_eSecurityError;
extern VALUE rb_eSystemCallError;
extern VALUE rb_eThreadError;
extern VALUE rb_eTypeError;
extern VALUE rb_eZeroDivError;
extern VALUE rb_eNotImpError;
extern VALUE rb_eNoMemError;
extern VALUE rb_eNoMethodError;
extern VALUE rb_eFloatDomainError;
extern VALUE rb_eLocalJumpError;
extern VALUE rb_eSysStackError;
extern VALUE rb_eRegexpError;
extern VALUE rb_eEncodingError;
extern VALUE rb_eEncCompatError;
extern VALUE rb_eNoMatchingPatternError;
extern VALUE rb_eScriptError;
extern VALUE rb_eNameError;
extern VALUE rb_eSyntaxError;
extern VALUE rb_eLoadError;
extern VALUE rb_eMathDomainError;
extern VALUE rb_stdin, rb_stdout, rb_stderr;
static inline VALUE
rb_class_of(VALUE obj)
{
    if (((VALUE)(obj) & RUBY_IMMEDIATE_MASK)) {
 if ((((int)(long)(obj))&RUBY_FIXNUM_FLAG)) return rb_cInteger;
 if (((((int)(long)(obj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG)) return rb_cFloat;
 if (obj == ((VALUE)RUBY_Qtrue)) return rb_cTrueClass;
 if ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)) return rb_cSymbol;
    }
    else if (!!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
 if (obj == ((VALUE)RUBY_Qnil)) return rb_cNilClass;
 if (obj == ((VALUE)RUBY_Qfalse)) return rb_cFalseClass;
    }
    return ((struct RBasic*)(obj))->klass;
}
static inline int
rb_type(VALUE obj)
{
    if (((VALUE)(obj) & RUBY_IMMEDIATE_MASK)) {
 if ((((int)(long)(obj))&RUBY_FIXNUM_FLAG)) return RUBY_T_FIXNUM;
        if (((((int)(long)(obj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG)) return RUBY_T_FLOAT;
        if (obj == ((VALUE)RUBY_Qtrue)) return RUBY_T_TRUE;
 if ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)) return RUBY_T_SYMBOL;
 if (obj == ((VALUE)RUBY_Qundef)) return RUBY_T_UNDEF;
    }
    else if (!!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
 if (obj == ((VALUE)RUBY_Qnil)) return RUBY_T_NIL;
 if (obj == ((VALUE)RUBY_Qfalse)) return RUBY_T_FALSE;
    }
    return (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK);
}


typedef unsigned long st_data_t;
typedef struct st_table st_table;
typedef st_data_t st_index_t;
typedef int st_compare_func(st_data_t, st_data_t);
typedef st_index_t st_hash_func(st_data_t);
typedef char st_check_for_sizeof_st_index_t[8 == (int)sizeof(st_index_t) ? 1 : -1];
struct st_hash_type {
    int (*compare)(st_data_t, st_data_t);
    st_index_t (*hash)(st_data_t);
};
typedef struct st_table_entry st_table_entry;
struct st_table_entry;
struct st_table {
    unsigned char entry_power, bin_power, size_ind;
    unsigned int rebuilds_num;
    const struct st_hash_type *type;
    st_index_t num_entries;
    st_index_t *bins;
    st_index_t entries_start, entries_bound;
    st_table_entry *entries;
};
enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE, ST_CHECK, ST_REPLACE};
st_table *rb_st_init_table(const struct st_hash_type *);
st_table *rb_st_init_table_with_size(const struct st_hash_type *, st_index_t);
st_table *rb_st_init_numtable(void);
st_table *rb_st_init_numtable_with_size(st_index_t);
st_table *rb_st_init_strtable(void);
st_table *rb_st_init_strtable_with_size(st_index_t);
st_table *rb_st_init_strcasetable(void);
st_table *rb_st_init_strcasetable_with_size(st_index_t);
int rb_st_delete(st_table *, st_data_t *, st_data_t *);
int rb_st_delete_safe(st_table *, st_data_t *, st_data_t *, st_data_t);
int rb_st_shift(st_table *, st_data_t *, st_data_t *);
int rb_st_insert(st_table *, st_data_t, st_data_t);
int rb_st_insert2(st_table *, st_data_t, st_data_t, st_data_t (*)(st_data_t));
int rb_st_lookup(st_table *, st_data_t, st_data_t *);
int rb_st_get_key(st_table *, st_data_t, st_data_t *);
typedef int st_update_callback_func(st_data_t *key, st_data_t *value, st_data_t arg, int existing);
int rb_st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data_t arg);
typedef int st_foreach_callback_func(st_data_t, st_data_t, st_data_t);
typedef int st_foreach_check_callback_func(st_data_t, st_data_t, st_data_t, int);
int rb_st_foreach_with_replace(st_table *tab, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg);
int rb_st_foreach(st_table *, st_foreach_callback_func *, st_data_t);
int rb_st_foreach_check(st_table *, st_foreach_check_callback_func *, st_data_t, st_data_t);
st_index_t rb_st_keys(st_table *table, st_data_t *keys, st_index_t size);
st_index_t rb_st_keys_check(st_table *table, st_data_t *keys, st_index_t size, st_data_t never);
st_index_t rb_st_values(st_table *table, st_data_t *values, st_index_t size);
st_index_t rb_st_values_check(st_table *table, st_data_t *values, st_index_t size, st_data_t never);
void rb_st_add_direct(st_table *, st_data_t, st_data_t);
void rb_st_free_table(st_table *);
void rb_st_cleanup_safe(st_table *, st_data_t);
void rb_st_clear(st_table *);
st_table *rb_st_copy(st_table *);
__attribute__ ((__const__)) int rb_st_numcmp(st_data_t, st_data_t);
__attribute__ ((__const__)) st_index_t rb_st_numhash(st_data_t);
__attribute__ ((__pure__)) int rb_st_locale_insensitive_strcasecmp(const char *s1, const char *s2);
__attribute__ ((__pure__)) int rb_st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n);
__attribute__ ((__pure__)) size_t rb_st_memsize(const st_table *);
__attribute__ ((__pure__)) st_index_t rb_st_hash(const void *ptr, size_t len, st_index_t h);
__attribute__ ((__const__)) st_index_t rb_st_hash_uint32(st_index_t h, uint32_t i);
__attribute__ ((__const__)) st_index_t rb_st_hash_uint(st_index_t h, st_index_t i);
__attribute__ ((__const__)) st_index_t rb_st_hash_end(st_index_t h);
__attribute__ ((__const__)) st_index_t rb_st_hash_start(st_index_t h);
void rb_hash_bulk_insert_into_st_table(long, const VALUE *, VALUE);




void rb_mem_clear(VALUE*, long);
VALUE rb_assoc_new(VALUE, VALUE);
VALUE rb_check_array_type(VALUE);
VALUE rb_ary_new(void);
VALUE rb_ary_new_capa(long capa);
VALUE rb_ary_new_from_args(long n, ...);
VALUE rb_ary_new_from_values(long n, const VALUE *elts);
VALUE rb_ary_tmp_new(long);
void rb_ary_free(VALUE);
void rb_ary_modify(VALUE);
VALUE rb_ary_freeze(VALUE);
VALUE rb_ary_shared_with_p(VALUE, VALUE);
VALUE rb_ary_aref(int, const VALUE*, VALUE);
VALUE rb_ary_subseq(VALUE, long, long);
void rb_ary_store(VALUE, long, VALUE);
VALUE rb_ary_dup(VALUE);
VALUE rb_ary_resurrect(VALUE ary);
VALUE rb_ary_to_ary(VALUE);
VALUE rb_ary_to_s(VALUE);
VALUE rb_ary_cat(VALUE, const VALUE *, long);
VALUE rb_ary_push(VALUE, VALUE);
VALUE rb_ary_pop(VALUE);
VALUE rb_ary_shift(VALUE);
VALUE rb_ary_unshift(VALUE, VALUE);
VALUE rb_ary_entry(VALUE, long);
VALUE rb_ary_each(VALUE);
VALUE rb_ary_join(VALUE, VALUE);
VALUE rb_ary_reverse(VALUE);
VALUE rb_ary_rotate(VALUE, long);
VALUE rb_ary_sort(VALUE);
VALUE rb_ary_sort_bang(VALUE);
VALUE rb_ary_delete(VALUE, VALUE);
VALUE rb_ary_delete_at(VALUE, long);
VALUE rb_ary_clear(VALUE);
VALUE rb_ary_plus(VALUE, VALUE);
VALUE rb_ary_concat(VALUE, VALUE);
VALUE rb_ary_assoc(VALUE, VALUE);
VALUE rb_ary_rassoc(VALUE, VALUE);
VALUE rb_ary_includes(VALUE, VALUE);
VALUE rb_ary_cmp(VALUE, VALUE);
VALUE rb_ary_replace(VALUE copy, VALUE orig);
VALUE rb_get_values_at(VALUE, long, int, const VALUE*, VALUE(*)(VALUE,long));
VALUE rb_ary_resize(VALUE ary, long len);
VALUE rb_big_new(size_t, int);
int rb_bigzero_p(VALUE x);
VALUE rb_big_clone(VALUE);
void rb_big_2comp(VALUE);
VALUE rb_big_norm(VALUE);
void rb_big_resize(VALUE big, size_t len);
VALUE rb_cstr_to_inum(const char*, int, int);
VALUE rb_str_to_inum(VALUE, int, int);
VALUE rb_cstr2inum(const char*, int);
VALUE rb_str2inum(VALUE, int);
VALUE rb_big2str(VALUE, int);
long rb_big2long(VALUE);
unsigned long rb_big2ulong(VALUE);
long long rb_big2ll(VALUE);
unsigned long long rb_big2ull(VALUE);
void rb_big_pack(VALUE val, unsigned long *buf, long num_longs);
VALUE rb_big_unpack(unsigned long *buf, long num_longs);
int rb_uv_to_utf8(char[6],unsigned long);
VALUE rb_dbl2big(double);
double rb_big2dbl(VALUE);
VALUE rb_big_cmp(VALUE, VALUE);
VALUE rb_big_eq(VALUE, VALUE);
VALUE rb_big_eql(VALUE, VALUE);
VALUE rb_big_plus(VALUE, VALUE);
VALUE rb_big_minus(VALUE, VALUE);
VALUE rb_big_mul(VALUE, VALUE);
VALUE rb_big_div(VALUE, VALUE);
VALUE rb_big_idiv(VALUE, VALUE);
VALUE rb_big_modulo(VALUE, VALUE);
VALUE rb_big_divmod(VALUE, VALUE);
VALUE rb_big_pow(VALUE, VALUE);
VALUE rb_big_and(VALUE, VALUE);
VALUE rb_big_or(VALUE, VALUE);
VALUE rb_big_xor(VALUE, VALUE);
VALUE rb_big_lshift(VALUE, VALUE);
VALUE rb_big_rshift(VALUE, VALUE);
int rb_integer_pack(VALUE val, void *words, size_t numwords, size_t wordsize, size_t nails, int flags);
VALUE rb_integer_unpack(const void *words, size_t numwords, size_t wordsize, size_t nails, int flags);
size_t rb_absint_size(VALUE val, int *nlz_bits_ret);
size_t rb_absint_numwords(VALUE val, size_t word_numbits, size_t *nlz_bits_ret);
int rb_absint_singlebit_p(VALUE val);
VALUE rb_rational_raw(VALUE, VALUE);
VALUE rb_rational_new(VALUE, VALUE);
VALUE rb_Rational(VALUE, VALUE);
VALUE rb_rational_num(VALUE rat);
VALUE rb_rational_den(VALUE rat);
VALUE rb_flt_rationalize_with_prec(VALUE, VALUE);
VALUE rb_flt_rationalize(VALUE);
VALUE rb_complex_raw(VALUE, VALUE);
VALUE rb_complex_new(VALUE, VALUE);
VALUE rb_complex_new_polar(VALUE abs, VALUE arg);
__attribute__ ((__deprecated__("by ""rb_complex_new_polar"))) VALUE rb_complex_polar(VALUE abs, VALUE arg);
VALUE rb_complex_real(VALUE z);
VALUE rb_complex_imag(VALUE z);
VALUE rb_complex_plus(VALUE x, VALUE y);
VALUE rb_complex_minus(VALUE x, VALUE y);
VALUE rb_complex_mul(VALUE x, VALUE y);
VALUE rb_complex_div(VALUE x, VALUE y);
VALUE rb_complex_uminus(VALUE z);
VALUE rb_complex_conjugate(VALUE z);
VALUE rb_complex_abs(VALUE z);
VALUE rb_complex_arg(VALUE z);
VALUE rb_complex_pow(VALUE base, VALUE exp);
VALUE rb_dbl_complex_new(double real, double imag);
VALUE rb_Complex(VALUE, VALUE);
VALUE rb_class_new(VALUE);
VALUE rb_mod_init_copy(VALUE, VALUE);
VALUE rb_singleton_class_clone(VALUE);
void rb_singleton_class_attached(VALUE,VALUE);
void rb_check_inheritable(VALUE);
VALUE rb_define_class_id(ID, VALUE);
VALUE rb_define_class_id_under(VALUE, ID, VALUE);
VALUE rb_module_new(void);
VALUE rb_define_module_id(ID);
VALUE rb_define_module_id_under(VALUE, ID);
VALUE rb_mod_included_modules(VALUE);
VALUE rb_mod_include_p(VALUE, VALUE);
VALUE rb_mod_ancestors(VALUE);
VALUE rb_class_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_public_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_protected_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_private_instance_methods(int, const VALUE*, VALUE);
VALUE rb_obj_singleton_methods(int, const VALUE*, VALUE);
void rb_define_method_id(VALUE, ID, VALUE (*)(), int);
void rb_undef(VALUE, ID);
void rb_define_protected_method(VALUE, const char*, VALUE (*)(), int);
void rb_define_private_method(VALUE, const char*, VALUE (*)(), int);
void rb_define_singleton_method(VALUE, const char*, VALUE(*)(), int);
VALUE rb_singleton_class(VALUE);
int rb_cmpint(VALUE, VALUE, VALUE);
__attribute__ ((__noreturn__)) void rb_cmperr(VALUE, VALUE);
VALUE rb_fiber_new(rb_block_call_func_t, VALUE);
VALUE rb_fiber_resume(VALUE fib, int argc, const VALUE *argv);
VALUE rb_fiber_resume_kw(VALUE fib, int argc, const VALUE *argv, int kw_splat);
VALUE rb_fiber_yield(int argc, const VALUE *argv);
VALUE rb_fiber_yield_kw(int argc, const VALUE *argv, int kw_splat);
VALUE rb_fiber_current(void);
VALUE rb_fiber_alive_p(VALUE);
VALUE rb_enum_values_pack(int, const VALUE*);
VALUE rb_enumeratorize(VALUE, VALUE, int, const VALUE *);
typedef VALUE rb_enumerator_size_func(VALUE, VALUE, VALUE);
VALUE rb_enumeratorize_with_size(VALUE, VALUE, int, const VALUE *, rb_enumerator_size_func *);
VALUE rb_enumeratorize_with_size_kw(VALUE, VALUE, int, const VALUE *, rb_enumerator_size_func *, int);
typedef struct {
    VALUE begin;
    VALUE end;
    VALUE step;
    int exclude_end;
} rb_arithmetic_sequence_components_t;
int rb_arithmetic_sequence_extract(VALUE, rb_arithmetic_sequence_components_t *);
VALUE rb_exc_new(VALUE, const char*, long);
VALUE rb_exc_new_cstr(VALUE, const char*);
VALUE rb_exc_new_str(VALUE, VALUE);
__attribute__ ((__noreturn__)) void rb_loaderror(const char*, ...) __attribute__((format(printf, 1, 2)));
__attribute__ ((__noreturn__)) void rb_loaderror_with_path(VALUE path, const char*, ...) __attribute__((format(printf, 2, 3)));
__attribute__ ((__noreturn__)) void rb_name_error(ID, const char*, ...) __attribute__((format(printf, 2, 3)));
__attribute__ ((__noreturn__)) void rb_name_error_str(VALUE, const char*, ...) __attribute__((format(printf, 2, 3)));
__attribute__ ((__noreturn__)) void rb_frozen_error_raise(VALUE, const char*, ...) __attribute__((format(printf, 2, 3)));
__attribute__ ((__noreturn__)) void rb_invalid_str(const char*, const char*);
__attribute__ ((__noreturn__)) void rb_error_frozen(const char*);
__attribute__ ((__noreturn__)) void rb_error_frozen_object(VALUE);
void rb_error_untrusted(VALUE);
void rb_check_frozen(VALUE);
void rb_check_trusted(VALUE);
void rb_check_copyable(VALUE obj, VALUE orig);
int rb_sourceline(void);
const char *rb_sourcefile(void);
VALUE rb_check_funcall(VALUE, ID, int, const VALUE*);
VALUE rb_check_funcall_kw(VALUE, ID, int, const VALUE*, int);
__attribute__ ((__noreturn__)) static void rb_error_arity(int, int, int);
static inline int
rb_check_arity(int argc, int min, int max)
{
    if ((argc < min) || (max != (-1) && argc > max))
 rb_error_arity(argc, min, max);
    return argc;
}
typedef struct {
    int maxfd;
    fd_set *fdset;
} rb_fdset_t;
void rb_fd_init(rb_fdset_t *);
void rb_fd_term(rb_fdset_t *);
void rb_fd_zero(rb_fdset_t *);
void rb_fd_set(int, rb_fdset_t *);
void rb_fd_clr(int, rb_fdset_t *);
int rb_fd_isset(int, const rb_fdset_t *);
void rb_fd_copy(rb_fdset_t *, const fd_set *, int);
void rb_fd_dup(rb_fdset_t *dst, const rb_fdset_t *src);
struct timeval;
int rb_fd_select(int, rb_fdset_t *, rb_fdset_t *, rb_fdset_t *, struct timeval *);
__attribute__ ((__noreturn__)) void rb_exc_raise(VALUE);
__attribute__ ((__noreturn__)) void rb_exc_fatal(VALUE);
__attribute__ ((__noreturn__)) VALUE rb_f_exit(int, const VALUE*);
__attribute__ ((__noreturn__)) VALUE rb_f_abort(int, const VALUE*);
void rb_remove_method(VALUE, const char*);
void rb_remove_method_id(VALUE, ID);
typedef VALUE (*rb_alloc_func_t)(VALUE);
void rb_define_alloc_func(VALUE, rb_alloc_func_t);
void rb_undef_alloc_func(VALUE);
rb_alloc_func_t rb_get_alloc_func(VALUE);
void rb_clear_constant_cache(void);
void rb_clear_method_cache_by_class(VALUE);
void rb_alias(VALUE, ID, ID);
void rb_attr(VALUE,ID,int,int,int);
int rb_method_boundp(VALUE, ID, int);
int rb_method_basic_definition_p(VALUE, ID);
VALUE rb_eval_cmd(VALUE, VALUE, int);
VALUE rb_eval_cmd_kw(VALUE, VALUE, int);
int rb_obj_respond_to(VALUE, ID, int);
int rb_respond_to(VALUE, ID);
__attribute__ ((__noreturn__)) VALUE rb_f_notimplement(int argc, const VALUE *argv, VALUE obj, VALUE marker);
__attribute__ ((__noreturn__)) void rb_interrupt(void);
VALUE rb_apply(VALUE, ID, VALUE);
void rb_backtrace(void);
ID rb_frame_this_func(void);
VALUE rb_obj_instance_eval(int, const VALUE*, VALUE);
VALUE rb_obj_instance_exec(int, const VALUE*, VALUE);
VALUE rb_mod_module_eval(int, const VALUE*, VALUE);
VALUE rb_mod_module_exec(int, const VALUE*, VALUE);
void rb_load(VALUE, int);
void rb_load_protect(VALUE, int, int*);
__attribute__ ((__noreturn__)) void rb_jump_tag(int);
int rb_provided(const char*);
int rb_feature_provided(const char *, const char **);
void rb_provide(const char*);
VALUE rb_f_require(VALUE, VALUE);
VALUE rb_require_safe(VALUE, int);
VALUE rb_require_string(VALUE);
void rb_obj_call_init(VALUE, int, const VALUE*);
void rb_obj_call_init_kw(VALUE, int, const VALUE*, int);
VALUE rb_class_new_instance(int, const VALUE*, VALUE);
VALUE rb_class_new_instance_kw(int, const VALUE*, VALUE, int);
VALUE rb_block_proc(void);
VALUE rb_block_lambda(void);
VALUE rb_proc_new(rb_block_call_func_t, VALUE);
VALUE rb_obj_is_proc(VALUE);
VALUE rb_proc_call(VALUE, VALUE);
VALUE rb_proc_call_kw(VALUE, VALUE, int);
VALUE rb_proc_call_with_block(VALUE, int argc, const VALUE *argv, VALUE);
VALUE rb_proc_call_with_block_kw(VALUE, int argc, const VALUE *argv, VALUE, int);
int rb_proc_arity(VALUE);
VALUE rb_proc_lambda_p(VALUE);
VALUE rb_binding_new(void);
VALUE rb_obj_method(VALUE, VALUE);
VALUE rb_obj_is_method(VALUE);
VALUE rb_method_call(int, const VALUE*, VALUE);
VALUE rb_method_call_kw(int, const VALUE*, VALUE, int);
VALUE rb_method_call_with_block(int, const VALUE *, VALUE, VALUE);
VALUE rb_method_call_with_block_kw(int, const VALUE *, VALUE, VALUE, int);
int rb_mod_method_arity(VALUE, ID);
int rb_obj_method_arity(VALUE, ID);
VALUE rb_protect(VALUE (*)(VALUE), VALUE, int*);
void rb_set_end_proc(void (*)(VALUE), VALUE);
void rb_thread_schedule(void);
void rb_thread_wait_fd(int);
int rb_thread_fd_writable(int);
void rb_thread_fd_close(int);
int rb_thread_alone(void);
void rb_thread_sleep(int);
void rb_thread_sleep_forever(void);
void rb_thread_sleep_deadly(void);
VALUE rb_thread_stop(void);
VALUE rb_thread_wakeup(VALUE);
VALUE rb_thread_wakeup_alive(VALUE);
VALUE rb_thread_run(VALUE);
VALUE rb_thread_kill(VALUE);
VALUE rb_thread_create(VALUE (*)(void *), void*);
int rb_thread_fd_select(int, rb_fdset_t *, rb_fdset_t *, rb_fdset_t *, struct timeval *);
void rb_thread_wait_for(struct timeval);
VALUE rb_thread_current(void);
VALUE rb_thread_main(void);
VALUE rb_thread_local_aref(VALUE, ID);
VALUE rb_thread_local_aset(VALUE, ID, VALUE);
void rb_thread_atfork(void);
void rb_thread_atfork_before_exec(void);
VALUE rb_exec_recursive(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE);
VALUE rb_exec_recursive_paired(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE,VALUE);
VALUE rb_exec_recursive_outer(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE);
VALUE rb_exec_recursive_paired_outer(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE,VALUE);
VALUE rb_dir_getwd(void);
VALUE rb_file_s_expand_path(int, const VALUE *);
VALUE rb_file_expand_path(VALUE, VALUE);
VALUE rb_file_s_absolute_path(int, const VALUE *);
VALUE rb_file_absolute_path(VALUE, VALUE);
VALUE rb_file_dirname(VALUE fname);
int rb_find_file_ext_safe(VALUE*, const char* const*, int);
VALUE rb_find_file_safe(VALUE, int);
int rb_find_file_ext(VALUE*, const char* const*);
VALUE rb_find_file(VALUE);
VALUE rb_file_directory_p(VALUE,VALUE);
VALUE rb_str_encode_ospath(VALUE);
int rb_is_absolute_path(const char *);
__attribute__((cold)) __attribute__ ((__noreturn__)) void rb_memerror(void);
__attribute__ ((__pure__)) int rb_during_gc(void);
void rb_gc_mark_locations(const VALUE*, const VALUE*);
void rb_mark_tbl(struct st_table*);
void rb_mark_tbl_no_pin(struct st_table*);
void rb_mark_set(struct st_table*);
void rb_mark_hash(struct st_table*);
void rb_gc_update_tbl_refs(st_table *ptr);
void rb_gc_mark_maybe(VALUE);
void rb_gc_mark(VALUE);
void rb_gc_mark_movable(VALUE);
VALUE rb_gc_location(VALUE);
void rb_gc_force_recycle(VALUE);
void rb_gc(void);
void rb_gc_copy_finalizer(VALUE,VALUE);
VALUE rb_gc_enable(void);
VALUE rb_gc_disable(void);
VALUE rb_gc_start(void);
VALUE rb_define_finalizer(VALUE, VALUE);
VALUE rb_undefine_finalizer(VALUE);
size_t rb_gc_count(void);
size_t rb_gc_stat(VALUE);
VALUE rb_gc_latest_gc_info(VALUE);
void rb_gc_adjust_memory_usage(ssize_t);
void rb_st_foreach_safe(struct st_table *, int (*)(st_data_t, st_data_t, st_data_t), st_data_t);
VALUE rb_check_hash_type(VALUE);
void rb_hash_foreach(VALUE, int (*)(VALUE, VALUE, VALUE), VALUE);
VALUE rb_hash(VALUE);
VALUE rb_hash_new(void);
VALUE rb_hash_dup(VALUE);
VALUE rb_hash_freeze(VALUE);
VALUE rb_hash_aref(VALUE, VALUE);
VALUE rb_hash_lookup(VALUE, VALUE);
VALUE rb_hash_lookup2(VALUE, VALUE, VALUE);
VALUE rb_hash_fetch(VALUE, VALUE);
VALUE rb_hash_aset(VALUE, VALUE, VALUE);
VALUE rb_hash_clear(VALUE);
VALUE rb_hash_delete_if(VALUE);
VALUE rb_hash_delete(VALUE,VALUE);
VALUE rb_hash_set_ifnone(VALUE hash, VALUE ifnone);
void rb_hash_bulk_insert(long, const VALUE *, VALUE);
typedef VALUE rb_hash_update_func(VALUE newkey, VALUE oldkey, VALUE value);
VALUE rb_hash_update_by(VALUE hash1, VALUE hash2, rb_hash_update_func *func);
struct st_table *rb_hash_tbl(VALUE, const char *file, int line);
int rb_path_check(const char*);
int rb_env_path_tainted(void);
VALUE rb_env_clear(void);
VALUE rb_hash_size(VALUE);
void rb_hash_free(VALUE);
extern VALUE rb_fs;
extern VALUE rb_output_fs;
extern VALUE rb_rs;
extern VALUE rb_default_rs;
extern VALUE rb_output_rs;
VALUE rb_io_write(VALUE, VALUE);
VALUE rb_io_gets(VALUE);
VALUE rb_io_getbyte(VALUE);
VALUE rb_io_ungetc(VALUE, VALUE);
VALUE rb_io_ungetbyte(VALUE, VALUE);
VALUE rb_io_close(VALUE);
VALUE rb_io_flush(VALUE);
VALUE rb_io_eof(VALUE);
VALUE rb_io_binmode(VALUE);
VALUE rb_io_ascii8bit_binmode(VALUE);
VALUE rb_io_addstr(VALUE, VALUE);
VALUE rb_io_printf(int, const VALUE*, VALUE);
VALUE rb_io_print(int, const VALUE*, VALUE);
VALUE rb_io_puts(int, const VALUE*, VALUE);
VALUE rb_io_fdopen(int, int, const char*);
VALUE rb_io_get_io(VALUE);
VALUE rb_file_open(const char*, const char*);
VALUE rb_file_open_str(VALUE, const char*);
VALUE rb_gets(void);
void rb_write_error(const char*);
void rb_write_error2(const char*, long);
void rb_close_before_exec(int lowfd, int maxhint, VALUE noclose_fds);
int rb_pipe(int *pipes);
int rb_reserved_fd_p(int fd);
int rb_cloexec_open(const char *pathname, int flags, mode_t mode);
int rb_cloexec_dup(int oldfd);
int rb_cloexec_dup2(int oldfd, int newfd);
int rb_cloexec_pipe(int fildes[2]);
int rb_cloexec_fcntl_dupfd(int fd, int minfd);
void rb_update_max_fd(int fd);
void rb_fd_fix_cloexec(int fd);
VALUE rb_marshal_dump(VALUE, VALUE);
VALUE rb_marshal_load(VALUE);
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE (*dumper)(VALUE), VALUE (*loader)(VALUE, VALUE));
__attribute__ ((__noreturn__)) void rb_num_zerodiv(void);
VALUE rb_num_coerce_bin(VALUE, VALUE, ID);
VALUE rb_num_coerce_cmp(VALUE, VALUE, ID);
VALUE rb_num_coerce_relop(VALUE, VALUE, ID);
VALUE rb_num_coerce_bit(VALUE, VALUE, ID);
VALUE rb_num2fix(VALUE);
VALUE rb_fix2str(VALUE, int);
__attribute__ ((__const__)) VALUE rb_dbl_cmp(double, double);
int rb_eql(VALUE, VALUE);
VALUE rb_any_to_s(VALUE);
VALUE rb_inspect(VALUE);
VALUE rb_obj_is_instance_of(VALUE, VALUE);
VALUE rb_obj_is_kind_of(VALUE, VALUE);
VALUE rb_obj_alloc(VALUE);
VALUE rb_obj_clone(VALUE);
VALUE rb_obj_dup(VALUE);
VALUE rb_obj_init_copy(VALUE,VALUE);
VALUE rb_obj_taint(VALUE);
__attribute__ ((__pure__)) VALUE rb_obj_tainted(VALUE);
VALUE rb_obj_untaint(VALUE);
VALUE rb_obj_untrust(VALUE);
__attribute__ ((__pure__)) VALUE rb_obj_untrusted(VALUE);
VALUE rb_obj_trust(VALUE);
VALUE rb_obj_freeze(VALUE);
__attribute__ ((__pure__)) VALUE rb_obj_frozen_p(VALUE);
VALUE rb_obj_id(VALUE);
VALUE rb_memory_id(VALUE);
VALUE rb_obj_class(VALUE);
__attribute__ ((__pure__)) VALUE rb_class_real(VALUE);
__attribute__ ((__pure__)) VALUE rb_class_inherited_p(VALUE, VALUE);
VALUE rb_class_superclass(VALUE);
VALUE rb_class_get_superclass(VALUE);
VALUE rb_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_to_integer(VALUE, const char *);
VALUE rb_check_to_float(VALUE);
VALUE rb_to_int(VALUE);
VALUE rb_check_to_int(VALUE);
VALUE rb_Integer(VALUE);
VALUE rb_to_float(VALUE);
VALUE rb_Float(VALUE);
VALUE rb_String(VALUE);
VALUE rb_Array(VALUE);
VALUE rb_Hash(VALUE);
double rb_cstr_to_dbl(const char*, int);
double rb_str_to_dbl(VALUE, int);
ID rb_id_attrset(ID);
__attribute__ ((__const__)) int rb_is_const_id(ID);
__attribute__ ((__const__)) int rb_is_global_id(ID);
__attribute__ ((__const__)) int rb_is_instance_id(ID);
__attribute__ ((__const__)) int rb_is_attrset_id(ID);
__attribute__ ((__const__)) int rb_is_class_id(ID);
__attribute__ ((__const__)) int rb_is_local_id(ID);
__attribute__ ((__const__)) int rb_is_junk_id(ID);
int rb_symname_p(const char*);
int rb_sym_interned_p(VALUE);
VALUE rb_backref_get(void);
void rb_backref_set(VALUE);
VALUE rb_lastline_get(void);
void rb_lastline_set(VALUE);
void rb_last_status_set(int status, pid_t pid);
VALUE rb_last_status_get(void);
int rb_proc_exec(const char*);
__attribute__ ((__noreturn__)) VALUE rb_f_exec(int, const VALUE*);
pid_t rb_waitpid(pid_t pid, int *status, int flags);
void rb_syswait(pid_t pid);
pid_t rb_spawn(int, const VALUE*);
pid_t rb_spawn_err(int, const VALUE*, char*, size_t);
VALUE rb_proc_times(VALUE);
VALUE rb_detach_process(pid_t pid);
VALUE rb_range_new(VALUE, VALUE, int);
VALUE rb_range_beg_len(VALUE, long*, long*, long, int);
int rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp);
unsigned int rb_genrand_int32(void);
double rb_genrand_real(void);
void rb_reset_random_seed(void);
VALUE rb_random_bytes(VALUE rnd, long n);
VALUE rb_random_int(VALUE rnd, VALUE max);
unsigned int rb_random_int32(VALUE rnd);
double rb_random_real(VALUE rnd);
unsigned long rb_random_ulong_limited(VALUE rnd, unsigned long limit);
unsigned long rb_genrand_ulong_limited(unsigned long i);
int rb_memcicmp(const void*,const void*,long);
void rb_match_busy(VALUE);
VALUE rb_reg_nth_defined(int, VALUE);
VALUE rb_reg_nth_match(int, VALUE);
int rb_reg_backref_number(VALUE match, VALUE backref);
VALUE rb_reg_last_match(VALUE);
VALUE rb_reg_match_pre(VALUE);
VALUE rb_reg_match_post(VALUE);
VALUE rb_reg_match_last(VALUE);
VALUE rb_reg_new_str(VALUE, int);
VALUE rb_reg_new(const char *, long, int);
VALUE rb_reg_alloc(void);
VALUE rb_reg_init_str(VALUE re, VALUE s, int options);
VALUE rb_reg_match(VALUE, VALUE);
VALUE rb_reg_match2(VALUE);
int rb_reg_options(VALUE);
extern VALUE rb_argv0;
VALUE rb_get_argv(void);
void *rb_load_file(const char*);
void *rb_load_file_str(VALUE);
VALUE rb_f_kill(int, const VALUE*);
void (*ruby_posix_signal(int, void (*)(int)))(int);
const char *ruby_signal_name(int);
void ruby_default_signal(int);
VALUE rb_f_sprintf(int, const VALUE*);
VALUE rb_sprintf(const char*, ...) __attribute__((format(printf, 1, 2)));
VALUE rb_vsprintf(const char*, va_list);
VALUE rb_str_catf(VALUE, const char*, ...) __attribute__((format(printf, 2, 3)));
VALUE rb_str_vcatf(VALUE, const char*, va_list);
VALUE rb_str_format(int, const VALUE *, VALUE);
VALUE rb_str_new(const char*, long);
VALUE rb_str_new_cstr(const char*);
VALUE rb_str_new_shared(VALUE);
VALUE rb_str_new_frozen(VALUE);
VALUE rb_str_new_with_class(VALUE, const char*, long);
VALUE rb_tainted_str_new_cstr(const char*);
VALUE rb_tainted_str_new(const char*, long);
VALUE rb_external_str_new(const char*, long);
VALUE rb_external_str_new_cstr(const char*);
VALUE rb_locale_str_new(const char*, long);
VALUE rb_locale_str_new_cstr(const char*);
VALUE rb_filesystem_str_new(const char*, long);
VALUE rb_filesystem_str_new_cstr(const char*);
VALUE rb_str_buf_new(long);
VALUE rb_str_buf_new_cstr(const char*);
VALUE rb_str_buf_new2(const char*);
VALUE rb_str_tmp_new(long);
VALUE rb_usascii_str_new(const char*, long);
VALUE rb_usascii_str_new_cstr(const char*);
VALUE rb_utf8_str_new(const char*, long);
VALUE rb_utf8_str_new_cstr(const char*);
VALUE rb_str_new_static(const char *, long);
VALUE rb_usascii_str_new_static(const char *, long);
VALUE rb_utf8_str_new_static(const char *, long);
void rb_str_free(VALUE);
void rb_str_shared_replace(VALUE, VALUE);
VALUE rb_str_buf_append(VALUE, VALUE);
VALUE rb_str_buf_cat(VALUE, const char*, long);
VALUE rb_str_buf_cat2(VALUE, const char*);
VALUE rb_str_buf_cat_ascii(VALUE, const char*);
VALUE rb_obj_as_string(VALUE);
VALUE rb_check_string_type(VALUE);
void rb_must_asciicompat(VALUE);
VALUE rb_str_dup(VALUE);
VALUE rb_str_resurrect(VALUE str);
VALUE rb_str_locktmp(VALUE);
VALUE rb_str_unlocktmp(VALUE);
VALUE rb_str_dup_frozen(VALUE);
VALUE rb_str_plus(VALUE, VALUE);
VALUE rb_str_times(VALUE, VALUE);
long rb_str_sublen(VALUE, long);
VALUE rb_str_substr(VALUE, long, long);
VALUE rb_str_subseq(VALUE, long, long);
char *rb_str_subpos(VALUE, long, long*);
void rb_str_modify(VALUE);
void rb_str_modify_expand(VALUE, long);
VALUE rb_str_freeze(VALUE);
void rb_str_set_len(VALUE, long);
VALUE rb_str_resize(VALUE, long);
VALUE rb_str_cat(VALUE, const char*, long);
VALUE rb_str_cat_cstr(VALUE, const char*);
VALUE rb_str_cat2(VALUE, const char*);
VALUE rb_str_append(VALUE, VALUE);
VALUE rb_str_concat(VALUE, VALUE);
st_index_t rb_memhash(const void *ptr, long len);
st_index_t rb_hash_start(st_index_t);
st_index_t rb_hash_uint32(st_index_t, uint32_t);
st_index_t rb_hash_uint(st_index_t, st_index_t);
st_index_t rb_hash_end(st_index_t);
st_index_t rb_str_hash(VALUE);
int rb_str_hash_cmp(VALUE,VALUE);
int rb_str_comparable(VALUE, VALUE);
int rb_str_cmp(VALUE, VALUE);
VALUE rb_str_equal(VALUE str1, VALUE str2);
VALUE rb_str_drop_bytes(VALUE, long);
void rb_str_update(VALUE, long, long, VALUE);
VALUE rb_str_replace(VALUE, VALUE);
VALUE rb_str_inspect(VALUE);
VALUE rb_str_dump(VALUE);
VALUE rb_str_split(VALUE, const char*);
rb_gvar_setter_t rb_str_setter;
VALUE rb_str_intern(VALUE);
VALUE rb_sym_to_s(VALUE);
long rb_str_strlen(VALUE);
VALUE rb_str_length(VALUE);
long rb_str_offset(VALUE, long);
__attribute__ ((__pure__)) size_t rb_str_capacity(VALUE);
VALUE rb_str_ellipsize(VALUE, long);
VALUE rb_str_scrub(VALUE, VALUE);
VALUE rb_sym_all_symbols(void);
VALUE rb_struct_new(VALUE, ...);
VALUE rb_struct_define(const char*, ...);
VALUE rb_struct_define_under(VALUE, const char*, ...);
VALUE rb_struct_alloc(VALUE, VALUE);
VALUE rb_struct_initialize(VALUE, VALUE);
VALUE rb_struct_aref(VALUE, VALUE);
VALUE rb_struct_aset(VALUE, VALUE, VALUE);
VALUE rb_struct_getmember(VALUE, ID);
VALUE rb_struct_s_members(VALUE);
VALUE rb_struct_members(VALUE);
VALUE rb_struct_size(VALUE s);
VALUE rb_struct_alloc_noinit(VALUE);
VALUE rb_struct_define_without_accessor(const char *, VALUE, rb_alloc_func_t, ...);
VALUE rb_struct_define_without_accessor_under(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc, ...);
typedef void rb_unblock_function_t(void *);
typedef VALUE rb_blocking_function_t(void *);
void rb_thread_check_ints(void);
int rb_thread_interrupted(VALUE thval);
VALUE rb_mutex_new(void);
VALUE rb_mutex_locked_p(VALUE mutex);
VALUE rb_mutex_trylock(VALUE mutex);
VALUE rb_mutex_lock(VALUE mutex);
VALUE rb_mutex_unlock(VALUE mutex);
VALUE rb_mutex_sleep(VALUE self, VALUE timeout);
VALUE rb_mutex_synchronize(VALUE mutex, VALUE (*func)(VALUE arg), VALUE arg);
struct timespec;
void rb_timespec_now(struct timespec *);
VALUE rb_time_new(time_t, long);
VALUE rb_time_nano_new(time_t, long);
VALUE rb_time_timespec_new(const struct timespec *, int);
VALUE rb_time_num_new(VALUE, VALUE);
struct timeval rb_time_interval(VALUE num);
struct timeval rb_time_timeval(VALUE time);
struct timespec rb_time_timespec(VALUE time);
struct timespec rb_time_timespec_interval(VALUE num);
VALUE rb_time_utc_offset(VALUE time);
VALUE rb_mod_name(VALUE);
VALUE rb_class_path(VALUE);
VALUE rb_class_path_cached(VALUE);
void rb_set_class_path(VALUE, VALUE, const char*);
void rb_set_class_path_string(VALUE, VALUE, VALUE);
VALUE rb_path_to_class(VALUE);
VALUE rb_path2class(const char*);
VALUE rb_class_name(VALUE);
VALUE rb_autoload_load(VALUE, ID);
VALUE rb_autoload_p(VALUE, ID);
VALUE rb_f_trace_var(int, const VALUE*);
VALUE rb_f_untrace_var(int, const VALUE*);
VALUE rb_f_global_variables(void);
void rb_alias_variable(ID, ID);
void rb_copy_generic_ivar(VALUE,VALUE);
void rb_free_generic_ivar(VALUE);
VALUE rb_ivar_get(VALUE, ID);
VALUE rb_ivar_set(VALUE, ID, VALUE);
VALUE rb_ivar_defined(VALUE, ID);
void rb_ivar_foreach(VALUE, int (*)(ID, VALUE, st_data_t), st_data_t);
st_index_t rb_ivar_count(VALUE);
VALUE rb_attr_get(VALUE, ID);
VALUE rb_obj_instance_variables(VALUE);
VALUE rb_obj_remove_instance_variable(VALUE, VALUE);
void *rb_mod_const_at(VALUE, void*);
void *rb_mod_const_of(VALUE, void*);
VALUE rb_const_list(void*);
VALUE rb_mod_constants(int, const VALUE *, VALUE);
VALUE rb_mod_remove_const(VALUE, VALUE);
int rb_const_defined(VALUE, ID);
int rb_const_defined_at(VALUE, ID);
int rb_const_defined_from(VALUE, ID);
VALUE rb_const_get(VALUE, ID);
VALUE rb_const_get_at(VALUE, ID);
VALUE rb_const_get_from(VALUE, ID);
void rb_const_set(VALUE, ID, VALUE);
VALUE rb_const_remove(VALUE, ID);
VALUE rb_cvar_defined(VALUE, ID);
void rb_cvar_set(VALUE, ID, VALUE);
VALUE rb_cvar_get(VALUE, ID);
void rb_cv_set(VALUE, const char*, VALUE);
VALUE rb_cv_get(VALUE, const char*);
void rb_define_class_variable(VALUE, const char*, VALUE);
VALUE rb_mod_class_variables(int, const VALUE*, VALUE);
VALUE rb_mod_remove_cvar(VALUE, VALUE);
ID rb_frame_callee(void);
int rb_frame_method_id_and_class(ID *idp, VALUE *klassp);
VALUE rb_str_succ(VALUE);
VALUE rb_time_succ(VALUE);
VALUE rb_make_backtrace(void);
VALUE rb_make_exception(int, const VALUE*);


 __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id0(VALUE klass, ID name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id1(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id2(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id3(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id4(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id5(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id6(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id7(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id8(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id9(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id10(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id11(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id12(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id13(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id14(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_id15(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_idm3(VALUE klass, ID name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_idm2(VALUE klass, ID name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method_id"),__nonnull__ (3)))static void rb_define_method_idm1(VALUE klass, ID name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
 __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method0(VALUE klass, const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method1(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method3(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method4(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method5(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method6(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method7(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method8(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method9(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method10(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method11(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method12(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method13(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method14(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_method15(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_methodm3(VALUE klass, const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_methodm2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_protected_method"),__nonnull__ (2,3)))static void rb_define_protected_methodm1(VALUE klass, const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
 __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method0(VALUE klass, const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method1(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method3(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method4(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method5(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method6(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method7(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method8(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method9(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method10(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method11(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method12(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method13(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method14(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_method15(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_methodm3(VALUE klass, const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_methodm2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_private_method"),__nonnull__ (2,3)))static void rb_define_private_methodm1(VALUE klass, const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
 __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method0(VALUE klass, const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method1(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method3(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method4(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method5(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method6(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method7(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method8(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method9(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method10(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method11(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method12(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method13(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method14(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_method15(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_methodm3(VALUE klass, const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_methodm2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_singleton_method"),__nonnull__ (2,3)))static void rb_define_singleton_methodm1(VALUE klass, const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
static inline void
rb_clone_setup(VALUE clone, VALUE obj)
{
    rb_obj_setup(clone, rb_singleton_class_clone(obj),
                 ((struct RBasic*)(obj))->flags & ~(((VALUE)RUBY_FL_PROMOTED0)|((VALUE)RUBY_FL_PROMOTED1)|((VALUE)RUBY_FL_FINALIZE)));
    rb_singleton_class_attached((((struct RBasic*)(clone))->klass), clone);
    if (((!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((obj)))->flags&((RUBY_FL_EXIVAR))):0)) rb_copy_generic_ivar(clone, obj);
}
static inline void
rb_dup_setup(VALUE dup, VALUE obj)
{
    rb_obj_setup(dup, rb_obj_class(obj), (((struct RBasic*)(obj))->flags&(RUBY_FL_DUPPED)));
    if (((!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((obj)))->flags&((RUBY_FL_EXIVAR))):0)) rb_copy_generic_ivar(dup, obj);
}
static inline long
rb_array_len(VALUE a)
{
    return (((struct RBasic*)(a))->flags & (VALUE)RARRAY_EMBED_FLAG) ?
 (long)((((struct RBasic*)(a))->flags >> RARRAY_EMBED_LEN_SHIFT) & ((VALUE)RARRAY_EMBED_LEN_MASK >> RARRAY_EMBED_LEN_SHIFT)) : ((struct RArray*)(a))->as.heap.len;
}
static inline const VALUE *
rb_array_const_ptr_transient(VALUE a)
{
    return ((((struct RBasic*)(a))->flags & (VALUE)RARRAY_EMBED_FLAG) ? ((struct RArray*)(a))->as.ary : ((struct RArray*)(a))->as.heap.ptr);
}
static inline const VALUE *
rb_array_const_ptr(VALUE a)
{
    void rb_ary_detransient(VALUE a);
    if ((((struct RBasic*)((a)))->flags&(RARRAY_TRANSIENT_FLAG))) {
        rb_ary_detransient(a);
    }
    return rb_array_const_ptr_transient(a);
}
static inline VALUE *
rb_array_ptr_use_start(VALUE a, int allow_transient)
{
    VALUE *rb_ary_ptr_use_start(VALUE ary);
    if (!allow_transient) {
        if ((((struct RBasic*)((a)))->flags&(RARRAY_TRANSIENT_FLAG))) {
            void rb_ary_detransient(VALUE a);
            rb_ary_detransient(a);
        }
    }
    (void)allow_transient;
    return rb_ary_ptr_use_start(a);
}
static inline void
rb_array_ptr_use_end(VALUE a, int allow_transient)
{
    void rb_ary_ptr_use_end(VALUE a);
    rb_ary_ptr_use_end(a);
    (void)allow_transient;
}
int ruby_native_thread_p(void);
typedef uint32_t rb_event_flag_t;
typedef void (*rb_event_hook_func_t)(rb_event_flag_t evflag, VALUE data, VALUE self, ID mid, VALUE klass);
void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data);
int rb_remove_event_hook(rb_event_hook_func_t func);
static inline int rb_isascii(int c){ return '\0' <= c && c <= '\x7f'; }
static inline int rb_isupper(int c){ return 'A' <= c && c <= 'Z'; }
static inline int rb_islower(int c){ return 'a' <= c && c <= 'z'; }
static inline int rb_isalpha(int c){ return rb_isupper(c) || rb_islower(c); }
static inline int rb_isdigit(int c){ return '0' <= c && c <= '9'; }
static inline int rb_isalnum(int c){ return rb_isalpha(c) || rb_isdigit(c); }
static inline int rb_isxdigit(int c){ return rb_isdigit(c) || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f'); }
static inline int rb_isblank(int c){ return c == ' ' || c == '\t'; }
static inline int rb_isspace(int c){ return c == ' ' || ('\t' <= c && c <= '\r'); }
static inline int rb_iscntrl(int c){ return ('\0' <= c && c < ' ') || c == '\x7f'; }
static inline int rb_isprint(int c){ return ' ' <= c && c <= '\x7e'; }
static inline int rb_ispunct(int c){ return !rb_isalnum(c); }
static inline int rb_isgraph(int c){ return '!' <= c && c <= '\x7e'; }
static inline int rb_tolower(int c) { return rb_isupper(c) ? (c|0x20) : c; }
static inline int rb_toupper(int c) { return rb_islower(c) ? (c&0x5f) : c; }
int rb_st_locale_insensitive_strcasecmp(const char *s1, const char *s2);
int rb_st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n);
unsigned long ruby_strtoul(const char *str, char **endptr, int base);
int ruby_snprintf(char *str, size_t n, char const *fmt, ...) __attribute__((format(printf, 3, 4)));
int ruby_vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
int rb_empty_keyword_given_p(void);
__attribute__ ((__error__ ("bad scan arg format"))) void rb_scan_args_bad_format(const char*);
__attribute__ ((__error__ ("variable argument length doesn't match"))) void rb_scan_args_length_mismatch(const char*,int);
__attribute__ ((__always_inline__)) static int rb_scan_args_lead_p(const char *fmt);
static inline int
rb_scan_args_lead_p(const char *fmt)
{
    return ((unsigned char)((fmt[0])-'0')<10);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_n_lead(const char *fmt);
static inline int
rb_scan_args_n_lead(const char *fmt)
{
    return (rb_scan_args_lead_p(fmt) ? fmt[0]-'0' : 0);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_opt_p(const char *fmt);
static inline int
rb_scan_args_opt_p(const char *fmt)
{
    return (rb_scan_args_lead_p(fmt) && ((unsigned char)((fmt[1])-'0')<10));
}
__attribute__ ((__always_inline__)) static int rb_scan_args_n_opt(const char *fmt);
static inline int
rb_scan_args_n_opt(const char *fmt)
{
    return (rb_scan_args_opt_p(fmt) ? fmt[1]-'0' : 0);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_var_idx(const char *fmt);
static inline int
rb_scan_args_var_idx(const char *fmt)
{
    return (!rb_scan_args_lead_p(fmt) ? 0 : !((unsigned char)((fmt[1])-'0')<10) ? 1 : 2);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_f_var(const char *fmt);
static inline int
rb_scan_args_f_var(const char *fmt)
{
    return (fmt[rb_scan_args_var_idx(fmt)]=='*');
}
__attribute__ ((__always_inline__)) static int rb_scan_args_trail_idx(const char *fmt);
static inline int
rb_scan_args_trail_idx(const char *fmt)
{
    const int idx = rb_scan_args_var_idx(fmt);
    return idx+(fmt[idx]=='*');
}
__attribute__ ((__always_inline__)) static int rb_scan_args_n_trail(const char *fmt);
static inline int
rb_scan_args_n_trail(const char *fmt)
{
    const int idx = rb_scan_args_trail_idx(fmt);
    return (((unsigned char)((fmt[idx])-'0')<10) ? fmt[idx]-'0' : 0);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_hash_idx(const char *fmt);
static inline int
rb_scan_args_hash_idx(const char *fmt)
{
    const int idx = rb_scan_args_trail_idx(fmt);
    return idx+((unsigned char)((fmt[idx])-'0')<10);
}
__attribute__ ((__always_inline__)) static int rb_scan_args_f_hash(const char *fmt);
static inline int
rb_scan_args_f_hash(const char *fmt)
{
    return (fmt[rb_scan_args_hash_idx(fmt)]==':');
}
__attribute__ ((__always_inline__)) static int rb_scan_args_block_idx(const char *fmt);
static inline int
rb_scan_args_block_idx(const char *fmt)
{
    const int idx = rb_scan_args_hash_idx(fmt);
    return idx+(fmt[idx]==':');
}
__attribute__ ((__always_inline__)) static int rb_scan_args_f_block(const char *fmt);
static inline int
rb_scan_args_f_block(const char *fmt)
{
    return (fmt[rb_scan_args_block_idx(fmt)]=='&');
}static inline 
__attribute__ ((__always_inline__))  int rb_scan_args_set(int argc, const VALUE *argv, int n_lead, int n_opt, int n_trail, int f_var, int f_hash, int f_block, VALUE *vars[], char *fmt, int varc);static inline 
 int
rb_scan_args_set(int argc, const VALUE *argv,
   int n_lead, int n_opt, int n_trail,
   int f_var, int f_hash, int f_block,
   VALUE *vars[], char *fmt __attribute__ ((unused)), int varc __attribute__ ((unused)))
{
    int i, argi = 0, vari = 0, last_idx = -1;
    VALUE *var, hash = ((VALUE)RUBY_Qnil), last_hash = 0;
    const int n_mand = n_lead + n_trail;
    int keyword_given = rb_keyword_given_p();
    int empty_keyword_given = 0;
    VALUE tmp_buffer = 0;
    if (!keyword_given) {
        empty_keyword_given = rb_empty_keyword_given_p();
    }
    if (argc > 0 && !(f_hash && empty_keyword_given)) {
        VALUE last = argv[argc - 1];
        if (f_hash && n_mand < argc) {
            if (keyword_given) {
                if (!( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)(last))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? ((last) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? ((last) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? ((last) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? ((last) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)(last)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)(last))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last))->flags & RUBY_T_MASK) == (RUBY_T_HASH)))) {
                    rb_warn("Keyword flag set when calling rb_scan_args, but last entry is not a hash");
                }
                else {
                    hash = last;
                }
            }
            else if (!((VALUE)(last) != ((VALUE)RUBY_Qnil))) {
                if (!f_var && n_mand + n_opt < argc) {
                    rb_warn("The last argument is nil, treating as empty keywords");
                    argc--;
                }
            }
            else {
                hash = rb_check_hash_type(last);
            }
            if (!!((VALUE)(hash) != ((VALUE)RUBY_Qnil))) {
                VALUE opts = rb_extract_keywords(&hash);
                if (!(last_hash = hash)) {
                    if (!keyword_given) {
                        rb_warn("Using the last argument as keyword parameters is deprecated");
                    }
                    argc--;
                }
                else {
                    rb_warn("The last argument is split into positional and keyword parameters");
                    last_idx = argc - 1;
                }
                hash = opts ? opts : ((VALUE)RUBY_Qnil);
            }
        }
        else if (f_hash && keyword_given && n_mand == argc) {
            rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
        }
    }
    if (f_hash && n_mand > 0 && n_mand == argc+1 && empty_keyword_given) {
        VALUE *ptr = (VALUE *)rb_alloc_tmp_buffer2(&tmp_buffer, argc+1, sizeof(VALUE));
        ruby_nonempty_memcpy(ptr, argv, sizeof(VALUE)*argc);
        ptr[argc] = rb_hash_new();
        argc++;
        *(&argv) = ptr;
        rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
    }
    if (argc < n_mand) {
        goto argc_error;
    }
    for (i = n_lead; i-- > 0; ) {
 var = vars[vari++];
 if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
 argi++;
    }
    for (i = n_opt; i-- > 0; ) {
 var = vars[vari++];
 if (argi < argc - n_trail) {
     if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
     argi++;
 }
 else {
     if (var) *var = ((VALUE)RUBY_Qnil);
 }
    }
    if (f_var) {
 int n_var = argc - argi - n_trail;
 var = vars[vari++];
 if (0 < n_var) {
     if (var) {
  int f_last = (last_idx + 1 == argc - n_trail);
  *var = rb_ary_new_from_values(n_var-f_last, &argv[argi]);
  if (f_last) rb_ary_push(*var, last_hash);
     }
     argi += n_var;
 }
 else {
     if (var) *var = rb_ary_new();
 }
    }
    for (i = n_trail; i-- > 0; ) {
 var = vars[vari++];
 if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
 argi++;
    }
    if (f_hash) {
 var = vars[vari++];
 if (var) *var = hash;
    }
    if (f_block) {
 var = vars[vari++];
 if (rb_block_given_p()) {
     *var = rb_block_proc();
 }
 else {
     *var = ((VALUE)RUBY_Qnil);
 }
    }
    if (argi < argc) {
      argc_error:
        if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
        rb_error_arity(argc, n_mand, f_var ? (-1) : n_mand + n_opt);
    }
    if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
    return argc;
}
void ruby_sysinit(int *argc, char ***argv);
void ruby_init(void);
void* ruby_options(int argc, char** argv);
int ruby_executable_node(void *n, int *status);
int ruby_run_node(void *n);
void ruby_show_version(void);
void ruby_show_copyright(void);
void ruby_init_stack(volatile VALUE*);
int ruby_setup(void);
int ruby_cleanup(volatile int);
void ruby_finalize(void);
__attribute__ ((__noreturn__)) void ruby_stop(int);
void ruby_set_stack_size(size_t);
int ruby_stack_check(void);
size_t ruby_stack_length(VALUE**);
int ruby_exec_node(void *n);
void ruby_script(const char* name);
void ruby_set_script_name(VALUE name);
void ruby_prog_init(void);
void ruby_set_argv(int, char**);
void *ruby_process_options(int, char**);
void ruby_init_loadpath(void);
void ruby_incpush(const char*);
void ruby_sig_finalize(void);


 __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method0(VALUE klass, const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method1(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method3(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method4(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method5(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method6(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method7(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method8(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method9(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method10(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method11(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method12(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method13(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method14(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_method15(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_methodm3(VALUE klass, const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_methodm2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_method"),__nonnull__ (2,3)))static void rb_define_methodm1(VALUE klass, const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
 __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function0(VALUE klass, const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function1(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function3(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function4(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function5(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function6(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function7(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function8(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function9(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function10(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function11(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function12(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function13(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function14(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_function15(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_functionm3(VALUE klass, const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_functionm2(VALUE klass, const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_module_function"),__nonnull__ (2,3)))static void rb_define_module_functionm1(VALUE klass, const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
 __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function0(const char *name,VALUE(*func)(VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function1(const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function2(const char *name,VALUE(*func)(VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function3(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function4(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function5(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function6(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function7(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function8(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function9(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function10(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function11(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function12(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function13(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function14(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_function15(const char *name,VALUE(*func)(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_functionm3(const char *name,VALUE(*func)(),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_functionm2(const char *name,VALUE(*func)(VALUE,VALUE),int arity); __attribute__((__unused__,__weakref__("rb_define_global_function"),__nonnull__ (1,2)))static void rb_define_global_functionm1(const char *name,VALUE(*func)(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE),int arity);
static inline unsigned int
nlz_int(unsigned int x)
{
    if (x == 0) return 4 * 8;
    return (unsigned int)__builtin_clz(x);
}
static inline unsigned int
nlz_long(unsigned long x)
{
    if (x == 0) return 8 * 8;
    return (unsigned int)__builtin_clzl(x);
}
static inline unsigned int
nlz_long_long(unsigned long long x)
{
    if (x == 0) return 8 * 8;
    return (unsigned int)__builtin_clzll(x);
}
static inline unsigned int
nlz_int128(unsigned __int128 x)
{
    unsigned __int128 y;
    unsigned int n = 128;
    y = x >> 64; if (y) {n -= 64; x = y;}
    y = x >> 32; if (y) {n -= 32; x = y;}
    y = x >> 16; if (y) {n -= 16; x = y;}
    y = x >> 8; if (y) {n -= 8; x = y;}
    y = x >> 4; if (y) {n -= 4; x = y;}
    y = x >> 2; if (y) {n -= 2; x = y;}
    y = x >> 1; if (y) {return n - 2;}
    return (unsigned int)(n - x);
}
static inline unsigned int
nlz_intptr(uintptr_t x)
{
    return nlz_long(x);
}
static inline unsigned int
rb_popcount32(uint32_t x)
{
    return (unsigned int)__builtin_popcount(x);
}
static inline int
rb_popcount64(uint64_t x)
{
    return __builtin_popcountll(x);
}
static inline int
rb_popcount_intptr(uintptr_t x)
{
    return rb_popcount64(x);
}
static inline int
ntz_int32(uint32_t x)
{
    return __builtin_ctz(x);
}
static inline int
ntz_int64(uint64_t x)
{
    return __builtin_ctzll(x);
}
static inline int
ntz_intptr(uintptr_t x)
{
    return ntz_int64(x);
}
VALUE rb_int128t2big(__int128 n);
static inline long
rb_overflowed_fix_to_int(long x)
{
    return (long)((unsigned long)(x >> 1) ^ (1LU << (8 * 8 - 1)));
}
static inline VALUE
rb_fix_plus_fix(VALUE x, VALUE y)
{
    long lz;
    if (__builtin_add_overflow((long)x, (long)y-1, &lz)) {
 return rb_int2big(rb_overflowed_fix_to_int(lz));
    }
    else {
 return (VALUE)lz;
    }
}
static inline VALUE
rb_fix_minus_fix(VALUE x, VALUE y)
{
    long lz;
    if (__builtin_sub_overflow((long)x, (long)y-1, &lz)) {
 return rb_int2big(rb_overflowed_fix_to_int(lz));
    }
    else {
 return (VALUE)lz;
    }
}
static inline VALUE
rb_fix_mul_fix(VALUE x, VALUE y)
{
    long lx = ((long)(((long)(x))>>(int)(1)));
    long ly = ((long)(((long)(y))>>(int)(1)));
    return (((((__int128)lx * (__int128)ly) < (0x7fffffffffffffffL>>1)+1) && (((__int128)lx * (__int128)ly) >= (((long)(-0x7fffffffffffffffL - 1L))>>(int)(1)))) ? (((VALUE)((__int128)lx * (__int128)ly))<<1 | RUBY_FIXNUM_FLAG) : rb_int128t2big((__int128)lx * (__int128)ly));
}
static inline void
rb_fix_divmod_fix(VALUE a, VALUE b, VALUE *divp, VALUE *modp)
{
    long x = ((long)(((long)(a))>>(int)(1)));
    long y = ((long)(((long)(b))>>(int)(1)));
    long div, mod;
    if (x == (((long)(-0x7fffffffffffffffL - 1L))>>(int)(1)) && y == -1) {
 if (divp) *divp = rb_long2num_inline(-(((long)(-0x7fffffffffffffffL - 1L))>>(int)(1)));
 if (modp) *modp = (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG);
 return;
    }
    div = x / y;
    mod = x % y;
    if (y > 0 ? mod < 0 : mod > 0) {
 mod += y;
 div -= 1;
    }
    if (divp) *divp = (((VALUE)(div))<<1 | RUBY_FIXNUM_FLAG);
    if (modp) *modp = (((VALUE)(mod))<<1 | RUBY_FIXNUM_FLAG);
}
static inline VALUE
rb_fix_div_fix(VALUE x, VALUE y)
{
    VALUE div;
    rb_fix_divmod_fix(x, y, &div, ((void *)0));
    return div;
}
static inline VALUE
rb_fix_mod_fix(VALUE x, VALUE y)
{
    VALUE mod;
    rb_fix_divmod_fix(x, y, ((void *)0), &mod);
    return mod;
}
struct RBignum {
    struct RBasic basic;
    union {
        struct {
            size_t len;
            unsigned int *digits;
        } heap;
        unsigned int ary[(8*RVALUE_EMBED_LEN_MAX/4)];
    } as;
};
struct RRational {
    struct RBasic basic;
    VALUE num;
    VALUE den;
};
struct RFloat {
    struct RBasic basic;
    double float_value;
};
struct RComplex {
    struct RBasic basic;
    VALUE real;
    VALUE imag;
};
enum ruby_rhash_flags {
    RHASH_PASS_AS_KEYWORDS = ((VALUE)RUBY_FL_USER1),
    RHASH_PROC_DEFAULT = ((VALUE)RUBY_FL_USER2),
    RHASH_ST_TABLE_FLAG = ((VALUE)RUBY_FL_USER3),
    RHASH_AR_TABLE_SIZE_MASK = (((VALUE)RUBY_FL_USER4)|((VALUE)RUBY_FL_USER5)|((VALUE)RUBY_FL_USER6)|((VALUE)RUBY_FL_USER7)),
    RHASH_AR_TABLE_SIZE_SHIFT = (((VALUE)RUBY_FL_USHIFT)+4),
    RHASH_AR_TABLE_BOUND_MASK = (((VALUE)RUBY_FL_USER8)|((VALUE)RUBY_FL_USER9)|((VALUE)RUBY_FL_USER10)|((VALUE)RUBY_FL_USER11)),
    RHASH_AR_TABLE_BOUND_SHIFT = (((VALUE)RUBY_FL_USHIFT)+8),
    RHASH_TRANSIENT_FLAG = ((VALUE)RUBY_FL_USER12),
    RHASH_LEV_SHIFT = (((VALUE)RUBY_FL_USHIFT) + 13),
    RHASH_LEV_MAX = 127,
    RHASH_ENUM_END
};
void rb_hash_st_table_set(VALUE hash, st_table *st);
typedef unsigned char ar_hint_t;
struct RHash {
    struct RBasic basic;
    union {
        st_table *st;
        struct ar_table_struct *ar;
    } as;
    const VALUE ifnone;
    union {
        ar_hint_t ary[8];
        VALUE word;
    } ar_hint;
};
struct RMoved {
    VALUE flags;
    VALUE destination;
    VALUE next;
};
extern void ruby_init_setproctitle(int argc, char *argv[]);
enum {
    RSTRUCT_EMBED_LEN_MAX = RVALUE_EMBED_LEN_MAX,
    RSTRUCT_EMBED_LEN_MASK = (RUBY_FL_USER2|RUBY_FL_USER1),
    RSTRUCT_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+1),
    RSTRUCT_TRANSIENT_FLAG = ((VALUE)RUBY_FL_USER3),
    RSTRUCT_ENUM_END
};
struct RStruct {
    struct RBasic basic;
    union {
 struct {
     long len;
     const VALUE *ptr;
 } heap;
 const VALUE ary[RSTRUCT_EMBED_LEN_MAX];
    } as;
};
static inline long
rb_struct_len(VALUE st)
{
    return (((struct RBasic*)(st))->flags & RSTRUCT_EMBED_LEN_MASK) ?
 (long)((((struct RBasic*)(st))->flags >> RSTRUCT_EMBED_LEN_SHIFT) & (RSTRUCT_EMBED_LEN_MASK >> RSTRUCT_EMBED_LEN_SHIFT)) : ((struct RStruct*)(st))->as.heap.len;
}
static inline const VALUE *
rb_struct_const_ptr(VALUE st)
{
    return ((((struct RBasic*)(st))->flags & RSTRUCT_EMBED_LEN_MASK) ? ((struct RStruct*)(st))->as.ary : ((struct RStruct*)(st))->as.heap.ptr);
}
static inline const VALUE *
rb_struct_const_heap_ptr(VALUE st)
{
    return ((struct RStruct*)(st))->as.heap.ptr;
}
struct rb_deprecated_classext_struct {
    char conflict[sizeof(VALUE) * 3];
};
struct rb_subclass_entry;
typedef struct rb_subclass_entry rb_subclass_entry_t;
struct rb_subclass_entry {
    VALUE klass;
    rb_subclass_entry_t *next;
};
typedef unsigned long long rb_serial_t;
struct rb_classext_struct {
    struct st_table *iv_index_tbl;
    struct st_table *iv_tbl;
    struct rb_id_table *m_tbl;
    struct rb_id_table *const_tbl;
    struct rb_id_table *callable_m_tbl;
    rb_subclass_entry_t *subclasses;
    rb_subclass_entry_t **parent_subclasses;
    rb_subclass_entry_t **module_subclasses;
    const VALUE origin_;
    const VALUE refined_class;
    rb_alloc_func_t allocator;
    const VALUE includer;
};
typedef struct rb_classext_struct rb_classext_t;
struct RClass {
    struct RBasic basic;
    VALUE super;
    rb_classext_t *ptr;
    rb_serial_t class_serial;
};
void rb_class_subclass_add(VALUE super, VALUE klass);
void rb_class_remove_from_super_subclasses(VALUE);
int rb_singleton_class_internal_p(VALUE sklass);
static inline void
RCLASS_SET_ORIGIN(VALUE klass, VALUE origin)
{
    rb_obj_write((VALUE)(klass), (VALUE *)(&((((struct RClass*)(klass))->ptr)->origin_)), (VALUE)(origin), "./internal.h", 1091);
    if (klass != origin) ((!(((VALUE)(origin) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(origin) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(origin))->flags & RUBY_T_MASK) != RUBY_T_NODE) ? (void)(((struct RBasic*)(origin))->flags |= (((VALUE)RUBY_FL_USER5))) : (void)0);
}
static inline void
RCLASS_SET_INCLUDER(VALUE iclass, VALUE klass)
{
    rb_obj_write((VALUE)(iclass), (VALUE *)(&((((struct RClass*)(iclass))->ptr)->includer)), (VALUE)(klass), "./internal.h", 1098);
}
static inline VALUE
RCLASS_SUPER(VALUE klass)
{
    return ((struct RClass*)(klass))->super;
}
static inline VALUE
RCLASS_SET_SUPER(VALUE klass, VALUE super)
{
    if (super) {
 rb_class_remove_from_super_subclasses(klass);
 rb_class_subclass_add(super, klass);
    }
    rb_obj_write((VALUE)(klass), (VALUE *)(&((struct RClass*)(klass))->super), (VALUE)(super), "./internal.h", 1115);
    return super;
}
struct RIMemo {
    VALUE flags;
    VALUE v0;
    VALUE v1;
    VALUE v2;
    VALUE v3;
};
enum imemo_type {
    imemo_env = 0,
    imemo_cref = 1,
    imemo_svar = 2,
    imemo_throw_data = 3,
    imemo_ifunc = 4,
    imemo_memo = 5,
    imemo_ment = 6,
    imemo_iseq = 7,
    imemo_tmpbuf = 8,
    imemo_ast = 9,
    imemo_parser_strterm = 10
};
static inline enum imemo_type
imemo_type(VALUE imemo)
{
    return (((struct RBasic*)(imemo))->flags >> ((VALUE)RUBY_FL_USHIFT)) & 0x0f;
}
static inline int
imemo_type_p(VALUE imemo, enum imemo_type imemo_type)
{
    if ((__builtin_expect(!!(!(((VALUE)(imemo) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(imemo) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))), 1))) {
 const VALUE mask = (0x0f << ((VALUE)RUBY_FL_USHIFT)) | RUBY_T_MASK;
 const VALUE expected_type = (imemo_type << ((VALUE)RUBY_FL_USHIFT)) | RUBY_T_IMEMO;
 return expected_type == (((struct RBasic*)(imemo))->flags & mask);
    }
    else {
 return 0;
    }
}
VALUE rb_imemo_new(enum imemo_type type, VALUE v1, VALUE v2, VALUE v3, VALUE v0);
struct vm_svar {
    VALUE flags;
    const VALUE cref_or_me;
    const VALUE lastline;
    const VALUE backref;
    const VALUE others;
};
struct vm_throw_data {
    VALUE flags;
    VALUE reserved;
    const VALUE throw_obj;
    const struct rb_control_frame_struct *catch_frame;
    int throw_state;
};
struct vm_ifunc_argc {
    int min, max;
};
struct vm_ifunc {
    VALUE flags;
    VALUE reserved;
    rb_block_call_func_t func;
    const void *data;
    struct vm_ifunc_argc argc;
};
struct vm_ifunc *rb_vm_ifunc_new(rb_block_call_func_t func, const void *data, int min_argc, int max_argc);
static inline struct vm_ifunc *
rb_vm_ifunc_proc_new(rb_block_call_func_t func, const void *data)
{
    return rb_vm_ifunc_new(func, data, 0, (-1));
}
typedef struct rb_imemo_tmpbuf_struct {
    VALUE flags;
    VALUE reserved;
    VALUE *ptr;
    struct rb_imemo_tmpbuf_struct *next;
    size_t cnt;
} rb_imemo_tmpbuf_t;
rb_imemo_tmpbuf_t *rb_imemo_tmpbuf_parser_heap(void *buf, rb_imemo_tmpbuf_t *old_heap, size_t cnt);
static inline void *
rb_imemo_tmpbuf_set_ptr(VALUE v, void *ptr)
{
    return ((rb_imemo_tmpbuf_t *)v)->ptr = ptr;
}
static inline VALUE
rb_imemo_tmpbuf_auto_free_pointer_new_from_an_RString(VALUE str)
{
    const void *src;
    VALUE imemo;
    rb_imemo_tmpbuf_t *tmpbuf;
    void *dst;
    size_t len;
    rb_string_value(&(str));
    imemo = rb_imemo_new(imemo_tmpbuf, 0, 0, 0, 0);
    tmpbuf = (rb_imemo_tmpbuf_t *)imemo;
    len = (!(((struct RBasic*)(str))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(str))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(str))->as.heap.len);
    src = (!(((struct RBasic*)(str))->flags & RSTRING_NOEMBED) ? ((struct RString*)(str))->as.ary : ((struct RString*)(str))->as.heap.ptr);
    dst = ruby_xmalloc(len);
    ruby_nonempty_memcpy(dst, src, len);
    tmpbuf->ptr = dst;
    return imemo;
}
void rb_strterm_mark(VALUE obj);
struct MEMO {
    VALUE flags;
    VALUE reserved;
    const VALUE v1;
    const VALUE v2;
    union {
 long cnt;
 long state;
        const VALUE value;
        void (*func)(void);
    } u3;
};
enum {
    cmp_opt_Fixnum,
    cmp_opt_String,
    cmp_opt_Float,
    cmp_optimizable_count
};
struct cmp_opt_data {
    unsigned int opt_methods;
    unsigned int opt_inited;
};
struct rb_global_entry {
    struct rb_global_variable *var;
    ID id;
};
struct rb_global_entry *rb_global_entry(ID);
VALUE rb_gvar_get(struct rb_global_entry *);
VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
VALUE rb_gvar_defined(struct rb_global_entry *);
VALUE rb_ary_last(int, const VALUE *, VALUE);
void rb_ary_set_len(VALUE, long);
void rb_ary_delete_same(VALUE, VALUE);
VALUE rb_ary_tmp_new_fill(long capa);
VALUE rb_ary_at(VALUE, VALUE);
VALUE rb_ary_aref1(VALUE ary, VALUE i);
size_t rb_ary_memsize(VALUE);
VALUE rb_to_array_type(VALUE obj);
VALUE rb_check_to_array(VALUE ary);
VALUE rb_ary_tmp_new_from_values(VALUE, long, const VALUE *);
VALUE rb_ary_behead(VALUE, long);
static inline VALUE
rb_ary_entry_internal(VALUE ary, long offset)
{
    long len = rb_array_len(ary);
    const VALUE *ptr = rb_array_const_ptr_transient(ary);
    if (len == 0) return ((VALUE)RUBY_Qnil);
    if (offset < 0) {
        offset += len;
        if (offset < 0) return ((VALUE)RUBY_Qnil);
    }
    else if (len <= offset) {
        return ((VALUE)RUBY_Qnil);
    }
    return ptr[offset];
}
void rb_obj_info_dump(VALUE obj);
void rb_obj_info_dump_loc(VALUE obj, const char *file, int line, const char *func);
void ruby_debug_breakpoint(void);
extern const char ruby_digitmap[];
double rb_big_fdiv_double(VALUE x, VALUE y);
VALUE rb_big_uminus(VALUE x);
VALUE rb_big_hash(VALUE);
VALUE rb_big_odd_p(VALUE);
VALUE rb_big_even_p(VALUE);
size_t rb_big_size(VALUE);
VALUE rb_integer_float_cmp(VALUE x, VALUE y);
VALUE rb_integer_float_eq(VALUE x, VALUE y);
VALUE rb_str_convert_to_inum(VALUE str, int base, int badcheck, int raise_exception);
VALUE rb_big_comp(VALUE x);
VALUE rb_big_aref(VALUE x, VALUE y);
VALUE rb_big_abs(VALUE x);
VALUE rb_big_size_m(VALUE big);
VALUE rb_big_bit_length(VALUE big);
VALUE rb_big_remainder(VALUE x, VALUE y);
VALUE rb_big_gt(VALUE x, VALUE y);
VALUE rb_big_ge(VALUE x, VALUE y);
VALUE rb_big_lt(VALUE x, VALUE y);
VALUE rb_big_le(VALUE x, VALUE y);
VALUE rb_int_powm(int const argc, VALUE * const argv, VALUE const num);
VALUE rb_class_boot(VALUE);
VALUE rb_class_inherited(VALUE, VALUE);
VALUE rb_make_metaclass(VALUE, VALUE);
VALUE rb_include_class_new(VALUE, VALUE);
void rb_class_foreach_subclass(VALUE klass, void (*f)(VALUE, VALUE), VALUE);
void rb_class_detach_subclasses(VALUE);
void rb_class_detach_module_subclasses(VALUE);
void rb_class_remove_from_module_subclasses(VALUE);
VALUE rb_obj_methods(int argc, const VALUE *argv, VALUE obj);
VALUE rb_obj_protected_methods(int argc, const VALUE *argv, VALUE obj);
VALUE rb_obj_private_methods(int argc, const VALUE *argv, VALUE obj);
VALUE rb_obj_public_methods(int argc, const VALUE *argv, VALUE obj);
VALUE rb_special_singleton_class(VALUE);
VALUE rb_singleton_class_clone_and_attach(VALUE obj, VALUE attach);
VALUE rb_singleton_class_get(VALUE obj);
void Init_class_hierarchy(void);
int rb_class_has_methods(VALUE c);
void rb_undef_methods_from(VALUE klass, VALUE super);
VALUE rb_invcmp(VALUE, VALUE);
struct rb_block;
struct rb_iseq_struct;
int rb_dvar_defined(ID, const struct rb_iseq_struct *);
int rb_local_defined(ID, const struct rb_iseq_struct *);
const char * rb_insns_name(int i);
VALUE rb_insns_name_array(void);
int rb_vm_insn_addr2insn(const void *);
VALUE rb_dbl_complex_new_polar_pi(double abs, double ang);
struct rb_thread_struct;
struct rb_fiber_struct;
VALUE rb_obj_is_fiber(VALUE);
void rb_fiber_reset_root_local_storage(struct rb_thread_struct *);
void ruby_register_rollback_func_for_ensure(VALUE (*ensure_func)(VALUE), VALUE (*rollback_func)(VALUE));
void rb_fiber_init_mjit_cont(struct rb_fiber_struct *fiber);
void ruby_debug_printf(const char*, ...) __attribute__((format(printf, 1, 2)));
VALUE rb_dir_getwd_ospath(void);
void Init_enc(void);
void Init_ext(void);
ID rb_id_encoding(void);
int rb_encdb_replicate(const char *alias, const char *orig);
int rb_encdb_alias(const char *alias, const char *orig);
int rb_encdb_dummy(const char *name);
void rb_encdb_declare(const char *name);
void rb_enc_set_base(const char *name, const char *orig);
int rb_enc_set_dummy(int index);
void rb_encdb_set_unicode(int index);
__attribute__ ((__pure__)) int rb_data_is_encoding(VALUE obj);
extern VALUE rb_cArithSeq;
VALUE rb_f_send(int argc, VALUE *argv, VALUE recv);
VALUE rb_nmin_run(VALUE obj, VALUE num, int by, int rev, int ary);
extern VALUE rb_eEAGAIN;
extern VALUE rb_eEWOULDBLOCK;
extern VALUE rb_eEINPROGRESS;
void rb_report_bug_valist(VALUE file, int line, const char *fmt, va_list args);
__attribute__ ((__noreturn__)) void rb_async_bug_errno(const char *,int);
const char *rb_builtin_type_name(int t);
const char *rb_builtin_class_name(VALUE x);
void rb_warn_deprecated(const char *fmt, const char *suggest, ...) __attribute__((format(printf, 1, 3)));
typedef enum {
    RB_WARN_CATEGORY_NONE,
    RB_WARN_CATEGORY_DEPRECATED,
    RB_WARN_CATEGORY_EXPERIMENTAL,
    RB_WARN_CATEGORY_ALL_BITS = 0x6,
} rb_warning_category_t;
rb_warning_category_t rb_warning_category_from_name(VALUE category);
_Bool rb_warning_category_enabled_p(rb_warning_category_t category);
VALUE rb_name_err_new(VALUE mesg, VALUE recv, VALUE method);
VALUE rb_nomethod_err_new(VALUE mesg, VALUE recv, VALUE method, VALUE args, int priv);
VALUE rb_key_err_new(VALUE mesg, VALUE recv, VALUE name);
VALUE rb_warning_string(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
__attribute__ ((__noreturn__)) void rb_vraise(VALUE, const char *, va_list);
VALUE rb_refinement_module_get_refined_class(VALUE module);
extern ID ruby_static_id_signo, ruby_static_id_status;
void rb_class_modify_check(VALUE);
__attribute__ ((__noreturn__)) VALUE rb_f_raise(int argc, VALUE *argv);
VALUE rb_get_backtrace(VALUE info);
void rb_call_end_proc(VALUE data);
void rb_mark_end_proc(void);
extern const char ruby_null_device[];
VALUE rb_home_dir_of(VALUE user, VALUE result);
VALUE rb_default_home_dir(VALUE result);
VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
void rb_file_const(const char*, VALUE);
int rb_file_load_ok(const char *);
VALUE rb_file_expand_path_fast(VALUE, VALUE);
VALUE rb_file_expand_path_internal(VALUE, VALUE, int, int, VALUE);
VALUE rb_get_path_check_to_string(VALUE);
VALUE rb_get_path_check_convert(VALUE);
void Init_File(void);
int ruby_is_fd_loadable(int fd);
__attribute__ ((__noreturn__)) void rb_sys_fail_path_in(const char *func_name, VALUE path);
__attribute__ ((__noreturn__)) void rb_syserr_fail_path_in(const char *func_name, int err, VALUE path);
extern VALUE *ruby_initial_gc_stress_ptr;
extern int ruby_disable_gc;
struct rb_objspace;
void Init_heap(void);
void *ruby_mimmalloc(size_t size) __attribute__((__malloc__));
void ruby_mimfree(void *ptr);
void rb_objspace_set_event_hook(const rb_event_flag_t event);
VALUE rb_objspace_gc_enable(struct rb_objspace *);
VALUE rb_objspace_gc_disable(struct rb_objspace *);
void rb_gc_writebarrier_remember(VALUE obj);
void ruby_gc_set_params(void);
void rb_copy_wb_protected_attribute(VALUE dest, VALUE obj);
__attribute__((__alloc_align__(1)))
void *rb_aligned_malloc(size_t, size_t) __attribute__((__malloc__)) __attribute__ ((alloc_size (2)));
size_t rb_size_mul_or_raise(size_t, size_t, VALUE);
size_t rb_size_mul_add_or_raise(size_t, size_t, size_t, VALUE);
void *rb_xmalloc_mul_add(size_t, size_t, size_t) __attribute__((__malloc__));
void *rb_xrealloc_mul_add(const void *, size_t, size_t, size_t);
void *rb_xmalloc_mul_add_mul(size_t, size_t, size_t, size_t) __attribute__((__malloc__));
void *rb_xcalloc_mul_add_mul(size_t, size_t, size_t, size_t) __attribute__((__malloc__));
struct st_table *rb_hash_tbl_raw(VALUE hash);
VALUE rb_hash_new_with_size(st_index_t size);
VALUE rb_hash_has_key(VALUE hash, VALUE key);
VALUE rb_hash_default_value(VALUE hash, VALUE key);
VALUE rb_hash_set_default_proc(VALUE hash, VALUE proc);
long rb_dbl_long_hash(double d);
st_table *rb_init_identtable(void);
VALUE rb_hash_compare_by_id_p(VALUE hash);
VALUE rb_to_hash_type(VALUE obj);
VALUE rb_hash_key_str(VALUE);
VALUE rb_hash_keys(VALUE hash);
VALUE rb_hash_values(VALUE hash);
VALUE rb_hash_rehash(VALUE hash);
VALUE rb_hash_resurrect(VALUE hash);
int rb_hash_add_new_element(VALUE hash, VALUE key, VALUE val);
VALUE rb_hash_set_pair(VALUE hash, VALUE pair);
int rb_hash_stlike_lookup(VALUE hash, st_data_t key, st_data_t *pval);
int rb_hash_stlike_delete(VALUE hash, st_data_t *pkey, st_data_t *pval);


int rb_hash_stlike_foreach(VALUE hash, st_foreach_callback_func *func, st_data_t arg);


int rb_hash_stlike_foreach_with_replace(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg);
int rb_hash_stlike_update(VALUE hash, st_data_t key, st_update_callback_func func, st_data_t arg);
void rb_call_inits(void);
void ruby_set_inplace_mode(const char *);
void rb_stdio_set_default_encoding(void);
VALUE rb_io_flush_raw(VALUE, int);
int rb_stderr_tty_p(void);
void rb_io_fptr_finalize_internal(void *ptr);
VALUE rb_get_expanded_load_path(void);
int rb_require_internal(VALUE fname);
__attribute__ ((__noreturn__)) void rb_load_fail(VALUE, const char*);
extern const char ruby_exec_prefix[];
extern const char ruby_initial_load_paths[];
int Init_enc_set_filesystem_encoding(void);
VALUE rb_math_atan2(VALUE, VALUE);
VALUE rb_math_cos(VALUE);
VALUE rb_math_cosh(VALUE);
VALUE rb_math_exp(VALUE);
VALUE rb_math_hypot(VALUE, VALUE);
VALUE rb_math_log(int argc, const VALUE *argv);
VALUE rb_math_sin(VALUE);
VALUE rb_math_sinh(VALUE);
extern _Bool mjit_enabled;
VALUE mjit_pause(_Bool wait_p);
VALUE mjit_resume(void);
void mjit_finish(_Bool close_handle_p);
void Init_newline(void);
enum ruby_num_rounding_mode {
    RUBY_NUM_ROUND_HALF_UP,
    RUBY_NUM_ROUND_HALF_EVEN,
    RUBY_NUM_ROUND_HALF_DOWN,
    RUBY_NUM_ROUND_DEFAULT = RUBY_NUM_ROUND_HALF_UP
};
int rb_num_to_uint(VALUE val, unsigned int *ret);
VALUE ruby_num_interval_step_size(VALUE from, VALUE to, VALUE step, int excl);
double ruby_float_step_size(double beg, double end, double unit, int excl);
int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl, int allow_endless);
double ruby_float_mod(double x, double y);
int rb_num_negative_p(VALUE);
VALUE rb_int_succ(VALUE num);
VALUE rb_int_uminus(VALUE num);
VALUE rb_float_uminus(VALUE num);
VALUE rb_int_plus(VALUE x, VALUE y);
VALUE rb_float_plus(VALUE x, VALUE y);
VALUE rb_int_minus(VALUE x, VALUE y);
VALUE rb_float_minus(VALUE x, VALUE y);
VALUE rb_int_mul(VALUE x, VALUE y);
VALUE rb_float_mul(VALUE x, VALUE y);
VALUE rb_float_div(VALUE x, VALUE y);
VALUE rb_int_idiv(VALUE x, VALUE y);
VALUE rb_int_modulo(VALUE x, VALUE y);
VALUE rb_int2str(VALUE num, int base);
VALUE rb_fix_plus(VALUE x, VALUE y);
VALUE rb_fix_aref(VALUE fix, VALUE idx);
VALUE rb_int_gt(VALUE x, VALUE y);
int rb_float_cmp(VALUE x, VALUE y);
VALUE rb_float_gt(VALUE x, VALUE y);
VALUE rb_int_ge(VALUE x, VALUE y);
enum ruby_num_rounding_mode rb_num_get_rounding_option(VALUE opts);
double rb_int_fdiv_double(VALUE x, VALUE y);
VALUE rb_int_pow(VALUE x, VALUE y);
VALUE rb_float_pow(VALUE x, VALUE y);
VALUE rb_int_cmp(VALUE x, VALUE y);
VALUE rb_int_equal(VALUE x, VALUE y);
VALUE rb_int_divmod(VALUE x, VALUE y);
VALUE rb_int_and(VALUE x, VALUE y);
VALUE rb_int_lshift(VALUE x, VALUE y);
VALUE rb_int_div(VALUE x, VALUE y);
VALUE rb_int_abs(VALUE num);
VALUE rb_int_odd_p(VALUE num);
int rb_int_positive_p(VALUE num);
int rb_int_negative_p(VALUE num);
VALUE rb_num_pow(VALUE x, VALUE y);
VALUE rb_float_ceil(VALUE num, int ndigits);
VALUE rb_float_floor(VALUE x, int ndigits);
static inline VALUE
rb_num_compare_with_zero(VALUE num, ID mid)
{
    VALUE zero = (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG);
    VALUE r = rb_check_funcall(num, mid, 1, &zero);
    if (r == ((VALUE)RUBY_Qundef)) {
 rb_cmperr(num, zero);
    }
    return r;
}
static inline int
rb_num_positive_int_p(VALUE num)
{
    const ID mid = '>';
    if ((((int)(long)(num))&RUBY_FIXNUM_FLAG)) {
 if (rb_method_basic_definition_p(rb_cInteger, mid))
     return ((long)(num) > (long)(((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG));
    }
    else if (( ((RUBY_T_BIGNUM) == RUBY_T_FIXNUM) ? (((int)(long)(num))&RUBY_FIXNUM_FLAG) : ((RUBY_T_BIGNUM) == RUBY_T_TRUE) ? ((num) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_BIGNUM) == RUBY_T_FALSE) ? ((num) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_BIGNUM) == RUBY_T_NIL) ? ((num) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_BIGNUM) == RUBY_T_UNDEF) ? ((num) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_BIGNUM) == RUBY_T_SYMBOL) ? ((((VALUE)(num)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_BIGNUM) == RUBY_T_FLOAT) ? ( ((((int)(long)(num))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == (RUBY_T_BIGNUM)))) {
 if (rb_method_basic_definition_p(rb_cInteger, mid))
     return ((((struct RBasic*)(num))->flags & ((VALUE)((VALUE)RUBY_FL_USER1))) != 0);
    }
    return !(((VALUE)(rb_num_compare_with_zero(num, mid)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0);
}
static inline int
rb_num_negative_int_p(VALUE num)
{
    const ID mid = '<';
    if ((((int)(long)(num))&RUBY_FIXNUM_FLAG)) {
 if (rb_method_basic_definition_p(rb_cInteger, mid))
     return ((long)(num) < 0);
    }
    else if (( ((RUBY_T_BIGNUM) == RUBY_T_FIXNUM) ? (((int)(long)(num))&RUBY_FIXNUM_FLAG) : ((RUBY_T_BIGNUM) == RUBY_T_TRUE) ? ((num) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_BIGNUM) == RUBY_T_FALSE) ? ((num) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_BIGNUM) == RUBY_T_NIL) ? ((num) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_BIGNUM) == RUBY_T_UNDEF) ? ((num) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_BIGNUM) == RUBY_T_SYMBOL) ? ((((VALUE)(num)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_BIGNUM) == RUBY_T_FLOAT) ? ( ((((int)(long)(num))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(num) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(num) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(num))->flags & RUBY_T_MASK) == (RUBY_T_BIGNUM)))) {
 if (rb_method_basic_definition_p(rb_cInteger, mid))
     return (!((((struct RBasic*)(num))->flags & ((VALUE)((VALUE)RUBY_FL_USER1))) != 0));
    }
    return !(((VALUE)(rb_num_compare_with_zero(num, mid)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0);
}
VALUE rb_float_abs(VALUE flt);
VALUE rb_float_equal(VALUE x, VALUE y);
VALUE rb_float_eql(VALUE x, VALUE y);
VALUE rb_flo_div_flo(VALUE x, VALUE y);
static inline double
rb_float_flonum_value(VALUE v)
{
    if (v != (VALUE)0x8000000000000002) {
 union {
     double d;
     VALUE v;
 } t;
 VALUE b63 = (v >> 63);
 t.v = ((((2 - b63) | (v & ~(VALUE)0x03)) >> (3)) | (((2 - b63) | (v & ~(VALUE)0x03)) << ((sizeof((2 - b63) | (v & ~(VALUE)0x03)) * 8) - 3)));
 return t.d;
    }
    return 0.0;
}
static inline double
rb_float_noflonum_value(VALUE v)
{
    return ((struct RFloat *)v)->float_value;
}
static inline double
rb_float_value_inline(VALUE v)
{
    if (((((int)(long)(v))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG)) {
 return rb_float_flonum_value(v);
    }
    return rb_float_noflonum_value(v);
}
static inline VALUE
rb_float_new_inline(double d)
{
    union {
 double d;
 VALUE v;
    } t;
    int bits;
    t.d = d;
    bits = (int)((VALUE)(t.v >> 60) & 0x7);
    if (t.v != 0x3000000000000000 &&
 !((bits-3) & ~0x01)) {
 return ((((t.v) << (3)) | ((t.v) >> ((sizeof(t.v) * 8) - 3))) & ~(VALUE)0x01) | 0x02;
    }
    else if (t.v == (VALUE)0) {
 return 0x8000000000000002;
    }
    return rb_float_new_in_heap(d);
}
void rb_obj_copy_ivar(VALUE dest, VALUE obj);
__attribute__ ((__const__)) VALUE rb_obj_equal(VALUE obj1, VALUE obj2);
__attribute__ ((__const__)) VALUE rb_obj_not(VALUE obj);
VALUE rb_class_search_ancestor(VALUE klass, VALUE super);
__attribute__ ((__noreturn__)) void rb_undefined_alloc(VALUE klass);
double rb_num_to_dbl(VALUE val);
VALUE rb_obj_dig(int argc, VALUE *argv, VALUE self, VALUE notfound);
VALUE rb_immutable_obj_clone(int, VALUE *, VALUE);
VALUE rb_obj_not_equal(VALUE obj1, VALUE obj2);
VALUE rb_convert_type_with_id(VALUE,int,const char*,ID);
VALUE rb_check_convert_type_with_id(VALUE,int,const char*,ID);
int rb_bool_expected(VALUE, const char *);
struct RBasicRaw {
    VALUE flags;
    VALUE klass;
};
VALUE rb_parser_set_yydebug(VALUE, VALUE);


VALUE rb_parser_set_context(VALUE, const struct rb_iseq_struct *, int);


void *rb_parser_load_file(VALUE parser, VALUE name);
int rb_is_const_name(VALUE name);
int rb_is_class_name(VALUE name);
int rb_is_instance_name(VALUE name);
int rb_is_local_name(VALUE name);
__attribute__ ((__pure__)) int rb_is_const_sym(VALUE sym);
__attribute__ ((__pure__)) int rb_is_attrset_sym(VALUE sym);
ID rb_make_internal_id(void);
void rb_gc_free_dsymbol(VALUE);
VALUE rb_proc_location(VALUE self);
st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
int rb_block_arity(void);
int rb_block_min_max_arity(int *max);
VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
struct waitpid_state;
struct rb_execarg {
    union {
        struct {
            VALUE shell_script;
        } sh;
        struct {
            VALUE command_name;
            VALUE command_abspath;
            VALUE argv_str;
            VALUE argv_buf;
        } cmd;
    } invoke;
    VALUE redirect_fds;
    VALUE envp_str;
    VALUE envp_buf;
    VALUE dup2_tmpbuf;
    unsigned use_shell : 1;
    unsigned pgroup_given : 1;
    unsigned umask_given : 1;
    unsigned unsetenv_others_given : 1;
    unsigned unsetenv_others_do : 1;
    unsigned close_others_given : 1;
    unsigned close_others_do : 1;
    unsigned chdir_given : 1;
    unsigned new_pgroup_given : 1;
    unsigned new_pgroup_flag : 1;
    unsigned uid_given : 1;
    unsigned gid_given : 1;
    unsigned exception : 1;
    unsigned exception_given : 1;
    struct waitpid_state *waitpid_state;
    pid_t pgroup_pgid;
    VALUE rlimit_limits;
    mode_t umask_mask;
    uid_t uid;
    gid_t gid;
    int close_others_maxhint;
    VALUE fd_dup2;
    VALUE fd_close;
    VALUE fd_open;
    VALUE fd_dup2_child;
    VALUE env_modification;
    VALUE path_env;
    VALUE chdir_dir;
};
static inline size_t
ARGVSTR2ARGC(VALUE argv_str)
{
    size_t i = 0;
    char *const *p = ((char **)((void *)(((const struct rb_imemo_tmpbuf_struct *)(argv_str))->ptr)) + 1);
    while (p[i++])
        ;
    return i - 1;
}
VALUE rb_getlogin(void);
VALUE rb_getpwdirnam_for_login(VALUE login);
VALUE rb_getpwdiruid(void);
pid_t rb_fork_ruby(int *status);
void rb_last_status_clear(void);
VALUE rb_rational_canonicalize(VALUE x);
VALUE rb_rational_uminus(VALUE self);
VALUE rb_rational_plus(VALUE self, VALUE other);
VALUE rb_rational_minus(VALUE self, VALUE other);
VALUE rb_rational_mul(VALUE self, VALUE other);
VALUE rb_rational_div(VALUE self, VALUE other);
VALUE rb_lcm(VALUE x, VALUE y);
VALUE rb_rational_reciprocal(VALUE x);
VALUE rb_cstr_to_rat(const char *, int);
VALUE rb_rational_abs(VALUE self);
VALUE rb_rational_cmp(VALUE self, VALUE other);
VALUE rb_rational_pow(VALUE self, VALUE other);
VALUE rb_rational_floor(VALUE self, int ndigits);
VALUE rb_numeric_quo(VALUE x, VALUE y);
VALUE rb_float_numerator(VALUE x);
VALUE rb_float_denominator(VALUE x);
VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
VALUE rb_reg_check_preprocess(VALUE);
long rb_reg_search0(VALUE, VALUE, long, int, int);
VALUE rb_reg_match_p(VALUE re, VALUE str, long pos);
_Bool rb_reg_start_with_p(VALUE re, VALUE str);
void rb_backref_set_string(VALUE string, long pos, long len);
void rb_match_unbusy(VALUE);
int rb_match_count(VALUE match);
int rb_match_nth_defined(int nth, VALUE match);
VALUE rb_reg_new_ary(VALUE ary, int options);
extern int ruby_enable_coredump;
int rb_get_next_signal(void);
VALUE rb_fstring(VALUE);
VALUE rb_fstring_new(const char *ptr, long len);
VALUE rb_fstring_cstr(const char *str);
int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
int rb_str_symname_p(VALUE);
VALUE rb_str_quote_unprintable(VALUE);
VALUE rb_id_quote_unprintable(ID);
char *rb_str_fill_terminator(VALUE str, const int termlen);
void rb_str_change_terminator_length(VALUE str, const int oldtermlen, const int termlen);
VALUE rb_str_locktmp_ensure(VALUE str, VALUE (*func)(VALUE), VALUE arg);
VALUE rb_str_chomp_string(VALUE str, VALUE chomp);
size_t rb_str_memsize(VALUE);
VALUE rb_sym_proc_call(ID mid, int argc, const VALUE *argv, int kw_splat, VALUE passed_proc);
VALUE rb_sym_to_proc(VALUE sym);
char *rb_str_to_cstr(VALUE str);
VALUE rb_str_eql(VALUE str1, VALUE str2);
VALUE rb_obj_as_string_result(VALUE str, VALUE obj);
const char *ruby_escaped_char(int c);
VALUE rb_str_opt_plus(VALUE, VALUE);
static inline VALUE
rb_str_eql_internal(const VALUE str1, const VALUE str2)
{
    const long len = (!(((struct RBasic*)(str1))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(str1))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(str1))->as.heap.len);
    const char *ptr1, *ptr2;
    if (len != (!(((struct RBasic*)(str2))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(str2))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(str2))->as.heap.len)) return ((VALUE)RUBY_Qfalse);
    if (!rb_str_comparable(str1, str2)) return ((VALUE)RUBY_Qfalse);
    if ((ptr1 = (!(((struct RBasic*)(str1))->flags & RSTRING_NOEMBED) ? ((struct RString*)(str1))->as.ary : ((struct RString*)(str1))->as.heap.ptr)) == (ptr2 = (!(((struct RBasic*)(str2))->flags & RSTRING_NOEMBED) ? ((struct RString*)(str2))->as.ary : ((struct RString*)(str2))->as.heap.ptr)))
        return ((VALUE)RUBY_Qtrue);
    if (memcmp(ptr1, ptr2, len) == 0)
        return ((VALUE)RUBY_Qtrue);
    return ((VALUE)RUBY_Qfalse);
}
VALUE rb_sym_intern_ascii(const char *ptr, long len);
VALUE rb_sym_intern_ascii_cstr(const char *ptr);
VALUE rb_to_symbol_type(VALUE obj);
VALUE rb_struct_init_copy(VALUE copy, VALUE s);
VALUE rb_struct_lookup(VALUE s, VALUE idx);
VALUE rb_struct_s_keyword_init(VALUE klass);
struct timeval rb_time_timeval(VALUE);
VALUE rb_obj_is_mutex(VALUE obj);
VALUE rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg);
void rb_thread_execute_interrupts(VALUE th);
VALUE rb_get_coverages(void);
int rb_get_coverage_mode(void);
VALUE rb_default_coverage(int);
VALUE rb_thread_shield_new(void);
VALUE rb_thread_shield_wait(VALUE self);
VALUE rb_thread_shield_release(VALUE self);
VALUE rb_thread_shield_destroy(VALUE self);
int rb_thread_to_be_killed(VALUE thread);
void rb_mutex_allow_trap(VALUE self, int val);
VALUE rb_uninterruptible(VALUE (*b_proc)(VALUE), VALUE data);
VALUE rb_mutex_owned_p(VALUE self);
extern VALUE rb_cEncodingConverter;
char *ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve);
char *ruby_hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, char **rve);
void rb_gc_mark_global_tbl(void);
size_t rb_generic_ivar_memsize(VALUE);
VALUE rb_search_class_path(VALUE);
VALUE rb_attr_delete(VALUE, ID);
VALUE rb_ivar_lookup(VALUE obj, ID id, VALUE undef);
void rb_autoload_str(VALUE mod, ID id, VALUE file);
VALUE rb_autoload_at_p(VALUE, ID, int);
void rb_deprecate_constant(VALUE mod, const char *name);
__attribute__ ((__noreturn__)) VALUE rb_mod_const_missing(VALUE,VALUE);
rb_gvar_getter_t *rb_gvar_getter_function_of(const struct rb_global_entry *);
rb_gvar_setter_t *rb_gvar_setter_function_of(const struct rb_global_entry *);
_Bool rb_gvar_is_traced(const struct rb_global_entry *);
void rb_gvar_readonly_setter(VALUE v, ID id, VALUE *_);
rb_serial_t rb_next_class_serial(void);
VALUE rb_obj_is_thread(VALUE obj);
void rb_vm_mark(void *ptr);
void Init_BareVM(void);
void Init_vm_objects(void);
__attribute__ ((__pure__)) VALUE rb_vm_top_self(void);
void rb_vm_inc_const_missing_count(void);
const void **rb_vm_get_insns_address_table(void);
VALUE rb_source_location(int *pline);
const char *rb_source_location_cstr(int *pline);
static void rb_vm_pop_cfunc_frame(void);
int rb_vm_add_root_module(ID id, VALUE module);
void rb_vm_check_redefinition_by_prepend(VALUE klass);
int rb_vm_check_optimizable_mid(VALUE mid);
VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);
static VALUE ruby_vm_special_exception_copy(VALUE);
__attribute__ ((__pure__)) st_table *rb_vm_fstring_table(void);
void rb_print_backtrace(void);
void Init_vm_eval(void);
VALUE rb_adjust_argv_kw_splat(int *, const VALUE **, int *);
VALUE rb_current_realfilepath(void);
VALUE rb_check_block_call(VALUE, ID, int, const VALUE *, rb_block_call_func_t, VALUE);
typedef void rb_check_funcall_hook(int, VALUE, ID, int, const VALUE *, VALUE);
VALUE rb_check_funcall_with_hook(VALUE recv, ID mid, int argc, const VALUE *argv,
     rb_check_funcall_hook *hook, VALUE arg);
VALUE rb_check_funcall_with_hook_kw(VALUE recv, ID mid, int argc, const VALUE *argv,
                                 rb_check_funcall_hook *hook, VALUE arg, int kw_splat);
const char *rb_type_str(enum ruby_value_type type);
VALUE rb_check_funcall_default(VALUE, ID, int, const VALUE *, VALUE);
VALUE rb_yield_1(VALUE val);
VALUE rb_yield_force_blockarg(VALUE values);
VALUE rb_lambda_call(VALUE obj, ID mid, int argc, const VALUE *argv,
       rb_block_call_func_t bl_proc, int min_argc, int max_argc,
       VALUE data2);
VALUE rb_equal_opt(VALUE obj1, VALUE obj2);static inline 
VALUE rb_eql_opt(VALUE obj1, VALUE obj2);static inline 
void Init_vm_stack_canary(void);
void Init_eval_method(void);
enum method_missing_reason {
    MISSING_NOENTRY = 0x00,
    MISSING_PRIVATE = 0x01,
    MISSING_PROTECTED = 0x02,
    MISSING_FCALL = 0x04,
    MISSING_VCALL = 0x08,
    MISSING_SUPER = 0x10,
    MISSING_MISSING = 0x20,
    MISSING_NONE = 0x40
};
struct rb_callable_method_entry_struct;
struct rb_method_definition_struct;
struct rb_execution_context_struct;
struct rb_control_frame_struct;
struct rb_calling_info;
struct rb_call_data;
struct rb_call_cache {
    rb_serial_t method_state;
    rb_serial_t class_serial[
        (64
         - sizeof(rb_serial_t)
         - sizeof(struct rb_callable_method_entry_struct *)
         - sizeof(uintptr_t)
         - sizeof(enum method_missing_reason)
         - sizeof(VALUE (*)(
               struct rb_execution_context_struct *e,
               struct rb_control_frame_struct *,
               struct rb_calling_info *,
               const struct rb_call_data *)))
        / sizeof(rb_serial_t)
    ];
    const struct rb_callable_method_entry_struct *me;
    uintptr_t method_serial;
    VALUE (*call)(struct rb_execution_context_struct *ec,
                  struct rb_control_frame_struct *cfp,
                  struct rb_calling_info *calling,
                  struct rb_call_data *cd);
    union {
        unsigned int index;
        enum method_missing_reason method_missing_reason;
    } aux;
};
_Static_assert(sizeof(struct rb_call_cache) <= 64, "cachelined" ": " "sizeof(struct rb_call_cache) <= CACHELINE");
struct rb_call_info {
    ID mid;
    unsigned int flag;
    int orig_argc;
};
struct rb_call_data {
    struct rb_call_cache cc;
    struct rb_call_info ci;
};
__attribute__ ((__visibility__("default"))) extern
__attribute__ ((__nonnull__(1))) VALUE rb_funcallv_with_cc(struct rb_call_data*, VALUE, ID, int, const VALUE*);
__attribute__ ((__visibility__("default"))) extern
__attribute__ ((__nonnull__(1))) _Bool rb_method_basic_definition_p_with_cc(struct rb_call_data *, VALUE, ID);
void Init_vm_backtrace(void);
VALUE rb_vm_thread_backtrace(int argc, const VALUE *argv, VALUE thval);
VALUE rb_vm_thread_backtrace_locations(int argc, const VALUE *argv, VALUE thval);
VALUE rb_make_backtrace(void);
void rb_backtrace_print_as_bugreport(void);
int rb_backtrace_p(VALUE obj);
VALUE rb_backtrace_to_str_ary(VALUE obj);
VALUE rb_backtrace_to_location_ary(VALUE obj);
void rb_backtrace_each(VALUE (*iter)(VALUE recv, VALUE str), VALUE output);
VALUE rb_getlogin(void);
VALUE rb_getpwdirnam_for_login(VALUE login);
VALUE rb_getpwdiruid(void);


const char *rb_objspace_data_type_name(VALUE obj);
VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd);
void rb_ary_detransient(VALUE a);
VALUE *rb_ary_ptr_use_start(VALUE ary);
void rb_ary_ptr_use_end(VALUE ary);
VALUE rb_big_mul_normal(VALUE x, VALUE y);
VALUE rb_big_mul_balance(VALUE x, VALUE y);
VALUE rb_big_mul_karatsuba(VALUE x, VALUE y);
VALUE rb_big_mul_toom3(VALUE x, VALUE y);
VALUE rb_big_sq_fast(VALUE x);
VALUE rb_big_divrem_normal(VALUE x, VALUE y);
VALUE rb_big2str_poweroftwo(VALUE x, int base);
VALUE rb_big2str_generic(VALUE x, int base);
VALUE rb_str2big_poweroftwo(VALUE arg, int base, int badcheck);
VALUE rb_str2big_normal(VALUE arg, int base, int badcheck);
VALUE rb_str2big_karatsuba(VALUE arg, int base, int badcheck);
VALUE rb_big_mul_gmp(VALUE x, VALUE y);
VALUE rb_big_divrem_gmp(VALUE x, VALUE y);
VALUE rb_big2str_gmp(VALUE x, int base);
VALUE rb_str2big_gmp(VALUE arg, int base, int badcheck);
enum rb_int_parse_flags {
    RB_INT_PARSE_SIGN = 0x01,
    RB_INT_PARSE_UNDERSCORE = 0x02,
    RB_INT_PARSE_PREFIX = 0x04,
    RB_INT_PARSE_ALL = 0x07,
    RB_INT_PARSE_DEFAULT = 0x07
};
VALUE rb_int_parse_cstr(const char *str, ssize_t len, char **endp, size_t *ndigits, int base, int flags);
VALUE rb_arith_seq_new(VALUE obj, VALUE meth, int argc, VALUE const *argv,
                       rb_enumerator_size_func *size_fn,
                       VALUE beg, VALUE end, VALUE step, int excl);
int rb_bug_reporter_add(void (*func)(FILE *, void *), void *data);
__attribute__ ((__noreturn__)) void rb_unexpected_type(VALUE,int);
static inline int
rb_typeddata_is_instance_of_inline(VALUE obj, const rb_data_type_t *data_type)
{
    return ( ((RUBY_T_DATA) == RUBY_T_FIXNUM) ? (((int)(long)(obj))&RUBY_FIXNUM_FLAG) : ((RUBY_T_DATA) == RUBY_T_TRUE) ? ((obj) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_DATA) == RUBY_T_FALSE) ? ((obj) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_DATA) == RUBY_T_NIL) ? ((obj) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_DATA) == RUBY_T_UNDEF) ? ((obj) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_DATA) == RUBY_T_SYMBOL) ? ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_DATA) == RUBY_T_FLOAT) ? ( ((((int)(long)(obj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_DATA))) && (((struct RTypedData*)(obj))->typed_flag == 1) && ((((struct RTypedData*)(obj))->type) == data_type);
}
VALUE rb_hash_delete_entry(VALUE hash, VALUE key);
VALUE rb_ident_hash_new(void);
void rb_maygvl_fd_fix_cloexec(int fd);
int rb_gc_for_fd(int err);
void rb_write_error_str(VALUE mesg);
VALUE rb_int_positive_pow(long x, unsigned long y);
int rb_opts_exception_p(VALUE opts, int default_value);
int rb_exec_async_signal_safe(const struct rb_execarg *e, char *errmsg, size_t errmsg_buflen);
pid_t rb_fork_async_signal_safe(int *status, int (*chfunc)(void*, char *, size_t), void *charg, VALUE fds, char *errmsg, size_t errmsg_buflen);
VALUE rb_execarg_new(int argc, const VALUE *argv, int accept_shell, int allow_exc_opt);
struct rb_execarg *rb_execarg_get(VALUE execarg_obj);
int rb_execarg_addopt(VALUE execarg_obj, VALUE key, VALUE val);
void rb_execarg_parent_start(VALUE execarg_obj);
void rb_execarg_parent_end(VALUE execarg_obj);
int rb_execarg_run_options(const struct rb_execarg *e, struct rb_execarg *s, char* errmsg, size_t errmsg_buflen);
VALUE rb_execarg_extract_options(VALUE execarg_obj, VALUE opthash);
void rb_execarg_setenv(VALUE execarg_obj, VALUE env);
VALUE rb_gcd(VALUE x, VALUE y);
VALUE rb_gcd_normal(VALUE self, VALUE other);
VALUE rb_gcd_gmp(VALUE x, VALUE y);
int rb_grantpt(int fd);
VALUE rb_str_tmp_frozen_acquire(VALUE str);
void rb_str_tmp_frozen_release(VALUE str, VALUE tmp);
VALUE rb_str_upto_each(VALUE, VALUE, int, int (*each)(VALUE, VALUE), VALUE);
VALUE rb_str_upto_endless_each(VALUE, int (*each)(VALUE, VALUE), VALUE);
int ruby_thread_has_gvl_p(void);
void ruby_reset_leap_second_info(void);
extern const signed char ruby_digit36_to_number_table[];
extern const char ruby_hexdigits[];
extern unsigned long ruby_scan_digits(const char *str, ssize_t len, int base, size_t *retlen, int *overflow);
void rb_mark_generic_ivar(VALUE);
void rb_mv_generic_ivar(VALUE src, VALUE dst);
VALUE rb_const_missing(VALUE klass, VALUE name);
int rb_class_ivar_set(VALUE klass, ID vid, VALUE value);
void rb_iv_tbl_copy(VALUE dst, VALUE src);
VALUE rb_wb_protected_newobj_of(VALUE, VALUE);
VALUE rb_wb_unprotected_newobj_of(VALUE, VALUE);
size_t rb_obj_memsize_of(VALUE);
void rb_gc_verify_internal_consistency(void);
size_t rb_obj_gc_flags(VALUE, ID[], size_t);
void rb_gc_mark_values(long n, const VALUE *values);
void rb_gc_mark_vm_stack_values(long n, const VALUE *values);
VALUE rb_imemo_new(enum imemo_type type, VALUE v1, VALUE v2, VALUE v3, VALUE v0);
int ruby_fill_random_bytes(void *, size_t, int);




typedef struct rb_vm_struct ruby_vm_t;
int ruby_vm_destruct(ruby_vm_t *vm);
void ruby_vm_at_exit(void(*func)(ruby_vm_t *));


const char *rb_obj_info(VALUE obj);
const char *rb_raw_obj_info(char *buff, const int buff_size, VALUE obj);
VALUE rb_gc_disable_no_rest(void);
struct rb_thread_struct;


size_t rb_objspace_data_type_memsize(VALUE obj);
void rb_objspace_reachable_objects_from(VALUE obj, void (func)(VALUE, void *), void *data);
void rb_objspace_reachable_objects_from_root(void (func)(const char *category, VALUE, void *), void *data);
int rb_objspace_markable_object_p(VALUE obj);
int rb_objspace_internal_object_p(VALUE obj);
int rb_objspace_marked_object_p(VALUE obj);
int rb_objspace_garbage_object_p(VALUE obj);
void rb_objspace_each_objects(
    int (*callback)(void *start, void *end, size_t stride, void *data),
    void *data);
void rb_objspace_each_objects_without_setup(
    int (*callback)(void *, void *, size_t, void *),
    void *data);


enum node_type {
    NODE_SCOPE,
    NODE_BLOCK,
    NODE_IF,
    NODE_UNLESS,
    NODE_CASE,
    NODE_CASE2,
    NODE_CASE3,
    NODE_WHEN,
    NODE_IN,
    NODE_WHILE,
    NODE_UNTIL,
    NODE_ITER,
    NODE_FOR,
    NODE_FOR_MASGN,
    NODE_BREAK,
    NODE_NEXT,
    NODE_REDO,
    NODE_RETRY,
    NODE_BEGIN,
    NODE_RESCUE,
    NODE_RESBODY,
    NODE_ENSURE,
    NODE_AND,
    NODE_OR,
    NODE_MASGN,
    NODE_LASGN,
    NODE_DASGN,
    NODE_DASGN_CURR,
    NODE_GASGN,
    NODE_IASGN,
    NODE_CDECL,
    NODE_CVASGN,
    NODE_OP_ASGN1,
    NODE_OP_ASGN2,
    NODE_OP_ASGN_AND,
    NODE_OP_ASGN_OR,
    NODE_OP_CDECL,
    NODE_CALL,
    NODE_OPCALL,
    NODE_FCALL,
    NODE_VCALL,
    NODE_QCALL,
    NODE_SUPER,
    NODE_ZSUPER,
    NODE_LIST,
    NODE_ZLIST,
    NODE_VALUES,
    NODE_HASH,
    NODE_RETURN,
    NODE_YIELD,
    NODE_LVAR,
    NODE_DVAR,
    NODE_GVAR,
    NODE_IVAR,
    NODE_CONST,
    NODE_CVAR,
    NODE_NTH_REF,
    NODE_BACK_REF,
    NODE_MATCH,
    NODE_MATCH2,
    NODE_MATCH3,
    NODE_LIT,
    NODE_STR,
    NODE_DSTR,
    NODE_XSTR,
    NODE_DXSTR,
    NODE_EVSTR,
    NODE_DREGX,
    NODE_ONCE,
    NODE_ARGS,
    NODE_ARGS_AUX,
    NODE_OPT_ARG,
    NODE_KW_ARG,
    NODE_POSTARG,
    NODE_ARGSCAT,
    NODE_ARGSPUSH,
    NODE_SPLAT,
    NODE_BLOCK_PASS,
    NODE_DEFN,
    NODE_DEFS,
    NODE_ALIAS,
    NODE_VALIAS,
    NODE_UNDEF,
    NODE_CLASS,
    NODE_MODULE,
    NODE_SCLASS,
    NODE_COLON2,
    NODE_COLON3,
    NODE_DOT2,
    NODE_DOT3,
    NODE_FLIP2,
    NODE_FLIP3,
    NODE_SELF,
    NODE_NIL,
    NODE_TRUE,
    NODE_FALSE,
    NODE_ERRINFO,
    NODE_DEFINED,
    NODE_POSTEXE,
    NODE_DSYM,
    NODE_ATTRASGN,
    NODE_LAMBDA,
    NODE_ARYPTN,
    NODE_HSHPTN,
    NODE_LAST
};
typedef struct rb_code_position_struct {
    int lineno;
    int column;
} rb_code_position_t;
typedef struct rb_code_location_struct {
    rb_code_position_t beg_pos;
    rb_code_position_t end_pos;
} rb_code_location_t;
static inline rb_code_location_t
code_loc_gen(rb_code_location_t *loc1, rb_code_location_t *loc2)
{
    rb_code_location_t loc;
    loc.beg_pos = loc1->beg_pos;
    loc.end_pos = loc2->end_pos;
    return loc;
}
typedef struct RNode {
    VALUE flags;
    union {
 struct RNode *node;
 ID id;
 VALUE value;
 ID *tbl;
    } u1;
    union {
 struct RNode *node;
 ID id;
 long argc;
 VALUE value;
    } u2;
    union {
 struct RNode *node;
 ID id;
 long state;
 struct rb_global_entry *entry;
 struct rb_args_info *args;
        struct rb_ary_pattern_info *apinfo;
 VALUE value;
    } u3;
    rb_code_location_t nd_loc;
    int node_id;
} NODE;
VALUE rb_node_case_when_optimizable_literal(const NODE *const node);


typedef struct node_buffer_struct node_buffer_t;
typedef struct rb_ast_body_struct {
    const NODE *root;
    VALUE compile_option;
    int line_count;
} rb_ast_body_t;
typedef struct rb_ast_struct {
    VALUE flags;
    node_buffer_t *node_buffer;
    rb_ast_body_t body;
} rb_ast_t;
rb_ast_t *rb_ast_new(void);
void rb_ast_mark(rb_ast_t*);
void rb_ast_update_references(rb_ast_t*);
void rb_ast_add_local_table(rb_ast_t*, ID *buf);
void rb_ast_dispose(rb_ast_t*);
void rb_ast_free(rb_ast_t*);
size_t rb_ast_memsize(const rb_ast_t*);
void rb_ast_add_mark_object(rb_ast_t*, VALUE);
NODE *rb_ast_newnode(rb_ast_t*, enum node_type type);
void rb_ast_delete_node(rb_ast_t*, NODE *n);
VALUE rb_parser_new(void);
VALUE rb_parser_end_seen_p(VALUE);
VALUE rb_parser_encoding(VALUE);
VALUE rb_parser_set_yydebug(VALUE, VALUE);
VALUE rb_parser_dump_tree(const NODE *node, int comment);
void rb_parser_set_options(VALUE, int, int, int, int);
rb_ast_t *rb_parser_compile_string(VALUE, const char*, VALUE, int);
rb_ast_t *rb_parser_compile_string_path(VALUE vparser, VALUE fname, VALUE src, int line);
rb_ast_t *rb_parser_compile_file_path(VALUE vparser, VALUE fname, VALUE input, int line);
rb_ast_t *rb_parser_compile_generic(VALUE vparser, VALUE (*lex_gets)(VALUE, int), VALUE fname, VALUE input, int line);
void rb_node_init(NODE *n, enum node_type type, VALUE a0, VALUE a1, VALUE a2);
const char *ruby_node_name(int node);
const struct kwtable *rb_reserved_word(const char *, unsigned int);
struct rb_args_info {
    NODE *pre_init;
    NODE *post_init;
    int pre_args_num;
    int post_args_num;
    ID first_post_arg;
    ID rest_arg;
    ID block_arg;
    NODE *kw_args;
    NODE *kw_rest_arg;
    NODE *opt_args;
    unsigned int no_kwarg: 1;
    unsigned int ruby2_keywords: 1;
    VALUE imemo;
};
struct rb_ary_pattern_info {
    NODE *pre_args;
    NODE *rest_arg;
    NODE *post_args;
    VALUE imemo;
};
struct parser_params;
void *rb_parser_malloc(struct parser_params *, size_t);
void *rb_parser_realloc(struct parser_params *, void *, size_t);
void *rb_parser_calloc(struct parser_params *, size_t, size_t);
void rb_parser_free(struct parser_params *, void *);
void rb_parser_printf(struct parser_params *parser, const char *fmt, ...) __attribute__((format(printf, 2, 3)));


enum ruby_id_types {
    RUBY_ID_STATIC_SYM = 0x01,
    RUBY_ID_LOCAL = 0x00,
    RUBY_ID_INSTANCE = (0x01<<1),
    RUBY_ID_GLOBAL = (0x03<<1),
    RUBY_ID_ATTRSET = (0x04<<1),
    RUBY_ID_CONST = (0x05<<1),
    RUBY_ID_CLASS = (0x06<<1),
    RUBY_ID_JUNK = (0x07<<1),
    RUBY_ID_INTERNAL = RUBY_ID_JUNK,
    RUBY_ID_SCOPE_SHIFT = 4,
    RUBY_ID_SCOPE_MASK = (~(~0U<<(RUBY_ID_SCOPE_SHIFT-1))<<1)
};
enum ruby_method_ids {
    idDot2 = 128,
    idDot3 = 129,
    idUPlus = 132,
    idUMinus = 133,
    idPow = 134,
    idCmp = 135,
    idPLUS = '+',
    idMINUS = '-',
    idMULT = '*',
    idDIV = '/',
    idMOD = '%',
    idLTLT = 136,
    idGTGT = 137,
    idLT = '<',
    idLE = 138,
    idGT = '>',
    idGE = 139,
    idEq = 140,
    idEqq = 141,
    idNeq = 142,
    idNot = '!',
    idAnd = '&',
    idOr = '|',
    idBackquote = '`',
    idEqTilde = 143,
    idNeqTilde = 144,
    idAREF = 145,
    idASET = 146,
    idCOLON2 = 147,
    idANDOP = 148,
    idOROP = 149,
    idANDDOT = 150,
    tPRESERVED_ID_BEGIN = 150,
    idNilP,
    idNULL,
    idEmptyP,
    idEqlP,
    idRespond_to,
    idRespond_to_missing,
    idIFUNC,
    idCFUNC,
    id_core_set_method_alias,
    id_core_set_variable_alias,
    id_core_undef_method,
    id_core_define_method,
    id_core_define_singleton_method,
    id_core_set_postexe,
    id_core_hash_merge_ptr,
    id_core_hash_merge_kwd,
    id_core_raise,
    id_debug_created_info,
    tPRESERVED_ID_END,
    tTOKEN_LOCAL_BEGIN = tPRESERVED_ID_END-1,
    tMax,
    tMin,
    tFreeze,
    tInspect,
    tIntern,
    tObject_id,
    tConst_missing,
    tMethodMissing,
    tMethod_added,
    tSingleton_method_added,
    tMethod_removed,
    tSingleton_method_removed,
    tMethod_undefined,
    tSingleton_method_undefined,
    tLength,
    tSize,
    tGets,
    tSucc,
    tEach,
    tProc,
    tLambda,
    tSend,
    t__send__,
    t__attached__,
    tInitialize,
    tInitialize_copy,
    tInitialize_clone,
    tInitialize_dup,
    tTo_int,
    tTo_ary,
    tTo_str,
    tTo_sym,
    tTo_hash,
    tTo_proc,
    tTo_io,
    tTo_a,
    tTo_s,
    tTo_i,
    tTo_f,
    tTo_r,
    tBt,
    tBt_locations,
    tCall,
    tMesg,
    tException,
    tLocals,
    tNOT,
    tAND,
    tOR,
    tDiv,
    tDivmod,
    tFdiv,
    tQuo,
    tName,
    tNil,
    tUScore,
    tNUMPARAM_1,
    tNUMPARAM_2,
    tNUMPARAM_3,
    tNUMPARAM_4,
    tNUMPARAM_5,
    tNUMPARAM_6,
    tNUMPARAM_7,
    tNUMPARAM_8,
    tNUMPARAM_9,
    tTOKEN_LOCAL_END,
    tTOKEN_INSTANCE_BEGIN = tTOKEN_LOCAL_END-1,
    tTOKEN_INSTANCE_END,
    tTOKEN_GLOBAL_BEGIN = tTOKEN_INSTANCE_END-1,
    tLASTLINE,
    tBACKREF,
    tERROR_INFO,
    tTOKEN_GLOBAL_END,
    tTOKEN_CONST_BEGIN = tTOKEN_GLOBAL_END-1,
    tTOKEN_CONST_END,
    tTOKEN_CLASS_BEGIN = tTOKEN_CONST_END-1,
    tTOKEN_CLASS_END,
    tTOKEN_ATTRSET_BEGIN = tTOKEN_CLASS_END-1,
    tTOKEN_ATTRSET_END,
    tNEXT_ID = tTOKEN_ATTRSET_END,
    idMax = ((tMax<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMin = ((tMin<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idFreeze = ((tFreeze<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idInspect = ((tInspect<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idIntern = ((tIntern<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idObject_id = ((tObject_id<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idConst_missing = ((tConst_missing<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMethodMissing = ((tMethodMissing<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMethod_added = ((tMethod_added<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSingleton_method_added = ((tSingleton_method_added<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMethod_removed = ((tMethod_removed<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSingleton_method_removed = ((tSingleton_method_removed<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMethod_undefined = ((tMethod_undefined<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSingleton_method_undefined = ((tSingleton_method_undefined<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idLength = ((tLength<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSize = ((tSize<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idGets = ((tGets<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSucc = ((tSucc<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idEach = ((tEach<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idProc = ((tProc<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idLambda = ((tLambda<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idSend = ((tSend<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    id__send__ = ((t__send__<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    id__attached__ = ((t__attached__<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idInitialize = ((tInitialize<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idInitialize_copy = ((tInitialize_copy<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idInitialize_clone = ((tInitialize_clone<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idInitialize_dup = ((tInitialize_dup<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_int = ((tTo_int<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_ary = ((tTo_ary<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_str = ((tTo_str<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_sym = ((tTo_sym<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_hash = ((tTo_hash<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_proc = ((tTo_proc<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_io = ((tTo_io<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_a = ((tTo_a<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_s = ((tTo_s<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_i = ((tTo_i<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_f = ((tTo_f<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idTo_r = ((tTo_r<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idBt = ((tBt<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idBt_locations = ((tBt_locations<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idCall = ((tCall<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idMesg = ((tMesg<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idException = ((tException<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idLocals = ((tLocals<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNOT = ((tNOT<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idAND = ((tAND<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idOR = ((tOR<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idDiv = ((tDiv<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idDivmod = ((tDivmod<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idFdiv = ((tFdiv<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idQuo = ((tQuo<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idName = ((tName<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNil = ((tNil<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idUScore = ((tUScore<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_1 = ((tNUMPARAM_1<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_2 = ((tNUMPARAM_2<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_3 = ((tNUMPARAM_3<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_4 = ((tNUMPARAM_4<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_5 = ((tNUMPARAM_5<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_6 = ((tNUMPARAM_6<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_7 = ((tNUMPARAM_7<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_8 = ((tNUMPARAM_8<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idNUMPARAM_9 = ((tNUMPARAM_9<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_LOCAL|RUBY_ID_STATIC_SYM),
    idLASTLINE = ((tLASTLINE<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_GLOBAL|RUBY_ID_STATIC_SYM),
    idBACKREF = ((tBACKREF<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_GLOBAL|RUBY_ID_STATIC_SYM),
    idERROR_INFO = ((tERROR_INFO<<RUBY_ID_SCOPE_SHIFT)|RUBY_ID_GLOBAL|RUBY_ID_STATIC_SYM),
    tLAST_OP_ID = tPRESERVED_ID_END-1,
    idLAST_OP_ID = tLAST_OP_ID >> RUBY_ID_SCOPE_SHIFT
};
typedef enum {
    METHOD_VISI_UNDEF = 0x00,
    METHOD_VISI_PUBLIC = 0x01,
    METHOD_VISI_PRIVATE = 0x02,
    METHOD_VISI_PROTECTED = 0x03,
    METHOD_VISI_MASK = 0x03
} rb_method_visibility_t;
typedef struct rb_scope_visi_struct {
    rb_method_visibility_t method_visi : 3;
    unsigned int module_func : 1;
} rb_scope_visibility_t;
typedef struct rb_cref_struct {
    VALUE flags;
    VALUE refinements;
    VALUE klass;
    struct rb_cref_struct * next;
    const rb_scope_visibility_t scope_visi;
} rb_cref_t;
typedef struct rb_method_entry_struct {
    VALUE flags;
    VALUE defined_class;
    struct rb_method_definition_struct * const def;
    ID called_id;
    VALUE owner;
} rb_method_entry_t;
typedef struct rb_callable_method_entry_struct {
    VALUE flags;
    const VALUE defined_class;
    struct rb_method_definition_struct * const def;
    ID called_id;
    const VALUE owner;
} rb_callable_method_entry_t;
static inline void
METHOD_ENTRY_VISI_SET(rb_method_entry_t *me, rb_method_visibility_t visi)
{
    ((void)0);
    me->flags = (me->flags & ~(((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) | (visi << ((((VALUE)RUBY_FL_USHIFT) + 4)+0));
}
static inline void
METHOD_ENTRY_BASIC_SET(rb_method_entry_t *me, unsigned int basic)
{
    ((void)0);
    me->flags = (me->flags & ~(((VALUE)RUBY_FL_USER6) )) | (basic << ((((VALUE)RUBY_FL_USHIFT) + 4)+2));
}
static inline void
METHOD_ENTRY_FLAGS_SET(rb_method_entry_t *me, rb_method_visibility_t visi, unsigned int basic)
{
    ((void)0);
    ((void)0);
    me->flags =
      (me->flags & ~(((VALUE)RUBY_FL_USER4)|((VALUE)RUBY_FL_USER5)|((VALUE)RUBY_FL_USER6))) |
        ((visi << ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) | (basic << ((((VALUE)RUBY_FL_USHIFT) + 4)+2)));
}
static inline void
METHOD_ENTRY_FLAGS_COPY(rb_method_entry_t *dst, const rb_method_entry_t *src)
{
    dst->flags =
      (dst->flags & ~(((VALUE)RUBY_FL_USER4)|((VALUE)RUBY_FL_USER5)|((VALUE)RUBY_FL_USER6))) |
        (src->flags & (((VALUE)RUBY_FL_USER4)|((VALUE)RUBY_FL_USER5)|((VALUE)RUBY_FL_USER6)));
}
typedef enum {
    VM_METHOD_TYPE_ISEQ,
    VM_METHOD_TYPE_CFUNC,
    VM_METHOD_TYPE_ATTRSET,
    VM_METHOD_TYPE_IVAR,
    VM_METHOD_TYPE_BMETHOD,
    VM_METHOD_TYPE_ZSUPER,
    VM_METHOD_TYPE_ALIAS,
    VM_METHOD_TYPE_UNDEF,
    VM_METHOD_TYPE_NOTIMPLEMENTED,
    VM_METHOD_TYPE_OPTIMIZED,
    VM_METHOD_TYPE_MISSING,
    VM_METHOD_TYPE_REFINED,
   
} rb_method_type_t;
_Static_assert(VM_METHOD_TYPE_REFINED <= (1<<4), "VM_METHOD_TYPE_MINIMUM_BITS" ": " "VM_METHOD_TYPE_REFINED <= (1<<VM_METHOD_TYPE_MINIMUM_BITS)");
typedef struct rb_iseq_struct rb_iseq_t;
typedef struct rb_method_iseq_struct {
    rb_iseq_t * iseqptr;
    rb_cref_t * cref;
} rb_method_iseq_t;
typedef struct rb_method_cfunc_struct {
    VALUE (*func)();
    VALUE (*invoker)(VALUE recv, int argc, const VALUE *argv, VALUE (*func)());
    int argc;
} rb_method_cfunc_t;
typedef struct rb_method_attr_struct {
    ID id;
    VALUE location;
} rb_method_attr_t;
typedef struct rb_method_alias_struct {
    struct rb_method_entry_struct * original_me;
} rb_method_alias_t;
typedef struct rb_method_refined_struct {
    struct rb_method_entry_struct * orig_me;
    VALUE owner;
} rb_method_refined_t;
typedef struct rb_method_bmethod_struct {
    VALUE proc;
    struct rb_hook_list_struct *hooks;
} rb_method_bmethod_t;
enum method_optimized_type {
    OPTIMIZED_METHOD_TYPE_SEND,
    OPTIMIZED_METHOD_TYPE_CALL,
    OPTIMIZED_METHOD_TYPE_BLOCK_CALL,
    OPTIMIZED_METHOD_TYPE__MAX
};
struct rb_method_definition_struct {
    rb_method_type_t type : 4;
    int alias_count : 28;
    int complemented_count : 28;
    unsigned int no_redef_warning: 1;
    union {
        rb_method_iseq_t iseq;
        rb_method_cfunc_t cfunc;
        rb_method_attr_t attr;
        rb_method_alias_t alias;
        rb_method_refined_t refined;
        rb_method_bmethod_t bmethod;
        enum method_optimized_type optimize_type;
    } body;
    ID original_id;
    uintptr_t method_serial;
};
typedef struct rb_method_definition_struct rb_method_definition_t;
_Static_assert(__builtin_offsetof (rb_method_definition_t, body)==8, "sizeof_method_def" ": " "offsetof(rb_method_definition_t, body)==8");
void rb_add_method_cfunc(VALUE klass, ID mid, VALUE (*func)(), int argc, rb_method_visibility_t visi);
void rb_add_method_iseq(VALUE klass, ID mid, const rb_iseq_t *iseq, rb_cref_t *cref, rb_method_visibility_t visi);
void rb_add_refined_method_entry(VALUE refined_class, ID mid);
void rb_add_method(VALUE klass, ID mid, rb_method_type_t type, void *option, rb_method_visibility_t visi);
rb_method_entry_t *rb_method_entry_set(VALUE klass, ID mid, const rb_method_entry_t *, rb_method_visibility_t noex);
rb_method_entry_t *rb_method_entry_create(ID called_id, VALUE klass, rb_method_visibility_t visi, const rb_method_definition_t *def);
const rb_method_entry_t *rb_method_entry_at(VALUE obj, ID id);
const rb_method_entry_t *rb_method_entry(VALUE klass, ID id);
const rb_method_entry_t *rb_method_entry_with_refinements(VALUE klass, ID id, VALUE *defined_class);
const rb_method_entry_t *rb_method_entry_without_refinements(VALUE klass, ID id, VALUE *defined_class);
const rb_method_entry_t *rb_resolve_refined_method(VALUE refinements, const rb_method_entry_t *me);


const rb_method_entry_t *rb_resolve_me_location(const rb_method_entry_t *, VALUE[5]);


const rb_callable_method_entry_t *rb_callable_method_entry(VALUE klass, ID id);
const rb_callable_method_entry_t *rb_callable_method_entry_with_refinements(VALUE klass, ID id, VALUE *defined_class);
const rb_callable_method_entry_t *rb_callable_method_entry_without_refinements(VALUE klass, ID id, VALUE *defined_class);
int rb_method_entry_arity(const rb_method_entry_t *me);
int rb_method_entry_eq(const rb_method_entry_t *m1, const rb_method_entry_t *m2);
st_index_t rb_hash_method_entry(st_index_t hash, const rb_method_entry_t *me);
VALUE rb_method_entry_location(const rb_method_entry_t *me);
void rb_free_method_entry(const rb_method_entry_t *me);
const rb_method_entry_t *rb_method_entry_clone(const rb_method_entry_t *me);
const rb_callable_method_entry_t *rb_method_entry_complement_defined_class(const rb_method_entry_t *src_me, ID called_id, VALUE defined_class);
void rb_method_entry_copy(rb_method_entry_t *dst, const rb_method_entry_t *src);
void rb_scope_visibility_set(rb_method_visibility_t);
VALUE rb_unnamed_parameters(int arity);
typedef unsigned int rb_atomic_t;

extern void __assert_fail (const char *__assertion, const char *__file,
      unsigned int __line, const char *__function)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern void __assert_perror_fail (int __errnum, const char *__file,
      unsigned int __line, const char *__function)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));
extern void __assert (const char *__assertion, const char *__file, int __line)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__));

static inline char *container_of_or_null_(void *member_ptr, size_t offset)
{
 return member_ptr ? (char *)member_ptr - offset : ((void *)0);
}
struct list_node
{
 struct list_node *next, *prev;
};
struct list_head
{
 struct list_node n;
};
static inline void list_head_init(struct list_head *h)
{
 h->n.next = h->n.prev = &h->n;
}
static inline void list_node_init(struct list_node *n)
{
 n->next = n->prev = n;
}
static inline void list_add_after_(struct list_head *h,
       struct list_node *p,
       struct list_node *n,
       const char *abortstr)
{
 n->next = p->next;
 n->prev = p;
 p->next->prev = n;
 p->next = n;
 (void)((void)abortstr, h);
}
static inline void list_add_(struct list_head *h,
        struct list_node *n,
        const char *abortstr)
{
 list_add_after_(h, &h->n, n, abortstr);
}
static inline void list_add_before_(struct list_head *h,
        struct list_node *p,
        struct list_node *n,
        const char *abortstr)
{
 n->next = p;
 n->prev = p->prev;
 p->prev->next = n;
 p->prev = n;
 (void)((void)abortstr, h);
}
static inline void list_add_tail_(struct list_head *h,
      struct list_node *n,
      const char *abortstr)
{
 list_add_before_(h, &h->n, n, abortstr);
}
static inline int list_empty_(const struct list_head *h, const char* abortstr)
{
 (void)((void)abortstr, h);
 return h->n.next == &h->n;
}
static inline _Bool list_empty_nocheck(const struct list_head *h)
{
 return h->n.next == &h->n;
}
static inline void list_del_(struct list_node *n, const char* abortstr)
{
 (void)((void)abortstr, n);
 n->next->prev = n->prev;
 n->prev->next = n->next;
}
static inline void list_del_init_(struct list_node *n, const char *abortstr)
{
 list_del_(n, abortstr);
 list_node_init(n);
}
static inline void list_del_from(struct list_head *h, struct list_node *n)
{
 ((void) sizeof ((!list_empty_(h, "./ccan/list/list.h" ":" "328")) ? 1 : 0), __extension__ ({ if (!list_empty_(h, "./ccan/list/list.h" ":" "328")) ; else __assert_fail ("!list_empty(h)", "./ccan/list/list.h", 328, __extension__ __PRETTY_FUNCTION__); }));
 list_del_(n, "./ccan/list/list.h" ":" "329");
}
static inline void list_swap_(struct list_node *o,
         struct list_node *n,
         const char* abortstr)
{
 (void)((void)abortstr, o);
 *n = *o;
 n->next->prev = n;
 n->prev->next = n;
}
static inline const void *list_top_(const struct list_head *h, size_t off)
{
 if (list_empty_(h, "./ccan/list/list.h" ":" "399"))
  return ((void *)0);
 return (const char *)h->n.next - off;
}
static inline const void *list_pop_(const struct list_head *h, size_t off)
{
 struct list_node *n;
 if (list_empty_(h, "./ccan/list/list.h" ":" "425"))
  return ((void *)0);
 n = h->n.next;
 list_del_(n, "./ccan/list/list.h" ":" "428");
 return (const char *)n - off;
}
static inline const void *list_tail_(const struct list_head *h, size_t off)
{
 if (list_empty_(h, "./ccan/list/list.h" ":" "451"))
  return ((void *)0);
 return (const char *)h->n.prev - off;
}
static inline void list_append_list_(struct list_head *to,
         struct list_head *from,
         const char *abortstr)
{
 struct list_node *from_tail = ((void)abortstr, from)->n.prev;
 struct list_node *to_tail = ((void)abortstr, to)->n.prev;
 to->n.prev = from_tail;
 from_tail->next = &to->n;
 to_tail->next = &from->n;
 from->n.prev = to_tail;
 list_del_(&from->n, "./ccan/list/list.h" ":" "600");
 list_head_init(from);
}
static inline void list_prepend_list_(struct list_head *to,
          struct list_head *from,
          const char *abortstr)
{
 struct list_node *from_tail = ((void)abortstr, from)->n.prev;
 struct list_node *to_head = ((void)abortstr, to)->n.next;
 to->n.next = &from->n;
 from->n.prev = &to->n;
 to_head->prev = from_tail;
 from_tail->next = to_head;
 list_del_(&from->n, "./ccan/list/list.h" ":" "632");
 list_head_init(from);
}
static inline void *list_node_to_off_(struct list_node *node, size_t off)
{
 return (void *)((char *)node - off);
}
static inline struct list_node *list_node_from_off_(void *ptr, size_t off)
{
 return (struct list_node *)((char *)ptr + off);
}
static inline void *list_entry_or_null(const struct list_head *h,
           const struct list_node *n,
           size_t off)
{
 if (n == &h->n)
  return ((void *)0);
 return (char *)n - off;
}
struct sched_param
{
  int sched_priority;
};

extern int clone (int (*__fn) (void *__arg), void *__child_stack,
    int __flags, void *__arg, ...) __attribute__ ((__nothrow__ , __leaf__));
extern int unshare (int __flags) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_getcpu (void) __attribute__ ((__nothrow__ , __leaf__));
extern int setns (int __fd, int __nstype) __attribute__ ((__nothrow__ , __leaf__));

typedef unsigned long int __cpu_mask;
typedef struct
{
  __cpu_mask __bits[1024 / (8 * sizeof (__cpu_mask))];
} cpu_set_t;

extern int __sched_cpucount (size_t __setsize, const cpu_set_t *__setp)
     __attribute__ ((__nothrow__ , __leaf__));
extern cpu_set_t *__sched_cpualloc (size_t __count) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__));
extern void __sched_cpufree (cpu_set_t *__set) __attribute__ ((__nothrow__ , __leaf__));


extern int sched_setparam (__pid_t __pid, const struct sched_param *__param)
     __attribute__ ((__nothrow__ , __leaf__));
extern int sched_getparam (__pid_t __pid, struct sched_param *__param) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_setscheduler (__pid_t __pid, int __policy,
          const struct sched_param *__param) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_getscheduler (__pid_t __pid) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_yield (void) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_get_priority_max (int __algorithm) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_get_priority_min (int __algorithm) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_setaffinity (__pid_t __pid, size_t __cpusetsize,
         const cpu_set_t *__cpuset) __attribute__ ((__nothrow__ , __leaf__));
extern int sched_getaffinity (__pid_t __pid, size_t __cpusetsize,
         cpu_set_t *__cpuset) __attribute__ ((__nothrow__ , __leaf__));

struct timex
{
  unsigned int modes;
  __syscall_slong_t offset;
  __syscall_slong_t freq;
  __syscall_slong_t maxerror;
  __syscall_slong_t esterror;
  int status;
  __syscall_slong_t constant;
  __syscall_slong_t precision;
  __syscall_slong_t tolerance;
  struct timeval time;
  __syscall_slong_t tick;
  __syscall_slong_t ppsfreq;
  __syscall_slong_t jitter;
  int shift;
  __syscall_slong_t stabil;
  __syscall_slong_t jitcnt;
  __syscall_slong_t calcnt;
  __syscall_slong_t errcnt;
  __syscall_slong_t stbcnt;
  int tai;
  int :32; int :32; int :32; int :32;
  int :32; int :32; int :32; int :32;
  int :32; int :32; int :32;
};

extern int clock_adjtime (__clockid_t __clock_id, struct timex *__utx) __attribute__ ((__nothrow__ , __leaf__));

struct tm
{
  int tm_sec;
  int tm_min;
  int tm_hour;
  int tm_mday;
  int tm_mon;
  int tm_year;
  int tm_wday;
  int tm_yday;
  int tm_isdst;
  long int tm_gmtoff;
  const char *tm_zone;
};
struct itimerspec
  {
    struct timespec it_interval;
    struct timespec it_value;
  };
struct sigevent;

extern clock_t clock (void) __attribute__ ((__nothrow__ , __leaf__));
extern time_t time (time_t *__timer) __attribute__ ((__nothrow__ , __leaf__));
extern double difftime (time_t __time1, time_t __time0)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern time_t mktime (struct tm *__tp) __attribute__ ((__nothrow__ , __leaf__));
extern size_t strftime (char *__restrict __s, size_t __maxsize,
   const char *__restrict __format,
   const struct tm *__restrict __tp) __attribute__ ((__nothrow__ , __leaf__));
extern char *strptime (const char *__restrict __s,
         const char *__restrict __fmt, struct tm *__tp)
     __attribute__ ((__nothrow__ , __leaf__));
extern size_t strftime_l (char *__restrict __s, size_t __maxsize,
     const char *__restrict __format,
     const struct tm *__restrict __tp,
     locale_t __loc) __attribute__ ((__nothrow__ , __leaf__));
extern char *strptime_l (const char *__restrict __s,
    const char *__restrict __fmt, struct tm *__tp,
    locale_t __loc) __attribute__ ((__nothrow__ , __leaf__));
extern struct tm *gmtime (const time_t *__timer) __attribute__ ((__nothrow__ , __leaf__));
extern struct tm *localtime (const time_t *__timer) __attribute__ ((__nothrow__ , __leaf__));
extern struct tm *gmtime_r (const time_t *__restrict __timer,
       struct tm *__restrict __tp) __attribute__ ((__nothrow__ , __leaf__));
extern struct tm *localtime_r (const time_t *__restrict __timer,
          struct tm *__restrict __tp) __attribute__ ((__nothrow__ , __leaf__));
extern char *asctime (const struct tm *__tp) __attribute__ ((__nothrow__ , __leaf__));
extern char *ctime (const time_t *__timer) __attribute__ ((__nothrow__ , __leaf__));
extern char *asctime_r (const struct tm *__restrict __tp,
   char *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__));
extern char *ctime_r (const time_t *__restrict __timer,
        char *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__));
extern char *__tzname[2];
extern int __daylight;
extern long int __timezone;
extern char *tzname[2];
extern void tzset (void) __attribute__ ((__nothrow__ , __leaf__));
extern int daylight;
extern long int timezone;
extern int stime (const time_t *__when) __attribute__ ((__nothrow__ , __leaf__));
extern time_t timegm (struct tm *__tp) __attribute__ ((__nothrow__ , __leaf__));
extern time_t timelocal (struct tm *__tp) __attribute__ ((__nothrow__ , __leaf__));
extern int dysize (int __year) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int nanosleep (const struct timespec *__requested_time,
        struct timespec *__remaining);
extern int clock_getres (clockid_t __clock_id, struct timespec *__res) __attribute__ ((__nothrow__ , __leaf__));
extern int clock_gettime (clockid_t __clock_id, struct timespec *__tp) __attribute__ ((__nothrow__ , __leaf__));
extern int clock_settime (clockid_t __clock_id, const struct timespec *__tp)
     __attribute__ ((__nothrow__ , __leaf__));
extern int clock_nanosleep (clockid_t __clock_id, int __flags,
       const struct timespec *__req,
       struct timespec *__rem);
extern int clock_getcpuclockid (pid_t __pid, clockid_t *__clock_id) __attribute__ ((__nothrow__ , __leaf__));
extern int timer_create (clockid_t __clock_id,
    struct sigevent *__restrict __evp,
    timer_t *__restrict __timerid) __attribute__ ((__nothrow__ , __leaf__));
extern int timer_delete (timer_t __timerid) __attribute__ ((__nothrow__ , __leaf__));
extern int timer_settime (timer_t __timerid, int __flags,
     const struct itimerspec *__restrict __value,
     struct itimerspec *__restrict __ovalue) __attribute__ ((__nothrow__ , __leaf__));
extern int timer_gettime (timer_t __timerid, struct itimerspec *__value)
     __attribute__ ((__nothrow__ , __leaf__));
extern int timer_getoverrun (timer_t __timerid) __attribute__ ((__nothrow__ , __leaf__));
extern int timespec_get (struct timespec *__ts, int __base)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int getdate_err;
extern struct tm *getdate (const char *__string);
extern int getdate_r (const char *__restrict __string,
        struct tm *__restrict __resbufp);

typedef long int __jmp_buf[8];
enum
{
  PTHREAD_CREATE_JOINABLE,
  PTHREAD_CREATE_DETACHED
};
enum
{
  PTHREAD_MUTEX_TIMED_NP,
  PTHREAD_MUTEX_RECURSIVE_NP,
  PTHREAD_MUTEX_ERRORCHECK_NP,
  PTHREAD_MUTEX_ADAPTIVE_NP
  ,
  PTHREAD_MUTEX_NORMAL = PTHREAD_MUTEX_TIMED_NP,
  PTHREAD_MUTEX_RECURSIVE = PTHREAD_MUTEX_RECURSIVE_NP,
  PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP,
  PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL
  , PTHREAD_MUTEX_FAST_NP = PTHREAD_MUTEX_TIMED_NP
};
enum
{
  PTHREAD_MUTEX_STALLED,
  PTHREAD_MUTEX_STALLED_NP = PTHREAD_MUTEX_STALLED,
  PTHREAD_MUTEX_ROBUST,
  PTHREAD_MUTEX_ROBUST_NP = PTHREAD_MUTEX_ROBUST
};
enum
{
  PTHREAD_PRIO_NONE,
  PTHREAD_PRIO_INHERIT,
  PTHREAD_PRIO_PROTECT
};
enum
{
  PTHREAD_RWLOCK_PREFER_READER_NP,
  PTHREAD_RWLOCK_PREFER_WRITER_NP,
  PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP,
  PTHREAD_RWLOCK_DEFAULT_NP = PTHREAD_RWLOCK_PREFER_READER_NP
};
enum
{
  PTHREAD_INHERIT_SCHED,
  PTHREAD_EXPLICIT_SCHED
};
enum
{
  PTHREAD_SCOPE_SYSTEM,
  PTHREAD_SCOPE_PROCESS
};
enum
{
  PTHREAD_PROCESS_PRIVATE,
  PTHREAD_PROCESS_SHARED
};
struct _pthread_cleanup_buffer
{
  void (*__routine) (void *);
  void *__arg;
  int __canceltype;
  struct _pthread_cleanup_buffer *__prev;
};
enum
{
  PTHREAD_CANCEL_ENABLE,
  PTHREAD_CANCEL_DISABLE
};
enum
{
  PTHREAD_CANCEL_DEFERRED,
  PTHREAD_CANCEL_ASYNCHRONOUS
};

extern int pthread_create (pthread_t *__restrict __newthread,
      const pthread_attr_t *__restrict __attr,
      void *(*__start_routine) (void *),
      void *__restrict __arg) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 3)));
extern void pthread_exit (void *__retval) __attribute__ ((__noreturn__));
extern int pthread_join (pthread_t __th, void **__thread_return);
extern int pthread_tryjoin_np (pthread_t __th, void **__thread_return) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_timedjoin_np (pthread_t __th, void **__thread_return,
     const struct timespec *__abstime);
extern int pthread_detach (pthread_t __th) __attribute__ ((__nothrow__ , __leaf__));
extern pthread_t pthread_self (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int pthread_equal (pthread_t __thread1, pthread_t __thread2)
  __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern int pthread_attr_init (pthread_attr_t *__attr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_destroy (pthread_attr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getdetachstate (const pthread_attr_t *__attr,
     int *__detachstate)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setdetachstate (pthread_attr_t *__attr,
     int __detachstate)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getguardsize (const pthread_attr_t *__attr,
          size_t *__guardsize)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setguardsize (pthread_attr_t *__attr,
          size_t __guardsize)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getschedparam (const pthread_attr_t *__restrict __attr,
           struct sched_param *__restrict __param)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setschedparam (pthread_attr_t *__restrict __attr,
           const struct sched_param *__restrict
           __param) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_getschedpolicy (const pthread_attr_t *__restrict
     __attr, int *__restrict __policy)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setschedpolicy (pthread_attr_t *__attr, int __policy)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getinheritsched (const pthread_attr_t *__restrict
      __attr, int *__restrict __inherit)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setinheritsched (pthread_attr_t *__attr,
      int __inherit)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getscope (const pthread_attr_t *__restrict __attr,
      int *__restrict __scope)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setscope (pthread_attr_t *__attr, int __scope)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getstackaddr (const pthread_attr_t *__restrict
          __attr, void **__restrict __stackaddr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))) __attribute__ ((__deprecated__));
extern int pthread_attr_setstackaddr (pthread_attr_t *__attr,
          void *__stackaddr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) __attribute__ ((__deprecated__));
extern int pthread_attr_getstacksize (const pthread_attr_t *__restrict
          __attr, size_t *__restrict __stacksize)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_attr_setstacksize (pthread_attr_t *__attr,
          size_t __stacksize)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_getstack (const pthread_attr_t *__restrict __attr,
      void **__restrict __stackaddr,
      size_t *__restrict __stacksize)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2, 3)));
extern int pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr,
      size_t __stacksize) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_attr_setaffinity_np (pthread_attr_t *__attr,
     size_t __cpusetsize,
     const cpu_set_t *__cpuset)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern int pthread_attr_getaffinity_np (const pthread_attr_t *__attr,
     size_t __cpusetsize,
     cpu_set_t *__cpuset)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern int pthread_getattr_default_np (pthread_attr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_setattr_default_np (const pthread_attr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int pthread_setschedparam (pthread_t __target_thread, int __policy,
      const struct sched_param *__param)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int pthread_getschedparam (pthread_t __target_thread,
      int *__restrict __policy,
      struct sched_param *__restrict __param)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 3)));
extern int pthread_setschedprio (pthread_t __target_thread, int __prio)
     __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_getname_np (pthread_t __target_thread, char *__buf,
          size_t __buflen)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int pthread_getconcurrency (void) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_setconcurrency (int __level) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_yield (void) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_setaffinity_np (pthread_t __th, size_t __cpusetsize,
       const cpu_set_t *__cpuset)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int pthread_getaffinity_np (pthread_t __th, size_t __cpusetsize,
       cpu_set_t *__cpuset)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3)));
extern int pthread_once (pthread_once_t *__once_control,
    void (*__init_routine) (void)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_setcancelstate (int __state, int *__oldstate);
extern int pthread_setcanceltype (int __type, int *__oldtype);
extern int pthread_cancel (pthread_t __th);
extern void pthread_testcancel (void);
typedef struct
{
  struct
  {
    __jmp_buf __cancel_jmp_buf;
    int __mask_was_saved;
  } __cancel_jmp_buf[1];
  void *__pad[4];
} __pthread_unwind_buf_t __attribute__ ((__aligned__));
struct __pthread_cleanup_frame
{
  void (*__cancel_routine) (void *);
  void *__cancel_arg;
  int __do_it;
  int __cancel_type;
};
extern __inline __attribute__ ((__gnu_inline__)) void
__pthread_cleanup_routine (struct __pthread_cleanup_frame *__frame)
{
  if (__frame->__do_it)
    __frame->__cancel_routine (__frame->__cancel_arg);
}
struct __jmp_buf_tag;
extern int __sigsetjmp (struct __jmp_buf_tag *__env, int __savemask) __attribute__ ((__nothrow__));
extern int pthread_mutex_init (pthread_mutex_t *__mutex,
          const pthread_mutexattr_t *__mutexattr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_destroy (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_trylock (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_timedlock (pthread_mutex_t *__restrict __mutex,
        const struct timespec *__restrict
        __abstime) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_getprioceiling (const pthread_mutex_t *
      __restrict __mutex,
      int *__restrict __prioceiling)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutex_setprioceiling (pthread_mutex_t *__restrict __mutex,
      int __prioceiling,
      int *__restrict __old_ceiling)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 3)));
extern int pthread_mutex_consistent (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutex_consistent_np (pthread_mutex_t *__mutex)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_init (pthread_mutexattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_destroy (pthread_mutexattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_getpshared (const pthread_mutexattr_t *
      __restrict __attr,
      int *__restrict __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_setpshared (pthread_mutexattr_t *__attr,
      int __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_gettype (const pthread_mutexattr_t *__restrict
          __attr, int *__restrict __kind)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_settype (pthread_mutexattr_t *__attr, int __kind)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_getprotocol (const pthread_mutexattr_t *
       __restrict __attr,
       int *__restrict __protocol)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_setprotocol (pthread_mutexattr_t *__attr,
       int __protocol)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *
          __restrict __attr,
          int *__restrict __prioceiling)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_setprioceiling (pthread_mutexattr_t *__attr,
          int __prioceiling)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_getrobust (const pthread_mutexattr_t *__attr,
     int *__robustness)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_getrobust_np (const pthread_mutexattr_t *__attr,
        int *__robustness)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_mutexattr_setrobust (pthread_mutexattr_t *__attr,
     int __robustness)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_mutexattr_setrobust_np (pthread_mutexattr_t *__attr,
        int __robustness)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock,
    const pthread_rwlockattr_t *__restrict
    __attr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_destroy (pthread_rwlock_t *__rwlock)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock)
  __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_timedrdlock (pthread_rwlock_t *__restrict __rwlock,
           const struct timespec *__restrict
           __abstime) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlock_timedwrlock (pthread_rwlock_t *__restrict __rwlock,
           const struct timespec *__restrict
           __abstime) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_rwlock_unlock (pthread_rwlock_t *__rwlock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlockattr_init (pthread_rwlockattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlockattr_destroy (pthread_rwlockattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *
       __restrict __attr,
       int *__restrict __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_rwlockattr_setpshared (pthread_rwlockattr_t *__attr,
       int __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *
       __restrict __attr,
       int *__restrict __pref)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_rwlockattr_setkind_np (pthread_rwlockattr_t *__attr,
       int __pref) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_cond_init (pthread_cond_t *__restrict __cond,
         const pthread_condattr_t *__restrict __cond_attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_cond_destroy (pthread_cond_t *__cond)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_cond_signal (pthread_cond_t *__cond)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_cond_broadcast (pthread_cond_t *__cond)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_cond_wait (pthread_cond_t *__restrict __cond,
         pthread_mutex_t *__restrict __mutex)
     __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_cond_timedwait (pthread_cond_t *__restrict __cond,
       pthread_mutex_t *__restrict __mutex,
       const struct timespec *__restrict __abstime)
     __attribute__ ((__nonnull__ (1, 2, 3)));
extern int pthread_condattr_init (pthread_condattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_condattr_destroy (pthread_condattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_condattr_getpshared (const pthread_condattr_t *
     __restrict __attr,
     int *__restrict __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_condattr_setpshared (pthread_condattr_t *__attr,
     int __pshared) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_condattr_getclock (const pthread_condattr_t *
          __restrict __attr,
          __clockid_t *__restrict __clock_id)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_condattr_setclock (pthread_condattr_t *__attr,
          __clockid_t __clock_id)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_spin_init (pthread_spinlock_t *__lock, int __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_spin_destroy (pthread_spinlock_t *__lock)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_spin_lock (pthread_spinlock_t *__lock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_spin_trylock (pthread_spinlock_t *__lock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_spin_unlock (pthread_spinlock_t *__lock)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrier_init (pthread_barrier_t *__restrict __barrier,
     const pthread_barrierattr_t *__restrict
     __attr, unsigned int __count)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrier_destroy (pthread_barrier_t *__barrier)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrier_wait (pthread_barrier_t *__barrier)
     __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrierattr_init (pthread_barrierattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrierattr_destroy (pthread_barrierattr_t *__attr)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_barrierattr_getpshared (const pthread_barrierattr_t *
        __restrict __attr,
        int *__restrict __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2)));
extern int pthread_barrierattr_setpshared (pthread_barrierattr_t *__attr,
        int __pshared)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_key_create (pthread_key_t *__key,
          void (*__destr_function) (void *))
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int pthread_key_delete (pthread_key_t __key) __attribute__ ((__nothrow__ , __leaf__));
extern void *pthread_getspecific (pthread_key_t __key) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_setspecific (pthread_key_t __key,
    const void *__pointer) __attribute__ ((__nothrow__ , __leaf__)) ;
extern int pthread_getcpuclockid (pthread_t __thread_id,
      __clockid_t *__clock_id)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2)));
extern int pthread_atfork (void (*__prepare) (void),
      void (*__parent) (void),
      void (*__child) (void)) __attribute__ ((__nothrow__ , __leaf__));
extern __inline __attribute__ ((__gnu_inline__)) int
__attribute__ ((__nothrow__ , __leaf__)) pthread_equal (pthread_t __thread1, pthread_t __thread2)
{
  return __thread1 == __thread2;
}

typedef pthread_t rb_nativethread_id_t;
typedef pthread_mutex_t rb_nativethread_lock_t;


rb_nativethread_id_t rb_nativethread_self();
void rb_nativethread_lock_initialize(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_destroy(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_unlock(rb_nativethread_lock_t *lock);


typedef pthread_cond_t rb_nativethread_cond_t;
typedef struct native_thread_data_struct {
    union {
        struct list_node ubf;
        struct list_node gvl;
    } node;
    union
    {
        rb_nativethread_cond_t intr;
        rb_nativethread_cond_t gvlq;
    } cond;
} native_thread_data_t;
void rb_native_mutex_destroy(rb_nativethread_lock_t *lock);
typedef struct rb_global_vm_lock_struct {
    const struct rb_thread_struct *owner;
    rb_nativethread_lock_t lock;
    struct list_head waitq;
    const struct rb_thread_struct *timer;
    int timer_err;
    rb_nativethread_cond_t switch_cond;
    rb_nativethread_cond_t switch_wait_cond;
    int need_yield;
    int wait_yield;
} rb_global_vm_lock_t;

struct __jmp_buf_tag
  {
    __jmp_buf __jmpbuf;
    int __mask_was_saved;
    __sigset_t __saved_mask;
  };
typedef struct __jmp_buf_tag jmp_buf[1];
extern int setjmp (jmp_buf __env) __attribute__ ((__nothrow__));
extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask) __attribute__ ((__nothrow__));
extern int _setjmp (struct __jmp_buf_tag __env[1]) __attribute__ ((__nothrow__));
extern void longjmp (struct __jmp_buf_tag __env[1], int __val)
     __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));
extern void _longjmp (struct __jmp_buf_tag __env[1], int __val)
     __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));
typedef struct __jmp_buf_tag sigjmp_buf[1];
extern void siglongjmp (sigjmp_buf __env, int __val)
     __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));
extern void longjmp (struct __jmp_buf_tag __env[1], int __val) __asm__ ("" "__longjmp_chk") __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));
extern void _longjmp (struct __jmp_buf_tag __env[1], int __val) __asm__ ("" "__longjmp_chk") __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));
extern void siglongjmp (struct __jmp_buf_tag __env[1], int __val) __asm__ ("" "__longjmp_chk") __attribute__ ((__nothrow__)) __attribute__ ((__noreturn__));


typedef __sig_atomic_t sig_atomic_t;
union sigval
{
  int sival_int;
  void *sival_ptr;
};
typedef union sigval __sigval_t;
typedef struct
  {
    int si_signo;
    int si_errno;
    int si_code;
    int __pad0;
    union
      {
 int _pad[((128 / sizeof (int)) - 4)];
 struct
   {
     __pid_t si_pid;
     __uid_t si_uid;
   } _kill;
 struct
   {
     int si_tid;
     int si_overrun;
     __sigval_t si_sigval;
   } _timer;
 struct
   {
     __pid_t si_pid;
     __uid_t si_uid;
     __sigval_t si_sigval;
   } _rt;
 struct
   {
     __pid_t si_pid;
     __uid_t si_uid;
     int si_status;
     __clock_t si_utime;
     __clock_t si_stime;
   } _sigchld;
 struct
   {
     void *si_addr;
    
     short int si_addr_lsb;
     union
       {
  struct
    {
      void *_lower;
      void *_upper;
    } _addr_bnd;
  __uint32_t _pkey;
       } _bounds;
   } _sigfault;
 struct
   {
     long int si_band;
     int si_fd;
   } _sigpoll;
 struct
   {
     void *_call_addr;
     int _syscall;
     unsigned int _arch;
   } _sigsys;
      } _sifields;
  } siginfo_t ;
enum
{
  SI_ASYNCNL = -60,
  SI_TKILL = -6,
  SI_SIGIO,
  SI_ASYNCIO,
  SI_MESGQ,
  SI_TIMER,
  SI_QUEUE,
  SI_USER,
  SI_KERNEL = 0x80
};
enum
{
  ILL_ILLOPC = 1,
  ILL_ILLOPN,
  ILL_ILLADR,
  ILL_ILLTRP,
  ILL_PRVOPC,
  ILL_PRVREG,
  ILL_COPROC,
  ILL_BADSTK
};
enum
{
  FPE_INTDIV = 1,
  FPE_INTOVF,
  FPE_FLTDIV,
  FPE_FLTOVF,
  FPE_FLTUND,
  FPE_FLTRES,
  FPE_FLTINV,
  FPE_FLTSUB
};
enum
{
  SEGV_MAPERR = 1,
  SEGV_ACCERR,
  SEGV_BNDERR,
  SEGV_PKUERR
};
enum
{
  BUS_ADRALN = 1,
  BUS_ADRERR,
  BUS_OBJERR,
  BUS_MCEERR_AR,
  BUS_MCEERR_AO
};
enum
{
  TRAP_BRKPT = 1,
  TRAP_TRACE
};
enum
{
  CLD_EXITED = 1,
  CLD_KILLED,
  CLD_DUMPED,
  CLD_TRAPPED,
  CLD_STOPPED,
  CLD_CONTINUED
};
enum
{
  POLL_IN = 1,
  POLL_OUT,
  POLL_MSG,
  POLL_ERR,
  POLL_PRI,
  POLL_HUP
};
typedef __sigval_t sigval_t;
typedef struct sigevent
  {
    __sigval_t sigev_value;
    int sigev_signo;
    int sigev_notify;
    union
      {
 int _pad[((64 / sizeof (int)) - 4)];
 __pid_t _tid;
 struct
   {
     void (*_function) (__sigval_t);
     pthread_attr_t *_attribute;
   } _sigev_thread;
      } _sigev_un;
  } sigevent_t;
enum
{
  SIGEV_SIGNAL = 0,
  SIGEV_NONE,
  SIGEV_THREAD,
  SIGEV_THREAD_ID = 4
};
typedef void (*__sighandler_t) (int);
extern __sighandler_t __sysv_signal (int __sig, __sighandler_t __handler)
     __attribute__ ((__nothrow__ , __leaf__));
extern __sighandler_t sysv_signal (int __sig, __sighandler_t __handler)
     __attribute__ ((__nothrow__ , __leaf__));
extern __sighandler_t signal (int __sig, __sighandler_t __handler)
     __attribute__ ((__nothrow__ , __leaf__));
extern int kill (__pid_t __pid, int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern int killpg (__pid_t __pgrp, int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern int raise (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern __sighandler_t ssignal (int __sig, __sighandler_t __handler)
     __attribute__ ((__nothrow__ , __leaf__));
extern int gsignal (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern void psignal (int __sig, const char *__s);
extern void psiginfo (const siginfo_t *__pinfo, const char *__s);
extern int sigpause (int __sig) __asm__ ("__xpg_sigpause");
extern int sigblock (int __mask) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__deprecated__));
extern int sigsetmask (int __mask) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__deprecated__));
extern int siggetmask (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__deprecated__));
typedef __sighandler_t sighandler_t;
typedef __sighandler_t sig_t;
extern int sigemptyset (sigset_t *__set) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigfillset (sigset_t *__set) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigaddset (sigset_t *__set, int __signo) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigdelset (sigset_t *__set, int __signo) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigismember (const sigset_t *__set, int __signo)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigisemptyset (const sigset_t *__set) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigandset (sigset_t *__set, const sigset_t *__left,
        const sigset_t *__right) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2, 3)));
extern int sigorset (sigset_t *__set, const sigset_t *__left,
       const sigset_t *__right) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2, 3)));
struct sigaction
  {
    union
      {
 __sighandler_t sa_handler;
 void (*sa_sigaction) (int, siginfo_t *, void *);
      }
    __sigaction_handler;
    __sigset_t sa_mask;
    int sa_flags;
    void (*sa_restorer) (void);
  };
extern int sigprocmask (int __how, const sigset_t *__restrict __set,
   sigset_t *__restrict __oset) __attribute__ ((__nothrow__ , __leaf__));
extern int sigsuspend (const sigset_t *__set) __attribute__ ((__nonnull__ (1)));
extern int sigaction (int __sig, const struct sigaction *__restrict __act,
        struct sigaction *__restrict __oact) __attribute__ ((__nothrow__ , __leaf__));
extern int sigpending (sigset_t *__set) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1)));
extern int sigwait (const sigset_t *__restrict __set, int *__restrict __sig)
     __attribute__ ((__nonnull__ (1, 2)));
extern int sigwaitinfo (const sigset_t *__restrict __set,
   siginfo_t *__restrict __info) __attribute__ ((__nonnull__ (1)));
extern int sigtimedwait (const sigset_t *__restrict __set,
    siginfo_t *__restrict __info,
    const struct timespec *__restrict __timeout)
     __attribute__ ((__nonnull__ (1)));
extern int sigqueue (__pid_t __pid, int __sig, const union sigval __val)
     __attribute__ ((__nothrow__ , __leaf__));
extern const char *const _sys_siglist[(64 + 1)];
extern const char *const sys_siglist[(64 + 1)];
struct _fpx_sw_bytes
{
  __uint32_t magic1;
  __uint32_t extended_size;
  __uint64_t xstate_bv;
  __uint32_t xstate_size;
  __uint32_t __glibc_reserved1[7];
};
struct _fpreg
{
  unsigned short significand[4];
  unsigned short exponent;
};
struct _fpxreg
{
  unsigned short significand[4];
  unsigned short exponent;
  unsigned short __glibc_reserved1[3];
};
struct _xmmreg
{
  __uint32_t element[4];
};
struct _fpstate
{
  __uint16_t cwd;
  __uint16_t swd;
  __uint16_t ftw;
  __uint16_t fop;
  __uint64_t rip;
  __uint64_t rdp;
  __uint32_t mxcsr;
  __uint32_t mxcr_mask;
  struct _fpxreg _st[8];
  struct _xmmreg _xmm[16];
  __uint32_t __glibc_reserved1[24];
};
struct sigcontext
{
  __uint64_t r8;
  __uint64_t r9;
  __uint64_t r10;
  __uint64_t r11;
  __uint64_t r12;
  __uint64_t r13;
  __uint64_t r14;
  __uint64_t r15;
  __uint64_t rdi;
  __uint64_t rsi;
  __uint64_t rbp;
  __uint64_t rbx;
  __uint64_t rdx;
  __uint64_t rax;
  __uint64_t rcx;
  __uint64_t rsp;
  __uint64_t rip;
  __uint64_t eflags;
  unsigned short cs;
  unsigned short gs;
  unsigned short fs;
  unsigned short __pad0;
  __uint64_t err;
  __uint64_t trapno;
  __uint64_t oldmask;
  __uint64_t cr2;
  __extension__ union
    {
      struct _fpstate * fpstate;
      __uint64_t __fpstate_word;
    };
  __uint64_t __reserved1 [8];
};
struct _xsave_hdr
{
  __uint64_t xstate_bv;
  __uint64_t __glibc_reserved1[2];
  __uint64_t __glibc_reserved2[5];
};
struct _ymmh_state
{
  __uint32_t ymmh_space[64];
};
struct _xstate
{
  struct _fpstate fpstate;
  struct _xsave_hdr xstate_hdr;
  struct _ymmh_state ymmh;
};
extern int sigreturn (struct sigcontext *__scp) __attribute__ ((__nothrow__ , __leaf__));
typedef struct
  {
    void *ss_sp;
    int ss_flags;
    size_t ss_size;
  } stack_t;
__extension__ typedef long long int greg_t;
typedef greg_t gregset_t[23];
enum
{
  REG_R8 = 0,
  REG_R9,
  REG_R10,
  REG_R11,
  REG_R12,
  REG_R13,
  REG_R14,
  REG_R15,
  REG_RDI,
  REG_RSI,
  REG_RBP,
  REG_RBX,
  REG_RDX,
  REG_RAX,
  REG_RCX,
  REG_RSP,
  REG_RIP,
  REG_EFL,
  REG_CSGSFS,
  REG_ERR,
  REG_TRAPNO,
  REG_OLDMASK,
  REG_CR2
};
struct _libc_fpxreg
{
  unsigned short int significand[4];
  unsigned short int exponent;
  unsigned short int __glibc_reserved1[3];
};
struct _libc_xmmreg
{
  __uint32_t element[4];
};
struct _libc_fpstate
{
  __uint16_t cwd;
  __uint16_t swd;
  __uint16_t ftw;
  __uint16_t fop;
  __uint64_t rip;
  __uint64_t rdp;
  __uint32_t mxcsr;
  __uint32_t mxcr_mask;
  struct _libc_fpxreg _st[8];
  struct _libc_xmmreg _xmm[16];
  __uint32_t __glibc_reserved1[24];
};
typedef struct _libc_fpstate *fpregset_t;
typedef struct
  {
    gregset_t gregs;
    fpregset_t fpregs;
    __extension__ unsigned long long __reserved1 [8];
} mcontext_t;
typedef struct ucontext_t
  {
    unsigned long int uc_flags;
    struct ucontext_t *uc_link;
    stack_t uc_stack;
    mcontext_t uc_mcontext;
    sigset_t uc_sigmask;
    struct _libc_fpstate __fpregs_mem;
    __extension__ unsigned long long int __ssp[4];
  } ucontext_t;
extern int siginterrupt (int __sig, int __interrupt) __attribute__ ((__nothrow__ , __leaf__));
enum
{
  SS_ONSTACK = 1,
  SS_DISABLE
};
extern int sigaltstack (const stack_t *__restrict __ss,
   stack_t *__restrict __oss) __attribute__ ((__nothrow__ , __leaf__));
struct sigstack
  {
    void *ss_sp;
    int ss_onstack;
  };
extern int sigstack (struct sigstack *__ss, struct sigstack *__oss)
     __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__deprecated__));
extern int sighold (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern int sigrelse (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern int sigignore (int __sig) __attribute__ ((__nothrow__ , __leaf__));
extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_sigmask (int __how,
       const __sigset_t *__restrict __newmask,
       __sigset_t *__restrict __oldmask)__attribute__ ((__nothrow__ , __leaf__));
extern int pthread_kill (pthread_t __threadid, int __signo) __attribute__ ((__nothrow__ , __leaf__));
extern int pthread_sigqueue (pthread_t __threadid, int __signo,
        const union sigval __value) __attribute__ ((__nothrow__ , __leaf__));
extern int __libc_current_sigrtmin (void) __attribute__ ((__nothrow__ , __leaf__));
extern int __libc_current_sigrtmax (void) __attribute__ ((__nothrow__ , __leaf__));

void *rb_register_sigaltstack(void);
void rb_vm_encoded_insn_data_table_init(void);
typedef unsigned long rb_num_t;
typedef signed long rb_snum_t;
enum ruby_tag_type {
    RUBY_TAG_NONE = 0x0,
    RUBY_TAG_RETURN = 0x1,
    RUBY_TAG_BREAK = 0x2,
    RUBY_TAG_NEXT = 0x3,
    RUBY_TAG_RETRY = 0x4,
    RUBY_TAG_REDO = 0x5,
    RUBY_TAG_RAISE = 0x6,
    RUBY_TAG_THROW = 0x7,
    RUBY_TAG_FATAL = 0x8,
    RUBY_TAG_MASK = 0xf
};
enum ruby_vm_throw_flags {
    VM_THROW_NO_ESCAPE_FLAG = 0x8000,
    VM_THROW_STATE_MASK = 0xff
};
struct rb_thread_struct;
struct rb_control_frame_struct;
typedef struct rb_compile_option_struct rb_compile_option_t;
struct iseq_inline_cache_entry {
    rb_serial_t ic_serial;
    const rb_cref_t *ic_cref;
    VALUE value;
};
struct iseq_inline_iv_cache_entry {
    rb_serial_t ic_serial;
    size_t index;
};
union iseq_inline_storage_entry {
    struct {
 struct rb_thread_struct *running_thread;
 VALUE value;
    } once;
    struct iseq_inline_cache_entry cache;
    struct iseq_inline_iv_cache_entry iv_cache;
};
struct rb_call_info_kw_arg {
    int keyword_len;
    VALUE keywords[1];
};
struct rb_call_info_with_kwarg {
    struct rb_call_info ci;
    struct rb_call_info_kw_arg *kw_arg;
};
struct rb_calling_info {
    VALUE block_handler;
    VALUE recv;
    int argc;
    int kw_splat;
};
struct rb_kwarg_call_data {
    struct rb_call_cache cc;
    struct rb_call_info_with_kwarg ci_kw;
};
struct rb_execution_context_struct;
typedef VALUE (*vm_call_handler)(struct rb_execution_context_struct *ec, struct rb_control_frame_struct *cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
typedef struct rb_iseq_location_struct {
    VALUE pathobj;
    VALUE base_label;
    VALUE label;
    VALUE first_lineno;
    int node_id;
    rb_code_location_t code_location;
} rb_iseq_location_t;
static inline VALUE
pathobj_path(VALUE pathobj)
{
    if (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)(pathobj))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? ((pathobj) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? ((pathobj) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? ((pathobj) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? ((pathobj) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)(pathobj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)(pathobj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == (RUBY_T_STRING)))) {
 return pathobj;
    }
    else {
 ((void)0);
 return (rb_array_const_ptr_transient(pathobj)[0]);
    }
}
static inline VALUE
pathobj_realpath(VALUE pathobj)
{
    if (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)(pathobj))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? ((pathobj) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? ((pathobj) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? ((pathobj) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? ((pathobj) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)(pathobj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)(pathobj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(pathobj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(pathobj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(pathobj))->flags & RUBY_T_MASK) == (RUBY_T_STRING)))) {
 return pathobj;
    }
    else {
 ((void)0);
 return (rb_array_const_ptr_transient(pathobj)[1]);
    }
}
struct rb_mjit_unit;
struct rb_iseq_constant_body {
    enum iseq_type {
 ISEQ_TYPE_TOP,
 ISEQ_TYPE_METHOD,
 ISEQ_TYPE_BLOCK,
 ISEQ_TYPE_CLASS,
 ISEQ_TYPE_RESCUE,
 ISEQ_TYPE_ENSURE,
 ISEQ_TYPE_EVAL,
 ISEQ_TYPE_MAIN,
 ISEQ_TYPE_PLAIN
    } type;
    unsigned int iseq_size;
    VALUE *iseq_encoded;
    struct {
 struct {
     unsigned int has_lead : 1;
     unsigned int has_opt : 1;
     unsigned int has_rest : 1;
     unsigned int has_post : 1;
     unsigned int has_kw : 1;
     unsigned int has_kwrest : 1;
     unsigned int has_block : 1;
     unsigned int ambiguous_param0 : 1;
     unsigned int accepts_no_kwarg : 1;
            unsigned int ruby2_keywords: 1;
 } flags;
 unsigned int size;
 int lead_num;
 int opt_num;
 int rest_start;
 int post_start;
 int post_num;
 int block_start;
 const VALUE *opt_table;
 const struct rb_iseq_param_keyword {
     int num;
     int required_num;
     int bits_start;
     int rest_start;
     const ID *table;
            VALUE *default_values;
 } *keyword;
    } param;
    rb_iseq_location_t location;
    struct iseq_insn_info {
 const struct iseq_insn_info_entry *body;
 unsigned int *positions;
 unsigned int size;
 struct succ_index_table *succ_index_table;
    } insns_info;
    const ID *local_table;
    struct iseq_catch_table *catch_table;
    const struct rb_iseq_struct *parent_iseq;
    struct rb_iseq_struct *local_iseq;
    union iseq_inline_storage_entry *is_entries;
    struct rb_call_data *call_data;
    struct {
 rb_snum_t flip_count;
 VALUE coverage;
        VALUE pc2branchindex;
 VALUE *original_iseq;
    } variable;
    unsigned int local_table_size;
    unsigned int is_size;
    unsigned int ci_size;
    unsigned int ci_kw_size;
    unsigned int stack_max;
    char catch_except_p;
    VALUE (*jit_func)(struct rb_execution_context_struct *,
                      struct rb_control_frame_struct *);
    long unsigned total_calls;
    struct rb_mjit_unit *jit_unit;
    uintptr_t iseq_unique_id;
};
struct rb_iseq_struct {
    VALUE flags;
    VALUE wrapper;
    struct rb_iseq_constant_body *body;
    union {
 struct iseq_compile_data *compile_data;
 struct {
     VALUE obj;
     int index;
 } loader;
        struct {
            struct rb_hook_list_struct *local_hooks;
            rb_event_flag_t global_trace_events;
        } exec;
    } aux;
};
static inline const rb_iseq_t *
rb_iseq_check(const rb_iseq_t *iseq)
{
    return iseq;
}
static inline const rb_iseq_t *
def_iseq_ptr(rb_method_definition_t *def)
{
    return rb_iseq_check(def->body.iseq.iseqptr);
}
enum ruby_special_exceptions {
    ruby_error_reenter,
    ruby_error_nomemory,
    ruby_error_sysstack,
    ruby_error_stackfatal,
    ruby_error_stream_closed,
    ruby_special_error_count
};
enum ruby_basic_operators {
    BOP_PLUS,
    BOP_MINUS,
    BOP_MULT,
    BOP_DIV,
    BOP_MOD,
    BOP_EQ,
    BOP_EQQ,
    BOP_LT,
    BOP_LE,
    BOP_LTLT,
    BOP_AREF,
    BOP_ASET,
    BOP_LENGTH,
    BOP_SIZE,
    BOP_EMPTY_P,
    BOP_NIL_P,
    BOP_SUCC,
    BOP_GT,
    BOP_GE,
    BOP_NOT,
    BOP_NEQ,
    BOP_MATCH,
    BOP_FREEZE,
    BOP_UMINUS,
    BOP_MAX,
    BOP_MIN,
    BOP_CALL,
    BOP_AND,
    BOP_OR,
    BOP_LAST_
};
struct rb_vm_struct;
typedef void rb_vm_at_exit_func(struct rb_vm_struct*);
typedef struct rb_at_exit_list {
    rb_vm_at_exit_func *func;
    struct rb_at_exit_list *next;
} rb_at_exit_list;
struct rb_objspace;
struct rb_objspace *rb_objspace_alloc(void);
void rb_objspace_free(struct rb_objspace *);
void rb_objspace_call_finalizer(struct rb_objspace *);
typedef struct rb_hook_list_struct {
    struct rb_event_hook_struct *hooks;
    rb_event_flag_t events;
    unsigned int need_clean;
    unsigned int running;
} rb_hook_list_t;
typedef const struct rb_builtin_function *RB_BUILTIN;
typedef struct rb_vm_struct {
    VALUE self;
    rb_global_vm_lock_t gvl;
    struct rb_thread_struct *main_thread;
    const struct rb_thread_struct *running_thread;
    void *main_altstack;
    rb_serial_t fork_gen;
    rb_nativethread_lock_t waitpid_lock;
    struct list_head waiting_pids;
    struct list_head waiting_grps;
    struct list_head waiting_fds;
    struct list_head living_threads;
    VALUE thgroup_default;
    int living_thread_num;
    volatile int ubf_async_safe;
    unsigned int running: 1;
    unsigned int thread_abort_on_exception: 1;
    unsigned int thread_report_on_exception: 1;
    unsigned int safe_level_: 1;
    int sleeper;
    VALUE mark_object_ary;
    const VALUE special_exceptions[ruby_special_error_count];
    VALUE top_self;
    VALUE load_path;
    VALUE load_path_snapshot;
    VALUE load_path_check_cache;
    VALUE expanded_load_path;
    VALUE loaded_features;
    VALUE loaded_features_snapshot;
    struct st_table *loaded_features_index;
    struct st_table *loading_table;
    struct {
 VALUE cmd[(64 + 1)];
    } trap_list;
    rb_hook_list_t global_hooks;
    struct st_table *ensure_rollback_table;
    struct rb_postponed_job_struct *postponed_job_buffer;
    int postponed_job_index;
    int src_encoding_index;
    struct list_head workqueue;
    rb_nativethread_lock_t workqueue_lock;
    VALUE verbose, debug, orig_progname, progname;
    VALUE coverages;
    int coverage_mode;
    st_table * defined_module_hash;
    struct rb_objspace *objspace;
    rb_at_exit_list *at_exit;
    VALUE *defined_strings;
    st_table *frozen_strings;
    const struct rb_builtin_function *builtin_function_table;
    int builtin_inline_index;
    struct {
 size_t thread_vm_stack_size;
 size_t thread_machine_stack_size;
 size_t fiber_vm_stack_size;
 size_t fiber_machine_stack_size;
    } default_params;
    short redefined_flag[BOP_LAST_];
} rb_vm_t;
struct rb_captured_block {
    VALUE self;
    const VALUE *ep;
    union {
 const rb_iseq_t *iseq;
 const struct vm_ifunc *ifunc;
 VALUE val;
    } code;
};
enum rb_block_handler_type {
    block_handler_type_iseq,
    block_handler_type_ifunc,
    block_handler_type_symbol,
    block_handler_type_proc
};
enum rb_block_type {
    block_type_iseq,
    block_type_ifunc,
    block_type_symbol,
    block_type_proc
};
struct rb_block {
    union {
 struct rb_captured_block captured;
 VALUE symbol;
 VALUE proc;
    } as;
    enum rb_block_type type;
};
typedef struct rb_control_frame_struct {
    const VALUE *pc;
    VALUE *sp;
    const rb_iseq_t *iseq;
    VALUE self;
    const VALUE *ep;
    const void *block_code;
    VALUE *__bp__;
} rb_control_frame_t;
extern const rb_data_type_t ruby_threadptr_data_type;
static inline struct rb_thread_struct *
rb_thread_ptr(VALUE thval)
{
    return (struct rb_thread_struct *)rb_check_typeddata(thval, &ruby_threadptr_data_type);
}
enum rb_thread_status {
    THREAD_RUNNABLE,
    THREAD_STOPPED,
    THREAD_STOPPED_FOREVER,
    THREAD_KILLED
};
typedef jmp_buf rb_jmpbuf_t;
struct rb_vm_tag {
    VALUE tag;
    VALUE retval;
    rb_jmpbuf_t buf;
    struct rb_vm_tag *prev;
    enum ruby_tag_type state;
};
_Static_assert(__builtin_offsetof (struct rb_vm_tag, buf) > 0, "rb_vm_tag_buf_offset" ": " "offsetof(struct rb_vm_tag, buf) > 0");
_Static_assert(__builtin_offsetof (struct rb_vm_tag, buf) + sizeof(rb_jmpbuf_t) < sizeof(struct rb_vm_tag), "rb_vm_tag_buf_end" ": " "offsetof(struct rb_vm_tag, buf) + sizeof(rb_jmpbuf_t) < sizeof(struct rb_vm_tag)");
struct rb_vm_protect_tag {
    struct rb_vm_protect_tag *prev;
};
struct rb_unblock_callback {
    rb_unblock_function_t *func;
    void *arg;
};
struct rb_mutex_struct;
typedef struct rb_thread_list_struct{
    struct rb_thread_list_struct *next;
    struct rb_thread_struct *th;
} rb_thread_list_t;
typedef struct rb_ensure_entry {
    VALUE marker;
    VALUE (*e_proc)(VALUE);
    VALUE data2;
} rb_ensure_entry_t;
typedef struct rb_ensure_list {
    struct rb_ensure_list *next;
    struct rb_ensure_entry entry;
} rb_ensure_list_t;
typedef char rb_thread_id_string_t[sizeof(rb_nativethread_id_t) * 2 + 3];
typedef struct rb_fiber_struct rb_fiber_t;
typedef struct rb_execution_context_struct {
    VALUE *vm_stack;
    size_t vm_stack_size;
    rb_control_frame_t *cfp;
    struct rb_vm_tag *tag;
    struct rb_vm_protect_tag *protect_tag;
    rb_atomic_t interrupt_flag;
    rb_atomic_t interrupt_mask;
    rb_fiber_t *fiber_ptr;
    struct rb_thread_struct *thread_ptr;
    st_table *local_storage;
    VALUE local_storage_recursive_hash;
    VALUE local_storage_recursive_hash_for_trace;
    const VALUE *root_lep;
    VALUE root_svar;
    rb_ensure_list_t *ensure_list;
    struct rb_trace_arg_struct *trace_arg;
    VALUE errinfo;
    VALUE passed_block_handler;
    uint8_t raised_flag;
    enum method_missing_reason method_missing_reason : 8;
    VALUE private_const_reference;
    struct {
 VALUE *stack_start;
 VALUE *stack_end;
 size_t stack_maxsize;
 __attribute__((__aligned__(8))) jmp_buf regs;
    } machine;
} rb_execution_context_t;
void rb_ec_set_vm_stack(rb_execution_context_t *ec, VALUE *stack, size_t size);
void rb_ec_initialize_vm_stack(rb_execution_context_t *ec, VALUE *stack, size_t size);
void rb_ec_clear_vm_stack(rb_execution_context_t *ec);
typedef struct rb_thread_struct {
    struct list_node vmlt_node;
    VALUE self;
    rb_vm_t *vm;
    rb_execution_context_t *ec;
    VALUE last_status;
    struct rb_calling_info *calling;
    VALUE top_self;
    VALUE top_wrapper;
    rb_nativethread_id_t thread_id;
    enum rb_thread_status status : 2;
    unsigned int to_kill : 1;
    unsigned int abort_on_exception: 1;
    unsigned int report_on_exception: 1;
    unsigned int pending_interrupt_queue_checked: 1;
    int8_t priority;
    uint32_t running_time_us;
    native_thread_data_t native_thread_data;
    void *blocking_region_buffer;
    VALUE thgroup;
    VALUE value;
    VALUE pending_interrupt_queue;
    VALUE pending_interrupt_mask_stack;
    rb_nativethread_lock_t interrupt_lock;
    struct rb_unblock_callback unblock;
    VALUE locking_mutex;
    struct rb_mutex_struct *keeping_mutexes;
    rb_thread_list_t *join_list;
    union {
        struct {
            VALUE proc;
            VALUE args;
            int kw_splat;
        } proc;
        struct {
            VALUE (*func)(void *);
            void *arg;
        } func;
    } invoke_arg;
    enum {
        thread_invoke_type_none = 0,
        thread_invoke_type_proc,
        thread_invoke_type_func
    } invoke_type;
    VALUE stat_insn_usage;
    rb_fiber_t *root_fiber;
    rb_jmpbuf_t root_jmpbuf;
    VALUE name;
} rb_thread_t;
typedef enum {
    VM_DEFINECLASS_TYPE_CLASS = 0x00,
    VM_DEFINECLASS_TYPE_SINGLETON_CLASS = 0x01,
    VM_DEFINECLASS_TYPE_MODULE = 0x02,
    VM_DEFINECLASS_TYPE_MASK = 0x07
} rb_vm_defineclass_type_t;


rb_iseq_t *rb_iseq_new (const rb_ast_body_t *ast, VALUE name, VALUE path, VALUE realpath, const rb_iseq_t *parent, enum iseq_type);
rb_iseq_t *rb_iseq_new_top (const rb_ast_body_t *ast, VALUE name, VALUE path, VALUE realpath, const rb_iseq_t *parent);
rb_iseq_t *rb_iseq_new_main (const rb_ast_body_t *ast, VALUE path, VALUE realpath, const rb_iseq_t *parent);
rb_iseq_t *rb_iseq_new_with_opt(const rb_ast_body_t *ast, VALUE name, VALUE path, VALUE realpath, VALUE first_lineno,
    const rb_iseq_t *parent, enum iseq_type, const rb_compile_option_t*);
struct iseq_link_anchor;
struct rb_iseq_new_with_callback_callback_func {
    VALUE flags;
    VALUE reserved;
    void (*func)(rb_iseq_t *, struct iseq_link_anchor *, const void *);
    const void *data;
};
static inline struct rb_iseq_new_with_callback_callback_func *
rb_iseq_new_with_callback_new_callback(
    void (*func)(rb_iseq_t *, struct iseq_link_anchor *, const void *), const void *ptr)
{
    VALUE memo = rb_imemo_new(imemo_ifunc, (VALUE)func, (VALUE)ptr, ((VALUE)RUBY_Qundef), ((VALUE)RUBY_Qfalse));
    return (struct rb_iseq_new_with_callback_callback_func *)memo;
}
rb_iseq_t *rb_iseq_new_with_callback(const struct rb_iseq_new_with_callback_callback_func * ifunc,
    VALUE name, VALUE path, VALUE realpath, VALUE first_lineno,
    const rb_iseq_t *parent, enum iseq_type, const rb_compile_option_t*);
VALUE rb_iseq_disasm(const rb_iseq_t *iseq);
int rb_iseq_disasm_insn(VALUE str, const VALUE *iseqval, size_t pos, const rb_iseq_t *iseq, VALUE child);
VALUE rb_iseq_coverage(const rb_iseq_t *iseq);
extern VALUE rb_cISeq;
extern VALUE rb_cRubyVM;
extern VALUE rb_mRubyVMFrozenCore;
extern VALUE rb_block_param_proxy;


typedef struct {
    const struct rb_block block;
    unsigned int is_from_method: 1;
    unsigned int is_lambda: 1;
} rb_proc_t;
typedef struct {
    VALUE flags;
    rb_iseq_t *iseq;
    const VALUE *ep;
    const VALUE *env;
    unsigned int env_size;
} rb_env_t;
extern const rb_data_type_t ruby_binding_data_type;
typedef struct {
    const struct rb_block block;
    const VALUE pathobj;
    unsigned short first_lineno;
} rb_binding_t;
enum vm_check_match_type {
    VM_CHECKMATCH_TYPE_WHEN = 1,
    VM_CHECKMATCH_TYPE_CASE = 2,
    VM_CHECKMATCH_TYPE_RESCUE = 3
};
enum vm_call_flag_bits {
    VM_CALL_ARGS_SPLAT_bit,
    VM_CALL_ARGS_BLOCKARG_bit,
    VM_CALL_FCALL_bit,
    VM_CALL_VCALL_bit,
    VM_CALL_ARGS_SIMPLE_bit,
    VM_CALL_BLOCKISEQ_bit,
    VM_CALL_KWARG_bit,
    VM_CALL_KW_SPLAT_bit,
    VM_CALL_TAILCALL_bit,
    VM_CALL_SUPER_bit,
    VM_CALL_ZSUPER_bit,
    VM_CALL_OPT_SEND_bit,
    VM_CALL__END
};
enum vm_special_object_type {
    VM_SPECIAL_OBJECT_VMCORE = 1,
    VM_SPECIAL_OBJECT_CBASE,
    VM_SPECIAL_OBJECT_CONST_BASE
};
enum vm_svar_index {
    VM_SVAR_LASTLINE = 0,
    VM_SVAR_BACKREF = 1,
    VM_SVAR_EXTRA_START = 2,
    VM_SVAR_FLIPFLOP_START = 2
};
typedef struct iseq_inline_cache_entry *IC;
typedef struct iseq_inline_iv_cache_entry *IVC;
typedef union iseq_inline_storage_entry *ISE;
typedef struct rb_call_info *CALL_INFO;
typedef struct rb_call_cache *CALL_CACHE;
typedef struct rb_call_data *CALL_DATA;
typedef VALUE CDHASH;
typedef rb_control_frame_t *
  (*rb_insn_func_t)(rb_execution_context_t *, rb_control_frame_t *);
enum {
    VM_FRAME_MAGIC_METHOD = 0x11110001,
    VM_FRAME_MAGIC_BLOCK = 0x22220001,
    VM_FRAME_MAGIC_CLASS = 0x33330001,
    VM_FRAME_MAGIC_TOP = 0x44440001,
    VM_FRAME_MAGIC_CFUNC = 0x55550001,
    VM_FRAME_MAGIC_IFUNC = 0x66660001,
    VM_FRAME_MAGIC_EVAL = 0x77770001,
    VM_FRAME_MAGIC_RESCUE = 0x78880001,
    VM_FRAME_MAGIC_DUMMY = 0x79990001,
    VM_FRAME_MAGIC_MASK = 0x7fff0001,
    VM_FRAME_FLAG_PASSED = 0x0010,
    VM_FRAME_FLAG_FINISH = 0x0020,
    VM_FRAME_FLAG_BMETHOD = 0x0040,
    VM_FRAME_FLAG_CFRAME = 0x0080,
    VM_FRAME_FLAG_LAMBDA = 0x0100,
    VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM = 0x0200,
    VM_FRAME_FLAG_CFRAME_KW = 0x0400,
    VM_FRAME_FLAG_CFRAME_EMPTY_KW = 0x0800,
    VM_ENV_FLAG_LOCAL = 0x0002,
    VM_ENV_FLAG_ESCAPED = 0x0004,
    VM_ENV_FLAG_WB_REQUIRED = 0x0008
};
static inline void VM_FORCE_WRITE_SPECIAL_CONST(const VALUE *ptr, VALUE special_const_value);
static inline void
VM_ENV_FLAGS_SET(const VALUE *ep, VALUE flag)
{
    VALUE flags = ep[( 0)];
    ((void)0);
    VM_FORCE_WRITE_SPECIAL_CONST(&ep[( 0)], flags | flag);
}
static inline void
VM_ENV_FLAGS_UNSET(const VALUE *ep, VALUE flag)
{
    VALUE flags = ep[( 0)];
    ((void)0);
    VM_FORCE_WRITE_SPECIAL_CONST(&ep[( 0)], flags & ~flag);
}
static inline unsigned long
VM_ENV_FLAGS(const VALUE *ep, long flag)
{
    VALUE flags = ep[( 0)];
    ((void)0);
    return flags & flag;
}
static inline unsigned long
VM_FRAME_TYPE(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_MAGIC_MASK);
}
static inline int
VM_FRAME_LAMBDA_P(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_LAMBDA) != 0;
}
static inline int
VM_FRAME_CFRAME_KW_P(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_CFRAME_KW) != 0;
}
static inline int
VM_FRAME_CFRAME_EMPTY_KW_P(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_CFRAME_EMPTY_KW) != 0;
}
static inline int
VM_FRAME_FINISHED_P(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_FINISH) != 0;
}
static inline int
VM_FRAME_BMETHOD_P(const rb_control_frame_t *cfp)
{
    return VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_BMETHOD) != 0;
}
static inline int
rb_obj_is_iseq(VALUE iseq)
{
    return imemo_type_p(iseq, imemo_iseq);
}
static inline int
VM_FRAME_CFRAME_P(const rb_control_frame_t *cfp)
{
    int cframe_p = VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_CFRAME) != 0;
    ((void)0);
    return cframe_p;
}
static inline int
VM_FRAME_RUBYFRAME_P(const rb_control_frame_t *cfp)
{
    return !VM_FRAME_CFRAME_P(cfp);
}
static inline int
VM_ENV_LOCAL_P(const VALUE *ep)
{
    return VM_ENV_FLAGS(ep, VM_ENV_FLAG_LOCAL) ? 1 : 0;
}
static inline const VALUE *
VM_ENV_PREV_EP(const VALUE *ep)
{
    ((void)0);
    return ((void *)(((ep[(-1)])) & ~0x03));
}
static inline VALUE
VM_ENV_BLOCK_HANDLER(const VALUE *ep)
{
    ((void)0);
    return ep[(-1)];
}
static inline int
VM_ENV_ESCAPED_P(const VALUE *ep)
{
    ((void)0);
    return VM_ENV_FLAGS(ep, VM_ENV_FLAG_ESCAPED) ? 1 : 0;
}
static inline VALUE
VM_ENV_ENVVAL(const VALUE *ep)
{
    VALUE envval = ep[( 1)];
    ((void)0);
    ((void)0);
    return envval;
}
static inline const rb_env_t *
VM_ENV_ENVVAL_PTR(const VALUE *ep)
{
    return (const rb_env_t *)VM_ENV_ENVVAL(ep);
}
static inline const rb_env_t *
vm_env_new(VALUE *env_ep, VALUE *env_body, unsigned int env_size, const rb_iseq_t *iseq)
{
    rb_env_t *env = (rb_env_t *)rb_imemo_new(imemo_env, (VALUE)env_ep, (VALUE)env_body, 0, (VALUE)iseq);
    env->env_size = env_size;
    env_ep[( 1)] = (VALUE)env;
    return env;
}
static inline void
VM_FORCE_WRITE(const VALUE *ptr, VALUE v)
{
    *((VALUE *)ptr) = v;
}
static inline void
VM_FORCE_WRITE_SPECIAL_CONST(const VALUE *ptr, VALUE special_const_value)
{
    ((void)0);
    VM_FORCE_WRITE(ptr, special_const_value);
}
static inline void
VM_STACK_ENV_WRITE(const VALUE *ep, int index, VALUE v)
{
    ((void)0);
    VM_FORCE_WRITE(&ep[index], v);
}static inline 
const VALUE *rb_vm_ep_local_ep(const VALUE *ep);
const VALUE *rb_vm_proc_local_ep(VALUE proc);static inline 
void rb_vm_block_ep_update(VALUE obj, const struct rb_block *dst, const VALUE *ep);
void rb_vm_block_copy(VALUE obj, const struct rb_block *dst, const struct rb_block *src);static inline 
VALUE rb_vm_frame_block_handler(const rb_control_frame_t *cfp);
static inline const rb_control_frame_t *
RUBY_VM_END_CONTROL_FRAME(const rb_execution_context_t *ec)
{
    return (rb_control_frame_t *)(ec->vm_stack + ec->vm_stack_size);
}
static inline int
RUBY_VM_CONTROL_FRAME_STACK_OVERFLOW_P(const rb_execution_context_t *ec, const rb_control_frame_t *cfp)
{
    return !((void *)(RUBY_VM_END_CONTROL_FRAME(ec)) > (void *)(cfp));
}
static inline int
VM_BH_ISEQ_BLOCK_P(VALUE block_handler)
{
    if ((block_handler & 0x03) == 0x01) {
 return 1;
    }
    else {
 return 0;
    }
}
static inline VALUE
VM_BH_FROM_ISEQ_BLOCK(const struct rb_captured_block *captured)
{
    VALUE block_handler = ((VALUE)(captured) | (0x01));
    ((void)0);
    return block_handler;
}
static inline const struct rb_captured_block *
VM_BH_TO_ISEQ_BLOCK(VALUE block_handler)
{
    struct rb_captured_block *captured = ((void *)((block_handler) & ~0x03));
    ((void)0);
    return captured;
}
static inline int
VM_BH_IFUNC_P(VALUE block_handler)
{
    if ((block_handler & 0x03) == 0x03) {
 return 1;
    }
    else {
 return 0;
    }
}
static inline VALUE
VM_BH_FROM_IFUNC_BLOCK(const struct rb_captured_block *captured)
{
    VALUE block_handler = ((VALUE)(captured) | (0x03));
    ((void)0);
    return block_handler;
}
static inline const struct rb_captured_block *
VM_BH_TO_IFUNC_BLOCK(VALUE block_handler)
{
    struct rb_captured_block *captured = ((void *)((block_handler) & ~0x03));
    ((void)0);
    return captured;
}
static inline const struct rb_captured_block *
VM_BH_TO_CAPT_BLOCK(VALUE block_handler)
{
    struct rb_captured_block *captured = ((void *)((block_handler) & ~0x03));
    ((void)0);
    return captured;
}
static inline enum rb_block_handler_type
vm_block_handler_type(VALUE block_handler)
{
    if (VM_BH_ISEQ_BLOCK_P(block_handler)) {
 return block_handler_type_iseq;
    }
    else if (VM_BH_IFUNC_P(block_handler)) {
 return block_handler_type_ifunc;
    }
    else if (((((VALUE)(block_handler)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(block_handler) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(block_handler) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(block_handler))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL)))) {
 return block_handler_type_symbol;
    }
    else {
 ((void)0);
 return block_handler_type_proc;
    }
}
static inline void
vm_block_handler_verify(__attribute__ ((__unused__)) VALUE block_handler)
{
    ((void)0);
}
static inline int
vm_cfp_forwarded_bh_p(const rb_control_frame_t *cfp, VALUE block_handler)
{
    return ((VALUE) cfp->block_code) == block_handler;
}
static inline enum rb_block_type
vm_block_type(const struct rb_block *block)
{
    return block->type;
}
static inline void
vm_block_type_set(const struct rb_block *block, enum rb_block_type type)
{
    struct rb_block *mb = (struct rb_block *)block;
    mb->type = type;
}
static inline const struct rb_block *
vm_proc_block(VALUE procval)
{
    ((void)0);
    return &((rb_proc_t *)(((struct RTypedData*)(procval))->data))->block;
}
static inline const rb_iseq_t *vm_block_iseq(const struct rb_block *block);
static inline const VALUE *vm_block_ep(const struct rb_block *block);
static inline const rb_iseq_t *
vm_proc_iseq(VALUE procval)
{
    return vm_block_iseq(vm_proc_block(procval));
}
static inline const VALUE *
vm_proc_ep(VALUE procval)
{
    return vm_block_ep(vm_proc_block(procval));
}
static inline const rb_iseq_t *
vm_block_iseq(const struct rb_block *block)
{
    switch (vm_block_type(block)) {
      case block_type_iseq: return rb_iseq_check(block->as.captured.code.iseq);
      case block_type_proc: return vm_proc_iseq(block->as.proc);
      case block_type_ifunc:
      case block_type_symbol: return ((void *)0);
    }
    __builtin_unreachable();
    return ((void *)0);
}
static inline const VALUE *
vm_block_ep(const struct rb_block *block)
{
    switch (vm_block_type(block)) {
      case block_type_iseq:
      case block_type_ifunc: return block->as.captured.ep;
      case block_type_proc: return vm_proc_ep(block->as.proc);
      case block_type_symbol: return ((void *)0);
    }
    __builtin_unreachable();
    return ((void *)0);
}
static inline VALUE
vm_block_self(const struct rb_block *block)
{
    switch (vm_block_type(block)) {
      case block_type_iseq:
      case block_type_ifunc:
 return block->as.captured.self;
      case block_type_proc:
 return vm_block_self(vm_proc_block(block->as.proc));
      case block_type_symbol:
 return ((VALUE)RUBY_Qundef);
    }
    __builtin_unreachable();
    return ((VALUE)RUBY_Qundef);
}
static inline VALUE
VM_BH_TO_SYMBOL(VALUE block_handler)
{
    ((void)0);
    return block_handler;
}
static inline VALUE
VM_BH_FROM_SYMBOL(VALUE symbol)
{
    ((void)0);
    return symbol;
}
static inline VALUE
VM_BH_TO_PROC(VALUE block_handler)
{
    ((void)0);
    return block_handler;
}
static inline VALUE
VM_BH_FROM_PROC(VALUE procval)
{
    ((void)0);
    return procval;
}
VALUE rb_thread_alloc(VALUE klass);
VALUE rb_binding_alloc(VALUE klass);
VALUE rb_proc_alloc(VALUE klass);
VALUE rb_proc_dup(VALUE self);
extern void rb_vmdebug_stack_dump_raw(const rb_execution_context_t *ec, const rb_control_frame_t *cfp);
extern void rb_vmdebug_debug_print_pre(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, const VALUE *_pc);
extern void rb_vmdebug_debug_print_post(const rb_execution_context_t *ec, const rb_control_frame_t *cfp
);
void rb_vm_bugreport(const void *);
typedef void (*ruby_sighandler_t)(int);
__attribute__ ((__noreturn__)) void rb_bug_for_fatal_signal(ruby_sighandler_t default_sighandler, int sig, const void *, const char *fmt, ...);


VALUE rb_iseq_eval(const rb_iseq_t *iseq);
VALUE rb_iseq_eval_main(const rb_iseq_t *iseq);
VALUE rb_iseq_path(const rb_iseq_t *iseq);
VALUE rb_iseq_realpath(const rb_iseq_t *iseq);


VALUE rb_iseq_pathobj_new(VALUE path, VALUE realpath);
void rb_iseq_pathobj_set(const rb_iseq_t *iseq, VALUE path, VALUE realpath);
int rb_ec_frame_method_id_and_class(const rb_execution_context_t *ec, ID *idp, ID *called_idp, VALUE *klassp);
void rb_ec_setup_exception(const rb_execution_context_t *ec, VALUE mesg, VALUE cause);
VALUE rb_vm_invoke_proc(rb_execution_context_t *ec, rb_proc_t *proc, int argc, const VALUE *argv, int kw_splat, VALUE block_handler);
VALUE rb_vm_make_proc_lambda(const rb_execution_context_t *ec, const struct rb_captured_block *captured, VALUE klass, int8_t is_lambda);
static inline VALUE
rb_vm_make_proc(const rb_execution_context_t *ec, const struct rb_captured_block *captured, VALUE klass)
{
    return rb_vm_make_proc_lambda(ec, captured, klass, 0);
}
static inline VALUE
rb_vm_make_lambda(const rb_execution_context_t *ec, const struct rb_captured_block *captured, VALUE klass)
{
    return rb_vm_make_proc_lambda(ec, captured, klass, 1);
}
VALUE rb_vm_make_binding(const rb_execution_context_t *ec, const rb_control_frame_t *src_cfp);
VALUE rb_vm_env_local_variables(const rb_env_t *env);
const rb_env_t *rb_vm_env_prev_env(const rb_env_t *env);
const VALUE *rb_binding_add_dynavars(VALUE bindval, rb_binding_t *bind, int dyncount, const ID *dynvars);
void rb_vm_inc_const_missing_count(void);
void rb_vm_gvl_destroy(rb_vm_t *vm);
VALUE rb_vm_call_kw(rb_execution_context_t *ec, VALUE recv, VALUE id, int argc,
                 const VALUE *argv, const rb_callable_method_entry_t *me, int kw_splat);
static void rb_vm_pop_frame(rb_execution_context_t *ec);
void rb_thread_start_timer_thread(void);
void rb_thread_stop_timer_thread(void);
void rb_thread_reset_timer_thread(void);
void rb_thread_wakeup_timer_thread(int);
static inline void
rb_vm_living_threads_init(rb_vm_t *vm)
{
    list_head_init(&vm->waiting_fds);
    list_head_init(&vm->waiting_pids);
    list_head_init(&vm->workqueue);
    list_head_init(&vm->waiting_grps);
    list_head_init(&vm->living_threads);
    vm->living_thread_num = 0;
}
static inline void
rb_vm_living_threads_insert(rb_vm_t *vm, rb_thread_t *th)
{
    list_add_tail_(&vm->living_threads, &th->vmlt_node, "./vm_core.h" ":" "1703");
    vm->living_thread_num++;
}
static inline void
rb_vm_living_threads_remove(rb_vm_t *vm, rb_thread_t *th)
{
    list_del_(&th->vmlt_node, "./vm_core.h" ":" "1710");
    vm->living_thread_num--;
}
typedef int rb_backtrace_iter_func(void *, VALUE, int, VALUE);
rb_control_frame_t *rb_vm_get_ruby_level_next_cfp(const rb_execution_context_t *ec, const rb_control_frame_t *cfp);
rb_control_frame_t *rb_vm_get_binding_creatable_next_cfp(const rb_execution_context_t *ec, const rb_control_frame_t *cfp);
int rb_vm_get_sourceline(const rb_control_frame_t *);
void rb_vm_stack_to_heap(rb_execution_context_t *ec);
void ruby_thread_init_stack(rb_thread_t *th);
int rb_vm_control_frame_id_and_class(const rb_control_frame_t *cfp, ID *idp, ID *called_idp, VALUE *klassp);
void rb_vm_rewind_cfp(rb_execution_context_t *ec, rb_control_frame_t *cfp);
static VALUE rb_vm_bh_to_procval(const rb_execution_context_t *ec, VALUE block_handler);
void rb_vm_register_special_exception_str(enum ruby_special_exceptions sp, VALUE exception_class, VALUE mesg);
void rb_gc_mark_machine_stack(const rb_execution_context_t *ec);static inline 
void rb_vm_rewrite_cref(rb_cref_t *node, VALUE old_klass, VALUE new_klass, rb_cref_t **new_cref_ptr);
static const rb_callable_method_entry_t *rb_vm_frame_method_entry(const rb_control_frame_t *cfp);
VALUE rb_catch_protect(VALUE t, rb_block_call_func *func, VALUE data, enum ruby_tag_type *stateptr);


extern rb_vm_t *ruby_current_vm_ptr;
extern rb_execution_context_t *ruby_current_execution_context_ptr;
extern rb_event_flag_t ruby_vm_event_flags;
extern rb_event_flag_t ruby_vm_event_enabled_global_flags;
extern unsigned int ruby_vm_event_local_num;


static inline rb_thread_t *
rb_ec_thread_ptr(const rb_execution_context_t *ec)
{
    return ec->thread_ptr;
}
static inline rb_vm_t *
rb_ec_vm_ptr(const rb_execution_context_t *ec)
{
    const rb_thread_t *th = rb_ec_thread_ptr(ec);
    if (th) {
 return th->vm;
    }
    else {
 return ((void *)0);
    }
}
static inline rb_execution_context_t *
rb_current_execution_context(void)
{
    return ruby_current_execution_context_ptr;
}
static inline rb_thread_t *
rb_current_thread(void)
{
    const rb_execution_context_t *ec = rb_current_execution_context();
    return rb_ec_thread_ptr(ec);
}
static inline rb_vm_t *
rb_current_vm(void)
{
    ((void)0);
    return ruby_current_vm_ptr;
}
static inline void
rb_thread_set_current_raw(const rb_thread_t *th)
{
    ruby_current_execution_context_ptr = th->ec;
}
static inline void
rb_thread_set_current(rb_thread_t *th)
{
    if (th->vm->running_thread != th) {
        th->running_time_us = 0;
    }
    rb_thread_set_current_raw(th);
    th->vm->running_thread = th;
}
enum {
    TIMER_INTERRUPT_MASK = 0x01,
    PENDING_INTERRUPT_MASK = 0x02,
    POSTPONED_JOB_INTERRUPT_MASK = 0x04,
    TRAP_INTERRUPT_MASK = 0x08
};
VALUE rb_exc_set_backtrace(VALUE exc, VALUE bt);
int rb_signal_buff_size(void);
int rb_signal_exec(rb_thread_t *th, int sig);
void rb_threadptr_check_signal(rb_thread_t *mth);
void rb_threadptr_signal_raise(rb_thread_t *th, int sig);
void rb_threadptr_signal_exit(rb_thread_t *th);
int rb_threadptr_execute_interrupts(rb_thread_t *, int);
void rb_threadptr_interrupt(rb_thread_t *th);
void rb_threadptr_unlock_all_locking_mutexes(rb_thread_t *th);
void rb_threadptr_pending_interrupt_clear(rb_thread_t *th);
void rb_threadptr_pending_interrupt_enque(rb_thread_t *th, VALUE v);
VALUE rb_ec_get_errinfo(const rb_execution_context_t *ec);
void rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo);
void rb_execution_context_update(const rb_execution_context_t *ec);
void rb_execution_context_mark(const rb_execution_context_t *ec);
void rb_fiber_close(rb_fiber_t *fib);
void Init_native_thread(rb_thread_t *th);
static inline void
rb_vm_check_ints(rb_execution_context_t *ec)
{
    ((void)0);
    if ((__builtin_expect(!!(((ec)->interrupt_flag & ~(ec)->interrupt_mask)), 0))) {
 rb_threadptr_execute_interrupts(rb_ec_thread_ptr(ec), 0);
    }
}
struct rb_trace_arg_struct {
    rb_event_flag_t event;
    rb_execution_context_t *ec;
    const rb_control_frame_t *cfp;
    VALUE self;
    ID id;
    ID called_id;
    VALUE klass;
    VALUE data;
    int klass_solved;
    int lineno;
    VALUE path;
};
void rb_hook_list_mark(rb_hook_list_t *hooks);
void rb_hook_list_free(rb_hook_list_t *hooks);
void rb_hook_list_connect_tracepoint(VALUE target, rb_hook_list_t *list, VALUE tpval, unsigned int target_line);
void rb_hook_list_remove_tracepoint(rb_hook_list_t *list, VALUE tpval);
void rb_exec_event_hooks(struct rb_trace_arg_struct *trace_arg, rb_hook_list_t *hooks, int pop_p);
static inline void
rb_exec_event_hook_orig(rb_execution_context_t *ec, rb_hook_list_t *hooks, rb_event_flag_t flag,
                        VALUE self, ID id, ID called_id, VALUE klass, VALUE data, int pop_p)
{
    struct rb_trace_arg_struct trace_arg;
    ((void)0);
    trace_arg.event = flag;
    trace_arg.ec = ec;
    trace_arg.cfp = ec->cfp;
    trace_arg.self = self;
    trace_arg.id = id;
    trace_arg.called_id = called_id;
    trace_arg.klass = klass;
    trace_arg.data = data;
    trace_arg.path = ((VALUE)RUBY_Qundef);
    trace_arg.klass_solved = 0;
    rb_exec_event_hooks(&trace_arg, hooks, pop_p);
}
static inline rb_hook_list_t *
rb_vm_global_hooks(const rb_execution_context_t *ec)
{
    return &rb_ec_vm_ptr(ec)->global_hooks;
}
static inline void
rb_exec_event_hook_script_compiled(rb_execution_context_t *ec, const rb_iseq_t *iseq, VALUE eval_script)
{
    do { const rb_event_flag_t flag_arg_ = (0x2000); rb_hook_list_t *hooks_arg_ = (rb_vm_global_hooks(ec)); if ((__builtin_expect(!!((hooks_arg_)->events & (flag_arg_)), 0))) { rb_exec_event_hook_orig(ec, hooks_arg_, flag_arg_, ec->cfp->self, 0, 0, 0, !((VALUE)(eval_script) != ((VALUE)RUBY_Qnil)) ? (VALUE)iseq : __extension__ ({ const VALUE args_to_new_ary[] = {eval_script, (VALUE)iseq}; if (__builtin_constant_p(2)) { _Static_assert(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))) == (2), "rb_ary_new_from_args" ": " "numberof(args_to_new_ary) == (2)"); } rb_ary_new_from_values(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))), args_to_new_ary); }), 0); } } while (0);
}
void rb_vm_trap_exit(rb_vm_t *vm);


int rb_thread_check_trap_pending(void);
extern VALUE rb_get_coverages(void);
extern void rb_set_coverages(VALUE, int, VALUE);
extern void rb_clear_coverages(void);
extern void rb_reset_coverages(void);
void rb_postponed_job_flush(rb_vm_t *vm);




VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
int ruby_debug_print_indent(int level, int debug_level, int indent_level);
void ruby_debug_gc_check_func(void);
void ruby_set_debug_option(const char *str);


extern const int ruby_api_version[];
extern const ID rb_iseq_shared_exc_local_tbl[];
static inline size_t
rb_call_info_kw_arg_bytes(int keyword_len)
{
    return rb_size_mul_add_or_raise(
        keyword_len - 1, sizeof(VALUE), sizeof(struct rb_call_info_kw_arg),
        rb_eRuntimeError);
}
static inline rb_snum_t
ISEQ_FLIP_CNT_INCREMENT(const rb_iseq_t *iseq)
{
    rb_snum_t cnt = iseq->body->variable.flip_count;
    iseq->body->variable.flip_count += 1;
    return cnt;
}
static inline VALUE *
ISEQ_ORIGINAL_ISEQ(const rb_iseq_t *iseq)
{
    return iseq->body->variable.original_iseq;
}
static inline void
ISEQ_ORIGINAL_ISEQ_CLEAR(const rb_iseq_t *iseq)
{
    void *ptr = iseq->body->variable.original_iseq;
    iseq->body->variable.original_iseq = ((void *)0);
    if (ptr) {
        ruby_xfree(ptr);
    }
}
static inline VALUE *
ISEQ_ORIGINAL_ISEQ_ALLOC(const rb_iseq_t *iseq, long size)
{
    return iseq->body->variable.original_iseq =
        ((VALUE*)ruby_xmalloc2((size_t)(size),sizeof(VALUE)));
}
struct iseq_compile_data {
    const VALUE err_info;
    const VALUE catch_table_ary;
    struct iseq_label_data *start_label;
    struct iseq_label_data *end_label;
    struct iseq_label_data *redo_label;
    const rb_iseq_t *current_block;
    struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
    struct {
      struct iseq_compile_data_storage *storage_head;
      struct iseq_compile_data_storage *storage_current;
    } node;
    struct {
      struct iseq_compile_data_storage *storage_head;
      struct iseq_compile_data_storage *storage_current;
    } insn;
    int loopval_popped;
    int last_line;
    int label_no;
    int node_level;
    unsigned int ci_index;
    unsigned int ci_kw_index;
    const rb_compile_option_t *option;
    struct rb_id_table *ivar_cache_table;
    const struct rb_builtin_function *builtin_function_table;
};
static inline struct iseq_compile_data *
ISEQ_COMPILE_DATA(const rb_iseq_t *iseq)
{
    if (iseq->flags & ((VALUE)RUBY_FL_USER6)) {
 return iseq->aux.compile_data;
    }
    else {
 return ((void *)0);
    }
}
static inline void
ISEQ_COMPILE_DATA_ALLOC(rb_iseq_t *iseq)
{
    iseq->aux.compile_data = (((struct iseq_compile_data*)ruby_xcalloc((size_t)(1),sizeof(struct iseq_compile_data))));
    iseq->flags |= ((VALUE)RUBY_FL_USER6);
}
static inline void
ISEQ_COMPILE_DATA_CLEAR(rb_iseq_t *iseq)
{
    iseq->flags &= ~((VALUE)RUBY_FL_USER6);
    iseq->aux.compile_data = ((void *)0);
}
static inline rb_iseq_t *
iseq_imemo_alloc(void)
{
    return (rb_iseq_t *)rb_imemo_new(imemo_iseq, 0, 0, 0, 0);
}
VALUE rb_iseq_ibf_dump(const rb_iseq_t *iseq, VALUE opt);
void rb_ibf_load_iseq_complete(rb_iseq_t *iseq);
const rb_iseq_t *rb_iseq_ibf_load(VALUE str);
const rb_iseq_t *rb_iseq_ibf_load_bytes(const char *cstr, size_t);
VALUE rb_iseq_ibf_load_extra_data(VALUE str);
void rb_iseq_init_trace(rb_iseq_t *iseq);
int rb_iseq_add_local_tracepoint_recursively(const rb_iseq_t *iseq, rb_event_flag_t turnon_events, VALUE tpval, unsigned int target_line);
int rb_iseq_remove_local_tracepoint_recursively(const rb_iseq_t *iseq, VALUE tpval);
const rb_iseq_t *rb_iseq_load_iseq(VALUE fname);
unsigned int *rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body);


VALUE rb_iseq_compile_node(rb_iseq_t *iseq, const NODE *node);
VALUE rb_iseq_compile_callback(rb_iseq_t *iseq, const struct rb_iseq_new_with_callback_callback_func * ifunc);
VALUE *rb_iseq_original_iseq(const rb_iseq_t *iseq);
void rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE misc,
       VALUE locals, VALUE args,
       VALUE exception, VALUE body);
void rb_iseq_mark_insn_storage(struct iseq_compile_data_storage *arena);
VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc);
unsigned int rb_iseq_line_no(const rb_iseq_t *iseq, size_t pos);
void rb_iseq_trace_set(const rb_iseq_t *iseq, rb_event_flag_t turnon_events);
void rb_iseq_trace_set_all(rb_event_flag_t turnon_events);
void rb_iseq_insns_info_encode_positions(const rb_iseq_t *iseq);
struct rb_iseq_constant_body *rb_iseq_constant_body_alloc(void);
VALUE rb_iseqw_new(const rb_iseq_t *iseq);
const rb_iseq_t *rb_iseqw_to_iseq(VALUE iseqw);
VALUE rb_iseq_absolute_path(const rb_iseq_t *iseq);
VALUE rb_iseq_label(const rb_iseq_t *iseq);
VALUE rb_iseq_base_label(const rb_iseq_t *iseq);
VALUE rb_iseq_first_lineno(const rb_iseq_t *iseq);
VALUE rb_iseq_method_name(const rb_iseq_t *iseq);
void rb_iseq_code_location(const rb_iseq_t *iseq, int *first_lineno, int *first_column, int *last_lineno, int *last_column);
void rb_iseq_remove_coverage_all(void);
const rb_iseq_t *rb_method_iseq(VALUE body);
const rb_iseq_t *rb_proc_get_iseq(VALUE proc, int *is_proc);
struct rb_compile_option_struct {
    unsigned int inline_const_cache: 1;
    unsigned int peephole_optimization: 1;
    unsigned int tailcall_optimization: 1;
    unsigned int specialized_instruction: 1;
    unsigned int operands_unification: 1;
    unsigned int instructions_unification: 1;
    unsigned int stack_caching: 1;
    unsigned int frozen_string_literal: 1;
    unsigned int debug_frozen_string_literal: 1;
    unsigned int coverage_enabled: 1;
    int debug_level;
};
struct iseq_insn_info_entry {
    int line_no;
    rb_event_flag_t events;
};
struct iseq_catch_table_entry {
    enum catch_type {
 CATCH_TYPE_RESCUE = (((VALUE)(1))<<1 | RUBY_FIXNUM_FLAG),
 CATCH_TYPE_ENSURE = (((VALUE)(2))<<1 | RUBY_FIXNUM_FLAG),
 CATCH_TYPE_RETRY = (((VALUE)(3))<<1 | RUBY_FIXNUM_FLAG),
 CATCH_TYPE_BREAK = (((VALUE)(4))<<1 | RUBY_FIXNUM_FLAG),
 CATCH_TYPE_REDO = (((VALUE)(5))<<1 | RUBY_FIXNUM_FLAG),
 CATCH_TYPE_NEXT = (((VALUE)(6))<<1 | RUBY_FIXNUM_FLAG)
    } type;
    rb_iseq_t *iseq;
    unsigned int start;
    unsigned int end;
    unsigned int cont;
    unsigned int sp;
};
struct iseq_catch_table { unsigned int size; struct iseq_catch_table_entry entries[]; } __attribute__((packed));
static inline int
iseq_catch_table_bytes(int n)
{
    enum {
 catch_table_entry_size = sizeof(struct iseq_catch_table_entry),
 catch_table_entries_max = (0x7fffffff - __builtin_offsetof (struct iseq_catch_table, entries)) / catch_table_entry_size
    };
    if (n > catch_table_entries_max) rb_fatal("too large iseq_catch_table - %d", n);
    return (int)(__builtin_offsetof (struct iseq_catch_table, entries) +
   n * catch_table_entry_size);
}
struct iseq_compile_data_storage {
    struct iseq_compile_data_storage *next;
    unsigned int pos;
    unsigned int size;
    char buff[];
};
enum defined_type {
    DEFINED_NOT_DEFINED,
    DEFINED_NIL = 1,
    DEFINED_IVAR,
    DEFINED_LVAR,
    DEFINED_GVAR,
    DEFINED_CVAR,
    DEFINED_CONST,
    DEFINED_METHOD,
    DEFINED_YIELD,
    DEFINED_ZSUPER,
    DEFINED_SELF,
    DEFINED_TRUE,
    DEFINED_FALSE,
    DEFINED_ASGN,
    DEFINED_EXPR,
    DEFINED_IVAR2,
    DEFINED_REF,
    DEFINED_FUNC,
    DEFINED_CONST_FROM
};
VALUE rb_iseq_defined_string(enum defined_type type);
VALUE rb_iseq_local_variables(const rb_iseq_t *iseq);


static inline void
vm_passed_block_handler_set(rb_execution_context_t *ec, VALUE block_handler)
{
    vm_block_handler_verify(block_handler);
    ec->passed_block_handler = block_handler;
}
static inline void
pass_passed_block_handler(rb_execution_context_t *ec)
{
    VALUE block_handler = rb_vm_frame_block_handler(ec->cfp);
    vm_passed_block_handler_set(ec, block_handler);
    VM_ENV_FLAGS_SET(ec->cfp->ep, VM_FRAME_FLAG_PASSED);
}

extern int *__errno_location (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));
extern char *program_invocation_name;
extern char *program_invocation_short_name;
typedef int error_t;

static inline int
rb_ec_tag_state(const rb_execution_context_t *ec)
{
    enum ruby_tag_type state = ec->tag->state;
    ec->tag->state = RUBY_TAG_NONE;
    return state;
}
__attribute__ ((__noreturn__)) static inline void rb_ec_tag_jump(const rb_execution_context_t *ec, enum ruby_tag_type st);
static inline void
rb_ec_tag_jump(const rb_execution_context_t *ec, enum ruby_tag_type st)
{
    ec->tag->state = st;
    _longjmp(((ec->tag->buf)),(1));
}
static inline VALUE
CREF_CLASS(const rb_cref_t *cref)
{
    return cref->klass;
}
static inline rb_cref_t *
CREF_NEXT(const rb_cref_t *cref)
{
    return cref->next;
}
static inline const rb_scope_visibility_t *
CREF_SCOPE_VISI(const rb_cref_t *cref)
{
    return &cref->scope_visi;
}
static inline VALUE
CREF_REFINEMENTS(const rb_cref_t *cref)
{
    return cref->refinements;
}
static inline void
CREF_REFINEMENTS_SET(rb_cref_t *cref, VALUE refs)
{
    rb_obj_write((VALUE)(cref), (VALUE *)(&cref->refinements), (VALUE)(refs), "./eval_intern.h", 220);
}
static inline int
CREF_PUSHED_BY_EVAL(const rb_cref_t *cref)
{
    return cref->flags & ((VALUE)RUBY_FL_USER5);
}
static inline void
CREF_PUSHED_BY_EVAL_SET(rb_cref_t *cref)
{
    cref->flags |= ((VALUE)RUBY_FL_USER5);
}
static inline int
CREF_OMOD_SHARED(const rb_cref_t *cref)
{
    return cref->flags & ((VALUE)RUBY_FL_USER6);
}
static inline void
CREF_OMOD_SHARED_SET(rb_cref_t *cref)
{
    cref->flags |= ((VALUE)RUBY_FL_USER6);
}
static inline void
CREF_OMOD_SHARED_UNSET(rb_cref_t *cref)
{
    cref->flags &= ~((VALUE)RUBY_FL_USER6);
}
enum {
    RAISED_EXCEPTION = 1,
    RAISED_STACKOVERFLOW = 2,
    RAISED_NOMEMORY = 4
};
int rb_ec_set_raised(rb_execution_context_t *ec);
int rb_ec_reset_raised(rb_execution_context_t *ec);
int rb_ec_stack_check(rb_execution_context_t *ec);
VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
VALUE rb_make_exception(int argc, const VALUE *argv);
__attribute__ ((__noreturn__)) void rb_method_name_error(VALUE, VALUE);
__attribute__ ((__noreturn__)) void rb_fiber_start(void);
__attribute__ ((__noreturn__)) void rb_print_undef(VALUE, ID, rb_method_visibility_t);
__attribute__ ((__noreturn__)) void rb_print_undef_str(VALUE, VALUE);
__attribute__ ((__noreturn__)) void rb_print_inaccessible(VALUE, ID, rb_method_visibility_t);
__attribute__ ((__noreturn__)) void rb_vm_localjump_error(const char *,VALUE, int);
__attribute__ ((__noreturn__)) void rb_vm_jump_tag_but_local_jump(int);
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
rb_cref_t *rb_vm_cref(void);
rb_cref_t *rb_vm_cref_replace_with_duplicated_cref(void);
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, VALUE block_handler, VALUE filename);
void rb_vm_set_progname(VALUE filename);
void rb_thread_terminate_all(void);
VALUE rb_vm_cbase(void);
VALUE rb_ec_backtrace_object(const rb_execution_context_t *ec);
VALUE rb_ec_backtrace_str_ary(const rb_execution_context_t *ec, long lev, long n);
VALUE rb_ec_backtrace_location_ary(const rb_execution_context_t *ec, long lev, long n);
static inline const char *
rb_char_next(const char *p)
{
    if (p) {
        int len = mblen(p, 0x7fffffff);
        p += len > 0 ? len : 1;
    }
    return p;
}
struct rb_builtin_function {
    const void * const func_ptr;
    const int argc;
    const int index;
    const char * const name;
};
void rb_load_with_builtin_functions(const char *feature_name, const struct rb_builtin_function *table);
static inline void rb_builtin_function_check_arity0(VALUE (*f)(rb_execution_context_t *ec, VALUE self)){}
static inline void rb_builtin_function_check_arity1(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE)){}
static inline void rb_builtin_function_check_arity2(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity3(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity4(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity5(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity6(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity7(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity8(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity9(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity10(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity11(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity12(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity13(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity14(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}
static inline void rb_builtin_function_check_arity15(VALUE (*f)(rb_execution_context_t *ec, VALUE self, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE)){}static inline 
VALUE rb_vm_lvar_exposed(rb_execution_context_t *ec, int index);
__attribute__ ((__pure__)) static inline VALUE rb_vm_lvar(rb_execution_context_t *ec, int index);
static inline VALUE
rb_vm_lvar(rb_execution_context_t *ec, int index)
{
    return ec->cfp->ep[index];
}
struct builtin_binary {
    const char *feature;
    const unsigned char *bin;
    size_t bin_size;
};
struct ruby_dtrace_method_hook_args {
    const char *classname;
    const char *methodname;
    const char *filename;
    int line_no;
    volatile VALUE klass;
    volatile VALUE name;
};
__attribute__ ((__noinline__)) int rb_dtrace_setup(rb_execution_context_t *, VALUE, ID, struct ruby_dtrace_method_hook_args *);
VALUE rb_str_concat_literals(size_t, const VALUE*);
__attribute__ ((__visibility__("default"))) extern
VALUE rb_vm_exec(rb_execution_context_t *, int);
__attribute__ ((__pure__)) static inline const VALUE *VM_EP_LEP(const VALUE *);
static inline const VALUE *
VM_EP_LEP(const VALUE *ep)
{
    while (!VM_ENV_LOCAL_P(ep)) {
 ep = VM_ENV_PREV_EP(ep);
    }
    return ep;
}
static inline const rb_control_frame_t *
rb_vm_search_cf_from_ep(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, const VALUE * const ep)
{
    if (!ep) {
 return ((void *)0);
    }
    else {
 const rb_control_frame_t * const eocfp = RUBY_VM_END_CONTROL_FRAME(ec);
 while (cfp < eocfp) {
     if (cfp->ep == ep) {
  return cfp;
     }
     cfp = ((cfp)+1);
 }
 return ((void *)0);
    }
}static inline 
const VALUE *
rb_vm_ep_local_ep(const VALUE *ep)
{
    return VM_EP_LEP(ep);
}
__attribute__ ((__pure__)) static inline const VALUE *VM_CF_LEP(const rb_control_frame_t * const cfp);
static inline const VALUE *
VM_CF_LEP(const rb_control_frame_t * const cfp)
{
    return VM_EP_LEP(cfp->ep);
}
static inline const VALUE *
VM_CF_PREV_EP(const rb_control_frame_t * const cfp)
{
    return VM_ENV_PREV_EP(cfp->ep);
}
__attribute__ ((__pure__)) static inline VALUE VM_CF_BLOCK_HANDLER(const rb_control_frame_t * const cfp);
static inline VALUE
VM_CF_BLOCK_HANDLER(const rb_control_frame_t * const cfp)
{
    const VALUE *ep = VM_CF_LEP(cfp);
    return VM_ENV_BLOCK_HANDLER(ep);
}static inline 
int
rb_vm_cframe_keyword_p(const rb_control_frame_t *cfp)
{
    return VM_FRAME_CFRAME_KW_P(cfp);
}static inline 
int
rb_vm_cframe_empty_keyword_p(const rb_control_frame_t *cfp)
{
    return VM_FRAME_CFRAME_EMPTY_KW_P(cfp);
}static inline 
VALUE
rb_vm_frame_block_handler(const rb_control_frame_t *cfp)
{
    return VM_CF_BLOCK_HANDLER(cfp);
}
static struct rb_captured_block *
VM_CFP_TO_CAPTURED_BLOCK(const rb_control_frame_t *cfp)
{
    ((void)0);
    return (struct rb_captured_block *)&cfp->self;
}
static rb_control_frame_t *
VM_CAPTURED_BLOCK_TO_CFP(const struct rb_captured_block *captured)
{
    rb_control_frame_t *cfp = ((rb_control_frame_t *)((VALUE *)(captured) - 3));
    ((void)0);
    ((void)0);
    return cfp;
}
static int
VM_BH_FROM_CFP_P(VALUE block_handler, const rb_control_frame_t *cfp)
{
    const struct rb_captured_block *captured = VM_CFP_TO_CAPTURED_BLOCK(cfp);
    return ((void *)((block_handler) & ~0x03)) == captured;
}
static VALUE
vm_passed_block_handler(rb_execution_context_t *ec)
{
    VALUE block_handler = ec->passed_block_handler;
    ec->passed_block_handler = 0;
    vm_block_handler_verify(block_handler);
    return block_handler;
}
static rb_cref_t *
vm_cref_new0(VALUE klass, rb_method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval, int use_prev_prev)
{
    VALUE refinements = ((VALUE)RUBY_Qnil);
    int omod_shared = 0;
    rb_cref_t *cref;
    union {
 rb_scope_visibility_t visi;
 VALUE value;
    } scope_visi;
    scope_visi.visi.method_visi = visi;
    scope_visi.visi.module_func = module_func;
    if (prev_cref != ((void *)0) && prev_cref != (void *)1 ) {
 refinements = CREF_REFINEMENTS(prev_cref);
 if (!!((VALUE)(refinements) != ((VALUE)RUBY_Qnil))) {
     omod_shared = 1;
     CREF_OMOD_SHARED_SET(prev_cref);
 }
    }
    cref = (rb_cref_t *)rb_imemo_new(imemo_cref, klass, (VALUE)(use_prev_prev ? CREF_NEXT(prev_cref) : prev_cref), scope_visi.value, refinements);
    if (pushed_by_eval) CREF_PUSHED_BY_EVAL_SET(cref);
    if (omod_shared) CREF_OMOD_SHARED_SET(cref);
    return cref;
}
static rb_cref_t *
vm_cref_new(VALUE klass, rb_method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval)
{
    return vm_cref_new0(klass, visi, module_func, prev_cref, pushed_by_eval, 0);
}
static rb_cref_t *
vm_cref_new_use_prev(VALUE klass, rb_method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval)
{
    return vm_cref_new0(klass, visi, module_func, prev_cref, pushed_by_eval, 1);
}
static int
ref_delete_symkey(VALUE key, VALUE value, VALUE unused)
{
    return ((((VALUE)(key)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(key) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(key) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(key))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) ? ST_DELETE : ST_CONTINUE;
}
static rb_cref_t *
vm_cref_dup(const rb_cref_t *cref)
{
    VALUE klass = CREF_CLASS(cref);
    const rb_scope_visibility_t *visi = CREF_SCOPE_VISI(cref);
    rb_cref_t *next_cref = CREF_NEXT(cref), *new_cref;
    int pushed_by_eval = CREF_PUSHED_BY_EVAL(cref);
    new_cref = vm_cref_new(klass, visi->method_visi, visi->module_func, next_cref, pushed_by_eval);
    if (!!((VALUE)(CREF_REFINEMENTS(cref)) != ((VALUE)RUBY_Qnil))) {
        VALUE ref = rb_hash_dup(CREF_REFINEMENTS(cref));
        rb_hash_foreach(ref, ref_delete_symkey, ((VALUE)RUBY_Qnil));
        CREF_REFINEMENTS_SET(new_cref, ref);
 CREF_OMOD_SHARED_UNSET(new_cref);
    }
    return new_cref;
}
static rb_cref_t *
vm_cref_new_toplevel(rb_execution_context_t *ec)
{
    rb_cref_t *cref = vm_cref_new(rb_cObject, METHOD_VISI_PRIVATE , 0, ((void *)0), 0);
    VALUE top_wrapper = rb_ec_thread_ptr(ec)->top_wrapper;
    if (top_wrapper) {
 cref = vm_cref_new(top_wrapper, METHOD_VISI_PRIVATE, 0, cref, 0);
    }
    return cref;
}static inline 
rb_cref_t *
rb_vm_cref_new_toplevel(void)
{
    return vm_cref_new_toplevel(rb_current_execution_context());
}
static void
vm_cref_dump(const char *mesg, const rb_cref_t *cref)
{
    fprintf(stderr, "vm_cref_dump: %s (%p)\n", mesg, (void *)cref);
    while (cref) {
 fprintf(stderr, "= cref| klass: %s\n", (!(((struct RBasic*)(rb_class_path(CREF_CLASS(cref))))->flags & RSTRING_NOEMBED) ? ((struct RString*)(rb_class_path(CREF_CLASS(cref))))->as.ary : ((struct RString*)(rb_class_path(CREF_CLASS(cref))))->as.heap.ptr));
 cref = CREF_NEXT(cref);
    }
}static inline 
void
rb_vm_block_ep_update(VALUE obj, const struct rb_block *dst, const VALUE *ep)
{
    *((const VALUE **)&dst->as.captured.ep) = ep;
    rb_obj_written((VALUE)(obj), (VALUE)(((VALUE)RUBY_Qundef)), (VALUE)(VM_ENV_ENVVAL(ep)), "./vm.c", 318);
}
static void
vm_bind_update_env(VALUE bindval, rb_binding_t *bind, VALUE envval)
{
    const rb_env_t *env = (rb_env_t *)envval;
    rb_obj_write((VALUE)(bindval), (VALUE *)(&bind->block.as.captured.code.iseq), (VALUE)(env->iseq), "./vm.c", 325);
    rb_vm_block_ep_update(bindval, &bind->block, env->ep);
}
static VALUE vm_make_env_object(const rb_execution_context_t *ec, rb_control_frame_t *cfp);
extern VALUE rb_vm_invoke_bmethod(rb_execution_context_t *ec, rb_proc_t *proc, VALUE self,
                                  int argc, const VALUE *argv, int kw_splat, VALUE block_handler,
                                  const rb_callable_method_entry_t *me);
static VALUE vm_invoke_proc(rb_execution_context_t *ec, rb_proc_t *proc, VALUE self, int argc, const VALUE *argv, int kw_splat, VALUE block_handler);
enum rb_debug_counter_type {
RB_DEBUG_COUNTER_mc_inline_hit,
RB_DEBUG_COUNTER_mc_inline_miss,
RB_DEBUG_COUNTER_mc_global_hit,
RB_DEBUG_COUNTER_mc_global_miss,
RB_DEBUG_COUNTER_mc_global_state_miss,
RB_DEBUG_COUNTER_mc_class_serial_miss,
RB_DEBUG_COUNTER_mc_cme_complement,
RB_DEBUG_COUNTER_mc_cme_complement_hit,
RB_DEBUG_COUNTER_mc_search_super,
RB_DEBUG_COUNTER_mc_miss_by_nome,
RB_DEBUG_COUNTER_mc_miss_by_distinct,
RB_DEBUG_COUNTER_mc_miss_by_refine,
RB_DEBUG_COUNTER_mc_miss_by_visi,
RB_DEBUG_COUNTER_mc_miss_spurious,
RB_DEBUG_COUNTER_mc_miss_reuse_call,
RB_DEBUG_COUNTER_ccf_general,
RB_DEBUG_COUNTER_ccf_iseq_setup,
RB_DEBUG_COUNTER_ccf_iseq_setup_0start,
RB_DEBUG_COUNTER_ccf_iseq_setup_tailcall_0start,
RB_DEBUG_COUNTER_ccf_iseq_fix,
RB_DEBUG_COUNTER_ccf_iseq_opt,
RB_DEBUG_COUNTER_ccf_iseq_kw1,
RB_DEBUG_COUNTER_ccf_iseq_kw2,
RB_DEBUG_COUNTER_ccf_cfunc,
RB_DEBUG_COUNTER_ccf_ivar,
RB_DEBUG_COUNTER_ccf_attrset,
RB_DEBUG_COUNTER_ccf_method_missing,
RB_DEBUG_COUNTER_ccf_zsuper,
RB_DEBUG_COUNTER_ccf_bmethod,
RB_DEBUG_COUNTER_ccf_opt_send,
RB_DEBUG_COUNTER_ccf_opt_call,
RB_DEBUG_COUNTER_ccf_opt_block_call,
RB_DEBUG_COUNTER_ccf_super_method,
RB_DEBUG_COUNTER_frame_push,
RB_DEBUG_COUNTER_frame_push_method,
RB_DEBUG_COUNTER_frame_push_block,
RB_DEBUG_COUNTER_frame_push_class,
RB_DEBUG_COUNTER_frame_push_top,
RB_DEBUG_COUNTER_frame_push_cfunc,
RB_DEBUG_COUNTER_frame_push_ifunc,
RB_DEBUG_COUNTER_frame_push_eval,
RB_DEBUG_COUNTER_frame_push_rescue,
RB_DEBUG_COUNTER_frame_push_dummy,
RB_DEBUG_COUNTER_frame_R2R,
RB_DEBUG_COUNTER_frame_R2C,
RB_DEBUG_COUNTER_frame_C2C,
RB_DEBUG_COUNTER_frame_C2R,
RB_DEBUG_COUNTER_ivar_get_ic_hit,
RB_DEBUG_COUNTER_ivar_get_ic_miss,
RB_DEBUG_COUNTER_ivar_get_ic_miss_serial,
RB_DEBUG_COUNTER_ivar_get_ic_miss_unset,
RB_DEBUG_COUNTER_ivar_get_ic_miss_noobject,
RB_DEBUG_COUNTER_ivar_set_ic_hit,
RB_DEBUG_COUNTER_ivar_set_ic_miss,
RB_DEBUG_COUNTER_ivar_set_ic_miss_serial,
RB_DEBUG_COUNTER_ivar_set_ic_miss_unset,
RB_DEBUG_COUNTER_ivar_set_ic_miss_oorange,
RB_DEBUG_COUNTER_ivar_set_ic_miss_noobject,
RB_DEBUG_COUNTER_ivar_get_base,
RB_DEBUG_COUNTER_ivar_set_base,
RB_DEBUG_COUNTER_lvar_get,
RB_DEBUG_COUNTER_lvar_get_dynamic,
RB_DEBUG_COUNTER_lvar_set,
RB_DEBUG_COUNTER_lvar_set_dynamic,
RB_DEBUG_COUNTER_lvar_set_slowpath,
RB_DEBUG_COUNTER_gc_count,
RB_DEBUG_COUNTER_gc_minor_newobj,
RB_DEBUG_COUNTER_gc_minor_malloc,
RB_DEBUG_COUNTER_gc_minor_method,
RB_DEBUG_COUNTER_gc_minor_capi,
RB_DEBUG_COUNTER_gc_minor_stress,
RB_DEBUG_COUNTER_gc_major_nofree,
RB_DEBUG_COUNTER_gc_major_oldgen,
RB_DEBUG_COUNTER_gc_major_shady,
RB_DEBUG_COUNTER_gc_major_force,
RB_DEBUG_COUNTER_gc_major_oldmalloc,
RB_DEBUG_COUNTER_gc_isptr_trial,
RB_DEBUG_COUNTER_gc_isptr_range,
RB_DEBUG_COUNTER_gc_isptr_align,
RB_DEBUG_COUNTER_gc_isptr_maybe,
RB_DEBUG_COUNTER_obj_newobj,
RB_DEBUG_COUNTER_obj_newobj_slowpath,
RB_DEBUG_COUNTER_obj_newobj_wb_unprotected,
RB_DEBUG_COUNTER_obj_free,
RB_DEBUG_COUNTER_obj_promote,
RB_DEBUG_COUNTER_obj_wb_unprotect,
RB_DEBUG_COUNTER_obj_obj_embed,
RB_DEBUG_COUNTER_obj_obj_transient,
RB_DEBUG_COUNTER_obj_obj_ptr,
RB_DEBUG_COUNTER_obj_str_ptr,
RB_DEBUG_COUNTER_obj_str_embed,
RB_DEBUG_COUNTER_obj_str_shared,
RB_DEBUG_COUNTER_obj_str_nofree,
RB_DEBUG_COUNTER_obj_str_fstr,
RB_DEBUG_COUNTER_obj_ary_embed,
RB_DEBUG_COUNTER_obj_ary_transient,
RB_DEBUG_COUNTER_obj_ary_ptr,
RB_DEBUG_COUNTER_obj_ary_extracapa,
RB_DEBUG_COUNTER_obj_ary_shared_create,
RB_DEBUG_COUNTER_obj_ary_shared,
RB_DEBUG_COUNTER_obj_ary_shared_root_occupied,
RB_DEBUG_COUNTER_obj_hash_empty,
RB_DEBUG_COUNTER_obj_hash_1,
RB_DEBUG_COUNTER_obj_hash_2,
RB_DEBUG_COUNTER_obj_hash_3,
RB_DEBUG_COUNTER_obj_hash_4,
RB_DEBUG_COUNTER_obj_hash_5_8,
RB_DEBUG_COUNTER_obj_hash_g8,
RB_DEBUG_COUNTER_obj_hash_null,
RB_DEBUG_COUNTER_obj_hash_ar,
RB_DEBUG_COUNTER_obj_hash_st,
RB_DEBUG_COUNTER_obj_hash_transient,
RB_DEBUG_COUNTER_obj_hash_force_convert,
RB_DEBUG_COUNTER_obj_struct_embed,
RB_DEBUG_COUNTER_obj_struct_transient,
RB_DEBUG_COUNTER_obj_struct_ptr,
RB_DEBUG_COUNTER_obj_data_empty,
RB_DEBUG_COUNTER_obj_data_xfree,
RB_DEBUG_COUNTER_obj_data_imm_free,
RB_DEBUG_COUNTER_obj_data_zombie,
RB_DEBUG_COUNTER_obj_match_under4,
RB_DEBUG_COUNTER_obj_match_ge4,
RB_DEBUG_COUNTER_obj_match_ge8,
RB_DEBUG_COUNTER_obj_match_ptr,
RB_DEBUG_COUNTER_obj_iclass_ptr,
RB_DEBUG_COUNTER_obj_class_ptr,
RB_DEBUG_COUNTER_obj_module_ptr,
RB_DEBUG_COUNTER_obj_bignum_ptr,
RB_DEBUG_COUNTER_obj_bignum_embed,
RB_DEBUG_COUNTER_obj_float,
RB_DEBUG_COUNTER_obj_complex,
RB_DEBUG_COUNTER_obj_rational,
RB_DEBUG_COUNTER_obj_regexp_ptr,
RB_DEBUG_COUNTER_obj_file_ptr,
RB_DEBUG_COUNTER_obj_symbol,
RB_DEBUG_COUNTER_obj_imemo_ment,
RB_DEBUG_COUNTER_obj_imemo_iseq,
RB_DEBUG_COUNTER_obj_imemo_env,
RB_DEBUG_COUNTER_obj_imemo_tmpbuf,
RB_DEBUG_COUNTER_obj_imemo_ast,
RB_DEBUG_COUNTER_obj_imemo_cref,
RB_DEBUG_COUNTER_obj_imemo_svar,
RB_DEBUG_COUNTER_obj_imemo_throw_data,
RB_DEBUG_COUNTER_obj_imemo_ifunc,
RB_DEBUG_COUNTER_obj_imemo_memo,
RB_DEBUG_COUNTER_obj_imemo_parser_strterm,
RB_DEBUG_COUNTER_artable_hint_hit,
RB_DEBUG_COUNTER_artable_hint_miss,
RB_DEBUG_COUNTER_artable_hint_notfound,
RB_DEBUG_COUNTER_heap_xmalloc,
RB_DEBUG_COUNTER_heap_xrealloc,
RB_DEBUG_COUNTER_heap_xfree,
RB_DEBUG_COUNTER_theap_alloc,
RB_DEBUG_COUNTER_theap_alloc_fail,
RB_DEBUG_COUNTER_theap_evacuate,
RB_DEBUG_COUNTER_mjit_exec,
RB_DEBUG_COUNTER_mjit_exec_not_added,
RB_DEBUG_COUNTER_mjit_exec_not_added_add_iseq,
RB_DEBUG_COUNTER_mjit_exec_not_ready,
RB_DEBUG_COUNTER_mjit_exec_not_compiled,
RB_DEBUG_COUNTER_mjit_exec_call_func,
RB_DEBUG_COUNTER_mjit_frame_VM2VM,
RB_DEBUG_COUNTER_mjit_frame_VM2JT,
RB_DEBUG_COUNTER_mjit_frame_JT2JT,
RB_DEBUG_COUNTER_mjit_frame_JT2VM,
RB_DEBUG_COUNTER_mjit_cancel,
RB_DEBUG_COUNTER_mjit_cancel_ivar_inline,
RB_DEBUG_COUNTER_mjit_cancel_send_inline,
RB_DEBUG_COUNTER_mjit_cancel_opt_insn,
RB_DEBUG_COUNTER_mjit_cancel_invalidate_all,
RB_DEBUG_COUNTER_mjit_length_unit_queue,
RB_DEBUG_COUNTER_mjit_length_active_units,
RB_DEBUG_COUNTER_mjit_length_compact_units,
RB_DEBUG_COUNTER_mjit_length_stale_units,
RB_DEBUG_COUNTER_mjit_compile_failures,
    RB_DEBUG_COUNTER_MAX
};
void rb_debug_counter_show_results(const char *msg);


size_t ruby_debug_counter_get(const char **names_ptr, size_t *counters_ptr);
void ruby_debug_counter_reset(void);
void ruby_debug_counter_show_at_exit(int enable);


enum rb_mjit_iseq_func {
    NOT_ADDED_JIT_ISEQ_FUNC = 0,
    NOT_READY_JIT_ISEQ_FUNC = 1,
    NOT_COMPILED_JIT_ISEQ_FUNC = 2,
    LAST_JIT_ISEQ_FUNC = 3
};
struct mjit_options {
    char on;
    char save_temps;
    char warnings;
    char debug;
    char* debug_flags;
    unsigned int wait;
    unsigned int min_calls;
    int verbose;
    int max_cache_size;
};
struct rb_mjit_compile_info {
    _Bool disable_ivar_cache;
    _Bool disable_send_cache;
    _Bool disable_inlining;
};
typedef VALUE (*mjit_func_t)(rb_execution_context_t *, rb_control_frame_t *);


extern struct mjit_options mjit_opts;
extern _Bool mjit_call_p;
extern void rb_mjit_add_iseq_to_process(const rb_iseq_t *iseq);
extern VALUE rb_mjit_wait_call(rb_execution_context_t *ec, struct rb_iseq_constant_body *body);
extern struct rb_mjit_compile_info* rb_mjit_iseq_compile_info(const struct rb_iseq_constant_body *body);
extern void rb_mjit_recompile_iseq(const rb_iseq_t *iseq);


extern _Bool mjit_compile(FILE *f, const rb_iseq_t *iseq, const char *funcname);
extern void mjit_init(const struct mjit_options *opts);
extern void mjit_gc_start_hook(void);
extern void mjit_gc_exit_hook(void);
extern void mjit_free_iseq(const rb_iseq_t *iseq);
extern void mjit_update_references(const rb_iseq_t *iseq);
extern void mjit_mark(void);
extern struct mjit_cont *mjit_cont_new(rb_execution_context_t *ec);
extern void mjit_cont_free(struct mjit_cont *cont);
extern void mjit_add_class_serial(rb_serial_t class_serial);
extern void mjit_remove_class_serial(rb_serial_t class_serial);
static inline int
mjit_target_iseq_p(struct rb_iseq_constant_body *body)
{
    return (body->type == ISEQ_TYPE_METHOD || body->type == ISEQ_TYPE_BLOCK)
        && body->iseq_size < 1000;
}
static inline VALUE
mjit_exec(rb_execution_context_t *ec)
{
    const rb_iseq_t *iseq;
    struct rb_iseq_constant_body *body;
    long unsigned total_calls;
    mjit_func_t func;
    if (!mjit_call_p)
        return ((VALUE)RUBY_Qundef);
    ((void)0);
    iseq = ec->cfp->iseq;
    body = iseq->body;
    total_calls = ++body->total_calls;
    func = body->jit_func;
    if ((__builtin_expect(!!((uintptr_t)func <= (uintptr_t)LAST_JIT_ISEQ_FUNC), 0))) {
        ((void)0);
        switch ((enum rb_mjit_iseq_func)func) {
          case NOT_ADDED_JIT_ISEQ_FUNC:
            ((void)0);
            if (total_calls == mjit_opts.min_calls && mjit_target_iseq_p(body)) {
                ((void)0);
                rb_mjit_add_iseq_to_process(iseq);
                if ((__builtin_expect(!!(mjit_opts.wait), 0))) {
                    return rb_mjit_wait_call(ec, body);
                }
            }
            return ((VALUE)RUBY_Qundef);
          case NOT_READY_JIT_ISEQ_FUNC:
            ((void)0);
            return ((VALUE)RUBY_Qundef);
          case NOT_COMPILED_JIT_ISEQ_FUNC:
            ((void)0);
            return ((VALUE)RUBY_Qundef);
          default:
            break;
        }
    }
      ((void)0);
    ((void)0);
    return func(ec, ec->cfp);
}
void mjit_child_after_fork(void);


extern VALUE ruby_vm_const_missing_count;
extern rb_serial_t ruby_vm_global_method_state;
extern rb_serial_t ruby_vm_global_constant_state;
extern rb_serial_t ruby_vm_class_serial;


static inline void
CC_SET_FASTPATH(CALL_CACHE cc, vm_call_handler func, _Bool enabled)
{
    if ((__builtin_expect(!!(enabled), 1))) {
        cc->call = func;
    }
}
static inline void
CC_SET_ME(CALL_CACHE cc, const rb_callable_method_entry_t *me)
{
    cc->me = me;
    cc->method_serial = me ? me->def->method_serial : 0;
}
static inline struct vm_throw_data *
THROW_DATA_NEW(VALUE val, const rb_control_frame_t *cf, int st)
{
    struct vm_throw_data *obj = (struct vm_throw_data *)rb_imemo_new(imemo_throw_data, val, (VALUE)cf, 0, 0);
    obj->throw_state = st;
    return obj;
}
static inline VALUE
THROW_DATA_VAL(const struct vm_throw_data *obj)
{
    ((void)0);
    return obj->throw_obj;
}
static inline const rb_control_frame_t *
THROW_DATA_CATCH_FRAME(const struct vm_throw_data *obj)
{
    ((void)0);
    return obj->catch_frame;
}
static inline int
THROW_DATA_STATE(const struct vm_throw_data *obj)
{
    ((void)0);
    return obj->throw_state;
}
static inline int
THROW_DATA_CONSUMED_P(const struct vm_throw_data *obj)
{
    ((void)0);
    return obj->flags & ((VALUE)RUBY_FL_USER4);
}
static inline void
THROW_DATA_CATCH_FRAME_SET(struct vm_throw_data *obj, const rb_control_frame_t *cfp)
{
    ((void)0);
    obj->catch_frame = cfp;
}
static inline void
THROW_DATA_STATE_SET(struct vm_throw_data *obj, int st)
{
    ((void)0);
    obj->throw_state = st;
}
static inline void
THROW_DATA_CONSUMED_SET(struct vm_throw_data *obj)
{
    if (( ((RUBY_T_IMEMO) == RUBY_T_FIXNUM) ? (((int)(long)((VALUE)(obj)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_IMEMO) == RUBY_T_TRUE) ? (((VALUE)(obj)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_IMEMO) == RUBY_T_FALSE) ? (((VALUE)(obj)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_IMEMO) == RUBY_T_NIL) ? (((VALUE)(obj)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_IMEMO) == RUBY_T_UNDEF) ? (((VALUE)(obj)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_IMEMO) == RUBY_T_SYMBOL) ? ((((VALUE)((VALUE)(obj))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((VALUE)(obj)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(obj)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(obj)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_IMEMO) == RUBY_T_FLOAT) ? ( ((((int)(long)((VALUE)(obj)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((VALUE)(obj)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(obj)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(obj)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((VALUE)(obj)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(obj)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(obj)))->flags & RUBY_T_MASK) == (RUBY_T_IMEMO))) &&
 THROW_DATA_STATE(obj) == RUBY_TAG_BREAK) {
 obj->flags |= ((VALUE)RUBY_FL_USER4);
    }
}
static _Bool
vm_call_iseq_optimizable_p(const struct rb_call_info *ci, const struct rb_call_cache *cc)
{
    return !((ci)->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)) && !((ci)->flag & (0x01 << VM_CALL_KWARG_bit)) &&
        !((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) == METHOD_VISI_PROTECTED);
}
typedef long OFFSET;
typedef unsigned long lindex_t;
typedef VALUE GENTRY;
typedef rb_iseq_t *ISEQ;
enum ruby_vminsn_type {
    YARVINSN_nop,
    YARVINSN_getlocal,
    YARVINSN_setlocal,
    YARVINSN_getblockparam,
    YARVINSN_setblockparam,
    YARVINSN_getblockparamproxy,
    YARVINSN_getspecial,
    YARVINSN_setspecial,
    YARVINSN_getinstancevariable,
    YARVINSN_setinstancevariable,
    YARVINSN_getclassvariable,
    YARVINSN_setclassvariable,
    YARVINSN_getconstant,
    YARVINSN_setconstant,
    YARVINSN_getglobal,
    YARVINSN_setglobal,
    YARVINSN_putnil,
    YARVINSN_putself,
    YARVINSN_putobject,
    YARVINSN_putspecialobject,
    YARVINSN_putstring,
    YARVINSN_concatstrings,
    YARVINSN_tostring,
    YARVINSN_freezestring,
    YARVINSN_toregexp,
    YARVINSN_intern,
    YARVINSN_newarray,
    YARVINSN_newarraykwsplat,
    YARVINSN_duparray,
    YARVINSN_duphash,
    YARVINSN_expandarray,
    YARVINSN_concatarray,
    YARVINSN_splatarray,
    YARVINSN_newhash,
    YARVINSN_newrange,
    YARVINSN_pop,
    YARVINSN_dup,
    YARVINSN_dupn,
    YARVINSN_swap,
    YARVINSN_reverse,
    YARVINSN_topn,
    YARVINSN_setn,
    YARVINSN_adjuststack,
    YARVINSN_defined,
    YARVINSN_checkmatch,
    YARVINSN_checkkeyword,
    YARVINSN_checktype,
    YARVINSN_defineclass,
    YARVINSN_definemethod,
    YARVINSN_definesmethod,
    YARVINSN_send,
    YARVINSN_opt_send_without_block,
    YARVINSN_opt_str_freeze,
    YARVINSN_opt_nil_p,
    YARVINSN_opt_str_uminus,
    YARVINSN_opt_newarray_max,
    YARVINSN_opt_newarray_min,
    YARVINSN_invokesuper,
    YARVINSN_invokeblock,
    YARVINSN_leave,
    YARVINSN_throw,
    YARVINSN_jump,
    YARVINSN_branchif,
    YARVINSN_branchunless,
    YARVINSN_branchnil,
    YARVINSN_opt_getinlinecache,
    YARVINSN_opt_setinlinecache,
    YARVINSN_once,
    YARVINSN_opt_case_dispatch,
    YARVINSN_opt_plus,
    YARVINSN_opt_minus,
    YARVINSN_opt_mult,
    YARVINSN_opt_div,
    YARVINSN_opt_mod,
    YARVINSN_opt_eq,
    YARVINSN_opt_neq,
    YARVINSN_opt_lt,
    YARVINSN_opt_le,
    YARVINSN_opt_gt,
    YARVINSN_opt_ge,
    YARVINSN_opt_ltlt,
    YARVINSN_opt_and,
    YARVINSN_opt_or,
    YARVINSN_opt_aref,
    YARVINSN_opt_aset,
    YARVINSN_opt_aset_with,
    YARVINSN_opt_aref_with,
    YARVINSN_opt_length,
    YARVINSN_opt_size,
    YARVINSN_opt_empty_p,
    YARVINSN_opt_succ,
    YARVINSN_opt_not,
    YARVINSN_opt_regexpmatch2,
    YARVINSN_opt_call_c_function,
    YARVINSN_invokebuiltin,
    YARVINSN_opt_invokebuiltin_delegate,
    YARVINSN_opt_invokebuiltin_delegate_leave,
    YARVINSN_getlocal_WC_0,
    YARVINSN_getlocal_WC_1,
    YARVINSN_setlocal_WC_0,
    YARVINSN_setlocal_WC_1,
    YARVINSN_putobject_INT2FIX_0_,
    YARVINSN_putobject_INT2FIX_1_,
    YARVINSN_trace_nop,
    YARVINSN_trace_getlocal,
    YARVINSN_trace_setlocal,
    YARVINSN_trace_getblockparam,
    YARVINSN_trace_setblockparam,
    YARVINSN_trace_getblockparamproxy,
    YARVINSN_trace_getspecial,
    YARVINSN_trace_setspecial,
    YARVINSN_trace_getinstancevariable,
    YARVINSN_trace_setinstancevariable,
    YARVINSN_trace_getclassvariable,
    YARVINSN_trace_setclassvariable,
    YARVINSN_trace_getconstant,
    YARVINSN_trace_setconstant,
    YARVINSN_trace_getglobal,
    YARVINSN_trace_setglobal,
    YARVINSN_trace_putnil,
    YARVINSN_trace_putself,
    YARVINSN_trace_putobject,
    YARVINSN_trace_putspecialobject,
    YARVINSN_trace_putstring,
    YARVINSN_trace_concatstrings,
    YARVINSN_trace_tostring,
    YARVINSN_trace_freezestring,
    YARVINSN_trace_toregexp,
    YARVINSN_trace_intern,
    YARVINSN_trace_newarray,
    YARVINSN_trace_newarraykwsplat,
    YARVINSN_trace_duparray,
    YARVINSN_trace_duphash,
    YARVINSN_trace_expandarray,
    YARVINSN_trace_concatarray,
    YARVINSN_trace_splatarray,
    YARVINSN_trace_newhash,
    YARVINSN_trace_newrange,
    YARVINSN_trace_pop,
    YARVINSN_trace_dup,
    YARVINSN_trace_dupn,
    YARVINSN_trace_swap,
    YARVINSN_trace_reverse,
    YARVINSN_trace_topn,
    YARVINSN_trace_setn,
    YARVINSN_trace_adjuststack,
    YARVINSN_trace_defined,
    YARVINSN_trace_checkmatch,
    YARVINSN_trace_checkkeyword,
    YARVINSN_trace_checktype,
    YARVINSN_trace_defineclass,
    YARVINSN_trace_definemethod,
    YARVINSN_trace_definesmethod,
    YARVINSN_trace_send,
    YARVINSN_trace_opt_send_without_block,
    YARVINSN_trace_opt_str_freeze,
    YARVINSN_trace_opt_nil_p,
    YARVINSN_trace_opt_str_uminus,
    YARVINSN_trace_opt_newarray_max,
    YARVINSN_trace_opt_newarray_min,
    YARVINSN_trace_invokesuper,
    YARVINSN_trace_invokeblock,
    YARVINSN_trace_leave,
    YARVINSN_trace_throw,
    YARVINSN_trace_jump,
    YARVINSN_trace_branchif,
    YARVINSN_trace_branchunless,
    YARVINSN_trace_branchnil,
    YARVINSN_trace_opt_getinlinecache,
    YARVINSN_trace_opt_setinlinecache,
    YARVINSN_trace_once,
    YARVINSN_trace_opt_case_dispatch,
    YARVINSN_trace_opt_plus,
    YARVINSN_trace_opt_minus,
    YARVINSN_trace_opt_mult,
    YARVINSN_trace_opt_div,
    YARVINSN_trace_opt_mod,
    YARVINSN_trace_opt_eq,
    YARVINSN_trace_opt_neq,
    YARVINSN_trace_opt_lt,
    YARVINSN_trace_opt_le,
    YARVINSN_trace_opt_gt,
    YARVINSN_trace_opt_ge,
    YARVINSN_trace_opt_ltlt,
    YARVINSN_trace_opt_and,
    YARVINSN_trace_opt_or,
    YARVINSN_trace_opt_aref,
    YARVINSN_trace_opt_aset,
    YARVINSN_trace_opt_aset_with,
    YARVINSN_trace_opt_aref_with,
    YARVINSN_trace_opt_length,
    YARVINSN_trace_opt_size,
    YARVINSN_trace_opt_empty_p,
    YARVINSN_trace_opt_succ,
    YARVINSN_trace_opt_not,
    YARVINSN_trace_opt_regexpmatch2,
    YARVINSN_trace_opt_call_c_function,
    YARVINSN_trace_invokebuiltin,
    YARVINSN_trace_opt_invokebuiltin_delegate,
    YARVINSN_trace_opt_invokebuiltin_delegate_leave,
    YARVINSN_trace_getlocal_WC_0,
    YARVINSN_trace_getlocal_WC_1,
    YARVINSN_trace_setlocal_WC_0,
    YARVINSN_trace_setlocal_WC_1,
    YARVINSN_trace_putobject_INT2FIX_0_,
    YARVINSN_trace_putobject_INT2FIX_1_,
    VM_INSTRUCTION_SIZE
};
typedef enum {
    CONST_DEPRECATED = 0x100,
    CONST_VISIBILITY_MASK = 0xff,
    CONST_PUBLIC = 0x00,
    CONST_PRIVATE,
    CONST_VISIBILITY_MAX
} rb_const_flag_t;
typedef struct rb_const_entry_struct {
    rb_const_flag_t flag;
    int line;
    VALUE value;
    VALUE file;
} rb_const_entry_t;
VALUE rb_mod_private_constant(int argc, const VALUE *argv, VALUE obj);
VALUE rb_mod_public_constant(int argc, const VALUE *argv, VALUE obj);
VALUE rb_mod_deprecate_constant(int argc, const VALUE *argv, VALUE obj);
void rb_free_const_table(struct rb_id_table *tbl);
VALUE rb_public_const_get_at(VALUE klass, ID id);
VALUE rb_public_const_get_from(VALUE klass, ID id);
int rb_public_const_defined_from(VALUE klass, ID id);
rb_const_entry_t *rb_const_lookup(VALUE klass, ID id);
int rb_autoloading_value(VALUE mod, ID id, VALUE *value, rb_const_flag_t *flag);
VALUE rb_const_source_location(VALUE, ID);
VALUE rb_const_source_location_at(VALUE, ID);
struct gen_ivtbl {
    uint32_t numiv;
    VALUE ivptr[];
};
struct st_table *rb_ivar_generic_ivtbl(void);
extern rb_method_definition_t *rb_method_definition_create(rb_method_type_t type, ID mid);
extern void rb_method_definition_set(const rb_method_entry_t *me, rb_method_definition_t *def, void *opts);
extern int rb_method_definition_eq(const rb_method_definition_t *d1, const rb_method_definition_t *d2);
extern VALUE rb_make_no_method_exception(VALUE exc, VALUE format, VALUE obj,
                                         int argc, const VALUE *argv, int priv);
static rb_control_frame_t *vm_get_ruby_level_caller_cfp(const rb_execution_context_t *ec, const rb_control_frame_t *cfp);
static VALUE
ruby_vm_special_exception_copy(VALUE exc)
{
    VALUE e = rb_obj_alloc(rb_class_real((((struct RBasic*)(exc))->klass)));
    rb_obj_copy_ivar(e, exc);
    return e;
}
__attribute__ ((__noreturn__)) static void ec_stack_overflow(rb_execution_context_t *ec, int);
static void
ec_stack_overflow(rb_execution_context_t *ec, int setup)
{
    VALUE mesg = rb_ec_vm_ptr(ec)->special_exceptions[ruby_error_sysstack];
    ec->raised_flag = RAISED_STACKOVERFLOW;
    if (setup) {
 VALUE at = rb_ec_backtrace_object(ec);
 mesg = ruby_vm_special_exception_copy(mesg);
 rb_ivar_set(mesg, idBt, at);
 rb_ivar_set(mesg, idBt_locations, at);
    }
    ec->errinfo = mesg;
    rb_ec_tag_jump(ec, RUBY_TAG_RAISE);
}
__attribute__ ((__noreturn__)) static void vm_stackoverflow(void);
static void
vm_stackoverflow(void)
{
    ec_stack_overflow(rb_current_execution_context(), 1);
}
__attribute__ ((__noreturn__)) static void rb_ec_stack_overflow(rb_execution_context_t *ec, int crit);
static void
rb_ec_stack_overflow(rb_execution_context_t *ec, int crit)
{
    if (crit || rb_during_gc()) {
 ec->raised_flag = RAISED_STACKOVERFLOW;
 ec->errinfo = rb_ec_vm_ptr(ec)->special_exceptions[ruby_error_stackfatal];
 rb_ec_tag_jump(ec, RUBY_TAG_RAISE);
    }
    ec_stack_overflow(ec, 1);
}
static inline rb_control_frame_t *
vm_push_frame(rb_execution_context_t *ec,
       const rb_iseq_t *iseq,
       VALUE type,
       VALUE self,
       VALUE specval,
       VALUE cref_or_me,
       const VALUE *pc,
       VALUE *sp,
       int local_size,
       int stack_max)
{
    rb_control_frame_t *const cfp = ((ec->cfp)-1);
    ;
    ((void)0);
    if ((__builtin_expect(!!(!(!(1/!!(sizeof(*(sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)((sp) + (local_size + stack_max)) + 1) >= (cfp))), 1))) {(void)0;} else vm_stackoverflow();
    ;
    ec->cfp = cfp;
    cfp->pc = (VALUE *)pc;
    cfp->iseq = (rb_iseq_t *)iseq;
    cfp->self = self;
    cfp->block_code = ((void *)0);
    for (int i=0; i < local_size; i++) {
 *sp++ = ((VALUE)RUBY_Qnil);
    }
    ((void)0);
    ((void)0);
    ((void)0);
    *sp++ = cref_or_me;
    *sp++ = specval ;
    *sp = type;
    cfp->ep = sp;
    cfp->__bp__ = cfp->sp = sp + 1;
    if (0 == 2) {
 rb_vmdebug_stack_dump_raw(rb_current_execution_context(), rb_current_execution_context()->cfp);
    }
    return cfp;
}
static inline int
vm_pop_frame(rb_execution_context_t *ec, rb_control_frame_t *cfp, const VALUE *ep)
{
    VALUE flags = ep[( 0)];
    if ((((0) > 0) ? (0) : 0) >= 4) rb_gc_verify_internal_consistency();
    if (0 == 2) rb_vmdebug_stack_dump_raw(rb_current_execution_context(), rb_current_execution_context()->cfp);
    rb_vm_check_ints(ec);
    ec->cfp = ((cfp)+1);
    return flags & VM_FRAME_FLAG_FINISH;
}
static void
rb_vm_pop_frame(rb_execution_context_t *ec)
{
    vm_pop_frame(ec, ec->cfp, ec->cfp->ep);
}
static inline VALUE
rb_arity_error_new(int argc, int min, int max)
{
    VALUE err_mess = 0;
    if (min == max) {
 err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d)", argc, min);
    }
    else if (max == (-1)) {
 err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d+)", argc, min);
    }
    else {
 err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d..%d)", argc, min, max);
    }
    return rb_exc_new_str(rb_eArgError, err_mess);
}
static void
rb_error_arity(int argc, int min, int max)
{
    rb_exc_raise(rb_arity_error_new(argc, min, max));
}
__attribute__ ((__noinline__)) static void vm_env_write_slowpath(const VALUE *ep, int index, VALUE v);
static void
vm_env_write_slowpath(const VALUE *ep, int index, VALUE v)
{
    rb_gc_writebarrier_remember(VM_ENV_ENVVAL(ep));
    VM_FORCE_WRITE(&ep[index], v);
    VM_ENV_FLAGS_UNSET(ep, VM_ENV_FLAG_WB_REQUIRED);
    ((void)0);
}
static inline void
vm_env_write(const VALUE *ep, int index, VALUE v)
{
    VALUE flags = ep[( 0)];
    if ((__builtin_expect(!!((flags & VM_ENV_FLAG_WB_REQUIRED) == 0), 1))) {
 VM_STACK_ENV_WRITE(ep, index, v);
    }
    else {
 vm_env_write_slowpath(ep, index, v);
    }
}
static VALUE
rb_vm_bh_to_procval(const rb_execution_context_t *ec, VALUE block_handler)
{
    if (block_handler == 0) {
 return ((VALUE)RUBY_Qnil);
    }
    else {
 switch (vm_block_handler_type(block_handler)) {
   case block_handler_type_iseq:
   case block_handler_type_ifunc:
     return rb_vm_make_proc(ec, VM_BH_TO_CAPT_BLOCK(block_handler), rb_cProc);
   case block_handler_type_symbol:
     return rb_sym_to_proc(VM_BH_TO_SYMBOL(block_handler));
   case block_handler_type_proc:
     return VM_BH_TO_PROC(block_handler);
   default:
     __builtin_unreachable();
 }
    }
}
static inline struct vm_svar *
lep_svar(const rb_execution_context_t *ec, const VALUE *lep)
{
    VALUE svar;
    if (lep && (ec == ((void *)0) || ec->root_lep != lep)) {
 svar = lep[(-2)];
    }
    else {
 svar = ec->root_svar;
    }
    ((void)0);
    return (struct vm_svar *)svar;
}
static inline void
lep_svar_write(const rb_execution_context_t *ec, const VALUE *lep, const struct vm_svar *svar)
{
    ((void)0);
    if (lep && (ec == ((void *)0) || ec->root_lep != lep)) {
 vm_env_write(lep, (-2), (VALUE)svar);
    }
    else {
 rb_obj_write((VALUE)(rb_ec_thread_ptr(ec)->self), (VALUE *)(&ec->root_svar), (VALUE)(svar), "./vm_insnhelper.c", 486);
    }
}
static VALUE
lep_svar_get(const rb_execution_context_t *ec, const VALUE *lep, rb_num_t key)
{
    const struct vm_svar *svar = lep_svar(ec, lep);
    if ((VALUE)svar == ((VALUE)RUBY_Qfalse) || imemo_type((VALUE)svar) != imemo_svar) return ((VALUE)RUBY_Qnil);
    switch (key) {
      case VM_SVAR_LASTLINE:
 return svar->lastline;
      case VM_SVAR_BACKREF:
 return svar->backref;
      default: {
 const VALUE ary = svar->others;
 if (!((VALUE)(ary) != ((VALUE)RUBY_Qnil))) {
     return ((VALUE)RUBY_Qnil);
 }
 else {
     return rb_ary_entry(ary, key - VM_SVAR_EXTRA_START);
 }
      }
    }
}
static struct vm_svar *
svar_new(VALUE obj)
{
    return (struct vm_svar *)rb_imemo_new(imemo_svar, ((VALUE)RUBY_Qnil), ((VALUE)RUBY_Qnil), ((VALUE)RUBY_Qnil), obj);
}
static void
lep_svar_set(const rb_execution_context_t *ec, const VALUE *lep, rb_num_t key, VALUE val)
{
    struct vm_svar *svar = lep_svar(ec, lep);
    if ((VALUE)svar == ((VALUE)RUBY_Qfalse) || imemo_type((VALUE)svar) != imemo_svar) {
 lep_svar_write(ec, lep, svar = svar_new((VALUE)svar));
    }
    switch (key) {
      case VM_SVAR_LASTLINE:
 rb_obj_write((VALUE)(svar), (VALUE *)(&svar->lastline), (VALUE)(val), "./vm_insnhelper.c", 532);
 return;
      case VM_SVAR_BACKREF:
 rb_obj_write((VALUE)(svar), (VALUE *)(&svar->backref), (VALUE)(val), "./vm_insnhelper.c", 535);
 return;
      default: {
 VALUE ary = svar->others;
 if (!((VALUE)(ary) != ((VALUE)RUBY_Qnil))) {
     rb_obj_write((VALUE)(svar), (VALUE *)(&svar->others), (VALUE)(ary = rb_ary_new()), "./vm_insnhelper.c", 541);
 }
 rb_ary_store(ary, key - VM_SVAR_EXTRA_START, val);
      }
    }
}
static inline VALUE
vm_getspecial(const rb_execution_context_t *ec, const VALUE *lep, rb_num_t key, rb_num_t type)
{
    VALUE val;
    if (type == 0) {
 val = lep_svar_get(ec, lep, key);
    }
    else {
 VALUE backref = lep_svar_get(ec, lep, VM_SVAR_BACKREF);
 if (type & 0x01) {
     switch (type >> 1) {
       case '&':
  val = rb_reg_last_match(backref);
  break;
       case '`':
  val = rb_reg_match_pre(backref);
  break;
       case '\'':
  val = rb_reg_match_post(backref);
  break;
       case '+':
  val = rb_reg_match_last(backref);
  break;
       default:
  rb_bug("unexpected back-ref");
     }
 }
 else {
     val = rb_reg_nth_match((int)(type >> 1), backref);
 }
    }
    return val;
}
__attribute__ ((__pure__)) static rb_callable_method_entry_t *check_method_entry(VALUE obj, int can_be_svar);
static rb_callable_method_entry_t *
check_method_entry(VALUE obj, int can_be_svar)
{
    if (obj == ((VALUE)RUBY_Qfalse)) return ((void *)0);
    switch (imemo_type(obj)) {
      case imemo_ment:
 return (rb_callable_method_entry_t *)obj;
      case imemo_cref:
 return ((void *)0);
      case imemo_svar:
 if (can_be_svar) {
     return check_method_entry(((struct vm_svar *)obj)->cref_or_me, 0);
 }
      default:
 return ((void *)0);
    }
}
static const rb_callable_method_entry_t *
rb_vm_frame_method_entry(const rb_control_frame_t *cfp)
{
    const VALUE *ep = cfp->ep;
    rb_callable_method_entry_t *me;
    while (!VM_ENV_LOCAL_P(ep)) {
 if ((me = check_method_entry(ep[(-2)], 0)) != ((void *)0)) return me;
 ep = VM_ENV_PREV_EP(ep);
    }
    return check_method_entry(ep[(-2)], 1);
}
static rb_cref_t *
method_entry_cref(rb_callable_method_entry_t *me)
{
    switch (me->def->type) {
      case VM_METHOD_TYPE_ISEQ:
 return me->def->body.iseq.cref;
      default:
 return ((void *)0);
    }
}
__attribute__ ((__pure__)) static rb_cref_t *check_cref(VALUE, int);
static rb_cref_t *
check_cref(VALUE obj, int can_be_svar)
{
    if (obj == ((VALUE)RUBY_Qfalse)) return ((void *)0);
    switch (imemo_type(obj)) {
      case imemo_ment:
 return method_entry_cref((rb_callable_method_entry_t *)obj);
      case imemo_cref:
 return (rb_cref_t *)obj;
      case imemo_svar:
 if (can_be_svar) {
     return check_cref(((struct vm_svar *)obj)->cref_or_me, 0);
 }
      default:
 return ((void *)0);
    }
}
static inline rb_cref_t *
vm_env_cref(const VALUE *ep)
{
    rb_cref_t *cref;
    while (!VM_ENV_LOCAL_P(ep)) {
 if ((cref = check_cref(ep[(-2)], 0)) != ((void *)0)) return cref;
 ep = VM_ENV_PREV_EP(ep);
    }
    return check_cref(ep[(-2)], 1);
}
static int
is_cref(const VALUE v, int can_be_svar)
{
    if (( ((RUBY_T_IMEMO) == RUBY_T_FIXNUM) ? (((int)(long)(v))&RUBY_FIXNUM_FLAG) : ((RUBY_T_IMEMO) == RUBY_T_TRUE) ? ((v) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_IMEMO) == RUBY_T_FALSE) ? ((v) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_IMEMO) == RUBY_T_NIL) ? ((v) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_IMEMO) == RUBY_T_UNDEF) ? ((v) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_IMEMO) == RUBY_T_SYMBOL) ? ((((VALUE)(v)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_IMEMO) == RUBY_T_FLOAT) ? ( ((((int)(long)(v))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == (RUBY_T_IMEMO)))) {
 switch (imemo_type(v)) {
   case imemo_cref:
     return 1;
   case imemo_svar:
     if (can_be_svar) return is_cref(((struct vm_svar *)v)->cref_or_me, 0);
   default:
     break;
 }
    }
    return 0;
}
static int
vm_env_cref_by_cref(const VALUE *ep)
{
    while (!VM_ENV_LOCAL_P(ep)) {
 if (is_cref(ep[(-2)], 0)) return 1;
 ep = VM_ENV_PREV_EP(ep);
    }
    return is_cref(ep[(-2)], 1);
}
static rb_cref_t *
cref_replace_with_duplicated_cref_each_frame(const VALUE *vptr, int can_be_svar, VALUE parent)
{
    const VALUE v = *vptr;
    rb_cref_t *cref, *new_cref;
    if (( ((RUBY_T_IMEMO) == RUBY_T_FIXNUM) ? (((int)(long)(v))&RUBY_FIXNUM_FLAG) : ((RUBY_T_IMEMO) == RUBY_T_TRUE) ? ((v) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_IMEMO) == RUBY_T_FALSE) ? ((v) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_IMEMO) == RUBY_T_NIL) ? ((v) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_IMEMO) == RUBY_T_UNDEF) ? ((v) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_IMEMO) == RUBY_T_SYMBOL) ? ((((VALUE)(v)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_IMEMO) == RUBY_T_FLOAT) ? ( ((((int)(long)(v))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == (RUBY_T_IMEMO)))) {
 switch (imemo_type(v)) {
   case imemo_cref:
     cref = (rb_cref_t *)v;
     new_cref = vm_cref_dup(cref);
     if (parent) {
  rb_obj_write((VALUE)(parent), (VALUE *)(vptr), (VALUE)(new_cref), "./vm_insnhelper.c", 716);
     }
     else {
  VM_FORCE_WRITE(vptr, (VALUE)new_cref);
     }
     return (rb_cref_t *)new_cref;
   case imemo_svar:
     if (can_be_svar) {
  return cref_replace_with_duplicated_cref_each_frame((const VALUE *)&((struct vm_svar *)v)->cref_or_me, 0, v);
     }
   case imemo_ment:
     rb_bug("cref_replace_with_duplicated_cref_each_frame: unreachable");
   default:
     break;
 }
    }
    return 0;
}
static rb_cref_t *
vm_cref_replace_with_duplicated_cref(const VALUE *ep)
{
    if (vm_env_cref_by_cref(ep)) {
 rb_cref_t *cref;
 VALUE envval;
 while (!VM_ENV_LOCAL_P(ep)) {
     envval = VM_ENV_ESCAPED_P(ep) ? VM_ENV_ENVVAL(ep) : ((VALUE)RUBY_Qfalse);
     if ((cref = cref_replace_with_duplicated_cref_each_frame(&ep[(-2)], 0, envval)) != ((void *)0)) {
  return cref;
     }
     ep = VM_ENV_PREV_EP(ep);
 }
 envval = VM_ENV_ESCAPED_P(ep) ? VM_ENV_ENVVAL(ep) : ((VALUE)RUBY_Qfalse);
 return cref_replace_with_duplicated_cref_each_frame(&ep[(-2)], 1, envval);
    }
    else {
 rb_bug("vm_cref_dup: unreachable");
    }
}
static rb_cref_t *
vm_get_cref(const VALUE *ep)
{
    rb_cref_t *cref = vm_env_cref(ep);
    if (cref != ((void *)0)) {
 return cref;
    }
    else {
        rb_bug("vm_get_cref: unreachable");
    }
}
static rb_cref_t *
vm_ec_cref(const rb_execution_context_t *ec)
{
    const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
    if (cfp == ((void *)0)) {
        return ((void *)0);
    }
    return vm_get_cref(cfp->ep);
}
static const rb_cref_t *
vm_get_const_key_cref(const VALUE *ep)
{
    const rb_cref_t *cref = vm_get_cref(ep);
    const rb_cref_t *key_cref = cref;
    while (cref) {
        if (((!(((VALUE)(CREF_CLASS(cref)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(CREF_CLASS(cref)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(CREF_CLASS(cref)))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((CREF_CLASS(cref))))->flags&((((VALUE)RUBY_FL_SINGLETON)))):0) ||
            ((!(((VALUE)(CREF_CLASS(cref)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(CREF_CLASS(cref)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(CREF_CLASS(cref)))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((CREF_CLASS(cref))))->flags&((((VALUE)RUBY_FL_USER6)))):0)) {
            return key_cref;
 }
 cref = CREF_NEXT(cref);
    }
    return ((void *)0);
}static inline 
void
rb_vm_rewrite_cref(rb_cref_t *cref, VALUE old_klass, VALUE new_klass, rb_cref_t **new_cref_ptr)
{
    rb_cref_t *new_cref;
    while (cref) {
 if (CREF_CLASS(cref) == old_klass) {
     new_cref = vm_cref_new_use_prev(new_klass, METHOD_VISI_UNDEF, 0, cref, 0);
     *new_cref_ptr = new_cref;
     return;
 }
 new_cref = vm_cref_new_use_prev(CREF_CLASS(cref), METHOD_VISI_UNDEF, 0, cref, 0);
 cref = CREF_NEXT(cref);
 *new_cref_ptr = new_cref;
 new_cref_ptr = (rb_cref_t **)&new_cref->next;
    }
    *new_cref_ptr = ((void *)0);
}
static rb_cref_t *
vm_cref_push(const rb_execution_context_t *ec, VALUE klass, const VALUE *ep, int pushed_by_eval)
{
    rb_cref_t *prev_cref = ((void *)0);
    if (ep) {
 prev_cref = vm_env_cref(ep);
    }
    else {
 rb_control_frame_t *cfp = vm_get_ruby_level_caller_cfp(ec, ec->cfp);
 if (cfp) {
     prev_cref = vm_env_cref(cfp->ep);
 }
    }
    return vm_cref_new(klass, METHOD_VISI_PUBLIC, 0, prev_cref, pushed_by_eval);
}
static inline VALUE
vm_get_cbase(const VALUE *ep)
{
    const rb_cref_t *cref = vm_get_cref(ep);
    VALUE klass = ((VALUE)RUBY_Qundef);
    while (cref) {
 if ((klass = CREF_CLASS(cref)) != 0) {
     break;
 }
 cref = CREF_NEXT(cref);
    }
    return klass;
}
static inline VALUE
vm_get_const_base(const VALUE *ep)
{
    const rb_cref_t *cref = vm_get_cref(ep);
    VALUE klass = ((VALUE)RUBY_Qundef);
    while (cref) {
 if (!CREF_PUSHED_BY_EVAL(cref) &&
     (klass = CREF_CLASS(cref)) != 0) {
     break;
 }
 cref = CREF_NEXT(cref);
    }
    return klass;
}
static inline void
vm_check_if_namespace(VALUE klass)
{
    if (!( ((RUBY_T_CLASS) == RUBY_T_FIXNUM) ? (((int)(long)(klass))&RUBY_FIXNUM_FLAG) : ((RUBY_T_CLASS) == RUBY_T_TRUE) ? ((klass) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_CLASS) == RUBY_T_FALSE) ? ((klass) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_CLASS) == RUBY_T_NIL) ? ((klass) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_CLASS) == RUBY_T_UNDEF) ? ((klass) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_CLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(klass)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_CLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(klass))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_CLASS))) && !( ((RUBY_T_MODULE) == RUBY_T_FIXNUM) ? (((int)(long)(klass))&RUBY_FIXNUM_FLAG) : ((RUBY_T_MODULE) == RUBY_T_TRUE) ? ((klass) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_MODULE) == RUBY_T_FALSE) ? ((klass) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_MODULE) == RUBY_T_NIL) ? ((klass) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_MODULE) == RUBY_T_UNDEF) ? ((klass) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_MODULE) == RUBY_T_SYMBOL) ? ((((VALUE)(klass)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_MODULE) == RUBY_T_FLOAT) ? ( ((((int)(long)(klass))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_MODULE)))) {
 rb_raise(rb_eTypeError, "%+""l""i" "\v"" is not a class/module", klass);
    }
}
static inline void
vm_ensure_not_refinement_module(VALUE self)
{
    if (( ((RUBY_T_MODULE) == RUBY_T_FIXNUM) ? (((int)(long)(self))&RUBY_FIXNUM_FLAG) : ((RUBY_T_MODULE) == RUBY_T_TRUE) ? ((self) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_MODULE) == RUBY_T_FALSE) ? ((self) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_MODULE) == RUBY_T_NIL) ? ((self) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_MODULE) == RUBY_T_UNDEF) ? ((self) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_MODULE) == RUBY_T_SYMBOL) ? ((((VALUE)(self)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(self) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(self) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(self))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_MODULE) == RUBY_T_FLOAT) ? ( ((((int)(long)(self))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(self) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(self) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(self))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(self) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(self) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(self))->flags & RUBY_T_MASK) == (RUBY_T_MODULE))) && ((!(((VALUE)(self) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(self) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(self))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((self)))->flags&((RMODULE_IS_REFINEMENT))):0)) {
 rb_warn("not defined at the refinement, but at the outer class/module");
    }
}
static inline VALUE
vm_get_iclass(rb_control_frame_t *cfp, VALUE klass)
{
    return klass;
}
static inline VALUE
vm_get_ev_const(rb_execution_context_t *ec, VALUE orig_klass, ID id, _Bool allow_nil, int is_defined)
{
    void rb_const_warn_if_deprecated(const rb_const_entry_t *ce, VALUE klass, ID id);
    VALUE val;
    if (orig_klass == ((VALUE)RUBY_Qnil) && allow_nil) {
        const rb_cref_t *root_cref = vm_get_cref(ec->cfp->ep);
 const rb_cref_t *cref;
 VALUE klass = ((VALUE)RUBY_Qnil);
 while (root_cref && CREF_PUSHED_BY_EVAL(root_cref)) {
     root_cref = CREF_NEXT(root_cref);
 }
 cref = root_cref;
 while (cref && CREF_NEXT(cref)) {
     if (CREF_PUSHED_BY_EVAL(cref)) {
  klass = ((VALUE)RUBY_Qnil);
     }
     else {
  klass = CREF_CLASS(cref);
     }
     cref = CREF_NEXT(cref);
     if (!!((VALUE)(klass) != ((VALUE)RUBY_Qnil))) {
  VALUE av, am = 0;
  rb_const_entry_t *ce;
       search_continue:
  if ((ce = rb_const_lookup(klass, id))) {
      rb_const_warn_if_deprecated(ce, klass, id);
      val = ce->value;
      if (val == ((VALUE)RUBY_Qundef)) {
   if (am == klass) break;
   am = klass;
   if (is_defined) return 1;
   if (rb_autoloading_value(klass, id, &av, ((void *)0))) return av;
   rb_autoload_load(klass, id);
   goto search_continue;
      }
      else {
   if (is_defined) {
       return 1;
   }
   else {
       return val;
   }
      }
  }
     }
 }
 if (root_cref && !!((VALUE)(CREF_CLASS(root_cref)) != ((VALUE)RUBY_Qnil))) {
     klass = vm_get_iclass(ec->cfp, CREF_CLASS(root_cref));
 }
 else {
     klass = rb_class_of((VALUE)(ec->cfp->self));
 }
 if (is_defined) {
     return rb_const_defined(klass, id);
 }
 else {
     return rb_const_get(klass, id);
 }
    }
    else {
 vm_check_if_namespace(orig_klass);
 if (is_defined) {
     return rb_public_const_defined_from(orig_klass, id);
 }
 else {
     return rb_public_const_get_from(orig_klass, id);
 }
    }
}
static inline VALUE
vm_get_cvar_base(const rb_cref_t *cref, rb_control_frame_t *cfp)
{
    VALUE klass;
    if (!cref) {
 rb_bug("vm_get_cvar_base: no cref");
    }
    while (CREF_NEXT(cref) &&
    (!((VALUE)(CREF_CLASS(cref)) != ((VALUE)RUBY_Qnil)) || ((!(((VALUE)(CREF_CLASS(cref)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(CREF_CLASS(cref)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(CREF_CLASS(cref)))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((CREF_CLASS(cref))))->flags&((((VALUE)RUBY_FL_SINGLETON)))):0) ||
     CREF_PUSHED_BY_EVAL(cref))) {
 cref = CREF_NEXT(cref);
    }
    if (!CREF_NEXT(cref)) {
 rb_warn("class variable access from toplevel");
    }
    klass = vm_get_iclass(cfp, CREF_CLASS(cref));
    if (!((VALUE)(klass) != ((VALUE)RUBY_Qnil))) {
 rb_raise(rb_eTypeError, "no class variables available");
    }
    return klass;
}
static VALUE
vm_search_const_defined_class(const VALUE cbase, ID id)
{
    if (rb_const_defined_at(cbase, id)) return cbase;
    if (cbase == rb_cObject) {
 VALUE tmp = RCLASS_SUPER(cbase);
 while (tmp) {
     if (rb_const_defined_at(tmp, id)) return tmp;
     tmp = RCLASS_SUPER(tmp);
 }
    }
    return 0;
}
__attribute__ ((__always_inline__)) static VALUE vm_getivar(VALUE, ID, IVC, struct rb_call_cache *, int);
static inline VALUE
vm_getivar(VALUE obj, ID id, IVC ic, struct rb_call_cache *cc, int is_attr)
{
    VALUE val = ((VALUE)RUBY_Qundef);
    if ((((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
    }
    else if ((__builtin_expect(!!(is_attr ? (cc->aux.index > 0) : (ic->ic_serial == (((struct RClass*)(((struct RBasic*)(obj))->klass))->class_serial))), 1))) {
        st_index_t index = !is_attr ? ic->index : (cc->aux.index - 1);
        ((void)0);
        if ((__builtin_expect(!!((int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_OBJECT), 1)) &&
            (__builtin_expect(!!(index < ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ROBJECT_EMBED_LEN_MAX : ((struct RObject*)(obj))->as.heap.numiv)), 1))) {
            val = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ((struct RObject*)(obj))->as.ary : ((struct RObject*)(obj))->as.heap.ivptr)[index];
        }
        else if ((((struct RBasic*)(obj))->flags&(((VALUE)RUBY_FL_EXIVAR)))) {
            struct gen_ivtbl *ivtbl;
            if ((__builtin_expect(!!(rb_st_lookup(rb_ivar_generic_ivtbl(), (st_data_t)obj, (st_data_t *)&ivtbl)), 1)) &&
                (__builtin_expect(!!(index < ivtbl->numiv), 1))) {
                val = ivtbl->ivptr[index];
            }
        }
        goto ret;
    }
    else {
        struct st_table *iv_index_tbl;
        st_index_t numiv;
        VALUE *ivptr;
        st_data_t index;
        if ((int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_OBJECT) {
            iv_index_tbl = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ((((struct RClass*)(rb_obj_class(obj)))->ptr)->iv_index_tbl) : ((struct RObject*)(obj))->as.heap.iv_index_tbl);
            numiv = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ROBJECT_EMBED_LEN_MAX : ((struct RObject*)(obj))->as.heap.numiv);
            ivptr = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ((struct RObject*)(obj))->as.ary : ((struct RObject*)(obj))->as.heap.ivptr);
          fill:
     if (iv_index_tbl) {
  if (rb_st_lookup(iv_index_tbl, id, &index)) {
                    if (!is_attr) {
                        ic->index = index;
                        ic->ic_serial = (((struct RClass*)(((struct RBasic*)(obj))->klass))->class_serial);
                    }
                    else {
                        cc->aux.index = (int)index + 1;
                    }
                    if (index < numiv) {
                        val = ivptr[index];
      }
  }
     }
 }
        else if ((((struct RBasic*)(obj))->flags&(((VALUE)RUBY_FL_EXIVAR)))) {
            struct gen_ivtbl *ivtbl;
            if ((__builtin_expect(!!(rb_st_lookup(rb_ivar_generic_ivtbl(), (st_data_t)obj, (st_data_t *)&ivtbl)), 1))) {
                numiv = ivtbl->numiv;
                ivptr = ivtbl->ivptr;
                iv_index_tbl = ((((struct RClass*)(rb_obj_class(obj)))->ptr)->iv_index_tbl);
                goto fill;
            }
        }
        else {
            goto general_path;
        }
      ret:
        if ((__builtin_expect(!!(val != ((VALUE)RUBY_Qundef)), 1))) {
            return val;
        }
        else {
            if (!is_attr && !(((VALUE)((*rb_ruby_verbose_ptr())) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
                rb_warning("instance variable %""l""i" "\v"" not initialized", rb_id_quote_unprintable(id));
            }
            return ((VALUE)RUBY_Qnil);
        }
    }
  general_path:
    ((void)0);
    if (is_attr) {
        return rb_attr_get(obj, id);
    }
    else {
        return rb_ivar_get(obj, id);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_setivar(VALUE obj, ID id, VALUE val, IVC ic, struct rb_call_cache *cc, int is_attr));
static inline VALUE
vm_setivar(VALUE obj, ID id, VALUE val, IVC ic, struct rb_call_cache *cc, int is_attr) {
    do { VALUE frozen_obj = (obj); if ((__builtin_expect(!!((!(!(((VALUE)(frozen_obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(frozen_obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(frozen_obj))->flags & RUBY_T_MASK) != RUBY_T_NODE) || (((struct RBasic*)(frozen_obj))->flags&RUBY_FL_FREEZE))), 0))) { rb_error_frozen_object(frozen_obj); } } while (0);
    if ((__builtin_expect(!!(( ((RUBY_T_OBJECT) == RUBY_T_FIXNUM) ? (((int)(long)(obj))&RUBY_FIXNUM_FLAG) : ((RUBY_T_OBJECT) == RUBY_T_TRUE) ? ((obj) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_OBJECT) == RUBY_T_FALSE) ? ((obj) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_OBJECT) == RUBY_T_NIL) ? ((obj) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_OBJECT) == RUBY_T_UNDEF) ? ((obj) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_OBJECT) == RUBY_T_SYMBOL) ? ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_OBJECT) == RUBY_T_FLOAT) ? ( ((((int)(long)(obj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_OBJECT)))), 1))) {
 VALUE klass = ((struct RBasic*)(obj))->klass;
 st_data_t index;
 if ((__builtin_expect(!!((!is_attr && (ic->ic_serial == (((struct RClass*)(klass))->class_serial))) || ( is_attr && (cc->aux.index > 0))), 1))) {
     VALUE *ptr = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ((struct RObject*)(obj))->as.ary : ((struct RObject*)(obj))->as.heap.ivptr);
     index = !is_attr ? ic->index : cc->aux.index-1;
     if ((index < ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ROBJECT_EMBED_LEN_MAX : ((struct RObject*)(obj))->as.heap.numiv))) {
  rb_obj_write((VALUE)(obj), (VALUE *)(&ptr[index]), (VALUE)(val), "./vm_insnhelper.c", 1127);
  ((void)0);
  return val;
     }
 }
 else {
     struct st_table *iv_index_tbl = ((((struct RBasic*)(obj))->flags & ROBJECT_EMBED) ? ((((struct RClass*)(rb_obj_class(obj)))->ptr)->iv_index_tbl) : ((struct RObject*)(obj))->as.heap.iv_index_tbl);
     if (iv_index_tbl && rb_st_lookup(iv_index_tbl, (st_data_t)id, &index)) {
                if (!is_attr) {
                    ic->index = index;
                    ic->ic_serial = (((struct RClass*)(klass))->class_serial);
                }
  else if (index >= 0x7fffffff) {
      rb_raise(rb_eArgError, "too many instance variables");
  }
  else {
      cc->aux.index = (int)(index + 1);
  }
     }
 }
    }
    else {
 ((void)0);
    }
    ((void)0);
    return rb_ivar_set(obj, id, val);
}
ALWAYS_INLINE(static inline VALUE
vm_getinstancevariable(VALUE obj, ID id, IVC ic));
static inline VALUE
vm_getinstancevariable(VALUE obj, ID id, IVC ic) {
    return vm_getivar(obj, id, ic, ((void *)0), 0);
}
ALWAYS_INLINE(static inline void
vm_setinstancevariable(VALUE obj, ID id, VALUE val, IVC ic));
static inline void
vm_setinstancevariable(VALUE obj, ID id, VALUE val, IVC ic) {
    vm_setivar(obj, id, val, ic, 0, 0);
}
static VALUE
vm_throw_continue(const rb_execution_context_t *ec, VALUE err)
{
    if ((((int)(long)(err))&RUBY_FIXNUM_FLAG)) {
 ec->tag->state = ((int)rb_fix2int((VALUE)(err)));
    }
    else if (((((VALUE)(err)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(err) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(err) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(err))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL)))) {
 ec->tag->state = RUBY_TAG_THROW;
    }
    else if (( ((RUBY_T_IMEMO) == RUBY_T_FIXNUM) ? (((int)(long)((VALUE)(err)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_IMEMO) == RUBY_T_TRUE) ? (((VALUE)(err)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_IMEMO) == RUBY_T_FALSE) ? (((VALUE)(err)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_IMEMO) == RUBY_T_NIL) ? (((VALUE)(err)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_IMEMO) == RUBY_T_UNDEF) ? (((VALUE)(err)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_IMEMO) == RUBY_T_SYMBOL) ? ((((VALUE)((VALUE)(err))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((VALUE)(err)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(err)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(err)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_IMEMO) == RUBY_T_FLOAT) ? ( ((((int)(long)((VALUE)(err)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((VALUE)(err)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(err)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(err)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((VALUE)(err)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)(err)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)(err)))->flags & RUBY_T_MASK) == (RUBY_T_IMEMO)))) {
 ec->tag->state = THROW_DATA_STATE((struct vm_throw_data *)err);
    }
    else {
 ec->tag->state = RUBY_TAG_RAISE;
    }
    return err;
}
static VALUE
vm_throw_start(const rb_execution_context_t *ec, rb_control_frame_t *const reg_cfp, enum ruby_tag_type state,
               const int flag, const VALUE throwobj)
{
    const rb_control_frame_t *escape_cfp = ((void *)0);
    const rb_control_frame_t * const eocfp = RUBY_VM_END_CONTROL_FRAME(ec);
    if (flag != 0) {
    }
    else if (state == RUBY_TAG_BREAK) {
 int is_orphan = 1;
 const VALUE *ep = ((((reg_cfp)->ep)));
 const rb_iseq_t *base_iseq = ((((reg_cfp)))->iseq);
 escape_cfp = reg_cfp;
 while (base_iseq->body->type != ISEQ_TYPE_BLOCK) {
     if (escape_cfp->iseq->body->type == ISEQ_TYPE_CLASS) {
  escape_cfp = ((escape_cfp)+1);
  ep = escape_cfp->ep;
  base_iseq = escape_cfp->iseq;
     }
     else {
  ep = VM_ENV_PREV_EP(ep);
  base_iseq = base_iseq->body->parent_iseq;
  escape_cfp = rb_vm_search_cf_from_ep(ec, escape_cfp, ep);
  ((void)0);
     }
 }
 if (VM_FRAME_LAMBDA_P(escape_cfp)) {
     is_orphan = 0;
     state = RUBY_TAG_RETURN;
 }
 else {
     ep = VM_ENV_PREV_EP(ep);
     while (escape_cfp < eocfp) {
  if (escape_cfp->ep == ep) {
      const rb_iseq_t *const iseq = escape_cfp->iseq;
      const VALUE epc = escape_cfp->pc - iseq->body->iseq_encoded;
      const struct iseq_catch_table *const ct = iseq->body->catch_table;
      unsigned int i;
      if (!ct) break;
      for (i=0; i < ct->size; i++) {
   const struct iseq_catch_table_entry *const entry =
       &(ct)->entries[i];
   if (entry->type == CATCH_TYPE_BREAK &&
       entry->iseq == base_iseq &&
       entry->start < epc && entry->end >= epc) {
       if (entry->cont == epc) {
    is_orphan = 0;
       }
       break;
   }
      }
      break;
  }
  escape_cfp = ((escape_cfp)+1);
     }
 }
 if (is_orphan) {
     rb_vm_localjump_error("break from proc-closure", throwobj, RUBY_TAG_BREAK);
 }
    }
    else if (state == RUBY_TAG_RETRY) {
 const VALUE *ep = VM_ENV_PREV_EP(((((reg_cfp)->ep))));
 escape_cfp = rb_vm_search_cf_from_ep(ec, reg_cfp, ep);
    }
    else if (state == RUBY_TAG_RETURN) {
 const VALUE *current_ep = ((((reg_cfp)->ep)));
 const VALUE *target_lep = VM_EP_LEP(current_ep);
 int in_class_frame = 0;
 int toplevel = 1;
 escape_cfp = reg_cfp;
 while (escape_cfp < eocfp) {
     const VALUE *lep = VM_CF_LEP(escape_cfp);
     if (!target_lep) {
  target_lep = lep;
     }
     if (lep == target_lep &&
  VM_FRAME_RUBYFRAME_P(escape_cfp) &&
  escape_cfp->iseq->body->type == ISEQ_TYPE_CLASS) {
  in_class_frame = 1;
  target_lep = 0;
     }
     if (lep == target_lep) {
  if (VM_FRAME_LAMBDA_P(escape_cfp)) {
      toplevel = 0;
      if (in_class_frame) {
   goto valid_return;
      }
      else {
   const VALUE *tep = current_ep;
   while (target_lep != tep) {
       if (escape_cfp->ep == tep) {
    goto valid_return;
       }
       tep = VM_ENV_PREV_EP(tep);
   }
      }
  }
  else if (VM_FRAME_RUBYFRAME_P(escape_cfp)) {
      switch (escape_cfp->iseq->body->type) {
        case ISEQ_TYPE_TOP:
        case ISEQ_TYPE_MAIN:
                        if (toplevel) {
                            if (in_class_frame) goto unexpected_return;
                            goto valid_return;
                        }
   break;
        case ISEQ_TYPE_EVAL:
        case ISEQ_TYPE_CLASS:
   toplevel = 0;
   break;
        default:
   break;
      }
  }
     }
     if (escape_cfp->ep == target_lep && escape_cfp->iseq->body->type == ISEQ_TYPE_METHOD) {
  goto valid_return;
     }
     escape_cfp = ((escape_cfp)+1);
 }
      unexpected_return:;
 rb_vm_localjump_error("unexpected return", throwobj, RUBY_TAG_RETURN);
      valid_return:;
    }
    else {
 rb_bug("isns(throw): unsupported throw type");
    }
    ec->tag->state = state;
    return (VALUE)THROW_DATA_NEW(throwobj, escape_cfp, state);
}
static VALUE
vm_throw(const rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
  rb_num_t throw_state, VALUE throwobj)
{
    const int state = (int)(throw_state & VM_THROW_STATE_MASK);
    const int flag = (int)(throw_state & VM_THROW_NO_ESCAPE_FLAG);
    if (state != 0) {
        return vm_throw_start(ec, reg_cfp, state, flag, throwobj);
    }
    else {
 return vm_throw_continue(ec, throwobj);
    }
}
static inline void
vm_expandarray(VALUE *sp, VALUE ary, rb_num_t num, int flag)
{
    int is_splat = flag & 0x01;
    rb_num_t space_size = num + is_splat;
    VALUE *base = sp - 1;
    const VALUE *ptr;
    rb_num_t len;
    const VALUE obj = ary;
    if (!( ((RUBY_T_ARRAY) == RUBY_T_FIXNUM) ? (((int)(long)(ary))&RUBY_FIXNUM_FLAG) : ((RUBY_T_ARRAY) == RUBY_T_TRUE) ? ((ary) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_ARRAY) == RUBY_T_FALSE) ? ((ary) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_ARRAY) == RUBY_T_NIL) ? ((ary) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_ARRAY) == RUBY_T_UNDEF) ? ((ary) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_ARRAY) == RUBY_T_SYMBOL) ? ((((VALUE)(ary)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(ary) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(ary) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(ary))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_ARRAY) == RUBY_T_FLOAT) ? ( ((((int)(long)(ary))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(ary) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(ary) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(ary))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(ary) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(ary) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(ary))->flags & RUBY_T_MASK) == (RUBY_T_ARRAY))) && !((VALUE)(ary = rb_check_array_type(ary)) != ((VALUE)RUBY_Qnil))) {
 ary = obj;
 ptr = &ary;
 len = 1;
    }
    else {
        ptr = rb_array_const_ptr_transient(ary);
 len = (rb_num_t)rb_array_len(ary);
    }
    if (space_size == 0) {
    }
    else if (flag & 0x02) {
 rb_num_t i = 0, j;
 if (len < num) {
     for (i=0; i<num-len; i++) {
  *base++ = ((VALUE)RUBY_Qnil);
     }
 }
 for (j=0; i<num; i++, j++) {
     VALUE v = ptr[len - j - 1];
     *base++ = v;
 }
 if (is_splat) {
     *base = rb_ary_new_from_values(len - j, ptr);
 }
    }
    else {
 rb_num_t i;
 VALUE *bptr = &base[space_size - 1];
 for (i=0; i<num; i++) {
     if (len <= i) {
  for (; i<num; i++) {
      *bptr-- = ((VALUE)RUBY_Qnil);
  }
  break;
     }
     *bptr-- = ptr[i];
 }
 if (is_splat) {
     if (num > len) {
  *bptr = rb_ary_new();
     }
     else {
  *bptr = rb_ary_new_from_values(len - num, ptr + num);
     }
 }
    }
    (*__extension__ ({ volatile VALUE *rb_gc_guarded_ptr = &(ary); __asm__("" : : "m"(rb_gc_guarded_ptr)); rb_gc_guarded_ptr; }));
}
static VALUE vm_call_general(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
__attribute__((__artificial__))
static inline vm_call_handler
calccall(const struct rb_call_data *cd, const rb_callable_method_entry_t *me)
{
    const struct rb_call_info *ci = &cd->ci;
    const struct rb_call_cache *cc = &cd->cc;
    if ((__builtin_expect(!!(!me), 0))) {
        ((void)0);
        return vm_call_general;
    }
    else if ((__builtin_expect(!!(cc->me != me), 1))) {
        ((void)0);
        return vm_call_general;
    }
    else if ((__builtin_expect(!!(cc->method_serial != me->def->method_serial), 0))) {
        ((void)0);
        return vm_call_general;
    }
    else if (((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) != METHOD_VISI_PUBLIC) &&
             !(ci->flag & (0x01 << VM_CALL_FCALL_bit))) {
        ((void)0);
        return vm_call_general;
    }
    else {
        ((void)0);
        (void)(cc->call != vm_call_general);
        return cc->call;
    }
}
__attribute__ ((__visibility__("default"))) extern void
rb_vm_search_method_slowpath(struct rb_call_data *cd, VALUE klass)
;
static inline _Bool
vm_cache_check_for_class_serial(struct rb_call_cache *cc, rb_serial_t class_serial)
{
    int i;
    rb_serial_t j;
    for (i = 0; i < ((int)(sizeof(cc->class_serial) / sizeof((cc->class_serial)[0]))); i++) {
        j = cc->class_serial[i];
        if (! j) {
            break;
        }
        else if (j != class_serial) {
            continue;
        }
        else if (! i) {
            return 1;
        }
        else {
            goto hit;
        }
    }
    ((void)0);
    return 0;
  hit:
    for (; i > 0; i--) {
        cc->class_serial[i] = cc->class_serial[i - 1];
    }
    cc->class_serial[0] = j;
    memset((&cc->aux), 0, sizeof(cc->aux)*(size_t)(1));
    return 1;
}
static void
vm_search_method_fastpath(struct rb_call_data *cd, VALUE klass)
{
    struct rb_call_cache *cc = &cd->cc;
    if ((__builtin_expect(!!(((ruby_vm_global_method_state) == cc->method_state) && vm_cache_check_for_class_serial(cc, (((struct RClass*)(klass))->class_serial))), 1))) {
 ((void)0);
 ((void)0);
 return;
    }
    ((void)0);
    rb_vm_search_method_slowpath(cd, klass);
}
static void
vm_search_method(struct rb_call_data *cd, VALUE recv)
{
    VALUE klass = rb_class_of((VALUE)(recv));
    ((void)0);
    ((void)0);
    vm_search_method_fastpath(cd, klass);
}
static inline int
check_cfunc(const rb_callable_method_entry_t *me, VALUE (*func)())
{
    if (me && me->def->type == VM_METHOD_TYPE_CFUNC &&
 me->def->body.cfunc.func == func) {
 return 1;
    }
    else {
 return 0;
    }
}
static inline int
vm_method_cfunc_is(CALL_DATA cd, VALUE recv, VALUE (*func)())
{
    vm_search_method(cd, recv);
    return check_cfunc(cd->cc.me, func);
}
static VALUE
opt_equal_fallback(VALUE recv, VALUE obj, CALL_DATA cd)
{
    if (vm_method_cfunc_is(cd, recv, rb_obj_equal)) {
 return recv == obj ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    return ((VALUE)RUBY_Qundef);
}
static inline _Bool
FIXNUM_2_P(VALUE a, VALUE b)
{
    long x = a;
    long y = b;
    long z = x & y & 1;
    return z == 1;
}
static inline _Bool
FLONUM_2_P(VALUE a, VALUE b)
{
    long x = a;
    long y = b;
    long z = ((x ^ 2) | (y ^ 2)) & 3;
    return !z;
}
static inline int
comparable_by_identity(VALUE recv, VALUE obj)
{
    if (FIXNUM_2_P(recv, obj)) {
 return (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 0))) == 0), 1))) != 0) * 2 - 1;
    }
    if (FLONUM_2_P(recv, obj)) {
 return (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 1))) == 0), 1))) != 0) * 2 - 1;
    }
    if (((((VALUE)(recv)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(recv))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) && ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL)))) {
 return (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 6))) == 0), 1))) != 0) * 2 - 1;
    }
    return 0;
}
static
inline
VALUE
opt_eq_func(VALUE recv, VALUE obj, CALL_DATA cd)
{
    switch (comparable_by_identity(recv, obj)) {
      case 1:
 return (recv == obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
      case -1:
 goto fallback;
    }
    if (0) {
    }
    else if ((!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cFloat)) {
 if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 1))) == 0), 1)))) {
     return rb_float_equal(recv, obj);
 }
    }
    else if ((!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cString) && ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 2))) == 0), 1)))) {
        if (recv == obj) return ((VALUE)RUBY_Qtrue);
        if (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)(obj))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? ((obj) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? ((obj) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? ((obj) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? ((obj) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)(obj)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)(obj))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(obj))->flags & RUBY_T_MASK) == (RUBY_T_STRING)))) {
            return rb_str_eql_internal(recv, obj);
        }
    }
  fallback:
    return opt_equal_fallback(recv, obj, cd);
}
static
inline
VALUE
opt_eql_func(VALUE recv, VALUE obj, CALL_DATA cd)
{
    switch (comparable_by_identity(recv, obj)) {
      case 1:
 return (recv == obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
      case -1:
 goto fallback;
    }
    if (0) {
    }
    else if ((!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cFloat)) {
 if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 1))) == 0), 1)))) {
     return rb_float_eql(recv, obj);
 }
    }
    else if ((!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cString)) {
 if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQ)]&((1 << 2))) == 0), 1)))) {
     return rb_str_eql(recv, obj);
 }
    }
  fallback:
    return opt_equal_fallback(recv, obj, cd);
}
VALUE
rb_equal_opt(VALUE obj1, VALUE obj2)
;static inline 
VALUE
rb_eql_opt(VALUE obj1, VALUE obj2)
{
    struct rb_call_data cd = { .ci = { .mid = idEqlP, }, };
    return opt_eql_func(obj1, obj2, &cd);
}
extern VALUE rb_vm_call0(rb_execution_context_t *ec, VALUE, ID, int, const VALUE*, const rb_callable_method_entry_t *, int kw_splat);
static VALUE
check_match(rb_execution_context_t *ec, VALUE pattern, VALUE target, enum vm_check_match_type type)
{
    switch (type) {
      case VM_CHECKMATCH_TYPE_WHEN:
 return pattern;
      case VM_CHECKMATCH_TYPE_RESCUE:
 if (!rb_obj_is_kind_of(pattern, rb_cModule)) {
     rb_raise(rb_eTypeError, "class or module required for rescue clause");
 }
      case VM_CHECKMATCH_TYPE_CASE: {
 const rb_callable_method_entry_t *me =
     rb_callable_method_entry_with_refinements(rb_class_of((VALUE)(pattern)), idEqq, ((void *)0));
 if (me) {
            return rb_vm_call0(ec, pattern, idEqq, 1, &target, me, 0);
 }
 else {
     return __extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, pattern, idEqq, 1, &target); });
 }
      }
      default:
 rb_bug("check_match: unreachable");
    }
}
static inline VALUE
double_cmp_lt(double a, double b)
{
    ;
    return a < b ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
}
static inline VALUE
double_cmp_le(double a, double b)
{
    ;
    return a <= b ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
}
static inline VALUE
double_cmp_gt(double a, double b)
{
    ;
    return a > b ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
}
static inline VALUE
double_cmp_ge(double a, double b)
{
    ;
    return a >= b ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
}
static inline VALUE *
vm_base_ptr(const rb_control_frame_t *cfp)
{
    return cfp->__bp__;
}
__attribute__ ((__noreturn__)) static void raise_argument_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const VALUE exc);
__attribute__ ((__noreturn__)) static void argument_arity_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const int miss_argc, const int min_argc, const int max_argc);
__attribute__ ((__noreturn__)) static void argument_kw_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const char *error, const VALUE keys);
VALUE rb_keyword_error_new(const char *error, VALUE keys);
static VALUE method_missing(VALUE obj, ID id, int argc, const VALUE *argv,
                            enum method_missing_reason call_status, int kw_splat);
__attribute__ ((__visibility__("default"))) extern
const rb_callable_method_entry_t *rb_resolve_refined_method_callable(VALUE refinements, const rb_callable_method_entry_t *me);
struct args_info {
    VALUE *argv;
    int argc;
    int rest_index;
    int rest_dupped;
    const struct rb_call_info_kw_arg *kw_arg;
    VALUE *kw_argv;
    VALUE rest;
};
enum arg_setup_type {
    arg_setup_method,
    arg_setup_block
};
static inline void
arg_rest_dup(struct args_info *args)
{
    if (!args->rest_dupped) {
        args->rest = rb_ary_dup(args->rest);
        args->rest_dupped = 1;
    }
}
static inline int
args_argc(struct args_info *args)
{
    if (args->rest == ((VALUE)RUBY_Qfalse)) {
 return args->argc;
    }
    else {
 return args->argc + rb_long2int_inline(rb_array_len(args->rest)) - args->rest_index;
    }
}
static inline void
args_extend(struct args_info *args, const int min_argc)
{
    int i;
    if (args->rest) {
        arg_rest_dup(args);
 ((void)0);
 for (i=args->argc + rb_long2int_inline(rb_array_len(args->rest)); i<min_argc; i++) {
     rb_ary_push(args->rest, ((VALUE)RUBY_Qnil));
 }
    }
    else {
 for (i=args->argc; i<min_argc; i++) {
     args->argv[args->argc++] = ((VALUE)RUBY_Qnil);
 }
    }
}
static inline void
args_reduce(struct args_info *args, int over_argc)
{
    if (args->rest) {
 const long len = rb_array_len(args->rest);
 if (len > over_argc) {
     arg_rest_dup(args);
     rb_ary_resize(args->rest, len - over_argc);
     return;
 }
 else {
     args->rest = ((VALUE)RUBY_Qfalse);
     over_argc -= len;
 }
    }
    ((void)0);
    args->argc -= over_argc;
}
static inline int
args_check_block_arg0(struct args_info *args)
{
    VALUE ary = ((VALUE)RUBY_Qnil);
    if (args->rest && rb_array_len(args->rest) == 1) {
 VALUE arg0 = (rb_array_const_ptr_transient(args->rest)[0]);
 ary = rb_check_array_type(arg0);
    }
    else if (args->argc == 1) {
 VALUE arg0 = args->argv[0];
 ary = rb_check_array_type(arg0);
 args->argv[0] = arg0;
    }
    if (!!((VALUE)(ary) != ((VALUE)RUBY_Qnil))) {
 args->rest = ary;
 args->rest_index = 0;
 args->argc = 0;
 return 1;
    }
    return 0;
}
static inline void
args_copy(struct args_info *args)
{
    if (args->rest != ((VALUE)RUBY_Qfalse)) {
 int argc = args->argc;
 args->argc = 0;
        arg_rest_dup(args);
 while (args->rest_index > 0 && argc > 0) {
     do { const VALUE _ary = (args->rest); const VALUE _v = (args->argv[--argc]); VALUE *ptr = (VALUE *)rb_array_ptr_use_start(_ary, 1); rb_obj_write((VALUE)(_ary), (VALUE *)(&ptr[--args->rest_index]), (VALUE)(_v), "./vm_args.c", 154); rb_array_ptr_use_end(_ary, 1); } while (0);
 }
 while (argc > 0) {
     rb_ary_unshift(args->rest, args->argv[--argc]);
 }
    }
    else if (args->argc > 0) {
 args->rest = rb_ary_new_from_values(args->argc, args->argv);
 args->rest_index = 0;
        args->rest_dupped = 1;
 args->argc = 0;
    }
}
static inline const VALUE *
args_rest_argv(struct args_info *args)
{
    return rb_array_const_ptr_transient(args->rest) + args->rest_index;
}
static inline VALUE
args_rest_array(struct args_info *args)
{
    VALUE ary;
    if (args->rest) {
        ary = rb_ary_behead(args->rest, args->rest_index);
        args->rest_index = 0;
 args->rest = 0;
    }
    else {
 ary = rb_ary_new();
    }
    return ary;
}
static int
keyword_hash_symbol_other_iter(st_data_t key, st_data_t val, st_data_t arg)
{
    *(int*)arg |= ((((VALUE)((VALUE)key)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((VALUE)key) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)key) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)key))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) ? 1 : 2;
    if ((*(int*)arg & 3) == 3) {
 return ST_STOP;
    }
    return ST_CONTINUE;
}
static int
keyword_hash_symbol_other(VALUE hash)
{
    int symbol_other = 0;
    rb_hash_stlike_foreach(hash, keyword_hash_symbol_other_iter, (st_data_t)(&symbol_other));
    return symbol_other;
}
static int
keyword_hash_split_iter(st_data_t key, st_data_t val, st_data_t arg)
{
    if (((((VALUE)((VALUE)key)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((VALUE)key) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((VALUE)key) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((VALUE)key))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL)))) {
 rb_hash_aset((VALUE)arg, (VALUE)key, (VALUE)val);
 return ST_DELETE;
    }
    return ST_CONTINUE;
}
static void
keyword_hash_split(VALUE *kw_hash_ptr, VALUE *rest_hash_ptr)
{
    *kw_hash_ptr = rb_hash_new();
    rb_hash_stlike_foreach(*rest_hash_ptr, keyword_hash_split_iter, (st_data_t)(*kw_hash_ptr));
}
static int
keyword_hash_p(VALUE *kw_hash_ptr, VALUE *rest_hash_ptr, int check_only_symbol)
{
    *rest_hash_ptr = rb_check_hash_type(*kw_hash_ptr);
    if (!!((VALUE)(*rest_hash_ptr) != ((VALUE)RUBY_Qnil))) {
 if (check_only_symbol) {
     switch (keyword_hash_symbol_other(*rest_hash_ptr)) {
              case 0:
              case 1:
  break;
              case 2:
  *kw_hash_ptr = ((VALUE)RUBY_Qnil);
  return 0;
              case 3:
                *rest_hash_ptr = rb_hash_dup(*rest_hash_ptr);
  keyword_hash_split(kw_hash_ptr, rest_hash_ptr);
  return 1;
     }
 }
 *kw_hash_ptr = *rest_hash_ptr;
 *rest_hash_ptr = ((VALUE)RUBY_Qfalse);
 return 1;
    }
    else {
 *kw_hash_ptr = ((VALUE)RUBY_Qnil);
 return 0;
    }
}
static VALUE
args_pop_keyword_hash(struct args_info *args, VALUE *kw_hash_ptr, int check_only_symbol)
{
    VALUE rest_hash;
    if (args->rest == ((VALUE)RUBY_Qfalse)) {
      from_argv:
 ((void)0);
 *kw_hash_ptr = args->argv[args->argc-1];
 if (keyword_hash_p(kw_hash_ptr, &rest_hash, check_only_symbol)) {
     if (rest_hash) {
  args->argv[args->argc-1] = rest_hash;
     }
     else {
  args->argc--;
  return 1;
     }
 }
    }
    else {
 long len = rb_array_len(args->rest);
 if (len > 0) {
     *kw_hash_ptr = (rb_array_const_ptr_transient(args->rest)[len - 1]);
     if (keyword_hash_p(kw_hash_ptr, &rest_hash, check_only_symbol)) {
  if (rest_hash) {
      do { const VALUE _ary = (args->rest); const VALUE _v = (rest_hash); VALUE *ptr = (VALUE *)rb_array_ptr_use_start(_ary, 1); rb_obj_write((VALUE)(_ary), (VALUE *)(&ptr[len - 1]), (VALUE)(_v), "./vm_args.c", 291); rb_array_ptr_use_end(_ary, 1); } while (0);
  }
  else {
      arg_rest_dup(args);
      rb_ary_pop(args->rest);
      return 1;
  }
     }
 }
 else {
     goto from_argv;
 }
    }
    return 0;
}
static int
args_kw_argv_to_hash(struct args_info *args)
{
    const struct rb_call_info_kw_arg *kw_arg = args->kw_arg;
    const VALUE *const passed_keywords = kw_arg->keywords;
    const int kw_len = kw_arg->keyword_len;
    VALUE h = rb_hash_new_with_size(kw_len);
    const int kw_start = args->argc - kw_len;
    const VALUE * const kw_argv = args->argv + kw_start;
    int i;
    args->argc = kw_start + 1;
    for (i=0; i<kw_len; i++) {
 rb_hash_aset(h, passed_keywords[i], kw_argv[i]);
    }
    args->argv[args->argc - 1] = h;
    return args->argc;
}
static void
args_stored_kw_argv_to_hash(struct args_info *args)
{
    int i;
    const struct rb_call_info_kw_arg *kw_arg = args->kw_arg;
    const VALUE *const passed_keywords = kw_arg->keywords;
    const int passed_keyword_len = kw_arg->keyword_len;
    VALUE h = rb_hash_new_with_size(passed_keyword_len);
    for (i=0; i<passed_keyword_len; i++) {
 rb_hash_aset(h, passed_keywords[i], args->kw_argv[i]);
    }
    args->kw_argv = ((void *)0);
    if (args->rest) {
 arg_rest_dup(args);
 rb_ary_push(args->rest, h);
    }
    else {
 args->argv[args->argc++] = h;
    }
}
static inline void
args_setup_lead_parameters(struct args_info *args, int argc, VALUE *locals)
{
    if (args->argc >= argc) {
 args->argc -= argc;
 args->argv += argc;
    }
    else {
 int i, j;
 const VALUE *argv = args_rest_argv(args);
 for (i=args->argc, j=0; i<argc; i++, j++) {
     locals[i] = argv[j];
 }
 args->rest_index += argc - args->argc;
 args->argc = 0;
    }
}
static inline void
args_setup_post_parameters(struct args_info *args, int argc, VALUE *locals)
{
    long len;
    len = rb_array_len(args->rest);
    ruby_nonempty_memcpy((locals), (rb_array_const_ptr_transient(args->rest) + len - argc), sizeof(VALUE)*(size_t)(argc));
    rb_ary_resize(args->rest, len - argc);
}
static inline int
args_setup_opt_parameters(struct args_info *args, int opt_max, VALUE *locals)
{
    int i;
    if (args->argc >= opt_max) {
 args->argc -= opt_max;
 args->argv += opt_max;
 i = opt_max;
    }
    else {
 int j;
 i = args->argc;
 args->argc = 0;
 if (args->rest) {
            int len = rb_long2int_inline(rb_array_len(args->rest));
            const VALUE *argv = rb_array_const_ptr_transient(args->rest);
            for (; i<opt_max && args->rest_index < len; i++, args->rest_index++) {
                locals[i] = argv[args->rest_index];
            }
        }
 for (j=i; j<opt_max; j++) {
     locals[j] = ((VALUE)RUBY_Qnil);
 }
    }
    return i;
}
static inline void
args_setup_rest_parameter(struct args_info *args, VALUE *locals)
{
    *locals = args_rest_array(args);
}
static VALUE
make_unknown_kw_hash(const VALUE *passed_keywords, int passed_keyword_len, const VALUE *kw_argv)
{
    int i;
    VALUE obj = rb_ary_tmp_new(1);
    for (i=0; i<passed_keyword_len; i++) {
 if (kw_argv[i] != ((VALUE)RUBY_Qundef)) {
     rb_ary_push(obj, passed_keywords[i]);
 }
    }
    return obj;
}
static VALUE
make_rest_kw_hash(const VALUE *passed_keywords, int passed_keyword_len, const VALUE *kw_argv)
{
    int i;
    VALUE obj = rb_hash_new_with_size(passed_keyword_len);
    for (i=0; i<passed_keyword_len; i++) {
 if (kw_argv[i] != ((VALUE)RUBY_Qundef)) {
     rb_hash_aset(obj, passed_keywords[i], kw_argv[i]);
 }
    }
    return obj;
}
static inline int
args_setup_kw_parameters_lookup(const ID key, VALUE *ptr, const VALUE *const passed_keywords, VALUE *passed_values, const int passed_keyword_len)
{
    int i;
    const VALUE keyname = (rb_id2sym(key));
    for (i=0; i<passed_keyword_len; i++) {
 if (keyname == passed_keywords[i]) {
     *ptr = passed_values[i];
     passed_values[i] = ((VALUE)RUBY_Qundef);
     return 1;
 }
    }
    return 0;
}
static void
args_setup_kw_parameters(rb_execution_context_t *const ec, const rb_iseq_t *const iseq,
    VALUE *const passed_values, const int passed_keyword_len, const VALUE *const passed_keywords,
    VALUE *const locals)
{
    const ID *acceptable_keywords = iseq->body->param.keyword->table;
    const int req_key_num = iseq->body->param.keyword->required_num;
    const int key_num = iseq->body->param.keyword->num;
    const VALUE * const default_values = iseq->body->param.keyword->default_values;
    VALUE missing = 0;
    int i, di, found = 0;
    int unspecified_bits = 0;
    VALUE unspecified_bits_value = ((VALUE)RUBY_Qnil);
    for (i=0; i<req_key_num; i++) {
 ID key = acceptable_keywords[i];
 if (args_setup_kw_parameters_lookup(key, &locals[i], passed_keywords, passed_values, passed_keyword_len)) {
     found++;
 }
 else {
     if (!missing) missing = rb_ary_tmp_new(1);
     rb_ary_push(missing, (rb_id2sym(key)));
 }
    }
    if (missing) argument_kw_error(ec, iseq, "missing", missing);
    for (di=0; i<key_num; i++, di++) {
 if (args_setup_kw_parameters_lookup(acceptable_keywords[i], &locals[i], passed_keywords, passed_values, passed_keyword_len)) {
     found++;
 }
 else {
     if (default_values[di] == ((VALUE)RUBY_Qundef)) {
  locals[i] = ((VALUE)RUBY_Qnil);
  if ((__builtin_expect(!!(i < (32-1)), 1))) {
      unspecified_bits |= 0x01 << di;
  }
  else {
      if (!((VALUE)(unspecified_bits_value) != ((VALUE)RUBY_Qnil))) {
   int j;
   unspecified_bits_value = rb_hash_new();
   for (j=0; j<(32-1); j++) {
       if (unspecified_bits & (0x01 << j)) {
    rb_hash_aset(unspecified_bits_value, (((VALUE)(j))<<1 | RUBY_FIXNUM_FLAG), ((VALUE)RUBY_Qtrue));
       }
   }
      }
      rb_hash_aset(unspecified_bits_value, (((VALUE)(di))<<1 | RUBY_FIXNUM_FLAG), ((VALUE)RUBY_Qtrue));
  }
     }
     else {
  locals[i] = default_values[di];
     }
 }
    }
    if (iseq->body->param.flags.has_kwrest) {
 const int rest_hash_index = key_num + 1;
 locals[rest_hash_index] = make_rest_kw_hash(passed_keywords, passed_keyword_len, passed_values);
    }
    else {
 if (found != passed_keyword_len) {
     VALUE keys = make_unknown_kw_hash(passed_keywords, passed_keyword_len, passed_values);
     argument_kw_error(ec, iseq, "unknown", keys);
 }
    }
    if (!((VALUE)(unspecified_bits_value) != ((VALUE)RUBY_Qnil))) {
 unspecified_bits_value = (((VALUE)(unspecified_bits))<<1 | RUBY_FIXNUM_FLAG);
    }
    locals[key_num] = unspecified_bits_value;
}
static inline void
args_setup_kw_rest_parameter(VALUE keyword_hash, VALUE *locals)
{
    locals[0] = !((VALUE)(keyword_hash) != ((VALUE)RUBY_Qnil)) ? rb_hash_new() : rb_hash_dup(keyword_hash);
}
static inline void
args_setup_block_parameter(const rb_execution_context_t *ec, struct rb_calling_info *calling, VALUE *locals)
{
    VALUE block_handler = calling->block_handler;
    *locals = rb_vm_bh_to_procval(ec, block_handler);
}
struct fill_values_arg {
    VALUE *keys;
    VALUE *vals;
    int argc;
};
static int
fill_keys_values(st_data_t key, st_data_t val, st_data_t ptr)
{
    struct fill_values_arg *arg = (struct fill_values_arg *)ptr;
    int i = arg->argc++;
    arg->keys[i] = (VALUE)key;
    arg->vals[i] = (VALUE)val;
    return ST_CONTINUE;
}
static inline int
ignore_keyword_hash_p(VALUE keyword_hash, const rb_iseq_t * const iseq)
{
    if (!(iseq->body->param.flags.has_kw) &&
       !(iseq->body->param.flags.has_kwrest)) {
 keyword_hash = rb_check_hash_type(keyword_hash);
 if (!!((VALUE)(keyword_hash) != ((VALUE)RUBY_Qnil)) && (((!(((struct RBasic*)((keyword_hash)))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(keyword_hash))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(keyword_hash))->as.st)->num_entries)) == 0)) {
     return 1;
 }
    }
    return 0;
}
VALUE rb_iseq_location(const rb_iseq_t *iseq);
static st_table *caller_to_callees = 0;
static VALUE
rb_warn_check(const rb_execution_context_t * const ec, const rb_iseq_t *const iseq)
{
    if (!rb_warning_category_enabled_p(RB_WARN_CATEGORY_DEPRECATED)) return 1;
    if (!iseq) return 0;
    const st_data_t callee = (st_data_t)(iseq->body->iseq_unique_id * 2);
    const rb_control_frame_t * const cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
    if (!cfp) return 0;
    const st_data_t caller = (st_data_t)cfp->pc;
    if (!caller_to_callees) {
        caller_to_callees = rb_st_init_numtable();
    }
    st_data_t val;
    if (rb_st_lookup(caller_to_callees, caller, &val)) {
        st_table *callees;
        if (val & 1) {
            val &= ~(st_data_t)1;
            if (val == callee) return 1;
            callees = rb_st_init_numtable();
            rb_st_insert(callees, val, 1);
        }
        else {
            callees = (st_table *) val;
            if (rb_st_lookup((callees),(callee),(st_data_t *)0)) return 1;
        }
        rb_st_insert(callees, callee, 1);
        rb_st_insert(caller_to_callees, caller, (st_data_t) callees);
    }
    else {
        rb_st_insert(caller_to_callees, caller, callee | 1);
    }
    return 0;
}
static inline void
rb_warn_keyword_to_last_hash(rb_execution_context_t * const ec, struct rb_calling_info *calling, const struct rb_call_info *ci, const rb_iseq_t * const iseq)
{
    if (rb_warn_check(ec, iseq)) return;
    VALUE name, loc;
    if (calling->recv == ((VALUE)RUBY_Qundef)) {
        rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
        return;
    }
    name = rb_id2str(ci->mid);
    loc = rb_iseq_location(iseq);
    if (!((VALUE)(loc) != ((VALUE)RUBY_Qnil))) {
        rb_warn("Passing the keyword argument for `%""l""i" "\v""' as the last hash parameter is deprecated",
                name);
    }
    else {
        rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
        if (name) {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method `%""l""i" "\v""' is defined here", name);
        }
        else {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method is defined here");
        }
    }
}
static inline void
rb_warn_split_last_hash_to_keyword(rb_execution_context_t * const ec, struct rb_calling_info *calling, const struct rb_call_info *ci, const rb_iseq_t * const iseq)
{
    if (rb_warn_check(ec, iseq)) return;
    VALUE name, loc;
    name = rb_id2str(ci->mid);
    loc = rb_iseq_location(iseq);
    if (!((VALUE)(loc) != ((VALUE)RUBY_Qnil))) {
        rb_warn("Splitting the last argument for `%""l""i" "\v""' into positional and keyword parameters is deprecated",
                name);
    }
    else {
        rb_warn("Splitting the last argument into positional and keyword parameters is deprecated");
        if (calling->recv != ((VALUE)RUBY_Qundef)) {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method `%""l""i" "\v""' is defined here", name);
        }
        else {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method is defined here");
        }
    }
}
static inline void
rb_warn_last_hash_to_keyword(rb_execution_context_t * const ec, struct rb_calling_info *calling, const struct rb_call_info *ci, const rb_iseq_t * const iseq)
{
    if (rb_warn_check(ec, iseq)) return;
    VALUE name, loc;
    name = rb_id2str(ci->mid);
    loc = rb_iseq_location(iseq);
    if (!((VALUE)(loc) != ((VALUE)RUBY_Qnil))) {
        rb_warn("Using the last argument for `%""l""i" "\v""' as keyword parameters is deprecated; maybe ** should be added to the call",
                name);
    }
    else {
        rb_warn("Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call");
        if (calling->recv != ((VALUE)RUBY_Qundef)) {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method `%""l""i" "\v""' is defined here", name);
        }
        else {
            rb_compile_warn((!(((struct RBasic*)((rb_array_const_ptr_transient(loc)[0])))->flags & RSTRING_NOEMBED) ? ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.ary : ((struct RString*)((rb_array_const_ptr_transient(loc)[0])))->as.heap.ptr), ((int)rb_fix2int((VALUE)((rb_array_const_ptr_transient(loc)[1])))),
                            "The called method is defined here");
        }
    }
}
static int
setup_parameters_complex(rb_execution_context_t * const ec, const rb_iseq_t * const iseq,
    struct rb_calling_info *const calling,
    const struct rb_call_info *ci,
    VALUE * const locals, const enum arg_setup_type arg_setup_type)
{
    const int min_argc = iseq->body->param.lead_num + iseq->body->param.post_num;
    const int max_argc = (iseq->body->param.flags.has_rest == 0) ? min_argc + iseq->body->param.opt_num : (-1);
    int given_argc;
    int kw_splat = 0;
    unsigned int kw_flag = ci->flag & ((0x01 << VM_CALL_KWARG_bit) | (0x01 << VM_CALL_KW_SPLAT_bit));
    int opt_pc = 0, allow_autosplat = !kw_flag;
    struct args_info args_body, *args;
    VALUE keyword_hash = ((VALUE)RUBY_Qnil);
    VALUE * const orig_sp = ec->cfp->sp;
    unsigned int i;
    int remove_empty_keyword_hash = 1;
    VALUE flag_keyword_hash = 0;
    ;
    for (i=calling->argc; i<iseq->body->param.size; i++) {
 locals[i] = ((VALUE)RUBY_Qnil);
    }
    ec->cfp->sp = &locals[i];
    args = &args_body;
    given_argc = args->argc = calling->argc;
    args->argv = locals;
    args->rest_dupped = 0;
    if (kw_flag & (0x01 << VM_CALL_KWARG_bit)) {
 args->kw_arg = ((struct rb_call_info_with_kwarg *)ci)->kw_arg;
 if (iseq->body->param.flags.has_kw) {
     int kw_len = args->kw_arg->keyword_len;
     args->kw_argv = (VALUE*)__builtin_alloca_with_align((sizeof(VALUE)*(kw_len)), _Alignof(VALUE) * 8);
     args->argc -= kw_len;
     given_argc -= kw_len;
     ruby_nonempty_memcpy((args->kw_argv), (locals + args->argc), sizeof(VALUE)*(size_t)(kw_len));
 }
 else {
     args->kw_argv = ((void *)0);
     given_argc = args_kw_argv_to_hash(args);
     kw_flag |= (0x01 << VM_CALL_KW_SPLAT_bit);
 }
    }
    else {
 args->kw_arg = ((void *)0);
 args->kw_argv = ((void *)0);
    }
    if (kw_flag && iseq->body->param.flags.ruby2_keywords) {
        remove_empty_keyword_hash = 0;
    }
    if (ci->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)) {
        VALUE rest_last = 0;
        int len;
 args->rest = locals[--args->argc];
 args->rest_index = 0;
        len = rb_long2int_inline(rb_array_len(args->rest));
        given_argc += len - 1;
        rest_last = (rb_array_const_ptr_transient(args->rest)[len - 1]);
        if (!kw_flag && len > 0) {
            if (( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)(rest_last))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? ((rest_last) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? ((rest_last) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? ((rest_last) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? ((rest_last) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)(rest_last)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)(rest_last))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == (RUBY_T_HASH))) &&
                (((struct RHash *)rest_last)->basic.flags & RHASH_PASS_AS_KEYWORDS)) {
                rest_last = rb_hash_dup(rest_last);
                kw_flag |= (0x01 << VM_CALL_KW_SPLAT_bit);
                if (iseq->body->param.flags.ruby2_keywords) {
                    remove_empty_keyword_hash = 0;
                }
            }
            else {
                rest_last = 0;
            }
        }
        if (kw_flag & (0x01 << VM_CALL_KW_SPLAT_bit)) {
            if (len > 0 && ignore_keyword_hash_p(rest_last, iseq)) {
                if (given_argc != min_argc) {
                    if (remove_empty_keyword_hash) {
                        arg_rest_dup(args);
                        rb_ary_pop(args->rest);
                        given_argc--;
                        kw_flag &= ~(0x01 << VM_CALL_KW_SPLAT_bit);
                    }
                    else {
                        if (( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)(rest_last))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? ((rest_last) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? ((rest_last) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? ((rest_last) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? ((rest_last) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)(rest_last)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)(rest_last))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(rest_last) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(rest_last) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(rest_last))->flags & RUBY_T_MASK) == (RUBY_T_HASH))) && rb_obj_frozen_p(rest_last)) {
                            rest_last = rb_hash_new();
                            do { const VALUE _ary = (args->rest); const VALUE _v = (rest_last); VALUE *ptr = (VALUE *)rb_array_ptr_use_start(_ary, 1); rb_obj_write((VALUE)(_ary), (VALUE *)(&ptr[len - 1]), (VALUE)(_v), "./vm_args.c", 826); rb_array_ptr_use_end(_ary, 1); } while (0);
                        }
                        flag_keyword_hash = rest_last;
                    }
                }
                else {
                    rb_warn_keyword_to_last_hash(ec, calling, ci, iseq);
                }
     }
            else if (!remove_empty_keyword_hash && rest_last) {
                flag_keyword_hash = rest_last;
            }
        }
    }
    else {
        if (kw_flag & (0x01 << VM_CALL_KW_SPLAT_bit)) {
            VALUE last_arg = args->argv[args->argc-1];
            if (ignore_keyword_hash_p(last_arg, iseq)) {
                if (given_argc != min_argc) {
                    if (remove_empty_keyword_hash) {
                        args->argc--;
                        given_argc--;
                        kw_flag &= ~(0x01 << VM_CALL_KW_SPLAT_bit);
                    }
                    else {
                        if (( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)(last_arg))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? ((last_arg) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? ((last_arg) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? ((last_arg) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? ((last_arg) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)(last_arg)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(last_arg) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last_arg) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last_arg))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)(last_arg))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(last_arg) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last_arg) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last_arg))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(last_arg) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(last_arg) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(last_arg))->flags & RUBY_T_MASK) == (RUBY_T_HASH))) && rb_obj_frozen_p(last_arg)) {
                            last_arg = rb_hash_new();
                            args->argv[args->argc-1] = last_arg;
                        }
                        flag_keyword_hash = last_arg;
                    }
                }
                else {
                    rb_warn_keyword_to_last_hash(ec, calling, ci, iseq);
                }
     }
            else if (!remove_empty_keyword_hash) {
                flag_keyword_hash = args->argv[args->argc-1];
            }
        }
 args->rest = ((VALUE)RUBY_Qfalse);
    }
    if (flag_keyword_hash && ( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)(flag_keyword_hash))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? ((flag_keyword_hash) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? ((flag_keyword_hash) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? ((flag_keyword_hash) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? ((flag_keyword_hash) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)(flag_keyword_hash)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(flag_keyword_hash) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(flag_keyword_hash) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(flag_keyword_hash))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)(flag_keyword_hash))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(flag_keyword_hash) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(flag_keyword_hash) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(flag_keyword_hash))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(flag_keyword_hash) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(flag_keyword_hash) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(flag_keyword_hash))->flags & RUBY_T_MASK) == (RUBY_T_HASH)))) {
        ((struct RHash *)flag_keyword_hash)->basic.flags |= RHASH_PASS_AS_KEYWORDS;
    }
    if (kw_flag && iseq->body->param.flags.accepts_no_kwarg) {
 rb_raise(rb_eArgError, "no keywords accepted");
    }
    switch (arg_setup_type) {
      case arg_setup_method:
 break;
      case arg_setup_block:
 if (given_argc == 1 &&
            allow_autosplat &&
     (min_argc > 0 || iseq->body->param.opt_num > 1 ||
      iseq->body->param.flags.has_kw || iseq->body->param.flags.has_kwrest) &&
     !iseq->body->param.flags.ambiguous_param0 &&
     args_check_block_arg0(args)) {
     given_argc = rb_long2int_inline(rb_array_len(args->rest));
 }
 break;
    }
    if (given_argc < min_argc) {
 if (given_argc == min_argc - 1 && args->kw_argv) {
     args_stored_kw_argv_to_hash(args);
     given_argc = args_argc(args);
 }
 else {
     if (arg_setup_type == arg_setup_block) {
  if ((__builtin_expect(!!(!(!(1/!!(sizeof(*((ec->cfp)->sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(ec->cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)(((ec->cfp)->sp) + (min_argc)) + 1) >= (ec->cfp))), 1))) {(void)0;} else vm_stackoverflow();
  given_argc = min_argc;
  args_extend(args, min_argc);
     }
     else {
  argument_arity_error(ec, iseq, given_argc, min_argc, max_argc);
     }
 }
    }
    if (kw_flag & (0x01 << VM_CALL_KW_SPLAT_bit)) {
 kw_splat = !iseq->body->param.flags.has_rest;
    }
    if ((iseq->body->param.flags.has_kw || iseq->body->param.flags.has_kwrest ||
  (kw_splat && given_argc > max_argc)) &&
 args->kw_argv == ((void *)0)) {
        if (given_argc > min_argc) {
            if (kw_flag) {
                int check_only_symbol = (kw_flag & (0x01 << VM_CALL_KW_SPLAT_bit)) &&
                                        iseq->body->param.flags.has_kw &&
                                        !iseq->body->param.flags.has_kwrest;
                if (args_pop_keyword_hash(args, &keyword_hash, check_only_symbol)) {
                    given_argc--;
                }
                else if (check_only_symbol) {
                    if (keyword_hash != ((VALUE)RUBY_Qnil)) {
                        rb_warn_split_last_hash_to_keyword(ec, calling, ci, iseq);
                    }
                    else {
                        rb_warn_keyword_to_last_hash(ec, calling, ci, iseq);
                    }
                }
            }
            else if (args_pop_keyword_hash(args, &keyword_hash, 1)) {
                rb_warn_last_hash_to_keyword(ec, calling, ci, iseq);
                given_argc--;
            }
            else if (keyword_hash != ((VALUE)RUBY_Qnil)) {
                rb_warn_split_last_hash_to_keyword(ec, calling, ci, iseq);
            }
        }
        else if (given_argc == min_argc && kw_flag) {
            rb_warn_keyword_to_last_hash(ec, calling, ci, iseq);
        }
    }
    if (given_argc > max_argc && max_argc != (-1)) {
 if (arg_setup_type == arg_setup_block) {
     args_reduce(args, given_argc - max_argc);
     given_argc = max_argc;
 }
 else {
     argument_arity_error(ec, iseq, given_argc, min_argc, max_argc);
 }
    }
    if (iseq->body->param.flags.has_lead) {
 args_setup_lead_parameters(args, iseq->body->param.lead_num, locals + 0);
    }
    if (iseq->body->param.flags.has_rest || iseq->body->param.flags.has_post){
        args_copy(args);
    }
    if (iseq->body->param.flags.has_post) {
 args_setup_post_parameters(args, iseq->body->param.post_num, locals + iseq->body->param.post_start);
    }
    if (iseq->body->param.flags.has_opt) {
 int opt = args_setup_opt_parameters(args, iseq->body->param.opt_num, locals + iseq->body->param.lead_num);
 opt_pc = (int)iseq->body->param.opt_table[opt];
    }
    if (iseq->body->param.flags.has_rest) {
 args_setup_rest_parameter(args, locals + iseq->body->param.rest_start);
    }
    if (iseq->body->param.flags.has_kw) {
 VALUE * const klocals = locals + iseq->body->param.keyword->bits_start - iseq->body->param.keyword->num;
 if (args->kw_argv != ((void *)0)) {
     const struct rb_call_info_kw_arg *kw_arg = args->kw_arg;
     args_setup_kw_parameters(ec, iseq, args->kw_argv, kw_arg->keyword_len, kw_arg->keywords, klocals);
 }
 else if (!!((VALUE)(keyword_hash) != ((VALUE)RUBY_Qnil))) {
     int kw_len = rb_long2int_inline(((!(((struct RBasic*)((keyword_hash)))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(keyword_hash))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(keyword_hash))->as.st)->num_entries)));
     struct fill_values_arg arg;
     arg.keys = args->kw_argv = (VALUE*)__builtin_alloca_with_align((sizeof(VALUE)*(kw_len * 2)), _Alignof(VALUE) * 8);
     arg.vals = arg.keys + kw_len;
     arg.argc = 0;
     rb_hash_foreach(keyword_hash, fill_keys_values, (VALUE)&arg);
     ((void)0);
     args_setup_kw_parameters(ec, iseq, arg.vals, kw_len, arg.keys, klocals);
 }
 else {
     ((void)0);
     args_setup_kw_parameters(ec, iseq, ((void *)0), 0, ((void *)0), klocals);
 }
    }
    else if (iseq->body->param.flags.has_kwrest) {
 args_setup_kw_rest_parameter(keyword_hash, locals + iseq->body->param.keyword->rest_start);
    }
    else if (!!((VALUE)(keyword_hash) != ((VALUE)RUBY_Qnil)) && ((!(((struct RBasic*)((keyword_hash)))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(keyword_hash))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(keyword_hash))->as.st)->num_entries)) > 0 && arg_setup_type == arg_setup_method) {
 argument_kw_error(ec, iseq, "unknown", rb_hash_keys(keyword_hash));
    }
    if (iseq->body->param.flags.has_block) {
 if (iseq->body->local_iseq == iseq) {
 }
 else {
     args_setup_block_parameter(ec, calling, locals + iseq->body->param.block_start);
 }
    }
    ec->cfp->sp = orig_sp;
    return opt_pc;
}
void rb_backtrace_use_iseq_first_lineno_for_last_location(VALUE self);
static void
raise_argument_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const VALUE exc)
{
    VALUE at;
    if (iseq) {
 vm_push_frame(ec, iseq, VM_FRAME_MAGIC_DUMMY | VM_ENV_FLAG_LOCAL, ((VALUE)RUBY_Qnil) ,
        0 , ((VALUE)RUBY_Qfalse) ,
        iseq->body->iseq_encoded,
        ec->cfp->sp, 0, 0 );
 at = rb_ec_backtrace_object(ec);
 rb_backtrace_use_iseq_first_lineno_for_last_location(at);
 rb_vm_pop_frame(ec);
    }
    else {
 at = rb_ec_backtrace_object(ec);
    }
    rb_ivar_set(exc, idBt_locations, at);
    rb_exc_set_backtrace(exc, at);
    rb_exc_raise(exc);
}
static void
argument_arity_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const int miss_argc, const int min_argc, const int max_argc)
{
    VALUE exc = rb_arity_error_new(miss_argc, min_argc, max_argc);
    if (iseq->body->param.flags.has_kw) {
 const struct rb_iseq_param_keyword *const kw = iseq->body->param.keyword;
 const ID *keywords = kw->table;
 int req_key_num = kw->required_num;
 if (req_key_num > 0) {
     static const char required[] = "; required keywords";
     VALUE mesg = rb_attr_get(exc, idMesg);
     rb_str_resize(mesg, (!(((struct RBasic*)(mesg))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(mesg))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(mesg))->as.heap.len)-1);
     rb_str_cat(mesg, required, sizeof(required) - 1 - (req_key_num == 1));
     __extension__ ({ (__builtin_constant_p(":")) ? rb_str_cat((mesg), (":"), (long)strlen(":")) : rb_str_cat_cstr((mesg), (":")); });
     do {
  __extension__ ({ (__builtin_constant_p(" ")) ? rb_str_cat((mesg), (" "), (long)strlen(" ")) : rb_str_cat_cstr((mesg), (" ")); });
  rb_str_append(mesg, rb_id2str(*keywords++));
  __extension__ ({ (__builtin_constant_p(",")) ? rb_str_cat((mesg), (","), (long)strlen(",")) : rb_str_cat_cstr((mesg), (",")); });
     } while (--req_key_num);
     (!(((struct RBasic*)(mesg))->flags & RSTRING_NOEMBED) ? ((struct RString*)(mesg))->as.ary : ((struct RString*)(mesg))->as.heap.ptr)[(!(((struct RBasic*)(mesg))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(mesg))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(mesg))->as.heap.len)-1] = ')';
 }
    }
    raise_argument_error(ec, iseq, exc);
}
static void
argument_kw_error(rb_execution_context_t *ec, const rb_iseq_t *iseq, const char *error, const VALUE keys)
{
    raise_argument_error(ec, iseq, rb_keyword_error_new(error, keys));
}
static inline void
vm_caller_setup_arg_splat(rb_control_frame_t *cfp, struct rb_calling_info *calling)
{
    int argc = calling->argc;
    VALUE *argv = cfp->sp - argc;
    VALUE ary = argv[argc-1];
    ;
    cfp->sp--;
    if (!!((VALUE)(ary) != ((VALUE)RUBY_Qnil))) {
        const VALUE *ptr = rb_array_const_ptr_transient(ary);
        long len = rb_array_len(ary), i;
        if ((__builtin_expect(!!(!(!(1/!!(sizeof(*((cfp)->sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)(((cfp)->sp) + (len)) + 1) >= (cfp))), 1))) {(void)0;} else vm_stackoverflow();
        for (i = 0; i < len; i++) {
            *cfp->sp++ = ptr[i];
        }
        calling->argc += i - 1;
    }
}
static inline void
vm_caller_setup_arg_kw(rb_control_frame_t *cfp, struct rb_calling_info *calling, const struct rb_call_info *ci)
{
    struct rb_call_info_with_kwarg *ci_kw = (struct rb_call_info_with_kwarg *)ci;
    const VALUE *const passed_keywords = ci_kw->kw_arg->keywords;
    const int kw_len = ci_kw->kw_arg->keyword_len;
    const VALUE h = rb_hash_new_with_size(kw_len);
    VALUE *sp = cfp->sp;
    int i;
    for (i=0; i<kw_len; i++) {
 rb_hash_aset(h, passed_keywords[i], (sp - kw_len)[i]);
    }
    (sp-kw_len)[0] = h;
    cfp->sp -= kw_len - 1;
    calling->argc -= kw_len - 1;
    calling->kw_splat = 1;
}
static VALUE
vm_to_proc(VALUE proc)
{
    if ((__builtin_expect(!!(!rb_obj_is_proc(proc)), 0))) {
 VALUE b;
 const rb_callable_method_entry_t *me =
     rb_callable_method_entry_with_refinements(rb_class_of((VALUE)(proc)), idTo_proc, ((void *)0));
 if (me) {
            b = rb_vm_call0(rb_current_execution_context(), proc, idTo_proc, 0, ((void *)0), me, 0);
 }
 else {
     b = rb_check_convert_type_with_id(proc, RUBY_T_DATA, "Proc", idTo_proc);
 }
 if (!((VALUE)(b) != ((VALUE)RUBY_Qnil)) || !rb_obj_is_proc(b)) {
     rb_raise(rb_eTypeError,
       "wrong argument type %s (expected Proc)",
       rb_obj_classname(proc));
 }
 return b;
    }
    else {
 return proc;
    }
}
static VALUE
refine_sym_proc_call(VALUE yielded_arg, VALUE callback_arg, int argc, const VALUE *argv, VALUE blockarg)
{
    VALUE obj;
    ID mid;
    const rb_callable_method_entry_t *me;
    rb_execution_context_t *ec;
    const VALUE symbol = (rb_array_const_ptr_transient(callback_arg)[0]);
    const VALUE refinements = (rb_array_const_ptr_transient(callback_arg)[1]);
    int kw_splat = 3;
    VALUE v;
    VALUE ret;
    VALUE klass;
    if (argc-- < 1) {
 rb_raise(rb_eArgError, "no receiver given");
    }
    obj = *argv++;
    mid = (rb_sym2id(symbol));
    for (klass = rb_class_of((VALUE)(obj)); klass; klass = RCLASS_SUPER(klass)) {
        me = rb_callable_method_entry(klass, mid);
        if (me) {
            me = rb_resolve_refined_method_callable(refinements, me);
            if (me) break;
        }
    }
    ec = rb_current_execution_context();
    if (!!((VALUE)(blockarg) != ((VALUE)RUBY_Qnil))) {
 vm_passed_block_handler_set(ec, blockarg);
    }
    v = rb_adjust_argv_kw_splat(&argc, &argv, &kw_splat);
    if (!me) {
        ret = method_missing(obj, mid, argc, argv, MISSING_NOENTRY, kw_splat);
    }
    else {
        ret = rb_vm_call0(ec, obj, mid, argc, argv, me, kw_splat);
    }
    rb_free_tmp_buffer(&v);
    return ret;
}
static VALUE
vm_caller_setup_arg_block(const rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
                          const struct rb_call_info *ci, const rb_iseq_t *blockiseq, const int is_super)
{
    if (ci->flag & (0x01 << VM_CALL_ARGS_BLOCKARG_bit)) {
 VALUE block_code = *(--reg_cfp->sp);
 if (!((VALUE)(block_code) != ((VALUE)RUBY_Qnil))) {
            return 0;
        }
 else if (block_code == rb_block_param_proxy) {
            ((void)0);
            VALUE handler = VM_CF_BLOCK_HANDLER(reg_cfp);
            reg_cfp->block_code = (const void *) handler;
            return handler;
        }
 else if (((((VALUE)(block_code)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(block_code) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(block_code) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(block_code))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) && __extension__({ static struct rb_call_data rb_mbdp; (rb_cSymbol == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cSymbol, idTo_proc); })) {
     const rb_cref_t *cref = vm_env_cref(reg_cfp->ep);
     if (cref && !!((VALUE)(cref->refinements) != ((VALUE)RUBY_Qnil))) {
  VALUE ref = cref->refinements;
  VALUE func = rb_hash_lookup(ref, block_code);
  if (!((VALUE)(func) != ((VALUE)RUBY_Qnil))) {
                    VALUE callback_arg = rb_ary_tmp_new(2);
                    rb_ary_push(callback_arg, block_code);
                    rb_ary_push(callback_arg, ref);
                    (void)(((struct RBasic*)(callback_arg))->flags |= RUBY_FL_FREEZE);
                    func = rb_func_proc_new(refine_sym_proc_call, callback_arg);
      rb_hash_aset(ref, block_code, func);
  }
  block_code = func;
     }
            return block_code;
        }
        else {
            return vm_to_proc(block_code);
        }
    }
    else if (blockiseq != ((void *)0)) {
 struct rb_captured_block *captured = VM_CFP_TO_CAPTURED_BLOCK(reg_cfp);
 captured->code.iseq = blockiseq;
        return VM_BH_FROM_ISEQ_BLOCK(captured);
    }
    else {
 if (is_super) {
            return ((VM_EP_LEP(((((reg_cfp)->ep)))))[(-1)]);
        }
        else {
            return 0;
        }
    }
}
static inline VALUE vm_call_iseq_setup_2(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd, int opt_pc, int param_size, int local_size);
__attribute__ ((__always_inline__)) static VALUE vm_call_iseq_setup_normal(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, const rb_callable_method_entry_t *me, int opt_pc, int param_size, int local_size);
static inline VALUE vm_call_iseq_setup_tailcall(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd, int opt_pc);
static VALUE vm_call_super_method(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
static VALUE vm_call_method_nome(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
static VALUE vm_call_method_each_type(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
static inline VALUE vm_call_method(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd);
static vm_call_handler vm_call_iseq_setup_func(const struct rb_call_info *ci, const int param_size, const int local_size);
static VALUE
vm_call_iseq_setup_tailcall_0start(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_tailcall(ec, cfp, calling, cd, 0);
}
static VALUE
vm_call_iseq_setup_normal_0start(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    struct rb_call_cache *cc = &cd->cc;
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    int param = iseq->body->param.size;
    int local = iseq->body->local_table_size;
    return vm_call_iseq_setup_normal(ec, cfp, calling, cc->me, 0, param, local);
}
static _Bool
rb_simple_iseq_p(const rb_iseq_t *iseq)
{
    return iseq->body->param.flags.has_opt == 0 &&
           iseq->body->param.flags.has_rest == 0 &&
    iseq->body->param.flags.has_post == 0 &&
    iseq->body->param.flags.has_kw == 0 &&
    iseq->body->param.flags.has_kwrest == 0 &&
           iseq->body->param.flags.accepts_no_kwarg == 0 &&
    iseq->body->param.flags.has_block == 0;
}
static _Bool
rb_iseq_only_optparam_p(const rb_iseq_t *iseq)
{
    return iseq->body->param.flags.has_opt == 1 &&
           iseq->body->param.flags.has_rest == 0 &&
           iseq->body->param.flags.has_post == 0 &&
           iseq->body->param.flags.has_kw == 0 &&
           iseq->body->param.flags.has_kwrest == 0 &&
           iseq->body->param.flags.accepts_no_kwarg == 0 &&
           iseq->body->param.flags.has_block == 0;
}
static _Bool
rb_iseq_only_kwparam_p(const rb_iseq_t *iseq)
{
    return iseq->body->param.flags.has_opt == 0 &&
           iseq->body->param.flags.has_rest == 0 &&
           iseq->body->param.flags.has_post == 0 &&
           iseq->body->param.flags.has_kw == 1 &&
           iseq->body->param.flags.has_kwrest == 0 &&
           iseq->body->param.flags.has_block == 0;
}
static inline void
CALLER_SETUP_ARG(struct rb_control_frame_struct *__restrict cfp,
                 struct rb_calling_info *__restrict calling,
                 const struct rb_call_info *__restrict ci)
{
    if ((__builtin_expect(!!(((ci)->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit))), 0))) {
        VALUE final_hash;
        vm_caller_setup_arg_splat(cfp, calling);
        if (!((ci)->flag & ((0x01 << VM_CALL_KWARG_bit) | (0x01 << VM_CALL_KW_SPLAT_bit))) &&
                calling->argc > 0 &&
                ( ((RUBY_T_HASH) == RUBY_T_FIXNUM) ? (((int)(long)((final_hash = *(cfp->sp - 1))))&RUBY_FIXNUM_FLAG) : ((RUBY_T_HASH) == RUBY_T_TRUE) ? (((final_hash = *(cfp->sp - 1))) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_HASH) == RUBY_T_FALSE) ? (((final_hash = *(cfp->sp - 1))) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_HASH) == RUBY_T_NIL) ? (((final_hash = *(cfp->sp - 1))) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_HASH) == RUBY_T_UNDEF) ? (((final_hash = *(cfp->sp - 1))) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_HASH) == RUBY_T_SYMBOL) ? ((((VALUE)((final_hash = *(cfp->sp - 1)))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((final_hash = *(cfp->sp - 1))) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((final_hash = *(cfp->sp - 1))) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((final_hash = *(cfp->sp - 1))))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_HASH) == RUBY_T_FLOAT) ? ( ((((int)(long)((final_hash = *(cfp->sp - 1))))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((final_hash = *(cfp->sp - 1))) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((final_hash = *(cfp->sp - 1))) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((final_hash = *(cfp->sp - 1))))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((final_hash = *(cfp->sp - 1))) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((final_hash = *(cfp->sp - 1))) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((final_hash = *(cfp->sp - 1))))->flags & RUBY_T_MASK) == (RUBY_T_HASH))) &&
                (((struct RHash *)final_hash)->basic.flags & RHASH_PASS_AS_KEYWORDS)) {
            *(cfp->sp - 1) = rb_hash_dup(final_hash);
            calling->kw_splat = 1;
        }
    }
    if ((__builtin_expect(!!(((ci)->flag & (0x01 << VM_CALL_KWARG_bit))), 0))) {
        vm_caller_setup_arg_kw(cfp, calling, ci);
    }
}
static inline void
CALLER_REMOVE_EMPTY_KW_SPLAT(struct rb_control_frame_struct *__restrict cfp,
                             struct rb_calling_info *__restrict calling,
                             const struct rb_call_info *__restrict ci)
{
    if ((__builtin_expect(!!(calling->kw_splat), 0))) {
        if ((((!(((struct RBasic*)((cfp->sp[-1])))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(cfp->sp[-1]))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(cfp->sp[-1]))->as.st)->num_entries)) == 0)) {
            cfp->sp--;
            calling->argc--;
            calling->kw_splat = 0;
        }
    }
}
static VALUE
vm_call_iseq_setup_normal_opt_start(rb_execution_context_t *ec, rb_control_frame_t *cfp,
                                    struct rb_calling_info *calling,
                                    struct rb_call_data *cd)
{
    const struct rb_call_cache *cc = &cd->cc;
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    const int lead_num = iseq->body->param.lead_num;
    const int opt = calling->argc - lead_num;
    const int opt_num = iseq->body->param.opt_num;
    const int opt_pc = (int)iseq->body->param.opt_table[opt];
    const int param = iseq->body->param.size;
    const int local = iseq->body->local_table_size;
    const int delta = opt_num - opt;
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cc->me, opt_pc, param - delta, local);
}
static VALUE
vm_call_iseq_setup_tailcall_opt_start(rb_execution_context_t *ec, rb_control_frame_t *cfp,
                                      struct rb_calling_info *calling,
                                      struct rb_call_data *cd)
{
    const struct rb_call_cache *cc = &cd->cc;
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    const int lead_num = iseq->body->param.lead_num;
    const int opt = calling->argc - lead_num;
    const int opt_pc = (int)iseq->body->param.opt_table[opt];
    ((void)0);
    return vm_call_iseq_setup_tailcall(ec, cfp, calling, cd, opt_pc);
}
static void
args_setup_kw_parameters(rb_execution_context_t *const ec, const rb_iseq_t *const iseq,
                         VALUE *const passed_values, const int passed_keyword_len, const VALUE *const passed_keywords,
                         VALUE *const locals);
static VALUE
vm_call_iseq_setup_kwparm_kwarg(rb_execution_context_t *ec, rb_control_frame_t *cfp,
                                struct rb_calling_info *calling,
                                struct rb_call_data *cd)
{
    const struct rb_kwarg_call_data *kcd = (void *)cd;
    const struct rb_call_info_with_kwarg *ci_kw = &kcd->ci_kw;
    const struct rb_call_cache *cc = &kcd->cc;
    ((void)0);
    ((void)0);
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    const struct rb_iseq_param_keyword *kw_param = iseq->body->param.keyword;
    const struct rb_call_info_kw_arg *kw_arg = ci_kw->kw_arg;
    const int ci_kw_len = kw_arg->keyword_len;
    const VALUE * const ci_keywords = kw_arg->keywords;
    VALUE *argv = cfp->sp - calling->argc;
    VALUE *const klocals = argv + kw_param->bits_start - kw_param->num;
    const int lead_num = iseq->body->param.lead_num;
    VALUE * const ci_kws = (VALUE*)__builtin_alloca_with_align((sizeof(VALUE)*(ci_kw_len)), _Alignof(VALUE) * 8);
    ruby_nonempty_memcpy((ci_kws), (argv + lead_num), sizeof(VALUE)*(size_t)(ci_kw_len));
    args_setup_kw_parameters(ec, iseq, ci_kws, ci_kw_len, ci_keywords, klocals);
    int param = iseq->body->param.size;
    int local = iseq->body->local_table_size;
    return vm_call_iseq_setup_normal(ec, cfp, calling, cc->me, 0, param, local);
}
static VALUE
vm_call_iseq_setup_kwparm_nokwarg(rb_execution_context_t *ec, rb_control_frame_t *cfp,
                                  struct rb_calling_info *calling,
                                  struct rb_call_data *cd)
{
    const struct rb_call_info *__attribute__ ((__unused__)) ci = &cd->ci;
    const struct rb_call_cache *cc = &cd->cc;
    ((void)0);
    ((void)0);
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    const struct rb_iseq_param_keyword *kw_param = iseq->body->param.keyword;
    VALUE * const argv = cfp->sp - calling->argc;
    VALUE * const klocals = argv + kw_param->bits_start - kw_param->num;
    int i;
    for (i=0; i<kw_param->num; i++) {
        klocals[i] = kw_param->default_values[i];
    }
    klocals[i] = (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG);
    int param = iseq->body->param.size;
    int local = iseq->body->local_table_size;
    return vm_call_iseq_setup_normal(ec, cfp, calling, cc->me, 0, param, local);
}
static inline int
vm_callee_setup_arg(rb_execution_context_t *ec, struct rb_calling_info *calling, struct rb_call_data *cd,
      const rb_iseq_t *iseq, VALUE *argv, int param_size, int local_size)
{
    const struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    if ((__builtin_expect(!!(!(ci->flag & (0x01 << VM_CALL_KW_SPLAT_bit))), 1))) {
        if ((__builtin_expect(!!(rb_simple_iseq_p(iseq)), 1))) {
            rb_control_frame_t *cfp = ec->cfp;
            CALLER_SETUP_ARG(cfp, calling, ci);
            CALLER_REMOVE_EMPTY_KW_SPLAT(cfp, calling, ci);
            if (calling->argc != iseq->body->param.lead_num) {
                argument_arity_error(ec, iseq, calling->argc, iseq->body->param.lead_num, iseq->body->param.lead_num);
            }
            CC_SET_FASTPATH(cc, vm_call_iseq_setup_func(ci, param_size, local_size), vm_call_iseq_optimizable_p(&cd->ci, &cd->cc));
            return 0;
        }
        else if (rb_iseq_only_optparam_p(iseq)) {
            rb_control_frame_t *cfp = ec->cfp;
            CALLER_SETUP_ARG(cfp, calling, ci);
            CALLER_REMOVE_EMPTY_KW_SPLAT(cfp, calling, ci);
            const int lead_num = iseq->body->param.lead_num;
            const int opt_num = iseq->body->param.opt_num;
            const int argc = calling->argc;
            const int opt = argc - lead_num;
            if (opt < 0 || opt > opt_num) {
                argument_arity_error(ec, iseq, argc, lead_num, lead_num + opt_num);
            }
            if ((__builtin_expect(!!(!(ci->flag & (0x01 << VM_CALL_TAILCALL_bit))), 1))) {
                CC_SET_FASTPATH(cc, vm_call_iseq_setup_normal_opt_start,
                                !((ci)->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)) && !((ci)->flag & (0x01 << VM_CALL_KWARG_bit)) &&
                                !((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) == METHOD_VISI_PROTECTED));
            }
            else {
                CC_SET_FASTPATH(cc, vm_call_iseq_setup_tailcall_opt_start,
                                !((ci)->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)) && !((ci)->flag & (0x01 << VM_CALL_KWARG_bit)) &&
                                !((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) == METHOD_VISI_PROTECTED));
            }
            ((void)0);
            for (int i=argc; i<lead_num + opt_num; i++) {
                argv[i] = ((VALUE)RUBY_Qnil);
            }
            return (int)iseq->body->param.opt_table[opt];
        }
        else if (rb_iseq_only_kwparam_p(iseq) && !((ci)->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit))) {
            const int lead_num = iseq->body->param.lead_num;
            const int argc = calling->argc;
            const struct rb_iseq_param_keyword *kw_param = iseq->body->param.keyword;
            if (ci->flag & (0x01 << VM_CALL_KWARG_bit)) {
                const struct rb_call_info_kw_arg *kw_arg = ((struct rb_call_info_with_kwarg *)ci)->kw_arg;
                if (argc - kw_arg->keyword_len == lead_num) {
                    const int ci_kw_len = kw_arg->keyword_len;
                    const VALUE * const ci_keywords = kw_arg->keywords;
                    VALUE * const ci_kws = (VALUE*)__builtin_alloca_with_align((sizeof(VALUE)*(ci_kw_len)), _Alignof(VALUE) * 8);
                    ruby_nonempty_memcpy((ci_kws), (argv + lead_num), sizeof(VALUE)*(size_t)(ci_kw_len));
                    VALUE *const klocals = argv + kw_param->bits_start - kw_param->num;
                    args_setup_kw_parameters(ec, iseq, ci_kws, ci_kw_len, ci_keywords, klocals);
                    CC_SET_FASTPATH(cc, vm_call_iseq_setup_kwparm_kwarg,
                                    !((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) == METHOD_VISI_PROTECTED));
                    return 0;
                }
            }
            else if (argc == lead_num) {
                VALUE *const klocals = argv + kw_param->bits_start - kw_param->num;
                args_setup_kw_parameters(ec, iseq, ((void *)0), 0, ((void *)0), klocals);
                if (klocals[kw_param->num] == (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG)) {
                    CC_SET_FASTPATH(cc, vm_call_iseq_setup_kwparm_nokwarg,
                                    !((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)) == METHOD_VISI_PROTECTED));
                }
                return 0;
            }
        }
    }
    return setup_parameters_complex(ec, iseq, calling, ci, argv, arg_setup_method);
}
static VALUE
vm_call_iseq_setup(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    const struct rb_call_cache *cc = &cd->cc;
    const rb_iseq_t *iseq = def_iseq_ptr(cc->me->def);
    const int param_size = iseq->body->param.size;
    const int local_size = iseq->body->local_table_size;
    const int opt_pc = vm_callee_setup_arg(ec, calling, cd, def_iseq_ptr(cc->me->def), cfp->sp - calling->argc, param_size, local_size);
    return vm_call_iseq_setup_2(ec, cfp, calling, cd, opt_pc, param_size, local_size);
}
static inline VALUE
vm_call_iseq_setup_2(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd,
       int opt_pc, int param_size, int local_size)
{
    const struct rb_call_info *ci = &cd->ci;
    const struct rb_call_cache *cc = &cd->cc;
    if ((__builtin_expect(!!(!(ci->flag & (0x01 << VM_CALL_TAILCALL_bit))), 1))) {
        return vm_call_iseq_setup_normal(ec, cfp, calling, cc->me, opt_pc, param_size, local_size);
    }
    else {
        return vm_call_iseq_setup_tailcall(ec, cfp, calling, cd, opt_pc);
    }
}
static inline VALUE
vm_call_iseq_setup_normal(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, const rb_callable_method_entry_t *me,
                          int opt_pc, int param_size, int local_size)
{
    const rb_iseq_t *iseq = def_iseq_ptr(me->def);
    VALUE *argv = cfp->sp - calling->argc;
    VALUE *sp = argv + param_size;
    cfp->sp = argv - 1 ;
    vm_push_frame(ec, iseq, VM_FRAME_MAGIC_METHOD | VM_ENV_FLAG_LOCAL, calling->recv,
                  calling->block_handler, (VALUE)me,
                  iseq->body->iseq_encoded + opt_pc, sp,
                  local_size - param_size,
                  iseq->body->stack_max);
    return ((VALUE)RUBY_Qundef);
}
static inline VALUE
vm_call_iseq_setup_tailcall(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd,
       int opt_pc)
{
    const struct rb_call_cache *cc = &cd->cc;
    unsigned int i;
    VALUE *argv = cfp->sp - calling->argc;
    const rb_callable_method_entry_t *me = cc->me;
    const rb_iseq_t *iseq = def_iseq_ptr(me->def);
    VALUE *src_argv = argv;
    VALUE *sp_orig, *sp;
    VALUE finish_flag = VM_FRAME_FINISHED_P(cfp) ? VM_FRAME_FLAG_FINISH : 0;
    if (VM_BH_FROM_CFP_P(calling->block_handler, cfp)) {
 struct rb_captured_block *dst_captured = VM_CFP_TO_CAPTURED_BLOCK(((cfp)+1));
 const struct rb_captured_block *src_captured = VM_BH_TO_CAPT_BLOCK(calling->block_handler);
 dst_captured->code.val = src_captured->code.val;
 if (VM_BH_ISEQ_BLOCK_P(calling->block_handler)) {
     calling->block_handler = VM_BH_FROM_ISEQ_BLOCK(dst_captured);
 }
 else {
     calling->block_handler = VM_BH_FROM_IFUNC_BLOCK(dst_captured);
 }
    }
    vm_pop_frame(ec, cfp, cfp->ep);
    cfp = ec->cfp;
    sp_orig = sp = cfp->sp;
    sp[0] = calling->recv;
    sp++;
    for (i=0; i < iseq->body->param.size; i++) {
 *sp++ = src_argv[i];
    }
    vm_push_frame(ec, iseq, VM_FRAME_MAGIC_METHOD | VM_ENV_FLAG_LOCAL | finish_flag,
    calling->recv, calling->block_handler, (VALUE)me,
    iseq->body->iseq_encoded + opt_pc, sp,
    iseq->body->local_table_size - iseq->body->param.size,
    iseq->body->stack_max);
    cfp->sp = sp_orig;
    return ((VALUE)RUBY_Qundef);
}
static VALUE
call_cfunc_m2(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    return (*func)(recv, rb_ary_new_from_values(argc, argv));
}
static VALUE
call_cfunc_m1(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    return (*func)(argc, argv, recv);
}
static VALUE
call_cfunc_0(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE) = (VALUE(*)(VALUE))func;
    return (*f)(recv);
}
static VALUE
call_cfunc_1(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE) = (VALUE(*)(VALUE, VALUE))func;
    return (*f)(recv, argv[0]);
}
static VALUE
call_cfunc_2(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1]);
}
static VALUE
call_cfunc_3(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2]);
}
static VALUE
call_cfunc_4(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3]);
}
static VALUE
call_cfunc_5(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4]);
}
static VALUE
call_cfunc_6(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5]);
}
static VALUE
call_cfunc_7(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]);
}
static VALUE
call_cfunc_8(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7]);
}
static VALUE
call_cfunc_9(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8]);
}
static VALUE
call_cfunc_10(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9]);
}
static VALUE
call_cfunc_11(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10]);
}
static VALUE
call_cfunc_12(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11]);
}
static VALUE
call_cfunc_13(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12]);
}
static VALUE
call_cfunc_14(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12], argv[13]);
}
static VALUE
call_cfunc_15(VALUE recv, int argc, const VALUE *argv, VALUE (*func)())
{
    VALUE(*f)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE) = (VALUE(*)(VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE, VALUE))func;
    return (*f)(recv, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12], argv[13], argv[14]);
}
static inline int
vm_cfp_consistent_p(rb_execution_context_t *ec, const rb_control_frame_t *reg_cfp)
{
    const int ov_flags = RAISED_STACKOVERFLOW;
    if ((__builtin_expect(!!(reg_cfp == ec->cfp + 1), 1))) return 1;
    if ((((ec)->raised_flag & (ov_flags)) != 0)) {
 ((ec)->raised_flag &= ~(ov_flags));
 return 1;
    }
    return 0;
}
static inline
const rb_method_cfunc_t *
vm_method_cfunc_entry(const rb_callable_method_entry_t *me)
{
    return &(me->def)->body.cfunc;
}
static VALUE
vm_call_cfunc_with_frame(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd, int empty_kw_splat)
{
    const struct rb_call_info *ci = &cd->ci;
    const struct rb_call_cache *cc = &cd->cc;
    VALUE val;
    const rb_callable_method_entry_t *me = cc->me;
    const rb_method_cfunc_t *cfunc = vm_method_cfunc_entry(me);
    int len = cfunc->argc;
    VALUE recv = calling->recv;
    VALUE block_handler = calling->block_handler;
    VALUE frame_type = VM_FRAME_MAGIC_CFUNC | VM_FRAME_FLAG_CFRAME | VM_ENV_FLAG_LOCAL;
    int argc = calling->argc;
    int orig_argc = argc;
    if ((__builtin_expect(!!(calling->kw_splat), 0))) {
        frame_type |= VM_FRAME_FLAG_CFRAME_KW;
    }
    else if ((__builtin_expect(!!(empty_kw_splat), 0))) {
        frame_type |= VM_FRAME_FLAG_CFRAME_EMPTY_KW;
    }
    do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, me->owner, me->def->original_id, &args)) { do {} while (0); } } } while (0);
    do { const rb_event_flag_t flag_arg_ = (0x0020); rb_hook_list_t *hooks_arg_ = (rb_vm_global_hooks(ec)); if ((__builtin_expect(!!((hooks_arg_)->events & (flag_arg_)), 0))) { rb_exec_event_hook_orig(ec, hooks_arg_, flag_arg_, recv, me->def->original_id, ci->mid, me->owner, ((VALUE)RUBY_Qundef), 0); } } while (0);
    vm_push_frame(ec, ((void *)0), frame_type, recv,
    block_handler, (VALUE)me,
    0, ec->cfp->sp, 0, 0);
    if (len >= 0) rb_check_arity(argc, len, len);
    reg_cfp->sp -= orig_argc + 1;
    val = (*cfunc->invoker)(recv, argc, reg_cfp->sp + 1, cfunc->func);
    ((__builtin_expect(!!(vm_cfp_consistent_p(ec, reg_cfp)), 1)) ? (void)0 : rb_bug("vm_call_cfunc" ": cfp consistency error (%p, %p)", (void *)reg_cfp, (void *)(ec->cfp+1)));
    rb_vm_pop_frame(ec);
    do { const rb_event_flag_t flag_arg_ = (0x0040); rb_hook_list_t *hooks_arg_ = (rb_vm_global_hooks(ec)); if ((__builtin_expect(!!((hooks_arg_)->events & (flag_arg_)), 0))) { rb_exec_event_hook_orig(ec, hooks_arg_, flag_arg_, recv, me->def->original_id, ci->mid, me->owner, val, 0); } } while (0);
    do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, me->owner, me->def->original_id, &args)) { do {} while (0); } } } while (0);
    return val;
}
static VALUE
vm_call_cfunc(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    const struct rb_call_info *ci = &cd->ci;
    int empty_kw_splat;
    ((void)0);
    CALLER_SETUP_ARG(reg_cfp, calling, ci);
    empty_kw_splat = calling->kw_splat;
    CALLER_REMOVE_EMPTY_KW_SPLAT(reg_cfp, calling, ci);
    if (empty_kw_splat && calling->kw_splat) {
        empty_kw_splat = 0;
    }
    return vm_call_cfunc_with_frame(ec, reg_cfp, calling, cd, empty_kw_splat);
}
static VALUE
vm_call_ivar(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    struct rb_call_cache *cc = &cd->cc;
    ((void)0);
    cfp->sp -= 1;
    return vm_getivar(calling->recv, cc->me->def->body.attr.id, ((void *)0), cc, 1);
}
static VALUE
vm_call_attrset(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    struct rb_call_cache *cc = &cd->cc;
    ((void)0);
    VALUE val = *(cfp->sp - 1);
    cfp->sp -= 2;
    return vm_setivar(calling->recv, cc->me->def->body.attr.id, val, ((void *)0), cc, 1);
}
static inline VALUE
vm_call_bmethod_body(rb_execution_context_t *ec, struct rb_calling_info *calling, struct rb_call_data *cd, const VALUE *argv)
{
    rb_proc_t *proc;
    VALUE val;
    const struct rb_call_cache *cc = &cd->cc;
    (((proc)) = (rb_proc_t*)(((struct RData*)(((cc->me->def->body.bmethod.proc))))->data));
    val = rb_vm_invoke_bmethod(ec, proc, calling->recv, calling->argc, argv, calling->kw_splat, calling->block_handler, cc->me);
    return val;
}
static VALUE
vm_call_bmethod(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    VALUE *argv;
    int argc;
    const struct rb_call_info *ci = &cd->ci;
    CALLER_SETUP_ARG(cfp, calling, ci);
    argc = calling->argc;
    argv = (VALUE*)__builtin_alloca_with_align((sizeof(VALUE)*(argc)), _Alignof(VALUE) * 8);
    ruby_nonempty_memcpy((argv), (cfp->sp - argc), sizeof(VALUE)*(size_t)(argc));
    cfp->sp += - argc - 1;
    return vm_call_bmethod_body(ec, calling, cd, argv);
}
static enum method_missing_reason
ci_missing_reason(const struct rb_call_info *ci)
{
    enum method_missing_reason stat = MISSING_NOENTRY;
    if (ci->flag & (0x01 << VM_CALL_VCALL_bit)) stat |= MISSING_VCALL;
    if (ci->flag & (0x01 << VM_CALL_FCALL_bit)) stat |= MISSING_FCALL;
    if (ci->flag & (0x01 << VM_CALL_SUPER_bit)) stat |= MISSING_SUPER;
    return stat;
}
static VALUE
vm_call_opt_send(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *orig_cd)
{
    ((void)0);
    int i;
    VALUE sym;
    const struct rb_call_info *orig_ci = &orig_cd->ci;
    const struct rb_call_cache *orig_cc = &orig_cd->cc;
    struct rb_call_info *ci;
    struct rb_call_cache *cc;
    struct rb_kwarg_call_data cd;
    CALLER_SETUP_ARG(reg_cfp, calling, orig_ci);
    i = calling->argc - 1;
    if (calling->argc == 0) {
 rb_raise(rb_eArgError, "no method name given");
    }
    if (orig_ci->flag & (0x01 << VM_CALL_KWARG_bit)) {
        const struct rb_kwarg_call_data *orig_kcd = (void *)orig_cd;
        cd = *orig_kcd;
    }
    else {
        cd.ci_kw.ci = *orig_ci;
        cd.cc = *orig_cc;
    }
    ci = &cd.ci_kw.ci;
    cc = &cd.cc;
    sym = (*(((((reg_cfp)->sp)))-(i)-1));
    if (!(ci->mid = rb_check_id(&sym))) {
 if (__extension__({ static struct rb_call_data rb_mbdp; (rb_class_of((VALUE)(calling->recv)) == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_class_of((VALUE)(calling->recv)), idMethodMissing); })) {
     VALUE exc =
  rb_make_no_method_exception(rb_eNoMethodError, 0, calling->recv,
         rb_long2int_inline(calling->argc), &(*(((((reg_cfp)->sp)))-(i)-1)),
         ci->flag & ((0x01 << VM_CALL_FCALL_bit)|(0x01 << VM_CALL_VCALL_bit)));
     rb_exc_raise(exc);
 }
 (*(((((reg_cfp)->sp)))-(i)-1)) = rb_str_intern(sym);
 ci->mid = idMethodMissing;
 ec->method_missing_reason = cc->aux.method_missing_reason = ci_missing_reason(ci);
    }
    else {
 if (i > 0) {
     memmove((&(*(((((reg_cfp)->sp)))-(i)-1))), (&(*(((((reg_cfp)->sp)))-(i-1)-1))), sizeof(VALUE)*(size_t)(i));
 }
 calling->argc -= 1;
 (((reg_cfp)->sp) -= (((1))));
    }
    CC_SET_ME(cc, rb_callable_method_entry_with_refinements(rb_class_of((VALUE)(calling->recv)), ci->mid, ((void *)0)));
    ci->flag = (0x01 << VM_CALL_FCALL_bit) | (0x01 << VM_CALL_OPT_SEND_bit) | (calling->kw_splat ? (0x01 << VM_CALL_KW_SPLAT_bit) : 0);
    return vm_call_method(ec, reg_cfp, calling, (CALL_DATA)&cd);
}
static inline VALUE vm_invoke_block(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, const struct rb_call_info *ci, VALUE block_handler);
__attribute__ ((__noinline__)) static VALUE vm_invoke_block_opt_call(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, const struct rb_call_info *ci, VALUE block_handler);
static VALUE
vm_invoke_block_opt_call(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
    struct rb_calling_info *calling, const struct rb_call_info *ci, VALUE block_handler)
{
    int argc = calling->argc;
    if (argc > 0) memmove((&(*(((((reg_cfp)->sp)))-(argc)-1))), (&(*(((((reg_cfp)->sp)))-(argc-1)-1))), sizeof(VALUE)*(size_t)(argc));
    (((reg_cfp)->sp) -= (((1))));
    return vm_invoke_block(ec, reg_cfp, calling, ci, block_handler);
}
static VALUE
vm_call_opt_call(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    const struct rb_call_info *ci = &cd->ci;
    VALUE procval = calling->recv;
    return vm_invoke_block_opt_call(ec, reg_cfp, calling, ci, VM_BH_FROM_PROC(procval));
}
static VALUE
vm_call_opt_block_call(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    VALUE block_handler = VM_ENV_BLOCK_HANDLER(VM_CF_LEP(reg_cfp));
    const struct rb_call_info *ci = &cd->ci;
    if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_CALL)]&((1 << 12))) == 0), 1)))) {
 return vm_invoke_block_opt_call(ec, reg_cfp, calling, ci, block_handler);
    }
    else {
 calling->recv = rb_vm_bh_to_procval(ec, block_handler);
        vm_search_method(cd, calling->recv);
        return vm_call_general(ec, reg_cfp, calling, cd);
    }
}
static VALUE
vm_call_method_missing(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *orig_cd)
{
    ((void)0);
    const struct rb_call_info *orig_ci = &orig_cd->ci;
    const struct rb_call_cache *orig_cc = &orig_cd->cc;
    VALUE *argv = (((((reg_cfp)->sp)))-(calling->argc));
    struct rb_call_data cd = *orig_cd;
    unsigned int argc;
    CALLER_SETUP_ARG(reg_cfp, calling, orig_ci);
    argc = calling->argc+1;
    cd.ci.flag = (0x01 << VM_CALL_FCALL_bit) | (0x01 << VM_CALL_OPT_SEND_bit) | (calling->kw_splat ? (0x01 << VM_CALL_KW_SPLAT_bit) : 0);
    cd.ci.mid = idMethodMissing;
    cd.ci.orig_argc = argc;
    cd.cc.me =
 rb_callable_method_entry_without_refinements(rb_class_of((VALUE)(calling->recv)),
           idMethodMissing, ((void *)0));
    calling->argc = argc;
    if ((__builtin_expect(!!(!(!(1/!!(sizeof(*((reg_cfp)->sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(reg_cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)(((reg_cfp)->sp) + (1)) + 1) >= (reg_cfp))), 1))) {(void)0;} else vm_stackoverflow();
    ;
    if (argc > 1) {
 memmove((argv+1), (argv), sizeof(VALUE)*(size_t)(argc-1));
    }
    argv[0] = (rb_id2sym(orig_ci->mid));
    (((reg_cfp)->sp) += (((1))));
    ec->method_missing_reason = orig_cc->aux.method_missing_reason;
    return vm_call_method(ec, reg_cfp, calling, &cd);
}
static const rb_callable_method_entry_t *refined_method_callable_without_refinement(const rb_callable_method_entry_t *me);
static VALUE
vm_call_zsuper(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd, VALUE klass)
{
    ((void)0);
    const struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    klass = RCLASS_SUPER(klass);
    CC_SET_ME(cc, klass ? rb_callable_method_entry(klass, ci->mid) : ((void *)0));
    if (!cc->me) {
        return vm_call_method_nome(ec, cfp, calling, cd);
    }
    if (cc->me->def->type == VM_METHOD_TYPE_REFINED &&
 cc->me->def->body.refined.orig_me) {
        CC_SET_ME(cc, refined_method_callable_without_refinement(cc->me));
    }
    return vm_call_method_each_type(ec, cfp, calling, cd);
}
static inline VALUE
find_refinement(VALUE refinements, VALUE klass)
{
    if (!((VALUE)(refinements) != ((VALUE)RUBY_Qnil))) {
 return ((VALUE)RUBY_Qnil);
    }
    return rb_hash_lookup(refinements, klass);
}
__attribute__ ((__pure__)) static rb_control_frame_t * current_method_entry(const rb_execution_context_t *ec, rb_control_frame_t *cfp);
static rb_control_frame_t *
current_method_entry(const rb_execution_context_t *ec, rb_control_frame_t *cfp)
{
    rb_control_frame_t *top_cfp = cfp;
    if (cfp->iseq && cfp->iseq->body->type == ISEQ_TYPE_BLOCK) {
 const rb_iseq_t *local_iseq = cfp->iseq->body->local_iseq;
 do {
     cfp = ((cfp)+1);
     if (RUBY_VM_CONTROL_FRAME_STACK_OVERFLOW_P(ec, cfp)) {
  return top_cfp;
     }
 } while (cfp->iseq != local_iseq);
    }
    return cfp;
}static inline 
__attribute__ ((__visibility__("default")))  VALUE
rb_find_defined_class_by_owner(VALUE current_class, VALUE target_owner)
{
    VALUE klass = current_class;
    if (( ((RUBY_T_ICLASS) == RUBY_T_FIXNUM) ? (((int)(long)(klass))&RUBY_FIXNUM_FLAG) : ((RUBY_T_ICLASS) == RUBY_T_TRUE) ? ((klass) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_ICLASS) == RUBY_T_FALSE) ? ((klass) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_ICLASS) == RUBY_T_NIL) ? ((klass) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_ICLASS) == RUBY_T_UNDEF) ? ((klass) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_ICLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(klass)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_ICLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(klass))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_ICLASS))) && ((!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((klass)))->flags&((((VALUE)RUBY_FL_USER5)))):0)) klass = (((struct RBasic*)(klass))->klass);
    while (!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
 VALUE owner = ( ((RUBY_T_ICLASS) == RUBY_T_FIXNUM) ? (((int)(long)(klass))&RUBY_FIXNUM_FLAG) : ((RUBY_T_ICLASS) == RUBY_T_TRUE) ? ((klass) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_ICLASS) == RUBY_T_FALSE) ? ((klass) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_ICLASS) == RUBY_T_NIL) ? ((klass) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_ICLASS) == RUBY_T_UNDEF) ? ((klass) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_ICLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(klass)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_ICLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(klass))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_ICLASS))) ? (((struct RBasic*)(klass))->klass) : klass;
 if (owner == target_owner) {
     return klass;
 }
 klass = RCLASS_SUPER(klass);
    }
    return current_class;
}
static const rb_callable_method_entry_t *
aliased_callable_method_entry(const rb_callable_method_entry_t *me)
{
    const rb_method_entry_t *orig_me = me->def->body.alias.original_me;
    const rb_callable_method_entry_t *cme;
    if (orig_me->defined_class == 0) {
        VALUE defined_class = rb_find_defined_class_by_owner(me->defined_class, orig_me->owner);
 ((void)0);
 cme = rb_method_entry_complement_defined_class(orig_me, me->called_id, defined_class);
 if (me->def->alias_count + me->def->complemented_count == 0) {
     rb_obj_write((VALUE)(me), (VALUE *)(&me->def->body.alias.original_me), (VALUE)(cme), "./vm_insnhelper.c", 2828);
 }
 else {
     rb_method_definition_t *def =
  rb_method_definition_create(VM_METHOD_TYPE_ALIAS, me->def->original_id);
     rb_method_definition_set((rb_method_entry_t *)me, def, (void *)cme);
 }
    }
    else {
 cme = (const rb_callable_method_entry_t *)orig_me;
    }
    ((void)0);
    return cme;
}
static const rb_callable_method_entry_t *
refined_method_callable_without_refinement(const rb_callable_method_entry_t *me)
{
    const rb_method_entry_t *orig_me = me->def->body.refined.orig_me;
    const rb_callable_method_entry_t *cme;
    if (orig_me->defined_class == 0) {
 cme = ((void *)0);
 rb_notimplement();
    }
    else {
 cme = (const rb_callable_method_entry_t *)orig_me;
    }
    ((void)0);
    if ((!(cme) || !(cme)->def || (cme)->def->type == VM_METHOD_TYPE_UNDEF)) {
 cme = ((void *)0);
    }
    return cme;
}
static int
search_refined_method(rb_execution_context_t *ec, rb_control_frame_t *cfp, ID mid, struct rb_call_cache *cc)
{
    const rb_cref_t *cref = vm_get_cref(cfp->ep);
    for (; cref; cref = CREF_NEXT(cref)) {
        const VALUE refinement = find_refinement(CREF_REFINEMENTS(cref), cc->me->owner);
        if (!((VALUE)(refinement) != ((VALUE)RUBY_Qnil))) continue;
        const rb_callable_method_entry_t *const ref_me =
            rb_callable_method_entry(refinement, mid);
        if (ref_me) {
            if (cc->call == vm_call_super_method) {
                const rb_control_frame_t *top_cfp = current_method_entry(ec, cfp);
                const rb_callable_method_entry_t *top_me = rb_vm_frame_method_entry(top_cfp);
                if (top_me && rb_method_definition_eq(ref_me->def, top_me->def)) {
                    continue;
                }
            }
            if (cc->me->def->type != VM_METHOD_TYPE_REFINED ||
                cc->me->def != ref_me->def) {
                CC_SET_ME(cc, ref_me);
            }
            if (ref_me->def->type != VM_METHOD_TYPE_REFINED) {
                return 1;
            }
        }
        else {
            CC_SET_ME(cc, ((void *)0));
            return 0;
        }
    }
    if (cc->me->def->body.refined.orig_me) {
        CC_SET_ME(cc, refined_method_callable_without_refinement(cc->me));
    }
    else {
        VALUE klass = RCLASS_SUPER(cc->me->defined_class);
        CC_SET_ME(cc, klass ? rb_callable_method_entry(klass, mid) : ((void *)0));
    }
    return 1;
}
static VALUE
vm_call_method_each_type(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    const struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    switch (cc->me->def->type) {
      case VM_METHOD_TYPE_ISEQ:
        CC_SET_FASTPATH(cc, vm_call_iseq_setup, 1);
        return vm_call_iseq_setup(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_NOTIMPLEMENTED:
      case VM_METHOD_TYPE_CFUNC:
        CC_SET_FASTPATH(cc, vm_call_cfunc, 1);
        return vm_call_cfunc(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_ATTRSET:
        CALLER_SETUP_ARG(cfp, calling, ci);
        if (calling->argc == 1 && calling->kw_splat && (((!(((struct RBasic*)((cfp->sp[-1])))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(cfp->sp[-1]))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(cfp->sp[-1]))->as.st)->num_entries)) == 0)) {
            rb_warn_keyword_to_last_hash(ec, calling, ci, ((void *)0));
        }
        else {
            CALLER_REMOVE_EMPTY_KW_SPLAT(cfp, calling, ci);
        }
 rb_check_arity(calling->argc, 1, 1);
 cc->aux.index = 0;
        CC_SET_FASTPATH(cc, vm_call_attrset, !((ci->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)) || (ci->flag & (0x01 << VM_CALL_KWARG_bit))));
        return vm_call_attrset(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_IVAR:
        CALLER_SETUP_ARG(cfp, calling, ci);
        CALLER_REMOVE_EMPTY_KW_SPLAT(cfp, calling, ci);
 rb_check_arity(calling->argc, 0, 0);
 cc->aux.index = 0;
        CC_SET_FASTPATH(cc, vm_call_ivar, !(ci->flag & (0x01 << VM_CALL_ARGS_SPLAT_bit)));
        return vm_call_ivar(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_MISSING:
 cc->aux.method_missing_reason = 0;
        CC_SET_FASTPATH(cc, vm_call_method_missing, 1);
        return vm_call_method_missing(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_BMETHOD:
        CC_SET_FASTPATH(cc, vm_call_bmethod, 1);
        return vm_call_bmethod(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_ALIAS:
        CC_SET_ME(cc, aliased_callable_method_entry(cc->me));
 ((void)0);
        return vm_call_method_each_type(ec, cfp, calling, cd);
      case VM_METHOD_TYPE_OPTIMIZED:
 switch (cc->me->def->body.optimize_type) {
   case OPTIMIZED_METHOD_TYPE_SEND:
            CC_SET_FASTPATH(cc, vm_call_opt_send, 1);
            return vm_call_opt_send(ec, cfp, calling, cd);
   case OPTIMIZED_METHOD_TYPE_CALL:
            CC_SET_FASTPATH(cc, vm_call_opt_call, 1);
            return vm_call_opt_call(ec, cfp, calling, cd);
   case OPTIMIZED_METHOD_TYPE_BLOCK_CALL:
            CC_SET_FASTPATH(cc, vm_call_opt_block_call, 1);
            return vm_call_opt_block_call(ec, cfp, calling, cd);
   default:
     rb_bug("vm_call_method: unsupported optimized method type (%d)",
     cc->me->def->body.optimize_type);
 }
      case VM_METHOD_TYPE_UNDEF:
 break;
      case VM_METHOD_TYPE_ZSUPER:
        return vm_call_zsuper(ec, cfp, calling, cd, ((((struct RClass*)(cc->me->defined_class))->ptr)->origin_));
      case VM_METHOD_TYPE_REFINED:
        if (search_refined_method(ec, cfp, ci->mid, cc))
            return vm_call_method(ec, cfp, calling, cd);
        else
            return vm_call_method_nome(ec, cfp, calling, cd);
    }
    rb_bug("vm_call_method: unsupported method type (%d)", cc->me->def->type);
}
__attribute__ ((__noreturn__)) static void vm_raise_method_missing(rb_execution_context_t *ec, int argc, const VALUE *argv, VALUE obj, int call_status);
static VALUE
vm_call_method_nome(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    const struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    const int stat = ci_missing_reason(ci);
    if (ci->mid == idMethodMissing) {
 rb_control_frame_t *reg_cfp = cfp;
 VALUE *argv = (((((reg_cfp)->sp)))-(calling->argc));
 vm_raise_method_missing(ec, calling->argc, argv, calling->recv, stat);
    }
    else {
 cc->aux.method_missing_reason = stat;
        CC_SET_FASTPATH(cc, vm_call_method_missing, 1);
        return vm_call_method_missing(ec, cfp, calling, cd);
    }
}
static inline VALUE
vm_call_method(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    const struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    ((void)0);
    if (cc->me != ((void *)0)) {
 switch ((rb_method_visibility_t)(((cc->me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0))) {
   case METHOD_VISI_PUBLIC:
            return vm_call_method_each_type(ec, cfp, calling, cd);
   case METHOD_VISI_PRIVATE:
     if (!(ci->flag & (0x01 << VM_CALL_FCALL_bit))) {
  enum method_missing_reason stat = MISSING_PRIVATE;
  if (ci->flag & (0x01 << VM_CALL_VCALL_bit)) stat |= MISSING_VCALL;
  cc->aux.method_missing_reason = stat;
                CC_SET_FASTPATH(cc, vm_call_method_missing, 1);
                return vm_call_method_missing(ec, cfp, calling, cd);
     }
            return vm_call_method_each_type(ec, cfp, calling, cd);
   case METHOD_VISI_PROTECTED:
     if (!(ci->flag & (0x01 << VM_CALL_OPT_SEND_bit))) {
  if (!rb_obj_is_kind_of(cfp->self, cc->me->defined_class)) {
      cc->aux.method_missing_reason = MISSING_PROTECTED;
                    return vm_call_method_missing(ec, cfp, calling, cd);
  }
  else {
      ((void)0);
                    if (ci->flag & (0x01 << VM_CALL_KWARG_bit)) {
                        struct rb_kwarg_call_data *kcd = (void *)cd;
                        struct rb_kwarg_call_data cd_entry = *kcd;
                        return vm_call_method_each_type(ec, cfp, calling, (void *)&cd_entry);
                    }
                    else {
                        struct rb_call_data cd_entry = *cd;
                        return vm_call_method_each_type(ec, cfp, calling, &cd_entry);
                    }
  }
     }
            return vm_call_method_each_type(ec, cfp, calling, cd);
   default:
     rb_bug("unreachable");
 }
    }
    else {
        return vm_call_method_nome(ec, cfp, calling, cd);
    }
}
static VALUE
vm_call_general(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_method(ec, reg_cfp, calling, cd);
}
static VALUE
vm_call_super_method(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    const struct rb_call_cache *cc = &cd->cc;
    if (cc->call != vm_call_super_method) rb_bug("bug");
    return vm_call_method(ec, reg_cfp, calling, cd);
}
static inline VALUE
vm_search_normal_superclass(VALUE klass)
{
    if ((int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_ICLASS &&
 ((!(((VALUE)(((struct RBasic*)(klass))->klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(((struct RBasic*)(klass))->klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(((struct RBasic*)(klass))->klass))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((((struct RBasic*)(klass))->klass)))->flags&((RMODULE_IS_REFINEMENT))):0)) {
 klass = ((struct RBasic*)(klass))->klass;
    }
    klass = ((((struct RClass*)(klass))->ptr)->origin_);
    return RCLASS_SUPER(klass);
}
__attribute__ ((__noreturn__)) static void vm_super_outside(void);
static void
vm_super_outside(void)
{
    rb_raise(rb_eNoMethodError, "super called outside of method");
}
static void
vm_search_super_method(const rb_control_frame_t *reg_cfp, struct rb_call_data *cd, VALUE recv)
{
    VALUE current_defined_class, klass;
    const rb_callable_method_entry_t *me = rb_vm_frame_method_entry(reg_cfp);
    struct rb_call_info *ci = &cd->ci;
    struct rb_call_cache *cc = &cd->cc;
    if (!me) {
 vm_super_outside();
    }
    current_defined_class = me->defined_class;
    if (!!((VALUE)(((((struct RClass*)(current_defined_class))->ptr)->refined_class)) != ((VALUE)RUBY_Qnil))) {
 current_defined_class = ((((struct RClass*)(current_defined_class))->ptr)->refined_class);
    }
    if ((int)(((struct RBasic*)(current_defined_class))->flags & RUBY_T_MASK) != RUBY_T_MODULE &&
 !((!(((VALUE)(current_defined_class) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(current_defined_class) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(current_defined_class))->flags & RUBY_T_MASK) != RUBY_T_NODE)?(((struct RBasic*)((current_defined_class)))->flags&((RMODULE_INCLUDED_INTO_REFINEMENT))):0) &&
        !rb_obj_is_kind_of(recv, current_defined_class)) {
 VALUE m = ( ((RUBY_T_ICLASS) == RUBY_T_FIXNUM) ? (((int)(long)(current_defined_class))&RUBY_FIXNUM_FLAG) : ((RUBY_T_ICLASS) == RUBY_T_TRUE) ? ((current_defined_class) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_ICLASS) == RUBY_T_FALSE) ? ((current_defined_class) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_ICLASS) == RUBY_T_NIL) ? ((current_defined_class) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_ICLASS) == RUBY_T_UNDEF) ? ((current_defined_class) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_ICLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(current_defined_class)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(current_defined_class) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(current_defined_class) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(current_defined_class))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_ICLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(current_defined_class))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(current_defined_class) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(current_defined_class) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(current_defined_class))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(current_defined_class) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(current_defined_class) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(current_defined_class))->flags & RUBY_T_MASK) == (RUBY_T_ICLASS))) ?
            ((((struct RClass*)(current_defined_class))->ptr)->includer) : current_defined_class;
        if (m) {
            rb_raise(rb_eTypeError,
                     "self has wrong type to call super in this context: "
                     "%""l""i" "\v"" (expected %""l""i" "\v"")",
                     rb_obj_class(recv), m);
        }
    }
    if (me->def->type == VM_METHOD_TYPE_BMETHOD && (ci->flag & (0x01 << VM_CALL_ZSUPER_bit))) {
 rb_raise(rb_eRuntimeError,
   "implicit argument passing of super from method defined"
   " by define_method() is not supported."
   " Specify all arguments explicitly.");
    }
    ci->mid = me->def->original_id;
    klass = vm_search_normal_superclass(me->defined_class);
    if (!klass) {
 cc->aux.method_missing_reason = MISSING_SUPER;
        CC_SET_FASTPATH(cc, vm_call_method_missing, 1);
    }
    else {
        CC_SET_ME(cc, rb_callable_method_entry(klass, ci->mid));
        CC_SET_FASTPATH(cc, vm_call_super_method, 1);
    }
}
static inline int
block_proc_is_lambda(const VALUE procval)
{
    rb_proc_t *proc;
    if (procval) {
 (((proc)) = (rb_proc_t*)(((struct RData*)(((procval))))->data));
 return proc->is_lambda;
    }
    else {
 return 0;
    }
}
static VALUE
vm_yield_with_cfunc(rb_execution_context_t *ec,
      const struct rb_captured_block *captured,
                    VALUE self, int argc, const VALUE *argv, int kw_splat, VALUE block_handler,
                    const rb_callable_method_entry_t *me)
{
    int is_lambda = 0;
    VALUE val, arg, blockarg;
    int frame_flag;
    const struct vm_ifunc *ifunc = captured->code.ifunc;
    if (is_lambda) {
 arg = rb_ary_new_from_values(argc, argv);
    }
    else if (argc == 0) {
 arg = ((VALUE)RUBY_Qnil);
    }
    else {
 arg = argv[0];
    }
    blockarg = rb_vm_bh_to_procval(ec, block_handler);
    frame_flag = VM_FRAME_MAGIC_IFUNC | VM_FRAME_FLAG_CFRAME | (me ? VM_FRAME_FLAG_BMETHOD : 0);
    switch (kw_splat) {
      case 1:
        frame_flag |= VM_FRAME_FLAG_CFRAME_KW;
        break;
      case 2:
        frame_flag |= VM_FRAME_FLAG_CFRAME_EMPTY_KW;
        break;
    }
    vm_push_frame(ec, (const rb_iseq_t *)captured->code.ifunc,
                  frame_flag,
    self,
    ((VALUE)((captured->ep)) | (0x01)),
                  (VALUE)me,
    0, ec->cfp->sp, 0, 0);
    val = (*ifunc->func)(arg, (VALUE)ifunc->data, argc, argv, blockarg);
    rb_vm_pop_frame(ec);
    return val;
}
static VALUE
vm_yield_with_symbol(rb_execution_context_t *ec, VALUE symbol, int argc, const VALUE *argv, int kw_splat, VALUE block_handler)
{
    return rb_sym_proc_call((rb_sym2id(symbol)), argc, argv, kw_splat, rb_vm_bh_to_procval(ec, block_handler));
}
static inline int
vm_callee_setup_block_arg_arg0_splat(rb_control_frame_t *cfp, const rb_iseq_t *iseq, VALUE *argv, VALUE ary)
{
    int i;
    long len = rb_array_len(ary);
    if ((__builtin_expect(!!(!(!(1/!!(sizeof(*((cfp)->sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)(((cfp)->sp) + (iseq->body->param.lead_num)) + 1) >= (cfp))), 1))) {(void)0;} else vm_stackoverflow();
    for (i=0; i<len && i<iseq->body->param.lead_num; i++) {
 argv[i] = (rb_array_const_ptr_transient(ary)[i]);
    }
    return i;
}
static inline VALUE
vm_callee_setup_block_arg_arg0_check(VALUE *argv)
{
    VALUE ary, arg0 = argv[0];
    ary = rb_check_array_type(arg0);
    ((void)0);
    return ary;
}
static int
vm_callee_setup_block_arg(rb_execution_context_t *ec, struct rb_calling_info *calling, const struct rb_call_info *ci, const rb_iseq_t *iseq, VALUE *argv, const enum arg_setup_type arg_setup_type)
{
    if (rb_simple_iseq_p(iseq)) {
 rb_control_frame_t *cfp = ec->cfp;
 VALUE arg0;
        CALLER_SETUP_ARG(cfp, calling, ci);
        if (calling->kw_splat && calling->argc == iseq->body->param.lead_num + iseq->body->param.post_num && (((!(((struct RBasic*)((cfp->sp[-1])))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(cfp->sp[-1]))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(cfp->sp[-1]))->as.st)->num_entries)) == 0)) {
            rb_warn_keyword_to_last_hash(ec, calling, ci, iseq);
        }
        else {
            CALLER_REMOVE_EMPTY_KW_SPLAT(cfp, calling, ci);
        }
 if (arg_setup_type == arg_setup_block &&
     calling->argc == 1 &&
     iseq->body->param.flags.has_lead &&
     !iseq->body->param.flags.ambiguous_param0 &&
     !!((VALUE)(arg0 = vm_callee_setup_block_arg_arg0_check(argv)) != ((VALUE)RUBY_Qnil))) {
     calling->argc = vm_callee_setup_block_arg_arg0_splat(cfp, iseq, argv, arg0);
 }
 if (calling->argc != iseq->body->param.lead_num) {
     if (arg_setup_type == arg_setup_block) {
  if (calling->argc < iseq->body->param.lead_num) {
      int i;
      if ((__builtin_expect(!!(!(!(1/!!(sizeof(*((cfp)->sp)) == sizeof(VALUE))) || !(1/!!(sizeof(*(cfp)) == sizeof(rb_control_frame_t))) || ((rb_control_frame_t *)(((cfp)->sp) + (iseq->body->param.lead_num)) + 1) >= (cfp))), 1))) {(void)0;} else vm_stackoverflow();
      for (i=calling->argc; i<iseq->body->param.lead_num; i++) argv[i] = ((VALUE)RUBY_Qnil);
      calling->argc = iseq->body->param.lead_num;
  }
  else if (calling->argc > iseq->body->param.lead_num) {
      calling->argc = iseq->body->param.lead_num;
  }
     }
     else {
  argument_arity_error(ec, iseq, calling->argc, iseq->body->param.lead_num, iseq->body->param.lead_num);
     }
 }
 return 0;
    }
    else {
 return setup_parameters_complex(ec, iseq, calling, ci, argv, arg_setup_type);
    }
}
static int
vm_yield_setup_args(rb_execution_context_t *ec, const rb_iseq_t *iseq, const int argc, VALUE *argv, int kw_splat, VALUE block_handler, enum arg_setup_type arg_setup_type)
{
    struct rb_calling_info calling_entry, *calling;
    struct rb_call_info ci_entry, *ci;
    calling = &calling_entry;
    calling->argc = argc;
    calling->block_handler = block_handler;
    calling->kw_splat = kw_splat;
    calling->recv = ((VALUE)RUBY_Qundef);
    ci_entry.flag = kw_splat ? (0x01 << VM_CALL_KW_SPLAT_bit) : 0;
    ci = &ci_entry;
    return vm_callee_setup_block_arg(ec, calling, ci, iseq, argv, arg_setup_type);
}
static VALUE
vm_invoke_iseq_block(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
       struct rb_calling_info *calling, const struct rb_call_info *ci,
       int is_lambda, const struct rb_captured_block *captured)
{
    const rb_iseq_t *iseq = rb_iseq_check(captured->code.iseq);
    const int arg_size = iseq->body->param.size;
    VALUE * const rsp = ((((reg_cfp)->sp))) - calling->argc;
    int opt_pc = vm_callee_setup_block_arg(ec, calling, ci, iseq, rsp, is_lambda ? arg_setup_method : arg_setup_block);
    (((reg_cfp)->sp) = (((rsp))));
    vm_push_frame(ec, iseq,
    VM_FRAME_MAGIC_BLOCK | (is_lambda ? VM_FRAME_FLAG_LAMBDA : 0),
    captured->self,
    ((VALUE)((captured->ep)) | (0x01)), 0,
    iseq->body->iseq_encoded + opt_pc,
    rsp + arg_size,
    iseq->body->local_table_size - arg_size, iseq->body->stack_max);
    return ((VALUE)RUBY_Qundef);
}
static VALUE
vm_invoke_symbol_block(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
         struct rb_calling_info *calling, const struct rb_call_info *ci,
         VALUE symbol)
{
    VALUE val;
    int argc;
    CALLER_SETUP_ARG(ec->cfp, calling, ci);
    argc = calling->argc;
    val = vm_yield_with_symbol(ec, symbol, argc, (((((reg_cfp)->sp)))-(argc)), calling->kw_splat, calling->block_handler);
    ((((reg_cfp)->sp) -= (((argc)))));
    return val;
}
static VALUE
vm_invoke_ifunc_block(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
        struct rb_calling_info *calling, const struct rb_call_info *ci,
        const struct rb_captured_block *captured)
{
    VALUE val;
    int argc;
    int kw_splat = calling->kw_splat;
    CALLER_SETUP_ARG(ec->cfp, calling, ci);
    CALLER_REMOVE_EMPTY_KW_SPLAT(ec->cfp, calling, ci);
    if (kw_splat && !calling->kw_splat) {
        kw_splat = 2;
    }
    else {
        kw_splat = calling->kw_splat;
    }
    argc = calling->argc;
    val = vm_yield_with_cfunc(ec, captured, captured->self, argc, (((((reg_cfp)->sp)))-(argc)), kw_splat, calling->block_handler, ((void *)0));
    ((((reg_cfp)->sp) -= (((argc)))));
    return val;
}
static VALUE
vm_proc_to_block_handler(VALUE procval)
{
    const struct rb_block *block = vm_proc_block(procval);
    switch (vm_block_type(block)) {
      case block_type_iseq:
 return VM_BH_FROM_ISEQ_BLOCK(&block->as.captured);
      case block_type_ifunc:
 return VM_BH_FROM_IFUNC_BLOCK(&block->as.captured);
      case block_type_symbol:
 return VM_BH_FROM_SYMBOL(block->as.symbol);
      case block_type_proc:
 return VM_BH_FROM_PROC(block->as.proc);
    }
    __builtin_unreachable();
    return ((VALUE)RUBY_Qundef);
}
static inline VALUE
vm_invoke_block(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp,
  struct rb_calling_info *calling, const struct rb_call_info *ci, VALUE block_handler)
{
    int is_lambda = 0;
  again:
    switch (vm_block_handler_type(block_handler)) {
      case block_handler_type_iseq:
 {
     const struct rb_captured_block *captured = VM_BH_TO_ISEQ_BLOCK(block_handler);
     return vm_invoke_iseq_block(ec, reg_cfp, calling, ci, is_lambda, captured);
 }
      case block_handler_type_ifunc:
 {
     const struct rb_captured_block *captured = VM_BH_TO_IFUNC_BLOCK(block_handler);
     return vm_invoke_ifunc_block(ec, reg_cfp, calling, ci, captured);
 }
      case block_handler_type_proc:
 is_lambda = block_proc_is_lambda(VM_BH_TO_PROC(block_handler));
 block_handler = vm_proc_to_block_handler(VM_BH_TO_PROC(block_handler));
 goto again;
      case block_handler_type_symbol:
 return vm_invoke_symbol_block(ec, reg_cfp, calling, ci, VM_BH_TO_SYMBOL(block_handler));
    }
    __builtin_unreachable();
    return ((VALUE)RUBY_Qnil);
}
static VALUE
vm_make_proc_with_iseq(const rb_iseq_t *blockiseq)
{
    const rb_execution_context_t *ec = rb_current_execution_context();
    const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
    struct rb_captured_block *captured;
    if (cfp == 0) {
 rb_bug("vm_make_proc_with_iseq: unreachable");
    }
    captured = VM_CFP_TO_CAPTURED_BLOCK(cfp);
    captured->code.iseq = blockiseq;
    return rb_vm_make_proc(ec, captured, rb_cProc);
}
static VALUE
vm_once_exec(VALUE iseq)
{
    VALUE proc = vm_make_proc_with_iseq((rb_iseq_t *)iseq);
    return rb_proc_call_with_block(proc, 0, 0, ((VALUE)RUBY_Qnil));
}
static VALUE
vm_once_clear(VALUE data)
{
    union iseq_inline_storage_entry *is = (union iseq_inline_storage_entry *)data;
    is->once.running_thread = ((void *)0);
    return ((VALUE)RUBY_Qnil);
}static inline 
rb_control_frame_t *
rb_vm_opt_struct_aref(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp)
{
    (*(((((reg_cfp)->sp)))-(0)-1)) = rb_struct_aref((((((reg_cfp)))->self)), (*(((((reg_cfp)->sp)))-(0)-1)));
    return reg_cfp;
}static inline 
rb_control_frame_t *
rb_vm_opt_struct_aset(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp)
{
    rb_struct_aset((((((reg_cfp)))->self)), (*(((((reg_cfp)->sp)))-(0)-1)), (*(((((reg_cfp)->sp)))-(1)-1)));
    return reg_cfp;
}
static enum defined_type
check_respond_to_missing(VALUE obj, VALUE v)
{
    VALUE args[2];
    VALUE r;
    args[0] = obj; args[1] = ((VALUE)RUBY_Qfalse);
    r = rb_check_funcall(v, idRespond_to_missing, 2, args);
    if (r != ((VALUE)RUBY_Qundef) && !(((VALUE)(r) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
 return DEFINED_METHOD;
    }
    else {
 return DEFINED_NOT_DEFINED;
    }
}
static VALUE
vm_defined(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, rb_num_t op_type, VALUE obj, VALUE needstr, VALUE v)
{
    VALUE klass;
    enum defined_type expr_type = DEFINED_NOT_DEFINED;
    enum defined_type type = (enum defined_type)op_type;
    switch (type) {
      case DEFINED_IVAR:
 if (rb_ivar_defined((((((reg_cfp)))->self)), (rb_sym2id(obj)))) {
     expr_type = DEFINED_IVAR;
 }
 break;
      case DEFINED_IVAR2:
 klass = vm_get_cbase(((((reg_cfp)->ep))));
 break;
      case DEFINED_GVAR:
 if (rb_gvar_defined(rb_global_entry((rb_sym2id(obj))))) {
     expr_type = DEFINED_GVAR;
 }
 break;
      case DEFINED_CVAR: {
        const rb_cref_t *cref = vm_get_cref(((((reg_cfp)->ep))));
 klass = vm_get_cvar_base(cref, (((reg_cfp))));
 if (rb_cvar_defined(klass, (rb_sym2id(obj)))) {
     expr_type = DEFINED_CVAR;
 }
 break;
      }
      case DEFINED_CONST:
      case DEFINED_CONST_FROM: {
 _Bool allow_nil = type == DEFINED_CONST;
 klass = v;
        if (vm_get_ev_const(ec, klass, (rb_sym2id(obj)), allow_nil, 1)) {
     expr_type = DEFINED_CONST;
 }
 break;
      }
      case DEFINED_FUNC:
 klass = rb_class_of((VALUE)(v));
 if (rb_method_boundp(klass, (rb_sym2id(obj)), 0)) {
     expr_type = DEFINED_METHOD;
 }
 else {
     expr_type = check_respond_to_missing(obj, v);
 }
 break;
      case DEFINED_METHOD:{
 VALUE klass = rb_class_of((VALUE)(v));
 const rb_method_entry_t *me = rb_method_entry(klass, (rb_sym2id(obj)));
 if (me) {
     switch ((rb_method_visibility_t)(((me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0))) {
       case METHOD_VISI_PRIVATE:
  break;
       case METHOD_VISI_PROTECTED:
  if (!rb_obj_is_kind_of((((((reg_cfp)))->self)), rb_class_real(me->defined_class))) {
      break;
  }
       case METHOD_VISI_PUBLIC:
  expr_type = DEFINED_METHOD;
  break;
       default:
  rb_bug("vm_defined: unreachable: %u", (unsigned int)(rb_method_visibility_t)(((me)->flags & (((VALUE)RUBY_FL_USER4) | ((VALUE)RUBY_FL_USER5))) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+0)));
     }
 }
 else {
     expr_type = check_respond_to_missing(obj, v);
 }
 break;
      }
      case DEFINED_YIELD:
 if (((VM_EP_LEP(((((reg_cfp)->ep)))))[(-1)]) != 0) {
     expr_type = DEFINED_YIELD;
 }
 break;
      case DEFINED_ZSUPER:
 {
     const rb_callable_method_entry_t *me = rb_vm_frame_method_entry((((reg_cfp))));
     if (me) {
  VALUE klass = vm_search_normal_superclass(me->defined_class);
  ID id = me->def->original_id;
  if (rb_method_boundp(klass, id, 0)) {
      expr_type = DEFINED_ZSUPER;
  }
     }
 }
 break;
      case DEFINED_REF:{
 if (vm_getspecial(ec, (VM_EP_LEP(((((reg_cfp)->ep))))), ((VALUE)RUBY_Qfalse), ((int)rb_fix2int((VALUE)(obj)))) != ((VALUE)RUBY_Qnil)) {
     expr_type = DEFINED_GVAR;
 }
 break;
      }
      default:
 rb_bug("unimplemented defined? type (VM)");
 break;
    }
    if (expr_type != 0) {
 if (needstr != ((VALUE)RUBY_Qfalse)) {
     return rb_iseq_defined_string(expr_type);
 }
 else {
     return ((VALUE)RUBY_Qtrue);
 }
    }
    else {
 return ((VALUE)RUBY_Qnil);
    }
}
static const VALUE *
vm_get_ep(const VALUE *const reg_ep, rb_num_t lv)
{
    rb_num_t i;
    const VALUE *ep = reg_ep;
    for (i = 0; i < lv; i++) {
 ep = ((VALUE *)((ep)[(-1)] & ~0x03));
    }
    return ep;
}
static VALUE
vm_get_special_object(const VALUE *const reg_ep,
        enum vm_special_object_type type)
{
    switch (type) {
      case VM_SPECIAL_OBJECT_VMCORE:
 return rb_mRubyVMFrozenCore;
      case VM_SPECIAL_OBJECT_CBASE:
 return vm_get_cbase(reg_ep);
      case VM_SPECIAL_OBJECT_CONST_BASE:
 return vm_get_const_base(reg_ep);
      default:
 rb_bug("putspecialobject insn: unknown value_type %d", type);
    }
}
static void
vm_freezestring(VALUE str, VALUE debug)
{
    if (!!((VALUE)(debug) != ((VALUE)RUBY_Qnil))) {
 rb_ivar_set(str, id_debug_created_info, debug);
    }
    rb_str_freeze(str);
}
static VALUE
vm_concat_array(VALUE ary1, VALUE ary2st)
{
    const VALUE ary2 = ary2st;
    VALUE tmp1 = rb_check_to_array(ary1);
    VALUE tmp2 = rb_check_to_array(ary2);
    if (!((VALUE)(tmp1) != ((VALUE)RUBY_Qnil))) {
 tmp1 = __extension__ ({ const VALUE args_to_new_ary[] = {ary1}; if (__builtin_constant_p(1)) { _Static_assert(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))) == (1), "rb_ary_new_from_args" ": " "numberof(args_to_new_ary) == (1)"); } rb_ary_new_from_values(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))), args_to_new_ary); });
    }
    if (!((VALUE)(tmp2) != ((VALUE)RUBY_Qnil))) {
 tmp2 = __extension__ ({ const VALUE args_to_new_ary[] = {ary2}; if (__builtin_constant_p(1)) { _Static_assert(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))) == (1), "rb_ary_new_from_args" ": " "numberof(args_to_new_ary) == (1)"); } rb_ary_new_from_values(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))), args_to_new_ary); });
    }
    if (tmp1 == ary1) {
 tmp1 = rb_ary_dup(ary1);
    }
    return rb_ary_concat(tmp1, tmp2);
}
static VALUE
vm_splat_array(VALUE flag, VALUE ary)
{
    VALUE tmp = rb_check_to_array(ary);
    if (!((VALUE)(tmp) != ((VALUE)RUBY_Qnil))) {
 return __extension__ ({ const VALUE args_to_new_ary[] = {ary}; if (__builtin_constant_p(1)) { _Static_assert(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))) == (1), "rb_ary_new_from_args" ": " "numberof(args_to_new_ary) == (1)"); } rb_ary_new_from_values(((int)(sizeof(args_to_new_ary) / sizeof((args_to_new_ary)[0]))), args_to_new_ary); });
    }
    else if (!(((VALUE)(flag) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
 return rb_ary_dup(tmp);
    }
    else {
 return tmp;
    }
}
static VALUE
vm_check_match(rb_execution_context_t *ec, VALUE target, VALUE pattern, rb_num_t flag)
{
    enum vm_check_match_type type = ((int)flag) & 0x03;
    if (flag & 0x04) {
 long i;
 const long n = rb_array_len(pattern);
 for (i = 0; i < n; i++) {
     VALUE v = (rb_array_const_ptr_transient(pattern)[i]);
     VALUE c = check_match(ec, v, target, type);
     if (!(((VALUE)(c) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) {
  return c;
     }
 }
 return ((VALUE)RUBY_Qfalse);
    }
    else {
 return check_match(ec, pattern, target, type);
    }
}
static VALUE
vm_check_keyword(lindex_t bits, lindex_t idx, const VALUE *ep)
{
    const VALUE kw_bits = *(ep - bits);
    if ((((int)(long)(kw_bits))&RUBY_FIXNUM_FLAG)) {
 unsigned int b = (unsigned int)((unsigned long)((long)(((long)(kw_bits))>>(int)(1))));
 if ((idx < (32-1)) && (b & (0x01 << idx)))
     return ((VALUE)RUBY_Qfalse);
    }
    else {
 ((void)0);
 if (rb_hash_has_key(kw_bits, (((VALUE)(idx))<<1 | RUBY_FIXNUM_FLAG))) return ((VALUE)RUBY_Qfalse);
    }
    return ((VALUE)RUBY_Qtrue);
}
static void
vm_dtrace(rb_event_flag_t flag, rb_execution_context_t *ec)
{
    if (0 ||
 0 ||
 0 ||
 0) {
 switch (flag) {
   case 0x0008:
     do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, 0, 0, &args)) { do {} while (0); } } } while (0);
     return;
   case 0x0020:
     do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, 0, 0, &args)) { do {} while (0); } } } while (0);
     return;
   case 0x0010:
     do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, 0, 0, &args)) { do {} while (0); } } } while (0);
     return;
   case 0x0040:
     do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, 0, 0, &args)) { do {} while (0); } } } while (0);
     return;
 }
    }
}
static VALUE
vm_const_get_under(ID id, rb_num_t flags, VALUE cbase)
{
    VALUE ns;
    if ((ns = vm_search_const_defined_class(cbase, id)) == 0) {
 return ns;
    }
    else if (((flags) & 0x08)) {
 return rb_public_const_get_at(ns, id);
    }
    else {
 return rb_const_get_at(ns, id);
    }
}
static VALUE
vm_check_if_class(ID id, rb_num_t flags, VALUE super, VALUE klass)
{
    if (!( ((RUBY_T_CLASS) == RUBY_T_FIXNUM) ? (((int)(long)(klass))&RUBY_FIXNUM_FLAG) : ((RUBY_T_CLASS) == RUBY_T_TRUE) ? ((klass) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_CLASS) == RUBY_T_FALSE) ? ((klass) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_CLASS) == RUBY_T_NIL) ? ((klass) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_CLASS) == RUBY_T_UNDEF) ? ((klass) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_CLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(klass)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_CLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(klass))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(klass) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(klass) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(klass))->flags & RUBY_T_MASK) == (RUBY_T_CLASS)))) {
        return 0;
    }
    else if (((flags) & 0x10)) {
 VALUE tmp = rb_class_real(RCLASS_SUPER(klass));
 if (tmp != super) {
     rb_raise(rb_eTypeError,
       "superclass mismatch for class %""l""i" "\v""",
       rb_id2str(id));
 }
 else {
     return klass;
 }
    }
    else {
 return klass;
    }
}
static VALUE
vm_check_if_module(ID id, VALUE mod)
{
    if (!( ((RUBY_T_MODULE) == RUBY_T_FIXNUM) ? (((int)(long)(mod))&RUBY_FIXNUM_FLAG) : ((RUBY_T_MODULE) == RUBY_T_TRUE) ? ((mod) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_MODULE) == RUBY_T_FALSE) ? ((mod) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_MODULE) == RUBY_T_NIL) ? ((mod) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_MODULE) == RUBY_T_UNDEF) ? ((mod) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_MODULE) == RUBY_T_SYMBOL) ? ((((VALUE)(mod)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(mod) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(mod) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(mod))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_MODULE) == RUBY_T_FLOAT) ? ( ((((int)(long)(mod))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(mod) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(mod) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(mod))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(mod) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(mod) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(mod))->flags & RUBY_T_MASK) == (RUBY_T_MODULE)))) {
        return 0;
    }
    else {
 return mod;
    }
}
static VALUE
declare_under(ID id, VALUE cbase, VALUE c)
{
    rb_set_class_path_string(c, cbase, rb_id2str(id));
    rb_const_set(cbase, id, c);
    return c;
}
static VALUE
vm_declare_class(ID id, rb_num_t flags, VALUE cbase, VALUE super)
{
    VALUE s = ((flags) & 0x10) ? super : rb_cObject;
    VALUE c = declare_under(id, cbase, rb_define_class_id(id, s));
    rb_class_inherited(s, c);
    return c;
}
static VALUE
vm_declare_module(ID id, VALUE cbase)
{
    return declare_under(id, cbase, rb_define_module_id(id));
}
__attribute__ ((__noreturn__)) static void unmatched_redefinition(const char *type, VALUE cbase, ID id, VALUE old);
static void
unmatched_redefinition(const char *type, VALUE cbase, ID id, VALUE old)
{
    VALUE name = rb_id2str(id);
    VALUE message = rb_sprintf("%""l""i" "\v"" is not a %s",
                               name, type);
    VALUE location = rb_const_source_location_at(cbase, id);
    if (!!((VALUE)(location) != ((VALUE)RUBY_Qnil))) {
        rb_str_catf(message, "\n%""l""i" "\v"":%""l""i" "\v"":"
                    " previous definition of %""l""i" "\v"" was here",
                    rb_ary_entry(location, 0), rb_ary_entry(location, 1), name);
    }
    rb_exc_raise(rb_exc_new_str(rb_eTypeError, message));
}
static VALUE
vm_define_class(ID id, rb_num_t flags, VALUE cbase, VALUE super)
{
    VALUE klass;
    if (((flags) & 0x10) && !( ((RUBY_T_CLASS) == RUBY_T_FIXNUM) ? (((int)(long)(super))&RUBY_FIXNUM_FLAG) : ((RUBY_T_CLASS) == RUBY_T_TRUE) ? ((super) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_CLASS) == RUBY_T_FALSE) ? ((super) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_CLASS) == RUBY_T_NIL) ? ((super) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_CLASS) == RUBY_T_UNDEF) ? ((super) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_CLASS) == RUBY_T_SYMBOL) ? ((((VALUE)(super)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(super) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(super) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(super))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_CLASS) == RUBY_T_FLOAT) ? ( ((((int)(long)(super))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(super) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(super) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(super))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)(super) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(super) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(super))->flags & RUBY_T_MASK) == (RUBY_T_CLASS)))) {
 rb_raise(rb_eTypeError,
   "superclass must be a Class (%""l""i" "\v"" given)",
   rb_obj_class(super));
    }
    vm_check_if_namespace(cbase);
    rb_autoload_load(cbase, id);
    if ((klass = vm_const_get_under(id, flags, cbase)) != 0) {
        if (!vm_check_if_class(id, flags, super, klass))
            unmatched_redefinition("class", cbase, id, klass);
        return klass;
    }
    else {
 return vm_declare_class(id, flags, cbase, super);
    }
}
static VALUE
vm_define_module(ID id, rb_num_t flags, VALUE cbase)
{
    VALUE mod;
    vm_check_if_namespace(cbase);
    if ((mod = vm_const_get_under(id, flags, cbase)) != 0) {
        if (!vm_check_if_module(id, mod))
            unmatched_redefinition("module", cbase, id, mod);
        return mod;
    }
    else {
 return vm_declare_module(id, cbase);
    }
}
static VALUE
vm_find_or_create_class_by_id(ID id,
         rb_num_t flags,
         VALUE cbase,
         VALUE super)
{
    rb_vm_defineclass_type_t type = ((rb_vm_defineclass_type_t)(flags) & VM_DEFINECLASS_TYPE_MASK);
    switch (type) {
      case VM_DEFINECLASS_TYPE_CLASS:
 return vm_define_class(id, flags, cbase, super);
      case VM_DEFINECLASS_TYPE_SINGLETON_CLASS:
 return rb_singleton_class(cbase);
      case VM_DEFINECLASS_TYPE_MODULE:
 return vm_define_module(id, flags, cbase);
      default:
 rb_bug("unknown defineclass type: %d", (int)type);
    }
}
static rb_method_visibility_t
vm_scope_visibility_get(const rb_execution_context_t *ec)
{
    const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
    if (!vm_env_cref_by_cref(cfp->ep)) {
        return METHOD_VISI_PUBLIC;
    }
    else {
        return CREF_SCOPE_VISI(vm_ec_cref(ec))->method_visi;
    }
}
static int
vm_scope_module_func_check(const rb_execution_context_t *ec)
{
    const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);
    if (!vm_env_cref_by_cref(cfp->ep)) {
        return 0;
    }
    else {
        return CREF_SCOPE_VISI(vm_ec_cref(ec))->module_func;
    }
}
static void
vm_define_method(const rb_execution_context_t *ec, VALUE obj, ID id, VALUE iseqval, int is_singleton)
{
    VALUE klass;
    rb_method_visibility_t visi;
    rb_cref_t *cref = vm_ec_cref(ec);
    if (!is_singleton) {
        klass = CREF_CLASS(cref);
        visi = vm_scope_visibility_get(ec);
    }
    else {
        klass = rb_singleton_class(obj);
        visi = METHOD_VISI_PUBLIC;
    }
    if (!((VALUE)(klass) != ((VALUE)RUBY_Qnil))) {
        rb_raise(rb_eTypeError, "no class/module to add method");
    }
    rb_add_method_iseq(klass, id, (const rb_iseq_t *)iseqval, cref, visi);
    if (!is_singleton && vm_scope_module_func_check(ec)) {
        klass = rb_singleton_class(klass);
        rb_add_method_iseq(klass, id, (const rb_iseq_t *)iseqval, cref, METHOD_VISI_PUBLIC);
    }
}
static void
vm_search_method_wrap(
    const struct rb_control_frame_struct *reg_cfp,
    struct rb_call_data *cd,
    VALUE recv)
{
    vm_search_method(cd, recv);
}
static void
vm_search_invokeblock(
    const struct rb_control_frame_struct *reg_cfp,
    struct rb_call_data *cd,
    VALUE recv)
{
}
static VALUE
vm_invokeblock_i(
    struct rb_execution_context_struct *ec,
    struct rb_control_frame_struct *reg_cfp,
    struct rb_calling_info *calling,
    struct rb_call_data *cd)
{
    const struct rb_call_info *ci = &cd->ci;
    VALUE block_handler = VM_CF_BLOCK_HANDLER((((reg_cfp))));
    if (block_handler == 0) {
        rb_vm_localjump_error("no block given (yield)", ((VALUE)RUBY_Qnil), 0);
    }
    else {
        return vm_invoke_block(ec, (((reg_cfp))), calling, ci, block_handler);
    }
}
static VALUE
vm_sendish(
    struct rb_execution_context_struct *ec,
    struct rb_control_frame_struct *reg_cfp,
    struct rb_call_data *cd,
    VALUE block_handler,
    void (*method_explorer)(
        const struct rb_control_frame_struct *reg_cfp,
        struct rb_call_data *cd,
        VALUE recv))
{
    CALL_INFO ci = &cd->ci;
    CALL_CACHE cc = &cd->cc;
    VALUE val;
    int argc = ci->orig_argc;
    VALUE recv = (*(((((reg_cfp)->sp)))-(argc)-1));
    struct rb_calling_info calling;
    calling.block_handler = block_handler;
    calling.kw_splat = ((ci)->flag & (0x01 << VM_CALL_KW_SPLAT_bit)) > 0;
    calling.recv = recv;
    calling.argc = argc;
    method_explorer((((reg_cfp))), cd, recv);
    val = cc->call(ec, (((reg_cfp))), &calling, cd);
    if (val != ((VALUE)RUBY_Qundef)) {
        return val;
    }
    else {
        do { (reg_cfp) = ec->cfp; } while (0);
    }
    if (((((reg_cfp)))->iseq)->body->catch_except_p) {
        VM_ENV_FLAGS_SET(((((reg_cfp)->ep))), VM_FRAME_FLAG_FINISH);
        return rb_vm_exec(ec, 1);
    }
    else if ((val = mjit_exec(ec)) == ((VALUE)RUBY_Qundef)) {
        VM_ENV_FLAGS_SET(((((reg_cfp)->ep))), VM_FRAME_FLAG_FINISH);
        return rb_vm_exec(ec, 0);
    }
    else {
        return val;
    }
}
static VALUE
vm_opt_str_freeze(VALUE str, int bop, ID id)
{
    if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(bop)]&((1 << 2))) == 0), 1)))) {
 return str;
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
static VALUE
vm_opt_newarray_max(rb_num_t num, const VALUE *ptr)
{
    if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MAX)]&((1 << 3))) == 0), 1)))) {
 if (num == 0) {
     return ((VALUE)RUBY_Qnil);
 }
 else {
     struct cmp_opt_data cmp_opt = { 0, 0 };
     VALUE result = *ptr;
            rb_snum_t i = num - 1;
     while (i-- > 0) {
  const VALUE v = *++ptr;
  if ((((((int)(long)(v))&RUBY_FIXNUM_FLAG) && (((int)(long)(result))&RUBY_FIXNUM_FLAG) && (((cmp_opt).opt_inited & (1U << cmp_opt_Fixnum)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_Fixnum)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_Fixnum)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cInteger == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cInteger, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_Fixnum))))) ? (((long)v > (long)result) ? 1 : ((long)v < (long)result) ? -1 : 0) : ((( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)((v)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? (((v)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? (((v)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? (((v)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? (((v)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)((v))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)((v)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == (RUBY_T_STRING))) && rb_class_of((VALUE)(v)) == rb_cString) && (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)((result)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? (((result)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? (((result)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? (((result)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? (((result)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)((result))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)((result)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == (RUBY_T_STRING))) && rb_class_of((VALUE)(result)) == rb_cString) && (((cmp_opt).opt_inited & (1U << cmp_opt_String)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_String)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_String)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cString == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cString, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_String))))) ? rb_str_cmp(v, result) : (( ((((int)(long)(v))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) && ( ((((int)(long)(result))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(result) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(result) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(result))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) && (((cmp_opt).opt_inited & (1U << cmp_opt_Float)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_Float)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_Float)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cFloat == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cFloat, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_Float))))) ? rb_float_cmp(v, result) : rb_cmpint(__extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, v, idCmp, 1, &result); }), v, result)) > 0) {
      result = v;
  }
     }
     return result;
 }
    }
    else {
 VALUE ary = rb_ary_new_from_values(num, ptr);
 return __extension__({ const int rb_funcall_argc = (0); const VALUE rb_funcall_args[] = {}; const int rb_funcall_nargs = (int)(sizeof(rb_funcall_args) / sizeof(VALUE)); __extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, ary, idMax, __builtin_choose_expr(__builtin_constant_p(rb_funcall_argc), (((rb_funcall_argc) == 0 ? (rb_funcall_nargs) <= 1 : (rb_funcall_argc) == (rb_funcall_nargs)) ? (rb_funcall_argc) : rb_varargs_bad_length(rb_funcall_argc, rb_funcall_nargs)), (((rb_funcall_argc) <= (rb_funcall_nargs)) ? (rb_funcall_argc) : (rb_fatal("argc(%d) exceeds actual arguments(%d)", rb_funcall_argc, rb_funcall_nargs), 0))), rb_funcall_nargs ? rb_funcall_args : ((void *)0)); }); });
    }
}
static VALUE
vm_opt_newarray_min(rb_num_t num, const VALUE *ptr)
{
    if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MIN)]&((1 << 3))) == 0), 1)))) {
 if (num == 0) {
     return ((VALUE)RUBY_Qnil);
 }
 else {
     struct cmp_opt_data cmp_opt = { 0, 0 };
     VALUE result = *ptr;
            rb_snum_t i = num - 1;
     while (i-- > 0) {
  const VALUE v = *++ptr;
  if ((((((int)(long)(v))&RUBY_FIXNUM_FLAG) && (((int)(long)(result))&RUBY_FIXNUM_FLAG) && (((cmp_opt).opt_inited & (1U << cmp_opt_Fixnum)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_Fixnum)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_Fixnum)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cInteger == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cInteger, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_Fixnum))))) ? (((long)v > (long)result) ? 1 : ((long)v < (long)result) ? -1 : 0) : ((( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)((v)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? (((v)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? (((v)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? (((v)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? (((v)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)((v))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)((v)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((v)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((v)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((v)))->flags & RUBY_T_MASK) == (RUBY_T_STRING))) && rb_class_of((VALUE)(v)) == rb_cString) && (( ((RUBY_T_STRING) == RUBY_T_FIXNUM) ? (((int)(long)((result)))&RUBY_FIXNUM_FLAG) : ((RUBY_T_STRING) == RUBY_T_TRUE) ? (((result)) == ((VALUE)RUBY_Qtrue)) : ((RUBY_T_STRING) == RUBY_T_FALSE) ? (((result)) == ((VALUE)RUBY_Qfalse)) : ((RUBY_T_STRING) == RUBY_T_NIL) ? (((result)) == ((VALUE)RUBY_Qnil)) : ((RUBY_T_STRING) == RUBY_T_UNDEF) ? (((result)) == ((VALUE)RUBY_Qundef)) : ((RUBY_T_STRING) == RUBY_T_SYMBOL) ? ((((VALUE)((result))&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL))) : ((RUBY_T_STRING) == RUBY_T_FLOAT) ? ( ((((int)(long)((result)))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) : (!(((VALUE)((result)) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)((result)) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)((result)))->flags & RUBY_T_MASK) == (RUBY_T_STRING))) && rb_class_of((VALUE)(result)) == rb_cString) && (((cmp_opt).opt_inited & (1U << cmp_opt_String)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_String)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_String)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cString == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cString, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_String))))) ? rb_str_cmp(v, result) : (( ((((int)(long)(v))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(v) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(v) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(v))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) && ( ((((int)(long)(result))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(result) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(result) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(result))->flags & RUBY_T_MASK) == RUBY_T_FLOAT)) && (((cmp_opt).opt_inited & (1U << cmp_opt_Float)) ? ((cmp_opt).opt_methods & (1U << cmp_opt_Float)) : (((cmp_opt).opt_inited |= (1U << cmp_opt_Float)), __extension__({ static struct rb_call_data rb_mbdp; (rb_cFloat == ((VALUE)RUBY_Qfalse)) ? 1 : rb_method_basic_definition_p_with_cc(&rb_mbdp, rb_cFloat, idCmp); }) && ((cmp_opt).opt_methods |= (1U << cmp_opt_Float))))) ? rb_float_cmp(v, result) : rb_cmpint(__extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, v, idCmp, 1, &result); }), v, result)) < 0) {
      result = v;
  }
     }
     return result;
 }
    }
    else {
 VALUE ary = rb_ary_new_from_values(num, ptr);
 return __extension__({ const int rb_funcall_argc = (0); const VALUE rb_funcall_args[] = {}; const int rb_funcall_nargs = (int)(sizeof(rb_funcall_args) / sizeof(VALUE)); __extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, ary, idMin, __builtin_choose_expr(__builtin_constant_p(rb_funcall_argc), (((rb_funcall_argc) == 0 ? (rb_funcall_nargs) <= 1 : (rb_funcall_argc) == (rb_funcall_nargs)) ? (rb_funcall_argc) : rb_varargs_bad_length(rb_funcall_argc, rb_funcall_nargs)), (((rb_funcall_argc) <= (rb_funcall_nargs)) ? (rb_funcall_argc) : (rb_fatal("argc(%d) exceeds actual arguments(%d)", rb_funcall_argc, rb_funcall_nargs), 0))), rb_funcall_nargs ? rb_funcall_args : ((void *)0)); }); });
    }
}
static int
vm_ic_hit_p(IC ic, const VALUE *reg_ep)
{
    if (ic->ic_serial == (ruby_vm_global_constant_state)) {
        return (ic->ic_cref == ((void *)0) ||
                ic->ic_cref == vm_get_cref(reg_ep));
    }
    return 0;
}
static void
vm_ic_update(IC ic, VALUE val, const VALUE *reg_ep)
{
    ((void)0);
    ic->value = val;
    ic->ic_serial = (ruby_vm_global_constant_state) - ruby_vm_const_missing_count;
    ic->ic_cref = vm_get_const_key_cref(reg_ep);
    ruby_vm_const_missing_count = 0;
}
static VALUE
vm_once_dispatch(rb_execution_context_t *ec, ISEQ iseq, ISE is)
{
    rb_thread_t *th = rb_ec_thread_ptr(ec);
    rb_thread_t *const RUNNING_THREAD_ONCE_DONE = (rb_thread_t *)(0x1);
  again:
    if (is->once.running_thread == RUNNING_THREAD_ONCE_DONE) {
 return is->once.value;
    }
    else if (is->once.running_thread == ((void *)0)) {
 VALUE val;
 is->once.running_thread = th;
 val = rb_ensure(vm_once_exec, (VALUE)iseq, vm_once_clear, (VALUE)is);
 rb_obj_write((VALUE)(ec->cfp->iseq), (VALUE *)(&is->once.value), (VALUE)(val), "./vm_insnhelper.c", 4160);
 is->once.running_thread = RUNNING_THREAD_ONCE_DONE;
 return val;
    }
    else if (is->once.running_thread == th) {
 return vm_once_exec((VALUE)iseq);
    }
    else {
 rb_vm_check_ints(ec);
 rb_thread_schedule();
 goto again;
    }
}
static OFFSET
vm_case_dispatch(CDHASH hash, OFFSET else_offset, VALUE key)
{
    switch (__extension__({ VALUE arg_obj = (key); (((VALUE)(arg_obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(arg_obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) ? -1 : (int)(((struct RBasic*)(arg_obj))->flags & RUBY_T_MASK); })) {
      case -1:
      case RUBY_T_FLOAT:
      case RUBY_T_SYMBOL:
      case RUBY_T_BIGNUM:
      case RUBY_T_STRING:
 if (((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_EQQ)]&((1 << 6) | (1 << 0) | (1 << 1) | (1 << 9) | (1 << 10) | (1 << 11) | (1 << 2))) == 0), 1)))) {
     st_data_t val;
     if (( ((((int)(long)(key))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG) || (!(((VALUE)(key) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(key) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(key))->flags & RUBY_T_MASK) == RUBY_T_FLOAT))) {
  double kval = rb_float_value_inline(key);
  if (!__builtin_isinf_sign (kval) && modf(kval, &kval) == 0.0) {
      key = (((kval) < (0x7fffffffffffffffL>>1)+1) && ((kval) >= (((long)(-0x7fffffffffffffffL - 1L))>>(int)(1)))) ? (((VALUE)((long)kval))<<1 | RUBY_FIXNUM_FLAG) : rb_dbl2big(kval);
  }
     }
            if (rb_hash_stlike_lookup(hash, key, &val)) {
  return ((long)(((long)((VALUE)val))>>(int)(1)));
     }
     else {
  return else_offset;
     }
 }
    }
    return 0;
}
__attribute__ ((__noreturn__)) static void vm_stack_consistency_error(const rb_execution_context_t *ec, const rb_control_frame_t *, const VALUE *);
static void
vm_stack_consistency_error(const rb_execution_context_t *ec,
      const rb_control_frame_t *cfp,
      const VALUE *bp)
{
    const ptrdiff_t nsp = ((cfp->sp) - (ec)->vm_stack);
    const ptrdiff_t nbp = ((bp) - (ec)->vm_stack);
    static const char stack_consistency_error[] =
 "Stack consistency error (sp: %""t""d"", bp: %""t""d"")";
    rb_bug(stack_consistency_error, nsp, nbp);
}
ALWAYS_INLINE(static inline VALUE
vm_opt_plus(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_plus(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_PLUS)]&((1 << 0))) == 0), 1)))) {
 return rb_fix_plus_fix(recv, obj);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_PLUS)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) + rb_float_value_inline(obj));
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_PLUS)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) + rb_float_value_inline(obj));
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cString &&
      (((struct RBasic*)(obj))->klass) == rb_cString &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_PLUS)]&((1 << 2))) == 0), 1)))) {
        return rb_str_opt_plus(recv, obj);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cArray &&
             (((struct RBasic*)(obj))->klass) == rb_cArray &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_PLUS)]&((1 << 3))) == 0), 1)))) {
 return rb_ary_plus(recv, obj);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_minus(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_minus(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MINUS)]&((1 << 0))) == 0), 1)))) {
 return rb_fix_minus_fix(recv, obj);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MINUS)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) - rb_float_value_inline(obj));
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MINUS)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) - rb_float_value_inline(obj));
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_mult(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_mult(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MULT)]&((1 << 0))) == 0), 1)))) {
 return rb_fix_mul_fix(recv, obj);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MULT)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) * rb_float_value_inline(obj));
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MULT)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(rb_float_value_inline(recv) * rb_float_value_inline(obj));
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_div(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_div(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_DIV)]&((1 << 0))) == 0), 1)))) {
 return (((long)(((long)(obj))>>(int)(1))) == 0) ? ((VALUE)RUBY_Qundef) : rb_fix_div_fix(recv, obj);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_DIV)]&((1 << 1))) == 0), 1)))) {
        return rb_flo_div_flo(recv, obj);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_DIV)]&((1 << 1))) == 0), 1)))) {
        return rb_flo_div_flo(recv, obj);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_mod(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_mod(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MOD)]&((1 << 0))) == 0), 1)))) {
 return (((long)(((long)(obj))>>(int)(1))) == 0) ? ((VALUE)RUBY_Qundef) : rb_fix_mod_fix(recv, obj);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MOD)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(ruby_float_mod(rb_float_value_inline(recv), rb_float_value_inline(obj)));
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MOD)]&((1 << 1))) == 0), 1)))) {
 return rb_float_new_inline(ruby_float_mod(rb_float_value_inline(recv), rb_float_value_inline(obj)));
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_neq(CALL_DATA cd, CALL_DATA cd_eq, VALUE recv, VALUE obj));
static inline VALUE
vm_opt_neq(CALL_DATA cd, CALL_DATA cd_eq, VALUE recv, VALUE obj) {
    if (vm_method_cfunc_is(cd, recv, rb_obj_not_equal)) {
        VALUE val = opt_eq_func(recv, obj, cd_eq);
 if (val != ((VALUE)RUBY_Qundef)) {
     return !(((VALUE)(val) & (VALUE)~((VALUE)RUBY_Qnil)) == 0) ? ((VALUE)RUBY_Qfalse) : ((VALUE)RUBY_Qtrue);
 }
    }
    return ((VALUE)RUBY_Qundef);
}
ALWAYS_INLINE(static inline VALUE
vm_opt_lt(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_lt(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LT)]&((1 << 0))) == 0), 1)))) {
 return (long)recv < (long)obj ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LT)]&((1 << 1))) == 0), 1)))) {
 return rb_float_value_inline(recv) < rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LT)]&((1 << 1))) == 0), 1)))) {
 ;
 return rb_float_value_inline(recv) < rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_le(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_le(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LE)]&((1 << 0))) == 0), 1)))) {
 return (long)recv <= (long)obj ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LE)]&((1 << 1))) == 0), 1)))) {
 return rb_float_value_inline(recv) <= rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LE)]&((1 << 1))) == 0), 1)))) {
 ;
 return rb_float_value_inline(recv) <= rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_gt(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_gt(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GT)]&((1 << 0))) == 0), 1)))) {
 return (long)recv > (long)obj ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GT)]&((1 << 1))) == 0), 1)))) {
 return rb_float_value_inline(recv) > rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GT)]&((1 << 1))) == 0), 1)))) {
 ;
 return rb_float_value_inline(recv) > rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_ge(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_ge(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GE)]&((1 << 0))) == 0), 1)))) {
 return (long)recv >= (long)obj ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if (FLONUM_2_P(recv, obj) &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GE)]&((1 << 1))) == 0), 1)))) {
 return rb_float_value_inline(recv) >= rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) || (((VALUE)(obj) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(obj) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cFloat &&
      (((struct RBasic*)(obj))->klass) == rb_cFloat &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_GE)]&((1 << 1))) == 0), 1)))) {
 ;
 return rb_float_value_inline(recv) >= rb_float_value_inline(obj) ? ((VALUE)RUBY_Qtrue) : ((VALUE)RUBY_Qfalse);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_ltlt(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_ltlt(VALUE recv, VALUE obj) {
    if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cString &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LTLT)]&((1 << 2))) == 0), 1)))) {
 return rb_str_concat(recv, obj);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cArray &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_LTLT)]&((1 << 3))) == 0), 1)))) {
 return rb_ary_push(recv, obj);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_and(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_and(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
        ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_AND)]&((1 << 0))) == 0), 1)))) {
        return (recv & obj) | 1;
    }
    else {
        return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_or(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_or(VALUE recv, VALUE obj) {
    if (FIXNUM_2_P(recv, obj) &&
        ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_OR)]&((1 << 0))) == 0), 1)))) {
        return recv | obj;
    }
    else {
        return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_aref(VALUE recv, VALUE obj));
static inline VALUE
vm_opt_aref(VALUE recv, VALUE obj) {
    if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
        if (FIXNUM_2_P(recv, obj) &&
                ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_AREF)]&((1 << 0))) == 0), 1)))) {
            return rb_fix_aref(recv, obj);
        }
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cArray &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_AREF)]&((1 << 3))) == 0), 1)))) {
        if ((((int)(long)(obj))&RUBY_FIXNUM_FLAG)) {
            return rb_ary_entry_internal(recv, ((long)(((long)(obj))>>(int)(1))));
        }
        else {
            return rb_ary_aref1(recv, obj);
        }
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cHash &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_AREF)]&((1 << 4))) == 0), 1)))) {
 return rb_hash_aref(recv, obj);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_aset(VALUE recv, VALUE obj, VALUE set));
static inline VALUE
vm_opt_aset(VALUE recv, VALUE obj, VALUE set) {
    if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cArray &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_ASET)]&((1 << 3))) == 0), 1))) &&
      (((int)(long)(obj))&RUBY_FIXNUM_FLAG)) {
 rb_ary_store(recv, ((long)(((long)(obj))>>(int)(1))), set);
 return set;
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cHash &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_ASET)]&((1 << 4))) == 0), 1)))) {
 rb_hash_aset(recv, obj, set);
 return set;
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_aref_with(VALUE recv, VALUE key));
static inline VALUE
vm_opt_aref_with(VALUE recv, VALUE key) {
    if (!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cHash &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_AREF)]&((1 << 4))) == 0), 1))) &&
 rb_hash_compare_by_id_p(recv) == ((VALUE)RUBY_Qfalse)) {
 return rb_hash_aref(recv, key);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_aset_with(VALUE recv, VALUE key, VALUE val));
static inline VALUE
vm_opt_aset_with(VALUE recv, VALUE key, VALUE val) {
    if (!(((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (((struct RBasic*)(recv))->klass) == rb_cHash &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_ASET)]&((1 << 4))) == 0), 1))) &&
 rb_hash_compare_by_id_p(recv) == ((VALUE)RUBY_Qfalse)) {
 return rb_hash_aset(recv, key, val);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
static VALUE
vm_opt_length(VALUE recv, int bop)
{
    if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cString &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(bop)]&((1 << 2))) == 0), 1)))) {
 if (bop == BOP_EMPTY_P) {
     return rb_long2num_inline((!(((struct RBasic*)(recv))->flags & RSTRING_NOEMBED) ? (long)((((struct RBasic*)(recv))->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT)) : ((struct RString*)(recv))->as.heap.len));
 }
 else {
     return rb_str_length(recv);
 }
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cArray &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(bop)]&((1 << 3))) == 0), 1)))) {
 return rb_long2num_inline(rb_array_len(recv));
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cHash &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(bop)]&((1 << 4))) == 0), 1)))) {
 return (((VALUE)(((!(((struct RBasic*)((recv)))->flags&(RHASH_ST_TABLE_FLAG))) ? ((unsigned int)((((struct RBasic*)(recv))->flags & (VALUE)RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT)) : ((((struct RHash*)(recv))->as.st)->num_entries))))<<1 | RUBY_FIXNUM_FLAG);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
static VALUE
vm_opt_empty_p(VALUE recv)
{
    switch (vm_opt_length(recv, BOP_EMPTY_P)) {
      case ((VALUE)RUBY_Qundef): return ((VALUE)RUBY_Qundef);
      case (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG): return ((VALUE)RUBY_Qtrue);
      default: return ((VALUE)RUBY_Qfalse);
    }
}
VALUE rb_false(VALUE obj);
static VALUE
vm_opt_nil_p(CALL_DATA cd, VALUE recv)
{
    if (recv == ((VALUE)RUBY_Qnil) &&
        ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_NIL_P)]&((1 << 9))) == 0), 1)))) {
        return ((VALUE)RUBY_Qtrue);
    }
    else if (vm_method_cfunc_is(cd, recv, rb_false)) {
        return ((VALUE)RUBY_Qfalse);
    }
    else {
        return ((VALUE)RUBY_Qundef);
    }
}
static VALUE
fix_succ(VALUE x)
{
    switch (x) {
      case ~0UL:
        return (((VALUE)(0))<<1 | RUBY_FIXNUM_FLAG);
      case ((~0UL)>>(int)(1)):
        return rb_uint2big(1UL << (8 * 8 - 2));
      default:
        return x + 2;
    }
}
static VALUE
vm_opt_succ(VALUE recv)
{
    if ((((int)(long)(recv))&RUBY_FIXNUM_FLAG) &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_SUCC)]&((1 << 0))) == 0), 1)))) {
        return fix_succ(recv);
    }
    else if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
 return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cString &&
      ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_SUCC)]&((1 << 2))) == 0), 1)))) {
 return rb_str_succ(recv);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
ALWAYS_INLINE(static inline VALUE
vm_opt_not(CALL_DATA cd, VALUE recv));
static inline VALUE
vm_opt_not(CALL_DATA cd, VALUE recv) {
    if (vm_method_cfunc_is(cd, recv, rb_obj_not)) {
 return !(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0) ? ((VALUE)RUBY_Qfalse) : ((VALUE)RUBY_Qtrue);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
static VALUE
vm_opt_regexpmatch2(VALUE recv, VALUE obj)
{
    if ((((VALUE)(recv) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(recv) & (VALUE)~((VALUE)RUBY_Qnil)) == 0))) {
        return ((VALUE)RUBY_Qundef);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cString &&
        rb_class_of((VALUE)(obj)) == rb_cRegexp &&
 ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MATCH)]&((1 << 2))) == 0), 1)))) {
 return rb_reg_match(obj, recv);
    }
    else if ((((struct RBasic*)(recv))->klass) == rb_cRegexp &&
        ((__builtin_expect(!!((rb_current_vm()->redefined_flag[(BOP_MATCH)]&((1 << 8))) == 0), 1)))) {
 return rb_reg_match(recv, obj);
    }
    else {
 return ((VALUE)RUBY_Qundef);
    }
}
rb_event_flag_t rb_iseq_event_flags(const rb_iseq_t *iseq, size_t pos);
__attribute__ ((__noinline__)) static void vm_trace(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VALUE *pc);
static inline void
vm_trace_hook(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VALUE *pc,
              rb_event_flag_t pc_events, rb_event_flag_t target_event,
              rb_hook_list_t *global_hooks, rb_hook_list_t *local_hooks, VALUE val)
{
    rb_event_flag_t event = pc_events & target_event;
    VALUE self = (((((reg_cfp)))->self));
    ((void)0);
    if (event & global_hooks->events) {
        reg_cfp->pc++;
        vm_dtrace(event, ec);
        rb_exec_event_hook_orig(ec, global_hooks, event, self, 0, 0, 0 , val, 0);
        reg_cfp->pc--;
    }
    if (local_hooks != ((void *)0)) {
        if (event & local_hooks->events) {
            reg_cfp->pc++;
            rb_exec_event_hook_orig(ec, local_hooks, event, self, 0, 0, 0 , val, 0);
            reg_cfp->pc--;
        }
    }
}
static void
vm_trace(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VALUE *pc)
{
    rb_event_flag_t enabled_flags = ruby_vm_event_flags & (0x0001 | 0x0002 | 0x0004 | 0x0008 | 0x0010| 0x0100| 0x0200| 0x010000| 0x020000);
    if (enabled_flags == 0 && ruby_vm_event_local_num == 0) {
        return;
    }
    else {
 const rb_iseq_t *iseq = reg_cfp->iseq;
 size_t pos = pc - iseq->body->iseq_encoded;
        rb_event_flag_t pc_events = rb_iseq_event_flags(iseq, pos);
        rb_hook_list_t *local_hooks = iseq->aux.exec.local_hooks;
        rb_event_flag_t local_hook_events = local_hooks != ((void *)0) ? local_hooks->events : 0;
        enabled_flags |= local_hook_events;
        ((void)0);
        if ((pc_events & enabled_flags) == 0) {
     return;
        }
        else if (ec->trace_arg != ((void *)0)) {
            return;
        }
        else {
            rb_hook_list_t *global_hooks = rb_vm_global_hooks(ec);
            if (0) {
                fprintf(stderr, "vm_trace>>%4d (%4x) - %s:%d %s\n",
                        (int)pos,
                        (int)pc_events,
                        (!(((struct RBasic*)(rb_iseq_path(iseq)))->flags & RSTRING_NOEMBED) ? ((struct RString*)(rb_iseq_path(iseq)))->as.ary : ((struct RString*)(rb_iseq_path(iseq)))->as.heap.ptr),
                        (int)rb_iseq_line_no(iseq, pos),
                        (!(((struct RBasic*)(rb_iseq_label(iseq)))->flags & RSTRING_NOEMBED) ? ((struct RString*)(rb_iseq_label(iseq)))->as.ary : ((struct RString*)(rb_iseq_label(iseq)))->as.heap.ptr));
            }
            ((void)0);
            ((void)0);
            ((void)0);
            do { if ((pc_events & (0x0002 | 0x0008 | 0x0100)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (0x0002 | 0x0008 | 0x0100), global_hooks, local_hooks, (((VALUE)RUBY_Qundef))); } } while (0);
            do { if ((pc_events & (0x0001)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (0x0001), global_hooks, local_hooks, (((VALUE)RUBY_Qundef))); } } while (0);
            do { if ((pc_events & (0x010000)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (0x010000), global_hooks, local_hooks, (((VALUE)RUBY_Qundef))); } } while (0);
            do { if ((pc_events & (0x020000)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (0x020000), global_hooks, local_hooks, (((VALUE)RUBY_Qundef))); } } while (0);
            do { if ((pc_events & (0x0004 | 0x0010 | 0x0200)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (0x0004 | 0x0010 | 0x0200), global_hooks, local_hooks, ((*(((((reg_cfp)->sp)))-(0)-1)))); } } while (0);
        }
    }
}static inline 
void Init_vm_stack_canary(void) { }
static VALUE
builtin_invoker0(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr0_t)(rb_execution_context_t *ec, VALUE self);
    return (*(rb_invoke_funcptr0_t)funcptr)(ec, self);
}
static VALUE
builtin_invoker1(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr1_t)(rb_execution_context_t *ec, VALUE self, VALUE v1);
    return (*(rb_invoke_funcptr1_t)funcptr)(ec, self, argv[0]);
}
static VALUE
builtin_invoker2(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr2_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2);
    return (*(rb_invoke_funcptr2_t)funcptr)(ec, self, argv[0], argv[1]);
}
static VALUE
builtin_invoker3(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr3_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3);
    return (*(rb_invoke_funcptr3_t)funcptr)(ec, self, argv[0], argv[1], argv[2]);
}
static VALUE
builtin_invoker4(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr4_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4);
    return (*(rb_invoke_funcptr4_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3]);
}
static VALUE
builtin_invoker5(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr5_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5);
    return (*(rb_invoke_funcptr5_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4]);
}
static VALUE
builtin_invoker6(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr6_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6);
    return (*(rb_invoke_funcptr6_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5]);
}
static VALUE
builtin_invoker7(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr7_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7);
    return (*(rb_invoke_funcptr7_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]);
}
static VALUE
builtin_invoker8(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr8_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8);
    return (*(rb_invoke_funcptr8_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7]);
}
static VALUE
builtin_invoker9(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr9_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9);
    return (*(rb_invoke_funcptr9_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8]);
}
static VALUE
builtin_invoker10(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr10_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10);
    return (*(rb_invoke_funcptr10_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9]);
}
static VALUE
builtin_invoker11(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr11_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10, VALUE v11);
    return (*(rb_invoke_funcptr11_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10]);
}
static VALUE
builtin_invoker12(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr12_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10, VALUE v11, VALUE v12);
    return (*(rb_invoke_funcptr12_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11]);
}
static VALUE
builtin_invoker13(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr13_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10, VALUE v11, VALUE v12, VALUE v13);
    return (*(rb_invoke_funcptr13_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12]);
}
static VALUE
builtin_invoker14(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr14_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10, VALUE v11, VALUE v12, VALUE v13, VALUE v14);
    return (*(rb_invoke_funcptr14_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12], argv[13]);
}
static VALUE
builtin_invoker15(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr)
{
    typedef VALUE (*rb_invoke_funcptr15_t)(rb_execution_context_t *ec, VALUE self, VALUE v1, VALUE v2, VALUE v3, VALUE v4, VALUE v5, VALUE v6, VALUE v7, VALUE v8, VALUE v9, VALUE v10, VALUE v11, VALUE v12, VALUE v13, VALUE v14, VALUE v15);
    return (*(rb_invoke_funcptr15_t)funcptr)(ec, self, argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6], argv[7], argv[8], argv[9], argv[10], argv[11], argv[12], argv[13], argv[14]);
}
typedef VALUE (*builtin_invoker)(rb_execution_context_t *ec, VALUE self, const VALUE *argv, rb_insn_func_t funcptr);
static builtin_invoker
lookup_builtin_invoker(int argc)
{
    static const builtin_invoker invokers[] = {
        builtin_invoker0,
        builtin_invoker1,
        builtin_invoker2,
        builtin_invoker3,
        builtin_invoker4,
        builtin_invoker5,
        builtin_invoker6,
        builtin_invoker7,
        builtin_invoker8,
        builtin_invoker9,
        builtin_invoker10,
        builtin_invoker11,
        builtin_invoker12,
        builtin_invoker13,
        builtin_invoker14,
        builtin_invoker15,
    };
    return invokers[argc];
}
static inline VALUE
invoke_bf(rb_execution_context_t *ec, rb_control_frame_t *cfp, const struct rb_builtin_function* bf, const VALUE *argv)
{
    VALUE self = cfp->self;
    return (*lookup_builtin_invoker(bf->argc))(ec, self, argv, (rb_insn_func_t)bf->func_ptr);
}
static VALUE
vm_invoke_builtin(rb_execution_context_t *ec, rb_control_frame_t *cfp, const struct rb_builtin_function* bf, const VALUE *argv)
{
    return invoke_bf(ec, cfp, bf, argv);
}
static VALUE
vm_invoke_builtin_delegate(rb_execution_context_t *ec, rb_control_frame_t *cfp, const struct rb_builtin_function *bf, unsigned int start_index)
{
    if (0) {
        fprintf(stderr, "vm_invoke_builtin_delegate: passing -> ");
        for (int i=0; i<bf->argc; i++) {
            fprintf(stderr, ":%s ", rb_id2name(cfp->iseq->body->local_table[i+start_index]));
        }
        fprintf(stderr, "\n");
        fprintf(stderr, "%s %s(%d):%p\n", __func__, bf->name, bf->argc, bf->func_ptr);
    }
    if (bf->argc == 0) {
        return invoke_bf(ec, cfp, bf, ((void *)0));
    }
    else {
        const VALUE *argv = cfp->ep - cfp->iseq->body->local_table_size - ( 3) + 1 + start_index;
        return invoke_bf(ec, cfp, bf, argv);
    }
}static inline 
VALUE
rb_vm_lvar_exposed(rb_execution_context_t *ec, int index)
{
    const rb_control_frame_t *cfp = ec->cfp;
    return cfp->ep[index];
}
struct local_var_list {
    VALUE tbl;
};
static inline VALUE method_missing(VALUE obj, ID id, int argc, const VALUE *argv, enum method_missing_reason call_status, int kw_splat);
static inline VALUE vm_yield_with_cref(rb_execution_context_t *ec, int argc, const VALUE *argv, int kw_splat, const rb_cref_t *cref, int is_lambda);
static inline VALUE vm_yield(rb_execution_context_t *ec, int argc, const VALUE *argv, int kw_splat);
static inline VALUE vm_yield_with_block(rb_execution_context_t *ec, int argc, const VALUE *argv, VALUE block_handler, int kw_splat);
static inline VALUE vm_yield_force_blockarg(rb_execution_context_t *ec, VALUE args);
VALUE rb_vm_exec(rb_execution_context_t *ec, int mjit_enable_p);
static void vm_set_eval_stack(rb_execution_context_t * th, const rb_iseq_t *iseq, const rb_cref_t *cref, const struct rb_block *base_block);
static int vm_collect_local_variables_in_heap(const VALUE *dfp, const struct local_var_list *vars);
static VALUE rb_eUncaughtThrow;
static ID id_result, id_tag, id_value;
typedef enum call_type {
    CALL_PUBLIC,
    CALL_FCALL,
    CALL_VCALL,
    CALL_PUBLIC_KW,
    CALL_FCALL_KW,
    CALL_TYPE_MAX
} call_type;
static VALUE send_internal(int argc, const VALUE *argv, VALUE recv, call_type scope);
static VALUE vm_call0_body(rb_execution_context_t* ec, struct rb_calling_info *calling, struct rb_call_data *cd, const VALUE *argv);
static inline void
stack_check(rb_execution_context_t *ec)
{
    if (!(((ec)->raised_flag & (RAISED_STACKOVERFLOW)) != 0) &&
 rb_ec_stack_check(ec)) {
 ((ec)->raised_flag |= (RAISED_STACKOVERFLOW));
 rb_ec_stack_overflow(ec, 0);
    }
}
static void
raise_method_missing(rb_execution_context_t *ec, int argc, const VALUE *argv, VALUE obj,
       enum method_missing_reason last_call_status)
{
    VALUE exc = rb_eNoMethodError;
    VALUE format = 0;
    if ((__builtin_expect(!!(argc == 0), 0))) {
 rb_raise(rb_eArgError, "no method name given");
    }
    else if ((__builtin_expect(!!(!((((VALUE)(argv[0])&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)||(!(((VALUE)(argv[0]) & RUBY_IMMEDIATE_MASK) || !!(((VALUE)(argv[0]) & (VALUE)~((VALUE)RUBY_Qnil)) == 0)) && (int)(((struct RBasic*)(argv[0]))->flags & RUBY_T_MASK) == (RUBY_T_SYMBOL)))), 0))) {
 const VALUE e = rb_eArgError;
 rb_raise(e, "method name must be a Symbol but %""l""i" "\v"" is given",
   rb_obj_class(argv[0]));
    }
    stack_check(ec);
    if (last_call_status & MISSING_PRIVATE) {
 format = rb_fstring_new(("private method `%s' called for %s%s%s"), (sizeof("private method `%s' called for %s%s%s" "") - 1));
    }
    else if (last_call_status & MISSING_PROTECTED) {
 format = rb_fstring_new(("protected method `%s' called for %s%s%s"), (sizeof("protected method `%s' called for %s%s%s" "") - 1));
    }
    else if (last_call_status & MISSING_VCALL) {
 format = rb_fstring_new(("undefined local variable or method `%s' for %s%s%s"), (sizeof("undefined local variable or method `%s' for %s%s%s" "") - 1));
 exc = rb_eNameError;
    }
    else if (last_call_status & MISSING_SUPER) {
 format = rb_fstring_new(("super: no superclass method `%s' for %s%s%s"), (sizeof("super: no superclass method `%s' for %s%s%s" "") - 1));
    }
    {
 exc = rb_make_no_method_exception(exc, format, obj, argc, argv,
       last_call_status & (MISSING_FCALL|MISSING_VCALL));
 if (!(last_call_status & MISSING_MISSING)) {
     rb_vm_pop_cfunc_frame();
 }
 rb_exc_raise(exc);
    }
}
static void
vm_raise_method_missing(rb_execution_context_t *ec, int argc, const VALUE *argv,
   VALUE obj, int call_status)
{
    vm_passed_block_handler_set(ec, 0);
    raise_method_missing(ec, argc, argv, obj, call_status | MISSING_MISSING);
}
static inline VALUE
method_missing(VALUE obj, ID id, int argc, const VALUE *argv, enum method_missing_reason call_status, int kw_splat)
{
    VALUE *nargv, result, work, klass;
    rb_execution_context_t *ec = rb_current_execution_context();
    VALUE block_handler = vm_passed_block_handler(ec);
    const rb_callable_method_entry_t *me;
    ec->method_missing_reason = call_status;
    if (id == idMethodMissing) {
      missing:
 raise_method_missing(ec, argc, argv, obj, call_status | MISSING_MISSING);
    }
    nargv = ((VALUE*)(((size_t)(argc + 1) < 1024 / sizeof(VALUE)) ? ((work) = 0, __builtin_alloca ((size_t)(argc + 1) * sizeof(VALUE))) : rb_alloc_tmp_buffer2(&(work), (long)(argc + 1), sizeof(VALUE))));
    nargv[0] = (rb_id2sym(id));
    if (!argv) {
        static const VALUE buf = ((VALUE)RUBY_Qfalse);
        ((void)0);
        argv = &buf;
    }
    ruby_nonempty_memcpy((nargv + 1), (argv), sizeof(VALUE)*(size_t)(argc));
    ++argc;
    argv = nargv;
    klass = rb_class_of((VALUE)(obj));
    if (!klass) goto missing;
    me = rb_callable_method_entry(klass, idMethodMissing);
    if (!me || (int) (((me)->flags & (((VALUE)RUBY_FL_USER6) )) >> ((((VALUE)RUBY_FL_USHIFT) + 4)+2))) goto missing;
    vm_passed_block_handler_set(ec, block_handler);
    result = rb_vm_call_kw(ec, obj, idMethodMissing, argc, argv, me, kw_splat);
    if (work) rb_free_tmp_buffer(&(work));
    return result;
}
static rb_control_frame_t *
vm_get_ruby_level_caller_cfp(const rb_execution_context_t *ec, const rb_control_frame_t *cfp)
{
    if (VM_FRAME_RUBYFRAME_P(cfp)) {
 return (rb_control_frame_t *)cfp;
    }
    cfp = ((cfp)+1);
    while (!RUBY_VM_CONTROL_FRAME_STACK_OVERFLOW_P(ec, cfp)) {
 if (VM_FRAME_RUBYFRAME_P(cfp)) {
     return (rb_control_frame_t *)cfp;
 }
 if (VM_ENV_FLAGS(cfp->ep, VM_FRAME_FLAG_PASSED) == 0) {
     break;
 }
 cfp = ((cfp)+1);
    }
    return 0;
}
static void
rb_vm_pop_cfunc_frame(void)
{
    rb_execution_context_t *ec = rb_current_execution_context();
    rb_control_frame_t *cfp = ec->cfp;
    const rb_callable_method_entry_t *me = rb_vm_frame_method_entry(cfp);
    do { const rb_event_flag_t flag_arg_ = (0x0040); rb_hook_list_t *hooks_arg_ = (rb_vm_global_hooks(ec)); if ((__builtin_expect(!!((hooks_arg_)->events & (flag_arg_)), 0))) { rb_exec_event_hook_orig(ec, hooks_arg_, flag_arg_, cfp->self, me->def->original_id, me->called_id, me->owner, ((VALUE)RUBY_Qnil), 0); } } while (0);
    do { if ((__builtin_expect(!!(0), 0))) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, me->owner, me->def->original_id, &args)) { do {} while (0); } } } while (0);
    vm_pop_frame(ec, cfp, cfp->ep);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_0locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 0);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_1locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 1);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_2locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 2);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_3locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 3);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_4locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 4);
}
static VALUE
vm_call_iseq_setup_normal_0start_0params_5locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 0, 5);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_0locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 0);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_1locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 1);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_2locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 2);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_3locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 3);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_4locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 4);
}
static VALUE
vm_call_iseq_setup_normal_0start_1params_5locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 1, 5);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_0locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 0);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_1locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 1);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_2locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 2);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_3locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 3);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_4locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 4);
}
static VALUE
vm_call_iseq_setup_normal_0start_2params_5locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 2, 5);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_0locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 0);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_1locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 1);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_2locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 2);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_3locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 3);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_4locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 4);
}
static VALUE
vm_call_iseq_setup_normal_0start_3params_5locals(rb_execution_context_t *ec, rb_control_frame_t *cfp, struct rb_calling_info *calling, struct rb_call_data *cd)
{
    ((void)0);
    return vm_call_iseq_setup_normal(ec, cfp, calling, cd->cc.me, 0, 3, 5);
}
static const vm_call_handler vm_call_iseq_handlers[][6] = {
{vm_call_iseq_setup_normal_0start_0params_0locals,
 vm_call_iseq_setup_normal_0start_0params_1locals,
 vm_call_iseq_setup_normal_0start_0params_2locals,
 vm_call_iseq_setup_normal_0start_0params_3locals,
 vm_call_iseq_setup_normal_0start_0params_4locals,
 vm_call_iseq_setup_normal_0start_0params_5locals},
{vm_call_iseq_setup_normal_0start_1params_0locals,
 vm_call_iseq_setup_normal_0start_1params_1locals,
 vm_call_iseq_setup_normal_0start_1params_2locals,
 vm_call_iseq_setup_normal_0start_1params_3locals,
 vm_call_iseq_setup_normal_0start_1params_4locals,
 vm_call_iseq_setup_normal_0start_1params_5locals},
{vm_call_iseq_setup_normal_0start_2params_0locals,
 vm_call_iseq_setup_normal_0start_2params_1locals,
 vm_call_iseq_setup_normal_0start_2params_2locals,
 vm_call_iseq_setup_normal_0start_2params_3locals,
 vm_call_iseq_setup_normal_0start_2params_4locals,
 vm_call_iseq_setup_normal_0start_2params_5locals},
{vm_call_iseq_setup_normal_0start_3params_0locals,
 vm_call_iseq_setup_normal_0start_3params_1locals,
 vm_call_iseq_setup_normal_0start_3params_2locals,
 vm_call_iseq_setup_normal_0start_3params_3locals,
 vm_call_iseq_setup_normal_0start_3params_4locals,
 vm_call_iseq_setup_normal_0start_3params_5locals}
};
static inline vm_call_handler
vm_call_iseq_setup_func(const struct rb_call_info *ci, const int param_size, const int local_size)
{
    if ((__builtin_expect(!!(ci->flag & (0x01 << VM_CALL_TAILCALL_bit)), 0))) {
 return &vm_call_iseq_setup_tailcall_0start;
    }
    else if (0) {
        return &vm_call_iseq_setup_normal_0start;
    }
    else {
 if (param_size <= 3 &&
     local_size <= 5) {
     ((void)0);
     return vm_call_iseq_handlers[param_size][local_size];
 }
 return &vm_call_iseq_setup_normal_0start;
    }
}
#define MJIT_HEADER 1
#define _FORTIFY_SOURCE 2
#define RUBY_EXPORT 1
#define CANONICALIZATION_FOR_MATHN 1
#define _FORTIFY_SOURCE 2
#define _GLIBCXX_ASSERTIONS 1
#define _STDC_PREDEF_H 1
#define __STDC_IEC_559__ 1
#define __STDC_IEC_559_COMPLEX__ 1
#define __STDC_ISO_10646__ 201706L
#define RUBY_INTERNAL_H 1
#define RUBY_H 1
#define HAVE_RUBY_DEFINES_H 1
#define HAVE_RUBY_ENCODING_H 1
#define HAVE_RUBY_INTERN_H 1
#define HAVE_RUBY_IO_H 1
#define HAVE_RUBY_MISSING_H 1
#define HAVE_RUBY_ONIGURUMA_H 1
#define HAVE_RUBY_RE_H 1
#define HAVE_RUBY_REGEX_H 1
#define HAVE_RUBY_RUBY_H 1
#define HAVE_RUBY_ST_H 1
#define HAVE_RUBY_THREAD_H 1
#define HAVE_RUBY_UTIL_H 1
#define HAVE_RUBY_VERSION_H 1
#define HAVE_RUBY_VM_H 1
#define RUBY_RUBY_H 1
#define INCLUDE_RUBY_CONFIG_H 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define RUBY_SYMBOL_EXPORT_BEGIN _Pragma("GCC visibility push(default)")
#define RUBY_SYMBOL_EXPORT_END _Pragma("GCC visibility pop")
#define HAVE_STMT_AND_DECL_IN_EXPR 1
#define HAVE_LIBCRYPT 1
#define HAVE_LIBDL 1
#define HAVE_DIRENT_H 1
#define HAVE__BOOL 1
#define HAVE_STDBOOL_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_A_OUT_H 1
#define HAVE_GRP_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FLOAT_H 1
#define HAVE_LANGINFO_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_PWD_H 1
#define HAVE_SANITIZER_ASAN_INTERFACE_H 1
#define HAVE_STDALIGN_H 1
#define HAVE_SYS_EVENTFD_H 1
#define HAVE_SYS_FCNTL_H 1
#define HAVE_SYS_FILE_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_PRCTL_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SENDFILE_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_SYSCALL_H 1
#define HAVE_SYS_SYSMACROS_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYSCALL_H 1
#define HAVE_TIME_H 1
#define HAVE_UCONTEXT_H 1
#define HAVE_UTIME_H 1
#define HAVE_GMP_H 1
#define HAVE_LIBGMP 1
#define HAVE_TYPEOF 1
#define restrict __restrict
#define HAVE_LONG_LONG 1
#define HAVE_OFF_T 1
#define SIZEOF_INT 4
#define SIZEOF_SHORT 2
#define SIZEOF_LONG 8
#define SIZEOF_LONG_LONG 8
#define SIZEOF___INT64 0
#define SIZEOF___INT128 16
#define SIZEOF_OFF_T 8
#define SIZEOF_VOIDP 8
#define SIZEOF_FLOAT 4
#define SIZEOF_DOUBLE 8
#define SIZEOF_TIME_T 8
#define SIZEOF_CLOCK_T 8
#define PACKED_STRUCT(x) x __attribute__((packed))
#define USE_UNALIGNED_MEMBER_ACCESS 1
#define PRI_LL_PREFIX "ll"
#define HAVE_PID_T 1
#define rb_pid_t pid_t
#define SIGNEDNESS_OF_PID_T -1
#define PIDT2NUM(v) INT2NUM(v)
#define NUM2PIDT(v) NUM2INT(v)
#define PRI_PIDT_PREFIX PRI_INT_PREFIX
#define HAVE_UID_T 1
#define rb_uid_t uid_t
#define SIGNEDNESS_OF_UID_T +1
#define UIDT2NUM(v) UINT2NUM(v)
#define NUM2UIDT(v) NUM2UINT(v)
#define PRI_UIDT_PREFIX PRI_INT_PREFIX
#define HAVE_GID_T 1
#define rb_gid_t gid_t
#define SIGNEDNESS_OF_GID_T +1
#define GIDT2NUM(v) UINT2NUM(v)
#define NUM2GIDT(v) NUM2UINT(v)
#define PRI_GIDT_PREFIX PRI_INT_PREFIX
#define HAVE_TIME_T 1
#define rb_time_t time_t
#define SIGNEDNESS_OF_TIME_T -1
#define TIMET2NUM(v) LONG2NUM(v)
#define NUM2TIMET(v) NUM2LONG(v)
#define PRI_TIMET_PREFIX PRI_LONG_PREFIX
#define HAVE_DEV_T 1
#define rb_dev_t dev_t
#define SIGNEDNESS_OF_DEV_T +1
#define DEVT2NUM(v) ULONG2NUM(v)
#define NUM2DEVT(v) NUM2ULONG(v)
#define PRI_DEVT_PREFIX PRI_LONG_PREFIX
#define HAVE_MODE_T 1
#define rb_mode_t mode_t
#define SIGNEDNESS_OF_MODE_T +1
#define MODET2NUM(v) UINT2NUM(v)
#define NUM2MODET(v) NUM2UINT(v)
#define PRI_MODET_PREFIX PRI_INT_PREFIX
#define HAVE_RLIM_T 1
#define rb_rlim_t rlim_t
#define SIGNEDNESS_OF_RLIM_T +1
#define RLIM2NUM(v) ULONG2NUM(v)
#define NUM2RLIM(v) NUM2ULONG(v)
#define PRI_RLIM_PREFIX PRI_LONG_PREFIX
#define HAVE_OFF_T 1
#define rb_off_t off_t
#define SIGNEDNESS_OF_OFF_T -1
#define OFFT2NUM(v) LONG2NUM(v)
#define NUM2OFFT(v) NUM2LONG(v)
#define PRI_OFFT_PREFIX PRI_LONG_PREFIX
#define HAVE_CLOCKID_T 1
#define rb_clockid_t clockid_t
#define SIGNEDNESS_OF_CLOCKID_T -1
#define CLOCKID2NUM(v) INT2NUM(v)
#define NUM2CLOCKID(v) NUM2INT(v)
#define PRI_CLOCKID_PREFIX PRI_INT_PREFIX
#define HAVE_PROTOTYPES 1
#define TOKEN_PASTE(x,y) x ##y
#define STRINGIZE(expr) STRINGIZE0(expr)
#define HAVE_STDARG_PROTOTYPES 1
#define HAVE_VA_ARGS_MACRO 1
#define RUBY_ALIGNAS(x) __attribute__((__aligned__(x)))
#define RUBY_ALIGNOF alignof
#define CONSTFUNC(x) __attribute__ ((__const__)) x
#define PUREFUNC(x) __attribute__ ((__pure__)) x
#define NORETURN(x) __attribute__ ((__noreturn__)) x
#define DEPRECATED(x) __attribute__ ((__deprecated__)) x
#define DEPRECATED_BY(n,x) __attribute__ ((__deprecated__("by "#n))) x
#define DEPRECATED_TYPE(mesg,x) __attribute__ ((__deprecated__ mesg)) x
#define NOINLINE(x) __attribute__ ((__noinline__)) x
#define NO_SANITIZE(san,x) __attribute__ ((__no_sanitize__(san))) x
#define NO_SANITIZE_ADDRESS(x) __attribute__ ((__no_sanitize_address__)) x
#define NO_ADDRESS_SAFETY_ANALYSIS(x) __attribute__ ((__no_address_safety_analysis__)) x
#define WARN_UNUSED_RESULT(x) __attribute__ ((__warn_unused_result__)) x
#define MAYBE_UNUSED(x) __attribute__ ((__unused__)) x
#define ERRORFUNC(mesg,x) __attribute__ ((__error__ mesg)) x
#define WARNINGFUNC(mesg,x) __attribute__ ((__warning__ mesg)) x
#define WEAK(x) __attribute__ ((__weak__)) x
#define HAVE_FUNC_WEAK 1
#define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
#define FUNC_UNOPTIMIZED(x) __attribute__ ((__optimize__("O0"))) x
#define FUNC_MINIMIZED(x) __attribute__ ((__optimize__("-Os","-fomit-frame-pointer"))) x
#define HAVE_ATTRIBUTE_FUNCTION_ALIAS 1
#define RUBY_ALIAS_FUNCTION_TYPE(type,prot,name,args) type prot __attribute__((alias(#name)));
#define RUBY_ALIAS_FUNCTION_VOID(prot,name,args) RUBY_ALIAS_FUNCTION_TYPE(void, prot, name, args)
#define HAVE_GCC_ATOMIC_BUILTINS 1
#define HAVE_GCC_SYNC_BUILTINS 1
#define UNREACHABLE __builtin_unreachable()
#define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern
#define RUBY_FUNC_NONNULL(n,x) __attribute__ ((__nonnull__(n))) x
#define RUBY_FUNCTION_NAME_STRING __func__
#define ENUM_OVER_INT 1
#define HAVE_DECL_SYS_NERR 1
#define HAVE_DECL_GETENV 1
#define SIZEOF_SIZE_T 8
#define SIZEOF_PTRDIFF_T 8
#define PRI_SIZE_PREFIX "z"
#define PRI_PTRDIFF_PREFIX "t"
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T
#define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T
#define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG
#define HAVE_STRUCT_STAT_ST_ATIM 1
#define HAVE_STRUCT_STAT_ST_MTIM 1
#define HAVE_STRUCT_STAT_ST_CTIM 1
#define HAVE_STRUCT_STATX_STX_BTIME 1
#define HAVE_STRUCT_TIMEVAL 1
#define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T
#define HAVE_STRUCT_TIMESPEC 1
#define HAVE_STRUCT_TIMEZONE 1
#define HAVE_RB_FD_INIT 1
#define HAVE_INT8_T 1
#define SIZEOF_INT8_T 1
#define HAVE_UINT8_T 1
#define SIZEOF_UINT8_T 1
#define HAVE_INT16_T 1
#define SIZEOF_INT16_T 2
#define HAVE_UINT16_T 1
#define SIZEOF_UINT16_T 2
#define HAVE_INT32_T 1
#define SIZEOF_INT32_T 4
#define HAVE_UINT32_T 1
#define SIZEOF_UINT32_T 4
#define HAVE_INT64_T 1
#define SIZEOF_INT64_T 8
#define HAVE_UINT64_T 1
#define SIZEOF_UINT64_T 8
#define HAVE_INT128_T 1
#define int128_t __int128
#define SIZEOF_INT128_T SIZEOF___INT128
#define HAVE_UINT128_T 1
#define uint128_t unsigned __int128
#define SIZEOF_UINT128_T SIZEOF___INT128
#define HAVE_INTPTR_T 1
#define SIZEOF_INTPTR_T 8
#define HAVE_UINTPTR_T 1
#define SIZEOF_UINTPTR_T 8
#define HAVE_SSIZE_T 1
#define SIZEOF_SSIZE_T 8
#define STACK_END_ADDRESS __libc_stack_end
#define GETGROUPS_T gid_t
#define RETSIGTYPE void
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_ACOSH 1
#define HAVE_CBRT 1
#define HAVE_CRYPT 1
#define HAVE_DUP2 1
#define HAVE_ERF 1
#define HAVE_EXPLICIT_BZERO 1
#define HAVE_FFS 1
#define HAVE_FLOCK 1
#define HAVE_HYPOT 1
#define HAVE_LGAMMA_R 1
#define HAVE_MEMMOVE 1
#define HAVE_NAN 1
#define HAVE_NEXTAFTER 1
#define HAVE_STRCHR 1
#define HAVE_STRERROR 1
#define HAVE_STRSTR 1
#define HAVE_TGAMMA 1
#define HAVE_FINITE 1
#define HAVE_ISINF 1
#define HAVE_ISNAN 1
#define SPT_TYPE SPT_REUSEARGV
#define HAVE_SIGNBIT 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define HAVE__LONGJMP 1
#define HAVE_ATAN2L 1
#define HAVE_ATAN2F 1
#define HAVE_CHROOT 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_COPY_FILE_RANGE 1
#define HAVE_COSH 1
#define HAVE_CRYPT_R 1
#define HAVE_DIRFD 1
#define HAVE_DL_ITERATE_PHDR 1
#define HAVE_DLOPEN 1
#define HAVE_DLADDR 1
#define HAVE_DUP 1
#define HAVE_DUP3 1
#define HAVE_EACCESS 1
#define HAVE_ENDGRENT 1
#define HAVE_EVENTFD 1
#define HAVE_FCHMOD 1
#define HAVE_FCHOWN 1
#define HAVE_FCNTL 1
#define HAVE_FDATASYNC 1
#define HAVE_FDOPENDIR 1
#define HAVE_FMOD 1
#define HAVE_FSTATAT 1
#define HAVE_FSYNC 1
#define HAVE_FTRUNCATE 1
#define HAVE_FTRUNCATE64 1
#define HAVE_GETCWD 1
#define HAVE_GETGRNAM 1
#define HAVE_GETGRNAM_R 1
#define HAVE_GETGROUPS 1
#define HAVE_GETLOGIN 1
#define HAVE_GETLOGIN_R 1
#define HAVE_GETPGID 1
#define HAVE_GETPGRP 1
#define HAVE_GETPRIORITY 1
#define HAVE_GETPWNAM 1
#define HAVE_GETPWNAM_R 1
#define HAVE_GETPWUID 1
#define HAVE_GETPWUID_R 1
#define HAVE_GETRANDOM 1
#define HAVE_GETRESGID 1
#define HAVE_GETRESUID 1
#define HAVE_GETRLIMIT 1
#define HAVE_GETSID 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GMTIME_R 1
#define HAVE_GRANTPT 1
#define HAVE_INITGROUPS 1
#define HAVE_IOCTL 1
#define HAVE_KILLPG 1
#define HAVE_LCHOWN 1
#define HAVE_LINK 1
#define HAVE_LLABS 1
#define HAVE_LOCKF 1
#define HAVE_LOG2 1
#define HAVE_LSTAT 1
#define HAVE_LUTIMES 1
#define HAVE_MALLOC_USABLE_SIZE 1
#define HAVE_MBLEN 1
#define HAVE_MEMALIGN 1
#define HAVE_WRITEV 1
#define HAVE_MEMRCHR 1
#define HAVE_MEMMEM 1
#define HAVE_MKFIFO 1
#define HAVE_MKNOD 1
#define HAVE_MKTIME 1
#define HAVE_OPENAT 1
#define HAVE_PIPE2 1
#define HAVE_POLL 1
#define HAVE_POSIX_FADVISE 1
#define HAVE_POSIX_MEMALIGN 1
#define HAVE_PPOLL 1
#define HAVE_PREAD 1
#define HAVE_PWRITE 1
#define HAVE_QSORT_R 1
#define HAVE_READLINK 1
#define HAVE_REALPATH 1
#define HAVE_ROUND 1
#define HAVE_SCHED_GETAFFINITY 1
#define HAVE_SEEKDIR 1
#define HAVE_SENDFILE 1
#define HAVE_SETEGID 1
#define HAVE_SETENV 1
#define HAVE_SETEUID 1
#define HAVE_SETGID 1
#define HAVE_SETGROUPS 1
#define HAVE_SETPGID 1
#define HAVE_SETPGRP 1
#define HAVE_SETREGID 1
#define HAVE_SETRESGID 1
#define HAVE_SETRESUID 1
#define HAVE_SETREUID 1
#define HAVE_SETRLIMIT 1
#define HAVE_SETSID 1
#define HAVE_SETUID 1
#define HAVE_SHUTDOWN 1
#define HAVE_SIGACTION 1
#define HAVE_SIGALTSTACK 1
#define HAVE_SIGPROCMASK 1
#define HAVE_SINH 1
#define HAVE_SYMLINK 1
#define HAVE_SYSCALL 1
#define HAVE_SYSCONF 1
#define HAVE_TANH 1
#define HAVE_TELLDIR 1
#define HAVE_TIMEGM 1
#define HAVE_TIMES 1
#define HAVE_TRUNCATE 1
#define HAVE_TRUNCATE64 1
#define HAVE_UNSETENV 1
#define HAVE_UTIMENSAT 1
#define HAVE_UTIMES 1
#define HAVE_WAIT4 1
#define HAVE_WAITPID 1
#define HAVE_STATX 1
#define HAVE_CRYPT_H 1
#define HAVE_STRUCT_CRYPT_DATA_INITIALIZED 1
#define HAVE_BUILTIN___BUILTIN_ALLOCA_WITH_ALIGN 1
#define HAVE_BUILTIN___BUILTIN_ASSUME_ALIGNED 1
#define HAVE_BUILTIN___BUILTIN_BSWAP16 1
#define HAVE_BUILTIN___BUILTIN_BSWAP32 1
#define HAVE_BUILTIN___BUILTIN_BSWAP64 1
#define HAVE_BUILTIN___BUILTIN_POPCOUNT 1
#define HAVE_BUILTIN___BUILTIN_POPCOUNTLL 1
#define HAVE_BUILTIN___BUILTIN_CLZ 1
#define HAVE_BUILTIN___BUILTIN_CLZL 1
#define HAVE_BUILTIN___BUILTIN_CLZLL 1
#define HAVE_BUILTIN___BUILTIN_CTZ 1
#define HAVE_BUILTIN___BUILTIN_CTZLL 1
#define HAVE_BUILTIN___BUILTIN_ADD_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_SUB_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW_P 1
#define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1
#define HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR 1
#define HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P 1
#define HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P 1
#define HAVE_BUILTIN___BUILTIN_TRAP 1
#define HAVE_GNU_QSORT_R 1
#define ATAN2_INF_C99 1
#define HAVE_CLOCK_GETRES 1
#define HAVE_LIBRT 1
#define HAVE_LIBRT 1
#define HAVE_TIMER_CREATE 1
#define HAVE_TIMER_SETTIME 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#define HAVE_DAYLIGHT 1
#define NEGATIVE_TIME_T 1
#define POSIX_SIGNAL 1
#define HAVE_SIG_T 1
#define RSHIFT(x,y) ((x)>>(int)(y))
#define HAVE__SC_CLK_TCK 1
#define STACK_GROW_DIRECTION -1
#define COROUTINE_H "coroutine/amd64/Context.h"
#define _REENTRANT 1
#define _THREAD_SAFE 1
#define HAVE_LIBPTHREAD 1
#define HAVE_SCHED_YIELD 1
#define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1
#define HAVE_PTHREAD_ATTR_GETSTACK 1
#define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1
#define HAVE_PTHREAD_CONDATTR_SETCLOCK 1
#define HAVE_PTHREAD_SIGMASK 1
#define HAVE_PTHREAD_SETNAME_NP 1
#define HAVE_PTHREAD_GETATTR_NP 1
#define SET_CURRENT_THREAD_NAME(name) pthread_setname_np(pthread_self(), name)
#define SET_ANOTHER_THREAD_NAME(thid,name) pthread_setname_np(thid, name)
#define DEFINE_MCONTEXT_PTR(mc,uc) mcontext_t *mc = &(uc)->uc_mcontext
#define HAVE_GETCONTEXT 1
#define HAVE_SETCONTEXT 1
#define USE_ELF 1
#define HAVE_ELF_H 1
#define HAVE_BACKTRACE 1
#define DLEXT_MAXLEN 3
#define DLEXT ".so"
#define ENABLE_MULTIARCH 1
#define LIBDIR_BASENAME "lib64"
#define HAVE__SETJMP 1
#define RUBY_SETJMP(env) _setjmp((env))
#define RUBY_LONGJMP(env,val) _longjmp((env),val)
#define RUBY_JMP_BUF jmp_buf
#define USE_MJIT 1
#define HAVE_PTHREAD_H 1
#define RUBY_LIB_VERSION_BLANK 1
#define RUBY_PLATFORM "x86_64-linux"
#define RUBY_DEFINES_H 1
#define HAVE_ATTRIBUTE_ERRORFUNC 1
#define HAVE_ATTRIBUTE_WARNINGFUNC 1
#define GCC_VERSION_SINCE(major,minor,patchlevel) ((__GNUC__ > (major)) || ((__GNUC__ == (major) && ((__GNUC_MINOR__ > (minor)) || (__GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ >= (patchlevel))))))
#define GCC_VERSION_BEFORE(major,minor,patchlevel) ((__GNUC__ < (major)) || ((__GNUC__ == (major) && ((__GNUC_MINOR__ < (minor)) || (__GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ <= (patchlevel))))))
#define RB_LIKELY(x) (__builtin_expect(!!(x), 1))
#define RB_UNLIKELY(x) (__builtin_expect(!!(x), 0))
#define COLDFUNC __attribute__((cold))
#define PRINTF_ARGS(decl,string_index,first_to_check) decl __attribute__((format(printf, string_index, first_to_check)))
#define RB_GNUC_EXTENSION __extension__
#define RB_GNUC_EXTENSION_BLOCK(x) __extension__ ({ x; })
#define _STDIO_H 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#define _FEATURES_H 1
#undef __USE_ISOC11
#undef __USE_ISOC99
#undef __USE_ISOC95
#undef __USE_ISOCXX11
#undef __USE_POSIX
#undef __USE_POSIX2
#undef __USE_POSIX199309
#undef __USE_POSIX199506
#undef __USE_XOPEN
#undef __USE_XOPEN_EXTENDED
#undef __USE_UNIX98
#undef __USE_XOPEN2K
#undef __USE_XOPEN2KXSI
#undef __USE_XOPEN2K8
#undef __USE_XOPEN2K8XSI
#undef __USE_LARGEFILE
#undef __USE_LARGEFILE64
#undef __USE_FILE_OFFSET64
#undef __USE_MISC
#undef __USE_ATFILE
#undef __USE_GNU
#undef __USE_FORTIFY_LEVEL
#undef __KERNEL_STRICT_NAMES
#undef __GLIBC_USE_DEPRECATED_GETS
#define __KERNEL_STRICT_NAMES 
#define __GNUC_PREREQ(maj,min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
#define __glibc_clang_prereq(maj,min) 0
#define __GLIBC_USE(F) __GLIBC_USE_ ## F
#undef _ISOC95_SOURCE
#define _ISOC95_SOURCE 1
#undef _ISOC99_SOURCE
#define _ISOC99_SOURCE 1
#undef _ISOC11_SOURCE
#define _ISOC11_SOURCE 1
#undef _POSIX_SOURCE
#define _POSIX_SOURCE 1
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#undef _XOPEN_SOURCE
#define _XOPEN_SOURCE 700
#undef _XOPEN_SOURCE_EXTENDED
#define _XOPEN_SOURCE_EXTENDED 1
#undef _LARGEFILE64_SOURCE
#define _LARGEFILE64_SOURCE 1
#undef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE 1
#undef _ATFILE_SOURCE
#define _ATFILE_SOURCE 1
#undef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE 1
#define __USE_ISOC11 1
#define __USE_ISOC99 1
#define __USE_ISOC95 1
#undef _POSIX_SOURCE
#define _POSIX_SOURCE 1
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#define __USE_POSIX 1
#define __USE_POSIX2 1
#define __USE_POSIX199309 1
#define __USE_POSIX199506 1
#define __USE_XOPEN2K 1
#undef __USE_ISOC95
#define __USE_ISOC95 1
#undef __USE_ISOC99
#define __USE_ISOC99 1
#define __USE_XOPEN2K8 1
#undef _ATFILE_SOURCE
#define _ATFILE_SOURCE 1
#define __USE_XOPEN 1
#define __USE_XOPEN_EXTENDED 1
#define __USE_UNIX98 1
#undef _LARGEFILE_SOURCE
#define _LARGEFILE_SOURCE 1
#define __USE_XOPEN2K8 1
#define __USE_XOPEN2K8XSI 1
#define __USE_XOPEN2K 1
#define __USE_XOPEN2KXSI 1
#undef __USE_ISOC95
#define __USE_ISOC95 1
#undef __USE_ISOC99
#define __USE_ISOC99 1
#define __USE_LARGEFILE 1
#define __USE_LARGEFILE64 1
#define __USE_MISC 1
#define __USE_ATFILE 1
#define __USE_GNU 1
#define __USE_FORTIFY_LEVEL 2
#define __GLIBC_USE_DEPRECATED_GETS 0
#undef __GNU_LIBRARY__
#define __GNU_LIBRARY__ 6
#define __GLIBC__ 2
#define __GLIBC_MINOR__ 28
#define __GLIBC_PREREQ(maj,min) ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
#define _SYS_CDEFS_H 1
#undef __P
#undef __PMT
#define __LEAF , __leaf__
#define __LEAF_ATTR __attribute__ ((__leaf__))
#define __THROW __attribute__ ((__nothrow__ __LEAF))
#define __THROWNL __attribute__ ((__nothrow__))
#define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
#define __NTHNL(fct) __attribute__ ((__nothrow__)) fct
#define __glibc_clang_has_extension(ext) 0
#define __P(args) args
#define __PMT(args) args
#define __CONCAT(x,y) x ## y
#define __STRING(x) #x
#define __ptr_t void *
#define __BEGIN_DECLS 
#define __END_DECLS 
#define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1)
#define __bos0(ptr) __builtin_object_size (ptr, 0)
#define __glibc_objsize0(__o) __bos0 (__o)
#define __glibc_objsize(__o) __bos (__o)
#define __glibc_safe_len_cond(__l,__s,__osz) ((__l) <= (__osz) / (__s))
#define __glibc_unsigned_or_positive(__l) ((__typeof (__l)) 0 < (__typeof (__l)) -1 || (__builtin_constant_p (__l) && (__l) > 0))
#define __glibc_safe_or_unknown_len(__l,__s,__osz) ((__builtin_constant_p (__osz) && (__osz) == (__SIZE_TYPE__) -1) || (__glibc_unsigned_or_positive (__l) && __builtin_constant_p (__glibc_safe_len_cond ((__SIZE_TYPE__) (__l), (__s), (__osz))) && __glibc_safe_len_cond ((__SIZE_TYPE__) (__l), (__s), (__osz))))
#define __glibc_unsafe_len(__l,__s,__osz) (__glibc_unsigned_or_positive (__l) && __builtin_constant_p (__glibc_safe_len_cond ((__SIZE_TYPE__) (__l), __s, __osz)) && !__glibc_safe_len_cond ((__SIZE_TYPE__) (__l), __s, __osz))
#define __glibc_fortify(f,__l,__s,__osz,...) (__glibc_safe_or_unknown_len (__l, __s, __osz) ? __ ## f ## _alias (__VA_ARGS__) : (__glibc_unsafe_len (__l, __s, __osz) ? __ ## f ## _chk_warn (__VA_ARGS__, __osz) : __ ## f ## _chk (__VA_ARGS__, __osz)))
#define __glibc_fortify_n(f,__l,__s,__osz,...) (__glibc_safe_or_unknown_len (__l, __s, __osz) ? __ ## f ## _alias (__VA_ARGS__) : (__glibc_unsafe_len (__l, __s, __osz) ? __ ## f ## _chk_warn (__VA_ARGS__, (__osz) / (__s)) : __ ## f ## _chk (__VA_ARGS__, (__osz) / (__s))))
#define __warndecl(name,msg) extern void name (void) __attribute__((__warning__ (msg)))
#define __warnattr(msg) __attribute__((__warning__ (msg)))
#define __errordecl(name,msg) extern void name (void) __attribute__((__error__ (msg)))
#define __flexarr []
#define __glibc_c99_flexarr_available 1
#define __REDIRECT(name,proto,alias) name proto __asm__ (__ASMNAME (#alias))
#define __REDIRECT_NTH(name,proto,alias) name proto __asm__ (__ASMNAME (#alias)) __THROW
#define __REDIRECT_NTHNL(name,proto,alias) name proto __asm__ (__ASMNAME (#alias)) __THROWNL
#define __ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
#define __ASMNAME2(prefix,cname) __STRING (prefix) cname
#define __attribute_malloc__ __attribute__ ((__malloc__))
#define __attribute_alloc_size__(params) __attribute__ ((__alloc_size__ params))
#define __attribute_pure__ __attribute__ ((__pure__))
#define __attribute_const__ __attribute__ ((__const__))
#define __attribute_used__ __attribute__ ((__used__))
#define __attribute_noinline__ __attribute__ ((__noinline__))
#define __attribute_deprecated__ __attribute__ ((__deprecated__))
#define __attribute_deprecated_msg__(msg) __attribute__ ((__deprecated__ (msg)))
#define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
#define __attribute_format_strfmon__(a,b) __attribute__ ((__format__ (__strfmon__, a, b)))
#define __nonnull(params) __attribute__ ((__nonnull__ params))
#define __attribute_warn_unused_result__ __attribute__ ((__warn_unused_result__))
#define __wur __attribute_warn_unused_result__
#undef __always_inline
#define __always_inline __inline __attribute__ ((__always_inline__))
#define __attribute_artificial__ __attribute__ ((__artificial__))
#define __extern_inline extern __inline __attribute__ ((__gnu_inline__))
#define __extern_always_inline extern __always_inline __attribute__ ((__gnu_inline__))
#define __fortify_function __extern_always_inline __attribute_artificial__
#define __va_arg_pack() __builtin_va_arg_pack ()
#define __va_arg_pack_len() __builtin_va_arg_pack_len ()
#define __restrict_arr __restrict
#define __glibc_unlikely(cond) __builtin_expect ((cond), 0)
#define __glibc_likely(cond) __builtin_expect ((cond), 1)
#define __glibc_has_attribute(attr) __has_attribute (attr)
#define __attribute_nonstring__ __attribute__ ((__nonstring__))
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __LDBL_REDIR1(name,proto,alias) name proto
#define __LDBL_REDIR(name,proto) name proto
#define __LDBL_REDIR1_NTH(name,proto,alias) name proto __THROW
#define __LDBL_REDIR_NTH(name,proto) name proto __THROW
#define __LDBL_REDIR_DECL(name) 
#define __REDIRECT_LDBL(name,proto,alias) __REDIRECT (name, proto, alias)
#define __REDIRECT_NTH_LDBL(name,proto,alias) __REDIRECT_NTH (name, proto, alias)
#define __glibc_macro_warning1(message) _Pragma (#message)
#define __glibc_macro_warning(message) __glibc_macro_warning1 (GCC warning message)
#define __HAVE_GENERIC_SELECTION 1
#define __USE_EXTERN_INLINES 1
#define __stub___compat_bdflush 
#define __stub_chflags 
#define __stub_fattach 
#define __stub_fchflags 
#define __stub_fdetach 
#define __stub_getmsg 
#define __stub_gtty 
#define __stub_lchmod 
#define __stub_putmsg 
#define __stub_revoke 
#define __stub_setlogin 
#define __stub_sigreturn 
#define __stub_sstk 
#define __stub_stty 
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define __need_size_t 
#define __need_NULL 
#define __size_t__ 
#define __SIZE_T__ 
#define _SIZE_T 
#define _SYS_SIZE_T_H 
#define _T_SIZE_ 
#define _T_SIZE 
#define __SIZE_T 
#define _SIZE_T_ 
#define _BSD_SIZE_T_ 
#define _SIZE_T_DEFINED_ 
#define _SIZE_T_DEFINED 
#define _BSD_SIZE_T_DEFINED_ 
#define _SIZE_T_DECLARED 
#define ___int_size_t_h 
#define _GCC_SIZE_T 
#define _SIZET_ 
#define __size_t 
#undef __need_size_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define __need___va_list 
#undef __need___va_list
#define __GNUC_VA_LIST 
#define _BITS_TYPES_H 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __S16_TYPE short int
#define __U16_TYPE unsigned short int
#define __S32_TYPE int
#define __U32_TYPE unsigned int
#define __SLONGWORD_TYPE long int
#define __ULONGWORD_TYPE unsigned long int
#define __SQUAD_TYPE long int
#define __UQUAD_TYPE unsigned long int
#define __SWORD_TYPE long int
#define __UWORD_TYPE unsigned long int
#define __SLONG32_TYPE int
#define __ULONG32_TYPE unsigned int
#define __S64_TYPE long int
#define __U64_TYPE unsigned long int
#define __STD_TYPE typedef
#define _BITS_TYPESIZES_H 1
#define __SYSCALL_SLONG_TYPE __SLONGWORD_TYPE
#define __SYSCALL_ULONG_TYPE __ULONGWORD_TYPE
#define __DEV_T_TYPE __UQUAD_TYPE
#define __UID_T_TYPE __U32_TYPE
#define __GID_T_TYPE __U32_TYPE
#define __INO_T_TYPE __SYSCALL_ULONG_TYPE
#define __INO64_T_TYPE __UQUAD_TYPE
#define __MODE_T_TYPE __U32_TYPE
#define __NLINK_T_TYPE __SYSCALL_ULONG_TYPE
#define __FSWORD_T_TYPE __SYSCALL_SLONG_TYPE
#define __OFF_T_TYPE __SYSCALL_SLONG_TYPE
#define __OFF64_T_TYPE __SQUAD_TYPE
#define __PID_T_TYPE __S32_TYPE
#define __RLIM_T_TYPE __SYSCALL_ULONG_TYPE
#define __RLIM64_T_TYPE __UQUAD_TYPE
#define __BLKCNT_T_TYPE __SYSCALL_SLONG_TYPE
#define __BLKCNT64_T_TYPE __SQUAD_TYPE
#define __FSBLKCNT_T_TYPE __SYSCALL_ULONG_TYPE
#define __FSBLKCNT64_T_TYPE __UQUAD_TYPE
#define __FSFILCNT_T_TYPE __SYSCALL_ULONG_TYPE
#define __FSFILCNT64_T_TYPE __UQUAD_TYPE
#define __ID_T_TYPE __U32_TYPE
#define __CLOCK_T_TYPE __SYSCALL_SLONG_TYPE
#define __TIME_T_TYPE __SYSCALL_SLONG_TYPE
#define __USECONDS_T_TYPE __U32_TYPE
#define __SUSECONDS_T_TYPE __SYSCALL_SLONG_TYPE
#define __DADDR_T_TYPE __S32_TYPE
#define __KEY_T_TYPE __S32_TYPE
#define __CLOCKID_T_TYPE __S32_TYPE
#define __TIMER_T_TYPE void *
#define __BLKSIZE_T_TYPE __SYSCALL_SLONG_TYPE
#define __FSID_T_TYPE struct { int __val[2]; }
#define __SSIZE_T_TYPE __SWORD_TYPE
#define __CPU_MASK_TYPE __SYSCALL_ULONG_TYPE
#define __OFF_T_MATCHES_OFF64_T 1
#define __INO_T_MATCHES_INO64_T 1
#define __RLIM_T_MATCHES_RLIM64_T 1
#define __FD_SETSIZE 1024
#undef __STD_TYPE
#define _____fpos_t_defined 1
#define ____mbstate_t_defined 1
#define _____fpos64_t_defined 1
#define ____FILE_defined 1
#define __FILE_defined 1
#define __struct_FILE_defined 1
#define __getc_unlocked_body(_fp) (__glibc_unlikely ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end) ? __uflow (_fp) : *(unsigned char *) (_fp)->_IO_read_ptr++)
#define __putc_unlocked_body(_ch,_fp) (__glibc_unlikely ((_fp)->_IO_write_ptr >= (_fp)->_IO_write_end) ? __overflow (_fp, (unsigned char) (_ch)) : (unsigned char) (*(_fp)->_IO_write_ptr++ = (_ch)))
#define _IO_EOF_SEEN 0x0010
#define __feof_unlocked_body(_fp) (((_fp)->_flags & _IO_EOF_SEEN) != 0)
#define _IO_ERR_SEEN 0x0020
#define __ferror_unlocked_body(_fp) (((_fp)->_flags & _IO_ERR_SEEN) != 0)
#define _IO_USER_LOCK 0x8000
#define __cookie_io_functions_t_defined 1
#define _VA_LIST_DEFINED 
#define __off_t_defined 
#define __off64_t_defined 
#define __ssize_t_defined 
#define _IOFBF 0
#define _IOLBF 1
#define _IONBF 2
#define BUFSIZ 8192
#define EOF (-1)
#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2
#define SEEK_DATA 3
#define SEEK_HOLE 4
#define P_tmpdir "/tmp"
#define _BITS_STDIO_LIM_H 1
#define L_tmpnam 20
#define TMP_MAX 238328
#define FILENAME_MAX 4096
#define L_ctermid 9
#define L_cuserid 9
#undef FOPEN_MAX
#define FOPEN_MAX 16
#define stdin stdin
#define stdout stdout
#define stderr stderr
#define RENAME_NOREPLACE (1 << 0)
#define RENAME_EXCHANGE (1 << 1)
#define RENAME_WHITEOUT (1 << 2)
#define _BITS_STDIO_H 1
#define __STDIO_INLINE __extern_inline
#define fread_unlocked(ptr,size,n,stream) (__extension__ ((__builtin_constant_p (size) && __builtin_constant_p (n) && (size_t) (size) * (size_t) (n) <= 8 && (size_t) (size) != 0) ? ({ char *__ptr = (char *) (ptr); FILE *__stream = (stream); size_t __cnt; for (__cnt = (size_t) (size) * (size_t) (n); __cnt > 0; --__cnt) { int __c = getc_unlocked (__stream); if (__c == EOF) break; *__ptr++ = __c; } ((size_t) (size) * (size_t) (n) - __cnt) / (size_t) (size); }) : (((__builtin_constant_p (size) && (size_t) (size) == 0) || (__builtin_constant_p (n) && (size_t) (n) == 0)) ? ((void) (ptr), (void) (stream), (void) (size), (void) (n), (size_t) 0) : fread_unlocked (ptr, size, n, stream))))
#define fwrite_unlocked(ptr,size,n,stream) (__extension__ ((__builtin_constant_p (size) && __builtin_constant_p (n) && (size_t) (size) * (size_t) (n) <= 8 && (size_t) (size) != 0) ? ({ const char *__ptr = (const char *) (ptr); FILE *__stream = (stream); size_t __cnt; for (__cnt = (size_t) (size) * (size_t) (n); __cnt > 0; --__cnt) if (putc_unlocked (*__ptr++, __stream) == EOF) break; ((size_t) (size) * (size_t) (n) - __cnt) / (size_t) (size); }) : (((__builtin_constant_p (size) && (size_t) (size) == 0) || (__builtin_constant_p (n) && (size_t) (n) == 0)) ? ((void) (ptr), (void) (stream), (void) (size), (void) (n), (size_t) 0) : fwrite_unlocked (ptr, size, n, stream))))
#undef __STDIO_INLINE
#define _BITS_STDIO2_H 1
#undef fread_unlocked
#define _SYS_TYPES_H 1
#define __u_char_defined 
#define __ino_t_defined 
#define __ino64_t_defined 
#define __dev_t_defined 
#define __gid_t_defined 
#define __mode_t_defined 
#define __nlink_t_defined 
#define __uid_t_defined 
#define __pid_t_defined 
#define __id_t_defined 
#define __daddr_t_defined 
#define __key_t_defined 
#define __clock_t_defined 1
#define __clockid_t_defined 1
#define __time_t_defined 1
#define __timer_t_defined 1
#define __useconds_t_defined 
#define __suseconds_t_defined 
#define __need_size_t 
#undef __need_size_t
#undef __need_NULL
#define _BITS_STDINT_INTN_H 1
#define __BIT_TYPES_DEFINED__ 1
#define _ENDIAN_H 1
#define __LITTLE_ENDIAN 1234
#define __BIG_ENDIAN 4321
#define __PDP_ENDIAN 3412
#define __BYTE_ORDER __LITTLE_ENDIAN
#define __FLOAT_WORD_ORDER __BYTE_ORDER
#define LITTLE_ENDIAN __LITTLE_ENDIAN
#define BIG_ENDIAN __BIG_ENDIAN
#define PDP_ENDIAN __PDP_ENDIAN
#define BYTE_ORDER __BYTE_ORDER
#define __LONG_LONG_PAIR(HI,LO) LO, HI
#define _BITS_BYTESWAP_H 1
#define __bswap_constant_16(x) ((__uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)))
#define __bswap_constant_32(x) ((((x) & 0xff000000u) >> 24) | (((x) & 0x00ff0000u) >> 8) | (((x) & 0x0000ff00u) << 8) | (((x) & 0x000000ffu) << 24))
#define __bswap_constant_64(x) ((((x) & 0xff00000000000000ull) >> 56) | (((x) & 0x00ff000000000000ull) >> 40) | (((x) & 0x0000ff0000000000ull) >> 24) | (((x) & 0x000000ff00000000ull) >> 8) | (((x) & 0x00000000ff000000ull) << 8) | (((x) & 0x0000000000ff0000ull) << 24) | (((x) & 0x000000000000ff00ull) << 40) | (((x) & 0x00000000000000ffull) << 56))
#define _BITS_UINTN_IDENTITY_H 1
#define htobe16(x) __bswap_16 (x)
#define htole16(x) __uint16_identity (x)
#define be16toh(x) __bswap_16 (x)
#define le16toh(x) __uint16_identity (x)
#define htobe32(x) __bswap_32 (x)
#define htole32(x) __uint32_identity (x)
#define be32toh(x) __bswap_32 (x)
#define le32toh(x) __uint32_identity (x)
#define htobe64(x) __bswap_64 (x)
#define htole64(x) __uint64_identity (x)
#define be64toh(x) __bswap_64 (x)
#define le64toh(x) __uint64_identity (x)
#define _SYS_SELECT_H 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __FD_ZERO_STOS "stosq"
#define __FD_ZERO(fdsp) do { int __d0, __d1; __asm__ __volatile__ ("cld; rep; " __FD_ZERO_STOS : "=c" (__d0), "=D" (__d1) : "a" (0), "0" (sizeof (fd_set) / sizeof (__fd_mask)), "1" (&__FDS_BITS (fdsp)[0]) : "memory"); } while (0)
#define __FD_SET(d,set) ((void) (__FDS_BITS (set)[__FD_ELT (d)] |= __FD_MASK (d)))
#define __FD_CLR(d,set) ((void) (__FDS_BITS (set)[__FD_ELT (d)] &= ~__FD_MASK (d)))
#define __FD_ISSET(d,set) ((__FDS_BITS (set)[__FD_ELT (d)] & __FD_MASK (d)) != 0)
#define __sigset_t_defined 1
#define ____sigset_t_defined 
#define _SIGSET_NWORDS (1024 / (8 * sizeof (unsigned long int)))
#define __timeval_defined 1
#define _STRUCT_TIMESPEC 1
#undef __NFDBITS
#define __NFDBITS (8 * (int) sizeof (__fd_mask))
#define __FD_ELT(d) ((d) / __NFDBITS)
#define __FD_MASK(d) ((__fd_mask) (1UL << ((d) % __NFDBITS)))
#define __FDS_BITS(set) ((set)->fds_bits)
#define FD_SETSIZE __FD_SETSIZE
#define NFDBITS __NFDBITS
#define FD_SET(fd,fdsetp) __FD_SET (fd, fdsetp)
#define FD_CLR(fd,fdsetp) __FD_CLR (fd, fdsetp)
#define FD_ISSET(fd,fdsetp) __FD_ISSET (fd, fdsetp)
#define FD_ZERO(fdsetp) __FD_ZERO (fdsetp)
#undef __FD_ELT
#define __FD_ELT(d) __extension__ ({ long int __d = (d); (__builtin_constant_p (__d) ? (0 <= __d && __d < __FD_SETSIZE ? (__d / __NFDBITS) : __fdelt_warn (__d)) : __fdelt_chk (__d)); })
#define __blksize_t_defined 
#define __blkcnt_t_defined 
#define __fsblkcnt_t_defined 
#define __fsfilcnt_t_defined 
#define _BITS_PTHREADTYPES_COMMON_H 1
#define _THREAD_SHARED_TYPES_H 1
#define _BITS_PTHREADTYPES_ARCH_H 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __SIZEOF_PTHREAD_MUTEX_T 40
#define __SIZEOF_PTHREAD_ATTR_T 56
#define __SIZEOF_PTHREAD_MUTEX_T 40
#define __SIZEOF_PTHREAD_RWLOCK_T 56
#define __SIZEOF_PTHREAD_BARRIER_T 32
#define __SIZEOF_PTHREAD_MUTEXATTR_T 4
#define __SIZEOF_PTHREAD_COND_T 48
#define __SIZEOF_PTHREAD_CONDATTR_T 4
#define __SIZEOF_PTHREAD_RWLOCKATTR_T 8
#define __SIZEOF_PTHREAD_BARRIERATTR_T 4
#define __PTHREAD_COMPAT_PADDING_MID 
#define __PTHREAD_COMPAT_PADDING_END 
#define __PTHREAD_MUTEX_LOCK_ELISION 1
#define __PTHREAD_MUTEX_NUSERS_AFTER_KIND 0
#define __PTHREAD_MUTEX_USE_UNION 0
#define __LOCK_ALIGNMENT 
#define __ONCE_ALIGNMENT 
#define __PTHREAD_RWLOCK_ELISION_EXTRA 0, { 0, 0, 0, 0, 0, 0, 0 }
#define __PTHREAD_RWLOCK_INT_FLAGS_SHARED 1
#define __PTHREAD_SPINS_DATA short __spins; short __elision
#define __PTHREAD_SPINS 0, 0
#define __PTHREAD_MUTEX_HAVE_PREV 1
#define __have_pthread_attr_t 1
#define _SYS_STAT_H 1
#define _BITS_STAT_H 1
#define _STAT_VER_KERNEL 0
#define _STAT_VER_LINUX 1
#define _MKNOD_VER_LINUX 0
#define _STAT_VER _STAT_VER_LINUX
#define st_atime st_atim.tv_sec
#define st_mtime st_mtim.tv_sec
#define st_ctime st_ctim.tv_sec
#define _STATBUF_ST_BLKSIZE 
#define _STATBUF_ST_RDEV 
#define _STATBUF_ST_NSEC 
#define __S_IFMT 0170000
#define __S_IFDIR 0040000
#define __S_IFCHR 0020000
#define __S_IFBLK 0060000
#define __S_IFREG 0100000
#define __S_IFIFO 0010000
#define __S_IFLNK 0120000
#define __S_IFSOCK 0140000
#define __S_TYPEISMQ(buf) ((buf)->st_mode - (buf)->st_mode)
#define __S_TYPEISSEM(buf) ((buf)->st_mode - (buf)->st_mode)
#define __S_TYPEISSHM(buf) ((buf)->st_mode - (buf)->st_mode)
#define __S_ISUID 04000
#define __S_ISGID 02000
#define __S_ISVTX 01000
#define __S_IREAD 0400
#define __S_IWRITE 0200
#define __S_IEXEC 0100
#define UTIME_NOW ((1l << 30) - 1l)
#define UTIME_OMIT ((1l << 30) - 2l)
#define S_IFMT __S_IFMT
#define S_IFDIR __S_IFDIR
#define S_IFCHR __S_IFCHR
#define S_IFBLK __S_IFBLK
#define S_IFREG __S_IFREG
#define S_IFIFO __S_IFIFO
#define S_IFLNK __S_IFLNK
#define S_IFSOCK __S_IFSOCK
#define __S_ISTYPE(mode,mask) (((mode) & __S_IFMT) == (mask))
#define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR)
#define S_ISCHR(mode) __S_ISTYPE((mode), __S_IFCHR)
#define S_ISBLK(mode) __S_ISTYPE((mode), __S_IFBLK)
#define S_ISREG(mode) __S_ISTYPE((mode), __S_IFREG)
#define S_ISFIFO(mode) __S_ISTYPE((mode), __S_IFIFO)
#define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
#define S_ISSOCK(mode) __S_ISTYPE((mode), __S_IFSOCK)
#define S_TYPEISMQ(buf) __S_TYPEISMQ(buf)
#define S_TYPEISSEM(buf) __S_TYPEISSEM(buf)
#define S_TYPEISSHM(buf) __S_TYPEISSHM(buf)
#define S_ISUID __S_ISUID
#define S_ISGID __S_ISGID
#define S_ISVTX __S_ISVTX
#define S_IRUSR __S_IREAD
#define S_IWUSR __S_IWRITE
#define S_IXUSR __S_IEXEC
#define S_IRWXU (__S_IREAD|__S_IWRITE|__S_IEXEC)
#define S_IREAD S_IRUSR
#define S_IWRITE S_IWUSR
#define S_IEXEC S_IXUSR
#define S_IRGRP (S_IRUSR >> 3)
#define S_IWGRP (S_IWUSR >> 3)
#define S_IXGRP (S_IXUSR >> 3)
#define S_IRWXG (S_IRWXU >> 3)
#define S_IROTH (S_IRGRP >> 3)
#define S_IWOTH (S_IWGRP >> 3)
#define S_IXOTH (S_IXGRP >> 3)
#define S_IRWXO (S_IRWXG >> 3)
#define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
#define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
#define S_BLKSIZE 512
#define _MKNOD_VER 0
#define _LINUX_STAT_H 
#define _LINUX_TYPES_H 
#define _ASM_X86_TYPES_H 
#define _ASM_GENERIC_TYPES_H 
#define _ASM_GENERIC_INT_LL64_H 
#define __ASM_X86_BITSPERLONG_H 
#define __BITS_PER_LONG 64
#define __ASM_GENERIC_BITS_PER_LONG 
#define _LINUX_POSIX_TYPES_H 
#define _LINUX_STDDEF_H 
#define __struct_group(TAG,NAME,ATTRS,MEMBERS...) union { struct { MEMBERS } ATTRS; struct TAG { MEMBERS } ATTRS NAME; }
#define __DECLARE_FLEX_ARRAY(TYPE,NAME) struct { struct { } __empty_ ## NAME; TYPE NAME[]; }
#undef __FD_SETSIZE
#define __FD_SETSIZE 1024
#define _ASM_X86_POSIX_TYPES_64_H 
#define __kernel_old_uid_t __kernel_old_uid_t
#define __kernel_old_dev_t __kernel_old_dev_t
#define __ASM_GENERIC_POSIX_TYPES_H 
#define __bitwise__ 
#define __bitwise __bitwise__
#define __aligned_u64 __u64 __attribute__((aligned(8)))
#define __aligned_be64 __be64 __attribute__((aligned(8)))
#define __aligned_le64 __le64 __attribute__((aligned(8)))
#define STATX_TYPE 0x00000001U
#define STATX_MODE 0x00000002U
#define STATX_NLINK 0x00000004U
#define STATX_UID 0x00000008U
#define STATX_GID 0x00000010U
#define STATX_ATIME 0x00000020U
#define STATX_MTIME 0x00000040U
#define STATX_CTIME 0x00000080U
#define STATX_INO 0x00000100U
#define STATX_SIZE 0x00000200U
#define STATX_BLOCKS 0x00000400U
#define STATX_BASIC_STATS 0x000007ffU
#define STATX_BTIME 0x00000800U
#define STATX_ALL 0x00000fffU
#define STATX__RESERVED 0x80000000U
#define STATX_ATTR_COMPRESSED 0x00000004
#define STATX_ATTR_IMMUTABLE 0x00000010
#define STATX_ATTR_APPEND 0x00000020
#define STATX_ATTR_NODUMP 0x00000040
#define STATX_ATTR_ENCRYPTED 0x00000800
#define STATX_ATTR_AUTOMOUNT 0x00001000
#define STATX_ATTR_DAX 0x00200000
#define __statx_timestamp_defined 1
#define __statx_defined 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define __need_size_t 
#define __need_wchar_t 
#define __need_NULL 
#undef __need_size_t
#define __wchar_t__ 
#define __WCHAR_T__ 
#define _WCHAR_T 
#define _T_WCHAR_ 
#define _T_WCHAR 
#define __WCHAR_T 
#define _WCHAR_T_ 
#define _BSD_WCHAR_T_ 
#define _WCHAR_T_DEFINED_ 
#define _WCHAR_T_DEFINED 
#define _WCHAR_T_H 
#define ___int_wchar_t_h 
#define __INT_WCHAR_T_H 
#define _GCC_WCHAR_T 
#define _WCHAR_T_DECLARED 
#undef _BSD_WCHAR_T_
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define _STDLIB_H 1
#define WNOHANG 1
#define WUNTRACED 2
#define WSTOPPED 2
#define WEXITED 4
#define WCONTINUED 8
#define WNOWAIT 0x01000000
#define __WNOTHREAD 0x20000000
#define __WALL 0x40000000
#define __WCLONE 0x80000000
#define __WEXITSTATUS(status) (((status) & 0xff00) >> 8)
#define __WTERMSIG(status) ((status) & 0x7f)
#define __WSTOPSIG(status) __WEXITSTATUS(status)
#define __WIFEXITED(status) (__WTERMSIG(status) == 0)
#define __WIFSIGNALED(status) (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
#define __WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
#define __WIFCONTINUED(status) ((status) == __W_CONTINUED)
#define __WCOREDUMP(status) ((status) & __WCOREFLAG)
#define __W_EXITCODE(ret,sig) ((ret) << 8 | (sig))
#define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
#define __W_CONTINUED 0xffff
#define __WCOREFLAG 0x80
#define WEXITSTATUS(status) __WEXITSTATUS (status)
#define WTERMSIG(status) __WTERMSIG (status)
#define WSTOPSIG(status) __WSTOPSIG (status)
#define WIFEXITED(status) __WIFEXITED (status)
#define WIFSIGNALED(status) __WIFSIGNALED (status)
#define WIFSTOPPED(status) __WIFSTOPPED (status)
#define WIFCONTINUED(status) __WIFCONTINUED (status)
#define _BITS_FLOATN_H 
#define __HAVE_FLOAT128 1
#define __HAVE_DISTINCT_FLOAT128 1
#define __HAVE_FLOAT64X 1
#define __HAVE_FLOAT64X_LONG_DOUBLE 1
#define __f128(x) x ##f128
#define __CFLOAT128 _Complex _Float128
#define _BITS_FLOATN_COMMON_H 
#define __HAVE_FLOAT16 0
#define __HAVE_FLOAT32 1
#define __HAVE_FLOAT64 1
#define __HAVE_FLOAT32X 1
#define __HAVE_FLOAT128X 0
#define __HAVE_DISTINCT_FLOAT16 __HAVE_FLOAT16
#define __HAVE_DISTINCT_FLOAT32 0
#define __HAVE_DISTINCT_FLOAT64 0
#define __HAVE_DISTINCT_FLOAT32X 0
#define __HAVE_DISTINCT_FLOAT64X 0
#define __HAVE_DISTINCT_FLOAT128X __HAVE_FLOAT128X
#define __HAVE_FLOAT128_UNLIKE_LDBL (__HAVE_DISTINCT_FLOAT128 && __LDBL_MANT_DIG__ != 113)
#define __HAVE_FLOATN_NOT_TYPEDEF 1
#define __f32(x) x ##f32
#define __f64(x) x ##f64
#define __f32x(x) x ##f32x
#define __f64x(x) x ##f64x
#define __CFLOAT32 _Complex _Float32
#define __CFLOAT64 _Complex _Float64
#define __CFLOAT32X _Complex _Float32x
#define __CFLOAT64X _Complex _Float64x
#define __ldiv_t_defined 1
#define __lldiv_t_defined 1
#define RAND_MAX 2147483647
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
#define MB_CUR_MAX (__ctype_get_mb_cur_max ())
#define _BITS_TYPES_LOCALE_T_H 1
#define _BITS_TYPES___LOCALE_T_H 1
#define _ALLOCA_H 1
#define __need_size_t 
#undef __need_size_t
#undef __need_NULL
#undef alloca
#define alloca(size) __builtin_alloca (size)
#define __COMPAR_FN_T 
#define __STDLIB_MB_LEN_MAX 16
#define _STDDEF_H 
#define _STDDEF_H_ 
#define _ANSI_STDDEF_H 
#define _PTRDIFF_T 
#define _T_PTRDIFF_ 
#define _T_PTRDIFF 
#define __PTRDIFF_T 
#define _PTRDIFF_T_ 
#define _BSD_PTRDIFF_T_ 
#define ___int_ptrdiff_t_h 
#define _GCC_PTRDIFF_T 
#define _PTRDIFF_T_DECLARED 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define _GCC_MAX_ALIGN_T 
#define _STRING_H 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define __need_size_t 
#define __need_NULL 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define strdupa(s) (__extension__ ({ const char *__old = (s); size_t __len = strlen (__old) + 1; char *__new = (char *) __builtin_alloca (__len); (char *) memcpy (__new, __old, __len); }))
#define strndupa(s,n) (__extension__ ({ const char *__old = (s); size_t __len = strnlen (__old, (n)); char *__new = (char *) __builtin_alloca (__len + 1); __new[__len] = '\0'; (char *) memcpy (__new, __old, __len); }))
#define _STRINGS_H 1
#define __need_size_t 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define __STRINGS_FORTIFIED 1
#define _BITS_STRING_FORTIFIED_H 1
#define _INTTYPES_H 1
#define _STDINT_H 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define _BITS_WCHAR_H 1
#define __WCHAR_MAX __WCHAR_MAX__
#define __WCHAR_MIN __WCHAR_MIN__
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define _BITS_STDINT_UINTN_H 1
#define __intptr_t_defined 
#define __INT64_C(c) c ## L
#define __UINT64_C(c) c ## UL
#define INT8_MIN (-128)
#define INT16_MIN (-32767-1)
#define INT32_MIN (-2147483647-1)
#define INT64_MIN (-__INT64_C(9223372036854775807)-1)
#define INT8_MAX (127)
#define INT16_MAX (32767)
#define INT32_MAX (2147483647)
#define INT64_MAX (__INT64_C(9223372036854775807))
#define UINT8_MAX (255)
#define UINT16_MAX (65535)
#define UINT32_MAX (4294967295U)
#define UINT64_MAX (__UINT64_C(18446744073709551615))
#define INT_LEAST8_MIN (-128)
#define INT_LEAST16_MIN (-32767-1)
#define INT_LEAST32_MIN (-2147483647-1)
#define INT_LEAST64_MIN (-__INT64_C(9223372036854775807)-1)
#define INT_LEAST8_MAX (127)
#define INT_LEAST16_MAX (32767)
#define INT_LEAST32_MAX (2147483647)
#define INT_LEAST64_MAX (__INT64_C(9223372036854775807))
#define UINT_LEAST8_MAX (255)
#define UINT_LEAST16_MAX (65535)
#define UINT_LEAST32_MAX (4294967295U)
#define UINT_LEAST64_MAX (__UINT64_C(18446744073709551615))
#define INT_FAST8_MIN (-128)
#define INT_FAST16_MIN (-9223372036854775807L-1)
#define INT_FAST32_MIN (-9223372036854775807L-1)
#define INT_FAST64_MIN (-__INT64_C(9223372036854775807)-1)
#define INT_FAST8_MAX (127)
#define INT_FAST16_MAX (9223372036854775807L)
#define INT_FAST32_MAX (9223372036854775807L)
#define INT_FAST64_MAX (__INT64_C(9223372036854775807))
#define UINT_FAST8_MAX (255)
#define UINT_FAST16_MAX (18446744073709551615UL)
#define UINT_FAST32_MAX (18446744073709551615UL)
#define UINT_FAST64_MAX (__UINT64_C(18446744073709551615))
#define INTPTR_MIN (-9223372036854775807L-1)
#define INTPTR_MAX (9223372036854775807L)
#define UINTPTR_MAX (18446744073709551615UL)
#define INTMAX_MIN (-__INT64_C(9223372036854775807)-1)
#define INTMAX_MAX (__INT64_C(9223372036854775807))
#define UINTMAX_MAX (__UINT64_C(18446744073709551615))
#define PTRDIFF_MIN (-9223372036854775807L-1)
#define PTRDIFF_MAX (9223372036854775807L)
#define SIG_ATOMIC_MIN (-2147483647-1)
#define SIG_ATOMIC_MAX (2147483647)
#define SIZE_MAX (18446744073709551615UL)
#define WCHAR_MIN __WCHAR_MIN
#define WCHAR_MAX __WCHAR_MAX
#define WINT_MIN (0u)
#define WINT_MAX (4294967295u)
#define INT8_C(c) c
#define INT16_C(c) c
#define INT32_C(c) c
#define INT64_C(c) c ## L
#define UINT8_C(c) c
#define UINT16_C(c) c
#define UINT32_C(c) c ## U
#define UINT64_C(c) c ## UL
#define INTMAX_C(c) c ## L
#define UINTMAX_C(c) c ## UL
#define INT8_WIDTH 8
#define UINT8_WIDTH 8
#define INT16_WIDTH 16
#define UINT16_WIDTH 16
#define INT32_WIDTH 32
#define UINT32_WIDTH 32
#define INT64_WIDTH 64
#define UINT64_WIDTH 64
#define INT_LEAST8_WIDTH 8
#define UINT_LEAST8_WIDTH 8
#define INT_LEAST16_WIDTH 16
#define UINT_LEAST16_WIDTH 16
#define INT_LEAST32_WIDTH 32
#define UINT_LEAST32_WIDTH 32
#define INT_LEAST64_WIDTH 64
#define UINT_LEAST64_WIDTH 64
#define INT_FAST8_WIDTH 8
#define UINT_FAST8_WIDTH 8
#define INT_FAST16_WIDTH __WORDSIZE
#define UINT_FAST16_WIDTH __WORDSIZE
#define INT_FAST32_WIDTH __WORDSIZE
#define UINT_FAST32_WIDTH __WORDSIZE
#define INT_FAST64_WIDTH 64
#define UINT_FAST64_WIDTH 64
#define INTPTR_WIDTH __WORDSIZE
#define UINTPTR_WIDTH __WORDSIZE
#define INTMAX_WIDTH 64
#define UINTMAX_WIDTH 64
#define PTRDIFF_WIDTH __WORDSIZE
#define SIG_ATOMIC_WIDTH 32
#define SIZE_WIDTH __WORDSIZE
#define WCHAR_WIDTH 32
#define WINT_WIDTH 32
#define _GCC_WRAP_STDINT_H 
#define ____gwchar_t_defined 1
#define __PRI64_PREFIX "l"
#define __PRIPTR_PREFIX "l"
#define PRId8 "d"
#define PRId16 "d"
#define PRId32 "d"
#define PRId64 __PRI64_PREFIX "d"
#define PRIdLEAST8 "d"
#define PRIdLEAST16 "d"
#define PRIdLEAST32 "d"
#define PRIdLEAST64 __PRI64_PREFIX "d"
#define PRIdFAST8 "d"
#define PRIdFAST16 __PRIPTR_PREFIX "d"
#define PRIdFAST32 __PRIPTR_PREFIX "d"
#define PRIdFAST64 __PRI64_PREFIX "d"
#define PRIi8 "i"
#define PRIi16 "i"
#define PRIi32 "i"
#define PRIi64 __PRI64_PREFIX "i"
#define PRIiLEAST8 "i"
#define PRIiLEAST16 "i"
#define PRIiLEAST32 "i"
#define PRIiLEAST64 __PRI64_PREFIX "i"
#define PRIiFAST8 "i"
#define PRIiFAST16 __PRIPTR_PREFIX "i"
#define PRIiFAST32 __PRIPTR_PREFIX "i"
#define PRIiFAST64 __PRI64_PREFIX "i"
#define PRIo8 "o"
#define PRIo16 "o"
#define PRIo32 "o"
#define PRIo64 __PRI64_PREFIX "o"
#define PRIoLEAST8 "o"
#define PRIoLEAST16 "o"
#define PRIoLEAST32 "o"
#define PRIoLEAST64 __PRI64_PREFIX "o"
#define PRIoFAST8 "o"
#define PRIoFAST16 __PRIPTR_PREFIX "o"
#define PRIoFAST32 __PRIPTR_PREFIX "o"
#define PRIoFAST64 __PRI64_PREFIX "o"
#define PRIu8 "u"
#define PRIu16 "u"
#define PRIu32 "u"
#define PRIu64 __PRI64_PREFIX "u"
#define PRIuLEAST8 "u"
#define PRIuLEAST16 "u"
#define PRIuLEAST32 "u"
#define PRIuLEAST64 __PRI64_PREFIX "u"
#define PRIuFAST8 "u"
#define PRIuFAST16 __PRIPTR_PREFIX "u"
#define PRIuFAST32 __PRIPTR_PREFIX "u"
#define PRIuFAST64 __PRI64_PREFIX "u"
#define PRIx8 "x"
#define PRIx16 "x"
#define PRIx32 "x"
#define PRIx64 __PRI64_PREFIX "x"
#define PRIxLEAST8 "x"
#define PRIxLEAST16 "x"
#define PRIxLEAST32 "x"
#define PRIxLEAST64 __PRI64_PREFIX "x"
#define PRIxFAST8 "x"
#define PRIxFAST16 __PRIPTR_PREFIX "x"
#define PRIxFAST32 __PRIPTR_PREFIX "x"
#define PRIxFAST64 __PRI64_PREFIX "x"
#define PRIX8 "X"
#define PRIX16 "X"
#define PRIX32 "X"
#define PRIX64 __PRI64_PREFIX "X"
#define PRIXLEAST8 "X"
#define PRIXLEAST16 "X"
#define PRIXLEAST32 "X"
#define PRIXLEAST64 __PRI64_PREFIX "X"
#define PRIXFAST8 "X"
#define PRIXFAST16 __PRIPTR_PREFIX "X"
#define PRIXFAST32 __PRIPTR_PREFIX "X"
#define PRIXFAST64 __PRI64_PREFIX "X"
#define PRIdMAX __PRI64_PREFIX "d"
#define PRIiMAX __PRI64_PREFIX "i"
#define PRIoMAX __PRI64_PREFIX "o"
#define PRIuMAX __PRI64_PREFIX "u"
#define PRIxMAX __PRI64_PREFIX "x"
#define PRIXMAX __PRI64_PREFIX "X"
#define PRIdPTR __PRIPTR_PREFIX "d"
#define PRIiPTR __PRIPTR_PREFIX "i"
#define PRIoPTR __PRIPTR_PREFIX "o"
#define PRIuPTR __PRIPTR_PREFIX "u"
#define PRIxPTR __PRIPTR_PREFIX "x"
#define PRIXPTR __PRIPTR_PREFIX "X"
#define SCNd8 "hhd"
#define SCNd16 "hd"
#define SCNd32 "d"
#define SCNd64 __PRI64_PREFIX "d"
#define SCNdLEAST8 "hhd"
#define SCNdLEAST16 "hd"
#define SCNdLEAST32 "d"
#define SCNdLEAST64 __PRI64_PREFIX "d"
#define SCNdFAST8 "hhd"
#define SCNdFAST16 __PRIPTR_PREFIX "d"
#define SCNdFAST32 __PRIPTR_PREFIX "d"
#define SCNdFAST64 __PRI64_PREFIX "d"
#define SCNi8 "hhi"
#define SCNi16 "hi"
#define SCNi32 "i"
#define SCNi64 __PRI64_PREFIX "i"
#define SCNiLEAST8 "hhi"
#define SCNiLEAST16 "hi"
#define SCNiLEAST32 "i"
#define SCNiLEAST64 __PRI64_PREFIX "i"
#define SCNiFAST8 "hhi"
#define SCNiFAST16 __PRIPTR_PREFIX "i"
#define SCNiFAST32 __PRIPTR_PREFIX "i"
#define SCNiFAST64 __PRI64_PREFIX "i"
#define SCNu8 "hhu"
#define SCNu16 "hu"
#define SCNu32 "u"
#define SCNu64 __PRI64_PREFIX "u"
#define SCNuLEAST8 "hhu"
#define SCNuLEAST16 "hu"
#define SCNuLEAST32 "u"
#define SCNuLEAST64 __PRI64_PREFIX "u"
#define SCNuFAST8 "hhu"
#define SCNuFAST16 __PRIPTR_PREFIX "u"
#define SCNuFAST32 __PRIPTR_PREFIX "u"
#define SCNuFAST64 __PRI64_PREFIX "u"
#define SCNo8 "hho"
#define SCNo16 "ho"
#define SCNo32 "o"
#define SCNo64 __PRI64_PREFIX "o"
#define SCNoLEAST8 "hho"
#define SCNoLEAST16 "ho"
#define SCNoLEAST32 "o"
#define SCNoLEAST64 __PRI64_PREFIX "o"
#define SCNoFAST8 "hho"
#define SCNoFAST16 __PRIPTR_PREFIX "o"
#define SCNoFAST32 __PRIPTR_PREFIX "o"
#define SCNoFAST64 __PRI64_PREFIX "o"
#define SCNx8 "hhx"
#define SCNx16 "hx"
#define SCNx32 "x"
#define SCNx64 __PRI64_PREFIX "x"
#define SCNxLEAST8 "hhx"
#define SCNxLEAST16 "hx"
#define SCNxLEAST32 "x"
#define SCNxLEAST64 __PRI64_PREFIX "x"
#define SCNxFAST8 "hhx"
#define SCNxFAST16 __PRIPTR_PREFIX "x"
#define SCNxFAST32 __PRIPTR_PREFIX "x"
#define SCNxFAST64 __PRI64_PREFIX "x"
#define SCNdMAX __PRI64_PREFIX "d"
#define SCNiMAX __PRI64_PREFIX "i"
#define SCNoMAX __PRI64_PREFIX "o"
#define SCNuMAX __PRI64_PREFIX "u"
#define SCNxMAX __PRI64_PREFIX "x"
#define SCNdPTR __PRIPTR_PREFIX "d"
#define SCNiPTR __PRIPTR_PREFIX "i"
#define SCNoPTR __PRIPTR_PREFIX "o"
#define SCNuPTR __PRIPTR_PREFIX "u"
#define SCNxPTR __PRIPTR_PREFIX "x"
#define _STDALIGN_H 
#define alignas _Alignas
#define alignof _Alignof
#define __alignas_is_defined 1
#define __alignof_is_defined 1
#define _UNISTD_H 1
#define _POSIX_VERSION 200809L
#define __POSIX2_THIS_VERSION 200809L
#define _POSIX2_VERSION __POSIX2_THIS_VERSION
#define _POSIX2_C_VERSION __POSIX2_THIS_VERSION
#define _POSIX2_C_BIND __POSIX2_THIS_VERSION
#define _POSIX2_C_DEV __POSIX2_THIS_VERSION
#define _POSIX2_SW_DEV __POSIX2_THIS_VERSION
#define _POSIX2_LOCALEDEF __POSIX2_THIS_VERSION
#define _XOPEN_VERSION 700
#define _XOPEN_XCU_VERSION 4
#define _XOPEN_XPG2 1
#define _XOPEN_XPG3 1
#define _XOPEN_XPG4 1
#define _XOPEN_UNIX 1
#define _XOPEN_ENH_I18N 1
#define _XOPEN_LEGACY 1
#define _BITS_POSIX_OPT_H 1
#define _POSIX_JOB_CONTROL 1
#define _POSIX_SAVED_IDS 1
#define _POSIX_PRIORITY_SCHEDULING 200809L
#define _POSIX_SYNCHRONIZED_IO 200809L
#define _POSIX_FSYNC 200809L
#define _POSIX_MAPPED_FILES 200809L
#define _POSIX_MEMLOCK 200809L
#define _POSIX_MEMLOCK_RANGE 200809L
#define _POSIX_MEMORY_PROTECTION 200809L
#define _POSIX_CHOWN_RESTRICTED 0
#define _POSIX_VDISABLE '\0'
#define _POSIX_NO_TRUNC 1
#define _XOPEN_REALTIME 1
#define _XOPEN_REALTIME_THREADS 1
#define _XOPEN_SHM 1
#define _POSIX_THREADS 200809L
#define _POSIX_REENTRANT_FUNCTIONS 1
#define _POSIX_THREAD_SAFE_FUNCTIONS 200809L
#define _POSIX_THREAD_PRIORITY_SCHEDULING 200809L
#define _POSIX_THREAD_ATTR_STACKSIZE 200809L
#define _POSIX_THREAD_ATTR_STACKADDR 200809L
#define _POSIX_THREAD_PRIO_INHERIT 200809L
#define _POSIX_THREAD_PRIO_PROTECT 200809L
#define _POSIX_THREAD_ROBUST_PRIO_INHERIT 200809L
#define _POSIX_THREAD_ROBUST_PRIO_PROTECT -1
#define _POSIX_SEMAPHORES 200809L
#define _POSIX_REALTIME_SIGNALS 200809L
#define _POSIX_ASYNCHRONOUS_IO 200809L
#define _POSIX_ASYNC_IO 1
#define _LFS_ASYNCHRONOUS_IO 1
#define _POSIX_PRIORITIZED_IO 200809L
#define _LFS64_ASYNCHRONOUS_IO 1
#define _LFS_LARGEFILE 1
#define _LFS64_LARGEFILE 1
#define _LFS64_STDIO 1
#define _POSIX_SHARED_MEMORY_OBJECTS 200809L
#define _POSIX_CPUTIME 0
#define _POSIX_THREAD_CPUTIME 0
#define _POSIX_REGEXP 1
#define _POSIX_READER_WRITER_LOCKS 200809L
#define _POSIX_SHELL 1
#define _POSIX_TIMEOUTS 200809L
#define _POSIX_SPIN_LOCKS 200809L
#define _POSIX_SPAWN 200809L
#define _POSIX_TIMERS 200809L
#define _POSIX_BARRIERS 200809L
#define _POSIX_MESSAGE_PASSING 200809L
#define _POSIX_THREAD_PROCESS_SHARED 200809L
#define _POSIX_MONOTONIC_CLOCK 0
#define _POSIX_CLOCK_SELECTION 200809L
#define _POSIX_ADVISORY_INFO 200809L
#define _POSIX_IPV6 200809L
#define _POSIX_RAW_SOCKETS 200809L
#define _POSIX2_CHAR_TERM 200809L
#define _POSIX_SPORADIC_SERVER -1
#define _POSIX_THREAD_SPORADIC_SERVER -1
#define _POSIX_TRACE -1
#define _POSIX_TRACE_EVENT_FILTER -1
#define _POSIX_TRACE_INHERIT -1
#define _POSIX_TRACE_LOG -1
#define _POSIX_TYPED_MEMORY_OBJECTS -1
#define _XOPEN_STREAMS -1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define _POSIX_V7_LPBIG_OFFBIG -1
#define _POSIX_V6_LPBIG_OFFBIG -1
#define _XBS5_LPBIG_OFFBIG -1
#define _POSIX_V7_LP64_OFF64 1
#define _POSIX_V6_LP64_OFF64 1
#define _XBS5_LP64_OFF64 1
#define __ILP32_OFF32_CFLAGS "-m32"
#define __ILP32_OFF32_LDFLAGS "-m32"
#define __ILP32_OFFBIG_CFLAGS "-m32 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
#define __ILP32_OFFBIG_LDFLAGS "-m32"
#define __LP64_OFF64_CFLAGS "-m64"
#define __LP64_OFF64_LDFLAGS "-m64"
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
#define __need_size_t 
#define __need_NULL 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define __socklen_t_defined 
#define R_OK 4
#define W_OK 2
#define X_OK 1
#define F_OK 0
#define L_SET SEEK_SET
#define L_INCR SEEK_CUR
#define L_XTND SEEK_END
#define _PC_LINK_MAX _PC_LINK_MAX
#define _PC_MAX_CANON _PC_MAX_CANON
#define _PC_MAX_INPUT _PC_MAX_INPUT
#define _PC_NAME_MAX _PC_NAME_MAX
#define _PC_PATH_MAX _PC_PATH_MAX
#define _PC_PIPE_BUF _PC_PIPE_BUF
#define _PC_CHOWN_RESTRICTED _PC_CHOWN_RESTRICTED
#define _PC_NO_TRUNC _PC_NO_TRUNC
#define _PC_VDISABLE _PC_VDISABLE
#define _PC_SYNC_IO _PC_SYNC_IO
#define _PC_ASYNC_IO _PC_ASYNC_IO
#define _PC_PRIO_IO _PC_PRIO_IO
#define _PC_SOCK_MAXBUF _PC_SOCK_MAXBUF
#define _PC_FILESIZEBITS _PC_FILESIZEBITS
#define _PC_REC_INCR_XFER_SIZE _PC_REC_INCR_XFER_SIZE
#define _PC_REC_MAX_XFER_SIZE _PC_REC_MAX_XFER_SIZE
#define _PC_REC_MIN_XFER_SIZE _PC_REC_MIN_XFER_SIZE
#define _PC_REC_XFER_ALIGN _PC_REC_XFER_ALIGN
#define _PC_ALLOC_SIZE_MIN _PC_ALLOC_SIZE_MIN
#define _PC_SYMLINK_MAX _PC_SYMLINK_MAX
#define _PC_2_SYMLINKS _PC_2_SYMLINKS
#define _SC_ARG_MAX _SC_ARG_MAX
#define _SC_CHILD_MAX _SC_CHILD_MAX
#define _SC_CLK_TCK _SC_CLK_TCK
#define _SC_NGROUPS_MAX _SC_NGROUPS_MAX
#define _SC_OPEN_MAX _SC_OPEN_MAX
#define _SC_STREAM_MAX _SC_STREAM_MAX
#define _SC_TZNAME_MAX _SC_TZNAME_MAX
#define _SC_JOB_CONTROL _SC_JOB_CONTROL
#define _SC_SAVED_IDS _SC_SAVED_IDS
#define _SC_REALTIME_SIGNALS _SC_REALTIME_SIGNALS
#define _SC_PRIORITY_SCHEDULING _SC_PRIORITY_SCHEDULING
#define _SC_TIMERS _SC_TIMERS
#define _SC_ASYNCHRONOUS_IO _SC_ASYNCHRONOUS_IO
#define _SC_PRIORITIZED_IO _SC_PRIORITIZED_IO
#define _SC_SYNCHRONIZED_IO _SC_SYNCHRONIZED_IO
#define _SC_FSYNC _SC_FSYNC
#define _SC_MAPPED_FILES _SC_MAPPED_FILES
#define _SC_MEMLOCK _SC_MEMLOCK
#define _SC_MEMLOCK_RANGE _SC_MEMLOCK_RANGE
#define _SC_MEMORY_PROTECTION _SC_MEMORY_PROTECTION
#define _SC_MESSAGE_PASSING _SC_MESSAGE_PASSING
#define _SC_SEMAPHORES _SC_SEMAPHORES
#define _SC_SHARED_MEMORY_OBJECTS _SC_SHARED_MEMORY_OBJECTS
#define _SC_AIO_LISTIO_MAX _SC_AIO_LISTIO_MAX
#define _SC_AIO_MAX _SC_AIO_MAX
#define _SC_AIO_PRIO_DELTA_MAX _SC_AIO_PRIO_DELTA_MAX
#define _SC_DELAYTIMER_MAX _SC_DELAYTIMER_MAX
#define _SC_MQ_OPEN_MAX _SC_MQ_OPEN_MAX
#define _SC_MQ_PRIO_MAX _SC_MQ_PRIO_MAX
#define _SC_VERSION _SC_VERSION
#define _SC_PAGESIZE _SC_PAGESIZE
#define _SC_PAGE_SIZE _SC_PAGESIZE
#define _SC_RTSIG_MAX _SC_RTSIG_MAX
#define _SC_SEM_NSEMS_MAX _SC_SEM_NSEMS_MAX
#define _SC_SEM_VALUE_MAX _SC_SEM_VALUE_MAX
#define _SC_SIGQUEUE_MAX _SC_SIGQUEUE_MAX
#define _SC_TIMER_MAX _SC_TIMER_MAX
#define _SC_BC_BASE_MAX _SC_BC_BASE_MAX
#define _SC_BC_DIM_MAX _SC_BC_DIM_MAX
#define _SC_BC_SCALE_MAX _SC_BC_SCALE_MAX
#define _SC_BC_STRING_MAX _SC_BC_STRING_MAX
#define _SC_COLL_WEIGHTS_MAX _SC_COLL_WEIGHTS_MAX
#define _SC_EQUIV_CLASS_MAX _SC_EQUIV_CLASS_MAX
#define _SC_EXPR_NEST_MAX _SC_EXPR_NEST_MAX
#define _SC_LINE_MAX _SC_LINE_MAX
#define _SC_RE_DUP_MAX _SC_RE_DUP_MAX
#define _SC_CHARCLASS_NAME_MAX _SC_CHARCLASS_NAME_MAX
#define _SC_2_VERSION _SC_2_VERSION
#define _SC_2_C_BIND _SC_2_C_BIND
#define _SC_2_C_DEV _SC_2_C_DEV
#define _SC_2_FORT_DEV _SC_2_FORT_DEV
#define _SC_2_FORT_RUN _SC_2_FORT_RUN
#define _SC_2_SW_DEV _SC_2_SW_DEV
#define _SC_2_LOCALEDEF _SC_2_LOCALEDEF
#define _SC_PII _SC_PII
#define _SC_PII_XTI _SC_PII_XTI
#define _SC_PII_SOCKET _SC_PII_SOCKET
#define _SC_PII_INTERNET _SC_PII_INTERNET
#define _SC_PII_OSI _SC_PII_OSI
#define _SC_POLL _SC_POLL
#define _SC_SELECT _SC_SELECT
#define _SC_UIO_MAXIOV _SC_UIO_MAXIOV
#define _SC_IOV_MAX _SC_IOV_MAX
#define _SC_PII_INTERNET_STREAM _SC_PII_INTERNET_STREAM
#define _SC_PII_INTERNET_DGRAM _SC_PII_INTERNET_DGRAM
#define _SC_PII_OSI_COTS _SC_PII_OSI_COTS
#define _SC_PII_OSI_CLTS _SC_PII_OSI_CLTS
#define _SC_PII_OSI_M _SC_PII_OSI_M
#define _SC_T_IOV_MAX _SC_T_IOV_MAX
#define _SC_THREADS _SC_THREADS
#define _SC_THREAD_SAFE_FUNCTIONS _SC_THREAD_SAFE_FUNCTIONS
#define _SC_GETGR_R_SIZE_MAX _SC_GETGR_R_SIZE_MAX
#define _SC_GETPW_R_SIZE_MAX _SC_GETPW_R_SIZE_MAX
#define _SC_LOGIN_NAME_MAX _SC_LOGIN_NAME_MAX
#define _SC_TTY_NAME_MAX _SC_TTY_NAME_MAX
#define _SC_THREAD_DESTRUCTOR_ITERATIONS _SC_THREAD_DESTRUCTOR_ITERATIONS
#define _SC_THREAD_KEYS_MAX _SC_THREAD_KEYS_MAX
#define _SC_THREAD_STACK_MIN _SC_THREAD_STACK_MIN
#define _SC_THREAD_THREADS_MAX _SC_THREAD_THREADS_MAX
#define _SC_THREAD_ATTR_STACKADDR _SC_THREAD_ATTR_STACKADDR
#define _SC_THREAD_ATTR_STACKSIZE _SC_THREAD_ATTR_STACKSIZE
#define _SC_THREAD_PRIORITY_SCHEDULING _SC_THREAD_PRIORITY_SCHEDULING
#define _SC_THREAD_PRIO_INHERIT _SC_THREAD_PRIO_INHERIT
#define _SC_THREAD_PRIO_PROTECT _SC_THREAD_PRIO_PROTECT
#define _SC_THREAD_PROCESS_SHARED _SC_THREAD_PROCESS_SHARED
#define _SC_NPROCESSORS_CONF _SC_NPROCESSORS_CONF
#define _SC_NPROCESSORS_ONLN _SC_NPROCESSORS_ONLN
#define _SC_PHYS_PAGES _SC_PHYS_PAGES
#define _SC_AVPHYS_PAGES _SC_AVPHYS_PAGES
#define _SC_ATEXIT_MAX _SC_ATEXIT_MAX
#define _SC_PASS_MAX _SC_PASS_MAX
#define _SC_XOPEN_VERSION _SC_XOPEN_VERSION
#define _SC_XOPEN_XCU_VERSION _SC_XOPEN_XCU_VERSION
#define _SC_XOPEN_UNIX _SC_XOPEN_UNIX
#define _SC_XOPEN_CRYPT _SC_XOPEN_CRYPT
#define _SC_XOPEN_ENH_I18N _SC_XOPEN_ENH_I18N
#define _SC_XOPEN_SHM _SC_XOPEN_SHM
#define _SC_2_CHAR_TERM _SC_2_CHAR_TERM
#define _SC_2_C_VERSION _SC_2_C_VERSION
#define _SC_2_UPE _SC_2_UPE
#define _SC_XOPEN_XPG2 _SC_XOPEN_XPG2
#define _SC_XOPEN_XPG3 _SC_XOPEN_XPG3
#define _SC_XOPEN_XPG4 _SC_XOPEN_XPG4
#define _SC_CHAR_BIT _SC_CHAR_BIT
#define _SC_CHAR_MAX _SC_CHAR_MAX
#define _SC_CHAR_MIN _SC_CHAR_MIN
#define _SC_INT_MAX _SC_INT_MAX
#define _SC_INT_MIN _SC_INT_MIN
#define _SC_LONG_BIT _SC_LONG_BIT
#define _SC_WORD_BIT _SC_WORD_BIT
#define _SC_MB_LEN_MAX _SC_MB_LEN_MAX
#define _SC_NZERO _SC_NZERO
#define _SC_SSIZE_MAX _SC_SSIZE_MAX
#define _SC_SCHAR_MAX _SC_SCHAR_MAX
#define _SC_SCHAR_MIN _SC_SCHAR_MIN
#define _SC_SHRT_MAX _SC_SHRT_MAX
#define _SC_SHRT_MIN _SC_SHRT_MIN
#define _SC_UCHAR_MAX _SC_UCHAR_MAX
#define _SC_UINT_MAX _SC_UINT_MAX
#define _SC_ULONG_MAX _SC_ULONG_MAX
#define _SC_USHRT_MAX _SC_USHRT_MAX
#define _SC_NL_ARGMAX _SC_NL_ARGMAX
#define _SC_NL_LANGMAX _SC_NL_LANGMAX
#define _SC_NL_MSGMAX _SC_NL_MSGMAX
#define _SC_NL_NMAX _SC_NL_NMAX
#define _SC_NL_SETMAX _SC_NL_SETMAX
#define _SC_NL_TEXTMAX _SC_NL_TEXTMAX
#define _SC_XBS5_ILP32_OFF32 _SC_XBS5_ILP32_OFF32
#define _SC_XBS5_ILP32_OFFBIG _SC_XBS5_ILP32_OFFBIG
#define _SC_XBS5_LP64_OFF64 _SC_XBS5_LP64_OFF64
#define _SC_XBS5_LPBIG_OFFBIG _SC_XBS5_LPBIG_OFFBIG
#define _SC_XOPEN_LEGACY _SC_XOPEN_LEGACY
#define _SC_XOPEN_REALTIME _SC_XOPEN_REALTIME
#define _SC_XOPEN_REALTIME_THREADS _SC_XOPEN_REALTIME_THREADS
#define _SC_ADVISORY_INFO _SC_ADVISORY_INFO
#define _SC_BARRIERS _SC_BARRIERS
#define _SC_BASE _SC_BASE
#define _SC_C_LANG_SUPPORT _SC_C_LANG_SUPPORT
#define _SC_C_LANG_SUPPORT_R _SC_C_LANG_SUPPORT_R
#define _SC_CLOCK_SELECTION _SC_CLOCK_SELECTION
#define _SC_CPUTIME _SC_CPUTIME
#define _SC_THREAD_CPUTIME _SC_THREAD_CPUTIME
#define _SC_DEVICE_IO _SC_DEVICE_IO
#define _SC_DEVICE_SPECIFIC _SC_DEVICE_SPECIFIC
#define _SC_DEVICE_SPECIFIC_R _SC_DEVICE_SPECIFIC_R
#define _SC_FD_MGMT _SC_FD_MGMT
#define _SC_FIFO _SC_FIFO
#define _SC_PIPE _SC_PIPE
#define _SC_FILE_ATTRIBUTES _SC_FILE_ATTRIBUTES
#define _SC_FILE_LOCKING _SC_FILE_LOCKING
#define _SC_FILE_SYSTEM _SC_FILE_SYSTEM
#define _SC_MONOTONIC_CLOCK _SC_MONOTONIC_CLOCK
#define _SC_MULTI_PROCESS _SC_MULTI_PROCESS
#define _SC_SINGLE_PROCESS _SC_SINGLE_PROCESS
#define _SC_NETWORKING _SC_NETWORKING
#define _SC_READER_WRITER_LOCKS _SC_READER_WRITER_LOCKS
#define _SC_SPIN_LOCKS _SC_SPIN_LOCKS
#define _SC_REGEXP _SC_REGEXP
#define _SC_REGEX_VERSION _SC_REGEX_VERSION
#define _SC_SHELL _SC_SHELL
#define _SC_SIGNALS _SC_SIGNALS
#define _SC_SPAWN _SC_SPAWN
#define _SC_SPORADIC_SERVER _SC_SPORADIC_SERVER
#define _SC_THREAD_SPORADIC_SERVER _SC_THREAD_SPORADIC_SERVER
#define _SC_SYSTEM_DATABASE _SC_SYSTEM_DATABASE
#define _SC_SYSTEM_DATABASE_R _SC_SYSTEM_DATABASE_R
#define _SC_TIMEOUTS _SC_TIMEOUTS
#define _SC_TYPED_MEMORY_OBJECTS _SC_TYPED_MEMORY_OBJECTS
#define _SC_USER_GROUPS _SC_USER_GROUPS
#define _SC_USER_GROUPS_R _SC_USER_GROUPS_R
#define _SC_2_PBS _SC_2_PBS
#define _SC_2_PBS_ACCOUNTING _SC_2_PBS_ACCOUNTING
#define _SC_2_PBS_LOCATE _SC_2_PBS_LOCATE
#define _SC_2_PBS_MESSAGE _SC_2_PBS_MESSAGE
#define _SC_2_PBS_TRACK _SC_2_PBS_TRACK
#define _SC_SYMLOOP_MAX _SC_SYMLOOP_MAX
#define _SC_STREAMS _SC_STREAMS
#define _SC_2_PBS_CHECKPOINT _SC_2_PBS_CHECKPOINT
#define _SC_V6_ILP32_OFF32 _SC_V6_ILP32_OFF32
#define _SC_V6_ILP32_OFFBIG _SC_V6_ILP32_OFFBIG
#define _SC_V6_LP64_OFF64 _SC_V6_LP64_OFF64
#define _SC_V6_LPBIG_OFFBIG _SC_V6_LPBIG_OFFBIG
#define _SC_HOST_NAME_MAX _SC_HOST_NAME_MAX
#define _SC_TRACE _SC_TRACE
#define _SC_TRACE_EVENT_FILTER _SC_TRACE_EVENT_FILTER
#define _SC_TRACE_INHERIT _SC_TRACE_INHERIT
#define _SC_TRACE_LOG _SC_TRACE_LOG
#define _SC_LEVEL1_ICACHE_SIZE _SC_LEVEL1_ICACHE_SIZE
#define _SC_LEVEL1_ICACHE_ASSOC _SC_LEVEL1_ICACHE_ASSOC
#define _SC_LEVEL1_ICACHE_LINESIZE _SC_LEVEL1_ICACHE_LINESIZE
#define _SC_LEVEL1_DCACHE_SIZE _SC_LEVEL1_DCACHE_SIZE
#define _SC_LEVEL1_DCACHE_ASSOC _SC_LEVEL1_DCACHE_ASSOC
#define _SC_LEVEL1_DCACHE_LINESIZE _SC_LEVEL1_DCACHE_LINESIZE
#define _SC_LEVEL2_CACHE_SIZE _SC_LEVEL2_CACHE_SIZE
#define _SC_LEVEL2_CACHE_ASSOC _SC_LEVEL2_CACHE_ASSOC
#define _SC_LEVEL2_CACHE_LINESIZE _SC_LEVEL2_CACHE_LINESIZE
#define _SC_LEVEL3_CACHE_SIZE _SC_LEVEL3_CACHE_SIZE
#define _SC_LEVEL3_CACHE_ASSOC _SC_LEVEL3_CACHE_ASSOC
#define _SC_LEVEL3_CACHE_LINESIZE _SC_LEVEL3_CACHE_LINESIZE
#define _SC_LEVEL4_CACHE_SIZE _SC_LEVEL4_CACHE_SIZE
#define _SC_LEVEL4_CACHE_ASSOC _SC_LEVEL4_CACHE_ASSOC
#define _SC_LEVEL4_CACHE_LINESIZE _SC_LEVEL4_CACHE_LINESIZE
#define _SC_IPV6 _SC_IPV6
#define _SC_RAW_SOCKETS _SC_RAW_SOCKETS
#define _SC_V7_ILP32_OFF32 _SC_V7_ILP32_OFF32
#define _SC_V7_ILP32_OFFBIG _SC_V7_ILP32_OFFBIG
#define _SC_V7_LP64_OFF64 _SC_V7_LP64_OFF64
#define _SC_V7_LPBIG_OFFBIG _SC_V7_LPBIG_OFFBIG
#define _SC_SS_REPL_MAX _SC_SS_REPL_MAX
#define _SC_TRACE_EVENT_NAME_MAX _SC_TRACE_EVENT_NAME_MAX
#define _SC_TRACE_NAME_MAX _SC_TRACE_NAME_MAX
#define _SC_TRACE_SYS_MAX _SC_TRACE_SYS_MAX
#define _SC_TRACE_USER_EVENT_MAX _SC_TRACE_USER_EVENT_MAX
#define _SC_XOPEN_STREAMS _SC_XOPEN_STREAMS
#define _SC_THREAD_ROBUST_PRIO_INHERIT _SC_THREAD_ROBUST_PRIO_INHERIT
#define _SC_THREAD_ROBUST_PRIO_PROTECT _SC_THREAD_ROBUST_PRIO_PROTECT
#define _CS_PATH _CS_PATH
#define _CS_V6_WIDTH_RESTRICTED_ENVS _CS_V6_WIDTH_RESTRICTED_ENVS
#define _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS _CS_V6_WIDTH_RESTRICTED_ENVS
#define _CS_GNU_LIBC_VERSION _CS_GNU_LIBC_VERSION
#define _CS_GNU_LIBPTHREAD_VERSION _CS_GNU_LIBPTHREAD_VERSION
#define _CS_V5_WIDTH_RESTRICTED_ENVS _CS_V5_WIDTH_RESTRICTED_ENVS
#define _CS_POSIX_V5_WIDTH_RESTRICTED_ENVS _CS_V5_WIDTH_RESTRICTED_ENVS
#define _CS_V7_WIDTH_RESTRICTED_ENVS _CS_V7_WIDTH_RESTRICTED_ENVS
#define _CS_POSIX_V7_WIDTH_RESTRICTED_ENVS _CS_V7_WIDTH_RESTRICTED_ENVS
#define _CS_LFS_CFLAGS _CS_LFS_CFLAGS
#define _CS_LFS_LDFLAGS _CS_LFS_LDFLAGS
#define _CS_LFS_LIBS _CS_LFS_LIBS
#define _CS_LFS_LINTFLAGS _CS_LFS_LINTFLAGS
#define _CS_LFS64_CFLAGS _CS_LFS64_CFLAGS
#define _CS_LFS64_LDFLAGS _CS_LFS64_LDFLAGS
#define _CS_LFS64_LIBS _CS_LFS64_LIBS
#define _CS_LFS64_LINTFLAGS _CS_LFS64_LINTFLAGS
#define _CS_XBS5_ILP32_OFF32_CFLAGS _CS_XBS5_ILP32_OFF32_CFLAGS
#define _CS_XBS5_ILP32_OFF32_LDFLAGS _CS_XBS5_ILP32_OFF32_LDFLAGS
#define _CS_XBS5_ILP32_OFF32_LIBS _CS_XBS5_ILP32_OFF32_LIBS
#define _CS_XBS5_ILP32_OFF32_LINTFLAGS _CS_XBS5_ILP32_OFF32_LINTFLAGS
#define _CS_XBS5_ILP32_OFFBIG_CFLAGS _CS_XBS5_ILP32_OFFBIG_CFLAGS
#define _CS_XBS5_ILP32_OFFBIG_LDFLAGS _CS_XBS5_ILP32_OFFBIG_LDFLAGS
#define _CS_XBS5_ILP32_OFFBIG_LIBS _CS_XBS5_ILP32_OFFBIG_LIBS
#define _CS_XBS5_ILP32_OFFBIG_LINTFLAGS _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
#define _CS_XBS5_LP64_OFF64_CFLAGS _CS_XBS5_LP64_OFF64_CFLAGS
#define _CS_XBS5_LP64_OFF64_LDFLAGS _CS_XBS5_LP64_OFF64_LDFLAGS
#define _CS_XBS5_LP64_OFF64_LIBS _CS_XBS5_LP64_OFF64_LIBS
#define _CS_XBS5_LP64_OFF64_LINTFLAGS _CS_XBS5_LP64_OFF64_LINTFLAGS
#define _CS_XBS5_LPBIG_OFFBIG_CFLAGS _CS_XBS5_LPBIG_OFFBIG_CFLAGS
#define _CS_XBS5_LPBIG_OFFBIG_LDFLAGS _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
#define _CS_XBS5_LPBIG_OFFBIG_LIBS _CS_XBS5_LPBIG_OFFBIG_LIBS
#define _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
#define _CS_POSIX_V6_ILP32_OFF32_CFLAGS _CS_POSIX_V6_ILP32_OFF32_CFLAGS
#define _CS_POSIX_V6_ILP32_OFF32_LDFLAGS _CS_POSIX_V6_ILP32_OFF32_LDFLAGS
#define _CS_POSIX_V6_ILP32_OFF32_LIBS _CS_POSIX_V6_ILP32_OFF32_LIBS
#define _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS
#define _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS
#define _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS
#define _CS_POSIX_V6_ILP32_OFFBIG_LIBS _CS_POSIX_V6_ILP32_OFFBIG_LIBS
#define _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS
#define _CS_POSIX_V6_LP64_OFF64_CFLAGS _CS_POSIX_V6_LP64_OFF64_CFLAGS
#define _CS_POSIX_V6_LP64_OFF64_LDFLAGS _CS_POSIX_V6_LP64_OFF64_LDFLAGS
#define _CS_POSIX_V6_LP64_OFF64_LIBS _CS_POSIX_V6_LP64_OFF64_LIBS
#define _CS_POSIX_V6_LP64_OFF64_LINTFLAGS _CS_POSIX_V6_LP64_OFF64_LINTFLAGS
#define _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS
#define _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS
#define _CS_POSIX_V6_LPBIG_OFFBIG_LIBS _CS_POSIX_V6_LPBIG_OFFBIG_LIBS
#define _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS
#define _CS_POSIX_V7_ILP32_OFF32_CFLAGS _CS_POSIX_V7_ILP32_OFF32_CFLAGS
#define _CS_POSIX_V7_ILP32_OFF32_LDFLAGS _CS_POSIX_V7_ILP32_OFF32_LDFLAGS
#define _CS_POSIX_V7_ILP32_OFF32_LIBS _CS_POSIX_V7_ILP32_OFF32_LIBS
#define _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS
#define _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS
#define _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS
#define _CS_POSIX_V7_ILP32_OFFBIG_LIBS _CS_POSIX_V7_ILP32_OFFBIG_LIBS
#define _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS
#define _CS_POSIX_V7_LP64_OFF64_CFLAGS _CS_POSIX_V7_LP64_OFF64_CFLAGS
#define _CS_POSIX_V7_LP64_OFF64_LDFLAGS _CS_POSIX_V7_LP64_OFF64_LDFLAGS
#define _CS_POSIX_V7_LP64_OFF64_LIBS _CS_POSIX_V7_LP64_OFF64_LIBS
#define _CS_POSIX_V7_LP64_OFF64_LINTFLAGS _CS_POSIX_V7_LP64_OFF64_LINTFLAGS
#define _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS
#define _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS
#define _CS_POSIX_V7_LPBIG_OFFBIG_LIBS _CS_POSIX_V7_LPBIG_OFFBIG_LIBS
#define _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS
#define _CS_V6_ENV _CS_V6_ENV
#define _CS_V7_ENV _CS_V7_ENV
#define _GETOPT_POSIX_H 1
#define _GETOPT_CORE_H 1
#define F_ULOCK 0
#define F_LOCK 1
#define F_TLOCK 2
#define F_TEST 3
#define TEMP_FAILURE_RETRY(expression) (__extension__ ({ long int __result; do __result = (long int) (expression); while (__result == -1L && errno == EINTR); __result; }))
#define RUBY_MISSING_H 1
#define _MATH_H 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define _BITS_LIBM_SIMD_DECL_STUBS_H 1
#define __DECL_SIMD_cos 
#define __DECL_SIMD_cosf 
#define __DECL_SIMD_cosl 
#define __DECL_SIMD_cosf16 
#define __DECL_SIMD_cosf32 
#define __DECL_SIMD_cosf64 
#define __DECL_SIMD_cosf128 
#define __DECL_SIMD_cosf32x 
#define __DECL_SIMD_cosf64x 
#define __DECL_SIMD_cosf128x 
#define __DECL_SIMD_sin 
#define __DECL_SIMD_sinf 
#define __DECL_SIMD_sinl 
#define __DECL_SIMD_sinf16 
#define __DECL_SIMD_sinf32 
#define __DECL_SIMD_sinf64 
#define __DECL_SIMD_sinf128 
#define __DECL_SIMD_sinf32x 
#define __DECL_SIMD_sinf64x 
#define __DECL_SIMD_sinf128x 
#define __DECL_SIMD_sincos 
#define __DECL_SIMD_sincosf 
#define __DECL_SIMD_sincosl 
#define __DECL_SIMD_sincosf16 
#define __DECL_SIMD_sincosf32 
#define __DECL_SIMD_sincosf64 
#define __DECL_SIMD_sincosf128 
#define __DECL_SIMD_sincosf32x 
#define __DECL_SIMD_sincosf64x 
#define __DECL_SIMD_sincosf128x 
#define __DECL_SIMD_log 
#define __DECL_SIMD_logf 
#define __DECL_SIMD_logl 
#define __DECL_SIMD_logf16 
#define __DECL_SIMD_logf32 
#define __DECL_SIMD_logf64 
#define __DECL_SIMD_logf128 
#define __DECL_SIMD_logf32x 
#define __DECL_SIMD_logf64x 
#define __DECL_SIMD_logf128x 
#define __DECL_SIMD_exp 
#define __DECL_SIMD_expf 
#define __DECL_SIMD_expl 
#define __DECL_SIMD_expf16 
#define __DECL_SIMD_expf32 
#define __DECL_SIMD_expf64 
#define __DECL_SIMD_expf128 
#define __DECL_SIMD_expf32x 
#define __DECL_SIMD_expf64x 
#define __DECL_SIMD_expf128x 
#define __DECL_SIMD_pow 
#define __DECL_SIMD_powf 
#define __DECL_SIMD_powl 
#define __DECL_SIMD_powf16 
#define __DECL_SIMD_powf32 
#define __DECL_SIMD_powf64 
#define __DECL_SIMD_powf128 
#define __DECL_SIMD_powf32x 
#define __DECL_SIMD_powf64x 
#define __DECL_SIMD_powf128x 
#define HUGE_VAL (__builtin_huge_val ())
#define HUGE_VALF (__builtin_huge_valf ())
#define HUGE_VALL (__builtin_huge_vall ())
#define HUGE_VAL_F32 (__builtin_huge_valf32 ())
#define HUGE_VAL_F64 (__builtin_huge_valf64 ())
#define HUGE_VAL_F128 (__builtin_huge_valf128 ())
#define HUGE_VAL_F32X (__builtin_huge_valf32x ())
#define HUGE_VAL_F64X (__builtin_huge_valf64x ())
#define INFINITY (__builtin_inff ())
#define NAN (__builtin_nanf (""))
#define SNANF (__builtin_nansf (""))
#define SNAN (__builtin_nans (""))
#define SNANL (__builtin_nansl (""))
#define SNANF32 (__builtin_nansf32 (""))
#define SNANF64 (__builtin_nansf64 (""))
#define SNANF128 (__builtin_nansf128 (""))
#define SNANF32X (__builtin_nansf32x (""))
#define SNANF64X (__builtin_nansf64x (""))
#define __GLIBC_FLT_EVAL_METHOD __FLT_EVAL_METHOD__
#define __FP_LOGB0_IS_MIN 1
#define __FP_LOGBNAN_IS_MIN 1
#define FP_ILOGB0 (-2147483647 - 1)
#define FP_ILOGBNAN (-2147483647 - 1)
#define __FP_LONG_MAX 0x7fffffffffffffffL
#define FP_LLOGB0 (-__FP_LONG_MAX - 1)
#define FP_LLOGBNAN (-__FP_LONG_MAX - 1)
#define FP_INT_UPWARD 0
#define FP_INT_DOWNWARD 1
#define FP_INT_TOWARDZERO 2
#define FP_INT_TONEARESTFROMZERO 3
#define FP_INT_TONEAREST 4
#define __SIMD_DECL(function) __CONCAT (__DECL_SIMD_, function)
#define __MATHCALL_VEC(function,suffix,args) __SIMD_DECL (__MATH_PRECNAME (function, suffix)) __MATHCALL (function, suffix, args)
#define __MATHDECL_VEC(type,function,suffix,args) __SIMD_DECL (__MATH_PRECNAME (function, suffix)) __MATHDECL(type, function,suffix, args)
#define __MATHCALL(function,suffix,args) __MATHDECL (_Mdouble_,function,suffix, args)
#define __MATHDECL(type,function,suffix,args) __MATHDECL_1(type, function,suffix, args); __MATHDECL_1(type, __CONCAT(__,function),suffix, args)
#define __MATHCALLX(function,suffix,args,attrib) __MATHDECLX (_Mdouble_,function,suffix, args, attrib)
#define __MATHDECLX(type,function,suffix,args,attrib) __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib)
#define __MATHDECL_1(type,function,suffix,args) extern type __MATH_PRECNAME(function,suffix) args __THROW
#define _Mdouble_ double
#define __MATH_PRECNAME(name,r) __CONCAT(name,r)
#define __MATH_DECLARING_DOUBLE 1
#define __MATH_DECLARING_FLOATN 0
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ float
#define __MATH_PRECNAME(name,r) name ##f ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 0
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ long double
#define __MATH_PRECNAME(name,r) name ##l ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 0
#define __MATH_DECLARE_LDOUBLE 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ _Float32
#define __MATH_PRECNAME(name,r) name ##f32 ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ _Float64
#define __MATH_PRECNAME(name,r) name ##f64 ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ _Float128
#define __MATH_PRECNAME(name,r) name ##f128 ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ _Float32x
#define __MATH_PRECNAME(name,r) name ##f32x ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#define _Mdouble_ _Float64x
#define __MATH_PRECNAME(name,r) name ##f64x ##r
#define __MATH_DECLARING_DOUBLE 0
#define __MATH_DECLARING_FLOATN 1
#undef _Mdouble_
#undef __MATH_PRECNAME
#undef __MATH_DECLARING_DOUBLE
#undef __MATH_DECLARING_FLOATN
#undef __MATHDECL_1
#undef __MATHDECL
#undef __MATHCALL
#define __MATHCALL_NARROW_ARGS_1 (_Marg_ __x)
#define __MATHCALL_NARROW_ARGS_2 (_Marg_ __x, _Marg_ __y)
#define __MATHCALL_NARROW_ARGS_3 (_Marg_ __x, _Marg_ __y, _Marg_ __z)
#define __MATHCALL_NARROW_NORMAL(func,nargs) extern _Mret_ func __MATHCALL_NARROW_ARGS_ ## nargs __THROW
#define __MATHCALL_NARROW_REDIR(func,redir,nargs) extern _Mret_ __REDIRECT_NTH (func, __MATHCALL_NARROW_ARGS_ ## nargs, redir)
#define __MATHCALL_NARROW(func,redir,nargs) __MATHCALL_NARROW_NORMAL (func, nargs)
#define _Mret_ float
#define _Marg_ double
#define __MATHCALL_NAME(name) f ## name
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ float
#define _Marg_ long double
#define __MATHCALL_NAME(name) f ## name ## l
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ double
#define _Marg_ long double
#define __MATHCALL_NAME(name) d ## name ## l
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32
#define _Marg_ _Float32x
#define __MATHCALL_NAME(name) f32 ## name ## f32x
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32
#define _Marg_ _Float64
#define __MATHCALL_NAME(name) f32 ## name ## f64
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32
#define _Marg_ _Float64x
#define __MATHCALL_NAME(name) f32 ## name ## f64x
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32
#define _Marg_ _Float128
#define __MATHCALL_NAME(name) f32 ## name ## f128
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32x
#define _Marg_ _Float64
#define __MATHCALL_NAME(name) f32x ## name ## f64
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32x
#define _Marg_ _Float64x
#define __MATHCALL_NAME(name) f32x ## name ## f64x
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float32x
#define _Marg_ _Float128
#define __MATHCALL_NAME(name) f32x ## name ## f128
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float64
#define _Marg_ _Float64x
#define __MATHCALL_NAME(name) f64 ## name ## f64x
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float64
#define _Marg_ _Float128
#define __MATHCALL_NAME(name) f64 ## name ## f128
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#define _Mret_ _Float64x
#define _Marg_ _Float128
#define __MATHCALL_NAME(name) f64x ## name ## f128
#undef _Mret_
#undef _Marg_
#undef __MATHCALL_NAME
#undef __MATHCALL_NARROW_ARGS_1
#undef __MATHCALL_NARROW_ARGS_2
#undef __MATHCALL_NARROW_ARGS_3
#undef __MATHCALL_NARROW_NORMAL
#undef __MATHCALL_NARROW_REDIR
#undef __MATHCALL_NARROW
#define __MATH_TG_F32(FUNC,ARGS) _Float32: FUNC ## f ARGS,
#define __MATH_TG_F64X(FUNC,ARGS) _Float64x: FUNC ## l ARGS,
#define __MATH_TG(TG_ARG,FUNC,ARGS) _Generic ((TG_ARG), float: FUNC ## f ARGS, __MATH_TG_F32 (FUNC, ARGS) default: FUNC ARGS, long double: FUNC ## l ARGS, __MATH_TG_F64X (FUNC, ARGS) _Float128: FUNC ## f128 ARGS)
#define FP_NAN 0
#define FP_INFINITE 1
#define FP_ZERO 2
#define FP_SUBNORMAL 3
#define FP_NORMAL 4
#define fpclassify(x) __builtin_fpclassify (FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
#define signbit(x) __builtin_signbit (x)
#define isfinite(x) __builtin_isfinite (x)
#define isnormal(x) __builtin_isnormal (x)
#define isnan(x) __builtin_isnan (x)
#define isinf(x) __builtin_isinf_sign (x)
#define MATH_ERRNO 1
#define MATH_ERREXCEPT 2
#define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
#define __iscanonicalf(x) ((void) (__typeof (x)) (x), 1)
#define __iscanonical(x) ((void) (__typeof (x)) (x), 1)
#define __iscanonicalf128(x) ((void) (__typeof (x)) (x), 1)
#define iscanonical(x) __MATH_TG ((x), __iscanonical, (x))
#define issignaling(x) __MATH_TG ((x), __issignaling, (x))
#define issubnormal(x) (fpclassify (x) == FP_SUBNORMAL)
#define iszero(x) (((__typeof (x)) (x)) == 0)
#define MAXFLOAT 3.40282347e+38F
#define M_E 2.7182818284590452354
#define M_LOG2E 1.4426950408889634074
#define M_LOG10E 0.43429448190325182765
#define M_LN2 0.69314718055994530942
#define M_LN10 2.30258509299404568402
#define M_PI 3.14159265358979323846
#define M_PI_2 1.57079632679489661923
#define M_PI_4 0.78539816339744830962
#define M_1_PI 0.31830988618379067154
#define M_2_PI 0.63661977236758134308
#define M_2_SQRTPI 1.12837916709551257390
#define M_SQRT2 1.41421356237309504880
#define M_SQRT1_2 0.70710678118654752440
#define M_El 2.718281828459045235360287471352662498L
#define M_LOG2El 1.442695040888963407359924681001892137L
#define M_LOG10El 0.434294481903251827651128918916605082L
#define M_LN2l 0.693147180559945309417232121458176568L
#define M_LN10l 2.302585092994045684017991454684364208L
#define M_PIl 3.141592653589793238462643383279502884L
#define M_PI_2l 1.570796326794896619231321691639751442L
#define M_PI_4l 0.785398163397448309615660845819875721L
#define M_1_PIl 0.318309886183790671537767526745028724L
#define M_2_PIl 0.636619772367581343075535053490057448L
#define M_2_SQRTPIl 1.128379167095512573896158903121545172L
#define M_SQRT2l 1.414213562373095048801688724209698079L
#define M_SQRT1_2l 0.707106781186547524400844362104849039L
#define M_Ef32 __f32 (2.718281828459045235360287471352662498)
#define M_LOG2Ef32 __f32 (1.442695040888963407359924681001892137)
#define M_LOG10Ef32 __f32 (0.434294481903251827651128918916605082)
#define M_LN2f32 __f32 (0.693147180559945309417232121458176568)
#define M_LN10f32 __f32 (2.302585092994045684017991454684364208)
#define M_PIf32 __f32 (3.141592653589793238462643383279502884)
#define M_PI_2f32 __f32 (1.570796326794896619231321691639751442)
#define M_PI_4f32 __f32 (0.785398163397448309615660845819875721)
#define M_1_PIf32 __f32 (0.318309886183790671537767526745028724)
#define M_2_PIf32 __f32 (0.636619772367581343075535053490057448)
#define M_2_SQRTPIf32 __f32 (1.128379167095512573896158903121545172)
#define M_SQRT2f32 __f32 (1.414213562373095048801688724209698079)
#define M_SQRT1_2f32 __f32 (0.707106781186547524400844362104849039)
#define M_Ef64 __f64 (2.718281828459045235360287471352662498)
#define M_LOG2Ef64 __f64 (1.442695040888963407359924681001892137)
#define M_LOG10Ef64 __f64 (0.434294481903251827651128918916605082)
#define M_LN2f64 __f64 (0.693147180559945309417232121458176568)
#define M_LN10f64 __f64 (2.302585092994045684017991454684364208)
#define M_PIf64 __f64 (3.141592653589793238462643383279502884)
#define M_PI_2f64 __f64 (1.570796326794896619231321691639751442)
#define M_PI_4f64 __f64 (0.785398163397448309615660845819875721)
#define M_1_PIf64 __f64 (0.318309886183790671537767526745028724)
#define M_2_PIf64 __f64 (0.636619772367581343075535053490057448)
#define M_2_SQRTPIf64 __f64 (1.128379167095512573896158903121545172)
#define M_SQRT2f64 __f64 (1.414213562373095048801688724209698079)
#define M_SQRT1_2f64 __f64 (0.707106781186547524400844362104849039)
#define M_Ef128 __f128 (2.718281828459045235360287471352662498)
#define M_LOG2Ef128 __f128 (1.442695040888963407359924681001892137)
#define M_LOG10Ef128 __f128 (0.434294481903251827651128918916605082)
#define M_LN2f128 __f128 (0.693147180559945309417232121458176568)
#define M_LN10f128 __f128 (2.302585092994045684017991454684364208)
#define M_PIf128 __f128 (3.141592653589793238462643383279502884)
#define M_PI_2f128 __f128 (1.570796326794896619231321691639751442)
#define M_PI_4f128 __f128 (0.785398163397448309615660845819875721)
#define M_1_PIf128 __f128 (0.318309886183790671537767526745028724)
#define M_2_PIf128 __f128 (0.636619772367581343075535053490057448)
#define M_2_SQRTPIf128 __f128 (1.128379167095512573896158903121545172)
#define M_SQRT2f128 __f128 (1.414213562373095048801688724209698079)
#define M_SQRT1_2f128 __f128 (0.707106781186547524400844362104849039)
#define M_Ef32x __f32x (2.718281828459045235360287471352662498)
#define M_LOG2Ef32x __f32x (1.442695040888963407359924681001892137)
#define M_LOG10Ef32x __f32x (0.434294481903251827651128918916605082)
#define M_LN2f32x __f32x (0.693147180559945309417232121458176568)
#define M_LN10f32x __f32x (2.302585092994045684017991454684364208)
#define M_PIf32x __f32x (3.141592653589793238462643383279502884)
#define M_PI_2f32x __f32x (1.570796326794896619231321691639751442)
#define M_PI_4f32x __f32x (0.785398163397448309615660845819875721)
#define M_1_PIf32x __f32x (0.318309886183790671537767526745028724)
#define M_2_PIf32x __f32x (0.636619772367581343075535053490057448)
#define M_2_SQRTPIf32x __f32x (1.128379167095512573896158903121545172)
#define M_SQRT2f32x __f32x (1.414213562373095048801688724209698079)
#define M_SQRT1_2f32x __f32x (0.707106781186547524400844362104849039)
#define M_Ef64x __f64x (2.718281828459045235360287471352662498)
#define M_LOG2Ef64x __f64x (1.442695040888963407359924681001892137)
#define M_LOG10Ef64x __f64x (0.434294481903251827651128918916605082)
#define M_LN2f64x __f64x (0.693147180559945309417232121458176568)
#define M_LN10f64x __f64x (2.302585092994045684017991454684364208)
#define M_PIf64x __f64x (3.141592653589793238462643383279502884)
#define M_PI_2f64x __f64x (1.570796326794896619231321691639751442)
#define M_PI_4f64x __f64x (0.785398163397448309615660845819875721)
#define M_1_PIf64x __f64x (0.318309886183790671537767526745028724)
#define M_2_PIf64x __f64x (0.636619772367581343075535053490057448)
#define M_2_SQRTPIf64x __f64x (1.128379167095512573896158903121545172)
#define M_SQRT2f64x __f64x (1.414213562373095048801688724209698079)
#define M_SQRT1_2f64x __f64x (0.707106781186547524400844362104849039)
#define isgreater(x,y) __builtin_isgreater(x, y)
#define isgreaterequal(x,y) __builtin_isgreaterequal(x, y)
#define isless(x,y) __builtin_isless(x, y)
#define islessequal(x,y) __builtin_islessequal(x, y)
#define islessgreater(x,y) __builtin_islessgreater(x, y)
#define isunordered(x,y) __builtin_isunordered(x, y)
#define __MATH_INLINE __extern_always_inline
#define __MATH_EVAL_FMT2(x,y) ((x) + (y) + 0.0f)
#define iseqsig(x,y) __MATH_TG (__MATH_EVAL_FMT2 (x, y), __iseqsig, ((x), (y)))
#undef RUBY_EXTERN
#define RUBY_EXTERN extern
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RUBY 
#undef _
#define _(args) args
#undef __
#define __(args) args
#define ANYARGS 
#pragma GCC visibility push(default)
#define xmalloc ruby_xmalloc
#define xmalloc2 ruby_xmalloc2
#define xcalloc ruby_xcalloc
#define xrealloc ruby_xrealloc
#define xrealloc2 ruby_xrealloc2
#define xfree ruby_xfree
#define RUBY_ATTR_ALLOC_SIZE(params) __attribute__ ((alloc_size params))
#define RUBY_ATTR_MALLOC __attribute__((__malloc__))
#define RUBY_ATTR_RETURNS_NONNULL __attribute__((__returns_nonnull__))
#define USE_GC_MALLOC_OBJ_INFO_DETAILS 0
#define STRINGIZE(expr) STRINGIZE0(expr)
#define STRINGIZE0(expr) #expr
#define HAVE_TRUE_LONG_LONG 1
#define LONG_LONG long long
#undef RUBY_EXTERN
#define FALSE 0
#define TRUE 1
#define MJIT_FUNC_EXPORTED RUBY_FUNC_EXPORTED
#define MJIT_SYMBOL_EXPORT_BEGIN RUBY_SYMBOL_EXPORT_BEGIN
#define MJIT_SYMBOL_EXPORT_END RUBY_SYMBOL_EXPORT_END
#define RUBY_EXTERN extern
#define EXTERN _Pragma("message \"EXTERN is deprecated, use RUBY_EXTERN instead\""); RUBY_EXTERN
#define RUBY_MBCHAR_MAXSIZE INT_MAX
#define FLUSH_REGISTER_WINDOWS ((void)0)
#define PATH_SEP ":"
#define PATH_SEP_CHAR PATH_SEP[0]
#define PATH_ENV "PATH"
#define CASEFOLD_FILESYSTEM 0
#define RUBY_ALIAS_FUNCTION(prot,name,args) RUBY_ALIAS_FUNCTION_TYPE(VALUE, prot, name, args)
#define UNALIGNED_WORD_ACCESS 1
#define PACKED_STRUCT_UNALIGNED(x) PACKED_STRUCT(x)
#define NORETURN_STYLE_NEW 1
#pragma GCC visibility pop
#define RUBY_ASSERT_H 
#define RUBY_ASSERT_FAIL(expr) rb_assert_failure(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, expr)
#define RUBY_ASSERT_MESG(expr,mesg) ((expr) ? (void)0 : RUBY_ASSERT_FAIL(mesg))
#define RUBY_ASSERT_MESG_WHEN(cond,expr,mesg) ((RUBY_DEBUG+0) ? RUBY_ASSERT_MESG((expr), mesg) : __builtin_choose_expr( __builtin_constant_p(cond), __builtin_choose_expr(cond, RUBY_ASSERT_MESG(expr, mesg), (void)0), RUBY_ASSERT_MESG(!(cond) || (expr), mesg)))
#define RUBY_ASSERT(expr) RUBY_ASSERT_MESG_WHEN((!RUBY_NDEBUG+0), expr, #expr)
#define RUBY_ASSERT_WHEN(cond,expr) RUBY_ASSERT_MESG_WHEN(cond, expr, #expr)
#define RUBY_ASSERT_ALWAYS(expr) RUBY_ASSERT_MESG_WHEN(TRUE, expr, #expr)
#define RUBY_DEBUG 0
#define RUBY_NDEBUG 0
#define ASSUME(x) (RB_LIKELY(!!(x)) ? (void)0 : UNREACHABLE)
#define UNREACHABLE_RETURN(val) UNREACHABLE
#define RUBY_MACRO_SELECT(base,n) TOKEN_PASTE(base, n)
#define _STDARG_H 
#define _ANSI_STDARG_H_ 
#undef __need___va_list
#define va_start(v,l) __builtin_va_start(v,l)
#define va_end(v) __builtin_va_end(v)
#define va_arg(v,l) __builtin_va_arg(v,l)
#define va_copy(d,s) __builtin_va_copy(d,s)
#define __va_copy(d,s) __builtin_va_copy(d,s)
#define _VA_LIST_ 
#define _VA_LIST 
#define _VA_LIST_T_H 
#define __va_list__ 
#pragma GCC visibility push(default)
#define SIGNED_VALUE long
#define SIZEOF_VALUE SIZEOF_LONG
#define PRI_VALUE_PREFIX "l"
#define PRI_INT_PREFIX ""
#define PRI_LONG_PREFIX "l"
#define PRI_SHORT_PREFIX "h"
#define PRI_64_PREFIX PRI_LONG_PREFIX
#define RUBY_PRI_VALUE_MARK "\v"
#define PRIdVALUE PRI_VALUE_PREFIX"d"
#define PRIoVALUE PRI_VALUE_PREFIX"o"
#define PRIuVALUE PRI_VALUE_PREFIX"u"
#define PRIxVALUE PRI_VALUE_PREFIX"x"
#define PRIXVALUE PRI_VALUE_PREFIX"X"
#define PRIsVALUE PRI_VALUE_PREFIX"i" RUBY_PRI_VALUE_MARK
#define PRIdPTRDIFF PRI_PTRDIFF_PREFIX"d"
#define PRIiPTRDIFF PRI_PTRDIFF_PREFIX"i"
#define PRIoPTRDIFF PRI_PTRDIFF_PREFIX"o"
#define PRIuPTRDIFF PRI_PTRDIFF_PREFIX"u"
#define PRIxPTRDIFF PRI_PTRDIFF_PREFIX"x"
#define PRIXPTRDIFF PRI_PTRDIFF_PREFIX"X"
#define PRIdSIZE PRI_SIZE_PREFIX"d"
#define PRIiSIZE PRI_SIZE_PREFIX"i"
#define PRIoSIZE PRI_SIZE_PREFIX"o"
#define PRIuSIZE PRI_SIZE_PREFIX"u"
#define PRIxSIZE PRI_SIZE_PREFIX"x"
#define PRIXSIZE PRI_SIZE_PREFIX"X"
#define _GCC_LIMITS_H_ 
#define _GCC_NEXT_LIMITS_H 
#define _LIBC_LIMITS_H_ 1
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION 
#undef __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
#undef __GLIBC_USE_LIB_EXT2
#define __GLIBC_USE_LIB_EXT2 1
#undef __GLIBC_USE_IEC_60559_BFP_EXT
#define __GLIBC_USE_IEC_60559_BFP_EXT 1
#undef __GLIBC_USE_IEC_60559_FUNCS_EXT
#define __GLIBC_USE_IEC_60559_FUNCS_EXT 1
#undef __GLIBC_USE_IEC_60559_TYPES_EXT
#define __GLIBC_USE_IEC_60559_TYPES_EXT 1
#define MB_LEN_MAX 16
#define LLONG_MIN (-LLONG_MAX-1)
#define LLONG_MAX __LONG_LONG_MAX__
#define ULLONG_MAX (LLONG_MAX * 2ULL + 1)
#define CHAR_WIDTH 8
#define SCHAR_WIDTH 8
#define UCHAR_WIDTH 8
#define SHRT_WIDTH 16
#define USHRT_WIDTH 16
#define INT_WIDTH 32
#define UINT_WIDTH 32
#define LONG_WIDTH __WORDSIZE
#define ULONG_WIDTH __WORDSIZE
#define LLONG_WIDTH 64
#define ULLONG_WIDTH 64
#define _BITS_POSIX1_LIM_H 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define _POSIX_AIO_LISTIO_MAX 2
#define _POSIX_AIO_MAX 1
#define _POSIX_ARG_MAX 4096
#define _POSIX_CHILD_MAX 25
#define _POSIX_DELAYTIMER_MAX 32
#define _POSIX_HOST_NAME_MAX 255
#define _POSIX_LINK_MAX 8
#define _POSIX_LOGIN_NAME_MAX 9
#define _POSIX_MAX_CANON 255
#define _POSIX_MAX_INPUT 255
#define _POSIX_MQ_OPEN_MAX 8
#define _POSIX_MQ_PRIO_MAX 32
#define _POSIX_NAME_MAX 14
#define _POSIX_NGROUPS_MAX 8
#define _POSIX_OPEN_MAX 20
#define _POSIX_FD_SETSIZE _POSIX_OPEN_MAX
#define _POSIX_PATH_MAX 256
#define _POSIX_PIPE_BUF 512
#define _POSIX_RE_DUP_MAX 255
#define _POSIX_RTSIG_MAX 8
#define _POSIX_SEM_NSEMS_MAX 256
#define _POSIX_SEM_VALUE_MAX 32767
#define _POSIX_SIGQUEUE_MAX 32
#define _POSIX_SSIZE_MAX 32767
#define _POSIX_STREAM_MAX 8
#define _POSIX_SYMLINK_MAX 255
#define _POSIX_SYMLOOP_MAX 8
#define _POSIX_TIMER_MAX 32
#define _POSIX_TTY_NAME_MAX 9
#define _POSIX_TZNAME_MAX 6
#define _POSIX_QLIMIT 1
#define _POSIX_HIWAT _POSIX_PIPE_BUF
#define _POSIX_UIO_MAXIOV 16
#define _POSIX_CLOCKRES_MIN 20000000
#define __undef_NR_OPEN 
#define __undef_LINK_MAX 
#define __undef_OPEN_MAX 
#define __undef_ARG_MAX 
#define _LINUX_LIMITS_H 
#define NR_OPEN 1024
#define NGROUPS_MAX 65536
#define ARG_MAX 131072
#define LINK_MAX 127
#define MAX_CANON 255
#define MAX_INPUT 255
#define NAME_MAX 255
#define PATH_MAX 4096
#define PIPE_BUF 4096
#define XATTR_NAME_MAX 255
#define XATTR_SIZE_MAX 65536
#define XATTR_LIST_MAX 65536
#define RTSIG_MAX 32
#undef NR_OPEN
#undef __undef_NR_OPEN
#undef LINK_MAX
#undef __undef_LINK_MAX
#undef OPEN_MAX
#undef __undef_OPEN_MAX
#undef ARG_MAX
#undef __undef_ARG_MAX
#define _POSIX_THREAD_KEYS_MAX 128
#define PTHREAD_KEYS_MAX 1024
#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
#define _POSIX_THREAD_THREADS_MAX 64
#undef PTHREAD_THREADS_MAX
#define AIO_PRIO_DELTA_MAX 20
#define PTHREAD_STACK_MIN 16384
#define DELAYTIMER_MAX 2147483647
#define TTY_NAME_MAX 32
#define LOGIN_NAME_MAX 256
#define HOST_NAME_MAX 64
#define MQ_PRIO_MAX 32768
#define SEM_VALUE_MAX (2147483647)
#define SSIZE_MAX LONG_MAX
#define _BITS_POSIX2_LIM_H 1
#define _POSIX2_BC_BASE_MAX 99
#define _POSIX2_BC_DIM_MAX 2048
#define _POSIX2_BC_SCALE_MAX 99
#define _POSIX2_BC_STRING_MAX 1000
#define _POSIX2_COLL_WEIGHTS_MAX 2
#define _POSIX2_EXPR_NEST_MAX 32
#define _POSIX2_LINE_MAX 2048
#define _POSIX2_RE_DUP_MAX 255
#define _POSIX2_CHARCLASS_NAME_MAX 14
#define BC_BASE_MAX _POSIX2_BC_BASE_MAX
#define BC_DIM_MAX _POSIX2_BC_DIM_MAX
#define BC_SCALE_MAX _POSIX2_BC_SCALE_MAX
#define BC_STRING_MAX _POSIX2_BC_STRING_MAX
#define COLL_WEIGHTS_MAX 255
#define EXPR_NEST_MAX _POSIX2_EXPR_NEST_MAX
#define LINE_MAX _POSIX2_LINE_MAX
#define CHARCLASS_NAME_MAX 2048
#define RE_DUP_MAX (0x7fff)
#define _XOPEN_LIM_H 1
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
#define _BITS_UIO_LIM_H 1
#define __IOV_MAX 1024
#define IOV_MAX __IOV_MAX
#define NL_ARGMAX _POSIX_ARG_MAX
#define NL_LANGMAX _POSIX2_LINE_MAX
#define NL_MSGMAX INT_MAX
#define NL_NMAX INT_MAX
#define NL_SETMAX INT_MAX
#define NL_TEXTMAX INT_MAX
#define NZERO 20
#define WORD_BIT 32
#define LONG_BIT 64
#undef _GCC_NEXT_LIMITS_H
#define _LIMITS_H___ 
#undef CHAR_BIT
#define CHAR_BIT __CHAR_BIT__
#undef SCHAR_MIN
#define SCHAR_MIN (-SCHAR_MAX - 1)
#undef SCHAR_MAX
#define SCHAR_MAX __SCHAR_MAX__
#undef UCHAR_MAX
#define UCHAR_MAX (SCHAR_MAX * 2 + 1)
#undef CHAR_MIN
#define CHAR_MIN SCHAR_MIN
#undef CHAR_MAX
#define CHAR_MAX SCHAR_MAX
#undef SHRT_MIN
#define SHRT_MIN (-SHRT_MAX - 1)
#undef SHRT_MAX
#define SHRT_MAX __SHRT_MAX__
#undef USHRT_MAX
#define USHRT_MAX (SHRT_MAX * 2 + 1)
#undef INT_MIN
#define INT_MIN (-INT_MAX - 1)
#undef INT_MAX
#define INT_MAX __INT_MAX__
#undef UINT_MAX
#define UINT_MAX (INT_MAX * 2U + 1U)
#undef LONG_MIN
#define LONG_MIN (-LONG_MAX - 1L)
#undef LONG_MAX
#define LONG_MAX __LONG_MAX__
#undef ULONG_MAX
#define ULONG_MAX (LONG_MAX * 2UL + 1UL)
#undef LLONG_MIN
#define LLONG_MIN (-LLONG_MAX - 1LL)
#undef LLONG_MAX
#define LLONG_MAX __LONG_LONG_MAX__
#undef ULLONG_MAX
#define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
#undef LONG_LONG_MIN
#define LONG_LONG_MIN (-LONG_LONG_MAX - 1LL)
#undef LONG_LONG_MAX
#define LONG_LONG_MAX __LONG_LONG_MAX__
#undef ULONG_LONG_MAX
#define ULONG_LONG_MAX (LONG_LONG_MAX * 2ULL + 1ULL)
#define RUBY_FIXNUM_MAX (LONG_MAX>>1)
#define RUBY_FIXNUM_MIN RSHIFT((long)LONG_MIN,1)
#define FIXNUM_MAX RUBY_FIXNUM_MAX
#define FIXNUM_MIN RUBY_FIXNUM_MIN
#define RB_INT2FIX(i) (((VALUE)(i))<<1 | RUBY_FIXNUM_FLAG)
#define INT2FIX(i) RB_INT2FIX(i)
#define RB_LONG2FIX(i) RB_INT2FIX(i)
#define LONG2FIX(i) RB_INT2FIX(i)
#define rb_fix_new(v) RB_INT2FIX(v)
#define rb_int_new(v) rb_int2inum(v)
#define rb_uint_new(v) rb_uint2inum(v)
#define LL2NUM(v) rb_ll2inum(v)
#define ULL2NUM(v) rb_ull2inum(v)
#define SIZET2NUM(v) ULONG2NUM(v)
#define SSIZET2NUM(v) LONG2NUM(v)
#define rb_long2int(n) rb_long2int_inline(n)
#define RB_FIX2LONG(x) ((long)RSHIFT((SIGNED_VALUE)(x),1))
#define RB_FIX2ULONG(x) ((unsigned long)RB_FIX2LONG(x))
#define RB_FIXNUM_P(f) (((int)(SIGNED_VALUE)(f))&RUBY_FIXNUM_FLAG)
#define RB_POSFIXABLE(f) ((f) < RUBY_FIXNUM_MAX+1)
#define RB_NEGFIXABLE(f) ((f) >= RUBY_FIXNUM_MIN)
#define RB_FIXABLE(f) (RB_POSFIXABLE(f) && RB_NEGFIXABLE(f))
#define FIX2LONG(x) RB_FIX2LONG(x)
#define FIX2ULONG(x) RB_FIX2ULONG(x)
#define FIXNUM_P(f) RB_FIXNUM_P(f)
#define POSFIXABLE(f) RB_POSFIXABLE(f)
#define NEGFIXABLE(f) RB_NEGFIXABLE(f)
#define FIXABLE(f) RB_FIXABLE(f)
#define RB_IMMEDIATE_P(x) ((VALUE)(x) & RUBY_IMMEDIATE_MASK)
#define IMMEDIATE_P(x) RB_IMMEDIATE_P(x)
#define RB_STATIC_SYM_P(x) (((VALUE)(x)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)
#define RB_DYNAMIC_SYM_P(x) (!RB_SPECIAL_CONST_P(x) && RB_BUILTIN_TYPE(x) == (RUBY_T_SYMBOL))
#define RB_SYMBOL_P(x) (RB_STATIC_SYM_P(x)||RB_DYNAMIC_SYM_P(x))
#define RB_ID2SYM(x) (rb_id2sym(x))
#define RB_SYM2ID(x) (rb_sym2id(x))
#define STATIC_SYM_P(x) RB_STATIC_SYM_P(x)
#define DYNAMIC_SYM_P(x) RB_DYNAMIC_SYM_P(x)
#define SYMBOL_P(x) RB_SYMBOL_P(x)
#define ID2SYM(x) RB_ID2SYM(x)
#define SYM2ID(x) RB_SYM2ID(x)
#define USE_FLONUM 1
#define RB_FLONUM_P(x) ((((int)(SIGNED_VALUE)(x))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG)
#define FLONUM_P(x) RB_FLONUM_P(x)
#define USE_SYMBOL_AS_METHOD_NAME 1
#define RUBY_Qfalse ((VALUE)RUBY_Qfalse)
#define RUBY_Qtrue ((VALUE)RUBY_Qtrue)
#define RUBY_Qnil ((VALUE)RUBY_Qnil)
#define RUBY_Qundef ((VALUE)RUBY_Qundef)
#define Qfalse RUBY_Qfalse
#define Qtrue RUBY_Qtrue
#define Qnil RUBY_Qnil
#define Qundef RUBY_Qundef
#define IMMEDIATE_MASK RUBY_IMMEDIATE_MASK
#define FIXNUM_FLAG RUBY_FIXNUM_FLAG
#define FLONUM_MASK RUBY_FLONUM_MASK
#define FLONUM_FLAG RUBY_FLONUM_FLAG
#define SYMBOL_FLAG RUBY_SYMBOL_FLAG
#define RB_TEST(v) !(((VALUE)(v) & (VALUE)~RUBY_Qnil) == 0)
#define RB_NIL_P(v) !((VALUE)(v) != RUBY_Qnil)
#define RTEST(v) RB_TEST(v)
#define NIL_P(v) RB_NIL_P(v)
#define CLASS_OF(v) rb_class_of((VALUE)(v))
#define T_NONE RUBY_T_NONE
#define T_NIL RUBY_T_NIL
#define T_OBJECT RUBY_T_OBJECT
#define T_CLASS RUBY_T_CLASS
#define T_ICLASS RUBY_T_ICLASS
#define T_MODULE RUBY_T_MODULE
#define T_FLOAT RUBY_T_FLOAT
#define T_STRING RUBY_T_STRING
#define T_REGEXP RUBY_T_REGEXP
#define T_ARRAY RUBY_T_ARRAY
#define T_HASH RUBY_T_HASH
#define T_STRUCT RUBY_T_STRUCT
#define T_BIGNUM RUBY_T_BIGNUM
#define T_FILE RUBY_T_FILE
#define T_FIXNUM RUBY_T_FIXNUM
#define T_TRUE RUBY_T_TRUE
#define T_FALSE RUBY_T_FALSE
#define T_DATA RUBY_T_DATA
#define T_MATCH RUBY_T_MATCH
#define T_SYMBOL RUBY_T_SYMBOL
#define T_RATIONAL RUBY_T_RATIONAL
#define T_COMPLEX RUBY_T_COMPLEX
#define T_IMEMO RUBY_T_IMEMO
#define T_UNDEF RUBY_T_UNDEF
#define T_NODE RUBY_T_NODE
#define T_ZOMBIE RUBY_T_ZOMBIE
#define T_MOVED RUBY_T_MOVED
#define T_MASK RUBY_T_MASK
#define RB_BUILTIN_TYPE(x) (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK)
#define BUILTIN_TYPE(x) RB_BUILTIN_TYPE(x)
#define TYPE(x) rb_type((VALUE)(x))
#define RB_FLOAT_TYPE_P(obj) ( RB_FLONUM_P(obj) || (!RB_SPECIAL_CONST_P(obj) && RB_BUILTIN_TYPE(obj) == RUBY_T_FLOAT))
#define RB_TYPE_P(obj,type) ( ((type) == RUBY_T_FIXNUM) ? RB_FIXNUM_P(obj) : ((type) == RUBY_T_TRUE) ? ((obj) == RUBY_Qtrue) : ((type) == RUBY_T_FALSE) ? ((obj) == RUBY_Qfalse) : ((type) == RUBY_T_NIL) ? ((obj) == RUBY_Qnil) : ((type) == RUBY_T_UNDEF) ? ((obj) == RUBY_Qundef) : ((type) == RUBY_T_SYMBOL) ? RB_SYMBOL_P(obj) : ((type) == RUBY_T_FLOAT) ? RB_FLOAT_TYPE_P(obj) : (!RB_SPECIAL_CONST_P(obj) && RB_BUILTIN_TYPE(obj) == (type)))
#define RB_GC_GUARD(v) (*__extension__ ({ volatile VALUE *rb_gc_guarded_ptr = &(v); __asm__("" : : "m"(rb_gc_guarded_ptr)); rb_gc_guarded_ptr; }))
#define RB_UNUSED_VAR(x) x __attribute__ ((unused))
#define Check_Type(v,t) rb_check_type((VALUE)(v),(t))
#define StringValue(v) rb_string_value(&(v))
#define StringValuePtr(v) rb_string_value_ptr(&(v))
#define StringValueCStr(v) rb_string_value_cstr(&(v))
#define SafeStringValue(v) StringValue(v)
#define Check_SafeStr(v) rb_check_safe_str((VALUE)(v))
#define ExportStringValue(v) do { StringValue(v); (v) = rb_str_export(v);} while (0)
#define FilePathValue(v) (RB_GC_GUARD(v) = rb_get_path(v))
#define FilePathStringValue(v) ((v) = rb_get_path(v))
#define RUBY_SAFE_LEVEL_MAX 1
#define ruby_safe_level_2_warning() ruby_safe_level_2_error()
#define RUBY_SAFE_LEVEL_INVALID_P(level) __extension__( __builtin_choose_expr( __builtin_constant_p(level), ((level) < 0 || RUBY_SAFE_LEVEL_MAX < (level)), 0))
#define RUBY_SAFE_LEVEL_CHECK(level,type) __extension__(__builtin_choose_expr(RUBY_SAFE_LEVEL_INVALID_P(level), ruby_safe_level_2_ ##type(), (level)))
#define rb_secure(level) rb_secure(RUBY_SAFE_LEVEL_CHECK(level, warning))
#define rb_set_safe_level(level) rb_set_safe_level(RUBY_SAFE_LEVEL_CHECK(level, error))
#define RB_NUM2LONG(x) rb_num2long_inline(x)
#define NUM2LONG(x) RB_NUM2LONG(x)
#define RB_NUM2ULONG(x) rb_num2ulong_inline(x)
#define NUM2ULONG(x) RB_NUM2ULONG(x)
#define RB_FIX2INT(x) ((int)rb_fix2int((VALUE)(x)))
#define RB_NUM2INT(x) rb_num2int_inline(x)
#define RB_NUM2UINT(x) ((unsigned int)rb_num2uint(x))
#define RB_FIX2UINT(x) ((unsigned int)rb_fix2uint(x))
#define NUM2INT(x) RB_NUM2INT(x)
#define NUM2UINT(x) RB_NUM2UINT(x)
#define FIX2INT(x) RB_FIX2INT(x)
#define FIX2UINT(x) RB_FIX2UINT(x)
#define RB_FIX2SHORT(x) (rb_fix2short((VALUE)(x)))
#define FIX2SHORT(x) RB_FIX2SHORT(x)
#define RB_NUM2SHORT(x) rb_num2short_inline(x)
#define RB_NUM2USHORT(x) rb_num2ushort(x)
#define NUM2SHORT(x) RB_NUM2SHORT(x)
#define NUM2USHORT(x) RB_NUM2USHORT(x)
#define RB_NUM2LL(x) rb_num2ll_inline(x)
#define RB_NUM2ULL(x) rb_num2ull(x)
#define NUM2LL(x) RB_NUM2LL(x)
#define NUM2ULL(x) RB_NUM2ULL(x)
#define NUM2SIZET(x) NUM2ULONG(x)
#define NUM2SSIZET(x) NUM2LONG(x)
#define NUM2DBL(x) rb_num2dbl((VALUE)(x))
#define RB_NEWOBJ(obj,type) type *(obj) = (type*)rb_newobj()
#define RB_NEWOBJ_OF(obj,type,klass,flags) type *(obj) = (type*)rb_newobj_of(klass, flags)
#define NEWOBJ(obj,type) RB_NEWOBJ(obj,type)
#define NEWOBJ_OF(obj,type,klass,flags) RB_NEWOBJ_OF(obj,type,klass,flags)
#define OBJSETUP(obj,c,t) rb_obj_setup(obj, c, t)
#define CLONESETUP(clone,obj) rb_clone_setup(clone,obj)
#define DUPSETUP(dup,obj) rb_dup_setup(dup,obj)
#define USE_RGENGC 1
#define USE_RINCGC 1
#define RGENGC_WB_PROTECTED_ARRAY 1
#define RGENGC_WB_PROTECTED_HASH 1
#define RGENGC_WB_PROTECTED_STRUCT 1
#define RGENGC_WB_PROTECTED_STRING 1
#define RGENGC_WB_PROTECTED_OBJECT 1
#define RGENGC_WB_PROTECTED_REGEXP 1
#define RGENGC_WB_PROTECTED_CLASS 1
#define RGENGC_WB_PROTECTED_FLOAT 1
#define RGENGC_WB_PROTECTED_COMPLEX 1
#define RGENGC_WB_PROTECTED_RATIONAL 1
#define RGENGC_WB_PROTECTED_BIGNUM 1
#define RGENGC_WB_PROTECTED_NODE_CREF 1
#define RUBY_FL_USER_N(n) RUBY_FL_USER ##n = (1<<(RUBY_FL_USHIFT+n))
#define RB_OBJ_WB_UNPROTECT_FOR(type,obj) __extension__( __builtin_choose_expr( RGENGC_WB_PROTECTED_ ##type, OBJ_WB_UNPROTECT((VALUE)(obj)), ((VALUE)(obj))))
#define RBASIC_CLASS(obj) (RBASIC(obj)->klass)
#define RVALUE_EMBED_LEN_MAX RVALUE_EMBED_LEN_MAX
#define ROBJECT_EMBED_LEN_MAX ROBJECT_EMBED_LEN_MAX
#define ROBJECT_EMBED ROBJECT_EMBED
#define ROBJECT_NUMIV(o) ((RBASIC(o)->flags & ROBJECT_EMBED) ? ROBJECT_EMBED_LEN_MAX : ROBJECT(o)->as.heap.numiv)
#define ROBJECT_IVPTR(o) ((RBASIC(o)->flags & ROBJECT_EMBED) ? ROBJECT(o)->as.ary : ROBJECT(o)->as.heap.ivptr)
#define ROBJECT_IV_INDEX_TBL(o) ((RBASIC(o)->flags & ROBJECT_EMBED) ? RCLASS_IV_INDEX_TBL(rb_obj_class(o)) : ROBJECT(o)->as.heap.iv_index_tbl)
#define RCLASS_SUPER(c) rb_class_get_superclass(c)
#define RMODULE_IV_TBL(m) RCLASS_IV_TBL(m)
#define RMODULE_CONST_TBL(m) RCLASS_CONST_TBL(m)
#define RMODULE_M_TBL(m) RCLASS_M_TBL(m)
#define RMODULE_SUPER(m) RCLASS_SUPER(m)
#define RMODULE_IS_OVERLAID RMODULE_IS_OVERLAID
#define RMODULE_IS_REFINEMENT RMODULE_IS_REFINEMENT
#define RMODULE_INCLUDED_INTO_REFINEMENT RMODULE_INCLUDED_INTO_REFINEMENT
#define RFLOAT_VALUE(v) rb_float_value(v)
#define DBL2NUM(dbl) rb_float_new(dbl)
#define RUBY_ELTS_SHARED RUBY_ELTS_SHARED
#define ELTS_SHARED RUBY_ELTS_SHARED
#define RSTRING_NOEMBED RSTRING_NOEMBED
#define RSTRING_EMBED_LEN_MASK RSTRING_EMBED_LEN_MASK
#define RSTRING_EMBED_LEN_SHIFT RSTRING_EMBED_LEN_SHIFT
#define RSTRING_EMBED_LEN_MAX RSTRING_EMBED_LEN_MAX
#define RSTRING_FSTR RSTRING_FSTR
#define RSTRING_EMBED_LEN(str) (long)((RBASIC(str)->flags >> RSTRING_EMBED_LEN_SHIFT) & (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT))
#define RSTRING_LEN(str) (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? RSTRING_EMBED_LEN(str) : RSTRING(str)->as.heap.len)
#define RSTRING_PTR(str) (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? RSTRING(str)->as.ary : RSTRING(str)->as.heap.ptr)
#define RSTRING_END(str) (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? (RSTRING(str)->as.ary + RSTRING_EMBED_LEN(str)) : (RSTRING(str)->as.heap.ptr + RSTRING(str)->as.heap.len))
#define RSTRING_LENINT(str) rb_long2int(RSTRING_LEN(str))
#define RSTRING_GETMEM(str,ptrvar,lenvar) (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? ((ptrvar) = RSTRING(str)->as.ary, (lenvar) = RSTRING_EMBED_LEN(str)) : ((ptrvar) = RSTRING(str)->as.heap.ptr, (lenvar) = RSTRING(str)->as.heap.len))
#define USE_TRANSIENT_HEAP 1
#define RARRAY_TRANSIENT_FLAG RARRAY_TRANSIENT_FLAG
#define RARRAY_EMBED_FLAG (VALUE)RARRAY_EMBED_FLAG
#define RARRAY_EMBED_LEN_MASK (VALUE)RARRAY_EMBED_LEN_MASK
#define RARRAY_EMBED_LEN_MAX RARRAY_EMBED_LEN_MAX
#define RARRAY_EMBED_LEN_SHIFT RARRAY_EMBED_LEN_SHIFT
#define RARRAY_EMBED_LEN(a) (long)((RBASIC(a)->flags >> RARRAY_EMBED_LEN_SHIFT) & (RARRAY_EMBED_LEN_MASK >> RARRAY_EMBED_LEN_SHIFT))
#define RARRAY_LEN(a) rb_array_len(a)
#define RARRAY_LENINT(ary) rb_long2int(RARRAY_LEN(ary))
#define RARRAY_CONST_PTR(a) rb_array_const_ptr(a)
#define RARRAY_CONST_PTR_TRANSIENT(a) rb_array_const_ptr_transient(a)
#define RARRAY_TRANSIENT_P(ary) FL_TEST_RAW((ary), RARRAY_TRANSIENT_FLAG)
#define RARRAY_PTR_USE_START_TRANSIENT(a) rb_array_ptr_use_start(a, 1)
#define RARRAY_PTR_USE_END_TRANSIENT(a) rb_array_ptr_use_end(a, 1)
#define RARRAY_PTR_USE_TRANSIENT(ary,ptr_name,expr) do { const VALUE _ary = (ary); VALUE *ptr_name = (VALUE *)RARRAY_PTR_USE_START_TRANSIENT(_ary); expr; RARRAY_PTR_USE_END_TRANSIENT(_ary); } while (0)
#define RARRAY_PTR_USE_START(a) rb_array_ptr_use_start(a, 0)
#define RARRAY_PTR_USE_END(a) rb_array_ptr_use_end(a, 0)
#define RARRAY_PTR_USE(ary,ptr_name,expr) do { const VALUE _ary = (ary); VALUE *ptr_name = (VALUE *)RARRAY_PTR_USE_START(_ary); expr; RARRAY_PTR_USE_END(_ary); } while (0)
#define RARRAY_AREF(a,i) (RARRAY_CONST_PTR_TRANSIENT(a)[i])
#define RARRAY_ASET(a,i,v) do { const VALUE _ary = (a); const VALUE _v = (v); VALUE *ptr = (VALUE *)RARRAY_PTR_USE_START_TRANSIENT(_ary); RB_OBJ_WRITE(_ary, &ptr[i], _v); RARRAY_PTR_USE_END_TRANSIENT(_ary); } while (0)
#define RARRAY_PTR(a) ((VALUE *)RARRAY_CONST_PTR(RB_OBJ_WB_UNPROTECT_FOR(ARRAY, a)))
#define RREGEXP_PTR(r) (RREGEXP(r)->ptr)
#define RREGEXP_SRC(r) (RREGEXP(r)->src)
#define RREGEXP_SRC_PTR(r) RSTRING_PTR(RREGEXP(r)->src)
#define RREGEXP_SRC_LEN(r) RSTRING_LEN(RREGEXP(r)->src)
#define RREGEXP_SRC_END(r) RSTRING_END(RREGEXP(r)->src)
#define RHASH_TBL(h) rb_hash_tbl(h, __FILE__, __LINE__)
#define RHASH_ITER_LEV(h) rb_hash_iter_lev(h)
#define RHASH_IFNONE(h) rb_hash_ifnone(h)
#define RHASH_SIZE(h) rb_hash_size_num(h)
#define RHASH_EMPTY_P(h) (RHASH_SIZE(h) == 0)
#define RHASH_SET_IFNONE(h,ifnone) rb_hash_set_ifnone((VALUE)h, ifnone)
#define HAVE_TYPE_RB_DATA_TYPE_T 1
#define HAVE_RB_DATA_TYPE_T_FUNCTION 1
#define HAVE_RB_DATA_TYPE_T_PARENT 1
#define DATA_PTR(dta) (RDATA(dta)->data)
#define RTYPEDDATA_P(v) (RTYPEDDATA(v)->typed_flag == 1)
#define RTYPEDDATA_TYPE(v) (RTYPEDDATA(v)->type)
#define RTYPEDDATA_DATA(v) (RTYPEDDATA(v)->data)
#define RUBY_UNTYPED_DATA_WARNING 1
#define Check_TypedStruct(v,t) rb_check_typeddata((VALUE)(v),(t))
#define RUBY_DEFAULT_FREE ((RUBY_DATA_FUNC)-1)
#define RUBY_NEVER_FREE ((RUBY_DATA_FUNC)0)
#define RUBY_TYPED_DEFAULT_FREE RUBY_DEFAULT_FREE
#define RUBY_TYPED_NEVER_FREE RUBY_NEVER_FREE
#define RUBY_TYPED_FREE_IMMEDIATELY 1
#define RUBY_TYPED_WB_PROTECTED RUBY_FL_WB_PROTECTED
#define RUBY_TYPED_PROMOTED1 RUBY_FL_PROMOTED1
#define Data_Wrap_Struct(klass,mark,free,sval) rb_data_object_wrap((klass),(sval),(RUBY_DATA_FUNC)(mark),(RUBY_DATA_FUNC)(free))
#define Data_Make_Struct0(result,klass,type,size,mark,free,sval) VALUE result = rb_data_object_zalloc((klass), (size), (RUBY_DATA_FUNC)(mark), (RUBY_DATA_FUNC)(free)); (void)((sval) = (type *)DATA_PTR(result));
#define Data_Make_Struct(klass,type,mark,free,sval) ({ Data_Make_Struct0(data_struct_obj, klass, type, sizeof(type), mark, free, sval); data_struct_obj; })
#define TypedData_Wrap_Struct(klass,data_type,sval) rb_data_typed_object_wrap((klass),(sval),(data_type))
#define TypedData_Make_Struct0(result,klass,type,size,data_type,sval) VALUE result = rb_data_typed_object_zalloc(klass, size, data_type); (void)((sval) = (type *)DATA_PTR(result));
#define TypedData_Make_Struct(klass,type,data_type,sval) ({ TypedData_Make_Struct0(data_struct_obj, klass, type, sizeof(type), data_type, sval); data_struct_obj; })
#define Data_Get_Struct(obj,type,sval) ((sval) = (type*)rb_data_object_get(obj))
#define TypedData_Get_Struct(obj,type,data_type,sval) ((sval) = (type*)rb_check_typeddata((obj), (data_type)))
#define RSTRUCT_LEN(st) NUM2LONG(rb_struct_size(st))
#define RSTRUCT_PTR(st) rb_struct_ptr(st)
#define RSTRUCT_SET(st,idx,v) rb_struct_aset(st, INT2NUM(idx), (v))
#define RSTRUCT_GET(st,idx) rb_struct_aref(st, INT2NUM(idx))
#define RBIGNUM_SIGN(b) (rb_big_sign(b))
#define RBIGNUM_POSITIVE_P(b) (RBIGNUM_SIGN(b)!=0)
#define RBIGNUM_NEGATIVE_P(b) (RBIGNUM_SIGN(b)==0)
#define R_CAST(st) (struct st*)
#define RMOVED(obj) (R_CAST(RMoved)(obj))
#define RBASIC(obj) (R_CAST(RBasic)(obj))
#define ROBJECT(obj) (R_CAST(RObject)(obj))
#define RCLASS(obj) (R_CAST(RClass)(obj))
#define RMODULE(obj) RCLASS(obj)
#define RSTRING(obj) (R_CAST(RString)(obj))
#define RREGEXP(obj) (R_CAST(RRegexp)(obj))
#define RARRAY(obj) (R_CAST(RArray)(obj))
#define RDATA(obj) (R_CAST(RData)(obj))
#define RTYPEDDATA(obj) (R_CAST(RTypedData)(obj))
#define RFILE(obj) (R_CAST(RFile)(obj))
#define FL_SINGLETON ((VALUE)RUBY_FL_SINGLETON)
#define FL_WB_PROTECTED ((VALUE)RUBY_FL_WB_PROTECTED)
#define FL_PROMOTED0 ((VALUE)RUBY_FL_PROMOTED0)
#define FL_PROMOTED1 ((VALUE)RUBY_FL_PROMOTED1)
#define FL_FINALIZE ((VALUE)RUBY_FL_FINALIZE)
#define FL_TAINT ((VALUE)RUBY_FL_TAINT)
#define FL_UNTRUSTED ((VALUE)RUBY_FL_UNTRUSTED)
#define FL_SEEN_OBJ_ID ((VALUE)RUBY_FL_SEEN_OBJ_ID)
#define FL_EXIVAR ((VALUE)RUBY_FL_EXIVAR)
#define FL_FREEZE ((VALUE)RUBY_FL_FREEZE)
#define FL_USHIFT ((VALUE)RUBY_FL_USHIFT)
#define FL_USER0 ((VALUE)RUBY_FL_USER0)
#define FL_USER1 ((VALUE)RUBY_FL_USER1)
#define FL_USER2 ((VALUE)RUBY_FL_USER2)
#define FL_USER3 ((VALUE)RUBY_FL_USER3)
#define FL_USER4 ((VALUE)RUBY_FL_USER4)
#define FL_USER5 ((VALUE)RUBY_FL_USER5)
#define FL_USER6 ((VALUE)RUBY_FL_USER6)
#define FL_USER7 ((VALUE)RUBY_FL_USER7)
#define FL_USER8 ((VALUE)RUBY_FL_USER8)
#define FL_USER9 ((VALUE)RUBY_FL_USER9)
#define FL_USER10 ((VALUE)RUBY_FL_USER10)
#define FL_USER11 ((VALUE)RUBY_FL_USER11)
#define FL_USER12 ((VALUE)RUBY_FL_USER12)
#define FL_USER13 ((VALUE)RUBY_FL_USER13)
#define FL_USER14 ((VALUE)RUBY_FL_USER14)
#define FL_USER15 ((VALUE)RUBY_FL_USER15)
#define FL_USER16 ((VALUE)RUBY_FL_USER16)
#define FL_USER17 ((VALUE)RUBY_FL_USER17)
#define FL_USER18 ((VALUE)RUBY_FL_USER18)
#define FL_USER19 ((VALUE)(unsigned int)RUBY_FL_USER19)
#define RB_SPECIAL_CONST_P(x) (RB_IMMEDIATE_P(x) || !RB_TEST(x))
#define SPECIAL_CONST_P(x) RB_SPECIAL_CONST_P(x)
#define RB_FL_ABLE(x) (!RB_SPECIAL_CONST_P(x) && RB_BUILTIN_TYPE(x) != RUBY_T_NODE)
#define RB_FL_TEST_RAW(x,f) (RBASIC(x)->flags&(f))
#define RB_FL_TEST(x,f) (RB_FL_ABLE(x)?RB_FL_TEST_RAW((x),(f)):0)
#define RB_FL_ANY_RAW(x,f) RB_FL_TEST_RAW((x),(f))
#define RB_FL_ANY(x,f) RB_FL_TEST((x),(f))
#define RB_FL_ALL_RAW(x,f) (RB_FL_TEST_RAW((x),(f)) == (f))
#define RB_FL_ALL(x,f) (RB_FL_TEST((x),(f)) == (f))
#define RB_FL_SET_RAW(x,f) (void)(RBASIC(x)->flags |= (f))
#define RB_FL_SET(x,f) (RB_FL_ABLE(x) ? RB_FL_SET_RAW(x, f) : (void)0)
#define RB_FL_UNSET_RAW(x,f) (void)(RBASIC(x)->flags &= ~(VALUE)(f))
#define RB_FL_UNSET(x,f) (RB_FL_ABLE(x) ? RB_FL_UNSET_RAW(x, f) : (void)0)
#define RB_FL_REVERSE_RAW(x,f) (void)(RBASIC(x)->flags ^= (f))
#define RB_FL_REVERSE(x,f) (RB_FL_ABLE(x) ? RB_FL_REVERSE_RAW(x, f) : (void)0)
#define RB_OBJ_TAINTABLE(x) (RB_FL_ABLE(x) && RB_BUILTIN_TYPE(x) != RUBY_T_BIGNUM && RB_BUILTIN_TYPE(x) != RUBY_T_FLOAT)
#define RB_OBJ_TAINTED_RAW(x) RB_FL_TEST_RAW(x, RUBY_FL_TAINT)
#define RB_OBJ_TAINTED(x) (!!RB_FL_TEST((x), RUBY_FL_TAINT))
#define RB_OBJ_TAINT_RAW(x) RB_FL_SET_RAW(x, RUBY_FL_TAINT)
#define RB_OBJ_TAINT(x) (RB_OBJ_TAINTABLE(x) ? RB_OBJ_TAINT_RAW(x) : (void)0)
#define RB_OBJ_UNTRUSTED(x) RB_OBJ_TAINTED(x)
#define RB_OBJ_UNTRUST(x) RB_OBJ_TAINT(x)
#define RB_OBJ_INFECT_RAW(x,s) RB_FL_SET_RAW(x, RB_OBJ_TAINTED_RAW(s))
#define RB_OBJ_INFECT(x,s) ( (RB_OBJ_TAINTABLE(x) && RB_FL_ABLE(s)) ? RB_OBJ_INFECT_RAW(x, s) : (void)0)
#define RB_OBJ_FROZEN_RAW(x) (RBASIC(x)->flags&RUBY_FL_FREEZE)
#define RB_OBJ_FROZEN(x) (!RB_FL_ABLE(x) || RB_OBJ_FROZEN_RAW(x))
#define RB_OBJ_FREEZE_RAW(x) (void)(RBASIC(x)->flags |= RUBY_FL_FREEZE)
#define RB_OBJ_FREEZE(x) rb_obj_freeze_inline((VALUE)x)
#define FL_ABLE(x) RB_FL_ABLE(x)
#define FL_TEST_RAW(x,f) RB_FL_TEST_RAW(x,f)
#define FL_TEST(x,f) RB_FL_TEST(x,f)
#define FL_ANY_RAW(x,f) RB_FL_ANY_RAW(x,f)
#define FL_ANY(x,f) RB_FL_ANY(x,f)
#define FL_ALL_RAW(x,f) RB_FL_ALL_RAW(x,f)
#define FL_ALL(x,f) RB_FL_ALL(x,f)
#define FL_SET_RAW(x,f) RB_FL_SET_RAW(x,f)
#define FL_SET(x,f) RB_FL_SET(x,f)
#define FL_UNSET_RAW(x,f) RB_FL_UNSET_RAW(x,f)
#define FL_UNSET(x,f) RB_FL_UNSET(x,f)
#define FL_REVERSE_RAW(x,f) RB_FL_REVERSE_RAW(x,f)
#define FL_REVERSE(x,f) RB_FL_REVERSE(x,f)
#define OBJ_TAINTABLE(x) RB_OBJ_TAINTABLE(x)
#define OBJ_TAINTED_RAW(x) RB_OBJ_TAINTED_RAW(x)
#define OBJ_TAINTED(x) RB_OBJ_TAINTED(x)
#define OBJ_TAINT_RAW(x) RB_OBJ_TAINT_RAW(x)
#define OBJ_TAINT(x) RB_OBJ_TAINT(x)
#define OBJ_UNTRUSTED(x) RB_OBJ_UNTRUSTED(x)
#define OBJ_UNTRUST(x) RB_OBJ_UNTRUST(x)
#define OBJ_INFECT_RAW(x,s) RB_OBJ_INFECT_RAW(x,s)
#define OBJ_INFECT(x,s) RB_OBJ_INFECT(x,s)
#define OBJ_FROZEN_RAW(x) RB_OBJ_FROZEN_RAW(x)
#define OBJ_FROZEN(x) RB_OBJ_FROZEN(x)
#define OBJ_FREEZE_RAW(x) RB_OBJ_FREEZE_RAW(x)
#define OBJ_FREEZE(x) RB_OBJ_FREEZE(x)
#define RUBY_UNTYPED_DATA_FUNC(func) func __attribute__((warning("untyped Data is unsafe; use TypedData instead")))
#define rb_data_object_wrap_warning(klass,ptr,mark,free) __extension__( __builtin_choose_expr( __builtin_constant_p(klass) && !(klass), rb_data_object_wrap(klass, ptr, mark, free), rb_data_object_wrap_warning(klass, ptr, mark, free)))
#define rb_data_object_wrap_0 rb_data_object_wrap
#define rb_data_object_wrap_1 rb_data_object_wrap_warning
#define rb_data_object_wrap RUBY_MACRO_SELECT(rb_data_object_wrap_, RUBY_UNTYPED_DATA_WARNING)
#define rb_data_object_get_0 rb_data_object_get
#define rb_data_object_get_1 rb_data_object_get_warning
#define rb_data_object_get RUBY_MACRO_SELECT(rb_data_object_get_, RUBY_UNTYPED_DATA_WARNING)
#define rb_data_object_make_0 rb_data_object_make
#define rb_data_object_make_1 rb_data_object_make_warning
#define rb_data_object_make RUBY_MACRO_SELECT(rb_data_object_make_, RUBY_UNTYPED_DATA_WARNING)
#define RB_OBJ_PROMOTED_RAW(x) RB_FL_ALL_RAW(x, RUBY_FL_PROMOTED)
#define RB_OBJ_PROMOTED(x) (RB_SPECIAL_CONST_P(x) ? 0 : RB_OBJ_PROMOTED_RAW(x))
#define RB_OBJ_WB_UNPROTECT(x) rb_obj_wb_unprotect(x, __FILE__, __LINE__)
#define OBJ_PROMOTED_RAW(x) RB_OBJ_PROMOTED_RAW(x)
#define OBJ_PROMOTED(x) RB_OBJ_PROMOTED(x)
#define OBJ_WB_UNPROTECT(x) RB_OBJ_WB_UNPROTECT(x)
#define RB_OBJ_WRITE(a,slot,b) rb_obj_write((VALUE)(a), (VALUE *)(slot), (VALUE)(b), __FILE__, __LINE__)
#define RB_OBJ_WRITTEN(a,oldv,b) rb_obj_written((VALUE)(a), (VALUE)(oldv), (VALUE)(b), __FILE__, __LINE__)
#define USE_RGENGC_LOGGING_WB_UNPROTECT 0
#define RUBY_INTEGER_UNIFICATION 1
#define RB_INTEGER_TYPE_P(obj) rb_integer_type_p(obj)
#define RB_INT2NUM(v) RB_INT2FIX((int)(v))
#define RB_UINT2NUM(v) RB_LONG2FIX((unsigned int)(v))
#define INT2NUM(x) RB_INT2NUM(x)
#define UINT2NUM(x) RB_UINT2NUM(x)
#define RB_LONG2NUM(x) rb_long2num_inline(x)
#define RB_ULONG2NUM(x) rb_ulong2num_inline(x)
#define RB_NUM2CHR(x) rb_num2char_inline(x)
#define RB_CHR2FIX(x) RB_INT2FIX((long)((x)&0xff))
#define LONG2NUM(x) RB_LONG2NUM(x)
#define ULONG2NUM(x) RB_ULONG2NUM(x)
#define USHORT2NUM(x) RB_INT2FIX(x)
#define NUM2CHR(x) RB_NUM2CHR(x)
#define CHR2FIX(x) RB_CHR2FIX(x)
#define RB_ST2FIX(h) RB_LONG2FIX((long)(h))
#define ST2FIX(h) RB_ST2FIX(h)
#define RB_ALLOC_N(type,n) ((type*)ruby_xmalloc2((size_t)(n),sizeof(type)))
#define RB_ALLOC(type) ((type*)ruby_xmalloc(sizeof(type)))
#define RB_ZALLOC_N(type,n) ((type*)ruby_xcalloc((size_t)(n),sizeof(type)))
#define RB_ZALLOC(type) (RB_ZALLOC_N(type,1))
#define RB_REALLOC_N(var,type,n) ((var)=(type*)ruby_xrealloc2((char*)(var),(size_t)(n),sizeof(type)))
#define ALLOC_N(type,n) RB_ALLOC_N(type,n)
#define ALLOC(type) RB_ALLOC(type)
#define ZALLOC_N(type,n) RB_ZALLOC_N(type,n)
#define ZALLOC(type) RB_ZALLOC(type)
#define REALLOC_N(var,type,n) RB_REALLOC_N(var,type,n)
#define ALLOCA_N(type,n) (type*)__builtin_alloca_with_align((sizeof(type)*(n)), RUBY_ALIGNOF(type) * CHAR_BIT)
#define DSIZE_T uint128_t
#define RUBY_ALLOCV_LIMIT 1024
#define RB_ALLOCV(v,n) ((n) < RUBY_ALLOCV_LIMIT ? ((v) = 0, alloca(n)) : rb_alloc_tmp_buffer(&(v), (n)))
#define RB_ALLOCV_N(type,v,n) ((type*)(((size_t)(n) < RUBY_ALLOCV_LIMIT / sizeof(type)) ? ((v) = 0, alloca((size_t)(n) * sizeof(type))) : rb_alloc_tmp_buffer2(&(v), (long)(n), sizeof(type))))
#define RB_ALLOCV_END(v) rb_free_tmp_buffer(&(v))
#define ALLOCV(v,n) RB_ALLOCV(v, n)
#define ALLOCV_N(type,v,n) RB_ALLOCV_N(type, v, n)
#define ALLOCV_END(v) RB_ALLOCV_END(v)
#define MEMZERO(p,type,n) memset((p), 0, sizeof(type)*(size_t)(n))
#define MEMCPY(p1,p2,type,n) memcpy((p1), (p2), sizeof(type)*(size_t)(n))
#define MEMMOVE(p1,p2,type,n) memmove((p1), (p2), sizeof(type)*(size_t)(n))
#define MEMCMP(p1,p2,type,n) memcmp((p1), (p2), sizeof(type)*(size_t)(n))
#define memcpy(p1,p2,n) ruby_nonempty_memcpy(p1, p2, n)
#define RUBY_CONST_ID_CACHE_NB(result,str) static ID rb_intern_id_cache; if (!rb_intern_id_cache) rb_intern_id_cache = rb_intern2((str), (long)strlen(str)); result rb_intern_id_cache;
#define RUBY_CONST_ID_CACHE(result,str) { RUBY_CONST_ID_CACHE_NB(result, str) }
#define RUBY_CONST_ID(var,str) do RUBY_CONST_ID_CACHE((var) =, (str)) while (0)
#define CONST_ID_CACHE(result,str) RUBY_CONST_ID_CACHE(result, str)
#define CONST_ID(var,str) RUBY_CONST_ID(var, str)
#define rb_intern(str) (__builtin_constant_p(str) ? __extension__ ({RUBY_CONST_ID_CACHE_NB((ID), (str))}) : rb_intern(str))
#define rb_intern_const(str) (__builtin_constant_p(str) ? __extension__ (rb_intern2((str), (long)strlen(str))) : (rb_intern)(str))
#define rb_varargs_argc_check_runtime(argc,vargc) (((argc) <= (vargc)) ? (argc) : (rb_fatal("argc(%d) exceeds actual arguments(%d)", argc, vargc), 0))
#define rb_varargs_argc_valid_p(argc,vargc) ((argc) == 0 ? (vargc) <= 1 : (argc) == (vargc))
#define rb_varargs_argc_check(argc,vargc) __builtin_choose_expr(__builtin_constant_p(argc), (rb_varargs_argc_valid_p(argc, vargc) ? (argc) : rb_varargs_bad_length(argc, vargc)), rb_varargs_argc_check_runtime(argc, vargc))
#define rb_funcall2 rb_funcallv
#define rb_funcall3 rb_funcallv_public
#define RB_SCAN_ARGS_PASS_CALLED_KEYWORDS 0
#define RB_SCAN_ARGS_KEYWORDS 1
#define RB_SCAN_ARGS_EMPTY_KEYWORDS 2
#define RB_SCAN_ARGS_LAST_HASH_KEYWORDS 3
#define HAVE_RB_SCAN_ARGS_OPTIONAL_HASH 1
#define ruby_verbose (*rb_ruby_verbose_ptr())
#define ruby_debug (*rb_ruby_debug_ptr())
#define RB_IO_WAIT_READABLE RB_IO_WAIT_READABLE
#define RB_IO_WAIT_WRITABLE RB_IO_WAIT_WRITABLE
#define RB_BLOCK_CALL_FUNC_STRICT 1
#define RUBY_BLOCK_CALL_FUNC_TAKES_BLOCKARG 1
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg,callback_arg) VALUE yielded_arg, VALUE callback_arg, int argc, const VALUE *argv, VALUE blockarg
#define RB_NO_KEYWORDS 0
#define RB_PASS_KEYWORDS 1
#define RB_PASS_EMPTY_KEYWORDS 2
#define RB_PASS_CALLED_KEYWORDS 3
#define rb_type_p(obj,type) __extension__ (__builtin_constant_p(type) ? RB_TYPE_P((obj), (type)) : rb_type(obj) == (type))
#define rb_special_const_p(obj) __extension__ ({ VALUE special_const_obj = (obj); (int)(RB_SPECIAL_CONST_P(special_const_obj) ? RUBY_Qtrue : RUBY_Qfalse); })
#define RUBY_INTERN_H 1
#define RUBY_ST_H 1
#pragma GCC visibility push(default)
#define ST_DATA_T_DEFINED 
#define MAX_ST_INDEX_VAL (~(st_index_t) 0)
#define SIZEOF_ST_INDEX_T SIZEOF_VOIDP
#define ST_INDEX_BITS (SIZEOF_ST_INDEX_T * CHAR_BIT)
#define ST_DATA_COMPATIBLE_P(type) __builtin_choose_expr(__builtin_types_compatible_p(type, st_data_t), 1, 0)
#define st_is_member(table,key) st_lookup((table),(key),(st_data_t *)0)
#define st_init_table rb_st_init_table
#define st_init_table_with_size rb_st_init_table_with_size
#define st_init_numtable rb_st_init_numtable
#define st_init_numtable_with_size rb_st_init_numtable_with_size
#define st_init_strtable rb_st_init_strtable
#define st_init_strtable_with_size rb_st_init_strtable_with_size
#define st_init_strcasetable rb_st_init_strcasetable
#define st_init_strcasetable_with_size rb_st_init_strcasetable_with_size
#define st_delete rb_st_delete
#define st_delete_safe rb_st_delete_safe
#define st_shift rb_st_shift
#define st_insert rb_st_insert
#define st_insert2 rb_st_insert2
#define st_lookup rb_st_lookup
#define st_get_key rb_st_get_key
#define st_update rb_st_update
#define st_foreach_with_replace rb_st_foreach_with_replace
#define st_foreach rb_st_foreach
#define st_foreach_check rb_st_foreach_check
#define st_keys rb_st_keys
#define st_keys_check rb_st_keys_check
#define st_values rb_st_values
#define st_values_check rb_st_values_check
#define st_add_direct rb_st_add_direct
#define st_free_table rb_st_free_table
#define st_cleanup_safe rb_st_cleanup_safe
#define st_clear rb_st_clear
#define st_copy rb_st_copy
#define st_numcmp rb_st_numcmp
#define st_numhash rb_st_numhash
#define st_locale_insensitive_strcasecmp rb_st_locale_insensitive_strcasecmp
#define st_locale_insensitive_strncasecmp rb_st_locale_insensitive_strncasecmp
#define st_strcasecmp rb_st_locale_insensitive_strcasecmp
#define st_strncasecmp rb_st_locale_insensitive_strncasecmp
#define st_memsize rb_st_memsize
#define st_hash rb_st_hash
#define st_hash_uint32 rb_st_hash_uint32
#define st_hash_uint rb_st_hash_uint
#define st_hash_end rb_st_hash_end
#define st_hash_start(h) ((st_index_t)(h))
#pragma GCC visibility pop
#define MJIT_STATIC static
#pragma GCC visibility push(default)
#define UNLIMITED_ARGUMENTS (-1)
#define rb_ary_new2 rb_ary_new_capa
#define rb_ary_new3 rb_ary_new_from_args
#define rb_ary_new4 rb_ary_new_from_values
#define rb_big2int(x) rb_big2long(x)
#define rb_big2uint(x) rb_big2ulong(x)
#define INTEGER_PACK_MSWORD_FIRST 0x01
#define INTEGER_PACK_LSWORD_FIRST 0x02
#define INTEGER_PACK_MSBYTE_FIRST 0x10
#define INTEGER_PACK_LSBYTE_FIRST 0x20
#define INTEGER_PACK_NATIVE_BYTE_ORDER 0x40
#define INTEGER_PACK_2COMP 0x80
#define INTEGER_PACK_FORCE_GENERIC_IMPLEMENTATION 0x400
#define INTEGER_PACK_FORCE_BIGNUM 0x100
#define INTEGER_PACK_NEGATIVE 0x200
#define INTEGER_PACK_LITTLE_ENDIAN (INTEGER_PACK_LSWORD_FIRST | INTEGER_PACK_LSBYTE_FIRST)
#define INTEGER_PACK_BIG_ENDIAN (INTEGER_PACK_MSWORD_FIRST | INTEGER_PACK_MSBYTE_FIRST)
#define rb_rational_raw1(x) rb_rational_raw((x), INT2FIX(1))
#define rb_rational_raw2(x,y) rb_rational_raw((x), (y))
#define rb_rational_new1(x) rb_rational_new((x), INT2FIX(1))
#define rb_rational_new2(x,y) rb_rational_new((x), (y))
#define rb_Rational1(x) rb_Rational((x), INT2FIX(1))
#define rb_Rational2(x,y) rb_Rational((x), (y))
#define rb_complex_raw1(x) rb_complex_raw((x), INT2FIX(0))
#define rb_complex_raw2(x,y) rb_complex_raw((x), (y))
#define rb_complex_new1(x) rb_complex_new((x), INT2FIX(0))
#define rb_complex_new2(x,y) rb_complex_new((x), (y))
#define rb_complex_add rb_complex_plus
#define rb_complex_sub rb_complex_minus
#define rb_complex_nagate rb_complex_uminus
#define rb_Complex1(x) rb_Complex((x), INT2FIX(0))
#define rb_Complex2(x,y) rb_Complex((x), (y))
#define SIZED_ENUMERATOR(obj,argc,argv,size_fn) rb_enumeratorize_with_size((obj), ID2SYM(rb_frame_this_func()), (argc), (argv), (size_fn))
#define SIZED_ENUMERATOR_KW(obj,argc,argv,size_fn,kw_splat) rb_enumeratorize_with_size_kw((obj), ID2SYM(rb_frame_this_func()), (argc), (argv), (size_fn), (kw_splat))
#define RETURN_SIZED_ENUMERATOR(obj,argc,argv,size_fn) do { if (!rb_block_given_p()) return SIZED_ENUMERATOR(obj, argc, argv, size_fn); } while (0)
#define RETURN_SIZED_ENUMERATOR_KW(obj,argc,argv,size_fn,kw_splat) do { if (!rb_block_given_p()) return SIZED_ENUMERATOR_KW(obj, argc, argv, size_fn, kw_splat); } while (0)
#define RETURN_ENUMERATOR(obj,argc,argv) RETURN_SIZED_ENUMERATOR(obj, argc, argv, 0)
#define RETURN_ENUMERATOR_KW(obj,argc,argv,kw_splat) RETURN_SIZED_ENUMERATOR_KW(obj, argc, argv, 0, kw_splat)
#define rb_exc_new2 rb_exc_new_cstr
#define rb_exc_new3 rb_exc_new_str
#define rb_check_frozen_internal(obj) do { VALUE frozen_obj = (obj); if (RB_UNLIKELY(RB_OBJ_FROZEN(frozen_obj))) { rb_error_frozen_object(frozen_obj); } } while (0)
#define rb_check_frozen(obj) __extension__({rb_check_frozen_internal(obj);})
#define RB_OBJ_INIT_COPY(obj,orig) ((obj) != (orig) && (rb_obj_init_copy((obj), (orig)), 1))
#define OBJ_INIT_COPY(obj,orig) RB_OBJ_INIT_COPY(obj, orig)
#define rb_check_arity rb_check_arity
#define rb_fd_ptr(f) ((f)->fdset)
#define rb_fd_max(f) ((f)->maxfd)
#define HAVE_RB_DEFINE_ALLOC_FUNC 1
#define st_foreach_safe rb_st_foreach_safe
#define rb_defout rb_stdout
#define RB_RESERVED_FD_P(fd) rb_reserved_fd_p(fd)
#define RB_NUM_COERCE_FUNCS_NEED_OPID 1
#define rb_memcmp memcmp
#define HAVE_RB_REG_NEW_STR 1
#define rb_argv rb_get_argv()
#define posix_signal ruby_posix_signal
#define rb_str_dup_frozen rb_str_new_frozen
#define rb_hash_uint32(h,i) st_hash_uint32((h), (i))
#define rb_hash_uint(h,i) st_hash_uint((h), (i))
#define rb_hash_end(h) st_hash_end(h)
#define rb_str_new(str,len) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str) && __builtin_constant_p(len)) ? rb_str_new_static((str), (len)) : rb_str_new((str), (len)) )
#define rb_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_str_new_static((str), (long)strlen(str)) : rb_str_new_cstr(str) )
#define rb_usascii_str_new(str,len) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str) && __builtin_constant_p(len)) ? rb_usascii_str_new_static((str), (len)) : rb_usascii_str_new((str), (len)) )
#define rb_utf8_str_new(str,len) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str) && __builtin_constant_p(len)) ? rb_utf8_str_new_static((str), (len)) : rb_utf8_str_new((str), (len)) )
#define rb_tainted_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_tainted_str_new((str), (long)strlen(str)) : rb_tainted_str_new_cstr(str) )
#define rb_usascii_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_usascii_str_new_static((str), (long)strlen(str)) : rb_usascii_str_new_cstr(str) )
#define rb_utf8_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_utf8_str_new_static((str), (long)strlen(str)) : rb_utf8_str_new_cstr(str) )
#define rb_external_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_external_str_new((str), (long)strlen(str)) : rb_external_str_new_cstr(str) )
#define rb_locale_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_locale_str_new((str), (long)strlen(str)) : rb_locale_str_new_cstr(str) )
#define rb_str_buf_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_str_buf_cat(rb_str_buf_new((long)strlen(str)), (str), (long)strlen(str)) : rb_str_buf_new_cstr(str) )
#define rb_str_cat_cstr(str,ptr) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(ptr)) ? rb_str_cat((str), (ptr), (long)strlen(ptr)) : rb_str_cat_cstr((str), (ptr)) )
#define rb_exc_new_cstr(klass,ptr) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(ptr)) ? rb_exc_new((klass), (ptr), (long)strlen(ptr)) : rb_exc_new_cstr((klass), (ptr)) )
#define rb_str_new2 rb_str_new_cstr
#define rb_str_new3 rb_str_new_shared
#define rb_str_new4 rb_str_new_frozen
#define rb_str_new5 rb_str_new_with_class
#define rb_tainted_str_new2 rb_tainted_str_new_cstr
#define rb_str_buf_new2 rb_str_buf_new_cstr
#define rb_usascii_str_new2 rb_usascii_str_new_cstr
#define rb_str_buf_cat rb_str_cat
#define rb_str_buf_cat2 rb_str_cat_cstr
#define rb_str_cat2 rb_str_cat_cstr
#define rb_strlen_lit(str) (sizeof(str "") - 1)
#define rb_str_new_lit(str) rb_str_new_static((str), rb_strlen_lit(str))
#define rb_usascii_str_new_lit(str) rb_usascii_str_new_static((str), rb_strlen_lit(str))
#define rb_utf8_str_new_lit(str) rb_utf8_str_new_static((str), rb_strlen_lit(str))
#define rb_enc_str_new_lit(str,enc) rb_enc_str_new_static((str), rb_strlen_lit(str), (enc))
#define rb_str_new_literal(str) rb_str_new_lit(str)
#define rb_usascii_str_new_literal(str) rb_usascii_str_new_lit(str)
#define rb_utf8_str_new_literal(str) rb_utf8_str_new_lit(str)
#define rb_enc_str_new_literal(str,enc) rb_enc_str_new_lit(str, enc)
#define RUBY_UBF_IO ((rb_unblock_function_t *)-1)
#define RUBY_UBF_PROCESS ((rb_unblock_function_t *)-1)
#pragma GCC visibility pop
#define rb_f_notimplement_p(f) __builtin_types_compatible_p(__typeof__(f),__typeof__(rb_f_notimplement))
#define RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,funcargs) __attribute__((__unused__,__weakref__(#def),__nonnull__ nonnull))static void defname(RB_UNWRAP_MACRO decl,VALUE(*func)funcargs,int arity);
#define RB_UNWRAP_MACRO(...) __VA_ARGS__
#define RB_METHOD_DEFINITION_DECL_CXX_BEGIN(def) 
#define RB_METHOD_DEFINITION_DECL_CXX(def,defname,decl,vars,funcargs,arity) 
#define RB_METHOD_DEFINITION_DECL_1(def,nonnull,defname,arity,decl,vars,funcargs) RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,funcargs) RB_METHOD_DEFINITION_DECL_CXX(def,defname,decl,vars,funcargs,arity)
#define RB_METHOD_DEFINITION_DECL(def,nonnull,decl,vars) RB_METHOD_DEFINITION_DECL_CXX_BEGIN(def) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##0 ,0 ,decl,vars,(VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##1 ,1 ,decl,vars,(VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##2 ,2 ,decl,vars,(VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##3 ,3 ,decl,vars,(VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##4 ,4 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##5 ,5 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##6 ,6 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##7 ,7 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##8 ,8 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##9 ,9 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##10,10,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##11,11,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##12,12,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##13,13,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##14,14,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##15,15,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_M3(def,nonnull,def ##m3,decl,vars) RB_METHOD_DEFINITION_DECL_1(def,nonnull,def ##m2,-2,decl,vars,(VALUE,VALUE)) RB_METHOD_DEFINITION_DECL_M1(def,nonnull,def ##m1,decl,vars)
#define RB_METHOD_DEFINITION_DECL_M1(def,nonnull,defname,decl,vars) RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE))
#define RB_METHOD_DEFINITION_DECL_M3(def,nonnull,defname,decl,vars) RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,())
#define rb_define_method_id_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_method_id15,rb_define_method_idm3)
#define rb_define_method_id_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_method_id14,rb_define_method_id_choose_prototype15(n))
#define rb_define_method_id_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_method_id13,rb_define_method_id_choose_prototype14(n))
#define rb_define_method_id_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_method_id12,rb_define_method_id_choose_prototype13(n))
#define rb_define_method_id_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_method_id11,rb_define_method_id_choose_prototype12(n))
#define rb_define_method_id_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_method_id10,rb_define_method_id_choose_prototype11(n))
#define rb_define_method_id_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_method_id9, rb_define_method_id_choose_prototype10(n))
#define rb_define_method_id_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_method_id8, rb_define_method_id_choose_prototype9(n))
#define rb_define_method_id_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_method_id7, rb_define_method_id_choose_prototype8(n))
#define rb_define_method_id_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_method_id6, rb_define_method_id_choose_prototype7(n))
#define rb_define_method_id_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_method_id5, rb_define_method_id_choose_prototype6(n))
#define rb_define_method_id_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_method_id4, rb_define_method_id_choose_prototype5(n))
#define rb_define_method_id_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_method_id3, rb_define_method_id_choose_prototype4(n))
#define rb_define_method_id_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_method_id2, rb_define_method_id_choose_prototype3(n))
#define rb_define_method_id_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_method_id1, rb_define_method_id_choose_prototype2(n))
#define rb_define_method_id_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_method_id0, rb_define_method_id_choose_prototype1(n))
#define rb_define_method_id_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_method_idm1,rb_define_method_id_choose_prototype0(n))
#define rb_define_method_id_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_method_idm2,rb_define_method_id_choose_prototypem1(n))
#define rb_define_method_id_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_method_idm3,rb_define_method_id_choose_prototypem2(n))
#define rb_define_method_id(klass,mid,func,arity) rb_define_method_id_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define rb_define_protected_method_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_protected_method15,rb_define_protected_methodm3)
#define rb_define_protected_method_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_protected_method14,rb_define_protected_method_choose_prototype15(n))
#define rb_define_protected_method_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_protected_method13,rb_define_protected_method_choose_prototype14(n))
#define rb_define_protected_method_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_protected_method12,rb_define_protected_method_choose_prototype13(n))
#define rb_define_protected_method_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_protected_method11,rb_define_protected_method_choose_prototype12(n))
#define rb_define_protected_method_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_protected_method10,rb_define_protected_method_choose_prototype11(n))
#define rb_define_protected_method_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_protected_method9, rb_define_protected_method_choose_prototype10(n))
#define rb_define_protected_method_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_protected_method8, rb_define_protected_method_choose_prototype9(n))
#define rb_define_protected_method_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_protected_method7, rb_define_protected_method_choose_prototype8(n))
#define rb_define_protected_method_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_protected_method6, rb_define_protected_method_choose_prototype7(n))
#define rb_define_protected_method_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_protected_method5, rb_define_protected_method_choose_prototype6(n))
#define rb_define_protected_method_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_protected_method4, rb_define_protected_method_choose_prototype5(n))
#define rb_define_protected_method_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_protected_method3, rb_define_protected_method_choose_prototype4(n))
#define rb_define_protected_method_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_protected_method2, rb_define_protected_method_choose_prototype3(n))
#define rb_define_protected_method_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_protected_method1, rb_define_protected_method_choose_prototype2(n))
#define rb_define_protected_method_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_protected_method0, rb_define_protected_method_choose_prototype1(n))
#define rb_define_protected_method_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_protected_methodm1,rb_define_protected_method_choose_prototype0(n))
#define rb_define_protected_method_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_protected_methodm2,rb_define_protected_method_choose_prototypem1(n))
#define rb_define_protected_method_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_protected_methodm3,rb_define_protected_method_choose_prototypem2(n))
#define rb_define_protected_method(klass,mid,func,arity) rb_define_protected_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define rb_define_private_method_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_private_method15,rb_define_private_methodm3)
#define rb_define_private_method_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_private_method14,rb_define_private_method_choose_prototype15(n))
#define rb_define_private_method_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_private_method13,rb_define_private_method_choose_prototype14(n))
#define rb_define_private_method_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_private_method12,rb_define_private_method_choose_prototype13(n))
#define rb_define_private_method_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_private_method11,rb_define_private_method_choose_prototype12(n))
#define rb_define_private_method_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_private_method10,rb_define_private_method_choose_prototype11(n))
#define rb_define_private_method_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_private_method9, rb_define_private_method_choose_prototype10(n))
#define rb_define_private_method_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_private_method8, rb_define_private_method_choose_prototype9(n))
#define rb_define_private_method_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_private_method7, rb_define_private_method_choose_prototype8(n))
#define rb_define_private_method_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_private_method6, rb_define_private_method_choose_prototype7(n))
#define rb_define_private_method_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_private_method5, rb_define_private_method_choose_prototype6(n))
#define rb_define_private_method_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_private_method4, rb_define_private_method_choose_prototype5(n))
#define rb_define_private_method_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_private_method3, rb_define_private_method_choose_prototype4(n))
#define rb_define_private_method_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_private_method2, rb_define_private_method_choose_prototype3(n))
#define rb_define_private_method_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_private_method1, rb_define_private_method_choose_prototype2(n))
#define rb_define_private_method_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_private_method0, rb_define_private_method_choose_prototype1(n))
#define rb_define_private_method_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_private_methodm1,rb_define_private_method_choose_prototype0(n))
#define rb_define_private_method_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_private_methodm2,rb_define_private_method_choose_prototypem1(n))
#define rb_define_private_method_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_private_methodm3,rb_define_private_method_choose_prototypem2(n))
#define rb_define_private_method(klass,mid,func,arity) rb_define_private_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define rb_define_singleton_method_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_singleton_method15,rb_define_singleton_methodm3)
#define rb_define_singleton_method_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_singleton_method14,rb_define_singleton_method_choose_prototype15(n))
#define rb_define_singleton_method_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_singleton_method13,rb_define_singleton_method_choose_prototype14(n))
#define rb_define_singleton_method_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_singleton_method12,rb_define_singleton_method_choose_prototype13(n))
#define rb_define_singleton_method_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_singleton_method11,rb_define_singleton_method_choose_prototype12(n))
#define rb_define_singleton_method_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_singleton_method10,rb_define_singleton_method_choose_prototype11(n))
#define rb_define_singleton_method_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_singleton_method9, rb_define_singleton_method_choose_prototype10(n))
#define rb_define_singleton_method_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_singleton_method8, rb_define_singleton_method_choose_prototype9(n))
#define rb_define_singleton_method_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_singleton_method7, rb_define_singleton_method_choose_prototype8(n))
#define rb_define_singleton_method_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_singleton_method6, rb_define_singleton_method_choose_prototype7(n))
#define rb_define_singleton_method_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_singleton_method5, rb_define_singleton_method_choose_prototype6(n))
#define rb_define_singleton_method_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_singleton_method4, rb_define_singleton_method_choose_prototype5(n))
#define rb_define_singleton_method_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_singleton_method3, rb_define_singleton_method_choose_prototype4(n))
#define rb_define_singleton_method_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_singleton_method2, rb_define_singleton_method_choose_prototype3(n))
#define rb_define_singleton_method_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_singleton_method1, rb_define_singleton_method_choose_prototype2(n))
#define rb_define_singleton_method_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_singleton_method0, rb_define_singleton_method_choose_prototype1(n))
#define rb_define_singleton_method_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_singleton_methodm1,rb_define_singleton_method_choose_prototype0(n))
#define rb_define_singleton_method_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_singleton_methodm2,rb_define_singleton_method_choose_prototypem1(n))
#define rb_define_singleton_method_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_singleton_methodm3,rb_define_singleton_method_choose_prototypem2(n))
#define rb_define_singleton_method(klass,mid,func,arity) rb_define_singleton_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define FIX_CONST_VALUE_PTR(x) (x)
#define RUBY_VM 1
#define HAVE_NATIVETHREAD 
#define RUBY_EVENT_NONE 0x0000
#define RUBY_EVENT_LINE 0x0001
#define RUBY_EVENT_CLASS 0x0002
#define RUBY_EVENT_END 0x0004
#define RUBY_EVENT_CALL 0x0008
#define RUBY_EVENT_RETURN 0x0010
#define RUBY_EVENT_C_CALL 0x0020
#define RUBY_EVENT_C_RETURN 0x0040
#define RUBY_EVENT_RAISE 0x0080
#define RUBY_EVENT_ALL 0x00ff
#define RUBY_EVENT_B_CALL 0x0100
#define RUBY_EVENT_B_RETURN 0x0200
#define RUBY_EVENT_THREAD_BEGIN 0x0400
#define RUBY_EVENT_THREAD_END 0x0800
#define RUBY_EVENT_FIBER_SWITCH 0x1000
#define RUBY_EVENT_SCRIPT_COMPILED 0x2000
#define RUBY_EVENT_TRACEPOINT_ALL 0xffff
#define RUBY_EVENT_RESERVED_FOR_INTERNAL_USE 0x030000
#define RUBY_INTERNAL_EVENT_SWITCH 0x040000
#define RUBY_EVENT_SWITCH 0x040000
#define RUBY_INTERNAL_EVENT_NEWOBJ 0x100000
#define RUBY_INTERNAL_EVENT_FREEOBJ 0x200000
#define RUBY_INTERNAL_EVENT_GC_START 0x400000
#define RUBY_INTERNAL_EVENT_GC_END_MARK 0x800000
#define RUBY_INTERNAL_EVENT_GC_END_SWEEP 0x1000000
#define RUBY_INTERNAL_EVENT_GC_ENTER 0x2000000
#define RUBY_INTERNAL_EVENT_GC_EXIT 0x4000000
#define RUBY_INTERNAL_EVENT_OBJSPACE_MASK 0x7f00000
#define RUBY_INTERNAL_EVENT_MASK 0xffff0000
#define RB_EVENT_HOOKS_HAVE_CALLBACK_DATA 1
#define ISASCII(c) rb_isascii(c)
#define ISPRINT(c) rb_isprint(c)
#define ISGRAPH(c) rb_isgraph(c)
#define ISSPACE(c) rb_isspace(c)
#define ISUPPER(c) rb_isupper(c)
#define ISLOWER(c) rb_islower(c)
#define ISALNUM(c) rb_isalnum(c)
#define ISALPHA(c) rb_isalpha(c)
#define ISDIGIT(c) rb_isdigit(c)
#define ISXDIGIT(c) rb_isxdigit(c)
#define ISBLANK(c) rb_isblank(c)
#define ISCNTRL(c) rb_iscntrl(c)
#define ISPUNCT(c) rb_ispunct(c)
#define TOUPPER(c) rb_toupper(c)
#define TOLOWER(c) rb_tolower(c)
#define STRCASECMP(s1,s2) (st_locale_insensitive_strcasecmp((s1), (s2)))
#define STRNCASECMP(s1,s2,n) (st_locale_insensitive_strncasecmp((s1), (s2), (n)))
#define STRTOUL(str,endptr,base) (ruby_strtoul((str), (endptr), (base)))
#define InitVM(ext) {void InitVM_ ##ext(void);InitVM_ ##ext();}
#define rb_scan_args(argc,argvp,fmt,...) __builtin_choose_expr(__builtin_constant_p(fmt), rb_scan_args0(argc,argvp,fmt, (sizeof((VALUE*[]){__VA_ARGS__})/sizeof(VALUE*)), ((VALUE*[]){__VA_ARGS__})), rb_scan_args(argc,argvp,fmt, ##__VA_ARGS__))
#define rb_scan_args_isdigit(c) ((unsigned char)((c)-'0')<10)
#define rb_scan_args_count_end(fmt,ofs,vari) (fmt[ofs] ? -1 : (vari))
#define rb_scan_args_count_block(fmt,ofs,vari) (fmt[ofs]!='&' ? rb_scan_args_count_end(fmt, ofs, vari) : rb_scan_args_count_end(fmt, ofs+1, vari+1))
#define rb_scan_args_count_hash(fmt,ofs,vari) (fmt[ofs]!=':' ? rb_scan_args_count_block(fmt, ofs, vari) : rb_scan_args_count_block(fmt, ofs+1, vari+1))
#define rb_scan_args_count_trail(fmt,ofs,vari) (!rb_scan_args_isdigit(fmt[ofs]) ? rb_scan_args_count_hash(fmt, ofs, vari) : rb_scan_args_count_hash(fmt, ofs+1, vari+(fmt[ofs]-'0')))
#define rb_scan_args_count_var(fmt,ofs,vari) (fmt[ofs]!='*' ? rb_scan_args_count_trail(fmt, ofs, vari) : rb_scan_args_count_trail(fmt, ofs+1, vari+1))
#define rb_scan_args_count_opt(fmt,ofs,vari) (!rb_scan_args_isdigit(fmt[ofs]) ? rb_scan_args_count_var(fmt, ofs, vari) : rb_scan_args_count_var(fmt, ofs+1, vari+fmt[ofs]-'0'))
#define rb_scan_args_count_lead(fmt,ofs,vari) (!rb_scan_args_isdigit(fmt[ofs]) ? rb_scan_args_count_var(fmt, ofs, vari) : rb_scan_args_count_opt(fmt, ofs+1, vari+fmt[ofs]-'0'))
#define rb_scan_args_count(fmt) rb_scan_args_count_lead(fmt, 0, 0)
#define rb_scan_args_verify(fmt,varc) (sizeof(char[1-2*(rb_scan_args_count(fmt)<0)])!=1 ? rb_scan_args_bad_format(fmt) : sizeof(char[1-2*(rb_scan_args_count(fmt)!=(varc))])!=1 ? rb_scan_args_length_mismatch(fmt, varc) : (void)0)
#define rb_scan_args0(argc,argv,fmt,varc,vars) rb_scan_args_set(argc, argv, rb_scan_args_n_lead(fmt), rb_scan_args_n_opt(fmt), rb_scan_args_n_trail(fmt), rb_scan_args_f_var(fmt), rb_scan_args_f_hash(fmt), rb_scan_args_f_block(fmt), (rb_scan_args_verify(fmt, varc), vars), (char *)fmt, varc)
#define rb_yield_values(argc,...) __extension__({ const int rb_yield_values_argc = (argc); const VALUE rb_yield_values_args[] = {__VA_ARGS__}; const int rb_yield_values_nargs = (int)(sizeof(rb_yield_values_args) / sizeof(VALUE)); rb_yield_values2( rb_varargs_argc_check(rb_yield_values_argc, rb_yield_values_nargs), rb_yield_values_nargs ? rb_yield_values_args : NULL); })
#define rb_funcall(recv,mid,argc,...) __extension__({ const int rb_funcall_argc = (argc); const VALUE rb_funcall_args[] = {__VA_ARGS__}; const int rb_funcall_nargs = (int)(sizeof(rb_funcall_args) / sizeof(VALUE)); rb_funcallv(recv, mid, rb_varargs_argc_check(rb_funcall_argc, rb_funcall_nargs), rb_funcall_nargs ? rb_funcall_args : NULL); })
#define RUBY_SUBST_H 1
#undef snprintf
#undef vsnprintf
#define snprintf ruby_snprintf
#define vsnprintf ruby_vsnprintf
#define RUBY_INIT_STACK VALUE variable_in_this_stack_frame; ruby_init_stack(&variable_in_this_stack_frame);
#pragma GCC visibility pop
#define rb_define_method_if_constexpr(x,t,f) __builtin_choose_expr(__builtin_choose_expr(__builtin_constant_p(x),(x),0),(t),(f))
#define rb_define_method_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_method15,rb_define_methodm3)
#define rb_define_method_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_method14,rb_define_method_choose_prototype15(n))
#define rb_define_method_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_method13,rb_define_method_choose_prototype14(n))
#define rb_define_method_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_method12,rb_define_method_choose_prototype13(n))
#define rb_define_method_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_method11,rb_define_method_choose_prototype12(n))
#define rb_define_method_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_method10,rb_define_method_choose_prototype11(n))
#define rb_define_method_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_method9, rb_define_method_choose_prototype10(n))
#define rb_define_method_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_method8, rb_define_method_choose_prototype9(n))
#define rb_define_method_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_method7, rb_define_method_choose_prototype8(n))
#define rb_define_method_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_method6, rb_define_method_choose_prototype7(n))
#define rb_define_method_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_method5, rb_define_method_choose_prototype6(n))
#define rb_define_method_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_method4, rb_define_method_choose_prototype5(n))
#define rb_define_method_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_method3, rb_define_method_choose_prototype4(n))
#define rb_define_method_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_method2, rb_define_method_choose_prototype3(n))
#define rb_define_method_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_method1, rb_define_method_choose_prototype2(n))
#define rb_define_method_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_method0, rb_define_method_choose_prototype1(n))
#define rb_define_method_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_methodm1,rb_define_method_choose_prototype0(n))
#define rb_define_method_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_methodm2,rb_define_method_choose_prototypem1(n))
#define rb_define_method_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_methodm3,rb_define_method_choose_prototypem2(n))
#define rb_define_method(klass,mid,func,arity) rb_define_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define rb_define_module_function_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_module_function15,rb_define_module_functionm3)
#define rb_define_module_function_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_module_function14,rb_define_module_function_choose_prototype15(n))
#define rb_define_module_function_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_module_function13,rb_define_module_function_choose_prototype14(n))
#define rb_define_module_function_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_module_function12,rb_define_module_function_choose_prototype13(n))
#define rb_define_module_function_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_module_function11,rb_define_module_function_choose_prototype12(n))
#define rb_define_module_function_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_module_function10,rb_define_module_function_choose_prototype11(n))
#define rb_define_module_function_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_module_function9, rb_define_module_function_choose_prototype10(n))
#define rb_define_module_function_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_module_function8, rb_define_module_function_choose_prototype9(n))
#define rb_define_module_function_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_module_function7, rb_define_module_function_choose_prototype8(n))
#define rb_define_module_function_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_module_function6, rb_define_module_function_choose_prototype7(n))
#define rb_define_module_function_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_module_function5, rb_define_module_function_choose_prototype6(n))
#define rb_define_module_function_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_module_function4, rb_define_module_function_choose_prototype5(n))
#define rb_define_module_function_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_module_function3, rb_define_module_function_choose_prototype4(n))
#define rb_define_module_function_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_module_function2, rb_define_module_function_choose_prototype3(n))
#define rb_define_module_function_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_module_function1, rb_define_module_function_choose_prototype2(n))
#define rb_define_module_function_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_module_function0, rb_define_module_function_choose_prototype1(n))
#define rb_define_module_function_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_module_functionm1,rb_define_module_function_choose_prototype0(n))
#define rb_define_module_function_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_module_functionm2,rb_define_module_function_choose_prototypem1(n))
#define rb_define_module_function_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_module_functionm3,rb_define_module_function_choose_prototypem2(n))
#define rb_define_module_function(klass,mid,func,arity) rb_define_module_function_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#define rb_define_global_function_choose_prototype15(n) rb_define_method_if_constexpr((n)==15,rb_define_global_function15,rb_define_global_functionm3)
#define rb_define_global_function_choose_prototype14(n) rb_define_method_if_constexpr((n)==14,rb_define_global_function14,rb_define_global_function_choose_prototype15(n))
#define rb_define_global_function_choose_prototype13(n) rb_define_method_if_constexpr((n)==13,rb_define_global_function13,rb_define_global_function_choose_prototype14(n))
#define rb_define_global_function_choose_prototype12(n) rb_define_method_if_constexpr((n)==12,rb_define_global_function12,rb_define_global_function_choose_prototype13(n))
#define rb_define_global_function_choose_prototype11(n) rb_define_method_if_constexpr((n)==11,rb_define_global_function11,rb_define_global_function_choose_prototype12(n))
#define rb_define_global_function_choose_prototype10(n) rb_define_method_if_constexpr((n)==10,rb_define_global_function10,rb_define_global_function_choose_prototype11(n))
#define rb_define_global_function_choose_prototype9(n) rb_define_method_if_constexpr((n)== 9,rb_define_global_function9, rb_define_global_function_choose_prototype10(n))
#define rb_define_global_function_choose_prototype8(n) rb_define_method_if_constexpr((n)== 8,rb_define_global_function8, rb_define_global_function_choose_prototype9(n))
#define rb_define_global_function_choose_prototype7(n) rb_define_method_if_constexpr((n)== 7,rb_define_global_function7, rb_define_global_function_choose_prototype8(n))
#define rb_define_global_function_choose_prototype6(n) rb_define_method_if_constexpr((n)== 6,rb_define_global_function6, rb_define_global_function_choose_prototype7(n))
#define rb_define_global_function_choose_prototype5(n) rb_define_method_if_constexpr((n)== 5,rb_define_global_function5, rb_define_global_function_choose_prototype6(n))
#define rb_define_global_function_choose_prototype4(n) rb_define_method_if_constexpr((n)== 4,rb_define_global_function4, rb_define_global_function_choose_prototype5(n))
#define rb_define_global_function_choose_prototype3(n) rb_define_method_if_constexpr((n)== 3,rb_define_global_function3, rb_define_global_function_choose_prototype4(n))
#define rb_define_global_function_choose_prototype2(n) rb_define_method_if_constexpr((n)== 2,rb_define_global_function2, rb_define_global_function_choose_prototype3(n))
#define rb_define_global_function_choose_prototype1(n) rb_define_method_if_constexpr((n)== 1,rb_define_global_function1, rb_define_global_function_choose_prototype2(n))
#define rb_define_global_function_choose_prototype0(n) rb_define_method_if_constexpr((n)== 0,rb_define_global_function0, rb_define_global_function_choose_prototype1(n))
#define rb_define_global_function_choose_prototypem1(n) rb_define_method_if_constexpr((n)==-1,rb_define_global_functionm1,rb_define_global_function_choose_prototype0(n))
#define rb_define_global_function_choose_prototypem2(n) rb_define_method_if_constexpr((n)==-2,rb_define_global_functionm2,rb_define_global_function_choose_prototypem1(n))
#define rb_define_global_function_choose_prototypem3(n,f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_global_functionm3,rb_define_global_function_choose_prototypem2(n))
#define rb_define_global_function(mid,func,arity) rb_define_global_function_choose_prototypem3((arity),(func))((mid),(func),(arity));
#define RUBY_METHOD_FUNC(func) ((VALUE (*)(ANYARGS))(func))
#define _STDBOOL_H 
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#define HALF_LONG_MSB ((SIGNED_VALUE)1<<((SIZEOF_LONG*CHAR_BIT-1)/2))
#define LIKELY(x) RB_LIKELY(x)
#define UNLIKELY(x) RB_UNLIKELY(x)
#define __has_feature(x) 0
#define __has_extension __has_feature
#define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) NO_SANITIZE("address", NOINLINE(x))
#undef NO_SANITIZE
#define NO_SANITIZE(x,y) COMPILER_WARNING_PUSH; COMPILER_WARNING_IGNORED(-Wattributes); __attribute__((__no_sanitize__(x))) y; COMPILER_WARNING_POP
#define VALGRIND_MAKE_MEM_DEFINED(p,n) 0
#define VALGRIND_MAKE_MEM_UNDEFINED(p,n) 0
#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
#define ACCESS_ONCE(type,x) (*((volatile type *)&(x)))
#define STATIC_ASSERT(name,expr) _Static_assert(expr, #name ": " #expr)
#define SIGNED_INTEGER_TYPE_P(int_type) (0 > ((int_type)0)-1)
#define SIGNED_INTEGER_MAX(sint_type) (sint_type) ((((sint_type)1) << (sizeof(sint_type) * CHAR_BIT - 2)) | ((((sint_type)1) << (sizeof(sint_type) * CHAR_BIT - 2)) - 1))
#define SIGNED_INTEGER_MIN(sint_type) (-SIGNED_INTEGER_MAX(sint_type)-1)
#define UNSIGNED_INTEGER_MAX(uint_type) (~(uint_type)0)
#define TIMET_MAX SIGNED_INTEGER_MAX(time_t)
#define TIMET_MIN SIGNED_INTEGER_MIN(time_t)
#define TIMET_MAX_PLUS_ONE (2*(double)(TIMET_MAX/2+1))
#define MUL_OVERFLOW_P(a,b) __builtin_mul_overflow_p((a), (b), (__typeof__(a * b))0)
#define MUL_OVERFLOW_SIGNED_INTEGER_P(a,b,min,max) ( (a) == 0 ? 0 : (a) == -1 ? (b) < -(max) : (a) > 0 ? ((b) > 0 ? (max) / (a) < (b) : (min) / (a) > (b)) : ((b) > 0 ? (min) / (a) < (b) : (max) / (a) > (b)))
#define MUL_OVERFLOW_FIXNUM_P(a,b) ({ struct { long fixnum : SIZEOF_LONG * CHAR_BIT - 1; } c; __builtin_mul_overflow_p((a), (b), c.fixnum); })
#define MUL_OVERFLOW_LONG_LONG_P(a,b) MUL_OVERFLOW_P(a, b)
#define MUL_OVERFLOW_LONG_P(a,b) MUL_OVERFLOW_P(a, b)
#define MUL_OVERFLOW_INT_P(a,b) MUL_OVERFLOW_P(a, b)
#define swap16(x) __builtin_bswap16(x)
#define swap32(x) __builtin_bswap32(x)
#define swap64(x) __builtin_bswap64(x)
#define DLONG int128_t
#define DL2NUM(x) (RB_FIXABLE(x) ? LONG2FIX(x) : rb_int128t2big(x))
#define bit_length(x) (unsigned int) (sizeof(x) <= SIZEOF_INT ? SIZEOF_INT * CHAR_BIT - nlz_int((unsigned int)(x)) : sizeof(x) <= SIZEOF_LONG ? SIZEOF_LONG * CHAR_BIT - nlz_long((unsigned long)(x)) : sizeof(x) <= SIZEOF_LONG_LONG ? SIZEOF_LONG_LONG * CHAR_BIT - nlz_long_long((unsigned LONG_LONG)(x)) : SIZEOF_INT128_T * CHAR_BIT - nlz_int128((uint128_t)(x)))
#define BDIGIT unsigned int
#define SIZEOF_BDIGIT SIZEOF_INT
#define BDIGIT_DBL unsigned LONG_LONG
#define BDIGIT_DBL_SIGNED LONG_LONG
#define PRI_BDIGIT_PREFIX ""
#define PRI_BDIGIT_DBL_PREFIX PRI_LL_PREFIX
#define SIZEOF_ACTUAL_BDIGIT SIZEOF_BDIGIT
#define PRIdBDIGIT PRI_BDIGIT_PREFIX"d"
#define PRIiBDIGIT PRI_BDIGIT_PREFIX"i"
#define PRIoBDIGIT PRI_BDIGIT_PREFIX"o"
#define PRIuBDIGIT PRI_BDIGIT_PREFIX"u"
#define PRIxBDIGIT PRI_BDIGIT_PREFIX"x"
#define PRIXBDIGIT PRI_BDIGIT_PREFIX"X"
#define PRIdBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"d"
#define PRIiBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"i"
#define PRIoBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"o"
#define PRIuBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"u"
#define PRIxBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"x"
#define PRIXBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"X"
#define BIGNUM_EMBED_LEN_NUMBITS 3
#define BIGNUM_EMBED_LEN_MAX (SIZEOF_VALUE*RVALUE_EMBED_LEN_MAX/SIZEOF_ACTUAL_BDIGIT)
#define BIGNUM_SIGN_BIT ((VALUE)FL_USER1)
#define BIGNUM_SIGN(b) ((RBASIC(b)->flags & BIGNUM_SIGN_BIT) != 0)
#define BIGNUM_SET_SIGN(b,sign) ((sign) ? (RBASIC(b)->flags |= BIGNUM_SIGN_BIT) : (RBASIC(b)->flags &= ~BIGNUM_SIGN_BIT))
#define BIGNUM_POSITIVE_P(b) BIGNUM_SIGN(b)
#define BIGNUM_NEGATIVE_P(b) (!BIGNUM_SIGN(b))
#define BIGNUM_NEGATE(b) (RBASIC(b)->flags ^= BIGNUM_SIGN_BIT)
#define BIGNUM_EMBED_FLAG ((VALUE)FL_USER2)
#define BIGNUM_EMBED_LEN_MASK (~(~(VALUE)0U << BIGNUM_EMBED_LEN_NUMBITS) << BIGNUM_EMBED_LEN_SHIFT)
#define BIGNUM_EMBED_LEN_SHIFT (FL_USHIFT+3)
#define BIGNUM_LEN(b) ((RBASIC(b)->flags & BIGNUM_EMBED_FLAG) ? (size_t)((RBASIC(b)->flags >> BIGNUM_EMBED_LEN_SHIFT) & (BIGNUM_EMBED_LEN_MASK >> BIGNUM_EMBED_LEN_SHIFT)) : RBIGNUM(b)->as.heap.len)
#define BIGNUM_DIGITS(b) ((RBASIC(b)->flags & BIGNUM_EMBED_FLAG) ? RBIGNUM(b)->as.ary : RBIGNUM(b)->as.heap.digits)
#define BIGNUM_LENINT(b) rb_long2int(BIGNUM_LEN(b))
#define RBIGNUM(obj) (R_CAST(RBignum)(obj))
#define RRATIONAL(obj) (R_CAST(RRational)(obj))
#define RRATIONAL_SET_NUM(rat,n) RB_OBJ_WRITE((rat), &((struct RRational *)(rat))->num,(n))
#define RRATIONAL_SET_DEN(rat,d) RB_OBJ_WRITE((rat), &((struct RRational *)(rat))->den,(d))
#define RFLOAT(obj) (R_CAST(RFloat)(obj))
#define RCOMPLEX(obj) (R_CAST(RComplex)(obj))
#define RCOMPLEX_SET_REAL(cmp,r) RB_OBJ_WRITE((cmp), &((struct RComplex *)(cmp))->real,(r))
#define RCOMPLEX_SET_IMAG(cmp,i) RB_OBJ_WRITE((cmp), &((struct RComplex *)(cmp))->imag,(i))
#define RHASH_AR_TABLE_MAX_SIZE SIZEOF_VALUE
#define RHASH_LEV_MASK (FL_USER13 | FL_USER14 | FL_USER15 | FL_USER16 | FL_USER17 | FL_USER18 | FL_USER19)
#define RHASH_AR_TABLE_SIZE_RAW(h) ((unsigned int)((RBASIC(h)->flags & RHASH_AR_TABLE_SIZE_MASK) >> RHASH_AR_TABLE_SIZE_SHIFT))
#define RHASH_AR_TABLE_P(hash) (!FL_TEST_RAW((hash), RHASH_ST_TABLE_FLAG))
#define RHASH_AR_TABLE(hash) (RHASH(hash)->as.ar)
#define RHASH_ST_TABLE(hash) (RHASH(hash)->as.st)
#define RHASH(obj) (R_CAST(RHash)(obj))
#define RHASH_ST_SIZE(h) (RHASH_ST_TABLE(h)->num_entries)
#define RHASH_ST_TABLE_P(h) (!RHASH_AR_TABLE_P(h))
#define RHASH_ST_CLEAR(h) (FL_UNSET_RAW(h, RHASH_ST_TABLE_FLAG), RHASH(h)->as.ar = NULL)
#define RHASH_AR_TABLE_SIZE_MASK (VALUE)RHASH_AR_TABLE_SIZE_MASK
#define RHASH_AR_TABLE_SIZE_SHIFT RHASH_AR_TABLE_SIZE_SHIFT
#define RHASH_AR_TABLE_BOUND_MASK (VALUE)RHASH_AR_TABLE_BOUND_MASK
#define RHASH_AR_TABLE_BOUND_SHIFT RHASH_AR_TABLE_BOUND_SHIFT
#define RHASH_TRANSIENT_P(hash) FL_TEST_RAW((hash), RHASH_TRANSIENT_FLAG)
#define RHASH_SET_TRANSIENT_FLAG(h) FL_SET_RAW(h, RHASH_TRANSIENT_FLAG)
#define RHASH_UNSET_TRANSIENT_FLAG(h) FL_UNSET_RAW(h, RHASH_TRANSIENT_FLAG)
#undef RHASH_IFNONE
#undef RHASH_SIZE
#define RHASH_IFNONE(h) (RHASH(h)->ifnone)
#define RHASH_SIZE(h) (RHASH_AR_TABLE_P(h) ? RHASH_AR_TABLE_SIZE_RAW(h) : RHASH_ST_SIZE(h))
#define RSTRUCT_EMBED_LEN_MAX RSTRUCT_EMBED_LEN_MAX
#define RSTRUCT_EMBED_LEN_MASK RSTRUCT_EMBED_LEN_MASK
#define RSTRUCT_EMBED_LEN_SHIFT RSTRUCT_EMBED_LEN_SHIFT
#define RSTRUCT_TRANSIENT_P(st) FL_TEST_RAW((obj), RSTRUCT_TRANSIENT_FLAG)
#define RSTRUCT_TRANSIENT_SET(st) FL_SET_RAW((st), RSTRUCT_TRANSIENT_FLAG)
#define RSTRUCT_TRANSIENT_UNSET(st) FL_UNSET_RAW((st), RSTRUCT_TRANSIENT_FLAG)
#undef RSTRUCT_LEN
#undef RSTRUCT_PTR
#undef RSTRUCT_SET
#undef RSTRUCT_GET
#define RSTRUCT_EMBED_LEN(st) (long)((RBASIC(st)->flags >> RSTRUCT_EMBED_LEN_SHIFT) & (RSTRUCT_EMBED_LEN_MASK >> RSTRUCT_EMBED_LEN_SHIFT))
#define RSTRUCT_LEN(st) rb_struct_len(st)
#define RSTRUCT_LENINT(st) rb_long2int(RSTRUCT_LEN(st))
#define RSTRUCT_CONST_PTR(st) rb_struct_const_ptr(st)
#define RSTRUCT_PTR(st) ((VALUE *)RSTRUCT_CONST_PTR(RB_OBJ_WB_UNPROTECT_FOR(STRUCT, st)))
#define RSTRUCT_SET(st,idx,v) RB_OBJ_WRITE(st, &RSTRUCT_CONST_PTR(st)[idx], (v))
#define RSTRUCT_GET(st,idx) (RSTRUCT_CONST_PTR(st)[idx])
#define RSTRUCT(obj) (R_CAST(RStruct)(obj))
#define SERIALT2NUM ULL2NUM
#define PRI_SERIALT_PREFIX PRI_LL_PREFIX
#define SIZEOF_SERIAL_T SIZEOF_LONG_LONG
#undef RClass
#define RCLASS_EXT(c) (RCLASS(c)->ptr)
#define RCLASS_IV_TBL(c) (RCLASS_EXT(c)->iv_tbl)
#define RCLASS_CONST_TBL(c) (RCLASS_EXT(c)->const_tbl)
#define RCLASS_M_TBL(c) (RCLASS_EXT(c)->m_tbl)
#define RCLASS_CALLABLE_M_TBL(c) (RCLASS_EXT(c)->callable_m_tbl)
#define RCLASS_IV_INDEX_TBL(c) (RCLASS_EXT(c)->iv_index_tbl)
#define RCLASS_ORIGIN(c) (RCLASS_EXT(c)->origin_)
#define RCLASS_REFINED_CLASS(c) (RCLASS_EXT(c)->refined_class)
#define RCLASS_SERIAL(c) (RCLASS(c)->class_serial)
#define RCLASS_INCLUDER(c) (RCLASS_EXT(c)->includer)
#define RCLASS_CLONED FL_USER6
#define RICLASS_IS_ORIGIN FL_USER5
#define RCLASS_REFINED_BY_ANY FL_USER7
#undef RCLASS_SUPER
#define IMEMO_DEBUG 0
#define IMEMO_MASK 0x0f
#define IMEMO_FL_USHIFT (FL_USHIFT + 4)
#define IMEMO_FL_USER0 FL_USER4
#define IMEMO_FL_USER1 FL_USER5
#define IMEMO_FL_USER2 FL_USER6
#define IMEMO_FL_USER3 FL_USER7
#define IMEMO_FL_USER4 FL_USER8
#define THROW_DATA_CONSUMED IMEMO_FL_USER0
#define THROW_DATA_P(err) RB_TYPE_P((VALUE)(err), T_IMEMO)
#define IFUNC_NEW(a,b,c) ((struct vm_ifunc *)rb_imemo_new(imemo_ifunc, (VALUE)(a), (VALUE)(b), (VALUE)(c), 0))
#define rb_imemo_tmpbuf_auto_free_pointer() rb_imemo_new(imemo_tmpbuf, 0, 0, 0, 0)
#define RB_IMEMO_TMPBUF_PTR(v) ((void *)(((const struct rb_imemo_tmpbuf_struct *)(v))->ptr))
#define MEMO_V1_SET(m,v) RB_OBJ_WRITE((m), &(m)->v1, (v))
#define MEMO_V2_SET(m,v) RB_OBJ_WRITE((m), &(m)->v2, (v))
#define MEMO_CAST(m) ((struct MEMO *)m)
#define MEMO_NEW(a,b,c) ((struct MEMO *)rb_imemo_new(imemo_memo, (VALUE)(a), (VALUE)(b), (VALUE)(c), 0))
#define roomof(x,y) (((x) + (y) - 1) / (y))
#define type_roomof(x,y) roomof(sizeof(x), sizeof(y))
#define MEMO_FOR(type,value) ((type *)RARRAY_PTR(value))
#define NEW_MEMO_FOR(type,value) ((value) = rb_ary_tmp_new_fill(type_roomof(type, VALUE)), MEMO_FOR(type, value))
#define NEW_PARTIAL_MEMO_FOR(type,value,member) ((value) = rb_ary_tmp_new_fill(type_roomof(type, VALUE)), rb_ary_set_len((value), offsetof(type, member) / sizeof(VALUE)), MEMO_FOR(type, value))
#define STRING_P(s) (RB_TYPE_P((s), T_STRING) && CLASS_OF(s) == rb_cString)
#define rb_cFixnum rb_cInteger
#define rb_cBignum rb_cInteger
#define NEW_CMP_OPT_MEMO(type,value) NEW_PARTIAL_MEMO_FOR(type, value, cmp_opt)
#define CMP_OPTIMIZABLE_BIT(type) (1U << TOKEN_PASTE(cmp_opt_,type))
#define CMP_OPTIMIZABLE(data,type) (((data).opt_inited & CMP_OPTIMIZABLE_BIT(type)) ? ((data).opt_methods & CMP_OPTIMIZABLE_BIT(type)) : (((data).opt_inited |= CMP_OPTIMIZABLE_BIT(type)), rb_method_basic_definition_p(TOKEN_PASTE(rb_c,type), id_cmp) && ((data).opt_methods |= CMP_OPTIMIZABLE_BIT(type))))
#define OPTIMIZED_CMP(a,b,data) ((FIXNUM_P(a) && FIXNUM_P(b) && CMP_OPTIMIZABLE(data, Fixnum)) ? (((long)a > (long)b) ? 1 : ((long)a < (long)b) ? -1 : 0) : (STRING_P(a) && STRING_P(b) && CMP_OPTIMIZABLE(data, String)) ? rb_str_cmp(a, b) : (RB_FLOAT_TYPE_P(a) && RB_FLOAT_TYPE_P(b) && CMP_OPTIMIZABLE(data, Float)) ? rb_float_cmp(a, b) : rb_cmpint(rb_funcallv(a, id_cmp, 1, &b), a, b))
#define ARRAY_DEBUG (0+RUBY_DEBUG)
#define RARRAY_PTR_IN_USE_FLAG FL_USER14
#define ARY_PTR_USING_P(ary) FL_TEST_RAW((ary), RARRAY_PTR_IN_USE_FLAG)
#define RARY_TRANSIENT_SET(ary) FL_SET_RAW((ary), RARRAY_TRANSIENT_FLAG);
#define RARY_TRANSIENT_UNSET(ary) FL_UNSET_RAW((ary), RARRAY_TRANSIENT_FLAG);
#define rb_ary_new_from_args(n,...) __extension__ ({ const VALUE args_to_new_ary[] = {__VA_ARGS__}; if (__builtin_constant_p(n)) { STATIC_ASSERT(rb_ary_new_from_args, numberof(args_to_new_ary) == (n)); } rb_ary_new_from_values(numberof(args_to_new_ary), args_to_new_ary); })
#define rp(obj) rb_obj_info_dump_loc((VALUE)(obj), __FILE__, __LINE__, __func__)
#define rp_m(msg,obj) do { fprintf(stderr, "%s", (msg)); rb_obj_info_dump((VALUE)obj); } while (0)
#define bp() ruby_debug_breakpoint()
#define rb_raise_cstr(etype,mesg) rb_exc_raise(rb_exc_new_str(etype, rb_str_new_cstr(mesg)))
#define rb_raise_static(etype,mesg) rb_exc_raise(rb_exc_new_str(etype, rb_str_new_static(mesg, rb_strlen_lit(mesg))))
#define rb_name_err_raise_str(mesg,recv,name) rb_exc_raise(rb_name_err_new(mesg, recv, name))
#define rb_name_err_raise(mesg,recv,name) rb_name_err_raise_str(rb_fstring_cstr(mesg), (recv), (name))
#define rb_key_err_raise(mesg,recv,name) rb_exc_raise(rb_key_err_new(mesg, recv, name))
#define id_signo ruby_static_id_signo
#define id_status ruby_static_id_status
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define rb_sys_fail_path(path) rb_sys_fail_path_in(RUBY_FUNCTION_NAME_STRING, path)
#define rb_syserr_fail_path(err,path) rb_syserr_fail_path_in(RUBY_FUNCTION_NAME_STRING, (err), (path))
#define ruby_sized_xrealloc(ptr,new_size,old_size) ruby_xrealloc(ptr, new_size)
#define ruby_sized_xrealloc2(ptr,new_count,element_size,old_count) ruby_xrealloc2(ptr, new_count, element_size)
#define ruby_sized_xfree(ptr,size) ruby_xfree(ptr)
#define SIZED_REALLOC_N(var,type,n,old_n) REALLOC_N(var, type, n)
#undef NEWOBJF_OF
#undef RB_NEWOBJ_OF
#define RB_NEWOBJ_OF(obj,type,klass,flags) type *(obj) = (type*)(((flags) & FL_WB_PROTECTED) ? rb_wb_protected_newobj_of(klass, (flags) & ~FL_WB_PROTECTED) : rb_wb_unprotected_newobj_of(klass, flags))
#define NEWOBJ_OF(obj,type,klass,flags) RB_NEWOBJ_OF(obj,type,klass,flags)
#define RHASH_TBL_RAW(h) rb_hash_tbl_raw(h)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define rb_io_fptr_finalize rb_io_fptr_finalize_internal
#define FIXNUM_POSITIVE_P(num) ((SIGNED_VALUE)(num) > (SIGNED_VALUE)INT2FIX(0))
#define FIXNUM_NEGATIVE_P(num) ((SIGNED_VALUE)(num) < 0)
#define FIXNUM_ZERO_P(num) ((num) == INT2FIX(0))
#define INT_NEGATIVE_P(x) (FIXNUM_P(x) ? FIXNUM_NEGATIVE_P(x) : BIGNUM_NEGATIVE_P(x))
#define FLOAT_ZERO_P(x) (RFLOAT_VALUE(x) == 0.0)
#define ROUND_DEFAULT RUBY_NUM_ROUND_HALF_UP
#define ROUND_TO(mode,even,up,down) ((mode) == RUBY_NUM_ROUND_HALF_EVEN ? even : (mode) == RUBY_NUM_ROUND_HALF_UP ? up : down)
#define ROUND_FUNC(mode,name) ROUND_TO(mode, name ##_half_even, name ##_half_up, name ##_half_down)
#define ROUND_CALL(mode,name,args) ROUND_TO(mode, name ##_half_even args, name ##_half_up args, name ##_half_down args)
#define RUBY_BIT_ROTL(v,n) (((v) << (n)) | ((v) >> ((sizeof(v) * 8) - n)))
#define RUBY_BIT_ROTR(v,n) (((v) >> (n)) | ((v) << ((sizeof(v) * 8) - n)))
#define rb_float_value(v) rb_float_value_inline(v)
#define rb_float_new(d) rb_float_new_inline(d)
#define RBASIC_CLEAR_CLASS(obj) memset(&(((struct RBasicRaw *)((VALUE)(obj)))->klass), 0, sizeof(VALUE))
#define RBASIC_SET_CLASS_RAW(obj,cls) memcpy(&((struct RBasicRaw *)((VALUE)(obj)))->klass, &(cls), sizeof(VALUE))
#define RBASIC_SET_CLASS(obj,cls) do { VALUE _obj_ = (obj); RB_OBJ_WRITE(_obj_, &((struct RBasicRaw *)(_obj_))->klass, cls); } while (0)
#define USE_SYMBOL_GC 1
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RB_MAX_GROUPS (65536)
#define ARGVSTR2ARGV(argv_str) ((char **)RB_IMEMO_TMPBUF_PTR(argv_str) + 1)
#define RANGE_BEG(r) (RSTRUCT(r)->as.ary[0])
#define RANGE_END(r) (RSTRUCT(r)->as.ary[1])
#define RANGE_EXCL(r) (RSTRUCT(r)->as.ary[2])
#define rb_fstring_lit(str) rb_fstring_new((str), rb_strlen_lit(str))
#define rb_fstring_literal(str) rb_fstring_lit(str)
#define rb_fstring_cstr(str) RB_GNUC_EXTENSION_BLOCK( (__builtin_constant_p(str)) ? rb_fstring_new((str), (long)strlen(str)) : rb_fstring_cstr(str) )
#define QUOTE(str) rb_str_quote_unprintable(str)
#define QUOTE_ID(id) rb_id_quote_unprintable(id)
#define STR_NOEMBED FL_USER1
#define STR_SHARED FL_USER2
#define STR_EMBED_P(str) (!FL_TEST_RAW((str), STR_NOEMBED))
#define STR_SHARED_P(s) FL_ALL_RAW((s), STR_NOEMBED|ELTS_SHARED)
#define is_ascii_string(str) (rb_enc_str_coderange(str) == ENC_CODERANGE_7BIT)
#define is_broken_string(str) (rb_enc_str_coderange(str) == ENC_CODERANGE_BROKEN)
#define rb_sym_intern_ascii_cstr(ptr) __extension__ ( { (__builtin_constant_p(ptr)) ? rb_sym_intern_ascii((ptr), (long)strlen(ptr)) : rb_sym_intern_ascii_cstr(ptr); })
#define COVERAGE_INDEX_LINES 0
#define COVERAGE_INDEX_BRANCHES 1
#define COVERAGE_TARGET_LINES 1
#define COVERAGE_TARGET_BRANCHES 2
#define COVERAGE_TARGET_METHODS 4
#define COVERAGE_TARGET_ONESHOT_LINES 8
#define ROBJECT_TRANSIENT_FLAG FL_USER13
#define ROBJ_TRANSIENT_P(obj) FL_TEST_RAW((obj), ROBJECT_TRANSIENT_FLAG)
#define ROBJ_TRANSIENT_SET(obj) FL_SET_RAW((obj), ROBJECT_TRANSIENT_FLAG)
#define ROBJ_TRANSIENT_UNSET(obj) FL_UNSET_RAW((obj), ROBJECT_TRANSIENT_FLAG)
#define CACHELINE 64
#define rb_funcallv(recv,mid,argc,argv) __extension__({ static struct rb_call_data rb_funcallv_data; rb_funcallv_with_cc(&rb_funcallv_data, recv, mid, argc, argv); })
#define rb_method_basic_definition_p(klass,mid) __extension__({ static struct rb_call_data rb_mbdp; (klass == Qfalse) ? true : rb_method_basic_definition_p_with_cc(&rb_mbdp, klass, mid); })
#pragma GCC visibility push(default)
#undef Check_Type
#define Check_Type(v,t) (!RB_TYPE_P((VALUE)(v), (t)) || ((t) == RUBY_T_DATA && RTYPEDDATA_P(v)) ? rb_unexpected_type((VALUE)(v), (t)) : (void)0)
#define rb_typeddata_is_instance_of rb_typeddata_is_instance_of_inline
#define RB_OBJ_GC_FLAGS_MAX 6
#pragma GCC visibility pop
#define RUBY_DTRACE_CREATE_HOOK(name,arg) RUBY_DTRACE_HOOK(name ##_CREATE, arg)
#define RUBY_DTRACE_HOOK(name,arg) do { if (UNLIKELY(RUBY_DTRACE_ ##name ##_ENABLED())) { int dtrace_line; const char *dtrace_file = rb_source_location_cstr(&dtrace_line); if (!dtrace_file) dtrace_file = ""; RUBY_DTRACE_ ##name(arg, dtrace_file, dtrace_line); } } while (0)
#define RB_OBJ_BUILTIN_TYPE(obj) rb_obj_builtin_type(obj)
#define OBJ_BUILTIN_TYPE(obj) RB_OBJ_BUILTIN_TYPE(obj)
#define rb_obj_builtin_type(obj) __extension__({ VALUE arg_obj = (obj); RB_SPECIAL_CONST_P(arg_obj) ? -1 : RB_BUILTIN_TYPE(arg_obj); })
#define FLEX_ARY_LEN 
#define BITFIELD(type,name,size) type name : size
#define COMPILER_WARNING_PUSH _Pragma("GCC diagnostic push")
#define COMPILER_WARNING_POP _Pragma("GCC diagnostic pop")
#define COMPILER_WARNING_SPECIFIER(kind,msg) GCC diagnostic kind #msg
#define COMPILER_WARNING_ERROR(flag) COMPILER_WARNING_PRAGMA(COMPILER_WARNING_SPECIFIER(error, flag))
#define COMPILER_WARNING_IGNORED(flag) COMPILER_WARNING_PRAGMA(COMPILER_WARNING_SPECIFIER(ignored, flag))
#define COMPILER_WARNING_PRAGMA(str) COMPILER_WARNING_PRAGMA_(str)
#define COMPILER_WARNING_PRAGMA_(str) _Pragma(#str)
#define UNALIGNED_MEMBER_ACCESS(expr) expr
#define UNALIGNED_MEMBER_PTR(ptr,mem) UNALIGNED_MEMBER_ACCESS(&(ptr)->mem)
#undef RB_OBJ_WRITE
#define RB_OBJ_WRITE(a,slot,b) UNALIGNED_MEMBER_ACCESS(rb_obj_write((VALUE)(a), (VALUE *)(slot), (VALUE)(b), __FILE__, __LINE__))
#define RUBY_VM_H 1
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define vm_exec rb_vm_exec
#define RUBY_GC_H 1
#define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movq\t%%rsp, %0" : "=r" (*(p)))
#define RUBY_MARK_FREE_DEBUG 0
#define RUBY_MARK_ENTER(msg) 
#define RUBY_MARK_LEAVE(msg) 
#define RUBY_FREE_ENTER(msg) 
#define RUBY_FREE_LEAVE(msg) 
#define RUBY_GC_INFO if(0)printf
#define RUBY_MARK_NO_PIN_UNLESS_NULL(ptr) do { VALUE markobj = (ptr); if (RTEST(markobj)) {rb_gc_mark_movable(markobj);} } while (0)
#define RUBY_MARK_UNLESS_NULL(ptr) do { VALUE markobj = (ptr); if (RTEST(markobj)) {rb_gc_mark(markobj);} } while (0)
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);(ptr)=NULL;}
#define STACK_UPPER(x,a,b) (b)
#define STACK_GROW_DIR_DETECTION 
#define STACK_DIR_UPPER(a,b) STACK_UPPER(0, (a), (b))
#define IS_STACK_DIR_UPPER() STACK_DIR_UPPER(1,0)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RUBY_VM_CORE_H 
#define N_OR_RUBY_DEBUG(n) (((n) > 0) ? (n) : RUBY_DEBUG)
#define VM_CHECK_MODE N_OR_RUBY_DEBUG(0)
#define VMDEBUG 0
#undef assert
#define assert RUBY_ASSERT
#define VM_ASSERT(expr) ((void)0)
#define VM_UNREACHABLE(func) UNREACHABLE
#define RUBY_VM_THREAD_MODEL 2
#define VM_INSN_INFO_TABLE_IMPL 2
#define RUBY_NODE_H 1
#define RNODE(obj) (R_CAST(RNode)(obj))
#define NODE_FL_NEWLINE (((VALUE)1)<<7)
#define NODE_TYPESHIFT 8
#define NODE_TYPEMASK (((VALUE)0x7f)<<NODE_TYPESHIFT)
#define nd_type(n) ((int) (((n)->flags & NODE_TYPEMASK)>>NODE_TYPESHIFT))
#define nd_set_type(n,t) (n)->flags=(((n)->flags&~NODE_TYPEMASK)|((((unsigned long)(t))<<NODE_TYPESHIFT)&NODE_TYPEMASK))
#define NODE_LSHIFT (NODE_TYPESHIFT+7)
#define NODE_LMASK (((SIGNED_VALUE)1<<(sizeof(VALUE)*CHAR_BIT-NODE_LSHIFT))-1)
#define nd_line(n) (int)(((SIGNED_VALUE)(n)->flags)>>NODE_LSHIFT)
#define nd_set_line(n,l) (n)->flags=(((n)->flags&~((VALUE)(-1)<<NODE_LSHIFT))|((VALUE)((l)&NODE_LMASK)<<NODE_LSHIFT))
#define nd_first_column(n) ((int)((n)->nd_loc.beg_pos.column))
#define nd_set_first_column(n,v) ((n)->nd_loc.beg_pos.column = (v))
#define nd_first_lineno(n) ((int)((n)->nd_loc.beg_pos.lineno))
#define nd_set_first_lineno(n,v) ((n)->nd_loc.beg_pos.lineno = (v))
#define nd_first_loc(n) ((n)->nd_loc.beg_pos)
#define nd_set_first_loc(n,v) (nd_first_loc(n) = (v))
#define nd_last_column(n) ((int)((n)->nd_loc.end_pos.column))
#define nd_set_last_column(n,v) ((n)->nd_loc.end_pos.column = (v))
#define nd_last_lineno(n) ((int)((n)->nd_loc.end_pos.lineno))
#define nd_set_last_lineno(n,v) ((n)->nd_loc.end_pos.lineno = (v))
#define nd_last_loc(n) ((n)->nd_loc.end_pos)
#define nd_set_last_loc(n,v) (nd_last_loc(n) = (v))
#define nd_node_id(n) ((n)->node_id)
#define nd_set_node_id(n,id) ((n)->node_id = (id))
#define nd_head u1.node
#define nd_alen u2.argc
#define nd_next u3.node
#define nd_cond u1.node
#define nd_body u2.node
#define nd_else u3.node
#define nd_resq u2.node
#define nd_ensr u3.node
#define nd_1st u1.node
#define nd_2nd u2.node
#define nd_stts u1.node
#define nd_entry u3.entry
#define nd_vid u1.id
#define nd_cflag u2.id
#define nd_cval u3.value
#define nd_oid u1.id
#define nd_tbl u1.tbl
#define nd_var u1.node
#define nd_iter u3.node
#define nd_value u2.node
#define nd_aid u3.id
#define nd_lit u1.value
#define nd_rest u1.id
#define nd_opt u1.node
#define nd_pid u1.id
#define nd_plen u2.argc
#define nd_recv u1.node
#define nd_mid u2.id
#define nd_args u3.node
#define nd_ainfo u3.args
#define nd_defn u3.node
#define nd_cpath u1.node
#define nd_super u3.node
#define nd_beg u1.node
#define nd_end u2.node
#define nd_state u3.state
#define nd_rval u2.value
#define nd_nth u2.argc
#define nd_tag u1.id
#define nd_alias u1.id
#define nd_orig u2.id
#define nd_undef u2.node
#define nd_brace u2.argc
#define nd_pconst u1.node
#define nd_pkwargs u2.node
#define nd_pkwrestarg u3.node
#define nd_apinfo u3.apinfo
#define NEW_NODE(t,a0,a1,a2,loc) rb_node_newnode((t),(VALUE)(a0),(VALUE)(a1),(VALUE)(a2),loc)
#define NEW_NODE_WITH_LOCALS(t,a1,a2,loc) node_newnode_with_locals(p, (t),(VALUE)(a1),(VALUE)(a2),loc)
#define NEW_DEFN(i,a,d,loc) NEW_NODE(NODE_DEFN,0,i,NEW_SCOPE(a,d,loc),loc)
#define NEW_DEFS(r,i,a,d,loc) NEW_NODE(NODE_DEFS,r,i,NEW_SCOPE(a,d,loc),loc)
#define NEW_SCOPE(a,b,loc) NEW_NODE_WITH_LOCALS(NODE_SCOPE,b,a,loc)
#define NEW_BLOCK(a,loc) NEW_NODE(NODE_BLOCK,a,0,0,loc)
#define NEW_IF(c,t,e,loc) NEW_NODE(NODE_IF,c,t,e,loc)
#define NEW_UNLESS(c,t,e,loc) NEW_NODE(NODE_UNLESS,c,t,e,loc)
#define NEW_CASE(h,b,loc) NEW_NODE(NODE_CASE,h,b,0,loc)
#define NEW_CASE2(b,loc) NEW_NODE(NODE_CASE2,0,b,0,loc)
#define NEW_CASE3(h,b,loc) NEW_NODE(NODE_CASE3,h,b,0,loc)
#define NEW_WHEN(c,t,e,loc) NEW_NODE(NODE_WHEN,c,t,e,loc)
#define NEW_IN(c,t,e,loc) NEW_NODE(NODE_IN,c,t,e,loc)
#define NEW_WHILE(c,b,n,loc) NEW_NODE(NODE_WHILE,c,b,n,loc)
#define NEW_UNTIL(c,b,n,loc) NEW_NODE(NODE_UNTIL,c,b,n,loc)
#define NEW_FOR(i,b,loc) NEW_NODE(NODE_FOR,0,b,i,loc)
#define NEW_FOR_MASGN(v,loc) NEW_NODE(NODE_FOR_MASGN,v,0,0,loc)
#define NEW_ITER(a,b,loc) NEW_NODE(NODE_ITER,0,NEW_SCOPE(a,b,loc),0,loc)
#define NEW_LAMBDA(a,b,loc) NEW_NODE(NODE_LAMBDA,0,NEW_SCOPE(a,b,loc),0,loc)
#define NEW_BREAK(s,loc) NEW_NODE(NODE_BREAK,s,0,0,loc)
#define NEW_NEXT(s,loc) NEW_NODE(NODE_NEXT,s,0,0,loc)
#define NEW_REDO(loc) NEW_NODE(NODE_REDO,0,0,0,loc)
#define NEW_RETRY(loc) NEW_NODE(NODE_RETRY,0,0,0,loc)
#define NEW_BEGIN(b,loc) NEW_NODE(NODE_BEGIN,0,b,0,loc)
#define NEW_RESCUE(b,res,e,loc) NEW_NODE(NODE_RESCUE,b,res,e,loc)
#define NEW_RESBODY(a,ex,n,loc) NEW_NODE(NODE_RESBODY,n,ex,a,loc)
#define NEW_ENSURE(b,en,loc) NEW_NODE(NODE_ENSURE,b,0,en,loc)
#define NEW_RETURN(s,loc) NEW_NODE(NODE_RETURN,s,0,0,loc)
#define NEW_YIELD(a,loc) NEW_NODE(NODE_YIELD,a,0,0,loc)
#define NEW_LIST(a,loc) NEW_NODE(NODE_LIST,a,1,0,loc)
#define NEW_ZLIST(loc) NEW_NODE(NODE_ZLIST,0,0,0,loc)
#define NEW_HASH(a,loc) NEW_NODE(NODE_HASH,a,0,0,loc)
#define NEW_MASGN(l,r,loc) NEW_NODE(NODE_MASGN,l,0,r,loc)
#define NEW_GASGN(v,val,loc) NEW_NODE(NODE_GASGN,v,val,rb_global_entry(v),loc)
#define NEW_LASGN(v,val,loc) NEW_NODE(NODE_LASGN,v,val,0,loc)
#define NEW_DASGN(v,val,loc) NEW_NODE(NODE_DASGN,v,val,0,loc)
#define NEW_DASGN_CURR(v,val,loc) NEW_NODE(NODE_DASGN_CURR,v,val,0,loc)
#define NEW_IASGN(v,val,loc) NEW_NODE(NODE_IASGN,v,val,0,loc)
#define NEW_CDECL(v,val,path,loc) NEW_NODE(NODE_CDECL,v,val,path,loc)
#define NEW_CVASGN(v,val,loc) NEW_NODE(NODE_CVASGN,v,val,0,loc)
#define NEW_OP_ASGN1(p,id,a,loc) NEW_NODE(NODE_OP_ASGN1,p,id,a,loc)
#define NEW_OP_ASGN2(r,t,i,o,val,loc) NEW_NODE(NODE_OP_ASGN2,r,val,NEW_OP_ASGN22(i,o,t,loc),loc)
#define NEW_OP_ASGN22(i,o,t,loc) NEW_NODE(NODE_OP_ASGN2,i,o,t,loc)
#define NEW_OP_ASGN_OR(i,val,loc) NEW_NODE(NODE_OP_ASGN_OR,i,val,0,loc)
#define NEW_OP_ASGN_AND(i,val,loc) NEW_NODE(NODE_OP_ASGN_AND,i,val,0,loc)
#define NEW_OP_CDECL(v,op,val,loc) NEW_NODE(NODE_OP_CDECL,v,val,op,loc)
#define NEW_GVAR(v,loc) NEW_NODE(NODE_GVAR,v,0,rb_global_entry(v),loc)
#define NEW_LVAR(v,loc) NEW_NODE(NODE_LVAR,v,0,0,loc)
#define NEW_DVAR(v,loc) NEW_NODE(NODE_DVAR,v,0,0,loc)
#define NEW_IVAR(v,loc) NEW_NODE(NODE_IVAR,v,0,0,loc)
#define NEW_CONST(v,loc) NEW_NODE(NODE_CONST,v,0,0,loc)
#define NEW_CVAR(v,loc) NEW_NODE(NODE_CVAR,v,0,0,loc)
#define NEW_NTH_REF(n,loc) NEW_NODE(NODE_NTH_REF,0,n,0,loc)
#define NEW_BACK_REF(n,loc) NEW_NODE(NODE_BACK_REF,0,n,0,loc)
#define NEW_MATCH(c,loc) NEW_NODE(NODE_MATCH,c,0,0,loc)
#define NEW_MATCH2(n1,n2,loc) NEW_NODE(NODE_MATCH2,n1,n2,0,loc)
#define NEW_MATCH3(r,n2,loc) NEW_NODE(NODE_MATCH3,r,n2,0,loc)
#define NEW_LIT(l,loc) NEW_NODE(NODE_LIT,l,0,0,loc)
#define NEW_STR(s,loc) NEW_NODE(NODE_STR,s,0,0,loc)
#define NEW_DSTR(s,loc) NEW_NODE(NODE_DSTR,s,1,0,loc)
#define NEW_XSTR(s,loc) NEW_NODE(NODE_XSTR,s,0,0,loc)
#define NEW_DXSTR(s,loc) NEW_NODE(NODE_DXSTR,s,0,0,loc)
#define NEW_DSYM(s,loc) NEW_NODE(NODE_DSYM,s,0,0,loc)
#define NEW_EVSTR(n,loc) NEW_NODE(NODE_EVSTR,0,(n),0,loc)
#define NEW_CALL(r,m,a,loc) NEW_NODE(NODE_CALL,r,m,a,loc)
#define NEW_OPCALL(r,m,a,loc) NEW_NODE(NODE_OPCALL,r,m,a,loc)
#define NEW_FCALL(m,a,loc) NEW_NODE(NODE_FCALL,0,m,a,loc)
#define NEW_VCALL(m,loc) NEW_NODE(NODE_VCALL,0,m,0,loc)
#define NEW_SUPER(a,loc) NEW_NODE(NODE_SUPER,0,0,a,loc)
#define NEW_ZSUPER(loc) NEW_NODE(NODE_ZSUPER,0,0,0,loc)
#define NEW_ARGS_AUX(r,b,loc) NEW_NODE(NODE_ARGS_AUX,r,b,0,loc)
#define NEW_OPT_ARG(i,v,loc) NEW_NODE(NODE_OPT_ARG,i,v,0,loc)
#define NEW_KW_ARG(i,v,loc) NEW_NODE(NODE_KW_ARG,i,v,0,loc)
#define NEW_POSTARG(i,v,loc) NEW_NODE(NODE_POSTARG,i,v,0,loc)
#define NEW_ARGSCAT(a,b,loc) NEW_NODE(NODE_ARGSCAT,a,b,0,loc)
#define NEW_ARGSPUSH(a,b,loc) NEW_NODE(NODE_ARGSPUSH,a,b,0,loc)
#define NEW_SPLAT(a,loc) NEW_NODE(NODE_SPLAT,a,0,0,loc)
#define NEW_BLOCK_PASS(b,loc) NEW_NODE(NODE_BLOCK_PASS,0,b,0,loc)
#define NEW_ALIAS(n,o,loc) NEW_NODE(NODE_ALIAS,n,o,0,loc)
#define NEW_VALIAS(n,o,loc) NEW_NODE(NODE_VALIAS,n,o,0,loc)
#define NEW_UNDEF(i,loc) NEW_NODE(NODE_UNDEF,0,i,0,loc)
#define NEW_CLASS(n,b,s,loc) NEW_NODE(NODE_CLASS,n,NEW_SCOPE(0,b,loc),(s),loc)
#define NEW_SCLASS(r,b,loc) NEW_NODE(NODE_SCLASS,r,NEW_SCOPE(0,b,loc),0,loc)
#define NEW_MODULE(n,b,loc) NEW_NODE(NODE_MODULE,n,NEW_SCOPE(0,b,loc),0,loc)
#define NEW_COLON2(c,i,loc) NEW_NODE(NODE_COLON2,c,i,0,loc)
#define NEW_COLON3(i,loc) NEW_NODE(NODE_COLON3,0,i,0,loc)
#define NEW_DOT2(b,e,loc) NEW_NODE(NODE_DOT2,b,e,0,loc)
#define NEW_DOT3(b,e,loc) NEW_NODE(NODE_DOT3,b,e,0,loc)
#define NEW_SELF(loc) NEW_NODE(NODE_SELF,0,0,1,loc)
#define NEW_NIL(loc) NEW_NODE(NODE_NIL,0,0,0,loc)
#define NEW_TRUE(loc) NEW_NODE(NODE_TRUE,0,0,0,loc)
#define NEW_FALSE(loc) NEW_NODE(NODE_FALSE,0,0,0,loc)
#define NEW_ERRINFO(loc) NEW_NODE(NODE_ERRINFO,0,0,0,loc)
#define NEW_DEFINED(e,loc) NEW_NODE(NODE_DEFINED,e,0,0,loc)
#define NEW_PREEXE(b,loc) NEW_SCOPE(b,loc)
#define NEW_POSTEXE(b,loc) NEW_NODE(NODE_POSTEXE,0,b,0,loc)
#define NEW_ATTRASGN(r,m,a,loc) NEW_NODE(NODE_ATTRASGN,r,m,a,loc)
#define NODE_SPECIAL_REQUIRED_KEYWORD ((NODE *)-1)
#define NODE_REQUIRED_KEYWORD_P(node) ((node)->nd_value == NODE_SPECIAL_REQUIRED_KEYWORD)
#define NODE_SPECIAL_NO_NAME_REST ((NODE *)-1)
#define NODE_NAMED_REST_P(node) ((node) != NODE_SPECIAL_NO_NAME_REST)
#define NODE_SPECIAL_EXCESSIVE_COMMA ((ID)1)
#define NODE_SPECIAL_NO_REST_KEYWORD ((NODE *)-1)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RUBY_VM_OPTS_H 
#define OPT_TAILCALL_OPTIMIZATION 0
#define OPT_PEEPHOLE_OPTIMIZATION 1
#define OPT_SPECIALISED_INSTRUCTION 1
#define OPT_INLINE_CONST_CACHE 1
#define OPT_FROZEN_STRING_LITERAL 0
#define OPT_DEBUG_FROZEN_STRING_LITERAL 0
#define OPT_THREADED_CODE 0
#define OPT_DIRECT_THREADED_CODE (OPT_THREADED_CODE == 0)
#define OPT_TOKEN_THREADED_CODE (OPT_THREADED_CODE == 1)
#define OPT_CALL_THREADED_CODE (OPT_THREADED_CODE == 2)
#define OPT_CHECKED_RUN 1
#define OPT_INLINE_METHOD_CACHE 1
#define OPT_GLOBAL_METHOD_CACHE 1
#define OPT_BLOCKINLINING 0
#define OPT_IC_FOR_IVAR 1
#define OPT_OPERANDS_UNIFICATION 1
#define OPT_INSTRUCTIONS_UNIFICATION 0
#define OPT_UNIFY_ALL_COMBINATION 0
#define OPT_STACK_CACHING 0
#define OPT_SUPPORT_JOKE 0
#define VM_COLLECT_USAGE_DETAILS 0
#define RUBY_ID_H 
#define ID_STATIC_SYM RUBY_ID_STATIC_SYM
#define ID_SCOPE_SHIFT RUBY_ID_SCOPE_SHIFT
#define ID_SCOPE_MASK RUBY_ID_SCOPE_MASK
#define ID_LOCAL RUBY_ID_LOCAL
#define ID_INSTANCE RUBY_ID_INSTANCE
#define ID_GLOBAL RUBY_ID_GLOBAL
#define ID_ATTRSET RUBY_ID_ATTRSET
#define ID_CONST RUBY_ID_CONST
#define ID_CLASS RUBY_ID_CLASS
#define ID_JUNK RUBY_ID_JUNK
#define ID_INTERNAL RUBY_ID_INTERNAL
#define symIFUNC ID2SYM(idIFUNC)
#define symCFUNC ID2SYM(idCFUNC)
#define RUBY_TOKEN_DOT2 128
#define RUBY_TOKEN_DOT3 129
#define RUBY_TOKEN_BDOT2 130
#define RUBY_TOKEN_BDOT3 131
#define RUBY_TOKEN_UPLUS 132
#define RUBY_TOKEN_UMINUS 133
#define RUBY_TOKEN_POW 134
#define RUBY_TOKEN_CMP 135
#define RUBY_TOKEN_LSHFT 136
#define RUBY_TOKEN_RSHFT 137
#define RUBY_TOKEN_LEQ 138
#define RUBY_TOKEN_GEQ 139
#define RUBY_TOKEN_EQ 140
#define RUBY_TOKEN_EQQ 141
#define RUBY_TOKEN_NEQ 142
#define RUBY_TOKEN_MATCH 143
#define RUBY_TOKEN_NMATCH 144
#define RUBY_TOKEN_AREF 145
#define RUBY_TOKEN_ASET 146
#define RUBY_TOKEN_COLON2 147
#define RUBY_TOKEN_ANDOP 148
#define RUBY_TOKEN_OROP 149
#define RUBY_TOKEN_ANDDOT 150
#define RUBY_TOKEN(t) RUBY_TOKEN_ ##t
#define RUBY_TOKEN2ID_TYPE(tok,type) ((tok<<RUBY_ID_SCOPE_SHIFT)|type|RUBY_ID_STATIC_SYM)
#define TOKEN2LOCALID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_LOCAL)
#define TOKEN2INSTANCEID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_INSTANCE)
#define TOKEN2GLOBALID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_GLOBAL)
#define TOKEN2CONSTID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_CONST)
#define TOKEN2CLASSID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_CLASS)
#define TOKEN2ATTRSETID(tok) RUBY_TOKEN2ID_TYPE(tok, RUBY_ID_ATTRSET)
#define DEFINE_LOCALID_FROM_TOKEN(n) id ##n = TOKEN2LOCALID(t ##n)
#define DEFINE_INSTANCEID_FROM_TOKEN(n) id ##n = TOKEN2INSTANCEID(t ##n)
#define DEFINE_GLOBALID_FROM_TOKEN(n) id ##n = TOKEN2GLOBALID(t ##n)
#define DEFINE_CONSTID_FROM_TOKEN(n) id ##n = TOKEN2CONSTID(t ##n)
#define DEFINE_CLASSID_FROM_TOKEN(n) id ##n = TOKEN2CLASSID(t ##n)
#define DEFINE_ATTRSETID_FROM_TOKEN(n) id ##n = TOKEN2ATTRSETID(t ##n)
#define RUBY_METHOD_H 1
#define END_OF_ENUMERATION(key) 
#define METHOD_ENTRY_VISI(me) (rb_method_visibility_t)(((me)->flags & (IMEMO_FL_USER0 | IMEMO_FL_USER1)) >> (IMEMO_FL_USHIFT+0))
#define METHOD_ENTRY_BASIC(me) (int) (((me)->flags & (IMEMO_FL_USER2 )) >> (IMEMO_FL_USHIFT+2))
#define METHOD_ENTRY_COMPLEMENTED(me) ((me)->flags & IMEMO_FL_USER3)
#define METHOD_ENTRY_COMPLEMENTED_SET(me) ((me)->flags = (me)->flags | IMEMO_FL_USER3)
#define VM_METHOD_TYPE_MINIMUM_BITS 4
#define rb_iseq_t rb_iseq_t
#define UNDEFINED_METHOD_ENTRY_P(me) (!(me) || !(me)->def || (me)->def->type == VM_METHOD_TYPE_UNDEF)
#define UNDEFINED_REFINED_METHOD_P(def) ((def)->type == VM_METHOD_TYPE_REFINED && UNDEFINED_METHOD_ENTRY_P((def)->body.refined.orig_me))
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RUBY_ATOMIC_H 
#define ATOMIC_SET(var,val) (void)__atomic_exchange_n(&(var), (val), __ATOMIC_SEQ_CST)
#define ATOMIC_INC(var) __atomic_fetch_add(&(var), 1, __ATOMIC_SEQ_CST)
#define ATOMIC_DEC(var) __atomic_fetch_sub(&(var), 1, __ATOMIC_SEQ_CST)
#define ATOMIC_OR(var,val) __atomic_fetch_or(&(var), (val), __ATOMIC_SEQ_CST)
#define ATOMIC_EXCHANGE(var,val) __atomic_exchange_n(&(var), (val), __ATOMIC_SEQ_CST)
#define ATOMIC_CAS(var,oldval,newval) ({ __typeof__(var) oldvaldup = (oldval); __atomic_compare_exchange_n(&(var), &oldvaldup, (newval), 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); oldvaldup; })
#define ATOMIC_SIZE_ADD(var,val) __atomic_fetch_add(&(var), (val), __ATOMIC_SEQ_CST)
#define ATOMIC_SIZE_SUB(var,val) __atomic_fetch_sub(&(var), (val), __ATOMIC_SEQ_CST)
#define RUBY_ATOMIC_GENERIC_MACRO 1
#define ATOMIC_SIZE_INC(var) ATOMIC_INC(var)
#define ATOMIC_SIZE_DEC(var) ATOMIC_DEC(var)
#define ATOMIC_SIZE_EXCHANGE(var,val) ATOMIC_EXCHANGE(var, val)
#define ATOMIC_SIZE_CAS(var,oldval,val) ATOMIC_CAS(var, oldval, val)
#define ATOMIC_PTR_EXCHANGE(var,val) ATOMIC_EXCHANGE(var, val)
#define ATOMIC_PTR_CAS(var,oldval,newval) ATOMIC_CAS(var, oldval, newval)
#define ATOMIC_VALUE_EXCHANGE(var,val) ATOMIC_EXCHANGE(var, val)
#define ATOMIC_VALUE_CAS(var,oldval,val) ATOMIC_CAS(var, oldval, val)
#define CCAN_LIST_H 
#define _ASSERT_H 1
#define __ASSERT_VOID_CAST (void)
#define assert(expr) ((void) sizeof ((expr) ? 1 : 0), __extension__ ({ if (expr) ; else __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION); }))
#define assert_perror(errnum) (!(errnum) ? __ASSERT_VOID_CAST (0) : __assert_perror_fail ((errnum), __FILE__, __LINE__, __ASSERT_FUNCTION))
#define __ASSERT_FUNCTION __extension__ __PRETTY_FUNCTION__
#undef static_assert
#define static_assert _Static_assert
#define CCAN_STR_H 
#define stringify(expr) stringify_1(expr)
#define stringify_1(expr) #expr
#define CCAN_CONTAINER_OF_H 
#define CCAN_CHECK_TYPE_H 
#define check_type(expr,type) ((typeof(expr) *)0 != (type *)0)
#define check_types_match(expr1,expr2) ((typeof(expr1) *)0 != (typeof(expr2) *)0)
#define container_of(member_ptr,containing_type,member) ((containing_type *) ((char *)(member_ptr) - container_off(containing_type, member)) + check_types_match(*(member_ptr), ((containing_type *)0)->member))
#define container_of_or_null(member_ptr,containing_type,member) ((containing_type *) container_of_or_null_(member_ptr, container_off(containing_type, member)) + check_types_match(*(member_ptr), ((containing_type *)0)->member))
#define container_off(containing_type,member) offsetof(containing_type, member)
#define container_of_var(member_ptr,container_var,member) container_of(member_ptr, typeof(*container_var), member)
#define container_off_var(var,member) container_off(typeof(*var), member)
#define LIST_LOC __FILE__ ":" stringify(__LINE__)
#define list_debug(h,loc) ((void)loc, h)
#define list_debug_node(n,loc) ((void)loc, n)
#define LIST_HEAD_INIT(name) { { &(name).n, &(name).n } }
#define LIST_HEAD(name) struct list_head name = LIST_HEAD_INIT(name)
#define list_add_after(h,p,n) list_add_after_(h, p, n, LIST_LOC)
#define list_add(h,n) list_add_(h, n, LIST_LOC)
#define list_add_before(h,p,n) list_add_before_(h, p, n, LIST_LOC)
#define list_add_tail(h,n) list_add_tail_(h, n, LIST_LOC)
#define list_empty(h) list_empty_(h, LIST_LOC)
#define list_empty_nodebug(h) list_empty(h)
#define list_del(n) list_del_(n, LIST_LOC)
#define list_del_init(n) list_del_init_(n, LIST_LOC)
#define list_swap(o,n) list_swap_(o, n, LIST_LOC)
#define list_entry(n,type,member) container_of(n, type, member)
#define list_top(h,type,member) ((type *)list_top_((h), list_off_(type, member)))
#define list_pop(h,type,member) ((type *)list_pop_((h), list_off_(type, member)))
#define list_tail(h,type,member) ((type *)list_tail_((h), list_off_(type, member)))
#define list_for_each(h,i,member) list_for_each_off(h, i, list_off_var_(i, member))
#define list_for_each_rev(h,i,member) list_for_each_rev_off(h, i, list_off_var_(i, member))
#define list_for_each_rev_safe(h,i,nxt,member) list_for_each_rev_safe_off(h, i, nxt, list_off_var_(i, member))
#define list_for_each_safe(h,i,nxt,member) list_for_each_safe_off(h, i, nxt, list_off_var_(i, member))
#define list_next(h,i,member) ((list_typeof(i))list_entry_or_null(list_debug(h, __FILE__ ":" stringify(__LINE__)), (i)->member.next, list_off_var_((i), member)))
#define list_prev(h,i,member) ((list_typeof(i))list_entry_or_null(list_debug(h, __FILE__ ":" stringify(__LINE__)), (i)->member.prev, list_off_var_((i), member)))
#define list_append_list(t,f) list_append_list_(t, f, __FILE__ ":" stringify(__LINE__))
#define list_prepend_list(t,f) list_prepend_list_(t, f, LIST_LOC)
#define list_for_each_off_dir_(h,i,off,dir) for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.dir, (off)); list_node_from_off_((void *)i, (off)) != &(h)->n; i = list_node_to_off_(list_node_from_off_((void *)i, (off))->dir, (off)))
#define list_for_each_safe_off_dir_(h,i,nxt,off,dir) for (i = list_node_to_off_(list_debug(h, LIST_LOC)->n.dir, (off)), nxt = list_node_to_off_(list_node_from_off_(i, (off))->dir, (off)); list_node_from_off_(i, (off)) != &(h)->n; i = nxt, nxt = list_node_to_off_(list_node_from_off_(i, (off))->dir, (off)))
#define list_for_each_off(h,i,off) list_for_each_off_dir_((h),(i),(off),next)
#define list_for_each_rev_off(h,i,off) list_for_each_off_dir_((h),(i),(off),prev)
#define list_for_each_safe_off(h,i,nxt,off) list_for_each_safe_off_dir_((h),(i),(nxt),(off),next)
#define list_for_each_rev_safe_off(h,i,nxt,off) list_for_each_safe_off_dir_((h),(i),(nxt),(off),prev)
#define list_entry_off(n,type,off) ((type *)list_node_from_off_((n), (off)))
#define list_head_off(h,type,off) ((type *)list_head_off((h), (off)))
#define list_tail_off(h,type,off) ((type *)list_tail_((h), (off)))
#define list_add_off(h,n,off) list_add((h), list_node_from_off_((n), (off)))
#define list_del_off(n,off) list_del(list_node_from_off_((n), (off)))
#define list_del_from_off(h,n,off) list_del_from(h, list_node_from_off_((n), (off)))
#define list_off_(type,member) (container_off(type, member) + check_type(((type *)0)->member, struct list_node))
#define list_off_var_(var,member) (container_off_var(var, member) + check_type(var->member, struct list_node))
#define list_typeof(var) typeof(var)
#define RUBY_THREAD_NATIVE_H 1
#define _PTHREAD_H 1
#define _SCHED_H 1
#define __need_size_t 
#define __need_NULL 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define _BITS_SCHED_H 1
#define SCHED_OTHER 0
#define SCHED_FIFO 1
#define SCHED_RR 2
#define SCHED_BATCH 3
#define SCHED_ISO 4
#define SCHED_IDLE 5
#define SCHED_DEADLINE 6
#define SCHED_RESET_ON_FORK 0x40000000
#define CSIGNAL 0x000000ff
#define CLONE_VM 0x00000100
#define CLONE_FS 0x00000200
#define CLONE_FILES 0x00000400
#define CLONE_SIGHAND 0x00000800
#define CLONE_PTRACE 0x00002000
#define CLONE_VFORK 0x00004000
#define CLONE_PARENT 0x00008000
#define CLONE_THREAD 0x00010000
#define CLONE_NEWNS 0x00020000
#define CLONE_SYSVSEM 0x00040000
#define CLONE_SETTLS 0x00080000
#define CLONE_PARENT_SETTID 0x00100000
#define CLONE_CHILD_CLEARTID 0x00200000
#define CLONE_DETACHED 0x00400000
#define CLONE_UNTRACED 0x00800000
#define CLONE_CHILD_SETTID 0x01000000
#define CLONE_NEWCGROUP 0x02000000
#define CLONE_NEWUTS 0x04000000
#define CLONE_NEWIPC 0x08000000
#define CLONE_NEWUSER 0x10000000
#define CLONE_NEWPID 0x20000000
#define CLONE_NEWNET 0x40000000
#define CLONE_IO 0x80000000
#define _BITS_TYPES_STRUCT_SCHED_PARAM 1
#define _BITS_CPU_SET_H 1
#define __CPU_SETSIZE 1024
#define __NCPUBITS (8 * sizeof (__cpu_mask))
#define __CPUELT(cpu) ((cpu) / __NCPUBITS)
#define __CPUMASK(cpu) ((__cpu_mask) 1 << ((cpu) % __NCPUBITS))
#define __CPU_ZERO_S(setsize,cpusetp) do __builtin_memset (cpusetp, '\0', setsize); while (0)
#define __CPU_SET_S(cpu,setsize,cpusetp) (__extension__ ({ size_t __cpu = (cpu); __cpu / 8 < (setsize) ? (((__cpu_mask *) ((cpusetp)->__bits))[__CPUELT (__cpu)] |= __CPUMASK (__cpu)) : 0; }))
#define __CPU_CLR_S(cpu,setsize,cpusetp) (__extension__ ({ size_t __cpu = (cpu); __cpu / 8 < (setsize) ? (((__cpu_mask *) ((cpusetp)->__bits))[__CPUELT (__cpu)] &= ~__CPUMASK (__cpu)) : 0; }))
#define __CPU_ISSET_S(cpu,setsize,cpusetp) (__extension__ ({ size_t __cpu = (cpu); __cpu / 8 < (setsize) ? ((((const __cpu_mask *) ((cpusetp)->__bits))[__CPUELT (__cpu)] & __CPUMASK (__cpu))) != 0 : 0; }))
#define __CPU_COUNT_S(setsize,cpusetp) __sched_cpucount (setsize, cpusetp)
#define __CPU_EQUAL_S(setsize,cpusetp1,cpusetp2) (__builtin_memcmp (cpusetp1, cpusetp2, setsize) == 0)
#define __CPU_OP_S(setsize,destset,srcset1,srcset2,op) (__extension__ ({ cpu_set_t *__dest = (destset); const __cpu_mask *__arr1 = (srcset1)->__bits; const __cpu_mask *__arr2 = (srcset2)->__bits; size_t __imax = (setsize) / sizeof (__cpu_mask); size_t __i; for (__i = 0; __i < __imax; ++__i) ((__cpu_mask *) __dest->__bits)[__i] = __arr1[__i] op __arr2[__i]; __dest; }))
#define __CPU_ALLOC_SIZE(count) ((((count) + __NCPUBITS - 1) / __NCPUBITS) * sizeof (__cpu_mask))
#define __CPU_ALLOC(count) __sched_cpualloc (count)
#define __CPU_FREE(cpuset) __sched_cpufree (cpuset)
#define sched_priority sched_priority
#define __sched_priority sched_priority
#define CPU_SETSIZE __CPU_SETSIZE
#define CPU_SET(cpu,cpusetp) __CPU_SET_S (cpu, sizeof (cpu_set_t), cpusetp)
#define CPU_CLR(cpu,cpusetp) __CPU_CLR_S (cpu, sizeof (cpu_set_t), cpusetp)
#define CPU_ISSET(cpu,cpusetp) __CPU_ISSET_S (cpu, sizeof (cpu_set_t), cpusetp)
#define CPU_ZERO(cpusetp) __CPU_ZERO_S (sizeof (cpu_set_t), cpusetp)
#define CPU_COUNT(cpusetp) __CPU_COUNT_S (sizeof (cpu_set_t), cpusetp)
#define CPU_SET_S(cpu,setsize,cpusetp) __CPU_SET_S (cpu, setsize, cpusetp)
#define CPU_CLR_S(cpu,setsize,cpusetp) __CPU_CLR_S (cpu, setsize, cpusetp)
#define CPU_ISSET_S(cpu,setsize,cpusetp) __CPU_ISSET_S (cpu, setsize, cpusetp)
#define CPU_ZERO_S(setsize,cpusetp) __CPU_ZERO_S (setsize, cpusetp)
#define CPU_COUNT_S(setsize,cpusetp) __CPU_COUNT_S (setsize, cpusetp)
#define CPU_EQUAL(cpusetp1,cpusetp2) __CPU_EQUAL_S (sizeof (cpu_set_t), cpusetp1, cpusetp2)
#define CPU_EQUAL_S(setsize,cpusetp1,cpusetp2) __CPU_EQUAL_S (setsize, cpusetp1, cpusetp2)
#define CPU_AND(destset,srcset1,srcset2) __CPU_OP_S (sizeof (cpu_set_t), destset, srcset1, srcset2, &)
#define CPU_OR(destset,srcset1,srcset2) __CPU_OP_S (sizeof (cpu_set_t), destset, srcset1, srcset2, |)
#define CPU_XOR(destset,srcset1,srcset2) __CPU_OP_S (sizeof (cpu_set_t), destset, srcset1, srcset2, ^)
#define CPU_AND_S(setsize,destset,srcset1,srcset2) __CPU_OP_S (setsize, destset, srcset1, srcset2, &)
#define CPU_OR_S(setsize,destset,srcset1,srcset2) __CPU_OP_S (setsize, destset, srcset1, srcset2, |)
#define CPU_XOR_S(setsize,destset,srcset1,srcset2) __CPU_OP_S (setsize, destset, srcset1, srcset2, ^)
#define CPU_ALLOC_SIZE(count) __CPU_ALLOC_SIZE (count)
#define CPU_ALLOC(count) __CPU_ALLOC (count)
#define CPU_FREE(cpuset) __CPU_FREE (cpuset)
#define _TIME_H 1
#define __need_size_t 
#define __need_NULL 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define _BITS_TIME_H 1
#define CLOCKS_PER_SEC ((__clock_t) 1000000)
#define CLOCK_REALTIME 0
#define CLOCK_MONOTONIC 1
#define CLOCK_PROCESS_CPUTIME_ID 2
#define CLOCK_THREAD_CPUTIME_ID 3
#define CLOCK_MONOTONIC_RAW 4
#define CLOCK_REALTIME_COARSE 5
#define CLOCK_MONOTONIC_COARSE 6
#define CLOCK_BOOTTIME 7
#define CLOCK_REALTIME_ALARM 8
#define CLOCK_BOOTTIME_ALARM 9
#define CLOCK_TAI 11
#define TIMER_ABSTIME 1
#define _BITS_TIMEX_H 1
#define ADJ_OFFSET 0x0001
#define ADJ_FREQUENCY 0x0002
#define ADJ_MAXERROR 0x0004
#define ADJ_ESTERROR 0x0008
#define ADJ_STATUS 0x0010
#define ADJ_TIMECONST 0x0020
#define ADJ_TAI 0x0080
#define ADJ_SETOFFSET 0x0100
#define ADJ_MICRO 0x1000
#define ADJ_NANO 0x2000
#define ADJ_TICK 0x4000
#define ADJ_OFFSET_SINGLESHOT 0x8001
#define ADJ_OFFSET_SS_READ 0xa001
#define MOD_OFFSET ADJ_OFFSET
#define MOD_FREQUENCY ADJ_FREQUENCY
#define MOD_MAXERROR ADJ_MAXERROR
#define MOD_ESTERROR ADJ_ESTERROR
#define MOD_STATUS ADJ_STATUS
#define MOD_TIMECONST ADJ_TIMECONST
#define MOD_CLKB ADJ_TICK
#define MOD_CLKA ADJ_OFFSET_SINGLESHOT
#define MOD_TAI ADJ_TAI
#define MOD_MICRO ADJ_MICRO
#define MOD_NANO ADJ_NANO
#define STA_PLL 0x0001
#define STA_PPSFREQ 0x0002
#define STA_PPSTIME 0x0004
#define STA_FLL 0x0008
#define STA_INS 0x0010
#define STA_DEL 0x0020
#define STA_UNSYNC 0x0040
#define STA_FREQHOLD 0x0080
#define STA_PPSSIGNAL 0x0100
#define STA_PPSJITTER 0x0200
#define STA_PPSWANDER 0x0400
#define STA_PPSERROR 0x0800
#define STA_CLOCKERR 0x1000
#define STA_NANO 0x2000
#define STA_MODE 0x4000
#define STA_CLK 0x8000
#define STA_RONLY (STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER | STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK)
#define __struct_tm_defined 1
#define __itimerspec_defined 1
#define TIME_UTC 1
#define __isleap(year) ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
#define _BITS_SETJMP_H 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_JOINABLE
#define PTHREAD_CREATE_DETACHED PTHREAD_CREATE_DETACHED
#define PTHREAD_MUTEX_INITIALIZER { { 0, 0, 0, 0, 0, __PTHREAD_SPINS, { 0, 0 } } }
#define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP { { 0, 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP, __PTHREAD_SPINS, { 0, 0 } } }
#define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP { { 0, 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP, __PTHREAD_SPINS, { 0, 0 } } }
#define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP { { 0, 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP, __PTHREAD_SPINS, { 0, 0 } } }
#define PTHREAD_RWLOCK_INITIALIZER { { 0, 0, 0, 0, 0, 0, 0, 0, __PTHREAD_RWLOCK_ELISION_EXTRA, 0, 0 } }
#define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP { { 0, 0, 0, 0, 0, 0, 0, 0, __PTHREAD_RWLOCK_ELISION_EXTRA, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP } }
#define PTHREAD_INHERIT_SCHED PTHREAD_INHERIT_SCHED
#define PTHREAD_EXPLICIT_SCHED PTHREAD_EXPLICIT_SCHED
#define PTHREAD_SCOPE_SYSTEM PTHREAD_SCOPE_SYSTEM
#define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_PROCESS
#define PTHREAD_PROCESS_PRIVATE PTHREAD_PROCESS_PRIVATE
#define PTHREAD_PROCESS_SHARED PTHREAD_PROCESS_SHARED
#define PTHREAD_COND_INITIALIZER { { {0}, {0}, {0, 0}, {0, 0}, 0, 0, {0, 0} } }
#define PTHREAD_CANCEL_ENABLE PTHREAD_CANCEL_ENABLE
#define PTHREAD_CANCEL_DISABLE PTHREAD_CANCEL_DISABLE
#define PTHREAD_CANCEL_DEFERRED PTHREAD_CANCEL_DEFERRED
#define PTHREAD_CANCEL_ASYNCHRONOUS PTHREAD_CANCEL_ASYNCHRONOUS
#define PTHREAD_CANCELED ((void *) -1)
#define PTHREAD_ONCE_INIT 0
#define PTHREAD_BARRIER_SERIAL_THREAD -1
#define __cleanup_fct_attribute 
#define pthread_cleanup_push(routine,arg) do { struct __pthread_cleanup_frame __clframe __attribute__ ((__cleanup__ (__pthread_cleanup_routine))) = { .__cancel_routine = (routine), .__cancel_arg = (arg), .__do_it = 1 };
#define pthread_cleanup_pop(execute) __clframe.__do_it = (execute); } while (0)
#define pthread_cleanup_push_defer_np(routine,arg) do { struct __pthread_cleanup_frame __clframe __attribute__ ((__cleanup__ (__pthread_cleanup_routine))) = { .__cancel_routine = (routine), .__cancel_arg = (arg), .__do_it = 1 }; (void) pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED, &__clframe.__cancel_type)
#define pthread_cleanup_pop_restore_np(execute) (void) pthread_setcanceltype (__clframe.__cancel_type, NULL); __clframe.__do_it = (execute); } while (0)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define RUBY_THREAD_PTHREAD_H 
#define RB_NATIVETHREAD_LOCK_INIT PTHREAD_MUTEX_INITIALIZER
#define RB_NATIVETHREAD_COND_INIT PTHREAD_COND_INITIALIZER
#undef except
#undef try
#undef leave
#undef finally
#define _SETJMP_H 1
#define setjmp(env) _setjmp (env)
#define sigsetjmp(env,savemask) __sigsetjmp (env, savemask)
#define _SIGNAL_H 
#define _BITS_SIGNUM_H 1
#define _BITS_SIGNUM_GENERIC_H 1
#define SIG_ERR ((__sighandler_t) -1)
#define SIG_DFL ((__sighandler_t) 0)
#define SIG_IGN ((__sighandler_t) 1)
#define SIG_HOLD ((__sighandler_t) 2)
#define SIGINT 2
#define SIGILL 4
#define SIGABRT 6
#define SIGFPE 8
#define SIGSEGV 11
#define SIGTERM 15
#define SIGHUP 1
#define SIGQUIT 3
#define SIGTRAP 5
#define SIGKILL 9
#define SIGBUS 10
#define SIGSYS 12
#define SIGPIPE 13
#define SIGALRM 14
#define SIGURG 16
#define SIGSTOP 17
#define SIGTSTP 18
#define SIGCONT 19
#define SIGCHLD 20
#define SIGTTIN 21
#define SIGTTOU 22
#define SIGPOLL 23
#define SIGXCPU 24
#define SIGXFSZ 25
#define SIGVTALRM 26
#define SIGPROF 27
#define SIGUSR1 30
#define SIGUSR2 31
#define SIGWINCH 28
#define SIGIO SIGPOLL
#define SIGIOT SIGABRT
#define SIGCLD SIGCHLD
#define __SIGRTMIN 32
#define __SIGRTMAX __SIGRTMIN
#define _NSIG (__SIGRTMAX + 1)
#define SIGSTKFLT 16
#define SIGPWR 30
#undef SIGBUS
#define SIGBUS 7
#undef SIGUSR1
#define SIGUSR1 10
#undef SIGUSR2
#define SIGUSR2 12
#undef SIGCHLD
#define SIGCHLD 17
#undef SIGCONT
#define SIGCONT 18
#undef SIGSTOP
#define SIGSTOP 19
#undef SIGTSTP
#define SIGTSTP 20
#undef SIGURG
#define SIGURG 23
#undef SIGPOLL
#define SIGPOLL 29
#undef SIGSYS
#define SIGSYS 31
#undef __SIGRTMAX
#define __SIGRTMAX 64
#define __sig_atomic_t_defined 1
#define __siginfo_t_defined 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define ____sigval_t_defined 
#define __SI_MAX_SIZE 128
#define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 4)
#define _BITS_SIGINFO_ARCH_H 1
#define __SI_ALIGNMENT 
#define __SI_BAND_TYPE long int
#define __SI_CLOCK_T __clock_t
#define __SI_ERRNO_THEN_CODE 1
#define __SI_HAVE_SIGSYS 1
#define __SI_SIGFAULT_ADDL 
#define si_pid _sifields._kill.si_pid
#define si_uid _sifields._kill.si_uid
#define si_timerid _sifields._timer.si_tid
#define si_overrun _sifields._timer.si_overrun
#define si_status _sifields._sigchld.si_status
#define si_utime _sifields._sigchld.si_utime
#define si_stime _sifields._sigchld.si_stime
#define si_value _sifields._rt.si_sigval
#define si_int _sifields._rt.si_sigval.sival_int
#define si_ptr _sifields._rt.si_sigval.sival_ptr
#define si_addr _sifields._sigfault.si_addr
#define si_addr_lsb _sifields._sigfault.si_addr_lsb
#define si_lower _sifields._sigfault._bounds._addr_bnd._lower
#define si_upper _sifields._sigfault._bounds._addr_bnd._upper
#define si_pkey _sifields._sigfault._bounds._pkey
#define si_band _sifields._sigpoll.si_band
#define si_fd _sifields._sigpoll.si_fd
#define si_call_addr _sifields._sigsys._call_addr
#define si_syscall _sifields._sigsys._syscall
#define si_arch _sifields._sigsys._arch
#define _BITS_SIGINFO_CONSTS_H 1
#define __SI_ASYNCIO_AFTER_SIGIO 1
#define SI_ASYNCNL SI_ASYNCNL
#define SI_TKILL SI_TKILL
#define SI_SIGIO SI_SIGIO
#define SI_ASYNCIO SI_ASYNCIO
#define SI_MESGQ SI_MESGQ
#define SI_TIMER SI_TIMER
#define SI_ASYNCIO SI_ASYNCIO
#define SI_QUEUE SI_QUEUE
#define SI_USER SI_USER
#define SI_KERNEL SI_KERNEL
#define ILL_ILLOPC ILL_ILLOPC
#define ILL_ILLOPN ILL_ILLOPN
#define ILL_ILLADR ILL_ILLADR
#define ILL_ILLTRP ILL_ILLTRP
#define ILL_PRVOPC ILL_PRVOPC
#define ILL_PRVREG ILL_PRVREG
#define ILL_COPROC ILL_COPROC
#define ILL_BADSTK ILL_BADSTK
#define FPE_INTDIV FPE_INTDIV
#define FPE_INTOVF FPE_INTOVF
#define FPE_FLTDIV FPE_FLTDIV
#define FPE_FLTOVF FPE_FLTOVF
#define FPE_FLTUND FPE_FLTUND
#define FPE_FLTRES FPE_FLTRES
#define FPE_FLTINV FPE_FLTINV
#define FPE_FLTSUB FPE_FLTSUB
#define SEGV_MAPERR SEGV_MAPERR
#define SEGV_ACCERR SEGV_ACCERR
#define SEGV_BNDERR SEGV_BNDERR
#define SEGV_PKUERR SEGV_PKUERR
#define BUS_ADRALN BUS_ADRALN
#define BUS_ADRERR BUS_ADRERR
#define BUS_OBJERR BUS_OBJERR
#define BUS_MCEERR_AR BUS_MCEERR_AR
#define BUS_MCEERR_AO BUS_MCEERR_AO
#define TRAP_BRKPT TRAP_BRKPT
#define TRAP_TRACE TRAP_TRACE
#define CLD_EXITED CLD_EXITED
#define CLD_KILLED CLD_KILLED
#define CLD_DUMPED CLD_DUMPED
#define CLD_TRAPPED CLD_TRAPPED
#define CLD_STOPPED CLD_STOPPED
#define CLD_CONTINUED CLD_CONTINUED
#define POLL_IN POLL_IN
#define POLL_OUT POLL_OUT
#define POLL_MSG POLL_MSG
#define POLL_ERR POLL_ERR
#define POLL_PRI POLL_PRI
#define POLL_HUP POLL_HUP
#define _BITS_SIGINFO_CONSTS_ARCH_H 1
#define __sigval_t_defined 
#define __sigevent_t_defined 1
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __SYSCALL_WORDSIZE 64
#define __SIGEV_MAX_SIZE 64
#define __SIGEV_PAD_SIZE ((__SIGEV_MAX_SIZE / sizeof (int)) - 4)
#define sigev_notify_function _sigev_un._sigev_thread._function
#define sigev_notify_attributes _sigev_un._sigev_thread._attribute
#define _BITS_SIGEVENT_CONSTS_H 1
#define SIGEV_SIGNAL SIGEV_SIGNAL
#define SIGEV_NONE SIGEV_NONE
#define SIGEV_THREAD SIGEV_THREAD
#define SIGEV_THREAD_ID SIGEV_THREAD_ID
#define sigmask(sig) ((int)(1u << ((sig) - 1)))
#define NSIG _NSIG
#define _BITS_SIGACTION_H 1
#define sa_handler __sigaction_handler.sa_handler
#define sa_sigaction __sigaction_handler.sa_sigaction
#define SA_NOCLDSTOP 1
#define SA_NOCLDWAIT 2
#define SA_SIGINFO 4
#define SA_ONSTACK 0x08000000
#define SA_RESTART 0x10000000
#define SA_NODEFER 0x40000000
#define SA_RESETHAND 0x80000000
#define SA_INTERRUPT 0x20000000
#define SA_NOMASK SA_NODEFER
#define SA_ONESHOT SA_RESETHAND
#define SA_STACK SA_ONSTACK
#define SIG_BLOCK 0
#define SIG_UNBLOCK 1
#define SIG_SETMASK 2
#define _BITS_SIGCONTEXT_H 1
#define FP_XSTATE_MAGIC1 0x46505853U
#define FP_XSTATE_MAGIC2 0x46505845U
#define FP_XSTATE_MAGIC2_SIZE sizeof(FP_XSTATE_MAGIC2)
#define __need_size_t 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define __stack_t_defined 1
#define __need_size_t 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define _SYS_UCONTEXT_H 1
#define __ctx(fld) fld
#define __NGREG 23
#define NGREG __NGREG
#define REG_R8 REG_R8
#define REG_R9 REG_R9
#define REG_R10 REG_R10
#define REG_R11 REG_R11
#define REG_R12 REG_R12
#define REG_R13 REG_R13
#define REG_R14 REG_R14
#define REG_R15 REG_R15
#define REG_RDI REG_RDI
#define REG_RSI REG_RSI
#define REG_RBP REG_RBP
#define REG_RBX REG_RBX
#define REG_RDX REG_RDX
#define REG_RAX REG_RAX
#define REG_RCX REG_RCX
#define REG_RSP REG_RSP
#define REG_RIP REG_RIP
#define REG_EFL REG_EFL
#define REG_CSGSFS REG_CSGSFS
#define REG_ERR REG_ERR
#define REG_TRAPNO REG_TRAPNO
#define REG_OLDMASK REG_OLDMASK
#define REG_CR2 REG_CR2
#undef __ctx
#define _BITS_SIGSTACK_H 1
#define MINSIGSTKSZ 2048
#define SIGSTKSZ 8192
#define _BITS_SS_FLAGS_H 1
#define SS_ONSTACK SS_ONSTACK
#define SS_DISABLE SS_DISABLE
#define __sigstack_defined 1
#define _BITS_SIGTHREAD_H 1
#define SIGRTMIN (__libc_current_sigrtmin ())
#define SIGRTMAX (__libc_current_sigrtmax ())
#define RUBY_NSIG NSIG
#define RUBY_SIGCHLD (SIGCLD)
#define SIGCHLD_LOSSY (0)
#define WAITPID_USE_SIGCHLD (RUBY_SIGCHLD || SIGCHLD_LOSSY)
#define va_init_list(a,b) va_start((a),(b))
#define USE_SIGALTSTACK 
#define RB_ALTSTACK_INIT(var) var = rb_register_sigaltstack()
#define RB_ALTSTACK_FREE(var) xfree(var)
#define RB_ALTSTACK(var) var
#define TAG_NONE RUBY_TAG_NONE
#define TAG_RETURN RUBY_TAG_RETURN
#define TAG_BREAK RUBY_TAG_BREAK
#define TAG_NEXT RUBY_TAG_NEXT
#define TAG_RETRY RUBY_TAG_RETRY
#define TAG_REDO RUBY_TAG_REDO
#define TAG_RAISE RUBY_TAG_RAISE
#define TAG_THROW RUBY_TAG_THROW
#define TAG_FATAL RUBY_TAG_FATAL
#define TAG_MASK RUBY_TAG_MASK
#define CoreDataFromValue(obj,type) (type*)DATA_PTR(obj)
#define GetCoreDataFromValue(obj,type,ptr) ((ptr) = CoreDataFromValue((obj), type))
#define PATHOBJ_PATH 0
#define PATHOBJ_REALPATH 1
#define USE_LAZY_LOAD 0
#define GetVMPtr(obj,ptr) GetCoreDataFromValue((obj), rb_vm_t, (ptr))
#define RUBY_VM_SIZE_ALIGN 4096
#define RUBY_VM_THREAD_VM_STACK_SIZE ( 128 * 1024 * sizeof(VALUE))
#define RUBY_VM_THREAD_VM_STACK_SIZE_MIN ( 2 * 1024 * sizeof(VALUE))
#define RUBY_VM_THREAD_MACHINE_STACK_SIZE ( 128 * 1024 * sizeof(VALUE))
#define RUBY_VM_THREAD_MACHINE_STACK_SIZE_MIN ( 16 * 1024 * sizeof(VALUE))
#define RUBY_VM_FIBER_VM_STACK_SIZE ( 16 * 1024 * sizeof(VALUE))
#define RUBY_VM_FIBER_VM_STACK_SIZE_MIN ( 2 * 1024 * sizeof(VALUE))
#define RUBY_VM_FIBER_MACHINE_STACK_SIZE ( 64 * 1024 * sizeof(VALUE))
#define RUBY_VM_FIBER_MACHINE_STACK_SIZE_MIN ( 16 * 1024 * sizeof(VALUE))
#define INTEGER_REDEFINED_OP_FLAG (1 << 0)
#define FLOAT_REDEFINED_OP_FLAG (1 << 1)
#define STRING_REDEFINED_OP_FLAG (1 << 2)
#define ARRAY_REDEFINED_OP_FLAG (1 << 3)
#define HASH_REDEFINED_OP_FLAG (1 << 4)
#define SYMBOL_REDEFINED_OP_FLAG (1 << 6)
#define TIME_REDEFINED_OP_FLAG (1 << 7)
#define REGEXP_REDEFINED_OP_FLAG (1 << 8)
#define NIL_REDEFINED_OP_FLAG (1 << 9)
#define TRUE_REDEFINED_OP_FLAG (1 << 10)
#define FALSE_REDEFINED_OP_FLAG (1 << 11)
#define PROC_REDEFINED_OP_FLAG (1 << 12)
#define BASIC_OP_UNREDEFINED_P(op,klass) (LIKELY((GET_VM()->redefined_flag[(op)]&(klass)) == 0))
#define VM_DEBUG_BP_CHECK 0
#define VM_DEBUG_VERIFY_METHOD_CACHE (VMDEBUG != 0)
#define VM_CORE_H_EC_DEFINED 1
#define VM_DEFINECLASS_TYPE(x) ((rb_vm_defineclass_type_t)(x) & VM_DEFINECLASS_TYPE_MASK)
#define VM_DEFINECLASS_FLAG_SCOPED 0x08
#define VM_DEFINECLASS_FLAG_HAS_SUPERCLASS 0x10
#define VM_DEFINECLASS_SCOPED_P(x) ((x) & VM_DEFINECLASS_FLAG_SCOPED)
#define VM_DEFINECLASS_HAS_SUPERCLASS_P(x) ((x) & VM_DEFINECLASS_FLAG_HAS_SUPERCLASS)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define GetProcPtr(obj,ptr) GetCoreDataFromValue((obj), rb_proc_t, (ptr))
#define GetBindingPtr(obj,ptr) GetCoreDataFromValue((obj), rb_binding_t, (ptr))
#define VM_CHECKMATCH_TYPE_MASK 0x03
#define VM_CHECKMATCH_ARRAY 0x04
#define VM_CALL_ARGS_SPLAT (0x01 << VM_CALL_ARGS_SPLAT_bit)
#define VM_CALL_ARGS_BLOCKARG (0x01 << VM_CALL_ARGS_BLOCKARG_bit)
#define VM_CALL_FCALL (0x01 << VM_CALL_FCALL_bit)
#define VM_CALL_VCALL (0x01 << VM_CALL_VCALL_bit)
#define VM_CALL_ARGS_SIMPLE (0x01 << VM_CALL_ARGS_SIMPLE_bit)
#define VM_CALL_BLOCKISEQ (0x01 << VM_CALL_BLOCKISEQ_bit)
#define VM_CALL_KWARG (0x01 << VM_CALL_KWARG_bit)
#define VM_CALL_KW_SPLAT (0x01 << VM_CALL_KW_SPLAT_bit)
#define VM_CALL_TAILCALL (0x01 << VM_CALL_TAILCALL_bit)
#define VM_CALL_SUPER (0x01 << VM_CALL_SUPER_bit)
#define VM_CALL_ZSUPER (0x01 << VM_CALL_ZSUPER_bit)
#define VM_CALL_OPT_SEND (0x01 << VM_CALL_OPT_SEND_bit)
#define FUNC_FASTCALL(x) x
#define VM_TAGGED_PTR_SET(p,tag) ((VALUE)(p) | (tag))
#define VM_TAGGED_PTR_REF(v,mask) ((void *)((v) & ~mask))
#define GC_GUARDED_PTR(p) VM_TAGGED_PTR_SET((p), 0x01)
#define GC_GUARDED_PTR_REF(p) VM_TAGGED_PTR_REF((p), 0x03)
#define GC_GUARDED_PTR_P(p) (((VALUE)(p)) & 0x01)
#define VM_ENV_DATA_SIZE ( 3)
#define VM_ENV_DATA_INDEX_ME_CREF (-2)
#define VM_ENV_DATA_INDEX_SPECVAL (-1)
#define VM_ENV_DATA_INDEX_FLAGS ( 0)
#define VM_ENV_DATA_INDEX_ENV ( 1)
#define VM_ENV_INDEX_LAST_LVAR (-VM_ENV_DATA_SIZE)
#define RUBYVM_CFUNC_FRAME_P(cfp) (VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_CFUNC)
#define VM_GUARDED_PREV_EP(ep) GC_GUARDED_PTR(ep)
#define VM_BLOCK_HANDLER_NONE 0
#define RUBY_VM_PREVIOUS_CONTROL_FRAME(cfp) ((cfp)+1)
#define RUBY_VM_NEXT_CONTROL_FRAME(cfp) ((cfp)-1)
#define RUBY_VM_VALID_CONTROL_FRAME_P(cfp,ecfp) ((void *)(ecfp) > (void *)(cfp))
#define SDR() rb_vmdebug_stack_dump_raw(GET_EC(), GET_EC()->cfp)
#define SDR2(cfp) rb_vmdebug_stack_dump_raw(GET_EC(), (cfp))
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define rb_vm_register_special_exception(sp,e,m) rb_vm_register_special_exception_str(sp, e, rb_usascii_str_new_static((m), (long)rb_strlen_lit(m)))
#define sysstack_error GET_VM()->special_exceptions[ruby_error_sysstack]
#define RUBY_CONST_ASSERT(expr) (1/!!(expr))
#define VM_STACK_OVERFLOWED_P(cfp,sp,margin) (!RUBY_CONST_ASSERT(sizeof(*(sp)) == sizeof(VALUE)) || !RUBY_CONST_ASSERT(sizeof(*(cfp)) == sizeof(rb_control_frame_t)) || ((rb_control_frame_t *)((sp) + (margin)) + 1) >= (cfp))
#define WHEN_VM_STACK_OVERFLOWED(cfp,sp,margin) if (LIKELY(!VM_STACK_OVERFLOWED_P(cfp, sp, margin))) {(void)0;} else
#define CHECK_VM_STACK_OVERFLOW0(cfp,sp,margin) WHEN_VM_STACK_OVERFLOWED(cfp, sp, margin) vm_stackoverflow()
#define CHECK_VM_STACK_OVERFLOW(cfp,margin) WHEN_VM_STACK_OVERFLOWED(cfp, (cfp)->sp, margin) vm_stackoverflow()
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define GET_VM() rb_current_vm()
#define GET_THREAD() rb_current_thread()
#define GET_EC() rb_current_execution_context()
#define RUBY_VM_SET_TIMER_INTERRUPT(ec) ATOMIC_OR((ec)->interrupt_flag, TIMER_INTERRUPT_MASK)
#define RUBY_VM_SET_INTERRUPT(ec) ATOMIC_OR((ec)->interrupt_flag, PENDING_INTERRUPT_MASK)
#define RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec) ATOMIC_OR((ec)->interrupt_flag, POSTPONED_JOB_INTERRUPT_MASK)
#define RUBY_VM_SET_TRAP_INTERRUPT(ec) ATOMIC_OR((ec)->interrupt_flag, TRAP_INTERRUPT_MASK)
#define RUBY_VM_INTERRUPTED(ec) ((ec)->interrupt_flag & ~(ec)->interrupt_mask & (PENDING_INTERRUPT_MASK|TRAP_INTERRUPT_MASK))
#define RUBY_VM_INTERRUPTED_ANY(ec) ((ec)->interrupt_flag & ~(ec)->interrupt_mask)
#define RUBY_VM_CHECK_INTS(ec) rb_vm_check_ints(ec)
#define EXEC_EVENT_HOOK_ORIG(ec_,hooks_,flag_,self_,id_,called_id_,klass_,data_,pop_p_) do { const rb_event_flag_t flag_arg_ = (flag_); rb_hook_list_t *hooks_arg_ = (hooks_); if (UNLIKELY((hooks_arg_)->events & (flag_arg_))) { rb_exec_event_hook_orig(ec_, hooks_arg_, flag_arg_, self_, id_, called_id_, klass_, data_, pop_p_); } } while (0)
#define EXEC_EVENT_HOOK(ec_,flag_,self_,id_,called_id_,klass_,data_) EXEC_EVENT_HOOK_ORIG(ec_, rb_vm_global_hooks(ec_), flag_, self_, id_, called_id_, klass_, data_, 0)
#define EXEC_EVENT_HOOK_AND_POP_FRAME(ec_,flag_,self_,id_,called_id_,klass_,data_) EXEC_EVENT_HOOK_ORIG(ec_, rb_vm_global_hooks(ec_), flag_, self_, id_, called_id_, klass_, data_, 1)
#pragma GCC visibility push(default)
#define RUBY_EVENT_COVERAGE_LINE 0x010000
#define RUBY_EVENT_COVERAGE_BRANCH 0x020000
#pragma GCC visibility pop
#define RUBY_DEBUG_H 
#pragma GCC visibility push(default)
#define dpv(h,v) ruby_debug_print_value(-1, 0, (h), (v))
#define dp(v) ruby_debug_print_value(-1, 0, "", (v))
#define dpi(i) ruby_debug_print_id(-1, 0, "", (i))
#define dpn(n) ruby_debug_print_node(-1, 0, "", (n))
#pragma GCC visibility pop
#define RUBY_ISEQ_H 1
#define ISEQ_MAJOR_VERSION ((unsigned int)ruby_api_version[0])
#define ISEQ_MINOR_VERSION ((unsigned int)ruby_api_version[1])
#define ISEQ_COVERAGE(iseq) iseq->body->variable.coverage
#define ISEQ_COVERAGE_SET(iseq,cov) RB_OBJ_WRITE(iseq, &iseq->body->variable.coverage, cov)
#define ISEQ_LINE_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_LINES)
#define ISEQ_BRANCH_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_BRANCHES)
#define ISEQ_PC2BRANCHINDEX(iseq) iseq->body->variable.pc2branchindex
#define ISEQ_PC2BRANCHINDEX_SET(iseq,h) RB_OBJ_WRITE(iseq, &iseq->body->variable.pc2branchindex, h)
#define ISEQ_FLIP_CNT(iseq) (iseq)->body->variable.flip_count
#define ISEQ_TRACE_EVENTS (RUBY_EVENT_LINE | RUBY_EVENT_CLASS | RUBY_EVENT_END | RUBY_EVENT_CALL | RUBY_EVENT_RETURN| RUBY_EVENT_B_CALL| RUBY_EVENT_B_RETURN| RUBY_EVENT_COVERAGE_LINE| RUBY_EVENT_COVERAGE_BRANCH)
#define ISEQ_NOT_LOADED_YET IMEMO_FL_USER1
#define ISEQ_USE_COMPILE_DATA IMEMO_FL_USER2
#define ISEQ_TRANSLATED IMEMO_FL_USER3
#define ISEQ_MARKABLE_ISEQ IMEMO_FL_USER4
#define ISEQ_EXECUTABLE_P(iseq) (FL_TEST_RAW((iseq), ISEQ_NOT_LOADED_YET | ISEQ_USE_COMPILE_DATA) == 0)
#pragma GCC visibility push(default)
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
#pragma GCC visibility pop
#define RUBY_EVAL_INTERN_H 
#define PASS_PASSED_BLOCK_HANDLER_EC(ec) pass_passed_block_handler(ec)
#define PASS_PASSED_BLOCK_HANDLER() pass_passed_block_handler(GET_EC())
#define ruby_setjmp(env) RUBY_SETJMP(env)
#define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
#define _ERRNO_H 1
#define _BITS_ERRNO_H 1
#define _ASM_GENERIC_ERRNO_H 
#define _ASM_GENERIC_ERRNO_BASE_H 
#define EPERM 1
#define ENOENT 2
#define ESRCH 3
#define EINTR 4
#define EIO 5
#define ENXIO 6
#define E2BIG 7
#define ENOEXEC 8
#define EBADF 9
#define ECHILD 10
#define EAGAIN 11
#define ENOMEM 12
#define EACCES 13
#define EFAULT 14
#define ENOTBLK 15
#define EBUSY 16
#define EEXIST 17
#define EXDEV 18
#define ENODEV 19
#define ENOTDIR 20
#define EISDIR 21
#define EINVAL 22
#define ENFILE 23
#define EMFILE 24
#define ENOTTY 25
#define ETXTBSY 26
#define EFBIG 27
#define ENOSPC 28
#define ESPIPE 29
#define EROFS 30
#define EMLINK 31
#define EPIPE 32
#define EDOM 33
#define ERANGE 34
#define EDEADLK 35
#define ENAMETOOLONG 36
#define ENOLCK 37
#define ENOSYS 38
#define ENOTEMPTY 39
#define ELOOP 40
#define EWOULDBLOCK EAGAIN
#define ENOMSG 42
#define EIDRM 43
#define ECHRNG 44
#define EL2NSYNC 45
#define EL3HLT 46
#define EL3RST 47
#define ELNRNG 48
#define EUNATCH 49
#define ENOCSI 50
#define EL2HLT 51
#define EBADE 52
#define EBADR 53
#define EXFULL 54
#define ENOANO 55
#define EBADRQC 56
#define EBADSLT 57
#define EDEADLOCK EDEADLK
#define EBFONT 59
#define ENOSTR 60
#define ENODATA 61
#define ETIME 62
#define ENOSR 63
#define ENONET 64
#define ENOPKG 65
#define EREMOTE 66
#define ENOLINK 67
#define EADV 68
#define ESRMNT 69
#define ECOMM 70
#define EPROTO 71
#define EMULTIHOP 72
#define EDOTDOT 73
#define EBADMSG 74
#define EOVERFLOW 75
#define ENOTUNIQ 76
#define EBADFD 77
#define EREMCHG 78
#define ELIBACC 79
#define ELIBBAD 80
#define ELIBSCN 81
#define ELIBMAX 82
#define ELIBEXEC 83
#define EILSEQ 84
#define ERESTART 85
#define ESTRPIPE 86
#define EUSERS 87
#define ENOTSOCK 88
#define EDESTADDRREQ 89
#define EMSGSIZE 90
#define EPROTOTYPE 91
#define ENOPROTOOPT 92
#define EPROTONOSUPPORT 93
#define ESOCKTNOSUPPORT 94
#define EOPNOTSUPP 95
#define EPFNOSUPPORT 96
#define EAFNOSUPPORT 97
#define EADDRINUSE 98
#define EADDRNOTAVAIL 99
#define ENETDOWN 100
#define ENETUNREACH 101
#define ENETRESET 102
#define ECONNABORTED 103
#define ECONNRESET 104
#define ENOBUFS 105
#define EISCONN 106
#define ENOTCONN 107
#define ESHUTDOWN 108
#define ETOOMANYREFS 109
#define ETIMEDOUT 110
#define ECONNREFUSED 111
#define EHOSTDOWN 112
#define EHOSTUNREACH 113
#define EALREADY 114
#define EINPROGRESS 115
#define ESTALE 116
#define EUCLEAN 117
#define ENOTNAM 118
#define ENAVAIL 119
#define EISNAM 120
#define EREMOTEIO 121
#define EDQUOT 122
#define ENOMEDIUM 123
#define EMEDIUMTYPE 124
#define ECANCELED 125
#define ENOKEY 126
#define EKEYEXPIRED 127
#define EKEYREVOKED 128
#define EKEYREJECTED 129
#define EOWNERDEAD 130
#define ENOTRECOVERABLE 131
#define ERFKILL 132
#define EHWPOISON 133
#define ENOTSUP EOPNOTSUPP
#define errno (*__errno_location ())
#define __error_t_defined 1
#define _SYS_PARAM_H 1
#define __need_NULL 
#undef __need_ptrdiff_t
#undef __need_size_t
#undef __need_wchar_t
#undef NULL
#define NULL ((void *)0)
#undef __need_NULL
#define offsetof(TYPE,MEMBER) __builtin_offsetof (TYPE, MEMBER)
#define __undef_ARG_MAX 
#define _LINUX_PARAM_H 
#define __ASM_GENERIC_PARAM_H 
#define HZ 100
#define EXEC_PAGESIZE 4096
#define NOGROUP (-1)
#define MAXHOSTNAMELEN 64
#undef ARG_MAX
#undef __undef_ARG_MAX
#define MAXSYMLINKS 20
#define NOFILE 256
#define NCARGS 131072
#define NBBY CHAR_BIT
#define NGROUPS NGROUPS_MAX
#define CANBSIZ MAX_CANON
#define MAXPATHLEN PATH_MAX
#define NODEV ((dev_t) -1)
#define DEV_BSIZE 512
#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
#define howmany(x,y) (((x) + ((y) - 1)) / (y))
#define roundup(x,y) (__builtin_constant_p (y) && powerof2 (y) ? (((x) + (y) - 1) & ~((y) - 1)) : ((((x) + ((y) - 1)) / (y)) * (y)))
#define powerof2(x) ((((x) - 1) & (x)) == 0)
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#define SAVE_ROOT_JMPBUF_BEFORE_STMT 
#define SAVE_ROOT_JMPBUF_AFTER_STMT 
#define SAVE_ROOT_JMPBUF(th,stmt) do if (ruby_setjmp((th)->root_jmpbuf) == 0) { SAVE_ROOT_JMPBUF_BEFORE_STMT stmt; SAVE_ROOT_JMPBUF_AFTER_STMT } else { rb_fiber_start(); } while (0)
#define EC_PUSH_TAG(ec) do { rb_execution_context_t * const _ec = (ec); struct rb_vm_tag _tag; _tag.state = TAG_NONE; _tag.tag = Qundef; _tag.prev = _ec->tag;
#define EC_POP_TAG() _ec->tag = _tag.prev; } while (0)
#define EC_TMPPOP_TAG() _ec->tag = _tag.prev
#define EC_REPUSH_TAG() (void)(_ec->tag = &_tag)
#define VAR_FROM_MEMORY(var) (var)
#define VAR_INITIALIZED(var) ((void)&(var))
#define VAR_NOCLOBBERED(var) var
#define EC_EXEC_TAG() (ruby_setjmp(_tag.buf) ? rb_ec_tag_state(VAR_FROM_MEMORY(_ec)) : (EC_REPUSH_TAG(), 0))
#define EC_JUMP_TAG(ec,st) rb_ec_tag_jump(ec, st)
#define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
#define CREF_FL_PUSHED_BY_EVAL IMEMO_FL_USER1
#define CREF_FL_OMOD_SHARED IMEMO_FL_USER2
#define rb_ec_raised_set(ec,f) ((ec)->raised_flag |= (f))
#define rb_ec_raised_reset(ec,f) ((ec)->raised_flag &= ~(f))
#define rb_ec_raised_p(ec,f) (((ec)->raised_flag & (f)) != 0)
#define rb_ec_raised_clear(ec) ((ec)->raised_flag = 0)
#define CharNext(p) rb_char_next(p)
#define BUILTIN_H_INCLUDED 
#define RB_BUILTIN_FUNCTION(_i,_name,_fname,_arity) { .name = #_name, .func_ptr = (void *)_fname, .argc = _arity, .index = _i }
#define _PROBES_H 
#define DTRACE_PROBES_DISABLED 1
#define RUBY_DTRACE_METHOD_ENTRY_ENABLED() 0
#define RUBY_DTRACE_METHOD_ENTRY(classname,methodname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_METHOD_RETURN_ENABLED() 0
#define RUBY_DTRACE_METHOD_RETURN(classname,methodname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_CMETHOD_ENTRY_ENABLED() 0
#define RUBY_DTRACE_CMETHOD_ENTRY(classname,methodname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_CMETHOD_RETURN_ENABLED() 0
#define RUBY_DTRACE_CMETHOD_RETURN(classname,methodname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_REQUIRE_ENTRY_ENABLED() 0
#define RUBY_DTRACE_REQUIRE_ENTRY(rquiredfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_REQUIRE_RETURN_ENABLED() 0
#define RUBY_DTRACE_REQUIRE_RETURN(requiredfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_FIND_REQUIRE_ENTRY_ENABLED() 0
#define RUBY_DTRACE_FIND_REQUIRE_ENTRY(requiredfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_FIND_REQUIRE_RETURN_ENABLED() 0
#define RUBY_DTRACE_FIND_REQUIRE_RETURN(requiredfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_LOAD_ENTRY_ENABLED() 0
#define RUBY_DTRACE_LOAD_ENTRY(loadedfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_LOAD_RETURN_ENABLED() 0
#define RUBY_DTRACE_LOAD_RETURN(loadedfile,filename,lineno) do {} while (0)
#define RUBY_DTRACE_RAISE_ENABLED() 0
#define RUBY_DTRACE_RAISE(classname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_OBJECT_CREATE_ENABLED() 0
#define RUBY_DTRACE_OBJECT_CREATE(classname,filename,lineno) do {} while (0)
#define RUBY_DTRACE_ARRAY_CREATE_ENABLED() 0
#define RUBY_DTRACE_ARRAY_CREATE(length,filename,lineno) do {} while (0)
#define RUBY_DTRACE_HASH_CREATE_ENABLED() 0
#define RUBY_DTRACE_HASH_CREATE(length,filename,lineno) do {} while (0)
#define RUBY_DTRACE_STRING_CREATE_ENABLED() 0
#define RUBY_DTRACE_STRING_CREATE(length,filename,lineno) do {} while (0)
#define RUBY_DTRACE_SYMBOL_CREATE_ENABLED() 0
#define RUBY_DTRACE_SYMBOL_CREATE(str,filename,lineno) do {} while (0)
#define RUBY_DTRACE_PARSE_BEGIN_ENABLED() 0
#define RUBY_DTRACE_PARSE_BEGIN(sourcefile,lineno) do {} while (0)
#define RUBY_DTRACE_PARSE_END_ENABLED() 0
#define RUBY_DTRACE_PARSE_END(sourcefile,lineno) do {} while (0)
#define RUBY_DTRACE_INSN_ENABLED() 0
#define RUBY_DTRACE_INSN(insns_name) do {} while (0)
#define RUBY_DTRACE_INSN_OPERAND_ENABLED() 0
#define RUBY_DTRACE_INSN_OPERAND(val,insns_name) do {} while (0)
#define RUBY_DTRACE_GC_MARK_BEGIN_ENABLED() 0
#define RUBY_DTRACE_GC_MARK_BEGIN() do {} while (0)
#define RUBY_DTRACE_GC_MARK_END_ENABLED() 0
#define RUBY_DTRACE_GC_MARK_END() do {} while (0)
#define RUBY_DTRACE_GC_SWEEP_BEGIN_ENABLED() 0
#define RUBY_DTRACE_GC_SWEEP_BEGIN() do {} while (0)
#define RUBY_DTRACE_GC_SWEEP_END_ENABLED() 0
#define RUBY_DTRACE_GC_SWEEP_END() do {} while (0)
#define RUBY_DTRACE_METHOD_CACHE_CLEAR_ENABLED() 0
#define RUBY_DTRACE_METHOD_CACHE_CLEAR(class,filename,lineno) do {} while (0)
#define RUBY_PROBES_HELPER_H 
#define RUBY_DTRACE_METHOD_HOOK(name,ec,klazz,id) do { if (UNLIKELY(RUBY_DTRACE_ ##name ##_ENABLED())) { struct ruby_dtrace_method_hook_args args; if (rb_dtrace_setup(ec, klazz, id, &args)) { RUBY_DTRACE_ ##name(args.classname, args.methodname, args.filename, args.line_no); } } } while (0)
#define RUBY_DTRACE_METHOD_ENTRY_HOOK(ec,klass,id) RUBY_DTRACE_METHOD_HOOK(METHOD_ENTRY, ec, klass, id)
#define RUBY_DTRACE_METHOD_RETURN_HOOK(ec,klass,id) RUBY_DTRACE_METHOD_HOOK(METHOD_RETURN, ec, klass, id)
#define RUBY_DTRACE_CMETHOD_ENTRY_HOOK(ec,klass,id) RUBY_DTRACE_METHOD_HOOK(CMETHOD_ENTRY, ec, klass, id)
#define RUBY_DTRACE_CMETHOD_RETURN_HOOK(ec,klass,id) RUBY_DTRACE_METHOD_HOOK(CMETHOD_RETURN, ec, klass, id)
#define RUBY_MJIT_H 1
#define USE_DEBUG_COUNTER 0
#define RUBY_DEBUG_COUNTER_H 1
#define RB_DEBUG_COUNTER(name) RB_DEBUG_COUNTER_ ##name,
#undef RB_DEBUG_COUNTER
#define RB_DEBUG_COUNTER_INC(type) ((void)0)
#define RB_DEBUG_COUNTER_INC_UNLESS(type,cond) (cond)
#define RB_DEBUG_COUNTER_INC_IF(type,cond) (cond)
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define JIT_ISEQ_SIZE_THRESHOLD 1000
#define RUBY_INSNHELPER_H 
#pragma GCC visibility push(default)
#pragma GCC visibility pop
#define COLLECT_USAGE_INSN(insn) 
#define COLLECT_USAGE_OPERAND(insn,n,op) 
#define COLLECT_USAGE_REGISTER(reg,s) 
#define PUSH(x) (SET_SV(x), INC_SP(1))
#define TOPN(n) (*(GET_SP()-(n)-1))
#define POPN(n) (DEC_SP(n))
#define POP() (DEC_SP(1))
#define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
#define VM_REG_CFP (reg_cfp)
#define VM_REG_PC (VM_REG_CFP->pc)
#define VM_REG_SP (VM_REG_CFP->sp)
#define VM_REG_EP (VM_REG_CFP->ep)
#define RESTORE_REGS() do { VM_REG_CFP = ec->cfp; } while (0)
#define COLLECT_USAGE_REGISTER_HELPER(a,b,v) (v)
#define GET_PC() (COLLECT_USAGE_REGISTER_HELPER(PC, GET, VM_REG_PC))
#define SET_PC(x) (VM_REG_PC = (COLLECT_USAGE_REGISTER_HELPER(PC, SET, (x))))
#define GET_CURRENT_INSN() (*GET_PC())
#define GET_OPERAND(n) (GET_PC()[(n)])
#define ADD_PC(n) (SET_PC(VM_REG_PC + (n)))
#define JUMP(dst) (SET_PC(VM_REG_PC + (dst)))
#define GET_CFP() (COLLECT_USAGE_REGISTER_HELPER(CFP, GET, VM_REG_CFP))
#define GET_EP() (COLLECT_USAGE_REGISTER_HELPER(EP, GET, VM_REG_EP))
#define SET_EP(x) (VM_REG_EP = (COLLECT_USAGE_REGISTER_HELPER(EP, SET, (x))))
#define GET_LEP() (VM_EP_LEP(GET_EP()))
#define GET_SP() (COLLECT_USAGE_REGISTER_HELPER(SP, GET, VM_REG_SP))
#define SET_SP(x) (VM_REG_SP = (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
#define INC_SP(x) (VM_REG_SP += (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
#define DEC_SP(x) (VM_REG_SP -= (COLLECT_USAGE_REGISTER_HELPER(SP, SET, (x))))
#define SET_SV(x) (*GET_SP() = (x))
#define GET_ISEQ() (GET_CFP()->iseq)
#define GET_PREV_EP(ep) ((VALUE *)((ep)[VM_ENV_DATA_INDEX_SPECVAL] & ~0x03))
#define GET_SELF() (COLLECT_USAGE_REGISTER_HELPER(SELF, GET, GET_CFP()->self))
#define GET_BLOCK_HANDLER() (GET_LEP()[VM_ENV_DATA_INDEX_SPECVAL])
#define SETUP_CANARY() 
#define CHECK_CANARY() 
#define PREV_CLASS_SERIAL() (ruby_vm_class_serial)
#define NEXT_CLASS_SERIAL() (++ruby_vm_class_serial)
#define GET_GLOBAL_METHOD_STATE() (ruby_vm_global_method_state)
#define INC_GLOBAL_METHOD_STATE() (++ruby_vm_global_method_state)
#define GET_GLOBAL_CONSTANT_STATE() (ruby_vm_global_constant_state)
#define INC_GLOBAL_CONSTANT_STATE() (++ruby_vm_global_constant_state)
#define IS_ARGS_SPLAT(ci) ((ci)->flag & VM_CALL_ARGS_SPLAT)
#define IS_ARGS_KEYWORD(ci) ((ci)->flag & VM_CALL_KWARG)
#define IS_ARGS_KW_SPLAT(ci) ((ci)->flag & VM_CALL_KW_SPLAT)
#define IS_ARGS_KW_OR_KW_SPLAT(ci) ((ci)->flag & (VM_CALL_KWARG | VM_CALL_KW_SPLAT))
#define RUBY_VM_EXEC_H 
#define debugs 
#define DEBUG_ENTER_INSN(insn) 
#define DEBUG_END_INSN() 
#define throwdebug if(0)printf
#define LABEL(x) INSN_LABEL_ ##x
#define ELABEL(x) INSN_ELABEL_ ##x
#define LABEL_PTR(x) RB_GNUC_EXTENSION(&&LABEL(x))
#define INSN_ENTRY_SIG(insn) if (0) fprintf(stderr, "exec: %s@(%"PRIdPTRDIFF", %"PRIdPTRDIFF")@%s:%u\n", #insn, (reg_pc - reg_cfp->iseq->body->iseq_encoded), (reg_cfp->pc - reg_cfp->iseq->body->iseq_encoded), RSTRING_PTR(rb_iseq_path(reg_cfp->iseq)), rb_iseq_line_no(reg_cfp->iseq, reg_pc - reg_cfp->iseq->body->iseq_encoded));
#define INSN_DISPATCH_SIG(insn) 
#define INSN_ENTRY(insn) LABEL(insn): INSN_ENTRY_SIG(insn);
#define TC_DISPATCH(insn) INSN_DISPATCH_SIG(insn); RB_GNUC_EXTENSION_BLOCK(goto *(void const *)GET_CURRENT_INSN()); ;
#define END_INSN(insn) DEBUG_END_INSN(); TC_DISPATCH(insn);
#define INSN_DISPATCH() TC_DISPATCH(__START__) {
#define END_INSNS_DISPATCH() rb_bug("unknown insn: %"PRIdVALUE, GET_CURRENT_INSN()); }
#define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
#define START_OF_ORIGINAL_INSN(x) start_of_ ##x:
#define DISPATCH_ORIGINAL_INSN(x) goto start_of_ ##x;
#define VM_SP_CNT(ec,sp) ((sp) - (ec)->vm_stack)
#define THROW_EXCEPTION(exc) do { ec->errinfo = (VALUE)(exc); EC_JUMP_TAG(ec, ec->tag->state); } while (0)
#define SCREG(r) (reg_ ##r)
#define VM_DEBUG_STACKOVERFLOW 0
#define CHECK_VM_STACK_OVERFLOW_FOR_INSN(cfp,margin) 
#define INSN_LABEL2(insn,name) INSN_LABEL_ ## insn ## _ ## name
#define INSN_LABEL(x) INSN_LABEL2(NAME_OF_CURRENT_INSN, x)
#define BIN(n) YARVINSN_ ##n
#define ASSERT_VM_INSTRUCTION_SIZE(array) STATIC_ASSERT(numberof_ ##array, numberof(array) == VM_INSTRUCTION_SIZE)
#define CONSTANT_H 
#define RB_CONST_PRIVATE_P(ce) (((ce)->flag & CONST_VISIBILITY_MASK) == CONST_PRIVATE)
#define RB_CONST_PUBLIC_P(ce) (((ce)->flag & CONST_VISIBILITY_MASK) == CONST_PUBLIC)
#define RB_CONST_DEPRECATED_P(ce) ((ce)->flag & CONST_DEPRECATED)
#define vm_check_canary(ec,sp) 
#define vm_check_frame(a,b,c,d) 
#define BUILTIN_CLASS_P(x,k) (!SPECIAL_CONST_P(x) && RBASIC_CLASS(x) == k)
#define EQ_UNREDEFINED_P(t) BASIC_OP_UNREDEFINED_P(BOP_EQ, t ##_REDEFINED_OP_FLAG)
#undef BUILTIN_CLASS_P
#undef EQ_UNREDEFINED_P
#define CHECK_CMP_NAN(a,b) 
#define KW_HASH_HAS_NO_KEYS 0
#define KW_HASH_HAS_SYMBOL_KEY 1
#define KW_HASH_HAS_OTHER_KEY 2
#define KW_HASH_HAS_BOTH_KEYS 3
#define KW_SPECIFIED_BITS_MAX (32-1)
#define USE_OPT_HIST 0
#define CHECK_CFP_CONSISTENCY(func) (LIKELY(vm_cfp_consistent_p(ec, reg_cfp)) ? (void)0 : rb_bug(func ": cfp consistency error (%p, %p)", (void *)reg_cfp, (void *)(ec->cfp+1)))
#define id_cmp idCmp
#undef id_cmp
#define VM_TRACE_HOOK(target_event,val) do { if ((pc_events & (target_event)) & enabled_flags) { vm_trace_hook(ec, reg_cfp, pc, pc_events, (target_event), global_hooks, local_hooks, (val)); } } while (0)
#define id_mesg idMesg
PKJH[�C_���include/ruby/re.hnu�[���/**********************************************************************

  re.h -

  $Author$
  created at: Thu Sep 30 14:18:32 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_RE_H
#define RUBY_RE_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include <sys/types.h>
#include <stdio.h>

#include "ruby/regex.h"

RUBY_SYMBOL_EXPORT_BEGIN

typedef struct re_pattern_buffer Regexp;

struct rmatch_offset {
    long beg;
    long end;
};

struct rmatch {
    struct re_registers regs;

    struct rmatch_offset *char_offset;
    int char_offset_num_allocated;
};

struct RMatch {
    struct RBasic basic;
    VALUE str;
    struct rmatch *rmatch;
    VALUE regexp;  /* RRegexp */
};

#define RMATCH(obj)  (R_CAST(RMatch)(obj))
#define RMATCH_REGS(obj)  (&(R_CAST(RMatch)(obj))->rmatch->regs)

VALUE rb_reg_regcomp(VALUE);
long rb_reg_search(VALUE, VALUE, long, int);
VALUE rb_reg_regsub(VALUE, VALUE, struct re_registers *, VALUE);
long rb_reg_adjust_startpos(VALUE, VALUE, long, int);
void rb_match_busy(VALUE);
VALUE rb_reg_quote(VALUE);
regex_t *rb_reg_prepare_re(VALUE re, VALUE str);
int rb_reg_region_copy(struct re_registers *, const struct re_registers *);

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_RE_H */
PKJH[��r�r�include/ruby/onigmo.hnu�[���#ifndef ONIGMO_H
#define ONIGMO_H
/**********************************************************************
  onigmo.h - Onigmo (Oniguruma-mod) (regular expression library)
**********************************************************************/
/*-
 * Copyright (c) 2002-2009  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>
 * Copyright (c) 2011-2017  K.Takata  <kentkt AT csc DOT jp>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#ifdef __cplusplus
extern "C" {
# if 0
} /* satisfy cc-mode */
# endif
#endif

#define ONIGMO_VERSION_MAJOR   6
#define ONIGMO_VERSION_MINOR   1
#define ONIGMO_VERSION_TEENY   3

#ifndef ONIG_EXTERN
# ifdef RUBY_EXTERN
#  define ONIG_EXTERN   RUBY_EXTERN
# else
#  if defined(_WIN32) && !defined(__GNUC__)
#   if defined(EXPORT) || defined(RUBY_EXPORT)
#    define ONIG_EXTERN   extern __declspec(dllexport)
#   else
#    define ONIG_EXTERN   extern __declspec(dllimport)
#   endif
#  endif
# endif
#endif

#ifndef ONIG_EXTERN
# define ONIG_EXTERN   extern
#endif

#ifndef RUBY
# ifndef RUBY_SYMBOL_EXPORT_BEGIN
#  define RUBY_SYMBOL_EXPORT_BEGIN
#  define RUBY_SYMBOL_EXPORT_END
# endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#include <stddef.h>		/* for size_t */

/* PART: character encoding */

#ifndef ONIG_ESCAPE_UCHAR_COLLISION
# define UChar OnigUChar
#endif

typedef unsigned char  OnigUChar;
typedef unsigned int   OnigCodePoint;
typedef unsigned int   OnigCtype;
typedef size_t         OnigDistance;
typedef ptrdiff_t      OnigPosition;

#define ONIG_INFINITE_DISTANCE  ~((OnigDistance )0)

/*
 * Onig casefold/case mapping flags and related definitions
 *
 * Subfields (starting with 0 at LSB):
 *   0-2: Code point count in casefold.h
 *   3-12: Index into SpecialCaseMapping array in casefold.h
 *   13-22: Case folding/mapping flags
 */
typedef unsigned int OnigCaseFoldType; /* case fold flag */

ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;

/* bits for actual code point count; 3 bits is more than enough, currently only 2 used */
#define OnigCodePointMaskWidth    3
#define OnigCodePointMask     ((1<<OnigCodePointMaskWidth)-1)
#define OnigCodePointCount(n) ((n)&OnigCodePointMask)
#define OnigCaseFoldFlags(n) ((n)&~OnigCodePointMask)

/* #define ONIGENC_CASE_FOLD_HIRAGANA_KATAKANA  (1<<1) */ /* no longer usable with these values! */
/* #define ONIGENC_CASE_FOLD_KATAKANA_WIDTH     (1<<2) */ /* no longer usable with these values! */

/* bits for index into table with separate titlecase mappings */
/* 10 bits provide 1024 values */
#define OnigSpecialIndexShift 3
#define OnigSpecialIndexWidth 10

#define ONIGENC_CASE_UPCASE                     (1<<13) /* has/needs uppercase mapping */
#define ONIGENC_CASE_DOWNCASE                   (1<<14) /* has/needs lowercase mapping */
#define ONIGENC_CASE_TITLECASE                  (1<<15) /* has/needs (special) titlecase mapping */
#define ONIGENC_CASE_SPECIAL_OFFSET             3       /* offset in bits from ONIGENC_CASE to ONIGENC_CASE_SPECIAL */
#define ONIGENC_CASE_UP_SPECIAL                 (1<<16) /* has special upcase mapping */
#define ONIGENC_CASE_DOWN_SPECIAL               (1<<17) /* has special downcase mapping */
#define ONIGENC_CASE_MODIFIED                   (1<<18) /* data has been modified */
#define ONIGENC_CASE_FOLD                       (1<<19) /* has/needs case folding */

#define ONIGENC_CASE_FOLD_TURKISH_AZERI         (1<<20) /* needs mapping specific to Turkic languages; better not change original value! */

#define ONIGENC_CASE_FOLD_LITHUANIAN            (1<<21) /* needs Lithuanian-specific mapping */
#define ONIGENC_CASE_ASCII_ONLY                 (1<<22) /* only modify ASCII range */
#define ONIGENC_CASE_IS_TITLECASE               (1<<23) /* character itself is already titlecase */

#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR   (1<<30) /* better not change original value! */

#define ONIGENC_CASE_FOLD_MIN      INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR
#define ONIGENC_CASE_FOLD_DEFAULT  OnigDefaultCaseFoldFlag


#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN       3
#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM      13
/* 13 => Unicode:0x1ffc */

/* code range */
#define ONIGENC_CODE_RANGE_NUM(range)     ((int )range[0])
#define ONIGENC_CODE_RANGE_FROM(range,i)  range[((i)*2) + 1]
#define ONIGENC_CODE_RANGE_TO(range,i)    range[((i)*2) + 2]

typedef struct {
  int byte_len;  /* argument(original) character(s) byte length */
  int code_len;  /* number of code */
  OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];
} OnigCaseFoldCodeItem;

typedef struct {
  OnigCodePoint esc;
  OnigCodePoint anychar;
  OnigCodePoint anytime;
  OnigCodePoint zero_or_one_time;
  OnigCodePoint one_or_more_time;
  OnigCodePoint anychar_anytime;
} OnigMetaCharTableType;

typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);

typedef struct OnigEncodingTypeST {
  int    (*precise_mbc_enc_len)(const OnigUChar* p,const OnigUChar* e, const struct OnigEncodingTypeST* enc);
  const char*   name;
  int           max_enc_len;
  int           min_enc_len;
  int    (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end, const struct OnigEncodingTypeST* enc);
  OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end, const struct OnigEncodingTypeST* enc);
  int    (*code_to_mbclen)(OnigCodePoint code, const struct OnigEncodingTypeST* enc);
  int    (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf, const struct OnigEncodingTypeST* enc);
  int    (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to, const struct OnigEncodingTypeST* enc);
  int    (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg, const struct OnigEncodingTypeST* enc);
  int    (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[], const struct OnigEncodingTypeST* enc);
  int    (*property_name_to_ctype)(const struct OnigEncodingTypeST* enc, const OnigUChar* p, const OnigUChar* end);
  int    (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype, const struct OnigEncodingTypeST* enc);
  int    (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[], const struct OnigEncodingTypeST* enc);
  OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p, const OnigUChar* end, const struct OnigEncodingTypeST* enc);
  int    (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end, const struct OnigEncodingTypeST* enc);
  int    (*case_map)(OnigCaseFoldType* flagP, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to, OnigUChar* to_end, const struct OnigEncodingTypeST* enc);
  int ruby_encoding_index;
  unsigned int  flags;
} OnigEncodingType;

typedef const OnigEncodingType* OnigEncoding;

ONIG_EXTERN const OnigEncodingType OnigEncodingASCII;
#ifndef RUBY
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_1;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_2;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_3;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_4;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_5;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_6;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_7;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_8;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_9;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_10;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_11;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_13;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_14;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_15;
ONIG_EXTERN const OnigEncodingType OnigEncodingISO_8859_16;
ONIG_EXTERN const OnigEncodingType OnigEncodingUTF_8;
ONIG_EXTERN const OnigEncodingType OnigEncodingUTF_16BE;
ONIG_EXTERN const OnigEncodingType OnigEncodingUTF_16LE;
ONIG_EXTERN const OnigEncodingType OnigEncodingUTF_32BE;
ONIG_EXTERN const OnigEncodingType OnigEncodingUTF_32LE;
ONIG_EXTERN const OnigEncodingType OnigEncodingEUC_JP;
ONIG_EXTERN const OnigEncodingType OnigEncodingEUC_TW;
ONIG_EXTERN const OnigEncodingType OnigEncodingEUC_KR;
ONIG_EXTERN const OnigEncodingType OnigEncodingEUC_CN;
ONIG_EXTERN const OnigEncodingType OnigEncodingShift_JIS;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_31J;
/* ONIG_EXTERN const OnigEncodingType OnigEncodingKOI8; */
ONIG_EXTERN const OnigEncodingType OnigEncodingKOI8_R;
ONIG_EXTERN const OnigEncodingType OnigEncodingKOI8_U;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1250;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1251;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1252;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1253;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1254;
ONIG_EXTERN const OnigEncodingType OnigEncodingWindows_1257;
ONIG_EXTERN const OnigEncodingType OnigEncodingBIG5;
ONIG_EXTERN const OnigEncodingType OnigEncodingGB18030;
#endif /* RUBY */

#define ONIG_ENCODING_ASCII        (&OnigEncodingASCII)
#ifndef RUBY
# define ONIG_ENCODING_ISO_8859_1   (&OnigEncodingISO_8859_1)
# define ONIG_ENCODING_ISO_8859_2   (&OnigEncodingISO_8859_2)
# define ONIG_ENCODING_ISO_8859_3   (&OnigEncodingISO_8859_3)
# define ONIG_ENCODING_ISO_8859_4   (&OnigEncodingISO_8859_4)
# define ONIG_ENCODING_ISO_8859_5   (&OnigEncodingISO_8859_5)
# define ONIG_ENCODING_ISO_8859_6   (&OnigEncodingISO_8859_6)
# define ONIG_ENCODING_ISO_8859_7   (&OnigEncodingISO_8859_7)
# define ONIG_ENCODING_ISO_8859_8   (&OnigEncodingISO_8859_8)
# define ONIG_ENCODING_ISO_8859_9   (&OnigEncodingISO_8859_9)
# define ONIG_ENCODING_ISO_8859_10  (&OnigEncodingISO_8859_10)
# define ONIG_ENCODING_ISO_8859_11  (&OnigEncodingISO_8859_11)
# define ONIG_ENCODING_ISO_8859_13  (&OnigEncodingISO_8859_13)
# define ONIG_ENCODING_ISO_8859_14  (&OnigEncodingISO_8859_14)
# define ONIG_ENCODING_ISO_8859_15  (&OnigEncodingISO_8859_15)
# define ONIG_ENCODING_ISO_8859_16  (&OnigEncodingISO_8859_16)
# define ONIG_ENCODING_UTF_8        (&OnigEncodingUTF_8)
# define ONIG_ENCODING_UTF_16BE     (&OnigEncodingUTF_16BE)
# define ONIG_ENCODING_UTF_16LE     (&OnigEncodingUTF_16LE)
# define ONIG_ENCODING_UTF_32BE     (&OnigEncodingUTF_32BE)
# define ONIG_ENCODING_UTF_32LE     (&OnigEncodingUTF_32LE)
# define ONIG_ENCODING_EUC_JP       (&OnigEncodingEUC_JP)
# define ONIG_ENCODING_EUC_TW       (&OnigEncodingEUC_TW)
# define ONIG_ENCODING_EUC_KR       (&OnigEncodingEUC_KR)
# define ONIG_ENCODING_EUC_CN       (&OnigEncodingEUC_CN)
# define ONIG_ENCODING_SHIFT_JIS    (&OnigEncodingShift_JIS)
# define ONIG_ENCODING_WINDOWS_31J  (&OnigEncodingWindows_31J)
/* # define ONIG_ENCODING_KOI8         (&OnigEncodingKOI8) */
# define ONIG_ENCODING_KOI8_R       (&OnigEncodingKOI8_R)
# define ONIG_ENCODING_KOI8_U       (&OnigEncodingKOI8_U)
# define ONIG_ENCODING_WINDOWS_1250 (&OnigEncodingWindows_1250)
# define ONIG_ENCODING_WINDOWS_1251 (&OnigEncodingWindows_1251)
# define ONIG_ENCODING_WINDOWS_1252 (&OnigEncodingWindows_1252)
# define ONIG_ENCODING_WINDOWS_1253 (&OnigEncodingWindows_1253)
# define ONIG_ENCODING_WINDOWS_1254 (&OnigEncodingWindows_1254)
# define ONIG_ENCODING_WINDOWS_1257 (&OnigEncodingWindows_1257)
# define ONIG_ENCODING_BIG5         (&OnigEncodingBIG5)
# define ONIG_ENCODING_GB18030      (&OnigEncodingGB18030)

/* old names */
# define ONIG_ENCODING_SJIS         ONIG_ENCODING_SHIFT_JIS
# define ONIG_ENCODING_CP932        ONIG_ENCODING_WINDOWS_31J
# define ONIG_ENCODING_CP1250       ONIG_ENCODING_WINDOWS_1250
# define ONIG_ENCODING_CP1251       ONIG_ENCODING_WINDOWS_1251
# define ONIG_ENCODING_CP1252       ONIG_ENCODING_WINDOWS_1252
# define ONIG_ENCODING_CP1253       ONIG_ENCODING_WINDOWS_1253
# define ONIG_ENCODING_CP1254       ONIG_ENCODING_WINDOWS_1254
# define ONIG_ENCODING_CP1257       ONIG_ENCODING_WINDOWS_1257
# define ONIG_ENCODING_UTF8         ONIG_ENCODING_UTF_8
# define ONIG_ENCODING_UTF16_BE     ONIG_ENCODING_UTF_16BE
# define ONIG_ENCODING_UTF16_LE     ONIG_ENCODING_UTF_16LE
# define ONIG_ENCODING_UTF32_BE     ONIG_ENCODING_UTF_32BE
# define ONIG_ENCODING_UTF32_LE     ONIG_ENCODING_UTF_32LE
#endif /* RUBY */

#define ONIG_ENCODING_UNDEF    ((OnigEncoding )0)

/* this declaration needs to be here because it is used in string.c in Ruby */
ONIG_EXTERN
int onigenc_ascii_only_case_map(OnigCaseFoldType* flagP, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to, OnigUChar* to_end, const struct OnigEncodingTypeST* enc);


/* work size */
#define ONIGENC_CODE_TO_MBC_MAXLEN       7
#define ONIGENC_MBC_CASE_FOLD_MAXLEN    18
/* 18: 6(max-byte) * 3(case-fold chars) */

/* character types */
#define ONIGENC_CTYPE_NEWLINE   0
#define ONIGENC_CTYPE_ALPHA     1
#define ONIGENC_CTYPE_BLANK     2
#define ONIGENC_CTYPE_CNTRL     3
#define ONIGENC_CTYPE_DIGIT     4
#define ONIGENC_CTYPE_GRAPH     5
#define ONIGENC_CTYPE_LOWER     6
#define ONIGENC_CTYPE_PRINT     7
#define ONIGENC_CTYPE_PUNCT     8
#define ONIGENC_CTYPE_SPACE     9
#define ONIGENC_CTYPE_UPPER    10
#define ONIGENC_CTYPE_XDIGIT   11
#define ONIGENC_CTYPE_WORD     12
#define ONIGENC_CTYPE_ALNUM    13  /* alpha || digit */
#define ONIGENC_CTYPE_ASCII    14
#define ONIGENC_MAX_STD_CTYPE  ONIGENC_CTYPE_ASCII

/* flags */
#define ONIGENC_FLAG_NONE       0U
#define ONIGENC_FLAG_UNICODE    1U

#define onig_enc_len(enc,p,e)          ONIGENC_MBC_ENC_LEN(enc, p, e)

#define ONIGENC_IS_UNDEF(enc)          ((enc) == ONIG_ENCODING_UNDEF)
#define ONIGENC_IS_SINGLEBYTE(enc)     (ONIGENC_MBC_MAXLEN(enc) == 1)
#define ONIGENC_IS_MBC_HEAD(enc,p,e)   (ONIGENC_MBC_ENC_LEN(enc,p,e) != 1)
#define ONIGENC_IS_MBC_ASCII(p)           (*(p)   < 128)
#define ONIGENC_IS_CODE_ASCII(code)       ((code) < 128)
#define ONIGENC_IS_MBC_WORD(enc,s,end) \
   ONIGENC_IS_CODE_WORD(enc,ONIGENC_MBC_TO_CODE(enc,s,end))
#define ONIGENC_IS_MBC_ASCII_WORD(enc,s,end) \
   onigenc_ascii_is_code_ctype( \
	ONIGENC_MBC_TO_CODE(enc,s,end),ONIGENC_CTYPE_WORD,enc)
#define ONIGENC_IS_UNICODE(enc)        ((enc)->flags & ONIGENC_FLAG_UNICODE)


#define ONIGENC_NAME(enc)                      ((enc)->name)

#define ONIGENC_MBC_CASE_FOLD(enc,flag,pp,end,buf) \
  (enc)->mbc_case_fold(flag,(const OnigUChar** )pp,end,buf,enc)
#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(enc,s,end) \
        (enc)->is_allowed_reverse_match(s,end,enc)
#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc,start,s,end) \
        (enc)->left_adjust_char_head(start, s, end, enc)
#define ONIGENC_APPLY_ALL_CASE_FOLD(enc,case_fold_flag,f,arg) \
        (enc)->apply_all_case_fold(case_fold_flag,f,arg,enc)
#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(enc,case_fold_flag,p,end,acs) \
       (enc)->get_case_fold_codes_by_str(case_fold_flag,p,end,acs,enc)
#define ONIGENC_STEP_BACK(enc,start,s,end,n) \
        onigenc_step_back((enc),(start),(s),(end),(n))

#define ONIGENC_CONSTRUCT_MBCLEN_CHARFOUND(n)   (n)
#define ONIGENC_MBCLEN_CHARFOUND_P(r)           (0 < (r))
#define ONIGENC_MBCLEN_CHARFOUND_LEN(r)         (r)

#define ONIGENC_CONSTRUCT_MBCLEN_INVALID()      (-1)
#define ONIGENC_MBCLEN_INVALID_P(r)             ((r) == -1)

#define ONIGENC_CONSTRUCT_MBCLEN_NEEDMORE(n)    (-1-(n))
#define ONIGENC_MBCLEN_NEEDMORE_P(r)            ((r) < -1)
#define ONIGENC_MBCLEN_NEEDMORE_LEN(r)          (-1-(r))

#define ONIGENC_PRECISE_MBC_ENC_LEN(enc,p,e)   (enc)->precise_mbc_enc_len(p,e,enc)

ONIG_EXTERN
int onigenc_mbclen_approximate(const OnigUChar* p,const OnigUChar* e, const struct OnigEncodingTypeST* enc);

#define ONIGENC_MBC_ENC_LEN(enc,p,e)           onigenc_mbclen_approximate(p,e,enc)
#define ONIGENC_MBC_MAXLEN(enc)               ((enc)->max_enc_len)
#define ONIGENC_MBC_MAXLEN_DIST(enc)           ONIGENC_MBC_MAXLEN(enc)
#define ONIGENC_MBC_MINLEN(enc)               ((enc)->min_enc_len)
#define ONIGENC_IS_MBC_NEWLINE(enc,p,end)      (enc)->is_mbc_newline((p),(end),enc)
#define ONIGENC_MBC_TO_CODE(enc,p,end)         (enc)->mbc_to_code((p),(end),enc)
#define ONIGENC_CODE_TO_MBCLEN(enc,code)       (enc)->code_to_mbclen(code,enc)
#define ONIGENC_CODE_TO_MBC(enc,code,buf)      (enc)->code_to_mbc(code,buf,enc)
#define ONIGENC_PROPERTY_NAME_TO_CTYPE(enc,p,end) \
  (enc)->property_name_to_ctype(enc,p,end)

#define ONIGENC_IS_CODE_CTYPE(enc,code,ctype)  (enc)->is_code_ctype(code,ctype,enc)

#define ONIGENC_IS_CODE_NEWLINE(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_NEWLINE)
#define ONIGENC_IS_CODE_GRAPH(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_GRAPH)
#define ONIGENC_IS_CODE_PRINT(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_PRINT)
#define ONIGENC_IS_CODE_ALNUM(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_ALNUM)
#define ONIGENC_IS_CODE_ALPHA(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_ALPHA)
#define ONIGENC_IS_CODE_LOWER(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_LOWER)
#define ONIGENC_IS_CODE_UPPER(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_UPPER)
#define ONIGENC_IS_CODE_CNTRL(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_CNTRL)
#define ONIGENC_IS_CODE_PUNCT(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_PUNCT)
#define ONIGENC_IS_CODE_SPACE(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_SPACE)
#define ONIGENC_IS_CODE_BLANK(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_BLANK)
#define ONIGENC_IS_CODE_DIGIT(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_DIGIT)
#define ONIGENC_IS_CODE_XDIGIT(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_XDIGIT)
#define ONIGENC_IS_CODE_WORD(enc,code) \
        ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_WORD)

#define ONIGENC_GET_CTYPE_CODE_RANGE(enc,ctype,sbout,ranges) \
        (enc)->get_ctype_code_range(ctype,sbout,ranges,enc)

ONIG_EXTERN
OnigUChar* onigenc_step_back(OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end, int n);


/* encoding API */
ONIG_EXTERN
int onigenc_init(void);
ONIG_EXTERN
int onigenc_set_default_encoding(OnigEncoding enc);
ONIG_EXTERN
OnigEncoding onigenc_get_default_encoding(void);
ONIG_EXTERN
OnigUChar* onigenc_get_right_adjust_char_head_with_prev(OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end, const OnigUChar** prev);
ONIG_EXTERN
OnigUChar* onigenc_get_prev_char_head(OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end);
ONIG_EXTERN
OnigUChar* onigenc_get_left_adjust_char_head(OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end);
ONIG_EXTERN
OnigUChar* onigenc_get_right_adjust_char_head(OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end);
ONIG_EXTERN
int onigenc_strlen(OnigEncoding enc, const OnigUChar* p, const OnigUChar* end);
ONIG_EXTERN
int onigenc_strlen_null(OnigEncoding enc, const OnigUChar* p);
ONIG_EXTERN
int onigenc_str_bytelen_null(OnigEncoding enc, const OnigUChar* p);



/* PART: regular expression */

/* config parameters */
#define ONIG_NREGION                          4
#define ONIG_MAX_CAPTURE_GROUP_NUM         32767
#define ONIG_MAX_BACKREF_NUM                1000
#define ONIG_MAX_REPEAT_NUM               100000
#define ONIG_MAX_MULTI_BYTE_RANGES_NUM     10000
/* constants */
#define ONIG_MAX_ERROR_MESSAGE_LEN            90

typedef unsigned int        OnigOptionType;

#define ONIG_OPTION_DEFAULT            ONIG_OPTION_NONE

/* options */
#define ONIG_OPTION_NONE                 0U
#define ONIG_OPTION_IGNORECASE           1U
#define ONIG_OPTION_EXTEND               (ONIG_OPTION_IGNORECASE         << 1)
#define ONIG_OPTION_MULTILINE            (ONIG_OPTION_EXTEND             << 1)
#define ONIG_OPTION_DOTALL                ONIG_OPTION_MULTILINE
#define ONIG_OPTION_SINGLELINE           (ONIG_OPTION_MULTILINE          << 1)
#define ONIG_OPTION_FIND_LONGEST         (ONIG_OPTION_SINGLELINE         << 1)
#define ONIG_OPTION_FIND_NOT_EMPTY       (ONIG_OPTION_FIND_LONGEST       << 1)
#define ONIG_OPTION_NEGATE_SINGLELINE    (ONIG_OPTION_FIND_NOT_EMPTY     << 1)
#define ONIG_OPTION_DONT_CAPTURE_GROUP   (ONIG_OPTION_NEGATE_SINGLELINE  << 1)
#define ONIG_OPTION_CAPTURE_GROUP        (ONIG_OPTION_DONT_CAPTURE_GROUP << 1)
/* options (search time) */
#define ONIG_OPTION_NOTBOL               (ONIG_OPTION_CAPTURE_GROUP << 1)
#define ONIG_OPTION_NOTEOL               (ONIG_OPTION_NOTBOL << 1)
#define ONIG_OPTION_NOTBOS               (ONIG_OPTION_NOTEOL << 1)
#define ONIG_OPTION_NOTEOS               (ONIG_OPTION_NOTBOS << 1)
/* options (ctype range) */
#define ONIG_OPTION_ASCII_RANGE          (ONIG_OPTION_NOTEOS << 1)
#define ONIG_OPTION_POSIX_BRACKET_ALL_RANGE (ONIG_OPTION_ASCII_RANGE << 1)
#define ONIG_OPTION_WORD_BOUND_ALL_RANGE    (ONIG_OPTION_POSIX_BRACKET_ALL_RANGE << 1)
/* options (newline) */
#define ONIG_OPTION_NEWLINE_CRLF         (ONIG_OPTION_WORD_BOUND_ALL_RANGE << 1)
#define ONIG_OPTION_MAXBIT               ONIG_OPTION_NEWLINE_CRLF  /* limit */

#define ONIG_OPTION_ON(options,regopt)      ((options) |= (regopt))
#define ONIG_OPTION_OFF(options,regopt)     ((options) &= ~(regopt))
#define ONIG_IS_OPTION_ON(options,option)   ((options) & (option))

/* syntax */
typedef struct {
  unsigned int   op;
  unsigned int   op2;
  unsigned int   behavior;
  OnigOptionType options;   /* default option */
  OnigMetaCharTableType meta_char_table;
} OnigSyntaxType;

ONIG_EXTERN const OnigSyntaxType OnigSyntaxASIS;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPosixBasic;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPosixExtended;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxEmacs;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxGrep;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxGnuRegex;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxJava;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPerl58;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPerl58_NG;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPerl;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxRuby;
ONIG_EXTERN const OnigSyntaxType OnigSyntaxPython;

/* predefined syntaxes (see regsyntax.c) */
#define ONIG_SYNTAX_ASIS               (&OnigSyntaxASIS)
#define ONIG_SYNTAX_POSIX_BASIC        (&OnigSyntaxPosixBasic)
#define ONIG_SYNTAX_POSIX_EXTENDED     (&OnigSyntaxPosixExtended)
#define ONIG_SYNTAX_EMACS              (&OnigSyntaxEmacs)
#define ONIG_SYNTAX_GREP               (&OnigSyntaxGrep)
#define ONIG_SYNTAX_GNU_REGEX          (&OnigSyntaxGnuRegex)
#define ONIG_SYNTAX_JAVA               (&OnigSyntaxJava)
#define ONIG_SYNTAX_PERL58             (&OnigSyntaxPerl58)
#define ONIG_SYNTAX_PERL58_NG          (&OnigSyntaxPerl58_NG)
#define ONIG_SYNTAX_PERL               (&OnigSyntaxPerl)
#define ONIG_SYNTAX_RUBY               (&OnigSyntaxRuby)
#define ONIG_SYNTAX_PYTHON             (&OnigSyntaxPython)

/* default syntax */
ONIG_EXTERN const OnigSyntaxType*   OnigDefaultSyntax;
#define ONIG_SYNTAX_DEFAULT   OnigDefaultSyntax

/* syntax (operators) */
#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS    (1U<<0)
#define ONIG_SYN_OP_DOT_ANYCHAR                 (1U<<1)   /* . */
#define ONIG_SYN_OP_ASTERISK_ZERO_INF           (1U<<2)   /* * */
#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF       (1U<<3)
#define ONIG_SYN_OP_PLUS_ONE_INF                (1U<<4)   /* + */
#define ONIG_SYN_OP_ESC_PLUS_ONE_INF            (1U<<5)
#define ONIG_SYN_OP_QMARK_ZERO_ONE              (1U<<6)   /* ? */
#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE          (1U<<7)
#define ONIG_SYN_OP_BRACE_INTERVAL              (1U<<8)   /* {lower,upper} */
#define ONIG_SYN_OP_ESC_BRACE_INTERVAL          (1U<<9)   /* \{lower,upper\} */
#define ONIG_SYN_OP_VBAR_ALT                    (1U<<10)   /* | */
#define ONIG_SYN_OP_ESC_VBAR_ALT                (1U<<11)  /* \| */
#define ONIG_SYN_OP_LPAREN_SUBEXP               (1U<<12)  /* (...)   */
#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP           (1U<<13)  /* \(...\) */
#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR           (1U<<14)  /* \A, \Z, \z */
#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR  (1U<<15)  /* \G     */
#define ONIG_SYN_OP_DECIMAL_BACKREF             (1U<<16)  /* \num   */
#define ONIG_SYN_OP_BRACKET_CC                  (1U<<17)  /* [...]  */
#define ONIG_SYN_OP_ESC_W_WORD                  (1U<<18)  /* \w, \W */
#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END     (1U<<19)  /* \<. \> */
#define ONIG_SYN_OP_ESC_B_WORD_BOUND            (1U<<20)  /* \b, \B */
#define ONIG_SYN_OP_ESC_S_WHITE_SPACE           (1U<<21)  /* \s, \S */
#define ONIG_SYN_OP_ESC_D_DIGIT                 (1U<<22)  /* \d, \D */
#define ONIG_SYN_OP_LINE_ANCHOR                 (1U<<23)  /* ^, $   */
#define ONIG_SYN_OP_POSIX_BRACKET               (1U<<24)  /* [:xxxx:] */
#define ONIG_SYN_OP_QMARK_NON_GREEDY            (1U<<25)  /* ??,*?,+?,{n,m}? */
#define ONIG_SYN_OP_ESC_CONTROL_CHARS           (1U<<26)  /* \n,\r,\t,\a ... */
#define ONIG_SYN_OP_ESC_C_CONTROL               (1U<<27)  /* \cx  */
#define ONIG_SYN_OP_ESC_OCTAL3                  (1U<<28)  /* \OOO */
#define ONIG_SYN_OP_ESC_X_HEX2                  (1U<<29)  /* \xHH */
#define ONIG_SYN_OP_ESC_X_BRACE_HEX8            (1U<<30)  /* \x{7HHHHHHH} */
#define ONIG_SYN_OP_ESC_O_BRACE_OCTAL           (1U<<31)  /* \o{OOO} */

#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE        (1U<<0)  /* \Q...\E */
#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT         (1U<<1)  /* (?...) */
#define ONIG_SYN_OP2_OPTION_PERL                (1U<<2)  /* (?imsxadlu), (?-imsx), (?^imsxalu) */
#define ONIG_SYN_OP2_OPTION_RUBY                (1U<<3)  /* (?imxadu), (?-imx)  */
#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT     (1U<<4)  /* ?+,*+,++ */
#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL   (1U<<5)  /* {n,m}+   */
#define ONIG_SYN_OP2_CCLASS_SET_OP              (1U<<6)  /* [...&&..[..]..] */
#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP       (1U<<7)  /* (?<name>...) */
#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF        (1U<<8)  /* \k<name> */
#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL          (1U<<9)  /* \g<name>, \g<n> */
#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY     (1U<<10) /* (?@..),(?@<x>..) */
#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL  (1U<<11) /* \C-x */
#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META     (1U<<12) /* \M-x */
#define ONIG_SYN_OP2_ESC_V_VTAB                 (1U<<13) /* \v as VTAB */
#define ONIG_SYN_OP2_ESC_U_HEX4                 (1U<<14) /* \uHHHH */
#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR         (1U<<15) /* \`, \' */
#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY  (1U<<16) /* \p{...}, \P{...} */
#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT (1U<<17) /* \p{^..}, \P{^..} */
/* #define ONIG_SYN_OP2_CHAR_PROPERTY_PREFIX_IS (1U<<18) */
#define ONIG_SYN_OP2_ESC_H_XDIGIT               (1U<<19) /* \h, \H */
#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE         (1U<<20) /* \ */
#define ONIG_SYN_OP2_ESC_CAPITAL_R_LINEBREAK    (1U<<21) /* \R as (?>\x0D\x0A|[\x0A-\x0D\x{85}\x{2028}\x{2029}]) */
#define ONIG_SYN_OP2_ESC_CAPITAL_X_EXTENDED_GRAPHEME_CLUSTER (1U<<22) /* \X */
#define ONIG_SYN_OP2_ESC_V_VERTICAL_WHITESPACE   (1U<<23) /* \v, \V -- Perl */ /* NOTIMPL */
#define ONIG_SYN_OP2_ESC_H_HORIZONTAL_WHITESPACE (1U<<24) /* \h, \H -- Perl */ /* NOTIMPL */
#define ONIG_SYN_OP2_ESC_CAPITAL_K_KEEP         (1U<<25) /* \K */
#define ONIG_SYN_OP2_ESC_G_BRACE_BACKREF        (1U<<26) /* \g{name}, \g{n} */
#define ONIG_SYN_OP2_QMARK_SUBEXP_CALL          (1U<<27) /* (?&name), (?n), (?R), (?0) */
#define ONIG_SYN_OP2_QMARK_VBAR_BRANCH_RESET    (1U<<28) /* (?|...) */         /* NOTIMPL */
#define ONIG_SYN_OP2_QMARK_LPAREN_CONDITION     (1U<<29) /* (?(cond)yes...|no...) */
#define ONIG_SYN_OP2_QMARK_CAPITAL_P_NAMED_GROUP (1U<<30) /* (?P<name>...), (?P=name), (?P>name) -- Python/PCRE */
#define ONIG_SYN_OP2_QMARK_TILDE_ABSENT         (1U<<31) /* (?~...) */
/* #define ONIG_SYN_OP2_OPTION_JAVA                (1U<<xx) */ /* (?idmsux), (?-idmsux) */ /* NOTIMPL */

/* syntax (behavior) */
#define ONIG_SYN_CONTEXT_INDEP_ANCHORS           (1U<<31) /* not implemented */
#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS        (1U<<0)  /* ?, *, +, {n,m} */
#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS      (1U<<1)  /* error or ignore */
#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP    (1U<<2)  /* ...)... */
#define ONIG_SYN_ALLOW_INVALID_INTERVAL          (1U<<3)  /* {??? */
#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV       (1U<<4)  /* {,n} => {0,n} */
#define ONIG_SYN_STRICT_CHECK_BACKREF            (1U<<5)  /* /(\1)/,/\1()/ ..*/
#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND   (1U<<6)  /* (?<=a|bc) */
#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP        (1U<<7)  /* see doc/RE */
#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME (1U<<8)  /* (?<x>)(?<x>) */
#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY   (1U<<9)  /* a{n}?=(?:a{n})? */
#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME_CALL (1U<<10)  /* (?<x>)(?<x>)(?&x) */
#define ONIG_SYN_USE_LEFT_MOST_NAMED_GROUP       (1U<<11) /* (?<x>)(?<x>)\k<x> */

/* syntax (behavior) in char class [...] */
#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC      (1U<<20) /* [^...] */
#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC          (1U<<21) /* [..\w..] etc.. */
#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC         (1U<<22)
#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC     (1U<<23) /* [0-9-a]=[0-9\-a] */
/* syntax (behavior) warning */
#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED          (1U<<24) /* [,-,] */
#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT    (1U<<25) /* (?:a*)+ */
#define ONIG_SYN_WARN_CC_DUP                     (1U<<26) /* [aa] */

/* meta character specifiers (onig_set_meta_char()) */
#define ONIG_META_CHAR_ESCAPE               0
#define ONIG_META_CHAR_ANYCHAR              1
#define ONIG_META_CHAR_ANYTIME              2
#define ONIG_META_CHAR_ZERO_OR_ONE_TIME     3
#define ONIG_META_CHAR_ONE_OR_MORE_TIME     4
#define ONIG_META_CHAR_ANYCHAR_ANYTIME      5

#define ONIG_INEFFECTIVE_META_CHAR          0

/* error codes */
#define ONIG_IS_PATTERN_ERROR(ecode)   ((ecode) <= -100 && (ecode) > -1000)
/* normal return */
#define ONIG_NORMAL                                            0
#define ONIG_MISMATCH                                         -1
#define ONIG_NO_SUPPORT_CONFIG                                -2

/* internal error */
#define ONIGERR_MEMORY                                         -5
#define ONIGERR_TYPE_BUG                                       -6
#define ONIGERR_PARSER_BUG                                    -11
#define ONIGERR_STACK_BUG                                     -12
#define ONIGERR_UNDEFINED_BYTECODE                            -13
#define ONIGERR_UNEXPECTED_BYTECODE                           -14
#define ONIGERR_MATCH_STACK_LIMIT_OVER                        -15
#define ONIGERR_PARSE_DEPTH_LIMIT_OVER                        -16
#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SET                   -21
#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR  -22
/* general error */
#define ONIGERR_INVALID_ARGUMENT                              -30
/* syntax error */
#define ONIGERR_END_PATTERN_AT_LEFT_BRACE                    -100
#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET                  -101
#define ONIGERR_EMPTY_CHAR_CLASS                             -102
#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS                  -103
#define ONIGERR_END_PATTERN_AT_ESCAPE                        -104
#define ONIGERR_END_PATTERN_AT_META                          -105
#define ONIGERR_END_PATTERN_AT_CONTROL                       -106
#define ONIGERR_META_CODE_SYNTAX                             -108
#define ONIGERR_CONTROL_CODE_SYNTAX                          -109
#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE             -110
#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE           -111
#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS      -112
#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED      -113
#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID            -114
#define ONIGERR_NESTED_REPEAT_OPERATOR                       -115
#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS                  -116
#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS       -117
#define ONIGERR_END_PATTERN_IN_GROUP                         -118
#define ONIGERR_UNDEFINED_GROUP_OPTION                       -119
#define ONIGERR_INVALID_POSIX_BRACKET_TYPE                   -121
#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN                  -122
#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN                 -123
#define ONIGERR_INVALID_CONDITION_PATTERN                    -124
/* values error (syntax error) */
#define ONIGERR_TOO_BIG_NUMBER                               -200
#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE              -201
#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE     -202
#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS                    -203
#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE          -204
#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES                   -205
#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING                  -206
#define ONIGERR_TOO_BIG_BACKREF_NUMBER                       -207
#define ONIGERR_INVALID_BACKREF                              -208
#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED         -209
#define ONIGERR_TOO_MANY_CAPTURE_GROUPS                      -210
#define ONIGERR_TOO_SHORT_DIGITS                             -211
#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE                     -212
#define ONIGERR_EMPTY_GROUP_NAME                             -214
#define ONIGERR_INVALID_GROUP_NAME                           -215
#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME                   -216
#define ONIGERR_UNDEFINED_NAME_REFERENCE                     -217
#define ONIGERR_UNDEFINED_GROUP_REFERENCE                    -218
#define ONIGERR_MULTIPLEX_DEFINED_NAME                       -219
#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL               -220
#define ONIGERR_NEVER_ENDING_RECURSION                       -221
#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY        -222
#define ONIGERR_INVALID_CHAR_PROPERTY_NAME                   -223
#define ONIGERR_INVALID_CODE_POINT_VALUE                     -400
#define ONIGERR_INVALID_WIDE_CHAR_VALUE                      -400
#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE                      -401
#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION           -402
#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS               -403

/* errors related to thread */
/* #define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT                -1001 */


/* must be smaller than BIT_STATUS_BITS_NUM (unsigned int * 8) */
#define ONIG_MAX_CAPTURE_HISTORY_GROUP   31
#define ONIG_IS_CAPTURE_HISTORY_GROUP(r, i) \
  ((i) <= ONIG_MAX_CAPTURE_HISTORY_GROUP && (r)->list && (r)->list[i])

#ifdef USE_CAPTURE_HISTORY
typedef struct OnigCaptureTreeNodeStruct {
  int group;   /* group number */
  OnigPosition beg;
  OnigPosition end;
  int allocated;
  int num_childs;
  struct OnigCaptureTreeNodeStruct** childs;
} OnigCaptureTreeNode;
#endif

/* match result region type */
struct re_registers {
  int  allocated;
  int  num_regs;
  OnigPosition* beg;
  OnigPosition* end;
#ifdef USE_CAPTURE_HISTORY
  /* extended */
  OnigCaptureTreeNode* history_root;  /* capture history tree root */
#endif
};

/* capture tree traverse */
#define ONIG_TRAVERSE_CALLBACK_AT_FIRST   1
#define ONIG_TRAVERSE_CALLBACK_AT_LAST    2
#define ONIG_TRAVERSE_CALLBACK_AT_BOTH \
  ( ONIG_TRAVERSE_CALLBACK_AT_FIRST | ONIG_TRAVERSE_CALLBACK_AT_LAST )


#define ONIG_REGION_NOTPOS            -1

typedef struct re_registers   OnigRegion;

typedef struct {
  OnigEncoding enc;
  OnigUChar* par;
  OnigUChar* par_end;
} OnigErrorInfo;

typedef struct {
  int lower;
  int upper;
} OnigRepeatRange;

typedef void (*OnigWarnFunc)(const char* s);
extern void onig_null_warn(const char* s);
#define ONIG_NULL_WARN       onig_null_warn

#define ONIG_CHAR_TABLE_SIZE   256

typedef struct re_pattern_buffer {
  /* common members of BBuf(bytes-buffer) */
  unsigned char* p;         /* compiled pattern */
  unsigned int used;        /* used space for p */
  unsigned int alloc;       /* allocated space for p */

  int num_mem;                   /* used memory(...) num counted from 1 */
  int num_repeat;                /* OP_REPEAT/OP_REPEAT_NG id-counter */
  int num_null_check;            /* OP_NULL_CHECK_START/END id counter */
  int num_comb_exp_check;        /* combination explosion check */
  int num_call;                  /* number of subexp call */
  unsigned int capture_history;  /* (?@...) flag (1-31) */
  unsigned int bt_mem_start;     /* need backtrack flag */
  unsigned int bt_mem_end;       /* need backtrack flag */
  int stack_pop_level;
  int repeat_range_alloc;

  OnigOptionType    options;

  OnigRepeatRange* repeat_range;

  OnigEncoding      enc;
  const OnigSyntaxType* syntax;
  void*             name_table;
  OnigCaseFoldType  case_fold_flag;

  /* optimization info (string search, char-map and anchors) */
  int            optimize;          /* optimize flag */
  int            threshold_len;     /* search str-length for apply optimize */
  int            anchor;            /* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF */
  OnigDistance   anchor_dmin;       /* (SEMI_)END_BUF anchor distance */
  OnigDistance   anchor_dmax;       /* (SEMI_)END_BUF anchor distance */
  int            sub_anchor;        /* start-anchor for exact or map */
  unsigned char *exact;
  unsigned char *exact_end;
  unsigned char  map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */
  int           *int_map;                   /* BM skip for exact_len > 255 */
  int           *int_map_backward;          /* BM skip for backward search */
  OnigDistance   dmin;                      /* min-distance of exact or map */
  OnigDistance   dmax;                      /* max-distance of exact or map */

  /* regex_t link chain */
  struct re_pattern_buffer* chain;  /* escape compile-conflict */
} OnigRegexType;

typedef OnigRegexType*  OnigRegex;

#ifndef ONIG_ESCAPE_REGEX_T_COLLISION
typedef OnigRegexType  regex_t;
#endif


typedef struct {
  int             num_of_elements;
  OnigEncoding    pattern_enc;
  OnigEncoding    target_enc;
  const OnigSyntaxType* syntax;
  OnigOptionType  option;
  OnigCaseFoldType   case_fold_flag;
} OnigCompileInfo;

/* Oniguruma Native API */
ONIG_EXTERN
int onig_initialize(OnigEncoding encodings[], int n);
ONIG_EXTERN
int onig_init(void);
ONIG_EXTERN
int onig_error_code_to_str(OnigUChar* s, OnigPosition err_code, ...);
ONIG_EXTERN
void onig_set_warn_func(OnigWarnFunc f);
ONIG_EXTERN
void onig_set_verb_warn_func(OnigWarnFunc f);
ONIG_EXTERN
int onig_new(OnigRegex*, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, const OnigSyntaxType* syntax, OnigErrorInfo* einfo);
ONIG_EXTERN
int onig_reg_init(OnigRegex reg, OnigOptionType option, OnigCaseFoldType case_fold_flag, OnigEncoding enc, const OnigSyntaxType* syntax);
ONIG_EXTERN
int onig_new_without_alloc(OnigRegex, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, const OnigSyntaxType* syntax, OnigErrorInfo* einfo);
ONIG_EXTERN
int onig_new_deluxe(OnigRegex* reg, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigCompileInfo* ci, OnigErrorInfo* einfo);
ONIG_EXTERN
void onig_free(OnigRegex);
ONIG_EXTERN
void onig_free_body(OnigRegex);
ONIG_EXTERN
OnigPosition onig_scan(OnigRegex reg, const OnigUChar* str, const OnigUChar* end, OnigRegion* region, OnigOptionType option, int (*scan_callback)(OnigPosition, OnigPosition, OnigRegion*, void*), void* callback_arg);
ONIG_EXTERN
OnigPosition onig_search(OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType option);
ONIG_EXTERN
OnigPosition onig_search_gpos(OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* global_pos, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType option);
ONIG_EXTERN
OnigPosition onig_match(OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* at, OnigRegion* region, OnigOptionType option);
ONIG_EXTERN
OnigRegion* onig_region_new(void);
ONIG_EXTERN
void onig_region_init(OnigRegion* region);
ONIG_EXTERN
void onig_region_free(OnigRegion* region, int free_self);
ONIG_EXTERN
void onig_region_copy(OnigRegion* to, const OnigRegion* from);
ONIG_EXTERN
void onig_region_clear(OnigRegion* region);
ONIG_EXTERN
int onig_region_resize(OnigRegion* region, int n);
ONIG_EXTERN
int onig_region_set(OnigRegion* region, int at, int beg, int end);
ONIG_EXTERN
int onig_name_to_group_numbers(OnigRegex reg, const OnigUChar* name, const OnigUChar* name_end, int** nums);
ONIG_EXTERN
int onig_name_to_backref_number(OnigRegex reg, const OnigUChar* name, const OnigUChar* name_end, const OnigRegion *region);
ONIG_EXTERN
int onig_foreach_name(OnigRegex reg, int (*func)(const OnigUChar*, const OnigUChar*,int,int*,OnigRegex,void*), void* arg);
ONIG_EXTERN
int onig_number_of_names(const OnigRegexType *reg);
ONIG_EXTERN
int onig_number_of_captures(const OnigRegexType *reg);
ONIG_EXTERN
int onig_number_of_capture_histories(const OnigRegexType *reg);
#ifdef USE_CAPTURE_HISTORY
ONIG_EXTERN
OnigCaptureTreeNode* onig_get_capture_tree(OnigRegion* region);
#endif
ONIG_EXTERN
int onig_capture_tree_traverse(OnigRegion* region, int at, int(*callback_func)(int,OnigPosition,OnigPosition,int,int,void*), void* arg);
ONIG_EXTERN
int onig_noname_group_capture_is_active(const OnigRegexType *reg);
ONIG_EXTERN
OnigEncoding onig_get_encoding(const OnigRegexType *reg);
ONIG_EXTERN
OnigOptionType onig_get_options(const OnigRegexType *reg);
ONIG_EXTERN
OnigCaseFoldType onig_get_case_fold_flag(const OnigRegexType *reg);
ONIG_EXTERN
const OnigSyntaxType* onig_get_syntax(const OnigRegexType *reg);
ONIG_EXTERN
int onig_set_default_syntax(const OnigSyntaxType* syntax);
ONIG_EXTERN
void onig_copy_syntax(OnigSyntaxType* to, const OnigSyntaxType* from);
ONIG_EXTERN
unsigned int onig_get_syntax_op(const OnigSyntaxType* syntax);
ONIG_EXTERN
unsigned int onig_get_syntax_op2(const OnigSyntaxType* syntax);
ONIG_EXTERN
unsigned int onig_get_syntax_behavior(const OnigSyntaxType* syntax);
ONIG_EXTERN
OnigOptionType onig_get_syntax_options(const OnigSyntaxType* syntax);
ONIG_EXTERN
void onig_set_syntax_op(OnigSyntaxType* syntax, unsigned int op);
ONIG_EXTERN
void onig_set_syntax_op2(OnigSyntaxType* syntax, unsigned int op2);
ONIG_EXTERN
void onig_set_syntax_behavior(OnigSyntaxType* syntax, unsigned int behavior);
ONIG_EXTERN
void onig_set_syntax_options(OnigSyntaxType* syntax, OnigOptionType options);
ONIG_EXTERN
int onig_set_meta_char(OnigSyntaxType* syntax, unsigned int what, OnigCodePoint code);
ONIG_EXTERN
void onig_copy_encoding(OnigEncodingType *to, OnigEncoding from);
ONIG_EXTERN
OnigCaseFoldType onig_get_default_case_fold_flag(void);
ONIG_EXTERN
int onig_set_default_case_fold_flag(OnigCaseFoldType case_fold_flag);
ONIG_EXTERN
unsigned int onig_get_match_stack_limit_size(void);
ONIG_EXTERN
int onig_set_match_stack_limit_size(unsigned int size);
ONIG_EXTERN
unsigned int onig_get_parse_depth_limit(void);
ONIG_EXTERN
int onig_set_parse_depth_limit(unsigned int depth);
ONIG_EXTERN
int onig_end(void);
ONIG_EXTERN
const char* onig_version(void);
ONIG_EXTERN
const char* onig_copyright(void);

RUBY_SYMBOL_EXPORT_END

#ifdef __cplusplus
# if 0
{ /* satisfy cc-mode */
# endif
}
#endif

#endif /* ONIGMO_H */
PKJH[�ͱ�==include/ruby/version.hnu�[���/**********************************************************************

  ruby/version.h -

  $Author$
  created at: Wed May 13 12:56:56 JST 2009

  Copyright (C) 1993-2009 Yukihiro Matsumoto
  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
  Copyright (C) 2000  Information-technology Promotion Agency, Japan

**********************************************************************/

/*
 * This file contains only
 * - never-changeable information, and
 * - interfaces accessible from extension libraries.
 *
 * Never try to check RUBY_VERSION_CODE etc in extension libraries,
 * check the features with mkmf.rb instead.
 */

#ifndef RUBY_VERSION_H
#define RUBY_VERSION_H 1

/* The origin. */
#define RUBY_AUTHOR "Yukihiro Matsumoto"
#define RUBY_BIRTH_YEAR 1993
#define RUBY_BIRTH_MONTH 2
#define RUBY_BIRTH_DAY 24

/* API version */
#define RUBY_API_VERSION_MAJOR 2
#define RUBY_API_VERSION_MINOR 7
#define RUBY_API_VERSION_TEENY 0
#define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY)

#ifdef RUBY_EXTERN
#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

/*
 * Interfaces from extension libraries.
 *
 * Before using these infos, think thrice whether they are really
 * necessary or not, and if the answer was yes, think twice a week
 * later again.
 */
RUBY_EXTERN const int ruby_api_version[3];
RUBY_EXTERN const char ruby_version[];
RUBY_EXTERN const char ruby_release_date[];
RUBY_EXTERN const char ruby_platform[];
RUBY_EXTERN const int  ruby_patchlevel;
RUBY_EXTERN const char ruby_description[];
RUBY_EXTERN const char ruby_copyright[];
RUBY_EXTERN const char ruby_engine[];

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif
#endif

#endif
PKJH[�XF��include/ruby/st.hnu�[���/* This is a public domain general purpose hash table package
   originally written by Peter Moore @ UCB.

   The hash table data strutures were redesigned and the package was
   rewritten by Vladimir Makarov <vmakarov@redhat.com>.  */

#ifndef RUBY_ST_H
#define RUBY_ST_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/defines.h"

RUBY_SYMBOL_EXPORT_BEGIN

#if SIZEOF_LONG == SIZEOF_VOIDP
typedef unsigned long st_data_t;
#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
typedef unsigned LONG_LONG st_data_t;
#else
# error ---->> st.c requires sizeof(void*) == sizeof(long) or sizeof(LONG_LONG) to be compiled. <<----
#endif
#define ST_DATA_T_DEFINED

#ifndef CHAR_BIT
# ifdef HAVE_LIMITS_H
#  include <limits.h>
# else
#  define CHAR_BIT 8
# endif
#endif
#ifndef _
# define _(args) args
#endif
#ifndef ANYARGS
# ifdef __cplusplus
#   define ANYARGS ...
# else
#   define ANYARGS
# endif
#endif

typedef struct st_table st_table;

typedef st_data_t st_index_t;

/* Maximal value of unsigned integer type st_index_t.  */
#define MAX_ST_INDEX_VAL (~(st_index_t) 0)

typedef int st_compare_func(st_data_t, st_data_t);
typedef st_index_t st_hash_func(st_data_t);

typedef char st_check_for_sizeof_st_index_t[SIZEOF_VOIDP == (int)sizeof(st_index_t) ? 1 : -1];
#define SIZEOF_ST_INDEX_T SIZEOF_VOIDP

struct st_hash_type {
    int (*compare)(st_data_t, st_data_t); /* st_compare_func* */
    st_index_t (*hash)(st_data_t);        /* st_hash_func* */
};

#define ST_INDEX_BITS (SIZEOF_ST_INDEX_T * CHAR_BIT)

#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR) && defined(HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P)
# define ST_DATA_COMPATIBLE_P(type) \
   __builtin_choose_expr(__builtin_types_compatible_p(type, st_data_t), 1, 0)
#else
# define ST_DATA_COMPATIBLE_P(type) 0
#endif

typedef struct st_table_entry st_table_entry;

struct st_table_entry; /* defined in st.c */

struct st_table {
    /* Cached features of the table -- see st.c for more details.  */
    unsigned char entry_power, bin_power, size_ind;
    /* How many times the table was rebuilt.  */
    unsigned int rebuilds_num;
    const struct st_hash_type *type;
    /* Number of entries currently in the table.  */
    st_index_t num_entries;
    /* Array of bins used for access by keys.  */
    st_index_t *bins;
    /* Start and bound index of entries in array entries.
       entries_starts and entries_bound are in interval
       [0,allocated_entries].  */
    st_index_t entries_start, entries_bound;
    /* Array of size 2^entry_power.  */
    st_table_entry *entries;
};

#define st_is_member(table,key) st_lookup((table),(key),(st_data_t *)0)

enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE, ST_CHECK, ST_REPLACE};

st_table *rb_st_init_table(const struct st_hash_type *);
#define st_init_table rb_st_init_table
st_table *rb_st_init_table_with_size(const struct st_hash_type *, st_index_t);
#define st_init_table_with_size rb_st_init_table_with_size
st_table *rb_st_init_numtable(void);
#define st_init_numtable rb_st_init_numtable
st_table *rb_st_init_numtable_with_size(st_index_t);
#define st_init_numtable_with_size rb_st_init_numtable_with_size
st_table *rb_st_init_strtable(void);
#define st_init_strtable rb_st_init_strtable
st_table *rb_st_init_strtable_with_size(st_index_t);
#define st_init_strtable_with_size rb_st_init_strtable_with_size
st_table *rb_st_init_strcasetable(void);
#define st_init_strcasetable rb_st_init_strcasetable
st_table *rb_st_init_strcasetable_with_size(st_index_t);
#define st_init_strcasetable_with_size rb_st_init_strcasetable_with_size
int rb_st_delete(st_table *, st_data_t *, st_data_t *); /* returns 0:notfound 1:deleted */
#define st_delete rb_st_delete
int rb_st_delete_safe(st_table *, st_data_t *, st_data_t *, st_data_t);
#define st_delete_safe rb_st_delete_safe
int rb_st_shift(st_table *, st_data_t *, st_data_t *); /* returns 0:notfound 1:deleted */
#define st_shift rb_st_shift
int rb_st_insert(st_table *, st_data_t, st_data_t);
#define st_insert rb_st_insert
int rb_st_insert2(st_table *, st_data_t, st_data_t, st_data_t (*)(st_data_t));
#define st_insert2 rb_st_insert2
int rb_st_lookup(st_table *, st_data_t, st_data_t *);
#define st_lookup rb_st_lookup
int rb_st_get_key(st_table *, st_data_t, st_data_t *);
#define st_get_key rb_st_get_key
typedef int st_update_callback_func(st_data_t *key, st_data_t *value, st_data_t arg, int existing);
/* *key may be altered, but must equal to the old key, i.e., the
 * results of hash() are same and compare() returns 0, otherwise the
 * behavior is undefined */
int rb_st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data_t arg);
#define st_update rb_st_update
typedef int st_foreach_callback_func(st_data_t, st_data_t, st_data_t);
typedef int st_foreach_check_callback_func(st_data_t, st_data_t, st_data_t, int);
int rb_st_foreach_with_replace(st_table *tab, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg);
#define st_foreach_with_replace rb_st_foreach_with_replace
int rb_st_foreach(st_table *, st_foreach_callback_func *, st_data_t);
#define st_foreach rb_st_foreach
int rb_st_foreach_check(st_table *, st_foreach_check_callback_func *, st_data_t, st_data_t);
#define st_foreach_check rb_st_foreach_check
st_index_t rb_st_keys(st_table *table, st_data_t *keys, st_index_t size);
#define st_keys rb_st_keys
st_index_t rb_st_keys_check(st_table *table, st_data_t *keys, st_index_t size, st_data_t never);
#define st_keys_check rb_st_keys_check
st_index_t rb_st_values(st_table *table, st_data_t *values, st_index_t size);
#define st_values rb_st_values
st_index_t rb_st_values_check(st_table *table, st_data_t *values, st_index_t size, st_data_t never);
#define st_values_check rb_st_values_check
void rb_st_add_direct(st_table *, st_data_t, st_data_t);
#define st_add_direct rb_st_add_direct
void rb_st_free_table(st_table *);
#define st_free_table rb_st_free_table
void rb_st_cleanup_safe(st_table *, st_data_t);
#define st_cleanup_safe rb_st_cleanup_safe
void rb_st_clear(st_table *);
#define st_clear rb_st_clear
st_table *rb_st_copy(st_table *);
#define st_copy rb_st_copy
CONSTFUNC(int rb_st_numcmp(st_data_t, st_data_t));
#define st_numcmp rb_st_numcmp
CONSTFUNC(st_index_t rb_st_numhash(st_data_t));
#define st_numhash rb_st_numhash
PUREFUNC(int rb_st_locale_insensitive_strcasecmp(const char *s1, const char *s2));
#define st_locale_insensitive_strcasecmp rb_st_locale_insensitive_strcasecmp
PUREFUNC(int rb_st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n));
#define st_locale_insensitive_strncasecmp rb_st_locale_insensitive_strncasecmp
#define st_strcasecmp rb_st_locale_insensitive_strcasecmp
#define st_strncasecmp rb_st_locale_insensitive_strncasecmp
PUREFUNC(size_t rb_st_memsize(const st_table *));
#define st_memsize rb_st_memsize
PUREFUNC(st_index_t rb_st_hash(const void *ptr, size_t len, st_index_t h));
#define st_hash rb_st_hash
CONSTFUNC(st_index_t rb_st_hash_uint32(st_index_t h, uint32_t i));
#define st_hash_uint32 rb_st_hash_uint32
CONSTFUNC(st_index_t rb_st_hash_uint(st_index_t h, st_index_t i));
#define st_hash_uint rb_st_hash_uint
CONSTFUNC(st_index_t rb_st_hash_end(st_index_t h));
#define st_hash_end rb_st_hash_end
CONSTFUNC(st_index_t rb_st_hash_start(st_index_t h));
#define st_hash_start(h) ((st_index_t)(h))

void rb_hash_bulk_insert_into_st_table(long, const VALUE *, VALUE);

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_ST_H */
PKJH[�;g2##include/ruby/missing.hnu�[���/************************************************

  missing.h - prototype for *.c in ./missing, and
  	      for missing timeval struct

  $Author$
  created at: Sat May 11 23:46:03 JST 2002

************************************************/

#ifndef RUBY_MISSING_H
#define RUBY_MISSING_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/config.h"
#include <stddef.h>
#include <math.h> /* for INFINITY and NAN */
#ifdef RUBY_ALTERNATIVE_MALLOC_HEADER
# include RUBY_ALTERNATIVE_MALLOC_HEADER
#endif
#ifdef RUBY_EXTCONF_H
#include RUBY_EXTCONF_H
#endif

#if !defined(HAVE_STRUCT_TIMEVAL) || !defined(HAVE_STRUCT_TIMESPEC)
#if defined(HAVE_TIME_H)
# include <time.h>
#endif
#if defined(HAVE_SYS_TIME_H)
# include <sys/time.h>
#endif
#endif

#ifndef M_PI
# define M_PI 3.14159265358979323846
#endif
#ifndef M_PI_2
# define M_PI_2 (M_PI/2)
#endif

#ifndef RUBY_SYMBOL_EXPORT_BEGIN
# define RUBY_SYMBOL_EXPORT_BEGIN /* begin */
# define RUBY_SYMBOL_EXPORT_END   /* end */
#endif

#if !defined(HAVE_STRUCT_TIMEVAL)
struct timeval {
    time_t tv_sec;	/* seconds */
    long tv_usec;	/* microseconds */
};
#endif /* HAVE_STRUCT_TIMEVAL */

#if !defined(HAVE_STRUCT_TIMESPEC)
struct timespec {
    time_t tv_sec;	/* seconds */
    long tv_nsec;	/* nanoseconds */
};
#endif

#if !defined(HAVE_STRUCT_TIMEZONE)
struct timezone {
    int tz_minuteswest;
    int tz_dsttime;
};
#endif

#ifdef RUBY_EXPORT
#undef RUBY_EXTERN
#endif
#ifndef RUBY_EXTERN
#define RUBY_EXTERN extern
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#ifndef HAVE_ACOSH
RUBY_EXTERN double acosh(double);
RUBY_EXTERN double asinh(double);
RUBY_EXTERN double atanh(double);
#endif

#ifndef HAVE_CRYPT
RUBY_EXTERN char *crypt(const char *, const char *);
#endif

#ifndef HAVE_DUP2
RUBY_EXTERN int dup2(int, int);
#endif

#ifndef HAVE_EACCESS
RUBY_EXTERN int eaccess(const char*, int);
#endif

#ifndef HAVE_ROUND
RUBY_EXTERN double round(double);	/* numeric.c */
#endif

#ifndef HAVE_FINITE
RUBY_EXTERN int finite(double);
#endif

#ifndef HAVE_FLOCK
RUBY_EXTERN int flock(int, int);
#endif

/*
#ifndef HAVE_FREXP
RUBY_EXTERN double frexp(double, int *);
#endif
*/

#ifndef HAVE_HYPOT
RUBY_EXTERN double hypot(double, double);
#endif

#ifndef HAVE_ERF
RUBY_EXTERN double erf(double);
RUBY_EXTERN double erfc(double);
#endif

#ifndef HAVE_TGAMMA
RUBY_EXTERN double tgamma(double);
#endif

#ifndef HAVE_LGAMMA_R
RUBY_EXTERN double lgamma_r(double, int *);
#endif

#ifndef HAVE_CBRT
RUBY_EXTERN double cbrt(double);
#endif

#if !defined(INFINITY) || !defined(NAN)
union bytesequence4_or_float {
  unsigned char bytesequence[4];
  float float_value;
};
#endif

#ifndef INFINITY
/** @internal */
RUBY_EXTERN const union bytesequence4_or_float rb_infinity;
# define INFINITY (rb_infinity.float_value)
# define USE_RB_INFINITY 1
#endif

#ifndef NAN
/** @internal */
RUBY_EXTERN const union bytesequence4_or_float rb_nan;
# define NAN (rb_nan.float_value)
# define USE_RB_NAN 1
#endif

#ifndef HUGE_VAL
# define HUGE_VAL ((double)INFINITY)
#endif

#ifndef isinf
# ifndef HAVE_ISINF
#  if defined(HAVE_FINITE) && defined(HAVE_ISNAN)
#    ifdef HAVE_IEEEFP_H
#    include <ieeefp.h>
#    endif
#  define isinf(x) (!finite(x) && !isnan(x))
#  elif defined(__cplusplus) && __cplusplus >= 201103L
#    include <cmath> // it must include constexpr bool isinf(double);
#  else
RUBY_EXTERN int isinf(double);
#  endif
# endif
#endif

#ifndef isnan
# ifndef HAVE_ISNAN
#  if defined(__cplusplus) && __cplusplus >= 201103L
#    include <cmath> // it must include constexpr bool isnan(double);
#  else
RUBY_EXTERN int isnan(double);
#  endif
# endif
#endif

#ifndef isfinite
# ifndef HAVE_ISFINITE
#   define HAVE_ISFINITE 1
#   define isfinite(x) finite(x)
# endif
#endif

#ifndef HAVE_NAN
RUBY_EXTERN double nan(const char *);
#endif

#ifndef HAVE_NEXTAFTER
RUBY_EXTERN double nextafter(double x, double y);
#endif

/*
#ifndef HAVE_MEMCMP
RUBY_EXTERN int memcmp(const void *, const void *, size_t);
#endif
*/

#ifndef HAVE_MEMMOVE
RUBY_EXTERN void *memmove(void *, const void *, size_t);
#endif

/*
#ifndef HAVE_MODF
RUBY_EXTERN double modf(double, double *);
#endif
*/

#ifndef HAVE_STRCHR
RUBY_EXTERN char *strchr(const char *, int);
RUBY_EXTERN char *strrchr(const char *, int);
#endif

#ifndef HAVE_STRERROR
RUBY_EXTERN char *strerror(int);
#endif

#ifndef HAVE_STRSTR
RUBY_EXTERN char *strstr(const char *, const char *);
#endif

#ifndef HAVE_STRLCPY
RUBY_EXTERN size_t strlcpy(char *, const char*, size_t);
#endif

#ifndef HAVE_STRLCAT
RUBY_EXTERN size_t strlcat(char *, const char*, size_t);
#endif

#ifndef HAVE_SIGNBIT
RUBY_EXTERN int signbit(double x);
#endif

#ifndef HAVE_FFS
RUBY_EXTERN int ffs(int);
#endif

#ifdef BROKEN_CLOSE
#include <sys/types.h>
#include <sys/socket.h>
RUBY_EXTERN int ruby_getpeername(int, struct sockaddr *, socklen_t *);
RUBY_EXTERN int ruby_getsockname(int, struct sockaddr *, socklen_t *);
RUBY_EXTERN int ruby_shutdown(int, int);
RUBY_EXTERN int ruby_close(int);
#endif

#ifndef HAVE_SETPROCTITLE
RUBY_EXTERN void setproctitle(const char *fmt, ...);
#endif

#ifndef HAVE_EXPLICIT_BZERO
RUBY_EXTERN void explicit_bzero(void *b, size_t len);
# if defined SecureZeroMemory
#   define explicit_bzero(b, len) SecureZeroMemory(b, len)
# endif
#endif

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_MISSING_H */
PKJH[H�������include/ruby/ruby.hnu�[���/**********************************************************************

  ruby/ruby.h -

  $Author$
  created at: Thu Jun 10 14:26:32 JST 1993

  Copyright (C) 1993-2008 Yukihiro Matsumoto
  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
  Copyright (C) 2000  Information-technology Promotion Agency, Japan

**********************************************************************/

#ifndef RUBY_RUBY_H
#define RUBY_RUBY_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/config.h"
#ifdef RUBY_EXTCONF_H
#include RUBY_EXTCONF_H
#endif

#include "defines.h"
#include "ruby/assert.h"

/* For MinGW, we need __declspec(dllimport) for RUBY_EXTERN on MJIT.
   mswin's RUBY_EXTERN already has that. See also: win32/Makefile.sub */
#if defined(MJIT_HEADER) && defined(_WIN32) && defined(__GNUC__)
# undef RUBY_EXTERN
# define RUBY_EXTERN extern __declspec(dllimport)
#endif

#if defined(__cplusplus)
/* __builtin_choose_expr and __builtin_types_compatible aren't available
 * on C++.  See https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html */
# undef HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P
# undef HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P
#elif GCC_VERSION_BEFORE(4,8,6) /* Bug #14221 */
# undef HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P
#endif

#ifndef ASSUME
# ifdef UNREACHABLE
#   define ASSUME(x) (RB_LIKELY(!!(x)) ? (void)0 : UNREACHABLE)
# else
#   define ASSUME(x) ((void)(x))
# endif
#endif
#ifndef UNREACHABLE_RETURN
# ifdef UNREACHABLE
#  define UNREACHABLE_RETURN(val) UNREACHABLE
# else
#  define UNREACHABLE_RETURN(val) return (val)
# endif
#endif
#ifndef UNREACHABLE
# define UNREACHABLE ((void)0)	/* unreachable */
#endif

#define RUBY_MACRO_SELECT(base, n) TOKEN_PASTE(base, n)

#ifdef HAVE_INTRINSICS_H
# include <intrinsics.h>
#endif

#include <stdarg.h>

RUBY_SYMBOL_EXPORT_BEGIN

/* Make alloca work the best possible way.  */
#ifdef __GNUC__
# ifndef alloca
#  define alloca __builtin_alloca
# endif
#else
# ifdef HAVE_ALLOCA_H
#  include <alloca.h>
# else
#  ifdef _AIX
#pragma alloca
#  else
#   ifndef alloca		/* predefined by HP cc +Olibcalls */
void *alloca();
#   endif
#  endif /* AIX */
# endif	/* HAVE_ALLOCA_H */
#endif /* __GNUC__ */

#if defined HAVE_UINTPTR_T && 0
typedef uintptr_t VALUE;
typedef uintptr_t ID;
# define SIGNED_VALUE intptr_t
# define SIZEOF_VALUE SIZEOF_UINTPTR_T
# undef PRI_VALUE_PREFIX
#elif SIZEOF_LONG == SIZEOF_VOIDP
typedef unsigned long VALUE;
typedef unsigned long ID;
# define SIGNED_VALUE long
# define SIZEOF_VALUE SIZEOF_LONG
# define PRI_VALUE_PREFIX "l"
#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
typedef unsigned LONG_LONG VALUE;
typedef unsigned LONG_LONG ID;
# define SIGNED_VALUE LONG_LONG
# define LONG_LONG_VALUE 1
# define SIZEOF_VALUE SIZEOF_LONG_LONG
# define PRI_VALUE_PREFIX PRI_LL_PREFIX
#else
# error ---->> ruby requires sizeof(void*) == sizeof(long) or sizeof(LONG_LONG) to be compiled. <<----
#endif

typedef char ruby_check_sizeof_int[SIZEOF_INT == sizeof(int) ? 1 : -1];
typedef char ruby_check_sizeof_long[SIZEOF_LONG == sizeof(long) ? 1 : -1];
#ifdef HAVE_LONG_LONG
typedef char ruby_check_sizeof_long_long[SIZEOF_LONG_LONG == sizeof(LONG_LONG) ? 1 : -1];
#endif
typedef char ruby_check_sizeof_voidp[SIZEOF_VOIDP == sizeof(void*) ? 1 : -1];

#ifndef PRI_INT_PREFIX
#define PRI_INT_PREFIX ""
#endif
#ifndef PRI_LONG_PREFIX
#define PRI_LONG_PREFIX "l"
#endif
#ifndef PRI_SHORT_PREFIX
#define PRI_SHORT_PREFIX "h"
#endif

#ifndef PRI_64_PREFIX
#if SIZEOF_LONG == 8
#define PRI_64_PREFIX PRI_LONG_PREFIX
#elif SIZEOF_LONG_LONG == 8
#define PRI_64_PREFIX PRI_LL_PREFIX
#endif
#endif

#ifndef PRIdPTR
#define PRIdPTR PRI_PTR_PREFIX"d"
#define PRIiPTR PRI_PTR_PREFIX"i"
#define PRIoPTR PRI_PTR_PREFIX"o"
#define PRIuPTR PRI_PTR_PREFIX"u"
#define PRIxPTR PRI_PTR_PREFIX"x"
#define PRIXPTR PRI_PTR_PREFIX"X"
#endif

#define RUBY_PRI_VALUE_MARK "\v"
#if defined PRIdPTR && !defined PRI_VALUE_PREFIX
#define PRIdVALUE PRIdPTR
#define PRIoVALUE PRIoPTR
#define PRIuVALUE PRIuPTR
#define PRIxVALUE PRIxPTR
#define PRIXVALUE PRIXPTR
#define PRIsVALUE PRIiPTR"" RUBY_PRI_VALUE_MARK
#else
#define PRIdVALUE PRI_VALUE_PREFIX"d"
#define PRIoVALUE PRI_VALUE_PREFIX"o"
#define PRIuVALUE PRI_VALUE_PREFIX"u"
#define PRIxVALUE PRI_VALUE_PREFIX"x"
#define PRIXVALUE PRI_VALUE_PREFIX"X"
#define PRIsVALUE PRI_VALUE_PREFIX"i" RUBY_PRI_VALUE_MARK
#endif
#ifndef PRI_VALUE_PREFIX
# define PRI_VALUE_PREFIX ""
#endif

#ifndef PRI_TIMET_PREFIX
# if SIZEOF_TIME_T == SIZEOF_INT
#  define PRI_TIMET_PREFIX
# elif SIZEOF_TIME_T == SIZEOF_LONG
#  define PRI_TIMET_PREFIX "l"
# elif SIZEOF_TIME_T == SIZEOF_LONG_LONG
#  define PRI_TIMET_PREFIX PRI_LL_PREFIX
# endif
#endif

#if defined PRI_PTRDIFF_PREFIX
#elif SIZEOF_PTRDIFF_T == SIZEOF_INT
# define PRI_PTRDIFF_PREFIX ""
#elif SIZEOF_PTRDIFF_T == SIZEOF_LONG
# define PRI_PTRDIFF_PREFIX "l"
#elif SIZEOF_PTRDIFF_T == SIZEOF_LONG_LONG
# define PRI_PTRDIFF_PREFIX PRI_LL_PREFIX
#endif
#define PRIdPTRDIFF PRI_PTRDIFF_PREFIX"d"
#define PRIiPTRDIFF PRI_PTRDIFF_PREFIX"i"
#define PRIoPTRDIFF PRI_PTRDIFF_PREFIX"o"
#define PRIuPTRDIFF PRI_PTRDIFF_PREFIX"u"
#define PRIxPTRDIFF PRI_PTRDIFF_PREFIX"x"
#define PRIXPTRDIFF PRI_PTRDIFF_PREFIX"X"

#if defined PRI_SIZE_PREFIX
#elif SIZEOF_SIZE_T == SIZEOF_INT
# define PRI_SIZE_PREFIX ""
#elif SIZEOF_SIZE_T == SIZEOF_LONG
# define PRI_SIZE_PREFIX "l"
#elif SIZEOF_SIZE_T == SIZEOF_LONG_LONG
# define PRI_SIZE_PREFIX PRI_LL_PREFIX
#endif
#define PRIdSIZE PRI_SIZE_PREFIX"d"
#define PRIiSIZE PRI_SIZE_PREFIX"i"
#define PRIoSIZE PRI_SIZE_PREFIX"o"
#define PRIuSIZE PRI_SIZE_PREFIX"u"
#define PRIxSIZE PRI_SIZE_PREFIX"x"
#define PRIXSIZE PRI_SIZE_PREFIX"X"

#ifdef __STDC__
# include <limits.h>
#else
# ifndef LONG_MAX
#  ifdef HAVE_LIMITS_H
#   include <limits.h>
#  else
    /* assuming 32bit(2's complement) long */
#   define LONG_MAX 2147483647
#  endif
# endif
# ifndef LONG_MIN
#  define LONG_MIN (-LONG_MAX-1)
# endif
# ifndef CHAR_BIT
#  define CHAR_BIT 8
# endif
#endif

#ifdef HAVE_LONG_LONG
# ifndef LLONG_MAX
#  ifdef LONG_LONG_MAX
#   define LLONG_MAX  LONG_LONG_MAX
#  else
#   ifdef _I64_MAX
#    define LLONG_MAX _I64_MAX
#   else
    /* assuming 64bit(2's complement) long long */
#    define LLONG_MAX 9223372036854775807LL
#   endif
#  endif
# endif
# ifndef LLONG_MIN
#  ifdef LONG_LONG_MIN
#   define LLONG_MIN  LONG_LONG_MIN
#  else
#   ifdef _I64_MIN
#    define LLONG_MIN _I64_MIN
#   else
#    define LLONG_MIN (-LLONG_MAX-1)
#   endif
#  endif
# endif
#endif

#define RUBY_FIXNUM_MAX (LONG_MAX>>1)
#define RUBY_FIXNUM_MIN RSHIFT((long)LONG_MIN,1)
#define FIXNUM_MAX RUBY_FIXNUM_MAX
#define FIXNUM_MIN RUBY_FIXNUM_MIN

#define RB_INT2FIX(i) (((VALUE)(i))<<1 | RUBY_FIXNUM_FLAG)
#define INT2FIX(i) RB_INT2FIX(i)
#define RB_LONG2FIX(i) RB_INT2FIX(i)
#define LONG2FIX(i) RB_INT2FIX(i)
#define rb_fix_new(v) RB_INT2FIX(v)
VALUE rb_int2inum(intptr_t);

#define rb_int_new(v) rb_int2inum(v)
VALUE rb_uint2inum(uintptr_t);

#define rb_uint_new(v) rb_uint2inum(v)

#ifdef HAVE_LONG_LONG
VALUE rb_ll2inum(LONG_LONG);
#define LL2NUM(v) rb_ll2inum(v)
VALUE rb_ull2inum(unsigned LONG_LONG);
#define ULL2NUM(v) rb_ull2inum(v)
#endif

#ifndef OFFT2NUM
#if SIZEOF_OFF_T > SIZEOF_LONG && defined(HAVE_LONG_LONG)
# define OFFT2NUM(v) LL2NUM(v)
#elif SIZEOF_OFF_T == SIZEOF_LONG
# define OFFT2NUM(v) LONG2NUM(v)
#else
# define OFFT2NUM(v) INT2NUM(v)
#endif
#endif

#if SIZEOF_SIZE_T > SIZEOF_LONG && defined(HAVE_LONG_LONG)
# define SIZET2NUM(v) ULL2NUM(v)
# define SSIZET2NUM(v) LL2NUM(v)
#elif SIZEOF_SIZE_T == SIZEOF_LONG
# define SIZET2NUM(v) ULONG2NUM(v)
# define SSIZET2NUM(v) LONG2NUM(v)
#else
# define SIZET2NUM(v) UINT2NUM(v)
# define SSIZET2NUM(v) INT2NUM(v)
#endif

#ifndef SIZE_MAX
# if SIZEOF_SIZE_T > SIZEOF_LONG && defined(HAVE_LONG_LONG)
#   define SIZE_MAX ULLONG_MAX
#   define SIZE_MIN ULLONG_MIN
# elif SIZEOF_SIZE_T == SIZEOF_LONG
#   define SIZE_MAX ULONG_MAX
#   define SIZE_MIN ULONG_MIN
# elif SIZEOF_SIZE_T == SIZEOF_INT
#   define SIZE_MAX UINT_MAX
#   define SIZE_MIN UINT_MIN
# else
#   define SIZE_MAX USHRT_MAX
#   define SIZE_MIN USHRT_MIN
# endif
#endif

#ifndef SSIZE_MAX
# if SIZEOF_SIZE_T > SIZEOF_LONG && defined(HAVE_LONG_LONG)
#   define SSIZE_MAX LLONG_MAX
#   define SSIZE_MIN LLONG_MIN
# elif SIZEOF_SIZE_T == SIZEOF_LONG
#   define SSIZE_MAX LONG_MAX
#   define SSIZE_MIN LONG_MIN
# elif SIZEOF_SIZE_T == SIZEOF_INT
#   define SSIZE_MAX INT_MAX
#   define SSIZE_MIN INT_MIN
# else
#   define SSIZE_MAX SHRT_MAX
#   define SSIZE_MIN SHRT_MIN
# endif
#endif

#if SIZEOF_INT < SIZEOF_VALUE
NORETURN(void rb_out_of_int(SIGNED_VALUE num));
#endif

#if SIZEOF_INT < SIZEOF_LONG
static inline int
rb_long2int_inline(long n)
{
    int i = (int)n;
    if ((long)i != n)
	rb_out_of_int(n);

    return i;
}
#define rb_long2int(n) rb_long2int_inline(n)
#else
#define rb_long2int(n) ((int)(n))
#endif

#ifndef PIDT2NUM
#define PIDT2NUM(v) LONG2NUM(v)
#endif
#ifndef NUM2PIDT
#define NUM2PIDT(v) NUM2LONG(v)
#endif
#ifndef UIDT2NUM
#define UIDT2NUM(v) LONG2NUM(v)
#endif
#ifndef NUM2UIDT
#define NUM2UIDT(v) NUM2LONG(v)
#endif
#ifndef GIDT2NUM
#define GIDT2NUM(v) LONG2NUM(v)
#endif
#ifndef NUM2GIDT
#define NUM2GIDT(v) NUM2LONG(v)
#endif
#ifndef NUM2MODET
#define NUM2MODET(v) NUM2INT(v)
#endif
#ifndef MODET2NUM
#define MODET2NUM(v) INT2NUM(v)
#endif

#define RB_FIX2LONG(x) ((long)RSHIFT((SIGNED_VALUE)(x),1))
static inline long
rb_fix2long(VALUE x)
{
    return RB_FIX2LONG(x);
}
#define RB_FIX2ULONG(x) ((unsigned long)RB_FIX2LONG(x))
static inline unsigned long
rb_fix2ulong(VALUE x)
{
    return RB_FIX2ULONG(x);
}
#define RB_FIXNUM_P(f) (((int)(SIGNED_VALUE)(f))&RUBY_FIXNUM_FLAG)
#define RB_POSFIXABLE(f) ((f) < RUBY_FIXNUM_MAX+1)
#define RB_NEGFIXABLE(f) ((f) >= RUBY_FIXNUM_MIN)
#define RB_FIXABLE(f) (RB_POSFIXABLE(f) && RB_NEGFIXABLE(f))
#define FIX2LONG(x) RB_FIX2LONG(x)
#define FIX2ULONG(x) RB_FIX2ULONG(x)
#define FIXNUM_P(f) RB_FIXNUM_P(f)
#define POSFIXABLE(f) RB_POSFIXABLE(f)
#define NEGFIXABLE(f) RB_NEGFIXABLE(f)
#define FIXABLE(f) RB_FIXABLE(f)

#define RB_IMMEDIATE_P(x) ((VALUE)(x) & RUBY_IMMEDIATE_MASK)
#define IMMEDIATE_P(x) RB_IMMEDIATE_P(x)

ID rb_sym2id(VALUE);
VALUE rb_id2sym(ID);
#define RB_STATIC_SYM_P(x) (((VALUE)(x)&~((~(VALUE)0)<<RUBY_SPECIAL_SHIFT)) == RUBY_SYMBOL_FLAG)
#define RB_DYNAMIC_SYM_P(x) (!RB_SPECIAL_CONST_P(x) && RB_BUILTIN_TYPE(x) == (RUBY_T_SYMBOL))
#define RB_SYMBOL_P(x) (RB_STATIC_SYM_P(x)||RB_DYNAMIC_SYM_P(x))
#define RB_ID2SYM(x) (rb_id2sym(x))
#define RB_SYM2ID(x) (rb_sym2id(x))
#define STATIC_SYM_P(x) RB_STATIC_SYM_P(x)
#define DYNAMIC_SYM_P(x) RB_DYNAMIC_SYM_P(x)
#define SYMBOL_P(x) RB_SYMBOL_P(x)
#define ID2SYM(x) RB_ID2SYM(x)
#define SYM2ID(x) RB_SYM2ID(x)

#ifndef USE_FLONUM
#if SIZEOF_VALUE >= SIZEOF_DOUBLE
#define USE_FLONUM 1
#else
#define USE_FLONUM 0
#endif
#endif

#if USE_FLONUM
#define RB_FLONUM_P(x) ((((int)(SIGNED_VALUE)(x))&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG)
#else
#define RB_FLONUM_P(x) 0
#endif
#define FLONUM_P(x) RB_FLONUM_P(x)

/* Module#methods, #singleton_methods and so on return Symbols */
#define USE_SYMBOL_AS_METHOD_NAME 1

/* special constants - i.e. non-zero and non-fixnum constants */
enum ruby_special_consts {
#if USE_FLONUM
    RUBY_Qfalse = 0x00,		/* ...0000 0000 */
    RUBY_Qtrue  = 0x14,		/* ...0001 0100 */
    RUBY_Qnil   = 0x08,		/* ...0000 1000 */
    RUBY_Qundef = 0x34,		/* ...0011 0100 */

    RUBY_IMMEDIATE_MASK = 0x07,
    RUBY_FIXNUM_FLAG    = 0x01,	/* ...xxxx xxx1 */
    RUBY_FLONUM_MASK    = 0x03,
    RUBY_FLONUM_FLAG    = 0x02,	/* ...xxxx xx10 */
    RUBY_SYMBOL_FLAG    = 0x0c,	/* ...0000 1100 */
#else
    RUBY_Qfalse = 0,		/* ...0000 0000 */
    RUBY_Qtrue  = 2,		/* ...0000 0010 */
    RUBY_Qnil   = 4,		/* ...0000 0100 */
    RUBY_Qundef = 6,		/* ...0000 0110 */

    RUBY_IMMEDIATE_MASK = 0x03,
    RUBY_FIXNUM_FLAG    = 0x01,	/* ...xxxx xxx1 */
    RUBY_FLONUM_MASK    = 0x00,	/* any values ANDed with FLONUM_MASK cannot be FLONUM_FLAG */
    RUBY_FLONUM_FLAG    = 0x02,
    RUBY_SYMBOL_FLAG    = 0x0e,	/* ...0000 1110 */
#endif
    RUBY_SPECIAL_SHIFT  = 8
};

#define RUBY_Qfalse ((VALUE)RUBY_Qfalse)
#define RUBY_Qtrue  ((VALUE)RUBY_Qtrue)
#define RUBY_Qnil   ((VALUE)RUBY_Qnil)
#define RUBY_Qundef ((VALUE)RUBY_Qundef)	/* undefined value for placeholder */
#define Qfalse RUBY_Qfalse
#define Qtrue  RUBY_Qtrue
#define Qnil   RUBY_Qnil
#define Qundef RUBY_Qundef
#define IMMEDIATE_MASK RUBY_IMMEDIATE_MASK
#define FIXNUM_FLAG RUBY_FIXNUM_FLAG
#if USE_FLONUM
#define FLONUM_MASK RUBY_FLONUM_MASK
#define FLONUM_FLAG RUBY_FLONUM_FLAG
#endif
#define SYMBOL_FLAG RUBY_SYMBOL_FLAG

#define RB_TEST(v) !(((VALUE)(v) & (VALUE)~RUBY_Qnil) == 0)
#define RB_NIL_P(v) !((VALUE)(v) != RUBY_Qnil)
#define RTEST(v) RB_TEST(v)
#define NIL_P(v) RB_NIL_P(v)

#define CLASS_OF(v) rb_class_of((VALUE)(v))

enum ruby_value_type {
    RUBY_T_NONE   = 0x00,

    RUBY_T_OBJECT = 0x01,
    RUBY_T_CLASS  = 0x02,
    RUBY_T_MODULE = 0x03,
    RUBY_T_FLOAT  = 0x04,
    RUBY_T_STRING = 0x05,
    RUBY_T_REGEXP = 0x06,
    RUBY_T_ARRAY  = 0x07,
    RUBY_T_HASH   = 0x08,
    RUBY_T_STRUCT = 0x09,
    RUBY_T_BIGNUM = 0x0a,
    RUBY_T_FILE   = 0x0b,
    RUBY_T_DATA   = 0x0c,
    RUBY_T_MATCH  = 0x0d,
    RUBY_T_COMPLEX  = 0x0e,
    RUBY_T_RATIONAL = 0x0f,

    RUBY_T_NIL    = 0x11,
    RUBY_T_TRUE   = 0x12,
    RUBY_T_FALSE  = 0x13,
    RUBY_T_SYMBOL = 0x14,
    RUBY_T_FIXNUM = 0x15,
    RUBY_T_UNDEF  = 0x16,

    RUBY_T_IMEMO  = 0x1a, /*!< @see imemo_type */
    RUBY_T_NODE   = 0x1b,
    RUBY_T_ICLASS = 0x1c,
    RUBY_T_ZOMBIE = 0x1d,
    RUBY_T_MOVED  = 0x1e,

    RUBY_T_MASK   = 0x1f
};

#define T_NONE   RUBY_T_NONE
#define T_NIL    RUBY_T_NIL
#define T_OBJECT RUBY_T_OBJECT
#define T_CLASS  RUBY_T_CLASS
#define T_ICLASS RUBY_T_ICLASS
#define T_MODULE RUBY_T_MODULE
#define T_FLOAT  RUBY_T_FLOAT
#define T_STRING RUBY_T_STRING
#define T_REGEXP RUBY_T_REGEXP
#define T_ARRAY  RUBY_T_ARRAY
#define T_HASH   RUBY_T_HASH
#define T_STRUCT RUBY_T_STRUCT
#define T_BIGNUM RUBY_T_BIGNUM
#define T_FILE   RUBY_T_FILE
#define T_FIXNUM RUBY_T_FIXNUM
#define T_TRUE   RUBY_T_TRUE
#define T_FALSE  RUBY_T_FALSE
#define T_DATA   RUBY_T_DATA
#define T_MATCH  RUBY_T_MATCH
#define T_SYMBOL RUBY_T_SYMBOL
#define T_RATIONAL RUBY_T_RATIONAL
#define T_COMPLEX RUBY_T_COMPLEX
#define T_IMEMO  RUBY_T_IMEMO
#define T_UNDEF  RUBY_T_UNDEF
#define T_NODE   RUBY_T_NODE
#define T_ZOMBIE RUBY_T_ZOMBIE
#define T_MOVED RUBY_T_MOVED
#define T_MASK   RUBY_T_MASK

#define RB_BUILTIN_TYPE(x) (int)(((struct RBasic*)(x))->flags & RUBY_T_MASK)
#define BUILTIN_TYPE(x) RB_BUILTIN_TYPE(x)

static inline int rb_type(VALUE obj);
#define TYPE(x) rb_type((VALUE)(x))

#define RB_FLOAT_TYPE_P(obj) (\
	RB_FLONUM_P(obj) || \
	(!RB_SPECIAL_CONST_P(obj) && RB_BUILTIN_TYPE(obj) == RUBY_T_FLOAT))

#define RB_TYPE_P(obj, type) ( \
	((type) == RUBY_T_FIXNUM) ? RB_FIXNUM_P(obj) : \
	((type) == RUBY_T_TRUE) ? ((obj) == RUBY_Qtrue) : \
	((type) == RUBY_T_FALSE) ? ((obj) == RUBY_Qfalse) : \
	((type) == RUBY_T_NIL) ? ((obj) == RUBY_Qnil) : \
	((type) == RUBY_T_UNDEF) ? ((obj) == RUBY_Qundef) : \
	((type) == RUBY_T_SYMBOL) ? RB_SYMBOL_P(obj) : \
	((type) == RUBY_T_FLOAT) ? RB_FLOAT_TYPE_P(obj) : \
	(!RB_SPECIAL_CONST_P(obj) && RB_BUILTIN_TYPE(obj) == (type)))

#ifdef __GNUC__
#define RB_GC_GUARD(v) \
    (*__extension__ ({ \
	volatile VALUE *rb_gc_guarded_ptr = &(v); \
	__asm__("" : : "m"(rb_gc_guarded_ptr)); \
	rb_gc_guarded_ptr; \
    }))
#elif defined _MSC_VER
#pragma optimize("", off)
static inline volatile VALUE *rb_gc_guarded_ptr(volatile VALUE *ptr) {return ptr;}
#pragma optimize("", on)
#define RB_GC_GUARD(v) (*rb_gc_guarded_ptr(&(v)))
#else
volatile VALUE *rb_gc_guarded_ptr_val(volatile VALUE *ptr, VALUE val);
#define HAVE_RB_GC_GUARDED_PTR_VAL 1
#define RB_GC_GUARD(v) (*rb_gc_guarded_ptr_val(&(v),(v)))
#endif

#ifdef __GNUC__
#define RB_UNUSED_VAR(x) x __attribute__ ((unused))
#else
#define RB_UNUSED_VAR(x) x
#endif

void rb_check_type(VALUE,int);
#define Check_Type(v,t) rb_check_type((VALUE)(v),(t))

VALUE rb_str_to_str(VALUE);
VALUE rb_string_value(volatile VALUE*);
char *rb_string_value_ptr(volatile VALUE*);
char *rb_string_value_cstr(volatile VALUE*);

#define StringValue(v) rb_string_value(&(v))
#define StringValuePtr(v) rb_string_value_ptr(&(v))
#define StringValueCStr(v) rb_string_value_cstr(&(v))

void rb_check_safe_obj(VALUE);
#define SafeStringValue(v) StringValue(v)
#if GCC_VERSION_SINCE(4,4,0)
void rb_check_safe_str(VALUE) __attribute__((error("rb_check_safe_str() and Check_SafeStr() are obsolete; use StringValue() instead")));
# define Check_SafeStr(v) rb_check_safe_str((VALUE)(v))
#else
# define rb_check_safe_str(x) [<"rb_check_safe_str() is obsolete; use StringValue() instead">]
# define Check_SafeStr(v) [<"Check_SafeStr() is obsolete; use StringValue() instead">]
#endif

VALUE rb_str_export(VALUE);
#define ExportStringValue(v) do {\
    StringValue(v);\
   (v) = rb_str_export(v);\
} while (0)
VALUE rb_str_export_locale(VALUE);

VALUE rb_get_path(VALUE);
#define FilePathValue(v) (RB_GC_GUARD(v) = rb_get_path(v))

VALUE rb_get_path_no_checksafe(VALUE);
#define FilePathStringValue(v) ((v) = rb_get_path(v))

/* Remove in 3.0 */
#define RUBY_SAFE_LEVEL_MAX 1
void rb_secure(int);
int rb_safe_level(void);
void rb_set_safe_level(int);
#if GCC_VERSION_SINCE(4,4,0)
int ruby_safe_level_2_error(void) __attribute__((error("$SAFE=2 to 4 are obsolete")));
int ruby_safe_level_2_warning(void) __attribute__((const,warning("$SAFE=2 to 4 are obsolete")));
# ifdef RUBY_EXPORT
#   define ruby_safe_level_2_warning() ruby_safe_level_2_error()
# endif
# if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
#  define RUBY_SAFE_LEVEL_INVALID_P(level) \
    __extension__(\
	__builtin_choose_expr(\
	    __builtin_constant_p(level), \
	    ((level) < 0 || RUBY_SAFE_LEVEL_MAX < (level)), 0))
#  define RUBY_SAFE_LEVEL_CHECK(level, type) \
    __extension__(__builtin_choose_expr(RUBY_SAFE_LEVEL_INVALID_P(level), ruby_safe_level_2_##type(), (level)))
# else
/* in gcc 4.8 or earlier, __builtin_choose_expr() does not consider
 * __builtin_constant_p(variable) a constant expression.
 */
#  define RUBY_SAFE_LEVEL_INVALID_P(level) \
    __extension__(__builtin_constant_p(level) && \
		  ((level) < 0 || RUBY_SAFE_LEVEL_MAX < (level)))
#  define RUBY_SAFE_LEVEL_CHECK(level, type) \
    (RUBY_SAFE_LEVEL_INVALID_P(level) ? ruby_safe_level_2_##type() : (level))
# endif
# define rb_secure(level) rb_secure(RUBY_SAFE_LEVEL_CHECK(level, warning))
# define rb_set_safe_level(level) rb_set_safe_level(RUBY_SAFE_LEVEL_CHECK(level, error))
#endif
void rb_set_safe_level_force(int);
void rb_secure_update(VALUE);
NORETURN(void rb_insecure_operation(void));

VALUE rb_errinfo(void);
void rb_set_errinfo(VALUE);

long rb_num2long(VALUE);
unsigned long rb_num2ulong(VALUE);
static inline long
rb_num2long_inline(VALUE x)
{
    if (RB_FIXNUM_P(x))
	return RB_FIX2LONG(x);
    else
	return rb_num2long(x);
}
#define RB_NUM2LONG(x) rb_num2long_inline(x)
#define NUM2LONG(x) RB_NUM2LONG(x)
static inline unsigned long
rb_num2ulong_inline(VALUE x)
{
    if (RB_FIXNUM_P(x))
	return RB_FIX2ULONG(x);
    else
	return rb_num2ulong(x);
}
#define RB_NUM2ULONG(x) rb_num2ulong_inline(x)
#define NUM2ULONG(x) RB_NUM2ULONG(x)
#if SIZEOF_INT < SIZEOF_LONG
long rb_num2int(VALUE);
long rb_fix2int(VALUE);
#define RB_FIX2INT(x) ((int)rb_fix2int((VALUE)(x)))

static inline int
rb_num2int_inline(VALUE x)
{
    if (RB_FIXNUM_P(x))
	return (int)rb_fix2int(x);
    else
	return (int)rb_num2int(x);
}
#define RB_NUM2INT(x) rb_num2int_inline(x)

unsigned long rb_num2uint(VALUE);
#define RB_NUM2UINT(x) ((unsigned int)rb_num2uint(x))
unsigned long rb_fix2uint(VALUE);
#define RB_FIX2UINT(x) ((unsigned int)rb_fix2uint(x))
#else /* SIZEOF_INT < SIZEOF_LONG */
#define RB_NUM2INT(x) ((int)RB_NUM2LONG(x))
#define RB_NUM2UINT(x) ((unsigned int)RB_NUM2ULONG(x))
#define RB_FIX2INT(x) ((int)RB_FIX2LONG(x))
#define RB_FIX2UINT(x) ((unsigned int)RB_FIX2ULONG(x))
#endif /* SIZEOF_INT < SIZEOF_LONG */
#define NUM2INT(x)  RB_NUM2INT(x)
#define NUM2UINT(x) RB_NUM2UINT(x)
#define FIX2INT(x)  RB_FIX2INT(x)
#define FIX2UINT(x) RB_FIX2UINT(x)

short rb_num2short(VALUE);
unsigned short rb_num2ushort(VALUE);
short rb_fix2short(VALUE);
unsigned short rb_fix2ushort(VALUE);
#define RB_FIX2SHORT(x) (rb_fix2short((VALUE)(x)))
#define FIX2SHORT(x) RB_FIX2SHORT(x)
static inline short
rb_num2short_inline(VALUE x)
{
    if (RB_FIXNUM_P(x))
	return rb_fix2short(x);
    else
	return rb_num2short(x);
}

#define RB_NUM2SHORT(x) rb_num2short_inline(x)
#define RB_NUM2USHORT(x) rb_num2ushort(x)
#define NUM2SHORT(x) RB_NUM2SHORT(x)
#define NUM2USHORT(x) RB_NUM2USHORT(x)

#ifdef HAVE_LONG_LONG
LONG_LONG rb_num2ll(VALUE);
unsigned LONG_LONG rb_num2ull(VALUE);
static inline LONG_LONG
rb_num2ll_inline(VALUE x)
{
    if (RB_FIXNUM_P(x))
	return RB_FIX2LONG(x);
    else
	return rb_num2ll(x);
}
# define RB_NUM2LL(x) rb_num2ll_inline(x)
# define RB_NUM2ULL(x) rb_num2ull(x)
# define NUM2LL(x) RB_NUM2LL(x)
# define NUM2ULL(x) RB_NUM2ULL(x)
#endif

#if !defined(NUM2OFFT)
# if defined(HAVE_LONG_LONG) && SIZEOF_OFF_T > SIZEOF_LONG
#  define NUM2OFFT(x) ((off_t)NUM2LL(x))
# else
#  define NUM2OFFT(x) NUM2LONG(x)
# endif
#endif

#if defined(HAVE_LONG_LONG) && SIZEOF_SIZE_T > SIZEOF_LONG
# define NUM2SIZET(x) ((size_t)NUM2ULL(x))
# define NUM2SSIZET(x) ((ssize_t)NUM2LL(x))
#else
# define NUM2SIZET(x) NUM2ULONG(x)
# define NUM2SSIZET(x) NUM2LONG(x)
#endif

double rb_num2dbl(VALUE);
#define NUM2DBL(x) rb_num2dbl((VALUE)(x))

VALUE rb_uint2big(uintptr_t);
VALUE rb_int2big(intptr_t);

VALUE rb_newobj(void);
VALUE rb_newobj_of(VALUE, VALUE);
VALUE rb_obj_setup(VALUE obj, VALUE klass, VALUE type);
#define RB_NEWOBJ(obj,type) type *(obj) = (type*)rb_newobj()
#define RB_NEWOBJ_OF(obj,type,klass,flags) type *(obj) = (type*)rb_newobj_of(klass, flags)
#define NEWOBJ(obj,type) RB_NEWOBJ(obj,type)
#define NEWOBJ_OF(obj,type,klass,flags) RB_NEWOBJ_OF(obj,type,klass,flags) /* core has special NEWOBJ_OF() in internal.h */
#define OBJSETUP(obj,c,t) rb_obj_setup(obj, c, t) /* use NEWOBJ_OF instead of NEWOBJ()+OBJSETUP() */
#define CLONESETUP(clone,obj) rb_clone_setup(clone,obj)
#define DUPSETUP(dup,obj) rb_dup_setup(dup,obj)

#ifndef USE_RGENGC
#define USE_RGENGC 1
#ifndef USE_RINCGC
#define USE_RINCGC 1
#endif
#endif

#if USE_RGENGC == 0
#define USE_RINCGC 0
#endif

#ifndef RGENGC_WB_PROTECTED_ARRAY
#define RGENGC_WB_PROTECTED_ARRAY 1
#endif
#ifndef RGENGC_WB_PROTECTED_HASH
#define RGENGC_WB_PROTECTED_HASH 1
#endif
#ifndef RGENGC_WB_PROTECTED_STRUCT
#define RGENGC_WB_PROTECTED_STRUCT 1
#endif
#ifndef RGENGC_WB_PROTECTED_STRING
#define RGENGC_WB_PROTECTED_STRING 1
#endif
#ifndef RGENGC_WB_PROTECTED_OBJECT
#define RGENGC_WB_PROTECTED_OBJECT 1
#endif
#ifndef RGENGC_WB_PROTECTED_REGEXP
#define RGENGC_WB_PROTECTED_REGEXP 1
#endif
#ifndef RGENGC_WB_PROTECTED_CLASS
#define RGENGC_WB_PROTECTED_CLASS 1
#endif
#ifndef RGENGC_WB_PROTECTED_FLOAT
#define RGENGC_WB_PROTECTED_FLOAT 1
#endif
#ifndef RGENGC_WB_PROTECTED_COMPLEX
#define RGENGC_WB_PROTECTED_COMPLEX 1
#endif
#ifndef RGENGC_WB_PROTECTED_RATIONAL
#define RGENGC_WB_PROTECTED_RATIONAL 1
#endif
#ifndef RGENGC_WB_PROTECTED_BIGNUM
#define RGENGC_WB_PROTECTED_BIGNUM 1
#endif
#ifndef RGENGC_WB_PROTECTED_NODE_CREF
#define RGENGC_WB_PROTECTED_NODE_CREF 1
#endif

#ifdef __GNUC__
__extension__
#endif
enum ruby_fl_type {
    RUBY_FL_WB_PROTECTED = (1<<5),
    RUBY_FL_PROMOTED0 = (1<<5),
    RUBY_FL_PROMOTED1 = (1<<6),
    RUBY_FL_PROMOTED  = RUBY_FL_PROMOTED0|RUBY_FL_PROMOTED1,
    RUBY_FL_FINALIZE  = (1<<7),
    RUBY_FL_TAINT     = (1<<8),
    RUBY_FL_UNTRUSTED = RUBY_FL_TAINT,
    RUBY_FL_SEEN_OBJ_ID = (1<<9),
    RUBY_FL_EXIVAR    = (1<<10),
    RUBY_FL_FREEZE    = (1<<11),

    RUBY_FL_USHIFT    = 12,

#define RUBY_FL_USER_N(n) RUBY_FL_USER##n = (1<<(RUBY_FL_USHIFT+n))
    RUBY_FL_USER_N(0),
    RUBY_FL_USER_N(1),
    RUBY_FL_USER_N(2),
    RUBY_FL_USER_N(3),
    RUBY_FL_USER_N(4),
    RUBY_FL_USER_N(5),
    RUBY_FL_USER_N(6),
    RUBY_FL_USER_N(7),
    RUBY_FL_USER_N(8),
    RUBY_FL_USER_N(9),
    RUBY_FL_USER_N(10),
    RUBY_FL_USER_N(11),
    RUBY_FL_USER_N(12),
    RUBY_FL_USER_N(13),
    RUBY_FL_USER_N(14),
    RUBY_FL_USER_N(15),
    RUBY_FL_USER_N(16),
    RUBY_FL_USER_N(17),
    RUBY_FL_USER_N(18),
#if defined ENUM_OVER_INT || SIZEOF_INT*CHAR_BIT>12+19+1
    RUBY_FL_USER_N(19),
#else
#define RUBY_FL_USER19 (((VALUE)1)<<(RUBY_FL_USHIFT+19))
#endif

    RUBY_ELTS_SHARED = RUBY_FL_USER2,
    RUBY_FL_DUPPED = (RUBY_T_MASK|RUBY_FL_EXIVAR|RUBY_FL_TAINT),
    RUBY_FL_SINGLETON = RUBY_FL_USER0
};

struct RUBY_ALIGNAS(SIZEOF_VALUE) RBasic {
    VALUE flags;
    const VALUE klass;
};

VALUE rb_obj_hide(VALUE obj);
VALUE rb_obj_reveal(VALUE obj, VALUE klass); /* do not use this API to change klass information */

#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
# define RB_OBJ_WB_UNPROTECT_FOR(type, obj) \
    __extension__( \
	__builtin_choose_expr( \
	    RGENGC_WB_PROTECTED_##type, \
	    OBJ_WB_UNPROTECT((VALUE)(obj)), ((VALUE)(obj))))
#else
# define RB_OBJ_WB_UNPROTECT_FOR(type, obj) \
    (RGENGC_WB_PROTECTED_##type ? \
     OBJ_WB_UNPROTECT((VALUE)(obj)) : ((VALUE)(obj)))
#endif

#define RBASIC_CLASS(obj) (RBASIC(obj)->klass)

#define RVALUE_EMBED_LEN_MAX RVALUE_EMBED_LEN_MAX
enum ruby_rvalue_flags {
    RVALUE_EMBED_LEN_MAX = 3,
};

#define ROBJECT_EMBED_LEN_MAX ROBJECT_EMBED_LEN_MAX
#define ROBJECT_EMBED ROBJECT_EMBED
enum ruby_robject_flags {
    ROBJECT_EMBED_LEN_MAX = RVALUE_EMBED_LEN_MAX,
    ROBJECT_EMBED = RUBY_FL_USER1,

    ROBJECT_ENUM_END
};

struct RObject {
    struct RBasic basic;
    union {
	struct {
	    uint32_t numiv;
	    VALUE *ivptr;
            void *iv_index_tbl; /* shortcut for RCLASS_IV_INDEX_TBL(rb_obj_class(obj)) */
	} heap;
	VALUE ary[ROBJECT_EMBED_LEN_MAX];
    } as;
};
#define ROBJECT_NUMIV(o) \
    ((RBASIC(o)->flags & ROBJECT_EMBED) ? \
     ROBJECT_EMBED_LEN_MAX : \
     ROBJECT(o)->as.heap.numiv)
#define ROBJECT_IVPTR(o) \
    ((RBASIC(o)->flags & ROBJECT_EMBED) ? \
     ROBJECT(o)->as.ary : \
     ROBJECT(o)->as.heap.ivptr)
#define ROBJECT_IV_INDEX_TBL(o) \
    ((RBASIC(o)->flags & ROBJECT_EMBED) ? \
     RCLASS_IV_INDEX_TBL(rb_obj_class(o)) : \
     ROBJECT(o)->as.heap.iv_index_tbl)

#define RCLASS_SUPER(c) rb_class_get_superclass(c)
#define RMODULE_IV_TBL(m) RCLASS_IV_TBL(m)
#define RMODULE_CONST_TBL(m) RCLASS_CONST_TBL(m)
#define RMODULE_M_TBL(m) RCLASS_M_TBL(m)
#define RMODULE_SUPER(m) RCLASS_SUPER(m)
#define RMODULE_IS_OVERLAID RMODULE_IS_OVERLAID
#define RMODULE_IS_REFINEMENT RMODULE_IS_REFINEMENT
#define RMODULE_INCLUDED_INTO_REFINEMENT RMODULE_INCLUDED_INTO_REFINEMENT
enum ruby_rmodule_flags {
    RMODULE_IS_OVERLAID = RUBY_FL_USER2,
    RMODULE_IS_REFINEMENT = RUBY_FL_USER3,
    RMODULE_INCLUDED_INTO_REFINEMENT = RUBY_FL_USER4,

    RMODULE_ENUM_END
};

PUREFUNC(double rb_float_value(VALUE));
VALUE rb_float_new(double);
VALUE rb_float_new_in_heap(double);

#define RFLOAT_VALUE(v) rb_float_value(v)
#define DBL2NUM(dbl)  rb_float_new(dbl)

#define RUBY_ELTS_SHARED RUBY_ELTS_SHARED
#define ELTS_SHARED RUBY_ELTS_SHARED

#define RSTRING_NOEMBED RSTRING_NOEMBED
#define RSTRING_EMBED_LEN_MASK RSTRING_EMBED_LEN_MASK
#define RSTRING_EMBED_LEN_SHIFT RSTRING_EMBED_LEN_SHIFT
#define RSTRING_EMBED_LEN_MAX RSTRING_EMBED_LEN_MAX
#define RSTRING_FSTR RSTRING_FSTR
enum ruby_rstring_flags {
    RSTRING_NOEMBED = RUBY_FL_USER1,
    RSTRING_EMBED_LEN_MASK = (RUBY_FL_USER2|RUBY_FL_USER3|RUBY_FL_USER4|
			      RUBY_FL_USER5|RUBY_FL_USER6),
    RSTRING_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+2),
    RSTRING_EMBED_LEN_MAX = (int)((sizeof(VALUE)*RVALUE_EMBED_LEN_MAX)/sizeof(char)-1),
    RSTRING_FSTR = RUBY_FL_USER17,

    RSTRING_ENUM_END
};

struct RString {
    struct RBasic basic;
    union {
	struct {
	    long len;
	    char *ptr;
	    union {
		long capa;
		VALUE shared;
	    } aux;
	} heap;
	char ary[RSTRING_EMBED_LEN_MAX + 1];
    } as;
};
#define RSTRING_EMBED_LEN(str) \
     (long)((RBASIC(str)->flags >> RSTRING_EMBED_LEN_SHIFT) & \
            (RSTRING_EMBED_LEN_MASK >> RSTRING_EMBED_LEN_SHIFT))
#define RSTRING_LEN(str) \
    (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
     RSTRING_EMBED_LEN(str) : \
     RSTRING(str)->as.heap.len)
#define RSTRING_PTR(str) \
    (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
     RSTRING(str)->as.ary : \
     RSTRING(str)->as.heap.ptr)
#define RSTRING_END(str) \
    (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
     (RSTRING(str)->as.ary + RSTRING_EMBED_LEN(str)) : \
     (RSTRING(str)->as.heap.ptr + RSTRING(str)->as.heap.len))
#define RSTRING_LENINT(str) rb_long2int(RSTRING_LEN(str))
#define RSTRING_GETMEM(str, ptrvar, lenvar) \
    (!(RBASIC(str)->flags & RSTRING_NOEMBED) ? \
     ((ptrvar) = RSTRING(str)->as.ary, (lenvar) = RSTRING_EMBED_LEN(str)) : \
     ((ptrvar) = RSTRING(str)->as.heap.ptr, (lenvar) = RSTRING(str)->as.heap.len))

#ifndef USE_TRANSIENT_HEAP
#define USE_TRANSIENT_HEAP 1
#endif

enum ruby_rarray_flags {
    RARRAY_EMBED_LEN_MAX = RVALUE_EMBED_LEN_MAX,
    RARRAY_EMBED_FLAG = RUBY_FL_USER1,
    /* RUBY_FL_USER2 is for ELTS_SHARED */
    RARRAY_EMBED_LEN_MASK = (RUBY_FL_USER4|RUBY_FL_USER3),
    RARRAY_EMBED_LEN_SHIFT = (RUBY_FL_USHIFT+3),

#if USE_TRANSIENT_HEAP
    RARRAY_TRANSIENT_FLAG = RUBY_FL_USER13,
#define RARRAY_TRANSIENT_FLAG RARRAY_TRANSIENT_FLAG
#else
#define RARRAY_TRANSIENT_FLAG 0
#endif

    RARRAY_ENUM_END
};
#define RARRAY_EMBED_FLAG (VALUE)RARRAY_EMBED_FLAG
#define RARRAY_EMBED_LEN_MASK (VALUE)RARRAY_EMBED_LEN_MASK
#define RARRAY_EMBED_LEN_MAX RARRAY_EMBED_LEN_MAX
#define RARRAY_EMBED_LEN_SHIFT RARRAY_EMBED_LEN_SHIFT

struct RArray {
    struct RBasic basic;
    union {
	struct {
	    long len;
	    union {
		long capa;
#if defined(__clang__)      /* <- clang++ is sane */ || \
    !defined(__cplusplus)   /* <- C99 is sane */     || \
    (__cplusplus > 199711L) /* <- C++11 is sane */
                const
#endif
                VALUE shared_root;
	    } aux;
	    const VALUE *ptr;
	} heap;
	const VALUE ary[RARRAY_EMBED_LEN_MAX];
    } as;
};
#define RARRAY_EMBED_LEN(a) \
    (long)((RBASIC(a)->flags >> RARRAY_EMBED_LEN_SHIFT) & \
	   (RARRAY_EMBED_LEN_MASK >> RARRAY_EMBED_LEN_SHIFT))
#define RARRAY_LEN(a) rb_array_len(a)
#define RARRAY_LENINT(ary) rb_long2int(RARRAY_LEN(ary))
#define RARRAY_CONST_PTR(a) rb_array_const_ptr(a)
#define RARRAY_CONST_PTR_TRANSIENT(a) rb_array_const_ptr_transient(a)

#if USE_TRANSIENT_HEAP
#define RARRAY_TRANSIENT_P(ary) FL_TEST_RAW((ary), RARRAY_TRANSIENT_FLAG)
#else
#define RARRAY_TRANSIENT_P(ary) 0
#endif

#define RARRAY_PTR_USE_START_TRANSIENT(a) rb_array_ptr_use_start(a, 1)
#define RARRAY_PTR_USE_END_TRANSIENT(a) rb_array_ptr_use_end(a, 1)

#define RARRAY_PTR_USE_TRANSIENT(ary, ptr_name, expr) do { \
    const VALUE _ary = (ary); \
    VALUE *ptr_name = (VALUE *)RARRAY_PTR_USE_START_TRANSIENT(_ary); \
    expr; \
    RARRAY_PTR_USE_END_TRANSIENT(_ary); \
} while (0)

#define RARRAY_PTR_USE_START(a) rb_array_ptr_use_start(a, 0)
#define RARRAY_PTR_USE_END(a) rb_array_ptr_use_end(a, 0)

#define RARRAY_PTR_USE(ary, ptr_name, expr) do { \
    const VALUE _ary = (ary); \
    VALUE *ptr_name = (VALUE *)RARRAY_PTR_USE_START(_ary); \
    expr; \
    RARRAY_PTR_USE_END(_ary); \
} while (0)

#define RARRAY_AREF(a, i) (RARRAY_CONST_PTR_TRANSIENT(a)[i])
#define RARRAY_ASET(a, i, v) do { \
    const VALUE _ary = (a); \
    const VALUE _v = (v); \
    VALUE *ptr = (VALUE *)RARRAY_PTR_USE_START_TRANSIENT(_ary); \
    RB_OBJ_WRITE(_ary, &ptr[i], _v); \
    RARRAY_PTR_USE_END_TRANSIENT(_ary); \
} while (0)

#define RARRAY_PTR(a) ((VALUE *)RARRAY_CONST_PTR(RB_OBJ_WB_UNPROTECT_FOR(ARRAY, a)))

struct RRegexp {
    struct RBasic basic;
    struct re_pattern_buffer *ptr;
    const VALUE src;
    unsigned long usecnt;
};
#define RREGEXP_PTR(r) (RREGEXP(r)->ptr)
#define RREGEXP_SRC(r) (RREGEXP(r)->src)
#define RREGEXP_SRC_PTR(r) RSTRING_PTR(RREGEXP(r)->src)
#define RREGEXP_SRC_LEN(r) RSTRING_LEN(RREGEXP(r)->src)
#define RREGEXP_SRC_END(r) RSTRING_END(RREGEXP(r)->src)

/* RHash is defined at internal.h */
size_t rb_hash_size_num(VALUE hash);

#define RHASH_TBL(h) rb_hash_tbl(h, __FILE__, __LINE__)
#define RHASH_ITER_LEV(h) rb_hash_iter_lev(h)
#define RHASH_IFNONE(h) rb_hash_ifnone(h)
#define RHASH_SIZE(h) rb_hash_size_num(h)
#define RHASH_EMPTY_P(h) (RHASH_SIZE(h) == 0)
#define RHASH_SET_IFNONE(h, ifnone) rb_hash_set_ifnone((VALUE)h, ifnone)

struct RFile {
    struct RBasic basic;
    struct rb_io_t *fptr;
};

struct RData {
    struct RBasic basic;
    void (*dmark)(void*);
    void (*dfree)(void*);
    void *data;
};

typedef struct rb_data_type_struct rb_data_type_t;

struct rb_data_type_struct {
    const char *wrap_struct_name;
    struct {
	void (*dmark)(void*);
	void (*dfree)(void*);
	size_t (*dsize)(const void *);
        void (*dcompact)(void*);
        void *reserved[1]; /* For future extension.
			      This array *must* be filled with ZERO. */
    } function;
    const rb_data_type_t *parent;
    void *data;        /* This area can be used for any purpose
                          by a programmer who define the type. */
    VALUE flags;       /* RUBY_FL_WB_PROTECTED */
};

#define HAVE_TYPE_RB_DATA_TYPE_T 1
#define HAVE_RB_DATA_TYPE_T_FUNCTION 1
#define HAVE_RB_DATA_TYPE_T_PARENT 1

struct RTypedData {
    struct RBasic basic;
    const rb_data_type_t *type;
    VALUE typed_flag; /* 1 or not */
    void *data;
};

#define DATA_PTR(dta) (RDATA(dta)->data)

#define RTYPEDDATA_P(v)    (RTYPEDDATA(v)->typed_flag == 1)
#define RTYPEDDATA_TYPE(v) (RTYPEDDATA(v)->type)
#define RTYPEDDATA_DATA(v) (RTYPEDDATA(v)->data)

/*
#define RUBY_DATA_FUNC(func) ((void (*)(void*))(func))
*/
typedef void (*RUBY_DATA_FUNC)(void*);

#ifndef RUBY_UNTYPED_DATA_WARNING
# if defined RUBY_EXPORT
#   define RUBY_UNTYPED_DATA_WARNING 1
# else
#   define RUBY_UNTYPED_DATA_WARNING 0
# endif
#endif
VALUE rb_data_object_wrap(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC);
VALUE rb_data_object_zalloc(VALUE,size_t,RUBY_DATA_FUNC,RUBY_DATA_FUNC);
VALUE rb_data_typed_object_wrap(VALUE klass, void *datap, const rb_data_type_t *);
VALUE rb_data_typed_object_zalloc(VALUE klass, size_t size, const rb_data_type_t *type);
int rb_typeddata_inherited_p(const rb_data_type_t *child, const rb_data_type_t *parent);
int rb_typeddata_is_kind_of(VALUE, const rb_data_type_t *);
void *rb_check_typeddata(VALUE, const rb_data_type_t *);
#define Check_TypedStruct(v,t) rb_check_typeddata((VALUE)(v),(t))
#define RUBY_DEFAULT_FREE ((RUBY_DATA_FUNC)-1)
#define RUBY_NEVER_FREE   ((RUBY_DATA_FUNC)0)
#define RUBY_TYPED_DEFAULT_FREE RUBY_DEFAULT_FREE
#define RUBY_TYPED_NEVER_FREE   RUBY_NEVER_FREE

/* bits for rb_data_type_struct::flags */
#define RUBY_TYPED_FREE_IMMEDIATELY  1 /* TYPE field */
#define RUBY_TYPED_WB_PROTECTED      RUBY_FL_WB_PROTECTED /* THIS FLAG DEPENDS ON Ruby version */
#define RUBY_TYPED_PROMOTED1         RUBY_FL_PROMOTED1    /* THIS FLAG DEPENDS ON Ruby version */

#define Data_Wrap_Struct(klass,mark,free,sval)\
    rb_data_object_wrap((klass),(sval),(RUBY_DATA_FUNC)(mark),(RUBY_DATA_FUNC)(free))

#define Data_Make_Struct0(result, klass, type, size, mark, free, sval) \
    VALUE result = rb_data_object_zalloc((klass), (size), \
					 (RUBY_DATA_FUNC)(mark), \
					 (RUBY_DATA_FUNC)(free)); \
    (void)((sval) = (type *)DATA_PTR(result));

#ifdef __GNUC__
#define Data_Make_Struct(klass,type,mark,free,sval) ({\
    Data_Make_Struct0(data_struct_obj, klass, type, sizeof(type), mark, free, sval); \
    data_struct_obj; \
})
#else
#define Data_Make_Struct(klass,type,mark,free,sval) (\
    rb_data_object_make((klass),(RUBY_DATA_FUNC)(mark),(RUBY_DATA_FUNC)(free),(void **)&(sval),sizeof(type)) \
)
#endif

#define TypedData_Wrap_Struct(klass,data_type,sval)\
  rb_data_typed_object_wrap((klass),(sval),(data_type))

#define TypedData_Make_Struct0(result, klass, type, size, data_type, sval) \
    VALUE result = rb_data_typed_object_zalloc(klass, size, data_type); \
    (void)((sval) = (type *)DATA_PTR(result));

#ifdef __GNUC__
#define TypedData_Make_Struct(klass, type, data_type, sval) ({\
    TypedData_Make_Struct0(data_struct_obj, klass, type, sizeof(type), data_type, sval); \
    data_struct_obj; \
})
#else
#define TypedData_Make_Struct(klass, type, data_type, sval) (\
    rb_data_typed_object_make((klass),(data_type),(void **)&(sval),sizeof(type)) \
)
#endif

#define Data_Get_Struct(obj,type,sval) \
    ((sval) = (type*)rb_data_object_get(obj))

#define TypedData_Get_Struct(obj,type,data_type,sval) \
    ((sval) = (type*)rb_check_typeddata((obj), (data_type)))

#define RSTRUCT_LEN(st)         NUM2LONG(rb_struct_size(st))
#define RSTRUCT_PTR(st)         rb_struct_ptr(st)
#define RSTRUCT_SET(st, idx, v) rb_struct_aset(st, INT2NUM(idx), (v))
#define RSTRUCT_GET(st, idx)    rb_struct_aref(st, INT2NUM(idx))

int rb_big_sign(VALUE);
#define RBIGNUM_SIGN(b) (rb_big_sign(b))
#define RBIGNUM_POSITIVE_P(b) (RBIGNUM_SIGN(b)!=0)
#define RBIGNUM_NEGATIVE_P(b) (RBIGNUM_SIGN(b)==0)

#define R_CAST(st)   (struct st*)
#define RMOVED(obj)  (R_CAST(RMoved)(obj))
#define RBASIC(obj)  (R_CAST(RBasic)(obj))
#define ROBJECT(obj) (R_CAST(RObject)(obj))
#define RCLASS(obj)  (R_CAST(RClass)(obj))
#define RMODULE(obj) RCLASS(obj)
#define RSTRING(obj) (R_CAST(RString)(obj))
#define RREGEXP(obj) (R_CAST(RRegexp)(obj))
#define RARRAY(obj)  (R_CAST(RArray)(obj))
#define RDATA(obj)   (R_CAST(RData)(obj))
#define RTYPEDDATA(obj)   (R_CAST(RTypedData)(obj))
#define RFILE(obj)   (R_CAST(RFile)(obj))

#define FL_SINGLETON    ((VALUE)RUBY_FL_SINGLETON)
#define FL_WB_PROTECTED ((VALUE)RUBY_FL_WB_PROTECTED)
#define FL_PROMOTED0    ((VALUE)RUBY_FL_PROMOTED0)
#define FL_PROMOTED1    ((VALUE)RUBY_FL_PROMOTED1)
#define FL_FINALIZE     ((VALUE)RUBY_FL_FINALIZE)
#define FL_TAINT        ((VALUE)RUBY_FL_TAINT)
#define FL_UNTRUSTED    ((VALUE)RUBY_FL_UNTRUSTED)
#define FL_SEEN_OBJ_ID  ((VALUE)RUBY_FL_SEEN_OBJ_ID)
#define FL_EXIVAR       ((VALUE)RUBY_FL_EXIVAR)
#define FL_FREEZE       ((VALUE)RUBY_FL_FREEZE)

#define FL_USHIFT       ((VALUE)RUBY_FL_USHIFT)

#define FL_USER0  	((VALUE)RUBY_FL_USER0)
#define FL_USER1  	((VALUE)RUBY_FL_USER1)
#define FL_USER2  	((VALUE)RUBY_FL_USER2)
#define FL_USER3  	((VALUE)RUBY_FL_USER3)
#define FL_USER4  	((VALUE)RUBY_FL_USER4)
#define FL_USER5  	((VALUE)RUBY_FL_USER5)
#define FL_USER6  	((VALUE)RUBY_FL_USER6)
#define FL_USER7  	((VALUE)RUBY_FL_USER7)
#define FL_USER8  	((VALUE)RUBY_FL_USER8)
#define FL_USER9  	((VALUE)RUBY_FL_USER9)
#define FL_USER10 	((VALUE)RUBY_FL_USER10)
#define FL_USER11 	((VALUE)RUBY_FL_USER11)
#define FL_USER12 	((VALUE)RUBY_FL_USER12)
#define FL_USER13 	((VALUE)RUBY_FL_USER13)
#define FL_USER14 	((VALUE)RUBY_FL_USER14)
#define FL_USER15 	((VALUE)RUBY_FL_USER15)
#define FL_USER16 	((VALUE)RUBY_FL_USER16)
#define FL_USER17 	((VALUE)RUBY_FL_USER17)
#define FL_USER18 	((VALUE)RUBY_FL_USER18)
#define FL_USER19 	((VALUE)(unsigned int)RUBY_FL_USER19)

#define RB_SPECIAL_CONST_P(x) (RB_IMMEDIATE_P(x) || !RB_TEST(x))
#define SPECIAL_CONST_P(x) RB_SPECIAL_CONST_P(x)

#define RB_FL_ABLE(x) (!RB_SPECIAL_CONST_P(x) && RB_BUILTIN_TYPE(x) != RUBY_T_NODE)
#define RB_FL_TEST_RAW(x,f) (RBASIC(x)->flags&(f))
#define RB_FL_TEST(x,f) (RB_FL_ABLE(x)?RB_FL_TEST_RAW((x),(f)):0)
#define RB_FL_ANY_RAW(x,f) RB_FL_TEST_RAW((x),(f))
#define RB_FL_ANY(x,f) RB_FL_TEST((x),(f))
#define RB_FL_ALL_RAW(x,f) (RB_FL_TEST_RAW((x),(f)) == (f))
#define RB_FL_ALL(x,f) (RB_FL_TEST((x),(f)) == (f))
#define RB_FL_SET_RAW(x,f) (void)(RBASIC(x)->flags |= (f))
#define RB_FL_SET(x,f) (RB_FL_ABLE(x) ? RB_FL_SET_RAW(x, f) : (void)0)
#define RB_FL_UNSET_RAW(x,f) (void)(RBASIC(x)->flags &= ~(VALUE)(f))
#define RB_FL_UNSET(x,f) (RB_FL_ABLE(x) ? RB_FL_UNSET_RAW(x, f) : (void)0)
#define RB_FL_REVERSE_RAW(x,f) (void)(RBASIC(x)->flags ^= (f))
#define RB_FL_REVERSE(x,f) (RB_FL_ABLE(x) ? RB_FL_REVERSE_RAW(x, f) : (void)0)

#define RB_OBJ_TAINTABLE(x) (RB_FL_ABLE(x) && RB_BUILTIN_TYPE(x) != RUBY_T_BIGNUM && RB_BUILTIN_TYPE(x) != RUBY_T_FLOAT)
#define RB_OBJ_TAINTED_RAW(x) RB_FL_TEST_RAW(x, RUBY_FL_TAINT)
#define RB_OBJ_TAINTED(x) (!!RB_FL_TEST((x), RUBY_FL_TAINT))
#define RB_OBJ_TAINT_RAW(x) RB_FL_SET_RAW(x, RUBY_FL_TAINT)
#define RB_OBJ_TAINT(x) (RB_OBJ_TAINTABLE(x) ? RB_OBJ_TAINT_RAW(x) : (void)0)
#define RB_OBJ_UNTRUSTED(x) RB_OBJ_TAINTED(x)
#define RB_OBJ_UNTRUST(x) RB_OBJ_TAINT(x)
#define RB_OBJ_INFECT_RAW(x,s) RB_FL_SET_RAW(x, RB_OBJ_TAINTED_RAW(s))
#define RB_OBJ_INFECT(x,s) ( \
    (RB_OBJ_TAINTABLE(x) && RB_FL_ABLE(s)) ? \
    RB_OBJ_INFECT_RAW(x, s) : (void)0)

#define RB_OBJ_FROZEN_RAW(x) (RBASIC(x)->flags&RUBY_FL_FREEZE)
#define RB_OBJ_FROZEN(x) (!RB_FL_ABLE(x) || RB_OBJ_FROZEN_RAW(x))
#define RB_OBJ_FREEZE_RAW(x) (void)(RBASIC(x)->flags |= RUBY_FL_FREEZE)
#define RB_OBJ_FREEZE(x) rb_obj_freeze_inline((VALUE)x)

/*!
 * \defgroup deprecated_macros deprecated macro APIs
 * \{
 * \par These macros are deprecated. Prefer their `RB_`-prefixed versions.
 */
#define FL_ABLE(x) RB_FL_ABLE(x)
#define FL_TEST_RAW(x,f) RB_FL_TEST_RAW(x,f)
#define FL_TEST(x,f) RB_FL_TEST(x,f)
#define FL_ANY_RAW(x,f) RB_FL_ANY_RAW(x,f)
#define FL_ANY(x,f) RB_FL_ANY(x,f)
#define FL_ALL_RAW(x,f) RB_FL_ALL_RAW(x,f)
#define FL_ALL(x,f) RB_FL_ALL(x,f)
#define FL_SET_RAW(x,f) RB_FL_SET_RAW(x,f)
#define FL_SET(x,f) RB_FL_SET(x,f)
#define FL_UNSET_RAW(x,f) RB_FL_UNSET_RAW(x,f)
#define FL_UNSET(x,f) RB_FL_UNSET(x,f)
#define FL_REVERSE_RAW(x,f) RB_FL_REVERSE_RAW(x,f)
#define FL_REVERSE(x,f) RB_FL_REVERSE(x,f)

#define OBJ_TAINTABLE(x) RB_OBJ_TAINTABLE(x)
#define OBJ_TAINTED_RAW(x) RB_OBJ_TAINTED_RAW(x)
#define OBJ_TAINTED(x) RB_OBJ_TAINTED(x)
#define OBJ_TAINT_RAW(x) RB_OBJ_TAINT_RAW(x)
#define OBJ_TAINT(x) RB_OBJ_TAINT(x)
#define OBJ_UNTRUSTED(x) RB_OBJ_UNTRUSTED(x)
#define OBJ_UNTRUST(x) RB_OBJ_UNTRUST(x)
#define OBJ_INFECT_RAW(x,s) RB_OBJ_INFECT_RAW(x,s)
#define OBJ_INFECT(x,s) RB_OBJ_INFECT(x,s)
#define OBJ_FROZEN_RAW(x) RB_OBJ_FROZEN_RAW(x)
#define OBJ_FROZEN(x) RB_OBJ_FROZEN(x)
#define OBJ_FREEZE_RAW(x) RB_OBJ_FREEZE_RAW(x)
#define OBJ_FREEZE(x) RB_OBJ_FREEZE(x)

/* \} */

void rb_freeze_singleton_class(VALUE klass);

static inline void
rb_obj_freeze_inline(VALUE x)
{
    if (RB_FL_ABLE(x)) {
	RB_OBJ_FREEZE_RAW(x);
	if (RBASIC_CLASS(x) && !(RBASIC(x)->flags & RUBY_FL_SINGLETON)) {
	    rb_freeze_singleton_class(x);
	}
    }
}

#if GCC_VERSION_SINCE(4,4,0)
# define RUBY_UNTYPED_DATA_FUNC(func) func __attribute__((warning("untyped Data is unsafe; use TypedData instead")))
#else
# define RUBY_UNTYPED_DATA_FUNC(func) DEPRECATED(func)
#endif

#if defined(__GNUC__) && !defined(__NO_INLINE__)
#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
RUBY_UNTYPED_DATA_FUNC(static inline VALUE rb_data_object_wrap_warning(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC));
#endif
RUBY_UNTYPED_DATA_FUNC(static inline void *rb_data_object_get_warning(VALUE));

static inline VALUE
rb_data_object_wrap_warning(VALUE klass, void *ptr, RUBY_DATA_FUNC mark, RUBY_DATA_FUNC free)
{
    return rb_data_object_wrap(klass, ptr, mark, free);
}

#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
#define rb_data_object_wrap_warning(klass, ptr, mark, free) \
    __extension__( \
	__builtin_choose_expr( \
	    __builtin_constant_p(klass) && !(klass), \
	    rb_data_object_wrap(klass, ptr, mark, free), \
	    rb_data_object_wrap_warning(klass, ptr, mark, free)))
#endif
#endif

static inline void *
rb_data_object_get(VALUE obj)
{
    Check_Type(obj, RUBY_T_DATA);
    return ((struct RData *)obj)->data;
}

#if defined(__GNUC__) && !defined(__NO_INLINE__)
static inline void *
rb_data_object_get_warning(VALUE obj)
{
    return rb_data_object_get(obj);
}
#endif

static inline VALUE
rb_data_object_make(VALUE klass, RUBY_DATA_FUNC mark_func, RUBY_DATA_FUNC free_func, void **datap, size_t size)
{
    Data_Make_Struct0(result, klass, void, size, mark_func, free_func, *datap);
    return result;
}

static inline VALUE
rb_data_typed_object_make(VALUE klass, const rb_data_type_t *type, void **datap, size_t size)
{
    TypedData_Make_Struct0(result, klass, void, size, type, *datap);
    return result;
}

#ifndef rb_data_object_alloc
DEPRECATED_BY(rb_data_object_wrap, static inline VALUE rb_data_object_alloc(VALUE,void*,RUBY_DATA_FUNC,RUBY_DATA_FUNC));
static inline VALUE
rb_data_object_alloc(VALUE klass, void *data, RUBY_DATA_FUNC dmark, RUBY_DATA_FUNC dfree)
{
    return rb_data_object_wrap(klass, data, dmark, dfree);
}
#endif

#ifndef rb_data_typed_object_alloc
DEPRECATED_BY(rb_data_typed_object_wrap, static inline VALUE rb_data_typed_object_alloc(VALUE,void*,const rb_data_type_t*));
static inline VALUE
rb_data_typed_object_alloc(VALUE klass, void *datap, const rb_data_type_t *type)
{
    return rb_data_typed_object_wrap(klass, datap, type);
}
#endif

#if defined(__GNUC__) && !defined(__NO_INLINE__)
#define rb_data_object_wrap_0 rb_data_object_wrap
#define rb_data_object_wrap_1 rb_data_object_wrap_warning
#define rb_data_object_wrap  RUBY_MACRO_SELECT(rb_data_object_wrap_, RUBY_UNTYPED_DATA_WARNING)
#define rb_data_object_get_0 rb_data_object_get
#define rb_data_object_get_1 rb_data_object_get_warning
#define rb_data_object_get  RUBY_MACRO_SELECT(rb_data_object_get_, RUBY_UNTYPED_DATA_WARNING)
#define rb_data_object_make_0 rb_data_object_make
#define rb_data_object_make_1 rb_data_object_make_warning
#define rb_data_object_make   RUBY_MACRO_SELECT(rb_data_object_make_, RUBY_UNTYPED_DATA_WARNING)
#endif

#if USE_RGENGC
#define RB_OBJ_PROMOTED_RAW(x)      RB_FL_ALL_RAW(x, RUBY_FL_PROMOTED)
#define RB_OBJ_PROMOTED(x)          (RB_SPECIAL_CONST_P(x) ? 0 : RB_OBJ_PROMOTED_RAW(x))
#define RB_OBJ_WB_UNPROTECT(x)      rb_obj_wb_unprotect(x, __FILE__, __LINE__)

void rb_gc_writebarrier(VALUE a, VALUE b);
void rb_gc_writebarrier_unprotect(VALUE obj);

#else /* USE_RGENGC */
#define RB_OBJ_PROMOTED(x)          0
#define RB_OBJ_WB_UNPROTECT(x)      rb_obj_wb_unprotect(x, __FILE__, __LINE__)
#endif
#define OBJ_PROMOTED_RAW(x)         RB_OBJ_PROMOTED_RAW(x)
#define OBJ_PROMOTED(x)             RB_OBJ_PROMOTED(x)
#define OBJ_WB_UNPROTECT(x)         RB_OBJ_WB_UNPROTECT(x)

/* Write barrier (WB) interfaces:
 * - RB_OBJ_WRITE(a, slot, b): WB for new reference from `a' to `b'.
 *     Write `b' into `*slot'. `slot' is a pointer in `a'.
 * - RB_OBJ_WRITTEN(a, oldv, b): WB for new reference from `a' to `b'.
 *     This doesn't write any values, but only a WB declaration.
 *     `oldv' is replaced value with `b' (not used in current Ruby).
 *
 * NOTE: The following core interfaces can be changed in the future.
 *       Please catch up if you want to insert WB into C-extensions
 *       correctly.
 */
#define RB_OBJ_WRITE(a, slot, b)       rb_obj_write((VALUE)(a), (VALUE *)(slot), (VALUE)(b), __FILE__, __LINE__)
#define RB_OBJ_WRITTEN(a, oldv, b)     rb_obj_written((VALUE)(a), (VALUE)(oldv), (VALUE)(b), __FILE__, __LINE__)

#ifndef USE_RGENGC_LOGGING_WB_UNPROTECT
#define USE_RGENGC_LOGGING_WB_UNPROTECT 0
#endif

#if USE_RGENGC_LOGGING_WB_UNPROTECT
void rb_gc_unprotect_logging(void *objptr, const char *filename, int line);
#define RGENGC_LOGGING_WB_UNPROTECT rb_gc_unprotect_logging
#endif

static inline VALUE
rb_obj_wb_unprotect(VALUE x, RB_UNUSED_VAR(const char *filename), RB_UNUSED_VAR(int line))
{
#ifdef RGENGC_LOGGING_WB_UNPROTECT
    RGENGC_LOGGING_WB_UNPROTECT((void *)x, filename, line);
#endif
#if USE_RGENGC
    rb_gc_writebarrier_unprotect(x);
#endif
    return x;
}

static inline VALUE
rb_obj_written(VALUE a, RB_UNUSED_VAR(VALUE oldv), VALUE b, RB_UNUSED_VAR(const char *filename), RB_UNUSED_VAR(int line))
{
#ifdef RGENGC_LOGGING_OBJ_WRITTEN
    RGENGC_LOGGING_OBJ_WRITTEN(a, oldv, b, filename, line);
#endif

#if USE_RGENGC
    if (!RB_SPECIAL_CONST_P(b)) {
	rb_gc_writebarrier(a, b);
    }
#endif

    return a;
}

static inline VALUE
rb_obj_write(VALUE a, VALUE *slot, VALUE b, RB_UNUSED_VAR(const char *filename), RB_UNUSED_VAR(int line))
{
#ifdef RGENGC_LOGGING_WRITE
    RGENGC_LOGGING_WRITE(a, slot, b, filename, line);
#endif

    *slot = b;

#if USE_RGENGC
    rb_obj_written(a, RUBY_Qundef /* ignore `oldv' now */, b, filename, line);
#endif
    return a;
}

#define RUBY_INTEGER_UNIFICATION 1
#define RB_INTEGER_TYPE_P(obj) rb_integer_type_p(obj)
#if defined __GNUC__ && !GCC_VERSION_SINCE(4, 3, 0)
/* clang 3.x (4.2 compatible) can't eliminate CSE of RB_BUILTIN_TYPE
 * in inline function and caller function */
#define rb_integer_type_p(obj) \
    __extension__ ({ \
	const VALUE integer_type_obj = (obj); \
	(RB_FIXNUM_P(integer_type_obj) || \
	 (!RB_SPECIAL_CONST_P(integer_type_obj) && \
	  RB_BUILTIN_TYPE(integer_type_obj) == RUBY_T_BIGNUM)); \
    })
#else
static inline int
rb_integer_type_p(VALUE obj)
{
    return (RB_FIXNUM_P(obj) ||
	    (!RB_SPECIAL_CONST_P(obj) &&
	     RB_BUILTIN_TYPE(obj) == RUBY_T_BIGNUM));
}
#endif

#if SIZEOF_INT < SIZEOF_LONG
# define RB_INT2NUM(v) RB_INT2FIX((int)(v))
# define RB_UINT2NUM(v) RB_LONG2FIX((unsigned int)(v))
#else
static inline VALUE
rb_int2num_inline(int v)
{
    if (RB_FIXABLE(v))
	return RB_INT2FIX(v);
    else
	return rb_int2big(v);
}
#define RB_INT2NUM(x) rb_int2num_inline(x)

static inline VALUE
rb_uint2num_inline(unsigned int v)
{
    if (RB_POSFIXABLE(v))
	return RB_LONG2FIX(v);
    else
	return rb_uint2big(v);
}
#define RB_UINT2NUM(x) rb_uint2num_inline(x)
#endif
#define INT2NUM(x) RB_INT2NUM(x)
#define UINT2NUM(x) RB_UINT2NUM(x)

static inline VALUE
rb_long2num_inline(long v)
{
    if (RB_FIXABLE(v))
	return RB_LONG2FIX(v);
    else
	return rb_int2big(v);
}
#define RB_LONG2NUM(x) rb_long2num_inline(x)

static inline VALUE
rb_ulong2num_inline(unsigned long v)
{
    if (RB_POSFIXABLE(v))
	return RB_LONG2FIX(v);
    else
	return rb_uint2big(v);
}
#define RB_ULONG2NUM(x) rb_ulong2num_inline(x)

static inline char
rb_num2char_inline(VALUE x)
{
    if (RB_TYPE_P(x, RUBY_T_STRING) && (RSTRING_LEN(x)>=1))
	return RSTRING_PTR(x)[0];
    else
	return (char)(NUM2INT(x) & 0xff);
}
#define RB_NUM2CHR(x) rb_num2char_inline(x)

#define RB_CHR2FIX(x) RB_INT2FIX((long)((x)&0xff))

#define LONG2NUM(x) RB_LONG2NUM(x)
#define ULONG2NUM(x) RB_ULONG2NUM(x)
#define USHORT2NUM(x) RB_INT2FIX(x)
#define NUM2CHR(x) RB_NUM2CHR(x)
#define CHR2FIX(x) RB_CHR2FIX(x)

#if SIZEOF_LONG < SIZEOF_VALUE
#define RB_ST2FIX(h) RB_LONG2FIX((long)((h) > 0 ? (h) & (unsigned long)-1 >> 2 : (h) | ~((unsigned long)-1 >> 2)))
#else
#define RB_ST2FIX(h) RB_LONG2FIX((long)(h))
#endif
#define ST2FIX(h) RB_ST2FIX(h)

#define RB_ALLOC_N(type,n) ((type*)ruby_xmalloc2((size_t)(n),sizeof(type)))
#define RB_ALLOC(type) ((type*)ruby_xmalloc(sizeof(type)))
#define RB_ZALLOC_N(type,n) ((type*)ruby_xcalloc((size_t)(n),sizeof(type)))
#define RB_ZALLOC(type) (RB_ZALLOC_N(type,1))
#define RB_REALLOC_N(var,type,n) ((var)=(type*)ruby_xrealloc2((char*)(var),(size_t)(n),sizeof(type)))

#define ALLOC_N(type,n) RB_ALLOC_N(type,n)
#define ALLOC(type) RB_ALLOC(type)
#define ZALLOC_N(type,n) RB_ZALLOC_N(type,n)
#define ZALLOC(type) RB_ZALLOC(type)
#define REALLOC_N(var,type,n) RB_REALLOC_N(var,type,n)

#if GCC_VERSION_BEFORE(4,9,5)
/* GCC 4.9.2 reportedly has this feature and is broken.
 * The function is not officially documented below.
 * Seems we should not use it.
 * https://gcc.gnu.org/onlinedocs/gcc-4.9.4/gcc/Other-Builtins.html#Other-Builtins */
# undef HAVE_BUILTIN___BUILTIN_ALLOCA_WITH_ALIGN
#endif

#if defined(HAVE_BUILTIN___BUILTIN_ALLOCA_WITH_ALIGN) && defined(RUBY_ALIGNOF)
/* I don't know why but __builtin_alloca_with_align's second argument
   takes bits rather than bytes. */
#define ALLOCA_N(type, n) \
    (type*)__builtin_alloca_with_align((sizeof(type)*(n)), \
        RUBY_ALIGNOF(type) * CHAR_BIT)
#else
#define ALLOCA_N(type,n) ((type*)alloca(sizeof(type)*(n)))
#endif

void *rb_alloc_tmp_buffer(volatile VALUE *store, long len) RUBY_ATTR_ALLOC_SIZE((2));
void *rb_alloc_tmp_buffer_with_count(volatile VALUE *store, size_t len,size_t count) RUBY_ATTR_ALLOC_SIZE((2,3));
void rb_free_tmp_buffer(volatile VALUE *store);
NORETURN(void ruby_malloc_size_overflow(size_t, size_t));
#if HAVE_LONG_LONG && SIZEOF_SIZE_T * 2 <= SIZEOF_LONG_LONG
# define DSIZE_T unsigned LONG_LONG
#elif defined(HAVE_INT128_T)
# define DSIZE_T uint128_t
#endif
static inline int
rb_mul_size_overflow(size_t a, size_t b, size_t max, size_t *c)
{
#ifdef DSIZE_T
# ifdef __GNUC__
    __extension__
# endif
    DSIZE_T c2 = (DSIZE_T)a * (DSIZE_T)b;
    if (c2 > max) return 1;
    *c = (size_t)c2;
#else
    if (b != 0 && a > max / b) return 1;
    *c = a * b;
#endif
    return 0;
}
static inline void *
rb_alloc_tmp_buffer2(volatile VALUE *store, long count, size_t elsize)
{
    size_t cnt = (size_t)count;
    if (elsize == sizeof(VALUE)) {
	if (RB_UNLIKELY(cnt > LONG_MAX / sizeof(VALUE))) {
	    ruby_malloc_size_overflow(cnt, elsize);
	}
    }
    else {
	size_t size, max = LONG_MAX - sizeof(VALUE) + 1;
	if (RB_UNLIKELY(rb_mul_size_overflow(cnt, elsize, max, &size))) {
	    ruby_malloc_size_overflow(cnt, elsize);
	}
	cnt = (size + sizeof(VALUE) - 1) / sizeof(VALUE);
    }
    return rb_alloc_tmp_buffer_with_count(store, cnt * sizeof(VALUE), cnt);
}
/* allocates _n_ bytes temporary buffer and stores VALUE including it
 * in _v_.  _n_ may be evaluated twice. */
#ifdef C_ALLOCA
# define RB_ALLOCV(v, n) rb_alloc_tmp_buffer(&(v), (n))
# define RB_ALLOCV_N(type, v, n) \
     rb_alloc_tmp_buffer2(&(v), (n), sizeof(type))
#else
# define RUBY_ALLOCV_LIMIT 1024
# define RB_ALLOCV(v, n) ((n) < RUBY_ALLOCV_LIMIT ? \
                       ((v) = 0, alloca(n)) : \
		       rb_alloc_tmp_buffer(&(v), (n)))
# define RB_ALLOCV_N(type, v, n) \
    ((type*)(((size_t)(n) < RUBY_ALLOCV_LIMIT / sizeof(type)) ? \
             ((v) = 0, alloca((size_t)(n) * sizeof(type))) : \
	     rb_alloc_tmp_buffer2(&(v), (long)(n), sizeof(type))))
#endif
#define RB_ALLOCV_END(v) rb_free_tmp_buffer(&(v))

#define ALLOCV(v, n) RB_ALLOCV(v, n)
#define ALLOCV_N(type, v, n) RB_ALLOCV_N(type, v, n)
#define ALLOCV_END(v) RB_ALLOCV_END(v)

#define MEMZERO(p,type,n) memset((p), 0, sizeof(type)*(size_t)(n))
#define MEMCPY(p1,p2,type,n) memcpy((p1), (p2), sizeof(type)*(size_t)(n))
#define MEMMOVE(p1,p2,type,n) memmove((p1), (p2), sizeof(type)*(size_t)(n))
#define MEMCMP(p1,p2,type,n) memcmp((p1), (p2), sizeof(type)*(size_t)(n))
#ifdef __GLIBC__
static inline void *
ruby_nonempty_memcpy(void *dest, const void *src, size_t n)
{
    /* if nothing to be copied, src may be NULL */
    return (n ? memcpy(dest, src, n) : dest);
}
#define memcpy(p1,p2,n) ruby_nonempty_memcpy(p1, p2, n)
#endif

void rb_obj_infect(VALUE victim, VALUE carrier);

typedef int ruby_glob_func(const char*,VALUE, void*);
void rb_glob(const char*,void(*)(const char*,VALUE,void*),VALUE);
int ruby_glob(const char*,int,ruby_glob_func*,VALUE);
int ruby_brace_glob(const char*,int,ruby_glob_func*,VALUE);

VALUE rb_define_class(const char*,VALUE);
VALUE rb_define_module(const char*);
VALUE rb_define_class_under(VALUE, const char*, VALUE);
VALUE rb_define_module_under(VALUE, const char*);

void rb_include_module(VALUE,VALUE);
void rb_extend_object(VALUE,VALUE);
void rb_prepend_module(VALUE,VALUE);

typedef VALUE rb_gvar_getter_t(ID id, VALUE *data);
typedef void  rb_gvar_setter_t(VALUE val, ID id, VALUE *data);
typedef void  rb_gvar_marker_t(VALUE *var);

rb_gvar_getter_t rb_gvar_undef_getter;
rb_gvar_setter_t rb_gvar_undef_setter;
rb_gvar_marker_t rb_gvar_undef_marker;

rb_gvar_getter_t rb_gvar_val_getter;
rb_gvar_setter_t rb_gvar_val_setter;
rb_gvar_marker_t rb_gvar_val_marker;

rb_gvar_getter_t rb_gvar_var_getter;
rb_gvar_setter_t rb_gvar_var_setter;
rb_gvar_marker_t rb_gvar_var_marker;

NORETURN(rb_gvar_setter_t rb_gvar_readonly_setter);

void rb_define_variable(const char*,VALUE*);
void rb_define_virtual_variable(const char*,rb_gvar_getter_t*,rb_gvar_setter_t*);
void rb_define_hooked_variable(const char*,VALUE*,rb_gvar_getter_t*,rb_gvar_setter_t*);
void rb_define_readonly_variable(const char*,const VALUE*);
void rb_define_const(VALUE,const char*,VALUE);
void rb_define_global_const(const char*,VALUE);

void rb_define_method(VALUE,const char*,VALUE(*)(ANYARGS),int);
void rb_define_module_function(VALUE,const char*,VALUE(*)(ANYARGS),int);
void rb_define_global_function(const char*,VALUE(*)(ANYARGS),int);

void rb_undef_method(VALUE,const char*);
void rb_define_alias(VALUE,const char*,const char*);
void rb_define_attr(VALUE,const char*,int,int);

void rb_global_variable(VALUE*);
void rb_gc_register_mark_object(VALUE);
void rb_gc_register_address(VALUE*);
void rb_gc_unregister_address(VALUE*);

ID rb_intern(const char*);
ID rb_intern2(const char*, long);
ID rb_intern_str(VALUE str);
const char *rb_id2name(ID);
ID rb_check_id(volatile VALUE *);
ID rb_to_id(VALUE);
VALUE rb_id2str(ID);
VALUE rb_sym2str(VALUE);
VALUE rb_to_symbol(VALUE name);
VALUE rb_check_symbol(volatile VALUE *namep);

#define RUBY_CONST_ID_CACHE_NB(result, str)		\
	static ID rb_intern_id_cache;			\
	if (!rb_intern_id_cache)			\
	    rb_intern_id_cache = rb_intern2((str), (long)strlen(str)); \
	result rb_intern_id_cache;
#define RUBY_CONST_ID_CACHE(result, str)		\
    {							\
	RUBY_CONST_ID_CACHE_NB(result, str)		\
    }
#define RUBY_CONST_ID(var, str) \
    do RUBY_CONST_ID_CACHE((var) =, (str)) while (0)
#define CONST_ID_CACHE(result, str) RUBY_CONST_ID_CACHE(result, str)
#define CONST_ID(var, str) RUBY_CONST_ID(var, str)
#if defined(HAVE_BUILTIN___BUILTIN_CONSTANT_P) && defined(HAVE_STMT_AND_DECL_IN_EXPR)
/* __builtin_constant_p and statement expression is available
 * since gcc-2.7.2.3 at least. */
#define rb_intern(str) \
    (__builtin_constant_p(str) ? \
        __extension__ ({RUBY_CONST_ID_CACHE_NB((ID), (str))}) : \
        rb_intern(str))
#define rb_intern_const(str) \
    (__builtin_constant_p(str) ? \
     __extension__ (rb_intern2((str), (long)strlen(str))) : \
     (rb_intern)(str))

# define rb_varargs_argc_check_runtime(argc, vargc) \
    (((argc) <= (vargc)) ? (argc) : \
     (rb_fatal("argc(%d) exceeds actual arguments(%d)", \
	       argc, vargc), 0))
# define rb_varargs_argc_valid_p(argc, vargc) \
    ((argc) == 0 ? (vargc) <= 1 : /* [ruby-core:85266] [Bug #14425] */ \
     (argc) == (vargc))
# if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
#   if HAVE_ATTRIBUTE_ERRORFUNC
ERRORFUNC((" argument length doesn't match"), int rb_varargs_bad_length(int,int));
#   else
#     define rb_varargs_bad_length(argc, vargc) \
	((argc)/rb_varargs_argc_valid_p(argc, vargc))
#   endif
#   define rb_varargs_argc_check(argc, vargc) \
    __builtin_choose_expr(__builtin_constant_p(argc), \
	(rb_varargs_argc_valid_p(argc, vargc) ? (argc) : \
	 rb_varargs_bad_length(argc, vargc)), \
	rb_varargs_argc_check_runtime(argc, vargc))
# else
#   define rb_varargs_argc_check(argc, vargc) \
	rb_varargs_argc_check_runtime(argc, vargc)
# endif

#else
#define rb_intern_const(str) rb_intern2((str), (long)strlen(str))
#endif

const char *rb_class2name(VALUE);
const char *rb_obj_classname(VALUE);

void rb_p(VALUE);

VALUE rb_eval_string(const char*);
VALUE rb_eval_string_protect(const char*, int*);
VALUE rb_eval_string_wrap(const char*, int*);
VALUE rb_funcall(VALUE, ID, int, ...);
VALUE rb_funcallv(VALUE, ID, int, const VALUE*);
VALUE rb_funcallv_kw(VALUE, ID, int, const VALUE*, int);
VALUE rb_funcallv_public(VALUE, ID, int, const VALUE*);
VALUE rb_funcallv_public_kw(VALUE, ID, int, const VALUE*, int);
#define rb_funcall2 rb_funcallv
#define rb_funcall3 rb_funcallv_public
VALUE rb_funcall_passing_block(VALUE, ID, int, const VALUE*);
VALUE rb_funcall_passing_block_kw(VALUE, ID, int, const VALUE*, int);
VALUE rb_funcall_with_block(VALUE, ID, int, const VALUE*, VALUE);
VALUE rb_funcall_with_block_kw(VALUE, ID, int, const VALUE*, VALUE, int);
int rb_scan_args(int, const VALUE*, const char*, ...);
#define RB_SCAN_ARGS_PASS_CALLED_KEYWORDS 0
#define RB_SCAN_ARGS_KEYWORDS 1
#define RB_SCAN_ARGS_EMPTY_KEYWORDS 2 /* Will be removed in 3.0 */
#define RB_SCAN_ARGS_LAST_HASH_KEYWORDS 3
int rb_scan_args_kw(int, int, const VALUE*, const char*, ...);
VALUE rb_call_super(int, const VALUE*);
VALUE rb_call_super_kw(int, const VALUE*, int);
VALUE rb_current_receiver(void);
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *);
VALUE rb_extract_keywords(VALUE *orighash);

/* rb_scan_args() format allows ':' for optional hash */
#define HAVE_RB_SCAN_ARGS_OPTIONAL_HASH 1

VALUE rb_gv_set(const char*, VALUE);
VALUE rb_gv_get(const char*);
VALUE rb_iv_get(VALUE, const char*);
VALUE rb_iv_set(VALUE, const char*, VALUE);

VALUE rb_equal(VALUE,VALUE);

VALUE *rb_ruby_verbose_ptr(void);
VALUE *rb_ruby_debug_ptr(void);
#define ruby_verbose (*rb_ruby_verbose_ptr())
#define ruby_debug   (*rb_ruby_debug_ptr())

/* for rb_readwrite_sys_fail first argument */
enum rb_io_wait_readwrite {RB_IO_WAIT_READABLE, RB_IO_WAIT_WRITABLE};
#define RB_IO_WAIT_READABLE RB_IO_WAIT_READABLE
#define RB_IO_WAIT_WRITABLE RB_IO_WAIT_WRITABLE

PRINTF_ARGS(NORETURN(void rb_raise(VALUE, const char*, ...)), 2, 3);
PRINTF_ARGS(NORETURN(void rb_fatal(const char*, ...)), 1, 2);
COLDFUNC PRINTF_ARGS(NORETURN(void rb_bug(const char*, ...)), 1, 2);
NORETURN(void rb_bug_errno(const char*, int));
NORETURN(void rb_sys_fail(const char*));
NORETURN(void rb_sys_fail_str(VALUE));
NORETURN(void rb_mod_sys_fail(VALUE, const char*));
NORETURN(void rb_mod_sys_fail_str(VALUE, VALUE));
NORETURN(void rb_readwrite_sys_fail(enum rb_io_wait_readwrite, const char*));
NORETURN(void rb_iter_break(void));
NORETURN(void rb_iter_break_value(VALUE));
NORETURN(void rb_exit(int));
NORETURN(void rb_notimplement(void));
VALUE rb_syserr_new(int, const char *);
VALUE rb_syserr_new_str(int n, VALUE arg);
NORETURN(void rb_syserr_fail(int, const char*));
NORETURN(void rb_syserr_fail_str(int, VALUE));
NORETURN(void rb_mod_syserr_fail(VALUE, int, const char*));
NORETURN(void rb_mod_syserr_fail_str(VALUE, int, VALUE));
NORETURN(void rb_readwrite_syserr_fail(enum rb_io_wait_readwrite, int, const char*));

/* reports if `-W' specified */
PRINTF_ARGS(void rb_warning(const char*, ...), 1, 2);
PRINTF_ARGS(void rb_compile_warning(const char *, int, const char*, ...), 3, 4);
PRINTF_ARGS(void rb_sys_warning(const char*, ...), 1, 2);
/* reports always */
COLDFUNC PRINTF_ARGS(void rb_warn(const char*, ...), 1, 2);
PRINTF_ARGS(void rb_compile_warn(const char *, int, const char*, ...), 3, 4);

#define RB_BLOCK_CALL_FUNC_STRICT 1
#define RUBY_BLOCK_CALL_FUNC_TAKES_BLOCKARG 1
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg) \
    VALUE yielded_arg, VALUE callback_arg, int argc, const VALUE *argv, VALUE blockarg
typedef VALUE rb_block_call_func(RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg));
typedef rb_block_call_func *rb_block_call_func_t;

VALUE rb_each(VALUE);
VALUE rb_yield(VALUE);
VALUE rb_yield_values(int n, ...);
VALUE rb_yield_values2(int n, const VALUE *argv);
VALUE rb_yield_values_kw(int n, const VALUE *argv, int kw_splat);
VALUE rb_yield_splat(VALUE);
VALUE rb_yield_splat_kw(VALUE, int);
VALUE rb_yield_block(RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg)); /* rb_block_call_func */
#define RB_NO_KEYWORDS 0
#define RB_PASS_KEYWORDS 1
#define RB_PASS_EMPTY_KEYWORDS 2 /* Will be removed in 3.0 */
#define RB_PASS_CALLED_KEYWORDS 3
int rb_keyword_given_p(void);
int rb_block_given_p(void);
void rb_need_block(void);
VALUE rb_iterate(VALUE(*)(VALUE),VALUE,rb_block_call_func_t,VALUE);
VALUE rb_block_call(VALUE,ID,int,const VALUE*,rb_block_call_func_t,VALUE);
VALUE rb_block_call_kw(VALUE,ID,int,const VALUE*,rb_block_call_func_t,VALUE,int);
VALUE rb_rescue(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE);
VALUE rb_rescue2(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE,...);
VALUE rb_vrescue2(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE,VALUE),VALUE,va_list);
VALUE rb_ensure(VALUE(*)(VALUE),VALUE,VALUE(*)(VALUE),VALUE);
VALUE rb_catch(const char*,rb_block_call_func_t,VALUE);
VALUE rb_catch_obj(VALUE,rb_block_call_func_t,VALUE);
NORETURN(void rb_throw(const char*,VALUE));
NORETURN(void rb_throw_obj(VALUE,VALUE));

VALUE rb_require(const char*);

RUBY_EXTERN VALUE rb_mKernel;
RUBY_EXTERN VALUE rb_mComparable;
RUBY_EXTERN VALUE rb_mEnumerable;
RUBY_EXTERN VALUE rb_mErrno;
RUBY_EXTERN VALUE rb_mFileTest;
RUBY_EXTERN VALUE rb_mGC;
RUBY_EXTERN VALUE rb_mMath;
RUBY_EXTERN VALUE rb_mProcess;
RUBY_EXTERN VALUE rb_mWaitReadable;
RUBY_EXTERN VALUE rb_mWaitWritable;

RUBY_EXTERN VALUE rb_cBasicObject;
RUBY_EXTERN VALUE rb_cObject;
RUBY_EXTERN VALUE rb_cArray;
#ifndef RUBY_INTEGER_UNIFICATION
RUBY_EXTERN VALUE rb_cBignum;
#endif
RUBY_EXTERN VALUE rb_cBinding;
RUBY_EXTERN VALUE rb_cClass;
RUBY_EXTERN VALUE rb_cCont;
RUBY_EXTERN VALUE rb_cData;
RUBY_EXTERN VALUE rb_cDir;
RUBY_EXTERN VALUE rb_cEncoding;
RUBY_EXTERN VALUE rb_cEnumerator;
RUBY_EXTERN VALUE rb_cFalseClass;
RUBY_EXTERN VALUE rb_cFile;
#ifndef RUBY_INTEGER_UNIFICATION
RUBY_EXTERN VALUE rb_cFixnum;
#endif
RUBY_EXTERN VALUE rb_cComplex;
RUBY_EXTERN VALUE rb_cFloat;
RUBY_EXTERN VALUE rb_cHash;
RUBY_EXTERN VALUE rb_cIO;
RUBY_EXTERN VALUE rb_cInteger;
RUBY_EXTERN VALUE rb_cMatch;
RUBY_EXTERN VALUE rb_cMethod;
RUBY_EXTERN VALUE rb_cModule;
RUBY_EXTERN VALUE rb_cNameErrorMesg;
RUBY_EXTERN VALUE rb_cNilClass;
RUBY_EXTERN VALUE rb_cNumeric;
RUBY_EXTERN VALUE rb_cProc;
RUBY_EXTERN VALUE rb_cRandom;
RUBY_EXTERN VALUE rb_cRange;
RUBY_EXTERN VALUE rb_cRational;
RUBY_EXTERN VALUE rb_cRegexp;
RUBY_EXTERN VALUE rb_cStat;
RUBY_EXTERN VALUE rb_cString;
RUBY_EXTERN VALUE rb_cStruct;
RUBY_EXTERN VALUE rb_cSymbol;
RUBY_EXTERN VALUE rb_cThread;
RUBY_EXTERN VALUE rb_cTime;
RUBY_EXTERN VALUE rb_cTrueClass;
RUBY_EXTERN VALUE rb_cUnboundMethod;

RUBY_EXTERN VALUE rb_eException;
RUBY_EXTERN VALUE rb_eStandardError;
RUBY_EXTERN VALUE rb_eSystemExit;
RUBY_EXTERN VALUE rb_eInterrupt;
RUBY_EXTERN VALUE rb_eSignal;
RUBY_EXTERN VALUE rb_eFatal;
RUBY_EXTERN VALUE rb_eArgError;
RUBY_EXTERN VALUE rb_eEOFError;
RUBY_EXTERN VALUE rb_eIndexError;
RUBY_EXTERN VALUE rb_eStopIteration;
RUBY_EXTERN VALUE rb_eKeyError;
RUBY_EXTERN VALUE rb_eRangeError;
RUBY_EXTERN VALUE rb_eIOError;
RUBY_EXTERN VALUE rb_eRuntimeError;
RUBY_EXTERN VALUE rb_eFrozenError;
RUBY_EXTERN VALUE rb_eSecurityError;
RUBY_EXTERN VALUE rb_eSystemCallError;
RUBY_EXTERN VALUE rb_eThreadError;
RUBY_EXTERN VALUE rb_eTypeError;
RUBY_EXTERN VALUE rb_eZeroDivError;
RUBY_EXTERN VALUE rb_eNotImpError;
RUBY_EXTERN VALUE rb_eNoMemError;
RUBY_EXTERN VALUE rb_eNoMethodError;
RUBY_EXTERN VALUE rb_eFloatDomainError;
RUBY_EXTERN VALUE rb_eLocalJumpError;
RUBY_EXTERN VALUE rb_eSysStackError;
RUBY_EXTERN VALUE rb_eRegexpError;
RUBY_EXTERN VALUE rb_eEncodingError;
RUBY_EXTERN VALUE rb_eEncCompatError;
RUBY_EXTERN VALUE rb_eNoMatchingPatternError;

RUBY_EXTERN VALUE rb_eScriptError;
RUBY_EXTERN VALUE rb_eNameError;
RUBY_EXTERN VALUE rb_eSyntaxError;
RUBY_EXTERN VALUE rb_eLoadError;

RUBY_EXTERN VALUE rb_eMathDomainError;

RUBY_EXTERN VALUE rb_stdin, rb_stdout, rb_stderr;

static inline VALUE
rb_class_of(VALUE obj)
{
    if (RB_IMMEDIATE_P(obj)) {
	if (RB_FIXNUM_P(obj)) return rb_cInteger;
	if (RB_FLONUM_P(obj)) return rb_cFloat;
	if (obj == RUBY_Qtrue)  return rb_cTrueClass;
	if (RB_STATIC_SYM_P(obj)) return rb_cSymbol;
    }
    else if (!RB_TEST(obj)) {
	if (obj == RUBY_Qnil)   return rb_cNilClass;
	if (obj == RUBY_Qfalse) return rb_cFalseClass;
    }
    return RBASIC(obj)->klass;
}

static inline int
rb_type(VALUE obj)
{
    if (RB_IMMEDIATE_P(obj)) {
	if (RB_FIXNUM_P(obj)) return RUBY_T_FIXNUM;
        if (RB_FLONUM_P(obj)) return RUBY_T_FLOAT;
        if (obj == RUBY_Qtrue)  return RUBY_T_TRUE;
	if (RB_STATIC_SYM_P(obj)) return RUBY_T_SYMBOL;
	if (obj == RUBY_Qundef) return RUBY_T_UNDEF;
    }
    else if (!RB_TEST(obj)) {
	if (obj == RUBY_Qnil)   return RUBY_T_NIL;
	if (obj == RUBY_Qfalse) return RUBY_T_FALSE;
    }
    return RB_BUILTIN_TYPE(obj);
}

#ifdef __GNUC__
#define rb_type_p(obj, type) \
    __extension__ (__builtin_constant_p(type) ? RB_TYPE_P((obj), (type)) : \
		   rb_type(obj) == (type))
#else
#define rb_type_p(obj, type) (rb_type(obj) == (type))
#endif

#ifdef __GNUC__
#define rb_special_const_p(obj) \
    __extension__ ({ \
	VALUE special_const_obj = (obj); \
	(int)(RB_SPECIAL_CONST_P(special_const_obj) ? RUBY_Qtrue : RUBY_Qfalse); \
    })
#else
static inline int
rb_special_const_p(VALUE obj)
{
    if (RB_SPECIAL_CONST_P(obj)) return (int)RUBY_Qtrue;
    return (int)RUBY_Qfalse;
}
#endif

#include "ruby/intern.h"

static inline void
rb_clone_setup(VALUE clone, VALUE obj)
{
    rb_obj_setup(clone, rb_singleton_class_clone(obj),
                 RBASIC(obj)->flags & ~(FL_PROMOTED0|FL_PROMOTED1|FL_FINALIZE));
    rb_singleton_class_attached(RBASIC_CLASS(clone), clone);
    if (RB_FL_TEST(obj, RUBY_FL_EXIVAR)) rb_copy_generic_ivar(clone, obj);
}

static inline void
rb_dup_setup(VALUE dup, VALUE obj)
{
    rb_obj_setup(dup, rb_obj_class(obj), RB_FL_TEST_RAW(obj, RUBY_FL_DUPPED));
    if (RB_FL_TEST(obj, RUBY_FL_EXIVAR)) rb_copy_generic_ivar(dup, obj);
}

static inline long
rb_array_len(VALUE a)
{
    return (RBASIC(a)->flags & RARRAY_EMBED_FLAG) ?
	RARRAY_EMBED_LEN(a) : RARRAY(a)->as.heap.len;
}

#if defined(__fcc__) || defined(__fcc_version) || \
    defined(__FCC__) || defined(__FCC_VERSION)
/* workaround for old version of Fujitsu C Compiler (fcc) */
# define FIX_CONST_VALUE_PTR(x) ((const VALUE *)(x))
#else
# define FIX_CONST_VALUE_PTR(x) (x)
#endif

/* internal function. do not use this function */
static inline const VALUE *
rb_array_const_ptr_transient(VALUE a)
{
    return FIX_CONST_VALUE_PTR((RBASIC(a)->flags & RARRAY_EMBED_FLAG) ?
	RARRAY(a)->as.ary : RARRAY(a)->as.heap.ptr);
}

/* internal function. do not use this function */
static inline const VALUE *
rb_array_const_ptr(VALUE a)
{
#if USE_TRANSIENT_HEAP
    void rb_ary_detransient(VALUE a);

    if (RARRAY_TRANSIENT_P(a)) {
        rb_ary_detransient(a);
    }
#endif
    return rb_array_const_ptr_transient(a);
}

/* internal function. do not use this function */
static inline VALUE *
rb_array_ptr_use_start(VALUE a, int allow_transient)
{
    VALUE *rb_ary_ptr_use_start(VALUE ary);

#if USE_TRANSIENT_HEAP
    if (!allow_transient) {
        if (RARRAY_TRANSIENT_P(a)) {
            void rb_ary_detransient(VALUE a);
            rb_ary_detransient(a);
        }
    }
#endif
    (void)allow_transient;

    return rb_ary_ptr_use_start(a);
}

/* internal function. do not use this function */
static inline void
rb_array_ptr_use_end(VALUE a, int allow_transient)
{
    void rb_ary_ptr_use_end(VALUE a);
    rb_ary_ptr_use_end(a);
    (void)allow_transient;
}

#if defined(EXTLIB) && defined(USE_DLN_A_OUT)
/* hook for external modules */
static char *dln_libs_to_be_linked[] = { EXTLIB, 0 };
#endif

#define RUBY_VM 1 /* YARV */
#define HAVE_NATIVETHREAD
int ruby_native_thread_p(void);

/* traditional set_trace_func events */
#define RUBY_EVENT_NONE      0x0000
#define RUBY_EVENT_LINE      0x0001
#define RUBY_EVENT_CLASS     0x0002
#define RUBY_EVENT_END       0x0004
#define RUBY_EVENT_CALL      0x0008
#define RUBY_EVENT_RETURN    0x0010
#define RUBY_EVENT_C_CALL    0x0020
#define RUBY_EVENT_C_RETURN  0x0040
#define RUBY_EVENT_RAISE     0x0080
#define RUBY_EVENT_ALL       0x00ff

/* for TracePoint extended events */
#define RUBY_EVENT_B_CALL            0x0100
#define RUBY_EVENT_B_RETURN          0x0200
#define RUBY_EVENT_THREAD_BEGIN      0x0400
#define RUBY_EVENT_THREAD_END        0x0800
#define RUBY_EVENT_FIBER_SWITCH      0x1000
#define RUBY_EVENT_SCRIPT_COMPILED   0x2000
#define RUBY_EVENT_TRACEPOINT_ALL    0xffff

/* special events */
#define RUBY_EVENT_RESERVED_FOR_INTERNAL_USE 0x030000

/* internal events */
#define RUBY_INTERNAL_EVENT_SWITCH          0x040000
#define RUBY_EVENT_SWITCH                   0x040000 /* obsolete name. this macro is for compatibility */
                                         /* 0x080000 */
#define RUBY_INTERNAL_EVENT_NEWOBJ          0x100000
#define RUBY_INTERNAL_EVENT_FREEOBJ         0x200000
#define RUBY_INTERNAL_EVENT_GC_START        0x400000
#define RUBY_INTERNAL_EVENT_GC_END_MARK     0x800000
#define RUBY_INTERNAL_EVENT_GC_END_SWEEP   0x1000000
#define RUBY_INTERNAL_EVENT_GC_ENTER       0x2000000
#define RUBY_INTERNAL_EVENT_GC_EXIT        0x4000000
#define RUBY_INTERNAL_EVENT_OBJSPACE_MASK  0x7f00000
#define RUBY_INTERNAL_EVENT_MASK          0xffff0000

typedef uint32_t rb_event_flag_t;
typedef void (*rb_event_hook_func_t)(rb_event_flag_t evflag, VALUE data, VALUE self, ID mid, VALUE klass);

#define RB_EVENT_HOOKS_HAVE_CALLBACK_DATA 1
void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data);
int rb_remove_event_hook(rb_event_hook_func_t func);

/* locale insensitive functions */

static inline int rb_isascii(int c){ return '\0' <= c && c <= '\x7f'; }
static inline int rb_isupper(int c){ return 'A' <= c && c <= 'Z'; }
static inline int rb_islower(int c){ return 'a' <= c && c <= 'z'; }
static inline int rb_isalpha(int c){ return rb_isupper(c) || rb_islower(c); }
static inline int rb_isdigit(int c){ return '0' <= c && c <= '9'; }
static inline int rb_isalnum(int c){ return rb_isalpha(c) || rb_isdigit(c); }
static inline int rb_isxdigit(int c){ return rb_isdigit(c) || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f'); }
static inline int rb_isblank(int c){ return c == ' ' || c == '\t'; }
static inline int rb_isspace(int c){ return c == ' ' || ('\t' <= c && c <= '\r'); }
static inline int rb_iscntrl(int c){ return ('\0' <= c && c < ' ') || c == '\x7f'; }
static inline int rb_isprint(int c){ return ' ' <= c && c <= '\x7e'; }
static inline int rb_ispunct(int c){ return !rb_isalnum(c); }
static inline int rb_isgraph(int c){ return '!' <= c && c <= '\x7e'; }
static inline int rb_tolower(int c) { return rb_isupper(c) ? (c|0x20) : c; }
static inline int rb_toupper(int c) { return rb_islower(c) ? (c&0x5f) : c; }

#ifndef ISPRINT
#define ISASCII(c) rb_isascii(c)
#define ISPRINT(c) rb_isprint(c)
#define ISGRAPH(c) rb_isgraph(c)
#define ISSPACE(c) rb_isspace(c)
#define ISUPPER(c) rb_isupper(c)
#define ISLOWER(c) rb_islower(c)
#define ISALNUM(c) rb_isalnum(c)
#define ISALPHA(c) rb_isalpha(c)
#define ISDIGIT(c) rb_isdigit(c)
#define ISXDIGIT(c) rb_isxdigit(c)
#define ISBLANK(c) rb_isblank(c)
#define ISCNTRL(c) rb_iscntrl(c)
#define ISPUNCT(c) rb_ispunct(c)
#endif
#define TOUPPER(c) rb_toupper(c)
#define TOLOWER(c) rb_tolower(c)

int st_locale_insensitive_strcasecmp(const char *s1, const char *s2);
int st_locale_insensitive_strncasecmp(const char *s1, const char *s2, size_t n);
#define STRCASECMP(s1, s2) (st_locale_insensitive_strcasecmp((s1), (s2)))
#define STRNCASECMP(s1, s2, n) (st_locale_insensitive_strncasecmp((s1), (s2), (n)))

unsigned long ruby_strtoul(const char *str, char **endptr, int base);
#define STRTOUL(str, endptr, base) (ruby_strtoul((str), (endptr), (base)))

#define InitVM(ext) {void InitVM_##ext(void);InitVM_##ext();}

PRINTF_ARGS(int ruby_snprintf(char *str, size_t n, char const *fmt, ...), 3, 4);
int ruby_vsnprintf(char *str, size_t n, char const *fmt, va_list ap);

/* -- Remove In 3.0, Only public for rb_scan_args optimized version -- */
int rb_empty_keyword_given_p(void);

#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P) && defined(HAVE_VA_ARGS_MACRO) && defined(__OPTIMIZE__)
# define rb_scan_args(argc,argvp,fmt,...) \
    __builtin_choose_expr(__builtin_constant_p(fmt), \
        rb_scan_args0(argc,argvp,fmt,\
		      (sizeof((VALUE*[]){__VA_ARGS__})/sizeof(VALUE*)), \
		      ((VALUE*[]){__VA_ARGS__})), \
        rb_scan_args(argc,argvp,fmt,##__VA_ARGS__))
# if HAVE_ATTRIBUTE_ERRORFUNC
ERRORFUNC(("bad scan arg format"), void rb_scan_args_bad_format(const char*));
ERRORFUNC(("variable argument length doesn't match"), void rb_scan_args_length_mismatch(const char*,int));
# else
#   define rb_scan_args_bad_format(fmt) ((void)0)
#   define rb_scan_args_length_mismatch(fmt, varc) ((void)0)
# endif

# define rb_scan_args_isdigit(c) ((unsigned char)((c)-'0')<10)

#  define rb_scan_args_count_end(fmt, ofs, vari) \
     (fmt[ofs] ? -1 : (vari))

# define rb_scan_args_count_block(fmt, ofs, vari) \
    (fmt[ofs]!='&' ? \
     rb_scan_args_count_end(fmt, ofs, vari) : \
     rb_scan_args_count_end(fmt, ofs+1, vari+1))

# define rb_scan_args_count_hash(fmt, ofs, vari) \
    (fmt[ofs]!=':' ? \
     rb_scan_args_count_block(fmt, ofs, vari) : \
     rb_scan_args_count_block(fmt, ofs+1, vari+1))

# define rb_scan_args_count_trail(fmt, ofs, vari) \
    (!rb_scan_args_isdigit(fmt[ofs]) ? \
     rb_scan_args_count_hash(fmt, ofs, vari) : \
     rb_scan_args_count_hash(fmt, ofs+1, vari+(fmt[ofs]-'0')))

# define rb_scan_args_count_var(fmt, ofs, vari) \
    (fmt[ofs]!='*' ? \
     rb_scan_args_count_trail(fmt, ofs, vari) : \
     rb_scan_args_count_trail(fmt, ofs+1, vari+1))

# define rb_scan_args_count_opt(fmt, ofs, vari) \
    (!rb_scan_args_isdigit(fmt[ofs]) ? \
     rb_scan_args_count_var(fmt, ofs, vari) : \
     rb_scan_args_count_var(fmt, ofs+1, vari+fmt[ofs]-'0'))

# define rb_scan_args_count_lead(fmt, ofs, vari) \
    (!rb_scan_args_isdigit(fmt[ofs]) ? \
      rb_scan_args_count_var(fmt, ofs, vari) : \
      rb_scan_args_count_opt(fmt, ofs+1, vari+fmt[ofs]-'0'))

# define rb_scan_args_count(fmt) rb_scan_args_count_lead(fmt, 0, 0)

# if defined(__has_attribute) && __has_attribute(diagnose_if)
#  define rb_scan_args_verify(fmt, varc) (void)0
# else
# define rb_scan_args_verify(fmt, varc) \
    (sizeof(char[1-2*(rb_scan_args_count(fmt)<0)])!=1 ? \
     rb_scan_args_bad_format(fmt) : \
     sizeof(char[1-2*(rb_scan_args_count(fmt)!=(varc))])!=1 ? \
     rb_scan_args_length_mismatch(fmt, varc) : \
     (void)0)
# endif

ALWAYS_INLINE(static int rb_scan_args_lead_p(const char *fmt));
static inline int
rb_scan_args_lead_p(const char *fmt)
{
    return rb_scan_args_isdigit(fmt[0]);
}

ALWAYS_INLINE(static int rb_scan_args_n_lead(const char *fmt));
static inline int
rb_scan_args_n_lead(const char *fmt)
{
    return (rb_scan_args_lead_p(fmt) ? fmt[0]-'0' : 0);
}

ALWAYS_INLINE(static int rb_scan_args_opt_p(const char *fmt));
static inline int
rb_scan_args_opt_p(const char *fmt)
{
    return (rb_scan_args_lead_p(fmt) && rb_scan_args_isdigit(fmt[1]));
}

ALWAYS_INLINE(static int rb_scan_args_n_opt(const char *fmt));
static inline int
rb_scan_args_n_opt(const char *fmt)
{
    return (rb_scan_args_opt_p(fmt) ? fmt[1]-'0' : 0);
}

ALWAYS_INLINE(static int rb_scan_args_var_idx(const char *fmt));
static inline int
rb_scan_args_var_idx(const char *fmt)
{
    return (!rb_scan_args_lead_p(fmt) ? 0 : !rb_scan_args_isdigit(fmt[1]) ? 1 : 2);
}

ALWAYS_INLINE(static int rb_scan_args_f_var(const char *fmt));
static inline int
rb_scan_args_f_var(const char *fmt)
{
    return (fmt[rb_scan_args_var_idx(fmt)]=='*');
}

ALWAYS_INLINE(static int rb_scan_args_trail_idx(const char *fmt));
static inline int
rb_scan_args_trail_idx(const char *fmt)
{
    const int idx = rb_scan_args_var_idx(fmt);
    return idx+(fmt[idx]=='*');
}

ALWAYS_INLINE(static int rb_scan_args_n_trail(const char *fmt));
static inline int
rb_scan_args_n_trail(const char *fmt)
{
    const int idx = rb_scan_args_trail_idx(fmt);
    return (rb_scan_args_isdigit(fmt[idx]) ? fmt[idx]-'0' : 0);
}

ALWAYS_INLINE(static int rb_scan_args_hash_idx(const char *fmt));
static inline int
rb_scan_args_hash_idx(const char *fmt)
{
    const int idx = rb_scan_args_trail_idx(fmt);
    return idx+rb_scan_args_isdigit(fmt[idx]);
}

ALWAYS_INLINE(static int rb_scan_args_f_hash(const char *fmt));
static inline int
rb_scan_args_f_hash(const char *fmt)
{
    return (fmt[rb_scan_args_hash_idx(fmt)]==':');
}

ALWAYS_INLINE(static int rb_scan_args_block_idx(const char *fmt));
static inline int
rb_scan_args_block_idx(const char *fmt)
{
    const int idx = rb_scan_args_hash_idx(fmt);
    return idx+(fmt[idx]==':');
}

ALWAYS_INLINE(static int rb_scan_args_f_block(const char *fmt));
static inline int
rb_scan_args_f_block(const char *fmt)
{
    return (fmt[rb_scan_args_block_idx(fmt)]=='&');
}

# if 0
ALWAYS_INLINE(static int rb_scan_args_end_idx(const char *fmt));
static inline int
rb_scan_args_end_idx(const char *fmt)
{
    const int idx = rb_scan_args_block_idx(fmt);
    return idx+(fmt[idx]=='&');
}
# endif

/* NOTE: Use `char *fmt` instead of `const char *fmt` because of clang's bug*/
/* https://bugs.llvm.org/show_bug.cgi?id=38095 */
# define rb_scan_args0(argc, argv, fmt, varc, vars) \
    rb_scan_args_set(argc, argv, \
		     rb_scan_args_n_lead(fmt), \
		     rb_scan_args_n_opt(fmt), \
		     rb_scan_args_n_trail(fmt), \
		     rb_scan_args_f_var(fmt), \
		     rb_scan_args_f_hash(fmt), \
		     rb_scan_args_f_block(fmt), \
		     (rb_scan_args_verify(fmt, varc), vars), (char *)fmt, varc)
ALWAYS_INLINE(static int
rb_scan_args_set(int argc, const VALUE *argv,
		 int n_lead, int n_opt, int n_trail,
		 int f_var, int f_hash, int f_block,
		 VALUE *vars[], char *fmt, int varc));

inline int
rb_scan_args_set(int argc, const VALUE *argv,
		 int n_lead, int n_opt, int n_trail,
		 int f_var, int f_hash, int f_block,
		 VALUE *vars[], RB_UNUSED_VAR(char *fmt), RB_UNUSED_VAR(int varc))
# if defined(__has_attribute) && __has_attribute(diagnose_if)
    __attribute__((diagnose_if(rb_scan_args_count(fmt)<0,"bad scan arg format","error")))
    __attribute__((diagnose_if(rb_scan_args_count(fmt)!=varc,"variable argument length doesn't match","error")))
# endif
{
    int i, argi = 0, vari = 0, last_idx = -1;
    VALUE *var, hash = Qnil, last_hash = 0;
    const int n_mand = n_lead + n_trail;
    int keyword_given = rb_keyword_given_p();
    int empty_keyword_given = 0;
    VALUE tmp_buffer = 0;

    if (!keyword_given) {
        empty_keyword_given = rb_empty_keyword_given_p();
    }

    /* capture an option hash - phase 1: pop */
    /* Ignore final positional hash if empty keywords given */
    if (argc > 0 && !(f_hash && empty_keyword_given)) {
        VALUE last = argv[argc - 1];

        if (f_hash && n_mand < argc) {
            if (keyword_given) {
                if (!RB_TYPE_P(last, T_HASH)) {
                    rb_warn("Keyword flag set when calling rb_scan_args, but last entry is not a hash");
                }
                else {
                    hash = last;
                }
            }
            else if (NIL_P(last)) {
                /* For backwards compatibility, nil is taken as an empty
                   option hash only if it is not ambiguous; i.e. '*' is
                   not specified and arguments are given more than sufficient.
                   This will be removed in Ruby 3. */
                if (!f_var && n_mand + n_opt < argc) {
                    rb_warn("The last argument is nil, treating as empty keywords");
                    argc--;
                }
            }
            else {
                hash = rb_check_hash_type(last);
            }

            /* Ruby 3: Remove if branch, as it will not attempt to split hashes */
            if (!NIL_P(hash)) {
                VALUE opts = rb_extract_keywords(&hash);

                if (!(last_hash = hash)) {
                    if (!keyword_given) {
                        /* Warn if treating positional as keyword, as in Ruby 3,
                           this will be an error */
                        rb_warn("Using the last argument as keyword parameters is deprecated");
                    }
                    argc--;
                }
                else {
                    /* Warn if splitting either positional hash to keywords or keywords
                       to positional hash, as in Ruby 3, no splitting will be done */
                    rb_warn("The last argument is split into positional and keyword parameters");
                    last_idx = argc - 1;
                }
                hash = opts ? opts : Qnil;
            }
        }
        else if (f_hash && keyword_given && n_mand == argc) {
            /* Warn if treating keywords as positional, as in Ruby 3, this will be an error */
            rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
        }
    }
    if (f_hash && n_mand > 0 && n_mand == argc+1 && empty_keyword_given) {
        VALUE *ptr = (VALUE *)rb_alloc_tmp_buffer2(&tmp_buffer, argc+1, sizeof(VALUE));
        memcpy(ptr, argv, sizeof(VALUE)*argc);
        ptr[argc] = rb_hash_new();
        argc++;
        *(&argv) = ptr;
        rb_warn("Passing the keyword argument as the last hash parameter is deprecated");
    }


    if (argc < n_mand) {
        goto argc_error;
    }

    /* capture leading mandatory arguments */
    for (i = n_lead; i-- > 0; ) {
	var = vars[vari++];
	if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
	argi++;
    }
    /* capture optional arguments */
    for (i = n_opt; i-- > 0; ) {
	var = vars[vari++];
	if (argi < argc - n_trail) {
	    if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
	    argi++;
	}
	else {
	    if (var) *var = Qnil;
	}
    }
    /* capture variable length arguments */
    if (f_var) {
	int n_var = argc - argi - n_trail;

	var = vars[vari++];
	if (0 < n_var) {
	    if (var) {
		int f_last = (last_idx + 1 == argc - n_trail);
		*var = rb_ary_new4(n_var-f_last, &argv[argi]);
		if (f_last) rb_ary_push(*var, last_hash);
	    }
	    argi += n_var;
	}
	else {
	    if (var) *var = rb_ary_new();
	}
    }
    /* capture trailing mandatory arguments */
    for (i = n_trail; i-- > 0; ) {
	var = vars[vari++];
	if (var) *var = (argi == last_idx) ? last_hash : argv[argi];
	argi++;
    }
    /* capture an option hash - phase 2: assignment */
    if (f_hash) {
	var = vars[vari++];
	if (var) *var = hash;
    }
    /* capture iterator block */
    if (f_block) {
	var = vars[vari++];
	if (rb_block_given_p()) {
	    *var = rb_block_proc();
	}
	else {
	    *var = Qnil;
	}
    }

    if (argi < argc) {
      argc_error:
        if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
        rb_error_arity(argc, n_mand, f_var ? UNLIMITED_ARGUMENTS : n_mand + n_opt);
    }

    if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
    return argc;
}
#endif

#if defined(__GNUC__) && defined(HAVE_VA_ARGS_MACRO) && defined(__OPTIMIZE__)
# define rb_yield_values(argc, ...) \
__extension__({ \
	const int rb_yield_values_argc = (argc); \
	const VALUE rb_yield_values_args[] = {__VA_ARGS__}; \
	const int rb_yield_values_nargs = \
	    (int)(sizeof(rb_yield_values_args) / sizeof(VALUE)); \
	rb_yield_values2( \
	    rb_varargs_argc_check(rb_yield_values_argc, rb_yield_values_nargs), \
	    rb_yield_values_nargs ? rb_yield_values_args : NULL); \
    })

# define rb_funcall(recv, mid, argc, ...) \
__extension__({ \
	const int rb_funcall_argc = (argc); \
	const VALUE rb_funcall_args[] = {__VA_ARGS__}; \
	const int rb_funcall_nargs = \
	    (int)(sizeof(rb_funcall_args) / sizeof(VALUE)); \
        rb_funcallv(recv, mid, \
	    rb_varargs_argc_check(rb_funcall_argc, rb_funcall_nargs), \
	    rb_funcall_nargs ? rb_funcall_args : NULL); \
    })
#endif

#ifndef RUBY_DONT_SUBST
#include "ruby/subst.h"
#endif

/**
 * @defgroup embed CRuby Embedding APIs
 * CRuby interpreter APIs. These are APIs to embed MRI interpreter into your
 * program.
 * These functions are not a part of Ruby extension library API.
 * Extension libraries of Ruby should not depend on these functions.
 * @{
 */

/** @defgroup ruby1 ruby(1) implementation
 * A part of the implementation of ruby(1) command.
 * Other programs that embed Ruby interpreter do not always need to use these
 * functions.
 * @{
 */

void ruby_sysinit(int *argc, char ***argv);
void ruby_init(void);
void* ruby_options(int argc, char** argv);
int ruby_executable_node(void *n, int *status);
int ruby_run_node(void *n);

/* version.c */
void ruby_show_version(void);
void ruby_show_copyright(void);


/*! A convenience macro to call ruby_init_stack(). Must be placed just after
 *  variable declarations */
#define RUBY_INIT_STACK \
    VALUE variable_in_this_stack_frame; \
    ruby_init_stack(&variable_in_this_stack_frame);
/*! @} */

void ruby_init_stack(volatile VALUE*);

int ruby_setup(void);
int ruby_cleanup(volatile int);

void ruby_finalize(void);
NORETURN(void ruby_stop(int));

void ruby_set_stack_size(size_t);
int ruby_stack_check(void);
size_t ruby_stack_length(VALUE**);

int ruby_exec_node(void *n);

void ruby_script(const char* name);
void ruby_set_script_name(VALUE name);

void ruby_prog_init(void);
void ruby_set_argv(int, char**);
void *ruby_process_options(int, char**);
void ruby_init_loadpath(void);
void ruby_incpush(const char*);
void ruby_sig_finalize(void);

/*! @} */

#if !defined RUBY_EXPORT && !defined RUBY_NO_OLD_COMPATIBILITY
# include "ruby/backward.h"
#endif

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
extern "C++" {
#endif

#ifdef RB_METHOD_DEFINITION_DECL

RB_METHOD_DEFINITION_DECL(rb_define_method, (2,3), (VALUE klass, const char *name), (klass, name))
#ifdef __cplusplus
#define rb_define_method(m, n, f, a) rb_define_method_tmpl<a>::define(m, n, f)
#else
#define rb_define_method_if_constexpr(x, t, f)    __builtin_choose_expr(__builtin_choose_expr(__builtin_constant_p(x),(x),0),(t),(f))
#define rb_define_method_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_method15,rb_define_methodm3)
#define rb_define_method_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_method14,rb_define_method_choose_prototype15(n))
#define rb_define_method_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_method13,rb_define_method_choose_prototype14(n))
#define rb_define_method_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_method12,rb_define_method_choose_prototype13(n))
#define rb_define_method_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_method11,rb_define_method_choose_prototype12(n))
#define rb_define_method_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_method10,rb_define_method_choose_prototype11(n))
#define rb_define_method_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_method9, rb_define_method_choose_prototype10(n))
#define rb_define_method_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_method8, rb_define_method_choose_prototype9(n))
#define rb_define_method_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_method7, rb_define_method_choose_prototype8(n))
#define rb_define_method_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_method6, rb_define_method_choose_prototype7(n))
#define rb_define_method_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_method5, rb_define_method_choose_prototype6(n))
#define rb_define_method_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_method4, rb_define_method_choose_prototype5(n))
#define rb_define_method_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_method3, rb_define_method_choose_prototype4(n))
#define rb_define_method_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_method2, rb_define_method_choose_prototype3(n))
#define rb_define_method_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_method1, rb_define_method_choose_prototype2(n))
#define rb_define_method_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_method0, rb_define_method_choose_prototype1(n))
#define rb_define_method_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_methodm1,rb_define_method_choose_prototype0(n))
#define rb_define_method_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_methodm2,rb_define_method_choose_prototypem1(n))
#define rb_define_method_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_methodm3,rb_define_method_choose_prototypem2(n))
#define rb_define_method(klass, mid, func, arity) rb_define_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

RB_METHOD_DEFINITION_DECL(rb_define_module_function, (2,3), (VALUE klass, const char *name), (klass, name))
#ifdef __cplusplus
#define rb_define_module_function(m, n, f, a) rb_define_module_function_tmpl<a>::define(m, n, f)
#else
#define rb_define_module_function_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_module_function15,rb_define_module_functionm3)
#define rb_define_module_function_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_module_function14,rb_define_module_function_choose_prototype15(n))
#define rb_define_module_function_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_module_function13,rb_define_module_function_choose_prototype14(n))
#define rb_define_module_function_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_module_function12,rb_define_module_function_choose_prototype13(n))
#define rb_define_module_function_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_module_function11,rb_define_module_function_choose_prototype12(n))
#define rb_define_module_function_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_module_function10,rb_define_module_function_choose_prototype11(n))
#define rb_define_module_function_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_module_function9, rb_define_module_function_choose_prototype10(n))
#define rb_define_module_function_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_module_function8, rb_define_module_function_choose_prototype9(n))
#define rb_define_module_function_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_module_function7, rb_define_module_function_choose_prototype8(n))
#define rb_define_module_function_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_module_function6, rb_define_module_function_choose_prototype7(n))
#define rb_define_module_function_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_module_function5, rb_define_module_function_choose_prototype6(n))
#define rb_define_module_function_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_module_function4, rb_define_module_function_choose_prototype5(n))
#define rb_define_module_function_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_module_function3, rb_define_module_function_choose_prototype4(n))
#define rb_define_module_function_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_module_function2, rb_define_module_function_choose_prototype3(n))
#define rb_define_module_function_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_module_function1, rb_define_module_function_choose_prototype2(n))
#define rb_define_module_function_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_module_function0, rb_define_module_function_choose_prototype1(n))
#define rb_define_module_function_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_module_functionm1,rb_define_module_function_choose_prototype0(n))
#define rb_define_module_function_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_module_functionm2,rb_define_module_function_choose_prototypem1(n))
#define rb_define_module_function_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_module_functionm3,rb_define_module_function_choose_prototypem2(n))
#define rb_define_module_function(klass, mid, func, arity) rb_define_module_function_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

RB_METHOD_DEFINITION_DECL(rb_define_global_function, (1,2), (const char *name), (name))
#ifdef __cplusplus
#define rb_define_global_function(n, f, a) rb_define_global_function_tmpl<a>::define(n, f)
#else
#define rb_define_global_function_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_global_function15,rb_define_global_functionm3)
#define rb_define_global_function_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_global_function14,rb_define_global_function_choose_prototype15(n))
#define rb_define_global_function_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_global_function13,rb_define_global_function_choose_prototype14(n))
#define rb_define_global_function_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_global_function12,rb_define_global_function_choose_prototype13(n))
#define rb_define_global_function_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_global_function11,rb_define_global_function_choose_prototype12(n))
#define rb_define_global_function_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_global_function10,rb_define_global_function_choose_prototype11(n))
#define rb_define_global_function_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_global_function9, rb_define_global_function_choose_prototype10(n))
#define rb_define_global_function_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_global_function8, rb_define_global_function_choose_prototype9(n))
#define rb_define_global_function_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_global_function7, rb_define_global_function_choose_prototype8(n))
#define rb_define_global_function_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_global_function6, rb_define_global_function_choose_prototype7(n))
#define rb_define_global_function_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_global_function5, rb_define_global_function_choose_prototype6(n))
#define rb_define_global_function_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_global_function4, rb_define_global_function_choose_prototype5(n))
#define rb_define_global_function_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_global_function3, rb_define_global_function_choose_prototype4(n))
#define rb_define_global_function_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_global_function2, rb_define_global_function_choose_prototype3(n))
#define rb_define_global_function_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_global_function1, rb_define_global_function_choose_prototype2(n))
#define rb_define_global_function_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_global_function0, rb_define_global_function_choose_prototype1(n))
#define rb_define_global_function_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_global_functionm1,rb_define_global_function_choose_prototype0(n))
#define rb_define_global_function_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_global_functionm2,rb_define_global_function_choose_prototypem1(n))
#define rb_define_global_function_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_global_functionm3,rb_define_global_function_choose_prototypem2(n))
#define rb_define_global_function(mid, func, arity) rb_define_global_function_choose_prototypem3((arity),(func))((mid),(func),(arity));
#endif

#endif

#if defined(RUBY_DEVEL) && RUBY_DEVEL && (!defined(__cplusplus) || defined(RB_METHOD_DEFINITION_DECL))
# define RUBY_METHOD_FUNC(func) (func)
#else
# define RUBY_METHOD_FUNC(func) ((VALUE (*)(ANYARGS))(func))
#endif

#ifdef __cplusplus
#include "backward/cxxanyargs.hpp"

#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C++" { */
#endif

#endif /* RUBY_RUBY_H */
PKJH[�I;		include/ruby/backward.hnu�[���#ifndef RUBY_RUBY_BACKWARD_H
#define RUBY_RUBY_BACKWARD_H 1

#define RClass RClassDeprecated
#ifndef __cplusplus
DEPRECATED_TYPE(("RClass is internal use only"),
struct RClass {
    struct RBasic basic;
});
#endif

#define DECLARE_DEPRECATED_FEATURE(ver, func) \
    NORETURN(ERRORFUNC(("deprecated since "#ver), DEPRECATED(void func(void))))

/* eval.c */
DECLARE_DEPRECATED_FEATURE(2.2, rb_disable_super);
DECLARE_DEPRECATED_FEATURE(2.2, rb_enable_super);

/* hash.c */
DECLARE_DEPRECATED_FEATURE(2.2, rb_hash_iter_lev);
DECLARE_DEPRECATED_FEATURE(2.2, rb_hash_ifnone);

/* string.c */
DECLARE_DEPRECATED_FEATURE(2.2, rb_str_associate);
DECLARE_DEPRECATED_FEATURE(2.2, rb_str_associated);

/* variable.c */
DEPRECATED(void rb_autoload(VALUE, ID, const char*));

/* vm.c */
DECLARE_DEPRECATED_FEATURE(2.2, rb_clear_cache);
DECLARE_DEPRECATED_FEATURE(2.2, rb_frame_pop);

#define DECLARE_DEPRECATED_INTERNAL_FEATURE(func) \
    NORETURN(ERRORFUNC(("deprecated internal function"), DEPRECATED(void func(void))))

/* eval.c */
NORETURN(ERRORFUNC(("internal function"), void rb_frozen_class_p(VALUE)));
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_exec_end_proc);

/* error.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_compile_error);
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_compile_error_with_enc);
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_compile_error_append);

/* gc.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_gc_call_finalizer_at_exit);

/* signal.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_trap_exit);

/* struct.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_struct_ptr);

/* thread.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_clear_trace_func);

/* variable.c */
DECLARE_DEPRECATED_INTERNAL_FEATURE(rb_generic_ivar_table);
NORETURN(ERRORFUNC(("internal function"), VALUE rb_mod_const_missing(VALUE, VALUE)));

/* from version.c */
#ifndef RUBY_SHOW_COPYRIGHT_TO_DIE
# define RUBY_SHOW_COPYRIGHT_TO_DIE 1
#endif
#if RUBY_SHOW_COPYRIGHT_TO_DIE
/* for source code backward compatibility */
DEPRECATED(static inline int ruby_show_copyright_to_die(int));
static inline int
ruby_show_copyright_to_die(int exitcode)
{
    ruby_show_copyright();
    return exitcode;
}
#define ruby_show_copyright() /* defer EXIT_SUCCESS */ \
    (exit(ruby_show_copyright_to_die(EXIT_SUCCESS)))
#endif

#endif /* RUBY_RUBY_BACKWARD_H */
PKJH[/�U;vvinclude/ruby/subst.hnu�[���#ifndef RUBY_SUBST_H
#define RUBY_SUBST_H 1

#undef snprintf
#undef vsnprintf
#define snprintf ruby_snprintf
#define vsnprintf ruby_vsnprintf

#ifdef BROKEN_CLOSE
#undef getpeername
#define getpeername ruby_getpeername
#undef getsockname
#define getsockname ruby_getsockname
#undef shutdown
#define shutdown ruby_shutdown
#undef close
#define close ruby_close
#endif
#endif
PKJH[���CCinclude/ruby/thread.hnu�[���/**********************************************************************

  thread.h -

  $Author: matz $
  created at: Tue Jul 10 17:35:43 JST 2012

  Copyright (C) 2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_THREAD_H
#define RUBY_THREAD_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/intern.h"

/* flags for rb_nogvl */
#define RB_NOGVL_INTR_FAIL       (0x1)
#define RB_NOGVL_UBF_ASYNC_SAFE  (0x2)

RUBY_SYMBOL_EXPORT_BEGIN

void *rb_thread_call_with_gvl(void *(*func)(void *), void *data1);

void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
				 rb_unblock_function_t *ubf, void *data2);
void *rb_thread_call_without_gvl2(void *(*func)(void *), void *data1,
				  rb_unblock_function_t *ubf, void *data2);

/*
 * XXX: unstable/unapproved - out-of-tree code should NOT not depend
 * on this until it hits Ruby 2.6.1
 */
void *rb_nogvl(void *(*func)(void *), void *data1,
               rb_unblock_function_t *ubf, void *data2,
               int flags);

#define RUBY_CALL_WO_GVL_FLAG_SKIP_CHECK_INTS_AFTER 0x01
#define RUBY_CALL_WO_GVL_FLAG_SKIP_CHECK_INTS_

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_THREAD_H */
PKKH[�����include/ruby/digest.hnu�[���/************************************************

  digest.h - header file for ruby digest modules

  $Author$
  created at: Fri May 25 08:54:56 JST 2001


  Copyright (C) 2001-2006 Akinori MUSHA

  $RoughId: digest.h,v 1.3 2001/07/13 15:38:27 knu Exp $
  $Id$

************************************************/

#include "ruby.h"

#define RUBY_DIGEST_API_VERSION	3

typedef int (*rb_digest_hash_init_func_t)(void *);
typedef void (*rb_digest_hash_update_func_t)(void *, unsigned char *, size_t);
typedef int (*rb_digest_hash_finish_func_t)(void *, unsigned char *);

typedef struct {
    int api_version;
    size_t digest_len;
    size_t block_len;
    size_t ctx_size;
    rb_digest_hash_init_func_t init_func;
    rb_digest_hash_update_func_t update_func;
    rb_digest_hash_finish_func_t finish_func;
} rb_digest_metadata_t;

#define DEFINE_UPDATE_FUNC_FOR_UINT(name) \
void \
rb_digest_##name##_update(void *ctx, unsigned char *ptr, size_t size) \
{ \
    const unsigned int stride = 16384; \
 \
    for (; size > stride; size -= stride, ptr += stride) { \
	name##_Update(ctx, ptr, stride); \
    } \
    if (size > 0) name##_Update(ctx, ptr, size); \
}

#define DEFINE_FINISH_FUNC_FROM_FINAL(name) \
int \
rb_digest_##name##_finish(void *ctx, unsigned char *ptr) \
{ \
    return name##_Final(ptr, ctx); \
}

static inline VALUE
rb_digest_namespace(void)
{
    rb_require("digest");
    return rb_path2class("Digest");
}

static inline ID
rb_id_metadata(void)
{
    return rb_intern_const("metadata");
}
PKKH[�
jM		include/ruby/regex.hnu�[���/**********************************************************************

  regex.h -

  $Author$

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef ONIGURUMA_REGEX_H
#define ONIGURUMA_REGEX_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#ifdef RUBY
#include "ruby/oniguruma.h"
#else
#include "oniguruma.h"
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#ifndef ONIG_RUBY_M17N

ONIG_EXTERN OnigEncoding    OnigEncDefaultCharEncoding;

#define mbclen(p,e,enc)  rb_enc_mbclen((p),(e),(enc))

#endif /* ifndef ONIG_RUBY_M17N */

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* ONIGURUMA_REGEX_H */
PKKH[�n�N�3�3include/ruby/defines.hnu�[���/************************************************

  defines.h -

  $Author$
  created at: Wed May 18 00:21:44 JST 1994

************************************************/

#ifndef RUBY_DEFINES_H
#define RUBY_DEFINES_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/config.h"
#ifdef RUBY_EXTCONF_H
#include RUBY_EXTCONF_H
#endif

/* function attributes */
#ifndef CONSTFUNC
# define CONSTFUNC(x) x
#endif
#ifndef PUREFUNC
# define PUREFUNC(x) x
#endif
#ifndef DEPRECATED
# define DEPRECATED(x) x
#endif
#ifndef DEPRECATED_BY
# define DEPRECATED_BY(n,x) DEPRECATED(x)
#endif
#ifndef DEPRECATED_TYPE
# define DEPRECATED_TYPE(mesg, decl) decl
#endif
#ifndef RUBY_CXX_DEPRECATED
# define RUBY_CXX_DEPRECATED(mesg) /* nothing */
#endif
#ifndef NOINLINE
# define NOINLINE(x) x
#endif
#ifndef ALWAYS_INLINE
# define ALWAYS_INLINE(x) x
#endif
#ifndef ERRORFUNC
# define HAVE_ATTRIBUTE_ERRORFUNC 0
# define ERRORFUNC(mesg, x) x
#else
# define HAVE_ATTRIBUTE_ERRORFUNC 1
#endif
#ifndef WARNINGFUNC
# define HAVE_ATTRIBUTE_WARNINGFUNC 0
# define WARNINGFUNC(mesg, x) x
#else
# define HAVE_ATTRIBUTE_WARNINGFUNC 1
#endif

#ifndef GCC_VERSION_SINCE
# if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(__clang__)
#  define GCC_VERSION_SINCE(major, minor, patchlevel) \
    ((__GNUC__ > (major)) ||  \
     ((__GNUC__ == (major) && \
       ((__GNUC_MINOR__ > (minor)) || \
        (__GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ >= (patchlevel))))))
# else
#  define GCC_VERSION_SINCE(major, minor, patchlevel) 0
# endif
#endif
#ifndef GCC_VERSION_BEFORE
# if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(__clang__)
#  define GCC_VERSION_BEFORE(major, minor, patchlevel) \
    ((__GNUC__ < (major)) ||  \
     ((__GNUC__ == (major) && \
       ((__GNUC_MINOR__ < (minor)) || \
        (__GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ <= (patchlevel))))))
# else
#  define GCC_VERSION_BEFORE(major, minor, patchlevel) 0
# endif
#endif

/* likely */
#if __GNUC__ >= 3
#define RB_LIKELY(x)   (__builtin_expect(!!(x), 1))
#define RB_UNLIKELY(x) (__builtin_expect(!!(x), 0))
#else /* __GNUC__ >= 3 */
#define RB_LIKELY(x)   (x)
#define RB_UNLIKELY(x) (x)
#endif /* __GNUC__ >= 3 */

/*
  cold attribute for code layout improvements
  RUBY_FUNC_ATTRIBUTE not used because MSVC does not like nested func macros
 */
#if defined(__clang__) || GCC_VERSION_SINCE(4, 3, 0)
#define COLDFUNC __attribute__((cold))
#else
#define COLDFUNC
#endif

#ifdef __GNUC__
#if defined __MINGW_PRINTF_FORMAT
#define PRINTF_ARGS(decl, string_index, first_to_check) \
  decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
#else
#define PRINTF_ARGS(decl, string_index, first_to_check) \
  decl __attribute__((format(printf, string_index, first_to_check)))
#endif
#else
#define PRINTF_ARGS(decl, string_index, first_to_check) decl
#endif

#ifdef __GNUC__
#define RB_GNUC_EXTENSION __extension__
#define RB_GNUC_EXTENSION_BLOCK(x) __extension__ ({ x; })
#else
#define RB_GNUC_EXTENSION
#define RB_GNUC_EXTENSION_BLOCK(x) (x)
#endif

/* AC_INCLUDES_DEFAULT */
#include <stdio.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# ifdef HAVE_STDLIB_H
#  include <stdlib.h>
# endif
#endif
#ifdef HAVE_STRING_H
# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
#  include <memory.h>
# endif
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#ifdef HAVE_STDALIGN_H
# include <stdalign.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif

#ifdef RUBY_USE_SETJMPEX
#include <setjmpex.h>
#endif

#include "ruby/missing.h"

#define RUBY

#ifdef __cplusplus
# ifndef  HAVE_PROTOTYPES
#  define HAVE_PROTOTYPES 1
# endif
# ifndef  HAVE_STDARG_PROTOTYPES
#  define HAVE_STDARG_PROTOTYPES 1
# endif
#endif

#undef _
#ifdef HAVE_PROTOTYPES
# define _(args) args
#else
# define _(args) ()
#endif

#undef __
#ifdef HAVE_STDARG_PROTOTYPES
# define __(args) args
#else
# define __(args) ()
#endif

#ifdef __cplusplus
#define ANYARGS ...
#else
#define ANYARGS
#endif

#ifndef RUBY_SYMBOL_EXPORT_BEGIN
# define RUBY_SYMBOL_EXPORT_BEGIN /* begin */
# define RUBY_SYMBOL_EXPORT_END   /* end */
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#define xmalloc ruby_xmalloc
#define xmalloc2 ruby_xmalloc2
#define xcalloc ruby_xcalloc
#define xrealloc ruby_xrealloc
#define xrealloc2 ruby_xrealloc2
#define xfree ruby_xfree

#if GCC_VERSION_SINCE(4,3,0)
# define RUBY_ATTR_ALLOC_SIZE(params) __attribute__ ((alloc_size params))
#elif defined(__has_attribute)
# if __has_attribute(alloc_size)
#  define RUBY_ATTR_ALLOC_SIZE(params) __attribute__((__alloc_size__ params))
# endif
#endif
#ifndef RUBY_ATTR_ALLOC_SIZE
# define RUBY_ATTR_ALLOC_SIZE(params)
#endif

#ifdef __has_attribute
# if __has_attribute(malloc)
#  define RUBY_ATTR_MALLOC __attribute__((__malloc__))
# endif
#endif
#ifndef RUBY_ATTR_MALLOC
# define RUBY_ATTR_MALLOC
#endif

#ifdef __has_attribute
# if __has_attribute(returns_nonnull)
#  define RUBY_ATTR_RETURNS_NONNULL __attribute__((__returns_nonnull__))
# endif
#endif
#ifndef RUBY_ATTR_RETURNS_NONNULL
# define RUBY_ATTR_RETURNS_NONNULL
#endif

void *ruby_xmalloc(size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1));
void *ruby_xmalloc2(size_t,size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1,2));
void *ruby_xcalloc(size_t,size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1,2));
void *ruby_xrealloc(void*,size_t) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2));
void *ruby_xrealloc2(void*,size_t,size_t) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2,3));
void ruby_xfree(void*);

#ifndef USE_GC_MALLOC_OBJ_INFO_DETAILS
#define USE_GC_MALLOC_OBJ_INFO_DETAILS 0
#endif

#if USE_GC_MALLOC_OBJ_INFO_DETAILS

void *ruby_xmalloc_body(size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1));
void *ruby_xmalloc2_body(size_t,size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1,2));
void *ruby_xcalloc_body(size_t,size_t) RUBY_ATTR_MALLOC RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((1,2));
void *ruby_xrealloc_body(void*,size_t) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2));
void *ruby_xrealloc2_body(void*,size_t,size_t) RUBY_ATTR_RETURNS_NONNULL RUBY_ATTR_ALLOC_SIZE((2,3));

#define ruby_xmalloc(s1)            ruby_xmalloc_with_location(s1, __FILE__, __LINE__)
#define ruby_xmalloc2(s1, s2)       ruby_xmalloc2_with_location(s1, s2, __FILE__, __LINE__)
#define ruby_xcalloc(s1, s2)        ruby_xcalloc_with_location(s1, s2, __FILE__, __LINE__)
#define ruby_xrealloc(ptr, s1)      ruby_xrealloc_with_location(ptr, s1, __FILE__, __LINE__)
#define ruby_xrealloc2(ptr, s1, s2) ruby_xrealloc2_with_location(ptr, s1, s2, __FILE__, __LINE__)

extern const char *ruby_malloc_info_file;
extern int ruby_malloc_info_line;

static inline void *
ruby_xmalloc_with_location(size_t s, const char *file, int line)
{
    void *ptr;
    ruby_malloc_info_file = file;
    ruby_malloc_info_line = line;
    ptr = ruby_xmalloc_body(s);
    ruby_malloc_info_file = NULL;
    return ptr;
}

static inline void *
ruby_xmalloc2_with_location(size_t s1, size_t s2, const char *file, int line)
{
    void *ptr;
    ruby_malloc_info_file = file;
    ruby_malloc_info_line = line;
    ptr = ruby_xmalloc2_body(s1, s2);
    ruby_malloc_info_file = NULL;
    return ptr;
}

static inline void *
ruby_xcalloc_with_location(size_t s1, size_t s2, const char *file, int line)
{
    void *ptr;
    ruby_malloc_info_file = file;
    ruby_malloc_info_line = line;
    ptr = ruby_xcalloc_body(s1, s2);
    ruby_malloc_info_file = NULL;
    return ptr;
}

static inline void *
ruby_xrealloc_with_location(void *ptr, size_t s, const char *file, int line)
{
    void *rptr;
    ruby_malloc_info_file = file;
    ruby_malloc_info_line = line;
    rptr = ruby_xrealloc_body(ptr, s);
    ruby_malloc_info_file = NULL;
    return rptr;
}

static inline void *
ruby_xrealloc2_with_location(void *ptr, size_t s1, size_t s2, const char *file, int line)
{
    void *rptr;
    ruby_malloc_info_file = file;
    ruby_malloc_info_line = line;
    rptr = ruby_xrealloc2_body(ptr, s1, s2);
    ruby_malloc_info_file = NULL;
    return rptr;
}
#endif

#define STRINGIZE(expr) STRINGIZE0(expr)
#ifndef STRINGIZE0
#define STRINGIZE0(expr) #expr
#endif

#ifdef HAVE_LONG_LONG
# define HAVE_TRUE_LONG_LONG 1
#endif

#if SIZEOF_LONG_LONG > 0
# define LONG_LONG long long
#elif SIZEOF___INT64 > 0
# define HAVE_LONG_LONG 1
# define LONG_LONG __int64
# undef SIZEOF_LONG_LONG
# define SIZEOF_LONG_LONG SIZEOF___INT64
#endif

#ifdef __CYGWIN__
#undef _WIN32
#endif

#if defined(_WIN32)
/*
  DOSISH mean MS-Windows style filesystem.
  But you should use more precise macros like DOSISH_DRIVE_LETTER, PATH_SEP,
  ENV_IGNORECASE or CASEFOLD_FILESYSTEM.
 */
#define DOSISH 1
# define DOSISH_DRIVE_LETTER
#endif

#ifdef AC_APPLE_UNIVERSAL_BUILD
#undef WORDS_BIGENDIAN
#ifdef __BIG_ENDIAN__
#define WORDS_BIGENDIAN
#endif
#endif

#ifdef _WIN32
#include "ruby/win32.h"
#endif

#ifdef RUBY_EXPORT
#undef RUBY_EXTERN

#ifndef FALSE
# define FALSE 0
#elif FALSE
# error FALSE must be false
#endif
#ifndef TRUE
# define TRUE 1
#elif !TRUE
# error TRUE must be true
#endif

#endif

#ifndef RUBY_FUNC_EXPORTED
#define RUBY_FUNC_EXPORTED
#endif

/* These macros are used for functions which are exported only for MJIT
   and NOT ensured to be exported in future versions. */
#define MJIT_FUNC_EXPORTED RUBY_FUNC_EXPORTED
#define MJIT_SYMBOL_EXPORT_BEGIN RUBY_SYMBOL_EXPORT_BEGIN
#define MJIT_SYMBOL_EXPORT_END RUBY_SYMBOL_EXPORT_END

#if defined(MJIT_HEADER) && defined(_MSC_VER)
# undef MJIT_FUNC_EXPORTED
# define MJIT_FUNC_EXPORTED static
#endif

#ifndef RUBY_EXTERN
#define RUBY_EXTERN extern
#endif

#ifndef EXTERN
# if defined __GNUC__
#   define EXTERN _Pragma("message \"EXTERN is deprecated, use RUBY_EXTERN instead\""); \
    RUBY_EXTERN
# elif defined _MSC_VER
#   define EXTERN __pragma(message(__FILE__"("STRINGIZE(__LINE__)"): warning: "\
				   "EXTERN is deprecated, use RUBY_EXTERN instead")); \
    RUBY_EXTERN
# else
#   define EXTERN <-<-"EXTERN is deprecated, use RUBY_EXTERN instead"->->
# endif
#endif

#ifndef RUBY_MBCHAR_MAXSIZE
#define RUBY_MBCHAR_MAXSIZE INT_MAX
        /* MB_CUR_MAX will not work well in C locale */
#endif

#if defined(__sparc)
void rb_sparc_flush_register_windows(void);
#  define FLUSH_REGISTER_WINDOWS rb_sparc_flush_register_windows()
#else
#  define FLUSH_REGISTER_WINDOWS ((void)0)
#endif

#if defined(DOSISH)
#define PATH_SEP ";"
#else
#define PATH_SEP ":"
#endif
#define PATH_SEP_CHAR PATH_SEP[0]

#define PATH_ENV "PATH"

#if defined(DOSISH)
#define ENV_IGNORECASE
#endif

#ifndef CASEFOLD_FILESYSTEM
# if defined DOSISH
#   define CASEFOLD_FILESYSTEM 1
# else
#   define CASEFOLD_FILESYSTEM 0
# endif
#endif

#ifndef DLEXT_MAXLEN
#define DLEXT_MAXLEN 4
#endif

#ifndef RUBY_PLATFORM
#define RUBY_PLATFORM "unknown-unknown"
#endif

#ifndef FUNC_MINIMIZED
#define FUNC_MINIMIZED(x) x
#endif
#ifndef FUNC_UNOPTIMIZED
#define FUNC_UNOPTIMIZED(x) x
#endif
#ifndef RUBY_ALIAS_FUNCTION_TYPE
#define RUBY_ALIAS_FUNCTION_TYPE(type, prot, name, args) \
    FUNC_MINIMIZED(type prot) {return (type)name args;}
#endif
#ifndef RUBY_ALIAS_FUNCTION_VOID
#define RUBY_ALIAS_FUNCTION_VOID(prot, name, args) \
    FUNC_MINIMIZED(void prot) {name args;}
#endif
#ifndef RUBY_ALIAS_FUNCTION
#define RUBY_ALIAS_FUNCTION(prot, name, args) \
    RUBY_ALIAS_FUNCTION_TYPE(VALUE, prot, name, args)
#endif
#ifndef RUBY_FUNC_NONNULL
#define RUBY_FUNC_NONNULL(n, x) x
#endif

#ifndef UNALIGNED_WORD_ACCESS
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
     defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
     defined(__powerpc64__) || \
     defined(__aarch64__) || \
     defined(__mc68020__)
#   define UNALIGNED_WORD_ACCESS 1
# else
#   define UNALIGNED_WORD_ACCESS 0
# endif
#endif
#ifndef PACKED_STRUCT
# define PACKED_STRUCT(x) x
#endif
#ifndef PACKED_STRUCT_UNALIGNED
# if UNALIGNED_WORD_ACCESS
#   define PACKED_STRUCT_UNALIGNED(x) PACKED_STRUCT(x)
# else
#   define PACKED_STRUCT_UNALIGNED(x) x
# endif
#endif

#ifndef RUBY_ALIGNAS
#define RUBY_ALIGNAS(x) /* x */
#endif

#ifdef RUBY_ALIGNOF
/* OK, take that definition */
#elif defined(__cplusplus) && (__cplusplus >= 201103L)
#define RUBY_ALIGNOF alignof
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
#define RUBY_ALIGNOF _Alignof
#else
#define RUBY_ALIGNOF(type) ((size_t)offsetof(struct { char f1; type f2; }, f2))
#endif

#define NORETURN_STYLE_NEW 1
#ifdef NORETURN
/* OK, take that definition */
#elif defined(__cplusplus) && (__cplusplus >= 201103L)
#define NORETURN(x) [[ noreturn ]] x
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
#define NORETURN(x) _Noreturn x
#else
#define NORETURN(x) x
#endif

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_DEFINES_H */
PKKH[��Ky G Ginclude/ruby/encoding.hnu�[���/**********************************************************************

  encoding.h -

  $Author: matz $
  created at: Thu May 24 11:49:41 JST 2007

  Copyright (C) 2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_ENCODING_H
#define RUBY_ENCODING_H 1

#ifdef RUBY_INTERNAL_H
#error "Include this file before internal.h"
#endif

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include <stdarg.h>
#include "ruby/ruby.h"
#include "ruby/oniguruma.h"

RUBY_SYMBOL_EXPORT_BEGIN

enum ruby_encoding_consts {
    RUBY_ENCODING_INLINE_MAX = 127,
    RUBY_ENCODING_SHIFT = (RUBY_FL_USHIFT+10),
    RUBY_ENCODING_MASK = (RUBY_ENCODING_INLINE_MAX<<RUBY_ENCODING_SHIFT
			  /* RUBY_FL_USER10..RUBY_FL_USER16 */),
    RUBY_ENCODING_MAXNAMELEN = 42
};

#define ENCODING_INLINE_MAX RUBY_ENCODING_INLINE_MAX
#define ENCODING_SHIFT RUBY_ENCODING_SHIFT
#define ENCODING_MASK RUBY_ENCODING_MASK

#define RB_ENCODING_SET_INLINED(obj,i) do {\
    RBASIC(obj)->flags &= ~RUBY_ENCODING_MASK;\
    RBASIC(obj)->flags |= (VALUE)(i) << RUBY_ENCODING_SHIFT;\
} while (0)
#define RB_ENCODING_SET(obj,i) rb_enc_set_index((obj), (i))

#define RB_ENCODING_GET_INLINED(obj) \
    (int)((RBASIC(obj)->flags & RUBY_ENCODING_MASK)>>RUBY_ENCODING_SHIFT)
#define RB_ENCODING_GET(obj) \
    (RB_ENCODING_GET_INLINED(obj) != RUBY_ENCODING_INLINE_MAX ? \
     RB_ENCODING_GET_INLINED(obj) : \
     rb_enc_get_index(obj))

#define RB_ENCODING_IS_ASCII8BIT(obj) (RB_ENCODING_GET_INLINED(obj) == 0)

#define ENCODING_SET_INLINED(obj,i) RB_ENCODING_SET_INLINED(obj,i)
#define ENCODING_SET(obj,i) RB_ENCODING_SET(obj,i)
#define ENCODING_GET_INLINED(obj) RB_ENCODING_GET_INLINED(obj)
#define ENCODING_GET(obj) RB_ENCODING_GET(obj)
#define ENCODING_IS_ASCII8BIT(obj) RB_ENCODING_IS_ASCII8BIT(obj)
#define ENCODING_MAXNAMELEN RUBY_ENCODING_MAXNAMELEN

enum ruby_coderange_type {
    RUBY_ENC_CODERANGE_UNKNOWN	= 0,
    RUBY_ENC_CODERANGE_7BIT	= ((int)RUBY_FL_USER8),
    RUBY_ENC_CODERANGE_VALID	= ((int)RUBY_FL_USER9),
    RUBY_ENC_CODERANGE_BROKEN	= ((int)(RUBY_FL_USER8|RUBY_FL_USER9)),
    RUBY_ENC_CODERANGE_MASK	= (RUBY_ENC_CODERANGE_7BIT|
				   RUBY_ENC_CODERANGE_VALID|
				   RUBY_ENC_CODERANGE_BROKEN)
};

static inline int
rb_enc_coderange_clean_p(int cr)
{
    return (cr ^ (cr >> 1)) & RUBY_ENC_CODERANGE_7BIT;
}
#define RB_ENC_CODERANGE_CLEAN_P(cr) rb_enc_coderange_clean_p(cr)
#define RB_ENC_CODERANGE(obj) ((int)RBASIC(obj)->flags & RUBY_ENC_CODERANGE_MASK)
#define RB_ENC_CODERANGE_ASCIIONLY(obj) (RB_ENC_CODERANGE(obj) == RUBY_ENC_CODERANGE_7BIT)
#define RB_ENC_CODERANGE_SET(obj,cr) (\
	RBASIC(obj)->flags = \
	(RBASIC(obj)->flags & ~RUBY_ENC_CODERANGE_MASK) | (cr))
#define RB_ENC_CODERANGE_CLEAR(obj) RB_ENC_CODERANGE_SET((obj),0)

/* assumed ASCII compatibility */
#define RB_ENC_CODERANGE_AND(a, b) \
    ((a) == RUBY_ENC_CODERANGE_7BIT ? (b) : \
     (a) != RUBY_ENC_CODERANGE_VALID ? RUBY_ENC_CODERANGE_UNKNOWN : \
     (b) == RUBY_ENC_CODERANGE_7BIT ? RUBY_ENC_CODERANGE_VALID : (b))

#define RB_ENCODING_CODERANGE_SET(obj, encindex, cr) \
    do { \
        VALUE rb_encoding_coderange_obj = (obj); \
        RB_ENCODING_SET(rb_encoding_coderange_obj, (encindex)); \
        RB_ENC_CODERANGE_SET(rb_encoding_coderange_obj, (cr)); \
    } while (0)

#define ENC_CODERANGE_MASK	RUBY_ENC_CODERANGE_MASK
#define ENC_CODERANGE_UNKNOWN	RUBY_ENC_CODERANGE_UNKNOWN
#define ENC_CODERANGE_7BIT	RUBY_ENC_CODERANGE_7BIT
#define ENC_CODERANGE_VALID	RUBY_ENC_CODERANGE_VALID
#define ENC_CODERANGE_BROKEN	RUBY_ENC_CODERANGE_BROKEN
#define ENC_CODERANGE_CLEAN_P(cr)    RB_ENC_CODERANGE_CLEAN_P(cr)
#define ENC_CODERANGE(obj)           RB_ENC_CODERANGE(obj)
#define ENC_CODERANGE_ASCIIONLY(obj) RB_ENC_CODERANGE_ASCIIONLY(obj)
#define ENC_CODERANGE_SET(obj,cr)    RB_ENC_CODERANGE_SET(obj,cr)
#define ENC_CODERANGE_CLEAR(obj)     RB_ENC_CODERANGE_CLEAR(obj)
#define ENC_CODERANGE_AND(a, b)      RB_ENC_CODERANGE_AND(a, b)
#define ENCODING_CODERANGE_SET(obj, encindex, cr) RB_ENCODING_CODERANGE_SET(obj, encindex, cr)

typedef const OnigEncodingType rb_encoding;

int rb_char_to_option_kcode(int c, int *option, int *kcode);

int rb_enc_replicate(const char *, rb_encoding *);
int rb_define_dummy_encoding(const char *);
PUREFUNC(int rb_enc_dummy_p(rb_encoding *enc));
PUREFUNC(int rb_enc_to_index(rb_encoding *enc));
int rb_enc_get_index(VALUE obj);
void rb_enc_set_index(VALUE obj, int encindex);
int rb_enc_capable(VALUE obj);
int rb_enc_find_index(const char *name);
int rb_enc_alias(const char *alias, const char *orig);
int rb_to_encoding_index(VALUE);
rb_encoding *rb_to_encoding(VALUE);
rb_encoding *rb_find_encoding(VALUE);
rb_encoding *rb_enc_get(VALUE);
rb_encoding *rb_enc_compatible(VALUE,VALUE);
rb_encoding *rb_enc_check(VALUE,VALUE);
VALUE rb_enc_associate_index(VALUE, int);
VALUE rb_enc_associate(VALUE, rb_encoding*);
void rb_enc_copy(VALUE dst, VALUE src);

VALUE rb_enc_str_new(const char*, long, rb_encoding*);
VALUE rb_enc_str_new_cstr(const char*, rb_encoding*);
VALUE rb_enc_str_new_static(const char*, long, rb_encoding*);
VALUE rb_enc_reg_new(const char*, long, rb_encoding*, int);
PRINTF_ARGS(VALUE rb_enc_sprintf(rb_encoding *, const char*, ...), 2, 3);
VALUE rb_enc_vsprintf(rb_encoding *, const char*, va_list);
long rb_enc_strlen(const char*, const char*, rb_encoding*);
char* rb_enc_nth(const char*, const char*, long, rb_encoding*);
VALUE rb_obj_encoding(VALUE);
VALUE rb_enc_str_buf_cat(VALUE str, const char *ptr, long len, rb_encoding *enc);
VALUE rb_enc_uint_chr(unsigned int code, rb_encoding *enc);

VALUE rb_external_str_new_with_enc(const char *ptr, long len, rb_encoding *);
VALUE rb_str_export_to_enc(VALUE, rb_encoding *);
VALUE rb_str_conv_enc(VALUE str, rb_encoding *from, rb_encoding *to);
VALUE rb_str_conv_enc_opts(VALUE str, rb_encoding *from, rb_encoding *to, int ecflags, VALUE ecopts);

#ifdef HAVE_BUILTIN___BUILTIN_CONSTANT_P
#define rb_enc_str_new(str, len, enc) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str) && __builtin_constant_p(len)) ? \
	rb_enc_str_new_static((str), (len), (enc)) : \
	rb_enc_str_new((str), (len), (enc)) \
)
#define rb_enc_str_new_cstr(str, enc) RB_GNUC_EXTENSION_BLOCK(	\
    (__builtin_constant_p(str)) ?	       \
	rb_enc_str_new_static((str), (long)strlen(str), (enc)) : \
	rb_enc_str_new_cstr((str), (enc)) \
)
#endif

PRINTF_ARGS(NORETURN(void rb_enc_raise(rb_encoding *, VALUE, const char*, ...)), 3, 4);

/* index -> rb_encoding */
rb_encoding *rb_enc_from_index(int idx);

/* name -> rb_encoding */
rb_encoding *rb_enc_find(const char *name);

/* rb_encoding * -> name */
#define rb_enc_name(enc) (enc)->name

/* rb_encoding * -> minlen/maxlen */
#define rb_enc_mbminlen(enc) (enc)->min_enc_len
#define rb_enc_mbmaxlen(enc) (enc)->max_enc_len

/* -> mbclen (no error notification: 0 < ret <= e-p, no exception) */
int rb_enc_mbclen(const char *p, const char *e, rb_encoding *enc);

/* -> mbclen (only for valid encoding) */
int rb_enc_fast_mbclen(const char *p, const char *e, rb_encoding *enc);

/* -> chlen, invalid or needmore */
int rb_enc_precise_mbclen(const char *p, const char *e, rb_encoding *enc);
#define MBCLEN_CHARFOUND_P(ret)     ONIGENC_MBCLEN_CHARFOUND_P(ret)
#define MBCLEN_CHARFOUND_LEN(ret)     ONIGENC_MBCLEN_CHARFOUND_LEN(ret)
#define MBCLEN_INVALID_P(ret)       ONIGENC_MBCLEN_INVALID_P(ret)
#define MBCLEN_NEEDMORE_P(ret)      ONIGENC_MBCLEN_NEEDMORE_P(ret)
#define MBCLEN_NEEDMORE_LEN(ret)      ONIGENC_MBCLEN_NEEDMORE_LEN(ret)

/* -> 0x00..0x7f, -1 */
int rb_enc_ascget(const char *p, const char *e, int *len, rb_encoding *enc);


/* -> code (and len) or raise exception */
unsigned int rb_enc_codepoint_len(const char *p, const char *e, int *len, rb_encoding *enc);

/* prototype for obsolete function */
unsigned int rb_enc_codepoint(const char *p, const char *e, rb_encoding *enc);
/* overriding macro */
#define rb_enc_codepoint(p,e,enc) rb_enc_codepoint_len((p),(e),0,(enc))
#define rb_enc_mbc_to_codepoint(p, e, enc) ONIGENC_MBC_TO_CODE((enc),(UChar*)(p),(UChar*)(e))

/* -> codelen>0 or raise exception */
int rb_enc_codelen(int code, rb_encoding *enc);
/* -> 0 for invalid codepoint */
int rb_enc_code_to_mbclen(int code, rb_encoding *enc);
#define rb_enc_code_to_mbclen(c, enc) ONIGENC_CODE_TO_MBCLEN((enc), (c));

/* code,ptr,encoding -> write buf */
#define rb_enc_mbcput(c,buf,enc) ONIGENC_CODE_TO_MBC((enc),(c),(UChar*)(buf))

/* start, ptr, end, encoding -> prev_char */
#define rb_enc_prev_char(s,p,e,enc) ((char *)onigenc_get_prev_char_head((enc),(UChar*)(s),(UChar*)(p),(UChar*)(e)))
/* start, ptr, end, encoding -> next_char */
#define rb_enc_left_char_head(s,p,e,enc) ((char *)onigenc_get_left_adjust_char_head((enc),(UChar*)(s),(UChar*)(p),(UChar*)(e)))
#define rb_enc_right_char_head(s,p,e,enc) ((char *)onigenc_get_right_adjust_char_head((enc),(UChar*)(s),(UChar*)(p),(UChar*)(e)))
#define rb_enc_step_back(s,p,e,n,enc) ((char *)onigenc_step_back((enc),(UChar*)(s),(UChar*)(p),(UChar*)(e),(int)(n)))

/* ptr, ptr, encoding -> newline_or_not */
#define rb_enc_is_newline(p,end,enc)  ONIGENC_IS_MBC_NEWLINE((enc),(UChar*)(p),(UChar*)(end))

#define rb_enc_isctype(c,t,enc) ONIGENC_IS_CODE_CTYPE((enc),(c),(t))
#define rb_enc_isascii(c,enc) ONIGENC_IS_CODE_ASCII(c)
#define rb_enc_isalpha(c,enc) ONIGENC_IS_CODE_ALPHA((enc),(c))
#define rb_enc_islower(c,enc) ONIGENC_IS_CODE_LOWER((enc),(c))
#define rb_enc_isupper(c,enc) ONIGENC_IS_CODE_UPPER((enc),(c))
#define rb_enc_ispunct(c,enc) ONIGENC_IS_CODE_PUNCT((enc),(c))
#define rb_enc_isalnum(c,enc) ONIGENC_IS_CODE_ALNUM((enc),(c))
#define rb_enc_isprint(c,enc) ONIGENC_IS_CODE_PRINT((enc),(c))
#define rb_enc_isspace(c,enc) ONIGENC_IS_CODE_SPACE((enc),(c))
#define rb_enc_isdigit(c,enc) ONIGENC_IS_CODE_DIGIT((enc),(c))

static inline int
rb_enc_asciicompat_inline(rb_encoding *enc)
{
    return rb_enc_mbminlen(enc)==1 && !rb_enc_dummy_p(enc);
}
#define rb_enc_asciicompat(enc) rb_enc_asciicompat_inline(enc)

int rb_enc_casefold(char *to, const char *p, const char *e, rb_encoding *enc);
CONSTFUNC(int rb_enc_toupper(int c, rb_encoding *enc));
CONSTFUNC(int rb_enc_tolower(int c, rb_encoding *enc));
ID rb_intern3(const char*, long, rb_encoding*);
ID rb_interned_id_p(const char *, long, rb_encoding *);
int rb_enc_symname_p(const char*, rb_encoding*);
int rb_enc_symname2_p(const char*, long, rb_encoding*);
int rb_enc_str_coderange(VALUE);
long rb_str_coderange_scan_restartable(const char*, const char*, rb_encoding*, int*);
int rb_enc_str_asciionly_p(VALUE);
#define rb_enc_str_asciicompat_p(str) rb_enc_asciicompat(rb_enc_get(str))
VALUE rb_enc_from_encoding(rb_encoding *enc);
PUREFUNC(int rb_enc_unicode_p(rb_encoding *enc));
rb_encoding *rb_ascii8bit_encoding(void);
rb_encoding *rb_utf8_encoding(void);
rb_encoding *rb_usascii_encoding(void);
rb_encoding *rb_locale_encoding(void);
rb_encoding *rb_filesystem_encoding(void);
rb_encoding *rb_default_external_encoding(void);
rb_encoding *rb_default_internal_encoding(void);
#ifndef rb_ascii8bit_encindex
CONSTFUNC(int rb_ascii8bit_encindex(void));
#endif
#ifndef rb_utf8_encindex
CONSTFUNC(int rb_utf8_encindex(void));
#endif
#ifndef rb_usascii_encindex
CONSTFUNC(int rb_usascii_encindex(void));
#endif
int rb_locale_encindex(void);
int rb_filesystem_encindex(void);
VALUE rb_enc_default_external(void);
VALUE rb_enc_default_internal(void);
void rb_enc_set_default_external(VALUE encoding);
void rb_enc_set_default_internal(VALUE encoding);
VALUE rb_locale_charmap(VALUE klass);
long rb_memsearch(const void*,long,const void*,long,rb_encoding*);
char *rb_enc_path_next(const char *,const char *,rb_encoding*);
char *rb_enc_path_skip_prefix(const char *,const char *,rb_encoding*);
char *rb_enc_path_last_separator(const char *,const char *,rb_encoding*);
char *rb_enc_path_end(const char *,const char *,rb_encoding*);
const char *ruby_enc_find_basename(const char *name, long *baselen, long *alllen, rb_encoding *enc);
const char *ruby_enc_find_extname(const char *name, long *len, rb_encoding *enc);
ID rb_check_id_cstr(const char *ptr, long len, rb_encoding *enc);
VALUE rb_check_symbol_cstr(const char *ptr, long len, rb_encoding *enc);

RUBY_EXTERN VALUE rb_cEncoding;

/* econv stuff */

typedef enum {
    econv_invalid_byte_sequence,
    econv_undefined_conversion,
    econv_destination_buffer_full,
    econv_source_buffer_empty,
    econv_finished,
    econv_after_output,
    econv_incomplete_input
} rb_econv_result_t;

typedef struct rb_econv_t rb_econv_t;

VALUE rb_str_encode(VALUE str, VALUE to, int ecflags, VALUE ecopts);
int rb_econv_has_convpath_p(const char* from_encoding, const char* to_encoding);

int rb_econv_prepare_options(VALUE opthash, VALUE *ecopts, int ecflags);
int rb_econv_prepare_opts(VALUE opthash, VALUE *ecopts);

rb_econv_t *rb_econv_open(const char *source_encoding, const char *destination_encoding, int ecflags);
rb_econv_t *rb_econv_open_opts(const char *source_encoding, const char *destination_encoding, int ecflags, VALUE ecopts);

rb_econv_result_t rb_econv_convert(rb_econv_t *ec,
    const unsigned char **source_buffer_ptr, const unsigned char *source_buffer_end,
    unsigned char **destination_buffer_ptr, unsigned char *destination_buffer_end,
    int flags);
void rb_econv_close(rb_econv_t *ec);

/* result: 0:success -1:failure */
int rb_econv_set_replacement(rb_econv_t *ec, const unsigned char *str, size_t len, const char *encname);

/* result: 0:success -1:failure */
int rb_econv_decorate_at_first(rb_econv_t *ec, const char *decorator_name);
int rb_econv_decorate_at_last(rb_econv_t *ec, const char *decorator_name);

VALUE rb_econv_open_exc(const char *senc, const char *denc, int ecflags);

/* result: 0:success -1:failure */
int rb_econv_insert_output(rb_econv_t *ec,
    const unsigned char *str, size_t len, const char *str_encoding);

/* encoding that rb_econv_insert_output doesn't need conversion */
const char *rb_econv_encoding_to_insert_output(rb_econv_t *ec);

/* raise an error if the last rb_econv_convert is error */
void rb_econv_check_error(rb_econv_t *ec);

/* returns an exception object or nil */
VALUE rb_econv_make_exception(rb_econv_t *ec);

int rb_econv_putbackable(rb_econv_t *ec);
void rb_econv_putback(rb_econv_t *ec, unsigned char *p, int n);

/* returns the corresponding ASCII compatible encoding for encname,
 * or NULL if encname is not ASCII incompatible encoding. */
const char *rb_econv_asciicompat_encoding(const char *encname);

VALUE rb_econv_str_convert(rb_econv_t *ec, VALUE src, int flags);
VALUE rb_econv_substr_convert(rb_econv_t *ec, VALUE src, long byteoff, long bytesize, int flags);
VALUE rb_econv_str_append(rb_econv_t *ec, VALUE src, VALUE dst, int flags);
VALUE rb_econv_substr_append(rb_econv_t *ec, VALUE src, long byteoff, long bytesize, VALUE dst, int flags);
VALUE rb_econv_append(rb_econv_t *ec, const char *bytesrc, long bytesize, VALUE dst, int flags);

void rb_econv_binmode(rb_econv_t *ec);

enum ruby_econv_flag_type {
/* flags for rb_econv_open */
    RUBY_ECONV_ERROR_HANDLER_MASK               = 0x000000ff,

    RUBY_ECONV_INVALID_MASK                     = 0x0000000f,
    RUBY_ECONV_INVALID_REPLACE                  = 0x00000002,

    RUBY_ECONV_UNDEF_MASK                       = 0x000000f0,
    RUBY_ECONV_UNDEF_REPLACE                    = 0x00000020,
    RUBY_ECONV_UNDEF_HEX_CHARREF                = 0x00000030,

    RUBY_ECONV_DECORATOR_MASK                   = 0x0000ff00,
    RUBY_ECONV_NEWLINE_DECORATOR_MASK           = 0x00003f00,
    RUBY_ECONV_NEWLINE_DECORATOR_READ_MASK      = 0x00000f00,
    RUBY_ECONV_NEWLINE_DECORATOR_WRITE_MASK     = 0x00003000,

    RUBY_ECONV_UNIVERSAL_NEWLINE_DECORATOR      = 0x00000100,
    RUBY_ECONV_CRLF_NEWLINE_DECORATOR           = 0x00001000,
    RUBY_ECONV_CR_NEWLINE_DECORATOR             = 0x00002000,
    RUBY_ECONV_XML_TEXT_DECORATOR               = 0x00004000,
    RUBY_ECONV_XML_ATTR_CONTENT_DECORATOR       = 0x00008000,

    RUBY_ECONV_STATEFUL_DECORATOR_MASK          = 0x00f00000,
    RUBY_ECONV_XML_ATTR_QUOTE_DECORATOR         = 0x00100000,

    RUBY_ECONV_DEFAULT_NEWLINE_DECORATOR        =
#if defined(RUBY_TEST_CRLF_ENVIRONMENT) || defined(_WIN32)
	RUBY_ECONV_CRLF_NEWLINE_DECORATOR,
#else
	0,
#endif
#define ECONV_ERROR_HANDLER_MASK                RUBY_ECONV_ERROR_HANDLER_MASK
#define ECONV_INVALID_MASK                      RUBY_ECONV_INVALID_MASK
#define ECONV_INVALID_REPLACE                   RUBY_ECONV_INVALID_REPLACE
#define ECONV_UNDEF_MASK                        RUBY_ECONV_UNDEF_MASK
#define ECONV_UNDEF_REPLACE                     RUBY_ECONV_UNDEF_REPLACE
#define ECONV_UNDEF_HEX_CHARREF                 RUBY_ECONV_UNDEF_HEX_CHARREF
#define ECONV_DECORATOR_MASK                    RUBY_ECONV_DECORATOR_MASK
#define ECONV_NEWLINE_DECORATOR_MASK            RUBY_ECONV_NEWLINE_DECORATOR_MASK
#define ECONV_NEWLINE_DECORATOR_READ_MASK       RUBY_ECONV_NEWLINE_DECORATOR_READ_MASK
#define ECONV_NEWLINE_DECORATOR_WRITE_MASK      RUBY_ECONV_NEWLINE_DECORATOR_WRITE_MASK
#define ECONV_UNIVERSAL_NEWLINE_DECORATOR       RUBY_ECONV_UNIVERSAL_NEWLINE_DECORATOR
#define ECONV_CRLF_NEWLINE_DECORATOR            RUBY_ECONV_CRLF_NEWLINE_DECORATOR
#define ECONV_CR_NEWLINE_DECORATOR              RUBY_ECONV_CR_NEWLINE_DECORATOR
#define ECONV_XML_TEXT_DECORATOR                RUBY_ECONV_XML_TEXT_DECORATOR
#define ECONV_XML_ATTR_CONTENT_DECORATOR        RUBY_ECONV_XML_ATTR_CONTENT_DECORATOR
#define ECONV_STATEFUL_DECORATOR_MASK           RUBY_ECONV_STATEFUL_DECORATOR_MASK
#define ECONV_XML_ATTR_QUOTE_DECORATOR          RUBY_ECONV_XML_ATTR_QUOTE_DECORATOR
#define ECONV_DEFAULT_NEWLINE_DECORATOR         RUBY_ECONV_DEFAULT_NEWLINE_DECORATOR
/* end of flags for rb_econv_open */

/* flags for rb_econv_convert */
    RUBY_ECONV_PARTIAL_INPUT                    = 0x00010000,
    RUBY_ECONV_AFTER_OUTPUT                     = 0x00020000,
#define ECONV_PARTIAL_INPUT                     RUBY_ECONV_PARTIAL_INPUT
#define ECONV_AFTER_OUTPUT                      RUBY_ECONV_AFTER_OUTPUT
/* end of flags for rb_econv_convert */
RUBY_ECONV_FLAGS_PLACEHOLDER};

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_ENCODING_H */
PKKH[�y�``include/ruby/util.hnu�[���/**********************************************************************

  util.h -

  $Author$
  created at: Thu Mar  9 11:55:53 JST 1995

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_UTIL_H
#define RUBY_UTIL_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include "ruby/defines.h"
#ifdef RUBY_EXTCONF_H
#include RUBY_EXTCONF_H
#endif

#ifndef _
#ifdef __cplusplus
# ifndef  HAVE_PROTOTYPES
#  define HAVE_PROTOTYPES 1
# endif
# ifndef  HAVE_STDARG_PROTOTYPES
#  define HAVE_STDARG_PROTOTYPES 1
# endif
#endif
#ifdef HAVE_PROTOTYPES
# define _(args) args
#else
# define _(args) ()
#endif
#ifdef HAVE_STDARG_PROTOTYPES
# define __(args) args
#else
# define __(args) ()
#endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#define DECIMAL_SIZE_OF_BITS(n) (((n) * 3010 + 9998) / 9999)
/* an approximation of ceil(n * log10(2)), up to 65536 at least */

#define scan_oct(s,l,e) ((int)ruby_scan_oct((s),(l),(e)))
unsigned long ruby_scan_oct(const char *, size_t, size_t *);
#define scan_hex(s,l,e) ((int)ruby_scan_hex((s),(l),(e)))
unsigned long ruby_scan_hex(const char *, size_t, size_t *);

#ifdef HAVE_GNU_QSORT_R
# define ruby_qsort qsort_r
#else
void ruby_qsort(void *, const size_t, const size_t,
		int (*)(const void *, const void *, void *), void *);
#endif

void ruby_setenv(const char *, const char *);
void ruby_unsetenv(const char *);

char *ruby_strdup(const char *);
#undef strdup
#define strdup(s) ruby_strdup(s)

char *ruby_getcwd(void);

double ruby_strtod(const char *, char **);
#undef strtod
#define strtod(s,e) ruby_strtod((s),(e))

void ruby_each_words(const char *, void (*)(const char*, int, void*), void *);

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_UTIL_H */
PKKH[C����include/ruby/config.hnu�[���/*
 * Kluge to support multilib installation of both 32- and 64-bit RPMS:
 * we need to arrange that header files that appear in both RPMs are
 * identical.  Hence, this file is architecture-independent and calls
 * in an arch-dependent file that will appear in just one RPM.
 *
 * To avoid breaking arches not explicitly supported by Red Hat, we
 * use this indirection file *only* on known multilib arches.
 *
 * We pay attention to include _only_ the original multilib-unclean
 * header file.  Including any other system-header file could cause
 * unpredictable include-ordering issues (rhbz#1412274, comment #16).
 *
 * Note: this may well fail if user tries to use gcc's -I- option.
 * But that option is deprecated anyway.
 */
#if defined(__x86_64__)
#include "config-x86_64.h"
#elif defined(__i386__)
#include "config-i386.h"
#elif defined(__ppc64__) || defined(__powerpc64__)
#include "config-ppc64.h"
#elif defined(__ppc__) || defined(__powerpc__)
#include "config-ppc.h"
#elif defined(__s390x__)
#include "config-s390x.h"
#elif defined(__s390__)
#include "config-s390.h"
#elif defined(__sparc__) && defined(__arch64__)
#include "config-sparc64.h"
#elif defined(__sparc__)
#include "config-sparc.h"
#endif
PKKH['������include/ruby/intern.hnu�[���/**********************************************************************

  intern.h -

  $Author$
  created at: Thu Jun 10 14:22:17 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto
  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
  Copyright (C) 2000  Information-technology Promotion Agency, Japan

**********************************************************************/

#ifndef RUBY_INTERN_H
#define RUBY_INTERN_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#if !defined(__has_attribute)
#define __has_attribute(x) 0
#endif

#include "ruby/defines.h"
#ifdef RUBY_EXTCONF_H
#include RUBY_EXTCONF_H
#endif

#ifdef HAVE_STDARG_PROTOTYPES
# include <stdarg.h>
#else
# include <varargs.h>
#endif

#include "ruby/st.h"

/* On mswin, MJIT header transformation can't be used since cl.exe can't output
   preprocessed output preserving macros. So this `MJIT_STATIC` is needed
   to force non-static function to static on MJIT header to avoid symbol conflict. */
#ifdef MJIT_HEADER
# define MJIT_STATIC static
#else
# define MJIT_STATIC
#endif

RUBY_SYMBOL_EXPORT_BEGIN

/*
 * Functions and variables that are used by more than one source file of
 * the kernel.
 */

#define UNLIMITED_ARGUMENTS (-1)

/* array.c */
void rb_mem_clear(VALUE*, long);
VALUE rb_assoc_new(VALUE, VALUE);
VALUE rb_check_array_type(VALUE);
VALUE rb_ary_new(void);
VALUE rb_ary_new_capa(long capa);
VALUE rb_ary_new_from_args(long n, ...);
VALUE rb_ary_new_from_values(long n, const VALUE *elts);
VALUE rb_ary_tmp_new(long);
void rb_ary_free(VALUE);
void rb_ary_modify(VALUE);
VALUE rb_ary_freeze(VALUE);
VALUE rb_ary_shared_with_p(VALUE, VALUE);
VALUE rb_ary_aref(int, const VALUE*, VALUE);
VALUE rb_ary_subseq(VALUE, long, long);
void rb_ary_store(VALUE, long, VALUE);
VALUE rb_ary_dup(VALUE);
VALUE rb_ary_resurrect(VALUE ary);
VALUE rb_ary_to_ary(VALUE);
VALUE rb_ary_to_s(VALUE);
VALUE rb_ary_cat(VALUE, const VALUE *, long);
VALUE rb_ary_push(VALUE, VALUE);
VALUE rb_ary_pop(VALUE);
VALUE rb_ary_shift(VALUE);
VALUE rb_ary_unshift(VALUE, VALUE);
VALUE rb_ary_entry(VALUE, long);
VALUE rb_ary_each(VALUE);
VALUE rb_ary_join(VALUE, VALUE);
VALUE rb_ary_reverse(VALUE);
VALUE rb_ary_rotate(VALUE, long);
VALUE rb_ary_sort(VALUE);
VALUE rb_ary_sort_bang(VALUE);
VALUE rb_ary_delete(VALUE, VALUE);
VALUE rb_ary_delete_at(VALUE, long);
VALUE rb_ary_clear(VALUE);
VALUE rb_ary_plus(VALUE, VALUE);
VALUE rb_ary_concat(VALUE, VALUE);
VALUE rb_ary_assoc(VALUE, VALUE);
VALUE rb_ary_rassoc(VALUE, VALUE);
VALUE rb_ary_includes(VALUE, VALUE);
VALUE rb_ary_cmp(VALUE, VALUE);
VALUE rb_ary_replace(VALUE copy, VALUE orig);
VALUE rb_get_values_at(VALUE, long, int, const VALUE*, VALUE(*)(VALUE,long));
VALUE rb_ary_resize(VALUE ary, long len);
#define rb_ary_new2 rb_ary_new_capa
#define rb_ary_new3 rb_ary_new_from_args
#define rb_ary_new4 rb_ary_new_from_values
/* bignum.c */
VALUE rb_big_new(size_t, int);
int rb_bigzero_p(VALUE x);
VALUE rb_big_clone(VALUE);
void rb_big_2comp(VALUE);
VALUE rb_big_norm(VALUE);
void rb_big_resize(VALUE big, size_t len);
VALUE rb_cstr_to_inum(const char*, int, int);
VALUE rb_str_to_inum(VALUE, int, int);
VALUE rb_cstr2inum(const char*, int);
VALUE rb_str2inum(VALUE, int);
VALUE rb_big2str(VALUE, int);
long rb_big2long(VALUE);
#define rb_big2int(x) rb_big2long(x)
unsigned long rb_big2ulong(VALUE);
#define rb_big2uint(x) rb_big2ulong(x)
#if HAVE_LONG_LONG
LONG_LONG rb_big2ll(VALUE);
unsigned LONG_LONG rb_big2ull(VALUE);
#endif  /* HAVE_LONG_LONG */
void rb_big_pack(VALUE val, unsigned long *buf, long num_longs);
VALUE rb_big_unpack(unsigned long *buf, long num_longs);
int rb_uv_to_utf8(char[6],unsigned long);
VALUE rb_dbl2big(double);
double rb_big2dbl(VALUE);
VALUE rb_big_cmp(VALUE, VALUE);
VALUE rb_big_eq(VALUE, VALUE);
VALUE rb_big_eql(VALUE, VALUE);
VALUE rb_big_plus(VALUE, VALUE);
VALUE rb_big_minus(VALUE, VALUE);
VALUE rb_big_mul(VALUE, VALUE);
VALUE rb_big_div(VALUE, VALUE);
VALUE rb_big_idiv(VALUE, VALUE);
VALUE rb_big_modulo(VALUE, VALUE);
VALUE rb_big_divmod(VALUE, VALUE);
VALUE rb_big_pow(VALUE, VALUE);
VALUE rb_big_and(VALUE, VALUE);
VALUE rb_big_or(VALUE, VALUE);
VALUE rb_big_xor(VALUE, VALUE);
VALUE rb_big_lshift(VALUE, VALUE);
VALUE rb_big_rshift(VALUE, VALUE);

/* For rb_integer_pack and rb_integer_unpack: */
/* "MS" in MSWORD and MSBYTE means "most significant" */
/* "LS" in LSWORD and LSBYTE means "least significant" */
#define INTEGER_PACK_MSWORD_FIRST       0x01
#define INTEGER_PACK_LSWORD_FIRST       0x02
#define INTEGER_PACK_MSBYTE_FIRST       0x10
#define INTEGER_PACK_LSBYTE_FIRST       0x20
#define INTEGER_PACK_NATIVE_BYTE_ORDER  0x40
#define INTEGER_PACK_2COMP              0x80
#define INTEGER_PACK_FORCE_GENERIC_IMPLEMENTATION     0x400
/* For rb_integer_unpack: */
#define INTEGER_PACK_FORCE_BIGNUM       0x100
#define INTEGER_PACK_NEGATIVE           0x200
/* Combinations: */
#define INTEGER_PACK_LITTLE_ENDIAN \
    (INTEGER_PACK_LSWORD_FIRST | \
     INTEGER_PACK_LSBYTE_FIRST)
#define INTEGER_PACK_BIG_ENDIAN \
    (INTEGER_PACK_MSWORD_FIRST | \
     INTEGER_PACK_MSBYTE_FIRST)
int rb_integer_pack(VALUE val, void *words, size_t numwords, size_t wordsize, size_t nails, int flags);
VALUE rb_integer_unpack(const void *words, size_t numwords, size_t wordsize, size_t nails, int flags);
size_t rb_absint_size(VALUE val, int *nlz_bits_ret);
size_t rb_absint_numwords(VALUE val, size_t word_numbits, size_t *nlz_bits_ret);
int rb_absint_singlebit_p(VALUE val);

/* rational.c */
VALUE rb_rational_raw(VALUE, VALUE);
#define rb_rational_raw1(x) rb_rational_raw((x), INT2FIX(1))
#define rb_rational_raw2(x,y) rb_rational_raw((x), (y))
VALUE rb_rational_new(VALUE, VALUE);
#define rb_rational_new1(x) rb_rational_new((x), INT2FIX(1))
#define rb_rational_new2(x,y) rb_rational_new((x), (y))
VALUE rb_Rational(VALUE, VALUE);
#define rb_Rational1(x) rb_Rational((x), INT2FIX(1))
#define rb_Rational2(x,y) rb_Rational((x), (y))
VALUE rb_rational_num(VALUE rat);
VALUE rb_rational_den(VALUE rat);
VALUE rb_flt_rationalize_with_prec(VALUE, VALUE);
VALUE rb_flt_rationalize(VALUE);
/* complex.c */
VALUE rb_complex_raw(VALUE, VALUE);
#define rb_complex_raw1(x) rb_complex_raw((x), INT2FIX(0))
#define rb_complex_raw2(x,y) rb_complex_raw((x), (y))
VALUE rb_complex_new(VALUE, VALUE);
#define rb_complex_new1(x) rb_complex_new((x), INT2FIX(0))
#define rb_complex_new2(x,y) rb_complex_new((x), (y))
VALUE rb_complex_new_polar(VALUE abs, VALUE arg);
DEPRECATED_BY(rb_complex_new_polar, VALUE rb_complex_polar(VALUE abs, VALUE arg));
VALUE rb_complex_real(VALUE z);
VALUE rb_complex_imag(VALUE z);
VALUE rb_complex_plus(VALUE x, VALUE y);
VALUE rb_complex_minus(VALUE x, VALUE y);
VALUE rb_complex_mul(VALUE x, VALUE y);
VALUE rb_complex_div(VALUE x, VALUE y);
VALUE rb_complex_uminus(VALUE z);
VALUE rb_complex_conjugate(VALUE z);
VALUE rb_complex_abs(VALUE z);
VALUE rb_complex_arg(VALUE z);
VALUE rb_complex_pow(VALUE base, VALUE exp);
VALUE rb_dbl_complex_new(double real, double imag);
#define rb_complex_add rb_complex_plus
#define rb_complex_sub rb_complex_minus
#define rb_complex_nagate rb_complex_uminus

VALUE rb_Complex(VALUE, VALUE);
#define rb_Complex1(x) rb_Complex((x), INT2FIX(0))
#define rb_Complex2(x,y) rb_Complex((x), (y))
/* class.c */
VALUE rb_class_new(VALUE);
VALUE rb_mod_init_copy(VALUE, VALUE);
VALUE rb_singleton_class_clone(VALUE);
void rb_singleton_class_attached(VALUE,VALUE);
void rb_check_inheritable(VALUE);
VALUE rb_define_class_id(ID, VALUE);
VALUE rb_define_class_id_under(VALUE, ID, VALUE);
VALUE rb_module_new(void);
VALUE rb_define_module_id(ID);
VALUE rb_define_module_id_under(VALUE, ID);
VALUE rb_mod_included_modules(VALUE);
VALUE rb_mod_include_p(VALUE, VALUE);
VALUE rb_mod_ancestors(VALUE);
VALUE rb_class_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_public_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_protected_instance_methods(int, const VALUE*, VALUE);
VALUE rb_class_private_instance_methods(int, const VALUE*, VALUE);
VALUE rb_obj_singleton_methods(int, const VALUE*, VALUE);
void rb_define_method_id(VALUE, ID, VALUE (*)(ANYARGS), int);
void rb_undef(VALUE, ID);
void rb_define_protected_method(VALUE, const char*, VALUE (*)(ANYARGS), int);
void rb_define_private_method(VALUE, const char*, VALUE (*)(ANYARGS), int);
void rb_define_singleton_method(VALUE, const char*, VALUE(*)(ANYARGS), int);
VALUE rb_singleton_class(VALUE);
/* compar.c */
int rb_cmpint(VALUE, VALUE, VALUE);
NORETURN(void rb_cmperr(VALUE, VALUE));
/* cont.c */
VALUE rb_fiber_new(rb_block_call_func_t, VALUE);
VALUE rb_fiber_resume(VALUE fib, int argc, const VALUE *argv);
VALUE rb_fiber_resume_kw(VALUE fib, int argc, const VALUE *argv, int kw_splat);
VALUE rb_fiber_yield(int argc, const VALUE *argv);
VALUE rb_fiber_yield_kw(int argc, const VALUE *argv, int kw_splat);
VALUE rb_fiber_current(void);
VALUE rb_fiber_alive_p(VALUE);
/* enum.c */
VALUE rb_enum_values_pack(int, const VALUE*);
/* enumerator.c */
VALUE rb_enumeratorize(VALUE, VALUE, int, const VALUE *);
typedef VALUE rb_enumerator_size_func(VALUE, VALUE, VALUE);
VALUE rb_enumeratorize_with_size(VALUE, VALUE, int, const VALUE *, rb_enumerator_size_func *);
VALUE rb_enumeratorize_with_size_kw(VALUE, VALUE, int, const VALUE *, rb_enumerator_size_func *, int);
#ifndef RUBY_EXPORT
#define rb_enumeratorize_with_size(obj, id, argc, argv, size_fn) \
    rb_enumeratorize_with_size(obj, id, argc, argv, (rb_enumerator_size_func *)(size_fn))
#define rb_enumeratorize_with_size_kw(obj, id, argc, argv, size_fn, kw_splat) \
    rb_enumeratorize_with_size_kw(obj, id, argc, argv, (rb_enumerator_size_func *)(size_fn), kw_splat)
#endif
#define SIZED_ENUMERATOR(obj, argc, argv, size_fn) \
    rb_enumeratorize_with_size((obj), ID2SYM(rb_frame_this_func()), \
			       (argc), (argv), (size_fn))
#define SIZED_ENUMERATOR_KW(obj, argc, argv, size_fn, kw_splat) \
    rb_enumeratorize_with_size_kw((obj), ID2SYM(rb_frame_this_func()), \
                                  (argc), (argv), (size_fn), (kw_splat))
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn) do {		\
	if (!rb_block_given_p())					\
	    return SIZED_ENUMERATOR(obj, argc, argv, size_fn);		\
    } while (0)
#define RETURN_SIZED_ENUMERATOR_KW(obj, argc, argv, size_fn, kw_splat) do { \
        if (!rb_block_given_p())                                            \
            return SIZED_ENUMERATOR_KW(obj, argc, argv, size_fn, kw_splat);              \
    } while (0)
#define RETURN_ENUMERATOR(obj, argc, argv) RETURN_SIZED_ENUMERATOR(obj, argc, argv, 0)
#define RETURN_ENUMERATOR_KW(obj, argc, argv, kw_splat) RETURN_SIZED_ENUMERATOR_KW(obj, argc, argv, 0, kw_splat)
typedef struct {
    VALUE begin;
    VALUE end;
    VALUE step;
    int exclude_end;
} rb_arithmetic_sequence_components_t;
int rb_arithmetic_sequence_extract(VALUE, rb_arithmetic_sequence_components_t *);
/* error.c */
VALUE rb_exc_new(VALUE, const char*, long);
VALUE rb_exc_new_cstr(VALUE, const char*);
VALUE rb_exc_new_str(VALUE, VALUE);
#define rb_exc_new2 rb_exc_new_cstr
#define rb_exc_new3 rb_exc_new_str
PRINTF_ARGS(NORETURN(void rb_loaderror(const char*, ...)), 1, 2);
PRINTF_ARGS(NORETURN(void rb_loaderror_with_path(VALUE path, const char*, ...)), 2, 3);
PRINTF_ARGS(NORETURN(void rb_name_error(ID, const char*, ...)), 2, 3);
PRINTF_ARGS(NORETURN(void rb_name_error_str(VALUE, const char*, ...)), 2, 3);
PRINTF_ARGS(NORETURN(void rb_frozen_error_raise(VALUE, const char*, ...)), 2, 3);
NORETURN(void rb_invalid_str(const char*, const char*));
NORETURN(void rb_error_frozen(const char*));
NORETURN(void rb_error_frozen_object(VALUE));
void rb_error_untrusted(VALUE);
void rb_check_frozen(VALUE);
void rb_check_trusted(VALUE);
#define rb_check_frozen_internal(obj) do { \
	VALUE frozen_obj = (obj); \
	if (RB_UNLIKELY(RB_OBJ_FROZEN(frozen_obj))) { \
	    rb_error_frozen_object(frozen_obj); \
	} \
    } while (0)
#ifdef __GNUC__
#define rb_check_frozen(obj) __extension__({rb_check_frozen_internal(obj);})
#else
static inline void
rb_check_frozen_inline(VALUE obj)
{
    rb_check_frozen_internal(obj);
}
#define rb_check_frozen(obj) rb_check_frozen_inline(obj)
static inline void
rb_check_trusted_inline(VALUE obj)
{
    rb_check_trusted(obj);
}
#define rb_check_trusted(obj) rb_check_trusted_inline(obj)
#endif
void rb_check_copyable(VALUE obj, VALUE orig);

#define RB_OBJ_INIT_COPY(obj, orig) \
    ((obj) != (orig) && (rb_obj_init_copy((obj), (orig)), 1))
#define OBJ_INIT_COPY(obj, orig) RB_OBJ_INIT_COPY(obj, orig)

/* eval.c */
int rb_sourceline(void);
const char *rb_sourcefile(void);
VALUE rb_check_funcall(VALUE, ID, int, const VALUE*);
VALUE rb_check_funcall_kw(VALUE, ID, int, const VALUE*, int);

NORETURN(MJIT_STATIC void rb_error_arity(int, int, int));
static inline int
rb_check_arity(int argc, int min, int max)
{
    if ((argc < min) || (max != UNLIMITED_ARGUMENTS && argc > max))
	rb_error_arity(argc, min, max);
    return argc;
}
#define rb_check_arity rb_check_arity /* for ifdef */

#if defined(NFDBITS) && defined(HAVE_RB_FD_INIT)
typedef struct {
    int maxfd;
    fd_set *fdset;
} rb_fdset_t;

void rb_fd_init(rb_fdset_t *);
void rb_fd_term(rb_fdset_t *);
void rb_fd_zero(rb_fdset_t *);
void rb_fd_set(int, rb_fdset_t *);
void rb_fd_clr(int, rb_fdset_t *);
int rb_fd_isset(int, const rb_fdset_t *);
void rb_fd_copy(rb_fdset_t *, const fd_set *, int);
void rb_fd_dup(rb_fdset_t *dst, const rb_fdset_t *src);

struct timeval;
int rb_fd_select(int, rb_fdset_t *, rb_fdset_t *, rb_fdset_t *, struct timeval *);

#define rb_fd_ptr(f)	((f)->fdset)
#define rb_fd_max(f)	((f)->maxfd)

#elif defined(_WIN32)

typedef struct {
    int capa;
    fd_set *fdset;
} rb_fdset_t;

void rb_fd_init(rb_fdset_t *);
void rb_fd_term(rb_fdset_t *);
#define rb_fd_zero(f)		((f)->fdset->fd_count = 0)
void rb_fd_set(int, rb_fdset_t *);
#define rb_fd_clr(n, f)		rb_w32_fdclr((n), (f)->fdset)
#define rb_fd_isset(n, f)	rb_w32_fdisset((n), (f)->fdset)
#define rb_fd_copy(d, s, n)	rb_w32_fd_copy((d), (s), (n))
void rb_w32_fd_copy(rb_fdset_t *, const fd_set *, int);
#define rb_fd_dup(d, s)	rb_w32_fd_dup((d), (s))
void rb_w32_fd_dup(rb_fdset_t *dst, const rb_fdset_t *src);
static inline int
rb_fd_select(int n, rb_fdset_t *rfds, rb_fdset_t *wfds, rb_fdset_t *efds, struct timeval *timeout)
{
    return rb_w32_select(n,
                         rfds ? rfds->fdset : NULL,
                         wfds ? wfds->fdset : NULL,
                         efds ? efds->fdset : NULL,
                         timeout);
}
#define rb_fd_resize(n, f)	((void)(f))

#define rb_fd_ptr(f)	((f)->fdset)
#define rb_fd_max(f)	((f)->fdset->fd_count)

#else

typedef fd_set rb_fdset_t;
#define rb_fd_zero(f)	FD_ZERO(f)
#define rb_fd_set(n, f)	FD_SET((n), (f))
#define rb_fd_clr(n, f)	FD_CLR((n), (f))
#define rb_fd_isset(n, f) FD_ISSET((n), (f))
#define rb_fd_copy(d, s, n) (*(d) = *(s))
#define rb_fd_dup(d, s) (*(d) = *(s))
#define rb_fd_resize(n, f)	((void)(f))
#define rb_fd_ptr(f)	(f)
#define rb_fd_init(f)	FD_ZERO(f)
#define rb_fd_init_copy(d, s) (*(d) = *(s))
#define rb_fd_term(f)	((void)(f))
#define rb_fd_max(f)	FD_SETSIZE
#define rb_fd_select(n, rfds, wfds, efds, timeout)	select((n), (rfds), (wfds), (efds), (timeout))

#endif

NORETURN(void rb_exc_raise(VALUE));
NORETURN(void rb_exc_fatal(VALUE));
NORETURN(VALUE rb_f_exit(int, const VALUE*));
NORETURN(VALUE rb_f_abort(int, const VALUE*));
void rb_remove_method(VALUE, const char*);
void rb_remove_method_id(VALUE, ID);
#define HAVE_RB_DEFINE_ALLOC_FUNC 1
typedef VALUE (*rb_alloc_func_t)(VALUE);
void rb_define_alloc_func(VALUE, rb_alloc_func_t);
void rb_undef_alloc_func(VALUE);
rb_alloc_func_t rb_get_alloc_func(VALUE);
void rb_clear_constant_cache(void);
void rb_clear_method_cache_by_class(VALUE);
void rb_alias(VALUE, ID, ID);
void rb_attr(VALUE,ID,int,int,int);
int rb_method_boundp(VALUE, ID, int);
int rb_method_basic_definition_p(VALUE, ID);
VALUE rb_eval_cmd(VALUE, VALUE, int);
VALUE rb_eval_cmd_kw(VALUE, VALUE, int);
int rb_obj_respond_to(VALUE, ID, int);
int rb_respond_to(VALUE, ID);
NORETURN(VALUE rb_f_notimplement(int argc, const VALUE *argv, VALUE obj, VALUE marker));
#if !defined(RUBY_EXPORT) && defined(_WIN32)
RUBY_EXTERN VALUE (*const rb_f_notimplement_)(int, const VALUE *, VALUE, VALUE marker);
#define rb_f_notimplement (*rb_f_notimplement_)
#endif
NORETURN(void rb_interrupt(void));
VALUE rb_apply(VALUE, ID, VALUE);
void rb_backtrace(void);
ID rb_frame_this_func(void);
VALUE rb_obj_instance_eval(int, const VALUE*, VALUE);
VALUE rb_obj_instance_exec(int, const VALUE*, VALUE);
VALUE rb_mod_module_eval(int, const VALUE*, VALUE);
VALUE rb_mod_module_exec(int, const VALUE*, VALUE);
void rb_load(VALUE, int);
void rb_load_protect(VALUE, int, int*);
NORETURN(void rb_jump_tag(int));
int rb_provided(const char*);
int rb_feature_provided(const char *, const char **);
void rb_provide(const char*);
VALUE rb_f_require(VALUE, VALUE);
VALUE rb_require_safe(VALUE, int); /* Remove in 3.0 */
VALUE rb_require_string(VALUE);
void rb_obj_call_init(VALUE, int, const VALUE*);
void rb_obj_call_init_kw(VALUE, int, const VALUE*, int);
VALUE rb_class_new_instance(int, const VALUE*, VALUE);
VALUE rb_class_new_instance_kw(int, const VALUE*, VALUE, int);
VALUE rb_block_proc(void);
VALUE rb_block_lambda(void);
VALUE rb_proc_new(rb_block_call_func_t, VALUE);
VALUE rb_obj_is_proc(VALUE);
VALUE rb_proc_call(VALUE, VALUE);
VALUE rb_proc_call_kw(VALUE, VALUE, int);
VALUE rb_proc_call_with_block(VALUE, int argc, const VALUE *argv, VALUE);
VALUE rb_proc_call_with_block_kw(VALUE, int argc, const VALUE *argv, VALUE, int);
int rb_proc_arity(VALUE);
VALUE rb_proc_lambda_p(VALUE);
VALUE rb_binding_new(void);
VALUE rb_obj_method(VALUE, VALUE);
VALUE rb_obj_is_method(VALUE);
VALUE rb_method_call(int, const VALUE*, VALUE);
VALUE rb_method_call_kw(int, const VALUE*, VALUE, int);
VALUE rb_method_call_with_block(int, const VALUE *, VALUE, VALUE);
VALUE rb_method_call_with_block_kw(int, const VALUE *, VALUE, VALUE, int);
int rb_mod_method_arity(VALUE, ID);
int rb_obj_method_arity(VALUE, ID);
VALUE rb_protect(VALUE (*)(VALUE), VALUE, int*);
void rb_set_end_proc(void (*)(VALUE), VALUE);
void rb_thread_schedule(void);
void rb_thread_wait_fd(int);
int rb_thread_fd_writable(int);
void rb_thread_fd_close(int);
int rb_thread_alone(void);
void rb_thread_sleep(int);
void rb_thread_sleep_forever(void);
void rb_thread_sleep_deadly(void);
VALUE rb_thread_stop(void);
VALUE rb_thread_wakeup(VALUE);
VALUE rb_thread_wakeup_alive(VALUE);
VALUE rb_thread_run(VALUE);
VALUE rb_thread_kill(VALUE);
VALUE rb_thread_create(VALUE (*)(void *), void*);
int rb_thread_fd_select(int, rb_fdset_t *, rb_fdset_t *, rb_fdset_t *, struct timeval *);
void rb_thread_wait_for(struct timeval);
VALUE rb_thread_current(void);
VALUE rb_thread_main(void);
VALUE rb_thread_local_aref(VALUE, ID);
VALUE rb_thread_local_aset(VALUE, ID, VALUE);
void rb_thread_atfork(void);
void rb_thread_atfork_before_exec(void);
VALUE rb_exec_recursive(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE);
VALUE rb_exec_recursive_paired(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE,VALUE);
VALUE rb_exec_recursive_outer(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE);
VALUE rb_exec_recursive_paired_outer(VALUE(*)(VALUE, VALUE, int),VALUE,VALUE,VALUE);
/* dir.c */
VALUE rb_dir_getwd(void);
/* file.c */
VALUE rb_file_s_expand_path(int, const VALUE *);
VALUE rb_file_expand_path(VALUE, VALUE);
VALUE rb_file_s_absolute_path(int, const VALUE *);
VALUE rb_file_absolute_path(VALUE, VALUE);
VALUE rb_file_dirname(VALUE fname);
int rb_find_file_ext_safe(VALUE*, const char* const*, int); /* Remove in 3.0 */
VALUE rb_find_file_safe(VALUE, int); /* Remove in 3.0 */
int rb_find_file_ext(VALUE*, const char* const*);
VALUE rb_find_file(VALUE);
VALUE rb_file_directory_p(VALUE,VALUE);
VALUE rb_str_encode_ospath(VALUE);
int rb_is_absolute_path(const char *);
/* gc.c */
COLDFUNC NORETURN(void rb_memerror(void));
PUREFUNC(int rb_during_gc(void));
void rb_gc_mark_locations(const VALUE*, const VALUE*);
void rb_mark_tbl(struct st_table*);
void rb_mark_tbl_no_pin(struct st_table*);
void rb_mark_set(struct st_table*);
void rb_mark_hash(struct st_table*);
void rb_gc_update_tbl_refs(st_table *ptr);
void rb_gc_mark_maybe(VALUE);
void rb_gc_mark(VALUE);
void rb_gc_mark_movable(VALUE);
VALUE rb_gc_location(VALUE);
void rb_gc_force_recycle(VALUE);
void rb_gc(void);
void rb_gc_copy_finalizer(VALUE,VALUE);
VALUE rb_gc_enable(void);
VALUE rb_gc_disable(void);
VALUE rb_gc_start(void);
VALUE rb_define_finalizer(VALUE, VALUE);
VALUE rb_undefine_finalizer(VALUE);
size_t rb_gc_count(void);
size_t rb_gc_stat(VALUE);
VALUE rb_gc_latest_gc_info(VALUE);
void rb_gc_adjust_memory_usage(ssize_t);
/* hash.c */
void rb_st_foreach_safe(struct st_table *, int (*)(st_data_t, st_data_t, st_data_t), st_data_t);
#define st_foreach_safe rb_st_foreach_safe
VALUE rb_check_hash_type(VALUE);
void rb_hash_foreach(VALUE, int (*)(VALUE, VALUE, VALUE), VALUE);
VALUE rb_hash(VALUE);
VALUE rb_hash_new(void);
VALUE rb_hash_dup(VALUE);
VALUE rb_hash_freeze(VALUE);
VALUE rb_hash_aref(VALUE, VALUE);
VALUE rb_hash_lookup(VALUE, VALUE);
VALUE rb_hash_lookup2(VALUE, VALUE, VALUE);
VALUE rb_hash_fetch(VALUE, VALUE);
VALUE rb_hash_aset(VALUE, VALUE, VALUE);
VALUE rb_hash_clear(VALUE);
VALUE rb_hash_delete_if(VALUE);
VALUE rb_hash_delete(VALUE,VALUE);
VALUE rb_hash_set_ifnone(VALUE hash, VALUE ifnone);
void rb_hash_bulk_insert(long, const VALUE *, VALUE);
typedef VALUE rb_hash_update_func(VALUE newkey, VALUE oldkey, VALUE value);
VALUE rb_hash_update_by(VALUE hash1, VALUE hash2, rb_hash_update_func *func);
struct st_table *rb_hash_tbl(VALUE, const char *file, int line);
int rb_path_check(const char*);
int rb_env_path_tainted(void);
VALUE rb_env_clear(void);
VALUE rb_hash_size(VALUE);
void rb_hash_free(VALUE);
/* io.c */
#define rb_defout rb_stdout
RUBY_EXTERN VALUE rb_fs;
RUBY_EXTERN VALUE rb_output_fs;
RUBY_EXTERN VALUE rb_rs;
RUBY_EXTERN VALUE rb_default_rs;
RUBY_EXTERN VALUE rb_output_rs;
VALUE rb_io_write(VALUE, VALUE);
VALUE rb_io_gets(VALUE);
VALUE rb_io_getbyte(VALUE);
VALUE rb_io_ungetc(VALUE, VALUE);
VALUE rb_io_ungetbyte(VALUE, VALUE);
VALUE rb_io_close(VALUE);
VALUE rb_io_flush(VALUE);
VALUE rb_io_eof(VALUE);
VALUE rb_io_binmode(VALUE);
VALUE rb_io_ascii8bit_binmode(VALUE);
VALUE rb_io_addstr(VALUE, VALUE);
VALUE rb_io_printf(int, const VALUE*, VALUE);
VALUE rb_io_print(int, const VALUE*, VALUE);
VALUE rb_io_puts(int, const VALUE*, VALUE);
VALUE rb_io_fdopen(int, int, const char*);
VALUE rb_io_get_io(VALUE);
VALUE rb_file_open(const char*, const char*);
VALUE rb_file_open_str(VALUE, const char*);
VALUE rb_gets(void);
void rb_write_error(const char*);
void rb_write_error2(const char*, long);
void rb_close_before_exec(int lowfd, int maxhint, VALUE noclose_fds);
int rb_pipe(int *pipes);
int rb_reserved_fd_p(int fd);
int rb_cloexec_open(const char *pathname, int flags, mode_t mode);
int rb_cloexec_dup(int oldfd);
int rb_cloexec_dup2(int oldfd, int newfd);
int rb_cloexec_pipe(int fildes[2]);
int rb_cloexec_fcntl_dupfd(int fd, int minfd);
#define RB_RESERVED_FD_P(fd) rb_reserved_fd_p(fd)
void rb_update_max_fd(int fd);
void rb_fd_fix_cloexec(int fd);
/* marshal.c */
VALUE rb_marshal_dump(VALUE, VALUE);
VALUE rb_marshal_load(VALUE);
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE (*dumper)(VALUE), VALUE (*loader)(VALUE, VALUE));
/* numeric.c */
NORETURN(void rb_num_zerodiv(void));
#define RB_NUM_COERCE_FUNCS_NEED_OPID 1
VALUE rb_num_coerce_bin(VALUE, VALUE, ID);
VALUE rb_num_coerce_cmp(VALUE, VALUE, ID);
VALUE rb_num_coerce_relop(VALUE, VALUE, ID);
VALUE rb_num_coerce_bit(VALUE, VALUE, ID);
VALUE rb_num2fix(VALUE);
VALUE rb_fix2str(VALUE, int);
CONSTFUNC(VALUE rb_dbl_cmp(double, double));
/* object.c */
int rb_eql(VALUE, VALUE);
VALUE rb_any_to_s(VALUE);
VALUE rb_inspect(VALUE);
VALUE rb_obj_is_instance_of(VALUE, VALUE);
VALUE rb_obj_is_kind_of(VALUE, VALUE);
VALUE rb_obj_alloc(VALUE);
VALUE rb_obj_clone(VALUE);
VALUE rb_obj_dup(VALUE);
VALUE rb_obj_init_copy(VALUE,VALUE);
VALUE rb_obj_taint(VALUE);
PUREFUNC(VALUE rb_obj_tainted(VALUE));
VALUE rb_obj_untaint(VALUE);
VALUE rb_obj_untrust(VALUE);
PUREFUNC(VALUE rb_obj_untrusted(VALUE));
VALUE rb_obj_trust(VALUE);
VALUE rb_obj_freeze(VALUE);
PUREFUNC(VALUE rb_obj_frozen_p(VALUE));
VALUE rb_obj_id(VALUE);
VALUE rb_memory_id(VALUE);
VALUE rb_obj_class(VALUE);
PUREFUNC(VALUE rb_class_real(VALUE));
PUREFUNC(VALUE rb_class_inherited_p(VALUE, VALUE));
VALUE rb_class_superclass(VALUE);
VALUE rb_class_get_superclass(VALUE);
VALUE rb_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_to_integer(VALUE, const char *);
VALUE rb_check_to_float(VALUE);
VALUE rb_to_int(VALUE);
VALUE rb_check_to_int(VALUE);
VALUE rb_Integer(VALUE);
VALUE rb_to_float(VALUE);
VALUE rb_Float(VALUE);
VALUE rb_String(VALUE);
VALUE rb_Array(VALUE);
VALUE rb_Hash(VALUE);
double rb_cstr_to_dbl(const char*, int);
double rb_str_to_dbl(VALUE, int);
/* parse.y */
ID rb_id_attrset(ID);
CONSTFUNC(int rb_is_const_id(ID));
CONSTFUNC(int rb_is_global_id(ID));
CONSTFUNC(int rb_is_instance_id(ID));
CONSTFUNC(int rb_is_attrset_id(ID));
CONSTFUNC(int rb_is_class_id(ID));
CONSTFUNC(int rb_is_local_id(ID));
CONSTFUNC(int rb_is_junk_id(ID));
int rb_symname_p(const char*);
int rb_sym_interned_p(VALUE);
VALUE rb_backref_get(void);
void rb_backref_set(VALUE);
VALUE rb_lastline_get(void);
void rb_lastline_set(VALUE);
/* process.c */
void rb_last_status_set(int status, rb_pid_t pid);
VALUE rb_last_status_get(void);
int rb_proc_exec(const char*);
NORETURN(VALUE rb_f_exec(int, const VALUE*));
rb_pid_t rb_waitpid(rb_pid_t pid, int *status, int flags);
void rb_syswait(rb_pid_t pid);
rb_pid_t rb_spawn(int, const VALUE*);
rb_pid_t rb_spawn_err(int, const VALUE*, char*, size_t);
VALUE rb_proc_times(VALUE);
VALUE rb_detach_process(rb_pid_t pid);
/* range.c */
VALUE rb_range_new(VALUE, VALUE, int);
VALUE rb_range_beg_len(VALUE, long*, long*, long, int);
int rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp);
/* random.c */
unsigned int rb_genrand_int32(void);
double rb_genrand_real(void);
void rb_reset_random_seed(void);
VALUE rb_random_bytes(VALUE rnd, long n);
VALUE rb_random_int(VALUE rnd, VALUE max);
unsigned int rb_random_int32(VALUE rnd);
double rb_random_real(VALUE rnd);
unsigned long rb_random_ulong_limited(VALUE rnd, unsigned long limit);
unsigned long rb_genrand_ulong_limited(unsigned long i);
/* re.c */
#define rb_memcmp memcmp
int rb_memcicmp(const void*,const void*,long);
void rb_match_busy(VALUE);
VALUE rb_reg_nth_defined(int, VALUE);
VALUE rb_reg_nth_match(int, VALUE);
int rb_reg_backref_number(VALUE match, VALUE backref);
VALUE rb_reg_last_match(VALUE);
VALUE rb_reg_match_pre(VALUE);
VALUE rb_reg_match_post(VALUE);
VALUE rb_reg_match_last(VALUE);
#define HAVE_RB_REG_NEW_STR 1
VALUE rb_reg_new_str(VALUE, int);
VALUE rb_reg_new(const char *, long, int);
VALUE rb_reg_alloc(void);
VALUE rb_reg_init_str(VALUE re, VALUE s, int options);
VALUE rb_reg_match(VALUE, VALUE);
VALUE rb_reg_match2(VALUE);
int rb_reg_options(VALUE);
/* ruby.c */
#define rb_argv rb_get_argv()
RUBY_EXTERN VALUE rb_argv0;
VALUE rb_get_argv(void);
void *rb_load_file(const char*);
void *rb_load_file_str(VALUE);
/* signal.c */
VALUE rb_f_kill(int, const VALUE*);
#ifdef POSIX_SIGNAL
#define posix_signal ruby_posix_signal
RETSIGTYPE (*posix_signal(int, RETSIGTYPE (*)(int)))(int);
#endif
const char *ruby_signal_name(int);
void ruby_default_signal(int);
/* sprintf.c */
VALUE rb_f_sprintf(int, const VALUE*);
PRINTF_ARGS(VALUE rb_sprintf(const char*, ...), 1, 2);
VALUE rb_vsprintf(const char*, va_list);
PRINTF_ARGS(VALUE rb_str_catf(VALUE, const char*, ...), 2, 3);
VALUE rb_str_vcatf(VALUE, const char*, va_list);
VALUE rb_str_format(int, const VALUE *, VALUE);
/* string.c */
VALUE rb_str_new(const char*, long);
VALUE rb_str_new_cstr(const char*);
VALUE rb_str_new_shared(VALUE);
VALUE rb_str_new_frozen(VALUE);
VALUE rb_str_new_with_class(VALUE, const char*, long);
VALUE rb_tainted_str_new_cstr(const char*);
VALUE rb_tainted_str_new(const char*, long);
VALUE rb_external_str_new(const char*, long);
VALUE rb_external_str_new_cstr(const char*);
VALUE rb_locale_str_new(const char*, long);
VALUE rb_locale_str_new_cstr(const char*);
VALUE rb_filesystem_str_new(const char*, long);
VALUE rb_filesystem_str_new_cstr(const char*);
VALUE rb_str_buf_new(long);
VALUE rb_str_buf_new_cstr(const char*);
VALUE rb_str_buf_new2(const char*);
VALUE rb_str_tmp_new(long);
VALUE rb_usascii_str_new(const char*, long);
VALUE rb_usascii_str_new_cstr(const char*);
VALUE rb_utf8_str_new(const char*, long);
VALUE rb_utf8_str_new_cstr(const char*);
VALUE rb_str_new_static(const char *, long);
VALUE rb_usascii_str_new_static(const char *, long);
VALUE rb_utf8_str_new_static(const char *, long);
void rb_str_free(VALUE);
void rb_str_shared_replace(VALUE, VALUE);
VALUE rb_str_buf_append(VALUE, VALUE);
VALUE rb_str_buf_cat(VALUE, const char*, long);
VALUE rb_str_buf_cat2(VALUE, const char*);
VALUE rb_str_buf_cat_ascii(VALUE, const char*);
VALUE rb_obj_as_string(VALUE);
VALUE rb_check_string_type(VALUE);
void rb_must_asciicompat(VALUE);
VALUE rb_str_dup(VALUE);
VALUE rb_str_resurrect(VALUE str);
VALUE rb_str_locktmp(VALUE);
VALUE rb_str_unlocktmp(VALUE);
VALUE rb_str_dup_frozen(VALUE);
#define rb_str_dup_frozen rb_str_new_frozen
VALUE rb_str_plus(VALUE, VALUE);
VALUE rb_str_times(VALUE, VALUE);
long rb_str_sublen(VALUE, long);
VALUE rb_str_substr(VALUE, long, long);
VALUE rb_str_subseq(VALUE, long, long);
char *rb_str_subpos(VALUE, long, long*);
void rb_str_modify(VALUE);
void rb_str_modify_expand(VALUE, long);
VALUE rb_str_freeze(VALUE);
void rb_str_set_len(VALUE, long);
VALUE rb_str_resize(VALUE, long);
VALUE rb_str_cat(VALUE, const char*, long);
VALUE rb_str_cat_cstr(VALUE, const char*);
VALUE rb_str_cat2(VALUE, const char*);
VALUE rb_str_append(VALUE, VALUE);
VALUE rb_str_concat(VALUE, VALUE);
st_index_t rb_memhash(const void *ptr, long len);
st_index_t rb_hash_start(st_index_t);
st_index_t rb_hash_uint32(st_index_t, uint32_t);
st_index_t rb_hash_uint(st_index_t, st_index_t);
st_index_t rb_hash_end(st_index_t);
#define rb_hash_uint32(h, i) st_hash_uint32((h), (i))
#define rb_hash_uint(h, i) st_hash_uint((h), (i))
#define rb_hash_end(h) st_hash_end(h)
st_index_t rb_str_hash(VALUE);
int rb_str_hash_cmp(VALUE,VALUE);
int rb_str_comparable(VALUE, VALUE);
int rb_str_cmp(VALUE, VALUE);
VALUE rb_str_equal(VALUE str1, VALUE str2);
VALUE rb_str_drop_bytes(VALUE, long);
void rb_str_update(VALUE, long, long, VALUE);
VALUE rb_str_replace(VALUE, VALUE);
VALUE rb_str_inspect(VALUE);
VALUE rb_str_dump(VALUE);
VALUE rb_str_split(VALUE, const char*);
rb_gvar_setter_t rb_str_setter;
VALUE rb_str_intern(VALUE);
VALUE rb_sym_to_s(VALUE);
long rb_str_strlen(VALUE);
VALUE rb_str_length(VALUE);
long rb_str_offset(VALUE, long);
PUREFUNC(size_t rb_str_capacity(VALUE));
VALUE rb_str_ellipsize(VALUE, long);
VALUE rb_str_scrub(VALUE, VALUE);
/* symbol.c */
VALUE rb_sym_all_symbols(void);

#ifdef HAVE_BUILTIN___BUILTIN_CONSTANT_P
#define rb_str_new(str, len) RB_GNUC_EXTENSION_BLOCK(	\
    (__builtin_constant_p(str) && __builtin_constant_p(len)) ? \
	rb_str_new_static((str), (len)) : \
	rb_str_new((str), (len))	  \
)
#define rb_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK(	\
    (__builtin_constant_p(str)) ?		\
	rb_str_new_static((str), (long)strlen(str)) : \
	rb_str_new_cstr(str)			\
)
#define rb_usascii_str_new(str, len) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str) && __builtin_constant_p(len)) ? \
	rb_usascii_str_new_static((str), (len)) : \
	rb_usascii_str_new((str), (len))	  \
)
#define rb_utf8_str_new(str, len) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str) && __builtin_constant_p(len)) ? \
	rb_utf8_str_new_static((str), (len)) : \
	rb_utf8_str_new((str), (len))	  \
)
#define rb_tainted_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?	       \
	rb_tainted_str_new((str), (long)strlen(str)) : \
	rb_tainted_str_new_cstr(str)	       \
)
#define rb_usascii_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?	       \
	rb_usascii_str_new_static((str), (long)strlen(str)) : \
	rb_usascii_str_new_cstr(str)	       \
)
#define rb_utf8_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?		\
	rb_utf8_str_new_static((str), (long)strlen(str)) : \
	rb_utf8_str_new_cstr(str)		\
)
#define rb_external_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?		\
	rb_external_str_new((str), (long)strlen(str)) : \
	rb_external_str_new_cstr(str)		\
)
#define rb_locale_str_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?	       \
	rb_locale_str_new((str), (long)strlen(str)) :  \
	rb_locale_str_new_cstr(str)	       \
)
#define rb_str_buf_new_cstr(str) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(str)) ?		\
	rb_str_buf_cat(rb_str_buf_new((long)strlen(str)), \
		       (str), (long)strlen(str)) : \
	rb_str_buf_new_cstr(str)		\
)
#define rb_str_cat_cstr(str, ptr) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(ptr)) ?	        \
	rb_str_cat((str), (ptr), (long)strlen(ptr)) : \
	rb_str_cat_cstr((str), (ptr))		\
)
#define rb_exc_new_cstr(klass, ptr) RB_GNUC_EXTENSION_BLOCK( \
    (__builtin_constant_p(ptr)) ?	        \
	rb_exc_new((klass), (ptr), (long)strlen(ptr)) : \
	rb_exc_new_cstr((klass), (ptr))		\
)
#endif
#define rb_str_new2 rb_str_new_cstr
#define rb_str_new3 rb_str_new_shared
#define rb_str_new4 rb_str_new_frozen
#define rb_str_new5 rb_str_new_with_class
#define rb_tainted_str_new2 rb_tainted_str_new_cstr
#define rb_str_buf_new2 rb_str_buf_new_cstr
#define rb_usascii_str_new2 rb_usascii_str_new_cstr
#define rb_str_buf_cat rb_str_cat
#define rb_str_buf_cat2 rb_str_cat_cstr
#define rb_str_cat2 rb_str_cat_cstr
#define rb_strlen_lit(str) (sizeof(str "") - 1)
#define rb_str_new_lit(str) rb_str_new_static((str), rb_strlen_lit(str))
#define rb_usascii_str_new_lit(str) rb_usascii_str_new_static((str), rb_strlen_lit(str))
#define rb_utf8_str_new_lit(str) rb_utf8_str_new_static((str), rb_strlen_lit(str))
#define rb_enc_str_new_lit(str, enc) rb_enc_str_new_static((str), rb_strlen_lit(str), (enc))
#define rb_str_new_literal(str) rb_str_new_lit(str)
#define rb_usascii_str_new_literal(str) rb_usascii_str_new_lit(str)
#define rb_utf8_str_new_literal(str) rb_utf8_str_new_lit(str)
#define rb_enc_str_new_literal(str, enc) rb_enc_str_new_lit(str, enc)

/* struct.c */
VALUE rb_struct_new(VALUE, ...);
VALUE rb_struct_define(const char*, ...);
VALUE rb_struct_define_under(VALUE, const char*, ...);
VALUE rb_struct_alloc(VALUE, VALUE);
VALUE rb_struct_initialize(VALUE, VALUE);
VALUE rb_struct_aref(VALUE, VALUE);
VALUE rb_struct_aset(VALUE, VALUE, VALUE);
VALUE rb_struct_getmember(VALUE, ID);
VALUE rb_struct_s_members(VALUE);
VALUE rb_struct_members(VALUE);
VALUE rb_struct_size(VALUE s);
VALUE rb_struct_alloc_noinit(VALUE);
VALUE rb_struct_define_without_accessor(const char *, VALUE, rb_alloc_func_t, ...);
VALUE rb_struct_define_without_accessor_under(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc, ...);

/* thread.c */
typedef void rb_unblock_function_t(void *);
typedef VALUE rb_blocking_function_t(void *);
void rb_thread_check_ints(void);
int rb_thread_interrupted(VALUE thval);

#define RUBY_UBF_IO ((rb_unblock_function_t *)-1)
#define RUBY_UBF_PROCESS ((rb_unblock_function_t *)-1)
VALUE rb_mutex_new(void);
VALUE rb_mutex_locked_p(VALUE mutex);
VALUE rb_mutex_trylock(VALUE mutex);
VALUE rb_mutex_lock(VALUE mutex);
VALUE rb_mutex_unlock(VALUE mutex);
VALUE rb_mutex_sleep(VALUE self, VALUE timeout);
VALUE rb_mutex_synchronize(VALUE mutex, VALUE (*func)(VALUE arg), VALUE arg);
/* time.c */
struct timespec;
void rb_timespec_now(struct timespec *);
VALUE rb_time_new(time_t, long);
VALUE rb_time_nano_new(time_t, long);
VALUE rb_time_timespec_new(const struct timespec *, int);
VALUE rb_time_num_new(VALUE, VALUE);
struct timeval rb_time_interval(VALUE num);
struct timeval rb_time_timeval(VALUE time);
struct timespec rb_time_timespec(VALUE time);
struct timespec rb_time_timespec_interval(VALUE num);
VALUE rb_time_utc_offset(VALUE time);
/* variable.c */
VALUE rb_mod_name(VALUE);
VALUE rb_class_path(VALUE);
VALUE rb_class_path_cached(VALUE);
void rb_set_class_path(VALUE, VALUE, const char*);
void rb_set_class_path_string(VALUE, VALUE, VALUE);
VALUE rb_path_to_class(VALUE);
VALUE rb_path2class(const char*);
VALUE rb_class_name(VALUE);
VALUE rb_autoload_load(VALUE, ID);
VALUE rb_autoload_p(VALUE, ID);
VALUE rb_f_trace_var(int, const VALUE*);
VALUE rb_f_untrace_var(int, const VALUE*);
VALUE rb_f_global_variables(void);
void rb_alias_variable(ID, ID);
void rb_copy_generic_ivar(VALUE,VALUE);
void rb_free_generic_ivar(VALUE);
VALUE rb_ivar_get(VALUE, ID);
VALUE rb_ivar_set(VALUE, ID, VALUE);
VALUE rb_ivar_defined(VALUE, ID);
void rb_ivar_foreach(VALUE, int (*)(ID, VALUE, st_data_t), st_data_t);
st_index_t rb_ivar_count(VALUE);
VALUE rb_attr_get(VALUE, ID);
VALUE rb_obj_instance_variables(VALUE);
VALUE rb_obj_remove_instance_variable(VALUE, VALUE);
void *rb_mod_const_at(VALUE, void*);
void *rb_mod_const_of(VALUE, void*);
VALUE rb_const_list(void*);
VALUE rb_mod_constants(int, const VALUE *, VALUE);
VALUE rb_mod_remove_const(VALUE, VALUE);
int rb_const_defined(VALUE, ID);
int rb_const_defined_at(VALUE, ID);
int rb_const_defined_from(VALUE, ID);
VALUE rb_const_get(VALUE, ID);
VALUE rb_const_get_at(VALUE, ID);
VALUE rb_const_get_from(VALUE, ID);
void rb_const_set(VALUE, ID, VALUE);
VALUE rb_const_remove(VALUE, ID);
#if 0 /* EXPERIMENTAL: remove if no problem */
NORETURN(VALUE rb_mod_const_missing(VALUE,VALUE));
#endif
VALUE rb_cvar_defined(VALUE, ID);
void rb_cvar_set(VALUE, ID, VALUE);
VALUE rb_cvar_get(VALUE, ID);
void rb_cv_set(VALUE, const char*, VALUE);
VALUE rb_cv_get(VALUE, const char*);
void rb_define_class_variable(VALUE, const char*, VALUE);
VALUE rb_mod_class_variables(int, const VALUE*, VALUE);
VALUE rb_mod_remove_cvar(VALUE, VALUE);

ID rb_frame_callee(void);
int rb_frame_method_id_and_class(ID *idp, VALUE *klassp);
VALUE rb_str_succ(VALUE);
VALUE rb_time_succ(VALUE);
VALUE rb_make_backtrace(void);
VALUE rb_make_exception(int, const VALUE*);

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
extern "C++" {
#endif

#if defined(HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P)
# define rb_f_notimplement_p(f) __builtin_types_compatible_p(__typeof__(f),__typeof__(rb_f_notimplement))
#else
# define rb_f_notimplement_p(f) 0
#endif

#if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P) && !defined(_WIN32) && !defined(__CYGWIN__)
#if defined(__has_attribute) && __has_attribute(transparent_union) && __has_attribute(unused) && __has_attribute(weakref) && __has_attribute(nonnull)
#define RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,funcargs) \
    __attribute__((__unused__,__weakref__(#def),__nonnull__ nonnull))static void defname(RB_UNWRAP_MACRO decl,VALUE(*func)funcargs,int arity);
#endif
#endif

#if defined(RB_METHOD_DEFINITION_DECL_C) || defined(__cplusplus)
#ifndef RB_METHOD_DEFINITION_DECL_C
#define RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,funcargs) \
    static inline void defname(RB_UNWRAP_MACRO decl,VALUE(*func)funcargs,int arity) \
    { \
        def(RB_UNWRAP_MACRO vars,(VALUE(*)(ANYARGS))(func),arity); \
    }
#endif

#define RB_UNWRAP_MACRO(...) __VA_ARGS__

#ifdef __cplusplus
#define RB_METHOD_DEFINITION_DECL_CXX_BEGIN(def) template <int Arity> struct def##_tmpl {};
#define RB_METHOD_DEFINITION_DECL_CXX(def,defname,decl,vars,funcargs,arity) \
    template <> struct def##_tmpl<arity> { \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)funcargs) {::defname(RB_UNWRAP_MACRO vars, func, arity);} \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)(...)) {::defname(RB_UNWRAP_MACRO vars, reinterpret_cast<VALUE(*)funcargs>(func), arity);} \
    };
#else
#define RB_METHOD_DEFINITION_DECL_CXX_BEGIN(def) /* nothing */
#define RB_METHOD_DEFINITION_DECL_CXX(def,defname,decl,vars,funcargs,arity) /* nothing */
#endif
#define RB_METHOD_DEFINITION_DECL_1(def,nonnull,defname,arity,decl,vars,funcargs) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,funcargs) \
    RB_METHOD_DEFINITION_DECL_CXX(def,defname,decl,vars,funcargs,arity)

#define RB_METHOD_DEFINITION_DECL(def,nonnull,decl,vars) \
RB_METHOD_DEFINITION_DECL_CXX_BEGIN(def) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##0 ,0 ,decl,vars,(VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##1 ,1 ,decl,vars,(VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##2 ,2 ,decl,vars,(VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##3 ,3 ,decl,vars,(VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##4 ,4 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##5 ,5 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##6 ,6 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##7 ,7 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##8 ,8 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##9 ,9 ,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##10,10,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##11,11,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##12,12,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##13,13,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##14,14,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##15,15,decl,vars,(VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_M3(def,nonnull,def##m3,decl,vars) \
RB_METHOD_DEFINITION_DECL_1(def,nonnull,def##m2,-2,decl,vars,(VALUE,VALUE)) \
RB_METHOD_DEFINITION_DECL_M1(def,nonnull,def##m1,decl,vars) /* END */
#ifdef __cplusplus
#define RB_METHOD_DEFINITION_DECL_M1(def,nonnull,defname,decl,vars) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(int,VALUE*,VALUE)) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(int,const VALUE*,VALUE)) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(int,const VALUE*,VALUE,VALUE)) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(...)) \
    template <> struct def##_tmpl<-1> { \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)(int,VALUE*,VALUE)) {::defname(RB_UNWRAP_MACRO vars, func, -1);} \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)(int,const VALUE*,VALUE)) {::defname(RB_UNWRAP_MACRO vars, func, -1);} \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)(int,const VALUE*,VALUE,VALUE)) {::defname(RB_UNWRAP_MACRO vars, func, -1);} \
        static void define(RB_UNWRAP_MACRO decl, VALUE (*func)(...)) {::defname(RB_UNWRAP_MACRO vars, func, -1);} \
    };
#define RB_METHOD_DEFINITION_DECL_M3(def,nonnull,defname,decl,vars) /* nothing */
#else
#define RB_METHOD_DEFINITION_DECL_M1(def,nonnull,defname,decl,vars) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,(int,union{VALUE*x;const VALUE*y;}__attribute__((__transparent_union__)),VALUE))
#define RB_METHOD_DEFINITION_DECL_M3(def,nonnull,defname,decl,vars) \
    RB_METHOD_DEFINITION_DECL_C(def,nonnull,defname,decl,vars,())
#endif

#endif

#ifdef RB_METHOD_DEFINITION_DECL

RB_METHOD_DEFINITION_DECL(rb_define_method_id, (3), (VALUE klass, ID name), (klass, name))
#ifdef __cplusplus
#define rb_define_method_id(m, n, f, a) rb_define_method_id_tmpl<a>::define(m, n, f)
#else
#define rb_define_method_id_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_method_id15,rb_define_method_idm3)
#define rb_define_method_id_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_method_id14,rb_define_method_id_choose_prototype15(n))
#define rb_define_method_id_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_method_id13,rb_define_method_id_choose_prototype14(n))
#define rb_define_method_id_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_method_id12,rb_define_method_id_choose_prototype13(n))
#define rb_define_method_id_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_method_id11,rb_define_method_id_choose_prototype12(n))
#define rb_define_method_id_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_method_id10,rb_define_method_id_choose_prototype11(n))
#define rb_define_method_id_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_method_id9, rb_define_method_id_choose_prototype10(n))
#define rb_define_method_id_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_method_id8, rb_define_method_id_choose_prototype9(n))
#define rb_define_method_id_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_method_id7, rb_define_method_id_choose_prototype8(n))
#define rb_define_method_id_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_method_id6, rb_define_method_id_choose_prototype7(n))
#define rb_define_method_id_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_method_id5, rb_define_method_id_choose_prototype6(n))
#define rb_define_method_id_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_method_id4, rb_define_method_id_choose_prototype5(n))
#define rb_define_method_id_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_method_id3, rb_define_method_id_choose_prototype4(n))
#define rb_define_method_id_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_method_id2, rb_define_method_id_choose_prototype3(n))
#define rb_define_method_id_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_method_id1, rb_define_method_id_choose_prototype2(n))
#define rb_define_method_id_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_method_id0, rb_define_method_id_choose_prototype1(n))
#define rb_define_method_id_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_method_idm1,rb_define_method_id_choose_prototype0(n))
#define rb_define_method_id_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_method_idm2,rb_define_method_id_choose_prototypem1(n))
#define rb_define_method_id_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_method_idm3,rb_define_method_id_choose_prototypem2(n))
#define rb_define_method_id(klass, mid, func, arity) rb_define_method_id_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

RB_METHOD_DEFINITION_DECL(rb_define_protected_method, (2,3), (VALUE klass, const char *name), (klass, name))
#ifdef __cplusplus
#define rb_define_protected_method(m, n, f, a) rb_define_protected_method_tmpl<a>::define(m, n, f)
#else
#define rb_define_protected_method_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_protected_method15,rb_define_protected_methodm3)
#define rb_define_protected_method_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_protected_method14,rb_define_protected_method_choose_prototype15(n))
#define rb_define_protected_method_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_protected_method13,rb_define_protected_method_choose_prototype14(n))
#define rb_define_protected_method_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_protected_method12,rb_define_protected_method_choose_prototype13(n))
#define rb_define_protected_method_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_protected_method11,rb_define_protected_method_choose_prototype12(n))
#define rb_define_protected_method_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_protected_method10,rb_define_protected_method_choose_prototype11(n))
#define rb_define_protected_method_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_protected_method9, rb_define_protected_method_choose_prototype10(n))
#define rb_define_protected_method_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_protected_method8, rb_define_protected_method_choose_prototype9(n))
#define rb_define_protected_method_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_protected_method7, rb_define_protected_method_choose_prototype8(n))
#define rb_define_protected_method_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_protected_method6, rb_define_protected_method_choose_prototype7(n))
#define rb_define_protected_method_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_protected_method5, rb_define_protected_method_choose_prototype6(n))
#define rb_define_protected_method_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_protected_method4, rb_define_protected_method_choose_prototype5(n))
#define rb_define_protected_method_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_protected_method3, rb_define_protected_method_choose_prototype4(n))
#define rb_define_protected_method_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_protected_method2, rb_define_protected_method_choose_prototype3(n))
#define rb_define_protected_method_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_protected_method1, rb_define_protected_method_choose_prototype2(n))
#define rb_define_protected_method_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_protected_method0, rb_define_protected_method_choose_prototype1(n))
#define rb_define_protected_method_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_protected_methodm1,rb_define_protected_method_choose_prototype0(n))
#define rb_define_protected_method_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_protected_methodm2,rb_define_protected_method_choose_prototypem1(n))
#define rb_define_protected_method_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_protected_methodm3,rb_define_protected_method_choose_prototypem2(n))
#define rb_define_protected_method(klass, mid, func, arity) rb_define_protected_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

RB_METHOD_DEFINITION_DECL(rb_define_private_method, (2,3), (VALUE klass, const char *name), (klass, name))
#ifdef __cplusplus
#define rb_define_private_method(m, n, f, a) rb_define_private_method_tmpl<a>::define(m, n, f)
#else
#define rb_define_private_method_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_private_method15,rb_define_private_methodm3)
#define rb_define_private_method_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_private_method14,rb_define_private_method_choose_prototype15(n))
#define rb_define_private_method_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_private_method13,rb_define_private_method_choose_prototype14(n))
#define rb_define_private_method_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_private_method12,rb_define_private_method_choose_prototype13(n))
#define rb_define_private_method_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_private_method11,rb_define_private_method_choose_prototype12(n))
#define rb_define_private_method_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_private_method10,rb_define_private_method_choose_prototype11(n))
#define rb_define_private_method_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_private_method9, rb_define_private_method_choose_prototype10(n))
#define rb_define_private_method_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_private_method8, rb_define_private_method_choose_prototype9(n))
#define rb_define_private_method_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_private_method7, rb_define_private_method_choose_prototype8(n))
#define rb_define_private_method_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_private_method6, rb_define_private_method_choose_prototype7(n))
#define rb_define_private_method_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_private_method5, rb_define_private_method_choose_prototype6(n))
#define rb_define_private_method_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_private_method4, rb_define_private_method_choose_prototype5(n))
#define rb_define_private_method_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_private_method3, rb_define_private_method_choose_prototype4(n))
#define rb_define_private_method_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_private_method2, rb_define_private_method_choose_prototype3(n))
#define rb_define_private_method_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_private_method1, rb_define_private_method_choose_prototype2(n))
#define rb_define_private_method_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_private_method0, rb_define_private_method_choose_prototype1(n))
#define rb_define_private_method_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_private_methodm1,rb_define_private_method_choose_prototype0(n))
#define rb_define_private_method_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_private_methodm2,rb_define_private_method_choose_prototypem1(n))
#define rb_define_private_method_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_private_methodm3,rb_define_private_method_choose_prototypem2(n))
#define rb_define_private_method(klass, mid, func, arity) rb_define_private_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

RB_METHOD_DEFINITION_DECL(rb_define_singleton_method, (2,3), (VALUE klass, const char *name), (klass, name))
#ifdef __cplusplus
#define rb_define_singleton_method(m, n, f, a) rb_define_singleton_method_tmpl<a>::define(m, n, f)
#else
#define rb_define_singleton_method_choose_prototype15(n)    rb_define_method_if_constexpr((n)==15,rb_define_singleton_method15,rb_define_singleton_methodm3)
#define rb_define_singleton_method_choose_prototype14(n)    rb_define_method_if_constexpr((n)==14,rb_define_singleton_method14,rb_define_singleton_method_choose_prototype15(n))
#define rb_define_singleton_method_choose_prototype13(n)    rb_define_method_if_constexpr((n)==13,rb_define_singleton_method13,rb_define_singleton_method_choose_prototype14(n))
#define rb_define_singleton_method_choose_prototype12(n)    rb_define_method_if_constexpr((n)==12,rb_define_singleton_method12,rb_define_singleton_method_choose_prototype13(n))
#define rb_define_singleton_method_choose_prototype11(n)    rb_define_method_if_constexpr((n)==11,rb_define_singleton_method11,rb_define_singleton_method_choose_prototype12(n))
#define rb_define_singleton_method_choose_prototype10(n)    rb_define_method_if_constexpr((n)==10,rb_define_singleton_method10,rb_define_singleton_method_choose_prototype11(n))
#define rb_define_singleton_method_choose_prototype9(n)     rb_define_method_if_constexpr((n)== 9,rb_define_singleton_method9, rb_define_singleton_method_choose_prototype10(n))
#define rb_define_singleton_method_choose_prototype8(n)     rb_define_method_if_constexpr((n)== 8,rb_define_singleton_method8, rb_define_singleton_method_choose_prototype9(n))
#define rb_define_singleton_method_choose_prototype7(n)     rb_define_method_if_constexpr((n)== 7,rb_define_singleton_method7, rb_define_singleton_method_choose_prototype8(n))
#define rb_define_singleton_method_choose_prototype6(n)     rb_define_method_if_constexpr((n)== 6,rb_define_singleton_method6, rb_define_singleton_method_choose_prototype7(n))
#define rb_define_singleton_method_choose_prototype5(n)     rb_define_method_if_constexpr((n)== 5,rb_define_singleton_method5, rb_define_singleton_method_choose_prototype6(n))
#define rb_define_singleton_method_choose_prototype4(n)     rb_define_method_if_constexpr((n)== 4,rb_define_singleton_method4, rb_define_singleton_method_choose_prototype5(n))
#define rb_define_singleton_method_choose_prototype3(n)     rb_define_method_if_constexpr((n)== 3,rb_define_singleton_method3, rb_define_singleton_method_choose_prototype4(n))
#define rb_define_singleton_method_choose_prototype2(n)     rb_define_method_if_constexpr((n)== 2,rb_define_singleton_method2, rb_define_singleton_method_choose_prototype3(n))
#define rb_define_singleton_method_choose_prototype1(n)     rb_define_method_if_constexpr((n)== 1,rb_define_singleton_method1, rb_define_singleton_method_choose_prototype2(n))
#define rb_define_singleton_method_choose_prototype0(n)     rb_define_method_if_constexpr((n)== 0,rb_define_singleton_method0, rb_define_singleton_method_choose_prototype1(n))
#define rb_define_singleton_method_choose_prototypem1(n)    rb_define_method_if_constexpr((n)==-1,rb_define_singleton_methodm1,rb_define_singleton_method_choose_prototype0(n))
#define rb_define_singleton_method_choose_prototypem2(n)    rb_define_method_if_constexpr((n)==-2,rb_define_singleton_methodm2,rb_define_singleton_method_choose_prototypem1(n))
#define rb_define_singleton_method_choose_prototypem3(n, f) rb_define_method_if_constexpr(rb_f_notimplement_p(f),rb_define_singleton_methodm3,rb_define_singleton_method_choose_prototypem2(n))
#define rb_define_singleton_method(klass, mid, func, arity) rb_define_singleton_method_choose_prototypem3((arity),(func))((klass),(mid),(func),(arity));
#endif

#endif

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C++" { */
#endif

#endif /* RUBY_INTERN_H */
PKKH[��(LLinclude/ruby/debug.hnu�[���/**********************************************************************

  ruby/debug.h -

  $Author: ko1 $
  created at: Tue Nov 20 20:35:08 2012

  Copyright (C) 2012 Yukihiro Matsumoto

**********************************************************************/

#ifndef RB_DEBUG_H
#define RB_DEBUG_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

/* Note: This file contains experimental APIs. */
/* APIs can be replaced at Ruby 2.0.1 or later */


/* profile frames APIs */
int rb_profile_frames(int start, int limit, VALUE *buff, int *lines);
VALUE rb_profile_frame_path(VALUE frame);
VALUE rb_profile_frame_absolute_path(VALUE frame);
VALUE rb_profile_frame_label(VALUE frame);
VALUE rb_profile_frame_base_label(VALUE frame);
VALUE rb_profile_frame_full_label(VALUE frame);
VALUE rb_profile_frame_first_lineno(VALUE frame);
VALUE rb_profile_frame_classpath(VALUE frame);
VALUE rb_profile_frame_singleton_method_p(VALUE frame);
VALUE rb_profile_frame_method_name(VALUE frame);
VALUE rb_profile_frame_qualified_method_name(VALUE frame);

/* debug inspector APIs */
typedef struct rb_debug_inspector_struct rb_debug_inspector_t;
typedef VALUE (*rb_debug_inspector_func_t)(const rb_debug_inspector_t *, void *);

VALUE rb_debug_inspector_open(rb_debug_inspector_func_t func, void *data);
VALUE rb_debug_inspector_frame_self_get(const rb_debug_inspector_t *dc, long index);
VALUE rb_debug_inspector_frame_class_get(const rb_debug_inspector_t *dc, long index);
VALUE rb_debug_inspector_frame_binding_get(const rb_debug_inspector_t *dc, long index);
VALUE rb_debug_inspector_frame_iseq_get(const rb_debug_inspector_t *dc, long index);
VALUE rb_debug_inspector_backtrace_locations(const rb_debug_inspector_t *dc);

/* Old style set_trace_func APIs */

/* duplicated def of include/ruby/ruby.h */
void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data);
int rb_remove_event_hook(rb_event_hook_func_t func);

int rb_remove_event_hook_with_data(rb_event_hook_func_t func, VALUE data);
void rb_thread_add_event_hook(VALUE thval, rb_event_hook_func_t func, rb_event_flag_t events, VALUE data);
int rb_thread_remove_event_hook(VALUE thval, rb_event_hook_func_t func);
int rb_thread_remove_event_hook_with_data(VALUE thval, rb_event_hook_func_t func, VALUE data);

/* TracePoint APIs */

VALUE rb_tracepoint_new(VALUE target_thread_not_supported_yet, rb_event_flag_t events, void (*func)(VALUE, void *), void *data);
VALUE rb_tracepoint_enable(VALUE tpval);
VALUE rb_tracepoint_disable(VALUE tpval);
VALUE rb_tracepoint_enabled_p(VALUE tpval);

typedef struct rb_trace_arg_struct rb_trace_arg_t;
rb_trace_arg_t *rb_tracearg_from_tracepoint(VALUE tpval);

rb_event_flag_t rb_tracearg_event_flag(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_event(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_lineno(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_path(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_method_id(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_callee_id(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_defined_class(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_binding(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_self(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_return_value(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_raised_exception(rb_trace_arg_t *trace_arg);
VALUE rb_tracearg_object(rb_trace_arg_t *trace_arg);

/*
 * Postponed Job API
 * rb_postponed_job_register and rb_postponed_job_register_one are
 * async-signal-safe and used via SIGPROF by the "stackprof" RubyGem
 */
typedef void (*rb_postponed_job_func_t)(void *arg);
int rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data);
int rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data);

/* undocumented advanced tracing APIs */

typedef enum {
    RUBY_EVENT_HOOK_FLAG_SAFE    = 0x01,
    RUBY_EVENT_HOOK_FLAG_DELETED = 0x02,
    RUBY_EVENT_HOOK_FLAG_RAW_ARG = 0x04
} rb_event_hook_flag_t;

void rb_add_event_hook2(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flag);
void rb_thread_add_event_hook2(VALUE thval, rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flag);

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_DEBUG_H */
PKKH[іɠinclude/ruby/backward/rubysig.hnu�[���/**********************************************************************

  rubysig.h -

  $Author$
  $Date$
  created at: Wed Aug 16 01:15:38 JST 1995

  Copyright (C) 1993-2008 Yukihiro Matsumoto

**********************************************************************/

#if   defined __GNUC__
#warning rubysig.h is obsolete
#elif defined _MSC_VER
#pragma message("warning: rubysig.h is obsolete")
#endif

#ifndef RUBYSIG_H
#define RUBYSIG_H
#include "ruby/ruby.h"

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

#define RUBY_CRITICAL(statements) do {statements;} while (0)
#define DEFER_INTS (0)
#define ENABLE_INTS (1)
#define ALLOW_INTS do {CHECK_INTS;} while (0)
#define CHECK_INTS rb_thread_check_ints()

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif
PKKH[���include/ruby/backward/st.hnu�[���#if   defined __GNUC__
#warning use "ruby/st.h" instead of bare "st.h"
#elif defined _MSC_VER
#pragma message("warning: use \"ruby/st.h\" instead of bare \"st.h\"")
#endif
#include "ruby/st.h"
PKKH[3*S�?�?$include/ruby/backward/cxxanyargs.hppnu�[���#ifndef RUBY_BACKWARD_CXXANYARGS_HPP // -*- C++ -*-
#define RUBY_BACKWARD_CXXANYARGS_HPP
/// @file
/// @brief      Provides old prototypes for C++ programs.
/// @author     \@shyouhei
/// @copyright  This  file  is  a  part   of  the  programming  language  Ruby.
///             Permission  is hereby  granted, to  either redistribute  and/or
///             modify this file, provided that the conditions mentioned in the
///             file COPYING are met.  Consult the file for details.
/// @note       DO NOT  MODERNIZE THIS FILE!   As the  file name implies  it is
///             meant to  be a backwards  compatibility shim.  Please  stick to
///             C++ 98 and never use newer features, like `constexpr`.

/// @brief  The main namespace.
/// @note   The name  "ruby" might  already be  taken, but that  must not  be a
///         problem because namespaces are allowed to reopen.
namespace ruby {

/// @brief  Backwards compatibility layer.
namespace backward {

/// @brief  Provides ANYARGS deprecation warnings.
///
/// In C,  ANYARGS means there  is no function prototype.   Literally anything,
/// even including  nothing, can be  a valid  ANYARGS.  So passing  a correctly
/// prototyped function pointer  to an ANYARGS-ed function  parameter is valid,
/// at the same time passing an ANYARGS-ed function pointer to a granular typed
/// function  parameter is  also  valid.  However  on the  other  hand in  C++,
/// ANYARGS doesn't actually mean any number of arguments.  C++'s ANYARGS means
/// _variadic_ number of arguments.  This is incompatible with ordinal, correct
/// function prototypes.
///
/// Luckily, function  prototypes being distinct  each other means they  can be
/// overloaded.  We can provide a compatibility layer for older Ruby APIs which
/// used to have ANYARGS.  This namespace includes such attempts.
namespace cxxanyargs {

/// @brief ANYARGS-ed function type.
typedef VALUE type(ANYARGS);

/// @brief ANYARGS-ed function type, void variant.
typedef void void_type(ANYARGS);

/// @brief ANYARGS-ed function type, int variant.
typedef int int_type(ANYARGS);

/// @name Hooking global variables
/// @{

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Getter function.
/// @param[in]   e  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_hooked_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_virtual_variable(const char *q, type *w, void_type *e)
{
    rb_gvar_getter_t *r = reinterpret_cast<rb_gvar_getter_t*>(w);
    rb_gvar_setter_t *t = reinterpret_cast<rb_gvar_setter_t*>(e);
    ::rb_define_virtual_variable(q, r, t);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Getter function.
/// @param[in]   e  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_hooked_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_virtual_variable(const char *q, rb_gvar_getter_t *w, void_type *e)
{
    rb_gvar_setter_t *t = reinterpret_cast<rb_gvar_setter_t*>(e);
    ::rb_define_virtual_variable(q, w, t);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Getter function.
/// @param[in]   e  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_hooked_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_virtual_variable(const char *q, type *w, rb_gvar_setter_t *e)
{
    rb_gvar_getter_t *r = reinterpret_cast<rb_gvar_getter_t*>(w);
    ::rb_define_virtual_variable(q, r, e);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Variable storage.
/// @param[in]   e  Getter function.
/// @param[in]   r  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_virtual_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_hooked_variable(const char *q, VALUE *w, type *e, void_type *r)
{
    rb_gvar_getter_t *t = reinterpret_cast<rb_gvar_getter_t*>(e);
    rb_gvar_setter_t *y = reinterpret_cast<rb_gvar_setter_t*>(r);
    ::rb_define_hooked_variable(q, w, t, y);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Variable storage.
/// @param[in]   e  Getter function.
/// @param[in]   r  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_virtual_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_hooked_variable(const char *q, VALUE *w, rb_gvar_getter_t *e, void_type *r)
{
    rb_gvar_setter_t *y = reinterpret_cast<rb_gvar_setter_t*>(r);
    ::rb_define_hooked_variable(q, w, e, y);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Define a function-backended global variable.
/// @param[in]   q  Name of the variable.
/// @param[in]   w  Variable storage.
/// @param[in]   e  Getter function.
/// @param[in]   r  Setter function.
/// @note        Both functions can be nullptr.
/// @see         rb_define_virtual_variable()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_define_hooked_variable(const char *q, VALUE *w, type *e, rb_gvar_setter_t *r)
{
    rb_gvar_getter_t *t = reinterpret_cast<rb_gvar_getter_t*>(e);
    ::rb_define_hooked_variable(q, w, t, r);
}

/// @}
/// @name Exceptions and tag jumps
/// @{

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Old way to implement iterators.
/// @param[in]   q  A function that can yield.
/// @param[in]   w  Passed to `q`.
/// @param[in]   e  What is to be yielded.
/// @param[in]   r  Passed to `e`.
/// @return      The return value of `q`.
/// @note        `e` can be nullptr.
/// @deprecated  This function is obsolated since  long before 2.x era.  Do not
///              use it any longer.  rb_block_call() is provided instead.
inline VALUE
rb_iterate(VALUE(*q)(VALUE), VALUE w, type *e, VALUE r)
{
    rb_block_call_func_t t = reinterpret_cast<rb_block_call_func_t>(e);
    return ::rb_iterate(q, w, t, r);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Call a method with a block.
/// @param[in]   q  The self.
/// @param[in]   w  The method.
/// @param[in]   e  The # of elems of `r`
/// @param[in]   r  The arguments.
/// @param[in]   t  What is to be yielded.
/// @param[in]   y  Passed to `t`
/// @return      Return value of `q#w(*r,&t)`
/// @note        't' can be nullptr.
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y)
{
    rb_block_call_func_t u = reinterpret_cast<rb_block_call_func_t>(t);
    return ::rb_block_call(q, w, e, r, u, y);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       An equivalent of `rescue` clause.
/// @param[in]   q  A function that can raise.
/// @param[in]   w  Passed to `q`.
/// @param[in]   e  A function that cleans-up.
/// @param[in]   r  Passed to `e`.
/// @return      The return value of `q` if  no exception occurs, or the return
///              value of `e` if otherwise.
/// @note        `e` can be nullptr.
/// @see         rb_ensure()
/// @see         rb_rescue2()
/// @see         rb_protect()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_rescue(type *q, VALUE w, type *e, VALUE r)
{
    typedef VALUE func1_t(VALUE);
    typedef VALUE func2_t(VALUE, VALUE);
    func1_t *t = reinterpret_cast<func1_t*>(q);
    func2_t *y = reinterpret_cast<func2_t*>(e);
    return ::rb_rescue(t, w, y, r);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       An equivalent of `rescue` clause.
/// @param[in]   q    A function that can raise.
/// @param[in]   w    Passed to `q`.
/// @param[in]   e    A function that cleans-up.
/// @param[in]   r    Passed to `e`.
/// @param[in]   ...  0-terminated list of subclass of @ref rb_eException.
/// @return      The return value of `q` if  no exception occurs, or the return
///              value of `e` if otherwise.
/// @note        `e` can be nullptr.
/// @see         rb_ensure()
/// @see         rb_rescue()
/// @see         rb_protect()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_rescue2(type *q, VALUE w, type *e, VALUE r, ...)
{
    typedef VALUE func1_t(VALUE);
    typedef VALUE func2_t(VALUE, VALUE);
    func1_t *t = reinterpret_cast<func1_t*>(q);
    func2_t *y = reinterpret_cast<func2_t*>(e);
    va_list ap;
    va_start(ap, r);
    VALUE ret = ::rb_vrescue2(t, w, y, r, ap);
    va_end(ap);
    return ret;
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       An equivalent of `ensure` clause.
/// @param[in]   q  A function that can raise.
/// @param[in]   w  Passed to `q`.
/// @param[in]   e  A function that ensures.
/// @param[in]   r  Passed to `e`.
/// @return      The return value of `q`.
/// @note        It makes no sense to pass nullptr to `e`.
/// @see         rb_rescue()
/// @see         rb_rescue2()
/// @see         rb_protect()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_ensure(type *q, VALUE w, type *e, VALUE r)
{
    typedef VALUE func1_t(VALUE);
    func1_t *t = reinterpret_cast<func1_t*>(q);
    func1_t *y = reinterpret_cast<func1_t*>(e);
    return ::rb_ensure(t, w, y, r);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       An equivalent of `Kernel#catch`.
/// @param[in]   q  The "tag" string.
/// @param[in]   w  A function that can throw.
/// @param[in]   e  Passed to `w`.
/// @return      What was thrown.
/// @note        `q` can be a nullptr but makes no sense to pass nullptr to`w`.
/// @see         rb_block_call()
/// @see         rb_protect()
/// @see         rb_rb_catch_obj()
/// @see         rb_rescue()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_catch(const char *q, type *w, VALUE e)
{
    rb_block_call_func_t r = reinterpret_cast<rb_block_call_func_t>(w);
    return ::rb_catch(q, r, e);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       An equivalent of `Kernel#catch`.
/// @param[in]   q  The "tag" object.
/// @param[in]   w  A function that can throw.
/// @param[in]   e  Passed to `w`.
/// @return      What was thrown.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         rb_block_call()
/// @see         rb_protect()
/// @see         rb_rb_catch_obj()
/// @see         rb_rescue()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_catch_obj(VALUE q, type *w, VALUE e)
{
    rb_block_call_func_t r = reinterpret_cast<rb_block_call_func_t>(w);
    return ::rb_catch_obj(q, r, e);
}

/// @}
/// @name Procs, Fibers and Threads
/// @{

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Creates a @ref rb_cFiber instance.
/// @param[in]   q  The fiber body.
/// @param[in]   w  Passed to `q`.
/// @return      What was allocated.
/// @note        It makes no sense to pass nullptr to`q`.
/// @see         rb_proc_new()
/// @see         rb_thread_creatr()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_fiber_new(type *q, VALUE w)
{
    rb_block_call_func_t e = reinterpret_cast<rb_block_call_func_t>(q);
    return ::rb_fiber_new(e, w);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Creates a @ref rb_cProc instance.
/// @param[in]   q  The proc body.
/// @param[in]   w  Passed to `q`.
/// @return      What was allocated.
/// @note        It makes no sense to pass nullptr to`q`.
/// @see         rb_fiber_new()
/// @see         rb_thread_creatr()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_proc_new(type *q, VALUE w)
{
    rb_block_call_func_t e = reinterpret_cast<rb_block_call_func_t>(q);
    return ::rb_proc_new(e, w);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Creates a @ref rb_cThread instance.
/// @param[in]   q  The thread body.
/// @param[in]   w  Passed to `q`.
/// @return      What was allocated.
/// @note        It makes no sense to pass nullptr to`q`.
/// @see         rb_proc_new()
/// @see         rb_fiber_new()
/// @deprecated  Use glanular typed overload instead.
inline VALUE
rb_thread_create(type *q, void *w)
{
    typedef VALUE ptr_t(void*);
    ptr_t *e = reinterpret_cast<ptr_t*>(q);
    return ::rb_thread_create(e, w);
}

/// @}
/// @name Hash and st_table
/// @{

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Iteration over the given table.
/// @param[in]   q  A table to scan.
/// @param[in]   w  A function to iterate.
/// @param[in]   e  Passed to `w`.
/// @retval      0  Always returns 0.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         st_foreach_check()
/// @see         rb_hash_foreach()
/// @deprecated  Use glanular typed overload instead.
inline int
st_foreach(st_table *q, int_type *w, st_data_t e)
{
    st_foreach_callback_func *r =
        reinterpret_cast<st_foreach_callback_func*>(w);
    return ::st_foreach(q, r, e);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Iteration over the given table.
/// @param[in]   q  A table to scan.
/// @param[in]   w  A function to iterate.
/// @param[in]   e  Passed to `w`.
/// @retval      0  Successful end of iteration.
/// @retval      1  Element removed during traversing.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         st_foreach()
/// @deprecated  Use glanular typed overload instead.
inline int
st_foreach_check(st_table *q, int_type *w, st_data_t e, st_data_t)
{
    st_foreach_check_callback_func *t =
        reinterpret_cast<st_foreach_check_callback_func*>(w);
    return ::st_foreach_check(q, t, e, 0);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Iteration over the given table.
/// @param[in]   q  A table to scan.
/// @param[in]   w  A function to iterate.
/// @param[in]   e  Passed to `w`.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         st_foreach_check()
/// @deprecated  Use glanular typed overload instead.
inline void
st_foreach_safe(st_table *q, int_type *w, st_data_t e)
{
    st_foreach_callback_func *r =
        reinterpret_cast<st_foreach_callback_func*>(w);
    ::st_foreach_safe(q, r, e);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Iteration over the given hash.
/// @param[in]   q  A hash to scan.
/// @param[in]   w  A function to iterate.
/// @param[in]   e  Passed to `w`.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         st_foreach()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_hash_foreach(VALUE q, int_type *w, VALUE e)
{
    st_foreach_callback_func *r =
        reinterpret_cast<st_foreach_callback_func*>(w);
    ::rb_hash_foreach(q, r, e);
}

RUBY_CXX_DEPRECATED("Use of ANYARGS in this function is deprecated")
/// @brief       Iteration over each instance variable of the object.
/// @param[in]   q  An object.
/// @param[in]   w  A function to iterate.
/// @param[in]   e  Passed to `w`.
/// @note        It makes no sense to pass nullptr to`w`.
/// @see         st_foreach()
/// @deprecated  Use glanular typed overload instead.
inline void
rb_ivar_foreach(VALUE q, int_type *w, VALUE e)
{
    st_foreach_callback_func *r =
        reinterpret_cast<st_foreach_callback_func*>(w);
    ::rb_ivar_foreach(q, r, e);
}

/// @}
}}}

using namespace ruby::backward::cxxanyargs;
#endif // RUBY_BACKWARD_CXXANYARGS_HPP
PKKH[���t�� include/ruby/backward/classext.hnu�[���#if   defined __GNUC__
#warning use of RClass internals is deprecated
#elif defined _MSC_VER
#pragma message("warning: use of RClass internals is deprecated")
#endif

#ifndef RUBY_BACKWARD_CLASSEXT_H
#define RUBY_BACKWARD_CLASSEXT_H 1

typedef struct rb_deprecated_classext_struct {
    VALUE super;
} rb_deprecated_classext_t;

#undef RCLASS_SUPER(c)
#define RCLASS_EXT(c) ((rb_deprecated_classext_t *)RCLASS(c)->ptr)
#define RCLASS_SUPER(c) (RCLASS(c)->super)

#endif	/* RUBY_BACKWARD_CLASSEXT_H */
PKKH[�q�V��include/ruby/backward/rubyio.hnu�[���#if   defined __GNUC__
#warning use "ruby/io.h" instead of "rubyio.h"
#elif defined _MSC_VER
#pragma message("warning: use \"ruby/io.h\" instead of \"rubyio.h\"")
#endif
#include "ruby/io.h"
PKKH[8�b{��include/ruby/backward/util.hnu�[���#if   defined __GNUC__
#warning use "ruby/util.h" instead of bare "util.h"
#elif defined _MSC_VER
#pragma message("warning: use \"ruby/util.h\" instead of bare \"util.h\"")
#endif
#include "ruby/util.h"
PKKH[*�include/ruby/vm.hnu�[���/**********************************************************************

  ruby/vm.h -

  $Author$
  created at: Sat May 31 15:17:36 2008

  Copyright (C) 2008 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_VM_H
#define RUBY_VM_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

RUBY_SYMBOL_EXPORT_BEGIN

/* Place holder.
 *
 * We will prepare VM creation/control APIs on 1.9.2 or later.
 *
 */

/* VM type declaration */
typedef struct rb_vm_struct ruby_vm_t;

/* core API */
int ruby_vm_destruct(ruby_vm_t *vm);

/**
 * ruby_vm_at_exit registers a function _func_ to be invoked when a VM
 * passed away.  Functions registered this way runs in reverse order
 * of registration, just like END {} block does.  The difference is
 * its timing to be triggered. ruby_vm_at_exit functions runs when a
 * VM _passed_ _away_, while END {} blocks runs just _before_ a VM
 * _is_ _passing_ _away_.
 *
 * You cannot register a function to another VM than where you are in.
 * So where to register is intuitive, omitted.  OTOH the argument
 * _func_ cannot know which VM it is in because at the time of
 * invocation, the VM has already died and there is no execution
 * context.  The VM itself is passed as the first argument to it.
 *
 * @param[in] func the function to register.
 */
void ruby_vm_at_exit(void(*func)(ruby_vm_t *));

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_VM_H */
PKKH[㲓<��include/ruby/io.hnu�[���/**********************************************************************

  rubyio.h -

  $Author$
  created at: Fri Nov 12 16:47:09 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_IO_H
#define RUBY_IO_H 1

#ifdef RUBY_INTERNAL_H
#error "Include this file before internal.h"
#endif

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include <stdio.h>
#include "ruby/encoding.h"

#if defined(HAVE_STDIO_EXT_H)
#include <stdio_ext.h>
#endif

#include "ruby/config.h"
#include <errno.h>
#if defined(HAVE_POLL)
#  ifdef _AIX
#    define reqevents events
#    define rtnevents revents
#  endif
#  include <poll.h>
#  ifdef _AIX
#    undef reqevents
#    undef rtnevents
#    undef events
#    undef revents
#  endif
#  define RB_WAITFD_IN  POLLIN
#  define RB_WAITFD_PRI POLLPRI
#  define RB_WAITFD_OUT POLLOUT
#else
#  define RB_WAITFD_IN  0x001
#  define RB_WAITFD_PRI 0x002
#  define RB_WAITFD_OUT 0x004
#endif

RUBY_SYMBOL_EXPORT_BEGIN

PACKED_STRUCT_UNALIGNED(struct rb_io_buffer_t {
    char *ptr;                  /* off + len <= capa */
    int off;
    int len;
    int capa;
});
typedef struct rb_io_buffer_t rb_io_buffer_t;

typedef struct rb_io_t {
    FILE *stdio_file;		/* stdio ptr for read/write if available */
    int fd;                     /* file descriptor */
    int mode;			/* mode flags: FMODE_XXXs */
    rb_pid_t pid;		/* child's pid (for pipes) */
    int lineno;			/* number of lines read */
    VALUE pathv;		/* pathname for file */
    void (*finalize)(struct rb_io_t*,int); /* finalize proc */

    rb_io_buffer_t wbuf, rbuf;

    VALUE tied_io_for_writing;

    /*
     * enc  enc2 read action                      write action
     * NULL NULL force_encoding(default_external) write the byte sequence of str
     * e1   NULL force_encoding(e1)               convert str.encoding to e1
     * e1   e2   convert from e2 to e1            convert str.encoding to e2
     */
    struct rb_io_enc_t {
        rb_encoding *enc;
        rb_encoding *enc2;
        int ecflags;
        VALUE ecopts;
    } encs;

    rb_econv_t *readconv;
    rb_io_buffer_t cbuf;

    rb_econv_t *writeconv;
    VALUE writeconv_asciicompat;
    int writeconv_initialized;
    int writeconv_pre_ecflags;
    VALUE writeconv_pre_ecopts;

    VALUE write_lock;
} rb_io_t;

typedef struct rb_io_enc_t rb_io_enc_t;

#define HAVE_RB_IO_T 1

#define FMODE_READABLE              0x00000001
#define FMODE_WRITABLE              0x00000002
#define FMODE_READWRITE             (FMODE_READABLE|FMODE_WRITABLE)
#define FMODE_BINMODE               0x00000004
#define FMODE_SYNC                  0x00000008
#define FMODE_TTY                   0x00000010
#define FMODE_DUPLEX                0x00000020
#define FMODE_APPEND                0x00000040
#define FMODE_CREATE                0x00000080
/* #define FMODE_NOREVLOOKUP        0x00000100 */
#define FMODE_EXCL                  0x00000400
#define FMODE_TRUNC                 0x00000800
#define FMODE_TEXTMODE              0x00001000
/* #define FMODE_PREP               0x00010000 */
#define FMODE_SETENC_BY_BOM         0x00100000
/* #define FMODE_UNIX                  0x00200000 */
/* #define FMODE_INET                  0x00400000 */
/* #define FMODE_INET6                 0x00800000 */

#define GetOpenFile(obj,fp) rb_io_check_closed((fp) = RFILE(rb_io_taint_check(obj))->fptr)

#define MakeOpenFile(obj, fp) do {\
    (fp) = rb_io_make_open_file(obj);\
} while (0)

rb_io_t *rb_io_make_open_file(VALUE obj);

FILE *rb_io_stdio_file(rb_io_t *fptr);

FILE *rb_fdopen(int, const char*);
int rb_io_modestr_fmode(const char *modestr);
int rb_io_modestr_oflags(const char *modestr);
CONSTFUNC(int rb_io_oflags_fmode(int oflags));
void rb_io_check_writable(rb_io_t*);
void rb_io_check_readable(rb_io_t*);
void rb_io_check_char_readable(rb_io_t *fptr);
void rb_io_check_byte_readable(rb_io_t *fptr);
int rb_io_fptr_finalize(rb_io_t*);
void rb_io_synchronized(rb_io_t*);
void rb_io_check_initialized(rb_io_t*);
void rb_io_check_closed(rb_io_t*);
VALUE rb_io_get_io(VALUE io);
VALUE rb_io_check_io(VALUE io);
VALUE rb_io_get_write_io(VALUE io);
VALUE rb_io_set_write_io(VALUE io, VALUE w);
int rb_io_wait_readable(int);
int rb_io_wait_writable(int);
int rb_wait_for_single_fd(int fd, int events, struct timeval *tv);
void rb_io_set_nonblock(rb_io_t *fptr);
int rb_io_extract_encoding_option(VALUE opt, rb_encoding **enc_p, rb_encoding **enc2_p, int *fmode_p);
void rb_io_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash, int *oflags_p, int *fmode_p, rb_io_enc_t *convconfig_p);
ssize_t rb_io_bufwrite(VALUE io, const void *buf, size_t size);

/* compatibility for ruby 1.8 and older */
#define rb_io_mode_flags(modestr) [<"rb_io_mode_flags() is obsolete; use rb_io_modestr_fmode()">]
#define rb_io_modenum_flags(oflags) [<"rb_io_modenum_flags() is obsolete; use rb_io_oflags_fmode()">]

VALUE rb_io_taint_check(VALUE);
NORETURN(void rb_eof_error(void));

void rb_io_read_check(rb_io_t*);
int rb_io_read_pending(rb_io_t*);

struct stat;
VALUE rb_stat_new(const struct stat *);

/* gc.c */

RUBY_SYMBOL_EXPORT_END

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_IO_H */
PKKH[�5�255include/ruby/thread_native.hnu�[���/**********************************************************************

  thread_native.h -

  $Author: ko1 $
  created at: Wed May 14 19:37:31 2014

  Copyright (C) 2014 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_THREAD_NATIVE_H
#define RUBY_THREAD_NATIVE_H 1

/*
 * This file contains wrapper APIs for native thread primitives
 * which Ruby interpreter uses.
 *
 * Now, we only suppors pthread and Windows threads.
 *
 * If you want to use Ruby's Mutex and so on to synchronize Ruby Threads,
 * please use Mutex directly.
 */


#if defined(_WIN32)
#include <windows.h>
typedef HANDLE rb_nativethread_id_t;

typedef union rb_thread_lock_union {
    HANDLE mutex;
    CRITICAL_SECTION crit;
} rb_nativethread_lock_t;

#elif defined(HAVE_PTHREAD_H)
#include <pthread.h>
typedef pthread_t rb_nativethread_id_t;
typedef pthread_mutex_t rb_nativethread_lock_t;

#else
#error "unsupported thread type"

#endif

RUBY_SYMBOL_EXPORT_BEGIN

rb_nativethread_id_t rb_nativethread_self();

void rb_nativethread_lock_initialize(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_destroy(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock);
void rb_nativethread_lock_unlock(rb_nativethread_lock_t *lock);

RUBY_SYMBOL_EXPORT_END

#endif
PKKH[-����include/ruby/assert.hnu�[���#ifndef RUBY_ASSERT_H
#define RUBY_ASSERT_H

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

NORETURN(void rb_assert_failure(const char *, int, const char *, const char *));
#ifdef RUBY_FUNCTION_NAME_STRING
# define RUBY_ASSERT_FAIL(expr) \
    rb_assert_failure(__FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING, expr)
#else
# define RUBY_ASSERT_FAIL(expr) \
    rb_assert_failure(__FILE__, __LINE__, NULL, expr)
#endif
#define RUBY_ASSERT_MESG(expr, mesg) \
    ((expr) ? (void)0 : RUBY_ASSERT_FAIL(mesg))
#ifdef HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P
# define RUBY_ASSERT_MESG_WHEN(cond, expr, mesg) \
    ((RUBY_DEBUG+0) ? RUBY_ASSERT_MESG((expr), mesg) : \
    __builtin_choose_expr( \
        __builtin_constant_p(cond), \
        __builtin_choose_expr(cond, RUBY_ASSERT_MESG(expr, mesg), (void)0), \
        RUBY_ASSERT_MESG(!(cond) || (expr), mesg)))
#else
# define RUBY_ASSERT_MESG_WHEN(cond, expr, mesg) \
    RUBY_ASSERT_MESG(!((RUBY_DEBUG+0) || (cond)) || (expr), mesg)
#endif
#define RUBY_ASSERT(expr) RUBY_ASSERT_MESG_WHEN((!RUBY_NDEBUG+0), expr, #expr)
#define RUBY_ASSERT_WHEN(cond, expr) RUBY_ASSERT_MESG_WHEN(cond, expr, #expr)
#define RUBY_ASSERT_ALWAYS(expr) RUBY_ASSERT_MESG_WHEN(TRUE, expr, #expr)

#ifndef RUBY_DEBUG
# define RUBY_DEBUG 0
#endif
#ifndef RUBY_NDEBUG
# ifdef NDEBUG
#   define RUBY_NDEBUG 1
# else
#   define RUBY_NDEBUG 0
# endif
#endif

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif
PKKH[)sSB�3�3include/ruby/config-x86_64.hnu�[���#ifndef INCLUDE_RUBY_CONFIG_H
#define INCLUDE_RUBY_CONFIG_H 1
/* confdefs.h */
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define RUBY_SYMBOL_EXPORT_BEGIN _Pragma("GCC visibility push(default)")
#define RUBY_SYMBOL_EXPORT_END _Pragma("GCC visibility pop")
#define HAVE_STMT_AND_DECL_IN_EXPR 1
#define HAVE_LIBCRYPT 1
#define HAVE_LIBDL 1
#define HAVE_DIRENT_H 1
#define HAVE__BOOL 1
#define HAVE_STDBOOL_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_A_OUT_H 1
#define HAVE_GRP_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FLOAT_H 1
#define HAVE_LANGINFO_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_PWD_H 1
#define HAVE_SANITIZER_ASAN_INTERFACE_H 1
#define HAVE_STDALIGN_H 1
#define HAVE_SYS_EVENTFD_H 1
#define HAVE_SYS_FCNTL_H 1
#define HAVE_SYS_FILE_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_PRCTL_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SENDFILE_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_SYSCALL_H 1
#define HAVE_SYS_SYSMACROS_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_SYSCALL_H 1
#define HAVE_TIME_H 1
#define HAVE_UCONTEXT_H 1
#define HAVE_UTIME_H 1
#define HAVE_GMP_H 1
#define HAVE_LIBGMP 1
#define HAVE_TYPEOF 1
#define restrict __restrict
#define HAVE_LONG_LONG 1
#define HAVE_OFF_T 1
#define SIZEOF_INT 4
#define SIZEOF_SHORT 2
#define SIZEOF_LONG 8
#define SIZEOF_LONG_LONG 8
#define SIZEOF___INT64 0
#define SIZEOF___INT128 16
#define SIZEOF_OFF_T 8
#define SIZEOF_VOIDP 8
#define SIZEOF_FLOAT 4
#define SIZEOF_DOUBLE 8
#define SIZEOF_TIME_T 8
#define SIZEOF_CLOCK_T 8
#define PACKED_STRUCT(x) x __attribute__((packed))
#define USE_UNALIGNED_MEMBER_ACCESS 1
#define PRI_LL_PREFIX "ll"
#define HAVE_PID_T 1
#define rb_pid_t pid_t
#define SIGNEDNESS_OF_PID_T -1
#define PIDT2NUM(v) INT2NUM(v)
#define NUM2PIDT(v) NUM2INT(v)
#define PRI_PIDT_PREFIX PRI_INT_PREFIX
#define HAVE_UID_T 1
#define rb_uid_t uid_t
#define SIGNEDNESS_OF_UID_T +1
#define UIDT2NUM(v) UINT2NUM(v)
#define NUM2UIDT(v) NUM2UINT(v)
#define PRI_UIDT_PREFIX PRI_INT_PREFIX
#define HAVE_GID_T 1
#define rb_gid_t gid_t
#define SIGNEDNESS_OF_GID_T +1
#define GIDT2NUM(v) UINT2NUM(v)
#define NUM2GIDT(v) NUM2UINT(v)
#define PRI_GIDT_PREFIX PRI_INT_PREFIX
#define HAVE_TIME_T 1
#define rb_time_t time_t
#define SIGNEDNESS_OF_TIME_T -1
#define TIMET2NUM(v) LONG2NUM(v)
#define NUM2TIMET(v) NUM2LONG(v)
#define PRI_TIMET_PREFIX PRI_LONG_PREFIX
#define HAVE_DEV_T 1
#define rb_dev_t dev_t
#define SIGNEDNESS_OF_DEV_T +1
#define DEVT2NUM(v) ULONG2NUM(v)
#define NUM2DEVT(v) NUM2ULONG(v)
#define PRI_DEVT_PREFIX PRI_LONG_PREFIX
#define HAVE_MODE_T 1
#define rb_mode_t mode_t
#define SIGNEDNESS_OF_MODE_T +1
#define MODET2NUM(v) UINT2NUM(v)
#define NUM2MODET(v) NUM2UINT(v)
#define PRI_MODET_PREFIX PRI_INT_PREFIX
#define HAVE_RLIM_T 1
#define rb_rlim_t rlim_t
#define SIGNEDNESS_OF_RLIM_T +1
#define RLIM2NUM(v) ULONG2NUM(v)
#define NUM2RLIM(v) NUM2ULONG(v)
#define PRI_RLIM_PREFIX PRI_LONG_PREFIX
#define HAVE_OFF_T 1
#define rb_off_t off_t
#define SIGNEDNESS_OF_OFF_T -1
#define OFFT2NUM(v) LONG2NUM(v)
#define NUM2OFFT(v) NUM2LONG(v)
#define PRI_OFFT_PREFIX PRI_LONG_PREFIX
#define HAVE_CLOCKID_T 1
#define rb_clockid_t clockid_t
#define SIGNEDNESS_OF_CLOCKID_T -1
#define CLOCKID2NUM(v) INT2NUM(v)
#define NUM2CLOCKID(v) NUM2INT(v)
#define PRI_CLOCKID_PREFIX PRI_INT_PREFIX
#define HAVE_PROTOTYPES 1
#define TOKEN_PASTE(x,y) x##y
#define STRINGIZE(expr) STRINGIZE0(expr)
#define HAVE_STDARG_PROTOTYPES 1
#define HAVE_VA_ARGS_MACRO 1
#define RUBY_ALIGNAS(x) __attribute__((__aligned__(x)))
#define RUBY_ALIGNOF alignof
#define CONSTFUNC(x) __attribute__ ((__const__)) x
#define PUREFUNC(x) __attribute__ ((__pure__)) x
#define NORETURN(x) __attribute__ ((__noreturn__)) x
#define DEPRECATED(x) __attribute__ ((__deprecated__)) x
#define DEPRECATED_BY(n,x) __attribute__ ((__deprecated__("by "#n))) x
#define DEPRECATED_TYPE(mesg,x) __attribute__ ((__deprecated__ mesg)) x
#define NOINLINE(x) __attribute__ ((__noinline__)) x
#define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x
#define NO_SANITIZE(san, x) __attribute__ ((__no_sanitize__(san))) x
#define NO_SANITIZE_ADDRESS(x) __attribute__ ((__no_sanitize_address__)) x
#define NO_ADDRESS_SAFETY_ANALYSIS(x) __attribute__ ((__no_address_safety_analysis__)) x
#define WARN_UNUSED_RESULT(x) __attribute__ ((__warn_unused_result__)) x
#define MAYBE_UNUSED(x) __attribute__ ((__unused__)) x
#define ERRORFUNC(mesg,x) __attribute__ ((__error__ mesg)) x
#define WARNINGFUNC(mesg,x) __attribute__ ((__warning__ mesg)) x
#define WEAK(x) __attribute__ ((__weak__)) x
#define HAVE_FUNC_WEAK 1
#define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
#define FUNC_UNOPTIMIZED(x) __attribute__ ((__optimize__("O0"))) x
#define FUNC_MINIMIZED(x) __attribute__ ((__optimize__("-Os","-fomit-frame-pointer"))) x
#define HAVE_ATTRIBUTE_FUNCTION_ALIAS 1
#define RUBY_ALIAS_FUNCTION_TYPE(type, prot, name, args) type prot __attribute__((alias(#name)));
#define RUBY_ALIAS_FUNCTION_VOID(prot, name, args) RUBY_ALIAS_FUNCTION_TYPE(void, prot, name, args)
#define HAVE_GCC_ATOMIC_BUILTINS 1
#define HAVE_GCC_SYNC_BUILTINS 1
#define UNREACHABLE __builtin_unreachable()
#define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern
#define RUBY_FUNC_NONNULL(n,x) __attribute__ ((__nonnull__(n))) x
#define RUBY_FUNCTION_NAME_STRING __func__
#define ENUM_OVER_INT 1
#define HAVE_DECL_SYS_NERR 1
#define HAVE_DECL_GETENV 1
#define SIZEOF_SIZE_T 8
#define SIZEOF_PTRDIFF_T 8
#define PRI_SIZE_PREFIX "z"
#define PRI_PTRDIFF_PREFIX "t"
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T
#define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T
#define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG
#define HAVE_STRUCT_STAT_ST_ATIM 1
#define HAVE_STRUCT_STAT_ST_MTIM 1
#define HAVE_STRUCT_STAT_ST_CTIM 1
#define HAVE_STRUCT_STATX_STX_BTIME 1
#define HAVE_STRUCT_TIMEVAL 1
#define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T
#define HAVE_STRUCT_TIMESPEC 1
#define HAVE_STRUCT_TIMEZONE 1
#define HAVE_RB_FD_INIT 1
#define HAVE_INT8_T 1
#define SIZEOF_INT8_T 1
#define HAVE_UINT8_T 1
#define SIZEOF_UINT8_T 1
#define HAVE_INT16_T 1
#define SIZEOF_INT16_T 2
#define HAVE_UINT16_T 1
#define SIZEOF_UINT16_T 2
#define HAVE_INT32_T 1
#define SIZEOF_INT32_T 4
#define HAVE_UINT32_T 1
#define SIZEOF_UINT32_T 4
#define HAVE_INT64_T 1
#define SIZEOF_INT64_T 8
#define HAVE_UINT64_T 1
#define SIZEOF_UINT64_T 8
#define HAVE_INT128_T 1
#define int128_t __int128
#define SIZEOF_INT128_T SIZEOF___INT128
#define HAVE_UINT128_T 1
#define uint128_t unsigned __int128
#define SIZEOF_UINT128_T SIZEOF___INT128
#define HAVE_INTPTR_T 1
#define SIZEOF_INTPTR_T 8
#define HAVE_UINTPTR_T 1
#define SIZEOF_UINTPTR_T 8
#define HAVE_SSIZE_T 1
#define SIZEOF_SSIZE_T 8
#define STACK_END_ADDRESS __libc_stack_end
#define GETGROUPS_T gid_t
#define RETSIGTYPE void
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_ACOSH 1
#define HAVE_CBRT 1
#define HAVE_CRYPT 1
#define HAVE_DUP2 1
#define HAVE_ERF 1
#define HAVE_EXPLICIT_BZERO 1
#define HAVE_FFS 1
#define HAVE_FLOCK 1
#define HAVE_HYPOT 1
#define HAVE_LGAMMA_R 1
#define HAVE_MEMMOVE 1
#define HAVE_NAN 1
#define HAVE_NEXTAFTER 1
#define HAVE_STRCHR 1
#define HAVE_STRERROR 1
#define HAVE_STRSTR 1
#define HAVE_TGAMMA 1
#define HAVE_FINITE 1
#define HAVE_ISINF 1
#define HAVE_ISNAN 1
#define SPT_TYPE SPT_REUSEARGV
#define HAVE_SIGNBIT 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define HAVE__LONGJMP 1
#define HAVE_ATAN2L 1
#define HAVE_ATAN2F 1
#define HAVE_CHROOT 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_COPY_FILE_RANGE 1
#define HAVE_COSH 1
#define HAVE_CRYPT_R 1
#define HAVE_DIRFD 1
#define HAVE_DL_ITERATE_PHDR 1
#define HAVE_DLOPEN 1
#define HAVE_DLADDR 1
#define HAVE_DUP 1
#define HAVE_DUP3 1
#define HAVE_EACCESS 1
#define HAVE_ENDGRENT 1
#define HAVE_EVENTFD 1
#define HAVE_FCHMOD 1
#define HAVE_FCHOWN 1
#define HAVE_FCNTL 1
#define HAVE_FDATASYNC 1
#define HAVE_FDOPENDIR 1
#define HAVE_FMOD 1
#define HAVE_FSTATAT 1
#define HAVE_FSYNC 1
#define HAVE_FTRUNCATE 1
#define HAVE_FTRUNCATE64 1
#define HAVE_GETCWD 1
#define HAVE_GETGRNAM 1
#define HAVE_GETGRNAM_R 1
#define HAVE_GETGROUPS 1
#define HAVE_GETLOGIN 1
#define HAVE_GETLOGIN_R 1
#define HAVE_GETPGID 1
#define HAVE_GETPGRP 1
#define HAVE_GETPRIORITY 1
#define HAVE_GETPWNAM 1
#define HAVE_GETPWNAM_R 1
#define HAVE_GETPWUID 1
#define HAVE_GETPWUID_R 1
#define HAVE_GETRANDOM 1
#define HAVE_GETRESGID 1
#define HAVE_GETRESUID 1
#define HAVE_GETRLIMIT 1
#define HAVE_GETSID 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GMTIME_R 1
#define HAVE_GRANTPT 1
#define HAVE_INITGROUPS 1
#define HAVE_IOCTL 1
#define HAVE_KILLPG 1
#define HAVE_LCHOWN 1
#define HAVE_LINK 1
#define HAVE_LLABS 1
#define HAVE_LOCKF 1
#define HAVE_LOG2 1
#define HAVE_LSTAT 1
#define HAVE_LUTIMES 1
#define HAVE_MALLOC_USABLE_SIZE 1
#define HAVE_MBLEN 1
#define HAVE_MEMALIGN 1
#define HAVE_WRITEV 1
#define HAVE_MEMRCHR 1
#define HAVE_MEMMEM 1
#define HAVE_MKFIFO 1
#define HAVE_MKNOD 1
#define HAVE_MKTIME 1
#define HAVE_OPENAT 1
#define HAVE_PIPE2 1
#define HAVE_POLL 1
#define HAVE_POSIX_FADVISE 1
#define HAVE_POSIX_MEMALIGN 1
#define HAVE_PPOLL 1
#define HAVE_PREAD 1
#define HAVE_PWRITE 1
#define HAVE_QSORT_R 1
#define HAVE_READLINK 1
#define HAVE_REALPATH 1
#define HAVE_ROUND 1
#define HAVE_SCHED_GETAFFINITY 1
#define HAVE_SEEKDIR 1
#define HAVE_SENDFILE 1
#define HAVE_SETEGID 1
#define HAVE_SETENV 1
#define HAVE_SETEUID 1
#define HAVE_SETGID 1
#define HAVE_SETGROUPS 1
#define HAVE_SETPGID 1
#define HAVE_SETPGRP 1
#define HAVE_SETREGID 1
#define HAVE_SETRESGID 1
#define HAVE_SETRESUID 1
#define HAVE_SETREUID 1
#define HAVE_SETRLIMIT 1
#define HAVE_SETSID 1
#define HAVE_SETUID 1
#define HAVE_SHUTDOWN 1
#define HAVE_SIGACTION 1
#define HAVE_SIGALTSTACK 1
#define HAVE_SIGPROCMASK 1
#define HAVE_SINH 1
#define HAVE_SYMLINK 1
#define HAVE_SYSCALL 1
#define HAVE_SYSCONF 1
#define HAVE_TANH 1
#define HAVE_TELLDIR 1
#define HAVE_TIMEGM 1
#define HAVE_TIMES 1
#define HAVE_TRUNCATE 1
#define HAVE_TRUNCATE64 1
#define HAVE_UNSETENV 1
#define HAVE_UTIMENSAT 1
#define HAVE_UTIMES 1
#define HAVE_WAIT4 1
#define HAVE_WAITPID 1
#define HAVE_STATX 1
#define HAVE_CRYPT_H 1
#define HAVE_STRUCT_CRYPT_DATA_INITIALIZED 1
#define HAVE_BUILTIN___BUILTIN_ALLOCA_WITH_ALIGN 1
#define HAVE_BUILTIN___BUILTIN_ASSUME_ALIGNED 1
#define HAVE_BUILTIN___BUILTIN_BSWAP16 1
#define HAVE_BUILTIN___BUILTIN_BSWAP32 1
#define HAVE_BUILTIN___BUILTIN_BSWAP64 1
#define HAVE_BUILTIN___BUILTIN_POPCOUNT 1
#define HAVE_BUILTIN___BUILTIN_POPCOUNTLL 1
#define HAVE_BUILTIN___BUILTIN_CLZ 1
#define HAVE_BUILTIN___BUILTIN_CLZL 1
#define HAVE_BUILTIN___BUILTIN_CLZLL 1
#define HAVE_BUILTIN___BUILTIN_CTZ 1
#define HAVE_BUILTIN___BUILTIN_CTZLL 1
#define HAVE_BUILTIN___BUILTIN_ADD_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_SUB_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW 1
#define HAVE_BUILTIN___BUILTIN_MUL_OVERFLOW_P 1
#define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1
#define HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR 1
#define HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P 1
#define HAVE_BUILTIN___BUILTIN_TYPES_COMPATIBLE_P 1
#define HAVE_BUILTIN___BUILTIN_TRAP 1
#define HAVE_GNU_QSORT_R 1
#define ATAN2_INF_C99 1
#define HAVE_CLOCK_GETRES 1
#define HAVE_LIBRT 1
#define HAVE_LIBRT 1
#define HAVE_TIMER_CREATE 1
#define HAVE_TIMER_SETTIME 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define HAVE_STRUCT_TM_TM_GMTOFF 1
#define HAVE_DAYLIGHT 1
#define NEGATIVE_TIME_T 1
#define POSIX_SIGNAL 1
#define HAVE_SIG_T 1
#define RSHIFT(x,y) ((x)>>(int)(y))
#define HAVE__SC_CLK_TCK 1
#define STACK_GROW_DIRECTION -1
#define COROUTINE_H "coroutine/amd64/Context.h"
#define _REENTRANT 1
#define _THREAD_SAFE 1
#define HAVE_LIBPTHREAD 1
#define HAVE_SCHED_YIELD 1
#define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1
#define HAVE_PTHREAD_ATTR_GETSTACK 1
#define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1
#define HAVE_PTHREAD_CONDATTR_SETCLOCK 1
#define HAVE_PTHREAD_SIGMASK 1
#define HAVE_PTHREAD_SETNAME_NP 1
#define HAVE_PTHREAD_GETATTR_NP 1
#define SET_CURRENT_THREAD_NAME(name) pthread_setname_np(pthread_self(), name)
#define SET_ANOTHER_THREAD_NAME(thid,name) pthread_setname_np(thid, name)
#define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext
#define HAVE_GETCONTEXT 1
#define HAVE_SETCONTEXT 1
#define USE_ELF 1
#define HAVE_ELF_H 1
#define HAVE_BACKTRACE 1
#define DLEXT_MAXLEN 3
#define DLEXT ".so"
#define ENABLE_MULTIARCH 1
#define LIBDIR_BASENAME "lib64"
#define HAVE__SETJMP 1
#define RUBY_SETJMP(env) _setjmp((env))
#define RUBY_LONGJMP(env,val) _longjmp((env),val)
#define RUBY_JMP_BUF jmp_buf
#define USE_MJIT 1
#define HAVE_PTHREAD_H 1
#define RUBY_LIB_VERSION_BLANK 1
#define RUBY_PLATFORM "x86_64-linux"
#endif /* INCLUDE_RUBY_CONFIG_H */
PKKH[���include/ruby/oniguruma.hnu�[���#ifndef ONIGURUMA_H
#define ONIGURUMA_H
#include "onigmo.h"
#define ONIGURUMA
#define ONIGURUMA_VERSION_MAJOR ONIGMO_VERSION_MAJOR
#define ONIGURUMA_VERSION_MINOR ONIGMO_VERSION_MINOR
#define ONIGURUMA_VERSION_TEENY ONIGMO_VERSION_TEENY
#endif /* ONIGURUMA_H */
PKKH[C�c=33etc/locked_extensions.ininu�[���[ruby2.7]
rake = 13.0.1
rackup = 2.1.0
rake = 13.0.1
rack = 3.0.8
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
io-console = %{io-console_version}
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
bundler = 2.2.24
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
io-console = %{io-console_version}
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
bigdecimal = 2.0.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
io-console = %{io-console_version}
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
bundler = 2.2.24
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
io-console = %{io-console_version}
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
irb = 1.2.6
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
json = 2.3.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
openssl = 2.1.4
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
psych = 3.1.0
rake = 13.0.1
rdoc = 6.2.1.1
rake = 13.0.1
PKKH[��t ��4��4lib64/libruby.so.2.7.8nuȯ��ELF>�1@��4@8@0!30!3 �$3�$S�$S��8 �t3�tS�tSPP���$$P�td��-��-��-��Q�tdR�td�$3�$S�$S0[0[GNU(�}j4RR“w'�r
�7l�0��P$X��"@"Z $�D(E ��A
B��J'��<H@ @�0�%@
H�B �B}��� JDɐR I�(�$F%
҆�`�`$� ��S$�0@I��@H�$xB��B�
���J)� 'PX�4 ��D $ �!*@H���H"$�J(�!@�H�@�6 �T@  ��"`D@!00#H8Q@``�@�R0���	P@ @A@� !@����H�@��$�+&��}AI�" ����b
�
8
�
E�X����XD(`@�!�B�N�	C (��@%"1	���(��8H�@@�T�2 0�H B�L@��48�"��GJ�L 'R0,`��1 
��� A 0$ !��1D/XB ���	Bs	"��< �@&!0��$@
[�0`����M@��@� �`#LB�@�B��`�EB@@�$C�d(DN��  �XPB	�@% �$R�H��@"
D�� F<P`�I ��0
 �`  $��1�1@B�@ 
�@ �@(�
$l� �@@
(��D���`�) �@��$ @��� �C�A�  @!ID0 @ @@�"$ 	J�( � $@�B���4`=� ( �� �@Bb
0�C0F(�"�@ $ֈR 0���
���
��`��� P ` 
  �B�FB H%, ��@FЄ$TX(D�0$��!H@�@���B��{�!�&(�
H c�$`%�	 R@@E1�U�`"D @��	@�@H@��
 R�@�B@P B#�,
B0�Ԃ d�X#D*��`@����
$@*h��@@��
�N� 1	 �N0��!@%� *�Xq���8*@%�X	F(	@@�Q�� D�P�C@H��a!Q(��0@
��B� �@�A��ADhX �H$P���@�@U� B)  >���� @)$D(B����@&h�$H�!��'�`@ch�)B)�@�$D�@����@j �a�"�G`@$�K� A�@ *��� ( �P@a@@"�0J�(��L �$BB2@�H�Q�!�� @@dB�H
"ƀD8�08X
	E�"�
Q�\@��024568:>ABDEHKLNOQTZ\^_`bcegklprtvwxz{}����������������������������������������������������������
"$'(*-/023789:;<>@ABCDFILMRSXZ]^`bdilmoqrsvy|~���������������������������������������������������������	!"%&'),-/123478;<>@BCDEHJLMPRSUWZ\^_acdgikmotuwyz{|}~���������������������������������������������������������������������������	
 "$'*,-0247:=ACEGHJQTUVXZ[\]^`bdeghjlmqsvw{|��������������������������������������������������������	

$%'(+,.136:=@CDGHKMNOQRSTXZ[_bcehijlnpruwy{}~��������������������������������������������������������������

!#%&+-/12689:;<=>?BEGIJLMPSVWZ[\^_cfghjknqtvy|}������������������������������������������������������	
 !#%(*+,01459:=>ACDHKLORTVWYZ\]abeglmqstuwy{~�������������������&@�i�FV�!I�}��oI⎞JL5����T����9�򁾕���~L�	�
��R>��
{� �������!
�n�J^���~�j;�Gxpn��6E+ՂZ�C�A�ַ��e�}v�&�$�M�C��\���%@��<-��gB�ު�����wR�=m��Z�d�I���405�(����XX-�1��'P)�0��~� oȦF���`�^�S#$f�I@�|�Qw�$���1`R,p�	��}.��B-��^\�,�ɶ6�4{�Ư+o*��j0���1
�(7��BMV�m6TK�6k?�?}�8L�%ݔ�U�#���7�<�	^c�(�lr
��*�fY>}�%1���ъ?���pL<�ٕ�,p��0�Bx.�e�]IW�{R�U�F�6R�2釾�m��l�t���C�#_�sQ{s������O�
�'qc�G滬`��œ���JO�BH�Q�B��N�6s����\jg�PR��.=����g��!���aU����?LHl;�d�9B�"a�q��.Q�1�}a`�Ս�Λ��m�S�4f��˛�2���n2���ʱ=�6؆y)SW�������U%��'>0�1�7 9��Tp�zB�r�����U�+��ȟʢ�[n>u"��b��#��R�>���W)�$v'�u%*d�v��?���O���;�n��H
�G`+o��L?rX �Ұ�B�S�Rm�/�І���M�CE�����������!�7^4�QŲK�֘��LN��<�2�y��mO��8�g�~\^G.��"��`P|��ˀ��J-G]�,��3�����FH�r%d?<��|��3���d�%�C����:�&�_١�jtg��fph�,�Ù�f	���=܌� 4{��h{�Qy�.��V�x�3p�^$�s%�qK{5�������o-�oKc{q(����{�R~�A"{IÎj�WK����F�������Y	��2ZI$�F���S����tC�Q��]Dc��K��aS�{���y�+��10�:�
p�w�V�k�٧�1I����tX�d��4�L��rjh�����{����i!�#\����,�Di��ki���|�K�����lT�kP����
�{�]���`�w���u{LhX�n:95G�H�
"�Ek��u�տ����h�q݅pHE��$��˜
E�Z��A�>�
���1��j>p�a1�P�����7�f����,��\�6h�M�fV��Q���������y�s/R�o;.0����!Di��[��Z�����HE!�r�S��hY���/��lf>���E�Vw+]�!�	-6������"
g��B�^K4��a�xBF�2U�;� T����69X�E����v������+��M�
I`}l�@B���N��}��'���8xbŲk:��$H�sj�@>?l��������A�@ǿ�>�w�ɯjho�W����D�֒�H�{���s�v���M���Ϟ��]>��Ð@VM��Y�ff����*�"=eͤ�j���m�����Af�\}.��Mha�u�<�+,JN��9�����)�z������F���N���+R���ْ��u�M14��3"W�Z�Ue�1��&�S5�ي����H̴u%�e)HY��ƣ������ލ̇tۏ
��^�q����u�#N�8N� �������G�40���f[4�a�H>�06
/������Ł��ZX��[%Q�Qʰw�m%�Vڑ��%Rh�"E	�|�5ߗ�����H��V��a�7n2jV �]3��]z��g|�6ԇz4W)2�2Rh�-q���|v'�š���x�ރ�R�Ζ��R�6�`�g��#�ck���]����q|�7���6F���s�߁e��'Y7K�[�
߫�<�A�(s��W�Ѧ{�|���陆�O@DŲH���Z���'��n�[#�[:�����7�D(�u�i!�4�ΡHK��_������lX�h�YL!��#B#��']��b�sL(rR�x���Z��/���ԍ�0H�j���W�,��(�A��,?�yC?��ќ��9Z�s���}��~5��xo���h�P�Q!v�Oz�-U�Wٴ�a2:y�h�JH�zR�?��~'���\H{��p�A���
�\��:�I+6��m��3�A��Jw�o�JSz��Vã��bb�1��qXɰ-.�󜔞�|�;�3$�Ъ��Z5r��Q�
�J�nX��ݳqf躂�4푺:�b):���Ey�
��}T�g��Y����aZ�
O(y����(}��uo�!�5Q�{+#�寐��,>m��cw�󾁧�p�}��`��32��y)��l
�3�C*b��b��U�l��V��@}R�
�r�|U����=U��H��@��li�MMJF���?%�C�����n;|�26���s1���c��\�{/��8cu�`疝u�>Mخ�7�r~�67��G�n����ƪ��.n1p�:J��Kۗ�����4�tupmsJ�����������2���}���a���aC�|�7 �X���4[���-��0���5N��+`��+y���|���-�poUU�����	q��E�3�o�\��#4a�{�j+��"��n�J��A�z��e>e\�� s8WM��[���=*Ht�I�?���C80`5�Q0���=0�zÿT�0�<g���FZ�����E���
���n�ɇ��Y��R@�l^�{�DקO���|W���L�:3�{[��[�?�h�cyC,�&�~��?@�,��S��<fUt/Cz$�h�#��g���	
�ƌ�3�t`ܗ9���ϰǃLev��'�����'	��:�

��7i��3�GA;���O܁s��t��Lj�6���x��
�4�B"7�a�1�Pĺ4=<���I9�����T�lm��,�ư�`]3F{���1z���:��R�����0�vS��q��W�mJ����l?)鮢x������J�X��
4��~p���BgnU&�r�X�E�ɱ[$R��0c�4�k���ֿ{+�d���m�m\�^��|rޱV�yj���v��i�)-J�@0��޾�J�s���O��\�m��F~�٩��J#�����,�c-N	)����h�����~jwy�w���L��5�!��ܧ�(.���	�)� ���o�fT��g��iE�����2�A��rF2�����4)G)�$���XD��0��k�?W�ܻ�X�D�Z�i>���W)x�a�B�X\�_�r-�вȪ��?�P���0%�۪��}��*	�te���%f���,1�������N��q2�Q�+��
i�g՞[`d�e�%ǜ�e�%v�ٺ�IPn
K(����lY��+�(�H�ķ4
�[Ų驼�RJ����B�J�mĊqB}�Z���+��3Zi�j���Yт}*GW@	I��Q!�J�-p
�At�����g�!{�l��yߌ��
�͒i5k�7�-M�C�%k�&+R7���I��OŲZ5Y.Zv�>��q27�IE`���,:�#O{R���(
�j�.j���׀��k��a�����Ŗc�
�G]�J�5��Y�o�¯U���"%��gt_�’�t���e���vo0U��(�x2�-���:W���ze��@�̪���	z���־(��m���P�-Jw���6���d���j�	���br���b�p3i�zI�ͧ��Dѕ���Ia��jmb�iY��Ȟ��#��IG\!�U����˝y��T�3N>���lW���dU�0/�Npn#
�ޓ[�zN5���Q����~=�@e�<�J}a3Mـ5U\�q��vf����\,T>J����Bۻ���^����
�%��=���v��-m�D��=�'�ކ^�0�@$�_���:wV�s�UO*p�mR��[^5-\1Or��o�ܑ��&Vo�+����c������x�<ٞ{<X����qi�g1����*6�+��R�pE�*��3EЗ�*���҂�J�>K#;0���4�W#��m��.;x���=�azr�K���aX���ȋ�I�[��/��
z�A��q�.z�c�A��3�P���,�9�ِMu4c^�~ �U
CX��i��tx���gâb
(�Re:�@��v��K'MC
o���/{�}�L����c�ׁ��j�]9p�k(�"������f�zI	����^	a�?��/��nV��@e�qME�&sT�t��%9{��e
m��P�hҁp,p5Uq��A3y�ꈹ6&E���'Ų>�}ٟ��[��bڑ<<��OگIt[�m��PГ��6���Z(51��աT
�:�C�Y����,��o�C^��g�٩�_��H�J�P2��
R�ϰ��,ގ+P�̴�j>Iw!o[d�K8���|x��� )YE۵������A�	�x�s�����u@��s84|�q��G��C�W��������`jj�uF�?�g�I��	!r�.���/�p�'�+@��塅 �0
��Q��t!u3�����o������Ƕ��9d�h.�y��؀���y=��>/%E�:J�(A+���ꍳ����l�7)���^�N3N7@���X��b�i�������Il0d�Ǡ�ݳ�0��1��n�H�R��R�����oI���1�j�o��R;�*�7dz��Ƒ������s�T�-��:�����)�0dA3�IU���֗>�=I���aH�����c`'QПw,�MD�Ɠ��KQ)}���i�xȘR� �#Ӎ%�2?Y��B��Hl�x���C�r��&SI'.��)5�e�O�E�-������Cy����u`�6N��nJ�(���p�
�H��H��Š9Ԙ�a*�)uפ� 3�O�R�IŲ�"E�H�Ǐ�(�̠�tZ�x�N���SKC��\;�E�6q7�$�C�(��d��w�[�E���wL��AY��9i8`!#{3�<p=�]ga s�T*��|a�/�*q���/�<><�k/��\,SK�ֿ�k�Jz��;�w�|�D����7o���<�fI�ՂB8��dFz�g�'�c4@����pT�k]���A��DcF��5�(�|ŝ��l�Q�0��[1�F��G�LN���|���
�����jh�juʓL.�������FRͦ.Bp�gE�V�B��
Gz���ܜE�l�0�
�3F�����P��O����
�d�c��:�c�
��Lz��f��M\�\er��&8Fd��rj��W��b��F8��Y�Q,��_?o4
g�͓�X_UE��1�c���x�+�b�º���6}bw��<��WI|b�,�B�P���l�s}}�%P2�%��a`��*q�w�6�//Z������tL��82F�8¾�����u��-�mp�蹚��HIL"}�bo�w�KӬ��Ut$�����!m3q[U����lS�+:��\$���RCAn�hp��&��-�:�����
��P@f^*Y:��j�_mA�8||��Ɉ��d���FW4��K IK��fg��*_����n�L��T&���l��F���'��LNf8U�Ym�*��ѐ��x��LSW���w�z`�_�5�BA�v��!7ݦ�!6���6�a��dl�TS�
dc<òD�����|�@3�J�5=
�n�6���,����ɨ]��T�or��
�{�!}����2�*�,��E��?5�E
.MT�6|��sv�=xI��Y:�y�n��K����!ՁI���q~s"*j܈;���>JN#�-�)�X���1Y|0ޡPs�B��2��0�S|�"�?2�o�ć$����VJ3�o�=�o5�t��^��w��
w�L�3�
h�!��>l�zj1�g�ڿgy�@3ޱ�����Ͼ(�-���H�+4�9�*�q�M4�{}������N��ݪ�8=�k�Z&�<i��~E[-w$�ցP���`�R
]3�u���@���8|�1B-0d:!ȱ}��p�8�A�u��>k�̝5�ˡx�OV��45�~8e�",4a-@�6�
����P�ldٻ�Tj�H�:bd�0gy��>Cb�R�C��9�:DP�n�w�i�m�B�;���!�fi+8�`QZ�V���(�8���d�=5���ؠ����>��\K�����]L��GкOV�����r
w�5�cf,Oƙ'Y�K�׉/��(�cdj���t�ȅ�TJ����:<ٮ�����M)#d��S3R>@N����u�W���*_n���g�B+#:z��S���w�Kʭ(t�}�
�)K^��f�L�/�"�]�":}��H�?2�q�=�>��9����M��o"�����Uiz#6�=��*[WI�⮪���8��<�ޫ�y]2IX
vѵyAeq������gU 0�2g�m�J�3��mp@�IU`$�DdpV@*o�JW>]�JgJ�J'K3\J�TACpz�9�Du 0�3>�Vp�U.5RfVcJ�5���!6�@3 �- ?o"rr�VS��%Gpx0�U�D��"||��$AT�J�|b�Q�|lT�@n�U�2�T$Xon�n�p�VZ3Jn�	tJ�r8�rU}n�U�hO!dT�J�n�2�r�p�m.�m? %3QU�K��J�U\bJ�X�:, �o�"�%o3hJ�!�F"���#G>��3:AxJ=L�D�?�>Xp3WEQ>^>�m�$�UUx�m�pxpeR3�2�n��g3U�heo�J�WU_U<k9>�+g?^!�3r�$�WJ�UtVl4�2�T�T�f3�3LoSJY��9C�n�|�$F62W!�%�?�oGT�nVm�%Ap�hi4�?��hc-pMQ%sJ�T�dY$�23�$�o �Y�Q�V�NT4k�|�=�=^�g�D��USo�r{2e�=�"�2�J�C�2�K�%�E'U��TwT/�!c6RC�n�Q�V�J}J�hpLooXU�6?2�o��h��n�nE3�}??U�2[@k5�c4yJ;J�2�6mJS$�3YT�J]J�"�o�/�� MX%@m	/%y�!"�-p#�g
 �'��Q�	 ��\UGq�'!��{0#��b
��&�t�] ����y��"�?� lcq@�d3�RY�!n���R� �	>�YU}8\U�`�W{@#*N\U�w�&!�/�� \�L��(:�.a�,�ZU\��^���C�[U�;��c� E��F �:�
!@ ��)���p�8�#[d`q�~�`#~[,p�
+a@����n��ip�cX`��$@�"��h�Mt�K�~0�:�10 @@A�'A�&�t[r3�)��!��0�a%r���0aY6/�-9�]@�.E29e!�	O,j~�q�����"x$�YUY�Ss
� �: ��%
��&�<`�
`�&�m���tY[PD�]H��HpI!��Q +�<�
$_h�Z�]��9�c@<	d�<�j��R#G �%�K��4�
��'�b��(`|�#�FS��"��kPj1L;�v 	��?�`�!F1�0����{�P��;{1P�!�q����B�=1�t�b (��3\0u�-z��"�ipo	y�!\pM #�'�	�W��\�/�����y
��cP<�.�'�L%�* �P��>$5�~2O�4f�9���OV�Cx
�,0ZU)N�#G@��
�+�2����*@�E5`b�K�h;�3
D�%Py	��v
@�'2t �fe���a�K�52[UD���pPo	 ���`t}���9|P#h~�W#7S�k#�!��
�M�<�9@�&8�7�a��a�
,�80���
[�cP;�cE@�`�M�� 4�"P]U��J>F(��	: ��1�qp�8:5@+�;�� <���8\U>6E
u8��@%P�#jK@�{�p>'F0��,�
�A=�
�F)P�	�R�E!a�?� 9���H� ��
JDu~ �l��D�y�"7+h[Y:�� !UZ��S��u��	'2p��#vЬ Uh?Z�0�+0,9�<Г
�\ v2�MP��4��E7�_ ��
�E��e��oA�"�Q:[������b"�W"
#lЃ�:��L������"��	>5�
@!	 	$�y�t"�FPp��
V`r%`�	TIXp�RBV1$���R!�m ��k@y�	
8N'@�	XK ���^бr@h\U=0@� �'YЮS��}32@[U�tp ��}#'g��8� �=и
�pE�lF�jp���C����h4[Q�)�@0�L��ZUe�}�� � R�Q�<���X �!�Z�
|-XZU)c.\�O
0�%P}`K#��>�|>�9��V�X�FN � =vY��%8[U�C �W{w�!���JB�c`<[KJNW`�!�Q a�%�k^� %]@��)�A�F��.�}7VL ~6Wb ��{.`'+Q?P�+?H8]U]0��"`�	�\_���UX����q}b�T@���{�#CB\U�S���>@) �-3@#'p��0PT�0"u0�1oDp�g�\Ub-�ZU�W]U�`�	��G0h�k�j)nm��uP� ?x Qt�?����O�� k��J���H3_0�Tz��"6�`���*0�"F��(4G��<�M�f
�'(�C�G�0��.0+%�OH�L����x�H!=�\px2�`�(=��E�:��Lp�P�UP��,P"3I����p��ct� �2'�	_/�-�O@q�9��=��ZU?K��S|#pE	O�%���e�РE�F 
�`u#g�%���B�T4@}M�(Р	#HDА=0=��
!�\`v4]mP)�8��9\�s�y��::%�	[�1���
(]Us�y�u�lS=���l�9�����iP�c
F�B:1�
��'�ZU}�m2�
�k}Ov <�Rp\UN�� {L`�O/	��8p���p��+[Ue]U�J��Lap
��V����XPt�f}0P#�0
~ysP�0uc �,�ZU�i0�1EG�b	_'��	p�q��B�=P�0�hnR� s����g��B>	O�+?�R�4!j#C@�?�;Pr{�| �0#0&�E�\q`��0�$P&p�P�,@ZU}�J#:9`�"�{V�RYr��[U��"�l�g"Dk0S1o0��1}@K#C0*!b�uP� �Hi�!g'^ ��-V���6 � ]�V@]$J�haI-H\U#s�z�.�M	�0�]0]P\U6 0�
V�@�[U�?���I^`�c�N�H�k`��5� ��w�r�v
 �'��x��[�t96
�|����5$��g�E9 >
,/	0J� ��hl0 �(P�	
/
��h�)p�"oR5�p�
pJ���"��!�	cZ#�i6��
	_$�0�e;2X@�p~0\#;I8��1��	�p*Fr��5�C��<^P���2�5`�!u4`�x	�f
���ZU�[������p5�`
H��
	j�3�#иi�	�>���+�����w0!U%t���[U�\�a��~�=`�!�S�w"�zz #&�j@�C�B>W2pk��{7�|��P�>�I�\U6q�2�V�\UM��_S��	�r�J#��'bH@�%]Fx[U�6��VWy@/"��l��]j"� 	�r�QT�(P�	Q�8��Jf
�'([����e}^خS�r@sF+�~5�6@�S_w�!O�X��<|kPT-��.(�r�_��I@� ��	(p��~``#&]7�|	�Z��x��f�$�&c;t� WApb�t3@�	���3�}9(�"�Pv� 
6�w
`�Q��^P�%R�=�@��{#*$k��NR@]U;���y�g"/"Sx\U=W0�!\*��"�vdpqn(0�	9+P�"�TE;�`	k�3
	�@\U��"��4�va��SA��>�g@� F�!�	g���*"�+ ��j�,w	�+������g���(*�e)�^p�y�=��
[P�Mz? J/R-xZUz����j��:��y�k+h��ip$�<	 \UU ��vr@�� T�!��+%n���� `h"�|G�g%sb��H/`��t'�	<�J�T�A��w�s��L�p@o		JP�n�{�#*�l����7�~s�+
�'?z)�~
z�IP'�X@�\�w )!��
�nW ��Q�	���7�:�
7B@<K�HЂ�sx`F!^.`��>��!�
`\U�[@q�HB������YU�Q@P�J�[U [z�"�,�i#UA�":��u=��
�VPXM# Xf#���� `�"xR�\Ua;X[U�P$8pS��x
��'�w�"!:EgI}f
`'(���6n<��o�@�.�#'(cu0� �7A�[U��H60��N �� ��e��cR��!D9d�<Y�M�#�Y�,�xX]U^W��e�G h�f�"kW
��%6О
o�� B�A@ 	�p�2NQ�"�`]U<�ZU���)rX�dJ0/AE�?6 s]�2P
`�	@)RkpS1
��(�%�YU�FС t{U0�-�,����s��I�� C(i�QY����v
��'t��4JC�z>]9`�&;P
B]0c
"� 	00[UWN�� �v��S$6 , *&�	��	O�X���s&��	Y�s� ��\�����($��_@�!��P-f
F>$x�1!�K�k�i)�Yp�EGLzA�3j(!U880�D<[`�?�t�] �м����M0�Zh4M�09�� {� 	���'�+Ph�@5�Y�Z�w�%!�M��`D���
���!p	��1���b
�L��3�
/�5@q��
\�IP��{m��q��8E��d�d�qF�g�\U30�
�
?��i�M�e"oK`2	 F�D�$z�\p{	I`ZUM�!+�g � �0]j���Mt,��
,�Y��'�W�	�f
�'(�#�[U
�@nrX\U��~06���	�2P�+c]�r9�@�����+\D�QLF�[U�P�!�+�ZU,`Kwb���(R`3�@�m{p#*�ЮP��5
2/u�} :��o�S��R��X>1 }C�9����P�:=�
W�/� T�E�BK�`�^Z u'��	^�[Pqv�� N�7�}��
p� E��f�v| #*�> �#'�	J�q ����	}�;7
�PT-�=�� d
��	) :�Y��	�5�A9c`.�W`�����	by<"�Y � �N`��
N@� �w�&!�o*�K�X�\U�H�j1[l�1���"�zP#&f$���.`+�H	���^`�m�]0�i�m #+J@/�"/vP� \�n�`�
�~	&��� h�60d+n�5A�M	����B�IM)~�W#	�}PP#-H����i��	[f
�'(��42PZ���!0	`�P�' ��,8ZU
#P�	?'�	r$A�&MM.p%$�(�����?"\+�ZU�t�] 	
�nHp���7`}.	+�
��&@�!c�,=0b���7ZU�k j)
ZP���jpE�j �@�`ж�E�z`�.`5
	�
pFg�/�� ��.�T4�sP��ph	u
p[U�0Ќ!�F�c $
)��	9=x�6!N�� �V]U�0?�
 �%wype"/�e���f�� !�@�[U�Z�^c�hJ�80�'M���0�h�l` �N8�u� I�L����A ,K\ ���g ~#�xp�!�jf
 '(�N�	5?h[U�P����4|<����
P]<�e�L���@v Q�`�# ~QK��!<�@�9�3H[U�0�L�#��!P	DE�MY��x�/!�&�	(�Z�
����&��	����u�- k���H0�+1v� ��+���i�����t.�z�#)�L�Q�f
`'(�I�j�B�DS�?���k.0'+�!zc�/
� ���`IR�@�pp5
	(�YU���U���E�/s�OTmz�#ti9����[UI`�Zc�/�'�	;�`�	3:0� sG�Z"�I�� 	hI���^��Rg/��
)�{�CO�� 1{ �
��Sa���  -�ZUAw��S��� &�U�b0TP�l6C0��x�F!g�y��"R��|3�< |
��Mp![�-@��2t-HZU�R�/ �P�3��� �zZP�:yP@�qyu0� !_(�	M �"y@�!A ��#�;.@%)�7`~�!b�	2�G�{'n�/+�c�0
U/�["��2@��W���4P��S@�:d�X��*�)�
&f[ '(�L@�V�s`��;<�c
	�n�Wjj}4�s��Y�cp<	�f
 '(�w ����7`g�Py��E��@Vx7!��$&�2�|�`�\=z��"85@�w�y0�"��#��$XP��@<d�F�
�
�<0w
mg�!�]0�	�����ZU�'��A$z`�"�}W��C�Z�/�II��j�d0rm``[U�*��d>�S?A
PJTХ~B@�aCPn5�]�x	wv�� �>��,a
��&+�
� \Ps3�k�q6�,��
��\�xj�`� R�j�-f0OHPP��Mm�j�Y /qvB@=v�*�
~�lGs�FK!=��
/r��tnF@� gk�S)�)��!�;�cj2�z=�M�7�A��%��	��j��d�<�<��P�L%�u�� P�#'�.�'-67p|.���0Dp�0'�q6�)�"4�D �Q�@3dFP��S~pZ#%�P�.8s�{,�4�
s\@{(&��
�3����D��m�
`�,�p!�N�	�V�Wqz��"@ ZUO��
�[���6�[U*Pb�p��!L�3B�|�H#(�P0�+E{@#�t��"��|PJ#/]0�[@�u� [.p&Tq�"VEp�E<�b*��!/p-9�V]0�>����!4�	 0��b����4E$@��`�
(p�	�`�=Ch�Y�{��-a �b�g0�#d0@�{�yP�"��FP~ �Xj /�H���e��Wu� Se��!@���SP�Z��"nO�c�G ���a��U�5�A) p( �&0 
#]91@_C`��6f
`'(���@LHBv��!V<R�rp^)��	�
�E	�a���}`P#P�z�#L�k�q6�p�l	!Z�e`P�#m	�����%�* 3�}pV#.�%�y	,0�
{iP�fC�{kjP�P{.�&`��& �	��E���H`�"*ZU�]��h�p�N���0p�
;�
g�`M,L\U�"�W!0l��"ESp��TP�
kP��A�*�mP#��7
"p�4`@`��D��S:(����s��,p�9!H]i ��1PEk6��sNа	..�aI�N� ���#�_�
�C`�#�TpE�`<�>���~> Cd�z�#)�M�� �' �		�~`i#&�$�	`���Y�\UX���+SP��qp�o'f
 '(6*�k0�`m��6_a �$zaP�-����5 +O0\U�`7��|pH#X�1@�]bs�K.l@�b�p�V%/�-dl}@;P
D�=����6P���4��rpI##�r��ndQ�w	p�	u�b �����G�'����J��E4�����h>@;� 
�r�o�}0W#.!�	,�N�{ y)I��	@,��K��"	�)ZU�-��6Q����-`hL�Z�UP�	T\0�
Q"� 	�"0�	BaL�#�7p� q(]@�Yrp�[�@�"� �!!Ze&��@����A�*y/p :�
0N-��-wp#8O��	�~i#NE]P�H�#0�;04
	Stp ��!a9-hZU�@�	C:���}]p����W������X@�!_��1 �
\*e �4�;�5
2�d�q�+0Dc�d)�B�T�V�Y>	
�@.T]Дy90B�Ў"��p�i�L���"�aB0�/�.�'-���=��;?`}A.%�d+�O
��'!��Dy�&�ZUe%o	z`+d�t�] �0�TMP��@���(@�	
9�0Hs�}�>p�&�0�,@����U�mJ�
��&wP+%v@���d�zB��!:�@�!�O�� )�1��\�}�S#B�pPs(��|lZ��<m���u�� Q8g��(��	J,P| �K[�B�pMQ`' bL�0�`p�
��^I;O`5|h0Y+�h�"��h�H	��s�.0$2�QP$�3@�I�i@��_��xV`q3�	�,X�|I#e���	A0�,�"��h`o	�&��	4�v
8�'�Z�b�;��,�\v	�l��*�90���- �:~Z#(K
�orsq�c#�Ld=Jc�.$��)w%pp	�CM0�<m���R ��p#B�{�#*Y`�4(K0��w�\UG�E�`� ��	nL �7ou� @9n�/v�\Uh0�h0DZ0;A �L#�ze���4Ћ&�Ќ
.jgP<�D�D�Ѕ$�a��]OВ E�}�V#.r G
$e
�'(%��	�v
(�'
j�\U�0�
!90("o%�o	�	1�l
=J<d
88N0� S�+����5�[Ub8@�5q�l#>M�� �Ea���!I��w}�+^v�� �uP� ,?J�[U0E��5WЏC#1`
8~0x��~b#c<��;�0]��xH]U�Tp�$D*0�xsI��Izlд)�=��
@l��Z;��N�3����:p�#9I�Pr�Pu* h��D`���'��	��^ �d�R�\U�i#�N`�#�f[1��B�2��{0#	�M	< �4zQ@�]p�DO:pb#�9:��!�b
��&�q���:"� 	�&��	W����Up�(p�	?Y0��V8�5KB��i	�"��+b=��
6_p��an�!7A0!�G�h"�/@� M�
@H���xb|K�1�C�[U�00n.�,p�&
��3`^���e��Aj�~�A�%�EP�S��<�
-PZUC#0|OQg�i13FP��q@}�E`?}
�Tl�C�*� !9�C�{�`5��f
�'(�G�o�Nl�gZ	(ZUcMp��|�I#��4�|A0+S �
iGc
E����`�)(
��&>��!(@�	YCp{�5P"[ ��-��/� �	E�g�1���L�:@�:(\ULz��"�!�	N��60{2�	��=,�
[ O0,t���&),��
9~H�Z�Ђ	�CP��;&�rS��/� ��'�	9�d�q&�G�h!"BP  8�3ph�ZQ=i>��K���1�Zpx�I�!n�L��R	4`���,TsC�3�"++�-�By0]Up+��yi1�I@�;�<
.���d�KplBe`��� >���:1@E����O@� Y�q�1�[��{[I0��6P��:P�S`K!)�=p�
+-�ZU[�m:�� aM&@��G�g2hY�}`T#1]�	�L`�]�g�� 'zt0 3���K*4���
�YUdY�;	M���>�r-P`�.b@��Pud))�	7�P��v� �S0��*��
��C����3�1[ +�pe__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizedln_loaddlopendlsymruby_xmallocdlcloserb_loaderrormemcpydlerror__stack_chk_failrb_locale_charmapnl_langinforb_usascii_str_new_cstrrb_enc_find_indexrb_default_external_encodingrb_enc_to_indexrb_eval_stringrb_wb_protected_newobj_ofrb_source_location_cstrrb_block_given_prb_yieldrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_num2longrb_error_arityrb_int2bigrb_enc_copyrb_str_buf_appendrb_ary_rassocrb_equalrb_ary_includesrb_exec_recursive_pairedrb_funcallv_with_ccrb_warnrb_int_positive_powrb_int128t2bigrb_float_new_in_heaprb_eqlrb_keyword_given_prb_empty_keyword_given_prb_free_tmp_bufferrb_eIndexErrorrb_raiserb_hash_startrb_st_hash_uintrb_hashrb_st_hash_endrb_respond_toruby_xmalloc2rb_eArgErrorrb_eRuntimeErrorrb_yield_values2rb_cmpintrb_ary_eachrb_exec_recursiverb_usascii_str_new_staticrb_str_buf_newrb_str_catrb_inspectrb_gc_writebarrierruby_xrealloc2ruby_xfreerb_big_plusrb_num2dblrb_big2dblrb_ensurerb_error_frozen_objectrb_cIntegerrb_cFloatrb_float_cmprb_cStringrb_method_basic_definition_p_with_ccrb_str_cmprb_ary_ptr_use_startrb_ary_ptr_use_endrb_gc_writebarrier_remembermemmoverb_mem_clearrb_freeze_singleton_classrb_cArrayrb_assert_failurerb_obj_classrb_ary_detransientrb_ary_freezerb_obj_freezerb_ary_shared_with_prb_ary_new_caparb_ary_plusrb_ary_newrb_ary_new_from_argsrb_ary_tmp_new_from_valuesrb_ary_new_from_valuesrb_alloc_tmp_buffer_with_countruby_malloc_size_overflowmemsetmemchrrb_ary_tmp_newrb_ary_freerb_gc_force_recyclerb_ary_clearrb_hash_new_with_sizerb_hash_foreachrb_st_free_tablerb_ary_modifyrb_ary_pushrb_iter_breakrb_hash_stlike_lookuprb_gc_writebarrier_unprotectrb_cRandomrb_random_ulong_limitedrb_check_hash_typerb_get_kwargsrb_range_beg_lenrb_ary_sort_bangqsort_rrb_ary_replacerb_block_callrb_intern2rb_ary_memsizerb_assoc_newrb_call_superrb_check_array_typerb_check_convert_type_with_idrb_check_string_typerb_obj_as_stringrb_ary_assocrb_ary_cmprb_hash_asetrb_eTypeErrorrb_check_to_arrayrb_ary_storerb_ary_deleterb_warningrb_ary_catrb_ary_poprb_st_lookuprb_st_insertrb_st_deleterb_st_clearrb_hash_newrb_st_init_numtablerb_fix2intrb_num2intrb_ary_shiftrb_ary_beheadrb_ary_unshiftrb_ary_entryrb_cNumericrb_obj_is_kind_ofrb_eRangeErrorrb_ary_subseqrb_ary_aref1rb_ary_arefrb_ary_to_aryrb_bugrb_ary_resize__memcpy_chkrb_ary_duprb_ary_sortrb_data_object_wraprb_st_init_numtable_with_sizerb_ary_resurrectrb_ary_joinrb_string_valuerb_str_newrb_str_set_lenrb_usascii_encodingrb_enc_associaterb_output_fsrb_ary_to_srb_ary_reverserb_ary_rotaterb_get_values_atrb_ary_delete_atrb_ary_concatrb_cObjectrb_define_classrb_mEnumerablerb_include_modulerb_define_alloc_funcrb_define_aliasrb_define_methodrb_define_singleton_methodrb_check_typeddatarb_ast_memsizerb_gc_markrb_class_pathrb_str_new_staticrb_str_appendruby_node_namerb_str_catfrb_data_typed_object_zallocrb_parser_newrb_parser_set_contextrb_id2strruby_snprintfrb_internrb_cFalseClassrb_cTrueClassrb_cNilClassrb_cSymbolrb_enc_getrb_enc_dummy_prb_ast_disposeruby_current_execution_context_ptrrb_exc_raiserb_parser_compile_string_pathrb_utf8_encodingrb_get_pathrb_file_open_strrb_enc_from_encodingrb_parser_compile_file_pathrb_io_closerb_obj_is_procrb_iseq_pathrb_const_defined_atrb_const_get_atrb_method_iseqrb_hash_lookuprb_parser_compile_genericrb_cRubyVMrb_define_module_underrb_define_class_underrb_undef_alloc_funcruby_digit36_to_number_tablerb_eFloatDomainError__gmpz_init__gmpz_import__gmpz_mul__gmpz_export__gmpz_clear__gmpz_fdiv_q__gmpz_fdiv_qr__gmpz_fdiv_r__gmpz_sizeinbaserb_usascii_str_new__gmpz_get_strrb_nogvlrb_thread_check_intsrb_Float__gmpz_set_strrb_genrand_ulong_limitedrb_big_mul_normalrb_big_sq_fastrb_big_mul_balancerb_big_mul_karatsubarb_big_mul_toom3rb_big_mul_gmprb_bigzero_prb_cmperrrb_big_resizeldexprb_big_divrem_normalrb_num_zerodivrb_big_divrem_gmprb_obj_hiderb_gc_register_mark_objectrb_str_resizerb_big_newrb_big_clonerb_big_2comprb_big_normrb_uint2bigrb_uint2inumrb_int2inumrb_absint_sizerb_to_intrb_absint_numwordsrb_absint_singlebit_prb_integer_packrb_big_packrb_integer_unpackrb_big_unpackrb_int_parse_cstrruby_scan_digitsrb_cstr_to_inumrb_invalid_strrb_must_asciicompatrb_str_to_inumrb_str2big_poweroftworb_string_value_cstrrb_str2big_normalrb_string_value_ptrrb_str2big_karatsubarb_str2big_gmprb_ull2inumrb_ll2inumrb_cstr2inumrb_str2inumrb_big2str_poweroftworb_big2str_genericrb_big2str_gmprb_big2strrb_fix2strrb_big2ulongrb_big2longrb_big2ullrb_big2llrb_dbl2bigrb_flo_div_florb_num_coerce_binrb_big_cmprb_num_coerce_cmpmodfrb_num_coerce_reloprb_big_eqmemcmprb_big_eqlrb_big_minusrb_big_mulrb_big_divrb_big_idivrb_big_modulorb_big_divmodfrexprb_big_powrb_rational_rawrb_big_andrb_num_coerce_bitrb_big_orrb_big_xorrb_big_lshiftrb_big_rshiftrb_memhashrb_big_signsqrt__gmpz_powmrb_define_const__gmp_versionrb_sprintfrb_add_method_iseqrb_st_foreachrb_st_add_directrb_unexpected_typerb_block_procruby_xcallocrb_cClassrb_const_setrb_check_inheritablerb_class_newrb_singleton_class_attachedrb_class_ivar_setrb_attr_getrb_iv_tbl_copyrb_singleton_class_clonerb_mod_init_copyrb_obj_init_copyrb_cBasicObjectrb_fstring_newrb_set_class_path_stringrb_cModulerb_class_realrb_ivar_getrb_define_class_idrb_class_inheritedrb_const_definedrb_const_getrb_define_class_id_underrb_module_newrb_define_module_idrb_define_modulerb_define_module_id_underrb_clear_constant_cacherb_clear_method_cache_by_classrb_prepend_modulerb_mod_included_modulesrb_mod_include_prb_mod_ancestorsrb_class_instance_methodsrb_class_protected_instance_methodsrb_class_private_instance_methodsrb_class_public_instance_methodsrb_define_method_idrb_define_protected_methodrb_define_private_methodrb_undef_methodrb_singleton_classrb_obj_singleton_methodsrb_define_module_functionrb_define_global_functionrb_mKernelrb_aliasrb_define_attrrb_attrrb_keyword_error_newrb_exc_new_strrb_extract_keywordsrb_cHashrb_fatalrb_hash_keysrb_scan_argsrb_scan_args_kwrb_range_valuesrb_exec_recursive_paired_outerrb_mComparablerb_memerrorrb_str_new_cstrrb_iseq_realpathrb_iseq_new_with_callbackrb_iseq_new_with_optrb_hash_arefrb_vm_get_ruby_level_next_cfprb_imemo_newrb_sym2strrb_st_memsizerb_eNotImpErrorrb_str_hashrb_str_hash_cmprb_id2namerb_eNoMatchingPatternErrorrb_eStandardErrorrb_range_newrb_rational_newrb_complex_newrb_intern_strrb_enc_associate_indexrb_fstringrb_sym2idrb_enc_findrb_iseq_first_linenorb_prb_cRangerb_class_namerb_enc_get_indexrb_enc_from_indexrb_to_encodingrb_reg_optionsruby_api_versionrb_out_of_intrb_set_errinfo__printf_chkfflushrb_str_concatdladdrrb_str_cat_cstrrb_eSyntaxErrorrb_fix2uint__assert_failrb_iseq_compile_callbackrb_iseq_original_iseqrb_num2uintrb_hash_tbl_rawrb_is_attrset_idrb_is_const_idrb_ruby_debug_ptrrb_str_duprb_ivar_setrb_str_freezerb_global_entryrb_id_attrsetrb_hash_bulk_insertrb_warning_category_enabled_prb_compile_warnstrcmpruby_current_vm_ptrrb_iseq_compile_noderb_str_tmp_newrb_iseq_defined_stringrb_iseq_mark_insn_storagerb_iseq_build_from_aryrb_mark_setrb_iseq_loadrb_iseqw_to_iseqrb_cISeqrb_iseq_constant_body_allocrb_iseq_insns_info_encode_positionsrb_complex_realrb_complex_imagrb_complex_arg__ctype_b_locrb_convert_typerb_copy_generic_ivarrb_cRationalstrchrstrpbrkrb_cstr_to_dblrb_str_to_dblrb_mMathrb_complex_uminusrb_complex_conjugaterb_cComplexsincosrb_complex_plusrb_complex_minusrb_complex_mulrb_complex_absrb_complex_powrb_complex_divrb_Stringnucomp_canonicalizationrb_complex_rawrb_complex_new_polarrb_str_modifyrb_protectrb_opts_exception_prb_complex_polarrb_Complexrb_dbl_complex_newrb_marshal_define_compatrb_providerb_gc_locationmadviserb_gc_mark_movablerb_gc_mark_locationsrb_data_typed_object_wrap__errno_locationmmapmprotectmunmapstrerrorrb_eThreadErrorrb_fiber_alive_prb_any_to_sstrlcat_setjmpcoroutine_transferrb_exc_newrb_exec_event_hooksrb_threadptr_execute_interrupts__longjmp_chkrb_typeddata_is_kind_ofrb_fiber_newrb_proc_newrb_adjust_argv_kw_splatrb_vm_invoke_procruby_stoprb_fiber_currentrb_fiber_resume_kwrb_make_exceptionrb_fiber_resumerb_fiber_yield_kwrb_fiber_yieldsysconfgetenvstrtolruby_Init_Continuation_bodyruby_Init_Fiber_as_Coroutineruby_debug_print_indent__fprintf_chk__vfprintf_chkruby_debug_print_valueruby_debug_print_idruby_debug_print_noderuby_set_debug_optionruby_each_wordsruby_debug_counter_getruby_debug_counter_resetruby_debug_counter_show_at_exitrb_enc_mbclenclosedirrb_cThreadrb_thread_call_with_gvlrb_gc_for_fdopenatfdopendirrb_enc_precise_mbclenrb_enc_codepoint_lenrb_enc_toupperrb_enc_str_new_cstrrb_syserr_fail_strrb_enc_str_asciionly_prb_str_coderange_scan_restartablerb_str_new_frozenrb_str_encode_ospathrb_thread_call_without_gvlrb_sys_fail_path_inreaddirrb_file_directory_prb_eIOErrorrb_external_str_new_with_encrmdirrb_enc_path_skip_prefixrb_enc_path_endrb_str_subseqmkdirchrootchdirrb_thread_currentrb_cDirrb_funcallv_kw__fxstatatseekdirtelldirrewinddirrb_syserr_faildirfdrb_sys_failrb_filesystem_encodingrb_syserr_fail_path_instrlcpyrb_enc_checkrb_ascii8bit_encodingrb_jump_tagrb_enc_compatibleruby_getcwdrb_dir_getwdruby_globrb_globruby_brace_globrb_cFile__xstateaccessdln_find_exe_rdln_find_file_rruby_strduprb_st_locale_insensitive_strcasecmprb_cEncodingOnigEncAsciiToUpperCaseTablerb_enc_set_dummyrb_enc_unicode_pOnigEncodingASCIIrb_st_init_strcasetablerb_st_insert2rb_encdb_set_unicoderb_enc_str_coderangerb_ruby_verbose_ptrrb_errinforb_eEncodingErrorrb_enc_registerrb_encdb_declarerb_enc_set_baserb_enc_replicaterb_encdb_replicaterb_encdb_aliasrb_enc_aliasrb_enc_capablerb_enc_set_indexrb_to_encoding_indexrb_find_encodingrb_eEncCompatErrorrb_obj_encodingrb_enc_fast_mbclenonigenc_mbclen_approximaterb_enc_ascgetrb_enc_codepointrb_enc_codelenrb_enc_code_to_mbclenrb_enc_tolowerOnigEncAsciiToLowerCaseTablerb_define_dummy_encodingrb_encdb_dummyrb_ascii8bit_encindexrb_utf8_encindexrb_enc_sprintfrb_usascii_encindexrb_locale_encindexrb_locale_encodingrb_filesystem_encindexrb_enc_default_externalrb_enc_set_default_externalrb_default_internal_encodingrb_enc_default_internalrb_enc_set_default_internalrb_hash_clearrb_cEnumeratorrb_obj_allocrb_check_funcallrb_block_call_kwrb_check_idrb_funcallv_publicrb_obj_respond_torb_enum_values_packrb_eStopIterationrb_rescue2rb_need_blockrb_obj_methodrb_proc_call_with_blockrb_yield_values_kwrb_proc_call_kwrb_check_funcall_kwrb_to_idrb_obj_duprb_method_basic_definition_prb_enumeratorizerb_funcall_with_blockrb_enumeratorize_with_size_kwrb_arith_seq_newrb_arithmetic_sequence_extractrb_str_vcatfrb_enc_str_new_staticrb_eSystemCallErrorrb_check_to_intrb_mErrnorb_obj_cloneruby_vsnprintffputsruby_descriptionrb_iseqw_newrb_cNameErrorMesgrb_write_error_strrb_class_new_instancerb_compile_warningrb_call_super_kwrb_bug_reporter_addrb_bug_errnorb_obj_classnamerb_typeddata_inherited_prb_exc_new_cstrrb_eFatalrb_check_typerb_eLoadErrorrb_name_errorrb_vsprintfrb_eNameErrorrb_name_error_strrb_eNoMethodErrorrb_eKeyErrorrb_eExceptionrb_eSystemExitrb_eSignalrb_eInterruptrb_eScriptErrorrb_cDatarb_eFrozenErrorrb_eSecurityErrorrb_eNoMemErrorrb_extend_objectrb_enc_raiserb_enc_vsprintfrb_setup_fake_strrb_str_formatrb_exc_set_backtracerb_io_putsrb_loaderror_with_pathrb_notimplementruby_thread_has_gvl_prb_exc_fatalrb_syserr_new_strrb_syserr_newrb_sys_fail_strrb_mod_sys_failrb_mod_sys_fail_strrb_mod_syserr_failrb_mod_syserr_fail_strrb_sys_warningrb_str_buf_new_cstrrb_error_frozenrb_frozen_error_raiserb_check_frozenrb_error_untrustedrb_check_trustedrb_check_copyablerb_proc_callrb_iseq_eval_mainrb_ident_hash_newrb_f_untrace_varrb_f_trace_varrb_mod_const_atrb_mod_const_ofrb_const_listrb_mod_constantsrb_file_dirnamerb_f_global_variablesrb_write_error2rb_eSysStackErrorlog10rb_ec_backtrace_objectrb_ivar_definedrb_set_end_procruby_setupruby_init_stackprctlruby_prog_initruby_executable_noderuby_exec_noderb_interruptrb_vm_localjump_errorrb_vrescue2rb_rescuerb_frame_calleerb_write_errorrb_hash_has_keyruby_initrb_obj_is_instance_ofruby_optionsruby_process_optionsruby_finalizeruby_sig_finalizeruby_vm_destructruby_default_signalruby_cleanupruby_run_noderb_hash_duprb_obj_call_initrb_obj_call_init_kwrb_define_virtual_variablerb_eLocalJumpErrorrb_mFileTestrb_str_inspect__fxstatstatxrb_io_taint_checkrb_io_check_closedrb_time_nano_new__lxstatrb_num2ulongrb_thread_io_blocking_regionrb_thread_wait_forflockftruncatefchownfchmodmkfiforenamerb_str_ellipsizeunlinkutimensatlutimeslchowngetuidgeteuidrb_io_check_initializedumaskgetgidgetegidgetgroupsrb_str_conv_encrb_get_path_no_checksaferb_class_inherited_prb_alloc_tmp_bufferrb_time_timespecsymlinkrb_file_s_birthtimerb_stat_newrb_cStatrb_readlinkrb_str_modify_expandrb_enc_path_nextrb_enc_path_last_separatorrb_str_replacerb_enc_str_newgetpwnamendpwentruby_enc_find_basenamerb_str_new_sharedonigenc_get_left_adjust_char_headruby_enc_find_extnamerb_is_absolute_pathrb_str_capacityrb_file_expand_pathrb_file_s_expand_pathrb_file_absolute_pathrb_file_s_absolute_pathrb_path_checkrb_cloexec_openrb_update_max_fdrb_find_file_extrb_find_file_ext_saferb_find_filerb_find_file_saferb_cIOrb_f_notimplementruby_native_thread_pclock_gettimegetrusagerb_hash_stlike_foreachruby_strtodrb_st_numhashrb_obj_idrb_st_foreach_with_replacestrtollrb_ast_update_referencesrb_stdoutrb_io_writerb_st_updaterb_objspace_data_type_memsizerb_generic_ivar_memsizerb_str_memsizeonig_memsizerb_io_memsizeonig_region_memsizerb_objspace_data_type_namerb_objspace_each_objects_without_setuprb_objspace_internal_object_prb_undefine_finalizerrb_define_finalizerrb_gc_copy_finalizerrb_objspace_markable_object_prb_objspace_garbage_object_prb_memory_idrb_obj_memsize_ofruby_stack_lengthrb_ec_stack_checkruby_stack_checkrb_mark_hashrb_mark_tblrb_mark_tbl_no_pinrb_objspace_marked_object_prb_gc_verify_internal_consistencyrb_obj_gc_flagsrb_gc_update_tbl_refsrb_during_gcrb_gc_countrb_gc_latest_gc_inforb_gc_statrb_gc_enablerb_gc_mark_mayberb_mark_generic_ivarrb_hash_compare_by_id_prb_ast_markrb_objspace_reachable_objects_fromrb_gc_mark_valuesrb_gc_mark_vm_stack_valuesrb_objspace_reachable_objects_from_rootrb_st_init_strtableposix_memalignrb_st_init_tablerb_mv_generic_ivaronig_region_freeonig_freerb_str_freerb_postponed_job_register_onerb_free_generic_ivarrb_ast_freerb_objspace_each_objectsrb_gc_disablerb_gcrb_gc_startmalloc_usable_sizerb_newobjrb_wb_unprotected_newobj_ofrb_newobj_ofrb_gc_unregister_addressrb_gc_adjust_memory_usagerb_obj_inforb_class_path_cachedrb_mGCrb_gc_register_addressrb_global_variablerb_data_object_zallocruby_xreallocrb_hash_sizerb_st_copyrb_st_keysrb_st_valuesrb_func_proc_newrb_str_buf_cat_asciirb_st_foreach_checkrb_st_init_table_with_sizerb_hash_freezerb_hash_set_ifnonerb_proc_lambda_prb_proc_arityrb_exec_recursive_outerrb_st_hashrb_st_foreach_saferb_hash_delete_ifrb_hash_resurrectrb_hash_tblrb_hash_lookup2rb_hash_fetchrb_hash_delete_entryrb_st_shiftrb_hash_deleterb_hash_size_numrb_hash_update_byrb_hash_bulk_insert_into_st_tablerb_env_path_taintedruby_setenvruby_unsetenvrb_env_clearrb_define_global_constrb_st_numcmpwritevrb_econv_closefcloserb_lastline_getrb_lastline_setrb_str_setterrb_iter_break_valueioctlposix_fadvisefdatasyncfsyncpwritepreadrb_exec_async_signal_saferb_execarg_parent_startrb_class_new_instance_kwrb_fd_initrb_time_intervalrb_fd_termsyscallrb_thread_call_without_gvl2rb_econv_open_optsrb_econv_open_excrb_str_locktmp_ensurerb_rsrb_thread_interruptedrb_wait_for_single_fdlseekcopy_file_rangefcntlsendfilerb_econv_asciicompat_encodingrb_str_encoderb_econv_str_convertstrrchrrb_st_locale_insensitive_strncasecmprb_econv_prepare_optionsrb_maygvl_fd_fix_cloexecrb_fd_fix_cloexecruby_strtoulrb_cloexec_dup2dup3rb_cloexec_pipepipe2rb_cloexec_fcntl_dupfdrb_cloexec_duprb_eof_errorrb_eEOFErrorrb_default_rsisattyrb_io_get_iorb_io_check_iorb_io_get_write_iorb_fd_setrb_thread_fd_selectrb_fd_issetrb_io_set_write_iorb_stdinrb_io_check_writablerb_str_tmp_frozen_acquirerb_str_tmp_frozen_releaserb_io_read_pendingrb_io_read_checkrb_thread_wait_fdrb_io_wait_readablerb_econv_make_exceptionrb_econv_convertrb_econv_putbackablerb_econv_putbackrb_econv_check_errorrb_io_wait_writablerb_thread_fd_writablerb_mutex_synchronizerb_io_check_char_readablerb_io_check_byte_readablerb_io_check_readablerb_io_ungetbyterb_str_locktmprb_str_unlocktmprb_io_eofrb_io_ungetcrb_enc_uint_chrrb_mutex_newrb_thread_schedulerb_waitpidshutdownrb_io_bufwriterb_io_addstrrb_io_printfrb_f_sprintfrb_io_printrb_output_rsrb_obj_method_arityrb_stderrrb_str_substrrb_io_flushrb_io_getbyterb_io_set_nonblockrb_io_getsrb_io_fptr_finalizerb_io_binmoderb_econv_binmoderb_io_ascii8bit_binmoderb_io_modestr_fmoderb_io_oflags_fmoderb_io_modestr_oflagsrb_check_to_integerrb_io_extract_encoding_optionrb_io_extract_modeencfreopenfilenorb_thread_fd_closesetvbufrb_fdopenrb_io_synchronizedrb_piperb_close_before_execrb_io_stdio_filerb_io_make_open_filerb_file_openrb_io_fdopenrb_reserved_fd_prb_execarg_getrb_execarg_addoptrb_fork_async_signal_saferb_execarg_parent_endrb_thread_atforkrb_execarg_newrb_execarg_extract_optionsrb_execarg_setenvrb_getsrb_get_argvrb_readwrite_syserr_failrb_mWaitReadablerb_mWaitWritablerb_readwrite_sys_failrb_define_hooked_variablerb_define_variablerb_set_class_pathrb_define_readonly_variablerb_gvar_readonly_setterrb_str_internrb_iseq_evalrb_str_resurrectrb_obj_is_methodrb_get_coveragesrb_iseq_absolute_pathrb_iseq_labelrb_iseq_base_labelrb_iseq_method_namerb_iseq_code_locationrb_iseq_coveragerb_iseq_remove_coverage_allrb_iseq_line_norb_iseq_event_flagsrb_iseq_parametersrb_iseq_disasm_insnrb_iseq_disasmrb_iseq_trace_setruby_vm_event_enabled_global_flagsrb_iseq_newrb_iseq_new_toprb_iseq_new_mainrb_str_to_strrb_iseq_trace_set_allrb_iseq_local_variablesrb_filesystem_str_new_cstrrb_str_equalrb_st_get_keyrb_feature_providedrb_providedrb_loadrb_load_protectrb_require_saferb_require_stringrb_f_requirerb_requireruby_init_extrb_alias_variablerb_ivar_foreachrb_path_to_classrb_get_alloc_funcrb_struct_s_membersrb_reg_new_strrb_struct_initializerb_cRegexprb_struct_membersrb_marshal_dumprb_marshal_loadlogrb_eMathDomainErrorerferfcasinhatanacoshhypotacosasincbrtlog2atanhtgammalgamma_ratan2mjit_optsfputcgetpidvforkexecv__sprintf_chkmjit_call_prb_mjit_add_iseq_to_processrb_mjit_wait_callrb_mjit_iseq_compile_inforb_mjit_recompile_iseqruby_vm_global_method_staterb_parser_dump_treerb_node_initrb_ast_newnoderb_ast_add_local_tablerb_ast_delete_noderb_ast_newrb_ast_add_mark_objectroundfmodrb_remove_method_idrb_memcicmprb_float_eqlrb_float_equal__memmove_chkrb_eZeroDivErrornextafterruby_float_modrb_dbl_cmprb_num2shortrb_fix2shortrb_num2ushortrb_fix2ushortrb_num2fixrb_num2llrb_num2ullrb_gcdrb_fix_arefrb_float_valuerb_float_newrb_obj_equalrb_obj_notrb_falserb_obj_not_equalrb_obj_taintedrb_obj_taintrb_obj_untaintrb_obj_untrustedrb_obj_untrustrb_obj_trustrb_is_class_idrb_cvar_definedrb_cvar_setrb_cvar_getrb_mod_module_execrb_is_instance_idrb_obj_frozen_prb_class_superclassrb_check_id_cstrrb_const_defined_fromrb_const_get_fromrb_is_local_idrb_ivar_countrb_const_missingrb_const_source_location_atrb_rational_numrb_rational_denrb_obj_revealrb_obj_setuprb_class2namerb_obj_copy_ivarrb_obj_infectrb_class_get_superclassrb_check_convert_typerb_Integerrb_to_floatrb_check_to_floatrb_Arrayrb_Hashrb_obj_instance_variablesrb_obj_remove_instance_variablerb_mod_namerb_mod_remove_constrb_mod_class_variablesrb_mod_remove_cvarruby_hexdigitsrb_uv_to_utf8ruby_global_name_punct_bitsonigenc_get_prev_char_headrb_make_backtracerb_parser_compile_stringrb_parser_trace_lex_staterb_parser_lex_state_namerb_parser_show_bitstackrb_parser_set_location_from_strterm_heredocrb_parser_set_location_of_nonerb_parser_set_locationruby_scan_hexruby_scan_octrb_parser_fatalrb_reg_fragment_setencrb_char_to_option_kcoderb_parser_reg_compilerb_parser_set_optionsrb_reserved_wordrb_parser_end_seen_prb_parser_encodingrb_parser_set_yydebugrb_parser_mallocrb_parser_callocrb_parser_reallocrb_parser_freerb_parser_printfrb_intern3rb_yytnamerrstpcpyonig_foreach_namerb_mRubyVMFrozenCorerb_iteraterb_iv_getrb_cBindingrb_cUnboundMethodrb_callable_method_entry_with_refinementsrb_cMethodrb_find_defined_class_by_ownerrb_method_entry_complement_defined_classrb_binding_newrb_cProcrb_proc_call_with_block_kwrb_funcall_with_block_kwrb_iseq_locationrb_sym_to_procrb_vm_make_proc_lambdarb_vm_call_kwrb_block_lambdarb_method_call_with_block_kwrb_method_call_kwrb_method_call_with_blockrb_method_callrb_mod_method_arityrb_method_entryrb_proc_get_iseqexeclexeclegetpwnam_rgetgrnam_rsetpgidsigfillsetpthread_sigmaskrb_thread_sleepsetresuidsetsidgetpgidgetppidruby_signal_namerb_thread_local_arefrb_f_killsetreuidsetresgidrb_thread_sleep_forevergetresuidgetresgidsigemptysetsigprocmasksetgroupsseteuidsetuidsetgidsetegidinitgroupssetregidrb_proc_timesrb_struct_newsetprioritygetpriorityclock_getresgetsidgetrlimitsetrlimitgettimeofdayrb_last_status_getrb_last_status_setrb_detach_processrb_thread_createrb_thread_local_asetrb_proc_execrb_execarg_run_optionsgetpgrpqsortexecverb_f_execrb_exitrb_f_exitrb_f_abortrb_syswaitrb_spawn_errrb_spawngetlogin_rgetpwuid_rrb_mProcessrb_struct_define_underrb_cStruct__explicit_bzero_chkruby_fill_random_bytesgetrandomrb_genrand_int32rb_genrand_realrb_random_int32rb_random_realrb_random_bytesrb_reset_random_seedrb_struct_alloc_noinitrb_cTimerb_str_upto_endless_eachrb_str_upto_eachrb_struct_define_without_accessorrb_gcd_gmp__gmpz_gcdrb_gcd_normalnurat_canonicalizationrb_Rationalrb_flt_rationalize_with_precrb_flt_rationalizerb_eRegexpErroronig_name_to_backref_numberrb_enc_strlenrb_backref_setrb_reg_match_prerb_backref_getrb_reg_match_postonig_number_of_namesOnigDefaultSyntaxOnigDefaultCaseFoldFlagonig_reg_initonig_error_code_to_stronig_compile_rubyonig_newrb_memsearchmemmemrb_reg_region_copyonig_region_copyrb_reg_backref_numberrb_match_busyonig_region_resizerb_cMatchrb_reg_prepare_rerb_reg_adjust_startposonigenc_get_right_adjust_char_headonig_searchrb_reg_searchrb_str_offsetrb_str_lengthrb_reg_matchrb_str_sublenrb_reg_match2onig_matchrb_reg_nth_definedrb_reg_nth_matchrb_reg_last_matchrb_reg_match_lastrb_reg_allocrb_reg_init_strrb_reg_new_aryrb_enc_reg_newrb_reg_newrb_reg_regcomprb_str_subposrb_reg_quoterb_reg_regsubrb_enc_str_buf_catonig_noname_group_capture_is_activeonigenc_set_default_encodingonig_set_warn_funconig_set_verb_warn_funconig_reduce_nested_quantifieronig_node_freeonig_renumber_name_tableonig_name_to_group_numbersonig_scan_env_set_error_stringonig_node_str_setonig_node_new_stronig_node_str_catonig_node_list_addonig_node_new_altonig_node_new_listonig_node_new_anchoronigenc_strlenonig_get_default_case_fold_flagonig_set_default_case_fold_flagonig_bbuf_initonig_free_bodyonig_names_freeonig_initonigenc_initonig_initializeonig_add_end_callonig_endonig_is_in_code_rangeonig_is_code_in_cc_lenonig_is_code_in_cconig_node_new_encloseonigenc_ascii_is_code_ctypeonig_parse_make_treeonig_compileonig_new_without_alloconigenc_get_default_encodingOnigEncDefaultCharEncodingonigenc_get_right_adjust_char_head_with_prevonigenc_step_backonigenc_steponigenc_strlen_nullonigenc_str_bytelen_nullonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_apply_all_case_fold_with_maponigenc_get_case_fold_codes_by_str_with_maponigenc_not_support_get_ctype_code_rangeonigenc_is_mbc_newline_0x0aonigenc_ascii_mbc_case_foldonigenc_single_byte_mbc_enc_lenonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_always_false_is_allowed_reverse_matchOnigEncAsciiCtypeTableonigenc_mbn_mbc_to_codeonigenc_mbn_mbc_case_foldonigenc_mb2_code_to_mbclenonigenc_mb4_code_to_mbclenonigenc_mb2_code_to_mbconigenc_mb4_code_to_mbconigenc_mb2_is_code_ctypeonigenc_mb4_is_code_ctypeonigenc_with_ascii_strncmponigenc_with_ascii_strnicmponigenc_minimum_property_name_to_ctypeonigenc_ascii_only_case_maponigenc_single_byte_ascii_only_case_mapOnigEncISO_8859_1_ToUpperCaseTableOnigEncISO_8859_1_ToLowerCaseTableonig_error_code_to_formatonig_vsnprintf_with_patternonig_region_clearonig_region_setonig_region_initonig_region_newonig_get_match_stack_limit_sizeonig_set_match_stack_limit_sizeonig_search_gposonig_scanonig_get_encodingonig_get_optionsonig_get_case_fold_flagonig_get_syntaxonig_number_of_capturesonig_number_of_capture_historiesonig_copy_encodingonig_null_warnonig_get_parse_depth_limitonig_set_parse_depth_limitonig_strcpyonig_st_init_strend_table_with_sizeonig_st_lookup_strendonig_st_insert_strendonig_node_str_clearonig_scan_unsigned_numberOnigSyntaxRubyonig_set_default_syntaxonig_copy_syntaxonig_set_syntax_oponig_set_syntax_op2onig_set_syntax_behavioronig_set_syntax_optionsonig_get_syntax_oponig_get_syntax_op2onig_get_syntax_behavioronig_get_syntax_optionsonig_set_meta_charOnigSyntaxPythonOnigSyntaxPerlOnigSyntaxPerl58_NGOnigSyntaxPerl58OnigSyntaxJavaOnigSyntaxGnuRegexOnigSyntaxGrepOnigSyntaxEmacsOnigSyntaxPosixExtendedOnigSyntaxPosixBasicOnigSyntaxASISmblenrb_funcall_passing_blockrb_gv_setrb_fsruby_incpushruby_init_loadpathrb_load_file_strrb_load_fileruby_scriptrb_external_str_new_cstrruby_set_script_nameruby_enginestrstrruby_set_argvruby_show_versionrb_const_removeruby_show_copyrightrb_argv0ruby_init_setproctitleruby_sysinitruby_safe_level_2_warningrb_safe_levelrb_set_safe_level_forcerb_set_safe_levelrb_securerb_secure_updaterb_insecure_operationrb_check_safe_objsigactionsigaddsetrb_eval_cmd_kwkillpgsigaltstackruby_posix_signalperrorrb_grantptrb_nativethread_lock_lockrb_nativethread_lock_unlockrb_str_conv_enc_optsrb_enc_nthrb_check_symbol_cstrrb_st_init_strtable_with_sizerb_st_init_strcasetable_with_sizerb_st_delete_saferb_st_cleanup_saferb_st_keys_checkrb_st_values_checkrb_st_hash_uint32rb_st_hash_startrb_sym_all_symbolsrb_utf8_str_newrb_utf8_str_new_cstrrb_utf8_str_new_staticrb_tainted_str_newrb_tainted_str_new_cstrrb_str_dup_frozenrb_sym_to_srb_str_new_with_classrb_str_succrb_str_dumprb_str_shared_replacerb_obj_as_string_resultrb_str_timesrb_str_strlenrb_str_plusrb_str_opt_pluscrypt_rmemrchrrb_str_exportrb_str_export_localerb_str_export_to_encrb_str_buf_catrb_external_str_newrb_locale_str_newrb_locale_str_new_cstrrb_filesystem_str_newrb_str_cat2rb_str_buf_cat2rb_str_concat_literalsrb_str_comparablerb_str_eqlrb_str_drop_bytesrb_str_updaterb_str_splitrb_str_scrubrb_enc_symname2_prb_id_quote_unprintablerb_sym_proc_callrb_to_symbolrb_struct_sizerb_mod_module_evalrb_check_symbolrb_struct_arefrb_struct_asetrb_struct_getmemberrb_struct_define_without_accessor_underrb_struct_definerb_struct_allocrb_enc_symname_prb_symname_prb_sym_immortal_countrb_is_global_idrb_is_junk_idpthread_selfpthread_getattr_nppthread_attr_getstackpthread_attr_getguardsizepthread_attr_destroypthread_setname_nprb_mutex_locked_prb_mutex_trylockpthread_cond_timedwaitrb_sourcelinetimer_settimeeventfdtimer_create_longjmppthread_mutex_lockpthread_mutex_unlockpthread_killrb_mutex_unlockrb_thread_killpthread_mutex_initpthread_mutex_destroypthread_cond_initpthread_cond_destroypthread_cond_signalpthread_attr_initpthread_attr_setstacksizepthread_attr_setinheritschedpthread_attr_setdetachstatepthread_createpthread_cond_broadcastpthread_cond_waitpthread_condattr_initpthread_key_createpthread_setspecificpthread_condattr_setclock__libc_stack_endgetpagesizepthread_getspecificpthread_mutex_trylockrb_nativethread_selfrb_nativethread_lock_initializerb_nativethread_lock_destroyrb_timespec_nowppollsched_yieldrb_thread_check_trap_pendingrb_thread_wakeup_aliverb_thread_wakeuprb_throw_objrb_thread_mainrb_thread_alonerb_postponed_job_flushrb_time_timevalrb_thread_sleep_deadlyrb_mutex_sleeprb_mutex_lockrb_thread_runrb_thread_stoprb_fd_zerorb_fd_clrrb_fd_copyrb_fd_duprb_fd_selecttimer_deleterb_resolve_me_locationrb_clear_coveragesrb_thread_atfork_before_execrb_set_coveragesrb_add_event_hook2rb_reset_coveragesrb_remove_event_hooklocaltime_rtzsetgmtimerb_time_succrb_time_utc_offsetruby_reset_leap_second_inforb_time_newrb_time_timespec_newrb_time_num_newrb_time_timespec_intervalrb_register_transcoderrb_declare_transcoderrb_econv_encoding_to_insert_outputrb_econv_decorate_at_firstrb_econv_decorate_at_lastrb_econv_openrb_econv_insert_outputrb_econv_set_replacementrb_econv_prepare_optsrb_econv_has_convpath_prb_econv_appendrb_econv_substr_appendrb_econv_str_appendrb_econv_substr_convertrb_gvar_undef_markerrb_gvar_val_getterrb_gvar_var_getterrb_gvar_var_setterrb_gvar_undef_getterrb_gvar_val_markerrb_gvar_var_markerrb_gvar_undef_setterrb_gvar_val_setterrb_gvar_getrb_gvar_setrb_gv_getrb_gvar_definedrb_ivar_generic_ivtblrb_autoloading_valuerb_const_warn_if_deprecatedrb_cv_getrb_iv_setrb_cv_setrb_define_class_variablerb_const_lookuprb_autoloadrb_autoload_prb_autoload_loadrb_sourcefilerb_path2classrb_public_const_get_fromrb_public_const_get_atrb_public_const_defined_fromruby_versionruby_release_dateruby_platformruby_copyrightruby_patchlevelruby_vm_class_serialrb_backtrace_use_iseq_first_lineno_for_last_locationruby_vm_global_constant_staterb_method_definition_createrb_method_definition_eqrb_current_receiverrb_make_no_method_exceptionrb_eval_string_protectrb_eval_string_wraprb_throwruby_vm_const_missing_countrb_method_boundprb_method_definition_setrb_callable_method_entryrb_vm_search_method_slowpathrb_callable_method_entry_without_refinementsrb_resolve_refined_method_callableruby_vm_at_exitrb_dtrace_setupruby_vm_event_flagsruby_vm_event_local_numrb_catch_objrb_catchrb_frame_method_id_and_classrb_block_param_proxyrb_vm_execrb_vm_invoke_bmethodrb_obj_instance_execrb_obj_instance_evalrb_vm_call0rb_applyrb_funcallrb_funcallvrb_eval_cmdrb_funcallv_public_kwrb_funcall_passing_block_kwrb_eachrb_remove_methodrb_undefrb_yield_valuesrb_yield_splatrb_yield_blockrb_yield_splat_kwrb_backtracerb_debug_inspector_openrb_debug_inspector_frame_self_getrb_debug_inspector_frame_class_getrb_debug_inspector_frame_binding_getrb_debug_inspector_frame_iseq_getrb_debug_inspector_backtrace_locationsrb_profile_framesrb_profile_frame_pathrb_profile_frame_absolute_pathrb_profile_frame_labelrb_profile_frame_base_labelrb_profile_frame_first_linenorb_profile_frame_classpathrb_profile_frame_singleton_method_prb_profile_frame_method_namerb_profile_frame_qualified_method_namerb_profile_frame_full_labelputcharfopenfreadfeofrb_thread_add_event_hookrb_add_event_hookrb_thread_add_event_hook2rb_tracepoint_enablerb_thread_remove_event_hookrb_thread_remove_event_hook_with_datarb_remove_event_hook_with_datarb_tracepoint_disablerb_tracearg_from_tracepointrb_tracearg_event_flagrb_tracearg_eventrb_tracearg_linenorb_tracearg_pathrb_tracearg_method_idrb_tracearg_callee_idrb_tracearg_defined_classrb_tracearg_bindingrb_tracearg_selfrb_tracearg_return_valuerb_tracearg_raised_exceptionrb_tracearg_objectrb_tracepoint_enabled_prb_tracepoint_newrb_postponed_job_registeronigenc_unicode_is_code_ctypeonigenc_unicode_ctype_code_rangeonigenc_utf16_32_get_ctype_code_rangeonigenc_unicode_property_name_to_ctypeonigenc_unicode_mbc_case_foldonigenc_unicode_apply_all_case_foldonigenc_unicode_get_case_fold_codes_by_stronigenc_unicode_case_maplibpthread.so.0librt.so.1libgmp.so.10libdl.so.2libcrypt.so.1libm.so.6libc.so.6__environ__cxa_atexitld-linux-x86-64.so.2_edata__bss_startlibruby.so.2.7XCRYPT_2.0GLIBC_2.2.5GLIBC_2.3.3GLIBC_2.12GLIBC_2.3.2GLIBC_2.14GLIBC_2.28GLIBC_2.8GLIBC_2.6GLIBC_2.25GLIBC_2.3GLIBC_2.27GLIBC_2.7GLIBC_2.4GLIBC_2.3.4GLIBC_2.17GLIBC_2.11GLIBC_2.9/opt/alt/ruby27/lib64	
	

		
		� `�]|�� ui	��E� ui	��� si	
���Psi	�����
��ri	��ui	��� ui	��$�����������ii
̀ii
ր����ii
������ii
�ii

�ti		���� ����+�ii
6�ui	���$Spm�$S0m�$S�$S%S�l%S�#%S�m(%S�#0%S�m@%S/�#H%S�]X%S8�#`%S@[p%SF�#x%S[�%S\�#�%S�Z�%Sr�#�%S�Z�%S��#�%S�i�%S��#�%S�[�%S��#&S��$ &S��#(&S�[8&Sp[�&S%
$�&SP@�&Sp;�&S6�&S0
$�&S @�&S�@�&S0B@'S�=H'S�=P'S�JX'S�=`'S�Fh'S Qp'S�Px'S`O�'S`N�'S�L�'S�E�'S�=�'S@R�'S�=�'S�M�'S�M�'S�=�'S�=�'S�=�'S�=�'S@P�'S�=�'S�=�'S�=(S�=(S�=(S�=(S�= (S�=((S�=0(S�=8(S�=@(S`BH(S`BP(S�bX(S`B`(S�dh(S�fp(Shx(S�a�(Sa�(S@e�(S�c�(S`B�(S`g�(S`B�(S@c�(S@c�(S`B�(S`B�(S`B�(S`B�(S`b�(S`B�(S`B�(S`B)S`B)S`B)S`B)S`B )S`B()S`B0)S`B8)S`B@)SPHH)S�G`)S_$h)S��p)SP�x)Sp��)S ��)Si$�)S`��)S���)S��)S0� *S�#	(*S`#	@*S)'H*S�2	P*S@#	X*S� 	�*S��#+S%$+S�C
+S�w
 +SpB
`+S�%$h+S�C
x+S�w
�+S�B
�+S�o
�+S T
�+SPT
�+S�z
�+S�O
�+SH
,SP{
,SPP
,S�H
 ,S�D
0,SPy
@,SE
P,S�x
`,S`M
p,S�{
�,S�M
�,S�{
�,S�@
�,S�$$�,S�C
�,S�@
�,S�B
-Sy$$-S�C
-S�@
 -S�B
`-S�'$h-SD
x-S @
�-SC
�-S�$$�-S@C
�-S@
�-S�A
 .S�0.S3$H.S��$`.S3$h.Sp�
x.S`�
�.S}D$�.S��.SxD$�.S���.S�t$�.S ��.S�$�.S�/S�&/S��/S&�&/S�� /S|D$(/Sp�0/S�!$8/S��@/S�D$H/S �P/Sh�'X/SХ`/SC$h/S��p/S�u'x/S���/S�u'�/S`��/SfR$�/S�0S��0SR$0S �(0S0R$00S�@0S:R$H0SpX0SER$`0S�p0SSR$x0SP��0SL$�0S���0ScR$�0S@G�0SkR$�0SP��0S}R$�0S��$1S�R$1Sp�1S� 1SP# 1SОP1S�CX1S`C`1S�@
h1S�g
�1S��$�1S@�1Su$�1S��1S'u$�1S��$2Sgm$2S`�
2S��
`2SX�$h2S�"x2S�@�2S�i'�2S�i'�2S��-�2SJ�$�2S��2S`��2S��@3SS�$H3S��P3SP�X3S���3S1�$�3S7�$�3S&�$�3S5�$�3SE�$�3SJ�$�3S�$4S{�$4Sb�$4Sj�$4Sy�$ 4Sb�$(4SN*'04S�$@4S��$P4S��$`4S{�$h4SE�$p4SN*'x4Sj�$�4Sy�$�4Sb�$�4SN*'�4S�$�4Ss�4S�[%�4Sq�4S�[%�4S�p5S\%5S��$ 5SC $(5S�05S��85S��#@5S�H5S��P5SU$X5SЪh5S�}%p5S���5S�}%�5S��5S���5S���5S�}%�5S*$�5S�}%�5S~%6S~%6S!~%6S)~%6S3~% 6S=~%(6SH~%06SS~%86S[~%@6Sb~%H6Sm~%P6Sv~%X6S�~%`6S�~%h6S�~%p6S�~%x6S�~%�6S�~%�6S�~%�6S�~%�6S�~%�6S�~%�6S�~%�6S�~%�6S�~%�6S%�6S%�6S#%�6S.%�6S8%�6SB%�6SK%�6SS%7S\%7Sf%7Sn%7Su% 7S}%(7S�%07S�%87S�%@7S�%H7S�%P7S�%X7S�%`7S�%h7S�%p7S�%x7S�%�7S/�%�7SJ�%�7SS�%�7Se�%�7Sy�%�7S��%�7S��%�7S��%�7S��%�7S��%�7Sр%�7S�%�7S�%�7S	�%�7S�%�7S,�%8S8�%8S<�%8SH�%8SX�% 8Sq�%(8S��%08S��%88S��%@8S��%H8Sȁ%P8Ś%X8SӁ%`8S؁%h8Sށ%p8S�%x8S�%�8S�%�8S�%�8S��%�8S��%�8S�%�8S�%�8S�%�8S�%�8S�%�8S�%�8S$�%�8S)�%�8S.�%�8S3�%�8S8�%�8SI�%9S_�%9Sd�%9Sh�%9Sp�% 9St�%(9Sx�%09S|�%89S��%@9S��%H9S��%P9S��%X9S��%`9S��%h9S��%p9S΂%x9S߂%�9S�%�9S�%�9S�%�9S%�%�9S2�%�9S8�%�9SE�%�9SR�%�9SZ�%�9Se�%�9Sm�%�9Sq�%�9Su�%�9S�Z%�9Sy�%�9S}�%:S��%:S��%:S��%:S��% :S��%(:S��%0:S��%8:S��%@:S��%H:S��%P:S��%X:S��%`:S��%h:SŃ%p:SɃ%x:S̓%�:Sу%�:SՃ%�:Sك%�:S݃%�:S�%�:S�%�:S�%�:S�%�:S��%�:S��%�:S�%�:S�%�:S�%�:S*�%�:S3�%�:S�%;S�%;S7�%;SE�%;S�% ;SI�%(;SM�%0;SZ�%8;SE�%@;Sf�%H;Si�%P;Sl�%X;Sp�%`;S{�%h;S��%p;S��%x;S��%�;S��%�;S��%�;S��%�;S��%�;S„%�;SDŽ%�;S҄%�;S݄%�;S�%�;S�%�;S��%�;S��%�;S�%�;S�%�;S�%�;S�%<S�%<S(�%<S�%<S-�% <S��&(<S6�%0<S;�%8<SA�%@<SJ�%H<ST�%P<S^�%X<Sj�%`<Sf�%h<Su�%p<Sy�%x<S��%�<S��%�<SŠ%�<S��%�<Sbz%�<S��%�<S��%�<S��%�<S��%�<S��%�<SÅ%�<Sȅ%�<Sͅ%�<S҅%�<Sօ%�<Sڅ%�<S߅%=S�%=S�%=S�%=S�% =S�%(=S��%0=S�%8=S�%@=S�%H=SQ#$P=S�%X=S$�%`=S+�%h=S1�%p=S9�%x=SB�%�=SH�%�=SM�%�=SX�%�=Sa�%�=Sj�%�=Sq�%�=Sx�%�=S��%�=S��%�=S�$�=S��%�=S��%�=S��%�=S��%�=S��%�=S��%>S��%>SÆ%>Sӆ%>Sφ% >S�%(>S�%0>S�%8>S�%@>S�%H>S�%P>S�%X>S$�%`>S(�%h>S,�%p>S0�%x>S4�%�>S9�%�>SD�%�>SO�%�>SP�%�>S[�%�>S��%�>Sg�%�>Sr�%�>Sv�%�>Sz�%�>S~�%�>S��%�>S��%�>S��%�>S��%�>S��%?SŇ%?S��%?S��%?S��% ?S��%(?S��%0?S��%8?S��%@?SÇ%H?Sˇ%P?Sև%X?Sχ%`?S�%h?S�%p?S�%x?S��%�?S�%�?S�%�?S�%�?S�%�?S�%�?S%�%�?S1�%�?S=�%�?SV�$�?SI�%�?SR�%�?SZ�%�?S_�%�?Sj�%�?Ss�%�?S~�%@S��%@S��%@S��%@S��% @S��%(@S��%0@S��%8@SȈ%@@SЈ%H@Sw%P@Sۈ%X@SVJ'`@S�%h@S�%p@S��&x@S�%�@S�%�@S2$�@S�M'�@S�%�@S��%�@S�%�@S�%�@S�%�@S%�%�@S$�%�@S5�%�@SE�%�@ST�%�@SX�%�@S]�%�@Sa�%ASe�%ASi�%ASm�%AS�I' ASy�%(ASHL'0AS~�%8AS	I%@AS��%HAS��%PAS��%XAS��%`AS��%hAS��%pASY%xAS��%�ASƉ%�ASЉ%�ASن%�ASԉ%�ASW�%�AS�%�AS�%�AS��%�AS�%�AS�%�AS�%�AS �%�AS(�%�AS-�%�AS8�%�ASF�%BSN�%BSZ�%BSe�%BSn�% BSt�%(BS��%0BS��%8BS��%@BS��%HBS��%PBS��%XBS��%`BS�#hBS̊%pBSъ%xBS܊%�BS)�#�BS�%�BS�%�BS��%�BS�%�BS�%�BS�%�BS!�%�BS+�%�BS2�%�BS9�%�BSB�%�BSI�%�BS{%�BS%�%�BSI$ CS[�'(CS`f8CSf@CS f�CSø'�CSm�CS�f�CS�e�CS@l�CS��&�CS�l�CS�eDS0l@DS��&HDS��XDSP��DS��&�DS z�DSz�DS�wESoES��ES�ES ES�(ES�0ESP8ES[�@ES�HES�PES��XESo�`ES��hESZ�pESXxES��ES���ES��ES���ES��ES���ES<��ESb��ES��ES��ESh��ESa��ES��ES���ES��ES��ES�FS�FS�FS?�FST� FSj(FS�0FST�8FSU�@FS �HFS>�PFS��XFSx�`FS�hFS]�pFS��xFS���FS'��FS���FS���FS���FSn��FS���FS���FSJ��FS��FS��FS���FS���FS���FS���FS���FS��GSi�GS��GS
�GS"� GS��(GSU�0GS��8GS�@GS �HGS��PGSZ�XGS��`GS�hGS��pGSQ�xGS���GS���GSR��GS���GS��GS���GS���GS���GS��GSw��GS,��GS���GSi��GSi��GSi��GSi��GSi�HSi�HSi� HS=(HS�=@HS\<$HHS\<$PHS�t$XHS�	'`HS�	'hHS�	'pHS
'�HS	
'�HS�t$�HS�&�HS�	'�HS�	'�HS
'�HS�'�HS�'�HS('�HSx'IS�'IS' ISp'@ISX'PIS�'`IS�'pIS8 '�IS� '�IS0'�IS� '�IS!'�IS�!'�IS"'�ISH"'JSx"' JS�'0JS�"'@JSZ+'PJS�"'`JS #'pJSX#'�JS�#'�JS$'�JS8$'�JS�$'�JS�$'�JS�$'�JS8%'�JSp%'KS�%'KS�%' KS(&'0KS`&'@KS�&'PKS�&'`KS(''pKS`''�KS�''�KSp��KS0��KS��KS��KS�M'�KS�, LS��(LS�0LS@�8LSp�@LS��HLS��PLS�XLS0�`LS`�hLS���LS�i'�LS:�LS�i'�LS�+@MSj'XMS*�MS
j'�MS0:�MS�)NSj'NS :NS�)`NSj'pNS�WxNSp)�NSQ$�NS`��NS`� OSM�'0OS0�8OS@��OS9�'�OS�b �OSpb �OS�^ �OSb �OSH�'�OS@m �OSPb �OS�^ PS�a @PS��$HPS�a PPS�a XPS�a `PS�a �PS�� �PS�� �PS�� �PS�� �PS� �PS� �PS � �PSP� �PS�� �PS�� �PS�� �PS � QS`� QS�� QS�� QS �  QS�!(QS��!0QS#�!8QS��!@QS%�!HQS�!PQSp�!XQS�!`QS)�!hQS��!pQS��!xQS��!�QSV�!�QS[�!�QSa�!�QS��!�QS��!�QSU�!�QS�!�QS�!�QS;�!�QS��!�QS��!�QSI�!�QS��!�QS��!�QS#�!�QS��!RSE�!RS��!RS��!RS��! RS��!(RS�!0RS��!8RS��!@RSY�!HRS��!PRSU�!XRS��!`RS��!hRS��!pRSD�!xRS��!�RS�!�RS��!�RS�!�RS��!�RSq�!�RS��!�RSu�!�RS�!�RS^�!�RS��!�RS��!�RS�!�RS��!�RS�!�RS��!�RS�!SS�!SS��!SSd�!SS��! SS��!(SSW�!0SSi�!8SS��!@SS��!HSS��!PSS
�!XSS��!`SS��!hSS��!pSS~�!xSS��!�SSg�!�SS��!�SS��!�SSI�!�SS<�!�SS��!�SS��!�SS2�!�SS/�!�SSl�!�SS��!�SSg�!�SS�!�SS��!�SS�!�SSG�!TS[�!TS
�!TS�!TS��! TS"�!(TS�!0TS��!8TS@�!@TS��!HTS��!PTS��!XTS��!`TS��!hTS�!pTS��!xTS�!�TS��!�TS\�!�TS��!�TS�!�TS��!�TSs�!�TS��!�TSB�!�TSG�!�TSM�!�TS��!�TS��!�TSA�!�TS��!�TSk�!�TS'�!US��!US��!US5�!US��! USp�!(US�!0US��!8US1�!@US��!HUSt�!PUS��!XUS}�!`US
�!hUS��!pUS��!xUSE�!�US��!�USA�!�US��!�US��!�USl�!�US0�!�US��!�US	�!�US��!�US�!�US��!�US]�!�US��!�USa�!�USM"�USJ�!VS��!VS��!VS�!VS��! VS�!(VS��!0VS�!8VS�!@VS��!HVSP�!PVS��!XVS��!`VSC�!hVSU�!pVS��!xVS��!�VSr�!�VS��!�VS��!�VS��!�VS��!�VSj�!�VS��!�VSS�!�VS��!�VS��!�VS5�!�VS(�!�VS��!�VS��!�VS�!�VS�!WSX�!WS��!WSS�!WS�! WSw�!(WS�!0WS3�!8WSG�!@WS��!HWS��!PWSn�!XWS�!`WS��!hWS��!pWS,�!xWS��!�WS��!�WS��!�WS�� �WS@� �WS� �WS�� �WS� �WS�� �WSp� �WS � �WSp!�WS !�WS�!�WS�!XS� XS�� XS0� XS�  XS�� (XSP� 0XS!8XS�!@XSp!HXS !PXS�!XXS�!`XS�'hXSP�!pXS�� xXS0� �XS��!�XSO�'�XS��  YS5/$(YS �"0YS�"8YS0�"�YS�'�YS��"�YS �"�YS�=#�YS}�'�YS0X#ZS��'ZS@;# ZS��'(ZS0J#8ZS��'@ZS]#PZSƷ'XZSL#hZSڷ'pZS�`#�ZS�'�ZS�S#�ZS�'�ZS0T#�ZS�'�ZS�T#�ZS1�'�ZS@V#�ZSF�'�ZS�V#�ZSa�'[SW#[S{�'[SPW#([S��'0[S�W#@[S��'H[SX#X[S˸'`[S@Z#p[S�'x[S�Z#�[S �'�[S@[#�[S��'�[S\#�[SH�'�[S��$�[S�'�[S�6#�[S�6#@\S��,H\S`�,P\S�,X\S�,`\S�,h\S�,p\S��,x\S�p,�\Sk,�\S�j,�\S�V,�\SPV,�\S�?,�\S�),�\SX),�\S�#,�\Sx#,�\S�,�\S��+�\S�,�\S�+�\S�+�\S��+�\S��+]S��+]S��+]S��+]S��+ ]S��+(]S �+0]S �+8]S@�+@]S�+H]S��+P]S�z+X]S�v+`]S�,h]Sv+p]S�s+x]S�#,�]S�s+�]S�r+�]S�p+�]S p+�]S�o+�]S j+�]S�g+�]S�`+�]S�_+�]S�^+�]S�\+�]SW+�]S�V+�]S�V+�]S�V+�]S@V+^S�Q+^S`�,^S��,^S�V, ^S`M+(^S�@+0^S.+8^S�+@^S`+H^S �*P^S@�*X^S �*`^S��*h^S`�*p^S��*x^S �*�^S��*�^Sx*�^S@v*�^S�p*�^S�o*�^S`n*�^Sn*�^S�m*�^S`m*�^S�k*�^S@k*�^S(k*�^Sk*�^S�j*�^S�i*�^S`i*_S�h*_S@h*_S�g*_S@g* _S�f*(_S`f*0_S@f*8_S�e*@_S�e*H_S�e*P_S e*X_S�d*`_S�c*h_S`c*p_S@c*x_S(c*�_Sc*�_S�b*�_S�b*�_S`b*�_Sb*�_S�a*�_S@a*�_Sa*�_S�`*�_S�`*�_S�`*�_S�_*�_S�_*�_S�_*�_S�_*�_Sp_*`S@_*`S _*`S�^*`S�^* `S�^*(`S�^*0`S@^*8`S(^*@`S^*H`S�]*P`S�]*X`S�]*``S`]*h`SH]*p`S0]*x`S�\*�`S�\*�`S�\*�`S`\*�`SH\*�`S0\*�`S\*�`S�[*�`S�[*�`S�[*�`S�[*�`S�[*�`Sp[*�`SX[*�`SH[*�`S0[*�`S[*aS�Z*aS�Z*aSpZ*aSPZ* aS0Z*(aSZ*0aSZ*8aS�Y*@aS�Y*HaS�Y*PaS�Y*XaSpY*`aSPY*haS8Y*paS Y*xaSY*�aS�X*�aS�X*�aS�X*�aS�X*�aSpX*�aSPX*�aS0X*�aSX*�aS�W*�aS�W*�aS�W*�aS�W*�aS`W*�aS�V*�aS�V*�aSpV*bSPV*bS8V*bS V*bSV* bS�U*(bS�U*0bS�U*8bS�U*@bS�U*HbSpU*PbS`U*XbS@U*`bS U*hbSU*pbS�T*xbS�T*�bS�T*�bS�T*�bSpT*�bS@T*�bST*�bS�S*�bS�S*�bS�S*�bS�S*�bS`S*�bS@S*�bS S*�bS�R*�bS�R*�bS�R*�bS�R*cSxR*cS@R*cS(R*cSR* cSR*(cS�Q*0cS�Q*8cS�Q*@cS�Q*HcS�Q*PcSPQ*XcS�j,`cS Q*hcSQ*pcS`P*xcSP*�cS�O*�cS@L*�cSH*�cS�G*�cSPV,�cS�@*�cS @*�cS�:*�cS�9*�cS9*�cS�8*�cS 8*�cS@7*�cS7*�cS7*�cS�6*dS`6*dS6*dS�5*dS�4* dS`4*(dS 4*0dS�3*8dS�1*@dSP1*HdS 1*PdS 0*XdS�/*`dS�/*hdS+*pdS`(*xdSH(*�dS '*�dS�&*�dS@$*�dS`*�dS@*�dS`�)�dS��)�dS��)�dS@�)�dS��)�dS��)�dS@�)�dS`�)�dS �)�dS��)�dS�w)eS`f)eS U)eS�C)eS�0) eS@)(eS�)0eS@�(8eS@�(@eS�(HeS��(PeS`�(XeS@�(`eS��,heS��(peS�(xeS�/*�eS �(�eS�(�eS�(�eS��(�eS@�(�eS��(�eS��(�eSX),�eS��(�eS��(�eS��(�eSp�(�eS`�(�eSP�(�eS@�(�eS0�(fS �(fS�(fS�(fS�( fS�((fSЉ(0fS��(8fS��(@fS��(HfS��(PfS��(XfSp�(`fS`�(hfSP�(pfS@�(xfS0�(�fS �(�fS�(�fS�(�fS�(�fS�(�fSЈ(�fS��(�fS��(�fS��(�fS��(�fS��(�fSp�(�fS`�(�fSP�(�fS@�(�fS0�(gS �(gS�(gS�(gS�( gS�((gSЇ(0gS��(8gS��(@gS��(HgS��(PgS��(XgSp�(`gS`�(hgSP�(pgS@�(xgS0�(�gS �(�gS�(�gS�(�gS�(�gS�[*�gS�(�gSІ(�gS��(�gS��(�gS��(�gS��(�gS��(�gSp�(�gS`�(�gSP�(�gS@�(hS0�(hS �(hS�(hS�( hS�((hS�(0hSЅ(8hS��(@hS��(HhS��(PhS��(XhS��(`hSp�(hhS`�(phSP�(xhS@�(�hS0�(�hS(^*�hS �(�hS�(�hS�(�hS�(�hS�(�hSЄ(�hS��(�hS��(�hS��(�hS��(�hS��(�hSp�(�hS`�(�hSP�(iS@�(iS0�(iS �(iS�( iS�((iS�(0iS�(8iSЃ(@iS��(HiS��(PiS��(XiS��(`iS��(hiSp�(piS`�(xiSP�(�iS@�(�iSZ*�iS0�(�iS �(�iS�(�iS�(�iS�(�iS�(�iSЂ(�iS��(�iS��(�iS��(�iS��(�iS��(�iSp�(�iS`�(jSP�(jS@�(jS0�(jS �( jS�((jS�(0jS�(8jS�(@jSЁ(HjS��(PjS��(XjS��(`jS��(hjS��(pjSp�(xjS`�(�jSP�(�jS@�(�jS0�(�jS �(�jS�(�jS�(�jS�(�jS�(�jSЀ(�jS��(�jS��(�jS��(�jS��(�jS��(�jSp�(�jS`�(kSP�(kS@�(kS0�(kS �( kS�((kS�(0kS�(8kS�(@kS�`*HkS�^*PkS�(XkS�(`kS�(hkS�(pkS�(xkS�(�kSp(�kS�U*�kS`(�kSP(�kS@(�kS0(�kSpX*�kS (�kS(�kS�Y*�kS�U*�kS(�kS�~(�kS�~(�kS�~(�kS�~(lS�~(lS�~(lS�~(lS�~( lSp~((lS`~(0lSP~(8lS@~(@lS0~(HlS ~(PlS~(XlS~(`lS�}(hlS�}(plS�}(xlS�}(�lS�}(�lS�}(�lS�}(�lS�}(�lSp}(�lS`}(�lSP}(�lS@}(�lS0}(�lS }(�lS}(�lS}(�lS�|(�lS�|(�lS�|(�lS�|(mS�|(mS�|(mS�|(mS�|( mSp|((mS`|(0mSP|(8mS@|(@mS0|(HmS |(PmS|(XmS|(`mS�{(hmS�{(pmS�{(xmS�{(�mS�{(�mS�{(�mS�{(�mS�{(�mSp{(�mS`{(�mSP{(�mS@{(�mS0{(�mS {(�mS{(�mS{(�mS�z(�mS�z(�mS�z(�mS�z(nS�z(nS�z(nS�z(nS�z( nSpz((nS`z(0nSPz(8nS@z(@nS0z(HnS z(PnSz(XnSz(`nS�y(hnS�y(pnS�y(xnS�y(�nS�y(�nS�y(�nS�y(�nS�y(�nSpy(�nS`y(�nSPy(�nS@y(�nS0y(�nS y(�nSy(�nSy(�nS�x(�nS�x(�nS�x(�nS�x(oS�x(oS�x(oS�x(oS�v( oS\<$(oS��'8oS��-HoS`�-�oS\<$�oS��'�oS��-�oS`�-`pS\<$hpS��'xpS��-�pS`�-�pS@}#�pS@}#�pSP}#�pS�}#qS�$qS��-qSit$ qS��-0qS�f'8qS@�-HqSq�'PqS��-`qS�[%hqS@�-xqS�2$�qS �-�qSs�-�qS@�-�qSo�-�qS��-�qS`
rSC�$`rSQ�$�rS@*�rS�('�sS�f#�sS҂' tS�y#(tS�('8tS�z#@tS�z#HtS�{#PtS0|#XtS�{#htSp{#�tSP{#�tS}#S0$��S�S@�S@�SH�S@�S`�S`�Sh�S`�S��S��S��S��S��S��S��S��S`�S`�Sh�S`�Sp�Sp�Sx�Sp�S��S�U��S@U�qS��rS�rSrS�prS�xS�hrSo�|So�rS1�rS]�rS]�rS��rS��rS��sS�sS��sS�sSg�sSgsS��sS�sS��sS� sS#�sS#(sSc�sSc0sS��sS�8sS<�sS<@sS�sSHsS��sS�PsS��sS��tS�XsS��sS�`tS�ptS�xtSU�tS��vS�wS�wSNwS�wS� wS�(wS!0wS$8wST@wSHwS�PwS�XwS`wSeخSehwS�pwS,xwS��wSM�wS��wS��wS!�wS��wS��wSK�wS��wS�wSD�wS��S��wS��wS��wS��wSX�wS�xS�xS1xSX xS(xS�0xS8xS�@xS<HxS�PxSEXxSH`xS�hxS�pxSxxSy�xSC�xS`�xS��xS;�xS��xS3�xS��xS�xS��xS��xS��xS��xS4�xS�xS��S��xSIySyS;yS6yS yS"(yS0yS?8yS@yS3HySPySXyS`yShySvpyS�xySg�ySy�yS-�yS��ySE�yS��ySk�yS4�yS��yS�ySj�yS*�yS?�yS.�yS$�yS��yS�zS�zSzS�zS� zS�(zSn0zS�8zS@zSEHzS�PzSqXzS�`zS�hzS�pzS[xzS.�zS��zSu�zS_�zS)�zS��zSS�zS��zS~�zS��zS��zS2�zS��zS?�zSV�zS��zSV{S�{SY{S�{S� {S�({S�0{S8{S�@{S�H{S|P{S�X{Sr`{SMh{S�p{SMx{Sf�{S��{S��{S��{ST�{S��{SD�{S��{S��{S��{S��{S��{S��{SP�{S;�{S�{S�|S�|S�|S^|S5 |SP(|S�0|S�8|S%@|StH|S~P|S�X|S�`|S_h|S�p|Sx|Sz�|S9�|S��|S��|S	�|S��|Sy�|S;�|SH�|S��|S��|S��|S	�|S#�|Sr�|S�}SF}S-}S�}S� }St(}S�0}Sr8}S�@}S�H}S�P}S�X}S�`}Sh}S+p}S+x}S2�}S��}SD�}S��}S��}S�}S�}Sp�}S��}S]�}S��}S�}S��}S=�}S��}Sw�}S9~S�~S�~Sj~S� ~Sk(~S�0~S�8~S�@~SLH~S7P~SX~S�`~S�h~S�p~S$x~S�~S�~S�~Ss�~S��~S,�~Sp�~S��~S��~Sy�~S��~S��~S#�~S��~S��~SW�~S�SS�SS S{(S/0S�8S�@S�HS�PS!XSk`S<hS
pS�xS�S��S��S�S�S��S��S��S\�S%�S&�S��S��S��S��Sd�S�S^ �S�(�S0�S�8�S@�SMH�S�P�S�X�ST`�S0h�S�p�S�x�S��Sq��S��S��S'��SW��S���S���S��SȀS�ЀS؀S[�S��S�S���S�S�S!�S	�S �S�(�S�0�S�8�S	@�S
H�ShP�SX�S`�S;h�S{p�S�x�SL��So��S
��S��S
��S���ST��S���S���SȁSЁS?؁S�S��S�Sq��Sg�S%�S��S��Sc �SS(�S�0�S8�SE@�SwH�SP�S|X�S�`�Sh�Sp�Sx�S��S��Su��S��SP��S���S���S"��S7��S�ȂS�ЂS؂Sd�S�S&�S,��S��S�S��S��S �S�(�S�0�S�8�S@�S5H�S�P�S�X�S�`�Sih�S�p�S�x�S��S���S��S���SU��S��S��S���ST��S8ȃS�ЃSi؃S��S��S�S���S��S��S�S��S �S�(�S�0�S&8�S@�S H�SP�S�X�S`�S�h�S�p�SBx�SH��S���S���S=��S���S���S���S���S���S�ȄS"ЄS�؄S#�S�S$�Sr��S%�S��S&�S'�S� �S�(�S0�S�8�S@�S�H�S:P�SQX�S`�Sh�S(p�S�x�S���S)��S���S*��S���S/��S+��S7��S���SmȅS,ЅS]؅SN�S-�S.�S/��S0�S��S��S��SG �S�(�S20�S\8�S%@�S�H�S=P�SX�S�`�S2h�S�p�S�x�S���S3��S!��S��S4��S��S���S���S���S�ȆS�ІS�؆S"�S��S5�S^��S6�S��S��S��S �S7(�S�0�Sr8�SA@�S�H�SP�S�X�S8`�S-h�S9p�S�x�S���S4��S���S,��S���Sh��SS��S/��Sz��SwȇS}ЇS�؇SN�S:�Sq�S<��S=�Sy�S>�S9�S �S?(�Sd0�S\8�S'@�S@H�SP�SX�S�`�SBh�SAp�S�x�S\��S���S���S���S���S���S��S3��S_��S�ȈS@ЈS>؈SB�S��S��SC��S��Se�S��S��S� �Sd(�SD0�S�8�SN@�SUH�SxP�S_X�S<`�S]h�Sp�Sex�S���S���SE��SV��S���SF��S���SG��S���SHȉSIЉSZ؉SZ�S��S>�SJ��SK�SL�SM�Sr�S� �SZ(�S�0�SD8�S�@�S4H�S�P�S�X�S#`�S�h�S�p�S�x�Sk��S���SN��S��S��S���SO��S���S��S�ȊS�ЊSP؊SQ�S_�SI�Sn��S1�SI�S{�SR�S� �SS(�S�0�ST8�SL@�SUH�SVP�S"X�SI`�S�h�S5p�S>x�S���S?��ST��Su��S���S��S���S���S]��SJȋS�ЋSW؋S�S��Sm�SX��S��Sg�S��SR�SY �S;(�SZ0�S`8�S@�S[H�S�P�SvX�S`�Sgh�S�p�S(x�S\��S���S]��SS��S^��S���S_��SH��S`��S�ȌS,ЌSa،SL�Sy�S��SR��S��S@�S��S��Sb �S(�Sn0�Sw8�S@�S-H�S�P�ScX�S�`�Sph�Sp�S�x�Sd��S��Sj��SU��S���SR��S���Sb��S���SPȍS�ЍSe؍S2�SO�S��S���Sf�S��S��S��S	 �S�(�S�0�SG8�S�@�S0H�SgP�S^X�S�`�S�h�Shp�SKx�S���S"��Si��S���S��S���S���SJ��S<��SaȎS?ЎSk؎Sl�Sm�S��Sn��Si�S��SW�S��Sm �S�(�S�0�S�8�S�@�S�H�SvP�SnX�S�`�SRh�SQp�Sbx�S���S��S��Sr��S���S��S���SW��S���SoȏSЏS�؏S`�S��S��S%��S�S:�S��Sp�S! �S>(�S0�Sn8�S�@�S0H�SP�S(X�S�`�S�h�Sqp�S4x�SV��S���S��S&��S.��S7��S0��SJ��Sr��SAȐSsАS�ؐS��Sb�S�S���S>�Sx�S �St�S� �S�(�S�0�S8�S&@�S�H�S:P�S[X�S`�Ssh�S�p�S
x�Sw��S���S;��SQ��Sv��Sq��S��S���S���S�ȑSwБSxؑS��SS�S��S��S*�S��Sy�Sz�Sz �S�(�S{0�S8�S�@�SsH�SnP�S�X�S�`�S7h�S p�S|x�S}��S6��S���S���S@��S}��S���S���S���S~ȒS4ВS�ؒS��S&�S�S���S%�S�S��S��S� �S�(�S�0�S�8�Sj@�S�H�SiP�S�X�Sz`�S�h�S�p�S�x�S���S���S���S���S���SY��S���S���S���S�ȓS�ГSAؓS��S��S��S���S��S��S��S��S� �SW(�ST0�SR8�S�@�S�H�SZP�SX�S�`�S�h�S+p�SZx�S|��S?��S���S���S���Sq��S1��S���S7��S�ȔSRДS(ؔS�S��Sz�S���S-�S�S��S��S� �S
(�Sk0�S�8�S�@�S�H�SfP�S�X�S�`�S�h�S�p�S`x�S���S���S���S���S��Sl��S���S���S;��S�ȕS�ЕS�ؕSC�S@�S��Sx��S��St�S��S�ST �S�(�SB0�S(8�S�@�S�H�S�P�SsX�S�`�S
h�Sp�Scx�S���S���S���S���S��Se��Sm��S���S	��S�ȖSЖSOؖSx�S��SP�Sf��S��SV�S.�S��S\ �S�(�S�0�S�8�S�@�S�H�S,P�SPX�Sb`�S�h�S�p�S�x�S���S���S���S���S���S8��S���S���S'��SfȗSdЗS�ؗS��S��S��S���SL�S��Sc�S��S� �SN(�S$0�S�8�S�@�S�H�S�P�S�X�S8`�S\h�Sp�S�x�S'��S��S���S���S���S8��S���S���S���S�ȘS�ИS�ؘSn�SC�S�S���S�S��S��S��S� �SB(�S60�S�8�SC@�StH�S�P�SX�S^`�S�h�Shp�SXx�S���S5��S���S���S���S���S���S*��S���S�șS�ЙSBؙSq�S��S��S���S��Sb�S��S��S� �S�(�S�0�S%8�S�@�S�H�S�P�S�X�S`�S�h�S�p�S�x�S���S���Sp��S���S���SK��S��S���Si��SlȚSКS�ؚS��S��S��S��S��S��S��SA�S� �S�(�S_0�S�8�S�@�SaH�S�P�SX�S�`�S�h�SGp�SXx�Sz��S���SE��S_��S���S���Sl��S���S���S�țS�ЛS؛S��S9�S�S���SC�SV�S��S��S� �SK(�S?0�S�8�S�@�S�H�S�P�S)X�S�`�S�h�S�p�S�x�S���S���S!��S���Sy��S���S��S@��S���SȜS�МS�؜Sb�SJ�S��S��S��S��S�S��S� �S�(�S0�S58�S�@�SKH�S8P�S�X�S�`�S�h�SXp�S�x�S���S���SF��So��S���S���SI��S!��S���S�ȝS�НSQ؝Su�S5�Sr�S���S��SF�S1�S�S� �S�(�S�0�S�8�S�@�StH�SMP�S�X�Sv`�S�h�Srp�S�x�S���S��S.��S���S���S���S��S|��S���SwȞS�ОS�؞S�S��S��S���SH�S��S��S��S� �S(�S�0�S�8�S"@�S<H�S*P�S�X�S�`�S�h�Sp�S�x�S���S���S}��S���S+��S���S���S_��S3��SȟSZПS2؟S �Su�S^�S���SL�S��S�S��S� �S(�S�0�S�8�S�@�SoH�S(P�SMX�S�`�Sh�S�p�S�x�S���S���S���S���S���S���S���Sf��S���S�ȠS�РSlؠS��S��S�S���S��S��S�S��S� �S�(�S�0�S�8�Sf@�S�H�S�P�S�X�SI`�S�h�Sxp�Sx�S���S���S���S���S���S`��Sh��S���S��SgȡS�СS+ءS��S2�S=�S���S��S��Sp�S��S� �S(�S�0�Si8�S�@�SkH�S3P�S�X�Ss`�S�h�S�p�SYx�S���S<��Sj��S���S[��S��S���SY��S~��SȢS�ТSآS��S��S:�Sh��S��Se�S��S��S� �S)(�S)0�SS8�S�@�S�H�S�P�S�X�S}`�S�h�S.p�S�x�S��S{��S���S���S���S��S���S��S-��S$ȣS�УSأS��S'�S��S���Sj�Sz�S��S��S� �S[(�S�0�S�8�S�@�S�H�S�P�S�X�S�`�Sh�Sp�S�x�S[��SO��S��S���Sg��S���S>��S(��S���S�ȤS�ФS�ؤS��S��S��S��S��SN�S��S�S# �S�(�S0�S�8�S�@�SH�SP�S�X�S�`�S�h�S�p�SDx�S~��S��S���S���S���SB��S���S���S���S�ȥS�ХS�إSt�S"�S�SG��S�S��S��S��S� �S(�S60�S�8�S�@�S�H�S�P�SyX�S�`�S�h�SHp�S=x�S	��S��SY��S���SI��Sv��SJ��S���S���S�ȦS�ЦS�ئS��S9�S��Sd��S�S��S�S��S� �S�(�S�0�S8�S@�S�H�S�P�S�X�SA`�Sh�S
p�Sx�Sc��S��S]��Sq��S���S���S���S)��S���SȧS�ЧS�اS�S��S�S���S�S��S��S3�S4 �S�(�S0�Sn8�Sz@�S{H�S�P�S	X�S�`�S
h�Sp�S*x�S���S���S���S���S���S.��Sh��Sj��S��S�ȨS
ШSبS1�S��Sm�S��S��SV�S�Sc�S� �S`(�S�0�S8�S@�S�H�S9P�SFX�S|`�Sh�Stp�S�x�S��S��S���S}��S���S���S*��S���S���S/ȩS�ЩS�ةSc�S�S'�S���S?�S�Sa�S�S9 �S�(�S0�Su8�S@�S8H�S2P�S�X�S
`�S#h�S�p�Sx�S��S��Sf��S���S��S���S���S��SR��SȪS�ЪS�تS%�S��S��S���Sk�S�S��S�S& �S(�S0�S08�S�@�S H�S!P�S�X�S"`�Sh�SPp�S�x�S���S���S#��S���S$��S|��S]��SJ��S ��S\ȫS�ЫS/ثS��S1�S'�S��S)�S�S<�S(�S� �S)(�S�0�SC8�S*@�S�H�SP�SFX�S�`�S�h�Sp�S+x�S,��S��S���S���S���S��S��S���S-��SWȬS.ЬS�جS��S/�SL�S���Sx�S���H��H���PH��t��H����5b�P�%d�P@�%b�Ph����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph�p����%"�Ph�`����%�Ph	�P����%�Ph
�@����%
�Ph�0����%�Ph� ����%��Ph
�����%�Ph�����%�Ph���%�Ph����%ڧPh�����%ҧPh����%ʧPh����%§Ph����%��Ph����%��Ph����%��Ph�p����%��Ph�`����%��Ph�P����%��Ph�@����%��Ph�0����%��Ph� ����%z�Ph�����%r�Ph�����%j�Ph���%b�Ph ����%Z�Ph!�����%R�Ph"����%J�Ph#����%B�Ph$����%:�Ph%����%2�Ph&����%*�Ph'�p����%"�Ph(�`����%�Ph)�P����%�Ph*�@����%
�Ph+�0����%�Ph,� ����%��Ph-�����%�Ph.�����%�Ph/���%�Ph0����%ڦPh1�����%ҦPh2����%ʦPh3����%¦Ph4����%��Ph5����%��Ph6����%��Ph7�p����%��Ph8�`����%��Ph9�P����%��Ph:�@����%��Ph;�0����%��Ph<� ����%z�Ph=�����%r�Ph>�����%j�Ph?���%b�Ph@����%Z�PhA�����%R�PhB����%J�PhC����%B�PhD����%:�PhE����%2�PhF����%*�PhG�p����%"�PhH�`����%�PhI�P����%�PhJ�@����%
�PhK�0����%�PhL� ����%��PhM�����%�PhN�����%�PhO���%�PhP����%ڥPhQ�����%ҥPhR����%ʥPhS����%¥PhT����%��PhU����%��PhV����%��PhW�p����%��PhX�`����%��PhY�P����%��PhZ�@����%��Ph[�0����%��Ph\� ����%z�Ph]�����%r�Ph^�����%j�Ph_���%b�Ph`����%Z�Pha�����%R�Phb����%J�Phc����%B�Phd����%:�Phe����%2�Phf����%*�Phg�p����%"�Phh�`����%�Phi�P����%�Phj�@����%
�Phk�0����%�Phl� ����%��Phm�����%�Phn�����%�Pho���%�Php����%ڤPhq�����%ҤPhr����%ʤPhs����%¤Pht����%��Phu����%��Phv����%��Phw�p����%��Phx�`����%��Phy�P����%��Phz�@����%��Ph{�0����%��Ph|� ����%z�Ph}�����%r�Ph~�����%j�Ph���%b�Ph�����%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ڣPh������%ңPh�����%ʣPh�����%£Ph�����%��Ph�����%��Ph�����%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph�����%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph����%ڢPh����%ҢPh���%ʢPh���%¢Ph���%��Ph���%��Ph���%��Ph��p�%��Ph��`�%��Ph��P�%��Ph��@�%��Ph��0�%��Ph�� �%z�Ph���%r�Ph���%j�Ph����%b�Ph����%Z�Ph����%R�Ph���%J�Ph���%B�Ph���%:�Ph���%2�Ph���%*�Ph��p�%"�Ph��`�%�Ph��P�%�Ph��@�%
�Ph��0�%�Ph�� �%��Ph���%�Ph���%�Ph����%�Ph����%ڡPh����%ҡPh���%ʡPh���%¡Ph���%��Ph���%��Ph���%��Ph��p�%��Ph��`�%��Ph��P�%��Ph��@�%��Ph��0�%��Ph�� �%z�Ph���%r�Ph���%j�Ph����%b�Ph����%Z�Ph����%R�Ph���%J�Ph���%B�Ph���%:�Ph���%2�Ph���%*�Ph��p�%"�Ph��`�%�Ph��P�%�Ph��@�%
�Ph��0�%�Ph�� �%��Ph���%�Ph���%�Ph����%�Ph����%ڠPh����%ҠPh���%ʠPh���% Ph���%��Ph���%��Ph���%��Ph��p�%��Ph��`�%��Ph��P�%��Ph��@�%��Ph��0�%��Ph�� �%z�Ph���%r�Ph���%j�Ph�����%b�Ph����%Z�Ph����%R�Ph���%J�Ph���%B�Ph���%:�Ph���%2�Ph���%*�Ph�p��%"�Ph�`��%�Ph	�P��%�Ph
�@��%
�Ph�0��%�Ph� ��%��Ph
���%�Ph���%�Ph����%�Ph����%ڟPh����%ҟPh���%ʟPh���%ŸPh���%��Ph���%��Ph���%��Ph�p��%��Ph�`��%��Ph�P��%��Ph�@��%��Ph�0��%��Ph� ��%z�Ph���%r�Ph���%j�Ph����%b�Ph ����%Z�Ph!����%R�Ph"���%J�Ph#���%B�Ph$���%:�Ph%���%2�Ph&���%*�Ph'�p��%"�Ph(�`��%�Ph)�P��%�Ph*�@��%
�Ph+�0��%�Ph,� ��%��Ph-���%�Ph.���%�Ph/����%�Ph0����%ڞPh1����%ҞPh2���%ʞPh3���%žPh4���%��Ph5���%��Ph6���%��Ph7�p��%��Ph8�`��%��Ph9�P��%��Ph:�@��%��Ph;�0��%��Ph<� ��%z�Ph=���%r�Ph>���%j�Ph?����%b�Ph@����%Z�PhA����%R�PhB���%J�PhC���%B�PhD���%:�PhE���%2�PhF���%*�PhG�p��%"�PhH�`��%�PhI�P��%�PhJ�@��%
�PhK�0��%�PhL� ��%��PhM���%�PhN���%�PhO����%�PhP����%ڝPhQ����%ҝPhR���%ʝPhS���%PhT���%��PhU���%��PhV���%��PhW�p��%��PhX�`��%��PhY�P��%��PhZ�@��%��Ph[�0��%��Ph\� ��%z�Ph]���%r�Ph^���%j�Ph_����%b�Ph`����%Z�Pha����%R�Phb���%J�Phc���%B�Phd���%:�Phe���%2�Phf���%*�Phg�p��%"�Phh�`��%�Phi�P��%�Phj�@��%
�Phk�0��%�Phl� ��%��Phm���%�Phn���%�Pho����%�Php����%ڜPhq����%ҜPhr���%ʜPhs���%œPht���%��Phu���%��Phv���%��Phw�p��%��Phx�`��%��Phy�P��%��Phz�@��%��Ph{�0��%��Ph|� ��%z�Ph}���%r�Ph~���%j�Ph����%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph��p��%"�Ph��`��%�Ph��P��%�Ph��@��%
�Ph��0��%�Ph�� ��%��Ph����%�Ph����%�Ph�����%�Ph�����%ڛPh�����%қPh����%ʛPh����%›Ph����%��Ph����%��Ph����%��Ph��p��%��Ph��`��%��Ph��P��%��Ph��@��%��Ph��0��%��Ph�� ��%z�Ph����%r�Ph����%j�Ph�����%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph��p��%"�Ph��`��%�Ph��P��%�Ph��@��%
�Ph��0��%�Ph�� ��%��Ph����%�Ph����%�Ph�����%�Ph�����%ښPh�����%ҚPh����%ʚPh����%šPh����%��Ph����%��Ph����%��Ph��p��%��Ph��`��%��Ph��P��%��Ph��@��%��Ph��0��%��Ph�� ��%z�Ph����%r�Ph����%j�Ph�����%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph��p��%"�Ph��`��%�Ph��P��%�Ph��@��%
�Ph��0��%�Ph�� ��%��Ph����%�Ph����%�Ph�����%�Ph�����%ڙPh�����%ҙPh����%ʙPh����%™Ph����%��Ph����%��Ph����%��Ph��p��%��Ph��`��%��Ph��P��%��Ph��@��%��Ph��0��%��Ph�� ��%z�Ph����%r�Ph����%j�Ph�����%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph��p��%"�Ph��`��%�Ph��P��%�Ph��@��%
�Ph��0��%�Ph�� ��%��Ph����%�Ph����%�Ph�����%�Ph�����%ژPh�����%ҘPh����%ʘPh����%˜Ph����%��Ph����%��Ph����%��Ph��p��%��Ph��`��%��Ph��P��%��Ph��@��%��Ph��0��%��Ph�� ��%z�Ph����%r�Ph����%j�Ph������%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph�p���%"�Ph�`���%�Ph	�P���%�Ph
�@���%
�Ph�0���%�Ph� ���%��Ph
����%�Ph����%�Ph�����%�Ph�����%ڗPh�����%җPh����%ʗPh����%—Ph����%��Ph����%��Ph����%��Ph�p���%��Ph�`���%��Ph�P���%��Ph�@���%��Ph�0���%��Ph� ���%z�Ph����%r�Ph����%j�Ph�����%b�Ph �����%Z�Ph!�����%R�Ph"����%J�Ph#����%B�Ph$����%:�Ph%����%2�Ph&����%*�Ph'�p���%"�Ph(�`���%�Ph)�P���%�Ph*�@���%
�Ph+�0���%�Ph,� ���%��Ph-����%�Ph.����%�Ph/�����%�Ph0�����%ږPh1�����%ҖPh2����%ʖPh3����%–Ph4����%��Ph5����%��Ph6����%��Ph7�p���%��Ph8�`���%��Ph9�P���%��Ph:�@���%��Ph;�0���%��Ph<� ���%z�Ph=����%r�Ph>����%j�Ph?�����%b�Ph@�����%Z�PhA�����%R�PhB����%J�PhC����%B�PhD����%:�PhE����%2�PhF����%*�PhG�p���%"�PhH�`���%�PhI�P���%�PhJ�@���%
�PhK�0���%�PhL� ���%��PhM����%�PhN����%�PhO�����%�PhP�����%ڕPhQ�����%ҕPhR����%ʕPhS����%•PhT����%��PhU����%��PhV����%��PhW�p���%��PhX�`���%��PhY�P���%��PhZ�@���%��Ph[�0���%��Ph\� ���%z�Ph]����%r�Ph^����%j�Ph_�����%b�Ph`�����%Z�Pha�����%R�Phb����%J�Phc����%B�Phd����%:�Phe����%2�Phf����%*�Phg�p���%"�Phh�`���%�Phi�P���%�Phj�@���%
�Phk�0���%�Phl� ���%��Phm����%�Phn����%�Pho�����%�Php�����%ڔPhq�����%ҔPhr����%ʔPhs����%”Pht����%��Phu����%��Phv����%��Phw�p���%��Phx�`���%��Phy�P���%��Phz�@���%��Ph{�0���%��Ph|� ���%z�Ph}����%r�Ph~����%j�Ph�����%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ړPh������%ғPh�����%ʓPh�����%“Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ڒPh������%ҒPh�����%ʒPh�����%’Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ڑPh������%ґPh�����%ʑPh�����%‘Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ڐPh������%ҐPh�����%ʐPh�����%Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph�����%Z�Ph�����%R�Ph����%J�Ph����%B�Ph����%:�Ph����%2�Ph����%*�Ph�p���%"�Ph�`���%�Ph	�P���%�Ph
�@���%
�Ph�0���%�Ph� ���%��Ph
����%�Ph����%�Ph�����%�Ph�����%ڏPh�����%ҏPh����%ʏPh����%Ph����%��Ph����%��Ph����%��Ph�p���%��Ph�`���%��Ph�P���%��Ph�@���%��Ph�0���%��Ph� ���%z�Ph����%r�Ph����%j�Ph�����%b�Ph �����%Z�Ph!�����%R�Ph"����%J�Ph#����%B�Ph$����%:�Ph%����%2�Ph&����%*�Ph'�p���%"�Ph(�`���%�Ph)�P���%�Ph*�@���%
�Ph+�0���%�Ph,� ���%��Ph-����%�Ph.����%�Ph/�����%�Ph0�����%ڎPh1�����%ҎPh2����%ʎPh3����%ŽPh4����%��Ph5����%��Ph6����%��Ph7�p���%��Ph8�`���%��Ph9�P���%��Ph:�@���%��Ph;�0���%��Ph<� ���%z�Ph=����%r�Ph>����%j�Ph?�����%b�Ph@�����%Z�PhA�����%R�PhB����%J�PhC����%B�PhD����%:�PhE����%2�PhF����%*�PhG�p���%"�PhH�`���%�PhI�P���%�PhJ�@���%
�PhK�0���%�PhL� ���%��PhM����%�PhN����%�PhO�����%�PhP�����%ڍPhQ�����%ҍPhR����%ʍPhS����%PhT����%��PhU����%��PhV����%��PhW�p���%��PhX�`���%��PhY�P���%��PhZ�@���%��Ph[�0���%��Ph\� ���%z�Ph]����%r�Ph^����%j�Ph_�����%b�Ph`�����%Z�Pha�����%R�Phb����%J�Phc����%B�Phd����%:�Phe����%2�Phf����%*�Phg�p���%"�Phh�`���%�Phi�P���%�Phj�@���%
�Phk�0���%�Phl� ���%��Phm����%�Phn����%�Pho�����%�Php�����%ڌPhq�����%ҌPhr����%ʌPhs����%ŒPht����%��Phu����%��Phv����%��Phw�p���%��Phx�`���%��Phy�P���%��Phz�@���%��Ph{�0���%��Ph|� ���%z�Ph}����%r�Ph~����%j�Ph�����%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ڋPh������%ҋPh�����%ʋPh�����%‹Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ڊPh������%ҊPh�����%ʊPh�����%ŠPh�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph������%b�Ph������%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p���%"�Ph��`���%�Ph��P���%�Ph��@���%
�Ph��0���%�Ph�� ���%��Ph�����%�Ph�����%�Ph������%�Ph������%ډPh������%҉Ph�����%ʉPh�����%‰Ph�����%��Ph�����%��Ph�����%��Ph��p���%��Ph��`���%��Ph��P���%��Ph��@���%��Ph��0���%��Ph�� ���%z�Ph�����%r�Ph�����%j�Ph����%b�Ph�����%Z�Ph������%R�Ph�����%J�Ph�����%B�Ph�����%:�Ph�����%2�Ph�����%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ڈPh������%҈Ph�����%ʈPh�����%ˆPh�����%��Ph�����%��Ph�����%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph����%Z�Ph�п���%R�Ph����%J�Ph鰿���%B�Ph頿���%:�Ph鐿���%2�Ph逿���%*�Ph�p����%"�Ph�`����%�Ph	�P����%�Ph
�@����%
�Ph�0����%�Ph� ����%��Ph
�����%�Ph�����%�Ph���%�Ph����%ڇPh�о���%҇Ph����%ʇPh鰾���%‡Ph頾���%��Ph鐾���%��Ph逾���%��Ph�p����%��Ph�`����%��Ph�P����%��Ph�@����%��Ph�0����%��Ph� ����%z�Ph�����%r�Ph�����%j�Ph���%b�Ph ����%Z�Ph!�н���%R�Ph"����%J�Ph#鰽���%B�Ph$頽���%:�Ph%鐽���%2�Ph&逽���%*�Ph'�p����%"�Ph(�`����%�Ph)�P����%�Ph*�@����%
�Ph+�0����%�Ph,� ����%��Ph-�����%�Ph.�����%�Ph/���%�Ph0����%چPh1�м���%҆Ph2����%ʆPh3鰼���%†Ph4頼���%��Ph5鐼���%��Ph6逼���%��Ph7�p����%��Ph8�`����%��Ph9�P����%��Ph:�@����%��Ph;�0����%��Ph<� ����%z�Ph=�����%r�Ph>�����%j�Ph?���%b�Ph@����%Z�PhA�л���%R�PhB����%J�PhC鰻���%B�PhD頻���%:�PhE鐻���%2�PhF逻���%*�PhG�p����%"�PhH�`����%�PhI�P����%�PhJ�@����%
�PhK�0����%�PhL� ����%��PhM�����%�PhN�����%�PhO���%�PhP����%څPhQ�к���%҅PhR����%ʅPhS鰺���%…PhT頺���%��PhU鐺���%��PhV逺���%��PhW�p����%��PhX�`����%��PhY�P����%��PhZ�@����%��Ph[�0����%��Ph\� ����%z�Ph]�����%r�Ph^�����%j�Ph_���%b�Ph`����%Z�Pha�й���%R�Phb����%J�Phc鰹���%B�Phd頹���%:�Phe鐹���%2�Phf逹���%*�Phg�p����%"�Phh�`����%�Phi�P����%�Phj�@����%
�Phk�0����%�Phl� ����%��Phm�����%�Phn�����%�Pho���%�Php����%ڄPhq�и���%҄Phr����%ʄPhs鰸���%„Pht頸���%��Phu鐸���%��Phv逸���%��Phw�p����%��Phx�`����%��Phy�P����%��Phz�@����%��Ph{�0����%��Ph|� ����%z�Ph}�����%r�Ph~�����%j�Ph���%b�Ph�����%Z�Ph��з���%R�Ph�����%J�Ph�鰷���%B�Ph�頷���%:�Ph�鐷���%2�Ph�逷���%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ڃPh��ж���%҃Ph�����%ʃPh�鰶���%ƒPh�頶���%��Ph�鐶���%��Ph�逶���%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph�����%Z�Ph��е���%R�Ph�����%J�Ph�鰵���%B�Ph�頵���%:�Ph�鐵���%2�Ph�逵���%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ڂPh��д���%҂Ph�����%ʂPh�鰴���%‚Ph�頴���%��Ph�鐴���%��Ph�逴���%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph�����%Z�Ph��г���%R�Ph�����%J�Ph�鰳���%B�Ph�頳���%:�Ph�鐳���%2�Ph�逳���%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ځPh��в���%ҁPh�����%ʁPh�鰲���%Ph�頲���%��Ph�鐲���%��Ph�進���%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph�����%Z�Ph��б���%R�Ph�����%J�Ph�鰱���%B�Ph�頱���%:�Ph�鐱���%2�Ph�週���%*�Ph��p����%"�Ph��`����%�Ph��P����%�Ph��@����%
�Ph��0����%�Ph�� ����%��Ph������%�Ph������%�Ph����%�Ph�����%ڀPh��а���%ҀPh�����%ʀPh�鰰���%€Ph�頰���%��Ph�鐰���%��Ph�逰���%��Ph��p����%��Ph��`����%��Ph��P����%��Ph��@����%��Ph��0����%��Ph�� ����%z�Ph������%r�Ph������%j�Ph����%b�Ph����%Z�Ph�Я���%R�Ph����%J�Ph鰯���%B�Ph頯���%:�Ph鐯���%2�Ph逯���%*�Ph�p����%"�Ph�`����%�Ph	�P����%�Ph
�@����%
�Ph�0����%�Ph� ����%�Ph
�����%�Ph�����%�Ph���%�Ph����%�Ph�Ю���%�Ph����%�Ph鰮���%�Ph頮���%�Ph鐮���%�Ph逮���%�Ph�p����%�Ph�`����%�Ph�P����%�Ph�@����%�Ph�0����%�Ph� ����%zPh�����%rPh�����%jPh���%bPh ����%ZPh!�Э���%RPh"����%JPh#鰭���%BPh$頭���%:Ph%鐭���%2Ph&逭���%*Ph'�p����%"Ph(�`����%Ph)�P����%Ph*�@����%
Ph+�0����%Ph,� ����%�~Ph-�����%�~Ph.�����%�~Ph/���%�~Ph0����%�~Ph1�Ь���%�~Ph2����%�~Ph3鰬���%�~Ph4頬���%�~Ph5鐬���%�~Ph6逬���%�~Ph7�p����%�~Ph8�`����%�~Ph9�P����%�~Ph:�@����%�~Ph;�0����%�~Ph<� ����%z~Ph=�����%r~Ph>�����%j~Ph?���%b~Ph@����%Z~PhA�Ы���%R~PhB����%J~PhC鰫���%B~PhD頫���%:~PhE鐫���%2~PhF逫���%*~PhG�p����%"~PhH�`����%~PhI�P����%~PhJ�@����%
~PhK�0����%~PhL� ����%�}PhM�����%�}PhN�����%�}PhO���%�}PhP����%�}PhQ�Ъ���%�}PhR����%�}PhS鰪���%�}PhT頪���%�}PhU鐪���%�}PhV逪���%�}PhW�p����%�}PhX�`����%�}PhY�P����%�}PhZ�@����%�}Ph[�0����%�}Ph\� ����%z}Ph]�����%r}Ph^�����%j}Ph_���%b}Ph`����%Z}Pha�Щ���%R}Phb����%J}Phc鰩���%B}Phd頩���%:}Phe鐩���%2}Phf逩���%*}Phg�p����%"}Phh�`����%}Phi�P����%}Phj�@����%
}Phk�0����%}Phl� ����%�|Phm�����%�|Phn�����%�|Pho���%�|Php����%�|Phq�Ш���%�|Phr����%�|Phs鰨���%�|Pht頨���%�|Phu鐨���%�|Phv逨���%�|Phw�p����%�|Phx�`����%�|Phy�P����%�|Phz�@����%�|Ph{�0����%�|Ph|� ����%z|Ph}�����%r|Ph~�����%j|Ph���%b|Ph�����%Z|Ph��Ч���%R|Ph�����%J|Ph�鰧���%B|Ph�頧���%:|Ph�鐧���%2|Ph�逧���%*|Ph��p����%"|Ph��`����%|Ph��P����%|Ph��@����%
|Ph��0����%|Ph�� ����%�{Ph������%�{Ph������%�{Ph����%�{Ph�����%�{Ph��Ц���%�{Ph�����%�{Ph�鰦���%�{Ph�頦���%�{Ph�鐦���%�{Ph�逦���%�{Ph��p����%�{Ph��`����%�{Ph��P����%�{Ph��@����%�{Ph��0����%�{Ph�� ����%z{Ph�����H�=>� 1��"��bDH�=+� 1����-FH�=� 1�����GH�=� 1�����IH�=� 1�����
KH�=ߖ 1�����qLH�=̖ 1����NH�=�� 1�E�����TH�=�� 1������H�=^� 1����H�=<� 1�H�T$H�4$�X�H�4$H�T$���1���H�=�� ������H�=�� 1����D��H�=�� 1������H�=~� 1����D��H�=m� 1�����T$<D��H�=X� 1��q��D�‰�H�=E� 1��^����l����AH�=,� 1��E���u�AH�=� 1��/��H�D$H�=L� 1���H�t$H�����D$�8H�=&� 1��f�f���H*��d$��7H��H�=�� 1�����1�H�=Э �t$E���,�H�CP�t$�C�H�=� 1����l�H�=� 1���D�{H�X�1�H�=4� �t$���H�CP�t$��聻���%`H�%pH�%p�%`�%\H�%H�%H�%�%\1�H�t%H�GH��H��� �p\1��0=�]H�%�%\�%�%H�%H�=?� 1�����%h�%lH�%�%lH�%H�%�%\H�%pH�%pH�%H�%H�%pH�%(H�%H�%H�%pH�%(H�%H�t$H�=L� 1�����H�%H�%(H�=
� 1����yH�%(H�%xH�%pH�%pH�%H�%pH�%(H�%(H�%0H�%(H�%H�%H�%H�%H�%pH�% H�% H�%pH�%pH�% �%\H�%0H�%pH�% H�%H�%pH�%H�D$H�%(H�%xH�%�H�%H�%H�%xH�%(H�%pH�%pH�%H�% H�%H�%H�%�%XH�%H�%xH�%pH�%H�%H�%pH�% �%XH�% H�%H�%pH�%H�%H�D$@H�%H�%H�%H�%H�%0H�%H�%pH�%H�%H�% H�% H�% H�%�%\H�%�%\H�%0H�%0H�D$H�%0H�%(H�%H�%H�%H�%H�%H�%H�%H�%H�=X� 1����qf1�H�=ҧ ��H�D$�2�A��H�=A� 1��j��L�A��H�=k� 1��T�A�T$��=�A���A���1�H�=ɧ �,�H�|$uE1����H�|$����L�l$I��M��t�랋%�I�E0H�%���I�U0H��%�I�E0H�%�%�I�E0H�%�%�I�E0H�%�%�I�E0H�%1�H�=�� �i��H�D$(�	1�H�=� �Q��H�|$(uH�D$01�E����D���H�|$(D�{��3���H�T$(H��H��u!H�=ߦ 1�H�t$���H�t$���\$H�=�� 1�H�T$H�t$�����\$H�t$H�T$��u����p����k���H�=.� 1��=���X����S���H�=l� 1������*H�=�� 1�A�������*H�=�� 1��l��H�l$�w)1�H�=� �T��H�|$(tcH�|$(�R���L�t$(I��M��t5D��A��H�=7� 1�� ��D���j/1�H�=W� �
��H�D$(�/D�{�H�=ť 1������0/D��E1����>/H�=�� 1�������1�s�����H�=�� 1��C����H�=�� 1��3��H��H�=y� 1�1�����VSH�=�� 1��}���)tH�=�� 1��j����tH�=s� 1��W���puH�=`� 1��D���vH�=M� 1�L�%��*���vH�=3� 1�H�-%�����ӇH�=� 1�������SH��H���H�t$8H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��ͱ��H�8t_H��$�H�T$H��1�H�D$H�D$0�D$�D$0H�D$ 聐L�D$�H�]QH�5]QH�="LQH�D$����H�D$(dH3%(t���H���[�H�=ã 1�������H�=� 1�A��������H�=� 1�����H�\$�«H�=�� 1�����P�H�=�� 1�A������:�H�=Ѣ 1����H�l$郭H�=	� 1�D���g��H�,$�H�='� 1��P����H�=T� 1��=����H�=y� 1��*��H�,$麯H�=� 1�����ϳH�=� 1�A�����鹳H�=9� 1�����L�d$����UH��SH���H�t$8H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H�j=P�D$H�H��t
H�|$�h��t$H��輠H��H��tFH��$H�T$H��H��H�D$H�D$0H�D$ �D$�D$0轟1��6�H���^��Y����T���H��1�H�=�� �c��L�:PL��H��1�H��� ��3���1����H��������H�=�� 1��!��H�=�� 1�����%��%�1�H�=�� �c��H�$��1�H�=� �L��H�<$t?H���M���H�<$I��tD��H�=9� 1��"����D�u�H�=� 1�������H�D$D����H��=P�"�H�=�� H�������?���H��tH��H�=�� 1��I��H�N� ��H�5E� H�=�� 1��+��H�50� H��t�H�sH� t�H�s��H�� H��t4H��H��H�=�� 1�����H�� H��t�H�BH� t�H�B��H�=;A$�Ë���%�H�=�� 1����D��H�=s� 1����H�%���UH��SH��H�=�� P1�����ZH��H��[]������S1�H��H�=�� ���H��[���H��L��H�={!1��,��H��H��H�=�!1�����^]Q�x��%���H�=�!1�����H��H�=�!1�����H�
� D��H��1�H�=�!����D��H��H�=e!1����H�=G!1����H�=9!1����H�=k!1����H�=U!1��v���H�=�!1��h�����USPH��9PH�H�C8H����H�@H����E t�Et1ҾH���T��e��9
H��9PH�H��pH��t
����t H�;PH�=�!H�0�%����K����������H�{�H�CxLJ�H���]���H�%�辫��H�=�	!1����H�=�!1������uH��H�=�	!1��l�����uH��H�=�	!1��W�����uH��H�=�	!1��A���H;�sH�
q	!��H��H�=�!1�����H;� wݹ(H��1�H��H��u�L��I9�v�H���I�H��H�4�H�NH9�r(H�Hk�(H�H9�s�FH�
�!H��!HE��I���H�P��Ī��迪����PXP質��L��H�=q!1�肿��L��H�=8!1��q���L���i���脪�������z����u���H�=�!1������	鶈	H�=�!1�����m�	�E�����H�=!1�����H�=N!1�����H�=x!1����H��H�=�!1����H�=�!1��ھ��H�ھH�=k!1��ľ���ߩ���ک��H�=�!1�謾��H�=!1�螾��蹩��贩��诩��誩�����H�=!��A�A1��r���荩�����H�=�!��A�A1��U���1�H�=T� ���H�<$u
H�D$D����	H��諟��H�<$I��uD�u�H�=V� 1�������	D��H�=�� 1��i����	1�H�=�� �V��H�$�q�	��1�H�=�!�ͽ��H�H��H�=�!1��΃�贽���Ϩ���ʨ���Ũ�����H�=� 1�����i:
H��H�=[#!1������SF
H��H�=�.!1������ˍ
��H�=�0!1��Q���H�=�� 1������
H�=�� 1������
H�=,� 1��T$����T$L�d$����
H�=�� 1��k��L�d$��
1�H�=�� L�$�O��H�D$L�$��
1�H�=Й L�$�/��H�|$L�$uD������
H�|$L�$����H�L$L�$I��H��uA��H�=�� 1�L�$����L�$�r�
D��A��H�=ܙ 1�L�D$H�$���H�$D��L�D$I���H�
H�=�&!1�������
H�=�&!1�������
A�H�]� 1�H��H�=�1!�d��E����L1���LH�X� I��4u���1�H�=�� �7��H�D$(�EUH�sH�=�1!1�����T1�H�=�� ���H�|$(u$E����TI�ED��H�D$A���gU�SH�|$(���L�t$(H��M��t'D��A��1�H�=Ř H�T$���D��H�T$��TD�{�H�=c� 1�H�T$���H�T$��T1�H�=� �T$�k��L�d$�T$I��uH�L$ H�ȅ���\���;_H�|$�T$�G���L�|$�K��T$I��M��uH�=� 1��L$����L$�1\��1�H�=
� �L$����M��L$tDL�d$H�D$ ���)\��u?����]�\1�H�=� �T$���H�D$�T$�[H�D$A��L�|$�*_H�=M0!1��~���q1�H�=1!�k��H��aQH�
u0PH�k H��UP�,l1�H�=�� �?��H�D$(释1�H�=Ė �'��H�|$(uD��E1���鬊H�|$(����L�|$(H��M��u!D�m�H�=�� 1�H�L$����H�L$�X�D��A��H�=ۖ 1�H�L$���D��H�L$�<�1�H�=A� ���H�|$H��E1��|$H�|$P��D�|$��E1����ʌ1�H�=�� �T$�]��H�D$H�T$�P��T$H�=� 1�L�D$�T$�4��L�D$�`��T$H�=/� 1��T$H�t$L�D$�
��L�D$H�t$�T$�9�A�W�H�|$H�T$���H�t$H�T$I��H��t�D�|$��'�1�H�=� ���H�D$0�A���H�=�� 1��T$H�L$����T$H�L$�r��R�1�H�=� �T$�t��H�|$0�T$uKH�D$PE1��H���:��H�=� 1��T$H�L$�9��H�L$�T$����s�������H�|$0�T$����L�d$0�T$H��M��t��K���1�H�=8� ����H�D$@餞1�H�=p� ����H�|$@uD��E1�A���̞H�|$@�˜��L�l$@�S�H��M��u)H�=k� 1��T$H�L$���H�L$�T$�q��\$H�=�� 1��T$H�L$�b���T$H�L$A�ЋT$�J�1�H�=�� �?��H�D$0阡1�H�=ē �'��H�|$0uD��E1�A���H�|$0����L�l$0�S�H��M��u)H�=�� 1��T$H�L$����H�L$�T$�e��\$H�=֓ 1��T$H�L$����T$H�L$A�ЋT$�>�1�H�=� ���H�D$ �K�1�H�=� �{��H�|$ uE1�A���q�H�|$ D�k��i���L�t$ H��M��uH�=� 1�H�$�:��H�$�!��$H�=7� 1�H�L$���E��H�L$D�,$����H�=�,!1�芵��H�=Ò 1�A��������A��H�=� 1������Ͷ1�H�=\� ���H�|$uE���׶鿶�0�H�=� 1����H�l$�R�I�6H�=R8!1�����H�%HH�%8H�=[0!1����H�=*0!1��۴��M9�1�H�=� 1��ƴ������I�6H�=�7!1�谴��H�3H�=�7!1�蟴����1�H�=�4!菴����1�H�=4� ����H�=`6!1��q���H��H�=W9!1��`���H�3H�=�7!1��O���I�7H�=�7!1��>���H�%H�=� 1����H�l$��IH�=U� 1��~�����BJH�=� 1��h��D��A���)JH�=&� 1��O������NH�=P� 1��9��D��A���NH�=o� 1�� ��L�t$��MH��H�=CN!1�����l�������%���U1�SH��H�=mO!Q����H��+P�H��H�(H���q��~H�}����H���؎����yH�5�M!H������Z[H�]H�Ѓ��H�="W$1����1�H�=�� �L$�U��H�|$ �L$������������H�D$H�=�� 1��L$H�T$���H�t$H�T$�L$�b�H�D$H�=� 1�H�T$�L$����H�t$H�T$D�D$�:�1�H�=� �L$����H�D$ �L$����˃����1�H�=<� �$���H�\$�$H��u)H�D$ E����H����QH�|$ E1�����QH�|$�$�h���L�l$A�L$��$H��M��uH�=� 1��$�2���$�[QA��1�H�=.� �$���H�ۋ$tBH�\$E���SQH�D$ ��u;�%RA���RH�=+� 1��$����H�\$�$��PH�D$����Q1�H�=F� �T$���H�l$�T$H��uH�D$ H�����Z���nZH�|$�T$聒��L�|$�K��T$H��M��uH�=&� 1��L$�K���L$�Y��1�H�=G� �L$�.��H��L$t;H�l$����YH�D$ ��u5�YH�=K� 1��T$���H�l$�T$�YH�D$����Y1�H�=d� ����H�|$tZH�|$�ő��H�|$I��t.D��H�=�� 1�����M�1�H�=ӌ ���H�D$��D�k�H�=A� 1��j����H�D$D���/�A��H�=^� 1�H�T$D���?��H�T$���1�H�=Č �'��H�|$u0H�D$ 1�E�����D���u�1�H�=F� ���H�D$�Q�H�|$D�s���L�l$H��M���{���H�=�� 1�H�T$���H�T$�B�H�=f"1��5���H�=�"1��'���H�%H�=�r#1�����H�=s#1��l���H�=8r#1��Y����	PH�=Os#1��Ю������H�%H�%H�%H�%H�=�t#1�蕮��H�=�t#1�臮��H�=s 1������kdH�=z#1��������1�H�=� ����L���k��fH~�fH~�H��<H��<��H9�u臁��H��H���\H���P�����uH��H��H����H��u�H����H�=&� 1��O���L:H�=S� 1�A���9���6:H�=u� 1��&��H�\$�91�H�=�� ���H�|$tcH�|$����L�d$I��M��t5D��A��H�=� 1�����D���5V1�H�=� ����H�D$��UD�s�H�=� 1�����UD��E1���	V��H�=*�#1������PH�=G�#1��p���Z���H�=V�#1��W����PH�=s�#1��D��1�Z���H��1�H�=T�#�+��H�%H�%�—��轗��踗��賗��H��H�=	�#1���H��躭��H����H�=�#1�������H��H�=��#1�����j�H�=z�#1����H��D��H�=��#1����H���#1�[�H�=e�#�|���H�=�#1�H�L$�i���H�L$�I���d��%���PH�=D�#1��=���H��$PH���XZ����H�H��Å�xSH�|$�0����X�؃�����	Ј�XH�D$dH3%(u7H��[]�H�P&PH�5��#H�81�����H�8&PH�5��#H�81�����*�����PH�=��#1�����Z���PH�=��#1��}���H��#PH���XZ�������S1���H�=��#�����J���H��#PH�@��X��	�@��X[���US��H�=��#H��dH�%(H�D$1�H�Q#PH�(1������~H�c%PH�5��#H�81�������yH�G%PH�5��#H�81����H�|$��������X����	È�XH�D$dH3%(t����H��[]���U1���H�=y�#SR�j���H��"PH���X����9�|]�+���H�H�-q$PH��t+��XH��辖��H�}H�5S�#��H��1����������XH�}H�5X�#1���������X[]���H�=\�#1��ݾ����S1�H�=w�#�ʾ��襋��H��#PH��tH���A���H�;H�5��#H��1����H�;H�5��#1������H�=a�#1��z���H�c�#H�<$H��H��H�t$H��H�D$1�H�T$ �H�D$
�H�D$8	H��H��H��H�D$(H��#H�D$0����聅��H�=J�#1�蓨��H�=��#1�腨��H�=��#1��w���H�5 �#H�=��#1��ҽ����=1�H�=\� �T$軽��L�d$@�T$I��u&H�D$H����H�D$81�H���t���H�|$@�T$舉��L�|$@�M��T$I��M��uH�=-� 1��L$�R����L$�ɛ��1�H�=N� �L$�5���M��L$t;L�d$@�����H�D$H��u=��H�=R� 1��T$���L�d$@�T$�9�H�D$@A�빉�騜飜H�=�#1��Ƽ����H�=R� 1�購��H�\$HH����H�|$H誈��L�t$H�M�H��M��uH�=S� 1��$�y����$���D��1�H�=u� �$�]���H�ۋ$t3H�\$H�����H�D$P��uF�
�H�={� 1��,���H�\$H�L�H�D$H���H�D$PH��E�����D��������H��H��H�=�p 1��p���H��H��H�=��#1��̻��L�����H��H���9�����oH�=�#1��6���H�=q�#1��(���H�SH� tH�SH��H�=�#1�����H�wH� tH�wH�=9$1����H�=
$1��٥����PH�=%
$1��6���H�PH���XZ����H�H���H�=
$1�藥��H�=�$1�艥��H�=�$1��{���H��H�=�#1��j���H�=$1��\����%��%��%�H�=R$1��3���H�T$ H�D$0H�=z$H���1�����H�=�$1�����H��(H�=�$1����H�����H�=A$1��ڤ��H�=�$1��̤��H�="$1�辤����AT1�USH��H�=�$����H��荟��5wH�8H��轲H���O�.I��H�PH�8���H��H�@ H�߀`-�H�@ L� �A��M-�P-����	ʈP-H�M��H�HH�M H�H uH���S���tH���W�H��[]A\�1�H�=� �q���H�|$8t6H�|$8D�{��k���L�t$8H��M��u<H�=� 1�H�$�<���H�$�H�L$@1�E���bD��1�A����$H�=� 1�H�L$����$H�L$��1�H�=1� ���H�D$8�|1�H�=� �̸��H�$�U	1�H�=R� 赸��H�<$t?H��趄��H�<$I��tD��H�=�� 1�苸���C	D�s�H�=K� 1��t����)	H�D$D���<	H�=k&$1����1�H�=� �F���H�D$P�}1�H�=� �.���H�|$PuH�D$XD��E1�A��I���;}H�|$P����L�t$P�u�H��M��u%H�=� 1��t$H�L$�޷��H�L$�t$��|D��H�=� 1��t$H�L$趷���t$H�L$A����|H�=<&$1��%���H�=.&$1�����1�H�= �t$(�u���H�|$H�t$(t}H�|$H�t$(�k���H�L$H�t$(I��H��tp���H�=N 1��t$<H�L$0L�D$(�)����t$<L�D$(H�L$0��醊1�H�=S~ �t$0�T$(���H�D$H�T$(�t$0�����i���~-鳌�s�H�=�~ 1��t$0L�D$(���L�D$(�t$0��靉H�=�&$1��/���H�=h~ 1�葶����H�=�~ 1��~�����H�=
~ 1�D���h���H�l$�6�H�=�} 1��P���H�l$��H�=($1��Ƞ��H�=1($1�躠��H�={($1�謠��H��H�=-$1������L��H�=t/$1�����AH��1�H�=�4$�o���H��1�H�=[4$�^���H�=_5$1��P���H�%xH�%�1�H�=�| 螵��H�D$��1�H�=#} 膵��H�|$tBH�|$脁��H�|$I��tD��H�=o} 1��X����ׯD�k�H�=} 1��A���齯H�D$D���ѯH�=5$1�豟��H�="5$1�裟��1�H�=�5$�����1��D�1�H�=G} ���H��t}H�CH� uH�C H�x�[���H� ��H��H�H�zH� tH�z[H���]H�`7$1�A\韭��[H�=�| ]1�A\�}���[H��H�=�6$]1�A\�h���H�CH� uH�C H�x�ލ��H� t,H��H�H�zH� tH�z[��]1�H�7$A\�)���H�[ ��H�[ �P���H�=�B$1�茞��H�=7$1��~���1�H�=u8$D��H����ٳ��H��0���D��H���H�x4��I�FI� uI�F H�xD��H����/���I� D��H����I��I�H�zH� tH�z��L��1�D��H���H�&6$�i���D��H����x�1�H�=�8$D��H����8���H��0���D��H���H�x4tsI�FI� uI�F H�xD��H���蒌��I� D��H�����I��I�H�zH� tH�z��L��1�D��H���H��5$�̫��D��H������I�FI� uI�F H�xD��H�������I� D��H���thI��I�H�zH� tH�z��H�V5$1�D��H����`���D��H����v�L��H�="7$1�D��H����,���D��H����R�M�v �-���M�v �L��H�=76$1�D��H������D��H�����I�FI� uI�F H�xD��H����\���I� D��H���t;I��I�H�zH� tH�z��H��4$1�D��H���蝪��D��H�����M�v ��M�v ���H�$H�=�y 1��`���M��H�$��H�BH� uH�B H�xH�$�Ŋ��H�$H� ��H��H�H�zH� tH�zH��3$��L��1��	����SH�E�1�H�=<y �߰���SH�E��1�L��H�=73$�°���SH�E��H�BH� uH�B H�xH�$�(���H�$H� t4H��H�H�zH� tH�zH�d3$��1��s����SH�E�nH�R ��H�R �(���H�=6$1��ʚ���%�H�=?$1�賚��H�=�>$1�襚��H�=�>$1�藚���%��%��%��%��%��%��%�I��������#H��L��1�L�D$H�=�8$蝯��L�D$I���Y[I� ��I��M� I�xI���7[@��tv��I�|$I�$ tI�|$��H�&?$1��M����ZI�$I�4$�у���t��t�.��ME��W���������#u��C���M�@ �s����[����H�jPH�5�>$H�81��ѳ��H�=z8$1��S���H�=�8$1��E���H�=�7$1�H�t$袮��H�t$�wH�=�7$1�芮���pH�=%=$1�����H�=�8$1��������%�H�=�<$1��ژ����H�=�8$1��ɘ��H�=�#1�軘��H�%H�=�<$1�裘���%�H�=[v 1�H�T$����}H�T$�
A��H�=�9$1��h�����UH��SH��H�=�9$P1�轭��YH��H��1�[]�=���H�=�9$1��/���H�=�9$1��!���H�%�H�%��%�H�=�M$1����H�=�M$1����H�=�M$1��ڗ��H�=�M$1��̗��H�=�M$1�辗��L��H�=�Y*1�譗��H�=�Y*1�蟗��f.�DH�=�BPH��BPH9�tH��PH��t	�����H�=�BPH�5�BPH)�H��H��H��?H�H�tH�m
PH��t��fD�����=�BPu+UH�=r
PH��tH�=��O詏���d�����BP]������w������UH��AUATSH��H��dH�%(H�E�1�����rH��1�E1���H��u�H��H�τ�tH�O<.t�</�H��HD�IDЄ�u�H��H��HD�H)�H�BH��H%�H)�H���H��H9�tH��H��$�H9�u�����?Y I��L�b�$�2Y �D$H��uhA�C�D%�H���o���I��H���H�5�X H��蔳��H��t?H;x
Pt6L��L�-�X �g���H��L��H�=�X 1�裓��H�|$覽���@L��L���E���H��H��t_1���L��H�]�dH3%(��H�e�[A\A]]��H)�H�L�����f��WX A�L�m҉E��GX �E������i���H��H��H��1�H���H��H��H��H�JH��H���H)�H���H��H9�t$H��H��$���諦������I������%�t	H)�H�L�H��趼��L��I���K�������fD��H�����r��H��H���Br��f���H�����r��H��H���Ҭ��f���H���s~��H��H���W������H�=eX �����H��� tH����H��H����f�H�GH��H���Ð��H���������uH�1�H��f.���UH��SH��H� ?PdH�%(H�D$1�f�;u&� H���k��H�L$dH3%(u$H��[]�f�H�|$���H�[� H��HD��0�����AVAUATUS�����H��I���ތ����������H�����I�I�����I�n�� ��H��H����H��~rH�����L�`�H��t_1��,f.�H��H����H9�}QH��H�<�H������I��� u�I;^}3I�F ��H�EH���q����tgH�H���h���[�]A\A]A^ÐL��� �d���I�N�e���M���r����[���H���c���H���L��[L�]H��A\A]A^����H���\���뒺1��Ώ��ff.����G������H��� tH����H��H�D?�@H�@H�H�y��X�������f.�H����AWH�GAVAUATUSH��H� ��I��H�t$H�0H��H��H��I���|���H�CI��H�$A��E1�f�H�$H� uH�C N�<�M��~E��t
H�t$H���d���L��H��I���U���M9�u�H��[]A\A]A^A_ÐH�G �o�����ff.�@��AVI��AUL�oATI��US1�H��?H��H����H9�}qL��H�,�@��uH�����tH�E������tDH���� u�I;\$}8I�D$ �Ð�� tCH�M�t�H�yL���|��H��uI�$�f��[H��]A\A]A^��H�}~�H�M �ff.���AUI��ATL�gUH��S1�H���(@H����H9�}DL��H�<�H���{��H��u H��I�UH��% u�I;]}
I�E ��f��H��[]A\A]�H��1�[]A\A]���H9�tH���uH�����tsH��у���ufH�I��A�� tjH����I��A�� tOH����H9�u8H�GM��uH�G H�VM��tEH9�tH��H��H��H�=�黍����f�1��DH�V�f�H�O�f.�H�V �f.���AVAUI��ATUH��SH��L�"dH�%(H�D$1�A�� �*I��A������M�������������������1�E1�I���P�H����I9���I�EJ��H�uM����H�=�>PH�$�gl��H�����t
H��uz�I��I�E�� u�M;u}dI�E �@蓇������M��~FI�M1�1�I�u�� �f��H��L9�t$H��H��uI�U H�����t�H��t��1�H�L$dH3%(H����H��[]A\A]A^�f.�L�b�����1�E1�I�m�3DH����I9�}�H��J�<��x���H�����t
H��u��I��I�E�� u�M;e�q���I�E �Ⱥ1�譊���Ȟ�����AUATUH��SH��H��L�"dH�%(H�D$1�A�� ��I��A�����[M���������5����������E1�I���JDH����I9�}TH�CJ��H�uM����H�=D<PH�$�j��H�������I��H��� u�L;k}
H�C ���H�L$dH3%(��H��[]A\A]�@L�b�;����胅����uGM��~�H�1�H�s�� �f�H��L9�t�H��H��uH�S H�����t�1��D1�L�c�(H����H9��`���L��H�<�贶��H�����u�H��H��� u�H;k�6���H�C �Ӻ1�������ff.�@��AUATUH��SH��H��L�"dH�%(H�D$1�A�� ��I��A�����[M���������u���������E1�I���JDH����I9�}TH�CJ��H�uM����H�=$:PH�$��h��H�������I��H��� u�L;k}
H�C ���H�L$dH3%(��H��[]A\A]�@L�b�;�����Ã����uGM��~�H�1�H�s�� �f�H��L9�t�H��H��uH�S H�����u�1��D1�L�c�(H����H9��`���L��H�<���H�����t�H��H��� u�H;k�6���H�C �Ӻ1��4����O���ff.�@��AUATUH��SH��H��L�"dH�%(H�D$1�A�� ��I��A�����kM��������赂�����f���E1�I���JDH����I9�}TH�CJ��H�uM����H�=8PH�$�g��H�������I��H��� u�L;k}
H�C ��1�H�L$dH3%(��H��[]A\A]��L�b�;����������uOM��~�H�1�H�s�� �f�H��L9�t�H��H��uH�S H�����t��y����1�L�c�0�H����H9��P���L��H�<��$���H�����u�H��H��� u�H;k�&���H�C �Ӻ1��d�������ff.�@��AVAUATUS���0I�օ�tdH�.���������1�E1�M�f�4f�H����I9���L��J�<�H����r��H��H��I��I��� u�M;n}_I�F �Ԑ軀��1�E1�I�n��u.�|@H����I9�}4H��J�<��0���H��H��H��I��I��� u�M;f}
I�F ��@H�@H�xH�D[]A\A]A^�H��[]A\A]A^�(����I��� tH����H��[H�D?]A\A]A^�H�@I�~H�x��ݺ1����ff.�@��AVI��AUATUSH��� ��H������������H�.������|���M�f��H��L���I9�IL�k�H��t@L��I� uI�F J�<�H���lq��H����I��� u�I�VL��I9�~���[]A\A]A^�f.�H�Z���^����������H�k�H��t�I�M�f�;DL��H�<�脰��H�����ulI��� t,H��H����H9�HN�H�k�H��t��� u�I�F ���I�^��f�H��������?H�x[K�D-]A\A]A^�L��[]A\A]A^�c���H��������?H�x8H�D-�$����諓��H��賢��[L��]E1�A\1�A]1�H��A^�i���H��뤺1��(������AUI��ATUSH���������'H�.��}�����б��1�M�e�*fDH����H9�}4L��H�<�H����o��H��u0H��I�E�� u�I;]}
I�E ���H���[]A\A]�H�@H�xiH��H�D[]A\A]Ð�[}����tg1�I�m�+�H����H9�}�H��H�<��Ю��H�����u�H��I�E�� u�I;]}�I�E ���H��H��[]A\A]���fD�K���H���S���H��L��E1�[1�]1�A\H��A]�����1��ˀ��ff.���USH��H��� ��H����H��H��t+H��� tcH����tH�>@����H��H��~kH�DH��t(H�l�H)�H�DH��H��H��H���M�H9�u�H��[]ÐH�~~�H�v H�>@��u��2f.�H�_�d����H��H�H����[]H����c���H���k���ff.�H��H)�H9�HN��H��xY�tRH�D6H��tGATUH��SH)�H�\6�H�L�c�H��H��H����L��H)�H��H��H���H9�u�[]A\Ð�ff.�@��SH��� t[H����H��H� t H��H�>@��t H�H��t%H�t�[�@���H�v H�>@��u��~���H��H��u۸[��H�_�f���SH��� tSH����H��H� t H��H�>@��t H��H�[�����H�v H�>@��u�����H��[H�����f�H�_�f.���SH��� tSH����H��H� tMH��H�>@��tMH�H��xRH��~H��H��[�Jd��f.�H��[H���H���H�_H� u�H�v H�>@��u��q���H��H��y��[�f���US�H��H��tH��� ��H�����tH��H��� ��H����H��txH����H������H�H��~ZH��H���H��I��������H�H��H��H��H��1�H�@H�H�I9�H�rdH��H��H�D[]�@H���[]�@H�~�U���H�v H��I���f�H�W�J����H���X���H���Q���H��H��[]�V��f���I H��[]�=R��ff.�f�AUI��ATL�fUH��S1�H���*�H����H9�}4L��H�4�H��H��H���%
I�E�� u�I;]}I�E ��f�H��H��[]A\A]�f�AUI��ATL�gUH��S1�H���+�H����H9�}TL��H��H�4��V����u,H��I�UH��% u�I;]}I�E H��H�4��YV����tԸH��[]A\A]�DH��1�[]A\A]���AWAVAUI��ATUH��S��H��dH�%(H�D$1�����H�$���!����M�e�����7w��A���A��A����L��H�H�UH�с� H����H���H��H����H9��1E�������RH�|$dH3<%(L���6H��[]A\A]A^A_ÐM�u�����v����A�Ń���D �A�������A���[���L�������T����H��tkH��H����H��T���E���g���L���ߧ��I���`�����+�����~}H�$M�e��uJH������A�H�����[���fDHE����fDH9E�����H�m �$�M�u��uH��u�����DH��L�t�����H�<$tH��苚�������y��赍��H��t:H����I��L���H�5WD H��H��IH�H)�H��H���OH�81����L�E����AUATUH��SH��H�?�� ��H�����č��H�5���1�L�mH�����I���;f.�H����H9�}TL��H�<��8����t5H�H��L��H�����I��H�E�� u�H;]} H�E H�<������u�H���'���H����f�L���x���H��[H�D]A\A]��H�}�N������H9���@��u	H�����u4UH��SH��aH��H���{�������H��1�[]�f.�H��ƒ���u�H�I��A�� utH�WH���� �yH����H9�ueH�GM��uH�G H�VH��uH�V H9�t.H��H��H��H�=�*�x���H��H��H��[]�e�����f�H�������@1��DH�F���ff.�@UH��H��SH��H���k�H��tH�H��[]��H�#����H��H��[]����fDATUSH��dH�%(H�D$1�H����H��������H��H9���H�-�$PI��f�}��� L���gQ��H��H��&H�L$dH3%(H����H��[]A\�fDH��H������@��u'H�����tH�U�у���tH��_��H�UDH�E H�]H�E�fDH�|$���H�c� H��HD�V���H�+�OH�5�< H�81�袒��H��OH�5A H�81�芒������DPXH�5�< H��H���OH�81��b���f���ATUSH�� dH�%(H�D$1�H�H�xuPH�/L�&�H��H��H�,$L�d$��n��L��H��H���m[��H�H�zuH�L$dH3%(uH�� []A\��e����`���SH��臆��H��菕��H��L���[1�1�H���H������ATUH��S��p����tL1�L�e� @H����H9�},L��H�<�H���d���H�E�� u�H;]}
H�E ���H��[]A\�[H��]A\�d���@��ATI��US�p������I�$�� uI�D$H�X�I�l$H��u&�Xf.�H��H����H9�HO�H�X�H��t4�� H��uI�D$ H�<����I�$�� u�I�D$H9�HO�H�X�H��u�L��[]A\�f.�H��H�����w����[L��]A\���@��ATUH��S�o����tdI�@1��(fDH����H9�}(H��L�x,H�|�*���H��H�E�� u�H�EH9�|�H��[]A\�@H���P���H����[H��]A\����ff.����H��� t$H����H��t!H��1�H�=,�^���H�GH��u߾H�=�9 �&I��fD������AVAUATUH���SL�m1�詘���H�5�9 H����x��I���CH����H9�}dL��H�<��{��I��H��~@�H�5�� L���x��L��L��H���
���H�E�� u�H;]}H�E ��H��L��赊����L��H�5%� �\x��[L��]A\A]A^þH�=9 �?H��ff.�@SH���W���H���_���H��E1�1�1�H��[����ff.����H����AVI��AUATL�fUH��S1��Nf.�H����H9�}TL��L�,�H����H��L��L���X
��uA��uI�����u5DH��I��� u�I;^}I�F ��[]A\A]A^��L��H���r����H�FH��xH��H�F@��u!H�����tH��ƒ���t��@H�DH�w@��u	H�����u�@�r��ff.�ATUH��SH��H�t=L�gI9�r[]A\��H�4�軃H��H��tKI��u-H�K []A\�@H� ���\��H�C []A\�f�H�s H��L��衚��H���@�H���+���H�#����H���ff.�@AUATUH��SH��H��L�'H��~wA�� u�)���H�kH��[]A\A]�f.��{���I��A��L��H������u!H�����tH��у���tH��_��H��H�C L�c�fDA�� u�H�GL�o H9�HO�H��H����A������uH�����tD��L����� ��LE�L��H%����H��� tI����H��L	�H�+H��[]A\A]�H�kH��[]A\A]ÐH�K��rH�sL�@I��H�0��H�|1�H�|0�H��L)��H)���H�΃��������1ɉσ�L�>M�89�r�����L���ȑ��L�#�2���H�L���Ԙ���������������S����DH���� u&��uKH�WH��H��?HкH�H��HL�H��������H)�H9�H��H��?H�
H�H����D�� tH�����f�H�W�f.������4AUI��ATI��U1�SH�_H���f�H����H9���I�$H�ց� ��H����H����H����H9���H����I�t$H��H�4�H��tH��H��uI�E H�<��G����t~H��I�EH���� �g���I�EH9��j���H���[]A\A]�f.�I�T$H���e�����H��t�H��x�H���z����I�t$ �Y���fDH��1�[]A\A]���f.�AUI��ATI��US1�H���J@H����H9�}R�H��tH��xI�EH��uI�E H�,�H��H���Й��H��L��H����
I�EH�� u�I�EH9�|�H��L��[]A\A]�ff.����AVAUATUSH��dH�%(H�D$1�����H�I��I���� �I�H�O�� �H��H����H9�HO�H����E1�H����H�����H��tI9�}I�UH��uI�U J�4�H���� ��H�����H��tL9�~I�FH��uI�F J��H�$I����H�={P�K��H��u5I��I9�t'I�I�UH�с� �a���I�U�_�����4H�|$dH3<%(uDH��[]A\A]A^�fDH��I�H����H��� ���I�^���fDI�F�4����~��f���AWAVAUATUSH��8�|$dH�%(H�L$(1Ƀ���H�D$I�ՋT$��tH�H�D$� f��A��I�E�� �I�UH���E1�1�A�4�LfDH����H9���I�EH��E��uEA���tPH�@H�I�L��BI�EH���� u�I;m�SI�E H��E��t�H���&���H��A���u�I��A����M����I��4��A����A��uI�����tA�����
�hH�t$L��L�T$D�D$謼D�D$L�T$H�D$��H��H����H�����DH�L$(dH3%(H�D$�%H��8[]A\A]A^A_�H������E��������
�����.���I��4tL��H����I������I�������L��E1��U���H�t$H���8Z��H�D$���fDM��ujI��4�2A���MA���UI������HA�����
�9H�t$L����Y��H�D$�
���f�H�t$H����Y��H�D$�'���H�t$K�|6��H�D$I��4u�����H��tPH�t$�L�T$D�D$�L�T$D�D$H�D$�&H�t$L��L�T$D�D$�D�D$L�T$H�D$A��A����M��uH�����t�������L�t$ M�}f�H�t$M��H����+H�=#PH�\$ �G��H�D$I�E�� tKH����H9�����L��H��E��t�H���w���H���f�H�t$L���S�H�D$����f�I;m�����I�E �H�t$K�|6L�T$D�D$�I��4D�D$L�T$H�D$��������H�|$�o���~%w3 H�D$f(ȉ؃�����CM�uf.�z\f.��f(�f(�fT�f.$3 fT���f.3 w*f/�f(��X����\��X��XL$�L$f(�I�EH���� ��H����H9��.L��H��E�����؉ڃ����C�����u`H�����tW������'���������
����u;H���L$�n���L$�~%^2 f.��
����a��������H�0fH~�H9�t0fH~�H��<�������H��H�L$H�������f(��r:��H�D$����I;m�7I�E H��E������H���L$�7����~%�1 �L$H������H�f��H*��?����f.x1 vNfP�fP�f(ȃ���9��v����
L1 �i�����\��X��XD$f(��D$�E���f(��9����D$������H�t$��H�D$���H�t$L����H�D$���H�t$L��L�T$D�D$�U��D�D$L�T$H�D$�;���H���L$��y���L$�~%�0 �O���H�0�D$�X�fH~�H9�t,fH~�H��<������t~H��H�L$H���M�����8��H�D$�>���H��f�H9�����H�ڸH��H��?H)�H	�H��H�D$�~D$���H��H��H��H�D$���H��I��I��I��L�l$�����1��b����v��DH��(dH�%(H�D$1�@��ufH�����t]H��ƒ���tP��uKH��H�<$H�=
H�=�fH�D$H��H�D$��9��H�L$dH3%(uH��(����s���Fv��fD��SH���^��H�߅�t�W���H��[�f�[��f.���ATUSH��dH�%(H�D$1�H�H�x�H�H�I��H�$��tT�Ń�tM�B�u>���BH���OH�0H����A�L$H;$�������؉���fD�Bu�f����H�����tv�����tT�؃���t
�����ubA�D$�����A�D$H���OH�0H����A�L$H�4$H����O�����`f�H�Q�OH�0H;s��@�؃���t�I����H��H�=wP�BA��H�$H��H���F����I�$H�x��H�L$dH3%(����H��[]A\�A�D$t��a�����H�=tP�J�����?����t���f�H�$��\���H������P���������B���H;p�8���A�D$�tJA�D$����������H�4$H���Y{�����P���f���H�=�P�/J�����:����b��������A�D$H��uA�L$�����s����H�=P��I����u�1���f���AWAVAUATUSH��HdH�%(H�D$81�H�D$4����I�ԅ�t
H�6H�����#[��H�\$��I�$��1�L�t$ �hf�H��H����H9��eI�T$L�,�H��4t1L���L�l$ H�\$(�7X��H��L��H����D������I�$L�l$L��H���� u�I;l$�	I�T$ �f.�E1��D$E1�L�t$�� ��@H��H����I9���I�T$J�,�H��4��@��t$��tA����D$�Gf.�@���fH������Y�E�����2�����t�E����u%D�؃�������u
H���������H��M��H�=�P�4>��H��H��H���C�����NI�$H�l$H��I���� ����M;|$��I�T$ ����A��1�L��軍H��H�L$8dH3%(H����H��H[]A\A]A^A_�f�H�y�OA��H�2H��t%��H�=AP�\G��H�\$������I�$�L$H9��X���H�l$H���K���DH�)�OH�0H;uu��t-�����������DH��4�HD��>���H�����t͋����u�H;su�A�����D$t�H�t$H���w����������H�\$I�$I�����fDH�\$I�$�e���f.�������B���f�A��u2H���OA��H�0H��u/�L$H��H����J�����A����D�D$u����@��H�=,
P�F��H�\$��u������1��[��A��H��u�L$�����o����H�=I
P��E����u�H�\$�\���fD��AWAVAUATUSH��HdH�%(H�D$81�H�D$4����I�ԅ�t
H�6H������V��H�\$��I�$�E1��D$E1�L�t$�� �#fDH��H����I9��eI�T$J�,�H��4�@��t$��tA�����D$��f.�@���H��������E�����������t�E����u%D�؃����r��u
H������P��H��M��H�=�	P�:��H��H��H���?������H�\$I�$� 1�L�t$ �c�H��H����H9��eI�T$L�,�H��4tYL���L�l$ H�\$(�R��H��L��H���?������H�\$I�$H���� u�I;l$�I�T$ L�,�H��4u�L�l$L����A�1�1�L��覉H��H�L$8dH3%(H����H��H[]A\A]A^A_�DH�a�OA��H�2H��t%��H�=�	P�DC��H�\$���W���I�$�L$H9�|-fDI���� ���M;|$}TI�T$ J�,�H��4���H�l$H�����H���OH�0H;uu��t-������B�������DH��4�HD�����H�����t͋����u�H;su�A�����D$t�H�t$H���s���������I�$H�l$H���/����I�$L�l$L���_��������������f�A��u2H�K�OA��H�0H��u/�L$H��H���F����������D�D$u��\���@��H�=lP��A��H�\$��u��9����1��MW��A��H��u�L$�����Uk����H�=�P�A����u�H�\$���fD��H� tH�G�fDH�G ����ff.�AWI��AVI��AUI��ATM��UH��SH��H��~-L���Up��H���}<��I��uoH��H��[]A\A]A^A_�!.����[<��M��~�1�1�1��fD��Hc�H��I9�~�I�4�L�H�4�@��u�H�����t�L��H�D$�X��H�D$��@J�<�L��L���y�������ATI��UHc�H��SH��H��������~M��u
H��[]A\ÐI��H��H��L��1�H�D$���H�D$H��� tH����H��H	�H�(H��[]A\ÐH�hH��[]A\�AUI��ATI��UH��SH��H���U;��J��H��t1�f.�H��H��H9�u��u	H�����uH��L��[]A\A]��,��H��L���V������AUATUSH��H�/H�U�� tNH��H����L�gH��L�oI9�IN�I9�}I9�|H�� t+H����I��L	�H�UH��H��[]A\A]�H�E�f�L�mH��H��[]A\A]�fDL)�H��H���j:��H��J�<�J�4�I��b��H���
,��H�U�@��H��t1�DH��H��H9�u��ff.�ATI��UH��SH���9��H��J�<��=��H��[]A\�+��fDAWAVAUATUSH��H�7��@��I�����^I��H��A��I���`������RH��%L	��AA��� ���� ��H�k�1��3.��I��H���
H�K M��I�$A��u!I�����t�ƒ���tH%�_��I�$@�� ��L��H%���H��H	�I�$I�L$ L��H��L��H)�����M���dL��H��tI�$������t
H
I�$I�D$H�������t��@H�L�cH��t8L��H���sT��I�$�ƒ���tH�€�I�|$I�$t
��uL����o��H��L��[]A\A]A^A_�@H�k��t)H��L�s �Cv��H�#����H��H��ucH�K H�kH�sH9�|BM��uM��tH��ƒ���tH
H�f�H�CI���z���L�g�q����H�����fDH��L��H���"|��H���DH����H���*���f�L�o�����I�D$H��ƒ���t��@H�L�c���M�l$�K���fD�L�sLDs�L�{ L���9u��H�#����I��H��u	H�K ����L��L��H���r{��H����ff.�f�AUI��ATI��UH��H��� SH��H��_�+��H��H�E u=H�m J�L�I��L��H��1�I�����H�H%���I	�H��L�#H��[]A\A]�H���f.��;+��H�èu$H�����tH��ƒ���tH%�_��H�fDH���H���H�U�� tWH�H��H��H�k ���� uTH�SH��H��I�����H�Lk �� tIH%���I��I	�H��L�#H��[]A\A]�H�U H�H�S H�U�� t�H����H��H	�H�띐L�cH��H��[]A\A]�ff.�USH����ww�}H�H�Ӊͨt[H�H��� u8H�SH9�|;H��xwH)¹��H��HD�H��H���OH�0H��[]�A����H����H9�}�H�����H���b��랺1��"O��H�
 H�� ��H�=	 �,��H��OH�5� H�81��k��ff.�����uHH��� u H�J�H��tBH�R H�D���H��H�����t'H��H�D��D�����fD��������u0H�
��� uH�zt$H�R H��@H�����u��1������ff.�@UH��SH��H��� t/H��H�˃�H���m|��H��H��H��[1�H��]�����H�_��f.���H��trAT�USH��H�oL�g HDo��uH���=��H��H��u)H�K []A\�H���kq��H�#����H��H��t�H��L��H���w��H��H�K []A\Ð�ff.�@��AT�USH�H��H�oHDoL�g H���q��H�#����H��H��uH�K []A\�H��L��H���:w��H��H�K []A\�ff.������,AWI��AVI��AUATUSH��L�'A����L��I�^�� uI�^ I���?�� �I�G H���I��A��M����I�O1�H�L$��I��I�I��A���� ��H��H����L9���I9��]��"I�^H��uI�^ L�,�L����� ��H�D$L�H��H��H��L9��H�;H�0H9�t��9��H��t1I�H�Ɓ� �Q���I�M�f�� �X���I�OL9��^���1�H��[]A\A]A^A_�I�GH�����M�f���f.�L���(6��M�&I�L��� �� ������fD�6��M�&I�^L��� �p����g����I�G �����L����5��I�6I��� �����L���5��I�����H���[]A\A]A^A_�@��f�����5�����H�H��% u��@tH��� u��@t
H�NH9Ot�f�1��DH�N�H9OHD��fD��H���OH��H�8�
��f.�AWAVI��AUI��ATUH��H��SH��H�t$�,&��H�UH��H�$M��~lN�$�E1���H��I���L!��M9�tGH�$H�E uH�E K�L=H��L�4��d/��N�48A��u�I�����t�L��H���6K���@H��� t8L�t$H%���I��L	�H�H����v��1�H�}��H��[]A\A]A^A_�f�H�D$H�C��D��AVAUATUS���XI��A���tL�&A���!I�I�]�� ��I�]H���%��H��H��~QM����L��H�H��I��M�uI�E uM�u L)�K��I��1�H��H����I��L��L��H��H����I�EH�UH���� �� t>H��tYH����H����H��H	�H�EH��[]A\A]A^�@H�����O���@H��t#H����H�EH��[]A\A]A^�@I�E�f�I�E��f.�L��H�{�H��H�H��H)�I������fDL���H[��I�]I��� �����{����1��G�����UH��SH��H��� ��H����H���#��H��~4H�UH�E uH�U H�pH� tlH��H�
H��H��H��u�H�UH�H�ց� �� uH��tUH����H�PH��[]�H��tKH����H����H��H	�H�H��[]�@H�p �f�H�_�W����H�U�f.�H�U�f.���AW�aI��H��K AVH���AUATUSH���bI�/I��� ��M�eH����A�� ��I��A��M�4,L���"��I�OH��I� uI�O I��H��1�H���@�I�MI�E uI�M I��L��H��H����H��� t%H%���I��I	�L�3H��H��[]A\A]A^A_�L�s��f.�M�eI�oA�� �S���M�e�R���f������!��f���AUI��ATUSH��XH�t$(H�T$0H�L$8L�D$@L�L$HdH�%(H�D$1��!���$I��H��$�H�D$H�D$ H�D$M��~s1��C��ƒ�HT$�$H�*L����*��H�,�@��u	H�����u-L��H���y��I9�t,�$��/v�H�T$H�BH�D$�@H��L���}F����I�$�� t/H%���I��L	�I�$H�L$dH3%(L��uH��X[]A\A]�M�l$���X��@��UH��SH��H���K��H��~H��uH��[]�f.�I��H��H��H��1�H�D$�H�H�D$H��� tH����H��H	�H�H��[]�H�XH��[]�D��H�m�OH��H��H�8�V�����UH��AWAVAUATI��SH��H��XH�u�dH�%(H�E�1���tmI��?����tuH��� uIL�KM��x��I����M��u{H��H�M�dH3%(�zH�e�[A\A]A^A_]�I��I��A���L���V��I���?����u��gT��H���oc��H�M��H��L����H���$b���f�I����J��H��H�E�H��H%�H)�H���H��H9���H��H��$���D1�����H���!p��H���$���f�E1�L�e��?�H����I9������H�CJ��L��I��H�E��CY��H����o��H��� u�L;k�����H�C ����t	H)�H�L�L�T$I���M��H��L�M�E1�E1����L�M�H�@H�E�I�D$�I�H�E�I��L9m���K��H�E�M9�~6fDH�E�H�}�L��L��L�M�L�8���L�M�����I��M9�uѐI��K��L�xO�<�M9��M��u�H�}��=b��H�޺OH�U�H�H�B����fDO�<��f����H��������I9�$J�4�H�}�L��L�M��	&��L�M�I������L���:��H���OH�5 H�81��x]����T����UH��AWAVAUATSH��H��XH�u�L�'dH�%(H�E�1�A�� ��I��A���x<������L�u�A����I�M���M��I����I��`J��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�T$I���M���+�H��������I9���J�4�H�}�L����$��I��H��E1���H�@H�E�I�F�I�EH�E�I��L9}���K�D�E1�H�E�M��~0H�E�H�}�L��L��L�M�L��V���L�M����TI��M9�uѐI��K�D�H��K�D�I9��M��u�H�}��`��H���OH�U�H�H�BH��H�M�dH3%(�H�e�[A\A]A^A_]�@L�g��:�����_����*P��H���2_��H�M��H��L�O���H����]���DL���(R��I���1���K�D���f�1�����H���l��H���c���f�E1�L�e��<�H����I9��7���H�CJ��L��I��H�E��3U��H���k��H��� u�L;k����H�C �ǾL���7��H�ǵOH�5 H�81��Z���	R��f���UH��AWAVI��AUATSH��H��HH�u�dH�%(H�E�1����9I��9�����AH��� �
L�{M����M9���M���FE1�L�e�I����H���5�I�VH�E�H���3H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�D$I���M��H�E�N�,�1�I��L��M�H�@I�D$H��H�E����I�$����1�H�HI9�~ I��fDH�0H��H�VH�L9�u�L��H�U�H�}�L��H�M��^�H�M�����H��tLH�A�I��H�1H�VH�L�I�H9�t)�DH��I�|�I�H�OI�L�L�H9��k���H��u�H�}���\��H���OH�u�H�H�FfDH��H�u�dH34%(��H�e�[A\A]A^A_]�H����I9�}�H�CJ��L��I��H�E��R��H���'i��H��� u�L;k}�H�C ��I��I��A�����L����N��I���P7����������L��H���[��H�M��H��L�X���H���`Z���>���1��a��H���h��H���$����H��������H9�wH�4�H�}�����I�������H���{4���N��H���OH�5 H�81��^W��ff.���UH��AWAVA��AUI��ATI��SH��XH�dH�%(H�E�1��� �H�����[6�����A���aE���0H�]�1�H�}�������H�}���H�}��1H�SH��HU�H����H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�L$I���M���f�H�}��wZ��H��OH�]�H�H�CL��H�u�dH34%(��H�e�[A\A]A^A_]�H�Z�G5��������J��H���Y��L��D��L��L�r���H���ZX����I�}H������@����H�H9�H�}������fDE1�H�]��=�H����I9��K���I�D$J��H�޿I��H�E��O��H���:f��I�$�� u�M;l$����I�D$ ����L��H9�H�E����*���@1����H����e��L������f�H��������H9��8H�4�H�}��,��I��H�E�L��E1�M�<���L��H��1�H�@H�E��]��H�E�1�H��H�E��H��1�H)�L��H��H��t3H��J��M�L)�I�
�I�EH;E�}1I�DI��1�빐M�������I��K��H�xA��@M�\1�H��~C@A�<u/H�u�H�}�I�L��L�U�H�M�L�]��:�L�]�H�M���L�U�tH��H9�u�I�:A�?H��I�:�5���H�ޮOH�55�H�81��S���H���0���1�D����6���K��@��ATH��1�US辿��H��H��t3�H�kHDk�L�c H���Z��H�#����H��H��uH�K H��[]A\�fDH��L��H����`��H��H�K ��f���ATH��UH��1�S�;����H��1�H��H����H�;�� t[H����H��H	�H�;��t4��H�kHDk�L�c H����Y��H�#����H��H��u"H�K H��[]A\�fDH�k�f.�H��L��H���`��H��H�K ��f���H�`t�f�H� �X���H��tH�GH��H��t~H�G��SH���0��H��[�L��ff.�SH��H������uH�����tH��ƒ���t��H�[���H��H���uaH�����tYH��у���tL��uG��@t�� teH������ u;H�G��t{�� ��H�PH�� ���mDH���XF���H����H��� t�H���@H�|$�.���H�D$H���H�у��� ��HE�H����H�H���DH�x �„��S���H�Ǿ H�D$���H�D$�7���@H�����V���@��USH��H������H�������H��ƒ����������� ��H�CH��~p�/��H�;������ �|H�{�{��H��H�@H������H��H�u�����H�EH�H�p�� ��H�CH9���@�H��[]�@H�����n���@H����D����� ��H�{����H��H�@H���H���H��H�u����p���H�H������ �q���H��H����H9��o����Ѓ���t���u��� ��H����H���@t	�� ��H���W��H��H�5�H���u)��H��H�E�����H�}H�\$�v��H�e���H�D$H�E��@H��������@H�����|���@H�C�n���H��H�t$���H�H�t$��H�ƒ��� ��HE�H%����H��D�����AUATUSH��H������H�������H��ƒ�����������@tzL�c�� ��H��H������H�s ��H�ƒ��� ��HE�H��H%����H��H��TL��H�����H�H%���H	�H�+H��H��[]A\A]�J���H��[]A\A]�DH���B���H�kH���o���I�|$��I�$�� ��I�T$H��H�H9���L�k I�L$ ��I)�H�I�D$I�$ uI�D$ H�SH��H�C �?��H��J�4(H����=��H������I�$A��uI�����t��H�ƒ��� ��HE�H%����L��I�$�������H��H��襸��H��H��I��uAH�����H�kL�c ����@H�{�'Z�����f�H��L�k I�L$������H�s H���Y���f.�USH��H��H��� ��H��H����H��������H�,H)�H9�����@��H��~H�CH�x��H���AE��H���� tH9�|OH��H��[]�D������ ��H��H�ȃ����H����D��H��� ��@H��H���u����H�G�F����H�����t!�ȃ���tH��H�ȃ�%H	��X���H���N@��fDH�CH9��L����f�H�0H�S �� taH�xH��H)���H��H�H9��K���H�����t��ʃ���t�H�ځ���H	�����f�H�C�����H+P H�pH��H����t)�� �����H�CH��H��H)�H9����������@H�C��H�˩OH��H�5��H�81��7J�����AUATI��UH��SH��H��� ��H�����H�����H��I���!��L�$�A��u	I�����u^H��H������H�E�� uH�]H��H��[]A\A]��H%���H��H	�H��H�]H��[]A\A]ÐH�_�~����L��L���.�����H��H���pX��1�H���f�AUATI��UH��S1�H���P@H����H9�}XA�H��tH��xH�EH��uH�E L�,�L��L���0���H��uL��L���X��H��H�EH�� u�H�EH9�|�H��[]A\A]�f���AT�aH�o1 USH��H����,HH�;H��� ��H�EH������ ��H����H�H�������H��H�@H���
���H��H��H���̹��H����q	I��H��uL��[]A\�H�{�
��H�#���L��H�C[]A\�H�EH�{�� �y���H�EH�H���|�����>��H��I��H���{���H��L���p���L��[]A\����AWAVI��AUATUSH��H��|$H�t$�� �&H�������4�D$L�|$L�-(0 ��L��M�d��f.�H��I����H�M9�t0I�?L��a��FI�H��� u�H�PI��H�M9�u�H����I�>�� ��H�����8��L��H�@H��蕭��H�ŋD$��~.�D$H�\$��L�d�f�H�3H��H���1���I9�u�H���$p	H��H�E���H��H��[]A\A]A^A_ÐI�~�z����H�z�T$H��������H���V����>=��L��H��H������fD�#=��L��H��H������DH�uH��H�����L9�u��s���fDH�}�w��H�e���H�E�O���f���SL�FM��t0I��H��L�F��~Hc�H���@��H��H��H�;�T���[��}��ff.�f���AVAUATUSH���$����tx�c<��E1�L�cH���.�H����I9�}DL��N�4�L���%V��H�����tI��H��� u�L;k}H�C ��DL��H���T����[H��]A\A]A^�@H��[]A\A]A^������AVAUATUH��S�$������H�}�� u`H�}�O��1�L�eI���4@H����H9���L��H�<�L�4��lU��H�����u,H��H�E�� u�H;]}qH�E ��H������H�EH�� t9H�����H��tH��xCH9�}>L��H��uH�E J�40L���S���@H�E��f.�[L��]A\A]A^�@���f��{8��H���G��[H��L�����]1�A\1�A]H��A^�5F��D��AUI��ATUSH����"������I�}�� uVI�}�
��1�M�eH���)f�H����H9�}DL��H�<�H���4T��H��H���IR��I�E�� u�I;]}I�E ��@H������H��H��[]A\A]�f��7��H���F��H��L��1�[L�Җ��]1�A\H��A]�cE����AW�aH�+ AVAUATUSH��H���H��dH�%(H�D$1��"BH���9��I��H��� �+H��H����H����H�}�� ��H�}H����H��
H�����	��H��E1�I��H�@H���ݨ��H���9�H����I9�}<H�CN�<�1�L��H��L�<$��	����I��H��� u�L;s}	H�C ��H�E�tH�}�E��H�e���H�EDH�L$dH3%(L����H��[]A\A]A^A_�f.�H��������@L��L���eP���m���H�S�����E1�L�k�L�H����I9�}�L��N�<�H��L���B���H��tL��L���2���H��uL��L���P��H�I���� u�L;s�<���H�C ��Q8�����AW�aH�) AVAUATUSH��H���H���2@H���7��I��H��� uH�{~H�E ��E1��TDH����I9�}WA�H��tM��xH�CH��uH�C N�4�L��H���h���H��uL��L���8O��H�I��H�� u�H�CI9�|�H��L��[]A\A]A^A_�H�}E1�H��~��6��H��L�s1�H�@H��荦��I���z�H����H9���L��H�4�1�L��L�<���+����uAH�H�� tUH�����H��tH��xH9�}zL��H��uH�C J�48L���bN��H��H��� u�H;k} H�C �f.�H�C�f.�I�E�����I�}���I�e���I�E���@��f���UH��AWAVAUI��ATSH��H��X�}�dH�%(H�M�1�Hcρ����H�AH��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����H�D$H���I��H�E�H�E�H�M��?5��H�M�H�E�H��� �,I��I��A��L��U�����I�D�H�]�I��L��L�}�I��L�m��EfDH� u]H�xH��~S�I��H�����L��H�@H���z���I�E�M9�t7I�}�a�H�]& �'=I��I�EI���I���H��M9�u�H�]�L�}�L�m�H�H�KH��H�E�H�M��M����M��� ��H����H9E���H�E�H��t H�}�xH���
H�E�H�M�H��H�E��E�����H�E�D�e�E1�H��H�E��-f�H�E�H�M�1�H�4�)����uGA�VI�FM9���I��C�<7K�|�tH� u�H�C �f.�H�u�跣��H��t�H�E�H�H�� �+���H�CH9E��.���H�}��@��H�E�H�]�dH3%(��H�e�[A\A]A^A_]�1�@9U�u�H�u�H�}��&K��H�E�H��@H�C ��H�SH������H��������H9�w=H�qH�E�H�M�H��H��H��H�E�H���!��H�M�I���m���H)�H�L��K����H������3��D��AWAVAUI��ATUSH��H��H�H���� �~���.I��Hc�I��A��M�$/��@t-L�CI�H�ց� ��H����I�xu	L9��bH���r4��H���� u%������ �H��H����fDL9���I��L�4�I��@�!H���� u$����� ��H����H��fDH��H�T$����H� H�T$�QH�{ H��H��L)�H��H��H)�L��H�H��H���(+��L�CH��L)�H�K �DH������+�ƒ����H��%��H	��	H��H��[]A\A]A^A_����t�L�zHc�H��������H)�M�$/I9��w���H�<�OL��H�5`�H�81��9���H������L��J�<0H���i*��H���q�I��L��H��1�H������H��� tH%���I��I	�L�#�P����L�c�F����I�P�
����L��H���%����I���H�{H�����@H�CH��H��H)�����DH���.��H�S�W����H�CH��H��H)����DH�S�/����H�����t��ǃ���t�H��%��H	�u�H��t8H�KI�xH��uI�x H��L�4�H)�H��H9��#���I��H�����H�K ��f�UH��SH��H���1��H��� tgH��H����H9�}&�� u+H�kH�t-�tS�� tvH����H9�KH��[]�H��H%���H��H	�H��� t�H��[]�f�H�S�f.�H�CH9�~�H������t�H��H��[]�ު��fDH9s~�H�C��ff.��AWI��AVAUATUSH��H����H�H��I��M��H��% �H�_M���I9�	K�<H9�~I��M)�H���H�EH�����H�4$H9�rH��H��H)�H��H��H9�HC�H�$H��������L)�I9���I9���L��H��H�L$O�4,L)��|�L��H��H��H)�I������M��~7H�<$�H�L$tH�EH�E uH�E H�<$H��M��L��L��H������H�E�� ��H%���I��I	�L�uH��[]A\A]A^A_��H����M�����L��H���I������@H�E ����H��M�tL)�M)�H9���H��H�L$�</��H�E�H�L$�� u!���� �5H����H��L9���M9�tZL)�H��H�L$���L)�K�T%M�H��H�<�J�4�H���K&��H���S�H�EH�L$�� ��H%���I��I	�L�uM�����H�<$�tH�EH�E uH�E H�<$H��H��H�$�
���H���2���H�$J��J�<�H����%��H��H��[]A\A]A^A_���@L�uH��[]A\A]A^A_�DH�UL9�����L��H��H�L$蛩��H�L$���L�u�G����H�U����H��OH�5)�H�81��_4��L��H�ՓOH�5��H�81��D4��L����H���OH��L��H�5��H��H�81��4��ff.�SL�H��A�� t@I��H�NA��tH�3�� uH�s1�H���Y���H��[�@H�������L�FM��~�H�N H�3�� t���fD��U��SH������H���u|H�����tsH��ƒ���tf��uaH�>H��H�@��t:��t#H���tOH��xbD�E�H�N1�H��Mc�H�����H��H��[]��H�t$�)��H�t$��H��� (��H��� t8H������H��� t0H����H��H9�4H���~����H�C�m����H�K�у�����H��H��OH�5D�H�81��2��f���AWAVAUATUH��S��H��(dH�%(H�D$1�H�B�OL�(����H���+��H�E�� ��L�e���H���E���I��M����L��L�u�3H����I9�� L��L9��I��I��H�I��H�H��tUH��L��H�����H�U�� u�L;e��H�U �DI��I��A����m���H�������`���DH���`�H��H�t$dH34%(��H��([]A\A]A^A_�f.�D�g�Ic�H�<��`��H��u1�1�������H���OH�t$L�D$H�ǹH�T$1���H�D$H��4LE�E�������D����H��OH�5��H�81��0���3(����SH���*��H��� t{H��H�C��H��H9�sxH��@H�H��H��tH�H��H9�w�H��� u'H+s H�SH���H9�tH����H��[�@H�CH��H)ƃ�H����@H�C H�SH��H9�r�1��ff.���AVAUATI��UH��S��H��PdH�%(H�D$H1�H�$4H�D$H�D$ �	�������A��H�D$(���k��������H�D$H�D$H�|$(��������������'H���(��L�d$ M���IH��������H�\$H9���H��H)�I9���H�uI�H��� �[H��H����I9�~i�� �����4H�EL9��'H����H����L��H��H)��ɽ��H�E�� ��L��H%���H�\$H��H	�H�EH�$H��4��L9��|I�@�<H����H9�~dH���|���L�4�A��u
I�������H��H����I9�t4H��L��PH�|�>��I��H�E�� u�H�EH9��f�H�L$HdH3%(H����H��P[]A\A]A^�@H��H�D$0H�D$H�D$8H�D$H�D$@�?��H�D$(���~���N1�I�$H�$���H�D$H�D$H�������H�|$(�1�������DH�M�� �KH����H�\$H�T$ H�t$A�H�����H�������H���[H�D$H�|$H����H�}�� �|H����H+|$�zH���)��H������L��H�������k���H�E����H�T$ H��H���@������I�D$H�D$����I�D$H�D$�����H�|$(t
H�|$(�0����������H�D$H�E�� �H�EH�D$ ���@I�$H�D$���l���I�D$H�D$���b���H�|$(t
H�|$(�	0���1������H�\$H�����������H�H�\$H��y&H�U�� �H����H�H�D$H���i���H�|$H���r���@����H�H�|$ ������f���fD�{(����������C���fD�c(���������H�T$(�u����H�������@H�M����H���!��H���3���L�eH�\$�?���f�H�u�����H�|$(��.���4����L��H���՝��H�uH��� ����[!��H���"���H�U����H�}�����!��H�ÊOH�52�H�81��:*��f.���SH���s	��H�߅�t�w#��H��[龪��fD[�"���f���SH��H�� dH�%(H�D$1��/	����tSH���3#��H��H�����H�=BH��H�$H�D$H�D$��H�T$dH3%(u1H�� [�fD�3��H���;-��L�d}��1�1�H��H���+����� ��ff.���SH�����H�߅�t�7���H��[�f�[�J���f.���AUATUSH��H��(dH�%(H�D$1��Z"��H��� �^H����u%H�t$dH34%(H����H��([]A\A]���I��L���R�H�KH��H� �NL��I��1�H������H�UI��H����I	�L�eL�#A�� � I��A��H�EH�,$H�D$H�E�mH���e�I���}���I��L��H�
����H�����L��HD�����H�����H���V!��H�EH��� ��H�@��H��H�MI��1���H���A���H��� �uH�EH����H�CH���OH�H�E���L�cI�������I�������H�����H��H�@H�����L�#H��H�EA�� ���L�c�����H��� ���� �c���zH�U L�cH�S H�UH�SH��@���H����������t���H�U����t�� H�UH������H�Ѓ�����HE�H�U����f.�H�u H9s �f�����uH�����t�у���t
��H�H�E�� �Y���H��H�����N����H�K ����H�UH%������H	�H�����DH���8��H���uH�����t��H�ƒ��� ��HE�H%����H�H�U�
���H%���H�E�+����H���������@uc��tCH����H�H�E���H������y������k���H��_��H�H�E�X���f�H�{ �+��H�E�D���fDH���p��H�E�-�������f���ATUSH��H������H�������H�;����������I���{H��aH��
 �H���o$H��H9���H� ��H���`�JI��A���
H%����E1�H��ƒ�H���� ��HE�H%����H�H�U�� �VH��H�M��1�I��H���ް��M���EH�EH�H���� �� ��H���CH����H����H��H	�H�H��H��[]A\��H�x�7���H���E���H���`����]H����H��у���t
H��_��H�H�M H�K �� ��H�MH����H��H	�H�H��H��辕��H��H��[]A\�f�H�������ƒ���@����L�c�������俉�H������DH��t;H����H�CH��H��[]A\�@H�M H�U���L���������H�E��f.�H�E����H�UH�S�:�����@���� ���H��H�D$����H�H�D$����@H�{ �')��H��ƒ���f.�H�{ H�D$�)��H�H�D$���D��SH�����H�߅�t\���H�5��OH��t+H��E1�L��u��1�1���H��H���Z�H��[�D�H�=��O��H��H�U�O�[�
���f.���USH��H��H���3��H��~OH9t"H�;�� u$H�{�K�H��H��H�����H��H��[]�H���������H�1���`u*��� u ��tH�GH����H�GH������H��(dH�%(H�D$1�H�<$�H�t$H���r��H�T$dH3%(uH��(��x�����USH��H���.����u2H��1�1�认��H��1�1�H���Ϩ��H��H��[H��]���fDH��1�1�[]����f����aH�A	 �� fD���aH�!	 ��,��fDAWAVAUM��ATI��UH��SH��H��HH�4$dH�%(H�D$81�H�D$H�D$�H����H9���H��~H�$H��tH��L���� ��H�U�� H�EH��uH�E L�<�A��u!I�����tA�����������L����I��H��tcL��L���x ��A�E����H��H�EH�� �U���H�EH9��X���H�D$8dH3%(��H��H[]A\A]A^A_�DL���8���H��trH9�t}A�EH�T$L��H�=�H�D$H�$L�d$ H�D$L�l$(���h���@L��L�����A�E�L����L���M������L������I���
���H�OH�5��H�81���������H��H��H�>H�vH�HL�@��u1������H���H��~OH�5J�H�81��9��f���AVAUE1�ATI��UH�oSH���YDH����I9���H��J�<�����I��H��t+H��� tCI�V��tH�:L���-�H��uC�I��H��� u�L;k}>H�C ��I�~~�I�V L��H�:���H��t�[L��]A\A]A^�f�A�[]L��A\A]A^�ff.���UH��H��SH���K���H����H��H9�tiH��H��H�=|���H���t��H��4tH��[]��H�E�� uGH�H�E�� tJH����H)�H��t��H����[]H��������H���[]�@H�H������ u�H�S�H���[]�ff.����AVAUATUH��SH�?�� �H������1�I�����A���@H����H9���A�H��tH��xH�EH��uH�E L�4�E����L������H����H��� t\H����H����H�PH�HH�1L��H����H�EH�� �q���H�EH9��t���[L��]A\A]A^��H�HH��uUH�H H�Q�@L����I���b����H�}���L���-��H��H�5-�H��H��sOH�81��1��H��{OH��H�58�H�81����fD��H������@����H�� ��'��fD��AUI��ATUH��SH��H��L�'A�� ��I��A��H����H��������H9��.H������H���� tHH9�}kL9�v��H����L�,�A��u
I�������H��H��[]A\A]�/�������� ��H����H��H9�|�DH��H������L9�~�H��L��H��L)�H�P����H�H�U�� t?H%���H��H	�H��Z���f.�L�gH������H��L�x_H������H�S�'����H�S�����L��H���������H�S���H��xOH��H�5�H�81��L��H��xOL��H��H�5��H��H�81��+��ff.���AWH�GI��AVE1�AUI��ATUH��S1�H��H�D$�EDH����I9�}\H�D$N�$�H��L���0�H��u;I9�tL��H��L���h��H��I��I��� u�I�GI9�}I�G �f�M����H9�t#H��L���(�H��L��[]A\A]A^A_�fD���A���t�H��H��[]A\A]A^A_�+)��ff.���AWAVAUE1�ATUH��S1�H��L�7M�f�KDH����H9�}TL��L�<�L����(��H�����uL9�tL��L��L�����I��L�mH��H�]I��� u�I;^}I�F �fDL9�LD�H��[]L��A\A]A^A_�f.���AWAVAUE1�ATUH��S1�H��L�7M�f�KDH����H9�}TL��L�<�L���-(��H�����tL9�tL��L��L������I��L�mH��H�]I��� u�I;^}I�F �fDL9�LD�H��[]L��A\A]A^A_�f.���ATUH��S����H��ti���1�L�e�.@H����H9�}<L��H�<��'��H��H��H��H���.��H�E�� u�H;]}H�E ��f�H��[]A\��[]A\�g������AUI��ATUH��S��H��H��dH�%(H�D$1��r������H�E��`uH�} H��t��MH%����H�E��@t	�� ��@��uH�����t��H�ƒ��� ��HE�H%���H�E����
H�L$dH3%(H���8H��[]A\A]��c'��H�$���;����M�e����D��A�������I�M����H��������I9���H���s��L��H���H����S������](��M���L���1��"DH��H%���H��H	�H�EI9��&���H�|�%��H��H��H��H���W��H�E�� u�H�]���H�=��1��"�����D1�M�m����H��ueD���������L���.��I������fDH���X��H�E�Z�����s������H�$M�e��u�A�H�������H���7��D�����u�����L��L��1�H��萡��H�E�� tH%���I��L	�H�E�����L�e�
�����+��H�E���f�L����I��H���%���H��H���������H�<$tH������1��������
��H��sOH�5e�H�81��1��H��sOH�5��H�81����f���AUI��ATUH��SH��H��L�'A�� tmI��A��H��H�����H��L��L��I��H��L��C���H��� t#H%���H��H	�H��H�+H��[]A\A]�DH�kH��H��[]A\A]�fDL�g�f.���H��Hc�H����#��ff.���USH��H������H�������H��Ѓ�������uH�с� udH�s�H��tIH��H�n�H��
����`������H��H����H��H	�H��H��� H��t{H��H��H��[]�fDH��H�����@H�����H9�}<H������t1H�H��资��H�H��H��
���H�с� ���p���H�kH�������H�[ ���f�H�v��u�H�SH9�}�H�����f�AWAVAUATE1�UH�oSH��H��X�t$dH�%(H�D$H1��+f�H����I9�}<H��J�<����I��H���I��H�3�� u�H�sI9�}H�C ��DA�I9��1���|��H�KH�D$H� uH�K L�t$L��1�M��L���ל��I��� �zH�D$L�`1���|��H��H��H���8��I�|$H�@I���H�t?H��E1�����T$����H�D$81�H�D$(HcD$H�D$ fDI��� ��H����H9��I�GH�4؋D$L�c��x,H�E�� ��H����H��H��?H�H�H;D$ ��H��H�t$��H�t$I��H�D$H�x�NI���mM��t,1�L��L��L�l$8�����YH�t$8�L���<��L��H���!��H�@H��NK�t$H��M��1����I��� ����I;_}*I�G ����L��H%���H��H	�I��w���f�H�E�� tOH����H��tLM��tH�t$(1�L��L�|$8����H���J�����H�H��H���4��I�����@H�EH��u�M��tL���B�L���
 ��H�L$H�A�uH������H�L$HdH3%(H�D$�SH��X[]A\A]A^A_�f�H�E�S����H�|$L���������fDH�����H���L����L����	��H�����H�3�� uH�sI9������H�\$�]���H��������	��H���Z����P�H�@H�D$0��H�|$0I��H����d	H��L����N���L��L���>���%���H��H���.����M��tH�D$0H�D$@L��H�D$0���H�hOH�5��H�81�����L�����H�>mOH�5�H�81�����0����USH������H�Ӹ��uq��u|H�����tsH��у���tf��uaH��tSH�Ǩtd����ƅ�tiH���A���H��H9�tYH� t`H��H���u��H�e���H��H��[]�H�������븐H���(����k�������H���[]�@H�����H��H���
��H��H��[]ú1������S��w_H�Ӆ�t?H�>�����H��uH���y���H9�t[�f�@��u*����ƅ�u�H��[馠��fD�������f��������Ժ1���ff.�����txSH���u_H�����tVH��ƒ���tI��uD�H��觞��H��� tOuuH�0H�S�� t{H����H)�H����H��H	�H�[ÐH�������H���x���H��� uH�PH)S[�fDH�������H��H�0H������ u�H�p�ff.�f���ATUSH�H��H���� ��H��H����H��������ƒ�����H��H�ƒ���H	���A�H��tLH�SH��uH�S L�"��@tFH�SH�z��H�C �� t_��H�SH��H%���H��H	�H�L��[]A\��H��H��~g���H��H��c��H��軘��H�H�C �� u�H�kL��[]A\ÐH�oH������#����H���P���H��H�����n�����K��H����H�pH�����H������H��� t�tEH��H����H��H����H��H	�H��2����H�����H��H����H�����H�C�f.���USH��H��H����@����H�������H��ƒ���������H����@uq�� ��H���舗��H��1�H���K���H�H��HS �� tW��H��H����H)�H%���H��H	�H�H��H��[]�f.�H�WH�zu��H������H)kH��H��[]�f�����H��� tCH����H)�H�4�H��H���i���H���q��H��]���f�H�S�`����H�S�f.�����thUSH��H����uRH�����tIH��ƒ���t<��u71�H���Ś��H�0H��� t7H����H������H��H��[]�fDH������H���X���H�p��f.���H��H���H�t$H�t$���H���ff.����H��� t4H��H�����H��tH��x
H9�}H���H�y��f.�H�WH� ��fD��SH��@��tH��H�[���fDH�����H��[H������ff.����US��H����~7H��H�6H���������uH��[]�@H��H�u�H��[]�������ff.����AWAVAUI��ATUSH��(H�/dH�%(H�D$1��� �DH���������AH�D$�D$E1�E1�H�D$H��)�|fDH���6I��?M��E��tFH��I9�}JH��L��L)�H��H��?H�H�L�H�����H������I�ƨu�H��t,H�����u<L�{E1�I9�|��D$���K�D?��f�H���D$A��DH��dOL��H�0����H����L�D$��L��H�=�OH�D$��F���L��H�������tR��tu��������[����H�o�o������������H������E1�1�1�H��L������fDH�DH�L$dH3%(u(H��([]A\A]A^A_�@A�H���������.���L���v��H�5�H��H�\OH�81����ff.���SH�������u[�DH�H��[H���)���f���UH��AWAVD�wAUI��ATSH��X�}�H�U�dH�%(H�]�1�Ic�H�����H�E�H�E�4L�}�L�����I���%�� ��I��A�����H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����L�d$I���H�E�H�@H�E�H��� H�E���H� ���H�E�H��H��H	H�E�I�H���}I�GI��H�H��H9�u�A�f.�K�|���a�H����K��I��L9�u�1�fDA��H��H9�������2E1��'DH����H��t+���K��I��L9���K�<�H��� u�H�GH��u�H�]�H�����H�H�S^OH�}�H%����� H�H�E�H�H�P���H�E�H�E��JfDM� A����T���H��������1�H��H��H��H��H9��H��H��H�}�H��H��H��H���@��I���Z����H�XH�E�I�H����������������;���H�E���f��H��~�1��$f�H��H�Ѓ�H��t(H����H��H9�t�I��H��� u�H�@H��u�1����H�E�H�]�H���B��H�H�]OH�}�H%����� H�H�E�H�H�P�H��H�E�H�]�H��HE�H�]�H�]�dH3%(H�E��7H�e�[A\A]A^A_]�fDL�����I������H�E�HcE�H��I��H�E��A�H�I��H�E�H��E1��!���I��H��~*f�Kc4�K�<�I���/���L��H���d��L9�u�H�}���H�E��uH�E�H������L�����H�E���MH�E�H������=H�E�H������*H�E�H���H�E��uH�E�H�����u�H�M�H�u���E�����M��,�H����H9���������S����H�����FHc�H�M��I�<�I��� u�I�Q�f.�H�}�L���d
���f�H�E�H������u���H�E�H� �����e���DH�E�H��������H�E�H�����DH)�H�L��k���f��H������H��VOH�5�H�81�����H��XOH�5��H�81����A�$�����!������AWAVI��AUATUSH��HL�"H�T$dH�%(H�D$81�A�� �nI��A��Hc�H��M�,����H��H�D$0H�D$H�D$(H�D$H��6��fDH�H�\$(H��L�����H��H�����I��M9���I�L�|$��u�H�T$H�t$L��H��A����H����H�T$0H��~�M�WI� uM�W H�D$(H�ML�<�� ��H�]I9�~L��I�4�H��H)�M9�HL��	��M9��f���H�D$0�H��I��H�t�����M9��O���@H�D$H�D$0H�D$H��H�T$8dH3%(uMH��H[]A\A]A^A_��H�����H��H�D$(����L�b����H����H���B����T�@��ATI��UH��SH�H��� toH����H9�lH��xgH��xbH9�~,H)�L��H���^
��H��t0H��H��[L��]H��A\��@H�TH9��L���.
��H��u�[1�]H��A\�g��H�GH9�~�[�]A\�D��SH��@��tJH�H��xOH��� uH�SH�����H��t[�fDH��H�߃��y��H��u�[���DH����H���H�<[OH�5�H�81������ATUH��S������td1�L�e�(@H����H9�}4L��H�<��h��H�����t H��H�E�� u�H;]}
H�E ���H�tH��[]A\�����[H��]A\�|k��ff.����SH��@��tH��H�H��xH��1�[���@H�����H����H�\ZOH�5N�H�81�������ATUH��S�����td1�L�e�(@H����H9�}4L��H�<��
��H�����t H��H�E�� u�H;]}
H�E ���H�tH��[]A\�?����[H��]A\�j��ff.����UH��AWI��AVAUATSH���}�H�u�dH�%(H�E�1�H��� ��H����H��h����u������E�H�]�L�}�L��h�����I��L�d�H�E�H�E��L��1�H���C��I��M�7I��M9�tlI�H�����H��u�L���+���L�M�1�1Ҿ�H��I��H�E�L�����L�m���H��4u�H���&
��H�5��H��H��POH�81��;���L�}�����E����$�h����]�H�M�L�}��E��C�L�l��CHc]�H�H��p���H�E�H��� ��@H����H9���H��p����\���I��H�E�H�H��x����� ��H��H�4�L��L�4�����U�L�}���X�
f.�H�����H��t#H����H9���H���TH��J�42L��I���@��M9���I�H�H�ǁ� u�H�B�H�BH��h�������H��h���H��葶��H��`���H���8�]�L��p���1ҍCH�H��X����C�H�]�L�l�I�G1�H��P���H��X���H��x����=���H��x���I��H��p���H��� H�E��LH��P���H�4�L��L�4��q���E�L�}���?��H�����H��tH��xZH9�~UH��t0H��J�42L��I���,��M9�tGI�H�H���� u�H�B�H�R ��f.�H�R ������f�H��`���L�������E�HcU�H��H;�h��������H�]�dH3%(H��`����JH�e�[A\A]A^A_]þ�:���fDL���X��H�E��E�Hc]�H��� �x���H�E�H�@H9��w���HDž`����f�H��p���H�@ ���H�E�H�@ �u����E�D�hIc�A��w\H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�\$H����'H��������H9��BH�4�H�}����H��I�GE1�D�m�L�m�H�E��E�Mc�D�p�I��� ���H����I9���H�E�J���M�M��E��N��1�I��?H���C�}DH�����H��tE��uJI9�}EH��t8H��J�<H�|�H�BL9�tBH��I�L�H�H�Ɓ� u�H�A�fDH�I ��f��H�BH�|�L9�u�D�}�H��A���I��I�Mc�� �*���M;G}	I�G �/���H�}��!���H�}���������H���E������UH��SH��H��(dH�%(H�D$1����H��� uOH�OE1�H�T$H�t$H������H��tAH��tH�T$H�t$H���i��H�T$dH3%(u>H��([]�f�H������H����H��H���m���H�H���]����fD���G�ATUS����H��H���tH��H��[]A\�ұ��f�L�f��t'H�A��tFL��H�H��x#H��H��[]A\���@H����H����H�E�� uH�EH���fDL�����H���H�����ܺ��0����SH��H��dH�%(H�D$1����H��tH�T$dH3%(uH��[�H��H�$����������ATI��U��SH��H��0dH�%(H�D$(1�������������H�������H�
�ȃ���������H�>H��H�@��u;�� ��H����H�T$H�t$A����H����I�4$@��tsH�I�T$H���c���I�D$H�T$(dH3%(�&H��0[]A\Ð��uH�����tH��ƒ���u5DH�����H�J�l����H���(�H�������u�H�>@����H�H�|$I�|$@����H�H�|$��Hc�I�,�H�}�<���L�H�D$A�� t;I��H�HA��H�T$H�t$H���M���H�D$H�D$ H�D$H�E����DL�@H�H ��fD�{�H���h����k�H���o������������ff.�@��H��@��ubH�����tYH��Ѓ���tL��uG��@uh�� tH��zH����H��H	�H�H��Ð��u H�WH9�MH�wH���fD���� tH������f.�H�W��H��IOH�5K�H�81����0���&�����AVAUATUH��SH��H�� dH�%(H�D$1����H�E�� ��I��I��A��L9�t`H��������H9��wH��H��
��L9�~f�������H�EH9���H��L��H��L)��%}��H�E�� utH�]H�L$dH3%(H���H�� []A\A]A^�@��uDH����I��I����H�����L�eI����I�� H��I	�L�e�fDH%���H��H	�H�]�z���f�L�e�
������7���fDH��H���Eb���*���H�CL9��7���H��H���_��H�]�#����H�u I��L��L��衽��H���	��L�eH�}L��L��I����I�� ����8����N�H�GLOH��H�5k�H�81�����ATUH��SH��� tmH����H���.���H�MI��H�E uH�M M��H��1�L����x��I�$�� t H%���H��H	�L��I�$[]A\��I�\$L��[]A\�H�_�f.���S�F�H��H�����H��[�fD��AWAVAUATI��US��H��HH�T$(dH�%(H��$81�H��GOL�(���,H�|$(H�I��A�� ��H��H�����������YI�$���H�H����H9�HN�I��H�@�H�$H��	w,1�L�u�L��$�L��L��H)����I��H��I9��H�|$(H�H�ށ� �.H����H9�~=H�<$	w6H;�$��&1�H��$��f�H9��H��I9��I9�LO�I���|��I���I���H��$�H��$�H��$�H9���I��I��I9�L�@H��M9�IO�H����H�wH��H��$�H�OH� uH�O H��H��$�H� ��H��H��H��$��H��$��b�H���8DH�o�U����H�����a���M���?1��h���H��H��H��$8dH3%(��H��H[]A\A]A^A_�f��o�Hc�H�<����H�������L�D$8�H�lj�H��OL��$�L��H��$�1����H�D$8H��4LE��y���D1�H��`M��uKH�W�H���L���H����H9���M��tZH��H���(���DH�_�����H������L��H�u����H�|$(H�I��A�� M��t���H� �f.�H���	��H����aH��H��I��
��H��$�H�T$@H��$�I���cA�L��$�L�D$@L��$�K��1�H��H��I���
fDH��H��H�EH9�|H��I9�u�H�EL��L��I�4�I�<�L�$H)�H�����L�$H����K��I��M9��xH��$��fDH��$�H��$�1�H9���H�H�OH��uH�O H��H��$�H� u{H� H��H��$��H��$���H���|����H��$�H��u3H� H�4ǿ��H���T���f���A���fDH����f.�H������H��H�CHI�H���]���@H��I��I���>���f�H�w �M����H��H��?H�H�L9���H�
�?O1�1�1�����L��I��H�D$ �Ȫ��L��H��I�n ���H��H��:H��H�$E1�H���f���H�$E1�I��@H��L��H�L$L)�L�$����L�$H�L$L�I9�K��LL�I��M9�u�H�|$(H�H�|$�� ��H����I��L9���H�$E1����H�$H�|$H�$蚠��H�$H��莠��H�D$ H��H�@ ����H�$H��� t-L��H%���H��H	�H����DH� �7����L�y����L��L�D$�Ӥ��H��H�$�W���1�H�$L�D$�#f.�H��I�<�H�4�H�4�H��L9�}/H�t$(H� u�H�v ��L���{���H��H�$���H�$H��H�$謟��H�$�.�������H�@H��H�D$(H�D$8H�D$(H��cH��H�$1�H��襭��H�$I��fDH��L��H�$H)��6��I�4�H�$H�I��H�H�0I��H��I9�u�H������H�
AOH�$H�H�A���H��H��H��H��H���'HN����H�|$H�GL9�����I9�LO�H�|$H�L$E1����H�L$I��H�D$8H�$H�$L��H��H�L$K��� ���M��H�L$��tL�\$8H�$H��H��H�L$L�\$���I��L�\$H�L$��tL�T$8L��H��H��H�L$L�T$�h���L�T$H�L$K��K��I��M9��q����l���H��H�$�h���H�$���H��H�$�S���H�$����1����L��H�]COH�5��H�81�����O��ff.�@��ATI��U��H��S����L���H��H������H��[]A\���S���H��H���˱��H��[�fD��ATUSH�H���� ��H����H�������H�;������ �H�{�s���H��H�@H����X��H��I���	H��H�����H�E�uH�������M��t%I�$�tI�|$�]���I�$$���I�D$H��[]A\�@�� ��H�{���H��H�@H���HH��H��I���
	H���s���DH�GH������H�����H��H����H�E�u�H���������H��H���P���o���H������@H�����l���@H��H������������AWAVAUATUSH��H��� �I��I��A��M���H�|$�A�I�������H�� �9f�H�����H��tL9�~H�D$H���4H��J�<�aH������H��M���H��� ��I��I��A��M9���M����E1��u@H�����H��tL9�~H�EH��uH�E J��H�H���� tSH�����H��tL9�~H�CH��uH�C J�<�L��I���X���M9�~#H�EH���� u�H�E�fDH�C�f�I��M9���H�D$M��H�H�� ����H�D$H�@����L�e�����H�@ �����L� A�� tLI��A��L��謞��H��M��~�E1��L��蘞��L��H��I��H��薙��M9�u�H�E����L�`�H��H��[]A\A]A^A_�L�M�����H��[]A\A]A^A_����H�>OL��L��H�5��H�81��z��f.���U��H��SH��H�������~!�U�H�l�DH�3H��H���i���H9�u�H��[]�ff.�f���H��� tH����H��:O1�H�0�Lp��@H�O��f���AVAUI��ATUSH�� H�t$dH�%(H�D$1�H��� ��H��H����H����H�|$���E1�I�m�S�H����I9���H��N�4�L�����H���I9��H��� u.H����I�EH�I���� u�M;e��I�E ��H�P��f.�H�WH���Z���1�1��z���H���f�H�|$���H�D$H��� �H�HI�E�� �#H��H����H�Z�H��H������f�H��1��6���1�H��H���I��I�U�� ��H����H�t$H��L���e0��H�L$dH3%(H����H�� []A\A]A^ÐI�E�� ��H����L)�H��H�<C�L�H���t�H��H���i���H�t$H��L��L���/��1�H�t$M����L�D$H��L��L��D$肻���h���DI�U�J����H��I�EH�ك��� ����I�U�����I�E�[������f���AVAUI��H��ATUSH�����H��������H�H������H��������M�eH�H��A�� �iI��A��L9��aL��L�����H��L���IG��H��H��� �"L��H%���H��H	�H�EI�]�� teH��I�M��H��b[H��]A\A]A^ÐH�����H��H���U���L���d�[1�]H��A\A]A^��F��f�[L��]H��A\A]A^���DI�]I�M H��~�M��I��H��1�I��?H����f��M�I�L9�3L�uDL��H�E uH�M H��H��I��H���f��H�L9�~�I9��@���H�MH�E uH�M L��I��H��H��H)��Wf��[H��]A\A]A^�L�e����M�e���H� :OH�5��H�81����H�:OH�5K�H�81����ff.�@��H����w@��u'H��4OH�0H�����H��H�������H�6H��t�H��H������1��w�������I�����UH��SH��H��� t+H��H���H���9��H��%H��H��[]�f�H�_H�����H��~�H���֡��H�T�H9�v@H�H�2H��H��H�p�H�JH9�r�H���e���H��H��[]�ff.���駩�����ATI��UH��S����H��t6I�$�� u:I�\$�H��~H����H��H�H��H�ոH��[]A\��H�������L��H������L�M�H9���H��H��H9�v%H���H�:L�H��H��L�B�H�~H9�r�M��tdJ��H9�sWH��@H�1H�:H��H��H�y�H�rH9�r�H��u0L���H���L��[]A\�H��H�s�H��H�H��H)�H���/���fDH��H9�s��H�H�1H��H��H�p�H�QH9�r��M��t�J��H9��g������f���S��w>H�Ӹ��t
H��tH�H��H������H��[�H�����H��H�����H��[ú1����ff.����AWLc�AVAUI��L��ATM��USH��N�4�H��HH�t$dH�%(H�D$81����H��H�D$0H�D$H�D$(H�D$M��%�sH�H��L��A��H��H����H��L9�tPH�;@��u�H�L$H�T$A�H�t$轫��H��uXH�3@��tH��f.�H�����H���H�L$8dH3%(H����H��H[]A\A]A^A_�f.�H�T$(H�t$0H�D$H�H9�HN�H�$H9�}2I��L��L��I��A��H��H���P�L9<$u�H�$H�t$0Ht$(H9�����H�E�� uH�EH)�H��H��H�����H�������r��f���AVI��AUI��ATL�gU1�S1�H��8�H��H����H9�}AL��H��L9�tH9�tH��L���U���I�MH��H���� u�I�EH9�}I�E ��DH9�t��L��]A\A]A^�����[]A\A]A^����AVAUATI��UH��SH��� ��H����A�H9���H��yH�xwL���j��I�D$I�$ uI�D$ L��L�,�L�4�����H�S�H)�J�t0J�<0H�����L��豎��I�$�� t0uVI�D$H��H����H��H	�I�$[L��]A\A]A^��I�l$L��[]A\A]A^�fDH�_�<����H��H�����@��ATUSH��H��0dH�%(H�D$(1����PH������CH��ȃ����2���)��tL�G����L�&A���L��H�H������H��H�T$(dH3%(H����H��0[]A\�f�H�>@���#H�H�|$H�~@���mH�H�|$ H���<H�H�Ɓ� �
H�T$H����H���H9��H�H9�~H)�H�D$ H��H���H�CH��uH�C H�4��y��H��H�����H�E�uH�������H�T$ H�t$E1�1�H���c�������fDH�������� u;H�KH�T$ H�t$E1�L��蒧��H��H������H��uoH�|$ ����DH������H�t$�V��H�t$H������f�H�T$H�CH�������H�H�T$����d���fDL�����H���C������H�����諐��H���1���H��H����������k�����<���ff.����SH��@��tH��H�[���fDH�����H��[H�����ff.����S�aH��H�=�H�����H��[H���S�����AUATUH��SH������H�����t}H�E�ƒ���to��ujA��H��toH��H��[]A\A]��Hc����I��A�E�L�l�@H�3L��H�����L9�u�L��H�����H��H��[]A\A]�H�������H�6H��腫��H��H��[]A\A]����H�e0OATH�==�USH�0�R���H�;)OH�L,OH��H�2H��F���H�;H�5,!���w��H�;�����H�x\��H�5}y�̧��H�;�H�
���H�5{豧��H�;�����H�¸��H�5�z趢��L�%�(OH�;�H�5�zL��蘢��H�;1�H��>��H�5��耢��H�;H���H�5�z����H�;1�H�����H�5�z�R���H�;1�H����H�5�z�:���H�;1�H� ��H�5�z�"���H�;�H�C9��H�5J�����H�;�H�X$��H�5]z���H�;1�H�08��H�5� �ԡ��H�-U(OH�;�����H�5JxH��趡��H�;�����H�w��H�5z蛡��H�;�H����H�5�z耡��H�;�����H�q5��H�5�y�e���H�;�����H��b��H�5�y�J���H�;�����H��a��H�5�y�/���H�;�����H����H�5������H�;�����H�����H�5�y���H�;�����H�J���H�5oy�ޠ��H�;�����H���H�5_y�à��H�;H��-O�H�5Qy訠��H�;�����H�i���H�59y荠��H�;H�*yH�5(y���H�;�����H�x���H�5y�\���H�;�����H�=��H�5�x�A���H�;�����H���H�5�x�&���H�;H��xH�5�x���H�;�����H�����H�5�x���H�;1�H�i%OH�5�x�ݟ��H�;1�H��;��H�5�x�ş��H�;1�H��:��H�5�x譟��H�;1�H����H�5�蕟��H�;H��H�5�����H�;1�H�3��H�5Rx�g���H�;�����H��,��H�5>x�L���H�;�����H��,��H�5� �1���H�;�����H��*��H�5x����H�;�����H���H�5Wv���H�;1�H��f��H�5�w���H�;1�H���H�5�w�˞��H�;�����H�<e��H�5�w谞��H�;�����H��H�5�w蕞��H�;1�H��&OH�5�w�}���H�;1�H�$OH�5�w�e���H�;1�H�9���H�5|w�M���H�;1�H���H�5���5���H�;1�H�����H�5Uw����H�;1�H�����H�5������H�;1�H�i���H�5.w���H�;1�H�A���H�5���՝��H�;1�H�	���H�5w轝��H�;1�H����H�5��襝��H�;1�H�ٟ��H�5�v荝��H�;1�H�q���H�5�v�u���H�;�����H���H�5�v�Z���H�;H��(O�H�5�#�?���H�;�H�����H�5�v�$���H�;1�H��J��H�5~v����H�;1�H�����H�5���H�;1�H�����H�5Xv�ܜ��H�;�����H����H�5����H�;1�H��H�5-v詜��H�;L��H�5�Y 蒜��H�;1�H�n'OH�5v�z���H�;�����H�����H�5�u�_���H�;H�5$O�H�5�u�D���H�;H��$O�H�5�u�)���H�;H�����H�5������H�;�����H���H�5�u���H�;H��!O�H�5�u�ܛ��H�;H��#O�H�5nu���H�;H��&O�H�5=�"覛��H�;�H�W�H�5� 苛��H�;�H���H�53�"�p���H�;�H�ф��H�5�"�U���H�;�H��~��H�5�t�:���H�;�����H�KK��H�5|v"����H�;�����H�`O��H�5�t����H�;1�H�H���H�5�t���H�;1�H���H�5���Ԛ��H�;1�H�hv��H�5}t輚��H�;1�H�`�H�5��褚��H�;1�H�(���H�5St茚��H�;�����H�
���H�5At�q���H�;�����H��H�5.t�V���H�;�����H��$��H�5���;���H�;�����H���H�5t� ���H�;�����H���H�50q����H�;�����H�6��H�5�s���H�;�����H�k��H�5�s�ϙ��H�;�����H��n��H�5�s贙��H�;�H�ek��H�5�s虙��H�;�H�Zh��H�5us�~���H�;�H�?e��H�5os�c���H�;�����H�D��H�5�p�H���H�;�H�Y��H�5���-���H�;1�H����H�5������H�;�H���H�5�����H�;1�H�~��H�5�����H�;1�H�����H�5�r�ʘ��H�;1�H�^���H�5�r貘��H�;�����H�#!��H�5�r藘��H�;�����H�H��H�5-��|���H�;�����H�m��H�5�r�a���H�;�����H�r��H�5�r�F���H�;�����H�w���H�5mr�+���H�;�����H�<=��H�5Vr����H�;1�H��5��H�5Br����H�=�"�w���[]H��\OA\�f.����H��H��H�5^�N�9���H�@Hc@,H��H�D����H��H��H�5.�N�	���H�@Hc@(H��H�D����H��H��H�5��N�ـ��H�@Hc@$H��H�D����H��H��H�5��N詀��H�@Hc@ H��H�D����H�?锗��@��H�?�d���@��AVAUATUSH��H�5z�NH���R���H��H������H�������H�=ssI���ː��L��H��H���ݗ��H�EH�8D�p,D�h(D�`$H���h ���+��H��E��E��AVH�P��H��H�5"s1��X���XH��Z[]A\A]A^�f.�ATI��H�=�[OH���NUH���S�n���H�5��NH��H�����L� H�hH��[]A\�ff.�f�AUI��H��ATUH��SH��XH�T$0H�L$8L�D$@L�L$HdH�%(H�D$1�蔁���$I��H��$�H�D$H�D$ H�D$H��t^1��>f.��ƒ�HT$�$H�2�H��tL������H��L������9�t�$��/v�H�T$H�BH�D$�@H�L$dH3%(L��uH��X[]A\A]��͸��ff.�f���H��H��H�5��N�i~��H�@H�8H�������H��H�x���f��W��w1���u
H�G�D��H�H�x ���H���7���1�1�H��H�������SH���7���H��tH��[�Y��f��[�f�AWAVAUATUSH��xH�dH�%(H�D$h1�H������g��	H�
pr��I��H��Hc�H�>��fDH�NH�V�L��1����I��fDH�L$hdH3%(L���H��x[]A\A]A^A_�f.�1�1����I����f�H�V�L��1����I����H�~�H�~��	H��t���H�$H�u�H��tL�����H��H�D$�ƹ��I���N���fDH�V�f�H�NH�VL�F�L��1�����I������DH�FH��H�$�s���I�����H�FH�VH�$H�r�H��t	�i���H�UH�D$H�r�H��tL���J���H��H�D$����I�����H�v�H��t����H�$H�}�P��H�D$H�u�H��u��H�~H�NH�H�V1��H���)�����H��H���[��I���3����;���H�uI�ŸH��tL�����H��L���'��H�]H��u8�f�H�s�H��tL���j���H��L������H�[H��tsH�H������,t�H��L���<���H���Y�諴��I���fDH�EH����9��kH�u�H��tL�����H��L���|��H�mH��uþL���f���A����H�NH�V����H�~���H�$H�u�H����������@H�~�������f.�H�NH�\$PH��!1��H���{��H���I���H���@L�FH�NH�VM���w������fDH�NH�V�{���H�v�H��t�
���H�UH�$�H�BH��HE�H�D$H�z�'���H�D$H�EH�x����H�uH�D$�H��tL�����H��H�D$ 舶��I������H�v�H��t���H�}H�$���H�UH�D$�H�rH��tL���a���H�UH�D$H�r�H��tL���B���H��H�D$����I������H�v�H��t�
�����H�$�?���H�D$H�u�H����������H�NH�VL�F�����H�^HcCH�3H�DH�$�H��t���H�s@H�D$�H��tL�����H�D$H�{�H��t�B���H�D$HcCH�sH�DH�D$ �H��tL���I���H�D$(H�{ H�����H��t���H�D$0�CH�FH�s0H����L�������SHH�D$8����H�s8�H��tL������H�D$@H�{(�H��t���H��
H�D$H葴��I������f�H�~�H������Y������@H�vH����J�H��t�c���H��H�u�H��tL���J���H�uH�$�H��tL���0���H��H�D$H�\$���I������H�v�H��t���H�$H�}�0������c���I��H�u�H��tL������H��L���O��H�mH���"���H�EH������t�H��L�����H������L�vM���DM�>Ic��x��I��E��~6A�G�I�^M�t�H�;�H��t����H��L��H������I9�u�H�uL�,$�H������L�����������H�VH�����H�=�QOH�����%�������L�FH�VI����H�N����DH�^H�sH����ZA�H��t���I��H�u�H��tL�����H�3H�$�H��tL���l���H�sH�D$�L�l$H�������	���H�FH�|$P�D$P$�D$R�D$Q����H�����@H�V�����H�~H������H�v�H��tL�����H�uH�$H�~���������H�~�3����H�NH�V����H�NH�VL�F�����H�~�Ϻ��H�$H�}�º�����DH�v�H��t�e�H�}H�$蘺���T���H�v�H��t�=��H�$�o����+���������H�=�hH��1��"���f�H��t����H�=�OOH�$H�������H�=g�豛��H��H�wOO����H�D$81�����H��tH����H�uH�$�H��tL����H�=7OOH�D$H����輹���-���H�N����H�=�NOH����虹���-���H�=�NOH��������I�����1��Pu��I�����H�=�NOH��t{�W���H�����H�D$8����H�=f����H��H�~NO���H�=�e�蠚��H��H�nNO�@���H�=f�耚��H��H�6NO�C���H�=f��`���H��H�NO�e���H�=�e��@���H��H��MO�����\���1��z���D��H��H��H�5�N�q��H�pH�8H���)�f�AUATU��H�5�NSH��H����q��H��H�p9n0��H�81����I��H�L�h�d�H��H����H9���L��H�<�@��tX@������������H����@����H�GH91MOtOH���� u�I;\$}_I�D$ H�<�@��u�H�����u�H����H��u�H��OH�H9�LOu�D���	���H��H�����uI�$���H��H��[]A\A]�DH�1OH��a���f�H�QOH��I����H��
OH��9����H��OH��)����H�9OH��������H��Hc�dH�%(H�D$1��Ь��H�$H��uH�T$dH3%(uHH��ÐH��訙��H�<$�����xtH�:OH�5�cH�81�豲���H���x�����u�H�$�����f�H�wH��t��P���H�}OH�H�xx�ɐ��f�SH��H�|$H�|$����H�\$�r��H��H�����H�����H��[�ff.�@��H����USH��HH�|$dH�%(H�D$81��{��H��H�D$H�D$H�|$艺��H�5.�"H��H�D$蕄��H��H���j����H�=�"H�D$ �t��H�}JOH�D$(H��tcL�D$ �H��H�=JO�Zu����H�ھH��� ���H��H�����H�����H�L$8dH3%(u*H��H[]�fD�H�=2b�_���H��H��IO��~���ff.���H�����@��AUH��ATUSH��H���w���H����H�S �B���.����H�ZH�؃�H����H�������H�%�H=p��H���ʧ��H��H�CH�TIOD�``H����L�-(OH��I�}�\�����t&I�}H�������uH�����t������rH�E�� �5H����H���/H�Ef�8-e� H���PH�8�v���H���fDH����H��H���B���H���[]A\A]�@�H�=�`�ߔ��H��H�}HO�1������XH�H�P �B����������<H�H�P �B���������� H�H�P �B���~������H�H�P �B���b�������H�H�P �B���F�������H�H�x ���H�Ã��8���@H�}��H�����H��H��D��[]A\A]�����H��H���%���H�Ǩ�x���H������l���������^���H���T����q���H����A�H�ٺH�5$���H���w��H�����H���r���@H�E�/���ff.�@��H��H��OH�54_H�8肥��H��OH�51_H��H��t��H��H��FO�*o��H�5�NH�=�"H���RH��u�)f�H��tD�D��E��t�H��u!��D1�H��u1��fDH��t�D����t���H9�wҸH9�r�H��t�H��H��D�L�D�D
�E9�u.H�H�1�1��f�D�L�H��D�D�E9�u
H��H9�u��f�E9������H��t-�H�GE1���t�Z@I��H�@�H���uI��I�PH9�u���I����A�	L9�vJ��H��f.��H��H9�u�1��I��A����A�ҸA��UA��SA����pD)�H����tlL�V�I)�L��H��I��1�H��A��uH��I��1�A�1�tJA�H�D$I�H�H�D$ L�H�D$(H�8H�D$0H�(H�D$8D�[]�f�H��H)�H��1��H�n�A������@��H�G �ATA��UH���
S�i��H��H�E��ta�� H�H��waH��H%���H	�H��@H�+��u+H�����t"H��ƒ���tH�€�H�{H�t��t6H��[]A\�fD���H�H��v��H���g���H�kH�C�DH��蠫���ff.�H��OSH����H�8�#���H��H�H�� ��@t41���H�X@��H��H��H��H���HD�H����H	�H�[�H�PH�1҅���H�ɹHE�H�P[�USH��H9��?L9��UL9�M��HcD$ LF�H��M��t(E1�fDB��C�,�H)�H�B��I��H�� M9�u�L9�rDL9�w'�]DB��I��H��A��H�� F��I��L9�t8H��u�H9�u~H9�uy1�H��[]�M9�vG��L)�B��I��H�� M9�u�H��t3I9�sJ��H��fD�����H��H9�u�H���[]�DH9�uH9�t�I9�sf�B��B��I��L9�w�L9��m���J��H��fD�H��H9�u�1��K���H�
�\H��f�9H�=�\�j��H�
�]H��f�:H�=�\��i��@AWAVAUATI��UH��SH��H�7��@��H����I��I�$��@��H����I��H9ƺHM�H��H��H�COH�8����H�UI��H�E@uH�UM�D$I�$@uM�D$I�nI�@uI�nH��L��M��H��jH�����ZY��u4H��L��[]A\A]A^A_�f�M�|$L���g���L�oL���A���@H��H�����I�&����ff.��SH9��+L9��L9���D�T$1�E����E1�H��t&�F��C��I�L�B��I��H�� L9�u�M9�w#�=f�C��H��H����H�� B��I��M9�tH��u�I9�uWI9�uR1�[�fDM��L9�v�H��tB��I��L9�v�I9�u1I9�u,1���@H��L��I��H��L��I���=����C��B��I��M9�w�L9�v�J��H��f��H��H9�u�1��z���H�
~[H�dd�xH�=qZ�g��H�
\ZH�Ed�wH�=RZ�|g��ff.��ATUSH��H�6L�H��H��
L�Ƀ�9�A��H��
��A8�t$9�tH��[]A\�T���@H��H��[]A\�A����L�ʁ�@��H�G��@��H����H9���H��H���NH��A��H�8�'���L�I��A��@��I��L�CA��H�M��@��H��H�U��I�4$��@tdH��I�|$��H��j���XL��Z[]A\�L��H������@�Y���H�KH�qH9��\���H��tDI��A��I�q�F���I�t$I�|$�@H�MH�U�s���L�KL�C�K���H�GH�p����H��AUH��AT��I��USH��Ic�H��I��H�ʉ�H��H�hH��H��H�,H�p�NH��H�8���L�A��@��H�xL9���L��O1�1�D�S�I���xH��D�H	փ�~
�7�� H�� H��H��I9�rυ�t�7H��M��uH+xH��H9�u,H��[]A\A]�H�PH)�H����H�xL9��{���1���H�
[H�a`��H�=�W��d��AUMc�ATI��UH�Չ�SH��H��H��H�~�NH�8����L�PH�@uL�PM��t1�fDA��H��I9�u�H9���A�L��O��H��H9�to�1�I���x�I9�w,H��uGM9�v�H�
WH�l_�H�=�V�#d��I��H���9I��H��H�� ��I���f.�H��[]A\A]�DA�ɉ�A��H��A����pA����E��tOA���������H���t	��@��H��t{��H��H��H9�sQH��H��p+H����H��v�H��OH�5fVH�81��R���H��OH��H��H�5vYH�81��4���H��OH�5�VH�81�����H��O1�H�5tVH�81�����H�sOH��H�5oVH�81����H�XOH�5�UH�81��ϡ��H�@OH�5�UH�81�跡��H�(OH�5�UH�81�蟡��H�OH�5�UH�81�臡���PXH�5VH��H��O��H�81��`���PXH�5�XH��H��OH��H�81��?���ff.�@Uf��f(�SH��f/�fT�Q��f.pQ�
f(�f.����a1���af/�s���H���Y�H�kf/�s�H��1�H�s�Nf/��L$H�8������L$H�@H�ptC�;aH��t+fD�Y�f��H,ɉʉ�H���H*��\�H���u�H��[]�@H�p�f�f.�Pf(�fW
�`�(���H�5�TH�X�NH�81�����fDH�����1�1��<���H�5�T��H�5�T��fDAWI��J�	AVAUATUSH��xH�t$dH�%(H�\$h1�H9��IH�\$0L�d$@I��I��H��L�L$H�l$PL�D$�f���L���^���H���V���H��E1�E1�AW������L��H�����AYAZL�T$H�D$M9���I9���H��H��H���Y��H�t$(H��E1�E1�U������L��襉��H�D$8Z^H�T$I��H)�t1�fD��H��H9�u�H��谫��L��訫��H��蠫��H�D$hdH3%(uGH��x[]A\A]A^A_ÐH��E1�H��L��ARE1ɹ���������_L��AXH��H���NX���B������H�
#SH�n[��H�=R�E_��DAWM��AVAUI��ATI��USH��H��$�H�4$H�L$H��$�L�D$H�D$dH�4%(H��$�1�L9�r��A�t��9t����M���-I�GH)�H;$��M��tH;\$�H�D$@L�t$`H��H�D$ �u���H�D$PH��H�D$(�c���L���[���M����L��ASE1�E1��t$L�|$0���L�����]H��t$H�\$8�E1�E1���H���ˍ��XL��ZL��H���{��L����H��H�\$8�����H��L��QE1ɹE1�AV芇��H�D$H^_H�$I�L�H)���L��詩����@H�l$pH��蓖��H��L��E1�t$L�|$0E1�������L���+���^H��t$H�\$8E1�E1�������H������_H��AXL��H��L��貄��L���*���H��H�\$8����H��E1�E1�AV������H��L��輆��H�D$HAYAZH�$I�L�H)��i1����H��H9�u�L��H�l$p軨��M����H��$�dH3%(�kH�Ę[]A\A]A^A_�f�M��tH;\$�M���L�t$@L�l$PL��H�l$p�P���L���H���H���@���H��E1�E1��t$�L��L��������݋��X�t$E1�E1�H�޹�����L��轋��ZL��YL��H��H�\$8�d��L�����L���ا��H��E1�E1��U�����H��L���x���H�T$HAX1�AYH�t$I��H)�H��t@��H��H9�u�H��耧������L���p����H�
yOH�PW��
H�=EN�o[��H�
mOH�1W��
H�=&N�P[���ˑ��H�
�QH�
W��
H�=N�,[��H�
�NH��V��
H�=�M�
[��ff.�f�AUATA��USH��HH�7H�|$dH�%(H�D$81���@��H��L�oH���H�l$ H��蔓��H��E1�E1�AU������H��H���3���XD��ZH���&p��H�T$H��� ��H�p1��\$$�6���H��H�{H� tH�{D��H���g���H������H�3�� uDH�����|3tEH�D$H�D$H�D$H��H�L$8dH3%(uVH��H[]A\A]�f�H�sH�C�|0�u�H��H��蕉���L�oH�_����H��1�膣��H���K����)���f�H������uH��u��f.�1��ff.�f�H�7��@tH��H����H��t�H�wH�H��u��ff.�f�M�M���AVD�AUATUS��utI��H��E1�1��@�L�5�NE��G�E��x^A9�}YI��I��1�M��~
I����D�H��E��H�CE��t*A��_u�@�����_��@A��_u���1��Jf�E1Ʌ���@��t1���u5M��t"��tE��tE��A�� t-A��	A��v#M��u�I)�L�!�M�([]A\A]A^��H��M��~I��t�D��H��I��@��t�1�@��t��1���t��L9�vx1���tb��E1�1�M��tYf�F��L��L�tF��L�B��H�� I��M9�u�L9�v)fDH��tB��H�B��I��H�� L9�u��f�1��H�������PH�
{KH��T��H�=)J�SW��AWJ�	AVAUATUSH��H9�wuH��M��M��1�H��tf���H��H9�u�H��t8I��I��H��I)��A�H��H��M��L��H��I��H�����L9�u�H��[]A\A]A^A_�H�
�JH�6T�H�={I�V��DH�	AVAUATUSH9��1�H��t@��H��H9�u�H����I��I����I��L�,�1���I��I9���D��H��M��t�L�ދD�I��M�L��H�� H�D�H�� H9�v9E��I��F��C�4�M��M��L�H�C��H�� I�H��IE�I��L9�u�H��t�A�t��H�A�D��H�� �l���AD�I��I9��g���f�J���H��tH��J�4�HЉH�� tL��[]A\A]A^�H�
�IH��R�/H�=(H�RU��f�PXH�
LH�`R��H�=HH���+U��ff.���w:I�� H��t0H������f.��I	�H�� I��D�H��I��H���u��PH�
�KH�BQ��H�=�G�T���I�@H9�uJ��1�E1�E1�DB�4�H��I�D��H)�B�4�H�tB��H�� I��I�� M9�w�B��H�L)��PH�
�HH��P��H�=#G�MT��ff.�f���AWAVAUATUSH��(L�?L�gL�oH�_H�|$J��I�t�H�t$L��H)�H��H��H�D$�@H��E�t�I9���H�D$H�@ H����H�|$A�D���9���A�T��H�� H�1�H��A�ƅ�t�H�D$I�wM��L��D��H�,�H������H��t�DH��L��H��M��jM��L��H��A����ZY��u�H��E�t�I9��`���H��(1�[]A\A]A^A_�DA������}���DH�D$H�X��ff.�f�PXH�
)GH�@N�OH�=�EH����R��ff.�SH����D9�snA�@�D��u0#�ø����E��tE���A��D)�A�ȉ��p�����[�@��E��H�������H�� H�1�I��H��H��H���u�Ӊ�[�H�
�FH��N�
H�=
E�4R��H�
wFH��N�
H�=�D�R��DATUSH��0dH�%(H�D$(1�H9���L�$�B�D"����O�l��9��$D�H�BE1�E��t�f.�M��H��H�@D�@�M�JN��E��t�I��J�L9���L)�L)�H�\$H�$H�T$H�D$ H�t$H��'w	H��'v\H��H�-��f�A�H��H��H��H�D$ H�=���̎��H�D$ H��t�H�D$(dH3%(uRH��0[]A\��H�������fDH)�L��H��H�������f�H��A�E1��&����*���H�
&EH�|L�=
H�=aC�P��H�
�DH�]L�<
H�=BC�lP��H�
�DH�>L�;
H�=#C�MP��ff.�f�J�	H��H9�wQH��u=I��u7A��H��vYH��H�1�H��tD�D�H��H9�u�H���f����H��钛��H�
�CH��L�	H�=�B��O��H�
�CH��L��H�=zB�O��@H��I��L��L��L9�wH��v1I��I��H��L�����I��w�I��M�������M9�uL9�uH��L�����I��I��H��L�����ff.�@AUATUSH��(H�H�|$dH�%(H�D$1���@��H����I��H���NL�$�L��H�8� �H�T$H��H�@tWH��H�}H�E@uH�}H��CL��L�����H�D$H�D$H�D$H��H�L$dH3%(u:H��([]A\A]�H�R�f�M��I��L��L������DL�oL���Q���跄���AUATUSH��(H�|$H�4$dH�%(H�D$1�H9��,H�H���@��H�oH�H���@��H��H����I��H��
H��
H�H��H��H�}�NH��1�H�8H�ރ���H�T$I��H�@��H��L�$I�@��I��I�}I�E@uI�}M��H��H�����H�D$H�D$H�D$H��H�D$H�$H�\$dH3%(L��u_H��([]A\A]�f�H��H�H����H���@�%���L�aL���&���M�@�t����H�R�O�������I����I���f���H��H����uI@��uH�����t
�����
t0USH��H��H���|��H��H���|��H��H��[H��]��}��H����}��ATUSH��PL�O dH�%(H�D$H1�H���NH��tuH���31�M��tAHcKL�yKf�Hc{H��1�H��H��H��A�A�	u�LccH�{ L�H�{ H�D$HdH3%(��H��P[]A\�fDH�6M��u�H��t�LcKH�|$?A�@L��J�H��H��1�H��I��I��H��A��WI9�v�H���������@L)�H�I��H9���1�H�q����H�CH�xH� tH�x�H�{ ��tH�GH�C �-H�{ M���(���L��H��跗��H�{ ����fD�6�4����l���H�
~?H��E��H�=�=��J��H�>�NH�5`?H�81�赉��DSH�H��H���@tH��wk[�f�H��w:H��H����H�H��H	ʀ�@H�H��t�H����[���f.�H�uY�H��茐��H�C[�fD�H���s���H�S �oCH�PH���@t3H��H������H�KH�CH�[ÐH���X��H�C[�@H�K��f�H�K��rWH�H��I��H�S���H��H�t�H�t�H)��I)ȃ���5�����1҉у�I�4H�49�r�����f.��u��������C�����S�‹D��D����DAVAUI��ATI��USH�H�
��@��H��H�jH����H��~+�D����t�.fD�t����u H��u�I�][]A\A]A^øt�fD1��� u��tI�����Ѓ�����H������uGH���NH�8�?f.�H�ZH�j�n���H�����uH����H��uH���NH�8�H�z1�H�����H��I��H�@t'H�xH��u'H���<��M�4$�����I�][]A\A]A^�H�xH��t�H��赔��I�~I�@u�I�~�H���NH�8�H���NH�8�|���H�P�NH�8�m���H�)�NH�8�^���f�UH��AWAVAUATSH��H�EH�}�H�u�H�E�H�E H�U�L�E�H�E�dH�%(H�E�1�I�	H�E�H��`���H9���H��M��I9��2L��H��H9���H���������I�QH��H��H��H9���H�U�1���H��H9���M�����H��1�E1�H��H��H��P���H��H��H��H��X���H��@���H��H��H�E�H��H��H���H��H%�H���H��h���H��8����@L�EI)�H�E�J��H�}�L��fH�}�H�E�APM��HE�H�U�L��L�U�PL�L�]�L��H��M�A��L�U�L�E�I��L��L���$L��L���2��XZM)���L9�M��H�E�LF�L)�N�4#K�6H9��H;]�S���H����H��H+�h���H�E�H9�tH��H��$�H9�u�H��8���%�t	H)�H�L�H�D$H�]E1�H���H�E���f�1�H�U�H���Y������H��H9�u�M���O���H�E�H�U�H��H)�t,fD1�fD��H��H9�u�M��t	H�}��:���H�E�dH3%(��H�e�[A\A]A^A_]��N�;H�u�H�}��uK�#�u�H��M��L��J��H�U�L��L�L��p���L��L�]�H��x���L�U�A��H�E�L��p���1�M��_L�U�J��AXH��x���tD��H��I9�u�H��H�u�L��M��jM��M�H�<L��H���S��Y^M)��!���H�u�H��`���H�U�L�m�H��H)��������H�U�H�}�L��L�U�L��p���H��x����~���L��p���H��x���L�U��a����H��P���H��X���H��������H9�H�r+H��H���H��@���H�}���J��H�]E1�H�E���@�H���S_��H�
7H�u?�oH�=
6�4C��H�
:H�V?�qH�=�5�C���y��H�
�7H�2?�pH�=�5��B���UH��AWI��AVE��AUA��H�yATM��SH��H��HdH�%(H�E�1�H����@H��H��H�E�H��H���H)�H���H9�tH��H��$�H9�u�%��;H�t$H���H��L9�s$L�k�N�;A�<8x@�9H��H��I9�u��H�]�H��H�u��{��H�u�D��H���D~��H���ND��L��H�8�O��I��L�pH�@uL�pH��H�u��E1�S�����E1�L���jk��H�E�Y^I��I)�t1�f���H��I9�u�H���x���H�}�uQH�u�dH34%(L��uiH�e�[A\A]A^A_]�H��������H9�wAH�qH�}�H��H��H���H��H�������H�}��w����DH)�H�L����f���]���w���AVAUATUSH�M�L�6L�/L�J�,I�L9��`H��u��H����A�l����t�H��1��fDI��H��H��tE�#E��t�M��u�1I��t(F�d��E��t��fDH��H��I��tD�#E��t�H��tE1�f�C�D�I��L9�u�M�l�I)�I9�rL��I��H��H��L��I��I��v)L�/1�L�6H�L�M�I�)[]A\A]A^�@1��_����M����������P���!������m���H�<�1҃�M�D=)�1�H��t"@A�4�H��H	�A�D�H��H�� H9�u��I��A�0I�T=I)�t1����H��L9�u�[]A\A]A^�f.�H��uA�;t{I��M�عH��L��L������1�M�������fD1�M��t��A�D�H��L9�u��H��H��uUI�I)��z���1�A�D�H��I9�u��a���A�EI���S���1�f�A�D�H��L9�u��1���H��L��L���;����H�
H2H��;�6	H�=@1�j>����DAWI��I��M��AVL�4�L��AUN�,7ATI��UH��SH��hdH�%(H�D$X1���$�����M��uH��uyI�����؃�p��@����I���^I���A����A�ȉځ����0����1҅���؃���H����M������%��u.��uv�H�\$XdH3%(����H��h[]A\A]A^A_Ë�$�����J�T5��+�$��2�����	�t�� �����+�$���	�M����������L�T$H��L��L��H�D$4��PH�D$PPH�D$hPH�D$XPH�D$pPL�D$`L�L$X�@��L�T$8H��1�L�\$xH��$�1�L�|$pH�T$hM�L�L�T$`H��0O�;L�t$I��L�l$I��M��tsDE1ɉ��*f��H�WH�� ��Hct$,I��I�M9�t"H��A�H��H	ЍQ��͉�H����fD�|$(�΅�uM9�tkM�H��O�;M��u�H���|$(��t�A�A��D�Ƀ�A"D�����I��L	���~��� ������H�L��H���B�H�� H9�u��)�M9�u�L�t$L�l$H��uVI9���������H���B�L9�r�������t.�����M�����L��H�����������'�H���M�������B�D5�����������A��������ƺ��	���
������������I����I�����؃���tMA���$���L��A�؉�H��A����PI��H�����DA���
�؃�������؃�p��t�M��M���.A��L��J�|=L)�A������E����C�|:��1���7������A�����ك���t�A�؉ٺA����PL��H��L�\$�L$D�D$�|���L�\$�L$D�D$E���J�D5�H9�sH��2�8H��H���z��pH9�r�����tMM��tHI��I��E1�N�L�L��L��M9�s��0�:H��H���x��rH9�r�I��M�M�M9�uǃ�����%�����������A�M��������L��H�����������҃����E���A���g���A��ف���tωƺ��	�t�
���������뾃�������L9��h���H��H��ʉP�I9�w��P�����҃����A����A�f����놾��6��L��H���Z��������������C���1���5��E���3������L��L��H��L�T$���L�T$������5��L��H������������������������������H�
�,H�p3��H�=�*�7���*n��f.�UA��H���@S1�H����H�����jH��H��j@E1�A������H��[]�ff.�@UH��AWAVAUATSH��H�EH�}�H��x���H�U�H�M�L�E�H�E�dH�%(H�E�1�J�	H�E�H9��)L��L9M���H�E�H�L9���H�}�H�M�H9M�A��L9���A!�D��h���A����DžL���Dž<���I��I��L9}���I��I��L;}vqI�����J��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�d$L�uI���L�e�f.�H�E�H�}�H��L��N�,�jH�U�L��L�H��X���J�/N�*N�$(H�E�K�,L��P���H��p���H�E�L)�I��H��@����.��_AXDžl�������H�EL)���h���H��`������uH�U�L��L��H�}��u�M��I���_Y^H�}�L���Q����������l���M������`���M��L��L��L��X����u�K�<,H��P����H�E�M��O�,L��L���$H��H�����K�<,M��L��I��H��L���$H��p�������L�E�M��L��H��p���L���$��h���H������L�U���H���XZH��x�����`���M��L��L��X���ARL)�H��@���H��P���H��I���_H�}�M��L��L��M���$H���`��H��x���ZM��YI9�r
K�H)�I��H��L��L��L��PL��p���L���(��L�E�M��L��L��L��L���$A�����A[X��H�����t)M��t$A�$u1��f�A��u	H��I9�u�h���+�l���A���t7H��K�L�E�D�m�H��x���jA�H��p���H)�H��H�����_AX��L���������<�������H�}���H�E�dH3%(�H�e�[A\A]A^A_]�f�H��H9��#DžL���H��H�}�Dž<����D���f�H��H�U�H�}�M��jL��X���L��L���=��A[Z���rL�E���`���M��L��H�U�L��K�(H�}�P�D��l���AXAYE������M���6���H�u�H�}�L�����H�E�L�E�M����`���H�U�L��L��N�(H�}�ARL��0����/H�E�L�E�M��L��L���$H��H���,��L�E�M��L��L��L��L��$���H�}�L�E�M��L��L���$H����h�������H�}�L��L�ꉅH����V~��^L��0���_�����H�}�L�����Džl������DH�}��t���7���f�L�m�L��x���L�}�L�e�A�T�H�M�L��H)�I�<�M���B��H�M�L��K�<�L)�L�CB��L���$�������H��K�E1�E1�H��x���H��p���jH)�H��H���l��AYAZ���DžL���Dž<����)����H�E�H��x���L�E�H�M���H�E�H)�H�<�����O���DH��������1�L��H��H��L��H9��H�rHH��H�}�H��H��H��H���7��L�uH�E��0���H�}�L���4����l����v�����L���L���~f��H�
�$H��,��H�=�"��/��H�
�$H��,��H�=�"�/��H�
#H��,��H�=w"�/��H�
j$H�s,��H�=X"�/��f�AWM��AVI��AUI��ATUH��SL��H��8H�D$pH�D$H�D$xH�D$H��EwQM9�u$I9�uH��8L��L��H��[]A\A]A^A_���I��M��L��L��H��8H��[]A\A]A^A_���fDI��H�t$ I��L���U3��M��L��I��L�L�D$A�D��D$,�53��L�D$H�t$ L�E�\�E��u>L��H�t$ L�D$�3��L�D$H�t$ I�G�D�E���8����|$,���,����D�T$,E���5I��H�t$ I��L���2��I��L��I��L�L�D$A���D$,�2��L�D$H�t$ L�E��E��tJ�L$,����M9�vyH�D$I��M��L��L��H��H�D$xH�D$H�D$pH��8[]A\A]A^A_���L��H�t$ L�D$�.2��L�D$H�t$ I�C����t�D$,��u�M��M��H��L���|���H��I��M��L��H��L��H��P�t$ �t$ ��H��X[]A\A]A^A_�L��H�t$ L�D$�1��L�D$H�t$ I�C�<��!����L��H�t$ L�D$�1��L�D$H�t$ I�C�|���������ff.�f���H��8H�|$(H�|$(H�t$ H�t$ H�T$H�T$H�L$H�L$L�D$L�D$L�$I������u-�t$H�t$HL�L$L�D$H�L$ H�T$(H�t$0H�|$8���XZH��8�@UH��AWAVAUATSH��H��x���L�}H������H��P���L�����dH�%(H�]�1�L9�H�E���L9���!ˆ����L9��J�	H;�P�����I���������I�QH��I��H��H�I��H�E�H9��cH�]�L�rL��K�vL�kH�sL�I��H��@���K�DmH�H;]vsH�[H��H��H�uH=��H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�D$H���I��@I�@I�<L�H�}�I�<H�4H��(���H�<H�� ���J�4�H�H��0���H��H�����H�FH�H�u�H��p���H�H��h���H�H�H�����H��H���H�H��H�E�J��H�H�u�H�H�H�u�H�u�H�E�H�EH)�H)�H��`���I�[�H�E�H��x���L�H��8���L������H��X�����H�����I)�L����L�I�H�����L����H��L��L��L��L��`���L��X���jH��x���L�������H�}�L��M��L��8���L��L���$�V���^L�����_�%H��M��L��L��jL��8���L��L��L������H�U�L��L��L���L��`����$L��X���L��L��������L�����XDž�Dž8���Z1�1��DH��A��H�H	�H�QA��H�� I9�u⋅8�������H��L��L��M��jL��x���L��L��L���������AZL�����A[���������8���L��0���L��(����������������H�E�H�� ����u�L�����M��L��H��x����u�H�u�L�����H������B
A[X�u��u�L��L��M��H��@���L��(���H��p����
XH�u�H��p���ZL������L0�����u�L�� ���M��L��H��h����u�H�U�L��x���H��@�����H��h���H�}�AXAYD�T8E��L��x������u�L��M��L�����H��@����u�L��L��0���L���uY^H�u�A�|6�����u�H��X���H��H����u�L����L����H��`���H�u��0X�����Z9�8����H��H�}�M��L��jL��p���L��E1�H������C���AYAZH�}�A�1�L��H���(�����9������H��H�}�M��L��jL��h���L��H��p�����H�}�XE1�Z�L��H�����H��L�M�L��L�����H�}�jL��H��h���谽���E�Y�E�^D9u���H��H�}�H�U�M��jL��L��I���w���D�u�AYAZH�}�E1��L��H�����L�E�L��H�}�H��H����A���W�B��H�}�B��H�� tL��A�����}�9}���H��H�}�L�E�L��jL��M��H���K���Y^����}��wH��H�}�L�M�L��jL��H���L��H��贼��AYAZD;u���H��H�}�L�E�L��jL��M��H��臼��Y^H�E�M�H����H�}�L��t&H�U�1�@A��H��H9�u�H�}���L��L��I��H��H��M)�H��L�L)��H���U�L�U�H�E����RH��L�E�L��L��jM��H��H��L�]����AZL�U�A[L�]��}�M)���H��L�E�L��L��jM��L��L��L�]�謻��L�]�Y^L��H�}�H}�L)�E���H��L�E�M��H��jH���w���A]A^H��E�d�E��t��@E�L��H��E����H��u�1�H��P���t H������H��P���f���H��H9�u�H�}��H�E�dH3%(�TH�e�[A\A]A^A_]�H��X���H����H��`���H����H��8���H������h����H��M��L��L��jL��x���L��L��L��������AXL�������AY�t���L��L���J��������Dž8���L������X���@H��L����L����L��jH�����L��H��(���L���������L��M��L��H�� ���L������$H��(����J���L�����^��_L�������H��M��L��L��H��(���L�����jH��譹��L����L��L����H�� ���H��0���L���$����L�����YDž���Dž���^1�1�H��0����DH�ы�H�H	�H�Q��H�� I9�u�D�����L�����E���UH��L��M��L��H��0���L�����jH���X���^L�������_�$���H��0���L��踳��L�����Dž������f�H�}�L��蔳��H��M��L��jL��8���L��L��薸��L�E�M��L��L���H��`����$H��X���L��L��������ZL�����Dž8��������Y����L��L������L�����Dž�Dž8������DH��L�E�M��H��jH���X���AZA[�|����H��L�E�L��L��jL��M��L��L�]��&���XL�]�Z����H��H�}�L�E�M��jL��L��H��L�]����AXL�U�AYL�]����@H������H)�P���L�$H����L����l��L�����������H��H�}�M��L��jL��p���L��H�����芴��A[A^A�������H�}�L��E1��������@H��H�}�L�E�M��jL��L��H���A���_AX���Q���H�}�L��誱��D����E�H�E�M�H���<���H�����L��H��L�U��l��H�E�L�U�H�}�I�<����H�U�H��H���L�U���k��L�U�����H��H�}�L�M�L��jL��H���L��H��蝳��A[Z�������H�}�L�������E��j���f.�H��H�}�L�E�M��jL��L��H����_AX����f�������fDH��H�}�H�U�M��jL��L��I������A[A^D�u����2���H�}�L���u���D�u�A�������H��H�}�M��L��jL��h���L��H��p���躲��_AX�E����H�}�E1��L��H������H��H�}�L��L�����L�M�jL��H��h����j���_AX�����E��S���H�}��`������f�H�}�L��贯���u����H��M��L��L��H��0���L�����jH��裴��AXL�����AY���H�E1�H��H��H��H��������H9�H��;H��H�}�L�]�H��H��L�M�H��H�M�L�E��k$��L�]�L�M�I��H�M�L�E����H�� ���L����H��M��L��H��(���L�����jH�����H����M��H����L�� ���H��0���L���$�!���ZL�����Dž����������Y�>���H��0���L���q���L�����Dž���Dž��������L�������(���@H�}�L���4����E�����H�}�L�������E����H�}���7��H�
�H����H�=�����H�
�H�e�FH�=����H�
�H�F�LH�=c���H�
]H�'�@H�=D�n����Q��H�
0H���H�= �J��H�
	H����H�=�+��ff.���H��8H�|$(H�|$(H�t$ H�t$ H�T$H�T$H�L$H�L$L�D$L�D$L�$I��������tH��8ÐH�L$L�$L�D$L�T$H�t$ H�|$(H���vbI���������I�QH��I��H��H9�v�t$HL��t$H�
�XZH��8�fDH��H�E���L��P�t$X�t$X���H�� H��8��t$HL��t$H��Y^�[����UH��AWI��AVM��AUI��ATSH��XH�]L�]H�u�H�M�dH�%(H�E�1�H�E�L9�r�\A�D��A9D���LM��tI�FH)�H;E��ZM��t
H;]��I�FH�E�H��E�d�H�E�E���
E��A��D���M����M��I�NH9M���L��H���-H�u�L��H��L��C��L�M��'��M��L�M�t0H�}��H�U�Lm�H)�t1�@A�D�H��H9�u�M��tJL�u�H�u�L��M��L�I)�I��L���H��H]�O�'L)�t1�f.�A��H��H9�u�H�}���H�E�dH3%(�H�e�[A\A]A^A_]�f�A� � M��I�~��H9}���	�M��������H�H�����H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u���H�T$H������H�}��[���6���f.�I�FH=���H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u����L�L$I�������fDM�������kI�FH=���H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�L$L��I�����DH�E�1�L�]�L�E�H��H��H��H��������H9�H��3H��H�}�H��H��H�����L�E�L�]�I���)���H��������E1�H��L��H��H��H9ƾH��XH��H�}�L�]�H��H��L�E�H��H�ƉM����L�]�L�E��M�H��H�E�L�O���� ��1�M��t)1�1�D��@A�<�H��H	�A�4�H��H�� I9�w�A��A�21�1�D��H��t A�<�H��H	���H��H�� H9�u�A��H�u�L��H��L�M����M��L�M������L��E1�D��H��L��L�M��[���L�M��O���f�H����jH�E�H��H��H��H%�H)�H���H��H9�t{H��H��$���fDL��L��L�]���a��L�]�I�����DH�U�L��L��L�M��a��L�M�����L��M������H)�H�L�����H)�H�L��I�����t	H)�H�L�H�T$H����H�
�H���f
H�=`���f.�H�}���r0��H�E�1�L�]�L�E�H��H���M�H��H��������H9�H�r�H��H�}�H��H��H������M�I��N���� ��L��L�E�L�]������/��H��1�L�]�H��������H��H��L�E�H9�I��L��M�H�r.I�BH�}�H��H��H��H���
���M�L�E�H��L�]�����H���/���J��H�
	
H�z�d
H�=?�i������H�
1H�V�e
H�=�E��DI��w
����D���ff.�AWAVM��A��AUI��ATI��UL��SH��L��H��x�<$��$�L��H��$�dH�%(H�D$h1����L9�w�%DH��L9���C���t�D��$�A��E�����$���WH��$��ZI���PH���F��$���p��@����$����<$�H���y	H���A����	��$������&f.�L��$�H�Ł��|$L�I9���I9�s	I9����$�t$��ukH�\$hdH3%(��	H��x[]A\A]A^A_�D��$�A��I9����L��H��E���PH���G��$�%��D$1�������M��t���������$H��H��L��H�T$DRH�T$`RH�T$xRH�T$hRH��$�R��$�H��$�L�L$hL�D$p舣���L$hA�L��$��M�L�$�H��0A��$A���H�|$PL�H�|$@t-E1�D�7I����@��ш��HcL$<��H�L9T$@wۋL$8��t���D!�ʉ�D!Ɉ�L$8�M9������LD$H�@�<$�uD�L$E���$�$��g���L��H��1�L����
��1��T����H��H��L��H�D$DPH�D$`PH�D$xPH�D$hPH��$�P��$�H��$�L�L$hL�D$p�W���M��1�1�L��$�L��$�H��0A�@L�d$M�M�H�T$PH�D$@L�H���41����?@D��)΃�~<E�I��I��I	�D�Hct$<L��H��H��H�H9D$@��L9�w�����I����f.�H��$�������$������@����M��L��A�����L)㋼$�H��I��H��H����H���|$I�ދ�$�H�D$��P�|$H9���L��L��L��L�D$ L�L$L�l$(�5[��L�L$1�H��L�D$ H�L$(M�H+T$tA��H��H9�u�<$����|$�QD�\$E��tsM��tJH��L��M�L-�L��H��I9�v��2H��H���p��JH9�r�I��H�I�M9�w�D�T$E��t$I�D��I9�sA�U�I��H��A�M��PI9�r�E�����$����1��<$��H����H�������A���j���A�$���	�<$L)�A�UH���?N����f�I���8�����D�\$8E��tIL9�vwD��)�~E� ��I���� I��L	�D��I�����D)�H��I��I��I!�H��D�"HcL$<H�H9�vfD�HcL$<H��H�H9�u�M9�tLT$H�5���DAD��f�L�d$L9�v�@)��j���A���I��H��H	�H���Q���L9��H����$H�����������2���D�D$E���$����	I��I9�sA�<$��t�L)����H���p���A�$�B�!Ѓ�����Z���D�<$t��$���mA�$L)�A�EH���<��������1����$�!�����$���p������L��L)�f.�A�|�H�k���H��H��u�L��L��1��[	���<$�u���$��t�L��K�.M��t9�H��H9�u�A�E�����I���A�EI����A�E��������I9�u�E���Q���H��L9��u���C�<4�j���������X���L)����H��u
1�A�<$��������A������A�$���3��L)�fA�E�$H��������������������$��te1�H����H�������A���l���A�$H�؅҉�ɉ�D�L)�A�UH���/H�������H	�H����)�����������H��������)���D���$���v�����n���I9���M�����<$��<�����$���.���H��A��P���H��A�H���r���L��L��L�D$L�l$ �cV��H�L$ L�D$�N���A���}���A�$H�؉�f���҉�D�L)�fA�UH���&���H
��H��������:������$�������H��L��H�L$ L�D$�E���L�D$H�L$ ������E������H�D$A�H��H9������E1�A�<�A������H��tI�T��H��ȉA�H9�u�D$�����M����������@A�������A�$��f������A�$L)�H��A�EH���9����H����-����Q���A�$���L��L��L���
U���W���H��L��L��H���T��L��I�|H)����A�|$����A�<$��������>��fD��AUATUSH��(H�H�|$H�4$dH�%(H�D$1���@��H�$H��H��H�����@��I��I��A��H��
H��
J�\%H��H��H�^�NH��1�H�8H�ރ��ښ��L�$I��I�@��I��H�T$H�@tdH��I�}I�E@uI�}M��H��H����H�D$H�D$H�D$H��H�D$H�$L��H�\$dH3%(uKH��([]A\A]��H�R�f.�H�$H�oH���@����L�a����M�@�U����B=��f���ATUSH�� H�H�|$dH�%(H�D$1���@��H����H�E�NL�$�L��H�8���H�T$H��H�@tPH��H�}H�E@uH�}H��L��蟯��H�D$H�D$H�D$H��H�L$dH3%(u&H�� []A\�@H�R�f.�H�_�k����r<��f���AUATUSH��(H�H�|$H�4$dH�%(H�D$1���@��H�$H��H��H�����@��I��I��A��H��
H��
J�\%H��H��H�>�NH��1�H�8H�ރ�躘��L�$I��I�@��I��H�T$H�@ttH��I�}I�E@uI�}H��M��H��H��H���Pjj�`���H�D$(H�D$0H�D$(H�D$ H�D$0H�D$ H�� L��H�\$dH3%(uDH��([]A\A]�H�R�f.�H�$H�oH���@�	���L�a����M�@�E����;��f���AUATUSH��(H�H�|$H�4$dH�%(H�D$1���@�=H�$H��H��H�����@�7I��I��A��H��
H��
J�\%H��H��H�ޛNH��1�H�8H�ރ��Z���I��L9���I����L�$I�@uH�T$M�@H�@tH��I�}I�E@uI�}jM��H��H��j�m��H�D$H�D$ H�D$H�D$H�D$ H�D$XL��ZH�\$dH3%(uwH��([]A\A]��H�T$I��H�@u�H�R�|���DL��H��H9��E���H���NH�5K�H�81��!B���H�$H�oH���@����L�a�����~9��ff.���AUATUSH��(H�H�|$H�4$dH�%(H�D$1���@�-H�$H��H��H�����@�'I��I��A��H��
H��
J�\%H��H��H�>�NH��1�H�8H�ރ�躕��I��L9���I����H���������I�T$H��H��H��H9���L�$I�@u}H�T$M�@H�@t}H��I�}I�E@uI�}jM��H��H��j�{��H�D$H�D$ H�D$H�D$H�D$ H�D$XL��ZH�\$dH3%(u]H��([]A\A]�DH�T$I��H�@u�H�R�H�$H�oH���@����L�a����H��NH�5��H�81��[@����7��fD��AUATUSH��(H�H�|$H�4$dH�%(H�D$1���@��H�$H��H��H�����@��I��I��A��H��
H��
J�\%H��H��H���NH��1�H�8H�ރ�����L�$I��I�@��I��H�T$H�@tdH��I�}I�E@uI�}M��H��H��蠟��H�D$H�D$H�D$H��H�D$H�$L��H�\$dH3%(uKH��([]A\A]��H�R�f.�H�$H�oH���@����L�a����M�@�U����6��f���H���@t$H��H�¸��u�f��w��u!H��u)�f�H�W�H��t�H�O�	��t1��DH��t��5����������ff.����USH��H��dH�%(H�D$1�H���.����t2H�H���~�����H�L$dH3%(����H��[]Ð@��ubH�����tYH��ȃ���
uL��@��H�GH��t�H�w�6��uH��t�H���z�����u��� �����t�@����fDH���>H��I��H�=n�NH�$���H�����u��<I��H��H�=��NH�$�e��1�H������������H��H������������_����H����4��H��H���0�����UH��SH��H���k���H�3��@t H��H����H	�H�3H��[]��H�kH��[]�DSH�7H����@tQH����H��H���.��H���@tH��
H�S���[�f�H�CH�P�H�CH���[��H�GH�p�fDH��H�7I����@tH��H����^�����uH���DH�wH��C�����t�L��H���C���H���u	�� H��f����H���AVAUATUSH��H��0H�|$dH�%(H�D$(1����H���ZH�D$H���@��H��H����H�tH�D$H�_�NH��
���$H�8�ݏ���$H�@H�puH�p1�H��tf���H��H9�u�H�T$L�JH�@uL�JL�D$L��L�L������1�1�M��t#�A�<�H��H	�A��H��H�� I9�u�A�H�l$H�l$ H�T$H�L$(dH3%(�iH��0[]A\A]A^�f�H�|$H�7H��xs��@��H�GH9�v^H�l$H�t$�$H���Y����$A��H�D$H�@L�`uL�`H�T$H9���E��u@f.���c���fD�� u��@uPH�wH�H��t�莡����u�H������+���fDH�@�_����H��H�����F���f�H��H�����H���NH)ډ$I��1�H�8L�������$H�@H�xuH�xE��I�4�L��H�$A��E��E��A���n���H�$D��H���_���H�$�y�����0��H��NH�5�H�81��Y9������@H��x#u	H���D��H��1���H���-���DH�މ�H����H������ff.�@H��H�?������
t����@��H�pH�PH��u�f.�H�����L����t�H����D�F�Mc�E��I��I��J�
N�L
�1�M)�@D�H�� H��L�L9�u�� uEH�@H9�wEH��H�D�DH��H�PH�����a���D��f.�H��������?H9�v�H��H��H�D$�p��H�D$H���fDSL�H��L�Ɂ�@��L��L�GH��H�Ѓ��nH���fDE��E��uH��H��H��u�H9��UH���,H�CL�Cf�H����A�L��H�¾ H����t	�Ƀ�Hc�H)����H��5��H��6�W1�1�H��H9��V��I��I�4�f�f���Y�f��H���H*��X�H9�u�H��A��H��tH����s@A�����A��D���!�@��@������t�D!����u�XP���Y‰�f���H*��X�H��t������L�DA�� ufW��[�DL��L�CH��H�Ѓ�����f.�H�����L�L�Ɂ�@H��u����f�H�GL�GH���L������f.�H��1�E��E���/���H����!���H�J�H��H�����f��|�����ff.�@��AWAVAUATUSH��8H�H�t$H��H�|$I��dH�%(H�D$(1�A��@��H��H����L�d$I�$H�ǁ�@��H��H����L�~M��uL�~H����I��H��u�`fDH���PE�l��E��t�H��t�E�\��E��ufH��u��N'��H�|$(dH3<%(�H��8[]A\A]A^A_�I�l$�l���fDH�_�;����M�d$�f���fDH9�r�uA�|��A9|��r�H��
H��
L�-&�NH�{H��H��H�<$H�4$H��I�}1ʃ�蒈��I��H�@�H�@H�D$H�D$I�}H��H�H��
���^���I��H�PH�@uH�PUI��H��M��ATH�t$H�|$���I�AYAZ��@��H��I�V��H��H��u�-f.�D��E��uH��H��H��u�H9���I�M��@��H��I�U��H��H��u� �<���uH��H��H��u�H9�r{H�D$H�D$ H�D$H�D$H�D$ L��L��H�D$�%���?���DH�@H�D$���f.�I�NI�V�/���I�MI�U�n���L���H���F���L���8���x����>*���&��f���AWAVAUATUSH��8H�H�t$H��H�|$I��dH�%(H�D$(1�A��@��H��H����L�d$I�$H�ǁ�@��H��H����L�~M��uL�~H����I��H��u�MfDH���=E�l��E��t�H��t�E�\��E��ufH��u��N$��H�|$(dH3<%(��H��8[]A\A]A^A_�I�l$�l���fDH�_�;����M�d$�f���fDH9�r�uA�|��A9|��r�H��H��
L�5'�NH)�H��
H�qH��H��I�>H��H�t$1ʃ�萅��I��H�@�0H�@H�$H�D$I�>H��H�H��
���^���I��H�PH�@uH�PUI��H��M��ATH�t$H�|$蟒��I�MAYAZ��@��H��I�U��H��H��u�,f�D��E��uH��H��H��u�H9���I���@tuH��I�V��H��H��u��<���uH��H��H��u�H9�rsH�D$H�D$ H�D$H�D$H�D$ L��L��H�D$�"���G���DI�MI�U�P���I�NI�V�fDH�@H�$����L���X���V���L���H����Q'���#��ff.��AWAVAUATUSH��(dH�%(H�D$1���@�OC��H�ՍW�L�5�OLc�Hc�H��H��H�L�I��H��tGH��tH��H��H�H�y�NL�H��H�UH�L$dH3%(�4H��([]A\A]A^A_�������"�H�����L�,�H������D$H���NH�8�5���I��H�@I�@tML�(Lcl$L�l$I��L���=��I��H�T$L��I�H���NM�J��O�<����K������fDI�G�f�H�T$�����H���K���H�I���@t@H��H�P��H��H��u� �<���uH��H��H��u�H9�rH�d$�Y����H�HH�P�fDL���x
�����%�����ff.��AWAVAUATUSH��H�|$H�L$0L�L$(dH�%(H�D$x1�H���7I��H��I��L���������E����H�L$A�@��D$<D�I��@��A��A�q�Hc\$<H�
�OLc�H�L$ L��H��L�H�H��H�
j�NH�L$H���L��H�L$L�*H��L�H�H��H�D$@A��@�L�jL�zD�T$<H�D$pH�\$@H�D$HE����I��L�t$H�l$ �@I��L�zA��E����E��M9�r!��H�|$L��L��L����~�����jH�D$E�r�Ic�D�hA�u�Lc�L��H��L�H�H�T�H����L��L�*H��J�8H�D$L�N��A��@�f���L�jL�zE���j���L�t$L��M9�r0A���L��L��L��L��D�T$�N~��D�T$�����L�|$I� H��t"H�D$@�0H�H)�H��H����I_ H�L$(H�|$L��L���K���H�D$xdH3%(�^H�Ĉ[]A\A]A^A_�DH�D$H�x H��tNjHA��@��?���q�Mc�L�
�OHc�L�n�NL�L$ H��L�\$H��H�J� I�<�tOH�ؾ0H��H�H�D$L�H��H�����H�D$HX �S���fDI��L�zA�������E�����"��H�g���L�4�H�r�Hc,�H�g�NH�8��~��I��H�@I�E@��L�0H���NH�D$L����H��H�L$ L��H��H�L�L�,�H�L$H�,�����H�D$H�x ����fD�|$<������"�CH�����J�,�H���B���D$H���NH�8�@~��I��H�@I�E@�-H�(HcD$H�D$H���NH�D$L��L���7���H��H�|$H�L$L�H�D$ H�H�<�L��L�,�����H�D$ H���E���E������"��H����N�,�H��B���D$ H��NH�8�}��H��H�@H�@uH�BL�(Lcl$ H��H�T$ ���L��H�T$ H�L$H��L�H��H�H�T�L�,�H�D$ �e���H�D$ H�T��p���fDA�R�Lc�J�<H�|�H����L��H��L�I�H�D$N�,��{���L�H��A��@tLI��H�xA��L��M��u�)fDD��E��uH��H��H��u�L9���M��&���DL�PH�x�fDL�t$L��D9T$<t9H�D$H�x H��t+H�l$@�0D�T$H)�H�H����H�D$D�T$Hh J�,�I�D$E�L/�E���-E��A���H��L��L��L��C��D�T$H�D$茖��H�D$D�T$M�.L)�H��u�i�H���^A�L����t�I9���
Ld$0H�|$(E��H��M��L��D�T$M)�L�;H�|$L��H)��B���D�T$A�T.���t���C�D�����;I��u�L�L$(H�|$E��L��L��L������:���D���hL�\$P��"��H�c���N�,�H�n�B���D$ H�_NH�8��z��L�\$PH��H�@H�@��L�(Lcl$ H��L�\$PH�T$ ���L��H�T$ L�\$PH��H�L$L�H��L�H�T�L�,�H�D$ ���H�D$ L�\$PH�|��h���fDLd$0H�D$(E��1�M��H�|$L��D�T$M)�L�L�����M��D�T$����������M)������H��H�T$ �#��H�T$ �\���f�H�L$0L��J�4(K�L�H9���E1�1�D��M��t f�C�<�H��H	�B�4�I��H�� M9�u�A��O�\�E1�1�D��DC�<�H��H	�C�4�I��H�� M9�u�A�3L��H�ƉL$<L��D�T$ H�D$���H�D$E1�L��D�L$<M�.L��L��L)�L�\$D��H�D$跐��D�T$ L�\$H�D$�8���H�B�9���I�E�$���I�E����DL�Ld$0L9��H�
��H�a��H�=F��p�A�R�Hc�H�<H�|�H����L��L�\$ H��L�H�H�L$L�,�����L�\$ L�H��A��@��I��H�xA��L��M��u�+�D��E��uH��H��H��u�L9���M��_���A�P���@��7��Lc�L�\$ J�<0I�<�H���
H��H��H�I�H�D$J�,��s���H�I���@��H��H�P��H��H��u�*�D��E��uH��H��H��u�H9��7H�����A�P���@�7��Hc�H�L$ H�H�<�H���L��H��L�H�H�D$H�,��ܔ��H�8I���@tjH��H�P��H��H��u�,f�D��E��uH��H��H��u�H9���H�D-H�D$����L�PH�x����H�HH�P����H�xH�P뗅��~L�\$XH�L$P��"�H�����N�,�H��B���D$ H��zNH�8�|v��H�L$PL�\$XH��H�@H�@uH�BL�(Lcl$ H��L�\$XH�L$PH�T$ �o���L��H�L$PH�T$ H��L�H��H�H�L$H�T�L�,�H�D$ �=���H�D$ L�\$XH�L$PH�|��N������O��"��H�,���L�,�H�7�Hc,�H�,zNH�8�u��I��H�@I�@uI�GL�(H�f�NH�D$I��L�����I��H�D$ L��H�L$I�M�N�<�J�,����H�D$ J�<��V������G��"�H�����N�,�H���B���D$H��yNH�8�u��H��H�@H�@uH�BL�(HcD$H�D$H���NH�D$M��H��H�T$@����I��H�T$@H�|$H�L$M�H�D$ I�J�<�H��J�����H�D$ J�<��0���M���:����Q���H�\$@�
�H��L�\$PH�T$ ���L�\$PH�T$ �1���L���v������L���i����G���A�R�Hc�H�H�|$ H�|�H����L��H�L$PH�L$H��L�\$XL�HD$ L�,�菑��H�L$PL�\$XH��H���@��H��L�R��H��H��H��u�)fDE��E��uH��H��H��u�H9���M��G���A�P���@�)3��Hc�H�|$ H�H�<�H���MH��H��H�H�H�D$H�,����I��H���@�H��I�O��H��H��H��u�(DD��E��uH��H��H��u�H9��`H��t���A�P���@��2��L��Hc�H��H�L$L�H�H�L$ H�<�H���NH�D$H���'L��L�l$H��L�I�H�D$N�,��4���H��H���@tXH��L�B��H��H��H��u�$�E��E��uH��H��H��u�H9���K�D-H�D$�k���H�zL�R�i���H�zL�B�I�WI�O���������"��H�b���H��H�m�Lc,�H�bvNH�L$H�8��q��H�L$I��H�@I�@uI�GH�L�l$pI��L�����I��H�D$ L��I�H�
s�NI�H�L$N�<�H�D$pJ����H�D$ J�<��������WL�\$hH�L$`��"�0H�����N��H���B��L�T$X�D$PH��uNH�8�(q��L�T$XH�L$`I��L�\$hH�@I�E@uI�EL�HcD$PH�D$pL��L�\$`H�L$X��L��H�L$L��H�T$pH��L�HD$ H��L�l�H�D$P���H�D$PL�\$`H�L$XH�|��w��������"�\H�����N��H���B��L�D$@�D$H��tNH�8�Tp��L�D$@I��H�@I�E@uI�EL�HcD$H�D$pL���U�L��H�T$pH�L$ H��H�=ݵNL�HD$H�|$H��L��L�,�H�D$@��H�L$ H�D$@H�<�����H��L�\$XH�L$PH�T$ ���L�\$XH�L$PH�T$ ����L���������H��H�T$���H�T$�,������D��H�T$pA�p��c�H�����I��H���@�1H��I�}��H��t&H���
����uH��H��H��u�H9��H�d$p���H�T$HD��A�r�L�\$XH�L$P���H��艌��H�L$PL�\$XI��H���@��H��I�}��H��t(H���D��E��uH��H��H��u�H9���H�d$p�����H�T$pA�p��~�H������I��H���@t]H��I�W��H��t$H���D��E��uH��H��H��u�H9�r@H�d$p�y���I�EI�}�[����ۇ��I�EI�}����I�GI�W�L���,������L�������L��L�\$XH�L$P����L�\$XH�L$P�4����7���H�
��H�Y��H�=>��h���UH��AWAVAUATSH��H�}�L���l���dH�%(H�E�1�H��A��@��H��I��H��p���A��M��M����H��p�����I����F�T��E��t싅l���D�p�A��"�	H��������I9���Ic�L�%�NL�5IJNH��H��x���H��H�I��H����H��x���I�_L��`���H��H��I��H��H�H�M�H��H��X���I�I�E1��?�H��H����I9�r@E�|$A��A�T,��H�CH���H��I��E��H�I��A��@u�H�pI9�s�H�M�H��x���H�=�L���L��`���H�	H�<�E��H��
H����I9��j�M���l���D�E��M�H�}�H�E�H�E�E���eH��p���H�}�1�L������H�]�H�]�H�E�H�E��H�}�H�u�H�GH� tH�GH)����H�]�H�E�H�E�H�M�dH3%(�RH�e�[A\A]A^A_]�fDH�;H����M�&�ӈ��L�H��A��@ttI��H�xA��L��M��u�)fDD��E��uH��H��H��u�L9��H��H�U�M���H�U�M�fH�SH����H�C�e���f�L�@H�x�fDH�OL�H��p����B���@�M���l���A��D�E��M�H�}�H�E�H�E�H�E�Ic�M����H����H�I�<H����
H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�\$I�����f.�H��H�U����H�U�����E����H��x�����H�
��L�$�H�
����E�H��mNH�8�i��H��H�@H�@�3L� Lce�H��H�U���H�U�M�&H�H���~�H�;���fDH�����L�4�H���Hc�H��mNH�8�i��H��H�@H�@uH�BL�0H��L�5��NH�U���H��x���H�U�H��H��H��H�H��I�I�H�H�M����H�M�H�����HXI�<H����R���H��������H��1�H��H��H9�I��I�sC���fD�H�=V��������f.�H�B����H��H��I��I�rH�}�H��H��H���%��I��H��p���L��J���[!��E1�H�}�E��H��L��H����H�}�����H�}�����
���f.�H�{�H��tyM�f��=���L�H��A��@tEI��H�xA��L��M��u�'�D��E��uH��H��H��u�L9�rM����L�@H�x�H��H�U��c�H�U���A��u~H��x�����H�
o�L��H�
��Lc$�H�ykNL�E�H�8�f��L�E�H��H�@H�@uH�BL�H��H�U���H�U�M�f�H�S�H�����H�{�����H�{�H��tdM�f��6���H��H���@tFH��L�B��H��H��H��u�&E��E��uH��H��H��u�H9���M��s���H�zL�B�A����H��x�����H�
y�L��H�
��Lc$�H��jNL�E�H�8�f��L�E�H��H�@H�@uH�BL�H��H�U���H�U�M�f�H�S�H����H�{�����H��H�U����H�U��Q���H�{�H��taM�f��+���H��H���@tCH��H�z��H��H��u�&D��E��uH��H��H��u�H9��	M��a���H�BH�z�A����H��x�����H�
q�L��H�
��Lc$�H�{iNL�E�H�8�d��L�E�H��H�@H�@uH�BL�L�e�H��H�U���H�U�H�E�H�S�H��I�F����H�{�����H��X�����l���A�t$���H���$���H��H���@tRH��H�z��H��t$H���D��E��uH��H��H��u�H9�r(H�e��l���H��H�U��`�H�U����H�BH�z�H��H�U��A�H�U����F����l����;n��H��hNH�5e�H�81����UE��H��AWAVAUI��ATI��SH��H����`���K�<L�E�dH�4%(H�u�1�H�E�H�����J��H��H��H%�H)�H���H��H9�tH��H��$�H9�u����H�D$H���H�E�H�E�H�}�L�5.�NH��H�H��h����EH�}���Hc�L���H��H��P���H��H�M�<�I����Mc�D��M9�AF�1�L9���L�}��1�LcUL��mNL�}��f.�I��H��I9�tS�C�I���x�H��I��Hƒ�u�A��H��H�� H��A�TM9��H��D��1�I9�u��L�}�H�E�H9���	H���JH��P���H��NDžd���A�H��H��H�H��I�4H�H��X���H�E�H��p���H��@���f�H�E�K�\-L�u�E1�J��H�E�I�GH��x����nI�LE���@�hH��H��x�����H��M��H��L�]�H�E��~��H��H�E�H��jL�]�H��M��H��H��M���Oe��Y^I�I)�L9e���H�E�H�}�N��L�N�L9��u���M9���I�M��LE�M)��@�H��H��x�����L��H��L�]�I�H�E��
~��H��H�E�L��jL�]�L��M��H��H��I)�M���d��XZL9e��i�����d���D�pA��A�� ��H��p���L�xI���uH��p���I��H��X���H;]���H�E�H�}�D��d���H�}�H�E��t���@D�پ1�����I�OI�W���H�M�L��H��h���H��L)�H��H�������L��H���s�����fDI�OI�W���H�}���H�E�H�E��H�E�H��h����|8���u6H��H�E��@�t��H�����#H��u�H�E�HDžh���H�dN��`���H�u�H�8�~_��H��H�xH�@uH�xH��h�����H�}���H�u�dH34%(H����H�e�[A\A]A^A_]�@H�8H����H��X���L� �|��H�I���@tnH��H�P��H��H��u�'@D��E��uH��H��H��u�H9���L��M�����L��p���H��X���L��M�oL�`����M����H�HH�P�H��h���H�E������L���"��H��P���H�����D�]�L�<�H������E�H��bNH�8�0^��D�]�H��H�@H�@uH�BL�8H��D�]�H�U��5��H��P���H�U�Hcu�H��H��H�H�=��NH��M�<H�4H��I����M�?D�]�����H��������H��1�H��H��H9��H��qH�@H�}�D�]�H��H��H��H�����D�]�H�E�� ���H�}��T
������H��h���H�u�������D��d���E������L���"��H��P���H�5o��L�<�H�5�Lc$�H�taN�H�8�\��I��H�@I�E@uI�EL�8L�����L��p���H��X���L��M�/L� ����I�?���H)�H�L��K���H��p���H�x�H����H��X���L�`��z��I��H���@uoI�UI�MH��H��u�&D��E��uH��H��H��u�H9���M��V���L���M��c�������HDžh���H�E�H�E��o���H��I�M��H��뉃�d�������L���"�`H��P���H�=��H�52�L�<�Lc$��H�`NH�8�[��I��H�@I�E@uI�EL�8L�����L��p���H��X���L��M�o�L�`����I������L���w�����H��p���H�x�H��tdH��X���L�`��x��I��H���@��H��I�U��H��H��u�(DD��E��uH��H��H��u�H9��$M��O�����d�������L���"�GH��P���H�=��H�5�L�<�Lc$��H�_NH�8�Z��I��H�@I�E@uI�EL�8L�����L��p���H��X���L��M�o�L�`����I������I�EI�U�"���H��p���H�x���H��X���L�`�H��p���H�x��w��I��H���@tWH��I�U��H��H��u�#@D��E��uH��H��H��u�H9�rM��L���L���������L�������I�EI�U몃�d�������L���"�
H��P���H�=���H�5��L�<�Lc$��H��]NH�8�PY��I��H�@I�E@uI�EL�8L�e�L���\��H��p���H��X���L�h�H�E�H�G�L���:��������d���H��@����}������H���uv��I��H���@tmH��I�U��H��t!H���	�<�uH��H��H��u�H9�r2H�e��l�������H�
j�H�]��NH�=��,���'r��L������I�EI�U���H��\N1҅�H����H�8�CX����ATUSH�H����@��H��H����H��
����ts�����؃�����H��������H�{H����W��H��H�sI��H�@uH�sI�|$I�$@uI�|$H��u8L��[]A\�H�����u�H��tAH��u�H�mdNH�8�H�o�X��������L��[]A\�H��[NH�8�l����H�yaNH�8�\����H��`NH�8�L����H�A]NH�8�<����H��_NH�8�,�������G�����@��uH�����t
����H���ff.����H�5[NSH����H�8�V��H��H�H�� ��@t0H��H�XH�H����H�����H��H	�H�[��H�PH�1�H����H��H�P[����H��x�b���f�H��H���T���H� ���H����AUI��ATUSH��(H�H�|$dH�%(H�D$1���@�JH��H�oH����H���DH��H�@ZNA�LM�H��
H�8��L���U��L�@H�@��H����UM���E1�1���H�<��T�M���I��D��I�� H)�I�IH�H��C��H�� H9�u�L9�|)�DD��I�� H)�A�4�H��H�� L9��iM��u�H���8H��A�D������I9��H��H�$�-��H�$H�0 H�T$H�T$H�T$�uVH�����tNH���o���DDL�@�����H�_H�oH�������H�@L��H��L9���H�D?H�\$dH3%(��H��([]A\A]�f.�H������I�I��H��A�8I��H�� H9�|$�k��փ�L��H��A�T��H�� L9�tIH�y�T�I��H��u��@�T�H��A��H��H9��L9���A��H��L9�|�����L��M9�������H������������������M��t1�1��P���1ɿ�I�y�1�����AUATUSH��H��(H�H�|$dH�%(H�D$1���@�rI��L�oI��A��M���kI���H��WNIM�H��
H�8��H��H���S��L�@H�@�M����A�U�H����E1�1��DH�4�A�T�H���I�ɉى�H�� H�H�9I�IH��C��H�� I9�u�L9�~9H��u�DH���?H�щ�H�� H�>H��A��H�QH�� H9��H�T$H�T$H�T$�uH�����tH������H�t$dH34%(�eH��([]A\A]�f�A�T�H��A��H��I9����fDL�@����L�gL�oM�������H�@H���H�D�z���f�H������I�Y��H��A�0H�� L9���f�A�T�H�KH���g����׃�H��H��A�T��H�� I9�u�L9����K��I�\$�I��H�YH��t�H9�����I��H���H9��������H���������H�������H��t$1�1��h���I���K��I�Y�H��I�I����L�»����f.�AWI��AVI��AUI��ATUSH��(H�H�ׁ�@�wH��H����H���@�QH��H�NH����H���%f�H���D�\��E��t�M�aH���/H����H��t
E�T��E��t�H9��'�H���BH���MH���CI�$H�)M��tXH��
H��
�L�L$H��H��H�TNH��1�H�8���O��L�L$H�@H��H�p�oH��1�H��H�I�MM����I�H��SN�H��
H�8���HO��H��H�pH�@uH�pH��1�H��H�I��v����f�H�^H�N���I�i����M�a������|��A9|������M��t1�L�L$���L�L$I�EM��tM�H��(�[]A\A]A^A_�f.�M����H��
H��
L�UL�L$H��L��H�L$1�H��RNL�T$��H�8�QN��L�T$H�L$H�@I��L�XL�L$uL�XM���:I�H��RNH��H�L$L�\$H��
H�8L�T$���M��L�T$L�\$H�@H�PH�L$uH�PH�D$L��I��M��SL��QH���/���M��Y^H�D$t[I�?��@��H��I�O��H��H��u�*�D��E��uH��H��H��u�H9��vM�}M�������H�8��@��H��H�H��H��H��u�'@D��E��uH��H��H��u�H9��I��W���DE1�E1�A�M������S1�I��M��QL��1�L���D���X�ZM����������H�xH�H�t���I�I�O����H��
H��
�H��H��H��H��PNL�L$H��1�H�8���uL��L�L$H�@I��H�xuH�x1�A��H��L��L�L$�'f��M��t!���[�L�L$I�I��� I�tPH� M���j���M�}�a���H�p���H��H�D$���H�D$���L��H�D$���H�D$�s���H� ����ff.�@AUI��ATI��UH��SH��H�dH�%(H�D$1�I��A��@�*H��H��H�Ѓ���H�WH���fDD��E��uH��H��H��u�H9��-M����H�EH�UH��H��H����� ��t	����Hc�H��H)�H�X�H�� ��H��`���H����H��1�L��H���@���L)�H�������f�H���|H�<$�z�����賺��H�D$dH3%(��H��[]A\A]�@H��H��H��H�U��H��H���J���H���n���1��p���H�GH�WH����������f.��@����H��H��腼��H���-���DH���0��H�MI��A��@����(��UH��SH��H��H�I��A��@��H��H��H�ȃ���H�NH���DD��E��uH��H��H��u�H9���M��uHH�CH�KH��H��H����� ��t	����Hc�H��@H)�uOH��H��H��[]���fDH��H��H��H�K��H��H���fDH�FH�NH���U����DH��H��H�T$�X���H�T$H���fDH�����H�I��A��@�A���ff.�AUI��ATI��UH��SH��H��dH�%(H�D$1�H����I�UI�$H��
H��
����8�tqH�<$H���@t\H����t\�O��uH��tO�[����uFH��t��.�H�}1�H���pM��H�EH��t,H�<$�L���VM��H���H�GH��u'H��tH�$H�H�D$dH3%(uH��[]A\A]�H�W���u��u�����ff.����H��������?H9�w
H�D?����ff.���H�@H�x
H�D?���[�ff.���SH��H��dH�%(H�D$1������tsH��H��?H�H1�H)�H��H�$H��H�� H��H�A�@H��H9�sg�P���t��҃����Hc�H��t���H)�H)�H�\$dH3%(utH��[�@H���@u@H�HH�@H��H�H9�w��H9�t+�P���u�� ���H��
H�H����1�H��t���|�����f�ATUSH���@t4H����t4H�GH��I��H�����uG1��K���H�����Lf�H�_H��uH��[]A\��H�GH��I��H��H�����t�������H�H)�H������u?H�UH�E@uH�UH�D��1��
�H�ȋH�� H�H�H�H9�u�H��[]A\�H�4JNL��H�5�H�81����ATUSH���@t4H����t8H�GH��I��H�o��u?1��Z���H�����D�H�_H�oH��uH��[]A\�H�E�H��I����t�������H�H)�H������u&H�D��1��H�ЋH�� H�H�P�H9�u�H��[]A\�H�dINL��H�52�H�81��H����AWAVAUATUSH��dH�%(H�D$x1�H����H��H�t$H�����H��������H9�w[HcT$H��H)�1�H��I��H��t
H)�H��I��H���t	H��tL�eH�L$xdH3%(�vH�Ĉ[]A\A]A^A_�D�d$H�\$H�\$<H�t$H��L�l$TH�D$�D$8D�d$4��x���H��L��A�L����`��E����L�d$DH�t$L���x���D$H��u�D$D��������L$\A�����L�t$LH�\$`jM��AT�L��H��萜��A_XD�L��E1��V�����H�L$(j@A�H��j��A��i���_AX��H�D$(�������fDH��������@H��L��A�L��j��L�D$D��C��XZ����t$\A���u�D$X����A�H�\$`N�$��L��L��H��萾��J�#H�S�H���@�H9�u�D�D$D1�L��L��H��L�t$L��[���D$P�D$L����DH��A�H��H��j��L�D$H�E��AYAZA�H�L$ j@A��jL����/���H�D$(H+D$0I��A[A]����T$X������D$T��u0H�D$`H�\$`L�t$LH�D$hH�D$L�.���fDH��u2�D$LL�t$L�D$PH�D$`H�\$`H�D$h���DA�J���D�@9DPs L�t$L�L��L���+���I��u��H���f���I��u.H�D$T1�H�\$`H�D$hL�t$LH�t$DH�D$`H�T$L�z���A��A�����A���p���������H��dH�%(H�D$1��������H��H��?H��H�H1�H)�H��H�$H�� H��H�A��t	�A�p���u:H��H9�r�H9�t	H��H9�tj1�H�t$dH34%(u}H���H��H9�sϋ��t�H��H9�u��6fDH���@u@H�HH�@H��H�H9�v��p��y������P��������f�H��
H�H������ff.���AVE��AUM��ATI��UH��SH��H��0H�|$dH�%(H�D$(1�H�D$H�D$�����H�D$��tYH�xDH�D$ �H�t$ AVH��M��I��AU�k���ZYH�L$(dH3%(ufH��0[]A\A]A^�@H�ؿ�����fDL�L�ҁ� H�����A��@tH�pL��H����H����H�pH�P�v�����ff.���A��E1���ɩ��f�AV��I��AUATA�����UDE�1�SIc��>���H��I� ��H��������H9���H�u1��`�I��H�PH� tH�PI�H�Z% H�������+�A�H��H��L��E)�A��Mc�����H��t#H�+H���D�H���
�K�H9�u�[L��]A\A]A^�f�H��x'H��1���I��H�XH� �{���H�X�r���H�EINH�5g�H�81���ff.��UI�҉�SH��H��(dH�%(H�D$1�H���@��H�������O��uH����H����O������E1�H��A�BL�׹�������y���؅�t=����H�D$H����H�$H��;��H�߉�H����H	�����"D��~SH�H������� t	@�H�L$dH3%(u<H��([]�@H�GH��t�H�W����/����D���@H�D$H���t�������H��@NH�5��H�81��j�f.���AWI��AVI��AUI��L��ATE��L��A��UD��SH��(H�<$L��dH�%(H�D$1�H�D$�.D��1�H��������I��I9���J��L)�I��H�hH�����)�H����A����H�\$QM��M��ATH�T$L��H��H���@i��A��XZA������D$�\$H��H�� H��YE���8H��������?H9��%H�\�H�|$dH3<%(H����H��([]A\A]A^A_�f.�H��>N1�H��L$H�8�X:���L$H�@H��L�PuL�PQM��M��L��ATH�T$L��H��L�T$�oh��AXAY���A��L�$t_H���%���H�A���&E������ H�E���&���5���H������(���H���p���H�������H����H���mA���D$�\$H��H�� H��
H��A�������xH��H��H9������H��=ND��H���H�8���?9��H��H�H��H�x��@uH�xH������H�t$�q�����@H���@��H��H�{H����H���������K��������E���������H�E������H���@�lH��H�S��H��H��u��@�<���uH��H��H��u�H9�����H���������f�L��L��L��L��H��I�̓���H��H��L��H��I��H��H�H)�H�̓�H��H��H��H9�rKHH��H)ȉ�H����H)�H��������H9������H�DNH�5��H�81����H)ȉ�H����H)���H���x���A�������H�#�������E���&�������f.������fDI��H��������!�H�sH�{�U���H�KH�S���H��;N1ҾH�8�7��H��H�@H�@uH�CH�T$H�H�CH�@uH�C�@A����������������A��1ɺ�:��f.���AWAVAUI��ATI��USH��HH�t$dH�%(H�D$81�H�D$0H����D��L�D$E��L��M����A����N�\�H��N�E1��L��H)ىփ� �]��	���QE����H�L$@��+�Y@��-��H�����D$H����H�I9���H�
ٗH����H�=C��m���DH�����M�D$1�A���4�E��D$�|$"�fH�D$H��H���q�H��H)�<0H�t$0A��H����A ��5H�ҸL�L�D$LH�D��H��E1���H�t$0E1ۃ�A���2@E������_��A���0A�I9��H���SH�C�у�0u�H��E��E1����L9�tH��A��{���@E��tH�L$L���M��tI�}M��t	H�T$0I�$H�t$8dH34%(�[H��H[]A\A]A^A_�f��D$H�����H�D$H��H��������E��D$��"�
H��H)�H�D$0�H��>N�����9���M��t	H�D$0I�$L�|$0H�t$H�߉�L�D$,L��蛜��H�NjD$,����H�L$0H�H��t	�:_��M����I�UM��tI$H��������?H9��<�|$H�D?��H��H��H�D���@�������^��
����������;0��H���D$���H�|$0tH�߸M���q����H���X���A���A���fD1�M��L�D$L���‰�H���VF����t�H�t$H�M��tI�uH�L$0M��tI$D�E��|$D���!E��tA��A� ��A)�H��H���A9������H��������H�����������D$���|VH�T$�D$�
�����;0u�H�D$H��~��s�V���6��H�
����Hc�H�>��@�����)�݉D$�Y���fDM��tI$�H���E���H�L$H�H9���H��y�:����������� t��	��v��
���fDH���f.�HcT$H��Lc�1�I�D�I��H�H����H��A��I��H���[������L�D$E��tH�t$0���uhM���I)�L�T$��M�����L�I�L9�����H�
��H�,��BH�=a�苝��L�D$E��tH�t$0���t���	��v�H���@H�������H��H���D$H�L$����H���m����;0tDH���D$���H��A��H��H���'8������f��;0��H���D$����K��߀�Bu�H������H��H���D$H�T$���H�������H�P�H����D$H�T$�e���H������H�P�H���
�D$H�T$�<���H�������H�P�H����D$H�T$����H���z���H�P�H����D$H�T$����D$�������k���|$tdH� ����H������H��H���D$H�L$�����L�T$���fD�;0t7H���D$�a���H� ����S���L�D$E���
���H�t$0�����K��߀�Ou�H�������H��H���D$H�T$�����K��߀�D�5���H���j���H��H���D$H�T$�����K��߀�X�
���H���6���H��H���D$H�T$������M8���H��H�
�H�J��BH�=�詚��H�
�H�+���H�=`�芚��f.���SA��H��H��dH�%(H�D$1���u=H��1�A�H������F����H��HD�H�L$dH3%(u4H��[�1�1�A�H������
���H��u�H�5g�H�������p����ATA��U��S��H�� H�|$H�|$dH�%(H�D$1�莿��H�|$����H�L$H��� uWH��H�y��H��E��uQH�T$1�A�A�������H��HD�H�\$dH3%(uEH�� []A\�f�H�yH�qE��t�1�1�A�A���1���H��u���t�H�|$�6�������������f���AWA��AVAUATUSH��8H�|$�T$dH�%(H�D$(1��F���"���^�A��A!���H�|$H�l$���H������H�T$I��H��� ��H�BH�D$A�>-A�uH��I��E1�H�D$�T$H�L$D��L��L�D$�?������H�T$L��t��A� ��A)�H�L$E��L��D���(2��H�l$ H�T$�uH�����tH�����H�t$(dH34%(u0H��8[]A\A]A^A_�H�����D���D���D5��H�|$�Z5���5��D��AWAVAUATU��S�^�H��8H�|$dH�%(H�D$(1���"�H�|$L�d$A��蹣��L���1���H�T$I��H��� ��H�BH�D$A�H��~A�>-uH��I��E1�H�D$H�L$L�D$D���L����=������Hc�H���1�A��Hc4�H�D$D��H�D�H��H�T$L��L�H���1��L�d$ H�T$�uH�����tH��诜��H�\$(dH3%(u%H��8[]A\A]A^A_�H�����;���H�|$�4���������3��ff.���AWAVAUATU��S�^�H��8H�|$dH�%(H�D$(1���"�H�|$L�d$A���i���L�����H�T$I��H��� ��H�BH�D$A�H��~A�>-uH��I��E1�H�D$H�L$L�D$D���L���<������Hc�H�j�1�H��Hc4�H�L$D��H�D�I��H��H�T$ UL�L��L�����L�d$0H�T$ZY�uH�����tH���X���H�\$(dH3%(u.H��8[]A\A]A^A_�f�H�����+���H�|$�2��������2��ff.���AWAVAUATU��S�^�H��8H�|$dH�%(H�D$(1���"�H�|$L�d$A���	���L��聱��H�T$I��H��� ��H�BH�D$A�H��~A�>-uH��I��E1�H�D$H�L$L�D$D���L���,;������Hc�H�
�1�A��Hc4�H�L$D��H�D�H��H�T$L��L�L��-Q��L�d$ H�T$�uH�����tH�����H�\$(dH3%(u%H��8[]A\A]A^A_�H�����;���H�|$�j1���E�����>1��ff.���H��������?H9�w
H�D?���'��ff.���H�@H�x
H�D?��H��x�f'��fDH��H���T'��H� ���H������AVI��AUI��S1�H��yI�ݻI��I��H��*N��H�8�B&��H�0H�HH����@tPM��L��D�)M�� D�qH�� D�I�Q�D�D��E��uH��u�1�H��u'H�P��tH� ���[A]A^�f�H�H�f.�H����H��H	�H���ff.�f���1҅���鰊����1҅���������W�����Ƿ������7�����@����USH��H�I��A��@��L�GL�OM����L���E��E��uH��H��H��u���H��L9���M����H�SH�CH��u�eH��t_�L����t�U���"��H��������H9����U���H�߅���H��w}H��[]���f�I��L�OI��A���S���H���H�=m�[]锉��@���H��H�S���a����H���X���H�I��A��@�.���fDH��[]��5��DH��[]������..��H��(NH�5X�H�81����fD��SH�5��H���|��H��� uH��H9�wH��[�H�a(NH�5z�H�81��H�����SH�5��H���,��H��� tH��x[�DH��H9�wH��[�H�(NH�5F�H�81�����ff.����SH�5V�H�����H��� uH��H9�wH��[�H��'NH�5�H�81�������SH�5�H���l��H��� tH��x[�DH��H9�wH��[�H�U'NH�5�H�81��<��ff.����H����,���uH�����tH��H������H�����H������f(�fT
W~f.
G~w
H����1�H�=\��D$�\����D$f��f/�w��}H�����P�H���ff.�SH��H�� dH�%(H�D$1�@�����@���������RH��/�\H��H�t$���H�t$H�0fH~�H9���fH~�H��<��������H��H�����B���f�H�L$dH3%(��H�� [�fDH������������
to�����W�������H��/�N����Ff��f.���/H������ƒ������@�Ҵ���m���DH��H��}��H��H�T$1�H�����H�D$��>���H������2���H���
����%���D������H���̨�������H��H9�txH��H��?H)�H��H��H	�H��H�D$�~D$����@H��f�H9��2���H���H��H��?H)�H	�H��H�T$�~D$��������D���@H�t$�6���H�t$H���R���H��H��H��H���>������H��/�����@������UH��SH��H����uk��t�؃���uAH��H��H��[]�H�������H��ȃ���
�j�ڃ���tă�t�H��H��H�ﺇ[]镞��DL�A��@��H�wH�GH��u��fDH�����T����t�H��wR�N�Hc���H��H��H�8H�|8�1�H)�f��
H�� H��H�H9�u�A�� ��H��������?H9���H���f���H��@��uRL�UA�� M��tU�H��[]Ð�؃�����������DL��H�GH�����-���D�H9��}��DH��H�����[]�f.�H�@H9��_���H��H�l�Z���H�7H��I��A�� ��H��
��8��L�����@tIH��H�S����@t&H��H�}���V��M��u��H�H�D����H�uH�}��fDH�KH�S�fD��SH��H�� dH�%(H�D$1���������Ff.��Gf(�fT
�xf.
�x��f/�vkH�����H�L$dH3%(�H�� [�f��D$�D$述��H��H��蔕���L$f�f.���Eф�u�H��u�f/�v��땐H��H9�uqf�H�|$���f(��t��D$���f/�w�f/���E����H,�H�H9��4����f�f/�w�f/ȸ� ��������H��H��H��?H)�H	�H��H�D$�~D$���fD���������S��@��u@��tQ�����ui�R�����{���H��t%H��蝛����tx��t[���ta��D1�H��[�f�H�����t������
t������t���t�H�W�H��[���D�����D��x��f����y��D��1��5���D����"���f��������f��������f���SH���uS��t�؃���u1H��[�H�����tWH��ȃ���
tb�ڃ���tԃ�t�H��H��[�G����@��uH�����t�̌��H��H9���1�[�@�؃���t�H��H��[����f�H�H��H��
H�ƃ�H��
��@8�u�I��A��@tHH������@tLH����H9�u�H��H�sM��tGH��������~����[��H�G�f.�H;C�V���H��H�s�H��f���SH��H�� dH�%(H�D$1������tJ�Ff.�zf(�fT
3uf.
#uf��v<1�H�L$dH3%(��H�� [�f�H��H9�uif��f�H�|$�L$����L$f.�z�u��D$��th�
 �f/�w�f/�s��H,�H��H9��m����j���DH��H��H��?H)�H	�H��H�D$�~D$����fD�c���H�T$dH3%(uH�� H��H��[�#���>���ff.���SH���uiH�����tMH��ƒ���
u@H�H��H��
I�Ѓ�I��
A��A8�u#H�с�@t5H������@tH����H9�tUH��[��H;Vt1�H��[�H�W��f.�H�vH��H��t+H���j�����HD��DH��H����fDH���f���H�����H�0 �uH�����tH��H��鴉��@H���ff.���H��裖��L�A��@��M��H�PI��A��M����L�Ɂ� tP1�fD��uH��L9�u�H��H�D$�\���H�D$L�I����L��uLH�����tDH��H������f�J�<�����H�4:�f�L��L�V�H9�u�f���u*H��L9�u�H�����H���DH�PL�@�O���H�:�
f.�H��H�q�H9�u�I�� L��i�����@��t6H��H��H��?H�H��H1�H)�H�H����H��
��8��(郿��H��@����H������������
�'�����tw����H�t$芺��H�t$�NH�0�X�fH~�H9���fH~�H��<��������H��H����H���@�����u`H�t$����H�t$f��H��H9�t�H��H��H��?H)�H	�H��H�t$�~L$�Z���f.������tp�+H�����������H���y���fH~�H��H��H���I���f�������5���H������)���H��H���ֆ��H�t$�L���H�t$�>���f���@��t6H��H��H��?H�H��H1�H)�H�H����H��
��8���c���H��@����H������������
������tw����H�t$躸��H�t$�\FH�0fH~�H9���fH~�H��<��������H��H����H���������uXH�t$�L���H�t$H��H9�t�H��H��H��?H)�H	�H��H�t$�\D$�^���fD�����te�-H���P���雼��H���Ow���fH~�H��H��H���U���f�1�������D���H������8���H��H������H�t$菷��H�t$�M���D��SH��H��@���
��@��tb������H��H�t$�I���H�t$f��H��H9�tlH��H��H��?H)�H	�H��H�t$�~L$�Ef.�H�����tw�����
������t���udH��H�t$�϶��H�t$�N�Y�H�0fH~�H9�t}fH~�H��<������tyH��H��uZH��[�@����tnH��H�ߺ*[�ƙ��fDH��H�����H��H���/���u�H�����t�H��H��[鱃���H��[�u��fDfH~�H��H��H�����H�t$����H�t$����fD���/���f�����
���f���SH��H��dH�%(H�D$1�@��u>@��uH�����t
�����
t3�%H�����H�T$dH3%(u=H��[�f�H��H��%���H��H��1�H���e��H�$�u�H�����t�H��轂����6���fD��UH��SH��H��dH�%(H�D$1���u{��uFH�����t=�����
u3H��1�H��H������H�$�u2H�����t*H���K���� f�H�yTNH��t4H��H���	���H�L$dH3%(u6H��[]�f�H��H��E���H��덾	H�=�q�?���H��H�%TN��^���ff.���SH��H��0dH�%(H�D$(1�@��u>@��uH�����t
�����
t3��
H���h���H�L$(dH3%(u}H��0[�f�H��H�襶��H��H�L$ H�T$H������H�t$ @��u	H�����u4H�|$@��uH�����tH�t$����H�t$H��聬����H������H����v���fD��UH��SH��H��(dH�%(H�D$1��ہ��f(����H�f(�fTjf.jf��H*��H�0fH~�H9�t%H��H��<�������H��H��t�L$�Dr���L$H��H�0fH~�H9�tWfH~�H��<��������H��H��u0H���h���H�L$dH3%(�RH��(H��[]���fDf(���q��H����f�����H������������
���ڃ����������Cf.���f(�fT�hf.�h����H�|$�v���5�|���#��H�L$dH3%(���L$H��(H��H��[]�Q�Hc����@�؃���uPH��H9���H�ڸH��H��?H)�H	�H��H�\$�~D$�I���f��؃���tú�
H��H��薔��H�L$dH3%(���������DH���г��H�L$dH3%(u�H��H��(H��[]�����H��H��H��H���D���@H��H��H��H��H�����f�f(�fT�g�f.gf����������H�D$dH3%(�J���H���g���@H�D$dH3%(�*���H��([]�D��H������H�0fH~�H9�tOfH~�H��<������tH��H��u,H����fH~�H��H��H��H���f.�H���7o�����H���6AUATI��USH��H������������@��uDH�����u�umH��L�纆[]A\A]鼒��@������4��
u�H���|��H�ƨ�����H����H���z�ƒ����<@��t�H��H��21ҾL����p��H=����H��H=����H�@1�I��I�H����H���	'��H��L��H!�tfH����H��L����'��H�8��@��H��H�H��L��H��H��u�+D��E��uH��H��H��u�L��H9�r^fDH���o������H��[]A\A]�@H��H!�H�H��uH��t�H��H!�H�H��t�L���f�H�xH�H�s���H��H�D$�Ð��H�D$�@��L���Hc�H�t6����,�uH�����t�����
�H�������
�tH�0�^�fH~�f(�H9���H��H��<�������fH����H���
���H���������H��H��[]A\A]�z��I�$�VH���T$�� H��u��@��H������L���ج���L$荙��H�0fH~�H9��S���H��[]A\A]�l��fDH��L��[]A\A]�f�H���[]A\A]�H��H�ƿ[]A\A]陶��I�D$H���{���I�T$D�
E��uH���d���L���L�����T���L���,����L$fW.s�٘���L$H��[]A\A]�PE�T$E��t���L����H��?H��H��H�����DH��I�$H�� H9�t$H���H��H��?H)�H	�H��H�t$���H��u�f���\$�����fD��AWAVAUATUSH��HH�|$H�t$dH�%(H�D$81�@��uV@��t8H�|$�&�y���H�|$8dH3<%(��H��H[]A\A]A^A_�fDH�����t������
u�DH�l$H�t$ H���)��H�\$A�����L�d$H�t$(L����(��H�\$ L�|$(A��L9��
L�D$L�l$I�@�3I��I�E@�3I��E��H��	NL�D$LD�1�D�$H�8L�����D�$L�D$H�@H�puH�pH����1��A��A#L���H��H9�u�I9�~fDA�T�D!��H��I9�u�E��H��H�$��1�E��@��!��/t��H�l$0H�T$L�d$0H�$H�T$������H������z���H���w���m���fDH��L�l$L�D$L�|$ H�\$(L��I��D��L�D$E��A��L�l$I�@����M�@I�E@����M�m�����H�l$H�L�l$ �H�l$(���M���RH��H��?I��H�E@�rH��E��A��I���M�A�E���9H�N1�D�$H�8���D�$H�@H�HuH�HM���`H�SH���w�!�H�sH����t�!�H�� �4�H��I9�u�L��L9�}a@H�sH����D��!�H�� �<�H��I9�u�I9�~5��t�D!��4�H��I9��I9�~E!�DD�4�H��I9��D��H��H�$��D!��?r��H�T$(H�T$0H�$H�T$(���������1�E�������H�@H�x\H�D�k���@L��M�����DH�m����1��^���f�L9��*����I9��'����:���H���������1������)���f���AWAVAUATUSH��HH�|$H�t$dH�%(H�D$81�@��uV@��t8H�|$�|�)���H�|$8dH3<%(��H��H[]A\A]A^A_�fDH�����t������
u�DH�l$H�t$ H����$��H�\$A�����L�d$H�t$(L���$��H�\$ L�t$(A��L9��L�D$L�l$I�@�+I��I�E@�+I��E��H�VNL�D$LE�1�D�$H�8L������D�$L�D$H�@H�puH�pH����1��A��AL���H��H9�u�I9�~fDA�T�D	���H��I9�u�1�E	�H��H�$@����o��H�l$0H�T$L�d$0H�$H�T$������H����������H����r���u���fDH��L�l$L�D$L�t$ H�\$(L��I��D��L�D$E��A��L�l$I�@����M�@I�E@����M�m����H�T$H�L�d$ H�����H�T$(H9������M���=H��H�*H��?I���@�<H��L�j��H���HL�H��N1�H�8H���P���H�HH�@uH�HM���UH�SH���w�Nf�H�sH����A�t�	�H�� �4�H��I9�u�E����L��I9�|�X���H��H�� H9�}@H�sH��w�E����I9���H9�~H��H����H��H9�u�1�E	�H��H�$@���n��H�T$(H�T$0H�$H�T$(��)������H�\E��HD�����L�jH�j����E��uA�t��4�H��I9��E���Z���H9��u���D������H��H9�|��[���1��V���1�E��������E��u��������AWAVAUATUSH��HH�|$H�t$dH�%(H�D$81�@��u6@��uH�����t�����
tDH�|$�^����<@L�d$H�t$ L��� ��H�\$A�����L�l$H�t$(L��� ��H�\$ L�|$(A��L9��L�D$H�l$I�@�;I��H�E@�;H��H�IN1�L��D�$L�D$H�8����D�$L�D$H�@H�puH�pH���81�fDA��3L���H��H9�u�L9�}��T�D1��H��L9�u�1�E9�H��H�$@����k��L�d$0H�T$L�l$0H�$H�T$�uH�����tH����n��@H�|$8dH3<%(��H��H[]A\A]A^A_�DH��H�l$L�D$L�|$ H�\$(L��I��D��L�D$E��A��H�l$I�@����M�@H�E@����H�m���H�D$H�H�l$ H��H�D$(L� H��?I��A��@��L�xL�`I���LL�H��M1�H�8L���K���H�HH�@uH�H1�H��~#A�4�1�H�� �4�H��H9�u�L9�}`H��f�D��1�H�� �4�H��I9��H9�~AfDA�4�D1�4�H��H9�u�I9�~#D��H��J��D1�f.��2H��H9�u�1�E9�H��H�$@���0j��H�T$(H�T$0H�$H�T$(��Q����`���I��L�xA�������1�����茝��ff.����H��SH���u#��uH�����t
�����
tBH���„���t�H��xD��H��H�߃�H���i���u(H�����t H��[�l��H�¾H���ؼ���t�[�f�H��1��f���H��SH���u#��uH�����t
�����
tBH���2����t�1�H�xG��H��H�߃�H���#i���u(H�����t H��[�l��fD1�H��H���K����t�[�DH�ؾ�fD��UH��SH��H����u
H�����������H��H�H���~H�ƃ����H�����H�U��@upH;us}H�m�L���L��!π� u=�����>H��t-�MH�ELŅ�t�&fDH���P����H9�u�u(H���[]�@H��H��H����H9�r��� uظH��[]�@H��ƒ���
�!����� t�I��A��@��H��H�KH����tpH���DD��E��uH��H��H��u�H9���M����H�CH��t1H�{H��H�W�������҃���Hc�H)�H������ueH�5�YH���;������fDH�������t������������H�{H�KH���C����H����t�H�SH���v���H�U����H���D��H�I��A��@�5���1�H���8���H�����^���ff.����SH�7H����@t-H��
H����^��H�[H��
��H1�H�D�f�H�GH�H�4���ff.���H��H� t��H���/v��H� H�����H�H��
��Ð��H���@t4H����t#H�WH�����t8�҃���Hc�H)��@��H�GH��t�H�OH��H�Q����u�1�����ff.�f���H�����H��������?H9�wH�DH���f.�H��H���ė��@��USH��H��8dH�%(H�D$(1�H�t$詨��H��H�D$�H��tAH� ���D$H��������H9�w?H�H��H)�H��������?H9���H�D?H�T$(dH3%(��H��8[]�H�l$H�\$�D$H�t$H���)��H��H�߹A�L�U\��;��H��H��H��jA���L�D$ ���XA�BZ1ɺ�H���	����^���@H���{����t$�D$H�|$��t6���D$����f.�H�|$���fD�[�������fDH���D$1�H�|$�����C�����H���@t,H����tH���H��?H��?���f���H�GH��u�fDH��H��?H��?���fD��H���@t4H����t�����H����f.���f.�H�t�H������H����fD��AWAVAUATUSH��(L�'A��@tbI��H�GA��H�$I��w^�!1�I������CL�,H�����I!�I��L�l$H�D$H��([]A\A]A^A_��H�GL�gH�$I��v�H�$N�4�A�����A���B�D0���t��A���A)�E��A�A��I�l$�1�H��H���m�H�0H�D$H�XH�t$��@u	H�D$H�XH�$J�D0�E���H��f�f��D��H���H*�f.��Q���-Nf(��%�^f(�fT�f.����w^f/��[�H,�H���df��H*�f.��w�q�����D����օ��H�<$I�t$������@��uH��L���H��H��H��@H��D�����ƒ�ȃ���H���H�� H��1�H��t@��H��H9�u�H�D���8�PH����@����H�u�1���L�I��A��@��I��L�pA��M��f�UM��1�1�SL�D$L��L���7J��H��H��L��L����ZY���M��u
�DI��t	C�D����t�H��M��M��H��jH��H��H���T�^�_A��H��H��H������M�A��@��I��A��M���\���@�gH���@f��H*�f���Q�f.����&Lf(��%�\f(�fT�f.�v/�H,�f��%3\fU��H*����fT��X�f(�fV��E\f/��\�H,�H���lf��H*�f.�zIuG�����\��H,�H��?H�������H��H��f�H���H	��H*��X�f.�����������H,�f��%�[fU��H*����fT��X�f(�fV���[f/��x�������H�$H�8����H�ƒ�f�H��H	��H*��X����H�4$D���B�T6�H��A�M ��H	��z���@M�o����L��1����L���V���H���MH�t$H�H�F���fD��������
���L�pL�h�o����\��H,�H��?���H�$�8�'���H��H��f�H���H	��H*��X��|����L$�5����L$����L$H�D$�����L$H�D$����f.���AWAVAUATUSH��dH�%(H��$�1��G�����H��H����]A��L�nA���,H���Ľ
���zA���RL��誽
A�Dž���M��I��L��L��H��I9��O�j�
�H�I��E��u}f.�H���(�
H�����tH��I��H�I��H��M��H�߾L��H�I��I����[��H�èt�H�t1f���tH��I��H�I��H��M��L��H�I��I��H�u�H��tH��L)�A��HE�H�D-H��$�dH3%(�mH�ĸ[]A\A]A^A_����uH�����t�����
�����@H�a�MH�5�QH�81��ȗ���A��uI�����tA�E����
t%DH�!�MH�5RH�81�舗���L����
�D$��t L���8�
A��I��A���Y����D$L���(�������L��H�����
H�\$HH�D$@L�l$P���E����H�D$PI��A���yH������mH���
�\H�L$@H���@�=H�IH�t$HH�L$H���@�@H����H�L$��@�=H����H�$H�T�MH�4$�L�T$ H�8���L�T$ H��H�D$PH�@�tH��H�D$ H�D$HH�@�IH��H�D$(L�|$@I�@�I�GH�D$0L�{H�@uL�{L�d$pL��$�L�T$8L��L��$�H�l$`�͏��L���ŏ��L��轏��H��赏��H��E1�E1��t$8H�t$ �L������P���X�t$0E1�H�t$(E1��L������.���Z�t$(E1�H�t$E1��L�����������YL��^L��L��H��艗��H�t$XE1�E1�H��������L��U����H�D$h_AXH�$I��L�T$8H)�H���fDB��I��L9�u�L���ס��L���ϡ��L���ǡ��H��迡��H�H��
���D$��H�D$@H�D$XH�D$@H�D$HH�D$XH�D$HH�D$PH�D$XH��H�D$P�VW���a������
I��?H�E��A�H�$ucDH���،
H�����tL��H�,$L��H��H��L���;I��H�$H��H��L��H��H��L����:H�߾H�$�iW��H�èt�H�tSL�$f���t"L��L��L�$I��H��H��L���:L�$I��L��L��I��H��H��L���:H�I��u�M��tL��L)�A��LE�K�D6�m���DH�t$HH����H�H�\$��@�����H�NH�L$��@����H�@H�$���@H�H��荏��H�\$HH�D$@A��A�������H�H���e���H�D$H����I�GH�D$0���f.�H�@H�D$(���f�H�@H�D$ ���f�H��H���5�
���H�t$PH���O��H�������v���'���蒆��H���MH�5�LH�81�芒��H�
VIH�<N�KH�=AF�kS��ff.���UH�5;ISH��H��MH�-!�MH�H�}襠��H�}H�5I�*H�;�H�V��H�5�H��e��H��MH�=�HH�01�貖��H�;H�5�HH���P���H�!uNH��Gf�H������f�H�H��H9�u�H��H9�u�H��[]�f.���ATI��USH��H��H�*dH�%(H�D$1�H�F�uRH�rH�xH��H���ϊL�H�CL��H�$H��I��H�PA���S��1�H�t$dH34%(u%H��[]A\�f�H�H��H��H��H�����h2���q������H��H��H���}1�H���fDAVAUATUSH�� dH�%(H�D$1�����H��A��M�ƅ�t>H�H��@��I���[d��@��H�$�l$E���VM��tm���fD�+d���D$H�$E��t�D��H����I��H��ƒ���uH�����t��t��u ���tE1��uRH���4�H�CH�xH��tL��H�5��<�H�[H��u���ug1�1�H�SE1�H�Z@H9�A��1�H��tJA��I��A���H�CH�xH��tL��H�5��������uE��u��t	H�[H��u�H�$H�x�N��H�<$L��H��H���k��H�<$��T��H��H�L$dH3%(u-H�� []A\A]A^�H������M���?���먺1��`r���{���ff.���AUATI��UH��SH��H��H�F���<t#I�<$1�H���=l����t9H��1�[]A\A]�@�L�n �z�H��H��t�A�D$��u�L9k u�붐H�C1�H��t���<t
H�H����I�<$H���j��H��1�[]A\A]����H��H��E1�H��1ɺ��1�H���ff.����ATI��UH��SH��@��t
@��t#H��H�}H��t.L��H����[��[1�]A\�@H�����tԋ����u����h��H��H�E��f.�SH������u#H�����t�����uH���H��u[þH����Y��H���MH�5DNH�81��J���f.�����t��u1��SH�����H��H���,���1�[������t1��@SH��跐��H��H�����1�[��AWAVAUATI��USH��H���o4��~e�u�1��8fD�у�HK�H�H��tA9D$Ht.I�L$H��H�
H�PH9�t1H�Ћ��/v�H�KH�QH�S�ĐI�L$X��f�1�fDA�L$8�A��ƒ�HS�A�$A+D$<H�9�~LH��tA;l$H�%I�t$Hc�H��H�������~4���/v�H�SH�BH�CA�$A+D$<H�9��H��t�H���A�D$<A�L$(�ƅ�����~b���:f.��у�HK�H�H��tA9D$Ht.I�|$Hc�H��H�
��9�t ���/v�H�KH�QH�S��I�L$X�א��A�T$,��t&���/�R�ƒ�HS�H�H��tI�T$PH�A�D$0����1�A9,$��H��[]A\A]A^A_�f.�I�D$X����fDA�4$�A��A)�D��)�/���у�HK�L�9����M��tHA�D$HA+t$<A��I�L$�PHc�D9�H�4��T$����)�Hc�����T$I�D9���A�D$<��D�����f����/wy�ƒ�HS�H��i����uzH�����fDH�KH�QH�SL�9���Y�����M���J����	���A�t$<I��8���@H�SH�BH�C����H�SH�BH�CH��i����t��l��H����I�t$XH��辘���1���f�UH���SH��H���t��H�UH�H�J(H�@H��tH�HH�	H�pH�IH�q0H�B(H�CH��(H�P0H��[]������t1��@SH�����H��H���,���1�[������t1��@SH��跌��H��H�����1�[����AUI���ATI��USH��H���/t���oH�sH��I�<$H�CH�E@��u	H�����uFH�s@��u	H�����u#I�|$H��L��胎H��1�[]A\A]�fD�{m����f��km��H�sI�<$@��u��ff.�S��H��H��H��H��@�*F���`�H���N��H�CH�X@��u	H�����u"�ݒH�C H�CH�@HH�@PH��[�H��H����l������L�F1�A�����uzAWAVAUATI��UH��SH��H��H�BM�pL�xM��tZI�@H���R�L��L��I��H���q�A��u	I�����uBL��H���g�1�H��[]A\A]A^A_�fD��H��H��L���*����L��H���%l�����H��tH��4u��K���ff.���H�OH�Q0H��t7SH��H�:H�OH�
H��tH�	H�IH�Q0�<���H�KH�A0[�fDH�A0�ff.�@H�GH;x@t�DATH��USH����,���H��H���QP��L�cM��uXH�EH����H�CL�cI�l$@I�T$H�E1�H�P�ŠH��H�5H���I�D$H�E[]H�xA\�R�f�H������I��4uH�E4��H��L���%���L�eA���w���I������j���L��H���j���Z���f.�H�����H��4uH�C4�F���DH��H������H�k@���(���H���������H��H���_j��H�CH��H��H�h@�Lj��H9�t%H�EL�c�ƒ������H
H�E����L�c����f���H�OH�Q8H��t7SH��H�:H�OH�
H��tH�	H�IH�Q8�L���H�KH�A8[�fDH�A8�ff.�@��ATUSH�GH�X(H��tI��H��DH�;H�[H��A��H��u�[]A\�f���SH�GH�X(H��tfDH�;H�[�L���H��u�[�D��SH�GH�X(H��tfDH�;H�[����H��u�[�D��UH���SH��H���MH�0���H��H��u'H�@H�k1��d�H�EH��H��[]�fDH�����H��4uH�C4���H��H������H�k@��u�H�����t�H��H���wh���DUH��H��SH���O���H��H��褆��H��H��H��MH��H�8H��HD��@��H��H���jH��H��[]���H��@��u,H�����t#H��ƒ���u��uIH���MH;8t%H���葔��H�5�CH��H�8�MH�81�覂��H�'�MH�56FH�81�莂��H��MH�5�CH�81��v���fD��SH����u$H�����t�����uH���hJ��H��[�O����H���N��f���@��uFH�����t=H��ƒ���t0��t+SH��H��H�_H�{t H���[�Y���f���H�<$H�t$�U��H�T$H�<$H�C��ff.���AWAVAUATUSH��8H�_dH�%(H�D$(1���u%H�����tH��ƒ���t��u:f.�H�L$(dH3%(H���0H��8[]A\A]A^A_�f.�H��I��H�߾�
V��H9�u�H�;1�����I��H�E�����+M��M�mA�A��uI�������H�kH���;I�EH�CI�UH�HPH�xH�JPtH��L���w��H�CH�xH�l$t:I�U1�H�T$�1�H�T$H�5����H�BH��H�D$H�CL�l$H�x跉I��4tL��L���`��1�M�e��H��H�5��I�D$H�CH�\$H�xL�l$�u�E����L��M�������I����������I�E�ƒ����������I�E�u���DH��M���V��H9CA��I�EA�������H���������H��L���d������L�����H��4u#I�E4���DI�}L���4_���S���L��H�����I�m@�������H������v���H��L���Nd���f���L��L���>d���A����v��@���4�R���f���ATH��UH��SH��H�� dH�%(H�D$1�H�����uxH�������H��΃���t
H��H�H��u$H�����tH�M�΃���uSH������|�������H9��9H��H���qm���u�H��u+H�����t"H��΃���tH��H�MH��t�DH9���H��H���$m�����k�؃�����H��������H�C�u"H�����tH��ƒ���t
��u/�H���S��H�C�uH������H��H���i]��L�eM���,H�CH�CH�UH�xH�RPH�PPH��t�B��H�CH�@H�xH��t��H�CH�@H�@H�EH�x��H��H���t��H�ߥNH���NH�$H�CI��1�L��H�x�e;��H���NH���H�$H�C1�L��H�x�?;��H���NH����H�$H�C1�L��H�x�;��H�EH�xt4L�c1��C�H��H�5��I�D$H�D$H�EH�$H�x�΅H�EH�xt0L�c1�H�l$H�$�H��H�5��I�D$H�EH�x蓅H�L$dH3%(H����H�� []A\�H���`���H9�t�H��H���k��H����H�������H��MH����DH�!�MH�H9���H�{��H9���H���+���H���������H�E�ƒ�������������H���MH�5Y?H�81��`{��H���x�I��4uH�C4���DH��L����L�cA�������I����������L��H���/`�����f.��H�=?�?`��H���N�$����
H�=�>�`��H���N�����H�=�>�_��H�p�N���H�Y�MH�����H��H���_��H�C����@H�i�MH����f�H���MH��k����H���MH��[����H�I�MH��K����q��H���MH�5�=H�81��z��H���MH�5�=H�81��y��ff.��ATUSH���4���H�Ũ�H�������H��ƒ���t��H�EH��H���yY��L�cL9���H�kH��H���^��DI�|$@��u%H�����tH��ƒ���t����fDL���`���H�E�u3H�����t+H��H���U^��H�[��u @H�����tw�����u	H�[��t�H�{@��u
H�������H�����H��H��uQH�EH��[]A\�DH��H���X��L�cH�kL9��,���H�m�fDH��u�H�t�MH�H��t�H����H��4uH�E4H��[]A\�fDH��H�����H�]���{���H������n���H��H���`]��H��[]A\��H��ƒ����*������!�����L��H9�����H�[����H�kH��H���]��H�mH��H���\��������L��L9��l���I�D$�j���f.���S�H���L���t
1�[�fD�H���sL��H�����t�H���^L��H�����u�H�{��EL��H9�[�����f.���AV1�H�=g;AUATUS���L�%w�MH�=S;H��I�$��H���MH��H��zK���H�=);�<��H�;H��H���r��H�3H�=;�|�L�--�MH�=s:H��I�E�b�H�-��MM�4$�H�=�:H�E��[��H�;L��H����3��H�EH�@�uPH�����upI�UH�BH�;H�EH�GH�������I�<$H�uH�wH�������[]A\A]A^��I�UH�BH�H�BI�$H�B[]A\A]A^��H��H���[��I�}H�EH�G�u�H������q���H����Z��H�;H�EH�G�u�H������e���H����Z��I�<$H�uH�w@���`���H������S���[]A\A]A^�Z��ff.���AWAVAUATUH��SH��X�������L�gL���Q�H�ètJH�]H��H���T��L���SL��H�pH�s@��u
H�������H��XH��[]A\A]A^A_�fDH�����t�H��ƒ���t��H�H�]H��H����Y���@�4���H�è��H�������H��ƒ���t��H�H��H���QT��L�eL9���$H�]H��H���Y��DI�|$@����H�������H��ƒ�����������I��L9���I�D$H�D$��H�D$�;H��H����S��L�eH�]L9�u�H�[L�eA��t)��DA�$������M�d$A����I�����u�M����H�p�MH�(H���
H�C�w�����4�~�H��H�D$��H�t$��H�|$L���S��M�t$H�D$I�D$M9��
I�~@����H�������H��ƒ������������G��L9���M�nL���H�D$ @H�D$H�|$ L�h��I�������L��H����W���fDH��H������9���H��ƒ���t��H�H�|$L���AR��M�t$M9���H�D$L��I�D$H���nW������f��4�F�I�Ń�H�D$ uQI�����tHI�E�ƒ���t��I�EL��L����Q��I�FH�D$I9���&M�nL��L���V���&DL��L���Q��I�FM�nH�D$I9���H�D$H�x@����H�������H��ƒ�����������cF��H;D$��H�D$L�xL����H�D$(@H�|$(M�}u
I������G"M�~A��t*���A�������M�A����I�����u�M����H���MH�H���>I�E�����4���I�ǃ�H�D$(�MI������@I��ƒ���t��I�H�t$L���XP��H�D$H�PH9��:&H�D$L��H�T$0L�xH���}U��H�T$0�H�z@���H������H��������������H�T$0�D��H�T$0H9���H�JH�ȃ�H�D$0�H�|$0I�Ou
H�������$H�D$H�P��t$�@������zH�R���mH�����u�H���[H�\�MH�H���PI�G����H�t$L���+O��H�D$H�PH9�H�D$L�x��M��h�����4H�T$8�1�H�T$8H����H�D$0�sH��H��H�T$@H�L$8��N��H�T$@H�L$8L�BH�JL9���I�x@��u!H�����tH��ƃ���t���:'f�L��H�T$@H�L$8��H�T$@H�L$8H�A�u+H�����t#�U#�H������������u	H�R��t�H�z@��u&H�����tH��ƃ���t���K)�H��H�L$8�+�H�L$8H���=H�A����I�|$@��u5H�����t,H�������t��t��B��L9�uI�l$�,�����4���H�ŨuOH�����tGH�������t��H�EL��H���XM��M�l$M9���!I�l$H��L���R���&�L��H���%M��M�l$I�l$M9���I�}@����H�������H����������������A��L9���I�EH�D$��H�D$f�H�D$H�|$H�Eu(H�����t �f�I������[
A�$����uM�d$A��t�I�|$@��u!H�����tH��ƒ���t����!f��4�v�I�Ǩ��H������'H��ƒ���t��I�L��L���L��M�l$M9��� M�|$L��L���3Q��M�L��L���$Q���f�I������sA�$����uM�d$A��t�I�|$@��u!H�����tH��ƒ���t���$f�L����I��M���<I�GM���H�E���fD�4�~�H��H�D$��H�t$�(H��H������H�������t��H�H�|$L���J��M�}M9��: H�D$L��I�EH���(P���I�@����H�������H���������������?��L9���M�wL���H�D$f�H�D$H�|$L�pu(I�����t��I������{A�E����u
M�mA��t�I�}@��u#H�����tH�������t
���� @�4�6�I�ƨ��H������?H�������t��I�L��L���I��M�}M9��JM�uL��L���N��M�vL��L����N���@I������A�E����u
M�mA��t�I�}@��u#H�����tH�������t
���%@L���x�I��M����I�FM���kH�D$H�@�Y���f�H�|$L����H��M�}H�D$I�EM9��
���H�@���@�4��I�ƃ�H�D$�5I������(I�������t��I�L��L���H��I�OI9���M�wL��L��H�L$ �M��H�L$ @H�y@��u&H�����tH��ƃ���t������4H�L$(�a�H�L$(I����H�D$ ��I��������I��ƃ���t��I�H��L��H�L$0L�D$(��G��H�L$0L�D$(L�II9���!L�AL��H��L�L$8L�D$0H�L$(��L��H�L$(L�D$0L�L$8f�I�y@��u&H�����tH��ƃ���t���?"�L��H�L$0L�D$(��H�L$0L�D$(I�@�u+H�����t#�o�H�������;�����u	H�I��t�H�y@��u&H�����tH��ƃ���t����"�H��L�D$(��L�D$(H����I�@H�|$ M�F��I��������L��L����K�����L��L���uF��I�OI9���M�w����H�����H��4u"H�C4�e�DH���K���S�H��H�����H�k@���7�H������*�H��H���GK����f�H�@M�|$A��t��A�����umM�A��ucI�����u�M��uUH���ML� M����H�D$H�@H�D$H�|$H�C���H��������H��H���J����@I�@��u6H�����t-H�������t ��t��Q:��L9�uM�g�x����4�V�I�Ĩ�3H������'H�������t��I�$L��L����D��M�wM9���M�gL��L���J��@I�~@���H�������H���������������9��L9���M�nL���H�D$f�H�|$M�l$u
I�������M�oA��t*��A�E�����M�mA����I�����u�M����H��ML�0M���I�D$�4����L��L����C��M�wM�gM9������M�d$�l���f��4����I�Ń�H�D$�%I������I�E������t��I�EL��L���hC��I�NI9��M�nL��L��H�L$ �H��H�L$ f�H�y@��u&H�����tH��ƃ���t���^��4H�L$(�A��H�L$(I����H�D$ �{I�������nI��ƃ���t��I�H��L��H�L$0L�D$(�B��H�L$0L�D$(L�II9��mL�AL��H��L�L$8L�D$0H�L$(��G��H�L$(L�D$0L�L$8f�I�y@��u&H�����tH��ƃ���t�����L��H�L$0L�D$(�n�H�L$0L�D$(I�@�u+H�����t#�+�H�������;�����u	H�I��t�H�y@��u&H�����tH��ƃ���t�����H��L�D$(���L�D$(H����I�@H�|$ M�EuYI������tPL��L����F���CL��L���eA��I�NM�nI9�����M�m�fDI������A�����u
M�vA��t�I�~@��u$H�����tH�������t����DL���0�I��M���DI�E�w����H�|$���I��4uH�D$H�@4����fDL�t$L��L���(��M�fA�������I��������H�|$L���E������H���������H��ƃ���t��H�H��H��H�T$@H�L$8�3@��H�T$@H�L$8L�BL9��H�JH��H��L�D$HH�L$@H�T$8�NE��H�T$8H�L$@L�D$H�?�f.�M�wM�v�fDI�������
A�����u
M�A��t�I�@��u$H�����tH�������t���DL����I��M����
I�F����L�t$L��M�t$L���D��L��L��L��L�p�D���@���@M�����H� �ML�8��I�@��u&H�����tH��ƒ���t������4���H����H������H��ƒ���t��H�H��L��H�L$�>��M�wH�L$M9���I�OH��L��H�L$��C��H�L$�I�~@��u&H�����tH��ƃ���t������4H�L$(�q��H�L$(I����H�D$�k	I�������^	I��ƃ���t��I�L��L��H�L$0L�D$(��=��M�NL�D$(H�L$0M9��M�FL��L��L�L$8H�L$0L�D$(�C��L�D$(H�L$0L�L$8f�I�y@��u&H�����tH��ƃ���t����L��L�D$0H�L$(��L�D$0H�L$(I�@�u,H�����t$���I������A�����u
M�vA��t�I�~@��u$H�����tH��ƃ���t���WDL��L�D$0H�L$(��H�L$(L�D$0I��M����I�@H�|$L�Au
I��������M�wA��t"�A������M�vA����I�����u�M����H�b�ML�0M����
H�A���H�����I��4��H�E4���I�}@��u&H�����tH��ƒ���t���^��4�&��I�ƨ��H�������H��ƒ���t��I�L��L���;��M�}M9��M�uL��L����@��DI�@��u&H�����tH��ƒ���t�����L����I�F�u)H�����t!��I������#A�E����u
M�mA��t�I�}@��u#H�����tH��ƒ���t
����@L���(�I��M���\I�F�����M�����H���ML�0��H��L��H�L$�:��M�wH�L$M9�I�O����H�I����H�m���L��H�L$���H�L$H��4��I�E4���H��L������L�}A�����I��������L��H���_?����f.�H�z@��u&H�����tH�������t������4H�T$���H�T$�H����H�������H��ƃ���t��H�H��H��H�T$0H�L$�}9��H�T$0H�L$L�BL9��tH�JH��H��L�D$8H�L$0H�T$�>��H�T$H�L$0L�D$8f�I�x@��u&H�����tH��ƃ���t����L��H�L$0H�T$�.��H�L$0H�T$H�A�u+H�����t#�3�H������������u	H�R��t�H�z@��u&H�����tH��ƃ���t����H��H�L$���H�L$H����	H�A��M�����H�H�ML� ����L��H���%8��M�l$M9��?M�|$I�}@��u(H�����tH��ƒ���t����f��4���I�ƃ�H�D$�MI������@I�������t��I�L��L���7��I�ML9��G
M�uL��L����<��M�vL��L���<���DI������A�E����u
M�mA��t�I�}@��u#H�����tH�������t
���
@L���P��I��M����I�FH�|$M�w�5�I������(�L��L���$<�����M�m���H��L���=��H�L$I�M�����H���������H��L����;�����fDL��L���m6��I�ML9���M�uH�y@��u"H�����tH��ƃ���t���}H���h��I�F�����H����������H��L���U;�����L��L���5��M�}M�uM9��T���M�v���L��� ��I��4�>I�D$4�
��H�|$���I��4��H�D$H�@4���f.�I�~@��u&H�����tH��ƒ���t�����L��H�L$���H�L$I������fDM����H�(�ML�0�+��M���Y���H��ML�8����H��H��H�T$0H�L$��4��H�T$0H�L$L�BH�JL9������H�I�����L��L��H�L$0L�D$(�4��M�NL�D$(H�L$0M9�M�F���M�@�W����H��L��H�L$0L�D$(�[4��H�L$0L�D$(L�IL�AL9����M�@�F��H��L��H�L$0L�D$(�4��H�L$0L�D$(L�II9��L�A�k�L��H�L$�;��H�L$H��4��I�G4���L�|$L��L���H��M�wA�����I��������H�|$L����8�����L��L���
��M�t$A�����I��������L��L���8�����H����H�H�MH��R��L���x��I��4��I�G4���M�����H��ML�(�����L��H����2��M�}M9��XM�uI�@��u"H�����tH�������t����L������I�F���H�������H��L����7�����M�����H�h�ML�(�#��M������H�H�ML�(�+���H��L�����H�L$I�O�����H���������H��L���S7�����fDL��H����1��M�l$M9������M�|$M���f.�L�����I��4�AI�F4�1��L������I��4�WI�E4�!��H��H�L$����I��4H�L$�cH�A4��L��L������M�gA�����I��������L��L���v6�����M����H��ML�0�?��H���O���H���MH�����H�����H�ثMH����H�����H���MH����H��H�D$@H�L$8����H�D$@H�L$8H��4�cH�A4��L��L������M�~A�����I��������L��L���5�����L��L�����M�uA�����I��������L��L���V5����H��L�����H�L$L�qA���,��I��������H��L���5��H�L$�
���H�]H��H���5��H�[H��H����4������DH��H����4�����L������I��4��I�F4�k��L�����I��4�%I�F4�E����L�����I��4��I�F4���H�I���H��H��H�L$@H�D$8���H�D$8H�L$@H�A��4��H������(��H��H��H�L$8� 4��H�L$8���fDL��L���4�����M�uM�v�T���L��H���.��M�}M9�������M�uM�v��H��H�D$0H�L$���H�D$0H�L$H��4�SH�A4����DL��H�L$0L�D$(�v��I��4L�D$(H�L$0�/I�@4�M�DL��H�D$0L�D$(�>��H�D$0L�D$(H��4�AI�@4��DL��H�D$0L�D$(���H�D$0L�D$(H��4�ZI�@4��L��L�����M�nA�����I������y�L��L���2���i�L��L������M�nA���"�I�������L��L���~2����L��L�����M�nA������I���������L��L���H2�����L�AM�@���L��L���h��L�D$(A��H�L$0M�p��I��������L��L���1��H�L$0L�D$(���L��H��L�D$0H�D$(���H�D$(L�D$0I�@����H��������L��H��L�D$(�1��L�D$(��L��H��L�D$0H�D$(����H�D$(L�D$0I�@����H������|�L��H��L�D$(�Q1��L�D$(�b�H��H��H�L$0H�D$�r��H�D$H�L$0H�A��{��H������o��H��H��H�L$�1��H�L$�U��fDL��L����0���J�L��H����0���I�H��L����0������I�l$H��L���0��H�mH��H���0������M�|$L��L���0���%�M�nL��L���x0��M�mL��L���i0���
��H��L��H�L$�T0��H�L$�[�H��H��H�T$@H�L$8�50��H�T$@H�L$8���M�gL��L���0��M�d$L��L���0���l�L�t$L��M�uL����/��L��L��L��L�p��/���P�����L9��4��M�|$���M�uL��L���/�����H��L���/����M�uL��L��H�L$�/��H�L$����>��L9��5�I�O�U��H�D$L��L�xH���H/��M�L��L���9/���E��L��H��H�L$0L�D$(�/��H�L$0L�D$(���L��H��H�L$0L�D$(�.��H�L$0L�D$(��H��H��H�T$0H�L$��.��H�T$0H�L$���L��H��H�L$0L�D$(�.��H�L$0L�D$(�4�M�nL��L���.��M�mL��L���.������G��L9��>�M�uL���H�D$��� ��L9�����M�u����M�wL��L���/.��M�vL��L��� .����I�OH��L��H�L$�.��H�L$H�IH��H����-��H�L$������L9����M�u���H�L$ ���H�L$ H9��0�L�AL����H�D$ ���H�L$�]��H�L$L9����M�FL����H�D$�c�H�JH��H��H�T$@H�L$8�R-��H�L$8H�IH��H���>-��H�L$8H�T$@����H�T$����H�T$H9����H�J�h���H�L$ ����H�L$ H9����L�AL����H�D$ ���M�uL��L����,��M�vL��L���,���>���{��L9�����M�d$�����L�D$HH�T$@H�L$8�O��L�D$HH�L$8H�T$@L9�����I�@�����$��L9��S�I�G�R�H�JH��H��H�T$0H�L$�),��H�L$H�IH��H���,��H�L$H�T$0���H�L$����H�L$H9��i�H�A�h����L9���I�G������L9��i�M�v�k��H�L$�i��H�L$L9����M�v���L�AH��L��H�L$0L�D$(�i+��L�D$(M�@L��L���U+��L�D$(H�L$0��L�AH��L��H�L$0L�D$(�-+��L�D$(M�@L��L���+��L�D$(H�L$0���M�FL��L��H�L$0L�D$(��*��L�D$(M�@L��L����*��L�D$(H�L$0�^�����L9����M�����L�L$8L�D$0H�L$(�i��L�L$8H�L$(L�D$0L9����I�A����H�L$8L�L$0L�D$(�/��L�L$0L�D$(H�L$8L9�����I�A����L�D$8H�L$0H�T$���L�D$8H�T$H�L$0L9����I�@����H�T$@H�L$8���H�T$@H�L$8H9�����H�B����H�L$8L�L$0L�D$(���L�L$0L�D$(H�L$8L9���I�A�&���`��L9��G�M�m�I���D��L9�����M�m������(��L9����M�m����H�L$0L�D$(���H�L$0L�D$(H9�����H�A����H�L$0L�D$(����H�L$0L�D$(H9����H�A����L�D$0H�L$(���H�L$(L�D$0L9����M�v���H�T$0H�L$�r��H�T$0H�L$H9����H�B���fDATUS@�����H��������@����@��t1H���H����H����W��H�u�MH�(�DH�����t�H��Ѓ���������
������H�k@��u$H�����tH�E�ƒ���t
����@L�e H��H���!��L�` H��H�%H	EH��[]A\�fDH���MH�(H���
W��H��[]A\�@���y���H�ȚMH�5�H�81��/B����� �N�����f.�H���MH�(�@�H���A��H9��J����[���D��USH��H��H��u
H���MH�H���,:��H�sH��H���=��H��H��[]���UH��SH��H��dH�%(H�D$1�H��u
H�T�MH�H�jNH��t5�I��H��H�,$H�=�iN�:��H�L$dH3%(u'H��[]��	H�=��o&��H��H��iN��8��ff.���AVI��AUATI��US�YD��L�-¡MH��H��I�}�����uOM����L��H���+5��H��H��H���
�I�}H��H������H��L���c��H��[]A\A]A^��I�}H���4��H�èu7H�����t/�����u%H�{���L9�uXH��H����H��[]A\A]A^�H���Q��L��H�5�H��H���MH�81��@��H���ML��H�5�H�81��?��H�v�ML��H�5LH�81���?��f.���AVAUI��ATI��UH��S��L����ujM����L��H���4��H��H���#��L��H��H���:��H��H��L�����H��L���<��H��H����H������H��[]A\A]A^�DH��L�����H�èu:H�����t2�����u(L�sL���H��L9�u|H��H���h�H��[]A\A]A^�H����P��H��H���y��I��L��H�5lH��H�Z�MH�81���>��H���P��L��H���5%��H��H�5�H��H��MH�81��>��H�����M��M��L��H��H��MH�5-H�81��k>��ff.���UH��SH��H��H���A��H��H��H��H��[]�T���@��U�SH��H���MH�0���1�H�hH���BH�EH��H��[]�fD���B�����AUI��ATUSH���:A��L�%��MH��H��I�<$������t@I�<$H���d���H�èuhH�����t`�����uVH��H�����H��H��[]A\A]�f�H�����H��H��H����H������I�<$H��H�����H��H��[]A\A]�H���N��L��H�5�H��H���MH�81��=��ff.�@��ATI��UH��S�
J����t1H��L�����H�èu^H�����tV�����uLH��[]A\�DH���P��H��L��H��H������H���'��L��H��H���7��H�����H��[]A\�H���AN��H��H�����I��L��H�5y�H��H�הMH�81��E<��D��SH��H���?��H��[H���L��@��AUI��ATUSH���H��H�ؖMH�0�ȳ��H��H������L�cH������H�EI�T$H�PH�SL�b@I9���L�`@A���������uH�[L�cI�|$��I�D$H����H�UI�L$H�BH�JM����H�E��u:H�����t1������H�]H��H���\ ��H��H��[]A\A]�fDH�]H��H��[]A\A]�fDI������N���L��H��� ��I9��:���I�$�ƒ����(���H
I�$����fDH�h@@������H����������H��H���������DH��谳��I��4uH�E4���Q�������@H��L���Ű��L�mA����I��������L��H���_�������������H�sH�u@�������H������������@��
��I�D$L�cI�D$H���c���@1��>I�D$L�cI�D$�E���ff.�AWI��AVA��AUATI��USH��H��(H�G��H�@@H�@H�hu)I�������I��ƒ���t�tL�����H���D$H���D$H�D$@1�L9�@��H��tI�GH9h��H�CH����E1ҿ�D��tkH�@H��tz���I9�D���u�I�WL�HH�JI9Iu�A��A��LE�M�M��u��T$���P�D$���:�D$H��([]A\A]A^A_ÐE��tH�@E��H��u��I�t$L���[���I��H����I�D$H�D$I�EH�XXH�؃�H�$uH�|$�6A�M������uM�g��#��I�T$L�(H�r(H�@H��tH�pH�6H�xH�vH�~8H�B(I�EH��(H�<$H�P8uH�|$tH��ƒ���t	�Ā��I�GH�xH��t�=H��I�Gt�D$H�xM��H��������<H���DD$�D$���f�L��舰��L���H�D$I��4uI�D$4H�D$���L��L��蕭��H�|$M�l$����I����������L��L���,�����H��L��������M��������D$�-����H����I�WH�5ݥ��H�zH���!@H�|$�����I��������I�E�ƒ�������H
I�E�����D$���������5����H������D$���������f.���UH��SH��H��蛨��H�CH��H�߹H�p@�c�����xH��[]�H���MH�5�H�81��6����UH��SH��H���K���H���c���1�H��H��H��������xu
H��[]�fDH��H��[]�¦H�#�MH�5��H�81��5��f.���ATUSH���,��I��H�CH�h@DH�[H��t7H9�t�����u�H�s@��u�H�����tՋ����u�L���CD���L��[]A\����@��uGH�����t>�����u4H�GH��u�&�H�@H��t�����u�H;pu�Ð�H��H����>��ff.���USH��H���+��H��H��u�A@H��H���C��H�[H��t)H�CH9X@u�����u�H�sH���lC��H�[H��u�H��H��[]�f���L�����1��^���ff.���L�ժ��1��>���ff.���L���1�����ff.���L�Ŧ��1����ff.�����t7��uR�Ѓ���thH��tr��t}H�RL�R����鸢���H�����u�H��t!H��u�H���MH���H��MH��@H�ɑMH��@H�1�MH��@H���MH��@H�)�MH��x��������t7��uR�Ѓ���thH��tr��t}H�RL�ҩ��������H�����u�H��t!H��u�H��MH���H�i�MH��@H��MH��@H���MH��@H��MH��@H�y�MH��x��������t7��uR�Ѓ���thH��tr��t}H�RL�"�����X����H�����u�H��t!H��u�H�=�MH���H���MH��@H�i�MH��@H�яMH��@H�1�MH��@H�ɎMH��x������A�鱴���ATA��UH��SH��H���4��D��H��H��A�[H��]A\�|�ff.����ATA��UH��SH��H���4��D��H��H��A�[H��]A\�<�ff.����ATA��UH��SH��H���w4��D��H��H��A�[H��]A\�ff.����SH��H���@4��H��E1�1ɺH��[�j�f.���H�FH�@H��tH��H�5U���H����9D����H��t&H��t�H��t&�DH���MH��DH�ɎMH��DH���MH��D��H�uGH�GH��t>H�@H�@@H��t1�u-H�����t%H��у���tH�с�H��u��H��ff.���USH��@��u`H�����tWH�o@��u5H�����t,H�E�ƒ���t��tH���H���A/��H9�t	@�H��H��[]�f�H��tH��t-H��u�H���MH�(��H���MH�(H��[H��]�@H�Y�MH�(H��[H��]�@��AWAVAUATUH��SH��X��H��@��uH�����tH�E����tH��XH��[]A\A]A^A_�fDH�{@��u.H�����t%H��ƒ���t��t����H9�t�@�4莪��H�D$��QH�L$H�������?H��ƒ���t��H�H�|$H�����H�kH9��u H�D$H��H�CH���>��fDH�}@���H������
H��ƒ��������������H9���H�EH�D$��H�D$�H�t$H�D$H�|$H�FuH�������L�cA��t+���A�$������M�d$A����I�����u�M����H� �MH�(H���\
H�D$H�@�R���f.�H�|$H������H�kH�D$H�CH9����H�@�^���@�4���H��H�D$��H�t$��H�|$H�����L�mH�D$H�EL9��eI�}@��u#H�����tH��ƒ���t
����"@�4膨��I�ă�H�D$ �UI������HI�$�ƒ���t��I�$L��L�����M�}M9��Z#M�eL��L���<��@I�@��u&H�����tH��ƒ���t���|#��4���I�ƃ�H�D$(�]I������PI��ƒ���t��I�L��L���r��I�WI9���$M�wL��L��H�T$0���H�T$0@H�z@��u&H�����tH�������t����$��4H�T$8�I���H�T$8H����H�D$0��H��������H��ƃ���t��H�H��H��H�T$@H�L$8�
��H�T$@H�L$8L�BL9��e%H�JH��H��L�D$HH�L$@H�T$8����H�T$8H�L$@L�D$HI�x@��uH�����tH��ƃ���t	����%L��H�T$@H�L$8����H�T$@H�L$8H�A�u$H�����t�o"H������l�����u	H�R��t�H�z@��uH�����tH��ƃ���t	����'H��H�L$8�
���H�L$8H����H�AH�|$0I�Nu0H������t'�k f.�I������A�����u
M�A��t�I�@��u$H�����tH��ƒ���t����$D�4�v���H�¨�&H������H�������t��H�H��L��H�T$0���I�OH�T$0I9��[&I�WH��L��H�L$8H�T$0�!��H�T$0H�L$8H�y@��uH�����tH��ƃ���t	����&H��H�T$0�Ѯ��H�T$0H�B�u,H�����t$�!�I�������A�����u
M�A��t�I�@��uH�����tH�������t	���m'L��H�T$0�X���H�T$0I��M���`H�BH���&I�FH�|$(M�t$u
I������fM�uA��t'��DA�������M�vA����I�����u�M����H���MH�H����I�D$H�D$H�|$ L�`u
I�������L�}A��t*���A�������M�A����I�����u�M����H��MH�(H����H�D$H�@�d���@H��H������9���H��ƒ���t��H�H�|$H�����L�mL9��:H�D$H��H�EH����������I�|$@��u%H�����tH�������t����fD�4薢��H�Ũ�kH������_H�������t��H�EL��H��� ��M�l$M9���I�l$H��L���R��f�I�}@��u&H�����tH�������t���
��4����H��H�D$��H�t$�x
H��H������i
H�������t��H�H�|$L�����M�}M9��XH�D$L��I�EH���
��I�@��u&H�����tH�������t�����4�f���I�ƃ�H�D$ �%I������I�������t��I�L��L������I�OI9���M�wL��L��H�L$(�
��H�L$(H�y@��u"H�����tH��ƃ���t�����4H�L$0�ɠ��H�L$0I����H�D$(��I��������I��ƃ���t��I�H��L��H�L$8L�D$0�>��H�L$8L�D$0L�II9��� L�AL��H��L�L$@L�D$8H�L$0�Y	��H�L$0L�D$8L�L$@I�y@��uH�����tH��ƃ���t	���P"L��H�L$8L�D$0���H�L$8L�D$0I�@�u$H�����t��H������������u	H�I��t�H�y@��uH�����tH��ƃ���t	���o"H��L�D$0芩��L�D$0H����I�@H�|$(M�Fu0I������t'�f.�I�������A�����u
M�A��t�I�@��uH�����tH�������t	����L�����I��M����I�FH�D$H�|$ L�pu1I�����t(�$f.�I������
A�E����u
M�mA��t�I�}@��u#H�����tH�������t
����@�4�f���I�ƨ��H������H�������t��I�L��L������M�}M9��WM�uL��L���%��M�vL��L������@I������[A�E����u
M�mA��t�I�}@��uH�����tH�������t	���- L��謧��I��M���DI�FM����H�D$H�@H�D$H�|$H�Eu*H�����t"�@I�������A�$����uM�d$A��t�I�|$@��u!H�����tH��ƒ���t���f��4����I�Ǩ��H������FH��ƒ���t��I�L��L�����M�l$M9���M�|$L��L������M�L��L������f�I�������A�$����uM�d$A��t�I�|$@��uH�����tH��ƒ���t	���L���J���I��M���oI�GM���H�E���L��H������M�l$I�l$M9�����H�m���f�H�|$���H��4��H�D$H�@4���f.�I�@��u&H�����tH�������t���q��4膛��H�Ũ��H�������H�������t��H�EL��H������M�oM9��I�oH��L���D��@I�}@��u&H�����tH�������t������4���I�ă�H�D$ �UI������HI�$������t��I�$L��L���x���M�uM9��PM�eL��L�����I�~@��u"H�����tH��ƃ���t���^�4�f���I����H�D$(�nI�������aI��ƃ���t��I�L��L��L�D$0���M�NL�D$0M9��M�FL��L��L�L$8L�D$0�
��L�D$0L�L$8I�y@��uH�����tH��ƃ���t	���vL��L�D$0躣��L�D$0I�@�u%H�����t��I�������A�����u
M�vA��t�I�~@��uH�����tH��ƃ���t	����L��L�D$0�H���L�D$0I��M���'I�@H�|$(M�D$u+I������t"�@I������F
A�E����u
M�mA��t�I�}@��uH�����tH�������t	���eL��輢��I��M���v
I�D$H�|$ L�eu
I�������M�gA��t+��A�$�����xM�d$A���iI�����u�M���WH�wML�(M���X	H�E����L��L������M�}M�eM9����M�d$���L�t$H��L���:���I�n@�����H��������H�|$H���������DM���s���H�pvML�8�j���L��H���U���M�oI�oM9��T���H�m���H�|$L���+���M�}H�D$I�EM9������H�@���@H�|$�N���H��4��H�D$H�@4�Z�f�I�~@��u&H�����tH��ƒ���t���l��4���H�¨�{H������oH�������t��H�H��L��H�T$(�l���M�~H�T$(M9���I�VH��L��H�T$(���H�T$(I�@��u'H�����tH�������t�����4H�T$0�A���H�T$0I�Ń�H�D$(�I������I�E�ƃ���t��I�EL��L��H�T$0���M�GH�T$0M9��M�oL��L��L�D$8H�T$0����H�T$0L�D$8I�x@��uH�����tH��ƃ���t	���L��H�T$0莟��H�T$0I�E�u)H�����t!��@I�������
A�����u
M�A��t�I�@��uH�����tH��ƃ���t	����L��H�T$0����H�T$0I��M����I�EH�|$(L�ju
I������)M�nA��t*�7�A�E����� M�mA���I�����u�M���H�asML�(M���	H�B��L��L���5���I�WM�wI9����M�v��H�@��L�t$H��L��菎��I�n@���i�H������\�H�|$H���'����J�f�H������I��4� H�E4���I�|$@��u%H�����tH��ƒ���t����fD�4趓��I�Ũ�pH������dH��ƒ���t��I�EL��L���@���M�t$M9��M�l$L��L���r���I�~@��uH�����tH��ƒ���t	����L���1���I�E�u*H�����t"�@I������[A�$����uM�d$A��t�I�|$@��uH�����tH��ƒ���t	���_L���œ��I��M���y	I�E�l���M����H�aqML�0��L��L���E���M�uM�eM9�����M�d$�s���f.�H��L��H�T$(����M�~H�T$(M9�I�V�����H�R�K����L��L�����I�OI9���M�w���L��H�T$(����H�T$(H��4�I�D$4�)�H��L���#���L�}A���p�I������c�L��H������S�M�����H�`pMH��Q�H��H��H�T$@H�L$8�;���H�T$@H�L$8L�BH�JL9����H�I��L��H������M�l$M9���M�|$I�}@��uH�����tH��ƒ���t	���g�4����I�ƃ�H�D$�EI������8I�������t��I�L��L����I�ML9��
M�uL��L�����M�vL��L������DI�������A�E����u
M�mA��t�I�}@��uH�����tH�������t	����L���D���I��M���I�FH�|$M�w���I��������L��L�������|�M���~�H��nML� ��H��L���0���H�T$(I�T$����H�������H��L��������L��L���e�I�ML9���M�uH�y@��uH�����tH��ƃ���t	���aH���c���I�F�����H���������H��L���P������L��L�����M�t$M�l$M9������M�m����H�|$H�������\�H�|$����I��4��H�D$H�@4�Z�H�����I��4�GH�E4�v�M������H�umML�(���DI�}@��uH�����tH�������t	���4L��H�T$(�j���H�T$(I������M���&�H�mML�8�K�H��L��H�T$0��I�OH�T$0I9�I�W��H�R�~�L��L��H�T$0���M�GH�T$0M�oM9��,���M�m���L��L��L�D$0��M�NL�D$0M9�M�F���M�@�0�H��L��H�L$8L�D$0�c�H�L$8L�D$0L�II9��pL�A�I�H��L���ȇ��L�mA���#�I�������L��H���b�����L�|$L��L��荇��M�wA�����I��������H�|$L���%�����L��H�T$0����H�T$0H��4�I�F4��H�����H��kMH����L���׉��I��4��I�G4�z�M�������H�hkML� ����M�����H�PkML�(���L��H���5�M�}M9��KM�uI�@��uH�����tH�������t	���
L���3���I�F��@�H������4�H��L��� ����$�M�������H��jML�(���H��L���8���H�T$0I�V�����H��������H��L�������L��H������L��H���^�M�l$M9��R���M�|$M���H��H�T$(腈��I��4H�T$(��H�B4��L���a���I��4��I�F4�Q�L���B���I��4�$I�D$4�s�L��L���_���M�gA�����I��������L��L������M���M�H��iML�8�|�M���u���H��iML�8���H�����H�liMH���M����H�TiML�0�D�M�wM�v�?�H��L��輄��H�T$(L�jA�����I��������H��L���Q�H�T$(�p�H��H�D$@H�L$8�5���H�D$@H�L$8H��4�H�A4��L��L���I���M�l$A���C�I������6�L��L������&�L�t$H��L�sL�����L��L��L��L�p�����L��L�����M�~A�����I��������L��L������H��H���q���L���d���I��4��I�F4��L���E���I��4��I�E4���L���&���I��4�NI�F4����H��H��H�L$@H�D$8�:���H�D$8H�L$@H�A����H��������H��H��H�L$8���H�L$8��L��L������M�uM�v����L��H�D$8L�D$0菅��H�D$8L�D$0H��4�$I�@4���L��H�T$0�a���I��4H�T$0��I�E4�6�L��H�����M�}M9������M�uM�v�)�L��L�D$0����I��4L�D$0�I�@4��H��H�T$0���I��4H�T$0��H�B4��L��L������M�nA���u���I������h���L��L�����X���L��L���́��M�nA�����I��������L��L���g���L��L��藁��M�eA�����I��������L��L���1����L�AM�@�F������L9��\�I�l$���L��L���7���L�D$0M�pA�����I��������L��L�����L�D$0��L�t$H��L�uL����L��L��L��L�p�����L��L���̀��A��M�}H�T$0�j�I������]�L��L���a�H�T$0�H�L��H��L�D$8H�D$0肀��H�D$0L�D$8I�@����H��������L��H��L�D$0��L�D$0��H��L���;���H�T$0L�zA�����I��������H��L�����H�T$0�w�L��H������L��H���������l��L9�����M�eL���H�D$ ��H��L���t����I�l$H��L���_�H�mH��H���P����M�|$L��L���;�������L9����I�o��������L9����I�EH�D$��H�D$�_�M�eL��L�����M�d$L��L�������H��L��H�T$(��H�T$(��L��L�����[�L��L��������Y��L9��x��M�wL���H�D$(�.�L�t$L��M�uL���X�L��L��L��L�p�F���I�oH��L���2�H�mH��H���#��������L9����M�|$��H��H��H�T$@H�L$8���H�T$@H�L$8���M�uL��L������U���M�uL��L��H�L$��H�L$��H��L�������a��L9����I�V�����E��L9����M�wL���H�D$ �_�����L9��5�M�eL���H�D$ �z�M�wL��L���"�M�vL��L�����F��L��H��H�L$8L�D$0��H�L$8L�D$0��L��H��L�D$0���L�D$0�8�H��H��H�T$0��H�T$0���H��L��H�T$0��H�T$0�4��H�T$0�]��H�T$0H9����H�JH�ȃ�H�D$0�g��M�eL��L���\�M�d$L��L���L��@�M�wL��L���8�M�vL��L���)���������L9��A�M�l$��I�VH��L��H�T$(���H�T$(H�RH��H�����H�T$(�������L9��B�M�u������L9����M�uL���H�D$�R�H�JH��H��H�T$@H�L$8�y�H�L$8H�IH��H���e�H�L$8H�T$@����H�T$(���H�T$(L9����M�oL���H�D$(�������L9����M�FL����H�D$(���H�L$(���H�L$(H9�����L�AL����H�D$(�I�����L9��*��I�W�b���H�T$HL�D$@H�L$8�h��L�D$@H�L$8H�T$HL9�����I�@����M�l$L��L���g�M�mL��L���X��D�����L9����M�d$�������L9���M����H�L$����H�L$H9����H�A��M�oL��L��H�T$0���M�mL��L�����H�T$0�_�L�AH��L��H�L$8L�D$0��L�D$0M�@L��L����L�D$0H�L$8�����Q��L9��/�I�F�.���5��L9����M�m���H�T$(���H�T$(L9����M�m�������L9����I�G���M�FL��L��L�D$0��L�D$0M�@L��L�����L�D$0�G�I�WH��L��H�T$0���H�T$0H�RH��H����H�T$0�����s��L9��>�M�m�@��L�D$8H�T$0�M��L�D$8H�T$0L9����I�@����L�L$8L�D$0���L�L$8L�D$0L9��c�I�A�l��H�T$@H�L$8����H�T$@H�L$8H9�����H�B�����H�L$8H�T$0���H�L$8H�T$0H9�����H�A����H�L$@L�L$8L�D$0���L�L$8L�D$0H�L$@L9����I�A�����]��L9�����M�m������A��L9����M�d$���H�T$0���H�T$0L9���M����H�L$8L�D$0����H�L$8L�D$0H9��j��H�A�s���H�T$0����H�T$0L9��v��M�����L�D$0���L�D$0L9��`�M�v�l�ff.����ATUSH��0dH�%(H�D$(1����yA���tE1�H�����A���������Ѓ����H������H�ZH�CH�h@����D�d$H�D$H��t ����H�������E���$�H�x�w���H�|$H�5�r��H��H�����H�|$�F��H��H�L$(dH3%(��H��0[]A\�fDH�����t7H��������V������M���H��H�T$��H�T$�6���fDH����H������H�n`MH�����fDE���?����H�D$�.���fDH��у����
���������H�EH�xH��tH�T$H�5�o���0E��t�H�[H��t���u�L�d$�=fDH9�tH�CH�xH��tL��H�5�o����H�[H���j������a���H������T���H��Ѓ����C�����u���t��4���@H��\MH�����f�H��VMH������H�\MH�����H�qXMH����H�
[MH������1��F��a����������u	H�����tX��t3��u^�Ѓ���tdH��tn����H�RL�Zp����l��H�����u�H��tQH��u�H��^MH��Ͽ�6��fDH�VMH��@H�A[MH��@H��WMH��@H��[MH�����H�)ZMH��p���P�1��d�@��ATA��UH��SH��芹��D��H��H��H��[]A\���D��AUA��ATI��UH��SH��H�����H��D��L��H��H��[]A\A]�6��fD��H�UXM��H��H��H�8���D��ATI��USH��H������L��H�����H��H��[H��]A\�ݾ��ff.�f���ATA��U��SH��H�����D���H��E1�[H��]A\�Q������AVAUI��ATUSH�.�� tNH����1�H��H�
�q!H����H�=��1��~��I��H��&H�'\M[L��]A\H�8A]A^�\��@H�n�f��H��M�u1�H�5� ���@�H�5�L�����L��I�E uI�E H�<�H����L��H���3��H9�u��s���f���UH��SH��(H�dH�%(H�D$1�H�$H�D$H��Āu7�����t;H�EH�L$dH3%(H��uH��([]�f�H�CH�x����u�H��H��H�5�l�����H�|$H�}H��t(H��ZMH�sH;0tH�w@��uH�����uDH�$�|�����c������ff.��AW1�I�Ϲ
AVAUI��ATLc�U��L��SL��H��M�p`�H�A�@H����I�@P���������[����1�1�A��ʃ�0��	���K4A�O�ʃ�0��	�i�K8A�WI���*uH���C(�QH�y�ʃ�0��	���K<�WH�O��:u�C,H�����&u�C0�Q���r�S<S4�S@�K,E��~��u������upD�#L�kH��[]A\A]A^A_�f�������
���ƅ���A���1�1��ʃ�0��	�����L����*�`����2����1�1�1����DA�l$�������9��{���H��������Hc�H9���L��H�4�����I��I�����K��M�H�=��M��I�$1�A���@��#���I�O��*�������fDD9���E�t$�Ic�I�D�������
��H������������������H�CP�t$H�������H�{PE�|$��о��I��H�CPH�CXH�������t$	�����E��M���LD�L�sP�p����1��1����f�1�1�����1�1������2������*���H�=��1��4�������D$�o�t$���K���@H��u"�C(��uS8D9�����H�CP����fDH�ljt$���t$H�CP��H���c���L��H�=ƻ1��&��L��L��H���X���C����H�����fD��AWAVI��AUA��ATI��USL��H��H�L$dH�%(H�D$81�H���D$LD��y���D$�L$E���CA�E�E1��H��H�$H�D$(H�D$� �L��H���
��I��L9<$��K�<>���I��M��t1H�D$(H��tLH�t$J�;L��H�D$�~y��u�J�;4L�D$H��u��L�D$�x�L�D$H���fD1�H��L��H�D$���L�D$��t�I��L9<$�p����H���oD�,$�T$�L$M��������������H�D$(1�H�D$�f.�I�4��9l$~FB�D-H�I�<�L�<����H�D$(H��t~I�H�t$L��L���x��t��$��9l$��|$t,I�$�Ā��H�����$H�۹HE�H9���H�L$8dH3%(�$��H��H[]A\A]A^A_Ð1�H��L�������B����$�D��t��u�H��t�M��u�Dl$E��~�A�E�H�D�H�4H��H9�u��|���I�D$H�@�S���f��$����_�H�=�4!H���P�H���(��Dl$E��~1A�E�H�\$0I�l�I�>I���d���1�H��L��H�D$0�RwL9�u�L�����H�=��H����H������ff.���USH��XH��$�L��$�L��$���t@)�$�)�$�)�$�)�$)�$)�$ )�$0)�$@dH�%(H��$�1�H�\$0H��H�l$H��I�؉�1�H�D$H��$����H��$p�|$0�D$H�D$ H��$��D$0H�D$(;|$p|CH�t$H���e��H�|$u`�|$0��u:H��$�dH3%(��u>H��X[]��H�|$tH���p����|$0���|$X�t$pu�T$h��s����H��D$�B����D$�ff.����USH��XL��$�L��$���t@)�$�)�$�)�$�)�$)�$)�$ )�$0)�$@dH�%(H��$�1�H�\$0H�l$H�D$I��H��$��)���H��$p�|$0�D$ H�D$ H��$��D$0H�D$(;|$p|EH�t$H���8d��H�|$ub�|$0��u<H��$�dH3%(��u@H��X[]�f�H�|$tH�������|$0���|$X�t$pu�T$h�����.�H��D$���D$�ff.����H��H�GH�x��H����H�����f.�U�H����SH��H��dH�%(H�D$1�I��H�4$H��H�=	N����H��H��H���v���H�L$dH3%(uH��[]��z�f.���H���������HN�H���ff.���H���S���H��H�H��?���D��H���3���H��H�H��?H�Ѓ��f���H����������HO�H���ff.���AUI��ATU��SH��H��8dH�%(H�D$(1��D$�
��H�D$ �������M�eL�d$����1�I�UH�T$���dH���%H�t$L���h������iH�t$H��tH���M�����t�H�t$H��uzH��H�L$(dH3%(�}H��8[]A\A]�fDH�D$H�L$H�T$L��H�t$������	H�t$H�����D$���H�|$H���Q���H��������v���H�D$�o���@�K���~}M�eH�D$ L�d$����H�D$H���g���H�|$ ��L�d$�S���f.�H�|$ ���L�d$����@H�t$H���������H�D$���H�|$ t
H�|$ ��������H��MMH�5ɲH�81��?�L����H�5`�H��H��EMH�81���H��MMH�5f�H�81�����ff.�@��H9�tWUH��H��H��SH��H��H�=�H���V��H��tH��H��H��������tH��1�[]�DH���[]�@��f.���H��dH�%(H�D$1����uH�<$I����H�='N�2���H�L$dH3%(uH��������UH��SH��H�������xH��H������¸��~1�H��[]����H��dH�%(H�D$1����u H�4$I��H�����H�=�N華��H�L$dH3%(uH�����D��USH��H��@��u	H�����u1H�����H��H���!���H��H�5��H��H��KMH�81��3������t�H����H����ff.����UH��H��H��SH��H�=w���H������H��4t(H��t"H��H��H���4���H����[]H�H�D�@H���[]�@��SH�=x��_��H�KM�H�����H��H�5��H��:���H�;�H���H�5��!����H�;�H�����H�5(�����H�;�H�u���H�5�����H�;�H�*���H�5���ν��H�;�H����H�5ݯ賽��H�;[�����H�����H�5ʯ闽���AUATUSH��H����H�/H��H�������@��I���H��L��tN�f��toH�{H��tfH�[H��t]�������H�H�������@u@�H��L��uX��t�L�kH�[M��t,H���T�����tPL��H�H�������@t�H����[]A\A]�H��u�H����[]A\A]�fDH���[��]A\A]�fDH��1�[��]A\A]Ð���P�fDAUATUSH��L�'H����������A�D$I��A�|$H��H�0H��H��H��H9�w-�L�A�l$H��[]A\A]�fD�����?�v����<H��H9�r�H�����1�I�$I��I�EH��@�X��ff.�AVI��AUA��ATI��US��H��H�%M��ttL��H��tLH�G�H�x@����L�0�XD�h�U��@H�h�XD�PI�T$���H��[]A\A]A^�@��@����L�0�XD�h�DH��tSH�GD�L$�H�x@���I�T$D�L$L�0�XD�h����Ãu�A��t����XH��[]A\A]A^�D�L$��@�ff.�@U1���SH��H��H�tH�GH�x@�(�����H�@H�X�h H��t�C(�K,H��[]�ff.�@AU1�A��ATA��UL��S��H��H�tH�GH�xP�8����H�@D�hD�`0�@4H�h(�X�@ H��[]A\A]��UH��AUATSH��dH�%(H�E�1�H��&���H�GI��H��HcP`H����H��H��H�BH��H%�H)�H���H��H9�tH��H��$�H9�u���,I��1�L���O���H��L�%�L�~�I��L�
��H�ؐ����U����H�ƃ���H�@H��u��L�
��L�2�L�k��4f�H�CH�SH�BH��tH�PH9���H�[H�����;uЋCM�l$E�E��~�A�C1�L��?f���Ou+H�S(H�<ƒo(uH�WH�H�WH��tH�z�H��A9��s������Cu�H�S(H��B@tLA�����f��@,uHcPA�<�9x(�	���H9�����1�H�u�dH34%(��H�e�[A\A]]�A����fD���f��P��;��E�,E��~5A�<SH��L�A�<O����DH�J�|�Ot-H��A9��H���m���DH�PH��t�B,�U����P���H��H�H(H�H��t�B,�E���HcRH��A���$���@H)�H�L�����1���H�������������������H��H��H�ЋJJ�VH��H�8)�Hc�H�T����1�H���ff.��S��H�6�H���H��<�u<H�ߨ�G�Hc�H�>��f�H�^���\H�H���AH���H�\�H��H��[ÐH�>@��tGH��H��H)�H��[�H��B���B��Hc��H�>1�@��u�����+��H���fDH�^���
H�H�>@�����H)�H���i���H�����H��R���@H������B���@H����H�H��H���%����H��+BHc�����DH��B���B��H�H�X���DH�>�@�������Y������H���L�����H��H�t$�:��H�t$H�����H��H��[� ��H������Y����������H��H�t$���H�t$H������ff.�@��PXH�5k�H��H�`AMH�81����ff.�H�GH���H��tPH����H9�u�=DH����8�����H�BH9�u�H�pP��tH��H�=���1��1��H�pPH�=��1���ff.�@��u:H�����t1H�u*H��H��Ѓ���t!��u�O��H��H������������ uH�����H����DH���f.�H�����AWAVI��AUI��ATUIc�SH��H��H�GD�D$L�`pH�4$���H��I�����ATD�D$M��L��L��H��APH�|$L�D-�$���H��([]A\A]A^A_�DAWAVAUATUSH��8dH�%(H�D$(1�H�t$H�D$�D$ ����H��a�H�GH��H�T$Ic�E��I��L�`p����H��I���V��H�|$ATL��AVH�t$H��M��L�D-���ZYH�\$(dH3%(uH��8[]A\A]A^A_��/��ff.�@��SH��H����H�{���H�;[���ff.�f���SH��H�@���H�{���H�{ [�|��ff.����SH��H�H��t
躣��H�CH��[��f�ATI��H��H��USH���˨���Ń�uH��u!��[]A\��H���h���[A�$��]A\�H��H�K6MH��H�5e�H�81����ff.�@AWAVAUI��ATI��USH��(dH�%(H�D$1�H�};MH�4$H�T$H�8H�w落��H����H��H���,�H�{A�����H�{H���$��I��H��E1�L��4�D�|$���Hc\$L��I���T���jH�\E1�jL��H��I��H��L��蔨��ZYH�L$dH3%(u4H��([]A\A]A^A_��
H�=|�A��I���H��I���m������f���H�H��tH���:���H��H��(Ð�(�f.���SH��H��dH�%(H��$1�H��H����H�?<MH��H�5��H�81����H�H�@H��t,1ɋ��r
��v��uHH�@H��u��@��u	H4��H�G(H�H��tH��t-�G*��H�WH�O�H�QH��t�H�J�DH�WH�O1�H�QH��t�H�J��H�W�Ѓ�u��uH�����tH�����
������SH��1�H�tH�{H��@�0�o��H�@H��P�H�K�Q`�r�q`�PH�����H�P �@(�`,�[�f�ATUH��SH��H��H��dH�%(H�D$1���H��H��H��I��������t%H�$�C(H��H�L$dH3%(u%H��[]A\ÐH���(���L��H��H��H���w���������H�����u�fD�[���ff.�SH�H�I��A�� tLH����H��~01�L�O��H��H9�tL��M��uH�O H��H94�u�[����H��[�fDH�_�f.��G�~t8�@t�G,���G�f.�� u,�t8H�G8�@���G�f.��G�G�f�H�G8�@���G�f��u�t �G ���G�fD�G(G$�G�fD�GG�G�ff.�PXH�5�H��H�44MH�81����f�PXH�5��H��H�l8MH��H�81�����ff.�@��U��S��H��H��H�WH�JH9�sqHH��A�"H�0H��	H��A�"H�H�x1ɺ�L��H�����x*�@uH��H��[]�@H������H��H��[]�fDH��������H���3������B�H�WH��H���rH��H9�scH���H�0fH~�H9�tBfH~�H��<������tH��H��u�fDfH~�H��H��H���fD雐��PH�����f�SH����H�SD�JL�RE��t*1�L��D��I�4�HcL��A��L�D9�r��uH�����tH��ƒ���t	H
H��[��@��tH���f�H�����t�H�������tI~��
t2����H��H����uu������t1�GH���S,�+4��H�H����H������H��f�H9�t�H���H��H��?H)�H	�H��H�|$�~D$�fD��H9�tWH��u@H�����t8���@��u}H�����tt���9�uk��t��tQ��
t$H��H���q������f.�1��DH��H��H���Y���H�H�PH��w"H����H��H�����D������H�
��H�d��H�=��論��ff.�H��u1���UH��H��SH��H�����H��tH���/��H�} H��[H��]�-���DH��1�[]�ff.�@AVAUATUSH��dH�%(H�D$1�H����I��H��I��I��I�<$L��H��耲����t,H�$�Ņ�x"H�L$dH3%(��ugH��[]A\A]A^�M�$$L��H��L���>�����tH�$�Ņ�xI�>H�����I�T$H��L���Hc�諛����f�����������@L���I��A��u<��u`E�P	A9�w8�	1��A�<H����A�<9H	�9�r�D��DE�PA9�v?PH�7/MH�5��H�81����fD����Ƀ�E�H��A9�w˃�u��H��D�Ð��H��H�HH�t$�T$�F�����wpH�Қ��Hc�H�>��fDH�i1MH�H���f�H�,MH�H��ÐH�I4MH�H��ÐH�A0MH�H��ÐH��1MH�H��É�H��3MH�5�H�81��'���USH��(dH�%(H�D$1�H����H�GHH��H��H�xH��� u;H�GH9���H�����H��t0H�L$dH3%(��H��([]�DH������H�}HH��G�wH���9����P����D$��9���� uH��H���LH�t$H���H�UHH��H�D$H�zH�����H�D$�a������V���fDH�t$�T$�������H��1MH��H�5�H�81���������H�d1MH�5�H�81�������AU��AT��USH��H��H�GH�PH9�svHH��I��H�s�v���H�sL��I���g����S L��H������H���E��x.�@uH��H��[]A\A]�@H������H��H��[]A\A]�f�H��踦���E��H���*���f.���AU��AT��UH�,�SH��H�GH�PH9���H(H��I��H�u����H�uL��I������L��H�ƃ���t"���H�����x"�@u-H��H��[]A\A]Ð軰��H�����y�H���	�����@t�H���:���H��H��[]A\A]�H���d���@��AWE1�AVAUATUSH��H��(H�HH�l$H�t$H��T$���H��I��H�D$�n���I��M��~YfDH�{HH��A�����H�{HH��I�����L��H��I������L��H��I�����L��L��H��距��Ic�H;D$|�L���U+H�D$���x)�@uH��(L��[]A\A]A^A_�L���H�����fDL�����H�D$���ff.���AWI��AVAUATUH��S1�H��H�HdH�%(H�D$1�L�t$�T$L�����H��I��趎��I��M��~3fDH�}HL�������H��H������L��H������Hc�L9�|�A���x;�@u'H�L$dH3%(L��u2H��[]A\A]A^A_�DL���`�����fDL������A�����D��SH��H��H�HH�t$�T$��H��H���7���H������H�����H��[Ð��ATI��USH��H�H�T$��;WsxH��JH��H�t$�L$����L��H��������1�1�H���}�H���E��x*�@uH��H��[]A\�f�H��舜��H��H��[]A\�@H���0����E����D��AVAUATI��UH��SH��H�HdH�%(H�D$1�L�l$�T$L�����H�}HL��H��A�����H�UH�|$H��H:���I�Ń�8D��L�����A�$��xd�@uPH�L$dH3%(L��u\H��[]A\A]A^Ís�H��Hc�����H�xH� tH�x���A����L���(���I���L���8���A�$��,��ff.��H���w���H��H���[���ff.�����H����H��H�WH�JH9�sHH�x���u�\���H��H�����H���8�H��,MH�5��H�81�� ��AUI��H��ATA��H��UH��SH��H��H���K��H��H��uH��H��[]A\A]�DI�ED��H��H��H0�{��H��H��[]H��A\A]�f.�AUATUSH��H��tiH�A�Յ�uH�D���H���[]A\A]�D��H��I���H�����H��H�uH�����H��I�$H�����H�E1��AWM��AVI��AUATUL��SH���H��H�2&MH�T$L�l$PH��t$��o1�H�tH�{H��H��@�$�L��I���Y���L��I���N���H�t$E1�H��M��D��H��A������I�l$M��H��I�$�t$H���[�2]A\A]A^A_���ff.�@AUA��ATA��UH��S��H��XL�D$@E1�L�L$HdH�%(H�D$1���u2��D��D��H����H�\$dH3%(��H��X[]A\A]�H��$��Hc��$ H�D$H�D$ H�D$H��$MH��sn1�H�EtH�}H��@H����L�T$�<$E1�I��1�H�D$���A���L�H�I��H��9�~��/v�H��H��H�I��H��9��E���%����<$��������f�AVA��AUI��ATE��UH��S��D9�|=~/�#1�D��L��1������H�UH�PH�BH�EA9�u�[]A\A]A^��1�D��L��1����q���H�UH�PH�BH�EA9�u���f.�SH���E����D��H��H�RH�����u�Mc�H�BO�LD�AMc�O�DH9��t'��1����H�SH�PH�BH�C[�@�@@tӋ��+P,9�uƹ��ĐH���ff.���U1�H���S1�1�H��H�����H�UH�
U�H�PH�BH�EH�Cǀ�H���H��[]�ff.�f�SH���E����D��H��H�RH�����u�Mc�H�BO�LD�AMc�O�DH9��t'��1����H�SH�PH�BH�C[�@�@@tӋ��+P,9�uƹ��ĐH���ff.���AU�ATI��UH��SH��H��H�GD�jH�@L�D��ǀ�1��h���H�SD��H��M�D$�H�PH�B�]H�C1��<���H�SH�PH�BH�CH��[]A\A]Ð��AVAUI��ATUH��H�SH��L�7H�5͗D�b���D��H��H��H�E1��I�F���M�ED��H���1����H�SM�ED��H��H�PH�B�]H�C1����H�SD��H��1�H�PH�B�#H�C1��f���H�SH�PH�BH�C[]A\A]A^�ff.�f�AWI��AVI��AUATE��USH��H��(H�$�=�E�n H��A�F$�D$A�F(�D$A�F,�D$I�GL���M��t&M�NI� ��I�AE��~	H����E1�H�$1ɺ$D��L��L�01����H�SI��D��L��H�PH�B�@H�C1����H�SH�PH�BH�CI�G�E(H���H��tH� u6H�@ H�@H��tE��4H��(H��[]A\A]A^A_�f�M�N �J����H����f.�H� ��H��H�xL�'A�� ��I��A����I��H�=��MH��������L��H���)��Ic�L��H�t6���Hct$L��H�t6���Hct$L��H�t6���Hct$L��H�t6����L��K�t$����1�I�tI�H��@�(����t$1�L��H�@H�S�H�P�@L�` H�B1�H�C1�����H�SH�PH�BH�C���f�H� ��H��H��H�D$�
���H�|$H��I���-��H�=��MH��������L��H���
��Ic�L��H�t6���Hct$L��H�t6����Hct$L��H�t6����Hct$L��H�t6�������f�L�g�d����H�@ �8����H�@ �H����H�=���迧��H��H���M�7���H�=]��蟧��H��H���M�3���AWI��AVI��AUM��ATI��UH��SH��D�L$���D�L$�=L��H��I���1�D�����I�T$H�PH�B�C(H�EH�hI�GI�l$H���H���:H� �PH�@ H�@H���A�U ���H� �FH��H�xH�/�� �H������v��H�=��MH������L��H���V��Icu L��H�t6�E��Icu$L��H�t6�4��Icu(L��H�t6�#��Icu,L��H�t6���L��H�t-���1�I�tI�H��@�(�(��A�u(1�L��H�@I�T$H�h H�P��@H�B1�I�D$1��;���H��I�D$H�EH�hH�kH�]I�\$H��[]A\A]A^A_��H������H�o�����H�@ ����H�=�'��w���H��H���M�������t��fDH��H��UH��SH��H��H�G�p\��u藠��H���_����ƺH��1�1��\���H�UH�PH�BH�EH���[]�H�H��� u
H�����DH�B�����H9��PH��MH�5v�H�81��`���AUATI��UH��SH��H� ���1҉�H��H��H��tpH)ո����H�H9�wkH��L�-V�H��v+�I�D$ �L��H��H�8�w���H��w�H��I�D$ H��H�5�H�8H��[]A\A]�L���@H��[]A\A]�H��MH�5��H�81�襾��DAUI��ATI��USH��H��H� ���L��L���H�C H�8��H����[]A\A]�AVI��A�S�H��(dH�%(H�D$1�H�t$H��D��M��D�HA��)�A)�I��M��tND�BD��I��H��A��uѺ	E1�D��O�DI��F�D�D���H�D$dH3%(uH��([A^�@D��A��H)�H��	��4���@��ATI��UH��SH��ǀu"H��L���H���(���H��#[]A\�fDH�FL��H�pH������H��~�[L��H�5H��]A\麗��f.���ATUH��H��SH�z H����H�{ H��I�����L��H��H�����H��H�����[1�]A\����AVI��AUATUH��SL�&A�� tbI��A��L��H���_���M��~;1�M�n@L��I� uI�F H�4�H�} H���_�H��H���$���L9�u�[]A\A]A^�fDL�f�f.���SH��H��蠄��H�{ H����H��[H���������H�MH90tPH�MH90t4H��MH90tHH��MH90tLH�}MH90uJ����fD��v���fD1��i���f���V���fD��F���SH��H�����H�����H�=��1�����@��UH��SH��H��(H�vH� dH�%(H�D$1��#�H�uH�{ H�$���H��H�D$����H��H�����H�D$dH3%(uH��([]�脲��@��ATUH��SH��H�dH�%(H�D$1�H��H��
����@toH��L�fH����H��H�ڄ�H��HE�H�$�H���A���H��H����H��L��H������H�D$dH3%(u+H��[]A\�DH�^L�fH��H�ڄ�H��HE�H�$�辱��ff.���SH��H�� dH�%(H�D$1������tJ�F�H���D$���H�t$�H���@���H�D$dH3%(uJH�� [�f.�H��f�H9�t�H��H��H��?H)�H	�H��H�t$�~D$��������ATUH��SH��H��H��@dH�%(H�D$81�H�|MH�0�ܭ��H����f�H�L$0H��H��H�T$)D$L�d$)D$ H�D$0H�D$�9��H�{ H�4$����H�{ H�t$H�D$ ����H��H�D$(�w����(L��H���'���H�D$8dH3%(uOH��@[]A\�@��tE@��u_�����tmH��t[@��tmH�}�|��H�5ԤH��H��MH�81��h������H�����u�H��tAH��u�H��MH�8�H��MH�8�H��MH�8�H�MH�8�H�(MH�8�H��MH�8�|���@��ATI��H��USH�����H�+Hc�� u<H��H��H�΃�H��9L���`���H��L���U���H��H��L��[]A\����H�kH��H�[H��~lj��8���H�x�/���I�|$ H���B��H�p�ff.����ATUH��H��SH��H�� dH�%(H�D$1��&��tiH��躷��L�`L���n����H��H�$H�XH�\$���H��H���P���H��L��H���B���H�D$dH3%(uH�� []A\�H��H���^���9���f���ATUSH��H��H��H�ndH�%(H�D$1��u~��H�{ H��A���F��H�{ D�d$H������H�C H�t$�H�8�ϟ��H��H�����H�D$dH3%(u	H��[]A\�覭��fDUH��AWAVAUATE1�SH��XL�~8dH�%(H�E�1�M�����AoH��)E��AoOIc)M�A��E+g����H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H��H�E�H�E�Ic�H��H�E�E����H�E�E1�DI�wIc�H�M�H��A��H�4�L�,����I�EE;7|�E��~%E1�I�GH�{ J�4�����H�U�J��I��E9�޾H�����H�{ Mc7�E���I��H�u�A��H�C L��H�8�K���D��H��H�E��W���H�{ ����H�U�H�u�A��H�C H�8����D��H��H�E��#���H�{ ���H�u�� A��H�C H�8���H�M�dH3%(D����H�e�[A\A]A^A_]�DIc�H��H�E�E����H�E�H��H��H��H%�H)�H���H��H9�tH��H��$������ucH�e�H�E����H�E�H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�e��%���H)�H�L��H�E�H�E��_����ت���UH��AWI��AVAUATI��SH��(dH�%(H�E�1�Hc��H��H��H��H�E�H��H��H%�H)�H���H��H9�tH��H��$�H9�u����I���~2�A�1�L�4�@I���L��H�4�
��I�DH��I9�u߾L���2�I�|$ ���H�U�L���I�D$ H�8����H�M�dH3%(uH�e�[A\A]A^A_]�f�H)�H�L4��j���轩��ff.�f�UH��AWAVAUATI��SH��(L���dH�%(H�E�1�M���=A�EH��H��H��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%���I�D$I��E1�H�E���t+D��H�u�L��A��I��H��I�T�8���E;}r�I�|$ E1����E�A�E��t_�D��L��A��Ic4�H��L����sL�����sL����sL����sL����s L����E;}r�H�M�dH3%(�E�u5H�e�[A\A]A^A_]��H)�H�L�����f�H� ��E���-���ff.�f���AUI��ATI��USH��H��H�GH�*H���H�����H����p��A��L��H��A�H��H������A���H��I�Ź�1����I�T$H����A�	M��H��H�PH�B��jI�D$���I�T$H�PH�BI�D$XZA��u	I�����uH�Cǀ�H��[]A\A]�L��H���Ք����ATI��UH��S�BH��H�w0�G�B H�W�G,�BH��G(1��_���H�C�uH��������{(�C���H�C ����s(H��茪��H�CH�C8H�CHH��PH9��6�H�=f�H����€�����H�5?
M�P�HD�D�ND9���A9�u}H�KH�=A�H�q$�
��€���uu�P�����S,��uy[]A\�H������M���H��L��蹓��H�C �9���H��L��襓���{(�]���H�C ������H��	MH�5�H�81��W���H�x	MH�5��H�81��?���H��MH�5	�H�81��'���H��MH�5њH�81�����H�0	MH�5K�H�81����H�	MH�5�H�81��߭��ff.�@ATUSH��H�T$H� uH��MH�5ܒH�81�袭��f�H�ZHc�H9�u]��#~�H��H�|$I���O���L��H��H��H�����H�t$H�u@@��u	H�����uH��[]A\�DL���`���H��[]A\�H������ff.�@AUATUSH���H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H����H�G��I��H��L�(����D$H��H��$�D$0H�D$H�D$0H�D$ I����H�������M��E1�H�D$��L��P��rY^I��uJH������H�SH��u"H�����tH��H��H�D$�*���H�D$DH��踶���#fDM��uH��T���H�CH�H�D$(dH3%(u5H���[]A\A]�DH����M��E1�H�D$�����1�P�2rXZ��	���f�H�GSH���H�@�����t'H���H;2tTH��1��f�H��H;r�t6��9�u����H������H�G��H����p\1������[�f��Å�xЉ�[�1��f�USH��H���~���H��1�@L�PE���E��t*M���I;0tRI��1��@I��I;p�t&��D9�u�I�����H��u��)���f.���xމA����H��[]�1���fD��H�~t1��f�UH��SH��H���r���sH��H��H��1�����H��1�[]�ff.�@AWAVAUATI��USH��H��(D�n�T$A���iA���R�I�D$H��������8�W���vH�@H���_��Q���w�H��=��E1���$����.��L�pM��u�f.�M�vM����A�>�W���w�A�V��>�L��?uvD�h0H�@(H;0�GI�F(H�(H���7�=I��D��H��1����I�T$L�`H�PI�D$H�PH��tH�B�E(M���mE�l$f.�A��=�WA��,��A��;uI�t$H�����E�l$A�Eƒ���I�|$(���H�SH���H��t"H� �H��H�:t�p4���M�D$1�M����A�8�1�A�x$@���i@E�l$��tp�x$�-H�@H��� D9h�I�L$(H�x(H�H��h(�B(H��H(��uH�PH�@H�PH��tH�B�����8u��x=t�E�l$��u�M����fDA��#��M�t$A�>��D��A�����T$��tOA��2A��$wEH��L��sZI�D$H��tP�8��
�P��;��
��=�8����
A�D$��$��������_uI�D$�8��
�H��([]A\A]A^A_�f�M���?���I�@�8LD�A�@���o�ƒ��������������1�A��>����I�T$H�BH�RH�BH��tH�P����@���HA�D$=I�|$(�e��I�t$I��H����I�����w�DA�����v	M�@M��u�M9��A�AM9�t
A�9����;�gM�l$A�}uA�E��>����H���ӿ��E�l$�����A��,����M�t$M��u�M�vM��tA�����w�A�~"��A�E���I�D$�8�'A���|A���/I�D$H�������8�����x����I�T$(H�H�
�� ��
����„������H�H(H�H�S�H�H����
I�T$H�B�	fD1�A��>�������H���@���?���L��������"A��>�P���E�l$I�D$(H��h(uH�PH�@H�PH��tH�BI�D$I�T$H�BH�����H�PA��#��������fDH�R ����A��>��1�A��?�����I�@(1�H�8������A�p0�E1�1�H��蚽��I�T$L�`H�PI�D$H�PH�������H�B�z���f�H�PH�������:�O���v f�H�RH�����
����w�I�NjJH������H�@(H��H�@H���r����8�W���w�H���I�D$(H��tU�+�������ƒ�����H����<��H��4��H�0��H�t6�V���fDE1��U���H�����u�H�����'H��u��'���D�h0H�@(H90�����I�nH��t
�}�����H�����H��I�FL�uH�EI�nH�EH�������H�h���f.�I�@(1�H�8�����A��������#���A�E����I�D$�8�����P�� �A��t^A������A���I�D$(H�������H����������H������������f�I�D$�8�c����P���W���H�P(H�:�I���H�PH�@H�PH���4���H�B�+���f.�A�p0�#E1�1�H������I�T$L�`H�PI�D$H�PH�������H�B����#1�D��H��1����I�T$L�`H�PI�D$H�PH���`���H�BE�l$�a���I�D$L��H�������8�<�8�����x�����H�H(I�t$(H�H9���H�YH9^����H�HH�@H�HH��tH�AH�BH�RH�BH�������H�P����f�I�D$H��������8������x�y���H�PH���l����:�c����J������$�N���H�JH���A����9�8����y�.���H�p(H�A(H�H9����H�@H9F����H�BH�HH�QH�AH�PH�����H�B���@I�D$(H�8����I�D$H�������8������x2�����H�P(H�
H�H��|���H�������H�����H#QH������I�T$H�BH�P��m���fD��=�O���I�L$(I�Q(H�H�H9��@����h(�B(D�@(H�E��uH�PH�@H�PH��tH�BI�t$H������E�l$����M�~M��u�X���f�M�M���B���A�����w�A�G�������!���I�G(H�0@������H�������������������I�OH��u����H�IH�����������w�A�����������H�A(L�A�������I�����������A����������I�F(H�L$L�D$H�8H�t$�r��L�D$H�t$��L���_��H�L$H�QH�IH�QH��tH�JI�WI�OH�QH��tH�JI�V(A�FH��uH������FE�l$���I�D$(H��h(uH�PH�@H�PH��tH�BI�D$;I�A0I�D$0��I�}(�]���L9��TI9���I�t$�V���H�PH�@H�PH�������H�B���A�������M�t$A�>�{���A�VE1�����E1�=�Z���tE�l$�L����x$�����H�HH�������H��H�����f�H�@H���M����n���I�L$(A�D$H���2�=��9�4�J�H����	��%��)�}�-�s�E�l$A��#�������H�@H���$����8�����x;����A�D$`�����@H�x(����F���A�F��$�V�H�*H��rU���$�������+�I�F(H�8��I�D$I�FH��tL�pA�F*E�l$����I�FI�VH�BH��tH�PI�D$I�T$H�BH�����H�P��H�y�����E1�����I�G(H�0���I�F�8���M���PI������I�D$(H��h(uH�PH�@H�PH��tH�BI�t$I�D$H�pH�����H�F����A�t$01ɺ#E1�H���-���I�UH�PI�MH�HH��tH�BI�UH���<���H�B�3���H�z���=���I�D$(H�8�o��H�D$I�F(H�8��n��H�L$I�T$(�D�H�H�DH�M����I�E(H��h(��H�HH�p�H�NH��tH�q�P(I�VM��tH��t	�:��H�PL�pI�FH�PH��tH�BI�uH��u�f�H�vH��t
�����w�T$H�������������I�~(苽���8�����M���PI�����H���<���I�U(�p(H��V�S���M��tI�GI�WH�BH��tH�PI�FI�VH�BH���F���H�P�=���I�FI�VH�BH��������y��I�E1Ƀ8u�H(1�A�}>I�u(����>A�EI�D$(H�H��h(�B(�x(H���uH�PH�@H�PH��tH�B�����I�D$I�T$H�BH��������H�J(H�p(H�H9�l�H�YH9^�^�H�@H�PH�BI�D$I�T$H�BH���;�H�P�2���z�9���I�O(H�1H�J(H�	H9���@����H�������L�D�ǃ���������H��������H�9A��A��A����M��A�� t{I��A��I��usI��A�� t[H����H��uZM��tCH��H�>M��t1H��H;9u@H�yH9~u6I�WI�OH�QH��tH�JI�V�Z���H�I ��H�v �H�y�L�F�I��H�R�6���H�PH�@H�PH��tH�BI�D$I�T$H�BH���h����A�v0� E1�H�߹1����I�VL�pH�PI�FH�PH��tH�BA�F#E�l$��L�����������I�D$I�T$E�l$H�BH�����H�P���H�A(L��=���H��H���{������%���ff.�@H���H�W1�H�����t�AWAVAUATUSH��(H�BpD� H�GE��A��A������D���A��A��E��H�^A��H��A��A��A��H���E��D�\$D��E1�I��E���H�S����H��H�������u�E����E�����H�S@��tNjKH�s(���#�����u�H�NH����H��u�H�bH�s�f��E1�H����)���������C,���<��<�L���A��H��DD|$H���B����L��I������I�SL�bI����I�$�� �QA�D$M�d$ ��tz��M�l�I�$H� ��H��H�P H�XH��H��t?���t��u3H9��4H�������t��uH9��H�@H��u�I��M9�u�H��(�[]A\A]A^A_�DA��E1��Y���@L��D��H��L�\$���L�\$E���Y����C�����2�D���L�S(I��H��t�P���o��������H�S��uI�z�rf.������f�H�%fDH��I�������H�H����H�������H�Cf�x���@1�E1�1�1�H��臬��H�SH�XH�PH�CH�PH������I��H�BM9��Q������@H�@ �T����H�SH���C����:�:����z2�0���H�B(H�H�����H#AH������H�H=�
��H=�
���C8H�BH�RH�BH��tH�PH�S�����H�NH����H���|���H�dH�s�i���DH�3H�C��O���H�H�SH=����H=��AH=�� H=q�)���H�WH�C����fDH�8�H�S�����H�TH�C�����f�H�Ce���H�cH�s���DH�aH�s���DH�H��%H��l�����H�dXHc�H�>��H�SH�SH�C��Q���H�\H�SH�C��8�����L�\$H�KH�CH���LL�T$H��k5L�\$1�L�T$I�tI�SH�z@H��L�T$L�\$�ܧ��L�\$E1�E1�H�C(�1ɾ�L���i���H�S(L�T$L�\$H�I�H�B����H�JH�SH�C�����H�OH�SH�C��f���H�MH�SH�C��M���H�PH�SH�C��4���H�RH�SH�C�����H�NH�SH�C�����H�LH�SH�C����H�HH�SH�C�����H�FH�SH�C����H�EH�SH�C����H�GH�SH�C����H�QH�SH�C��l���H�IH�SH�C��S����H��!t6H=��T���H�5H�C��%���H�YH�C�����H�[H�C����H�ZH�C����H�XH�C������C7�
���f�AWAVL�5UWAUATUSH��H�=tH��hH�t$dH�%(H�D$X1��S���D$H��u7�DH�C�����H��t�PH�5�t�1��U��H�[H��t]H9\$H����H�5�� HD�1��`U�������vs��t����[�SH�5t�1��/U��H�[H��u�H�=fs�
S��H���LH�8�+���H�D$XdH3%(�)H��h[]A\A]A^A_�������K$�SL�֪1�H�5�s��T���&���f��SH��jH�=�r�4PH��^H�1�躑��H�{(H�����SH��nE1�E1�D�,PH�mL�H�$�H�D$0H�D$@��tN�B�<�7��Ic�L�>��@H�C(J�<��;���H��H��耑��A��H�$Mc�N�,8A�}��H�|$(H�l$(�k0��j��D�|$�H�57rH��A��1�D����S���CH��o�A�D�|$������H�5"rH���|u���w����H�C(J��H��H�x�k^��H��H����`���K���H�C(H�t$N�,�L��蓉������H�t$@H����H���Y������H�C(H�5]rH��J���P1��4�������H�C(H��
H�5bqN�,���t��I�}H����A�UH�5LqH��1�������DH�C(J�<��_��H�5qH���1�����{����螪��H��H������^���fD�H�5G�H���Dt��A�U����f.�L��H�5�pH��1��\���������]��H�5r�H��H��1��7����3���H���LH�5�pH�81��Z�����H�5�p��H���LH�81��>���蹁��f�AWAVAUATUSH��dH�%(H��$�1�H�����H�GH�4$I��H�H��H�D$Ht.1�H��$�dH3%(��H�Ĩ[]A\A]A^A_�H�$L�gH�@H�����8u�H,H�@H��u�H�$L�pM�����D$L��E1�1�L�d$����
����������H�[H��u�L�d$1�E1��D$H�D$L�d$ A���0���uA�F	ũtI�F H�D$DM�vM��t_A�����
��
��u�A�~ �t�I�FH�����p$D��)�A����~�A�t$A�T$��M�vE�D$A��M��u�@Ic�Hc\$L�d$ �fD�����C$����;������@D�cL�k(D��L���=���H�
6jH��k�L�fh��
�D$Mc�D�S09�LʼnD$B�AF�H��A��D9C��
H�E1�1�A���u���@��Lc�K��8���}���<Ou�K�D��@,���x$�uщh$��@H��L��D�$�!���D�$�1�H�bnL��D���W��1����H�s1�H��t�F$�{ ������9������H��L��A�������s 1�E���H�QtL���	��1��>���f��k$�����H��L��H�$���H�$�s0L��H��m�H1�����1������D$1�1�@������H��I������H��H�D$ ���A��$��H�D$@�M���X�PA��$�I��$�A��$���I��$�I��B���I�GH�@hH�$H�hH���O�D$4E1��D$L�d$`@�E����������H�mH��u�Hcl$4L�d$`D��H��A�D$�D$�H��L�t$@M�l$A��$�H�D$ M��$�I�D$xH���LU���H��L��I�D$x�7U��A��$�I��$�I������I�GL�pI���@I��� ��	H�������%I����E1�xHc��p���H���fDH��L���H�sH��H�PH�SH��R�PH�SH��RH�p�P@��u
H�������H�S H���pH��L��rH��H�L
�q�R$�Q�@�����	t��uL���H���T A��D;m��E��K��H� �J���H�[ �E���f��]L�e(��L���?���Hc�H�
�gH�D$pIc�I�|�H�!f�x�<91��|$0H�=Ld�H�\$A�^����L��H�l$8L��M���L�d$`H�|$(L��H��H�|$PH��$�H�|$X�Q����tH�5�L��Hc�H�>��I�T�Hc�H�T���H�
�cH�|$��D)�H�H��:��u�I��H�l$8�T$4�M0�u4��t�D$4H�\$ ��H�H��;��HcD$4H�|$ H��H�É
H�L$@���rD�4��\$4�\$pDt$0\$����fDH�|$(u(H�|$Pt I��у���tH��I�f�I�|��Q����H�RI��$�L��A;�$���Hc�L�\��	���f�I�D��L$0HcӋ@D�)�H�H�D����I�t�Hc�H�t�@������H����������L���dg��@H�|$(�����H�|$P�����I��ƒ��������H
I��y���f�I�|��V��Hc�H�H�D��W����Hc�I�|�H�T�H�T$h�I��H�T$hH��,���@I�L�H�T$XH�5g���D��$��D$0H��H��$���$�H�L$h��[��H�L$hH����H�L$hHc�H�D����H�������H��փ���t2H��H��H�yH�1t��uH��H�D$x輁��H�L$hH�D$xf�H�AH��L��H��f�����DI�D�Hc�H��H�D��J���f.�I�L�I�I��$�%�A@��H�������M�GA��$��oA�@lH�<�H���pA�plL��J�@H��H�@@H�QH�PPI��m���A;�$���Hc�H�D����f�I��L$H�l$8L��輆��H�|$ 貆��H�$H��H�x���L$�u01�H�AfL������1�����f��E$�D$��@H�U1�H��t�Z$�M ������D$)؅����|$4��@�W�H�|$ Hc�;�u0����A�VIc�H�A��Hc҉\$I�D�*I�D��~���HcT$4H�t$ H�4�H�׉H�L$@���FD�4��|$4�@H�AH������\$�/����H������I��o	�Gh�pH��H���whH�H@I��ڔ��A;�$������H�
�^��H�5�cH�=�l�-F��DH�D$hH�$H�t$8L�\$xH�x�,�H�D$8E��$�L��H��k�p0H�D$h��1��T��L�\$x����f.�;p�?�������A�����H��tD�bL���˄��H�|$ ���H�|$@跄���u D�D$1�A��D��H�lL������1���������E�fE�n$��f.�A�^I�v(���њ��I�wAn4AŃD$H���A�n4H��t:H��H� tmH�xt���RH�GH�xt����A�^��H�a1�H�D$�8A��g��L��H���D���@H�@ H�8t�����H�G �@I�GHǀ��@t1�H�Q��~'H�P0H�BH�4��H��H�
HcIH�
H��H9�u�L���*��������M�oE1�H�-T`A�EI�����u�ZH��DA�E;esGI�UD��H�<������<u�I���Aƅ�H��t�H�PH���Ƃ�H��u�H�����H�����C�ƒ��	t��
u2H�D$HfDH��H9���H��H���T�փ��	tރ�
t�Aƅ�����L��H�$��`��H�$���D��E1���DI�v�������M�v �����W���H�=�i1���a��f�I�GH���I������I�WH�B�N������b�fD�:�uUI�wE�F0H���H�% E��~LH����H��H�D�D$0H���.D��D�D$0H��A�p�Hc�H����5��I�wH���H�% H��������/���IcƉ\$A��I�D�#���Ic��H����H9�,�蒉��I�wH���H��� u�H�G��f�H���C��H�L$H��H�T	H���25������H� �&���H��L�����s0��L��H��`1������(�H��L��D�$���K�s01�D�$H��fL������1���1�1�1����Mq��H�
�Y��H�5�^H�=;g�A��ff.���H��a�����H��w
H��J���f���UH��f�SH��H��8H�VdH�%(H�L$(1�H��)$H�D$H��H�l$�PH��a���H�C1ɺ;H�ߋp\1�踮��H�T$H��H��H�PH�BH�D$��1҅�uH�L$(dH3%(H��uH��8[]�H��H����Hc����Cp����AVAUATUSH�_L���M��t[L��]A\A]A^��I���{�����H���I�\$I�ƋSH��H��uM��t�1�L�-�[���I�,�H�}��H�H�EA�D�I�D$9Xw�[L��]A\A]A^�DH�sL��輅���C��UH��AWI��AVAUATSH��H��0���H��(���dH�%(H�E�1�H�H�8�� �	H�����f��I�H�E�H��8���H�E�H�E�H��� ��H����H9E��	H��H�E�I� H��H�E�I�GH9��
L�u�I�^H�s@H��x�������H�sHI� H��p������H�sPI� H��h������L��H��`���I�F�XH�E��]��Y\��I� H�E��L����E����aH�E�L� H��XF�,`H�WI�I�����A��L��L��D���B���A�E���A�A)�D�u��H�M�HcӃ�AL�4�<w6H�
@��Hc�H�>��f.�L��I�wL������Lc�fDL��L���ͷ���E����Hc�A�D��u���H��YB� 9���9]��wH�E�D�sHc�L�$�H��WF�,`H�VI�I�������H���LH�5�\H�81��u��DIcvL���<���I�~��O��L��H��H�E��$���H�E�I�vL��H���Ѷ���?���@L��L��轟��I������DI� L������I������@I�vL��茟��I�����@H�M������trH���I9�tf�p��H����H��H�PI9�t�H��H9�u��y���fDA�FHI� �����E�����I�G H�u��H�8�%^���s���1��<���f���r���fDI� �״��+E��E�H�E�H�@�X�����L����H�E�I� H�@L�`0蜴���S��L���I�G Hc�L��H��H�8�]��L�u�L��I�v���I� �E��a���I�~��T������H�_x��t9E1�fDD��L��A��L�,�Icu�i���A�uL���]���I�~D;��r��+�I� I��H��x����������X�����t+�C�M��I�\�1�A�uL��I��)�����A�E�L9�u�L����y��H�E�L��H�p����E�H��x���H���H�����H��@���L�u�L��I�_I�v����H��L���E�I�FH���赝��H��L���E�I�FH���蜝��I� ��\���I�FD������L���D��U�L�4�����I����P���E��tRA�D$�I�]@H��H��M���H�3L��H��P�ќ��L��H�������s�L�����Hcs�L�����I9�uʋU�����L��O�t5@I����E���H�4�H�pL�$�DI�6L��M�n1��g���L��H��蜳��A�vL��萳��IcvL��脳��IcuL���x���I�F���~-fDHc�I� ��I�t�脗��L��H���I���I�F;|�I��XM9�u�I� ���L��x���L��A��A�F�ɉ��������@����ۃ�	Ӊ����	Ӊ������	Ӊ������	Ӊ������������	�	�	�A�F�ƃ���	���ƃ���		�A�6蝲��A�vL��葲��L��D��+u�胲���u�L���x���Hc�L���m���A�vL���a���IcvL���U���IcvL���I���Icv L���=���Icv$L���1���Icv(L���%���Icv,L������L��D��+�L��������u�L�����H��p���L�����H��h���L���߱��H��`���L���б��I�vXL���ı��Icv`L��踱��IcvdL��謱��IcvhL��蠱��IcvlL��蔱��IcvpL��舱��L��D��+�T����w���L��D��+�X����f���A���L���W���L��D��+u��I���H��@���L���:���L��D��+u��,���Hcu�L��� ���Hc�\���L������L��D��+�P�������I���L����A���L�����A���L���Ӱ��A���L���İ��A���L��走��A���L��覰��I���L��薰��D��H��8���H�t6��}��I�H�E�H��� �F���H�BH9E�}dH�R �H���I� ������L������@H�x����H���LH�5�UH�81��xn���HDž@����>���I��H��H��H�E�H��H��H%�H)�H���H��H9�tH��H��$������H��8���H��E1�L�`M��~8L�}�L��8���L��I� uI�G J�<��7N��B��I��M9�u�L�}��L���Y���I� ����H�U�H��A��I�G H�8�W��H��(���D� H��0���D�0H�E�dH3%(u[H�e�[A\A]A^A_]�H)�H�L��F���H�
�>��&H�5+RH�=fT�4��H�
�>�x(H�5RH�=q[�4���d�����SH�� dH�%(H�D$1�H�H������=��"��H��6Hc�H�>��H�L$dH3%(H����H�� [�fD1���@H�_�؃����.����H�����t���������t������t�H�X�LH��H�0��`��H���4HD��q���@H�D$dH3%(�H�H�� [�v,��fD��;���fD�4�+���fD��u������CH�|$�r��f.o,{-����������\���H������E����J���f�u��D$�
`,f/�v
f/J,s`H�D$dH3%(u_H�� [��S��fDH��H9�t-H�ڸH��?H)�H��H��H	�H��H�D$�~D$�C���f��H,�H�\�F����b��ff.��AWAVAUATUSH��(D�D$L�L$H����I��H��I��I����fDH�|$H���KZ��H���aH�u�$1�L��1�H���8���H�SH�PH�BH�CH�EH������>��1�H��H��L�������,I�4$A�L��1���,H���ڟ��H�SH�uM��L��H�PH��H�B�>H�C1�諟��H�SM�d$H�PH�BH�CA�F(M����I�l$H������I��H��4�����D$�����H�}�*��H�u�L��I��H�D$�1�H���3���H�SL�L$H�PH�BH�CA������I����������L��L���|N������L��H�|$L��H���,7�������D$�����D$H��([]A\A]A^A_�DAWM��AVI��AUI��ATUH��SH��H��H�I��H����I����J�)~_��K����Luy1ɺ$D��1��X���I�U1�L��H��H�PH�BI�VI�E�����1�H��[]A\A]A^A_�fD��,u#M��E1��h���H����[]��A\A]A^A_�@1ɺ$D��H��1��ܝ��I�U1�L��H��H�PH�BL��I�E�l���t��H�R������p���1ɺ$D��H��1�苝��I�U1�L��H��H�PH�BI�VI�E��A���ux1��,���f�H�R���������I�VM��H��L��H���z�����������DE1�� �D��H��1����I�UA�
H�PH�BI�ED��H�߹�,1��ќ��I�UI��D��H�߹H�PH�B�>I�E1�觜��I�UH�PH�BI�E��E(H��[]A\A]A^A_�ff.�@AWf�AVAUI��ATUSH��H���H�t$ H�l$`�L$(dH�%(H��$�1�)D$`)D$p)�$�)�$�)�$�)�$��UA��H��$�H�l$xH�L$H��H��$�H��$�H�L$H��$�H�D$�%��I�U1�H��H�5�pLH�pH���]�����H�CH���H����H�E ��H�m H�mH����E�M E����H�E ��H�m L�e��T��H��L��H���t��H�=��MH�����Bi��H��H���t��Icu H��H�t6�vt��Icu$H��H�t6�et��Icu(H��H�t6�Tt��Icu,H��H�t6�Ct��M�uI�H��H�������H��H��A��A�F �D$4A�F$�D$8A�F(�D$0A�F,�D$<觉��H��H�D$@蚉��H�D$HH�D$hH��tH�t$ H�VH�BH�PH�D$xH�F�D$,L�l$PL�l$@H���W����#1�D��I��H��$�H��I�D$L�`1�L��$�����H��$�H�PH�BH��$�H�CH���H����H� �H��H�@I�VH����H���D�B E�������rH� �!H��H�xH��� ��H����H�D$X���r��H�=ЍMH����rg��H��H���r��I�FH���:Hcp H�t6H���r��I�FH���<Hcp$H�t6H���{r��I�FH���Hcp(H�t6H���]r��I�FH����Hcp,H�t6H���?r��H�D$XH��H�t�-r��1�H�tH�{�(H��@�Pz��H��$�H�t$X�H�@�@H�PH�p H�BH��$�I�FH��t�@(�D$0�t$01�1�H��1��H���H��$�H�PH�BH��$�I�V�L$(H�t$H���˻����=M��D��H��1����H��$�H�PH�BI�VH��$�A�E(H����H�:H������,���f�G����ZL�D$H�t$L��H����������D$,M�vM����I�A�V A�N$H�ƉT$4H��A�V(�L$8A�N,H����A���T$0�L$<�������H�T$H1�H��L�l$PH��$�H�BH�P1�H��$��#����H��$�H�PH�BH��$�H�CH���H���LH� �H��H�@H���.A�v ���"H� ��H��H�xH��� ��H����I�ľ��o��H�=ފMH�����d��H��H����o��Icv H��H�t6�o��Icv$H��H�t6�o��Icv(H��H�t6�o��Icv,H��H�t6�o��K�t$H���|o��1�H�tH�CH�x@�(�w��A�v(1�H��H��$��H�@H�P�@L�` H�B1�H��$�1�謕��H��$�H�PH�BH��$�@�L$(H�t$L��H���,����tL�t$@�=D��H�߹1�M���U���H��$�H�PH�BA�F(H��$��D$,��tH���u��H�CH�@p��QH�D$ H�@H��$�H��tH�PH�\$ H�BH��$�H�CH��$�H��tH�PH�BH��$�H�\$@H�CH�XH�D$ H�X��+f��kc��I�6H�qMH��H��1�H�����1�H��$�dH3%(��H���[]A\A]A^A_�DI���c��I�7H��EH��H��1�H���m���1��f�I�6H�&MH��1�H���H����1��{���f�L�L$D�D$,L��H��H�t$�6�D$,���E���1��E���H�@ ����H���(�����|$4�������f�1����f�H�GH�D$X����f�H�@ �����H�������H�=1b���B��H��H���M����H�=�����B��H��H���M���Hct$<H�t6�*����Hct$4H�t6����Hct$0H�t6����Hct$8H�t6����H�t$HL�l$P1�H��H��$��#H�FH�p1�H��$�I�uH��蕒��H��$�H�PH�BH��$�H�CH���H���KH� �YH��H�@H���-A�M ���!H� �jH��H�xH��� �_H����I�ľ�zk��H�=b�M�aH�=U�M�`��H��H���Uk��Icu H��H�t6�Dk��Icu$H��H�t6�3k��Icu(H��H�t6�"k��Icu,H��H�t6�k��K�t$H���k��H�tL�sI�~@�(�)s��A�u(1�H��H��$��H�@H�P�@L�` H�B1�H��$�1��6���H��$�H�PH�BH��$�I�E�T$(H���ƅ���L�|$@�=H��1��M�����H��$�H�PH�BH��$�A�G(���H�@ ���I�u1ɺ$H��1�H��訐��L�|$ I�u�L�t$L�L$HH��I�WH��M��H�PH�B�DI�G1��j���I�WH�PH�BI�GA��u
I�������H�\$H�C(�0����1�H��1��(���H��$�I�uH�PH��H�BH��$����H�@ ���H�@ �P���L�g�a���H�=���?��H��H�5�M�[���H�@ ���L�g���H�t$H���)?��H�D$ H�@�T����H�=���:?��H��M����YQ��f�AWAVAUATUSH��8�$dH�%(H��$(1�H�I��I��A��H��Hq��I��H��H�WI��H��I��L�G��9Z\t��u#A��e��^H�
�#D��Hc�H�>��DI����Z\�H��tH� tkH��H�8��D�H�z@�(�L$L�D$�Op���L$L�D$H�@I�T$��HH�@ H�PH�BI�D$�[���fDH�@ �f.��$DI�I�VH�������srH��I�VL��L��D��̱���DUM�vM��u��fDL���w��H�����I�vA��L��A�H��L����x��A���L��H�Ź�1�趍��I�T$H���޹A�	I��L��H�PH�B��I�D$j豌��I�T$H�PH�BI�D$Y^@��u
H������>��$���&t�A�H��$(dH34%(D����H��8[]A\A]A^A_�fDM�~f�DŽ$�)�$�I�V)�$�)�$)�$HDŽ$�I���u/I�NH�H������\��H��tH�H������,�ٖH��$H��$�E1�L��H��$�H��$�H��$�BH�D$H����nI�VH�H������\�Ӑ1�H��L���߯����n�D$1�L��	�$��NQ��H�D$������$����H��$�H��tI�T$H�BH�PH��$�I�D$H��$H��tI�T$H�BH�PH��$I�D$D��$�E1�L����H��L��jH�L$O�L	謊��I�T$H�PH�BI�D$_AXH�D$H��tA��M��H��L��H��$�L���a����#1ɉ�L��1��.���I�T$A�H�PH�BI�D$�����L��L��L���2��4$1Ʌ��j���L��1����I�T$A�H�PH�BI�D$����D�$E���k����A���L��1�藊��I�T$A�H�PH�BI�D$�8���f.�A���I�V�4H�5�����EA���E1��r��L��I����s��H������L��A��L��A�H��L���t��LcͺC��I��I��O�L	�L��1���I�T$H�PH�BI�D$A��u
I������S��<$���y����#1ɉ�L��1�讉��I�T$A�H�PH�BI�D$�O����D�$E���;���I�I�NA�L��L���[�E1҅�A������DD�$E������A�8L��$��H�@�8�.xH�����H��u�1ɉ�L��1��	���I�T$A�H�PH�BI�D$���@D�$E��������E1����L��1��ˆ��I�T$A�H�PH�BI�D$�c���DM�FA��YM�v@��M��tI�H������=�fD�<$L��L��L��D�������CYD��L��L��L������*YE����D�ź"���M�L��1�I������I�T$A�H�PH�BI�D$���L��L�D$�w��L�D$I��A����EA���I�E��k��I�EH�@p�tXLc�M����AO�L	��L��1�薇��I�T$1ɉ�L��H�PH�B�#I�D$1��q���I�T$H�PH�BI�D$����L��H���LL�1��?���I�T$��L��A��H�PH�B�I�D$1�����I�T$I�~H�PH�BI�D$�U�����L��I���1��݆��I�T$H�PH�BI�D$I�E�ui��I�EH�@p�t8LcźB���O�DL��1�蒆��I�T$H�PH�BI�GL�xM�|$D�<$E���#����#1ɉ�L��1��X���I�T$A�H�PH�BI�D$���D�4$E������1ɉ�L��1�����I�T$A�H�PH�BI�D$���L���u��L��H���u��L��H�$�t��1�A��ZL�<$��I��L��L��M��L��H�D$�����VI�D$A���L���I�GL�x1�M�|$�}���I�T$I��޹L��H�PH�B�=I�D$1��R���I�T$E1���L�T$�L��H�PH�B��E(I�BL�P1�M�T$����I�T$A�H�PH�BH�EH�hI�l$�����,$��������1ɉ�L��1��҄��I�T$A�H�PH�BI�D$�s���DI�~L�D$�'������bL���s��L�D$L��L��I��f�H��$�Ic��H��$�EA���)�$�HDŽ$�)�$HDŽ$H��$�H��$�A�…�����H��$�H��t1�������{H�����0�V�����{H�@H��u�I�E�q�I�EH�@p���LcͺAM���Mɉ�L��1�I��藃��I�T$H�PH�BI�D$H��$H��tI�T$H�BH�PH��$I�D$I�E�Le��I�EH�@p�t:H�B���I��L��1�I���#���I�T$H�PH�BI�GL�xM�|$�$��������#1ɉ�L��1����I�T$A�H�PH�BI�D$���fD�H�=���H���o
��I�v1�L��H��A��A��m��I�V1�L��L��H���1����aS�L��1ɉ�1��f���I�T$H�=�vMH�PH�BI�D$H������_P��H���/��jI��L��I��1�����I�T$H�PH�BI�D$^_@��u
H������)��$�����#1ɉ�L��1��؁��I�T$A�H�PH�BI�D$�y�I�FH�x���H�=4H��1��P��H���R��I�vA��L��A�H��L���wl��L��L��I��I�FH�H�H��1ɉ޺��L��1��I���I�T$��H�PH�BI�D$I�FH�x�GO��Hc�H��M��H�TI�����RL��/1����I�T$H�PH�BI�D$AYAZA��u
I������,�D�$E�����#1ɉ�L��1�赀��I�T$A�H�PH�BI�D$�V��I�FE1�H�x�p��H�=�2H��1��O��H���'��I�vA��L��A�H��L���Lk��I�~L��L��H��I�FA��A��H�H�H���I�V1�L��L��D$�����PI�FH�x�N��H��I���I���D$�L��D	�Hc�1�H�TR�/����I�T$H�PH�BI�D$A^A_@��u
H�������D�$E���N�#1ɉ�L��1����I�T$A�H�PH�BI�D$�$�fDA����L��1��D��I�T$��L��A�H�PH�B�I�D$1����I�T$1�L��L��H�PH�BI�VI�D$裢����OH�������jA�E1�L���}��I�T$H�PH�BI�D$XZ�$���a�#1ɉ�L��1��~��I�T$A�H�PH�BI�D$�7�f�A����L��1��T~��I�T$I�~H�PH�BI�D$�YL�����L��I���1�� ~��I�T$I�~H�PH�BI�D$�%L�����L��I���1���}��I�T$H����E1�L��A��H�PH�B��I�D$j��|��I�T$H�PH�BI�D$^_D�$E���N�#1ɉ�L��1��}��I�T$A�H�PH�BI�D$�$�fDA����L��1��D}��I�T$��L��A�H�PH�B�I�D$1��}��I�T$1�L��L��H�PH�BI�VI�D$裠����MI�V1�L��L��芠����MH��A�E1���j���L����{��I�T$H�PH�BI�D$AYAZD�$E���D��#1ɉ�L��1��y|��I�T$A�H�PH�BI�D$��@I�nH���<��H�����I�v1�L��H��A��A��*g��I�V1�L��L��I���Ɵ����LH���&J���1M����I���L��1���{��I�T$H�PH�BI�D$A��u
I�������D�4$E���p�H����I�����L��I���1��{��I�T$A�H�PH�BI�D$�8�f.�I�nH���T��H�����I�vA��1�A�H��L���Bf��H��I���WI���0M���I���L��1��{��I�T$H�PH�BI�D$A��u
I������J}D�<$E�����H���I�����L��I���1���z��I�T$A�H�PH�BI�D$�i�I�V1�L��L���G����wK� A���L��1��sz��I�T$H�PH�BI�D$�$�����#1ɉ�L��1��Cz��I�T$A�H�PH�BI�D$���fDD�<$I�V1�L��L��E����X貝����JE1��� ��L��1���y��I�T$1ɉ�L��H�PH�B�#I�D$1��y��I�T$D��L��L��H�PH�BI�VI�D$�H�E1҅�A���H�f.��$I�V1�L��L����Y�����DJE1��� ��L��1��Cy��I�T$1ɉ�L��H�PH�B�#I�D$1��y��I�T$1�L��L��H�PH�BI�VI�D$諜����IE1��� ��L��1���x��I�T$1ɉ�L��H�PH�B�#I�D$1��x��I�T$A�H�PH�BI�D$�V���,$���=��A���L��1��ix��I�T$A�H�PH�BI�D$�
�@L��L��L���j��,$����_I�E�T[��I�EH�@p�8����@��u�q"��H�������u�A���L��1���w��I�T$A�H�PH�BI�D$�y�D�<$E���c�I�E��Y��I�EI�nH�@p�8�t�@u��!��H������w�L���(9��H��$�H��$Hc�H�DH��$�;��H��I���S
��L��H���H��H�ᄄH���X���H����0��H�źI����L��1���v��I�T$H�PH�BI�D$@�����H��������H��L���@&��A��s�D�$���]�M�F����L��1��v��I�T$A�H�PH�BI�D$�,�fDI�f�H��$�H��$�)�$�H��HDŽ$���)�$�HDŽ$�H��$�H��$���;��i��<�ci��:��iH��$�H��tI�T$H�BH�PH��$�I�D$H��E1���L��jA������t��I�T$I�nH�PH�BI�D$_AXH����OL�}L��I��L�|$D�|$ �d��L��I��H�D$�d����H�D$�2N��D���L��H���I��1��4u��I�T$1�D��L��H�PH�B�$I�D$1��u��I�T$M��D���L��I��H�PH�B�?I�D$1���t��I�T$H�PH�BI�D$A�F(I�D�t$ H�\$ ��1ɺ$D��L��1��t��H��I�D$H�CH�XI�\$I�W�L��L���#�H��H�[D��j���E1�A�L���{s��H�SH�JH�PH�HH�BH�PY^H��tH�BI�WH���CMI��I��]���I�\$�|���D�$E�����M�N����A�L��1�N����s��I�T$A�H�PH�BI�D$�l�fDD�$E���S�M�NM����g�1ɉ�L��1��{s��I�T$A�H�PH�BI�D$��fDD�$E����I�~�bA���
��L��I���1��)s��I�T$A�H�PH�BI�D$���@L�D$I�E�]T��I�EH�@p��cRL���a��L�D$��L��I�ǹIc���PH�l1�A���I��M���A�r��I�T$��L��A��H�PH�B�I�D$1��tr��I�T$I�~H�PH�BI�D$�y@�����L��I���1��@r��I�T$I��޹L��H�PH�B�BI�D$1��r��I�T$H�PH�BI�GL�xM�|$�,$������#1ɉ�L��1���q��I�T$A�H�PH�BI�D$�~�D�<$E���k�I�E�?T��I�EM�~H�hxH����}H��$�L��H���mA��u+I�UL��H���H���H�TH��$��AI�~H��$��]?���I���I���L��1��!q��I�T$A�H�PH�BI�D$���@M�F����L��1�I����p��I�T$H�PH�BI�D$�$���}��#1ɉ�L��1��p��I�T$A�H�PH�BI�D$�S�DL���_��I�V1�L��L��H���$�����7�4$���gjI���?A��t�>��L��1��=p��I�T$�$H�PH�BI�D$�E(���vjI�V�$L��L��躓���27I�D$A�H�EH�hI�l$��D�$E��L��L��L�����E1҅�A���|�fDI�Ef�M�~)�$H���)�$H�D$H����H�8H��H�|$�� u	H�D$H�@ H�@H�D$H����E�V E���=yH�8H��H�|$�� u	H�D$H�@ H���a(��H��H��H�D$�H��H�bcMH����H���=��H�\$H��H���YH��Icv H��H�t6�HH��Icv$H��H�t6�7H��Icv(H��H�t6�&H��Icv,H��H�t6�H��DH��$L��H�D$H��$�]��H�D$M����I�/H��H�������uL�t$8A�G L��H��A��A�G$�D$(A�G(�D$ A�G,�D$0�O]��H��H��$H�CH�XI�EH��$H���H����H� ��QH��H�@I�WH����H��� uD�J E��������H� ��vH��H�xH��� �cvH����H�D$@��F��H�=�aMH����|�;��H�|$H����F��I�GH���N}Hcp H�t6H�|$�F��I�GH���N}Hcp$H�t6H�|$�F��I�GH���}Hcp(H�t6H�|$�zF��I�GH����|Hcp,H�t6L�t$L���WF��H�D$@L��H�t�EF��1�I�EtI�E�(H�x@�gN��H�t$@H�@H��$��@H�p H�PH�BH��$I�GH��t�@(�D$ �t$ 1�1�L��1��_l��H��$H�PH�BH��$I�W�$H�t$L�������M|L�t$�=��L��1�M���
l��H��$I�oH�PH�BH��$A�F(H����H�uH��H������,�I��H�G�����HH��1ɺL��1��k��I�T$1�L��L��H�PH�BH��I�D$�3�����{H�uA�L��1���,H���Yk��I�T$I��L��H�u�H�PH�BH���>I�D$1��(k��I�T$H�PH�BI�D$�C(M�M���n�I�/H��H�����������L�t$8I�EH���H����H� �وH��H�@H���cM����A� �„��JH� ��H��H�xH��� ���H����H�þ��C��H�=�^M�=�H�=�^M�p8��H�l$H��H���C��M�����IcG H��H�H��H���C��IcG$H��H�H��H���{C��IcG(H��H�H��H���eC��Icw,H�H��H�l$H���MC��H�4H��H���=C��I�E�B�I�EH�x@�(�]K��H�@I�T$��@H�X H�PH�BI�D$M����A�w(1�1�L��1��gi��I�T$H�PH�BI�D$�$L��L��L�������^yH�\$I�6�=L��1�H��I���i��I�T$H�PH�BH��$I�D$�C(H��tH�PH��$H�BH��$I�D$I�D$H�t$A�H�FH�pI�t$�u����$L��L��L���/��E1҅�A���O���M�~L��I��W��L��I���W��1�L��L��L��H��������/H��1ɺ$L���1��Dh��I�T$H����A�	E1��L��H�PH�B�qI�D$j�?g��I�T$A�L��H�PH�B�I�D$1�Y�^����g��I�T$H����A�	E1��L��H�PH�B��I�D$j��f��I�T$���H�PH�B�?I�D$1�_L��AXM���|g��I�T$1ɉ�L��H�PH�B�$I�D$1�A�F(�Rg��I�T$��L��A��H�PH�B�I�D$1��$g��I�T$H����A�	E1��L��H�PH�B��I�D$j�f��I�T$��L��H�PH�B�I�D$H��LAYAZL�1��f��I�T$1ɉ�L��H�PH�B�&I�D$1��f��I�T$H�PH�BH�`ZMI�D$H����hH��A�	E1���j�L���e��I�T$1ɉ�L��H�PH�BI�D$X1�Z�$�-f��I�T$I��޹L��H�PH�B�?I�D$1��f��I�T$1ɉ�L��H�PH�B�&I�D$1��E(��e��I�T$1ɉ�L��H�PH�B�#H�EH�h1�I�l$�e��I�T$A�H�PH�BI�FL�pM�t$�E���I�E�G��I�L��H��H�D$I�EH�@(H�D$�qT��L��H���fT��H��I�D$H�CH�XI�I�\$H��������IL���N��H�����I�vL��L��D�L$A�H����O��I��I�E��E��I�EI�V1�L��L��L�x(�w�����+I�D$D�$H�EH�hI�l$E����cI�E��F��I�EH�t$�H�p(H��H��$H��L��$H��$H��HDŽ$	H��H��$H��$ �(���C(�K,I�ăE(I�E��G��I�EH�x��kA��u2I�����t)I�$�ƒ���tH�€�I�|$I�$t	����I�D$I�E�@F��I�EL��H�x�=��A��a��H��$�L��L��L�������tCLc�$�I�6L��1�M�F��H��O�L	O�D�Uc��I�T$H�PH�BI�D$�$�������#1ɉ�L��1��%c��I�T$A�H�PH�BI�D$������4$M�~DŽ$�����HI�VH�H������\��^1�L��L���r�����=�D$I�FH�PH�H������-�/Z��MH��$�L��L����E1����D$�T�H��H���c=�D$��H�L�DE��%��L��1��Cb��I�T$H����H��E1�L��H�PH�B��I�D$�D$�$���$�A��jO�L	�,a��I�T$H�PH�BI�D$I��l���ZYH���kVI�F1�L��L��H�P�r�����<H��A�L��E1�j���L����`��I�T$H�PH�BI�D$AYAZD�$E���dr��$���q�|$u%�&1ɉ�L��1��Na��I�T$H�PH�BI�D$D��$�H��H�ME1�jO�L	����L���C`��I�T$1�H�PH�B�#I�D$1�^��_L����`��I�T$H�PH�BI�D$A�����I�V1�L��L���g�����'�<$���WZI�~�.�����L��I���1��`��I�T$A�H�PH�BI�D$�#��DI�V1�L��L������w'D�$E���f[I�~�SGA����L��1��`��I�T$I�~H�PH�BI�D$�.���
��L��I���1���_��I�T$A�H�PH�BI�D$���f�I�V1�L��L���_�����&D�$E����YI�E��@��I�EM�~H�hxH����^H��$�L��H���T/��u+I�UL��H���H���H�TH��$��/I�~H��$��D-���	I���I���L��1��_��I�T$A�H�PH�BI�D$���I�V1�L��L��臂����%D�$E����YM�F����L��1�I���^��I�T$A�H�PH�BI�D$�E���I�V1�L��L��I�n��A�…����D�$E����XH��$�H��$�H��L���}�����`��$���L��L��D��$�)���_��A������H��$f�HDŽ$H�D$H��$I�E)�$H���DŽ$�HDŽ$�H�@�����C���UC���MCI�VH����AH�t$L��H��$�L��$��G�E1�H��H�����H��$H��tI�D$H�PH�BH��$I�D$L��$���$�����E1�1�L��M�����h?���:��L��I���1���\��I�T$H�PH�BI�D$�$���jSA�����I�EI�.M�vD�8H��A�W���v��rH�C��Q����;DH���H��u�1�L��L��L���"����R-�<A���L��1��N\��I�T$H�PH�BI�D$�$�������#1ɉ�L��1��\��I�T$A�H�PH�BI�D$����I�Ef�
M�>H�=)�$�H�XP)�$�I����H��H���!+��H���y�I�vL��E��H��A�L���F��L��H���J��L��H�D$�J��L��H�D$�J��I�V�L��H��$�H��H��$������8H��$�E1�L�D$L�T$H��t�8uE1Ƀx;A��I�FL��$�L��$�L�D$HDŽ$�H��$�I�E��>��I�E�$L��L��L�T$H�P0D	�D�L$H��$�H��$�H��$�H��$�H�P0I�D$I�VI�BL�PM�T$�;~���#8I�D$L�D$D�L$L�T$I�@L�@H��$�M�D$H��tI�@H��$�L�@H��$�I�D$�<$����CE����C�1�D��L��1�L�D$L�$�Z��I�T$L�$L�D$H�PH�BH�CH�XI�\$�#1�D��L��1�L�D$L�$��Y��I�T$L�D$L�$H�PH�BI�D$I�E�<;��I�UH�B0L�xM;B��`I��H��$I��H�D$M����`I�H�t$�HDŽ$H��H��$I�GH��$H��L��$ H��$����I��I�H��t�@(�H,I�G�@(�C(I�E��;��I�EH�x�8A��u4I�����t+I�������tH����I�~I�t����hDI�FI�E��:��I�EL��H�x��1��M�M���
���H��$�I�E��:��I�UH�B0A��
��@L��I�.�]G��L��H��H���NG��L��I���CG���
H�=&
H�D$I�EH�@PH�D$�@�H�t$H���S'��H����I�vL��L��H��A��A���B��I�V1�L��H�D$�C,L�����C,A�G,���A�G,I�D$H�CH�XI�\$�<{����I�D$I�~I�GL�xM�|$t>1ɺ#��L��1��XW��I�T$1�L��L��H�PH�BI�VI�D$��z���]1҉�1�L��1��W��I�T$H�t$D�$H�PH�BH�FH�pI�t$E����XL�d$H�D$H��M��H��$H��I��HDŽ$H�|$H��I���H��$L��$H��$L��$ �O���C(H��H�D$�K,A�G(�@(I�E��8��I�EH�x��a��u/H�����t&H�������tH����H�zH�
t	���sH�BI�E��9��I�EH��H�x�o/��H�t$�H��$ HDŽ$L��$L��$HDŽ$���A�G(H��H�D$A�O,�@(�C(I�E�79��I�EH�x��_@��u1H�����t(H�E�ƒ���tH�€�H�}H�Ut	���!rH�EI�E��8��I�EH��H�x�.��A������I�V�$L��L���xE1҅�A�����L��L�$�D��L�$H��I�FH�@H����{1H�H�����P����e1��=�\1I�@8E�����L���-D+@Lc1�A��Mc�O�L	O�D�T��I�T$I��޹L��H�PH�B�>I�D$1��XT��I�T$H�PH�BI�VI�D$�E(H��t�L��L��������	%I�D$H�EA�H�hI�l$����@A���L��EA����w=��H�����I�vA��L��A�H��L����>��LcͺC��I��I��O�L	�L��1��S��I�T$H�PH�BI�D$A��u
I�������U�$���(���#1ɉ�L��1��]S��I�T$A�H�PH�BI�D$���1ɺ��L��1��-S��I�T$L��L��H�PH�BL��I�D$�=�H��E1���j�`L��A�	��R��I�T$H�PH�BI�D$^_D�$E�������#1ɉ�L��1��R��I�T$A�H�PH�BI�D$�W��f�1ɉ޺L��1��}R��I�T$I�~H�PH�BI�D$�"�����L��I��H�Ź1��FR��I�T$H�PH�BI�D$@��u
H�������TH��A�	E1���j�`�L���.Q��I�T$H�PH�BI�D$AYAZD�$E�������#1ɉ�L��1���Q��I�T$A�H�PH�BI�D$�i��I�^�$L��L��H���Cu���s"�$���8��H���2�����(��H�L���@��1ɺ$L��H��H��1����KQ��I�T$��L��A��H�PH�B�.I�D$1��Q��I�T$I��޹L��H�PH�B�>I�D$1���P��I�T$1ɉ�L��H�PH�B�$I�D$1��E(��P��I�T$E1���A�	�L��H�PH�B��I�D$Pj��O��I�T$1ɉ�L��H�PH�BI�D$X1�Z��pP��I�T$A�H�PH�BH�EH�hI�l$�	���$����6A�����f��$������I���I�vL��H�@�����n����)�I�EL;��t!�4$@H�����H�BH;��u�4$D�$��L��L���uR��A��x��f.�I�EI�NM�V%H��tH�H������>�IFI����Bf��D$t)�$�HDŽ$�)�$HDŽ$HDŽ$�H����1��H��$I�UH��$�H�D$H�B(H���HDŽ$�H�B(H�D$H�D$H��$�H��$�\QA�Gۃ��)A��)�)A�Gك���T1�A��(�b)H��$�H��tI�D$H�PH�BH��$�I�D$H��$H��tI�D$H�PH�BH��$I�D$�T$tA��'t	A��(u
�����T$tH��L�L��L���$�L�D$ L���IM��I�T$H�PH�BI�D$AZA[H��tA��M��H��L��H��$�L���V��D�$A�E��������#1ɉ�L��1�D�$�M��I�T$D�$H�PH�BI�D$�[���DI�FH�8H������V��3��W��3����L��H��xLL�1��XM��I�T$H�PH�BI�D$I�F1�I�~�L�x�JU1ɺ$��L��1��M��I�T$��L��A��H�PH�B�I�D$1���L��I�T$L��H�PH�BI�D$�������L��I���1��L��I�T$H�PH�BI�D$I�FH-�H���EI�V1�L��L���3p����H��I�VA�	��jE1��L���K��I�T$1ɉ�L��H�PH�B�&I�D$A^X1��1L��I�T$H�PH�BI�D$�$����aL���,���
��L��I���1���K��I�T$A�H�PH�BI�D$锾��fDI�I�^H��H�D$A��H���0H�;H������-��/��,��=D�$E����QH��$f�H�sE1�H�D$A�H��$H��$�H�D$H��$�HDŽ$H�D$()�$�H��H����H�H������>��(�"��=�zH�KH�AH�H������>���F��=�PH�IH����cH�A�H����f�H�H������>��$����=�������U���J����_�H�t$1�L��D�$�
nH�CH�t$1�L��H�P�mE�FD�$A����!H�CE��H�X���=H�SH��u�E����A��H�SL�rI�H������=�t�A�D��1��L��D�$��I��I�T$D�$H�PH�BI�D$E����!�!A�D��1��L���I��I�T$H�PH�BI�D$L��1�L��L���mH��E1�L��j��A�D���E1��uH��I�T$E1�H�PH�BI�D$H�C_AXH�X���I�H��H�D$I�E�,��A�F I�]L��D$8A�F$�D$`A�F(�D$\A�F,�D$dH�CH�D$@H�CH�D$HH�C H�D$P�CX�D$X��7��H�D$H�CI�E�5lI�]L���7��H��H�C I�E�lI�]L���7��L��H�CH�D$�7��L��H�D$0�v7��L��H�D$ �i7��H�D$(I�E�*+��I�EI�~H�P0�@XHDŽ$�H��$�H��$�HDŽ$�H�P0�-L���7���t$�=L��H��I���1���G��I�T$H�PH�B�C(H�t$ 1ɺL��H�FH�p1�I�t$�t$�G��I�T$1�L��H�t$(H�PH�B�#H�FH�p1�I�t$�t$�^G��I�T$�t$L��L�D$�H�PH�B�=I�D$1��/G��I�T$H�t$H�PH�BI�D$�F(H����0H�CH�XI�EH�]H�kH���I�l$H����H��� ��D�D$8H�PE����H��t����1�H��H�@I�VH���H��t�r �������jH� �GVH��H�xH��� �<VH����H�D$h�����H�5:MH����\H���\��H��H�����I�FH����\Hcp H�t6H�����I�FH����\Hcp$H�t6H���e��I�FH���/]Hcp(H�t6H���G��I�FH���]Hcp,H�t6H���)��H�D$hH��H�t���1�I�EtI�EH�x@�(�9'��H�|$hH�@I�T$��@H�x H�PH�BI�D$I�FH��t�@(�D$\�t$\1�1�L��1��7E��I�T$H�PH�BI�D$I�V�L��L���hA�…��ķ��I�D$H�t$I�VH�FH�pI�t$A��	��<H�L$0I��L��L���n�H�t$0I�D$�����L��H�FH�pI�t$H�t$ �(��I�T$I�~4H�PH�BI�D$�zK�t$1ɺL��1��sD��I�T$H�t$�$H�PH�BH�FH�pI�t$����EL�|$H��$I��I��H��HDŽ$	L��L��$H��H�D$H��$HDŽ$H��$ ����E(�M,I��A�G(I�E�|$��I�EH�x�mMA��u/I�����t&I��ƒ���tH�€�I�~I�t	���B`I�FI�E��$��I�EL��H�x����L�|$(H�t$�HDŽ$
L��L��$H��H��$HDŽ$H��$ �����E(I��H�D$�M,�@(A�G(I�E��$��I�EH�x�MLA��u/I�����t&I��ƒ���tH�€�I�~I�t	����`I�FI�E�J$��I�EL��H�x���L��$HDŽ$H��$HDŽ$I�E�D$��I�EH�t$�H�@ H��H��$ �����E(H��H�D$�M,�@(I�E��#��I�EH�P �B(H�x�K��u/H�����t&H��ƒ���tH�€�H�{H�t	����_H�CI�E�A%��I�EH��H�x���I�E�%��I�E�|$XA�H�t$@H�P0�xXH�pH�t$HH�RH�pH�t$PH�P0H�p ������$L��L��L���?�E1҅�A������D�$E���*(L��H�U1�L��L���d���7H�mH��u�M�F����L��1�O�D��@��I�T$A�H�PH�BI�D$逳��f�I���I�vL��H�@����_��I�V1�L��L��A���?d����D�4$E���R;I�EE1�L;��t"f.�H���A��H�BH;��u���L��L��D)���A��A����I�nI�F�$M�~H�u�H�D$H�t$���H���H���A?H�H�D$H������,�)?M���p_I�WH�H�������`��L��1�A�H��$L��H�����G��tx��@tsH�J��t1H9�$taH�VD�@�I��N���H��H9J���JL9�u�H���H�D�@D��H����^H�WIc�L�
I��D�Ƀ�A��`�n���H��$H�D$H�D$f�HDŽ$)�$H��$�H�l$ 1�L��L�|$��H�m��H����"H�UL��L���	���u�A��X���f.�I�I�EH���8��1ɺ��L��1��i>��I�T$��L��A�	�H�PH�B�<I�D$1��;>��I�T$D�$H�PH�BI�D$E���԰���#1ɉ�L��1��	>��I�T$A�H�PH�BI�D$骰��@I�E�����I�I�UH��H�z �#L����,��I�V1�L��H��I�D$L��H�EH�hI�l$�Ea����1�L��L����I�E�[!��I�E��L��H�p �� ��I�T$H�PH�BI�D$I�E�!��I�E�=���L��L�@1��"=��I�T$H�PH�BI�D$I�E����I�E�����H��L��H�@�@(�V ��I�T$D�4$H�PH�BI�D$E�������1ɉ�L��1��<��I�T$A�H�PH�BI�D$�U����I�E����I�I�EH��H�x ��L���+��H��I�D$H�EH�hI�l$I�E����I�E��L��H�p ���I�T$H�PH�BI�D$I�E�V��I�EI�VL��L��HX�_���!1�L��L���D�I�E����I�E�=���L��L�@1��;��I�T$H�PH�BI�D$I�E����I�E�����H��L��H�@�@(����I�T$D�<$H�PH�BI�D$E�������1ɉ�L��1��J;��I�T$A�H�PH�BI�D$���DI�L�4$H��L���5*��L��I���**��H��H�$L�xM����I�?H������,�����G�����E1����L��L���l=��1�L��L��L���\^����A���,��L��1��:��I�T$I��޹L��H�PH�B�>I�D$1��]:��I�T$H�PH�BI�D$�E(��=��L��1�M���.:��I�T$1�L��L��H�PH�BA�F(H�EH�hH�$I�l$H�P�]���"I�E����I�EH�@p�t"1�1ɉ�L��1���9��I�T$H�PH�BI�D$�;1ɉ�L��1��9��I�T$H�PH�BI�FL�pH�$M�t$H�@H�$H���V����&���fDA����L��,1��L9��I�T$I��޹L��H�PH�B�>I�D$1��!9��I�T$M�H�PH�BI�D$�E(M�������E1����L��L���;��I�W1�L��L���\���h���E1�醫���HDŽ$f�)�$DŽ$�HDŽ$�I�E����I�EH��$H�t$H�x(H��$H�@(H�|$0A��*��5I���L�pH�D$I�F8H�D$8I�EL;����E1�H�����H�BH;��u�L$A�FE1ɉD$ ��~aD�|$(D�|$H�\$HH�\$L�d$@M��E���A��$�E����H��L��D)�A���a:��E9t$�E��D�|$(M��H�\$HL�d$@A�V���tsE�FE����M1�D�|$ D�|$L�d$(E��H�\$@�ÐB�#H�t$E��L��A�����)щ���9��A9^�E���D�|$ L�d$(D�H�\$@A�V�D$ ����(����3��&� ��6�1ɉ�L��1���6��I�T$H�PH�BH��$I�D$H��tH�PH��$H�BH��$I�D$L�t$0E1ɋT$ L��L��$�M��A��1�A��+��1���
�$��������9M���I���L��1��K6��I�T$H�PH�BI�D$�$����A����I�EM�V%��fDI�>H��H��H����H�D$�D$��-�42��,�)H��$E1��H�D$ �$����5I�VH�H������>��/����=��I�N�H���bU@H�AH�H������>�P�i��=�l��?�,GM���u�c
D���L
I�QM��1�L��L��A����XM�NM����
A���~�McNjt$�L��O�D�1���4��I�T$H�PH�BI�D$����M�N1�E1��@I�E�����I�I�UH��H�z �CL���#��H��I�D$H�EH�hI�l$I�E�m��I�E��L��H�p ����I�T$L��L��H�PH�B1�I�D$蟓I�E�$��I�E�=���L��L�@ 1��4��I�T$H�PH�BI�D$I�E����I�E�����H��L��H�@ �@(�G��I�T$D�$H�PH�BI�D$E���p����1ɉ�L��1��3��I�T$A�H�PH�BI�D$�F����L���"��I��I�H������#��L���z"��H��I�V1�L��L���V���n���1ɺ$��L��1��+3��I�T$M���H�PH�B�?I�D$I�H������"t�>��L��1���2��I�T$1ɉ�L��H�PH�B�#I�D$1�A�G(��2��I�T$1�L��L��H�PH�BI�VH�EH�hI�l$�GV�������I�D$�,$I�GL�xM�|$���*����#1ɉ�L��1��_2��I�T$A�H�PH�BI�D$����f�I�FH�hH�pH��H�t$觶��L��H�D$ �:!��L��H�D$(�-!��I�VH�D$H�H������\��-1�L��L���U������H�D$I�FE1�H�x��)1ɺ$��L��1��1��I�T$H���޹E1�L��H�PH�BH��I�D$jL�L$ �0��I�T$H�l$H�PH�BI�D$H��l���ZYH���EI�V1�L��L����T���i���H��A�E1���jH�T$�L���F0��I�T$H�PH�BI�D$AYAZD�$E���g=H�����E1�jH�T$0L��L�L$ �0��I�T$H�PH�BI�D$Y^M����RI�G�#1ɉ�L�xL��1�M�|$�0��I�T$A�H�PH�BI�D$�5����I�>H�����1���I�6H��L��H��1�H���M��E1����I�E���I�}H�Gp��8���=�H�P �|$8H�R����H��������H� �I>H��H��H�D$h��H�|$hH��H���0	��A��	H�saH�=JHE��u���H�����H��H���	��Hct$8H��H�t6����Hct$`H��H�t6����Hct$\H��H�t6����Hct$dH��H�t6���I�EH���H�����H� �o�H�@ �j�E1��Ρ��E���7H��$H��tI�T$H�BH�PH��$I�D$Mc��!�D��O�DL��1��.��I�T$H�PH�BI�D$H�D$E1�E1�H��$H�CH�X�i��E����H��$H��tI�T$H�BH�PH��$I�D$Mcƺ!�D��O�DL��1��9.��I�T$H�PH�BI�D$H�D$E1�H��$��f���]���v�H�IH�AH�H������>t1�o��=�P�H�I��H����H�AH�����.�I�E�R��I�}H�Gp�8��뽃�]��������e�fDI�F����H������t�H������e�H�BH���|E��t'L��1�L��L����PH�CE1�E1�H�X��@H��E1�E1����L��D�|$0D�t$8D�T$@L�d$HH�$H��� ��8H����H��D�T$ H��?H�H��u���D�T$ H��H�$H��� ��8H��H��H��H�ƃ�H��D�T$ ���H���g��D�T$ H�Ń�H�$u1H�����t(H�E�ƒ���tH�€�H�}H�Ut	����KE���v8E���uDH��$H��tI�T$H�BH�PH��$I�D$Mcκ!�D��M�L��1�I��M����+��I�T$H�PH�BI�D$H�D$H��$A��D��1��L���+��I�T$1�D��L��H�PH�B�&I�D$1��+��I�T$I��D���L��H�PH�B�I�D$1��Z+��I�T$E1�D��H��A��L��H�PH�B��I�D$j�T*��I�T$H�PH�BI�D$XZE1�E1�H�<$u#H�����tH��L��D�$�k��D�$�H���RH�s���fDE��������!A�D��1��L��E1��*��I�T$E1�H�PH�BI�D$H�CH�X�W�D��]����������I�VH�H������/�7���H�z�,���McNjt$�L��O�D�1��*��I�T$H�PH�BI�D$��������t$�1�L��1���)��I�T$A�H�PH�BI�D$鐜��f�A��D��1��L���)��I�T$1�D��L��H�PH�B�&I�D$1��)��I�T$H�PH�BH��$I�D$H��tH�PH��$H�BH��$I�D$H��A�N��E1�jHc�A�D��H�L	L���V(��I�T$H�PH�BI�D$A[A^�\�����]���w��������]�����H�I��H���^�E���{���s�Hc���M��H�$����:H�$H�ǃ�H��u1H�����t)H��H��ƒ���tH�€�H�H�t	����KE����E���VED�t$L�$�1��L��L�L$D���@(��I�T$1�D��L��H�PH�B�I�D$1��(��I�T$L�L$H�PH�BI�D$H��uH�$�����pG1�E1�M����>M����f.��&1�D��L��1��'��I�T$H�PH�BI�D$�)��DA��D��1��L���'��I�T$1�D��L��H�PH�B�&I�D$1��]'��I�T$H�PH�BH��$I�D$H��tH�PH��$H�BH��$I�D$H��A�N��E1�jHc�A�D��H�L	L���&&��I�T$H�PH�BI�D$AYAZ���H�\$ L9��g4L�t$L�|$L��1���=M��D���&��I�T$1�L��H�t$H�PH�B�#A�F(H�FH�p1�I�t$D���n&��I��I�D$I�FL�pM�t$��M�t$H�U�L��L����II�FH�@H�mH��u�I�D$H�|$H�GH�xI�|$�$���� A�鳘��DI�E����I�}H�Gp�8�C��H�IH�AH�H������>���������I�VH�H����I��1
����\��#1�H��L��L�T$�*IL�T$��teA��)����H��A��L��L��H��$�L�T$�	*��L�T$H��I�VH�t$H�L$tL��$�L��L�T$�L�T$H��H���i��E1��—��E1�麗����]���Z����H��$f�HDŽ$)�$H�D$H��$M�����1�H�T$1�L��L���LHD�<$E���R+H�|$�vM�|$A�?��7E1�H�|$�I�6Lc�A���L��1�M�H��O�D�I���A$��I�T$H�PH�BH��$I�D$H��tH�PH�BH��$I�D$H�|$��\�H�EH��H������I��,H�]H�mH��H��LcCO�DH�����=�L��1�A���#��I�T$L��L��H�PH�BH��I�D$�������H�SL��L���ׄ�����H�[H��u����I�6H�jw L��1�H���@��E1�����t$�1�L��1�E1��(#��I�T$M�NH�PH�BI�D$���D���I�7H���L��H��1�H���(@��E1�鞕����H�uH���L��H��1�H���?��E1��u���L�|$ f�L�}L������H��L��L��I��L��I���-�����2I�D$H�mI�FL�pM�t$H��u�L�|$ �N���E1�����I�E����I�}H�Gp�8���H�KH�AH�H������>�7�����I�E�8��I�EH�@p�8������D1ɺ��L��1���!��I�T$1�L��L��H�PH�BI�VI�D$�jE�����H��I�VA�	��jE1��L��� ��I�T$H�PH�BI�D$XZ�n����"E���R�I�V1�L��L���	E���9�A����L��1��5!��I�T$1ɉ�L��H�PH�B�I�D$1��!��I�T$A�H�PH�BI�D$鱓���#��L��1��� ��I�T$A�H�PH�BI�D$郓������I�E���I�MH�A�����H���������H��L��������1ɺ��L��1��n ��I�T$��L��A��H�PH�B�I�D$1��@ ��I�T$I�~H�PH�BI�D$�E����L��I���1�� ��I�T$H�PH�BI�D$���H�����L��1��"=��E1�阒���C�����I�V1�L��L���lC�����1ɉ�L��1����I�T$A�H�PH�BI�D$�B���I�E���tI����0H���H���X	H��K	H�PH���>	H�z �<H�@���u�1�I�V1�L��L����B���E�H�<1��I���L��I�����I�T$�<$H�PH�BI�D$������#1ɉ�L��1�����I�T$A�H�PH�BI�D$�g���f�H�z��L���
��H��I�D$H�EH�hI�l$I�E�@��I�E��L��H�p����I�T$1�L��L��H�PH�BI�VI�D$��A���]�1�L��L���}I�E����I�E�=���L��L�@1�����I�T$H�PH�BI�D$I�E����I�E�����H��L��H�@�@(�(��I�T$H�PH�BI�D$�e,��,$���O����1ɉ�L��1����I�T$A�H�PH�BI�D$�%����E1�����I�M�9��-H�z��L���X��1�L��L��H��I�D$H�EH�hI�l$�v|I�E���I�E��L��H�p�f��I�T$H�PH�BI�D$I�E�����I�E�=���L��L�@1����I�T$H�PH�BI�D$I�E���I�E�����H��L��H�@�@(���I�T$D�$H�PH�BI�D$E�������1ɉ�L��1��J��I�T$A�H�PH�BI�D$���H�@ �5���E1����L��L��������L��H��DL�L�1�����I�T$A�H�PH�BI�D$�4�H�l$ ������g����$L��L���`?E1҅�A���`���D�$E���m$A��H���I�V1�L��L���)?�����L�����H���!���I�vL��L��L�t$A�H��E���A��I��I�E����I�EH����D��A�M���L��L�x(j�4��I�T$H�PH�BA^Z�5���H�\$�t$�=1��L��I������I�T$H�PH�B�C(1����I�VE1�L��L��H��$L��$HDŽ$��H��$H����+�?I����L��1��_��I�T$H�PH�BI�D$�E(���I�6H�{�L��1�H���l7��E1�����1ɉ�L��1����I�T$H�PH�BI�D$����L������H���š�����L���H�}H�E tH�}H�4���1��+���%�����I�6H���L��H��1�H����6��E1��L���H�P1�L��L���-=���/����I�vH��$�H��$�L���8������&��$���L��L��D��$�)����������#1ɉ�L��1����I�T$A�H�PH�BI�D$鷋��I�6H���L��1�H���!6�����I�FL��L��H�H�H膊I�FH�x����
��L��I���1����I�T$A�H�PH�BI�D$�A����#1ɉ�L��1��p��I�T$A�H�PH�BI�D$������t	���Ļ��M���t���I9�t
A�������L���F��1�H��I�D$H�CH�XI�\$I�EtI�}H��@�(���1�L��L��H�@I�T$�H�PH�@�h H�BL��I�D$�h;�������L��L���w1�I�EtI�EH�x@�(�2���1ɉ�L��H�@I�T$�H�P�@H�@ H�B�;I�D$1��@��I�T$H��L��H�PH�B�����I�D$���I�T$H�PH�BI�D$�$��������1ɉ�L��1�����I�T$A�H�PH�BI�D$鏉����2�3�H�rH�D$xL��H�L$|H��L�T$�
6��Hc|$xL��L�T$����tH�NH�����u�I�VL�FH�
I9����/H��H�������#1ɉ�L��1��M��I�T$H�PH�BI�D$��H���+��I�D$H�CH�XI�\$E���g����*���fDH�����L��1��53��E1�髈��E���V��A���L��Hc�D�T$ �
����D�T$ H�$���D�t$8I��H�\$(L�d$HI��D�|$0D�T$@����^t1���_��H��$�I�FL�xI�H������]�������^t1���_���H��L��H��$���I�FL�p����M�~I�H������]�v�g�����>�^I�E�����I�EH�@p�@u�E���H������B#L�����H�t$�H��$�I�H��H�H�DH��$��S��I�H�D$ 襧��H�|$ I��蘭��L����H��訛��L��� ��������>��I�E�
���I�EH�@p�@u衾��H�������"L������H�t$�H��$�I�H��H�H�DH��$����I�H�D$ ����H�|$ I����L����H������L���|���r�����h���DI�G�Z����I�G���������E�����E����'H��$H��tI�T$H�BH�PH��$I�D$McƋt$�!L��O�D�1�D�$�(��I�T$D�$H�PH�BI�D$�˅��1ɺ$1���L�����I�T$�H���H�l$H�PI��H�B�>I�D$t�?��L��1����I�T$1ɉ�L��H�PH�B�#I�D$1��E(���I�T$1�L��L��H�PH�BI�VI�D$� 6������1ɺ&��L��1��U��I�T$��L��A��H�PH�B�(I�D$1��'��I�T$H����E1��L��H�PH�BI�D$jL�L$ H�T$0�#��I�T$��L��H�PH�B�=I�D$A^XL�t$(1�M�����I�T$1�L��H�t$H�PH�B�&A�F(H�FH�p1�I�t$�����I�T$1ɉ�L��H�PH�B�#I�FL�p1�M�t$�\��I�T$H�PH�BI�D$M��t
I�GL�xM�|$�,$������#1ɉ�L��1����I�T$A�H�PH�BI�D$黃��A�й��L��L�����A�雃���A���L��A�����D$(1����H��$H�PH�BH��$A�F ��H�D$8D�D$��L��H�t$A���+H� ��H��MH���z&H��H�‰�L��jA�E1���o��H��$(H�PH�BH��$(^_H�D$8E1ɋ����L�d$PL�d$8D�|$@H�\$8L�t$HE���I�D$Ic�H�|$A��L�<�L���.���\$(L��)��������L��I���1����D�D$��L��H��$H�t$H�PH�B��H��$�.��E94$�E��D�|$@L�t$HL�d$PH�\$8H��C�L	E1�A�jHcɺ�H�L	��L���f��H��$(H�PH�BH��$(XZA�F�p�D$ ��$�����D�D$H�t$��L��A���A+N ���� E1��޹L��1�����H��$H�PH�BH��$A�F ��$�A�V���D$ �������A�F(�D$(A�F$���x�|$(����)�L�d$HM��D�t$D�|$@A��H�\$P��f.�A��$�E���L��H�t$D)�A������D9�u�M��D�|$@L�d$HH�\$PLcD$(���L��1�O�D��
��1ɉ�L��H��$H�PH�B�H��$1��
��H��$H�PH�BH��$A�F����f��H�3H���L��H��1�H���*��E1��1���H�H������\��I�NH���ٽ��H�H������,�ƽ��H�y�����H�IH�H������>�����H���_�I�UH�z(�.H��$�1���D$tHDŽ$�H���H��$�H�|$�魽�����I�6H�~�L��H��1�H����)��E1��[��I�V1�L���?0��tEI�V1�H��L���*0��t0H��$�H���n���I�T$H�BH�PH��$�I�D$�O���E1��~��I�V1�L����/��t�I�V�M�F����L��1����A���L��H��$�A��H�PH�B�H��$�1�����H��$�H�PH�BH��$�H��$��?����A���L��N���1����I�T$A�H�PH�BI�D$�*~��L�����L��H�D$�w���1ɺ$��H�D$L��1��?��I�T$�I���L�|$H�PM��H�B�>I�D$t�?��L��1����I�T$1ɉ�L��H�PH�B�#I�D$1�A�G(��
��I�T$1�L��L��H�PH�BI�D$I�FH�P�`.������D$��H�L�tE�$������$����|$u%�&1ɉ�L��1��g
��I�T$H�PH�BI�D$D��$�H��H�ME1�jO�L	����L���\	��I�T$1ɉ�L��H�PH�B�#I�D$1�]A_�
��I�T$L���L�|$�H�PH�BM���=I�D$1���	��I�T$H�|$H�PH�BA�G(H�GH�x�$I�|$�����*��M��L��1��	��I�T$H�t$H�PH�BH�FH�pI�t$鎨���#1ɉ�L��1��U	��I�T$H�PH�BI�D$�l���I���
��I�����I�����������L�����M��������������I�H������=�n���L���������^����<$��{��I�xI�v@��軔�����L��I��H�Ź1����I�T$H�PH�BI�D$@���;{��H��L�����A��+{��DA��D$����L�D$0H��L��L����~�j��I�D$H�HH�AH��$�H��$I�T$H������H�BH�PH��$I�D$���L������1ɺ$��I��L��1�����I�T$M���޹L��H�PH�B�@I�D$1����I�T$H�PH�BI�D$A�G(����L�����H�D$�$����L�D$��>I�~�t�?��L��1��L��I�T$H�PH�BI�D$H�D$�@(�$����H��tI�D$H�EH�hI�l$I�V1�L��L���*���&���$���sA����L��(1�����I�T$L��H�PH�BI�D$�����
L���I���1����I�T$H�|$H�PH�BH�GH�xI�|$�#1ɉ�L��1��j��I�T$A�H�PH�BI�D$�y���$1ɉ�L��1��:��I�T$H�PH�BI�D$����I�E�s�I�E�H�@p�8�����d���$1ɉ�L��1�����I�T$H�PH�BI�D$�o����$1ɉ�L��1����I�T$H�PH�BI�D$�����#1ɉ�L��1����I�T$H�PH�BI�D$�`����$1ɉ�L��1��i��I�T$H�PH�BI�D$����#1ɉ�L��1��?��I�T$H�PH�BI�D$�(���$1ɉ�L��1����I�T$H�PH�BI�D$����$1ɉ�L��1�����I�T$H�PH�BI�D$�����$1ɉ�L��1����I�T$H�PH�BI�D$�p���I�ML��9���tBH�BH��t9H�x �
H�B�����	����H���H��t
H��u�H�׶��L��1��~!��E1���v��H�z�\���I�6�1�L��1�H�����I�T$�D$H�PH�BI�D$�B���H�z����I�6�1�L��1�H������I�T$H�D$	H�PH�BI�D$�����$���^v���t$��1�A�L�����I�T$A�H�PH�BI�D$�)v��H���#������L��I��H�Ź1��G��I�T$H�PH�BI�D$@����u��H�������u��H��L��蓲��A���u��A�F(�D$(A�F$�t$(�<�|$ ��~bL�d$@M��D�t$H�\$H�\$ D�|$(A���A��$�E���L��H�t$D)�A���W��D9�u�M��D�|$(L�d$@H�\$HA�V�����I�VH��$�L��$�L���H�E1�H���u��H���C����D$ �V��L�����H��$�H��$Hc�H�DH��$�������L��I��H�Ź1����I�T$H�PH�BI�D$H����t��H��������t��H��L�����A��xt��H�z�#��I�6�1�L��1�L�T$H������L$tL�T$H��$�H�PH�BH��$����L��tBH�BH��t9H�x �AH�B����2���lH���H��t
H��u�H�����L��1��L��E1���s���t$�#1�L��1�����I�T$H�PH�BI�D$�8�������H��I�E���I�EH�hx�P���H��$f�HDŽ$)�$H�D$H��$M�������H�T$1�L��L��1��$�����H�D$8D�D$��L��H�t$A���+H����H���LH���H��A�E1��j���$�I�V��L��L���#M�vM��u��r���1ɉ�L��1�����I�T$H�PH�BH��$�I�D$H��tH�PH��$�H�BH��$�I�D$H��$H��tI�T$H�BH�PH��$I�D$��$�������1ɺ$��L��1��Q���I�T$I���޹L��H�PH�B�I�D$1��%���I�T$E1��޹L��H�PH�B��I�D$HcD$ARjL�I������I�T$H�PH�BI�D$A[]H�D$L�@��)��L��1����I�T$1ɉ�L��H�PH�B�#I�D$1����I�T$H�PH�BI�D$��r��L����A��L��H��H��$�L��I�����H�D$�Pr���t$�#1�L��1��8���I�T$H�PH�BI�D$�ع��H���	���I�6H��L��H��1�H���>��E1��p���#1ɉ�L��1����I�T$H�PH�BI�D$�ۦ���H�=t�k���H��H���L�:���L��L���!���馂��L��L����������H��L�������[���I�FL��L�T$(H�D$�F����
H�=R�H��H�D$ �͓��H�L$ L�T$(���c���H��H��
�V���H�|$�D$ �TL�d$(H��$H��L�t$0H�\$8H��I�E�j��I�EL���A�|$���E1�M���A��Ic�H�@M�4�A�~�tzI�~H�������uڀ|$ M��H�l$A��L�d$(L�t$0H�\$8���1�A�����I��L��1��b���I�T$A�H�PH�BI�D$�o��D�H�5ۮH�������t=�H�5?�H�������t#�H�52�H��������n�D$ H��$L� H��H��H�����Q���H��1����H�D$���L��L��������z��H�=���8���H��H���L�5y��L��L������q��H�z�"o��I�6�1�L��1�H���F���H��$��D$H�PH�BH��$���n��H��L��葪���m��1ɺ��L��1����I�T$��L��A��H�PH�B�<I�D$1�����I�T$H�PH�BI�D$�$���fm���#1ɉ�L��1����I�T$A�H�PH�BI�D$�<m��I�V1�L��L������M���<1�A��޹L���I���I�T$�<$H�PH�BI�D$��l���#1ɉ�L��1�����I�T$A�H�PH�BI�D$�l���1ɉ�L��1�L�T$���H��$�L�T$H�PH�BH��$������,$H�S��L��L���_H�[H��u����A����L��1����1ɉ�L��H��$H�PH�B�H��$1��Z���H��$H�PH�BH��$�1�I�6�$1�L��1�H���%���I�T$H�PH�BI�D$���I�6H��L��1�H���6��E1��k���!A���L��1�����H��$H�PH�BH��$��E�����ߊ��H��$��B���I�~��I�������I�N�)���@�`���H�J������H9�$�F���H�VD�@�I��N����H��H9J���I9�u��۸����^���I�E����I�UH�B���H��������H��L���i����ד��L����1ɉ޺$H��L��1�����I�T$L��H�PH�BI�D$����H�����jI��A�%�+L��1����I�T$I��޹L��H�PH�BI�D$X1�Z�?�Z���I�T$H�PH�BI�D$�E(����H�GH�D$@雉��H�@ �v����t$�!�1�A�L���
���I�T$A�H�PH�BI�D$�i��H��L��L���?X�5��������I�E����I�UH�B������H����������H��L������頴����̯��I�E�6��I�UH�B������H���������H��L���ץ���o����舯��I�E�<��I�UH�B��k���H������_���H��L��蓥���O���H�D$�`�����6���I�E����I�UH�B��O���H������C���H��L���A����3���H�z�i��H�JH�H������>�i��I�E���I�EH�x(��h��H�@p�����h�����h��H�y����I�V1�L��L��H���������I�F1�L��L��H�@H�P���������<$�E1�E1�1ɺ��L���\���UI���I���L��1����I�T$H�PH�BI�D$@����i��H��L������si��@L�L$頵��H�y�h����g��Hc�D�T$ �ɭ��H�$D�T$ D�t$8I��L�d$HH�\$(I��D�|$0D�T$@�@���H�$莭��I�E����I�M�H�$H�A�ӝ��H������ǝ��H��L��蕣��H�$鳝��H�$H�p H�x�_��H�$H�@�������H��I�E�A��I�EH�hx�M���E�������I��D��L��1���I�T$H�PH�BI�D$�|��1ɺ&��L��1��y�I�T$��L��A��H�PH�B�(I�D$1��K�I�T$H����E1��L��H�PH�BI�D$jL�L$ H�T$0�G�I�T$1ɉ�H�PH�B�#I�D$1�_L��AX���I�T$H�PH�BI�D$M����e��I�GA�L�xM�|$�ze��E1����L��L���W���A��Ze��I�~胏��I�6H�ؤL��H��1�H�����E1��.e���D$�^���H�D$ �1��t$H��$L�t$�=�H��$L��H��$M��1���H�|$L�L$ H��$H�PH�BA�F(H�GH�xI�~L�wI�AI�FL�pH��$I�AL�H����H��L���B�����o��H��L���2����
r��L��L���"�����u��H�R ���I��K|���A��I��=|�����A����L��%1��\�I�T$1ɉ�L��H�PH�B�&I�D$1��7�I�T$L��H�PH�BI�D$�=������L��I���
1���I�T$1�L��H�t$H�PH�B�&H�FH�p1�I�t$�����I�T$H�PH�BI�D$�>��$1ɉ�L��1���I�T$H�PH�BI�D$��H�=r���0���H��H���L���H�y������#1ɉ�L��1��N�I�T$H�PH�BI�D$��H�@ 鴩��H�GH�D$h�©��Hct$0H�H������Ic�H�H��鬂��Hct$ H�H���ۂ��Hct$(H�H��骂��E1��b��L���κ���!���H�r���L��1����E1��lb���H�=���M���H��H��L�a��1�A��޹L���r�I�T$�|$H�PH�BI�D$�a	1ɺ��L��1��B�D��$�I�T$H��M�H�PI��H�BI�D$APE1�j���D$�)���L��D�@1�Mc�M�I����I�T$H�PH�BI�D$�^���L������H���L����H����L��1�����E1��ca��H�D$�)��L��L�@1���I�T$H�PH�BI�D$��b���(A���L��1��S�I�T$H�PH�BI�D$��$���H�D$L�@�X�Hc��]���H�$M���5���^t1���_�H�<$L�L$�a��L�L$M�I���)��M�qI�H������]�����>��I�E���I�EH�@p�@uL�L$����L�L$H������L��L�L$(�8���H�t$ �H��$I�H��H�H�H��H��$�	���I�~H�D$�[���H�|$I���N�����L��H���^t��L���֦��L�L$(H���
��������I�v����H�=�蕜��H�6�L��}���)M����L��1���I�T$H�PH�BI�D$���1ɉ�L��1���I�T$H�PH�BI�D$�h���
�H�I9G����I�G(H�8�Q���H��������9���I�D$I�A��L��L��Hc�H�@H��H�H��I�D$H�@�2�I�6�'I�عL��1�H�����I�T$H�PH�BI�D$H��$H���,���I�D$���H�\$A�L��1�������I�T$1ɉ�L��H�PH�B�&I�D$1���I�T$H�PH�BH��$I�D$H��tH�PH��$H�BH��$I�D$A�FRA���H�j�t$ E1�H�L��H��H���H�I�T$A�H�PH�BI�D$Y^�]��H���u��H����s���)M����L��1����I�T$H�PH�BI�D$���1�A��޹L����I�T$�|$H�PH�BI�D$�1ɺ��L��1��m�I�T$E1�H��D��$�H�PM�H�BI��I�D$Pj��A����L��(1��"�I�T$1ɉ�L��H�PH�B�&I�D$1���I�T$H�PH�BI�D$�ҝ���H�=��腙��H�^�L�i��H�
���L��1����E1��l\��E��t
A���g��L���Q��L�t$8E1��~��D�L$ �h����H�=_����H�P�L����Hct$`H�H���U���Hct$8H�H���&���E����[��McNjt$�L��M��1�I����I�T$H�PH�BI�D$����[���t$�1�L��1����I�T$A�H�PH�BI�D$�[��Hct$dH�H�����Hct$\H�H���ɢ��H���o��I�UH�z(����H�Bp��}��H�y�:s��E1�E1�1�1�I�~�H���J	��
L�����I���4I����L��1��6�I�T$H�PH�BI�D$@��uH��L���#���<$��Z���#1ɉ�L��1���I�T$A�H�PH�BI�D$�Z��H�Z���L��1����E1��|Z��A��D��1��L����I�T$1�D��L��H�PH�B�&I�D$1��{�I�T$H�PH�BH��$I�D$H��tH�PH��$H�BH��$I�D$A�FVE1���H�jL��A�H�D��H��H���C�I�T$H�PH�BI�D$_AX�#���E���h���A���^����D�T$ �����H�$�D�I�7H���L��1�H������E1��gY��脨��A�@@�*���t$|)Ɖ�A���A+p,9������H�H�κLc�H��H���M�I��1�L��I��L�T$�G�H��$�L�T$H�PH�BH��$�����A�L��1����I�T$H�PH�BI�D$�n��A����L��%1����I�T$1ɉ�L��H�PH�B�&I�D$1���I�T$1ɉ�L��H�PH�B�#I�D$1���I�T$1ɉ�L��H�PH�B�I�D$1��i�I�T$��L��A��H�PH�B�)I�D$1��;�I�T$1ɉ�L��H�PH�B�#I�D$1���I�T$1�H�PH�B�#I�D$���H�T$H�t$H�L$tL��$�L��D�T$ �lH��H��蹃��H��A9G��觃��I�6E�GL��H�L$A��H�&�1�H������D�T$ �GW���D$(�t��A����L��%1��`�I�T$1ɉ�L��H�PH�B�&I�D$1��;�I�T$1ɉ�L��H�PH�B�#I�D$1���I�T$1ɉ�L��H�PH�B�I�D$1����I�T$��L��A��H�PH�B�)I�D$1����I�T$1ɉ�L��H�PH�B�#I�D$1���I�T$1�H�PH�B�#I�D$����H��H�=��H�l$輦�����t��H�
LA�H�����V��L���@���鱟�������H���)����ҍ��H��H�$����H�$���L�$�t$�L��1�L�L$����Ϻ��McNjt$�1�M��L��L�L$I�����I�T$��L�L$H�PH�BI�D$�>����t$�1�L��1���I�T$L�L$H�PH�BI�D$�
���I�~�)m��L�L$H���]�I������L��1��B�I�T$E1��޹L��H�PH�B��I�D$HcD$L�PjI���9�I�T$H�PH�BI�D$XZ��H�@ �"w��L���߬���~��H���Ҭ������L���Ŭ������諀��������I�U;����E1�A��L��L�d$M��E��A��H�\$H���
A��G�4'D9�rjH��$D��D9����}uP�}uJH�E(H�L$ H�8�2���H�D$H�E(H�x� ���H�L$ ��uH�A����B+D$9�u�H�m���L�d$H�\$M��I��H��$H��tI�T$H�BH�PH��$I�D$�^M�����L��1���I�T$H�PH�BI�D$�<$��A��PS��H��芫��D�T$ �;���H�4$L��L�L$1�E1����L�L$�u���1�1�L�t$��L��L���M�v��M��t;I�V9�~�1�L��L������E���)������!�����G���H�$���9�}:E1�)��.I�7�1�L��1�A��H������I�T$H�PH�BI�D$A9�|�L��L��L���BCA��eR��A�~ ����t��������A�G'��H�_�u��H�@ ��t��I�D$I�L��L��A�H�@H��I�D$H�@�d�I�6�&1�L��1�H���,��I�T$H�PH�BI�D$�3��L���h���I���6I�����H�Bp������������H�y�i��I�V1�L��L��H���o�������E1�E1�1ɺ��L������VI���I���L��1����I�T$H�PH�BI�D$@��uH��L���n���<$�Q���#1ɉ�L��1��A��I�T$A�H�PH�BI�D$��P���#1ɉ�L��1����I�T$A�H�PH�BI�D$�P���#1ɉ�L��1�����I�T$A�H�PH�BI�D$�P��E1�D���_M���L���L��1�I�����I�T$H�PH�BI�D$����A�v(�t��1��s��IcF H�l$H�H��H��H���˶��IcF$H��H�H��H��赶��IcF(H��H�H��H��蟶��Icv,H�H���5s���H�=&辌��H�O�L�r��1ɺ&��L��1�����I�T$��L��A��H�PH�B�(I�D$1����I�T$H�PH�BI�D$��L�L$蠧��L�L$� ���M��E��I��L�d$H�\$���L�����H�%L�����H�% �j���DH��t��L��fD����f���AWf�AVAUATUH��SH��H��dH�%(H��$�1�L�d$`��)D$`H�D$pL�d$x�]H������PH�uH��%�H=@��H��H�����D$t(H�{�����H�rHc�H�>���H�uH�{�#��L�mM���&I�}H������E��I�ML�s�AHH�L$�D$@��A�F����	�A�F�A�D$@A�F��~A�NH�D$H�H H�x(L�x@H�L$ H�|$0H���
�D$DM���Z�E1�����L�t$(E��M��H�l$8H��H�D$�f�A��H������H��H��I��H������H�D$xL��H��I�U�I�GL�xL�|$x����M�mA�NM��u�H��E��H�l$8L�t$(�L$8A���c��H�|$Mc�H��H�D$(H��蚳��H�T$(H�D$xL���H�BH�PH�T$x趫��J��I��H�D$H�H�pH�L$(�� �L$8u	H�D$H�p H���E��~��L��I�T�H� �H��H9�u�H�|$�L$8L�D$(���L$8L�D$(A�NL$@A�NM�F0H�|$ ���D$@A�N�PA�F �����H�D$H�xt!�HA�FA�V$��A�N(�A�F���
H�D$L�x0M���H�K��T$@H�L$ �K���1�I���A���H�L$ � �H�D$8�I��i��H�L$ �T$@E1�H�D$H�A8�M�A��M��u�B��D$(�H�D$\�L$@H�L$�AH�D$L�@0M����L�t$HM��H�l$PD��I��D�T$X�IH�H������]�-�����^t1���_����L��A�/褱��M�vM���I�FH�PH���u��D$(��f�H�D$H�x8��	� ��T$��h���T$�P�JA�N �L$@I�F8H�|$0t�D$@A�N@A�F,���D$@H�{�Q���D$@A�FH�D$H�H��t�L��H���<���H�D$H�PH��t�L��H������A�>u(A�F�>uA�~u�T$D��u�ȀA�Ff�H�C����1�������H�U1�L��H���������H�C������dH�����H�C�p\1ɺ;H��1�����H�T$xL��H��H�PH�BH�D$x��
�����zL��H������H�H��$�dH3%(��	H�ĸ[]A\A]A^A_�@1�H�tH�{H��@�(����H�T$x1�L���H��H�PH�@�@H�@ H�BH�UH�D$x��������1�H�tH�{H��@�(螷���H�@�@H�T$xH�@ H�PH�BH�D$xH��ù��H�UH�CH���P\H�S�����������E1�1ҹL��H���+��1��<H��1�A���_��H�T$xL��H��H�PH�BH�D$x�R	���������f.�1����f�1�H�tH�{H��@�(賶��H�T$x1�L���H��H�PH�@�@H�@ H�BH�UH�D$x�s�����t�1�H�tH�{H��@�(�R����H�@�@����H�I�LJ�H���1�H���E���fDH�
��1�H��H�c�H���{�1����@H�
׆���H�
]����1�H��H���H���;�1��W���@H�
����H�
����H����LJ�H����H���fDH�
`��L���@��=uCH�r�H���f.�H����1�L��H�����H�Cǀ��U����L��L��H�����H�t$8������fDH�D$L�t$HD�T$XH�l$P�@�D$H��D)�H�D$H�L$H�@8D�H�xt�D$@�AH�D$ �H �D$\���D$@H�L$�D$(Hc�I�}�AH�D$ H���H��H�A�� �
I�}��<���I�ML�t$(I��H�l$HL��H�l$8D�l$L�d$8I���:@H����I9��HH��J��H9�t<��u
H������K��A��H�Mc��� u�L;{�
H�S J��H9�uĺ4�ϐH��kL�sH������I��I�FH��9L�sH�����1�I��I�FA�E,���A�E,A�G,���A�G,H�tH�{H��@�(�5���H�T$x�H�PH�@�@H�@ H�BH�D$xH�CH�xX�9p��1�1�H�߉�1��9��H�T$x1�L��H��H�PH�BH�UI�EL�hL�l$x�������H�D$x1�I�GL�xL�|$xH�tH�{H��@�(臲��H�T$x�H�@�@H�PH�@ H�BH�D$xH������H�SH�CM��L��I��H����Rl�P\H��$�H��L��$�HDŽ$�H��$�HDŽ$�L��$�H�D$���A�E(A�M,H��A�G(A�E(H�����H�CH�x�s��u5H�����t,H�������tH����H�zH�
t����fDH�BH������H�CH��H�x����H�t$�H��$�H��$�HDŽ$�
L��$�HDŽ$��$���A�E(A�M,H��A�G(H��L���H�CH�x��@��u8H�����t/H�E�ƒ���t!H�€�H�}H�Ut����H�EH����H�CH��H�x�C���H�C����f.�苝��I�uH���H��H��1�H������Z���f.�H�������@A�F ��A�F$�<���H�D$�T$@�@H�����A�N�}���L�ljL$(�T����L$(I���i��H��L��H�L$ H�T$�}��H�T$H�L$ ����@H�|$L��L��H�l$HL�t$(L�d$8H�G����DM��t+�D$DH�D$ ���D�T$@�V���T$@�D$D�>��H�u���H�T$���H������H�K�H�T$H�A�\���H������P���H��H����|��H�T$�;�����s���H��D���H�SH�B����H���������H��H���|������H��H�T$���H�T$����H���ۗ������豎��H���KH�5�H�81�����H�
�h��H�5�{H�=y�j^��H��費��H�%H��蠻��H�%fDAWI��AVAUATUH��SH��H�:�L$I��H����I��dH�%(H��$�1���g��H�
�b��H��E��Hc�H�>���H��� ���H��I������H��H�D$ ����H�D$H�D$@I�GH��tI���I���1ɺ$D��H��1����H�S1�H��H��H�PH�BI�WH�C�6����1����H��舺��H��I���}���I�W�L$H��H��I�������D��H��?1�M���-��H�S1�H��H��H�PH�BI�WH�CA�E(����t�I�M���?H������t�>D��H��1�����H�SD��H��A��H�PH�B�H�C1�A�E(���H�SM��D��H��H�PH�B�=H�C1��y��H�SE1�D��H��H�PH�B�A�F(I�EL�h1�L�k�B��H�SH�PH�BI�FL�p�L�s�}M�oH�L$lH�T$hH��L���g�A�ƋD$����E����L$lD�D$hD)�D��H��H�����A���D��H��1����H�SH�PH�BH�C�H��$�dH34%(�~H�Ĩ[]A\A]A^A_�f.�H��舸��H��I���}���1ɺ$D��I��H��1��F��H�SH��H��H�PH�BI�WH�C���M��D��>H��1����H�SH��H��H�PH�BI�WH�CA�F(�o���M��D��=H��1�����H�S1�D��H��H�PH�B�#A�E(I�FL�p1�L�s���H�SD��H��A��H�PH�B�H�C1��g��H�SH�PH�BI�EL�h�L�k���DH�EM�wH��H���L��H�@D������T$A)Ņ��lH�EE1�H;��t@H���A��H�BH;��u�D������H�����H��I���ݶ��M�wI��I�H������,uI�~�|I�71�H��zH��H�����1�����D1�L��H���������A���,���fDI�GH�D$H�H�D$HH���NH�xHclj|$H9��H�D$H�@H���H�xHclj|$ H9����D$��D$(H�D$H�@H�����
H�����H�����H��I���׵��H��H�D$0�ʵ���D��H��H�D$8A��1����H�S1�D��H��H�PH�B�&H�C1��d��H�S�D$@H�PH�BH�CI���1ɺ$D��H��1��-��H�S1�H��H��H�PH�BI�WH�C���������A��D��1��,H������H�SM��D��H��H�PH�B�?H�C1����H�SH�PH�BH�CA�F(�$H��1�D��1����H�SH�=��LH�PH�BH�CH���T菓���D��H��I���1��U��H�SH��E1�A��D��H��H�PH�B��H�Cj�Q��H�SM��H�PH�B�?H�C1�^D��_H�����H�SH�PH�BH���LH�CA�F(H����H��E1�A�D��j�H������H�S1�D��H��H�PH�B�$H�C1�AYAZ���H�SD��H��A��H�PH�B�.H�C1��\��H�SD��H��L�|$0�H�PH�BM���?H�C1��-��H�S1�D��H��H�PH�B�$H�C1�A�G(���H�SH��E1�A��D��H��H�PH�B�qH�Cj���H�SD��H��H�PH�B�H�CHcD$8H�DH�D$hI��A[1�A_���H�SD��H��A��H�PH�B1�H�CH�D$H�x��H��E1�jH�‹�~��H�SM��D��H��H�PH�BH�CX1�Z�?�"��H�S�L$H�PH�BH�CA�F(����D$L�d$PI��E1�H�\$H��H�DH�D$(1ɺ$D��H��1�����I�T$M��D��I���H��I��H�PH�B�I�D$1����I�T$E1�D��H��A��H��H�PH�B��I�D$j���I�T$L��H�PH�BH�SI�D$_H��AX�L$�����?M��D��H��1�H�[���I�T$H�PH�BI�D$A�F(L9|$(����L��L�d$PH�D$H�@H����H����n1ɺ$D��H��1�����H�SD��H��LcD$�H�PH�BO�D�H�C1����H�SD��H��A��H�PH�B�(H�C1��d���H�SH��E1�A��D��H��H�PH�B�qH�Cj�`���H�SD��H��H�PH�B�H�CA_XL�D$X1�����H�SH��E1�A��D��H��H�PH�B�-H�Cj���H�SD��H��A�	�H�PH�BH�CX1�Z�)���H�SH��E1�A��D��H��H�PH�B��H�Cj蚿��H�SH��H�PH�BH�CY^H�D$H�ދL$H�P���?M��D��H��1��&���H�SH�PH�BH�CA�F(H�D$�L$ L�x���m1�L�d$I��L��A��1ɺ$D��H��1��ؿ��I�T$D��H��H�PH�B�I�D$�D$F�81�A��Mc�O�D蛿��I�T$D��H��A��H�PH�B�(I�D$1��l���I�T$E1�D��H��A��H��H�PH�B�+I�D$j�f���I�T$E1�D��A��H��H�PH�B��I�D$H�$�.���I�T$L��H��H�PH�BI�D$XZH�S�L$�g�?M��D��H��1�H�[蹾��I�T$H�PH�BI�D$A�F(D;|$ �����L��L�d$�#1�D��H��1��{���H�SD�T$@H�PH�BH�CE����A��D��1��H���@���H�SD��H��L�|$8�H�PH�BM���=H�C1�����H�SD��H��H�L$0A�H�PH�B�A�G(H�AH�H1�H�K��ҽ��H�SD��H��H�PH�B�H�CH���KL�1�衽��H�S�H�=�pH�PH�BH�C�M���D��H��I���1��f���H�SH��E1�A��D��H��H�PH�B��H�Cj�b���H�S1�D��H��H�PH�B�#I�FL�p1�L�sA[A]����H�SD�t$@H�PH�BH�CE���D�D��E1��H��1��ʼ��H�SH�t$8H�PH�BH�FH�p�H�s���k���I�7H��H��1�H��oH�����1����f�A��D��1��,H���S���H�SM��D��H��H�PH�B�?H�C1��)���H�SH�PH�BH�CA�F(�$H��1�D��1�����H�SH�=�LH�PH�BH�CH��� ����D��H��I���1����H�SH��E1�A��D��H��H�PH�B��H�Cj轺��H�SM��D��H��H�PH�B�?H�C1�AYAZ�_���H�SH�PH�BH�CA�F(H�|$�NL�D$�H��1��D���"���H�SH�|$H�PH�BH�C��Z���uH�������H���LH����	H��A�E1�D��j�H�����H�S1�D��H�PH�B�$H�C1�_H��AX袺��H�SD��H��A��H�PH�B�.H�C1��u���H�SD��H��L�D$ �H�PH�B�?H�C1��I���H�SH�PH�BH�CH�D$ �@(I�tAH�"�LH����
H���D��E1�jA�H���*���H�SH�PH�BH�CY^I�GH����
H�@H��H���WH�xf�H�t$pHDŽ$�)D$pHc�H�t$8H��$�H9����������D$0���
H�QH�AH�:H�@H��H�D$����=� �D$L�|$(L�d$HI��L�z1ɺ$D��H��1��-���H�SM��D��H��H�PH�B�H�C1�����H�SH�PH�BH��LH�CH����H��A�E1�D��j�H����H�SM��D��H��H�PH�BH�CX1�Z�?蘸��H�S1�D��H��H�PH�B�$H�C1�A�F(�o���M���D��H��$�H��H�PH�B�H��$�1��=���H��$�H�PH�B��H��$�H�D$(H�xtH���LH���H��A�E1�D��j�H������H��$�H��H�PH�BH��$�A[A_�L$H�T$H�t$8�C��?M��D��H��1�虷��H��$��D$H�PH�BH��$�I�D$A�F(L�`�D$9D$0��I�T$I�D$H�:H�@H��H�D$����=�����H�T$����H�T$H�2���1ɺ$D��H��1�L�L$����H�SH��H��D�|$H�PH�BI�VD��H�C�p�M��D��?H��1��ƶ��H�SD��H��H��H�PH�BH�CI�FA�E(H�P�+�L�L$D��H���=1�M��L�L$�w���H�SL�L$1�D��H��H�PH�B�#A�A(I�EL�h1�L�k�A���H�SE1�D��H��H�PH�B�H�C1�����H�SL�L$H�PH�BI�AL�H�L�K�M��1�D��H��1��ܵ��H�SH�PH�BH�C�����H�=�h��_e��H��H���L���H�D$xL�|$(L�d$HH��tH�SH�BH�PH��$�H�CI�GH��ts1�H����$D��H�����J���H�S�L$H��H��H�PH�BI�WH�C���?M��D��H��1��
���H�SH�PH�BH�CA�F(1ɺ#D��H��1����H�SD��H��A��H�PH�B�H�C1�跴��H�SD��H��L�|$@�H�PH�BM���=H�C1�舴��H�SD��H��H�L$ A�H�PH�B�A�G(H�AH�H1�H�K��I���H�SD��H��H�PH�B�H�CH�
�KL�1�����H�S�!H�=XpH�PH�BH�C�C���D��H��I���1��ݳ��H�SH��E1�A��D��H��H�PH�B��H�Cj�ٲ��H�SH��H�PH�B�#I�FL�p1�L�sY1�^D���{���H�SE1�D��H��H�PH�B�H�C1��Q���H�SH�PH�BI�GL�x�L�{����H�=����b��H��H��L�%����H�D$H�@H�D$ H��H����D$�D$ �D$(�
�H�����H��I�����H��H�D$0�ԡ���D$@H�D$8�V�f�L���xM��H������<_�x����p�L���dO��I�7H��nH��H��1�H�����1���f�L���(M��H���G�����<�<_�4�L���O��I�7H��nH��H��1�H���I��1��_�f��H�=^��a��H��H�եL�����D$��L���N��I�7H��kH��H��1�H������1���fD�#1�D��H��1�茱��H�SH�PH�BH�C����#1�D��H��1��\���H�SH�PH�BH�C�����H�=[d��`��H��H�-�L�8���H�=~)��`��H��H�%�L���H�=Y)�`��H��H���L��H�PH����H�BH�T$0H��H��?H�H��:��H�T$0D�d$H�D$I��H�\$(H��fDH�CL��H�p���H�CH�XH��u�D�l$H�\$(��@D�\$ E�����1ɺ$D��H��1��F���H�SH��E1�A��D��H��H�PH�B�qH�Cj�B���H�S�H�PH�B�H�C^1�D��_L�D$XH�����H�SH��E1�A��D��H��H�PH�B�-H�Cj���H�SD��H��H�PH�B�)H�C1�AXA�AY����H�S1�D��H��H�PH�B�#H�C1��[���H�SH�PH�BH�CH�D$L�x�A�D�H�=(���^��H��H��L���1ɺ$D��H��1����H�SH��E1�A��D��H��H�PH�B��H�Cj���H�SM��D��H��H�PH�B�?H�C1�AYAZ蚮��H�SH�PH�BH�CA�F(�����{���H�SH��E1�H��A��D��H�PH�B��H�Cj�w���H�SH�PH�BH�C_AX����H��H���]���'�1��8��H�D$�H���o���T~��@AWf�AVAUATUSH��H���H�t$8H�t$PH�T$0H�R�$1�dH�%(H��$�1�H�D$p)D$PH�D$H��$�H��$�H�D$`)D$pHDŽ$�)�$�HDŽ$�H�t$hH�D$H��$��	������H�CL���M����I� �M�v M�vM����H�D$0D�P E���MI� �PM�v I�.��/f��H��H��I���Q���H�=�LH���I��z��L��H���1���L�|$0L��Icw H�t6����Icw$L��H�t6�
���Icw(L��H�t6���Icw,L��H�t6����H�D$0L�xM�'L��H��������A�G H��A�o(I���D$A�G$�D$ A�G,�D$$�I���H��I���>���H�D$HH�D$XH���[H�|$8L�t$(M��A��H�WH�BH�PH�D$hH�GfDH������#1�D��H��H��$�H��H�EH�h1�H��$�詫��H��$�H�PH�BH��$�H�CH���H����H� ��H��H�@I�VH����H����D�J E��������H� ��H�@ H�xH��� ��H����H�D$@��y���H�=:�LH�����y��H�|$(H���W���I�FH���Hcp H�t6H�|$(�7���I�FH����Hcp$H�t6H�|$(����I�FH����Hcp(H�t6H�|$(���I�FH����Hcp,H�t6H�|$(�׃��H�D$@H�|$(H�t�Ã��1�H�tH�{H��@�(���H��$�H�L$@�H�@�@H�PH�H H�BH��$�I�FH��tD�x(1�1�D��H��1����H��$�H�PH�BH��$�f.�I�V�$H�t$H���\�������=D��M��H��1�芩��H��$�M�fH�PH�BH��$�A�E(M����I�4$1ɺ$H��1�H���G���H�t$1�H��H��$�H�PH�BL��H��$����I�4$�>1�I��H��H�����H��$�M�vH�PH�BH��$��E(M���UA�N I�E�~(�L$A�N$H��H��H�����L$ A�N,A��L$$�������H�L$H�#H��M��L�t$(H�AH�H1�H��$�1��n���H��$�H�PH�BH��$�H�CH���H���RH� �H��H�@H���4A� ���(H� ��H��H�xH�/�� ��H������S���H�=�LH������u��L��H���3���Icw L��H�t6�"���Icw$L��H�t6����Icw(L��H�t6����Icw,L��H�t6���H�t-L�����1�H�tH�CH�x@�(����A�w(1�H��H��$��H�@H�P�@H�h H�B1�H��$�1�����H��$�H�PH�BH��$�f.��$H�t$L��H��������5D1�H��$�dH3%(�H���[]A\A]A^A_�D�ku��I�7H�9cH��H��1�H�����1��@H�@ �����D�D$E���������H��H�xH��� ����H�GH�D$@����fDI�����H�=Ky��U��H��H�5�L����Hct$$H�t6�p����Ic�H�t6�B���Hct$ H�t6�����Hct$H�t6����L�t$(M��A�����I�6H��XH��1�H���������H�|$HM��L�t$(H�GH�xH�CH��$�H���H���_H� �$H��H�@H���AH�L$0�q ���1H� �H��H�xH��� ��H����H�ž�\~��H�=
�LH����r��L��H���<~��L�d$0L��Ict$ H�t6�%~��Ict$$L��H�t6�~��Ict$(L��H�t6�~��Ict$,L��H�t6��}��H�t-L����}��H�tL�{I�@�(����H��$�1�H���H�PH�@�@H�h H�B1�H��$�H�D$0�p(1�����H��$�H�PH�BH��$��L�|$0A��H�ߺI�H��H�D$1�H���£��H��$��H��H�PH�B�H��$�I�H�D$H��H���KH��L�1��}���H��$��H��A�H�PH�B�(H��$�I�H��H�D$1�H���<���H��E1�H��H��$�A��H�PH�B��H��$�I�H�D$H��jH���$���H��$�1�H��H�PH�BH��$�XI�Z�#H��H�D$1�H��躢��H��$�1�H��H�PH�B�#H��$�I�H��H�D$1�H��肢��H��$��$H�PH�BH��$�����H�D$0M���=H�0H��H��1��<���H��$�H�\$8H�PH�BH��$�H��$�H�CA�E(H��tH�PH�BH��$�H�CH�T$xH��tH�PH�BH��$�I�EL�hH�D$8L�h���E1��H����I�����M���=D���E���H�=G���'Q��H��H���L��H�D$0�1�H��H�H��H�$1�H���D���H��$�H�PH�BH��$�����H�@ ���H�@ ����H�o����H�@ ���H�o����H�@ ���H�=����P��H��H��L���H�=����pP��H��H�ޔL�����b��ff.��AWAVAUATUSH��xdH�%(H�D$h1�H������H�Ff�T$I��H�|$L�d$@H�H0H�D$ )D$ H�D$0H�L$H��H�D$8H���H�H�{�]f�L��)D$@)D$P�'���L��I������L�d$XH�k1�I��I�tI�~H��@�胁����H��H�UH��u�H�UH�@L�8H�PH�EH�CL�mI��̓��I�V�L��L��H�B0H�D$XH�I�EL�hL�l$X���H�D$XI�GL�xH�D$HL�|$XH��tH�T$8H�BH�D$HH�PH�D$XH�D$8H�[H�������I�tnI�VH�t$H�D$(H�r0H��tH�L$H�QH�BH�D$(H�PH�D$8H�AH�D$hdH3%(u-H��x[]A\A]A^A_���D$��u�I�u����`��DAVAUI��ATUH��SH��0L�"dH�%(H�D$(1�L��H����������d����������H�EH�XH��u铂��H�[H���������w�H�C(I���(L��D��L�0A�FD�@1�E�FMc�O�D���H�SH�XH�PH�CH�PH��tH�BA�F���#1�D��L��1�话��H�UH�PH�BH�E�H�L$(dH3%(�H��0[]A\A]A^�f�f�H��L��)$H�D$H�t$�����t�H�T$H�BH�RH�BH��tH�PH�D$H��tH�UH�BH�D$H�PH�D$H�E��d���fDA�n�D��L��A��1��֜��H�SH�XH�PH�CH�PH��tH�B�1�D��L��1�襜��H�SH�XH�PH�CH�PH������H�B����Z^���̀��D�H��tFATI��UH��SH��H�R�����u[]A\��H�SL��H�����[]��A\�����@�ff.�@AWAVM��AUI��ATUH��SH��H�I��H����I�����C�L��I��H�4I��E��Hc�H�>��I�T$E1�L��H��L��D�T$L�$���L�$D�T$M�AM�����?D��1��L��L�L$D�$�k���H�UL�L$M�d$D�$H�PH�BH�EI�A�@(M��u��A�M��t�5��I���D��L��1�����H�UH�PH�BH�EH��[]A\A]A^A_�f���f��1�D��1��Ϛ��H�UH��E1�A�H�PH�BH�EAV�+D��L��1�虚��H�UH�PH�BH�EXZH��[]A\A]A^A_���
�+���fD�����fD�
����fD����fD�C�H�I������d�OI�T$H���h1�H��tXL��E1�H��L��L�$����L�$�?1��D��L��M�A�Ι��H�UL�$H�PH�BH�EI�A�@(���&1ɺD��L��1�薙��H�UI�|$H�PH�BH�E�g��H��A�#I��AV����H���K��D��L�1��B���H�UI�|$H�PH�BH�E�Hg��H��A�%I��AV�d���@�1�D��1����H�UH��E1�A�H�PH�BH�EAV�+�������fD1ɺD��1�跘��H�UH�PH�BH�EI�D$H�x�f��H��A�	I��AV����D1ɺD��1��o���H�UI�|$H�PH�BH�E�uf��H��A�I��AV����1ɺD��1��/���H�UI�|$H�PH�BH�E�5f��H��A�
I��AV�Q����1ɺD��1����H�UI�|$H�PH�BH�E�e��H��A�I��AV�����1ɺ1�D��诗��H�UM�L$A�!H�PM�H�BH�E1���9��H��I	�AVO�L	����fDH�y�fI�T$E1�L��H��L��L�$�;���L�$�1��?D��L��M�A�,���L�$H�U1�H��L��H�PH�BI�T$H�EI�A�@(论��I�|$�e��I�|$H���G9��I�ك�H�H��H���AVL�@%����I�T$H�H������\uH�z�����f�H����I�T$�H�������I�T$L��E1�H��L��L�$�Z���L�$�1��?D��L��M�A�K���H�UL�$1�H��L��H�PH�BI�T$H�EI�A�@(�͹��I�|$�3d��H��A�I��AV�O���H�$����L�$I�A���f�L��L�L$D�$���L�L$D�$I��I�A�/���L��L�$�΄��L�$I�A�
���H�����L��L�$謄��L�$I�T$I�A�q���f.�AWI��AVI��AUATUH��SH��HL�ndH�%(H�D$81��0���I�~�iH���M���H��H���B���E1�1ҹ4H�5a����I���4!���H�=[HH�$H�EH�HPH�L$�"-��H�t$H���5d��H�4$E1�H��A�H��H���:���S,H�t$�����S,A�T$,���A�T$,I�UL�kH�SH�ZI�]I�WI9�HD�I�T$L�bH��H��H�D$(I�FM�gH�T$L��H��H��H�D$0H�D$H�T$ ��X���C(I��I�F�K,A�D$(�@(H�E�sx��H�EH�x��A��tRI�EH�E�>x��H�EL��H�x�<m��H�D$8dH3%(��H��H[]A\A]A^A_�f�I�����t�I�E�ƒ���t�H�€�I�}I�Ut���u�L���k^���t���fD��L��H�E��w��H�UH�B��@���H������4���H��H���B���$����T���AWH��AVAUI��ATUH��SH��H��(dH�%(H�D$1�H�9��I��M��L�v���I�$H��M��H��L��H�$H�D$�:���H�|$���1ɉ�L��1�苒��I�VL�pH�PI�FH�PH��tH�B1ɺ&��L��1��[���H�S1ɉ�L��H�PH�B�#H�C1��8���H�SH�PH�BH�T$H�BH�PH�$H�PH�BH�CH�t$dH34%(�uOH��([]A\A]A^A_�H�S��f���F,�����L��I���1�轑��H�SH�PH�BH�C��S��fDAWAVAUI��ATUH��SH��(L�bL�zH�L$I��taH��A���\I������?A�<$��������7H�3H��DL��H��1�H���o���1�H��([]A\A]A^A_�fD1�H�D$M��u,��1�L��H��L��蠴����t�M���M����M�wI�H������>u�I�~A��z��I�6�L��I��H�D$�1�H��藐��H�UL�T$H�PH�BH�EA��u�I�����t�L��L�����?��M�M��u�@I��u"H�L$H��tH�AH�QH�BH��tH�P��H�D$�H��(�[]A\A]A^A_�D�A�������D�������I����A����I��4��I�<$���y����L���x��H�3�L��I��I�Ĺ1�H��藏��H�UH�PH�BH�EA��u	I�����uuI�$�� u/������t3H�E�H�D$M���p�������I�|$����D�����fD�M�������9�������L��L���x>���{���������������DATI��UH��SH��H��dH�%(H�D$1�H�L$������t;LcD$I�4$�1��H��H��O�D�{���H�SH�PH�BH�C�H�|$dH3<%(u	H��[]A\��(P���H��SH��H��H������WtZH�H��tH��1�H���ű���[�fDH��A��1�H������H�SH�PH�BH�C1�[�fDH�	�KH�ֹ�H��L�1�讍��H�SH�PH�BH�C�[��ATI��UH��H��H�USH��H��H������Vt-��W����6t?1�H������������[]A\��H��H�u�����t�H�uE1�H����H��A��1�H�������H�SH�}H�PH�BH�C�	[��H�u�L��I���1�H���ʌ��H�SH�PH�BH�C[�]A\�H��1ɺ#1�H��蛌��H�SH�uL��H�PH��H�B�H�CH���KL�1��e���H�SH�uA�H�PH��H�BH�C�L��1��3���H�SH�}H�PH�BH�C�,���f.�AWI��AVM��AUATUH��SH��H��(L�"�L$L�L$I���{��A�D��H��I��H�EH���H�PH���H�HH�DH���H����I��H�D$1�菋��H�SD��H��M��H�PH�B�>H�C1��e���H�S1�H��H��H�PH�BI�WH�CA�E(�����uH��(1�[]A\A]A^A_�f.�L�D$�D��H��?1�����H�SD��H��A��H�PH�B�H�CH�D$�@(1��Ί��H�SD��H��L�D$�H�PH�B�H�C1�袊��H�SH�PH�B�T$H�C����I�EI�W1�H��L�hH��L�k�������&���M��D��H���?1��G���H�SD��H��E1��H�PH�B�H�C1�A�F(����H�SD��H��L�D$�H�PH�B�H�C1����H�SM��D��H��H�PH�B�=H�C1��‰��H�SH�PH�BH�C�A�F(H��([]A\A]A^A_�f��=M��D��H��1��v���H�SH�PH�BA�F(����AWM��AVI��AUL�-�"ATI��UH��SH��H��H�3H��H��������O��IcD�L�>���E1�H��H�KH��L���������H�3�?M���L��1�H���Ո��H�UH�PH�BH�EA�G(H�3�=H��M��L���1�袈��H�UH�PH�BH�EA�D$(H���[]A\A]A^A_���H��H��L���
�����u�1�H��[]A\A]A^A_��M��M��H��H��L����������H��[��]A\A]A^A_�M��M��1���fDM���=L��H���1����H�UH�PH�BH�E�A�G(H��[]A\A]A^A_�@L����v��H�SM��H��H��L��H�D$�6���L�L$���0���A�A(����H�EH�[I�AL�HL�M�(���@L���xv��H�SL��H��I��L��H�D$����������L�L$��1�H��H��L���Ȫ��������1����f�AWAVAUATUSH���H�ZH�odH�%(H��$�1�H�BH�$H�D$A��t	H�\$H�$H�D$`H�f�)D$PH�D$0�B )D$p�D$<�B$HDŽ$��D$H�B()�$��D$@�B,HDŽ$��D$LH���j��H�D$ H�GH�@H��tL� A�� ��I��A��L�d$ L�L$pH��L�|$PI��L��$�L��$�I��L��$�L�T$L�L$D�D$D�L$8L�|$h��t��H��I����t��I�VL��L��I��H��H�D$(�O����L$8H�$H��L�L$D���D���L���9���L�T$����H���i��H�CH�xA�E(���D���D���H��tH��� ��H����H�D$ ��L$8H�T$L��H���Ĩ������H���i��H�D$(�P(����H�D$XH��tI�L$H�AH�HH�D$hI�D$A�m(������*I�D$I�EL�hM�l$H�D$xH��tI�EL�hH��$�I�D$��f�1�H��$�dH3%(�\H���[]A\A]A^A_�DH�@H�D$ �&���f�D���D���H������H�t$ L�T$�_��D���L�T$D��������H�CH�xD���D���H����H�t$ ��^��H�D$(�P(����f�E1����,���E1�H�t$(I�D$H�FH�pI�t$A�u(����H�CH���H����H� �NH��H�@H���eH�L$H���o�I ���„��GH� ��H��H�xH�/�� �tH������z\���|$DH�e2H�=
�HE��P��H���Q��L��H���K\��L�l$M���}Icu L��H�t6�,\��Icu$L��H�t6�\��Icu(L��H�t6�
\��Icu,H�t6L���[��H�t-L����[��1�H�tH�CH�x@�(�d��H�@I�T$��@H�h H�PH�BI�D$H�D$H��t�@(�D$@�t$@1�1�H��1�����I�T$H�PH�BI�D$�H��$�H��tI�T$H�BH�PH��$�I�D$M���?���I�D$I�FL�p�M�t$�.���@H�GH�D$ �r���f.�H�SH���H���H� �?H�@ H�@H����D�\$<E����H� ��H��H�(��r:��H��H��I���Z���|$DH�ͲH�=��HE���N��H��� O��L��H���eZ��Hct$<L��H�t6�SZ��Hct$HL��H�t6�AZ��Hct$@L��H�t6�/Z��Hct$LL��H�t6�Z��E�U(H�D$(E�ҋP(����I�D$I�EL�hM�l$������H�S��I�D$E1�I�EL�hM�l$H���H���{H� ��H�@ H�@H���]H�$H���ND�I E���„��>H� �QH��H�xH�/�� �1H������IY���|$DH��H�=-/HE��M��H����M��L��H���Y��L�4$M���Icv L��H�t6�X��Icv$L��H�t6��X��Icv(L��H�t6��X��Icv,H�t6L����X��H�t-L���X��1�H�tH�C�(H�x@��`���t$@H�@I�T$��@H�h H�PH�BI�D$H�$H��t�p(1�1�H��1���~��I�T$H�PH�BI�D$@H�l$0H����m���=H�߹H��I��I��1����~��H��$��|$8H�PH�BH��$�A�F(��tnH�L$(H�D$x�I(H��tI�T$H�BH�PH��$�I�D$��������}���DH������H������H�@ �����#1ɉ�H��1��}��H��$�H�PH�BH��$��b����T$<�������D�D$<E�������H�@ �z���H�o����H�@ ���H�o���H�@ �g���Hct$<L��H�t6��V��Hct$HL��H�t6��V��Hct$@L��H�t6��V��Hct$LH�t6���Hct$<L��H�t6�V��Hct$HL��H�t6�V��Hct$@L��H�t6�V��Hct$LH�t6�z�����>��fDAWAVAUATUSH��(H���qI��H�:H��H��M��H������K����J�aM��E1���,t\�K��H�3L��H�V0H��1�A�H���Й���M��tA�M�1�H��L��A������H�[H���H�{H�Su�M��t�H�H������/u�H�zu�L�RM��t�I�H������,u�I�rL���H�H�qH������,��H���h���H�H������=�U���H�F<t#��E���H������9���H������*���H�AH�HH��u�I�B�L�$���к��x��D$Hc��[[�L$L�$E1�H�pI�H�t$�f�I�BH�t$L��D�$L�T$H�PI�BH�HIc�H��1�H���ޞ��L�T$D�$I�BA��L�PM��u�D9\$�����H�
��<H�5:*H�=�.���f.���L�!���H�RA��L��1��v���A��H�3L��M�� 1��I��H��A�A���z��H�UH�PH�BH�EM��tA�M�	A�H��(L��[]A\A]A^A_�H�RE1�E1��L��H�H�D$�A���L�sI��I�H������,��1�L��H��L���ǝ��M��t-A�M�ȃ�A�EH�CH�H������,����/�=H�H��H����H����J�H�D$H������,�&E1��� L��1��y��H�UH�31�L��H�PH��H�B�H�E1��wy��H�UH�PH�BH�E��f�H��H�PH��u�H�@H�H�����S����Mc�O�|����$f�I�V1�H��L��远��M�v�$M��u�Lc$H�3�L��1�H��O�D��x��H�UH�PH�BH�E���f�A�������H�x������ɁA�M����A��L��1�� �vx��H�UL��H�PH�BH�E�N��D�HMc�O�|	����H�
&�H�5~'H�=�+�	��ff.�AUI��ATI��UH��SH��H��HdH�%(H�D$81�H��tH�H������Mt6M��1�I��H��L��L������H�|$8dH3<%(��H��H[]A\A]ÐH�Rf�H�t$1�L�D$)D$H�t$(H�D$ �4����ML�D$1�H�SL��L��M��I���d���H�t$H��t��>H�V�O���w�~��H�R�K���v*H��u�I�T$H�rH�L$H�QH�T$(I�T$�<���@H��t֋
����w�����K���v�H�RH��u�u��~u��F�H��u����8��ff.�f���Hc�H��H���xH����AU��L�-�ATM���UH�-�SH���c��1�H���
@A�}I��H��W�H��H���O��M9�u�H��H��[]A\A]�E��D��H���AWL�=j"AVA�AUL�-� ATE1�USH��H���w�D��H�B8H9�r$�KH9�rL�LI�y(u A��8D��H�B8H9�s�H�H��txE1�s�A�AE�GC�L��t�1�1�f���H��w(L��H���HtI�Q(H�<�@��uH�����u3��Hc�I�TB���u��s�t���@H��[]A\A]A^A_ÐL�L$L�$�;��L�L$L�$���ff.�@��AWAVI��AUI��ATI��USH��(L�D$L�L$@H�t$dH�%(H��$1�����H�
T�KH�
�K1�H��H�D$����H�=��H�D$H�($��H���B��L��H���	���H�=((H�D$(�#��H���gB��L��H���l	���	H�=(H�D$ ��#��H���>B��I�<$f�HDŽ$�H��H��$�)�$�H�D$XH��$��� ��
H����Hclj�H9��I�F�������	Hǀ�DŽ$���H�=u'�?#��H���A��I�NL��H��H�y��_����tI�F�H�H�=F'�#��H���oA��I�NL��H��H�y(�_����tI�F�H�
H�='��"��H���7A��I�NL��H��H�y$�T_����tI�F�H�
H�=�&�"��H���@��I�NL��H��H�y �_����tI�F�H�H�=�&�_"��H����@��I�NL��H��H�y,��^����tI�F�H@�H�=�&L��$��"��H���@��H�t$L��H���^���D$P��t��$��D$P�
H�=R&��!��H���G@��H�t$L��H���g^���D$T��t��$��D$T�	H�=&�!��H���@��H�t$L��H���'^��DŽ$���t��$���$�H�D$(�u!H�����tH��ƒ����w�H�|$(��H�D$ H�Ń��;H�|$ ���H�=�%�!��H���n?��L��H���s��H��uI�F�H��H�=0��� ��H���<?��H��$�L��H���Y]��I�~���	�a��H�D$�D$ H��H�D$8H��$�H�D$(H��$�H�D$0�H�D$HcT$ H��� tNH����H9���H�D$8H�<��`��H��$�H�H�� t:H��KH�5�$H�81���:��f�H�D$H;P��H�D$H�@ �fDH�xu�H�@ H�(H��cLH����H9��qH9-�cL��H;-�cL��H;-�cL��H;-�cL�H;-vcL�g�D$A�
H��$�H� �H�zH��t-�L��� ��H����C��H��$�H��H� ��H��H�RH�t$L���^��H��H��$�H� ��H��H�PH�t$L����^��I��H��$�H� �_H��H�P H�t$L���^��I��H��$�H� �"H��H�x(����|$H�t$(���A�G$H��H��H��$H��$�L��H��L��$�H��$L��H��H��$�U3��H��H��t�E(�M,A�D$(A�G(I��S��I�FH�x����u9H�����t0H��ƒ���t#H�€�H�{H�t����f.�H�CI���R��I�FH��H�x�kG��H�D$0H��$�H��$��D$ ����@H�@ �����H�@ ����H�@ �_�����D$A�H�B H�xH������H��$�H�R ���f.��H�=^����H���w;���H�=N�H�aL����H���W;���H�=4H��`L����H���7;���H�=��H��`L���H���;���H�=��H��`L���H���:���H�=s�H�d`L�o��H����:��H;-p`LH�A`L��H;-T`L������D$A����fD��%��I��Q��I�VH�B������H��������H��L����������D�D$A��[����H�B �D$A�H�xH���U����s���fD�D$A�	������D$A������D$A���H�D$@H��� ��H�D$@H�@H�D$H�D$HH�=$_LH�@ H�D$0��H�|$�NE1�L���D$ M��L�|$@�fDH������(L�#D��������ك��L$(�����L��� ��I��A��Ic�D�d$I9���D��A����D$xH�CH��uH�C L�(H�=`^LH��$�L��������_H��$�H���9D$��H�D$�D$���L�D$�L$H��t$ �AN��H��$�H�PH�BH��$�I��L;t$�I�GI� uI�G J��������������H���	���D$ �@����;��I�L$L�l$0I��I�FI��DŽ$�L���1��(f�@��tjH�Hc�$�H��I�<ǍB��$�9�}:L��I�$ uI�T$ H�H�<�H9�u���$�I���B��$�9�|�L�l$0����fD��7H�����H���fDI�|$�g���fDH����������H��ƒ��������I�NH�L$8�� ��H�D$ H�@H�D$(H�D$(�D$0H��H�H9��� ����H�\$(�H�=�I��I�F�HA�$�`��H����6��I�|$L��H����T��I�VA�D$A+$H���H�L�<…�� H�D$ �K�L�t$`L�l$hI��H��H�pI��H�t$�VH�D$J�<�@��t%@���OH������B������4�G����SK��I�EA�D$L9��I��D��D��I� u�I�F �DH�G8H���=	��$��P�O ����H����H�D$�����H�=��G��H���5��H9���H�=���%��H���5��H9��<H�=�����H���k5��H9���H�=������H���I5��H9���H�=�����H���'5��H9��^H�=�����H���5��H9��bH�=���{��H����4��H9��{H�t$0H��H���:V��H��$�H�PH�BH��$��4���DL�c�u����H���KHct$�H��o�1�H�EtH�}H��@H����G��L�t$@H�D$A�D$�E1�H�D$8L�|$`M�l$H��L���G*��H�
I��H��$�H��$��D9�~<H�
M�AH�
�J�!��B�<wH�
���Hc�H�>���‰D$(H�Q�K�T$(H�5�H�81��/��@�1�H�EtH�}H��@�(�%G��H��$��H�@�XH�PH�@ H�BH��$�����H���00��������� �	H�D$(H�xHc�A��H9��9D��I�ND�������A��	ЈA��U��6��H�L$(DŽ$�H��1�H��E��~iL�l$0H�\$L�l$(D�|$I��f.�L��I�E uI�U H�H��L��H���S��Hc�$�H�D��A��$�D9�|�D�|$L�l$0I�FD�xH�h0��@��u!H�����tH�E�ƒ���t
H
H�EH�D$N�4�H��$����H�U9���Zf.�L9d$8�eM�����H�D$N�4�A��u�I�����t�L��H���*����L��A�����f��H��$�H�L$J���L����1H�L$J���I��� �dI�FH��E1�H��?H�H���H��I��H�D$h��H�
8KH��$�H�H����H�\$pH�\$0L�d$xE��M��H��$��Q@H����H9���H��L�4�A�T$H��H��A��Hc�H���]R��L��L��H��H������H��$�H�Ic�� u�H;p�yH�@ L�4��L���0H��H��$���H���T;��H�L$J�����I���rH�D$J���j���H�t$0L��H����Q��H�L$J���L���A����L��H�H�D$J���.���I�����H�=���H���0��L��H�������H�=�H�D$h�z��H����/��L��H������	H�=�I���S��H���/��L��H������H�=�H��$��'��H���/��L��H�����H�T$hH�D$pI��H��t
H���u�H�D$p�D$hI��tL�������D$hH��$��D$xH��tH������D$xI����I��� �&H����I��Ic�I9��H�Y�KE�O���Ic�D��$�H��P�H���x��H��H��$�D�8�D$h��������$�E����D��$�L��$�E1�I�vH��$�L��I��J��L��$�I��H��$�L��I���L��H� uH�C L�,(L���D�M�l.H��I9�u�H��$�L��$�L��$�H��$��L$hD��$�H��L��$��T$xH�t$p�!B��H�L$J��������E1�L�%��\�H�-�1�H���fDB�|mL��J-��H���-��L��H��I��H�����I���u�H��RL�������fD����I��H�D$HH�\$0H�5
��L��H�@ H�����H�����H�t$XL���"���I�F�L$P�H�L$T�����$����H��$dH3%(��H��([]A\A]A^A_��������� �g�I�~H�G8��������L�t$@L�|$`H��$����t$ L��H��I��H��{��H�D$HH�\$0L��H�5~��H�@ H�����H��������H����H����H������������T���A����I������A�������I�FH�هKH9��L���1��H�L$J�������H����������H��H���
�����H����H�D$(�o��D$xH�D$pDŽ$�HDŽ$��D$h�O���L���m��H���	���H��$�H�\$pL�d$xH��$�H��$�H�L$H�D$hJ���
����Q����D$0L�t$`L�l$h)Ѕ���Hc���T$�o.���T$H�D$`9T$0�P�D$(Hc�L�t$(H��L�l$0��I��)�H�lH�D$`H��H��H�,�H�D$ I��L�d$ H�pI��H�t$�T�H�D$J�(H�����H��� tgH����H��u:H�SH�:�4�I�K�/J�\-I��M9���I�$ u�I�D$ �f�H���1H�{H�CH�X��H�CH��uH�S �H���H�C H�8�ϋt$ H��H��1�I����x���P���H��$�@��tM�m���H�U��������L�d$ L�t$(L�l$0H�D$`M�|$I�D$H�D$8L�`8�����������M�|$��HDŽ$��D$h��������$�����A��uUD�����tYI����A������H�F�KH�����fDM�~����M����H�G�KH����H��}KH�����H��KH�����H�j}KH�5�H�81���$��H�
}KH��H�5�H�81��$���D$(1��s���H�KH��|���L���H���
��I���t���L���l*��H��|KH�5H�81��d$��H��|KH�T$(H�5�H�81��G$��H��|KH�T$ H�5�H�81��*$��H���*�����L���*��H��|KH��H�5�H�81��#��f.���1�H��trH�N��r���v��u`�����t/H���H;8tDH����H����H��H9x�t&H9�u�H���H�H��P���v���t�1��@����1�H��tRH�VH���H�R�����t9H���H;8t(H���Q�H���
H��H9x�tH9�u�1��fD��f���H�
�[���`E����H�
u\���PE����AWf�AVAUATUSH��H�t$dH�%(H�D$x1�H�G)D$P)D$`H����D$p�I��H9����H���H��H�,$�H��*K�(1��v��1�H�X I��H�D$@�3��H��uH������x�����I��H���61��L�cA��u
I������_1�1����H�C�uH������R���L�d$P�$H��H�CH�CL��H�C �,c���
H�5 H���c��L��H�sH���iL��H��KH��I�T$I�t$�D$PYARBH�H�D$T耩��H�C L�hI�}�� �8I�}�?��E1�I��I�EH�D$(H�D$?H�D$���H����H9��`H�D$(H�,��D$H@����D��@�����������H���/I����H��4��D�}�D$H�H��A�����D	��D$H�Wa��H�{ �a��D��A�����������H�t$H��D�L$�T$?���a��H��H���b��D�L$D��L��A��H�t6�h/��I�EIc�� ����I;U�nI�E �
���DH�������@H�������H���H����D�}�D$H�H��A�����D	��D$H�|`��H�{ �3`��D��A�������tCH���������H�E�ƃ����
����t$H@��@����	�f�H������	�@H�t$�T$?H�ߺD�L$��`��Mc�H��H��H��(KB��D�L$�����D�}�D$H�H��A�����D	��D$H�_��H�{ �s_��H�}��A���D$H���������	�D	��D$HH�E�ƃ����J����U���D�H���c_��H�{ �_���D$pE��~iA�D$�L�|$HL�,�I�FH�D$�7@H�D$H�,$H�<(H�������L��H�߉D$H��_��H�,$I9�tI� u�I�F ��fDH�{ D�d$h�^���D$\H�D$������D$`H�C H�H� uH�=	1�����H�z#H�Bv�foL$PH��foT$`P�T$p�P H�k�?��H�D$@H�@ H�D$@H�D$HH�D$@H��H�L$xdH3%(�<H�Ĉ[]A\A]A^A_�f.���A��D$HH��L�T$ �T$���	��D$H��]��H�{ �]��L�T$ �T$A��I��������������A��fD��A��D$HH�߈T$���	��D$H�y]��H�{ �0]���T$A�������A��;���H�D$H�|$HH�D$H�d���H�L$HH��� ��H�QHc�H9���T$`H�Ɖ�H����]���>���D�H��A���\��H�{ �\���A�������D$H�H��A������D$H�\��H�{ �]\���A���H�����A����H�����M���@H��L�������x����L��L���������H��L��������H��vKH�5kH�81��x��H��vKH�5�H�81��`������H���C!����AWAVI��AUATUSH��8dH�%(H��$(1�H�GH��$ H�X H�C8H�H�sH��$�HcG �RH��D�<H�{8D��$��b��H�{HH��L�4$I�FI��D��$ �SF��H�{HH��H��$��?F��H�{HH��H�D$@�D$\�*F��D��H�{HH��)��L$X�F��H�{HH��H��$��F��H�{HH��H�D$��E��H�{HH��H��$���E��H�{HH��H�D$0��E��H�{HH��H�D$�E��H�{HH��H�D$8�E��H�{HH��H��$��E��H�{HH��H��$��E��H�{HH��H��$��mE��H�{HH��H��$�YE��H�{HH��H�D$H�HE��H�{HH��H��$��4E��H�{HH��H��$� E��H�{HH��H��$�E��H�{HH��H�D$P�D��H�{HH��H�D$`��D��H�{HH��H�D$h��D��H�{HH��H�D$p��D��H�{HH��H�D$x�D��H�{HH��H��$��D��D��H�{HH��)���$��D��D��H�{HH��)���$��sD��H�{HH��H�D$ �bD��H�{HH��H��$�ND��H�{HH��H�D$�=D��D��H�{HH��)���$��%D��H�{HH��H��$��D��H�{HH��H��$��C��H�{HH��A)�D��$���C��H�{HH��H��$���C��H�{HH��H�D$(�C��H�{HH��I���C��H�{HH��I���C��H�{HH��I���C��H�{HH��H��$��C��H�L$L��$�E���A�}H��L��$�E���E�����A�ʉ΃�A���E�]��A������E�	��σ���D	��A�ʃ���E�����	�	�������������A��A�U��	�A��������	�΃�����	D	Ѓ�A�E���	�	�A�u�T$0H��$��D$ A�U�T$A�M(H�$A�U�T$8L��$�L��$�A���A�U H��$�H�AE�MA�U,�T$(E�E$A���Hǀ�H���Hǀ�H��t
�%��H�$H�AH��$�D���H���H�D$PA���D��I�EX�D$`A�E`�D$hA�Ed�D$pA�Eh�D$xA�El��$�A�Ep���D���XH��I�����$��P��$$�-I��H�D�H��H�D$8E��ttA�D$�I�n@H��L��$$H��I���H�D$0DH�{HL���LA��H��tH��H���I��H�EH�{HL��H��P�(A��H�{HL��E��A���E�H;l$0u�E����A�G�H�L$8L�l$8H��H�PI�l@L����K�&L��$$H�D$0f�H�{HL����@��H��tH��H���H��H�EH�{HL��E1��@��H�{HL��E�@��H�{HL��E�@�����x�I��Hc��[*H�ED�(E��~7�H�{HL���L@��L�mH��H���A��Ic�A��I�D�H�ED;8|�H��XH9l$0�I���L�l$8�L$M��������l$���Hc�H�����H��H���=H�D$HI�M0E1�����L�cH�� ��L��E1��G���L��Hc�pI����G��A�/A�wL��A+o�H�D$Hc���G��A�H�D$0��~1@H�T$Ic�L�$�I�$H��tH��H���G��I�$A��E;7|Ӆ�~/H�T$0�E�I��H�l��I�6H��I���a@��I�F�L9�u�H�D$I�GH�D$0I�G�D$A�UM�}8�L�t$ ��������	�A�E��$���$$D��H��H�D$�o��I��L��E���`	�h�M��L��$$H��I��H�D$DH�{HL��I���p>��H�{HL��A�F��`>��A�F�L;t$u�M�}x��$��E1�H�|$��$$����L�d$H�,�I��I��H���H�{HH�t$H���>��A�D�}�I9�u�L�|$(M���E1�E��~W��$�Ic�H�{H+�$��F��I��I��A�G�I�l��I�$H��tH��H���lE��I�$I��L9�uߋD$M��������|$����j	L�t$L��$$D������Hc��0���L�l$I��I�Nj�$�E�7E1���$$H�CH�D$ H�C0D��H�D$@I�}HL��݃�H���=��I�}HL��L�H�D$��<��I�}HL��E��<��I�}HL��E��<��I�}HL��E��<��I�}HL��E�<��HcT$H�t$�E H�|$ �,	H�EA;�w���L��L�l$L�t$ M���L�|$Hc�$�L��L����Hc�$�L��L��I�����L�|$@�I����D$XD����$$����H�$I��H�J���H���H�L$xH��H�t$0H��H�H�D$8H���H�D$pE���6H��L��$$L��$�1�H��M��I��H�L$(f.�H�{HL��I�,�D�x�;��H�5�H�
>��FH�D$`H�E�����L��Hу�A�D$��H�L$hH�t$<���H�]���Hc�H�>��@H�|$u(H�|$(t I�$�ƒ���tH
I�$�H�{HL����:��H�t$pD��H�@H��I�֋D$H�t$hA���PHc�����A��A�T$<�j���H�{HD��L��I�,��:���=f.�H�{HL���:��H�t$H�|$ H���D��I�֨u�H������{���H��L�����H�|$�d���H�|$(�X���I�$�ƒ����F���H
I�$�7����H�{HL���:��H�{HL��H�D$H��9��H�SH��$$�LH*H��lK��$$H�H�l$PH���H����HcL$HH�t$PH�IH�,�Hc�H�}H��$��%������D��I�,�����H�{HL���t9��D��I�,�H��tH��H���-A��H�E�t���@H�SH��$$;B��H��H��$$�<��H�T$8H��H��XH�T$8D��I���(����H�{HL����8��H��H���9:��D��I�֨������n���DH�{HL����8��D��I�,�H��tH��H���}@��H�����H�E���@H�L$0H��H��PH�L$0�n���f��T$D����H�t$`H�
z��19���D9|$\�����H�D$xL��$�L�pD�xD9|$@�A�D$X�$�;�$$�HL�4$L�����L����4��H��$�H���G9��H�ŨuH�������H�ugKH�5��H�81��<��@D����E���H�IgKH�5$�H�81����H�CH��$�H��H��+�$H0���H������1����f�H��ƒ����?���b����� �}H����H����H�EH�8����I��H�E �gH��H�UH��t/����H������7������eH�����H��H�<$L���f.H��$H���8��H����H���t��I�EH��7H��$H����7��H����H���F��I�EP���H�$H�H�AH��H%����H���u"H������t����tH����H��H�<$�}H��$�H�C8H��$(dH3%(��H��8[]A\A]A^A_�f.�I�EP�i���I�EH�+���H�}�]H�E ���@H�m ����H�CE1�H�D$ H�C0H�D$���H���������H�<$H�������H����������H�<$H��������@M�}xH�|$���$���$$����I�������H������H��I���+���DH�L$P�T$HH�5�H��iKL��$�H�81��?	���H��iKH�5��H�81�� 	���/��H�D$xL�p�@�`���H�!dKH�5��H�81������
��H�TiKM��H�5�H�81�����H��cKH�5��H�81���������Ѓ�����H��������H��4u������t$H�=��1����H�
���.'H�53�H�=d����H�
d��/'H�5�H�=����H���3�����.�����$������������������f����t;AVAULc�ATI��L��UH��SH��H��H�?���H��tH��[]A\A]A^�D1��DE1�1�1�1���U��I�ƨuH�����tH��у���t
H��H�I�$A�^ L��H�D$I�VH�}L�����L�����H�D$H��[]A\A]A^�D��UH��KH���PS1�H��(dH�%(H�D$1���H��H�X H��H�D$H���	Y��1�H�s0H�{���H�T$H�T$H�T$H�L$dH3%(uH��([]�����ff.�@��ATH�CKI��PUH��1�SH�� dH�%(H�D$1��k�L��H��H�X H��H�D$H���V��1�H�s0H�{�R���H�T$H�T$H�T$H�L$dH3%(u	H�� []A\����D��UH��
KH���PS1�H��(dH�%(H�D$1����H��H�X H��H�D$H����W��H��p�xH{�G��H�T$H�T$H�T$H�L$dH3%(uH��([]����f.�f�@��t*@��uD������tZH��td@��tnH�G�f�H�����u�H��t!H��u�H�]fKH�ÐH��]KH��DH��cKH��DH��bKH��DH�Q_KH��DH��aKH��D��H�G����H�G����1��f���H��������fD��H�wH��.ff.�@AVA��AUI��ATI��USH�/�]�C�H�8���W��u[1�]A\A]A^�f�A��.���_uKE��u�H��A�H�iI�m�Q�WH�Ӏ�tՀ�_t�I�$E1��H�8I�$I�M��f�E��tH���I�mH���}_t�[�]A\A]A^�@��H�
��H������@�������f���H�wH����ff.�@��USH��H������H�����tH��Ѓ���urH���� uLH�SH��umH�C H�H�5�7LH���̿��H� t;H��H�SH�5�7LH��謿��H��H��[]�f�H����H��uH�C�DH�[ �þH�����H�cKH�5��H�81��}��ff.�f���USH��H��H�wH����H��H��H������H��H��[]�ff.���SH��H�� H�dH�%(H�D$1�����tGH�H�{H�$����tCH�H��H�D$�~���H�T$dH3%(H�Du#H�� [�H������fDH�������!����ATA��UH��SH�H���8.ukH�EH��D��H���.H�H�E�
�����t9H���T�H�EH��D��H���/H�H�E�������f.�H�m[]A\�fD�����t�H��<.t��ƒ�߀�EuKH�U�H�H�EH�PH�UH���JՁ�u�PH�H�EH��D��H���b�����t�H��</�P���[�]A\�fD@��t
@����S��H���H����tA@��t(�؃���t1��u	H�����uXH�����H��[�f�H�����tϋ����u��H�H���D$�:��L$1��f.���E�H��[�D�����u��@1�H9����ff.�@��H������H������H������UH��SH��H��H��H�5v4L�Q���H�C�uH�����uAH�5R4LH���2���H�C�uH�����uH�H��H��[]ÐH��H���e���H��H���U����H����.���H�@H�@H�H���f���SH��H��H�@��ujH�����ta�������������tS��tN�H�{@��uUH�����tL������~������t>��t9�H��[�������u��юH�{H��@��t�@������u�H�t$謎H�t$H��H��[�j�f.�H�w�h����H��f.���SH�wH��@��un@��t8�������H��2LE1�1�H�=�)L����H��t<�[�DH�����t������
t��������tz��u�DH�s@��u-@��u0H�����t'�����
t�����tS��tN��u�[�f������t6H�2LE1�1�H�=S)L����H���X�����f�H����A���H������fDH��H�t$@��ua@��t3������taL�D$H�����
H�=H,L���H���fDH�����tċ����
t������t��t��u��H�t$�yH��ÐH�t$��4��@����t	H��?H��Ð@��uBH�����tYH��у���
��������t(���������!�������u�H��H9�u�fD������u�H���f�H��H��?H)�H	�1�H��H�|$�f/D$�����H��H��
H�����f�f�1�f/G��ÐH�G�tH��?�H�H��
H�����@��SH�wH��@��u~@��t@�������H�0LE1�1�H�=�&L�"���H�����������uB1�[�fDH�����t������
t%�������������u�f�H�s@��u-@��u0H�����t'�����
t�����tc��t^��u�[�f������tFH�_/LE1�1�H�=C&L�n���H�����������u�1��G����H����-���H�����fD��H������tz@��u<H�����t3�����tA@��u)��
t$������[��H���fD@��t�1�H����H���@1�f�f.G��E�H���DH���H9�t�H���f��H��H��?H)кH	�1�H��H�|$�~D$f.���E���1�H����p�����@��u}H��@��t3������t!H�.LE1�1�H��H�=�*L����H����H���H�����tċ����
t�����tۃ�tփ�tу�u�H���������@��UH��SH��H��dH�%(H�D$1���u_@�����������H�xVKH�0H���$H��tPH��H���#FH�L$dH3%(�wH��[]�DH��PKH�0H����H��H��t�H��uH���f�H��H���%9�H������^����E����
t�������S����E�����D����E������I���+H��H�=�*LH�$茻���7�����+H�=�+L�?�����J�����������@��u�H�����u����+H�=�*L���������@���q���H������U����_���H��VKH�0H��uH�����H��H����-����+H�=#*L�����u������P�S�/H����H��umH�5��H������H��tI1�H��诹��H�0fH~�H9�tcfH~�H��<������t7H��H��u@[�fDH��1Ҿ
[鰯��H��1�[�%�DfH~�[H��H��H���D[����f���H��@��t"H��?���H��h!��IHD�H���@@��uBH�����taH��ƒ���
��������t(������������������u�H��H9�u���������u�H���f�H��H��?H)�H	�H��H�|$1�f/D$@���4���f�H��
H��H��������Df�f/G@��@������f�H�@����H�?H��
H�������ff.�@��SH��H���������@��u@H�����t7�������@��u)��
t$����D������@@��t�1�H��������H�{@��uH�����t
�����tH��E1�1ɺ�H�=�!L[�"���f�1��Y��H�0fH~�H9�t5fH~�H��<������t'H��H��u[�1�H����p����[�ʬ��fH~�[H��H��H���H��LKH��H�5��H�81���ff.����SH��H���������@��u@H�����t7�������@��u)��
t$��tyf������@@��t�1�H������tYH�{@��uH�����t
�����t H��E1�1ɺ�H�=|L[���fD1Ҿ
[�C���1�H����H��KKH��H�5s�H�81���f���SH��H�������tv@��u4H�����t+�����t]@��u!��
t��tA�������@@��t�1�H������t)H�sE1�1ɺ
H�=L[�"���f�1�H�����H�%KKH��H�5��H�81��	�f���H��(������H�z��������I��@��uRH�����tI�����t{@��u?��
t:��t_��H�T$L�D$�L$����H�T$L�D$�L$�@��t�1�H������t)H�rH�"&LH��(H�=�L�B���f�1�H�����H�EJKH�5�H�81��,�1������ATI��USH��H��A��u
H������H��PKH��H��H�0�v�������uEM��u
H��������؃���t)H��%LE1�1�H��H�=g"L蒴��H��������@��tv@���$������FH����@���BH�}��d���H�XM��u
H�������H�H��H��H�@H��[]A\��@H�����u�H����H��u�H�1QKH�8�@��������H��H���f.������
�.����ڃ���� ���������������������H�{�P����������fDH��IKH�8�����H��MKH�8�����H�HKH�8���H��H��H�D$�`��H�D$���fDH�!MKH�8�����H�)LKH�8���H������H��H������H��H�5��H��H�rGKH�81��������H���������Gf.���@��uUH�����tLH��ƒ�����@������
����u)fH~�@����H�H��
H�����@@��uz�E��uV�H����H��H9�t�H���H��?H)�H��H��H	�H��H�D$�~D$f.�zCfP��t�H�$JKH�5�"LH�8H��顯���H��?H������@H��
H�����k���H��H����@��t*H��?��tH��h!��I����f.�@��u:H�����t1H�7�����
tL������tb��t]��t]��u�f��fD������t>H�"LH��E1�1�H�=�L����H��
H��H�������`����m���D����H���z��u
�H���H��h!��I����AUATU��SH��H��dH�%(H�D$1�����@��tnA��A��A���]���f���H��������H�rIKH�0�H�����*H�=�L���������H��H��tg�����
u]DH��DKH�0H�����H��tH����H��H���U7H�L$dH3%(��H��[]A\A]�fDA��A��A���H���&�����tl�������H�sH���2���H��t{I���*H��H�=DLH�$�K����q���fD�*H�=�L������2������f�L�-!IKI�uH��upH��tH��H���O;�%���f.������fDH�qJKH�0H����H��t�H��H���I����H�!EKH�0�Y�����*H�=�L�_������w������|H���������H��t*H�����H��KKH�0�
���f�H�CKH�0�����H��HKH�0����*H�=�L�����K��������H��H���c�����u�A�������I�u�q���ff.���AVAUATUSH��H��H�odH�%(H�D$1�A��A��A����@��tsA��A����@����E����H����@����H��FKH�0@H�����*H�=�L���������f�H��H���#�E����
�@L�%�AKI�4$H���H��tH����H��H���a4H��H�[A��A��A����L�%�AKI�4$H���FH���,H���QH��H���4H��A����(����H������������
�A��A������������������f.�H��I���+H�=	LH�,$����H���������H��H��t�����
����A��A���JH���9������3������mH�sH����H���>H��I���*H�=oLH�$�v���H��A��������L�%)@KI�4$H����+H�=PL��������A��A���c�����H��������������f.�A��A���2H�����E������E������H�uH���g���H����H��I���*H�=�LH�,$蔪��H�[H��A��A��A��������x�����*H�=�L�/����������A��A�������RE���_H���]���w���H�=CKH�0f.�H���q����*H�=KL�Ƴ�����N����S���f��*H�=DL蟳������������f�L�%�CKI�4$H���DH����H��H����5H������L�%�CKI�4$H����H��tH��H���5H������L�%!>KA��I�4$H�����H����H��tH��H���N&H��H�L$dH3%(H����H��[]A\A]A^��H�[�A��A��A���
�������f�A��A�������H��BKH�0H����H��t�H��H���n2H���{���fDH���m����A��/���DH�DKH�0H����H���8���H��H���8H���%���H��CKH�0H����H������H��H���CH���|���H��CKH�0H����H������H��H����BH������H�Q>KH�0�q����H�A>KH�0�����*H�=�L�������3������lH����������H����H������H��DKH�0�^���fD�*H�=lL�'����������@���/H������^����H��tzH���V���H�bDKH�0���f��+H�=�L�ϰ�����H����������H�������������@L�%�;KI�4$�����L�%�;KI�4$���H�9AKH�0�A����H�)AKH�0����+H�=�L�P����������C����*H�=L�2������]�������*H�=�L�����������������E���Q���A�����I�4$�m���E���M���A�������I�4$�3���H��H�����H��H������f�AVAUATA��UH��SH��H��dH�%(H�D$1�A��um@��tOA��A��A��������E���lH�������H��>KH�0��f.�H��H��tw�����
umDH�:KH�0H�����H��t H����H��H��t
H����H��H�L$dH3%(�H��[]A\A]A^�f�A��A��A����H������������������H�sH����H��t�I���*H��H�=pLH�,$�w����h���f��*H�=�L�/������"������f�H��@���9���@���"���H����������U����
���������H��H���+���L�5>KI�6H���}H������H��H���(0�����*H�=L菭������������f�H�A?KH�0H����H�������H��H���x>�y���H��9KH�0������*H�=tL�/������j�����utH����������DH��t*H�������H�r@KH�0�|���f�H��7KH�0�k����H��=KH�0�[����*H�=�L������K����9����n��E��u�A���C���I�6�!���H��H�����ff.���UH��SH��H��(H�dH�%(H�D$1��������V@����H�������������@������
������D�螯����t}H�3>KH��H�0�����tg����H�����tz����������H�uL�D$���H�=�LH�\$�ǡ���D@��t�1�H������u��H�L$dH3%(�bH��([]�D��u��؃���t�H�jLE1�1�H��H�=3L�^���H������t��d����1�f�f.G��E��|���DH��H9����H���f��H��H��?H)кH	�1�H��H�|$�~D$f.���E��%���fD�����
�����ڃ������������������������ ���H�{�`������.���fD1�H�������H�{�7����k���H�CH�uL�D$���H�=QLH�D$�7���������ff.�f���ATI��UH��SH��H��A��uH�����t�������H��;KH��H�0�|���ڃ��������H�}��@���?����t/@����H��������������f.����H���D$����L$1��f.���E������t
@���B�؃�����M�����������@��u
H�������H��H���o�������H��1�[]A\�@M����H������������
��ڃ�����������������H�{�b�����f.�H������H���������:���DH���x��H���D$�j���L$1��f.���E…��4���H���[]A\�D�E�����������1�H9������؃���t&H��LE1�1�H��H�=�L�˝��H�������f�H�}�����D�؃����"���M��uH�����t���������H������@1�H9������q���H�}�/�����,����[���f�H�L�f@��t
A����������tf@��uH�����t
�����tMD�����tBA��uI�����tA�$����t'L���W��������H�sH�}�B������D����L���D$�����L$1��f.���E��1�I9����f�AVAUATA��UH��SH��H�� dH�%(H�D$1����������������M@����E��A����H��0KH�0H���sA�H��t'H���}I��H��tI��H�����H�|$dH3<%(L����H�� []A\A]A^�@��u����y���������n@���a���H������T����E�����E����Ef.��6���fP�E��H����H���HE�A����������H��H��H���-�����
��A��E1�A���F������;������
I��H�sH����H����L��L�D$��*H�=�LH�l$轚��I������D�*H�=L�o������t���A��A��������E����H����I�܀��j���H�z3KH�0�_���f�H��H��t�������E��A�����������H��H���!I������DA��A��t.H���TH����H�,7KE1�H�0���f�E1�L�5�3KI�6H���2I��H�������H��H����%I�����f.�I��@�������@���u���H������h����E����
�Y����h�����Gf.������H���fP��H���HE�A�E1��H���D�*H�=TL�Ϣ�����
�������f�H��4KH�0H���uI��H�����H��H���3I������DH�)/KA�H�0���H�)3KA�H�0����*H�=�L�G�������������!H������Q����V���@E1������H��H9���H��H��?H)�H��H��H	�H��H�D$�~D$�}���H��H9�taH���H��?H)�H��H��H	�H��H�D$�~D$�y���@H��,KI��H�0���fDH����V���f�H����^���H������^����q�����*H�=L�'������r����P�������E��u�A�������I�6I���8���ff.�AWAVAUI��ATI��UH��SH��H��HL�D$L�L$dH�%(H�D$81��������>@����H��������������@������
t������H�������D$D�����uqH���$I9��0L��f��H��?H)�L��H��H	�H��H�$�~$f.�����t�1�H�����D$D�����t�A����I�������A�E������A������
�����H�L���3����$�������H��A�H9��NH��f��E1�H��?H)�H��H��H	�H��H�D$ �~D$ �f.�A��DE��	@A���v���1�I�����$������z���@����H��������E�����@������
�����Jf.��H���C���A��D�������H��A�I9���L��f��E1�H��?H)�L��H��H	�H��H�D$ �~D$ �f.�A��DE��@���v���E1�H��A��D������{���A��uNI�����tEA�$�����
A��u5��
t0���9f��L���c���A���fDA��t�E1�I��A�Nj$D��L��L���6����T$D��H��H��H�D$ ����L�D$ I��I��ui�����Q�����I���A����I�qH��tV�-H�=�LL�L$(L�D$ ����L�D$ L�L$(��u-�L�D$0L��L�D$0��-H�=JL����I��H�D$�$H��D��L��L��i����T$L��H��D��H���T���H��A�ĨtZH��'KH�0H���GH���
H����H�D$H�H�D$8dH3%(�tH��H[]A\A]A^A_�����H������������
t�A��A����������������� H��L�D$0��+H�=LH�l$0����H���Z���DH��H���-H���B���DH������s���H����H���`���H�/KH�0�U���f�A��A���z���H��+KH�0H���OH�����H��H���ZH������f��+H�=�L�?����������A��A��t�������H������������f�H�	&KH�0�����f�fA.E�¸��D‰$����E1�f�fA.D$A��DE�����E1�f�f.EA��DE����f�f�f.G�¸��D‰D$���H������H���D$H9��g���H���f��H��?H)�H��H��H	�H��H�$�~$f.��D�+H�=�K������������������H������������@H��+KH�0H����H���H���H��H����H���5����H��(KH�0�d����E1�I�|$A�����fD1�H�{���D$���DE1�H�}A���D����1�I�}���$�<���fDH�q)KH�0���H��%KH�0����H��)KH�0�����+H�=��K�������#���������ff.���@��uH�����t
�����t1��H�G���H�����uH���+H����H�PH�F����6��������H����<�H�@H9�u�H�G��>����ƒ�����H���<�CH�PH�F�����Y��������H����<��H�@H9�����H���v���¸��u1�H���@�ub�ƒ�����H���<����H��&KH����DH���������H���
H������H��*KH����H�S"KH����H�D"KH�����H������D���H���'H���1���H��*KH��&���H���������H����H������H�`*KH����H�'KH��t���H�'KH��-���H�3*KH�����H��!KH����H��!KH��u���H�6#KH��)���H�'#KH����H�0'KH�����H�!'KH����H��%KH����H�{&KH��S���H�l&KH�����H��"KH����H��"KH��&���H��&KH�����H��&KH�����H�9%KH����H�*%KH����f�AWAVAUI��ATI��UA��H��SH��H��(dH�%(H�D$1��Ѓ���t[M��u3H�����t*�����tC��u$��
t����1�H�{��������1�H������t
�4�KH���ulI��A����M���H�����t������@�L���S���H�hM���.H������9H�XM���@H�H�L$dH3%(��H��([]A\A]A^A_�fDH�����t�E����t<M���d����L���΄��H�h���H����������fDM���ML�uE��A����A����I�����t{A�����
��A��A��tpA�����teA�������H��%KH�0H����H���>H�]�L������H�X����M��A����A��A���jH��#KH�0H����M��A��H��tVL��H���wI��I��A���?H�aKH�0H����I���H����L��H���I��I��A��H�]�L���k���H�X��u
H�������L�pM��� ���I���������H��L��H�D$�;���H�D$����L�=�KL�cI�7H����H�[H��twH��L�D$��-H�=��KH�\$輈���L��H���̂��H�h@��t}f�L�`A�������I������}���H��L��H�D$襩��H�D$�c���M���/H�����uH����H���aH�uH���g�L���I���H�hH������x���H��H��H�D$�8���H�D$�^���fDH�XH���������H��H��H�D$����H�D$����L��H���I���M��A���P���@�+H�=��K�g������
���A��A�������A��uI������,���fDL��L�D$��+H�=?�KH�\$�E���I��I��A������fD@���������gH���l@���}H�uH�����L���
���H�h�A����H��H��H�D$����H�D$���fD�+H�=d�K���������A���5���I������Y����#���H��H��H�D$訧��H�D$�9���fDI�������+H�=d�K�������^���L�D$��+�H�=�KL�d$�"���I���1���f.�I�7������-H�=��K迏����������H�##KH�0H�������-H�=S�K莏�������������H��KH�0���H�KH�0���H� KH�0�H��KH�0�x����+H�=��K�7������J�����L�p�6����ܸ���L���_��H�hH�X�*���H��������������������L�eL�{E��A����A����I������{A�$����
��A��A���kA�$�����[A�$������L��L�D$��+H�=��KL�|$芄��I��L�sH�]I����H��L�D$��-H�=��KL�t$�R����L��H���b~��H�X�������H����������H��H��H�D$�H���H�D$�n���fDH��KH�0H���I���CI���Z���L��L���I���G���fD��������؃�����H��������H�sH�����L���}��H�X����f�A��A�������H�cKH�0H���I�������L��L���

I�����f�H�����uH���3H����H�sH�����L���}��H�X�����+H�=��K诌�������A��A���g���A������I������������DM������H�iKH�0������-H�=�K�O�����������H��KH�0H�������-H�=��K�������?���������+H�=��K���������A���p���I������S����^���H�	KH�0�h���H�jKH�0�Y���H�sKH�0�s���H�lKH�0H��u,I���;���L��L����I���(���H��KH�0�����+H�=��K�_�����u�����fD��USH��H��H�@����@���S��������H��E1�H�=��K1ɺ��4���H�{H��@��ti��
H��������U�؃����oH���u����H�{H��H��[]���f.�諶
H��H�{@��u�@��t`�������JH��E1�1ɺ�H�=�K葀��H����o���H�����u�H����H��u�H��KH�8�v���fDH�����t������
�����������������������n�������H�����H���������������
����������ts��tn�������������H������H��KH��H�8H��[]��H�)KH�8����H��KH�8����H��KH�8�����{�
H������k�
H���4���H�iKH�8�Y����l�H�������_�H���_����@��u*@��t,������tZH��E1�1ɺ�H�=f�K��~����˴
H�����tˋ����
t�����t��t��t��u��w�����
���fD��SH��H�@��uf@�����������H����E1�1�H�=��K�]~��H�sH���u:H�����uWH����H��uHH�zKH�8�@D��
H��H�s��t��ur�؃�����H��������H�{[����H������O��������
t�������t_��tZ��tt���6����g��H���f�H�iK[H�8��H�KH�8�@H��KH�8����H��KH�8�t�����k�
H���3���H�iKH�8�T����l�H������@AWAVAUA��ATA��I��UH��SH��H��(A������@����H�������������A�����
�������H���#��������������I��A����@�����H�������unM����H���t�H��H���y��I��H����H��H���c��H��(L��L��[H��]A\A]A^A_�'����X���1�H�������\����5��K��tH��(H��[]A\A]A^A_��L���u��H�X��u
H�������H��H�H��H�H�H����������E�����@������
�������H�}�^���D�E���������H���P�H��H���U��I�ŋE��������H�}�:�H�}I����H�����L��H�����H�}I����H�}I����L��H�����L��H��H�cKH�8���H���p���1�H�����1���f.�1�f�f.F��E��v���Df�f.E��H��������������H��H9�uI�=�K���>����L���Nt��H�X�`���DH��H��H�D$�@���H�D$�A���fDH��f��H��?H)�H��H��H	кH��H�D$�~D$1�f.���E����fD1�H�{�����f�������$���D�Mf.
��}f.
���f.
��A���a��uH�����t�������f(��L$����L$H�0fH~�H9���fH~�H��<��������H��H���iH���L$����L$I��f(��Å��H�0fH~�H9��$fH~�H��<�������aH��H����H�����I�Ƌ/�K��tL��L���0������[���L��M���hr��A��H��H��L�pA��u
I�������L�mM��u
I������oH�M����@�}���H�������
��KH������L����q��H��H�X��u
H������)H��H��H�E��H��H9������H��H��H��?H)�H	�H��H�l$�~L$f.
t�����M��������H�}�_�H�}I�����L��H���H��H�}I�����H�}I��� �L��H���%��L��H��H��KH�8���H��H�����I�����D�c���L��I��I����p��A��H��H��H�EH���{���L��H���Ǘ�����I��A�H��I��L��H��街���E����Sf(�H�|$H�t$�T$�.����T$�D$H�0�Y��YT$fH~�H9���fH~�H��<��������H��H�������K��tf�f.���E„�����H�0fH~�H9�t!fH~�H��<��������H�������f(�I���j��I���/����j��H������L$�oj���L$H���~��������H���3���H���y����T$�@j���T$H���=���H��H��H��H�����H��H��H��H���'���H��H��H��H������H��f��H9��x���H�ڸH��H��?H)�H	�H��H�D$�~T$�N���H��I��I��I��I���F���ff.���AVAUI��ATI��U��SH�� dH�%(H�D$1��c��H�D$�������BI�$����1�M�d$���A�މ�A��H���[E��u.���H��������������~�A��u2A��� I������A�$D��������aDH��L��L���r���H��H�L$dH3%(H����H�� []A\A]A^��Ӭ�����QH�D$I�$������H��t
H�|$蚳��A�މ�A��E���������������K���v����L���(m��H�X����������H��KH��H�0�z�������H��芵����������DD����������H��KL��H�0�7�������L���G����������f.��
*�K�������L���ul��I��H�X����H��H�@H����I��I�����������t��w��H��roH�
KH��H�0蒢����tH��覴�����n���H�oKH�5'�H�81��֭��fDH�|$�������I��I��M��unL���[�������u��O�K������L���k��I��H�X�ǃ��|�����H���q����h������������H����������H��L��H�D$L���T���H�D$����H�|$t
H�|$�X��������g���肤��f���AVAUI��ATA��UH��SH��dH�%(H�D$1��¾��H�$����E����H�]A����1�H�mA���ZA��A��A��H���E��u3���*H�������A����A����f.���@��u0@���.H������!�U���������H��H��L����H�L$dH3%(��H��[]A\A]A^�f��+���E����H�$H�]A������H��tH����A��A��A��E��uD����H��������A����A��t������H�������>���fDA��A����H�;KH��H�0�������H���б���������rfD�������H��
KH��H�0肟����tJH��薱���������8@A��A���j���H��
KH��H�0�H�����tH���\������D���H�%KH�5ݞH�81�茪��@H����������0�����H�������������Q�����H���.����=���H�<$tH���r�����D��耍��蛡��ff.���AWAVAUATI��USH��(dH�%(H�D$1����I�\$I��H����RH������e�؃����{M��H��H����������1�ى݃����9���0A��A���������
����E1�����H������������������H�sH���dI��t.H��L�D$��*H�=��KL�t$��l��H���I�|$H��@����H��������������������������H������?�E�����8��A���������D������E����
��A��1�E��A���H�E�����[�E�����H�uH���}I��t'H��L�D$��*H�=��KL�l$��k��H�ŐA����A���dD�������I���[A���iI�|$H��H�����H�L$dH3%(��H��([]A\A]A^A_�fD�؃���t:H��H��M����j���������ڃ���tM��������7��L�D$��/L��H�=v�KH�D$�j��I�\$I��H�؃�H���A����؉݃�����A��A��uT���S�����-���E����H�������q���H��KH�0�f���E1�DH�A�JH�0H����I����H����H���gI���]���H��L����
I�|$H��H��@���O���D�������
H��H�����H���[���A��A��A��A�������u<@����H����@�������H��KH�0����1�fDH�i�JH�0H����I���[H����H����I�������H��L�����
H��A���w���DI����������I���!M������H�iKH�8�u���f��������f���f��k5���L��L�D$��/H�=J�KH�D$��h��I�l$I��H������D�؉݃����hA��A���#���1҃�E1����D���H��KH�0H����I�������H��L����
H���z���f.���A���������������A��E��A���3H���iH�������H�QKH�0�����*H�=d�K�L$�q���L$���R���A��E��A���`L�5�KI�6H���sI������H��L����
H�����fD�*H�=��K�Wq���������I����������H�C�8����H�[���x���DH�m��A��������@���M���H������������f.�H��KH�8�]����H�G����1�����f�A�������A���]���I������P���A�E����
�@�������f.�A�������A���E���I������8���A�����
�)������H�1�JH�8���f�H���1H�����H����1H���Y���fD��>���H��H�H������I�|$���@H��H�H������I�|$���fDL������L������H���JH�8�
�����*H�=��K�oo������������f��*H�=��K�Oo�����j����k���f�H��H������1�����@H��JH�8���f�H�Y�JH�8����H��KH�0H���LI���3���H��L���H��� ���H��KH�0H���:I������H��L����H����H�A�JH�0����H�1�JH�0����H�9�JH�0�����*H�=��K�_n�����������1H������B����H����H���<���H��KH�0�1���fD�*H�=L�K�L$�n���L$���l���@����H�����������H��JH�0����H���������������H�i�JH�0����*H�=u�K�m�������������*H�=W�K�rm����������{���� ���H��H���>�����u$A�������I�6�X���@���k����������H�%�JH�0�7���E���<����������H�<�JH�0����ff.����ATI��UH��SH��A��uH�����t������BH���JH��H�0耓����t9��ugM��tJ�؃���tXH���KE1�1�H��H�=��K�b��H������u3H��H��[�+]A\�{���H�����t������
���H�}H��L�e谥��@��t:@���(������)H���I@��u.H�K�JH�:�&fDH�����uH���-H���H�}[L��]H��A\������ڃ����r������i������`����������H�{莣�������
���@H�vH���H�sH�}I�����@��t=@��u}�������H����@����H�}[L��]H��A\�R��f�H�����u�H����H��u�H�y�JH�:��@H��JH�:����H��JH�:�
���H��JH�:�H�?�JH�:���H�`�JH�:���H�i�JH�:����H��JH�:�a���H�3�JH�:�R���H�<�JH�:�C���H���JH�:�4���D��AUATI��UH��SH��H��dH�%(H�D$1�A��uH�����t�������H�U�JH��H�0�ڐ����u6�-H��H���y��H�L$dH3%(�wH��[]A\A]����u;M����؃���t(H���KE1�1�H��H�=��K��_��H������t�L�mL�eH��uZA���A����D�������I���	A���;I�t$H��t<�-H�=��K�0i����u'@L��I���-H�=q�KH�$�8_��I��@����@����������H���B@����H��JH�8�H������������
�����ڃ���������������������������H�{�s�����������f�H�����uH����H����H�}L��L���e���:���L�nL�gI���>L��I���-H�=g�KL�,$�.^��I��L�kH�]I����H��I���-H�=2�KL�,$�]��H��@���D@����������gH���{@����H�}H��L��������@I������ ���I���3M���
���H��JH�0����f���������؃����=H���`����H�sH���:����-H�=��K��f�����!������f�A����A���qD�������I����A���/I�t$H��������-H�=O�K�f����������_���DH���������H���`H������H��JH�8���f�H�9�JH�8��H���������H����H������H���JH�0���I������L���I���DM���9���H�S�JH�0�/���H���JH�0�~���H���JH�8�u���H���JH�8����H��JH�8�W���H�8�JH�8�H���H�A�JH�8�9���H�r�JH�0�a���H���JH�0����H�T�JH�0���H���JH�0���H�n�JH�8���H��JH�0����H���JH�8���H�Y�JH�0���H���JH�8�f���H�;�JH�8�W���H��JH�0����H��JH�0�!���H�f�JH�0����H�W�JH�0���H�`�JH�0��H�Q�JH�0���H���JH�0�q���H���JH�0�����&���fD��ATI��UH��SH��H�� dH�%(H�D$1�A��uH�����t������nH�W�JH��H�0�܊����u0�*H��H���s��H�L$dH3%(�ZH�� []A\���u;M�����؃���t(H���KE1�1�H��H�=��K��Y��H������t�H�}H���ܳ��H�}H��I���ͳ��@����H�����uH����H���dH�}L��H���x���K���H������i��������
t��ڃ���t���t����y������H���H�{��������V���D@�����������H����@���m���H�
�JH�:�b���DH�VH�NL�L$L�D$H�wH����H�T$H�t$@��t1@��uy�������H����@����H�}����H�����u�H����H��u�H���JH�8����f�H��JH�:���H�B�JH�:���H���JH�8���H�d�JH�:���H���JH�:���H���JH�:�s���H���JH�8�j���H�X�JH�8�[���H�a�JH�8�L���H���JH�8�=����E���D��SH��H��H���������@��u|H�����ts������U@��ue��
t`��������d��H�{��tU�H�S������uH�����tH�������H��[�@@��t�1�H����H�{��u�����������@���/H������"������������
����Yf���d��H�{������H�S���Y�����u
H�������H�S�у���t+���0���H������#���H���������fD���H��������������H��1��<z��H�0fH~�H9���fH~�H��<��������H����H�����@������1�H����H�{������H�sH��[�t�@H�S�у����T������=���H������0���H������!����*���@H��E1�1ɺ�H��H�=ؾK[�"U��f�1�f�f.G��E�����D1�f�f.G��D��L���f.�H��H9�tYH���f��H��H��?H)кH	�1�H��H�|$�~D$f.���E����f�H������ ����b���@H�{�!����1�H����X���f�1�H�������H��H9�uH�{����H���f��H��H��?H)�H	�1�H��H�|$�~D$f.���D��H���H��[��H��H��H��H�����ff.�@��u2@��t4������tbH���KH��E1�1�H�=ľK�S���鳌
H�����t����
t�����t��t��t��u���x�����
�n}ff.���AWAVAUI��ATUH��SH��H��(dH�%(H�D$1���uH�����t�������H���JL��H�0�w�����u3��
L��H���k��H�L$dH3%(�SH��([]A\A]A^A_�A��u:H���D�����t&H�w�KE1�1�L��H�=@�K�kR��H������t��H�sH�l$���
I��H�=��KL�l$�9R��H���q H�sI��H�=s�K���
I��L�l$�R��H���D ��t?���f�ڃ�����H�������EH���JH�:�:fDH������#H����H���H���JH�:��I�������A�E����
����D��������������������������I�}������������fDH�GA�H�~�ƒ������u H�����tH�������f�H�CA��ƒ������uH�����tH�����ti�I�EA��ƒ���tT�uH�����tH�����t=D��A�����t(E1�@��uH�����t�E1����A������I�}H�����I�ƨ��@����1�H9�H�l$��I�uI�E���5�I��
H�D$H�=L�K�O��H��H��I���	���L�=��JH��I�7H����H��tH���
H��I�}�ϩ��H�{L��I��H�$輩��H�{H������I��
H��H�=ɵKL�l$�oO��H�{L��I��耩��L�sH��H���FA���A���5D������jI���oA����I�vH���H�$I��L����
H�=@�KH�D$��N��H��E�������������؃�����H��������H�{H��L���������H�{H��L��������@���H������������
��D���������������H�l$H�l$�>L��I��H�=�K�N��1�H������������H���JH�:�]���f��H�t$I��
H��H�=�K�M��H��H��I���ѧ��L�=z�JH��I�7H���+�H��tH�ο��
H��I�}藧��H�{L�kL��H�$胧��L��H��訐��H�$I��
H��H�=��KH�L$��3M��H�KH�{L��I��H�L$�;���H�L$I��H�������H�L$L��I���-H�=�K��L��I������H������,���H����H������H��JH�8�����H��L��H�l$��
1�H��������k���H�Y�JH�:����D������<���H��L��H�l$�Q�
1�H��������,����L���H��I���}H���[���DI���������I���uM�������H�Q�JH�0�����-H�=��KH�L$�U��H�L$�����������I�?�%�����+H�=ĻKH�$�{U��H�$������H�L$�I���+H�=q�K�|K��H�����@�+H�=t�KH�$�+U��H�$�������H�L$�I���+H�=!�K�,K��H�����H���JH�:���H���JH�:�z���I�7���H���JH�8�L���H�`�JH�8�=���H�i�JH�8�.���H���JH�8����H���JH�0���H�$�JH�0���H�-�JH�0���H���JH�0�r���H��L���zH��L��H�l$H����O��1҅����7�����}�����AWAVAUATI��USL���H��XH�->�JH�|$L��H�udH�%(H�D$H1��z�����D������H����M��I���PA�$����tL��蜋�����DA�$������A�$������L���M��tA�$�����iD����D$��L��H����H�D$L�xH�XD��H�\$0D����L�|$8����A���I������A�������������
�����U1�I�����fDH���V���M��I������L��D������D$�C���H�uL���Py�����hH�|$��L���a��H�L$HdH3%(�1H��X[]A\A]A^A_�H�D$����h�D$������H�|$�.�|$��
H�M�JH�8�
D���o1�I��������H���Ή�����}H�D$8H��H�D$ H�D$0I��H�D$(H�D$@H�D$��
fDA����A��L�%{�JA���qA���K�$����
I�4$H����I���L�D$��*L��H�=L�KL�|$@�RG��I��A��A��A�������YH������i	�����
��A��A������������������H�sH���T	H����L�D$��*H��H�=��KH�\$@�F��I��I����A���0I�����uI����M����I�uH����I�4$H����H����H����H�޿���
H��A�މ�A�������������2���E����	I�4$H����I����L�D$��*H��H�=бKL�|$@��E��I��L��I��L��L��H��?H��?I�L��H�H9��fD��E�����$����L�%]�JI�4$H��� A�I���!���I����L��L��A�����
A��I��A���	����I�4$H���3H����H���H��H����
I��I���]����L�D$L���-H�=�KL�t$@��D��I�4$I��H���c����*H�=1�K�N�����J���I�4$H����H����L�D$��*�H�=r�KH�\$@�xD��H��A�މ�A���/���fDI�4$H����I���y���H���H���e���I����L��H����
I���H����H�|$0L���L�d$8H�D$0H��H�D$�t}��]�D$������H�|$���|$��H�D$H�x���=��H�X��u
H������yL�`A��u
I������JH�����f�H�D$H�����u�H����H�|$u�H���JH�8�DL������������H��uI�����tA�$����
�|���L�t$L���E�L��H���Z���L��H������L�D$@�H�H�=�KH��L�d$@��B��L��H���^y��H��H���������fD�L���P�����fDL���X����������H�|$�y���H���<��H�@H�@H����H�D$H�������H���0
H�|$��H�g�JH�8�I�|$�������`���@��uH�����t������C���貃�����6���M�d$L����@���M��I������I�|$�����M�d$L�������M��I���������fDH�Q�JH�8����H�|$8L���I��H�D$8@���%	��H�\$0�V���L��L�d$0I��H�\$8H���>���H��L��H�$�Ub��H�$���H��H��H�$�=b��H�$�o���@�*H�=d�KD�D$�J��D�D$�������A��A��������E����I�4$����@��I�4$D�t$H���A����*H�=��K�L$�OJ���L$��� ����@���fDI�����H������������
��������I������;������hH�sH���
����*H�=T�K��I���������f�L��H��tA�����
�D���A��L�%��JA����H����A�����tA�������I�wH�������*H�=׫K�RI��������I�������A�����D�*H�=ĬK�I��������A��A�������f�L�51�JI�6H����I��t�L��L���\�
I�����@A�I����I�4$H���l����-H�=d�K�H�����P�������f��$��u)A���z���I������m���A�����
�^���A����D�L$�����A���v���D������WI���mA�������H�\�JH�0���@A��+���DH�!�JH�0H����H������H��H���H�
I���<���H���JH�0H����I���k���L��H����
I����A��A��t�H����H�������H���JH�0H��������*H�=ԩK�OG������������f������t���H����H���4���H���JH�0�6���f�L�L$ L�D$(L��H��H�t$8H�|$0����I���M���L�d$8H�\$0������*H�=D�K�F�����@����E���f�H���������H���JH�0�%���fDI����A������H���JH�0f.�H���������f�H�������P���H���JH�0�R���fD�*H�=\�K�F�����"���A����I������y����I���bM���m���H�N�JH�0�n���fD�*H�=��K�$�E���$����������<H������_�������������H�F�JH�0H���(I���0���L��H���}�I�����D�*H�=��KD�D$�:E��D�D$���P�������H����������������H�H���JH�0H����H������H��H����I���U�f�H��JH�0�q�H�1�JH�0�a�H�Q�JH�0�Q�H�Y�JH�0�A�H�Q�JH�0H���oI���3���L��L����I���A�H�D$H�x��4��H�@H�@H����L���(|�����������H�t$�H���Fy��L��H�D$�	p
I����H��������Y����H������������fDH�a�JH�0���H�R�JH�0�B���H�C�JH�0�*���H�L�JH�0����H�=�JH�0����H�.�JH�0��1�f�fA.G��E��l�*H�=�K�9C����������?����*H�=�K�C���������M�*H�=�K�B�����x������H�\$H���S�H��H���h���I�|$H��H�������H�l$8I��H�D$8H��H�D$ �ٝI�|$H�����I��I���jL��L�D$@��-H�=֦KL�l$@�8��I��L���q�H�t$ �H�l$8I���z�I�|$H��荒��I�t$H��H���}���H��H���{��H�|$H����n��L��H���
�����H���
���I��H�D$8����H�9�JH�8�\�H���JH�8�{���H���JH�8�l���H���JH�8�]���H���JH�8� �H�F�JH�8��H�O�JH�8��H��I9����L���f��H��?H)�L��H��H	кH��H�$�~$1�f.���E��V�H�e�JH�8�����tC�u^����tzI��thA��tVI�vH��������-H�=��K��@�����z����O���H�����u�H��tAH��u�H�<�JH�0�H���JH�0�H���JH�0�H�H�JH�0�H���JH�0�H�H�JH�0�{����<$��A�����I�6��E���{������H���JH�0�g�E�������A�������H�a�JH�0�d���i��L��H���}�����USH��H����t6H���Vo
H��H��?�۸H��h!��IHD�H��H��[]�|d��@��u[H�����tR�����
tp�ڃ���tH��tC����H����_H��H���Uu��H��h!��I���HD��fD�؃���uvH���V�
H��H��諂��H���i���H���n
H��H��ƒ���
t(�؃���tv��tY����H���8�
�������H��
H��H�������DH���P�H��H���e���H��H��[H��]�tc��@f�f/C�������@H���H9������H�غf�H��H��?H)�H	�H��H�\$1�f/D$���n���DH�[���X���H�H��
H�����I������AWAVAUATI��UH��SH��H��(dH�%(H�D$1�A��uH�����t�������H�!�JH��H�0�d����u:��
H��H����L��H�L$dH3%(��H��([]A\A]A^A_����u;M�����؃���t(H���KE1�1�H��H�=j�K�3��H������t�H�}H���r��H���H�}H��I���ur��H���@��t?@�����������H���;@���H�D�JH�:�@H�������H���H����H�9�JH�:��f�H��������������
�=����ڃ����/������&��������������H�{�ct���������f�H�GA�H�~�ƒ������u H�����tH�������f�H�EA��ƒ������uH�����tH�����ti�H�CA��ƒ���tT�uH�����tH�����t=D��A�����t(E1�@��uH�����t�E1����A�������H�{I������I�Ĩ�|A���1�L9���H�CH�{����H��H���op��H��H��I���q���L�5�JI��I�6H�����I��tL����S�
H��H�{�7���H�}L��I���(���H�}H���Lt��L��H���p��H�}L��H������L�eH��H����A����A����D������I���A���/I�t$H����L��L���o��I��E���U@����@����������H����@����H�}L��H���0����9���H�}H��L�������"���@���H������������
�nD��������������q�>L�D$�L��H�=��KL�t$�/��1�H�������� ���f.�H���JH�:�]����H���n��H��H��I��芉��L�53�JI��I�6H����I��tL����l�
H��H�{�P���H�}H�]L��I���=���H��H���br��L��H���n��H�MH�}L��H��H�L$����H�L$I��H������H�L$L��L�D$��-H�=�K�.��I���&���f�H������d���H����H���Q���H���JH�8�F����L��L��赔
1�H����������DH�)�JH�:�-����D������t���L��L���&�
1�H����������fDH���X�L��H���M�I�����DI������Y���I���oM���F���H�!�JH�0�<�����-H�=T�KH�L$�7��H�L$���!��������I�>�]�����+H�=��K�O7�����<����L�D$��+H�=L�KL�|$�R-��H���*���f.��+H�=D�K�6���������L�D$��+H�=��KL�|$�-��H�����H�k�JH�:����H�t�JH�:���I�6�?���H���JH�8���H�6�JH�8�{���H�?�JH�8�l���H���JH�8�]���H���JH�0��H���JH�0���H��JH�0����H���JH�0����L��L���q\L��L��H���1��1҅��������_��f���ATUSH����t0H�۸H��h!��IHI�H���2e
H��[H��]A\�sZ��I��A��uWH�����tNH��ƒ���
���؃�������������u&H����T��H�����؃�����H�{�KE1�1�H��H�=ܕK�g+��H��M��tF�؃���tOH�V�KH��E1�1�H�=o�K�:+��[H��]H��A\�Y��H��h!��I�� u9H�����u5�؃���u�H���Ν
H�����H��h!��IH���j����u������
�����ڃ���t���t���t)���[���H���HP��H�����H����w��H���,���H���TH�����AUATI��UH��SH��H�G�ƒ��������H�������L�(D������@���H��?I��H�}A��E��H�5�qH��H�p+HD�H���24��H�}@����@��u
H��������������H�ԚKH��E1�1�H�=�K�)��H��A��H��H���j��H��� uoH��H�S�����0��	wpH�ߺH�5p��O��H��H��[]A\A]�fD��(���H���P�
A��������kb
H���~���H�CH�P�H�C���0��	v��H�5�H���N���w�����@H�f.��}fP��tuA��H�5apH����������
�z���������������������������,N��H������@H��H�H9�u}DA��H�5�)H���L���fD��
t3�����H�@�����H�H��
H��A��A������I��
I��A��������˚
H���>���H���H��H��?H)�H	�H��H�D$�~D$������QH������f���U�H��H�=k�SH���"��H�5�JH��H������H��H���h��H�ߺH�5�
��L��H��H��[]����H�5%�J������=��K�D��UH��SH��H��H���JH�8�,!��H�h@��u	H�����uQH�X��u	H�����uH�H��[]�f�H��H��H�D$��G��H�D$H�H��[]�DH��H��H�D$��G��H�D$H�X��u�����H�
�JH��H��H�8�g������USH��8H�l$ �$f(�dH�%(H�D$(1�H���L$�Zi��f.�X�f(���X��E�f.�X��E„������L$�wf��f.������YD$ H���h��f��f.�����H�0H�$H9��:H��H��<��������H��H���H�L$(dH3%(��H��8[]�fD�Y
�WH�|$H�t$f(��X���$�YD$H�0�L$fH~�H9���fH~�H��<�������DH��H�����Y$H�0fH~�H9���fH~�H��<��������H��H���yH�D$(dH3%(��H��8H��[]�@����YD$ H���T$�g���T$�f.���E�8�t�<$fW=� �<$H�0H�$H9���H��H��<�������H��H��u}H�D$(dH3%(�H��H��8[]�?��@�4$fW5[ �4$�����H��H��H��H��H�����f�H��H��H��H������@�$�n��H���q���fDH�D$(dH3%(ut�$H��8[]�@���L$�5���L$H���F����f(����H���v����H��H��H��H���[���@H��H��H��H������gV��������>��f�������>��ff.�f���H�-�JH��H��H�8�W����UH��AWA��AVI��AUATSH��H��XH�}�dH�%(H�E�1��8��H�xH����}H��H�E��8��H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u���}H�E�L�l$H�E�I���L�m���;��I��H��H�]��H��H��H��DQ u�RՁ���A�EH�M�H�E�H�QH�U��Q��߃�I���	H�E�H�U�D��H��H�U�H�E���[���Å��H�E�L����f��I��H�E���ʃ�߃�I������@�Q�Aը���L�E�A�H�E�H�E�H�PL�E�H�U��x�����<I��<J��H�U�H�}�D���A[��L�E�������H�E�L�����e��H�U�H���:�����<I��@�ǃ�߃�J���L��1��<��I��hf�H��1�<-H�M�@��H�4�������~<��I�H�E�I�$�0H��Dq tH��H�E��0H��Dq u����A!�A��A��H�}��X`����H�M�dH3%(��H�e�[A\A]A^A_]�@���<IuYH��H�u���o����H��������H9�waH�pH�E�H��H��H��H�E�H���$��H�]�I�����fD<Jt�����H)�H�L��u���f�H��L��H�E������V8��fDH�E�L����qd���H���T;��I�����@�L���;;��I����1���-@��H�4�����H��L��H�U��;��I�����H�PH�M�H�U��@�PՁ�u�H�E�H�E�H�U�H�}�D��H�M��Y��H�M���H�E���9��H��H�M���4��H�M��T�I�$�DP����H���c��L��H����'��I����,������@��H�������-�������}����L���=:��I����Q��AUA��ATUH��SH��dH�%(H�D$1��;'��H�U�� ��H��L�eH�Ӄ�1�H��L�����H��t.E�����H�L$dH3%(��H��[]A\A]ÐA�<uaH��L�������u=E��t�H��JH��H�5wOH�81��UY��DL�eM��t�H�]�n���fDH�$�����H���05��H�E�� t'L�eH�EA�M���x���L�%�v�l���DH��L�e���D�R����VP��H�G�JH�5MH�81��X��ff.�AWAVI��AUA��ATUH��SH��H��(dH�%(H�D$1���uH��������������I��A�������L�%I�JI�4$H��4�KH����L�����nH�$E��u��@����H�l$�H��L������H�L$dH3%(��H��([]A\A]A^A_�fD��u�H�����t�E�����I��I��A��A���gM���N���H��������E�����2���H�}������t,@��uH�����t
�����t�]����t
H�mfDM�����H�����������������H��H��4���������t5@��uH�����t�E����tH���\����H�؅�����fDL�%ѶJH��I�4$�UK���������I�4$H���AK�����~���H���Q]����tH���E]�����b���H��J�H�8���H��H�H��H�@H�@�gt��H��H���]���F����H��������������M�����I��A��H�����������E����������r���@H���xJ����tH���\����uH������I�4$H���TJ����u E���W1�H��H�=R����"������H�$�H�D$�}���f�@����H��������U����
�D��������8������/�������6�������f�H�{�����������@��uH�����t����������Z��������H�[I��A��M�����������H�߉����H��H���[��������H��D�����H��H��������fD���¸���g����w����M���K�������f�H�
qHH�oH�H����:���?����K��ff.���AWI��AVAUATU��SH��(dH�%(H�D$1�H�D$��e��H�D$��t4���D���bH�=,1���N��I�L�t$H�D$�>fD�Q��A�������L�t$H�D$I����f.�H���GA�4�I��t
�L���)a��H�ڮJH�:��~@���������ڃ����OH��������H�SH9���H���aI���WH�މ�L���:���H��H�L$dH3%(H����H��([]A\A]A^A_Ðt6H�D$A��H����H�|$D����V��������5������<H�D$�ÍE�H�I�Ǩ��l��H�������l���������l��H�D$H���H�|$�E��L�l$I��M����l������l��A��A��E1����M���LD�L�t$H�D$E���8����2���L�t$����I�A���N�������I���DH�1�JH9:uI��4�����f���������fDH������c���H��t�H���T���H���JH��I���DI��4�C����b���f�H���JH������H�|$�fU�����H�D$L�t$I��������I��A��L��M�oA���>���H���z���H�|$�!U���k���H�ͮJH����D�e�Ic�I�<ǃ����H��u1���pk��L�t$I��u;H�D$I�M�o�H��JH��n����<��H�D$�*���H�|�JH��P���H�|$�j��L�l$I��M����j���k��H�|$�����H���+��H�=yH�1��K��L�t$H�D$H����D���]����xG��H�y�JH�5*FH�81���O��L��A�������N���ff.���AUI��ATI��US��H��dH�%(H�D$1��a��H�$��������I�,$��uD1�A�4H��tM��uI�L��H��L�����H�L$dH3%(��H��[]A\A]�M�d$��ulI����H��u�H���JH�5KEH�81��O����KL����~=H�$I�,$��tM�d$��u&H��t�H���S��뫐H���S���H���R���F���H�<$tH����R�������1���F��D��SH��H��dH�%(H�D$1����H��� u_H��H�{���<u&1�H����H�$H�L$dH3%(uoH��[�f�H���8*��H��� u@H��H�{���D�fDH�{H��uH�=�k�fDH�C�<t��@H�{H�C�H���u������DE��@���7�����H��(dH�%(H�D$1�H��JH�<$�H�t$H��H����H�L$dH3%(uH��(���D��ff.���SfH~�f(�H�0H��H9���fH~�H��<������tWH��H��u`H�0fH~�H9�tlfH~�H��<������txH��H��uIH��H��[����@H��H��H��H��H���@f(��T$����T$H���fDf(��o��H��H��H��[�o���H��H��H��H��[H��H���L��ff.����AV�H�=�@AUATUS�s1���H�=#H��K�[1���H�=�H��K�C1���	H�=��21���H�=Yo�!1���H�=5@H���K�	1���H�=#@H���K��0���H�=@H�f�K��0���	H�=�?H�F�K�0���H�=�?H�&�K�0���H�=�?H��K�0��H�-:�JH�=P?H��KH�u� ��H���JH�5�K��H��H��:J��H��������ƒ�����	H����	<��	H�xL�%ĨJL�-E�JH�5T?�U��H���>��	�ƒ����	H���~	<��	H�xH�5���vU��H�;�����H�g���H�5�>�"��H�;�����H�L���H�5���"��H�;�����H�����H�5�>��"�������H�5��H�=/>�
��H�v�JH�;H�0�K��H�;H�5rf��T��H�;H�5�>��T��H�;H�5�>��T��H�;H�5|>�T��H�;H�5s>�T��H�;H�5i>�T��H�;H�5F�T��H�;H�5R>�T��H�;H�5I>�tT��H�;H�5?>�eT��H�;H�5B��VT��H��JH�;1�H�5�=���L�5�JH�;1�H�5	>L������H�;1�L��H�5�=����H���JH�;1�H�5�=���H�ȥJH�;�H�53���H�m�JH�;�H�5DT���H�¥JH�;�H�5���f��L�5��JH�;�H�5�L���H��H�;L��H�5f=�1��H�;�H�"���H�5O=���H�W�JH�;�H�59=���H�;�H��k��H�5#Q����H�;�H�Qi��H�5g�����H�;�H��V��H�5����L�5�JH�;1�H�5C<L�����H�;1�L��H�5�<�{��H�;1�H��]��H�5�<�c��L�5�JH�;1�H�5��L���H��H�;1�L��H�5�<�4��H�;1�L��H�5v<� ��H�;1�H��C��H�5�;���H�;1�H��C��H�5������H�;1�H����H�5�;����L�5��JH�;1�H�5<L�����H�;1�L��H�5<���H�;1�H�-B��H�5Yj���H�;1�H�����H�5e�y��H�;1�H��G��H�5X�a��H�;1�H�eD��H�5!��I��H�;�H�Z{��H�5���.��H�;1�H��H�5q����H�;1�H���H�5:����H�;H�5Z;�/Q��H�;H�5U;� Q��H�;1�H��J��H�5�:����H�;1�H��G��H�5r:���H�;1�H�tC��H�5;��G��H���JH�;H�5ŝH�����H�sB��H�5�:H��I���G��H�;H�
�E��L��H��@���%��H�;1�H��Q��H�5�:�0��H�;1�H��P��H�5�:���H�;1�H��R��H�5�:���H�;�����H�1S��H�5�9����H�;1�H�IE��H�5*9����I�}1�H�0�H�59���H�}1�H��H�5�8���H���J1�H�;���H�5�8H�8�|��H���	���ƒ����+H���q<��H�x�����H���H�5{�mF��H�}1�H��D��H�5�8���H�}1�H��?��H�59���H�}1�H��?��H�59����H�}1�H�EW��H�59����H�}1�H��M��H�5����H�}1�H��M��H�5�8���H�}1�H��M��H�5�8�~��H�}1�H�A@��H�5I8�e��H�}1�H�(@��H�5��L��H�}1�H�/��H�5#8�3��H�}1�H��C��H�5v8���H�}1�H�mC��H�5g8���I�<$1�H�TT��H�59�����I�<$1�H�;T��H�58����I�<$1�H�"T��H�58���H�;����H�;H�5q�H�H��H�@H�@�0Q��[H�=8]A\A]A^�L���@H���������H����H������H���JH�8���f.�H���������H����H������H���JH�8���f�H������]���H��tNH���N���H�V�JL�%�JL�-��JH�8�C����H���JL�%�JL�-k�JH�8����L�-Y�JL�%ʟJI�}����f�I�}�5����I�}�"����H�Y�JH�8�����H�I�JH�8����I�<$����I�<$����L�%Q�JL�-ҟJI�<$���f�H���JL�%*�JL�-��JH�8�^���H���JH�8����H�q�JH�8�����H�	�JL�%�JL�-k�JH�8����H��JH�8�O����H�ٝJH�8�<������H� ��tH�G0HG(H�ŠH�8tH�WHH�����SH��H�H��uH�{����H�{PH�C[�������H�C��D��SH��H�����H��tH���H9�8t����H�H�{ ��tH�S0HS(H�ՠH�{8tH�KHH��H�[�ff.��H�GH�-uK�oH�O H)�H�oOHH�p�oW H)�P H��H0H�pH�PH�W H�r�R(H�p0H�AH�i0��u�H�pH�x�H)���4��ff.���SH��H�H��uwH�{�v���H�{P�=�H���H�x�];��H�{ H��tH�C0HC(H�4��H��H�{8H��t*���t�����<tH�CH[H�4���G���[�fD����낐��H�eIJ1��K��ff.���t$��t���tHc��8��f.�H��@��f�AWAVAUATUSH��H��HH�oL�=�sKH�|$I�L�|$�B3��H�D$0H����A�����I����H��H���eI��A�E1�1�M��E��"�L���;M��H���t�L�l$8H���)L�t$�0H�D$ E1�M�n�<)��H�L$ H�|$H�\$ L�%sKH�hL�p E1�H�D$H�H�xH�XH��L)�H�D$(L��I��L��I���
f�H�T$H��H�
J�11�L��H���$�����xlH�t$(J�;J�#I��H�T$H�L�xLt$H�@H�pH�P H�h0L9l$ u�H�|$H�L$H�\$ H�H�GH��H�H�Q(H_H��H[]A\A]A^A_�H�D$H�t$8H�8��<��H�D$0�8�$��H�=rKH�55H��1��<��H�D$0�8��#��H�=�qKH��H��I��H�5#31��<��@H�WPSI��H��H�v �/H���H�H�
��KHǃ�L���Hǃ��9Hǃ�Hǃ�u[�DH���h�H���[�ff.�@H��JATUSH�H� L�`8u]I�D$ H�xtiH������Y��L��H�hH��H����1���H�{PH������H�] H��Hǃ�[]A\�H���JH�5�3H�81��;��H�3�JH�5�3H�81��j;��f.���USH��H�����H��H���3���H�
<pKH���Hǀ�H���H��H��[]�f�UH��H��EJSH��1�H��H�=<pK�?G��H�UH�R0H�H�P H�BH��Hǂ�H��[]��H���JH�FPH�G H�H�GH9��t�SH���wd��[Ð�Kx[�f�PXH�531�H��H�=�oK�e:��D��H��H�5�DJ���H��t������<�HE�H��������ATH�5�DJI��USH��0dH�%(H�D$(1��5���H�������H�ÉЃ�����<�����\<��H�
j2H��H�!� 1�H���l���H����@(��H����H���H��L��H�p 葲
H��H�L$(dH3%(H��� H��0[]A\�fD<������<uDH�
�1H��H��1� 1�H������s����<��H�
�1�?���@<��H�
�1��L���+��H�5��� H��H���i8��H�3�� t&H�CH�p�H���^)��H��H������ ���fDH����H����H�
1�?���@H�
1���@H�
�0����@H�
�0�������/��f���USH��H�����umH�P�>��H����>��H�{8H��t
�>��H�C8H�{ H��t
�t>��H�C H���K�8tH���H��t�ϘH��H��[]�A>���H���H�oPHLJ�tH������Hǃ�H�����fD��SH��H���H��t���H��[����ff.�AUATUSH��8L�%7�JH�|$I�$H�X8H�k H�}�%H��蛑I�$H�=PlKL�h8I�E H�x��H��AJ������L��L�` H�D$(H�D$(L��I�D$�.���L�d$H�D$H�UH�MH�@H�D$ H�BH�t$H)�H��H�F(H�EH�t$H��H)�H��H�F0H�D$�H�T$L�d$H�z0Hx(�=��H�uI�D$ H�D$H�P(H�D$H��H�x �1H�D$H�uH�P0H�D$H�H H�D$H��H�@(��H�|$1�1�H��P���L�d$H�C H��H���H�S H���H���H9���H)�I�|$8I�D$@H��H��I�T$HH����H���I��H��I�D$8��H�C H�@hH����1��D��H��JH��u��Hc�L�d$��<��H��I��$�H�C H�XhH��u'���oCH��E�H�CH�H�E�H����H�{u�1���#��H�C��H)�I�|$8I�T$@H��H��I�D$HH���0���H���<��H��I�D$8�0���I�t$@H��H���ZB��H�C H�@hH��� �����2����H�|$H�EH����/�������t7H�D$H�T$�z�H�@t]H�T$H�BH�T$�H��8[]A\A]�H�D$�H�D$ H��8[]A\A]�DH�<��A�����f��A������H���N��H���JH�5^,H�81���3��fD��H��(dH�%(H�D$1�H�|$�n���H�D$�D$��t!H�D$H�T$dH3%(uH��(��H�|$�fD������*��ff.�@SH��H��H�5Y�J���H���H�@8H�H ��t I��H���L���L�C8L)�H��H�SHH���Hǃ�H���H�WPH�P H�H�PH;��tH��H���H���[�n>��fDH�|$�\H�|$��~��Ox��ff.���AVAUI��H�5.=JATA��H��USH��`dH�%(H�D$X1���H���h���H��A��/������H�F�JH�H�h8H��8�	H�E H;X0�[H���H�MH9J��H�@ H9Cp�������<��D�cD��L��D�s�#�H�CH�E L�`0M���������A��$��ƒ��������L��H�߃���������H�E H�P0�z��zH�Z�P,H�x8�҅P(�H���KL��H�w�����H�L$XdH3%(H���.H��`[]A\A]A^�fD���A��$��c���DL���L�sPI�EH���HH�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H�����H����}H��f�H��L��H���H�H�H���H�@�H���H�H�H���H�
&H�H�H���H�H�H���@�@�@�H���H�C H���H���H������H�ChHǃ�Hǃ�Hǃ����D�A��A���V���I�u�L��H��HG�I9u ICu ���I�EH��������jJ���H�=�dK�H�5F(��H�U H�r0��������eH���
��DH��8H�} �����H�=IdKH��9J1��C;��H�U L�b0L��8L�` I�D$IDŽ$�����f.�L��D����H���s���DH�UH�D$H��H���H�@�$H�T$1�H�D$H�D$ H�D$(H�D$0H�D$8H�D$H4�D$@�T)�������1��a���H�E H�x8����H�=]cKH�5�$1��.��H�=HcKH�5�&1��-���u��p%��H�z�G��H�
�'�"H�5�&H�=�$�8���H��8�G����H�G�Q����USH��H��H���JH�H�h8�����H���H����H�FPH9E tH����H�E H���H9Hp��H�S(H����H�K0H��H����H�S`H�P������H�ShH�PH�SpH�P H���H�PXH���H�P`H���H�PhH���H�PxH�{@H��t
H�SHH��u3H������H��8H���5����B���H��H������H�s8�I:����H�pH�H)�H�K(H�<�H�C H�4��(:��H�E �6���H�8H�s �:��H�E ����H�{�JH�5q%H�81��B,��f�UH��H��H�W@dH�%(H�E�1�H��t`H�E�H9�sWH)�H��H��H��H%�H)�H���H��H9�tH��H��$����t	H)�H�L�H�D$H��H�������ff.���AWAVAUATUSH��H�|$H��H�t$H�5�6JdH�%(H�D$81���I��H�t�JI��$�H�H�JH�@8H9HuRH�@ H�H I9L$ptH�e�JH�5v"H�81��,+��I��$�H��t6H;P0t0H�:�JH�5�"H�81��+��H�"�JH�5"H�81���*��I��$�L�phH�t$(M����L��E1�f�H�I��H��u�H�D$(H�H��tH�D$(1�H��H��H�8u�M����H��L��L��L)�Hk�HD$(@H9�r
H�H9J�JH�H��H��u�H���iH�D$(E1�L�-��JL�PH�D$0H�D$ �f�I��I��I9�tSI�EH���H��t�I�2H�T$ L�L$L�$�m��L�$L�L$��t�H�|$0u�H���JH�5j!H�81��)��L9�s#I��I�~A�VM�6I9�w�H��tiL�-�JHk�H�L$(E1�H�l$0L�|��
I��I��I9�s=I�EH���H��t�I�7H��������t�H�D$0H��4t�I��I�I����I9�rËD$H�t$A�D$���q�L��I�D$����H)�����L9��J�����H�D$(E1�H�8�G����1�H��������H���������H�GH��tSH��H���'�H�C[ÐH��P������SH��H�����H���H���H��t���H��[���ff.���H�GH��tH���{�H��P�?�ff.�@��SH��H����L�H���H��t���H��[��f���H��H�5�2J�|�����H�H��H�Ѓ��ff.���H���K�8u��SH��H�P��H���[�f���UH��H��SH��H�مJH�H���H��tH��H��[]��@H�t$�.���H�T$H��H�����ff.�f���USH�����H�=r\KH��1J1�H���i3��H��H����H�
\KH���Hǀ�H���H��H��[]�@��AVAUATUSH���dH�%(H��$�1�H���JH��$�HDŽ$�4H�H�@8H�D$ H�D$ H�@ H�@0H�$H�D$ H�@ DŽ$�H�D$H�@H��$���������H�D$H�@���ǀ�����H�$�AH�Y�D$H���H�\$0H�h �A�D$����H���H�CH� �hH�D$(H�D$ H�4$H�@ H�FH���H�@xH�D$ H�X �7wH�CXH�D$ H�@ H�@`H�D$ H�@ H�@8H����@��H�@�����H�T$H�t$(H�|$��H�D$ H��E1ɋT$D�D$H�x H�L$(���H�4$H�T$H�FH��$�H�BH�$H�B���Hǂ�H�D$8H���JH�B8H�H�BHH�C0H�x��H�C0H���H����Hǀ��KxH���JH�H�h8H��8��H�E H;X0�'H���H�uH9r�4H�@ H9Cp������<�dH�CH�t$8���H�CH�E L�`0M���������A��$��ƒ���u���A��$����L��H�߃������y�H�E H�P0�z����P,H�x8�҅P(��H�U H�B8H����H�@����H1�����H�t$H��$�H�F�K���H�C ���H��$�H�t$H�FH�D$ H�@ H�px�G���t8��H������H�|$ H���k��
���H���n��*���H�D$0�1���H�|$ �E����H��JH�H�R8H��8H9��-���H�=XKH�51���"��H�T$ H���H�|$@�D$@H�JH�T$ H�R H�T$HH�RH�L$XH�T$P1�H�D$`H�D$hH�D$pH�D$xHDŽ$�4DŽ$��b�����H�{8H��8H�� �)��`���L���L�sPI�EH���jH�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H����<H����/H��H�=�H��H���H�H�H���H�@�H���H�H�H����H�x�H���L�@�1�L��L����H�C L��H���H���H���H�����H�ChHǃ�Hǃ�Hǃ�����H�=&VK�H�5��%��H�U H�r0���������H������H��8H�} ���	���H�=�UKH�/+J1���,��H�U L�b0L��8L�` I�D$IDŽ$��:���H�t$8������H��$�H�RH���H��$�DŽ$�H�MH��$�1�H��$�HDŽ$�HDŽ$�HDŽ$�HDŽ$�HDŽ$�4DŽ$������+���1�������I�E�L��H=HG�I9E ICE H����I�u0I�EH�VH���Z����:��H�
*�"H�5iH�=O���H�=�TKH�51��=��H�=vTKH�51��(��H�z����H��8�G����H�G���:����PXH���������SH�����~H��tbH�xH��H�H��Hǀ�H��1�H)�������H��H������H���H��P�����`H�S [��b���8���H�=�'H��1�����f.���H��8tÐSH�G H��H�x0��H�0|JH�H9S tH�C [�DH������H� H�G0����(����H��{JSH�H�C0H�@H��t[�f�H�{8H��8H�� ��H�C0[H�@�f���������AVAUI��ATA��H�5(JUSH��`dH�%(H�D$X1����H���;H��H�S{JH�H�h8H��8��H�E H;X0�HH���H�MH9J��H�@ H9Cp�������<�sD�cD��L���C�-��H�CH�E L�`0M���������A��$��ƒ��������L��H�߃������&�H�E H�P0�z��dH�Z�P,H�x8�҅P(�H���~7��H�w����|H�L$XdH3%(H���H��`[]A\A]A^Ã��A��$��i���DL���L�sPI�EH���8H�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H����zH����mH��f�H��L��H���H�H�H���H�@�H���H�H�H���H�
6���H�H�H���H�H�H���@�@�@�H���H�C H���H���H�����H�ChHǃ�Hǃ�Hǃ�����DI�u�L��H��HG�I9u ICu ���I�EH��������5���H�=�OK�H�5f���H�U H�r0��������eH�����DH��8H�} � �����H�=iOKH��$J1��c&��H�U L�b0L��8L�` I�D$IDŽ$��"���f.�L��D���%��H�����DH�UH�D$H��H���H�@�$H�T$1�H�D$H�D$ H�D$(H�D$0H�D$8H�D$H4�D$@�t�������1���H�E H�x8���H�=}NKH�5�1��/��H�=hNKH�5�1����������H�z�g���H�
��"H�5�H�=��X�H��8�G����H�G�q��������@��AWAVA��AUI��ATA��H�5D#JUSH��hdH�%(H�D$X1�����H���MH��A����H�����H���H;�8�������L�=EvJI�H�h8H��8�xH�E H;X0��H���H�MH9J��H�@ H9Cp�������<��M�?I�G0H�x�[D�cD��L��H���D�s�	��H�CH�E L�`0M���D�����A��$��ƒ��������L��H�߃�������H�E H�P0�z��"L�b����������P,H�x8�҅P(�H���_2��H�w����H�L$XdH3%(L����H��h[]A\A]A^A_�����A��$��M���DL���L�sPI�EH����H�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H����!H����H��f�H��L��H���H�H�H���H�@�H���H�H�H���H�
����H�H�H���H�H�H���@�@�@�H���H�C H���H���H���諵H�ChHǃ�Hǃ�Hǃ����DI�8H��8H�� �T��I�G0����������H�=�JKH�5
1��6��fDI�u�L��H��HG�I9u ICu ���I�EH���N����C0��f�H�=)JK�H�5�
�(��H�U H�r0���������H����DH��8H�} ����s���H���L�kPtH������Hǃ�L��諵H�E �)���f�H�=�IKH��J1�� ��H�U L�b0L��8L�` I�D$IDŽ$��~���f�D��L���e��I������D1��1��H�E H�x8����@H�UH�D$H��H���H�@�$H�T$1�H�D$H�D$ H�D$(H�D$0H�D$8H�D$H4�D$@����z���H�=�HKH�5�1��r��H�=�HKH�5l1��]��H�=�HKH�5
1��H��H�=�HKH�51��3�����H�z���
��H�
��"H�5H�=�	�q��H��8�G����H�G���f.���SH��H��dH�%(H�D$1���1�H�����H��H�$�9��H�L$dH3%(uH��[��
��ff.���ATI��U��SH��������tL���H��[]A\������;$���������1�����D��AWA��AVI��AUATA��USH��hL�-pJdH�%(H�D$X1�I�]H�C0H�k8H�x��H���H��8H����Hǀ�H����H�E H9X0��H���H�}H9y�H�@ H9Cp������<��D�cD��L��D�{���H�CH�E L�`0M���������A��$��ƒ��������L��H�߃��������H�E H�P0�z���H�Z�P,H�x8�҅P(��H���7,��H�w�����H�L$XdH3%(H���YH��h[]A\A]A^A_�����A��$��`���DL���L�sPI�EH����H�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H�����H�����H��f�H��L��H���H�H�H���H�@�H���H�H�H���H�
��H�H�H���H�H�H���@�@�@�H���H�C H���H���H����k�H�ChHǃ�Hǃ�Hǃ����DH9���H��H���g���H��8H�} ����R���fDH��8H�} ����I�EH�h8H�C0�����I�u�L��H��HG�I9u ICu �;��I�EH���>����*��f�H�=�CK�H�5�����H�U H�r0��������RH�����DH�=�CKH��J1����H�U L�b0L��8L�` I�D$IDŽ$�����f�L��D���e��H���@���D1��1��H�E H�x8�
���@H�UH�D$H��H���H�@�$H�T$1�H�D$H�D$ H�D$(H�D$0H�D$8H�D$H4�D$@������H�=�BKH�5V1��r
��H�=�BKH�5,1��]
������H�z��H�=�BKH�5�1��:
��H�
��"H�52H�=���H��8�G����H�G���@��UH��S��H���<
�����tH��H���[]�������H��H��߉�[]���f���AVI��AUATA��USH��`L�-�jJdH�%(H�D$X1�I�]H�C0H�k8H�x��H���H��8H����Hǀ�H����H�E H9X0��H���H�MH9J�H�@ H9Cp������<��D�cD��L���C�8��H�CH�E L�`0M���������A��$��ƒ��������L��H�߃������1��H�E H�P0�z���H�Z�P,H�x8�҅P(��H����&��H�w�����H�L$XdH3%(H���KH��`[]A\A]A^����A��$��f���DL���L�sPI�EH����H�P0H�HI�E0I�UH�H�x H�HH�4
H�pH�@(H���H��H���I�E8H���H)�H)�H)�H���H�H���I�U8H�����H�����H��f�H��L��H���H�H�H���H�@�H���H�H�H���H�
>�H�H�H���H�H�H���@�@�@�H���H�C H���H���H�����H�ChHǃ�Hǃ�Hǃ����DH9���H��H���j���H��8H�} ����U���fDH��8H�} �p��I�EH�h8H�C0�����I�u�L��H��HG�I9u ICu ����I�EH���>����$���H�=i>K�H�5�h��H�U H�r0��������RH���U�DH�=1>KH��J1��+��H�U L�b0L��8L�` I�D$IDŽ$�����f�L��D�����H���N���D1����H�E H�x8����@H�UH�D$H��H���H�@�$H�T$1�H�D$H�D$ H�D$(H�D$0H�D$8H�D$H4�D$@�,������H�=P=KH�5�1����H�=;=KH�5��1������h���H�z�?�H�==KH�51�����H�
��"H�5�H�=�����H��8�G����H�G�4��@��H��8H��tH�W H;B0tH���H�B@�f.���H��8H��t#H�W H�HPH9�tH�B0H��8Hǀ��ff.����H�eJAT�USH�L�`8I�D$H���H������H��H�;<KH�I�D$ H��H���1�H��H�=�;KH��H��;KH��;KH��;KH��;K ��;KH��;KH�-�;K� H��H��H�v;K����H�=������H��t�
1�H���a�c;KH�gJH�=��H�0���H�5N��H��H�\;K�?��H��dJH�=s�H�0����H�=:;K�����H���H�5��H�;K�s��H�=;K�����H�`��H�5���t��H�=�:K�����H�!�H�5���U��H�=�:K�����H���H�5�G�6��H�=�:KH�H��1�H�5u����H�=�:K[H�a�]H�5:�A\�|���ff.����H��H�fJH�=��H�0����H��H�X:K�c��H�L:K�������ƒ�����H����<��H�xH�5߫���H�=:K�����H����H�5��]��H�=�9K�����H����H�5Ϯ�>��1�H�5���H�=��H���e���DH�����u�H��t2H���}���H�zeJH�8�r���f.�H��\JH�8�Y����H��bJH�8�I����H�bJH�8�9����H�a^JH�8�)����H��`JH�8�������H��H�=9K�����H�%��H�5O��y��H�
cJ1�H�=�8KH�5<��]��H�=�8K1�H���H�5'�H�����f.���1�9�|�DSH��bJ�ѾL�� H��`H�;���H�;�����[�ff.����H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H��H��H�D$H�D$ �H�D$H�(bJ�$H�8�D$0��H�D$dH3%(uH��������@��AUATUSH��H��dH�%(H��$1�9�|%H��$dH3%(H��uTH��[]A\A]ÐI��H�վH��L���jM��H��L�%xaJH���1�I�<$�F��I�<$�m����6���fD��H��H�>�1�����fD��ATUSH��9�|H��[]A\�f�H��H������L�%�`JH��H�)�I���1�I�<$���I�<$����H��[]A\���ATUSH��9�|H��[]A\�f�H�)I��H��H�����k��I��L��I��H��`JI��H���H�81��Q��H��[]A\�f����ff.���U��H��SH��(dH�%(H�T$1҃�	����tS���j�H�=q�H�����1ۄ��jf.�H�T$dH3%(����H��([]��H�="�H�����1ۄ�u�H�-�K��밹	H�=�H��A�	���������H�=�H����À��ۅ�������}=�V���D�Ã���H��H�L$�
Hc�L�D$H��茼���L$H�T$��uH����H�
�;L���H�)����}:uH����������H��^JI��H�0�H�81��������A���)���@1����f�H��=L�����f�H��J�H�H��e���DH�9;L���I������B����
�����3�����UH��S��H�������tH��[]ÐH��]JI���H�}��H�8H��1�[]������1�H�5��������f.�@���ff.���1��f����ff.����f.������fD��H��H��H�W(H�w H���H���ff.�f�H��t;USH��H��f�H�;H�kH��t���H��H������H��u�H��[]���ff.�@��AVE1�AUI��ATI��U��SH���(D<{t8<}t@<]t<L��L��H���6���Hc�H�H���H�s��t/<\t�</t8<[u�A���@E1�����ù{u.H��H��[]A\A]A^��E��u�H��[]A\A]A^��H�s�f���H9���AWAVL�wAUI��ATUSH�������I����E1�1ۀ�[tE~#��\����{u�H��[]A\A]A^A_Ð��*t��?t�A���wv��
�A�I�~�L��L���+���H�I�|�I9�v�L�w��u�E��D�H��[]A\A]A^A_�f.���u�H��M9�v�I���fD��a���F���1��D1��A������SH��H�?H��t���H��[����f���H��8H�5dH�%(H�D$(1���
H�'�L$ HD�H�|$H�t$H�T$H�T$H���S���D$H�L$(dH3%(uH��8��u�D��H��dH�%(H�D$1�H�~H�T$H�=�������D$H�L$dH3%(uH����%�D��H��H��H�OH�H�H�5�R1���H���f�H��H�=YJ�|$H�8tH�t$H�=/���H���D�|$�W�����E�H������H���?�1����H�H��H�Ѓ����AU1��	ATUSH��H��H�w�?�����x�lj�� ��H��t;H��[]A\A]���D�(I��D���=�����uIE�,$H��1�[]A\A]���{�D�(I��D���
�����t������H��u�E�,$��蒺���H�s�;�	1�����Ņ�y�E�,$�f�AW��I��AV��A��AUA��ATI��A��USH��hH��D$P��H�|$0��H��H�t$8�D$�K��M�$$H�,L���;��H�D$(H�D$L�H�$�A��uA�<$.�>A��L�|$ D��I�ރ��L$<?�y<[��<*���|$t<\��<I��A�$���i�L$P����</��A�</t~��tzH�T$ H��L���2����~fLc�H�$L)�I9��K�D$��tKL�|$ 1�H��L��L�����L�������H�4$1�L��L�������L�������9����H�|$tH�|$(�tH�D$0L�0H�D$8L� �H��h[]A\A]A^A_�I��A�FI�V<*t�H�T$<\u�|$�,H�L$�„��MD�T$PE���'��/�6A�$�����/�L�t$L�d$(<?�����fDA�$���W���</uD�L$PE���E���H�T$ H�4$L��I�^�$���H�I�A�FI���9���f�A�$������</uD�D$PE�������M�~I9�����A�^��!��D$T��^��1�L�t$HL�l$ A�Ɖ�L�d$L��A���@E��u{H�$H�t$H)�H9�H��H��A������tU�t$E1���tJH�4$H�|$1�L������L����-��1�L��H��L��A�����L������E�<$A9�A��E��L��A��]�CA��\u�|$�bE���qL��H��H�����Hc�L�$L9��SE�<$A��-�,���A�D$<]����M�|$<\u�|$��H�L$@���L��H��L��菲��Lc�O�$E����L�$H�t$H�L$@I)�L9�'H��H��L�T$XL�\$@��L�\$@L�T$X���M9�|H�t$L��L���]����H�|$H�4$L��1��ҹ���|$����L�������L��1�H��H�߉D$@訹��L������D�T$@A9���E�<$���fDA�>�4���H�|$��������DD�{H��E�������fDH�|$L�t$HL�d$�r����y���DA�<$���H�D$0H�L$H�H�D$8L� H��h�[]A\A]A^A_�@E�<$A�����L��1�H��H�߉D$@�̸��D�T$@A9���L��1�H��L��D�T$@詸��D�T$@E1�D9�E�<$A�����M�~A�^�D$T���f.���E��u	<\u�S���.�O���H�D$(H�D$���L�d$(H�T$ H�4$L���j���L�t$H�I�L�d$(A��y���f�E�<$E1��#���L��1�H��L��D�T$@���L������D�T$@�3����L��L��L���2�������M�M�A�����M�|$A�D$�.�����T$TD��L�d$I��L�t$H9������H�������H�T$ H�4$L��I��薯��H�I�A�G����I�NA�V����H�T$ H�4$L��M��^���H�I�A��w���H�D$0H�H�D$8L� 1��Z���H�D$0L�0H�D$8L� A���t1�T$P������</�����)���H�D$0L�0H�D$8L� A���u�1��
���f�AWAVAUA��ATI��UH��SH��H��HdH�%(H�D$81�H�|$(H��H�T$0����H�D����D$A����H�D$0H�$E1�H�D$H�D$(H�D$A�<$*��H�t$H�|$H��D������A�ą��H�<$��M�����T$A���u*<.u&�f.�L��H��H������H�I�A���t</u�t}H�$I��L�|$0I��H�D$(A�<$*�j���A�|$*�^���A�|$/�R���I����A�|$*uI��A�|$�/uL�d$(A�<$*L�$$t�L�|$0����f.�A�H�L$8dH3%(D����H��H[]A\A]A^A_�@L�t$0A���u#�%�L��H��H���"���H�I�L�t$0A���t</u�H�T$(�:u����������������L�bI�NL�d$(H�L$0�c����H�t$0H�|$(H��D���K���A���I�����ff.���H��H�ЋNH�H���������H�����f.���H��H��H�w�H�H�H�1��M��H�����SH��H�wH�?茼���{H�������AWAVI��AUI��ATUH��SH��H�^dH�%(H�D$1�H���	�H9���D�eA��t6A�H�L$dH3%(D����H��[]A\A]A^A_�f.�H��I���5����u�A�u�L���"����u�H���F����uBL���D$���H�L$H��L��I�4I������I9��l����|$�^���@A�MH�SH� tH�SH��L��E1��-�����A���2����M�ff.�f���SH�� H�t$dH�%(H�D$1�H�D$H�D$H���P���H��H�D$�C��H�|$H�����H��H�D$�)��H�D$H�pH� tH�p1�H�����H�=C�^��H��4tH�T$dH3%(uH�� [�H��H�=��������ff.���ATUH��S�@��H��H��tHH�����H�����x.u
�P��t�.t1�H�����H��[]A\�f��xu������I�ĉ����u��tF�4A�$[H��]A\�DH�����H��H���t���A�$��fD��f�1�����f����w�����U1�H��SH��H�=��H�����H��H��H��[]�Q������H���PXH�5/�H��H�JJH�81����f���ATI��UH��SH�����H��L��H���<���[H��]H��A\���ff.�f���SH��dH�%(H�D$1�����u\H�H�$H��t!H��H�����H�<$苸��H������8u>1�1�����H��轼H�L$dH3%(u@H��[��H�$��fD1�1��Ǹ��H�<$H��軻뼺1��-���H����H������H��H��ff.��AVAUATUSH�� dH�%(H�D$1�H�l$H�|$H�l$�0�H��H�D$��I��H�D$H��� ucH��L�`��M�,L��L��L������L��L��H������L)�H9�|@H�|$�F��H�L$dH3%(uDH�� []A\A]A^�f�L�`H�X�fDH�|$H��1��q���H��H�D$�4����=�ff.�f���SH������H��H�pH� tH�p1�H�����H�=���������x�[�H��H�=��`�����AUATUH��S��H��(dH�%(H�D$1��(���H�$��������L�e��uwH���D$�L���d���H��H�@H� tH�C1�H�����H��H�$H�=�������H�L$dH3%(���H��([]A\A]��L�m��ugH��L�������D$�w��������~GH�$L�e��u*H���J���A�H��H�������3����DL�m��uH��u��H�<$tH���a������p��H��H�=�����|��ff.����H���wH�?���H��H��fD��SH���#���H��H�xH� tH�x�����t�[�H��H�=,���ff.�@��H���C���H��H��ff.��SH��H� uH�������x[�@H���H��H�=���+�ff.����G��t-H���-�KuH�]uJH�?����H�����f���SH��H��o�����KH�= uJ�CtH�{[���D�s��H�{[H��tJ���f���H���t���@��H��H�5��I謣��H�xH��tH������f��H���fDUH��S��H��H�5�KH��t9H��EJH���A�H�8��H�5��IH��H���=���H��H��[]��H�=�8�/��H��H�5K���H�����H��H�=eH��H��H��馠��fD��H���S���H�|H�=�H��H��H���v���fDAUM��ATE��UH��SH��(dH�%(H�D$1����t H��tH�2�</u�BH���
fD�EH��H��:��A�HDп���Å�x$��H�\$dH3%(uVH��([]A\A]����������ƒ����u�E��y�H���H��1�H�l$H�=�H�$L�l$�ֱ������ff.�@H�QCJH�8tH��1�H�����H�=0����{������@��u*H�����t!H��ƒ���t��uH�5��I�c���H���7�����S���H�8H��tH���&�H��[����UH��SH��@��t-H��H�H���o���H�8H��t$H���O���H��H��[]�DH���x��H�������ff.���SH�����H��[�ff.���H������H�8H��t�&��H��H������U���D��SH������H�8H��t
����H��[��,���ff.��AWAVI��AUI��ATA��USH��H�|$���H�8H��t{H������DH�UH��L���Y�L��H��A��H�}�G��H��H��t/L�{L�����E��tƀ{.u�H��t�H��u��{.u���@H�D$H��[]A\A]A^A_��w������UH��SH���>��H�5�BJH��H��H���$���H��H��[]�f.�����H�5k������fD��UH��SH������H�5�BJH��1�H��H������H��H��[]�ff.�f���ATUS�S���H�H��tSI�����H���H���"���H��u�}��u3[�]A\�@H�XH��謻��I�T$H��[H��]A\����c���1�����ff.����H������H�8H��t������tH�H��H�D�� ���H�=b��4���@SH�����H����H��E1�1�1�H��[�\�ff.����SH��������tH�߹�[H�5
������DH��[�f.���SH���ÿ����tH��1ɺ[H�5����X����H��[�W������ATH�5��IUSH���i���H�x���H�=��I�����H����~�����؃�����H��������H�{���H��H������H��H�5��,��I�t$H��蟴��H��H�5�w���H��[]A\�H�����u�H��tqH��u�H��@JH�8�H��E1�[1�]��H�=�KA\�3���H��7JH�8�a����H�9<JH�8�Q����H�=JH�8�A����H�q9JH�8�1����H�y=JH�8�!������ATI��UH��S���+�����t7H������H�����H�=����H��H��贙��[�]A\�f.��K��H���S�H���L��[E1�]H��A\��ff.����AWAVAUI��ATI��US��H��HdH�%(H�D$81�H�=�K�����H�D$(I����H�D$0�Ņ��_�������~H�=O�1�����I�UH�D$0H�l$(H�T$ H���V@H��t:H��L�D$0�1�H�5K�_���H�|$0H��4tH���rf.�L�l$ L�l$0H�|$ �<�H��H�D$ �/��H�|$ H�����H��H�D$ ���L��H�5��IH�D$ 聚��H�8H��H��t�a�H�|$ L�sH�H�CL�wH� tL�wL�����H�H���$H�k@��u
H������MH�L$8dH3%(L����H��H[]A\A]A^A_�������~?����H�D$0I�UH�T$ H�l$(��u&H�������H�|$0������tNH�D$0H��t
H�|$0������衿����NH��K�������I�������t��H�|$0��`���H�����H�=I�H�1�����H�H�D$0H�l$(H�T$ �����D�8D���������H�H�������L�l$0H�=�H��D��H�D$ �0��H��L��������D�{�Ic�I�D�������H�����������������H�D$(H��tuH�|$(�M���H�T$(H��H���3���������D��1�A������H��HD�H�D$0H�t$(������������E���R����Q���L���_���H��"����R��H�D$0�.���D�{�Ic�D�|$I�|��������H���E�������H�D$(�H���D��ATI��U��H��H���IS����L���H��H�����誹����uH��[]A\�fDH�=Y;JH��H��[H�#���]A\�+���ff.���H��H���I�����H�P H�H�BH�BH������ATI��UH��S��������t7H����}�H�����H�=/���H��H��褔��[�]A\�f.��;��H���C��H���L��[E1�]H��A\���ff.��AW1�AVAUI��J�|ATUSH������H��p���H��A��I��L���i���I��H��tH��u,I�E��t�/I�LH��u6�)H��L��[]A\A]A^A_�H��L��H����I�E��t����H��H��L���r�H���ff.�f�AWAVAUATUS��H��HH�t$dH�%(H�T$81�H9���D�7I��E����H�D$0�D$,H��H�D$ �蓤��I��H���I�GH9D$v
A��*��H�t$H���L������H���L��H��I���}��A�ƃ�w�D$,��uA�<$�L��L)�H��H����H�L$����H�L$H��I���DH����A�
A���$A���DF�E�uM�UA�<$��M�|$�H�D$ L�(I�EH�D$ L;|$s
E�7E��������T$菣���T$H���z�����H�\$ �HH�H�H�@H�D$0H�\$8dH3%(��H��H[]A\A]A^A_�L�T$A�:���M��M�\$H�t$H���L��L�\$���L�\$H���H��H�D$L�������v����fDM��1�����fDA�����DA�*�;���A�/�0���f�A�GI�WI��</uI��A�</t�<*uA�*uA�/t�A�E�I�E�D$,���H��L��H��H�L$��H�L$I���5�����&���H�t$0H�t$ H��uEH�D$0H�D$ DH�D$ H�H�|$0�"��1��������H��t�H�\$0H�\$ ��S����L������������AUI��ATUH��SH��H��HdH�%(H�D$81�H�KH����H�D$�H��tH��
KH����H�D$�L�d$ L��H�t$1�M��譕��H�|$ H��4tH��uLH�EH��tH�|$(H��4u$H�D$8dH3%(��H��H[]A\A]�D@��tj�5�����͐H�5�I�$�����t`H�D$ H�E�D�H�=��迹��H�8
K�E����H�=��蟹��H� 
K����諾����`���@L�d$H�|$ ����H�D$ H��� u$����„�tH�D$ �H�E����H�x�����a���AWI��AVA��AUM��ATUSH��hH�|$�t$$H�T$H�L$L�L$HdH�%(H�D$X1����M�$A�����1�1�A���B<}tLA��t<\uA�I�G��I��L��L��L��肐��H�I�A�����<{u����}����H��t˃�u�H�|$�l���H��H��H�D$(�K���I�Ƹ����M���H��H+D$H�D$8��I�GH�D$@�D$$�ЉD$I9���L�t$0I��I�nL9���1�I���*�<{���H��L��L��迏��H�H�L9�s�E<,uՅ�u�H��L��H��I��H�D$8H)�H�tH�|$0H��H����H�l$0H�T$(H�t$@H)�H�|賓��L�L$HM��H��H�L$H�T$�t$$�5�������L�t$0L���D$茫���D$�H�T$HH�T$PH�T$HH�L$XdH3%(��H��h[]A\A]A^A_�fDL����K���1�H��u�L��H�t$H�|$H�D$���<}u�������D$����<\����H��L9����������M9������L�t$01��:���H�t$H��L�������F���L�t$0H�D$8H�T$(H�t$@I�<H)�荒��L�L$HM��L��H�L$H�T$�t$$����������1������[��ff.�AWAVAUATUSH���|$0H��$�H�t$H��$H��$�H�T$H�L$ L��$�D�D$4D�L$H�D$8H�t$(H�<$dH�4%(H��$�1�L9��F
H��E1�1�E1�1�1�E1�A�H�
i�H�5~�f�L�
A�A���H��wHc�H�>��A��DH��I9�wDž���H�D$�8�A�|$���H�D$��HD$ H�D$@D	���E����L�t$8L��1�L)�H��H��H��H��������H��H��H9�H��H����H�t$X諛��H��H�D$`H���L��1�M9���@H��xHC�H��H��H�A�I9�w�I�E�H�|$`H+D$8H��L�|�L9�����$�H�o��$�����$��fDH��L9|$�fH�]�H�l$H��t�L�#L������I��H�@H��H�D$8���I��H���!
H�T$8L��H���@����$�����	H�|$X跚��H�D$HH����H�t$HH�CL�fH�L9�sVH�l$PD��$��H�]H��t+H�4$H�;D��L���u����uH�CH�EI��I�D$�H��L9�r�H�l$PH�|$L�D$8L��T$4H�t$@��L��H���h���H���*H�D$@H�<����H�|$ �4$H���$A�����A��t$8H�8��$PATL�t$pAVH�T$@�|$`���H��0H��A�����L�����E���t���D��H�|$`�ߦ���f.�A�A��/����A�������A�A�����E��AD����@�����fDI�A�xw�@Hc�H�>��A����DA�����A��A���|$���D ��8E�����D$�������
��D�d$E����	A�E����	L�L$H�D$I�L��H��tA�9/uH�D$H�t$H�|0H�D$(L�L$@H�$H��$�L�L$@�������|$����E������H�D$ H�|$H��t
A�9/���T$4E1�H�
[�L���W�I��H���QH��H�D$(H�$H��$�L���������������SD��$�E��yDH�u�H�t$P1�H�=���H��$�H�D$H��$�H�$H��$��y���f�1�H��$�dH3<%(����	H�Ĩ[]A\A]A^A_�H�D$8E1�E1�H�-��L�0M��uZ��M�&M��tCL��� ���H��M��tXI�tL���K��H��H��tM�}B�(/H���)M�,I��B�)M�vM��tLA�F������u�1�I��M��u�H�{I��褖��I��H��t�H���^A�M�vI��M��u�f�M�����D$0L�$L��E1ɋ�$�H��$�H����$�H�D$H��$�H�D$H��$�H�D$ H��$��D$4��$��D$��$���$���$�H�D$(H��$�H��$H��$����L�����%����b����L�%}�����J�<8H��L��H�D$8���H�L$8���������"���L�$H�T$�D$@H��$D��$�H�t$�|$0���������$D�T$@��E�у��D$E���{������H��L��H��������H�D$(�|$0�H�XH�D$�*H�|$�HD$���/����H�|�t$0HD‰�$�H��$�H�]'JH�8��1�H��$�H�����H�=c��H�t$P�y���H�D$HH�|$H����$�H�t$8L��D��$�L��$�D��$�������$��H)�1҃�H����$�H�	H��H��H�D$pH��$�I�E�H)�H�T$xH��H�D�H��$�H��$H��$�H�|$H�N���H��H����H�]H�����D��$�H�D$E�����}.��H����H�|$u�}.t���$��D$ ������$�L�D$�T$4H��H�t$@H�|$���H�D$XH���p�E��u_D��$�E��tV�|$ �uO��$�9�$�}?L�$H��$�E��H�T$XH�t$�|$0�a��D$ ������u��$�����D$ H�t$pH�|$xH��������H9�H����H��$��’��I��H��$�H�����|$41�L�d$X��H�|$8��HD$@H��$�IċD$ ��D$`H��$�H9���H�l$hH��$�L��I���)���tU�%���I��L9���M�/A�E��uӋt$`��u��$�9�$�}L�mH��M�mA�E��u�H�D$hL�$E1�D��H�L$PI�}H�'��L��$�H��$�D��$������I��L9��v���I��H�T$H��$�A�H)�HL$�4$��$�t$8AVAWH��$�UL��$�D�L$P�|$`L���C�H��0L����蕞��H��荞�����=���H�|$H������fDH�4$I�}D��L�����������I�EH��H�E����DŽ$��D$ �����T���A�K�<.���+L�t$PL�$$M��L�|$hH�\$8L��H�l$HH��<\u.M��M)�I9�tL��L��H���+���L�A�}M�u��M��L��L��H���X���H�I�A�E��u�H��M��H�l$HH�\$8L�t$PL�|$hI�MH��L)�H�D$8L9��g���L)�L��H��躴���T����D$�����E���t������H��$�H�|$P���H�D$H�K��������|$0�H�T$��H�|$��HT$�</u�BH�����t$0�D�L$H�)H��$HD�E1��L���D�L$���	�������$�����D$���E1�E1�1��$��PH���L���H�p�H�|$H�D$L�L8������q���D��$�E������DŽ$��D$ �g���蚷������o������f���H������H�$H��$H�|$�Ӊ��E�����$�����L�L$LL$�|$�k����l�DH��M��H�l$HH�\$8L�t$PL�|$hI�M�)�����������ƒ��������D��$�E������H�
�1�H��$�H��$�H�D$H�=4��H��$�H�$H��$�������1������������H�|$H������&����8�L������������&�������H�|$X���������l���H�D$8����θ��ff.���ATI��UH��SH��H��dH�%(H�D$1��f����S(L��H��H�t�S�H�$H��t]�C(D�K$D�C H�KH�SH�sAT�s8�s0PH�D$ H�|$(W�;P��H��0H�<$���(��H�L$dH3%(��uH��[]A\û�����������AWM��AVAUATU��SH��H��X�t$L��$�H��L�$dH�%(H�D$H1��<{��</��H���+H��H�t$�~���H�xI���b���H�t$H��I����J�(E1��D$M����H��L�\$�9���L���H��H�4�(�L�\$H��H�D$ �PATL��A�����L��AWL)�t$UH�D$@H�T$HRL��PD�D$D�|$@��H��0H�|$ ����L������H�T$HdH3%(����H��X[]A\A]A^A_�L�o�肋��I��H����H��H�HL��E1��D$A��<f���F���I��H����H���D$E1�E1����@M��L��L��L�\$H�L$�x��L�\$H�L$���f��D$H�T$(��H�N�L$0H�L$ L�D$8M��L�L$@E1ɉD$ �������L��������������޵��ff.���H��H�FL�N L�F�NR�6H�����H���f���H��L�N�NI��R�����1��q���H���ff.��AWI��H��AVA��AUI��ATUH��SH��HdH�%(H�D$81�����H��I���s������:H����A���L�|$ H�$L�d$(H�D$I����L��A����I�] H�;H���0�I����ƃ���	H�[H�SH� ��H�T$I��H�}H�E uCH��D��L�u�IAT�~���ZYH�L$8dH3%(��H��H[]A\A]A^A_�f�H�}�f.�I������U���A�E�����E���L��H��舿�������H���P����'���DH�S�N����1Ҿ�����@���@転��H��I��� �����������2���I������ų��L�����H�=��H���.���I��f�ATA��UH��SH�� H�|$dH�%(H�D$1�@��u	H�����ufH�D$H�D$���H�D$�ղ��H�t$D��H��H��H��������t���������[��H�L$dH3%(H��u@H�� []A\�@�����u��9�H��t$����H���'���H�|$H���:����{����в��H��JH�5�H�81��8����AWAVA��AUATI��UH��SH��8H�T$dH�%(H�D$(1����H��H��~WE1�L�|$�DI��L9�t?K�<�L�|$ H�|$���H�T$D��H��H��H�D$������tȃ���������P��H�T$(dH3%(H��uH��8[]A\A]A^A_����f���AVAUATI��US��H�� dH�%(H�D$1�H�D$�-��H�D$A�Ņ�������D�s�Ic�I�,�@����H����������E�����v��H�l$H���H�D$����L�l$H����1�L��H���I���u+H�t$I�<$1�����+f��6H�|$H�t$1���H�T$Hc�1�L���G���H�L$dH3%(�H�� []A\A]A^�fD蛶����~��t[H�l$H�D$�`���@H�D$��H�l$H��uH�t$1�H��1����|���D1�L�l$L���1����&���@D�s�Ic�I�<�H��uWH�l$���DH�|$����H�|$H�����E������H��D��HD�H�D$H�l$����諤��H�����H��t
H�|$褼����1���踛���ӯ������ff.���AUATUH��S��H��HdH�%(H�D$81����H�D$���g����H�EL�mH�D$����L�d$1�L���I���L�����H��H�|$H������H����H�SH� tH�SH�|$H� �=H����H�������¸��tL�d$H�D$1�H�L$8dH3%(�WH��H[]A\A]Ð1�H�m���H�������G���H�����莡����L�d$L������L���ǿ��H��@���,���H�\$H�D$ �l$(H���4���H�|$H�L$I��H� ��H��I��H������������1�����3��������~nH�UH�D$L�mH�T$���-����H�������H�|$裺���&���fDH������ӊ����� ���@H��i���1����H�|$t
H�|$�V��������e���耭����AWAVAUATI��US��H��HdH�%(H�D$81�H�D$(���H�D$0�Ņ�t4���B����H�=�x1�蝰��I�,$L�l$(H�D$0�5D�Ӳ����������L�l$(H�D$0I�,$����@H�����D$L��H�T$H�t$ ����H���=���H����H�D$(H�8I���l$H�\$ H�����(�� �H�p�� ��H����H�ډ����H��H�D$(H�D$0H�D$(��������H�L$8dH3%(H����H��H[]A\A]A^A_�fDt&H�D$0H��t
H�|$0貸������������t�H�|$0���|��H���0���H�=�wH�1��/���L�l$(H�D$0H�+����DD�{�Ic�I�Ĩ����H������������������H�D$(H����H�|$(��z��L�t$(I��M����������D��E1������M��LD�L�l$(H�D$0�������	���L�l$(���uI�,$��������tI��L��M�t$������H����A����L���̇���D$����T$H�t$ H�����H���g������[���H�߻�Bx���I���DI�x�����H�p ����H��H�D$����L�D$(H�D$I�8H�0���fDH�|$0����R����H�|$0�ֶ���C����L������G���D�{�Ic�I�<ă�����H��u'������L�l$(I��u"H�D$0I�,$M�t$����m���H�D$(�M���H�|$(�9y��L�t$(I��M���������莩��fDL������������I�,$H�D$0L�l$(I���u������������ATH�����1�1�U1�S�Vo��H���޽��H�E H��H���O���H�E H��I������L��[]A\�@��S�Ɨ��H���.�����������D�H�lj�[�������W������SH�� dH�%(H�D$1����;��H�=���̣��H����H��諛��H�Ë��J��^�9�����u}H�sH� u@1�H�����H�=H����������H�L$dH3%(��H�� [�@H�s�f��ۏ���������N���H9�>J����輏����t��s���H��苛��H��H�\$H�,��H��H�=b��H�$�D$�1k���v���@H�>���H���H���H������H�=���Ģ��H�������H�lJH�5��H�81�����1��7����R���H��H�=P��û����ATI��UH��S����H�� dH�%(H�D$1�H�$H�D$�d���H��1҉�P�����M��H��L�D$���ZYH�t$dH34%(u	H�� []A\��Ʀ��fD��SH��H��@dH�%(H�D$81�H�4$H�T$ ���H����1�H�D$0L�_�I�����H��PL�L$�\�ZY��t�����������fDH�D$8dH3%(uH��@[��5���D��H��8���E1�dH�%(H�D$(1�H�$H�d�H�L$H��H�D$�t$���H�T$(dH3%(uH��8��Х����AUI��ATI��UH��S����H��8dH�%(H�D$(1����E1ɉ�H��H���I��H��L�,$H�D$L�d$�\$���H�T$(dH3%(uH��8[]A\A]��L���ff.����H��JSH�=]�H�0腂��H�nJH�g
JH��H�2H��yx��H�;H�5_��説��H�;�����H����H�5V���H�;�����H�p��H�5�����H�;�����H����H�5��Ʌ��H�;�����H�*��H�5ק讅��H�;�����H�/��H�5�^蓅��H�;�����H�t��H�5�X蘀��H�;1�H����H�5��耀��H�;1�H�4��H�5���h���H�;1�H���H�5k��P���H�;1�H�D��H�5t^�8���H�;1�H����H�5?� ���H�;1�H����H�5�X����H�;1�H�|��H�5������H�;1�H����H�5^����H�;1�H����H�5;����H�;1�H����H�5I����H�;�H����H�5����H�;1�H�a��H�5���u��H�;�H�&��H�5���Z��H�;1�H�~��H�5��B��H�;�����H�3���H�5������H�;1�H����H�5;����H�;1�H��H�5)��׃��H�;�H�X��H�5�較��H�;�����H�����H�5��衃��H�;�H�B���H�5�膃��H�;�H�'���H�5���k���H�;�H����H�5���P���H�;�����H�!���H�5���5���H�;�����H���H�5������H�;�����H���H�5�T���H�;H��
J�H�5Y����H�;�H����H�5E��ɂ��H�;�H�Z���H�5�V讂��H��J�����H���H�5�H�;茂��H�;�����H���H�5���q����H�=���Є�H�=�迄�	H�=�讄�H�=�蝄�!H�=�茄�H�=��{��H�=ۤ[�i�f�AWAVAUATUSH���D�D$$dH�%(H��$�1�H���yI��I��H��I���]���H��L9��A�$��.��L��/�D�t$$���kH�D$0I��H�D$�JH�SL��H���i���H�T$H��������u�D$H%�=��A�>��M�~�:L���d���I��H���M��M��H��M)�tHA�?~�PM9�rBM)�L��H��L��L�L$L�\$���L�\$L�L$H��L�A�~�/t�/H��I9��A���H)�dH��dHF�H���H��eI��H��OHB�H��d��H�
rO�dH��H��M��PH�=8�1��Q���A�>ZY� ���1�H��$�dH3<%(�
H���[]A\A]A^A_�f.��/L���S���H��L��H��u��x���L��蘁��M�4�����H��d�d�HF�I��H��Nw1�H������H�
���8���f�I����A�/�����H�=t�L�\$蚙��L�\$H��H���7H��L�\$H�t$����H��I9��s���M��H�t$L�\$I)�H����H�I���e���I���,���@�D$$��t�H���S���������H�����H�=٠L�\$���L�\$H��H���e���M��H������A�T$��.����A�T$����fDH��dH�
�MH���L��dHF�H�=��HF�1��p���1��&���f�H��H��L�\$(L�L$H�D$�V���L�\$(L�L$H�L$����I��I��M��H���/������f.���AUATI��UH��SH��H��H��t$H��L��H��H��A�[]A\A]���fDH�=o����H��H��t
跚��I��H��u	H�5`��L��H��H��A�H�����L��H�D$�r~��H�D$H��[]A\A]�f���H��H���HD�E1��f���fD��H����S��H�=~�JH������Hc��U���H������[�f����W����AWAVLc�AUATUH��K�vSH��H��JL�<�H����H��I���y~��H��?��I�7M��L��H�����u�����hI�_H���H����oE�oMK�oU S �o]0[0�oe@c@�omPkP�ou`s`�o}p{pH���H���L�cH�=j�JL��L��D���I�_�j��H�-U�JH��uD��H��[]A\A]A^A_�fDL��H������H��u�H��JH��H��IH�8�v���L��H��H����]���fD���I�_I��I�H����������V���H��H����f.�H�{H��H��H�Hǃ�H��H)�������H�����@������)���ff.���H��(dH�%(H�D$1��S}��H�$�Z���H�=3�JH��H�5YH�D$�~��H�$H�L$dH3%(uH��(�衙�����H���JSH�x�a��H�=��JH�5H��H���2~��H��[�ff.�f���SH����H��H���ذ��1�[�@��92t1��DSH���W�H�{H��諰��1�[����H�G H�x�/�ff.�@��S1��a��H�5E�JH��H���h��H��[�ff.�f�PXH������H�5f�H��H���IH�81�����f.���PXH���
�S�_���I�H�=��J��Hc��p��Hc
��J��1�H���J)�H�IHc�H�<�H�RH���s_�����J[�ff.�AUI��ATI��USH���-b�J�];]�J~���x�����x$�F�JH��L��L��[��]A\A]����H�������[]A\A]�����w
H�B H�x���P�1��}���ff.�f���1�H�t�f�H�٫IH9G�����ff.���H��t�������&���fD��f.�UH��AWAVAUI��H��ATSH��(dH�%(H�E�1��E���I��A�E�HЃ�	ve�ƒ�A���L��E1�@H��������H��p��������~��0��	v΀�_t�I��M)�I��?���H�E�dH3%(��H�e�[A\A]A^A_]�fD���@L��1�E1����fDD��΃���	��/�p���DF��A��F�H�����u�I��H�߉M���x��M)�I�I�WI��?�e���I��H��M�L��I���L)�H���H9�tH��H��$�H9�u�%�t	H)�H�L�H��H������r��Ѓ�wH�@�IHc���H�ڄ�t&�p���v�p���v��0��	v�_H�����uڅ��\E��������H�ڄ�t)��H���wH�
�IH���H�����u�H��IL��H��H�8���l���@��DF�H���������I��M)�I��?�B���H���IL��L��H�8譫��E���$���I��?����D�e�H���nw��L�H��?����H�PH��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H��A��h�A��M���DH��IL��L��H�8����v����A�����H��IL��H��H�8�Ѫ������ד���E�L��H�߉M����E��M����b�������A��t
��G����E������1�H��t���%����f����������Hc�H�
��JH��H�RH��H�R�������������f���H���=m�J
�
���H�=]�J��H��I1�H�r����H���I�H�r��H�	�I�H�r����1ҿH�5?�����1ҿH�55����1ҿH�5+����1ҿH�5!����1ҿH�5��|���1ҿH�5��i���1ҿ	H�5���V���1ҿ
H�5���C���1ҿH�5��0����^�JH��Ð�k{��H�T�J���ff.�@����x(���9=$�J~Hc�H��JH�H��H�@�1��ff.�f�ATI��UH��S��xb��H��L������Å�xXHc�H�@H���JH��H�PH�h���t
������{o��L��H��������[]A\�f��������H��IH�5��H�81�菙��ff.�@USH��H��t]H�����s��H��?wMH�=>�JHc�H�
��H���R����tH����[]������n��H��H���v���H����[]�D������ɐ��H���n�����H����AWAVA��AUA��ATI����UH��SH���n��D��H���tn��I��@��u
H�������1ҋCA��uKI�����tBI�4$1ɉ�����u4�� ��I�|$@�ƹ@��t����L���
@1Ƀ�t1�H��H��[]A\A]A^A_�DH�߉L$�T$�����u�A�u�L�������u��T$�L$��uA��t���uA��t�������t�H���A���A��L��A��u��H�E1҉����������� tH�}�����������N���D������fD���@������H���A���������H���aq����ID�����L��T$誜���T$A�ą��]���H��蓜��A9�tA�������=��������A���&������ff.�@��AWLc�AVAUI��ATUH��L��SH��L�bL�2L��蓐��H��H��t*L���b�H��L��H���d��H��1�[]A\A]A^A_����9l��H��t�H�XL��H���ug����t�H����L��L��H��H���Q���fD��H��dH�%(H�D$1�H�$H��t;H�=��Jt1H��H�=��JH���s����t�$H�L$dH3%(uH�����������d���@AVH��1�AUATUSH��H�=F�脚��I���f��H�(��u��I�$L�(�� ��H��I�D$��M�D
I9�w�;@�� �H��I9�t)��r��у�v�J���v��0��	v��_H��I9�u�L���U��I���e��H��Eu��H���k��L��I���~QA���fe��H�(�u��L��L�(�ß��A��wMH�������xAHc�H�
��JH�RH��H�R�r��t$[]A\A]A^�I�T$I�L$H�BL�D
������������f�AVH�g�JAUATUSD�.D����Hc�H�RH�\�H�����B�J��~%H;Xt0��H�RH���
H��H;XtH9�u���[��]A\A]A^Ð�CI��I����u!H���H�{�s�����x�E�,$D����I�6H�ډ���E�,$��[]A\A]A^�fDH�?[]A\A]A^��USH��@��utH�����tk�����uaH�uZH���IH9GuMH�_ H���Qk���lj��8i��H9�u3�C��tH����[]�H��H���H�{[]���f.������H����[]�f���SH���c�����xH�{ 1��t[Ð��{��[��H����H��������SH���#�����xH�C [���H��'H��?���H����U��SH���sh��H��tzD���H��D��1���u?�C��tH��H��[]��H���H�{������u�H�sH�=��1��	v��H���IH�KA�����H�5֐H�81��D���H���I��H�5��H�81��*���f.����G������AUATI��UH��SH�������xK�lj��g��H��H�pI����b����u_A�E��t
A���ubL��H����X�H����[]A\A]�L��H����lj��Dg��H��H�����H����[]A\A]�@H��L��H��[]A\A]���H���IH��H�5
�H�81��H������SH�������x����f��H��[H���l�@1�H���n���ff.����UH��SH�����H���������f��Hc�H�RH���JH��H�JH�B���t
���H��[]�f���ATUH��SH���=�����yUH��H�����A��H�H�@H�>�JH��H�PH�h���t
���D���e��H��H����D��[]A\�H���IH��H�5ێH�81�����f���AUATI��UH��H��SH�����H������A�Ņ�x#���e��H��D��H��[H��]A\A]���@1�L��������f���UH��H��SH��H���H�����xH��H���[]����@H��1����H��H��[��]���fD��UH��SH�������x"�lj���d��H��t,�P��tMH����[]�@H��H��[]�:���f.������t�H�y�IH��H�5��H�81����DH���H�x�8������-���H����[]����UH��SH��H���[�����y+H��迌����xH��H�߉�[]����H�������[]�H���IH��H�5#�H�81��a������SH��PdH�%(H�D$H1�H��?QH��I��H��u&L����J���H�T$HdH3%(u1H��P[�@H��@H��L���^��I������������d���@��H�������I�H���pc����@��uF1�H�����t3�����#��H���`u1���tH�t�D��1�@�����fDH�9�IH9G�����ff.���H���JH��t��H���H�=->�cr��H���JH����SH�����H��H��謌��H�Ǩt
�pa��[�fD�Cw��[ÐUSH��H����u2H�����t
H�+�����~LH��IH�5��H�81�蔌��@��u�H�+H��Hc�H��?�~FH��H	�H�+H��[]�D�H��`u��t�H�{u�H��IH9Cu��fDH���H����H��H�T-H��H��[]��H��ff.���SH����u3H�����tJH��ƒ�����w:H�
�Hc�H�>��f���uH���T��H��H��ƒ�����vƸ����[�f�H�{u�H�b�IH9Cu�H��[���H��JH����E1�1�H�=��JH���<O��H��t^�u�H�����t������u�H�xu�H��IH9P�x���H��[�?����H�������]���H��[����H�1�JH��t<E1�1�H�=�JH���N���fD�H�=v��o��H��H�U�J�@����H�=h���o��H��H��J���USH��H����u>H�����t5H��ƒ���t(��u#�����z���H����H��[]�j���f.�H���H�����AVAUATUSH������H�����tH��ƒ���tr��umH�߉���V��A��9�tM������L�#D�pD���0��tMI���L�#D���[_���pA9�t
�����tA��H�����H��[]A\A]A^�H���~���A��u�H���2r����t��@D��H���}h�ff.���SH��H����`��H��[���~��D��H���V��H�����^�����H��H�|$������x
H���DH�|$�VW��H�D$H��tH�������xt
�����H���H���xq����u�H�|$�
g��H��貆�����H��(dH�%(H�D$1���B��1�H�H�$�H��H�=?�JH��H�5��H�D$�d��H�D$H�L$dH3%(uH��(����ff.��SH��H�\$H�|$H����n��H�|$�O����xtH�j�IH�5;�H�81�����H���p����u�H���<f��H�����H��[�ff.���SH������xH�C [�f�H���h�����x��[�,]��H���IH��H�5Q�H�81��a����ATI��U1�S�?�H��@��H��tGH���χ��H���^��H�CH�=�JL��Hc�H�
���T@��H�ͽJH9�t>��[]A\Ð�����H�GH���ڒ��H�=ýJ����H���M��H���JH9�u����H�=��JH�
G�H�5��Hc���?����[]A\Ð��SH��H�t$����H�|$H����d��H��H�����������H��[����@��u	H�����u%SH��H���!�����xD=���t6��[��fD�����u�H�~u�H��IH9Fu�H���fD�[�H�j�IH��H�5ΆH�81��ޅ��ff.����g������SH������xH�C [�f�H���x�����x��[�<[��@1�[�@��ATI��UH��SH�H������tCH�H������tK9�t ��L��H���S�H��tG[]A\�f�����Z���������I�$��H������u
L����������x��y�L���?���H��H�X�3���H�5T�H�PH�9�IH��H�81��Ą��@��ATI��UH��S�Q��L����Q����x��x9�t'��L��[H��]A\��@[1�]A\�f���[]A\�Z��D��UH��SH��H���~��H��tH��[]�H��臃��H��H�h�{���H�5��H�PH���IH��H�81�����ff.����H����u$H�����t����������@��u��ueH�����tߋ
����ոH��`u#��t�H�zu�H�p�IH9Bu�f.�H��H����}��H��tH��H���#�����t۸�D�H���fD�H��`�c������G���H��<���H��IH9G�+����9�����SH��H����O��H��[���Ux��D��H����O����x%���H�������H�@�IH�5��H�81�观�������w�����ATI��UH��SH��L)�~Hc�H9�[]A\�f�HcUH9�H��O�[]A\�ff.���H9�v/UH��SH��H)�H���H��Hc�H9�}��)Ɖ�H��[]�D������f���H9����yAVAUI��ATI��UH��SH��t9H��L��H���e��A�ƅ�~TH��L��H��S ��wCM��tE�u[]A\A]A^ÐH���hj����u��E��xM��t�A�E[]A\A]A^�fD�����뿃��D��AUATUSH��H9�v;I��H��H��H��I���)e����~;M��tA�EI�D$ H��L��H��H��[]A\A]��H���IH�5#�H�81����H�k�II�T$H�5�H�81��݀��ff.�f���H��1��E��f���U��SH��H���V(��tH��[]�H��IH�K��H�5ׁH�81�腀��D���f(f���Hcǃ�H���I�����Hcǃ�H���I�����H���JH�@���SH����H��H���y��H�
ѶJHc�H�RH��H�R���[�fD��USH��H���~���觃����H��H����H�
��JHc�H�RH��H�R���H��[]���1��f���H�E�JH�@ �����fD��H�%�JH�@8���AVAUATUH��SH���H��IH9GuH�_ H��t~H����V�����T��H9�uj�CL���H��L�-]�L�%b�L�s��ME��MD�觐��H���/���M��M��L��H��H��[1�]H�5?�A\A]A^��\��H���b��H�#�IH�5�H�81��~��f.�����fD��S����H�=���I�����x��[��H�=�JHc�H�
���H�5��c7����[�ff.�@��H���B��H�����S�����H��H�=�~�����H�H���ff.�f���H������H�����XS�����H�]�JH��t���=B�J��xH���%S��H�6�JH���f���`��ff.���H���M��H��H���}������G:�����H��tH��H��~H�=ųJ���PH�p�IH�5�|H�81���|�����S1�H��H�=�|�jk��H����z��H��[�ff.�f���H�JH��t���=J��x�H���5R��H��
JH���f���H����Y��H��H���}������7j�����H��H�=~H�=�
J���fD��S1�H��H�=�{�j��H���i��H��[�ff.�f���H���IAVH�=]}AUATUSH�0�P��H��IH�5���H��H���z��H��������ƒ�����H����<��H�xH�5�"�r���H�;1�H����H�5u'�O��H�;1�H�����H�5>-�O��H�;1�H����H�5u���N��H�;1�H���H�5�|��N��H�;1�H��H�5�|�N��H�;1�H���H�5�|�N��H�;�H�3�H�5�|�N��H�;1�H�K��H�5E?�OS��H�;1�H����H�5e|�7S��H�;1�H���H�5W|�S��H�;�H��H�5D|�S��H�;�H�U���H�5|��R��H�;�����H����H�5�e��M��H�;�H�o��H�5fo�R��H�;1�H����H�5�{�R��H�;�H����H�5�{�R��H�;1�H�����H�5�{�hR��H�;�H�����H�5�{�MR��H�n�IH�;1�H�5�{�5R��Hc=f�J�)9��H�@H��H��H�\�J��M���
A�J���GE1�L�-'�JL�%0�II�UIc�H�;A��H�@H��L��H�p�~���H��H���3���D95�J�H�;H�
@�[1�]�A\A]A^�lY��@H������j���H��t-H���[���H��IH�8�P���fDH���IH�8�;���H�2�IH�8�,���H���IH�8����H���IH�8����H���IH�8���ff.�f����������H��H��H�=/�J�T��f.���H�4�4�ff.�@��SH���JH��E1�H�w1�H�=!�J��;��H�[����S��H��H���T��H��H������[�ff.����S��H��H���nT��H�����u�[��H��H��蝆���[�fD��UH��SH���^R��H��1�1�I��L�����H���C��H��H��[]�fD��AVI��AUA��ATI��USH���oV��L�����ID��Q��L��D��L��H��I��I�����QC��[H��]A\A]A^�D��ATI��UH�-[S�V��L��Z��ID��Q��H���/L��I��1�1�H��I����L���B��H����H��H����~��H��[]A\�f.���ATI��US�X��H��H�v�IH�8��B��H�5�JH��H��tgL��H���3��H�5]�JH����H��H���2��H�5:�JH��t]H�ߺ��2��I��H��1�L��:1Ҿ�EB��H��[]A\�D�H�=Dx�[��H��H���J�y�����H�=:x��Z��H��H���J��H�=x��Z��H��H���J�L�����ATI��US�W��H��H�v�IH�8��A��H�57�JH��H��t_L��H���2��H�5�JH����H��H���1��H�5��JH��tMH��1���1��I��H��1�L��91Ҿ�HA��H��[]A\þH�=Lw�Z��H��H���J��H�=Jw�Y��H��H���J��H�=w��Y��H��H�m�J�\�����AUI��ATUH��S��H��dH�%(H�D$1��S���������q�V��A�H��H�P�IH�8�@��H�5��JH��H����L��H����0��H�5��JH����L��H����0��H�5��JH���H��H���0��1�1�I��L�65�H���@��H��H�L$dH3%(�H��[]A\A]���{���H�$��t����L�e������)����H�=v�X��H��H�
�J�a����H�=�u�X��H��H���J�&����H�=�u�_X��H��H���J����Kp����~;H�$L�e��u.H���w���H���w���j���H�E�IH�5fwH�81��r��H�<$tH����v�������U���j�����ATI��UH��S��H��dH�%(H�D$1��Q����������H�p�IH�8��>��H���T��H�5q�JI��H��taL��H���/��H�5G�JH����H��H����.��1�1�I��L�
5�H���P>��H��H�L$dH3%(�H��[]A\þH�=�t�W��H��H���J����蛃��H�$��t����M�$$����H���IH�8�>��H�5��JH��H���7����H�=It�V��H��H�}�J������H�=5t�V��H��H�M�J�
����kn����~#H�$M�$$��uH���w���H���9u���j���H�<$tH���%u�������4T��1�1����)T���Dh��@��SH��H��H�t$�O����t.L�L$H��1�1�L�c����<��H�D$H��[�fD�#e��H���+t��H�L$H��L��H����r��H��[�f���A�1�1Ҿ��K���UH��SH��dH�%(H�D$1�H�$H��tFH��� t.H����t3H�H�$H��t&����H���H�~��D1�1�1�A���H���gKH��t7H��t1H�<$ttH��~?H�\I��H�ƺ*H�=C�JH�$�J3��H�T$dH3%(uZH��[]����f�H�v H�H�$H���E����f���fD�`��'��말H����e��H���B����kf��ff.���UE1�H��1�S1ҿH���0��H��1�1�H��I����L��c�;��H�CH��[]�f���USH������H��E1�1Ʌ�t1H����/0��H���M�����ċ��L�(x�3fD1Ҿ��/��H���wM��L�0��H�WxLD�I��H��1�1Ҿ��_:��H�CH��[]ú1��HQ�����USH������H��E1�1Ʌ�t1H���4�/��H���L�����'���L�x�3fD1Ҿ4��O/��H����L��L���H�gxLD�1�I��1�H�ᄆ�9��H�C�H��4HD�H��[]ú1��P��ff.���USH������H��E1�1Ʌ�t1H��1���.��H���:L�����}���L�+x�3f�1�1���.��H���
L��L�#��H�ZxLD�I��H��1�1Ҿ���8��H�CH��[]ú1���O��ff.���USH������H��E1�1Ʌ�t1H����.��H���K�����݉��L�x�3fD1Ҿ���-��H���WK��L����H�7xLD�I��H��1�1Ҿ��?8��H�CH��[]ú1��(O�����AUATUH��SH��dH�%(H�D$1���us��J��A�L�%� ����E1�1�L����:-��M��1�1�H��I����H���7��H�CH�L$dH3%(��H��[]A\A]�D��I���}��H�$��t2����M�,$���}�HJ���������L�%9{�c���@�+h����~HH�$M�,$��u;H��t�H���n����c_��H���kn��E1�1�1�H��H���)m���H����b��H�<$tH���n��������M��ff.�@��AUATUS��H������I��I�Խ��up�I����tsE1�1�1Ҿ4���+��1�1�L��zH��I����L���[6��H�{ udH��tbH��H��E1�1�[�1
H�=�J]A\A]�-��H�.�I����u��g^��H���om��H��L���L��[E1�]H��A\A]�"l��f�H�kH��H��[]A\A]ú1���L��f���ATI��UH��S�]`��E1�1�L��H�¿H���+��I���H��M��H�ᄆ��L��zH�rzLD�1�1��u5��H��[]A\�ff.�f���ATI��UH��S��_��E1�L��H�¿H���*��I���H��M��H�ᄆ��L�vzH��yLD�1�1��5��H��[]A\�f.���S��H��H���>E��H�����u�[�H�C�R4��f���ATUH��SH��H��H�t$����H�H�����G��������1�1Ҿ�H��A���0���tH�H�¸H9�rLH���'��A��H�ٿ��A��E1�H��D	����)��L��Z1�1�I����H���4���H��[]A\�D�K\��H���Sk��H�L$H��L���H���j��H��[]A\�fDH���@^��H������H���IH�5bjH�81��@g����ATUH��SH��H��H�t$���H�H����_F������1�1Ҿ�H���/���t
H�H9�HG�H���&��I���X�H��L�������E1�	����(��H��1�1�H��I����L�NZ�2��H�{H��� u%H�G�H��~�jw��H��H��[]A\�fDH��������[��H���j��H�L$H��L���H���h��H��H��H��[]A\�H���\��H����H���IH�5'iH�81��e�����U��H��H��SH���B��H��H����D��H��tH��H���A��H���[]ÐH��H���t��H���[]�f���S��H��H���>B��H��[H����f���AUI��ATA��UH��SH���T\��H��L��D��jH��I��L��x��H���.-��H��H��[]A\A]���H��H��1�1����H��H����*��PXH���H�
��H�5!hH���G0�HDʨH��H�<HD�H��IH�81��d��fD��ATI��USH�� H�H�.�dH�%(H�D$1�H��H�$H�l$�5A��I�T$H�zu'H��H��H���-��H�L$dH3%(uH�� []A\�L���:����[��DAWAVI��AUI��ATI��UH��SH��(H�dH�%(H�D$1�H��4u-I�<$I�6H�D$dH3%(uxH��([]A\A]A^A_��I��H�<$�L��H�\$�w@��H��L��H���	-����yM�,$I�L���H�,$H�\$�H@��H��H��H����,����~�I�.�x�����Z��f�H�H�� t:H����H��7t1�1��?��f.�H��u+H� H�?�t���H�GH��~��f�H��H�?��s��@��AVAUATUS�����DI��H���B����������M�,$I����A���I�M�����Y��H��1�1�H�@I��I��L�	P����.��I�.�� ��H����M�fH��thI���tBf.�I��M��~OH��~�1�L��I� uI�F H�<�H�����H9�|�I���u�H���H�����@I������R���@[�]A\A]A^�I�n�x����|V��H���e��L���H��[L���]H��A\A]A^�5d��L���}X��I�����1���D��f�H�����u�fD�F��ff.���UH��SH���@������H�_�IH�8��-��H�5��JH��H��txH��H������XC��H�5��JH��H��t9H��H������I��H��1�L� 1Ҿ�C-��H��H��[]�f��H�=d�F��H��H�5�J��H�=�c��E��H��H��J�h����;U��H���Cd��H��H��1�[L�2�1�H��]�b���SH���U��H���d��H��E1�1�1�H��[��b��ff.����USH��H���n?����t2�W��H��1�1�I��L��N��H���W,��H��H��[]�DH��H��[]�z���f.���ATI��U��SH���?����t7E1�1�1�1���t!��L���H��I��L�BT����+��H��[]A\��+T��H���3c��L���H��L�$�[H��]A\��a���SH���S��H���b��H��L���[1�1�H���a�����USH��H���^>����t2�9��H��1�1�I��L�l��H���G+��H��H��[]�DH��H��[]�z���f.���USH��H���=����t2�U��H��1�1�I��L�������H����*��H��H��[]�DH��H��[]����f.���USH��H���=����t2�EU��H��1�1�I��L��m��H���*��H��H��[]�DH��H��[]���f.���USH��H���>=����t2��T��H��1�1�I��L����H���'*��H��H��[]�DH��H��[]�Z���f.���USH��H����<����t2�T��H��1�1�I��L�dm��H����)��H��H��[]�DH��H��[]���f.���USH��H���~<����tJ�%T��E1�1�1�H�ƿH������H��1�1�I��L��J���S)��H��H��[]�f�H��H��[]�r���f���ATI��US@��tOH��H�H��xQ�S��H��E1�1�H�ƿH���g��L��1�1�I��L��J����(��H��[]A\�@H���HS��H���H�ԼIH�5�H�81��K\��ff.���ATI��US@��tgH��H�H��xitJH�����H��E1�1�H�ƿH������L��1�1�I��L�K���G(��H��[]A\��[1�]A\�m��DH���R��H���H�,�IH�5H�81��[����USH����wXH��uH�6H��H��[]�;���E1�1�1Ҿ��2��H��1�1�H��I����L��g�'��H�EH��[]ú1��>��ff.�f���UH��SH���^:����tZ�R��H���Q��H��E1�1�H�ƿ���H�ᄆ1�H��I��L��h1��*'��H�sH�{H��[]�'M���H��H��[]�R���f�H��������?H9�w	H�D?���P����AUATI��USH��dH�%(H�D$1������9��H�-�A���H��HD�E1�1�1�L������L��I��1�H��I��1Ҿ��j&��H�H�{ �ul�W���H�L$dH3%(��H��[]A\A]����H���k��H�$��t2��~bL�m��uY�8�����{w��H�-�j�\���@H�����V����~H�$L�m��uH��t�H���]���H�<$tH���]�������<���P��ff.���UH��SH��dH�%(H�D$1��^8����tR�P��H�|$H���h�S1�L���A���D$1ɾ�H��P���XZH�T$dH3%(H��u2H��[]��cM��H���k\��L�d�1�1�H��H���%[��H����P��ff.���AUATI��UH��S��H���7������L��H������H�I��� uuH�@H�X�I�mH��u�Nf�H��H����H9�HO�H�X�H��t2�� H��uI�E H�<���h��I�U�� u�I�EH9�HO�H�X�H��u�H��L��[]A\A]�fDH��H���������kL��H���s[��H��H���L��[L�_�]H��A\A]�"Z��f�PXH��H�G�m#��ff.�f���S��H��H���4��H�����tH�CH��4tH��t�[��H�C�[�H��������S��H��H����3��H�����t�[�H���g������S��H��H���3��H�����u�[�H���7������t1�1��p3��H���H�H���g�����ATI��U��SH����5����t'L���H��E1�L��J���"��H��[]A\��J��H���Z��L���H��L���[H��]A\�X���AWAVAUATUSH��dH�%(H��$�1�H�H�D$hH9G)H��$�dH3%(�H�Ĩ[]A\A]A^A_�H�_H��H�����H������ ��H�CH�D$H�D$`�E0��<H�H��<H�EH�H�\$H��H��H�D$H��H��H��H�D$PH�؉�A��H����t$|H��$�H�D$X���H�t$@�|$x�D$<@H�t$`H�T$�|$xH)�H��H��?H�1�H�H�H�D$H�t$H�Ɖу�H�4H�49�r�|$<H�H…�t��H�T$H�T$H�pH�|$H��H�<�H�|$(H�H�J�T/�J�T(�H)�H)�D$@���r��1҉у�L�L�9�r�H�t$(H�H��H�J�D+�J�D.�H��H�vH��H)�H)�D$@���r��1҉у�L�L�9�r�H�D$ H�D$`H�D$0I��L�d$L+d$ M9�|LH�D$H�|$H��H�t$(I��L�<�L���U(���E0E…���� L�d$I��L+d$ M9�}�H�D$H�t$0H9��kI9��bH�D$0H�D$L�d$HN�+H�|$H�t$(H�l$pL�D$L�d$@H�NjD$|�l$xA�ƒ�A��A��1��ƒ�H�<H�<9�r�D�t$<H�<1�H�E��t	���E��tD�4fD�4H��E��t��H�H�yI��H��H�J�D.�J�D)�H��H)�I)�D���r!H�L$(��1�A�փ�K�7J�79�r�H�L$(H�L�vI��I��H�I�C�J�D.�H��L)�I)�D���r H�L$(��1҉׃�I�?I�>9�r�H�L$(H�D$I��HL$PHt$XL)�HD$0I9�~L9D$H���H�l$pH�t$0H9t$h�/H�D$ HD$0H�D$`H9D$h���H�}H�WH� uH�W H�D$0H�D$H�uH��H�uH�E H��$�dH3%(��H�t$H�Ĩ[]A\A]A^A_��L��f��t$x1��ƒ�I�H�9�r�L$<H�L���t��H�D$0H�D$H�t$H��I�wH�H��H��I�J�T(�K�T/�I)�L)�D|$@A��A��rA��1҉у�L�L�D9�r�H�H�pI��H��H�J�T+�J�T(�H)�I)�D$@���r��1҉у�I�<H�<9�r�H�D$0����@�t$x�ƒ�I�H�9�r�t$<H�L���t��H�L$H�D$I�wH��I��H��H�H��I�J�T(�K�T/�I)�L)�D|$@A��A��rA��1҉у�L�L�D9�r�H�H�pI��H��H�J�T+�J�T(�H)�I)�D$@���r��1҉у�I�<H�<9�r�H�D$ ���H�D$0H��H�D$����H�C H�D$�9���H�����H������:G��f.�SH��H��dH�%(H�D$1�H�@H�xiH�t6H�4$��u;��uH�����t
�����
t#I���+H��H�=I�J�4���
f�H���X�	H�T$dH3%(uH��[�f�H���XK��H����F��ff.���USH��H��dH�%(H�D$1�H�$H� ��H��H�.@����H�H����H��A�1�1Ҿ��j*H��H��t7�H��H)�����H�ètH�3�IH�0H��u[H�������HE�H�L$dH3%(H����H��[]�@H�v H�.@���j���H���D��H���]������H�=ĚJ�����u�I����H��H�=D�J�����H��H���/��������_���H�5�IH�5�PH�81��M���'E�����ATUH��SH��dH�%(H�D$1�H� �TH��H����TL�%M�JH�M���\H����H��A�1�1Ҿ��)H��H��tR������@����H�s�H���V���H�tH��H�@H��H�4$@��t1H�����	H��H�T$dH3%(H����H��[]A\�fD@��uH�����t�E����
t�fDH��I����
H�=��J�d��H����H������I����E�����:���E1�1�L��H��H�=ڗJ�%��H����������N���@H�v H��������H����B��L�%�JH��M��������	H�=f@�41��I��H�ʗJ���DH���H��H�������;C��H�,�IH�5�NH�81��K��SH��H�� H� dH�%(H�D$1�H�u[H��H�{ tH�D$dH3%(uvH�� [�H��H�$H�D$�
;��H�C �uH�����u2H�밐�+D	H�C �u�H�����t�H��H��� 0���fDH��H���
0����fB��fD��S��H��H���'��H�����uH�������[�H�{ H��H�u��H�C�uH��H�����z��f.���H��H�������H���fD��S��H��H���'��H�����u�[��H������[�f���AUI��ATUSH���Z)������A��u
I���������@��I��I�D$� �8����H��H���o��E1�1�1�1���|��H��L�`A��u
I������rH�k@���TH�C I��1�1Ҿ�L��[L�����H�s L�cH����I�$�� ��I�D$H����I�|$�Q�I�l$�S@H����H9��HH��L��L�,��)��H��H��?H�H�L�,�A��u
I�������L��H�����I�4$�� u�I�t$H9���I�D$ ��H��H����H���X�������L�����I�$�� �;I�T$H��H��H�
�M��H��?HֺH��?��L���*������DH����������H��H���8-�����I�E�ƒ��������� �H����H�<���I�����DL��L����,�����H��L��H��?H�H���B��H���IH�I�D$H��L��[]A\A]�fDH�[H�H���B��H��L���N#������f��<��H���K��H��L��1�[L���]1�A\H��A]��I��H�������@L��H���5,��H�k@�����������f�L���H���s���H��������?I�EH9�������H���IH�52JH�81��F��ff.�@AUATUSH��(H�|$H�����n �V(H��L�fH�.L�n�N�l$����C,�����@��tlH�|$@���
@����H������������
�"���I��4�+H��L���L$��|�L$I���vf�@����H��������U����
�n������e�������ti��td@H��L�D$��+H�=ךJ�L$�|	���L$H���t$H�+L�cL�k�K�s H��([]A\A]�D����u�H�|$�������}@��uGH�����t>������p@��u4��
�/����L$�
1���L$�D@����H�f��H*�f.��h���f.����~.�f(���fT�fT�f.��f.��.���f/�f(��X��$�\��X��XL$�L$f(�����H�|$�L$�@U���L$H�D$����H�@H�I�L������L���L$E1��V@��H��H���;���L$H���z���DH�0fH~�H9��fH~�H��<�������hH��H�����C,���f�M���WI��4t[A���A��u1I�����t(A�E����
uH��L���L$����L$H���H��L���L$�z�L$H��H�D$�ƒ���t,���H�������H�A�4E1�����K���H��A�4E1��.��f��C,f(��|$���f(��L$����L$H������G����fDf.�vfP�fP�����9�upH�D$�CH�H��([]A\A]�A�4E1����f��\��X��XL$�L$f(����H��K�|$�L$��	�L$H������H�q�fH~�H�CH�0H9�t+fH~�H��<�������H��H���P���f(�����B���H��H9�tiH���H��H��?H)�H	�H��H�|$�~D$����H��L���L$���	�L$H���+����H��H��H��H�����@f.�����f(�f�fT�����f���}���DH�D$�CH����H���L$�(���L$H���g���I���_����L$�W:���L$��fH~�H��H��H���8���H�
�E�H�5DH�=D������SH����2��H��H������1�[�@��AUATI���UH��SH��dH�%(H�D$1��B�H��H��H�$�3
��H���U�� ��H�5��JH��H����H���?��H�5i�JI��H���-H���?��L�cL�$1�H�L��)1�L��H�C��H�C���H�$H���	��H������ ucH�[ H�sH��t*H�{��1��H�sI����H�=��JH�$�K��H�T$dH3%(���H��[]A\A]��H���f.�H�5��JH�[ H�������H�=GB�K$��H��H�i�J���@H���0
��H��@����H���
��H�����H�=B�#��H��H��J����6��ff.���AVI���AUATI��US�t�H��H���i��H���[H�k�� uH�k H�5�JH���L���=��H�5�JI��H����L����=��H�5đJH�EH����L������L�uI��1�H�EL��$1�L��H�E���4
��H������H��uR�� u=H�[ H�{tH�sL�C���H�=��J���[�]A\A]A^�fDH���f.�H�����H���H�=@�"��H��H���J�9����H�=�?�"��H��H�ݐJ����H�=�?�_"��H��H�ŐJ����H���H��H������AVAUI���ATI��US���H��H������H���KH�k�� uH�k H�5ǎJH���L���V<��H�5��JI��H����L���k���H�EH����H�UI��L��$1�L�m1Ҿ�L��H�E���H���5��H��uk�� u>H�[ H�{tH�sL�C���H�=J���[�]A\A]A^��H���f�H�5�JH��ttL���;��H���\���@H���
��H���H�=|>�� ��H��H���J�
����H�=�>�� ��H��H���J����H���	��H�����H�=A>� ��H��H�U�J�l�����AVI���AUATI��US�$��H��H���K��H�����H���nH�k�� uH�k H�5
�JH���1L���:��H�5�JI��H����L�����H�5ǏJL�uH�EH�E4H�EH����L���~��I�پ�L��H�����L�6��1�1����E ����H���\��H��uR�� u=H�[ H�{tH�sL�C���H�=�J����[�]A\A]A^�fDH���f.�H���H��H���H�=z<�/��H��H��J�:����H�=K<���H��H�͎J����H�=<����H��H���J���H������H������AWHc�AVAUATUSH��H��H�T$�3��I��H���S��I���UM�N�� uM�N �����C�M��M��I�l��I�$I��I9���I�<$���H��H��u�L�%ƆJM����L�-�=fDI�?���s;�����GI�7M��L��H�=6�JI�����I�G�I9�u���������E1�1�L����P���L��'I��H�|$1�1Ҿ�����H��H��[]A\A]A^A_Ð�������E1�1�L�������L� )I����H�=J>�W��I��H�ͅJ�����L���8��I������.��E1�1�L��H�ƿH�����L�'I���>���@�.��E1�1�L��H�ƿH���c���L��(I������I�?�LI��H�5%�H��H��IH�81��a7�����AUATUSH��xdH�%(H�D$h1����KH�Ӹ���1H�D$0�o��H�D$@�D$XH�D$0H�D$84�ƒ���������D$\H�D$HH�D$PH�L$H�T$(H��H�t$ ��D��H�H������H�|$X�H�l$ @����L�d$(A���uA����I�������A�$����
���D$H�\$0��tL���4�I�ĐH��L���ua	H��tPH��L���w	�H���8w	H��L��I���*w	L��H���o�	�H����	H��H���w	H��@H�L$hdH3%(H����H��x[]A\A]�fD@��u"H�����t�E����
����f.���u
H�������L�L$0L�1�1Ҿ�H������L$\����H�|$@H�\$0H����H�|$8H��4�S���@����@��uH�����t�����
��H����kH������@H�����H�������������������D$\�@�D$HH�D$P���D������$���H�sH���U��H�=)�J�D���������������.H�
o9��H�5�7H�=�7����H�|?H����	H�|$8H��H�D$0H��4���?����H���D$\f�H9��0���H���H��H��?H)�H	�H��H�D$�~D$�����H�0�D$H�XD$PfH~�H9�t'fH~�H��<������t$H��H��������l�H�����@H��H��H��H���|���@H����	H���h����H�T$0H�5��H���
�������H���H��H���0����T$H�\$0�������I�O�d$�I������1��B���]*��ff.�f���AWAVAUATI��UH��S��H��(dH�%(H�D$1��D��H�D$���@���W����I�$H�$����I�D$H�D$���H�|$���������>���H�L$H�4$L�%&AE1������M��1�1�H��I����H���Z���H�[H��4�lH�T$dH3%(H����H��([]A\A]A^A_�fDH�$H�D$H�|$�S���H�|$��5�����I����������M���H���+��H�$H��tH���*5��H��H�L$H�$4�y��.���������H�|$t
H�|$�q5���1������H�$4H�L$�4L�%@����f��K�����YH�|$�
��H��u4H�L$��t?��uH������t�����t'f�H�4$L�%�>���H���h4��H��H�D$��u�@��u�H�����t�H�E�ƒ���u�H�uH��t��H�=�jJ�$���H�L$��t�H�EH��H�$�� ��H����H���>���H��4��H����H�UH�A�H������H������I��H��+��H�EL�l$�;H����I9����H�EJ��H��L��L��I��H�D$��7��H��H�E�� u�L;u�����H�E ��H�=��1��,����������H�E�0���E1��[�����u$���b���H������U��������
�G���H���IH�0H��t�+H�=�hJ����������1Ҿ+H����)����H�E����I�@E1��3H��H����I9���H�UJ�<�@��t#H�I�L��L�xHI���� u�L;u}XH�U ��@��utH�����tk�����
uaH�����H��H�E�H�U �V���L��E1��*��H��H�����H��H�E�M���_���M�H��L��H����	H���E����%��M���2���M�H��L��H���q�	H������f���AUI��ATUSH��H�.H�dH�%(H�D$1�H�,$��tPA��A��tGH���IH�0H��u1�H9�����H9�DM��f���H�=��J�O���H�,$��u������H���������������؃���t
�����u�������@������I��H��H�=�J��I�UH�z�@H��H��H���W���A��H�L$dH3%(D���H��[]A\A]�f�H���IH�0H;s��@�؃����z���������b���H���IH�0H��t��H�=�J�<���H�,$���@���H��H�����A���i���DH����������E���������f.�@���n���H������a����E�����R���H;u�H���H��t��H�=��J���H�,$�������H�4$H���*��A�������E#��L�����ff.�f���ATUSH��dH�%(H�D$1�H�z��H�.H�H�,$��tRA��A��tIH�*�IH�0H��u1�H9�����H9�DM��@��H�=\cJ���H�,$��u������H���������������؃���t
�����u �������@�����I����H��H�=�aJ��H��H��H����A��H�L$dH3%(D���H��[]A\�H�A�IH�0H;s�|@�؃���u�������n���H�A�IH�0H��t��H�=�aJ��H�,$���T���H��H���i���A���n����H������3����E�����$����f�@���~���H������q����E�����b���H;u�X���H��t��H�=oaJ�j���H�,$�������H�4$H���b(��A�����H���IH�5�,H�81��r)���� ��ff.�f�M�I��4�kAWAVI��AUI��ATM��UH��SH��H��@���E1�@��u
H���������������M�ງH��H�=1qJL�L$���L�L$H��H��L���4�1����t	I�,$M�l$I�l$H���t@��tA���-���@��u
H��������؃�����M�D$���H��H�=oJ�J�H��H��H���������t
I�\$M�t$H��[]A\A]A^A_�f.�A�����H�πIH�0H����I9�A��������DI�8I�pI�PI�H����������؃���t������2���f.������t&@������H����������E���������A���VH�W�IH�0H���3H��H������������fD�E�����������t�E��������D�ȃ���t-A����I���������A����������H�ɄIA��H�0H��t��H�=YoJ�t�M�$�������L��H�����������I�l$H9����6���DH�1IH�0H��tẇH�==nJ�L$���u�I�D$A���L$H�������H�=�oJA����M�$������
�������������f�H���IH�2H;s�f�����^���H������R���������D���H;p�:���A�������'���H��H���r$�������Q����H�Q�IH�0H;u�f���A���\���I�������O���A������@���I;q�6���A��H��tF��H�=7nJ����u1M�$���D��H�=4lJ���I�l$����������I�4$H���#���������H���.�����H�=OlJ�L$��L$��t
I�D$����A��I�l$���fD��ATI���US���H��H����H���H�k�� uH�k �������H�E4L��I��1�H�E41�L����H�EH�EH�E 4H�E(4�m�H�} H��4uCH����H��uI�� uH�[ H�sH�{[]A\�G���H����f.�H�U(I��H��H���N����@H�����H��� t���fD�;��H���C'��[L��]L�7���1�1�H��A\�%��f�H����H�����AUATUSH��L�*I��4�H��H��I��@����A�����B����B��M9���fDL�#L�cL��@����@��u
H����������������H��L�C�H�=�aJ��L��H��H������~H�kH��[]A\A]�D��H�=TdJ�/�L�+���5@A����D���������L��I�عH�=�bJ��L��L��H���}�������L�cL��@��� ���A�������S���~�C����I9��K����B���fDI������m���A�$������D�����tA�$�����Q����D�����t-A���4���I������'���A�E��������fD�C��=���CH�8IH�0H���d�KL��L���u�����H�:H�rH��[]A\A]�fD�U�����i�����t�E��������D�����t-A������I����������A�$�������fD�C��}���CH��~IH�0H�����KL��H���������H�)yI���SH�0H���7�K�j���fD���BH��xIH�0H��������K����fD�Cu��R���D�C��������H���IH�0I;t$�����A�������I������~���A�E�����n���I;u�d����C���C�O���H�3L���j���x���DH�Q�IH�2H;u�����������H��������������������H;p�����S�����C�i���H��H��������f.���H�=t_J�����ucH�CI���������H�=�^J��L�c���W�������fD��H�=�_J��L�+��������h����L�c�H������CH��u�K������SH��u&�K�=�����H�=�_J�&���u�L�+�����H�=N^J�	���tH�C�L�c�=���fD��ATI���US����H��H���.��H����H�E���H�]�� uH�] H�4H�C4H�C����I��tlL��L�*1�1Ҿ���H�{H��4uH�;H��4t)H�s[]A\���@H��H�KH���I���H�;H��4u�[�]�A\����DL��L�n1�1Ҿ���H�{H��4t�H��H�������f�H���h�H�E����ff.�@����t��tHc��K��H��@��f.���AT��A��USH��H��H��dH�%(H�D$1�����H��C0u{H�{ 4H�$t1H��H�s H��S(�S0�����E���y0��H�{t
H�4$�o+��H�{H���c+��H�CH��H�CH;CtAH�T$dH3%(�u6H��[]A\�H��D���U��H�{ 4H�$�v����S0�H��������q�����S��H��H�����H��H��H�����[�f���AU��ATI��H��UH��S��H������H���I���S���L��L��H��蕧H���[]A\A]�D��S��H��H�����H��H������[�ff.����AUH��I��ATU��SH��H��8dH�%(H�D$(1���H����L�c�� uL�c ��L�����H��I�D$H��4�;H�D$L�D$��1
H�l$I�4$H�=oJ���H��H��I����H����L�c�� uL�c A�D$ ����M��������I�t$M�D$���H�=RnJ�=��H���E�H����L�c�� ��H�t$�H�l$�v��I�D$I�l$H�T$(dH3%(���H��8[]A\A]��M�������e���I�|$H����(���H��L�c��H��� � �������I�l$H�t$�H�l$����I�D$�q���DH����H��d����L�c �-����H����H��	������ff.���AUI��ATA��USH��H��(H�|$H��dH�%(H�D$1���H���.H�k�� uH�k D��L�����H�}H�D$H����H����'��H�uL�D$��1
H�=AkJH��uH�u��H�=�kJ�v��1�H��H�����@���r�H������ u/H�C ��u/H�T$dH3%(���H��([]A\A]�H�C��t�H�pL�@���H�=OjJ���H����H��uh�� uSH�[ H�C�DH�t$�H�D$�,��H�E����H����H�����H����H��<���H���f.�H�����H�����ff.���ATI��U��SH��H�� H�|$H��dH�%(H�D$1��?�H���	�� ��H��L����J��H�sL�D$�H�D$H������H�=QhJ����H�{H�����tpH��uBH�D$H�t$�H�D$�!��H�CH�T$dH3%(���H�� []A\�H�sL�C���H�=gJ�j����H�t$H��tU�p%���fDH�[ �+����H�3�1
H�=9gJ�$���C����H���p�H�����H�t$�H�t$�\��H�C�6����n
��ff.���AVAUATI��U��SH��H��0H�|$H��dH�%(H�D$(1����H������ �TH�=�eJH��H���T�;��H�=�eJI��H�����#��L���I�����H�3L�D$��1
H�=�dJH�D$�#��H�D$I9��H����L9���<�B�uH�����t������(H�{H����H���:�H����H�{H�t$��#��H�L$(dH3%(��H��0[]A\A]A^�f.�H�{H��t�H�s����H�sL�D$���H�=cJH�D$�I��H�CH�C��H�=QdJH�[ H�������H�=���k���H��H�)dJ���@H�{H����H�D$H�t$ �H�D$ �A��H�|$H���D��H�sL�D$���H�=�bJH�D$������H�����H�����H�=7�
����H��H��cJ����H�s����H�sL�D$���H�=�bJH�D$�3��H�CH�C�4���fDH�sH�{���H�sL�D$���H�=AaJH�D$����H�D$H�CH�D$H�t$ �H�D$ �5
��H�C����@H�����H�D$H� tH�@�8_tH�D$����H�����
��H��mIH�5GH�81��u��D��AU��I��H��ATI��US��H�����H��H�ƃ�~%L���M!��H����s���H���[]A\A]�L��Hc��u��H������AT��U��SH��H���)��H�{ I��tH�{L���� ��[�]A\�f�H�Ɖ�����H�����uH�C ��@H�{ u�[�]A\�ff.�@��H�F H��tH��H�F ��DS��H��H�����H�{H���f ���[�ff.�@��AT��I��H��UH��S�����H�����tH����D��L��H��� ��[�]A\�����f.���S��H��H�����H�{H������H�k t�[����ff.�@��AWAVAUATUH��S��H��8L�ndH�%(H�D$(1�H�FH�8H�$�� �FH����H�����H���H�l$I��1��z��1�L��H�������iH����H9���L�4�J�D2H��tnH�D$H��E1�H��H�`hIH�����H�=җ��L�1��(��H�t$H��4t=L�������H�$Hc�H��� u�H;J}MH�B L�4�H��H��u����L�<$L������L��J�0�t���H�D$�@I��tRL��L���o��H��H�D$H�$�H�\$(dH3%(u0H��8[]A\A]A^A_��H�x����L��谫������f���AVI��AUATA��USH�� H�^ L�ndH�%(H�D$1�H�FH�SH�8H�D$H�V �� �
H����H���B��L��D��E1�H��L�$����1�H��H���,���Ff.�H����H9�}tH��H��H��� tFH��H����H9�}DJ�4 H���H��A��H�D$Ic�H��� u�H;H}.H�@ H��H��� u�H;X}H�@ �f��H�����빐I��tRH��L������H�D$H�D$H�D$�H�\$dH3%(u-H�� []A\A]A^�fDH�x���H���0�����	��f���S��H��H��H�� dH�%(H�D$1��
���H��H�\$H�$��H�|$dH3<%(uH�� [����f���AT��UH��SH��H�^L�f H���/
��H��H��� tdH����I9�taH������H��� t H����I9�tH���[]A\�fDH�CI9�u�H�}u8H��H��[]A\����H�CI9�u�H��H�t$���H�t$�H�����H��H��H��[]A\�E��D��AU��ATUH��SH��H�^L�f H���]��H��H���2��H��� t*H��A���I9�t'H��L��[]A\A]�f.�H�CA�I9�u�H������H�}I��t/L���g��H�E�u�H�����t�H��H������f.�H�����H��L��[]A\A]�f.���SH�Ή׉������H��襴���[�ff.���AUI��ATA��UH��SH��(H�~ dH�%(H�D$1�H��H�u�t���H��H���i���L��D���.��H��H�\$H�$��H�T$dH3%(uH��([]A\A]��H�����U��SH��H��H�nH����
��H��H�����H��uH���[]�H�C�l��ff.����AWH��AVAUATI��U��SH��H��dH�%(H�D$1��>��H������ ��H��L����I
����H��I���L���H�k I��H�$H��4��L�{(H�C 4A��@�������H��bIH�0H��uWL9��@H�,$I��M��I��L��L��H��L���:�H�L$dH3%(��H��[]A\A]A^A_�f���H�=DTJ���L�$$��u��@����H��������E������A��A��t�E����u%D�������A��uI���������H��I��H�=�RJ����L��H��H���&��������L�$$����H��H�,$L��I��L��M��I�����f�H�QiIH�0H;u��@A��A���z���D������U����If�H�[ �$����H�����H�����H�C L�k(���A�$����� ���H�fIH�0H��t��H�=RJ���L�$$����L��H���)������@A���N���I������A���A�$�����1���I;t$�&���H��t��H�=
RJ�H��L�$$���R���H�4$H���@��������fD��AU��ATI��H��US��H���s����H��I���v���I�l$H��H��4t0H�����@��t~H��_IH�0H��uGH9�����t+DI�\$����M�l$A��u
I������zH���[]A\A]�f���H�=MJ�o�����oI�D$H��������؃�����M�D$���H��H�=�KJ�S��H��H��H������������v���I�\$���P���H������C���H��L���B�M�l$A���A����/���fDH������l�����������؃���t������T���D�����t&@���;���H������.����E��������H��cIH�0H��t��H�=%KJ�@��I�l$����H��H�������������fDL��L���m�H���[]A\A]�DI�l$�'���fDH��eIH�2H;s�������}���H������q���������c���H;p�Y���H��t��H�=�JJ�����t"I�D$H��H����������I�\$����I�l$���f���AU��ATI��H��US��H�������H��I��趭��I�l$H��H��4t0H�����@��t~H�]IH�0H��uGH9�����t+DI�\$����M�l$A��u
I������rH���[]A\A]�f���H�=�HJ������gI�D$H�������؃�����M�D$���H��H�=hGJ���H��H��H����������x���I�\$���R���H������E���H��L����M�l$A���C����1���H������t�����������؃���t������\���D�����t.@���C���H������6����E�����'����H��`IH�0H��t��H�=�FJ���I�l$����H��H�����������L��L����H���[]A\A]�DI�l$�/���fDH�1cIH�2H;s�����������H������y���������k���H;p�a���H��t��H�=�FJ������t"I�D$H��H�����������I�\$���I�l$���f.���AUI��ATI��U��SH��H�|$H�����I�$��N�� ��M�d$ ��L������I�\$H��H�D$H��4��I�D$4A��������A�D$���A�D$tmH9���H��H�\$H��H��L��H��H������H���[]A\A]�fDI���g������H�=TDJ���H�l$���Uf���u
H�������A��A������H��L�D$�H�=�BJ���H��H��H��������t H�l$�Q���H��H�\$H��H���>���f�H�\$H���/���L�����I�$�����������A��A��t������b���f������t&@���L���H������?����E�����0���A�D$���A�D$����H��H������3����I�D$H���[]A\A]���A�D$H�YXIH�0H�������A�L$�5���f�H�A`IH�0H;s�����@�������H�����������E�����x���H;u�n���A�D$�tjA�D$�Y���H�t$H��������D��A�D$H��\IH�0H��uA�L$����fD��H�=|AJ���H�l$��u��	�����A�D$H��uA�L$덺�H�=�AJ�c����u�H�l$�[���D��ATH��I��U��SH��H�� dH�%(H�D$1��d��H������ ��H��L����o���H�kI��H��4��H�C4H��H�,$H�D$����L��H��H���b����u6I��H�KH��H��L��蹙��H�T$dH3%(�uDH�� []A\�y�L��I��H���H�[ �f����H�C�f�H������H��:�������ff.���AUH��I��ATA��UH��SH���a��H�E����� ��H��D��L���j���L�eH��I��4t-�taA��t[�E��x�EtJI9�����t�H�]H���[]A\A]�@��H�=�;J���L�e���D��tS�؃���tyI����H��H�=b:J���L��H��H������������u�H���[]A\A]�fDH�����t���������؃���t�����u�DD�����t-A���r���I������e���A�$�����U���fD�E������EH��YIH�0H�����ML��H���%�������A���H�m �z����H�����H�E�U�������EH�STIH�0H��������M�l���fD�Eu����DH�)\IH�0H;s�����A�������I������z���A�$�����j���I;t$�_����E�tE�E�N���H�uH�����������q�����H�=9J���L�e��������������EH��u�M봺�H�=99J�t����u�L�e�N������ATH��I��U��SH��H�� dH�%(H�D$1��t��H��uz�� t=H����L�����H�;4H��u.H�+H�L$dH3%(�uVH�� []A\�DH�[ �f�H�$H�H��H�D$����H�H��H���Y������H���8��H��v����[�ff.���AUH��I��ATA��UH��SH�����H�E����� ��H��D��L�����L�eH��I��4t-�taA��t[�E��x�EtJI9�����t�H�]H���[]A\A]�@��H�=�6J����L�e���D��tS�؃���tyI����H��H�=25J�ݼ��L��H��H���?������u�H���[]A\A]��H�����t���������؃���t�����u�DD�����t-A���r���I������e���A�$�����U���fD�E������EH�8VIH�0H�����ML��H���u�����A���DH�m �z����H���P��H�E�U�������EH��PIH�0H��������M�l���fD�Eu����DH�yXIH�0H;s�����A�������I������z���A�$�����j���I;t$�_����E�tE�E�N���H�uH���%������q���D��H�=�3J���L�e��������������EH��u�M봺�H�=	4J������u�L�e�N������ATH��I��U��SH��H�� dH�%(H�D$1�����H��uz�� t=H����L������H�;4H��u.H�+H�L$dH3%(�uVH�� []A\�DH�[ �f�H�$H�H��H�D$���H�H��H��詿����y��H�����H��v�����ff.���SH��H��H��H�|$���5���H�sL�D$���H�=�1JH�D$�ѹ��H�����uH���[�H���6���fD��S��H��H������H�����u�[�H���������SH��H��H��H�|$�����H�sL�D$���H�=�0JH�D$�A���H�����tH�CH��4tH��t$H���[�fDH�CH���[�H���}���ff.�f���S��H��H������H�����tH�CH��4tH��t�[��H�C�[�H���!������SH��H��H��H�|$�����H�sL�D$���H�=�/JH�D$�a���H�����uH���[�H�C�A������S��H��H���n�H�����u�[�H�C����f���SH��H��H��H�|$���5�H�sL�D$���H�=�.JH�D$�ѷ��H�����tH���[�H���6���fD��S��H��H�����H�����t�[�H���������S��H��H����H�C�uH��H������V���fD��U��SH��H��H���y�H��H��H�������H��t'H��������H9�wH�P�u�H���<��H��H��H�����H���[]�f���AT��I��H��US��H��dH�%(H�D$1����H��H�����L��H��H���z����uH�����u>H��H�,$���H��L��H���o���H�L$dH3%(�u!H��[]A\Ð�����u�H��H���[�������@��AT��A��UH��H��S�X�D��H��H���Z���H�}H��H�����HE}���[�]A\�f���SH��H��H��0H�|$��dH�%(H�D$(1���H�SH�D$H��4��H�{ @��t@��ubH�����tY�����uO�Z���H�sL�D$�H��H�=r+J�]���H�C�tFDH�L$(dH3%(�uAH��0[�DH�|$H�t$�H�D$�GVH�C�u�H�����t�H��H���,�����D��S��H��H��H�� dH�%(H�D$1��
�H�SH��4tH��H�$H�D$�z��H�C�uH�����u"H�|$dH3<%(�uH�� [��H��H���������fD��AT��I��H��US�����H��H��茙��H�����t[�]A\�f.�H��L���5���[�]A\�ff.���AT��I��H��US���)��H��H���,���H�����u[�]A\�f.�H��L������[�]A\�ff.���S��H��H�����H�sH����H��uH������[�H�{ H��H�u�ɔ��H�C�uH��H���֍���A������AT��I��H��US���i���H��H���l���H�����u
[�]A\�I�l$@��uH��L��脍��I�D$ ���fD��S��H��H����H�sH���2���H��u
�[�fDH�������[Ð��SH��H��H��H�|$�����H�s��L�D$�H�=['JH�D$�a���H�������H�C ������8�tH�{H�t$�[���H���[���U��SH��H��H��H�|$���R�H�s��L�D$�H�=�&JH�D$���H�������H�C ������8�tH�t$������H�{H������H���[]�f���AV��AUATU��SH��L�nH�������H��I���Ԗ��I�}��H�kH�E ��H�} ��H��I��葶��H�S H��L�4A��u
I�������H���*���H�kH���^���H�S H��L�dA��t+H������H�C H��H�C H��t1[�]A\A]A^�I�����t�L��H������f.�H�sL�����H�C �[]A\A]A^�fDL��H������V���H��GIH�5��H�81�����S��H��H����H��[H���vf���S��H��H���~�H��H���S����[�ff.����AWAVI��AUA��ATA��USD��H��XdH�%(H�D$H1�@����H�H�4$H���r��E����H��������H9��3H�<�H�D$H�|$���H�D$ 4H�D$����H�������H�؆��HD�H�D$(�D$0D��D��������	�	ЈD$0����E1�H��H�l$@�>@H����I9���I�FJ��A�4H��H�޺L��I��H�D$@�>��I��� u�M;~}~I�F ��f.�H��������H9��JH��H�<�H�D$H�T$���H�D$ 4H�D$H���������H��L����1�1�I�پ�L�����H���Z���H�l$E����H�E��H��膳��H�uH�L$(I��� �nH�uH��I�غL��H��?H�H������$fDH����H9�}$I��H��H��H��I��H�U�� u�H�UH9�|�H���Ȥ��H�u�� �H����H��H��H��?H�H����E��t[H������QDH�E��H��貲��H�uH�L$(�� ��H�uH��I�غ��H���A���E��u�H�-FIH�0H�u@��u2H�����t)H���G���DH�����H������1�詨��H��H�\$HdH3%(H��uxH��X[]A\A]A^A_�@H�����k���@H�������@H�u����H���������H������5���H�IIH�5R�H�81��{����H��HIH��H�5�H�81��[�ff.���ATUS������I��H�������tN��t
I�4$H��upE1�1ɺ�4��ש��H��1�1�H��I����L����I���H�C[]A\����H����L���H��[L��w��]H��A\�H��[H��E1�]��A\�g����1�����ff.���ATUS������I��H�������tN��t
I�4$H��upE1�1ɺ�4�����H��1�1�H��I����L�~��y���H�C[]A\����H�����L���H��[L��v��]H��A\�x��[H��E1�]1ɺA\����1����ff.���AVI��AUI��ATA���US葓���H��H���!���H���y���H����H�k�� uH�k A����E��t	I�6H��uVH�E4H�E���I��L�����uL���1�1�L�ᄆ�k���H�E�[]A\H��4A]A^HD�Ð[L��]E1�A\�A]1�A^���fDH������H��U����1�D��������AVI��AUI��ATA���US葒���H��H���!���H���y���H����H�k�� uH�k A����E��t	I�6H��uVH�E4H�E���I��L�7���uL�L�1�1�L�ᄆ�k���H�E�[]A\H��4A]A^HD�Ð[L��]E1�A\1�A]1�A^���f�H������H��U����1�D��������SH�=~��_��H�h>I�����H���H��H�5��H��:���H�;�����H��~��H�5 �����H�;�����H�m��H�5i�����H�;1�H���H�5����H�;1�H����H�5��Է��H�;�H�{��H�5��蹷��H�;�H�zz��H�5��螷��H�;�����H�O���H�5"胷��H�;�����H�Ty��H�5���h���H�;�����H�9y��H�5w��M���H�;�����H��w��H�5$��2���H�;1�H�ƅ��H�5������H�;1�H�����H�5������H�;1�H�����H�5�����H�;1�H����H�5���Ҷ��H�;1�H�����H�5��躶��H�;1�H�����H�50�袶��H�;1�H�����H�5�芶��H�;1�H�����H�5��r���H�;1�H���H�5��Z���H�;�����H�����H�5p��?���H�;�����H�����H�5\��$���H�;1�H�8���H�5�����H�;1�H� ���H�53���H�;1�H��j��H�5$��ܵ��H�;�����H�m���H�5A����H�;�����H��u��H�5W�覵��H�;�����H��t��H�5苵��H�;�����H��s��H�5���p���H�;�����H�s��H�5���U���H�;�����H����H�5��:���H�;�����H�����H�5|�����H�;1�H�#��H�5������H�;�����H�����H�5:����H�;�����H����H�5)��Ѵ��H�;1�H�e���H�5�蹴��H�;�H�
r��H�5��螴��H�;�H��q��H�5�胴��H�;�����H���H�5���h���H�;�����H����H�5+��M���H�;�����H���H�5���2���H�;�H�#y��H�5������H�;�H��w��H�5�����H�;�H�mo��H�5x����H�;�����H�����H�5!��Ƴ��H�;�H�����H�5�諳��H�;1�H����H�5�蓳��H�;�H��H�5��x���H�;1�H�l���H�5��`���H�;�����H��|��H�56��E���H�;1�H�~��H�5���-���H�;�����H��l��H�5������H�;�����H��j��H�5�����H�;1�H��i��H�5���߲��H�;1�H��h��H�5���Dz��H�;�����H�����H�5�謲��H�;1�H�h��H�5O�蔲���H�=i���[H�+6J�f.����`�fD��H��H�H�Ѓ��ff.���1�@��t%@��uH�����tH�����t���ff.�����fD����fD��H��������fD��H��������fD��H��H���H�`����H�P H�4H������H��H���H����H�P H�4H�B����H���ff.�@��H��H��H��g��H�P H�4H�B4H���ff.�@��H��H�a�H��'��H�P H�4H������H��H���H����H�P H�4H������SH��H�?�0���H�{H��$���H�{H�C����H�{ H�C�
���H�{(H�C ���H�{0H�C(��H�{8H�C0���H�{@H�C8�֠��H�{HH�C@�ɠ��H�CH[���SH��H�?谠��H�[�ff.���SH��H�?萠��H�{H�脠��H�C[�ff.���SH��H�?�`���H�[�ff.���SH��H�?�@���H�{H��4���H�C[�ff.���SH��H�?����H�{H�����H�C[�ff.���SH��H�?蠛��H�{藛��H�{莛��H�{ 腛��H�{(�|���H�{0�s���H�{8�j���H�{@�a���H�{H[�W������H�?�D���@��SH��H�?�0���H�{[�&���fD��H�?����@��SH��H�?����H�{[���fD��SH��H�?���H�{[�֚��fD��H�5�BJ�P����H�5�BJ�@����H�5�BJ�0����H�5�BJ� ����H��BJH��E1�1�H�=&5J�1������SH��H�5��HH��dH�%(H�D$1��X���H�SI��H�pH�=!4JH�$�����H������HE�H�L$dH3%(u	H��H��[��F��fD��SH��H�5Q�HH��dH�%(H�D$1��ؖ��H�SI��H�pH�=�2JH�$���c���H������HD�H�L$dH3%(u	H��H��[�����fD���������ff.�@��H��H�5�AJH������1�1ɾ�H��舡���H��4HD�H���fD��H��1�1ɾ��Z����H��4HD�H��������f.���AUH�53�HATUSH��dH�%(H�D$1�趕��H��t\H�hH��4tRH�H��4u?�I��L�%o5J�L��M���1
H��H�$����H��H������H�����H��8IH�5(�H�81����ff.�f���USH��H��H�5@J���1�H�����@������H�5@JH��H���t��H���\�����H�H��H�����H�5�?JH��H���D��H���,���txH�H��H���z���H�5�?JH��H�����H������t<H�H��H���N���H���v�H��H�D[]�f.�H�����H���r���H������H���H������H�����H��H�5j?J�ͫ��ff.�f���H�5M?J鰫����SH��H��H�5%?JdH�%(H�D$1��X��H� toH��H�8@��toH�H��tt��u|H�@H���H�D?I���-H��H�=E2JH�$�,���H�T$dH3%(uVH��[�fDH�@ H�8@��u�����H��H��u����fDH��H)�HH�H�D�f�����z����Q�����SH��H�59>J�|��H� tCH��H�8@��tCH�H��tH��tH��H�H9�|MH�@H�x6H�D?[��H�@ H�8@��u��>��H��H��u��[�fD[���f�H��[�ff.���H��1�H�=0�K���ff.���H��1�H�=�<�+���ff.���ATA��USH����H��H�5�HH������H��H��tSH�H��4tJE��u%�0���H��H�=�[H��]1�A\�X�������[H�=��]H��A\1��6��fD���[H�=��]H��A\1����fD��SH��胘��H��H��,I[E1�1�H�<���L�H�=����1��[�ff.���AWAVI��AUATA��UH��SH��(L�)H�5[<JdH�%(H�D$1�L���è��H��H���6H�;�� �H����H��A���C����H��E��~A����I�vH��E1�L�c���M�H����I9�}\H��+IL�L��J�4�E1�1�H�7���H�=��1�I���u�H��H���:�H��� u�L;s}H�u+IL�H�C �@�L�D$��L��H�=/.JH�l$�Ֆ���H�L$dH3%(��H��([]A\A]A^A_�DI�vIc����H������@H�{����H�}�� ��H�}����E1�H��H�EH�D$�BfDH����I9�}dH��:JH�D$J�4�E1�1�H�=�-JI������H��H���4�H�E�� u�L;}}%H��:JH�E ��H�����x���@H�5Y:JH��L��辎�������T��@��H��H�5�9J���E1�1ɺ�H��H�=h.JH��鏕��ff.�@SH��H�5%�H���H�S�[H�8��I���f���SH������H������HE�H��[�ff.�@��SH�����H������HD�H��[�ff.�@����H�κ���ff.�f���AWAVI��AUATI��USH��(L�)H�5.9JdH�%(H�D$1�L��薥��H���<���H�I�@H��H�@H�$J�;H�D$I�>�� ��H����H��E1���I�t$M�fH��H���M���-H����I9�}LL��J�<�H��I������H��H�����I��� u�M;~} I�F ��f.�H�������R���L�D$���L��H�=G*JH�l$譓��H�|$xuH�$H�TH�58JL���}����H�L$dH3%(uVH��([]A\A]A^A_�f�I�~�
����H�@H�$1�H�D$����f�H�<$�w��H������ff.�f���AUATI��UH��SH��H�5��HH���=���L��H��I�����H��uI�E�tH�H��H��H��[]A\A]�H�����H��~�H��������?H�x�H�x(H�T?L��H��1��F���H��H��[]A\A]�����H����fD��AUATI��UH��SH��H�5��HH��荋��L��H��I�����H��uI�E�tQH�H��uH�K H��H��[]A\A]�fDH��H��u7H�K H�T?L��H��袈��H��H��[]A\A]�@H������fDH��������?H�y����H������ATI��USH��H�� dH�%(H�D$1�H�FH� uH�F H�hH�}�� ��H�������H�5�5JL��H���+���H��L�$$H�l$���I��H� tAH��H�;1�1�L�����m����H�L$dH3%(u!H�� []A\��H�[ �f�H�}�u����R��f���H��I��H��H����L�$���
����H�����S��H��H��H��dH�%(H�D$1����I��H��H�=�$J��H�$�J���H�|$dH3<%(uH��[����ff.�@��AWAVAUA��ATUH��SH��H� ��H��H�>L�~1�H�5g4JH�|$�ݠ��A��H��D����I��M�o���H�E1��H��H�¿1�臍��H���?f�H����H9�}LL��L�4�H�56�HL���Έ��H��L��H��H�@L���H��t>H��I��� u�I;_}
I�G ��H�t$L�E���H�=�'J�)����E uH�EH��[]A\A]A^A_�H�v ��������f�ATI��UH��SH��H��H��H������H��tH��L��1�H��[]A\��Vf�軥��H���C���H��H��H��H�D$�`���H�D$�f���SH��H��H��H�{�y������HE�H��[�f���ATI��UH��SH������L��H��H���<������HE�H��[]A\�f���AUH�q�z�ATUH��SH��dH�%(H�D$1��æ��H�èuH�����tH��ƒ�����H�5<2JH���t����upH��H�m�Ԩ��I��H���1�I���8H����H9�}|I�EH��M��H�H�=!JH��H�$�h���I�E�� u�I;]}AI�E ����H���������{���L�ML�����1�1Ҿ�H��菕���H�L$dH3%(���H��[]A\A]�@E1�I���D�H����I9�}�H�CJ��H�uM����H�=d!JI��H�$觌��H��� u�L;k}�H�C ��I����H��H�=i JH�$�p����S������fDUH��SH��H�~8dH�%(H�D$1�H����H��責��H�{H�$H��uU蠬��H�=�H��H�C �]���H�C(4H�CH��H���q���H�{8H��u(H�L$dH3%(u=H��[]Ð�;��H��t�H�{��H�CH�C H�C(4H�C04�����&���fDH��H�5��H�Є��H��tH�84tH���H��'IH�5��H�81��h�����AVAUI��ATUS���L�0H�XH��M�fH��y:�W�H����H9�~DH�5�/JL��H�<�1�1�H��虏��H�]H���tI��� u�I9^~H�5�/JI�F ��@[L��]A\A]A^�@H��H�5�H����H��tH�84tH���H�!'IH�5!�H�81�������SH��H��H�t$���H�T$��H�8�C���H��H��[�f.���SH���s���H�޺[H�8����f�H��H�5�H�`���H��tH�84tH���H��&IH�5��H�81�������AWAVAUATI��US��H��H������{Hc�H���c���1�H�=��I���"���H�=�-J�H���HI��觪��H�5��HI��H�@ L��H�4躂��H��t?L�8L��L���w����~Hc�L��L������H�}H��L���[]A\A]A^A_����H��%IH�5��H�81����ff.�USH��H����uBH�����t9H��ƒ���t,��u'H��H��H�5��H����H��tH�(H��H��[]�H���ع��H�)%IH�5k�H�81������ATI��USH��dH�%(H�D$1���u=踈��賦��H��H��L���U���H�L$dH3%(��H��[]A\����H���&��H�$��t*��~ZH�m��uQH���Ų��H��tZ�[�����t���f��K�����~H�$H�m��uH��t�H������H�<$tH��������������6���H���~��H�5��H��H�%IH�81����H��H�5��H���H��tH�84tH���H��#IH�59�H�81��X�����UH��SH�����H�5�+J1�1�H�8H��踋��H�CH��H�C H�C(4H�C04H�C8H��[]�fD��AVAUATUSH��H���H���H�xHH��u^H�@PH�uH��tH�}H��H��[]A\A]A^��@H����H�H��%�� ��H����H����H�N�f�H�81�L�%�H�/���1�1Ҿ�H�x�݊��I���C�H����H9�}oH��L�,�L��L���a��H�@H�@H��tdL��L��H����I��H�EHH��� u�H;X}.H�@ �D1�1�H�}@D�EX�1
���I��H��4uL�u@H��L��[]A\A]A^�DH��A�[L��]A\A]A^�f.��VH��uH�N �f�H���T$H�4$���H�4$�T$H� t�����f.����W����UH��SH�����H��H�@(H��4t
H��[]�fDH��H�����H�C(H��[]�f���H�����H��H���������SH���C���H��H�@(H��4tH�F(4[�@H��[�?���ff.�@��UH��SH��H��dH�%(H�D$1����I��1�1�L�}H�߾�H��H�$赌���H�59�H��H��IH�8�~��H�5�(JH��H�E8H���}��H���d���H�L$dH3%(uH��[]��x������ATH��I��US��H��dH�%(H�D$1��7���Hc�L��H������H��H�$���H�E0H��4t&H�E04H�T$dH3%(uH��[]A\�D������ff.����SH������H�x04uH�X0�[�H��IH�5<�H�81��)���f�AWAVAUATUH��SH����L�D$��H�������H�EI�׉ƒ���������I��H��H�5��HA��M���{��H��H����L�0L���w���H�CE��uNH�D$PH�CH�C H�C@�D$XH�C(4�CXH��H�C04H�C8L�kPH��[]A\A]A^A_�H�t$Ic�裸��H�C�DH���P���H��IH�5B�H�81������AWE��AVM��AUI��ATA��H���HUH���`SH��H��H�=�&J���M��M��D��H�P H��H��H�4H��AWj���H��[]A\A]A^A_���SH�����A���t9H�5�%JH��1�1�L����_���H�5�%J1�H��H���;z��H��[�fD�;��A���fD��H���s���H��H���f.���AUI��ATI��U��SH��H�;%J��~
H���I��H�=%JH��趇��H�����HE��'���A���t-E1�H��L���L�����H��������uH��H��[]A\A]����A����fDH�����H�����H�E@H��H��[]A\A]�ff.���UH�T�H�`SH��H��H�`IH�-q$JH�8�A���H��E1�1�H�P L�
n�H��H�4H��jj���H��[]Ð���G�AVAUATU��S����I��H���+�������M�eA���uM�uH�=�#JH���H�踠��M��1�1�H��H�@ L����H��H�4�߇��jH��#J1�AVH��H��E1�E1��A���H�5�#JXH��ZL���-x��H��[]A\A]A^ú�蒞��H��IH�5��H�81�����f.���AWAVI��AUATUH��S��H��L�-'#J�:���������������H�=�"J�H���HI���ɟ��L��H�P H��H�4���I�Dž���L�eI����1�1�RI���L��ATL��L��E1��M���H��([]A\A]A^A_�fD���)H�5��H�=��1��k�L�}��u*H��1��w���A����u��������L�m��H����1�A��e���L��1
�{���L�e�Å��C���D�����t:A��uI�����tA�$����tw�L��舘��1�I������fDH��I9�t�L��H��?H)�L��H��H	�H��H�D$�~D$�f.�iz������랺1���萜���AD$�׃�����x������ATUSH����uXH�����tOH��ƒ���tB��u=I��H��H�5�H�v��H��H��t+L��胇��H�E����H�EH��[]A\��H�����H�IH�5ؾH�81�舸�����SH�� dH�%(H�D$1�H�<$�H�t$H��豲��H�=J J�H�~�HH���F���H��H�P H��H�4H�B��������H�L$dH3%(uH�� [��}���ff.�f���ATI��US���H��H�t$H�T$�+���Hc�L��H��H���J��H�=�J�H���H貜��H��H�P H��H�4H�B�����t���H��[]A\�ff.���ATUH��SH��H�5��JH�����H�����u1�[]A\�@H�5�JH����H�5�JH��I���߶��L��H���t���H��t�H�5XJH�����H�5IJH��I��讶��L��H���C���H��t�H�5JH��菶��H�5JH��I���}���L��H������H���^���H�5�JH���Z���H�5�JH��H���H���H�������H��������8�����������H��I��@��t@��u1H�����t(�����uH��H��H�5��L��1��߫��1�H���H�9IH�5b�H�81�����UH��SH��H��蟪��H��觹��H�5HJH��H���r��1�H��tH��H�5;JH��H��[]�r��D��AUI��ATLc�USH��H�T$�������L���"u��H��M����1��f�H��H��H���q��I9���I�|��^���H��u�I9�~.I�l�fDH�}���ʷ������H��H��I9�u�L��L���j���L���H��H�5�JH�L$I��H�=�J�@���H��H���E�H��H��I������H����I�D$PH��H��[]A\A]�DL��D���ݭ��H��H��H��[]A\A]�@L����|���H�}�C��H�5dH��H��IH�81��X������UH��SH��H9�tlH���F���H����H�xH��u\H�5�HH���Uq��H��t`H�H�H�SH�PH�SH�@H�PH�S@H�@(4H�P@H�SPH�@04H�PPH��H��[]�H�IIH�58�H�81�谳��H�!IH�5¹H�81�蘳���AWI��AVAUATI��UH��SH��HL�L$L�D$�t$dH�%(H�D$81����H��H�H��H� IH�8�H���I��L�p �|���L�L$����M�NH�t$L��I�n�
���H�{HH������9�$���H��L���Y�H��� �
H����M��H��~H�8��L�pH�=�JH���H�躗��H�t$ �H��H�@ H�4L�t$ H�\$(���L���1�1�I���H����~��H���0�L��H��L�p�a���H�=�J�`H�>�H�I���L��H�P H��H�4����L�` I�ŋD$I�,$I�\$H��u[I�D$�1�L���X���I�D$L��H�L$8dH3%(ubH��H[]A\A]A^A_ÐH�S���軨��H������I�?I�_I���q����I�D$�D�˓��L�L$I��_������f���ATI��UH��S��H�� dH�%(H�D$1��7��H�D$����������ujH�D$H�|$��H�|$u	H�D$H�t$��U���H�L$1�1�I��L�
ҽHH���J���H�L$dH3%(uYH�� []A\ÐI�$H�D$��t�H�|$t
H�|$����1�����f�H�|$�ƴ���l�����˭�����E�������ff.����SH��裏��L�
\�HH��[��H�?�HA��LD�1�1�������ATI��UH��SH�{�HH��dH�%(H�D$1��B���L�
K�HH��H�,$���ID��4���1�1�H��I��I��L���/���H�T$dH3%(u	H��[]A\��!������ATI��UH��SH��HH��dH�%(H�D$1����L�
�HH��H�,$���ID�贩��1�1�H��I��I��L�����H�T$dH3%(u	H��[]A\�衦�����AVAUI��ATI��UH��H�5��HSH�� dH�%(H�D$1��+l��L��L��I��譨��H��H��uI�^H�EI�>H�\$H�$H��tkH���艗��H�e ���tvH�H�@H�{H�xqH�T?L��L���)i��H��H�L$dH3%(ukH�� []A\A]A^�f�H��裨��H�E�uH�����u+H�M ��u�H������H���@�S���H���fDH��H���������v���fD@��u1H�����t(H��ƒ���u�� tH����t>H��u(H��H�?H���DH�GH��tH��u	H� ����t�鿤�����Ȑ��H���3��H��H���r���f���H���s�1�H��H���U���D��SH��背����tH��L�
E�H1�1�A�1�[���H��
IH�5��H�81����ff.���UH��SH��H��8dH�%(H�D$(1���tkH��H�H��JH�\$H�T$H��x^H�t$�H�\$���H��H�T$H��I��L�
��H����H�L$(dH3%(uH��8[]�DH���8�����ѣ��H��IH�5�WH�81��9���f���SH���s�����tH��L�
U�H�[A�1�1��p���H�qIH�5ҵH�81�������ATI��USH��H��0dH�%(H�D$(1�����H��H�H�����tOH�t$�H�\$���H��H�T$��I��L�
ǸHL������H�L$(dH3%(uTH��0[]A\�fDH�yJ�H�D$H�D$�@H�������t���H��IH�5�VH�81�����膢��fD��SH���C�����tH��L�
��H�[A�1�1��@���H�AIH�5ҴH�81�踪�����SH������tH��L�
E�H�[A�1�1���H��
IH�5��H�81��h������SH��裉����tH��L�
�H�[A�1�1����H��
IH�5��H�81��������SH���S�����tH��L�
ŷH�[A�1�1��P���H�Q
IH�5r�H�81��ȩ�����USH��H�|$�����tTH�5AJH�L$E1ɺH�==JL�V����u��H��H�����H�߾H���f�H�EPH��H��[]�H��	IH�5�H�81��<���ff.����SH��H�� dH�%(H�D$1���~?Hc�H���d���H��H�\$H�$讅��H�\$dH3%(u&H�� [��H�<$�H�t$H���z������3�����UI��H��AWAVAUATSH��HdH�%(H�E�1������Lc�D�cI�WIc�H9��6A��waH��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�l$L�u�I����;�H��������H9���L�u�H�u�H�4�L��H�M��1p��H�M�L�E�I��M�E��~I�}J��H���Z���D��L���_���L��H���ԫ��H��4tXH�M�dH3%(�u?H�e�[A\A]A^A_]�H�u�H�u�H�}������H���D�H���;���趞���!s��H������f�����fD����fD��AVI��AUI��ATUH��S��H�� L�fdH�%(H�D$1�L���ٟH�E�uH�����ui��~DHc�L���	���H��L�d$H�$�S���H�T$dH3%(u@H�� []A\A]A^�fDH��L�4$L�d$�������H��H���e����辝��ff.���USH��H�5��HH��dH�%(H�D$1��Gc����I��H��H�CH�=�IH�uH�$��i��1�H�����t'H�}H�S��螎��H�C�t&H�c �H��H�L$dH3%(H��u H��[]�@H�����t�H��H��蝊�������fD��USH��H�5�HH��dH�%(H�D$1��b����I��H��H�CH�=�IH�uH�$�i��1�H�����u'H�}H�S���ލ��H�C�t&H�c �H��H�L$dH3%(H��u H��[]�@H�����t�H��H���݉�����6���fDSH��H�5E�HH����a��H�S��C t5H�[H�H�с� u;H�{Lclj�I9�ub��u5H�SH��uH�S H�8H���[�&���fDH��H�����@�|$H��H�D$�or��H�H�D$�t$�� ����fD��AVAUI��ATI��UH��SH��H�5��H�a��L��L��I��螝��H��uI�FH�����tH��[]A\A]A^�H��H�����H�����uL��L���=^��H��[]A\A]A^Ð1��ff.����SH�����H�����tH��[�fDH�K 1�H��[�@��SH�����H�����t#H�C�uH��H���8���H��H�c �[�fD1�[�@��SH���C���H�C�uH�����uH��H�c �[�f�H��H�����H��H�c �[�ff.�ATI��UH��SH�� �
��H�XH�pH��thH�I��A�� uIH�{Lcω�I9����uGH�KM��uH�K �xXH��M��I��WH�8�Dj��H��0[]A\�H��H�����@1�1���f��|$H��H�t$H�D$�Zp��L�H�t$H�D$�T$A�� ��ۧ��ff.���AVAUATUHc�S����H��I����]��H��H���#��H�xI��H����H��� �H�GH�Hc�H9���诘��H��L��H��I�����M�uI�E@I�EP襀����uH��[]A\A]A^�DH��舀����t�H��H��1�[]A\A]A^�o����H�����y���@L��H���]���I���H�������USH��H���e������H�5�HH��H���^��H��t
H�(H��H��[]�H�&IH�5T�H�81�蝠��ff.�f�AVA�AUL�oATUH��S1�H�� dH�%(H�D$1�H�EL�d$�� �H����H9�}]L��H�<�1�1Ҿ���h��H��4t<H��t6�ƒ���t\���H������������t>�u~�����
ttA�H�L$dH3%(L����H�� []A\A]A^�fDH��H�D$���fTPH�D$f.Pwh�u�u�H�����t������
u���t�L��M���+H�=�IH�D$H���Gc��I��H�E�� ��H;]�S���H�E ��I���B���觖�����H���s��H�8H���w������H���S��H�8H���W������USH��H��H9�t.H���֍��H�����H�5��HH��H����[��H��tH�UH�H��H��[]�H��HH�5I�H�81��~���ff.���USH��H��H9�t6H���f���H�����H�5��HH��H���|[��H��tH�UH�H�UH�PH��H��[]�H���HH�5V�H�81�����fD��AVH�5�HAUATUSH��H�� dH�%(H�D$1��[��H�5JJH��I���r��H��H��uI�$H��HH��H�0�0���H�
EH�5QH������vH��H�=�1��5���I�|$H���o��H��H���M���H�5�JH���>r��H��uI�D$H��u>�H�5�DH��誆��H��H�T$dH3%(��H�� []A\A]A^�fDH�H�с��� ��H����I��H���XH�XM��~�H��H�5�;���J�|�M�e�@����A�L�-�H��H�{�I���G���H��H���|q���L��H�����I���u�I��tH��H�5��L���v��H�u�� ��H����H��H������H�5�CH��藅������f�H�
��H���{����L�hH��uwH�X ����fDH������3����A������%���H�T$H�5;����D$�v���D$������N�4�I��M���+���M�����f�H��H�D$��i��H�D$H� �j������@H�EH�p������ƒ��fDAVAUI��ATI��UH��SH��H�� H�5�JdH�%(H�D$1��o��H��tZH���M<t"��^H������R������DH���c��I��H�5�AH���8���L��H��蝛��H�5JH���o��H��ID�H����H�H�с��� �H����I��H����H�XM����H��H�5��ă��J�|�M�e�@����A�L�-��@H��H�{�I���υ��H��H���o���L��H���t���I���u�I��tH��H�5~�L���Ft��H�u�� �&H����H��H���s����H�5&AH������H�L$dH3%(H���H�� []A\A]A^�L�hH����H�X ����f�H������"���H�A��ƒ��������Ā�����A�����H�T$H�5�����D$�ts���D$������N�4�I��M�������M������H��H�D$�g��H�D$H� �N����O���@L���8k��I������H�EH�p������H���e��fDH�GH�x���D������f.���AVH�5S�HAUATI��U��S�U��L��H������I��H����H�;H��4�����wH�{H��H�5�JL����l��H��H��uH�+L���i~��H��H�=��H��1�蕜��H�SH�KL��H��H�������H�5�/H���+���[H��]A\A]A^��L���~��[H�=��]H��A\1�A]A^�7�����;��H�hH���/���I9���L����}��H��H�=��H��1����H��E1�L�5ӝ�cH����I9��m���H��L��L��1��ț��H�KH�SH��H�CHH� t@H��J�<�H��I������H�5�.H���H���H�SHH��� u�H�B�fDH�@ �f.�H���}��[H�=ߛ]H��A\1�A]A^�?����H���0���H���1������AWAVAUATU��SH��8dH�%(H�D$(1����_I��H�5��IH��I���ޕ��H�5g�IL��H���̕��H�5M�IL��I��躕��I�Dž��I�.@����H�H����H�5	�IL��聕��H��I�ĉ����I���EA��t
A���=�����!��uH�����t�������D�������A��u
I������+D��������A��uI�����tA������nL����Q���H��fDH�L$(dH3%(H���)H��8[]A\A]A^A_�f�H��taI��t̺��H����h���L��H���^�����Jt�L�D$ ��<H��H�=o�IL�l$ �uX��H������q�����g����L���p���H���$�c����D$DL���P���f��D$�|$1��L$M���$�D$@���1�f(�f��H*�f/�v�H,��$fT\Df.LD��f/L$��f�1��iS��H�����������+���@L�����H���$����D$I���C���f��f/$�T$���%�C�d$�3���L�D$ ��>H��H�=��IL�l$ �-W��H������)������@H������H���9�����<$f.|$�W�QH�0H�D$H9��!H��H��<��������I��H����H���$1��IR���$f/L$H�������DL��H���$H��茡��f��$�H*�f/�w��[���A�������������L���R~��H���$�E~���D$���f.�A�E���������[�����Q��H�T$H��H�0H9��H��H��<��������H��H����H��� �����DH���@Q��H��H�������I�0E1�I���]f/D$����t�D$fH~�L9���fH~�H��<��������L��H����H��I���7���L9�����f��$f/\$�I*��Y��XD$s��|$f/������5�Q�t$���DH��H�M��I�@�XP��I��I�H���DL��L���K�t$H��M�蜟��H��u��y�����kI��H���@���H��H��H��H���)���@H�I�I�I����I���I��L��H)�HH�H9�HO���O��H��M9�$����fDH��I��H�������L9����K�t6H�����K�7L9�}�����@�D$�H��H������D�D$�$�H���$I�����I��H�غI��L)�HH�H9�HO�H���O��H��M9�|#�e���DH��I��H���P���L9��G���K�t6H���R���K�7L9�~��,���@H��H��H��H���b���H��I��I��I���P���L���@���I��DL��H�����L��L���d��I��H��u������1��(r���C���H�4�HH�5&:H�81�諎��ff.���AVAUATUSH��H�� H�5�IdH�%(H�D$1��1���H�5��IH��H������H�5��IH��I���
���H�5��IH��I�������H���I�ƃ��6@��u H�����t�E������D������A��uI�����tA�E������f�D�������A��uI�����tA�$������f�I���H���HL��H�0����H���C�L����^��H����H��L����L��H���?	H�è�|��,H������ �����
�H���H�<H�8�nW������H�H��
H�����I����L����x��f(�L���t$��x��H���$��x���$$f��t$f.��&�~=fD(��-�<fDT�fD.���f(�f(�fT��\�fT��X�f(��^�fT��X���A^��Yw��]�f(�M���^f/�w}�X��Mf(�f(�fT�f.���Lv+�H,�f��fU��H*�f(����f(�fT��\�fV��X�fT�f.����
�Lf/��+�.t��H��H�L$dH3%(H���H�� []A\A]A^��������;�]D��H����A����A����I�������A�$����
��H���H�<H�8�{U������I�$H��
H�������f/���f/�H�H��H���/���f.�f/������fK�f/������\��5�Kf(�f(�fT�f.����������H�9�H�<H�8��T������H�L$��<L��H�D$��R��H��4��H����������5�J���D����5n:�7����H�L$��<H��H�D$�R��H��4�zH�������������H��L���7�H��H�����M��tL��H���[��H�������H�߾��H�����fD�
`Jf/����H,�H�\����f/�H�H��H�����@����fDL��� h��I�����H�0fH~�H9������fH~�H��<������t|H�������H���9���@�\��H,�H��?�\���DH���H�<H�8�S���������H��H��?����L��H��?�f�������H�t$L���F��f�H��H��H��H�����H�t$H���_F��ff.�@��AWAVI��AUATUSH��(dH�%(H�D$1��vg����u&H�L$dH3%(L���6H��([]A\A]A^A_�H�5M�IL��譇��H�56�IL��H��蛇��H�5�IL��I��艇��H�5�IL��H���w���I��H����H�$��A��u	H�����uaA�H��L��H�������Y���I��uDH���X���H��H���}�H����H���X��H��tfDH���(����E����u��H�\$A����A���hI������[A�E����
�sD������K���B���L�D$��-L��H�=��I�J��H�l$�¨�����H������������
���������������UL�D$���
H��H�=l�I�7J��I��D��A��ukA����I�������A�$����
tH��������������H��IH���zL��E1�1�H��H�=��I��I��I�ĉ�L�d$���D$�lM���CH������6�E����
�G������'�������L�D$��*H��H�=��I�II��H�D$���������H������y�����
�������k���b����L�D$��+H��H�=��I��H��I��H�<$�3�D$����M��uH�����t�E����
�rH�L$��<H��H�D$�"M��H��4��H���������L�l$������L��H���]��H������1���H���;���H�l$�������2H������%�����
��������������H��M���+H�=��I��G��H���f����P{������ulH��H���}�H�ú�H��L����\��H������|���H��膔��H�l$���ub��u�H�����t������
tJ����t���t�����H��M���+H�=��I�0G��H���H��H���P�H�����H��H���=�H���[���H��H����
H�����f����������H��H����H���r���H�t$H����@��@H���H�<H�8�M��������H��H��?�,���L��L���S��H�������H�l$D��A����A��u|I�����tsA�$����
������tc��t^��t9L��L�D$��-H�=8�I�#F��I���P���H��H����
I���2���L��H����
I���*���D����u�L��H����I���
���DL��H���5�I����H��H��袸
H���������������H��H���c�I�����H��H����I�����L��H���Z�
����D��������L��H�������f�L��H�������H���H�<H�8�K�����r���H�EH��
H�������H��H���e�
I�����D���������H��H���A�I�����f�H��H���I���y���H��L��蒻
���DD���������H��L���N�����f�H��L��������H�=u�e��H�h�I�i���L��1���
I���q���������:���L��1���I���R���f���AWAVA��H��AUI��ATUSH��(H�t$H�5I�IdH�%(H�D$1����H����H�5+�IL��H�����H�5	�IL��I���v��L�d$H��@����L��H���H�\$�¨�H��H���o�I��D��A����H�(�H�<H�8�I�����CH�L$��<L��H�D$��G��H��4��H������������EA�E��t
1��>��I��H�L$dH3%(L����H��([]A\A]A^A_�f.�A���&I������A�����
�Q��������������L��1���
I���
f.����H������������
������������������H��H����
I�����D@���H��������E����
�N���������$�������L��H��觸
�)���f������tH��H���	�I���%����������H���IH����L��E1�H�=7�I1��`A��I��A����A������I����������A�����
���H���H�<H�8�G��������I�H��
H������fD������:L�D$��-H��H�=��I��@���>����L�|$����L��H���'�H�D$A���(L��H��载I��H�5��IL���K|��H������E���v���L���L��膽I���N���H�D$���
E���UH�D$L� A���CA����A��u
I������L���Z��L��H��I���/�H�����MD�A���M��I�M����L���t;��L��H��I���6�H��H����H��M��������H��H��轼L��H��H��蟊��I��u����@A����I�������A�$����
�����D���������������L��H���
�
I�����D��ukH�����tb�����
�B����ڃ����n���e��uFL��H����
�!�����H�=|o�`��H��H���I�,����؃����L�D$��*H��H�=��I�t>�������D�������L��L�D$��+H�=��I�;>��I�����L�D$���
H��H�=G�I�>��I�����f.�L��H��?���@H��L���UK��H���m���H�\$D��A���<A���sI������fA�$����
������V���M���WL�D$��-L��H�=|�I�g=��H��E������I���c���L��L��腣H������T���M���V�����v��E���1H�L$H�D$L�!A���H�����H�|$�H}������A�$����
����L��L����H��������M��fDL���o��I������L��H���u�����L��1��v�I���1���H��L����H������L��H��������L��H���%�I���������������H��L����H������H��L����
H�����H�t$L���6���o��H��HH�5�H�81��x��H�|$t
H�|$�/|����D���=[��H�N�HH�58"H�81���w��D��AWAVM��AUI��ATA��UH��SH��H��H�5H�I�#l��H�����t;��t��A�����H��M��L��D��H��H��[]A\A]A^A_�F���fD�t��A���taH�Z�HH�3�H�`H�8�6\��M��M��D��H�P H��H��H�4H��AWj���H��[]A\A]A^A_Ð�ۈ��A���k����ˈ��A���fD��E1��Ty��@��AWI��AVAUATUH��S��H��H�T$��U����uH��L����L�%����MN��/k��H���7z��H��M��H���L��[H��]A\A]A^A_��x��fDH�|$E1�裮��L�8I���xX��I��I�GH�$�2H����I9�}<M�t$H�$J�<�M��H��ھ�I���9^��I��� u�M;w}M�t$I�G ��H�D$H��[]A\A]A^A_�ff.����ATUS������I��H����T����t>���t
I�<$H��u[1ҿE1�1��J7��[H��H�5o��]H��A\���@�j��H���y��L���H��[L��]H��A\��w����T��H��뛺1��zX��f.���H��1�1��@�����SH��H��H�t$�:T����t&H�T$H��H�5����"��H�D$H��[���ki��H���sx��H�L$H��L�T����H���'w��H��[Ð��UH��H��SH��H�5��I��~
H�1��H��E1���H����v��H���S����uH��H��[]��H��訰��H���pV��H�E@H��H��[]�f���AWE��AVM��AUI��ATA��UH��SH��H��H�5��I�h��H�����t(H��E��M��L��D��H��H��[]A\A]A^A_鳵��H���HH���H�`H�8�X��M��M��D��H�P H��H��H�4H��AWj�_���H��[]A\A]A^A_���ATUH��S��H��dH�%(H�D$1��R�����8�-���H�$����������A�4�TU��H�=�I�H��HH���	X��H�5�HH��H�@ H��H�4H�@4�0��H����L� H�5��IE1�1�H�h1�L�o���H���W8��H�L$dH3%(��H��[]A\�f.�L�e���Z���H�<$tH���v���1����U��fD�o����x�H�$t!L�e��u�H������H���gv���	���f�H�������H���Ov�����H�{�HH�5�xH�81���q��H�c�HH�5�xH�81���q���Ui��D��AWM��AVI��AUA��ATI��UL��S�H��H�|$��n������H�=٬JH���H�`�V��M��M��D��H�P H��H�4L��SjH�t$�9���H�5��IH��XZH��H���".��H�T$PH�5��IH���.��H�T$XH�5j�IH���-���|$`H�5N�IH��H�H�҃���-��H��H��[]A\A]A^A_��ӂ�����D���ff.����UH��SH��H��H�5�J�De��H��u_H���HH��H�0�-e��1�H��uH����[]�DH�C�H�EH�CH�EH�E1�H�C �������EH����[]�f�H�5��IH���p��H�5��IH��H�E��o��H�5o�IH��H�E��o��H�5T�IH��H�E��o���H����������EH����[]�ff.���AVAUATUSH��H�-��IdH�%(H�D$1�H����H�y�H�����H�
���H�5�uH�;�NC��H�;�����H���H�5ev�3C��L�-L�HH�=[vI�u�<D��L�5%�HH�n�HH��I�6H��0:��H�;H�5V����an��H�;�����H����H�5��B��H�;�H�����H�5�B��H�;�����H���H�5��B��H�;1�H����H�5�r�B��H�;�H�����H�5s�mB��H�;�����H����H�5w�RB��H�;�H�����H�5�r�7B��H�;1�H�����H�5eu�B��H�;1�H�S���H�5Yu�B��H�;1�H����H�5|���A��H�;1�H�����H�55u��A��H�;�H�����H�5u�A��H�;1�H�����H�5��A��H�;1�H�Ș��H�5��A��H�;1�H�Ъ��H�5�p�tA��H�;�H�%���H�5�2�YA��I�>�����H�����H�5�s�>A��H�;H�5�tH���<4��I�>1�H�����H�5�tH��I�
A��H�=��IH�xtH�5et�sc��H�=��IH�ntH�5[t�Yc��H�=��IH�htH�5Ut�?c��H�=��IH�ctH�5Pt�%c��H�=��IH�dtH�5Qt�c��H�=t�IH�]tH�5Jt��b��H�=Z�IH�XtH�5Et��b��H�=@�IH�QtH�5>t�b��H�=&�IH�NtH�5;t�b��H�=�IH�GtH�54t�b��H�=��IH�>tH�5+t�ob��H�=��IH�7tH�5$t�Ub��H�=��IH�-tH�5t�;b��H�=��IH�$tH�5t�!b��H�=��IH�!tH�5t�b��H�=p�IH�tH�5t��a��H�=V�IH�tH�5t��a��H�=<�I�����H�����H�5�s�tm��H�=]�IH�����o��I��H��H�5��IH�=��IM��H�$�*/��H�=��IH���:��n��M��H��H�5��IH�=L�IH�$��.��H�=,�IH�����n��M��H��H�5��IH�=��IH�$�.��H�=��IH���L�wn��M��H��H�5U�IH�=�IH�$�.��H�=��IH�����@n��M��H��H�5�IH�=��IH�$�N.��H�=g�IH�����	n��M��H��H�5��IH�=��IH�$�.��H�=��IH������m��M��H��H�5��IH�=Y�IH�$��-��H�=9�IH���p�m��M��H��H�5y�IH�=��IH�$�-��H�=��IH����dm��M��H��H�5B�IH�=+�IH�$�r-��H�=�IH�����-m��M��H��H�5�IH�=��IH�$�;-��H�=t�IH���k�l��M��H��H�5��IH�=��IH�$�-��H�=��IH����l��M��H��H�5��IH�=f�IH�$��,��H�=F�IH�����l��M��H��H�5f�IH�=��IH�$�,��H�=��IH���f�Ql��M��H��H�5/�IH�=8�IH�$�_,��H�=�IH����l��M��H��H�5��IH�=��IH�$�(,��H�=��IH������k��M��H��H�5��IH�=
�IH�$��+��H�=��IH���a�k��M��H��H�5��IH�=s�IH�$�+��H�=s�I�����H�����H�5��k;��H�=T�I�����H�x���H�5�m�L;��H�=5�I�����H�Y���H�5_n�-;��H�=�I1�H�����H�5�o�;��H�=��I1�H�1���H�5sn�:��H�=��I1�H����H�5gn��:��H�=��I1�H�I���H�5_n�:��H�=��I1�H�-���H�5Xn�:��H�=��I1�H�q���H�5Wn�:��H�=n�I1�H�U���H�5Nn�i:��H�=R�I1�H�9���H�5Gn�M:��H�=6�I1�H�ͻ��H�5>n�1:��H�=�I1�H�a���H�59n�:��H�=��I�H�����H�5-n�9��H�=��I�H����H�5n��9��H�=��I�����H�T���H�5n�9��H�=��I�H����H�5n�9��H�=��I1�H�����H�5�m�}9��H�=f�I�H�����H�5�m�^9��H�=G�I1�H�N���H�5�m�B9��H�=+�I1�H�r���H�5�l�&9��H�=�I�����H����H�5�i�9��H�=��I�����H��H�5�i��8��H�=��I�����H�է��H�5�i��8��H�=��I�����H�����H�5qi�8��H�=��I�����H�����H�5]i�8��H�=t�I1�H�[���H�5*m�o8��H�=X�I�����H�,���H�5m�P8�����+��H�=�IH���IH�����*h��H�=��IH��H�����h��H�=k�IH��H���02��H�=��IH���@��g��H�=��IH��H�����g��H�=,�IH��H����1��H�=b�IH�����g��H�=E�IH��H�����g��H�=��IH��H���1��H�=�IH���B�mg��H�=��IH��H���
�Ug��H�=��IH��H���s1��H�=��IH����
�.g��H�=��IH��H����
�g��H�=o�IH��H���41��H�=u�IH���D
��f��H�=X�IH��H���
��f��H�=0�IH��H���0��H�=&�IH�����f��H�=	�IH��H����
�f��H�=��IH��H���0��H�=��IH���F
�qf��H�=��IH��H���
�Yf��H�=��IH��H���w0��H�=��IH����	�2f��H�=k�IH��H����	�f��H�=s�IH��H���80��H�=9�IH���H	��e��H�=�IH��H���	��e��H�=4�IH��H���/��H�=��IH�����e��H�=��IH��H�����e��H�=��IH��H���/��H�=��IH���J�ue��H�=~�IH��H����]e��H�=��IH��H���{/��H�=L�IH�����6e��H�=/�IH��H�����e��H�=w�IH��H���</��H�=��IH���L�d��H�=�IH��H�����d��H�=8�IH��H���.��H�=��IH�����d��H�=��IH��H�����d��H�=��IH��H���.��H�=_�IH���N�yd��H�=B�IH��H����ad��H�=��IH��H���.��H�=�IH�����:d��H�=�IH��H�����"d��H�={�IH��H���@.��H�=��IH���P�c��H�=��IH��H������c��H�=<�IH��H���.��H�=*�I��.��H�=�I�y4��H�=��IH�H�5|h�V��H�X�HH�=ohH�0�4��H�"�H1�H�5=�H��H�H�܈���g3��I�UH�;H�5Eh�d&��I�6H��H���I�r*��H�=��IH�5t����^��H�=��I�����H�����H�5P�3��H�=a�I�H�]���H�5<��2��H�=B�I�����H�.���H�5���2��I�UH�;H�5�g��%��H�5ȁ��H��H���I�^��H�=��I1�H���H�5�
�2��H�=��I�����H�j���H�5�F�n2��H�=��I�H����H�5�
�O2��H�=��I1�H�����H�56g�32��I�UH�;H�5+g�0%��H�5��H��H�W�I�z]��H�=K�I1�H���H�5�
��1��H�;�����H���H�5�f�6��H�;H�5�fH����$��H�5J���H��H���I�]��H�=��I�����H�Ȥ��H�5�	�1��H�=��I�H�I���H�5�	�m1��H�=��I�����H���H�54
�N1��H�=��I1�H�^���H�5�`�21��H�=k�I1�H����H�5���1��H�=O�I1�H����H�56�0��H�;H�5
fH���#��H��H�f�J�y��H�Z�J�������ƒ�����H����<��H�xH�5���g��H�=�J1�H�"���H�55��v0��H�=��J1�H����H�5�b�Z0��H�=ۗJ1�H����H�5se�>0��H�=��J1�H���H�57Q�"0��H�=��J�����H����H�5��0��H�=��J�����H���H�5j��/��H�=e�J1�H����H�5��/��H�=I�J�H�����H�5�d�/��H�=*�J�H�f���H�5�d�/��H�=�J�H�G���H�5��k/��H�=�J1�H�����H�5'��O/��H�=ЖJ1�H�/��H�5�3/��H�=��J1�H����H�5|^�/��H�=Qd����H�D$dH3%(�VH��[]A\A]A^�f.�H������2���H����H������H�2�HH�8����f�H�=dc��/@��H��H�M�I���H�=?c��@��H��H�5�I�I���H�=c���?��H��H��I����H�=�b�
��?��H��H��I����H�=�b��?��H��H��I���H�=�b��?��H��H�պI�K���H�=kb��o?��H��H���I����H�=@b�
�O?��H��H���I����H�=b��/?��H��H���I���H�=�a��?��H��H�u�I�M���H�=�a���>��H��H�]�I����H�=�a���>��H��H�E�I����H�=sa��>��H��H�-�I���H�=La��>��H��H��I�O���H�= a��o>��H��H���I����H�=�`��O>��H��H��I����H�=�`��/>��H��H�͹I���H�=�`��>��H��H���I�Q���H�=|`���=��H��H���I����H�=Q`�
��=��H��H���I����H�=%`��=��H��H�m�I���H�=�_��=��H��H�U�I�S���H�=�`�
�o=��H��H���I����H�=�^�O=��H��H��I�@�H�=&_��/=��H��H�e�I��H�=�^��=��H��H���I�L�H�==_���<��H��H���I�B�H�=
_���<��H��H��I���H�=�^��<��H��H�%�I��H�=�^��<��H��H�e�I�=�H�=T_��o<��H��H�%�I�z�H�=#_��O<��H��H�e�I�#�H�=�^��/<��H��H���I���H�=�^��<��H��H��I�u�H�=�^���;��H��H�%�I��H�=\^���;��H��H�e�I���H�=%^��;��H��H���I�p�H�=�]��;��H��H��I��H�=�]��o;��H��H�=�I��H�=�]��O;��H��H�%�I���H�=}]��/;��H��H�
�I��H�=V]��;��H��H���I�U�H�=*]���:��H��H�ݶI��H�=�\���:��H��H�ŶI���H�=�\��:��H��H���I��H�=�\��:��H��H���I�W�H�=z\��o:��H��H�}�I��H�=R\��O:��H��H�e�I���H�=&\��/:��H��H�M�I��H�=\��:��H��H�5�I�Y�H�=�[���9��H��H��I�!�H�=�\���9��H��H�e�I��H�=�\��9��H��H���I�(�H�=�\��9��H��H��I���H��HH�8�C����H���HH�8�3����H��HH�8�#����H�a�HH�8�����H���HH�8�����\K��ff.����H��H�=���,W��H�=�H�V�I�W��H�=��H�;�I�W��H�=�H��I��V��H�=�\H���I��V��H�=oH��I��V��H�=n\H�ǻI�V��H�=��H���I�V��H�=�[H���I�V��H�=[YH�v�I�V��H�=��H���I�nV��H�=�XH�H�I�[V��H�=�GH�-�I�HV��H�=�[H��I�5V����H���I�tV��H�=YH�޺I�V��H���YV��H�={:H���I�U��H���>V��H���IH����f.�@����fD��H������H�5ݽI� '����H�5��I�'����H�5ͽI�'������
��&��f���H�U�JH�0��&��ff.�f���H�5�J�&��AVAUM��ATM��UH��SH��H��t$A��H������E��uG�H�5�H���;��H��tH��H�����L��L��H���uR��H��[]A\A]A^�f�D��H�5��H��1��G���f.�AVM��AUI��ATA��H��1�UH��1�S�0V��H��M��M��H��D��H�5�cH���2���H��[]�A\H�5�A]A^�f:��fD��H��E1�1ɺ�H�=H�I���ATI��UH��SH��H��dH�%(H�D$1�H�|$�U���T$H��M��H��H���@���H�L$dH3%(u	H��[]A\���G��f�U��SH��H��H�7dH�%(H�D$1��� urH����H��H����@�����`7��H�5��H��H��1���E��H���II��H�5��I�H�=�IH�$����H�D$dH3%(uH��[]��H�GH�p���9G��f���1�1ҾQ
�.��ff.���S�
�q$��H��H����=��u
H��[�DH��[��Aff.�@��H�w�CX����ATUH��S��~&�G�H��L�d�fDH��H�s�H���$��L9�u�H��[]A\���ATI��UH��SH��HH��H�3�pC��H��t[L9#tFH�5w�IH���#��H��H��tnH�5g�IL���o����tBH9�����u[1�]A\�f�[�]A\�fDH�5!�IH���Q����u���H��H�����H�����DH��IE1�1�H��H�=�I�%��H���o���ff.�f���ATUSH��dH�%(H�D$1�H9���H��H���_��H��I���_��I9�tpH��H�T$H�=!������H�ËD$��uAH��4t;H���_��H��I���x_��I9���1�H�L$dH3%(��H��[]A\ÿ�6X����@H�߾A
�S"��H��I������H�þA
H���8"��L��H�����H��t�H�����H��H�����H���}�����u���f�H�5ٸI1�1�H�����I��H��4�Q���H�5��IH��1�1��m��H��H��4�{����,����FD��fD��H��dH�%(H�D$1���t$��E��H�T$dH3%(u.H���f.��
H�=�W���H��H�$���C��ff.����ATUH��S��H����~:H�>H��tcH��t%H�t$��;��H�t$H��I��tH�����@H����A����4E��H�M�JL��H��H�0���H��H��[]A\�H����A��Ɛ��H���!
� ��H��u�H���fDH��H���|>ff.����H������H�H��H�Ѓ��f�ATI��UHc�SH��H��H�=��IdH�%(H�D$1�H���(����u|H��HL��H�H���HH�8����H�$��tw��suH�ۆJH�T-H�5=VH���WY��H�$H�=<�IH���t'��H�L$dH3%(H�$u@H��[]A\��H�)�HH�$L��H�8�
Y�����H�9�JH�z�J��A��ff.�UHc�SH��H��(H�=��IdH�%(H�D$1�H�T$��'����tH�D$H�L$dH3%(u3H��([]�H�l$��H�fU1�H������H��������rA��f�H�CU����H�9U��
����b����c����D����a��������r����4����	����M����J����5�o��8����9����;��������}����
����,����F����g����o����h����#����Y����!����I����z���������}������p�{��q������~��+�m��T�|��s���������q���`��j�/�����x�
����������������3����-����.����/����O���P�n��S�]��R�L��Q�;��0�*��(���|�����������Z����H����$����w����d����f����e�o���^��7�M��i�<��2�+��=����	����������~����%����C����{��������*����@�p��A�_��\�N���=��?�,��<���&�
������k��������'����v���������X����_����n��L�]���L��K�;����'�����`��� ����G����]����[����"����N����B����y�}��U�l����X���G��l�6��^�%��������E����t����V����>����n����m��������u�{��1�j��W�Y��t��6�H�$QHE��H�Q�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H��P�H�P�H�/T�H�!T�H�T�H��S�H��S�H��S�H��S�H��S�H��S�H��S�H��X�H�|S�H�dS�H�fS�H�7S�H�5S�H�7S�H�S�H��P�H��R�H��R�H��R�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H��O�H�P�H�P�H�P�H�P�H�	P�H�	P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H�P�H��O�H�P�H�P�H�P�H�P�H�P�H�
P�H�P�H�
P�H�P�H�P�H�P�H�
P�H�
P�H�
P�H�P�H�P�H�P�H�
P�H�P�H�
P�H�P�H�P�H�P�H�P�H�P�H�P�ff.�H�5�H��tSH�dj@��uFH��@��t9@��uH�����t
�����t H�	�H��tH��H���HE��ff.�@��USH����w5H�Ӆ�t$H��H9tH������H�U�A
H��H���V���H��H��[]ú1��#����SH���tH�ߺH�5���)��H��[���+��H��H���(��H��[���UH��SH��H�5��I���H��H��tH��H��[]�@H�5q�IH������H��u+��6��H��H�5L�IH��H�����H��H��[]��H���x�H��H��u����ff.���b�I��~6ATI��U1�SH�V�IfDH�sL����H��9-2�I�[]A\��ff.�@AUH��I�պATI��UH��H�=�NSH��dH�%(H��$1�H���;G��L��L��H���h	��H��H���(���H��1�H�
�HH�O���H��H���(��H��$dH3%(uH��[]A\A]��6��ff.�@ATUSH��dH�%(H��$1�H���HH�(H����I����A��H��H��ML��1����Hc�H��H�ھL���RF��H9�t)H��HH�ھL��H�(H���0F��H9øHE�H��$dH3%(H��u8H��[]A\�f�H��H���1�L���w����z���f�1�I���q����5�����H��H��yJH�0�i��H��t6H�Ǩu��'������1���	�tH���@��������1���	�u�H���AUI��ATI��USH��H��H��HH�8H�GH�p8�6��L���
H��H������I��4tH�5v�IL��H�����H��tH�}���H�5N�IH��H�����H��H��[]A\A]�ff.�f�H���HAVI��1�AUATI��UH��H� LHSH��H�8��H����I���C��L��H�߾A
L�0H�hL�`I�E �#���H�ߺ�
����L��H��H��[]A\A]A^���ff.���S��w3H�Ӻ��tH�H�߾A
����H�ߺ�
���H��[ú1��'�����ATUS@����@����������.H���4@���:L�g�2��H��H��� ������������D���H�5��H���$��L��H���Q���H��H���<���H��H�5���$��H��H���;��H�ߺH�5��s$��H��[]A\�H������Y���H��t]H���J���H���HDL� �1��H��H��� �?���H�}�����?���[L��]A\���DH�A�H��H��H��H�Y�H��H���H��H�Q�H�|���ff.����S�A
H�����H��tH��[������t+��uv�؃���t|H��tF��u1H��Hf�H�8�'H�����uH��t1H��uH���H��H�{[����fDH�	�H��H��H��H�A�H��H�i�H�ff.�@��AVAUM��ATA��U1�SH��H��dH�%(H�D$1�L�t$@H��t
H�nH� uMH��tQH����H�߾A
��
��H��H�$H��� ��H������H�D���H�nH��u�L��1�1���=��M��M��D��H��H��1�H������H�5��H���"��H�����1��Ff�L��1�1��=��H��H�$H���HH��)�H��H�<$M��M��D��H��1��o�H��H�L$dH3%(u>H��[]A\A]A^��H�GH��~�H�WH�D��8
t��H�5��p!����i/��f����V�H1��!�1Ɖ5H�H�����6�H����Ѓ��ff.����ATI��U��SH��H���H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��w��H�8tdH��$L���H��H�D$L�D$1�H�D$0�D$�D$0H�D$ ��L�D$�H���IH�5��IH�=ǡIH�D$���H�D$(dH3%(uH���[]A\��.��ff.����ATI��U��SH��H���H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��g��H�����tdH��$L���H��H�D$L�D$1�H�D$0�D$�D$0H�D$ ��L�D$�H���IH�5��IH�=��IH�D$���H�D$(dH3%(uH���[]A\��	-��f���AWAVAUI��ATI��U��SH��8dH�%(H�D$(1�H�D$�8G��H�D$A�ƅ������D�}�Ic�I�\�����H������9T��������+T��H�\$H����H�|$��H�|$H����S��E����S���H��D��HD�H�D$H�\$�D��H�\$1�H�t$L�D$ H��H��I�H�D$�(���L����-��H�T$ H��4tH�5�IL���4�H�L$(dH3%(L����H��8[]A\A]A^A_�fD�s1����~H�\$��t6H�D$��H�D$uNH�\$H���V���H�|$�)8���G���@D�}�Ic�I�|�H��uH�\$����@����H�����H��t
H�|$��7����1�������+���R��ff.���AWAVAUI��ATI��US��H��8dH�%(H�D$(1�H�D$�8E��H�D$A�ƅ������D�{�Ic�I�l�@���H������yR���E�����jR��H�l$H���sH�D$����H���'1�H�t$L�D$ H��H�W�I�H�D$�`��~@��Hc�I�l��8fD�~H�#�IH�|$H�t$1�L�D$ �H�D$��L����+��H�t$ H��L������L��H�L$(dH3%(�-H��8[]A\A]A^A_�fD�k/����~��t{H�l$H�D$�&���@H�D$��H�l$H��u;H�|�IH��1�1�H�t$L�D$ ��H�D$�o��T���f.�1�H�|$��5�������D�{�Ic�I�|�H��uVH�l$���@H�|$�~���H�|$H����P��E����P���H��D��HD�H�D$H�l$�R�����[��H���)���H��t
H�|$�T5����1����h���(���nP��ff.���AWAVAUI��ATI��US��H��HdH�%(H�D$81�H�$�B��H�D$A�ƅ��]����D�{�Mc�K�l�@����H������BP���E�����3P��H�,$H���*H���e���H�<$H����O��D�{�E����O��D��H��HD�H�,$H�D$���fH�,$1҅���9��SH��tH�|$�84���fD�HH�,$L����)��H��ta1�H�t$L�D$ H��H�X�I�H�D$H�o�IH�D$�U�H�T$ H��4t
H�t$L���m�H�T$(H��4t
H�t$L���U�H�L$8dH3%(L����H��H[]A\A]A^A_���,����������tH�,$H�D$����D�{�Ic�I�|�H��u*����N��H�<$u+H�|$u?L���2(���x������H��H�$�u���H�����H�<$H���hN���vN���H�|$�2���H�|$t
H�|$��2���1��������&���RN��f.���AWAVI��AUI��ATUS��H��(dH�%(H�D$1�H�D$�8@��H�D$���-����D�{�Ic�M�$�A���gI������N��A�$�����N��L�d$I����H�D$���H��t
H�|$�2�������S��{�1�Hc�I�����Hc�I��@��H�I��t1���*@��L�d$I����HcÍ{1�I��L� �L����H�5�IH��L���0�H��H��?H��?��H�5��IL����L��H�L$dH3%(�LH��([]A\A]A^A_�D�S*����~��t{L�d$H�D$�
���@H�D$��L�d$H��u;1�I���D����L�������H�5d�IL����1��[���DH�|$1���0���f.�D�{�Ic�I�<�H��uwL�d$�o���DH�|$�f�H�|$I���9L�����L���M��D��LD�H�D$L�d$�:���������I�FI�^I��tA�1�����fD�#��I����H��t
H�|$�0����1����0���K#���L����	�H������K��ff.����UH��SH��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��v���H�8t`H��$H�T$H��H��H�D$H�D$0�D$�D$0H�D$ �)��L�D$�H���IH�5��IH�=ʕIH�D$��H�D$(dH3%(u
H���[]��!"�����SH��H���H�t$8H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��u���H�����uH�D$(dH3%(umH���[�H��$�H�T$H��1�H�D$H�D$0�D$�D$0H�D$ �
��L�D$�H���IH�5��IH�=��IH�D$����!��f.���H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H��H��H�D$1�H�D$ �$�D$0H�D$�.��H�L$dH3%(uH�����Q �����UH��SH��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1����H�8t������u"H�D$(dH3%(��H���[]�@H��$H��H�T$1�H�D$H�D$0�D$�D$0H�D$ �*��H�0H��� ��H�@H�p�H������H�5H���4��H��tH��H�5S7H��1��[��H�ߺH�5�����L�D$�H�V�IH�5_�IH�=h�IH�\$�N�����f�H����H���p������ff.���Hc��I1����#�BH����IH��IH¸H�:H�r����AVI��AUI��ATA��UH��SH���L�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H�z�H�D$H�8H��t
H�|$�x+��H�Njt$���H��H��tGH��$H�T$L��H��H�D$H�D$0H�D$ �D$ �D$0���L���E5H���m�H���G��D����G��f.���ATI��US����F����������H��H��t���H��L��H�=�5H��1��0��������L��H�=s5H��1����D��U���H�5m5SH���H����0��H����H�����H�޿H���0��H�����H�5O���0��H��x�H�55��t&�����H��H��H��4HD�H���6���H��H�¿�V0��H��x:�H�5���;0��H��xH��HH�����H�޿H���0����f���ATI��UH��SH� u9H�����H��H��t9L��H��H����1��3H��[]A\���H���H��H��u�[]A\�f.���H���HATA��I��UH��H�վSH�H�41�H���l�H���E��H��H�4H��1���J���D��D����w'Hc�H��:H��H�P��8HD���1��ff.�f���H���S�H��tH���f�H���������H��tH9�tf�H�0H��tH9�u��@1��D��1�@��uH�����t�����uH�t
�f�H��H��$������H�����fD��1�@��uH�����t
�����t�H�u�1�H9w���ff.�@��SH��H��H��H��dH�%(H�D$1��	���H��H�ڿH�$�%��H�L$dH3%(uH��[����f.���UH��H��SH��H���h���H��H��H��[H��]�T�@��UH��SH��H�\$H�t$H�����H��H�޿���H��[]�f.�S�Ѓ�wRHc�H��H��8H�J�;t;�|�H��tgH��H��H�=�51��C&��H��H�zHH�H���.���H������H�~HH��V�v��H�=S6��1��&��H���lj�H�=�5�����2��H��H�=�5H���ff.����H��H��4�_B��@��t8@��ub������thH��tr@��t|���9�u1��uH�t%H���f�H�����u�H��taH��uЃ�t��������f���tĸ��@��t����@��t����@��t���@��t���@��PXH��H��4��A����@��t&@��u;������t8H��t9@��t:�7���>���H�����u�H��t(H��u����پ�Ҿ�˾�ľ���SH���u*H�����t!�����uH�����H������[þH����ff.��UH��SH��H��xHH�8����H�5�IH��H��H���#��H�����ff.���H��H�5�I1�1���H��4t2�uH�����uH��H���z�f.������u�H��Ð�H���fD��SH��H��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H��$�H�t$�D$H�D$H�D$0�D$0H�D$ ����H��H�$��!���H��H�D$H��wHH�����H���[���ff.���SH��H��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H��$�H�t$�D$H�D$H�D$0�D$0H�D$ ����H��H�\$H�$H��vHH����H�������H��vHATI��UH��SH��H�8��L��H��H��H��[]A\�K�ff.���AWI��AVI��AUI��ATI��UD��SH��H�XyHH�8�@�L��L��L��H��H�����H�5M�IL��H���j����H�5��IH��H�H�҃��O��H��H��[]A\A]A^A_�ff.�f���AUI��ATI��UH��SH��H�juHH�8��L��A
H��H�����H�ߺ�
����H�5��IL��H������H�5��IH��H�����H��H��[]A\A]���AUH�=h,ATUSH��H��|HH�0��H��vHH�tH�����H��H�5R:H��'�H�;1�H����H�5�+��H�;�����H����H�5:��H�;�����H�5��H�59���H�;�H�
��H�5!$���H�;1�H���H�5!����H�;1�H���H�5H+��H�;�����H��H�5(+��H�;1�H���H�5���{�H�;1�H���H�5+�c�H�;1�H����H�5�*�K�H�;�H��H�5�*�0�H�;1�H����H�5�*��H�3H�=�*�)�H�-�tH�����H����H��H�5'�H�E���H�}1�H���H�5�i���H�}1�H�m��H�5�*��H�3H�=�*���H��vHH�3H�=p*H���H��xHH�=j*H��H���H��vHH�3H�=X*H��w�H�-0xHH�=P*H��H�E�]�H��qHH�uH�=<*H��C�H��yHH�uH�=0*H��)�H��xHH�=%*H��H���L�%arH�����H�-�H��H�5�I�$���I�<$1�H��H�5"��I�<$1�H��H�5<f��H�uH�=�)��H��qHH�3H�=�)H���L�%XtHH�=�)H��I�$�u�H��pH�����H�5}�H��H�H�����0�I�4$H�={)�@�L�-�qH�H�=I*I�E���I�}E1�1ɺH���~��I�4$H�=C)��H�/xHH�uH�=@)H����L�%uqH�����H�q�H��H�5��I�$��I�<$1�H����H�5r��I�<$1�H�(H�5� �l�I�<$1�H���H�5�(�S�H�tHI�<$H�5�'H��I��L�-�tH�H�H��H�5Z I�E��I�}1�H��H�5�(��I�}�H��
H�5����I�}�H����H�5U��I�4$H�=L(���L�%�sH�����H�_�H��H�5��I�$��I�<$1�H����H�5Zr�s�I�<$1�H�v��H�5(�Z�H�uH�=(�j�L�%�qHH�=�'H��I�$�P�L�-sH�����H���H��H�5N�I�E�
�I�}1�H��H�5E���H�3H�=�'��H�KvHH�3H�=�'H����H��oHH�uH�=�'H����H�HvHH�5�'H�H��H�,tHH�8���I�4$H�)sHH�=�'H���H��sHH��s�H�uH�=v'H��I�l�H�}tH�����H�H��H�5j�H��'�H�;1�H���H�5N%��H�;�H�5=H�9�����H�={ ���H��uHH�='H����H��H�5K�H��H��I��H�=ِI�H�MH�5��q�H�=��I�H���H�5�&�r�H�=��IH���c�H�duHH�=��IH�5�CH��V�������H�:��H�5XiH��H�Q�I�$��H�=�$����H�=�$H��PJ����	H�=�$H��I�s����H�=vaH��I�[����H�=�oH��I�C����H�=�H��I�+����
H�=2%H�`I�����H�=�$H�(I����H�=�H�I����H�=�#H�0I�����H�=j%H�I����H�=M%H��~I����H�=�\H��I����H�=(%H��~I�k���H�|~I�H��~I�H��~IH��[]A\A]Ð��SH��H��H���H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$���H��H����H������SH��H��H�����H��H�����H���z�f.���PXH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$�6���fD��SH��@��t!@����H������������u~H�=�|IH��tU����H9�tCH�=t|IH��t����H9�u_�[�fDH�=	#��G���H��H�=|I���[ÐH�=��
����H��H�|I뎾H���6��H�'qHH��H�5�"H�81����ff.���SH��H���������H������	���!�H�����D��ٞHH��[�@��H��H�����������<H�H��H�Ѓ��f���UH��SH��H����u	H�����u2H������H�MH��tQH��H�5G$H�hhHH�81�����fD�����u�H�{u�H�{�f����t-H�C H��[]��H�L$�f!��H�L$H�5$H���H�CH�MH�����AVH�5HAUATUSH��dH�%(H��$�1��~��H�H���I���D$���I�l$I��H���OH����H����H�=MlHH�T$H���(��I�ŋD$����I����I�E�� ��I�EH��A��H��~
I�U�:#��L��H�|$0�H�5������I��@����@����H�+gHH�8���H��I�|$���H��H�t$�H�D$L�l$L�t$ H�l$(�-�H��H��$�dH3%(H����H�Đ[]A\A]A^ÿ��������H�����I��H��� ��I�E����H�}�b����H�|$`H���H�5�i���L��H�|$0�H�5ĴI������I��H�lH����@H�|$`H���H�5�i���L��H�|$0�H�5|�I�����I��H��gH����@H�|$`H���H�5ai�g��L��H�|$0�H�54�I���K��I��H�)nH���@I�U���.����2���@L��H�|$01�H�5[*�
��H��I���R���������uH��jH�*���H���H���@�������H��iH�
�������ff.�f���������H9�twATUH��H��SH�����H�ViHH9t	[1�]A\�f�H��H�5�H�Q��H��H�5�H1�I���=��H��H�tI�<�L��H��t�H��H��u�[�]A\���f.�SH��H��dH�%(H�D$1�����H��������������H������utH��ƒ�����H��1�H�{% H�����)H9�}GH��H���ugH������t^H�	����uSH��H��u�H;S}H�K ��fDH���X���t,H��H�|$dH3<%(u1H��[�H��H�$�:����H�YcHH�5�!H�81��
���;��ff.���AUATUSH��H��xL�%`vIdH�%(H�D$h1��������f�؃����XH���^���eH�sH����H�QeHL�(H�?hHH�(H���
H�E8H����+��H�p��� ��H���t���H�U8H���}+��H�r���@�H����H������H�L$hdH3%(��H��x[]A\A]�DH������N���H����H���;���H��jHH�0H��u!H��dHL�(H�xgHH�(�>����L��H�=�sI���������E1�1�L��H��H�=wsI�"��H���L������B���fDH��aHH�0����H�ygHH�0H��t�L��H�=�sI�����u��@H�UH�|$H���H�D$HH�D$H�T$ 1��D$@H�l$H�\$(L�d$0L�d$8L�l$@H�D$X4�D$P���H�D$���fDH�EH�|$1�H�l$H����D$ H�D$ H�\$(L�d$0L�d$8L�l$@H�D$H4H�D$X4�D$P�)������@H�fH���@H�abH�k���@H��dH�[����_���ff.�@��SH��H��H��tH�����H��H�߾
[���fD����f.���SH���3�H��H�5�H��H��gHH�81��e��D��AVAUI��ATUH��S��H��H��PdH�%(H�D$H1����I��H�fHL9 �]���H�D$(������.���GH�D$H�D$H�|$(�YH�5�rIL��L�d$���H�D$H��L�-�H��tH����4�/�������I����L��H�����H�|$I��t;L���B�H�T$I��H��tH�5�L��1�����L��H�5�dL��1����L��L�l$�m���H�5�qIH��H�����H��H�L$HdH3%(�4H��P[]A\A]A^���;�������H�|$(t
H�|$(�
���1����#�H�D$L�d$ L�d$H�D$8H�D$L�d$0H�D$@���H�D$(���7����1�I�UH�T$��OH�D$H�D$H������uXH�\$��tNH�\$H�D$H��uN�L�-q���@I�UH�T$��t�I�UH�T$���MH����H�\$H��t����H��H�H�=6pIH�T$ �L�����H�\$���f.�I�EH�D$�������I�EH�D$�������H�|$(�����H�|$(��������������fDH�|$(��������������H�D$(���f�H�t$ @��uZH�����tQ�E����uFH�uH�\$@���A���H������4���H���	��'���@H�����H�����K���H�L\HH�5H�81����H�|$(t
H�|$(����������f���SH�5oI�4H���7mH��4t	[��H�߾A
�K��H�5�HH��H��������t
H�C [H�@�H��cHH�5�H�81��#����H��H�5�nI�4��lH��4tH���H�mcHH�5{H�81�����@��AVAUI��ATU��SH��H��0dH�%(H�D$(1�H�$H�D$H�D$���H�D$A�ą�������D�u�Ic�I�D����H�������#���������#��H�$H����H���I��H�<$I����#��E���:D��M��LD�L�,$H�D$���sL�$$���gH��tH�|$�'���D�SL�$$I��tkH�=�kI�JH�l$1ҹL��I��H�5ykI�T��H�T$H��t��H��tH��4��H�D$H�|$4��H�D$1�H�=��7��H��H�����H��I����L�L$H��L��L�D$H��H���ZH��H�L$(dH3%(�H��0[]A\A]A^�f�H���}���H�58H�aaHH�81������H�}���H90lI��H9+lI��H�D$�B����������������tOH�|$uu1�1������@�	H�=
���H�=��H�$jI��H� jI���D�u�Ic�I�|�H��tA�Y�H�$����H�D$���H�|$�H���|����~���H�T$H�5j����!����!���m!��ff.���AVI��AUATI��UH��SH��H��H�
dH�%(H�D$1�H��% ��H��H����Hc�A��H9�������H����M�v ���H�8�YE���PH��������H�H����H�s�L���i�H����1�H������H��H���xH�ahIH����E1�1�H�=�gIH������H�$H���FH��gIH���E1�1�H�=jgIH��������H�H��H���\��H��H�=BH��1��8��H�5YzIH��H�p@��u
H�������L��H��D������H�
_HH�0H�s@��u
H������XH�5zIH9���H��yII��H�=iIH�$���H�L$dH3%(��eH��[]A\A]A^�I���f����H�z�.����L�����I�% �-���H���p�H���U�����	H�=<�O����f.�A��t*1��3������fDH�����H���H���:���I���u�H�����tŋ����u��
H���x��������fD�H�=��7�H��H�MfI���H��������H������\���H���������H�=�����H��H��eI�����k����H��\HH��H�5H�81��[���ff.���H��H�5�gI�4�eH��4tH���H��\HH�5�H�81�����@��SH��H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$��$H�D$H�D$ �D$0H�D$����H��H��H�������H���������UH��SH��H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$��$H�D$H�D$ �D$0H�D$�#��H��H��H���%��H��H���*��f.���PXH���1�H���	��H�5H��H��ZHH�81��^���ff.���SH��H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�����������H��$�H��H���$H�D$H�D$ �D$0H�D$�O��H��H�UVHH�8�M��H�����D��H��H�t$���H�t$�H���,���H������S���H��tH�������H��[錳��ff.��SH�����8����8��H��[���ff.�SH������8�H��u���"���H��[�$�����u�� ��ff.���PXH�����H�����f���PXH�����H������f���PXH���A���H�����f���PXH���Q���H�����f���S��H�� dH�%(H�D$1�H��u:�������H�$����H�D$�~����H��H��讲��H���6����u��r��ff.�f���UH��SH��H����H��H�ߋ0��8������UH��H��SH���[���H��H��H���-��H������D��UH��H��SH���[���H��H��H�����H�����D��UH����H��SH���	���H��H��H������H���c����UH����H��SH���I���H��H��H�����H���3����ATUSH��H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1����H�����uH�D$dH3%(u[H���[]A\���H��H��1�D� H��H��$��$H�D$H�D$ �D$0H�D$�2���D��H��臥��D�e��\�ff.����AUATUH��SH��H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1����H�����u$H�D$dH3%(udH���[]A\A]�fD��H��H��H��D�(I��H��$�$H�D$H�D$ �D$0H�D$�)���D��H���~���E�,$��S���ATI��UH��S��H���H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1����H�����u!H�D$dH3%(uQH���[]A\�DL��H��H���$H��$��D$0H�D$H�D$ H�D$�<�����H��蒣����k�ff.���UH��H��SH�������H�5�H��H���4��H��H�����H��H���.��ff.���PXH�5wH��H�PHH��H�81��k�ff.���UH��H��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$�p��H��H�NOHH�8�n��H�57^IH��H��H���y���H���������AUATUSH��H�����������؃�����H��������H�sH�=L1����H��H��H��NHH�8����H�5�]IH��H��I����H��H��H�=�����.���H�߾�����H��H��t11�H�����H��I����L��H�5�H��H��1��w�L�����H������V���H��t!H���G���H��RHH�0�<���H�=JH��H��OH��H�cOH��H��KH��H�iNH�����@��u&H�����tH��ƒ���t��u�f.�H���7����H�=e1����ff.���H�=�1��~��ff.���@��uH�����tH��ƒ���t��u�f.�H�������H��1�H�5�����H�5���	���H�5��
���H�5���b���H�5���c�֤��H�5���D�Ť��H�5���a贤��H�5���裤��H�5���r蒤��1�H�5.脤��1�H�5&�v���H�5q��4�e���1�H�5�W���H�5X��	�F���H�5M��M�5���1�H�5��'���H�55��J����H�5,��5����1�H�5����H�5��8���H�5
��9�գ��H�5��;�ģ��H�5���賣��H�5��}袣��H�5j1�蔣��H�5��
胣��H�5t��,�r���H�5]��F�a���H�5?��g�P���H�5!��o�?���H�5��h�.���H�5��#����H�5��#����H�5���Y���1�H�5����H�5���!�ܢ��1�H�5��΢��H�5r��I轢��H�5Z��z謢��H�5B��蛢��H�5s�芢��H�5���y���1�H�5b�k���H�5��p�Z���H�5��q�I���H�5�����8���H�5���+�'���H�5���T����H�5l��s����H�5U����H�5=�����H�5���ҡ��H�5�1��ġ��H�5��j賡��H�5��袡��H�5��x葡��H�5���耡��H�5�����o���H�5}����^���H�5e��3�M���H�5K��-�<���H�53��.�+���H�5��/����1�H�5����H�5��O���H�5��P���H�5���S�٠��H�5���R�Ƞ��H�5���Q跠��H�5w��0覠��H�5`��(蕠��H�5C��|脠��H�5+���s���H�5���b���H�5���Z�Q���H�5��H�@���H�5���$�/���H�5���w����1�H�5�����H�5��d���H�5d��f���H�5G��e�ݟ��H�5/���̟��H�5��7軟��1�H�5�譟��H�5��i蜟��H�5��2苟��H�5���=�z���H�5����i���H�5����X���H�5v���G���H�5^��~�6���H�5F��%�%���H�5-��C����H�5��{����H�5�����H�5��*���H�5��@�О��H�5���A连��1�H�5�豞��H�5���\蠞��H�5o��菞��H�5X��?�~���H�5@��<�m���H�5(��&�\���H�5���K���1�H�5d��=���H�5��k�,���H�5������H�5���'�
���H�5���v���H�5y������H�5_��X�ם��H�5F��_�Ɲ��H�5.��赝��H�5��L褝��H�5���蓝��H�5���_肝��H�5��K�q���H�5�����`���H�5����O���H�5���`�>���H�5i�� �-���1�H�5]�����1�H�5X�����1�H�5W�����1�H�5W����H�5��G���H�5���]�Ӝ��H�5���[�œ��1�H�5#�贜��1�H�5�覜��H�5���"蕜��H�5���N脜��H�5v��B�s���H�5[��y�b���H�5A��U�Q���H�5(����@���H�5���/���H�5��1��!���H�5��1�����H�5���l����H�5���^��H�5������H�5����ϛ��H�5r��E辛��H�5Z��t譛��H�5@��V蜛��H�5)��>苛��H�5��n�z���H�5���m�i���H�5����X���H�5���u�G���H�5���1�6���H�5���W�%���H�5�������H�5e������H�5M��6H�����ff.���H�5��GH�=k��)�f�H�OH�H�WH�4�H9�r�bf.�H��8H9�sOH�B ��u�H�JH�I�	��t,��u�H�H�uH������t�9����t�fD��u�H���fD1��D��H��CHL�L���j���H��tH�ÐI�@x�ff.���H��H�iCHL�L���6���H��t)H�8H��tH�������H���fDI�xx��f���SH�����H��[H��闶���ATUSH��H�� H�?L�&H��t@H���H�GH��oH�G)$H�D$�S�H�$1�H�|$��H�;L�eH��u�H�� []A\ÐH��(H��H�|$H�t$dH�4%(H��$1�H����DŽ$H�GH�|$@H�D$04H��$��������uvH�L$H�D$0�D$,H�AH�D$H�@8H��@H�D$�Ω������uoH�|$�ܽ��H��$H�L$H�A�D$,H��$dH3%(u8H��(�@H�|$H�W���ǂ��D$,���{���륐1�����貼��f�H��AHH�H�HH�PH�H�y8H��H9�t.H��t)H���`�H��tH�@H�@ H���fD1�H��Ð1��ff.�f���H�����H��u�H���@H��H�����@��H��@HH�H�HH�PH�H�y8H��H9�t:H��t5H�����H��tH�xH��tH���u�D�H���fD��f.�H����H�@H���f.�UH��SH��H��H�vH��u[�����t	��uyH�[H�5)aIH��tLH���$���H��tH��H��H�5`NH��[]醼��fDH��[]�f�����f��H�=��/��H��H��`I�H���;��H�5,�H��H�B:HH�81�����SH��H����t�����fDH�����t�H��Ѓ���t����u�H���Z���H��[�D��闵������g����AWAVI��AUA��ATUSH��H��H�-�_IdH�%(H�D$1�H����L�%�_IM���E���)A�u�L��I��H��I�L6f�H�8@����H��������������H��H9�u�Mc�I��O�<.O�t.�I��I)�f�I�7M��H��H�=�^IH�$I���N���I�wM��L��H�=h^IH�$�/���M9�u�H��H�\$dH3%(utH��[]A\A]A^A_þ
H�=>��W��L�%�^IH��H��^IM��������H�=!��,��I��H��^I������C������D������.��ff.���AWAVI��AUA��ATUSH��H��H�-�\IdH�%(H�D$1�H����L�%�\IM���E���)A�u�L��I��H��I�L6f�H�8@����H��������������H��H9�u�Mc�I��O�<.O�t.�I��I)�f�I�7M��H��H�=�[IH�$I��订��I�wM��L��H�=h[IH�$菢��M9�u�H��H�\$dH3%(utH��[]A\A]A^A_þH�=�����L�%�[IH��H��[IM��������	H�=�����I��H��[I�����裪�����D���s������ff.���AWAVI��AUA��ATUSH��H��H�-�ZIdH�%(H�D$1�H����L�%nZIM���E���)A�u�L��I��H��I�L6f�H�8@����H��������������H��H9�u�Mc�I��O�<.O�t.�I��I)�f�I�7M��H��H�=�YIH�$I������I�wM��L��H�=YIH�$���M9�u�H��H�\$dH3%(utH��[]A\A]A^A_þH�=0����L�%pYIH��H�nYIM��������H�=����I��H�BYI������������D���ӿ������ff.���ATL�%�US�LHH���D��H��H��t"@H�{H��tH��L��蓶��H�[H��u�H�#ZIH��t[H��E1�]1�H�=�YIA\���fD�H�=Z��/���H��H��YI��S@��uEH�����t<�����u2H���3H�C�H��[H�����H��H�='�HD�1��������f.���AUI��ATI��U��SH���UG��qH��H��;HL9 ub1�E1�H��tE�H�k�uH��tH��H��賰��M��LD�H�[H��u�M��tH��L����H��H��[]A\A]�!����H��L��L���[]A\A]����f���USH�����H���FH��t6H���*�H�s�uH��tH����H�[H��tH�{u�H��H��[]�@��SH��H����t��Ʀ��fDH�����t�H��Ѓ���t����u�H�����H��[�D��H����H��t
H��H������H���fD������AWAVAUATI��USH��H��(dH�%(H�D$1�H���BH�D$I��H�,
H��H�D$H��Cf�H�D$dH3%(�eH��([]A\A]A^A_�DA��\��L��L9�tTD�3L�{A�V���v�A��vA��u�I�G�H9�rpD���hcH��H��t{H���X���H��H��識��L��L��L9�u�H9��i���I�E�� ��I�UH9���H����I9���L���ǯ���2���f�H��H)��U���D����bH��H��u�H�\$D��1�H��H���G���H��Hc������j����H��H����������H��H)�H����H�����f�I9}tH��H)��ϗ�����f.�I�E�?������f�AWAVA��AUI��ATUSH��H��(H��8HH�.H�$L� �� t0H��@��t0��f�H�E��H*�����,����D$�f@H�nH��H��([]A\A]A^A_��H�E�H��ʚ;��H��	f�H�SZ��/�DH��H���H*��|����,���	���D$L9�H�E�A��H�D$�I��	H��~.1�H�<$H�t$H�=�������H�<$H������H�]�H9��H���I�UI�E uI�U H��H��H)�E��H�4�HE�L�<A��uI�����tA�����t1�H��u	E���a���H����3��H���{����{���fD�H�=��H�L$�*���E��H�L$I��uE1�H�<$L��L��H�5��t����H�<$H������@����H�������n���fD�T$H��H�D$1�H�5�����L�\$�f��H*�����,�H��ʚ;�s�����	�k���@��uH�����t�����u�H���]�H�5F�H��H�.HH�81��r��f�PXH�����H���薖��fD@��uH�����t
�����tH���H��.HH�0�������H�3HATUSH�L�`8I�|$@uH��5H[]A\H�������1�H�=��H���u��I�T$@H���[]A\����f�H��H�5J�p��H�Ǩt�4���H��������H���ff.���AWAVAUI��ATUSH��H��(H�i2HH�H�@8H�@ H�x譡H������H��tH��4HH�5m�H�81��#��H���h���H�؃�H�D$��H�-�QIH����H��L���ܨ��I��H����H�-hQIH���H��L��质��I��H����H��L���<��H��H����L��H��蔌H��(H��[]A\A]A^A_�f�H������l���H��ƒ����[���H
H��M���@�H�=�菸��H��H��PI�a����H�=F��o���H��H��PI�����{�H��L��H��I���ڏ���>���D�[�H��L��H��I��躏�����DH���x���I�����H��M���$H�@I��A��u#H�����tH�E�ƒ���t�̀H�EDH�5PIH���pH��H���E���H�5�OIH���5L��H���*���H��L��H���,���H��L�����H����H��tb�u^H�����tV�H�ƃ���uIH;hu0�_���fD��u3H�����t*�
H�փ���uH;j�4���H�VH��u�f.�M��u
H�������H���V���H��H���{���H�|$H�D$H�@H�XHu
H�������L�}M���,H��L�t$H��H�D$L9�uG��I�FI�UH�|$H�ZHuH�|$��M�M��M��@��L9���@����A��u!I�����tI�������t��@I�DI�vL��輔��I��H��t�L����I��L��L���I��M�nA���k���I������^���L��L��軵���N���fDH���I��H��L���}I��L�}A������I����������L��H���w������f�H��L���e�������H�T$H��L��� ������H���`����H�=��_���H��H��MI����H�=���?���H��H�mMI�p���H�U�у���� �����@H�U����f�H�|$H���Ӵ���5���H�0HH�5a�H�81����fD��ATI��UH�-MISH��H��ul��������؃�����H��������H�{@��u[H�����tRH��ƒ���tE�Āt@H���	���L��H�����H�[��u�H�����u�H��tVH��u�H�"0HH�8@��t�[1�]A\�f.�H��'HH�8�@H��,HH�8�o����H�)HH�8�_����H�-HH�8�O����H��+HH�8�?�����H�=d�迳��H��H�LI�V���USH��H��H�-�MIH�t$H����H�|$舼��tZ��tw�����؃�����H��������H�sH��tlH��H�=�LI譛����uYH�|$�O�H�D$H�L$H��H�ߺ�U���H��[]�fDH�����u�H����H��u�H��.HH�0�@H�t$H�����H��[]�@�
H�=��跲��H��H��LI�����H�	&HH�0�@����H�1+HH�0�0����H�9*HH�0� ����H��'HH�0�����H��+HH�0�����ATI��US����������H��[]A\������I�<$H�N��Q
�@���H��H��4��H��'HH��H�0�!���H��ta��u�I�t$H������H��[]A\�f�H�H��t!��uSH��I�L$1ҾQ
�ߔ��H��H��4t[H�O'HH��H�0����H���L���H��$HH�5�H�81����H��舚��H��t�H��H� 'HH�8谡��H���H�l$HH�5M�H�81������1����%���DAVUSH��H�<$H�|$<�t$H�T$(H�L$dH�%(H��$x1����H�D$H�D$HH���6H�D$(H���'H�$H��$��D$@DŽ$�HDŽ$�4H�@H��$x���������H�$H��$�H�CH�<$�S+�D$@����H��$xH�$H�AH�D$HH�D$�D$@���ZH�D$(H��t
H�D$(H�$H�Bx�Ī��H�����uH�<$��*���#�|$t3H��[Hf�8��H�$H�@8H���?�H�p������H��$xdH3%(�2H�Ā[]A^�H�|$4�����[���H�,$H�]xH���o���H�c$HH��H�0蘾��H���T���H�EH�\$(H��$�DŽ$pHDŽ$�4H�,$H��$h膏�������TH�,$H�E���ǀ����DH��$hH�4$H�F��uH��'HH�$H�H��hH9Ax�AL�4$L����)I�~�����H�$H�@���ǀ����#����3���H�|$(�p���H��H��u{H�|$4ts�D$uH�D$H�������H�D$H�|$(H��tI��H9���H��u+H�<$�\���H�|$(�!
H��H��藅��H�|$(H���J���H�<$�!)���H�D$(�uH�D$(H�������H�|$(舄��H�D$(H�|$4t��W���H�4$H��$�H�FL�4$H�|$(I�Fx耿��H�|$H��H�D$(I�Fx���l$<H�|$(���o����H�T$H��H�=��H��1����H������H��$hH�$H�A�1���H�|$D����H��H���CH��XHH�$H�xx�"�����*���H�$H�T$(H���H�|$P�D$P�H�CH�\$XH�HH��$�1�H�D$`H�L$hH�D$pH�D$xHDŽ$�HDŽ$�4DŽ$��D������H�H�D$ �D$ ����� ����7���H�-SJH��H�u�߃��H�uL���Þ��H������H�uH�|$�跃�����H�D$(H������<���H�D$(H����:����&����s��H�T$I�؉�H��H�=�1��H�����H�����H��$HH�$H�H��H��hH�Cx��&H�{����H�|$(���H��H�=M�H��1������,���H�D$(H�Ax�l���蒽��f�AWAVAUI��ATI��U��SH��H�T$H�\$H����H��4��I��tVH�� HL��H�0�T���H���"I9�t6L��L�5�J�f.�H9��+I�6H���|���H��u�fDH�\$H�T$��L��L�����I�|$��AƄ$����E1�L�5�JH��I�6����H����L�����H����L�(E��u�I��t�I��4t��Q���H�_x����H��tH��4����A��d���H� H1�1�A�H�8����H��I��4�m���I���4���H��HL��H�0�2���H������H�HH�5��H�81����A�4���M�l$x�J���H��$HH�5��H�81��T��H�����fD��H��H�9"HI��L�L�����H��tH�8H��tL��H�����f�I�xx��H�k$HH�5.�H�81�����f���UH���SH��H���6���H��!HH�H�R8H�z@t)H�
CIH��BIH�HH�(H�XH�H��[]�fDH�
�BIH��BI�����SH��BIH��t�H�{����H�[H��u�H��BIH��tf.�H�{�W���H�[H��u�[�ff.����1�H�5c	H�=6!������H��H�.!HdH�%(H��$1�H�:t%H��$dH3%(��H���fDH�|$�f���)E1�1�1Ҿ1�������d�o�2��fH�k HH�|$0DŽ$H�D$ 4H�H�D$H�@H��$�������uQH�t$H�D$ �D$H�F�>k詧��H�R HH���X�D$H��$�H�t$H�V����fDH�D$H�P���ǂ��D$��u���0�����H��t?H��t!H���H�t$@��u-H����1�1�H��t��@��������H�t$��1�H��t��H���fD��H��H�|$H�|$���H�*HH�t$H�8�u��H�����H��@��t��x����H�����t�H���H��������t�H��uH������u0��t"��t��u�H�ϥH��H�5��1�����H��B���A���H�2�H�Ǩu�H�����tƋ����t��t��H��HD��H������H��I��H��4t/L9�u
H���DH�a�IL��H�0H����|��f.�I������H��tH��fDI�Qx�f���PXH��H�|$H��tH�t$1ҿ��H�D$H�T$�4�H��HH�8������AT��I��USH����u	H�����uG��tl�����(H�=_���H���L�����H��H��H������H��芝�������u���t1��u[�3H�=��襄��H��븾0H�=,�菄��H��뢾1H�=N��y���H��댾2H�=���c���H���s����)H�=���J���H���Z���f���UH��SH��H����u	H�����u'H�=���(����H��H��H���C���H��軜�������u�H�="��)���H����ff.���AT��I��USH����u	H�����uG��tl�����"H�=7�蒃��H���L�����H��H��H��負��H���*��������u���t1��u[�-H�=r��E���H��븾*H�=���/���H��뢾+H�=�����H��댾,H�=`�����H���s����#H�=g����H���Z���f���PXH��H�|$H��tH�t$1ҿ��H�D$H�T$��H�HH�8������PX1�1�H��H��HH�8�#{��H���+���ff.������f���AWAVAUI��ATI��USH��xdH�%(H�D$h1�H��HH�L�sL���r�H��M�~H��H�@ L�uH�D$�ưH�C8H�����H�p���@uL��L��H������H�EH�SH���H�|$�D$@H�@ H�T$ 1�H�\$H�D$0H�D$L�|$(L�t$8H�D$@H�D$HH�D$X4�D$P�ն�����AUATUH��S��H��(dH�%(H�D$1�����D�o�Ic�L�$�A��t$H�D$4A�4H����[���L��H�����I�����t�I�$�ƒ���u�Ā��I�D$H�x����t�H�=:I��H�t$L�D$1�L��H��9I�����H�D$�{��I�$�Ā�����L�d$���e���E����I��4t-H�<HH�5��H�81�賺��H�D$4A�4�)���H��HL�L���l��H��t!H�H�$H��t
H�����1���I�@x�ܩ��� ���I�D$H�x���Z����H�=��耟��H�9I����D�����ff.����PXH���A������PX�G�H����������H��HH�H�x�e�D��H��H��HH�H�x��H����H��������S�����t�͛��H�=f��H��H���Ks��H��[�H��HH�5��H�81��^���ff.���H�MHH�H�x�Y�f���H�-HH�H�x�Y�f���H���S�����tH���1ҾH�=���'������SH��@H�|$H�|$`H�t$H�T$ H�L$(L�D$dH�%(H��$81�H��HH�D$P4H�H�D$0H�D$0H�@H�D$8H�D$@H�D$0H�@xDŽ$0H�D$HH�D$0H�$H�@H��$(�~��������H�$H�@���ǀ���uIH�|$H�D$��H�$H�D$@H��$(H�AH�D$@H��$8dH3%(�2H��@[�H�D$@H��tF����H��$(H�$��H�BH�D$0H�x�-�DH�$H�D$PH�C�m���fDH�t$8H�|$0�!=��u��0f.��ƒ�HQ�H�2H��t�H�D$0H�xx�ϫ��H��uBH�L$���/v�H�t$H�VH�BH�F��H�D$0H�D$@H�@x���DH�D$@H�|$ tH�D$0H�|$(H�pxH�D$ ��H�D$@H�D$0H�T$HH�PxH��$(H�$H�B����%���D��H���L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�I���$ H�D$H�D$ �D$0H�D$����H�T$dH3%(uH�����u���D��H��HE1�L�1�������H��H�|$H��$0H�T$H�T$HH�t$dH�%(H��$1�H��HH�D$0HDŽ$ 4H�H�D$8H�D$8H�@H�D$@H�D$8H�@ DŽ$H�D$HH�D$8H�$H�@H��$�H�D$8H�P H�D$8H�P8�o�@�o�P�o�`)D$P)L$`)T$p�o�p�o���o���o��)�$��o���o���o���o��)�$��o��H��)�$�)�$�)�$�)�$�)�$�)�$�)�$H��$�z�������}H�$H�P���ǂ��D$,���yH�D$8H�x8H��@��y�������lH�|$H�D$��H�D$0H�D$8fod$Pfol$`fot$pfo�$�H�P8fo�$�fo�$��@H��@fo�$�fo�$�fo�$�Pfo�$��`fo�$��pfo�$�����������������H��$H���H�D$8H�T$HH�P H��$�H�4$H�L$H�FH��t�D$,�H�D$0H��$dH34%(uDH���H�4$H��$ �D$,H�F���H�t$@H�|$8�Q8���跋������f���USH��HH�|$H�|$`H�t$dH�%(H��$81�H�bHH�T$@H�T$0H�D$ H�H�L$HH�D$8H�D$(H�D$(H�D$P4H�@hH�D$0H�D$(H�PhH�D$(DŽ$0H�D$H�@H��$(�w��������H�D$H�@���ǀ�����H��$(H�t$H�FH�D$(H�XxH��t����H�D$(H�@xH�D$(H�T$0H�|$HH�Ph�T$@H�D$(H�Xx��utH�D$ H��$8dH34%(ulH��H[]�f�H�L$H�D$PH�AH�|$H�D$1��H�D$ �\���f.�H������n���������`����h���H�D$(��H�x�p���[���ff.���H��H��HH�H�x赩1�H��tH�@H�P H��H���ff.���H��H��HH�H�x�u�1�H��tH�PH��H���f�UH��SH��dH�%(H�D$1�H�|$�H��tAH�ËD$��t|�x��H��uJ�T$H��H�=��1��ʹ��H��tH��tiH��H�����H�D$dH3%(uXH��[]��H���`����T$H��H�=]�H��1��x����fDH��H�=��1��_����DH��蠆����	���f�AWAVAUATI��UD��SH��H��H��4��I��H����H��� ��H������H�6H����I����L�������H�5�VL��脘��H�%
HH�I��u@H9������OI����L��H�58���|��L��H�5p��2���H�5�L����|���bfDH�~�%L���%���H��	HH�I��t�M�}A�� �tI�UI��H�$A��H9��;M���[���H���Zr��I�ƅ�tI����H�5��L���:|��I�NI� �iH�<$L���
H�L$��p��H�L$H�À9#�rH����H�$H��L��L��H��H)�����M���iI�����H�5_L���������
H�5��L���{��L��L���w���H�5��L���{��H�5��L���y{��H�5�TL���Ŗ��H�5��L���V{���H�5T=L��袖��H����H�$J�8H9������eH��H+$I)�M��~q�L���
H���o��H��H����H9���H��M��H)�H��I)�J�D5�
D�;
u	H��H9�r�I��H��L��L��I)�L��M)����M��M���H��[]A\A]A^A_ÐH��HH;8�y���H���xp��I�ƅ�uyI����L��L���<���H��L��[H�5R<]A\A]A^A_隕��f.�H���(p��I��M�������f.�I�UM�}H�$����I����L��H�51���y��L��L��贰��H�5�L����y���d���I�N����I�����H�53�L�����1���DH�v H�6H���-�������H�$L��L��L���p��M��������I�����H���H�=@;[]A\A]A^A_�j���I��tJH�5[�L���y��H����H��H��L��L��H)����H�5+�L����x��H������@H�=��z��H���VH��H��L��H)����H�=���iz����H����H�$H��L��L��H��H)��~��H������H�$J�8H9��,�������L��H��L��L���G���D���H�=x��y��L������H�=[���y�������H�=��i������L���܀���H�=?Q�ki���H�=�9�Zi�����L��譀���r���H�=���|y���m���L��L���|����H�5�PL������-���H���k����H�=�P�h�����L��H��L���b�����H�=���y��L���)���H�=v��x��H�=n���x���H�=tP�h��H�=M���x���$���H�=E���x���H�=���rh��H�=��x������H�=^��Ph���u���H)�H��L��L�����H�$B�|8�
�J������H�$L��L��L������.���ff.�AWI��AVI��AUM��ATI��USH��H��(H�q�IH��H�0�}��H��H��t4H�HH��H�0蓜��H��tI�mH����H��H�����H��tH��([]A\A]A^A_�f��H��H���u�����������؃�����H��������H�CH��H�D$�̜��H��H���A���E1�M��A��M����H�|$E��L��H��H������H�|$H���	���1�L��H���,������H��u�H�LHH�������H���{|��H��I�E����H���GH��P���f�H��HH��8����H�!HH��(����H��HH������H��M��L��L��L��D�L$H�$�3���H��H�|$H�$D�L$t�L��H���_��D�L$H�$H�|$H��(L��H��[E��]H��A\A]A^A_���f���AWAVAUATUSH��hdH�%(H�D$X1�H�D$H����H��H��4�H��I��I��M��HD�@����H���,H�EH�D$I���II���?E1�M��A��M�����#H�=��M���gL�L$I���@H��L�����L�L$H��L�D$L��L��L������H�|$H��t�L��H���7��H�|$E��L��L��H�����H�D$XdH3%(��H��h[]A\A]A^A_�fD@���.�������0H���F@������H��HH����DH�|$E��L��L��H���"���H�|$H��t
1�L��H�����L�D$1�L��L��H���%����O���L�L$�5L�L$H�I��t	I������I��I�������I�����H����c��L�L$���fDH�TracebacH�|$ fo���:
H�ll last)H�D$$�[�Gk�D$ f�D$-�Gm)D$0f�W(�*H�O �=���@H�y�GH�����H��HH������H��HH������H��GH�������ff.����H��8H�|$H�t$dH�%(H��$(1�H�D$����D$.H�D$04H�D$84�D$/H�D$H����H�D$H�|$PDŽ$ H�D$@4ƀ�H�D$H�D$H�@H��$�h��������H�t$H�D$@H�FH�|$���H�D$0H�D$8H��4���D$/����H��$H�L$H�AH�D$H�T$H�Px�T$.H�D$��H��$(dH3%(��H��8��H�D$H�@���ǀ����_���H�D$8H��4�n���H�D$8H�|$�ł��H�D$8�D$/���V����D$/H�T$0A�A�H�t$8H�|$�����'����/���ff.�@��H���Ú����uH���蕁��H�����u
��rh��H�s�GH�8H�wx�����ff.�f�ATA��UH��S�����D��������H�
#���Hc�H�>���H�Y�GL�exH�0L��芕��H���aH��GL��H�0�O���H��tH�5;�IL��膠��H��uL��H���@���H���(��[]A\Ð���[]A\�@���!�H�=��� `���fDH�uxH������D�����H�=���_����������H�=��_���[��������H�=;�_���3������q��H�=��p_���������I��H�=���H_�����L���������������AVSH��(�|$H�|$(H�t$dH�%(H��$1�H�R�GH�D$(H�H������H�CH�|$@DŽ$H�D$04H�\$H��$��d��������H�D$H�@���ǀ�����H��GH�H�x8H��@�d��������H�t$�|$�f���H�D$(H��$H�T$H�BH�D$(H��$dH3%(uMH��([A^�DH�L$H�D$0H�A�{���DL�t$L���3���L�������H�DH�D$(�覕���Aw���AVSH��dH�%(H��$1�H�GxH�|$DŽ$H�D$H�GH�|$0H�D$ 4H��$��c��������H�T$H�B���ǀ���ubL�t$H�=�II�^xH��芸��H��H�=�I�{���H��$�I�FH�D$I�FxH��$dH3%(uVH��[A^��H�\$H��$�H�CH������H�CxH��t
H�D$�H�L$H�D$ H�A�[����x����SH��H�GdH�4%(H��$�1�H�|$H�|$ DŽ$�H�D$4H��$��fb������tvH�D$H�@���ǀ���uH�D$H�x8H��tH���H��$�H�\$H�CH���1���H���Y�H��$�dH3%(uH��[�DH�T$H�D$H�B�蓓����H�
�GSH�H���	����W��H�C8H�CxH���ݾ��H�@[H����Βff.�AU�4ATUH��SH��(H�_8�t$H��dH�%(H��$1��4H�D$ H�T$(H�\$�D$�D$�$�H���DH�EH�|$@DŽ$H�D$04H�,$H��$��`�������zH�,$H�E���ǀ����*H�|$H��@�`��������H�$�A,�D$�ЅA(�O�D$���D$H�$H�\$H�@xH�D$(���H�|$(�p���H��@�T`�������YH�<$����D$���D$H�|$H�$�OPH��@H�@xH�D$ �`��������qL�d$H�<$1�A�H�D$(�t$H�Gx�����D$L��H�\� H�����tU��u
�����tFH�C�GH��H�0�x���H���oH���GH��H�0�]���H���g�D$��u�D$H����1ۿ���)U��H�$H�P8H�@xH��tH�RH����t�L���<�H��$H�$H�A��BI�|$�~�������D$H��$dH34%(�H��([]A\A]�@���fDH������R���H������C���H�$H�@x�2���@�D$����������D����D$���v����T$�m���fDH�$H�D$0H�B���fD���Ix���?���@H�y81��`�����H��1�����D$���H�5��IH������H�Ǩt��l�������覂��������Jq��襏��D��H��G�|$�t$�H�8�E���D��PXH���qV������^��f.���ATUH��SH��dH�%(H�D$1�L�d$H���GL��H��Q����t6L���n���H��H����H�߉�����H�T$dH3%(uH��[]A\�1�H������D$���ێ��ff.���USH��H�G�GH�(H�]�H���(�H��t
H�@H�@ H��uH�UH�EH��8H��H9�r�1�H��[]����AWAVAUATUH��SH��H��H�|$H����������H��������������H�D$H�xH���,H�D$H�H�$��MH������H��H���(H��tc�u_H�����tWH�‹����uJH;_u1�G���u3H������t*�1H�ʃ���uH9Y�H�JH��u�f.�H��ƒ���t��@H����H��I��H���Y��I��H�@H�hHA���=H���_��L�{L���_��I�EH�[I�WH�PH9���H��M��H��H�$H��uB��I�GI�VH�jHM��uH�<$��H�[M��H��@��H9���@������uH�����tH�������t��@H�f�I�wH����X��I��H��t�L���$��L��L���
��M�wA���s���I������f���L��L����y���V���fDH��L����y���X����H�D$L��H��H�xH��[]A\A]A^A_�~b��fDH����������H��L���y������ӱ��H�T$H�B�uH�����tH�|$H���ay���H���8�����+_��H��H�D$H�x@��u	H�����u'H�D$H� ��������H��[]A\A]A^A_�H��I��H���x��I��žH���H`�����H��H��H��H��H�����1�H�����H��H���u*H�����t"�����u�
���H�S�GH�8H���Z���H����_��f.���UH��SH��H���;�H�<�GH�H�JH�y8H�JH�H��H9�tQH�xuQH��t
��H��uB�Nr����u��H��H���J���H��H��[]�H�5��H���������H�xt�H���GH�5#�H�81�詒��f���AUI��ATI��USH��H���GH�H�hH�PH�H�]8H��H9�tZ�ծ��H��uZH��tL9ePug�q����u$�g�L��H�����H��L��[]A\A]�fDH�5M�L���I�������{���H��t�H�'�GH�5��H�81����H��GH�5��H�81��֑��fD��H�5�ISH��H��tH��[�f���H�=����v��H��[H��H�qI�|f��ff.����AUI��ATA��UH��SH��H�j�GH�H�{�^L��D��H��H���H�CE1��H�@ H�H��[]A\A]�#�����H��GAVA��AUI��ATA��UH��SH�H�{�U^E��L��D��H���H�CH��H�@ H�[]A\A]A^�Č��@��SH���Ӏ��H��[H���[�����SH��H��H���Mk��H��[����I���T���H��tH��I�@x���H�]�GH�H�@x�ff.�f���SH��H��uH�3�GH�H�Xx[�f�H�)�GH�0衄��H��u�H���GH�52�H�81���@��UH����H�5m���SH�='�H���x��1�H�5#���H�=��x�������H�5���H�=���L�������H�5���H�=��L��1�H�5����H�=Ѯ�rL��1�H�59���H�=ͮ�]L��1�H�5T���H�=î�HL��1�H�5/���H�=���3L��H���G�����H� ���H�5��H�;��b��H�;�����H�b���H�5z;�b��H�;�H�7���H�5D��ې��H�;�H�,���H�5�����H�;�H�Q���H�5�襐��H�;�H����H�5 �芐��H�;�H����H�5��o���H�;1�H����H�5���f��H�-(�GH�5ڭH�}�@���H�}H�5��0�����/H�;1�H�Z���H�5έ�f��H�;�����H�����H�5���f����2H���~�������H�����H�5\�H���ˏ���2H����}���H�b���H�5C�H��裏��H�l�G�����H�P���H�5V�H�8�Aa�������H�5%���H�=D��iJ�������H�5����H�=*��QJ���H�=%��F��H���G1�H��H�3�%�)H�=��F��H�3�H����%�H�=��Jr���H�=��H�O�I�2r��H�;�IH��[]�@�����fDH�I�GAT��A��UH��H��H��SH��H�8����D��H��H��H��G[]A\H�8� e��UH��SH���‹���xH��t)H���!f��H�SH�5�H��H���GH�81��B���f�H���u����u�H��H��[]�f.���H���G1��^���ff.���H���wH���8~��H��H�Ð��H��H�wH���'h��H��H����H��H���O�WH�wL���P���H��H��f���H��H���O�WH�wL��� ���H��H��f���H�WH�wH�?�|u��ff.��ATI��UH��SH��H9�r�J@H��L��H���JH��H�H�H9�s.�;/u�H�CH9�v �{/t�/f.��8/uH��H9�u�H��[]A\�f.�H���H���fD��SH��dH�%(H��$�1�輓��H�XH���Pm���sH����|�����t+H�t$pH�|$h�g��H��$�dH3%(uH�Ġ[�H�sH�=M��@���軁��ff.���SH��dH�%(H��$�1��,���H�XH���l���sH���@|�����t+H�t$`H�|$X�g��H��$�dH3%(uH�Ġ[�H�sH�=��谕���+���ff.���SH��dH�%(H��$�1�蜒��H�XH���0l���sH���{�����t+H�t$PH�|$H�f��H��$�dH3%(uH�Ġ[�H�sH�=
�� ���蛀��ff.���H��H�wH������H��H����H���wH�?轏��H��H��fDUH��SH��H��H�7�� uiH����H���j���H���r���H�C�uH�����uR��u+H�����t"H��ƒ���tH�€�H�{H�t��t2H��H��[]��H�w�f.�H��H���Um���H���Ȉ����fD��AVH�5�GAUI��ATUS�EE��H���|�H�-�G1������H�5]8L�5��H���Nq��L��I���3w��L��H����U���H�5��L���$q���Uf�H�uL���U��L��L���q��L��U���H�H��1�H�5��L���}��H����H��H��H��t��H�5��L���p��H�uL���HU��L��L���p��L��UH��u$�txH�H��H�5�L��1��|����H���`���H���r��L��H����[��H���l���L��H�5��-p��[L��]A\A]A^ÐH���Hp��H��� ���H���8p��H���L����u��[H�=v�]H��A\1�A]A^����ff.�@��UH��SH��dH�%(H��$�1��H���H�XH����h���CuN�sH���Vx�����tUH�@H�|$0H�x5H�D?H��$�dH3%(u$H�Ĩ[]�1�H������@�����,}��H�sH�=٭蜑��ff.����AUATI��H��USH��dH�%(H�D$1�������Y����L��l$�p���H�XH���h���S�$�C��I��L�%�L��L��蟇����yR�z���0��t~M��
u(@��tj1�H�L$dH3%(�~H��[]A\A]Ð��Uu �SL��L���M�����x����f���t�H�SH�=8��K����o�����@���@1����蜆��H���Dg���f�1�L�����S�:�����{��f���H���w�?�.k��H��H�����H��H�w�?�
���H��H��fD��AUI��ATI��US�����H��H��t
H���Yd���ý����I��t
L���Dd����L�����L�`L���f��A�|$���������tH���[]A\A]�I�t$H�=��蚏��f.���USH��H��H����c��H��H��萌��H�XH���$f���{���jp�����tH���[]�H�sH�=���9���f���H���wH�?荈��H��H��fD��H��H�wH�?�V��H��H��D��H��H�wH�?�̒��H��H��DAVAUATI��US����I��I��H�=n�����P���L��H���Ӆ��H��H���W���H�5��H����k���L��觅��H��H���\W���H�5�)H����k��H�ډ�L���ۅ���H���n����H�=��H��躅��f.�����O�����ATI��UH��SH��0�NH�dH�%(H�D$(1������=RH����H����H�H�sH��S㥛� H�$H��H��?H��H�CH�D$H��H)�H�sH��Hc�H��H�T$H��?H��EH��H��H)�Hc�H�L$����H��L���E��H�|$(dH3<%(��H��0[]A\�@�H��L�濜����o����1���y��u���8&uQ�H�U���*����fH�
�5^H��u�H�������t����H��L���p���g���������]����!x������V�6�]��f����V�6�B}��f����6�%:��D��H���wH�?�Ms��H��H��fD���G���~BS1�H��������;C}#H�H�sH��H��H�<�S��y��t����C1�[�1��f.�PXH�5
�H��H�d�GH�81�����f���H��H�5��G�<��H��t�@H��H��6H��?������ff.�@��H��H�5a�G�<��H��t�@H��H��5H��?����o���ff.�@��H��H�5!�G�|<��H��t�@H��H��4H��?����/���ff.�@��H��H�5�G�<<��H��t �@�%�= �HD�H������f���H��H�5��G�;��H��t �@�%�=`�HD�H������f���H��H�5a�G�;��H��t �@�%�=��HD�H����b���f���H��H�5!�G�|;��H��t �@�%�=��HD�H����"���f���H��H�5�G�<;��H��t �@�%�=�HD�H������f���H��H�5��G�:��H��tH�x0H�H��������f���H��H�5q�G��:��H��t �@�%�=��HD�H����r���f�SH�58�G�:��H��t�X�&z���9ø[HD���?���ff.�@��H��H�5�G�L:��H��t�P���t
H�%�H��H�������H��H�5��G�:��H��t�P���t
H�%�H��H��������H��H�5q�G��9��H��t �@�%�=@�HD�H����r���f���H��H�51�G�9��H��tH�ppH�xhH���vY���A������H��H�5�G�\9��H��tH�p`H�xXH���FY���������H��H�5ьG�,9��H��tH�pPH�xHH���Y��������H��H�5��G�8��H��tH�P(H��H����H��0�	�H�D����fD��H��H�5a�G�8��H��t+H�P(H��H��H����H��H�� ��%�	�H�D��W������H��H�5�G�l8��H��t
�@ H��H�D��%���D��H��H�5�G�<8��H��t
�@H��H�D����D��H��H�5��G�8��H��tH�����H�@H��H�H!�H������D��H��H�5q�G��7��H��t
�@H��H�D����D��H��H�5A�G�7��H��tH�H��H����H��0�	�H�D��G������H��H�5�G�\7��H��t*H�H��H��H����H��H�� ��%�	�H�D�������SH�5��G�7��H��t�X�"P���9ø[HD�����ff.���H��H�5q�G��6��H��t@H�x0H��tH�@H�xH�D?H���D�H���fDH���u���R���f���H��H�5�G�l6��H��t0H�x0H�@H�xH�D?H���f.�H���7u������f���H��H�5��G�6��H��t0H�x@H��������?H9�wH�D?H���f.�H���o�����f���H��H�5q�G��5��H��t0H�x8H��������?H9�wH�D?H���f.�H����n���b���f���H��H�5!�G�|5��H��t0H�x(H��������?H9�wH�D?H���f.�H���wn������f���H��H�5шG�,5��H��t0H�xH��������?H9�wH�D?H���f.�H���'n������f���H��H�5��G��4��H��t(H�8H��������?H9�w
H�D?H���H����m���z���f.���H�=��%�=�t]H�=�q=@tOH�=u�= tAH�=x�=`t3H�=��=t%H�=w�=�t=�H�=V�H�<HE��Y:��f���H��H�5��G�4��H��t�xH���[�������fD��ATUH��SH���m���H��H���"k���H��u[H��]A\�H�5Y�GH���3��H��tIH�5E�GH��H�hXL�``�3��H��t-H;hXt��[]��A\H������H���@�L;``u���.���ff.���USH��H��H9���H���e��H�{ H��t
�t|��H�C H�} tg���;a��H�U �o�oJH�oR P �oZ0X0�ob@`@�ojPhP�or`p`�ozpxp�o��H�C ��H��H��[]�@��S�v~��H�XH���\��H�{H��t[�=��H�{�GH�5��H�81��"u��f���UH��SH��(dH�%(H�D$1�@��teH�H��H�t$�
~��H�XH���W���Cte1�H������SH��H�=��$�<w����x2H�L$dH3%(�uH��([]�@H���pk��H����l��H�sH�=��v���H���GH�5�H�81��^t��ff.���S��t'��u;H�>�T�����Ӂ���É�[H�D��1�蹁���É�谁����[H�Dú1��[W��ff.�PX��H���;W��ff.�UH��AWA��AVAUATSH��8dH�%(H�E�1�H�E��2��D9����BZ��D9��yH�E��
A�I���A�����Ic�H��H�E�H��H��H%�H)�H���H��H9�tH��H��$�H9�u����L�d$I���L��D���PB�����tA9�uE�H�}������o���1ۃ��t8��Hc�I���@H��D9z������y�1�H�}�t
H�}���v�����H�]�dH3%(��H�e�[A\A]A^A_]�@Ic�L��H�H�E�H�u�H�U��H�4�H��H��H���:��I���8���L���E��uv��H�E��E��=���DH)�H�L����f���f���fD��E����qi�����H��H�5��G�/��H��t�x �����H�H��H�Ѓ�����f���UH�5��GH��SH����.��H��tlH����G����u�CIt#H���[]�@H�����H��t�C@u�1�H��[]�@H���X���H��u�Cu�1���f��Cu�1����1���UH�5�GSH��H���G.��H��t\H���ZG����tH������H��t�E�t&H���[]��H������H��u�Eu�1�H��[]�@�Eu�1�������UH�5t�GSH��H����-��H��t\H����F����tH�����H��t�Et&H���[]��H���X���H��u�Eu�1�H��[]�@�E u�1����1���UH�5�GH��SH���G-��H��t|H����l����u�CIt#H���[]�@H���x�H��t�C@u�1�H��[]�@H�5��GH����,��H��t&�x ������u�Cu�1���fD�Cu�1�������UH�5T�GSH��H���,��H��tlH���:l����tH�����H��t�E�t9H���[]��H�5	�GH���a,��H��t&�x �D�����u�Eu�1�H��[]Ð�Eu�1��������UH�5�GSH��H���,��H��tlH���k����tH���^�H��t�Et9H���[]��H�5yGH����+��H��t&�x �����u�Eu�1�H��[]Ð�E u�1����q���t�wXH�P�K��PH�\�GH�ӐH�5��H�81��,n��ff.����USH��8dH�%(H��$(1�H�l$ �w��H�XH���P���SH��H�,$H�u�H�=�H�D$H��T$H�D$�5p�����t%H���H���H��$(dH3%(uH��8[]�H�sH�=���{y���d��fDATI��USH��H���G��H��H��H���k��H�{H� tH�{H��u���H�߉��b��H��[]A\�H��L����z������SH��H��dH�%(H�D$1���u	H�����uFH�5O�HH��tSI��1�1�H���HH��H�$�S��H�$H�L$dH3%(uAH��[�D�H�؃���t�H�5��HH��u��H�=Qg��Q��H��H���H���c��D��ATUH��SH�H������tv�����u&H�����H����LH��tb[H��]A\��S��D�s~��A��9�t��wI��H��t�H���E����u����A��D��H���A��H��H��H���VP��H��듐��8�����H�8�GH�5Y�H�81��k��ff.�@��H�����H��H���'�������7t���AWAVAUATI��USH��(H�dH�%(H�D$1��� ��H��H����1۽M�l$H��uH��H��H����H9�}QL��H�<�H�|$@��uH�����t������xH��
H���� u�I�D$H9�}I�D$ �f.�H�|�A�1���s��H��H�@H�D$H�D$��@H����H9���I�D$H�<�H�|$@����H�������������m����L9��H��L��H�=.�Y9��H�D$H�3�� ��H��L�k��I��H����H�t$H���e��H�t$H��H���l��H�t$H��I���j��L��H���%?��I�$�� �(���I;l$��I�D$ H�<�H�|$@���-���D�Kr��H�3E1�H�D$�� �_���L�kL�{H���e���H���h��K�t=L��H�����H�t$H� u5H�V�:/t:�8�?���H�5:-�H���R��H�t$�!���DH�VH��tˀ:/u�L)�H��H���Y��H�t$���f�E��tKH�|$�AG�����@H���GH�H�CH�L$dH3%(H����H��([]A\A]A^A_�@����f�H�G�>��������H�T$H��� t.H�BH�I�$�j���fD1�1��6��H���f.�H������H���GH�5֊H�81��h���_��f.�����u
H9�tH���{���PH�[�GH�5��H�81���g��f���H���T���@AT��A��USH��dH�%(H�D$1�9�u`H�Z�DH�;@��uH�����t
�����tH�$�+p��H��EH���A9��H�D$dH3%(uH��[]A\É���D���J���^��ff.�f���H����o��@��H����AT��H���UH���SH��0H�|$dH�%(H�D$(1��js��H��tdH��H����o��L�`L���mI��A�T$H�t$H�=���H�l$�T$�i��H�\$H�\$H�\$H�T$H�L$(dH3%(upH��0[]A\ÐH�\$H�\$H�|$�o��H��H�D$�oQ��H�D$H� t1H�@H�t$1�H�����H�D$H�=3��H�l$�)>����H�����u]��D��H��H��dH�%(H��$�1�H������1҅�x�D$%�=@�HD�H��$�dH3%(H��uH�Ĩ��]�����H��H��dH�%(H��$�1�H���W���H�H��?H�Ѓ�H��$�dH3%(uH�Ĩ��\��ff.���UH��SH�݇H��dH�%(H��$�1�H��GH98t2H�c�GH���H�0H9�tH���@��uH�����uNfD1�H��H�=��H���DS��H��H�����H�H��?H�Ѓ�H��$�dH3%(u,H�Ĩ[]Ë����u���s��H�����H�5�HE����[��f���SH��H�t$H�|$H�t$ dH�%(H��$�1��
�����x1H��$�H��$��4A��H��$�dH3%(u:H��[���X���H�D$H�D$H�|$�}l����H�=ĊH��H�D$�Gg���"[��f���SH��H�t$H�|$H�t$ dH�%(H��$�1��m�����x.H��$�H�|$x�@��H��$�dH3%(u:H��[��&X���H�D$H�D$H�|$��k����H�=�H��H�D$�f���Z��D��SH��H�t$H�|$H�t$ dH�%(H��$�1�������x+H�t$pH�|$h�?��H��$�dH3%(u:H��[��W���H�D$H�D$H�|$�Ck����H�=j�H��H�D$�
f����Y�����SH��H��H��0dH�%(H��$(1�H���3�����x?H��$�H��������x+H��$�H9$u�H��$�H9T$tf�1�H��$(dH3%(u	H��0[��MY��ff.�f���H��H��dH�%(H��$�1�H�����1҅�x�T$H��6H��?��H��$�dH3%(H��uH�Ĩ���X��ff.�@��H��H��dH�%(H��$�1�H���'���1҅�x�T$H��5H��?��H��$�dH3%(H��uH�Ĩ��oX��ff.�@��H��H��dH�%(H��$�1�H�����1҅�x�T$H��4H��?��H��$�dH3%(H��uH�Ĩ��W��ff.�@��H��H��dH�%(H��$�1�H���G���1҅�x�D$%�= �HD�H��$�dH3%(H��uH�Ĩ��W�����H��H��dH�%(H��$�1�H������1҅�x�D$%�=`�HD�H��$�dH3%(H��uH�Ĩ��W�����H��H��dH�%(H��$�1�H���g���1҅�x�D$%�=��HD�H��$�dH3%(H��uH�Ĩ��V�����H��H��dH�%(H��$�1�H�����1҅�x�D$%�=�HD�H��$�dH3%(H��uH�Ĩ��7V�����H��H��dH�%(H��$�1�H�������x
�|$ ����u&1�H��$�dH3%(uH�Ĩ�f������U��@��SH��H��dH�%(H��$�1�H��������x
�\$�i4��9�t%1�H��$�dH3%(uH�Ġ[������TU��@��SH��H�t$H�|$H�t$ dH�%(H��$�1������x@H�@H�|$PH�x%H�D?H��$�dH3%(uEH��[�@�Y�����DR���H�D$H�D$H�|$�e����H�=�H��H�D$��`���T����H��H��dH�%(H��$�1�H�������xSH�|$0�H��tH�@H�x%H�D?H��$�dH3%(u$H�Ĩ�D��X����f�����T��@��H��H��dH�%(H��$�1�H���g���1҅�xH�|$0H҃�H��$�dH3%(H��uH�Ĩ��S��f���H��H��dH�%(H��$�1�H������1҅�x�D$%�=��HD�H��$�dH3%(H��uH�Ĩ��GS�����H��H��dH�%(H��$�1�H�����xC�T$���u%H��$�dH3%(u)H�Ĩ�f.�H�%�H���̐�����R��@��H��H��dH�%(H��$�1�H�����xC�T$���u%H��$�dH3%(u)H�Ĩ�f.�H�%�H���̐����DR��@��USH��H���H�t$H�l$dH�%(H��$�1�H�l$H���Fc��H��H�D$�E��H��H�D$��8��H�T$ �H���6�������H�{ H��t
��`��H�C ���E��foD$ foL$0foT$@fo\$PH�C fod$`fol$pfo�$�Hfo�$�fo�$�P X0`@hPp`xp���H��$�dH3%(uH���[]�H�t$H�=B��e���Q����SH��0dH�%(H�D$(1��G��D$�����H��u
H�~�9���D$H�;H��H�D$H�<$�a��H��H�$�^D��H�$H� tIH�@1�H�t$H�����H�D$H�=����1��H��u6H�L$(dH3%(�u1H��0[�fDH��뵺��#<��H�4$H�=h��d���.P��ff.���SH��@H�t$dH�%(H�D$81���t}H�H�\$H�T$(H�\$H�|$�!a��H��H�D$�C��H��H�D$�6��1�H�t$ H�����H�="��H�D$ �H0����x9H�L$8dH3%(�uH��@[�f�H����N��H���v����kO��H�t$H�=o��c��f.���H��HH�t$H�$dH�%(H�D$81�H�D$H�D$ H���]`��H�D$H��H�D$ H�<$�G`��H�|$H�$�B��H�<$H�D$�B��H�|$H�D$��5��H�|$H�D$ �5��1�H�t$ H�����H�=H��H�D$(�N/����xH�L$8dH3%(�u!H��H��K��H�$H�T$H�=k~�0�$���oN��ff.�@UH��AWI��AVAULc�ATI�uI��SH��L��H��(dH�%(H�E�1�H�����H�FH��H�E�H��H���H)�H��H9�tH��H��$�H9�u�%���L�t$I���A�FA�^I�NM�~A���~G1ҐHc�I�<���^��H���LA��H�pH� tH�pIcH��H��L��H�q H�A(A�9�|�L��1�H�����H�=�����-��A�v��uoH�}�uEH�]�dH3%(K�D-uOH�e�[A\A]A^A_]�f�H�}�H�M��C.��H�M�I���5����H�}��Y���DH)�H�L�������L��IcH�=�|H��H��I�T��X�����H��1ɉ�H�=���I���f�USH��XdH�%(H�D$H1������_�H�FH�>H�n�T$H�|$H�D$H��uH��ti�DP��H�|$H�D$ H�T$(H9|$u>H�T$8H�D$0H�D$ ��H��H��H�$H�=������H�\$HdH3%(uH��X[]���O���f�1����K������7��f.�����"���f���1�����D��ATUSH��dH�%(H�D$1���~e�o�H�>H����H��t�V4��H�{�$L�c�����H��t�;4��L��H���D$H�=(�����H�T$dH3%(uH��[]A\Ã���6���K�����ATUSH��dH�%(H�D$1���~e�o�H�>H����H��t�3��H�{�$L�c�����H��t�3��L��H���D$H�=����C���H�T$dH3%(uH��[]A\Ã���]6���xJ�����US��H��dH�%(H�D$1���~>H�>H���%3��H�L$H�U�s�H�=2���D$����H�L$dH3%(uH��[]Ã����5���J����USH��(H�t$H�\$H�$dH�%(H�D$1�H�\$H��H���[��H�l$H�D$H�<$�Z��H�|$H�$�W=��H�<$H�D$�I=��H��H�$�}0��H��H���r0��H��H�������xH�L$dH3%(�u#H��([]���F��H�$H�T$H�=�x�0�����6I��fD��USH��(H�t$H�\$H�$dH�%(H�D$1�H�\$H��H���8Z��H�l$H�D$H�<$�%Z��H�|$H�$�<��H�<$H�D$�y<��H��H�$�/��H��H���/��H��H���g1����xH�L$dH3%(�u#H��([]���E��H�$H�T$H�=x�0����fH��fD��SH��H�t$H�\$dH�%(H��$�1�H�\$H���jY��H��H�D$��;��H��H�D$�/��1�H�t$H�����H�D$H�=f��H�D$ H�D$�(�����t%�|$8���H��$�dH3%(uH��[�H�t$H�=w�,\���G�����SH��H�t$H�\$dH�%(H��$�1�H�\$H���X��H��H�D$�
;��H��H�D$�@.��H�����1�H�t$H�D$H�=���H�D$ H�D$��'��1҅�x�D$8%�=��HD�H��$�dH3%(H��u	H��[���F��fDU��SH��8H�|$H�\$dH�%(H�D$(1�H�\$��W��H��H�D$�W:��H��H�D$�-��1�H�t$�l$H�����H�=��H�D$�'��H�T$(dH3%(uH��8[]��[F��ff.���H��H����[���H��H�H��?H�Ѓ��f.���H��H����+���H��H�H��?H�Ѓ��f.���H��H������H��H�H��?H�Ѓ��f.�U��SH��8H�|$H�\$dH�%(H�D$(1�H�\$��V��H��H�D$�79��H��H�D$�j,��1�H�t$�l$H�����H�=q��H�D$�%��H�T$(dH3%(uH��8[]��;E��ff.���H��H����[���H��H�H��?H�Ѓ��f.���H��H����+���H��H�H��?H�Ѓ��f.���H��H������H��H�H��?H�Ѓ��f.���AUATUSH��HdH�%(H��$81�����A��H�>I��@����H�����txH��ƒ���uk�� tVH�~_H�W����te���H�=�o�=��H��t}L��D������C�<3wfH�_r��Hc�H�>��f�H�W��u�D@��u*��6�������u�H���G��H�5:oH�81��2L��f�� ���������H�=`L�=��H��tNI�D$D��L��H�$�4�H�<$H��$�����������C�I��M� ��A����-�N��H�=�n�<��H����D��L�����I�|$H�t$����x\I�|$H��$��j���xFH�L$hH�|$pH��$�H��$��=�%��>����<uE�H9�|
u	H9�|@1�H��$8dH3%(�H��H[]A\A]�f��E�^�������'t/H�th��\t#H�D�G��H�5�mH�81��J��f�H������I�t$1�����q����I�|$H��$��v���1����L�����$��������HD��+���f�I�|$��������	���f�����fDI�|$������y������I�|$H��$������1����������$������`�HD�����I�|$H��$������v�����$��jF��9��b����]���DI�|$��	������A����<���@I�|$H��$��F���1���������$������ �HD����f�I�t$1��dS������I�|$H��$����H�H��?H�Ѓ����DI�|$H��$�����1����������$��������HD��s����I�|$H��$��~���1����T�����$�H��5H��?���=���I�|$H��$��F���1���������$�H��6H��?������I�t$1������I�t$1��������I�|$H��$������1����������$�������HD�����I�|$��a������y����t���@I�t$1��d��a����I�|$H��$��f���1����<�����$�H��4H��?���%���I�|$������	�������@I�|$�������������@I�|$H��$�������1�������H��$�H������fDH��$�H��$���#�����fDH��$H��$���#���p���fDH��$H��$�#���P���fDL��D�����I�T$I�t$1�����$���f��H9���������H9���������H9�������H9���������1��Q)���l=����:���H��H�D$H�<$�N����H�=cnH��H�$�_I��ff.�@��UH����H�I�SH��XH�t$dH�%(H��$H1�H�t$��
R��H����H��H���xN��H�hH���(���UH��bH�l$@H�D$0H�t$ H�H�=b���H�l$ �T$(H�D$8�G��H�\$H�\$H�\$ H�T$����H�����H��$HdH3%(��H��X[]�f.�H�\$H�\$ H�|$�lM��H��H�D$��/��H�D$H� tQH�@H�l$@H�D$0H�t$ 1�H�H�����H�=Ը��H�l$ �D$(����H�D$8�m���C����H����%9���H�D$H�D$ H�|$��L����H�=mH��H�D$�G���;��@��UH��TG1�SH��H��H��GH�8�+P��H��H��tc���9/���o�oK�oS �o[0�oc@�okP�os`�o{pH�o��P X0`@hPp`xp��H�E H��H��[]�fD��USH��dH�%(H��$�1��[L��H�XH����%��H�CH��tHH���M.��H� tTH�@H�l$1�H��H�D$H�����H�=��H�,$�
�����t0H���M=��H��$�dH3%(uH�ĸ[]�H����5:��H�sH�=�j�N��D��USH��dH�%(H��$�1�H���K��H�XH���,%���sH���4�����t%H���<��H��$�dH3%(uH�Ĩ[]�H�sH�=�i�"N���9��ff.�f���SH��H�t$H�\$dH�%(H��$�1�H�\$H���J��H��H�D$�,��H��H�\$ H�D$�+ ��1�H�t$H�����H�=����H�D$H�\$������t$H���;��H��$�dH3%(uH��[�H�t$H�=2h�]M����8�����SH��H�t$dH�%(H��$�1�H�D$H�D$H����I��H��H�D$�=,��H�D$H� u_H��H�\$ 1�H�t$H�����H�=���H�D$H�\$������x9H���6;��H��$�dH3%(uH��[�f.�H�@��8��H�t$H�=Ig�L��@��AVAUATUSH��H��0H�|$dH�%(H�D$(1�H�D$H�D$�	I���dA�dL�d$H��H�D$�\+��H�ھd1�H�D$�(E��H��L�h�b�H��H�D$L��H� tH�C1�L��H�����H�D$H�=w���L�t$ ����I9�u8�L��H���KK��Lc�H��L���m0��H�D$H� t�H�@�f�H��x+H��H���@=��H��H�L$(dH3%(u1H��0[]A\A]A^��K4��1�H�ߋ(�=��H�T$H�=3h����B���6�����SH���s%��H��[H����,�����ATUSH��H9�s-H��I��� �H��L��H������H�H�H9�v�;/u�H��[]A\�ff.���H������AUATUSH��H9�s}H��H��I��E1���H��L��H�����H�H�H9�v.�;/u�H�CH9�v �{/t�2f.��8/uH��H9�u�H��L��[]A\A]�@I��H���I��H���E1���ff.�AWAVI��AUATUSH��H��8H�|$ H��H�t$H�L$PL�D$D�L$DdH�%(H��$(1����H�;M�<�	=��H�D$H��HH�D$(H����M9��	H��$�H�D$0H��$�H�D$8H�D$xH�D$Hf�H�T$L��L�����I��I��H��M)�I9�v �8/t���;/uH��I9�u�L��I����H�D$H�8I��u
A�>.������H��H�D$ H�H�E�� � H����H9��L��L��H���R&��H�|$H�����I��H��tdH�|$(�r@��I9��lL���a��H�L$H�I��I9�����E1�H��$(dH3%(D����H��8[]A\A]A^A_�fDH�EH�E tH�EH��$�H�t$81�H�����H�D$0H�=���H��$��7��������$�%�=���H���#��H�|$H��H����	��H�D$H�(�9���f�H�EH9�����H�5�H���/%������f.�A�>.�����H�D$H�8�|���f�A�~.�h���H�D$ H�(H��� �PH����H9������H��H�H�T$H�4H���I���H��H)�H��H�D$ HD�H�0H�D$H�8H���8���q���H�D$xH�|$(�>��H�|$H��H������H�t$H���(��H��H�PH� tH�PH��H�T$`H�L$X�:��H�L$XH�T$`H��� ��L�YN�4I9����:/��H�����8/��H��I9�u�M��I)�M��L�D$X��H��1�A�<$H����L��PD�L$TL�D$ H�t$H�|$0����ZY���@H�D$HH��$�H�D$xH�D$H�8�!��H�|$H��H�������M���H��I��A���<����	H�=�\���H�D$(H�!�H����I��M��I)�M��L�D$X�K���H��H�L$`��8��H�L$`L�D$X1�H�D$hH��L��H�L$xL�D$`�
���H��H�D$XH�D$H�8�5<��L�L$hH�L$XL�D$`I9�tH��H��L��L�D$X���L�D$XH��H�D$H�H�D$ L����H�GH9��k���H�H�����D$��-��D�D$�0����H�D$PH����H�H�L$�� ��H��H��$�H�t$81�H�����H�D$0H�=����D�D$H��$����D�D$�����D$D������|$D����$p��A�<$��H�D$H�(���D�D$DE�����-��A������(����|$D���������t�H��H�=�`�;��f�I�����H�D$PH�@����A������E���H�D$H�t$PH�8����E1��+���H��H�=^`�A;��H��(H�=J`�-;���/���AWAVAUA��ATUSH��XH�|$H��H�T$dH�%(H�D$H1�H�D$8���H�|$H�D$0H��t&H�D$H�D$@��?��H��H�D$����H�D$H�D$0H���V6��H�|$0I��H�/�� ��H��L����/6��L�L��L9���A�?/t��D�;/��H��H9�u�H��H�|$01�H��L)�1�E1��4���H�D$(H��� �H��L�p��H�L$ L�L��L��H��H�L$����H�L$H9���L��������������!��L�t$ L�\$(I��M��t5H��E��I��L��j�L��L��L�\$���AXAY��L�\$�BH��t3H���H��L��jE��M��L��L�\$���ZY��L�\$�
H��L��L��E��jM��H�����^_����H�\$H�D$(H��t3H����4��H9�t!H�|$(�c�����"H�t$H�|$(�
��H�D$(H�T$0H�T$@H�T$0H�T$8H�T$@H�T$8H�t$HdH34%(�H��X[]A\A]A^A_�fDI9���H�|$H����L�?A�� ��L�wL��4��M�L��M9���A�>/t���}/urH��I9�u�L��H�|$1�L��L)�E1��)���H�H�D$(�� ������L�pH�H���L�H�o�o���I��L�wA���o����I9���Z���H�H�D$8�� ��H��H�H��I��H��H�L$�N3��H�L$N�<1I9����9/��H���fD�8/�H��I9�u�H�|$8L��1��W�H�D$(����D��u���fD��E��H�|$(���(���L���f�H�pH�|$(L)�H�t$ �*$������DH�HL�p�H���I��I��I)��|���f�1��
���H�T$H�|$(1����H�D$(����I��E1��M���I���j���H���U����~*��ff.�AVAUI��ATI��USH��H��dH�%(H��$�1�����H�����r��H��H�D$H����H� ��x/t���H��1��
��I��H���A���L��H�����H��L��H����/��L��H������H�CH� tH�CH�D$1�H�D$ H�t$H�����H�=8���H�D$�.
������M��t(H���I1��I9�tH���������TL��H���9��H���17��=0��H�D$H�D$H�D$H��$�dH3%(H���"H��[]A\A]A^�DH�x�?/����������H��H����#��H������H�D$H��H� ����H�x1�����I��H������@�&�����tO��t7������V���D�H��L��L���u���H���6���DH�|$H�t$ ������x����ΐ���H��H��� ��H���6��=0����4��H��H����������H��L��1����H������'��H�t$H�=:Y�e<��D��USH��(dH�%(H�D$1��G���w_���uH�nH�>H�D$H�D$H�|$��8��H��H��H�D$�Y/���H��H��H������H�T$dH3%(uH��([]�����U'��D��USH��(dH�%(H�D$1��G���w_���uH�nH�>H�D$H�D$H�|$�I8��H��H��H�D$��.���H��H��H���v���H�T$dH3%(uH��([]��Z�����&��D��H9�s1��?/��H�������AVI��AUATUH�oSH��H� tH�oH���E.��I���=��I��I9�t(H��L��H���W��L��L��H��H��� u6�A��H�hH���>��H��t+H�p L���4������[L��]A\A]A^����H�h���p��H��GH��H�5�QH�81��e.��D��USH��H�=�(H���!��H��tH��H��H��[]������lH����mH��H��t2H�uH�E tH�uH�����H��1��+��H��H��[]�@�coH��H��u��*��H�5�N��H�=�GH�81��-��ff.���ATI��H��UH��S1ۅ��Ã���,����H��[L��]H��A\���ff.����1��u���D��AWAVI��AUATI��UH��SH��(H�t$H����H�A�L��/u�H�����/t��u@H�D$����L�{��H�L$H��tH�H��t	H�D$H�EH��(L��[]A\A]A^A_ÐL�L��H��H��H�D$�
;��I��H�����8/uf�I��A�?/t�H�t$L��L���F���I��L)�H�D$M9�s&A�L��<.t�9f��<.u)H��I9�u�H�D$�H���fD�������fDE1���H�t$<.H��L��LD��?�H�H�I9�w�L��L)�M��HDD$���I���R������AWAVAUATUSH��hdH�%(H�D$X1��G�H�D$8���S���@H�>�X4��H�t$8H��H����H����%��H��H����H��� ��H�CH�D$HH����H�{�?��H�T$HH�t$@H���u��L�d$HI��M����H�|$8��H�L�d$@�� ��H����L9�tkL��L�����H��H��H�D$�&��H�D$�Qf�H���*��H�D$8H��H��� �J���H��H�{��H�D$H�J���f.�H������H�L$XdH3%(�4H��h[]A\A]A^A_�DH�FH�|$8H�t$H�D$8���H�|$8辝��H�t$���@L�l$8L�����I��H�D$8L�A�� �I��A��L�d$HM����M����H�D$@O�H��L��L��L�D$H�D$(H�D$4H��L�\$H�D$ ��Hc|$4L�\$H��H�T$P�D$L�L����L�D$��*��M9�}=L�d$@M��tqL�l$PH�D$8H��� �^���H�C�\���@L�d$@�S���fDL��K�'L��H��L)�L�D$M�H�D$L��L�L$�-(��L�L$L�D$I9���L�d$HL�d$@�fDL�@�����D$PD$4H�I9��K����|$.tnO�4'L�t$M9�syM��DH�T$ H�t$L��H����9D$HcD$4MD�I�L9d$w�M)�M������L��L��L����L�d$���[�������L�d$(���������L�t$����ff.���ATUSH��H�|$��0��H�|$H�D$�{��H�|$I��H�/�� ��H�����8'��L�L��I9�sA�<$/t�@�;/uH��H9�u�H��I�L$H�S�H��H��H9�LG�H����5��H��HD�I9�t=L)�L��H���'���H�t$H��H���7#��H��H��[]A\�H�o�r�����H�=%}���H��H��H��[]A\����SH��H��H�t$��/��H�t$�4�H�D$�!���H�|$H����5��H��H���Y��H��[���H���5��@��AWAVI��AUATI��USH��H��H����H�H�,L��H��H����4��I��H����I��A���/t�L����.uH�����.t�E1��u$�m��/t+L��H��H���u�H�H����t��.u�I�����M��t#M��t>M9�t9I�EH��L)�H9øHE�I�H��L��[]A\A]A^A_�M��t�f�I�����I���J���D����
���fD��SH��H�� H�t$dH�%(H�D$1��J.��H�|$H�D$����H�|$H��H��� u[H����H�D$�$��H�t$H��H���j-��H�T$H��~@H)�H�|$H�����H�L$dH3%(u+H�� [�f.�H�G�f.�1�1�������p����H��H��H�=W�H�J3��f.���1��?/�����AWI��AVA��AUATUSL��H��8H�|$(�L$��
��H�|$(H�D$�X��H�|$(I��L�'A�� ��I��A��K�D%H�D$�#��L�H�$A�� ��I��H�kA��M��A�}~u	E���NL���^������I���,�L$I��D��L���5���H�t$(H����&��H��H���=���L�A�� �H�kL�cJ�t%H��H9�s�}/t��?/uH��H9�u�H��H�$M���S���I���bfDM��DI��A�>/t�L��L)�I��I9��\L��/N�|-H����L��H�����H�t$(H���&��H��H�����L9�sA��/��M��H��I)�L������I�UL9��A�/H��H��H�T$���H�T$I9���H�CA�GA�M��H�D$���t0��.�3��/�JH�$H�t$L������H�I�A���u�M9��#1�A�?��L�H9����}/H��t��x/uH��H�PH9�u�I9�H������I�L��H)�����H�|$(H���%��H�#���H��8H��[]A\A]A^A_�fDM�M9�s�L��H��H�k���H� �����H�k�w���A�EM�}</�W���OH�$H�t$L������I��I��M)�M9���M���9H�#���L��H���A��H�4$H������H��H���J�H�{H� tH�{������<H���GH�8M����H��L�L$(H�<$M��D��H�hB1�����f�M�I9�v�L��H��H�k���H� tH�kN�|-����f�M�L9�s�L��H��H�T$H�k���H� H�T$tH�kN�|-����A�U�����/��I���I�FA�VM9���I�����fDM9�rM�nA�VM�����f.�L��H��H)�H�rH�T$����M��H�T$M)�J�DL9�sI��M��uQM�A�/�f�M�L9�s�L��H��L�T$ H�T$���H�T$L�T$ H� �4H�kL�|I��M��t�L��L��L��L�T$�W-��L�T$땀�.�������/�f����������L�g�����H�kL�c�-���L��H��M)�H)�H�rH�$���H�$J�D2L9�r:f�M�L9�s�L��H��H�$H�k����H� H�$tH�kL�|I��M��unM�H��L��H)�����]���M�M9�s�L��H��H�k���H� � ���H�k����I��H�kA��M������@H�l$����fDL��L��L���*,����1�H��M���#��A�}tM�uH��E1�E1��������DI��M��I)�I�U�3���DI��A�VM���W����L�A�� �WI��H�kA��M��N�|%�����*��H��H��� ���H��I���e"��H�$I��I��H�D$H9�tiH�L$(H��L��H��H�$���H�<$H��I���k ��H�L$I��H�$H9�t2H��L��H������H�0I��� �&H��L�H��I��@M�M9�r�L��H��L�L$L�s����H� L�L$tL�sM����H���#��I��t
1�L�����H�4$H���M�L�K�4&A�� uAI��H�kA��M���	���f�H�E��i���H�5@1����H�kL�c���H�kL�c����A�H�$L��H����*��H��tM�nA�VI��M�����A�/L����L��L��H���)�����L��L��L����)���#���L�HL�`�������USH��H����$��H��H��tH���$��H�þ1��n��H�޹1�I��H������H�0H��� uH����H���|��H��H��[]�f�H�p��f.����W���wH����uH�pH�8�
��P腧��D��������UH���SH��1�H������H��H��1�I��1��r���H�0H��� uH����H������H��H��[]�H�p��f���USH��H���#��H��H��tH���#��H�þ1��N��H�޹H��I������H�0H��� u H����H���Y��H��H��[]��H�p��f����W���wH����uH�pH�8�{�P�e���D�������S�H��1����H��1�1�I���[�[���ff.���H��H���"��H�xH� tH�x�*����H�H��H�Ѓ��f���AWAVAUATUSH���dH�%(H��$�1�H���/H�����:H��L�4�v
��H��H��H�D$H�$H�D$ ID�H�D$f�H��H��H)����H�<$H�D$���H��H���y�����aL�d$I�$�� ��H����L��L�<E1��Y��I���8@L��L��H���B'��I��M��tA�$/M����L9���A�M��H�T$H�޿������u��D$8�����@u�M��t��tL��L��H����&��I���D�H���S�����k���D�D$8�D$H��1�H�
�5H�5�9L����M��D�L$tA�$/H�$H�D$H�D$H��$�dH3%(D����H���[]A\A]A^A_�fDH�]I9�r�:H������H��H��ID��s����#��H��I���p��L��I���E���H�5��L���!��H��L��I�\$��I�$L�d$�� �`���I�\$I�L$�X���A��;���������S���H��dH�%(H��$�1�H���	��1҅�x>�\$�������t'���������t������@t&�1�H��$�dH3%(��uH�Ġ[��1����A�����U1Ҿ1�SH���������t�É�������3����߉����H����[]Ð��AWAVAUI��ATUH��SH��HdH�%(H�D$81����H�}���8~I��M�u�(H���p���Å���L������I��M�4$A�� ��I��A��H�uH����1�M�|$�@L��L��H�����H�t�H��tL�����L��I�$ tI�|$����t�I�uL����͌��I�E�I�A�<$.uA�D$<.uA�D$</�K���H�D$ H�D$H�D$0��H�D$ H��uW1�H�L$8dH3%(����H��H[]A\A]A^A_�f�M�t$����fDL������I��I�E���I�}���H�$H�@H��� �TH����H�D$�L�|$(�"���H��I��� 
��H�uH�D$H����H�<$E1����v@H����I9���H��J�<�L�|$0H�|$(�!��H�H�D$(�� u\����„�u-H�<$M��1�1�H���t�I�~I� tI�~�^�����uwI��H�D$ H��� u�L;`}H�@ �DH�x���fDH�t$H�<$���H�D$H�D$H�t�H���'���1�L���w��H�D$H�D$0H�D$ �U���I�uL���NJ���\$I�E���9���H�$H�@H�D$�����
����ATUSH��0H�|$H�|$dH�%(H�D$(1���8~��H��H���q�����tEH���e�����tgH�\$H������H��H���9���H�L$(dH3%(��H��0[]A\�@�;.u�C<.u�C</t�H�D$H�D$ ��H�D$H��ub1��fDH�|$�f���H�t$H���ɉ��H�D$H� tH�x������t�H�D$�k���@H�x�����u�1��S���@�E1�H�l$�& ���H��H������I@H����I9���H��J�<�H�l$ H�|$����H�H�D$�� u,����„�u+I��H�D$H��� u�L;`}XH�@ �f�H�x�„�t�H�|$I��1�1�H�����H�{H� tH�{������t�H�t$H��蹈���{���@1�H���6��1��f�������f.���AUH�=�4ATUSH����H�-mGH��kGH�=dH�uH���H��kGH�5WqG�H�=z4H��C����H�5w���H�=�+����H�5����H�=������H�5w��H�=O4����H�5?��H�="4����H�5W���H�=4�˃���H�5���H�=&4賃���H�5���H�=�3蛃���H�5����H�=�3胃���H�5���H�=�3�k����H�5O���H�=�3�S����H�5׳��H�=�3�;����H�5_���H�=c;�#����H�5G���H�=v������H�5����H�=�3���H�5ױ��H�=��ۂ���H�5O���H�=l3�Â���H�5ǰ��H�=Q3諂���H�5?���H�=C3蓂���H�5'���H�=13�{����H�5����H�="3�c����H�5���H�=3�K����H�5����H�=3�3����H�5���H�=�2�����H�5���H�=�2�����H�5����H�=�2����H�5?���H�=�2�Ӂ��H�;�H�4��H�5#B��H�;�H�Y��H�5�2��H�;�H�n���H�5�2���H�;�H�3���H�5p2���H�;�H�x���H�5.e��H�;�H�����H�51e��H�;H�gfG�H�5q0�v�H�;�����H�����H�5`��[�H�;�����H�����H�5�1�@�H�;�����H����H�5�1�%�L�%>nGH�;�����H�5�1L����H�;�����H�(���H�5�1���H�;�����H���H�5�1���H�;�H�r���H�5�1��H�;�H�����H�5_1��H�;�H����H�5L1��H�;�����H�����H�5��e�H�;�����H�v���H�5�U�J�H�;�H�˴��H�51�/�H�;�����H�0���H�5�0��H�;�H�ų��H�53��H�;�����H�����H�5�0���H�;�����H���H�5�0���H�;�����H���H�5�0��H�;�H���H�5�0��H�;�����H���H�5�0�r�H�;�����H�c��H�5r0�W�H�;�����H����H�5c0�<�H�;�H���H�5Q0�!�H�;�H���H�5>0��H�;�H�7���H�5L����H�=U�����H�;H�50H��I�����H�;L��H�50���H�;�H���H�5�/��H�;�����H����H�5���}�H�;�H�5�/�9���H�=��X��H�;H�5�/H�����H�}1�H����H�58>�M��H�;1�H�!��H�5�.�5��H�;1�H�ɀ��H�5�.���H�;1�H�!���H�5ga���H�;1�H�y��H�5ma����H�;1�H����H�5�,����H�;1�H�����H�5"
���H�;�H�^���H�52.���H�;�H�����H�5.���H�;�H�����H�5���l��H�;�H�
���H�5�.�Q��H�;H�5�.���H�}H��H��H�_��H�=�H�H�5t.����H�=ȈH�H�5c.���H�=��H�H�5R.���H�=��H�H�5?.���H�=��H��H�5..�g��H�=h�H�H�5.�O��H�=P�H�H�5	.�7��H�=8�H�H�5�-���H�= �H�H�5�-���H�=�H�H�5�-����H�=�H�H�5�-����H�=؇H�  H�5�-���H�=��H� H�5�-���H�=��H�  H�5�-���H�=��H�H�5-�w��H�=x�H�H�5p-�_��H�=`�H��H�5`-�G��H�=H�H��H�5O-�/��H�=0�H�H�5?-���H�=�H�H�5/-���H�=�H�H�5-����H�=�H�	H�5-����H�=p0�RH�=ĆHH�5!�H�����H�;1�H�ё��H�5&����H�;1�H�����H�5����������H�5��H�=�,���H��gGH�;H�5)H����H��cGH�5�z��H��H�����H�;�H��H�5���h��H�;�H�����H�5���M��H��fGH�;H�0�k��H�;�H�����H�5³� ��H�;1�H�����H�5
,���H�;1�H����H�5�+����H�;1�H�����H�5�+����H�;1�H����H�5�+���H�;1�H�T���H�5�[���H�;1�H�����H�5����H�;1�H�����H�5��x��H�;1�H�l���H�5��`��H�;1�H�D���H�5I+�H��H�;1�H���H�56+�0��H�;1�H�����H�5)+���H�;1�H����H�5e���H�;1�H�����H�5+����H�;1�H�,���H�5�r����H�;1�H����H�5A)���H�;1�H�����H�5\���H�;1�H�t���H�5\���H�;L��1�H�5O'�t��H�;1�H��|��H�5���\��H�;1�H�����H�5�(�D��H�;1�H�؇��H�5�'�,��H�;1�H�����H�5�'���H�;1�H�X���H�5�'���H�;1�H�P���H�5�'����H�;1�H�����H�5�'����H�;1�H�����H�5�'���H�;1�H�Ȇ��H�5�'���H�;1�H� ���H�5�'���H�;1�H�����H�5u'�l��H�;1�H����H�5n'�T��H�;1�H�����H�5�.�<��H�;1�H�Љ��H�5D'�$��H�;1�H�x���H�55'���H�;1�H�P���H�5'����H�;1�H����H�5'����H�;1�H�����H�5�&����H�;1�H�h���H�5�&���H�;1�H����H�5�&���H�;1�H�����H�5�&�|��H�;1�H�`���H�5�&�d��H�;1�H����H�5�&�L��H�;H��1�[H�����H�5�&]A\A]�*��f.�@��t:�@��u,������tEH��tO@��tYH��4tcH����@��f�H�����u�H��t�H��t�H���ø�f.���f.���f.���f.���H�`GH�H����`�Ð��H��H���@��H�H��@�R)��ff.���H�H��@�R)��ff.���H��_GH�H���H������H��H�r_GH�����H�����H������JH�����	�J�fD��H��H�VH�NH��H�8��f���H�H��H1��ff.���H��^GH�H�����HH�H�Ѓ��f.���H��^GH�H���ǀHHǀX����H��^GH�H���ǀHHǀX����PXH��H�WH�wH�?���fD��H��H��H��_GA��H�)�H�81��U��1�H���ff.�ATUSH��H���H�T$PH�L$XL�D$`L�L$h��t=)D$p)�$�)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$81�H��$H�l$ �D$ H�D$(H�D$@�D$$0H�D$0H�<$H�\$H�l$�����tH����������tH��H�=����Z���L�%�^G��H�=�'I�$�	��I�<$H��H�ھ�U��� ���SH�GH��H��H��H9W wH�C [�fDH�H��H���H�CH�S���H�CH�C [�f.���H��\GH�H���H��PHǀhHǀPHǀ`HǀXH��tH������H��ø�f.���H�=��H1�H�5���������SH��H�?1�H�5l����H�;�?��H�{[�5��DSH��dH�%(H��$�1��'�GH��tH�޿�K�����t_��GH��1����f��u!f�f���H*D$�Y$G�H*$�X�H��$�dH3%(u2H�Ġ[�fDf�f���H*D$�Y�F�H*$�X���`�L�M��tOD�ƃ���tM���H��tu3�u(H�������1�H���H���f.�H�u��1�H����D1�@��u H�����t��tA��t�霄��@��fD��UH��SH��H��dH�%(H�D$1�H�iZGH��H�H���H��(�����tH�L$dH3%(H�$ujH��[]ÐH�{ �)H�<$��<H��(H�$H��H�C ����H�� H�4$H������@��u�H�����t�H�E�ƒ���t���H�E���f���ATI��USH��H�/dH�%(H�D$1�H�$H�����I�|$H�XH�$���H��H�5R���H��H�H�$�S��H�$H�L$dH3%(u	H��[]A\��q�H���FH��?H��Hc�H�>��H�=�zHH���H���w����H�=�zHH��u�H�=�)�����H��H�azH���H�=YzHH��u�H�=N$����H��H�9zH��H�=1zHH��u�H�=$����H��H�zH�d���@H�=zHH���P���H�=�#��O��H��H��yH�0���H�=�yHH��� ���H�=�#����H��H��yH����H�=�yHH����H�=j#�����H��H��yH����H�=�yHH�������H�=1#����H��H�myH���H�=iyHH�������H�=�"����H��H�EyH�p���H�=AyHH���`���H�=�"��_��H��H�yH�@���H�=yHH���0���H�=�"��/��H��H��xH����H�=�xHH������H�=Q"�
���H��H��xH���H�=�xHH������H�="�	����H��H��xH���H�=�xHH�������H�=�!����H��H�}xH���H�=yxHH���p���H�=@���o��H��H�UxH�P���H�=QxHH���@���H�=x!��?��H��H�-xH� ���H�=)xHH������H�=?!����H��H�xH��H�=xHH�����H�=!�����H��H��wH���H�=�wHH�������H�=� ����H��H��wH���H�=�wHH�������H�=� ����H��H��wH�`���H�=�wHH���P���H�=^ ��O��H��H�ewH�0���H�=awHH��� ���H�=% ����H��H�=wH����H�=9wHH����H�=������H��H�wH����H�=wHH�������H�=�����H��H��vH���H�=�vHH�������H�=c�����H��H��vH�p���H�=�vHH���`���H�=K��_��H��H��vH�@���H�=�vHH���0���H�=�$��/��H��H�uvH����H�D?H���fDH�=�$����H��H�uuH���H�D?�f.���H��H��H�׺�h��1�H��ÐAWAVAUI��ATI��USHc�I��H����uHc�LA����A���I�������A�E����������H�5��G�H����H�=��?��H������H�=�H�t�G���H������H�=�H�$vH���H���g����H�=�H��uH����H���G����H�=:H��uH���H���'����H�=R�H��uH���H�������H�=lH��uH���H������H�=SH�\uH�_��H�������H�=:H�4uH�?��H������H�=s�H�uH���H������	H�=H��tH���H���g����H�=�H��tH����H���G����H�=�H��tH���H���'����H�=�~H�ltH���H�������H�=�H�DtH���H������H�=vH�tH�_��H�������H�=[H��sH�?��H������H�=CH��sH���H�����H�5`�GH��sHH��sH���Kf�H9���I���}H��L���r���H�5�sHH��%H9���H��sHH��uH�osH����L���6���H�5�sHH�ځ�@H9��MH��A�L��IEׁ� ����H�5ssHH��H9��H��L��IE����E��uBH�5<sHH9���I��t,A�D$H��rH��t��H��rHHE�rHL��虿��H����L��H��[]A\A]A^A_�DH�5!�GL��A�H���s���H��rH�������H��rH�������H�rH�������H�grH��������� �HEFrH�y���f�H;-yrHtH;-`rH���� H;-UrHH����@1�H���9���H���[]A\A]A^A_ÐH��qH���b���H��qH���R������HE�qH�=���H��qH������H��qH������H�qqH�������H�YqH����������HE�qH���H��HGH�5H�81�����@H���*���f.�A�T$H��pH���N�����H��pHHE�pH�7���H������H�55H��H�2PGH�81���AWI��������?AVAUATUH��S1�H���~��H�D$�t��I���l��I���'�H��H���t�L��L��H���F���H��t H��� L�t?L9�v���I����@I��������?1��"f�H��H���$�L��L��H�����H��t H���L�t?L9�v��Y�I����@H�=�oHH��tT��H�|$L��H��诼��H�=`oHH��tS�n�H�\$L��H��H��苼��H��H��[]A\A]A^A_�f�H�=��
���H��H�oH�H�=�%����H��H��nH���AVAUATUSH��dH�%(H��$1�H�cLGH�H�������A��.H��H��H���H�H��H9�u�H��H���uH���E1�L��1�H�L�H�AK��H�4�H9�r�,fD��H��(H��H9�vH�H��u�H��(H��H9�w�H��M�L9�u�I����I�$�Ā��I�D$H�x������H��������?I9���H�=�lHO�l-H�������L��L��H�����H��������?H9��|H�\H�=�lHH���G��H��L��1�I��������?H��蠺���fDL��L��荺��H��H�� ��H����H�|�I��H��t�H�T?L9�v����H��뾩�����$���L��H�5����L������H��������?I9�����L����H�=�kHI��H������H�=���U��H��H��kH���fDH��$dH3%(L����H��[]A\A]A^�L�&A��uI�����tA�$���������H�%DGH�5$H�81���@H�=$�����H��H�-kH���H�����H���y����C��I������E1�����1������f�UH��H��SH��H�=MmH���H��H��t��kH���e��H��H��[]��AVA��AUI��ATI��U1�SH�� �D$�$dH�%(H�D$1��y��H��t�8H��u,H�L$dH3%(����H�� []A\A]A^�f�H�t$H�������;f(�tzH�D$�8upf�f.���E„�t
A�����d$f/���,$f.�ztrf/$vk�\$�`����\$H�������1��J���fD�;���1�H������0���H�uIGI��L��H�p�H�81��9�������@�$����$H�����u�A]������H�IG�AMf(�L��H�(�H�8��ӭ���$��$�AMf(�L��H�SH��HG�1�H�8�蘭���g����$�V����$H�����������T$�AMf(�L��H����S���H���3��H���f���H��H�5�F�ܥ��H�@H�xH��������?H9�w
H�D?H���H������ff.�@��SH�5��FH�� dH�%(H�D$1��{���H��H��FGH�H���H�$���H�{H��H�5�(H�D$�F��H�D$H�L$dH3%(uH�� [��f��fD��SH�5�FH�� dH�%(H�D$1����H��H�FGH�H���H�$���H�{H��H�5�(H�D$����H�D$H�L$dH3%(uH�� [�����fD��UH�5��FSH��H��H��EGH�H����v���H�5_)H�xH���c��H��H��[]�f���UH�5D�FSH��H��H�EEGH�H����&���H�5?)H�xH�����H��H��[]�f���UH�5�FSH��H��H��DGH�H����֣��H�5)H�xH������H��H��[]�f���ATUSH��H�� dH�%(H�D$1���������؃����!H���'���.H�{�5���H��H�5K�FI���C���H��H�=�L��H��1���H�}H��H��t)H�)DGH��H�\$H�5:)H�H���H�$���H�CH� tH�C�#�H�5�}H�����H��H�L$dH3%(��H�� []A\��H������=���H��t5H���.���H�}FGH�8�#���DH��=GH�8����f�H��CGH�8����H�CGH�8����H�a?GH�8�����H��AGH�8�����\��ff.����H9�twATH��(UH)�H��SH��H��L�d�(H��f�H�\$H�|$����u'H�uH��tH�|$�
��H��tH�|$�[���H�EH��(L9�u�H��1�[]A\�f�1��ff.�f���H��BGH�H�����H��tpH��`H��tdH��PH�Rf�H��H�AH�Tf��XH��0H9�u�H�0fH~�H9�u麜��fH~�H��<������tH��u�H���H��H��H���f�AWAVAUATUSH��H��AGH�L���A��HM��`��tM��uH��[]A\A]A^A_�H��I���H��1�H�=E1�L�-���H��H��ӾxH�=w���H��H���f�K�v�
�,I��L��H��I�PL���YHH�H(H�P �@L�@���H��H���M9�r�H��[]A\A]A^A_���S1����H�5�AGH��H����H��[�ff.�f�AWI��AVI��AUI��ATI��U1�S1�H��f�I�4$H9�vmI�EH��t7H��H�L�H;ir�fDH�T�H��H9jv}H��u�H��H�H�JH9�s�.fDH��H�JH9�rH��H9�r�H��[]A\A]A^A_�H�H�ͺ(H��H��H�4�L��A�ׅ��S���H��[]A\A]A^A_�@H9�s�H��H��y���ff.�f���H��H�H�OH�WH��H��������H�����AUH��ATUSH��dH�%(H�D$1�H�h?GH�H������H��H��H���XH����H����H���������ȃ�����H���������I��I��L��L��H��H��H��I��H��H)�H���>H�� H��H���������H�$H��4�����t��tzH�}PtH��H%���H�0�Fu)�H�T$dH3%(H����H��[]A\A]�fDH���������H�ʁ�?H��H��H��H��H��H�D�pH��r�f�H�u H����
H��H��tO�yH�5�
H��H��8GH�81�����H���=��H������H���6��H�����fD�3yH�5�
H��H�j8GH�81��X���H���ر��H��tL����H�������H�/8GL��H�5
H�81����H���������H���?H%���L�H��H��H��H��H����?I����1�H�H��rH��A�H�H�H���H���������H����?H%���H�0H��H��H��H��H����?H����1�H�H��rH�рN�H��ff.��H���������H��H����?H�����H��H��H�H��H��H��H����H��s��[���ff.�H�WH�H�
H�RH��H�T��H9�tH��(H��H�GH��H�GH��H�GH�@H��ff.����@��u	H�����u1�@��u	H�����u�H������u���H������������ff.�f���1�@��u	H�����u�f.�H������������ff.�f�H�G@�uH�����upH�GH�uH�����uHH�G(H��t8�H���u H�����t�
����u
H�RH�fDH�@H��u��fD�����u�H�@H�GH�@�����u�H�@H�G@�y���f��W��w1���u
H�G�D��H�H�x ���USH��hdH�%(H�D$X1�H�GH�(H��t	H�H ��t=H�O8H�������H�IH�����u1H�(H�D$XdH3%(uH��h[]��H�MH���H�x�4$H���H�T$81�H�|$H��H�D$H�\$H�D$ H�D$(H�D$0H�D$H4�D$@���H�C�n�������f���@��uH�����t
�����
t���fDH���8��H��H�����@��uH�����t
�����
t1�H9����f.�H�����H����H�����f�H��@��u+H�����t"H��ƒ���t��uH���fD������H�5�H��H��:GH�81��{��ff.�S��1
H�������t[�H����H�5xH��H��:GH�81��4��@@��tB������t@��uH�����t	���H�@H�x	H�D?��+��H��诡��H��H��H�<�H��H������H�5u���USH��H��8H�4$dH�%(H��$(1�H��7GH�H�D$�9���H��H�D$ 茒��H�|$PH�D$@4H�D$(H�D$H�@DŽ$ H�D$0H�D$8H�D$H�D$H�@H��$�ܞ�������H�D$H�@���ǀ�����H�\$8H�l$�UH����H9���H�$H�T$(H��H��H�T$H� taH��H�xH��H���1
�#���H�\$8H�D$H�T$0H�|$ H�P�6�H�$H��� u�H�$H;X} H�$H�T$(H�@ 뎐H�@ �f.�H��$H�L$H�AH��$(dH3%(u7H��8[]�H�D$8H��H�D$8�����H�t$H�D$@H�F����`��H��tH�~u�H��H��H��H��VH�5HH�������uH���H��2GH�5�
H�81����ff.�@��H��H��5GH�H���H��t)H�ր�t3��t<H��/GH�50H�81��<��@H�|$����H�|$H��1�H����H�����t������t߃�u�1�H����D��SH��@��u>H�����t5�����u+�׃�u1H�y��H��u	�[�f�H��H��[�4���H����������������H�BH����H�xP��H�@@�uH�����tH�����tuAUATI��H��U��SH��H�����H�SE1�I��H�zXH��uXM�EI�E tM�EH�JPH� u1H��H��Hc�L��1�[H�xg]A\A]駔�����H�I��f��K���H�SA���f�PXH�='�"�H��H�25GH������耜��AWAVI��AUI��ATUSH��(dH�%(H�D$1����I��1�M��tA�<$u&H�T$dH3%(��H��([]A\A]A^A_�H�t$1�L������H�l$I���]�K���&v}1Ʉ���H�L$���H�L$H���H��H�l$�]�����DX u�����H������ M��L��H�E�H�64G�H�81�����1��:����H��H��H�H����H�@@H���H�H!��I���H�E�H��H�D$�]H��H��������������Nf�H��u+L��M��~[�>���H������	I�����@H��������1�H��H��H��I9��
I9��L��H��I���D���H�����uz1��=���H�E�@H�����H�D$�]H��H��������\����DH�E�H����H�D$�]H��H���������$����W���f�H��M�M��L��H��2Gj�H��	H�81��d���X1�Z���H�q2GM�M��L��H���H�81��2�������D��H���������M��L��H�1	������ff.�@��1�@��u	H�����u�f.�H������������ff.�f���AWH��AVH%���AUATUSH��L�(I�E A�e�H9���H��I��I��H��E1�L�*I���������L��DH�ك�u(H�����tH�3�������G�w)f�L�H9�u�fE�uH��1�[]A\A]A^A_�f�H��I�ہ�?I�����H��M�I��H��H��H����?M�\�8I��sA�MI����H���l�����Ic�L�>��H�CH����H�P��uH�����t�
����uH�RH�PH�PP��uH�����t�
����uH�RH�PPH�����uH�����t�
����uH�RH���H�����uH�����t�
����uH�RH���H�Pp��uH�����t�
����uH�RH�PpH�����u&H�����t�
����uH�RH����H�C��t���H������h���������Z���H�@H�C�M���DH�I�E A��H�CI�] �,���@A�M���H�C�uH�����t�����uH�@H�C@H�C��l���H������`���������R���H�@H�C�E���DE1����L��H�MH�5��H���(H�CI���������L�nL���t������`H��`���H�C �����H�������������������H�@H�C ���@H�������
�N�Ic�L�>��H�C �uH�����t�����uH�@H�C H�CH���e�����]���H������Q���������C���H�@H�C�6���fDH�{ H���#���H�{����H�CH�@ H��������L�bL��I������������H�CH��t�uH�����t�����uH�@H�CH�CH�������H�xH��tL��H��LH�5j��%�H�CH�pL������H�{��H�CI���������L��L�@H�xH���S���L��H�5�K��L��I���������L��'����� �H�S�f�H�ʨu H�����t�0����uH�@H��fDH��9�w�������`��H��
H�C��H�������H�4��H���u H�����t�
����u
H�RH�fDH��H9�u��z�����@������� �|H��H��H�s���N���1�@H���uH�����t�:����uH�RH��@H��H9�|�������t?H�CH�xH���)L��H��JH�5���s�L��L�9I���������H�SH�CH��t ��uH�����t�
����uH�RH�SH�������H�pH��tL�����H�CH����H�CI���������L��L�<H�x H���O���L��H�%JH�5����L��I���������L�����H���T�L�qI���������L���w���H�S H�C��uH�����t�
����uH�RH�S H�S��uH�����t�
����uH�RH�SH���"������������H�5���Hc�H�>��H�C�uH�����t�����uH�@H�CH�C�����H�������������������H�@H�C���H�C������H��������������������H�@H�C�w���H�C�uH�����t�����uH�@H�CH�C�uH�����t�����uH�@H�CH�C�uH�����t�����uH�@H�CH�C �����H������������������H�@H�C ����H�C�uH�����t�����uH�@H�CH�KH�A�uH�����t�����uH�@H�A�S H�C�������H��H���uH�����t�2����uH�RH�H��H9�u��S���H�����L�(I���������L���.���H�P��uH�����t�
����uH�RH�PH�P�������H��������
�������H�RH�P����H�P������H�����������
���������H�RH�P���H�PH���i���뇐H�sH�C�?���H�SH��������{���������H�KH������H�s ���H�SH�������)���ff.���H����w0��u'H��#GH�8H�5�(G���H����H�>�޺1�������AWAVAUATUSH���i���H�D$H��%GH�L���A��H����I��`��I��������?E1��@fH~�H��<�������8I��H����H�=�FHH�������L��H��H���”���CH�0fH~�H9���fH~�H��<��������I��H����H�=+FHH�����5��L��H��H���W���H�{ L�l?L9��uH�=�EHH���E���L��H��H���"���H�{(L�l?L9��H�=�EHH��������H��L��H�����H�{H�\?L9���H�=tEHH���[���H��H��H��踓��H�=IEHH����s���H��I��H��菓��H�|$H�����M9�`��K�dH��I�P�a���D�+H���V���D��1�H������H�=
EHI��H������L��H��H���#����CH�0fH~�H9�������~��H�=�DHI��H������H�=p���=���H��H��DH���fD��}��H�=tDHI��H���F���H�=:�����H��H�MDH�&���H�=Z���ߩ��H��H�
DH����H�='��迩��H��H��CH����˺��H���h���H�=���菩��H��H��CH� ���H�=����o���H��H��CH�����{���I�����H�=���
�?���H��H��CH����K���I���~���H��I��I��I������@H��I��I��I������@H�D$H�D$H��[]A\A]A^A_�H��tH�~u�H��H��H��H�AH�5��H���@�����uH���H�hGH�5��H�81��/��ff.�@AWAVAUATUSH��H��HdH�%(H�D$81�H�H!GL�l$ H�L���H���H�t$(L��H�D$ �'���H�ŨuH�������I��$@H�T$H����������L�d$I�$�� uqM�t$M����I�L$E1�H�L$�D@H�D$J��M����H�=+DHH�l$ H���.���H����I��M9�tdI�$�� u�I�D$ �@I��I��A���H��ƒ����C���H�€�H�}H�U�.������%���H���q������@H��L������H�L$8dH3%(H��uOH��H[]A\A]A^A_�L��H�l$ ���H��H�@I��$@H�������f�H����ָ��fD��ATUH��H�5�FSH���v~��I���u	H�����uU@��uH�����t�E����u[I�<$H��H��H�
����I�|$H��H������H��[]H��A\�f������t�I�t$H�������I�t$H�����떐�@����H�������D�A��A����1�H;���H;� w{H���������H��H��H��H��H��H��H)�uWSH��H9�v>H�L���H��M��M�HL9�r�0DH�
H��M��M�HL9�s$H��H9�r�1ɉ�[�fD���H��H���I�H��I��H9�r	H�PH���A����E�����u�A�@u�H�PtWH��H%���H�8�Gt�H��������́�?H��H��H��H��H����H�D�pH��H�����`���f.���L���fD��UH��SH��H��H�:�x�����uH��1�[]�H�}H�����H��1�[]���UH��SH��H��H�:�8�����uH��1�[]�H�{H������H��1�[]�USH��H�5��FH��dH�%(H�D$1�H��GH�H����{��H��H��4H�x�����tH�$H��H��������4HD�H�L$dH3%(H��uH��[]�詵��f���H���c����H��4�HE�H���ff.����H���3����H��4HD�H��Ð��SH��H��� �����u1�[��H�����1�[�@��SH��H������u1�[��H���h��1�[�@��UH��H��SH��H��(dH�%(H�D$1������u1�H�L$dH3%(u"H��([]�H��H�,$H�\$�ҙ����苴��ff.�UH��SH��H����uOH�����tFH���>�����tH��肯��H��H��H��[]����H��H��H��1�[H�5z�]�f���fDH���X�����fD��AUI��ATI��USH��H�ZH�*H�CH� tH�C�8#�tjH�5�cH���˥��H�CH� uF�#L��H��H���-���H�ߺH�5��虥��L��H��H������H��1�[]A\A]�fDH�C�f�H�5d�H���a����ff.�@H��H��SH���������H%�����?H��H�8H��H��H��H��H����?H�L�8H��rH�I��A��`I��`u�Ct9H���[�fDI��H��I��A��A��E��A��Mc�L	�H�A��ulj�A�I��L	�ǨH��H��茴H���[�f���H���0�虺��H��IG�HH�H�P@H�PHH�P@H���H���H���H���D��H�G�����H�H����B�z��	ȈB�f���H�t1��f�H�G H��t�H�WH�RH��t�H���DATUH��SH��H��ȃ�����H�ˁ���������H�AA��Jc<�H�>���L�eM��tYI�|$H��t�x�L�eH�I�|$H���S�z��I�<$H��H�H��t�z��H�H�I�|$H��t�5�H�H��`H��H�C([]A\Ð�t$觰��H�M�t$H�Éȃ��M���f�H������	w�H�Hc�H�>���� u�H�}t��EH���H���pw��H��H�}H���}�������H��p���fDH������H��Z����H�}���H���<���1��3H��-�����`�!���H�}����H�EH���	������@�����H�}���H�EH������H�}H�������&���H����fD�������H���u��H����H�mH�������H��蛿��HcU H��H�\(H��x���fD���f���H�EH�xH���U����~�H��H���fD�x��H��5���H���(���H��"���H�E H������H����H�����H�������E H�����@I�<$H��������>x��H����H��H�=��1�����1�H�uH�GH��ff.�����H����Hc�H�>��@H�$���H�����H����H�����H�����H�����H�z���H�a���H�I���H�2���H����H����H�����H�����H����H�Gi��H����H�����H�v���H�_���H�G���H�.���H����H�����H�����H�����H�����H��z��SH��H�����H��u	H�oh[�H��[���ff.�f�UH��H��SH��(H�T$dH�%(H�D$1�H�ШuH�����u@H�\$H�t$H���ns����t?H�}1�H���\s��H�D$dH3%(uFH��([]�DH��у���t���H��H�t$H���N������g���H�=8�H��1��&��������AWAVAUATUSH��8dH�%(H�D$(1�H����H�D$I��L�t$ H��H�$H�� H�D$�}@��u#H�����tH��ƒ���t
����@I��0H�H��tH��I��0H�EfA�mfA�EH�H�P H�SH�X L��I���M��tWH��H�CL�cH�����L�mH��tH�{ ��I��@H�4$L��H�\$�q�����F���H�t$ H�������4���@H�D$(dH3%(u)H��8[]A\A]A^A_ÐI��(H�|$H���������貪��f�ATI��U1�SH��8�fDL�����H��H�3H��u�[]A\���UH���S�H���]��u����]H��[]�@��H���������ATUSH�^ H��I�ف�?I�����H��H��I�I��H��I��J�D�8H��r2H��I����?I�����H��H��I�H��H��H��H�D�pH��s[]A\Ð@�����@��u;�������H����@���H��4���f.�H��H�������I���tk���u,�؃�����H��������H��4uS�H���m���M��H�f�H��H�4GH�81��
v���E[]A\ÐH�����uH��tt�H��t��;���H�����uH��t^�H���C�������9�����z�����%�����f����������R���������>�������f���H�H�ȃ�`H��`�YI���������ATUSH�^ H��I�ځ�?I�����H��I��I�I��H��I��J����H����H��H��H%�����?L�H��I��H��H��H����?H��M���I����I���H����@����H�����uH���T�H��t�ȃ�H��H�������I��������u0�؃�����H��������H��4���;��H���f���M��H���H��H�-GH�81��t���E[]A\�f.����@���X���������tMH��te@��tsH��4�3�����.����H������h���H��tc�H���T����T���������@�����6����������"������������������������AWI��AVAUATI��UH��SH��8A��u
H�������H�GL���1�H���H�;��r��H�u @����H�����uH�����H��t�>������I��M�����A��u3D�������GI���MA���sI��4�yA�?��L�����H�;M��H��H���1��/r��躼�EH��8[]A\A]A^A_��H��GH�L���I9�w~I9� ruH���������H��H��H��H��H��H��H)�uQM��I9�vEI�M���H��I�4�H�~I9�r%�DH�
H��I�4�H�~L9���H��H9�r�I���M���L�@�L9�t,�I�@L9�wI�H��H��I9���I�@(L�@�L9�u�H�NG�L��1�H�e�H�;�q��H�u @���C����@���V����������H����@����H��4�%����� ���f�I������Z���I�����M���B����C���H��L��H�H��H��I9���H�PI������H��GL���1�H�`�H�;�Hp���q�������fD�����fD�����fD��d���fD��T���fD����fD����fD��$���fD��c����F�4���L��L��I�?H���������H%�����?H�0H��I����H��I��H��H��H��H��H����?H�\8H��H�\$(���\$'H���H��H�\$H�\pH���H��H��H�\$H�D$D��E1���D$ �F�����u���,1�L����D$ ��t>�|$'t7A�?L��A������D�D$ �H��	GH��H���1�H�;�n��A�F��<tH�D$H��H#D$��{A�F����|$ A��D�L$t�D$(���D$��E����A�?L������D�D$ �H�P	GH��H�.�1�H�;�n��A�F�?���A�F��<�/����D$�$���A�?L�����(�H�;�H�)�H��1���m�����f.�A�F�t�D$�E���}���H��G�����L��A�����H��G�H�!�H��1�H�;�dm��A�?���T���f�L��A���H�[G�H���H��1�H�;�"m��A�?���
����A�?L��A�����>�H�G�H�C�H��1�H�;��l���N���f�L��A����H��G�H���H��1�H�;�l������A�F��<�����D$����H��G�{����A�?L��D�L$A������D�D$ �H�hGH��H���1�H�;�4l��D�L$����f�AWAVAUATUSH��(H�H9��8H�|$H�X�I��A��D$H���������f�L�s M��u�f�M�vM��t|A�>��t�A����A����D�������I����A����I��4�D�L����H�5��H��H�~GH�81��Tk��M�vM��u�D�SA��t@H�C(H�X�L9��O����D$H��([]A\A]A^A_�@I�����u�I��AD��D�f���H�s��E1�1�H��E1�E1�A�H��H�t$H��(L��H���H��(���������?��A�H��H��H��H��H��H��H��?H���H��sH�P8H���AE�H���H��s
A��A�H��I9�u�H�D$�@uE��uA��u	�����SD9��r��Dt$����f.�����fD��z���fD��j���fD��Z���E1�E1���D$���E1�H�D$H�����������I��D9�����H�CK��H�4�H���?H��H��H��H��H��H����H��s�H��聢������H����H��H�dGH�81��:i���H�M�H��H�=��1��0���Sf�H��H��H�J6H��@dH�%(H�D$81�H��H�<$H��D$D$D$(����L$���F��H�s@H�����H���H�����H�{P���C��<t*H��H�T$(H9�����H���H�T$0H9����������u?H��0H��81�H��tfDH�@H��H��u�H�T$H9�����H9�����H�D$8dH3%(ueH��@[�fD�����u>L���H��0H�SI�0H)�H9T$u4�C��<�8����n���f.��C��<�����誚��H��G��H����H�81��g��H�sH��0H�=��H��H�T$H)�1��s�����H��H�!GH�H����"����H������S1�H��H�5�躬H��[����H��GH�5�1GH�H�����H����������BH�����	ȈBÐ��H��GH��H��H�H���H��H���鲿��f����7������SH��H��dH�%(H�D$1�H�=GH�<$��H�H���uZH�����tQH�������tD��u?H��@H��1��`��H��ƒ���t$H�H�t$dH34%(H��uH��[�H��蘖������H���t���@��UH��SH��H���{��H������H��H��H��[]���f���USH��dH�%(H�D$1�@��u H�����tH��ƒ���t
��u&fDH�D$dH3%(uuH��[]�f�H��FH��H��H�H���H��@�-~����u)��u�H�����t�H��ƒ���t��H���H��@H�$H���g�������fD��1�@��uyH�����tp���ti��tdH���FH�H���H�xPtGH��H%���H�0��Ft5H��������́�?H��H��H��H��H����H�D�pH���Ð��f.���H��FH�H���H�xPtTH��H%���H�01��Fu��H��������́�?H��H��H��H��H����H�D�pH��H�Ѓ��fD1��ff.�f���H�5���������@��uH�����t
����1��ff.�f���H�
�FH�H��H���H��tH�H���H+��H���ff.�f���H��H���H���H)�H���H��H��H-H9������f���H���FH�H��H���H���H���H)�H��H��H��H-H9������ff.����H��t'H���FH�5�4H�H����Zz��f.��ff.�@��H��t'H�@�FH�5�8H�H����z��f.��ff.�@��H��tH�u��H��FH�5�3H�H�����y��ff.���H��tH�u��H���FH�5�$H�H����y��ff.���H���������H��H�������?H��H��H�H��H��H��H�D�p��H������H�E�FH�H����F���fD��H���������H��I����?I�����H��I�3H��I��H��I����I����?J�D8H�H��r$H�A�I��I��A��`I��`tH��H�L	���H���FUM��SI��H�H����@uJ���H�]H��rWH��H�N!��J�tpH�H��s2H��H�H��s!H��H������I�J�D8L	[]�@L	�H���L!�H�]H��@��H���������H��H�������?H��H��H�I��H��I��J�D�8H����H��H��H%�����?L�H��H��H��H��H����H����?M�D8I�0H���|L��H��M��A��`I��`tH	�I�0H�'��H�5q�FH��H�6H����FuM���M�I��s	I!�M�L�I��L�I!��I�DpH��sH����H���������H��H�������?H��H��H�H��H��H��H�D�8��H���H��H����fD��H��1���uH��H��tH���`H��`�HE��D��H�=HATI��UH��SH����H��HH����H��HH��HH���bH��HH��HH���+H��HH��HH����H�mHH�^HH����H�FHH�7HH����H�HH���������L��L��H%�����?H�8H��H��H��H��H��H��H����?H�D78H��r	H����1�I�$L��7�L��7���`H��`��I�H��sH9���H��HH�T�H��I�H��sH9�sSH��HH�T�H��H�T7pH��sH9�s3H��HH�T�H��H��7H��sH9�sH�4HH�T�H��[]A\�fDH�YHH�E��<���H9�r+I�M�H���I��s�H��u�H�T7pH��r���H�HH�T�H�������H�=.��}��H��H�
����H�=0��g}��H��H�]����
H�=��G}��H��H�&����H�=<��'}��H�pH����H�=���}��H�`H����H�=����|��H�PH���I�H�������f.���H���������UH��S��?H��H���FH�L���H��H%���H�0H��H��H���`I��H��I����I����?H��`tpH�����N���H�J!��J!D8A�At:I�H��H�у���J!DpI���H�H�F H�GH�~ H��[]Ð�FuJ!DpI!��J�DpH��sI��H�����N���H�J!��J!D8A�A�y���J!Dp�@M���A���M��t]��~$I;;t<�Z�H��H���H��I;|�t-Hc�H9�u�M���A���M��u�����D1�fDI��4I!���������H�%�FAT1�I��U1�SH�H��`H���8*��H��t,H��H� tL��H��[]A\駤���H�x�~��\���H��H��H���~���L��H��[]A\�o���ff.�@H���FAVAUH�=HATUSH�H��H��������-H������ ���������t	���A�L�5�HI��������?I�6H9���I���H���H�T?L9��JL���b��H�5�HH9��ZH��H�T?L9��5L���mb��H�5fHH9��=H��H�T?L9�� L���@b��H�5AHH9�� H��H�T?L9��L���b��H�5HH9��H���H}hH�T?L9���L����a��H�5�HH9���H�}H��0H��H)�H�T?L9���L���a��H�5�HH9���H���H}hH��H+}H�T?L9���L���ka��H�5�HH9���H��0H�T?L9���L���>a��H�5gHH9���H���H�T?L9���L���a��H�5BHH9��qH�}`H�T?L9��oL����`��H�5 HH9��WH���H�T?L9��ZL���`��H�5�HH9��:H���H�T?L9��EL���`��H�5�HH9��H���H�T?L9��0L���``��H�5�HH9��H�}H�T?L9��L���6`��H�5�HH9���
H���H�T?L9��	L���	`��H�5jHH9���
H�}H�T?L9���L����_��H�5HHH9���
H�}H�T?L9���L���_��H�5&HH9���
H��xH�T?L9���L���_��H�5HH9��x
H���H�T?L9���L���[_��H�5�HH9��[
H���H�T?L9���L���._��H�5�HH9��>
H���H�T?L9���L���_��H�5�HH9��!
H���H�T?L9��|L����^��H�5mHH9��
H��H�T?L9���
L���^��H�5HHH9��WH��H�T?L9���
L���z^��H�5#HH9���H��H�T?L9���
L���M^��H�5�HH9���H��H�T?L9���
L��� ^��H����H�����H����I�6H��H9��4���H���[]A\A]A^�DA�����H�b�FH�5\�H�81��ɏ��f�H;�H�s
H;�H�v
H;�H�y
H;�H�|
H;�H�
H;�H��
H;�H��
H;~H��
H;yH��
H;tH��
H;oH��
H;jH��
H;eH��
H;`H��
H;[H��
H;VH��
H;QH��
H;LH��
H;GH��
H;BH��
H;=H��
H;8H��
H;3H�E	H;.H��
H;)H�K���H���q�����ӄ��I�6H������軄��H�5,HH�����@裄��H�5HH������@苄��H�5HH�����@�s���H�5�HH�����@�[���H�5�HH������@�C���H�5�HH���A���@�+���H�5�HH���V���@����H�5�HH���k���@���H�5�HH���}���@���H�5�HH�����@�˃��H�5�HH�����@賃��H�5|HH�����@蛃��H�5lHH������@胃��H�5\HH�����@�k���H�5LHH�����@�S���H�5<HH������@�;���H�5,HH������@�#���H�5HH���1���@����H�5HH���F���@��H�5�HH���[���@�ۂ��H�5�HH���p���@�H�=���q��H������H�=N�H�H�wq��H���ߏ���H�=C�H��H�Wq��H��迏���H�=6�H��H�7q��H��蟏���H�=-�H��H�q��H�������H�="�H��H�p��H���_����H�=�H��H��p��H���?����H�=�H�|H�p��H�������H�=�H�dH�p��H������H�=�H�LH�wp��H���ߎ���H�=շH�4H�Wp��H��迎���H�=ŷH�H�7p��H��蟎���H�=��H�H�p��H�������H�=��H��
H�o��H���_����H�=��H��
H��o��H���?����H�=�H��
H�o��H�������H�=y�H��
H�o��H������H�=u�H��
H�wo��H���ߍ���H�=d�H�t
H�Wo��H��迍���
H�=S�H�\
H�7o��H��蟍���!H�=��H�D
H�o��H�������'H�=��H�,
H�n��H���_����H�=�H�
H��n��H���?����H�=�H��H�n��H�������H�=߶H��H�n��H������H�=��H��H�wn��H���ߌ���H�=��H��H�Wn��H��迌���H�=��H�,H�7n��H��蟌���H�=��H�H�n��H�������H�=��H��
H�m��H���_����H�=��H��
H��m��H���?����H�=q�H��
H�m��H�������H�=`�H��
H�m��H������H�=O�H��
H�wm��H���ߋ���H�=?�H��
H�Wm��H��迋���H�=/�H�l
H�7m��H��蟋���H�=&�H�t
H�m��H�������H�=�H�\
H�l��H���_����H�=�H�D
H��l��H���?����H�=ٵH�,
H�l��H�������H�=̵H�
H�l��H�����H�
H�#b��I��H��H�V	H�\��L���[��H��	HH�5K	HL����T��H�$
HH�5=	HL����T��H�
HH�5/	HL����T��H��	HH�5!	HL���T��H��	HH�5	HL���T��H��	HH�5	HL���T��H��	HH�5�HL���oT��H��	HH�5�HL���YT��H��	HH�5	HL���CT��H��	HH�5�HL���-T��H��	HH�5�HL���T��H��	HH�5�HL���T��H��	HH�5�HL����S��H��	HH�5�HL����S��L���T������;|��H�5T	HH����@�#|��H�5D	HH������@�|��H�54	HH���'���@��{��H�5$	HH���<���@H�{��I�ܻ�j��H���F���@H���6���@H���&���@H������@H���HEh����H�EH��0H��H)����fDH���HEhH��H+E���DH��0��@H�����@H�E`���H�����@H����v�@H����f�@H�E�Y��H����F�@H�E�9��H�E�)��H��x��@H�����@H�����@H������@H������@H�����@H����@H�5�HH��t#H��I�ܻ�����1���H�=������S��H��H�NH��W��H�5BH�H���K��H�5��H��H���FH�81��5���D��SH��tEH�Ӏ�tU��uH�����t�����t=��t(H���FH�5ܬH�81�������]��H��H����H��[�H���p�H��������?H9�wH�D[�f.�H��[�y�����H���FH��H�H�������H���uH�����t
�����t�f�H�G�ff.���SH��H��H�?@��u	H�����uJH�>@��u	H�����uH��1�[�������u�H�t$�\F��H�t$H�H��1�[�@�����u�H�t$�4F��H�t$H��f.���SH��H�@��u	H�����u5H�{@��u	H�����u
1�[�fD�����u���E��H�C1�[�����u��E��H�C�ff.���H�>@��u	H�����u
1��������u�SH���}E��H�1�[�fD��H�>@��u	H�����u
1��������u�SH���=E��H�1�[�fD��@��u	H�����u�@�����u�ATUH��SH���D��H��H���$~�����=��H��I���~��H�މ��(��L��H��H�=˾H��1���e�����@��u	H�����u�@�����u�UH��SH��H��P�D��H��H���}��������H��H��H�=��H��1��e��@��SH��H�H��t��>��H�;H��t��>��H�{�4D��H�C[�ff.���H���FH�H����@�������H���FH�H���H������H���cD��H��������?H9�wH�DH���f.�H��H���u��@��H�u�FH��1�H�H���顉�����@��t.@��uH�����t
�����tH����1�H���D����H��FH�H����Q�Ѓ���QH��?H��?������g]������W�Ѓ���WH��?H��?��Ð��H���FH�H����Q�Ѓ����QH��?H��?���SH��H���GtBH���������H��H���?H%���H�8H��H��I��H��I����H��J	���Hc��;��t!H����J���H�4�H��[��H���H��tdH���H��H���H���H���H;��sH���H����H���1�H������H�4�H��[����H�t$�I��H���%���H�t$뭐H���������H��AV��?AUH��ATI��H��UI�����SM�$H��H��H����H����?I�D(8H��r2H�H�ƒ�`H��`tI�T(pH��H��r,H��@H�[]A\A]A^�@[H���]A\A]A^錝��@H��`��I��I��H��H��I	�(�H��H����uA�Et*I�$H��(�H��r�[L��]L��A\A]A^���D[L��]A\A]A^�x����USH��H��H���H����H���H���~H���������H��H�؁�?H%���H�H��H��H��H��H����?H�L�pH�H��rMH��H���uH�����t	������H��H��輿��H��H��H��[]�;����C����x���fDH��[]ÐH�PH�0H��H��[]��ff.�H;�rwH;� wnH���������H��H��H��H��H��H��H)�uJL��I9�v>I�L���H��M��M�HL9�r�)�H�H��M��M�HL9�sH��H9�r����H��L��f�I�H��I��H9�rH�QI���fDA�@uɋ����t�H��`u�@��u�H�����t��G@u�6���fDH���������H��H���?H%���L�H��H��I��H��I����H��K	���ff.��H��t;ATI��UH��SH�Z�DH�uL��H��H�����H���u�[]A\�f��ff.�@AV1�USH���H�<$H�T$H�t$H��dH�%(H��$�1ɹ�H�H���/?����H��H�D$L�4$H�t$�H���H���L���?���H9�sH)�H��L��H��H���%���H��$�dH3%(uH���[]A^��p�����H9�r�fDH�9�FH)�H��H��H�H��H���H������f.���H���H���H9�r	��H���FH)�H��H�H��������H���FH��H�H����#�����@��u&H�����tH��H���!���1�H���f.�1��ff.�f���UH��SH��H��H�w@��uH�����tH������H�s@��uH�����tH�����H��1�[]Ð��@��u&H�����tH��H��H��H�����1�H���@1��ff.�f�AVAUATI��UH��SH�H���`H��`�HD�H���H��σ�A��u
H��������G����H�s�Hc�H�>��DM��uH�����t
��@�q��� ��H��L�s��M��M�,�H��~$I�4$@��uH�����tH�����I��M9�u�H���uH�L��% H=��[]A\A]A^�f�H������
w�H�)�Hc�H�>���������$���H���P��H��σ�����f�H�{H�C H�4��?��H�[H��u��@H�s@��uH�����tH�����H��σ�������H�5Ž��Hc�H�>��H���O��H��H����H�5%H���]���H��Āu%H���u�tH�sH���n�H�s@�����H���������[H��]A\A]A^�U���DH�s@��u�H�����t�H���5����H��[]A\A]A^�`�H��[]A\A]A^��r��H��[]A\A]A^�'L�c�C M�,ą�t%�I�4$@��uH�����tH������I��M9�u�H�CH��H���uNH�����tFH��H������9H�s@��uH�����tH�����H�s@��uH�����tH���j���H�s@����������H�s@��uH�����tH���5���H�s@��uH�����tH������H�s@��uH�����tH�����H�s @�������a���@H�s@���h����J���DH�s[H��]A\A]A^���@H�s@��uH�����tH�����H�s@��uH�����tH�����H�s �@H�s L�c@��uH�����tH���Y���H�s@��uH�����tH���>���M�������A�$��<�����H�z���Hc�H�>���`�H��
L�k��M��M�t�H��~+�I�4$@��uH�����tH������I��M9�u�H����+���H������L��H��[]A\A]A^��kfDH�{ H�������H�{H�CuH�@H�����[]A\A]A^��H�s @��uH�����tH���E���H�sH����������H�CH�������H�p@��uH�����tH������H�CH�pP@��uH�����tH�����H�CH���@��uH�����tH������H�CH���@��uH�����tH�����H�CH�pp@��uH�����tH�����H�CH���@����������@H�sH��t@��uH�����tH���H���H�CH�������H�xH��tH��H�5x����c{H�CH�xH��tH�tH��H�5����`M��H�CH�xH���d���H��H�5��[]A\A]A^�{���`H��`�2�������M��u;H�����t2��t*H�CH�xH����H��H�5����zf.�H�sH��t@��uH�����tH���P�H�CH�������H�x H�������H��H�5|����B������ ��L�kA�E1�f.�K�t�@��uH�����tH�����I��E9�w�H����B���H��5�������I�t$@��uH�����tH����I�t$@����������I�t$@��uH�����tH���o�I�|$H������[]A\A]A^�ԘI�t$H��u��I�t$@���������@L�kM�������D�sE���	����6����H�5IH��豁���O���@H�KL�k���H�KL�s ���H�sH��������b���H�ھH�=­1��cT����USH��(dH�%(H�D$1�@��uFH�����t=H���FH�t$H��H�$H�H���H��H���H���H�����H���H�D$dH3%(uH��([]���e��ff.���AWAVAUATUSH��L�1H�$H9��pI��I��H���AH���������H��I�݁�?I�����H��H��H��H����H����?I�~PtI�U�BtH�TpH����I�GI�_ ��uH�����t��tH�5����L��H��H�D$�iP��H�3H�D$��`H��`��I�UH�|8H��sMH���H��s?I�G0A�V����t-H��`u'I�_ L��H�5Q���H��H�D$�P��H�D$�A�Ft9I�UH�LpH��s*H���H��rI�_ L��H�5���H���O��fDH$L9�t!H�3����t������H$I�GL9�u�H��1�[]A\A]A^A_�DI�UI�G(H�|8H���.���H���H����������f���H9�tgAUL�-��ATI��UH��SH��H��D�����uH�����t��t��t��tH��L��H����N��L�H9�u�H��1�[]A\A]�@1��ff.�f���UH��SH��H��@��uH�����tH��H������uH�����tH��H���}�H��1�[]�@��H��@��u#H�����tH���FH�H����D�@�ff.�@��H��s+����AUATUSH��H�{�FH�L���H��~?H��H�,�I���������H�3@��uH�����tA�D$@uL�����H��H9�u�H��[]A\A]�f�H��H���?H%���H�8H��I��I��H��I����H��J	���fD��AUATUSH��H���FH�H���H��~GH��L�$�I���������H�3@��u!H�����t�����t�E@u&H����H��L9�u�H��[]A\A]�f.�H��H���?H%���H�8H��I��I��H��I����H��J	���fD��@��u&H�����tH��H��B@u��1�H���@1��DH���������H��H���?H%���L�H��H��I��H��I����H��K	���@��@��u.H�����t%H��H��B@u H��H��H����1�H���1��DH���������H��H����?H%���L�H��H��I��H��I����H��K	���ff.����H��@��u+H�����t"H���FH�H����G@u�n�fD��H���������H��H���?H%���L�H��H��I��H��I����H��K	���ff.��AUATI��UH��SH��H�!�FL�(I�]8H��tH�[HDž�M��tH�!�I�$H��I���H���\�H�3H��t@��uH�����tH����H��@M����H�ؖI�$H��tH��H�53���C��H�ĖL��H��I�$���H���H���I�$H��t!�H�H��H�0��H�[H��u�M����H���I�$���H���I�$��H���H�} I�$�<c��H��(H��tH�uH�!�I�$H��[]A\A]�H��H�5v��C�����H��tH��H�5Y���B��L��H����H���H���9���f��������H�} �b��H��(H������H��t���H��H��H�5��[]A\A]�B��f���USH��8dH�%(H�D$(1�H�o�FH�|$H�t$ H�t$H�H�4$H���H�e��H�D$H��H���H���H�����H���H�D$(dH3%(uH��8[]��:]��f.���UH��SH��H��@��uH�����t�B@u3H��H���`���uH�����tH��H���G�H��1�[]�fDH���������H��H����?H%���H�0H��H��I��H��I����H��J	���@��UH��SH��H��@��uH�����t�B@�H��H������uH�����t�E@uH��H����H��1�[]�@H���������H��H�؁�?H%���H�0H��H��H��H��H����H��H	���@H���������H��H����?H%���H�0H��H��I��H��I����H��J	���:����I���������AVH��AUH%���ATI��H����?USL�H��I��I��H��I��A��I��A��?K�D
pL��s_K��
�L��rQH��I��H��I�������?I�uH��I��I��H��I����I����?J�D6pH�H��rK�T
8L����[]A\A]A^��H���`H��`u�H�EH�ƒ�`H��`t�J�T68H����H��`��H��H�E�H��J	�6�I��$�z\I�EJ�T0pH��s�J��0�H���y����>�H���`H��`tdIDŽ$�H�H���K���H��H��L��H��٦��[H��L��]A\A]A^�V�fD[I��$�H��]A\A]A^�h����I��$�H��t�H��L���(�I�EJ�D0p�ff.�f���H���FH�H����Bu-H���`H��`uH���`H��`t
鸃�����������H�5�FH�H����AteI���������H��H��H%�����?H�0H��I��H��H��H����?H��L�DpI��s/H���H��r!H��H���:�f.�H���`H��`t�髂��ff.���AUATA��UH��SH��H��(dH�%(H��$1�H�=��G�EH���������H��H�ށ�?H�����H��H��H�H��H��H��H�D�8H��s)H��$dH3%(�lH��([]A\A]�@H�D$����H�����uH���+�H��t�;��H��L�l$�/�����L��E��H��H�я1�I��� ��H�T$L��L��H�=��G�=������H�D$H�PH�T$H�=��GH���4'���6�������u��؃���tdH��tn���uH��4�Z�����U�����+p��H�=�a��H�m�G����L���HU��H�������H�T$H���o���f���
���fD����fD����fD�������V���H���7=�����+����D����t1�H�=���H���[���o���ff.�@AWAVAUATI��H���UH��SH��8dH�%(H�D$(1�H���H��H�H9�t3H�H�H�Z�H��t�O�H�K H��uGH��H�S(H�C(H�z�H9�u�H�|$ ��?�@�w�������*/��f.�H�X�@H�s0H�;H�rH�H���H)��H��pI9��4��S��	�I�t$�SI�T$H�s0H�S(H�BI�D$I�D$8I|$@H��tI�D$H�CI�\$H�D$(dH3%(�H��8[]A\A]A^A_ÐL�L$ M���C����P�L�L$�N]��L�L$H��H�������H���������M�iL��H��H��H��L��H��H)��aA��?A��L��O�t=H���M���sL��1��f�H�BH9�vH�H��H�4�L;nw��.���H��H9�w�L��J�4I9�vDI)�J�|D�D$J��L�L$L�T$��M��L�T$L�L$H���L��D�D$L�H��I��H�L��H���I9������H��I9�rqH��tlL;� vL�� L�kI��H�K fD�I�M9�t/L���
�H��H�B(H�JH��H�I9�u�K�L=�H�K f�{H�C(�����L�����()кgfffI�D��D)荈�?�����)�Hc�L�<�I��I���q���H�������IS��f���AUH��ATI��USH��H��A��1�L�E����I	�t4I��H��H���6`����u-I�����M��H��H��H�5�L��1��[���H��[]A\A]��|�����SH��H��H��H��pH��[�H�t$H�<$��_�����Q���H�$H�L$I��H��H�5��D[��@USH��H��H�_`H�H��H9�rH��[]�DH��H��H�<�H��=uKH��t'H��H����8c��H��tbH����f.���&��H���H��t>H��H��[]��_����u'H���FI������H��H�5#�H�81��Z����*��ff.��AWAVAUATUSH��H���w@��tMH�GXH���pH�PH�x H�WXtH�W0H�PH�G01�H��[]A\A]A^A_�@H��� [���s@����uvH������FH���{f���H*��Y��nf/���H,�H���H��H���!f��H*��Y�f/����H,�H��L��H���Ii��HChI��I)�H����f��H*��
��F�Y�f/��N�H,��
��F�Y�f/���H,�1�@��@��H9��FHC��F1�I9�vI���������L��H)�H��I��H��H9
f�FHC
^�FH��(I9���@����H���-V�F�%6�FI��=f���I*�f.-��F�@�Y�f/�f(��|�H,�H���FH��tH���������H��H��H��L�H9�HG�H�S`H���$H��L)�H�1�H9���H�H)�H������H���$��H���H����u{H���H��H9�v���H9�v�����S��C������H�
r�F1Ҿ��$H�9�{���$�e���H�ƒ�f�H��H	��H*��X�����f�� �FH���of���H*��Y�f/����H,�H���H����f��H*��Y�f/����H,�H���.����\��H,�H��?����D�\��H,�H��?���D1��a�H���H�������H�C@H�{@�c�H�|$L�p�H9���I�NM�~pH���������H�ʁ�?H��H��H��H��H)�I���I��H�$�I��
I��L9<$�+I�/I#o�t�M���DI��(H��t�@��t�L��H���N����@H���H+��H����������@H��H��f��H���H	��H*��X��Y�f/��~����\��H,�H��?H���H���u���H��H��f�H���H	��H*��X��Y�f/��b����\��H,�H��?�T���H�ƒ�f��H��H	��H*��X��p���f.�H����f���H*��5�f(��\��Y��^��]�f/�f(�v����Y�f/�������\��H,�H��?�v�����\��H,�H��H��?�5���f.��\��H,�H���H��H���?H������H�ƒ�f�H��H	��H*��X�����f�L��L��f��H���H	��H*��X�����H�s(H������$�%���f�I�F(L�p�H;D$�m���H���H����)D�����H�H�4�H��4tH�����H���H������������u�H���H���H�2H���H������H���H�������@����fDH����f��H��H	��H*��X��$���f�AUI��ATI��UH��SH��H����M��t 1�f.�L��H��H����I9�u�H��[]A\A]Ð��UH�=DeF�SH��H��FH�H���H�C Q�<��H�� �P&��H�s(H��H���������H��(H�y�FH��H��H�%�FH���7���f�H���Hǃ�H���Hǃ������K��H���8x��H���H���H���H���H��H�����u�H����*T����p�%��H��@H��[]�ff.�@H��FH���������H�H���H��H�%;�FH�G`H��H9�r�DH)�H�w(�L���ff.����H��H�5	�FH�=���{������H�5��FH�=ŀ�{������H�5��FH�=€�{�����2w����1�f��H�5��FH�=����e��H�5��FH�=���C{���
c1�f�H�5��FH�=/��e���
B1��p�FH�5y�FH�=2��e���
e�F�M�F�H�5I�FH�=2��ee���f��f�H�59�FH�=:��Ee��H�5.�FH�=2��z��H�5#�FH�=4��z��H�=�FuH��F������1�f��H�5��FH�=���d��H�5��FH�=��Fz����tH��FH���FH�H���H��H�5��FH�=��z���01�f��H�5��FH�=ĐH���{d�������g���fDH�5�FH�=�~��y���������u���AWH�� AVAUATUH��H��(S��H��H�t$dH�%(H�D$x1�H�G�HLJ�H��)������H�H�׉�HDžHDžH��)������H�H�E`H�D$H�<�H��=��A�����H�U@E��I��H�E@H��H�D$L�j�1�H9�teL�t$ H�l$(L��f�I�,�D�`E1�L��H��P�I�}I����A�L9�u�H�U(fD�uIc�H�j�H;T$u�L�t$ H�l$(H�L$H�t$E1�L����D��H�E`I�H�D$XH�D$M�l�L�`�L�BH�T$`H�l$hI�EL�D$PH��I�EH�\��H�D$PH�D$H�D$HH�D$8L��M���I9�wL9���I9���L�D$A�t6I9�w
L9�v,I9�u'L��L���<o��L�t$PA�tH�D$XI9�w�L9�w�f�H���H��� ����H�������H����Us���H��`u{���u��4s�������t����H��H��H%�����?H�H���������H��H��H��H����?H��H�tpH��sH��H��s:f�H�D$XL9�rH;\$P�DL9��;I;]�@H��(�����H�D$XL�t$PL9���H�H��H�\$@��H������L�D$@�D$L��L��H%�����?H�8H���������H��H��H��H��H��H����?H�T78L��7�H�L��7�H���H�D$ I�H���H�D$(I�H�EH���H�D$0H�����H�H!D7pH!I!I!A��u
I��������H��(H�T$8L���(������H�D$@f�L��L����?H������oA�oPAVH�@ I�F H�D$@@H�@ H�?H���������H��H��H��H����H��H��H�|$0�H	�7�L�D7pH��D�L$I�H��I��I!�H	�E��ID�I��I�L�D78I�I!�H	�H�|$ ID�I�H��7�H�|$H�2H!�H	�H�|$(H�t$HD�H�H�D$@H�pL��H�L�pH�D$�l��I;]�H�D$XH��(L�t$P���DI��O�,�I�EH��I�EH�\�����f�L���X#��H�D$H�|$xdH3<%(�HH�Ĉ[]A\A]A^A_�DH��H��H!�7�����L9�����L9��^������fDI��ƒ����
���������L��L����5��L�D$@���f�H��(H�t$@1����H��(H�T$HL���)������@I��L�t$PO�,�I�EH��I�EH�\��H�D$X�_����H��@1�H���?&���������R���f�H�C �����=����HM������n��H���FH�T$I������H�5I�H�81��H����?��f���H��H��H��dH�%(H�L$1�H��H���'	��H�$��t1�H�L$dH3%(H��uH����?�����ff.���PXH��H�g�FH��H��H�5��H�81���G�����1��U&D��ATUSH�P�(n��H��H��PH��t�)!��HǃPH���H��tf�H�o�N��H��H��u�H���H����H��H��tJ1�L�$�H��H���H��H��I�|$H������ ��L��� ��H��H���H9�w�� ��H�C`HǃHǃHǃHǃ H�ChH�� �L��H��(�@��H���H��t@H����$ ��H��H��u�H��[]A\� ��AWAVAUATUSH��HL�f(M���u
H�b�F���f�8�<I����HH�t$(���h	1����D$4���D$0L��M��I��@I�wI�A�I�opA�g�I��H��H���D$H�Ɓ�?H����������$H��L�؁�?�D$H�l$ H��H��H����H��H��H	D�H���������H��I���H��H����H��I��I��L	\�H��H��H��H)�H��H�D$�fDH�D$
I��L9��
M�uI���t�H�l$H�\$H��A���H�����������A�D$ �����H���.�kk��H�݃�u*H�����t!��t���{��t����fDH��H��H%�����?H�H���������H��H��H��H��H�t�8��H�>��?H��s�H��H��H!�H�H��΃�����j��H�=����Hc�H�>��H�{ �ϴH�CH�x�RIH�CH�xH��t	�	��H�CH�HH��t'H��1�H�L$8H�5�:�
NH�L$8H���IH�CH�8H��t	�_	��H�CH�x(t"�H�߃������^���H�CH�@(H��誾��H��貼��H�{H��t�J��H�C@H����H�������H��ƒ���������%H�CH��H�C H�I��$8H�CI��$8�D$@H��(I������H�\$���f�H�CH��u
H�������H�x H��t	�GH�CH�x(tH���i���H�CH�@(H��赽��H��轻��H�{�$I��H�CH������H�I�G �$H�CI�_ �T���@H�CH������H��1�H�D$8���H�D$8H�xH��t
�H��H�D$8H���H������H�{ H�������H�{��H�CH���{���H�������H�CH��H�I��$8H�CI��$8����H�CH���3�����H�C H���H��H�I��$8H�SH�CI��$8�]���fD��@���H�{H�������G��������`����H�{H��������������G������H�{�ŀ��H���������������G���|���@H������k���H�{H���[����9���Q���f�H���8���;����� �/���H�{H���"����������G������@H������	��H�=Q�Hc�H�>���H���09�����D$�.���fD�oH�l$ �4$U�o[]�oc e H�C0H�E0�D$A�W�fA�GHc�I�$�HcD$I�$0�I��$8fA�WtCA��$���u7H�ȝFH�H�x8t&1�L��H�5�����u:�����Ef��A�W�H�t$(I�(�ҋ\$$H�FH�O�H9ǸHE��H�F(I�7H��9��T���<�L$0I�W ���dH��t&H�L$(�D$0H�Q0I�WI�WL�y0I�$I��H�����M��A��H��tOI��XH��tCI���I+��I���H��H��H�P H��Hi�H��H)�H��H�pH�P(DI���I���I9��t[I��H��vN��f.�I���L�$�A�D$tI�$fA9L$�FH9�tL�$�H��H��H9�w�I9���A�G��A�g��e@I�G���t$4I��$(�������H�������H����I��$(I�W0�t$4H�WH�:H�|$(I�W(I��$�H�o8H)O@I��$�A�OI�w(I�0H�VI��$�I��$�I�$��c���@H�q�FH�ھ H�8�a��H������Q���@H�����H��ƒ����������H������X����f���fDI��$(I��$ H��踇���C������
���H�x�BH�C���f�I��XH��������@f/S��u����?���A���b���f.�H�{�C������f�H���x�����H����7���H�{��B������f�H���V�����������fD�����x���fDH�SH�BH�������H���������B@�������|���@H��H1�[]A\A]A^A_��L��M��I��H��tH�|$(H�WI�T$L�gH�������H���Ff�8��A��H��t0I��XH��t$�Cf��f/�w8I��8tA��L@H�D$(H�x��H��H[��]A\A]A^A_�@�A���$�=���$f/�w~f��XC�C뚐���h���I�|$(I�D$0H��H��H�GH�8I�|$I)��I���H�����I���I���O��L���G��I���I���e����\��I��L������a���H���F1ҾH�8�4^���Q���ff.�@USH��H�s@H���CH�@�������CH9���H�C8H��(H�C0H�{PH�CXHǃH��t4H�P H��u��H��H�BH��u�H��H�C(H�H�C8H�C(H�k(H����@H��H���-�H�{Pu�H�{0��H��[]�@����CH�G�H9��:H�S8H�CPH�C0H�CXHǃH����H�J H��u�=H��H�QH��u�H��H�S(H�H�C8H�C(H9�t@H�P(�HH�B�H9�u�H�k(H��H���p�H�{0�J���H��u6H�C`H��H��H;�����H��H�����H����H��H��H��[]���@H�C(�s���H�C8H�CP1�H�C0H�CXHǃH���L���H�C(H�k(�[���H�S8H�CPH�C0H�CXHǃH������H�C(����H�J ����H�P �����^��ff.��AWAVL���AUATUSH��H��H�GX�G��I���������@L���H���f.�E1�H���,������=�����Hc�H�,�H��4��H��H��I��輿��H��H�������?H�uH��I��H��H����H��H��H��H!���H���H��L)�L�H=���H����b���H����I���N���fDH���H��t8������������H�H�4�H��4t�H������H���H��u�L����7��H���T��H��H��[]A\A]A^A_����fDH���H������L���7��H�������������fDH���H���H�(H���H������H���H���������H���H���H�2H���H������H���H����������f.�AWAVAUATUSH��hdH�%(H�D$X1����
�����G��	�H���GH����H����A���u�(�'�5ɴG������K �C�.�C����������dA��A���`��uA����ADՍ��S��	ʈS�ꋋH�� �H�CE�H���H���H����LH�����thL��`H��PM�fH��L��`H���9H��hI9���K�df�H��H�T�H��XBB �C��%	ʼn*1�H�CH�H9��TH���+f��H*��Y�F�
��f/����H,�H���FH9�HG�H��C��H��H9�vE��� H����f��H*��Y��Ff/��U�H,�H���FH9�HG�H��D���.�C@���H��tH��XH��tH�E�5���EH�J�Ff�8��H���L�C@L�c@Hǃ�H�D$�CI�h؃���CE����H����c�H���������H���Hǃ�H�<H��H��H��HǃHǃ�H��H�r1�H��H��H���H���M9���DH�E(f�HDž�Ep����������HDž������HDž��(�8HDžH�e�H�h�L9��j���1�H������C�vH�D$H���H���Ff�8�9��H��tGH��XH��t;�M�L$��3���L$f/���\��E�E�\�p�E�C���c����H�L$XdH3%(�IH��h[]A\A]A^A_�DH�{(u�H�{0u�H��H�k(u.H�C`H��H��H9�����H��H������H��t�H��H��������y���f�1��i���f�ǃ�	Չ��A���@��Dщը������Cf%����f�C���H���H��KH���H��xM9�u�[���DH�E(H�h�L9��E����E�����	Шt�H�uL�l$ L�UpH���������L��H���?H��H�E8H��L��I���H�PpH��H#P�H��H��Hǀ�H�W�I9�u�L)�I�E8�e�I��H�D$�I��I��
L;l$�J���M�uM��t�L���
@H��(I��t�A��t�H��H��H�T$�ɷ��H�T$��f�Hǃ��L �����H��H���Hf��H*�����7�F�\��^y�X��^�f/����H,�H���FH9�HB�H���O���f�H����f��H*��Y�x�
��f/�sp�H,�H���FH9�HB�H����DH����@��uV�C����	ЈC���f�H���x����}����\��H,�H��?�J���D�\��H,�H��?�������������t��C����	ЈC���f�H�ƒ�f�H��H	��H*��X����f�H�Ѓ�f�H��H	��H*��X���f�L����0I��L��hH��p`� 6��H����H��PL��`����@f������\��H,�H��?�a���D�\��H,�H��?�����1������S��H���FI�����L��0H�5�lH�81��A-���H��F1ҾH�8�P�����DH�ƒ�f�H��H	��H*��X����f�H�ƒ�f�H��H	��H*��X���f�H���F1ҾH�8�JP���'���D����f.���2���f.�H�a�F1Ҿ@H�8�
P������DHǃhd���k���H��H��PI��cwH���������R��DHǃhL�@��^����n#���R��f�USH��H��肈�K �Cup�CuBH�{PH�k(t�H��H���%�H�{Pu�Cu`�c�H��[]��f�H���H��Hǃ���H����DH�Y�F1ҾH�8�O���u���DH�9�F1ҾH�8��N���c�H��[]飈AUI��ATI��USH��H��(�odH�%(H�D$1�@�����Gu|H�Puu�K@��t<H��H���L��L���CH��H�D$dH3%(uMH��([]A\A]��H��H�$H��(��H�=I��L�l$L�d$�g��DH���x������!�����H�
��FH��H��H��H�	H�������ff.�f���SH��0dH�%(H�D$(1�����H��1���ueH�D$�;	����thH�D$H�=E��H�t$H�D$H�D$��H�|$H��������?H9�w_H�D?H�L$(dH3%(u]H��0[�@H�H�D$������u��*��H���2-��H�L$E1�H�ߺH����+�������럺1����� �����SH���Gu*H�Pu#�S�Ѓ����S[H��?H��?����H��������ff.���H�%�FH�H����f�������AVAUA��ATA��U��SH��H��0dH�%(H�D$(1��4�H�������E����H���3���I��E���wH�5�&��H�����I��H�F�FH�C(H�L�h8M��tM�mH��H��U��H��H����E��L���a��"L�-5�FI�}�\�I�}I�E�O�H��(H��I�E��O��H�� H���=d��I�uH���1d��H��@H���"d��I�����u�c����
H�f�FH�8���9�H�C0H�C8M����H���L���H�p�@H�FM����H��L��L��M�d$H%���H�H�A�x�Wf�PH�H�x H�yH�H f;u�H��(H��t�H��H�x(H��H��(H�H0H�OH�9H���H�H(H�k`H)Sh�HH�x(L�@0H�FH�OH���H���H��M���M����H���H�S@H�K@H�B�H9�tTH�s0�!f�H�x tH�pH��H�C0H�P(H�B�H9�tf�x�H�P(H�@H�B�H9�u�H��tH�FH�s8H�C0���|藃H�D$(dH3%(��H��0[]A\A]A^�fDH�5I$��H�����I�����f�H������E���D���H��H�s(H������,����H������w���H�)���L���H�t$H��H�D$H�n$��H�D$H��H���H�4$H�D$ �
���L���1�H��H�5ʸ������������ff.�SH��H���GuH�PuH��H��[�>�fDH�߉t$����t$H��H��[��ff.���H��F��H�H����@��H�������H���f�USH��(dH�%(H�D$1���GtH�T$dH3%(uKH��([]��H�����&����u"�
	����t*H��H�=�H�$�l$� ��뱉�H����������JN��f.��x
�f�SH�������t3H������t��H���f1����H��[�(����[�ff.���H���wH�?�m���H��H��fD��H���FSH�H����C�u2��@H�߾��C�/���H��1�1�1�����c�H��[�t3��@�[�f���H��H�Q�FSH���H�f1����H������H������H��D����I������D����H���o���[�f�L�OH9���H)�I��tLH�wI9�I��H��LG�M)��M�H9�u�L��H��H9�I��H��HG�I)��M�H9�u߅�uKSH��H�H9Gw-�4@�Cu*�����tIH�{PtBH���:���H�H9Cv	������u�[�fD��H)��I1�H���u��H�߾[�R���f�ATUH��H��SH�����H��I���C���[L��H��]1�A\���ff.�f�H��FH��H�H����f.���H��t��D�ff.�@��H��tH��H�����1�H���@1��ff.�f���AWAVI��H�5N3FAUATI��L��USH��8dH�%(H�D$(1�H�l$ �$��H��L��H��H�$FH�H���H�� �>�������G��L�d$ I��4��G��H�;H�t$H��L�d$H�t$H�l$�����tRH�|$ H�l$H�H��t6L�H�l$M�,�DI�H�{1�H��I��H�D$���M9�u�H�|$ H��t���H�{H�T$H��L�d$�����u(H�L$(dH3%(L��u3H��8[]A\A]A^A_�fDH�t$H�;L��L�d$H��9��!����M��ff.�f�ATH���I��USH��HD����H�����H��H��t%H���m���L��1�1�H������H��[]A\�fD��L�������tH����H��t
H���D��묐��H��xH��}FH��H�H����^���PH�yFH�|OH�5,(H�81��>��ff.���H��H��pH�-}FH��H�H�������H��H�t$H�<$�i#������E��H�"FH�$I��H�5s^H�L$H�81�����ff.����ATH��USH��H����H��|FH���HE�H�L���L���S���H�޿����H��H��t&H������L��1�1�H���g���H��H��[]A\���L���{�����tH�޿���H��tH���苾���f�H�t$H�<$�r"������D��H�<$H�'~FI�����H�t$H��H�81�H��H�5i]����ff.��AVAUI��ATI��USH����H��H��tQH���9���L��I���^���L��H����%��H��H��t[H������L��L��H���p���H��[]A\A]A^�@1�A��C���H��H��t�H��L��� ���H��[]A\A]A^�@��L���S�����tL��H���T%��H��tH���|�����[����k���fD[H��]A\A]A^������H��xH��zFH��H�H���H��H�����PH�XvFH��LH�5v%H�81�������H��H��H��pH�zzFI��L��H�H���H�����H��H�L$H�4$� ������B��H�i|FH�$I��H�5�[H�L$H�81����AWM��AVI��AUI��ATM��UH��SH��H��HA�A��uGI�G(H��tfH�PI�W(H�(H�XL�pL�hL�` I�GA�G��H��H[]A\A]A^A_�@� �^B����y��L���7�����u��?B��fDI�G(I�W0H�D$H��ujI�P����wA�O A�G�NE���E��uI���H�t$L���_��A�G�#A�g��ZxI�W0H��t@H��t�H�JH�B 1�I�W8I�O0H�B f�rH�������H���b���DA�GuAA�����uI����L�������TA��I�W0����f.���vA�O A�G��I���ILJ�H�D$(I�GXH���1��H�ȁ���YH�x H�HtI�w0H�pI�G0�@�H��u�I�GX����Ic�E1�L�d$0I��H��L��H�D$I���H�D$8I���H�D$ I���H���bA������
��A���H�L��I��4t�L��L��L�L$H��谡��L�L$H���������L��I�������?I�1H��H��H����H��H��H��H!���I���H+D$ H�H9D$�W���I���H��L��L�d$0��H�D$(I���A�G����H��vF1ҾH�8�[<������fDH�
�vFH�¾H�D$H�9�4<��H�D$���f.�H���I���L�
H���I���A���I���I���A��������H��L��L�d$0H�|$8�S��L���˽�����+���L���������fDL���������H�t$L��賸������fDH��uF1ҾH�8�b;�����DI�OX�����I��t�H�t$L���a���I�G0�P���@H�t$L���C������fDH�IuF1ҾH�8��:������ff.�f���H��8dH�%(H�D$(1�H�QuFH�L���fA�A�unI�A(H��teH�PH�4$H�|$fo$H�D$H�D$foL$I�Q(HH�@ I�AH�D$ H�L$(dH3%(u*H��8�DH�D$(dH3%(uE1�1�1�H��8�����
��ff.���H��8A��L��dH�%(H�D$(1�H�{tFA��A��H�L���fA�A�u`I�A(H��tWL�@L�$H�|$fo$H�t$H�T$foL$M�A(HH�H I�AH�L$ H�T$(dH3%(u1H��8��H�D$(dH3%(uI��H��8H��H��L������
��fDAWM��AVI��AUM��ATUH��SH��H��HA�AH�T$����M�g(M����I�D$L��H��������́�?I�G(H�D$I�,$I�D$L��H%���I�\$M�t$M�l$ H�0H��H��H��H��H����H��H	D�8I�GA�G��H��HL��[]A\A]A^A_�D� ��;�����W����L�������B����;��fDI�G(H�D$I�G0H��uiI�P���qA�O A�G�6A�����uI���H�t$L�����A�G�A�g��qI�G0H��tAH��t�H�PL�` 1�I�G8I�W0H�@ f�HM�������H���c���fDA�GuAA�����uI�����L���������:��I�G0����f.��;pA�O A�G��I���ILJ�H�D$(I�GXH���g1��H�ȁ���AH�x H�HtI�w0H�pI�G0�@�H��u�I�GX����Ic�E1�L�l$0I��H��L��H�D$I���H�D$8I���H�D$ I���H���JA���������A���H�L�$�I��4t�L��L��H������L��I�����H��������́�?I�4$H��H��H����H��H��H��H!���I���H+D$ H�H9D$�`���I���H��L��L�l$0��H�D$(I���A�G���H�pF1ҾH�8�5�������H��oFL��H�8�5�����@H���I���L�"H���I���A���I���I���A��������H��L��L�l$0H�|$8���L���3������:���L�������-���fDL���`������H�t$L���������fDH�!oF1ҾH�8��4�����DI�OX����I��t�H�t$L���ɱ��I�G0�P���@H�t$L��諱������fDH��nF1ҾH�8�Z4������D��H��8dH�%(H�D$(1�H��t%@���MH������@������2H�
�nF�B@H�	�� L���fA�A�unM�Q(M��teI�JH�$H�|$fo$H�T$H�D$foL$I�I(H�t$ AAJI�r ���}I�AL��H�t$(dH34%(u[H��8Å�t,H�D$(dH3%(uBI���H��8���fDH�D$(dH3%(uI���H��8�������DH���������L��L�Ё�?H%���H�0H��H��H��H��H����H��H	D�8�?�������f���H��8dH�%(H�D$(1�H�AmFH�L���fA�A���I�q(H����H�FH��H�$H���������H�D$fo$��?I�A(H��H�D$H%���H�D$foL$NH�F H�8H��H�D$ H��I��H��I����H��J	D�8H��I�AH�|$(dH3<%(�0H��8��H�D$(dH3%(uE1�1�1�1�1�H��8�t����o��ff.�@��H��8dH�%(H�D$(1�H�lFH�L���fA�A���M�A(M����I�@H�4$L��H���������H�|$fo$��?I�A(L��H�D$H%���H�D$foL$AAHI�@ H�0H��H�D$ H��H��H��H����H��H	D�8L��I�AH�L$(dH3%(u.H��8�f�H�D$(dH3%(uE1�1�1�H��8�P����K��ff.���H��8dH�%(H�D$(1�H��jFH�L���fA�A���M�Q(M����I�BH�|$H���������H�t$foL$I�A(L��I�R H%���H�$�H�D$fo$H�T$ L�ҁ�?AAJH�0H��H��H��H��H����H��H	D�8L��I�AH�L$(dH3%(u/H��8ÐH�D$(dH3%(uI��H��H����1�H��8�7����2��f���H��8dH�%(H�D$(1�H��t%@���H��������������H��iFH�L���fA�A���M�Q(M����I�BH�|$H�T$L��I�A(L�Ё�?H�L$foL$H%���H���������H�$fo$AJAI�r H�t$ H�0H��H��H��H��H����H��H	D�8L��I�AH�t$(dH34%(u3H��8�H�D$(dH3%(uI��H��8���������������H��8H��hFdH�%(H�D$(1���H���H��� L���fA�A�uuM�A(M��tlI�PH�4$H�|$fo$H�D$H�D$foL$I�Q(H�D$ AAHI�@ ��tpI�AL��H�L$(dH3%(uPH��8���t$H�D$(dH3%(u4E1�1�1�H��8���@H�D$(dH3%(uE1�1�1�H��8������H���������L��L����?H%���H�0H��H��H��H��H����H��H	D�8�L���ff.����H�����1�H���ff.����AVAUATUH��SH�� dH�%(H�D$1��G��H�P�yL����A�$��t$H�D$dH3%(��H�� []A\A]A^�H���XU���E�WH�}P�LH��@�ML�t$L�l$H�tz�L��H�5&H�D$�x�H�\$H��tCfDH�;H�sH�|$�g.��H��@1�L���v��H�CH��H�D$���H�\$H��u�H��@H�u��M�d�M �E��E1�H����DH���J��H�XH�H��L�,�L9�r9���u#H�{ tH�{tH���-�H����@H��(I9�vLH��ƒ���u�H�SH��t�%H�S H��H�H�JwH�CH��8H�CH��8H��(I9�w�I��L9��J����E���e��wdH��8H����H��@�[��1�HDž@A�$����DH���VH���?���H�����H���.���H�{H�t>H�CH���t\H���
���H�H��8H�CH��8���H���g���z���H�CH�@H�C�H���Q���P���H���?�����H�{ ������H�
dF1ҾH�8�)���+���H��cF1ҾH�8�)������Q������H�dFH�H���H���H�AH99u�1f�H�PH98tH��H��H��u��H�QH�����@H���H�����f����������������AVI��AUI��ATI��USH��0H�-pcFdH�%(H�D$(1�H�EL���fA�A���I�Y(H����H�CH��H��H�$�H�D$fo$��?H���������I�A(H��H�D$H%���H�D$foL$KH�C H�8H��H�D$ H��I��H��I����H��J	D�8I�AH�EI�6L��H�����L�c H�CH�L$(dH3%(�/H��0[]A\A]A^����E1�1�1�1��}�H��H����p�����H��x
H�VH���:��PH�JdFH�5+GH�81�������1�H��H�H��u�fDH�BH�B H���$
��@��ATI��US��H��dH�%(H�D$1��Z��H�$��t>����I�,$��tP1�M�d$����H��uxH���`(��L���(���9fD�k����~dH�$I�,$��u�H��tH���=��H���%(���0�I��L��H����?��H�L$dH3%(u?H��[]A\�f�H������{���H�<$tH�����������������ff.���AVAUATUSH��0dH�%(H�D$(1�H��`FH�H����C����I��H�D$H�$���H�D$A������D�u�Ic�I�D���{H�������)��������|)��H�$H���cH������H�<$I���E)��E���>D��M��LD�L�,$H�D$���$L�$$���H��t
H�|$���I���.H�=6�Gu.H�%�GH����H��GH��GH���mH��GL��L�D$�1�H�5�G1�����H�|$H��4t H�-��GH��������H9�@��@��H�D$E1�H��4t
E1�H�����A�ĀK@��H�����H�߹D�������c�H������H�L$(dH3%(�H��0[]A\A]A^�������������twH�|$��1�1��������f�E1�1��c���fDH�=�E��o�H�|$H��H�ȀG�
���u�L�$$���DD�u�Ic�I�|�H��tl��H�$�����H�=R0��H�x�G�v����H�=+0���H�`�G�?���H�|$�����!�������'���&����&����H��]FH��H�H���H��uù1����@H��1�H���~��ff.���H������&��H�H��Hc�H�>��@H��?H���@H��/���H������H�x/���H�K/��H�C/��H�8/��H�>/��H�u��{���@H����k���@H�/�[���@H�/�K���ff.����H��@��t3�@��u!�����t>H��tH@��tRH��4t\�>���F��f�H�����u�H��tQ�H��u���D���f����f���f���f���f���AWI��AVAULc�ATI��UL��SH��H��A����H�����u|H����H�����:H�փ���E��L��H�FL��H��1����A��9�~)���4����H�����t�������H��L��[]A\A]A^A_�L�E��I��D��A�����$H�[FH�L���I;�rI;� wvH���������H��H��H��H��H��H��H)�uRM��I9�vFI�<M���H��I��H�qH9�r&�fDH�:H��I��H�qH9���H��H9�r�H��D����D��D�$L��H��I��H�#-L��1��Ǻ��A��9�����H��������uH�{H���CH�������A������H��DJc�H�>�������Ѓ����1H���GD��I���)H��4�W�:H�փ��"D��L��H�|L��H��1�����A��9��[���I���Q���H��D)����H�����Ic�Hc�H�9H��L�1��ٹ������@H�ֿ�C��L��H�
L��H��1�謹��A��9����H��D)�Ic�1�H�Hc�H��~L�聹������H��L��fDH�H��H��H9��iH�PI��������H���+C��L��H��L��H��1��$���A��9��M����_���@�H��D����B��L��H�IL��H��1����A��9������#��������H���+���H�HH� tH�H��Ic�H�/�1�D)�L�Hc�蔸��A�D9�������D)�Ic�Hc�L�H� ���KL�CH�
+1��R������DH�{�O���H�������H�HH� tH�HD)�Ic�H��*1�Hc�L��
����P���DH��D)�蕽��Ic�Hc�H��*H��L�1��۷���!���fDH�H��BH����Hc�H�>��DH����H��tH�C H��t�H����H�����H������D)�Ic�H��H��Hc�L�1��a������@L�L��%A�����I���AA��H��E�A���A��TD)�Ic�H��)1�Hc�L��
����P���DH�D)�Mc�Hc�M�ƒ����D��@��� ��H��L�?L��I��H�
ZH�5)1�A��觶�����f�H�KH� tH�KD)�Ic�H��1�Hc�L��u������H���x���H�������H�HH� t�H�H�H�
�?@��Ic�H��(1�D)�L�Hc��$���A�D9��c���H�H����������G�����H��D)�Mc�K�<,� ���.���H�
(�H�
�\�H�
�H�
e��|���H�
�'�p���H�
�'�d���H�
�'�X���H�
�'�L���H�
�'�@���H�
���4���@��#���fD��Ic�H��'D)�L�Hc��F���A�D9���������D�����fDH�ֿ�?��L��H�]�L��H��1����A��9�����7���@�����fD�H��'1��Ŵ������H��H�S�SE�A���D�JA��T�{���H���� tMH��L�[D�SH�����tQL��<L�
��L��H��H��91�ASARWL���P���H�� ���H��L�[ D�SL�
p��{��u
I��L�
\<���H�L<��@L��KLD�H�
��M��HD��A�����H��D����=��H��H���������L�
<I��H�؁�?H%���L��XH�8H��H��H��H��H�ڧH��H��H����?H�D78H��H��7�ID�H��H��7MD�H��H�V�ID�I��H�D7pH��7�L��H��H�kID�H��H�
����L��LE�H��H��ARRH�H%ASAPPD�D$01����H��0A��9��0����2���D)�Mc�H�{Lc�K�,,��H�s@���6�@��u1�������H����@����H��4���>���p<��H�s I��@����@��u1������PH����@����H��4���>���<��I��H�CD��8A����D�L$� �H�{H�$���AWL��H��AUD�L$H��H�:7L�D$1��ޱ��XZ�"���H�{H�4$�z�H�4$H�5$L��H��1�貱�����H�PH��������Ic�D)�L��@������H�������H����H�����������H���������H��teH�����������H�{����H�~�L��H��H��1������`���L�J9L������������m�����c���������O�����E�����;���������y�����o���f���H��H���dH�%(H��$1�H���"�H�=#�H��H�,QFH�81�����H��$dH3%(uH������f���ATH��A��UH��H���SH��H��dH�%(H��$1�H����H��E��I��PH��PFH�پH��"H�81��w���XZH��$dH3%(uH��[]A\��Q����ATH�=ڀUS�|��H�-�QFH�5�FH�=��H�E螕���H�=b"H����H���B�QH��H���b���H�=G"���H����1H��H���>���H�=7"��H����qH��H������H�=)"��H�����	H��H�������u
H������tH�}H��H�5"�Q���H�}H�5"�a�1�H��H�5�!H��H���V��1�H��H�*�H�5-��>��1�H��H�(��H�5�!�&��1�H��H�*�H�5�"���1�H��H��H�5�����1�H��H����H�5�S����H�߹����H�_'��H�5t!����1�H��
��H��H�5c!���H�=b!��������H����H�5V!H��H���a�H�߹����H�B�H�5C!�F�H�߹H�GM��H�5&!�+��H��H�\
��H�5!���H�=!����H��H�hHFH�0�8�H��GF1�L�%�FFH�5� H�8L�����H�JF1�L��H�5�H�8��������H��H����H�5� ��H��NFH��H�5� H��Ǵ��H�50H��H����H�߹H��,��H�5����H�߹H��/��H�5��o���H�߹H��/��H�5��T���H�߹H�e/��H�5���9���H�߹H�J/��H�5�;����1�H��H����H�5B�����1�H��H�z��H�5ԙ���1�H��H�b��H�5�����1�H��H����H�5����1�H��H����H�5����1�H��H����H�5�:���1�H��H�b��H�5�:�v���1�H��H����H�5���^���1�H��H����H�5��F���H�OFFH��H�0�d���H�}1�H��I��H�5F���H�}�����H���H�5F����H�}1�H�b��H�5�0�����!�H�}H�55H��H���{����
H�=#蚱��H��H������H�=�~���H��H������H�=�b���H��H��������u+H�����t"H��ƒ���tH�€�H�{H�t��tG[]A\�f�H��ƒ����{���H�€�H�{H��g������^���H������Q���DH��[]A\���@���������ATI���UH��SH���u��H�L� H�hH�PH�[1�]A\�ff.�f���UH���SH��H�IFH�H����(��H���H�(H�PH���H��[]�ff.����������H��ATI��H��US��1�L�����H	�t<H��H������u9H��JFM��H��H��I�����H�5�)H�81��e�D[H��]A\�������ff.�@��AUH��ATI��USH��H��I��L��A��H��E����I�������I	�I	�tAI��H��H���c���uAH� JFM��M��H��H��H��H�5).j�H�81����DH��L��[]A\A]�����J��f����g������������UH��1�SH���̦��H��H��蜯��H�C H��H��[]�ff.���UH��1�SH���<���H��H���\���H�C H��H��[]�ff.���ATH��E�US���L�%�;FH�h H��L���A���L��H�E�5���H�޹�H�EH�=M���S	H�EH��[]A\�ff.����AUH��ATI��USH��H��I��L��A��H��E����I�������I	�I	�tAI��H��H������uFH�pHFM��M��H��H��H��H�5y,j�H�81���DH���L��[]A\A]�9������@��1����D����f.���ATH��UH��H��SA��1�H�E����I	�t:I��H������u7H��GFM��H��H��I�����H�5�&H�81��s�[H��]A\���
��ff.�@��1�����D����f.���AUI��ATI��USH����tHH��H�3H��H�nH���m���H��H�(L�,H9�tLI�$H��1�[]A\A]��H��DF��1�H�H�������H�(L�,H9�u�H���[]A\A]�ff.�f���ATU�S��tIH�>I��L�M��tiH�G�N��@H�H9�tH��H��H��L9�u�I��H��t51�I9�w��[]A\��H�s��z���H�I�$��[]A\�@H��t������AVAUATUH�/SH��H��H��H������9���L�O1�1���u
�sH��9�vh�| �u�I��I��K�<4u�D�R9�AF�9�vEA��B�\ ���t_M�ڃ�I��M��AoC�\ H��I�4B�D �9�w��H��H���H��H	�H�[]A\A]A^�f�M��I��K�<4u���E1�I��I��I��O�,L�7D��D9�t�C�\" ���tA���`����I��M��I��K�|5�4u�A����ff.�@AWAVAUATUSH��XH�H�T$H�L$dH�%(H�D$H1�����H���؃��D$��H�D$@I��I��E1�H�D$ H�D$8H�D$(L��I�]E��H��H�C�|= �H�;��1�H�sH�T$A�փ�������tg��uRL�D$M��tHH��H�T$H�t$ H�|$(H�D$8H�CH�D$@A��H�D$8ImH�EH�D$@H�Ef.�I��D9|$�X����1�H�L$HdH3%(��H��X[]A\A]A^A_���t��H��4�=����@I�UI��MeI�$4H��C�D= �H������tH�H���H��H	�I�E�n���fDH���I�U�X����3����H��H�R� ����u H��H��H�R�P���D�H�����f���H�:�H�r�ff.�@����fD��H���tH�B H�H�J(H�1��@H�H�B H�JH�1��ff.�@��H��ĀuH����H����H�GH�@H�D�f����w�����H��Āu���H��?H��?���H�GH�x��H��?H��?��������fD��H������H���tH�H�B H�J(H�1��@H�H�B H�JH�1��ff.�@��UH��SH��H��L�H�?I�@��t*H��H�6A�PH�UH�S(H�C H�EH��1�[]��H�z��f���H�H�WH�@H�P�4����1�H��������H�%�tH�WH��3FH9B��HD��@��H��������fD��H�9FH�H�9t$1�f.���Hc�H�<�u�H�D�D��f���H��8FH�H�8H�����S��H���b�H��tH�H�CH��H���H�[�H�#���������H�H�CH���H�[�ff.��PXH�5�)H��H��:FH�81��r��f�����tH�H�B H�H�J(H�1��P���ff.�����tH�H�B(H�H�B H�1��P���ff.���USH����t-H�H��H��H�6H�?H�P�PH�H�E H�U(H�H��1�[]��@�����PXH�5�+H��H�@7FH�81����ff.�H��H�5EeG�P��H������H�����H������tH������������H!�H�H	�H�1�ÐSH�����H�5�dGH�ߍP�Hc�H�T��a1�[�f���H9���H����tSH��4��H��4��@����H��uH�����t
�����tuH��輛������H������H�����t������u�H�f>FH�H9Wu�@��u�H������w���������i���H;V�_�����D�@��t%@���v���H������i���������[�����1�ø�����ff.�@H���������H�����f.�AWAVAUATUSH��L�'I��A��tUA��I��H��1���H��A9�v7A��D8t+ u��L��H��HEH�0�����t�H��D��[]A\A]A^A_�f�A����AUI��ATI��USH��H�nH����H�_H���I�$�oEI�E H���L���oMK�oU S �o]0[0�oe@c@�omPkP�ou`s`�o}p{pI�D$ I�E%�H	�I�$I�UH%���I�\$��H	�I�$���H��H��[]A\A]�f�H�H�H%������H	�H�H�H%����H	�H��t\H%����H�I�D$L��1��P��H��H��[]A\A]�f�����H��H��t.I�$H��I�$����f.�H�H��t����I�$$�������^��H�����fDH�SH���Āu�t�X���H��[�H�~H�t���H��H�CH��[�@��u"H�����tH��ƒ���t��u�fDH�����ff.�@��H���C�1�H���ff.����H��H��� �1�H���f���H��(dH�%(H�D$1�H�<$�H�t$H��貶��H����������H�T$dH3%(uH��(��J��f.���H��(dH�%(H�D$1�H�<$�H�t$H���R���H����������H�T$dH3%(uH��(�����f.���SH��H�� dH�%(H�D$1�H�<$�H�t$H�����1�H�����tH��H�L$dH3%(��uH�� [��{��ff.���UH��SH��H��(H�dH�%(H�D$1�H���u&H�SH�C H�E1�H�t$dH34%(u0H��([]ÐH�$H��H��H�D$H�T$�B���H�UH�S(�������USH��(dH�%(H�D$1���tQH��H�H�H��H�$H�H��H�D$H�T$���H�H�E H�U(H�1�H�L$dH3%(uH��([]��l����w�����H��(dH�%(H�D$1�H�<$�H�t$H��肴��H�T$dH3%(u1�H��(��&��fD��ATI��USH��ǀu%H����H������H��H��u&H��[]A\�fDH�GH�XH�����H��H��t�H���x���I�<$���ulH��H�4؃�H9�������M�T$H�¹��L�H��H9�A��9�A��H��E�ucI��I��A�|�O�D�u�I��4t����I�|$H��H��蠮��H��H��襑��H�����H��H���B�H��[]A\�f.�H)�H��H����@1��ff.����AUI��ATUSH��H�/����H����H�����I��H����I�]�����H�����L���E���I�}L��H������L9���H��M�E�)fD�у�H��H��H��I�LH�N�9�v*I9�t%A�| ���uӉ�H��I�<4uƃ�H��9�w�H)�H��H���)@H��I�]���L��謞��H��H��H���Θ��H��L���S���H��L����H��L��[]A\A]�f.�H�GH�h���1��ff.����SH�����H����1�H�����tH����[Ð��SH��H��dH�%(H�D$1��?��H�s��I��H�=�YGH�$螘��1�H�����tH��H�L$dH3%(��uH��[����ff.���H������H���K�1�H���@��SH�����H��H���H�1�[�@��ATI��H��UH��H�:SH���t���1�H�����u
[��]A\�L��H���e���H�C��[]A\�D��H���3���H�������H�����f���ATI��H�:UH��SH������1�H�����u
[��]A\�fDH��L������H�C��[]A\�D��SH��H�rH��輤��1�H��tH����[�D��UH��H��SH��H��H�2腤��1�H��t	H�k�H����[]�ff.����USH��H��+FH�H�;H��t41�f��=����H��H��H��H�;H��u�H��H�D-[]�fDH���[]�@UH��SH��H�����H��H��H���!�H��H���6���H��H��[]�ff.��ATUS�W��I��H�%+FH�(H�]H��t9��=H���#��H��tH)�H��H�����L��H���%�H��H�]H��u�L��[]A\����f.�H��tSH���2���H��[H���6���fD��f.�USH�����H��H��*FH�H�;H��t/�=���H��tH�x���H��H����H��H�;H��u�H��H��[]�����f.���AUATUSH���=��I��H�*FH�(H�}H��tW��=���H��H��t1H�x����H�}I��H)�H���S���L��H���X��L��H������H��H�}H��u�H��L��[]A\A]�f���AUH��ATUSH���*���I��H��tH�r)FH�(H�}H����M�l$�H����H9�tdH��H�}H��t_�=�M���H��t�H�XH��蜪��I�$�� t�I;D$u�I�t$H��H���L�����u�A�H��L��[]A\A]�@L����H��E1�[L��]A\A]����AVAUATUSH��H�|$H�t$衶��H��(FL� I�,$H����L�l$M�u� �H����H9�tlI��I�,$H��tg�=H���r���H��t�H�XH�����I�M�� t�I;Eu�I�uH��H���s�����u�H)�H��H�s����H��[]A\A]A^�L����H���[]A\A]A^�fD��AVH��AUATUS�|���H����I��H��'FL� I�,$H����M�u�f�H����H9�ttI��I�,$H��to�=H��蚿��H��t�H�XH�����I�M�� t�I;Eu�I�uH��H��蛚����u�H)�H��H�s�����[L��]H��A\A]A^����DL����[�]A\A]A^�f.���U1�H��H�5SH��H�=H���;���H��H��H��[]�
���f.����H�=��[���ff.���AV�AUATUS�����H�5�H���&���L�-w&FI��I�]H�;H�����=L�5��k���H��H��tQ�L��L�����H�3H��L��H)��Ҷ��H�5\�L��辶��H�}���H�����L��H�����H��H�;H��t<�=���H��I9]t��H�5r�L���o���H���s���H��H�;H��u�L��H�5=�F���[L��]A\A]A^�f.���@��u%H�����tH��ƒ���u% �HE��H��H�������H��(H�кdH�%(H�L$1�H�<$H��H�t$H������H�L$dH3%(u1�H��(����ATUSH�� dH�%(H�D$1�H9��/H��H��A��@��u	H�����uO��H���z����tH��H��E���貉������1�H�L$dH3%(�aH�� []A\�H��ƒ���u�H�H�ׁ����H�MH�qI��A�����H��H����H9�u�H���������҅�uiM�����������uQH����H�EH���EH�@M����H9��=���H��H��H��H�\$H�=�1D�d$�8������������fD�������fDH��H�����0����H�KH�I�<���H�UH�z�����?���@H�CH�x�����?���@H���EM���Y���H�SH�R�C������ff.��������f���1����D��H��H�=BK�]���ff.�f���ATI��USH��蝵��H��H��� uRH�������tQH�59�H�����H��H�����H�5�H�����L���T���H��H���y��[1�]A\�f�H�{����u�H��H���)�������@��uH�����tH��у���t��@u�DH�G�ff.�����t��f�H��OGH��E1�1�H�=ZOG���D����u8USH��H��H�H�RH�h�SH�H9ju��t���E�H��[]Ð��H��#FH�5�H�81����f�H������t+H����������H!ȉ��Hc�H	�H���t0��SH����H�5�NGH��[�PHc�H�T��K@H�5�NG����Kff.�@��H���s���1�H���ff.����H��(dH�%(H�D$1���wwH�B��u*H�����t!H�
A��A��A��t��@t��u �H�L$dH3%(u@H��(�H�$H�I��H��H�=/KGH�T$H�+NG�N���뼺1�谪���˾��ff.�SH�����H������H��L�%�[1�1�H��������AUATI��USH���J�����tf��1�I��H�h�"fDH����H9�},H��H�<�H�����I�E�� u�I;]}
I�E ���H��L��[]A\A]�f.�H��L��[]A\A]�>���ff.�ATI��UH��S����xH��t(H��&FH�KL��H�5�H�81��9��f�H�������u�H�U�� u+H��H�}��1��و��H��u[H��]A\�èH�}H�U��H�W&FL��H�5EH�81�����ff.���H��H�|$H�t$�y���H�|$H�5��(���H���P���H��H�H��H�Ѓ��ff.���H��H�|$H�t$�)���H�|$H�5�����H������H�ǸH��t�>�H�|$H��葷��H���ff.��H���H�=G������u�A�����[���ff.���AVAUATU��SH��dH�%(H�D$1��G����H�I��H�$��A�Ņ�t	����H���[���H�<$H�5�����H��I���0���H��H��tXL���P���H��H��襞��H��H��H������H��H�����H�L$dH3%(H����H��[]A\A]A^��E��uK��tkI�^��H�=r1���H��躪��H�<$H�5%�j���H��I��菶��H��H���[���H�<$���H���s�������������H�$H�-hJGH�=�1�H���?��H��H��H���!���H���ɡ��f���AUATI��USH��蚢����tf��1�I��H�h�"fDH����H9�},H��H�<�H�����I�E�� u�I;]}
I�E ���H��L��[]A\A]�f.�H��L��[]A\A]���ff.���AVI��AUATUSH�� dH�%(H�D$1�������`苹��H��H�YFL�(I�mH��tUD�=H���S���I��H��t.H��H��H)���H��H���R��I�|$�H�H��H���=��I��I�mH��u��2	1�I����L�c�4�H����H9���H�t�L��H�<�H���K���H������H��� u�H;k}uH�C H�t���f.�H����H9�}TH�SH��H��H�$H�SH� uH�S H�DL��H��H�D$�$���H��� u�H;k}H�S �L��H�L$dH3%(u2H�� []A\A]A^��۵��H������L��1�1�H��L������膸��fD��H��Āu$�����u(H��1�H�=|(�����H�GH�x����tؾH�=�
�/z��ff.�@SH���G���H���O��H��L����[1�1�H��������AWAVI��AUATUSH��H�/H�EH�Á�����tdH�����D$tWH��D�d A��H��HEL�8A���t|I�VH�pL��A�V��t&���I��LmI�}4��H��9\$w�H���[]A\A]A^A_�fDH�}�4L��H�5����訑����t���I��4�z���H��9\$�O����fD�| �H�Et}H�UI��J�(4H���D �H������tyH�H���H��H	�H�E�L���A��L��H���1����4������H�2FH�5�	H�81����f�L��H��H�<4������l���f�H���H�U��������H������t.詶������H��H��}��d�.H�H��H��H1���H��H9�t�H���H��?H)�H��H��H	�H��H1��ff.�@��ATUS�H��H�|$H�t$��H�|$H�5Z���H��I���İ��H��t/H��L�����H��H���9���H��H��H���{��H��H��萌��H��H��[]A\�@��ATLc�USH��譴��H��E��~&N�$�H�3�H���O���H��H�����L9�u�H��[]A\����UH��SH��H��H�>�H��H��uH�����u	H��1�[]�H��H���U���H��1�[]�ff.������u@SH���H��H�7H�:@��u	H�����u)H�rH�3@��u	H�����uCH��[�D��f�H�$�L$���H�$�D$H�rH�:H�3@��u��f��$踡���$H��[�ff.�@AUATUSH��H�7L�oH������H��M����I��H��H�=��EI�����Z���A��H�}I��E��u#�H�H�RL��H��谘��H�}A9�v'H��H��H��| �H�2u�H��4u�H��A9�w�@H�EH��t�t@H%����H%����̀L�mH�EH��L��[]A\A]�H�=A�E�L���I��H�E�����H�E�DATUSH�7H����u
H��@��u[]A\��H�H��H�=��E���c���I��H��L��H��H��HEH�PH�0�—��H��u�H�}H�EH��t�t H%����H%����̀L�eH�E[]A\�@�s���H�E��ff.�f���釉�����H��H�w@��u	H�����u�DH��H�|$貟��H�D$H������UH��SH��H�~KFdH�%(H�D$1�f�;u>�H���Yx���H��H��艀��H��H�L$dH3%(u)H��[]��H�|$�.���H���H��HD��x����UH��SH��H��H�����H��tH���o�����t�P��wH�@H��H��H��[]����H�5�1Љ�H�FH�81�荹��ff.�f���ATI��UH��S����I��tG��H�ZQ�L������H��H��tGH�����H��t:H��H���=���H��[]A\�DH�e����H����V��H��[]A\�L���f���H�5'H��H�mFH�81��۸��ff.���UH��SH��H�����H�#����H��H���~��H��H��[]�ff.�@��ATI��U��H��SH�������×����t��u=覚��H��H���k���H��[]A\���w(���tI�4$H���~��H��[]A\�1�1���胛���1����u���DATH���UH��H��H��SH��L�e�v��L��H��H���4~��H��H��[]A\���D��H��H��H�=��1�dH�%(H�D$1�����u%�uH�����t
�����
t*H���r����t�H�L$dH3%(uOH���f���H��E1�A�@H���"w��H��������H#$��H�D��y�H��H�D�蚮��f.���H��@��u	H�����uI@����������te�������H�0H��}��d�.H��H��H��H��H1�H��?H���@�����tf������
����t_�:���H���DH��1�H9�taH���H��H��?H)�H	�H��H�|$�~D$�+������x���fD��������t��Gf.�v{fH~�H���!���fDu�1�H������@H������$���f�H�G������+��H�������UH��SH��H��(dH�%(H�D$1��K���H��H�$�?���1�H��H�D$���H1H�L$dH3%(u	H��(1�[]��ڬ��f.�H���u1��f�ATI��UH��SH��H��@��u
H����������#��H�߃����:�������H�MH��}��d�.H�H��H1�H��?����H����H��������1���t�M��tH��HUH�RI�$H��[]A\�f�������������
���tH������H�MH��v�����������tz�Ff.�t{fH~��'���f�u�1������H�}H��L��H��[]A\�y���f�H��H�����H�M���H�F����H��1�H9������H�ڸH��?H)�H��H��H	�H��H�D$�~D$�I���fDH���H���H�M����H�����H�MH��s���@��AVAUATUS��H��dH�%(H�D$1��G�����I��H��L�6�d���A�ą�t	����H��H�E�t?H�}L���k�����u>E��uB��t[I�EH�L$dH3%(uBH��[]A\A]A^�@L��H���]�����t�H�$��L�����뽺��������H�=�F1�L�����H��t4�AH��螵��H�=��H��1��
���L��H��H�����H��藐��L���ߤ����H�=>`1���������f.���H��H��u1������H�H��H�Ѓ���H�1��U�������UH��SH��H��dH�%(H�D$1�H�BH��H��u`H��H���E�����t�CH�4$H��u3�ނ������1���tH��H�L$dH3%(u(H��[]��;o��������@H�@H��H��豎���誨��f.�AWAVAUATI��UH��SH��H��H��(H�t$dH�%(H�D$1���H�D$u
H�������@�����������~蹨������H��}��d�.H�H��H��H1�I��H�I��?�Ā�����H�{�s1�H�t$H�|$L��Յ���1�H�L$dH3%(��H��([]A\A]A^A_�D����������y��
������貶��H�I���]����H�T$A��H����������1�H�t$H�|$L��Յ��c���H����H��L�d$L�t$H��@���H�C����H���H��H��H�L�0L�`�EH��D�l H	�H��H���%HH	�H����H��1�H9���H���H��H��?H)�H	�H��H�<$�~$�H��������A��H�CH�t$L��M��H�|$�I��L�L�8H�@L�|$H�D$�Յ�tf������K���������>���fD�[���I��������������.����Gf.o{fH~�H�����f�H�D$H�SI9�tJ�*L��H�L$H��H�L�����LkI�E4B�D3 �H�H��H������tDH�H���H��H	�H��7���@�{���1�H������H���ǥ��I���%����H����H��L���@L�o������
��H�I�����H��������H�CH��tH������p��H�C���դ��DAVAUI��ATUH��SH��H����u
H�������������H�߃������
���A����L�I��}��d�.I��I��I1�I��?H�E�u-H�}��A��H��H��������u H�E�H�������[]A\A]A^�H��HEL�hH���[]A\A]A^���������Y��
�p��t{H������H�I���Z����H���H���_���H��1�H9�����H�ڸH��?H)�H��H��H	�H��H�D$�~D$�$�H��踳��I�������؃���t��Cf.el��fH~����DH�����A��H�EH����D��H��H��H�H�L�hD�d H�EA�VH��H%���H	�H��H%����H��H	�H�EH��1�[]A\A]A^�fD�s���1�����H��H������I���&���@L�c��������H�E�Z���f�H���H��H�I�����ff.�f���H��H��H��uH��H��H���^���1�H����H�BH��H��H���q��1�H������H��f.kz.u,1��e�������H��H��}��d�.H�H��H��H1��@fH~���f���H��@��u	H�����uI@���������tu��������H�0H��}��d�.H��H��H��H��H1�H�DH���@�����tv������
����to��b�����H�H���f.�H��1�H9�taH���H��H��?H)�H	�H��H�|$�~D$�+������h���fD��������t��Gf.�i{fH~�H������fDu�1�H�����@H���������f�H�G�	����H���8����.���H��訟���fD���H����������fD��H�H��H�����ff.�f���H�G����H�G����H��H�w���H���USH��H�oH����H����ue��蛞H��tV�oE�oMH�oU P �o]0X0�oe@`@�omPhP�ou`p`�o}pxpH�CH��[]�@���&���H�#�����D��H��[]鵡��D��H��(1�dH�%(H�D$1�H�t$H�5���H�T$H��H�<$�Yy����uH�D$dH3%(uH��(�H�aFH�5��H�81��(���裞����H��(dH�%(H�D$1�H��u/H�4$H��H�5A��H�T$1����H�L$dH3%(uH��(�H��������@�����H��u�N��fDH�鏠��ff.�@��SH���Ӆ����t_H������H��ĀtH�CH�x������tH��[���������u�H��H��H���H�5����h���H��[��˚��H���ө��H��L�9��[1�1�H��錨��ff.����UH��SH���.�������H�'F�H�8��c���H��H���l��H��H�������H� ����H��H����k��H�E�ĀtH�EH�x����uH��H��[]�D�����t�H��H��H���H�5������H��H��[]�f��ۙ��H�����H��H��1�[L�B��1�H��]闧�����ATI��UH��SH��H�� dH�%(H�D$1�H��Āu[�������u/H���,��H��H��H�$H�+��H�=4�L�d$H�l$�_��H�D$dH3%(uH�� []A\�@H�GH�x��������f���AUATUSH��H��������Y���H�����H�����1��(b���H��H���Xj��H�����H��H��H�5#����^~��H�{H��t%H����H%����H%���H�CH�H��H���E��H�}H����H�E���H%����H%���H�EH�EH��H��[]A\A]��1�L�c�pa���H��H���i��I�t$I�|$�a���H�M�H��H��H�EH�5X���I���}��L���h��H��L�kH�e���H�EH��H��[]A\A]���C�����fD�c���H�����S���H�E�'���H��EH�5��H�81�袢��f���SH�������t_H������H��ĀtH�CH�x������tH��[���������u�H��H��H�5$���|��H��[�f.��ۖ��H�����H��L�I���[1�1�H��霤��ff.����USH��H���>���H�߅�tw�B��H�+���tGH�CH�hH��tFH��H�5���H���(|��H��ĀuPH����H��H��H9�tH��[]��H����H��u�H���[]��H��[]���DH�CH�P�fD��USH��H��莀��H�߅�tw���H�+���tGH�CH�hH��tFH��H�5P��H���x{��H��ĀuPH����H��H��H9�tH��[]��H����H��u�H���[]��H��[]��DH�CH�P�fD��SH��������t_H������H��ĀtH�CH�x������tH��[���������u�H��H��H�5����z��H��[�f.��۔��H�����H��L�I���[1�1�H��霢��ff.����SH���S�������tI��%H�H�{�ĀuIH��t	H%���H�H��[�fDH��1�H�5d����z��H��[�f.�H������fD苀��H��[�fD��ATUH��SH��H��@dH�%(H�D$81�H��Ā����¸����H��L�d$ ��H�SH�
E�EH�BH9�tPH�HH�=1��L��H�$H�|$H�=� H�L$H�L$H�JH��H����H�\$ H�l$(H�D$��Y��H��4u\L��H�5���H��H�l$ H�D$(�y��H�D$(H�t$8dH34%(u4H��@[]A\�fDH�GH�x���-����H��H���Ր����ޕ��ff.���H��(dH�%(H�D$1�H��H�4$H�5j��H�D$�x��H�D$H�L$dH3%(uH��(��}���ff.�f���USH��(dH�%(H�D$1�H�$����H�H��H��Āt_H�BH�x��1���u0��tY��|��������H�EH��H�5���H��H�D$��w��H�$H�L$dH3%(urH��([]�fD����fD�|���¸��t��
	H��~H�5���H���w���f.�H�5���H���qw��놺1��S����n���ff.���ATUSH���v��H��tH��[]A\�H�����H���0��1��Z���H��H����b��H�3���uiH����H�=��E薃��H�M�H��H��H�EH�5��I����v��H�{��a��L�cH��H��H�e���H�E�I���H��[]A\ÐH�CH�p�fD��H��(dH�%(H�D$1�H��H�t$H�5y��H�$�Lv��H�$H�L$dH3%(uH��(��>���ff.���USH��H�����H��ĀuH����H��H��uH���[]�H�CH�hH��t�H��H�5����H����u��H��ĀuH����H9�t�H��H��[]�H�CH�@��ff.���SH���cz����t?�	1҃�~H��H�5	���du��H��[��H��H�5n���Iu��H��[�@�{���H��胞��H��L���[1�1�H���<���ff.����SH����y����tH��1�H�5#�����t��H��[�f�H��[�������SH���y����tH��1�H�5����t��H��[�f�H��[������H��(dH�%(H�D$1�H��H�4$H�5���H�D$�\t��H�D$H�L$dH3%(uH��(��M���ff.�f���UH��H�5�SH��H�=	�H��(dH�%(H�D$1��p��H��H��H�,$H�D$H�53����s��H�D$H�L$dH3%(uH��([]��͐��ff.�f�����u(SH��H��H�H�5S��s��H�[�f���f.���UH��SH��H�dH�%(H�D$1��ǀuKH����H���̐��H�5���H���͂��H�$H��u4H�����H�L$dH3%(H�Du/H��[]�H�GH�X�fDH��H�5��H����r��H�$��������u`USH���H���u����H�5H�H��豁��H��H�57��H��H���r��H��H�5�舁��H��H��[]�fD�H�=Z��gQ�����USH��H��H�?���u0H�����\W��H��H�5b��H��H���r��H��H��[]�DH�CH�x��ff.���ATUSH��dH�%(H�D$1����KH�Ӆ�udH�:���tIH�BH�xH���V��H�5���H��H��H���q��H�L$dH3%(H���	H��[]A\�@H������H�>@��uo�R���A��E����H�;���ucH�����_V��A��H�5D��H��H��H���q��E��I�w���H�LGE1�1�H��H�=�G�pZ���W����k��A���fDH�CH�xH��Mc�H�GI��H��O�d$�H�=�GL�$$�Z������f�H���8���H������1��dy������ff.�@��USH��H��H9�t?H��H�������U�H���
u��H�5�-H��H��-HD�1��p��H��H��[]�D��SH���H����H���H�� dH�%(H�D$1���H�H��ƀupH��H�у�H��ƀuNH����1�H9�v!H��H�5FH�$H�D$�o��H�D$H�t$dH34%(u)H�� [�f�H�GH�P�fDH�CH�H��Q������SH���H����H���H�� dH�%(H�D$1��+�H�H��ƀupH��H�у�H��ƀuNH����1�H9�r!H��H�5�H�$H�D$��n��H�D$H�t$dH34%(u)H�� [�f�H�GH�P�fDH�CH�H�葋�����SH��H����H���H�� dH�%(H�D$1��k�H�H��ƀupH��H�у�H��ƀuNH����1�H9�s$H�4$H��H�5�H��H�D$�n��H�D$H�\$dH3%(u&H�� [�fDH�FH�P�fDH�CH�H��ъ�����SH�^�H����H���H�� dH�%(H�D$1�諒H�H��ƀupH��H�у�H��ƀuNH����1�H9�w$H�4$H��H�5H��H�D$�Am��H�D$H�\$dH3%(u&H�� [�fDH�FH�P�fDH�CH�H��������AVAUA��ATUH��SH����q��H��A���˷��E��~cA�E�L�-u�L�t��@H�5�H��H���l��L9�t5H�;L�깑�賑H��E��u�H�5�H��H���xl��L9�u�[H��]A\A]A^����H�=�ES�H�8��O���H��H���X��H��[�f���AUATUH��SH���p�������a��H�����ud�l��H�U�ƀtH�UH�z�„�uH��[]A\A]����„�t�H��H��H�D$H�5��k��H�D$H��[]A\A]�@H�����I��H�v�EL��L� M9�u��H�[I9�tH���o�����t�M�������@��u$H�����tH�E�ƒ���t
��D�ϸ��@H�}������k��H�U�ƀ�%����>���fD�K���H���S���H��H��1�[L�����]1�A\H��A]������SH��H���o����t[�Fk��H��ƀtH�SH�z�„�uH��[�����„�t�H��H��H�D$H�5��|j��H�D$H��[ÐH��H��[�S����SH��H����j��H��ƀu���„�uH��[�@H�SH�z�„�t�H��H��H�D$H�5�
�	j��H�D$H��[�ff.���SH��H���n����t[�Vj��H��ƀtH�SH�z�„�uH��[�����„�t�H��H��H�D$H�5��i��H�D$H��[ÐH��H��[�c����UH��SH����i��H��H��tH��wH�����H��H��[]�fDH��H�=^�E��u��H��H�CH��H��[]�@USH��H��H�?���u,H������U��H��H�5FH��H����h��H��H��[]ÐH�CH�x��fD��SH���m��H�߅�u4����H���EH�2H9�uH��[�H�H��[��@���fD[�b���f���USH��H��H�?���u0H�����,U��H��H�5	H��H���7h��H��H��[]�DH�CH�x��ff.���USH��H��H�/�[���H��H��H�Ɓ�D�g����uH��[]��H��H��H�D$��H�D$H��[]�@��H��H����u$H�����t�����u�X��H� H��þ�Y��f���UH��S��H��H����W��H��H���H��[]�F���fD��H��E1�H�0���ff.����'�����ATUH��SH�����H9�������������XH�﹑�H�t���H�H��H�pH�ŀ�H�H�%@H	�H��R��H�H�{�ĀuCH�E���H��t	H%���H�H��H��H�5*��ef��H�����H��[]A\�DH�E�u�aQ��H�#���H�C��l��L�eH���K��I�T$H�P�@H���������H��tS�tdH%����H%���H�CH�H�u���u)H��H�=��E���nr��H��H�C�7���fDH�EH�pH�x��f.�諑��H��H�7�EH�5��H�81����ff.���SH����T��H��[�:J��f.���AUI��ATI��UH��SH��H��H��u%������tH��[]A\A]��H�����H�{H��L��L��[H��]A\A]錌��ff.��SH��H��PdH�%(H�D$H1�H�L$H�L$H�|$H�D$ H�D$(4H�D$0H�D$84�@���H�t$ H��t@��tPH�t$0H��t@��t H�|$HdH3<%(uKH��P[�f.�H�����t�H�߉D$��n���D$��DH�����t�H�߉D$�n���D$�������AUI��ATI��USH��H���/������H���î��H�{tdH��tH�SH�h�EH9BtL���
���H���EH9tN��H�����H�ަ��HN�L��L��H�����H��L��[]A\A]�fD��8H������f.���H��H���fD�#������Q����'������ATI��UH��SH��H�� dH�%(H�D$1�H�<$�H�t$H���5e��H�����t1�H�L$dH3%(uH�� []A\�f�H��H��L���2V�������ff.���ATI��UH��SH��H�� dH�%(H�D$1�H�<$�H�t$H���d��H�����u1�H�L$dH3%(uH�� []A\�f�H��H��L���U�����;��ff.�AUATUSH���b��I��H�o�EH�(H�}H��tK�=�nx��H��H��t)H�x�}���H�}I��H)�H��軴��L��L��H���=U��H��H�}H��u�H��L��[]A\A]�f���S�v���H���nf����u
H��[�DH��[�g�������G������H���3���H��H���������H������H��H���W������AVAUATUSH��H��0dH�%(H�D$(1���e�������ka��E1�H�\$H������H�$�VDH����I9�}tH��N�,�L�����I��H��tH�޿L�l$H�D$��b��H�����uH�$I��H��� u�L;`}!H�@ �L��L��H����S�����H��H�D$H�$H�L$(dH3%(H��u9H��0[]A\A]A^�@�[z��H���c���L�����1�1�H��H������H����}������thAUHc�ATUH��SH��H���L��I�Ņ�~6�E�L�d��H�+�H�����H��tH��H��L���S��H��L9�u�H��L��[]A\A]�D�_��ff.���H��u1��H��H��H��H��H����R��1�H���@��H��H��H��H���R��1�H�����AVAUATUH��S��c������H�����H�E�Āt#H�EH�x������t[H��]A\A]A^�@�������u�H��1�1�1����H��I��舌��M�e�Gf�H����H9�}�L��H�<�L�4�����L��I�E uI�U J�T2H��H��H����Q��I�E�� u�I;]�h���I�E �f��{x��H��胇��[H��L���]1�A\1�A]H��A^�5���D��UH��SH��H���{���H��H��H���mQ��H��1�[]�@��UH��H��SH��H�������t+��H�
���H��H��H�ݡ��HN�����H��1�[]�H��H�t$�{���H�L$�@��UH��H��SH��H�H�r�����t/��H�ơ��H��H��H�ɣ��HO��p���H��1�[]��H��H�T$����H�L$�ff.����UH��H��SH��H�������t+��H�
���H��H��H�}���HN�����H��1�[]�H��H�t$諣��H�L$�@����H�J��鶁fD����H�*��馎��fD��H���$n��@��UH��SH��H��(dH�%(H�D$1���������؃����`H���f���mH�sH����H�IGH�=�G�=O����upI��H��H�,$H�#GH�=�G�GE���H�|$dH3<%(�GH��([]�DH��H��u'H����H��uH�I�EH�0H��uxH�C�H�sH����H�CH��t�H��у���t���@t�H��4tbI��H��H�$H��GH�=UGH�l$�D���V���fDH�Y�EH�0H��t�H�JGH�=�G�>N�����m������������fDH���EH�0�C����H�A�EH�0�3����H���EH�0�#����H�9�EH�0�����H��GH�=G��M���������H��H�CH�������pw����UH��SH��H��dH�%(H�D$1�H��H��u$�o����t(H�$H�L$dH3%(u!H��[]�H��]����u�H��H��������w�����AULc�ATL��I��USH��H���?��H��M��~(N�,�DH�3L��H���J��H��H���F���L9�u�H��H��[]A\A]���US��H����~7H��H�6H����I������uH��[]�@H��H�u�H��[]�	�����,b��ff.������uH��H�1�|I��P�׾��a��f.���H��u�.��fDH���[��ff.�@��SH��H��dH�%(H�D$1�H��H��u(������tH�$H�L$dH3%(H��uH��[�f�H��[�����u����H�wH�?�4�;I��ff.���UH��H��SH�Ӻ4H��H�;�I��H��4uH�CH���[]�fDH��H���N��H��t�H��1�[]��������H��Āt|H�BH�xtxAVHc�AUATI��UH��SH���D��I�Ņ�~A�E�L�t�f�H�+�4L��H���mH��H��4tH��H��L���J��H��L9�u�[L��]A\A]A^�@�u���W��@����"H��f���H��H���H�t$H�t$�a��H���ff.����AULc�ATL��I��USH��H���!<��H��M��~(N�,�DH�3L��H���A}��H��H���f���L9�u�H��H��[]A\A]���H�%��.ATI��UH��SH��H��H�>@����@��������������s������H�0H��}��d�.H��H��H��H��H1�H��?H���WI�<$H����H��轞�����H�S��H��tH��H��H�L
H�MH��H��H�
4�D �H�H��H������usH����H�H��[]A\�H������+���������E������
�C��tN���H��8���f�H��g9���H�H���H��H	�H�H���[]A\�������������Gf.I;{7fH~�H�����f.�1�H���1���H�EH��[]A\�@t���@H�{H��H��L��[]A\�8���H���Gr���q���f�H��������H#G�r���DH��H9��s���H���H��H��?H)�H	�H��H�|$�~D$�:���賁���
���fD�3��H����ff.���H��(dH�%(H�D$1�H�T$H�t$H�t$�T����4��tH�T$H�L$dH3%(H��uH��(���p��f���UH��SH��H��諞��H��H���I��H��4t
H��[]��{X���¸��t�H��H��[]����f���SH��H�� dH�%(H�D$1��O���H��Ā����H�$4���w����H�H��H�����4H��H���΃��"E1��{ �H�K�IL��H��H�H�qH�t$H�9H�<$H�4H��B�D �H�����t��H%���H��H	�H��H��j���h�H�5����H��H���R��H�4$H��4�|H��Āt,��H�$4������u@H��H�{H�V�hS����uP�H�����H�L$dH3%(��H�� [�DH�5A���H��H���R��H�4$H��4t�H����G��H�t$H�<$�i���@H�D$�]���f�H���Ș����u��g����H��谘���|���H�94������A��9�v��|; ������H��I��I��J�|	�4t��~����n��f.���H���3G���H��4HD�H��Ð��H�uH���EH�H9Gt�~^��fD�7����uDSH��H��H��uH�����tH��σ���t��t3H�BH�H�B H�H��1�[�DH�H�B H�H�J(H�1��@H��H�T$H�4$�_���H�4$H�T$H�뮐���w��������t�c���P�}���ff.�f���H��ĀuH�����@H�GH�@�ff.�@��UH��SH��H��H����T��H��t]H��� u*H�PH��u3H�@ H�PH�0H���}C��H��H��[]�H����H��uH����H���EH�5G�H�81��Uu��H����Q��H�5�H��H���EH�81��2u��f���SH��H�� dH�%(H�D$1�H�<$�H�t$H���Q��H��H���#���H�L$dH3%(uH�� 1�[��Vl��fD��ATI��UH��SH��H�� dH�%(H�D$1��������L��H����tH��t8H��H�5n�H��H�$H�l$��N��H�L$dH3%(H��uH�� []A\ÐH��H�5��H���N�����k�����S�O��H�=?�EH����>��H��H�CH��[����H�=�E�>����ATUH��SH��H�� dH�%(H�D$1�I��H�<$H�T$H��uIH�tbL��H�����H��H���}�����t H�L$dH3%(u?H�� []A\��H����H����2��L��H�>���H��H���su��빐�[������j��@��H��~WAWAVAUATI��UH��SH�H��H��H�zt>H��ĀuH����H�H��vNH��H��L��[]A\A]A^A_�J��D��H�t$H��H���6�ђ��H�t$�f.�I�|$�H�nH��H��L�|>�Lf�L�mL��H��L���.��M��uL��H��H����A��u
I�������H��I9�t}L�e�L��M������H�
��EA��H;u�M��uiL��H��tI�$�ƒ���t	����L�mL��H��H�L$L�����H�L$H���{���L��H���V���k���@H��[]A\A]A^A_ÐL�mL��H��L���^���@���f�L��H���V���:�����0��H�t$����L�����I��I��A������f���AVAUATI��USH�Ӄ�tI��@����H�׾�@/���H��H���p7��Hc�H��L����L��H��[]A\A]A^�fDH�>�(]��H��H��t7H�߾��.���H��H���"7��H�E�u@H��H���M����I�<$�O��I��H��u>H��EH�5��H�81��p��fDH�}�6��H��H�C�]����H�߾M�l$1��d.���H��H���6���cf�H����H9�����L��L�4�L���1O��H����H�H�с� tYH����H��u<�H��tQH��H�0H��H����=��I�$�� u�I;l$�����I�D$ �@H��u.H�PH�R�H�PH��u�H�@ �H��uH�P ��H���EH�5��H�81��to��L����K��H��H�5��H��H���EH�81��No��ff.���H��1�H�=׻��]��1�H�����SH��H��t���`����u'[��Ks����t�H�=d�H��1��s��H����s��H�=M�H��1��s��H���s��DAUATUSH��(H�|$L�l$L��dH�%(H�D$1��dU��H�|$H�5������H��H���8a��H�5�H��I���Vg����u
H���G��M��t/L���V���1�H��H���)���H�=szH�������tH�T$dH3%(H��uH��([]A\A]ÐL�l$H�D$���oe��ff.�@��UH��SH��H��(dH�%(H�D$1��[���H�D$H9��|H�﹑H���1��"mH�T$H�5FH����G���!@H����H9�},H��H�<�H�����H�D$H��� u�H;h}H�@ ��f�H�D$H�D$H�D$H�L$dH3%(H��uH��([]��d��f���USH��H���EH�H�H��td�=H����]��H��tRH)�H��H���4���H��H�xH� tH�x�{_��H���Ú��H��H�����H��H��H��[]�_���H���[]�@��AUATUSH��H��8dH�%(H�D$(1��K�����"���1�1�L�d$H�$H�@�H����H9���H��H�4ؿL�,��ƭ��H��tQH�$H� tkH��J�*L��H�D$H�T$�H��H�����uH�$H� t?H��J�<(�����H�$H��H��� �k���H;X}%H�@ �p���@H�R �f�H�@ �f.�H��H�D$H�$��HE-�FH�L$(dH3%(u:H��8[]A\A]�f.���_��H����n��L����1�1�H��H���m����b��fD��SH���CJ��H�߅�t�g���H���F[�fD[钣��f���AUATUSH��H��8dH�%(H�D$(1��I�����"�=���1�1�L�d$H�$H�@�H����H9���H��H�4ؿL�,�����H��tQH�$H� tkH��J�*L��H�D$H�T$��F��H�����tH�$H� t?H��J�<(���?���H�$H��H��� �k���H;X}%H�@ �p���@H�R �f�H�@ �f.�H��H�D$H�$��HE}�FH�L$(dH3%(u:H��8[]A\A]�f.��+^��H���3m��L�l���1�1�H��H����k�����`��fD��SH���H��H�߅�t�g���H��F[�fD[���f���UH��H��SH���K���H��H��tH��H��[]���;H����t�H����y����ff.�f�USH��(H�|$H�4$dH�%(H�D$1�H����H�l$H���jO��H���bO��H�|$H�5������H�<$H�5��H�����H��H���#$���H�=�tH�������tAH�5նH���*a����u
H���G�H�$H�T$dH3%(H��u'H��([]�fDH�l$H�D$��@H���0������i_��f���H������1�H���ff.����UH��H��SH���H��(dH�%(H�D$1��S���H��tH��H�l$H�$H�D$�2D��H��H��H�����1�H�T$dH3%(uH��([]���^��fD��AWAVAUI��ATUSH��H��H�|$H�|$��M��H�|$H�5S�蘠��H�|$H���+���H�D$L�8A�� ��H��I��H�$A��I�]E1�I�mI��H��A�� ��M��tUI9�}:H��J��H��� uWH��H�r��I9�uTH�<$L����e����uDL��L���fj��H��1�[]A\A]A^A_�DM;u}�I�E J��H��� t�H�BH�rI9�t�I���z���@H�HL�xH�$�I���ff.�@��H��H���1������1��!��D��US1�H��(dH�%(H�D$1��o���H�D$�X�H����H9�}dH��H�4ؿH�,��Z���H��tH�D$H� t.H��H�<(���H�D$H��H��� u�H;X}H�@ �@H�@ ��f�H�D$H�D$H�D$H��FH�L$dH3%(uH��([]��\��ff.����X�����AU�H�=��ATUSH���1J���H�=�LH���F�J���H�=>�H�~�F�J���H�=8H�^�F��I��H�J�F�=cL�-f�EH�=��H�(�FI�u�O9��L�%8�EH���EH��I�4$H��B/��H�;H�5ȩ���sc��H�;�����H���H�5y��<��H�;�H��H�5�<��H�;�����H�n���H�5��7��H�;�H�C��H�5��7��H�;1�H�k���H�5M��7��H�;1�H�C���H�5<��g7��H�;1�H�K��H�5��O7��H�;1�H����H�5��77��H�;1�H�k���H�5[�7��H�;H�LH�5d�Y��H�;1�H�-���H�5�k��6��H�;�H����H�5l��6��H�;H��E�H�5L
�6��H�;1�H����H�5{��6��H�;�H�����H�5��6��H�;�����H�i���H�5��m6��H�-μEH�;�H�5�H���O6��H�;H��H�5���86��H�;�����H�y���H�5��6��H�;�H�~���H�5߯�6��H�;1�H�֘��H�5Я��5��H�;�H�����H�5¯��5��H�;�H����H�5X��5��H�;�H�%��H�5F��5��H�-Z�EH�;1�H�5�dH���~5��H�;1�H��H�5��j5��H�;1�H����H�5=�R5��H�;1�H�&��H�5Z��:5��H�;1�H����H�59��"5��H�;1�H�6��H�5��
5��H�;1�H���H�5�
��4��H�;1�H����H�5ۮ��4��H�;1�H�^��H�5Ү��4��H�;1�H����H�5ʮ�4��H�;1�H�N���H�5î�4��H�;1�H���EH�5���z4��H�;1�H�>���H�5���b4��H�;�����H��H�5�
�G4��H�;�����H���H�5o��,4��H�;1�H�P�H�5��4��H�;�H���H�5H��3��H�;1�H�
�EH�5S
��3��H�;1�H�u���H�5
��3��H�;1�H����H�5�g�3��H�;1�H�����H�5��3��H�;1�H�]��H�5{g�3��H�;1�H�e���H�5��i3��H�;1�H����H�5ug�Q3��H�;1�H�����H�5��93��H�;�����H���H�5�c�3��H�;1�H�B�EH�5��3��H�;1�H�:��H�5>���2��H�;�����H����H�5*���2��H�;�H�d��H�5���2��H�;�����H�Y��H�5���2��H�;�����H����H�5��2��H�;�H�3���H�5�g2��H�;�H�H���H�5��L2��H�;�����H����H�5�12��H�;1�H�u��H�5!��2��H�;1�H����H�5��2��H�-һEH�;�H�5H����1��H�;H��H�5+b��1��H�;H��H�5 ��1��H�;�H����H�5��1��H�;H��H�5��1��H�;�H�����H�5��h1��H�;1�H�����H�5ϫ�P1��H�;1�H��EH�5˫�81��H�;�����H�y���H�5T�1��H�;�����H�.��H�5D�1��H�;�H����H�5#��0��H�;�H���H�5�
��0��H�;�H�-��H�5�"�0��H�;�H�R��H�5���0��H�;�H�W|��H�5�E�{0��H�;�H�����H�5��@5��H�;�H�Q��H�5��%5��I�}�)��I�4$H��H�F�F�)7��H�=:�F�H����H�5���4��H�=�F�����H�W���H�5e��4��H�=��F�H����H�5B�4��H�=��F�H���H�5Z��4��H�=��F1�H����H�5w�q4��H�=��F1�H����H�5���U4��H�=��F1�H�����H�5p��94��H�=j�F1�H�)���H�5]��4��H�=N�F�H�J�H�5m��3��H�=/�F1�H���H�5t��3��H�=�F1�H�2�H�5<��3��H�=��F�����H����H�5N_�3��H�=��F1�H���H�59�3��H�=��F1�H���H�5�b�o3��H�=��F1�H���H�5��S3��H�=��F1�H����H�5)b�73��H�=h�F1�H��H�5��3��H�=L�F1�H����H�5b�2��H�=0�F1�H���H�5Q��2��H�=�F1�H�#�H�5���2��H�=��F1�H�G{��H�5���2��H�=��F1�H���H�5���2��H�=��F�H���H�5���p2��H�=��F�H����H�5ȧ�Q2��H�=��F�H����H�5���22��H�=c�F1�H�����H�5r�2��H�=G�F1�H�y��H�5��1��H�=+�F1�H�����H�5^��1��H�=�F1�H�>���H�5=��1��H�=��F�H����H�5g��1��H�=��F�H�����H�5Q��1��H�=��F1�H��x��H�5�[�h1��H�=��F1�H�hx��H�5��L1��H�=}�F1�H��x��H�5;�01��H�=a�F1�H�����H�5?��1��H�=E�F1�H����H�5a��0��H�=)�F�����H�����H�5W��0��H�=
�F�H�f���H�5s�0��H�=��F�H�G���H�5\�0��H�=��F�H�(���H�5��|0��H�=��F�H�	���H�5��]0��H�=��F�H���H�5ͥ�>0��H�=o�F�H�ˆ��H�5���0��H�=P�F1�H�o��H�5���0��H�=4�F1�H�#��H�5l��/��H�=�F�H�đ��H�5���/��H�=��F�H����H�5v�/��H�5��FH�=��&'��H��H�5ێ��H�=dx��[]A\A]�9/��f���H���sN辙��X��	�?����;�u�老������k����q�����:�������k
�c����n��	����e���φ���Z��3��d�E��d�a#
��A�w���蒶��	�x�
�S�N���d��?�������`�{�	��N����
�	������"Q�M�����e���nY蹧���$����zo��H�5chEH�=_�H�����H�����������t
1�������€�@��@E‰€���E‰ƒ�@@�ǀE‰€ʀ��E��f����X�fD��H�G H�@H�D�ff.���H�H�@ H�@H�D�ff.���H�G �xRH�H�Ѓ��f.���H�G H�@ ���H�H�@ H�@ ���USH��H��Hcw0HcW4Hw(��`��HcK4H9�~6H�����H��xH��C0)‰S4�ZI���H��H��[]�f.�H�C01�H��H��[]�ff.����H���s����H��HD�H���f���H�WH�w�?�}_��ff.�f���H�WH�w�?�]_��ff.�f���H��(H�H�OdH�%(H�D$1��GH��H�=d�RH�L$�D$�$�V��H�L$dH3%(uH��(��J��fD��SH��PH�H�OdH�%(H�D$H1�H�wHcC4�S���}Hc{0H{(H�D$(H�D$ H�|$ H�=�H�t$0H��H�L$8�$H�D$�D$�}U��H��xHcK4H��H9�LH�C0H)ȐH�L$HdH3%(u<H��P[�f.�H�t$H�=����H��$H�L$�$U����f�)�C01��S4��J��ff.�@���H��H�=���T��ff.����H��H�=���T��ff.����WH�w�?�R��ff.�ATE1�US�jH��~!H��Hc�I��H9�$HcsDHs<��B��kD)kHL��[]A\�f�Lc�L����fDATI��USH�/H��� ukH����H�{<thHcSHLcCLH�*H��I9���HcsDH�{<H��H9���)��I�t$�CD�KHI�$ tI�t$H�[H��]H�A\�2B��f�H�{<H�ou�H�{`�tYH�CDH�����aHc�H9�}Hc�H���CL��]X��H�C<�W���@I)�H�L���A���KH�CLH�{<)��`�����C%���% ���H��EH�5O�H�81��P��ff.�@��AUATUSH��H��dH�%(H�D$1�I���Df.��S��uJ�TE���8I��u=�������L��$�f�D$�6�����t6H�SH�s�;�'��H��H��x�H�L$dH3%(H��uH��[]A\A]ÐA�$���qG���AUATA��USH��H��Hc��H����H�*I��H��Hc�H����H��H���+9��H�sXH���$��������A�4<���D)≓�uǃ�H��H��[]A\A]�fD��������9�~�H���Hc�Hc�H��@���fDH����#��H��I�E�q���@��u���ff.�SH��H�xH��t
�nO��H�CxH���H��t�eU��Hǃ�[��SH�����H���H��t�&O��Hǃ�ǃ�[�ff.�@���H�=��K��ff.�UH��SH��H����R��H)�H=wH��[]�DH��H��H��[]��K���UH��SH���A��A��H��u��u<E��u��?t���]H��[]�f.���?uj���]H��[]�E��u�H��t>�ztH�)�EH�5*�H�81��M��H�׉t$�d6���t$��t���f.��t$�G���t$H���H�߭EH�5�H�81��VM��fD��H���SN��H��H��ff.����H���?�Q��H��H��f.�SH��H�xH��t
�~M��H�CxH���H��t�eM��Hǃ��C�����C�P��H�C`H��H�CX�ChH�Cp[���DATUSH��H�7dH�%(H�D$1��� uUH��H�oH����K��L�dH�T$H��H��L����
�����|t0H�L$dH3%(H��u5H��[]A\�@H�oH�_�fDHc|$H)�H�H��� ��H����{C��ff.�AWAVE��AUI��ATI��UH��SH��H����H��E1��O��H9�tXH����H9���H��t1H��t+A��u����I�,$I�]H��[]A\A]A^A_�A��A	�E���HE�I�$I�EH��[]A\A]A^A_�f.����H���O��H9�tA��f����(��H���_���H��A����H���ff.���H����.:��H�@H��Ð��UH��SH��H��H�t$H�����uH�G H�@(H��H��[]�DH�|$�(��H�|$H��� t)H�H�k ����t)H�E(H��H��[]����H�k ����u��2��H�E(H��H��[]�D��H��H�:�Q����UH��SH����<��H��H���r��H��H��[]�ff.�����R���H��H��H��H��H��t=I��������H��I9�A�I�r2H��H��H�4�H��H�����fDH��������H9�vאH���x&������g2���U1�SH��H��dH�%(H�D$1�H��t;H�=w�FH��tR1�I�����H��H�5^�F��	��H�$1�H��4t	H��������C��	ЈCH�D$dH3%(u"H��[]Ð�H�=���.��H��F��A@�����H�5��FSH��H��tH��1�1��0��H��[��H�=
���-��H��H���F��ff.���H�5��FSH��H��tL1�1�H������H��4tH�����u(H���EE1�H��H��H�;H�=d���L�1��ZV��H��[�D�H�=���O-��H��H�-�F���UH��SH��A
H��H�������u4H�����t,H���u�� t%H�x
uH�closed sH�@H9t+H����%��H����H��
u�H�closed sH��H9uՁxtreaùxmu�H��H��[]��SH��H��dH�%(H��$�1�H���s9����x0�D$%�=���H��$�dH3%(��uH�Ġ[�H��H�=����R���[>��ff.���H�H�w����ff.�ATI��UH��S���O;��I�T$ H��H��H�z��[]A\�N��D��H��H�WH�w�?����H���ff.�@��SH��H��H�T$H�|$�U��H�D$H��t1�1�H�=є�J��H�D$H�H��[�ff.����U��SH��H��H�F H��H�h�"��H�C �xP�tH9huH���[]ÿ4�{��ff.���H;5�FtL�N I�AH��I�AI�A�ff.�f���H�O H��1�H�yH�H��H�APH)���X���H�H�B H�H�@H�@H�p H���ff.�f�AVAUATUSH�H�����t��t'H��[]H�A\A]A^��1�[]A\A]A^�D�H��t�I��H��A��I���D��H��H����I�$E��uvA��	���.A������A�����!A� A����H���w ��H�E�� ��L�mI9��-H�EB�D(��P���fDA����tgL��H����?tX��?I��H�_H��� ��L�mA�� u�I��A��I9���H�E�@�A�A��t�EE��t@�A��I�����A�A��t�~ZA��t	A��u��	A��h����A���A��}�A��
tֻA�A���9����|���@A���k���멐H��[]A\A]A^�:��M��I��H��H����@��L��H�}L)�H�E tH�}L�1����H�E ��������f.�H��I�݃�I��말�A������H��H��UE�X�'��H�P H�H�BH�BH�B H���ff.�@��SH��H�?�>��H�{�w>��H�{ �n>��H�{(�e>��H�{H[�[>��ff.���AUI��ATI��USH��H��H�-j�FH���D����tI�$H��[]A\A]�H���S��H��I���d��L��H���Y��M��H��H�5��H��H�:�EH�81��A�����H��H�WH�w1��?����H��H����H���OH�WH�w�?��*��H��H��ff.�@��H���� !��H��H��f���H����$��H��H��f���H�OH�WH�w�?��f���H�OH�q���H�7H�����fD��H�OH�WH�w�?�i$��f���H���c�1�H���ff.����H��s����H���&���H���f���S��� ��H�������uH��[�H�=Q�EH��H��[H������&��fD��ATI��U��SH���[����uH��L��[��]A\� ��H���)7��H�=
�H��H��1���:������H��(dH�%(H�D$1��<$H�=^�H�t$H����H�T$dH3%(uH��(��7�����ATI��US��H��dH�%(H��$�1�H�l$@H�EH�l$ H�D$(H�EH�D$0H�D$H�D$8�Q��H�D$������:1�I�$�H�D$@H�D$ H�x�%f.�H��t
Lc�O��L���H��H9�tH�P9��H��t�H��H�H9�u�9���H����H�|$H��ulH�D$XH�} ���H�}0���H�}@���H�}P���H��H��H��H�=�>�V��H��$�dH34%(uyH�İ[]A\���+H��H�D$H�D$H�T$H�D$X�DH�|$�FB���Z�����K;����~
H�t$����H�|$t
H�|$�B�������*!���E5��D��SH��H� ���H�{0���H�{@�
��H�{P����[�ff.�f���AWAVA��AUATI��USH��xdH�%(H�D$h1��
��H������E���fA���tM�<$A����I�A�^�L�|$A����L�l$�/�L�����#��H�|$���L���S��H�D� ���t4Hc�M�|�I�?�I��H�D$H��u�I�?@��t5H���H�|� ���u�A����H�ԙJc�H�>��f.��[3��H����fDL��A�^��D3��H�D$A���F���H�|$1��i���N�H�=��1���*�����D�t$P�t$P1�L�L$PL�D$HH�L$@H�T$8H�t$0H�|$���ZYH����H�@H���H�DH�L$hdH3%(��H��x[]A\A]A^A_�@H�t$ H�|$1�����DH�L$0H�T$(1�H�t$ H�|$����L�D$8H�L$01�H�T$(H�t$ H�|$�x���Z���L�L$@L�D$81�H�L$0H�T$(H�t$ H�|$�K���-���fDH�����H�T$(H�t$ 1�H�|$������DH���(7������1�����W2��H�H�EH�5��H�81��:��H�0�EH�5y�H�81��:���H��@�ǀ��������t������to��tZ��t5��t!H�ښE��H�57�H�81��O:���H��MH���@��H��H���HE�H���H��EH���@H�ֈ��H��FH���H�]�EH�5ƑH�81���9��@����@��@t5��������H�����uX��H�7FH���HD��������u2����@�ǀuoH�q���u��H�\�H�3�HD����t{PH���E��H�5j�H�81��09��H�"���uс�H��H�=�HD��@����H����u���H��H��HD���H���@���k�����H�LH�]"HD��fD������t+H������0�����H���H���HD��H�n���������H��CH�O�HD��H�]���������H���H�=�HD���PXH���D��H�F�EH�5חH�81���7��ff.�f���H��H��1�H�����H�=�����H��tH���HD�H���f��,���H�����H���f�H�xt	��AVAUATUSD�ghH�G`H�OpA����H��thL�hH�GXL�pH����D��L��L���� ��H�ExH��tL���HDž�M󉵐Hc���L>��H���[]A\A]A^�@L�5}TM���L��D��L���^
��H���&��fDUH��SH��H��H�?tN�y��H��� t!H�PH9�}$H��H�;H)��B��H��1�[]ÐH����H9�|�H���|��H��1�[]�1��
��H�H���[]�f.�ATI��UH��H�SH��H��0H�|$H�|$dH�%(H�D$(1��M���H�|$H�wH� tH�wH�H�T$H�\$H�t$H�5�QL�d$ ����H�D$H��xH�L$(dH3%(uH��0[]A\�I�t$H�=E��A���-��ff.�H��� uH����H9�u
�H�GH9�t�ATA��UH��SH���m��H��H���&��E��u
[]A\��H��H��[]A\����H��u
�f�UH��SH��H��H�5�F���H��t�U��������H�����uMH�5�FH����UH��t��������H�����u#����tH��[]�fD���U뫃��U��H���EH�5��H�81��p4��H��EH�5��H�81��X4��H�ɔEH�5Z�H�81��@4��H���EH�5��H�81��(4��H���EH�5*�H�81��4��ATI��UH��SH�� dH�%(H�D$1�H��EH�H�D$��t.~:H�H�^H�D$H��ujI�$H������tGH��f�H�H�t$H��uZI�$H�����H�]H�D$dH3%(ulH�� []A\�f.�H���H*��H����H�|$�&��H�D$��H�����H�t$H��u�H�H�D$�^����H�������*��f���ATUH��SH9�tQI���"��I�D$ H�] �o�oHK�oP S �oX0H�{ [0�o`@c@H�@PH�CP����H�C H��[]A\����AV�.AUATI��U��SH���dH�%(H��$�1�H�\$PH���H�H�D$H�D$0H�D$H�D$8H�D$H�D$@H�D$ H�D$H�(D��H�D$(���W����1�M�4$M�l$L�t$L�l$��$H�D$H�D$ H��t4H�|$(�#6���(�I�T$H�T$��t�I�T$H�T$ ���#H��u�H�|$L�t$PL�l$XH����@����H�H�|$`H�|$ H����@����H�H�|$hH�=V�H��H�̃H���T��H��$�H�@H���H�D?H��$�dH34%(��H���[]A\A]A^�D��'��H���h���H�D$`����H�|$ H���a���H�D$h�����e���f��.����~+H�D$(���@��,���z���fD�'��H���)���H�|$(t
H�|$(��4������������'��ATA��UH��S�Q%�����t1ۃ�Ut��[]A\�@H�}�������t�H�uE��t
H��D������H�=i��,���f�AUL�oHATUH��SH��dH�%(H�D$1�I���f.�1�L���f�����tJ�E$������L��$�f�D$�����x�1�H�L$dH3%(��u%H��[]A\A]�H��~H�E8�h$����E,����&��ff.��AWAVM��AUATA��UH��SH��HH�T$H�L$dH�%(H�D$81�H�D$ H�D$�} M����H�T$H�t$L�����H��H��tIyGL�mHD��L���~�����u���#��I�Nj��tu��&��M��H���H�
A~�E,HI�H�U8H�L$8dH3%(H����H��H[]A\A]A^A_�1Ҿ��Hc؅��T���L��D����������} E��uΉ|$ H�|$�������f�D$$���Hc���E��u+H�T$H�t$���H������@H��}H�E@�J���H�D$H�t$�|$ ��H�=I���D$$H�D$(H�D$H�D$0�M0��H�����DH�4}H�E8A��E,���%%��DAWAVAUATUSL��$���H��H�$L9�u�H��XdH�%(H��$H@1�H�GH��H�D$H��?H�D$8H�GH�D$0H�����D$$�G(��H�D$I��H��H��?H�D$(H�D$@H�D$�M���|$8���|$(�ML��I���?�=�D$$���L�t$0H�T$H��1�M���Z���I��H����I�L�t$0H�CHH�$L��E1�H�D$��{$H�t$H��H4$��7��I��H��xA�H�Ls0H)�tyIc�H�$��DH�t$1�������u��+!�����u<H��������y�H��$H@dH3%(��H��X@[]A\A]A^A_��H�
ր�C,H�K8E��x�L��L)�H�|$LI�����H�T$I�����H��1��Z���I��H���������f��@���fD�D$$�V����k ��H�t$01���{ H���C���D$$H�D$0����H�������E�D$$���
���H��zH�C8�D$$�C,����"��ff.���AWAVAUATUSH��H��(dH�%(H�D$1��Gh%�=�t4H���4���@1�H�T$dH3%(��H��([]A\A]A^A_�H�GL���H�oH�D$H��xOH��yL��H)�L�t$I�D@D�S$�{ E1�I��1�L���*��I��H��~RH)�HC0H���r�����E1�H��y��#��1����{ H�����H����L��E1�H)����*���1�H�sH�������w��������I�ǃ�&�G�H��L��uP��u"���,H��������9�������@�{$1���L$�M7���L$����������Ch%�=������L�kH�kL���L�l$H����L�t$�s �{$H��M��x.L�����I��M��~-L)�Lc0H���D����s �{$H��M��y�1����I��M����!���1�H�sH�v�����u���������������&�����tTH�Yx�C,D��H�S8����������fDM��xkL��L)��I���A�H�x�K,H�C8E�����������H���X�������������U���;���H�
�w�S,A��H�K8�f.����1����{ H������H��xL��H)�����U��t�H�
xw�S,H�K8�3����a���SH�����H���+��H��E1�1�1�H��[�L*��ff.��H��1�1����@UH��SH��H���9��H�S H��1�I��L�{�H��H�zP1��l��ZYH��4tH�C �@QH��[]�DAWAVAUI��ATUH��SH��H��L�fXM���<�+��I9��.������PD�chL�{Xǃ�L�spD����D$M������*��H�S`I9��eH���H�zH�T$�~-��H�T$H��I����A����L���H��L�rD����<��H���D�chH�KpL��L��A���D�����H���H���2H���H���-H������H���2��H���A�EH�����H���=��A�EH��[]A\A]A^A_�fD�C
����H��Ch�������H��[]A\A]A^A_��H����Z���H�{`H�����`&��H��H���L���H���H��H���f���H��[]A\A]A^A_ÐH��������H�5�B�T$L��ǃ�Hǃ�H������H���H���&Hǃ��C�u	����H���H������Ch�u_�D$L���Hǃ����Hǃ�����H�SX����L�cX�(��I9�����H�{X��DA����L���H�zL�5BD���M�����H�������@H���#���xt:H���#��H�5s|H�PH���EH�81��&$��L��D��L����H���p��H��������u��l���H�5�A�T$H���|��H���D��@��H�G H�x(H��tH��t���@��f.�1�1�������H�>��AWAVI��AUATM��USH��hH�t$H�T$H�L$dH�%(H�D$X1�M����A�(A��A���:L���
��H����H�XL)�I��E���I����M����I��*��H��t!L�T$ L���+L��L�����B�D< I��L���� ��A��M��tA�,$E���fD���f��I��H��t�;-���{���H�L$H�T$A��H��L�����H�D$XdH3%(�GH��h[]A\A]A^A_�A�����M��tA�,$H�|$L��1�E1�H�5�z����x����H�5�L���t�������@I���H�5ˁI��L���L��u������DH�|$L��1����H�5Qz��������H��������xd��u	D9���������<��H�����@L��1����I���G���fDE1�1�����fDE1�A�����������fDH�|$H��H�5�y1�1����������ff.�AWAVI��AUI��ATUSH��H��(�ohdH�%(H�D$1�H����H���JH���J��I��H��tH���	 ���xI��H�$�HL�����H�L$H��E1�1�H�����H�D$H�L$H�$H�{���N��H�$�khH��H�CXH�D$H�C`H�D$H�Cp���H�D$dH3%(�FH��([]A\A]A^A_�fDI��H�����L��H�D$���H����H��� t>H�x��L������H�T$H�$H9�����H�t$L���"&�����9���H����H��u�H���8-u�H�D$1�H�D$H�$�@H�L$H��E1�1�1����H�D$���fDH���(���������I�|$I�$ tI�|$H�L$H��E1�L������S���@L�����H�$H9D$�8���H�D$�*���H�@�H����j��f.���H��H�OH�WH�wH�?����H���f.���SH��H����t �+��H�S H�H�BH�B�[�fD������f���SH�@��t����H�S H�H�BH�B[�D���H�S H�H�BH�B[�1�H9=�FtEH9=�F�t7H9=�FtNH9=ϪFt=H;=��F�tH��@��u�X��H������c��H���fD��f���f.���ATUSL�gM���H���H�=��g��H��������"�؃����$H���*���AH�{�h��H��H���=��H�5g��H�����I�t$H��unA�T$����H�5�lH��1����[H��]H�5�A\�h���H�����u�H����H���s���H��}EH�8�h���DH�����A�D$��y��	H�5�{H������f�[]A\�'����H�5�{H�������W����H�	uEH�8���H�1zEH�8����H��vEH�8�����H��zEH�8�����H�yEH�8������USH���@�E��x,9�v(1�����)�����t%D����-�E��9�w�H��[]�f�����8	��C������U1����SH���H)�����tX�‰Ã����N�9�uH��[]��1��ھ���)����t��7���8����ډ�H�=}tH��1��������8�_����H�=&tH��1����ff.����S�������[�l��ff.����U��1�SH����)���Å�x��~��E��t~"H����[]�f����y��H����[]�1�����B(�����t����u���O��-��E��R���8�����H�=�sH��1�������H��H�H� uH���W�wH���:��H��H��H�@��f.�AUATUSH��H�$H��1ҾH�=�idH�%(H��$1������Ņ���H����H�����I��H����L�$H��H��	�f.�H�XL��H)�H��	~x�
H���3��H��tf�;FDSiu�f�{zeu΀{:u��H�{�
1����H���[���f�H��$dH3%(��uH��[]A\A]�D��D��������g�����ATA��US9�t1��~
��E��u(��D������x������[]A\�f�����@��n'�����u��r
���8&u����E��D�������D��UH��SH�����E��tI������tH����[]���
���8&u��X�EH���<������+��Å�x��}����}����H����[]�ff.������EAT��A��U��S��tW�1��k%���Ã��t��~N��[]A\���{���8u�1�1�D����8%�����t����E���D1�1��%���Å�x����*���[]A\�����'��f���H���wH�W�?��t1���$��H��H��D����&��H��H��f.���PXH�5�fH��H��wEH�81�����ff.���@��u&H�����tH��ƒ���t��uH����H��������H��t�PH��tEH�5@fH�81��]��ff.�f���SH����C��x[��%��DUSH��H�����CH��t�C t
H��[]�fD��
�����sHH�ŋ{��Hc����H��xH�CDH��[]Ð�E��t�u��K �ff.���S����H�XH���Z��H�{`t#H�{XH��t
[�D��@�K��[H���2��f��[�f�AUATUSH��H�H��u
H��[]A\A]�f�H��H���U��L�`L�����H���q��M�d$XI��M����M9�t�H���c��=t<H��sEH;u|L��1�1�����H�5�H��H���2!��H�]H��[]A\A]�H��� t8H�{�`���A�|$u�L���m���H�����[��I���s�����u��'���I�MH��tEH�5"nI�T$H�81��S��AWI��AVI��AUATUH��S��H��8dH�%(H�D$(1�H�D$�	&��H�D$ A������~Q�C�H�M�$�A����I������h<��A�$�����X<��L�d$I����H�T$ ����/L�d$L�mH�ML����L�����H��L���%��L��L������H�D$(dH3%(��H��8[]A\A]A^A_�������~M���}L�d$H�T$ �GH�|$�6��H�|$I���i;��E���M;����M��LD�L�d$H�T$ ��xdL�d$1�����9�~��9�MH���,���H�|$ ��������S�Hc�I�<�H��u���;��L�d$�������I��H�D$���H�|$ t
H�|$ ����1��������	����:����AWI��AVAUATI��U��SH��H��8dH�%(H�D$(1�A��uH�����t
�����tBH�[�F��H��H�=�F����H�L$(dH3%(�GH��8[]A\A]A^A_��H�4$H�D$�#��L�$H�D$ ��A��t:��������H�=��1�L�$���L�$M�(L�t$H�D$ �<@L�$�����~k��L�$��L�t$H�D$ M�(���+f�A�H���1H���I��H�hH������L��L��L��H����H������@�
H�D$ H��t
H�|$ �&�������5��DD�m�Ic�I����\9��H������P9��������B9��H�D$H����H�|$L�$���H�L$L�$I��H����9��E���uD�����M���LD�L�|$H�D$ ���M����G���L�t$����M�(�������t
M��M��M�`����������fDH�|$ �6�����������H�|$ ������H�����H�=�H�E1��
��L�t$H�D$ L�m�g����"��f�M���y����O���D�m�Ic�I�<�����H��u%���+8��L�t$I��u(H�D$ M�(M�`����L�$�w��L�$H�D$���H�|$L�$�;��H�L$L�$I��H���!8���>8��M� H�D$ L�t$M����������7��ff.���UH��SH������H�XH�����CH�����u
�CH��H��[]�@%�����CH��H��[]�ff.���SH�_H���/��C[%��H����ff.����S�f��H�XH�����H�{`H��uH�{X�CtH��t"[����@H��u�����H����f��[�f���S���H�XH�����HcS���tH�D[�fD��AVAUI��ATI��US��H��0dH�%(H�D$(1����H�D$���B���I�m����A�H�\$H���L�t$������H�t$1�Hc����L��I���P��L�`L������A�T$H��H�=���l$�T$L�l$���H�Ã���[�����������?H�D$�u"H�����tH��у�����f�H�L$(dH3%(Hc�H�D�	H��0[]A\A]A^��M�u������H�|$t
H�|$����������������@�	����~�H�D$I�mA���u3H�\$H�������H���M���������y
������@M�u��~��o���f��� tH�HH�PH�D��8u�����H��H�H����H�%lEH�5�eH�81����I�t$H�=�j������fD��AVAUI��ATI��U��SH��0dH�%(H�D$(1��C��H�D$���"����I�$����A�L�d$L�t$����H�H�t$�H������L��I�����H�hH�����UL��H�=;��H�\$�T$L�t$ �H
�����4H�T$��uH�����tH�
�΃�����@H�L$(dH3%(H�H�D�H��0[]A\A]A^�M�t$���;���H�|$t
H�|$�����������H������H��������k����~�H�D$I�$A���u#L�d$H������L���-�������M�t$��~��o������ tH�rH�JH�T��:u�����H��H�r����H�jEH�5~cH�81��	��H�uH�=�h�|��������AVAUI��ATI��U��SH��dH�%(H�D$1��3��H�$���#����I�$����E1����H�H��L���$��H�XH�����C�t�{H���_������Q�t�K4���!2����D��H����{I�����H��xxH�@H���H�DH�L$dH3%(��H��[]A\A]A^��M�t$����L���"�A����4���H�����H���*���fDA�U��t�H�sH�=%g�����[����~[H�$I�$��u:H������A�H��E1�� ����������x���f�H������3���M�t$��u
H��u��R���H�<$tH�����������������H��eEH�5gWH�81��o��ff.�@��S�v��H�XH���
��C[H��=H��?���f.���S�F��H�XH������{���[��H�H�Ѓ��@��SH�_H�����HcC[H�D�@����H�}W��VfD����H�]W��F��fD��H��H�G H�xH�����t���H��H�����fD�;��H��H�����ff.�@��H��H�G H�xH�����t����H��H������fD����H��H������ff.�@��H�����@��USH��H��H�oH���7��H�EPH��HE�H��H��[]�f���H�G H�xH�����t�V��PH��cEH�5(H�81����ff.�f���AVAUI��ATI��U��SH��`dH�%(H�D$X1�H�D$H�D$@H�D$H�D$HH�D$H�D$P�%��H�D$ ���<����1�I�$H�\$��,H�D$H�D$H��t<H�|$ �+	���0f�I�T$H�T$��t�I�T$H�T$���<H��uĀ�t$���H�������������H;A�Ft7H;0�Ft.H;�Ft%H;�FtH;��FtH;�F��fDL��E1���H���]
��H�hH������H�|$H��t@����H�I��H�|$E1�H��t@����H�I��H;��F��H;��F�H;��F�#H;j�F� H;U�F��H;@�F��H�L$XdH3%(��MH��`[]A\A]A^�@�[��I���]����K��H;�FI���p�����E�D$ ����H�t$ L�d$(H�=�����D$$�UL�l$0���I�ƅ��s�����&�j���H�uH�=ASI��1�L��L�����D��H������fD�3����~]H�D$ ����	�u�����h���fD��X�����N�����D���H�H�5�RH�81����H�|$ t
H�|$ ����������H�pbEH��H�5lRH�81��D����ff.�@��SH�����H9�tH�@H��t�P��yH�[H���b��C��x1�[���[�f���AUATE1�USH��H��H�����A���l��H9�t&H����
��H�hH���c��H��t
D�mE����H���
��H�XH���=��H��t�k��yH���[]A\A]Ð1����������t$�ƒ�D9�t҃���D	��1�������t�H�sH�=�_�
��f�1��D��������t-�ƒ�D9��]�����D��D	��1�������>���H�uH�=d_���ff.�@��USH��H���N��H9�t H���	��H�hH���E��H��t�}��yIH���	��H�XH���%��H��t�{��x1���
�����t6�t)H���[]��1����
�����t�u�H��1�[]�H�sH�=�^���H�uH�=w^����f���UH��SH����H�����H�XH�����CH�����t���CH��H��[]�fD��CH��H��[]����S�6��H�����H�XH���2��C[H��<H��?���f���AWH�O AVAUATUSH��xL�?H�oH�|$L�gdH�%(H�T$h1�H�L$ H�OH�$I����A���I������I��ƒ�����E1�1�H�l$I�_L���D$(M��A����H����H9���H��H�<����H�����L�xL���P��A�H�t$ ����A�OH��uA�����tH�D$A��D$(H�pP����A�GA9�DL�I�EH���� u�I;m}
I�E �@H�D$ H�l$M��D��H�D$0�D$(���I���:A���I������I�$��������H�L$H�l$E1���I�\$H��0H�L$�XDH����I9�}\H��J�<����H���H��H�����L�hL���D��A�}H�t$����A�E9�L�I�$I���� u�M;t$}	I�D$ �f���H�l$H����@���1H������$H�E�������H�L$E1�I��L�d$@L��L�|$HA��H��@H�L$H�MH�L$8�@H����H9���H�D$8H�<�����H��H���g��H��I������L�xL���`��A�H�t$���A�GA9�DL�L9�t+L�����H�hH���.��}H�t$����EA9�DL�I�EH���� �f���I;]}I�E �l����L�d$@L�|$HL��D��zL�$H�L$H�T$H�t$0������ �T$(H�$	�������H�|$0H�$������H�<$H����
��H�|$�����H�<$H���
��H�|$�u���H�<$H���
��H�|$0��H�$H�H�T$(�� �H��H�1�H�D$(H�D$H��PH�D$0�pDH����H9�}pH��L�����H��I���.��H���6��L�pL������A�~H�t$ ������uA�~H�t$0������t
H�|$(L����	��H��I��� u�I�GH9�|�H�|$��H�$H�H�T$�� �SH��L�hH�D$1�H��0H�D$�af�H����H9�}_H��L���9��H��I���n��H�����H���n��L�pL�����A�~H�t$�������H��I�$�� u�I�D$H9�|�H�|$��H�$H�H�T$�� ��H��H�@H�\$E1�H�D$H��@�fDH����I9���L��H�����H��I�����I��H���O��L��I�����H�@H��H�D$�C��H�D$H�ދx�S������M9�t(L���~��L�pL�����A�~H���&������I��H�E�� �]���H�EI9��`���H�T$hdH3%(H�$�2H��x[]A\A]A^A_�f�H�D$XH�D$PH�D$PH�$I������H�D$H���y���H�D$���f.�L��L������d���H�|$L������@���fD�D$(1�H�D$0�Q���H�$H�@ ��H�$H�@ ���H�$H�@ �C���1��ɷ��Z���@1�蹷����@1�詷��W����H���w��L���j��L���]��1�����Q����UH��SH��H�_H�����H��H��uH�CPH�SP�H��HD�H��[]�H���8��H����USH��H�G H�hH��WEH9(tH��@��tH�����H�C �@P�H��[]�fDH�����tڋE����uϾH���_���ff.�f���H�W H���zPt�zQt	��H��H�|$�b���H�D$H�P �BQH�����SH�����Ct�CH��u[�@H��[�w�H��TEH�5H�81���ff.�@��AUATI��UH��SH��H��8dH�%(H�D$(1���u
H�������H�����H��@����H�L��H�l$����H���:��L�`L������L������A�D$H�߉$���I��H��� tsI�EH�D$I�EA�T$H��H�D$H�=�����E��H��H����L��H������H�@H�xoH�D-H�L$(dH3%(uuH��8[]A\A]��I�UH��H�T$���fD���������@�������H�����H������H���h���I�t$H�="S��������AUATUH��SH��H��(dH�%(H�D$1���u
H�������H�����H��H���w��H�����H�hH���s��H���k��E4�����H��踺�I��H��� t]I�MI�E�UH��H�=h���H�L$H�D$�$���I��H��xQL��H���s��K�D$H�L$dH3%(uAH��([]A\A]�H��I�M���������8����>���H�uH�=�Q���x�����������u�GH�f����GH��t�@�鈱�����G�v1���t�@H������H���DAUA��ATA��UH��SH��(dH�%(H�D$1�H�����H��H�$���1�H��D�l$H�����H�=���D�d$�G��y+���D�(D���3��u?H��D��H�=jR��D��A���n��H�L$dH3%(D��u3H��([]A\A]�1�H�����H��H�=}������A�ą�x����*����#����S��x=�������t!��Ut1���t[��#��[�@���1��[��E���DSH��H������uH��[�fDH�߉D$����D$H��[�f.�AUATUSH��H��8dH�%(H�D$(1�H�<��D�kHE��uoL�d$H�-3�����H���x�������HcCLH�K<L��H��S�D$H�L$�T$H�D$ ���H��x�H�D$uxH�CDA�������E1�H�t$(dH34%(D����H��8[]A\A]�H�{`H�GD��t8�CL��r��H�C<�1���f�H������H�D$�CD�CH늋C%��H�H�� ��H�����% ������sH�="AD� 1��q��H�sH��H��tH�����H��D��H�=WP�*�����DAW��AVAUATUSH��H��HD������dH�%(H�D$81��t$A9���H���E���Hc��A�9���L�D$(HcSHIc�L�t$0L�D$�S@H�{x����I��H����D9��������HcSHIc���������H���Lc[DL�{<Lc�Hc�I�H�{xD�L$L�M�H�t$N�,L��L�L�|$(L�l$0����H�{x��H�D$(L)�CD)CHH�D$0L)��������C���HcsDHc�H�{x�D$H)։�Hs<����D$)CDCH�����ǃ�1��������,���H��H�D$���H������L�\$��xHcSHHc�����H�{xH��toHc��E1�1�L��Hc��H���L�\$H�Hc��H�L�1�H�l$0���H�D$0H�{xH)����3��D9��L�\$tDA�H�L$8dH3%(L��uCH��H[]A\A]A^A_�H��Ic�H�4���D������1�ǃ�H��������o��ff.�@AWAVAUATUSH��H��8H�T$dH�%(H�D$(1�H�`�E1�L�t$H�|$A��L��1��Ӷ��1�H��A�������5@L��H��E1�肝��1�H�����H��H��t
H���fH��t'�����t�E��t�H�|$1�������@H��� ���E����L�|$E��u=H�sXH��t]L���\��H�L$(dH3%(L���,H��8[]A\A]A^A_�fDI�7�� ��I�wL���U���H�sXL�|$H��u��r��H���D�G
����L�wXI��M���|M�� H�|$�D$$LD�E1�1�L��蘵���D$H�D$$H�D$�DL��H�|$H��H��H)����H��H	���H�H�|$H������|$$0t)H�D$H� uVH�xH�4/H�L$L�L����I�L�|$I9�c� L��I�� �M��SH���r���H���j���e���DH�xH�4/�fDH�|$1��D���h���H�|$1��3��L�|$�D$��tI��� uiH����H��L�����L�|$H�sXH��t2L����I�HcL$$H%���H	�I��!���DH�����O����׺�H�����ͺ�I���w���I�w뛋����tE��uL��H�����H���-��H�|$1��������4��@H����"���H��tH��uH���H������f�AVAUATUSH��H��dH�%(H�D$1�H�`�VH�kXH����1�H��H�$跲���Hc����t=Hc��H���H��H�H�H����A�ă�������9���{H���0���I��H��u������teHc��H��H����2������I��H�$��I�$0H�L$dH3%(L���#H��[]A\A]A^�H���`�����fD�H���H��A� �O���A��L�$$�NH�sXH���4L���|��I�$H%���L	�I�$�w���fD�G
�����H���������&L�c<LckD�}O�4,��HcsHL��H��L�L����Hc{DH{<A�Ņ��9CH����0�0��CD�kHI��H�$H�sXH����L���̽�I�$H%���H	�I�$����fD���H�����Hc��Hc��H��A�0H���H�H�H��G��H��H�߉�����L�$$����H�����L�$$�Y���軷�H������}�����H����������I�D$I�$ tI�D$�=�M�I���I�� �f���������HcsH�%���CHH�$� H��H�z��H�4H���Q�����H���@��������H�<$HcsD�Hs<���H�$�CD�kHH��� t�H�zH�rH��H�������0���A����#����L���聻�CDI��H�$�kH�L���蘶�H���L���A��&���Hc� �H��DkDI��H�$D)kH����L�$$�0������� �0L�$$HN����H��DEH�5�6H�81��U������AWAVAUATUH��SH��8dH�%(H��$(1�H�`�ML�eXM����A�D$1�H��L�l$�D$�y���f�Lc��L��M��tdHc��H���|$I��ui�?
���S�H��H��8�f�H���?
u
��)��D$H9�u�)�1�H���蜕��Lc��L��M��u�H������H���{���1��m�I�L��L��L��迦�
t �I�L��L��L��L��蟦�
u
HcD$I�M9�w�M)�1�H��D��D�|$)������s����H��$(dH3%(��H��8[]A\A]A^A_�H�\$ �G
�����f�HcUHH��u!H���o��H������4���HcUHH��t�HcED�HE<H��HF�8
�v������
�H���8
u'��u�H��H���7���H��u�H�uH�=�C�B��f�Hc�H��H)�H������H���f�����@���I���������ff.���AWAVAUATI��USH��8H�_H�odH�%(H�D$(1�L�/�CH����I��E1�H���&fDK�|=H��L��耑��H��~L��I�H)�H����I��H���>��H���f��y�L)�I�l$�4H�L$(dH3%(��H��8[]A\A]A^A_�f�H����H�D$I��H�D$H�$H�D$M�|�fDyFH�����tR�SH�4$H�=T����D$L�|$�T$L�t$ �Y��H��u��]����L��HD$H)�H��~I���H������5���@L)�H��&���D1��������@��S��x=���`����t!��Ut1���t[����[�@�����[��%���DUH�-x���SH��H������S4��5�Qf��{�H��tVH��������t9�{���t^H�����C4��~H���H��uËSH��H���E��u�H��1�[]��H���H��H�5�����
����H�������[]�@��SH���3��CtK�C4��u6H�{PH��u[��s��H�XH�����H��������y�1��t��@H�������y���H�c?EH�5�1H�81��
��f.���SH���#�����u[�H�(?EH�5�:H�81�����ff.�@���w�����SH�� H�t$dH�%(H�D$1����H�XH���A��H���9��H�|$@����@��udH��H���H��t$������t@��t�����t!��t8��
t3H�|$���H�|$H���L���H�T$dH3%(�unH�� [Ð��;H�ǨuO�Z��H�|$��D$�w��H��H�D$�DH������t���H��t�H���e����t�����+������@��AVI��AUI��ATA��USH��@dH�%(H�D$81��R��H�D$����A���LI�I�nA���H�D$H�|$�����PH�H��H�t$ @���#H�H�|$H�l$(�1���H�|$ A��H�D$��H� � H��L��H�D$����H�XH���s��H���k��CH�߉D$�\��H�|$���H�L$H��>EH�t$H�=����u��H��H����H�|$D��H���ɨ��H��uH�|$ ��H�D$H�L$8dH3%(��H��@[]A\A]A^�f�I�FH�D$A�����H�|$t
H�|$�;���D���I��f�H�����H�t$ H������H���p��H������H�@�����H�|$�����p��������A���:����o���H�sH�=i;�l���������f���AVAUI��ATI��U��SH��0dH�%(H�D$(1��#��H�D$�������GI�$���H�D$H�|$�H���/H�L�d$H��L������A��H����L������H�hH���|��H���t��EH���2�}�q��H���Y��L��H���Υ���EH�|$�D$�D$H�GH� tH�GH�T$H�5݉��H�D$H�\$ �N��I��H����H�|$D��H��袦��M��u	H����H�L$(dH3%(H�D$��H��0[]A\A]A^�fDI�D$H�D$�����H�|$t
H�|$�������"��f�H�����H������H�|$��������������y����H�uH�=n9���������H��9EH�5,H�81��_��ff.�@��UH��SH��莺���H���N��H�XH�����f��CH��)H���Ѿ�CH��tZH�������y�H��H��[]�@HcSDH�K<���CH�r�sDH�<H���H�����������H���h���fD�K��H���S��H��H��E1�[1�1�H��]���ff.���S1�H��H�5+H�=+胱��螹�u*H�=3cFH��t.���H��1�1�H��[�Y��f�H��[�����H�=�*�	�O��H��H��bF���S���H�XH��蚼�H��������u�CH��t	1�[�DH���p��H������y�[�ff.�f�AWI��AVAUATUH��SH��H��hH�|$0H�ωT$@dH�%(H�D$X1����H��H��?I��u����H�sXH�t$H����H�28EH�t$0H92u���IH�|$�\H�D$0H���H��� ��H����H�D$ �oH�D$0�D$DH��H�D$8H�D$ H�t$8H��D�l����D$@�(A��
��D$LA�
H�D$ �D$D�D$(A����D$KDH�{`�e1�H���Ӡ���8�L��H��L�����D��D)��L)���H���s�H���ID���E��t�Hc��Mc�H��H��~L9�}Lc�M��H��L��D��H�L$詚�H�L$H����I���q���L��H���V��I���l���fD�1�H����I��H��� tnI�|$�����
�L$@����I�����C��H��t}H�T$1�1��]��I��H�t$XdH34%(L���"	H��h[]A\A]A^A_�@�����fDH�D$0H�@H�D$ H����H�D$0�D$DH�@H�D$8����試�H�D$�t���H�{`������C
�����H�|$�H�D$�x�����H�|$�e���A�H�D$T�D$T1�H�D$M��H�D$�DH���H����1D�cHE���0Lc[DL[<IcԾ
L��L�\$ ��L�\$ H��I���;�t$@L)�A��D�`���%A��A��~A�~�
u
D�P�A�E�,,Mc�E)�I���
Ic�L��L�T$(D�L$ �|��I� I�GD�L$ L�T$(tI�GHc�H��L��D�L$ H��k���D�L$ DKDD)KHA����A������t�����|$T0t7Ic�I� ��I�GH�H�l$H�L$H�T$H�<(����H�H�l$M����D�cHD��E�������H���·����D�C%�D$�����D�l$��H�������LcsHL��M����HcKDHK<I��H��~I9�LO��t$L��L���b��I��L)�H��M��LE�I����I�$�� unH����I��K�4.L�����L��I�|$I�$ tI�|$H�L��H��L)�����M����H�����CH���;���H���˶��.���fDM�l$�f�L�����L��H��I�����1��~���H���Ȅ���D$I���FH�sXH���L�����D$���K����)���D�l$I�$H��% ��H��I�t$H����D�<E9���H���SH��I�t$��H�,H�|$H�U�H���B��D�t$(E���H�T$H��H��������A���D�t$(����H)�D�pMc�I���DL��H��L���N��D��L)�D)��A�����I�$E��H��% H����H����H;L$ �!���I�D$H�D$H�I��H�t$L+t$ H�|$L���r��I9���H�|$0t�|$K��H�T$ H�t$8L�����D$���H�������I�$H��% H�������f.�I�t$I�l$H����fDI�L$H;L$ �p���I�D$H�D$H��J���fDI�t$I�T$H��D�<E9��H���1����DL��H���-��I�����DD�l$���fDA�����DH�t$0H��� ��H��H�V��H9T$8��H9D$ ���H�O,EH�5�!H�81����fD�D$A����>����D$D�3���H�����&���fD�D$@A������D$DH�D$ �D$LH�D$8�,����{��H�D$����H�D$0H�t$8H;p�F���H�@�J����D$L���H����H�D$�@�D$D�����H�=p`���H�|$I�����1�L��H���#��H�D$0�uGH�t$0H�H�����t9�ƒ���t/H�€�H�~H��%H��uI��H���v��L��H��� uKH�t$0H���D$D��H��H�D$ H�t$8����H��.EL��H�0�"^�����X��H������H�D$0�D$DH�pH�@H�t$8H�D$ ���H�|$�"��D$L����H�h_A�
H�D$ H�D$8H�D$0����T$@L��������H�D$I9�v�D$LtA�~�
u
L��H��H��H+t$L��蟿�����E��E1����H�����L��L���\��DcDI��D)cH�H���I�GH��]����k��xH�D$���H�CXH�D$�f���I�GI� tI�G�u�Hc��<0
�����L��M�����H�CXH��tJH��L��螣�I�$HcT$TH%���H	�I�$�C����M��I��u���������D$�?����ʝ���AWA��AVI��AUATI��H��UH��SH������H�XH��肰�H��D��L��L��D�k��H��tHcSA9�tH�
[FH�I H9itH�QH��[]A\A]A^A_�f.�D)�Hc�HQH�QH�QH��[]A\A]A^A_�ff.�@SH��H��H��0dH�%(H�D$(1�H���͸���T$H�t$H��H�|$������H�L$(dH3%(uH��0[��h�����S���H��H���˵�H��[�fD��S�v���H��H��諵�H��tH��[��ۿ�ff.�ATUSH�tEH��I���z��H���DH��H���u���SH�sL��H�{���^���H��u�H��[]A\�H��,EH�5j&H�81��(�����UH��H��SH��8dH�%(H�D$(1�H��H��襷��H��H���Z���H�L$(dH3%(uH��8[]��N��ff.���H�7�$���@��ATI��U��SH��H��0dH�%(H�D$(1��ת�tkL��H��H�ى��#���H�t$H��u�y�H���H��H�t$�T$H�|$H�ك��N���H��u�H�L$(dH3%(H��u2H��0[]A\�@�ÿ�H������H��E1�L���H�����H����n��H�_+EH�58%H�81�����fD��AT1�I��UH��H�5�S��H�=��ۡ����u*H�=�SFH��t6�Q��H���L��[H��]A\魩�DL��H���[]A\����H�=*�	蟯�H��H�-SF���USH��H����H���(��H������SH�sH�{H�������H��H��uп��H���[]�f.���ATUSH��H�t$����H�XH���~��H�����H�t$H����@����H�kXH����H���ȗ�H���莃�H�D$H�{`��H�(�� ��H������H��A���ˑ��Hc��Hc����)�H�H9���Hc��H���H��H9���H�t$D)�Aԉ��D���H� ��H��H�H��H�边�H���[]A\�H��@��uH�����t�����
��H�|$�v��H�{`H�D$�(����C
����H��H���v����H�hH���������H��&EH�5=H�81��O���H�v�T����H)�H�H��
������H���)�����ۗ�H�t$H���n���fDH�kXH��t�J��H������H�D$�]���fD蛗�H�|$H���Ґ��USH������H�XH���e��H���͵�H�k`H��t�CH��t-H��H��H��[]���@H�kXH��u��:��H�ŋCH��u�H�������fD��H�����H��tH����s����USH��H���>��H�hH���ҩ�H���:��H���t荛�EH��H��[]��[��EH��H��[]�ff.���S����H�XH���z��H�����HcC[H�D����AWAVAUATUH��SH��dH�%(H�D$1��ƥ���H�����H�XH�����H��肴�CH����H�{`A��r1�H��謎��@Hc����tKHc��H���H�SXI��H�<H����H�H����A�ă�������9���^H�����H��u�H���v��E���H��H�T$dH3%(�@H��[]A\A]A^A_�H��A��?��H�{`�>�����A��E�D)��D���H�|?����0������L�kX��Hc��H���Hc��I��H�<M��t�H�1�H�L�����D�������fD蓹�H�����E1�1�1�H��H���Y�������C
�����L�kXM���I��f.�H�����������HcCDHcsHL��H�{<H�H�H��c��A�ą�~<�CHA9��HcSDH�{<Hc�L��H�H�H�1��6��DcDD)cH��H�|?�"��됃����}�A��A����DcHA��~M���#f�Hc�A)�I�E��~H��������xVIc�H��L���q�����L��L��L��趧�~2L��L��1�L��袈��H�|?��������l��I�����L�kXH�$EI�UH�5��H�81��t��H��!EH�5�H�81��\���׺����S1�H��H�51H�=:�c����~��u*H�=#LFH��t.����H��1�1�H��[�9��f�H��[�W����H�=���/��H��H��KF���ATI��US���L��ty����H�XH���h��H���а�H�k`H��t?�CH��uH���H���fDH���h��H��H������H��u�L��[]A\��H�kXH��u����H���D[]A\�W������S1�H��H�5/H�=3�C����^��u*H�=�JFH��t.���H��1�1�H��[���f�H��[�����H�=��	���H��H��JF�SH���w����xH���k���膶��H��[�1����@��ATUH��S@��tH��H�H�����H�hH������@��H���I�����1�H�ދx���H��xH�@H�x>[H�D]A\�@A�$��t�H�uH�=e����H���ȷ�H���w���[H��]A\���@��ATUH��S����H�XH���t��蟵�H���I�����1�1��x�r��H��x=H��MFH�@ H9huHcSH)PH�{x�CtH���^q��[�]A\�@A�$��t�H�sH�=��8���AUA��ATUH��SH��@��tzH��H�H���,��H�hH�������H���I���:���D��H�ދx輩�H��xH���[]A\A]��A�$��t�H�uH�=�����H���x��H���|�����AUATI��UH��S��H��dH�%(H�D$1��U��H�$��tY����L�m��u01�L��L������H�L$dH3%(��H��[]A\A]�@H�m��uWH���נ������K���~?H�$L�m��u"H��t��H�����1҃�u���H�m��uH��u��H�<$tH����������������USH�����H�hH���5��H������1��x�>��H��H��x&HcEHH)�H�@H�x0H��H�D[]�@�����t�H�uH�=R���DH��H��[]�B��f�UH��SH���wHc_H�dH�%(H��$�1�H�����u�D$%�=�t)H�� H��$�dH3%(H��u@H�Ĩ[]�f�H���X����x-�}�1��U��H�T$0H9�|�H�H)�H��HI���״�1��{���AUI��ATI��U��SH��(dH�%(H�D$1����H�D$���t��������H�D$H�|$��H������OH�H����H��H�|$���L��A������H�hH���g��H���_��H���6�EH���H�|$H��H��1��9���H�|$D��H��H���ֆ���H��tH�D$H�L$dH3%(�H��([]A\A]��I�$���$���I�D$H�D$������H�|$t
H�|$�>��1����P��H�|$�&��H�������L������H�XH��舞�H�����H�l$H�����H��H��H�������I�������������~���fDH���`��H������H���(������H�|$D��1����H�D$��H��EH��H�5ZH�81��,��觲����H�WH�w�?���ff.�f���S覰�H�����H�XH��袝�H�������x�SH��H�=�y���D��x�[�1���x�H�sH�=����f���USH���A��H��H�����H�XH���:��H���B����x4�SH��H�=y���ܼ�uH���[]�@H��H��[]�:���1��sx�AWAVI��AUI��ATE��UH��SH��H��8dH�%(H�D$(1����L��M���JH�{(H����E���\�K4Hc�Hcs8J�*H9���H�l$I��L��E1�H�$�T�L��H�56f�����H9���H���I�H)��t����{薘��H���&��M9���H���K�&H�l$H�D$H��u�L����e���f�E����H�C0�� �C8 �Y��H�C(�о�H���H���H�{(�K4H������Hc�Hcs0H�Ѕ�t1������C0H�L��L��菩�Dk4L��H�L$(dH3%(��H��8[]A\A]A^A_�D�C���������H������H������D�C�uQH�C0�� �C8 胿�H�C(��H���H�����C� ����B������3���HcS4H������@H���HcC4H�{(�����N��ff.�AUA��ATI��USH��dH�%(H�D$1�H�T$�D$�>���H�ŋD$��t@��t]H���}�H�H��� ��H��H�p��L��E��H������H��H��I���_��L��H�L$dH3%(uaH��[]A\A]ÐH�����t�H�E�ƒ���t�H�€�H�}H�U�w������n���H��胷��a���fDH�pH�P�p����F��fDATA��USH��H��dH�%(H�D$1��M��H��H���ҭ�H��H�����H���}H��� teH�{�����u4H���|��H�hH�����H�����D��H��H���z���H��xaH�TH�t$dH34%(H��uDH��[]A\�@������DI��H��H�$H�RCFH�=?F��y�H����T��H�uH�=����@���WH�wH�?���ff.�f�AWI��AVAUATUSH��h�t$dH�%(H��$X1�H�(���W4H�\$(�TIco0I�O(Hc�E1�I���1�H�L�H�,1�H��H�l$(词�H�T$(H)�AW4A�W4��t:��v5����IcG89�u�L����������A�W4IcG8�f.��D$�����H��$XdH3%(��H��h[]A\A]A^A_�fDH�D$(L�d$PH�D$I��$H�\$0H�D$H�-h`��I���L�D$1�1�H�L$E1�L�d$(�֌�A��L9d$(u,A���b���A���X���A��t�f���W���fDM���YH�D$(A�WH��H��L�t$8L)�T$0H�D$@�s��H�T$(L)�H9�t�A�H��I�LI����t^A�w����I���H��t��!�H��t�A�WH�D$(1�H��H�=�_��L�t$8L)�T$0H�����H�D$@�J�����T$��������O��HcH�D���f�I�������p�����L$���X���H�=�Н�H��H�^EH�8�Έ��:���脪�@���wH�?�Q����AWAVAUA��ATUH��SH��H��8D�wL�?dH�%(H�D$(1��GH����D$�mH���@��u	H����D��H�����I�ċE4��tE����H���]���E�E����H�E��EH��t@�[��H9u��E�uA��FI����A��������A����H�]L��藆�H�=���H��薵�fDI����M��t<E���P1�H�����L��H�=xd�����y���t�覦�Lc O�d$�@1��D$D�t$��D	��D���r��J������B���E����H�D$(dH3%(�H��8[]A\A]A^A_�DA����DA��uI�����tA�$����
tmDL���h���H�T$H�5�H�l$�D$�R��U4I�ą��c���H�����I���Q������I���襥�Lc O�d$�7���H�]L�����H�=��H���+��L��蓱�����1�H�t$H�����H�=9c��脈��&����������?��Lc �O�d$����踧��H�G H��t��DS1�H���%���H�{<H��t
藶�H�C<H�{(H��t
聶�H�C(H��[� a��USH��H��(dH�%(H�D$1�H��H�l$H�,$�f��H9�tH�xH��t�G��yYH�[H��t�{��xAH���9��u%1�H���K���H�L$dH3%(H��u,H��([]ÐH��1�H���c����̐1���@������跦����SH��dH�%(H�D$1��2���H��t
H�Ë@��u#H�L$dH3%(�u+H��[���;��{H�t$1�茴��C��>��ff.���ATI��US�P��H��H��起�H�XH�����{��xAH�s�)g����uE�C��!��tfI9�tL���}��H�XH��豕�H�CPH�����[�]A\���{��#n�x3�C�ƒ�S�u�[H��]A\鴓�H�EEH�5nH�81����H�sH�=��ܹ�ff.����UH��SH��H�_H�����C��xH���X��H���[]�ff.����S�G(H���u �u,H�s8H��uFH�S@H��u%�[�H�?����C(�t�H�{�w�����H�V
EH�5u�H�81��-��{,�o�D��USH��dH�%(H�D$1��!���H��tH���Ě�H���\�ŋC��u#H�L$dH3%(�u0H��[]����1ҋ{����H�t$�g���C����f���AUATUH��SH��蚵�H�XH���Γ�{����H�s�
e������H����I��H9�u"�C��"����H��H��[]A\A]�ё�H���8��L�hL���l��C1�H��A�E�CL�mH�CPI�\$���H���[]A\A]��{1���k�x#�C�ƒ�S��|���H���[]A\A]�H�sH�=T
菷�H��	EH�5!H�81��w���U����H��AWAVI��AUATSH��x�}�Hc�H�U�dH�%(H�M�1ɉ�x�����?��H��H��H�E�H�GH��H���H)�H��H9�tH��H��$�H9�u�%���HcU�H�\$H�����H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�|$I���H�E�L�cE1�H��p����)H��H��I�$��I�T$I��I��D9m��*K�<��q��H��p���H�u��E�H���ǂ���U���t@�u<H�����t4H��փ���t'H��H��H�xH�0t���Jf.�H����o�K��H��� �X���H�PI�$H�P�V����H��������1�H��H��H��H��H9��H���H��H�}�H��H��H��H���q�HcU�H�Ã��x���H��������H9���H�4�H�}��q�M�I�Dž�������軵�x�����������M�H�CE1�Q�H��H�T(fDL H��H9�u�H�E�H�P(H��t?H�u�HcF4����HcN0Hcv8D�Mc�K�<H9���H�H�CH��l��@uRH�@0�� I���@8 詯�I�E(� ��I���H����I�U(H���p�����E�H����x���HDžp���H�E�H��h���H�E�H���H����H�E�H��h���H�5T����x���H�]��E��=��H���~H�}�H�p���H��p���H�(t�W4��tHc�H9��X)�G0�W4L;�p���u#�f�H�CH)�H����x�����H�SH9�}�HH)�H�S�<���L�m�A�}�Y����L�����H�E�H���H���$���H�E�H��h���H�=�T��H�]��P��x����U��E��k������H�E��@4H�M�D�A4DH�}�uk�E���~+D�h�1��
f.�H��I�4�I�<���H�CI9�u�H�}�u@H�M�dH3%(L���&H�e�[A\A]A^A_]�E1�H�}�t�H�}�蕪��H�}�自��DH)�p���H�M�H�A0����H)�H�L��+�����x����&����E�H�K��H��H�\(�H��I�H9������H�H��t�H�E�H�q�L��L��p���H��x���Hx(�f��H��x���L��p���H���薂�fDH��H��h����!��H��h������E1����I���������H���T���Ϝ�ff.�@AWAVI��AUA��H��ATUSH���Ԛ�H��H���t�H����H���'��H�hH��軇�H��賣�E����A�E�1�A��D$�K�H�>A����1�9\$H����H�����H����L��H�|D��>I��A9�~/Hc�I�4�Et�E��A)�A����H��D������A�H��L��[]A\A]A^A_�@H��1FM��D��H��H��H�=�.F[]A\A]A^A_�h�H�uH�=k���ff.���H�Ѓ�t����H�61�H����ff.���ATI��UH��S�ݬ�H�XH���q��H���i��H��L��[H��E1�]1�A\�b�f���H��H��0F�H�t$L�D$H��H�=�/F�Sg�H���ff.���SH��胳�H��[�ff.���SH���#��H��H���X��[Ð��AUATI��USH��dH�%(H�D$1�����~TH��H�6A��H��1��#@H���DH�0H��tL����H�3H��L������D9�|�H�JEH�0H��u!H�L$dH3%(�u6H��[]A\A]ÐL��訲���fD�k��H��A�H��H�$�j�������H��H�I�DH���q�H���ff.�@AVA��AUATI��H�e/FUH��S��~H��苨�t&H�G/F[M��D��H��H�=N-F]A\A]A^�e�f�H��DH;(���q�H�������@����@�����������H����@����H�u�#@��u1H�����t(H�������t%HE�H��҃��.fDH�=�1�躏�A�F�L��I��M�l�H��H�s�H���8��L9�u�Ic�I�D�[]A\A]A^�f�H������k���H��tEH���\���H��EH�0�Q���H�n�DH�0�B���H���DH�0�3���H���DH�0�$���H��DH�0����H���DH�0����f.���SH��蓚��H��[H��釰����UH��SH��H��dH�%(H�D$1���uH�����t
�����tXH���u@�k��H�|$�D$�t�H��H�����H��H�L$dH3%(u.H��[]��Kt��f�1��H��豂�H���������SH��H���DH�t$L�I9�tSH��&FH��t'L�D$�L��H�=S&F�>c�H��[���H�=�����L�H��H�r&F�L������H��[�f���AWI��AVAUATUSH��XdH�%(H�D$H1�H�H�D$H�GH�D$ 襌�H�|$I�G0I�GHH�-,FH9��@���JH�5{'FH�����5���]H�|$�n�H���AH�D$H��茧�H�XH��� ��H�����D�cI�WP�D��蓐���H��+FH�|$ E�g H9��@��u
H������OH�5�&FH����蚠���H�|$ �xm�H���vH�|$ @��uH�����t������|H�D$ H�D$(�m��H�t$0H�D$8�H�D$ H�D$0H�	�DH�D$@mH��HX�A�O(H��H�D$ I�G�
f�H�������������������������������H��*FH�|$ A�����1�E�g H9�����I�A�G$����xqI�t.A�G ���hH���DE1�1�1�L��H�=L�1����H�L$HdH3%(���H��X[]A\A]A^A_�@A�����1��W���H����D�sHE����1�A�����I�GIc�H�L$H����H�L$H�$H9���H�<$�j��H�4$I��H�����I�~I� tI�~H�4$H����I��H����I��� �iH��I�v��E1�H��L����H���1�L��荙�H�D$IG0I�GH����H+D$I�G�f��H�=j��߀�H�|$H��H�X$F�������>���fDH�����H�D$ H���s��H�hH���~�H����D�m�I���D���w���oE�o$H���N��I��8H���и�����I��)���E��xSE��xN1�H�����L��H�=�o����r�����fD�������������������@I�����A�W �������I������H��DH�5��H�81��f��fD�H�=*���H�|$ H��H�#F�<���H�D$�uH�������H�T$H�T$(H���Ѣ�H�t$0�H�D$8H�D$H�D$0H�m�DH��T�A�O(H�D$I��_���H�������D�sHE��������K���DH��I�G8萎�A�G,����DI�VI�v���H�$�4����������?������DH�D$H�$����f.����H��H�D$ I�G����f.�H�|$ L���S��1�L���ɖ�H�D$IG0I�GH������H+D$I�G����`��H�!�DH�50�H�81��Ș�1��W���AWAVAUATUSH���@H��8dH�%(H�D$(1���L�c�S H��L�kL�5�%FL�����H�T$H�T$�f�M���wI��@�@�C IN�I�υ����@H�����H�UH�E tH�UL��H�޿M���h���H��H��I��HI�谕�M�����,K�T=M��LI�H�{H���	����H�HC0I)�L95%F��H�CH���=����C A�@���S���K�L?L�D$H�3L��H�L$H�=�F�H�l$�Q[�L95�$Fu�H���y���fDH�T$(dH3%(��H��8[]A\A]A^A_�H�E�� u'�������]����DH���؍��5���H�}����fD1�H��薔��H�;L���i��uL�5$FH�C�D�������+��ff.���H����w(��uH���DH�8H��车�H���H�>��1��y�ff.�@����tHSH���tH�����3��H��H���h��[ÐH�����t؋����u�H��DH��ɐ��f.���@��uH�����t
�����t#H�$#FH��E1�1�H�=�!F�Y��USH���U��H��H��躞�H�XH���Nx�C�u�u+H��H��[]�f�H���8�����x�C���H��� ����1��S������B���f���ATUS�C��H�XH����w�H����x�CH����H�����H#CH�H9�t/H���Ϣ����x{HcCD�kH�P�SDH�S<[]�A\H�D�H�-��DH�}@��u�H�����t������u�话�L�`L���Cw�A�D$t�H�}����H���(w��_���[�]A\�fDAUATUSH��H���^��H�hH����v�}��u2H��1��@��H�XH����v�H�C`H��H��[]A\A]�fD��H���Nu�I��H��t�H=���vGH=�toH=�u'H���u�H��tH=���H��H����l�f�L��H����l��f���H��u�H����t�H��H��t�H���?H��H���l���f�H���t�H��t�H=�u�H�߽�]��L�`L����u��@H���t�I��H���s���H=wtL��H���Pl��[���H���Pt�H��t�H=��H��H���#l��ƐH���(t�H��H��u#H���t�H��tH����H��H����k�H��H�߽��k�H��褛�L�`L���8u���!h�H��H���|��H��H�����H��L��H���8q��H��H��[]A\A]�f.�H���s�I��H�������H=�tGL��H���Xk����H�߽���L�`L���t��m���H����L�`L���t��T���H���$s�H��t�H=�t
H��H���j��H�߽輚�L�`L���Pt�����ff.���ATUH��S萚�H�XH���$t�CtHH�{`uYL�cXM��t
�)��I9�u^H�����H��tH�{X[]A\���f.�[�]A\�H���DH�5��H�81���H�o�DH�5[�H�81����H�CXH�5a�H�PH�H�DH�81��Ɛ�fD��H���r�H��tH��������U1�H���SH���_���B���t$��tH��[]Ð����߉�1����t�H�uH�=���I��f���H�=�DH��1�H�����H�8�1�����S�6��H�XH����r�H��DH��1�H�����[H�8�^���ff.���H��toS�GH��H�G��yLHǃ�H�{<H��t
�;��H�C<H�{(H��t
�%��H�C(H����@��H��[���@��>���@����H��tH���n����H���@1��ff.�f���UH��SH��HcWLHcG8Hc��H�xH���H�H��t�{4H�H���H��t�g4H�H��H��[]�f.���UH��SH���ޗ�H�XH���rq�H�{xH��t�T�H���H��t��S�������C�����CH��H��[]���SH��H�?耄�SH�sH�;[� ����USH��H���^��H�hH����p�H���A��H��H��[]���SH����R�H��軃�H9�tH����R�H��[�f���ATI��US�H�_��r���w������at1H�3�DL��H�5U�H�81�觍��<xuڀ�wuՁ����t"H��<b��t<+u(�����u�fD��%=t���[]A\�<:u��:H���/~�H��tzH)�H��~ɺH�5��H���}X�����D��fD<t�`������d���D���W�������E���fD��5���fDH���g��|�������1�����t
H�����ƒ�@��E‰€���E‰€ʀ@��@E‰€���E��ff.�@��H���^�H�����6�����AUATI��US��H��HdH�%(H�D$81�H��H�D$L�l$H�l$ L�l$(H�D$0�ܝ�H�D$������]1�I�$H�$��$H�D$H�D$H��t4H�|$����(�I�D$H�D$��t�I�D$H�D$����H��u�H�l$H�<$E1��(��H�|$H�$H��uaH�|$��H��t�k��H�l$H�<$��r��D��H��H�$裗��H�L$8dH3%(H�H�D��H��H[]A\A]�DH�5���I�H��t>H�Ǩt'�j_�A���y���f�����~?H�T$���D�#u�A���R���L���pq�L���i�H����U�A���/���H�|$t
H�|$趎������m������AWAVAUATUSH��dH�%(H�D$1�H��u(1�H�L$dH3%(��H��[]A\A]A^A_�I��H�5FI��H���I���CU�H�5F�4H��H���,U�4H�5�FH��I��H��� �U�H��H��4��I��4A��H��t��Y�H�8�RE����L�����H��H��4�(H��u
��3fDH����W�H�$H��tH���g�8-u�xt�H���É�H9�HD�H��E1�L��L��H���#=�������f�I��4��H�������H���dW�H�$H��tjH���"��H��H���7g�M��L��L��H��H���#e����s���f���S�H��H��4t�H����E1�A�4����f.�H����E1�L��L��H��1��e<�������1�������H���B�x]����]�H�����H���ȱ�H��t.�aX�H�8����H���OB��u��A��1��u���L���p��H��1�����}������AWI��AVAUA�ATM��USH��H��H�t$L�t$h1�H�L$ L��L�D$(E1�dH�%(H�D$x1�H�1�H�D$XH�D$`H��H�D$�p;��H�D$XH�|$X�D$H�D$0H�D$TH�D$8H��uO�D$T1�H���A��toH�5XFH����Q�H��H��tWH�|$X�:H�D$XA�H��t�H�5���D�H����H�D$XH�Ǩ���/q�ʼn��&p�D$T�H�5�FH���qQ�H���7L�l$TH��L���WQ��D�D$TA��t�T$���H�5�FH���1Q�H��tH�L$H��tH�9��H�T$H��D$TA��A��tA��A��A����DE�H�t$L��L��H��D�D$��D�D$��t�D$����H��H�t$pD���<���H�L$hH�T$`��L���7��H�D$XH�L$(I�H�D$ �(�D$T�H�D$`A�\$I�$H�D$hI�D$H�D$pI�D$H�D$xdH3%(��H�Ĉ[]A\A]A^A_�@H���Hd�H�Ǩ����Y�	�Hcʼn�H�DH�D$X�n�D$T���f��Y���W���@H�l$0H����k�H���kc�H��H�D$H�.W�ljD$T�D$D�O/��H�T$H�:��H���u�D�D$DH��I��t~H�|$XH�D$��L�L$L�D$8L��H�T$H��I�y�a���D$�U���@��n��.���fDD�D$0�F��D�D$0L��1�H�T$H���_8������f.�A��ujH�T$L��1�L���88�����D$T�Ã�t�������E�H�D$pL�l$T����H�^�DH�5��H�81��Ճ�D談�D�D$TI���H�2�DH�5�H�81�詃��${�H��DH�5X�H�81�范�ff.����AWAVAUI��ATUH��S��H��hdH�%(H�D$X1�H�D$(�8��H�D$0A�ą�tP��~$���H�=|F1��~�I�EH�D$�Qf�tH�|$0t
H�|$0�<������Kf��3��������cI�EH�D$���GH�|$0L�d$(H�D$ �H�|$�-R�H���!H�D$H�D$0H�|$�<��H��H�D$菋�H�]H���rH�|$ u
I����H�|$ H�L$L��1�L�L$0L�D$(�n�C�|$(�t����!� foD$0�C�{H�|$CXfoL$@H�{Kh���;�C��L�#�|$H�CDM�����$G��H�{I����l�H�D$(H�xH� tH�xL��L����H���H�;�f=�C���<{�H��DH�;H;8�IH�b�DH;8�YH�L$XdH3%(H����H��h[]A\A]A^A_��������*1��
���D�{�Ic�I�D���ª�H�����������������H�D$(H������H�|$(��G�L�t$(H��M�����E���
D��E1������H�ҹHD�H�T$(���t��������hL�t$�������M�uL�d$(H�D$0L�t$ ���P���H������H�|$0苄����fDH���������O����p��H�{��蘌���s��A���;D���D���+A����fD����aF�H��H�E�s���D�{�8*��H�|$�D$�CH�{�������t$���"���H��C�:���H�|$0�ƃ�H�|$�O�H�����H���zp�H��I�����H�XH���b�L���k��L�`L���a�L9������C�t|H�
u�DH�H;�aH�
�DH;tH�
��DH;uQA�|$@��uF�!E���{H���E��H�SH� �H��H��H�?�DI��H�5-�H�81��~�H�ߨ����A�T$E1��������_�CI�L$D�{I�t$ %	�A�T$�C�SA�T$�SA�T$H��������H�KH�s A9�tv���A����H�;H���x�T$�"�T$H�D���C�������&B���D���f�D�{D���*�M��xA�D$�)�C���L��膏�H�E��Q���H������E���H��H���b��5���fDH�D$(H�D$0H�D$(�dr�0������H�SH�='���f.��;r�D��D�(�p>�E������H�SD��H�=���Ā�@1�� ���E�������զ�f��{�A������H�;1�� ��E��{���颦��蓚��������1���:�@H�s A9�����D������@��PD���	~�����u�H�C�+���D�{�Ic�I�|����>���H��u���6��H�|$(uhI�EH�D$����ah�H�D$(�?���L��������\���A�T$���H���%r��B���L���H����1��x��e�A�T$I���M���H�|$(��B�L�t$(H��M���'����@A�|$@����������@�p�H���I���ڹ��1�L���x�]e�H��yA���uAA�L��貹��1�L���x�5e�H�������A����x���I�t$H�=���0��H�sH�=��� ��I�UH�T$���M������������������H�|$0���1��H����U�H�=->H�1���u�H�H�D$����9r�H�R�������ff.���ATUH��S���[�H��t	[]A\�@�ko�D� D���M�u1�D���B<�f�H�����[�H��u���ff.�@��SH���a�K[�ff.�f����3����UH��SH�����Å�x0��tH����[]��}�`{�}�X{�H����[]���n�8��L�t�H��蠄���ff.����AWAVAUI��ATUH��S��H��dH�%(H�D$x1��D$H�D$�M��H�D$ A�ƅ��I�����S�Hc�H�D����H������[�������M��H�D$H����H�|$�T$�@�T$L�|$I�ĉ�M���ڣ�E������M��LD�L�d$�����H�D$ ���@A�H�D$�H��t-H�|$ ��|��!���H�D$L�d$A�H�|$H�k���HcD$HL�t$`H�l$L�l$`H��L��H�=k1��H�D$pH�DH�D$h�cE�L$I�Ņ��JH���,��H�XH���Z�H�D$H��H�t$ H�=Y��H�\$ L�|$(H�D$0L�d$8�E�T$���HcD$LL��H��H�=�0��H�D$pH�DH�D$h��D�I�ƋD$����L��覀�H�hH���:Z�H����0�H�t$L���5B���D$�t
I���+	CL��L��	E�i�H���V���H�L$xdH3%(H����H�Ĉ[]A\A]A^A_�f��Kt��������L�}H�D$ L�d$���*���H�MH�L$���"�����H�|$ tH�|$ �L$��z�L$�1����Y��H�=��DH��H�L$PH��5��L�l$PL�t$X�k1�H���1���H�D$ u�L�d$����S�Hc�H�|�H��uO������H�D$����L���;�L���:�D$���H�L$ L�}H��A���� ����E����T$�b�T$H�D$�������+���1��
4�|$H��6�|$L��6�|$�_��|$L��6�L���.-���|$�E��|$L�6�I��tL���.[�|$�%����l�H�D$�˃�L�}���������������s����{��f���AUA��ATI��US��H���-tE�[��D9�AL�9�L�9�~�eD�C9�L��9�|QI��tHc�L��H�t6�sd�H�����u�1����荂��tȨu�����߉�1��q����H��[]A\A]�ff.�f���ATA��USH��dH�%(H�D$1�H��� ��H��H��H�oH��������������I�H��1�H��t<�A�D$��tJHc�H�C�L�D$H�H�tH��L��H��H�|�s5�A9�����H�T$dH3%(u<H��[]A\Ð�D�D9�������H��H�_H�o�����q����@��g����)k�f���AUATUH��SH��(dH�%(H�D$1��������G�H��I��L�d��3����tu�
H�������td�L��H���'��H��L9�txH��uH�����t
�����tH��H��H�=x�3B�H��u�H�;�6j�H�$H��� t�H�xu�H���D�H�H�D$�DH���DH��H�0��H�L$dH3%(�uH��([]A\A]��j���AUATUH��SH��dH�%(H�D$1������rQ�I��1�I��tT1�I���,H����H9�}<I�EH��H��L��H��H�$�<�I�E�� u�I;]}
I�E ����H�L$dH3%(u?H��[]A\A]���H�=#�?�H��H��H�$�K<���/i�ff.�@��UI��SH��H�-��DH�uH9�tSH�,�E��H��tH����H�=�E[]�Q5�H�=D�L�D$�V�H�uL�D$H��H��E�DH��H��L��[]�;�ff.�@��SH�� dH�%(H�D$1��\�H���*h�H���DH�$H���DH�;H�H�D$@��u	H�����u&H�����H�D$dH3%(uHH�� [������u�H�wH��tH��EH�=��E�2>�H�;��t�H��H��������g�@��AUATUSH��D�'L�oE��~-A�D$�L��I�l�f�H�;H���4z�H9�u�A��tQ�A��~Ic�L���Sj�H��H��DH�8@��uH�����t
�����tH��H��[]A\A]��I�]���Ma���ff.���SH���DH��EH9t H�@�@��x�D�H�;[H����@H��DH��[�H��w���SH���I�H��[H����.����SH�� H�|$H�t$dH�%(H�D$1�H�&�DH�8H�t�EH9�t'H�@�@��x�'�H�D$dH3%(uTH�� [ÐH�i�DH�H��� t.H�^H�~H�ھ��v�H9�s�H�D$H�D$H�D$�H��H�~�����e�ff.���H���DH��EH9tH�@�@��x1��H��H���DH�8�*�H������2�f.���H�H��t�SH����t��$���[3���{H���w�H�[�ff.���SH�����!H������������H�{tH���US�H�{���H�C���X����H�H�PH�@H�@H�@ H�@(H�@0H�@8H�@@H�@HH�@PH�@XH�@`�@hH�@pH�@xHǀ�Hǀ�ǀ�Hǀ�Hǀ�Hǀ�Hǀ�Hǀ�H�C[þH���!9�AWI��AVE��AUA��ATI��UL��SH��A�pI��L$I�HH�|$�J��L����o�foEL��H�ËD$CXfoM�CKh�S�A��AuH�CH��D��D���x���C���0�u�D$u!H��L��[]A\A]A^A_�@�K0�D$t�L�������AVI��AUI��H��ATUSH��H��@dH�%(H�D$81���=�H�߾:A�ĉD$�\�H��H��tw��z�H�l$H�{H�ML�D$H��H����G���D$ H�D$(�L$������I��L��L���A�����H�T$8dH3%(uZH��@[]A\A]A^�fDA��u2H�l$E��1�H��H�MH������D$ H�D$(�fD��n�D�d$H����Tb�@��UH��SH��(H�|$dH�%(H�D$1�H�D$H�D$�_s�H��H�D$H��DH�8��Y�H��H��H�@H�����H�L$dH3%(uH��([]���a���UH��SH����T�H��H���DH�8�wY�H��H��H�@H��H��[]�+���ff.�AVA���AUI��ATA��H��US�2Y�H�@H��H���_m�D��D�`H��D�p�\.�t�K0M��tL���WT�H���_8�H�CD���k�[H��]A\A]A^����H�U�DATA��A��USH��H�(H��t$�H�=�tH�������t
H���DH�(D���R�H��H��[D��]��A\� ���AWAVAUATE1�USH��H��hdH�%(H��$X1�H��DH�8@��u	H�����uMH�k �UPH�} ����H��tcH��� ��H�GH��~N�f�}PH���q��H�k H�} �������u��q�H�hH���5K�D�eA��A��������f�uPH���D�H�=�sH�H�E�6�H�EH�k H�}(�j�UP����u�EPH��$XdH3%(��H��h[]A\A]A^A_�f.�H����EQ<��Z<u�������H�D$0L�|$ H�D$H��$�H�D$H��� ��H�GH����/�L�|$(H�D$ H���1p�H�S H�D$ H��H��R�L��H�D$ �E�H�|$ I��H��� �|H����H���v1�1��s��H�k �D$H�}(��H� �DH�8@��uH�����t������8�H�T$�t$��Y�H�C H�l$ L�h(I����H���n/�L��H����e�I�MI���� ��H��I�U��H�u�� ��H����H��E1�H��j�ZYH����H�uH�E tH�uL���*v��GH�|$ ���A�r��H�T$���A���ZX�t$HD���S�t$L�T$P;�$�u	;�$�tD���s�t�b��$��zH�-?�DD��L��H�U���I��H���DL�(E����H�U�|$L��L�c �|���I�D$I��tH�C L��H�x�D�L�|$(H�D$ H�C H�x�xR���`n�L�`L����G�H�k H�}0���oE0�oM@L��AD$XAL$h�G��H�k �EQ�UP����fDH�����S���@H�����!���@�EQ��p����H������A�>-�����H�,�DH�C H�:H�x(H�x�?�����f�A�d$h�����o���f�H��� ��H����H��������EQ����#)�H�C H�x��fDL���1�����Y�8�TK�H�t$ H�=0�H��1��^�|$�%%��H�u�v����I�MI�U�K���L����Y��.���H�G�Z����H;=)�E�����NI����f�L��H���8��,����EQ1��b���H��D�|$L��H��Z���H�E����Z�H�|$ L�wH� tL�w�!X�8�jJ�H�t$ H��H�=k�H��1��^�|$�8$�D���0$�L����0�H�k H�} �J�����W�8�J�H�t$ H��H�=ȾH��1���]�|$��#����=��fDAUATI��U��SH��H��H�B L�h�S@��uH���DH���DH�H9��H��L����%���H�S H��up�zQ���H����j��H�C �@QH��������tuH�C H�xH���DH;8u�@��uH�����t������t���L��꾑�j�H��t/H�S I��L�jL�jH��[]A\A]�@�P��a���fDH���[]A\A]���S���H��H���J�H��[�fD��H���EH9�t I���H��H�=��E�W%��SH�����H��H���LJ�H��[����ATI��U��H��SH��������tIH�C L���H�P�N��H�C H�x�%j�H�hH���C�H�C �oEX�oMh@0H@H��[]A\�H�L�DH�5²H�81���`���SH�����H�C H�xH�,�DH;8u'@��uH�����t
�����tH��[��8��D[�B^��f���SH���C���H����h��H�C �xQ�t�@QH�@H��[���SH������H�C [H�@�f���SH����H�C [H��f.���SH�H������H�C [H�����SH�G H���@R���H�C H�xH�D�DH;8u'@��uH�����t
�����tH��[��7��D�k$�H��[�fD��SH���S���H�C H�@����tO�xPtOH���7���H�C H�xH�пDH;8u#@��uH�����t
�����t
H��[�q7�����a�H��u1�[�f��[�f���SH��H��H�t$������t^H�C H�xH�_�DH;8u@��u,H�����t#�����uH�t$�/���H��[�f�H�t$H�ڿ����H��[�H���DH�5��H�81��p^���USH��H���>�����trH�C H�xH�ӾDH;8u.@��uH�����t
�����tH��H��1�1�[]�k��H�GHch�;���H;t�EtH�K H�QH)�H�QH�QH��[]�H�Y�DH�5�H�81���]���ATI��U��H��SH�����tUH�C H�1�DH�@H;u0�uH�����t
�����tH��L��[��]A\����f�[L���H��]A\�ϝ��H�нDH�5��H�81��G]����SH�����tEH�C H�xH���DH;8u+@��uH�����t
�����tH��1�1�[�E��D[�Z���H�[�DH�5+�H�81���\�f���UH�-=�SH��H���7f.�1�1��d�H���}H�S �zQ�tsH���e��H�C �@QH���[��tqH�C H�x@��uH�����t
�����tFH�5�EH��u��H���A�H��H���EH�C H�x�v���fDH��[]�f��K����_����AO���UH�-c�SH��H���7f.�1�1���c�H����H�C �xQ�tsH���;d��H�C �@QH�����tWH�C H�x@��uH�����t
�����tFH�5?�EH��u��H���@�H��H�#�EH�C H�x�v���fD�H��[]�@�<��_���fD��SH�����tOH�C H���DH�@H;u#�uH�����tH�����tH��[�;3��H�����H��t[���[��N�@��UH�--�SH��H���_f.�@��uH�����t�����t\�H�51�EH��td1�1��{b�H��uEH�C �xQ�tsH����b��H�C �@QH���#��tWH�C H�xH���DH;8t��f���H��t�H��[]�f��H���S?�H��H���EH�C H�x�x���@H���[]�ff.����ATI��U��H��SH�����teH�C H�1�DH�@H;u�u<H�����t4H�����u)H�ډ�L������H��H���qB�H��tH��[]A\�H��L��[��]A\����L�f.���I��H�5��EH9�t]S��H��H�/�EH��tH����H�=��E[����H�=U�L�D$�:>�H�5S�EL�D$H��H���E�f�H��L�����D��AWA��AVAUATUSH��H��HH�4$L�d$dH�%(H�D$81�H�B L�h�O�H���DH����H�S L�H�BH�BH���:���H�C ��L�pH�˸DL;0ufA��uI�����tA�����tL@H�5��EH��ttH�$D��L���`�H��H�S H���BQ��3�H�E�� �m���H�E�k���@H�4$L��L��D���vC��L��L���+���H��H�D$�.`��H�t$���	H�=����<�H��H�5�EH�C L�p�d�����@PH��H�L$8dH3%(uH��H[]A\A]A^A_���N�D��I��H�5��EH9�t]S��H��H���EH��tH����H�=-�E[����	H�=^�L�D$�:<�H�5S�EL�D$H��H�D�E�f�H��L������D��AVAUI��ATA��USH��H�� dH�%(H�D$1��h�H�D$���E����E���GA�H�D$H�|$��1�I��tI�m@����H�H�|$t#H�|$�<�H�|$1���S�I�EDH���������H�C H�PH�y�DH;�@��uH�����t������$H��L��D�����H�|$H����H����H���*�I����H�D$E��t<H��� ��H����H9�~$H)�H��Hc�H�DI�E�:����R���H�D$H�L$dH3%(��H�� []A\A]A^�@M�uA�������I�EH�D$A�������H�|$t
H�|$�5Y�1�D���F8�fDH�D$H���4����H�C �xQ��p���H���:]��H�C �@Q���DL��D���M��������H�P�������Q�E��������f���DH�|$�X�����f�H���(K�H�������K�ff.���UH�-�SH��H���g3�u�Q�H���h,��H�������t,H�=}�EH��u�H���39�H��H�a�E���H��H��[]�fDH��H��[]��+��f���S1�H��H�5��H�=���*����2�u*H�=+�EH��t.�9W�H��1�1�H��[�2�f�H��[�'����H�=<���8�H��H���E���UH�-5�SH��H���g2�u�Q�H���h+��H�������t,H�=u�EH��u�H��	�38�H��H�Y�E���H��H��[]�fDH��H��[]��*��f���S1�H��H�5��H�=���)����1�u*H�=#�EH��t.�9V�H��1�1�H��[�1�f�H��[�'����H�=Z��	�7�H��H���E���UH�-բSH��H���g1�u�Q�H���h*��H�������t,H�=m�EH��u�H��	�37�H��H�Q�E���H��H��[]�fDH��H��[]��)��f���S1�H��H�5O�H�='���(����0�u*H�=�EH��t.�9U�H��1�1�H��[�0�f�H��[�'����H�=���	�6�H��H���E���AVL�5�AUI��ATA��USH���_0���H�������tRH�-d�EH��tW��b�H�S H��L��I��L�%��H��H�zPD�����ZYH��4t�H�C H���@Q����u�H��[]A\A]A^�D�	L����5�H��H���E���#E�H���+T�L��D��H��E1�[H��]A\A]A^��R�ff.�@��AT1�I��UH��H�5��S��H�=���K'���f/�u*H�=��EH��t6�S�H���L��[H��]A\�/�DL��H���[]A\����H�=���	�5�H��H�E�E���SH����H�C H� �DH�@H;t[�D�uH�����t
�����t�H��[�'��f���SH���3���tVH�C H�̯DH�@H;u+�uH�����t
�����tH��1�1�[�h���H�XH����1�HcC[H�D�H�j�DH�5��H�81���N�AUI��ATI��UH��S��H���
��L��H�������H��H����W�H�hH���Z1�L�eH��H��[]A\A]����AWAVAUI��H��ATUSH���s?�L9���H��I��L���\=�L���dW�H�XH���0�L���Q�L��H����?�C�oCX%����EX�oKh�E�CMh�E�C�EH�CH��tH�EH�C D�sH�E D���Z_�A�Dž���D���GO�D�}H�������1��x�7�H��H��y\�E��L���BC�I9�uH��L��[]A\A]A^A_�H���	�H�5I�EH��H�EPH����H��L���.
��@�3B�H���腋��1�H�ދx�7�Et��(�B��ljD$�. �u:�|$1�����L���C�L���B�I9��R����b���f.�D���H^�A�Dž������H�=[��1�H��H�}�E�?������AWAVI��AUATI��U��SH��hdH�%(H�D$X1��D$H�D$(�@^�H�D$0�Å�t9�������PH�=�1��"G�M�.H�\$(H�l$0H�D$0�6fD�SI�������,H�\$(H�D$0M�.����H�l$0H�D$ H����H�|$ 1�H�L$I��L�D$H���z7�L��A�����( �ʼn����U���1��9Y�D$����|����L�|$��4�H�|$ ����#D$��(H��tH�5-�EH����H��u�L$L���N�foD$0H�Éh�D$CXfoL$@H�߉CKh�/����{��t�K0L�-(�DI�}��9���L�-��DI�}��9���L�-H�DI�}��9����D$��@H�T$XdH3%(L����H��h[]A\A]A^A_�f�t.H�D$0H��t
H�|$0�N�����-�f���t�H�l$0��H���5��I���$�H�=^
I�E1��D�H�\$(H�D$0M�m�����D�m�Ic�I�ƨ��u�H������tu������fu�H�D$(H����H�|$(��L�|$(H��M����u����D��E1������H�ɸHD�H�L$(H�D$0������������H�\$(����M�.���\�����t
M��M��M�~L�|$ ������H�l$0H���H���H���FM��;����I�EH��D$�f���L��薴���Y�����K3���>���@�D$���D�m�Ic�I�<ƃ������H��u/���ot�H�\$(H��u*I�VH�D$0H�l$0M�.H�T$ ����4�H�D$(���H�|$(�u�L�|$(H��M���^t��}t��������M��H�l$0�Z���H���DH�5ܤH�81��H�H��D�H�t$(H�D$(-H����H���P&�1��)�M�.H�D$0H�\$(M�����������F?���s���AWAVAUATUSH��dH�%(H��$�1�H�z�z�G�A��H��H�ӉD$��vxH�D$(L�d$0H�D$HL�l$8L�t$@L�d$pL�l$xL��$�H��$��,Y�H�D$P�…�t]E����A����H�=k
1��B��Xf.�H�>�6�H���v���H�EH��H��D���L������D$�D�E������T$��H�|$PE1������H�uH�D$xH�t$0A���H��tH�H��$��H��tH�H��$�H��tH�t$HH�0D9���H�l$PH���L�d$PH�|$0��N�H�T$(I��L��H�L$$L�D$HL��H�D$0��1�H�|$@A��H��t�U&�A���L$H�T$$I��H��H�t$0�:��H��H��$�dH3%(��H�Ĩ[]A\A]A^A_�fDt&H�|$PH��t
H�|$P��I��D����(�t�H�l$P��A�H������H���G �H�=�H�E1��E@�H�|$PE1������DHcD$H�D����q�H�������q�0������q�H�D$HH���C���H�|$H�T$��H�t$HI��H����q�T$���{q�D�|$1������M���H�|$PLD�L�D$HE������������I������H�t$0H�D$xA�����H��t��tXH�uH�0H��$�A����H��t��tL�EL�H��$��H����������H���`H�����L���H�4�DH�5ɖH�81��C��v;�HcD$H�|�A���0���H��uA��� p�H�D$H������T$��/�T$H�D$H�����+���ff.�@��ATI��U��H��S��L���H��H������H��[]A\�AWAVAUI��ATUH��S��H��dH�%(H��$�1�H��u~H�D$E1�A��f�H�l$ H�����A��)D$P)D$`)D$p)�$�)�$�L�|$(�\$0H�D$4H�D$<A���oA���
A��t/H�|$�G�D�J�I��H���q���H�H�D$�p���f�L�d$ I�|$�!5�x�M��tHcT$8�H��H�T�qM�H���'H�T$H��H�=�����D$����H�D$(H�|$L��A�PL�D$PH�5���H�H ��"�H��A���:�E���[�؃��������,�|$8A�������l$4H���D�H�8�
1�H�@H��I���:E�H���hH��؃�(�AM���,fAoMIXfAoUQhD�aH�L$E���FH��$�dH34%(L����H�ĸ[]A\A]A^A_�f.�H�|$�VvA�ą������F%�D$0�ƒ����+��L�|$8�#�|$4���eH�`�EA�H�x�A��H�B�EH�x�1���V���@L�d$ I�|$�I3����I�|$�73��lM���%���HcT$<�H��H�T�K���f.�L�d$ I�|$��2������M������HcT$4�H��H�T�9K�����@H���D���փ�(H�8�V/�H�@H��H���C�H�L$H�5_�ED�p�XH�iP�a�H����H��L�����Y�����|$4A��������l$8�����4�|$4���|$8��A�����|$Pt.H�t$P���J�f.��������Ih����H�t$���<M�@�H�=ۑ�w$�H��H���E�I�����|$8�7�|$<�l$4�*�D�t$@�����|$<��|$@���\����|$@��|$<��t1����|$<�����|$4���|$8�����������|$8�����1����|$4�������5�|$<��x��|$@��x�~��|$4��x�q��|$8��x�d��H����6�|$��P��3�|$<��C��|$@�:��H�t$���K�ff.�UH��S��H��H�H�|$�� uHH����H��uH�W�:-�t�H�t$1ɺ�w�H��H����:���H��[]�H�u�H�W�AWE��AVM��AUA��ATA��UH��SH��H��H�9�DH98uH����H��H�D$uAH�߾�,�E��M��D��H�@H��D��H��[H��]A\A]A^A_�g���D���X��H�L$L��D��H��[H��]A\A]A^A_����AVAUI��ATA��UL��SH��H��pH�:H�L$dH�%(H�D$h1�H�D$H�|$H�D$ H�D$(H�D$@�:E�H�T$A��H��H�D$H�ED�eH�]H����H�D$ I�ƹ�mH�D$(mH�\$@H�L$0H�|$0I��H�L$H�t$8H�D$8L�D$��'�H�|$8A��H��t�N�A���L$�T$I��L��L���U���H�EH�D$hdH3%(��H��p[]A\A]A^�H�5��EH���q�H��uH�T$H�D$(H�L$ L�t$�S���f�H������H��H��� umH�{Hc�A��H9��������ujH�S H��H�
�D��H�D$P1�L�L$8L�D$0�3�H�T$H�D$8H�L$0L�t$(^_�����I��I��A���uH�S��H���(	�H� ��������D2�1������@�AWA��AVAUATUH��S��H��xH�T$dH�%(H�D$h1�H�D$0�gL�H�D$PA�ƅ�t7��~���������������f.��{7���[�������AH�D$0H�L$PL�u����A�H���H���)H�����I��H�5�EL����H��u!I������L��HE�H�5��E��H�|$L�D$0L��H������E����H�D$@H����L�D$PI��tNL�D$PH�T$,�D$,L��H�=۪��L�D$H�D$PL�d$X�D$`�o�D$,L�D$����H�D$@H�
�DH��L��H�=E���H�D$PL�t$X�D$`����H�\$hdH3%(�WH��x[]A\A]A^A_�H�L$P�ډ�H���k���H�|$P��<��\�����C�H�H�D����e�H�������e�������e�H�D$0H����H�|$0�k��L�d$0H��M����e�E��� f�ڃ�E1�����H��HD�H�D$PH�L$0H�����Q���H���H���H�D$0��ufM�������M��L�e���"���H�����L�D$PH�D$L���<�H�D$H��������I������@H�|$@�~�������L�u���������t�M���H�L$P���H�D$0L�u���g���M����e����S�Hc�H�|���~bH��u-����d�H�D$0H��u(H�|$PL�uL�e�a����;����@#�H�D$0���H�|$0���L�d$0H��M����d��d�H�D$P��E1��H�����L�D$P��L�����I��H�EI�$��H�=��I�D$1��1�H�D$0H�L$PM�t$����-�1�H�D$0L�u�s���H�|$@��|$,�I�����1�H�=���F1�L�uH�D$0H�L$P�8�������r���f���1��e���D��AWAVAUATI��UH��S��H��dH�%(H��$�1�H�D$8HDŽ$�H��$�H�D$0HDŽ$�HDŽ$�H��$�H�D$@�G�H�D$`A�Dž�t$�������H�=�1��e0���2���c����L�L$`I��E1�A�����H��$��H�p�*�H��tL��D9�tHc�I�<�H�9��H��H9�tH�H9��H��t�H��H�H9�u�H��$�H��tH�L$@H�9���M����L�l$@H�L$0H���M��L������H�D$PH��ttH�T$8H��tPH�T$hH�t$`H�T$,H�=����D$,H�D$`�D$p��D$,�����|$@u�D$@H�D$PH�+�DH��L��H�=y���!��H��$�dH3%(��H�ĸ[]A\A]A^A_��t.L�L$`M��t
H�|$`�8�����)�f���t�H�|$`��E1�����I����H�=�I�1��.�L�L$`A���?���f�D�s�Ic�H�D���ca�H������Wa������Ia�H�D$@H����H�|$@�9��L�l$@D��H��M����a�E���ja�E1�A�����H�ɸ��HD�H�L$@L�L$`�����������I�����H�|$`�7�����D�s�Ic�D�t$H�|����\���H��u����`�H�D$@�Q������B���L�L$`E1�A�����)�H�|$P��|$,�E�ff.���AWAVAUATI��UH��S��H��dH�%(H��$�1�H�D$(H�D$pH�D$xHDŽ$�HDŽ$�H��$�H�D$0��C�H�D$PA�Dž�t+��������H�=�1��,��f.���.���C���hL�L$PI��E1�A�����H�D$p�H�p�-f.�H��tL��D9�tHc�I�<�H�9��H��H9�tH�H9��H��t�H��H�H9�u�H��$�H��tH�L$0H�9���L�l$PM����M�uI�MH�u�{�L������L�|$(H���L�D$0L��L�����H�D$@H��t8L��L���N�H�t$@L��H�t$P�<��H�L$@L��H���DH�=�d�����H��$�dH3%(��H�Ĩ[]A\A]A^A_��t.L�L$PM��t
H�|$P�z4������f���t�L�l$P���L��E1���I����
�H�=F�I�1���*�L�L$PA���\���fDD�s�Ic�H�D���o^�H������c^������U^�H�D$0H����H�|$0��L�l$0D��H��M����^�E���v^�E1�A�����H�ɸ��HD�H�L$0L�L$P�����������I�����L���h3��.���D�s�Ic�D�t$H�|����~���H��u����]�H�D$0�S������D���L�L$PE1�A����S&���AWAVAUATI��UH��S��H��dH�%(H��$�1�H�D$H�D$`H�D$hH�D$pH�D$xH��$�H�D$ �Q@�H�D$@A�Dž�t9��������H�=��1��2)�L�L$@I��E1�A��A��/�c+�A�Ņ��P���gL�L$@I��A��E1�A�����H�D$`�H�p�'@H��tL��D9�tHc�I�<�H�9��H��H9�tH�HA9��H��t�H��H�H9�u�H��$�H��tH�L$ H�A9���M��������L�t$HH�L$PH�uA�}�L���9���L�|$H��D��L�D$ L��H�\$@L���Y�H�D$0H��t8H��L����H�t$0L��H�t$@���H�L$0H��H��DH�=�b������H��$�dH3%(�rH�Ę[]A\A]A^A_�Dt6L�L$@A��M����H�|$@D����0����������� L�L$@��D�k�Ic�H�D����[�H�������[�������[�H�D$ H���(H�|$ �:��L�t$ H��M����[�E����[�E1�A�����H�ɸHD�H�L$ L�L$@E���:���E���1���I�������{ �H���/�E1�H���H��L���@.�����H�|$@��/��)���D�k�Ic�D�,$H�|����N���H��u����Z�H�D$ �)�����������"�H�|$@��E1��a�A�I���#�H�=��I�1��"&�L�L$@A���(���D���t���L�L$@A��E1�A���������ATI��U��SH��H��dH�%(H��$�1�H�D$�D$`H�D$PH�D$XH�D$hH�D$pH�D$xH��$��o<�H�D$0���F���c1�������H�SH�T$���+H����H�;H�\$0��2�H��.�H�3E1�L�D$P�1�L��H�D$P��H�D$ H��t|H��1҃���H�\$�T$H�T$H��tAH�T$8H�t$0H�T$H�=R����D$H�D$0�D$@���D$����H�D$ H���DH�t$H��H�=an���|��H��$�dH3%(��H�Đ[]A\�f�H�D$H������H�|$0�t-������s&��~
H�D$0���H�|$0t
H�|$0�C-�����R�H�|$ ��|$�;��Z �f.���ATUSH��H�|$H�t$���H�|$1Ҿ��H��taH��H���1�H�hH���B�H���zj���H��H���:��H��I����H�CH���o���H���g"�H��L��[]A\�1�1����H��I��[]L��A\���AWAVA�AUI��ATI��U�S��H��XdH�%(H�D$H1�H�D$���a��t����I�D$H�D$I�<$H�|$���H��H�D$H����H��� ��L�cI������{��QH�s 1�1�D���9�H��H�D$H�D$ H�D$H��t%H��tH��H��� 0�H��I��tL��H����"�L�d$ H��L�D$H��M��1�H�|$���<$�e��t$H��L����H��H����L�hA��u
I����������]H�L$HdH3%(H����H��X[]A\A]A^A_��I��I��A���u^H�s����DD��Ic�H�<���H��H���A�������I�<$D���u�I��H���_�����I���S���@H���p��H� �����닐�[��>������6�H�
�DH�8��H��DH�8�{�1����@L�d$L����H�T$H��� t6H�zu
H�R�:-�v���1ɺL���^�H���/���fDH��H����H��t���DH�=y�DH��H��H�4x���O��H������A������L��H���E
��N���1�H��@�ǍW�w��i�H�z�DH�5�wH�81���$��l�ff.����ATUH��S��H�� dH�%(H�D$1�����L�%��EM����H�}L���;'�tOH�}�S�H�ML��A��~ �H�������H�L$dH3%(H����H�� []A\�fDH�}H�D$H�D$H�|$��,�H�D$H��t�H���}��H��t_H�EH��D��H��H�����H���f.��H�=�v�/	�H�}I��H���EL���i&��*����t���@H�1~D��H��H��D�H���.���@H�=��DH��H��H������H���	������f���H�m�DH��|DH�=ǰEH�H9uoH���Lf�H���EH�@ H�x�|�H��uVH���EH�R �zQ�t}H�z��H�=u�EH�G �@Q�ع����u��H���f.�H��1�1��D���@H��H�D$���H�,�EH�J H�AH�PH�D$H�QH�QH���fD�H�D$��H�D$H���ff.�@��S�H��dH�%(H�D$1�H�ӂDH��H�$H��H�����H�F~DH�޿H����H�7DH�޿H����H�D$dH3%(uH��[��l�ff.����1�H��t
�?�uH�4�EH�R H�B(�H���_l
H��EH�R H�B(H���ff.���H���EH�@ H�@ �ff.����U��S��H��dH�%(H�D$1��H��tH�����H�$��t\���%Q�t3��stH��H�S�DH�8�32�H���E�H������H���W��H���E�H�����H���;��t3��stH��H��|DH�8��1�H�H�E�H���{��H�����H�4�E�H���_��H��������UH��S��H���\�H��ߋ0�@��AWAVI��AUA��ATE��UH��SH��H�L$dH�%(H�D$81��2�H�D$ ���E����I�A���VH�D$H�|$ �	����H�H���qL�l$H��L����H��D$��(�H�hH���t�H���l�H����E��u�UH���H�|$H� �H��H��H���R��H�����H�D$ L�5���H�$E��t1H������'fD�+�D�8E���_H����,������L��H���T��EH�|$D�d$$�D$ H�GH� tH�GH�$L��H�D$(H�\$0���H��x��T$H�|$H��H�$�2�H�$H��ur��pf�I�FH�D$A�������H�|$ t
H�|$ ��"��D�����f�H�H��H���A��H������T$H�|$H����H�D$H�L$8dH3%(��H��H[]A\A]A^A_��H�����H���#�����K�E�������P���DH�|$ �"����f�A��u:�D$��twH���E�t���fD�T$H�|$1���H�D$�T���fDH�UD��H�=�|�!�DH���0�����H��}DH��H�5~nH�81��P����H�;p�1�����AVE��AUI��ATI��UH��S��H��@dH�%(H�D$81���.�H�D$ �������
����H�D$H�|$ �ZH�|$tH�|$��H�D$I�D$L���q*�H��A���v�������H�E H�PH�}DH;����u
H�������H�
}DE1�1҉\$ H�t$ �L�d$(H�=���L�1�H�l$0�o*�H����H�L$8dH3%(�H��@[]A\A]A^�@I�D$H�D$������H�|$ t
H�|$ � �����*��f.�������N���f�1�E��E��L�������;���H���l���H�U �zQ�u?E���Y�����f�H�|$ ����������k����a���fDH��H�D$�#��H�U H�D$H�J �BQH��� t)H����H��t�H�D$H�����1�1���������H�Q���n�H�|$H���a���1����U�����AVAUI��ATI��US��H�� dH�%(H�D$1�H�D$�,�H�D$��t-�������H�=��1��n�H�l$�0����~w���H�l$A��A��t
A����H�|$�1�H����)�H��A�L��L�������H�L$dH3%(��H�� []A\A]A^�f�t&H�|$t
H�|$������������H�|$�����H�����H�=��H�E1���H�l$�A����D�s�Ic�I�,�@����I�H�������I�E������I�H�l$H��uA�����@H�|$�^����H�|$���H�|$H���I�H��HD�H�l$E��tE����H�l$���1���D�s�Ic�I�<�N���H��u/����H�H�l$H��uRH�|$�v���H�|$����g�����A��H�D$H��t�H�|$�z��H�|$H���aH��vH�fDA������D���]���ff.���E1�����ff.�@��H��E1�����H��tH����+�ff.���UH��H��SH��H��(H�T$dH�%(H�D$1���u
H����������H�D$H�5X6H���H���5
�H��� �H�XH���1��H���)�H���15������H������H�t$H��� tDH�VH�v�{�"�H��H�D$H�D$H�D$H�DH��x@H�L$dH3%(uJH��([]ÐH��H�����������<����A���D���0��uH��u%H���E��9�1�����H�SH�=Gt�B�H��i���l��ff.����AVAUATM��UH��SH��0H�L$dH�%(H�D$(1����\H�H��H����L�l$H��L���m��H�5�4L��A���H���3�H�hH�����H����H���H�|$H� tPH�H��H�����H��~PH�|$D��H���4�H�D$H�L$(dH3%(�H��0[]A\A]A^�fDH��H��H���i��H���H�����L��H�����H�|$�D$A	ƋE�D$H�GH� tH�GH�T$H�5���H�\$ H�D$�.��H��H��xfH�|$D��H�����H���I���M������;���f.�H�����H�����H�|$D��1��A��H�D$������	�0��uIM��u1H���E�����H�uDH��H�5�eH�81�����H�ng�1��K��H�UH�=�q��ff.���AWH�=]gAVAUATUSH��H��rDH�0���H�irDH�=<gH��H�����H��tD�H�=�hH��D��H�=�hH�I�E�,��H�=IhH�)�E���H�=�f���H�=�fH���E���H�=��H�ؠE������H�5���H�==bH���E�d�����H�5x�H�=Cf�L�����H�5�|��H�=�K�4�����H�5�p��H�=^f���H�5�s��H�=\d������H�5X���H�=�d�������H�5P���H�=f�������H�5����H�="e������H�50��H�=6������H�5X���H�=�d���H�5��H�=���t�����H�5���H�=�[�\��H�%nD�����H��{��H�5�eH�8���L�-sDH�=�bI�u���L�=�kDH��mDH��I�7H����H�;H�5~e�	�L�%)qDH�;H�5�eI�$�n	�L�5�MFH�;H�5eH�-�mDI�H�E���I�4$H��H�L�E���I�H�;H�5�d�e��H�uH��H��E�r��H�;H��EH�5�d���H�;H���EH�5�d���L�5/MFH�;H�5�dI��
��I�4$H��H���E���I�H�;H�5�d����H�uH��H���E���H�;H�5���&�H�;�����H����H�5���{��H�;�����H�l��H�5�c�`��H�;�����H�����H�5�d�E��H�;�����H���H�5md�*��H�;�����H�[�H�5Yd���H�;�����H���H�5
����H�;�����H����H�5�b����H�;�����H���H�5�d���H�;�����H��H�5�c���H�;�����H����H�5�d���H�;�����H����H�5�c�m��H�;�����H�>��H�5D�R��H�;�����H����H�5\��7��H�;�H��	��H�5p����H�;�����H����H�5bc���H�;�����H����H�5F����H�5ojD1�H�
���H�=7cH��C!�H�=A����H�-nDH��H�E���H�EL�%hD1�H�-SjDL�5�mDH�=�bL��I�$H��I��� �H��1�L��H�=�b�� �H��1�L��H�=�b� �H�(��H�5���H�=�b���H�;�H�����H�5u��*��H�;�����H�ۊ��H�5lb���H�;H��hD�����H�5va����H�;�H��m��H�5q_����H�;H�hD�����H�5�_���H�;H�gD�����H�5�F���H�;�����H�$B��H�5n����H�;�����H�	B��H�5�^�m��H�;1�H�Q2��H�5K^�U��H�;1�H��J��H�5�^�=��H�;1�H��F��H�5]^�%��H�;�����H��B��H�5�_�
��H�;1�H��2��H�5�_����H�;1�H��J��H�5�_����H�;1�H��I��H�5�_����H�;�H����H�5a���H�;�����H�x/��H�5�`���H�;�����H�--��H�56\�q��H�;�H�"��H�5�`�V��H�;1�H����H�5R�>��H�;H�CH�5���H�;1�H�����H�5�`���H�;1�H�DQ��H�5z`���H�;1�H��Q��H�5h`����H�;1�H����H�5U`����H�;�H�	��H�5?`���H�;1�H�E��H�5D����H�;�H��D��H�5`�z��H�;�����H��?��H�5^�_��H�;�����H���H�5�^�D��H�;�����H�%N��H�5H`�)��H�;�����H�Zg��H�58`���H�;�����H�_>��H�5{^����H�;�����H�d>��H�5~]����H�;1�H�LC��H�5~_���H�;1�H�dgDH�5\_���H�;1�H��C��H�50_���H�;1�H�z��H�5!_�x��H�;H�&fD�H�5_�]��H�;H��iD�H�5�^�B��H�;H��gD�H�5ж�'��H�;1�H�;hDH�5]���H�;1�H��K��H�5�\���H�;�����H��J��H�5k\����H�;�H�5�^�x�H�;�H�5�^�d�H�;�H�5u^�P�H�;�H�5j^�<�H�;�	H�5`^�(�H�;1�H��H��H�5�[�`��H�;1�H�K��H�5k�H��H�;�H��G��H�5T�-��H�-�hDH�;1�H�5^H�����H�;1�H��H�5�]���H�;1�H����H�5�]����H�;�H�7��H�5�]����H�;1�H�/[��H�5yS���H�;1�H����H�5iS���H�;1�H�?\��H�5�]���H�;1�H�Z��H�5�]�k��H�;1�H�o��H�5�]�S��H�;1�H�W��H�5��;��H�;1�H�Oz��H�5Z]�#��H�;1�H����H�5J]���H�;�����H����H�58]����H�;�����H����H�5%]����H�;�����H�����H�5]���H�;�����H�+���H�5�\���H�;1�H���H�5.����H�;1�H��H�5���o��H�;1�H�S���H�5p�W��H�;1�H���H�5F�?��H�;�����H����H�5���$��H�;1�H��u��H�5o\���H�;1�H�����H�5k\����H�;�H�E���H�5[\����L�5�gDH�=S\L����H�LcDH�H�
A\�H�8����H�-�bD1�H�
���H�=%\I�H�����H��gDH�H�
\�H�8�ŷ��L�%�cD1�H�
u��H�=�[H�EL����H�fDH�H�
�[�
H�8脷��H�
=��1�H��H�=�[I�$�h�H�EI�6H�=�[H���EI�$H���E�S��H�uH�=�[�C��I�4$H�=�[�3��I�}�j��I�uH�[H��H���4�H��H�5*����I�7H�����H�߹����H�;���H�5���o��H�߹H����H�5���T��1�H��H����H�5���<��H��H���H�5b���1�H��H�����H�5�Z���1�H��H���H�5
���1�H��H�ʵ��H�5w�����1�H��H�b���H�5BY����1�H��H�:���H�5�Z���H�߹����H�����H�5y����H�߹����H�����H�5�U�x��1�H��H�|���H�5VU�`��1�H��H�d���H�5�U�H��1�H��H�L���H�5hU�0��H�߹����H�!���H�5�V���1�H��H�����H�5�V���1�H��H�����H�5�V����1�H��H�i���H�5�V����H�߹����H�>���H�5�X���H�߹����H���H�5
W���H�߹����H���H�5Z�|��H�߹����H���H�5V�a��H�߹����H�Ҫ��H�5���F��H�߹����H�ǡ��H�5�V�+��H�߹����H�����H�5�U���1�H��H�����H�5�W���1�H��H�,���H�5�W����1�H��H�D���H�5hW����1�H��H�̧��H�5YW���1�H��H�����H�59U���H�߹����H�����H�5U�}��1�H��H�A���H�5�T�e��1�H��H�Y���H�5p��M��H�߹H�~���H�5Y��2��1�H��H���H�5W���1�H��H�΢��H�5�V���1�H��H�V���H�5!W����1�H��H�.���H�5W����H�߹H��a��H�5�V���H�`\DH�߹����H�5U���H�߹H��a��H�5S���H��[DH�߹����H�5�S�f��H��ZDH�߹����H�5D:�K��1�H��H�_���H�5$W�3��1�H��H�G���H�5\���1�H��H����H�5�����1�H��H�'
��H�5�V����1�H��H�����H�5�K����1�H��H�G���H�5�K���1�H��H�����H�5R����H�߹H�$�H�5 U���1�H��H����H�5oV�p��H�߹H�ѵ��H�5aV�U��1�H��H�9���H�5V�=��1�H��H����H�5,�%�����H��H����H�5m��
��H��1�1����H�5��EH�=VH���E�D��H�5��EH�=�N�A��H�
��H��H�5l�EH�=�U��H�I\DH���H�5K�EH�=�UH�����H�5�E�H�=7H�h ���H�
y���H���H�EH�5�EH�=uU��H��H�����H�5�EH�=\U���	�H��YD�����H�����H�5J�H�8���H�=�T���H�����H�=UH�[�E�f��H�����H�=v�H�3�E�F��H����H�=��H��E�&��H����H�=��H��E���H���n�H�NjE�bq��H���Z�	H�=TH���E����H���:�H�=iTH�w�E���H����H�=@SH�O�E���H����	H�=2TH�'�E�r��H�����H�=TH���E�R��H����
H�=TH���E�2��H����H�=5�H�w�E���H���z�H�=�SH�O�E����H���Z�H�=�SH�'�E����H���:�H�=�SH���E���H����H�=�H�׉E���H����H�=�H��E�r��H�����H�=<"H��E�R��H����H�=�
H�ljE�2��H����H�=vQH���E���H���z�
H�=�RH�g�E����H���Z�
H�=�RH�_�E����H���:�H�C�EH��[]A\A]A^A_�@��H�55DH�=�Q�I�f���H������H����@���G�����SH��H���0��H��[�ff.�USH��H��t1�H�OH��H���H9�u�H�G�ҋ��H����Hc�H�<��;��H��H��u3�H�=���r��H�ʼn�H��H�5q[1��<��H��H��[]�f�H���ȎH��u���H��������H���fDSH�7H���� uAH��H�O��H����> u
H��H�VH9�r�H)�H��H�����H��[�f.�H�OH�wH���AWAVAUATUSH��H��(H�T$H�t$� ��L�cI��L�d$��H���'��I��$�H�$H��tB�
��t<1�H����H��L�lM��tL��H���=��H����I��$���9w�H�D$�@����E1�E��M��D��H�=�wH�5�yI��H�
vD�<G�,B�9��tr�I��HcÃ�A���tY<Su�A�M�,�M��t�H�<$L�����H��u�H�<$�L�����H�D$H�t$L���HcÃ�A���u��H�D$A�D9`�N���H�$H��Āu:H��(H��[��]A\A]A^A_�L��H���D��H�t$L��H�D$������H�$H�@�@H��([]A\A]A^A_�fD�W��w1���u
H�G�D��H�H�x �����H�����@AT1�I��H�=�XUH��S��H�����H��L��H��H���Ͽ�H��[]A\��H��tkUH��SH��H�8H��tf�H����H��H��u�H�}HH��t�H����H��H��u�H�}xH��t�r�H��H��[]���@�ff.�@AUATUSH�����H�oxH����H��tCL�����5I��9��8����)�Hc�)�I�č�)�H�����H�H�l�H��H��[]A\A]�@��6�����	��u61�Hc�L�,�Hc��J�Dj��I��I�<�H���ѝC\,0���Hc��L�H��H��I�\8H���밐H��1�[H��]A\A]�H��H�G H�PH��tH�zPt H���H��H�D$���H�D$H�P��H�yODH�5�_H�81������SH�����1�H�5�H�����H��[�ff.�f���H���s���H��H���'�����S��w ���tH�H���B���H��[H���v���1����f.���U�SH��茽��-��DH�=v�EH��H��?H��?��H���'���H��H��H�������-U�DH�=6�EH��>H��?��H���2��H��H��H������- �DH�=��EH��=H��?��H�����h��H��H��H������-�DH�=��EH��<H��?��H�����3��H��H��H���U���-��DH�=�EH��;H��?��H���3��H��H��H��� ���-��DH�=B�EH��:H��?��H�������H��H��H�������-L�DH�=�EH��9H��?��H������H��H��H�����H�-�DH�=LJEH��?��H���7�b��H��H��H������-�DH�=��EH��?H��?��H�����-��H��H��H���O���-��DH�=Q�EH��>H��?��H������H��H��H�����Hc-�DH�=�EH�l-H��tB���H��H��H�����H��H��[]�DH�=�S��/��H��H��E���H�=�T����H��H���E�H�=TT�����H��H���E�S���H�=T�����H��H�}�E���H�=�S����H��H�e�E���H�=�S�
���H��H�M�E�W���H�=�S��o��H��H�5�E����H�=\S��O��H��H��E���H�=$S��/��H��H��E�X���H�=�R����H��H��E����H�=�R�����H��H�ՅE���AWI��AVI��AUATUH�-znSH��(H�<�H�T$��H��q�H�pD�$B�L$B�D%����E1�1�I�_�KfDJ�D:I��H�rH�$H��t1�H�D$��H�$H;BtH�BA��Ic�H�DB� ��t[<St
~M<Tt�<Vu�H�M��I�L�$��u�H�����t�H��H�T$1�H�D$��H�T$H9�t�L�$I��D<Hu��f��D$H��([]A\A]A^A_�ff.�f�AVAUL�-%���ATUS@��u	H�����uBH�GD�`L�pM��t$H��1�@H��L��H��L�����H�H�L9�r�[]A\A]A^�@H��ƒ���t��H��aLE�럐���
f.�H�H9�t8@��u�H�����t�H�%�H=pu�H�GHǀ����1��ff.�f���AWI��AVI��AUATUSH��HL�g�NdH�%(H�D$81�H�FI�T$�$H�D$(�H�T$A�T$�D$���(��H�T$0L��H�t$ �D$��1�E1�H�T$�D$�\��\$��H�T$H�=ƎE!؃�H�D$��A_ N�4�!�I�6�_���K �H�D$0��H�PHDPDhI�E;l$s)I�E��L������4$�H90t�|$t��\$�L�t$ ��~I�wH��tN�$H�T$(L���-AnL��H�5���L���x�H�D$8dH3%(u<H��H[]A\A]A^A_�f���衵�H��I�G��1������SH��H��H��DH��H��NDH�8�/���uRH�����uqH�C�u7H�������H�����t"H��у���tH�р�H�{H�t��tzH��[�@H�C�u�H�����t�H��H��H�D$���H�D$�ϐH��H��H�D$�p��H�D$H�C��v����DH��H��H�D$�H��H�D$�a���fDH��H�D$���H�D$�o������H�GH��tH�����H������H��H�������H��H����H�PH��tH��H����H��H�����ff.����UH��SH��H��@��u$H�����tH�u�����tP��t;��t&H��H���[��H��H���P��H��1�[]�����H����fD�[��H���fD�K��H���fDUH��SH��H��H�=��EH������H��H��褷�H���ZH����H�=��EH�����l��H��H���q��H���H���~H�=�EH�����9��H��H���>��H���TH���H�=D�EH������H��H�����H���H����H�=	�EH��������H��H���ض�H���H���=H�=΀EH���@���H��H��襶�H����H����H�=��EH�����m��H��H���r��H���hH���gH�=X�EH���j�:��H��H���?��H���%H����H�=�EH�������H��H�����H����H����H�=�EH��������H��H���ٵ�H����H��t2H�=�EH��t6���H��H��讵�H���4H��[]�DH�=yE�c�H��u�H�=mK����H��H�UE�H�=QE�c�H���k���H�=(K�����H��H�)E�K���@H�=!E�#H������H�=�J����H��H��~E���DH�=�~E�#�H�������H�=�J��T��H��H��~E�v���DH�=�~E�#�H���+���H�=WJ�
���H��H��~E����DH�=�~E�#�H�������H�=J�����H��H�j~E���DH�=a~E�#�H���U���H�=�I����H��H�:~E�5���DH�=1~E�#�H�����H�=iI��t��H��H�
~E����DH�=~E�#�H������H�=I��<��H��H��}E�_���DH�=�}E�#�H������H�=�H����H��H��}E��DH�Ǩ��� ��CH��[]�fD�����������K�]�����K�������������@�������������� �6��������H�=�G����H��H��|E�����+���&���fDH��tJH��t5H��tO@��uWH�����tN�����uDH��vDH��w����H���H��vDH��DH�H��PH��?DH�53PH�81��)��f���SH��H��dH�%(H�D$1�H���L���H�$H�IvDH�T$dH3%(u	H��H��[��S����SH��H���p��H��tKH�S �B������uwH�zH����H��uhH�����t_H�%�H=puOH�GH����[�H������H������u*H�����t!�����uH�{uH��H��CH9St��[�f�����H�H�P �B���Y�������H�H�P �B���=�������H�H�P �B���!�����upH�H�P �B���	�����uXH�H�P �B������u@H�H�x �k�H�ǃ����[�z���f.�H�����H��H�������'������H���SAVAUATI��USH�oH����fDH�}���H�}x���H���H��t���H���H��t���H���H;=4EDt�m��H����a��L���M��tP���L�4����I����t01��؃�H��H�PI�D�I�|P���9��w�L���L�����H������H�}0����H�E8H��tH�x����H�}8����1�I�$tI�|$��H�����I�$uI�|$H��t[]A\A]A^�
fD[]A\A]A^���ff.�@��AWAVAUATUSH��H�_H���iI��H����"��H���H������H�{PH�����H�{HH�CP���H�{@H�CH���H���H�C@H��t�Ч�H���H���H��t踧�H���L���u)I�����t I�$�ƒ���t�����CtXI�$tI�|$uFH�S8D�rD;2}91�f�H�JHc�L�,�I�}H��4t
�6��H�S8I�E��B�D59�L���M��t2A�E��t*1�@��H��L�H�{H��t	���H�C��A9mw�H��L��[]A\A]A^A_�@fDH��[]A\A]A^A_�H�5�L�����I�D$L���M������D�sM������L�=���H��L��H���L���k�H�H�L9�r�����ff.����AVAUATI��USH�H������pI�\$H����A��u,I�����t#I�$�ƒ���t���f.�H���褡�H���蘡�H�{P菡�H�{H膡�H�{@�}��H���H��������CtI�$��I�|$��H���H��t*�E��t#1�@��H��H�|H��t����9]w�I�$I�\$�us�u4H��tUH��[]A\A]A^�
��۠�C�n�����H�{H���H�;H�������H�{H�����u[]A\A]A^�f�H��[]A\A]A^����{�����fDL�k8E�uE;u����1��f.���A�.A9E�����I�UHc�H�<�@��u�H�����t�� ����fD����_���H�5��L���_��J���f.���AVAUI��ATUSH�L�g��?M���6A��$�A��$�M��$�H��A�T$H��H�A��$�I�H�4vH�4� H�<�I��$�H��t�2������(���VHc�H�A�t$M�D$8�VHc�H��M����A�0A+pHc�L�� A��$�E��$�H�4vH�4�D��L��J�QH��H�H�L�M��tjE��te1퐉�H��H�PI�D�PH��t$�8H��9D����H�Hc��˂��HÃ�A9�$�w�I�E�uH��[]A\A]A^�@1۩t�I�EH��t�H�@8H�ÈH��t�fD�PH�H�\H��u�H��[]A\A]A^�@E1�����H�=9�1��r��f����7������H��� ��Y��H��|EH�JH��H�
�|EH���ff.�SE1�1�1�1���l��H�����H�CH��[�ff.���UH��SH��(dH�%(H�D$1�H9�tWH��H��uEH��譝�H��H�\$H�$���H��H�����H�T$dH3%(H��u6H��([]�f�����uH���_��H����f.�H���H��H����^��ff.���SH��H��H���=���H�SH�B@�uH�����u	[��H��H��[��@��AWAVAUATUSH��8H�o���H����]L����D$H��t����5@���9��8�P�������)�Hc�1�I�����I�ǃ��bE1��8�P��A�D������DI�A��	Ic���I��1�1�1�DI�Ǎ4�1��9\$~A94�u��Hc�fDI����I��L	ƒ�?u�I��H��A9��E����A��	L�t$1�M�g@D�l$L�|$(H�l$ ��fDA���A�\$�E1�E1�L��E���D��Ic�A��	H��I	D$�1�1�A�v69\$~ L�\$Hc�D�E9�u���H��H	ǃ���@u�H�}A��@H���T$�C��T$A�A��?u���I��P��9l$�h���H�l$ L�|$(L���H����3��HDž�H��8[]A\A]A^A_�f���USH���GH���Hc����50��X���I�������غ9��8���1���)��$������I��h����	I��L��1�A�����f�L�\�D��1�DL��H���D9�tD�H����A��A����?u�H��9�ą�~]�����	D�����H���L�W@1�D�N6I��sE�H��D�X�����@u��@H��9�uс�H��P9�u�H��L��[]�f���SH��H�5(mEH�|$H��tFH��8DH�L$�H�;譡�H��1�@��uH�����t	H�H9Wt0H��[�f.��	H�=�9�/��H��H��lE���H��[�D��H�GH�@@H��uH�����t
��t�� uH�@ H��fDH����f�AWI��AVAUI��ATUSH��H��(H�k�L$pH�|$hH��H������t3��t/H��MA�H����H�GH���H����@�EH���iH���E1�H���H��uH���H��L�L$L�D$�<��L��L��H��H�D$L�c���H�D$L�D$L�L$�I�D$PuH�������I�D$HM�D$XM�����D$`�AoA�D$`AD$dH���H9�tH�@H�pPH�uH@��u
H�������H�CH���Hǀ�Hǀ�H��t���HDž����I�耝��H�H�CH��L�0H�@�(��H�L�`H�E@H��K�H�k��H�E8���H�L�`H�EPH���H�SH�BHH�D$xH�BxH�BpH��4DH�H���H���H�D$x�@u-H�CHǀ�H��(�[]A\A]A^A_�f.����H��H�����t�H���h��H��H�����H��H��t�H�CH���@����H� ��H��H�~t�1����H�SH�����o���H������c���H��H��趺��S����I�D$dI�D$l�������f��MH��t8H��H��uH���A��Q���@H���A��4���fDH���A��0���fDH�v �A���H�����txH�����H�CH�������fDH��H����H�D$H��I�D$HH�����L�L$L�D$����f�H���ȹ��T���H��H��H��tE1��^���H���G������H���E1�H���k����m������H���#��H��H��������H�GH�@@H��uH�����t
��t
�� uH�@ H�@�DH����f���H������H��H�������AWAVAUATUSH���L�H�|$dH�%(H��$�1����H�D$h���H�D$ 芮�H�D$���H�D$X���H�D$H�l��H�D$P�B��1�H��&DH��H�D$���H�=fEH��$��L�%�bEL�-�M1�I��$8H��A�DA�}I��H�I���{��I�D$�L9�u�H�bbEH����H��eEH�CbEH����H�+bEH�bEH����H�bEH��aEH���H��aEH��aEH���
H��aEH��aEH���H��aEH��aEH���H�haEH�YaEH���H�AaEH�2aEH��t$H�aEA�7�����H��<Hc�H�>��H�=�2�X��H��`E�¾H�=m�>��H�OaE���H�=q]�!��H�*aE����H�=����H��`E����H�=ƶ���H��`E�����H�=9�ʶ�H��`E�����H�=9譶�H�v`E�����H�=l]萶�H�I`E�����H�=��s��H�`E����H��_EH�D$pA���1�L�l$ H�j���u3�}DH�=�_EH���h���L��H�������A9��vLI�����L�$�M��t�L���2��H���IL����N��L��H�����A9��w�f.�A�GI�_8��!�t3IcoH�= _EH�l-H�������H�|$H��H�����A�G�tjIco(H�=�^EH�l-H��������H�|$H��H�����A�G�t3Ico$H�=�^EH�l-H���W���H�|$H��H��话�A�G�t3Ico H�=c^EH�l-H�����X��H�|$H��H���x��A�G�@t3Ico,H�=$^EH�l-H���)�!��H�|$H��H���A��A�G���� t3Hc[H�=�]EH�\H���
����H�|$H��H�����A�G����H�|$�[��I��A�GM��I��I9��L�|$`L�d$0I�H�0NM�~L�$L���_��H��I��H�D$(H��'�J��">H��H��H)�H��H�H��Hk�gH)�H��H�
^EH�<��=��L��H�����A�D$����hM�����K��H+D$0E1�H��H�D$xA�D$�H�D$8H��K�XH�D$@H�&JH�L$@L���B�<���H�
�8��Hc�H�>��H��`EH�D$p���H�]EH�D$p����H��\EH�D$p���H��\EH�D$p���H��\EH�D$p���H��\EH�D$p���H��\EH�D$p�|���H��\EH�D$p�k���H�߾	賲�H��H�9\E�|���@A���L��p)�H�t6�G���j���I����H�������H�x����������������nH�������aI�?H���t
����H赧�I��I�H�8H�@H���H�l?H�[EH����H���L��H��L��H���n��I�HchH��ZEH�l-H����H�����H��L��H���<��I�HchH��ZEH�l-H���;H������H��L��H���
��I�H�x辶�H��H�TZEH����
H�����L��H��H���ՙ�H�|$(L�������I��L9t$8��H�KI��L�$M9��{����]��H�|$H�t$xI7���H�|$(H������I�7H�|$(H�t6�}���I�?�#��H�|$(H���f���M�'�L��H�5���L��H��H��E1�褥�H��$�L�l$L��$�H�\$x�KH����H9���E�D$H��A��Mc�L�����H���y��L��Hc�H����L��H��H���}��H�EIc�� u�H�E�I�H�x�o��H�|$(H���������H�@I�?H��z
H�D?H�|$(H��������I�/A��R��I��H�}@�EL��$�H���)H��XEH����H������L��L��H�����D�mHH��XEO�l-H����H�����L��L��H�����EH@��Hc�$�H�JXEH�l-H�������	H�=�����H�$XE���H�D$`I�7H�|$(H+��H���������H��H��H�t6������H�=XEH����%��H�|$�H���C���I����I��SE1�I�ą�~)@H�CIc�A��H�<�����L��H���)��D9s�1�H��$�D;3}iL�|$(I��@H�SIc�H�<����L��H��$��3��H�KI��Hc�H�4�H��4tL������L��L��A�������D93�L�|$(HckH�=8WEH�l-H���~�=��H�|$H��H���]��H�=WEH���9���H�|$L��H���8��A�G���E�gE�l$Ic��͇�H��E��~9L�t$N�$�E1�DI�G0L��J�4(I�����H��H�����M9�u�H�=�VEH�������H�|$H��H��跕�A�G�^���H�=T��
��H��H�ZVE����H�=���ܬ�H��H�RVE�;���H�=	��
輬�H��H�"VE���H�=��蜬�H��H�
VE�2���H�=߰��|��H��H��UE���H�=�2��\��H��H��UE����H�t$(H�|$XM�����H�D$`H�L$0�@H��I9������L�|$`H�D$XH��$�I���H���������E1�蝽�D��M���I��H��I��M�A�t$�F���
���H�
�1Hc�H�>��H�=7��裫�H��H��TE����H�=�1�胫�H��H�UE�H���H�=����c��H��H��TE���H�=Я��C��H��H��TE�b���H��SEH���T	H�����H��H������I�|$H���H���H��H�����H��A��I�l-L�l$�uL�����H��H�����uL�����H��H���u��uL���z��H��H���_��uH��H�t6�O��H�|$HH���B��I���D90��������1�L�|$81�I��H��$�E1�A���D$0H�D$(��H����I9���H��D��H�T$(H�|$H��N�4��C����H�D$H��H�x���H��H9��&��X��~9T$0tHc�L��T$0H�t6����t H�=�REH�����!��L��H���f���t H�=�REH�������L��H���A���t H�=]REH�������L��H������t H�=0REH���z���L��H������t H�=REH���u���L��H�������t H�=�QEH���p�h��L��H������t H�=�QEH�����C��L��H�����L��L���}��I�>�� tJH����Hc�H9�� A�I��H��H��$�H��� �A���L;h�
H�@ �B���fDI�~�H��$�L������B���H�=[���<��H��H��PE�U���H�=׬����H��H�
QE�W���H�=Ǭ���H��H��PE�\���H�=����ܧ�H��H��PE�a���H�=���輧�H��H��PE�f���H�=���蜧�H��H�jPE�k���H�=����|��H��H�BPE�p���H��$�L�|$8H��$�H��$�H��$�H��$�H��$�A�_H��OEH�\H����H�����H�|$PH��H��觏�A���H��OEH�\H���TH���S��H�|$PH��H���s��A���H�uOEH�\H���H�����H�|$PH��H���?��Ic_`H�<OEH�\H����H������H�|$PH��H�����IcGd�H��$�H�DH��$�IcGhH�DH��$�IcGlH�DH��$�IcGpH�DH��$��(��H��H��NEH���H���m��H�l$PH��H��H��芎�(H�=�)�i��L�t$hH��L�����H��DL���3H�t6�s��sL��L��H�t6�`��L����S��L��H���H��I�wPL���<��L�t$L�����H��H���$��L����H��H�����I�wXH�����H�|$p���H��H������H�t$ H������H�t$H������H�t$HH������L��H�����H��H��$�dH3%(�jH���[]A\A]A^A_�H�|$(H��H��$�L��$��u����H�|$(��a���|�H�MEH���h����H�=٦�{��H��LE�K���H��LEH���;����H�=�&�N��H��LE����H��LEH�������H�=.I�!��H��LE��H��LEH������H�=�H���H�mLE����H�yLEH��������H�=&�ǣ�H�XLE����H���n������H�=�蘣�H��LE�3�H�=��{��H��LE������I�����H�=L�Q��H�JLE��H�=Q�4��H�5LE��H�=�����H� LE�Y�H�=���H�LE�
�
H�=��ݢ�H�vKE�����H�=���H�aKE�.����	H�=!�裢�H�LKE����
H�=��膢�H�7KE����H�=Ӧ�i��H�"KE�>����H�����>��H���R�H�EPE1�Hc8�|�H��$�H�EP�)�$���~"Ic�H��$�A��H�t�����H�EPD9(�H�KEH��tWH���X��H��$�L��H���u����H�=�F迡�H�(JE���H���{����H��莪����H�=�舡�H��JE����襳�D��H������H��H���'����������H�GH�@P���H�����H��H���W�����H�GH�@H���H���s��H��H�������H�GH�@X���AWAVAUATUSH��8dH�%(H�D$(1��)��H�hH�D$�K��I�ŋ�����rE1�L�t$�A��D9���WH�MxD��H���X��t�Lc ���a����������t?Ic�H�=�MEH�DH�D$H���
舾�L���H�D$���L��H������t?Ic�H�=lMEH�DH�D$H���)�D��L���H�D$�Ҵ�L��H���w���t?Ic�H�= MEH�DH�D$H�������L���H�D$莴�L��H���3������H�=�LEO�d$L�d$H���`軽�L���A��H�D$�E��L��H������D9�������DH�T$(dH3%(L����H��8[]A\A]A^A_�f�H�|$�V��H�=LEH�D$H���a�<��L���H�D$�ʳ�L��H���o����^���H�|$���H�=-LEH�D$H���7���L���H�D$耳�L��H���%�������H�|$�™�H�=�KEH�D$H����証�L���H�D$�6��L��H����������fDH�=&\���H��H�}KE����H�=���ߝ�H��H�EKE���H�=�B�违�H��H�-KE����H�=^��蟝�H��H�KE���H�=e����H��H�KE�3���H�=C���_��H��H��JE����H�=c���?��H��H��JE����[��ff.���H�����H��H���w�����AUATUH��SH���j���H��L�`H���[��H���{�I�|$PH��u H��H��H�=��1�[]A\A]���DH�����H���؋�H��I��蝮�I�T$PE��H��H��H��H�=`1�[]A\A]�׻����H�GH���H�P��:t�f�H�BH�ff.���H�GH��t�xd�>H��t�ph�2H��t�Pl�M��t�@pA��ff.���H�GH������1�H�=����n}�ff.���H�GH��t�f��[��ff.����������H��H�����1�H��t���H���ff.�@��H��H��߽��1�H��t�P��H���ff.���AWI��AVAUATI��USH��8H�dH�%(H�D$(1�H����I�oH�6H�EH�D$�I�D�oE��u�W����I�G�E��trH�D$ E1�H�D$f�E��L��D�D$L����s�A�_ H�T$H�=TED	�!�H�D$N�4�I�6角�����H�D$ ��D�D$H�PHDPD@I�D;Er�L��H�5���L������H�D$(dH3%(uH��8[]A\A]A^A_�@�S��@����9��f���AUATI��UH��S��H��L�odH�%(H�D$1�L���^���H��t�P��!ډP�U t"H�D$dH3%(uAH��[]A\A]��I�EH�=SEH��J��H�3讑����H�$H�@H��蔫�@��H����g����H�`��Hc�H�>��H��H���H����H����H�o��H�Y��H�C��H�-��H��H��H���H���H���H���H���H���z���H�{�n���H�c�b���H�K�V���H�3�J���H��>���H��2���H���&���H������H������H������H�����H�w���H�]����H�D����H�+����H����H�����H�����H�����H�����H���~���H���r���H�o�f���H�Y�Z���H�C�N���H�.�B���H��6���H��*���H������H������H������H�����H�����H�r���H�\����H�F����H�0���H����H����H�����H�����H�����H���v���H����j���H���^���H�k�R���H�T�F���H�=�:���H�&�.���H��"���H������H���
���H�����H����H�����H�q����H�Y����H�B����H�+���H����H�����H�����H�����H���z���H���n���H���b���H�r�V���H�Y�J���H�A�>���H�*�2���H��&���H������H������H������H�����H�����H������H�s����H�\����H�H���H�2���H����H����H�����H���~���H���r���H���f���H���Z���H��N�����AWAVAUATUSH��(H�_�t$�{L�{8�n�I��H��BEH�D$H���2L�5kBEM���O�|$�C1��!�����l$DC9��%)�HcՃ�L�$�H�DH��H�D$�DH��L��I��葽�L9d$��L���.��H�$�n�H�4$H��H���a��H���J�< �р�H��t�H���J�< ���H��H���1����H���J�<��ȱ�H�$H��H���	��H��H��L�����C9�����H�|$蓱�I���fm�L��Lc�H��H�$�ļ�H���J�<��4��H�$H��t��f��CtXH�=�@EH���
�5��H���m�H��H��I���j��HcS H���H�<����H���]L��L���B��HcC$�S(�t$�����9�����H�,�L�dJ��H�$�fDL��L��H�����H;,$tkH�|$葰�I���dl�L��H��I���ƻ�H���H�<(�6�H��t�H���H�<(�Q��L��H��薻�I��두9��X��Ct;H�=�?EH�������I����k�L��H��H���J��H��L���?���C���A�W����H�x?EH�$H����1���L��L�����A9o��H�<$藯�I���jk�L��Lc�H��I���ɺ�I�GJ�<��<~�H��t�I�GJ�<��Z��L��H��蟺��D�C� t\H�=�>EH����+��I���j�L��H��H���`��IcWH���H�<���}�H����H��L���8���C�@tXH�=i>EH����ˮ�I���j�L��H��H�����HcS,H���H�<��l}�H����H��L���ع�H��(L��[]A\A]A^A_�fD��@����H���H�<��P��H��L���蒹�L��L��臹�C9������L���$��H�$�i�H�4$H��I���W��H���Hc�H�$H�<��|�H�$H��t�뀃�H�,�H�DH��H�D$�'DL��H�����L��L����H9l$�n���L��薭�H�$�hi�H�4$H��I���ɸ�H���H�<(�9|�H��t�H���H�<(�O��H���f.��H�=o迎�H�$H��<EA�G���U����1�H��<EH�$H����A;/|���L��L����2��A9/�����H�<$�Ь�I���h�L��Lc�H��I�����I�GJ�<��u{�H��t�I�GJ�<�蓬�L��H���ط��fD�H�=���L�5(<EH�D$H�$<EM��������H�=7�ҍ�I��H��;E���H�=��词�H��H��;E�����H�=��菍�H�$H��;E����HcS,H���H�<��ԫ�H��H�����H���.����H�=����?��H��H�5;E����HcS H���H�<�茫�L��H���Ѷ�I���|���f�H�=�
����H��H�;E�6���IcWH���H�<��<��H��H��聶�H���6���f�H�=[
�蟌�H��H��:E��������1���
wRATH��US��H��H�,JH���}t'L�%\DI�$H���H����H��H�H��tH��[]A\���H��耑�u<H�����t4H��у���t'H�р�H�xH�t��uH��H�D$�5��H�D$H�H��H�D$�{�H�D$H��[]A\�f�����l�I�$H����Y������ATUH��SH��0dH�%(H�D$(1�H��#L�\$PD�pH�"I�Hc�A�<����A<���H����H�
�Hc�H�>��f.�����H��+@��!���7I��I����H�{��������H���_���F@����A����H���2��H�����fDI��I��M���H����H����H�nDH���fDH�EH�=?H+��1�H��H���������H��H��躩�H���H�\$(dH3%(H����H��0[]A\��˛�H�{@H��H���3�sLH�=�
1��j��H��H��诳�CH�@������H�=���[r�H��H�����H�=�
H��1����H���g����H��H���%����H�|$H����ڎ�H���2���f�H�{�v�H����l�H�����������H��+��������������������s�H��H������H��H�=�1��j��H�����f�I�Mc�H�=�'1�K�4�H��H������SH�sH�=+
1��+��H���s���H����H�CH�hPH�|$X�S���H�|$XH���F���A����H�����H�����H���(������Hc�A�<Nu	M����H���R)������H��H�S�Hc����H������H�=j	�p�H��������	H�=S	�p�H������@���_A����H���3��H��A��A����H��������H�SH�DH9����F���fDH�|���H���.���fDI�3H��H�S�����H�������H��.�;������3������W�H���#���H��膌�H������fD@������VH���n��H���F���fD�H�=���oo�H�������{��I�ċCH����S��'������� �����v���I����@�����������H�=tN��n�L��H��腠�H��H�����Y���DH�CPHc8H�p�0��H�=��I���n�L��H���A��H�=�H��1��`��H��H��襯�CH���D�s�H�=�H��1��2��H��H���w�����f�H����t���������H�=U1���H���>���fDH�����H��A��������H��CH����f��
H�=��e�H���#�����H�=��oe�H��������H�=�*�Oe�H������H���X��H���7���H���H��H����k��������H�=��Fm�L��H���k���E����H�=��%m�L��H���J��CH�����H�=��m�L��H���&��CH����H�=A��l�L��H�����CH����H�=�l�L��H���ޭ�CH����H�=/�l�L��H��躭�CH�f����	H�=�ql�L��H��薭�CH�9����H�=��Ml�L��H���r��CH�
����H�=l�)l�L��H���N��CH����H�==�l�L��H���*��CH����
H�=W��k�L��H�����CH����
H�=(�k�L��H�����CH�]���H���CH��p���H�=�1��m��H�����H��CH��K���H��CH��<���H���?��H��������Q���fDH�q�CH�����H��葋�H�����H���1��H�����H���q\�H�����褔�@��AWH�sE1�AVAUATI��USH��H��8L�4�1�H�|$(1�B�0H�$L�D$�D$H��F�,pH��I��j�&H��H�5�H��H�F�pH�?H��I�1��R��A�E1Ʉ�tQH�DD��I��L��H��A��I�L�L�t$PD�D$H�|$����ZH��YH���H��Ic�M�D
A�8��H�<$H���J��A��1�H����E��t>D9�t9H�E�� ��H�����F)�H��E��H�
��1�H�5�蜑�H��H�<$H���]Z���H�Z��L�-{LD�L�%t�LD�H�h��HD�L�]��LD�L�R�@LD�H�=H� HD�H�5>�HD�L�
4�LD�L�*�LD�H�
 �HDʨH�HE�H��1�AUATSASARWH��VH�5
�ǐ�H��@H��H��踟��H�|$(��H�U�� tkH�M�UH�5�/�1��Yb�D$H��8[]A\A]A^A_�fD�H�5�H��H�L$ L�D$���L�D$H�L$ A����H��H�M���H��H�5�*�ԃ�H�|$(H���G���y���f�H�<$H�s��S������fDH�EH��F����1�����AWAVI��AUATUSH��L�gH�|$1�H�t$(1�dH�%(H��$x1��g�H��襈�H�D$`I��A�D$�D$TI��� ��H����H�D$I�FH�D$H�T$H�t$H����H�5�H�����H�D$L�hI�}P��H�=�1����H��H���<n�H���H���H��A��$�H�5sHD�1��Ў�H��� �LH����H��H+T$H��G�I�H�5	)H���W��I��$��H�T$H�t$H���6��H�5H���"��I��$���L�t$(�H�5��L����I�L��H�L$�� �>H�D$(H�@H�D$M��$�1�H�D$@A�����L�|$ M��L�t$(L�-�H�t$H�T$H��蔁�A��I��M�A�wA�E�O E�G�F�A�O��
����IcD�L�>���H�D$(H�HH�@H�L$H�D$�-���@H�CH��H+T$H��G�����H�L$H��H�iHH)�H�����H��� �OH�{H{H��=�*V��z���DH�|$A�UpE�MhE�ud�T$0A�mlD�L$ 蝎�T$0I�uPE��H�=�D��RH��1�UD�L$0�כ�^_����H�Q!f�H��H�5}1�WH��誌�I�XZH��t\H�D$@H����1�H��H���Dt�u=I�L�����H��H��詛�I�wH�|$@1��]�I� ��I�FH�D$M��$���A9/�I���L�|$ L�t$(H�t$L�����I�L��H�L$�� ��H��H�D$I��$�t&H�T$H�t$H����JH�5�H����I��$��<M�t$8H�T$H��H�t$L�t$H�_�A�T$A������� tE�V��������t
H�L$H�A�9�������@tA�t$,��E�\$(A�����tE�L$ H��E�D$A�L$A��$�ARP1�WH��VH�5��AS�"��E��$�H��0E���rE�p�H��$pL�|$XH�D$8H�D$pL�-DzH�D$0�l@H����H��L��H���
j�|$p��H��� ��H����H)�H��~L���H�5p�H��1�莊�I��I�����E��$�A�nH�|$1�L��A)�D�D$ 識��Ƅ$pD�D$ I��A�D$A�L$�tA9�|A�T$�D9���f�L��@tE9D$,H�=g�IE�L�� tH�T$HH�5V�D9BIE�L��tE�L$$E9�EL$(H�8�E9�IN�M��tE9D$ L�
#�ME�A9�H�
�IM�H��1�WV�RL�D$XH�b�H�|$P�R�H�� H�T$H��H�t$�+}��H�5F�1�H���X��H�+�� �i���H�CH�h�g���@H���l���@H���\���@H��z�L���@H���<���@H���,���@H��H�D$����f.�H�C�����H�T$0H�5��H��1�誈����DL�|$XH��蓗���H�5�"H���?|�H�|$1��x�D�d$TL�t$I��M��t1�H�T$H�t$H���|�H��M��L��L��H���
��H�H�I9�w�I�1�L�t$@L�-�"�� tdH����H9�}aH��L�����I��M��t1�H��L���o�u(�L��H���{�H�t$(L�����H��H�����I�H���� u�I�GH9�|�H�D$`H�D$hH�D$`H��H��$xdH3%(��H�Ĉ[]A\A]A^A_�f�H�D$@���f�I�FH�D$����f�D��I�T$0H�|$8�)�D�D$ H�H��H���1��3P�A�D$A�L$D�D$ ���fDH�D$(H�@H�D$���DH����H�|����L������H��H�������d�H���C1�H��H�D$@�:��H�D$`�7����[��ff.���S1�H��1��^�H��[H�������H���ө��H��tH���e���H��H���Y��f��H���fD��H���3���H��H���'�����AVAUL�-�ATU1�SH�T%E蟠�gI���T�H��H��.E��H�=�.EA�T-H��`�0H��8I�4�HD�M�4�SH�ډ+H��H�sL�s�ml�H�=�.EH��L��H���Wl�H��gu�[]A\A]A^����SH��H��H��H�=R.EdH�%(H�D$1�H����l�����H�L$dH3%(H�$�uH��[��Ɇ�f���H�����H��H��ff.����SH��dH�%(H�D$1�H�GH�=�-EH��H�@H��H�3�il����H�$H�@H�H�D$dH3%(uH��[��;��ff.���H��(dH�%(H�D$1��4$H��H�T$�L$�D$����D$H�T$dH3%(uH��(��ޅ�ff.���H��(dH�%(H�D$1�H�4$H���D$�D���D$H�T$dH3%(uH��(�膅�fD��AWAVAUATUSH��(dH�%(H�D$1�9w ��H��H���L�gH�G�t$M�t$H��t	�X	�\$A�D$�u ��tdH�D$E1�H�D$DE��H��L��O�<��L�H�T$I�7H�=/,E#D$����j�����H�D$��H�PHDPDhI�E;l$r�H�D$dH3%(uH��([]A\A]A^A_�蒄�f���H���C�G �0��u�鋇�ff.�ATUSH��dH�%(H�D$1�H�����H��H�H%����L�cH�/H�H�C���I��$�tSH�����uYH���C�C �0��u"H�L$dH3%(�u'H��[]A\�@H�������fDH����Z��詃�I�D$@H��uH�����t
�у���t�� tAH��H�H�$H��tPH�=� Et,H�� EI��H��H�=2 E�O�H���%j�H�@ 뽾
H�=$��p�H�W E�H���C�
H�5ҖH�8��I�H���D��AWM��AVI��AUATM��U1�SH��HH�t$L��$�H�T$dH�%(H�D$81�H��tH�/H�|$����M��H�|$H����I�EH�D$(H�D$(H��tH�H�D$(H���)H���c�U0L�M P��$�M��L��H��PATRH�T$8H�t$0�E���H��H�� H���&��H������H�5�EH���H�-W�CH�}�.����L�cM����H��EL�d$0H���TH�uL�D$0�H�=OE�:N�I9�tE�����U�ƒ����WH���]<�uH�PH9UuH���Ӓ��H��H�L$8dH3%(H���XH��H[]A\A]A^A_�f.�@���:H������-������H��H��H�D$蛜��H�D$H�������E1ɺ��������	H�=$��n�H��H��E����H��DH�D$(�:����H������'���H����H������H�Z�CH��	���f.��	H�=���On�H��H�EE���H�����I���g���H���CH�����H���CH�����H�!�CH�����H�)�CH�����H���CH��������U�f���H��H��DPAQM��A��u�H���ff.���AWM��AVI��AUI��ATUH��SH��H���ʆ�H�����t�S��y;H�lDM��L��H��PL��H��A�j�7u�H��[]A\A]A^A_��I���8G1��u�{�ZHH��L��H���U��f.���AUI��ATI��UH���SH��H�=H�H���%M�M��L��H��H��DA�H��RH��j�t�H��[]A\A]�fD��AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$���H�D$A�Ņ�t;�������H�=KJ1����H�l$H�D$M��A��,������k����H�l$H�D$M��A��M�}L�<$H���
1�H������D9���A��uI�nH��H�D$H�<$A��$��H��H�$�F�H�5��H��H�$�%Y�I���[�1�1�H��H���v��Z�H�4$H��L����j�H�xH����L���k�H�{�7L�d$H��L���2���H�4$���X���H�=}�H�,$I���WK�ATH��L��jH�{E1�A�H����r�ZYH�hH���	H��葕�H��H�L$dH3%(��H��([]A\A]A^A_�t&H�D$H��t
H�|$肉������h���t�H�|$��A��rM�I���_�H�=[HI�E1���H�l$H�D$�>���f�D�c�Ic�I�,�@���'��H��������E�������H�l$H��uGH�D$M��A�����@H�|$�ƈ�����H���x���H�����H�q�CH�L�hx�X���H�|$�cK�L�|$H��M���̵�E����������H��HD�H�D$H�l$E��u1�������c���M���W���D�c�Ic�I�<ƃ�����H��t
�p�H���,���H�l$�'�������� g��;{�H����L���b�ff.���AWAVAUI��ATUS��H��8dH�%(H�D$(1�H�D$�[��H�D$ ��t<���r����H�=�F1��=~�L�t$H�D$ L��A��-��k��������L�t$H�D$ L��A��L�}H���1�I������D9���A�����A��tA����M�u I�mI�]I�EH����H���HD�H��HD���H������r������d��iH������]������OL�l$ L��L�<$L��H�D$�{���H��@���.�V�A��H�|$�|`�H�$�uH�����tH������=H���h�L�=��C�IW�
H�=�fI���eG�E1�E1��1�H��H���z�1�L��H��H�D$�q�H�D$H�D$D��H�D$H�$L��H�t$A��H�xI�����
H�=(f�F�AUH��I�|$jH�T$E1�I��H���|n�L��H��XZ�?��H�CH���RH�L$(dH3%(�RH��8[]A\A]A^A_��t&H�D$ H��t
H�|$ �"�������3d���t�H�|$ ��A��I�H���[�H�=�CH�E1��{�L�t$H�D$ ���f�D�c�Ic�M�t�A���<��I������/��A������ ��L�t$I����H�D$ L��A���4������A���g����
H�=�d��E�H���l���fD�[j�A������H�|$ �������H���Ȑ����������fDL�=y�C����H�|$�F�L�|$I��M���B����$������M��LD�H�D$ L�t$E��u1��i������[���L���O���D�c�Ic�I�|��������H��t
�Zk�I������L�t$�����
H�=�c�D��c����H���uK�H���hK�����7b�H���ߎ�H���CH�H�xx�]��7v����AWI��AVI��AUI��ATI��USH��(L�D$H�l$hL�$dH�%(H�D$1�迠��H��L��L��H��H��
DL��HD�H��U�D$hPL�L$AQE1�j�L�D$(趥��L��H�� H���e�H���?�H�5pEH����H�-��CH�}蟀���L�cM����H�3EL�d$H����H�uL�D$�H�=�E�A�I9�tF�������ƒ�����H����<�H�PH9UuH���D���H�ÐH�L$dH3%(H����H��([]A\A]A^A_�f.��	H�=���b�H��H�}E����H�����u�H���~H������H�6�CH��t���fDH�����I������	H�=���b�H��H�E���H�y�CH��/����H���CH������H��CH������H�	�CH�����H���CH������s�ff.����AWAVI��AUATUSH��H���H�T$`dH�%(H��$�1�H�����LD��m���H��HDŽ$�HDŽ$�����I���j[�1�H��H���u�H���B�H���u��`�H���u��;�H���~u���H���iu�H���Q����H��H�D$�Ou�H���A�H��H�D$0�5u�H���A�H��H�D$8�u�H�D$H��t
H���hA�H�D$�H���t�H�D$��y�	H����t�H����
H��H��H��$��t�H���TZ�H��H�D$@�t�H������H��H�D$H�t�H��� Z�H�߾
H�D$P�nt�H���Z�H�_EH�D$XI�GL���H��$�H����H�-/EH���~L�%EM���NH��
EH�D$hH���H��
EH�D$pH����H��
EH�D$xH����H��
EH��$�H���WH��
EH���H�
p
EH����L��$�H�L$(L��H�T$ �mS�H�T$ H�L$(H9���H9�tuL9��TH;D$h�9H;D$p�NH;D$x�SH;�$��UH9��\�H9�t/H��$��A�H�5�H��H���CH�81��2y�f��H�=
EH������|�H�|$H����C�H�=�EH��H�����|�H�|$H���C�I�ĨuH�����tH��ƒ�����@H�t$`L��������$��H�߃����*M�AUL��UAVPL�D$8H�L$0H�T$XH�t$PL��$���H�� L�L$XL�D$PH�L$HH�T$@L��H�t$��|�L���c�I�GH���H��$�dH3%(�FH���[]A\A]A^A_�D�sb��d���fD�H�=��H�T$ �2]�H�T$ H��H�cE���fD�H�=k��]�H��H�EE�����H�=���\�H��$�H� E����H�=��\�H�D$xH�E�G���fD�H�=���\�H�D$pH��
E�
���fD�H�=F\�g\�H�D$hH��
E����fD�H�=޾�?\�I��H��
E����H�=o�\�H��H��
E�b����H�=.��[�H��H�u
E�2���H���xm��z���H���hm�����H���Xm����H���Hm����H�=w��
�[�H��H�
E�J���H�=O���[�H��H�
E����L����������1�����f��� �7���I�|$�+���L��1��o�H�Ǩ���aJ�L����$��o�H�Ǩ���=J�L����$��io�H�Ǩ���J�L����$��Eo�H�Ǩtp�I�$����D��#���fD�����fD�����fD���fD����fD������i_���b_��d����X_��6����N_������Tl�@��AUATUSH��D�)H9�tKH��I��H����L�H9�t1��u�H�����t�H�%�H=pu�H��D��L��o�H9�u�H��1�[]A\A]�f���H���|$H�t$H�=x����3;�H���ff.���H����|��H��H���Gr����H���CSH�5��H�H���CH�8�:�H���CH��H��95�H�;1�H����H�5�%�G�H�;1�H�E�H�5���iG�H�;1�H�-�H�5���QG�H�;1�H�e���H�5��9G�H�;1�H��|��H�5���!G�H�;�����H��|��H�5K��G�H�;�H�g���H�5:���K�H�;�H�,z��H�50��K�H�;1�H�����H�5���F�H�;1�H���H�5u��F�H�;1�H��H�5�X�F�H�;1�H����H�5���pF�H�;1�H�Ժ��H�5,$�XF�H�;1�H����H�5���@F�H�;1�H��{��H�51m�(F�H�;�����H���H�5����J�H�;�����H���H�5U��J�H�;�����H���H�5s��J�H�;1�H��{��H�5h��J�H�;�H�Њ��H�5\��J�H�;�H�%�H�5���iJ�H�;�H�
�H�5���NJ�H�;�H�ϊ��H�5��3J�H��������ƒ����H���(<�0H�xH�5��P|�H��t9����ƒ�����H����<�H�xH�5��[�|�H�����u�H��tbH��u�H�.�CH�8�ԐH�����u�H��t2H���y���H�
�CH�8�n���f.�H�y�CH�8�U����H�)�CH�8�E����H��CH�8�t����H�I�CH�5J�[H�8�y{�f�H�a�CH�8�D����H�Q�CH�8����H���CH�8�$����H���CH�8�����H�9�CH�8�����H�)�CH�8�����H����@��H�E�CH�H����f.���1��f�AWAVAUATUSH��HH��C�|$H�H�t$H�T$H���H���H�D$8H�}H�L$(�� ��H�����V^�1�H�$H�EH�D$ ��f�H����H9��`H�D$ L�<�L�4�E1�A��uI�����tA�E1����A��L�����I��L�@H� tL�@E��t$�|$�A�D$��������H�D$���t}H�D$���ubE��ub�L���O��1ҿH��I���-A��H��ID�H����.�H�<$H���}�H��H�E�� ����H;]}zH�E �����E��t�L���]�뚐L���X��s���H�D$��c���A�8~�N���H�D$(H�H��H�L$0�� u	H�D$(H�@ J�40H�<$�
}��t���DH�$H���<�H�D$8H���H���H���H��H[]A\A]A^A_�4��L��L�D$0��W�L�D$0��������k����H�}�����H��� u8H��H��1���tB��H��H�t��H�=}���������DH�W1�H��~H���fD���ff.�@AVAUATI��USH��0dH�%(H�D$(1���H�D$������A���R?�L�-�CH�T$H��I�EH��H���H���-J�L�D$I����D������A���"I�������M�D�ȃ����E����I�EM��1�A�� I��M�hL���A��M�^�l�L9���L��H�,�H��L��I� uI�V H�H�<�@����H������z������l�W�������H��M��u�I;X�<I�@ �fDI�UH���H�JH� uH�J 1�E����H��(�L�D�L�d���1�H�t$�H�H��H�D$��|�H�T$H��H���`2�H�D$(dH3%(��H��0[]A\A]A^��L��L���z�H��x�H�D$H��� ukH�H H�@H��H�H�t�H��H��H�H���[�L�e�L��H��H����1��}���DL��H�H�<��)���������������f�H��H�HH�Ѓ��L��L���y��0������6�L����6���a�L����6��AWAVAUATI��USH��(H�|$H�|$��G�H��H�D$L�8A�� �I��A��L�|$H�D$L�4L�4$A�L9��%�B�<w�D�JҀ�v
I��A�L9�u�.���D$L�4$1�L�{�M�n�L9�w"A�~�/u�UfDA�}�/tQM��M�u�M9�u�H�t$1�L��H���S���H��tH���L$L��H��H)��8���H��([]A\A]A^A_�L��M��I��H�4$1�L��L��L)�H������H���o���H���L$L��L��L)�H������P���H�@H�D$����H�=�L��L����€����D$����L�4$���AWAVAUATUSH��dH�%(H�D$1�H���CL�(I���I����Eu�H��t0H�L$dH3%(I�����H��[]A\A]A^A_�fDI���1�E1�I��H�5�	�eD�I����g@H����H9�}lH��H����a�L��I��H�$��N�H�<$�IW�H���A(�H�$I9�tH��H��H���z"�H�$H�tH��A���u���H�EIc�� u�H�EH9�|�H���CH�H���H�����.������^�f�ATL�%��CUSI�$H�����u~H�����tuH��ƒ���th��ucH���V��}���H���'�H��H���*v�H��� u2H�CH�t�H��H�����I�$[]A\H���H����".�f�H������H���CH�5��H�81��f�ff.�@AWL�AVAUI��ATI��UH��SH��(dH�%(H�D$1�H�H� tL��.L���4H�H��H��t�/H���?W�H����L�t$1�1�1�M��L��A�ԉÃ�r�GH�l$H�|$��stHH�5zC�X�Ņ��������u<H�\$D�x�1�H� �
H�[�@H�5�yC��W����H�|$H����U�I�E�
D�H�=��H��������:L�t$H��1ɺM��L��A�ԉÅ���H���Y�H�D$H����H�XH� tH�X�.H����F�M��H�ߺH��A�ԅ�tH�|$��H�D$�rI�E�^fDE1�H�\$H� �����H���.H���F�M����H��H��A�ԅ�tH�|$t	H�D$I�EE��tE�sH�L$dH3%(���+H��([]A\A]A^A_�H�|$H��t�iT�I�ED�r�f��H�=9H�������t�H�=N�H���������L�t$1�1�H��M��L��A�ԅ��{H�EH�E tH�EH��1�H��H)��i$�H�5�8H��H�D$�0M�H�|$@��u5H�����t,H��ƒ���tH�€�H�H�t��u
�d�H�|$��W�H�D$H����H�|$H�5QwCH�l$�WU�t#1�D�x�L�t$��@���G���@���g���H�|$H� u"H��E1��1�1�A�ԉ��h����H���f.�H�|$H���'����}���DH�XH� tH�X�.H���zD�1�M��H��H��A�ԅ�tH�|$��H�D$�sI�E���@H�|$H�������mR�sI�E�����Y�f.���SH����tH�{H� tH�{[�'�������tCSH��H�>H��u'��
H��1�H��u
H�;�ph�[�f����f��ff.�@��ATUSH�/������H��H��I��E1�1�1���S#�H��I�$�gm�H�[1�]A\�ff.�f���USH��H��H��(H�T$dH�%(H�D$1��d�H��H�D$H�D$H�|$��i�H��H��H��H�D$��H�L$dH3%(uH��(�[]��kX�ff.�AWI��H��AVAUM��ATI��UH��SH��.H��(D�D$dH�%(H�D$1��Q�H��tI��H��L��I)�K�<7�,�tsI�<�I9�u�DH���I9�t�PҀ�w�<.t(1�H�L$dH3%(H���EH��([]A\A]A^A_�I��M)�L9��H)�H��L���7,�u�I)�M��~C�|7�/u��|$s���|$r��1�M��H�l$��E1�I)�I�E�� tjH����I9��i���I�EJ��H��H�D$�|=�H�\$H��� uOH����I9�uM���4���L��H��L���+�����I�EI���� u�M;e����I�E ��H�S�f.�J�t5�H�=Z�L�����������+����J�t5�H�=�3L����uV�D��ATUH��SL�bH���)9�I�T$H9�|/L�KD�CL��H��H�H������H��tH�k �[]A\�[1�]A\�f���@��u	H�����u
���SH��H���t<�H����d�[�D��US��H��dH�%(H�D$1��G���wRH�Ճ�t
1�H�F������H�H��H�$�7�H�ƸH��t
��H����H�L$dH3%(uH��[]ú��+A��FU�fD��UH��S��H����H��tH��H���H��[]�C���H���[]�@��UH��SH��H�����H���4�H��tH��H��H��H��[]���H�ʵCH�5k�H�81��1]���SH��H��0dH�%(H�D$(1���e�H��H���4H�H�t$H��H��H�D$�;�����rtV��s��H�=��DH��tq�`�H�t$�H�D$H�D$H�D$�W�H�L$(dH3%(umH��0[��H�=i�DH��u�H�=�����A�H��H�I�D��H�=C1��A�H��H��D�o���H�5��H���Qh���S�ff.��AUATUSH���H�_8H�|$H�t$(�T$dH�%(H��$�1�H�C@�D$4����H�D$HH�C8H�D$PH�GxH��H�D$XH�D$`�zd�H��H�D$(��F�H�-��CH�D$hf�}��H�t$DŽ$�H��$�HDŽ$�4H�FH�FxH��$�H�C@�!�������H�t$H�F���ǀ�����H��$�H�T$H�BH�B8H�T$PH�P8H�T$HH�P@H�D$`H��t:H�t$hH� ��H��H�&�C1Ʌ�H�������H�H�����\���!�C������T$��������H�D$(H�D$pH�D$(��H��$�dH3<%(�eH���[]A\A]�f.�H�L$H��$�H�AH�X�Cf�;�NH�|$hH�t$hH���h�H�-/�C��f�}�T����H�D$hH���H�hH� tH�hH�&�CH�T$xH��H�L���L���<7���H�D$x�uH�����tH����H��P�
��)�H������{H�|$x�aH����H���~H�l$`H����H�D$`�8tV��r����suH��H�\$h1�H�5��H��H��I���w�H�@H���H�tH�=�D�h��D$41�����H�D$`��D$41������4���d�H��tH�|$H�GxD�����fDH�D$H�xxH��t9�D$��t���6�@1��E���f�H�vH��������q���fD�D$4����H�V�CH�D$XH�|$f�;H�Gx���D$4���H�|$8�&]�H��uH��HD�H�T$(H� tjH�R��J���H�|$<�\�H�kuH��HD�H�T$(H� tZH�R����H�|$@��\�H�;uH��HD�H�T$(H� tH�R��|���H���f.�H����f.�H���f.�H�\$hH����}��H���0H�\$H�S8H���(��H�R��� ��H���H�����f.�H��H�=N�1��_-��H�=�CI��H���]KL��H�=��1��lE��L����H���b�H���PH��L��H��H�D$x���:����H�|$h���F����L�h �H��L��H�-tH��H�D$x�}�A�����DH�|$D�f[�H��sH��HD�H�T$(H� u
H�������H�R��H���RR�H�������u+�1�1�H��H���VF�H��H���KN�H�޿H���&(���H�=0�I���b�H�}E1�L��H��H���=�H��H�D$�e�H�D$�\���H�KH�D$ H��$�DŽ$� H�qH��$�H��$�H��$�H���1�H��$�HDŽ$�HDŽ$�HDŽ$�HDŽ$�4DŽ$��P�H�D$ ����~L�H�D$�H�@���H�x�!�AVUH��SH��H�_8H�t$dH�%(H��$x1�H�C@H�\$H�D$0H�C8H�GxH�D$8�r�H�����H�C8�QY�H�{8H�C@H���1/�H�EH�l$H��$�DŽ$pHDŽ$�4H��$h��������H�l$H�U���ǂ���u@H�|$�z��H����H�t$H�V8H������H�r��� ��H���eE�1�H��$hH�t$H�L$H�VH�T$8H�Q8H�T$0H�Q@H��$xdH3%(�1H�Ā[]A^��H�t$H��$�H�|$H�F�z��H���\�����(�1�1�H��H���C�L�t$H��L���K�L���H���s%���H�=}�H����H�{E1�H��L��H���
;�H��H�D$ �b�H�D$ ���H�|$H���H�D$(�D$@ H�WH�|$HH�|$@H�JH�T$P1�H�D$xH�L$XH�D$`H�D$hH�D$pHDŽ$�4DŽ$��}M�H�D$(�����I�ff.�AUATUH��SH��xdH�%(H�D$h1�H�4�CH���tEH��H���:������TH�{xH���MH�D$hdH3%(�>H��x[]A\A]�D�x��H��t.H�S8H���ك�H�r��� ��H���@C��fD�'�1�1�I��H����A�L��H����I�H��I����#���H�=��I����I�|$E1�L��H��H���Z9�L��H�D$�Ma�H�D$�]���H�SH�|$H���H�D$�D$ H�JH�T$ 1�H�D$HH�\$H�L$(H�D$0H�D$8H�D$@H�D$X4�D$P��K�H�D$���������/��-H�ff.�f���AUATUH��S��H��dH�%(H�D$1��hb�H�$��������L�m����A�L���5�H��H���j;�L�-O�CH��fA�}�,H���|D�H����H�{H� tH�{�=9�����61�I�����H��@�����H���Cf�;��H�L$dH3%(���H��[]A\A]�L�e���N���H�<$tH����S������2�H���{����L��~�H�$L�mA���uH�������H���S���fDL�e��~��DH���@T�H��lH��HD�H�E t>H�m��/���fDH���T�H��lH��HD�H�UH�E tH�U����H����?F�H�5�H����Z����USH��dH�%(H�D$1�H�߬CH�H���H����I[�H��t<H���H����H��unH�L$dH3%(H����H��[]�@H�T$H��1��$�D$�J���$�����D$��tgHǃ��f.��$�D$����H���H��H����%�H��u}H���H�T$H�������I����Hǃ��2���H�T$H���$�D$�������f.�苛��H������H�T$H���f�������D�ff.����AWAVI��AUATI��USH��x�T$�$L�D$dH�%(H�L$h1�H�D$0M��tI�L���'�I��M���CL���'�D�D$I)�1�E������r�D$H��CH�H������L��H����&���L��H�����H�T$0H��H����)�H�D$0H����H�L$8E1�H�D$H�L$ �uH�������M���
H�n�C�$H�H������9�D$H�|$L�t$@L�l$H�D$P�}H�D$H�l$@H�5��H��H�D$`H��H�D$X�(�H�D$`H����H�L$H��tH�M���6�H�=��L����������sH�L$hdH3%(���JH��x[]A\A]A^A_�DH��у��������� �NH����I9�����H��J��fDH�H�UH�E uH�U H��H�|$ H�D$8�(�I��H�D$8H�0�� ��H�XI9���L��L��L��L�T$(���L�T$(��tl�<$����H�|$��I�EH9���L�L$D�D$L��L��H��L��L�T$(��H��twH�L�T$(�� ��H�@H���$I�M�A�����<.uA�t$M����������w�L��H�=3�������if�I��H�D$0���f�H��H�������H�l$@H��L��H��� �…�t_H�L$H������H�D$@����H��CH�H����$��u��D$L�t$@L�l$H�D$P���H�D$�t����M��tA�<$����I�}�W�H�H�$L�`H�L$�� tH�$L�`M��tL��L��L���V�M�H�50�E1�L�5�\C�f�I��K�4�H�����L���R
�H��L��H��� �t�H�<$1��uF�H�\$H��tH�D$@H�M������f.��r����fD�D$����M���w����u���D�H�5�L����	�H��L��H���v����H�5��L���	�H��L��H���L���H�<$1��D$�E�T$�r���@L;x�����H�@ ���D����L�T$(H�D$�#���@H����H�B�Z�����L��H�=z��€��������L��H�=����€�������L$���?������^����2���f�H�<$1��D�H�\$H�������H�D$@H�����>�D��ATUH���.SH��H�� dH�%(H�D$1��(�;.H�D$I��tcM��t�/L���7�H����1�1�I��H���������H�T$H�T$H�T$H�L$dH3%(�H�� []A\À{/tH�s�H�=��������x���H����0�H���N�H����*��H�D$H�XH� �E���H�X�<������q���fD�H�=�L�������t^�H�=�L�������t�H�=��L����������I��1�1�L��H���t�������������I��1ɺ����<�ff.�@��1���@�D��H����H��H���������S��H�� H�|$dH�%(H�D$1�H�D$H�D$�M�H��H�D$�T9�H��t H�lj���H�D$dH3%(uH�� [�H�|$H�5���P���9<�f���SH��H�|$H�|$0�t$H�T$dH�%(H��$1�H��CDŽ$H�D$ 4H�H�$H�@H��$��
�����tsH�$H�P���ǂ���t7H�$H��$�H�QH�L$�H��$dH3%(uVH��[�@�t$H�|$���H��$�H�4$H�F�H�$H�D$ �t$H�|$H�C��H��$�H�C��";�f���H���CH���H�8�e�D��SH����H��H��0dH�%(H�L$(1�H���
�1�H��H�S�CH�8�#�����M�t
�������H�L$(dH3%(��uH��0[��:�ff.���UH���SH��H��H��CH�(H��������x+��H�H��H��[]���H�U����H�z���H�5��H���N��fD��H����@��SH����LH��tH���5Q�H��H���z�[H�����H�=��1���%���H����,�H��H�������H�e�CATI��USH�H��H����8�t[]A\�L��H��H��[H�/�]A\�C����U�H�=��SH��H��CH��&�H�
�CH����H�=^�H��H���S�H�=���&�H��H����E�
H�=���&�H��H���E��N8�1�H���� 0�1�H����0�H���Hǃ��H���H���H�5����1�H�5���H�=���<)�1�H�5���H�=���')���7�1�H����/�H��������H�5�H�=�5H�����H�5��C�H�=N���H�5����H�=>��i��H�ʠC�H����H�50�H�;��H�;�����H���H�5����H�5��H�=��������H�5H�H�=���1���.�H���DH��H��[]�`�@��t*@��uD������tZH��td@��tnH�G�f�H�����u�H��t!H��u�H�͠CH�ÐH�I�CH��DH���CH��DH�a�CH��DH���CH��DH�Y�CH��D���0�fD���H�fDPXH�5�H��H���CH�81��?�f�PXH�5�H��H�t�CH�81���>�f���SH�>H���;�H�{�:�1�[���SH��H�(H��t��H�{0���H�{@[����[�ff.�AUATI��UH��SH��H��� tXH��H����L�mH��!�3L��H��L��H�4���H��tH�E�� u�H�E ��f�H��L��[]A\A]�f�H�^�f.�AUATI��U1�SH��H��dH�%(H�D$1�H��H�$@�Ń�uiH�����t`L�+D���tU��~0��uKH��H�5�H���9C�A�� tBI�$�H,$H�H�L$dH3%(H��u5H��[]A\A]�f�H��H�5FH����B�1�H�<$t�H,$I�$H���4���ATI��H��UH��H��SH�����H��t[1�]A\��L��H��H�����[1�]A\�ff.�SH��H�H��t
�^C�H�CH�{(H�CH�C H�CH��t4�0�H�C(H�{0��H�{@H�C0H��t
�	�H�C@[�ff.�@��SH���s���H��[��B�f.���SH��H�H��t'�
0�H�{�0�H�{ �h�H�;[�?8��[�fDPXH�5��H��H��CH��H�81���;�ff.�@SH��H�F8H�|$H��u
H��H��[�@H�1�DH��H��L�D$�H�=��D�}��H�{(u�H�=�%�z���f.�@��uH�����t�����uH���H��H���CH��H�5`�H�81��4;�@��H��t1�H�5>����Y�f��ff.�@ATI��UH��SH��H��dH�%(H�D$1�H�$4H��tH��H��H���D�u0H�}H��L�����H�t$dH34%(H��u H��[]A\�DH�$H�}L�������1�f�SH���
�uH�����t�����u[�H���CH��H�5~�H�81��4:�@AVAUATI��UH��SH��H��dH�%(H�D$1���H�=O�DH��H���t�u0H���x�H��H�L$dH3%(H��u`H��[]A\A]A^�DL�,$H���D�I�}I���8�H��H��tI�EH�EI�<$H��tL��H�����f��{��H��I�$����0�ff.�f�SH�� dH�%(H�D$1�H�$H�t$H��uH�D$dH3%(uJH�� [��H��H�5�EH���>�H�|$t�H�;����H�5��H��H��CH�81���8��^0�ff.�SH��H�H��tJ�N��H�CH�{�=��H�{ H�CH��t
�'��H�C H�{(H��t
���H�C([����SH�����H��[��>�f.�UH��SH��H��H��H��H���!�H�}H��t	H� uH��[]�DH�{�~�H���FH�H��H��1�[]�5�fDATUH��SH��H��dH�%(H�D$1�����ttH����������[
�I��H��ts1҃�tL���tBH�}H��tiH�pH����uI�|$�"�I�t$H�}H��H�$�z��H�$fDH�L$dH3%(H��u(H��[]A\�@���f���H�E��.���UH��SH��H��軩��H9�t$H9O�DtH9>�DtH���l	�H��tH�EH��1�[]�f�ATL�fUH��SH��H� tL�fH����5�xt'H��CH��H��H�5S�H�81��y6�f�H���8�u�A�<$#tH��[]A\�H�֎CH��H��H�5��H�81��76��ATUSH����H�=V�H���u	H�����u,H���D���H����H��I���!
�I9�u!H��[]A\�@�����H��HD��H�L�CH��H�55�H�81��5�SH��H��H�t$��u0H��� t9H�KH�SH��~H��u6�9e�����u�5�9qtI�����H��[�fDH��H�K����H��uـ9Eu�H�T$H��t�1�H����H���D�[��5��f9qu��5��@8qu�H�|$�l�H���3��f�SH��H�� H�7dH�%(H�D$1�@��u	H�����uNH�SH�CH��yH���(H�{ H�WH{H��H�S H�C�H�L$dH3%(��H�� [�H��ƒ���u�H�W �� ��H9V��H�vH�BH�C ��f�H��u�� L�D$H�� �HO�H�=��DH�TH�T$H���D���H�{(�[H�D$H���GH�|$��H�L$H��� t#H�QH�qH�{H����H�A�����H��H�qH�{H������H�������H��DE1�1�H�=u�D�`��H�{(��H�����u7H�����t/H��у���u"�� ��H�H���t
���H�Ǩt9�����w���@�@�H�L$H�{H�H�C �� �(����I�����K���f�H����H9�~!H���k���H�x~�H�H�{����#*��~�H�=q������%�H�=������AWAVAUATUSH��8dH�%(H�D$(1�H���	H��H�6H��@��uRH�����tIH��ƒ���u<H�S �� ��H�FH)�H9��NH�~H�H����Hk I���G@H�{L�cH��	M����L9��	H��I�� M)�H�� HO�H�@L9�IL�H���H�D?L�D$H��D�H�=H�DH�D$�n��H�{(�(H�D$H����H�|$�*�H�D$L�0A�� ��I��A��M9��kH�{ L��H{���H�t$I��H� ��H��L��L����M9�}sH�t$I)�M�H� �#H��M���6L�c�PH�{ H��H{�`�Hk H)kI��H�L$(dH3%(L���NH��8[]A\A]A^A_��H�CH�C �fDH�v�\����L�p�����1�1��'��I���f�H�@H���H�D-L�D$ H���D�H�=p�DH�D$ ���H�{(��H�D$H��t'H�|$��L�|$I��� uQH����H9�������@H�v�������+�H�3����H�{L�L���A=����@I�G�f�H����H)�H9��H�~�U����H���+�H�3�(�����&�H�=��?�ff.�@AWAVAUATUH��SH���*���L��������~a�X���z������E1�1�M��~+f.�H�����B��I��H�H��H	�M9�u�H��H��[]A\A]A^A_�D�����{~m�؃�~Lc�E1�H�����A����t��F�<�L��H��I��D��H��H��H!��e���D��H�H��H	�M9�u��1��z���f���Hc��f���DHc��Y�����H���CH�5�H�81��-�ff.�SH��H��dH�%(H�D$1����H�{(H��H���D�tH�L$dH3%(H�$uH��[�H��CH�5.�H�81��-��	%�f�ATM��UL��I�ȉ�SH��H��H��H�=a�D�L����������ڃ����H���"���)H�K�tI����ƒ�����H����<�	H�PH9��H�}�[]A\�@H�����u�H��tjH��u�H���CH���f�H������z���H��t-H���k���H�ōCH�
�`���DH�9�CH�
�L����H��CH�
�<����H�يCH��\����H�	�CH��L����H�1�CH��<����H�!�CH�
����H���CH������H�q�CH�
�����H�	�CH�
�����H���CH����H��CL��H�5�H�81���+�H��CL��H�5V�H�81��+�ff.�ATUSH��H�� dH�%(H�D$1�H�|$H��tL�d$H��H�t$L������u*H��H�L$dH3%(H����H�� []A\��H�l$@��t=@�����������H����@��u5H��CH�8�-f�H�����uH��tyH��uH�
�CH�8�H�}���H�=�DL��H���5��N���H�D$H��H��P�;���f.�H���CH�8�@H�9�CH�8�H�ՄCH�8�H��CH�8���!��SH��H�v@���H��[H���g��AWAVAUATI��UH��SH��H��XdH�%(H�D$H1�����A�Ń�"��[�?
H���Hc�H�>��@H�����H��I�����H�s0H�K@H�S0H��I�n�H�v��I��H�CH�hH�CM����f�H��H���H��I���L��L��H���[��H�CH�P�H�SH���u�H�CA��}�H���cL��H�������H���(H��I����H�5��D�H��H����#���H������H��H���k���H�D$8M��tH��1�H���tA�$H�u�DL�D$8�H��H�=��D���H�{(��H�s0H�K@H�S0H��H�v��H��I���~�H�=��DH�T$@H�����tH�D$@L��H��PI��H��L���z�I���I��4�<H�L$HdH3%(L��� H��X[]A\A]A^A_�H����H��A������H��H�<I���n���A��-A�"H�Ÿ"DE�H�}H�E tH�}1ɺL����1�H��I���j%�H�C0H�K@L��H�S0H�p���H��H���0���I���8����H���8���H��H�|����I������H�{0�4H�oH���[��H���3H����1�H�s@H��������H��������������H�K@H��H�S0H�����H��1�H��H���xH��H���}���I�����DH�����H��H���-�H��H���R��H��H���'�M��tA�$���jH�s0H�K@H�S0H��H�v����fDH���0���H��H�����H�hH� tH�h�H�=-�H����€����e
�H�=�H����€�����
�H�=�H���
����€�����
�f(����H��H�C0H�K@H�S0H�p�'����H���H��I���M��I��H����
A��uI�����tA�$�����:L��L����L��H���k4�H��1�H������I���,f�H����H����H�����L��H�����H�E�� u�H�E��fDH���H��I����H�T$8H�s@H�D$8H�������
H�������
�������
H�s0H�K@H�S0H��H�v��H�5*�D�H��I���J��{
1�H��H���E���H���DL�D$@L��H�=��DH�D$@�@��H�{(�2
H��L�����I����f�H����H��H����H��H����M�������A�$���w���H�~|CH��H�5̪H�81���#�f�H����H��I���m��H�s0H�K@H�S0H��I�m�H�v��I��H�CI�D�H�CM��t&@H��H���
L��H���2�H�kH���u�H��L������H�CI������fDH���PH��I�����H�T$8H�s@H�D$8H����I��H��tH��H����H�5��D�L������H�C0H�K@H�S0L��H�p���H��I���H�q�DL�D$@L��H�=��DH�D$@���H�{(��H�s@L�����H�|$@H�5`�I��H���%(�H��L����I��H���-���H�|$8�NH���I�����@H�޿��I�����H����H��H����H��H������M�������A�4$������H��zCH��H�5��H�81���!�f.�H�t$@H��H���D$@���D�D$@I��E���'A���m���I������`���A�E�����P���L��H���5���I���=���DH��1�����I���&���fDH�{0�4H�oH���k��H���CH�����H��I��H�D$ ��L��H�D$���I�Ũ�}
H������q
�����	�c
H�|$ �2�I��H��� �H����H9D$��
L�|$H�K@H�S0H��L��K�D?�HC��L��H�D$(�@��H�|$ H�D$��
H��H�$��1�I�D$H�|$H�D$���FfDH�D$H�<�L�<����H��I���?L��H��I���A��H���~H�<$H�����5
I�$ ��H�T$J�4:H�<$H������H�kH��H9l$��I�$ �p���I�D$ �k���fDM���oA�4$H����	A�$H�����H��H���@���I���H����H�޿�#���I���+���H���0�H��H�����H��H���Z�H�{0�4�D$@A��L�oL���J��M��tH�t$@H��H���
A�$�|$@����H�}�� ��H��L�]��H���_L�L��L��E1�I����A�� �H��E1�H��H���H9��O��J���4w�M��I��M���L�fA�����H��I��L����H�C0H��H�h� �H��H�����H�K@H�S0H��H���2�I��M���������H�����H�{0H�T$@H������H�|$@H���"�I�����f.�H�����H��� ��I������H���H���@�I��I��A��uH�����tH��ƒ���t	���H��1�H���I�I�Ũ�H����������P�������tI�uL���,�H�����uXL�����A�U�������u0��������H����<��H��4��H���9���M�eM�����I��������L��L������v�H�'}CD��H�5؟H�81����H�|$H���+�����I�T$ �t���fDA����H��H�����f.�L)�H���
�D��H���z��H�K@H�S0L��H�����L�|$(H�t$L���~�H��L����H�CI����fDH��E1�L���4���f�H�N�E1��&���@I�D$���fD�
�������H�|$H��H�$�*�����DH��1�H���#����fDH������~���H���J�H���f����g����1�H���n���f��
���K���L�]H�}�-���H��H��������1���	�H���d���H����H�t$8H��H�$�:�H�$f(�H��� �OH��H����L�d$8�L$@L��H)�H)�tH�h�H��~A�<$���L$@H�0fH~�H9����fH~�H��<������uH��H��H����H���n�H���k�1�H����I�Ũ����������I����A����I�}I9��#@��uH�����tH��ƒ���t	����L����	�H���)fDH����H���`�H���h��H��H���
�H�E�� u�H�E��1��*���H�@���H������m���H����H���Z���H��zCH�8�O�����N�����D�����:�����0�����&���H��qCH�8�����z�H�kyCH�57�H�81����f(�H�|$4I��E1�fT:��$�p��%���H�|$@����T$@�$�H����A�T$H��I�L$H	��QH��L�aH	�H��H���AH	�H��v`� f�A)��$H���H*�D���L$����$H���L$�X��T$@~:A�$H��tH���j���L���I�����A�T$H��I��H	���D$4f(��$�x�����$f��f/�vfWE��D$@����H�|$ ���M��L��H�5s�H��H�pCH�81���H��qCH�8����H�auCH�8�p���H��uCH�8�a���H��wCH�5̜H�81��:�H�CtCH�8�:���H��wCH�53�H�81���H�=4����H��oCL��H�5f�H�81����H�=,����H�aoCL��H�5�H�81��������L��H�5�H��H�$wCH�81���H�=����H�|$ ���H�5��H��H�oCH�81��q�H��nCH�5>�H�81��Y�H��vCH�5	�H�81��A�H�|$ �W��H�5؛H��H��nCH�81���H��nCH��H�5#�H�81���H��nCL��H�5�H�81����fD�1���@AUATU��SH��H����H��H���1�I��H�C(L��L�`���u*H�{(L��L������u'H��L��[]A\A]�f��L����
��ǐH���(�H�h�H��~��H��H���<H��I���Q���L��H���v��H���u؅�~�L����
�H��L��[]A\A]�@��U1�SH��H��H�������;t��Iu'H�߽������;u��uIH��H��[]�����:t#��H�"uCH�5�H�81���f�H����H��[]���H��tCH�5�H�81��h��AWI��AVI��H��AUI��ATUSH����H����H��L��H��H�D$�c�H��� ��H��H�S��H�����:K��A����H�|$��I��ƒ������� I�H��t^L�����1��L��H���z�H��H��I���������D$�p���L���X��t|�t$L�����M��t�A�H��u�H��[]A\A]A^A_��H����L��L��H������k���DH�SH�C����H��sCL��H�5��H�81���H�ysCL��H�5_�H�81����ff.�f�AUI��ATUH��SH��(dH�%(H�D$1��;��H����H��&C�H1�I����H�X H�D$H�C L�#�R��H�C(�y���H�C@H�C0H�C8H�CH�CH���]��H��A���R����A�������x��H�����t	���5I��tL�k8�1�H�����H��H�����H�D$H�D$H�D$H��H�L$dH3%(��H��([]A\A]ÐH�59�DH���Q���H�5�DH���:���H�5�D1�1�H�����H��%C�H1��|��H�X H�D$H�C H�+�#��H�C(�J���H�C@� H�C0H�C8H�C��H�C����H���3��A��E��H��iC�H�5՘H�81�����f�����A���1��H�=������ff.�����O�����wH��H�>���uH�r���R������f���AWI��AVI��AUI��ATI��USH���M��H��tx� H����H�=��DH��L� L�xL�pL�hH��tH��H��H��[]A\A]A^A_�$��@����1�H����1�H��H�6�D���H���Y��H�="�D�H�QhCH�5B�H�81������H��H��H��H����H��tZH�G���H��yv>H�G{H��zvTH�N�@�9H���BtNH���tFH���ƒ�	u�
�D���@�>�@���������D�ڈø�����ff.�f�H��(I��dH�%(H�D$1�L�D$L���,�����x'I�Hc�I�IL���v��H�D$dH3%(uH��(�H�2gCH�50�H�81�����@ATI��UH��H��SH��H���x���H�H�KH��[L��]A\���f�AWf(�AVAUATUSH��H��XfT
��dH�%(H�D$H1�f.
��vaf��H��f/�w<�H�=
��{���H�D$HdH3%(�kH��X[]A\A]A^A_���H�=͐�?�����Df.��~f.V�zDuBfP�H���t�H�=�a�����@�H�=������o���f.�H�L$H�T$1�1�L�D$��2D�d$I��E��t�D$ -A�H�l$D�t$L)�A9�
A�����A�Icԃ�A�D$�L HcՅ�~jH�A��L�l$ �D .Ic�L�I�w��D��D�d� A�N�1�Ic�H�p�H)�L����A�L���H�Ic�H��L���������DL�l$ H��t�Hc�A��L��E��cIc�A�L$L�l$ �D 0A�D$Hc�H�L��D .E����Hc�H����D�$)�@H���H�=&���������Ic�Ic�L�l$ L��L�H��D)�H�L$��E���4���E�t$H�L$Mc�Hc�Ic�B�D$ .F�d5L�I�4�z�����D����t1��ƒ��09�r�D)�Hc�L��K���L���L$�E�L$�B������AVAUI��ATI��H�qUH��SH���c����UH�uL���H�H)�A��u	I�����u0I��4tH��u
[]A\A]A^�@H��H��L��[]A\A]A^���f�I�$�ƒ���u�� t�D�mH�=J�DL�uA���A��H����L��H���H�uD����y���f�AWAVAUATUSH��H�|$8dH�%(H��$�1�H�D$P4���;��I��A��H�t$x��H�t$8I�~H�T$XA)�D��$�H�t$p������H�|$8H���sH���qH���@@���@����@��u
H���������������	H��zH�5y�D����O	H�5p�DH�|$8��i�A���NMc�H�|$8H�L$`M��H�5?�DO�|?�L�
��H�D$h4L�|$`����H�D$`��xH������lH������]M�f(H�|$8L���:��H�|$8H�T$PH��H�����H�|$`L��H�����H�|$`H�T$hH��I������I��H���,	H�D$hH�D$PI�I�NH�|$OL���D$OIL���i��H�t$8�u1�L���H�|$`H�7�� ��H��H����L�����H����I�~H�t$8H�W����)�I�H�|$h�I�N�D$h@���H�|$XL���8���H��$�dH3%(��	H�Ę[]A\A]A^A_��H��H��H��H��vWH��/�D��L��H���1������D$hFI�I�NH�|$h��m����D$h0�ސ�D$hT��f�I�H�|$hI�N��D$hi�5��H�|$8L��H��u����8���������q���L���*����DI�~H�t$8H�\$hH�W����H�|$8I�v(�;��H�|$8H�T$PH��H�D$���H��H�D$8H�x���H�=L�DH��H���q��tCL�d$8H�D$hL��PI�~ H�D$8H����L��H������H�|$8L9�tH�|$P4��H���;H�|$8H��ȃ�����H�đHc�H�>��H�5�D��)��^H�5�DH�|$81�1�L�
P�M������H�t$8L��dH�ù�D��L��H���j���f.�H�D$8H�D$hH�D$8H�������H�T$H�t$PH�L$pH���a������H�efCL��M�fH�0��I�L��H���D$h/�^��H�|$8���A��H�D$8H�PH�
�� ��H��H�z��H��L�����I�L��H��D�l$h����I���I�M�f�H��L���D$hl����H�L$8H�H�� H��҃���+��@�KH����H�D$H�AH�D$ H�D$H�t$ H��H�H��D�H�����A����u�Ic�H�I����T$hI�L��H���a��L��L�����H�D$H�������H��E1�H�l$0H�D$(H�$��I��L;|$��H�D$ L9|$(��D$F�,�I�H�<$A��L���\$h����I�H�<$L���|$h����A��u�|$u���t���@��uH�����t	���~�D$hcI�I�N�H�����H�|$8���H�D$`H��� ��H��H�x��H��L������H�D$`H�D$hH�D$`���H��cCL��H�0�
H�D$8H�x�*�uH�����tH��ƒ���t	��@�7�D$h}I�I�N�H������H�|$8���L��H���$�H�|$8H�T$pH�5#	�~��H�D$8H�xH�����D��L���@�������I�I�N�H���D$hf���H�T$8�Ѓ����6�BL���R�����D$hm���H�dcCL��H�0�I�I�NH�߾�D$h"�(��H�D$8H��� ��H��H�x��H��L�����<����L��H���o�
L�d$8H��H�5��H�D$hL����H�t$xH�|$h��H�t$hH�T$pL��������L��H����S�<
H�T$8H���`�,H��
��H��L��H����H�|$8�<��I��H�������H�@H�l$E1�H�$H�$I�$ uI�T$ J�<�L��J�,��9H�T$8H�`�NH��H�<*L��D��I�����I9�u�H�l$�!���H�^CL��H�0�/I�I�NH�߾�D$h[���H�T$8H��� �@H����H��L��H��E1����H�T$8H��NH����I9������H��J�<�L��D�����H�T$8H��� �H��H����H9���I���� u�L;b�f���H�R �I�~H�t$8H�W���H�|$8M��1�H�5��DL�
��1����H�t$8L��1ɿUH�D$`�H�|$`D��L���f��������I�FH��H�PH�����I�I�NH�|$h��D$hf���H�D$8�ƒ������@L���b����DH�������I��I������@H�wH��
���H�J����H�t$PH�L$pH��H�������I�I�N�H���D$hI������H��f�H9��g���H���H��H��?H)�H	�H��H�$�~$�?���H�R���1��]���H�pH�x�:������H��I�F H�D$8����H�l$0���H�AH�D$H�AH�D$ ���H�Z���H�pH�x�F���H�B����H�rH�z����H��f�H9������H�ѸH��H��?H)�H	�H��H�$�~$����D$h{����H��^CH�5ӁH�81��#��I���S���H��VCH�5�H�81����H�|$8���H�5��H��H�pVCH�81����H�_VCH�5��H�81����H�GVCH�5x�H�81���H��XCH�5��H�81����a�H�5��H��H�VCH�81��v��H��UCH�5�H�81��^��H�?�����H�5�H��H��UCH�81��8���AWAVA��H��CAUI��1�ATUH���0SH��(dH�%(H�D$1����H�X H�D$H�C���H�C�׈��H�C 1�H�CH�C(���H�H����H�5�DH���@���H�kH�5��D1�1�H�����H�{��H�I��L�{H�l$��D$L��H������D$H�L���H������L��D��H���|�H�{H��uSH���K��H�D$H�D$H�D$L��H�L$dH3%(u=H��([]A\A]A^A_�f.�I��H���e���DH�3��H�;1��~����7��H��VCH��PH�5C~H�81���蓼����ATUH��S��H��@dH�%(H�D$81�H��H�D$ H�D$H�D$(H�D$H�D$0�>
�H�D$�������%1�L�eL�$$��vH�D$H�D$H���|H�|$�A��urH�|$�����H����H�t$H����L�����H�L$8dH3%(��H��@[]A\�@H�UH�T$��t�H�UH�T$��urH��u���t���������u�H�t$@��t�H������������~-H�D$����D@��t������F��������:���H�|$t
H�|$�P������_���z�����D��UH��SH��H��H�s�R�$��SH�sH����H��1�[]�ff.��AUATU��SH�������1�H��t?H��I��L�.H��tDH��t?�:l��H���2��L��H���7I�4$��H�����H��[]A\A]�f�H�=��D��AWAVAUATI��USH��H��8H�~L��dH�%(H�D$(1�H�T$�{��tOH�H�|$�H�K�D$;���H�|$H�����H�D$(dH3%(�H��8[]A\A]A^A_�@L�����H��H����H�s(H��L�{���I��H��tH�����=��A�L�t$H��L��L���D$:���H�u�� uaH��H�}��H����H�{L��H�W���I���=���H�޿H�\$�D$ ����T$ I�vL���2�������DH�uH�}�fDL�t$H�L���L���D$I�[����I����!��H�"PC1�H�5�{H�81����UH��H��SH��H�=��H�����H�����H��H��[H��]����ff.��AVAUATUH��SH��H��H�dH�%(H�D$1��ȃ���t	I��@��ty��uJL�uL�l$H�{���H�UL��L��I�ľ�D$e胾��H��L���H���H�[�����t�H�D$dH3%(��H��[]A\A]A^�f�H������z�����tĀ��l���H�GH�xH�X@��
H��uOI�D$H�@H��tH�xw:I9�t&H�CH�x�
H��u#H�CH�@H��tH�xwI�\$�������H��NCH�5?zH�81����s��ATI��USH��H��dH�%(H�D$1�@����@������������H����@����H�oH��H���H���H�����H��L9�t.H��H�KH�|$�D$C�
���H���%���H��H������H�D$dH3%(��H��[]A\�DH�����u�H��t)H���t���H�AVCH�(�i����H��MCH�(�Y����H�iSCH�(�I����H��RCH�(�9����H�1OCH�(�)����H��QCH�(�����,��ff.��AUA��ATA��UH��SH��H��(H�z dH�%(H�D$1�H��tH�T$������@����@�����������H����@����H�mD��H��H������H�H�K�H�|$D�d$謻��H���$��H��輽��H��H���a���H�D$dH3%(��H��([]A\A]�f�H�l$@���\���H������{���H��t.H���l���H��TCH�(�a���fDH�9LCH�(�L����H��QCH�(�<����H�QQCH�(�,����H��MCH�(�����H�IPCH�(�������ff.����AUI��ATUH��SH��H��L�"�e��H9�ttH9U�D��H9@�D��H���j��H��tMH�EH��tfH��H��H�EI�l$�w��H��H���|���A�T$I�t$L�����H��1�[]A\A]�DH9�DtYH�ДDH9�t1H��1�[]A\A]�I�<$�}���H�5�{H��H�tMCH�81��B��I�<$�Y���H�=�{H��1��(���I�<$�=���H�=F{H��1�����f.���UH��f�1�SH��H��H�3dH�%(H�D$x1�H�|$PH��)$)D$)D$ )D$0H�D$@��H��H�$�o��H�T$ HH�L$xdH3%(u
H�Ĉ[]�������SH�=�u���H�=��H�����H�=��H��D���H�=a�H�ГD�k��H�=V�H���D�S��
H�=�tH���D�;��
H�=tH�p�D�#��H�=&uH�P�D���H�=����H�=
EH��D����H�=`EH���D����H�=SEH�ߒD���H�=HEH���D���H�=��H���D���H�=��H��D�j��H�߹����H�{�H�5tH�U�D�x��H�߹����H�9��H�51��]��H�߹����H���H�5-t�B��H�ߺ	H�5!t���H��[�H�5t�	��f���������R�f�������f�ATI��USH����u	H�����u1�I�,$H��[]A\�6�fDH��ƒ���
u�� t�1ҾH��蟪�H=�v�H�h�H��������?H�t-H9�w
H���G��H���H���Z��H����DH��dH�%(H�D$1�H���T���f��f/�wmf.�z$u"�j�H�D$dH3%(ueH���D�[��H�$H��xf���H*��Y
	}�X��H�ƒ�f��H��H	��H*��X���H�^KCH�5�yH�81��5�������H��H�����{��H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駦����H��H������H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H���'�����H��H�����k��H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駥����H��H����˫�H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H���'�����H��H�����K��H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駤����H��H������H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H���'�����H��H�����K��H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駣����H��H�����H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H���'�����H��H�������H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駢����H��H������H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H���'�����H��H�����۬�H�0fH~�H9�tGfH~�H��<������tH��H��u$H����fH~�H��H��H��H���f�H��駡����H��H����
@�f/�wk�m��H�0fH~�H9�tIfH~�H��<������tH��H��u&H��ÐfH~�H��H��H��H���f.�H�����H�8ECH�5�sH�81����ff.�@��UH��H��SH����t{�v���H�������%��H�0fH~�H9�tafH~�H��<������tH��H��u>H��[]��fH~�H��H��[]H��H���������f�H��[]�E��D��SH��H��H���,�H���D$���L$��H�0fH~�H9�tOfH~�H��<������tH��H��u,H��[�fDfH~�H��H��[H��H���f�H��[馟�fD��H��H�����
8uf/�w{f/2�wq�3��H�0fH~�H9�tOfH~�H��<������tH��H��u,H����fH~�H��H��H��H���f.�H�����H�(CCH�5�qH�81����ff.�@��H��H������
xtf/�w{f/r�wq�s��H�0fH~�H9�tOfH~�H��<������tH��H��u,H����fH~�H��H��H��H���f.�H���G��H�hBCH�5YqH�81��?��ff.�@��H��H�����D$����u�f(�fTq�f.�r�L$�^��^��X��X��^�sH�0fH~�H9�tIfH~�H��<������tH��H��u&H��ÐfH~�H��H��H��H���f.�H���g�����SH��H��dH�%(H�D$1��?�H�|$��Hct$H�0fH~�H�\6H9�t_fH~�H��<������t3H��H��u<H�D$dH3%(u6H��H��[�W���H��H��H��H�����賜�H����9��f���H��H��dH�%(H�D$1�H����f��f/���f.����@��H�$H��x_f���H*�H�0�X�fH~�H9�tlfH~�H��<������tbH��H��uIH�L$dH3%(ukH���H�ƒ�f��H��H	��H*��X��D�m�������ś��fH~�H��H��H���H��?CH�5�nH�81����� ����H��H��dH�%(H�D$1�H���
�f��f/���f.���萛�H�$H��xgf���H*��Y
�pH�0�X�fH~�H9�tlfH~�H��<������tbH��H��uIH�L$dH3%(ukH���H�ƒ�f��H��H	��H*��X��D�e������譚��fH~�H��H��H���H��>CH�5nH�81����������H��H���`��
pf/������f/���f.�{Nf.�{`�+��H�0fH~�H9�t9fH~�H��<������tKH��H��uH����u����H���ՙ�Du��.�H��齙�DfH~�H��H��H��H���H��=CH�5DmH�81����f.���H��H���p��~
�f(�fT�f.Аv&fP���D���H���9��f�f��f.���f(��-�f(�fT�f.�wxf.�z(u&f/���f/��r�
�nf/����E��H�0fH~�H9��{���fH~�H��<������tYH���^���H��H���H,�f���-7�fU��H*�f(����fT��\�f(�fV��P����H��H��H���f�����fP��������������,�H�m��H����1���H�'<CH�5�kH�81����ff.���SH��H��dH�%(H�D$1��D$��f(�fT
+�f.
�vAfP������舗�H�L$dH3%(��H��H��[����f�f.�zFuDfP��������H��:���H��H�L$dH3%(��H���f.�H�|$�V��H�0fH~�H9�tJfH~�H��<������tFH��H��u'H�D$dH3%(uPHct$H��[H�t6�+��裖�H����fDH��H��H��H���H��:CH�5�jH�81�������f.���SH��H��H���L�H���D$�>��L$f�Һf.���E„�tAf.���E„�t3fP��t0H��h!��IfP��H��h!��IHE�H��[���;��H�0fH~�H9�t/fH~�H��<������t+H��uH��H��[�fDH��[鎕�fDH��H��H��[H���fD��USH��H��HdH�%(H�D$81���u	H�����u}H���=�f��f/���f.���f.��Q���H�0fH~�H9��fH~�H��<��������H���^H���X�������u���H�s������#@��uH�����t������5@����H���=H�{�o�H���D$���H���Y��\$f���%��f(��\��Y�f.��Q��z�X�f(��Y�f.��Q��>H�0fH~�H9���fH~�H��<�������3H��H����H�0fH~�H9���fH~�H��<�������H��H���}H��赺��f(��w��H�L$8dH3%(�H��H[]�@�-���H����fDH��H��H���f�f(��\$�!���\$H���C���f(����H���r����L�D$0��<H�D$0H�=�|D�ԝ�H�{H�����H���D$�Z��H�����\$f���%(�f(��\��Y�f.��Q��;�X�f(��Y�f.��Q���H���P���fW���C����Ff.�����fP������H�{�2�H���D$����H�����\$f���%��f(��\��Y�f.��Q����X�f(��Y�f.��Q��s����\$�T$�U���T$�\$�Q���@H��H��H��H��H������H��H��H��H�����H��H9������H��H��H��?H)�H	�H��H�t$�~D$�������H�d5CH�5ueH�81��;���T$����T$����L$(�d$ �T$�l$����L$(�d$ �T$�l$�\$����\$�T$�T���T$�\$����L$(�d$ �l$�\$�T$� ���L$(�d$ �l$�\$�T$�@����\$�T$�����\$�T$�����L$(�d$ �T$�l$����L$(�d$ �T$�l$�\$���ff.���ATUH��S��H�� dH�%(H�D$1�����H�D$�������6L�e��uhL�����f(�H�0fH~�H9���fH~�H��<��������H��H��u]H�L$dH3%(��H�� []A\�H�m����L���k�f(ȃ�u�H���D$�T��L$�^��i���Df(�����D�[���~ZH�D$L�e��u9H���(����H�|$�!����fH~�H��H��H���E���f�H�m��u
H��u��Z���H�|$t
H�|$����������������l���ff.����H��H��1����ff.�@��H��1���f���H��1���f���H��1����f���H��H��1���ff.�@��H��1��B�f���H��1���f���SH�=1b菲�H�h3CH��0CH�5��H��H�H��|��H��1CH�;H�5.�H�H��h!��I���H�;H�5��H�J��XT�-����H�;�H��H�5�a����H�;�H��H�5�a���H�;�H�{�H�5�a���H�;�H���H�5|a���H�;�H�E�H�5Va�i��H�;�H���H�5@a�N��H�;�H���H�5*a�3��H�;�H���H�5a���H�;�H�Y�H�5a���H�;�H���H�5�`����H�;�H���H�5�`����H�;�H���H�5�`���H�;�H���H�5�`���H�;�H���H�5�`�v��H�;�����H�b���H�5i`�[��H�;�H��H�5R`�@��H�;�H��H�5<`�%��H�;�H����H�5'`�
��H�;�H�K�H�5`����H�;�H���H�5�_����H�;�H�E�H�5�_���H�;�H���H�5�_���H�;�H�_�H�5�_���H�;�H���H�5�_�h��H�;�H�I�H�5�_�M��H�;[�H���H�5s_�1���������H�H��tXH�WH�wH�D���f�H9�t;H��8H�8t�H�HH��t�H�H������u�H�QH��H��t��B!H9�u��ff.�@UH��SH���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H�.C�xu#�@��uH�D$dH3%(uwH���[]�f�H�)0C��H�=8_H����H�;H��H��H��$���$H�D$H�D$ �D$0H�D$�׭�H�3�
�j���y������AVM��AUI��ATI��UH��SH�����AVM��H��AUH�
[sDA��H��H��^1�诎�ZY[]A\A]A^�@H��(�dH�%(H�D$1�H��菓�f��f�H�D$dH3%(�H*$�Y
��H*D$�^|k�X�uH��(�����ff.��SH�����u[Ð�;��8脶�H��H�=^[H��1����ff.�@SH�H��t'H�X,CH��xu�>tH��[酨�D[�fDH�����H��[�g���SH�GH��H��tH�@HǀHǀH�{H��t	���uH�{H�s �j���H��[����k��3H�=BbH��1��8�����fDAWAVAUATUH��SH��H�H�H9���A��H�Z�L�x�L�-�]CL�5�a�.DH�CL9�tCH���;���I�G(I�W(L��L�x�H9�tGH�S0H�PH�E��t�L9�u�H�{H��t	�$��u@H�{H�s ���H���K���f��EH��[]A\A]A^A_�f.��{��3L��H��1��L����f.�SH��dH�%(H��$�1�H��tPH��H��H��蝩�u9�D$�����@u%�t��t�H�����������D1�H��$�dH3%(u	H�Ġ[��]��ff.�f�H�t?H�=$pD�骚�f.���SH��裤�t#H�C�uH�����t�����u	�=�oDu1�[��H�x �����DAWAVE1�AUATE1�USH��h�|$H�t$8H�T$@H�L$HL�D$PL�L$XdH�%(H�D$(1�H��$��D$H�D$H�D$0H�D$ H�$��D$��/����HT$ ��H�*�D$H�}��1�DH��H�|�u�N�,3H�<$J�4��/��I��H��tuJ�<�H��A��M��H���,��L�<$D9d$u�H�L$(dH3%(L��uGH��h[]A\A]A^A_��H�T$H�*H�BH�D$H�}�e���M��1��r���H�<$詤�����f�AVAUATUSL��$���H��H�$L9�u�H��dH�%(H��$�1�H���!H��E1�f�� H��E�l$螻�H��H��tfH9���H��H��u�@Ic�H�����I��H����H�H��H��$�dH3%(��H���[]A\A]A^�fD�}t�H���ҿ�Ic�H��A�D$Mc�A���fDI��I)�I�~�y��H��M��u!Ic�B�1H��A�D$Mc�A���H���DL��H��H�����H����DH��L��H���j��H��J� �7�������H���%�������UH��ATI��SH���H��P���H��X���L��`���L��h�����t#)�p���)M�)U�)]�)e�)m�)u�)}�dH�%(H��8���1�H�k&C9x��L���b��H��H��H�@H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�D$I���H��tL��H��L���^��I��H�EA�
L��H�� ���H��(����H��@���H��0���H�(CA�DDž ���H�8Dž$���0��H��8���dH3%(u	H�e�[A\]�赿�DU1�SH��(H�|$H�=4�H�t$��-��D$���1H�B%C�x��������Å�uY�?�w��H�%C�@��tY�|$���H�\$H�t$H���n��H��1�H�5�V������Ζ�fD�|$诈�H��(��[]�fD�\$���调���褃��f�H�-�&CH�L$H�5V1��H�}譋�H�D$H�H��t31�fDH�}H�0�1�����~��H�T$Hc�H��H��u�H��&C�
H�0������@軻�����8��H�5�Z�H��1�����H��(��[]�AVI��AUATUH��SH��PdH�%(H�D$H1�H��$CH�H���+L�d$L���L����	L���
H��L�������Ņ��L�d$L�l$H����M��1�L���H���u����t(9�u܋T$�Ѓ�����<~ƽ�����P��Ӻ�8��t����I��还�jLc�M��H�^%Cj�H��Y�����H�81��!��XZH��tL�d$L���L���&�
L���>	H�L$HdH3%(��uNH��P[]A\A]A^��1�L����l���2���������Ņ��������������놽�����虼�f�UH���BI���SH��8dH�%(H�D$(1�H�
TH�t$H�L$H�D$H�"CH�5�BH�D$ H�D$�xH�*�BHD�H��H���BPH���BPH�k�BP1�L�L$(����H�� H��1�H��t"H�=�gDH�����H�߉�����u#����H�L$(dH3%(u%H��8[]����H�5PS�1������蔻�@H��H�=��ogD�ggD�"���t	��H���f�H�=YhD��fD�-H�=hD�H�=�gD�uH�=ngD�iH�="gD�]1��H�5�W���1�H����ÐUH�-�WSH��H�t!CH��@H��1����H��R1�H�5�R����H�=�gD�
H�jR1�H�5{R����H�=�fD�tfD�1��H�6RH�5SR�T���H�=]gD�x�
�C,�ЅC(u�=7fD�a���H��[]�f.�H�{81��Պ������=fDt�f�S1�H��H��QH�5�Q����H�=�fD��
1��H��QH�5�Q����{�H�H���6H�SL�@H����A���I���I��H��H��H��E���0A�A�H��H��H��H�fD�oH��@H��PB��oN�J��oV�R��o^�Z�H9�u�A�����tEH�9�N�H��H��H��o"H��@H��X`��oj�h��or�p��oz�x�H9�u�H�{H��tA���H�@H��u>�CH�=eD�N
�H��PH�5�P1����H�=�eD[�
�I�������f��C�H�fPH�5SP�T���H�=]eD[�w�
�H�������H�?�`AWAVAUI��ATUSH���=�cD���G�H�lUL�=�OL�%�dDL�5�O�D�����=�cDt~1�H��L������L���
1�H��L������H�=�cD�6	1�H�ڿH�5O���L���
1������I�}t�H��[]A\A]A^A_�fDH�iTH�5'O1���6���H�=?dD�*�
H�CTH�5O1������I�E1�H�TH�5�N����H�=�cD��
H��H�=T1�[]A\A]A^A_�&��D�=jbD�[�=tbD�NAWAVAUATUH���@SH��H��H�G�Hǀ脅��cDH�X�J�H�S�
�cDH��H��t�Uf�P8�U�P:H�XNH�5N1���&���H�=/cDH�-hNC��
H�+N1�H�5�M���H�CH�
^NCL�-�CD�=@NCH��H�H(H�
FNCH�P(H�H0H�H�4NC�5NCE;}}_H�5�S1����H�=�aD�0�H��M1�H�5uM�v�H��H�={bD[]A\A]A^A_��
@��H��CH�H�@8L�`H��MCH�0H�x�H�^�H9�u�|DH�S(H�C(H��H�Z�H9�t,H�u�H�W(H�G0H�BH��-OMC�����H�EH�P�H9�t*H�x���H�x���H�B(�B!H�P�H9�u�M��$8I��8M9�tDI�x �w�M�M9�u�L�0`DM��tI�8�X�M�@M��u�
�LC�gfffA�u�������)‰�)�A��9���L�5iL@H�UH�B�H9���1��2H�SH�zH�PH�RH��H9�HG�H�P(H�B�H9�t�x!u�H��u�H�P(H��H�B�H9�u�H��tZH�C�L���H�@H��1���H�{��H�C0H�S(H��H�BH��m�;�A�u�M��D)�9��?���A9�uA�E��u"D��H�5pQ�1�)��B����D�V�1�H�5�PA�U���j���H�
�PH�{W�NH�=5K�|�H�
NKH�\W�mH�=K�k|�ff.�UH��AWAVAUATSH��H�$H��X�@�dH�%(H�E�1��ź�H����Hc�_DI��L����H�
�JL��V�L��H��A�U�B��_D��Hc�JC�BH�H��H��H%�H)�H���H��H9�tH��H��$�H9�u����L�t$H�5�I1��I���H�5JCI��H�^P���H�=�^D���
H�FP1�H�5�I���H��ICH�P�H9�t&1�f�H�rHcȃ�I�4�H�J(H�Q�H9�u��0�L��L���������A�����1�H��OH�5:I�����3�H�=<^D�W�
E�����L����I��H����H�6ICI�EH�=#ICI�E(I�}(I�U0H�H�ICH��C�IC�x��H��OH�5�H1����H�=�]D��
1��H�yOH�5zH��H��HCL�x�H9�t`L����fDE��L��1�H�
�H�#�Z��L��L���/��H����I�WH��tH�RH��I�G(L�x�H9�u�H��NH�5H1����H�=]D��
����L���\����6HC��H�5�N��H�E�dH3%(��H�e�[A\A]A^A_]�fDL��谑�������\���H�5�N�j����ۗ�L��L��H�=^NH��1��������H)�H�L��'���f.�L���H��N���莗�L��H�=�MH��1��Z�L������-������UH��AWAVAUATSH��H�$H���L�FSH�
#G�HcdH�%(H�E�1�L����I��L�����XHc�=��H�CH��H��H%�H)�H���H��H9�tH��H��$�H9�u����L�|$I��I���L��P�I���+��RH��P�f���R�AH��H9�tH��H��$�H9�u�H��H�L$H�D$H���H��X��IRE��#�H��X�B�)H����H�
FH��H��H�1�蜻���L���*��A�Ņ��GH�5�����a��H��H���eL�=YDL���&��M�,I�GI9��]H�ٺ
�H�=�E���M9�r�=DH��I���ԍ�M9�t'A�?@��"t@��\u߿\H��貍�A�?��@H�ٺ�H�=TEL�-PE舽�1��H��LH�5�D��H�=�YD��
1��H�dLH�5mD�x��=tXDt2�1�L���Y�H�5bYDH�=[XD�&�
�=BXDu�I�~��-XD1�H�L�H�5D��H�=YD�5�
�=XDA���I�~H�GH�PXH��H����HE�H��@�H�PPH��� �-H�BH��H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u����H�D$H���H��8��P��I�~H��� ���;��H�@H��H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u���3H�D$M�nH���H��0�I�EH�pPH� �zH�vH��8��*��L��貪�I�~H��� �b蝪�H�pL��0�L����1�M��L��L��8�L��@��H�5�JL���p�L��M���L��@�H�CH��1��]w�I�vH��H�H���zH�cJ�H�5BA��1���H�=&WD��
H�:J1�H�5�A���1�H�5NJ���UD���H�=fVD�Q�
1��H�[JH�5�A��H�=�VD���
H���C��E���ZH�kC�x�9L��@�H��0�M��1�H��8�H�5$B��^�A��H�M�dH3%(L���`H�e�[A\A]A^A_]�裦������L��H�5�HH��1���A��f�L��L��L���"���eMH��fA�D��WMA�D�H��H��H���H)�H���H9�tH��H��$�H9�u�%���H�D$L��L��H���H��H��X�设����f�H�CH��H��H%�H)�H���H��H9�tH��H��$�H9�u���@L�d$IcH��L��LI���H�
t@L���k��XHc��x����k��D���q����@I�U�H�5NLH��H��@��>��H��@���LD��w���@H)�H�L��b���f.�H����H�������k��H�H����H���%����H�������;��H�p���f����H��>L�-
CH�F�BH��`�H��P�H��`�L�
��BA�}H�
�RDI�ؿH��h�H��?H�5�RDH��x�H���BHD�1����L��p�HDž�����H���IH�=�RDH��H�� ���H�� ���,�H��蚈�,�����L��P�H��H��X�HDžh�L��`����L�����j��I�FH��������A�}��P��z����H��X��謯�H��H����H��H�H���ѱ�A�}I�^I��I����I���r�����P��\��M��H�5�FL��@���H��0�H��8�L��X��}�L��X��!�����H�5(F�1��\����A�}��H��X�H�5>�1��2�A������H��踮�H��
C�xtf�QD�����H)�H�L��^���f.�H)�H�L����f�H)�H�L����f�H)�H�L��=���L�������Y���L�������L�������y����	��8�R��L��P�H�=\EH��1�L������L������-���f.�L���x�����H��X�H��H��`��L��H��X���蟌�H��X�H�=9EH��1��g��E1�A�}�����H��X�L��P����L��P�������D��AWAVAUATUSH��HdH�%(H�D$81��pOD���0H�-	<CL�-�<L�%�PD���zf��=zOD�'L��1��H�5G;�]�L���U�
L��1�H�54;�?��'DL��H�=~OD�	�
H�5k<�1���H�EH9�tH��C�J9
];C�G�=�NDt�H�H�x�H�Y�H9���E1��6DI�vH�@H�vH��H9�H�C(LB�H��(I9�t,H��H��H�GL�{(H���nM��u�H�C(I��H��(I9�u�I�V(I�F0H�5d:�L�=�:H�BH�L��1��-�:C�F�L���n�
L���V�H��;�H�5:H��1���L����
1��H�g;H�5�9���=�MDt'1�L������L��H�=�MD��
�=�MDu�I�FH����H���H�@H��1�H�;�H�5�9��L����
H�TC��9CP��9C���������=SMD�����EMDH�D$8dH3%(�H��H[]A\A]A^A_�f�H�G0H�w(H�FH�0�-�9C����H�C(H��(I9��O���M���r���L��H�5�8�1�����L����
�H���9P�?�������\���DH�H�x�H��(����H�5�8CI�V(H�
�8CI�N(I�v0H�H��8C��8C���H�_9H�5q9�H�D$(H�$H�N9H�D$H��7H�D$H�LDH�D$H��KDH�D$ 1����H��CI��H�(�BH�
�KDH�5�KD��xH���BHD�1����H��H���[H�=�KDH����H�߉��ځ�1��H��8H�5�7���H�=�LD��
1��H��8H�5o7�z����uG�4KDH�=5LD��
1�H��8�H�5E7�F��H�=OLD�j�
��JD���H�=�@1������JD�L�������c���1�H��@H�5�6���JD����L�����
H��@1�H�5�6�����1�H�5�@���JD���H�=4KD��
H��@H�5�61�����L����
�3���H�=�?1�����H��71�H�5?6��P��H�=YKD�D�
H�h7H�5&61���*����ID����&��fD��S1�H��H�w7H�5�5�����H�=�JD���
1��H�L7H�5�5����H�=�IDH�t1�蕒�H�&7�H�5�5��1����H�=�JD��
��[���fD��AT1�I��H�5S5UH��H��?SH����U��H�=^JD�I�
H��?H�5+51���/��H��?1�H�55��5C���H�=JD�2�
H�[?1�H�5�4�L�%�4CH�-�4C����H�=�ID���
H�'?1�H�5�4����H�==IDH��4C��HD��
1��H��>H�54��4C�y��H�=�ID��
H�>C�@���{1�H�B4CH�5;��6�����1�H��>�H�54�$��H�=-ID��
1��H�j>H�5�3������3CH�=�3CH�C>H�5�3���3CD���GDH��3C���H�=�HD���
��[]A\�1�H�'5�H�5p3���H�=�HD�z�
1��H��4H�5U3�`���=a3CuK�=QGDuBH�WHD�D�=:GDu+H��H�=}GD��
1��H�5c4����=3Ct�H��4H�5�2�1�����H�=�GD��
����H�=�2C������ff.�@���=fFDu�f�S1�H�L4�H�52���H�=�GD��
1��H�!4H�5d2�o���=jFDtLH��<�1�H�޿�I��H�5RGDH�=�FD��
1��H�5�<�#���=FDu¿H��3H�521��FD���H�=GD[��
ff.�����=�EDu�f�H��H�~31��H�5�1���H�=�FD��
H�X3H�5�11�����H�5]<1���zED�r��H�={ED��
�H�31�H�5K1�L��H�=UFDH���l�
ff.�����=�DDu�f�ATH��2H�5�01�UH���S���H�=FD���
1��H��2H�5�0����H�EH��H��t"H�x�e�H�UH��H�BH�C�H��0CL�%�0CH�X�L9�u�2fDH�C(H�X�L9�tH9ku�H���me�H�CH�C(H�X�L9�u�H�2H�5C01��B��[H�=JED]A\�b�
f����=�CDu�f�S1�H��H��1H�5�/����H�=ED��
1��H��1H�5�/����H9�/C��H�CH��H��tH�@H��/CH�
�/CH�B�H9�u�.fDH�P(H�B�H9�tH9Xu�H�P(H�@H�B�H9�u�H�F1H�5W/1��V��H�=_DD[�y�
f�H�%/C�a�����U�H���SH���$f�H��0�H�5�.H�(H��1�����H�=�CD���
1��H��0H�5�.����H�BDH�CH��tBH�CH�X1�H��0H�5�.�H�NBD���H�=�CD��
H��H��[]�H�C�ff.���S1�H��H�@0H�5-.��>��H�=GCD�2�
1��H�0H�5
.���H9�ADtGH�SH�CH�BH��tH�PH��/H�5�-�1�����H�=�BD��
H��[���H�CH�uADH��t�H�@�ff.���1�����D��UH��H��SH��H���D��H��H��vH�uH��H��[]���H���4[]�@��H��H��tH��8�PH�
%/H�l9��H�=F-�^�ff.���H�GH��w�DUSH��H��H�xX�q�H��H��軔�H��H��� �$觔�H�HH�CH�PPH� �H��A��H�5�.�1����H��.1�H�5Y,��j��H�=sAD�^�
H��.H�5@,1���D��H�S�H��H�p(H�H0H�NH�1H�
.,CH�5,HǂH�P(H�H(H�
,C�-V,CH�H01�H�H��+CH�.��+C����H�=�@D��
H�CH��H��H��8����H���B�@��u2H��[]�胓�H�H����f.�H�R�����H�{H��[]H���*��f.���AUATUH��SH����oH���BdH�%(H��$�1�H��B��>D��oOH�P��u�@'�P���0��	�@
H� -H�5&-�1�H��H��>D�{>D����H褆�H�
�BfoŰBfoͰBH�}H�b>Dfo%ʰBfo-ҰBH�P@X` h0����H�}H�'>D�j��H�{�BE1�L�>DL�H@L��,�@H�H��H��t�L��H���������tK��I��I9�u�H�=m,�<��H��H�������u-H�=Y,�!��H��H��������uH�=B,�6��H����H���(��H�¿1�H�5#,H��=D���H�=$,�ό�H����H�5(,1��X��H��H�����8/�sH��H�5Q4�1��=��L��$�L�d,1ҾFH�
],L������XHc�H���
��I�ă�F��H���]L�%�<D�il�H�=�=D��<D��
H�=�=D���
H�=T=D���
H�==D���
H�=�<D���
H�8�BH�H�x0�Tq���t�H��H�u<D�n�H�=i<D�m��<DH�-�B��tH�EH�x �����;D�=�������ƒ����*H���><�'H�@��t	H�x ����H�EH�@H�xH��t1�H�5����١
�d��H��$�dH3%(��H���[]A\A]���@d����@H�����u�H����H���t���H�N�BH��i���fD�3�n����3fo5o31�fo=u3H��H�;Df�P0��30fo5e3�P21�xp �Ӊ�������X������L�7*1�H��H��H�
/*�]�����H��H�ƿ�s�u�D$%�=���H��H�5s)�1�����`���DH��L��H���ʤ����DH�5/)�1��m���+����H���BH��<���H�
:DH�5[)�1��7��H�=�9D�K��H��9DH�5q1�1���9D�������H���BH�����H���BH�����H���BH����H���BH�����l$�,��L$9�u��uH���Ǔ�u#�L$�T$I��H�5�01������`���H�=\(�Ĉ�H�5[(�H��1��^��H�=:(�2��H�ڿ1�H�5I(�<��H��贡�H��8DH���������*��f.����=�8DAVAUATUS��1��=�8D��@�����Y%C����L�%��BA�D$9%C��H�B0L�5�$H�-�9DL�-�$�A�D$9�$C}lH��L��1���y��H���q�
H��L��1���_��H�=�8D���
1�H�ڿH�5<$�=��H���e�
1����ɖ��$C����*���[]A\A]A^�H���BH�5H'H�81�脔�@��H���=�7Dt*1��=�7DuH�����C����t"�H���H�f�BH�5�&H�81��-��H�N�BH�5�&H�81����D���=&7DtKH�
�#CH�=�#CH�H�Q�H��(H9�t$DH�zt�B H�p(H�H(H��H�F�H9�u����@�����=�6Du�f�UH�5�&1���S�H��&H������H��.1�H�5�"�����H�=�7D���
H�y.H�5�"1������p6D��u0@1�H�޿���H�5�7DH�=S7D�^�
�@6D��t�1�H�#.�H�5Y"�Z��H�=c7D�~�
�Y��H�=R7D�-�
H�=7D��
H�=�6D�u�
H�=n6D�i�
H�="6D�]�
H���B�x�,H�=�5D���H�=�5DH��5D��H��5DH��5DH�;H��t��Ә�H��H�;H��u�H�x5DH��@��贘�H�=�5DH�Z5D蝘�H�=F5DH�c5D膘�H���B��H�=�!CH�5D��s����H�=�!C�e����H�=\!C�W��H�=0!C���I��H�=�4DH��tDH�_���H��H��u���4DH��H�5�$1�[�]������Kd�;�4D����H�=�4D������ff.����=F4Du�f�AU1�H�K$�ATH�5\ USH���l��H�=u5D�`�
1��H�$H�5; �F��H�/ C1��H��#H�5$ �%��H�=.5D�I�
H��tH���̌�H��#H�5�1������H�=�4DL�-T C���
1��H��#H�5�����H�. CH�X�L9���L�%z#f.�H�kH��tbL��H�5�1�����H�=�4D��
H���-��L��1��H�5A�W��H�=`4D�K�
L��1�H�5*�5��H�C(H�X�L9�u��H��"H�51����H��H�=4D[]A\A]�(�
����=�2Du�f����ff.����=v2Du�f�SH��"H��1�H�5�����H�=�3D��
H�t"H�5x1���|��H�=e2DH�t�;_�H�D"1�H�5P�Q��H�=Z3D[�t�
@H�a�BH�H9t	1��fDSH��H�����tH�{ [���D1�[�@H��t�G�t1��f�ATI��UH��H��SH��苈��u1�[]A\�H�S�J9Mu�EAu�I�T$ H�����u���fD��H9ru1��ATH��UH��SH���b�H�kH�;H�*I�ĉ��1��oR�KH�;�H�41�D��SR�H���H�=�+��[1�]A\�AWI��AVAUI��ATM��US��H���T$ dH�%(H�D$x1��D$'A9_�JI�D$A��B�<���7�|$'�,I�GJ�<�����T$ �پLc�I�D$L��D�T$B��H�~H�U*B�,PH�-rL�T$H�1�I���{Q�I�W�CL�T$D�L$H��H�D$H�ZB�؉D$A��f�;�H�5mJc�H�>��L���H�=D1�۔�A�|$�}L���H�=�)趔�L���H�=�5蝔�A����A�|$��L���H�=�0�j��L���H�=*,�Q��L���H�=*�8��\$ �1�H��2L����\P��L�����H�=�)�D$ ��f.��\$A9_����L$I�D$�̓<��H���r�H��1�L��1���O�I�D$��9L$ �J�H���B�xu�P��t"D�D$ H�dH���B�H�81��O�A�$H�D$xdH3%(�(�H�Ĉ[]A\A]A^A_�L���H�=�/�(��A�|$�]8A������L$H��UL��1���4O�A�|$���L���H�=4/�ϒ�L���H�=�'趒�L���H�=w(蝒�L���H�=b(脒����L���H�=�.�f��A�|$��7L���H�=k'�A��L�� �H�=%5�(��L��"�H�=45���H�\$L��1�H�A'�H��1N�L��
��a�H�K�1�H�0'L���
N�L��
�a�A����UA�|$�*L���H�=�-芑�L��3�H�=�4�q��L��(�H�=�4�X��L��D�H�=�4�?��L���H�='�&��\$ L��1�H��/����JM��L�����H�=�&�D$ �����L���H�=3-�ʐ�A�|$�&L���H�=�%襐�L�� �H�=�3茐�L��"�H�=�3�s��H�\$L��1�H��%�H��L�L��
�H`�H�K�1�H��%L���nL�L��
�!`�D$ �L��H��%�X�1����BL�A����=A�|$�L���H�=4,�Ϗ�L��B�H�=�3趏�L��(�H�=�3蝏�L��D�H�=�3脏�L���H�=E%�k��L���H�=0%�R��\$ �Y���L���H�=�+�0��A�|$�/L���H�=5$���L�� �H�=�1���L��"�H�=�1�َ�H�\$L��1�H�$�H��J�L��
�^�H�K�1�H��#L����J�L��
�^�A����eA�|$�:L���H�=�*�T��L��6�H�=�2�;��L��'�H�=3�"��L��
�^�L��E�H�=3��L��E�H�=H3���L��.�H�=w3�ʍ�L��F�H�=�3豍�L��
�H�=n#蘍�L���H�=d#���L���H�=�3�f��L��,�H�=�3�M��L��H�H�=�3�4��L��
�H�=�"���L���H�=�"���\$ L��1�H��+����&I��L�����H�=�"�D$ �Č�����L���H�=)覌�A�|$�oL���H�=�!职�L�� �H�=e/�h��L��"�H�=t/�O��H�\$L��1�H��!�H��qH�L��
�$\�H�K�1�H�p!L���JH�L��
�[�D$ �L��H�e!�X�1����H�A�����A�|$�[L���H�=(請�L��6�H�=O0蒋�L��'�H�=n0�y��L��
�l[�L��*�H�=5�S��L��(�H�=/�:��L��D�H�=�/�!��L��
�[�L��B�H�=�4��L���H�=� ���L���H�=� �Ɋ�\$ ����L���H�='觊�A�|$�L���H�=�肊�L�� �H�=f-�i��L��"�H�=u-�P��L�t$L��1�H���I��rF�L��
�%Z�I�N�1�H�qL���KF�L��
�Y�A����I
A�|$�
L���H�=0&�ˉ�L��6�H�=o.貉�L��'�H�=�.虉�L��
�Y�L��E�H�=�.�s��L��<�H�=0�Z��L��
�MY�L��!�H�=90�4��L��@�H�=H0���L��0�H�=w0���L��1�H�=�0���L��0�H�=�0�Ј�L���H�=M跈�L��2�H�=�0螈�L��J�H�=�0腈��L��H�11��D�L��0�H�=)1�T��L��8�H�=H1�;���L��H��01��cD�L���H�=��
��L��8�H�=>1���L���H�=��؇�L���H�=�过�L���H�=�覇�L���H�=�荇��L��H�11��C�L��2�H�=1�\��L��J�H�=01�C��L���H�=��*��L��
�H�=����L���H�=���L���H�=-�߆�L��,�H�=-�Ɔ�L��H�H�="-譆�L��
�H�=j蔆�L���H�=U�{��\$ L��1�H�
%����B��L�����H�=�D$ �=���H�L���H�=�"���A�|$�.	L���H�=$��L��&�H�=0���H�\$L��1�H���H��B�L��
�U�H�K�1�H��L����A�L��
�U�L$1��H��GL���A�A�|$�eL���H�=�!�P��L��7�H�=�/�7��L���H�=����\$ L��1�H��#��ك��?A�L��"�H�=�/����L��H��/1��A�L��:�H�=�/资�L���H�=�!蜄�L���H�=]胄�L��\$ ��H�=D�f���q�L���H�=� �H��A�|$�a�L���H�=l�#��L�� �H�=G/�
��H�D$�L��H�H�1��,@�L��
��S�D$ �L��H�.�X�1����@�A������A�|$��L���H�=�荃�L��/�H�=�.�t��L���H�=5�[��L���H�= �B��\$ �I��D$ L���H�=��hI�D$(�8u"H�D$L�@M+��MD$I�8M��������A�|$��L���H�=��Ȃ�L���H�=�诂�L���H�=�薂�H�\$L��1�H�z�H��>�L��
�kR�H�K�1�H�bL���>�L��
�DR�L$1��H��DL���j>�A�|$�7�L���H�=j���L��:�H�=�.���L���H�=��Ӂ�L$ �1�H�c L���=�L��"�H�==,蠁��H�W,1��L����=�L��:�H�=l,�o��L���H�=y�V��L���H�=�=��L���H�=�$��l$ �+��D$ L���H�=g�h�I�D$(�8u"H�D$L�@M+��MD$I�8M���J��π�A�|$���L���H�=o誀�L���H�=p葀�L���H�=��x��H�\$L��1�H�\�H��<�L��
�MP�H�K�1�H�DL���s<�L��
�&P��H��1��L���N<�L$1��H�|BL���4<�A�|$���L���H�=4���L��9�H�=�-��L���H�=w��L��"�H�=!*���H�;*1��L���;�L��:�H�=P*�S�L���H�=]�:�L���H�=��!�L���H�=���l$ ��L���H�=O��~�A�|$�yL���H�=��~�L���H�=��~�H�D$�L��H��H�1���:�L��
�}N�L$1��H��@L���:�A�|$�4L���H�=��>~�L��S�H�=r,�%~�L���H�=��~�\$ L��1�H����ك��-:�L��"�H�=q(��}��L��H��(1��9�L��:�H�=�(�}�L���H�=��}�L���H�=K�q}�L��\$ ��H�=2�T}��_�L���H�=��6}�A�|$��L���H�=��}�L���H�="�|�H�D$�L��H��H�1��9�L��
��L�D$ �L��H�5�X�1�����8�L$1��H�?L����8�A�|$��	L���H�=��o|�L��5�H�=�*�V|�L��R�H�=+�=|�L���H�=��$|�L��"�H�=�&�|��H��&1��L���38�L��:�H�=�&��{�L���H�=��{�L���H�=��{�L���H�=m�{�\$ ��L���H�=��m{�A�|$��L���H�=
�H{�L��/�H�=d*�/{�H�D$�L��H�H�1��Q7�L��
�K�\$ �1�H�,L��k������"7��H�+1��L���
7�L$1��H�8=L����6�A�|$��L���H�=��z�L��E�H�=�)�rz�L���H�=3�Yz��H��1��L���6�L��"�H�=�$�(z��H��$1��L���P6�L��:�H�=�$�y�L���H�=��y�L���H�=���y�L���H�=��y�\$ ��L���H�=��y�A�|$�hL���H�=*�ey�L��$�H�=�(�Ly�H�D$�L��H�-H�1��n5�L��
�!I�D�t$ L��1�H���A�^����@5�A�N��1�H�\L���&5�L$1��H�T;L���5�A�|$��L���H�=�x�L��&�H�=c(�x�L��5�H�='�ux�L��&�H�=Y(�\x�L���H�=�Cx�L��"�H�=�"�*x��H��"1��L���R4�L��:�H�=�"�w�L���H�=��w�L���H�=�
��w�L���H�=�
�w�\$ ��L���H�=��w�A�|$�,L�� �H�=�'�gw�L���H�=x�Nw�H�D$�L��H��H�1��p3�L��
�#G�L$1��H��9L���I3�A�|$��L���H�=I��v�L��8�H�='��v�L��#�H�=?'�v�L���H�=s�v�\$ L��1�H�+��ك��2�L��"�H�=� �av��L��H�!1��2�L��:�H�=-!�0v�L���H�=:�v�L���H�=��u�L��\$ ��H�=���u����L���H�=,��u�A�|$�%L�� �H�=�%�u�L���H�=�
�u�H�D$�L��H��H�1��1�L��
�ZE�D$ �L��H��
�X�1����{1�L$1��H��7L���a1�A�|$�dL���H�=a�t�L��8�H�=0%��t�L��"�H�=%��t�L���H�=�
�t�L��"�H�=5�t��H�O1��L���0�L��:�H�=d�gt�L���H�=q�Nt�L���H�=
�5t�L���H�=�	�t�\$ �#�L���H�=c�s�A�|$�L���H�=���s�A�����A�|$���L���H�=�s�L���H�=�	�s�L���H�=J	�ps�\$ L��1�H�����/��L�����H�=	�D$ �2s��=��L���H�=}�s�A�|$��L���H�=��r�A������A�|$�j�L���H�=!�r�L���H�=I
�r�L���H�=d�r�\$ L��1�H�����.��L�����H�=.�D$ �Lr��W��L���H�=��.r�A�|$���L���H�=3�	r�H�\$L��1�H��	�H��+.�H�;@��t@��uH�����t�����u�T1�L��
�A�A������A�|$�Z�L���H�=�
�q�L���H�=D	�kq�L���H�=,�Rq�\$ L��1�H������v-��L�����H�=��D$ �q����L���H�=_
�p�A�|$��L���H�=���p�L��'�H�=�!�p�H�D$�L��H��!H�1���,�L��
�@�A����y�A�|$��L���H�=��Zp�L��*�H�=n!�Ap�L��
�4@�L��8�H�=x!�p�L��5�H�=�!�p�L���H�=���o�\$ L��1�H�{����
,��L�����H�=��D$ �o����L���H�=��o�A�|$���L��"�H�==!�ho�H�\$L��1�H�:�H��+�H�;@��t@��uH�����t�����u�.�L��
�?�A������A�|$�{�L���H�=H��n�L��%�H�=� ��n�L���H�=��n�\$ L��1�H�C
�����*��L�����H�=U�D$ �sn��~��L���H�=�
�Un�H�D$A�|$H���L���H�=R�(n�L�� �H�=4 �n�H�D$�L��H��H�1��1*�L��
��=�L$1��H�R0L���
*�A�|$�z�L���H�=

�m�A�|$L��H��H�
aHD�H��1��)�L���H�=8�^m�D$ L��H���)؍X1��K��|)�L��"�H�=��#m��L��H��1��K)�L��:�H�=���l�L���H�=�	��l�L���H�=��l�L��\$ ��H�=��l����L���H�=��l�A�|$���L��"�H�=5!�`l�H�\$L��1�H���H��(�H�;@��t@��uH�����t�����u�+�L��
�<�A����X�A�|$�-�L���H�=@��k�L��9�H�=� ��k�L��%�H�=� �k�L���H�=j�k�\$ L��1�H�"
����'��L�����H�=4�D$ �Rk��]��L���H�=��4k�A�|$���L��#�H�=t �k�H�\$L��1�H���H��1'�H�;@��t@��uH�����t�����u�Z*�L��
�:�A�����A�|$���L���H�=��j�L��>�H�=��qj�L��'�H�=% �Xj�L���H�=�?j�\$ L��1�H������c&��L�����H�=��D$ �j����L���H�=L��i�H�D$A�|$H�(H�X��L���H�=��i�L��&�H�=��i�L�t$L��1�H���I��%�L��
�n9�I�N�1�H�UL���%�L��
�G9�D$ �L��H�I�H�1��j%�L$1��H��+L���P%�A�|$��L���H�=P��h�A�|$L��H�a�H�
E�HD�H��1���H�\��$�L���H�=v��h�L��"�H�= �h�\$ L��1���H�1��$�L��:�H�=K�Nh�L���H�=X�5h�L���H�=���h�L��\$ ��H�=��g��
��L���H�=J��g�H�D$A�|$H�X���L���H�=��g�L��%�H�=��g�L�t$L��1�H���I��#�L��
�o7�I�N�1�H���L���#�L��
�H7�L$1��H��)L���n#�A�|$��L���H�=n�	g�A�|$L��H��H�
��HD�H�:1��#�L��-�H�=g��f�L���H�=&��f�L���H�=j��f�D$ L��H�$�)؍X1��K��"�L��"�H�=��Uf��L��H�1��}"�L��:�H�=!�$f�L���H�=.�f�L���H�=���e�L��\$ ��H�=����e�����L���H�= �e�A�|$�V�L��"�H�=g�e�D$ �L��H����X�1����!�A�����A�|$��L���H�=��@e�L��"�H�=$�'e�L���H�=��e��L��H���1��6!�L���H�=����d�����L���H�=(�d�H�D$A�|$H����L���H�=���d�L�� �H�=��yd�H�D$�L��H�`�H�1�� �L��
�N4�A����o�A�|$�D�L���H�=��d�A�|$L��H���H�
�HD�H�1��- �L���H�=����c�D�t$ L��H)�H�_�A�L�H��1����A�L���H�=k�D�t$ �c����L���H�=��jc�H�D$A�|$H��G�L���H�=g��=c�L�� �H�=I�$c�H�D$�L��H��H�1��F�L��
�2�A������A�|$���L���H�=+�L�5���b�A�|$L��H�	�H�
�HD�H��1�H�-g����L��L��A�|$H��HE�1���L��
�H�=$��Nb�L���H�=��5b�L��L��A�|$H��HE�1��R�L��
�H�=��a�L���H�=����a�D�t$ L��H)�H�k�A�L�H��1���A�L���H�=w�D�t$ �a����L���H�=��va�A�|$���L��"�H�=&�Qa�\$ �1�H���L��k������o�1���H�:��L���W�A����~�A�|$�S�L���H�=I���`�L��1�H�=H��`�L���H�=���`��H�K�1��L�����L���H�=_��`�\$ ���L���H�=��_`�A�|$���L��)�H�=��:`�H�\$L��1�H�	�H��\�H�;@��t@��uH�����t�����u��L��
��/�D$ �L��H���X�1����	�A������A�|$���L���H�=���_�L��*�H�=��}_�L���H�=>��d_��L��H��1���L���H�=��3_��>��L���H�=~��_�A�|$���L��(�H�=���^�H�\$L��1�H�N��H���H�;@��t@��uH�����t�����u�;�L��
�.�D$ �L��H����X�1�����L$1��H�� L����A�|$�{�L���H�=���@^�L��)�H�=�'^�L���H�=���^��L��H���1��6�L��"�H�=z��]�L$ L��1�H�����L��:�H�=��]�L���H�=���]�L���H�=R��x]�L���H�==��_]��j��L���H�=���A]�A�|$�t�L��)�H�=q�]�\$ �1�H�5�L��k������:��H�3�1��L���"�L$1��H�PL����A�|$���L���H�=��\�L��+�H�=�\�L���H�=K��q\��H���1��L����L��"�H�=��@\��H��1��L���h�L��:�H�=�\�L���H�=��[�L���H�=����[�L���H�=����[�\$ ����L���H�=��[�A�|$���L��(�H�="�}[�L��!�H�=9�d[�H�D$�L��H�I�H�1���L��
�9+�\$ �1�H���L��k������W��H���1��L���?�L$1��H�mL���%�A�|$���L���H�=%��Z�L��2�H�=��Z�L���H�=h��Z��H�'�1��L����L��"�H�=��]Z��H�1��L����L��:�H�=)�,Z�L���H�=6��Z�L���H�=���Y�L���H�=����Y�\$ ����L���H�=(��Y�A�|$���L���H�=���Y�D$ �L��H���X�1�����A����G�A�|$��L���H�=���HY�L���H�=��/Y�L���H�=,��Y�L���H�=���X�L���H�=����X�\$ ����L���H�=+���X�H�D$A�|$H��J�L���H�=���X�L�� �H�=�
�|X�H�D$�L��H�c�H�1���L��
�Q(�L$1��H��L���w�A�|$���L���H�=w��X�L��,�H�=�W�L��
��'�L��.�H�=��W�L��
��'�L���H�=P��W�A�|$L��H���H�
i�HD�H��1���L��
�H�=<��fW�L���H�='��MW�D$ L��H���)؍X1��K��k�L��"�H�=��W��L��H��1��:�L��:�H�=���V�L���H�=����V�L���H�=���V�L��\$ ��H�=p��V����L���H�=���tV�A�|$���L��)�H�=��OV�D$ �L��H����X�1����p�A������A�|$�^�L���H�=b��U�L���H�=����U�L���H�=����U�D�t$ L��1�H����D������L��H���1����D��L�����H�=T��D$ �rU��}���L���H�=���TU�H�D$A�|$H��i�L���H�=�
�'U�H�D$�L��H�P�H�1��I�L��
�$�A������A�|$���L���H�=.���T�A�|$L��H�?�H�
#�HD�H���1����A�|$L��H�:�H�
�H����HD�1���L��
�`$�L��$�H�=��GT�L���H�=��.T�L��\$ ��H�=���T�����L���H�=\���S�A�|$���L��"�H�={��S�D�t$ L��1�H�8��A�^�A�n������1���H���L�����A����0�A�|$��L���H�=���^S�L���H�=[��ES�L���H�=��,S��L��H���1��T��L��H���1��<�L���H�=����R����L���H�=.���R�A�|$�(�L���H�=�R�H�D$�L��H���H�1����L��
�u"�A������A�|$���L���H�=��H�-��;R�L���H�=��H�@��R�A�|$L��H���H�
��H����HD�1��-�L��
��!�L�� �H�=�
��Q�L���H�=�
�Q�H��L��A�|$H�L�HE�1���
�L���H�=I��rQ�H��L��A�|$H�E�HE�1��
�L��
�H�=��6Q�L���H�=���Q�L���H�=���Q�����L���H�=O���P�A�|$���L���H�=���P�L���H�=
	�P�H�D$�L��H���H�1����L��
�} �A����b�A�|$�7�L���H�=���JP�A�|$L��H��H�
v�HD�H�$�1��\�L���H�=���P�\$ L��1�H�������'��L�����H�=���D$ ��O���L���H�=��O�A�|$�P�L���H�=���O�L���H�=��iO�H�D$�L��H���H�1���L��
�>�D$ �L��H����X�1����_�A������A�|$���L���H�=Q���N�A�|$L��H���H�
�HD�H���1��
�L���H�=��N��L��H�6�1���
�L���H�=R��tN�����L���H�=���VN�H�D$A�|$H����L���H�=��)N�H�D$�L��H�R�H�1��K
�L��
��A����u�A�|$�J�L���H�=0���M�L���H�=���M�L���H�=s��M�L��)\$ ��H�=Z��|M�釹��L���H�=���^M�A�|$�4�L��.�H�=V�9M�L��$�H�=m� M�H�\$L��1�H��H��B	�L��
��H�KL��1�H����	�H�{@��t@��uH�����t�����u�C�L��
��H�\$L��1�H����H�K���H�{@��t@��uH�����t�����u���L��
�R�D$ �L��H����X�1����s�L$1��H��L���Y�A�|$��L���H�=Y���K�L��C�H�=p��K�L���H�=����K��L��H�S�1����L��"�H�=.��K�L$ L��1�H�A����L��:�H�=[��^K�L���H�=h��EK�L���H�=��,K�L���H�=���K�����L���H�=^��J�A�|$���L��1�H�=���J�L��!�H�=��J�H�D$�L��H���H�1����L��
��\$ �1�H���L��k��������H���1��L����L$1��H��L���x�A�|$���L���H�=x��J�L��<�H�=�I�L���H�=����I��H�z�1��L���	�L��"�H�=M��I��H�g�1��L�����L��:�H�=|��I�L���H�=���fI�L���H�='��MI�L���H�=��4I�\$ �;���A���H�D$I���I�T$ H��H�H��H�H9��-�H)�H���.�袋.H��H��H�H��H�<�DZ������H�D$A���I���H�(H��H��H�H9��0�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�\�����t�EIuH�D$H�@ H�@���.L���H�=���3H�H�D$A�|$H�(���L�� �H�=K�H�L���H�=���G�H�D$�L��H�r�H�1���L��
���L$1��H�0
L�����A�|$��D�MH�1��H�EL��A��A��DMLA��Mc�L)�H����H��~T�D$ H�l$I�D�I��I�H�L��I��H���M�.H��H�
1��L��H���W�H9�u�H�l$L���H�=Y���F�L��*�H�=���F�L��H�H�=���F�L��
��L���H�=r��F�L���H�=w��F�L��(�H�=
�jF�L���H�=���QF�L���H�=H��8F�L���H�=���F�L���H�=��F�L�� �H�=2��E�L��
�H�=����E�L���H�=���E�EH�\$ L��H�L����K���EL)�1����L��"�H�=��xE�EH��L��H�)�����EL)�1���L��:�H�=7��:E�L���H�=D��!E�L���H�=���E�EH+]LL��ھH�=�����)‰T$ ���D����A���H�D$I���I�T$ H��H�H��H�H9����H)�H���.�袋.H��H��H�H��H�<�s��������H�D$A���I���H�(H��H��H�H9��u�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$������t�EIuH�D$H�@ H�@��;;L���H�=H���C�H�D$A�|$H�(�t�L�� �H�=��C�L���H�=���C�H�D$�L��H��H�1���L��
�n�L$1��H��L����A�|$��D�MH�1��H��L��A��A��DMLA��Mc�L)�H���R��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H���1��L��H�����H9�u�H�l$L���H�=	��B�L��*�H�=0�B�L��H�H�=g�rB�L��
�e�L���H�="��LB�L���H�='��3B�L��(�H�=��B�L���H�=o��B�L���H�=����A�L���H�=T���A�L���H�=���A�L�� �H�=��A�L��
�H�=Z��A�L���H�=E��kA�EH�\$ L��H������K���EL)�1���L��"�H�=���(A�EH��L��H�������EL)�1��C��L��:�H�=����@�L���H�=����@�L���H�=���@�EH+]LL��ھH�=z����)‰T$ ��@�闬��A���H�D$I���I�T$ H��H�H��H�H9���H���������H)�H��H��H��H�<�&������]�H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$軨����t�EIuH�D$H�@ H�@���2L���H�=���?�H�D$A�|$H�(��L�� �H�=���e?�L���H�=v��L?�H�D$�L��H���H�1��n��L��
�!�L$1��H��L���G��A�|$���D�MH�1��H���L��A��A��DMLA��Mc�L)�H�����H��~S�D$ H�l$I�D�I��I�H�L��I��H��fDM�.H��H�j�1��L��H����H9�u�H�l$L���H�=���T>�L��*�H�=��;>�L��H�H�=��">�L��
��L���H�=���=�L���H�=����=�L��(�H�=��=�L���H�=��=�L���H�=���=�L���H�=��=�L���H�=}��f=�L�� �H�=���M=�L��
�H�=
��4=�L���H�=���=�EH�\$ L��H������K���EL)�1��1��L��"�H�=u���<�EH��L��H�������EL)�1����L��:�H�=���<�L���H�=���<�L���H�=B��h<�EH+]LL��ھH�=*����)‰T$ ��<<��G���A���H�D$I���I�T$ H��H�H��H�H9��@�H���������H)�H��H��H��H�<�֤�����=�H�D$A���I���H�(H��H��H�H9����H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�k�����t�EIuH�D$H�@ H�@��:?L���H�=���B;�H�D$A�|$H�(�
�L�� �H�=Z��;�L���H�=&��:�H�D$�L��H���H�1����L��
��
�L$1��H�?�L����A�|$���D�MH�1��H�T�L��A��A��DMLA��Mc�L)�H����H��~S�D$ H�l$I�D�I��I�H�L��I��H��fDM�.H��H��1��L��H���g��H9�u�H�l$L���H�=i��:�L��*�H�=����9�L��H�H�=���9�L��
��	�L���H�=���9�L���H�=���9�L��(�H�=/�z9�L���H�=���a9�L���H�=X��H9�L���H�=���/9�L���H�=-��9�L�� �H�=B��8�L��
�H�=����8�L���H�=����8�EH�\$ L��H�\����K���EL)�1�����L��"�H�=%��8�EH��L��H�9�����EL)�1����L��:�H�=G��J8�L���H�=T��18�L���H�=���8�EH+]LL��ھH�=�����)‰T$ ���7����A���H�D$I���I�T$ H��H�H��H�H9��֛H)�H���.�袋.H��H��H�H��H�<胠�����A�H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$������t�EIuH�D$H�@ H�@���L���H�=X���6�H�D$A�|$H�(���L�� �H�=���6�L���H�=���6�H�D$�L��H�.�H�1�����L��
�~�L$1��H��L�����A�|$�h�D�MH�1��H��L��A��A��DMLA��Mc�L)�H���b��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H���1��L��H�����H9�u�H�l$L���H�=��5�L��*�H�=@��5�L��H�H�=w��5�L��
�u�L���H�=2��\5�L���H�=7��C5�L��(�H�=��*5�L���H�=��5�L���H�=��4�L���H�=d���4�L���H�=����4�L�� �H�=��4�L��
�H�=j��4�L���H�=U��{4�EH�\$ L��H�����K���EL)�1����L��"�H�=���84�EH��L��H�������EL)�1��S��L��:�H�=���3�L���H�=���3�L���H�=����3�EH+]LL��ھH�=�����)‰T$ ��3�駟��A���H�D$I���I�T$ H��H�H��H�H9��l�H)�H���.�袋.H��H��H�H��H�<�3������	�H�D$A���I���H�(H��H��H�H9����H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�ț����t�EIuH�D$H�@ H�@���>L���H�=��2�H�D$A�|$H�(���L�� �H�=���r2�L���H�=���Y2�H�D$�L��H���H�1��{��L��
�.�L$1��H���L���T��A�|$�|�D�MH�1��H���L��A��A��DMLA��Mc�L)�H�����H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H�z�1��L��H������H9�u�H�l$L���H�=���d1�L��*�H�=���K1�L��H�H�='��21�L��
�%�L���H�=���1�L���H�=����0�L��(�H�=����0�L���H�=/��0�L���H�=���0�L���H�=��0�L���H�=���v0�L�� �H�=���]0�L��
�H�=��D0�L���H�=��+0�EH�\$ L��H������K���EL)�1��A��L��"�H�=����/�EH��L��H�������EL)�1����L��:�H�=���/�L���H�=���/�L���H�=R��x/�EH+]LL��ھH�=:����)‰T$ ��L/��W���L���H�=���./�A�|$��L��'�H�=���	/�L��(�H�=e���.�L�t$L��1�H�i��I����L��
���I�N�1�H�L�L������L��
��l$ �1�H���L��D�u���D�����1���H����L�����A����*�A�|$���L���H�=���/.�L��0�H�=��.�L��
�	��L���H�=����-�A�|$����H�S��1�L�����L��8�H�=h��-�L���H�=���-�L��
�H�=W��-�L���H�=B��h-�D��L��H���1����L���H�=��6-�l$ �=���A���H�D$I���I�T$ H��H�H��H�H9���H)�H���.�袋.H��H��H�H��H�<�ɕ�������H�D$A���I���H�(H��H��H�H9��:�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�^�����t�EIuH�D$H�@ H�@����L���H�=���5,�H�D$A�|$H�(���L�� �H�=M��,�L���H�=���+�H�D$�L��H�t�H�1����L��
���L$1��H�2�L������A�|$���D�MH�1��H�G�L��A��A��DMLA��Mc�L)�H�����H��~N�D$ H�l$I�D�I��I�H�L��I��H�ӐM�.H��H��1��L��H���_��H9�u�H�l$L���H�=a��*�L��*�H�=����*�L��H�H�=����*�L��
��L���H�=z��*�L���H�=��*�L��(�H�='��r*�L���H�=���Y*�L���H�=P��@*�L���H�=���'*�L���H�=%��*�L�� �H�=:��)�L��
�H�=����)�L���H�=����)�EH�\$ L��H�T����K���EL)�1�����L��"�H�=��)�EH��L��H�1�����EL)�1����L��:�H�=?��B)�L���H�=L��))�L���H�=��)�EH+]LL��ھH�=Ҿ���)‰T$ ���(����A���H�D$I���I�T$ H��H�H��H�H9����H)�H���.�袋.H��H��H�H��H�<�{������s�H�D$A���I���H�(H��H��H�H9��&�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$������t�EIuH�D$H�@ H�@��w#L���H�=P���'�H�D$A�|$H�(�6�L�� �H�=���'�L���H�=˼�'�H�D$�L��H�&�H�1�����L��
�v��L$1��H���L�����A�|$���D�MH�1��H���L��A��A��DMLA��Mc�L)�H���Z��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H���1��L��H�����H9�u�H�l$L���H�=��&�L��*�H�=8��&�L��H�H�=o��z&�L��
�m��L���H�=*��T&�L���H�=/��;&�L��(�H�=���"&�L���H�=w��	&�L���H�=���%�L���H�=\���%�L���H�=���%�L�� �H�=���%�L��
�H�=b��%�L���H�=M��s%�EH�\$ L��H�����K���EL)�1����L��"�H�=���0%�EH��L��H�������EL)�1��K��L��:�H�=����$�L���H�=����$�L���H�=���$�EH+]LL��ھH�=�����)‰T$ ��$�韐��A���H�D$I���I�T$ H��H�H��H�H9��]�H)�H���.�袋.H��H��H�H��H�<�+��������H�D$A���I���H�(H��H��H�H9����H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�����t�EIuH�D$H�@ H�@��WL���H�=��#�H�D$A�|$H�(���L�� �H�=���j#�L���H�={��Q#�H�D$�L��H�ֿH�1��s��L��
�&��L$1��H���L���L��A�|$���D�MH�1��H���L��A��A��DMLA��Mc�L)�H���
��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H�r�1��L��H�����H9�u�H�l$L���H�=���\"�L��*�H�=���C"�L��H�H�=��*"�L��
���L���H�=ھ�"�L���H�=߾��!�L��(�H�=����!�L���H�='��!�L���H�=���!�L���H�=��!�L���H�=���n!�L�� �H�=���U!�L��
�H�=��<!�L���H�=���#!�EH�\$ L��H������K���EL)�1��9��L��"�H�=}��� �EH��L��H�������EL)�1����L��:�H�=��� �L���H�=��� �L���H�=J��p �EH+]LL��ھH�=2����)‰T$ ��D ��O���A���H�D$I���I�T$ H��H�H��H�H9��ÃH���������H)�H��H��H��H�<�ވ�����>�H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�s�����t�EIuH�D$H�@ H�@��>L���H�=���J�H�D$A�|$H�(�
�L�� �H�=b���L���H�=.���H�D$�L��H���H�1��&��L��
����L$1��H�G�L�����A�|$��D�MH�1��H�\�L��A��A��DMLA��Mc�L)�H�����H��~S�D$ H�l$I�D�I��I�H�L��I��H��fDM�.H��H�"�1��L��H���o��H9�u�H�l$L���H�=q���L��*�H�=�����L��H�H�=�����L��
����L���H�=����L���H�=����L��(�H�=7���L���H�=׺�i�L���H�=`��P�L���H�=���7�L���H�=5���L�� �H�=J���L��
�H�=²���L���H�=�����EH�\$ L��H�d����K���EL)�1�����L��"�H�=-���EH��L��H�A�����EL)�1����L��:�H�=O��R�L���H�=\��9�L���H�=��� �EH+]LL��ھH�=����)‰T$ �������A���H�D$I���I�T$ H��H�H��H�H9��YH)�H���.�袋.H��H��H�H��H�<苄������H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$� �����t�EIuH�D$H�@ H�@��O�L���H�=`���H�D$A�|$H�(���L�� �H�=����L���H�=ۯ��H�D$�L��H�6�H�1�����L��
���L$1��H���L�����A�|$�\�D�MH�1��H�	�L��A��A��DMLA��Mc�L)�H���j��H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H���1��L��H�����H9�u�H�l$L���H�=!���L��*�H�=H���L��H�H�=���L��
�}��L���H�=:��d�L���H�=?��K�L��(�H�=���2�L���H�=����L���H�=���L���H�=l����L���H�=����L�� �H�=����L��
�H�=r���L���H�=]���EH�\$ L��H�����K���EL)�1����L��"�H�=���@�EH��L��H�������EL)�1��[��L��:�H�=����L���H�=����L���H�=�����EH+]LL��ھH�=�����)‰T$ ���鯃��A���H�D$I���I�T$ H��H�H��H�H9���zH)�H���.�袋.H��H��H�H��H�<�;������A�H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$������t�EIuH�D$H�@ H�@����L���H�=���H�D$A�|$H�(�z�L�� �H�=���z�L���H�=���a�H�D$�L��H��H�1����L��
�6��L$1��H���L���\��A�|$��D�MH�1��H���L��A��A��DMLA��Mc�L)�H�����H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H���1��L��H������H9�u�H�l$L���H�=ѱ�l�L��*�H�=���S�L��H�H�=/��:�L��
�-��L���H�=���L���H�=���L��(�H�=�����L���H�=7����L���H�=����L���H�=���L���H�=���~�L�� �H�=���e�L��
�H�="��L�L���H�=
��3�EH�\$ L��H�IJ���K���EL)�1��I��L��"�H�=�����EH��L��H�������EL)�1����L��:�H�=����L���H�=����L���H�=Z���EH+]LL��ھH�=B����)‰T$ ��T��_��A���H�D$I���I�T$ H��H�H��H�H9���vH)�H���.�袋.H��H��H�H��H�<��{������H�D$A���I���H�(H��H��H�H9��ưH���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�{����t�EIuH�D$H�@ H�@���"L���H�=���W�H�D$A�|$H�(�A�L�� �H�=o��*�L���H�=;���H�D$�L��H���H�1��3��L��
����L$1��H�T�L�����A�|$��D�MH�1��H�i�L��A��A��DMLA��Mc�L)�H������H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H�2�1��L��H�����H9�u�H�l$L���H�=����L��*�H�=����L��H�H�=�����L��
����L���H�=�����L���H�=����L��(�H�=G���L���H�=��y�L���H�=p��`�L���H�=̭�G�L���H�=E��.�L�� �H�=Z���L��
�H�=ҥ��L���H�=�����EH�\$ L��H�t����K���EL)�1����L��"�H�==���EH��L��H�Q�����EL)�1����L��:�H�=_��b�L���H�=l��I�L���H�=
��0�EH+]LL��ھH�=����)‰T$ ����{��A���H�D$I���I�T$ H��H�H��H�H9��rH)�H���.�袋.H��H��H�H��H�<�w�����c}H�D$A���I���H�(H��H��H�H9��}H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�0w����t�EIuH�D$H�@ H�@���
L���H�=p���H�D$A�|$H�(��L�� �H�=���
�L���H�=��
�H�D$�L��H�F�H�1�����L��
���L$1��H��L�����A�|$�U�D�MH�1��H��L��A��A��DMLA��Mc�L)�H���z��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H���1��L��H���/��H9�u�H�l$L���H�=1����L��*�H�=X���L��H�H�=����L��
���L���H�=J��t�L���H�=O��[�L��(�H�=���B�L���H�=���)�L���H�= ���L���H�=|���L���H�=�����L�� �H�=
����L��
�H�=����L���H�=m���EH�\$ L��H�$����K���EL)�1����L��"�H�=��P�EH��L��H������EL)�1��k��L��:�H�=���L���H�=��
�L���H�=����
�EH+]LL��ھH�=�����)‰T$ ��
��v��A���H�D$I���I�T$ H��H�H��H�H9���lH)�H���.�袋.H��H��H�H��H�<�Ks�������H�D$A���I���H�(H��H��H�H9��[�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$��r����t�EIuH�D$H�@ H�@����L���H�= ��	�H�D$A�|$H�(��L�� �H�=���	�L���H�=���q	�H�D$�L��H���H�1����L��
�F��L$1��H���L���l��A�|$��D�MH�1��H���L��A��A��DMLA��Mc�L)�H���*��H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H���1��L��H������H9�u�H�l$L���H�=��|�L��*�H�=��c�L��H�H�=?��J�L��
�=��L���H�=���$�L���H�=����L��(�H�=�����L���H�=G����L���H�=��L���H�=,���L���H�=����L�� �H�=���u�L��
�H�=2��\�L���H�=��C�EH�\$ L��H�ԥ���K���EL)�1��Y��L��"�H�=����EH��L��H�������EL)�1����L��:�H�=�����L���H�=̣��L���H�=j���EH+]LL��ھH�=R����)‰T$ ��d��or��L���H�=���F�A�|$�M�L�� �H�=f��!�L��(�H�=����L�t$L��1�H����I��*��I�>@��t@��uH�����t�����u�S��L��
���H�D$�L��H�;�H�H1����L��
���l$ �1�H���L��D�u���D�����H�ؚ1��L����L$1��H���L���t��A�|$���L���H�=t���L��6�H�=����L��
����L���H�=�����L���H�=����L��
�H�=t���L���H�=j���L���H�=}��l�A�|$L��H�2�H�
ŦH�N��HD�1��~��L���H�=K��%�L���H�=#���A�|$�a���H�o��1�L���(��L��8�H�=�����L���H�=ՠ��L��
�H�=s���L���H�=^���D��L��H��1�諿�L��"�H�=��R��H�	�1��L���z��L��:�H�=��!�L���H�=+���L���H�=ɘ���L���H�=�����l$ ��n��L���H�=���A�|$�y�L�� �H�=����L��(�H�=��v�L�t$L��1�H�#��I�蘾�I�>@��t@��uH�����t�����u��L��
�$��H�D$�L��H���H�H1��E��L��
���D$ �L��H���h�1������L$1��H�G�L����A�|$���L���H�=����L��+�H�=����L��
�t��L���H�=1��[�L���H�=S��B�L��)�H�=���)�L���H�='���A�|$�'���L��H�p�1���,��L��8�H�=�����L���H�=ٝ��L��
�H�=w���L���H�=b����L��H��1�谼�L��"�H�=��W�L$ L��1�H����}��L��:�H�=!��$�L���H�=.���L���H�=̕���L���H�=�������k��A���H�D$I���I�T$ H��H�H��H�H9���bH)�H���.�袋.H��H��H�H��H�<�ph�����^�H�D$A���I���H�(H��H��H�H9���H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�h����t�EIuH�D$H�@ H�@��L���H�=E����H�D$A�|$H�(��L�� �H�=���L���H�=����H�D$�L��H��H�1�踺�L��
�k��L$1��H��L��葺�A�|$�I�D�MH�1��H��L��A��A��DMLA��Mc�L)�H���O��H��~U�D$ H�l$I�D�I��I�H�L��I��H���M�.H��H���1��L��H����H9�u�H�l$L���H�=���L��*�H�=(���L��H�H�=_��j��L��
�]��L���H�=��D��L���H�=��+��L��(�H�=�����L���H�=g���L���H�=����L���H�=L����L���H�=ř��L�� �H�=ڽ��L��
�H�=R��|��L���H�==��c��EH�\$ L��H�����K���EL)�1��y��L��"�H�=��� ��EH��L��H�Ѧ����EL)�1��;��L��:�H�=ߦ���L���H�=����L���H�=����EH+]LL��ھH�=r����)‰T$ ����g��A���H�D$I���I�T$ H��H�H��H�H9��^H)�H���.�袋.H��H��H�H��H�<�d�������H�D$A���I���H�(H��H��H�H9��3�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�c����t�EIuH�D$H�@ H�@��OL���H�=���H�D$A�|$H�(�;�L�� �H�=���Z��L���H�=k��A��H�D$�L��H�ƖH�1��c��L��
���L$1��H���L���<��A�|$��D�MH�1��H���L��A��A��DMLA��Mc�L)�H����H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H�b�1��L��H��诵�H9�u�H�l$L���H�=���L��L��*�H�=غ�3��L��H�H�=����L��
�
��L���H�=ʕ���L���H�=ϕ���L��(�H�=w����L���H�=���L���H�=����L���H�=���w��L���H�=u��^��L�� �H�=���E��L��
�H�=��,��L���H�=����EH�\$ L��H������K���EL)�1��)��L��"�H�=m����EH��L��H�������EL)�1����L��:�H�=����L���H�=���y��L���H�=:��`��EH+]LL��ھH�="����)‰T$ ��4���?c��A���H�D$I���I�T$ H��H�H��H�H9���YH)�H���.�袋.H��H��H�H��H�<��_������cH�D$A���I���H�(H��H��H�H9��יH���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�`_����t�EIuH�D$H�@ H�@��gL���H�=���7��H�D$A�|$H�(�_�L�� �H�=O��
��L���H�=����H�D$�L��H�v�H�1����L��
����L$1��H�4�L�����A�|$�KjD�MH�1��H�I�L��A��A��DMLA��Mc�L)�H��誱�H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H��1��L��H���_��H9�u�H�l$L���H�=a����L��*�H�=������L��H�H�=������L��
���L���H�=z����L���H�=����L��(�H�='��r��L���H�=Ǒ�Y��L���H�=P��@��L���H�=���'��L���H�=%����L�� �H�=:����L��
�H�=������L���H�=������EH�\$ L��H�T����K���EL)�1��ٯ�L��"�H�=����EH��L��H�1�����EL)�1�蛯�L��:�H�=?��B��L���H�=L��)��L���H�=����EH+]LL��ھH�=҈���)‰T$ �������^��A���H�D$I���I�T$ H��H�H��H�H9��(UH)�H���.�袋.H��H��H�H��H�<�{[�����e�H�D$A���I���H�(H��H��H�H9��I�H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�[����t�EIuH�D$H�@ H�@��;�L���H�=P�����H�D$A�|$H�(�t�L�� �H�=�����L���H�=ˆ���H�D$�L��H�&�H�1��í�L��
�v��L$1��H��L��蜭�A�|$�ߖD�MH�1��H���L��A��A��DMLA��Mc�L)�H���Z��H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H�­1��L��H�����H9�u�H�l$L���H�=����L��*�H�=8����L��H�H�=o��z��L��
�m��L���H�=*��T��L���H�=/��;��L��(�H�=׶�"��L���H�=w��	��L���H�=�����L���H�=\�����L���H�=Ռ���L�� �H�=����L��
�H�=b����L���H�=M��s��EH�\$ L��H�����K���EL)�1�艫�L��"�H�=͙�0��EH��L��H������EL)�1��K��L��:�H�=�����L���H�=������L���H�=�����EH+]LL��ھH�=�����)‰T$ �����Z��A���H�D$I���I�T$ H��H�H��H�H9���PH)�H���.�袋.H��H��H�H��H�<�+W������eH�D$A���I���H�(H��H��H�H9��D_H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�V����t�EIuH�D$H�@ H�@���L���H�=����H�D$A�|$H�(�ޢL�� �H�=���j��L���H�={��Q��H�D$�L��H�։H�1��s��L��
�&��L$1��H���L���L��A�|$��aD�MH�1��H���L��A��A��DMLA��Mc�L)�H���
��H��~P�D$ H�l$I�D�I��I�H�L��I��H��M�.H��H�r�1��L��H��迨�H9�u�H�l$L���H�=���\��L��*�H�=��C��L��H�H�=��*��L��
���L���H�=ڈ���L���H�=߈����L��(�H�=������L���H�='����L���H�=�����L���H�=����L���H�=���n��L�� �H�=���U��L��
�H�=��<��L���H�=���#��EH�\$ L��H������K���EL)�1��9��L��"�H�=}�����EH��L��H�������EL)�1���L��:�H�=�����L���H�=�����L���H�=J��p��EH+]LL��ھH�=2����)‰T$ ��D���OV��A���H�D$I���I�T$ H��H�H��H�H9��:LH)�H���.�袋.H��H��H�H��H�<��R������^H�D$A���I���H�(H��H��H�H9��[H���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�pR����t�EIuH�D$H�@ H�@��7�L���H�=���G��H�D$A�|$H�(���L�� �H�=_����L���H�=+~���H�D$�L��H���H�1��#��L��
�ָ�L$1��H�D�L����A�|$��rD�MH�1��H�Y�L��A��A��DMLA��Mc�L)�H��躤�H��~P�D$ H�l$I�D�I��I�<H�L��I��H��M�.H��H�"�1��L��H���o��H9�u�H�l$L���H�=q����L��*�H�=������L��H�H�=Ϩ����L��
�ͷ�L���H�=�����L���H�=�����L��(�H�=7����L���H�=ׄ�i��L���H�=`��P��L���H�=���7��L���H�=5����L�� �H�=J����L��
�H�=�|����L���H�=�|����EH�\$ L��H�d����K���EL)�1����L��"�H�=-����EH��L��H�A�����EL)�1�諢�L��:�H�=O��R��L���H�=\��9��L���H�=�{� ��EH+]LL��ھH�=�{���)‰T$ ������Q��L���H�=?�����H�D$A�|$H���WL��!�H�=v����L���H�=P����H�D$�L��H��H�1�財�L��
�e��L$1��H�ӧL��苡�A�|$�"oL���H�=���&��A�|$L��H��yH�
��HD�H��1��8��L���H�=�z����D�t$ L��1�H����D��+K��L��"�H�=B����D��+CL��HH�R��1��Ơ�L��:�H�=j��m��L���H�=w��T��L���H�=z�;��D��L�����H�=�y+C�D$ ���� P��L���H�=`����A�|$��mL��!�H�=������L���H�=y���L��"�H�=Ͳ���H�\$L��1�H����H��Ÿ�L��
�u��H�K�1�H��L��蛟�L��
�N��L$1��H���L���t��A�|$�J�L���H�=t���L��P�H�=K����L���H�=�x����\$ L��1�H��~��ك���L��"�H�=B�����L��H�T�1��͞�L��:�H�=q��t��L���H�=~�[��L���H�=x�B��L��\$ ��H�=x�%���0N��L���H�=p~���A�|$���L��!�H�=������L���H�=�v����L��"�H�=ݰ���H�\$L��1�H���H��ҝ�L��
腱�H�K�1�H���L��諝�L��
�^��L$1��H�̣L��脝�A�|$��L���H�=�}���L��P�H�=�����L��
��L���H�=������L��R�H�=̰����L��5�H�=#����L���H�=�}���L��0�H�=)��|��L���H�=�}�c��L���H�=Z}�J��L���H�=�}�1��L���H�=/}���L��
�H�=�u���L���H�=�u����L���H�=�|����L��(�H�=i����L���H�=	}���L���H�=�|���L���H�=�|�i��L���H�=g|�P��L��
�H�=
u�7��L���H�=�t���\$ �1�H��}L��ك��?��L��"�H�=�������H���1��L�����L��:�H�=�����L���H�=�{���L���H�=]t���\$ L���H�=Dt�f���D$'�\$DA�<$��J��E���D;D$ ��H��H�<3B�xu�@����J���L$ H���J��L���H�=cz���A�|$���L���H�=�r����L�� �H�=�����L��"�H�=Ȁ���L���H�=M~���H�D$�L��H��rH�1�謙�L��
�_��A������A�|$�́L���H�=�y�,��L��3�H�=`����L��(�H�=����L��D�H�=������L���H�=�r����\$ L��1�H�Z{�������L�����H�=lr�D$ ����H��L���H�=�x�l��A�|$�ȀL���H�=qq�G��L�� �H�=+�.��L��"�H�=:���L���H�=�|���H�D$�L��H�+qH�1����L��
�ѫ�A�����A�|$��L���H�=x���L��3�H�=�~���L��(�H�=�~�l��L��D�H�=�S��L���H�=q�:��\$ L��1�H��y����^���L�����H�=�p�D$ ����G��L���H�=Gw����A�|$��~L���H�=�o���L�� �H�=�}���L��"�H�=�}���L���H�=1{�n��H�D$�L��H��oH�1�萖�L��
�C��D$ �L��H��o�X�1����d��A����~A�|$��}L���H�=Vv����L��B�H�=�}����L��(�H�=~���L��D�H�=~���L���H�=go���L���H�=Ro�t��\$ �{E��L���H�=�u�R��A�|$��|L���H�=Wn�-��L�� �H�=|���L��"�H�= |���L���H�=�y����H�D$�L��H�nH�1����L��
跨�D$ �L��H�n�X�1����ؔ�A����|A�|$��{L���H�=�t�e��L��B�H�=I|�L��L��(�H�=x|�3��L��D�H�=�|���L���H�=�m���L���H�=�m����\$ ��C��L���H�=/t����A�|$�{L���H�=�l���L���H�=kx���A�����PA�|$��NL���H�=�s�U��L���H�=o�<��L���H�=�l�#��\$ L��1�H��u����G���L�����H�=�l�D$ ������B��A���H�D$I���I�T$ H��H�H��H�H9���8H)�H���.�袋.H��H��H�H��H�<�|?������HH�D$A���I���H�(H��H��H�H9��vHH���������H��H)�H��H��I�T$(�zu6H��ID$ H��H�D$�?����t�EIuH�D$H�@ H�@����L���H�=Qr����H�D$A�|$H�(�m�L�� �H�=����L���H�=�j���H�D$�L��H�'rH�1��đ�L��
�w��L$1��H��L��蝑�A�|$��FD�MH�1��H���L��A��A��DMLA��Mc�L)�H���[��H��~Q�D$ H�l$I�D�I��I�H�L��I��H��@M�.H��H�‘1��L��H�����H9�u�H�l$L���H�=q���L��*�H�=8����L��H�H�=o��z��L��
�m��L���H�=*q�T��L���H�=/q�;��L��(�H�=ך�"��L���H�=wq�	��L���H�=q����L���H�=\q����L���H�=�p���L�� �H�=����L��
�H�=bi���L���H�=Mi�s��EH�\$ L��H�r���K���EL)�1�艏�L��"�H�=�}�0��EH��L��H��}����EL)�1��K��L��:�H�=�}����L���H�=�o����L���H�=�h���EH+]LL��ھH�=�h���)‰T$ �����>��L���H�=�n�v��A�|$�HDL�� �H�=���Q��L��"�H�=
��8��L�t$L��1�H�
j�I��Z��I�>@���}6@���X6L��
��H�D$�L��H�{nH�H1����L��
�ʡ�A�����UA�|$��UL���H�=�m���L��<�H�=Ô�~��L��
�q��L���H�=.n�X��L��)�H�=T��?��A�|$��X��L��H���1���[��L��8�H�=�����L���H�=n����L��
�H�=�f����L���H�=�f���\$ L��1�H�Io����ی��L�����H�=[f�D$ �y���<��L���H�=�l�[��H�D$A�|$H��DBL���H�=Xe�.��L�� �H�=:����H�D$�L��H��gH�1��7��L��
���L$1��H�X�L�����A�|$�PDL���H�=l���A�|$L��H��cH�
gcHD�H��1�轋�L���H�=>e�d��D$ L��H��m�)؍X1��K�肋�L��"�H�=�y�)���L��H��y1��Q��L��:�H�=�y���L���H�=l����L���H�=�d����L��\$ ��H�=�d����:��L���H�=�j���H�D$A�|$H���BL���H�=�c�^��L�� �H�=j��E��H�D$�L��H�,fH�1��g��L��
���L$1��H���L���@��A�|$�BBL���H�=@j����A�|$L��H��aH�
�aHD�H�d�1����L���H�=nc���D$ L��H�(l�)؍X1��K�貉�L��"�H�=�w�Y���L��H�x1�聉�L��:�H�=%x�(��L���H�=2j���L���H�=�b���L��\$ ��H�=�b������8��L���H�=$i���H�D$A�|$H���@L�� �H�=ӌ���L��"�H�=��u��L���H�=�a�\��L�t$L��1�H��h�I��~��L��
�1��I�N�1�H��hL���W��L��
�
��L$1��H�x�L���0��A�|$��+D�KH�1��H���L��A��A��DKLA��Mc�L)�H�����H���z+�D$ H�\$I�D�I��I�.H�L��I��H��M�H��H�R�1��L��H��蟇�H9�u�H�\$�%+L���H�=�g�7��H�D$A�|$H��3?L�� �H�=O��
��L���H�=`����H�D$�L��H�vgH�1����L��
�ƚ�L$1��H�4�L�����A�|$��'D�KHH�U�L��1��A��A��DKLA��Mc�M��I��L��L�D$视�L�D$�l$ M���|'DN�D5L��L��H��1�I���n��1�L9�u��I'�|$ t:H�B�xu�p��t!H�`!B�L$ �H�`�H�81��&��A�$I�|$0L���}��H�=%f���A�|$�/L���H�=�^���D$ �L��H��^�X�1���踅�L$1��H��L��螅�A�|$��-��H����1�L���z��L���H�=�e�!��L���H�=�����L��<�H�=������L��"�H�=�����L��?�H�=����L���H�=v^���L��
�H�=a^���L��
�~��L��5�H�=ڎ�e��L���H�=@e�L��L��0�H�=��3��L���H�=�e���L���H�=e���L���H�=ee����L���H�=�d����L��
�H�=�]���L���H�=�]���L���H�=xd���L��0�H�=��k��L���H�=�d�R��L���H�=Id�9��L���H�=�d� ��L���H�=d���L��
�H�=�\�&L���H�=>c����A�|$�OPL��'�H�=�����L��(�H�=�����H�D$�L��H���H�1�蹂�L��
�l��D$ �L��H��c�X�1���荂�L$1��H���L���s��A�|$��2L���H�=sb���L��>�H�=Z����L���H�=������L���H�=tc����L���H�=�[����L��H�;d1��ҁ�L��"�H�=p�y��L$ L��1�H�)p�蟁�L��:�H�=Cp�F��L���H�=Pb�-��L���H�=�Z�����L���H�=_a���H�D$A�|$H��p1L���H�=������H�D$�L��H�|bH�1����L��
螔�L$1��H��L���Ā�A�|$��0L���H�=�`�_��L�� �H�=+��F��\$�D$L��H�b���1��f��L���H�=�Y�
��L��"�H�=�n����L$ L��1�H��n����L��:�H�=�n���L���H�=�`���L���H�=iY���L���H�=TY�v���/��L���H�=�_�X��H�D$A�|$H���/L���H�=��+��L���H�=<X���H�D$�L��H��`H�1��4�L��
���D$ �L��H�OX�h�1�����L$1��H�6�L����~�A�|$��+L���H�=�^���L���H�=q`�p��L��$�H�=d��W��D�t$L��1�H�&`�D���w~�L��
�H�=�W���L���H�=�W���L��"�H�=�l����H��l1��L���~�L��:�H�=�l��L���H�=�^��L���H�=cW��L���H�=NW�p��I�T$D��H���<���*H�@_�L��1��}�l$ �\$�H-��L���H�=�]���H�D$A�|$H��*L���H�=�����L���H�=V���H�D$�L��H��^H�1��|�L��
讐�D$ �L��H�V�h�1�����|�L$1��H���L���|�A�|$��)L���H�=�\�P��L���H�=S^�7��L��$�H�=+����D�t$L��1�H��]�D���>|�L��
�H�=�U���L���H�=�U�̿�L��"�H�=Pj賿��H�jj1��L����{�L��:�H�=j肿�L���H�=�\�i��L���H�=*U�P��L���H�=U�7��I�T$D��H���<����'H�]�L��1��L{�l$ �\$�+��L���H�=O[���H�D$A�|$H���'L���H�=~�蹾�L���H�=�S蠾�H�D$�L��H�S\H�1���z�L��
�u��D$ �L��H��S�h�1����z�L$1��H�ĀL���|z�A�|$��8L���H�=|Z���L���H�=6\��L��$�H�=����D�t$L��1�H��[�D���z�L��
�H�=�S謽�L���H�=mS蓽�L��"�H�=h�z���H�1h1��L���y�L��:�H�=Fh�I��L���H�=SZ�0��L���H�=�R���L���H�=�R��I�T$D��H���<���a%H��Z�L��1��y�l$ �\$��(��L���H�=Y譼�H�D$A�|$H��i6L���H�=�Z耼�L���H�=,��g��L���H�=xQ�N��L�t$L��1�H�Z�I��px�L��
�#��I�N�1�H�yZL���Ix�L��
��A�����5A�|$�t5L���H�=.X�ɻ�L��)�H�=�谻�L���H�=Z藻�D�t$ L��1�H� Z�D���w�l$�1�H�GYL�����w�L��
�H�=Q�B��L���H�=Q�)��L���H�=	Q���L��
�H�=�P��L���H�=�P�޺�D��L��H�nY1�A���w�L��H�=�PD�t$ 裺�I�T$��<����#��H�uX�1�L���v�\$�&��L���H�=�V�X��A�|$��4L���H�=�X�3��L���H�=DO���H�D$�L��H�nXH�1��<v�L��
���D$ �L��H�WO�X�1����v�A�����3A�|$��3L���H�=V蝹�L��)�H�=�脹�L���H�=EO�k���L��H��W1��u�L���H�=O�:���E%��L���H�=�U���A�|$��2L���H�=�W��L���H�=�T�޸�L���H�=�M�Ÿ�H�\$L��1�H��T�H���t�L��
蚈�H�K�1�H�\WL���t�L��
�s��L$1��H��zL���t�A�|$�=�L$ H��zL��1���st�L���H�=T���L��/�H�=�����L���H�=�M���\$ L��1�H�zV��ك��	t�L��"�H�=Mb谷��L��H�_b1���s�L��:�H�=|b���L���H�=�T�f��L���H�='M�M��L��\$ ��H�=M�0���;#��L���H�={S���H�D$A�|$H�H�\$H�X��1L���H�=��ܶ�L��&�H�=��ö�L���H�=�U誶�L�t$L��1�H��U�I���r�L��
���I�N�1�H�uL���r�L��
�X��D$ �L��H�gU�h�1����yr�A�����0A�|$��/L���H�=kRL�t$`���L��?�H�=���L��
�ۅ�L���H�=�T�µ�L$��H�=�TL�l$`�L$hL��H�D$p4蓵�H�|$�l�L��H�5��H���w��H�پL��H��T1��q�L$h�1�H��TL��H��q�L���H�=K�(��L��
�H�=�J���L���H�=�J��L���H�=�J�ݴ�D$I�T$�<��H����H��R�L��1���p�l$ � ��L���H�=�P菴�A�|$�(>L���H�=/K�j��L���H�=EP�Q��L���H�=�J�8��H�\$L��1�H�K�H��Zp�L��
�
��H�K�1�H�PL���3p�L��
���l$ �D$ L��H�5J���1��p�L$1��H�3vL����o�A�|$�r�L$ H��uL��1����o�L���H�=�O�l��L��:�H�=�o�S��L���H�=I�:��L��"�H�=�]�!��L$ L��1�H��]��Go�L��:�H�=�]���L���H�=�O�ղ�L���H�=�H輲�L���H�=�H裲����H�D$A���I���L�H��H��H�L��I9��*H)�H���.�袋.H��H��HՋD$ L�T$(���D$I�D$(�xuFH�D$H��Il$ H��H�@H�D$0�����t#L�T$(A�BH�D$8��uH�E H�@��evL���H�=HN�߱�H�D$A�|$H���dL�� �H�=�q貱�L��"�H�=r虱�L���H�=�F耱�L�t$L��1�H�N�I��m�L��
�U��I�N�1�H��ML���{m�L��
�.��L$1��H��sL���Tm�A�|$�aD�KH�1��H��lL��A��A��DKLA��Mc�L)�H���m�H��~P�D$ H�\$I�D�I��I�.H�L��I��H��M�H��H�zm1��L��H����l�H9�u�H�\$L���H�=�L�d��L��X�H�=�p�K��L��H�H�='q�2��L��
�%��L���H�=�L���L���H�=�L���L��(�H�=�v�گ�L���H�=/M��L���H�=�L訯�L���H�=M華�L���H�=�L�v��L�� �H�=�p�]��L��
�H�=E�D��L���H�=E�+��CH�L$L��H��M����CL)�1��Dk�L��"�H�=�Y���CHD�t$ L��H��Y���D���CL)�1��k�L��:�H�=�Y觮�L���H�=�K莮�L���H�=OD�u��CHD��+SLL��H�=6D���)‰T$ ��H���S��H�D$A���I���L�H��H��H�L��I9���
H)�H���.�袋.H��H��H�I�D$(L�T$�xu2H��Il$ H��������tL�T$A�BIuH�E H�@���mL���H�=J裭�H�D$A�|$H���`L�� �H�=�m�v��L���H�=�B�]��H�D$�L��H��IH�1��i�L��
�2}�L$1��H��oL���Xi�A�|$�FD�KH�1��H��hL��A��A��DKLA��Mc�L)�H���i�H��~T�D$ H�\$I�D�I��I�.H�L��I��H���M�H��H�zi1��L��H����h�H9�u�H�\$L���H�=�H�d��L��*�H�=�m�K��L��H�H�='m�2��L��
�%|�L���H�=�H���L���H�=�H���L��(�H�=�r�ګ�L���H�=/I��L���H�=�H訫�L���H�=I菫�L���H�=�H�v��L�� �H�=�l�]��L��
�H�=A�D��L���H�=A�+��CHD�t$ L��H��I���A�N���CL)�1��?g�L��"�H�=�U���CHD��L��H��U����CL)�1��g�L��:�H�=�U觪�L���H�=�G莪�L���H�=O@�u��CHD+sLL��D��H�=5@���)‰T$ ��G���R��L���H�=�F�)��A�|$��@L�� �H�=Ij���L��"�H�=�[���L�t$L��1�H��A�I��
f�I�>@���U@���0L��
�y�H�D$�L��H�.FH�H1���e�L��
�}y�A����S/A�|$��-L���H�=�E�J��L��<�H�=k�1��L��
�$y�L���H�=�E���L��)�H�=k���A�|$�-��L��H�Rk1���e�L��8�H�=jk赨�L���H�=�E蜨�L��
�H�=Y>胨�L���H�=D>�j��\$ L��1�H��F����d��L�����H�=>�D$ �,���7��L���H�=wD���A�|$��>L��"�H�=c���L��!�H�=-c�Ч�H�D$�L��H��=H�1���c�L��
�w�D$ �L��H�
=�X�1�����c�A����F>A�|$�>L���H�=�C�S��L��9�H�=�b�:��L���H�=�<�!���L��H��B1��Ic�L���H�=�<������L���H�=;C�Ҧ�A�|$�V=L���H�=mB警�L��9�H�=�`蔦�H�\$L��1�H�a�H��b�L��
�iv�H�K�1�H�aL���b�L��
�Bv�A����!A�|$�� L���H�=tB���L��H�H�=�`��L���H�=�;�ݥ�\$ L��1�H��A����b��L�����H�=�;�D$ 蟥����L���H�=�A聥�A�|$��;L���H�=!<�\��L���H�=7A�C��H�\$L��1�H�'<�H��ea�L��
�u�H�K�1�H�AL���>a�L��
��t�L$1��H�_gL���a�A�|$�M�L$ H�gL��1����`�L���H�=�@蘤�L��<�H�=t`���L���H�=@:�f��L��"�H�=�N�M��L$ L��1�H��N��s`�L��:�H�=O���L���H�=$A���L���H�=�9���L���H�=�9�ϣ�����H��A�xu�H��t H��AH��H��sH�81���_�A�$�D$A;G������1�H�5_�1�L���_����H���������H)�H��H���I���H���������H)�H��H�����1�H��^�1�L���U_���1�H��^�1�L���8_����L$ H�0eL��1���_�L���H�=%?��L��9�H�=4g觢�L��Q�H�=[g莢�L��
�H�=K8�u��L��
�hr�L��*�H�=�c�O��L��H�H�=[g�6��L��
�)r�L���H�=�>���L���H�=�>��L��(�H�=�h�ޡ�L���H�=3?�š�L���H�=�>謡�L���H�=?蓡�L���H�=�>�z��L�� �H�=�b�a��L��
�H�=7�H��L���H�=	7�/��CHD�t$ L��H��?���D���CL)�1��D]�L��"�H�=�K���CHL��H��K���CL��A�L1��]�L��:�H�=�K誠�L���H�=�=葠�L���H�=R6�x��CHA�V+SLL��H�=86���)‰T$ ��J���U���L$ H��bL��1���k\�L���H�=w<���L��W�H�=�c��L��I�H�=d���L��
��o�L���H�=�<躟�L���H�=�<衟�L��(�H�==f舟�L���H�=�<�o��L���H�=f<�V��L���H�=�<�=��L���H�=;<�$��L�� �H�=P`���L��
�H�=�4���L���H�=�4�ٞ�CHD�t$ L��H�i=���A�N���CL)�1���Z�L��"�H�=1I蔞�CHD��L��H�DI����CL)�1��Z�L��:�H�=RI�U��L���H�=_;�<��L���H�=�3�#��CHD+sLL��D��H�=�3���)‰T$ ����
��H���������H)�H��H���=��H���������H)�H��H���ij��H���������H)�H��H���Z���H���������H)�H��H��� ���H���������H)�H��H���֪��H���������H)�H��H���l���H)�H���.�袋.H��H��H���\��H���������H)�H��H�����H���������H)�H��H���v���H���������H)�H��H���x��H���������H)�H��H���?X��H���������H)�H��H����S��H���������H)�H��H�����H���������H)�H��H���y���H���������H)�H��H������H���������H)�H��H��饀��H)�H���.�袋.H��H��H��5|��H���������H)�H��H���~s��H���������H)�H��H���o��H���������H)�H��H���h��H���������H)�H��H���(d��H)�H���.�袋.H��H��H��_��H�������������������[����H����������������Z���1�H�W�1�L���W��
���L$ H��]L��1���jW��=���L$ H�b]L��1���KW�����L$ H��=L��1���,W��$���L$ H�$]L��1���
W�����L$ H�}=L��1����V������L$ H�^=L��1����V�����腚�L���H�=�0�l��I��L��H��E1��V�I�N�1�H�	FL���yV��H�N11��L���aV�L�麓�H�=G���L��)�H�=�G���L��-�H�=�G�֙�L���H�=�/轙�L���H�=�/褙��H�;F1��L����U�L$ �1�H�:DL���U�L���H�=0�Y��L���H�=/�@��L���H�=/�'��l$ �.�����L���H�=}/���I��L��H�~D1��'U�I�N�1�H��DL���
U�L���H�=N/贘�L�麫�H�=�D蛘�D�t$ L��1�H�(7�D���T�L���H�=>.�d��L���H�=4.�K���H��D1��L���sT�D��L��H��B1��ZT�L���H�=�.���L���H�=�-���L���H�=�-�ϗ�l$ �����L$ H�ZL��1����S��*��L$ H��YL��1����S����L$M���L��L������l$ �\$�w���L$M���L��L���c���l$ �\$�V���L$M���L��L���B���l$ �\$�5���L$M���L��L���!���l$ ����L$�T$ M��L��L������\$����L$ H��9L��1���S�����L$ H�YL��1����R��	���L$ H��XL��1����R��#���L$ H�A9L��1���R��b��H���.�袋.H��H)�H��H��H��H��_��L���H�=�2�1��A�|$��OL�� �H�=QV���L��(�H�=h_���H�D$�L��H�x2H�1��R�L��
��e�l$ �1�H��2L��D�u���D����Q��H��+1��L����Q�L$1��H��WL���Q�A�|$��NL���H�=�1�M��L��%�H�=y_�4��L��
�'e�L���H�=�1���A�|$�{N��H�qW�1�L���*Q�L��8�H�=�W�є�L���H�=�1踔�L��
�H�=u*蟔�L���H�=`*膔�D��L��H�31��P�L��"�H�=�>�T���H�?1��L���|P�L��:�H�= ?�#��L���H�=-1�
��L���H�=�)���L���H�=�)�ؓ�l$ �����L$ H�VL��1���O���e���L$ H�e6L��1����O��M���L$ H��UL��1���O�����L$ H�'6L��1���O��q���L$ H��UL��1���yO��
��L���H�=�/���A�|$��PL�� �H�=;S��L��#�H�=�U�ݒ�H�D$�L��H�b/H�1��N�L��
�b�D$ �L��H��/�h�1�����N�A�����OA�|$��OL���H�=�.�`��L��$�H�=<`�G��L��
�:b�L���H�=�.�!��A�|$�OO��L��H��T1���=N�L��8�H�=�T���L���H�=�.�ˑ�L��
�H�=�'貑�L���H�=s'虑��L��H�*01��M�L���H�=F'�h���s���H���.�袋.H��H)�H��H��H��H��߂��L���H�=�-�'��A�|$��NL�� �H�=GQ���L��(�H�=^Z���H�D$�L��H�n-H�1��M�L��
�`�l$ �1�H��-L��D�u���D����L��H��&1��L����L�L$1��H��RL���L�A�|$�NL���H�=�,�C��L��&�H�=?\�*��L��
�`�L���H�=�,���A�|$��M��H�gR�1�L��� L�L��8�H�=|R�Ǐ�L���H�=�,讏�L��
�H�=k%蕏�L���H�=V%�|��D��L��H�.1��K�L��"�H�=�9�J���H�:1��L���rK�L��:�H�=:���L���H�=#,���L���H�=�$���L���H�=�$�Ύ�l$ ����H���.�袋.H��H)�H��H��H��H�鱠��H���.�袋.H��H)�H��H��H��H��ޤ���L$ H��PL��1���J���k���L$ H��PL��1���J��|����L$ H��0L��1���gJ��`����L$ H��0L��1���HJ�陻���L$ H��0L��1���)J�靽��H���.�袋.H��H)�H��H��H��H�����L���H�=*訍�A�|$��CL�� �H�=�M胍�L��#�H�=_P�j��H�D$�L��H��)H�1��I�L��
�?]�D$ �L��H�`*�h�1����`I�A����FCA�|$�CL���H�=R)���L��&�H�=�O�Ԍ�L��
��\�L���H�=�)讌�A�|$��B��L��H�O1����H�L��8�H�=&O�q��L���H�=w)�X��L��
�H�="�?��L���H�="�&���L��H��*1��NH�L���H�=�!�������L$ H��.L��1���H�����L$ H��.L��1���G������L$ H��ML��1����G�韽���L$ H�H.L��1���G�����L$ H��ML��1���G�鑻���L$ H��ML��1���{G��!����L$ H�sML��1���\G�颞��L���H�=g'��A�|$�CIL�� �H�=K�ي�L��)�H�=-Y��H�D$�L��H�E'H�1���F�L��
�Z�l$ �1�H��*L��D�u���D���F��H��*1��L���F�L$1��H��LL���F�A�|$�eHL���H�=&���L��/�H�=�X���L��
��Y�L���H�=�&�ۉ�A�|$��G��H�>L�1�L���E�L��8�H�=SL螉�L���H�=�&腉�L��
�H�=B�l��L���H�=-�S��D��L��H��'1��zE�L��"�H�=�3�!���H��31��L���IE�L��:�H�=�3���L���H�=�%�׈�L���H�=�辈�L���H�=�襈�l$ ��L$ H��JL��1����D�����L���H�=�$�d��A�|$�'?L�� �H�=�H�?��L��#�H�=K�&��H�D$�L��H��$H�1��HD�L��
�W�D$ �L��H�%�h�1����D�A����~>A�|$�S>L���H�=$詇�L��$�H�=�U萇�L��
�W�L���H�=@$�j��A�|$��=��L��H��I1���C�L��8�H�=�I�-��L���H�=3$���L��
�H�=���L���H�=�����L��H�s%1��
C�L���H�=�豆���L$H�!IL��1����B������L$ H��HL��1���B��O���L$ H��HL��1���B��m���L$H��HL��1���uB��B���L$ H��(L��1���VB��x���L$ H��(L��1���7B������L$ H�/HL��1���B�����L$H�HHL��1���A������L$ H�i(L��1����A��I���L$ H��GL��1���A��F���L$H��GL��1���A��,���L$ H�(L��1���}A��C���L$ H�uGL��1���^A������L$H��GL��1���?A������L$H�oGL��1��� A��)���L$ H��'L��1���A�����L$ H��FL��1����@����L���H�=� 脄�A�|$��CL�� �H�=�D�_��L��(�H�=�M�F��H�D$�L��H�� H�1��h@�L��
�T�D�t$ L��1�H�>!�A�n�A�����6@�1�D��H�GL���@�A�����BA�|$��BL���H�= 誃�L��$�H�=�N葃�L��
�S�L���H�=A �k��A�|$�KB��H��E�1�L���?�L��8�H�=�E�.��L���H�=4 ���L��
�H�=���L���H�=�����H�|!1��L���?�L���H�=�貂�D�t$ ��L���H�=�菂�A�|$��:L�� �H�=�B�j��L��(�H�=�K�Q��H�D$�L��H��H�1��s>�L��
�&R�D�t$ L��1�H�I�A�n�A�����A>�1�D��H�RL���(>�A�����9A�|$��9L���H�=赁�L��$�H�=M蜁�L��
�Q�L���H�=L�v��A�|$�19��H��C�1�L���=�L��8�H�=�C�9��L���H�=?� ��L��
�H�=����L���H�=�����H��1��L���=�L���H�=�轀�D�t$ ����L$ H��BL��1����<���Y���L$ H��BL��1���<��h9��H���.�袋.H��H)�H��H��H��H���7���L$ H��BL��1���x<��6��H���.�袋.H��H)�H��H��H��H���W��L���H�=`��A�|$��;L�� �H�=@���L��(�H�=.I��H�D$�L��H�>H�1���;�L��
�O�D�t$ L��1�H���A�n�A�����;�1�D��H��L���;�A�����:A�|$��:L���H�=���L��$�H�=)J��L��
�N�L���H�=���~�A�|$�:��H�AA�1�L���:�L��8�H�=VA�~�L���H�=��~�L��
�H�=E�o~�L���H�=0�V~��H��1��L���~:�L���H�=�%~�D�t$ �+��L$ H�X@L��1���A:��q���L$ H�9@L��1���":��(����L$ H�@L��1���:��|���L$ H��?L��1����9���{���L$ H��?L��1����9��y���L$ H��?L��1���9��9x���L$ H� L��1���9��h����L$ H��L��1���h9�����L$ H�`?L��1���I9�����L$ H�A?L��1���*9��|����L$ H��L��1���9�����L$ H�?L��1����8����L$H�?L��1����8���L$ H�=L��1���8����L$ H��>L��1���8���L$H��>L��1���p8��[�L$ H��L��1���Q8��r��L$ H�I>L��1���28��=����L$H�b>L��1���8������L$ H�>L��1����7������L$ H��=L��1����7��-���L$ H��=L��1���7�����L$H��=L��1���7�����L$ H�L��1���x7��d��L$ H�p=L��1���Y7����L$H��=L��1���:7��|��L$ H��L��1���7����L$ H�=L��1���6�����L$H�,=L��1����6����L$ H�ML��1���6����L$ H��<L��1���6����L$H��<L��1���6����L$ H�x<L��1���a6��q���L$H��<L��1���B6�����L$ H�:<L��1���#6���-���L$ H�<L��1���6��f���L$ H��;L��1����5�����L$H�<L��1����5������L$ H��;L��1���5��f
���L$H��;L��1���5��;
���L$ H��;L��1���i5�����L$H��;L��1���J5��\���L$ H�B;L��1���+5��7���L$H�[;L��1���5�����L$ H�;L��1����4�����L$H�;L��1����4�����L$ H��:L��1���4��7����L$H��:L��1���4��:)���L$ H�L��1���q4��(���L$ H�i:L��1���R4��'���L$H��:L��1���34��'���L$ H��L��1���4��&���L$ H�:L��1���3��U%���L$H�%:L��1����3��*%���L$ H�FL��1���3��$���L$ H��9L��1���3���#���L$H��9L��1���y3��#���L$ H��L��1���Z3��.#���L$ H�R9L��1���;3��"���L$H�k9L��1���3���!���L$ H��L��1���2��x!���L$ H��8L��1����2�� ���L$H�9L��1���2��X ���L$ H�/L��1���2�钯���L$ H�L��1���2�����L$ H��L��1���b2��2����L$ H�Z8L��1���C2�鿐���L$ H�;8L��1���$2�麍���L$ H�8L��1���2��[|���L$ H�uL��1����1��(	���L$ H�VL��1����1��Z
���L$ H�7L��1���1�����L$ H�L��1���1��;���L$ H��7L��1���j1��g���L$ H��L��1���K1������L$H�{7L��1���,1��h���L$ H��L��1���
1������L$ H�}L��1����0��(���L$ H��6L��1����0�����L$ H�?L��1���0��I���L$ H��6L��1���0��w���L$H��6L��1���r0��L���L$ H��L��1���S0�����L$ H�K6L��1���40��4���L$H�d6L��1���0��	���L$ H��L��1���/������L$ H��5L��1����/��}����L$ H�GL��1���/�����L$ H��5L��1���/��W����L$ H�	L��1���z/�����L$ H�r5L��1���[/��V����L$ H��L��1���</��y����L$ H�45L��1���/��4����L$ H��L��1���.��X����L$ H��4L��1����.������L$ H��4L��1���.��$���L$H��4L��1���.��l$���L$ H�L��1���.��#���L$ H�z4L��1���c.��#���L$ H��L��1���D.��$���L$ H��L��1���%.��&���L$ H�4L��1���.�����L$ H�vL��1����-��m���L$ H�WL��1����-�����L$ H��3L��1���-��9���L$ H�L��1���-�����L$ H��3L��1���k-������L$H��3L��1���L-�����L$ H��L��1���--��5���L$ H�%3L��1���-������L$ H�~L��1����,�����L$ H��2L��1����,�����L$H�3L��1���,��c���L$ H�!L��1���,������L$ H��2L��1���s,��O
���L$H��2L��1���T,��$
���L$ H��L��1���5,�����L$ H�-2L��1���,�����L$H�F2L��1���+��r���L$ H�gL��1����+���
���L$ H��1L��1���+��
���L$H��1L��1���+���	���L$ H�
L��1���{+��	���L$ H�s1L��1���\+�����L$ H��L��1���=+��,���L$ H�51L��1���+������L$ H��L��1���*�����L���H�=
�n�A�|$�'L�� �H�=�.�|n�L��-�H�=�:�cn�H�D$�L��H��
H�1��*�L��
�8>�l$ �1�H�ZL��D�u�D���W*�l$ ��L���H�f�1��8*�D$ �L��H��
�H�1��*�L$1��H�I0L���*�A�|$�&L���H�=
�m�L��+�H�=�9�m�L��
�v=�L���H�=3
�]m�A�|$��%��H��/�1�L���y)�L��8�H�=�/� m�L���H�=&
�m�L��
�H�=���l�L���H�=���l�D��L��H�e1��(�L��"�H�=@�l��H�Z1��L����(�L��:�H�=o�rl�L���H�=|	�Yl�L���H�=�@l�L���H�=�'l�l$ �.��L���H�=n�l�A�|$��&L�� �H�=%,��k�L��#�H�=�.��k�H�D$�L��H�LH�1���'�L��
�;�D$ �L��H���h�1����'�A�����%A�|$��%L���H�=��Jk�L��!�H�=N9�1k�L��
�$;�L���H�=��k�A�|$�Q%��L��H�k-1���''�L��8�H�=�-��j�L���H�=��j�L��
�H�=r�j�L���H�=]�j��L��H�	1��&�L���H�=0�Rj��]���L$ H��,L��1���s&��+���L$ H�k,L��1���T&��R'���L$ H�L,L��1���5&��kT���L$ H�-,L��1���&��4��H���.�袋.H��H)�H��H��H��H��
J���L$ H�cL��1����%�����L$ H�DL��1���%��S����L$ H�%L��1���%�����L$ H��+L��1���w%������L$H��+L��1���X%�����L$ H��L��1���9%���H���.�袋.H��H)�H��H��H��H���(��L���H�=!�h�A�|$�y'L�� �H�=�(�h�L��(�H�=�1�zh�H�D$�L��H��H�1��$�L��
�O8�D�t$ L��1�H�r�A�n�A�����j$�1�D��H�{�L���Q$�A�����&A�|$��&L���H�=C��g�L��&�H�=�1��g�L��
�7�L���H�=u�g�A�|$�&��H�*�1�L���#�L��8�H�=*�bg�L���H�=h�Ig�L��
�H�=��0g�L���H�=��g��H��1��L���?#�L���H�=���f�D�t$ ����H���.�袋.H��H)�H��H��H��H��"��L���H�=	�f�A�|$��L�� �H�=�&�{f�L��(�H�=�/�bf�H�D$�L��H��H�1��"�L��
�76�D�t$ L��1�H�Z�A�n�A�����R"�1�D��H�c�L���9"�A����&A�|$��L���H�=+��e�L��'�H�=z/�e�L��
�5�L���H�=]�e�A�|$�x��H��'�1�L���!�L��8�H�=�'�Je�L���H�=P�1e�L��
�H�=��e�L���H�=��d��H��1��L���'!�L���H�=����d�D�t$ ����H���.�袋.H��H)�H��H��H��H��)��L���H�=��d�A�|$�$L�� �H�=�$�cd�L��(�H�=�-�Jd�H�D$�L��H��H�1��l �L��
�4�l$ �1�H�AL��D�u���D���; ��H�T�1��L���# �L$1��H�Q&L���	 �A�|$�FL���H�=	�c�L��%�H�=�-�c�L��
�~3�L���H�=;�ec�A�|$����H��%�1�L����L��8�H�=�%�(c�L���H�=.�c�L��
�H�=��b�L���H�=����b�D��L��H�m1���L��"�H�=H
�b��H�b
1��L�����L��:�H�=w
�zb�L���H�=���ab�L���H�="��Hb�L���H�=
��/b�l$ �6��H���.�袋.H��H)�H��H��H��H��K��H���.�袋.H��H)�H��H��H��H��/O���L$ H�$L��1�����6���L$ H��#L��1������}C��L���H�=��a�A�|$�[L�� �H�=�!�da�L��(�H�=�*�Ka�H�D$�L��H��H�1��m�L��
� 1�l$ �1�H�B�L��D�u���D���<��H�U�1��L���$�L$1��H�R#L���
�A�|$�}L���H�=
��`�L��&�H�=),�`�L��
�0�L���H�=<��f`�A�|$����H��"�1�L����L��8�H�=�"�)`�L���H�=/��`�L��
�H�=��_�L���H�=����_�D��L��H�n�1���L��"�H�=I
�_��H�c
1��L�����L��:�H�=x
�{_�L���H�=���b_�L���H�=#��I_�L���H�=��0_�l$ �7��H���.�袋.H��H)�H��H��H��H��,���L$ H�A!L��1���*��E���L$ H�"!L��1�����$��H���.�袋.H��H)�H��H��H��H���c��L���H�=��^�A�|$��L�� �H�=��e^�L��#�H�=A!�L^�H�D$�L��H��H�1��n�L��
�!.�D$ �L��H�B��h�1����B�A����A�|$��L���H�=4���]�L��-�H�={+�]�L��
�-�L���H�=f��]�A�|$�Z��L��H��1����L��8�H�= �S]�L���H�=Y��:]�L��
�H�=���!]�L���H�=���]��L��H���1��0�L���H�=����\�����H���.�袋.H��H)�H��H��H��H��f���L$ H�d�L��1������ք���L$ H��L��1�������L$H��L��1�����ȃ���L$ H��L��1���x�����L$ H�pL��1���Y��
����L$H��L��1���:��߁���L$ H���L��1���������L$ H�L��1���������L$H�,L��1����������L$ H�M�L��1��������L$ H��L��1�����~���L$H��L��1������}���L$ H��L��1���a��.}���L$ H�YL��1���B���y���L$ H���L��1���#���x���L$ H�L��1�����w���L$ 1�H�r�L�����A����������f��L$ H�E�L��1��������L$ H��L��1�����i��H���.�袋.H��H)�H��H��H��H��>6���L$ H��L��1���U��hW��H���.�袋.H��H)�H��H��H��H��g���L$ H���L��1�����S��H���.�袋.H��H)�H��H��H��H��O���L$ H��L��1������WH���L$ H��L��1������'��H���.�袋.H��H)�H��H��H��H��,��L���H�=���1Y�A�|$�pL�� �H�=Q�Y�L��(�H�=h"��X�H�D$�L��H�x�H�1���L��
��(�D�t$ L��1�H���A�n�A�������1�D��H���L�����A�����A�|$�}L���H�=���WX�L��$�H�=;#�>X�L��
�1(�L���H�=���X�A�|$����H�{�1�L���4�L��8�H�=���W�L���H�=����W�L��
�H�=��W�L���H�=j��W��H�)�1��L����L���H�==��_W�D�t$ �e��H���.�袋.H��H)�H��H��H��H���;��L���H�=���W�A�|$�0L�� �H�=9��V�L��(�H�=P ��V�H�D$�L��H�`�H�1���L��
�&�D�t$ L��1�H����A�n�A�������1�D��H���L����A����hA�|$�=L���H�=���?V�L��*�H�=� �&V�L��
�&�L���H�=���V�A�|$����H�c�1�L����L��8�H�=x��U�L���H�=���U�L��
�H�=g��U�L���H�=R��xU��H��1��L����L���H�=%��GU�D�t$ �M���H���.�袋.H��H)�H��H��H��H���U��L���H�=j��U�A�|$� L�� �H�=!��T�L��#�H�=���T�H�D$�L��H�H�H�1����L��
�$�D$ �L��H����h�1�����A����wA�|$�LL���H�=���FT�L��/�H�=�!�-T�L��
� $�L���H�=���T�A�|$����L��H�g1���#�L��8�H�=��S�L���H�=���S�L��
�H�=n��S�L���H�=Y��S��L��H��1���L���H�=,��NS��Y����L$ H��L��1���o���$���L$H��L��1���P��$���L$ H���L��1���1���#��L���H�=<���R�A�|$�fL�� �H�=��R�L��(�H�=
�R�H�D$�L��H��H�1���L��
�j"�D�t$ L��1�H����A�n�A������1�D��H���L���l�A�����A�|$�sL���H�=^��Q�L��$�H�=���Q�L��
��!�L���H�=���Q�A�|$��
��H��1�L����
�L��8�H�=2�}Q�L���H�=���dQ�L��
�H�=!��KQ�L���H�=��2Q��H���1��L���Z
�L���H�=���Q�D�t$ ����L���H�=G���P�A�|$��
L�� �H�=��P�L��(�H�=�P�H�D$�L��H�%�H�1����L��
�u �D�t$ L��1�H����A�n�A������1�D��H���L���w�A����%
A�|$��L���H�=i��P�L��&�H�=���O�L��
���L���H�=����O�A�|$�w��H�(�1�L�����L��8�H�==�O�L���H�=���oO�L��
�H�=,��VO�L���H�=��=O��H���1��L���e�L���H�=���O�D�t$ ����L���H�=R���N�A�|$��L�� �H�=	��N�L��(�H�= �N�H�D$�L��H�0�H�1���
�L��
��D�t$ L��1�H����A�n�A�����
�1�D��H���L���
�A�����
A�|$��
L���H�=t��N�L��%�H�=��M�L��
���L���H�=����M�A�|$�,
��H�3�1�L����	�L��8�H�=H�M�L���H�=���zM�L��
�H�=7��aM�L���H�="��HM��H���1��L���p	�L���H�=���M�D�t$ �����L$ H���L��1���3	��#����L$ H���L��1���	��@�����H�=	��L��ĸ���L$ H�i�L��1�������B���L$ H�J�L��1�����Cc���L$ H�+�L��1���������L$ H��L��1���}��m���L$ H���L��1���^��Q���L$ H���L��1���?��g5���L$ H���L��1��� �����L$ H���L��1������=���L$ H�q�L��1�������L���L$ H�R�L��1������#���L$ H�3�L��1�����@���L$ H��L��1�����mY���L$ H���L��1���f��>0���L$ H���L��1���G������L$ H���L��1���(��8���L$ H���L��1���	��9���L$ H�y�L��1������T���L$ H�Z�L��1������]���L$ H�;�L��1������&���L$ H��L��1�����tt���L$ H���L��1���n�����L$ H���L��1���O���*���L$ H�?L��1���0��I����L$ H�(L��1�����Ƽ���L$H�AL��1�����雼���L$ H�b�L��1��������L$ H��L��1��������L$ H��L��1��������L$H��L��1���v��c����L$ H���L��1���W�����L$ H�GL��1���8����L$ H�0L��1�����d�L$H�IL��1�����9�L$ H�j�L��1������q��L$ H��
L��1�������L$ H��
L��1�������L$ H�
�L��1���~����L$ H�n
L��1���_�����L$ H�W
L��1���@��-���L$H�p
L��1���!�����L$ H���L��1�����:���L$ H��	L��1������M���L$ H��	L��1����������L$ H�4�L��1���������L$ H��	L��1��������L$ H�~	L��1���g��d��L$ H���L��1���H����L$ H�8	L��1���)��i��L$ H�!	L��1���
�����L$H�:	L��1��������L$ H�[�L��1����������L$ H��L��1�����f����L$ H��L��1��������L$ H���L��1���o������L$ H�_L��1���P����L$ H�HL��1���1����L$H�aL��1��������L$ H���L��1������0��L$ H��L��1���������L$ H��L��1�����
���L$H��L��1���������L$ H��L��1���w��9���L$ H�gL��1���X���L$ H�PL��1���9���L$H�iL��1�����j�L$ H���L��1�������L$ H��L��1����������L$ H��L��1�����B���L$H��L��1��������L$ H��L��1�����O���L$ H�oL��1���`��'��L$ H�XL��1���A����L$H�qL��1���"��y��L$ H���L��1�������L$ H��L��1��������L$ H��L��1������n�L$H��L��1�����C�L$ H��L��1�����{�L$ H�wL��1���h���j�L$ H�`L��1���I�����L$H�yL��1���*����L$ H���L��1��������L$ H��L��1�����钰���L$ H��L��1����������L$H��L��1��������L$ H��L��1�����;����L$ H��L��1���p���ϱ���L$ H���L��1���Q�����L$ H�AL��1���2������L$ H�"L��1���������L$ H�L��1������|����L$ H�d�L��1�����鞶���L$ H��L��1���������L$ H��L��1�����[���L$H��L��1���x���0���L$ H���L��1���Y���h���L$ H�IL��1���:��閽���L$ H�2L��1����������L$H�KL��1��������L$ H�l�L��1������ ����L$ H��L��1������L$ H��L��1�����2�L$H��L��1������L$ H���L��1���a���?�A�zLH�PH��L�T$0�|$(I�z@H�T$�*���L�T$0���1���H�D$L���H�=8�L�T$H�@�@�D$0�?�A�|$L�T$�0wH�MH��L��1��L�T$8���D$ L�EL������+T$(1��щT$H�����H���1��L����L$ �1�H���L���p��L���H�=A��?�L���H�=���>�L$1��H�lL���$��A�|$L�T$8��dA�zHA��H�}�L�T$@��L���ABL��Lc�1�M)�L�L$8L��L�D$(���L�D$(L�T$@M��~qL�L$8�D$ �\$@L�d$HI��L��I�D�I��K�<L�L��H�|$(H�D$8H�D$8H�پL��H��L�1�H���d��H9\$(u�I��\$@L��L�d$HI�D$0H��tH�|$H�J9<���tL���L�T$(H�=8���=�L��(�H�=���=�L��7�H�=��=�L�T$(L��1�H����A�JL���L$�1�H��L����L��
�H�=���O=�L���H�=���6=�H�\$H�M H��D�D$0�L��H�CD���1��G��H�CL�T$(L�逸�L�T$�hb�A�H�=����<�L��#�H�='��<�L�T$�L$H�'�L��1��L�T$���L��
�H�=S��}<�L���H�=>��d<�L��"�H�=���K<�L�T$�L$ L��H����A�BHL�T$���ABL)�1��X��L��:�H�=���;�L���H�=	���;�L���H�=����;�L�T$A�BH�T$ L��A+RLH�=�����)‰T$ ��;�飧��A�RLH�@I�z@H��L�T$P�T$HH��H�|$@H�D$(虤��L�T$P���d���H�D$(L���H�=��L�T$H�@�@�D$P�.;�A�|$L�T$��qH�MH���L��1��L�T$X�>��D$8�T$L��+T$HL�E����)�1��щT$H�x�����H�b�1��L�����L$ �1�H�a�L�����L���H�=���:�L���H�=A��g:�L$1��H��L����A�|$L�T$X�O`E�JHA�1�L��H���L�T$HA��A��EJLA��Mc�M)�L�L$8L��L�D$�6��L�D$L�T$HM��~qL�L$8�D$ �\$HL�d$XI��L��I�D�I��K�<L�L��H�|$H�D$8H�D$8H�پL��H�{�L�1�H�����H;\$u�I��\$HL��L�d$XI�D$0H��tH�|$(H�J9<��yL���L�T$H�=���;9�L��(�H�=���"9�L�D$0L��1�H�L$@H����B��L�T$L��1�H�1��A�JL�#��L$�1�H�Q�L���	��L��
�H�=��8�L���H�=��8�H�\$(H�M H�/�D�D$P�L��H�CD���1����H�CL�T$�����^L��A�H�=^��98�L��#�H�=��� 8�L�T$�L$H���L��1��L�T$�<��L��
�H�=����7�L���H�=����7�L��"�H�=N��7�L�T$�L$ L��H�^��A�BHL�T$���ABL)�1����L��:�H�=b��e7�L���H�=o��L7�L���H�=
��37�L�T$A�BH�T$ L��A+RLH�=�����)‰T$ ��6��	����}LH�@H�t$�|$0H��H�}@H�D$(�������-��H�D$(L���H�=�H�@�@�D$8�6�A�|$��lH�D$H����L��H�1����D$ H�T$���L�BH�	���+|$01����|$L������H���1��L���s��L$ �1�H���L���Y��L���H�=*��6�L���H�=����5�L$1��H�U�L���
��A�|$��kD�MHA�L��1�H�k��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H��L�1�H���b��H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9���^��H�=B���4�L��(�H�=����4�L��7�H�=��4�ML�L��H���1�����L$�1�H��L�����L��
�H�=���_4�L���H�=���F4�H�\$(H�|$H���D�D$8�H�CH�O L��D���1��R��H�CL�逸��Ij�A�H�=
���3�L��#�H�=<���3�L$H�A�L��1�����L��
�H�=r��3�L���H�=]��3�L��"�H�=��j3�EH�L$ L��H������EL)�1����L��:�H�='��*3�L���H�=4��3�L���H�=���2�EH�T$ L��+UL�H�=�����)‰T$ ���2��՞���}LH�@H�t$�|$0H��H�}@H�D$(�ԛ������@��H�D$(L���H�=��H�@�@�D$8�s2�A�|$�ZH�D$H����L��H�1����D$ H�T$���L�BH�����+|$01����|$L���W���H���1��L���?��L$ �1�H���L���%��L���H�=����1�L���H�=���1�L$1��H�!�L������A�|$�$YD�MHA�L��1�H�7��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H���L�1�H���.��H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9���X��H�=��0�L��(�H�=m��0�L��7�H�=���w0�ML�L��H���1����L$�1�H���L�����L��
�H�=���+0�L���H�=~��0�H�\$(H�|$H���D�D$8�H�CH�O L��D���1����H�CL�逸��_X�A�H�=���/�L��#�H�=��/�L$H�
�L��1�����L��
�H�=>��h/�L���H�=)��O/�L��"�H�=���6/�EH�L$ L��H�������EL)�1��O��L��:�H�=���.�L���H�=���.�L���H�=����.�EH�T$ L��+UL�H�=�����)‰T$ ��.�顚���}LH�@H�t$�|$0H��H�}@H�D$(蠗�������H�D$(L���H�=��H�@�@�D$8�?.�A�|$�^fH�D$H����L��H�1��U��D$ H�|$���L�GL���+T$01��щT$H����#���H�z�1��L�����L$ �1�H�y�L������L���H�=���-�L���H�=Y��-�L$1��H���L�����A�|$�eeD�MHA�L��1�H���A��A��DMLA��Mc�M)�L�L$@L��L�D$0�X��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H���L�1�H�����H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���XH�=���u,�L��(�H�=9��\,�L��7�H�=���C,�ML�L��H�q�1��j��L$�1�H���L���P��L��
�H�=X��+�L���H�=J���+�H�\$(H�|$H�u�D�D$8�H�CH�O L��D���1�����H�CL�逸���j�A�H�=���+�L��#�H�=���g+�L$H���L��1�����L��
�H�=
��4+�L���H�=���+�L��"�H�=���+�EH�L$ L��H�������EL)�1����L��:�H�=����*�L���H�=���*�L���H�=j��*�EH�T$ L��+UL�H�=P����)‰T$ ��b*��m����}LH�@H�t$�|$0H��H�}@H�D$(�l������,�H�D$(L���H�=�H�@�@�D$8�*�A�|$�-^H�D$H�c��L��H�1��!��D$ H�|$���L�GL���+T$01��щT$H�\������H�F�1��L������L$ �1�H�E�L�����L���H�=���d)�L���H�=%��K)�L$1��H���L���q��A�|$�4]D�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0�$��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�u�L�1�H������H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���]H�=���A(�L��(�H�=��((�L��7�H�=|��(�ML�L��H�=�1��6��L$�1�H�d�L�����L��
�H�=$���'�L���H�=��'�H�\$(H�|$H�A�D�D$8�H�CH�O L��D���1����H�CL�逸���g�A�H�=q��L'�L��#�H�=���3'�L$H���L��1���Y��L��
�H�=ּ�'�L���H�=����&�L��"�H�=k���&�EH�L$ L��H�}�����EL)�1�����L��:�H�=���&�L���H�=���u&�L���H�=6��\&�EH�T$ L��+UL�H�=����)‰T$ ��.&��9����}LH�@H�t$�|$0H��H�}@H�D$(�8�������<��H�D$(L���H�=K�H�@�@�D$8��%�A�|$�ANH�D$H�/��L��H�1�����D$ H�T$���L�BH�9���+|$01����|$L������H��1��L�����L$ �1�H��L�����L���H�=Z��0%�L���H�=��%�L$1��H���L���=��A�|$�HMD�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0����L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H�A�L�1�H�����H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9��M��H�=r��
$�L��(�H�=����#�L��7�H�=H���#�ML�L��H�	�1����L$�1�H�0�L������L��
�H�=��#�L���H�=��v#�H�\$(H�|$H�
�D�D$8�H�CH�O L��D���1����H�CL�逸���_�A�H�==��#�L��#�H�=l��"�L$H�q�L��1���%��L��
�H�=����"�L���H�=���"�L��"�H�=7��"�EH�L$ L��H�I�����EL)�1����L��:�H�=W��Z"�L���H�=d��A"�L���H�=��("�EH�T$ L��+UL�H�=����)‰T$ ��!������ULH�@H�}@H�t$�T$0H��H�D$(���������H�D$(L���H�=�H�@�@�D$8�!�A�|$�D^H�D$H����L��H�1����D$ H�|$���L�GL���+T$01��щT$H�������H���1��L���o��L$ �1�H���L���U��L���H�=&�� �L���H�=���� �L$1��H�Q�L���	��A�|$�K]D�MHA�L��1�H�g��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�
�L�1�H���^��H9\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<��lI��H�=>����L��(�H�=����L��7�H�=���ML�L��H�ջ1�����L$�1�H���L�����L��
�H�=���[�L���H�=���B�H�\$(H�T$L��D�D$8�H�CH�J H���D���1��N��H�CL�逸��GS�A�H�=	����L��#�H�=8����L$H�=�L��1������L��
�H�=n���L���H�=Y���L��"�H�=��f�EH�L$ L��H������EL)�1����L��:�H�=#��&�L���H�=0��
�L���H�=γ���EH�T$ L��+UL�H�=�����)‰T$ �����щ���}LH�@H�t$�|$0H��H�}@H�D$(�І��������H�D$(L���H�=�H�@�@�D$8�o�A�|$��ZH�D$H����L��H�1����D$ H�|$���L�GL���+T$01��щT$H����S���H���1��L���;��L$ �1�H���L���!��L���H�=����L���H�=����L$1��H��L������A�|$��YD�MHA�L��1�H�3��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H���L�1�H���*��H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9���F��H�=
���L��(�H�=i���L��7�H�=���s�ML�L��H���1����L$�1�H���L�����L��
�H�=���'�L���H�=z���H�\$(H�|$H���D�D$8�H�CH�O L��D���1����H�CL�逸��oN�A�H�=����L��#�H�=���L$H�	�L��1�����L��
�H�=:��d�L���H�=%��K�L��"�H�=���2�EH�L$ L��H�������EL)�1��K��L��:�H�=�����L���H�=�����L���H�=����EH�T$ L��+UL�H�=�����)‰T$ ���靅���}LH�@H�t$�|$0H��H�}@H�D$(蜂�������H�D$(L���H�=��H�@�@�D$8�;�A�|$�[OH�D$H����L��H�1��Q��D$ H�|$���L�GL���+T$01��щT$H�������H�v�1��L�����L$ �1�H�u�L������L���H�=����L���H�=U��{�L$1��H���L�����A�|$�bND�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0�T��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H���L�1�H�����H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���AH�=ֳ�q�L��(�H�=5��X�L��7�H�=���?�ML�L��H�m�1��f��L$�1�H���L���L��L��
�H�=T����L���H�=F����H�\$(H�|$H�q�D�D$8�H�CH�O L��D���1�����H�CL�逸��T�A�H�=���|�L��#�H�=���c�L$H�ղL��1�����L��
�H�=��0�L���H�=���L��"�H�=����EH�L$ L��H�������EL)�1����L��:�H�=����L���H�=Ȳ��L���H�=f���EH�T$ L��+UL�H�=L����)‰T$ ��^��i����}LH�@H�t$�|$0H��H�}@H�D$(�h~�������H�D$(L���H�={�H�@�@�D$8��A�|$�8TH�D$H�_��L��H�1����D$ H�|$���L�GL���+T$01��щT$H�X������H�B�1��L������L$ �1�H�A�L�����L���H�=���`�L���H�=!��G�L$1��H���L���m��A�|$�?SD�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0� ��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�q�L�1�H������H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9��|E��H�=���=�L��(�H�=��$�L��7�H�=x���ML�L��H�9�1��2��L$�1�H�`�L�����L��
�H�= ���L���H�=���H�\$(H�|$H�=�D�D$8�H�CH�O L��D���1����H�CL�逸��OG�A�H�=m��H�L��#�H�=���/�L$H���L��1���U��L��
�H�=ҧ��L���H�=�����L��"�H�=g����EH�L$ L��H�y�����EL)�1�����L��:�H�=����L���H�=���q�L���H�=2��X�EH�T$ L��+UL�H�=����)‰T$ ��*��5}���ULH�@H�}@H�t$�T$0H��H�D$(�4z�������H�D$(L���H�=G�H�@�@�D$8���A�|$�QDH�D$H�+��L��H�1�����D$ H�|$���L�GL���+T$01��щT$H�$�����H��1��L�����L$ �1�H�
�L�����L���H�=V��,�L���H�=���L$1��H���L���9��A�|$�XCD�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0����L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�=�L�1�H�����H9\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<���:��H�=n��	�L��(�H�=�����L��7�H�=D����ML�L��H��1����L$�1�H�,�L������L��
�H�=���L���H�=ު�r�H�\$(H�T$L��D�D$8�H�CH�J H���D���1��~��H�CL�逸���L�A�H�=9���L��#�H�=h��
�L$H�m�L��1���!��L��
�H�=����
�L���H�=���
�L��"�H�=3��
�EH�L$ L��H�E�����EL)�1����L��:�H�=S��V
�L���H�=`��=
�L���H�=���$
�EH�T$ L��+UL�H�=����)‰T$ ����y���}LH�@H�t$�|$0H��H�}@H�D$(�v�������H�D$(L���H�=�H�@�@�D$8��A�|$�,KH�D$H����L��H�1����D$ H�|$���L�GL���+T$01��щT$H�������H�ڸ1��L���k��L$ �1�H�ٶL���Q��L���H�="���L���H�=�����L$1��H�M�L�����A�|$�3JD�MHA�L��1�H�c��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�	�L�1�H���Z��H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���6H�=:���
�L��(�H�=���
�L��7�H�=��
�ML�L��H�Ѧ1�����L$�1�H���L�����L��
�H�=���W
�L���H�=���>
�H�\$(H�|$H���D�D$8�H�CH�O L��D���1��J��H�CL�逸��@B�A�H�=���	�L��#�H�=4���	�L$H�9�L��1������L��
�H�=j��	�L���H�=U��{	�L��"�H�=���b	�EH�L$ L��H������EL)�1��{��L��:�H�=��"	�L���H�=,��		�L���H�=ʞ���EH�T$ L��+UL�H�=�����)‰T$ ������t���}LH�@H�t$�|$0H��H�}@H�D$(��q��������H�D$(L���H�=ߤH�@�@�D$8�k�A�|$�TFH�D$H����L��H�1����D$ H�|$���L�GL���+T$01��щT$H����O���H���1��L���7��L$ �1�H���L�����L���H�=����L���H�=����L$1��H��L������A�|$�[ED�MHA�L��1�H�/��A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H���L�1�H���&��H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���BH�=���L��(�H�=e���L��7�H�=���o�ML�L��H���1����L$�1�H���L���|��L��
�H�=���#�L���H�=v��
�H�\$(H�|$H���D�D$8�H�CH�O L��D���1����H�CL�逸��h=�A�H�=����L��#�H�=���L$H��L��1����L��
�H�=6��`�L���H�=!��G�L��"�H�=˯�.�EH�L$ L��H�ݯ����EL)�1��G��L��:�H�=����L���H�=�����L���H�=����EH�T$ L��+UL�H�=|����)‰T$ ����p���}LH�@H�t$�|$0H��H�}@H�D$(�m�����`��H�D$(L���H�=��H�@�@�D$8�7�A�|$�+5H�D$H����L��H�1��M��D$ H�|$���L�GL���+T$01��щT$H�������H�r�1��L�����L$ �1�H�q�L�����L���H�=����L���H�=Q��w�L$1��H���L��蝿�A�|$�24D�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0�P��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H���L�1�H�����H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<��<H�=Ҟ�m�L��(�H�=1��T�L��7�H�=���;�ML�L��H�i�1��b��L$�1�H���L���H��L��
�H�=P����L���H�=B����H�\$(H�|$H�m�D�D$8�H�CH�O L��D���1����H�CL�逸��y/�A�H�=���x�L��#�H�=��_�L$H�ѝL��1��腽�L��
�H�=��,�L���H�=���L��"�H�=����EH�L$ L��H�������EL)�1����L��:�H�=����L���H�=ĝ��L���H�=b���EH�T$ L��+UL�H�=H����)‰T$ ��Z��el���ULH�@H�}@H�t$�T$0H��H�D$(�di������H�D$(L���H�=w�H�@�@�D$8��A�|$��4H�D$H�[��L��H�1����D$ H�|$���L�GL���+T$01��щT$H�T�����H�>�1��L���ϻ�L$ �1�H�=�L��赻�L���H�=���\��L���H�=��C��L$1��H���L���i��A�|$��3D�MHA�L��1�H�Ǻ�A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�m�L�1�H��辺�H;\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<���0��H�=���9��L��(�H�=��� ��L��7�H�=t����ML�L��H�5�1��.��L$�1�H�\�L�����L��
�H�=���L���H�=���H�\$(H�T$L��D�D$8�H�CH�J H�$�D���1�讹�H�CL�逸��4>�A�H�=i��D��L��#�H�=���+��L$H���L��1���Q��L��
�H�=Β��L���H�=�����L��"�H�=c����EH�L$ L��H�u�����EL)�1��߸�L��:�H�=����L���H�=���m��L���H�=.��T��EH�T$ L��+UL�H�=����)‰T$ ��&���1h���}LH�@H�t$�|$0H��H�}@H�D$(�0e���������H�D$(L���H�=C�H�@�@�D$8���A�|$�g-H�D$H�'��L��H�1����D$ H�|$���L�GL���+T$01��щT$H� �賷��H�
�1��L��蛷�L$ �1�H�	�L��職�L���H�=R��(��L���H�=����L$1��H�}�L���5��A�|$�n,D�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�9�L�1�H��芶�H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<���5H�=j����L��(�H�=ɷ���L��7�H�=@����ML�L��H��1���L$�1�H�(�L�����L��
�H�=���L���H�=ڕ�n��H�\$(H�|$H��D�D$8�H�CH�O L��D���1��z��H�CL�逸��:7�A�H�=5����L��#�H�=d���L$H�i�L��1�����L��
�H�=�����L���H�=����L��"�H�=/���EH�L$ L��H�A�����EL)�1�諴�L��:�H�=O��R��L���H�=\��9��L���H�=��� ��EH�T$ L��+UL�H�=����)‰T$ �����c���ULH�@H�}@H�t$�T$0H��H�D$(�`��������H�D$(L���H�=�H�@�@�D$8��A�|$��'H�D$H���L��H�1�豳�D$ H�|$���L�GL���+T$01��щT$H������H�֣1��L���g��L$ �1�H�աL���M��L���H�=����L���H�=�����L$1��H�I�L�����A�|$��&D�MHA�L��1�H�_��A��A��DMLA��Mc�M)�L�L$@L��L�D$0贲�L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H��L�1�H���V��H9\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<���0��H�=6����L��(�H�=����L��7�H�=���ML�L��H�͑1��Ʊ�L$�1�H��L��謱�L��
�H�=���S��L���H�=���:��H�\$(H�T$L��D�D$8�H�CH�J H���D���1��F��H�CL�逸��%$�A�H�=�����L��#�H�=0�����L$H�5�L��1�����L��
�H�=f����L���H�=Q��w��L��"�H�=���^��EH�L$ L��H�
�����EL)�1��w��L��:�H�=����L���H�=(����L���H�=Ɖ����EH�T$ L��+UL�H�=�����)‰T$ ������_���}LH�@H�t$�|$0H��H�}@H�D$(��\��������H�D$(L���H�=ۏH�@�@�D$8�g��A�|$�#H�D$H����L��H�1��}��D$ H�|$���L�GL���+T$01��щT$H����K���H���1��L���3��L$ �1�H���L�����L���H�=����L���H�=�����L$1��H��L���ͮ�A�|$�"D�MHA�L��1�H�+��A��A��DMLA��Mc�M)�L�L$@L��L�D$0耮�L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�ѮL�1�H���"��H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<��Y*H�=����L��(�H�=a����L��7�H�=ز�k��ML�L��H���1�蒭�L$�1�H���L���x��L��
�H�=�����L���H�=r����H�\$(H�|$H���D�D$8�H�CH�O L��D���1����H�CL�逸��M�A�H�=ͯ���L��#�H�=�����L$H��L��1��赬�L��
�H�=2��\��L���H�=��C��L��"�H�=ǚ�*��EH�L$ L��H�ٚ����EL)�1��C��L��:�H�=�����L���H�=�����L���H�=�����EH�T$ L��+UL�H�=x����)‰T$ �����[���}LH�@H�t$�|$0H��H�}@H�D$(�X��������H�D$(L���H�=��H�@�@�D$8�3��A�|$�s"H�D$H����L��H�1��I��D$ H�|$���L�GL���+T$01��щT$H�������H�n�1��L����L$ �1�H�m�L�����L���H�=�����L���H�=M��s��L$1��H��L��虪�A�|$�z!D�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0�L��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H���L�1�H�����H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9��.��H�=Ή�i��L��(�H�=-��P��L��7�H�=���7��ML�L��H�e�1��^��L$�1�H���L���D��L��
�H�=L�����L���H�=>�����H�\$(H�|$H�i�D�D$8�H�CH�O L��D���1��ި�H�CL�逸����A�H�=���t��L��#�H�=ȫ�[��L$H�͈L��1��聨�L��
�H�=���(��L���H�=����L��"�H�=�����EH�L$ L��H�������EL)�1����L��:�H�=�����L���H�=�����L���H�=^����EH�T$ L��+UL�H�=D����)‰T$ ��V���aW���}LH�@H�t$�|$0H��H�}@H�D$(�`T�������H�D$(L���H�=s�H�@�@�D$8���A�|$�H�D$H�W��L��H�1����D$ H�T$���L�BH�a���+|$01����|$L������H�:�1��L���˦�L$ �1�H�9�L��豦�L���H�=���X��L���H�=��?��L$1��H���L���e��A�|$�D�MHA�L��1�H�å�A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�L�L��H�T$0H�D$@H�D$@H�پL��H�i�L�1�H��躥�H9\$0u�D��L�d$HI�D$0L��H��tH�|$(H�WJ9��g$��H�=���5��L��(�H�=�����L��7�H�=p����ML�L��H�1�1��*��L$�1�H�X�L�����L��
�H�=����L���H�=
����H�\$(H�|$H�5�D�D$8�H�CH�O L��D���1�誤�H�CL�逸���A�H�=e��@��L��#�H�=���'��L$H���L��1���M��L��
�H�=�}����L���H�=�}����L��"�H�=_�����EH�L$ L��H�q�����EL)�1��ۣ�L��:�H�=����L���H�=���i��L���H�=*}�P��EH�T$ L��+UL�H�=}���)‰T$ ��"���-S���}LH�@H�t$�|$0H��H�}@H�D$(�,P��������H�D$(L���H�=?�H�@�@�D$8����A�|$�/H�D$H�#��L��H�1����D$ H�|$���L�GL���+T$01��щT$H��询��H��1��L��藢�L$ �1�H��L���}��L���H�=N��$��L���H�=�{���L$1��H�y�L���1��A�|$�6D�MHA�L��1�H����A��A��DMLA��Mc�M)�L�L$@L��L�D$0���L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�5�L�1�H��膡�H9\$0u�D��L�d$HI�D$0L���H��tH�|$(H�J9<��5H�=f����L��(�H�=Ţ����L��7�H�=<�����ML�L��H���1���L$�1�H�$�L���ܠ�L��
�H�=����L���H�=ր�j��H�\$(H�|$H��D�D$8�H�CH�O L��D���1��v��H�CL�逸��A�A�H�=1����L��#�H�=`�����L$H�e�L��1�����L��
�H�=�y���L���H�=�y���L��"�H�=+����EH�L$ L��H�=�����EL)�1�觟�L��:�H�=K��N��L���H�=X��5��L���H�=�x���EH�T$ L��+UL�H�=�x���)‰T$ ������N���ULH�@H�}@H�t$�T$0H��H�D$(�K�����p�H�D$(L���H�=H�@�@�D$8���A�|$�WH�D$H���L��H�1�譞�D$ H�|$���L�GL���+T$01��щT$H���{���H�Ҏ1��L���c��L$ �1�H�ьL���I��L���H�=~����L���H�=�w����L$1��H�E�L����A�|$�^D�MHA�L��1�H�[��A��A��DMLA��Mc�M)�L�L$@L��L�D$0谝�L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H��L�1�H���R��H9\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<�����H�=2}����L��(�H�=�����L��7�H�=����ML�L��H��|1��œ�L$�1�H��L��訜�L��
�H�=�|�O��L���H�=�|�6��H�\$(H�T$L��D�D$8�H�CH�J H���D���1��B��H�CL�逸��i�A�H�=������L��#�H�=,����L$H�1|L��1�����L��
�H�=bu���L���H�=Mu�s��L��"�H�=���Z��EH�L$ L��H�	�����EL)�1��s��L��:�H�=����L���H�=$|���L���H�=�t����EH�T$ L��+UL�H�=�t���)‰T$ ������J���ULH�@H�}@H�t$�T$0H��H�D$(��G�������H�D$(L���H�=�zH�@�@�D$8�c��A�|$�cH�D$H����L��H�1��y��D$ H�|$���L�GL���+T$01��щT$H����G���H���1��L���/��L$ �1�H���L�����L���H�=�y���L���H�=}s���L$1��H��L���ə�A�|$�j
D�MHA�L��1�H�'��A��A��DMLA��Mc�M)�L�L$@L��L�D$0�|��L�D$0M��~cL�L$@�D$ L�d$HA��I�D�I��K�<L�L��H�|$0H�D$@H�D$@H�پL��H�͙L�1�H�����H9\$0u�D��L�d$HI�D$0L��H��tH�T$(H�zJ9<���	��H�=�x���L��(�H�=]����L��7�H�=ԝ�g��ML�L��H��x1�莘�L$�1�H���L���t��L��
�H�=|x���L���H�=nx���H�\$(H�T$L��D�D$8�H�CH�J H���D���1����H�CL�逸����A�H�=ɚ���L��#�H�=�����L$H��wL��1��豗�L��
�H�=.q�X��L���H�=q�?��L��"�H�=Å�&��EH�L$ L��H�Յ����EL)�1��?��L��:�H�=�����L���H�=�w����L���H�=�p���EH�T$ L��+UL�H�=tp���)‰T$ �����F���1�H�=��k��L��E�H�=��R��L��(�H�=N��9��L���H�=�o� ��L�T$�a����L$ H�S�L��1��L�T$(�7��L�T$(�ߛ���L$ H�*�L��1��L�T$���L�T$�N���L��1�L�T$H�=;����L��E�H�=Z����L��(�H�=���t��L���H�=-o�[��L�T$�6�����H�=�u�;��L��)�H�=/��"��D�t$L��1�H�I��D���D��D��L��H�R�A��1��(��L��#�H�=���-��1�H�=N����L��E�H�=m����L��(�H�=�����L���H�=@n�n�����L$ H���L��1��菔��k����L$ H��zL��1���p���ĥ����H�=zt���L��)�H�=	����D�t$L��1�H�#��D�����D��L��H�,�A��1����L��#�H�=^��Ǩ���L$ H��L��1���ϓ��G����L$ H�?zL��1��谓�頱���1�H�=��U��L��E�H�=	��<��L��(�H�=8��#��L���H�=�l�
���j�����H�=Ts����L��)�H�=�����D�t$L��1�H����D����D��L��H��A��1��ܒ�L��#�H�=8��=�����H�=�r�m��L��)�H�=a��T��D�t$L��1�H�{��D���v��D��L��H���A��1��Z��L��#�H�=�������H�=Pr����L��)�H�=ߒ����D�t$L��1�H����D�����D��L��H��A��1��ؑ�L��#�H�=4��i���H�=�q�s��L��)�H�=g��Z��D�t$L��1�H����D���|��D��L��H���A��1��`��L��#�H�=���]�����H�=Vq����L��)�H�=�����D�t$L��1�H����D����D��L��H��A��1��ސ�L��#�H�=:�駺����H�=�p�o��L��)�H�=c��V��D�t$L��1�H�}��D���x��D��L��H���A��1��\��L��#�H�=�����H�=\p���L��)�H�=�����D�t$L��1�H���D�����D��L��H��A��1����L��#�H�=@��}��H�=�o���L��)�H�=s��f��D�t$L��1�H����D��舏�D��L��H���A��1��l��L��#�H�=Ȑ�e����L$ H�P�L��1���9���%����L$ H��uL��1������~��H�=$o���L��)�H�=�����D�t$L��1�H�͏�D���Ȏ�D��L��H�֏A��1�謎�L��#�H�=�����L$ H���L��1���y���1�L$ H��tL��1���Z�����1�H�=�����L��E�H�=������L��(�H�=�����L���H�=�g����P���L$ H��L��1���Ս��Y��L$ H�EtL��1��趍����1�H�=��[��L��E�H�=��B��L��(�H�=>��)��L���H�=�f����|��L$ H�H�L��1���1�����L$ H��sL��1���������1�H�=L����L��E�H�=k����L��(�H�=�����L���H�=>f�l������L$ H���L��1��荌��u���L$ H��rL��1���n�������1�H�=�����L��E�H�=Ǐ���L��(�H�=������L���H�=�e�����8�L$ H��L��1���������L$ H�YrL��1���ʋ�����1�H�=��o��L��E�H�=#��V��L��(�H�=R��=��L���H�=�d�$���`��L$ H�\�L��1���E���]���L$ H��qL��1���&������1�H�=`�����L��E�H�=����L��(�H�=�����L���H�=Rd������L$ H���L��1��衊��!���L$ H�qL��1��肊��z���1�H�=���'��L��E�H�=ۍ���L��(�H�=
����L���H�=�c��������H�=&j���L��)�H�=�����D�t$L��1�H�ϊ�D���ʉ�D��L��H�؊A��1�讉�L��#�H�=
��߻����H�=�i�?��L��)�H�=3��&��D�t$L��1�H�M��D���H��D��L��H�V�A��1��,��L��#�H�=���a���L$ H��L��1��������L$ H�ioL��1���ڈ��n���L$ H�ҎL��1��軈��7����L$ H�+oL��1��蜈�鐻���1�H�=֋�A��L��E�H�=���(��L��(�H�=$����L���H�=�a����Z����L$ H�.�L��1������[����L$ H��nL��1����鴡���1�H�=2����L��E�H�=Q����L��(�H�=���k��L���H�=$a�R��邬���L$ H���L��1���s������L$ H��mL��1���T������1�H�=�����L��E�H�=������L��(�H�=܊����L���H�=�`����z���H�=g���L��)�H�=�����D�t$L��1�H����D��覆�D��L��H���A��1�芆�L��#�H�=�鷣���L$ H�n�L��1���W������L$ H��lL��1���8���X����L$ H�0�L��1������-����L$ H��lL��1����醰���1�H�=4����L��E�H�=S����L��(�H�=���m��L���H�=&_�T��逕���L$ H�lL��1���u��L�T$����L���L�T$H�=re�
��L��)�H�=�����D�t$L��1�H���D�����A��D��H�$�L��1���L��#�H�=V����L���H�=b^���L�T$鶌���L$ H�3kL��1��褄�L�T$鬈���1�H�=ه�D��L��E�H�=���+��L��(�H�='����L���H�=�]����a���L$ H�1�L��1������*����L$ H��jL��1����郙���1�H�=5����L��E�H�=T����L��(�H�=���n��L���H�=']�U��鉽��H�=�c�D��L��)�H�=8��+��D�t$L��1�H�R��D���M��D��L��H�[�A��1��1��L��#�H�=�����H�=1c����L��)�H�=�����D�t$L��1�H�ڃ�D���Ղ�D��L��H��A��1�蹂�L��#�H�=��&�H�=�b�T��L��)�H�=H��;��D�t$L��1�H�b��D���]��D��L��H�k�A��1��A��L��#�H�=���B����H�=7b����L��)�H�=Ƃ���D�t$L��1�H���D���ہ�D��L��H��A��1�迁�L��#�H�=��`���H�=�a�P��L��)�H�=D��7��D�t$L��1�H�^��D���Y��D��L��H�g�A��1��=��L��#�H�=��������H�=3a����L��)�H�=���D�t$L��1�H�܁�D���׀�D��L��H��A��1�軀�L��#�H�=�����H�=�`�V��L��)�H�=J��=��D�t$L��1�H�d��D���_��D��L��H�m�A��1��C��L��#�H�=�����H�=C`����L��)�H�=Ҁ����D�t$L��1�H���D�����D��L��H���A��1����L��#�H�='�阾���L$ H���L��1�����D����L$ H�fL��1���y�靡���1�H�=�����L��E�H�=҂���L��(�H�=�����L���H�=�X�����ϟ���L$ H��L��1����~��Ԧ���L$ H�deL��1����~��-����1�H�=��z��L��E�H�=.��a��L��(�H�=]��H��L���H�=X�/���ǫ���L$ H�g�L��1���P~��4����L$ H��dL��1���1~�鍹���1�H�=k����L��E�H�=����L��(�H�=����L���H�=]W������L$ H�ÃL��1���}��\����L$ H�dL��1���}�鵴���1�H�=ǀ�2��L��E�H�=����L��(�H�=����L���H�=�V�������L$ H��L��1���}��P����L$ H�xcL��1����|�驫���1�H�=#���L��E�H�=B��u��L��(�H�=q��\��L���H�=V�C���ה��L���L�T$H�=�\� ��L��)�H�=}���D�t$L��1�H�.}�D���)|�A��D��H�7}L��1��
|�L��#�H�=i}贿�L���H�=uU蛿�L�T$�c����1�H�=�{��L��E�H�=/�b��L��(�H�=^�I��L���H�=U�0������f��1�H�=�~���L��E�H�=�~��L��(�H�=�~�޾�L���H�=�T�ž����AWAVAUI��ATI��USH��H��H�n�������B����H��_��z�I�}0tL��H���H��1���z�H�M1�H��H�߾�~z�E��1�1�M��H��H���2(��I�}0H���l��H�=�_��H�ٺ3�H�=’���H�ٺO�H�=��̽�H�ٺ+�H�=P�賽�H�ٺ�H�=�Z蚽�H�ٺ�H�=<_聽�H�ٺ3�H�=͒�h��H�ٺO�H�=��O��H�ٺ+�H�=ӏ�6��H�ٺ�H�=DZ���H�ٺ	�H�=U^���H�ٺ'�H�=����A�}t9�����t/E1�L�5P�E��D��L��H��1�A����x�D;��r�H�ٺ�H�=\^蒼�A�EH��[]A\A]A^A_�fDH��� �H�=���_�����f.�H�޿
�C��H�ٺ?�H�=��*��M��xVE1�L�=;]f�H�E0IcԾH��A��L�4�L��1�L���,x�L��H��H�
]1��x�D9e}�H�ٺ�H�=�Q贻��{�����	�H�=�\蒻�H�ٺ'�H�=���y��H�ٺM�H�=���`��H�ٺ+�H�=��G��H�ٺ*�H�=���.��H�ٺ*�H�=����H�ٺ�H�=W\��H�ٺ�H�=Z\���H�ٺ$�H�=���ʺ�H�ٺ3�H�=�豺�A�M8�1�H��VH����v�H�ٺ"�H�=��~��H�ٺ�H�=��e��E�MLE�EHH��I�M@H���1��v�H�ٺ�H�=�[�*��H�ٺ�H�=V����H�پH�=]������t3E1�L�5d�@E��D��L��H��1�A���v�D;��r�H�ٺ!�H�=W�袹�����ff.�f�UH��H��AWAVAUATE1�SH��L�xH��@���H��H���H��`���A�H��8���dH�4%(H�u�1���u'�f.�H�i��A�E;g�pI�GE��J�<��(!��Hc؃�3u�I�WA���A�D$I���L��H��H��`���H��H�H�M��I9���H���������I)�I��L��I��L��h���I�L���!�����a���L��h���A�KH���J���I�F H�@��9���H�PI�{@L����X���H��P����|!��L��h�����X���������H��P���H�P�������r����L��X���I��L��0���A��I�vD��H�<�� ����;���p����w\H�
��Hc4�H�>��H���.�袋.I)�I��L��I�����H�u�dH34%(��H�e�[A\A]A^A_]Ð��~���C����p����7���H�H�
���A�E;n�M���H��P���L��h���L��X���L��0���H�PH��8���H�J��H� A�H����H��P���H��H�H�QH��H�BH��H��H��H���H)�H��H9�tH��H��$�H9�u�%�t	H)�H�L����H�|$E1�H���tZH�@I��H��H��H��H��H���I)�L��H9�tH��H��$�H9�u�%�t	H)�H�L�L�l$I�������R��H��H��H��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%�t	H)�H�L�H�L$H���I��M	�H��H9�tH��H��$�H9�u�L��(���L��0���H��H�L$f�����L�D$)�p���I���)E�H��x���H�M�H��X���L�E�L��h���)E�L�m���k�L��h���1�L��(���L��0���H��X���fA�H��P���A�@I�v M��H�@A�{L�P����}�H�u��U��E�tH��P���L��H���������L��@���D��1�H�ߊL���q�D��L��H�e�1���p�L��(�H�=�蕴�L��(�H�=���|��H��P���H��p���L�����D��L��A��H���1��p�E������1����H�zXL��h����z��L��P���H��X���L���4��L��h���H��� �H��P���L��h������L��h���L�hH��P���H�@H�@PH� �H��H��h���H��H���L��(���H�@H�xX���H��H���H��0���订�L��(���H��� ��H��H���菢�L��(���L�@H��H���H�@H�@PH�HH� tH�H��X���H��D��0���H���L��(���PH�x
AAU��h���H�81��Fo�H�� L��(������L�����L��h���L�h���M��1�����H��H���L��(������L��(���L�@�M���H�@H��h�������ܡ�ff.����UH��AWAVI��AUATI��SH��H��dH�%(H�E�1�H�aA�x�H�{H��GH��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%��H�D$E1�H���H��`������������������H��H��H��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%�t	H)�H�L�L�|$L��I���L	�H��h����}H�@H��H��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%�t	H)�H�L�L�l$���I������'���@L��h���E1����L�CH��H��A�PH��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%���H��`���f�H��H�M�L�L$�����)�p���I���)E�)E�H��X���L��P���)E�H��x���L�M�L��`���L�m�L�}��f�L��P���L��`���1�A�PL��H���f�H��h���H��X���tL��L��H���������H�M��yL��p���u�ytoL��H���L��1���k�H��L��L�����L��L���H��Q1���k��H�]�dH3%(��H�e�[A\A]A^A_]�f�I�M0I�U H��L��������v���D1��@H����H�=�P���L���H�=�P�������H)�H�L��d���f�H)�H�L�������f.�USH��H��H�H�H9�}+H��H�CH�rH)�H�3H��H��[]H��H�,?��8H��躻��H�S�H�kH�hH��H�CH�H�3H��[]�H��u�H�5
�z��f.�ATUH��H��SH���nx�I��H��t&H��H�5�L��B��[L��H��]A\鳪�H��H��[1�]H�5�A\�X���AWAVAUATUH��SH��H��8dH�%(H�D$(1�H����I��A���X��M�.H���H�51�E�N,E�F A�ŀL��E�~(HD�A�F$H��D�L$��D�D$H�t$�$�~��H��L��H��H�t$ H��H��1�VD�L$$H�5��AQAWD�L$ D�D$(薚�M�>H�� I��A��A��g��RH�
B�D��Hc�H�>��f�蛩�H�5��H������H�D$(dH3%(���H��8[]A\A]A^A_�H��H��E���Yw�I��	H�
֬H�5�H��1����H�5Q�H���=r�I�ND��H��H���{���H��� ��TH����H�p�H��謡�H��H�����A��H�
~�H��E�H�5��1�A���A��#D���w��H�5��H����q�I�FD��H��H��H�����H��� �STH����H�p�H���4��I�FH��H��H�x�����Z��D��H��1�H�
�H�5$���H�5d�H���Pq�I�FD��H��H��H�H���H��� �IgH��H�ƃ�H��H��踠�H��H�����A��H�
��H���H�5��1�����%艘�H�5,�H����p�I�FD��H��H��H�H����H��� �~SH����H�p�H���E������H��H��E����x�l��H�
�H�59�H��1����H�5��H���`p�I�ND��H��H�����H��� �/SH����H�p�H���ϟ����H��H��E����w��H�
��H�5ÕH��1�虗�H�5��H����o�I�ND��H��H���(���H��� ��RH����H�p�H���Y��H��H��莦�E����RH�
���H��1�H�5ߚ�(��I�vH���L����H�5z1H���Ȋ�H��H���=��H�
��H�5
�H��1����H�5��H���1o�I�ND��H��H���o���H��� ��QH����H�p�H��蠞��[���E���nuH��H���ǥ�H��1�H�
٩H�5!��j��I�~�a��H��H��薥�H�5�0H�����H��H���w��H�
ӺH�5D�H��1����H�5�H���kn�I�FD��H��H��H�H���H��� ��OH����H�p�H���֝�H��H�����A��H�
��H���H�5ԓ1�����"觕�H�5J�H���m�I�FD��H��H��H�H�2���H��� �6OH����H�p�H���c������H��H��E���v芤�H�
��H�5W�H��1��-��H�5ВH���~m�I�ND��H��H�����H��� �ZPH����H�p�H��������H��H��E���
v���H�
�H�5�H��1�跔�H�5�H���m�I�ND��H��H���F���H��� �PPH����H�p�H���w���2���E���)���H��H��螣�H��H�5��
��H��H�����H��H�5����H��H���`��H�5�H���̇�����E�������H��H���3��
H��H�5h�蟇�H��H�����H��H�5T�耇�H��H����H�5K�H���a���\���E���S���H��H���Ȣ�	H��H�5Σ�4��H��H��詢�H��H�5�����H��H��芢�H�5��H������E�����H��H���]��H��H�57��Ɇ�H��H���>��H��H�5!�誆�H��H�����H�5�H��苆����E���}���H��H�����	H��H�5���^��H��H���ӡ�H��H�5���?��H��H��贡�H�5~�H��� ������E����eH��H��臡�H�
�H�5T�H��1��*��H�5��H���{j�I�ND��H��H�����H��� ��KH����H�p�H�����H��H�����A��H�
��H���H�5�1����軑�H�5^�H���j�I�ND��H��H���J���H��� �^KH����H�p�H���{���6���E������H��H��袠� H�5~�H�����H��H��胠�H�5��H�����H��H���d��)H�5h�H���Є�H��H���E�����E�������H��H���'��H��H�5��蓄�H��H����� H��H�5���t��H��H�����H�5g�H���U���E���8���H��H��迟�H��H�5��+��H��H��蠟�H��H�5����H��H��聟�H�5�H���������H��H��E���Gk�T��H�
��H�5!�H��1���H�5\�H���Hh�I�ND��H��H����H��� ��YH����H�p�H��跗�H��H�����E����TH�
��H��1�H�5=�膏�I�vH����H�5�)H���&��H��H��蛞�H�
ԜH�5h�H��1��>��H�5�H���g�I�ND��H��H�����H��� �TH����H�p�H������H��H��E���Y�%��H��1�H�
D�H�5��Ȏ�I�vH�����H�5)H���h��H��H���ݝ�H�
�H�5��H��1�耎�H�5#�H����f�I�ND��H��H����H��� �wXH����H�p�H���@����H��H��E����c�g��H�
A�H�54�H��1��
��H�5o�H���[f�I�ND��H��H����H��� ��RH����H�p�H���ʕ�H��H����A��H�
�H���H�5ȋ1�����蛍�H�5>�H����e�I�ND��H��H���*�H��� �<RH����H�p�H���[����H��H��E����g肜�H�
(�H�5O�H��1��%��H�5ȊH���ve�I�ND��H��H����H��� ��WH����H�p�H�������H��H��E����a���A�H�
��D��H��1�H�5Њ諌�H�5�H���d�I�ND��H��H���:�H��� �fQH����H�p�H���k��H��H��蠛�D��H��1�H�
o�H�5j��E��H�5�H���d�I�ND��H��H�����H��� ��PH����H�p�H�������H��H��E����a�,��	H�
��H�5��H��1��ϋ�H�54�H��� d�I�ND��H��H���^�H��� �SH����H�p�H��菓�H��H���Ě�A��H�
�H���H�5��1������`��H�5žH���c�I�ND��H��H�����H��� ��RH����H�p�H��� ��I�~�H��H���1u�J��A��H�
��H���H�5�1�����%���H�5��H���7c�I�ND��H��H���u�H��� �YH��H�ƃ�H��H��裒��^�H��H��E���Qe�ʙ�H�
ܖH�5��H��1��m��H�5ҽH���b�I�ND��H��H����H��� �2UH����H�p�H���-��H��H���b��A��H�
��H���H�5+�1�������H�5��H���Ob�I�ND��H��H����H��� �xNH����H�p�H��辑��y�E����H��H�����&H�5��H���Q}�H��H���Ƙ�H�5��H���2}�H��H��觘�H�5��H���}�H��H��舘�H��1�H�
��H�5��+��I�~�"�H��H���W��H�5u#H����|�H��H���8�� ��E���S�H��H�����'H��H�5���|�H��H����H��H�51��g|�H��H���ܗ�H�5��H���H|��0���E����_H��H��诗�H�
f�H�5�H��1��R��I�~�I~�H��H���~��H�5�"H����{����E����ZI�~���UH��H���F��H�
;�H�5��H��1����6H�5}�H���{�H�53"H���{�H��H����A��H�
�H���H�5��1�����蒇�H�55�H����_�I�ND��H��H���!�H��� ��HH����H�p�H���R���
�H��H��E����M�y��H��1�H�
�H�5ӊ���I�FH�5C�H��P1����H�5b!H���z�H��H���%��H�
	�H�5�H��1��Ȇ�H�5-�H���_�I�FD��H��H��H��T�H��� �MH����H�p�H��腎�H��H��躕�E����LH�
��;H��1�H�5��T��I�FH�5{�H��P1��<��H�5� H����y�H��H���]��6H�
y�H�5*�H��1����H�5e�H���Q^�I�FD��H��H��H�H��H��� ��KH����H�p�H��輍�H��H�����E���lKH�
	��.H��1�H�5B�苅�I�FH��H�p���H�5�H���'y�H��H��蜔�"H�5�H�
�H��1��?��I�FH�p H����SH���U�H�5�H����x�H��H���F��E���kJH�
6��$H��1�H�5�����I�FH��H�p(���H�5.H���|x�H��H�����'H�
m�H�5��H��1�蔄�H�5��H����\�I�FD��H��H��H�H@��H��� ��IH����H�p�H���P��H��H��腓�A��H�
*�H���H�5N�1�����%�!��H�5��H���r\�I�FD��H��H��H�H0��H��� ��MH����H�p�H���݋�H��H�����A��H�
߱H���H�5ہ1�����-讃�H�5Q�H���[�I�FD��H��H��H�H8�9�H��� �zMH����H�p�H���j���%�H��H��E���@[葒�A�H�
��D��H��1�H�5U��0��H�5��H���[�I�ND��H��H����H��� ��GH����H�p�H�����H��H���%��D��H��1�H�
N�H�5��ʂ�H�5m�H���[�I�ND��H��H���Y�H��� �QGH����H�p�H��芊��E�H��H��E����k豑�H�
2�H�5~�H��1��T��H�5�H���Z�I�ND��H��H�����H��� �!>H����H�p�H��������E���t�H��H���;��&H��H�5t��u�H��H�����H��H�5R��u�H��H����H�5a�H���iu��Q���E���!���H��H���А�H�56�H���<u�H��H��豐�H�5�H���u�H��H��蒐�H�5�H���t�H��H���s�����H��H��E����e�U��H�
g�H��H�5��1���I�vH�����H�5JH���t���H��H��E����>��H��1�H�
�H�5Y�袀�I�vH������H�5�H���Bt�H��H��跏�H�
�H�5�~H��1��Z��H�5�}H���X�I�ND��H��H�����H��� ��=H����H�p�H��������H��H��E���OI�A��H��1�H�
6�H�5�����I�vH�����H�56H���s�H��H����H�
��H�5�}H��1���H�5?}H����W�I�ND��H��H���+�H��� ��HH����H�p�H���\����E���eUI�~�xjH��H���x��H��1�H�
ވH�5҂��H�5��H����r�H�5eH���r�H��H���(��H�
��H�5�|H��1���~�H�50�H���W�I�ND��H��H���Z�H��� ��jH��H�ƃ�H��H��舆�H��H��轍�A��H�
\�H���H�5�|1�����Y~�H�5�{H���V�I�ND��H��H�����H��� ��EH����H�p�H��������H��H��E����L�@��A�H�
�}D��H��1�H�5|��}�H�5D�H���0V�I�ND��H��H���n�H��� �@H����H�p�H��蟅�H��H���Ԍ�D��H��1�H�
��H�5�{�y}�H�5{H����U�I�ND��H��H����H��� ��?H����H�p�H���9�����I�~��EE���$iH��H���U��H��1�H�
�H�5���|�I�FH���ZQH���Q�H�5?H���p�H��H�����H�
B�H�5�zH��1��|�H�5HzH���T�I�ND��H��H���4�H��� ��CH����H�p�H���e��� �E����H��H��茋�H��H�5��o�H��H���m��H��H�5���o�H��H���N��H�5�H���o���E���sUH��H��A����H��1�H�
�H�5u�{�I�VH��1�H�5'
�{�H�5H���Uo�H��H���ʊ�H�

�D��H��1�H�5�y�o{�H�5ԮH���S�I�ND��H��H�����H��� �I5H����H�p�H���/��M�nM���V4I�EH������,�B4L�5���;DH����H��H�����I�UH��� 4H�H������,�
4I��H��H����L��D��H��H�5�x1��z�H�5
�H���R�I�MH��D��H���7��H�3�� �x���H�CH�p��v���H��H��E���ET藉�A�H�
�D��H��1�H�5[x�6z�H�5��H���R�I�ND��H��H������H��� ��AH����H�p�H����H��H���+��D��H��1�H�
��H�5�w��y�H�55�H���!R�I�ND��H��H���_��H��� �6AH����H�p�H��萁�H��H���ň�A��H�
`�H���H�5�w1������ay�H�5wH���Q�I�ND��H��H������H��� ��@H����H�p�H���!������H��H��E���W�H��H�
��H�5wH��1���x�H�5�vH���<Q�I�ND��H��H���z��H��� ��;H����H�p�H��諀��f��H��H��E���Q@�҇�H��1�H�
��H�5,|�ux�I�vH������H�5�H���l�H��H��芇�H�
i�H��H�5�{1��-x�I�vH���Q���H�5H����k�����H��H��E����T�4��A�H�
��D��H��1�H�5�u��w�H�58�H���$P�I�ND��H��H���b��H��� ��7H����H�p�H����H��H���Ȇ�D��H��1�H�
d�H�5�u�mw�H�5uH���O�I�ND��H��H�����H��� �y8H����H�p�H���-�����E����JH��H���T��H�
3xH�5!uH��1��v�H�5�tH���HO�I�ND��H��H�����H��� ��0H����H�p�H���~��r��H��H��E����I�ޅ�H�
�vH�5�tH��1��v�H�5$tH����N�I�ND��H��H�����H��� �>H����H�p�H���A~����E����YH��H���h��H�
EvH�55tH��1��v�H�5p�H���\N�I�ND��H��H�����H��� �@0H����H�p�H����}�H��H�����A��H�
�uH���H�5�s1�����u�H�5?sH����M�I�ND��H��H���+��H��� ��/H����H�p�H���\}����H��H��E����^胄�H�
uH�5PsH��1��&u�H�5�rH���wM�I�ND��H��H�����H��� �1H����H�p�H����|����H��H��E���WI�
��H�
yH��H�5ix1��t�I�vH�������H�5H���Ph��K��H��H��E����C跃�H�
"~H��H�5x1��Zt�I�vH���~���H�5�H���g����H��H��E����[�a��H�
yH�5.rH��1��t�H�5i�H���UL�I�ND��H��H�����H��� ��/H����H�p�H����{�H��H����A��H�
��H���H�5�q1�����$�s�H�58qH����K�I�ND��H��H���$��H��� ��5H����H�p�H���U{����E����RA��E�A���A��H��H���m��D��H��1�H�
GvH�57q�s�H�5w�H���cK�I�NH��D��H�����H�3�� ��+H����H��H����z�I�VH����+H�H����A9��o+I���o���H��H��E����B�Ӂ�H�
{tH�5�pH��1��vr�H�5ۥH����J�I�ND��H��H�����H��� �U=H����H�p�H���6z�H��H���k��A��H�
�tH���H�54p1������r�H�5�oH���XJ�I�ND��H��H�����H��� ��<H����H�p�H����y����H��H��E���#P���H�
�sH�5�oH��1��q�H�5��H����I�I�ND��H��H��� ��H��� ��4H����H�p�H���Qy�H��H��膀�A��H�
�sH���H�5Oo1������"q�H�5��H���sI�I�ND��H��H�����H��� �=4H����H�p�H����x�H��H�����A��H�
YsH���H�5�n1������p�H�5VnH���I�I�ND��H��H���B��H��� ��3H����H�p�H���sx��.��H��H��E����U��H�
fH�5gnH��1��=p�H�5��H���H�I�ND��H��H������H��� ��,H����H�p�H���w�H��H���2�A��H�
H���H�5�m1�������o�H�5qmH���H�I�ND��H��H���]��H��� ��2H����H�p�H���w��I��H��H��E����<�~�H��1�H�
XuH�5s�Xo�I�vH���|���H�5�	H���b�H��H���m~�H�
(uH�5:mH��1��o�H�5�lH���aG�I�ND��H��H�����H��� �<H����H�p�H����v����H��H��E����9�}�H��1�H�
�tH�5Qr�n�I�vH������H�5�H���:b�H��H���}�H�
SsH�5|lH��1��Rn�H�5��H���F�I�ND��H��H������H��� �K9H����H�p�H���v�H��H���G}�A��H�
tH���H�5l1�������m�H�5�kH���4F�I�ND��H��H���r��H��� ��8H����H�p�H���u��^��H��H��E���'K��|�H�
/sH�5�kH��1��mm�H�5ҠH���E�I�ND��H��H�����H��� �{1H����H�p�H���-u�H��H���b|�E���a1H�
R��H��1�H�5�p�l�I�vH��� ���H�5NH���`�H��H���|�H�
�pH�5�jH��1��l�H�5WjH���E�I�ND��H��H���C��H��� ��0H����H�p�H���tt��/��H��H��E����=�{�D��H�
MkH�5jjH��1��@l�H�5��H���D�I�ND��H��H������H��� �#9H����H�p�H���t�H��H���5{�E��H��AD�H�
�jH�5�i1���k�H�56�H���"D�I�ND��H��H���`��H��� ��8H����H�p�H���s�H��H����z�E��H��DE�H�
�jH�5�i1�D���_k�H�5iH���C�I�ND��H��H������H��� �(8H����H�p�H���s�����H��H��E���=�Fz�H�
�iH�5iH��1���j�H�5N�H���:C�I�ND��H��H���x��H��� ��8H����H�p�H���r�H��H����y�A��H�
iiH���H�5�h1������zj�H�5hH����B�I�ND��H��H���	��H��� �46H����H�p�H���:r����H��H��E����9�ay�H�
�hH�5.hH��1��j�H�5i�H���UB�I�ND��H��H�����H��� ��5H����H�p�H����q�H��H���x�A��H�
mhH���H�5�g1������i�H�58gH����A�I�ND��H��H���$��H��� �\5H����H�p�H���Uq����H��H��E����L�|x�H�
�gH�5IgH��1��i�H�5��H���pA�I�ND��H��H�����H��� ��$H����H�p�H����p�H��H���x�A��H�
�gH���H�5�f1������h�H�5SfH���A�I�ND��H��H���?��H��� �c$H����H�p�H���pp��+��H��H��E���*9�w�H�
sH�5dfH��1��:h�H�5��H���@�I�ND��H��H������H��� ��4H����H�p�H��L�-d���o�I�~H��H��H��eLD��w�A��H�
�rH���H�5�e1������g�L��H���	@�I�ND��H��H���G��H��� �g4H����H�p�H���xo�I�~�-��H��H���v�A��H�
`rH���H�5ke1������>g�H�5�dH���?�I�ND��H��H������H��� �9RH��H�ƃ�H��H���n����H��H��E����8�"v�H�
JqH��H�5~j1���f�I�FH�t$%H���D$%$�D$&�D$'�?�H�5H���RZ��M��H��H��E���7?�u�H�
�pH��H�5j1��\f�H��H�56"�Z�I�VH��1�H�5���3f�H�5�H����Y�����H��H��E���m(�Fu�H��1�H�
�iH�5�i��e�I�vH���
���H�5;H���Y�I�~��SH��H����t�H�
�iH�5�cH��1��e�H�59cH����=�I�ND��H��H���%��H��� ��3H��H�ƃ�H��H���Sm����E�����H��H���zt�&H��H�5���X�H��H���[t�H��H�5l��X�H��H���<t�H�5lH���X����H��H��E����0�t�H��1�H�
�jH�5ih�d�I�vH�������H�5�H���RX�H��H����s�H�
kiH�5�bH��1��jd�H�5ϗH���<�I�ND��H��H�����H��� �X0H����H�p�H���*l�H��H���_s�A��H�
jH���H�5(b1������c�H�5�aH���L<�I�ND��H��H�����H��� ��/H����H�p�H���k��v��H��H��E����G��r�H�
�iH��H�5>g1��c�I�vH������H�5�H���%W�� ��E���$�H��H���r�H�5cH���V�H��H���mr�$H�5�zH����V�H��H���Nr�H�5�bH���V�H��H���/r����H��H��E����D�r�H�
�fH��H�5mf1��b�I�vH�������H�5�H���TV��O��H��H��E����D�q�H�
AfH��H�5f1��^b�I�vH������H�5��H���U����H��H��E����C�eq�H�
kH�52`H��1��b�H�5�_H���Y:�I�ND��H��H�����H��� ��H����H�p�H����i����E�����H��H����p�H�5�bH���[U�H��H����p�H�5zbH���<U�H��H���p�H�5ybH���U�H��H���p��9�H��H��E���D�tp�H�
;eH��H�5�d1��a�I�vH���;���H�5i�H���T����H��H��E���UI�p�H�
GeH��H�5zd1��`�I�FH��H�p�����H�5�H���]T��X��E�����H��H����o�H��H�5�k�0T�H��H���o�H��H�5�k�T�H��H���o�H�5�kH����S�����H��H��E����H�Yo�H�
�jH�5�cH��1��_�I�~��U�H��H���(o�H�5F�H���S����H��H��E����F�n�H�
�jH�5�]H��1��_�H�5�H����7�I�ND��H��H���-��H��� ��H����H�p�H���^g�H��H���n�A��H�
�jH���H�5\]1������/_�H�5�\H���7�I�ND��H��H�����H��� �WH����H�p�H����f����E���8H��H���n�H�
OdH�5�\H��1��^�H�5�H���
7�I�ND��H��H���H��H��� ��H����H�p�H���yf�H��H���m�A��H�
MbH���H�5w\1�����J^�H�5�[H���6�I�ND��H��H������H��� �eH����H�p�H���
f�����H��H��E���-D�1m�H�
�bH�5�[H��1���]�H�59�H���%6�I�ND��H��H���c��H��� �IH����H�p�H���e�H��H����l�E���u1��H��H�
�pH�5a�c]�I�FH�x��IH�pH���x����H�5��H����P�H��H���il�H��1�H�
NbH�5�`�]�I�FH��H�p�,����H�5Z�H���P�H��H���l�H�
�`H�5�ZH��1��\�H�5cZH���5�I�ND��H��H���O���H��� ��H����H�p�H���d��;��H��H��E���rD�k�H�
O^H�5tZH��1��J\�H�5��H���4�I�ND��H��H������H��� �XH����H�p�H���
d�H��H���?k�A��H�
�]H��E�H�5Z1�A���A��D����[�H�5:�H���&4�I�ND��H��H���d���H��� ��H����H�p�H���c�H��H����j�D��H��1�H�
�]H�5�Y�o[�H�5YH���3�I�ND��H��H�����H��� �cH����H�p�H���/c����E�����H��H���Vj�H��H�5�]��N�H��H���7j�!H��H�5u�N�H��H���j�H�5�]H���N��x�E������H��H����i�H�5�aH���WN�H��H����i�;H�5�{H���8N�H��H���i�H�5�aH���N�H��H��A��i�H��1�H�
�mH�5�]�+Z�I�VH��1�H�5���Z�H�5t�H����M�H��H���7i��h��H��H��E����?�i�H�
�_H�5�WH��1��Y�H�5dWH���2�I�ND��H��H���P���H��� �|H����H�p�H���a��<���H��H��E�����h�H��1�H�
K_H�5]�KY�I�vH���o����H�5��H����L�H��H���`h�H�
^H�5-WH��1��Y�H�5h�H���T1�I�ND��H��H��蒽��H��� �.H����H�p�H����`�H��H���g�A��H�
�^H���H�5�V1������X�H�57VH����0�I�ND��H��H���#���H��� ��H����H�p�H���T`�����H��H��E���F4�{g�H�
kVH�5HVH��1��X�H�5��H���o0�I�ND��H��H��譼��H��� �H����H�p�H����_�H��H���g�A��H�
VH��E�H�5�U1�A���A��D���W�H�5�H���/�I�ND��H��H���8���H��� ��H����H�p�H���i_�H��H���f�D��H��1�H�
�UH�5hU�CW�H�5�TH���/�I�ND��H��H���һ��H��� �*H����H�p�H���_�龼��E����&E��L�=�TH��~IE�L�=E�E1�H�$H��H��A���f�H�$D��H��H�5�T1��V�I�~H�ITH��LD�L����.�I�ND��H��H���.���H��� �"H����H�p�H���_^�I�VH������H�H��������I���e���H��H��E����5�ce�H�
�hH�5�YH��1��V�M�nM���hI�E���\�P�A��$H�T$
�=�I��K�t�H����D9<$~�H�5��H���fI�I�GL9|$u˺H�5��H���GI�H��H���d�A��H�
x[H���H�5�S1������XU�H�5��H���-�I�ND��H��H�����H��� �kH����H�p�H���]�H��H���Md�A��H�
�TH���H�5S1������T�H�5�RH���:-�I�ND��H��H���x���H��� ��H����H�p�H���\��d���H��H��E����;��c�H�
tYH�5�RH��1��sT�H�5؇H����,�I�ND��H��H������H��� �H����H�p�H���3\�H��H���hc�E����H�
WY�H��1�H�5�W�T�I�vH���&����H�5T�H���G�H��H���c�H�
�XH�5�QH��1��S�H�5�H���,�I�FD��H��H��H�H�E���H��� ��H����H�p�H���v[�H��H���b�A��H�
|XH���H�5tQ1�����GS�H�5�PH���+�I�FD��H��H��H�H�ҷ��H��� �xH����H�p�H���[�龸��E����H��H���*b� H�5�qH���F�H��H���b�%H�5�qH���wF�H��H����a�H�5�WH���XF�H��H����a���H��H��E�����a�H��1�H�
qVH�5	V�RR�I�vH���v����H�5��H����E�H��H���ga�H�
VH�54PH��1��
R�H�5�OH���[*�I�ND��H��H��虶��H��� �MH����H�p�H����Y�酷��H��H��E�����`�H��1�H�
VH�5KU�Q�I�FH��H�p贵���H�5��H���0E�H��H���`�H�
CUH�5rOH��1��HQ�H�5�NH���)�I�ND��H��H���׵��H��� �hH����H�p�H���Y��ö��E������H��H���/`�H��H�53Q�D�H��H���`�H��H�5)Q�|D�H��H����_�H�5*QH���]D��;�E���O���H��H����_�H��H�5�Q�0D�H��H���_�H��H�5�Q�D�H��H���_�H�5�QH����C����E�����H��H���Y_�H��H�5EQ��C�H��H���:_�H��H�5:Q�C�H��H���_�H�50QH���C�邵��H��H��E���1'��^�H�
oOH�5�MH��1��O�H�54MH����'�I�ND��H��H��� ���H��� ��H����H�p�H���QW�����H��H��E�����x^�H��1�H�
�RH�5�R�O�I�vH���?����H�5m�H���B�I�~��:<H��H���%^�H�
�RH�5�LH��1���N�H�5kLH���'�I�ND��H��H���W���H��� �#H��H�ƃ�H��H���V��@���H��H��E����*�]�H�
�QH�5yLH��1��ON�H�5��H���&�I�ND��H��H���޲��H��� �UH����H�p�H���V�H��H���D]�A��H�
�QH���H�5
L1������M�H�5E�H���1&�I�ND��H��H���o���H��� ��
H����H�p�H���U�I�~�H��H���T8��\�A��H�
 QH���H�5�K1�����fM�H�5	KH���%�I�ND��H��H�����H��� ��H��H�ƃ�H��H���#U��޲��H��H��E���2�J\�H�
:KH�5KH��1���L�H�5R�H���>%�I�ND��H��H���|���H��� �H����H�p�H���T�H��H����[�A��H�
�JH��E�H�5�J1�A���A��D���xL�H�5�H����$�I�ND��H��H������H��� ��H����H�p�H���8T�H��H���m[�D��H��1�H�
�JH�57J�L�H�5�IH���c$�I�ND��H��H��衰��H��� �H����H�p�H����S�鍱��H��H��E���
�Z�H��1�H�
zOH�5SO�K�I�vH������H�5��H���<?�H��H���Z�H�
OOH�5~IH��1��TK�H�5�HH���#�I�ND��H��H�����H��� �zH����H�p�H���S��ϰ��E���]#H��H���;Z�H��1�H�
z^H�5�N��J�A�V1�H��H�5���J�I�~H�5:^uH�5�]H���#�H�5
�H���X>�H��H����Y�H�
:JH�5�HH��1��pJ�H�5�}H���"�I�ND��H��H�����H��� �~H����H�p�H���0R�H��H���eY�A��H�
�IH���H�5.H1�����J�H�5�GH���R"�I�ND��H��H��萮��H��� �H����H�p�H���Q��|���H��H��E���G%��X�H�
�HH�5�GH��1��I�H�5�|H����!�I�ND��H��H������H��� ��
H����H�p�H���KQ�H��H���X�A��H�
�HH���H�5IG1�����I�H�5�|H���m!�I�ND��H��H��諭��H��� �
H����H�p�H����P�H��H���X�A��H�
<HH���H�5�F1������H�H�5PFH��� �I�ND��H��H���<���H��� ��	H����H�p�H���mP��(���E���Y���H��H���W�H�5�GH���<�H��H���uW�,H�5�_H����;�H��H���VW�$H�5�_H����;�H��H���7W�H��1�H�
v[H�5�K��G�A�V1�H��H�5����G�I�~H�56[uH�5�ZH��� �H�5�H���T;�H��H����V����D���'V�H�=pZH��1��67�fDH�CH�p��|��H�CH�p����H��H���uV�A��H�
fJH���H�5>E1������G�H�5�DH���b�I�ND��H��H��蠫��H��� �H����H�p�H����N�錬��M��f�H��H���U�A��H�
FNH���H�5�D1������F�H�54DH�����I�MD��H��H��� ���H��� ueH����H�p�H���UN�����H�CH�p��e���H�CH�p��Ȱ��H�CH�p�頴��H�CH�p��!���H�CH�p��D��H�CH�p��H�CH�p����H�CH�p��^�H�CH�p����H�CH�p����H�CH�p����H�CH�p���H�CH�p��:��H�CH�p�����H�5CXH���=9����H��H���T�A��H�
mCH���H�5vC1������IE�H�5�BH����I�ND��H��H���ة��H��� �70H��H�ƃ�H��H���M����H�CH�p��L���H�CH�p�髫��H�CH�p��&���H�CH�p�逬��H�CH�p���H�CH�p���H�CH�p��Ϭ��H�CH�p�餯��H�CH�p��+���H�
�Q�H��1�H�5&H�oD�I�vH��蓨���H�5��H���8�H��H���S��B���H�CH�p�鮯��H�CH�p��P�H�CH�p����H�CH�p����H�CH�p�����H�CH�p����H�CH�p����H�CH�p���H�CH�p��(�H�CH�p���H�CH�p��E�H�CH�p���H�CH�p���H�CH�p���H�
�H�H��1�H�5G�gC�I�vH��苧���H�5��H���7�H��H���|R��`�H�CH�p����H�CH�p����H�CH�p���1��H��H�
#VH�5�F��B�I�FH�x�b/H�pH�������H�51�H���6�H��H����Q�H��1�H�
�GH�5NF�B�I�FH��H�p跦���H�5��H���36�H��H���Q���H�CH�p���H�CH�p��"���Q�H�5ckH����5�H��H���`Q� H�5dkH����5�H��H���AQ�H�5@QH���5�H��H���"Q�H��1�H�
/QH�5|E��A�I�vH������H�5�H���e5�H��H����P�����H�CH�p����P�!H�5
^H���*5�H��H���P�(H�5^H���5�H��H���P�H�50EH����4�H��H���aP�H��1�H�
#EH�5�D�A�I�vH���(����H�5V�H���4�H��H���P���H�CH�p����H�CH�p��u�H�CH�p����H�CH�p������O�H�5NFH���B4�H��H���O�)H�5�`H���#4�H��H���O�H�5gFH���4�H��H���yO�H��1�H�
FH�5�C�@�I�vH���@����H�5n�H���3�H��H���1O����H�CH�p��~�H�CH�p��%�H�CH�p���H�CH�p����H�CH�p�����N�H�5�\H���M3�H��H����N�*H�5�\H���.3�H��H���N�H�5�CH���3�H��H���N�H��1�H�
�CH�5�B�'?�I�FH��H�p�G����H�5u�H����2�H��H���8N���H�CH�p��l���H�CH�p���H�CH�p��t���H�CH�p����H�CH�p��S���H�CH�p�����M�7H�5�YH���G2�H��H���M�(H�5ZH���(2�H��H���M�*H�5!ZH���	2�H��H���~M�H��1�H�
�AH�5�A�!>�I�vH���E����H�5s�H���1�H��H���6M���H�CH�p����H�CH�p��a�H�CH�p����H�CH�p��[��H�CH�p��j���H�CH�p������L�3H�5�YH���E1�H��H���L�0H�5�YH���&1�H��H���L�!H�5�YH���1�H��H���|L�H��1�H�
�@H�5�@�=�I�vH���C����H�5q�H���0�I�~���)H��H���)L��1��H�CH�p��<��H�CH�p����H�CH�p��=��H�CH�p����H�CH�p��E��H�CH�p��	���K�H�5XWH���80�H��H���K�(H�5YWH���0�H��H���K�H�5�?H���/�H��H���oK�H��1�H�
�?H�5�?�<�I�vH���6����H�5d�H���/�I�~���(H��H���K����H�CH�p��I��H�CH�p����H�
�N�H��1�H�5R?�;�I�vH��迟���H�5��H���;/�H��H���J����H�CH�p���H�CH�p�醱��H�CH�p�魸��H�CH�p��:���H�CH�p��­��H�CH�p�����H�CH�p�阮��H�CH�p��,���H�CH�p����H�
ZH�H��1�H�5�>��:�I�vH������H�5&�H���t.�H��H����I��I���H�CH�p��:���H�
�j�H��1�H�5,>�u:�I�FH��H�p(蕞���H�5��H���.�H��H���I�鐵��H�
�j�H��1�H�5�=�:�I�FH��H�p�?����H�5m�H���-�H��H���0I�鏴��H�CH�p�����H�
jj�H��1�H�5s=�9�I�FH�5�H��P1��9�H�5�H���P-�H��H����H��c���H�CH�p�����H�H�5�KH���-�H��H���H�UH�5�eH���,�H��H���kH�CH�5�eH����,�H��H���LH�;H��1�H�
�eH�5�<��8�I�FH�5�H��P1���8�H�55�H���,�H��H���G�6��H�CH�p��y���H�CH�p����H�CH�p��f���H�CH�p��
���H�CH�p��D���H�CH�p��Ⱦ��H�CH�p��U���H�CH�p�����G�$H�5�_H����+�H��H���bG�3H�5�_H����+�H��H���CG�H�5�EH���+�H��H���$G�H��1�H�
�EH�5~;��7�I�vH������H�5�H���g+�H��H����F��M���E���i���H��H���F�H�5�?H���*+�H��H���F�H�5�?H���+�H��H���F� H�5|XH����*�H��H���aF�,H��1�H�
 gH�5�:�7�I�FH���fH����H�5K�H���*�H��H���F�����H�CH�p��S�����E�H�5�SH���^*�H��H����E�(H�5�SH���?*�H��H���E�H�5�:H��� *�H��H���E�H��1�H�
�:H�5�9�86�I�vH���\����H�5��H����)�H��H���ME��O���H�CH�p�鄲��H�CH�p�����H�CH�p�����H�CH�p�釧���
E�H�5CH���v)�H��H����D�(H�5\H���W)�H��H����D�H�5(\H���8)�H��H���D�H��1�H�
�BH�59�P5�I�vH���t����H�5��H����(�H��H���eD�郦��H�CH�p��!���H�CH�p��̪��H�CH�p��%��H�CH�p����H�CH�p��/��H�CH�p�����D�H�5�:H���t(�H��H����C�*H�5�TH���U(�H��H����C�H�5Y:H���6(�H��H���C�H��1�H�
N:H�58�N4�I�vH���r����H�5��H����'�H��H���cC����H�CH�p�����H�CH�p����H�CH�p��&��H�CH�p��"��H�CH�p�����C�H�5J:H���'�H��H����B�+H�5XTH���`'�H��H����B�H�5(:H���A'�H��H���B�H��1�H�
Y9H�57�Y3�I�vH���}����H�5��H���&�H��H���nB����H�CH�p����H�CH�p����H�CH�p�����H�CH�p��W��H�CH�p�����H�CH�p�����B�H�5�8H���}&�H��H����A� H�5SH���^&�H��H����A�H�5�8H���?&�H��H���A�H��1�H�
W8H�56�W2�I�vH���{����H�5��H���%�H��H���lA����H�CH�p��d��H��H���JA�H�
?DH�50H��1���1�H�5ReH���>
�I�ND��H��H���|���H��� u(H��H�ƃ�H��H���9����H�CH�p���H�CH�p���H�CH�p��Z�H�CH�p�鸘��H�CH�p����H�CH�p�����H�5�CH���
%�� ����@�H��H�5!9��$�H��H��A��[@�9H�5�\H����$�H��H���<@�$H�5�\H���$�H��H���@��޲���@�H�5V:H���$�H��H����?�H�5�RH���`$�H��H����?�H�50:H���A$�H��H���?�����?� H�5�EH���$�H��H���?�!H�5�EH����#�H��H���i?�;H�5�EH����#�H��H���J?�����H��H���5?�H��H�5�-�#�H��H���?�&H��H�5�C�#�H��H���>�H�5-H���c#������>�H�572H���E#�H��H���>�5H�5&IH���&#�H��H���>�*H�5?IH���#�H��H���|>�餼���m>�$H�5RH����"�H��H���N>�$H�5RH���"�H��H���/>�H�5�9H���"�H��H���>��t���>�H�5�-H���m"�H��H����=�@H�5EH���N"�H��H����=�=H�5�CH���/"�H��H���=�����=�$H�5�PH���"�H��H���v=�H�5n8H����!�H��H���W=�H�5�8H����!�H��H���8=�����)=�&H�5�CH���!�H��H���
=�+H�5�BH���v!�H��H����<�9H�5�CH���W!�H��H����<����H��H���<�H�5�?H���#!�H��H���<�'H�5TYH���!�H��H���y<�H�5]YH���� �I�~���H��H���O<������@<�%H�5<EH��� �H��H���!<�+H�5EEH��� �H��H���<�)H�5VEH���n �H��H����;�����H��H����;� H��H�5�V�: �H��H���;� H��H�5`V� �H��H���;�*H�5�VH�����'���H��H���l;�H��H�5�,���H��H���M;�H��H�5�,��H��H���.;�H�5�,H�����x���H�5D4H����H�5�H���m�H��H����:�A��҃���Ԯ���H�5�3H���=���:�H�535H���"�H��H���:�H�525H����H��H���x:�H�5/5H�����H��H���Y:��G����J:�H��H�5=��H��H��A��%:�9H�5QVH����H��H���:�%H�5rVH���r�H��H����9��ܝ����9�"H�5�PH���I�H��H���9�&H�5�PH���*�H��H���9�H�5^7H����H��H���9������q9�H�5=H�����H��H���R9�>H�5fYH����H��H���39�����H��H���9�H�5b.H����H��H���8�7H�5CGH���k�H��H����8�H�5>.H���L�I�~�H��H���8�H��1�H�
3H�5-�Y)�I�vH���}����H�5��H����H��H���n8�H�
�-H��H�5�,1��)�H��H�5c���H�5[�H�����\���H��H���8�H��H�5�4��H��H���7�H��H�504�f�H��H����7�H�5~4H���G��D����7�H�5!*H���)�H��H���7�"H�5"AH���
�H��H���7�H�5�)H�����H��H���`7��m���Q7�'H��H�5"M��H��H��A��,7�(H�5(MH����H��H���
7�-H�59MH���y�H��H����6��^���H��H����6�H��H�5'�J�H��H���6�,H��H�5�>�+�H��H���6�$H�5�>H�����E���6�#H�5VIH�����H��H���c6�H�5[1H�����H��H���D6�H�5S1H����H��H���%6��g���H��H���6� H��H�5F�|�H��H����5�%H��H�5F�]�H��H����5�H�5�+H���>�����H��H���5�H��H�5�-��H��H���5�;H��H�5HG��H��H���p5�H�5c-H���������R5�H��H�5�4��H��H��A��-5�:H�5�MH����H��H���5�#H�5�MH���z�H��H����4��Y�����4�H�5G2H���Q�H��H����4�H�5<2H���2�H��H���4�H�552H����H��H���4������y4�*H�5�JH�����H��H���Z4�&H�5�JH�����H��H���;4�!H�5�JH����H��H���4��M����
4� H�5�KH���y�H��H����3�2H�5�KH���Z�H��H����3�#H�5�KH���;�H��H���3��W����3�H�5�#H���
�H��H���3�<H�5;H�����H��H���c3�9H�5_:H�����H��H���D3��W���53�H�5j"H����H��H���3�?H�5r8H����H��H���2�1H�5�8H���c�H��H����2��X����2�H�5�&H���5�H��H���2�.H�5�=H����H��H���2�H�5�&H����H��H���l2�����]2�H��H�5�0���H��H��A��82�$H�5<JH����H��H���2�H�5�0H����H��H���1��Ǫ����1�H�5j5H���\�H��H����1�HH�5QH���=�H��H���1��d����1�'H�5�AH����H��H���1�5H�5BH�����H��H���e1�H�5�'H�����H��H���F1��w����71�H�5)0H����H��H���1�H�5&0H����H��H���0�H�5%0H���e�H��H����0�鍨����0�H�5�#H���7�H��H���0�<H�5�:H����H��H���0�5H�5�:H����H��H���n0��{���H��H���Y0�&H��H�5jE���H��H���:0�H��H�5p,��H��H���0�H�5WEH�����o���H��H���/�H��H�5�#�c�H��H����/�!H��H�5�:�D�H��H���/�H�5}#H���%������/�H�5�2H����H��H���|/�IH�5xNH�����H��H���]/�����N/�H�5�1H����H��H���//�+H�5KH����H��H���/� H�5KH���|�H��H����.������.�H�5:1H���N�H��H����.�H�521H���/�H��H���.�H�5-1H����H��H���.������v.�H�5v0H�����H��H���W.�H�5JH�����H��H���8.�H�5L0H����H��H���.�銉���
.�H�5�/H���v�H��H����-� H�5wIH���W�H��H����-�H�5�/H���8�H��H���-�锉���-�H�5�&H���
�H��H���-�H�5�&H�����H��H���`-�H�5�&H�����H��H���A-��׻���2-�H�5V?H����H��H���-�H�5
'H����H��H����,�"H�58?H���`�H��H����,�鿺����,�H�5v&H���2�H��H���,�H�5u&H����H��H���,�H�5r&H�����H��H���i,�驺���Z,� H�5�>H�����H��H���;,�H�5Q&H����H��H���,�H�5N&H����H��H���+�鄻����+�H�59H���Z�H��H����+�+H�5�1H���;�H��H���+�=H�5�1H����H��H���+�����H��H���|+�H��H�5C���H��H���]+�0H��H�5�3���H��H���>+�&H�54H�������� +�#H�5\<H����H��H���+�H�5"H���m�H��H����*�H�5"H���N�H��H����*��ܷ���*�!H�5�DH��� �H��H���*�H�5�*H����H��H���v*�H�5�*H�����H��H���W*�����H*�H�5&H����H��H���)*�;H�5/H����H��H���
*�-H�56/H���v�H��H����)������)�H�5�)H���H�H��H���)�.H�5�BH���)�H��H���)�H�5�BH���
�H��H���)�����p)�H�5� H����
�H��H���Q)�H�5� H���
�H��H���2)�H�5� H���
�H��H���)����)�"H�5�7H���p
�H��H����(�;H�58H���Q
�H��H����(�.H�5"8H���2
�H��H���(�!H�538H���
�H��H���(��R����y(�%H�5m<H�����H��H���Z(�$H�5&<H�����H��H���;(�H�5$H����H��H���(������
(�#H�5�6H���y�H��H����'�JH�5�6H���Z�H��H����'�H�5WH���;�H��H���'������'�H�5�@H���
�H��H���'�/H�5�@H�����H��H���c'�#H�5�@H�����H��H���D'��ޣ���5'�H�5�H����H��H���'�FH�5�0H����H��H���&�5H�5�0H���c�H��H����&��,�����&�H�5}9H���5�H��H���&�H�5s!H����H��H���&�H�5r!H���
�H��H���l&��I����]&�-H�5�9H����
�H��H���>&�$H�5�9H���
�H��H���&� H�5�9H���
�H��H���&�颶����%�H�5�"H���]
�H��H����%� H�5~;H���>
�H��H���%�H�5:H���
�H��H���%��ޓ���%�H�5M"H����	�H��H���f%�H�5C"H����	�H��H���G%�H�5c9H���	�H��H���(%�頠���%�A��H��H�
�E�H�5t1�����%��H��$H�5�E�a	�H�5��H���M	��H{����$�D��H��1�H�
�DH�5�h�H��6H�5�/�	�H�5��H���	��|���v$�A��H��H�
��H�5�1������H��6H�5�/��H�5\�H�����z��H�CH�p�����H�CH�p��ȭ��H��H���$�H��1�H�
fH�5Z��I�vH����x���H�5��H���C�H��H���#��E�H��H���#�H��1�H�
	H�5��F�H�5�'H�����H�5��H�����H��H���S#��&���H�CH�p��l���H��H���1#�H��H�5���H��H���#�H��H�5��~�H��H����"�H�5�H���_��n���H�5R'H���F�I�F�)����H�55'H���)�I�F���H��H���"�H�
3H��H�5�1��8�H��9H�5Q.���H�5��H�������x��H��H���@"�H�
�H��H�5�1����H��9H�5�-��H�5-�H���{��vx��H��H����!��H��H����!��?����J�H��H���!��t���DH�SH������=��)�$O�H��H�_@H��H��u?��u"H��)��N�H�^H�{����H�C[�@H�^H�{P���H�CP[�DH�~���H�C[ÐH�>H�����Oƃ�,wOH���H��H��u/��uH��,s,H�FH�x���fDH�FH�xP���H�~���P�9 �H�=I%H��1��H����ATI��H�=8BU����S�r��H�=!%H���^��L���H��H����u��H��[]A\�fD��H��H�W��H�OH��L�GH�7H�G H�G(�ff.�����:H���,wH��
H��r�kt��H�� �_t��ff.�@��H�GH�H�H@��H��H�p@�D���ff.���H���p��1�1�1�I��H�@P�	I�@I�@I���I�I�@I�@XI�@PI�@ I�@(I�@8I�@0Iǀ�Iǀ�I�@@I�@HH���������H�GH����ATUSH�P H�h0H��~)H��H�]H)�L�$�H��1�H��8����L9�u�H�]H��t?@H�SH��~*H��H�kH)�L�d�H��1�H��8����I9�u�H�H��u�[]A\���ff.�@��ATUSH�GH��H����H�xH�o�H�{H����H�CH����H�P H�h0H��~+H��H�]H)�L�$�DH��1�H��8����L9�u�H�]H��t?@H�SH��~*H��H�kH)�L�d�H��1�H��8���I9�u�H�H��u�[]A\�H�H��t�����[���ff.�f���ATUSH�_H��tvH��H�{H;{tf�L�'���L��L;cu�H�{0H;{8tDL�'���L��L;c8u�H�{@H��tfDH���L�$���L��M��u�H����H�E[]A\�@��H�1�H��toH�WH�OH9�tdH�wH��H)�H�4�1�H�H�H9�u�H�H�W0H�w8H9�t(H�(H��H)�H�<�1ɐH�H�H9�u�H�Ð����f����W�����UH��SH��H��H�GH�xHH��tH��H��[]�����#�H��H�CH�xH@��u�H�����t�H��H�����H�CH�xH�@��H��������fD��1��f�����fD��H9���HD��f.�PXH��2H�
�?H�5�BH��H��H��HI�H�\o@H�81��J�f.�USH��H��@��u	H�����u1H�����H��H����'�H��H�5H��H��n@H�81���@��tɋ����t������t�H���'�H���ATH��A�ԺUH��SH��H�5��AH�;�<��H��4tnA��H��u1�H��tQ��u}H�����ttH�������ug�� tUH����H��uUH�BH�H�EH� t,H��H�BH��[]A\��E��u8[1�]A\�@H�R ��f�H�zuH�B �H��m@H�5<>H�81���H�3H�}���ff.�@H���D$�Y��$�8��T$�$f/U�f(�v�\�^�f/�r�\=�H����X�^�f/�r��X�H��ÐH��(dH�%(H�D$1�H9�tGH�t$H��H��H��H�=�H�$���H��uH�T$dH3%(uH��(�f.������@��ATH��I��USH��H�� dH�%(H�D$1�H��H�|$H�=LH��H�$�
���I��L��*H�=��AH�$���-I��H�޹H�=�AH�$�l��H�T$dH3%(u	H�� []A\���
�ff.���H��(H��dH�%(H�D$1�H��H�|$H�=�H�$/�y��H�|$dH3<%(uH��(��
�ff.�@��H��H�H�|$H�t$H�|$dH�%(H�D$81�H�D$���H�T$H�t$H�L$ H�D$ -H�=H�T$(���H�L$8dH3%(uH��H���	�f�H��f(��Y�f/������f(��-*�f(�fT�f.�wt�\��-����f/�v�X�f(�H���Df.���X�f���^�f/�r��
�Af(��t$�U���t$f(��f��H,�f���5W�fU��H*�f(����fT��\�f(�fV��T����f/�f(��\����-�f(��5F�f(�fT�f.�v/�H,�f���5���H*����fT��X�f(�fU�fV�f(��-�f(��\�f/�v'�\�����f.���������Df.�{Jf(��\��^�f/������f(��
�@fW@��d$�%���d$�\�f(��|���f�t��ff.��AUATUSH��H���]H���{H��H��?H��H1�H)�@��u}A�E1�H��A�������D@��tjH��1�I��H���H�H9�urH��umI��H��u�H��H��E��LE�H�@L���K�\$H��H��[]A\A]ÐH��?I��I���@J�DH9�wH��H���z���f.�H�@H���H�\6H����H��H�����H�Ã���t���uH�����t������o���I���e���L��H��E��LE�L���o�H��H��H��[]A\A]��f.�H���H��[]A\A]�L��H��[]A\A]�+�H�@H�x�H��H�\?H��[]A\A]�H���
�H���.���fD��H��ASH��H��t,H��H�=2���H������HE�H��[�f��H�=�9���H��H�ųA���H����H�=��h�����SH��H���P��H��[H����@��H��dH�%(H�D$1�H�4$���/I��H��H�=��A����H�T$dH3%(uH����9�f���AUATI��USH��(H�t$dH�%(H�D$1��������H�T$A����L��H�l$L�-?�A�:DH���@�-H��I��H�=y�AH�D$���H�T$H��H�T$I��H�޺<L�����H��t�H����L��H�L$dH3%(uzH��([]A\A]�f����Y���L��H�H�H��H9��fDH�|-H����H9�~���C�H���K�H�L$�L��L��{H�����v������H�t$H���X�����AUATI��USH��(H�t$dH�%(H�D$1��u�����H�T$A����L��H�l$L�-�A�:DH�����+H��I��H�=Y�AH�D$���H�T$H��H�T$I��H�޺>L�����H��t�H����L��H�L$dH3%(uzH��([]A\A]�f����Y���L��H�H�H��H9�|�fDH�|-H���2�H9�}�����H�����H�L$�L��L��zH���
��v�����H�t$H��������SH��H��dH�%(H�D$1�����H��c@H�0H��u,H�����H�T$dH3%(��H��[��>H�=D�A�?���u�H���>H��H�$����H��4u�H�4$H���L��@��u�H�����t�H��ƒ���
u�H��b@H�2H��t�>H�=r�A�����t�H��� tH������?����1��<����d�@��H�������ff.�@��UH��H��SH���{�H��H����H��H������H���]�H��H�����H��H�5�5H��H��a@H�81��d	�@PXH�5�2H��H��a@H�81��B	�f�H����tH��������H9�v.H���@�����H9�v�H�b@H��H�5�5H�81���H��a@H��H�5�5H�81����H����tH�����v3H���f.�H����v�H��a@H��H�5�5H�81���H��a@H��H�5�5H�81���fP��tfW��Y����������UH��H��SH��H�������r���w%H�����H��H�5�1H��H��1�����fD�r���vӍrЃ�	v˄�t�x@u�xt@H����H��H�5�1H��H��1����H��E1�H��1�H�=^�A���f�H��H�51H��1��l��ff.����H��dH�%(H�D$1�@��t"��u`1�H�T$dH3%(ubH���fD@��uH�����t
�����
t7H��I���%H�= �AH�$���H��t���fD�;g���t��@��H��(dH�%(H�D$1�@��uR@��uH�����t
�����
tiH�|$H��H��H�="H�$+���H�t$dH34%(uAH��(�H�@H�H�GH�x
H�D��H�����fD��v�����ff.�@��@��u6@��uH�����t
�����
tMH����H�=�����)��f�H�@H�H��H��H9�xH�D�f�H�������B�ff.���H��(dH�%(H�D$1�@��uR@��uH�����t
�����
tqH�|$H��H��H�=�
H�$-���H�T$dH3%(uIH��(�H��H�H9�tH�D?�H����H����������Q���������w�����H��dH�%(H�D$1�@��t"��t`1�H�T$dH3%(ubH���fD@��uH�����t
�����
t7H��I���%H�=��AH�$�c��H��u���fD�d�����@��H��@��u3@��uH�����t������
tU�@��f.�H9�ts@��u=@��u?H�����tN�����
tZ�����t,��t'H���e�D�+�1��D�����u�H���>�fD�����u���@��H��H������UH��SH��H��?w9�?H��)�H��H��u6H�@��H��H�xSH��H�D-[]��H��������?H9�w!H�\6H���\��H��H��H��[]鋽�H���p��H����H��H��[]�*��f.���@��u6@��u H�����t������
t@����f.�H�@H��H��?H�H1�H)�H�xH�D��3`�H�����ATUSH��dH�%(H�D$1�H���H��H��~pH��H��tN�)��I��fDH��L��H�H��H��H�t��H��u�H�L$dH3%(L��udH��[]A\��H��H�$�+��I����H�7b@H��H�57+H�81���H�
L1��H�5	+H�=+���������@��u6@��u H�����t������
tH����f.�H��H��?�H�H1�t�H�Ҹ@H��?)�H�D���_�ff.���@��u6@��u H�����t������
t(����f.���f.��_�ff.���@��u6@��u H�����t������
tH����f.�H��H��H�t,@��tVH�tIxwH��>~1H��H��?H���@�{��H�����H���fD��H�H�D��@H����H��H�t$�+��H�t$H��H���*��f.�H��H��H���A������@��u6@��u H�����t������
t(����f.�H��H��H���D��<�ff.���AUATUH��SH��dH�%(H�D$1�������@��tLI��I�M��~M�1�@H��H��H��舱L9�u�H��H�T$dH3%(��H��[]A\A]Ð�I��L�-1�A�6�H����H��M���+H�=��AH�$���H��M���<H��L��H�,$�m��H�����u��m������H���#�L�\1�1�H��H������H��������@��tH��t`1��DH��@��uH�����t
�����
t��a��H��u1�H���D��	�t�����f���f.�SH��H��dH�%(H�D$1�H�=p�A�"1�I��H��H�5V�A�1���teH�<$@���7@��tqH��tK����H���)H��� ��H�XH��H����H��ut�H�5�4H���p�����1�H�L$dH3%(��H��[�@H�����t�H�H���у�����H��t����i����v����H�����H�5C&H������tV�H�50&H������u[��f���@�H�=&���H�0�A���H�XH�@������(���fD���H�����H��\@H�$H�5�%H�81�������f.���SH��H��dH�%(H�D$1���tH��~EH��H�T$dH3%(u9H��[�I���<H��H�=I�AH�$茿�H�����t�������PX�1�H������ff.�AWI��AVM��AUI��ATI��US��H��hdH�%(H�D$X1�H�D$ �
�H�D$(�Ņ��������K�Hc�I�Ǩ��H������.������.�H�D$ H���qH�|$ �L$���H�T$ �L$H��H����-���o-��A�����H���HD�H�t$ ����I��t=E����I�U���f�I�W��I�$��!��I�E1�1�I�$L�d$ H�D$(9���H����I��tZH�t$0L�D$@1�L��H�׫A�H�D$0H���AH�D$8茺�H�D$@H��4�����LI�EH�D$HH��4tI�H�L$XdH3%(���H��h[]A\A]A^A_�fDH�|$(���f���f����~'���I�I�E����������D�����H�|$(t
H�|$(�h��1����z��f.�H�D$HH��4�N������B���H�iY@H�5�"H�81����K�Hc�I�<�H��u4���`+�H�D$ ���I�I�E���^���A���C������B����L$����L$H�D$ ������D������H��X@H�5+"H�81��a���+�ff.����H��������fD��H������H��������fDATI��UH��H��SH���k����P���v�P���w"H����M��H��H��H��H�5�!1����0��	v�H���f��M��H��H��H��H�5y!1��\��ff.����H��L�dH�%(H�D$1�H�F��u3H�<$�I��L��H��H�=��A�/��H�L$dH3%(uH���H��L��H������������H��H��H�6H�|$H�x��uH�L$��v��H���H�T$�������H�������@��u1��������H���@���+H��4�A���@�����@��u1�������H����@����H��4�����9�u"H��uH�����t
�����
tb�}��D1��DH������z���H�����H���b����b���fDH�����u�H�����H��u�냐�����p���fD�����fD��P���fD����fD��0���fD�����fD�����fD����fD����fD����ff.���USH��H��@����@�����������1H���G@���MH�W��tT�����ك�����H������*H�KH9�ty���H��H�����H��H��[H��]����H�����u�H���}H��u�H�
�U@H�	�@H������n���H��tEH���_���H�]U@H��T���DH��H��H��[]�w���H��L@H��(����H�iR@H������H�
YR@H�	�;����H�
�L@H�	�+����H�
�Q@H�	�����H��Q@H������H�
N@H�	����H��M@H�����H��P@H�����H�
yP@H�	�������������t"�Gf.�{1�øu���H���H9�t�H���H��H��?H)�H	�H��H�|$��~D$��D��������t"�Gf.���HJ��f.�H��1�H9�t�H���H��H��?H)�H	�H��H�|$��~D$�����������t"�Gf/���HF��fDH��1�H9�t�H���H��H��?H)�H	�H��H�|$��~D$�����������t"�Gf�ɸ�f/�HF��fDH��1�H9�t�H���H��H��?H)�H	�H��H�|$��~D$�����������t2�Gf(�fT
�f.
�wf.��z�1��DH���H9�t�H���H��H��?H)�H	�H��H�D$��~D$��D��������t:�Gf(�fT
q��f.
\�vf��1�f.���H�������@H���H9�t�H���H��H��?H)�H	�H��H�|$��~D$��ff.�f�����H������t�G��E��H��H�D�f.�H��f�H9�t�H���H��H��?H)�H	�H��H�|$�~D$�E��H��H�D�f�S��H����H����t>�F�H�߸H��谮� H������H��t�H��H��[�f�H��f�H9�t�H��H��H��?H)�H	�H��H�t$�~D$�fD�����������Gf��f/�v"�ǟf(��%3�fT�f.���f/�w'�
��f/�vf/������fD�x�f(���fT�f.�v��H,�f��f(��%��fU�f(��H*����fT��X�fV��D�H,�f���-O�fU��H*�f(����f(�fT��\�fV�f/��D����f���fDH��H9�uf��H,�H�D�f�H���H��H��?H)�H	�H��H�D$��~D$����fD�������t"1�@��uH��H��t�1�����t�@������tf�G��t�Nf.�{	1��fD�u��H��f��H9�t�H��H��H��?H)�H	�H��H�D$��~L$��fDH��f�H9�t�H���H��H��?H)�H	�H��H�|$��~D$��b�����SH��H��dH�%(H�D$1�������tVH���<H��H�$艵�H��4��H���������H��?H��?��H�T$dH3%(upH��[�f�H�����t������
u�H�fE@�<H�8����{���H�H��
H����랐H�9E@�<H�8�̶���N���H��?H���u�������H�4$H���G�����SH��H��dH�%(H�D$1�������t^H���<H��H�$艴�H��4��H�������������H�T$dH3%(H����H��[�fDH�����t������
u�H�^D@�<H�8�����s���H�H��
H�����f�H�)D@�<H�8輵���>���H��H��?���j���DH�޺�H�=���\��H���I������H�4$H�������H�����te�������H��f�H9�������D$�����|�G�D$��L$��D$�f.�{W1��@H�����t �����
t.�����t���u�@렉����tnH������fDH��H���M%�Du���H��f�H9��r���H���H��H��?H)�H	�H��H�D$��~D$��H����H���H��H��?H)�H	�H��H�D$��~D$����ff.�ATUSH��0dH�%(H�D$(1�H����A��H��H��A��tF�uD��u H�����t���������
�H���K��H��H���B��u1�؃���u�H��H9���1�H��t"f��f��zH��H�H��t
H��H��?�UH�L$(dH3%(��H��0[]A\��C�
�f/���f/����f��H��t�
PwE1�f/�f��A��D�ef/�r'�
o�f/�r�\��H,�H��?�s���fD�H,��c���fDH����H���L���H�H��
H�����U�6���H�ڸH��?H)�H��H��H	�H��H�D$�~D$�+���H��@@H�5~H�81������o��H�|$H������H�5�H��H��@@H�81��������AVAUATUSH��PdH�%(H�D$H1��������B�Gf(�fT
�f.
��cf.���H�T$H�L$1�1�L�D$�
�T$H�Ņ���1�1�蹠�H�T$I��H)�A�Ճ���A��L�t$ �H��H��L��蟷�H�����D$����D9�������A�]A���k�D$"0A�]L�t$ Hc�L��L���D$!.�*��D$H�5�L��P�1��R��H�L$HdH3%(L���OH��P[]A\A]A^�fD�H�=���ן�H�T$I��H)�A�Ճ�����Hc�H������H��E1����D$���2�������;����H�5L�����I�,$�� �H����HcD$Ic�L��H)�H�4.���I�T$I�$ tI�T$HՋT$�0H���Hc��e��H���
���HcD$H)�H�D$ H�������>H�������U�������D�f�D�����DH��H9���H���H��H��?H)�H	�H��H�D$�~D$���1�f/��H���	@��H)�H����I���Q���Ic�H�t$ L��H���M��I�$�� ��H����HcD$H��L��H)�H�t�a��I�D$I�$ tI�D$�T$H�D9����.0f�����f�����L�t$ A�U��Hc�I�vI�~������DD��Hc�H�\$ )�H�4+H�|+Hc����A�UH��L��Hc��D, .����l���fDI�\$�5���fDI�l$���fDD)�H�߾0Hc�腢�D$D)�H�H��7���@�H�=f����I�������H�T$ H�uH��H�UH�TH�T�H)�H�+H)�H��H��H������H��1�H�<H�<H��H9�r������U�D��D����������AWH��AVAUATI��USH��H��8dH�%(H�D$(1�L�l$H�|$H�=d�H�D$%L���3��H��H���#��H��t.H�T$(dH3%(H���/H��8[]A\A]A^A_��A��A���c��uH�����t�����
���H�L$��<H��H�D$��H��4��H�������A��uDA��uZI�����tQA�$����
uEL�=�:@�>I�?�U���t-I�$H��
���V@L�=�:@�>I�?�,�����H�L$��>L��H�D$�4��H��4�4H������������4E��uA��uXH�����tO�����
uEH�":@�>H�8赫��t-H�H��
���WDL�=�9@I�?�>茫���tH�L$��>H��H�D$蔩�H��4��H������������(���A���<A��uFI�����t=A�$����
u1H�z9@�<H�8�
���tI�$H��
H�����>�H�L$��<L��H�D$���H��4�H����������������H��M���-H�=[�AL�d$�!��H���k���f�L�=�8@�<I�?�l��������H���������fD1�I�����T���f�L�=�8@�<I�?�,����d���H� ������?���f�1�H�������f�H�Y8@�<H�8������L��H��?��������H�t$H���f��H�t$L���Y��f���@��u&@��uH�����t
�����
t�������c#���PXH�5	H��H�X:@H�81�����ff.�Uf(�H��SH��H��(f.���f��f(�f.���f.��~-�f(�fT�zNuL�5��f(�f.�fD(��DY�vZfT�f.�wPfA/����MH��t�H��([]�fDf(��5��fT�f.�vrf.�wlfD(�f(��DY��\��^�H����f(��\$�DD$�$�j���DD$f���\$f(��$fA/�wi�M�n����f(�f(��t$�|$�\$�$�$���$f���\$f(��|$�t$�~-������X��\����fA/�w��MH��([]�D�MH������������o������ff.���ATI���UH��SH�� dH�%(H�D$1��D��H��u|H�h�AH��tSH��L��H��L�d$H�=>�H�$/���E1�1�H��H��H�=߈A芠�H�T$dH3%(u,H�� []A\Ð�H�=,���H��H���A��N������f���ATUH��SH���=��H��H��I������[L��]H��A\�����H��t�Q���1��ff.�f���@��t&H�������H9�@�H��x6�>1��D�@��u!H�����tH��у���
u1��� �������@��u&@��u*H�����t!H��ƒ���
uH��
���f�1�H�����P�����@��u.@��u0H�����t'H�?������
uH��
H�������@H��?H���P���f.���SH��H��dH�%(H�D$1�������tNH���<H��H�$�Y��H��4��H���������H�T$dH3%(upH��[�DH�����t������
u�H�>3@�<H�8�Ѥ��t�H�H��
H�����DH�3@�<H�8褤���V���H��?H������H�4$H���"��f���SH�ӺH�� H�|$H�|$H�4$H��dH�%(H�D$1����H�$H�t$H�ڹL�D$H�=L�AH�D$貝�H�L$dH3%(uH�� [��'�����SH��1�H�� H�|$H�|$H�4$H��dH�%(H�D$1�������u#H�L$dH3%(H��u<H�� [�f.�H�$H�t$H��L�D$�H�=C�AH�D$�	��H������ff.�@��H��H��@��u/@���H������������
��H���!��H9�tk@��t%H�H�1�H9���H������H���f.�@��uJH�����ta�����
tg�����t7��t2��H��H���W�����f������u�H��H���Z�f.������u���@H��H���e��H��tH����HD��N���H������B����L��H�5�H��H��7@H�81������ATI��1�UH��SH��H�� H�|$H�|$H�4$H��dH�%(H�D$1������tFH�$H�t$L�D$L��H�="�AH�D$�H��H��tH�L$dH3%(uH�� []A\�H��H���.�����f�����H���������G@����@��tU�������H��f��H9�t%H��H��H��?H)�H	�H��H�D$�~L$f/�wV1�H���f�H�����tW�����
t�����t���uL�Nf/�v���H��H��H���
�t�H�H��H��~��H���f�������^����>H���d��@H��f�H9�����H���H��?H)�H��H��H	�H��H�D$�~D$����ff.����@��u6@��u H�����t������
tx����f.�@��tH�H�H9���1���H��H���u=H�����t]�����
tc�����t+��t&�>H��H���s���������u�H���F�H��t81�H���f������u���@H��H���E��H���u������f.���@��u6@��u H�����t������
tx����f.�@��tH�H�H9���1���H��H���u=H�����t]�����
tc�����t+��t&��H��H���c���
������u�H���6�H��H��u4�H���f������u���@H��H���5��H��u��1���@��f.�����H���������G@����@��tU�������H��f��H9�t%H��H��H��?H)�H	�H��H�D$�~L$f/�sV1�H���f�H�����tW�����
t�����t���uL�Nf/�r���H��H��H���"
�t�H�H��H����H���f�������^�����H�����@H��f�H9�����H���H��?H)�H��H��H	�H��H�D$�~D$����ff.������H���������G@����@��tU�������H��f��H9�t%H��H��H��?H)�H	�H��H�D$�~L$f/�wV1�H���f�H�����tW�����
t�����t���uL�Nf/�v���H��H��H�����t�H�H��H��y��H���f�������^����<H��餪�@H��f�H9�����H���H��?H)�H��H��H	�H��H�D$�~D$����ff.������H���������G@����@��tU�������H��f��H9�t%H��H��H��?H)�H	�H��H�D$�~L$f/�sV1�H���f�H�����tW�����
t�����t���uL�Nf/�r���H��H��H����t�H�H��H��x��H���f�������^�����H���T��@H��f�H9�����H���H��?H)�H��H��H	�H��H�D$�~D$����ff.����@��u6@��u H�����t������
tx����f.�@��tH�H�H9���1���H��H���u=H�����t]�����
tc�����t+��t&��H��H���c����������u�H���6�H���t8H��t21�H��������u���@H��H���5��H���t����ɐ��f.���@��u6@��u H�����t������
tx����f.�@��tH�H�H9���1���H��H���u=H�����t]�����
tc�����t+��t&�<H��H���S���������u�H���&�H���t81�H���f������u���@H��H���%��H��u����Ð��f.���H��H��+@��D$H�8莋��D$�@�u*H�����t"H��у���tH�р�H�xH�t��tH���H��H�D$����H�D$��ff.��ATI��UH��SH��dH�%(H�D$1�H��4��H�MH��H��t{H�$�����uH�������H���>H���;��H��4�51�H�������I�<$tgH�T$dH3%(���H��[]A\�H�E�H�$H�%@H�0H��t�<H�= rA����s���H��?I�<$u���uT�t|���I�$����fDH���~
H�����H���I��H����H�]�������賄�몐H��ƒ���
���H�h$@H�2H��t�<H�=qA�O�������H�H��
H��H������������H������H��+@H�5��H�81��G��H��#@H�5u�H�81��/��ff.�@��H���#���
ˋ���H�0fH~�H9�tRfH~�H��<������tH��H��u/H���f.�fH~�H��H��H��H���f.�H��釃����H��蓶��
�z�V��H�0fH~�H9�tRfH~�H��<������tH��H��u/H���f.�fH~�H��H��H��H���f.�H�������������tb�GfWu�H�0fH~�H9�tXfH~�H��<������tH��H��u5�DfH~�H��H��H���fDH��H9�u�Q��d��@H���H��H��?H)�H	�H��H�D$��~D$��Y���fD��������tj�GfT�yH�0fH~�H9�tAfH~�H��<������tH��H��u�DH��H��H��H����黁�H��H9�H��t�H��?�H��H)�H	�H��H�T$��~D$��b���ff.�@��H��@��trH�f��H*�H�0fH~�H9�tzfH~�H��<������tH��H��uWH���f.�fH~�H��H��H��H���f.�@��u+H�����t"�����
u�b���w���DH��鿀��:��H�5$�H��H��'@H�81����ff.�@����H�������*�W@����H�f���H*�f�f.�ztt�^�H�0fH~�H9�ttfH~�H��<�������H��H��uMH�����������H��H9��f�f��f.������7wf(�H����f.�@��u�H�����t1�����
�������t���u"�N����f.���������/H���D��@H��f��H9�����H���H��?H)�H��H��H	�H��H�D$�~T$���@fH~�H��H��H��H���f�f(��w���f(����fDH��H��H��?H)�H	�H��H�D$�~L$�O���fDH���T$�*���T$f(��,���ff.���SH��H��@dH�%(H�D$81�@����H�f���H*Ή؃�����CH�t$ H�|$�\��D$�
��f/�vf/���蕭��D$ H�D$(H�0fH~�H9���fH~�H��<�������jH��H����H�D$0H�t$0H�|$(�#��H�L$8dH3%(�`H��@[�f�@����H������������
������t{�������N���������H��f�H9����H�ڸH��H��?H)�H	�H��H�\$�~D$���@��|��/���fD�����uPH��f��H9��q���H��H��H��?H)�H	�H��H�t$�~L$�G���D�����tǺ�
H���i������@�H,�H�D�\����fH~�H��H��H�����f.�H���ȼ�f(����躺�f.���H��@��tz�������d�_H�f���H*�f(�f(��6��H�0fH~�H9��fH~�H��<�������`H��H����H���fD@����H������������
�������t	������������_���D�Vf�f/��>���f(��\$�$����$�\$f.�z����fW��f(��$f(��<���$H��f(��z_��f.�������b�����H��餞�@H���z��H��f��H9������H���H��H��?H)�H	�H��H�$�~$�b����H��?H��H��H��H��H���f�H��f��H9�����H���H��H��?H)�H	�H��H�$�~$����H��H9�t�H��H��H��?H)�H	�H��H�$�~$���f�������t �_H���$�4���$f(����H��f��H9�t�H���H��H��?H)�H	�H��H�$�~$�ff.�H��@��ug@��t!������+�+H�����fDH�����tO�����
�����������tn��u�H��H�����fDH��H���H���������u�H�f��H*�H�ʸH��H��?H)�H	�H��H�L$��~L$��H�f��I�H*�H�0�X�fH~�H9�t'fH~�H��<������tH��H��u��3x�fH~�H��H��H���fDH��H���M��DH�f�H���H*�H9��7���f���i���H�H��H��?� ����@��u&@��uH�����t
�����
t�+铛��K����ӓ���@��u.@��uH�����t�����
�9�-�O���@��uRSH��@��u_H������������
�'�����tH����H�f��H*��\F�vfDH��H)��H�����������H�f�H���H*�H9�t/H��H��H��?H)�H	�H��H�t$�\D$f.�H�0fH~�H9�tTfH~�H��<������tPH��H��u1H��[������t\H���-[�'����+z�H��[�v�fDfH~�H��H��H���H�H���J��H��H��H��[��y�H�f��H*�����H�H��?���ff.����H��HdH�%(H�D$81�@��uB�@��uH�����t�����
��H�L$8dH3%(�dH��H��@��tJH���MH�H�H��H9��H���uyH�@�r��H���D@����H������y�����
�������t���f�N�fD�Ӱ��>���fDH��H�H��H��H��H���AI��I��?M��E��tH�2H�G�H�|H�t	�����fD�������H��f��H9�t/H��H��H��?H)�H	�H��H�D$�~L$f.�H��f�H�T$H�H�t$ H���H*��/���D$�
�{f/�vf/�{���h���D$ H�D$(H�0fH~�H9�tifH~�H��<������tkH��H��uFH�D$0H�t$0H�|$(����f�������#�����
�X�����H��A�����@�Ks���H,�H�D�b���fH~�H��H��H���H�H�t$�j��H�t$H��������蓱���ff.�ATA��UH��SH��H�� dH�%(H�D$1�A����@���[H�L$��<H��H�D$�;��H��4�>H������������@����@����H��H�H���@��u
H������fE�����H��I���
H��H���t
H����H��H���O���H��H�@H� uH�C H�pL�����H� u�H�[ �H�����t�E����
�,����T���@��u
H�������E���d���H�t$�H�\$��I��H�L$dH3%(L���EH�� []A\�f.�H���������������
�����H�@�<H�8衂���n���H�H��
H�������fDH��@�<H�8�l����9���H��H��?�c����H�U�Ѓ���
�������� �����r����	���H�U��
����H���dz�H������@H��H��H��*���I�����H�
���H�5��H�=����~�H�t$H���Vu�H��@H�5��H�81��>��蹮�H��@H�5��H�81��!����AUI��ATA��U��SH��H��dH�%(H�D$1�A��������H���<H��H�$�W�H��4��H������������������
����E���R���uH�����t�����
�iH�L$dH3%(�uH��[]A\A]�f.�H������O��������
�A���H��@�<H�8�q����%���H�H��
H�����E���fDH��@�<H�8�<�����H��H��?�����I�}觔�uC�uH�����t�����
t}DI�}��H�5`�H��H�@H�81��t��@�tDH�H����H������H��H��@H�5��H�81��;��H��������H�����t������
u�H��H���������fDH�t6H��������1����@���[��H��@H�5s�H�81��ô�H�4$H���r�H�(@H�5@�H�81�蟴�ff.�@��I��@��u3@��uH�����t�����
�~�*L���9��f�U@����@����H�������������H��f�H��H*�L���L��H��?H��H)�H	�H��H�T$��~L$�f��Y�H�0fH~�H9���fH~�H��<�������H��H����]���������*L��]�T��@H��I��I��������H�H��I��H��H��1�H�@H�H�I9�H���I��]H�D	������
tV���������t)���x���H��]L��龘�fD�ü�]��k�H�f��AH�H*����H��t;H��t0H��]L��鈼��H��]�7o�fH~�]H��H��H���H��]ø]��H��f�H��H*�H��I9��=���f���e���D��H��@��ur@��t4�����uT�������|�O�����F�^�H������������
�}�����t���t��+H��頎���������OH�f��H*�H�0�X�fH~�H9�tdH��H��<������tH��uMH��H����������C�_�\$H��迪��XD$H�0fH~�H9�u�H���j�@���������+H���܍�@H��H��H��H����H��f��H9�����H���H��H��?H)�H	�H��H�D$�~L$���H��f��H9��r���H���H��H��?H)�H	�H��H�T$�~L$�H����H��f�H9������H��H��H��?H)�H	�H��H�D$�~D$�n���H��f���d$H9������H���H��H��?H)�H	�H��H�D$���ff.���H��@��ur@��t4�����uT�������|�O�����F�^�H������������
�}�����t���t��*H��� ����������OH�f��H*��Y�H�0fH~�H9�tdH��H��<������tH��uMH��H����������C�_�\$H���?���YD$H�0fH~�H9�u�H���g�@���������*H���\��@H��H��H��H����H��f��H9�����H���H��H��?H)�H	�H��H�D$�~L$���H��f��H9��r���H���H��H��?H)�H	�H��H�T$�~L$�H����H��f�H9������H��H��H��?H)�H	�H��H�D$�~D$�n���H��f���d$H9������H���H��H��?H)�H	�H��H�D$���ff.���H��@����@��tP�����up�������X�G�����\FH�0fH~�H9��|H����e�@H������������
�������t���t��-H��选���������GH�f��H�0�H*��\�fH~�H9�t�H��H��<������t?H���i���H��H��������������-H����@H��H��H��H����H��f�H9��\���H���H��H��?H)�H	�H��H�D$�~D$�2����H��f�H9������H���H��H��?H)�H	�H��H�T$�~D$�l����H��H9��`���H��H��H��?H)�H	�H��H�D$�\D$�6���������t>�_�\$H��蓤��T$H�0�\�fH~�f(�H9����������H��f���d$H9�t�H���H��H��?H)�H	�H��H�D$�ff.���@��u6@��u H�����t������
�����f.�UH��SH�H��H��@��tSH�H���>H����DH�����%H���#�H���[H��H��[]�����@��uJH������=H��Ѓ���
������t0���'�V�Zf.����������H��H9���H��H��H��?H)�H	�H��H�$�~$@f�f.��bH���qH����f���H*�H��y/f(��\$�$药��$�\$f.��0�*f(�f(��5��H�0fH~�H9��fH~�H��<��������H����H��H��[]����������H��H�ߺ�[]�g���H���4H�@H��H��H9��?H�t?��H������ƒ������uH�����t�������H��H�ƿ[]�«�H������H��tD��D���fD��t�H������-����f/������XH��[]�`�H��t�H���t��� ��H���ZH�����H���4���H��������Hf��H*�諍��
hH�0�^�fH~�H9�tfH~�H��<������t.H���r���H��f(�[]�`��Z��H�������H��4H��H��H���F���H���>���H����.������fW`gf(��$f(����$H��[]f(��:D���H�����H��H�4$�Т�H�4$H��[H��]���H��H9��Y���H���H��H��?H)�H	�H��H�$�~$�����.��ff.�����H���������Gf�҉����tw�Nf.�zt}�^�H�0fH~�H9�t}fH~�H��<������tH��H��uZH���f.�fH~�H��H��H��H���f.�H��H9�uyf��f.�������UH���L^�@H��H9�t1H���f��H��H��?H)�H	�H��H�D$�~D$�
���f��f����H��H��H��?H)�H	�H��H�D$�~L$����fD�S�������ff.���H��1�dH�%(H�D$1�H������$H�D$dH3%(uH�����ff.�@��@��u&@��uH�����t�����
���D���@H��@��t6H����H�H�H��H9�uW�H���uLH����@��ujH�����������
�@�����tS�����N�f�H��H�H��H����H��H��?Hք�HD�H�D6���������H��f��H9�t/H��H��H��?H)�H	�H��H�D$�~L$f.�H�f��H*����H�0fH~�H9�t'fH~�H��<������tRH��H�����H����[�������k����%H����@铖�H�����
���fH~�H��H��H�����H�H�t$�Ҟ�H�t$H��H���Q���l��ff.����SH��H��@��tnH�f���H*Ή؃������C�*��H�0fH~�H9���fH~�H��<�������*H��H����H��[Ð@����H������������
������t{�������N�����a���H��f�H9��O���H�ڸH��H��?H)�H	�H��H�\$�~D$�%���@H��[�FZ�fD�����uPH��f��H9�����H��H��H��?H)�H	�H��H�t$�~L$���D�����t�H��H�ߺ%[��}�@fH~�H��H��[H��H���f�H���8��f(��]���ff.�@��f.�z&u��f/��w�1�f.���H�D���@��f.���U��S��H�����0�Gf.��AH��H��@����@����H������:�����
�������������Df(�fT
LPf.
<P�~H�5PAH���.1�1�H���D$�<h�H��4�RH������D$�`1�f/&`��H������H��[]�@������z���H��H9���f����fDH��H���e��t�H��H��H��[]H����H��H9�tiH���H��?H)�H��H��H	�H��H�D$�~D$���@��������H�ڸH��H��?H)�H	�H��H�\$�~L$�Hf��^�����	H�=��D$�Ƀ��D$H��H��NA���@�KH��[]��H��H��H�ﺇ[]�:r�f.�H��H��H���g�1��D$����f/�^w�ЙHc�H�D�����s���ff.���f(�f�f.����~-2Nf(�fT�f.=N��f(�f(�fT��\�fT�f(��
��X�f(��^�fT��X��^��Y���]�f(م�tpf/�sh�
�]f/�f(�wV�\��$^f(�f(�fT�f.����`@f/���]�~���fT��@�0����JMÐf/�w��X��
�]f(�f(�fT�f.��
n]v+�H,�f��fU��H*�f(����f(�fT��\�fV��X��@���fT��fD��AU��AT��UH��SH��8��tf@��uH�����t
�����tM�����tC@��u
H������
�Ѓ���t&���&H�������:1������H��E��A��H����H���D$����D$E����H�����d$f���l$f/�fD(�fDTL����K�T$�D$f(�D���\$ ����\$ fD.�Kf(����d$f.d$����H�0H�D$H9��H��H��<�������H��H�����H������1�H��8[]A\A]�H�����f���DD$fDT=Kf(��T$�'����T$�
p[D���D$�����Z[fD.�Jf(����t$1�f�I�0H��f/�wy�@f/�����tf(�fH~�L9�tfH~�H��<��������H��H��u_H���L$(H���\$ ��f��L$(�\$ �H*�f/����|$f/|$�Y��XD$�t���f/����o����L$(�\$ �R��L$(�\$ �f.L$ztLH�0H�T$H9�t%H��H��<��������H��H��t�D$�CR�H���;��H��8�[]A\A]�fH~�H��H��H�������������������D$�Q�H�����H��H��H��H�����H��H��H��H���f.���AVAUATI��U��SH��H��PdH�%(H�D$H1���w�H�D$(4����H�L$ H�T$L���L�D$(����H�D$(H��4��H�D$ H��u	H�D$ L�-O�?H�|$I�uH��t�ˌ�H��tI�uH�|$ 踌�H���pH�D$H�D$0H�D$ H�D$8趌�H��辛�H�L$0�H��L��H���r��H�L$HdH3%(�H��P[]A\A]A^�L�t$ L�l$L���L�D$(L��L���B���H�L$(L��L����p��H�|$ �A����h�ك�H��t8H�T$ ��������H�t$E1�1�H����������H���Z���H�t$H�T$ �������@��u
H������3������������H�H��H�H�I��I��E����H9�|�H�|-L�踧�I9�}��z���H�D$ �O���H�t$E1�1�H���"������V���H�l$0L�%�=AfDH���p��H�D$ H��I���+L��H�D$0�NZ�H����H�|-L��<��I9�~����E1�1�H����������A��I��H�l$0M�L�5W<AA��I��<�1L����H�D$ L��I���+H�=�<AH�D$0��Y�I��H�D$I��L��L��L��H�D$0�Y�H�����t��k���L�t$ L�l$�P��H���X��H��I��L��jL�U��H��AVH��AU�X�H�� ���H��H��H��H��H�H���A����H��H9������I��I��?L)�I��I��L	�H��H�D$�~D$f(�fT
xEf.
hE���fP��t+E���������z����-��������������F�E����������7�����AWI��AVAUATA��UH��SH��H��8dH�%(H�D$(1���t
@�����؃������u H�����t�������f�D��������A��u
I��������������@��uH�����t�E���������H����g�H��H���0]���������A�>L�l$ �L��H��M��H�=?CAL�|$ �W�H�������A��fDA������K���f�H���h�L���D$�Z�H���$�M��$�T$D���J���f(�fT
�Cf.
~C��
�Sf/����
�Sf/����H,�L�TH�L$(dH3%(L���?H��8[]A\A]A^A_�@���<���H���I��H�I�H����L��H)�A��H��H����H�H��H�xH��������?L�T?H9��z����Lj�I���m�����\��H,�H��?�N���D�z�I���A����pB�K�I���)���A�<�D���DH�0fH~�H9�t�fH~�H��<�������,I��H��������M���-L��H�=�@AH�l$H�\$ �zU�H�t$���
H�4$I��H�=M@AH���UU�I��E��txM���*H��H�=�?AL�|$H�l$ H�D$�"U�M��H�޺+H�=;?AH�D$ �U�L�$L��H��H�=�>A��T�L�T$H���������L��M���+H�D$ H�=%>A�T�I�������H��H��L)�����f�H��H��H��I�����������H� tH��H�61�H��������fDH�v ��f���H� tH��1ɺH�6���H�v 1ɺH�6�m���ff.�f���H��8dH�%(H�D$(1�H��uH��D��������@��uH�����t�����t<��
t\�n�H��H����@��t�H��H�H�L$(dH3%(��H��8��G�
XPf/�vf/BPru�H,��Ð��f��f�H��H9�t*H���H��?H)�H��H��H	�H��H�D$�~D$�1��r���H���?H�5��H�81����s��H�D$H��H���Ӟ��H�5��H��H���?H�81��Ȏ��S�
����@��u8@��u	H�����uPE1�1�H����H�=�>A�wR�tSH�f���H*�f�1��*��YM�[�\L�f/����@�����
u��A��f���H*��fDH�����f���H*��ff.�f���UH��S��H���<�����t�H��[]�@�ۿ
Hc��Y}����@��t�u=����tͨuH�����t
�����t�H��H���4�H��H��[H��]����H�H��H��H�x"H�H��H��H�@H�x"H�D�m���H��H�H�H��H��H����@H��H��[]�z��f.���U��SH��H��(dH�%(H�D$1���������Wf�f.�������f(�H�|$�T$�J�L$�T$���r���ك�9��Zf������T$�*���r��T$��<�%iM�Y�f(�fT�f.�v3�H,�f���-MfU��H*�f(����f(�fT��\�fV��^�H�0fH~�H9���fH~�H��<��������H����H���`f(��T<��Lf(�fT�f.��
�
�Lf/�vf/|Lr�H,�H�D?�fD�t����H�t$dH34%(��H��([]���z������~�H�0fH~�H9�t%fH~�H��<�������%H���-���@H�D$dH3%(�<H��(f(�[]�C�DH��H9��}H���H��?H)�H��H��H	�H��H�T$�~T$�����H,�f���%WKfU��H*�f(����fT��\�f(��
YKfV�f/����������fD���H��HO�����DH������ȺVUUU����)Ѓ�9�}�f�f/��y����ɍAH����9������_����H��H��H��H���i���@H�T$dH3%(uH��(��H��[]�����S��H��@��tnH����H�H�H��H9�uH���uH�@H���΅�fDH��H�H��H��H����H��?��H�O�HE�H��H�D?�@@��uJH������������
�������t/���d��u
H��/��H����e�@�����u�H��/�H�f�H�0�H*�fH~�H9���fH~�H��<�������.H��H����H���y�@H��������D������e���H��/t�H��H��?H)�H��H��H	�H��H�D$�~D$@f.�H���/�`���1�H��H����f�H��H�H�������H��H���@H�t$��@�H�t$H���D���f�H��H9��Y����{��H��/�����F�d���@H�H�t$�ۃ�H�t$H��H�����H��H��H��H�������6����ff.���@��u&@��uH�����t
�����
t����/�V���fD�{��ff.���@��u&@��uH�����t
�����
t�ة�����
����fD�M�ff.�AW��AVHc�AUATA��UH���
SH���v��H�É���D$��t	������������uH�����t��������H���?���H��H��I�����H��I��H�����L��L��I���%���H��jtH��L��[]A\A]A^A_�A����E����T$����@����H�������H�E�ƒ���
��H��
����t�H��H��L��[]A\A]A^A_���@A��p���DH�H��H��?H��H�H��H��?H1�H�H)�H�A��t?E��ujH�H�H��H��H��H��H��H��HH�H�@H���L�l?�����H�H��H�H��H��H��H)�H�H9�u�H��H��H���fDH�D�H�H��H��H���D�D$���|@����H�������H�m�����
uuH��
H�����������r����H��[]A\A]A^A_鵀�DL��H���U���H����|����������3���H��?�f.�1�H�����y�����z����z�����UH��S��H���L�����t�H��[]�@�ۿ
Hc��is��H��@��t�uL����t��uH�����t
�����t�H��H���A��H��H�����H��H��[H��]���DH�H�x(H�D�H�H��H��H�@H�x#H�D�^����H��H��H�H��H��H����@H��H��[]�z�f.���U��SH��H��(dH�%(H�D$1���������Wf�f.�������f(�H�|$�T$�@�L$�T$���r���ك�9��Zf������T$�*���h��T$��2�%iC�Y�f(�fT�f.�v3�H,�f��f(��-CfU�f(��H*����fT��X�fV��^�H�0fH~�H9���fH~�H��<��������H����H���`f(��T2��Bf(�fT�f.��
�
�Bf/�vf/|Br�H,�H�D?�fD�j����H�t$dH34%(��H��([]���z������~�H�0fH~�H9�t%fH~�H��<�������%H���-���@H�D$dH3%(�<H��(f(�[]�9�DH��H9��}H���H��?H)�H��H��H	�H��H�T$�~T$�����H,�f��f(��%SAfU��H*����fT��X�f(��
YAfV�f/����������fD���H��HO�����DH������ȺVUUU����)Ѓ�9�}�f�f/��y����ɍAH����9������_����H��H��H��H���i���@H�T$dH3%(uH��(��H��[]����Sw���ATU��SH�����t
�[]A\�ݿ
A��Hc��o��H��A��t�������t�@��uH�����t�E����t�H��H������E��uS����H�������H���
��H��
H��H������t+H���z���H��[]H��A\�+���H��H��H��?H�ʅ�u�H��[]A\�K���H��H�H�x%H�H��H��H�@H�x%H�D����H��H�H��H��H�����[H��]A\��z��/u��ff.�@SH��@��t6H�H��t;��tYH�H��x	[��z��H��H��>~/H��[H��?H���f��u�H��H��u�H���]�[�@��[H�H�D?�@�Kz�H��[H���8�ff.�@��@��u&@��uH�����t
�����
t����;����38�H��H��������H��H�����ff.���1�鵓��D��PXH���H�
��H�5]�H��H��H��HI�H�H�?H�81��6}�fD��AUATI��USH��8dH�%(H�D$(1�H��tBH�H�� ��H�~Hc�A��H9������H����H���E1�1�H�\$H�l$D��H�D$ 4L�D$ H��H���=���H�L$ H��H����k���H�T$1�L��H�t$���H�\$(dH3%(uWH��8[]A\A]�@H��H�����U���f�H�v �t����H��H�t$�sJ�H�t$H��� �6����s���fD��H����r�Hc�H9�uH���H���΁�ff.���H��@��tH��H�Hc�H9�uH�����r���H��艁�f���AWI��AVAUATA��UH��SH��8dH�%(H�D$(1�H�D$�G��H�D$ A�ƅ��SE����A�T$�Hc�I�����H������.������� ��H�\$H���"H�|$�$�A�$L�l$H�É�M������E������H�۸HD�H�\$��������H�D$ H��tH�|$ E1���~��@�H�\$E1�E1�H��tH���|��A�ĉ�������Uf��f.���E���$�~f(��
�*fT�*H��f.���H�t$(dH34%(�qH��8[]A\A]A^A_�f.��;w�E�������oH�\$H�D$ M�/A���H��t
H�|$ ��}�L��A���/�2N�A������f.��=���E��u��^���H��H9�H��tFH��?�H)�H��H��H	�H��H�$�~$���fDH�D$ �lH�\$�{���E��~����fDH�0fH~�H9�t+fH~�H��<��������H��H�������f(��1����A���dE����f(����
l9f/�vf/V9�'�a��a���fD��b�A�����A�T$�Hc�A��I�<�H����A������H�\$�9���fDf(�H�|$ �$H�l$��5�L$ �$���X��H�D$�ك�A9�����f������$�A*��^�A���$�RE�����D$�Y��$�"~��\$�$�
G8f.���f�f(�f/����X%�m�^�f/�r�X��^�H�0fH~�H9��+fH~�H��<�������9H���
H�������H��蘇��D��H��H���J����}���D��D��H���4������
�7f(��a���5���H�D$ ����$�b�$H��H�D$����ȺVUUU����)ЍPH��A9��{����ɍAH����A9��R������f(��$f(��c���$���H,�H�D�5����
�6f(���c�����fH~�H��H��H���	����/����f(��$f(��*a���$���H��H��H�������|����O���@�\%Pl�^�f/��]����\��T���D��H�|$ tH�|$ �$��y�$�1����X��m�A��H�D$ ���D����钩�ff.����UH��S��H��H���f�H��H���H��[]���fD��H������H�Ǩt�I�H���f��_�H���fD��S��w=H�Ӆ�uH��[�f.�H�>@��t�rI��y�H�߉�[���;_����Dy��@��S��w=H�Ӆ�uH��[�f.�H�>@��t�"I��y�H�߉�[����^�����x��@��S��w=H�Ӆ�uH��[�f.�H�>@��t��H��y�H�߉�[�#��^����x��@��S��wHH�Ӆ�u��H��[���@H�>@��t�H�lj�H��[��D�K^�lj�H��[���Ix��f���UH��S��H��H����d�H��H���H��[]�v���fD��S��wHH�Ӆ�u��H��[�D�@H�>@��t��G�lj�H��[�%�D�]�lj�H��[���w��f����Ѓ���t�BfP��t�H��H9�u	����@H�ѸH��?H)�H��H��H	�H��H�D$��~D$��ff.���UH��S��H��H����c�H��H���H��[]�f���fD��UH��S��H��H���c�H��H���H��[]����fD��AWAVI��AUATI��US��H��8dH�%(H�D$(1�H�D$���H�D$ A�Ņ��������S�Hc�I�,�@���H��������E�����Ҧ�H�l$H����H�|$�T$��8�T$L�|$H�ʼn�M���h��E���B��H��HD�H�l$��������pH�L$ H��tH�|$ �u��
��YL��H�L$(dH3%(�FH��8[]A\A]A^A_�@�{n��������H�l$H�D$ M�>��u|H��t
H�|$ �:u�L��A�����xE��E1�H��tH���s��A�Ņ��p�����L�����¸���Z���D���L������H����H�L$ ������H�|$ tH�|$ �L$�t�L$�1�����S���Z���n����S�Hc�I�<�H��u������H�l$�Z���H�D$ �����T$�N\�T$H��H�D$�6�����H�D$ ������xg������SH��dH�%(H�D$1�H�t$�
����t$H��H���~f��H�T$dH3%(u	H��H��[�� g���USH��H��dH�%(H�D$1���tvH�7�?H�ݾ<H�H�8��9��uhH���<H��H�$��7�H��4tS1�H�����@��H����e��H�T$dH3%(H��u'H��[]��H���`O�H����H��?H����jf�H�4$H����,�ff.���H���e�H��H9�uH���H���-X��ff.�f���H��@��tH��H�H��H9�uH���fD�Se���H����W��f���SH��dH�%(H�D$1�H�t$�}����t$H��H���Ne��H�T$dH3%(uH����[��e���USH��H��dH�%(H�D$1���tnH���?H�ݾ<H�H�8�48��u`H���<H��H�$�C6�H��4tK1�H�����@��H���d����H�T$dH3%(u H��[]�H���xc���fDH��?H������d�H�4$H���V+�fD��@��tH���f�H���d�H�@H�x
H�|H��H���H��H��?H�5:�H�81��m���H��8dH�%(H�D$(1�H���8H��H�@��u@������tX@��u
H�������H���MH���D�K���H�H�L$(dH3%(��H��8�f�H��H9���H���H��?H)�H��H��H	�H��H�D$�~D$�8�����t&��
tq���c���H���?H�5��H�81��l��G�
�,f/�vdf/�,rZ�H,��G���f�H���XD��1���1��'���f��M�����H�'�?H�5�H�81��k��	c�H�D$H��H���i{��H�5�H��H�p�?H�81��^k�H���?H�5�H�81��Fk�fD��H��8dH�%(H�D$(1�H���8H��H�@��uY������th@��u)H�����t ���������
�����SH���1H���(�I�H���y���H�L$(dH3%(��H��8�H��H9���H���H��?H)�H��H��H	�H��H�D$�~D$��G�
#�f/���f/+rvf/�*r%�

+f/�r�\��H,�H��?�[���@�H,��M���fD1��@���f��;G��-���H�g�?H�50�H�81���i��Ia�H�D$H��H���y��H�5��H��H���?H�81��i�H��?H�5X�H�81��i�H��?H�5�H�81��ni�ff.���AUA��ATUH��SH���n�=p�����A���=o�����Hc�H��1��f�H��H�E0H�sH� tH�sH��D���H�3�� t.H�{H�sH�H����L�A9�u&H��H��[]A\A]��H��H�{��H���H���?H�MD��H�5O�H�81��h�H���?D��H�5Q�H�81��vh�fD��H��A��I��H��dH�%(H�D$1�H�t$I���B�����t>H�?�?H�8A��tL��H�5
�1�H��h�f.�H�5�1��h�f�E��u+�D$=�wX�D$H�|$���wm�r��%fDA��uqI�:�Rh�H��t]�|$H���!�H�L$dH3%(uWH���@�E�H��u�H���?�T$H�5��H�81��rg�f��<��f��;k�뜺1�D���J���^�D��H��XH�dH�%(H�D$H1��F���"��H��H����A�xuI��Hc�L�
X'M�BA�f�H��I��H��1�I�x�H��Hc�A�A�P�H9�s�E��u(I�rAH)��q�H�|$HdH3<%(uYH��X���G�-I�x���fDH��A��}���f��H�=�����H���?��H�5H�81��Sf���]�ff.���@��u&@��uH�����t
�����
t��X���t��9���S��wFH�Ӹ
��u
H�߉�[�f�H�>@��t�b:�H��[���f.��+P�H��[���p����+j��ff.����7������ATUH��SH��H��@��up��@���LH�����t
�����
tQ��t[H������g�U����
�����������O�MH�f��H*���DH��u:������uH�����t�����
�-�5H��[]A\�@H��H���MZ�I��H������t���@����@���>���f�������H�f�H���H*�H9���H��H��H��?H)�H	�H��H�l$�~L$f��f.�z���^�H��[]A\�@�������@H��H�����H��L��H������H������>���fD������H��H��
�@�H��[H��]A\��O�@H��H��H��[]A\魩�H�f���H*��n���f��f��f.�{$H��[]A\��Z���f�H�f��f���H*����w�����f�H��H��_�H��H���H�f��H*�����ff.����@��u&@��uxH�����to������
t��H���W���H�0fH~�H9�t+fH~�H��<������t/H��H��uH���H�������f�fH~�H��H��H��H���f.�����Q�����UH��SH��H��諷��H��uE�ڃ���tK��u6H�����t-�����t3��tF��uH��H��H��[]�v�H��[]�f�H��H��H��[]鯞���H��H��H��[]�@����ATI��UH��SH�� dH�%(H�D$1�H��H�$�H�|$H�{H�t$H�s�K��H�T$H��H�t$H�=Wj����E�H��4tH�L$dH3%(uH�� []A\�L��H���J���X���H��@��u3@��uH�����t������
te�@��f.�@��u*@��uLH�����tC�����
u9H��H���^�fDH�@H!�H�H�x#H�D?�D��]��&H���[l���\���SH��H���`?�H��H���5���[H���b��ff.����SH��H���0?�H��H������H����a��[H��H�����UH��H��SH���>�H��H��H������H��H��H��[]�[��ff.����H��@��u3@��uH�����t������
te�@��f.�@��u*@��uLH�����tC�����
u9H��H���!�fDH�@H1�H�H�x#H�D?�D�[!��^H���k��s[���H��@��u3@��uH�����t������
te�@��f.�@��u*@��uLH�����tC�����
u9H��H���Vd�fDH�@H	�H�H�x#H�D?�D�+d��|H���[j���Z���SH��H��H��]=�t)H�xH��>~H��x�[�f�H��s�[�H��� �u�H��� u���f.���AUATUSH��8dH�%(H�D$(1��G�����H��L�&����H�L$H�T$L��H�t$�l����H�t$H���H���]��L�d$L�l$L�D$ ���H�=QAH��L��L�l$ �q!�H��tkH��L��L����&�H�|$��y
H������uF�D$���L�d$D������uH�����t�����
�^fDH�L$(dH3%(H����H��8[]A\A]�fDH�nH��L���9\��H��H�����H��H�����H���fDH�l$@���	@����H�L$��<H��H�D$�%�H��4�}1�H�����@��u5�L$H�|$�������H��H������H���]��H������ �����fDL��H���Uh�H�����DH������\����E����
�M���H���?�<H�8�8&���1���H�mH��
H�����S���@L��H���Ͷ�H�����DH�Y�?�<H�8��%�����H��?�����莜��H��H�D$�
����H�t$趜���T$��tH�����H��H������H���#����H���F����ֺ��u>��R�H���?H�5"�H�81��Z�H�t$H�����ff.���H�������H9�v]H�׹@H��H��?)���H��H���?)�1���H��H��H��H9�vfDH�1�H��H��H��H9�r�H���f�f�f���H*�f.��Q�w+�1f/�s�H,�H���f��\��H,�H��?H���H���L$�f��L$��f/�s
�H,�H��H����\��H,�H��?��ff.���SH����8�H�ètH����H��H�����[H�DÐH����B��t}H�H��@u6H�CH��t9H��u?H��tJH���;���H��������?H9�w8H�D[ÐH����H��uǸ[�DH��[�?���H�[�f�H��[�O�H�8�?H�5q�H�81��Y�ff.�@��AU�H�=�ATUSH���1>�H�=h�H��
A�>�H�=̂H��
A�>�H�=ԃH�{
AH�<�?H�0�t-�H��?H�=ƒH�H���?H�0�T-�L�-M�?H���?H�=��I�uH��3-�L�%L�?�H��N��H��H�5��I�$��+�H���?I�<$H�0�
#�I�<$�H��b��H�5��+�H�NI�<$�����H�5���+�I�<$1�H��@��H�5j��+�I�<$1�H��M��H�5���p+�I�<$1�H��@��H�5��W+�I�<$1�H��D��H�5pL�>+�I�<$�H��@��H�5��"+�I�<$�H��`��H�5w�+�I�<$�H�&I��H�5#L��*�I�<$�H�
z��H�5L��*�I�<$�H��z��H�5�K�*�I�<$�H��B��H�5\s�*�I�<$�H��B��H�5�K�z*�I�<$�H��s��H�5R
�^*�I�<$1�H�Qj��H�5�J�E*�I�<$1�H�8j��H�5mK�,*�I�<$1�H�H��H�5��*�I�<$1�H�v?��H�5�y�)�I�<$1�H�m?��H�5����)�I�<$1�H��W��H�5����)�I�<$1�H�KG��H�5l��)�I�<$1�H��]��H�5ZJ�)�I�<$1�H�?��H�5?J�})�I�<$�����H���H�5^J�a)�I�<$�����H��H�5HJ�E)�I�<$�����H��H�58J�))�I�<$�����H���H�5'J�
)�I�<$�����H�m���H�5J��(�I�<$1�H�4J��H�5CJ��(�I�<$1�H��g��H�54J�(�I�4$H�=L~��)�H���?H��H��=�H�;@���0@��u&��������H����@����H�H�-��?H�5���_�H�;�H�����H�5��-�H�;�����H�g�H�5v�(�H�;H�gH�5A�J�H�;1�H�)\��H�5���'�H�;1�H��L��H�5���'�H�;1�H�O��H�5��'�H�;�H���H�5s�'�H�;�H���H�5a�'�H�;�H�8�H�5O�l'�H�;�H�MG��H�5<�Q'�H�;�H��E��H�5&�6'�H�;1�H�
T��H�5�'�H�;1�H�bL��H�5�'�H�;1�H�JL��H�5{���&�H�;1�H�rM��H�5�U��&�H�;�����H���H�5�~�&�H�;1�H��Z��H�5[<�&�H�;1�H��Z��H�5$H�&�H�;1�H��Z��H�5s��s&�H�;1�H�'���H�5�G�[&�H�;�����H���H�5=G�@&�H�;�����H�a��H�5(G�%&�H�;�����H����H�5$G�
&�H�;�����H����H�5�F��%�H�;�H� y��H�5v���%�H�;1�H��K��H�5�F�%�H�;�H�
���H�58�%�H�;�H�2���H�5I]�%�H�;�H�'���H�5���k%�H�;�H�<��H�5��P%�H�;�H�q��H�5oF�5%�H�;�H�����H�5�m�%�H�;�H�۬��H�5F�$�H�;�H��q��H�5���$�H�;�H�E���H�5�E��$�H�;�H���H�5�E�$�H�;�H�?���H�5�E�$�H�L��H�;�����H�5~|�x$�H�;1�H��M��H�5E�`$�H�;1�H��M��H�5�E�H$�H�;�H�)L��H�5oY�-$�H�;�H�L��H�5UY�$�H�;�H�sz��H�5_��#�H�;�H�h{��H�5��#�H�;�H�]���H�5��#�H�;�H�2���H�5��#�H�;1�H�P��H�5@��#�H�;�H���H�5�s#�H�;�H�t�H�5��X#�H�;�H���H�5G{�=#�H�;�����H�N�H�5���"#�H�;�H�c��H�5���#�H�;�H��N��H�5�z��"�H�;1�H� N��H�59R��"�H�;1�H��M��H�5�z�"�H�;�����H�͗��H�5�/�"�H�I�}H�5�z�>]�I�}H�5�z��I�4$H�=�B�#�H��H�E��H�}@����@���J������tH���V@����H�H�5��\Y�H�}�H�5(z�\�H�}H�5z��H�}�H�5
z�\�H�}�kH�5�y�}\�H�}�H�5�y�h\�H�}H�����H�5�y�Q\�H�}�H�5�y�<\�H�}H�›���H�5�y�%\�H�}�iH�5�y�\���}��H�}H�5*}H����[����c�H�}H�5�[H����[�H�}H�5myH����[�����)�H�}H�5H���[��~��	�H�}H�5.yH���v[�H�}1�H�9e��H�5�� �H�}H���H�5��C�H�}�H��>��H�5��z �H�}1�H�����H�5�A�a �H�}�H�Q���H�5��E �H�}�H�5���H�5�W�) �H�}�H�����H�5<��
 �H�}�H�����H�5L���H�}�H��8��H�5
A���H�}�H��8��H�5�@��H�}�H�y���H�5ch��H�}�H�]���H�5�@��H�}�H�!���H�5[@�e�H�}�H�e���H�5�@�I�H�¦?H�}�H�5pTH���*�H�}H�ڹH�5TT��H�}�H���H�5����H�}�H�t��H�5B����H�}�H��y��H�5���H�}�H��x��H�5h���H�}�H�"w��H�5���H�}H���?�H�5��j�H�}1�H�
Z��H�5)��Q�H�}1�H�TR��H�5�?�8�H�}1�H�+���H�5�>��H�}1�H����H�5G?��H�}1�H��V��H�5�u���H�}1�H��Z��H�5m?���H�}1�H��Z��H�5����H�}�����H����H�5�>��H�}�����H�?��H�5�>��H�}�����H�#��H�5v>�g�H�}�����H�g��H�5e>�K�H�}1�H��V��H�5�u�2�H�}1�H�EX��H�5�=��H�}1�H��W��H�5�=��H�}1�H��~��H�5Uu���H�}1�H��}��H�5Gu���H�}1�H��V��H�5 >��H�}H��1�[H��V��H�5>]A\A]��f�H������W���H��tmH���H���H��?H�8�=���DH��������H��t%H�����H���?H�-n�?H�8���fDH��?H�-R�?H�8��f�H�ɦ?H�8�����H�;�����H�-!�?H�}��H���?H�8����H�q�?H�-��?H�8�]�f.�H���?H�-ڥ?H�8�=�f.�H�٤?H�8�Y������������t
�G�@H��f�H9�t�H���H��H��?H)�H	�H��H�|$��~D$��ff.�@��H�0fH~�H9�t@fH~�H��<������tH��H��u�@fH~�H��H��H���fD�����H9���HD��f.���H��H��H����ff.�f���H��������fD����fD����fD����fD��H����H�}�@�@��H�e�@�@��H��H��HE��ff.�����fD��H��H��H����ff.�f���H���@�@��1��f�����fD��1��f���USH��dH�%(H�D$1�H9�t1H��H���f
H��4t0H��uH�T$dH3%(u<H��[]����f�I����H��H�=��@H�,$� 	���<�f���H9�t/H���n�H��uH��H���@�H��H����H���ff.�@��H�����dH�%(H�D$1�I��H�4$H��H�=��@��H��H��H���H�T$dH3%(uH�����;���S�!H���H��dH�%(H�D$1�I��H�4$H��H�=�@�$�H�T$dH3%(u	H��H��[��;�fD��H�����dH�%(H�D$1�I��H�4$H��H�=�@���H��H��H���H�T$dH3%(uH����0;��������U�H���!SH��H��dH�%(H�D$1�I��H�4$H��H�=E�@�P��u	H�����u"H���j�H�L$dH3%(H��uH��[]�H��ƒ���t��t����:����SH����S�H��[�ff.���H��1�H�=�r�z1�1�H�����S1�H��H�=�r�Z1�H��[�D��S1�H��H�=s�:1�H��[�D��H��1�H�=?s�1�1�H�����S1�H��H�=gs�0�H��[�D��S1�H��H�=�s��0�H��[�DAWM��AVM��AUI��ATI��UH��SH��H�|$H����H�mH��H��t*H��A�Յ�����u#H��H��[]A\A]A^A_�f�H��A����L��L���]�H�t$H��H���$��H��� �DH��A�L��|H�t$H�
�
H�t$H�'�B���H��t
H����H�|$�/�H������~X�G�ATL�d�UH��SH��fDH�3H��H�����A�1�H��H���Y?�L9�u�[�]A\�f.���f.�����~X�G�ATL�d�UH��SH��fDH�3H��H������A��H��H����>�L9�u�[�]A\����f.�����~X�G�ATL�d�UH��SH��fDH�3H��H�����A�1�H��H���y>�L9�u�[�]A\�f.���f.���1����D��SA�.L�{H��H��H�
 D
H�q�?H�t$H�t$���H��tH��H���Z3�H��[�@��UA�.L��zH��SH��H��H�
�C
H��?H�t$H�t$�6���H��t!H��H��H���C%�H��H��[]�f�H�|$�,���@��UA�.L�^zSH��H��H�
_C
H���?H�t$H�t$����H��tH��H����H��[]�H�l$�)H�=Yp�l�H��H��H���!��H����fD��UA�L��yH��SH��H��H�
�B
H�͙?H�t$H�t$�F���H��t!H��H��H�����H��H��[]�f�H�|$�,���@��H��H�|$�~��u
�H���H�T$H�t$��B�H���f����H�=��k��ff.���SA�2L�NyH��H��H�
0B
H���?H�t$H�t$�z���H�ƸH��tH���U=�H��[�ff.�@��1����D���gC����SA�2L��xH��H��H�
�A
H�1�?H�t$H�t$���H��tH��H�����H��[�@��UH��A�2L�{xSH��H��H�
\A
H�ݜ?H�t$H�t$���H��tH��H��H����H��[]�@H�|$�n*���ff.����SH���tD�H�5*�H���&�H�5��H����%�H�CH� tH�C�#H��[�H��H�5��A��ff.�@��H��H�|$�n��tH�t$����H���fD�0�H���?�H�|$1�1�L�3���H���k>�H���fD����+��������f����@��u'H�����tH��у���tH�к%HE��f���1�@��uH��H��tH�1��у���t�H�к%HE��fD@��u&H�����t������H��tH���H��H���?H�5�pH�81���:����H9�tH�����H�������H�H��A��A��A��t������L�^M�C@H��t@I9�t5H�wH��L�VI�pL�NM9�tDH�RH��t'I9�t
H�rL9Nu��H�%L�RfDM;Su�)�H9�t�H��H�RL;Rt�H�QH��u���PH���?H�5�kH�81��9�D��H9�t�bI�f�1��ff.�f����H9�tJ�@��u?H�����t6�����u,H���I�H��tH���H�����HD�H���D����H�GH��t;�u1H�����t)�����t�LH�����t0�����u6H�@�t��DH�y�?H98u��fDH���HD����PH�~�?H�5�nH�81���8�D����t�PA��t9A��uSD�ȃ���tcI��tTA��tEI�QH�0�?H�5yjH�81��8�I������u�I��t5M��u�H���?H���H�0�?��H�w�?��H�ƒ?��H�M�?��H�̖?��f.���@��u!H��H��H�����t�����uH���G�H��H���?H�5�iH�81��7�f���H9�t�D1��ff.�f���AWAVAUATUSH��8dH�%(H�D$(1��G�����H�H��A�H�D$ ��tL�n<tT�uH�����t
�����t>H�|$ �4�H�|$ I���6�xH�D$��H���?H�52iH�81��07�H���7
���8H�|$ ���H��t!H��H��I��������)�H��D1�H�L$(dH3%(�>H��8[]A\A]A^A_�H������p���H�l$ H�E�� �BH�EM�$M9���A����{M�~<:u	M9���M��I��L��L�l$f�M9�w�	fDI��M9���A�?:u�I9��LL��H�T$H��H)�H��H�D$�iG�I��H��L)�A�?:H�$�zM����L����
���;H�|$L��H����H�<$���������M9���L��H���k��H��M9������H�|$ ��	H�5�gH��H��?H�81��r5�f��B�H��v���H��������M��L9��\L��H�T$H��H)�H��H�D$�yF�I��H��L)�H�$����������fD�'������M9�t�L��H���s ��3���fD��A������M9�t�L��H��������fDH������
�����������3������fDI�oL9���A�:��I���f���H�T$H�4$H�|$ ���H�Ũu+H�����t#H��ƒ���tH�€�H�}H�Ut��t\H���K8
���#���H�l$ H�='o�~H��H��H������H���L�@H�l$ ��A�~:�^���H���?H��R���H���_4�뚺���L���f7�H�D$ H����+����SH���8
���t
��[�fDH���7
1�[���‰��ff.�f���SH���#����uH���2�1҅��‰�[������uH�FH��t
H��t��AT1�H�==eE1�UH��SH���!�H�3H�C����H��A���.�D��H��H��A��1�[�]A\�ff.�AUH���ATUH��H�=	mS�H�����uB��L�mD�e�iH�-�l�D��H����t�EA8�u�L��H���(+��u�H����[]A\A]��AWAVI��AUI��ATU��SH��H���T$dH�%(H�D$x1���ƒ� �B��	���6��0u���qL�d$(H��L�����D$�&��D$�8"I��uTH�D$H�D$(�H��H�
*�H�=ig�D$H)�H��N�H�OHN�1���L�D$�D$A�H�L$(H9��^�9���;@��+��@��-��L�|$0E1�L��@��0��H9���I�G<H��H9�r��H9�v��H��H��@�z��H9�r�I�w<I�OEE1�I��H�L$�^�H�{L9����ȃ� �WD�I�A���I<.����0��	�����Q�KH��H9�s�H�����Ȅ��1<_u�L9��%��0��	��KH�{�ȃ�0��	�H��H�{L9��o�������߀�Et	��P�\����s�@��+�_@��-�UH����H��H�t$��0�p����0H�r�H�����0t�H��0H�t$�D���f�H������A���"��H�D$xdH3%(��H�Ĉ[]A\A]A^A_�fD�C���<X�����f��H���;���� ���	��vw���������uC��|$00�cL��L��L�D$�]�L�D$A���"�WL���W���@���T����D$����M���z���A�f��/���H���j����E����A�������@�r�K��H��H�����f�@�|$0A���{L�|$0H��I�W@��0�D����0H�BfDH���;@��0t�A�0H������D��������L��L��L�D$�e�L�D$A�8"��H�T$(L9�����H�������H����t"�� t��	�����H�T$(H���B���u�A�����D$1���<X������L���H�D$(�H�
'�L)�H��~;1�L��L�D$H�=Sc�D$��L�D$���D$A��O��������H�
�J뺉�A���^���H�D$(L)�H��~�L���1��D$H�
��H�=�bL�D$��L�D$�D$A����H�5�bL�����H�D$(�L��A�L�V�H�5�bH)�H��N�H�7JLN�H��?H�81��,��$�UH��AWAVA��AUI��ATA��SH��(H�}�H�}�dH�%(H�E�1�H�E���H�E�H��� uFH��L�x��E��t~1�H��L������H��tlE���8M��tA�Ef��(�L�xH�Xf�M��u�H�}���@H�E�dH3%(��H�e�[A\A]A^A_]�fDA�<��H�sH���w`H�CH��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�L$H���H��t"�H�}����H��H��H��L����8�H���I��L��D��D��L������H�}�� ���H�}��E��"/��E������S"�H�D�?H�55]H�81��*�ff.�PX�H�=:]H���y��H��H��?H�8�G�H�����ff.�@H�OH;t7S�H��H�H��u�[�f�H�Y�@H��H�=��@�����[���ff.�f�����fD��H��H��HE��ff.���H��H��HE��ff.���SH��H���.�H�X��u	H�����u
H��[��H��H��H�D$��H�D$H��[�D��ATUSH�z��L�%��?H��I9$��������u|H�%�?H�(H��u5H�CH�uH��蹳�H��H������H�����H��[]A\�fDH��� ��H��H����H�k@��u�H�����t�H��H���
��DH�.H������I9,$�y���H�}�n���H�5a[H�*�?H�81��(�1����H�5Z�����H���u?�t)H��1�1Ҿ�H������H��4t*�t"H���DH�����tϋ����
u��D�t
�H���H�����t�����
�HE�����H���u?�t)H��1�1ҾQH���l��H��4t*�t"H���DH�����tϋ����
u��D�t
�H���H�����t�����
�HE�����H���uMH�����tEH��у���t8��u3H�р�H�H�t#��uH��H�|$��'�H�D$H���fD����SH���3��H��[���f.���SH����tC��uf�؃���t|H��������H�{����H��H�=�\[H��1��s+�H�����u�H��t)H��u�H�͇?DH�8�H�A?���H��?���H�Y�?���H���?��H�Q�?�ff.�@��@����@�����������H���@���H�FH����ATI��UH��SH���7.��tYH�EH�E tH�E�8-�H�5-,u�#�H�5�lH����L���!��H��H�5�[H��H��1��:�[1�]A\�H������m���H��t=H���^���H���?DH�H���S���1��f�H��}?���H���?���H��?��H�a?��H���?����S@����@������������H����@����H�_H���i�H�@H�P@H��t9H9�t/H�BH�HH�CH;HtDH�[H��tH9�t
H�CH9Hu�H��[�fDH�����u�H��t"H��u�H�e�?DH�����H��|?��H���?��H���?��H�f~?��H��?����H��H��H���n�ff.���SH���s��H��t~��tY�����؃�����H������tsH�{���H��H�=^NH��1��6(�H��H�=��[H�����H�����u�H��taH��u�H�}�?�H��[����H��{?H�8�@H�)�?���H��?���H�a}?���H�i�?����AWAVAUATUSH��8dH�%(H�D$(1��G�����H�.I��H�$H�l$ ��tH�FH�$@��t\@��uH�����t�E����tBH�|$ �8�H�|$ I���!�xH�D$��H���?H�56TH�81��4"�@H���"
����H�|$ ���H����H��L��H�$����������I��H�L$(dH3%(L���#H��8[]A\A]A^A_�H���
���o���H�l$ H�E�� �jH�MM�<M9��DA����8I�^<:u	L9��VL��H�$I��H��H�D$I9�w��fDH��I9���;:u�L9���H��H�T$L��L)�H���w2�L��L)��;:H����A���I�������A�E������H����H��H�t$H�$���H�$H�t$����H�|$�7H��L��H����c��I��L9������I9��C���fDL9��&H��H�T$L��L)�H���1�L��H��L)��F�������]���H�t$ L���*��K���H��H�������L���H�|$ H�����H�Ũu4H�����t,H��ƒ���tH�€�H�}H�Ut����DH���$
���I�uH�����
H�=�@�r�����H�����L��H���*����f������fDH��L���U������L�cM9�s�{:uL���D���H�l$ H�=mZ�iH��L��H�����H����H������E���A�~:�����H��?L�(���H�|$ �!�	H�5QH��H�xw?H�81������7�H���"�H��H�l$ �n���H��L���W��2�f���AWAVAUATUSH��(dH�%(H�D$1��G����YH�H�ӽH�D$��tH�n<tU�uH�����t
�����t?H�|$���H�|$I����xH�D$t}H��~?H�5PH�81���DH���
����H�|$��H����H��H��H������j���H�L$dH3%(��H��([]A\A]A^A_�f�H���x���s���L�d$I�$�� �8M�D$O�,M9���A�����M�w<:u	M9��M��M��f�M9�w�	fDI��M9���A�>:u�M9���L��H�T$L��L)�H��H�$�Z.�H��L��L)�A�>:��H���H��H�4$����H�4$����H��H��M9��nH�����x��H��H�Ã�uH�����t������G���H�|$譱	H�5�NH��H�u?H�81��r�f��;����fD����H��I��A�����fDM��M9���L��H�T$L��L)�H��H�$�j-�H��L��L)�����@�����F���fDM�fM9���A�~:��M�����H�$H�|$H���g��I�Ĩu,H�����t$H��ƒ���tH�€�I�|$I�$t��tzL���
���$���L�d$H�=�V�#fL��H��H���E���H����DH���u�������L�d$��A�:����H�|?H��������z��L�����y���H�����H�D$I���y����s�ATUH��SH��H���u	H�����u4�؃����ڃ�������#H��[]A\�f.������t�����
����^H������H��I����A���aA����I������UA�$����
��D����������<�AL$��CH�f��H*��^�H�0fH~�H9�t'fH~�H��<��������H��H��t	f(����H�EH���[]A\�D���E�H��[]A\�@H���-H����H���������fDH�����H�0fH~�H9�t�fH~�H��<������tPH��H���f����\���1��f���f�H�f��H*��f�I�f���I*������H��H��H��H������@���H������������
�������tn�����@����D�������H��f��I9��O���L��I��H��?H)�I	�I��L�d$�~L$�%����ƒ���upH��f�H9�����H���H��H��?H)�H	�H��H�T$�~D$���D������|����L���Y��f��ƒ���t��H����@L��H�D$�+�H�D$f(����H���L$���L$�}����H�=�M�S��H��H��o?H�8�!��H����H�=nM��ff.���H���uH�����u�@H�G�ff.�@��H���uH�����tH�w@��u	H�����u
�f�H��H�|$���H�D$H������H��H�H�w@��u	H�����u�f�H��H�|$��H�D$H������USH��dH�%(H�D$1�H9�t9H��H����4
H��H��4t-1�H�����uH�L$dH3%(u7H��[]���ߐ��I��H��H�=i�@H�,$����H����v
�fD��H��H��t@H���u����u	H�@H��u���D��@��t&@��uH������t^H��th@��trH����H�����u�H��t)H��u�H��v?H�8���DH�!n?���H��s?���H�9s?���H��o?��H�1r?�ff.�@AUATI��US��H��(dH�%(H�D$1�H�=��@uH���@H���oH���@H�D$�&�H�D$�Ņ������D�k�Ic�I�Ĩ��H�������I�������I�H�D$H����H�|$�q��H�|$I����I���hD��M��LD�L�d$H�D$����H�l$����H��tH�|$�M����H�l$H��t:H��L�D$�1�H�5��@���H�|$H����H��H���H�����H�L$dH3%(��H��([]A\A]�f������M�����tGH�|$u_1�1������@�H�=�a��H�@�@H�A�@�t���@1��@D�k�Ic�I�<�H��tJ�R��H�D$���H�|$�N���
���$�H�5�EH��H�is?H�81�����NH��eH��H��PXH���$�H�5IH��H�,s?H�81���f.���ATUSH��H9���@����H�������H��ƒ���������H��@��tb�@��u*�����t}H����@����H��4ts�E��9�upH����#�H��I����#�I9�uXH��[]A\�f�H�����u�H��tq�H��u��DH��������f���H�*j?H�5�DH�81�����i���fD��Y���fD��I���fD��UH��H��SH�����H��H���#�H9øHD�H��[]��AVI��AUA��1�ATE��UH��1�SH��H�����H��4t[]A\A]A^�fDE����A����E��xs��H�:GH�-MGHE�H����H��tyH�
�lH��u#M��H��H�5.GH�i?H�81���DH���H"�M��H��H�5GH����fDH������H����������r���D��?���H�
_l�H�
Bl�@AUA��ATI��UH��H��SH��H���b��A����
*H�H��J�T�H��D��L��H��[]A\A]���@H�߉D$�4�D�D$H����f.�AUI��ATI��UH��SH���h!�L��H���]!�H��M��I��PH�h?H��H��H�5�BH�81��d�@AT��U����SH��H�����EI��A�������H�������t$�	H�=�l?1�H���H�����uH�����t�����
��fD������M��uH�����t�����
��A��������H��H�5�7�s�������uH�����t
�����
tlH��H��H�5�7H�����@H����������������@��u'��
t"���������H��H��[]A\�"5�f���uH��H��[]A\Å�t���@H���[]A\�fDH��H9���H�ڸH��H��?H)�H	�H��H�\$�~D$�fD��u��C��uf(���fT
�f.�r��
A�f/�v
f/+�sH��[]A\���@�H,�H�D�8�������<������<���H��e?H�5�@H�81��
��H�����t$H���������H�����������1�H��H�=R��
��H�D$�~�H�D$���H�55@H�m?�@��SH�������u�[�H���K�H�=$@H��1��j����AUATI��USH��H��H�-_�?dH�%(H�D$1�f�}uBH��A��H��H�����H��I���F��I9�uGH�T$dH3%(H��uLH��[]A\A]�H�|$��H��I��H�u)LD�H�����H�Kd?H�5rBH�81����-�ff.�f���AUATUH��SH��H��H� u
H�H����H�E udD�e1�E��u)H�E H�KD�cH�C H�#���H��[]A\A]��E��L���x�H�uJ��H�����H�����oECH�E H� H�C H��[]A\A]�D�k�H�C�CH�C �I���ff.�@USH��H������H�������H��ƒ���tu��upH%��H��H��H�H���H	�H��n��H��H�����H��H���&��@��uH�����t�E����tH��[]�DH��H��H��[]���H���w��H�5�=H��H�~b?H�81���	�ff.����SH������tH��[�H����f���UH��E1�1�S��
H�=&�@H�����H�����H�����H��tX�xH��tH���w���t3H��H��[]�f�H���(���u�H����H9�u���DH��H��[]�B�	f�����f���ATUSH����u H�����tH��ƒ���t
�����H���w��I��H��t�
H�=�?�N��L��H�����H��H���
�H�5(�H���$��H�5�@H��tHH�����H���H��H��H���}
�H��H�5������H��[]A\ÐH��[]A\�t��@�H�=4&���H��H���@��H�=�>��H��H�����uH�����t
�����tH����H��H�������d���H����������UH��SH�����H��H�����H�@H�P@H��t.H9�t)H�BH�H��H�[H��tH9�t
H�CH9Hu�H��H��[]�ff.���H�=m;1����ff.���PXH�5>H��H��_?H��H�81���ff.�SH�H��uH�V`?H98u/��uH�����tH��ƒ���t��u'H������H��t#[�H�5;H�D_?H�81���H�5+;��H���a������ATI��U��H��SH���x���H��H������L���H��H����H��[]A\���USH��H���>���H�5��@H��H��t'�H������t3H��H��H��[]���D�H�=���W��H��H���@�H�|^?H��H�5�:H�81������SH����u'H�����t�����uH�����H��[H���L����H�����ff.�@ATA��UH��SH�� dH�%(H�D$1��=�H�����H��H��H��觃�H�C�uH�����ugH��H�����L�D$�H�޺1H�=ù@H�l$�	��E��u$H�L$dH3%(H��u`H�� []A\��H�E%H	��f�H��H��H�D$����H�D$H��у����s������j���H��H���v���Z������ff.����@��u6H�����t-������H���u�����f.�H���ff.����SH���#���u.H�����t%�����~H�߉�[����H����t�tH��[�H����ff.�@��USH��H��dH�%(H�D$1���u&H�����t�����3�H���t$@H�T$dH3%(H��uPH��[]�fDH���@�H�����H��H��H�����I��H��AH�=��@H�$H���'�������AUATUSH��H����uOH�����tF�����u<��H��I��A�����H��H�����D��L���H��H����H��H��[]A\A]þH���>��ff.���ATUSH�Ӄ�uEH�����t<�����u2��H��I���p���H��H������L���1�H��H����H��[]A\þH������ff.���H�G����@�����@��u1�������	H���@���H��4����9���AUA��ATI�̹UH��L��SH��H��H����tD��u'�ƒ�����H��t<��H��4ty���A9���H��[]A\A]�H�����u�H�����H��u���f�H������X���H�����H���@����@���fDH���@�덐��f������fD�����fD���fD����fD��2���fD����fD�����fD�����H��L��H��H�����D��AVAUATUS@�����@��u1�������1H���7@���=H��4�C���9���I��I��A��A������L��L��H�����H�ŨtU�@��u2������H����@���H��4���E��A9��[H��]A\A]A^�H�����u�H�����H��u���f.�H������@���H�����H���(����(���fDH��[H��]A\A]A^Ð��v���fD��f���fD����fD�����fD�����fD����fD�����fD����fD����fD����L�����L��H��� u���H�PH��L��H�������H�P������H��������fDH�9^?SH��H�0���H��tH�߹��[H�T����H�����H�5(�H��H�}V?H�81����ff.���@�����@��u1�������	H���@���H��4�+���9�u	����AUA��ATI��1�UH��L��SH��H��H���F�H��t�u,H�������A9��H��[]A\A]�f.���uىƒ�����H��tS<��H��4u���fDH���@H������H���H�����H���0����0���fD��h���fD�����fD�����fD���fD��(���fD�����fD�����fD����fD����H��L��H��H���u�D��AVAUATUS@����@��u1�������IH���O@���UH��4�[���9�u	����I��I��A��1�1�L��H���9��H��H����H��4������@��u(������H���@�����E��A9�t5L������L��H��� ������H�PH��L��H���t�@H��[H��]A\A]A^Ð�[H��]A\A]A^��H���������H��t}�H����������f�H���j�����f���D��W���fD�����fD����fD����fD����fD����fD����fD��������H�P�����H��@��u;@��uH�����t
�����
t"H��H��H�5T#1�����tH���@���uH�����t�����
�HE��А�H���fD��SH����uf��tnA�������QH��H�5�"�_��u;�uH�����t�����
t%DH��H�KH�5�"H�����H��H��[��H�����t������
�{���������1�����H��tH��u	1�H�����PH�XY?H��H��H�5�-H�81����f���S1҉�H�5��?H��dH�%(H�D$1�I���?���tH�$H��tH��u%1�H����H�T$dH3%(��uH��[�����H��X?H�H�5-H�81��8�����AUATUH��S��H��dH�%(H�D$1���Hu{E1�H�]���D���H����H�L$dH3%(��H��[]A\A]�@H�~�g��H��uAD�k�E1�Ic�H�|�����H��H�$H��uX��~���������f.�H�ǨuI����A�ă��U���D�k�Ic�H�|��w��H�$H��t�DH���@��H�<$H��AD��f��������@��H��t1ɺ����f����1ɺ�c��S��H�� H�|$H�|$dH�%(H�D$1�����������tdH�|$��t;������H��������H�L$dH3%(�GH�� [�H�|$@�������u���fDH�|$������a��H�0fH~�H9�t+fH~�H��<��������H��H���m����ݮ��c����H�D$�Q���fDH�T$H��H�=a������T$���+����H�$�b�H�$����f�H���������%���fDH�L$1Ҿ�D$�����L$�����������f�fH~�H��H��H��������D��AWAVAUATI��US��H��8dH�%(H�D$(1�H�D$���H�D$ �Ņ�t4��������H�=�1����H�D$ M�,$H�l$�)D�����~_���vH�D$ M�,$H�l$��uKH���K�H���>�L������H�L$(dH3%(�_H��8[]A\A]A^A_Ðt.H�D$ H��t
H�|$ �j������y��f���t�H�|$ ���X��H������H�=A�H�1�����H�D$ L�+����f�D�s�Ic�I�Ĩ��)�H�������)�������)�H�D$H����H�|$蚺�L�l$H��M���!)����)�D��E1�A������H��HD�H�D$ H�T$����������E����������H�|$ �f�����D�s�Ic�E��I�<ă��M���H����(��+��H�D$�S����l��H�D$ �P��������@��H���H�|$H�|$������uH�D$H���DH�|$�V�H��Ð��������tb@��uH�����t
�����tIH�bR?SH��H�0����H��t!H�߹��[H�}������[�f�H���ff.����USH��H����u
H���������uT�؃����H����H����H����H���y�ƒ����K�@H��[]��H�QJ?H�0H����H�H��f��H*�[]�f������
tv��t��u��C�DH��P?H�0H���MH��腺�H��H������@����H�f���H*ͨ�<H�f��H*��^�f(��M���H��I?H�0H����H��H��[]�O���H��H9�thH�ڸH��H��?H)�H	�H��H�\$�~D$H��[]�D��H�=��@�7�����������f.�H��H9�uH��f�[]�fDH���H��H��?H)�H	�H��H�T$����H�=,�@�ǽ���>�������f.���H�=�@蟽���������f����H������4�����
�Y������tj���!�@����@����H��������U����
�������tz�����M�9���D�ƒ�����H��f�H9��#���H���H��H��?H)�H	�H��H�T$�~D$���f������uKH��f��H9������H��H��H��?H)�H	�H��H�T$�~L$��������t̾H�����fD�ƒ����W����H����H��H�D$����H�D$f(��A���H���L$�����L$�<�������H�=i$���H��H��F?H�8����H���l��H�=!$��ff.���USH��H������H�������������r���
� ����H�����H��H���4��@����@����H������n�U����
������������V�M��`H�f��H*��^�f(��ff.���uc�؃�����H����H���eH����H�*����H���g��ƒ������@H��[]�DH�H��f��H*�[]�D��u��C��@H��H��[]���f�H��H9�t@H�ڸH��H��?H)�H	�H��H�\$�~D$H��[]�DH��H9�uH��f�[]�fDH���H��H��?H)�H	�H��H�T$��H�f���H*��������H������������
�������tn�����@�m�����������H��f��H9��3���H��H��H��?H)�H	�H��H�T$�~L$�	�����ƒ���upH��f�H9������H���H��H��?H)�H	�H��H�T$�~D$����������|����H���j��f.��ƒ���t��H����@H��H�D$�;��H�D$f(��e���H���L$����L$�`����)H�=��c��H��H�C?H�8�1��H������*H�=��Ӿ(H�=O��H��B?H�5�H�81��5��D��SH��裸�H��t[�H�߹��[H����ff.���H���Ī�@��SH��H��dH�%(H�D$1�����H��tH�T$dH3%(u*H��[�H�����H��u�H��H�$���������f.���H�����@��H��t@SH���}��H��t[�D��u4H�����t+H��ƒ���u�� uH�CH��u[���H������H���o��H�5�H��H�vA?H�81�����@��H������@��AWAVAUATUH��SH��XH�L$dH�%(H�D$H1�H�D$H�D$H�D$(H�D$ H�D$8H�D$0���PH���N��I���u=H�����t4L�|$0L�t$I�GL�l$ H�$�E����ti��	������b��L��I��H�5�@L����H��E�H����P���ZYH�L$HdH3%(��H��X[]A\A]A^A_�I�VL��H���A�����t�I�4$H���q���R�I�UL��H���������j���I�4$H���5���&H�$L��H�������B���I�4$H���x�	H��I����t)H��t+@������H������������H���-���H�D$�#��������AWAVAUATUSH���o�H�:@?1�H�9���H�5͒H�;����H�;H�5�������H�;H�AC?�H�5���`��H�;H�&C?�H�5��E��H�;1�H�i??H�5��-��H�;H�G?�H�5}���H�;�H�����H�5��7��H�;�H�����H�5J���H�;�H�}���H�5H���H�=W���L�5�F?H�-�A?H��I�>H�E�Ȱ�L�=�@?�H�5���H�53�I�?���H�F?�H����H�5H�;���H�;�H�����H�5��y��H�;�H�ڞ��H�5��^��H�;�H�����H�5��C��H�;�H�����H�5`�(��H�;�H�����H�5^�
��H�}1�H��D?H�5]贸�H�}H��??�H�5��蘸�H�}�H�(��H�5*�|��H�}�H�����H�5�`��H�}H�%A?�H�5���D��H�}1�H�G:��H�52�+��H�}�H�;���H�5�����H�}1�H�jE?H�5e���H�}1�H�Y���H�5��ݷ�H�}�����H����H�5���H�}1�H�l<?H�5�訷�H�}1�H����H�5S菷�H�}1�H�����H�5A�v��H�}1�H�y���H�5���]��H�}H�2A?�H�5���A��H�}�H����H�5��%��H�}�H���H�5��	��H�}1�H�,=?H�5����H�}1�H�<?H�5��׶�H�}1�H��<?H�5�辶�H�}1�H��A?H�5�襶�H�}1�H�C?H�5�茶�H�}1�H�O<?H�5|�s��H�}1�H��<?H�5+1�Z��H�}1�H��@?H�5[�A��H�}1�H�t@?H�5���(��H�}1�H�����H�5K����H�}H�d�����H�5P���H�}H�HB?�����H�5��׵�H�}H�L�����H�5�軵�H�}H������H�5�蟵�H�}H�t�����H�5�胵�H�}1�H�><?H�5��j��H�}�H�����H�5��N��H�}�H�n���H�5��2��H�}�H����H�5����H�}H��9?�H�5���H�}H�OB?�H�5��޴�L�%G??H�}�H�5�L��迴�H�}L��H�5�觴�H�}1�H�ʝ��H�5�莴�����H�5R���H�=n趝�����H�5:���H�=��螝�����H�5b�H�=�	膝�����H�5Z�H�=���n��H�5r���H�=��V��H�5���H�=��>��H�5R���H�=E�&��I�6H�=���H�-�>?H�E�g��1�H�=��H���V*H��H��@�g��H�}1�H�Z���H�5'�莳�H�}1�H�Q���H�5��u��H�}1�H�H���H�5���\��H�}1�H����H�5���C��H�}1�H�ƛ��H�5���*��H�}1�H�]���H�5M����H�}�H�!���H�5���H�}�H�E���H�5g��ٲ�H�}�H�����H�5q�轲�H�}�H�����H�5�
衲�H��9?H�}�H�5��腲�H�}1�H���H�5�l��H�}���H�}@���m@������������H���	@���9	H�L�-�8?L�%�??H�5n��K��H�=�C�j��I�>H�5�C�vH�;1�H�����H�5�,�ӱ�H�;�H����H�5��踱�H��:?H�;�H�5��蝱�H�;�H�����H�5$�肱�H�;�H�ã��H�5-��g��H�p>?H�;�H�5s��L��H�;�H�����H�5�u�1��H�;�H�"���H�5:����H�'>?H�;�H�5F���H�;1�H���H�5>����H�;H�/�H�5	��M��H�7?H�;1�H�5�走�H�F9?H�;�H�53�蚰�H��=?H�;1�H�5
7肰�H��7?H�;1�H�5��j��H�;�����H�{���H�5s�O��H�;�����H�0���H�5]�4��H�;�����H�����H�5N���H�;�����H�j���H�5?��H�;H�5d����_��H�;1�H���H�5��ׯ�H�;�H�h���H�5�輯�H�=4?H�;�����H�5�衯�H�R6?H�;�����H�5�膯�H�_<?H�;�����H�5��k��H�,:?H�;�����H�5��P��H�A8?H�;�����H�5=��5��H�;�����H�����H�5����H�;�H�����H�5���H�;�����H�`���H�5����H�;�����H�e���H�5��ɮ�H��3?H�;�H�5�����H��QH�;�H�5t蓮�H��4?H�;�����H�5g�x��H�A9?H�;�H�5\�]��H�;�H�^���H�5W�B��H�;�H�Ӛ��H�5O�'��H�;�H�h���H�5G���H�etH�;�����H�5D���H�tH�;�����H�59�֭�H�_tH�;�����H�5/軭�H�;1�H����H�5*裭�I�?1�H�w��H�5f�苭�I�?�����H���H�5Ӏ�p��I�?�����H�!���H�5���U��H�>4?I�?1�H�5��=��I�?H�5s������I�?H�5���_��I�?H�5���P��I�?H�5���A��I�6H�=l����H��5?H��H�耚�I�>H�5K���pI�6H�=e���I�E�Y��H�=5H���E#H��H���@�V��I�}1�H�y���H�5؄�}��I�}H�ȄH�5������I�}�H�V���H�5؝�J��I�}�H�Z���H�5��.��I�}�H�N���H�5���H��2?I�}�H�58���I�}荙�I�}@����@���e�������gH��t@����H�H�5
����H�=L=���I�>H�5==�oI�6H�=%蘬�I�$���H�=�3H���!H��H���@���I�<$1�H�����H�5���3��I�<$H�~�H�5X����I�<$�H�l���H�5�����I�<$�H� ���H�5�����I�<$�H�$���H�5��Ȫ�H��1?I�<$�H�5��謪�I�<$�C��I�<$@���m@����������-H���C@���YH�H�5�}���1�H�=<軦�I�>H��H�5�;[]A\A]A^A_�NnfDH�����u�H��tyH��u��f�H������L���H��tmH���=���I�<$�8���H����������H�������H�������L�%97?L�-b0?I�<$����H��.?H�8�|����H�}�2����H�}�����H�y.?H�8�����H�i.?H�8����H��3?���H��3?���H�q3?��I�}�����L�-�/?I�}��H�Y2?��H�I2?��H�92?�;���@��H���H�=	��W��H��@H�����AWH��AVAUATUSH��8L�6H�|$dH�%(H��$(1�A�� ��I��H�^A��I�H�����E1�1�I9��H�D$ L�=I��H�D$�kf.��x�@��v<v_<=t[<
���D �+I��H��f�I9�~H�B�D =�
E1��D 
H��H���PH��I9�tk�H�r<~v��D =�H�zI��H��L�����A��D4 ���A��D< �DH�t$H�|$H��H�L$�0��1�H�L$I9�u�M��~H�B�D =H���D 
H��HH��$(dH3%(uzH��8[]A\A]A^A_�H�� t2H��	t,�D E1��+H������f�H�|$H�t$ 豼����D =��D4 H�r�H����H�^L�v�S����v��fDAT@��I��UH��SH��dH�%(H�D$1��A�^w~@�t$H�\$�D$L����g	I9�tH��� tJH�xH�W��H���-��H��H��1�H��H�=����H�D$dH3%(uAH��[]A\�DH����H���H�\$�ɾ1�H��
H�����n������AWAVAUATUSH��H�$H��(H�<$H��I��D�D$dH�%(H��$1���u���D$=L�5oE1�L�l$�I�����K�T=H��L)�H�����3I��I��H��H���������0��A��B��C����@����<@��	�Hc�A�46@�r��s�����?@��@��	�H�A��B�A�6�B�I���v���H��L)�H���OI����I��tq�D$��u]H�<$L��L���g��I���'�H��$dH3%(�H��([]A\A]A^A_ÐH�<$L��L��E1�������B�D<
I�����L$���B�L<����0A���A�B�D<I�GB�T<I���L�D$���P������������0��A�B�T<�S�������<��A�	��L$H�B�T<A�B�D<I�GI���L�D$������D����B L�5��D$`A��D$��H�<$L��L��E1��-������#��H��跫�ƒ���t]�@f.����
f/�w0�
f/�s��H���D�Z�H������H���H��f�H9�t�H���H��H��?H)�H	�H��H�T$�~D$�k����l�fDAWA��AVAUATUSH��hH�|$8H�|$8H�t$0dH�%(H�D$X1��{��H�|$0�q��H�T$8H��� ��H��H�Z��H�T$0H�H�D$H��� �LH�JH��H�L$@��H�D$ H�H�$E���kH�D$@I��E��H9$�+fDH�hH�l$@D�(E��A�� ��A�U������D$1�A��#���]�؀�<tJ���>t?��_�D��H�=<课�H����H���H�l$@H�l$@�]�؀�<u�D��H�=��L$�u��L$H�����D$����H�EH�D$@�E�D$�H�D$L)�H9�HN�H��L���ߡ�H��A����E����H�|$ H���,��H�l$@I�@H��H9$����H�l$ H�\$XdH3%(H��� H��h[]A\A]A^A_����!�����H9,$vI<*����0��	��1�A��@��E1�A��%A��S�4H��
E��Jc�H�>��fDE1����fDH�$H9��K����x
�A���H���H���x�
�*���H��H�D$@H9�u�H������DH�JH�BH�L$@���fDH�ZH�B�v���H�\$H��A�H�l$@L)��;���@����H�D$ ���f��L$,��H�t$@�
H���H�D$��H��H��xL�D$�L$,E�E������H�~$?H�5]H�81��e��D���)�1�A�1�f��D$��t	1���>@��H�D$L)�H�H��H��H9��fL�h�E���`H)�H��~x��H�\$H�\$ ���������E��$�E���gH��H��M�����I�E�M��~2I��1�A��L��L���x��A��u�H��M����I�E�M���H�\$H���0E���'H�D$ H��� �vH����H�|$ H�t����H�l$@H���1���fD�1�A�1����@�1�A������f��1�A�1����L��f�H����L;t$�|A�I����x�L��A���H)��u��A����E���"H�|$ H�����H��L��뜿1�A���%���H�D$8H��� �7H;X��H�@L�4H�l$@�(���H�D$L)�H9�HN�I�T�H��I9�����������H���f.��������H��H�4H)�I9�v����H�l$H�D$@L)�H���x�*tH9�HO�1�H�����H��H�xH� �W1�1�H��~-D��uA�6I�������0�H��H9�u�fDA���uE����H�|$ H���`��H�l$@H���6���H�D$L)�H��H9���H�D$L�k�H����I�0H�\$ H���HDH��H��<�������ZH��H��u4A��tGE���#H������I��I����_I�I��H�L9�u�H�T$�D$膀�H��A��u�H���u���1�A���,���H�D$8H� ��H�@L��H)�H9��BI)�H�l$@�*���H��������?L�|$M��M)�I9�LO�H�W	�M����M9���I�>@���@��@��@�� �=���L��L)�H9��FH�7'?H�5`H�81����fDH�T$L)�H��H��H9�HN�H���9I��H���+L�l$ H�l$�;�A����E����
L���]��I9���H��L)�H����M�>�I��M��t�H�5\}@H�|$81���/H����H������� �H��H�P��H��H9�w�fDH��H9��sH�2@��u�H�����t�H��σ���uԀ� H�NtH�NL9�u�H9���f�A������H���^������H�D$L)�H�����H�l$@H���6�����A�1����H�D$L)�H��H9��7H�D$L�k�H��~�I�0H�\$ H���Of.�fH~�H��<�������
H��H��u<A��tDE���	H�����I��I�����fAnI���Z�fH~�L9�u��o}�H��A��u�H���^����H�D$L)�H��H9��SH�D$L�k�H����I�0H�\$ H���KfDfH~�H��<�������hH��H��uFA��tNE���IH�����I��I�����A�f�I��ȉD$�ZD$fH~�L9�u��|�H��A��u�H������H�l$H�D$@L)�H�x�*tH9�HO�H��1��K��H��L�@H� ��H�����1�1�H�5?������H��A�H��H9�������u�A�>I�������տ1�A������H�l$H�D$@L)�H�x�*tH9�HO�H��1����H��L�@H� �vH���U���H�5v?1�1�f.����uA�>I���������A�H��H9�u�����H�D$L)�H�@H��H�pHI�1�H�����H�H��H�x�� �
L;t$��A�E1�A��p�@��?��H�L$H�\$D�d$f.��� I�v��?J��� ��H����H9�~	H��H��L)�L�T$UH��~}f.�H��M��LN�H9����E1�D�J�A��@��E1ɍj�@��@�U1�D�D$UD��D�L$V�T$WE��t1�A�Ѓ�G�F�9�r�L)�L�H���H9��4�<
t<
t
H��H9���<
�.
I��<
���P߀�?��H�t$I��H������A�1����H�l$H�D$@L)�H���x�*tH9�HO�1�H�����H��H�xH� �51�1�H���:���f.���uA�6I�������0�H��H9�u��	���H�t$L)�H9�HO�L��M�,6M9���A�>u���;��H��I9�u�L��L��D�D$�Ɣ�A��D�D$H���qD�D$E���uH�|$ H���	��D�D$H;\$H�l$@H��E��I��MD����1�A�1���H�\$1�H��L)��Q��H��H� �{H�@H��L;t$�y1�H�|$�fD�	�I��H��L9���
A�I�V<=u�H9���
M�NA�FI9�s<
��<
�	
L�J?E�A����z
A���p
L��L9��d
A�FE�D��A����M
A���C
A��I��H��D	��F���	��[�������
�1�A��v�H�D$L)�H�@H�pH��	HI�1�H���3��H��H�pH� �9
�=�t@H��t@��
H����H�\$I9���A�D�I�FH9��A����A�FI�^D�H9\$��A�����A�F<=��M�VH�|$�fD�<���D��A��H����A��A	�D�^�A���A��	�E	�D�F��F�L9��A�D�I�AH9��nA����dA�FI��D�L9��MA����CA�FI��<=�,�,��L9��#����M��I��A�^�L9��=�����=�4���D��B������	�H�~�D���	�V���
H��M���MH�D$L)�H9����H�M?H�5N�H�81��ļ�@H�D$L)�H��H��H9��/H�k�H��1�H���F���I�0H�\$I��H��H�l$ �HH��H��<�������:
L��H��u3A��tFE����H���K��H�C�H���n
H��I�I��L9�u�H�T$�D$�t�H��A��u�H�������H�D$L)�H��H9���H�D$L�k�H�������I�0H�\$ H���KfDfH~�H��<��������H��H��uLA��tTE����H�����I��I����A�f�I���D$�L$�D$H�Z�fH~�L9�u��/t�H��A��u�H������H�D$L)�H��H��H9���H�k�H��1�H�������I�0H�\$I��H��H�l$ �L�H��H��<��������L��H��u8A��tKE���H�����H�C�H����H��I�I��H�T$HL9�u�H�T$�D$�bs�H��A��u�H���Q���H�T$0D��H�=���[���fD�� H�n��?I��H��I��E	�A��H9��?D�nE�e�A��@�,A�m L�f��?I��H��I��A	щ�L9��D�nE�u�A��@��A�U H����?	��-���E1�E1�� ���DL�k�H��1�H������I�f�D�B H��A��H9�����E1�����H���j�I��L9����F�,���f��H9�����	DH�T$H�RH9��9����=����H��D�d$H�L$I��H��H��H�L$��A��H�L$���H������H�l$@H�����@I��H�t?A����E��uH�|$ ����I����DH����@���������f�A�FH�r�M�N��������	I�M���#fDI��A�F��������H����?H	�L9�u�H;<��x	H9��=����|��H��A���:���H�������<���f�H�D$ H�@��f�H�P H�H���H��H��H��H���,���@H��H��H��H�����@H��H��H��H����@H��H��H��H����E���%H)�L�h�H�\$H���>�H�|$���E�����H�D$ H��� ��H�D$ H�@H�\$��H��H�D$�`��H�D$H���H�VH9����FH�����@��t$@���u�����H������;�������L�@�C�L;t$��H�|$f.�A�D�A���u-L9�w���L9��sI��A�D�A���t�L9���E�NI�FF�
A���u+H9�w�HDH9��5H��D�F�
A���t�H9��yD�HL�pF�
L��A�����L9�w-�fDI��E�B�
L�ȃ����L9���<=u�A���tA����f�H�AH� tH�AH)��z���H�h�E���m���H)�H���l������f�E���	H)�L�h�H�\$H���q������DH�x���1��A����H����H9��KH����E����H)�L�h�H�\$H���������E����H)�L�h�H�\$H�����H�|$�f�E���]�H�D$ H��� �H����H�\$�,�H���,�H�x���H�h�E������H)�H���������L�@��H�x��H�p���1��A�����H�@H��I9����L��1�H)�H��L��H�L$I��軤�H�L$H�T$H��H)�H���c����H��u��H�L$H����H�� H���x��H�L$H�H%���H	�H��/�H�����l���M�>�I��M���
A���E����H�|$ H���n���	�H��?H�5M�H�81��A��D��L9���<=��E�NM�^L��F�
A���u~L9�w(�*�I��E�L��F�
A���uZL9��3<=u�A�����A�����D��B����	Ѓ���&�D���H����M��	؈F����@<=t�L9�v�D��A��H��M�s��A��A	������D�F�A	�A	�D�V�D�N�L9��������fDA�~
��L��f.�L�r���H��H��H��H�����@H��H��H��H���:���L�t$�J���H�D$I���=���DL�t$D��M������H�\$�-�L�\$����L��H�AH� �����H�A�~���H��D�d$H�L$�m���H��L)��?�H���Z���I�@�������y�H���_���H����H�����H����L��I�FH9D$��A�~=��D��B��H�V��	�A�����H��I���F���H��H��@��H��H9�u�1��A�H�=Y��<�:H��H��@u��8�H����D�D$��H����H�D$ H�@���1��d���H�5�g@H�|$81��!H��H����H������ ��H��H�j��L�l�I9�w�@H��I9�v~H�M��u�H������t�H��ƃ���u�H��H�q�� tH�qI9�u�H����H����H9���L9��@���H�/?H�5Z�H�81�覯�fD1��f����M��B��A��H��D	ЈF�����H���\����H�j H�B�'���H��H�T$�}�H�T$H����H��?H�5H�H�81��(��H��?H�5c�H�81����A��H�
~�H�w?D��H�5u�H�81����H��?H�5��H�81��Ӯ�A��H�
1���B��H�3?H�5�H�81�誮�M�����H�?H�5��H�81�芮�A��������I��A���������H��?H�5��H�81��V��H�A�}���H��D�d$H�L$H���%���H��L��H�T$�Ȃ�H�T$H�5\e@H��H�D$��j�H�L$�>���H�v?H�5c�H�81����M���E���L���J�H���@�D��H��H�ֺ����ff.����UH��SH��H�����1�H��H�߅���H��[]�����H����H�����H������H������H������H������MH��H�����H��H����?�Ȁ�GH��H����?�Ȁ�GH��H����?�Ȁ�GH���?H���΀��?@�w�Ȁ�G��D@�7���H��H�����H���?H���΀��?@�w�Ȁ�G��@H���?H���΀��@�w���@H��H�����H��H����?�Ȁ�GH���?H���΀��?@�w�Ȁ�G��@H��H�����H��H����?�Ȁ�GH��H����?�Ȁ�GH���?H���΀��?@�w�Ȁ�G��PH��?H�5��H�81��˫�ff.���AWAVAUATUSH��H��xH�T$8H�|$8H�L$dH�%(H�D$h1��W��H�T$8H��� ��H��H�J��H�L$@H�H�|$H�D$��H�D$���H�������H�H�D$�D$������E1�H�D$@�D$$H�D$0M��H9D$��f.�H�t$8H��� ��H��H�N��H�H9T$�JL�`L�d$@�(A�� �V�U����J�D$1�@��#��E�,$D��A��<tN�zA��>tBA��_�t��H�=���L��H����I���L�d$@L�d$@E�,$D��A��<u���H�=���L$(���L$(H����T$����I�D$H�D$@A�$�D$�H��� �~L;s��H�C J��I�NH�|$HL�\$(H�L$H�D$H臐�H�D$HL�\$(H��� ��H��L�h��I��M����A��m��H�|$L��E1��mL���H��L�d$@L�t$fDL��H9D$�Z���H�|$0��
�D$$���b
����H�\$hdH3%(H�D$��H��x[]A\A]A^A_�A��!�����<*�NA��0A�A��	��A��U�e��A��mtA��u�DD$$�D$$A�G�<S��fDH�)���Hc�H�>��A���t
f�1�A��D$��t1Ƀ�>��M������K�H�l$`E�H�D$A��A�őD��I�݉��_fDH����L9��I�EI��Mc�E1�H��J�|�L��A�ٹM��H�|$H��g�H�|$L��H���b��L9t$�I�E�� u�M9u��I�E �1�A��9���1�A��,���I��H�\$(��M��t"L�\$�T$PH�|$H�t$P���L�\$H�-��M��L�l$I��	~"D�
H��L��I��
�Đ�I��	�M��H�|$L��H�5\�觐�L�d$@L������f.�H�NH�V�/���A��M�DD$$�D$$A�G�<S�B���H�T$8��H�=	������L�d$@L���f���L�d$@L��L���S������H�=���L$(�~��E1ۋL$(H���~I��L�d$@A��U������L$$���E��D$$O�$H�l$`L�l$M���y���H��� tof�H����L9��H�CI��J�|�H�|$H��H��H�D$HH��tJH����H���Y��H��L��Hc��[��M9��
���H��� u�L9s��
H�C �f.�H��舜�H���H�T$I9��:����x
�0���H���f�H���x�
����I��H�D$@H9�u�L������D�L$(�?��H�t$@�
L���I��蔋�L$(I��A�E���G���H�"�>H�5�H�81��	��f���H�=����A��L$(H���a���H��� ��	H��I��A��M)��B���H�JH�BH�H�|$H�L$@H�D$�M���1��ȭ�H�D$�m����`�H�|$���=���P���1�A���O�,M�������L�{H�l$PL�d$�^fDH����L9��$L��I��J�|�H�|$H�B��ƒ������@�H��L���D$P�y��M9��(���H��� u�L9s��H�C �O�$3H�l$PL�l$M��K���H����L9���H�CI��J�|�H�|$H����H��L���D$P���M9������H��� u�L9s�TH�C �O�,L�{L�d$H�l$XM��a�~���fDH����L9��L��I��J�|�H�|$H�:�ƒ�����H�PH�T$XH��L���s��M9��"���H��� u�L9s��
H�C �H��� ��L;s��
H�C J�<�L�\$I�nI�����L�\$�HH�|$H��H�D$HI��LN�L�����L�d$@L�������A����K�,L�cM�������1�1�L�l$L�d$�p�H��� ��H����L9��
H�D$I��J�|�H�|$H���1�H��H�D$H�l]�I��H��H��u�A�1��ov�H�I��� ��H��H�p��H�|$HA�A���za����������I��� �}I�wI����J�&��H��H��H)�H��w�I��� �qI�wI�WL��蹊�L9��h���1�1��o�H��� ��L9s��H�C ���O�,3L�{L�d$H�l$XM��b�$���@H����L9���L��I��J�|�H�|$H��|�ƒ����H�PH�H�T$XH��L�����M9�����H��� u�L9s�iH�C �H��� �4L;s�MH�C J��M�n1�L�5�H�D$HH��t3H�|$HL�\$���H�D$HL�\$H��� ��H��L�p��H��L�d$@A�G�A�|$�*��<'�H�����Hc�H�>��H�D$H�H�� �wH�L$H�IL��H)�H����L)�I��H����L�d$@����H�D$H�p��I�S�M�������H�L�l$HJ�l2L�|$0L�l$L�d$PI��H�l$�q@H����L9��,H�CI��J�D�H�D$HH���dH�D$PM���jH�t$HL�����L��H���u��L��L)�H���H��� u�L9s��H�C �O�$H�l$XL�l$M��U���fDH����L9���H�CI��J�|�H�|$H�����H��L��f~�ȉD$X���M9������H��� u�L9s�@H�C �O�$H�l$XL�l$M��Q�n���fDH����L9��H�CI��J�|�H�|$H�i���H��L��f~D$X�s��M9��"���H��� u�L9s��H�C �H�D$H�H�� H���#���H����H��I9��H�|$L)��X��L�d$@L���6�H��� ��L;s�aH�S J��L�\$1�H�L$HH�����H�|$H���H�T$HL�\$H��� �H����H��I9���H�1�����A���f.�I�wI����������DH�PH�p�&���I�wH��������H�|$�z�H�D$PM�������裓�I�����H��1�H9�����H���H��H��?H)�H	�H��H�����H��f�H9��:���H���H��H��?H)�H	�H��H�D$�~D$�����H��1�H9������H���H��H��?H)�H	�H��H������L�d$@L�|$0L���z��ڬ�H�\$��H���{��H�H�D$H%���H
H��w�H�T$0H�5�R@H�|$�iX��F�H��H����I9��]H�S���H����I9��DH�C�w�H��H�������L�[�o���H����I9��H�C���H����I9���H�C�M���I��L9��mL��E1�H���H�D$PH�\$(L�}1�A�H�D$L���*�p���v0�����	�A��t1����I��M9����C�D&��p���wȃ�	����	�A��u�H�t$H�|$��D$P���1��I��L9���L��E1�H���yH�L$PH�\$(L�}1�A�H�L$L����I��M9��?�€ʀC�D&�E�A��u�H�t$H�|$��D$P�o��1���I��L9��}L��E1�H����H�D$PH�\$(L�}1�A�H�D$L���#�x���v)��	�A��t,��I��M9����C�D&��x���wσ�	��	�A��u�H�t$H�|$�T$P��ق�1��I��L9��L��E1�H����H�L$PH�\$(L�}1�A�H�L$L����I��M9��[C�T&���	�A��u�H�t$H�|$��D$P�b��1���M���~�L�hL�`�6�A�-I��~I��?��A�?A��u��M���H�\$(H�\$M9�M��L��A�MN���H��L��M)�M��J��M���L�d$@H�\$(L�t$L����<'�h���H�����Hc�H�>��L�pH�h����H�R���I����H���>H�5V�H�81���I9���H�|$L��L���c��L�d$@A�|$�*��A��Z���H�|$�H�5��M���/��L�d$@�M�I)�I�CI��I��?I�I��9���M�cH�UM��H��I��?H��?M�H�I�H�I)��o���M�cH�UM��H��I��?H��?M�H�I�H�I)��_���I)�I�CI��I��?I�I�����H�VUUUUUUUL��I��?H��H��L)�L�4@�Y���I������H�e�>H�5��H�81��ܖ�I��H�\$(M��@���U���L�\$�у���D$P�%�I��H�\$(M��@���)���L�\$�у�����L�d$@L�t$�$�H���>H�5i�H�81��d��1��H�|$H��L��L�\$���L�\$I)�M��I��	~2A��AH�-O�H�X�HE�H�|$�
H��I��
��I��	�A��AH�|$L��M��H�"�H�5�HE��b�L�d$@��1��5�1����H�;�>H�5��H�81�貕�H�
#�H��>D��H�5�H�81�萕�H��>H�5��H�81��x��H�|$�ބ�H�5D�H��H���>H�81��S��H�T�>H�5�H�81��;��趌�H���>L��H�5
�H�81����H��>H�5��H�81����H�
a��I���@��H��H�5�>H�=���9耓	H�	L@H���@�B��~i��E1�A�L�L������� EE�H��I9�t$���	u�H��H�H������	I9�u�H��GD�GH�W�f.�H�E1���GH�WD�G�f���H��H�G`���H���f.�H�WHL�GP1�H�rL9�s�
��@����{����$t�f��J��-���A߃�]w4�Q�΅ҍBI�����1����H�)�H�5��>�4��\��r��Qи\��	vj��w]��_tX�Q��\��v���a���%\�DH�wH�[�� ���J��@u�H�JI9��O����J�@�\�f��ff.�@H�H�GH�H�O0�� uiH�QH��H�W@��H�H�NH�GP�FD�FH�L�L)�H�H�H�GH���H�WX����F����� tH�G8�� ��f�H�QH�AH�W@�f�H��~1���|�*tIH��H9�}���*t��-t�H��H9�|�1��fDH�PH9�}�|-t H����f.��|�-u�H�D��|�-u�H�D�H��tsSH�H��1�H������,��3wV��H�H��H��u:��t1���t/H�_�H��t!fDH�{�����tH�[H��u�[���f���H�FH�FH�@H�@H�H��tLH�HH��H��tH�QH�NHHH�rH�VH��tH�JH�PH�JH�V(H�P(1��H�PH�r��fDH�21��f.���Hc��H���HPH��t!H�JH��8H��tHcIH��H�RH��u�Ð��SH��H� �ߌ�H�{(�֌�H�{0�͌�H�{8�Č�H���踌�H�{诌�H��裌�H���藌�H��@苌�H������H��8�s��H����g��H���[��H�;[�R��f�S��H�GHH;GPs�8
t>��!�t��[�������H�����!H���1�����[�H���
H�GH��[�ff.�@ATUSH��0dH�%(H�D$(1���!tgI��H��t_H��H�w@H��L��H��A������t$E�KA9�t:A�CD$u0�D$A9Ct&}A��tH���M�H��1�H���;��H�D$(dH3%(u	H��0[]A\�芆�f.�H�F�ATU1�SH��
wqH��tz�GH��%��0D��D7�1�A����2�ȃ�2w9L�%�&��I�4�f��x&H�)H�D8uH��H���y��I�܅�HD�H��[]A\���H��%�f�D������H���A�0���9�|NUSH����9�����H����H��Hc��]�D���H���H��A)�[]Mc�L�ÐMc�L��f�Hc��H����H���@�4���9��}�fD�SH������H���Hc��@]�H���[��S���H��LJ����H���H��t:���[�@��<H��ǃ�<��\�H���[�LJ�<��<�W��H����ff.�UI��A��I��H��AWAVI��AUATSH��HL�	dH�%(H�E�1�A�� ��L�yH����I��A��M���M��@L��H)�H����H��H�E�L9��LH��H�E�M9���E;uIc@I�M9�MB�L9�L�M�LC�L�}�I������n�A
L���a�L�M�I��H��� ��I�GH��~0I�WH�D��8
t"�H�5L��L�M��Zu�L�M�fDI)�M9�H��MF�L��H)؃�H�H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�E�I��H9��f��H)ؾ H��1����	E�A�LH��H9�u�L�H�E�H�J�^H��L9��,H�U��I��D��AUL�M�H�5��L��R1�踀�XZM��uL���a�H�E�dH3%(�H�e�[A\A]A^A_]��H��t�L�yL�IM�M9�vA�y�
�A�HL��M��1�L)�D9��HI�E�H��L��IN�I9�vA�}�
u��{�
t	H��H9�u�I�UH��IN�I9������A�EM��<
�����<
u���A�$<
�����<
�����I��L9�u�L��H)�H���z���A�A9��&L9�LC�L�}�9���H�p�L�M�H�E�H�E�I����������L�����1�1�H��跎�M��L�M�I�������"��L�M��������H�E�M)�u�E��AUI��H�5}�L��ATH��H�U�A)�PH)�1���H�� �Y���f.�Ic@H9������M�,L��H��L)�����H�����C���I�D����f�H��H��L9�����I)�H�Ͼ~L��L�M��G�L�M�H��L����IcPI�M9�MB�I9�LB�L�}�����f.�I�A�L9�vA�y�
��I�����@L��D�]�L�E�L�U�L�M�踇�L�M�L��L��H��L��胀�L�M�L�U�I��L�E�D�]�I9�H��/HFE�H�E������L��D�]�L�E�L�M�L�U��X��H��L��L��H���'��D�]�L�E�L9�H��L�M�L�U�H�}/HFE�H�E��`���I���#���H��H�]�����2�f�AUM��ATA��USH��H�����A��H��u�{tH��H��[]A\A]�H���@p��u�H���Č�=t�踖�L9�u��P�H9�t��$��H��H���\���AVAUATI��H��UH��SH�� dH�%(H�D$1��&�����lj��\�xH��ttH�uH�=��1�蚋�H�D$H�F�>H�H�$�2��A��$�I��$�H�=�-H�D$1��_��H�|$H���a�H���u_�H����d�DH���@o��u�I��$�M��$@M��tGI�$�� u^M�l$M��~41�M�t$�L��H�<��H���{�L9�tI�$�� u�I�D$ �ܐH�D$dH3%(u8H�� []A\A]A^�I��I��A���H��H�=��1�蒊�H�D$���C}���1��� ����9��u5H�GHH�O@L�@�L9�s��� t��	��wH��I9�u�H���C����ff.�@S誄�xtH���>H�5L6H�81��<��@H��H���m��u�H��[�@USH��H��H�o8H�G8H������ �0H�GPH;G@v
�x�
��H�s H����H��SH��H����H���Y���H��@�������!�����ǃ������H�E�� ucH�UH��H�SH��H�S@H�H�SXH�CPH�C0H�k0H�C(1�H��[]�H��u�f.�H�CPH�CH������� ��f.�H�UH�EH�SHH�S@�fD����h���DH���H���9Y�H��@H���ڒ�����������t���ff.�SH��H�GHH;GPt*�� u!H�G8����uH�PH�SH�<
t [�fDH���P�����uH�CH��fDH�߾
[�2�����[�ff.���ATUH��SH���H��t贉�H���H��tH�H�{H��t蒉�L�cH��膉�L��M��u�H���H��tf�H�GH����`��H���H��u�[H��]A\�H���UH��SH��H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H����s�H�KHH+K@H��$�H�D$H�D$ L���H�D$Hc���!�$�D$0H9�uIH�����I��H���H�D$H��8P�lH��H��8XZH�D$dH3%(uH���[]�H��葇��y�ff.��SH��H��tH�H��H������Mt5��,tH��[�H�{t��H�؀�.H�[�H�[��f.�1�H�5o����H�H��H�����USH��H���H�h H�P(1�H��H	�uH��[]�f.�L���H��t\H�MH���H��1�H�5-�H���������9U tH���[]�DH�K0H��8H�u ���DH��L����ff.��AWI��AVI��AUA��ATM��UH��SH��H��L�D$�w�L�D$L��L��D��H��H���Z��Ao$H�C Ic$%�H��H	�H����P���C0H��H��[]A\A]A^A_�DATM��UH��SH��H���tH����9�H��M��H��H��E1�[�d]A\�5���DUSH��H��H����H�H��H������Kt4��M�#��J��H��I��H��H��[E1��J]����fDH�H������,u�H�VI��E1���,���H�HH��H��tH�QH�MHHH�jH�UH����H�JH�PH�JH�U(H�P(H�CH��䀀�JH�H��H��[]�f�H�H������,�C���H�VH�H������,�,���H�JH��H��tH�AH�MHJH�hH�EH��tnH�HH�BH�HH�E(H�B(H�S��H�vH��t���H�CH��H��[]�@I��E1���,���H�C�?���f�H�PH�j����H�BH�h�f�H�H������,uL�H��I��A��A��LtMA��,t�"���f�H�pH��H��tH�NH�rHpH�QH�JH��t;H�qH�HH�qH�R(H�P(�fDH�FL�I��A��A��,u��f�H�HH�Q��fDUI��H��SH��H��H��tH�H������MtH��H��H��E1�[1ɾ1]���f�H�5A�1�H�T$�M���L�L$��fDI��H��u�6fDH�vH��t'H�H������t�H��E1�1ɾa�F���fD1�E1�1ɾa�/���ff.�@UI��E1�H��SH��H��H�������H����9��uH��H��[]�fDH�3H���1�H��H���Dp�H��H��[]�f.�AVAUATI��UH��SH�H��tzH�L�-��A��H����A����]wvIcD�L�>���H�SH����H�kH����H��L�����H�kH�[E��tNH��tIH��H���L�
Y"E1�1�1Ҿ]����H�E[]A\A]A^�H�[H�]E��u�H��t�H��K���H����H�E[]A\A]A^�fDH�[H�]E���q����DH�CH�SH����H�kH���4���H��E��t��D���DH�{H�C�����H�kH������DH�CH�SH���g���H�kH��t�H��L��H�k�w���H�[���fDH�CH�SH��u�H�������H�kH���w���fDH�CH�hH�X����H������H�kH���D���H���<���H�����H�kH���'���fD��AWAVAUATUSH��H��� uvH��L�~��H�o`H��tH9�tmI�H)�I���f�E1�I��I��H��L���
�<�L��L��H�PL)�H��HE�H�H��I�n`H��[]A\A]A^A_�&:�fDL�~H�^�fDH���[]A\A]A^A_�ff.����H���$�@D�GE��~+H�H;2t3H��1���H��H9r�t�ȍHD9�u�1��f���ø�fD����t)�� tT��	t/1���
t;}������1��f�1���
u���f��ɍAH�������fD�����DH�H�H����H�H��H	�H��AVM��AUI��ATI��USH��H�l$0H�����AoH��B H�Ic��H��H	�H�H������MtPH��L��L���b���I��L��I��H�ھ L���y���H��H��tH��tH��H���Q���[H��]A\A]A^�DE1�H��I��L��JL���7���I���f�1Ҿ-E1�1�����H��H��h���@AUH��L��M��ATUH��SH��!H��H���H��L�d$0A��E��M������L��M��H��I���!H�����H��H��tH��tH��H�����H��H��[]A\A]�@H��t3SM��H��I��H��$�t���H��H��tH��H���Q���H��[�@M��1�E1�1Ҿ�D���@H�����H�H��H������u:H�GH��u�/f.�H�PH��tH��H�H��H������t�ɀH��H����fDI��H�?I��H��v����¸��t�I�y1�H��v�L�������������H��H���v��uH���������v���7H�8�� ���1�H�Ժ��i�ff.�@H���GH�H��1�H��tH� tH�R1��:_��H���H����f.�AV�@AUATI��USH��H��tIH��tdH�5�*H��L�-�+I���fDH��L��IE��L���^�H��u�[]A\A]A^�[L��]�A\H�5W+A]A^�|^�@H���u���ff.�AUI��ATI��UH��SH��H���<Tt
~Y<ftY<tu!H�5��H���*=�¸��t(�A�4$H�}1�I��L��H����f�����H��[]A\A]�@<Fu�H�5��H����<��u�H��[]A\A]�fD��SH��H��H���H��H���H���<�����x��!������	Ј�![�ff.�����!ukATI��H��H���UL��SH��H�������Ņ�xjH���th��L��H��w�H��H�ǃ��Tw�H���H��[H��]A\�nA�fD���H���H��H�����1��e��[]A\��Sv�H���H�H����f���AUATI��USH��H��H��~.�|�-H�j�L�j�t/A�|�-L��tDH��H��H��[]A\A]�A�u���fDJ�<.�H�5���u��u���DM�l��H�5��L����t��t��H�5��L����t��u�H��u��H�5��L���t��H��H���^����ATI��H��H��UH��SH���X>��u,H�I;$t��� t�у�	��w�[]A\�fD[1�]A\Ð��w�H��������fDI��E��u4H�6L�1�L)�xtHA���
t?��
uZH��tT�|
t-�@H�����tŃ� t��	��w�H����f.�H��H��H��L���=����H����Ð1��ff.�f�ATI��UH��SL�OL�L�_I��vVH���
M�[I��vGI��vH��L��������uaH��L������M����H����!ʅ�u$M�RM�I��u�E1�I��w�1�I��t3[��]A\ù��t�P�I�Hc�H��H���[]A\ù[]��A\�I�4$[H��]A\�L�@H���WUH��SH��H��H�6H��H������Dt9��&��;w"H�r�Hc�H�>����@�H��H���H��[]��H�[H��t�H�3H��H������H�
N�H�}H��H��1�[H�[�]�c�DH�
1����H�
]����H�
����H�
����H�
����H�
5��H�
$�s���@H�
���c���@H�
��S���@H�{H�W�H��i����H�
G�Hc�H�>��D�H�
b�H�3����SH��L�_L�L�WM��t2M�KH��I��w�F@I�AH��v>I��M�@M��tM�RM��u�1�I��vH��L��������E�H��[�L��M��H����I��wPI����H��L���K�������M��@��H����@��tL��tHI���H�H��H�H���[�fDH��L��H�T$����H�T$�����t��o���H����[�H�6H��H��[�J�1��L����ATI��USH��H���H��HH�GH��v&H�xtH��1�H���z����¸��uH���1�L��H�����������[]A\�ff.�H��dH�%(H�D$1�H�$H��t7H�H������t@|&��!H�VH��HH��H��������u9H�D$dH3%(u6H���H�VH��HH��H��������t�H�$H��t�H�(?��md�ff.�f�AUI��ATE1�UH�-~�SH��H��H����H�H������0wmHcD�H�>��H��H�CH��u�H�[H��u��Hf�M��LD�H��L��[]A\A]�H�[��f�H�SH��twH�H������uhH�zt�H��E1�[L��]A\A]�H�sH��t�H�{t�L���8���H��t�M��H�[LD��s���H��L��E1��b���H��L��[]A\A]�@H�5�TL��1�E1����N�������H���1�H����]�H��L��[]A\A]��ATI��UH��SH��� ��V�H�s@H��L� I��H���L��I�C���L���[]A\�ff.�f�SH��H��H���H�sP�O��~[�H���H��H�5��H�P1��W������[�SH��H��H��H�5y�H�� D���H�@dH�%(H�D$1�H�CXD�$H)�D�D$�D$H�CHH)�H�߉D$1������;$tH�D$dH3%(u!H�� [�fDH�K0H��8H���}������a�fDH������8t$��9uH�H�5�1���fD��H�H�5��1��o�ff.�@H�H������Mt�H�5��1��B�f�AVI��AUI��ATUH��SH��L�d$HM����L��M��tL��H�L$L�$���L�$H�L$M��H��I���td�%L����H�t$@H�Hc��H��H	�H�I�$I�T$H�CH�K H�S(H��tH��H�����H��H��[]A\A]A^��L��)��H�|$@H�Hc��H��H	�H��fDH���t7M��%��H��H�D$@H�Hc��H��H	�H��p����H��L��M��)�E�H�|$@H��H�Hc%�H��H	�H��4���USH���M�QL�\$ H����H�FHc�H9���H�vA�BI�2M����I�@Hc�H9���A�BI�@I�BI�@H��*I�B��I�R@�A�BHI�J ��	�A�BHI���Ao%�AA IcH��H	�I�H��L��[]�A�BI�2M���z���A�B1�I�B�H���m�AUATA�USH��H��t$H��I��H��H��H����a�H��t!H��H���fh�H��D��[]A\A]��H���f�H��L�`�f�L��H�5�H�PL��1�E1���H��1���d�H��1���d�H��D��[]A\A]�ff.�@AWAVAUI��ATUSH��8D���H�|$E����LJ�H���WH�H��H��H������,��L�l$L��E1�L�q��ukM���rH�UH��tDH�H������,u5H�JH����H�H��H������>����H��E1�H�UH��u�H��8L��[]A\A]A^A_�I�6�� �aM�VI�vH���u���1�1�1�1��8fDA��	uJ��D�XAH����A9�|1��Hc�H��A9�~#H9�}E�A�� uÃ���Hc�H��A9��f�H�T$ H�t$������L��H�L$(�A�I�H�L$(H�t$H�T$ �� ��H��I�~��H9��0H)�H�L$ I��H�4L��L�T$�&V�L�T$L��L���U�H�L$ M��������H�|$L��L��H�L$�[�������H�EH�mH�L$H��H�iH�L$��H�EH�EH������,��H��!���@H��M�V�����H�NH���^���H����H�����I�~I�F����H�l$M��H������E1��#����H�D$H�H��H������?������H�D$��>H����L��H�=��1��J�H��M��H�l$����AUATI��UH��SH��H�H��H������>n��=}q����L�nH��I�EH�H������0H��H����H�EH������ubH�EI�mH�CH�E(H�C(H��H��[]A\A]Ã�\��w`H��I��$�H��H�
S�H��H�|l1��U�H��H��[]A\A]�L�M H��E1�1ɾL����H��H�E�}���L�N H��E1�1ɾL����H��I��H�C�����;3�H������,���H�uH�
ۻH��k1�I��$�H����T�����@AWAVAUATUH��SH��XH�T$1�dH�%(H�D$H1�H����H�FI��H��H��?H�H���&�H�D$8H��I�G H�D$(I�G(H�D$ H�D$@H�D$� @L��L��H���J)�L�|$M����M�gM����M�wM����I�FM��H�D$I�$H������=u�M�l$H�T$H��L���Q?��t�H�D$@M�$H���I�L$H���H�0I��1�H���U�H�D$@I�VL�`I�D$H��tH���H��H���d���L�|$I�D$M���E����H�T$8H�5���H���=�H����&�H�T$8�hDH�T$8H�5���H���d=�H���&�H�T$8H����H�rH��H��tH�FI�wHrL�xI�GH��taH�pH�BH�pI�G(H�B(H�D$(H�B H�D$ H�B(L�L$E1�1ɾ/H���<�H�L$HdH3%(u4H��X[]A\A]A^A_�DH�BL�x�fDL���H������W�AVAUI��ATM��UL��SH��H�� dH�%(H�D$1�H����H��H��I��H�V HE�I��I��L��H�$H��H�@(H�D$���IcV I��H�H��%�H	�I�M��t%L��I��M��1ɾL���U��I��M��tH��tH��L���-�H�t$dH34%(L��uHH�� []A\A]A^�DH��tH��tH���f���I��M��u��@I����I��M���w������V�ff.�f�L�J H��tWATI��USH�FH��tL�`H�FH��E1���,H�����I�D$H�SH�BH�E(H�C(H��[]A\�f�E1���,�^��ff.�H����ATI��UH��SH�H��H������Jt;~)��Ktl��MuFH�v����H�CH�@(H�C(H��[]A\�f���,u"[]A\�"���f�H�vH�H������,��I��H��L��[H��E1�]�KA\���@H�VE1���,L�J ���L��H��H�����H�CH�@(H�C(H��䀀�JH�H��[]A\�L�J E1���,�Z��f.��{���H�CH�@(H�C(�0���f.�H�I��H������LuL�FI�H������,t���fDL���(����USH��H��H��tNH��H�H��H������|9��~H��du/H�vH���g����oMH�CH�K HcU%�H��H	�H�H��H��[]�f.��oE��H�VF HcEH��H	�H��H�H��[]�DAV1�I��AUA��ATU�SH���L�ch�!fDH��L���*�H���I9�t%A��t�tܺH�5�	L����E���fD��t[L��]A\A]A^��L���H�51��E�[L��]A\A]A^�SH��H�� dH�%(H�D$1�H�H�D$H��t7H�0�� tH�x����t H�H�t$�H�L$�X&�H�L$H��tH��� t5H�y����tH�;H����k�H�D$dH3%(u,H�� [��������fD������{�����R�ff.�f�U��SH��H��(H�|$H�$dH�%(H�D$1�H��uvH�=�Hdž�H���������G�H��H�=�H��H��覊H�D$HǃH�D$H�D$H��H�T$dH3%(u)H��([]�f�H����H��H����	9�H�����R�ff.�USH��H��H�BH�jH��t^H��I��E1���,����H�UH��tMH�pH��H��tH�NH�rHpH�QH�JH��t@H�qH�HH�qH�R(H�P(H�EH��H��[]�fDH�EH��H��[]�f.�H�HH�Q��fDAUI��ATUH��SH���*�H�����tRH��tMH�EH������u=H�}t6I���H��@L�c��)�H�����tL��L�����H�[H�{u�H��H��[]A\A]�f�AWI��AVI��AUATUSH��(H���H�T$H�H�@H�t$H����D�bE1�D��H���������}�Hc��>`�Ic�M���H��H����E�L$E��~PI�BM�"A�M�H�L�PM���	DI��L�(I��vL��L���X����uIc�A��L�,�L��M9�u�E�a�D9�`Hc�I��H��H�+�S;�H��L�D$H�L$H��(1�[M��]L��A\A]A^A_����E1�H��vD�hC�l%�����1��@A�qH�ߺD��Hc��'�H���@H�xI�L�T$H�0�e�L�T$����f.�AUATA��USH��H��H�GHH�p��s���xW��D��H������L�kH�u�Hc�I�D-H�CH��D��H��[]A\A]�DH�����H��t�H��L��H���
e���������ɐUH��1�SH��H��H���1��D\�?E1�H��L�M �H�����H�p@��u	H�����uH��H��H��H��[]����H��H�D$�;�H�D$���ATI��UH��SH�H��H��H�����怃�?u��cH�H��L��[H��]A\�V���fD��=H�{H���,�H�C�u�H�����t�H��H���;��ATI��UH��H��S�>��H��4��H��I�$H������>taH���H��t4H���E�H��u~H���Hc��H��[]A\H�T��#����0�H���c+�H��H������I�\$��u�H�����t�H��H����:��x���f�[]A\�H�Ǩt)�*�����[H���1�H���]A\�G���?����ff.�@H����ATI��UH��SH�H��H��H������>tp��?u+foE��F HcEH��H	�H�؀�cH�[]A\�fDI��H��E1���,�p��[I��L��]I�����cA\�O���H�~�oB�H���gX�H�C�uH�����uGfoM�K HcEH��H	Ѐ�=H�H��[]A\�f�I��E1�1ɺ��=����f�I��$H���`9��ff.�AVAUI��ATI��UH��SH��H��H�H��H������Bt~�����~
��>tG��?tKI�UH������?����B�EH�݃�>��H��H��[]A\A]A^�f��倀�?H�H��L��H��L��[]A\A]A^�M�DH���1�1��X�?I��E1��H��L������H�p@��u
H�������H��H��L����A��$�H�Å��I�EH������?����B��H�݃�>�7���H�CH�@H�PH���;H�H������>�(H�r�f���?t˃�>�H�sI�UL��������I��$L��H���w0�����f���>u��H�C��?H�L��H��L��H���)�H��H��[]A\A]A^�f�I�U��>��H�����?��M�uI��M�mE1�1ɾ>L�����L��I��M��H�¾,L�����H�KH��H��tH�QH�HHKH�BH�PH���AH�JH�SH�JH�@(H��H�C(���DL��H��L���b�����DI��$H�D$�6�H�D$�6���@I�UH��tFH�CH�@H�HH���)���H�H������>����H�qL������tFI�EfDI�EI�UH��HCH�CH�@H�PI�EH�PH�CH�P�M����I��$H��1��.�I��$L���.�����f�H�sL������t�H�CI��$H��L��I�E�u.�����H�SH�B���AUATA�����U��SH��H����H��������t`H�CHH;CP���� ��H�C8������H�PH�SH�(@��
���� tE���tH�SHH�B�H�CHH;C@w1�H��[]A\A]�z�
u�z�
u�H��H�SH��f.�H���L�kH�
A�}�H��PX���B���A�E�<_�5������,����}���f�H���h����u H�CH�H����
H���K������F���D���>���ff.��AUE1�ATU��SH��H��L�gHL��H9CP���� ��H�C8������H�PH�SH�<
�����t	��i����ru@��ud��w�P���wL�cHE1�L�cXH��D��[]A\A]�fD�P���vك�_t�H�SHH�B�H�CHH;C@v̀z�
uǀz�
u�H��H�SH�A����H�CHH9CP�>���H���@����u�H�CHH�PH�SH�<
�F����
H����������0����^���f.�A	�1��f���H�u�f�H��'J����AVA��AUI��ATI��UH��H��S�p��H�5�d>H����L��H��H����H�CH�C`�c5�D��L��H��H�C H��H�CPH�CHH�C@[]A\A]A^��ff.���ATA��UH��SH��H���W=�D��H��H��H��[]A\��!�f���AUI��ATA��UH��H�5�c>SH��H���J
�H����D��H��H�PH��H��L�h H�@PH�@HH�@@H��[]A\A]�x����AVI��H�5pc>AUI��ATE��UH��SH����	�H�b���D��H��H�PH��H��L�p`L�h H�@PH�@HH�@@[]A\A]A^��D��AVA���AUA��ATA��USH��H�=Q���D��H��H���Y��H��H�5;��5�H��D���:�D��H��1�H�5!��A�H��H��H��H�����[D��]A\A]A^�ff.�f���S1���1����H�����[H�����ff.�f���AU1�I��H��ATA��USH��H�=�H���P�L��H��H������D��H��1�H�5q��@�H��H��H��H��H���[]A\A]���ff.�@��L�N�NH��1�D�FD��)�F @��D�ND���D�@)��H�P�D�����H�WXH��H+W@��V�N�V�ff.�@��H�O@H�WXH���H)ʉPH�WH�0H)ʉp�P�DAVAUA��ATUH��SH��H�� dH�%(H�D$1�����I��H��L���$!�L�sM��E1�1�H��=H�����I�@��u	H�����uv��� u(�ChD��H�T$dH3%(ufH�� []A\A]A^�D�sh�J�H���;��f��A�=��H���V����H��H���.��v�����@��UH��H��S�Ӻ:H����uH����H��H��[]����D�H����L�<��ff.��UH��SH��8dH�%(H�D$(1�H���~H����N;t.9�t6H�5�QH��1����1�H�L$(dH3%(uH��8[]�9�u�F9Ft�H�5�QH��1��������9u�H�M0H��8H��膻���@H�t$H�T$�a�H�T$H�5yQH��H��1�������H��u��o����?�AWAVI��AUA��ATA��USH��H��HH�HdH�%(H�D$81�H�T$����H�sPH)���H�kHH�t$A��H�kXH�V�H�H�kHH���TA�����g��%���=��uE�����L$A�����9�L$H��I�H��t	H9��aI�.H��D���L$�L�H��L�e0�����L$H��H�Ɖ�A��A��jf.���V�H�kHH�t$A��H�kXH�H�kHH���A���H�x�1�H��E1������D��H��A�����H�L$8dH3%(D���H��H[]A\A]A^A_�f.�Lc�H��A��/���M��t�H��L��H��L)��)T���1�H��H��E1��L���H�|$A���H���1�H���/����j���f.�H�l�1�H�������J���f.�H�K@H�SXH�ߋ��H)ʉT$$H�SH�t$ H)ʉt$(H�5?��T$,H�P1��#�����;T$ ��H�K0H��8H�t$ 辸�������$=�@AWA��AVAUATA��UH��SH��H����uBH�SHH;SPs�:{tS1�D��H��H���3�����uH�CHH�CXH��[]A\A]A^A_���\�V����uH���I������� �#H�C8�����H�BH�CHD�*A��
��H�KPH9������ ���r�������}�E1�A9�uA�@�J���vXA���uM��H�5X�LD���}��A9�tGH�=?�I9�LD�E��us�D��H��H���0�����H�CHt��� u�H��A��H�CHH;CPr�H�CXH��H��1�[H���]A\A]A^A_����@H��H�CHH9��%����8���f�D��H�������}���H���Ⱦ������H�SH����H���I9�tM��tL�sX1�H�����H�CHH�CXE��ubH�CHH;CPtg�� u^H�C8����uTH�PH�SH�8
�&���H��H�߾
[]A\A]A^A_�B����
H���5���A��H�CH�Z����}H���\����H������������H�CH�H�CH����H�CHA������ff.�UH��H���SH��H��H�H���H�UH��tHSHH��[]��H��H�k�1����H�CHH�CXH��1�[]�fDAUI��ATA��USH��H��dH�%(H�D$1�H�GHH;GP�o�� �bH�G8�����TH�PH�SH�<
�!�H��y��H���Hc�H�>��@A����H�CHH;CP���� ��H�C8������H�PH�SH�<
����-��H�CHH;CP���� ��H�C8������H�PH�SH�(@��
tV��\����wi�E���wH����������vJ��tE����H�t$dH34%(�H��[]A\A]þ
H�������Ń�\� ���u�@H�i�1�H�����H�CHH�CX1��H���ػ����u�H�CH���H�CHH;CPt�� u
H�C8����tH��裻����u�H�CHH�PH�SH�<
�o��-u�A���y���H�CHH;CP���� ��H�C8������H�PH�SH�(@��
�4��\����?�6���� ����������E�����H���������A�����H����� �LE���[H�w�1��3����%��t���@��f���fD�	�V���fD�
�F���fD�
�6���fD��&���fD� ����fD�����fD����fDH��H���E���H�<$�D����������fD�
H��������fDH�CHH�x�H�{HH9{@s
�x�
��H�����H�$HSH�r���f�H�CHH;CPs	�8u�����D��L��H�߃�����������DH���x������p���H�CH��������W�����������I����x�
�s���H�x�H�{H�f���H���*������"���H�CH�L����
H�����������
H��������������H�CHH;CPs	�8u����D��L��H�߃��E�����~����
H��豭����H��褸���������H�CH����E��t&H���1��1����H�l�1��1����H���1��1�������H����� uA��uH�ރ1��_1������4�H��1��G1�����f�AWAVM��AUI��ATUL��S��H��HL�H�t$L��$��T$dH�%(H�D$81�H����D$#H�D$H�D$0H�D$�B܉D$$�C�H�EA�ǀ�9I�$I�H����H9�� �|$#�DM�}HM;}P�A�� �I�E8������I�GI�EHE�?A��
��A�����~H�t$I���D���A����t	D9��\���D9|$���T$I�EH��tA��#tVA��\���P�����I�$I�H����H9��6���D��L��������2���A��������I9EPv����$@�ƃ�@��@�����{��A�#f�D��L��蕭�����L���H�������M�}H���H����H�EH����H��H�E�j���DI�$D��L���9������@�D$�B���A�� t
A�W����/���H�P�I�UHI;U@��I�$H��tI�H�L$8dH3%(D����H��H[]A\A]A^A_�fD�
L���{���A�ǃ���?���A�������H�RH�pL���p��M�}H�D$#����f�H�H�I�MXI9EP��A�� ��I�E8�����rH�HI�MH�<
��<\��<u��<
�oD��A����D$��D9|$��I�UHH�B�I�EHI;E@�qE1�I;EP��A�� ��I�E8������H�PI�UH�<
���7����M�-����c����x��H�t$L���Z���H�t$0H���������M�}HHc�H�T$(L���ժ��H�T$(H���zL��H��H)���F��g@I�$�1���H�P�A�#I�UHI;U@������x�
������x�
��H��I�EH����L��T$(蔳���T$(�����I�EH�m�����D$�����t"� ��A���������|$
������\L��A�
�s�������fD��uqL��\A�u�Q���D��L���F��������D$������\L���(������A�
L��D�������]�����������\L���������L$�T$L��L�����M�}H�(���I�EHH�P�I�UHI9U@����������C��A����I�EHI;EP�.A�� � I�E8�����H�PI�UH�<
�U��-�8I�UH�L��H�T$(�ʨ��H�T$(�J�f��R��PI�EHI;EP��A�� ��I�E8�����sH�PI�UH�<
����\��I�EH�����0���������
�I�$M�}HH������I�H9������|$#�����I�MXL��H��I�MHH�RH�p�i��M�}H�D$#�����
L��T$(�*�����\�!�����u�T$(�����
���������`���A��������u~�D$tA�� �����A�G����x���D9|$�m�����t	D9������\L����I�EHL�x�M�}HM;}@�1����x�
�'����x�
����L�x�M�}H����@I�EHH�P�I�UHI;U@v
�x�
��D$��L��1�L�����A������z�
������z�
�{���H�B�I�EH�n����D$$��Y�����H�
��Hc�H�>��L�������u4I�EH�d�����t&I�EHH�P�I�UHI;U@v�x�
u�x�
uH��I�EHH�&|1�L��A�������I�EHI�EX����\L���̦���6����\L��D$(趦���D$(��L��訦������A��u�I�UH�L��A��H�T$(����H�T$(�R�f��;���A���k���I�EHI;EP�A�� �
I�E8������H�PI�UH�<
���-�����I�UH�L��A��H�T$(舥��H�T$(�J�f��R��P���I�EHH�T$�H�x�I�}H����H�D$0H������M�}H�pHc�I�H�T$(M�}H�O����
L���_������L���R����������I�EH�t����x�
����H��I�EH����L���"������]���I�EH�����
L�������E���L��������2���I�EH����
L���٢������
L���Ǣ���������G�������O*�ff.�@SH�(zH��1���H�CHH;CPs�8_tH��1Ҿ[�/���� u/H�C8����u%H�PH�SH�8
uɾ
H���;����f�H���(�����u�H�CH��ff.�AWA��AVAUATUSH��H��8dH�%(H�D$(1���� ���ChH���o���A�GՃ���E1�A��0���D$E1�E1�H�-��A�G҃�7wwHcD�H�>��@E����
E��H�CHH;CP�.�� �!H�C8�����H�PH�SHD�8A��
u��
H���4���A��A�G҃�7v��A���tH�SHH�B�H�CHH;C@v
�z�
�E��tPH�CHH�s@H�P����H)�H�SXH)�H�5ʊ�|$�T$D��|$H�߉D$1��)������;T$��Hc��H����E���.D����H���M��Ũ��Hc|$D���L���H����L�A�H�wMc�I�U�E!�1�L��
���L��
I�����L��H���/�<H�Ɖ�H�����H�L$(dH3%(��H��8[]A\A]A^A_�fDH�CHE����E���z
H;CP�@�� �3H�C8�����%H�PH�SHD�(A��
�OA�EՃ��ZA�EЃ�	�
D��H��A��A�蠡��D��H��E1�蒡��H�CHH;CP����@H���8������2���H�CH�����H�CHE������D�l$E	���	H;CP�[�� �NH�C8�����@H�PH�SHD� A��
��A�D$Ѓ�	�`
����.H��A���D$���D��H��E1��Ӡ������fDD��H��E1�躠�����Hc��H�����H���#��H���1Ҿ
������H��H������#���@D��H��A��A��S���D��H���H�������wh���������f�D��H������H�CHH;CP�g�� �ZH�C8�����LH�PH�SHD�8A��
�����
H��艝��A������H���1�����D$�w"��D$�8"I����H�0fH~�H9�t0fH~�H��<��������H���;H����������;H���������H�CHH;CP�$�� �H�C8�����	H�PH�SHD�8A��
��D����߃�X����B�s��D�BA��_�z��O��A�GЃ��dA�Gȃ��bD����߃�E�$	A��.�	A���tH�CHH�P�H�SHH;S@v
�x�
��
H�߾�����H�߉��������f�H�K0H��8H�t$�����=���fD�z�
����H��H�SH����f�H��踦������
H�CH�����H��蘦����H�CH������f.�H���x�������	H�CH�����H���X���������H�CH�����
H���3���A������
H������A���E���H�CH�D$H�K@E1�@H�P�H�SHH9��>����x�
�4����x�
�*���H��E1����H�CHH;CP�m�� �`H�C8�����RH�PH�SH�0@��
�T�F�E1�	�H��_�W�FЃ�	vo�F���vg�F���v_H�SHH�B�H�CHH;C@v
�z�
�QHc��H����9����E���H�CHH�s@E1��D$E1������H��E1��%���H�CHH;CP���� ��H�C8�����uH�PH�SH�0@��
�7����
H��蚙���ƃ�������W���f.�H���;H��H��H���T����H������H�X�1�H�����A�$�D$�����F���������F����������E1�A��_�	A�GЃ�	��A��7��D��H��E1�����H�CHH;CP�Y�� �LH�C8�����>H�PH�SHD�8A��
u��
H��蔘��A�ǃ��u�Hc��9��BH��H���E���[����H���*��H���1Ҿ������H���=������H�CH���@H�CHH;CP���� ��H�C8������H�PH�SH�0@��
�4�N�E1��\E1�_�?�FЃ��+H��E1����H�CHH;CP��� ��H�C8������H�PH�SH�0@��
u��
H���q����ƃ��u�f.�Hc��H����9����E���-����H�����H���1Ҿ�������E�������A�_����@E���cH�{HHc��H�s@H�G�9��gH�CHH9�������
�������
�����H�G�E1��D$E1�H�CH����E���H�SHH�B�H�CHH9C@�����z�
�����z�
�����H��H�SH��H�CHH;CP�w�� �jH�C8�����\H�PH�SH�0@��
���F�E1�	v\H�CHH�P�H�SHH;S@v
�x�
��Hc��H����9���KE��������_����
H��貕���ƃ��t���_�!�FЃ�	w�H��E1��ϗ��H�CHH;CP�9�� �,H�C8�����H�PH�SH�0@��
u��H�K@�O���H���?���������H�CH�r����
H���!����ƃ�������Hc��H����;��tz�H�����H���1Ҿ�����H�CHH;CP���� ��H�C8������H�PH�SHD�81�A��
�CA��_t��u
A�GЃ�	����H������l�H���m���������H�CH���H�SHH�K@E1��D$H�B�H�CHH9��@����z�
�6����z�
�,���H�B��#����
H������A���P���E1�H��}1�H������5�H�s@H�P�H�SHH9�v
�x�
�bA�����H�B�H�CHH9������H�s@H�SH��H��蝞�����5���H�CH���A�_���E���q���A�_����H�CHH��H9�v
��
����?���H���C������3H�CH�3����0H��E1��b����h�
H�������ƃ����Hc��H����;������`����z�
�����H��H�SH���H�������u�H�CH����
H��詒���ƍ@Ѓ������E1���/�������f.�A�_���DA�����H�SHH�K@H�B�H�CHH9��U�������H���@������M���H�CH����H���'����������H�CH�e����x�
�!���H��H�CH����H����Hc��9��H��H��A����a���H�{HH�G�H�CHH;C@�K�����
�A�����
�7���H��H�{H�*�����
t��?���Hc��H�����E������
�x�
�����H�P�H�SH����
H���I������A�������E�������!����x�
���H��H�CH���A������Hc��H����;��������c���E���j�A��H�CHH�s@����H��H�����ff.�SI��H��I��H���� xH��H��1�1Ҿ[�3���H�t$H��zL��L�$�x��L�D$L�$��ff.�f�ATUH��SH��H���H��t*I��1�����u<H���H��[1�]A\�W������H��1�H���H��[]A\�3��L��H��H�!z[]A\����f.�H��twATI��UH��SH��H���v@��t+H���1�H���:���t.[L��H��yH��]A\���H���ة����t�[]A\��H���H��1�[]A\����ff.�@SH���w���H�ƸH��u
[��H��H�� H�}y���1�[�f�AWI��AVI��AUM��ATM��USH��H���
���H�����H����H�H�������H�ZH��u�DH�CH��tH��H�H������t�H��L���2���H�H��H����9�taM��E1�L���L�����IcUH��H�H��%�H	�H�H��H��[]A\A]A^A_���O���1�L������1���I���H�H����9�uI��I�RH��u�1�L��M��E1���L��L�T$�t���IcML�T$H�H��I�B��H	�H�I�D$H�C(�a���H������ff.�AWAVM��AUI��ATM��UH��SH��H���-H�H��������H�~H��u��@H�GH��tH��H�H������t�H��H��H��H�L$����H�L$H����H�H��������L�yM��u�I�GH��tI��I�H������t�L��L��H��H�T$�j���H�T$H��E1�M�O ��,�<���L��H��M��H��I���&�#���Ic$H�H����H	�H�H��[]A\A]A^A_�H��H���(���H��I���E1�1��v���1�1��
����H���AUI��ATI��UH��SH��H�H��H�����DI�UH��tH�I��H������t�L��H�������=uA�EuH��L��L��H��[�]A\A]��L����H�=�%L���������H�=$�?H�����*�H��?I��H��tUM��H��1ɾ4���M��H��E1��H�¾,�ښ��H��M��L��[H��I��]��A\�%A]鵚��1�þH�=�pH�D$�\�L�D$H��H���?�H�=�p��:�H��H�p�?�P���I�uH�
1uL��1�H��#H���������fDAUATUH��SH��H����A��H�I��H��H��H������D��H�������M��H�
�Hc�H�>��f�H�E���H������x������jM��$��H�=M$L�������t0A���YA��u A��$�H��tL��1���
�H�U�怀�:H�UH��H��[]A\A]�L�EM��t�L��诇����t�I�0I��$�H��"1�H�
 aH���
�H�UH��H��������@H�nH��t�H�UH��H��������@H�uH��L�����H�uH��L��H�E��t���H�EH��H��[]A\A]�f�A���A���.���A��$�I��$�H�s1��������f�M��$��H�=�"L�������tA���TA���*���'�I��L��1�I�����4����H��I��H��[L��]E1�A\H���;A]���H�uH��L������H�uH��L��H�E���H�EH�EH��H������X���Y�<����䀀�[H�E�-���A���&A������A��$�I��$�H�gr1��	����H�����H������A��twA������A��$�I��$�H�'r1��	����f.�A��$�H�2rL��1��	����f�A��$�H��qL��1��g	����f�A��$�I��$�H��q1��B	��?���D�䀀�ZH�E�+���f�A��$�I��$�H�Wq1���
����DA��$�I��$�H�/q1��������A��$�H�LqL��1��
�H�U���AUI��L��ATI�ԺUL��SH��H�����I��M��L��H�¾H���ԕ��H��tH��H��[]A\A]�}���DH��1�[]A\A]�ff.�AUI��L��ATI�ԺUL��SH��H���=���I��M��L��H�¾H���d���H��tH��H��[]A\A]�
���DH��1�[]A\A]�ff.�AVAUM��ATI��UH��SH��H����H�H������uvH�NH��u�kf�H�AH��tH��H�H������t�I��H��H������L��L��M��H��E1��&讔��HcMH�H����H	�H�[]A\A]A^�I��H���1�E1��ff.�@��UH��SH��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1��H�=Ko�:��H��$H��H�T$H�L$H��H�L$0H�$�D$�D$0H�L$ ��H�$H� ��H��1�H������H��H�D$1�1�H�$����{hH��H�$����H�$H��1�H�5�n����H�<$1��|�H�{xH�4$�/���H�$H��1�H�5�n���H�<$1��O�H���H�4$���H�$1�H��H�5�n躐��H�{o>H�H9�uH�pp>H�H���� H�D$(dH3%(uH���[]�DH�R�
����
�f�H�H����AWAVAUI��ATUH��SH��H��H�D�`D;b��L�:H�(E��~pA��1�L�5�Z�f�H��I�<�H��tJH�|�xBH��t9H���v@��u
�Ϝ����u!I�<����I����t�L��H��1��z�H�CI9�u�H��[]A\A]A^A_�f�1�H�5Z�r�H�UH��Z���fD�ff.�@USH��@����H��H��@��t4�؃�����H���n�H�5�YH��H��1��
�H��H��[]�H�����t�H��Ѓ���
��~T������u�H�v�}���H�C�u^H�����tVH��H����H���DH��H��H��H��H��[]H��Ã��a�����������FfW���CH���X����H��H9�tiH�ؾH��?H)�H��H��H	�H�0H��H�t$�D$fWo�fH~�fH~�H��<��H9�t!����t)H��uH������@��@H��[]���DfH~�H��H��H�����H���H@H9��+���H��H��?H)�H��H��H	�H��H�D$�D$fW�����f��� H��H�H��[]����@H�v���H�C�uH�����uH�sH������H�C�������M���H��H�������D��ATUH��S��H��dH�%(H�D$1������� tQH��tH�����=���`�H��H������H�L$dH3%(����H��[]A\�fDL�����I9�u�H����=t���H��H������fDH��H�T$���i��H�uH������tA9t$tH���K�=�k����t$H��1����X���D�n�I���fDH��������'��ATUH��SH���a��uH���E��H��u2[��]A\�H��A���
�D��H�5�VH��H�H1�蝋���H����H��H�5$8H��1��|���1�[]��A\���H�����H���@��H���ff.�AVAUATA��UH��SH�����D��H��H��I�����u%H��D��H���	�H��H��t6[H��]A\A]A^�f�H��A�����D��H�5�UH��H�H1��͊����3��A
H���V��L��I����L��H��1�H�5:7藊���D��AUA��H�5�#>ATA��A��UA��D��A��S�Ӄ�����H���F����!D��"��A��D	�A	�	�D��"��D	�@��!H��[]A\A]�f���S��H�5r#>���������"��	�@��"[����ff.������u}��D��UH�$#>�P1�SH���c��H�X H��H�]h>H��� Hǃ��Cp����ǃHǃ8Hǃ�H�����H���H��H��[]�ff.����ATA��UH��H�5�">SH�����1�E����H��HH��H��8H��[]A\Ð��H��H�5Q">������ H��H��=H��?���D��H��H�5!">���H���H����ff.����SH��H�5�!>�l��H��������� ��	ʈ� H��[�@��H��H�5�!>�,��H��H�����SH��H�5�!>���H��H��[���AT1�I��USH��H�71����H��H��H�����I�,$H�EH�] []A\�fD��AUI��ATI��1�USH��H��H�71����H��I��L��H������I�mH��H�EH�] H��[]A\A]���AVI��AUI��ATI��I��UH��SH�7H��t<H��t7H���f�H�[H��t'H9ku�L��H�����H�{ H�Cu)[]A\A]A^�f�1�1�����L��H��H����I�H�CL�k []A\A]A^�D��SH�H��H��t"H;pu�A�H9_tH��H�xH��u�H��[��DH�PH�GH��p�H��[���H��H����ff.�@��ATI��UH��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H���H����H��L��H���$H��$��D$0H�D$H�D$ H�D$�w	�H��� u/H����H�D�8
t0H�D$dH3%(uVH���[]A\�f�H�CH�SH�D��8
u�H��H���_�HDž��f�1�1�����H��H����M����s��AUA��ATI��UH���SH���C���H��H�H�C��L�cH��� uH��H��[]A\A]�DH��D��H��1�H�5�b�9	�H��H��[]A\A]�ff.�ATUSH������H��H�����E1�8H�����A�����1Ҿ.H��H��H���H�E������.H��H�E����H�EH����H�=���H��H���4H�E 1�H�E(H�E0H�EH���H�4H����� ��H�cxH���[]A\�����E1�8H�����A������1Ҿ.H��H��H���H�E�F���1Ҿ.H��H�E�3���H�EH�E H�E(H�E0E����1Ҿ .H������@���f.��%.H�!aH������H�CxH�4H�sx�� �0���H�߹&.H�a���H���[]A\��������d�������E1�8H�����A������1Ҿ.H��H��H���H�E�V���1Ҿ.H��H�E�C���H�E�;���f.�1��o���f�U��.SH��H��H���H�U������.H��H�EH���H�U���H�EH���H�UH��t��.H������H�EH���H�EH��[]�ff.�@SH��� u+H��vH�;H��t��H��[�
��[�fDI��1�H�щ�H�5�_���USH��H��H���H�~H�nt3H�VH����H����0.H��H��_H�H�i���H���H�H��_�9.H���K���H����:.H��H�l_H�H�,���H���H��H����� u"H�kxH����"
�H���H��[]�@�;.H�*_H���|��H�sxH��H�sx�� t��<.H�_H���T���f�USH��H��H���H�nH��t>H�VH���
��.H��H��H���H�PH�RH�PH���`���H���H�H��H�ԔH�AH���.�;���H���H�߾�.H�HH�QH�PH��H���[]����ff.�ATUH��SL���H��I�$�f��+���H���H�H��tH��H9�u�[]A\����L�g���L����fDAVAUATM��UH��SH��� u&H��vQHcsH�;std�V�SL�$�[]A\A]A^ÐL��A��I���b��I��L��D��I��H�5�]1�H����H��w�H��H��[1�]H�5.JA\A]A^�����H�ljsHc��;��HcsH��{���ff.�@AUATUSH��H��tuH��H��H���v@��txL���I�CH��vH�xtxH��L���Պ��A�ą�u~L��H1�H��L��L��跏����u{H���1�H��L���ϑ����ucA�H��D��[]A\A]�@H���������x�����fD1�H��HH��L��脑����t�H��\1�H�������DH���I�ؾB)H��H�\H�H�6���H���H�HH���p���Lc��H��[�D)H��I��?�����K���ff.�f�SH�������H�������H��vHc�H�>��H�!I1��Ҷ��1�[�fD�c���H��[�fDH��H1�誶��1�[�fDH��H1�蒶��1�[�fDH�AH1��z���1�[�fDH��H1��b���1�[�ff.�UH��H���SH��H��H���H���.���I��~.H��H���H��ZH�H���H���H�HH��t$Lc��H��H��H��Z[��.]���H��[]ÐAUI��ATUH��SH��H��tPI��H����H��H����H�
�uHc�H�>��H��Zf�L��H��L�L$�p���L�L$E1�1�1ҾH��H��[]A\A]��}��DH��Z��H��G��H�=Z��H�AZ��H�FZ�|���@H�eZ�l���@H����c�؃����UH�2uHc�H�>��@E1�L��H�ھ�F���DH��L�L$�#�L�L$L��H��I�������E1�L��H�ھ����D�� H�dW����E1�L��H�ھ����f�L���I�CH���H�x���L�L$��~H��H����������H��L��蠆��L�L$����L��H1�H��L��L���|���L�L$��ufH���1�H��L��菍��L�L$��t\fDE1�L��H�ھ����DH��L�L$���H�5LFH��H��1��y��L�L$���E1�L��H�ھ����H��H������L�L$E1�L��H�ھ����1�H��HH��L��L�L$���L�L$���Z���H��H��L�L$���L�L$�@����� ���H�5�EH��1��y��L�L$�D���ff.�@��AVAUATUSH��H)�u[1�]A\A]A^ÐM�q�H��M��H��M�)L�������u�L��H��H����I��H��(Hc�H���Ml��H��tL��L���=�����t�f�I�\$L�����E1�1ɾ=I��H��L���z��I�L$1�L��L��H������H��H��L��H��腝��H��I�D$H��t(H��tH��H��L��赖��I�D$1�[]A\A]A^�DM�L$E1�1�1ҾL���'z��H��t�H��u�H�����AWI��1�AVA��1�AUM��E1�ATUSH��H��(����H�L$1�L�$�D$��� �I����L�$1�1�I�D$I���fH��H���y��L�eI��A��u	I�����uHL�}E��tH�|$u_H�E�����
DH�E�D$L�m���H��(L��[]A\A]A^A_�H��L��H�D$���L�D$L�}E��t��@H�$H�t$1�H��L�D$���L�D$H�E�DATI��I��I�����USH��H�����H���
tI��H��u!L��H��1Ҿg�x�����H��[]A\�L��1�H�L$�!���L�L$I�����AWAVAUATI��H����UH��SH��H��8dH�%(H�D$(1�H�D$ H����H�
8pHc�H�>��fDH����L��=M��E1�1�H��H���x��H�p@��uJH�����tAH��H�D$�p��H�D$�)f�M��A�1�1Ҿ\�w��f�H�t$(dH34%(��H��8[]A\A]A^A_�DM��E1�1�1Ҿ]�tw����f�M��E1�1�1Ҿ^�\w���f.�M��E1�1�1Ҿ_�<w���f.���"�{Hc��M��E1�1ɾ=H��H�T�w���M���D��"��H���H�������H��E1�1�M��H��>H���v��@������H�������H��H��H�D$���H�D$����DH����C������5H��nHc�H�>��@M��E1�1�H��7H���8v�����M��E1�1�H��6H���v���c���H����M��1�H��I���4H����u���;���M��E1�1�H��5H����u������H���L��HL�t$ H�GH���KH�x�@L��H��L��讄�����#H��H��-�����H9���H�D$ H��tH�(?M��E1�1�H��3H���=u������H���(��H�5�@H��H��1���r��1��]���D1�1��O��H���%����H�|$��WH�����H��������D�D$H��H���I��1�H�%?�0�����H�|$�WH�����H�������D�D$H��H���I��1�H�U?�����@���H���L��H��L��螅����t5H9�ttH�D$ H��tH�(?M��E1�1�H��2H���t���e���H���H�BH��vH�xtI��I��A�������vWM��E1�H��1Ҿ(H����s������H������H�5?H��H��1��qq��1����H����r�����)���1����L�:I��v�I�v��������A���A9�~D��A�GL�-hOA9�~.D���L��L��H��A����!A��Mc��l�A�GA9��H���kr���������E1�1�H��M��3H���r��H���H�z0�9���H�B0�0�������H�5�OH��1��p������DAWAVAUATI��UL��SH��(dH�%(H�D$1�H����oF I��H��H��L�v)$I����I�����L�I E1���,�Mr��H��L��L��I�����I��M��L��H�¾%L���#r��foMH�CH�K HcU%�H��H	�H�H��H�L$dH3%(�H��([]A\A]A^A_�f.�fAoH�H�KV Ic%�H��H	�H��H�L���#���I��E1�H��H�¾"L���q����M��1�E1�1Ҿ�lq���j����fAoH�H�K^ Ic%�H��H	�H��H�L�����E1�I��H��H�¾#L���q��I�������D����������H���D���L�p�������ff.��UH��H���SH��H��H���H���{��I��H�߾w.H���H��LH�H��[]����AUH�>I��H�5�MATI��Hc�UH��S��H�����H��H��H�tMH�gMHM�1��d��A�L$A�$1�E�L$E�D$H�5TMH���@��1�H�5�H���/��M��t3��4��/w+H�khHc�H�>��I�EH�5IH��H�P1����H��H��H�5��1�[]A\A]����@I�}���H�5�H��H��1������f�I�EH�5��H��H�P1�����DI�EH�5|HH��H�P1��w���{���f�AU1�ATI��H�5xLUH��SH��H��H���L��L9�w0I)�I��N�lcL�%fUD�L��H��1�H�����L9�u�H��H��H�5s1�[]A\A]���ff.��A�� u�DAU1�I��ATI��H��L��U��H�5" SL��H�����L���H��L�����H��H��1�[H�5]A\A]���ff.��AWAVAUI��1�ATI��1�UH��SH��1�H��(����L�D$E1��D$�T��X�I�����L�
;�1�1�I�FI���EH��L�pPI����m��H�$A��u
I���������!�@M�o(I�_0H���GH������L�I��vIcKH)�H�J1�H��vHcQH)�1�H��H��M����I��1�M����D��� �<A�SA9���D)�A�SI�Hc�H��H��H���H�pH�~�tH��H�@H��H��u�H�CH�x�H�pt$DH�2H�[H��H��tH�CH�x�H�pu�H�1H�[H��H��u�L��H�����M����M����L�L$E1�1�L��3H���l��I�G8L�p�D$���H�$H��([]A\A]A^A_�DI���
��M��t�L�L$E1�1�L��3H���4l��I�G8�fDH��L������O���@E��M��H�
UIH��h,H�5MI1�D�T$L�\$���D�T$L�\$���@L��H���������L��H���������D��H�5V7H��1�L�\$�7��L�\$A�S�Q���f�A�OH��fDAUH��ATUS��H��H��tH�P�ZH��[]A\A]�f.�H�G@L�oX1�E1�L�gH1�1�Hc��I)�I)�����H��h �h(H����D�h$H	�D�`,H�(�fD��AVAUI��ATI��US�:"t)M����L��L�����L)�H��H��[]A\A]A^��RL��E1�1�H�u��tÀ�,t�U��"����'u_�EM�����t�<'t��}'u�M��t�I�f��V�P�UH��H������\����`u
M��t=DM��t�A�H���VH���h���@[L��]A\A]A^�����UH�M��`��1�D��Hc�<)`t�L�uH�M��tM��tI�<L������UL����M������A�H��[]A\A]A^�fD�}\H�u�J������DH�M<'uh1�fD��HcЀ<'t�H��I9��f���M��tI�<L���N��L�L�E1��U�x���H��A�M���_���I�<H��A��A���I���t����ff.��AWAVAUATUSH��HH�|$H�t$H�T$dH�%(H�D$81��A����o�D$ H�H�H��~�P������й�<6�؅�I�)׹����O�9����1�L��L�
��fD����9�t6Hc�A�4H9�u�t�fA�<I�t܃�tWHc˃����D�$��9�u���t4����������������H�
a��Hc�H�>���D$$�����A�H�-/EfDE1�L�5.�=L�l$ ��I��I��D9��HKcD�H�|$1�I���{��L�L9�}Ӹ����H�\$8dH3%(��H��H[]A\A]A^A_�H�>�.�s1�H�-�DH�|$1�L�=��=L�/�DI��H����A�E��tF�U<%u�9�}�su�HcD� L��D�qH��H�|$I���׶�Ic�I��EA�E��u�D1��K���f�A�*H�-�2���fDA�&H�-�2����fDA�.H�-{2���fDA�2H�-#2���L��H�-�C@H�|$H9|D�E�����A�
H�I)�M�Dž�~�H�-}C�\���@H�D$H���������H�H9�H�D$}H��������H�������g������H����W���D��AWAVAUATUSH��H�$H��8fo�dH�%(H��$(1�H��$�I��)�$H�D$XH��$�HDŽ$���� �#H��$L��1�H��H��$	H�D$0L��$��A��H�\$@I��M��H��$@L�d$8fo�$H�D$HA�� H�D$ H�D$(��D$�D$�����l$L��I��)�$	�����D$��fA���H�L$(H�t$ H�	H�T�I9��M��I)�I�I��H��'�0H='�'H��HN�H�H�T$(H�H��H�t�%��H����/O�<$H�t$ H��H��L��H���N�4�M���%��H�t$8L��I��H�H�D$PH���	��H�|$(H�t$@L��L�$�L������H�t$ H�D$HH�L$PH9�tH��H�L$ �o��H�L$ N�|9�N�t3�O�l,� �NH�D$(H�DA�I9����L�d$@H�\$8H�L$ �D$���	�Lc�H�EyB�`�D$=��a�|$����D$���R�|$��HcD$�=a�g�� �rf.��D$�=;6w;H�H����B9�u*H��D�BE���}A�������A���H��nF�`E���kIc��H��H�D$PH�l~�)ˉL$Hc�M�$�I�$H��$����gH���� H�D$`H��H��I�DH��$I�EH��$���[H�|$PA�P�H�ށD�D$hH�5�7�x1�H���$��D$D�D$h����D��$�I�_E1�H��H�=��L�L�|$hL�t$pI��E��L�l$xI��fDA��H�5*@H��1�D��I�����I�E�H��L��H��I��H��A�<G���H�5�qH��1����D9t$u�L�|$hL�t$pL�l$xD��$�A����rH��ZJc�H�>���H�|$ H��L������k����T$H�5�>H��1������ �5����1��D$�� ����H�5?H��1���������� ��
H�]H��$�HDŽ$�4H�EH����
H���	H���HDŽ$�H��$�H�CH� �uH�@HCH�MHH�D$P�C��$�H�D$`�C!A���D$p�� ���D$hH;MP���� ��H�E8������H�AH�EH���
��H�}@H�EHH�OH�D$xH��$�H9��FA���wH���1�L�|$L�|$`L��$�I��l$hL��$�I��L�d$`I���f�I�^PI��L9����C�<
��<
uH��A������
M����H��L��L��L)����I9^P��I�FPI�FHA��������L���9Z�����
I�FHH�PI�VH�8
��I�~@H�T$PI�vPA��L���Dm�����	�M�V0I� �;���M�RI�^PL9��;���A������O���Adž�M���D���I���H��L��L)��B��I��I9^P�=����H�5�nL���!���$���@HcD$�=awH���4�|$���V��$�|$��$�D$u7�L$���KH�L$0H��$�I��H�=�<���D$�����L��L��A��L�d$ L��I���
f.�Hc�H�vs�P=�t��=;6wH�H�
8�f�<A�UI9��A�L��I��H�=r<H��E�oI���D$H���4PL��I���]���� t�H��H��L��D$���D$�f���fDI�E�� H��$H��$����H��H�D$`A�����H�
�aE��Jc�H�>��f�H�i���� �����1�H��H��:H�5���H�T$0��H��H��$����H�5�lH��1��x���S����D$�� �����D$���Q	H��$�I��I��fo�$D�D$�D$����I�A]@I���4����H��gF�`E���8������|$������D�D$E�����t$H�D$0H��$ H�$(H��$�H��L��$ H��$0H��$�H��H�T$H�D$�~�����rH��8����P�H�t$0H��L$蓒���L$�����&��$��$�D$�_����H�
Q�D�AE�������L��I��M�fD��I��H��$��� I�F�D$M�uA�]A�EH��$I�E�����M��D�D$M���D$���H���1�H�H��v�BH�IHc�1�H��vHcA���E1��FH��H)�L�
��I�]�H��1�H)�H��1�H��H��H�D$�.Z��H�T$I��E1�1ɾ3H��I���Z����H�D$h���H��H��H�H�D$pH�D$H�F�9��I�V�H�H����������������H�D$H�D$hH�BI�D$I�T$I��1�1�1�H���2�H��E1�1�SH�L$I��H���L���Aq��AZA[1�I�N�H�T$pI��H��H��$I���<Y��M�F�1�I��H��H���#Y��H��$�I�v�H�����H�����H����`���� fDH��w����H�|$`L��H��$�fo�$H��H)�H�?H��I)�I)�H�qL�qL��H�
�bA�?M�mPH�D$P���C-�H��A���;6wHc�H�=6�f;4O�TH�
%`�A�D$�X�����D$M��I��L��M��I��D$���t8�=awHcT$H��}�4H�L$0H��$�M��H�=;7�(�A�� ��H�-�|M9�t6fDI�EH��L��M��H�=7I��I��H���tE���M9�u�L;t$HtL��L���F��H��$�H;t$XtL���/��H��$(dH3<%(�D$��H��8[]A\A]A^A_�f�H�T$(H��1�H�L$ H�5�4�U��H�L$ ��H�5�41��:�����DL��L��L��������DH��5H�5hH��1����H�D$PH��$H��H��$��<C�/�H�5BgH��1������� ���f��>��D$��������DH�CL�[L�C H�MHHDŽ$�H�D$PH���H�MXH��$�D��%��D$�sA���ƹ��� ����EhD�؃�H�E�����B�D$@H�EH��t
H���H�t$0H���=�����H�5�3H��1���������f.���!D�EhL�t$P�D$hH�MH��L�d$`E��I����D$�� ���D$p���D$x�� f%����f�� D��I�L$XI;L$P��A��$ ��I�D$8������H�AI�D$H�)@��
�n��E���� H�=fHc�H�>��H��$�H�t$0H���-������H����H;MP�@��� �3�H�E8�����%�H�AH�EH���
�~�D�ك��mD��E��%@�D$`��D9����H��L�\$pD�T$h�T$�6G��L�\$p�T$D�T$hA��t	��#�����tH�EHH�P�H�UHH;U@v
�x�
���H��L�CD��D��H��$H��P�L$`L��$L�\$ ����AXAY���L�\$uJ�� tAH�EH�|$`H�EX���'�L�\$A���e�H�� 1�H�����L�\$H�K�H���Hc��D���L���H��$�Hc��H����	L��L��$ H��L��H��L�L$P螪�L�UL�L$P1�E1�H�ھ>H��L�T$�S��L�T$�D$AI�������H����������H��H���f�����1�H�L1H��D�D$H�5G����H�T$0H���H��$���H�50cH��1������ D�D$�Y���H�C�I9��0�{�
��A������&�f�M��M����@I��L9����A�L��L���Y����u���I9�r���fDH�Q��H�D$����@H�T$0H�pH��������
L���B��������L��L�|$L��$�L��$�L�d$`H�EH��H�p�>��H�L$P1���$�H�52�=O��H�EHH�EH�EX��� ���Eh�D$Y�[�����$��$�D$�D$�|�H���D����#�[H��$�H��$�L�|$L�|$PL��$�I��L��$�I��L��$�D�d$p�f�H���H��M��1�E1��
D��H��H��$�AV���A[[�������
���H�EHH;EP���� ��H�E8������H�PH�UH�0@��
�H�H����B��D���E���¶H�EHH;EP���� ��H�E8������H�PH�UH���
�c�H�}@D�D$hH�uPL��H�L$`�q^��������������H�UHH�B�H�EHH;E@����z�
����z�
����H��H�UH����H����J�������H�EH����H����J������H�EH�X��������Dž���L���J�������I�L$H����H��D�L$�tJ�����u���H�MHD�L$�*��� t0�B���v(E��A��@�p�D9��u��L$`���fDH�EHH;EP� ��� ��H�E8������H�PH�UH���
����� t��B���v�E��A��@���A9��s����tH�EHH�P�H�UHH;U@v
�x�
����D$ �W���D�D$hH�L$`H�uPD�L$H�T$P�\��D�L$���o�H�EH��H�p�l;��H�EHH�EH�EX��� ���Eh�D$Y����uh���H���ř��e���H���:���D$������t;��}���Dž������D$��������#H���@��H�MHH;MP�d��� �W�H�E8�����I�H�AH�EH���
� ����
H���~=���������H��H����L��$�L��$�L��$�M�t$PM�t$H�D$E�t$h���A��$!��	�A��$!A�Ɓt	A��t)D��H�Na%=��A��$ @��I�L$H�?����D$hI�L$HE�t$h�(���L��L�t$PL�d$`�Uh��t�|$p�@t1���0������E1��"1҃��
�f���D$RH�EH�EHH��H�EX�����l$L��L�t$PH��L�d$`�H���uh��ƀ����� ���Eh��@������=����~����������H�EHH�P�H�UHH;U@������x�
������x�
�����H��H�EH������l$L��L�t$P�uhL�d$`�ƀ����� ����Eh�>����l$L��L�t$P�EtL�d$`�P��Ut����H�ux�� H��H�ux���ƽH���H���H����q���Eh�ml���l$L��L�d$`H��D�t$`L�t$P�hG��D�D$`��|���n���=���� �i��uh�$H���%���ҁ�����]��Eh����a�H�EHH�P�H�UHH;U@�K�x�
�A�x�
�7�H��H�EH�*�f.��l$L��L�t$PL�d$`H�MHH;MP�r��� �e�H�E8�����W�H�AH�EH�<
�����&����=�����.���������H�UHH�J�H�MHH;M@v
�z�
����L$hD�Eh���� @��A��0��!ʃ�@��0���A��A���D�Ɓ����q���@��@��t���!�D��%��� �
�����#D��H��҃������Eh��l$L��E��L�d$`L�t$PH�]H��� ���H���EhH��H�]XD�D$P�;��H�MHH;MPD�D$P����� ���H�E8�����w�H�AH�EH���
����C߃�]���H�y[Hc�H�>��l$L��L�t$PL�d$`�Et�El9Ep���uh�����@��:u@������D$L�� ����� ���>��Eh�� H�Ex�ElH�4H�ux���t�H�����H�4H������%H�T#H�������l$L��L�t$P�uhL�d$`@�ƀ�º������L$x���f�� �� ����Eh�J�l$L��L�t$P�uhL�d$`@�����H����C���Ã���_�H����	��H��PX���-�H����9��H���H�UHH��$��R���wRH�¾
��PX��_����������\�H�H�EHH;EP������u��������H���7C����H���
o������H���Hc��1��L���H��$�Hc��H�����>��L��$ H��L��H��L�L$P胝�L�UL�L$P1�E1�H�ھ>H��L�T$��E��L�T$I���u
H����������� ����Eh�D$>����l$L��L�t$PL�d$`�� ����uh��#H���%���҃����t��EhH���)B����=����>�������^�H�EHH�P�H�UHH;U@�H��x�
�>��x�
�4�H��H�EH�'���l$L��L�t$P�L�d$`�� ���Eh�� �����L��L�t$PL�d$`H�������D$����l$L��E��L�d$`�EhL�t$P�A�(�%=��H��D�D$P�?A��D�D$P��=���W�����)�H�EHH�P�H�UHH;U@v
�x�
�[�D�L$h�uhA���� ��@��0��D!ʃ��A���P�A��� �V���$H��D�D$h%�D�T$`��D�L$P҃������D�L$PD�T$`D�D$hA���Eh��D�����E�������	��������H���1�H���*����H���1�H������z�f.�I�D$@I�|$HH��H9���I�\$P�H�"[H���PQ������L�5��I�D$PL��I�D$H�_>�����ܪI�D$HH�PI�T$H�<
���I�l$H��=�֧H�E�I�D$HI;D$@v��}�
u��}�
u�H��I�l$H똉l$L��E��L�d$`L�t$PH�MHH;MP�7��� �*�H�E8������H�AH�EH�9�|$P@��
�?��|$P<���uh�ƀ������ ����|$P=�Eh����|$P<����|$P��#�H�EHH�P�H�UHH;U@�
��x�
���x�
���H��H�EH���@�l$L��L�d$`H��D�t$`L�t$P�z>��D�D$`��:���� @��Eh�ë@������P��������#�����"�����'�`�E1��'1Ҿ�
蒃�H�E���� ����Eh�D$Q�<��D$M�t$PI�l$H��L��H)�A��$!��	�A��$!H����H��H����.��H��H���X�L��H��H)��.��H����H)�H��DŽ$�H�X�H�����HDŽ$�1�L��$�L��$�L��$�I���M��t8����;wH���H��H���1�� �(��	����H�����<;w�H��H��H��H������ ����	���ߨH��H��u����fDA�t$h���Au��1�%=�øA��$ ���A�D$hL���d<����.��������I�T$HI�L$@H�r�I�t$HH9�v
�z�
�����0��	�m�I�D$HH�P�H9��ʪ�X��.L��聍���Ã�0��	���H��1�L���v���A��$ �a�I�L$HA�D$hA��I�L$X���l$L��L�t$PH�ux�� L�d$`H��H�ux���$�H���H���H����ϴ��Eh�ml���l$L��L�t$P�uhL�d$`�El�ƀ�����A�d���%=�R�@��0t��|$h%	ǸJDD$�D$�� ������EhH�ExH�4H�ux�����H�����H�4H������%H��H���`�����L��L�d$`D�t$`H�]HH��L�t$P�}:��H��H���D$PH�]X�0���@H���,0���|$P@D�D$`�D$6�b�D��%��� ������uh�"H��҃���T��|$P��Eht)�� �|�H�EHH�P�H�UHH;U@v
�x�
���H��$ H��H���~��|$6�3�H�5�H��1��:�����;�$ ���H�EH�!��� ����Eh����l$L��E��L�d$`�EhL�t$PH�]H�A�ɩ%=���H��D�D$P�49��D�D$P��=A�����D�T$h�uhA���� A��@��0��D��t	E�������t
A��s����� �����Q!H��D�D$p%�D�\$h��D�T$`�D�L$P�������D�L$PD�T$`D�\$hD�D$p�EhA����1�H�EHH�P�H�UHH;U@v
�x�
�I�A����D�����E�����A�A���������H���1�H�������H���1�H������U�D�l$L��L�t$PH�}@L�d$`H�GH9EH��H���.���Eh�L$�D$P������H��C��c������ͽH�EHH;EP���� ���H�E8������H�PH�UH���
����� �ͨ�L$�D$��!�����?����|$=����|$�tH�EHH�P�H�UHH;U@v
�x�
�'��D$7Hc��H����D�EhA��t�|$ptA��0tH�EHH�UPH9�s	�8:��������A��q�q��D$x���,�� �� ����EhH���Hc��H����d��H�U�|$7H����D$P�����|$3���H��H����K��������� �J��Eh�D$3�^�fD�l$L��L�t$PH��L�d$`��5���Ã�=�p��� ����uh��$H���%���҃�����Eh������H�EHH�P�H�UHH;U@����x�
����x�
���H��H�EH���f�L���h5����
���l$L�t$PL��L�d$`�� ����P����z������H�EHH�P�H�UHH;U@�j��x�
�`��x�
�V�H��H�EH�I�f��l$L��L�t$PH��L�d$`��4����*�����=�/�����[�H�UHH�J�H�MHH;M@v
�z�
����L$hD�Eh���� ��A��0@��!΃�@���A��A�̣D�Ɓ��������@��@��t�����D��%��� �����9#D��H��҃����O��Eh�W��l$L��L�t$PH�ux�� L�d$`H��H�ux�����H���H���H����J���Eh�ml���l$L��L�t$P�L�d$`�� ����Eh����l$L��L�d$`H��D�t$`L�t$P�g3���uhD�D$`��ƀ�̢��� �B��Eh��@�r�����z�H�EHH�P�H�UHH;U@�d��x�
�Z��x�
�P�H��H�EH�C��l$L��L�t$P�EhL�d$`�A�?������+��T$h��tC�0��������}��t#�El9Ept���H���H�i1��R��H�Ex�� �ElH�4H�ux���q�H�����H�4H�������Eh�z���l$L��L�d$`H��D�t$`L�t$P�2���uhD�D$`��ƀ������ �=��Eh��@�$�������H�EHH�P�H�UHH;U@�	���x�
�����x�
����H��H�EH�����L��L�t$PL�d$`�Uh��t�|$p�@t1���0����Hc�E1��'1ҿ
��v��D$RH�EH�EHH��H�EX�}��L��L�t$PL�d$`�D$�c��M��L��M��I��H�t$0H�xL��M���k��L�t$ �D$���A��$ �����H�5f	L��1��1��I�L$HE�t$hI�L$X����D$hL���0���P��/�y�Hc�H�>��I�T$H1�I;T$Ps1ɀ:.����&��8��K�H�J�I�L$HI;L$@���z�
���z�
���H��E�t$hI�T$HH�����I�D$HH�H�I�L$HI;L$@����x�
����x�
���H��E�t$hI�D$HH������L��L�t$PL�d$`H�E(H��t
�� uH�E0H�M0H��� ���H�QH��H�U@��H�H�H�H�EPH�MHH9�v
�x�
���H�EHH�EX�� ����� ���Y��Eh�D$
���A�u�A�U�H��L��$ A�M�A�E���$ I�v�$(L��I���$$��$,�a]��M��E1��H�¾,H���&2��H��H��H���HS���� H��$������ �D$����� HDŽ$������� H�MH�D$H�MX������ H�MHH�MX���I�H�H������/��H�CH��tH�x�٫H�=~i?�O�L��$E1�1�H��H�ai?M��=�L1��M��E1��1Ҿ,H��H���/1��H��H��H���QR���� H��$����H�MHH����
�y�H�L$H��PX��uH�L$�A�<_t	���)��$H���W#���ى�H���`���������� ����EhH���Hc��H����4��H�U�D$5H����H�MHH;MP���� ���H�E8�������H�AH�EH�<
������ �?�H�EHH�P�H�UHH;U@v
�x�
����$H���"����H���"��H���Hc��H���H�]胯��D$5H�����A��u�L��$ H��L��L�L$P���L�UL�L$P1�Hc�E1��9H��L�T$�/��L�T$�D$@I��}���$H����!���-H����!��H�MHH;MP����� ���H�E8�������H�AH�EH���
�h��� ��H�EHH��H��H�EHH;E@v
�z�
���H�P�H�UHH;U@�����x�
�����x�
����H��H�EH�����$H��D�D$�5!��D�D$��D���2�� u=H�E8����u3H�PH�UH�<
�P��PЃ�	�����H���� ��H�EHH;EPu�H���)�����6�H�EH뷀� �I�v�H��$H���1���� H��$����M�e�E1�1�1�M��]I�]�H����-��H��tL��1�H��H��蚓���!H��H��H��L��$菘���� H��$������ I�N�I�H�HH��$H��$�H�H H��$H�H(���I�F�I�>H�ptH��tH���C��I�F�I�H�BH��$H��$�H�B H��$H�B(�� �2����!�r��� ����� I�I�M�H��$�H�H ���I�v�I�F�H��tI�V�L��$H��H���&���H��$�I�v�H�����H�����H���4���� ���I�v�I�^�I�M�H��t�H���6���H��H��A�H��H��	L��$�R,��H��$�I�v�H���<�H���'�H���4���� �0��I�v�I�F�H��tI�V�L��$H��H�����H��$�I�v�H����H���ٽH����3���� ����I�v�I�^�I�M�H��t�H���l���H��H��A�H��H��
L��$�+��H��$�I�v�H�����H���|�H���R3���� �f���� H���HDž�H��$��@��I�v�I�]�I�M�H��t
1�H���Ր��H�ƺ!L��$H��H���ʕ���� H��$������!����� ����H�EHH�MPH9����H�P���
�����#����� �h���	���\���!tH��$H�5XH���N?��L���M�����E�L$E������� �T��I�v�I�^�1�H��L��$L���GQ��I�V�I��H��H���SM���
*��IcME�E�H�pH��$�H��I�~�H���H	�H�Ic�H��t"H�H��H�������b�IcЃ��V�H�H��H���H	�H��ͥ��A�V���!����	��� ��!����� ��!��1�H��f�� ��҃��	Љ�$��R����� �F��H�EHH�MPH9��ӗH�P���#�×��
����� �����	�����H����H��L��$H�5����� ����H���H���_�H�CH�ڹH��L��$H�5�H����N��H��膯��� ���H���H��������I�F�I�N�1�E1�L��$�H��H����=(���� H��$��9����!����� � ���� �����1��Eh���I�I�v�H���I���� H��$�����H���H��������I�F�I�N��E1�I�V�L��$H��H����'��H��$�I�v�H���A�H���,�H���[/���� �o���� H���HDž�H��$��I����!�h��� �0����!�	��� �����!���� �����!�&��� ������!����� ����H��$I�v�1�H��H����M��I�V�E1�H��H���TI���&��IcME�E�H�pH��$�H��I�~�H���H	�H�Ic�H��t"H�H��H���������IcЃ��v�H�H��H���H	�H��I���A�V���!����	��� ��!����� I�H��$�����I�61�H��$H���W���H��H��H��$��8���� ����� I�F�H��$����I�E1���,L��$H���p%���� H��$��l���� f%�f=�8��� �K��I�v�I�H��tI�V�L��$H��H������H��$�I�v�H���$�H����H����,���� ���M�1�L��$1ɾH����$���� H��$�����I�V�I�E1��IH��$H��I���$��1�I��1�I���H���}$���� H��$��y���� ����!1�H���A�F�!�M����� �A��I�V�I�v�H��$H���'���� H��$����H����H��L��$H�5������ ����H����H��L��$H�5��s���� ���H���1�H��L��$H�5���G���� ���H���H���\�H�3�H�=2������>�L��$�H��H��M��H�5S����H�CH�u@L��H��$ H��$8H�,H��$ �����$4�9��� ������!����� ������!�՝�� �����!���� �����!�
��� ���1�L��$E1�1ɾH���b"���� H��$��^��I�V�M�1ɾL��$H���0"���� H��$��,��I�V�I�E1��IH��$H��I���!��I�V�I��1�I���H����!���� H��$�����I�L��$E1�1ɾH���!���� H��$����I�61�H��$H������H��H��H��$��T4���� �x���� HDŽ$������`��H��$I�v�1�H��H���WH��I�V�H��I��H���UE1��!��IcMH�pH��$�H��I�~�H���H	�H�I�v�H��tH�H��H������������H���(��H�����A�F��� ���������	���!�� ��	Ȉ�!����� �����!1�H���A�F���!�k����� �_���� �Ѓʀ���� ����$��;��I�F�H��u�H�PH��tH��H�H������t�H��$ H��H��$ H��$�5$��I�V�H��H��H��$ ��F��I�N�I�V�I��I���OH�����IcUH�HH��$�H��H�%�H	�H�H��$ H��tH�H��H�������D����;�H��荛��A�F��� ����	�I�F舕 H���C��1�L��$E1�1ɾH������� H��$����I�H���H����M)���� �� ���ʀ��A�F���� �����Eh1�H�����H���� HDžH��$����1�L��$E1�1ɾH���o���� H��$��k��1�L��$E1�1ɾH���?���� H��$��;��I�6H��u��H�FH��tH��H�H������t�I�6H���
��I��� H��$�����I�H���H����-(��1�H���Ӗ��H���� HDžH��$����I�F�H��u�f�H�PH��tH��H�H������t�H��$ H��H��$ H��$�!��I�V�H��H��H��$ �^D��I�N�1�I��I���NH���%��IcUH�HH��$�H��H�%�H	�H�H��$ H��tH�H��H��������������H�����A�F��� ����	�I�F� H������� HDŽ$����I�V�I�v�M�E�H��I��&����� H��$��r��I�v�I�1�M�E�H������� H��$��I��I�V�I�M�E�1�H���ԭ���� H��$�� ��I���
M�E�1�H��読���� H��$����I�1�M��1�H��脭���� H��$������� I�H��$����1�M��1�1�H���H����� H��$����H��I�V�I�N�E1�H��$I�v�M�H���P�93���� H��$�_AX�R��H��I�N�I�V�H���H��$I�v�M�F�PM��2���� H��$�Y^���H��I�V�I�v�E1�H��$M�H���1�P�2��H��$�XZ�� ����H��I�V�M�F�1�H��$I�v�M�H���P�w2���� H��$�A\X���H��I�N�I�v�1�H��$M�H���E1�P�72���� H��$�A[[�P���M�E�1�1�1�H���ޫ��H��I�v�1�I��H��$E1��PH�����1���� H��$�AYAZ���H��M�F�I�N�1�H��$I�v�M�H���P�1���� H��$�_AX���H��I�v�M�1�H��$1�H���E1�P�d1���� H��$�Y^�~���H��I�V�I�N�E1�H��$M�H���1�P�%1��H��$�XZ�� �?���H��I�V�M�F�1�H��$I�N�M�H���P��0���� H��$�A\X���H��I�V�M�E1�H��$H���1�1�P�0���� H��$�A[[���H��I�V�M�F�1�H��$M�H���1�P�h0���� H��$�AYAZ逿��H��I�N�M�E1�H��$H���1�1�P�)0���� H��$�_AX�B���H��I�N�M�F�1�H��$M�1�H���P��/���� H��$�Y^����H��M�1�H���H��$E1�1�1�P�/��H��$�XZ�� �ɾ���� ���� 鴾���� HDžDž����HDŽ$�釾���� HDžI�F�Dž����H��$��Z����� HDŽ$��B����� HDŽ$��*���I�H�����H���v	�����H����i�H�5��H��H��1������ ���I�L��$E1�1ɾLH������� H��$�鳽��I�6H��tH���tH���@��I�I�v�H��$H���B9���� H��$��n���I�I�v�H��$H�������� H��$��C���I�N�I�V�H��M�L��$���H��$�I�v�H���ȰH�����H�������� ���� ����i��Eh�Ѓ����@���� ��$�鹼��H�����i��� H���H��$�钼���� H���HDž�H��$��l���H���I�^�H��t�G[�H����� �D���I�^�H����$[�H����� �!���A�~��� �������	ˆ� ���I�V�I�N��H��M�L��$������ H��$��ʻ��I�V�H��u�"�H�BH��tH��H�H������t�I�6H���%�L��$1�H���_~��H��$�I�6H����H����H���:���� �N���I�V�H��u�H�BH��tH��H�H������t�I�6H����L��$1�H���W~��H��$�I�6H���ޮH���ɮH�������� �ֺ��I�I�v�H��$H���9��I�U�H��$�H�P �� 飺��H��$E1�1�1�I�ٺH���d���H��H��H��$�I�v�H���J9���� H��$��V����� I�H�@H��$��7����� I�H�@H��$�����I�V�E1��H��H��$�,I������I�H��H���4��H��H��H���0���� H��$��Ĺ��I�V�I�E1��L��$H������� H��$�鑹���� H���HDž�H��$��k����� H���HDž�H��$��E���H���I�^�H��t� X�H���I�V�I�F�H�PI�U�H��$�H�P �� ����H���I�^�H��t��W�H���I�V�I�F�H�PI�U�H��$�H�P �� 齸��1�L��$E1�1�1�H��脗��H��$�I�V�H�P�� 鈸��H���I�^�H��t�cW�H���I�V�I�F�H�PI�U�H��$�H�P �� �D���H���I�^�H��t�W�H���I�V�I�F�H�PI�U�H��$�H�P �� ����1�L��$E1�1�1�H���ǖ��H��$�I�V�H�P�� �˷���� H���HDž�H��$�饷��H���I�^�H��t�V�H���I�F��� H�@H��$��i���1�L��$E1�1�1�H���0����� H��$�H�@�4����� H���HDž�H��$����� ������A��� ��H���I�^�H��t��U�H���A�F�������� ��	Ј� I�F��� H�@H��$�阶�����1�E1�1�L��$�gH���f������� H��$�H�@�T����� H���HDž�H��$��.���H���I�^�H��t�	U�H���I�F��� H��$����I�E1���,H��$H��I������1�I��E1�1�H��H��袔���� H��$�鮵��I�6�E1�1�L��$H���q����� H��$��}���I�v�I�H�NH��H��tH�QH�HHNH�BH�PH����H�JH�VH�JH�@(1�L��$1�E1�H��H�F(������ H��$�����I�v�I��E1�L��$H���ϓ���� H��$��۴���� I�F�I�H�xH��H��tH�wH�yHxH�NH�qH��� �H�~H�pH�~H�I(H��$�H�H(郴��I�E1���,L��$H���S
���� H��$��O���L��$I�E1�1�I�V�M��/H���
��H��L��H��H�������� H��$�����H��$I�E1�1�I�پ/H������1�I��E1�D���H���gH������� D���H��$�鬳��H��$E1�1�H��I�V�I�پ/�{��1�I��E1�D���H���gH���\���� D���H��$��Q���L��$I�E1�1�M��1Ҿ/H�����H��L��H��H�������� H��$��
���H��$E1�1�H��I�V�I�پ/����1�I�پgD���I�����H��H������� D���H��$�髲��H��$E1�1�1�I�پ/H���|��1�I�پgD���I�����H��H���Y���� D���H��$��N����� I�F�I�H�xH��H��tH�wH�yHxH�NH�qH�����H�~H�pH�~H�I(H��$�H�H(���I�v�I�U�H��L��$��j��I�~�I����M��E1�1�H�¾=H���
��M��E1��H�¾,H���
��H��H��H���+���� H��$��}����� I�H��$��f����� HDŽ$��N����� HDŽ$��6���I�v�H��u�H�FH��tH��H�H������t�I�v�H���k��I�6H��u�"�H�FH��tH��H�H������t�I�6H����j��I�V�I�E1�L��$�XH���	���� H��$�闰��I�6L��H���yi��I�H��tH=�v�tH�v�L��H���@��I�6L��H��H��$�i��I�6H��1�H��轊��I�>I���R��I��E1�1�H�¾=H���
	��I��E1��H�¾,H������L��H��H���*���� H��$��ݯ��A�M�A�U�I�EI�v���$ ��$$H��$(H���2�H�H������>��H���H��$ H����?���� HDŽ$��l���I�v��E1�1�L��$H���.����� H��$��:���I�N�I�v�H��M�L��$����� H��$�����I��E1�1�L��$H���ɍ���� H��$��ծ��I�N�M��1�L��$H��藍���� H��$�飮���E1�1�1�L��$H���g����� H��$��s���M��1�1�L��$H���7����� H��$��C����� I�F�H��$��+����� I�F�I�N�H�xH��H��tH�wH�yHxH�NH�qH���b�H�~H�pH�~H�I(H��$�H�H(�ҭ��I�v�M��1�L��$H��蔌���� H��$�頭���� H���H�x H�H(�2�H�@(H�@0H��$��f����� H���H�1%H�4H������M���H�����
H���_��� ������ A�F�H������EpA�F�H���H������{�I�v��~
��H���S���H��A�U�A�M�I�v�H��I�EH��$ ��$$H��I�6��$ H��H��$(�,��1ҾeI��H��E1�H���i��IcMH�pH��$�H��H���H	�IcM�H�H�H����H	ʋ�H�I�V�H���H����H�P(���ըH�P H�@ H�P0I�v�H���͂���� ���� I�F�Dž����H��$��ϫ���� I�H�AD�`E��u�X��uH�x uH�x@���Dž����H��$�鈫���� I�F�H��$��p����� I�v�I�ME�E�A�}�H�FH��$�D�@ �x$H�H(H�IcM�%�H��H	�H��'���H���H��t-H�CH��M��H��H�5��H�����H���ފ�I�F��� H��$��֪��I�F�H�H������1���I�>H�ptH��tH�����I�F�I�>H�GH��$H��$�I�v�H�G H��$H�G(H������K���� �_���1�I�~�M�H��@��I�N�I�V�L��$�4�%���IcM�H�H����H	�H��� H��$������� HDŽ$����H���4~���� H��$��Щ���� �Ep��$��El�Ep鴩���� ��Dž��$�鑩��1�I�~��M�H��@��I�V�1
L��$�4�%�P��IcU�H�H��$�H����H	�H��� �5���I�V�M��1
H��L��$�%���IcU�H�H��$�H����H	�H��� ���M�1�L��$1ɾ*H������� H��$�鹨��1�L��$E1�1ɾ+H������� H��$�鉨��I�V�L��$H��tH�H������\�4�M�F����%H���?��H��$�H��$�I�v�H�����H���|��	���� ������ I�v�I�ME�E�A�}�H�FH��$�D�@ �x$H�H(H�IcM�%�H��H	�H��ϧ���� I�F�H��$�I�H�HI�F�I�MH�H(餧��1�I�~�M�H��@��I�N�I�V�L��$�4�%�d��IcU�H�H��$�H����H	�H��� �I���I�N�I�V�%H��M�L��$���IcU�H�H��$�H����H	�H��� ���I�V�I�E1��%L��$H������IcMH�H����H	�H��� H��$�鴦��H��$I�V�M�F�H��I�N�I�v�PI�E�PM������ H��$�AZA[�s���H��$M�F�I�V�H��I�N�I�v�PI�E�PM������ H��$�AXAY�2����� ��Dž��$������� H���H�x H�H(���H�@(H�@0H��$��ե����A�F�I�v�����~H���5���H��I�v�H��I�6H��H��$H���%��1�I��E1�H���H���m�����H��$�I�V�H���H����H�P(�����H�P H�@ H�P0I�v�H���|���� �'���H���oy���� H��$������� ��Dž��$������ H���H�x H�H(�n�H�@(H��H�@0H���H��$�H�4H����������H�7���H����V��� �q�����A�F�I�v�����~H���ё��H��I�v�H��I�6H��H��$H���A$���I��E1�H��1�H���	���H���H��$�H��H����� �p�I�V�H�����H���D�H�P(���b�H�P H�@ H�P0I�v�H���z���� 饣���� I�v�I�ME�E�A�}�H�FH��$�D�@ �x$H�H(H�IcM�%�H��H	�H��\���I�6H��tH���tH���B&��I�E1���,L��$H�������� H��$�����H���Vw���� H��$���I�v�H��u�"�H�FH��tH��H�H������t�I�v�H���\��I�6H��u�"�H�FH��tH��H�H������t�I�6H���\��I�V�I�E1�L��$�YH���S����� H��$��O���I�EI�v�H��$ I�EH��$(H��u�@H�FH��tH��H�H������t�I�v�H���\��E1�1�1�L��$ �]H������I�V�E1�H��L��$H���X����� H��$�鲡��I�v�I���M�E�L��$H���R]���� H��$��~����� �����8��Eh�a���I��RM��E1�1�H���9���I�v�H��tH���'�H��H���|��H��H��$��� ������ HDŽ$�&����� HDŽ$������� HDŽ$���͠���� HDŽ$��鵠���� HDŽ$�|靠���� HDŽ$�^酠���� HDŽ$���m����� HDŽ$���U����� HDŽ$�>�=����� HDŽ$���%����� HDŽ$�<�
����� HDŽ$������� HDŽ$���ݟ���� HDŽ$���ş���� HDŽ$��魟���� HDŽ$�+镟���� HDŽ$�-�}����� HDŽ$�*�e����� HDŽ$�*�M����� HDŽ$�/�5����� HDŽ$�%������ HDŽ$�������� HDŽ$�N����� HDŽ$�!�՞���� HDŽ$�~齞���� HDŽ$��饞���� HDŽ$��鍞���� HDŽ$���u����� HDŽ$���]����� HDŽ$�`�E���I�I�v�H��$H���.���� H��$�����I�V�I�v�H��L��$I��/����� H��$����I�6H��u��H�FH��tH��H�H������t�I�6H���W��H��I�V�M�I�N�I�v�H��M�M�H��$P����� H��$�_AX�{���I�6H��u��H�FH��tH��H�H������t�I�6H���JW��H��I�N�M�H��$I�V�I�v�H��M�F�P������ H��$�Y^����I�6H��u�f�H�FH��tH��H�H������t�I�6H����V��H��I�V�M�H��$M�F�I�N�H��I�v�P���H��$�XZ�� 霜��A�M�A�U�E1�H��A�u�A�E�L��$ I�M�f���$$��$(I�N�I�V�$ �V��$,�9���L��H��H��L��$H������� H��$�����I�6H��u�f�H�FH��tH��H�H������t�I�6H����U��H��M�F�M�I�N�I�vຓH��H��$P����� H��$�[A\骛��I�F�I�N�E1�1�L��$I��WH��M��H�D$�m�H�T$M��H��H��H�������� H��$��S���I�F�H��H�0H�P�@
��1�E1�1�L��$�H������ H��$�����I�v�H��u� DH�FH��tH��H�H������t�I�v�H����T��I�6H��u�"�H�FH��tH��H�H������t�I�6H���T��I�V�I�E1�L��$�XH���s��� H��$��o���I�v�H��u�@H�FH��tH��H�H������t�I�v�H���9T��I�6H��u�"�H�FH��tH��H�H������t�I�6H���T��I�V�I�E1�L��$�YH������� H��$��ϙ��H���L��H���
*���� 鱙���� HDŽ$�陙��I�V�I�v�H������� H��$��u����� HDŽ$��]���I�V�I�v�H�������� H��$��9����� HDŽ$��!���I�v�I�H��tH����H��$H��H���)��H��$��� ����� HDŽ$��͘��I�v�I�H��tH�����H��$H��H������H��$��� 鑘���� HDŽ$��y���I�^�M�&H�����M���z�H�H��H������>�5���?t3E1���H��L��$�?��H��H��H���5��H��L��H��H���$���� H��$����� H�EH�EH��$��������Eh鿗��I�F�I�1�E1�L��$�BH��H�E��IcMH�H��$�H����H	�H��� �o����� H���H�4H��������H�ExH�"H�4H�ux���A���H����JH���I��� ������ H�EH�EH��$����� �uh���$����4��Eh�ʖ���� �Et�Et��$�魖���� ���Dž���$�銖���� H�uxH��H�ux���>�H���H��H������x~I�F؃�H�E��}A�F�EhA�F�EtA�F�Dž��������I�F�H��t(H���H��H�H������>��w
�H���uL��$E1�H��1ҾBH�����H��$��� ���I�>�}�I�1ɾ4I��L��$H������ H��$�釕��I�L��$E1�1ɾ5H���Z��� H��$��V���I�L��$E1�1ɾ7H���)��� H��$��%����� ����>��EhI�>�%r�E1�1ɾ=H��L��$H������� H��$��Ԕ���� ������EhI�v�H��$H������� H��$�锔��I�v�H��u�$f�H�FH��tH��H�H������t�I�v�H���YN���� ����
��Eh�Ѓ����@���� ��$��!���I�v�I��-M�E�L��$H���O���� H��$������ I�H��$��֓��1�M��1�1�H���e~���� H��$�鱓��H��I�V�I�N�E1�H��$I�v�M�H���P�V���� H��$�A\X�o���H��I�V�M�F�H���H��$I�N�I�v�PM������ H��$�A[[�,���H��I�V�I�v�E1�H��$M�H���1�P������ H��$�AYAZ���H��M�F�I�V�1�H��$I�v�M�H���P����� H��$�_AX骒��H��I�N�I�v�1�H��$M�H���E1�P�Q���� H��$�Y^�k���H��M�F�I�N�1�H��$I�v�M�H���P���H��$�XZ�� �+���H��I�v�M�1�H��$H���E1�1�P������ H��$�A\X���H��I�V�I�N�E1�H��$M�H���1�P����� H��$�A[[魑��H��I�V�M�F�1�H��$I�N�M�H���P�S���� H��$�AYAZ�k���H��I�V�M�E1�H��$H���1�1�P����� H��$�_AX�-���H��I�V�M�F�1�H��$M�1�H���P������ H��$�Y^���H��I�N�M�1�H��$H���E1�1�P���H��$�XZ�� 鲐��H��M�F�I�N�1�H��$M�H���1�P�Z���� H��$�A\X�s���H��M�1�H���H��$E1�1�1�P����� H��$�A[[�7���M��1�1�1�H����z��H��1�E1�H��$�I��1�1�AUH��������� H��$�AYAZ����� HDŽ$���Џ��H�ٱL��H��� ���� HDŽ$�馏��H�ױL��H�������� HDŽ$��|���H�ݱL��H������� HDŽ$��R���H��L��H������� HDŽ$��(���I�6H���]h��I��� Dž����H��$����I�H��H���w��I�H���� H��$��Ў��I�L�
�E1�H��HDž��F���� H��$�钎��H���1�H�H��v�BH�IHc�1�H��vHcA���H��H)�H)�I�E�H��H��$ H��I�E�H��H��$(�Tv��H���H�@H���dkH�x�YkM�f�E1�1�H��L��$ �3H�����I�D$H��L�
E1�H���F��H��$�I�V�H�P�� 鳍��I�^�H��$�I�H�CH�PH�CH��tH���x�H��H������H��I�6H�C�D��� �_���H��$I�v�I�H��HDžH���g��H��tI��E1�H��1ҾHH���
�H��$��� �	���H��$I�6H��HDžH��H������ag��H��tI��E1�H��1ҾHH����H��$��� 鰌��H��$I�v�I�H��H���g��H��tI��E1�H��1ҾHH���i�H��$��� �e���H��$I�6H�����H��H����f��H��tI��E1�H��1ҾHH����H��$��� ����I�H��H���Ie��H��H���t��I�H��Dž������ H��$��֋���� I�H��$�鿋���� I�N�H��t7I�6H�F(H�A(H�AH��u�m�fDH��H�~(H�x(H�xH��u�H�pH��$��k����� I�H��$��T����� I�N�H��t4I�6H�F(H�A(H�AH��u�p�H��H�~(H�x(H�xH��u�H�pH��$�����I�H��H����b��H��H���
s��I��� H��$��ӊ��H���1�H�H��v�BH�IHc�1�H��vHcA���H��H)�H)�H��H��H��$��r���� �|���H��$I�v�I�H��HDžH����d��1�I��E1�H���GH���/��� H��$��+���H��$I�v�I�H��HDžH���d��1�I��E1�H���GH������� H��$��ډ���� I�H��$��É���� I�6I�N�H�F(H�A(H�AH��u�܃�H��H�~(H�x(H�xH��u�H�pH��$��s����� I�H��$��\����� I�6I�N�H�F(H�A(H�AH��u�Ȇ�H��H�~(H�x(H�xH��u�H�pH��$�����I�H��H����`��H��H���q��I��� H��$��ۈ��H���1�H�H��v�BH�IHc�1�H��vHcA���H��H)�H)�H��H��H��$��p���� 鄈��I�H��H���f`��H��H���p��I��� H��$��T����� I�H��$��=����� I�F�H��$��%����� I�N�I�6H�����H��tPH�ytH�~���H�AH���j�H�@H�~HyH�pH�FH����H�xH�AH�xH�F(H�A(H��$�鬇��I�V�H�H��H������>��I�E1���,L��$H���b�H��H��H������� H��$��P���I�~�I��dd�M�M�E1�1�H�¾=H����E1��H��L��$H�¾,���H��H��H������� H��$������ �����h�Eh�̆��I�v�H�H������,��w=�H���tFI�u�H��H������I�F��� H��$��|���H��H�H������u	H�FH��u�I�v�H���U@���I�6H��u�$f�H�FH��tH��H�H������t�I�6H���@��I��� H��$�����I�v�H������� H��$����A�M�A�U�I�EI�v�$ ��$$H��$(H��u�!fDH�FH��tH��H�H������t�I�v�H���?��I�H��u�"�H�AH��tH��H�H������t�L��$ E1�1�H��H��$�+��I�V�I��E1�H���H�����I�v�H��H��H������� H��$����I�I�v�H��$H�������� H��$��Є��H��$I�6H��H���*e��H��$�H���U}�� 靄��I�61�H��$H���_���� H��$��t���I�61�H��$H����^���� H��$��K����� �����r�� �Eh���� ������ I�F�H��$�����I�V�H��u�H�BH��tH��H�H������t�I�6H���goL��$1�H���F��H��$�I�6H���5oH��� oH���z��� 鎃��I�V�H��u�H�BH��tH��H�H������t�I�6H���H|L��$1�H���F��H��$�I�6H���|H���|H������ ����I�V�I�N�H��L��$I�v�M������ H��$����H��I�v�M�F�H��H��$I�N�M���P���� H��$�^_餂��I�F�H��H�0H�P��1�E1�1�L��$�H���e���� H��$��a���I�6H��u�"�H�FH��tH��H�H������t�I�6H���*<��I��� H��$�����A�M�A�U�I�EI�v�$ ��$$H��$(H��u�!fDH�FH��tH��H�H������t�I�v�H���;��I�H��u�"�H�AH��tH��H�H������t�L��$ E1�1�H���c��I�V�E1�H��L��$H����D���� H��$��@���I�V�I�M�E�
L��$H���`;���� H��$�������Eh�H���R���� ���I�H���yH��H��xH��0H���yH��H������H��1�H��$H�����H��H��0�U���� 醀��I�V�I�M�E�
L��$H���:���� H��$��R���H��I�V�I�N�M�M�H��$I�v�M�H��P�*��� H��$�[A\����H��I�V�M�F�H��H��$I�N�I�v�PM������ H��$�AZA[����H��M�F�I�V�H��H��$I�N�I�v�PM����� H��$�AXAY���A�M�A�U�E1�H��A�u�A�E�L��$ I�M�f���$$��$(I�N�I�V�$ �V��$,�0��L��H��H��L��$H������ H��$����I�I�v�H��$H������� H��$���~��I�V�I�v�H��L��$I��d���� H��$��~��I�V�I�E1��QL��$H������� H��$��~��Ƅ$�$I��H��$�H�@��$��=�I�V�E1�H��L��$H���Q�/���� H��$��+~��H��L��H���i��1�E1�1�L��$�H�������� H��$���}���� I�H��$���}���� ������m�Eh�}��I�V�I�E1��PL��$H������� H��$��}���� I�H��$��k}��A�M�A�U�I�E��$ I���$$H��$(H��u�"�H�AH��tH��H�H������t�1�L��$ E1�H������I�V�H��t5H�2H������t�$f�H��H�	H������u	H�JH��u�E1�H���H��L��$����� H��$��|���� ��gH��$I�N�1�1�I��E1�H���[��1�I��E1�H���bH���C���� H��$��?|��I�^�H��tH�H�������~tI�6H��tL��H���:��H��H��A�H��H��L��$�	������ H��$���{��I�6H��u�$f�H�FH��tH��H�H������t�I�6H���5��I�I�v�H��H��$����� H��$��o{��I�6H��u� DH�FH��tH��H�H������t�I�6H���:5��I�I�v�H��H��$�#����� H��$��{��I�^�H��tH�H��������\I�6H��tL��H���9��H��H��A�H��H��L��$�
����� H��$��z���*H��I�]��b���&H���b��I�ع&1�1�H���e��H��1�E1�H��$�I���*1�SH�����H��$�X�Z�� �f\�� �Eh���� �z���� �Ѓ�@���� ������$���t�Eh���Eh�� ��y���� I�H��u�"�H�HH��tH��H�H������t�H��$��y���� I�F���H��$���"t�� �Eh���� �_y��I�H��tH�����H��$��� �;y��I�v�I�1�M�E�H����c���� H��$��y��I�V�I�M�E�1�H���c���� H��$���x��I���
M�E�1�H���sc���� H��$��x��I�1�M��1�H���Mc���� H��$��x��A�F��� �������	�I�F��� ��H��$����f�� �Eh���� �Ix��I�V�I�v�M�E�H��I���b���� H��$��x���� HDŽ$��x���*H��I�]��`���&H���`��I�ع&1�1�H���tb��H���*1�H��$�I�v�I��E1�SH����z�H��$�Y�^�� ��r�� �Eh���� �vw��I�H��tH�����H��$��� �Rw��I�v�H�������� H��$��2w��1�L��$E1�1ɾH������� H��$��w��I�V�I�v�1�H��M�L��$����� H��$���v���� HDŽ$�2�v��H��$I�6H��H���W��H��$�H���Wq�� �v��I�>H���q�%��I�v�H���qH��tH��H����H��$��� �Dv��H��$E1�1�H��I�N��I�����H��(H��tH���)qH��H���S�H��H��(1�I��E1�1ɾH�������� H��$���u��1�L��$E1�1ɾH������� H��$��u��I�>H����p�=��I�v�H����pH��tH��H����H��$��� �\u���� I�H��$��Eu��I�~���c�� �.u��I�v�H���pI�U�H�����I�v�H��$H��H����H��$�I�H����oH��t�H H�B�@$�J �B$H��$��� �t��1�L��$1�H��I����������� H��$��t��I�E1�H�����H��H��$�II���X��1�I��1�I���H���A���� H��$��=t���� I�F�H��$��%t��I�V�M�M�E1���,H������� H��$���s��I�V�I�v�H������ H��$���s��I�E1���,L��$H������� H��$��s��I�I�v�H������ H��$��ys��I�61�H��$H����M���� H��$��Ps��I�61�H��$H���M���� H��$��'s��I�V�M�F���H��L��$�d����� H��$���r��I�~����`I�V�I�v�H��L��$I��H���� H��$��r��I�>I�^��(�H��E1��dL��$H��H���z���� H��$��vr��I�~����`I�V�I�v�H��L��$I������� H��$��9r��I�V�I�E1��VH��$H��I�����H��H��H���*���� H��$��q��H��$I�E1�1�I�پWH������H��H��H���W*���� H��$��q��I�H��H�0H�P��1�E1�1�L��$�H���u���� H��$��qq��I�61�H��$H����K���� H��$��Hq��I�61�H��$H���K���� H��$��q��I�V�M�F���H��L��$�d������ H��$���p��I�V�I�v�H��L��$I��N���� H��$��p��I�>I�^��.�H��E1��dL��$H��H������� H��$��|p��I�V�I�v�H��L��$I������� H��$��Mp��I�V�I�E1��VH��$H��I�����H��H��H���(���� H��$��	p��H��$I�E1�1�I�پWH������H��H��H���k(���� H��$���o��I�H��H�0H�P���1�E1�1�L��$�H������� H��$��o��H�ƞL��H�������� �go��I�1�L��$E1��WH���:���� H��$��6o��H��$�1�E1�H��L��$�V����� H��$��o��I�V�I�E1��VL��$H�������� H��$���n���� ����fZ�EhI�H��$��n���� I�H��u�@H�HH��tH��H�H������t�H��$��hn���� I�H��$��Qn��I�V�M�F���H��H��$I�N�M�PI�E�P����� H��$�AYAZ�n��M��*1�1�L��$H������H��$�I�6H���<\H���'\H������� ��m��I�6H��$H�����H��$�I�6H����[H����[H���j���� �~m��I�6H���C��E1�1ɾ0H��L��$H���F���� H��$��Bm��I�6H�����E1�1ɾH��L��$H���
���� H��$��m��I�6H������E1�1ɾH��L��$H�������� H��$���l���� I�F�H��$��l��I�V�E1��H��H��$�,I���~��I��E1�1�H�¾H���f���� H��$��bl��I�L��$E1�1ɾH���5���� H��$��1l��I�v�I�H���B�E1�1ɾH��L��$H������� H��$���k��I�V�M�1ɾL��$H�������� H��$��k��I�V�I�E1��IH��$H��I�����I�V�I��1�I���H���t���� H��$��pk��I�V�I�����1�H��L��$��>���� H��$��:k��I�E1�H�����H��H��$�II�����I�V�I��1�I���H�������� H��$���j��M�1�L��$1ɾH������� H��$��j��I�V�I�E1��IH��$H��I�����1�I��1�I���H���o���� H��$��kj��1�I�~�M�H��@��I�N�I�V�L��$�4�%�+��IcM�H�H����H	�H��� H��$��j���� I�v�I�ME�E�A�}�H�FH��$�D�@ �x$H�H(H�IcM�%�H��H	�H���i��I�1�L��$E1��'H�����Hc��H�H��$�H����H	�H��� �|i���� I�I�F�H�HI�MH��$�H�H(�Ui��I�>I�F�tH��tH��H�����I�F�I�V�I�>H�BH��$H�WH�G H��$H��$�I�V�H�G(H��tH������I�V�I�E�H�B(�� ��h��I�V�I�N�E1�H��H��$I�v�M�PI�E�P�'��H��$�XZ�� �h��H��$I�V�M�F�H��I�N�I�v�PI�E�PM������� H��$�A\X�ah��I�V�I�N�E1ɾ�H��$M�H��PI�E�P����� H��$�A[[�!h��I�6H��u�"�H�FH��tH��H�H������t�I�6H����!��I��� H��$���g���� H�uxH���H�t6H�ux����g��H�h��LH������ �g���� H�uxH�]�H��H�ux���}g��H����LH������� �Mg���� I�F�H��$��5g��I�^�H�����H����� �g��A�N�M�M�H�����E1�1������ ��	�I�V��� �ȿ��I�v�H��$H��H������� H��$��f��H�������� H���H��$��f��I�~��]���H���H�ٕH��1���1�I�V�I�v�H��I�L��$M�E��"���� H��$��,f��I�6H��u�f�H�FH��tH��H�H������t�I�6H�����I��� H��$���e���� I�F�H��$���e���� ����%S�Eh�e��1�L��$E1�1ɾH��肾���� H��$��~e���� �����R�Eh�ae���� I�N�H�H������\uH�AH��$��2e���� I�N�H�H������\uH�AH��$��e��I�V�I�E1��VL��$H���Խ���� H��$���d��I�1�L��$E1��WH��製���� H��$��d��I�F�H���MSH�Hc�$fo�$��H��H	�` H�H��$��� �Vd��I�v�H��$H�������� H��$�H�@�&d���� �I�6H��$H���|����� H��$��c��I�v�H��u� DH�FH��tH��H�H������t�I�v�H�����I�v�I�H��tI�V�L��$H��H���~&��H��$�I�v�H���FQH���1QH���X���� �lc���� I�H��$��Uc��I�I�v�H��$H������� H��$��*c��I�I�v�H��$H��胾���� H��$��b��I�I�v�H��$H������� H��$���b��I�I�v�H��$H���-����� H��$��b��I�L��$E1�1ɾLH���|����� H��$��xb��I�1�L��$E1��'H���K����� H��$��Gb���� H���H��H�4H������.b��H�Ė��
H���z��� �a���� H���H���H����2QI�N�H��tH�H��H�������,Q���#Q1�L��$E1�H��苺��IcM�H�H��$�H����H	�H��� �pa���� I�H��$��Ya���� HDŽ$��Aa��I�E1���,L��$H�������� H��$��
a��I�L��$E1�1ɾLH������� H��$���`���� H���H��|$LH�����O����OI�H��$��`��I�1�L��$E1��MH���p����� H��$��l`���� �D$=H�S>=G�V>��(�M>��[�D>H���H��H�H��H������$`��H����
H���p��� ��_��1�L��$E1�1ɾ1H���ȸ���� H��$���_���� �� �� �_��I�v�H��$H��諻���� H��$��_��1�L��$E1�1ɾ1H���[����� H��$��W_��1�L��$E1�1ɾ0H���+����� H��$��'_��I�6I�]�H��tL��1�H�����H�ƺ!L��$H��H���"���� H��$���^��I�6I�]�H��tL��1�H���v��H�ƺ!L��$H��H���k"���� H��$��^��H��HH���1ɺ*H�������tH���1ɺ&H���������JH�5�H��1������ HDŽ$��/^��I�F�H��t/I�U�H��H������E1��H��L��$H�¾,���H��$��� ��]��I�6H��u�$f�H�FH��tH��H�H������t�I�6H�����I��� H��$��]��A�M�A�U�I�EI�v�$ ��$$H��$(H��u�!fDH�FH��tH��H�H������t�I�v�H���9��I�H��u�"�H�AH��tH��H�H������t�L��$ E1�1�H�����I�V�E1�H��L��$H����ĵ���� H��$��\���� I�F�H��$��\��I�v�H����II�U�H���?��I�v�H��$H��H�����H��$��� �d\��I�F�H��t-I�]�H��H��H�����I��E1��H�¾,H������H��$��� �\���� I�F�H��$��\��I�v�H���.II�U�H�����I�v�H��$H��H���r��H��$��� �[��H��HH���1ɺ*H��������tH���1ɺ&H���������NGH�5�H��1������� HDŽ$��V[���� I�I�N�H����HH��t�q H�H�I$�p �H$H��$��[��I�v�H���cHI�]�H��H�����I��E1��H�¾,H���ֳ��H��$�I�H���HH��t�H H�B�@$�J �B$H��$��� �Z��I�6H��u�"�H�FH��tH��H�H������t�I�6H���r��I�E1��L��$�,H���B����� H��$��>Z��I�v�I���M�E�L��$H�������� H��$��
Z���� HDŽ$�<��Y���� HDŽ$����Y���� HDŽ$����Y��I�V�I�v�M�E�H��I�L��$�c���� H��$��Y���� HDŽ$�>�wY��I�6�~I�M�H��L��$����� H��$��GY��I�v�I���M�E�L��$H�������� H��$��Y��I�6I�]�H��tL��1�H�����H�ƺ!L��$H��H������� H��$���X��I�V�I�M�E�L��$H�������� H��$��X���� �� �� �X��I�V�I�M�E�L��$H������� H��$��NX���� I�H��$��7X���� I�H��$�� X��I�H���mH�H������B��lH��$��� ��W��I�v�I�H��tH���3mH��$H��H�����H��$��� �W��I�6L��H�����I�61�H��H��$�2���� H��$��zW��I�6H��$H����7��H��H�H����~��2tI�>�=�H�5-�H��H��1����H��$��� �%W��I�1�L��$E1��WH������� H��$���V��I�V�I�E1��VL��$H���ů���� H��$��V��I�6H��$H���7���� H��$��V��I�F�I�~�I�^�H�D$tLM�e�1�1�E1��`H��M���[���I�v�L��H��H���Y��H���^gH��tH��H��H�����H��L�D$I��H��L��$H���
���H��$�I�v�H���5lH��� lH���Զ���� ��U��I�E1���,L��$H��踮���� H��$��U���� I�H�H������LuH�@H�H������,��OHDŽ$�I�H��$��hU��I�E�I�6H��$ I�E�H��$(H��u�!fDH�FH��tH��H�H������t�I�6H�����I�E1�1�L��$ 1Ҿ]H�����E1�H�پYH��L��$H���ͭ���� H��$���T��I�EI�v�H��$ I�EH��$(H��u�!fDH�FH��tH��H�H������t�I�v�H���y��E1�1�1�L��$ �]H���M���I�V�E1�H��L��$H���Y�.����� H��$��*T����!�x%�� �T��I�E�I�6H��$ I�E�H��$(H��u�"�H�FH��tH��H�H������t�I�6H����
��I�E1�1�L��$ 1Ҿ]H��蓬��E1�H�پXH��L��$H���u����� H��$��qS��H��$I�6H��H����3��H��$�H���)M�� �>S���� I�I�M�H��$�H�H �S���� HDŽ$��S��I�v�H�H������B�>iH��I�v�H������� H��$���R��I�v�I�H��tH����cH��$H��H������H��$��� �R��I�v�H������H��$�H����cH�Hc�$fo�$��H��H	�x H��� �@R��I�v�H�����I��H���_3H�H��H������>�3��?��2L��E1���,H��$H��I���֪��I�ٹH��I����A蹪��I��L��$��� �Q��A�I�^��D$H���AbH�H��H������>��a��?tqH���1�1���/�H��E1��L��$�,H��I��M��L�T$h�8���L�T$hL��H��I����?M������H��A��u
I������<bHc�$�fo�$H�sH��H	ЋT${ ��CH���H�CH��tH�����L�cM����`L�t$hI��L�l$pM��I���fDE1�M�mM����!I�UH�H������>u�H�Z�T$H��H���2�����sM���jI�vH���\M9�tH�vH��H���������f1�H���M'�I�EI�uH��I�F�U�H��L��M���C��Y����� HDŽ$���O��I�F�H���7fH�Hc�$fo�$��H��H	�` H�H��$��� �O��I�F�H���jfH�Hc�$fo�$��H��H	�h H�H��$��� �TO��I�F�H���fH�Hc�$fo�$��H��H	�p H�H��$��� �O��I�v�H�H������B��eH��I�v�H���u���� H��$���N��I�F�H���CH�Hc�$fo�$��H��H	�x H�H��$��� �N���� HDŽ$�!�pN��I�EI�v�H��$ I�EH��$(H��u� DH�FH��tH��H�H������t�I�v�H���!��E1�1�1�L��$ �]H�����I�V�E1�H��L��$H���Y�֦���� H��$���M��I�E�I�6H��$ I�E�H��$(H��u�H�FH��tH��H�H������t�I�6H�����I�E1�1�L��$ 1Ҿ]H���[���E1�H�پXH��L��$H���=����� H��$��9M��I�E�I�6H��$ I�E�H��$(H��u�"�H�FH��tH��H�H������t�I�6H������I�E1�1�L��$ 1Ҿ]H��軥��E1�H�پYH��L��$H��蝥���� H��$��L��I�v�I��+M�E�L��$H���9���� H��$��eL��I�EI�v�H��$ I�EH��$(H��u�f�H�FH��tH��H�H������t�I�v�H�����E1�1�1�L��$ �]H�����I�V�E1�H��L��$H���X�Τ���� H��$���K��I�v�I��|M�E�L��$H���j���� H��$��K��I�v�I���M�E�L��$H���6���� H��$��bK��I�v�I�M�EຆH��$H��I�������I��H��I�M�H�������� H��$��K��I�6��I�M�H��L��$����� H��$���J��I�6��I�M�H��L��$����� H��$��J��I�v�I��/M�E�L��$H���T���� H��$��J��I�v�I��%M�E�L��$H��� ���� H��$��LJ��I�v�I��*M�E�L��$H�������� H��$��J��I�v�I���M�E�L��$H������� H��$���I��I�v�I���M�E�L��$H������� H��$��I��I�v�I���M�E�L��$H���P���� H��$��|I��A�E�I�^�M�&�D$H��u�)H�CH��tH��H�H������t�H��H���:��M����DI�$H�������kDI�T$H��u��)fDH�BH��tH��H�H������t�H��H��H�T$h����H��H�T$h�B)I��H�H��H������D��'H�H������=�(��C�r'E1�L��H�ھ;L��$H���l���H��H�HcT$%�H��H	�H�H��$��� �NH��I�v�I��&M�E�L��$H�������� H��$��H��I�v�I���M�E�L��$H������� H��$���G��I�v�I��^M�E�L��$H������� H��$��G��I�H��H�pH��$�����H��$�H��H�B����� �tG���� HDŽ$�1�\G���� HDŽ$�"�DG���� HDŽ$�#�,G���� HDŽ$� �G��I�>�,$�E1�1ɾ=H��L��$H���ߟ���� H��$���F��I�1�L��$E1��RH��讟���� H��$��F���� HDŽ$�0�F��f�H�c����D9���P��H�{��P������H�K������P��H�EHH�P�H�UHH;U@��P���x�
��P���x�
��P��H���D$ H�EH�I��@�
H���K������N��H��$�H;t$XtH����H��$�H����H��$�H���tH�T$H�t$H��H����5��H��$����TC���
H���ێ���Ã����N��L�|$L��$�L��$�L��$��L��H���?��M��M��L��I��M���D$L�t$ �F��L�|$L��L�l$L��$�L��$�L�d$`L��$ H��L��L�L$P�k��L�L$PH�]1�H�T$E1��>H���۝��H�H�D$�uH������aH��$�H9|$x�3�D$A�G��L�|$L��L�l$L��$�L��$�L�d$`H�EH��H�p�ъ��H�EH�t$pE1�1�1ҿ
H�EX���Hc����L��$ H��H�EL��L�L$P���L�L$PH�]1�H�T$E1��>H������H�H�D$�uH�������H��$�H9|$x�4���H�E�D$AH�H����F��H�|$PH����L$`A�P�H�56rD�D$�x1�H�����H�D$`D�D$H�D$`�I;���uh���H��L�\$�l��L�\$�LF��H;MP�-�� � H�E8�����H�AH�EH�9
�F���
H��L�\$�j���L�\$��E��H��zH��1�M��H�5�MD�D$� �HcD$L��H��H�=�L��M���<G�O+��H�5b�H��1�����D$�� �?��H��L�\$h�L$`L�D$P���L�D$P�L$`��L�\$h�%7H�EH��L��H��L�\$hL�D$`賖��L�D$`L�\$h����SH�MH�F��H�D$XH�t$0H��M��H��xM��L��I��H��$�HDŽ$���o����f���L��H��H���������X��I�L$PE�t$hI�L$H�E��M��M��L��I��M���D$I���B���
H��D�L$���D�L$�������H����:���
L���Ԋ�����~E��H�E�D$AH�H���rD��H��H��������Hc��H���L����L$pH��$�L�|$L��$�L��$�L��$��˒��H�D$���L�|$L��$�L��$�L��$���\u
Dž�����Hc��H���L����L$pH��$��o���H�D$���L�|$L��$�L��$�L��$��� ��G���ZK��H�EPL�|$L��$�L��$�L��$�H�EH�w���M��M��L��I��M���D$L�t$ �A��H��L�\$�n���L�\$����B��H�MH�����
H��L�\$hL�D$`�A���L�\$hL�D$`���ZD���
H��L�\$h�L$`L�D$P����L�\$h�L$`��L�D$P�J��H�{�ID��H�EA����A��@tH�EHH�UPH9�s	�8:�'��� ���Eh�D$Y�eB��H��H������J����
L��脈������=U��L��H�5�f1�L�t$PH��L�d$`�͕���D$�B��I��H����#L��$�L��$�L��$�M�t$P1�A��$ ����A9�$���J��I�|$HI�D$@H�O�H9�s��� t��	����J��H��H9�u�1�H�߬��L��H)�H���xJ���G�Pƀ�5�FS��Hc�H�>��x�
�>C��H��H�EH�1C��H�bd1�H�����L�\$�C��H����΃� ����	����@��:t��$��������H���hV��H��L��H��L�xH����I���p���� tރ�	��v�@��"�2!L��H�����"��$��;��$�� ��$��	����$H��H��u��"�H��H���G����KI��D�x�
��G��H���D$ H�EH�I@��H��葂���D$���5@���#諈��H���Ӓ��L�\$pD�T$h����A��H�{������}G��f��Eh%��������dP������IFH�UHH�J�H�MHH;M@v
�z�
��8A���„T$ht	@���gF��� ���Eh�?����=��G��>��G��A�h��%=�VD�L$hA���� A��@��0��D��t	E������ �$�Eh�����#H�EHH�P�H�UHH;U@v
�x�
��FA����D����>��E����>����	����>�����H���1�H��e�M���H���1�H�we�2��>��D�.L����H��e1�L�������DU���Eh%��������X[����t�� ��� ��Q����#�H��D�D$`���D�D$`��Q���D$J��U���uh��������E��M���J��D$M�S\���D$G�^����=�x/��A�W��%=�ED�L$hA���� A��@��0��D��t	E������� ��:�Eh����b:H�EHH�P�H�UHH;U@v
�x�
�7/A����D���;=��E���2=����	���&=�����H���1�H��c����H���1�H��c����<���������tU��H��耏��A��A�����A�A����1H��D�L$P�Y����
A��H���D��D�D$H��PX���]H�EHD�D$D�L$P�@����BA����'�)A��(t%�]A��[tA��{�9A��<��8D��E1�H��A�Q�H�]X��/�h<H�
;�Hc�H�>��H�EHH;EPs	�8=�fW���t$H���j����D$4�W��L�EHH����L$`�
A�x�L�D$H��PX�L$`����V��L�D$A�@�<_��V�����}V����V���������Z��H9�tH���B���
t	��#�Fh�����H���H�i1�����;h��H9�tH���B���
�pf�����H���H��h1����nf����� u�Eh�%E���?#�H�������E���E#�H�������H������L�� �7��L��H�5ZoH���q����� �7���C����������H����+1�H��`���� �n,�Eh����:H�EHH�P�H�UHH;U@v
�x�
�/,��0��	��-�D$��:��H���N������+H�MH�B��H�EH��1�H�D$h�ʂ��H��$�L�d$`H�D$pH��$��D$PH�D$xH�EHH;EP���� ��H�E8������H�PH�UHD� A��
�k-A�D$����A�D$�����D��\$PL�d$`���tH�EHH�P�H�UHH;U@v
�x�
�l+Hc������H�M@H�UXH��H)ʉ�$$H�UH��$ H)ʉ�$(H�5�l��$,H�������H��,H�$�L�����HN�1��j������;�$ �W,�D$����	�H�D$h���� �O,�Eh�D$B�r8��A��ou�����H�T$pH�t$xD������tX��$��҉�$��}*�0���$�9‹�$�DDd$�D$PD�d$�I���H���D������P*H�EH�Y���D��H���h���� ������ �H+�EhH���v�����=�P*���tH�EHH�P�H�UHH;U@v
�x�
�-+�D$��7��H���Lj������+H�MH�C����$H��iH������� �nB���uh��$�H���0���YB��H�\i��$H������� �B���D$Z�7���������C����� �l(�Eh��6��E1��`1Ҿ�
����D$SH�E�6����� ��'�Eh�6����$�H���~���CA���uh���H���d����H���������t!��@tH�EHH�P�H�UHH;U@v
�x�
��E��� �o�Eh�'6��H�8j1�H���f���D$�	6��H��豈����]��D��� ��D�EhH��苈���D$���=��5����tH�EHH�P�H�UHH;U@v
�x�
��D�D$��5��������2;��DŽ$���J��H�{��<����f�H�)g�%H�������� �1M����%H���.���� �L���@H���}��H���͇���D$8D�D$`�D$P�sM���l$L��L�t$PH�EL�d$`H�.��� �J@�Eh��4��H���H�]H�
�{�H��PX��u�C�<_t	���UM���D$P��0��	��?H�EHH�P�H�UHH;U@v
�x�
��?H��$ H��H������|$6�T$P�|H�5j_H��1������;�$ �@H�EH�!��� �Q�Eh�4���O$�L�������0J���z$H��eH���M��� �K���uh�{$�H������J��H��e�y$H������� �J��H�_V1�H������H�E�D$Y�p3��I��$�I�\$H�
�{�H��PX��u�C�<_t	��� U���l$L�t$PL��L�d$`�M���Eh%����%����>���uh� "�H�������&L��H�M0H��8H���R|����K��H�5.]H��1��|�����K���s$H��dH���#��� ��Q���uh�t$�H������Q��H��d�r$H�������� �AQ����$H�
dH������� ��R���uh��$�H���&���R��H��c��$H������� �oR���D$��2���D$��1���1$�H�������R��I�|$L�t$hL��L�l$p��>�D$�[>H��$��� �.��L��H�5LfH���c����� �.���Eh��E���0t%D$h��D��H�MHH��H+E@H�D$`H;MP�PA�� �CAH�E8�����5AH�AH�EHD�	A��
�AA��-��@A��~��@�D$p1�A��'�	BA��`�AA��"��A�� ��9A��tH�EHH�P�H�UHH;U@v
�x�
�`9���@D��H�EHH�P�H�UHH;U@�*D���x�
� D���x�
�D��H��H�EH�	D���H��D�D$P裁��D�D$P����H�MH�C���$�H���+���O���C��������H����-1�H�GV���� �j8�Eh������H�EHH�P�H�UHH;U@v
�x�
�\8��0��
�%���D$�/��L��$E1�1�H���,膅��H��H��H��訦���� H��$��t,��H�QH�AH�U@�xR��L��L�t$PL�d$`H�E0���H�E8�"R��H��$H�5YkH������� �,��H��L��$1�H��H�5m�u���� �+��H��$H�5kH��谙���� ��+���uh��%=t��Au@��0��'�|$h��'��� ��2�Eh�D$D�.��E1��/1Ҿ�
����D$TH�E�Z.��H�`�%H������� �l<����� �`3�EhH��D�D$P�Ȁ��D�D$P��=�3���tH�EHH�P�H�UHH;U@v
�x�
��3A���DH�EHH�P�H�UHH;U@��-���x�
��-���x�
��-��H���D$|H�EH�-��H=���-�����-���D$P���I���D$3�q-����� �0�Eh�W-���� ����0�Eh�D$K�K;���D$]�;��H�MHH;MP��/��\��1H��$�1�H��H�����H����ou���v<���uh��$�H��������=���Eh0u��	��wH��������i1H�EHH�P�H�UHH;U@v
�x�
�m1��� �r-�Eh�z,��H���"����=�.��tH�EHH�P�H�UHH;U@v
�x�
�81�D$��;,���p������8����:�� H�]HH�CH9EP�� �{��'t0��"t+H����
H��PX��u�C<_t	���^ D�Eh�D$O�8������������=���uh�%�H������9��H���A~���D$���>��+����tH�EHH�P�H�UHH;U@v
�x�
�0,�D$��R+����#�H��D�D$`�+��D�D$`��>��H��D�D$��}��D�D$��=��+�����+H�UHH�J�H�MHH;M@v
�z�
��+A���„T$ht	�� ���D$���*������ ��O��H�U@H�EX���H)Љ�$$H�EH��$ ��$(H��H)щ�$,�����&�� ��&�K�����&H�H�H�MHH9�s
�x�
��*��H�5nTH��1���}�����;�$ �H�E�D$5H�!�*��H��D�D$P�D{�����1���H�MHD�D$P�f7��H��$H�5��H��觔���� ��&��H��$H�5F�
H��脔���� �&��H��$H�5}gH���a����� �&��A�A������A�AЃ�	���A��(��%A��[��%A��{�I%E��A�Q���H�51RH��1���|���D$�)��H��$H�5�fH���ӓ���� �%��H��$H�5�fH��谓���� ��%��H��$H�5�fH��荓���� �%��D�Eh�L$h��A��0�� ���F�����H���H�jL1�����D$MD�Eh��F��H���{����=�'�����&H�UHH�J�H�MHH;M@v
�z�
�1'�L$hD�Eh���� @��A��0��!ʃ�@��~���D$NA��A�fF��D�Ɓ����QF����@��@��t���x�D$��-F��A�t$h�d$�L������>���uh��$�H���{������Eh���B��H�EHH�UPH9�s��΃�@��>��B����=�l%�=H����o���D$3��B����H��������&M���D$�'��E1�H�uP�H�7[肋������A���� �D$������&��fDH���x�����H�EH�A����� ��B����"�D��H������B���D$��&��A�������� ��B����"�D��H���J���tB��A���<B��H���Hc��D�D$pH�׉t$hH�T$`�m��D�D$pH��H���B��A���H�T$`�L$h���� �Y�p�uh@��t�� �Cf=�� A���� �D$�%��M�f�E1�1�H��L��$ �2H���{��I�D$颔��H��$H�5H���I����� �m"��H��$H�5�}H���&����� �J"��H��$H�5�bH�������� �'"���uh��!�H��D�D$P���D�D$P�52���|$J�����H���H��H�������H���H�H��H�������H���H���H�H�������!��H�BV�
H������� �|!��H��$ H���|���H�x����� H��$��O!���uh��$�H���*���XC��H�SH���r��M��tbI�$L��H������D��H�H������=�v��Cu3H��E1�L��<L��$H����y��H���l��1�H��L�����M�L$ E1��L��,H���y��L��$��H��I���%���L�RA���Q���I������D���A������5���H��E1�L��;L��$H��L�T$hM��L�\$p�"y��L�T$hH��$ H��L�����L�T$hL�\$pH��$ H�5����H��$(I�zL��$8HDŽ$0�l��H��$0H��tH�@H�C�I��1�H�����M�����I�$H�������~��L��H�����L��I��1��`���H�B������H����������H�����������c���I�T$H��������8���L���O��Hc�$��fo�$H��Al$ H	Ѐ�AI�$�I���D$�"���D$C�!��Hc�$��fo�$H��Ad$ H	�H�Ѐ�@I�$���H���1�1��)��E1�1ɾ@L��$H��H��H���w��I�������H���������H��H����������D$H�A���D$P������4��IcE���H��H	�H��RZ���uh���H������� �D���I�6H�[H��tL��H�����H��H��E1�H�پ
L��$H����v���� H��$������uh�%�H�����連���� ����� ���H�P0H����y���y����H��RH�������wy��H�p0H�p �kw��H�p0H�p �x��H�@0�x��H�P0H����w����w��M�F���1Ҿ'H���	v��H��$���t��1�H�5�TH���s��I�F��Nr��H�x(�Hq��H�x0�=q��H�x8�2q���7q���� ����uh��$�H�����w��z�
�6��H��I�T$H�6��H��L�xI�����pL��@��"u-�nL��H��L�A�H�FM�����v@��"�F@��\u�H��H�p�Ѿ
H���fe�������F��A��A���E��H���Hc��H��$ H��H����K�����
H��$�L��$��p�H���Hc�H�x�*���$�����H=���?��L�UHc�I��E1�1Ҿ8H��L�T$�mt��L�T$�D$?I��h���eI��I��1�H��H)�M���&H��L��H��$��X��I�$ H��$���I�|$H����M�L$1�1�H��~LȀ8-u�_��Hc�H9��H��$�H�-�
=L��$�M��I��L��$�M��H�]L��L��H���v���uB�<#t(H��H��
=H9�u�M��H��$�L��$��L��$�H�EM��H��$�L��$�M)�H��tL��L��H��$���I��H��$�H����L��H���M��H��$�H�H��$��� uxM��u/H�EH��$�H�WH�uH��$���H����%��L���U2��H��$�H�xL��L�����H��$�H�EH�?H��$��� t�H��$�H�W�H��$�H�xM��u�H�E��H��$�L��L��H����L��H��$��I�|$H��t)H��H��H��$��U�H��$�I�$ ����M�L$����H��$�H��H��H��$�H�������H��$�I��빃�$�I��t+I��A�<;t�� t��	���s���I��H��u��d���H������L�4I�v���� t��	������H��H)�H��L9�u��x��H�HH9�v
�x:����H���n����� ���Eh�D$^�H��A�V�uh�bH���$�����A���"��E������<���I$�H��D�D$hD�T$`D�L$P���D�D$hD�T$`D�L$P���H��L�`H���9���� �h����uh���H��蘼��K���L��L�t$PL�d$`H���>m����.t7��tH�EHH�P�H�UHH;U@v
�x�
���������D$�R���}lu,H�UHH�MPH9�v5H���B���
t(��#t#�� t��	��v܃������D$�
�����H���H��G1��_����H�M0H��8H���Jc����H�5�DH��1��tm�����uh�."�H��蚻����x�
�3���H��H�EH�&����p�����s���H���H��<1������D$ND�Eh��7����	�D$�����7�����H���H��<1������H���1�H��<���D�Eh�o7���� ������ ����H�EH�*��� uM�Eh�D$E����P�����1ҹ��6����	���
7�����H���H��<�W����uh�*#�H���[����� �]��A�u�A�U�H��A�M�A�E���$ H��$ ��$(H��D��$$��$,�j����I���� �	���� ���L�p��$�H�Y�I��L���#���H������y���L���i���H������H�_A1�H������1��������H���H�L1��������� �v���� �j��HDŽ$��� �R���uh��H���-���� �y���I�]�E1�1ɺ*I�پ2H���m��I��E1�1�H�¾LH����l��I��E1�1ɺ&�2H��I����l��I��E1�1�H���MH���l��L��$�H��t-M��tA�T$ L�`�P A�T$$�P$H��$��� ���L����I�]�E1�1ɺ*I�پ2H���Yl��I��E1�1�H�¾LH���Al��I��E1�1ɺ&�2H��I���$l��I��E1�1�H���MH���l��I�v�L��H��H��$H���rn��H��$�H��t)H��t�P H�C�@$�S �C$H��$��� ����H����I�F����H�����I�F��5���HDŽ$�I��ܷ��H���g����uh���
H���l���� 麬���uh���
H���K���� ����� �C���� �7��H��F�
H������� �Z�H�&G�
H���s���� ��I�u�H�AH���4������I�u�H��@H�������_����� ����� ����� ����� ����uh�1�H���r�������uh���H���X���-���H��?L��H��衡���� �E��L��$E1�1�1Ҿ-H���j��麬��H�3F�#
H������� �W�������H���H��H�����ulH���H�H���������H�qE�$
H���'���� �����
H��EH�����鵮��IcE؁�H��H	�H��Į��H��E�#
H�������� �t���H�hE�"
H������� �>����uh���FH������� �[���H�M0H��8H��$ �p\�������	�D$����������H���H��71��\����H���1�H��7�A���D$�����
H��D�D$P��X��D�D$P��� ��H���c����u H�MH�79���z�
�m9��H�B�H�EH�`9���� tAH�EH�N9���x�
�&8��H��H�EH�8���|��H���D��H��H��>���6����H�MHH����
�y�H�L$PH��PX�����H�L$P�A�<_�����������r����8���
H����W����� u��A������E�������+����%��������+��IcЁ�H��H��H	�H��=���� �K���� �?�������i?���� �)���� ���I��E1���,H���f��I��E1�1�H�¾H����f��H�T$hH��H��H���ډ��I�D$�-
��H�T$hI��E1�1ɾ
H���f��I�v�H��H��H��褉��I�D$����PD�ƹg"H��D�D$�q��D�D$������� u]�EhL�EHc�H��L�D$���L�D$I��C�D$�;���x�
��+��H��H�EH��+���uh��"�H�����,���c"�D��H�������H����|�����"� D��H��辱���+�����
+���
H����U�����*����� ��+����"���H���t���+���� �s���uh���H���N���� �vO���� �F���� �:��IcE���H��H	�H��E���� ����� �	��HDŽ$��� �����������#�H���ǰ��*���uh���H��議��v��L��$E1�1�1Ҿ-H���d�������#� H���u���.����#�H���^���}���������D$��T��H�EH�+��� u�Eh�D$E�+���$�H���	���܀x�
����H��H�EH����x�
����H��H�EH����uh�#$�H����x���x�
����H��H�EH�}���$�����L�d$`\$P�c���z�
���H��H�UH�����uh��$��H���b���!"��H�EH����� u"�Eh�D$E�D
���
H���wS���_���uh��#�H���
���ǃ���!��H�EHH�P�H�UHH;U@��!���x�
��!���x�
��!��H��H�EH�}!��E1��"1Ҿ�
���H�E�[!��L��L�t$PL�d$`�D$����+H���°���D$����uh��#�H���d������x�
����H���D$�H�EH�P��H�M0H��8H��$ �U������uh���H���������
H���LR��A�����H�EH�&��� uX�Eh�D$E����D�Eh�L$h��A��0�� �uH���S��H�EH����� uS�Eh�D$�����uh��#�H���n��둋��H���H�011������D$OD�Eh� ���uh��#�H���+���H�H������u�g�H�CH��tH��H�H������t�谱�H�����tH���H���p��I�H��0H����������H��0����H��H�CH��u�H�[H��u��H����I�6H�[H��tL��H���9��H��H��E1�H�پ	L��$H���X`���� H��$��T��1�I��E1�1ɾH���-`���� H��$��)���� ����� ���HDŽ$��� ���H���H��Hc�H��H	�H��>���uh����H��赫��� �7��I�\$H��t]H�;H�5�G�����t�� ����� ���HcCH�U@H�MXH�DH9�s.��� t ��	��v�� �R���� �F��H����uoA�D$�� �)��H���z��1�I��E1�1ɾH���^���� H��$����H��$������uh���H���Ī��@���� ����H���7|��H���z��H�AH�p��}����H�z��=H��T��I�V�H��H�B�uH�����u	I�V���}��H��������H������I�F�����uh��H���0���ċ��1�I��E1�1ɾH���^���� H��$����H���3���I�F������uh�+H�����ک����H���ݎ��H���e���I�F��\����uh��H��觩��$���L��H��觾��L���л��1�H��蕾���Ļ��A�U�A�M�H��H��$ I�E��$$H�#4��$ H��$(觔����<��H��H���7����um�� �7���uh��3H������� ��o���z�
�I��H��H�UH�<��H�EH����� u'�Eh�D$�����H��H�������� �����$�H��蝨��ŋuh���H��膨���n��H�pH�N�U��H�pH�N��N��H�pH�N�_Q����
H�t8H���Ƶ��lV��H�p0H�p �U��H�@0�.W��H�P0H���W���W��H���$j��H���pj���䀀�?H��j���uh��<H������� �k��H��$��� ����L��$��� ���H�d7�IH������� �Qk����SH���|���� �k��H���z��H���z��H���Ly��H�~H�H������,�Zz��H�H�H������/�Cz��H�w�:z��H�R7�_H��荴��� �k��H���t��f;Ct��� uP�Eh�C�D$�����El9Ep���� uY�ExuF���t0D���� ������D$����y"�H��胦���D$����D$�w��H�ux�p"H��D�D$H��8�ʳ�ExD�D$u�� �x���H����q"H��D�D$H�j8蒳�D�D$�N����Ep�����D$���H���}H�]XHc�Ic�E1���
����D$RH�E����IcЁ�H��H��H	�H��o3��H���]H�]X�H���)H�]X�H�5n-H��1��4W���C��H�EHA��H�P�H�UHH;U@�L��x�
�B��x�
�8�H��H�EH�+��>����}����uh���H������� �^��H����^��A������E�����������*$�H��D�D$hD�T$`D�L$P輤�D�D$hD�T$`D�L$P�@��A�A��������Z��H�EH�%��� u2�Eh�D$E�{��A�s����x�
����H��H�EH����uh�K!�H���4���H�HH9�v
�x:������ uU�EhH����T��H���Hc��H���H�]����D$9H�����H�HH9��]���x>�S���x���U"�D��H��解��Ic�Hc�E1���
�͙��D$SH�E���Ic�Hc�E1��@�
褙��D$VH�E�c��D�Eh�L$h��A��0�� ��>�����H�EH����� u>�Eh�D$E����z�
� ��H��H�UH����z�
����H��H�UH����uh�#�H���Ǣ��Ic�Hc�E1���
���H�E���� u9�Eh�D$Q���Ic�Hc�E1���
賘��D$TH�E�r���uh�A!��H���M���Ic�Hc�E1�1��
�v���D$RH�E�5��Ic�Hc�E1��@�
�M���D$XH�E���Ic�Hc�E1��
@�
�$���D$UH�E���E�����Ic�Hc�E1��
@�
����D$WH�E���H��31�H�����D$����x�
�;��H��H�EH�.��A��u�|$h����D$��\���H�EH����� ���Eh�D$E�/����x�
����H���D$�H�EH�����uh�� �H������t���z�
����H��H�UH�����C�A����������H����/1�H��$�=��E1��/1Ҿ�
�Ė��D$TH�E����uh��#�H���^���*���H�EH����� u*�Eh�D$E�@����uh�� �H������R���uh��#�H�����뿃�	����
�����H���H��#1��x����H���1�H��!�]��D�Eh�
��H�EH�^��� u�Eh�D$E����� ����uh��$�H���j������ �l���HDŽ$��� �T����� �H���2��������%H������� ����H����9H�L$P�
H��PX��uH�L$P�<_t	���1���|$h�1��H�EHL�@�L�D$PL��H��H����g����x[H�H�H;]Ps%H����;�
H��PX��u��<_tƃ�w�L�D$PH�ً��1�H���H��!L)���������D$�����Z����D$�M����uhD�L$hA��@��0��D �A������[���H�EH�/��� u>�Eh�D$E����x�
��
��H��H�EH�
����$�H���Ɲ��=���uh��$�H��謝��H�5�/H��1��YO���D$���H���DN��蟛�1Ƀ�H��H��$�H��$�H���/����
����H����C����
��H��H���̶��a�����H���H�s 1�����w���x�
����H��H�EH�|���x�
����H���D$�H�EH��H�EH����� u4�Eh�D$E�����uh��#�H��D�D$P螜�D�D$P�|���uh��#�H������H�EH�|��� u'�Eh�D$E�d����x�
�q��H��H�EH�d���uh�$�H���(���€x�
�_��H��H�EH�R��H���H�@H��v+H�xt$�� ����� ����� ���H��&L��H���!����� ����fo�$ �� +fo�$0s����K��� '��A���߹���|$h�Թ�����H���1�H�!�����H���1�H�E!���陹����	���������� �)����� ������ ������ ������ ������L�EHH����L$P�
A�x�L�D$H��PX�L$P��u;L�D$A�@�<_t-��w(�������t���
H����>������ u�뙾$H��L$�@���_H����@���L$���H���I�����R���H�MH����uh�#�H���)������
H��D�D$`�b>��D�D$`�D$P����x�
�
���H��H�EH������ u9�Eh�D$P����H�EH�-��� u$�Eh�D$E����>$�H��蔙�볹:$�H��耙��ȋuh�B$�H���i���|���x�
����H��H�EH���H�VH�B�?���x�
����H��H�EH����� ��
���D$pA��1�H�MHH���D��$��
D��$��y�H�L$xH��PXD��$���uH�L$x�A�<_t��D��$��������\$xH��D��H�CHH��H�p���a��������H��H�HCH�?I�����f�� ��H�݋\$xH�EHH�P�H�UHH;U@v
�x�
�LA�RE1�H�UHH�D$`HE@H)�Ic�H)¸����H�T$H9���H�EPL�E01ҿ
1�1�D�T$hH�EHD�L$P�.��H�|$`���D�L$PD�T$hH�EH�x�|$H��P�xD�H �X!H�EHDž�H�EX�D$p���E�ҸAI‰D$���L�CHH����
A�x�L��$�H��PX�������L��$�A�@�<_����������������H��1�H��D�T$hD�L$P����D�T$hD�L$P���H��A�R�\$xE1����A��H������t$PH����z����u=H���Hc��H����v��H�UH����x�
�J���H��H�EH�=����D$��x�
�k
��H��H�EH�^
���uh�i$�H���j��霿���l$L��L�t$PL�d$`�� ��uh�n#H���%���҃����%��EhH����F����=tv��~td��>tR����H�EHH�P�H�UHH;U@���x�
���x�
���H��H�EH���L��L�t$PL�d$`����D$F���D$���H���WF����=t*��tH�EHH�P�H�UHH;U@v�x�
td�D$��x��D$��k�H�@0�L��H��L��$E1�1ҾDH���1I��H������Eh%�����������x�
u�H���D$�H�EH��H�H�sH��T$�䀀�=H��Z���H�C�����H���������H��H���C�����Hc�$��H�sH��fo�$H��H	ЋT$s ��=H����H�C�����H����������H��H��������H���1�1����T$H��H��论���=E1�1�L��$H��H���H��H�pH��@���W���H������J���H���w���9���H��鰘��H���=����� ���H��L���G��鰝��D��D�ƒ�A��@ueA���t(H��L�\$hL�D$�L$`�t:��L�D$L�\$hE���j�H�{tGH��L�\$p�T$hL�D$�L$`�A:��L�D$�T$hL�\$pE����H�c����A������鵧�����w���H�K������tH�EHH�P�H�UHH;U@v�x�
tO��� uh�Eh���uh��$�H���ǒ�����x�
����H���D$�H�EH��x�
u�H��H�EH례x�
�X���H��H�EH�K����uh��$�H���g���H��D�D$x� �C��H�D$`D�D$xA���D$p����K���H��D�D$x� ��B��H�D$`D�D$xA���D$p�����
H��D�D$p�I6��D�D$pA�����H��D�D$p�/A��D�D$p�������H�MH騾����A�S�\$D��H�D$`D�T$P�+�� u,H�E8����u"H�HH�MH�<
t%9�ts��
t7H�EHH;EPu�H���@����u;H�EH�̾
H���5��9�tA���t��
u�H��1�H���|��A�����A��D�T$P�\$A��u�A������\$D�T$P���A�R�:����x�
�����H��A�RE1�H�EH���A�R�����D$�����D$�����uh��!�H��蠐����H���#���� ��H������H�����H�����H�����H���ݬ��H���Ԭ��H�O��H�5/�
H��$���H��$�����H��隬��H�O�� tƃ�	��w��H��H���m��H������H���1�1��a��>E1�1�L��$H��H����C��H�pH��@���’��H����������H���*��餒��H���ؒ����H�͉����=t	��:�����H�]�H��H�]I9��h����E�ƒ� t��	��v݅�t�H���<-te<_ta�H���vY�H���vQ��0��	vIH)�H��L���RP��H��H�����H��H�pH� tH�pL���+<��1�H�����M�t$P���H��I9�w���� ���I�v�H��tFH���“���� ��H���k��H��鲖��L��$E1�1�1Ҿ-H���vB���Й���� �u�L��$E1�1�1Ҿ]H��L�t$hL�l$p�?B��H��鎺��L��$E1�1�1Ҿ-H���B������L��$E1�1�1Ҿ-H���A��静��H���
k��H�������� ��g���uh���H���Í���g���� ���蝹��� �����AWI��AVAUATUSH��H��H��E1�I�GHI;GP�<A�� �.I�G8����� H�PI�WH���
��1�I��H����A��!��	�A��!��#���������t&I�GHH�P�I�WHI;W@�I�0��I���H�FR=f�8�HL�����H�+R=f�:�7ILJ@I�GI�GPI�G@I�GHI�G8I�G0I�G(���\A��!���KI��0H����I���L�c�� ����@�~A��"�'H�=�w>H��������H��w>I��H����L�
aW1ɾ4L����?��L��E1��L�
@WH�¾,�?��H�=|w>H�$H���?���L�5[w>H�D$M������k��1ɺ�L��I��L�
�V�4�]?��L�$L��L��H��L�
�V�%�??��H��v>I��H����L�D$L��L��L�
�V�?��M���'H��tL��H��L���T[��I��A��!����L�
ZVE1�1�L�����(��>��L��	L��L�
1VA�H���>��I��H����H�=���L��H��H���،�I��(M��tH����L��H��L���Z��I��H�CH�o@��uH�����tH��迣�I��A���H�_�G H���[]A\A]A^A_�fDI��8H���X���H��1�[]A\A]A^A_�f.��x�
����x�
����H��I�GH�����H���H������H�-�u>H����L�%�=H��I�<$������ILJ@I����H�=��A��������������@L���x8�����XI�GH�����I�GHI;GP�����8!����A�� ���@I�GHI�WPH)�H������8������x������ۆ�I���I�GHH��I�GHI�G@�����H�A=1�H���w�H�������@�3��H��������8���@L��L�
�cE1�1�1Ҿ]�E<��I��H������fD�����1ɺ�L��I��L�
�S�4�<��E1��L��L�
vSH�¾,��;��H�
�s>I��H���1�L�
MS�'L���;��H��tM����L��H��L���X��I��A��!�m���@���H���s��H���������f������f.��
L���+��������@L�5�r>M��tt���"��1ɺ�L��I��L�
�R�4�;��E1�L��%L�
�RH��L���:��M���H������L��H��L���7W��I�������H�=?�w��I��H�er>�l�����H�=/l
�O��H��H�ur>���I�<$H���Č�H�Ũ�����H���������������躱�H��H��I��H��虈�M��@M������A����������I���1�1�芿�A���H��I��@H���q���u�����L�������H�=q
H�$�{��L�$H��H��q>������H�=�O��H��H�Eq>�T����H�=��
�/��I��H�-q>����H�=�����H��H�q>����H�=�H�$���L�$H��H��p>�0����H�=��连�H��H��p>��A��!I�����A��!I�����I�����I��H�;���A��!�����f.���H�G0�HH9G�(HD��D��H�G �@ H��>H��?�������0�fD��H������� �fD��SH��H�?�}�H�{H���|�H�{H�C��|�H�{H�C��|�H�C[�@��SH��H�?�x�H�{�wx�H�{�nx�H�{[�dx�@��鷾���W��w1���u
H�G�D��H�H�x �����H�G �xt
H�s
�@�4�f�H�@ ��f.���H��H�5�<��t�H�@H�@ H���ff.�@��H��H�5��<�t�H�H���@SH�� dH�%(H�D$1�H��tFH��议�H��H�$H�CH�@XH�D$萱�H�T$dH3%(uH�� [�f.����脮�@��H��(H�W dH�%(H�D$1�H�B H��uH�����t
�΃���t�� uBH�@ H�H�$�B(H��H�DH�D$��H�L$dH3%(uH��(��H�����D��H��H�5��<�s�H�@H�@H�x H��������H��H�5��<�ls�H�@H�xH���۹�ff.���H��=E1�1ɺ�H�=�n>H�0��y�ff.����H��=E1�1ɺ�H�=n>H�0�y�ff.����H��H��H�>;1�H�=������H�P �J H�����SH�5��<�r�H�8H���d��H�sH���h�
H����[H�D�f���H�5\�`����H�5
\�P����SH����u[H�����tRH��ƒ���tE��u@H�C �@ ����P���e��H�@H�@�P��4���:��HH��[�fDH���Щ�ATI��H��UH��S�N��H�mH��H��tH���j~��tAH��[]A\�fDH������u�)H�=8^�y�H��H��L���-��H��襒�H����)H�=	^H����y�H����@��AUI��ATI��US��H��hdH�%(H�D$X1�H�l$0H�EH�l$H�D$H�EH�D$ ����H�D$��������1�I�$H�D$0��(H�D$@H�D$HH��t4H�|$�Ϸ��(DI�D$H�D$@��t�I�D$H�D$H��uMH��u̍{�H��L�l$8��H�L$XdH3%(uFH��h[]A\A]�D�{���~
H�T$�_���H�|$t
H�|$�K������Z���u��DS�GH����tr��uH�;�Ew�H�[�H�?�8w�H�{H��,w�H�CH�[H��t�H�{H��4t��w�H�C[�f.����f.���SH�����H�{ ��v�H�C [�@�G��tr��t�H�?H�����ud�SH��H�?H�����u@H�{H�����u#H�CH��tH�xH��4t	H�����u/[�D�+r���f��r��f��r�[�r�f����g������SH���S���H�{ [��q�f�AVI��AUATUH��SL�'M�l$M�EL�Á�uPM�L$I�q�����t-H���H;/tC�1��H�SH9l�t5H�Ӄ�9�u�L���S�
I��H��u�[1�]I�A\A]A^�1��L9��tI�D$H�[]M�&A\A]A^��F@t�9F,u�A��u�H��=I�u�H�8��
H��I�D$H�H�0@��u	H�����u
I�M�L��躕�I�D$H���t
sH�G�1��DH�H�x ��ff.�@ATUSH�� dH�%(H�D$1�H��4tbH��t]H��I��H����H�=�i>����}��u=��I����H�H��H�=i>L�$$��H�D$��s�H�����������1�H�L$dH3%(u	H�� []A\��@��SH��G��t��t@��t+�����1�[ÐH�GH�55H9Pto�P$�[�@ �DH�H�x ��H�GH�P������J��u1��BBB(��0@����B(B��t�H�R8[�R��������fDH�xH�5u�<�Pl�H��[H�@H�x�f�H��tPH�4\���<������Hc�H�>��f���r�������1��DH�GH�xH��u��1��f�H�GH�P������J��u1��BBB(��0@�����B(B��tIH�R8�R����������G��x���fDH�GH�x �s������@�ff.�@H��H�5e�<dH�%(H�D$1��0k�H�t$H�@H�x�����T$��9��Eщ�H�T$dH3%(uH����5��D��H�����H��H�H�D��H���H��tTH��t.@��th@��uH�����t
�����tO�GH�7�@H���G�o)H�FH�G�DH���G�o)H�FH�G�D�GH�7�DSH��<H��(H����H�P �BH���u	H�����uH��[�DH��H��H�D$�Б�H�D$H��[�DATI��HU��H���<SH��蒑�H�X H�S8�CH�SH�C8�ffH�C(H�C0H�C@4L�cA��u	I�����u�S ����	�S H��[]A\�f�H��L��H�D$�0��H�D$��f���H�m=AT�0H���<UH��SH�8���L�e H�h H��H��L��H�����
I�t$ H�u @��u	H�����uA�D$(f�E(H��[]A\��H��訐���fD��ATUSH���p�
L�#H��H��袁�A��H��H��L���0j�H�}H������u&H�����tH��ƒ���t��tH��H��蹹�H��[]A\Ð��ATUSH������L�#H��H���2��A��H��H��L���i�H�}H��褊��u&H�����tH��ƒ���t��tH��H���I��H��[]A\ÐAVAUI��� ATI��H���<USH��H��苏�H�h I��L�mA��u
I�������H�]��u	H�����uK�0��p�H��L���L�` H������
�1��]�
H�E�uH�����u[L��]A\A]A^ÐH��L������H��L�����[L��]A\A]A^�f�L��H�����H�]���m����_���AWA��AVM��AUI��ATI��UH��SH��H�:���D��L��L��H�EH��H��������uH��1�[]A\A]A^A_�fDH��� q�H��L��L��[L��]H��A\A]A^A_������ATH�5��<US�\f� H�p�<H��H�=H�8���H�X I��H�4H�uH�s@��u	H�����uaH�uH�s@��u	H�����u"H�}虥
H�C�uH�����uL��[]A\ÐL��踍���fDH��L��襍�L��[]A\�DH��萍�H�uH�s@��u��AWI��AVI��AUATUSL��H��(H�T$D�l$`L�L$H����H�OI��H�������<��1�L�d$�<f.�H�@L��H��H�@@H�x�ٖ�I��M��taI�JH��tX���<tN��uI�H������H��t
A���F<urI�BH�Y H��u�I�B L��H��H�x�Z�
I��M��u�f�H���8��D��L��L��H�����������T$h���g�H��([]A\A]A^A_��H�|$� L�T$H���<�-��A��L�T$H�X L�;u
I�������L�sA��u
I�������H�t$H�s@��u
H�������L�SA���o���I������b���H��L��H�D$��H�D$�H���fDH�L$H��L��L������H��([]A\A]A^A_�fD�D$h���	���H��L���!��H��L��H�D$�`��L�T$H�D$�3���H��L��L�T$H�D$�<��L�T$H�D$�&���H��L�T$H�D$���L�T$H�D$�!���1�H��L���O��ff.�@AVE��AUI��ATI��UH��SH��H��dH�%(H�D$1�H��4H��L��H�$tA�|��jH��M��M��AVH�T$H��H������ZYH�L$dH3%(uH��[]A\A]A^��
��Ĝ�@��AUATUH��SH��H�t$L�l$�Pu�L��H����~�H����I��H�CH�X@H����M����L��H���r�
H����H�HH�������������u%H�QH����H�RH���������t~H��=jH��M��jH��H��L�
H������ZYH��[]A\A]�@H�y=1�L��H��H��L����H��u�H�\$�,H�=xN��i�H��H��H����H���u��L���ͧ�H�D$��fD��AUH�5S�<ATUH��SH��dH�%(H�D$1��a�H��H�@H�$H��tsH�sH�N������|H�@L�i H�@@H�xH��tGH��L���|��I��H��t4H���L��I�t$ jM��jH�I��L��H�T$���ZY�f��H�L$dH3%(uBH��[]A\A]�H�~H���w���H�AH�p �Ff�H�xH�CH�@H�@H�@L�h �]����t��@��AVH�5C�<AUATUSH���`�I����������؃�����H��������H�{H���<� 蚇�L�3H��H��L�h �x�A��H��H��L���Fa�H�}H���*��I�4$I�u@��u
H������oI�t$I�u@��u
H������#I�t$I�u@��u
H�������I�|$�ݞ
I�E�uH�������[H��]A\A]A^�DH�����u'H����H������H��=H�8����DH�{H���<� 裆�L�3H��H��L�h �w�A��H��L��H���O`�H�}H���3��H��ƒ�������������H��H���ޯ�����f�H��<H�8����H���<H�8�v����H���(�����H���������H��H�����[H��]A\A]A^�f�H��������H���<H�8�����H��<H�8�����H���<H�8����AWI��AVI��AUI��H�5��<ATUSH��(L�$L�L$�]�H�xH��H�_ H�oA����A���AD������bI���hA���nM�eI��A��uH�����t�����t7fDH�T$L�D$L9�t"H��L���n��L�D$H����H�T$H�z袜
H�p I��@��uH�����t�������H�$I�M�&H�(H�D$L�H��([]A\A]A^A_�f.�I������E���I��t}M���6���H��=L� �+���DH���<H�8M��uH�����tH��ƒ���t��u&H��H�5�I1����DH���<L� �����H�5aI1����f�H�Y�<L� ����H���<L� ����H�!�<L� ����H���<L� ����L��L�D$�Ö��L�D$H��I��t.I��I�pL��L��L�L$��L�L$I��L������L��H���-b�I��L�D$I�����ATUH��SH��0H�L$H�T$dH�%(H�D$(1�L�L$ L�D$�x���H�!�<� H�U�<H�8��H�X I��H�+@��u
H�������H�t$H�s@��u	H�����u`H�t$H�s@��u	H�����uhH�t$ H�s@��t!H�L$(dH3%(L����H��0[]A\ÐH�����t�L�������DL���p��H�t$H�s@��u���L���P��H�t$ H�s@��u���H��H���-��H�t$H�s@���B����4����p����SH��H�� H�t$H�t$dH�%(H�D$1���H��u 1�H�L$dH3%(��H�� [�@H�S H�ƋB���R��s+H�BH�@H�|$H�D$���H�¸H��u��D����H�H�P �B���	��r�����H�H�P �B������r���uuH�H�P �B�������{�����uWH�H�P �B�������]�����u9H�H�@ �P������s	H�@�>�����uH�H�x �$��(����*��f.���H�W �B���[��sH�BH�x��
D����H�H�P �B���+��rЃ���H�H�P �B���
��r�����H�H�P �B������r���uvH�H�P �B�������v�����uXH�H�P �B�������X�����u:H�H�@ �P������s	H�@�9�����uRH�H�x ��H�xY���
��USH��H��(H�t$H�t$dH�%(H�D$1����H���GH�S H�ŋB���1��sFH�BH�@H�|$H��H�D$��H���H�L$dH3%(H��$H��([]�D���H�H�P �B������r�����H�H�P �B�������z�������H�H�P �B�������X�������H�H�P �B���k���6�������H�H�P �B���I��������urH�H�@ �P���+��s	H�@�����uOH�H�x ������H�����H�D$H�l$�-H�=�C�^�H��H��H����{�H���Xw��s����ATUH��SH��H��0H�t$H�t$dH�%(H�D$(1���H�D$H���QL�e A�D$������smI�D$H�@H�t$H�|$ H�D$ ���H��H���<H�|$ H���u
H�������H�L$(dH3%(H���H��0[]A\�f.����I�$H�P �B������������H�H�P �B������������H�H�P �B������������H�H�P �B������rc���|H�H�P �B���r��rE���^H�H�@ �P���T���*H�@����f�H�|$���H�D$���@H�B�����H�L$L��H����
H��A�D$������sI�D$H�xH�|$ ���D����I�$H�H �A������ry����H�H�H �A������r[����H�H�H �A������r=��urH�H�@ �H���h��s,H�@�o���f.�H���{��	���H�A�L�����u,H�H�x ���6�����uH�H�x �����覍�fD��H�5�<�(�{�ff.���H��H�5�<�|l��H�H��H�Ѓ��ff.���H���<�0��z�ff.���H���<H�8H�w��
f����w�����H�����|(���|;H�ȉ�E1�H��H�� H��H���H	��W�H�L�<H�5E@H�81��3��H�4�<��H�5[@H�81����f���H��1ҹ�����|���1�H��H�(�<H�8H���D�@��H���S����H��H���<H�8H�������SH��H��PH�|$H�t$�T$dH�%(H�D$H1�H��� t&H��H�����T$,���H���+�H�VH��������T$,���H�[ H�D$H�T$H�t$8H�\$8H�|$,H�X ��O�D�D$H�L$8E1�H�D$0H��<H�ދT$,H�8�J�H�|$0H�����H�D$H�D$@H�D$H�D$H�D$@H�D$H��H�L$HdH3%(uBH��P[�fDH����a�H� �S���H���N���H���<H�5h:H�81��j�����D��USH��H��(H�H�o H�|$H��H�4$dH�%(H�D$1�H�����H�K�� uH�K �� tWH����H�	�<E1�E1�H��H�8�P~�H�T$H�T$H�T$H��H�T$H�$H�t$dH34%(uIH��([]�fDH�WH�����v�H��<H�5�9H�81�蓒���`�H�<$H�H��[��������USH��H��HH�|$H�|$�t$H�t$H�T$H�T$D�D$dH�%(H�D$81�H�2�<H�(��M�H��D�D$H�L$H�D$(H�D$H��T$H�p �HD�I���N}�H�|$(H���!��H�D$H�D$0H�D$H�L$8dH3%(u
H��HH��[]��3����AVM��AUI��ATA��USH�� dH�%(H�D$1�H�FH� uH�F H�hH�H�����H��trH��A�L��L��D���K��H��H�D$���H��twH�D$H�t$�H�D$耋�H��H���b�H�T$dH3%(ucH�� []A\A]A^��H��A�M��L��D��1
�ty�H��H�D$�w�H��u�L�D$��1
H��H�=IH>�T�����ff.�f���H��(I��H�
��<��H�|$H�9H�L$dH�4%(H�t$1�I��H�q �LD�H��E1����{�H�T$H�T$H�T$H�|$dH3<%(uH��(�蘇����SH��H�_ dH�%(H�D$1�H�t$H���&��C t09D$���„��D�H�L$dH3%(uH��[�f.��|$������!����H���3j�H��H�H�D����SH��@dH�%(H�D$81�H�h�<H�H�x�\
H����H�T$H��H��H����H�t$�n���T$(��tU��t0�|$�u	���H�L$8dH3%(u_H��@[�f.�H�S �L$�B u"������„��D��������f�9�����H�*�<H�5l�
H�81�衎����ff.����SH��H��0dH�%(H�D$(1�H�u�<H�H�x�[
H��t,H��H��H����H�����H�L$(dH3%(uH��0[�H���<H�5�
H�81����蓅���������AVAUA��ATUSH��dH�%(H�D$1�������1���)�Hc��hM�H�=�G>I��H�����p��I��L��H�$��H�ŨuH�����uM��tf�H��L��腜��u�E��x[H�L$dH3%(L����H��[]A\A]A^��H��ƒ���t�H�€�H�}H�Ut���u�H��赍��H�=�F>H��tT运�L���A��H�$�K��Ic�L��H���G��m����H�=��
��r�H��H�uF>���H�=%v
���q�H��H�MF>����ff.���SH�^ H�s�~v�H�3H���sv�H�s[H��H���bv�f���SH��1��A��H��H�����H���n��[H�D����H�=�E>AVAUATUH��S�H����S�H�Q9��_���H��H��H��H��H��H��H�H�BH)�H�|E>H�H� t(H��L�,�H9,�u(N�d([]L��A\A]A^�DH�@ L�,�H9,�t��A��H��H���<H�8�o��L�5E>I��L���T�H�,�@��u
H�������L���.F�H��D>H���_T�N�d(A��u	I�����uSH���F�[L��]A\A]A^������y�H��H��D>�g_���H�=�D>�E�����@L��H����o��H��L����o��b����AWA��AVI��AUA��ATUS��H��H���<L� I�l$H����W
H����I����H��tSH����A���gA��uI������tA������IM9p��H��L��[]A\A]A^A_�DM��H��L��L�D$I���!j�H��t��t
L�D$L9@(A��A��L��L��H��L��[]A\A]A^A_�n�f.�L����L��H���ѐH��8H����V
H��������E��H�D$H��0H��0HD�H�5�01�H�=�4�`�L�D$L����H�����M��H��L��I���]i��N����L����
I��L�pA�����I���������L��H��H�D$�
n�L�D$���H��<L90tH��L��L��[]A\A]A^A_���H��L��[]A\A]A^A_�u�H��<H�56H�81�芈�f.���H���<1�1�H�8����f���AUATUSH��8dH�%(H�L$(1Ʌ���L�.H�Ѝo�L�fH�L$H�T$H��L�L$ L�D$L���~�H�\$ �Tg��uXH��<H�81�H���H�{�Ͼ�H��H�SI�ى�jM��L���X�ZYH�\$(dH3%(u9H��8[]A\A]���i�H���<H��H�:�HD�떃����j��~����H���<1ҾH�8���fD���wd����H�m�<�1�H�8���fD��ATI��1�U��H��1�S�g���L���H��H�����H��[]A\�f.�����AVAUI��ATI��UH��S蒘�H�=�-H��1��q��H�ËE��t"������ti��u,H�EH�h �E��u�H�UH�5��H��1��/|��M��tL��H���xT�H�ߺH�5l��o�H��[]A\A]A^��H�ML��H�5`-1�H����{��fDH�mH�EH�xX�Z�H��I���T}�E��L��H��H��H�5-1��{��m���D��H�w H�
-��F HD�����ff.�@��H��H�5�<�\��H�H��H�Ѓ��ff.���AWAVAUI��H��ATA��H��USH��H��HdH�%(H�D$81�H�l$���
�T$����H���T$H�P A�D$�HE���I�EH�|$(H�D$(�^�I��A����I�}H�|$ �O|�H����M���5H�D$ L�x M�oM�e I9��:A���I������,I�$�ʃ����L��H�߉T$H�$��H�$�T$H�������H���<H�8��t	����L��H�5y01��:��f.�H�|$ ��r�H����M��u
H�|$(�ކ�I��H�|$ ��
H�p H���F�����u
H�FH��t�N D�E�L��H��A���t�EtsH�l$ H����s�A��L��H��H���H�KfDL��H�����H������ �ML��L��H�߃���$�E��H�D$ H�D$0H�D$ L�����H�L$8dH3%(��H��H[]A\A]A^A_�H�!�<L� I�|$�lP
H�����t_H��L��H��H�!�<H��!h�H�D$ ��������H�H�P �B��wx������H�B����<�(�uH�����t������H�D$ �W���@L��H�����H��������H���<H�8���f.����>H�H�P �B���l������"H�H�P �B���P������H�H�P �B���4�������H�H�@ �P��wq�����H�@����I�oH����q�L��H��H���#�B���@H�|$(�^��I�����fDH�5y-1��r��f�H���hn������ueH�H�x �2���g�����D���d��x�H���<H�5�.H�81����H�|$ �p�H�5�,H��H���<H�81���f���U��SH��H���<H�H�@8H�X@H��uH���<��H�H��H��[]�C���H�=-1�H�t$�=o�H�t$H����H��[]�������UH��S��H��H���p�H��H���H��[]���fDSH���n�H��t
H��[�DH���w�H��u��1
H����z��uӾH�=\'�E�H��H���<H�8�U�H���J^�f.���AUATUH��H��SH��H���4w�H����@����@���7������IH����@���uH�E��������ڃ����!H���w���NH�SH9�u]H��H�5��<�v<�L�m L�c I�}H�_H��uH�_ I�t$H�nH��uH�n �
H9�u��tI�D$I9E��fD1�H��[]A\A]�H������F���H����H���3���H���<H��(���f�H������E���H����H���2���H���<H��'����H�)�<H�����H��<H������H�A�<H�����H�1�<H������I�$I9M�5����2����H��<H�����H�	�<H�����H�Q�<H��`����H�A�<H�����H�I�<H��@����H�9�<H��g������ATUH��SH����u	H�����u'H�=��
�(�#C�H��H��H���U`�H����[�H��ƒ���t��u��u�H�='�
�)��B�H���H����|�I�ċ������w��"H�=�)L���B��v���f.�AUATA��USH��H��H�l$H�t$H���V��ti�����ڃ�����H��������L�kH���<H�
H��uLI��H��D��H��L������H����H��[]A\A]�@H�����u�H��tAH��u�H���<L�*�E��H��L��H���o��H��[]A\A]�@H���<L�*�v����H���<L�*�f����H��<L�*�V����H�a�<L�*�F����H���<L�*�6���H�t$L���$���@��1�����D������f���SH��H��H�|$H�t$�EU�H��t&H���<H��A��4H�
H�����H��[�H�t$H�����ff.�f���SH��H��H�|$H�t$��T�H��t#H�A�<H��E1��4H�
H���C��H��[�H�t$H���P�����AVH���<E��AUI��H�5D�<ATA��H��USH��H�(�8�H�84tIH���L�HHD�H���I�y����H��I�QD��M��AVH�0H���K�ZY[]A\A]A^�H��<H�5R'H�81��hz����H���H��L��H��A��sE���AUA��ATI��UH��S��H���rY���u!H��E��L��H���[]A\A]�/E���3\�H����ff.���ATI��UH��S���Y���uL��H���A�[]A\��D���[�H����ff.���E1��D�@��ATI��UH��S���X���uL��H���[]A\�f��[�H����fD��H��H�dH�%(H�D$1�H�t$���9D$t��H�T$dH3%(uH����xp����H��dH�%(H�D$1��!fDH�x�����u1H�@ H�w H�x谈�H��u�1�H�L$dH3%(��u H���f�H�t$����T$����9�E�����o�f���@��t&@��u@������tVH��t`@��tjH�遊�H�����u�H��t!H��u�H�]�<H�8��H���<H�8�Q��H���<H�8�@H���<H�8�@H�Q�<H�8�@H���<H�8�@��H��H�5!�<�4�H�@H�@H���ff.�@��H��H�5�<��4�H�@H�xH���ff.���H�W H��t�B �������B��t��t)��tH�:���H�BH����H9Pt1��@H�B�H��t�H�x�4U�@��H��1���k�H��H���u���D�����t��t(1���t�f�H�1��k�DH�G�H�GH�x�ff.����<uH�H��u
����m�H������H��H�������H��H�5��<�|3�H�@H�xH���ff.���SH��H��dH�%(H�D$1�H�t$��j�H��t%�t$H����y�H�T$dH3%(uH��[�H���hP�������:m�f.���SH����S�H��t1�H��[�y�H���x��[������AWH�5ә<AVAUATUSH��H��XH�|$8�2�H��H�����H�=�H��1��y�H�]I��H�ރ�u
H������BH�UH�J���<��L�jM����A��u
I�������H��u'H�����tH��ƒ���t���A�H��L�5�%�q`�L��H���u�L9��]L��L���B�H�EH�x�G�L��H���zI�H�UH�BH�x H9zt!��F�H�5X�L��H��1��j�H�EH�@���<��H�|$8����H�=P,>H��H������w�H�=0,>I��H���d�w�H�=,>I��H���,�w�H�=�+>H�D$H�����w�H�=�+>H�D$H�����sw�H�=�+>H�$H���_�Zw�H�=�+>H�D$H���%�@w�H�=i+>H�D$(H�����&w�L��1�H�5�H�D$0��\�H�sH��D$LH�t$ ��f�H����I9���H�D$ J��H� ��H�PH�HH�RH�������I9��XI9��OH9$��H9L$��H9L$(�H9L$0��H9L$�AH9L$��H9$�H9L$�1H9L$(��H9L$0�kH��� ��H��H����H��L9�����Lc��� ����L;{��H�C J��H� ����H�P H�
H�RH���������I9�tZI9��E���H�5�L��1��g�H��� �x���@H�SH��L9��z����H�56x
L���3[�H��^���H�5��L��1��Wg��"���f��H�=��
H�L$@�Z?�H�L$@H���f���DH�5�L��1��g����f�L��H�5��Z�H�|$8���H��t)H� ��H�@ H�HH�H�5?�
L��1���f�L��H�5	�oZ�H��XL��[]A\A]A^A_�D1�H�=k�
H�L$@�>�H�L$@H�������H�5FL��1��_f��*���f.��*H�T$@�At�H�T$@H9���H�5L��1��"f����DH�5�L��1��f�����f�L��H�5�L��1���e�����H������L�j �����A�E��������M�m��������������H�[H�ރ�����H�5WL���,Y��D$L�/�����&H�T$@�Is�H�T$@H9����D$L���bI�$�� �nH����H�p�L���`�����f.��H�=�H�L$@�
=�H�L$@H���i���DH�AL�h �����H�5�L���tX������H�=��
��'T�H��H��&>�]����H�=��
��S�H��H��&>���H�=I����S�H��H��&>�|���H�=w�
��S�H��H��&>�D���H�=C���S�H��H�=&>���H�=;�
��S�H��H�%&>���H�=�W
��_S�H��H�
&>�H���H�=X�
��?S�H��H��%>�����H�=��H�L$@�;�H�L$@H���	���DH�5_L��1��gc��2���f��H�5L���W��N���H�߾�:m�H�}I��H��4��H9�t~�Y�L��L�5.�
H���=n�H�5�L���V�L����X�L��H���n�H�5�L���V��p����H�5�L���yV����I�D$H�p�����X�L��L�5��
H���m��-���H��L�5��{X�L��H���m�����ff.�����AWAVAUATUSH��H�_ �C��t)�������M���TH�H�X �C��u�H�CH���H9P� L�`�H�=���1�H�5��<L��H���Y)�L��L�0�>J�H�5g�<L��I��H�CH�X�4)�H�@H�P����h<�x�c9
I�Nj{ ��s�S H�sI��I��H���\L�KL�C1�L��1�D�T$M�I)�L��L�$�V-�L�$D�T$H��I��D�P I�AM�y�A��uI�����tL��H���qP�E1�E1��H��H��1�M���d�A��H�C�u+H�����t#H��H���6P��@A�E1�E1�A�4H�o�<H���<�0H�8��O�H�X H��L�3M��u
I������I�t$H�s@��u
H������#I�T$H��H���K8
I�D$H�p@��tDM��tWI�EH�p@H�s @����L���)K�H����>�f�C(H��H��[]A\A]A^A_�H�����t�H���WO�M��u�f��	H�=��/�H��蒌��H�C �uH��������f�C(�H������r���H���N��e���fDL�3H�CL�kM��L�`A�����DL��H����N�I�t$H�s@���������DH���N�����L�zM����������fDH�BH�P�g���H���v�H�sD�S I������H��H���EN��"���H���<H�5H�81��i����H��tH��^�fD��f���H��H��H�=����1��D��SH��H�� dH�%(H�D$1�H��H�4$�H�|$1��^�H�S H�=���H���Z ��8�H�H ����Q ۃ�	ӈY H�L$dH3%(uH�� [���_����SH��H�����H��[H���d���@��USH��H��H����H��1�H���H�=���H��� D�H��H��H�@ �H ��H��H��H��[]����ff.��SH��H�� dH�%(H�D$1�H��H�<$1�H�t$��]�H�S H�=���H���Z ��7�H�H ����Q ۃ�	ӈY H�L$dH3%(uH�� [���^����SH��H�����H��[H���d���@��USH��H��H����H��1�H���H�=���H��� C�H��H��H�@ �H ��H��H��H��[]����ff.��ATI��USH��H�� dH�%(H�D$1�H�<$�H�t$H��H�T$��`�L��H��H�C �X �G�H���|G�H��H�=r����6��H�H ��Q ��	ӈY H�L$dH3%(u	H�� []A\��]����AUI��ATA��UH��SH��H�z dH�%(H�D$1�H�t$�+���A����Hc�E��u9L�d��\�L��H��H������H�L$dH3%(u_H��[]A\A]�fDM�eI��t�L���:�H��I���T�H��t��T$A9�|
���t�D9�}���D���H�1�D���H���\�ff.�f���UH��H��H���S1���H�=B���H���IA�H���H�P �J H��H��[]����ff.���AVH�FAUATM��USH� uH�F Hc�H��H�XL�(L�p�_�H��H���a�H��H���E�H�+�� t9L��H���9��H�H9�~6I������L��H��L��[]A\A]A^���L��H�k��8�H�H9��H�3��uZ�� t"H��H�S��[L��]L��A\A]A^�L�@H�sH�S H�����v�H�x�<H��H�5�
H�81���c�@H���02�H�3�ff.���ATL�%��<H�=��USI�4$�8�H��<H��H��$�H�;�����H�p��H�5�
�$<�H�;A���	�1
��H�=�

��f�H�;A���	H�����H�=6l
�f�H�;A���	H�����H�=�J
�}f�H�;A��H�ƺ	��H�;1�H�&���H�5�k
�6�H�;1�H�.��H�5�
�6�H�;1�H�6���H�5Z��j6�H�;1�H���
H�53��R6�H�;1�H�6��H�5�
�:6�H�;1�H����H�5}
�"6�H�;H�n
H�5H
�X�H�;1�H��<H�5
��5�H�;1�H�����H�5$���5�H�;�����H���H�5�	�5�H�;�H�����H�5O
�5�H�;�H�����H�5���5�H�;1�H���H�57��s5�H�;1�H���H�56��[5�H�;1�H�o���H�5m	�C5�H��<H�=i	H�0�M6�H���<1�H�-���H��H�5<H��5�H�;1�H�����H�5��4�H�<�<H�=(	H�0�5�H���<�H�=	H���H�3�H����
1�H�5���H�=����1�H�5���H�=*����I�4$H�=#	�5�H�Ѿ<H��H��"�H���k����ƒ�����H����<��H�xH�5��ck�H�;�H�t�H�5Ki
�4�H�;�H�Y�H�5^
��3�H�;1�H�����H�5��
��3�H�;1�H����H�5���3�H�;�����H��H�5QJ�3�H�;�����H���H�5�h
�3�H�;�����H�x���H�5��l3�H�;�H�}���H�5�
�Q3�H�;�H�b���H�5B��63�H�;�����H���H�5�	
�3�H�;1�H�����H�5�3�H�;1�H���H�5'
��2�H�;1�H���H�5.
��2�H�;1�H�W���H�5�g
�2�H�;1�H�_���H�5�g
�2�H�;1�H�����H�5��2�H�;1�H�O���H�5��s2�H�;1�H���H�5��[2�H�;1�H�_���H�5��C2�H�;1�H�'�H�5��+2�H�;1�H���H�5��2�H�;1�H�G���H�5��1�H�-�<H�=�<�H�5��H�}��1�H�}�H�H�H�5R�1�H�}�H�����H�5���1�I�4$H�=4�2�H��<H��H���H���S����ƒ�����H����<�H�xH�5��{h�H�;�H����H�5cf
� 1�H�;�H�q��H�5v	
�1�H�;1�H�����H�5Ū
��0�H�;1�H�1���H�5Ŕ��0�H�;1�H�Y���H�5��0�H�;1�H�q�H�5�
�0�H�;1�H�Y�H�5�
�0�H�;1�H�����H�5��u0�H�;1�H�9���H�5��]0�H�;1�H�Ѥ��H�5��E0�H�;�H�6���H�5��*0�H�;�����H����H�5��0�H�;1�H���H�5���/�H�;1�H�{�H�5����/�H�;1�H����H�5P��/�H�h�<�H���H�5kH�;�/�H�;�H�&�H�5F�/�H�;�����H�K��H�5r��o/�H�}�����H���H�5i��S/��nH���K�[]�����H����H�5/�H��A\�g]��H���������H��tnH�������H�v�<H�8���fDH����������H��t.H�������H�F�<H�8���fDH���<H�8����H�i�<H�8�r����H�Y�<H�8�J����H���<H�8�:����H���<H�8�*����H���<H�8�2����H��<H�8�
����H��<H�8�����H���<H�8�����H�y�<H�8�������H�5�<SH�=�H�0�%/�H���<H��H���H���8��`�ƒ����rH���x<��H�xH�5��d�H�;1�H�Ԯ��H�5���-�H�;1�H�̭��H�5a��-�H�;�����H�����H�5���e-�H�;1�H�����H�5�j
�M-�H�;�H�޾��H�5
�2-�H�;�H�s���H�5�-�H�;�H�X���H�5��,�H�;1�H�@���H�58b
��,�H�;H����1�H�5����,�1�H�5s��[H�=����fDH��������H��t.H������H��<H�8����fDH�y�<H�8����H�)�<H�8����H���<H�8����H��<H�8����H���<H�8�u���������fD���+�����+������fD��UH��SH��H�GH�x8H��tH�H���H���s�H�EH�UH��H�BH�茎H��1�[]����W ��uSH�������C ��t�1�[�1��ff.�f���B�<v�� uH��fDH���D�B�A��v� t���tiH��H��H��u-E1�H���
H�5
1�H�=��^"��9L�H���f�L�NE1�H�{�
1�H�5�H�=��K��L�H��Ð�ff.�@AVAUATUS�/D�u����_A��CŃ�A��wpA��H��H��A��Hc�H�>��H����H��
uCH�5H
�'��u3�A��tbE��t%��A��wDH�����t
��A��v����[]A\A]A^��H��u�H�51�
�F'�¸	��u�A��u�DE��t�A��w�DH�����t���a��v��H����H��u�H�5���&���L����r����H���a���H�5�c
��&�¸�������A���fDH���1���H�5��&�¸���������fDH���H�������H�5��X&�¸�����������@H����H���|H�������H�5l�&�¸
���o������f�H��th�����H�������H�5g��%����H�5aH����%�¸���!����G���@H�5�%���/�������H�5�%�����������H�5��h%��������H�5��J%����������H�53�,%�����������H�5��%���������d�����Z���f���SH���s(�H���&��~D���Oڅ�~ ��9�~Hc��
��<[H�D�f.���[Hc��
��<H�D�H���<��H�5fH�81��tS�@�n�<��x�DH����%��x�L�<H����:�<�H���ff.����H�����H��H�H�D��AWAVAUATUSH��hH�|$dH�%(H�D$X1�@��uH���O!�H��u1H�|$�3�H�L$XdH3%(�3H��h[]A\A]A^A_�@H�|$�0�L�mI��M����M�}I�E ��L��L�t$�V�L��L�l$ H��H���C��7G���G�H�}A��"��H������H���]�H�}L�H� tL��V�H��L��M��H��L��L����Q�A�Dž�u�H�D$H��t`�@����M�}�S�����F��#�H��HH�H���z_�I��H�E����1��GO�H�54�D���X���H�H��<L��H�5!�H�81��XQ��AWAVAUATUSH��XH�|$dH�%(H�D$H1�@��uH����H��u1H�|$�o1�H�L$HdH3%(�3H��X[]A\A]A^A_�@H�|$�N/�L�mI��M����M�}I�E ��L��L�t$�OU�L��L�l$ H��H���\A��E���G�H�}A��"��H������H���[�H�}L�H� tL���T�H��L��M��H��L��L���da�A�Dž�u�H�D$H��t`�@����M�}�S�����E�."�H��HH�H����]�I��H�E����1��M�H�5��D�����CG�H�4�<L��H�5��H�81��O��UH��SH��H��(dH�%(H�D$1��F�H��H�5�H��H�@H�$H�D$��a�H�D$H�H�$H�L$dH3%(uH��([]��F���SH��H�?�C@u�JK�H�{�AK�H�{�8K�H�{�/K�H�{ �&K�H�{(�K�H�{0�K�H�{8�K�H�{X�K�H�{p�J�H�{x��J�H�����J�H�����J�H�����J�H����J�H���[�J���ATI��USH�� H�*dH�%(H�D$1�H�|$H�|$H�t$�,�=H��H���*?�H��u|L�D$I��tH�|$�,�L�D$�H�=UZH��H�T$�����t<L��H���a@�H��H�@H����\�1�H�L$dH3%(u.H�� []A\�M�D$�H�*�<H��H�5�H�81��M��E�f���SH��H�� dH�%(H�D$1�H�|$H�|$H�t$��+�H��H���u�H�5�H���6�H�|$�+�H��H���L�H�5�j
H���6�H�L$dH3%(uH�� 1�[��{D�ff.���SH��H�?H� u$H���S�s��>�C�A��C1�[�@H���f���H����H��H�H�D����H���s�H��H�H�D����H��1�1����x
�H���1��
�f.�S�1�����Y�ƒ��t%u[Ð�߀�1�[��Y�ff.���PXH����w5t
��%�H�H��t�1�H��t�H�Ǩt	�Y �����06���Һ1��/�UH��SH��dH�%(H��$�1�H��H���&���t1H��H�޿�S��u.H��$�dH3%(uH�Ę[]�H�=B��	��B�H�5<����
�H��H��1ҿ�R��uH���H�5������fDATI��UH��S��H�� dH�%(H�D$1��D$��tk������P����~
�jO����H��t$�}���}����?��|$M��u��u}�����H�t$dH34%(ucH�� []A\�H��H	�t0H�T$�H�=�'��D$M��tA�$��t�H��u��f���F2�1��f��D$�W5�D$��A��\����H����F�H����H�D����H���3 �H����H�D����H���c0�H����H�D�������H���������xH���1���ff.���H���S�H����H�D����H���	��xH�H��H�D�1��l�ff.����H��1��q6��xH�H��H�D�1��:�f.���H���P�H��H�H�D����H�5>��ATI��US��@�����݃��E<��t?��uSL��[]A\�D����H����H�‰�1�L��H�5���">��u���1�H�5��L���
>��t�L��H�5~��1�L��[]A\�fD����6�H��t!H�‰�H�5�L��1��=��I���fD��H�5�L��1��=��+������H�5��L��1��}=��������H��>H�0�]G�ff.�f���H9�t'H��>SH��H�0�4G�H��[H��������f.���H�5�>�@8����4��AUI��ATUSH��H�L�#H9�u%�}H�{H��t��I�$L��M9�t`I�ċS,�{$H�s(���8�Ņ�tك��u
�;��C0H�CH��k H�BH�H�CH�[H�H��t�H�x8L���_�I�$M9�u�H��[]A\A]�ff.�PXH�5��H��H���<H�81��bF�f���AUATUSH��dH�%(H�D$1���>H�$��uyH��I��H��H��H����H��L��A����H��H��A����H�<$��H��u5��D��D�����u7H�L$dH3%(�uH��[]A\A]�@1��yC����2����-=�1����fD���>S��u*�lB�����ډމ����x�؉v�<[H�D����1���ff.���ATUSH��dH�%(H�D$1���>H�$��ucH��H��H��H����H��H��A����H�<$��H��u0��D����?��u5H�L$dH3%(�uH��[]A\�@1��B����:����5<�1����ff.���USH�����=�����cA������9�u.�=x�<9�ty�����#��H�\	��u7H��H��[]�D��H�\����#��t����=�
+�<�����=H�='�<H���H�/[]���s���1������PXH�5W�H��H��<H�81���C�f�����=S��u*����U*�ډމ��z1��x�؉��<[H�D����1���ff.�SH��H�|$@��u`@��tt@��u	H�����u[���H����H���TL�H�XH����%�H�{P���C��x}H�H�DH��[�f�����f������u�H�|$��H;-�=t#H;�=t*H;�=u@��f.���f���H�
�<H�5�H�81��B�H��<H�5��H�81��iB�H�ڢ<H�5��H�81��QB�AVAUATI��UH��SH��H������u	H�����u8H�����L��H���4�H��H�@H���Q�[H��]A\A]A^�fDH��ƒ���u�E1�L�k�Gf.�H����H9�}�L��H�<�A���D���L��H���4�H��H�@H���P�H�Ic�� u�H;S����H�C ��s8�H��H�@�-��������t��t	�|-�@��f�ATE1�I��1�U1ҿSH��1�H�����H��H���,�H�E[I�,$]A\��AWI�@M��AVI��AUATU1�S��H��(H�t$H�$H�D$��H����H9�� H�D$L�,�I�EI�E uI�E H�8�-�H�<$Lc�I��O�L	L��L�L$�0�L�L$H�������M9>��H�D$L;8��I�EI�E uI�E H�PH�<$L���'�D9�AL�M;>t+H�D$L;8t!H��I��� �A���I;o}kI�G �G���f�I�MI�E uI�M H�y�u�9�L��fDH�<$H�����L���
��H�<$�L���
��s���f.�H��(��[]A\A]A^A_�H��<D��H�5�H�81��t?�@PX�H��I��H�=�IH�������u
I�8�5D�DH���x���AWI��AVI��AUATI��UHc�S��H���P�Hc؃��u'��3�8	�91�H����[]A\A]A^A_�fD���Y@�M�l$pM������H�\1��xL�H�l-���t~���H��H���1�H�@H��H��L���M�I�l$xH��t+H�߾1���0�H��H�@H���iM��]���@�K5�H�@H��I�D$x�f�M��tM��tL��H�5��L����@H��H���u0�H�@H��H���L��X������4�H�@I��I�D$p���fDM�������M�������L��H�5@uL���������AUI��ATI��U��SH���9��t�0�[2�8uL��L����Y	�H��H��x�H��H��[]A\A]��.2�H�=��0����=S��uF���9�9�t"�ډ޿�������x"�
�<��[�fD������މ��
��y�1�����Z���f.���H���*�=���H����H�D�ff.�f���=S��uF���~��9�t"�ډ޿�����\*��x"�r�<��[�fD������މ��:*��y�1����j���f.���H�����=���H����H�D�ff.�f���ATI��US��1��L�H�Ņ�t5��u7I�<$��E�H��H����=�1���L�[H)�]A\H�D�����ݺ1�����ff.�����fDI�Ѕ�~f�F�L�L��H�7H��tKI�H��tBH��H9�}H��H���	fDH��H�H��H��H��u�H��tH��H�H��H�I�H�H��I�H��I9�u��f�AWI��AVAUI����ATUH��L��SH���H��(L�D$dH�%(H�D$1��U���I�:H����H��������IcEH����&�.H)�H��H��?H��H��H)�H9�������Hi�ʚ;IcUHЅ�~MH�UH��H���|H�M�s�L���&�H�H��H��@��H��@��H���IH��L9�u�H�\$H�H����H�H��H���R�H�\$dH3%(��H��([]A\A]A^A_��H���>����H9������A�����L�t$��*M��H��H�=��=H�D$�5w��IcUM��H��H�=;�=H�TH�T$�+�w��I�ą�~IE1�L�=��=fDJ�|�H��t%��L��M���*L��H�D$�3��I��I��D9��H�D$H�8�Z�M��L��/H�=��=H�D$�����@�+�L�t$��*M��H��H�=��=H�D$�5w��IcUM��H��H�=[�=H�TH�T$�+��I�������H��H�H��H���^����0�����fD����fDH��H��H9�tH�PH��uDH�PH��uKH�H9�u�H��H��H9�tH�JH��u7H�zH��u>H�H9�u��DH�z8鷈�H����{�H�y8闈��{ff.�AUATUSH��H�T$@H��$@H�|$0H�t$H�L$HL�D$L�L$(H�T$8dH�%(H��$1��D$XH��tH���<H�H�H�D$xH��$�H�$H�D$lH�D$H�D$`H�D$ H�D�<H�\$xH�8�(�H�8�<H�8�(�H�<$�W�H��tH���jmH�T$H�t$ H�|$\�v������D$`;D$l����=�Å��
�+�H�|$x�(H��tA��~8H�t$8H���t-H��<�^$H�H��H��H�NH�H�rH���mH�<$�5���#H�T$H�t$0H�L$X���K������������H��$dH3%(���PH��[]A\A]�����9���;D$\�/���H�T$pH�t$hH�|$d�*�����D$h;D$p����;D$d������dG����������H�D$��8����H��u	��
������A��1����%�H���u��a*�H�ŋ��t�H�|$H��tH�L$(H��tH��H�5%����E�H�L$�D$tL�d$t�Y�D�E�����L����@�H��x�H�|$t+H�|$(t#H�D$H�L$(�D�H���1�I��H��������߾����$��A�+���H��$�H���;�1�H�޿�!��uuH�T$(H�t$H�|$HH�D$@�Ѕ�tT�^)�H�ŋ�$���@�D$t�O����L�l$�f��}�a���L��L����?�H��x��J���1��X�H�|$t�H�|$(t�H�T$(H�|$H�5���r���z���H�=���!��H�=������P+���U1�1�H��AUATSH��dH�%(H�E�1������HA��Hc�=���H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����H�\$H���H��D���}�A�Ń�����*�I��E��~$A�E�L�l��3L��H��H�t6�B�I9�u�H�}��'7�L��H�U�dH3%(��H�e�[A\A]]�fDH��������1�H��H��H��H��H9��H�r8H��H�}�H��H��H��H�����H���=���DH)�H�L��!���f���V�1������)�f.���UH��AWI��AVI��AUATSH��HH�}�dH�%(H�E�1�H�E�A����H�������H��؃������� ��H�^Hc�A��H9����Q��9����ف���H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u���/L�d$I���E��~a�A�L�m�H�E�I�GH�E��%@H�E�J�<�L������C��I�FL9u�t*I��I� u�I�G ���H��������@H�}�H����L��H����>�����H�}��5�H�}����H�M�dH3%(��H�e�[A\A]A^A_]�H��1�H��H��H��H��������H9�H�rPH��H�}��]�H��H��H����M�I����f.�1��-��Q���@H)�H�L�����f��H���
�L����1��?���z'�H����5��}��H�5����H�U�<H�81���/���SH��H��dH�%(H�D$1�H��H�$���H�<$��H��u!H�T$dH3%(��H�DuH��[�@1��1-�����&�f.���USH��H��H��dH�%(H�D$1�H��H�$�0��H�<$��H��u%�����H��H�T$dH3%(uH��[]�@1��,����r&�f���USH��dH�%(H�D$1��<�=��uUH��H��H�$H�����H�<$��H��u+����H��H�T$dH3%(uH��[]�f.�1��9,��������%�ff.�f���SH��dH�%(H�D$1����=��uVH��H��H�$�*��H�<$��H��u/������u7H�T$dH3%(�uH��[�f�1��+����b��]%�1����fD��SH��dH�%(H�D$1���=��uVH��H��H�$���H�<$��H��u/�����u7H�T$dH3%(�uH��[�f�1��+��������$�1����fD��USH��dH�%(H�D$1����=��u]H��H��H�$H�����H�<$��H��u3�����������x4H�L$dH3%(H��uH��[]��1��*����:��5$�1�����ff.���AVAUATUSH��dH�%(H�D$1����=����I��H��H�$L���\��H�<$��H��uq���tx�����9E�<A��A��DE���9�DE��)��D��9�D��E��!���xL��<L��H�L$dH3%(u?H��[]A\A]A^��1��)��4��u��ډމ�����y�1�����5��0#���SH��H��dH�%(H�D$1�H��H�$�4��H�<$��H��u!H�T$dH3%(��H�DuH��[�@1��)�����"�f.���USH��H��H��dH�%(H�D$1�H��H�$���H�<$��H��u%���^�H��H�T$dH3%(uH��[]�@1��(����R"�f���SH��dH�%(H�D$1���=��uVH��H��H�$�J��H�<$��H��u/���5��u7H�T$dH3%(�uH��[�f�1��(����r���!�1����fD��SH��dH�%(H�D$1����=��uVH��H��H�$���H�<$��H��u/�����u7H�T$dH3%(�uH��[�f�1��'�������=!�1����fD��USH��dH�%(H�D$1����=��u]H��H��H�$H���&��H�<$��H��u3���������=��x4H�L$dH3%(H��uH��[]��1���&����J�� �1��^��ff.����n�=ATUS����I����������9�u5�5߸<9���H�t6L���������H�l	��u:H��[]A\�f���L��H�l-H�t6�������t����=�
��<�����=H�=��<[�H�"�]A\�Z���u�1���)��f�ATI��I��L��UL��H����SA��L����f�f���I*$�Y��*M�X�E��~#A�C�L��I�D�f��H���H*J��Y�H9�u�H�0f���H*�^�fH~�H9�tHfH~�H��<������tH��H��u%[]A\�fH~�[]H��A\H��H���f.�[]A\�W���AUI��ATI��UH��SH��H��H�=+�=�*�H9���H�=�=��*�H9���H�=��=��*�H9���H�=��=�*�H9���H�=��=�*�H9���H�=��=�*�H9���H��tH�=w�=�z*�H9���H�uM��1�H��L��H��[]A\A]�S���I�$ʚ;H�uM��H��L��H��[]A\A]�G��I�$���fDI�$@B�fDH�uM��1��DI�$@BH�uM���o����I�$�H�uM���O���H�h�<H��H�5�H�81���%�ff.����UH��H��SH��(H�t$H�t$dH�%(H�D$1�H�D$�H��H�|$��H��u<H�|$����H������u2H����H�L$dH3%(uH��([]�D1��	#�����1��{��ff.���SH��dH�%(H�D$1��y�=��uVH��H��H�$���H�<$��H��u/������߉����x0H�L$dH3%(��H�DuH��[�1��y"�������-�1�����fD��ATUSH��dH�%(H�D$1����=����H��H��H��H�$H���
��H�<$A��H��uQH��H��H�$����H�<$��H��uC��D������u>H�L$dH3%(�u5H��[]A\��1��!���1��!��1�� ������V�fD��AUATUSH��dH�%(H�D$1���=����H��H��I��H��H��H�$�8��H�<$A��H��utL��H��H�$���H�<$A��H��uuH��H��H�$���H�<$��H��uG��D��D�����uYH�L$dH3%(�u?H��[]A\A]�fD1�� ���1�� ���1�� ������U�1����ff.���H��@��t�=�����
�4H���@�
���
�4H���f���AVAUATUSH��dH�%(H�D$1����=����I��H��H�$L������H�<$��H��uq���tx�����9�<A��A��DE���9�DE������D��9�D��E�����xL��<L��H�L$dH3%(u?H��[]A\A]A^��1��y�����u��ډމ����y�1������������H��h1�dH�%(H��$X1�H�t$0������H��$�������������f��f�H�0�H*L$0�H*D$8�^�
�X�fH~�H9��BfH~�H��<��������H��H���f��f�H�D$H�0�H*L$@�H*D$H�^��
�X�fH~�H9���fH~�H��<��������H��H����f��f�H�D$H�0�H*�$��H*�$��^B�
�X�fH~�H9��HfH~�H��<��������H��H���f��f�H�L$H�0�H*�$��H*�$��^һ
�X�fH~�H9���fH~�H��<�������I��H����H�T$H�t$1�L�D$ H�=��=���H�T$H�T$(H�T$H�T$H�T$(H�T$H�T$H�T$(H�T$H�T$ H�T$(H�T$ H��$XdH3<%(��H��h�DfH~�H��H��H���#���f�����H�L$I���Y���fD����H�����������Y���fD�������fDfH~�H��H��H���-���f�H��I��I��I�����@H��H��H��H���o���H�=����������H��H��Z>H�0�	�H�Ǩt�������H�H�����@������H��H�qZ>H�0���H�Ǩt"���<��HE�H�����K���f���H��H�!Z>H�0�y�H�Ǩt�=��H��H��8H��?���D��H��H��8H��?�����H��H����t ������
��xH�H��H�D�@�����1������H��H��Y>H�0���H�Ǩt"�������<�HN�H���f��k���f���UH��SH��H�<Y>H�0��H�Ǩt=�X���H���t�I����H��Hc�[]H�D�fD�������������UH��SH��H��X>H�0�$�H�Ǩt-����H�����t-����H��!�[]H�H�D�f���H�����u���H��!�[]H�H�D�ff.����UH��H��SH����tC�v���H���t$�g��Ɖ��.���x+H���[]�fD�#���������1��������H��H��W>H�0�9�H�Ǩt���¸��tH���@���¸��u�H��H�%�H���f���H��H��W>H�0���H�Ǩt*���¸��u��H�%�H��H���@�S����ff.�@��H��H�!W>H�0�y�H�Ǩt"�=��¸��u�փ�H���H�����������H��H��V>H�0�)�H�Ǩt2����‰Ѹ������~
H�%�H��H����������H��H�|$@����@����������H���@��t#H��4�������
��~+�����
��H� ��H���f.�����H�|$��	H�=Z�H����€���t9�
H�=0�H����€���tH�ƹ
H�=/��������H�����H���DH�����t?�����
t�o������D�����u!@��tH��H��H�Ã�u��H��Ð�[��H�|$H��t�H�D$�/���fDH�@�*���H�(y<H�T$H�5��H�81���f.���H����ATI��UH��StR���H�����tR����L��A��t#����‰���[���x7[�]A\�D��������H�����u�����1��I��f���H����ATUH��StU�x���H���t6�i���������I�����A�$��u)H�[]H�DA\�@����������1��������ATH�5��=UH��S�Y��H�Ǩtr�����H��S>H��H�0�	�H�ǨtB����A��1��c �Hc�H�5��H��H��1����D��H���Q��H��[]A\�f��k�A���fD�[������AUATUSH��I��A��H��H�5�=���H���"H�Ǩ�����H��R>H��H�0�N�H�Ǩ�����A��M�������A�؃����sH��������H�{�/#�H�=��H��1����Hc�H�5}�H��H��1����D��H���L��H�ߺH�5 ��x��H��H��[]A\A]�f.��k����4���@H������{���H���)H���h���H��v<H�8�]������A������M��t;����؃����H������uUH�nr<H�8�Mf�H�����u7H����H��u(H�iv<H�8� @H��m<H�8����f�H�{�!�H��H�=7
[H��]1�A\A]��@H��r<H�8���f�H�1o<H�8�}����H��q<H�8�m����H�o<H�8�@H�s<H�8�@H�	s<H�8�=����H�9m<H�8�e����H�ar<H�8�U������USH��XdH�%(H�D$H1��G����n���uH�nH�������uH�����t�������H�߃�u|�g���H�t$�����*H�D$0ʚ;H�D$�D$H�D$H�$H�=@�=�{�H�T$0H9���H�t$ H��H���=�H�L$HdH3%(��H��X[]�f���������@H�=�=�$�H9��H�=��=��H9��6H�=��=��H9��AH�=��=���H9���H�=��=���H9��H�=��=��H9��F�D$H�$H�D$0@B�
���@H�|$ 1��4��f��f��f�H�0�H*$�Y
���*T$�H*D$0�X��^�fH~�H9�t'fH~�H��<������t=H��H��������E�����H�$�D$�H�D$0ʚ;�k���f�fH~�H��H��H���}���f.�H�$�D$H�D$0ʚ;�+���f���D$H�$���H�D$0����������8	�H�=�����1�������H����wL�t�w���xHH�H��H�D��H�H��t�H�Ǩt�����������뻺1����1��t��@H��H�|$@����@�����������H����@��tH��4�������
t~~/��ur�%��H�0�� ��H��H�x���6f���u[H�|$���H��H�D$H�0�� ��H����1��|��������H���fD��u���H���f�����H�|$H��t7H�D$�f�H�����t׋����
t�g������4�����u�@��t����H���f�H�p�d����H�xH�p�P���H�Dp<H�T$H�55�H�81���fD��SH��H�� dH�%(H�D$1��_���H�������xkH��������?H�|$H�\?H9�w8H��������?H�<$H9�w5H�|?H����H�T$dH3%(u.H�� [�f���H���fD��H����H�=���J����D��USH��(dH�%(H�D$1��G���wlH�FH�.H�Ã�uOH����H��H�$��H��H�D$�~���H����T���xBH�L$dH3%(�u(H��([]�@H�^H��HD�룺��������H�=����f���USH��dH�%(H��$�1��G����j���uH�nH�������uH�����t�������H�߃�uv�Q���H�t$0������&H�D$8HDŽ$�ʚ;�D$H�D$0H�$H��H��$�H��$�H���3�H��$�dH3%(��H��[]�f�������H�=	�=��H9���H�=��=��H9���H�=��=���H9���H�=��=���H9���H�=��=��H9���H�=x�=��H9��������"�H��H����[H�SZ��/�DH��HDŽ$�@BH��	H��H��H��Hi�ʚ;H�$H)��L$�����1�H�|$0�$�����H�D$0HDŽ$�ʚ;H�$iD$8��D$���fD1��9�H�����H�$�D$HDŽ$�ʚ;�d���f�H�|$0����H�����H�t$0H�|$8I�SZ��/�DH��H��	H��I��H��H��H��H��	Hi�ʚ;H)�H��I��H��Hi�ʚ;H�H�$H)Ǎ>�D$=�ɚ;v-ʚ;H���D$H�$����H��$�����f�H�|$�F��H��H�����H�¿H�SZ��/�DH��	H��H��H��Hi�ʚ;H�$H)��L$�R��H��$��g���D1�H�t$0����u~H�T$@H�D$HHT$0D$8H�$=?B~
H��-@BH�$i��HDŽ$�ʚ;�D$����������&�H�=X�����H�=�<
����H�=-�����H�=�����H�=!6���H�=����1���2��f���H�Mh<H�H�@8H�@(�f����'���������H�
h<ATU��H�=q�=SH���L�`8�z��H�
CF>Hc�I�D$(H�TH��H�1���Hc�[]I�|$(H�TH�5��=A\���ff.���H��g<H�H�@8H�@(�D��UH��SH���H��H����?H�����H��H��[]��?ff.���AUATL���USH��L��H��H���?H�����H;�tH��L��[]A\A]�?fDL��L�����H;�u�L;�u�H��F>�������1��������~����u��fD��AVI��AUI��ATM��U��S��H��@dH�%(H�D$81��^������D$ �l$$�\$,����I��I9���H�D$H��I��H�H�D$I���H�ZH�$H�������2fDH�D$H���>1҉�1��[H���L>�D$ ��u)��y�1��V�Å�y�H��L��L�d$�Q�D$ ��t�H�$H�T$H�QH�
��x��1��VL���&���D$ M��uJ���uQ��[��T$0�������7fD��H����H�s(�e��D$ ��t=���t`M��t�T$(A����t�H�L$8dH3%(u~H��@[]A\A]A^�f.�H�D$�D$$�������I����������T$0M���]����D$(A��H���H�
���NH�5l�H�=���	�����@��ATI��USH��@dH�%(H�D$81�H�rd<�D$ �|$$H��T$,H�X8H�D$H��tH�[H���H���<�|$$����H��H9��~�D$ ��������H���<M��t�D$(A�$�\$ �������~!H��C>������������
H�L$8dH3%(����H��@[]A\��T$,H�t$(����D$ ���q����D$,�o����T$$H��H�D$��~H��H�H��H�D$H��H�$H�ZH���;H��H��H�����H�=?����������D��T$0��F������H���D$0�;�����|$(���u��\$ �����G�����US��H��dH�%(H�D$1�H�l$�1�H����L
��t���H�L$dH3%(uH��[]�������AUATA�����USH��dH�%(H�D$1�L�l$�2��H��H�0b<H�H�@8H�@(�'���Hc�H�|?H���k��H��H����1�L��D���	���u����8��
uH�L$dH3%(H��uH��[]A\A]�1�����&��fDATUS��H��dH�%(H�D$1������������uDH�t$�ډ��&	����H�H�DtEH�L$dH3%(��H��[]A\��H�>I��@��u4���Ń�t41��@H�a<H�H�@8H�@(���{��Ń�u�I�|$1�H���_����.����S����1����1�����/��ff.�@��S���H��tH����H��[H������@�[Ð���������USHc�H�=����H��H�����H�5}�=H�TH��H�����H�5��=H�u@��u	H�����uH��H��[]�f�H�����H��H��[]�ff.���H��H����t�[��H�������+��H��������SH����H��1���������
��x�������[�ff.�@��H��(H��dH�%(H�D$1�H��ĀuM��¸��u$H�<$H��H��H�5�H�D$��H�D$H�t$dH34%(uH��(�H�FH�x����m��ff.�f���H�5U&<�����AWAVAUATUSH��xH�|$H�t$H�T$dH�%(H�D$h1���H�\$I����	�����؃�����H������t'H��4��������\�%����H��H�\$0���H�(�� �pH��L�h��H���C�L��H�=ķ���Å��%H�u�I�}��ۨ��Hc�H�D$0H�D$8H�D$0����M�l$XL�t$M����L�����I��H���XH��� ��H����H���KH���C
1�L���7��H���O��L��I�����H���7��H�t$@H�l-�L�t$HH�l$@H�D$P��L��H�@H���!�H�D$H�D$8H�D$�H�D$�H�|$H�|$(@����@������������H����@���|H��4�����������H���Hc�H�>��H����������H�L$hdH3%(����H��x[]A\A]A^A_�f���u�H�|$H�|$(@��t�N���fD���(����DH������a������H��H�D$(H���	�w���H�D$(H��H��I�|$pH������I�D$pH�D$H�D$81�H�D$�F���@L�hH�h���1��i��H�D$0H��H�D$(H��� �pH�PH��u.@����@��uH�����t��������H�D$0H�D$8��H�|$(�H�D$0��H�D$8H���V�uH�����t�������H������H�D$8H�|$(��I��H��tH�����H��H�|$0���H�@H�D$@H�D$8H�l$PH�D$H�I�H�D$0H�|$0H�D$8�D�H�D$0����H������Y����������KH��ƒ����H�D$0��H�|$(����H���H;>�=�`H;a�=��H;L�=�zH;7�=��I�|$p�H��臹��I�D$p����DH�D$0H�D$8H�D$0f�H�|$�V��H���*���H9��=�H9��=��H9��=��H9o�=�	H9Z�=�CH9��=�R���H9��=��H9��=�3H9f�=��H9Q�=�,H=Q
�����A�D$A� �k�� A�D$AH�|$1�H��tH�5�
������A�T$A�����	�A�D$A���DI�D$�1���fD���H�@I��I�D$X���fD����H�D$8H���6��H�@H�D$@H�D$8H�D$PIH�D$HH�t$@�H�D$X���H��H�@I��$�H���ӷ��I��$��L���fDH�������@A�D$@���H�|$��A�D$@1�H��tH�5ީ����������A�D$@���	�A�D$@���@I�|$x�H���N���I�D$x����@A�D$@�&H�|$H�������1�H��t@���+�������A�L$@A�D$P�y���L���(��I�����1�L�����H�����I������fD������H��������H���~������������H������}������f.�H�D$8����f�������S���fDA�|$@�H�D$H�D$8H�|$�@�H��H�D$���A�L$@�H��H�D$� ��H�@I��$����H�D$8�H�D$0���I�|$p�H���ӵ��I�D$p�O���A�D$@� �H�|$�� A�D$@1�H��tH�5A����������A�D$@��	�A�D$@����H�=�=��H�|$0H9��k���H�|$(��t��H���,���I��$�H��H���9���I��$����I�|$p�H������I�D$p���H�|$���A�T$@������A�D$`A�T$@�k����������1�L�k�>H����I9�}VL��J�<�蘳��H��I������t
L������uH���Lc��� u�H�CI9�}H�C �H��� �6H�CI9��m���H�D$8H�D$0�$���H���*���H�è��������H�D$����A�D$A���ѱ=����H�|$H�t$8H�D$8�E���H�|$8��H����A�\$dA�L$A�[���H�|$8���H���S��H�H�DH�D$8����H�D$�����A�D$A���E�=���oH�|$H�t$8H�D$8�m���H�|$8��H��uA�\$hA�L$A����1��Z���`���1��N����H��������������H��U<H�5ǥH�81��^��H��U<H�5:�H�81��F��H��U<H�5��H�81��.��H��U<H�5�H�81����H��U<H�T$(H�5îH�81����H�jU<H�5[�H�81�����H�RU<H�5h�H�81�����Hc�H�7U<H�5�H�81����H�U<H�5դH�81����H�U<H�5 �H�81��~��H��T<H�5��H�81��f��聰��H��T<H�5ͤH�81��I��f���ATI��UH��SH��H��H��H�;�1���tH�{H��tL��H����[1�]A\Ð����L��H��H�CH����������SH��H��H��H������t6��t9��uH�����t
�����t!H�T<H�5K�H�81����1�[�@H��S<H��H�5_�H�81��m��ff.�f�AWAVAUATUSH��H�$H��h�t$I��L��H��H�T$ M��L�L$(dH�%(H��$X1����H�xH��H�H��Hǀ�H��1�H)�������H�I����H��tH���H���$���H����T$�k@��L������	�@�k@I�E��@�l$% ����L�+I�mH���&D�}E1�E1�E���B�l$1���@�k@��I��H�@I�E ��I�u���t'<	t< ��@H���< t�<	t���L�{I�I� tI��?��1�L��H��育�L��H�@H��H����C@��f�H�D$(H�D$HH�D$(H��$XdH3%(��H��h[]A\A]A^A_��A��	t[M��LD�A��H�=*��S��H��toM��u��A��=t�E1�A��/A��I�����w���H��D�}E���4A�� u�M��t�M��u
I��M)��DA��H�=������H���/���M��u�1��fDL�+H���1�H�������XH�zH��tH�zH�T$P��{��H���:H���J��H�C�C@����H�{�_�|$L�t$@H�D$@��Hc�H����L��H�@H��I������H�KH��� ��H�QH�AH�T$8H�,L�l$8H9�v6f.��L��L�����L�|$8L���C��I�DH�D$8H9�rԺL��L���T��H�|$HL�d$H���1�E1�1�1ҿ肱�H�t$HI��H�.�� �H��L�f��H�����H��H���I�ML�k���H�qH� �����H�q���I�mE1�E1�D�}E�����������I��Āu)������?���H�T$(H�5,���L�����&���I�GH�x����M�������H��L)�M��LD�I�F�H���f���H�D$1�f�H�D$L��L��H�(H�j�H��L��H�L$N�<L��貺�H�L$��uQC�<7�����fDH9�����H�L$�H�C����H�QH��H�T$8������I�u����Dx�H�iH;l$�g������1��K��H��H�@�D$��~_�D$L�d$ L�l$H��M�|��H����H��H��H��I���V��M9�t(I�$L��H�D$H�0��H�L$HH��� t�H�QH����H�k�C@��������fDH�nL�fH������H��H�������H��L��H�����H�����fDH����tC<	u	�=<	tH���E��u�H��H)�L�����H�5�

�L�����H������1���H�H�% �����u��DUH��AWAVA��H��AUATSH��H��H�U�H�M�dH�%(H�E�1����Ic�I��A����L�$�H��H�E�I�D$H��H%�H)�H���H��H9�tH��H��$�H9�u���:L�T$I���M��M����E����A�^�Hc�I�<�@����H�������赪��H�E�H�������I�?@����H�������耪��H�E�H��t
I������H�E�I�?����H��tPH��� �wH����H����H��H�L�e�L��H�U�H�@I��H��L������H�}��'��H�E�M��E1�DL��A�����I�<$���L��I��I�D$����A9�|�H�}�H��u#I�?��u�E���������LE�E�L�M�L�E�L����H�M����H�}��"��H�U�I�EH�U�H�U�H�u�dH34%(��H�e�[A\A]A^A_]�H��������H9���L�$�H�}�L�����I��L��H��L���(��E���3������D������I�?D��H�E�@���N���H�E��j���H�xu+H�@ ���H)�H�L����f��H������~��H�oJ<H�5ȚH�81�����E1��o���ff.���AWAVAUATUSH��H�|$HdH�%(H�D$x1����H�D$0H���H�D$H���GH��E1�L�|$`I�����H�D$H�D$XH�D$(��DH����I9��H�D$J��H�CH� uH�C H�8趽�H�D$H� ��H��H�[H� ��H�SH�CH�T$XH�x@�����o���H�CH� uH�C H�x�#��H�SH� uH�S H�zH����@�����%��Hc�H�l-Hct$H�|$HH��I��H�t6���H�D$H��� �	���H�D$L;h�H�D$H�@ ����@�����W���@H�C H��-���@H�[ ������{��Hc�H�l-�q���fDA��H�D$(H�D$`H�|$X���H��H�D$X���H�D$X�D�|$t�����f��H�D$X1�H�����L���l$hH�=����H�D$`D�d$lL�t$p�V��D$p���t��ljD$ ����HcD$ H��H�l萰�H��H�h�D��������f.��+��I��H�D$0L�@pH�XpH���M���k�D$D����H�D$0L�@xM��t�L$DL��H��H�����D$DL�|$0M���M�����L$DL��H��H���ȥ��M����D$DM����H�D$I�FH�D$8I��� �,fDH����H9D$��H�D$8H�L$L�<�I�GI� uI�G H�8���H�D$ I�GI� uI�G H�x�Ⱥ�L��Hc�I��H�D$H�l-�D$(H�����D�d$E1�H���u"�@H����I9���I����tWH���o���xKH���c��H��L��D$�T��H��I��� u�I�F������L��H��H��蝤���D$D���@H�����D$9D$u,I�H�D$�� ����H�D$I;F}oI�F ����fDHc\$L���H�\H�����Hct$ H��L��H�t6�����H��H��L��L����H��L�����I�Ĩu��t���H�D$0�L$DH�Pp�HlL�h H��t$H��� �H����H��H�D$0H�x8�s���H�L$0�A@L����D$��<tHM��uCH�D$HH�D$`H�D$H�H�L$xdH3%(�SH�Ĉ[]A\A]A^A_�f�<�
H�!E<H�5*�=H�8���H����a��H�@H��H��E1��t��H��H�D$`H�D$I�GH�D$I��� tzfDH����I9���H�D$J��H� tiH�PL�bL�pI��thL��L��H����A��u
I������MA��u
I������*I�I���� u�M;o}[I�G J��H� u�H�P L�bL�2I��u�H�t$1�H��L�t$`谡���)��H��H�@M������H�D$`H�D$1��D��H�5}���H��H�@H��I����H��Ā�4H����H�<����H��H�@I�E�� �OI�UH��H�T$X��H�L�d$XH9�v-��L��H�����L�|$XL���Ӽ�I�DH�D$XH9�r�L��H��H�D$X����H�|$H�l$`���1�E1�1�1ҿ�	��H�t$`I��H��� ��H��H�n��H�����H��H����H�D$0I�L$L�`(L�h0�\����H���b���H�OB<�T$(H�5��H�81�����f�H�r���H�CH�@H�<�����H�^H�nH�����H��H�������H��H��H���(��H���j���I�UH�T$XI�E���L��H���s������L��H���c�����H��A<�T$(H�54�H�81��"��H�t$X��������AWAVAUATUH��SH�����H������H���I�ċ�D$H����H�CH�E1�H�$�f�H��H����I9���H�$J��H� t}H��L�pI�FI� uI�F H�xH��t6����I�����uD��莡�L��膩�L��H�@�6��H�I���� �v���L;{} H�C J��H� u�H�@ �f��D$A�$H��H��[]A\A]A^A_�fDATI��UH��SH��H�� dH�%(H�D$1�����H�xHtCH��H��H�$H�����H�=�L�d$H�l$蜚�H�L$dH3%(u"H�� []A\�H���=�:t�H�@H���������D��AWAVA��H��<AUI����ATA��1�U��SH���@��D��L��D��H��H��L�x �(��uA�GA uH��H��[]A\A]A^A_�H�l?<H�5�H�81�������ATf�1ɺUSH��pdH�%(H�D$h1�)D$H�l$)D$ )D$0)D$@)D$P�f��H��H�$���H�<$�PH��H��L� ������t&H�L$hdH3%(H�H�DuBH��p[]A\�fD�|$tH���H���ž��f����8H��H�D$L��H�$��������UH��AVAUATSH�� dH�%(H�E�1�H��H9�tH��H��$�H9�u�H��@H�L$8��船�H�\$H��H�E�H�������C,1�1�I��H��;<H�C H�}�H�H�CI�\$H���A�Ņ�xJ�C$E1���`��xKE��xF�C(���|A�D$A��1�H�M�dH3%(ufH�e�[A\A]A^]�f����S$D�0��A�D$AuE���f�H��H�Ƅ��H��H�=������s �{(�|��C$�t���@���D��E��uD�s0H�E�I�4$H�E�D��H�E����H�=��M�,$�n��s(H��I������H�5�H������L��L���a��H�E�H�E�H�E�H�v7<L��H�8���H��蛺�ff.���UH��SH�����H��1�H��tH���H���d���H���H��[]�fD��H��(H�|$dH�%(H�D$1����H�D$H�D$H�D$H�D$dH3%(uH��(��%��D��SH��H��H�=��H��dH�%(H�D$1�H�T$谨�D$��uH�D$dH3%(uH��[�H�����|$�������ff.����AWAVAUI��ATUH��SH��hH�$H�L$dH�%(H�D$X1�H��t4H�~H��H�Hdž�H��H)�������H�H�F A�E@��M�}XM���VA�E@�[M�epM���tI�]xH����H�����E1�L�c�R�H����I9�}dL��J��H� tNH��H�8�خ��I���Ζ��uD���b�����YI��H��� u�L;{}H�C J��H� u�H�@ �A�E@@��M���M����A�}@��A�EA������H��t	H�EpH��uW���1�E1�H�Ë(�c�����Y�����O����+H�\$XdH3%(D����H��h[]A\A]A^A_��H�0�� ��H�pH�}8�����f�H��t+�f��M@�H��H������H��H�@H������I���H� �dH���Ô�A�ǃ���
���H�<$H��tvH�T$H��tlH�5"��H���6���A�]P��������H��t�M@�5��EP���:腫�މ����A�ǃ������H�<$tH�|$�|	DA���������DI�GE1�H�D$ H�D$0H�D$H�D$@H�D$�IH����I9��r���H�D$ N�4�I�FI� uI�F H�8@���1脬��H����H�t$���������I�FI� uI�F H�H�|$0H�D$@H��������?H9��KH�D?H�|$8H�D$HH��������?H9��H�D?H�t$�H�D$P����H�@H�}XH��H�����[��I�I�F�� uI�F H�x@����H�H�|$0I�VH��uI�V H�z@��tSH�H�t$H�|$8��觙����~I��I��� �����M;g�&���I�G ����3�������@�c��H���fD�S��I�H�ǁ� �k���f�H�D$(���H�t$(H�@H��H�EX����D�������fD�������fDA�}`����H��������M@M�ep�E`M�������I�E8H�XI�$�� ��I��I��A��L�|$H�T$H����H��E1�H�T$�fDI�D$N�48I�FI� uI�F H�x�E��B��I�FI� uI�F H�8�(��B�D�I��� �GH5����&I�N1�H�A������B�D�J�D�����I��L9|$�I�$�� �c���I�D$ �^����I�G1�H�D$�H����H9��+���H�D$L�4�I�FI� uI�F H�8�~��I�VI��I� uI�V H�z�a��I��H��t&H�L$H�$H��D��H�D$耕��L�D$���;���D��D��������_D��H�����I��� �W���I;_�����I�G �Y���@I�U A�ul��N���T���f�A�}h�g����?A�EA��]���A�}d艪���L���H�<$H�������H�D$H�������H��H�5K��g���z���f�H�\$A�����H�D$H�D$D�0A����
D;p��A����JD��D�������tfD�����H�D$H�PD�8H�@����H���u(��������I�VA�����H�����H��L�4A�vA�>舏���u�H�<$H�������H�T$H�������H�55�A�����胔��q���A����^���D���|����N���D�������=���H�<$H���[���H�T$H���M���H�5/A������#������fDH�����H�����/���@I�T$H�T$�l���f��K������@1����f�I�~~�I�N ���H����H�t$H�
�y��� H�����H�|$�l���L�T$L�KE1�I��I��A�I�L�D$1��E��tWH�~I9���I�8A��H��H��H��H��H�D+y�H9���H�4A��H��H��H��H�D+�|I��E��u�I�H9�r�fDH�� H9�s;H�t�L9��`�;t�RH��;�dL�`H�� H��L9�r�I�I�D$I�� H9D$�0E1�f.�M��I��N�4A�>�����f�I�~��A�FH��t"H�L$H�$H���艑�����I���A�FA�>��������j���A�FA�N��t+��1���L$�<��L$��������A�N������M�FA�����I���t+L��I��N�4H��A�>H�l����J���f.�I�GM9��3���I������H��H9��[���@I�I�D$I�� H9D$����I�����DI�1������ω�1��u�����E���H�<$H���7���H�T$H���)���H�5��A����������f.�H�<$H�������H�D$H�����H��H�5�~�Ɛ������H�t$H�
�v��� H���7������f�H�<$H�������H�D$H�������H��H�5�~�v�����H�T$H�<$H�5��\���J���1��D�������t5���H�D$�����H�t$H�D$ H�FI9������H�D$����H�<$H������H�T$H������H�5}A�����������D�����A�ǃ�������H�<$H������H�T$H������H�5�衏���@��D����1��������@����J���fDH�<$H���{���H�D$H���m���H��H�5#A���B���0��8���AVH��H��1�AUATUSH���������C@uzH�{�H��tVH�CL�c(H�_L�hM�uH� t	H�_H��t0�@��H��M����M�d$L��H��L�����m����[��]A\A]A^�f.�H�;H�s(H� t0H�[]A\A]A^�?u������[�(��]A\A]A^�fD[H��]A\A]A^�u���L��H���m��m��u�H�OzI�]I�EL��H�=8z��B���X���DH�"zI�]I�EM��t�L��L��H�=z�2���(���ff.�f���AUf�1ɺATUSH��dH�%(H�D$x1�)D$ )D$0)D$@)D$P)D$`�Ƨ�H��H�D$����H��H�o=�8���AuH�t$H�T$H�=����D$��uUH�l$ �PH��L�+H�����A���v�v�|$ tH���H������H�D$H�D$L��D��H�D$�^��H�|$�D��u��u�|$����1��7���_���D��PXH��豸���AUI��ATI��UH��SH�����L��L��H��H���C����H�������[]A\A]Ð���NJ����AWAVAUATUSH���H�|$dH�%(H��$�1��D$,H��t��{��H�\$0H�-�m=L�5�(<H�D$H�D$,H�D$�m�H���~����s�N��A��A��H�D$D� I�H�x8�d)�t�tH����~���}tE��WE��yWH�L$H�t$1�D���~����ujH�&<H�8苻�H�'<H�8�|��}�r���1��+4���f���fD�;5��H��$�dH3%(D��uH���[]A\A]A^A_�A������������USH������H������t|1�1�H�i%<H�8���H�b&<H�8�ں�1��c�������0��uv�Q�������1��=�������
��uP�+�������to�H��[]�H�~1�H��u<H�;1�H���m���H�5,z������Z���f�1����f�1���@H�5�y�������1ҾH�=�y荺�Ã���s���������1���袄���薄���芄���B�����1��X���Hc�H�D�)���H�=��ԃ�Å�t��y�H�=sy�.��fD1ҾH�=Py��Ń��tЉ��G��1����������������~����ʈ�뚺1����ff.����H��1�dH�%(H�D$1�������tT��u(胫�螦��u#�H�L$dH3%(u9H���H�H�D��H�=8(<H�T$�4�Q��|$�H��H�=�x�<���w�����PXH��(dH�%(H�D$1�H��$<H�H�xtAHc��H�|?H�<$H�=�$舔�H��H�D$H�� <H��\��H�����迲�ff.�@��PXH����w2t1��؟�H�H��t�1�H��t�H�Ǩt	�̚����裰���Һ1�胩���PXH���Ѵ���SH�� dH�%(H�D$1�������u-H��#<H�H���X5�H��tH��H���W"��=��H�H��H��H�$H�D$�v��H��"<H�޿H����H��<H�޿H�$H��@��H���ȣ�1�輨�ff.����PXH���Q����H��1�dH�%(H�D$1�H�t$����H�D$dH3%(uH���肼�f�AWAVI��AUI��ATUSH��hH�t$L��$�H�T$ L�$L�L$dH�%(H�D$X1�M��tM�d$HM��tA�H�D$PH��H�D$�9��D$0����I������O�L$0����H��L��ATL�L$L�D$H�L$0H�T$(H�t$ 茌��A��XZE�����|$T�e��\$PH�t$L���萆��I��H��x`�l$LH����H�<$��H�|$t'H�T$L�,$��H��L���P���H��xA�DD����贸�I����裸�ߋ(I�ʼnl$L�ӄ�M���)Ic�L��H�=��Ȑ�A�mA�����fDH�L$XdH3%(D���H��h[]A\A]A^A_�f����y��M��t��/��I���f.����1�H�D$(��D$4H�D$H��H��H�D$8D�}f�Ic�L��H�t6耲�H�����tX�E�P9�M����Hc�L��H�t6�U��H�����u�}�����A�ǃ��tP���$��}�̃�D�}�fDH��H9l$8�t���H�D$(�L$4���M�����D����������|$P肃�|$T�y������迹�ff.�@��H��j�!���H���ff.����SH��H�?�0��H�H��L�KL�CH�5
���1�H�P H�J R����ZYH�[�@��H���s��H���f���UH��1�SH�ӺH���d��H��H��H��H��[]����H���1��<��1�1�H��H���l�ff.����AU�GATUSH���h��H��HH�H���T��I��H�XH� tH�XL��M�l$���L��H��H��赱������M��؃��t^��tY��"urH���iH��L��L���E��I�$ tI�\$L���>��H��H��H���`��Å�u�H��L��[]A\A]�@L��1�A��(��H��L��[]A\A]�1�L�����H�5�q���"��f���AWAVAUATUSH��hdH�%(H�D$X1�H���dL�gH� tL�g�F�)��H��HH�H������H��H�XH� ��H��L�t$L�l$ �_��H��H��I���q��蜴��H�EH�D$�H�\$H���+��I��H��M��L��L��L���d��Å����C���vB�؃��t8��"��I������L��H������H�E t�H�]��1�H���Ѽ�H�L$XdH3%(H��umH��h[]A\A]A^A_��H�X�����H�D$H��t�H�x �u��1�H��H���x���fD��1�H���_��H�5Ll���q�����ff.����AWAVAUATUSH��hdH�%(H�D$X1��9��FA���|��H��HH�H�����H��H�XH� tH�XH��L�l$L�d$ ���H��H��I���Į�����H�EH�D$�fDH�\$H���{��I��H��M��L��L��D���t��Å�t~�C���v>�؃��t4��"��I����|L��H�����H�E t�H�]��1�H���)��H�L$XdH3%(H��uPH��h[]A\A]A^A_��H�D$H��t�H�x �ݧ�1�H��H������1�H���Ժ�H�5�n����~�聴���U1�H�5Ҳ��H�=�nSH���1��1�H�5Hp��H�=yn�������H�5��H�=�H�y�1�H�5+���H�=On�y�����H�5�p��H�=<n�y�����H�5k��H�={��oy�����H�5���H�=�m�Wy�����H�5;���H�=�m�?y�����H�5���H�=i�'y�����H�5���H�=�m�y�H�=�m�Ù�H�$<�H�5�mH��H��U��H�;�H�5�m�A��H�;�����H���H�5�G�V��H�;1�H�*�H�5Nm�>��H�;�����H����H�5�l�#��H�;�����H�to��H�5m���H�;�����H�9���H�5����H�;�����H���H�5�l�ғ�H�;1�H�����H�5�l躓�H�;�����H��s��H�5�l���H�;�����H�����H�5�K
�d��H�;�����H�5���H�5�l�I��H�;�����H�J���H�5�l�.��H�;�����H�����H�5�l���H�;1�H�'���H�5�l��H�;�H�����H�5ql���H�1<H�;H�5blH����H��H��u=�{�H��u=�����
�ƒ����C
H���Y
<�a
H�xH�5a����H�=Zu=1�H��r��H�5<l蕍�H��<H�;H�5�kH�茀�H�-u=��-����ƒ�����H����<��H�xH�5�`�u��H�=�t=�H��q��H�5Y����H�=�t=�H�Ü��H�5�~��H�=�t=�H�4���H�5��
�،�H�=�t=1�H�Xq��H�5U�輌�H�=mt=1�H�l���H�5�d蠌�H�=Qt=1�H��H�5�j脌�H�=5t=1�H��o��H�5k�h��H�=t=1�H�x���H�5�j�L��H�=�s=1�H���H�5�j�0��H�=�s=1�H� ���H�5�j���H�=�s=1�H�ĝ��H�5yj��H�=�s=1�H�ș��H�5ej�܋�H�=�s=1�H�ܜ��H�5Qj��H�=qs=1�H� ���H�5y�褋�H�=Us=1�H����H�5$j舋�H�;1�H�k��H�5j�0��H�;1�H��n��H�5�i���H�;1�H�ln��H�5�i���H�;1�H�k��H�5�i���H�;�H�ٙ��H�5�i�ͱ�H�;�H�>���H�5Vh貱�H�;�����H�����H�5�i藱�H�;1�H��m��H�5�i���H�;�H��H�5ui�d��H�;�H�E���H�5fi�I��H�;�H�5^i�%��H�;�H�5Wi���H�;�H�5Mi���H�;�H�Φ��H�5	f���H�;�����H�c���H�5�e�װ�H�����軬�H�;H�5iH��H�����H�;H��H�5�h���H�;H��H�5�h���H�;�H�5�h�n��H�;�	H�5�h�Z��H�;�H�5�h�F��H�;�H�5�h�2��H�;�H�5�h���H�;�H�5�h�
��H�;�H�5�h���H�;�H�5�h����H�;�H�5�h����H�;�
H�5�h���H�;�H�5�h���H�;�H�5�h���H�;�H�5�h�~��H�;�H�5�h�j��H�;�H�5�h�V��H�;1�H��j��H�50j�N��H�;�H����H�5ph�3��H�;1�H�7k��H�5j���H�;�H�\���H�5Ch���H�;1�H��j��H�5�i���H�;�H�i���H�5	h�ͮ�H�;1�H��j��H�5�i赮�H�;�H�v���H�5�g蚮�H�;�H�;���H�5�g���H�;1�H�#���H�5�g�g��H�;�H�����H�5�g�L��H�;1�H��`��H�5�g�4��H�;�H��_��H�5vg���H�;�����H�
�H�5e��H�;1�H��<H�5�
���H�;�H�5-i���H�;�H�54i��H�;�H�5g��H�;�H�5g��H�;�H�5g�r��H�;�H�5g�^��H�;�	H�5g�J��H�;�
H�5g�6��H�;�H�5!g�"��H�;�H�5g���H�;�H�5g��H�;�����H�+���H�5-b���H�;�����H����H�5�a�Ԭ�H��1�L�
�fjH�;L��fH�
�fH��fH�5�f�At�H�-�
<ZH�5�fYH��H�gn=H�}�n��H�}H�5�f��I	�I���A<莘�H�;H�5~f��A<�Y��H�;H�5mfH�m=�C��H�=m=1�H��g��H�5NfH��l=���H�=�l=1�H�h��H�5+f���H�=�l=1�H��g��H�5f�ث�H�=�l=1�H��g��H�5�e輫�H�=�l=�H�����H�5�e蝫�H�=nl=�H�����H�5�e�~��H�=Wl=�H�����H�5�e�_��H�=0l=�H�����H�5�e�@��H�=l=�Ԡ�H�xeH�5�eH���ަ�H�=�k=負�H�VeH�5_eH��輦�H�=�k=1�H��j��H�5Ee���H�=�k=1�H��l��H�5)e�Ī�H�=�k=1�H��W��H�5e訪�H�=yk=1�H��w��H�5�d茪�H�=ek=1�H��w��H�5�d�p��H�=Ak=1�H�@t��H�5�d�T��H�=-k=1�H�$k��H�5NG�8��H�=	k=1�H�����H�52G���H�=�j=�H����H�5�d��H�=�j=�H�����H�5od�ީ�H�;H�5jd�ߦ�1�H�Fe��H�5YdH��H��j=谩�H�=yj=1�H�@e��H�5:d蔩�H�=]j=1�H��e��H�5&d�x��H�=Aj=1�H�(e��H�5d�\��H�=%j=�H�����H�5!`�=��H�=j=�H�ڃ��H�5�_���H�W<H�=�i=�H�5�cH����H�=�i=H�ڹH�5�c���H�=�i=�H����H�5�c�¨�H�=�i=�H���H�5xc裨�H�=li=�H��h��H�5ac脨�H�=Mi=�H�Q���H�5Kc�e��H�=.i=�H�rg��H�55c�F��H�=i=�H���H�5 c�'��H�=�h=H��1�H��H�5c[]�	��f�H��������H��tnH�����H��<H�8���fDH������C�H��t.H���4�H�f<H�8�)�fDH��<H�8��H��<H�8��H�y<H�8�p�H��<H�8�`�H��
<H�8�P�H��
<H�8���H�!<H�8�0�H�<H�8��H��	<H�8��H��	<H�8����H���H�=F�跑�H�=�
H��h=蟑�H�=�
H��h=臑�H�=�^H�lh=�o��H�=paH�Lh=�W��H�=aaH�,h=�?��H�=d�H�h=�'��H�=��H��g=���H�=;aH��g=��H�=�[H��g=�ߐ�H�=صH��g=�ǐ�H�=��H�lg=诐�H�=�[H�Lg=藐�H�=4�H�,g=���
H�=�`H�g=�g��H�=�`H��f=�O��H�=�`H��f=�7��H�=�`H��f=���H�=]`H��f=���H�=W`H�lf=���H�=Q`H�Lf=�׏�!H�=�dH�,f=迏�H�=.`H�f=觏�H�=0`H��e=菏�$H�=�dH��e=�w��(H�=�dH��e=�_��$H�=�dH��e=�G��H�=�_H�le=�/��H�Xe=H�����f.�DS�A���+���+�@H��D����D1�i�e�lD�D��H��ou�H���	��pD�LJ�	H���	A�p�DM�E1�1��Hc���L��D����D1�Mc�i�
fA3B�F�A��E���o~D���	�D�D9�DN�A��u��o���A�H�D��Hc�H�4�D����D1�i�e�X]3)ȃ����pu
���	����u���[�ff.����	�����	��~=H���	H�FH���	����1‰��%�V,�1‰��%��1Љ��1��f��H��L���H��LJ�	pA�߰��%�A���B�����D	�A����A��EE�3�4H��D1��J�L9�u�L���	A�߰�%�A���B�����D	�A����A��EE�3�t���H��D1��J�L9�uȋ%��с��	ȹ߰����E�3�01Љ��	���ff.�@S����A������f�f��[A�����A*��Y�c�*��X��Y�c�@����	�fD��HcUn=H�D�ff.�@��A�B1ɺ�pH�=[d=鞙�ff.�AW1�AVAUATUH��SH�� H��H��8dH�%(H�D$(1��
b�I��H����I��E1�A�BH�¹L��H���Af�M���
�$1ɉM��	DH�����1�i�e�l��L�H��ou�H���	H������L��Dž�	H���	�c��H��H�\$(dH3%(��H��8[]A\A]A^A_þH��N�<�I�����L��E1��A�BH��H��I���ve�1�)Ѓ�tZC�|>�tDD��L��H�����H�����L��L���ԍ�M9��h���L������[���I��u=�$��I��N�<��D��L��H���d���H�����L��L��肍��苜�N�<�1�)Ѓ�tM���e���D��L��H���#���H��L��L���D������ff.�@��H�5b=H9�t�;������H�?�Ġ�@ATI��UH��SH��H��dH�%(H�D$1�H�@H���H�DH��H��H�$H�5�a=�L��H�è��H�������H��Ѓ���u}H��% tFH�SH9�|w��M��tH�sH��tH�sH��u@H�|$dH3<%(H��uwH��[]A\�@H������H������T���H��L���M��볾H���p�H���;H�5�^H�81��v��H�w�;H�5�^H�81��^���ٚ�f�AWAVAUATUSH��H��H�|$1���w�I��H� uwH�hH��~UH�D$H��L�uL�hH��H��L�dL��M�^��d���I��A�C���M9�u�M�sM9�u�H��H��H�l�H��H��H��#H��L��[]A\A]A^A_ÐH�h�f.�H�|$H�H�����H���E���H9�u��ff.�PX�H��dH�%(H�D$1�H�F<H��H�$CH��]�H��蓀�U��SH��dH�%(H�D$1�H����H�^H���s���A���k�����tGA��f��f���A*��Y3^�*��X��Y+^H�D$dH3%(uuH��[]�@D��1�f��H� H��H��H�� H�� ����H	�H��H��H��H��H*��e��H��H�$����D�$�D$�K�������H��H��;��	�7��H�P H�H����AVAUATI��UH��SH��H��H	�H��H��H	�H��H��H	�H��H��H	�H��H��H	�H��H�� H	ø����H9�w-DL��� ���A��A!�L9�r�[L��]A\A]A^�f�I��A��I�� M��uM��t�L�����A��A!���@L������I��I�� I!�L9�r�M��uM��[]L��A\A]A^������I	�I!�L9�s��f�AWAVAUATUSH��(dH�%(H�D$1�H��tI��H��t5H�~H������H�\$dH3%(��H��([]A\A]A^A_�fDH��I������@H��H��?M��)������I��!E�L��A��H��A���� LF�H�D$1�H�D$DL��H��H	�H���t*H�t$Ic�H��L$���A���D$�L$tH�D$L��H��H!�H��H��I9�r��8���蜖�ff.��U1�H��AWI��� AVAUATSH��8H�}�L��dH�%(H�E�1��ZZ�H�<H�E�H�����H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����H�E�H�\$H�E�H���L�u�A�BE1�H�޹L��L��N�$��$^�L��H��H�E�H�}���L�u�A�E1��6�A��H�}��|���D!�E��t
A9�r�A��E��C��I��I���tSF�,�E����D��H��H��H	�H��H��H	�H��H��H	�H��H��H	�H��H��H	�u�1�C��I��I���u�H�u�1�A�BL���M��H�}�H��象�H��H�u�dH34%(��H�e�[A\A]A^A_]�@A������(���DH��������1�H��H��H��H��H9��H�r8H��H��H��H��H�E�H��H��H�E��Ne�H���~���H)�H�L��_������y��I��f�UI��H��AWAVAUATI��SH��8dH�%(H�E�1�H��t5H�~H���y���H�U�dH3%(��H�e�[A\A]A^A_]��I��H�U�L�߾ L�]���W�L�]�H�<H��H���wlH��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�T$H�E�I���H�E�M���ZDH��������E1�H��L��H��H��H9�I���H��L�]�H��H��H��H�E�H��H��H�E���c�L�]�I��H�M�A�����E1�H��A�AL��L��A��D�u�L�4�O�$7�[�L��L��L������E�A#$A�$H��t!A;w�r1��
�A��A9�r�w	H��H9�u�A�A1ɺH��L��賍�H�}�H�E����H�E��D������w��>��ff.�ATI��UH��H��S��H�� H�T$dH�%(H�D$1���tcH�tNy��uHH��H�W�L��H���F���H��������?H9���H�DH�L$dH3%(��H�� []A\Ð���f����u�H�|$H� u��u�� ��H�D$H�Ǿ��V�H�D$�tMH�H���t�H��L��H�����H�@H��h���H������`���fDH������M���H��L��H������H�T$H�T$H�T$�(������SH��H��tH��tH��[�@H�>@��u��*��H��[�H���;H�H�5gTH�81��*��f.�AWAVAUATUSH��XdH�%(H�D$H1�����	H��I�̅��+H�H�����؃���t$��u
H������:H���j��H����H��興�I��H���;�������AMf(�fT�Hf.�H��f.��vf���L$f/�we�L��H�������L$f��f/�v�Y�H�0fH~�H9���H��H��<�������H��ufH���f��H�L$HdH3%(H����H��X[]A\A]A^A_�D�H��H�����H�0fH~�H9������P�H���fD���������H���"��H��������SL�t$@H��1�H�D$04H�L$,H�t$8L���D$,�c����@���H�D$8H�D$0H���L�|$@I���H�L$0E1��L���-�rH��H�D$@H����H���������G��u
H������H���]��H�D$@H��H�����7H�������
��H�|$0@���j�H������������
�����[�������H��M���+H�=�R=�Z�H���.���f��H��L��H���M���H���
���DH��H��H�����H��I9��L��I��H��?H)�L	�H��H�D$�~L$�������������f.�H���X��H��H�D$@H���V�������K�~�Ef(�fT�f.�E�?f.��>H�D$@f�f/���f.���H�\$@H�|$0H��@��������H�H�H�@H�H��0H�\?����@�L��H�����z����� �$���H��H�T$�u��H�T$��u��L$,���qH�׾�cQ�H����@�D$,�HcD$,H�H)��;���L��H����H��������?H�\H9���H�\$@����f.�H�|$0@�����������@H�D$@�z�f.�����������������t$H��H���H���v������M����h���D�{��H����H�t$0�M����H��H���h�H�����DH���s���H������������>����D$,���2���H�|$0�H��H�\$@@���O������F������DI��L�����DH�|$0�o��~VC�ƒ������Hf(�fT�f.+C����f.������Y
#��L$L���n��~C�ƒ����(�HfT�f.�B�����f.��w����ֈf��Y�H�D$@f(��\L$f/��#����T$,L��H���T$�L$����\���L$H�0�T$�XT$�Y��X��X�fH~�H9�tH��H��<�������KH������f(��J�H������@H�T$@�у������J�ƒ������@H�0�X�fH~�H9�����fH~�H��<��������H���J�������T$,L��H���L$���L$H�0�Y�fH~�H9�t)H��H��<��������H��H���������I�H�����H��H9�t7H�ڸH��H��?H)�H	�H��H�\$�~L$�I����ٌ�H�����H�D$@�9���H��H��H��H�����H���׆�H���;���H��H9��H���H��H��?H)�H	�H��H�T$�~L$���H��H9���H���H��H��?H)�H	�H��H�T$�~L$����H��f�H9��I���H���H��H��?H)�H	�H��H�D$�~D$����H��f��H9������H�ֹH��H��?H)�H	�H��H�T$�~L$����H��H��H��H���+���f��|$���f�f�������1��r�L��H���\�H��H�D$@����H����Q�H������z��f.���AVAUI��ATUH��SH��dH�%(H��$�1���<��tJ��E1�蠃��A��I��1��H�H9�vyA�H��I�|D��H)��Nq�H���u�1��|<1Ҿ	H�=�I�}��A�ą������ˏ�H��D��苀��u�D$%�= t7D���OO�1�H��$�dH3%(uXH�Ġ[]A\A]A^�f.�1��@H�H9�v�H��I�tD��H)���Y�H��y�D����N�����뜸������-��ff.�f���ATUS@��tRH��H�I��H��1��b�H��H��tH�xH� u�L�����u)H��[]A\ÐH�x��f.�H����v�I��H���H�Q�;H�5zHH�81�����H��8f�1ҾH�|$dH�%(H�D$(1�H�|$���H�t$1��P�H�T$H�L$H�D$1J3H�� 1ȉ�_�
�I=H�t$�Q����I=H�T$1�1VH�� 3V1ʉVH�D$(dH3%(uH��8����ff.���USH��(dH�%(H�D$1�H��H���+����|$�w
�D$�1�A�B�H����~��H��H���ht�H��H�L$dH3%(uH��([]��Y��f�SH���	H��t
H��[�D�4�N���H�{H�����H�H��[�f.���H��H�=I=���H��H�x���ff.�@��H��H�=�H=�|���H��H�x���ff.�@H��;H98t,SH�5��;H���a��tH�{ [�6���fD1�[�@H�=qH=����ff.����AUA��H��ATI��USH��H�����H��L��D��H��H����H��tH��t+H��[]A\A]��H��H��H��1�[1�]A\A]�W�H���;I�$H�5�EH�81��[��ff.���UH�=�G=H��SH���g���H��H���i�tH��H�H��H��[]���@H�����H��H��H��[]�����UH��S��H�=^G=H������H��ߺH����H��H��H���E�H��H��[]�ff.���AUATUH��SH��H���W��H��I���L��I9�tH��1�[]A\A]�f.�H�59�;H���F�H���y���H�5"�;H��H���wF�L�mH���[�����	L��L�`H��L���t���u�H���	H���	L)�L)�H9�u����	9��	�n���H�3H�}H��[]A\A]�/Z�ff.�@��H��H�5��;��E�H������Hc��	H��H�D���H��H�5a�;�E�H�����1ɺH��H�xA�B�p�%{�D��AWAVAUATI��USH��H�5�;H���lE�H���T���H��L��H���l����H�������H��ƒ�����H�� ��H����H���oH����H�CH�@H�D$H�CH��uH�C L�pE��A��H����H��L�}H�;E1�A�B��pL���QG�E����L��H�H=p����	H��H�|$I����	H���	�$f�H�EH��L��[]A\A]A^A_�fDH�CH����H��uH�C �:���H��tbH�c�;H�5RBH�81��چ�f.�H��u�A�A�H�D$H������H�[ ����L���Hp��1���A�A�H�[ H�D$����f�H�D$���f�H�D$����H����R�H���;H�5�AH�81��-��ff.�f���UH�5�;SH���JC�H���2����H���E�1ɺH�}A�B�pH���x�H��H���ܔ�Hc��	H��H�t6�Ȕ�H�uH��輔�H��H��[]�f���ATUSH��H9�t`I���t�H�5a�;H���B�H�����H�5J�;L��H���B�H������;H��H���H�Hc��	H��H����	H���	H��[]A\����H��H�5�;�LB�H���4���H�H���ff.����UH��H��SH����c�t7H�H��H�5��;H���B�H�����H��H��H��[]�Y�f�H���x{�H������ATA��H��UH��H�5Y�;SH���A�H�����H��H��D��H���7�H��H��H�����H��[]A\Ð��AWAVAUATI��U��H�=�A=SH��XdH�%(H�D$H1��=�������H�Å�t
I�,$H��usH�{���H�0fH~�H9���fH~�H��<��������H��H���_H�L$HdH3%(�H��X[]A\A]A^A_�@L�l$@H�L$,H��H�D$04H�t$8L���D$,腑���=H�D$8H�D$0H���L�t$@I���
H�L$0E1��L���-��^I��H�D$@H����H����������A��uI�����tA�$������L���rr�H�D$@I��H������HcD$,I�I)���H�D$@H�|$0H��@�����¨�H�H�H�H�@H��OH�D?���@�3;����fDfH~�H��H��H���{���f�H�D$@���f�L����q�H�D$@H�����ƒ������H�~N2f(�fT�f.62��f.�z�H�D$@f�f/���f.����������D$,�������H�|$0�H��H�D$@@�������@H������������
����t%����H��M���+H�=�==�E�H���l���H���_�H������1�H��H�޿�<�H���;������D��p����¨u������nH��H���H���u���<�Q����h���H��ƒ���
��H�|$0�@������������H�������H���%��������
������������H�|$0�V\��~�0�ƒ������Hf(�fT�f.s0���f.�����Y
kv�L$L���\��~M0�ƒ������HfT�f.&0�����f.�������vf��Y�H�D$@f(��\L$f/������T$,H�޿�T$�L$�4���\�u�L$H�0�T$�XT$�Y��X��X�fH~�H9��DH��H��<����������H���%H���Q����L��H�޿���H��������?H9���H�DH�D$@�0���fD�� � ���L��臊�������T$,���L����v;�I��A�����D$,1�����f.�H��H���S��4����+n�H��u%H�t$0����H�|$0@��������}���@H�T$@�у������J�ƒ������@H�0�X�fH~�H9�t!fH~�H��<�����������H��������6����f��T$,H�޿�L$�i���L$H�0�Y�fH~�H9�t)H��H��<��������H��H��������=6�����H��H9�t4H���H��H��?H)�H	�H��H�T$�~L$�!����By����H�D$@�T���H���Ws�����f(���5����H��H9���H���H��H��?H)�H	�H��H�T$�~L$����H��H9���H���H��H��?H)�H	�H��H�T$�~L$�?���H��f��H9��;���H�ֹH��H��?H)�H	�H��H�T$�~L$����H��f�H9��
���H���H��H��?H)�H	�H��H�T$�~D$���H��H��H��H�����f�f������f���l$���L��H�޿��������L���K>�I�������1�����^���r���AUI��H�5@�;ATU��H��SH��H���8�H���s���wzI�ą�uW��uBH�����t9H��ƒ���t,��u'H����H��I�|$�B��I�$H��H��[]A\A]�H���p��I�mH��H����^�H���Y�H��븺1����^�fD��S��wC��t2H�>�Y�H��H�8=H�=8=����H��7=H��[��H����H���̺1��]����SH��H�=�7=�l�H��tH��H�x[���f.�1�[�ff.����SH��H��dH�%(H�D$1���H��t"H�x�Q��H�L$dH3%(u!H��[�H�t$�H���&���D$���+q�ff.���SH���c�H��tH�x[�$��@H��6=E1�1�H��H�=J6=�U=�H���me�f��f/�wf/�9s[�H�H�;H�5�4H�8��,y�H�-�;H�5�4H�8��y���ATUH��SH��H��dH�%(H�D$1���H��t<1�H��tH�xH�����H��H�T$dH3%(H����H��[]A\�fDH�}�X�H��H��H�5�5=H�$蔀�H���lW�I�Ĩt5H��H�L���W�����u5H9�s�H�_�;H��H�5'4H�81��Cx�H����a�H�����o�H�/�;H��H�5�3H�81��x���UH��SH��H�����H��tH��H��H��[]���DH��H��H��1�[]�=��ff.�f���L�I��H�GI��H�arenegylI��H�uespemosH�modnarodL1�I�I1�H1�H�setybdetH1�L9�tJ�H��H�~�H�H��
H1�H�� H1�I�H��L1�I�H��H�H��L1�H1�I�� H1�I9�u�L��L�O3A��Kc4�H��8L�>��f�A�pH��H	�A�pH��H	�A�0H	�H1�H�H��
N�H��H1�H�� L1�I�H�H��H��H��H��H1�L1�H��I�� H�48H1�A��H��
J�H1�H��H1�H�� H�H��H�H��H1�H1�H�� H�H��
H�H��H1�H�� H1�H�H��H�H1�H��H1�H�� H�H��
H�H��H1�H1�H�H��H1�H��H1�H�� H��H1��A�pH��0H	�A�pH��(H	�A�pH�� H	�A�0H	����f���H�3=H���H��H��H�=�2=���f.���ATUSH���	dH�%(H��$�	1�I��H�\$L���^��L��H�����L��2=I�kH�����A�I��I9�u��L���]�H��$�	dH3%(uH���	[]A\��l�fD��H�9<=H�f2=�D��AU�����H�5���H�=�0ATUSH��(dH�%(H�D$1�H���1�����H�5[�H�=�0�1�H�h�;H�={0H�0�YI�H�b�;H�5+��H��H��s�H�;�����H���H�5E �H�H�;�����H���H�5$0��G�H�;�H�+�H�5����G�H�;1�H���H�50�G�H�;�H�H�H�5��G�H�;1�H���H�5i��u�H�;�H�e�H�5�h�u�H�;1�H�
�H�5*��u�H�;1�H���H�5/�yu�H�;�H���H�5a|�G�H�;H�4�;H�5�0=��H��I���G�H���%�H��H�=�0=�a���|$�w
�D$�A�B1ɺH����e��H��I���N[�H�;L��H�5O�L�-J0=�5��H�;�����H����H�5�.�JK�H�;�����H���H�5�.�/K�H�;�H�0�H�5
��K�H�;1�H��H�5g.�J�H�;�H���H�5�-��J�H���>��f�ƒ�����H����<��H�x1�H���H�5���s�H������R�ƒ����TH���z<��H�x1�H����H�5�-�s�H�;H�5�-�*i�H�;H��H���|<�H�;H���AL�����H���H��H�5�-�&E�����H�z�H��H�5E-�E�H�D$dH3%(�H��([]A\A]�@H������Z���H��tfH���K���H�>�;H�8�@���fDH���������H��tFH������H��;H�8����fDH���;H�8���f�H�)�;H�8����H��;H�8����H�I�;H�8�����H�q�;H�8����H�a�;H�8�W����H���;H�8�G����H���;H�8����H�I�;H�8�'����H�9�;H�8�c����g�ff.����H��H�=�+�ls�H�=��H�N-=�Ys�H�:-=H�����f�@��t*@��uD������tZH��td@��tnH�G�f�H�����u�H��t!H��u�H���;H�ÐH�9�;H��DH���;H��DH�Q�;H��DH���;H��DH�I�;H��D��H�G �H��HE��f.���H�G����H�G����H��E=SH��H��tH��E1�1�[H�=�E=�2���H�=��S�H��H��E=��H�5�;=SH��H��t(1�1�H���7�[H�������H��4����!��D�H�=˙
�S�H��H��;=�ff.�U�H����SH��H��dH�%(H�D$1�I��H�4$H��H�=iD=��1�H�Ǹ���H��tH��H���K7�H�L$dH3%(uH��[]��Oe�ff.�@ATI��UH��SH��H��u=H�C ��������H��tH��L����L���9�}[1�]A\Ð[�]A\�fDH��H���%�������ff.�@��AWAVAUATUH��SH��H��H�Y�;L�oL�gH��H�0�a�H��u)H��H��L��L��H��[]A\A]A^A_�:���f.�L�uI��tI��u1�H��[]A\A]A^A_��L�}I��tI��t�I��t
I����I��tL��L��L��H������H��t�L��L���A���H�S H��@��H�E ������@8�uMH������yMH���;E1�1�H��H�=M���L�1��sz�H���I���H��L������fD������+�����#����L��L�����1�H�E �������9��<������f��������fDAWL�=w3=AVI��AUI��ATUH�-�3=SH��H�_L�gH�G ����t}�/f.�L��H��A�Յ�u'H��E1�1ɺ�H���N/�H��L��H��������x�H��[]A\A]A^A_�DL��H��A�Յ�u߅�t�H��E1�1ɺ�L���/�H��L��H�������Ņ�~�H��[]A\A]A^A_�ff.�@��H��1�H�= �9�ff.���ATUH��SH���a�H�}H����a�H��I���U3�1�H�E ����H�5'��H��H��H����S�L��H���g?�H��[]A\�ff.�@��ATI��UH��SH���t2H�H��~7H�}L���6y�H�{��[Hc�H�|?H�}]A\�@H����`�H������5�fD��UH��SH��H��H�6dH�%(H�D$1�@��t'H�F�H�H��tD1�H�T$dH3%(uCH��[]ÐI���-H�$H�=�2=�o-�H�H��u�H���^z�H�CH����`���H���Cz�1�H���ff.��AWAVAUATI��US��H��HdH�%(H�D$81��H�L��H���G�L�-V6=H�D$M���PL�d$0���H�D$H�\$L�t$(���H��M��H�=�3=H�\$0�,�H��H��H���2���AM���+H��H�="5=H�l$0H�D$(�_,�M��L��H��H�=�4=�E,�H��I���:y�I���t#H���QI��?E��t"L���X����H����H�����u.M���+L��H�D$0H�=n3=��+�H�������H���;L��L�L$H�0�Y\�L�L$H����L�κ�M��H�D$0H�={3=�+�L�L$�H��L����0������A���9���fDL��L�|$���H�t$H���8�H��u(H�L$8dH3%(H�D$�CH��H[]A\A]A^A_�H���x�H�è��H����H��?��u�H�D$�fDL�|$뛐H�t$M���-H�D$0H�=�3=�*�H�D$������H�=�[��K�I��H��3=���H��tfH������}���H�o�;H��H�0��Z�H��tM��H��M��H�D$0H�=�0=�**�H��H���/��t
��������H�l$����H����w�H�5sH��H���;H�81���e�L�����e]�D��UH��SH��H��H�6dH�%(H�D$1�@��t'H�F�H�H��tD1�H�T$dH3%(uKH��[]ÐI���-H�$H�=T.=�_)�H�H��u�H���;�H���Fv�H�CH����\����H���;�H���v�1�H���@��USH��H��H�G ����@��@���\�H�{H���k�t^H�H��H����N�H�{H���k�tPH�H��H����N�H�s �H��H��HE��N�H����o�H��H�D[]�DH���h[�H���H���X[�H�����UH���SH��H�7�;H�8�_"�H�U H�5�;=H��H���!�H�UH�5�;=H���!�H�UH�5�;=H���� �H��H��[]�f����W`������u1������t'@��uH�����t������t��
u���f�H���;SH��H��H�0�*X�H��t
�[�fDH���;H��H�0�X�[H�������ff.�AWAVI��AUATUH��SH��L�gL�odH�%(H�D$1�L��L	��tAL��L��L��H���X���H��H�L$dH3%(H����H��[]A\A]A^A_��L��A��H�������u�L��������u�H�5~�L���� �H��u�H�5i�L���� �H���s���L���uI�����tA�$�����2A��u2I�����t)A�E����uH��tlI����I��t��4�!���I����L��H�=�7=L�4$�&�H�������L��L��H���^+����������I�����t�A�$�����{���I������n���A�E�����^���E�������H�M L��L��L�����H���~���I����L��H�=|7=L�,$�c%�H���T���L��L��H���*���>����X�����X�A���l������f.���H��1�H�t$���H��4tH��ÐH�t$��AZ�H���ff.����H�t	1�1��Z�PH�ܹ;H�5%H�81���`���AUATUSH��H��L�%��;H�oL�oI�4$H���$U�H��uH��t0H���[]A\A]�f�I�4$L����T�H��uI��u���H��[]A\A]�2�f�1�H�C ����L��H����H���[]A\A]�i��f����G������U�H��SH��H�����H��4tH��[]�f�H�SH�sH��H��H��[]���������USH��H��H�H��uH�{���AK�H���9(�H��1�H�C ����H����H�5H����H�H�{H�{tH��t�K�H��4tH��H���/4�H��H��[]�DH�G ����H��H�=rHD��I�1�1���,�H���y���ff.�@��USH��H���>��uJH��E1�1ɺ�
H�=�3=�"�H��E1�1�H�=�3=��
H���"�H��H��[H��]��P�@H��1�1�[]�W���ATUSH��0dH�%(H�D$(1�H�BH��������u H�L$(dH3%(��H��0[]A\�H��I���p�H�D$��tX����H�m����H�l$H���tiH��~�L�L$1�1�L�~��L��H�D$�*�H�D$�r���f��Z��~4H�D$H�m��u&H��t�H�|$��a�H�l$H���u��XT�H���H�|$t
H�|$�a�����@�H�Q�;H�5�H�81��8]��T�USH��H��dH�%(H�D$1�H��;H�$H�0�Q�H��tSH�,$��H��I��H�=e%=��� �H��H��H���-&��xKt1H�L$dH3%(H��uH��[]�DH���;�H����T�H��;H�5ن
H�81��~\�H��;H�5�H�81��f\�fD��AVA�AUATUSH��L�gL�oH��tH� u5H�v H�>���I��H�-�;L��H�u�P�H��u[�]A\A]A^�H����f.�H�uL���tP�H��t�1�H�C ����L��[L��]L����A\A]A^���ff.������uhUH��SH��H��H�vH���,�H��u
H��1�[]ÐH�sH�}��,�H��t�H�E ������H�C ������8�u�H���[]����f.�H�Y�;SH��H�0�O�H��t1�[�@H�߾�[�]�f���AWAVAUATUS��H��8H�jL�bdH�%(H�D$(1�����I��I��A���tL�6�:��uUH���;H��H�0�-O�L��H�$H���;H�0�O�H�$H����I����H�����9���RL���"���H��@��t^I����A���^��VI�E I�H�H��H��I��H�I9��bDH��I9�~UH�|-��j�H�+H9�~��@@����@����1�I�E ����H��L����A�H���6���A�ƅ���L��H�L$(dH3%(�2H��8[]A\A]A^A_�H������H������1�I�E �����‰$�
N�H���]�H��I��L���T$L���H��L��R��AVAT�N�H�� �H������D����E�����5���I��u9H��H�\$H�D$�@!�H�T$H�5�H���`��,���@�����A��t'A�����I���������A�$��������H��H�\$1�L�t$H�D$�� �I�E ����L��H��@��� �M���H��H�
}�H���%1������1I�@I��H�I�H�|-L��i�H��L�y�H���XT�H��DH���h�H��H���--�H����H��;H��H�0�vL�H����I�E I��H��H��H�D$M�H�$A��NI��<�`�L��A���h�L�$Ic��H�t6�*H�\$H�=�!=�m�L�$�H��+H�=e!=H�D$�K�I��I��t�L�$L�ιL��H�=� =L�L$L�d$��L�L$H������l����l���@���,��������K�H���Z�L����L��L�����H���tY��7���H�5��H�����H�����H�5z�L�����H������H���%%�H��H��tSH�D$L�D$H�\$I��t&1�I�E ����H�
��L�����7/������M�L��H�5c��]����H��������t3H�T$H�5A�L��H�D$H�\$�[��k����1��j9�H���rE�H�5�H��H�y�;H�81���U����H��H���H�t$H�t$���H���ff.����H9�tOUH��SH��H��H��H���;H�0�J�H��uH��[]�DH��H��H��H��[H�=s]�9�D��f���H9�tOUH��SH��H��H��H�Y�;H�0�I�H��uH��[]�DH��H��H��H��[H�=S���]�]9�D��f�����uhUH��SH��H��H�vH����uH��1�[]�f�H�sH�}���t�H�E ������H�C ������8�u�H���[]�f���f.�USH��H����u2H�����t)H��ƒ���t��uH�{ uH��[]�f�H���HI���W�H�=�H����H��H��H����6�H���T2�@��UH��SH��H���k���H��H����H��H��[]�fDAUI��ATI��UH��SH��H��dH�%(H�D$1���t��u6H��t0I��t*I����H��H�=�*=L�$$�T�H����H�CH�`��L�hA��u	M����H�CH�`uH�CH�(@��u	H�����usH�CH�`uH�CL�`A��t(H�D$dH3%(��H��[]A\A]�f�I�����t�L��H����7���f.�H�C�^����H��H���7�H�CH�`u��fDL��H���7�H�CH�`�?����6���H�в;H�5H�81��GR���I�f���AVAUATI��U��SH��H��dH�%(H�D$1��d�H�$��tG����L�+L�s��tY1�H�[����H��H���~L���^���H�۸HE��1�O��~kH�$L�+L�s��u�H��tH����U�L��1�����H��L��L��L������H�L$dH3%(u>H��[]A\A]A^�@H���U��u���H�<$tH���|U�����4��H�fD��AUATUSH��@����H��H������������u}H�DZ;H�H9FumH���f���H�5O(=H���P�H�58(=H��I���uP�H�5(=H��I���cP�H��tH��L��L��H��H���HE����H��H��[]A\A]�H��;H�5A
H�81��YP�f�����u.UH��SH��H���/��uH�{tH�{tH��H��1�[]�UI�D�`H��[]���ff.�f�H��x3H�0H9�t\H��H��<����tmH��H��u>�DH�0H��H��?H9�t!H��H��<������tH��H��t�H�|$��D$��`�H��H��H��H���H��H��H��H�����AWAVAUI��ATUSH��(H�_L�gdH�%(H�D$1���t
A����؃������u!H�����t�������f.�D�������A��uI�����tA�$������H���
���tL��������gH��������t
I����H����L�����������-�H�����H�l$L�5n=������B�H���Q�L��E1�1�1�H���P�I��H�L$dH3%(L���{H��([]A\A]A^A_�fDI��H����H��H�$I�����-���y���I�E A�H��H��H�$�L�4$M9���H�D$H�D$�!�H���nH��?��tgI��M9�}hL��L��H��H��?H��?8�L����L)�H��H��?H�H�L�H���G���H��I���^�H�Ũu�H����H�������L�{M9�|�L9<$����H�<$����H��H����]�H�è��H����H�����tgH�Ĭ;H��H�0�IA�H�����H��L�D$�H�D$H�=.=�y�H��H�����������Å��@���A��5���f�H���x=�ƒ������@f��f(�fT��f/�fI~��2���I���*���fDL���0=�ƒ����B�@f(�fT
Q�fH~�fH~�f��H��f/�HF�H�$�+��������l���f�H�������I��?E����H��I���*H�D$H�=�=�d�H��I���+L��L��H�\$�D�H��I���9\�I�Ǩu�H��t�H������0H�)�;L��H�0�?�H���Q��L��I��H�D$H�=�=���L��H���@���������A���+���DH��L9�~8L��H��H��L)�H��H��?H�H�H���`����I��M������DK�>H��H��?H�H��3���f�H�i�;H��H�0��>�H����L�D$��H��H�=A=H�D$���H��H���~����������@H�I�I��L�$$�F)�������I�E A�H��H��H�$�L�$$I9���H�D$H�D$�$fDH����H��?��tYI��M9���L��L��H��H��?H��?8�L��tBL)�H��H��?H�H�L�L�t-L���RZ�H�èu�H��tEH�����umL�}��H��L9�~8L��H��H��L)�H��H��?H�H�H���f.�I��M���b���DK�'H��H��?H�H��{���f.�H�٨;H��H�0�^=�H���$L�D$��H��H�=q=H�D$���H��H����������������H��tfH���������H�c�;H��H�0��<�H������H��L�D$�H�D$H�=�=��H��H���x�������M������L��1�L�����I������L9<$�����H�$L�dL���X�H�è�I���H�����f�H��H�$H9�����H���H��H��?H)�H	�H��H�$�~$���H��E1�H9��s���H���H��H��?H)�H	�H��H�$�~$����z&������1�I�E ����L��H��������I������H���H��?����:&�A�H�l$L�5=��uK����H�������I��?E����L��I���*H�D$H�==�|
�I��I���+H��L��L�|$�\
�H��I���QW�I�Ĩu�H��t{H�����t�H�E�;L��H�0��:�H������L��I��H�D$H�=�=�	�L��H���\��������A���/���M�����I�����L��1�H�����I�����L���W�H�5%�H��H�3�;H�81��E�H����L����H�����
=�H���4�H�5vH��H���;H�81��jE�f.���AVAUATUSH��H�ZdH�%(H�D$1�H���A����tLH�BI��H�ըte���|��uH�����tH�����
tcH��� M�L��D��H���b��H��H�L$dH3%(H����H��[]A\A]A^��u�H�����t�H�����
u���H���;H�0H����E���lH�uL�u@��u.@���*H�����������
�f�A����L��H�m 芅��H��H���H���i�������H������L���S���I����U�H�$���kI�mA���@���H���L�d-H��L����m��H�����t���YH��I��H�H���(�L��L��H���ڄ��I��H�������fDL���{���H��H��I���]R�H��u��c���f�A��tjH�
��H�5=H�=�
�1���H���*���f���H�==����b������f�H�����H�����I�����t�A�����
u�����H���9�H��H����H�@H�����H���>�I������f��?�H�$I�mA����H�������H���F��v���H��I���9�H�����H�.�;H�5�H�81��B��9�H�
i�H�5�H�=��a	�H�b�;H�5L�H�81���A���H��tH���F��D���%�fD��AUATI��USH���� ����I�\$M�l$�݃�t]I����A����I�D$ L��H�H��H��H��H�H9�~H�H�,6H��H��H���'R�H9�u�H��L��[]A\A]��t\���rI����H���T	�1�H�5���H���H�뿐�5�H���D�H��L��1�[L���]1�A\H��A]�SC�H�����������
�H��t���������z���L���H����I�������A�E����
��L���|)��tB����H��H��H��H��H���"Q�H9�u�H�@�^<��H�Ã�������H���&)�L����)�9�����I�D$ ����u�H����P�H�߾��H��L��H���!
�H���t�������?����H����H���8I���1�H�
��L��H��I�D$ ������E1��5��.���I��u[H���r(��tI����A���,�������DH���P�H�߾�K�H�èt�I��tFA����������L���A���e���H��u�I�����t�L���'�������r���@I�@H�H�,H��L�kH��H���O�J�#L��H��y�L����:�H��@H���pO�H�߾��H����A����A��uI�����tA�E����tsH����H�������H��������1�H�5���L���V������H���N�H������H�߾�"�H��L��H���D�H��H��u����H��1���L��I�D$ ����@��H����E1���H��H�
e��H���m��f���H���-�H�5#�H��H��;H�81��u=�D1�H�5��H���E��(���H���"���t�H�-�=I������DH��� N�H��E1�1ɺ�H����H����H������e����a���@��AUATUSH��dH�%(H�D$1�H�z�[��I��H�����t>H�{�W��L����5�H��H�L$dH3%(H���H��[]A\A]�@���hL�cH�kL�$$I��t�A��@��tEA��t?H��;H�0H��uL9��}|��k��H�=�=��	�L�$$��u��@��tZA��A���|��H��I��H�=u
=���L��H��H���B���*���H�C �������������H�����t��E������A��A��t�E����u�D�����t-A���o���I������b���A�$�����R���fDH�I�;H�0H��t��H�=
=��L�$$��� ���L��H���q
��:���@��H��L�����H���U���H���;H�0H;u����A������I����������A�$���������L������H9������H��t��H�=�=�^�L�$$�����H�4$H���V9�����1�H�}�;H�5��H�81��d:�H�e�;H�5��H�81��L:�ff.����AVAUI��ATU��SH��H�� H�zdH�%(H�D$1�A��H�|$A����H�����C�L�c��t;I������L���3�H��H�L$dH3%(H����H�� []A\A]A^�H�C ����tE��t���u�H�l$E��E��H��A����@��tH�8�;H�0H��uHI9��g�������f.�H�I�;E1�H�0��-�H�{H��A���,���fD��H�=�
=������H�T$H���A��u
I�������A��A�����L��L�D$�H�=&=��H��L��H�������H�l$H�C �����������uA@��uH�����t�M����
t'�H��;H�5b�H�81��X8����tLE����A��uI�����tI�$����
��@H���;H�5:�H�81��8����"���fDA�$������A��A��tA�$�������fD�����t&@������H�����������E���������H���;H�0H��t��H�=5=�0�H�l$�������H��L���	������t,H��H�H9���H�l-�H���T����H��L�D$��-H�D$H�=�	=���H�������H���;H�0I;t$��������H������������������H������H9������H��t��H�=�
=�P��trH�T$H��L���L5������H����������2�H�����H�l$����H�P�;H�5��H�81��76��-�H�3�;H�5��H�81��6�H�l$�0�����AUA��ATI��UH��SH��H��;H�8�z�A��L��H��H�H��H��H�у���H��H��[]A\A]�ff.���AWAVAUI��ATI��UH��SH��H��H���;H�0�*�H��t>1�L�sL�{H�C ������M�uM�<$�EH���[]A\A]A^A_�f.�H��p=H��H�0�)�H�����unH�5�=1�1�H����I��H��4tRH�5{=1�1�H����I��H��4t6H�5�=H��tB1�1�H���f��H��4tH����������V����H��1�[]A\A]A^A_���H�=�=���H��H��=���AVAUI��ATE��UH��SH��H�� dH�%(H�D$1�H�L$H�T$H�t$�pB����H�|$E1�H��t@����H�I��H�D$H��t_���H�L��M��xcH��H�HIȃ|$H��A�����uH9�FH9�HO˸H)�I�UHHȸH�M�.�H������D$L��M��y�H�y�E��up�H�\$dH3%(uVH�� []A\A]A^�D1���@H���8*�H�|$�H����f.��*�I��H�D$H�������t����*�I��H��;�|$H��PH�
ۈH�5"�HD�H�8L��1���2�f.���U�H�=I�SH����H�=�8H�2
=��H�=��H�
=���H��H�-j�;L�
��jL�8H�
��H�uH��	=1�H�_��H�=���s�H�t�;H��H�ZH��;YH�2�%��H�uH�;H�
�H������H�;�����H����H�5���H�;�H���H�5����H�;�H����H�5�:��H�;�H����H�5�:�o�H�;�H����H�5���T�H�;1�H�h��H�5�<�H�;1�H���H�5
��$�H�;�����H�U��H�5&�	�H�;�H�Z��H�5�M���H�;1�H���H�5�����H�;1�H�����H�5}���H�;1�H��H�5�6��H�;�����H�g��H�5���H�;�����H�\�H�5���p�H�;�����H���H�5��U�H�;�����H�F���H�5���:�H�;1�H����H�5���"�H�;1�H����H�5o3�
�H�;1�H�N��H�5R����H�;1�H�6��H�5�*���H�;1�H�N��H�5����H�;1�H���H�5����H�;1�H�����H�5�8��H�;�H����H�5�3�w�H�;�H�x��H�5���\�H�;�H�=��H�5���A�H�;H�������[H���H�5�\]� �@��t*@��uD������tZH��td@��tnH�G�f�H�����u�H��t!H��u�H�M�;H�ÐH�ɇ;H��DH�y�;H��DH��;H��DH�A�;H��DH�ً;H��D��H�G����H�G����H�G�tH����H��?H��?��ÐH�H��
��H��?H��?���f.���H�G�tH��?H��?H��?���@H�H��
H����H��?H��?���fD��H��������fD��H�wH��ߦ��ff.�@��SH�W��t"H��H�_H��?��u)H��H��[駦���H�H�_H��
H������t�H���b'��H��H���w���[H���N'��ff.���SH�_H��.'��H��H���C���[H���'��f.���USH��H�WH�_��tIH��H��?H��uPH�׾�x��H��H���%n��H�߾H���ex��H��H��[H��]�ԥ��@H�H��
H����H��t�H���&���H���(x��H��H����m��H�߾H���
x��H��H��肥��H��[H��]�T&��@��USH��H�WH�_��tYH��H��?H��u`H�׾�w��H��H���em���H���m��H�߾H���w��H��H��[H��]�����H�H��
H����H��t�H����%���H���Xw��H��H���l���H���0m��H�߾H���0w��H��H��襤��H��[H��]�w%�����UH��SH��H��=H��t7H��E1�1ɺ
H�=�=�^��H��H��E1�[1�H��]H�==�A���H�=����H��H��=���UH��SH��H��=H��t7H��E1�1ɺ
H�=c=����H��H��E1�[1�H��]H�=�=�����	H�={���H��H�u=����
H�"���6*��fD��USH��H��H�wH���H��H��H���9�H��H��[]�ff.���AT�I��H�=
�US����I�|$H����H�5A�H��H����I�|$���H��H���/�H��H���/�H�ߺH�5p��l�H��[]A\�@��SH��H�� H�dH�%(H�D$1��k0�tGH�H�{H�$�W0�tCH�H��H�D$�.��H�T$dH3%(H�Du#H�� [�H���H ��fDH���8 ���� ���ATUSH�GH�o���H��H��?H�����H���t��H��H���0j���H��I���pt��L��H���%l��H� u,H�@ H�xH�(@��t,H������u/H��uAH��[]A\�H��H�xH�(@��u��4������t�H��H������b��H��H��t�[H��]A\�N"��fDH�H��
H����H���9���H���)"���,���@@��t
�"��DH�7 ����@AWAVAUATUH��SH��8H�?dH�%(H�D$(1�H�H�H9���?.H��I��I����A�L�l$H��H��H�L$ L��H�}H)�A�A�
L�T$H�D$ ���L�T$H��I����H�D$H�|$ H�EH�t?H��������?H9���I�6�L�T$�|��L�T$I���JH�|$ M�<$H��������?L�|?H9��yH�}�|L�l$H)�A�1�A�
L�����I��H��u1f�1�H�L$(dH3%(�7H��8[]A\A]A^A_�H�|$A�H�}I�$H9�s	�?.����H�GH9������߀�EuH�E�WA�?�JՁ�uH�GD��H�EH)�1�A�L��H��A�
H���K��H��t5H�T$H�UH��t&A��-tPI��tL��H���g��H������I�@�����fDI�<$H���dq��L��H���	g��I������I��t�L��H����f���DL�T$�.�L�T$H���F������I���z�����ff.�UH��SH��H��H�>@��t;H����H��x��u@H��[]�@H�}�'��H�EH�;���H�H��[]ÐH� t��1�������fDH��t3H��t.H��tHH��t*H��H��piH�@H�xBH�D�@��f�H�@H�x$H�D?�H�@H�xH�D6�H���� ��H���� �USH��H��P�� �H��H��� �ZH��[H��]�Q.���H������H������UH��SH��H��z�H�5D�H��H���
�H�}�Z�H��H���)�H��H��[]�DU��H��S��H��H����t*�GH�����5�#��+5�K�H�EH��[]�H��f�H9�t�H���H��H��?H)�H	�H��H�|$�~D$�fD��H����~��H�@H�@H�H���f�H�G�uP�uH�����t
�����
t:SH��H��H���2�H�{�D$�#��L$H��[�^�f(���H�w@��u@��u�H�����t������
u�H���=���ff.�f���H���c���H�0fH~�H9�tOfH~�H��<������tH��H��u,H����fH~�H��H��H��H���f.�H���7�����ATUH��SH��H��H�� H�5d�<dH�%(H�D$1���!�H�5@�<H��H�D$�!�L�d$H��H�D$A��uxA��t2H�ہ;L��H�0�`�H�Qz;H�5=�H�81��!��I�����t�A�$����
t+H���;L��H�0���t�I�$H�l$����
u�@@��uR@����H��������E����
t0H�A�;H��H�0�����^���H�E����
�N���fDH�t$H�|$�y���H�t$H�s@��u	H�����uqH�t$H�s@��t*H�H��H�T$dH3%(uaH�� []A\��H�����t�H�������DH���;H��H�0�����f�H����H�t$H�s@��u�����f���ATUSH��H�� dH�%(H�D$1�@����H�������H��ƒ���������H��@����H�������H��Ѓ������� �,H�VH����H�~ L�'H�oL�d$H�l$A��uSA���I������A�$����
t0H��;L��H�0�����I�$H�l$����
���@��uR@����H��������E����
t0H�1;H��H�0�����H�E����
��fDH�t$H�|$�i���H�T$H�5-�<H������H�T$H�5�<H�����H��H�L$dH3%(��H�� []A\ÐH����H��umH������f.�H��~;L��H�0��H��v;H�5��H�81��f�fDH�Y~;H��H�0�����@H���`����H��~;H�5�H�81�����f���ATA��UH��SH��H��A����@���GH������������
��������,�������H�}@����H����H�s��t@����H������upH�sH�}���H��tH�sH�}���H��uLH��1�[]A\�H�}����tEH�E��H��������E���IH��������H���[]A\�@@��uH�����t�����
��H�����H���D$����T$f(�f(��$�H���O�����������H���:���H��H9��f��뽐H�E�����H�H������H�}H��H��[]A\����H�E�u3���P���H������D���H�����
�5�����������'��������fD�����tvH��H��H��[]A\�3��H���'�������fD�'��������f�H���H����K����fDH���`'�������fD����H�ڸH��H��?H)�H	�H��H�\$�~L$����H����ӓ��AWA�AVAUATA�U�SH��A��H��XH�t$H�T$8H�L$0dH�%(H�D$H1�H�D$@H�D$H�D$��A����D����H������������
�$����������H���<H����E1�1�H�=S�<H���[��I��E��A���OH�D$L�D$�L��<H�=��<H�D$@�#��H������������qL�D$��-L��H�D$@H�=��<����I��H���H���aI���?H��I��tCA����A��u
I������aL�D$L����*H�=X�<H�l$@�~��H��I���YH��t#L�D$��+H�=��<L�|$@�K��I��I���6I����I���D����D$,I���f���.A��u
I������L�D$��*L��H�=��<L�d$@����H�|$L�|$ I��tGH����H�D$L�D$L���+H�=��<H�D$@���I�ŋD$,��t
I����L�D$H�t$��-H�=�<L�t$@�\��H���$���L�D$H��H�=��<��-I��L�t$@�.��L��H����A��I��L�d$H�D$M��H�l$ ��A���G���I��D�t$A���=A����f������U���1�H��誔��I���j���f��u\����H��������������
����I���R����@��u"@��uLH�����tC�E����
u8�I������L�|$ L�l$����A�����
������H��L���b��H��I�������I��I������A��u�A��uI�����tA�����
��@I�������L�|$ L�l$H�|$���H��H������1�L;l$���������H���4H����I���I���>E���QH��L����a��H��I����H��t&L�D$@��+H��H�=��<L�|$@�,��I��H�D$8L�8I���I��t+I���?I����E���LL��L���ia��I��H�D$H����I��t(L�D$@��+L��H�=�<H�D$@���H�D$H�D$0H�L$H�H�D$HdH3%(��H��X[]A\A]A^A_�f�H������D��L�|$ M�����D$,H�|$�����I���z���L�l$���fDA���H���A��txL�|$ �D$,L��L���`��I���A�����
���f�L�|$ ��f��H�=�	���H��H���<�A���L�|$ M���U���I������{���A�$L�|$ ����
�k������f�I�������E��u{A���!I������A�E����
�H�D$8L�8I������A�E����
�����d���DE���V���A����I������=���fDH�D$8L�8I�������� ���f�L��I���^���I�����A��u"I�����tA�E����
�����f�L��L�D$@��*H�=7�<L�d$@�]��I��H�D$H���t���L�l$����L�|$ L�l$����I���I���&A��uI�����tA�E����
�����DL�D$@��*L��H�=��<H�l$@����H���n���DA������A��u I�����tA�$����
������E���������f.�@���M���@��u H�����t�E����
�/����E���O�������f�M���R���I�������v���I������������L�l$���H�D$8L�8I��������I��������/����m	�ff.�f���AUATUSH��H��(H�dH�%(H�D$1�@��t5H��H��?��u<H�L$dH3%(H����H��([]A\A]��H�H��
H������t����H�S��t8���w�ك�����H���?��u:H�
Cn;L�)�2fDH�����uH���%H��uH�
Ar;L�)�@L�kH�t$H�|$H�D$H�T$�S��
�<��tYH�|$@����@����H������������
ty����H���1�H���!��cf.�H�l$�L��L�d$�y��H��H�h@��u
H�������L�cA��u	I�����ulH����1�H����H�l$H��t��l���fD��f����@H�
aj;L�)����H�
in;L�)����H�
�h;L�)�����L��H�������H��H�������a���H�
�m;L�)�����ff.����ATI��UA��H��SH��H����uRM�����؃�����H�����H��H����H��H�5��H��H��g;H�81��*�f.�@��tz@�����������H���@����H�}�����H�XM��u
H������*H�H��H��H�@H��[]A\���H�����u�H����H��u�H��o;H�8�@H��������������
�=����ڃ�������������������H�{������t]@��u@H�����t7�����tD@��u-��
t(����f���F���@@��t�1�H���������H�����H��H��H��[]A\��f�H��H��H�D$���H�D$���fDH�9f;H�8����H����H�0fH~�H9�t+fH~�H��<��������H��H���p������H���c���@H�	k;H�8����f�H�	j;H�8�����H�Qg;H�8����H�Yk;H�8����H�[@��tF@��u|�����t~H����@����H�}����H�X����������f�H�����u�H��tcH��u�H��m;H�8��H��H��H��H�����H�����H��d;H�8�H�)j;H�8�1�H����L���H�~f;H�8�p���H��j;H�8�a���H�i;H�8�R�����AUATUH��SH��H����uo���^H��������I�܃���
tL�ڃ����&H��H9���f��H���L$�1��L$H��[]A\A]���@H�}uH�}H��H��[]A\A]�K2��@���@���l�������H����@����H�}����I��H�X��u
H������;I�$�I�D$H�}@��t#H�E�tI�T$��t@���O��V��H�uI�|$H���V��H��H����K��H���[H��]A\A]�p1���؃��������H���<H����H��H��H��[]A\A]�=��DH���������H����H������H�Ik;H�8���f��؃���u�H�ڸH��H��?H)�H	�H��H�\$�~L$�=���@H��b;H�8���f�H��H����������H�=�����H��H���<�.�������������I�t$���@H��H�H��
H���H���H���)H��H����H�@H�\?H��H�H���H����H����H�tH���R���H��H���H�@H�t?H��-�����H��� �����K����fDH��f;H�8�{���f�H��b;H�8�c����H��f;H�8�S����H�ie;H�8�C���������.���H�@H�xCH�t���H�@H�x:H�\6���H�\���<�I�T$H��H�E����H���#�H���L���H����I�T$H��H�E���H��H�T$��H�T$H��H�����H��H���z�H������H�����H��I����L��H���T�I�T$H��H�E�T�����AVI��AUI��ATUSH��PdH�%(H�D$H1�L�d$H�l$ L��H�\$0��H����H�����I�6��@�H��I�F��H��E1�L��E1�P�������|��I�u_AX��@��H��I�E��H��E1�E1�H��P�������A��YH��^H��L�����L���i�H���a�H�����H�xH���2��H��H�xH�@uH�xH�t$H��E1�E1�S����������XH��Z��H������H�L$HdH3%(u*H��P[]A\A]A^�I�EI�u�5���I�FI�v����^��ff.���AUATUH��SH��H����uo��t2H��e;H��H�0�0��H�!^;H�5
�H�81����H�����tŋ����
t%H�fe;H��H�0����t������
u�D@��uH�����tH�E�ƒ���
�'A��A��A��A����E���RH����H�H��
H��������E����H������uE���6H������t%�fD���/H��H��H���1`��H��@��t�H��u�H��H��[]A\A]�@H�E tFE���l���H��H��?���s���H���&���H��E���h���H���"�����]����H�����A��H��A���@H��H��[]A\A]�f.�������H���������H���
�������@��H������@��H����H	������H��H��H��[]A\A]��H���p�������fDH��H��?H�H��H1�H)�H�x@H���?H��u>f.�H�@H��-H��H�D[]A\A]�DH��H���0H��1�H	ڃ�u�H��H��H��H	ڃ�t�uH��t�f���tH9�s	H��H��H��H)�u�H���p���H����H��H��?H�H��H1�H)�H���H��twH���>���H��1�H	ڃ�u�H��H��H��H	ڃ�t�u�H��t�f���tH9�s	H��H��H��H)��l�����u�H����f.�H�������H��H��[]A\A]�>��fDH��H���^���H�����H�S�"���H�E�	���f���AWI��AVI��AUATUSH��(dH�%(H�D$1���ukA��t-H��a;L��H�0���H�Z;H�5��H�81��s�I�����t�A�����
t$H�Ua;L��H�0����t�A�����
u�E��A����I����D�����uI����L����H�$��I������~I��ƒ���
�mA���cI������VI���
�E��@��H������@��H����H	��L��L����H��fDH��t:E���yH�<$�NL��L�D$��/H�=e�<H�\$�+��I��I���VI���dI����I��tWA����A��uI�����tA�����
��@L�D$��*L��H�=��<L�t$����I�ƃ�����A��uI�����tA�����
�}�H���<E1�1�L��H�=��<�e���E��t[����M����D��M��I�L��H��
H������tSL���L$�����L$H��u@L��������8f�1�M��I� ����t�L��L��H��?��u���t�I�������a�������H������t�����L��H��L���9Z��I��A��t�I��u�����DL���h
���_����H�T$dH3%(�iH��([]A\A]A^A_����u,A����I�������A�����
��fDA�L���2����I����������A�����
�����@L��H���v��I��I�������A��u�A�������I����������A�����
������f.�L���x	������L����H�$���������L���@�����I�Ń��e���L��L����H����I�ƃ�����L������H���	�����U���fDL��L��H��?H�H��H1�H)�H���H���H���H�@H���H�\?�R���f.�D��M�������f�L��L��H��?H�H��H1�H)�L��H�xBH���iH��u@H�@H��AH�\?H���r���I���*����3���H��H���,H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���t,H9�s	H��H��H��H)�u�H���]����H�������H����H��1�H	بu@H��H��H��H	بt�@��u�H��@��t����t#H9�s	H��H��H��H)�u�H������H����H��H��u�H���a�����{��H������k��H�����H�����H�����I�V�r���I�G�Y����y��f���AWAVAUATUH��SH��H��(dH�%(H�D$1���uk��t.H��Z;H��H�0�<��H�-S;H�5�H�81���@H�����tɋ����
t%H�vZ;H��H�0����t������
u�DA��A����A��A��H���RH���H�$E����H����H�<$�BH������5H�E�ƒ���
�#���H������
H���
����@�^	H������@�E	H����H	���H��H�����I��DH��I��t7E����H�<$��L�D$��/H��H�=z�<L�l$�@��H����H��tOH����H��������uH������L�D$��*H��H�=��<H�\$���ƒ�����H�����I���@E��t[E���BH���iD��I��H�I��H��
H������tTH�߉L$�b�L$I�Ņ�uAL���_�����9�1�I��H�E �
E��t�H��I��H��?��u���t�I�����������A���}I������t%�=DA���vL��L��M���S��I��A��t�I��u��\���@H������h����E����
�Y���@L��H���]p��H���m����u'��g���H������[��������
�M���D�H����I���FfDH���H�H���H�$����A��A��E������H���������A�H�<$u"H�����tH�E�ƒ���
��A��A��E���fH�E �fE���H��H��?���E��� H������uB���[H������t"�;���WH��H��H���!R��H��@��t�H��u�L��H������H�L$dH3%(�H��([]A\A]A^A_�@H�����I�ǃ�����D��H�؅��F����uH�����t�����
�,���H�Q�<E1�1�H��H�=Z�<���I�����DE���A�H�H��
H���������H����H��E�����H�����������DE���_H��y�H���R�A��H��A�����H������H���8�������fDH��H��?H�H��H1�H)�H�x0H����H��u.f�H�@H���H�\?���H��H����H��1�H	بu�H��H��H��H	بt�@��u�H��@��t����tH9�s	H��H��H��H)�u�H���p���H����E���������uH�����t�����
����H��H����?���ƒ��������1���H������$���H��у���
������@��H������@��H����H	����H��H���
��H���c���DM���H����A��A�A��H�<$��������L��������x���fDL��L��H��?H�H��H1�H)�I���H���M���H�@H���L�l?���f.��{��H�����H��H��?H�H��H1�H)�H���H��tH�����H��1�H	بuf.�H��H��H��H	بt�@��u�H��@��t����tH9�s	H��H��H��H)�������u�H����f.�H���{����H��H��H��?H�H��H1�H)�H��H�xzH����H��uxH�@H���L�l?I���j���H��H���������H��H������@H�����������
�������DH��H���TH��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���t4H9�s	H��H��H��H)�u�H���%���f�L�������H����H��1�L	�u@H��I��H��L	�t�@��u�H��@��t��A��t"I9�s	H��L��I��I)�u�H������I����I��H��u�L���q����H�A��1���H��A�H���������I����������I���W���H���G���H���,���H�S�v���H�E�]���H�S���H�E��������AWAVAUATUSH��L�/dH�%(H�D$1�I���)H�I��H���H��A���8I������+I�E�ƒ���
����H������H���
����@�2H������@�H����H	���H��L�����H��L�mA����A����I����
L��H�=9�<H�$�@��H�EI�<$@���k@��uH�����t�����
�N�H��I����
H�=��<H�$���I�$H�D$dH3%(�jH��[]A\A]A^A_�f�A��E��A��A��tHE����M���H�H��
H������tBH���d�H��E��u7L���d������/DI�E ��E��t�H��H��?��u�E��t�I���������������H������t$�D����L��H��L���I��I��A��t�I��u�L�mA���z���@L��H����f��H�EI�<$@�������H���f������fDI������C���A�E����
�3���뱐L���h�A��I��A������f�L�����H���H������(���fDL��I��?H�L��H1�L)�H��tH����H����H�@H��gH�\?���DL��L��H��?H�H��H1�H)�H�x-H���DH��u+H�@H��H�\?����f�H��H���H��1�H	بu�H��H��H��H	بt�@��u�H��@��t����t+H9�s	H��H��H��H)�u�H���q���H���1����H����H��1�H	بu@H��H��H��H	بt�@��u�H��@��t����t#H9�s	H��H��H��H)�u�H������H����H��H��u�H����������H������H������H�����H�S���I�E�������f���AUATI��USH��H��I��A��H��(H�-KK;dH�%(H�D$1�H�u�����tf�؉ڃ���tZM���iH������\����������N��
�E���b�H���3����[M����H�uH�߉��A���tM�؃���tCI��A��uH�����t������sI�|$@����1�H��������@����H������H���9A����A���5D�������I����A���M�l$H�,$H��H�l$H��H��H�D$�Q��H��H�������<���PH�|$@����@���H�����������
������H���1�H���!��f���u
H������^�����vH��<H���"H��L�����H��H�L$dH3%(H���-H��([]A\A]�f�H������D���������6���H�{@���g@��u!H�����t�����
�J���|������:�������1�H��������f�@����H������������
���������H���1�H���!����f�I������1���I���M������H�QI;L�*������������������
�!����t��t	�������L�����H�0fH~�H9�t`fH~�H��<��������H��H��u9H���a$��H���U���f�1�H�����������H�[���fD�K��H���fDI�|$H���<��I�|$H��H���<����������uD��t#����H���������H����������T��ߟ�H������@��uH�����t�U����t���u���y���f���o���H������c����������HD�HD��D���DH�$�L��L�d$�r��H��H�X��u
H������yL�eA��u
I������RH�M��D�H�=
��_��H��H���<���H������I�|$H���K;��H��H�����I�|$H���3;�����fD1�H����H�$H�݅��<����w���I�|$@����@��u#H�����t�����
�������ƶ���I�|$@����@����H�����虶��t-@���*M��uH�����t�����
��I�|$@����H�����������H����	������L���r����H���բ�H��H�@H�@H��r���fD����������������H�{�s���fDA���6A���D������!I���&A���:I�|$��:��H��H�@H�@���f�H��B;L�*�����H�	A;L�*���H��<;L�*����L��H��������H��H�������w���H��H��H��H������@1�H�����4���f.�H��A;L�*����1�H������9���f�H��=;L�*�d���H���H���L������H������I��������I���M������H�AD;H�8����H��L�D$1۹�%H�=f�<H�D$�Ȧ�L��H�����i����H������H���Ġ�H��H�XH�@H��e���H������G��������
��������0���H��uH��.����>������b���H�
;;H�8����H���1�H���!����H�@;H�8���H�~<;H�8����H��@;H�8����H�?;H�8����k������fD��ATUSH��H��0H�oH�dH�%(H�D$(1�����������b�ڃ�����H��������L�cH�l$ H�\$H�l$ H��H��H�D$�λ��H��H����}�<����H�|$ @����@��u H�����t�����
�����`��f�����H������j���H����H���W���H�	B;L�"�L���f�H�\$�L��H�l$ 蹞�H�X��u
H�������H�h@��u	H�����u`H�H�L$(dH3%(��H��0[]A\�@1�H����H�\$H�؅�t��ȐH��8;L�"����H��>;L�"����H��H��H�D$�0��H�D$�f�H��H��H�D$���H�D$�S���fDH��=;L�"�T����H�1:;L�"�D����H��<;L�"�4����H���1�H���!��H������f���AUATUSH��HdH�%(H�D$81�����H��H�Ѕ���H�B���H�H��
H�������AH�>@����@��uH�����t�����
�o�H�I�<H��E1�1�H�=R�<�ݢ�H��H���RL�l$0��-H��M��H�=d�<H�l$0誢�I��H����H��t$M���+H��H�=и<H�l$0�v��H��A��t
@����H��L���ȯ�H�H���<H�T$H�L$H��L�����H�D$H�T$���%���,�ك����^H�������3H�
;;L�)�(@H��H�t$����H�t$�H���I���H����H�L$8dH3%(�H��H[]A\A]�f�H��?�f�������H��H�������@�������I��H�����f�H�l$ �L��L�d$(�i��H��H�h@��u
H������oL�cA��u
I������HH�H���H���f�H�����u/H����H��u H�
)>;L�)�@1�L9����u���L�kH�l$(H�\$ H�D$(H��H��H�T$ �%���H��H���Z��Թ<���,���H�|$(@��u9@��u[H�����tR�����
t ��uCH���1�H���!��D1�H����H�l$ H����������f.��膭���@H�
�6;L�)�=����H�
�:;L�)�-����H�
�4;L�)�����H���e����L��H�������H��H��������H�
�9;L�)�����1����� ��AWAVAUI��ATI��UL��SH��H��HH�<$D�L$dH�%(H�D$81����T�փ���ȃ��y��A����	A��A����@��uH�����t�E����
���L�����H���$����$L���^��$���H���D$�����L$�|$+�^��$�
�\�H�0fH~�H9��fH~�H��<�������IH��H����fDH�L$8dH3%(��H��H[]A\A]A^A_�D���/���H������"��������
����D��1����=f.�A�������I��������A�$����
�����փ�t��ȃ��������A�������I����������A�E����
������g���f�苒��&���fD��uH�����tH�������
�����YI��H� ��E���QH��I��H��?���Y���lI������uBA���9I������t!��A����L��L��M���4��I��A��t�I��u�L��H����Q��L��H���C$��L��H��I���Q��L��H���*$���|$+L��H������I��L��H���Q��I��A��uI�����tI�$������
�
D��E���A����L��I�$ ������L��H��?����E���H������uSA���I������t)��f�A���&H��L��I���x3��H���t�H��u�f.�L��L���P��L��H��H���P��L��H���#��H�$�������v�$�����'	H�<$�<	�<$�R	H�$L�aH�t$0H�|$(H�D$0H�\$(����{�<����H�|$0@����@��u
H������!��w���H�\$(H�؅�������L��H�l$0���H�X��u
H�������H�h@��u
H�������H��J���f.�H�\$(�f�H�$H����������H���UH�<$����H��7;L�"�������XL��M����I�H��
H����������L�����I��E�������H�����������E���WI��H��xH�EI��H��
H�����������H��t$����t$I�ƅ������L�������������X�����1�H�����}���f����I�����H���H����I�ǃ�����L��L$�,���L$A��H��A�����f�fH~�H��H��H�����f.�I���H����M�������L�������������fDL�����������fDH��H��?L��H�H��H1�H)�H��9H����H����H�@H���L�t?���L��L��L��H��?H�H��H1�H)�H���H����H���4@H�@H���L�t?�:���H��,;L�"����H��H��H�$�!��H�$�����H��H��H�$���H�$�����@���U���H������H���H�M�σ���
�6�����@�1	H������@�	H����H	��
���H��H�����I�����A�����I���������I��΃���
������@��H������@��H����H	������L��L���,��I���4���@�����
�R���������H���1�H���!����H���C����H������H��H��H��?H�H��H1�H)�H��H���H���H���<���H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���t$H9�s	H��H��H��H)�u�H������f�H����L��L��L��H��?H�H��H1�H)�H��H���
���H���<���H��1�H	Шu�H��H��H��H	Шt�@��u�H��@��t����tH9�s	H��H��H��H)�u�H������H����H��M��I��L��H��?I�I�H��I�L1�H)�H���M����H���pH�@H��hH��H�H��H����L�t	M��������I���?H����L��H���JH�@L�|?H��L��H�H��M����H����I���	K�t-H��t%L��H���*H�@H�t?H����|$+L���)���I��L��H���6I��I��A��uI�����tI�$�ƒ���
��D��E���A����L��I�$ �.����L��H��?����E����H�����������A���^I������t%���DA���QH��L��I���(+��H���t�H��u����DH��1�H	Шu@H��H��H��H	Шt�@��u�H��@��t����tH9�s	H��H��H��H)��������u�H����f.�H��1�H	Шu@H��H��H��H	Шt�@��u�H��@��t����tH9�s	H��H��H��H)��������u�H����f.�����I������H��H���t���H���<���@H��H�����H������@H�Q,;L�"�������I���Z���H��(;L�"�����H��,;L�"����H�)+;L�"��������L��M���,I�H��
H�������f�H��H���X���H�����@H��H������K����H��H��M����H��H��1�H	�uf�H��H��H��H	�t�@��u�H��@��t��@��t"H9�s	H��H��H��H)�u�H��H������@H�����K��I������A��Z���D����fDH�������������fDL�����I�����L��T$����T$A��H��A������H��H�T$H�L$����H�T$H�L$I��H��H�H��H�����y���H���I���H�Ѹ1��]���L���?��������H��H��?M��H�H��H1�H)�I��uH���JM�������H��1�L	Ȩu�H��I��H��L	Ȩt�@��u�H��@��t��A��tI9�s	H��L��I��I)�u��J���f�I����H������H�����H�@H���L�|����H�@H���H�t�
���A���E���I������8���I���
�'�����@��H������@��H����H	����������O�|?�S���L��L��H��?H�H��H1�H)�I���H��tM����I��H�@L��O�t6���I��H�������L����������H���9���H�L$����H�L$I������I�N�`���I�D$�F���H�M���H�C����I��H���z���H��L��L	���uDH��H��H��H	ƃ�t��u�H���t���t$H9�s	H��H��H��H)�u�H��I������fDH����L���V���H��H�L$���H�L$I������H�����H���J���L������I��������I�V�j���I�D$�P���H��H�L$���L��H�D$���H�t$H���B��H�L$I�����H�����L��I�����L��H�����H������ff.�@��AUATUH��SH��H��8dH�%(H�D$(1���uW@����H������`�E����
t5������u���>�����+H��H��腥���L�cH��L�����H�{H���	�����������ڃ�����H��������L�kH�t$ H�|$H�D$L�d$ 襢���_�<���GH�|$ @���H1�H����H�\$H�؅�uF�L��H�l$ ���H�X��u
H�������H�h@��u
H�������H�H�L$(dH3%(�H��8[]A\A]�fDH������9���H���1H���&���H��(;L�*����f�����������H�����H��H9���f��H�0�X�fH~�H9�t+fH~�H��<��������H��H���0�������&���H�\$����fD@����H������������
���������H���1�H���!��z���f���������������H��H��H��?H)�H	�H��H�l$�~L$����H��H��H�D$�P��H�D$�b���fDH��H��H�D$�0��H�D$�+���fD��V�������H��;L�*���f�H��#;L�*�s����H�MH�SA�+H��H�sL�E�����DH��";L�*�;���f�H���(����M�>���fDH��;L�*����f�H��#;L�*���fH~�H��H��H���m���襼�D��AUATUH��SH��H��8dH�%(H�D$(1���uW@����H������`�E����
t5������u���>�����-H��H��腡���L�cH��L�����H�{H���������������ڃ�����H��������L�kH�t$ H�|$H�D$L�d$ 襞���_�<���GH�|$ @���H1�H����H�\$H�؅�uF�L��H�l$ ���H�X��u
H�������H�h@��u
H�������H�H�L$(dH3%(�H��8[]A\A]�fDH������9���H���1H���&���H��$;L�*����f�����������H�����H��H9����H�0fH~�H9�t+fH~�H��<��������H��H���4�����{��*����H�\$����fD@����H������������
���������H���1�H���!��z���f���������������H��H��H��?H)�H	�H��H�l$�\D$����H��H��H�D$�P��H�D$�b���fDH��H��H�D$�0��H�D$�+���fD��V�������H��;L�*���f�H��;L�*�s����H�MH�SA�-H��H�sL�E�����DH��;L�*�;���f�H���(����\E�>���fDH��;L�*����f�H��;L�*���fH~�H��H��H���m���襸�DAWI��AVM��AUI��ATI��USH��HH�|$dH�%(H�D$81�������S��@��uH�����t������4D������%L���H�D$uI�����tA�$������D��D�������A��u
I�������D�������A����A��/�����A���lA����I�������I�������
�|A���bI������UI��΃���
�D��@�
H������@��H����H	��L��L���з�H��DH�|$uI�����tI�$�ƒ���
��D��D�������L��I�$ ������L��H��?L���h����H������uL����H������t-��@���H��H��H�T$���H�T$H��H���t�H��u�L��H����7��H��L��I���7��L��H���5
��H��L��I���7��H��L��H���7��H��H���
��H�L$�������?�T$������	H�|$��	�|$��	H�t$L�fH�t$0H�|$(H�D$0L�l$(讘���h�<���0H�|$0@����@������m���H�\$(H�؅����L��H�l$0�{�H�X��u
H������H�h@��u
H�������H��I������R���A������C���@L��蘩�L���D$芩�L���D$�|��L���D$�n���L$�YD$H�0�YL$�^�fH~�H9�t'fH~�H��<��������H��H��t	f(���u�H�L$8dH3%(�B
H��H[]A\A]A^A_ÐA�E�����f����;���A�������A����A��������"������A���L��M���rI�H��
H����L����������H�����������@���0H������t ��@����H��H��H�����H���t�H��u��]���DH�\$(���fDH�t$H������~���H���4H�|$�h���H��;L�"�b���f�����L��M���I�EH��
H�����5����fH~�H��H��H���f���f.����'L��H��?����L��M��I����f.�1�H��������f�A��u
I������5D��L����I� �����u���L��H��?�w���L��L$H�T$蟴���L$H�T$H���v���fDL���T$�|����T$H���?���H��H�T$�s��H�T$�����K���@L���H�����H�ƒ��	���H���@���������fDH������H���O����H��H�T$���H�T$�������@H�������������fDH��H��?H�H��H1�H)�H���H����H����f.�H�@H���H�\?���H��H��H��?H�H��H1�H)�H���H���(H�����H�@H��uH�l?���H�;L�"���f�I�EH��
H��������@H������������
����������H���1�H���!�����I�������
��������f�H��H����H��1�H	�u�H��H��H��H	�t�@��u�H��@��t��@���&H9�s	H��H��H��H)�u�H�����H��H���H��1�H	بuH��H��H��H	بt�@��u�H��@��t������H9�s	H��H��H��H)�u�H������@M��L��L��I�I��?H�L��H�H1�L)�I��H����M����L��H��?H��L1�H)�H���]M���qH���uH��H�H��H���C���I��L��H�H��H��L��H�H��H���%������H�������H���(����L�������H�Ã�����L���а����H�Ã��y���H��H��H�D$���H�D$����fDH��H��H�D$���H�D$���fDL���x���L��M��I���j���D��I���H����A�������I��������I�U�у���
������@��H������@��H����H	������L��L���K��H���:���L��L��H��?H�H��H1�H)�L��H���H����H���,���H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���tH9�s	H��H��H��H)�������u�H����@L��L��H��?H�H��H1�H)�L��H���H���2H�����H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���tH9�s	H��H��H��H)�������u�H����@���H���+������H������H��;L�"�Z����H�;L�"�J����H�;L�"�:����H��;L�"�*����H��H���(���H������@H��H���p���H�����@H�����H�����H���p���H�����I��I��M���+H��1�H��L	ƒ�uf�H��I��H��L	ƒ�t�u�H��t�f�A��t*I9�s	H��L��I��I)�u�H��H��H��H�H��H���.����I����M��I��H����H��1�L	��uH��I��H��L	��t��u�H���t��A��t"I9�s	H��L��I��I)�u�H������I����H������H���f���L���m���H������I������M���b���H��L��H�I��H���h���L���5���I�N��I�G���I�U�y���I�D$�_����)��f���AWAVI��AUATUSH��H��HdH�%(H�D$81����uy���XH������K�����
tY�����A���8���{�/H��L�����H�\$8dH3%(�H��H[]A\A]A^A_�DH����M�fM�nD��D������DA��uI�����tA�$�����%D������A��u
I���������������uH�����t����������kH�H��
H��������D��у��D$�������`����A���S�d���������L��謍��H�0fH~�H9��fH~�H��<��������H��H����
H��������@A�M���������L��蘜�L���D$芜�H���D$�|���D$�l���L$�YD$H�0�YL$�^�fH~�H9�t'fH~�H��<������t6H��H�����f(���h�����DH��H��?���@fH~�H��H��H�����f�A��u
I�����������M��M����H�H��
H����H�݄��g���GI������uC@����H������t"�Rf�@����L��H��L����
��I��A��t�I��uًL$���uL��H��Q�tM��H��@��t��f���8H9�s	H��H��H��H)�u�H�@H��B	H�T?H�ֿH�T$�'��L��H��I���'��L��H������H��H��I���'��H�T$L��H��H���q'��H��H�����A���,A����D�������I���	A���_M�nH�t$0H�|$(L�d$(H�D$0蒈���L�<���H�|$0@���E@����H������v�����
� ���_H���1�H���!��fDM��I�E tKL��胹�������t�������WL��H���	��L��I��A��t�I��u����DL���(���I�Ǩt�H������I�������I���	M�����H�Q;L�*�����H�\$(�L��H�l$0�	k�H�X��u
H�������H�h@��u
H������LH����1�H����H�\$(H�؅�t����fDA��u
I������-��M���I�$ �7������H��H��?����L���(���H��I������D��H�����f�L�����������fDH�߉L$����L$H�����L�������I�$�ƒ���
�1�����u!H�����tH��փ���
������3������H�KH����D�����6A��u(I�����tA�����
������L����|�H�KL�C����A���{���6D�������I����A����M�fH�t$0H�|$(L�D$(H�L$0�q����+�<���H�|$0@���E@��u H�����t�����
�(������|��H�\$(H�؅�������L��H�l$0�h�H�X����������fD���{������I�$�ƒ���
������[���f�L��I��?H�M��I�I1�M)�H���H���H���%H�L��I��H��H��M����L����H���Y�H����H�@H���L�d?H��H�I��H��L��H�H��I��H����H����H����H�DH������L��H����H�@H�H�D?���蔥������H��@��t��f.�I��A��twH9�s	H��H��H��H)�u�H�H����C���H���:���A�H�������%���@H��;L�*����H������H������H���x����H���x������#���fDL��L��H��?H�H��H1�H)�H���H���dH����H�@H���H�l?���L��L��H��?H�H��H1�H)�H��YH���H�������DH��D$H��H��H	Шt�@��uDH��@��t����t#H9�s	H��H��H��H)�u��L$H�����H����H�Q;L�*�N���f�H��H��H�D$萌�H�D$���fDH��H��H�D$�p��H�D$�c���fDL��������I�ǃ����L������I�ǃ��k���L��L��H��?H�H��H1�H)�H��H���H����H�������H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���t$H9�s	H��H��H��H)�u�H���)���f�H����1�I�������f.�H��1�H	�u@H��H��H��H	�t�@��u�H��@��t��@��tH9�s	H��H��H��H)��r���@��u�H�������^�H������H��H���t���H���l���@H��H�������H�����@�ۡ�H���Z����ˡ�H�����H�q;L�*�6���I�~L�CuI�~�=���I�VI�vA�/L���"���DH���:L�*���f�H��;L�*�����H��H���(���H�����H�����H������H��H��H��H����H�\$(�,���I����������I���eM�������H��;L� ���1�H��������H��H��H����L��1�H	��uDI��H��L��H	��t�A��ufDI��A��t��@��t"L9�s	L��I��H��L)�u�I�������H����H������H��:L� ���I�������t���H���`�����@tuH������@tcH����H	������H��L���֛�H���u�I�����H�@H�xsH�D�����A�����H�n;L� �T���H�S�I�D$�H��:L� �8���H��;L� �)���H�L;L� �����A���H���\����H�t$L�D$�H��H�t$L�D$I���7����q���ܖ�H���1�H���!��!���H�����L��H�����H��H��蕬��:���UH��SH��H����u{�����H����s���H��H��������H������������� ������t~��tyH��E1�1ɺ�[H��H�=�y<]�f�f�H����H��u��~��H�0fH~�H9���fH~�H��<��������H����H��H��[]Ð�ƒ����q�����H��������������
t�������1�H�{������H�������H��H��H��[]��fDH��H��H�������H��[]�%Z�DH���������AWAVI��AUATUSH��H��HdH�%(H�D$81�����$u~@����H������������
t]����������n�����*H��L���}}�H�L$8dH3%(��H��H[]A\A]A^A_�f.�M�nM�fD�������A��uI�����tA�E������D������{L���H�D$u
I������Q�؃����SH�؃�H�D$uH�����t������/D����D$�L��H!ب�Q	L��H��4�tQ�@H��@��t��f.���H9�s	H��H��H��H)�u�H�@H���H�l?H�|$��I�������I�$�ƒ���
��H�|$��H�������H���
����@�H������@��
H����H	���H��L�����I�ǐH��L�����H��L��H�����H��H����H��H�����L��L��H���~��H��H�����A����A���?D�������I����A����H�U�:L�"��D������}���L����z��H��H9��f���Y�H�0fH~�H9�t!fH~�H��<�������H�����V��(���DA�$���������L��踉�L���$諉�H���D$蝉��D$草��$�YD$H�0�YL$�^�fH~�H9�t,fH~�H��<������tpH��uH�����@f(��V��}���f.�������U����y��H�غH��H��?H)�H	�H��H�$�~$����DH��H��H���"����M��I�E ��L�����������t$�/���@@����L��H��L������I��A��t�I��u����@D�����L��I�$ ��4$����H��H��?I�߄������H�������7���A����I������t-�DA����H��L��H�$�_���H�$I��H���t�H��u����DL���x���I�Ǩ�����H��������I�����uI����M��uH���:L�"�@M�fH�t$0H�|$(H�D$0H�\$(�u���ux<��tYH�|$0@����@���@H������3�����
�����H���1�H���!��H�\$(�L��H�l$0��X�H�X��u
H�������H�h@��u
H�������H������<$����L��M��x]H�H��
H�����A���f.�1�H����H�\$(H�؅��d������f�H�߉L$H�$�����L$H�$I������L�������H�ƒ�����H��H�$�ܥ�H�$��������fD��>k������H�KI�VA�*L��I�vL�C�������DH�	�:L�"�5���f�H�	�:L�"����H������f�H�������I������L��H�$�$��H�$�����@���fDH��H��?H�H��H1�H)�I��DH����M����f�H�@H��UL�|?����L��L��H��?H�H��H1�H)�H��H���IH���:����DH��D$H��H��H	�t�@��uDH��@��t��@��t"H9�s	H��H��H��H)�u��L$H������f�H����L����t���K�.���fDH���:L�"����H��H��H�$�1}�H�$�M����H��H��H�$�}�H�$�D����L��L��H��?H�H��H1�H)�H��H��3H���=H�������H��1�H	ƒ�u�H��H��H��H	ƒ�t�@��ufDH��@��t���t$H9�s	H��H��H��H)�u�H���I���f�H����H��1�L	��u@H��I��H��L	��t�@��u�H��@��t��A��tI9�s	H��L��I��I)�t�A��u�I����@I��H��u�L�����H��H������H���7���@���H���>����Ӓ�I�����H�y�:L�"����f�H��I�H�I���A�L����L��H��?H��L1�H)�H����M�����H����L��H�H��I�ĸH�I�����M�����I���g���H�@L���K�D$�J���DH��@��t��f.���tH9�s	H��H��H��H)�u�I���A���H����H��H������H���w���L�����H������L��H���H��H��M���H��1�I��H	��uI��H��L��H	��t�A��ufDI��A��t��H�����L9�s	L��I��H��L)�u�I��H�I��L��H��L��H�I��I��H�������H�������I����K�\-H�������L��H����H�@H���H�\�d���H���h���H���������H��1ɿL��H�I��I��H��t��t������H�����H�H��H��H��H������H�@H�x
H�\?���H���=��H������H�S����I�D$����]��L������M������L��H�����H��H��蕝�H�����ff.�f�AWAVI��AUATUH��SH��H�A��A��u@��uH�����t�����
tx�H���:H�5�RH�81��H���H�޿��H��H��I����I�ă���uZH��?�۸HE�H��H��[]A\A]A^A_�f�H�޿�C�H��H��I����I�ă�����fDL���u(I�����tA�$���������fDI��A���C@����������;H���a@����H�}�H�T$�TP�H�T$L�`H��u
I�������H�H�@H��A��I��M���@���>�������H����@����H�}���O�L�`A��u
I������H�L��H��H�@���H�Ũ�����H������{���������m���H�߾�k���H����e���P���H��H��[]A\A]A^A_�ec��DH���������H���9H������H�Q�:H�8����E�����H�H��
H��������@H���������H����H����H��:H�8����H�y�:H�8�����H��L��H�D$�u�H�D$����fDH�I�:H�8�.����I��L��A���W����H�y�:H�8�����H��L��H�D$�pu�H�D$����fDH�1�:H�8�Y����H�!�:H�8�����H���:H�8�9����H���:H�8�)����H�a�:H�8����H�i�:H�8����H���:H�8������w H��H�օ�tH��H������fDH���P�1��r�ff.���AWAVAUI��ATI��U��SH��(dH�%(H�D$1�H�D$�H��H�D$A�ƅ�����~PD�}�Ic�I����yH�����������������H�\$H����H�D$���&H�\$H��轲��H�
�e����t��H�
�a��H�Ab��HE�L��L������H�T$dH3%(��H��([]A\A]A^A_�D�Ӌ��~��t;H�\$H�D$��H�D$��H�\$H���j���H�|$腒��[���D�}�Ic�I�<�H��uOH�\$����DH�|$�&U�H�|$H������E������H��D��HD�H�D$H�\$��z�H������H��t
H�|$����1����q��3���z��ff.���H�
�_�������H�
`�������H�
u_�������AUA��ATA��A��UH��SH��H��A����H� ��E����H��H��?����E����H������uE����H������t%�fD����H��H��H���i�H��@��t�H��u�H��H��[]A\A]�@E���WH��xBH�H��
H�������q���H���\���H��E���f���H���X������[���fDH���0���A��H��A��E�������H��H��[]A\A]�f.�H������������fDH��H��?H�H��H1�H)�H�x8H���7H��u6f�H�@H��-H��H�D[]A\A]�DH��H���0H��1�H	ڃ�u�H��H��H��H	ڃ�t�uH��t�f���tH9�s	H��H��H��H)�u�H���p���H����H��?H��H�H��H1�H)�H���H��twH���>���H��1�H	ڃ�u�H��H��H��H	ڃ�t�u�H��t�f���tH9�s	H��H��H��H)��l�����u�H����f.�H�������H��H��[]A\A]�ކ�fDH��H���^���H�����@���=�g<�D��H��dH�%(H�D$1���u$H�wH��7��H�L$dH3%(u*H���f�Hc�H��H�#\��H�t6H�4$H��H���o�����舁����UH��SH��H��H�l�:H�8��G�H�h@��u	H�����uQH�X��u	H�����uH�H��[]�f�H��H��H�D$�n�H�D$H�H��[]�DH��H��H�D$�n�H�D$H�X��u���AWAVAUI��ATU��SH��H��HH�|$�L$dH�%(H�D$81�H9���g�H��fDH��I9�����DB u�H�\$L9����A�?�PՁ�u
H��D��H�\$H�\$L�t$L��H�L$(H��L���u`����uA���q�5�e<����VH�|$8dH3<%(�XH��H[]A\A]A^A_�H�D$ L�|$M9��	A���/�t�T$��t4�/f��T$H��DI��M9�tA��DP u�M9���H�t$(H��t{@����H����H�@H�H��H��H9���H�t?�����ƒ����	�uH�������H�|$H�����H�D$H�t$ H���*���H�D$A��-����d<H�t$ ��t
H������H�������D���8���M9��/��������fDL��H�\$A�?�C���DH��� �TH��A��-�Z��������?��H���fDI��H�L$0L��L��L�|$L�|$ L���w^�����7H�|$ �h��t7H�l$L9�s!�d�H��H��I9�t�E�DB u�I9��3���H�t$0H�|$(���L��H��H�D$(����4���@H���:�H�8�,D�H�@H�@H��z�����V���ƒ������uH�����t���������H�|$ H���1��H�D$ �0����������	���f�A��-tJ��5�}>������H���(]��H�D$����fD���8���H�D$ �R���f��F�3>����fD�s��H���j����L$��������
y��|�A�?�H���f.�UH��S��H���@R�H�u�� uTH��H�}��H��ٺ�z���H��tD�ƒ���tZ�uH�����t�������H��[]�f�H�}H�uH����t�H���:H��H�5�zH�81��a��H��H9�t�H���H��?H)�H��H��H	�H��H�T$�~D$���@f.�Dz�k�����uH���[]�H�4�:H�5�8H�81������SH��H���Q�H�3�� uTH��H�{��H�1ҹ�Z����ƒ���t@�u#H�����t�����u�@f.DzTuRH��[�H�{H�sH��H��H9�t�H���H��?H)�H��H��H	�H��H�T$�~D$�H�`�:H�5�7H�81����ff.�@��H��H�t$@��u	H�����ut������~@��uH�����tH�����td��_<��u2H�
	xH�B��:i�H��H�t$����H������&��H���ڐ�����u�������L�D$H�����
H�=?]<�*F�H���D��ATUSH��0dH�%(H�D$(1�H�l$ H���:H�\$H�|$H��H�t$ H��L� �[\��H��H��萑���
_<��t&H�|$ @����1�H����H�\$H�؅�t�>H�\$�L��H�l$ �?�H�X��u
H�������H�h@��t)H�H�L$(dH3%(��H��0[]A\�DH�����t�H��H��H�D$�Wf�H�D$�@��u"H�����t�����
�L�����tNfD��^R���9����H��H��H�D$�f�H�D$H�h@���T����x����H���1�H���!�����"x�f���H��(dH�%(H�D$1�H�t$H�T$�y\��Hct$��t`>�޿�t$Hc�H�t6�f��H�|$H���)�H�L$dH3%(u:H��(�@H�|$H�t6�1���H����~���f�H�|$���~���zw�f.�AWAVAUATA��USH��HdH�%(H�D$81�H���H��H����I��H��@��u
H�������@��u
H��������؃����n��u)H�����t ������R����f�������K@��u$H�����t�E�����-���{H�؃�u
H�������H��4�qA��A���D�א�H�D$(���E��uQ����H������������
t1H���:H��H�0�/s���j�����
�\f��H�\$ H�\$ H�l$(H�l$(H��H����X��H��H�������{[<���#H�|$(@���T@������O��H�\$ H�؅�u`�L��H�l$(�<�H�X��u
H������zH�h@��u
H������CH��f.�E���$�H�L$8dH3%(�H��H[]A\A]A^A_��L�5��:H��I�6�r���E���UL�|$H��H�=�R��L���J�L$H���oI�6H����q���KL��H��H�=_R���ZJ�T$H���;I�6H���q���*H��4�n@��u@��u
H�������E������A��A��谎�H�D$(����E��uJ���iH������\�����
t*I�6H���q���J�����
�<f�@������@���H�������E����
�����I�6H���p�����E����
�����f�������S���H�~�������A���@����H����������������@�����1�H����������H�[���fD�E���������H�}���������@���UH������H����������@���;1�H�����������H�m���fD���������H��4tU�������t���@���:H������-�E�����N������
D1�H�������/���H������H��u
H�������E���1�H��H�=�O���G�H�D$�-��H�D$���I�6H����n��upE����L�|$����fDI�6H���n�H���:H�5�9H�81��z�DH�߾�
H�n9藆�I�6H��H���yn����I�6H���fn�����I�6H���Sn������A��A���^���1H������hH������L�D$0��/H��H�=�U<H�l$0�[=����fDH��
�H��8���H���4����I�6H���m�����H�\$ ����fDH���h���H����������H���O���H�������1�H�������f��v�H�|$(���H�|$(�|������u�H�|$(��H�|$(��|����H��H��H�D$�]�H�D$���fDH��H��H�D$�]�H�D$�l���fDH��������������
�U���������H���1�H���!�����E����
�,����0���@H���:H��H�0�vl����������
�<������DH��D����H��E���a���H���W������f�H��D����H��E���q���H���g�������f.��
H��6�H����v�����f�@����@����H���{���E����H��H�����g���f�@��������\H�����@���6�����<H��0�����膁��
���@������H���H�����DH��4�������f�A��A�����H��H�����������H����������E����
�
���H��4�Z����K���������
����H���a��������
�|���������
����������1�H��������
�+��������1�H���������
��������H�}��1�H�}��!������m�H��:H�5�5H�81��{u�����H������M���������H�WH�w@��t.@��uH������tfH��tp@��tzH�1��7����H�����u�H��t)H��u�H�=�:H�8��H���:1�H�8���H�a�:H�8�@H���:H�8�@H�)�:H�8�@H���:H�8�{���f���AUATI��UH��S��H��dH�%(H�D$1��e��H�$��ty��~]L�m��u<�4�H��L��L���T�H�L$dH3%(��H��[]A\A]�DH�m��t�H�<$tH���Hx�����WW���;q��~�H�$L�m��t"H�m��u�H���q���H���x��d���H���S���H����w��F����k�ff.�f���AWAVAUI��ATUS��H��(dH�%(H�D$1�H�D$�K��H�D$�Ņ�t4�������3H�=�61��-n�M�uH�l$H�D$�5D�cp��������H�l$H�D$M�u����@H����A�4�H��t�H��葀��H�@�:L��L��H�8��H�T$dH3%(��H��([]A\A]A^A_��t.H�D$H��t
H�|$�v�����U�f���t�H�|$���:�H��� M�H�=�5H�1��m�H�l$H�D$L�3�%���DD�s�Ic�I�D���"��H���������������H�D$H���<H�|$��8�L�d$I��M���ȩ���8D��E1����M���LD�L�|$H�D$����������H�l$����M�u���w�����t
M��M��M�e������H���e���H�|$�tu��V����H�|$�^u��:���D�s�Ic�I�|�������H��u#���٨�H�l$H��uH�D$M�uM�e��]�H�D$���H�|$��7�L�d$I��M�������Ĩ��'h��M���=������M�uH�D$H�l$M���������鵨�ff.�����H������tn�Gf(�fT
� f.
� wCf.�z=���RM<��uH�@H���D�u�u�H�����t�����
u���@H��H����H��H9�t�H���H��?H)�H��H��H	�H��H�D$�~D$�[���@����H������tf�Gf(�fT
�f.
�w=f.�z7�����L<��uH�@H���D�u�u�H�����t�����
uظH���@H��H9�t�H���H��?H)�H��H��H	�H��H�D$�~D$�c���ff.������m�f�����w
�H���m�P�1��
R�ff.�f������mm�ff.�f�����w���Hm�P�1��Q�ff.���H��(dH�%(H�D$1�H���:H�<$�H�t$H��H��x���H�L$dH3%(uH��(��~e�ff.���H�G����H�G����SH����uH�����t
�����tH��[�H�{@��u.@��uH�����t�����
t��t#���>��
@1�H������t�H�C[�H���1�H���!������AUATUH��SH��(dH�%(H�D$1�@���@��uH�����t�����
���H�1J<E1�1�H�==H<��0�H��H����L�l$��-H��M��H�=OG<H�\$�0�I��H����H��t$M���+H��H�=�F<H�\$�a0�H��A��t	���H��L���=�H�H��u~H��L��H�L$H���
Q��H�t$H�<$�k�H�T$dH3%(udH��([]A\A]ÐH���(i��H��H���0������'���I��H���y����1�I9���H�������H���'��DH���J����3c���AUATUSH��H��8dH�%(H�D$(1�H�T$H�t$�G��H�|$@����Hct$H��t��x:H�t6�h��H���+j�H�L$(dH3%(��H��8[]A\A]�@H���苶���+t$�I��Hc��4�L��H���R���H��H����i�L��I�����H��H���i�L��H��H���L��H��uIH��H�L$ H�T$L���tO��H�t$ H�|$�ui��E����kv��u'H�|$Hct$�����H���������Hct$H�|$�����a�ff.������H������t>�Bf��f/�wo������tH�6H��H���s9�H��H���]�@H��H9�t�H�Ѹf��H��?H)�H��H��H	�H��H�$�~$f/�v��fW8*H�0fH~�H9�t4fH~�H��<������t@H��H��u�,���H��H��逇��H�t$�<$�C"�H�t$�<$H����fDH��H��H��H��뾺1��L���U��SH��H���\C��H��H�4����ƒ���t/�u#H�����t�����u�@f.l)zCuAH��[]ÐH��H9�t�H���H��?H)�H��H��H	�H��H�T$�~D$�H���:H�52H�81��oh�ff.�@��AW�H�=�\AVAUATUSH���M�H�=��H�rE<�uM�
H�=�'�dM�H�=�'H�AE<�LM�L�-��:H�=`'H�E<I�u�<�H�_�:H�5PD��H��H��f�H���j����ƒ����4H���J<��H�xH�-G�:L�%x�:L�5��:H�5\�mr�H��������ƒ�����H���2<�bH�xH�5M�*r�����H�5��H�=�&�$�H�;1�H�F8��H�5�&�:�H�;1�H�>8��H�5�&�:�H�;1�H�����H�5�[�:�H�;�H�����H�5,�o:�H�;�H�����H�5r�T:�H�;�H�e��H�5h��9:�H�;�H�ʳ��H�5y*�:�H�;�H�����H�58[�:�H�;�H����H�5![��9�H�;�H��z��H�5[��9�H�;�H�Z��H�5T�9�H�;�H��G��H�5�n�9�H�;�H�8V��H�5��|9�H�;1�H�7��H�5�Z�d9�H�;1�H�87��H�5�Z�L9�H�;1�H��S��H�5�Y�49�H�;1�H��S��H�5]Z�9�H�;�����H����H�5�Y�9�H�;�����H����H�5�Y��8�H�;�����H�w��H�5�Y��8�H�;�����H�l��H�5�Y�8�H�;1�H�7��H�51Z�8�H�;1�H�B��H�5Z�8�H�;1�H��6��H�5Z�h8�H�;�����H�	���H�5Y�M8�H�;1�H��:��H�5
��58�H�;1�H�@��H�5x�8�H�;1�H��9��H�5A�8�H�;1�H��9��H�5lY�-f�H��:H�;H�5�H���*�H��C��H�5HYH��I���e�H�;H�
�A��L��H�r?���MD�H�F�:H�}�H�5�#�7�H�}�H��a��H�5o#�e7�H�}�H��h��H�5P#�I7�I�}1�H�L8��H�5#�07�I�}1�H��7��H�5#�7�I�}�H�G�H�50X�6�H�}1�H��>��H�5�"��6�H�}1�H�5��H�5�"��6�I�<$1�H���H�5�"�6�I�<$1�H�C�H�5�"�6�I�>1�H�+�H�5"X�6�I�>�����H�0�H�50W�d6�H�}1�H���H�5�W�K6�H�}�����H���H�5�V�/6�I�<$1�H���H�5�W�6�I�<$�����H����H�5�V�5�H���:1�H�J��H�5�WH�8��5�H���`��h�ƒ����zH����<�(H�x�����H�8�H�5a���c�H��H�=�![]A\A]A^A_�R�f�H�����u�H����H��u�H���:H�8�DH������B���H����H���/���H���:H�8�$���f.�H����������H��tNH�������H�f�:H�-�:L�%�:L�5��:H�8����H�-ɹ:L�%��:L�5{�:H�}�y���f�L�5i�:H�-��:L�%Ӿ:I�>�Z���I�>����I�>�����H�}�q����H�}����I�<$�Q����I�<$����L�%a�:H�-"�:L�5۾:I�<$����f�H���:H�-�:L�%3�:L�5��:H�8���@H���:H�8�5���f�H�q�:H�8�����H�	�:H�-��:L�%�:L�5d�:H�8�c���@H��:H�8���f�H�ɼ:H�8�������H�H+1�H��t
�����D��@��1�@��u)H��H��t H�1��у���tH�к%HE��f.�����~*�B�H)�H�T�DHcH��H��L�H�8H�pH9�u�1��ff.�AWAVI��AUATUH��H�<7H�vSH��(H�T$H��$dH�%(H��$1�H�D$@H�0H��H9�u�H��H9�s@�H��H)�H��H�t�H9�u�H�D$N�,0L�<M9�wCD�eH�\$�A�EH\�N�,3M9�w!D:#u�L��H��H���]��u�H��H+D$�H�����H��$dH3%(uH��([]A\A]A^A_��U�PXH�5?H��H�|�:H��H�81���]�ff.�@��S�
�!M�(�H�@H��H�@H�@ �'$�H�CH��[�ff.�UH��H��SH����\�H��H�X��\�H�5�H�PH�ɺ:H��H�81��T]�@AWAVI��AUATUSH��dH�%(H�D$1�H�H9����8\H�X��H9���I��E1�H�#E1��H�k��0<H�+��Hc�H�>��fDH9��-�{-H�k�E���tH9��
�E���H�]<\�qA�H9�u�@�ZH�5�L����������D�	E��t��E��u;I�,$H�L$dH3%(�WH��[]A\A]A^A_É�H�݃�E��D�fD��@��f���f��
�f��
�v���fD�\�f���fDE����H�CH9��H�{-�>�K���2H����\�[���A����@H��H��H��H��H)�H9޾HB���H�$H��H���GH́�������ZH�5L������������f.�����fD����fDH�SH��H��H)�H9־H��HB����H$H��H���|����ZH�5�L���,������S����ZH�50L���������5���@�ZH�5�L��������������ZH�5�L�������������ZH�5�L������������H�������ZH�5�L������������ZH�5��L���l������_Q�ff.�@UH��AWAVI��AUATSH��hH�}�H�H�u�HcRH��H�M�L��x���I��L�M�dH�%(H�M�1�H�E�H�BH��H%�H)�H���H��H9�tH��H��$�H9�u����1�H��H����H�E�H�U�H�u�H��H�E����������$A����A�D$�A�H��H�E��8�H�U�H�u�H�}���������B�;A��I��L;}���N�,;L��H��Mc�L���<���|�L��L��H���<�����A��u�����A�H�}�L��H����A�H��x���H�H����L9�u/H�E�H�M�H�1�H�M�dH3%(��H�e�[A\A]A^A_]�H�}��ZH�5���D�����뽐Mc�L��H��J�4#��;����m���H�}��ZH�5��P������f�H)�H�L��j���f�H�]�H�9u�1�H���f�H�}��H���A��/���H��x���L�0� ���H�t$L��H���Q;��������n�����N�ff.�AWAVAUI��ATL�$UH��SH��L��H��H��XH�T$H��L�D$D�L$dH�%(H�L$H1�H�L$8�D$8�i�}��H���"�D$(L9���L�t$<H�D$@H�D$H�D$7H�D$ �{�����9D$�EH��D���UX����H��	D���UX����D��L�|$H��s1��L���#�L��L����?�HcD$<H�L9�sVH��L��L��H����A�ǃ�\�i���Hc|$<H�L9��k���H��L���-�D$<H��L��Lc�L��L��e?�L9�r�H�D$HdH3%(��H��X[]A\A]A^A_�DHcT$<H��L���(?��`���H��L��H���9�D$<��~bH�|$�H��L��H��U �T$(L�����������H�t$ L���D$7\�>�HcT$<H��L���>����@D�;�D$<����H����=�������T$8���1Щ�
���L9���I��L�l$ L�t$<D�l$H�\$(H�\$�'@D9�tfH����UX��tUHcD$<I�M9�vcH��L��L��L������u�H9�u-L��H��L����H�I���DHc�H��L����=�����H��H�\$(L�l$ � �D$(�s���L�l$ H�\$(H�T$H��L���=��;����K�fDAWI��AVI��L��AUI��ATU��SH��dH�%(H�D$1��/Y�H���G1�I��H����L��H��� )�H�5�H���,=�M��L��L��A�/L��H���R����D$/@��ugH�t$H�F@��t�iH����t�xH���H���z!�H���:H��H�8�)�H�L$dH3%(u5H��[]A\A]A^A_�f�H�t$�D$mH�F���"�I���8����~J�ff.�ATI��U��SH���/R�H�;�� u$H��H��H�{��[M���H��]A\���DH�sH�{��fD@��t:@��uH�����t�����t!��t��t���� �H���@��ff.���H��H�
ZH����R�ATI��UH��SH�Ӏ�t6��t�����[]A\��H�����t�����t
��t��fDH���0�H��I��t9I�|$H���L�H��t'H��� u-H��H�s��H�I�|$H���K���H����fDH�sH�SH�����SI�PHH)�L����N�H��H���q`�1�[�ff.�f�UH��AWAVAUATSH��HL�GdH�%(H�E�1�E�p E����A�XI���]�����H�L�E��PP�L�E��xH�E�tz�E�H���H�H��H��H���H)�H��H9���H��H��$���E�M�HI�PI�x��H�4�1�DI�H�BH�H�LBH��H9�u�fDH�E�dH3%(�8H�e�[A\A]A^A_]�fDI�xHc�L�E����L�E�I�|$I�@A�X �uO�L�E��xH�E��Z����E�H���H�H��H��H���H)�H��H9�tH��H��$���%��}�E�H��I�x1�H�˃�H�4�1��L�I��M��x)H��E�NA��L�I�PL�Ic�H��L�Ic�I��H��H9�u�L�κH��L�E�H�
��L�M��cD�M�d$L�M�L�E�I�$ ��I��E��~VA�F�I��L��E1�H��H�DH�E�DM�uH�U�L�M�I��L�E�M�L���!�L��L�E�L�M�I�M�}�L9m�uɋE����V����E�M�X1�I�������L����I�@H�xL� L�`H��L9�����M�4;M��x�M��1�fDI9��V��I�D5L��H��H��H��H�H+
H��uZI�@L��1�L�,xH�BI�EI�@L�48DH9����H�H��H��H��L�<L��I+H��ubI�GI�E�d���D~H�p�u���DH��DH9���H�M��H��H��H��H�L+*M���e���~�I��H���D~H�H�m���DH��DH9�skH�L��H��I��I��I�I+7H���a���~�H��H���f�M�d$�"���H)�H�L��u���%�t	H)�H�L�H��E1�����D�����ff.���AWM��AVI��Hc�AUATI��UH��SH��H�t$��H��E��~.A��E1��@I��JcT�L��H��H�T�h�I�UM9�u�H�t$L��L)��?!�H��L��H����H��1�[]A\A]A^A_���H��t@��uH�����t�����
u��3�P�
���ff.�f�PXH�5YH��H���:H�81��"L�f���H� tH�G�P����f.���H� tH�GHc@H�D�P������H��t&H� t%H�GH�@H�H���tH�1��S���P�d���@��H���3�H��H���<����H��tFH� tEH�GH�PH�:�t1H�H�@H�H�0�� tH�WH)����f�H����H)������P���@��H����H��H���70��AUATUSH��H� �}H�oI����Hc}�y
�M�mI��;]|+�OH�UL���H��H)��R�L��H���Y�9]~&H�UHc�H�4�H���uɾL����Y�9]�H��L��[]A\A]��)���f�����R���f���1��E���D��USH��H�G H��tXH��tGH���%�H��E1�1�H�ƿH�����H�S H�5\5H�zH��� 7�H��H��[]�fDH��[]��$����H�t H�GH��tH� u�fDH�xu�PH�)�:H�5�
H�81��I���SH�����H�C[�@8H��?H��?���ff.�@AWA��AVAUATI��UH��SH�����0����0�H���W���L���oH�I��H�EL�pHM9�tr����A�}tL��H���a��L���1��u�@��unH�����teH�E�ƒ���tW�tPH�EL�hHA�}u�L���y1��u���u�H��L��[]A\A]A^A_�H����M���>���f�E��t�H�E�t��;L�I9�t���t�I�uH�=�	1��<C��f.��W�I9�����H�EL�hH�x���L���]G�H�52IH�PH�s�:H�81���G�AWI��AVI��H��AUATUH��SH��dH�%(H�D$1��G�I����P�H�5�H��� 1�H���%�I��H���TH����A�}����V�H��H�����A�/M��L��L��L��H����H�5XH���0�H���b���H�E�P8����H�t$H���t�iH����t�xH����|$��H�E�tw�H�5��H���U0��aL���/���H���H��H���uB��H����V�H��H����L��L��H��A�/M��L���F��H�5�
H����/�H�L$dH3%(H��uDH��[]A\A]A^A_�H�t$�D$mH�F�#���D��I�����H���@��'����=�fDSH��H������H��H�5[dH��H�P�:H�81���E�fD��H�tUH�GH��tLH�0�� t!H�HH��t8H�pH��H�����f�H��H�HH����H�����f.��+8�ff.���SH�����H�{[��f���H9��sATI��USA��uH�����t
�����t[1�]A\�@H��H���=���H���5���H�H���u
H���������t
H��%L9�u�H�CH�M�@89A8u�H�MH��� �H����H��H�sH��� ��H����H9��i���L�eI��A��A����H��������A9��:���H�MH�H�ǁ� ��H����H��H�CH�pH� tH�pH����H�y�vC�����[�]A\�@H�u������������I�������������f.�H�F�"����H�I���H�Q�a���H�y�z���H������ ���H���~�H�A�����UH��SH�����H�}H�EH�7�X8�� u,H��H�������H��H���A-�H��[H��]�cN�H�wH���fD��H�����H��H�D�f���USH��H������H�{��Hc��m�H�{H�5B�H��H����/�H��H��[]�ff.�f���USH��H�����H�kH���b�Hc���	�H��H�5`���H��H���/�H��H��[]�ff.�AUATUH��SH��dH�%(H�D$1�H��(��H=���H������H��H��wRH�l$��H��_1��H����H��H���]+�1�H�L$dH3%(��H��[]A\A]�@L�l$H��I��L���A�H��L��Hc��+�I�$H��t�9�H9�u1���+�I�$1�똺ZH�5GH����������z����ZH�5�H���������\����8�f�AWI��1�AVAUI��ATUH��SH��H��hL�$dH�%(H�D$X1��+J�}I���.I�mH��L���?�H�D$?L�|$@H�D$H�D$VH�D$H�D$H�D$H�D$ @L9��gH��H��L���$����H�t$@�����>��H�~H�|$@��D$?<\��H9���H��H���>$���fL�|$@���8I�H�|$@A��BЈT$?<H��H�
9��Hc�H�>���H�޸H�T$ L��L)�H��HG�����T$?H��vhH�|$@H��H�|$@�"O�H9��L�$H�|$@M��L��H��H��������	�A��a�I�}�ED$�D$H�t$�T$WL���D$V\��(�L�|$@L9������@�D$I�u����H����H�L$XdH3%(L���4H��h[]A\A]A^A_ÐI�w���H�t$@@Hc�I��L���b(�I�EL|$@L�|$@H��t_H9�����H�<$�ZH�56A��+�����fDH�t$�L���(�L�|$@����@A���I�m����H����L�����#���f.�H9���A�{��I��L9��)H�T$ ��@��H�|$H�H�$L��L��H��������Z���L�|$@�0���H�<$�ZH�55A��E�����H���&������I�E����H�$H�|$@H��L�t$@�:������H�T$@L��L��D$?L)���&�L�|$@���M�wL�t$@L9�vA��� ����	����H�l$(E1�H�l$ �f.���	��vZA�H��H��L��L)��1��H�T$HH����H����H�$I�L��L��H��������<���L9�v�A��� u�I��L9�u�I���I��L9��Q���I���b���I�mH���5���@H�<$�ZH�5�
A�����A����H�l$(E��tL�t$@L9�tM�~L�|$@A�>}�����H�<$�ZH�5�A�����f�H�<$�ZH�5O�{���f���H�<$�ZH�5`��a���L����W3�H�<$�ZH�5H�B���-���ff.�f�AWM��AVI��AUI��ATI��UD��SH��H��XH��$�H�D$dH�%(H�D$H1�H�D$(�E?�H�D$���gH������ZH��ƒ����I���@���H�{��L����#���/H�L$(K�4.M��L��L������H�D$ H���VL�l$(M���fM9���@���A��A�� L;l$��E����L��H�߃���H�L�t$ ���M�&A�� ��I��I��A��H��:���t$L�L�D$��H��H����L�D$�t$L��H��H��:L�l$0��"
��tNH��D$��2�Hct$L��L��1��0/�H�C������W�H���/��M�fM�v�f���L�D$K�&L��L��D��$�H���%��u�H�T$ H�kH�T$0H�T$ H�L$HdH3%(�H��X[]A\A]A^A_��A��A�� @��tsL��H�����H�M��E�������H�����A��A�� L9d$�m���L��H���s�@��u�H�|$(M��u��L��H���U����KH�H��H��I���=��κZH�5�
L���G�������#����ZH�5�
L���)����������H�����L�l$0�����������H��:H�5(�
H�81��l8���/�H���:H�5�
H�81��O8�ff.�@��H� H��tH��t
�8����1���P�����H������H�@H�@H�@ H��ÐAUI��ATUH��SH��H���7�L9�tH��I���x�L��H���

�H��H�����H�C�uH�����uH��[]A\A]��H��H��H��[]A\A]��ff.�AWA��AVE��AUM��ATI��UH��H��SH��H�$�6�H��H��A�� u[I�$�� t:I�T$I�t$AVE��H��AUL�L$�T���ZY��tnH��[]A\A]A^A_��H��I�t$H�ƒ����:�H��H9�t�A�$%0tP=t�H�<$�ZH�5�
��������DH��L��H��$����$H��[]A\A]A^A_�DL��H�L$�;�H�L$�@UH��AWAVI���AUATSH��H�u�dH�%(H�E�1��P?�H�5�
H����L��I���Q5�L��I���&�L��L���1�M�FI�FI�8D�X8H��% H�E���H��M�`H����H����A�<$(E��ukA�|$?H�5�u\f�I�T$M��L��H)Ӊ���i��� �����H��A	�L9�u��
1ۀ�)�KL�bE��H�����A���"�E�mH�U�H�BA��t�iH��A��t�xH����}���D�Ѓ���t>A���E�-H�BA��t�E�mH�BA��t�iH��A����H��L�����H�5��
L���#�A��(�L��H�5�
����C�L��H����	�L���,5�L��1�H���Z
�L�I��A�� ��H�pL�PI�I�R�L��L��L�U��93�L�U�H��I)�I�RH��H���H)�H���H��H9�tH��H��$�H9�u���H�e�M���8I�E�� �NH��H�ƃ�L)�L��L�U��n1�D�M�H��L��L��E1�L���V��L�U�H�u�L��L����L��L���8/�L��H�}�dH3<%(�oH�e�[A\A]A^A_]�H��~��-tE��)�<H��L�bH��~�z(u
�z?�����E��A������H�U�H������DH��H�������i��w�����t���H��A!�H��u��w���M�`I�X����I��H�pA��I��p���@�xH������L��H��H��L�U��:@�I�EL�U��� �����I�u���L���8������D�M�H��L��L��E1�L������H�5��
L��������H��L��D�U�H�U��5�D�U�H�U��������:t<H�}���H��M�`H����E�����H)�H�L�H�e�M�����#���H�t��>)u�H�U�H��D�U�H�u����H�H�E����H��H�U�M��H�H���:H�}�D�U�H�u�jL�bL�D��H��L��D�U��>�H�}��E�XZ�*���U�H�}�D�]�D�U���H�8���M�FI�FI�8D�X8H��% H�E������M�`I�X�����n(�ff.����/���f�AWAVAUATUSH��H�$H��(H�T$H��I��H�<7H��$H�vdH�%(H��$1�H�D$H�0H��H9�u�H��H9�r)��i�� �B���H��L�D�H9�tz�2I��I)Ѝ����vہ��vā��wi�� �B��Bi�� ��f������w�i�� �B��Bi�� �i� �B��u���H�D$J�, L�4L9���D�;L�l$�B��E��=�v=�wHi�� �U���Ll�K�l%L9���E:}u�L��L��H���.��u�L��H+D$�i@=�w!i�� �U��Ui�� �����=�w�i�� �U�iС �E��Ui�� ��f���H�����H��$dH3%(uH��([]A\A]A^A_��1&�USH��H�o H�_H�t$H����H�|$@��tI@��uH�����t�����t0��t5@��u���H��[]�f����H��[]�@��H�D$H�|$��H�|$H��� u/H����H�H��tH�}H��H���(���H�|$����f�H�W����D��UH��SH������H�} H�Ut]��x?9B~:H�RHcظH�<�x H���O��H�UH��H��HBH�@H�DH��[]É�H���:H�5@�
H�81��f-��!����UH��SH�����H�} H�Ut\��x>9B~9H�RHcظH�<�xH������H�UH��H��HBH�H�DH��[]É�H�x�:H�5��
H�81���,���f���UH��SH������H�} H�U�~��x`9B~[Hc�H�BH�<�x8H���P��H�UH��H��HBH�pH�8H��[]H�t6H�|?���DH����[]����H�ҋ:H�5�
H�81��A,����ff.����1�L�
��
���D�H��A�G�D)�uH9�u�1��ff.����AWAVAUATUSH��H9�IL��H��I��tNH��~qH���A�@����H����H��H��H��L���*�H��uef�H�������H��L����*������H��H��[]A\A]A^A_�H��1�[]A\A]A^A_���7H��L�����H��t�H��L)�[]A\A]A^A_�H�t$H�<$���H�<$H�t$H9�t|H��H��L��[]A\A]A^A_������utD�/H�����H)��]���H��H�L�H��L�tJ�f�H��I9�����D:mu�H�uH��L����)��u�H���U���f�H��H��L��[]A\A]A^A_������b���D�/H�����H)����H��H�L�H��L�t��@H��L9������D:mu�H�uH��L���n)��u��{���D�����ntA~��stj��uuM������eu3�
���f��� � �fD��i�����1���v ��D����fDH���
����ff.����UH��SH��H���K%���t
1�H��[]�@�c�H��H���(%���uݸ������ff.���USH��H��(H�t$dH�%(H�D$1�H9�tg���H�D$H�kH�PH�pH��H�SH�P H�S �/$����a�H�D$H�H�A ��t%HcuH�}9u |:H��H��u[H�D$H�D$H�D$H�L$dH3%(H��uDH��([]�����HcuH��H�EH�D$H��u H��H�Ht�H�q��5����fD���W������@��uH�����tH��ƒ���t��@H��f���S�f��H��H��tH�����H��[���@��uH�����tH��ƒ���t��H��f���H��t
H�GH��t�@ø�������1�H��t&H�VH��t�J9�~��xH�BHc�H�<�������Dυ��Ð��AVI��AUI��ATUH��S��H��trH�ètQL�cL�k�H�C L��������_�I�D$J�T5H��H�(I�D$H�[]A\A]A^���H�����t�H��ƒ���t���@t�H��:H�8���H���f.���AVAUATI��UH�պSH��@dH�%(H�D$81�H�GH�D$H�$����I��H�$L9hH��L���F��I�D$H�$I�D$H�0�� ��H�XH�pH�L$H�I��L��H����H�D$H����H�E�:L�
H�$�J8H��� usH��H�p��H��H��H�M��L�t$(AV��2�ZY��usH�D$H�D$H�D$H�$H�\$8dH3%(u0H��@[]A\A]A^�f�H��H�X���O���H�pH�P���H���:H��H�5�
H�81��%�Hc�L��H��1��6�I�T$H��� uH����H��L��H��H������H�r��ff.���H��xI��f�	dH�%(H�D$h1�H�|$H��)$�H�1�f�L��� ���H�L$hdH3%(uH��x���fD��ATA��UH��SH��1����E��tSH��H��H��~=�xt7H�M�� uYH����H9�}"H��H��~VH�H�TH��H����H)�H��H��[]A\�H�U�� uH����H)��H�U��f�H�MH9�}�H�mH���H�T
L�@hH�tH��H��A���D��AWAVAUATI��UH��SH��H��H��L$D�D$dH�%(H��$�1�H��% ��H�|$PE1�f�H���	L�v)D$@���H�fD�L9���M����H�D$@H��H��H��H�D$���I��H�EH�D$L9������I��H���,���I�GH�$H��t$H��% ��uH����H��H����I�H����H�sH�SJ�&H��H�M��L��jL�L$��(�ZYI��L9l$�]H�} �:L���2�M����I����D$���[I�o L���	�H��$�dH3%(L����H�ĸ[]A\A]A^A_�H�sH��J�&���V���@H���������H��ƒ��������@���f.�f�H�D$ H�D$0A�)D$ H�$���f.�H�|$P�	1�E1��H�f�L�vH�V)D$@fD��'���@H�D$ H9$��I������I�����������H�}��L�m���fDH�m ���fDH�E ����fDH�K�9����H����I�G����H�a{:H�8����L�4$H�xI��L���.�1�L��A�����E���I����Y�H�<$1�����/���H�|$Ic�1���H�EH��� u H��H�xH�փ�H�T$H���:�����H�pH�x��ff.���A��q����AUI��ATUSH��H�>H���}I��H���V��H��I�$H��tx(H��H���"�H��H��H��H��L��[1�]A\A]�@�H���X�H�Ǩu!�
�H�H�y�H��H��[]A\A]����������H�������ff.���H��1�H�t$H�t$�7���H�ƸH��xH�|$��H�DH���fD��ATI��UH��S��H�� dH�%(H�D$1��0�H�D$�������8H�EH�D$��u`1�H�t$L�����H�����c��H��H����
�H��t
�����H�L$dH3%(H����H�� []A\�DH�m����@����H��H�냐�����H�UH�D$H�T$��u(H���W����H�|$�h"�1҃��?����H�m��uGH��u������a��G���@H����H�����H���.�H���#���H�|$t
H�|$�!������� ���SH��H��1�����H��t H��1�1�H����[H��?H�Ѓ��D����1�[�f.���UH��SH���N&�uH��H�����t
�����t���H��[]��H��1�1�H���y�H�ƸH��x�H���D	�H��H�D[]����AW�	f�AVAUATUH��SH��H��dH�%(H��$�1�H�|$@)D$0�H�1�f�H�D$0H��H��H�$����L�kI��I9������I��H���!���H�UM�w�� �2H��H�u��H�E1�M��H��L����M9�� H�{ uqH�{H�D$���L�cH�D$H��xlI���H����I�_ L��I�G�;�H��$�dH3%(�8H�Ĩ[]A\A]A^A_�DL��H�D$�[�H�D$H��y�H�T$I9���H���������1��H���������H��ƒ�������@���f�H�Uf�L�t$H�D$ )D$A��� ����H�uH�U����f�H�k ��fDH�C �s���fDH�au:H�8���L��H�xI���2�1�L��A�����E��������S��1�L��H�D$����H�D$�������H�<$Hc�1���H�CH��� uH��H�xH�փ�H�$H���.��H�pH�x��@��H��t6H�~ tGH�V��J9�~$��x+H�BHc��H�<���HD�ø�f.�υ����P���f���H��tLH�~ tKH�F�P9�~:��x0H�PHc�H��H���t%H�@H��H�~H��H)��(���ׅ�ʸ�P�.��ff.���UH��AWAVI��AUATSH��(dH�%(H�E�1��+�H����I�^ H��H����H����I�FH��HcPI��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%�t	H)�H�L�I��1�H�M�L���r��H�{L��H�5T��������!�H�5�
�H����H�M�H��I��H���o��E�����L��I��1�H�5]_����jf.�H�ǃ����L��H����A9�tqH�5*_�L����I�uH����I�UL���x�H�5�
L��I���`�L������H��u��H�5�sL����9�A9�u��H�5˯L��� ��fDH��L��H�=�M1��D�I��H�M�dH3%(L��uZH�e�[A\A]A^A_]É�H�5I}L��1��

��P����L��1�H�E��b
�H�M�H�=,�
H��1�H�����I�����AVAUI��ATI��USH��H��H�GHchH��tuH��t]L�4L9�IO�H9�})���L��H����	�L��H����%�H9�u�H��I9�~I�4$�� uFI�t$I)�L��L����H��L��[]A\A]A^�H��H�T$���H�T$I���q���fDH�����ff.�@ATE1�I��UH��SH��H�� dH�%(H�D$1�H�GH��H�t$A��H�T$L��HcH����H��t5H��tH�T$H�t$H��H������H�\$dH3%(usH�� []A\ÐD��L���H��t9��u%���H�����H��H���$�H���fD���������u����H���������������f���AUATUSH��H�z ��A��Hc�H��H������I��E��~dA�E�L�l��)H�����H���H���*�L��H���#�L9�t0H���u�H�u H�}�����y�H�3L��H��H������L9�u�H��L��[]A\A]��g�����AWH)�AVAUATA��USH��H��I�PHM�iI�i���I��E��~lA�D$�E1�L�d��DH��L9�t/�;H���u�H�����t�H��L��L��H�����A�L9�u�E��tH��1�[]A\A]A^A_�f.��L��L��������ff.���AUATUSH��dH�%(H�D$1�H�z ��A��H��I���%�H�$����E����H�]A����H�mA�����؃�H�������
H�@����H��H�I�D$HcH�H��x/H����H9�|!H�4H��H)�H9�HOйH��L�����H�L$dH3%(�)H��[]A\A]�f��+�E����H�$H�]A����H��tH������؃�����I�t$ I�|$H���a�����xmL������v���fDH��W����b���f.�H���8	�H������H���(	�H�����H�mA��uEH�������H���e�����H��L����������H�����L����&����H�<$tH���"��D���0������F	�fD��USH����wVt'�J��H��H��tH����H��H��[]��H��� ��H��H��t�H�uH����H��H�މ�[]��1����ff.�@��H��1��b�f���SH������H�{ tH��t[�@1�1�[����������H�����H��H��������H��tfH� teH�GH�HH�9�tQ�P�B�Hc�H�<�u*��~&��Hc�H����H�:�A������H��A��u�tH������f���P�$��@��H������H��H���G����AU�	f�ATUSH��H�|$H�|$0H�l$dH�%(H��$�1�)D$ H�D$�H�1�f�H����H�|$H�7�� unH��L�g��I�4L�l$ �
�H�L$M��H��H��L���w��H�l$H�T$�H��t:H��$�dH3%(H��u8H�Ę[]A\A]�fDL�gH�w�fDH�|$L��1��Y���H�����ff.�@��H��o:H�8�
��ff.�f���AU�	f�E1�ATE1�A��UH��SH��H��xdH�%(H�D$h1�H�|$I��)$�H�1�L��f�H���[����uH�T$hdH3%(H��u!H��x[]A\A]�H��L��D��蛻��H��������ff.���U��SH��H�����H����H��H��[]��f���AW�	f�A��AVAUATUSH��H��dH�%(H��$�1�H�|$@)D$0H�D$ �H�1�f����I��H��� ��H��H����H���D��E1�E1�1���у��L$H�L$(H�L$H�L$0H�$���H����H9��H�CH�<�H�|$(��|$H��t%I9�t H�|$(�%0��=�^L��H�|$H�T$���H�D$(H�T$H�0�� u{H��H�x��L�$H�H�L$ ����H����H�D$ H��tH9�t	H����H��H�t$(M��uPH���(��I��H�A��Ic�� �"���H;S}<H�C �'���H�xH�p�fD����9���fDL���h
��fDH��tH��L�����D��L�����H��$�dH3%(uvH�Ĩ[]A\A]A^A_�H�S�W����H��l:H�$H�52H�81���H�HH�UH�5��
H�Nk:H�81����H�=k:H�5&�
H�81�����G�H�8l:H�5��
H�81���ff.�@��AWAVA��AUI��ATI��UH��SH��xdH�%(H�D$h1�I�����H�|$L��M��H�ù	1�E���H�f�1�L��)$H��f�H��jj���ZY��udL��L��H����H���t��H�C�t,H�T$hdH3%(H��u.H��x[]A\A]A^A_�f.�H�����t�H��H��������F�H��M��D��L��L��袶��H���
��f.���ATA��UH��SH���j�D��H��H��H��[]A\���D��AWAVA��AUI��ATA��UH��SH��xdH�%(H�D$h1��}��H�|$�	f�H��1�)$�H�1�f�H��tqI��E��M��D��L��H��H�������uk��u&H�����tH��ƒ���tH
H��H�t$hdH34%(H��uJH��x[]A\A]A^A_�fD1�1����H���f.�L��D��H��荶��H���5�����ff.���USH��H��H�=��;H��tWH�WH��� tkH�BH��� unH��H����H9�u0H�/H��������H�������}9�tAf�1�H���&��H�/�;H��H��H��[]�f�H�H������ t�H�K�H��� tPH�SH�sH�-��;H�}H� uDH������u��DH���x����t�����k��H����T����H��H�s���H��f.���AV�	f�AUATUSH��H��H�t$H�|$0dH�%(H��$�1�)D$ �H�1�f�H���)H��H��@���U@��uH�����t������8H�|$���H�D$H��toxJH��H�T$H��H�D$���H��H����H�D$H�PH� tH�PH)��/f.�H�����@H�H���H�D$u�1�L�d$ H��H��L����L�sI��I9���H�D$H��� tsH�pH�PH��H�H�.E1�jI��L���8
�H��XZM9�t~H�{ tgL����H��yRH���u~1�H��$�dH3%(��H�Đ[]A\A]A^�H��H�p�����������fD�믐H�{�7��L�k뒐H�k �f�H�C �.���Hc�L��1��i��H�CH��� u/H��H�xH�փ�H��L������@H���������~��H�pH�x��@��S�G�H����wTH��1҃�uH�V��tH�H�6H��H��[�y���f�H��H�t$��H�t$H��H��H�6H��[�K���������ff.����AWAVI��AUATUSH��(dH�%(H�D$1���L��H���;��I�A��� ��H��M�n��H�D$L�L�=Z�
H�$L9�vFf�H�$H��H��L���^����ti��	��twIc�L�>���HcD$I�I9�r�L�����I��E����H�|$dH3<%(L���@H��([]A\A]A^A_�f�L��H��H����H�I��M�nI�^�:���I�6�� �yH��
��>1�����I��E���G��L��H�����M�gI� tM�gI� ��I�vL��H)���I�L9�v}L�5��
f�H�$H��H��L���>�������HcD$L�M0IōA���tw.Ic�L�>��D�L$L��H��\A��L�M0�L$H�I�L��H���A��H�I�I9�r�I�GI� tI�GL��L��H)��
�����L��H��\A��H��nH�I�L��U0H�I���L��H��\A��H��tH�I�L��U0H�I��t���DL��H��\A��H�� H�I�L��U0H�I��D���DL��H��\A��H��rH�I�L��U0H�I�����DL��H��\A��H��fH�I�L��U0H�I����DL��H��\A��H��vH�I�L��U0H�I����DI�vL��H)�����L����I� ��L��I+V����L��H��������I�FH�4�����L��H��������H��H��L���ʾ�H�������1��H��A�TA�H�PH9�u�I�I����I��L��L)��g��������SH�G H��t5H��t[�f.�H��H��1��S��H������H���#��H�C [��ȴ�����H9�tW@��uIH�����t@�����
u6H� t/H�~ t(ATUH��SH��H�H�v����H��u$1�[]A\�D1��D��f.�H���8���H��I���-���L��H���"���H��t�H�mL�cHcEA;D$u�H��I�t$H�}H�����u�I�t$H�}H������p�����h���f.���ATUSH� ��H��H���H�����H��H�����H���f���H��H������H�[H��HckH������H�{H�4�I���D��L��H�����HcsH�{H��H���%��H��H�����H���
�[]H�DA\��#�����H��H���諬��H��H�����ff.�@AWAVAUI��ATUSH��XdH�%(H�D$H1�H��� ��H����H�D$H�|$��H�|$�/1���H�|$H�D$(��L��1�E1�E1���1�H�D$H��H�D$8H�D$8H�D$f.�H�
��
H���
����H�D$0H�D$0H����H�|$0��xH���%M���dL9��SH�|$0���������H�D$0M��tE����H�|$���]H�|$(H�t$0Lc���t1����L9|$��L��L����H��H�D$8��.���;�����H�t$0H�|$(���L��L���y��H�D$8H�|$(H�5�
����	�H�|$8����H�|$�F��H�|$8��xH����M����L9��eH�|$8�螪��H�����H�D$0����@H�����������H�D$0�u H�����tH��ƒ���t��'A����@I������H�������a���H�|$8����t"A��Z����I���K����H�D$H���$H9��,���H�KH�P�l@H�GH�D$H�|$�h����H�=m�
�"��H�t$@�H�D$@H��\:H�����1f�M����H�|$(L���j��H�t$(�H��\:H���H�L$HdH3%(�H��X[]A\A]A^A_�fDH�D$H��t|H9��z����7���1�L���v��H�
��
�H�ۿ
H��H�����H��u��H���ը��H���=��1�H������m���H�\$����H�D$H��tI���+���H�\$������I������H��[:I�T$H�5�
H�81����H�D$I�T$H�HH�q[:H�5��
H�81����H�KI�T$���X�����SH�H��� t H����H��tH��[�z���f.�H�FH��u�1�H���\��H�����H��t�H��[�E���D��SH��蓰��H�CH�[�@8��������E����� ��E�����H�����H��H�H�D����H9�t7UH��SH��H�����H������H�����H�sH��H��[��]���f�H���ff.����AVAUATU��SH��pdH�%(H�D$h1��G�����L�.H��I��A��u#I�����tA�E�����Bf.���tkH�{@��uiE1�H�����A�ƃ�uH�{u_H�����H��D��H��L���^��H�L$hdH3%(L��� H��p[]A\A]A^�f.�E1���s��A���fDH�{������߀�N��1���H��A�� H���|��H��H���t���H�����H9��c���H�|$�	1�1��H�f�)$f�7H��� ukH��H�s��I��jH��E��jM��L��蘼��ZY��u`H��H��L���T�����������=1�L���G���L����I�]A������H�SH�s떺��G���b��H��L��D�����H���,��ff.����H�
ͻ
H���
����@��AWAVAUE1�ATUSH��H��hH�|$8H�t$ H�T$(H�L$@dH�%(H�D$X1���H��I����A�|$H�D$0uL��E1�����A��H�D$8H�(�� �"H��H�X��H�D$ H�I��H�D$H��H�D$HH�D$TH�D$H9��S�E����D$TA����������LcL$TO�4��\��L9���L��H)�H�|$�,H�|$L��H���,��E�����D$TA������������HcT$T�@�I���E��H�='�
Hc�H�>��D1�H�L$(I��9A~YH�QH�H�4�H�����H�QH��H�D$ H�H)�H�D$�� ��H�D$HH�H�L$0H�|$I���z��f.�L9�����H�|$�H9���H�\$XdH3%(H�D$�H��h[]A\A]A^A_�f.�H9�v#E�����D$T�;<�����|@H��H�|$L��L��L)�I���߱��j���f.�H�|$L��L��I��轱��H����H�D$@�L$I��H���*���H�x�A��������L$�A����DH�t$(�VH�N�B�Hc�H�<�u(��~$��Hc�H�ѐ��H�:�@�ƅ���H��@��u��Y���I������H�D$ H�t$(H�H�VH�
�� �#H��H�t$HH�ƒ�H)�H�H�|$H�L$0I���ܰ��g����H�D$(H�@H�H�D$ H�H�D$�� ��H�t$H����@L��L��H�����H�I������H�T$L��H��L���-������M������L��H��L���°�Hc�L��?����H�T$L��H��L���ݴ��
����H��H�T$��H�T$H�D$���@H�D$ H�p�V���f�H�D$ H�pH��H�t$H�pH)�����H�D$ H�@�#���f�H�D$8H�XH�h����H��H�|$L��H��H)�舯��1���HcD$TH�H9�vYI��L�|$�!f�L��L��H���ү�H�I�L9�v.E��tC�D$TA���w҃�>tC���tȋD$TH�I�L9�w�H��M:H�5��
H�81��R��f�L��L��H��L��诳��>u�L9�v�H�D$8L��H)�H�0H��H�t$�� t	H�D$8H�@H��H�|$8H)�蝲�H�|$@I��tmH�D$@L��H�x�1��H��tWH�D$@H�L$(L��H��H�x�����~:Hc\$TL����H�T$L��H��H������<���@���H�D$8H�D$���L���m���������UH�=��
SH��H��O:H�0�0��H��P:H�=�I:H���H�=�)��ξ�H�=�)���H�����H�5D��H�=R�
�X��1�H�5���H�=@�
�C��1�H�5J���H�=.�
�.��1�H�5����H�=�
���1�H�5`�H�=
�
���H�D)�H�5O)�H�=�
����H��(�H�5	)�H�=ܵ
����H��(�H�5�(�H�=ɵ
���H�-?Q:H�=��
H�u�/��H��P:H�51���H��H��f��H�;H��H:�����H�5oX���H�;�H���H�5�R���H�;�H���H�5g�
���H�;�����H����H�5�
�j��H�;�����H����H�5�
�O��H�;�H�P���H�5��
�4��H�;�����H����H�5y�
�9��H�;�H�Z���H�5i�
���H�;1�H�B���H�5�<���H�;�H���H�5\�
����H�;�H�̩��H�5�
����H�;H�J:�H�5c&���H�;�H�F��H�5�
���H�;1�H��N:H�54&���H�;�����H����H�5}�
�g��H�;�����H���H�5��
�L��H�;1�H�����H�5��
�4��H�;1�H�����H�5X�
���H�;1�H���H�5�G���H�;1�H�����H�5��
���H�;1�H���H�5����H�;1�H��H:H�5�
��H�;1�H�`���H�5`�
��H�;1�H���H�5q�
��H�;1�H� ���H�5@�
�t��H�;�H�5;�
���H�;�H�52�
��H�;�	H�5'�
���H�;�!H�5�
���H�;�AH�5�
��H�=��;����H�uH�=i�
���H��G:H�5F���H��H��K��H��������ƒ����:H���P<�XH�xH�5��
���H���U����ƒ�����H����<�%H�xH�50�
��H�;�H����H�5��
�:��H�;1�H��H�5-�
�"��H�;1�H����H�5��
�
��H�;1�H�>���H�5W�
���H�;1�H�&���H�5[�ڿ�H�;�H�+���H�5kC迿�H�;�H�����H�5c�褿�H�;�H�����H�5��
艿�H�;1�H�m���H�5ї
�q��H�;�����H����H�5�
�V��H�;1�H�*���H�5�
�>��H�;1�H�2���H�5�
�&��H�;�����H���H�5i�
���H�;1�H��H:H�5�
���H�;1�H�H:H�5��
�۾�H�;1�H����H�5�
�þ�H�;1�H����H�5�
諾�H�;1�H�����H�5n蓾�H�;1�H���H�5S8�{��H�;�H���H�5і
�`��H�;H���[H���H�5��
]�?���H���������H��tvH�������H��K:H�8���fDH������T���H��t6H���E���H�^K:H�8�:���fDH��B:H�8�%���f�H�yH:H�8�
����H�iH:H�8�@����H��B:H�8�0����H��G:H�8� ����H��G:H�8�����H�D:H�8�����H�D:H�8����H��F:H�8����H��F:H�8�����H��H�o�odH�%(H�D$81��oO�oG �ofH�G0)$g�on )L$o H�V0)D$ H�W0D�H�D$0NF H�F0E��u�O��tH���u�F��tH�D$8dH3%(uGH��H�fDH�FH+FH��H�F H�FH�H�F��@H�GH+GH��H�G H�GH�H�G����ff.�@Hc�A��1�H�D1�H��E��t1�H���������@��t3���t�
��u�H�P��H��w�H�Y�
����@H�P��H��w�H�*�
���DATI��U��H�Q�
SH�������w.Hc�H�>��f�H�{��L��������uH�[H��u�1�[]A\�fDH�[H��u�1����{��H�[��H�[�f.��C��H�s(�KH�CH��HD��~tHc9�|I��H�VL�D�1��f�H��HcB�9�|$A����~	Hc�����L9�uމK1��Q���@[�0���]A\�fDHcC9��A���C�N���1��ʸ/�������ff.�SH�0�
H�������w4Hc�H�>��H�{������u	H�[H��u�[��H�[H��u�1�[�H�[�f.�H�[�f.��C[%���$/�ff.�@UH���
�SH��H�������wUHc�H�>���1�H�{����9�L�x	H�[H��u�H����[]�f.��C�uJH�[ �����v�1�H����[]�K��w�H��H��t"H�[�w���f��k��t�H�[�e�����1�@����ff.�f�AWAVAUATUSH��(dH�%(H�D$1�H����
w<H��I��H�5ϳ
��Hc�H��H�>�����������fD1�H�|$dH3<%(����H��([]A\A]A^A_ÐH�E1���@I��L�t$I�}L��L���I�������u�H�D$I9�tH9EvH�EM�mM��u��@M��$�I�D$hM��LD�G��j���L�G(H�GM��LD�IcA;D$\��I�|�L��H��L�D$���������0����{�$���L�D$Ic@A;D$\ZA�L�t$I�|�L��L��L�D$����������H�D$H9EL�D$vH�EA��D9{����Ic�Ic�A;D$\~��0��������G�������H�L��H���&�������������CL�E1҅�t!H�����Hc�1�H��H��H��I9�sL��H��H�U�O���D�G�����������-����G����������L��H��GH�������C��C����H�U���CH�S ����L�t$H�{L��L���\������������H�D$HEH�[H��u����H� �C�t:�G�����H�G 1�H�E����DH�GH+GH�E�i����H�{L��H��������L���f�H�G 1�H�E�;������ff.��AWAVAUATUSH��(dH�%(H�D$1�H����
wTH��I��H�5��
��Hc�H��H�>����G���j�V��u�G��~H�G(H�EfD1�H�|$dH3<%(����H��([]A\A]A^A_�f�I�D$Hc@H�E�M��$�D�I�D$hM��LD�A����H�w(H�G�WH��HE�H�D$��~�HcL�l$A9D$\|II�<�L��L����������Z���H�D$H9EsH�EA��D9{�;���H�t$Ic�Hc�A;D$\~��0���� ���fD�G���
���H�L��H���~������������H�uH������C�����1҅�t!I�����Hc�1�L��H��L��H9�sH��H��H�U���L�l$I�����H�{L��L���
������������H�D$H�UH�����H�����H��H�H��H9�IG�H�EH�[H��u��D���@H�GH+GH�E�1����L�l$H�{L��L�������������H�D$H9EsH�EH�[H��u����D�G���H�E����1��������t	�������H�{L��H���+��������@L���B�����u���L��H��GH�������C��C���f���H�U���CH�S(�S����H� L��H��������<����U��DAUA��H�5ĭ
ATA��U��SH��H���D������|����wLHc�H�>��f�H�{��D��D�������u	H�[H��u�H��[]A\A]���kt�H�[H��u�f�1���@D�ct�H�[�@H�[�{�����믐AVAUATUSH��dH�%(H�D$1�������f��H��
H��I��Hc�H�>��DA�H�{��L�������������H�[A!�H��u�D����E1�I��f�H�{��L���b�����xn��tiA	�u1�H�[H��u��DH�{L��L������u=H�<$t���@�W����������1��� ���H�L$dH3%(��H��[]A\A]A^��H� �������H��������u��S1������@�W1���u���t)1��������D��t01��y���f����WH����O����c��V���fDH�{��L���2����=��������ATL�%c�
UH��SH�������w]Ic�L�>��H�{H��������u	H�[H��u�[]A\�f.��C=t~4=t= uH�[�����v�1���@�CH�{��uH���=u�H�[�����H��C�m�����
�c�H�{�ʸ#����v���DUH���
SH��H�������w:Hc�H�>��@�C=t��=t= uH�[�����v�1�H����[]Ð1�H�{���H�[	�H��u�H����[]ÐH�{ �w����Ņ�tǁK�H����[]Ð�C1�u���u���H�{�C�?����c����=�y���H�[�f���ff.��ATH�ϩ
UH��SH�������wuHc�H�>��E1������H�[H��txH�{H�������u�A���fD�C=t��=t= uH�[�����v�@E1��$�CH�{��t]H���U���A�ă��CDE�D��[]A\��H�{H���,���A�ċC��u�A��u��C0��=t�����t����C�������Ct���H�{�C�{����A��[]D��A\�DAVI��AUL�-��
ATI��UH��SH��H������w+IcD�L�>��@H�{H��L�������uH�[H��u�1�H��[]A\A]A^�DH�CH��t�L�sH���fD�{H�CtFL�sH���DL��H�{H��L�k�U���H�sL9�t��>u�H�߉D$���D$�D�Ct�M�Q�UHcKA���S�@�S��t�I�H��H�C�ƙ�I��
���ff.�UH��AVI��AUI��ATI��SH���J\dH�%(H�E�1�H��AH�H��H��H%�H)�H���H��H9�tH��H��$�H9�u���=H�\$�H����~HcЃ���9�}�H�U�H��L���E��1�������A�U\I�>H���Z�����E�E\��M�MhE�� �If�H�?Hcփ�H�<у�A9�|+HcЋ���~�I���H��H�<H��u�L��I�<��@A�}��A�Ef.�����t��������A	UH��H�� u�A�E`H��L��A�E\A�D$�Ġ�H�u�dH34%(u#H�e�[A\A]A^]��H)�H�L��������ff.�f�ATUSH��dH�%(H�D$1������w7H���
H��H��Hc�H�>���H�{H�������uH�[H��u�1�DH�L$dH3%(��H��[]A\�H�{H���t�����u�H�[H��u�1����W��t����t1��� u�DH�{H���,����f.�H������r���f�L���H�FhM��LD�HcG�����V`��~#H�V�B�t�u�/����/����;E\��I��H�C H�����H�E�K�Ɖ�H�EP���ʃ�O։UH�C(1���������4���1�����DH�wH�WH9�t�H�}HH���w���~B��t
H�E�@	tH�$Hc�C�f���DH�KH�S�$���H�����$����a���H�KH�S�'���H������'����B������H�KH�S�&���H������&�������ff.�AWAVAUATUSH��dH�%(H�D$1���?
�S�H��H�_�
H��I��D�aHc�H�>�����?���6fD1�H�t$dH34%(���`H��[]A\A]A^A_Ð�E1���DH�D��H��L�|$�L���A�Ɖ���u�H�[H��t1H�{D��L��L���(�������u�H�[�D$9$�DE�H��u�E����1�A�������Y����L�gH�wL9��?����I�UH�B9BtL�����H�sH��EI�L9�w��
���D�G��H� D��H��L����������D������G9G����H�D��H���X�������������SHc<$��tH�����Lc�1�H��I���H9�s��A�ЉU���@�G�����V������e����G���G01ɉE�P���fDI��A�����H�{D��L��L�����������%���Hc$HcuH��H���t:H���t4H���H9�AGljEH�[H��u�������������fDD����H�{������$1ɉE���H�D��H���9�������������E�K�C0������ff.��G�N���9���AWI��AVAUL�n$ATI��USH��Lcv �_ H�t$M�M9�s}�f�A�D$A9D$tL��L��L���������M9�v?��~;I�M��Lc�)�fD�Q���I��C�T$�Lc�9���I9�@��H��@��u�M9�w�A�_ A�WM9�uBH�|$A�G�O%A�OG�ɹD�A�WA�GH��[]A\A]A^A_��A�_ A�WA�G1��ԉO��ff.�ATA��UH��S�W�wH��Z9�wD�$1�;]v�][]A\��9�w��uH���/��H��t	H�E�U�˸������f.�I�����	��
t�ƒ��t��u�B��D���������B��ff.�f�USH��H��
H���?w+�Hc�H�>����uH��?v�fD1�H��[]���G���|~j��t��u�H��f��G��~�H��1�H�OH9Ov/H����t(�Gu"�C8�HE������HD�H��[]�fD��t�1��n���@�G�k8H��H��C8�����k8��ff.�H�GL�H�>H�vH���t|L)�H��cvSH���tbH)�H��cv,�9�|�����I9���I9�G����H�1�
�p�����L�
�
A�A��H���u�1���1�H���u��fD�J ����H��I�ҋV I�������q��l�F$�����u��H�5��
�4FA�B$A�����u�A�H�=w�
D�G��A�@D��DЃ��F��D�A�s���A�B��Ʌ�~=��~L��L�������~*�AoA�AoJAK�AoR AS �AoZ0A[0H����ff.�@H�H���tOH���tII��H�I��L9�H�����HG�H�H�H���t9H���t3H��H�H��H9�H�����HG�H��DH�����H�H�H���u�H�����H��f.�AVAUATUS�F ��tHcO ��tH�H9tAH�����H�H�GH�GH�G�G �G$[]A\A]A^��H�^H9_u�I��H��H�����������F$E1�8G$��L�g$f�I�U�B9BtIc�I�4L������A�VHc��|$@8|$uyE�FD��Ic�A���t
$@8t$u]A9�u�HcK A��9�~MD;u }{Ic��T$8T$t��C1ɋC�UD�s ��xN��x	ЉC�U�E!C��t$!S����E1���U��t�D9u �D9s ��K��C����D��|����S�E1��E��u��AWI��AVI��AUI��ATI��U�SH���_ M9�sj��eA�GA9GtL��L��L��茿���E��~�I�T$A��Hc�A)�f��J���I��A�L6$A�Hc�9�A��I9�@��H��A��u�M9�r�A�^ H��[]A\A]A^A_�ff.��AWH��AVH)�AUATUSH��hH�|$ H�t$H�L$8D�L$HdH�%(H��$X1�H�D$0H=��5I�׈D$O�HM��L��I��f.��H��H9�u�H�|$0�D$H�D$��H��$PH�D$(H�D$rH�D$PH�D$ H��H�D$X�T$HH�D$ HD$H�D$��tH��H�D$8M��H�L$(H�T$�8A�WH�D$E�oE9otH�t$H�|$L�����A��H�\$H�|$Ic�H�H��H)�H9NjD$DB�����$TuiD9�$Pu_H�D$(L�d$`L�t$@M��H�h�D$��H��H�D�I���fDL9�tW�}u#H��I��D9kuH��L��L���}A�W0A9�tҸH��$XdH3<%(��H��h[]A\A]A^A_�L�t$@E��~�|$H�L$�\$OH�t$P�G�L�\$XH�l$H��H��)�I��H�4VI��I��A�U�I��I�I)�M��E��)�A�I�0��~@�H��A�H9�u�H��H��L9�u�Ic�HL$H�D$H9D$0�@���1��/���������%���轾�ff.�f�AWAVAUATUSH�����
�H�
��
��H��I��Hc�H�>��fDH�H���;�����x5�E=�z�,=�q��
= t��H����[]A\A]A^A_�f.�E1�H�}L���Q����Å�x�H�mA�H��u�D���f.�E1�E1�H�}L�������Å�x�H�mA�A�FH����A�������s���fDH�W(H����H�NH��y�h�R�\�A���@�_�G ������\����f�D�oD�wH���������H�U�:�J��E���/A������U�����U0���L�X�����GH����H���������Å�������E���<�����m�����f����������[���fD�GL�wL�_���M9��9���H��L��1ҿ[L)�]A\A]A^A_�D���@�\
�����1�����f�1��d���f�H�GH��(�����IH��H9�u��k����H�����D�]E�������A����AE��uԋU�����������X��������2��fD�Y
�M�����U�����ЉӃ�2���}��u�U0���U���D�EE��u�H��X
H9Uu������=�������D���o����C���EE�����DC��A�\E���f.�M9��������L�fH���D$��E�|$�D$E9|$tL��L��L���i��L�]A��Ic�E��I�M9�r(�ef��|$uCIc�D��1��l��E��E��M�M9�v<McT$E9T$tL��L��L�����L�]Lc�E9�u�E��͐�����f�Ic��T$D���������f.�D�ME��������N���fD�!���fD������������F8�4��M��z���u��2�‰�D�UE����H�}(���\�M�������E@�8���H�mL��H�}����Å������E���؃��
����H�m�}	��H�}L���f��������H�mH����H�}L���C�����������\H�}�����E����D�E�n8�F8����A�l$8������\
����!�+����u���`����X�M)����Ӎ�W�����M���H�}(t�E�X�:����E�X�.���������$���ff.�@AWAVAUATUSH��hH�|$H�t$H�rH�T$(H�RdH�%(H�L$X1�H�4$H)�L�46H�T$L��賌�H���H�T$H��N�<0I��H�D$@M��H�D$H�D$8H�T$8H�D$ H9$��H�D$L�t$H�|$H�$H�L��H�t$ �?I���P8��~[��L��M�t�fD�EH��L�j�L9�t5L��M9�w�O�,$H��L���^��H��tIJ� H��N�<"M���f�H�T$8H9$�l���H�|$(L��H���1��H�߉$���$��H���������H�L$XdH3%(uH��h[]A\A]A^A_ø�������ȶ��ATI��H��H��UH��SH�����H��tKH�u`H�}HH��H���O�����u�KI�$H��[]A\�f.�H�߉D$�t��D$H��[]A\ø������AWAVE1�AUATUSH��H�|$XdH�%(H��$�1��G�$����I��H�OH�wA��H�4$H�L$H9���H��$�1�H�D$L��$�H�D$H�D$xH�D$ H�D$8�D$PH�D$`�I�GHL�$$A�`H�L$I��H�T$L��PHA�ƅ���I�WHHcj9jtH�t$L���<��Hc�E��tO;�$����$��	H�D$A�V�H��H��H���f�;(��H���x���H9�u�H���|H�4$H��H�H��H�l$(���A�ƅ��?H�D$(H�$H;D$�&���H��t+I�w`I�HH���������H�T$H�t$(H9��YH�L$8H�D$H�|$XH��HE�E1�H��H�����H���~�f.�H��$�dH3%(D���XH�Ĩ[]A\A]A^A_�@A�F�D$P�D$P���<H��tI�w`I�HH��������u�KH�|$ u6H�\$H��t,H�|$8�~�H��1����H�D$ H���H�D$ H�D$89�$��*H�D$A�V�H��H��H���H��;h��H9�u�1�1����H�D$0H���}H�D$�D$TH�D$@H�<$Hc�H�H��H�D$(�R��H����H�L$0H�AH�L$A�F�H��H�D�I��H�D$H1�1����I��H��tZA�D$1ۅ�.��DH�L��L��I�T����u'��A;\$��I�GHHc�L��A�|�H��P0��y�L����|�H�|$A������|�H�|$8�|��,���@1�1����H�D$@H���1�1�訚�H��H����L�d$@1�1�I�D$���H�D$0H����H�CL�d$�D$T����D1�1��W��H��H���X���Ic$9��H�$H�4H9t$�#L�sH�D$@H�\$@H�XI��L9d$H������|$T�MH�|$ H���fH�t$�؃�H����H�D$1�H�@H�D$ ���f.�H�|$ upH�\$H��tfH�|$8�{�H��1�芃�H�D$8H�������1�1��S��H��H���EH�D$8H�D$ H�|$ H���P��H���nH�\$����D1�1����H��H���H�|$ H�D$����H�D$0L�sH�\$0H�X���H�T$H�|$`L����������1�L���Ղ�H����H�t$xH��H�D$h躂�H�T$hH���H�S���H�D$ H��tH�t$H��茂�H�������1��r���H�D$H�D$8���H�|$xL�������u:H�|$H�t$x��H�|$ ��H�|$ �5��H���f���H�|$x�z�A������L����K�5���H�$H�D$(H����������H�|$A�������y�H�D$8����H��A������y����H�|$ �{���H�t$�����H�D$@H�D$����H��H�$�y�H�$H���uy�H�|$x�ky����H�|$8�\y�H�t$1��`��H�D$8H��t=H�D$8H�t$xH�D$ ����H���*y��R���H���y�H�|$x�y��;�����H�|$x�x�H�|$�x�����AU1�ATUH��SH��H��H�dH�%(H�D$1�H�T$�0���u,�T$�UH�L$dH3%(��H��[]A\A]�fD��������u�H��@@��H�]H��D�eL�kH���^��H�]L�kH�]H��u�3H�SH�PH�CH�[H��tD���[p�H��u޸�����g���@A�� t1��S�����EH�mH��t��EH�mH��u���fD���������蹭�f�ATI��UH��S�W�wH��Z 9�v#fD�9�w��uH��菾�H��t-H�E�U�Ao$H��AoL$H1�;]v�][]A\ø������fDATI��UH��S�W�wH��Z9�v#fD�9�w��uH�����H��tH�E�UD�$1�;]v�][]A\ø������f�ATA��UH��S�W�wH��Z9�v#fD�9�w��uH��追�H��tH�E�UfD�$1�;]v�][]A\ø�������ATA��UH��S�W�wH��Z9�v#fD�9�w��uH���_��H��tH�E�UD�$1�;]v�][]A\ø������f�U��SH��H������tH��[]�DH����H��[]�p���AUI��ATI��UH��SH���O�wH�?�9�wM��u:1�9�v�]H��[]A\A]�@�9�w��u貼�H��H��tH�E�MM��t�H�L��L����M본�����@AVI��AUI��ATI��D��UHc�L��S���O��L��É������
tf�؃��t��t�C�w���t3L��1�L��H��H������L��L��L���
���[1�]A\A]A^��L��L�������H��L������ff.�AWAVAUATUSH��8dH�%(H�D$(1��?
���H�$�
H��H��Hc�H�>��H�{H���������uH�[H��u�D1�H�t$(dH34%(���H��8[]A\A]A^A_�f�I��E1�f.�I�|$H���c�M�d$A�M���jA��
��@�XH��������u�L�k H�[(D�u��KH�C9���
Hc���1�H��H�H��D�0L�h��(������C����D�oL�wL�OA���

M9��!���L��H��E1��L)�L������������H�(��
H�FH�x���C��
�H�����H�[(H��s����SH�3H���#��������@���G�_1���@�ƅ�����"H���}����x���fD�F8���H���Y����T���f��G ���F8����~���&
�3H���!���������HcsH���+�����������H�C(H�SH��HD‹S�����Hc��H��H��H�0H��H)�L�$0��H���L$L9�������3H��L$�!�����t݉����fD�G=��y������}��������������O����(H���@����;���f�D�wD�oH�������������C���J�{��@L�cA�<$�1D�sE1�E��~#DH��L���u�����������A��E9�u�E8��H�{(�W���;�H��������������H�C(�H��H�p������x���fD�G���&����	�����l��������@���H���������-����UH��D$������������L$�VH��Q�<���������H�{H��������������WH�������������=��K=��=�u�����=�����D�GE���U�&H���s�����n���@= �=�������=�D����RH���5�������-����C���E�D$$Hc�H���1��������	���H�{H����������@�� ����@�v������������,H�����������@�������������G���K�E(��������� M„��)
�6H���u�������m����sH����������X���H�{H����������B����s�K�E,������o�ƃ�����ƃ�@���?��H�����8����������sH���d������������YH������������fDD�aE��DD�D�d$A����6D�sE����D�s0E��������D�cL�kE1�E����A���L$E9���
H��L��L$�����t܉��?���DDmA������1@D��+U�=H��D��R��������
���H�[H�������H�{H����H�{t�P�>H��������������H�{H���b������������H�{u����@�H����������@��������;H���s�����n���@D�WE���D�$H���N�����I�����-H���3�����.���@�LH�������������H�{H���������������MH�������������ZH���������������sH���>������������L�cA�<$	�
I�|$H���H����������M�d$�D$M����I�|$H����A�ʼn����d���I�|$������S����L$H��H�[�q���������6���H�{H����������� ���D��=H���N�����������H�CH��H�x��������DL�gH�W(L��DD�(E���>H��H9�u�����fD�_������8����0H����������������H������u���D�sA���@��A�փ�2�_L�{E1�@H��L�����������5���A��E9��D�[E����D�|$H�{(A�W�N	�AH���<������H�C(�H��H�p�M�H�{D��H���n��������������=H��D)����������4H���������������MD�m8�UH�ED�aA��A9�v*fD�A9�w��U��H���İ�H����
H�E�MD�,D;evD�eHcs0H���J������M9�����A��L�~HD���A�O�D$���D$A9OtL��L��L��L�L$���L�L$��Hc�A��M�$M9�rE����|$udHc�E1�H��D��L����������M���A��I�M9���Ic_A9_t#L��L��L��L$L�L$薜�L$L�L$Hc�D9�u��뾐�G���H���9��H�sH�������(�fD�H������>���fD�2H������������s��u�S0���#���H�H9C��D�u�CH������������D��H��� �E�������t$H����c�����{�U4D�cD�{���AH�E@D9��Ic�A���H�{H��H�к���DD�D�8D��D�`�������'�C����} ������GH������������D��H���q�����f.��������A���J����AA�ƃ�2�:���D�u�B���G@��L�wE�nM�fE��~&1�H��L���%�����}��A9�u�M�fH��L����������\�Q�>H��L$������>�I�~H���������(�?H�����������L$������=H��)��7�����Hc�D�D$H��D��L���������D�$	H��Ic�H���-��H���0D�c�H�C�=�D�H������U����C��H���w��L��H���������d�H�[(H��s�s��SH�3H�������@�G�^8H��F8���]8���$�u	��2�(L�{A�����������@�PH�������������H�{H���}�������QH����������ʾ=H������������H�{H���:����1H����������~��H��������m�H���^������5H���L��������DH������SH��P�g�������C����D$$Hc�H���#��������H�{H������������TH������������H��o����������P�NH������������H�{H���/���������OH���x�����s���)H���c�����^�@�*H���K�����F�@�+H���3�����.�@������'H���������D�OE�����%H������������XH��������������E�KH��p	�s���������H�{H���S���=H��P������������@�/H���s�����n��.H���_�����Z�E)�E��E��~YA�����G�l��A)�A��E1�A�DD��>H���`�������H�{H����������A��E�E9�u�1������>H��L$����������L$�=H������������H�{H���D������������D�|$�=H��D���������v�H�{D��H��������]�������>H��D)������A��!H���2�����-�� H����������H���
�������H��������������H�{(����=H���
�������������>H������������H�{D��H���5�������������=+T$H�������p��H���a�����������H���E�����@���=H���l����]���� �;k�H����H�E@�E4���H�{H�T$$H�����������������D$$����H�{H�T$$H����������������D$$��҉���������ƒ������8H����������~��sH��������l��H���]�����X���H��Hc�T$H��谦�H�����T$H�E@�U4�����C������EH�����������������ƒ���tE�7H��������������sH���V�������*���H�����:�������9H�������빹�������:H�����������������|�������r�1��k�f���t<AUATA��UH��SH��H��H��D�n�H�8����tH��[]A\A]�f����sH������uՃCH��H������u�A��t(A��t:A��tDH��D��H��[]A\A]�O���IH�������u���D�JH������搾KH������֐AW�$I��AVL�5�o
AUATL���UL��H��SH��H��dH�%(H��$x1�H�H�����H�F0H�FpH���H�FH�FH�FH�F H�F(�F8�F<H�FXH�F`H�Fh�Fx�F|Hdž�Hdž�Hdž�dž�Ɔ�L���H�H�H�EH�SH�C H�UH�EH���H���H�UH�EH���H���E�/A��
��H�
pk
D��Hc�H�>��I�(�U	H�EE1�HcPHc@H�SH��H��$xdH34%(D���)H�Ĉ[]A\A]A^A_�@H�}H�D$pL�d$M��H�<$I��H��I�}H��H���.������fM9���H��$�I!T$H�sI�|$H�$�D$�Z��H�$H�sXI�|$X�H��H�$H���I��$��0��L��k
�D$A��$�������$`����I��$�H��$HH9���L�]H��$PI;�$�sI��$�H9�sI��$�1�1�H�����<�6	AƄ��H��w��uA�{�A�R�H��H��u�H��$XI!�$�A��$�H�L$pH�T$xI;$sI�$I;T$vI�T$M�mM�������f�A���0����H�U L���H�BhM��LD�A�G���M�g(I�GH�t$(M��LD�Ic$I�<��~���A�Ņ�����Ic$H�U H�t$0I�<�蝶��A�Ņ������A���
H�D$8�H�\$H�$H�D$@��H�D$D�l$�N�IcEH�U H�t$I�<��J������2���H�D$8H9D$(vH�D$(H�D$@H9D$0sH�D$0��A9_�K
Hc�H�U H�4$M�,�IcEI�<�跲����t�����fDH�D$pI�H��H��H�$���A�Ņ����McWD��A����l	A�GA�Å���	�?H��H�4$�H���$���~w��$���tl��ta�{8��H�4$L�cD�,$A�I��H��H���	�{8I�UH��L��A���G��A�GD9�}�D�,$A�WA9�}�C0A��Lc�9�t�C0�CpH�|$p����
�CpH�����Ic�1�H��H��H9�vH��H��A�����1�E��t#H�����1�H�|$xH��I��H��H9�sI��H��H�3H�S����H�ELcpA����Hc@H�E1�L�s���I�WI�wA�GH�MI��I)�����zH�{�����C41�M����L�#H�CHcC8L9��3����C0�'����A��JA�GH�nf
Hc�H�>���A�G�����==��I�H�t$pH���Q���A�Ņ������D��$�E���~	�o�$��o�$����o�$����o�$�����D��$`ǃ�E���R���H��$H�$L���H��:���f�A�G��EH�C����E1�����DH�E foEL�d$L�t$@foMH�,$H�D$`H�D$p)D$@H��)L$PI�L��H���^���A�Ņ�����H�L$xH�T$pI�vL�����H�$H�{H�t$x�KL�`H��u�$��CL�CXD�Sp�K��$�L�D$A��A	�%	�H����$�AD�D�K0�C����H����H��t�Cp�C0��~E����E���H�UH�sXL���w��H�UXH�sXL���g�����L�T$x���|M��t7D9�~D���H���H�����H�sL���"��L�T$xD��$`��tO�����t0��������~5����~H�|$H������7����~H��$H�$H�|$�H�H�T$pH�sL��H�����M�M���P����0����~V=tE1�=����f��P����L����������:�� �1�CE1�����fD�� t�E1������?L��H���H��_���D��t��P�E1����������u��v���fDD��$`E��~	H����H���:�������@D��$���$�A	�D��$�H���E	���$���$`�����H��$P����	�$XH����������f�H���R�H�U�BH����f�A�G�����1ɿL�
c
��ȉ������H�A�T�t>���u4��H�U�Ƅ�uH��u�z�A�I��H��H��u�H�E1�H�C�2���f.��$H�|$L���H����I�H��H����A������A�GD�eI��EH��H���f�D�eA������f.�A�G4��A�G4����A�G1ɨtI�O H������tI�W(H�E1�H�S���A���������@��$(��������o�$�o�$�o�$(�o�$8���������l���@A�E�A��A��A����V����I� D�e�G�E���DH�{�?���C4M��tGI�G����u6H�u�Ƅ�����u�~�H��`
�P��L�#L�c�(���H�uH�{L���@���Ƅ$�H�����HDŽ$�HDŽ$�HDŽ$�H��$�DŽ$����f�H�sXL���d���L�T$x�B���f.�%D��$`	���$�E�������H��$P�w������D�CE1���DH�uL��H�{X�3����H��$P�s����u���@H�}H�|$pu
I�G�8��A�G1���tH�����Hc�1�H��H��H9�vH��H��1�H�|$x��H���Y�����H�|$pHc�H�����H����������E�gE���uA��E1��
H�EI��E��H�¾D���PX��tHB��;�u=A��H�U�BƄ;�uM��u�z�H��^
B�x��I�WM9�u��t���I�w�}L�uI�W����u7Ƅ�A�����u
A�~A�H�
^
D�AD��H�l$p����M��H��A�VH���������L�}L�$$M��H��H�D�H��$qI��H��L��L��A�?A�T$0��$q���u4Ƅ������u
A�|$�H��]
�4P��I��L9�u�L�$$L��� ���E�GE�������C�E�}�̀�CE�_McW1�E�������8���D��$�E��������o�$��o�$����o�$����o�$������l���I�H��H���R�A�ŋC��u
�C����H�U A�O�r$����������„�����?�C�~�1���E1��f.�H�EE��H�¾D���PXE9�~��uHB��;�u=A��H�U�BƄ;�uM��u�z�H�e\
B�x��I��I��u����D�l$H�\$H�D$(H�H�D$0H�C�����@�CE�_McW�~����0��A��_�A�������f.���H�=�9��f���H�-�9�81����UH��SH��H��H��uH��]1��EH��[]ÐH���xV�H�EH��u۸���������H��tSH��螔�H��[�c�D�ff.�@��H��toSH��H�?H��t�fc�H���H��t�Uc�H���H��t�Dc�H���H��t�3c�H�{@H��t�%c�H���H��t�T��H��[�;Q�����1�H��ttDH�?��t
�WH��H���H��t
H���H)�H�H���tH��H���tH��H�@tHcO4H��H���H�H��u�����H��tHcH��H���1��D���&f;��t
1���H���
f;�5��1�H���ff.���AUA��ATI��U��SH��H����e;����H����M������%�=���A�@L�cHL�CP	�D�k`���Cd���@Hǃ�E�Hǃ�Hǃ�Hǃ�H�H�CH�CX�C81�H��[]A\A]�fDL�D$�^[�L�D$�K����m����Ը���͸����ff.�@���'[����SH����S�H��tH��d;H�XH��d;H�[�f���SH��d;H��t%��SH�=�d;H�H�|d;�`�H��u��pd;1�[�ff.����D�1�H��E��A9�v1A���D;4�v�2f.����D�DB94�r ��9�r�1�A9�v
�1�94���É�D���HA������SH�Ӄ�3���w+������H��T������ƒ��C[E��H�S(1�H��t�H�:�E�������ƒ��C[E�����SH����H���yH�T$��H��Q(H�T$��H����[�j��AWAVAUATUSH��8dH�%(H�D$(1��?	w5�A��H�aV
H��I��I��Hc�H�>��L��H���#���L���G�1�H�t$(dH34%(�FH��8[]A\A]A^A_�1�A�H�{L��D��L���f���H���������EL�K��u��@�}uH�m�E������t�L��H�[H��u��l���@�F8�^����G�T�������L���f�L���L�W(H�Ah�wM��LD�H�GM��LDЅ�����A�
A�l$\9���A�T$$A�D$L��1�A��DHc�I�4��9���E��A��A	Ѓ���AN�E��A�T$$�A��A	�����AN�A�D$�C t A�L$ D�A��D��A��A�� AM�A�L$ Hc��I�˃I 9{��o����L�A��t�O�C���������D���9CuD���L��L��L������������A�������D�cA������I�wI�I��I)�L�t$���I�Ÿ����M������A�GM�A�E�f��hI��d��I�WI�wL����Z����Lt$��A9�uϋCD9�������l���D)c1�L���b�H��H����H��H���u���H��H���zL�H��1�H���F���H���TD������4���f.�������GH�tS
Hc�H�>��f��G=���=�a= ����L�O��3���L���{������������D��L���L��L���I����������I�T$L��H��������@A��H�{L��D��L���������d���H�[H��u��T���@A��t�A�W���Ѓ��� M�A�D$�CD�����DE���A�� DH�{L��D��L���������H�k���r�������=����H�D���q�������@�}���8����}��.���L��L����H��t
H�P�:tH�E(�}��H�k���fD�Gu"�A`��~H�A�@�t��!DA�D$\9C�*���f��0����0���fD�G�n8D��H��F8���A�m8����f�H�oD��H������}���}�����}�����U������H�U����������K@���H�t$ L��L���Ț���������H�|$ th�C�E���L�O��3���L���%������g�����L��D�����@D��H�������>���A�� �"�����C�����CL���q����������{����C�s���D)�D)c�C�v���A���U���L��D$�@�D$����H�}�A���H���1�L������H��H�D$�0���1�L��L�����L�T$H��I������A�A������������I�rI�zH9�����������6������A�B�����A�A�����I�QI�AH)�H)�H9�HF�1�Hc�H9�������H��:L�t���v�H�����H@H��H��H�D$��H�D$H�EH�k�L���fD��������L����?���������u��������.��L��M��I������������'������҃�����A�BA9A����A�BA9A�����A�BA9A������-����/����$������������A�y�����I�MHA�yH�A tpL�L$H��H�L$��H�L$���H����H�L�L$��t|A�A�������B���I�EHL�L$HcpH��H��P L�L$I�}H��L���9�������L�AXL�L$H��H�L$L�D$��H�L$�L�D$��H��A��L�L$��u�1�A�y���y���A�y�����A�yI�B(�HH�������A�J��tQ���A�y�����I�EHL�T$�ϾL�L$�L$H��PX�L$L�L$��L�T$�N������Ⱥ����H�A�T�u��A�R1ɿ�փ��!��tE�\�t0A�A�	�������t&��A����A��H�E�\�t˅�t���A�At�����I�z(taI�y(����A�A������6���I�EHL�T$�ϾL�L$�L$H��PX�L$L�L$��L�T$���������'�������u����H���]���1��h��w1I�EHL�T$�ϾL�L$�L$H��PX�L$L�L$��L�T$u/�ʸ����Hc�A#D�A�BuQ����������t�����A�yu�I�EHL�T$�ϾL�L$�L$H��PX�L$L�L$��L�T$t�뷅�u����D��AWAVI��AUI�͹ATUSH��H��8dH�%(H��$(1�L�d$`L���H�M��tI�E�CL��$D��$ ����H�ָH��H�T$L)�H�HD���`�H�T$������CM��H��L��H�CL�|$�C4L��H�C@�q�Ņ����$���~H�T$p�B��9L�t$��$������C L��1�H��L����Ņ��T�T$x�D$|�����	ЉS$�C(�C8�0�$H����K,Hǃ�H�CdH�ClH�CtH�C|H��t�R�C8Hǃ�H�SHH�|$�D$HL�d$P�C`L��$0H�T$@L��H�T$0�D$LH�D$8H�D$0�j���Ņ�����$@��$D�щ�%P�����Eȉ�%	ȉCl�tH��$0H�CpH��$8H�Cx��$h��D��$�E����H�{HI�t$I�T$X�ƪ����$ Hc�$h���D��$d��E���4���������������~I��$�I�|$���Ω���������I��$�H���I��$�f��H��H���J�H9�u�H��$H��$�CdH���H���H���t���Ch��$��$���� 	�	�����Yf��H���s���D��$�E�����{�����s,�����K(�����C0���H�|$�8�fDH��$(dH3%(���VH��8[]A\A]A^A_ý����H��t�VP�fDL�t$H��$�H��tM��tH�T$hI�EH��$�I�UI�EL���8�H��$H���w����P��m���D�C�C�����$\��$X������� ��	�	����$����i���H�|$(H���[����O��Q����Hc�H���DB�H���`H�D$(L��H�D$ L���l$$�D$ H��$�肟���Ņ�u�H�|$L���?����Ņ�x�H�|$L���l����Ņ��j�����$�L�t$�C ���fD�C9�����;�$���L��H��L���C���L�t$�Ņ������������$�	�����f.���u|��$\��$X�� ��	�	��H��$H��t�N�HDŽ$H�|$H������Ņ��{�����$��������H�|$(H��������IN����@H����@�H���H���<���H��I�t$<H���8��H�4(H��H�CHH���H��H��PpD��$d��E���z��$h��u���0�CdH��$HH��$PH���H���H������H���H+��ЉCh�����|-�����D��$ ���E�������	�H��$8���������� 	򉓀�����C0�����f�L�t$L���Ì����� ���@D�D$ H�D$(E����H�P�B��E1��6f�F�< ;kv�kA��H�|$(D;t$ }{Ic�H��H�H�P�B�G���Lc �sD�zH�A�l$9�s�fD�9�w��sH���{�H���H�두��$h��u�����Cd���H��1�H���l����9L�1��`���H�SHH���H�K`A�H���L���誨�����0���������Cd�"����C0���?���H�SHH���E1�H�K`H���L����Z������Z������t���H�SHH���H�K`A�H���L����������������s���H�|$(��������H�SHH���E1�H�K`H���L����ԧ����t���������������i�H�ǽ�����K�L�t$���D��E1�E1��Q]���AUATI��UH����L��SM��H��H��H���9L�l$0��.A��tH��[]A\A]��H��L��L��H��H��[]A\A]�q�ff.�f���AWM��AVM��AUI��ATI��U��SH����H���=�H�H��t^H�l�9��M��L��H�Nj�@�Ņ�t$H�;�di�H�H����[]A\A]A^A_�@H�L$@H�;L��L���p�Ņ�t��������fD��1��f���H�%�9H�Ð��H��9H�81��ff.�@��UH��SH��H�����
���|�H��[]�f�H)�H����)�[]�ff.�@��AUI��ATI��L��UH��H��L��SH��H���UhH��I9�v
�E9EuH�H�H��H��[]A\A]��H��H��L���d�H�H���ff.���AVI��AUM��ATI��L��UH��H��L��SH��UhH��I9�v1M��tI�E�E9EtH��L��H���Rd�H�H�H��[]A\A]A^ÐM��t�H��I�E[]A\A]A^����H��I��H9�vH�r�L�OhH��L��H��A��D1��D��H��tXAUH��ATUSA�X�H��E��~7I��H��I��H9�w�%������tH9�sH�p�L��L��H��A�T$hH��u�1�H��[]A\A]�1��ff.����AUATI��USH��H����~#I���i�f�H��L��L����Oc�H�HÃ��u�I9ܸHC�H��[]A\A]�ff.���AUATUSH��H9�s=I��H��H��E1�H��L��H��A����b�H�H�H9�w�H��D��[]A\A]�fDH��E1�[D��]A\A]�ff.�@��ATI��U1�SH��;u;A�D$��t"H�S~+�{t
�#�:u��H����u��[]A\��Ict$H��L���H��Jb�H�H����ATI��UH��SH����;u;A�T$��t"H�K~+�{t
�#�9u��H����u�)��[]A\�fDIct$H��L��H���a�H�H��ff.���I��H�GhH��H��H��L������AWA�aAVA�AAUI��ATI��USH�QA
H��dH�%(H�D$1�H�l$�fDD�{D�3H��D�|$L��H��D��A�Յ�u&D�t$L��H��D��A�Յ�uH�
�A
H9�u�H�|$dH3<%(uH��[]A\A]A^A_��c�f�����P���v)�P�1���wH�H���� �A��H�H���� �A��ff.����AWAVA��L��AUA����1�ATM��UL��SH��L��H��(dH�%(H�D$1��`8��uYE��~wA�E�L�l$L�|��*���{L��L��D$�Յ�u#H��L9�t=�CL��L��;�D$�Յ�t�H�T$dH3%(u?H��([]A\A]A^A_�@1�E��t�H�t$L��H�ssH�D$������a�ff.�@��A���L�T$���P���wvH�I�A��� A�BA�8SuI��tEI�@I9�v<A�@���<Su0H�A�B�I�B��H�A�JI���f��P���w(H�I�A��� A�BA�8st����<�u��u_��~>��N9�t�9�t7H���W�H�<��f.���N9��s���H��9�tH9�u�1��H�A�RI���H�ssH�I�zH�SSI�I�BI�zH�� I�B(I�B<H�SsI�BD�I�z0����������fD��1�H9�s1��?
���ff.����H�H�"�9����H��ff.�@����fD���������fD�����w	@�>��PH��9��H�5˒H�81���g���H��������fD��1��f���1���wH���9�����x������UH��SH��H���w9wtH��H��H����\��H�}�E��~&H9�v!H����H9�vH���J���ȍJ)�9��H��[]�ff.���ATUSH�*�E��xH�
��9�A��H�[]A\ÐL��I�ԋG9GtH��H��H���4\��~%�x�1��f�H���t
@�4H�qH9�u�Hc�I$[]A\�ff.�@������v���%�-��ff.��������u����u1�����������UH��H��SH�ZH�����t��"H��H�Z@�0�G9GtH��H��H���P[�Hc�H��H)�H9�u
H��[]�H�p�����ff.�@��UH��SH�ZH�����tW����H��H�Z����H�C���tV��+H�X@�0�G9GtH��H��H����Z�Hc�H��H)�H9�u7H��[]�H����u����tH��H���DH9�u�H��H���H�p���������v7�Ѓ��t
1���t�D��H��H��H����R(����H����ÐH���9�����p����ff.����f.���E����AVI��AUATI��USH��H9�s]A�@�H��L�l�0�I���E9EtH��L��H���Y�H�H�M9�t4I9�vH��L��H��U A�)�t�[��]A\A]A^�A�[]A\��A]A^Ð1�[]��A\A]A^�1҉��ff.���E����AWI��AVAUI��ATUSH��H��H9�sA�@�I��H�-y�9L�d�-f�I��A�FA9FtL��H��L����X�H�I�M9�tJL9�v=L��H��L��A�V ��H��DA��T)�t�H����[]A\A]A^A_�fDA���f�1���1҉�����AWAVAUI��ATI��UH��SH��7
L���H����#�A�Ƹ��H��L9�t7�D9�u�H�KE��L��L��H���*(��u֋CH��[]A\A]A^A_�@H���!���[]A\A]A^A_�ff.����AWAVI��AUI��ATI��USL��H��(�/H�|$H�L$L�D$�6��� t	���� L��H�ډ�S0H�Iĉ�����E�I�}L;d$sNL9�sIH��L���A�Dž�xIH��L��I�}�S Ic�IM�P���v��P���w���@t����� �H�D$E��D+|$�(H��(D��[]A\A]A^A_�ff.�@��D�H��L�L9���I9���S�DfDA�� tA��A�� H��D�P�E��A���A���EE�L�L9�s?I9�s:M�ZL�E�A�[�E�ڃ�v�A��AA��w�A��@t�A��A�� �H)�D�[�D�H)�Ð��1�H��y,H�ǓH����H�ND
Hc�H�>��H�jK
��H��<
��H�:�
��H��C
��H��C
��H��C
��H�yC
��H�OC
��H�(C
��H�C
��H�@
��H��?
��H��B
��H��B
��H�jB
��H�IB
��H�B
��H��A
��H��A
��H��A
��H��A
��H�WA
��H��>
��H��>
��H�y>
��H�9>
��H�>
��H��@
��H��@
��H��=
��H�@
��H�X@
��H�-@
��H�I=
��H�=
��H��?
��H�*
��H��<
��H��<
��H��?
��H�)<
��H��;
��H��;
��H�0?
��H�?
��H�Q;
��H�Y:
��H��>
��H��>
��H�v>
��H�N>
��H��:
��H�>
��H��:
��H��=
��H�I:
��H��=
��H��9
��H��9
��H�T=
��H�,=
��H�A9
��H�9
��H��<
����AWH���AVAUATUSH��H�<$H�t$H��$�dH�%(H�D$x1�H��$��D$(H�D$0H��$�H�D$8H��w�H��ulH�|$1��@0�H��H��t H�=�9H���Y9�Lc�L��M����1�H�$�H�T$xdH3%(���%H�ĸ[]A\A]A^A_�f�H�D$8�D$(H�@L�(L�`L�xA�}��M9���H�D$@1�E1�H�D$�@D�[=��vD�C
A��/��A��/D�\$�x��H��>
���H�D$J�<01��/�{@��1�Hc�H��>
H|$��
�D�\$D��A�EA9EtL��L��L���mP�H�Lc�I�M��.�M9���L��L��L��A�U M��Ń��=�����B�D4@�M)�I��/��Mc�M����1�I��/��H�|$L�T$L�d$@�.�H�$L�T$H���E��tH�U<%t&H�ՈH���E��u���+$�G�����EH�U<nu�M���Lх���H���f.�L�<$L��H��L����g�L�H�$���E1��1�M9����E�����H�D$�H�Q=
��D�D$J�<01�D�\$��L�t$�{���Hc�H�$=
1���L���t�Hc|$��H�=
�̾1�L��T�{@��1�Hc�H��<
�L��4�D�D$D���"�����..�A.H��f�A����f.�L��H��L��L�T$��f�L�T$H������A�/L��H�|$@�2L��L�T$�)�L�T$�'����aP���AWI��AVM��AUATUH��SHc�H��H��(H�T$H�L$`L��L�$dH�%(H�D$1��#�L��H�H)�H�T�H9�w#H�D$dH3%(��H��([]A\A]A^A_ËB
H�=��9L��A��k5�Lc�M�H9,$��H�\$fDL�t$L�,$H��L��L���iM����McfD��E9ftL��L��H���EM�Lc�A�FI��E�,,���D��D)�~YI��A�N��1�H�);
H����H�=N�9H����4�P���~�I�DL��H��@�H9�u�D��M�|D)��E��II�H�H;,$�2����/fA�����@�EL�e<\�</��L�t$���L��A�VX��u0�}L��	A�VX����H�D$�}�H��PX��up�EI��L��A�G��p���E���g���A�L$�1�I���
�H���TA�H�PH9�u�Mc�I�D$H�I��,���A�\�EI��L��A�G������MH��9
H��1���6�H�=��9H���w3�P���~I�DL��H�ޤH9�u�M�|L������H�L$A�\M�o�A9AtH�4$H��L���^K�p���~3H�N�fD�TA�H��H9�u�L�FK�,O�|�h���M��L���]����DM�@AWAVAUI��ATU��SL��H��H�H�T$(L�t$@L�d$`H�L$ dH�<%(H�|$x1�J�<H�D$8H��H�|$H�|$(H�|$H�|$8H�|$H9D$��M��L��H��H�t$��A�U8M��L��H��A��H�t$��A�U8A9�uHE��~8�D$`8D$@u8A�G�L��I�LL�����2@80uH��H��H9�u�H�D$(�@1�H�\$xdH3%(u&H�Ĉ[]A\A]A^A_�H�D$8H�\$ H�����L�ff.�I���������AWI��AVAUI��ATI��USH��(L�7H�*H�H�L$L�L$L)�H��H��L��I9�ty��1;K���t��H9�wTH��L��L�\$H��L�$H���\�L�$L�\$H��H��tnL)�H�1�H�I�/I�MI�$H��([]A\A]A^A_�f�D9�t[H���fDI�8u�H��H�$H����H�$H��H��t'H��t�L��H���Na�H���L;t$tH�D$M�0L������돸��f�A��AVAUATI��US��H��I��E��H��H��H��L��S ��
t[HcC9CtH��H��L���tH�H�M�,L9�vH��H��L��S ��
��H��H��L��S������[]A\A]A^��E��u+[�]A\A]A^�D[H�GH��H��]L��A\A]A^��H��L��L��H����J�H��t�H��H��H��S ��
�����H��H��L��S ��
�g����f�AWI��AVAUATUH��SH��H��L��H��$�H�t$(L�t$`L�L$H�D$0H��$�H�D$8dH�%(H�D$x1�H�D$XL�D$H�D$�}d���EdH�=�;
Hc�H�>��f�L���L���H��H�MHL��L)�H�L$ H)�I9�rH��H�|$�QhI��H�t$L9���L��H�l$@H�l$L)�L�t$HM��L�l$ H�$L��I���H��H��H��L���I�I9���A�>@88u�I�VI9�v2H�H�pA8vu�H�4$H��DH���y�@8:u�H��H9�u�I9�u�H�l$@I��L�t$HI�����H���H���H�ދU`L�eHH�$H)�I��H)ƉT$ I9��>L9|$��H�l$@fDL�|$XL9,$vfL��M��L��H��H�t$�|$ A�T$8��~BH�U�t$`@8u���H��I�LI�F�H��H���x�@8}���H9�u�H9,$w�H�l$@M��M��tr������L������ �:L9��1H�}HD�E8H��L��H�T$(A��c������H�}HH�t$L��H����G�I��H�������E1�H�|$xdH3<%(D����H�Ĉ[]A\A]A^A_�@L���L�eHL;|$r�A�����>H�,$L��H�l$M��M��L�l$��A�<�
H��H��L��L���IG�H9�v��g����L�l$(M9�t>H�}HL��H��L���G�H�}HD�E8E1�H��L��H��I���`����������H���A�H�������H�L$0L��L�t$8H)�H�}HH�t$H�L��H+��H��I��/�I�����L��H��H�|$A�T$hI��L9|$��������DH�t$L��H��L���eF�I��H9D$������z���f�H�,$M��I��M�����E�f�AWAVAUI��ATUSH��H���H��$�H�t$@H�$H�D$pH��$�H�L$L�D$L�L$xH�D$`dH�%(H��$�1�H��tcH��H�WHHˋB���u	H9���H�L$H9�s:I��H�,$�f�I�UH�B9BtH��L���B�H�I�I9�r��
DL�d$H��$�M��H�D$(H�D$hH��$�H�D$A�}d��A�EdH�=�6
Hc�H�>��DA�E`M���I���H�<$H�t$M�eH�D$ L��H)�H�DH9�HF�H�D$0I9���L��L�d$hL�l$8I��DL��$�M9�vkL��I��L��H�$H�t$�|$ �S8��~IH�U�u@8�$��`��H��I�LI�D$�fDH��H���p�@8u��2H9�u�I9�w�L�l$8L��H���H;l$�H��I+��H9D$wQA������d����� �RH�$H9��EI�}HE�E8A�H��H�T$@�2������"I�UH�B9BtH�4$H����@�H�H�l$(L�|�d����M���I�mHL;|$sfA�A�����L��L�t$I��H�,$�f.�A��<����A�D$A9D$tL��H��L���X@�H�I�M9�w�fD1�H��$�dH3%(�H�ĸ[]A\A]A^A_�DH�\$@H9�tFH�D$(L�4$H��H��I�}HH��L��HE���B�I�}HE�E8E1�L��H��H�����������I���I��H����H�D$xH�|$`H�(t7I�}HH9l$�vH�D$(H�T$@H�$H��HE�H��H���VB�H�L$`H�H�D$pM��M+��L������f�I���I���H�$H�D$0H��H)�H�|$HH�|$H��H��H�D$PH��H)�H�H9�HC�I���H�������I9������A�U`M�eHL�l$XL��H�\$hI�ʼnT$8�H�D$PH��$�L�|$HL�tI�FH�D$ L9|$0�5M��H��H�T$ H�t$�|$8A�T$8��~�I�W��$�A8u.��I��H�LH�C�H9�t�H��I���p�A8w�t�H�EI9���A�FH�L$XI��D����	@M9�v*A�D$A9D$tL��L��L���>�H�I�L��H)�I9��M9������L������I��������I���I���H�$H�D$ H��H)�H�|$PH�|$L�4L9�LF�I�L�t$0M9��F���A�u`H��L�l$HL��M�eHL�t$hH�D$X�t$8DH�D$XL�kH�,H�D$PH��$�H9D$ viI��M��L��L��H�t$�|$8A�T$8��~DI�WA�7@8�$����I��I�LI�F�f�H��I���x�A8���H9�u�L9|$ w�L�l$H�t���@I���H�t$M���H�$H�x�H�D$ H��H�|$8L)�I��H�I)�H�|$0H9�LC�I����:���M9��1���M�eHL�l$HL��M��M��M��H�D$0I�4H�D$ �8P�u.H�D$8I9��@H���I9��/H��H���8
t�I�FI9������FH�|$HM������
DM9�v&�C9CtH��L��L����;�H�I�L��L)�H9��M9��|���M���X���@I����b���I���I���H�L$H�$H�w�H��H)�H�M�H9�HF�I9��*�����A:9u4L��H9������H����H9����H��H��D�D8]t�I�AH9����A�AA���I�I9�r�����DI���I���H�4$M�uHH��H��H)�McfH�lH�D$H9�HF�E;f��I9��y���L��L�l$ M��L�aI��I���1f.�A�GA9GtH�4$L��H���:�H�H�H9��1���A�E8u�H�sM9�tL��L��L)��iD��u�L�l$ H�������C9CtH�4$H��L���):�H�I�L;|$0�9�������@L9l$0������CH�t$H���H�H9\$0�~�������H����h���H�t$@H�H9�rxH��H)�H�D$xH�H;T$�/H�\$`H���3���H�D$(H�|$@H�$H��HE�H��I�}H�`<�H��
����L�l$X����fDI�������H�D$xH�\$`H�0H������I�}HH�$H���
<�H����f�H�t$H�$H����;�H�t$`H����f�L��L�l$H���I9�������	L�rH��L�l$0L)�I��H��H�|$ ���fDM�M9��l���A8u�I�wL9�tH�T$ L���B��u�L�l$0L���(����H�\$`H�$I�}HH�t$I���v�H�L$xH�H�����H�;����H�t$(H�L$H��I�}HH��HE�H��H�$�;�H�|$`H����L�������=:�ff.�f�UH��AWAVAUI��ATSL��H��H������GL�wHL�?H��8���H��H���D�`L��X���dH�4%(H�u�1��w8��$�����`����w`�� ����wB�fHc�H����d��H��X���H�H��P���H����H�AH��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�D$H��P���HDž(���H���H��H�����H��X���H�U�H�H�@H��H��H�E��H��H��H��H%�H)�H���H��H9��3H��H��$���H�ω�p���H��x����z
�H��x�����p���H��H�����H��X���H�8H��H��P����AH�@H�}�H�H��(���H��H��H�E�H��8���H�����H������@0��d���Hc�H�4�Ic�H��H��h���H��p���H��H9�sf�H�H��H�P�H9�r�H��P���H�5�*
H�=�f9HDž0�������M�gH�pH�����H��(�@�H�u�H�E�A�H��x���H�u�H��H��@�������H�E�I��L+����L9�0����V��`���t H��X���L9C0�<H�����L�C0H�s8H��X���L��0���H�SH���H��x���H��H���L�bH9�HG�H)�H��H�ZH)�I�$H���$�������L�����L�}��I�����L��x���L��8���I��L��p����oA�S(A�փ�A��A����AN�L��h���I�<����72H��I�T�L)�H�A�C,�ƒ������N�H���t	H��I�T�L)�I���9�$���|)Hc�H��I�tL�L�H�>��p���M�L���L��x���L�������`����0�b"� �b+��`����M"L9m��C"H�E�@��d���������ttH�u�H�P�H��h���L��p����D����%���tH��(�
H�Є�����u�H�JHcBH��H�J HcBI���͐����%H�ȋP�H�H؄�t�H�M�H���j��H�U�H�}�I�t$E�$H�����L�z�H�B�L�Z�H�E�L9���M9���$����$��d�������/H��(�8t�M��H��(�8t�H�E�H�PH�HH�5�c9H�XH�@ H�M�L�bH��x�����$���H�E�H9�P���t*H�u�H��X���H���������H)�H�H��H��H��H�CH��(���HDž0����H��t��H�]�dH3%(H��0�����JH�e�[A\A]A^A_]���H�E��B�����I�4$IcL$I�D$H��9�$����:)H�L�`�H�5�b9�$���H�u�1�H���H��(���t��	��H��(��ы��u����&������H�E�H�U�I��E�|$�H)�H���<;H��8����H��(L�`�H�E�Ic�HH�=Bb9L�`��$���H�E�H�U�H)�H���@:H�U��H��(L�h�H�P�H�E�fDA�$H�5�a9I��H�����H�E�I9�H�u�LG�H��h���L��p���H�P������$���tH��(�
H�Ё��&��u�H�JHcBH��H�J HcBI������H�E�H�u�H��h���L��p���H�P��D���f$���tH��(�
H�Ѓ��+%��u�H�JHcBH��H�J HcBI������E�$H�U�L��L��H��H����zA�H�E�H���_5H��H���L��H��L��I���2�H�5�`9H��A�D$�H�����H�E�fDH��(���t�
H��(���u�u��
A�$H�5d`9I��H�����H�E�H�U�H)�H���7�H��(H�E�A�$H�=(`9I��H�����H�E�H�u�f�H��(���tM��t���#���u�H�HHcPH��(H��h���H��H��p���H�HHHcP0H�Ӌ��u�H�E������H�E�H�U�Mc<$H)�H���-8�K�T<H��(I��H��x���H�P�H�U�H�5j_9H�X�H�P�H�x�H�E�A�D$�H�����H�E�fDH��(���t�
H��(���u�u�H�PH�XI���
H�5�^9H�U�A�D$�H�����H�E�H�U�H)�H���27H�U�H��x���H�X�H�@H�PH�p �o�����I�$H�����M�|$L�$�H��H�U�K��H�ʋr�NH��8����JHF@;H��"H�u�L�ZH�U�H��H)�;�v$H���(1�H��(L�b�H)�H�U�H���>H�E��H��(L�Z�H�B�H��x���H�Z�H�B�H�U��~"��A�4$M�|$H�E�1ɉ��!f.�=tI=	�����H��H�P؋@�=uۅ�u�9r��!H��(�=t�=u�f.������E�$H�u�M�|$1�D��H����=tA=	�����H��H�P؋@�=uۅ�u�D9B�|!H��(�=t�=u��������H�U��A8D$�r.A�D$H�5�\9I��H�����A�D$H�U�M�|$E�$�����H�E�H)�H����2H��H+U�H�����I��H��L�$�H���������H��H��H��8���E��L�xH��(�@�H�V@D�X��@�B�"H�E���uDH�U�H)�H����=H�U�L�xH��(H��x����@�H�P�H�X�H�x�H�E�Hc����I�A�H�=�[9M�g�$���A�D$H�U�M�\$E�<$�����H�E�H)�H����0H��H+U�I��H���������H��L��H��H�����H��H��8����H��(D�x�H�V@L�X��@�B�4H�E���uDH�U�H)�H����<Hc����H��x���H�XH��(�@�I�H�U�H�p�L�X�H�P�H�E�A�D$H�=[9I��H�����I�$H�����M�|$L�$�H��H�U�H�u�K��H�ʋzL�E��OH��8����JHG@L��H)�;H}Q;�v H���Y:H�E�H�U�L�~H��(�F�L��H�F�H��x���H�^�H�F�K��H)�H��H�u�L�xH���k�H��(L�f�H�u��
��Ic$M�|�@�A�H�5/Z9M�g�$���H�m�(A�$H�=Z9I��H�����H�E�L�]�I�t$1�E�<$H��fDH��(�
��0t!��Pu�1�D9z��H��(ϋ
��0u�D9zu˅��������H�E�L�]�I�t$A�<$H���H�сy�0H�Q�u�9y�u�L9Y��~7A�D$H�=\Y9I��H�����H�E�H�U�Mc<$H)�H���~2������H�}�I�t$H�E�A�$�H�Ёx�0H�P�u�9H�u�H9x��K%�H�=�X9L�f�$���H�E�H�U�E�<$H)�H���c0H�U��0D�xH�PH��(H�E�A�D$H�5�X9I��H�����H�E�H�u�E�L$E�|$H�P�H9����A�O�E1�M�\L1��)���	��A9���H��(H9��n�:��uԃ�����A�$M�|$E1䉅������H�E�L�����M��L��8���H������I�H��p���I��L��H��I�����H��h���H��H�����A�}(������ƃ�f����ODŽ�tL�M�H��I��H�PA�},������ƃ�f����ODŽ�tH�}�K��H��L�@H�]�I)�J�I9�r9H�������� ���M��H�]�H������.������A��D9�����(���M��L�����H�E��:���A�$��9�$����_(H��p���H��H��H����~5H��h���H��H����
7H��8����{(A����A��A��f��AN�@��tL�]�H��I��H�RH��8����{,����A�؃�A��f��ANȄ�tL�U�H��I��H�@H�]�H)�H�I9��1H�E��n���A�$L�}�M�L$��������2;L�]�L��h���1�H��p���L��8���I�I��H��H��H����sI��H����eA�p(A���A��A��f��DO�E��t	H��I�D�A�p,A���A��A��f��DO�E��t	H��I�T�H)�I�I9���9L��H�4�fDH��H���Q�8P���H��H)�H���H�M�M���
�I��A�FA9FtL��L��L���-$�H�L�H;E�rڋ����M���)��H�I�9������A�H��T9M�aH��L������A�$I����9�$�����H��p���H��H��H����g%H��h���H��H�����&H��8����s(A���A��A��f��AN�@��tL�}�H��I��H�@H��8����s,�����A�؃�A��f��ANȄ�tH�]�H��H��H�RH�]�H)�H�I9��uH�E��A�����9�$����1���H�E�����A�4$H�}�1�H�M�A��I��DL9�s I��(A��Ā�c1�A9w���L9�r�H�E�H)�H����*A����I��H��h���I��������̉GH�E�H�GI��H��H�H�p���H�2H�wH�0H�w H��H��(H)�H�}�H�=3S9H��I��H�0L��H)�H��I��H�A�D$�H�����H�E�H�5�R9I��H��x���A�D$�H�����I�$H�U�I��H�=�R9H��p���H��A�D$�H�����H�E�H�U�M�<$H)�H����)A��H��h������PH�U�H�PJ��H��p���H�PJ��H���������H�H�P H��H+U�H��H��H���������e�����I�$H��p���1�H�U�H�u�I��L��H��H�}�E��H��H9�sH��(��ƀ��1�D9H���H9�r�H��8���D�I(D��D��A�����fA��AO�L�h������oH�@I�H�E�H)�H������H��(I��D��H�}�A�D$�H�=hQ9H�����I�$H��h���I��H�U�H��H��p���H�����A�D$�H�5*Q9H�����H�E�H�U�E�<$H)�H���*A��H��h���H�����������PH�U�H�PI��H��H�H�p���H�H�HH�
H�H H��H+M�H��H��H�H���������H��X���H�u�H9p(���H�E�����H�u�I9���D��`���H��H���L��L��A�������WH�M�Mc~E9~tH��L��L��H������6�H�����Lc�I�M9�����`�����1L��L��H�}�A�V ��
��0M�F H�M�IcFA9Ft,H��L��L��L�����H��������L�����H�����H�H�<L��L��A�Ѓ�
��4H�E����@��H�u�I9���D��`���H��H���L��L��A�������P�H�E�����H��H���H;E���!L��L��H��A�V���<��`���tL��L��H��A�V ��
�[2H�E�L;m����� ����H��H���H;E���H�E�����L;m��SH�E������H��H���H;E��J)A�~�#L��L��H��A�V L�������������>H�}�I9��U�A�~��3L��L��A�V L�����a����)�H�E��X���H��H���H;E��$)L��L��H��M�~XA�V L����A�ׅ��p"H�}�I9����L��L��M�~XA�V L����A�ׅ����H�E������H�}�I9���A�~�L��L��A�V L��������������H��H���H9E��Y�A�~�.2L��L��H��A�V L�����b����*�H�E��Y����H�}�I9���L��L��M�~XA�V L����A�ׅ��YH��H���H9E����L��L��H��M�~XA�V L����A�ׅ����H�E������H�]�H�CI9���A�~�PL��L��H��A�V L��������������A�FH�}�A9FtL��L���Z�H�}�H�H�5=L9I��H�H�}�A�D$�H�����H�]�H�CI9���L��L��H��M�~XA�V L����A�ׅ���A�FA9F��H�HE�A�$I��H�=�K9H�����H�}�H�GH��I9���A�~��L��L��A�V L���������H�}�A�FA9F�%���������H�]�H�CI9��TL��L��H��M�~XA�V L����A�ׅ��@���H�E��Z���H�E�M�|$H������H��H�E�H�����H�E�H������H�<I9��%H�}�I9���A8$��IcFH��A9FtL��L����H�]�H�H���H�{���H�E�H����I��I9���I�D$I��L��L��H���H�����H�E�H�����H�E�H�������gH�}�Lc{D9{tH��L���G�H�}�Lc�J�?I9��8D��`���E1�H��L��L��H���X�����nL�]�M�L�}�M9��
A�A8$u�H�E�H�U�H)�H���X
H�����H�}�L�XH��(�@�H�p�H��x���H�x�H�p�H�E��L�����H��X���H�}�L�xH�E�H�����H�E�H������DH�<I9���H�}�I9��N�H�E�H�U�H)�H����H��x���H�XH��(H���@�L�`�H�x�H�p�H�E�IcFA9FtL��L����H�]�H�H���H�{���H�]�H�CI9���IcFH��A9F�KH�I9��H�E�A�$H�=�H9I��H�����H�]�H�CI9���Mc~H��E9~��J�>I9���H�E�����H�]�H�CI9��xH�E��|���H�]�H�CI9���H�E��^���H�]�H�CI9�����������A����A�FH��A9F��H�H�5�G9I��!H�H�E�A�D$�H�����H�]�H�CI9���H�E������Ic4$A�L$H�]���Hc�H�I9���H�E�����A�$H�]��IH�H�I9���H�E�����H�]�H�CI9��7���������A���.���H�E��R���H�]�L��L��H�������!H�}�H�GI9���E�<$A�FA9F��H�H�4I9���I��H�u�L��A�V L����0����]%Ic�H�5�F9L�L�`��$���A�$H�]��	H�H�I9���H�E�����H�E�H�PI9��E�A8$�A
H�HH�M��XA8\$��#H�E��a���H�E�H�PI9��'�A8$��H�HH�M��XA8\$�?#H�E�����H�]�H�CI9��	�;A8<$��H�SH�U��sA8t$��"H�E������Ic$H�]�H��H�I9��]H�E�����M�|$Mc$$M�M9��.�H�]�H�CI9���L�]�L��L�M�L�����L�����M��I��I��L��H��M��L��H������� ���A�U8H�M�I9�rM��~0�u�A87u@��I�TH���
D�0A87u&I��H��I9�u�L9�����O+H�AI��I9�s�L��M��I��H�E�������H�E�H�PI9����A8$��H�HH�M��XA8\$��H�E������H�E�H�PI9����A8$�VH�HH�M��XA8\$��H�E��d����H�E�H�PI9����A8$�H�HH�M��XA8\$�"!H�E��"����H�E�H�PI9����A8$��
H�XH�]��@A8D$��!H�E�������H�]�H�CI9�r/L�M�L�]�M��L��L��L�����L�ދ� ���A�V8L;m���H�E������H�]�H�CI9��f�;A8<$�
H�E��l����A�$E�D$L��L��H�U�H��H���M�|$������#�I��H���~H�E�H�U�H)�H����H�XL��H��(L��Hc����H��x����@�H��H���L�H�X�H�P�H�U�L�e�H�P�L��H�E���H������H�E�H9�P���t*H�u�H��X���H���������H)�H�H��H��H��H�CH��(���H����������L;m��3�H��X���L��x���I��H��H�����H�E�H������H�E�H����@H�}�E�^L�`H��(�@�H�x�Ic�L�P�L�x�H�E�E9^tL��L�����H�}�Hc�H�I9��D��`���E1�H��L��H��H���L���������kL�U�M�L�]�M9��_H�E�H�U�H)�H���a���L�����L��X���L�����H��P���H��@���H������H����S������%H�E�L�����������L�}�L9�H�����A�NM9�����L��L��L��A�V L��������A�~����$�����L��L��H��A�V L������������9�����H�E������H�}�H9�H�����M�~XI�F L��L��I9��2
��L����A��L��L��H�߉����M�~XA�V L����A��9��������H�E��B����H�}�H9�H�����M�~XI�F L��L��I9���	��L����A��L��L��H�߉����M�~XA�V L����A��9��������H�E�������L�}�L9�H�����A�NM9��	���~L��L��L��A�V L�������A�~����"�����L��L��H��A�V L�����P������9�����H�E��A��I9�w���6H�M�H)�H���
H��x���Ic�H����H�x�H�HH�XH�p IcFH�U�A9F��H�������H�BH���l��
��fDH�p�HcP�H��h���H�4�H��p���H�P�Hc@�H��H�����f.�=�}�A9w�s���������c����$�D9H�����6����
�f�H�E�H�U�H)�H���2H��x����H��(L�x�H�x�H�X�H�p�H�E���f����u��L��X���H��P���M��H��@���H�����H������������H�E�H�}��6��9�����e�H�E��������
�������ZE�����E�D$I�|$D9�t@L9����D�H��D9�u�L�R��f�H�PH���l�����H�BH���l����H�BH���l����H��X���H��P���H��@���H�����H�����L�HI���������H�E�H�}����H��X���H��P���L���H��@���H�����H������L�HI���p������ZH�E�L����Z�L9Z��H�U�H)�H���6�PD�x�N�H�U��.��L�xH�E�H)�H�����	H��(H�u���H���������I��L+e�I��L��H��H���+��H���������I��L+e�I��L��H��H����H�U��������!�A�H�=d;9M�g�$�H�E�M��L�����H�E��f�H��A�FA9FtL��L��H���5
�H�H�H;E�rڋ������D)��H�I�D9����������H��X���H��P���H�u�H�}�H��@���L�HI���������
H�u��[�A�D$H��:9I��H��H��������H�<�#�H�U�H���H�H�rH�u�:
�NH��H)�H����H��A�FA9FtL��L��H���\	�H�H�H;E�r����L�z����H)�H���������H��H��I�H�E�H)�H�����H��X���H��P���H�u�H�}�H��@���L�HI����������H�}��F�H���-�H��(M��L�b�H�U��:���H��p���H�<�����H��h���H�<��������H�����H9E�����HDž0�������H�E����L��L��H���b�H�U��e�H�}�L��L���J��X�H�E�A�D$H�5$99I��H���H�E��I��H�E��@��H�E��7��H�E��.��H�E��%��H�E����H�E����D��`���E1�L��L��H��H�����������L}�A�$H�5�89I��H���L��L��H����H�u�Lc�J�>I9����L��L��H���{�H�U�H�H�I9�����L��L���Y�H�}�H�H�4I9��m��YL��L��L�������/�H�U�L������H�H�����H�E�H��H)�H�����H��H��(L�z�L�Z�H)�H�U�H���ZH�u�H�����I���H��x���L�bH��(H�H�r�H�J�H�z�H)�H�U�H���M�H��(H�U�H�����H�=t79L�`��$Dž���A�4$@8u�����L�����I�DI��I��I9��N��A�9A8<$t���H�E��S��H��X���H��P���H�u�H�}�H��@���L�HI���"������
H�E���H�E����H�E����H�E����L9���I9���Ic�M��H����� ���A��������H��ƒ��
��H��������0��	�����_���H�E�������L��L��H��A�V L�����d�������H�E�M���X��H���L����A�ׅ�����H�E��5��H���L����A�ׅ�����H�E��������L��L��H��A�V L�����������������H�E�M������H�E�����H�E�����A���������r��у����r�������0��	����_��	����H�E��t��A��������H��ƒ����H�������0��	����_��	���H�E��*��H�E��!��H��X���H��P���H�u�H�}�H��@���D������L�HI��L������������H�E�H�}�L�����D������H�P(���H�E��������HDž(���H�D$H���H�H�����H��H�M�H�E�H��P��������tnH�u�H��PH��h���L��p�����������tH��(�
H�Є�����u�H�JHcBH��H�J HcBI���́��H�ȋP�H�H؄�t�H�M�H��M���o��A��������<=r<>����DH��<����H�E�H9�P���t*H�u�H��X���H���������H)�H�H��H��H��H�CHDž0�������L)�H�8����L��L��H���8���E�<$A�FI��A9FtH�}�L��L����H�}�H�H�4I9���H��I9��nH�E��
��L��L��H������� 
I�� ��L��L��H������ I�� �v���H��X����@�P��H�E����H��X����@�6��H�E����H��X����@�P��H�E����H��X����@���H�E��e��I����@H��H�]�8C�����A�$I��)څ��H�5�19H���$�I�T$��~kA�D$8��H�CH�E�A�D$8C�e��H�CI�tL�(@�8�H�HH��H�M��X�8Z�]H��H��H�E�H9�u��H�5r19H��L�b�$�I�T$����A�D$8�PH�CH�E�A�D$8C�KH�CH�E�A�D$8C�+��H�CH�LII��AD�0@82��H�HH�M��p@8r��H�HH��H�M��p�@8r��H��H��H�E�I9�u��H�5�09H��L�b�$�I�T$����A�D$8�z��H�CI�L	�fDH���X�8�%H��H��H�E�H9�u��H)�H�5K09L�a�$ƋZE������E�D$I�|$A9�t�I9�����D�H��D9�u�M������H�]�H�RM��L��I)�H)�I9����A�$H�]����SL9�s<H�sH�J�H�u�8����H�S�H���q�H�U�H��@:r�����I9�u�H�E�H�E��f�H��A�FA9FtL��L��H���u��H�H�H;E�r�C�?H�=O/9H�I�DL�`��$�H�E��m��H�E��d��H�E��[��H�E��R��H�E��I��H�E��@��H�E��7��H�E��.��H�E��%��H�E����H�E����H�E��
��H�E����H�E����H�E�����H�E�H�U�H)�H�����H��(L�`�H�E���H�E����I�D$H�M�E�<$H�����H�E�H)�H���pIc�H�PH��(I��H��x���H�����@�H�H�H�p�H�5,.9H�X�H�E�A�D$�H���H�E��G��H�E��>��H�E��5��H�E��,��H�E��#��I��H�E����I��A�D$H��-9I��H��H������H�E�����H�E�����H��X����@�g��H�E�����I��H�E����H��H���I9��B��L��L��M�~XA�V L����A�ׅ����H�E����L��H�u�A�V L������Ic�L��/�H�=-9L�b�$�H��X���H��P���H�u�H�}�H��@���L�����L�HI���������
H�U�H;�P���t*H�u�H��X���H���������H)�H�H��H��H��H�SH��(���H��t��x��������x���H�H��0����<��Hc����I��e��H��H���H��I9��XL��L��H��H���M�~XA�V L����A�ׅ��/��H�E��^��L;�H������A�~��L��L��L��A�V L�����"�����������H�E����H��H���H��I9��QA�~��L��L��L��A�V L����������e��H�E�����H�E����H�E����H�E����H�E����A����������r��у���H�}�I9��<���������H��ƒ���H�E��O��H�E��F��L�����L��X���H�E�H�u�H��P���H��@���H��L����M�HH������L�����H�����������H�E�H�M�I��H���������L��L����H��H+U�H)�H��H��H�����H��H������L�����L��X���L����H��P���H��@���L����H������H����a������HH�E�L����L�����y��L��X���H�E�L�U�H��P���H��@���H��L��D����M�HH������L�����L������A�ą���H�E�H�M�H���������D����L���H��H+U�H)�H��I��H��H�����H��L�$�H������L�����L��X���L��D���H��P���H��@���H�������k������RH�E�D������H��X���H��P���H�u�H�}�H��@���L�HI���*���A�Dž���H�E����H��X���H��P���H�u�H�}�H��@���D�����L�HI�����������H�}�H�M�D��������H��X���H��P���H�u�H�}�H��@���L�HI��衭���������H�E�����H��X���H��P���H�u�H�}�H��@���L�HI���g������Q���H�E��c��H�E��U��H��X���H��P���H�u�H�}�H��@���L�HI���$���A�ą��H�u���H��X���H��P���H�u�H�}�H��@���L�HI�����A�Dž��@
H�E����H��X���H��P���H�u�H�}�H��@���L�HI��説��A�Dž��
H�E����H��X���H��P���H�u�H�}�H��@���L�HI���m������W���H�E����H��X���H��P���H�u�H�}�H��@���L�HI���3���������H�E����H��X���H��P���H�u�H�}�H��@���L�HI����������H�E����H��X���H��P���H�u�H�}�H��@���L�HI��迫���������H�E��H��H�U��
����@��@��A����
IcD$ H��H�=Q&9H�U�I�D$L�`��$�H��$�H9�tH��H��$�H9�u�H��	H��$	H�D$H���H��P���H�E�HH�E�H�����H�H��(���魾��H��X���H��P���H�u�H�}�H��@���L�HI���ߪ��������H�E���H�U��
����@��@��A����	IcD$ H��H�5q%9H�U�I�D$L�`��$�H�E����H�E����H�E��{���H�E��r���L�]��� ���M��Lc�L��L��������uH�E��J���H��A�FA9FtL��L��H�����H�H�H;E�r��>��H�E�����H�HH�M��XA8\$��H�HH�M��XA8\$��	H�E��߿��H�HH�M��XA8\$�UH�XH�]��@A8D$�OH�E�騿��Ic�L�m�L��:���A����s�A��p��ƒ�v�p���v��0��	����_��	������z��փ�����z����x���0��	��@��_��	����^�A����t�A��p��ƒ�v�p���v��0��	����_��	������z��փ�����z����y���0��	��@��_��	����_�H��X���H��P���H�u�H�}�H��@���L�HI��耨��A�Dž���H�U�H�E��e�H��X���H��P���H�u�H�}�H��@���L������L�HI���8������"���H�U�H�E�L���������H�E�A�D$H�5�"9I��H���H�XH�]��@A8D$�[H�E����H�XH�]��pA8t$�)H�HH�M��@A8D$�YH�E�鲽��H�HH�M��XA8\$��H�HH�M��XA8\$�H�E��{���H��X���H��P���H�u�H�}�H��@���L�HI���J���A�ą��6H�U��v�H�U�A�D$H�5�!9I��H���H9��<�H�����L�U�A�H��8�����H��(H9��P�:u�L�B I����4���~,�JA����A��A����AN�@��t	K��M�D�H�JH��M9D�����M9ؿ����DE��H�E�郼��H�E��z���H9����H�}�A�H�����H��(H9��k��:u�L�B I������H��8����J�,A����A��A����AN�@��tH�����K��L�D�H�JH�����H��L9D����M9ؿ����DE��|���H�����H��X���H��P���H�u�H�}�H��@���L�����L�HI��蛥��A�Dž���H�U�L�������H��X���H��P���H�u�H�}�H��@���L�HI���W������A�H�u�L�E��i��H��X���H��P���H�u�H�}�H��@���L�����L�HI������A�ą���H�U�L��������H�U�H�u�L������u���H�E�����r����U��0��	����_��	����H)�H�L���H�E�驺��H�E�頺��H�E�闺��H�U�A�D$H�5N9I��H���H�E��s���H�E��j���M���b���H�U�A�D$H�59I��H���A������H��H�����H��ƒ���H�������0��	����_��	�����H�E����H��X���H��P���H�u�H�}�H��@���L�����L�HI��跣��A�Dž��H�E�L��������H��X���H��P���H�u�H�}�H��@���L�HI���s���A�ą��_H�E���H�E��^���H�E��U���Ic$H�E�I�T���H�E��9���H�E��0���H�E��'���H��X���H��P���H�u�H�}�H��@���L�HI����������H�E�H�U��R�H��X���H��P���H�u�H�}�H��@���L�HI��踢�������H�E����H�E�馸��H��H���H;u��]���������H��ƒ���H�E��p���H�BH���l���H�E��U���H�E��L���H�E��C���A����@�H��H�����H��ƒ�������H����������0��	�������_������&��A����h����DM�~ IcFA9FtL��L��H�����H�H�<L��L��A�׃�
�q��H�E�雷��H�����A������酷��A��������H��ƒ�������H��������0��	�����_�ٻ������A����;������DH�E�����H�E�����A��������H��ƒ����H�������0��	����_��	����H�E��Ķ��H�U�H;�P������H�}�H��X���H���������H)�H�H��H��H��H�S��H�U�M��鏶��H�XH�]��pA8t$�(H�E��X���A������A�FA9FtL��L��L�����H�I�M9������H�E�����I��1�����H�XH�]��@A8D$��H�E���HcP�H�p�H��h���H�4�H��p���H�P�Hc@�H��H�����A����E��H����_H�E�餵��H�U�H;�P���t*H�E�H��X���H)�H�H��H���������H��H��H�SH��(���H��tH���q��Ic�H��0����Ҷ��H�E��A���H����H�HH�M��@A8D$�IH�E�����L����H�U�H;�P���t*H�E�H��X���H)�H�H��H���������H��H��H�SH��(���H��tH������Ic�H��0����?���L��L��M��I���4����H���wH�E�镴��H�E�錴��H�E�郴����0��	v	��_�:���H�E��i���H�U�A�D$H�5 9I��H����0��	v	��_����H�E��4���H�E��+���H�E��"���H�E�����H�U�H;�P����)�H�u�H��X���H)�H�H��H���������H��H��H�S��H�U�A�D$H�5�9I��H������H��8����� ���H�M�M��H�xH�d��������H�E�鋳�����G��~1L�G�p�H�1�H������
�H��I��H�HH��H9�u����AV��AUATUH��SD�'��wM�E��tkA9�|E1�[D��]A\A]A^���Lc�H�I��L�����H��txH�EH�}L�����H��tcE1�H�E�]D��[]A\A]A^��Lc�I��L���q��I��H�EH��t L���]��H�EH��t7�]D��[]A\A]A^�A������W���H�}A������{��H�}�r���:���L��A������_���'���f.�����xNAUA��ATA��UH��SHc�H��9~&H�EIc�Ic�H��H�EH��1�H��[]A\A]��s�p���y������@��H�H�GH�G�@��S��q��H��H��tH���A��H��[�ff.����H��tWU��SH��H�����~"H�H��t�x��H�{H��t�j�����uH��[]�f�H��H��[]�B��f��ff.�@��H9�tgUH��SH��H���v����u>�{��~4L�SL�M�O�1�L�CH�u��H��I��I��I��H��H�PH9�u�}H��[]�f.��ff.�@���z�:�D���=j�:1����AVI��AUI��ATI��USH��H��PdH�%(H�D$H1�H�$D�L$L�D$H�L$ H�L$(H�D$0����M��t"�GL��L�ōp����tmHc�H��u1DI�~HL��H��L�����I��H��L��I��L��L��诫��H��H�<$H��t����H�T$HdH3%(H��uH��P[]A\A]A^�fDH���������f���AWI��AVM��AUM��ATI��UH��SH��H��H��$�H�D$dH�%(H��$�1�H��tV�OH�Ǎq����t:H�H��t=H��$�dH3%(��	H�Ĩ[]A\A]A^A_��H�|$����I9���M9����Cl��t	L9���L9�����$�L�t$pH�D$P�D$`H�D$L�|$xH�D$hHDŽ$�����M9���E1�M9���Kd���?H���H��HcKhL)�H����H����[L�H9�HB�H�$H9���H�D$8L�l$(L�|$PM��H�D$ H�D$HH�D$H�D$@H�D$�t$H��L��L��t$H��L�L$0L�D$�f���A[Z����H�D$8L9�vL�l$HI��M��L;t$@v
�^DI��M��L��H��L��H���q���H���tH��xW�C8��H�SH�B9BtH��L���E��H�M��I�H9T$@s�M��I��L9t$(�K���@�C8��H�����H�|$PH��t
H�$�<��H�$�C8 �����H�|$H�����H�$���H�$����fD���M9�sM9���M9��YM�o�
���M����$�L�t$pH�D$P�D$`H�D$L�|$xH�D$hHDŽ$�����D�CdE���TH�,$L9�vH�CHH��L��L��H���PhH�$H���H��HcShL)�H�����H9������H�t$HL�l$ L�|$PH�t$H�t$@H�t$I��t$L��H��t$H9�H��L�L$HF�L�D$0����^_�������H�D$HI9�LG��O�H�{HH��L��L���~��M��L��H��I��L��H��I��脧��H���tH���f����C8��M��L9t$@v�L;t$ �6���H����P���f.�H9�����H�D$HH��H��M��PL��H��H�D$HPL�L$�b���ZY�����H�D$PH�$�H�{HH��L��L������L�$L��H��I��L��H��I���˦��H���tH��������C8�M��M9�s����D�sh���z��$�E1�L�L$PH��H�D$PL�%'��D$`H�D$L��L��L��L�d$pH�D$hL�d$xHDŽ$������A���H�������H�������C8��1�f�H�|$PH������H�$�I��H�$����L�|$PM��L�<$�f�I��M��L��H��L��H���٥��H���tH��������C8� H�SH�B9BtH��L�����H�M��I�L9�r��u���L�$L��H��L��H��耥��H����V���H���^���L��L)�C8�=���DH��$��3���H��$�L)�����f�H�{HH��L��L�����KdI�Å������������M9���M9�����$�M�nL�t$pE1�H�D$P�D$`H�D$L�|$xH�D$hHDŽ$�����M9��`����<���DL��L)��u���DL�,$�z�������I��H��H�CpL)�H9�rKH�SxM9���L��L)�H9�vI)�M��L9���I�U�H��H��H)�H)�H��H9�LB�M9������H����������M�n�l����M9�r�M��M���K��������Ā�<����
���f.�H9������L�$I��L��H��jL��H��H�D$HPL�L$H�B���AYAZ���f����Cm@L�$�x���H�D$PM��H�$�f.�M��I��M9��1���L�$M��L��H��L��H���9���H���tH�������C8�����H�SH�B9BtH��L���	��H�L�Clu�M��H�{HI���2�M9�s�H�{H�G9GtH��H��L������H�{HH�M��I�D�C8E1�H��L��L�������t��E���L��H��L)�L)�H9��I)�M��H9�vL�CHH��H��L��H)�L��A�PhI��M9�������<������$�L�t$pH�D$P�D$`H�D$L�|$xH�D$hHDŽ$��������H�{HH��L��A�H�����H��I��H�CHL��L�$H��P���h���L�$H�{HH��L��A�L��L�L$�?��L�L$H��H��H�$t�C:tH�CHH��H��P L�L$��
tCM9������M9��
������H9��������H�{HH��L��L�����I��H�Cp����H�KHL�A HcA9At/H�<$H��H��L�L$ L�D$H�L$���L�L$ L�D$H�L$H�H�4$L�L$H��H�<H��A��L�L$��
LD$�U��������H���D$PAQM��I��覨�H��Ð��AWI��AVI��AUI��ATE1�UH��SH��H��D�D$L�L$�	I�H9�w|H��H��H��M��D$I��L��L��P�g��ZYH��xpH��L��H�L$PL��H�D$I���Ѕ�ucI�EH��L)�H�H9�u�H9�s!I�WH�B9BtH��H�����H�H�H9�v�H��L��[]A\A]A^A_�f�H���LE���fDLc���ff.���H�GH�����G8�����G`����H�GP�����G����1��f����o�oNO�oV W �o^0_0�of@g@�onPoP�ov`w`�o~ppH���H��������ff.���H�OL��H�?H�VI��I)�L)�I9�u=H9�v9�A�)�u-��@�A�4H��)�uL9�u��f����1��f.���H�H�w1�H9�s.fDHi��H���J�H�H9�u�H��H��H��fD�ff.�@��SH��H�H�NL�JL�B�V��~H�N H�>L�VI�L��Ѕ�u
[���C�[�fD��UH��SH��H��H�>���H�{ H��t�
��H�����H����H���[]�ff.�H��tSH��H�?H��t�ʹ�H��[���ff.�@AW��AVAUATUSH��(L�7�L$)�H�|$H�t$�L$I9��|��M��E1�A���\f��Cй���D��H)�H��H��H9��:A��L�����A�WX������0A�H9l$��A��A�����I��A�E�D$A�G����L��H�t$L��A�W ��A�GA9GtH�t$L��L�����H�L�����I�,A�WX����L�����A�WX���4���L���
��A�WX�KɍS�����HD�����L���߾
A�WX�SɃ�W��E�A�H9l$�2���D�l$�L$9L$NH�D$H�(D��H��([]A\A]A^A_�A��;����L����H��(�����[]A\A]A^A_�L��E1�머�����DAWAVAUATUSH��H�H�|$H�4$H9���I��D�b�1��f�L��H�4$H��A�V A��A�FA9FtH�4$L��H���V��H�L��D��L�<A�VXA��7wK��tGA�Eй�����H)�I��H��H��H9�rZA�,�L9<$v@A��A���t6L��A�F���v���D�+녉�H�|$H�H��[]A\A]A^A_����L����f�H�������[]A\A]A^A_�1���USH��H���H��$@H��$HL��$PL��$X��t@)�$`)�$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H��$(1�H�l$ H�SH�K(H��$L�C0I��H��H�D$H��$0H����D$�D$0H�D$ H�D$P���H���XZH�������H��H�z�1��_��H��$(dH3%(u
H���[]����ff.�f�H�I69H9:l9tH�G�@% = t�@H��1�H�5<�����AWAVAUATUH��SH��(H�?L�rdH�%(H�D$1�H�|$H9��RA�FI��H��I�̃���L��A�V H�|$A��A�FD�l$A9FtL��L�����H�|$D�l$H�H�H�CH�|$A��MtEA��c�#A��C�A�����A�U�����H�
��Hc�H�>���@�NL9���IcV���XL��L��A�V IcVH�|$�D$A9VtL��L�����H�|$HcЋD$H�H�|$��-�iL9��VIcV���L��L��A�V IcVH�|$�D$A9VtL��L�����H�|$HcЋD$H�H�SH�|$9B��D��A�̀@H�}1�E�,$H�L$dH3%(��H��([]A\A]A^A_�D�/�~�����@�>L9���A�~�ZL��L��A�V �D$A�FA9FtH�|$L��L�����Hc�H|$�|$-H�|$��I9��CIcV����L��L��A�V IcVH�|$�D$A9VtL��L�����H�|$HcЋD$H�H�|$��?��H�S9B�b%�A�����D���y��������H�139H9"i9������?��H�����tD��H�5��H��1����H�|$������G�������k���뙐A��]���D����������������@ �DE�����fDA�����DA����DA����DA�����DA�
����DA�
���DA�	�����������H�L$H�|$H��L��������������D$H�|$�s���DH�L$H�|$H��L��������U����D$H�|$�1���D���߃�A���+����V���fD������ ���������������������������������ff.����~~&L�F 1�Hcȃ�I��Hc9�<��99F�1��fDu�HcF���F1�Ð�W�G��tF��t��u-1������D@����W��t1�������D��������f.���u�G��t4��������D���fD��u˃�������D��f���f.�H�i09H9Zf9t0SH���w��H�����tH�C�@t
����t[�D��
H��H�5a����1�[���ff.�AWAVAUATUSH��H�|$9�sI����D�yA���A	��D�eD9�tK�ۍCE��I��H�I�,�����u�����)�A��D��t�H�|$�������uA	�D�eD9�u�H��[]A\A]A^A_��AWAVAUATUH��SH��HH�>H�YdH�%(H�D$81�H�AH�|$0H�$H9���CI��I��I�̃���L��L�L$H��S H�|$0L�L$A�ƋC9CtL��H��L�L$���H�|$0L�L$H�D�uL�,H�EL�l$0�EA��]��A��-�fH�$D9p��A��[�v�A��&��H�$�@@�IM9��@L��L�$H��L��S L�$��&�SL�l$0�E�Uf�D�7�8�����E1�H�L$8dH3%(��	H��H[]A\A]A^A_�@�E�M�/����@
 ��M9��L	�C���	L��L�L$H��L��S L�t$0L�L$���CL��9Ct"L��H�ډL$L�L$���H�|$0�L$L�L$H��EL�,�AЉML�l$0��H��H�O�Hc�H�>��D�E��C������2���fDH�$��D$��+M9��"L��L�L$H��L��S L�L$��:�H�|$0�CH�|$I��H�}9CtL��H������L�l$0L�L$H�I�L�l$0M9���f�L��L�L$H��L��S LcsD9s��L�L$t#L��H��L��L�L$�D$�w��L$L�L$Lc�M�:��H��L��L�L$L��S ��]tMH�4$L�L$;FtM9�v:M��끐M9�v/�C9CtL��H��L��L�L$���L�L$H�M�,M9��L���H�D$H�D$0f�H�$�@@t&�EL�l$0�����A�MM���
���H�5�{	L���A���L�l$0�E���M9��=���L��L�L$H��L��S L�L$��{H�$���� ����1�H�|$0I�عL��������H�T$0��E�EI9�I��D��E������E�H�E����H�$�@�����H��EH�E�����H��EH�E����H�$���J���H�|$0H�ٺL��L�t$0���=���L�l$0��E�EM9�D‰E��T���M9���H�$�@@���H�|$0I�عL�κ���������H�T$0��E�EI9�I��D��E�����E�H�E	�����E�H�E���H��EH�E����H�	�EH�E��v���M9������L$H��L��L��L�L$�S �L$��{�D$,�oH�$�@�a�C9CL�L$t"H�|$0L��H�ډL$L�L$���L$L�L$H�HD$0�EI��H�D$01���P���E�M9�����H�4$�F�����{�QL��L�$H��L��S L�$H�|$0�D$,�CI��9CtH��L�����H�|$0H�Hǃ|$,^H�|$0����1��}I�����E�E�_���M9������L��L�L$H��L��S L�L$��{����H�$�8�����C9CtH�|$0L��H��L�$���L�$H�|$0H�ٺL��H�L�$HD$0�;�A�ą��tH�|$0L�$L9�s1L��L�$H��S H�ھ�D$,��SXL�$��t�|$,7�?HcC9CtL��H��L��L�$���L�$H�H�|$0L�H9�����L9�����L��L�$H��S L�$��}����C9CtH�|$0H��L���4��H�HD$0�EI���E�D�e�
���fDH�$�@������E�H�E����H�L$,H�|$0L��L��L�t$0���������D$,9E�O����EL�l$0��E���M9�vGL��L�L$H��L���S L�L$��]u,�C9CtH��L��L���c���EL�l$0��I����C9CtL��H��L��L�L$�2��L�L$H�I�M9��o�������f.�H�|$0�C9CtH��L����H�|$0H��EL�,�����1���H�5��L���)�L�l$0�E����@�;����C9CtH�|$0L��H��L�$��L�$1�L��H�|$0I�عH�L�$HD$0��L�$��A����H�|$0L9�s*L��L�$H��S H�ھ�D$,��SXL�$����HcC9CtL��H��L��L�$���L�$H�H�|$0L�H9������L9������L��L�$H��S L�$��}�y����C9CtH�|$0H��L��迿�H�HD$0�EI���E�D�e���������X�����8����I����-����?���A�E����o����+����,����!����H���8�2��H��t�H���f�UH���8SH��H���
��H��t�H�hH�XH��[]�H���8���H��t/H�H�@H�@H�@H�@ H�@(H���f�S���8蓕�H��t.H������XH��@H�PH�@�@4[�ff.�ATA���8U��S���;��H��t@H�H�@D�`�hH�@H�@ H�@(�@0��t�@@[]A\ÐATI��UH���S�ܔ�H�EH��tFA�t$H��H���C��Ņ�u
A�T$�SH��u��[]A\�f�H�;I�4$����[]A\ý������fDAWI��A��AVA��AUATUSH��H��(9�wA��A��L�+M����I�E1�E�W��L�`��E����9�s2�4;��L6E;�v�"D�3��|	E9����9�r�s��A���t@�׉�E�^9�s4D�T=A��C�E9�w���B�L��<	E9���A��D9�r��)�<�<$��'�������<M��I��A�:E��tKE�CG��E9�r>A9�sE9�w4L��L�T$�t$�L$�T$���L�T$I�E�t$�L$A�:�T$A9�DG��|-�A�<�A9�DB����A�u���Z�j9�v9A��f�E�D9�w�A9�t'D��H�ljT$�4��H����I�E�T$D��E�eD�bA9�v#�A9�w�A�uH�����H����I�EHc�D�<(E;e��A�uI�E9�v"�9�w�A�uH�����H���uI�EMc�F�4 A;]��A�uI�E��w#���v�A�uH���}��H���4I�E�$�1�A�}wA�EH��([]A\A]A^A_É���Y�����D��A���iD�����DE�e�8����A�]�g����D������D��D��A�u9��n���)�D�$�C�,9�v5f��9�r�A�uH��D�D$D�T$���H���[D�D$D�T$I�EIc�Ic�Ic�H�H��ɵ�A;mv[I�EA�uA�m���D�$�D��A�|$E�SA���`���A�UHc�D�\$H�)�Ic�H��t��D�\$E)�E)eI�E�����D�D$L�$襐�L�$D�D$H��H��H����H��D�D$L�$����e����UH�EL�$D�D$��w9f.�҃�v��U��H��L�L$D�$���H��t>L�L$D�$H�E��}w�EL�+1�1�I�EL�`E���I����������������3�������ff.��9�vH�F�@%@���$5���+���ff.�AWH��M��AVI��AUATU��SH��H��L�d$`L�l$XA�$��t9������wA�$�D$PE��+A�E1�H��[]A\A]A^A_�fD��|$PA9}��9������A��H�pH�$DB�H�|$hD�L$D��D�\$���H�$���H�t$hA�H�x(������x�M��D�L$�jD�\$�I�vD�$H�|$hD�����H�t$hE1�I�~(������D�$���-�4����A�U�����A��ҍrA��I�A��A����Hc΋|�B�D���D)�����(Hc�	׉|�M����������P��I�����0�����Hc�)���A	D����D��������H�t$hH�(D�$A���������v���M��D�$�Z����H�t$hE1�I�~(������D�$���9����C�����������������9�s$H�D$hH�@�@
@��A�$��@H�|$hH�pD�$�&�M��D�$tԋH�|$hI�v����D�$�DH�|$hD�L$H�$�}��H�$D�L$�ҍrA��I�A��A����Hc΋|�B�D���D)�������H�t$hH�x(A�D�$�������S���M��D�$����5����5����7����p����-���f.�AWAVAUATI��UH��SH��H�1҃����H��tuL�.E�uI��E��~eE�1��fDA���tz��A�WA9�tF�CH�E�|�Hc�A�L���9�r�A�L��H���l�����t�H��[]A\A]A^A_�f�H��L��H��A�[�����]A\A]A^A_�,���@H��1�[]A\A]A^A_��AWAVAUI��ATI�ԉ�UL��SH��8A��D$���H����D�D$ 1�A��D$$HcD$ L�t�A;��9�w�@	σ��xA;so9����ۍCA��D��I�A��A����B�H���I�D�D)ыx���t�L��T$��H�D$�t$�F�H�D$�L$�T$�x	ωxA;r��t$ �F��H��t$ �\���9t$$�C���9��.E1�I�](�%�A��A��Mc�B�T���D9|$�"G�4?A�FH��L�9�vЃ�A�L��H�������t���L$��A�������H��Hc�H�H�t�L�D�H�t$(D�>�s�t$$E;8��A9�r%�f�	�A���xA�A9���D9���E��A�GE��D��AI�A��A����C�H���I�D�D)ًx���t�L��T$ L�D$H�D$�t$���H�D$�T$ L�D$�L$�x�v����D$�������f.��������1�H��8[]A\A]A^A_��\$$9\$�������H�D$(9sI�}(A�L���e��u��\$$9\$~��D$M�u(�\D�lfDHc�A�L��L���L��C�H��T�����u�����A9�u��f���f.�H��8I�}(L����[A�]A\A]A^A_���1ۅ�t�A��DA	���D�x9����ۍC��E��I�������3H���I�D�)�xA��D��t�L��T$H�D$�u�H�D$�T$�x��AVAUATUL��SH��L�d$0H	�I�uAD	�u1�[]A\A]A^Ð1҃[L����H�����]��A\A�A]A^��fDH��H����H������u_H�D�+H��E��ubH��H���]��u�E��t�E1��C�6A�L��H��P��������`���A��E9�u��P���@H�D�+H��E��u�H��L��H��H���u����D��H��A�Љ�DE��������u[H��]A\A]A^����[L��H��]A\A]A^�*���f.�I�H���H����AWAVAUATUSH��8L�/H�L�L$A�}D�0L�D$I��H�D$ L�x�|$���������D$E1�D�E��t{D�t$ E��f�C�6�L$H��A����E�$�����1��fD9�w�UD9�w+��A9���Hc�A�L��CH�A�l�9�w�A9��!A��D;t$ u�1�H��8[]A\A]A^A_�D����1��DH��t��t�H��L���{����b�D$�D$��t�L�l$(L�d$�D$H�|$(�H��D�,����,�E��toH�D$ �P�H9�r`L��1�A��H���@�H�ЋT����L�A9�r6D9�r)D9�H�|$A�L��AG�A9�AC��L��� �����D9�u�I��D$�D$;D$�`������H��L����fD��A9�v89������H�t$H�|$A�D�T$���D�T$���u������@A���g����A9������H�t$H�|$D��D�T$A���D�T$���\���H��8[]A\A]A^A_�L��M��I��D��D�t$�D$���@AWL�GL�^AVAUATI��USH��H��h�oD�NdH�%(H�D$X1�L�jL�w(H�$D��A��H�V(L�ǃ�A��tH�|$f�D�|A��D�<H��H�� u��t$1�L�\$0�D�|A��E�<H��H�� u�1�A�4!4H��H�� u�1�L9�t��4�tH��H�� u�E����L��H�s(��H��H9�u�A�}��A!�A��tpH��H��L��1�ATE1�L��L�L$����H�|$A��XZE��uH�{(L�����H�T$XdH3%(D����H��h[]A\A]A^A_�f.�A�}t)M��I��D��L������A�Dž�u��uH�<$�fDE1��A�}H�4$H�T$L��H�D$���H�<$A���~��H�|$H�<$�O����;��ff.�AWL�^AVAUATI��USH��H��H��h�o�D�NH��dH�%(H�D$X1�L�jL�s(H�$E��A��H�V(A��A��tH�L$�D�|A��D�<H��H�� u�E��t#1�L�\$0fDD�|A��E�<H��H�� u�1�A�4	4H��H�� u�1�H9�t��4�tH��H�� u�E��tzH��H�K(�H��H9�u�A�}��A!�A��tXL��M��I��1�1��O���H�<$A��E��uH�{(L���7��H�T$XdH3%(D����H��h[]A\A]A^A_ÐA�}t9H��H��L��D��ATL��L�L$���A��XZE��u��uH�<$��E1��A�}H�4$H�T$L��H�D$���H�<$A�����H�|$H�<$�H����[��ff.�AWAVAUA��ATI��U��S��H��I�X�L$H�T$(H�t$$L�$dH�%(H��$�1�H��S`�������t)H��$�dH3%(��H�Ĩ[]A\A]A^A_Ã|$E�A��A�������H��^o�A�E����E1�A��D	�A�EA��A����H�ډ�D���SX��u�D��D��H�M�,�D��A�u���t�H�<$�D$�q��A�u�D$���t$L�D$(�L$$���[H�\$0H�$D���D$4H�D$8H��H�D$@H�D$HH�D$PH�D$X���������E����H�4$H�l$`�D$dH�D$hH�D$pH�FH�D$xHDŽ$��xHDŽ$��
1�H�}(A���9���uH�$H��H������H��$�H��t
�D$�P���D$����H�|$XH���
����$�.���$���fDH�<$H�D$�"��H�D$�PA	�D�xA��A����H�ډ�D��SX��t�D��E��D��A��H�I���PD��t��@�������wE����E1���@	�A�EA��A��tlH��D���S(��~�H�ھD���SX��tE9��D��D����H�M�,���A�u���t�H�<$�D$�I��A�u�D$뗋T$��t�1����D$��t�{t�1҃{H�4$I�|$(��A��������������H�$D��L��������@A�E����E1�A��fD	�BA��A���y���H�ډ�D��SX��tE9��D��D��H�I��D���r���t�H�<$H�T$�D$�a��H�T$�D$�r�H�<$H�T$�D$�A��H�T$�D$�r	�BA��E9����H�ډ�D��SX��t�D��D��H�I��D���r���t�뤽�A	�D�xA��E9������H�ھD��SX��t�D��A��D��A��H�I���PD��t�H�<$H�D$���H�D$�P�H�<$H�t$h�1��������H�$H��L���������H�4$H�{(E1���������M���������������f�ATUS�G\�X�����H����~m�Gd9�fH���H��tgD�$Ic�H��迶�H�����u\�^A9�~+A�L$�Hc�)�H��H�H�L�DH�H��H9�u�H���D�ed�]\��[]A\����z�H��t;�oEh�oMxA��o���o��HP X0�u����.���묻��������H�=�=9�@���ff.����v=9�D�����D�1��=Z=9�f���SH��H)�H��[�fDH�����[�f.���H��H�=R�8�
��ff.�f���H��(dH�%(H�D$1�H�4$H��H�T$H���4��H�L$dH3%(uH��(����f.���AVI��AUI��ATI��UH���SH���x�L��H��L�0H��H��L�h�rs��uH��[]A\A]A^ÐH�߉D$�ą�D$H��[]A\A]A^���SH��H�XH��t1�H�5f���A��H�{XH��t�q�H�CX1�[����H��8H�OXdH�%(H�D$(1��D$H��t-H�GHH�4$H�5���H�|$H��H�T$H��H�D$ �·�D$H�L$(dH3%(uH��8������H�XH��t#H��H��H�55��萇�1�H���f�1��ff.�f���H�WX1�H��t�B�ff.�f���US�'���H��H�XdH�%(H�D$1�H�$H��t(H��H���Un�H�$H��t�X��t=��t(H�@ H�EH�L$dH3%(��u(H��[]��H��H�E��fDH�E����f���SH��H��dH�%(H�D$1�H���,���xEtcL�$��tU�P�Lc�H��t+Lc�H�{K���Hc1H�<��H��u��H�����u�C��H�\$dH3%(uH��[�DA���������W�����1��G8�t�SH��藀�¸��~H�SP�B�t	�C8����[����H����ATUH�-՗SH���;	w�HcD�H�>��H�{(H��t���H��[]A\�ւ�fDH�{H��t���j�H��[]A\鶂�fDH�{H��u���D�C��t�H�{H��t�H�C H9�u�DH�{(H��t��r���H�{�gj�L�cH���[��L��M���J���[]A\��f����������SH��H��1��>��H��tH��u�f�H��H�SH��u�H�C[�ff.���UH���8SH��H���t�H��t�	H�hH�XH��[]�ff.��H�:��AWAVAUATUS1�H���@�ÍCHc�L�$�M��u����Hc�I��I��A��H�,��+D�����S�I�H��t2H�E��M�'H�����tzH�}L��E��t��I��S�I�H��u�HcÉ�H��H��I�lI�D�H)�H�ÐH�}H����h�H�EH9�u�L����h�H�������[]A\A]A^A_�f.�H��1�[]A\A]A^A_��1��DUH��SH��8�ydH�%(H�D$(1�H�T$H��H�BH�$H�D$ H�AH�t$H�5�H�D$H���P@�Å�u:H�t$H��tH�}�W��H��t.H�E��H�\$(dH3%(u)H��8[]�DH�|$�h���H�|$������g����ޝ�ff.���S���8�r�H��t�������XH�@H�P[�ff.���������AW1�AVAUATUH��SH)�H��(H����L�GH�OI��I��HcGH��M��I)�N�d=��~yM�l$L9�}uH�C I�|$H9���L�L$H���H��H�����L�L$H��H����J�|=L��L����z�H�kL�1�D�kH�kH��([]A\A]A^A_�I���L��L��L���z�H�k1�L�H�kH��([]A\A]A^A_��Kq�L�L$H�����fDL�L$H�L$L�D$�$q�L�D$H�L$H��H��L�L$t-L��H��H��L�L$�Jz�L�L$J�|=L��L���5z��=���������D���fDATI��UH���8S�p�H��H��t,�H�@ L��H��H�@�H��H�CH�C��{��uH��[]A\�H��1���e���@UH��H����SH��H��dH�%(H�L$1�H�\$H��P0��xH�H��H��H��{�H�L$dH3%(uH��[]��S����UH�o SH��H���G��tH�H��t
H9�t�5}�H�kH�kH�CH��[]�ff.���ATI��UH��SH���c�L��H��H��[]A\�z����������AWE1�AVI��AUI��ATUS��H��(L�!L�y�T$H�iI�|$dH�%(H�D$1�M��t��A��ƒ>��8��x�|$��H����K_��u/E1�H�L$dH3%(D����H��([]A\A]A^A_�fD�M��A��uƋD$1��?H�\$�0�H�H��H���z���IA�O9L$�A��I�D$D��H��A�<�H��P0H�E��u�H�4H��蠯�H��H���$�H��f�H���D�D$�q^�D�D$��tH�E����E������I�D$A��x7���w/�о��E1�����H�	t������E�����@E1�H�}(��L������A���DN����fDL������]�A��A�Gt
��A��E��I�|$�`���I�] 1�H�����H�I�E H�H��t3H��I�E �O���fDH��D$�b�D�D$�6���f.�A������!����`����AWAVAUATUSH��L�'H�|$I9���I��I��1��wL��L��L��A�V ��A�FA9FtL��L��L���ٕ�H�L����M�<A�VX��tI�Cк���H)�H��H���������H���H��H9�rC�D��,CM9�vOM��A�F��u�A�$�@��H�L$L�!H��[]A\A]A^A_��H�������[]A\A]A^A_�@��M����1��DAWAVAUI��ATUSH��HH�?L�!H�T$dH�%(H�D$81�I�H�|$0�X��H9�r9���IA�H�L$8dH3%(D���cH��H[]A\A]A^A_�DH��I��M��L���uA�T$ �P؃�����|��I�H�|$0H��H�|$�9��A��=����L�L$0E1�M9M��L9��XA�D$���bD�T$ L��L��H��D�\$A�T$ L�L$0D�T$ ��D�\$A�D$L��A9D$t9L��L��H��D�T$,�L$(D�\$ L�L$���H�T$0D�T$,�L$(D�\$ L�L$H�L�L�D$0��,�mE����L�L$0E��A�L9���A�D$����D�T$L��L��H��D�\$A�T$ L�L$0D�T$��D�\$A�D$A9D$t/L��L��H��D�T$ �L$D�\$�>��L�L$0D�T$ �L$D�\$H�I�<I�H�|$0���9H�H9��A�D$���uD�T$L��H��D�\$A�T$ H�|$0D�T$��D�\$A�D$A9D$t,L��H��D�T$ �L$D�\$覒�H�|$0D�T$ �L$D�\$H�H�H�|$0��}��A���t	E9���H�D$�D�XD�xH�D$0I�E�m���I�H�|$H��D�T$(L�D$ D�\$���A��=����L�L$0L�D$ D�\$D�T$(M9�uZA�����E���U���������A���������DA�	�����I��@t�A�E1��`���f�E1������A��������DA�	�&���A�7����������A�6������蔓�@��H��I��� ��H��Hc������x`��x\H�H��H�@H�A�<�wl��H�P�Hc�H�>��f�H�I�pI�@H�����A�@H�F�FH���@H�FA�@I�@H�����I�@H�FH��H����\�fDH�I�pI�@H�����A�@H�F�F��I�p�f��oA�oNAH�oV AP H�F0I�@0�f.�H�FA�@I�@H�����I�@�S���DH�FA�@I�@H�I�@�+���D��H�W8H�O@�AWAVAUATUSH��H��HM�hL�6H�t$H�L$ L�D$L�L$(dH�%(H�L$81�A���(�|���4��<����{�}�E�L�t$0I9��$A�E����L��H��L��A�U A��A�EA9EtL��H��L��� ��H�I�A9���L��D��A�UX�D$����A��-�MDŽ$�L9��}�@L��H��L��A�U A��A�EA9EtL��H��L��討�H�M�<A9��	A��)���T$��tL��D��A�UX����D$L9���M��A�E��u�E�&�D��'�E��������$��rA�)���L9�wS��f�L��H��L��A�U A��A�EA9EtL��H��L�����H�L�A9���A��)��H9���I��A�E��u�E�>�D�>�C���fDE�>�c�����|$�LA9����D$��u|H�D$ E1�L�0H�D$L�8H�L$8dH3%(D���/H��H[]A\A]A^A_�I��H�D$H�|$L��D��H��}���H9�LF�����)���fDH�|$0L��L��言�H�L$(���������$���P���@I��A�)����D�D$�����$�A�)����p���L�t$0DŽ$������D$����D��L��M��A�UX��E�A����(���A�)�������M������A�*�������A�8�������F��fDATI��H��USH��H���p�H��H�=@�8H�,I�D$H��PP��x
H��[]A\�@H��H�ډ�L��D$���D$H��[]A\�ff.�@ATA��UH��H��SH���{�����xI��D��[H��1�]��A\�Q��[]A\�ff.�ATI��UH��SH��H���J��H�H��t;1�L��H��H�������uH��[]A\�DH�;�D$�TW�D$H��[]A\ø������ATA��UH��S����Å�uMA��+tUA��2t1������A��*t�������[]A\�fD��1��O��H��t&H�UH�PH�E��[]A\���������λ������ff.�f�AWAVAUATUSH��L�'L�jH�<$H�T$I9���H��M���P�L��H��L��A�U A��A�EA9EtL��H��L�����H�I�A��}t\A�G؃�v#A��{A��vH9�vdI��A�E��u�E�>�f�H�$�!���L� H�|$L��L����"��H����[]A\A]A^A_ÐL��L��L��A�UP��H�$��yL� �@H�$1�L� �DH��M��1��@AWAVAUATUH��SH��A���H�|$H�t$(��H�L$dH�%(H��$�1�;�#9H�H�A����H��L��L��H��M��L���x����D$8A�Ń��DE����A��uyH�D$L�s0L�kL� M9��HA�E����
L��L��L��A�U ��A�EA9EtL��L��L��$腈�$H�Iă�]u�H�5e�	H��A����E�W��H�T$H�H����H�$E1����H�D$�D$lH�H�D$xA���?H�D$t�D$XH�D$@H�D$0H�D$ L�t$A���4H�
-�D��Hc�H�>��D�uA�E1�H�CD��H��P(����1Ƀ���H�T$hSE��H�D$tPH��$�PQL�D$@D��H�t$(H�|$ ����H�� A�Ņ��E����D�mA���b����|$lL�t$���y
L�|$0M��t]H�,$H��L��H���3��A���3H�}(�o���M���dH�l$@H��L��H�����A���xI�~(I���<���L�<$H�$�t$8�B����
���BM��tA�N�B�D$����tgH�C�@
t]H�$H�x(�mH�C1��
H��PX��t9H�C�
H��P(��H�$���@	��H�$�H�H�D$xH�T$E1�H����f�H��$�dH3%(D���lH��[]A\A]A^A_�@L�t$A�����H�D$H�$H9t
H�$H�x(�*���M��t�H�D$(L90t�I�~(�����L�d$xI��M��H��H��$�H��$�L������A���H��$�L�t$�Q�H��$��Q��v���D�D$lE���:H�|$0�D$l�vL�4$H�|$0H��L���2��A����I�~(�n���L�t$M����H�|$@H��L�����A���gI�~(�<���H�$�D$X�@H�@H�@H�@H�@ H�@(H�D$�@H�@H�@H�@H�@ H�@(L�d$x��L�d$xL�sM9��L��L��L���O�����D$<D�+L�5�A�D�l$HM���
DE�EI�ML��L��L���ٔ���AI��H���I9�u�M9�vOA��	@M9�v>L��L��L��A�V ��:����]t#A�FA9FtL��L��L��蘃�H�I�A��u�H�5�8	H��E1�E1�����H�ED�uH�D$x���fD��UI�؋uH�<$�� �&��A�Ņ�����H�|$H��t)�u��t!��UI�؁� ���A�Ņ�����D$l����
��uo�D$p��tf�����T$hH�4$A��ҍB��I������Hcȋt��:D���)������H�<$	�H��t�H�t$H��t	T���D$lL�d$x�D$pH��L��L��H�����A�Ņ������L�t$�h���D�}�����H�CH��P(A�Ń�����x�1��ME1�H�T$hSE��H�D$tPH��$�PVL�D$@H�t$(H�|$ �:��H�� A�Ņ��n���L�t$����H�S�M�B��t�u�t$<���B1��fD�D$l�����������L�d$xH��L��H��L����A�Ņ�������t"��tH�C�@
��c	H�5x�H���ү��E1�A�-A��k���fDL�d$xH��L��L�����A�Ņ�����UH�<$1�I�؉���������A������H�|$H�������UD��I��1����A�Ņ����������L�t$A���������}^�:���D�UE���-���H�t$H��L��H������D$8A�����fD�[���H�T$(H�H����I������f�L��L��L��A�V ��^��L��L��L���K�������2���fD���w����T$hH�$A�H��H�x(�����A�Ņ������H�D$H���B����T$hH�x(E1�H�މ�����A�Ņ��"���H�D$L�t$H�$H;���������fD��a���fDH��$�H�<$H���d��A�Ņ�����H��$�H���`H�|$H���;��H��$�A���kK�H��$��^K�E����������H�T$hSE1�1�H�D$tPH��$�P��$�PL�D$@H�t$(H�|$ �*��H�� A�Ņ�������o���fDL�d$xH��L��H��L���*���A�Ņ��H������T������<����|$p���D$l����DH�t$x��$�H�t$P���xA�D�l$HL�d$xI��M���>fDH�S�����t$<A;u�4A�E��B��4�I��D9r�'H��L��L��L��D���l�����y�L�t$A��E�����A�$�*���fDH�|$t1H�D$H�D$@H�$H�D$0H��$�H�D$H��$�H�$���H�$H�D$0H��$�H�$f�H�$�D$XL�d$xH�D$�@H�@H�@H�@H�@ H�@(���f�A�FA9F�RH�I�M9��w���A�F����L��L��L��A�V A��A�FA;FtL��L��L����|�A��]�8���L�t$A���������DM��L��L��L��A�
D�l$HL�T$H���A�L��L��H�
oqH��I���S���u�L�T$H1ɋT$<I��A��`H�<$A�� A�rD�l$P���L$\���A�Ņ���H�|$L�T$HtA�r����t
�|$P u]IcFA9F��I�I�L�d$x���@H��$��H�H��$��H��V���f�L��L��L���{�����L$\�T$<I��H�|$�x��A�Ņ�t��E���0���A���u�������A�FA9FtL��L��L���X{�H�L��L��I�L����F���[����D$<�����H��萯���T$hH�4$�ҍB��I������Hcȋt��:D���)����C���@L�d$xH��L��H��L��D�u�N���A�Ņ��l�����tD�L$XE1�A�E�����H�5ΐH��E1�A��������H�5��H������1��W���A������I�L��D�l$HE��BD9��TD�BD9�tH��$�Ic�H��6z�A��D9��,E9���A���XH�CH��$�H�wH��P �A���N�A�����L��A��D�l$H�{���A��E1�L��D�l$H�h���H�T$hSE1�1�L��H�D$tPH��$�P��$�PH�|$ L��$�����H�� A�Ņ��A���H�D$PH�D$xA����D�l$<L�d$xM��E���H��L��L��H��迮��A��E9�u�D�l$<E1�����E�,$�<���L��L��L���y�H�I�IcFA9F����L��L��L����x�H���H�$��BM�����A�f��B�D$����E1�D��$�1��	�L�t$A����H�D$0�T$8�@��taH�T$0���BH�$���H�$L�t$H�D$0H�D$0H�\$H�$H;�����A���,�A������!�L�t$A������L�H�T$0��B���H��H�@H��(����~�H��H9�u���L�t$A�2�������L�t$A�������E��E1��u���H�x(A��
H�޺
�׾��A�Ņ��l����H�������G���y�DAWAVAUATI��USH��hM�xH�t$I�pH�T$(L�D$dH�%(H�L$X1�H�
H�t$ H�$H�L$PH�L$H��(����i��<����{�}�E�L9$$�A�G����H�<$L��L��A�W H�|$PA��A�GA9GtL��L����v�H�|$PH�H�H�D$PA9���L���D��A�WXH�l$PA�������D$8A��\$L��E1�D����H��L��L��A�W H�|$PA��A�GA9GtL��L���Nv�H�|$PH�H�D���H�|$P��)��D9t$��A��-����tD��L���A�WXH�|$P��t}�H��H��I9���A�G���d���D�uH���p������'�E������D$8A��-�
���H�l$HA��D$8�������fDA�)�����A�ً\$A����E���D9��A�FՃ���E1�H�L$PA��-A��G�l-�I9��A�G���D�L$H��L��L��A�W H�L$PD�L$A��A�GH��A9Gt1L��H��L��D�T$<D�L$0H�L$��t�H�T$PD�T$<D�L$0H�L$H�H�L$0�D��H�D�L$L��H�D$PA�WX����H�L$0D�L$L��L��H�L$PH�L$PH��D�L$0H�L$�!h�H�L$D�L$0���A��H�T$H�|$P�B0I9���A�G���HH�L$0L��L��D�L$A�W H�|$PH�L$0A��D�L$A�GA9Gt$L��L��H�L$0D�L$��s�H�|$PH�L$0D�L$H�H�H�|$PD9�u-E���H�D$H���@,��I��DA�)���H�$H�|$L��D����n�H�D$�@,H�\$XdH3%(D����H��h[]A\A]A^A_�@E����E���6H�|$HL��H����f����t��D$81�H�L$A����H�\$P�Q,���
yH�T$�R\�D����H�L$ �A t.H�t$9F\��H���L�vhHc�H��ID�H�<���H�t$��F(�F�FH�D$(E1�H�����fD�>�V���fDA��H�ŋ\$���f�H�<$D�7�\���H�D$A�8����@,���f��)���fDI��A�(����p���f�H�D$H�\$P�@,H�L$PH�D$H�4$H��H�xH�e�����H�L$ L�T$PD�YA�� t>H�l$�P�L��M�L��}\L�Ehf�Hc9�yH���H��ID�H�<�tdH��I9�u�H�T$��B(��t$A��uH�L$�AL�Q ���f.�H�T$�BA��B���f�A�0������DD������H�D$A�*����@,�w���f�D�/����H�$H�|$H��'���A�'����l��D�����r�A��p���I������ff.�AWAVI��AUI��ATUH��SH��HH�L�yH�4$L�adH�%(H�D$81�H�\$(H9���A�GA�A�FI�^����H��L��H��A�W H�\$(��A�GA9GtH��L��H��L$�o�H�\$(�L$H�H�H�\$(A9L$��A�NA�F��u.A�H�<$H�H�T$8dH3%(�H��H[]A\A]A^A_ÐA�$��t7A9L$�<A9L$�A9L$�~A9L$ ��A9L$$�
��	��s��H�5	iHc�H�>��E�\$A���P���H9���A�GI�^����D�\$L��H��H��A�W H�L$(D�\$A��A�GH��A9Gt1H��L��H��D�L$D�\$H�L$��n�H�\$(D�L$D�\$H�L$H�E�NH�A�A�A�FH�\$(��U�o	H�jHc�H�>����d��������A�����A�E�����A��z���DA�Eud�@H��L��H��A�W H�\$(��A�GA9GtH��L��H��L$�n�H�\$(�L$H�L��1���H�H�\$(A�WXH�\$(�������H9��w���A�G��u���fD�����A�����@H9��
L��H��H��A�W ��?�
A�D$��	H�\$(A�GH��A9G��H�H�H�|$(H9��9L��H��A�W ��#�"
A�GH�|$(��tL��H��A�W A�GH�|$(A9G��H�H�H�\$(H9��'A�G���:H��L��H��A�W H�\$(��A�GA9GtH��L��H��L$�l�H�\$(�L$H�H�H�\$(A9L$����)u��=���f����wA��������A��������wA���������A��l�������,A��Q���@H�$I�}(H98��A��4������@��A�����������A�����@����A�����������H9������A�G��tH��L��H��A�W A�GH�\$(A9GtH��L��H���dk�H�\$(H�H�H�\$(�P���A���t����1�A�EA�	����A�F�	�K���fDA���4����A�������A�EA�	���������A�F�	���f�A�
�
�����L��H���j�H�|$(�$���L��H���uj�H�|$(�]���H�����A�
I�FH9��rH��L��H��A�W H�\$(��?�H9��NL��H��H��A�W ��+��H�\$(A�I�F �0���H�A�
I�F뎐H�����A�
I�F�s���fDI�MH�|$(L��H��M�E�x��������H�\$(�B������,A����@H�Y�8H9J9�I�E�@��A����A���z���A�$L�D$(��81�A��0H�|$(L����H��L�D$���`���=��H�\$(L�D$�A�A�FL9�D�A�F�����A�$� ��A���H9��^	A����A�$��@��
A�����H9���	A����A�D$ �o
A����H9��O	A����A�$���
A��~���A�$���A��g���H9�s D�L$L��H��H��A�W D�L$��{�1�D��H�5�\L���Y���H�\$(A��!���A�D$�5
A��
���A�$�@�U
A����A�D$���A����A�D$@�J	A�����A�D$��A����A�$� �#A����A�D$��
A����H�|$(L��H��D�L$H�L$(H�L$�Z�H�L$D�L$=���A�$��A�U\9�}	��	��A�D$ t&9��TI���H���;Hc�H�<��6A�FH�\$(�A�A�FI�F(���A�$���@A�����A�$�ZA����A�$��@��A����A�D$�A����A�$���A��y���A�$�� �AA��d���H9��9	A��S���A�$��@��A��>���H9��~A��-���A�$ �
���A�����A�$�@��A�����A�$��A����A�$�Ā��A�����A�$���A����A�$������A����A�$��A����A�D$���A����A�$����A��o���A�$�� ��A��Z���H�L$(H�|$(L��H��H�L$0�ۓ�����?����D$0A9F��A�A�FH�\$(A�����DA��������������fDA�1����f�A�$�s���A�G��tH��L��H��A�W A�GH�\$(A9GtH��L��H���od�H�\$(H�I�F H�A���DA�T$A�H�\$(��t\����A�G��tH��L��H��A�W A�GH�\$(A9GtH��L��H���d�H�\$(H�H�H�I�F A���� �����������fD1�H���	H�5ZL������H�\$(A����H�L$(H9�vL��H��H��A�W ��P��H�\$(A�$��u&H�\$(A���A���A�D$	�%������A�H�\$(��n�� ������#���D�H���.�A��L�H�|$(H9���L��H��A�W �ǃ�R�D$����&�����	L�D$(I�UL���B�1����|$0t���A�GA9GtL��L��H���b�L�D$(H�I�<H�|$(H9���L��H��A�W ��)��A�GA9GtH�|$(L��H���bb�H�HD$(�D$$H�D$(H��H�D$0H�D$0I�^A�H�\$(I�F �D$$A�F,A�F(��H�1�L���A�WX���Z���L�D$(I�EL���@�I����H�L$0H�t$(ARH��PL�ÿ(M��L�L$4����A[]���l��������c�)������I�E�@@�
���A�GA9GtH�|$(L��H���va�H�HD$(H��H�D$(�����H9����A���
L��H��A�W ��A�GA9GtH�|$(L��H��L$�$a�L$H�HD$(I��H�D$(��=�$	��>�|���H�L$0H�t$(PH��jM��(L�L$4�
��ZY����H�D$0A�M�~I�F �D$$A�F,A�F(H�\$(A����|$&�����A�GA9GtL��H��L���`�H�HD$(1�L�D$(����������A�
�
��H�A�I�F��g�I�MH�|$(L��H��M�E�������N�H�\$(������������A��+�A����A��I�F	��A�	�	A�F���A�EA�	A�F�%�= ����A�F�	��A�D$@�BA���A��I�F��L��H��H��A�W ��{�6H�\$(A��g�A�	�	A�F�N�A�D$��A��:�A���)�A�D$�t{A��UD�\$L��H��H��A�W D�\$��H�\$(A�GA9Gt L��H��H�߉L$D�\$�^�L$D�\$H�HD$(��{��H�\$(H�\$(H9���A�D$����H�\$(A���A���{�A�A�H�L$(�����A�GA9GtL��H��H���^�H�HD$(H��A��?�A���.�A��0��A�GA9GtL��L��H����]�L�D$(H�I�A���A�	�	A�F���A��I�F����@A�H��I�F���A��I�F��A�EA�	A�F% A�F�	�j�A���Y��@A�H��I�F��;�A�	�	A�F�"�L��H��H��A�W ��{A�$��� �tH�\$(A����A�EA�	A�F% A�F�	���A����A�EA�	A�F@%�= ����A�F�	��H�	A�I�F��i�I�^IcGA9GtL��H��H���\�H�H�H�D$(����A�<$�����A�GA9GtH�|$(L��H����[�H�|$(L���H��H�HD$(����A�ą���H�|$(H9�s)L��H��A�W L���A�ʼn�A�WXA��7w���IcGA9GtL��H��H���r[�H�H�|$(H�H9�v	H9���A���A�thH��L��H��A�W ��L�d$(A�GA9GtL��H��L���[�H�HD$(��<����'��1�H�5�OL��L�d$(�P���H�\$(A����뢸o�����L��H��A�W ��}�g���A�GA9GtH�|$(L��H���Z�H�HD$(A�H��E�f����,�����H�T$(M��H��L������������H�\$(A���1�H�|$(M���H���̈́�����5H�T$(�A�A�FH9�H��D�A�F��:��@�'���A�GA9GtH�|$(L��H����Y�H�|$(M���1�H��H�HD$(�R���A�ą�����H�|$(H9�s#L��H��M�oXA�W L�����A�Յ�����IcGA9GtL��H��H���rY�H�H�|$(H�H9�vH9�rA���L��H��A�W ��}u�A�GA9GtH�|$(L��H���-Y�H�HD$(A�H��E�f��C�L���A�WX��t1������D$L�D$(D�X�L��A���?���I�E�@�1���A�GA9Gt'L��L��H��L�D$D�\$�X�L�D$(H�L$D�\$H�I�<H�|$(H9�sH�L$L��H��A�W H�L$A��H�L$L���D��A�WX�����|$-H�L$uH�L$(H�\$(H�L$0M��H��H�t$(W�(jL�L$4�S��AXAY���S�H�D$0I�^A�H�\$(I�F �D$$A�F,A�F(���H�T$(M��H��L���(�<���������A����H�T$(M��H��L���{D�\$�
�D�\$���
����������A�tyD�\$L��H��H��A�W D�\$A��L�D$(A�GL��A9GtL��L��H��D�\$�:W�L�D$(D�\$H�M�L�T$(A��<t%A��'t1�H�5LL���h���A��5�D�#�D�\$�D$$����I9���L��H��L��A�W D�\$��0����+ubA�GA9GtH�|$(L��H���V�H�HD$(�L�D$(�|$$M��x3H�D$0A�^,L��A�I�F �D$$M�VA�F(���1��1�L�T$H�L$0H��M��H�t$(AWD��jL�L$4�f��ZY���h�L�D$(L�T$�A�GA9GtH�|$(L��H���V�D�\$H�HD$(H��H�D$(H9���D�\$L��H��A�W A��(��D�\$voA��<t[A��{uA��D��A�}A9��F���A�GA9GtH�|$(L��H���U�H�HD$(�D$$1�I��H�D$(I��H�D$0����A��D��A�>�A��'�'DD��A��D��A�)�A��(t�vA��<t�A��{�k���1��m���1�A��'�t���1��Z���A�L���5��8����2�A�D$���A�GA9GtH�|$(L��H����T�D�L$H�HD$(A�H��H�D$(1�A��P��A�F�H9����A�D$���A�tML��H��H��A�W A��L�D$(A�GL��A9GtL��L��H���WT�L�D$(H�I�L�D$(A��^tcA��o�D�#�H�|$(M���H���~�����|O����H�T$(�A�A�FH9�H��D�A�F���1�A�~L����A�FA����-�������r�A����I�Uh���0������f�AWAVAUI��ATUSH��H��H�L$dH�%(H��$�1��H�9�t$����A��H�%PM��L��Hc�H�>��1�1��G���D�I�EH��$�dH3%(D���8 H��[]A\A]A^A_�@I�A�@��D�^E���}L�t$H�{I�6���I�EH��u,�	fD���g�SH�uI�}��������H��L��L��H�����������u�H�sI�I�}�4����H��$��CL�H�|$L����$��U���H�����HA�I�E�0@�����CI�}L��H�t$��$��D4��xPA��H�U�JD9�!�B9�tI�EH�pH�x��Q�A9��OH�t$H��L��H������y��A���x�����;���I�EH����E1�H�t$H��L��H�����A�…��=���A�B����0���1ҋsA���{���ܒ��I��H�����K �HH�I9G��M�MA���������L��L�L$���L�L$��L��貄��L�L$��������H�U�B�CL��L���C�S$��t���H����"L�xI��M�}����f.�H�|$L��L�����A�…��E����D$�\���I��I�EH����D�T$1�1�I��H��D�������������D�KD�T$E��tA�NA��������E�����H��L��L��L��蕳��A�…��l�������DI�AM�qH�|$H�t$�HH�D$L��L�L$ H�A��H�D$(H���?fDH��L��H��S A��HcC9CtH��L��H���O�H�L�tE9���L��I9�w�L�l$H�\$H�l$ M��M��DH�|$(L���c���I�EH����H�D$L�0E1����fDH�L$H�t$XH�����A�ƅ���I�u�F�5H�F(H���
H��8�D�xD;x�A���wD��D�������H��T������DE�E1�B�T��ti�J�����A������ȁ�UUUU��%UUUU������3333%3333Љ����%Љ�����%�������F�<�I��I�� u�A����ZH���R�H�|$X�H�1�1�����A�����I�EH������H�uD���}H�D$M�qH�8H�|$HI9���A�L��L�ƉD$A�V ��?��D�uA�ƀ�����H���
D�pH��I�E軩��A�‰D$D���L���I�ED�PI�}��L�t$HH��L��H��L�����A�…�����H�|$XI��M��L��H��� A�…���I�EH�T$X�8��H�PI�M�A��������H�D$HH�L$E1�H��S���fDD�v(E��x�N,��tA��A���E\E�tE����H�S�8L�{ H�T$�x#�H����H�T$D�pE1�I�EH�
H�@ H�PL�x�EX������F��	��������A������������E�9�8D�vA�� �"�H���MH�D�pE1�H�D�xI�E�a���@�~�@�I�EH����SE1��P�:���DI�A�@��������1�1�谱��I�E�	����1�1�藱��I�EH�����SH�uH���۱��A�…��0���L�t$���fDI�AL��$��
L��H��P0A�…������H�EMc��
K�4>H��P0A�…�����Hc�L��L�L��	���I��H���
�H�ԋ��I��H����H�E�x��I�(A��
H��
辑������H�E���tTM�O(A���H�L��L�L$腑������L�L$A��) H��( L���]������^1�L���^�H��H���VH��L��H�D$�o^�H�T$H��H�����H�D$�?���H�L$H��I��I�E��H�HE1��S���fD��.�I�EH���3����A��������DH�D$`L��$�H�D$PH�D$I��f�H�H��I9�u�H�EH��$�H�|$H���
H��P0A�…��v
H�|$H�EIc�H�L$ H�4H�¿
�P0A�…��K
H�L$ Hc�H�|$�D$(H�H�����D�T$(H��I���}�HH�D$`H�E�����H�5�=H��D�T$ 谼��D�T$ ����	讉��D�T$ H��I��H�D$h��H��1�H�5?H��H�D$ �߼��A�…���	H�EL�\$ �x�,	A�K$H�D$�*H��>H��H�x�<���E1�A�…��.H�D$H�_=H��L�\$ H�H0H�Ϲ*H�|$0����L�\$ ��A����H�D$H�>=H��L�\$(H�H@H�Ϲ+H�|$ �ʼ��L�\$(��A����H�D$L�\$8H�=H�pPI��H��L��L�\$(�2���L�\$8��A����H�D$�*H��<H��H�xX�e���L�\$8��A���UH�D$H�T$(1�H�pH�Щ��L�\$8��A���0H�|$(H��<H��輻��L�\$8��A���H�D$H�T$ �L�\$(H�p8����L�\$(��A����H�|$ �*H�r<H���ƻ��L�\$(��A����H�D$H�T$01�L�\$ H�p(�,���L�\$ ��A����H�D$�+H��;H��H�x0�o���E1�A�…��aH�D$�+H��L�\$ H��;H�x8�?���L�\$ ��A���/H�D$�2H��;H��H�x@����L�\$ ��A���H�D$H��;H��H�xP芺��L�\$ ��A����H�D$H��:H��L�\$(H�H`H�Ϲ*H�|$ 谺��L�\$(��A����H�EH�t$�
 H��P0L�\$(��A���|H�|$Hc�D$(H�舫��D�T$(H��I���o�HH�;H��H��$�H�D$H�xp�ӹ��E1�A�…��%H�D$H�T$ 1�L�\$H�pX蛧��L�\$��A����1҃�1�菆��H���fH��$�1�H�PH��$�H�D$H�PPH�pH�N���E1�A�…����D$觅��D�T$H��I��H��$���H�E�x�����H��1�L��H�5�:L�\$ �D$
���H�D$X詸��A�…��nL�\$ A��
H��
M�K(L�\$(L��L�L$ �0���A�…��5L�L$ A��
H��
L������A�…��
L�\$(H�EH�T$XH��I�s(�xL�\$ �8���A�…���H�D$XL�\$ I�C(�D$
����!��H�D$�H�H(H�p H��H�L$ ����E1�A�…��cH�L$ H�v8H��L�\$H�����L�\$��A���7L��$�1�H��H�5�9L��L�D$ �v���L�\$��A���L�D$ �
 �
 H��I�x(A�����L�\$��A����1҃�1��i���H���@H��$�1�H�PH��$�H�D$H�PH�p�(���L�\$��A�����D$ D�T$�&���D�T$H��I���eH�D$(�E�D�T$0���D$藃��L�\$(D�T$0H���4�L$HcT$ L�XH�t$P��HH�D�`H�T$蛤��E1�A�…�����D$�?���D�T$H��I����H�D$PI�CH�E����M�]E1��=���F0D�~L�v�D$ �F,�D$�F(�D$A��~L�v �8�o�H��H������D�D$H�D�xH�@(E��t�@�|$��t�D$ �N �F0E��~]A�W��}\L��L�]hM�T��Hc9�H���H��ID�H�<���
H��I9�u�1�A���;
A���T�H��A9��I�uE1��P��s���I�EH������1�1�������H���H�����I�UE1�H�PI�E��A������]�DI�E�����u��^���I��I�EH��������M�sI��1�H�ǁ� ����A�…��
�D�SE�����A�NE1���I�E�L��D�T$�3�D�T$H�\$L��E��H�;H����I9�u�E��H�\$E�������:���M9��5�H��L��L���S ��E� �L��I��I��L�l$H�\$H�l$ A�FA9FtH��L��L��H�L$�]?�H�L$H�L�4M��������@A��E1����M�K(A��
H��
L��L�L$ �1���E1�A�…�����L�L$ A��
H��
L������A�…������E1������H�|$X�EtH��H��L���G���A�…��	H�|$X��
���DL�t$HH��L��H��L������A�…��G�I��M��L��H��L����A�…��#�H�D$HH�L$A�H���A�2�����DH�|$X�N
�E�����fDH�E�@�F�H�|$HA�FA9FtL��L����=�H�|$HH�H�H�|$HI9��oA�F���I	L��L��A�V H�|$HA��A�FA9FtL��L��D�T$�=�H�|$HD�T$H�H�A�B�H�|$H��]��H��:Hc�H�>��I9��wH�E�@�i�D$%�����A�~�D$��
L��L��A�V A��A�FA9FtH�|$HL��L��D�T$�<�D�T$H�HD$H1�H�\$ �\$L��;L�l$M��A��D�|$(I��D�ՍE׃�O��Ic�L�>��E����	��H�|$HI9��B
A�F���8L��L��A�V H�|$HL�$;��A�FA9FtL��L���Y<�H�|$HL�;H�H�H�|$H�{���I�G�@�[E���R���I�G�@�?E���	���b���I�G�@��3	E����	���B���I�G�@�E��������#���E����������I�GA���@�t	E���g
���E�������E1�����A�������)����:�������L���\$E�?H�\$ �EM��L�t$HH��L��L��L�l$H�����A�…��cH�|$XI��M��L��H���D�}A�…������A|��H���p����L$E1��HH�T$XI�EH�L$H�PH�D$HH��D�I�G�@��E������?�� ���H�E�x�����{��I�E��I9���H�E�@@��A�~�%L��L��A�V A��A�FA9FtH�|$HL��L��D�T$�.:�D�T$H�HD$HA��<�CL�|$HH�L$PL��D��H�t$HH��I��L�|$jL�L$T����A��XZE�����H������A�‰D$D�����H�EHL�L$PL��H�xXM��H�D$M)�H�|$ M����
H�D$XH���_L��H�L$XD�T$0L�L$(��L�|$XL�L$(D�T$0M���RA�G���	H�U�B	���A�G���1	E�wA9���A�GI�W ��H�D���D�u�Vz��H��������T$D�HD�pI�E�P�E`�z���$z��I�E�g���1��I�E�T�I9���A�~�
D�T$L��L��A�V D�T$��L�|$HA�FA9Ft L��L��L��D�T$�L$�h8�D�T$�L$H�HD$H��=�T	��!�8	H�E�@��cL�|$H����I9��PH�E�@ �BA�~�}L��L��A�V A��H�|$HA�FH�|$A9FtL��L����7�H�L��HD$H�D��A�VX����A��<tA�����A��'���H�D$HH�T$HI��L��H��D��H�D$���A�…��a�H�|$HI9���L��L��A�V ��)��A�FA9FtH�|$HL��L���F7�H�HD$HH�E�@	�	�{�
	H�C ���D$D�cx��I�EH���V��T$DH�|$�P���I�E�H��H�E�@������A���������0��I�E�S��Ic�H�t$H���
�H�t$H���vH�F(1�A����H��A9�����H�t$H��L��H��E1�����A��I�E�`����f.��N��=�����x$����wA�~��tA�G��u�A�GM�O�O��D$ �v�I�w�
�
H���j���E�A������*�1�1�E1�L��H�L$H�T$��L�����H�T$H�����H�L$H�����A������j�H�|$XD�T$��D�T$�Q�H�D$`�c���E���N���I�qI�yH9��=���H�EHcH9H��H��H��H��H)�H9�����H��H��L�L$��7�L�L$H�������I;A���I�qH��L�L$H�D$����H�T$L�L$H����A�At�H�{$I�QI�G��I�}1��zu��I�EH����1�L��H�D$�^u��H�T$H�BH���sL�h��H�P��D������C$���`L������/����HcQ;U\���H���H�uhH��HD�H���;��:	�2�1�1��,���I��H����1�H���VH�I��H���{H�|$XH���=H�I��H���bI�EL�p����E�D�T$ L�\$��D$�t��L�\$D�T$ H�����L$E1��HI�EL�X��H�Hc�H�5@4Hk�Hʋ����������H�
.�8H9
�8���H��g8H�5*H��H��1��`��L�L$�\�H���S��I�EA������������W���A���������A���������A��������1�1������4��� �������������������A�0������H�5z�8H95k�8�����H��f8H��L�L$H��H��H��f8L��H�5�)1��_��L�L$��A������&�������D�����D������D�T$(�>�H�L$D�T$(H�D$ H�AX�(D�T$(���D�T$(H��I���:�H�D$D�T$(H�@HHcx�|$L���D�T$(H����H�t$L��H��D�T$(�	J�|$D�T$(I��J�0~�L$H�Ѓ�I�LL��H��H9�u�M�H�|$ L��L��D�T$�0�M�wD�T$I�G I�GE�W�*���1�E1��k������E1���H�D$H�L$XI��L��H�t$H�(H�D$HAVjL�L$T�,���A_A��XE������H�E�@ t)HcD$D9E\�)���H���H����H�<�������r��I�EH������T$D�P�3������D�?���H��L�L$�y0�L�L$H�I�QI�qH��H)�H9��O���H9��F���H�E�&�����A�G���������E�I� D�T$Ic�H���\C�H���c�I�G D�T$E�w����� D�T$���I�G H���5�A�WD�T$A�G�D�P���1����D�}�����\$M��L��H�\$ L�l$D�|$(��p��H�����L$H�T$HH��H�t$D�u�HH��I�EH��@L��E�;��A�…�x?H�L$H�|$XI��M��D��H����D�uA�…������I�EH�T$XD�H�P���D�u����� �t��I�E����a��I�E��HDŽ$����L����A��������A�*������H��L��L�\$H�5"%���A�…����L�\$A�c������A�����E1��r�E1�L����L����I�}��I�EA������#��I�Q�.���H�T$L�ɾ%���H���)�A�%�������C��H�Uh�D���L���A��A�����������<o��H��t�L�xI�������!o��H��t�L�xI������AWAVM��AUM��ATI��U��SH��H��(H�4$L�|$dH�%(H�D$1�H�L�������…�����9�H�|$���u��
u,H�;H�t$dH34%(����H��([]A\A]A^A_�@1��m��H�H�X�#1��D$��m���T$H�H�X��t�9�t���
t�H�4$��M��M��L��L���V���…�x@H�|$�?u�H�;H�D$H�XH��u�;H��H�KH��u�H�\$H���f�H�|$�$���$�2���H�����.�ff.�AWAVAUATUSH��(dH�%(H�D$1�A���H�H�<$��;�8A����*H�|$H��A��I��H�|$M��L���L���H�|$L�$��A��xaA9�tG��
tb�-��A������������D�A��H�T$dH3%(D����H��([]A\A]A^A_�I�:�����@H�|$����@1�L�$��?�L�$I�H��H�$fDH��L��L��H���Ϻ��A�Dž��{���H�|$I��M��L��D��H���{���A�Dž�x�H�|$1��?�H�$H�H��H�$A��
t�D9u�����W���@A������� -���AWAVI��AUI��ATI��UH��SL��H��XH�yXdH�%(H�D$H1�H��t1�H�5�T����H�CL�|$H��L��Hǃ�L��H�C H�CXH�C`�E8H�C8��E`H�C@�CH�EHH�ChH�CH�EPH�CpL�k(H�CxHǃ�Hǃ�Hǃ�Hǃ�Hǃ�Hǃ�H�CL�c0H�kHI�L�l$L�l$L���5������-1�I��M��L��L��L���7�����x�CX��4�S\1��D�S\�UH�t$HdH34%(uxH��X[]A\A]A^A_��D�#�j��H��t5D�`�@I�H�P�S\��x&H���H��hH��HD�H�I�1�딋S\������H���O��S\������u����-+�f.���H��tH��8H�81��f.�H���8H�=��8H�81��ff.�����o�oNOH�F H�G ����7�f����w�����w�����w������f����G�����G�����G���������wH�
�)��Hc�H�>����W$1��f��W 1��f.��W1��f.��W1��f.��W1��f.��W1��f.���H������1��f�����fD��H�U�8H�H��X�f.���H������HE�H�:����H��H��wH�7AH���f�H���8AVI��AUATI��USH�H��������fD<:u@I��A�<:t�tgA�M��<:tm��ti��f�<:t L�����_��N�H�I�A�E��u�L��L)�L��M����H��A��H��H���@�A�E��u�[]A\A]A^��1���ff.����SH���C�H��H���(�H��[���H�GH� t	H�GH��t�8.u�x/t����H���ff.��AU1��ATUSH��H���H��D-�A����A���D�����E9�t	f����9�t	f���H�{�8H����C0�����C@�����C H���CTH��[]A\A]�ff.����H� H��tH�c�8H98u��H���w�H���ff.�f��|7�
t	���|7�
��h��@ATI��USH�H��t!1��Z=�L��H����H��[]H��A\�p>�H��1��6�H��H�E��ff.�f�USH�_H��H� tH�_H���A-��x�����H������u$H����[]�H� �8H��H�5�7H�81���.�H��8H��H�5�(H�81���.�f�H��H�|$H�|$�
�H�L$H�1�� u-H����Hc�H9�u$H��H�=��1��
�H�D$H���H�q��H���R4�f���H����H���W7�uH�����t�����uH���H�A�
H��tH����H��H���8H�5&(H�81��-�ff.����ATI��U��SH�t:H��t/���L���H��H����H��H����H��[]A\���H�=H|	���H��H�%:�ff.���SH�:H��t'����H��1�1�H���+�H��H���P�H��[��H�=c6��H��H��
:�ff.���ATI��U��SH��
:H��t/���L���H��H�����H��H�����H��[]A\���H�=�5��H��H�E
:�ff.���ATI��U��SH�
:H��t/�B���L���H��H���R�H��H���w�H��[]A\���H�=�5��H��H��	:�ff.�A���H��L�N�H���tID�J�B���v?�L�:�	E1�P�V�1�H�515ASQH���AR�~��H��(�f�E1�A�1�L�jI	A)��f�ATUSH��H�|$���H�|$H�D$�
�H�T$H��H��� ��H����H��u
�}-��1ҾH����Å�xO����,�1�1�����9���������A�ą���H�����/��E��xbH��[]A\Ð��I�ĉ�������1ҾH����Å�y�A�<$��H�|$H����6�@H�B�;������H�$�}��H�$H��[]A\�H�!�8H�H��[]A\��x�ߋ(������H�|$H���6����H�|$H���w6��H�����f���u	�u H���H�]�8H��H�5k$H�81��*�H�B�8H��H�5x$H�81��)�ff.�ATI��UH��SH��H��dH�%(H�D$1�H��uH����H��H��H���T��H��H�H��t-H�r:H�$H��t9I��H��H�=:�r��H��u9H�+H�D$dH3%(uDH��[]A\þH�=�2��H��H�:�H�d�8H�L��H�5|2H�81��%)�� ���H�=	:St �L���H�U�8H��H���H��`[�H��8H�5G2H�81���(�f�AWAVAUATUSH��XH�|$dH�%(H�D$H1���H�D$H��� �.H��H������kH�L$H�iH���kL�d$(H��H�E�L��H�D$(�#�8-I���1H���x-�yH�D$(A�FM�n����<=��M��E1��<-��<_���P������P����~��0��	vv�#H�=l"��=L��H��H�D$0��H����L)�L��H��H��� �H�E��H�t$0H�D$8H���8H��N��H�����fDA�A�GI�W��t(<=t	I���A�����I�D�D$���D�D$H�D$(A�$E��u|H�t$(L����#�H�������H�D$H��� ��H����H)�H�X���H�D$�����H�D$HdH3%(��H��X[]A\A]A^A_��x�}����@A�F���w���<-uA�E_I��A�E��u��Y���A�FI�~�'�H�D$(A�$�=���H�L$H�Y�uBH�D$H�h H������H�D$H�@H)�H�X��@����H�|$H�����H���u��&���L�t$L���Z��I��� t�H�L$H�iH�����������f�fDL��H������0����W��w1���u
H�G�D��H�H�x ���L�N�f.�H��tuA�9toH��I��A�q���N�A��� ����F����9�t�A��-tA��_u(fD�p���v �p���v��0��	v��-t���_t�1��H������͸�ff.�@��ATA��UH��SH�����Lc�M��M���'H��L��H�=ۇ�%������ML��H��H�=d.�������+A���2L��H��H�=��������/A���EL��H��H�=�-�������L��H��H�=.������'L��H��H�=@������L��H��H�=�-�u������
L��H��H�=�-�[������A��=L��H��H�=f-�;�����t'�M[]A\�Lc�M�܃�	�����Mc�A��~�H��D��H�=c1���[H�44]�ZH�=-1�A\�~�fD�M�f�[�M]A\�A��~1A��	�M���,����M�w�����M�g����L��H��H�=�,�~�����t*�M �A�����M@�7�����M��$���@A��������@�M����@ATI��I��A��US����Hc�H����H��H��H�=e,������H��L��H�=P,�������H��L��H�=C,��������H��L��H�=�	���������aH��L��H�=,������uH��L��H�=�)	�r�����t0�����A�C[A	]A1�A\A!�A1�E�SÃ�������E��H�QU	��L��H�5R,H�=�HD�1���[H�2]�7H�=�+1�A\�����f���m���fD��]���fD��M���fDHc�H��H�=+H�������u������������f�Hc�������1��5���D��������"���f���SA��H�����1Z�I��Hc�H���"Z�H��H�=X�	�������Z�A�
 A�J [�ff.�AWAVAUATUSH��HH�|$�L$dH�%(H�L$81�H����H����D���H��I��H�nD����H���L$H���vL�NM���iA�9-�_A�Q���RH�,$L�-�,M��L��f�M�fL�=�.��y����IcD�L�>��fDA�|$��L�<$H��I�GH�$H��~M�wM��tA�>-u	A�V��u�H�D$I��H)��J��L$�����M` I��A�$�u���f.�D�\$E���jH��H�=�)���Dž�A�|$�a���I��L��������M���L��H�=L)1��x��I�L$���t@�MX�M\A�T$I�����@���I�L$�uރ��M`������u�H�L$����D$H�L$H��f��D$����H��H�=�(�%�������Dž���H��H�=�1���A�|$��H����I��H�D$��fD�|$��u(������I��A�$���@�t$��t�H�	y8��H�5�H�81����D�D$��u�H��v8���H�H�X|8H�A�T$I�����fDD�t$E��u�H��H�=bs	H���#�I�|$��L�<$����D$I���i����M`H�D$H)؋T$��t	A��$�H�L$8dH3%(�3H��H[]A\A]A^A_ÐD�|$E������H��H�=/'��A�|$H�C���H�}I��H��L�<$H����L������H�}�H�5ݬ	�.����f���I��H�����H�A�$���f.��D$���|����M`@I��A�$�]���f�D�D$E���Z������ I��A�$�8���DA�D$<:�Z	I����������Q�MX�M\A�$�D$���H��%H�u81�I��H�=�	���A�$����f��D$�������H��H�=�%I���A���@A�$���A�D$���������A<4����Ic�L�>��f.�H��H�=כ	���A�|$��H������H�$H�xH��tH�5W��b�L�<$H��I���=����D�L$E���
���H��A�|$L�<$����I��L���"��1�L��H���,�H��v8H���fDA�|$��H���7H�$H�PL�xH���"H�׾:H�$�d�H�$H��I���<H9���A�|$��I���:L���.�H����I9��m�x��A�~-H�
�$H�$HE�H�HH�(u8H�5�$H�81�����D�T$E����A�|$�nH���SH�$L�`L�xM���>A�<$�3L���l����{���H������A�D$����<
��I�T$�
H�5#H��������o�H�5-$H���������A�D$�����-t����H������A�|$I�|$��H�UPH�5������L�<$����D�D$E�����H�T$0L������H�T$0I�=�A��u
H����H�|$/��D$/�0��H��q8H�A�$���@1��=����H��q8H���L��H��L�<$H�������H�5�����v���f.�H����	H�$H�}H��L�xL�`H���?���1�����H�}H��H�E�&���H�!"H�E������|$���*	�M`H��L�<$�������f.����H�����H��H�u(H�=j	H)����"���DL�<$H�}HH��I�wI��������f.��H�5�!H��������$A�D$�����-t�������A�|$I�|$�?L�<$H�UPH�5�H������ ���H�=*	��H�}(H�EuH�E(A�T$I������f.�I�T$L�<$����f�A�|$�"���H�D$I��H��H)��;���I�t$H�}HH�����L�<$���DI��L�<$���H�T$0�L���N��H�T$0H���#���u�r��H��MX�e\������H�5I	H��������2�H�5��H�������uA�D$	����<=���H�5_ H��������D�H�5S H����������9A�L$��t	��=�&���qH�$H�QH���mH��H��I��tH�dp8H�5H�81��+�H�u(1�H�=�	H���"��I���I���u���6����D��H����u
�MX�e\���������������@��y���A�D$�����-t����������iA�|$	I�|$	��H�UPH�5r�H���9��L�<$��H�=h���H�=g�{���H�=�	�o����W��H����L�<$H��g�A�|$I�L$��M�H��H�T$0�H�L$���H�L$HL$0�xM�H�o8H�5�H�81����1�H�=o1	���H��l8H��9���H��H�u8L��H�$L)�H�=�	��H�$�m���H�u81�H�=�	L�������H�$H�xH����H��H��I���a���A�D$���=<=�5�H�5MvH��������[�t$���t�M`H��L�<$�I��uH�$H�PH��t!H��H��I���g���A�|$
I�T$
�0���H��m8H�5eH�81����M�|$�I��L��H�5�#�����A��MD�L������I��H��
�]H���/H��L��H�=y�������D������E���L�<$E�#E\	MXH��	ЉE\�q�H�$H�xH���JH��H��H�$�������H�$H�PH����H��H��H�$H�u81�H�=�	H�����L�<$��H�5�H����������H�5�H��������;�H�5EH����������L$�����M` H��L�<$��A�|$I�T$�Y���H�hl8H�5�H�81��/��H����L��L��H�=#	�l��������������A�|$I�T$L�<$��������H�����L�<$H���H�5��	H�������uA�D$��t<=t{H��H�=I��I���q	�����|$��H�D$�M`H)���D�MP�MTA�|$�x�M�|$H�5L��� 	��ug�EjH��L�<$�W�|$�����H�$H�xH����H��H��H�$1�����uYH�U`H�5��H�����L�<$��H�5�L�������tjH�5�L�����u0�EkH��L�<$���H��j8H�5�H�81��q��H�5SL���K��u/�ExH��L�<$��I�|$H���%�L�<$H�Ep�d�H�5�	L���	�����EiH��L�<$�<�A�|$I�|$�������h�L�<$����H��i8H�5D
H�81����H��i8H�5'H�81���I��H��i8L��H�5�H�81���H��i8L��H�5�
H�81��q�H�=�1�����H��i8H�5�H�81��K�H�li8H�5^H�81��3�H�Ti8H�5}
H�81���	H�5L���'���tQ�H�5�L������tz�H�5�L������uEI�|$�
1�H�����L�<$�E|���I�|$
�
1�H����L�<$������H��h8I�T$H�5�	H�81��q
�I�|$�
1�H���|��L�<$�����L��H�=s1�H���8�L�<$�k�ff.�@AWAVI��AUI��ATA��USH��(dH�%(H�D$1�H�D$A�E�ƒ� t4��	��v,��u8H�D$dH3%(�H��([]A\A]A^A_�DI���f.�L������Ic�H�I���j�1�H��H�D$�[�H�H�[H��H�$�� t	H�D$H�XE��t� H��L��I�WL�l$H�����L��H��H�D$�����t<�L��H��H�\$�����t �� ����	����H�����u�H�]�� �H����I�ߺL��H��H�D$�0��H�����H��H�uH�$H�E tH�uL�,$D���L���S��D��L��L��L����H��~q��tmI)�M��~eM�l�I�E�8-tH�P�I�U�@�-I�E�xt�I��I�����H����ƒ� t��	������H����ƒ� u���H�<$�o�1�H����H�|$1������@H�]H��I������+�ff.�AWI��AVAUATUSH��H�dH�%(H�D$1��W�I���?��H�-��9I��H����I��H����H��� ��@H����H����H�����L��H��H�$�y��H��j8H�<$H�H�G@��u1H�����t(H��у���tH�р�H�H��t
��th�M��H��L��H�=��9���H��� �j���H�CH���m���I�H�D$dH3%(uFH��[]A\A]A^A_���
��f��H�=�	���H��H���9�����ff.���H��t�r��f��ff.�@��H��tH�5 ���K������H��tH�5 ���+������AVAUATUSH���H�����H�=�F:H����H��H���;��H�=�F:H��F:H��H����H��f8H�=�H��F:H�L������H��tH�5��H������H�=v���H��I�ƀ;tBfDH���h��H��H��I�����L��J�\#H��H��H������H��L����;uľH�='H��E:���H��H��h8H��[]A\H�8A]A^���ff.�@��ATI��UH��SH���dH�%(H��$�1�H�\$0H������H�����H��H�i��H�="H��L�$$H�l$�D$H�\$H�D$ �/��H��$�dH3%(uH���[]A\���ff.���SH���c��H��[H���G������H�����H��H��������H��t?USH��H��d8H�+���H�H��`H��XH��`H��[]�o������USH��H��d8H�+���H�H��`H��XH��`H��[]�$�@��AWAVAUATI��USH��xL�5�9L�odH�%(H�D$h1�H�H�o H�D$H�GH�D$(�G�D$$M���'�L$$����$A�} ���H�?f8H9(�z�Y��I��A���H�|$A����@��A����������A��������H���L��L�l$P��H�=�H�D$P�%��M��L��H��H�=p�9H�D$X���L�|$��H��H�t$(L������L��H�����M��L��H��H�=��9H�D$P����D$$���EH��H�t$hdH34%(��H��x[]A\A]A^A_��^��I������I�E1�H�D$8I�E(H�D$@I�E8H�D$H�d�H���<�L��L�D$PH��H�=�9H�D$P�K��A���H�D$0���H�����H����H����� �7H��H�H��H��~΀9#uɀy!uÃ��"H�5^8H�yH�T$H�L$�`��H�L$H�T$H��t�I��I�T��
��
u��J�H����
u�H�5$H�����H��tA����H�x1�L���d����H�=

�S��H��H�����GH�����H�|$8u
I�}H���wH�|$@u
I�}(H���TH�|$Hu
I�}8H���1H�|$0�A�E`�����8���I�}���I�}H�P����!���H�HH�P����H��H��H�T$H�L$���H�T$H�L$����H�=Ƴ����I��H���9���H�|$�z��H�������H��H�=U	���I�D$ ���1�1��;��L��H��H�����H�t$(��H��H�|$����^������I�����H�����H��Gth�H��uI�D$ ����H��H���@���������A�E@������A�E0������H�`8A�E H����k���H���	��H�D$0H��Ct7H�|$0u��$���H�=�1����H�t$0H��������H�����H��t�H��� uGH��L�x��H��L��H�T$����H�5J[8L�����H������H�T$�A�����L�xH�P���S�F��H�
���1�H�=fH�����)��H�
���1�H�=RH��������H�
���1�H�=9H���������H�
�\8H����H�=H�������H�=H�����y��H�=�H����H��^81�H�
*��H�=�H�H��`�T�H�31�H�
��H�=�H��`�5�H�6^81�H����H�5�H�;�v��H�;H�5��H�����[���6��H�=�[H�����fD��ATA��USH��H���	��H��H����E��~]A�D$�L�d��H�;��u,H�����t$H��у���tH�р�H�xH�t��t"f�H��H��H���Q�L9�u�H��[]A\�H��H�D$���H�D$��ff.��AWAVAUATUSH��H�$H���1�dH�%(H��$�1�Hc�H��H��I���-���K`�L$ ���=A)�H�H�D�D�d$$H�D$0�CT�GL�kM���"�CT���C`�����UH�{uV�L$$����H�D$0H�8H�;H����	�����	���@�>�l$$H�D$0<-u���	DH�;���H�CH� �H��H�裬��~��{h��
���E��H��H�D$H�\8H�H��`���H�\8H�H��`�a�����H�D$(�C` ��
H�{(H����
H�{8H���c
H�{H���6
�{0H�D$��x���H���
��H���U��{@��x����H�����H�������C@����H�CH�t$E1�1�H��H�D$@�g��H�{���H�G[8�H�='H�L���H�D$H�'��H�D$���I�D$H�\$8H�D$�f�H����H9��@H�D$H��H�t$L�,�H���r��H��H�$�6��H�t$H������I��H;$��E����L���{��N�4(A��u
I�������L��H��A����I�$�� �e���I;l$��I�D$ �e����C`�Ch��t���H�2Y8�Sh�����C`��W���@�H��$�dH3%(H���~
H���[]A\A]A^A_��L�������8���H�t$H��H���X������L��L������,���H�\$8E����	�s\�{X�g���R��CT�p	�#��L�H�=q�m��H�-�[8H��H�}�:��CP(��H�t$0�|$$L����+������~L���	��H�|$(�1��(��H�{H����H�Y8H�t$H�L��`�C ��x���G��H�{H������C`�����>L��������L�|$(A����@��A������L������A�������H�SH�3L������I��H�{���D$ � �t%�A�Ƌ{0��x
���H�D$H�|$��H����{@���>���H����H���i���T��I�}��
�����~L������ǃ�A��@�3����IA�ƀ��H�{A�uH�3�H�=�������H�5��9H����	H�}��H�@ �p���U1Ʌ�uH�HH�sI�}L�����L��H���	�A���S	�C`�����L�-������L�%���L��H�=UIE�1������L��H�==IE�1������� L��H�=%IE�1�����H�{H�=�6:H����H�qV8L� I�D$8H����1�H�@��� �|���I�T$H���H�|$PH�JH�T$`1��D$P L�d$XH�L$hH�D$pH�D$xHDŽ$�H��$�HDŽ$�4DŽ$���������f�����	H�H�P �B���1Ʌ������H�J����D�t$ A����������f�H�@�|����H�=9�1��������DH�=����L�kH�������L�C(H�K8�H��H�C8H��D�{PH�C(D�cTD�sX�k\H�CL�D$H�$���M��H�$L�D$��L�kM��tL�C(H��tH�K8�CTD	{PD	sXA1�E!�A1ċC\D�cT1�D!�1ʼnk\�
���D���H��������(�����E����H����H�UH�����l$ E1�H�5C��H��!8��A��1��ɽ�A���
H�=Y�A���I��I����S�sH��H�;�����I9�u������H�� 8��L�cpH�=A����S
�sH�;��H���r��L9�u�H�=oH� 8����L�cP�H�=WH���:�����H�=���"�����
H�=@�
�����H�=������H�=+覺�H�=���������L9�t�S
�s��H��H�{����L9�u�H�=�H��8�Z���L�cp�H�=K��~�����
H�=S��f��H�=�����H�=I����S
�sH�;��H���*��L9�u����H���l$$H�D$0H�H��H�=����������H�t$@���l��I��H�H�������Y�����������H�sL����������5��9��~H���9H��tH�H���]���fDH��M8�K������uH�H�P �B���������YH�H�P �B����������=H�H�@ �P����1Ʌ��/����.���f�H�{h�WW���N���f�����H�
tQ8�C H�����������C@�������C0�s����H������Q���fDH�|$@���H�SH�L$(H�t$PH�=���D$`H�L$PH��H�T$XH����H�\$hH�D$p莭�I���]���fD�k��D�cT�H�=S	H�D$P���I��<I��?H�����A��H�|$PL��H���-��D�cT�H�=�R	�x��I��:H�����I��?H�|$PA��H��L�����H�=kZ	�C��L�D$P�H�=��9H��H��Q8H�0������H�=%��|��CT�z���H�=��f���i����H�D$HL��H����̸��5������������H��H�����@H�=��Զ�A���z����������������H�5���H�=W��%������H�5���H�=>��
��1�H�5���H�=$�������H�5���H�=�?	���A�ƀ�Z���D��I�}�����L�%�L8H��I�<$���I�<$�E��A���������L������fD���H�|N8H�SL� H�������I�D$8H����)�L�hA��� �y�H��H��t"H��$��H��$�H��$��y��I�T$I���H�|$PH�JH�T$`1��D$P L�d$XH�L$hH�D$pH�D$xHDŽ$�H��$�HDŽ$�4DŽ$�������@H���h��L�%�K8H��I�<$���I�<$���A�����|�����f.��H�=����H��H���9����H�{����H�{H����f�����F�fDL�k�&���L��1��
���-�H�=3�H��$����H�H��t8H��H�D$0�H��H�8� ��H��H�H��t��w�L��襻����H�=��T��H��H��H�D$0H�8���H��H�H��u�H�D$0H�8H�;믃�u1H�H�@ �P������uH�H�x �k��H���������ff.���ATUH��S��H��dH�%(H��$�1�����H�>H����H�=��9t{���9��~q����H�L8H�H��`�v��H��F8H��H��$��H������H���H����H���I���r��L��H��$�dH3%(u0H�Ġ[]A\ÉZ�9H�-[�9�}���fDH�=aG8�W���������AUATUSH��dH�%(H��$�1����xH�H��t
���9H���9H�\$1��1�H���+����u���1�8	@��H�ھ�E1������u���E1�8	A��H�ھ�������t8D����}����H��$�dH3%(�GH�ĸ[]A\A]��;��8	u�H�\$����H�߽�\���u��|$�O��E�����|$��u}�����H�\$1�H��D�����A�Ņ��f����|$�
��l$���Q�����1�D�����|$����7���@H�\$H��������&����n���fD��֧�|$��t����������跧�|$�G������肬�����DH���p���������|$�_��D$���x�����A����I������f���USH��dH�%(H�D$1�@��t0�{���H�2I8H�=�H�(1��������$���$��+��������H�����H�5N$�H�=�����f����ff.�AWA��AVAUI��ATI��USH��(H��t$�������XH���ȸ�I��H����I�EH��L���|��L�mA�� �H�ML�m1�H��L��H�L$�Ѭ�H�L$H����M���"�9-�xI�����D$H�D$�D$HcD$H�,f�}SI�hL��H�D$H)ËD$�D$M��t�D$A�$H����H�
�E��H�A�L���HD�I����I��M9���H��H��L������u�A�<u�A�G�L$��څ�E�H��([]A\A]A^A_�f.�I��H�MA������H�����������H�݃���t^I�ރ���������DH�D$H�t$L��L���J��I��H�I8M��H�
���H�5K�H�81����H���Ȱ�I��I�EH���5����t$����I��~m�D$H�D$����}G�����L;l$taHcl$L��H+\$H����H�D$L���D$Hcl$H��H͉D$M���^����k���H�D$I�]�I��u�I������L�l$�D$1ۃ�������t
L+l$���L��I�U���;��I�����H�H8L��H�5$�H�81��x��H������H�5�H��H��G8H�81��U��H��G8H�5�H�81��=��ff.�f�Hc�H���9���}�9����ATUS������H��D� ��t��������82D�e[]A\��H�!E8H����9H��t�H��`H��tÿ�x����fDATUH��S��H��@dH�%(H��$81�I��I�|$���H�,$H��wvDŽ$���tV������tHH��$�L������H�������xH��$�H��$8dH3%(H��ueH��@[]A\Ð��$��DŽ$���t�u���#:��H��u�H�������#:H�$�`����#��H��XH��dH�%(H�D$H1�H���9H����!�H��d9�H�D$HdH3%(uH��X�����f���ATI��UH��S��H�=�����M�D$H���H�=F�9H�
�1�� ��AUH��ATH�NUS��H��dH�%(H��$�1�H���H�RxH��H��H9�t4H9�t/H9�wH9�s%H��$�dH3%(��H�Ę[]A\A]�H��B8E1�H�(H�UH�BH��H9�wH���A�H�EI��H��c9H���9L����X���L�����1�L�������uD��H���@�������H�=��0訪����ATI��UH��S��H�=��?���I�t$H������M�D$H���H�=��9H�
�1�����ATI��UH��S��H�=�����I�t$H����p���M�D$H���H�=��9H�
��1��q����H��:H�0�
��ff.�f���AUATUH�-p�SL���1�H���
��I�����]H��H���-Hc�L��H�TH���ް�L9�u�H��L��[]A\A]�ff.�H��(H�|$�t$dH�%(H��$1�H��@8��H��A,�D$$�#��H�|$@H�L$�A,H�ADŽ$H�D$04H��$���������H�T$H�D$0H�BHcD$H�t$(�H�DH�D$(���H�|$1�H�����H�t$�T$$H��$H�FH�@8H��P,�H��$dH3%(utH��(�DH�L$H�A���ǀ����k���H��$H�t$�L$$H�FH��?8�H��H,H�@���H�x赢�D1��y�������@��H��(dH�%(H�D$1�H�$��w8���u*H��H�D$�`��H�L$dH3%(uH��(�H��Ѻ1��W���r��f�H�5)�1�H����fDH��H9�t�F9�u�H�=�1��z��f.���1�H�=���`����AUATA��USH��(dH�%(H�D$1�H�D$����D�����I��H�52	H��I�}�j��H�D$H����A���.H�Ǩuz���Ã�A��A����I�EL�d$H�D$L���5��H�V:Hc�H��H�TH�0軜�H��H�L$dH3%(��H��([]A\A]�f��;�����I�EH�D$A������L�d$1�H�L$1�L����|$���h���L�l$�H�=���4��H��L���I��H�D$�=������L�d$�<���H�D$� ������H��?8��H�5Y�H�81�������f���ATU��SH��dH�%(H�D$1��G����(H�>I��H�<$@�����H��1�1��!�Ƀ�������I�l$�H���UH��<8L� ����I��$�H����1�H��4�wH����1�H��:I�l�H�t$dH34%(��H��[]A\�fD蛲�Ƀ�@�a���H�o>8H�5<�H�81�����fD��	1�H��H��H���r�,���H��H9�t'�B9�u�H�!>8H�5b�H�81�����H�>8��H�5h�H�81��v�������H��H�����Hc�I����H��tH��4t{H������H���H�H�=��������H��蚫�H�$H����H������H�,$H�E�� ��H�UH�EH����H�
��Hc�H�>��H�=a�蟪��~���f.����H�5����H���%���H�����1�H�
|����H9��B����H�=���M���,���H��H�U���m���f�zIG���zN�~������:IGNO�VH�5�������:EXIT�4HD���H�SYSTEM_DH9uԁzEFAUu�f�zLTu�1�H�5���HE��^���D�:SIG_�l����:SIG_���:DEFAu�f�zUL�}����zT�s���1���H�����Hc�H�>��H�5�����H�5i������H�5��������@��t-@������H����������EH�5���������H���e��H�$H����H���������f�H���T����H�=R�趨����f�zRE������~���1��B���f�zDF������zL����������������H���p��H��:8H�5��H�81��h������US��H����H���t1�H��t
H�Ɖ���H����[]É���ff.�@��H��H����t@蛮�H�=D�1�H����f�H��H9�t'�W9�u�H�������;���f��H���fD��H���1�H����f.�H��H9�t�P9�u���1��D��S���T���1�����[�����AWAVAUATUS��H���dH�%(H��$�1����VH�>I��@����H�|$(1�H�|$(1Ҿ�u��Ņ���H�478E1�A�����H�H��68H�H�@8H9�������D�k��D$H��I���%�H�D$H�D$0H�D$�>�����A9�u	E��������r�����H�CI9���H��I�<�@��u�������軬�Ņ��6���D�k��ݻI���"蛬�lj������x}H�CI9���H��I�<�@��u��O�������H�|$��H�T$1���L$腿�L$��x=H�D$0H���D���H���H9�t"���虾���'���1�躕�f.����9�H�C�D$I9�����@�D$��uH���H���OH�DH��$�dH3%(uWH���[]A\A]A^A_Ð���������f�H�I58H�H����*���ө���A��A�Dž���A!������G�������f.���H��H�dH�%(H�D$81�辨�@=@M�Hc�H�|$���H�t$ H���D$H�$���H�$H�T$8dH3%(uH��H����ff.�f���������z�9�D���=j�91���t:�H�
T�9�f�H��H��At�4��Ѕ�t�Hc��,��-1�9�@1��D��H���H��u��HLJ�1�H�������1��̵9��u���3����H��H��38Hc�H�H����H��u&��w���H��
�u8�u;1�H���DH��4u��41�H���fDH��H���4�@�[4��褫�@��H�����9�H���H9�t
H����1��H������ATH�=E�USH��dH�%(H��$�1��B������H�5����H�=�H���g��H�߹����H�h���H�5������1�H��H��H�5ʘ���H�߹H����H�5�����H��28�����H�f�H�5�H�;跧�H�;1�H���H�5��蟧�H�=(����H�=x�H���
��H�;H��H��H���I��H��08�����H�6�H�5�H�8�G��H�����1�H�޿���H�5Y�������tH�=T�����H�58��������tH�=�����H�5�������tH�=�����H�5��������tH�=1��|��H�5����{�����tH�=���[��H�5���
�Z�����tH�=o��:��H�5����9����������9����H�5���
������tH�=������H�5�������tH�=������1����H���t`H�5���~�H�g08H�Hǀ`H�����1�H�޿���H��$�dH3%(��H�Đ[]A\�H�=���S��븐H�=9��D��α9���#���H�5�����H����z�1�H��H�5.��HF�H���9���H����\�H��HF�H�x�9H��/8L� ���H�5:��I��$���H���tH��HF�H�C�9��������@��AUATU��SH��H�9/8H�H���H��臽�����Ņ�xH������H����[]A\A]�D���H��D�(I������E�,$H��[]A\A]�f.�f�SL�OH��dH�%(H�D$1���+��y�޸-�G��	~}L�T$A�gfffI�J�	@L���։��L�A�A�����)��)É؃�0�A���c҃�0H�A�A�P�M�BL9�sfL�����H��H���V�L9�u�I)�K�D���H�Gu'��0A�1H)�H�|$dH3<%(u#H��[��I���G0H�G��L�������fD��AVAUATUSH��dH�%(H�D$1�H���VL�gH��H�:I��I�|$H�<$�WH��E��A��+��@���=@��u
H�������G��H�$A�� �IH��L���>��H����H��L���:��H���B��H�$H��� ��H��H�A��H�UH�K8H�\$dH3%(��H��[]A\A]A^�fD@��uH�����t��������&��L��H��H�$���H���i���L�����H�<$I�����H�<$�"L��A�H��谭�H�$I�E�9���H�AH�Q�L���1��J���f�����������-��H�$A�� ����H���'a��t~H�$���f.�H����bH�$����H�,8H;8tYH�E&8H;8t`H��*8H;8tgH��'8H;8tnH��.8H;8���H�H��)
���H�<$��H�$�:���H�H�A)
�q���H�H�j�	�^���H�H�	�K���H�H�)
�8����b��H�(8H�5��H�81�����f.�SH��1��W(H�C�C[�fDH��y+H��H��H���������H��H��H��H�H)ǃ�0@�>H��H���������fDH��H��H��H��H��H�H)ǃ�0@�>H��H��u�H���fDH�������t?��~!H���H��,8����H�5��H�81����H�o,8��H�5��H�81�����H�U,8��H�5��H�81�����f.�AWAVAUATUSH���H9�ssH��I��I��I��A�/��+�k�
pk�U��D���)�9�|YH���\�I9�t4�}L��A�T$X��u�I9�vA�H��H��[]A\A]A^A_�DH��+8H�5�H�81�� ��H��1�[]A\A]A^A_�ff.�@H�����t
���tH���H�^+8��H�5�H�81�����H�D+8��H�5��H�81����f���H�~t	�W��t1��f�AWAVAUI��ATUH��SH��L�&H�GM�4$I�\$I���H��t%��u6I�MH)�I�H)�I�MteH�E�UH��u�M�4$I�\$I�����H�}H9�sOI��L��L�����H�EH�}L)�L�I�MH�EH��1�I�H�}H)�I�Mu�H��1�[]A\A]A^A_�DH��t�I���ff.���AWI��AVI��AUATUSH��L�oI�mI�E�� tI�EI�}�6I�PH����H��������H9���M�>I�^I�ԁ�0I)��	H���H��L)�H9�~�H��L��L�D$Hc�����I�EI�ML�D$H%���H	�� I�muL�I�^I�(�I)�H�H��M��~*H�]H��t�H�uH��H��I)�H���j��H��H�M���I�I�EI�E tI�EH��L��H)��L��H��1�[]A\A]A^A_�I�M�x���H��(8H�5��H�81��W��H�x#8H�5d�H�81��?��H�`#8H�5	�H�81��'���AWAVAUI��ATUSH���GH�|$ H�T$0dH�%(H��$�1�f�$��f��
��L��$��D$8L�\$L��L��$�HDŽ$�DŽ$�H�D$P�D$H�D$LH�D$@H�D$(A�E���	L��%u�fDA��%��H��D�eE��u�I��M)���H��$���$�L�+H��L�s�L�H��$���$���~(H����H�|$ H��$��%������}H�\$Lt$(E���hƄ$�H�E�����E1��D$��D� L�hA�D$�Z��H�5�Hc�H�>��DI��M)�t��?����^����H�D$ �@@H�����HDD$(H�D$(H��$�dH3%(H�D$(��,H�Ĩ[]A\A]A^A_�H�D$ L�H0M��tD����P��uA�}�%��D��H�D$0�������A��@����/�<!H�|$0�ƒ��HWHc:H��H������H��$��
����	D�����$D�����L$H������$����,1�1�L��$��~H�|$0���/�2�ƒ�HW���D$��y�؉D$A���L���d�����H��8H�|$0H�D$P�A���"��/���ƒ�HW�H�:�,D�<$����m�l$HH�L$0�A=��o�ƒ�HQ�A�
f(�fTu�L$@f.�t�o�$f�ۃ�f/ىD$����$��1ҿL�5���z1����I��A�DD�E�e�A�T$Ѓ�	v�D$A�D$�Z�}���E����D��$`D��Ƅ$�1�1҃�D�<$���D$L��$`fDH��$�@��H���|$D�$H�E��HE�A��u$HcD$H)�Hc�Lc�H9�������~	H������$���H��$�H�CH��H�C�H��$�H�p��$�H��$�����$���~AH����H�|$ H��$�H�T$`D�T$X�L����������H�\$H�T$`D�T$XD�t$����H��$UH�CH��H�C�H��$�Ƅ$U0H�p��$�D��$VH��$�����$���~BH���5H�|$ H��$�H�T$`D�T$X���������H�\$H�T$`D�T$XfDA�����H+�$�Lc�Lc�I9��������$�H��$��W��M��~	E����H�S�$�	H��$�L�3��$�H�H�KH��$���~(H���H�|$ H��$�����P���H�T$Lcd$�$�H��$�L9�IL�Hl$(H����	A�EH�\$DŽ$��������H��$���H�|$ H��$���������$�����Ƅ$� �	���H�L$0���/���ƒ�HQ�L�2H�%M��LD�D�����D$�����Hc�L��1�H��袃�H��H��t
L)�Hc�H9�HL�H���Ƅ$�HI�D�<$1�1�����H�t$0���/���ƒ�HV�H�:A��H�+81�A���Ƅ$�A�xH��$�D�<$�D$H�D$PL��$`H�L$PM��7DH��I����H���A�u�I��7H��M)�Ic�H9�HM��%���H�D$0�A����A��@�p��/�H�|$0�ƒ��HW�:�H�t$0�A������/���ƒ�HV�H�H�t$(H�0����A���c���A��@�Z������MA��D�<$��������H�L$0��A=�������H�L$0H�QH�BH�A���H�D$0�A����A��@����/�SH�t$0�ƒ��HV�:�D�<$��� ���A����D�<$�l$H����H�L$0���/���ƒ�HQ����$`���A�����Ƅ$�+�w���A�π�n���E�eI�EA��*��$A�T$�1�	w(��T�H��A�lT�D�`�A�T$Ѓ�	v��H�I���������A��D�<$�������R���H�D$0A�����/�<H�|$0�ƒ��HWH�H��H���<���H��Ƅ$�-H��H��$��
����CD��Hc�A�����D$H��	�+L��$�H�$L�����H�$��$�D�<$I)�I��Ic�H9�H��HM����A���E���H�D$0A�����/��H�|$0�ƒ��HWH�:H��$��
�H�D$0A�����/�zH�t$0�ƒ��HVH�:H��$���cH��8H�|$0H��H�D$P�A������A��@�p��/��H�L$0�ƒ��HQ�:H��$�H��t
A����Ƅ$�������D��H��������L$��
������������.H�ҽD�<$��$�HI�L��$�1��W���H����DŽ$��$�H�\$�H�S��L$���D�|$8��A�>H��Ƅ$X.H�C@��$WH��$WH�;H��$���$�����D�NH�׋\$8H�W��~mI�ND��$�H��K�Hc�H�H�OH��$�A����H����H�|$ H��$��z�������$�H�|$H��$�D�NH�WD�d$HD+d$8E����H��$YH�HcL$LH�H�OH��$�D��$�A���'���H�������DŽ$�Lcd$H�T$�$uL9�IL�Hl$(����DL��H)�Hc�Lc�H9���H��$�������H��������$�����L�=S�H��$�H�,$H�l$ L��L�d$M��I��E��H�\$I�����wH����A��A��~aH���OL�2H�BH��$���$���~�H����L��H�������k��$�A��H��$�H�ڍwA���L��H�,$L�d$Mc�M��I��L�L�:L�rH��$���$������H�������H�|$ H��$�������������DHcD$H)�Hc�Lc�H9��������H������H��$���$����SL�=��H��$�H�T$pH��L��D�d$XM��L�d$ L�t$`H�\$I��I��H�l$hD����D�WH���׃���~`H���WL�)H�AH��$���$���~�H���_L��L���������$���H��$�H��D�W���L��Lc�D�d$XL�t$`H�l$hH�T$pM��H��I��L�KI�H��L�{�L��$�D��$�A�������M���VH�|$ H��$�H�T$X�"����z�H�\$H�T$X���H�|$ H��$������/����I�f�A��e�f�l$@f�f.��R	�L	�|$8��H�=t�	H��H�CH�;H��$���$���~(H���"H�|$ H��$��l������H�T$�D$8�\$H9���D�`�E���W���H��$���$�A���nL�=��H�l$L�t$H��$�L��H��E��H�\$ I����wH����A��A����H���OL�"H�BH��$���$���~�H����H��H���������$�H��$�L��w�DL�=1�A����H��$�D�d$XH��E��L�t$`H�\$M��M��H�l$hL�l$ H���D�wH����A��A��~a�WH��L�1H�AH��$���$���~�H���~H��L��������K���$�A��H��$�H�ٍwA���Mc�M��H�l$hM��D�d$XL�t$`H��L�L�;L�KH��$���$����(���H�����9��1�H���:�����1�H���
����A�1�H���Z����d$@f.��8�$�T$@f�����D$`�N�1�A��f@�ǃ�f/��D$��|$@f��f.���	��	fP��|$8���؃�-�D$hD���߉D$X��A��	A��a�4H�'8H�x�t$�D$8H��$�H��$�L��$����I��H��$�Ƅ$`L��$`L)��pL��診�H��$�D�$L)�I�7H��$�A��t9HcT$L�A��f�sH9�s"H�HH��$��0H��$�H9�w�L)�H�ƃ|$XG��$��t$8�[�����
����N�9��t
9L$8�vE�����D$`Hc��A�gH���$HI�$���|$h�D$��
��$�1�M���e�D�|$8�#A�>H��Ƅ$V.H�C@��$UH��$UH�;H��$���$�����D�NH�׋\$8�l$@f�H�W��f.�z�_Hc�I�ND��$�H�H�H�_H��$�A����
H����H�|$ H��$���������$�H�|$H��$�D�NH�WD�$$A���?����\$H��+\$8���,������`H�l$L�=
�L��$�H�l$ L�l$XA��H�\$�D�NH����A��A����H���VL�?H�GH��$���$���~�H���5L��H��������D���$�H��$�H��D�N�H��$���$�����L�=m�H��$�D�d$`H��L�t$hM��D��M��H�l$pL�l$I��D�T$XH�l$ H�T$x��D�_H���׃���~`H���WL�!H�AH��$���$���~�H����L��H���$����|���$���H��$�L��D�_���M��D�T$XM��L�t$hH�l$pH�T$xLc�H��D�d$`L�CI�H��L�{�L��$�D��$�A�����M����H�|$ H��$�H�T$`D�T$X�������H�\$H�T$`D�T$X���1�A�L����DŽ$�H�\$�+�H�D$(f������$��H��L�3H�CH��$���$�����
H��D�NH����H����H�|$ H��$�������&���$�H��$�H�|$D�N���DŽ$�H�\$�d�DŽ$�H�\$���A���L�=�H�l$L�t$H��$�L��H��E��H�\$ I���f�D�NH����A��A��~bH���VL�'H�GH��$���$���~�H���}H��H��������J���$�A��H��$�L��D�NA���L��H�l$E��H�OI��Mc�L�?L�L�gH��$�D��$�A����A��H�QH���>�A�1�L���:�����$����`�HcL$8L�39��GH�H�KH��$���$���~/H����H�|$ H��$������m���$�H�T$+|$8A�����k�$���H�z	��$�H�BH�H��$��KH����$�H��$������H����H�|$ H��$����������$�H��$��sH�\$��H����H�|$ H��$��N��������$�H��$�H�|$D�N������/�BH�L$0�ƒ��HQH�:H����H�|$0H�WH�BH�G���T$8����D$8I�NH�\$A�H��$���H�SH�H��$�D��H��A��H���M��D�<$�l$H����/�@	H�t$0�ƒ�HV��:��H�t$0H�VH�BH�F�B��D$HD�<$�J�H�t$0H�VH�BH�F���H�|$0H�WH�BH�G�-�A��@�w��/�q
H�|$0H�WH�BH�GH��t$(f�0�4�H�L$0H�QH�BH�A��H�|$0H�WH�BH�G��H�L$0H�QH�BH�A�1���/��H�L$0�ƒ�HQ��:�M���/�H�|$0�ƒ�HW��:���H�t$0H�VH�BH�F���d$@D���D$h����d$8�D$X��A�p����t$�D$8H��$�H��$�L��$��9�I�����D�$A��DD$8u?H�
�`H��H�CH�H��$���$���������$���H�
v�	H��D�NH�CH�H��$���$����d
HcL$8L�2D��$�H�H�JH��$�A���KH���jH�|$ H��$��=�������H�T$�$���D$�5�D�t$HD+t$8A��fuD�$�E����H��$���$�A���RL�=��H��$���wH����A��A���yH���GL�:H�BH��$���$���~�H���H
H�|$ H������������$�H��$�H�T$�w땐D�<$E����$�A��L��$`M��7�@M��M�q�����0H��A�A�u�<0���E�����I��I��7H��A�F�0L)�M��Hc�H9�HM������$�D�<$�T�Hc�D�<$� �Ƅ$�-��-1ҿL�5����Ƅ$�-�-1�M���}��|$XA��A��f�4���A	��:�L
Hc��D$`H���A�fHI�$��$���H��L�3H�CH��$���$�����H���+H�|$ H��$�������N���$�H�|$H��$�D�KH�W���\$8�d$@f���f.��q�kH�|$1�A�H�W����������
L�=3�H�l$L�t$L��$�L��A��H�\$ ��NH����A��A����	H���VH�/H�GH��$���$���~�H��tBL��H��������o���$�H��$�L���N�fW@g�D$h-�T$8�
�1��L���v���1��L�����E��1�H����q�A�T$�,$A��H��$Y��$�����A���D$L�D$8A�������t��Hc��D�4$H��HI���A��g�EA�eDE�q�H��$YD�≴$��j�����D$L�D$8����$t�D$H��Hc��D$`�H��HI�$�T�7L��L���@v��{�H�|$A�1�H�W�o�A������D�<$��$���0H�ҽ@��$�L��$�HO��r�H�=�7���H�����H�|$1�A�H�W��1�A��fD�d$H��A)���Hc�I�NH�\$A�H��$�H��$�H�SD��H��A��H���x�$�1ҿ��$�L�5lY���D$���H�t$0H�VH�BH�F���H�L$0H�QH�BH�A�����$`0u/�d$8f�ۿf.���Eτ�t�+L$��$����$�Hc�H�H9��C�t$8�������	A���D$`A�fH�H���$H����L���7~���$�D�<$1�H��H��$���H�t$0H�VH�BH�F���H�L$0H�QH�BH�A��H��$YH��$�HcD$LH��$�H��$�H�D$DŽ$�H�P����/��H�t$0�ƒ��HVH��t$(�0���H�|$0H�WH�BH�G�x�H�t$0H�VH�BH�F�:���H�L$0H�QH�BH�A�:�K�H�t$0H�VH�BH�F�H�H�|$0H�WH�BH�G�:���Lclj�$�L�L�CH��$�������H�q�H��M�H�BH�H��$���$����
H���H�|$ H��$������������$���$�H��$�H�T$�s�L$8L�2��$�)�Hc�H�H�JH��$�����H����H�|$ H��$��'�������H�T$�$���D$��D�t$HD+t$8A��fuD�$�E������H��$���$�A����L�=y�H��$���pH����A��A���cH���xL�:H�BH��$���$���~�H���XH�|$ H���l����������$�H��$�H�T$�p땸)ȅɋL$8N���|�L��$�H��$��W���I��H��$���DŽ$�H�\$0���/���Ѓ�HC�H��H��$�H��$�D��$�H�|$ H��$�1�A��Ƅ$�I��H������D��H��$����\$����Hc�H9�~Hc�H���D�<$H�\$HI�1�1��K��H��D�NH����H�
�	H��D�NH�CH�H��$���$���~BH���OH�|$ H��$�������Z����$���$�H��$�H�T$D�N���ۅ��N���L�=x�����H��$�H�L$�D�NH���΃�����H���NL�:H�BH��$���$���~�H����H�t$H�|$ �\����������$�H��$�H�T$D�N�HcD$8L��$�DŽ$�H�T$H��$�H��$�H�������D�H�L$0H�QH�BH�A�`���H���H�|$ H��$��������#��Lc�$���$�H��$�H�T$L�Ǎs���H�L$0�ƒ�HQ���H��$���$�A����L�=�H��$�L�t$��wH����A��A����H���GL�:H�BH��$���$���~�H��tSH�|$ H���	�����a����$�H��$�L��w�1�A�H�T$�2���DŽ$�H�\$���1��L���e���D��I��H�l$L�WHc�L�?H�H�_H��$���$������D�II�R��L�����D��H�l$L�l$XH�OHc�L�?H�H�_H��$�D��$�A���%�����L��H�l$E��I��Mc�L�:L�L�bH��$���$��������Q�H�|$1�A�H�W�S�DŽ$�H�\$�K��H�`�H�T$MƾHDŽ$�H��$��H�����(����D$8L��$�DŽ$�H�T$)�H�H��$�H��$�H���B���DŽ$�H�T$����t$1�H�T$�k�H�\$0H�CH�PH�S�;����t$1�H�T$�[���Hc�L�:H�H�ZH��$�D��$�A���7H��A���\�D�_L�=������wL�=������wL�=d�Ic�L�:H��H�B�H�H��$���$������H���gH�|$ H��$��p��������H�T$�l�H��L�=����pL�=��Ic�L�:H�BH�H��$���$����
���s�H�\$ H��$�H��������^��L�K0���D�WL�=���z�DŽ$�H�T$���Hc��e�1�A�H�T$����H���p���H�|$ H��$������������$�H��$�H�T$D�K���H���D�<$H�\$HI�1��W��DŽ$�H�T$�(���DŽ$�H�T$�,��D$`Hc�H���$��DŽ$�H�T$��H��L�=�����I��D��L�=���@���H�|$0�7��/w-���HW�7D���I��E��I*�c���wL�=a����H�|$0H�WH�rH�w���Ԑ�wL�=:��@���HcՃ�
t1��������tH��1�L��$��M��DE��A�����0��f�SH��H��H��H��@dH�%(H�D$81��H�<$f�D$H�|$H��tZH�D$0H�C�H��H�D$H�D$ H����H�D$(���H�$�H���������HG�H�L$8dH3%(u9H��@[�f�H����H��H�D$H�D$ H�D$(H�D$0�!���躏�f.���H��tH��~
����D������f���H���H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��tH��~IH��$�H���$H�D$H�D$ �D$0H�D$�s���H�L$dH3%(uH������������̎�ff.����AUI��ATI��UH���xSH��XdH�%(H�D$H1��H�D$ f�D$H�D$x�#��H��H��t�}��H��H���6l�H�\$H�CH� tH�CH�$L��H��L��H�CH����H�D$(H���H�D$0H�D$8�e��H�F�7H�4$H�H�CH�CH� u.H)�H�����H��H�L$HdH3%(uH��X[]A\A]�DH�C��譍�H���7H�UH�5{�H�81������H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$�q�H�L$dH3%(uH�����ی�ff.���H��H��1��q�ff.�@��H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$�Cw�H�T$dH3%(uH������fD��AUATI��UH��SH��hH�|$H�|$dH�%(H�D$X1��
{�H�|$�Cp�H�\$�H�D$0f�D$ H��賘�H�\$(H�D$H��� ��H����H�DL�kH�D$H��L��H�CH�#��H�|$H�D$8H�B��H�D$@H�D$H���H�|$H�t$L�oH�GH� tH�GH)��H��H�D$H�L$XdH3%(u H��h[]A\A]��H�CHC�b����Ί�ff.���H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$訓�H�L$dH3%(uH�������ff.���AWAVAUATUSH��H��$�H�t$hdH�%(H��$1��GH��$�DŽ$��D$TH�F�HDŽ$�4H�D$X��x�H��$��Z��H�D$ H��$�H��H��$��
X�H�H��$��� ��H��L�@��I��xL�D$H�D$���H��$�I��H���c��I� I�GL�D$tI�GH�xH�H��H�@pH)��Hx1����H�I�Hc�$�H%���H	�I�L9D$�.�D$8A�xE1�L���D$PH�D$0�H��H�D$�	fDL�Հ}%L�UtL9�w�H�EL��I��L9T$�c0A�I��I)΁�0��M���)L��L)�L9�~�L��L��H�L$Hc�L�T$�d��I�L�T$H�L$H%���H	�I��� ��I�GH�D$M����M���$�0tQH�\$0L9�}GH�|$H�T$ L�T$H��$�J�4/H����Hc�$�L�T$H�I�H�\$0H%���H	�I�H9l$��
H��$��D$����E1��4H�D$HH��$�H�D$(H�D$@DŽ$������UD��M�ր�{�H�5����Hc�H�>��M��A��H��4�{%A�:pL�T$(H����踆�L�T$(H�H��$��� ��H��H����H��L��L��L�T$(����$�L�T$(=0tL9l$0��$H��$�L��L�T$���A��`L�T$H�D$ �!$H��$�H��� ��H��H�zH�ƃ�H�H�T$ L�T$�P�L�T$H���5,A��@tpHc�$�H9�}cH��$�H��� ��(H��H�yH�ƃ�H�H�L$ L�T$�_�H��$�L�T$H��Hc�$�H� ��(H��H)�H��A�/��0A�� �9HcT$H9��+��)�A��D�t$(��Lc���?'M��'L��L)�L9�~�L��L��L�T$Hc�虋�I�L�T$H%���H	�� I��(I�GJ�<(L�� M�L�T$�_L�A�/L��1�L)�L�T$��0H9�@M���&L��L)�H9�~�L��L��L�T$Hc�L$���I�I�W�L$L�T$H%���H	�� I�/tI�WH��$�H�pH� tH�pH���MH��$�H��$�H��$�I݅��~D�D$(E��ttA�/Lc��0�	M���%L��L)�L9�~�L��L��L�T$Hc��i��I�L�T$H%���H	�� I��K'I�GJ�<(L�� M�L�T$�/K�L�T$H�t$ L��L�T$�a�L�T$��M��A��H��4��"D��H��$������D$���[�A��@��D����D$pH����$�L$	��L$H��$�H����Hc�
L�T$`�QU�H��H���6���H��H�����H��H������H��H������D$@L�T$`H�D$(H�þ
H��L�T$`�5%��L�T$`H��$�H��� ��H����Hc�$�HT$(Hc\$�NH9�Hc�HMу|$HH������1���H�H9�~	H��H)�H��A���0��M��$L��L)�H9�~�L��L��L�T$Hc�虈�I�L�T$I�OH%���H	�I��� tI�OJ�<)H��t
A��
��$�t$�����T$p��t� I���J�<)H��tD���
���&H��$�H��� ��H��L�BH��Hc�$���H\$(H9����0��$�I����~	B�).I���D$@���"Hc�$�H9���"��~/H)�J�<)L�T$I�4H�L$萗�L�T$H�L$Hc�$�I�H��t
A���y#H��$�H��$�H��$��AM��A��H��4��H��L�T$�X�L�T$H��H��$���H��� �o
H�xH�pH�H�T$ L�T$�uK�L�T$H���)H��$�H��� ��H��H�zH�ƃ�H�H�L$ H��$�L�T$��M��H��$�H��$�H��$�L�T$��$�����(A���0A�� ��A�����|$������Lc��f.�M���!L��L)�L9�~�L��L��L�T$Hc��)��I�L�T$I�H%���H	�I��� tI�L�L�� L�T$��F�A�L�T$M���$���0H���M��+!L��L)�H9�}�L��L��L�T$Hc�詅�I�L�T$I�wH%���H	�I��� �LL�T$L�H�D$ ��H��P0Hc�$�L�T$I��@M��A��H��4��A�H��$��D$`�H���6w2�H��H�@ @H���H��1�H��@�lj|$`H�D$A���DH��L��H��$��������ƒ����>H��H���H����<��H����������
�S�EI��<b����<o��
��1��D$@�D$H�D$p�DM��A��H��4��H��L�T$�w�E��L�T$��A�� �������@f.���f(�fT
�6f.
�6��f��L�
I�f/��)A���gA����E���T �A�+���M��A��E���#A���0�fDM���L��L)�H��~�L��L��L�T$Hc��H��I�L�T$H%���H	�I�GI��� tI�GB�(%I��I�JH9L$�/�\$8���H��$�H��$��Q��|$T9|$P}(��t$�.e�H������u#�\U�H��������L��L��贂�L��H��$dH3<%(�9"H��[]A\A]A^A_�@�� ��"@�ŀ��"A�V��I����{���H�D$ ��L�t$�H��PX���wH���7L�T$H�5D�H�8A�1��^��@�� �H"@�ŀ�&"A�V��I���}�M��A��I���`���@�ŀ��!��M�NDŽ$��A�~*�D$`��H�L$HH�T$ L��H�t$�'���I��H����#A��l$`��@�� ��!@�ŀ��!A�V��I�����@�� ��!@�ŀ�q!A�V��I�����@�� �&!@�ŀ��"H�L$@H�T$ I�~DŽ$�H�t$荷��H���P!�8$���|$8�t$P�.����|$P�G;|$T��"HcT$PH�|$X�D$PH�<׉T$8L��H�T$`H��$�@�����xW�H�T$`�D$�D$�����؃�"�D$���� L�r�R��H�L$@H�T$ L��DŽ$�H�t$�Ӷ��I��H���� ���$��@�� � @�ŀ��!��$��� �D$��@�� �> @�ŀ� A�V��I���s��<�&L;t$s`�D$`}L��L�d$pL�d$L�l$xL�l$ L��$�D�t$`H��$�H����D83�{	H��L��L���>�H�H�I9�w�H�0�7H�5�H�81�见��I�GH�D$M����H�D$L��H��L�T$J�<(�%��L�T$����,H��$�I��H�H��A�<b���<o��<x��H���mA����A�����l$� �D$HH��	��L��$�H��L�T$@L���>���L�T$@H��D��)�D$(�T�����H��$��ƒ������@�dAf/���H��$��ƒ������@��h�H��$�H��$�������H��$���7���H������Z���H��$��I{�H��$�����L�@H�P�A�H�
N�H�L$<b�����_H�=@6H�|$<o�����<x�H��HD�H�l$������J���H������=���H��ƒ���
�H���#���H��L�T$(�(w�H��$�H����H�L�T$(H�Ã�A��@uDŽ$����C�H�D����L$p�� �^�D$	ȉD$H��$�H���@���I�Hc‰T$@H�D$(��H�y�7H�5F�H�81���~�H��H�xH����H����E���\�A�-�L�
��A�%0�D$�
@M���L��L)�H9�~�L��L��D�\$@L�T$(L�L$�:|�I�HcT$M�GL�L$L�T$(H%���D�\$@H	�� I�tM�GK�(HcӾ I�H��L�T$@L�L$(D�\$L�D$��<�A��L�D$D�\$H��L�L$(L�T$@��E��tD��C�L��H�H)�L�A�f�A�A�A�t����\$P�|$8L�T$��農��;\$T�CL�T$�>HcT$PH�L$X�D$PH�щT$8���$�H��4���|$8�G���Hc�$�;D$T��H�|$XA�V�D$8����I��H����H�L$@H�T$ I�~L�L$pDŽ$�H�t$�^���L�L$pH��I�����8$��D�t$P�|$8L�L$pD�����D;t$TA�FL�L$p�lHcT$PH�|$X�D$PH�<׉T$8H��$�L�L$p@�����8Q�L�L$p��$���yA��A��A�ȀD�D$`M�qA�Q�l$`����$��|$8H�D$�1���Hc�$�;D$TH�T$��H�|$X�D$8����H�T$`H�<�H��$�@���5����f�H�T$`�D$�D$���5����� �>���L;t$�6����D$`>�����g�L�T$(H�H��$��� �n�H�X�r�<x����1��D$@�D$H�D$p�bH�
ؖH�L$<B�Z�<X�H���HD�H�l$�>�<B�8
<X�'����D$@���D$H�D$pH��$�H��$�L�T$(�6�L�T$(H=���H�����|$`����H���L�T$(HD�1��O�A�L�T$(H�A)�H��$�Mc��� �8H�PH�pA��L�T$(H��$��x:�1�L�T$(�D$H�/H��H�jH����H9�}9H�D5H�
�:H�����H��$�H�H�ǁ� t�H�jH;r|NjL$H���xA���i�l$�+�D$@�<B�<X�C���H��$��
L�T$(�hM�L�T$(H�H��$�H�hH�ց� tH�h�]��-��A�����l$�+�D$HH����H����H�|H)�Hclj|$(H9���A�:X�D$@�D$p
�B�}@���5H�l$xL��$���$�H�\$ H��H���8H�E��}@��u�H�l$xL��$���$���f�M��L��L)�H9�~�L��L��L�T$Hc��v�I�I�WL�T$H%���H	�� I�/tI�WH��$�H�pH� tH�pH���dH��$�L�T$I�H��$�H�t$ L��H��$���M�L�T$��H��L�d$pL��$�H��L�l$xH��$�L)�H������6�BH�|$(�D$p�=D�L$8E�����|$8���H��$�H��4��H��$���I�FH�L$8Hc�H�T$ H��H��$�H�t$x�b�H�L$8H��H�D$(H��tiH��$��4��B�H�L$8H��4H��u)H��$�H�t$(H�L$8��H�L$8H��H���1�|$`}�{L�q�Q�D$8������H��4u�H�T$ H�t$xH�L$8H��$��zH�L$8H�D$(뉃|$T�lH�D$hH�T$8H�L$(H�8�!c�H�L$(H�T$8H���AH��$����H��$��1����H��$����\$P�|$8L�T$��蛫��;\$T�CL�T$�HcT$PH�L$X�D$PH�щT$8��H��H9��9f�A�A�H��$�Ƅ$�Hc�$���0��$�A��@�)E���}H�n�A��tH�F��F� H��H��A��t�F�0H��H��A��t�F�-H��H��A��t�F�+H��H��A��t�F�#H��H���F�%L��L��Hc�L�T$�D$�_f�H��L����D$�Ik�I�L��H%���H	�I��z�� L�T$I���JH����I�����H�zH�rH��1�H�zH�rH��\�H���sH��1�L�T$(�I�A�L�T$(H�A)�H��$�Mc��� ��H��H�p��A���L�T$(H��$��4�1�L�T$(�D$H�3�H��H�jH����H9�}9H�D5H�
�4H�����H��$�H�H�ǁ� t�H�jH;r|NjL$H1���L$@H���bH����H�|H)�Hclj|$(H9����D$@��t
��$��l$A�:X�����H�|$tYH�D$�x���D$@����D���@�|$(�E��t�D$(9�$��zH�|$L�T$x�N�)D$L�T$xD���J���k��$��L$(9�}(��@��H�|$��@��t�����D$(��$��|$)lj��|$A�������y
A�?Lc���0�|$�
�M��[L��L)�L9�~�L��L��L�D$xL��$���p�I�HcT$L�D$xL��$�H%���H	�� I��
I�GJ�<(L�¾ L�T$xL�D$�1�L�D$L�T$x�D$Mń���H�|$��I��D$@��0������$��D$(9���)�Hc��M���L��L)�H9�}�L��L��L�T$Hc��	p�I�L�T$H%���H	�I�G�� I�tI�GD�L$`E���ND�D$HE���@�|$p�7��t����
1���@�ƍtv.��$��\$(L�T$J�<()�Hc��0��$�L�T$)�A�H�IŁ�0Lct$(��M���
L��L)�I9�}�L��L��L�T$Hc��9o�I�L�T$H%���H	�I�GI��� tI�GM���hH��$�M�H��$��|$H��$������A�LcD$��0��M��+
L��L)�I9�}�L��L��L�T$Hc�L�D$�n�I�L�D$I�L�T$H%���H	�I��� tI�L�L�¾ L�T$L�D$�d/�L�D$L�T$M��4�E���7E1ۻ�I�w��DŽ$��R����D$@�D$H�D$p����H�D$1�A�����L$`A�������M�o��H9���
H��$��ƒ����f�@f/�0�R�H��$��Ѓ�����
�H,BH�D����D$@��H�H;�$����D$H����	H���e����\���H��H�p����L�
��A�-��D$9�M�Hc���E1ۻ��E����	�A� ��h�H���H��H��?H)�H	�H��H�D$�~D$��H��	�H��$�L�T$(�D$�6���L�T$(�D$H�p��@�.���J�<*H��L�T$�L$�Y|�L�T$�L$��Hc|$H��	��
L�T$�D$�ܡ��L�T$�D$H���Q�����$��|$8�)���Hc�$�;D$T��
H�|$XM���D$8����H�<�H��$��j���D$@�D$H�D$p����1��D$@�D$H�D$p��fDM���L��L)�H��~�L��L��L�T$Hc��hk�I�L�T$H%���H	�� I��2I�GA�..fF�(A�I����0�����|$(������}0�����H�D$D���J��������D$�D$��$����t���A�%0�D$x�
@M��+L��L)�H��~�L��L��L��$��j�I�HcT$xL��$�H%���H	�� I��aI�GB�(I��H�|$�	���H�|$L�T$x��F�A�L�T$xLc���0�f�M���L��L)�L9�~�L��L��L�D$xHc�L��$��j�I�L�D$xL��$�H%���H	�I�G�� I�tI�GM���~M��x���E��tG�\(�A�K�D(�f�A�Q�P��H�zHz���J�<(L��H��L�T$�y�L�T$�z���H�P�k��|$�+�$��|$�� �-D��
�Hc�$�H�\$(HZL�BH9��E�H��L��L�T$HH)�H�L$L�D$�y�L�D$H�L$Hc�$�L�T$HI)�H��I���H��DM��KL��L)�H9�~�L��L��L�T$Hc���h�I�L�T$H%���H	�� I���I�GL�T$J�4(��A�/��0���D���0��B���	�����$��\$(L�T$J�<(�0)�Hc�����H�|$H�l$0H��$���$�H�T$ J�4/H��*}�0L�T$(��$�H�I�H�l$0H%�����t
��$�Hc�H	�I����J�<*H��L�T$��w�L�T$��\$P�|$8L�T$(������;\$T�CL�T$(��	HcT$PH�L$X�D$PH�щT$8�D��H�߃�L�T$�7�M>�L�T$��H�t$ ��L�T$��n�L�T$��$����\$P�|$8L�T$��耞��;\$T�CL�T$�	HcT$PH�L$X�D$PH�щT$8����\$P�|$8L�T$���?���;\$T�CL�T$��HcT$PH�L$X�D$PH�щT$8����H��fDM��#L��L)�H9�~�L��L��L�T$Hc��f�I�L�T$H%���H	�� I��0I�GJ�4(H�D$ L�T$��H��P0Hc�$�L�T$IŃ|$�1��l$A�����0Hc��f.�M���L��L)�H9�~�L��L��L�T$Hc��	f�I�L�T$H%���H	�� I��I�GJ�<(H�� I�L�T$��&�L�T$��H�PH�p��HcT$@J�<)�0L�T$H�L$�&�Ll$(H�L$L�T$����2R�L�L$p���l$�-�D$@�B�H�t$L��J�<(L��$�L�D$x�3u�I�L�D$xL��$��O���L�
)�_�I�G���I�G����I�G�_���H������H�ۉD$H���D$H�6��J�<)H)ھ0L�T$(L�D$H�L$��%�H�L$L�D$Hc�$�L�T$(H)�I�H����I����H�M�7H�5��H�81���f�1��F��D��1ۃ��L$@�L�l$� �D$@�5�I�G�����P�L�T$������f�H9����H���H��H��?H)�H	�H��H�D$(�~D$(���J�<)H�� I�L�T$��$�L�T$�d��H�� L�T$HI�H�L$��$�H�L$L�T$HJ�<)�N��H��$�H��� ������D$��I�G���H�R�r��H�yH�qH��*��I�G����A� ��/���A�+������l$�+�D$H�k�H���H��H��?H)�H	�H��H�D$(�~D$(��I�G���H���l$�D$H�������H9��X�H�ѸH��H��?H)�H	�H��H�D$(�H,D$(H�D�(�@H��L�T$(���L�T$(H�ø�����D$�D$H����H�݃l$�-�D$H�������}0����D$(�����D$@��$��D$(��E0�D$(H��$���$����H��0L�T$I�H�L$�"�H�L$L�T$J�<)���A�:X�F�fE��&�H�xHx�z�J�<)H��L��L�T$�q�L�T$H�L$�����0H��@�>����0H��$�@��$����H��$�L�T$@H�t$(�?�H�t$(L�T$@������d�H9����H���H��H��?H)�H	�H��H�D$(�~D$(�l�A��@���DŽ$����1��D$H�(���D$PE1�����I�G���A��t<�l$� �D$H�Q�1��}0���D$(�_�A��I���D$8�����/��1��D$H��H�*�7H�5H�81��b��Z�H�
�7H�5�~H�81��b�H���7H�5$H�81��lb�H���7H�5�H�81��Tb�H���7H�5�}H�81��<b�H���7H�5^~H�81��$b�H���7H�5�}H�81��b�H�}�7H�5b}H�81���a�H�e�7H�5#H�81���a�H�|$(L�t$�*�L�T$�L$pH��}I��H�+�7H�|$ M��H�01��Q<��g�H�
�7H��H�5�jH�81��}a�H��7D�L$8M��H���L$pH�|$ H�01��<�H��7�L$pM��H�2}H�|$ H�01���;�T$pH�|$ L��1�H��$�H�51}�.?�H�T$(H��H���D�H���V?�H�\$ H�T$L��I�VL�t$H���XB�L�D$H��AR�T$hI�H�A��H�3�7RL�T$H��~H�01�M��E)��N;�H��7H�5V|H�81��`�H���7H�5~H�81��n`�H��7H�5|H�81��V`�H��7H�5�|H�81��>`�H���7H�5v|H�81��&`�H���7H�5�|H�81��`�H��7H�5�|H�81��_�H�g�7��H�5p{H�81���_�ff.������~H���H�vH��2�PH�&�7H�5I{H�81��_�f.�����ŝ���t(�r�H���J ��Bщ�H1�Hi“���u��@����1�H9������H��H��H��H��H	�H1��f�H�GH�GH�G(H�G H��t'�H�
u�1�H��H��H�TH����fD�����W��SH���p�H�x�7H9tH��[�fD��u�H�����t�H��ƒ���t��u�H��[����AUI��ATUH��SH��H��H�����I��H�CL��P�H���HD�H�S(H�JH�RH�K(H�K0H��H�L�bL�jH�CA��u	I�����u<A��u	I�����uH��[]A\A]�f.�H��L��H��[]A\A]��B�L��H����B�A��u��D�OI�����I���OH�I��L��H!��!��H��v(H��H�T0H��L!���t�t��t H��H��w��D�G��f.����ff.�AWI��AVI��AUI�����ATI��USL��H��(�OL�G0H�H��H��H!�A�v�5�,H��vHH�DmI�D��L98tGI��J�D#H��L��H��H��H!Å�tʃ�������H�,�H��w�H��u�H������EH�pL�D$H9�t7A�NI�FH��H�T$�L$�H�T$�L$��L�D$uJA;NH�����HE�H��(H��[]A\A]A^A_�f��,_�;�����,��,����A;NuI�~A�NA�v� ���H������ff.�AWAVI��AUI��ATI�����UH��SL��H���OL�0H�H��H��H!�A�u�4�H��vCH�@I�D��L90tHH��H�DH��L��H��H��H!Å�t˃�tv���}H��H��w�H��u�H������>DH�pH9�t0A�MI�EH��H�$�L$�H�$�L$��uFA;MH�����HE�H��H��[]A\A]A^A_�D�_�K�������<����A;MuI�}A�MA�u�/���H������ff.�AWAVAUATUSH��H��8H��~6H��I��H��H��H��L�l2@H�MH�UL��H��H�����I9�u�I������{H�{�?H��t
��`�H�CH�k H�K(H9��H�DmH��L�c0L�}H�PM�,I�}���I9���H�PH��I���f�I��H�EH9���L�c0H��M�I�$H���t�I;Eu�I�|$I�uH9�t8�CH�T$L�$�D$H�C�L�$H�T$���D$�d;C�&���H�K(�Ao$AEI�D$I�EH�E�M�4$H�kH9C �d���H�k I��H�EH9��`����H��L��L9�����H��8[]A\A]A^A_�f.��CL�=u{�D$/�H��I�tH����V�1�I��H�C�L��H��I�TH���{�L�k L;k(s�I��M��H�S0K�@L�,�I�UH�����KL��L�D$M��D�T$/I��H��H��H!��?fDE�$/I��vQH�s0K�dL�\��I�I9tXI��I�D-H��L��H��H��H!�E��t�A����A����M�$�I��w�L�D$I�@E����A�@A�/�rI�xI�sD�$H9����KH�CL�D$L�\$ �L$��L$L�D$��D�$�M��L�\$ L�D$;K�L���I�EI�CM�uH�kL9c ��I��L;C(����H��8[]A\A]A^A_ÐE�$o��fDE�$�����M��L�D$�fD9K�����K����fD;C����H�K(�&���fDA��tA��t4I���m���A�@fA�o�\���f.�I��L�c �E���A�@A���5���AWI��I��AVAUI�����ATM��M��USL��H��(L�W0�GH�L$�OH��H��H!�H�w�;@�,H��tMH��tqH�|mI�|��L9trI��I�|H�<�L��H��H��H!���tŃ�������H�,�H��u�H�����I�GI9�tl����B�.L���Z�I���LD��fDH�wL�L$L�$H9�t1I�GH��E�wH�T$�H�T$L�$I�������L�L$u;E9wuUH�D$H�H��(H��[]A\A]A^A_��,^������,����E9wuI�wA�OA�G����H�����몃�t��tJ��L���1�L��fB�n�|���B��L���l����AWAVI��AUI��ATUSH��H��(H�GH�>�PI��H����LD�H�{I�U��L��H������H���t�H�����KH�S���H���L�b�K�,dH��Hk0H�EI�EM��tH�EI�H�E�����H�kL;c u	I�T$H�S H��([]A\A]A^A_��L�K(L�c L�C0M9�vK�,dH���DI��H��M9�tcM;<(u�I�t(L�L$L�$H9�t4�CH��H�T$�D$H�C�H�T$L�$��L�L$�D$uw;C���I�������I����"���f�1�M���N���I�H��([]A\A]A^A_����tC��t^H��H�H�L�a�K�,dH�������;C�/����k���f.�H�B�L�b��K�,df�H�����H����L�b�K�,dH���s�����AUI��ATUSH��H����H��A�@H��?A)�A��>��A����8AC��>�@�(Hc�H��L�hH��H�uH��Ef�CA��w;H�C��H����=�H��H�C0�7��CH��H��[]A\A]�f�H�}H���=�H�C�D�8�=�H��L�h�f��C�H�*�7H�5tH�81���Q�AW�AVAUATUH��SH��H�W�L�o(L�0H�4H��H9���H�<�H9���L�]H�EM��t"H��H�tL��1�H�TH���;�L�]H�E D�eM��H��I9��H�D@E1�M��K�DmM�,��%�A�H�CI��I�AM9���I��I�y�A	t�K�RI�Q�I��H9�t�AoA�I�Q�H�PM��t�I�q�H���5�I�RE��t�A����A����I���f�H������H�}H����7�H��L�p0L�XD�`H�E I9��-���@H9�tC�H�}�E�C�E�C�EH��t��V�H�CH�}0H�E��V�H�C0H��H�E0��V�H�EH�E �EH�E(H��[]A\A]A^A_�DfA�C����fDA������ff.�@��1��7�D��H�=ţ7����H��H�=��7��6�ff.�f���H�=�|7�P���H��H�=r|7�6�ff.�f���H�=E|7� ���H��H�=2|7�}6�ff.�f���SH���#�C[�ff.�f���SH��H�H��t�U�H�{0�U�H��[�U����H���8tHc�H�cqH��H�DH��8�H��H��fD��AWAVI��AUI��ATI��USH��H�GH���PI��H����LD�I�}tTL��L��L���F�H���t�H�����H�X��M��tI�M0H�[H��H�RI�$H��[]A\A]A^A_�DI�U(I�] I�E0H9�vjH�4[H�,��DH��H��H9�tNL;}u�H�uH�$I9�t'A�EL���D$I�E�H�$���D$u3A9E�>���H����4���H����S���H��1�[]A\A]A^A_�@A;Et��
���D��AWAVI��AUI��ATI��USH��H�GH���PI��H����LD�I�}tTL��L��L����H���t�H�����H�X��M��tI�M0H�[H��H�RI�$H��[]A\A]A^A_�DI�U(I�] I�E0H9�vjH�4[H�,��DH��H��H9�tNL;}u�H�uH�$I9�t'A�EL���D$I�E�H�$���D$u3A9E�>���H����4���H����S���H��1�[]A\A]A^A_�@A;Et��
���D��AWAVAUI��ATI��USH��H��8dH�%(H�D$(1�H�GH��L�t$ �PI��H����LD���H��H9C(�QH�{��L��L��L��H���5���H���t�H�h�H�S0H���t9H�DmL�l��H�|$(dH3<%(�qH��8[]A\A]A^A_��H�K(H�AH�C(H�IH��H�T$ L�8L�`L�h1�H���t��CH��H�s������H�K(H�k H�S0H9���H�DmH���H��H��H9���L;:u�H�rH�L$H�T$I9�t+�CL��D$H�C�H�T$H�L$���D$uE9C����H��������H�S0H�����H�CH�K(H�l$ �����H��������9C�g����|���f���tC��t.H��1����H�S0H�K(H�CH�D$ ��������D��1����fDf�V1��{����A����ATI��UH��SH��H��H�GH���P��L�K(H���HDºH��I9�tpI�QK�IL�SH�S(H�S0H��H�L�aH�iH�CM��tH��H�����SI����uE�H��[]A\����t3��t>M��H��[]A\ÐH��H�D$���L�K(H�D$�u���DfE�B�f�E���f.���AWAVI��AUATI��UH��SH��H��8dH�%(H�D$(1�H�GH��L�l$ �PI��H����LD���H��H9C(�fH�{tgL��H��L��H����H���t�H�P�H�����H�RH�S0H��L�`�H�|$(dH3<%(��H��8[]A\A]A^A_�f.�L�K(H�S H�C0I9��#H�RH����H��H��I9��L;9u�H�qL�L$H�$H9�t8�CH�T$H��D$H�C�H�T$H�$��L�L$�D$��9C�����H�����H����*���H�CH�T$ f�H��A��H�S(H�JH�4RH�K(H�K0H��H�A1�L�9L�aH�L$ H���������CH��H�s��u6����fDH��������9C�����g���f.���t;��t&H��1����H�CH�D$ �����U���D��1��y���fDf�N1��h����>���AUATUSH���8H���U2��o�oK�oS H��H�{HP H�C0H�E0���H�,iH��H�|H���
2�H�E�A�L��H����1�D�#H�E0D��I��M��u_H�sH��tI��H��hJ�T H��uH��H��[]A\A]�f�H�}��S�H��H��[]A\A]�f�H�E�}���H�s0L��H���S��ff.�@��������������AWAVAUATUSH��(L�G(H�_ L�w0I9�v7H�[H��I�I�DH�)H���t�A�H��H��H�h�H���u/H��I9�u�1�H��tH�H��([]A\A]A^A_�f�L�yH��tH�AH�L�>I��I�|$��L��H��L���@�H����AA�L$I�T$��tg���3���GH��H�H�H�RM�t��fDI������I�l$I;\$ �S���H��I�\$ H��([]A\A]A^A_�H���H�@M�t���@M�D$(M�l$ M9���K�DmI�L��f�I��H��M9���K�DmH��H9i�u�H�1L�D$H�$I9�t7E�L$I�D$H�T$L��D�L$�D�L$H�$��L�D$u E;L$H�T$uI���tI�����fDE9L$�u���M�t$0���H�B�H�RM�t�кf�����H����H�RM�t�����H�����ff.����ff.���AWAVAUI��ATUSH��H��HH�t$(H�L$dH�%(H�D$81�H�GH��H�D$0�PI��H����LD�H�{L�s0H�T$(��L��H����I��H���t�H�����CH�S���)B�,:H��H�t$0H�|$(�H�DmH�T$M�4�M�fI�FL�d$(H�D$0A�Յ������A�H�L$8dH3%(D����H��H[]A\A]A^A_ÐL�K(H�k I9�v~H�DmM�<���H��I��I9�t^M��M;'u�I�wL�L$H9�t4�CH��H�T$�D$$H�C�H�T$L�L$���D$$��9C����H�������H�����H�t$0H�|$(1�H�T$A��A�Ņ�tzE1��+���f���t[���RJ�,�����f�H�D$(L9�tI�FH�D$0A�I�F���fD9C�����?���f.�B�,z�r���fD��L�K(H�l$0L�t$(H��I9��>H�S0I�AL�SH�C(K�IH��L� L�pH�hH�CM���f���L��H���2��SI������������M���0�����CH�S��td��������J��f.�I�����A�H�kH9k ����H��H�k �����B�,��s����B�:�f�M�gI�GH�t$0H�|$(�H�T$L�d$(H�D$0A�Յ��o������v����d����E�E1��]���@H�����L�K(�����fB�z�9���fE�B�(���B���"���E�������7�@��AWAVAUATUSH��xL�g0L�o H�t$H�T$ H�$dH�%(H�D$h1�H�A��L;o(��H�D$`E��I��H�D$(H�D$XH�D$0K�DmI��H�+H���t~A�GH�{1�H�sH�$�D$H�D$H�|$X�Љ���u=L�T$ M��t3H�C�H�$H�t$(H�|$0H�D$`A�҉�H�D$XH�CH�D$`H�C�D$A;GuP��t#����I�_(I��I9��_���f�1�H�|$hdH3<%(��H��x[]A\A]A^A_��L$I�G0M�gH�\$XH�D$M����H��H��L����H���t�1�L��H����L$L�d$��L�h����E1�K�DmH��A��I���D���@L�SM��D��I��M��M�օ���M�g(I�_ I�G0I9�� H�4[L�D$H�l�L��L�L$8M��L$@M��I���H��H��I9��OL�[I��L;e�u�H�uI9���A�GL�\$HL��D$I�G�����M��L$@M��D$L�\$HL�D$L�L$8A9G�J���H����@���H��M��M��A��I�_(H����e���K�����I�oI;W �N���H��I�W �A����L��L��M��M��A��H��H��L�����H���t�H����	���A�OI�W���B�������pH��H�8H�I�_(H�W�L�RI���b���DI�W(M�o L9��_H�|$K�DmL�d$@I��L�4���I��I��M9��/I;.u�I�vH9�tQE�OI�GH��D�L$8�D�L$8��u^L�d$@E9O�����I��������1�I���L��L$L�d$�����L�d$@�ҐM��L�D$M��L$@L�L$8�x����E;O�^����-�����D$A9G���M��L�D$M��L$@L�L$8���f�H���I�_(H��L�RI���7���f�L�l$L�d$8D�t$@I�_(����H��I�_(��H��L�RI������H�$1�1�H�D$�и�L���f.�H�B�I�_(�f�H��L�RI�����@L��M��M��A�����2�f���AW1�AVAUATUSH��HH�H�o ��H�t$�D$(H�G0H�T$H�D$H;o(snH��H�L$H�DmL�$�M�4$I���tFD�KM�l$I�t$H�T$D�L$ L��H�D$��D�L$ A��D;Ku8A����A��tA��t
L�{(H��I9�w�H��H1�[]A\A]A^A_�@�D$ H�C0L�{H�D$M���>L��L��H���h��H���t�H�h�H�|$M��D�|$ H�DmL�$�1�M�����D$(A���t���M�L$H��L���t$(����L�s(L�c H�C0M9��&K�dH�L$8H��L��L�|�M���DI��I��L9��O�,dI��I;o�u�I�7I9����QH�AH�L$ L���T$4�H�L$ �T$4����H��M��H�L$89S�\���I����R���H��L�{(I��������H�D$J�(����H�kL;c �����I��L�c ����H�K(L�c L9��/H�|$K�dL�|$8I��M��H��H�,��f.�I��H��L9��oL;uu�H�uI9���E�HI�@L�D$(L��D�L$4�L�D$(D�L$4����M��H��L�|$8L��E;H����I�������L��M��I��D�|$ �6���fDI��M��H��L��L��H�����H���t�H���������KH�S����H�D� �L�{(I��K�dL�,����fDM��H��L�|$8L���j���DH��M��H�L$8�m���E9H���M��L���O���9Q���H��M��H�L$8������tl����H��H�8H�L�{(L�g�K�dL�,�����H�D$L�L$8L��H�����D�|$ L�`�����fDH�l$8H��L�y(���H�B�L�{(D� f�I��K�dL�,����H��L�{(D� �I��K�dL�,����M��L�`�D�|$ H��������H��M���'���D��AW1�AVAUATUH��SH��8H�L�o0��H�4$H�_ H�T$M��D$H;_(scH�[M�$�M�<$I���t>D�MM�l$1�I�t$H�T$D�L$L��H�$��D�L$��D;Mu9��t����L�m(H��I9�w�fD1�H��8[]A\A]A^A_��M��L�mL�u0M���\L��L��H��L$�����L$H���t�1�H���H�X�M���…���1�M�����D$H�[M�$��f����M�L$L��I��M���t$����H�](L�e H�E0L9���K�dL�D$(I��L��L�l�H�L$ �fDI��I��L9��'O�<dI��M;u�u�I�uH9���A�PI�@L�D$H��T$�L�D$�T$����I��L��H�L$ L�D$(9U�R���I����H���I��L��L��L�m(I��������I�����H�mL;e �}���I��L�e �p����L�E(H�] I9�w�fDH��I9��sH�[H��M;<�u�I�tL�D$I9�t2�UH�E�L$L��T$��T$�L$��L�D$��9U����H�������1�H���M�����=���DM��L��I��M��L��L��H���F��H���t�H���������MH�U��uzH�D� �L�m(I��K�dH������I��H�L$ L��L�D$(���9U������u���f.�A9P����I��H�L$ L��L�D$(������ti����H��H�8H�L�m(L�g�K�dH���X���L�t$ H�\$(L��M�h(����f��H�T$1�1�H�$�и����H�B�L�m(D� f�I��K�dH�����H��L�m(D� �I��K�dH������I��I��L���V���D��L��H�G0L�O(H�O L9�tGI9�vBH�IH��H���
DI9�vH�:�tH�zH��H�x�H��H��I9�u�H)�H���@1��ff.�f���L��H�G0L�O(H�O L9�tGI9�vBH�IH��H���
DI9�vH�:�tH�zH��H�x�H��H��I9�u�H)�H���@1��ff.�f���L��H�G0L�O(H�O L9�tGI9�vBH�IH��H���
DI9�vH�:�tH�zH��H�x�H��H��I9�u�H)�H���@1��ff.�f���L��H�G0L�O(H�O L9�tGI9�vBH�IH��H���
DI9�vH�:�tH�zH��H�x�H��H��I9�u�H)�H���@1��ff.�f���H��H��vKI��SB�{ÇH�F�H��E'C��LH��L�L�f�H�H��I��H��H1�H��H��H��L9�u�H���H��wJL��QIc�L�>��1��GH��(H	��OH�� H	ȋH	�H��H��E'C��LH1�H��H)�H��H��H1�H��H��H1�H����mGX�H��H��H��H1�H��1�IДH��H��H��H1���1��H	��fD1��OH��H	���1��q���f�1��V���f��GH����fD�GH��0H���"�����SH�����H�ߺŝ�[H����f���H����H��SB�{ÇH��H��H1�H��E'C��LH��H���ff.�@��H�H��H��SB�{ÇH��H��H1�H��E'C��LH��H���ff.���H��H��H1�H����mGX�H��H��H��H1�H��1�IДH��H��H��H1�Ð��H������1�f.�����t<��t8D�J�D�B A��D�I�AB�A��D�A AB�H��8�t������D��D���u�1��������D���G�����H��tg�D���tdE��t_1��H��H9�tG�D���tBE��t=D�Q�D�I A��E�P�AB�E�H A��EB�D8�t������D��D1��D���u�1�E�������@��AWAVAUI��ATI��H��UH��SH������L��H��?�H��L�H�Hp(�H��H9���H�{��I���P�{wzI��I��I��N�|%�(�A��u
I�������H��I9���H�}�G��L�eH��I��H��L�����A��u�I�����t�L��L�����fDH��L��H��L��H��[]A\A]A^A_����H�{�����H�{0I��H��H�����2�H�{H��t�	2�I�~H��t�1�A�L���A�F�CA�F�CI�F0�CH�C0H�C��1�����@L��L��H���A�I9�����H��[]A\A]A^A_�f�H�MH�UH��L��H��[]A\A]A^A_�o���H��H�x0�|8�H�{0�7���U�SH��H��H�o�OdH�%(H�D$81���E��yD�1�)ǃ��|����$I���4:����)��Ⱥ�$I�������)�)�)���)ȉ��@Hȃ�w�H��au7��H�����{��H�\$8dH3%(���kH��H[]�fD��u�H�C0foK�Q�H�fofoS )L$H�D$0�D$)$���ɹ)T$ D�HcȉD$H��lH�t$�T$����H�ףp=
ףH��H��H��H��?H�H��H)�H��H���mH��H9�tjH��D$����{���'���f.��C������t���������D���fD�����F�����DH�ףp=
ףH��H��H��H��?H�H��H)�H��H��H��H9�����l�V��������F������ �ff.�f�AW��%AVAUATUH��SH��H��8H�7H�=�	9dH�%(H�D$(1�L�D$ H�D$ !�5��H�����D�k!D�s"�pdD�{#D�c!D��A��E���{ A��A��D�k"��A��A����A��A��I����A��I��A	�H�{A	�A��D�s#A��A��M�A	�A��D�{$A��I��A	��C$������D�ȃ�@��tYH�H�CD�}D�uD�ED�m�U�u�MD�eD�M H�}(H�E0H�D$(dH3%(uRH��8[]A\A]A^A_�f.�D�L$�L$D�D$�T$�t$��D�L$�L$H��D�D$�T$�t$�q�����f�AWAVAUATO�$UM��SH��H+2I�rcM9�w^H��H��I��I����L��H���R2�H� t)H�[I�H�+M�7I�]H��[]A\A]A^A_��H����f.�H��1�[]A\A]A^A_�ff.�@��H�7��t,��uB���у�a��w��_�H��H9�u��@��у�A��w�� �H��H9�u��ff.��PXH)�H���r#�"H����3�D@��u	H�����u!H���� �
H��H���7��������
uվ
���ff.��AWAVAUATUSH��H��XH�/H��$�H�|$@H�T$8H�L$ L�D$0L�L$H�t$(dH�4%(H��$H1��� �tH��L�o��H�|$@L��$��)�L�H�|$8��H�|$H��$�����H����L�t$ M��t�:4�I9�t�(�I9�t�6�I9�u
�H�D$ H�D$8I�L�<L9���H�D$|L�t$@H�D$`H�D$Hf.�M���%H��I)�L���:��H��H����I��I)�H��$�L9�vL)�H��L9�2L��$�L��M��H��$�H��$�L������I��H����*M���$M�L9��2�����L�eM�_�E1�A���D$L��L��$�M���D$I��M9����U�J݀�W�vH�=;J��Hc�H�>��f.�M��I��L�$$D��L��H+�$�L��H���-��$���$��H�5;LP�t$8��$�L�L$8L�D$PH�L$@L�����H�� H���5M�&A�� ��I��M�nA��L�d$PL�d$PL��L��$�I)�L�d$X�'�I�L-L�H��$�M��~�T$H��L��H�L$�\���H�L$Lc�Ll$PL;d$X��H��$�L9�vL)�H��I9���L��$�M��L��L��H��$�H��$��a���H����(H+l$PH�(H�\$XL�H��H�L$H�<)H�����t$L�� H)�H�L$@��D�H������N�, @H�$H��I9��w���L9��(1�H��$HdH34%(��)H��X[]A\A]A^A_�H�D$@H�hL�h���fD�T$L��L�D$H�
L��L)�L��L�\$XD�T$PL�$���T$|��u;H=���w3H�$�L�$A��D�T$PL�\$XI��L��L�eM9�������L�$$L��M��I��L�$$I)�I������H��$�H���D$�D$�m@L�$$M���	I��D�Å�N�H��$�Lc�L9�vL)�H��I9��A!L��$�M��L��L��H��$�H��$����H��H���	'H�D$(N�l%H���l%H��$�H�HH)�	�,H��H��v1��#��S�H�}	�0Hc�����2���f.�H��9M��L�$$I��HDŽ$��Ic�H����H�D$L��$��H�=n9H�0����T$A��H�Ń�A��������!�۸HN��t$�0�T$H��@��D�@�t$����T$L� H��A�� ��I��A��H��$�����L9���I9�sL)�H��H9�|2L��$�L��I��H��$�H��$�L���,���I��H����%L)��t$L��H��I�����L��L��H+�$���H��L������I��� ��M�nI�^���D$M��L�$$I��IcبtA��A��A��D�T$H�D$�@!������<������H�H��H�zFH�,PH����I���fDL�ٸH)�A��H9������T��z��%��:�����H��H��uӸA�I�����D�D$M��L�$$I��IcبtA��A��A��D�T$H�D$�@$�ƒ�8��8������H��H�CFH�,PH�����I��M��������L$���H��$���L9���I9�sL)�H��H9�|2L��$�L��I��H��$�H��$�L���O���I��H����#�t$L)� L��H��@��D�I������DH�D$H�=L9M���I��D�ú%L�$$H�0L��$�HDŽ$������H�Ǩ�/�9��D$��@A��H��$�M��L+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$��f���H����"L��L���
��D$<0�=H�5�B���.���L��1����M�.A�� ��I��I�nA��L��H��$�I�� �H�H��$����f���$�L�$$I��L��M��I��Ic؅��H��9H���t H�D$E1�1�D�T$H�=x9H�p���D�T$��. H�I���D$M��y�D$����I��A�����RA����A��� L��L��H�|�j�Y�HH��$�H��H��?H��H��
H)�Hi�I9���H���������L��H��J�H��H)�H��H��H)�H��H��I9��Q"��A�LM�A�h�I9�s@L)�H�F�L9�NL��$�L��L��H��$�H��$�D�T$XL�\$P��I��H���� H��$�L�\$PD�T$XH)�L���\$1�LcD$H�|�j�Y�HH�=CD�T$XH��L��M��L�\$PH��?H��
H)€� ��H��H��B� HD�L��L��1����������E��H�L�\$PD�T$XyI��I�T��� H��L��HD��-H�|�j�Y�HI�L��H��L��H��?H��
H)�Hi�A��A��I)�L��u	E���y���E��D�T$��H��A�E:M�EH���������H��H��L��L�D$H��?H��$�H�,L)�H�&BH��H)�1��������/���L�D$H�M�,H��H��H)�H��H)���D�����D�T$A������A�E:I�m1���H��$�H��AH��H)���������H�L�l���H�D$M��L�$$I��D���@$�ňD$P�@������O�D$�����E���N�Lc����@M��I��L�$$D��L��H+�$�L��H�����$���$��
H�5#AP�t$8��$�L�L$8L�D$PH�L$@���M��L�$$I��H��$�D��A��~�D$��I9�sL)�H��H���mL��$�A�L��L��H��$�H��$���H���L�h�%�v���fDE���7����L$����DE�������L$E1��D$���DM��L�$$I��H��$�D��A��~�D$��I9�sL)�H��H����L��$�A�L��L��H��$�H��$����H���LL�h�	��fDL�$$H�D$(M��I��D�d$D��A��H���H�(E����E���N�Lc�H��$�M��L+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$��;�H����L��L������D$<0�H�5�<���H���L��1���I��� ����H��M�n��L��L��$��u�L�I�H��$���f�M��L�$$I��D��D$��A��H��$�L��H+�$�L9�vL)�H��I9�|,L��$�H��$�L��L��H��$��V�H����H��L����H�D$��@$�8��
�������
�H�t$M��L�$$I��D���F"�ňD$P@��@���n#��H�	Ÿ;��;O�D$�������Lc�����f�M��L�$$I�޸D�����f�M��I��L�$$D��L��H+�$�L��H���=��$���$��H�5Y=P�t$8��$�L�L$8L�D$PH�L$@L����H�� H���E�M�&A�� ��I��M�nA��L�d$PL�d$PL��L��$�I)�L�d$X��I�L-L�H��$�M��~�T$H��L��H�L$�l�H�L$Lc�Ll$PL;d$X���H��$�I9���L)�H��I9���H+l$P�:�f�M��L�$$I��H��$�D��D$u
A����I9�sL)�H��H����L��$�A�L��L��H��$�H��$���H����L�h�
��fDH�D$M��L�$$I��D���@!�ňD$P�@�����O���N�D$���������fDA����H�D$M��L�$$I�޽D���@"�D$P�������D$��A��H��$�M��L+�$�L9�vL)�H��I9�|,L��$�H��$�L��L��H��$���H����L��L�����H�5�8�|$0H�F�HE����H�D$M��L�$$I��D���@"�ňD$P�@������O�D$�E���LcÅ��E���A���5���@M��L�$$I��D��D$��A��H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$��&�H����H��L�����H�|$H��$��p���$���$��ҍB��Dƒ�1�)ƃ���a	�H	M��L�$$I��D��D$� A��H��$�L��H+�$�L9�vL)�H��I9�|,L��$�H��$�L��L��H��$��f�H����H��L��H��$��
�H�|$H����H���u��t$@��0�;@���2H�5�6������M��I��L�$$D��L��H+�$�L��H�����$���$��H�5�8P�t$8��$�L�L$8L�D$PH�L$@�s��D$M��L�$$I��Ic؉��tA��A��D�у��L$H�D$A�H�-��
�@!�������<�����A���H�H��H�<7H�,P���D$M��L�$$I��Ic؉��tA��A��D�у��L$H�D$�@$�ƒ�8��8��
��A�����H��H�W7H�,PH��$��6�DI9�sL)�H��I9�|2L��$�L��M��H��$�H��$�L����I��H����L��L��H����T$L��L����I���P��E�����D$ ���DE������L$���D�D$M��L�$$I��IcبtA��A��A��D�T$��$����
H�D$H�xH�����H�|$`�.H�D$`H�0H�hH�t$P�� t	H�D$`H�hH�|$ �`H������I������H�D$�T$M��L�$$I��Ic�H�8�������+
���G�۸HN��t$�0�T$@��D�@�t$��M��I��L�$$D��L��H+�$�L��H������$���$��H�5[cP�t$8��$�L�L$8L�D$PH�L$@��M��L�$$I��D��D$��
A��H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$��f�H����H��L�����H�t$�F!���D$�����N"H�5�2��H��	��DȀ|$0H�F�HE�����H�t$M��L�$$I��D���F!�ňD$P@��@���n"��H��	ŸD�D$������H�t$M��L�$$I��D���n!�F ��H��	Ÿn��nO���N�D$���E�������A����f�H�D$M��L�$$I��D���@"�ňD$P�@������O�D$�_��@���f�H�T$H��$�L�$$M��H��H�D$PI��I��H��H�*Ic��P�H�D$PH����H�T$�r!��@�t$P�����E	��u	��3�5D�L$A��A�|$G��
A��A����	H��A�H�H�D$E��u���
Lc�A��H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$���H����H��L������D$<0��H�5}0����H�L$�f�M��I��L�$$D��L��H+�$�L��H���}���$���$��H�5�2P�t$8��$�L�L$8L�D$PH�L$@�K��uL�\$hL�L$XD�T$PD�$@���(�H�=l2�D��D�$D�T$PH��L�L$XL�\$h�����H�D$M��L�$$I�޽D���@"�D$P�������D$��A��H��$�M��L+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$���H���L��L���T���D$��<0��$H�t$M��L�$$I��D���F#�ňD$P@��@���n$��H��	Ÿ<��<O�D$����b�@M��L�$$I��D��D$��A��H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$����H���7H��L���r��H�|$H��$������$�1ɍp+�$����|��$I���2����)��D$<0tH�5�-���(�H�5�-��M��I��L�$$D��L��H+�$�L��H������$���$��H�5{]P�t$8��$�L�L$8L�D$PH�L$@��M��L�$$I�ދL$Ic؀�p�C��P��H�D$H�-�.A��@"�D$P����<H�EHC���fD�uL�\$hL�L$XD�T$PD�$@���@�H�=�/����@M��I��L�$$D��L��H+�$�L��H������$���$��H�5-/P�t$8��$�L�L$8L�D$PH�L$@���H�5�,���@�L$A�H�-0�
�B�f�L��L��H��M���L9����L�t$@L��H+�$�H��L���k��H��L���`�L�����L���0�H�q�8HDŽ$�H���-H��$�L��$��H�=��8�;���I�ƒ���A�E��u
�۽O�Lc�H��$�L��H+�$�L9�vL)�H��L9�6L��$�L��L��L�T$H��$�H��$�����L�T$H���EH��L��L�T$�{��L�T$�D$L��H�<0��H�5%+���u��L��1��H��I��� ��@I�nM�n�_�I�FM�nH�D$P�T�fDI�FM�nH�D$P�,�fDA�	1�I�gfffffffA)�t�H��H��?��I��H��H)�H��D9�u�I�ȉ�H�"-H��1��������L$A�H�-Z�3�A���u���Lc�A��H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$��t��H����	H��L��� ���D$H��H�<0�/H�5�)��� D���0�I��A�I���u
����LcÉ�H��$�L��H+�$�L9�vL)�H��L9�,L��$�H��$�L��L��H��$�����H���C	H��L���~���D$<0��H�53)����L�����Mc������A�����Mc�����A����Mc����J���A���:�������HO�<H�U�HG�D$�)����Mc����i���A���Y���LcÅ�����A���������HO�<H�U�HG�D$�]���E���N�Lc����D$E1��;��*�������������D�T$A��D�у��L$����������H��L��$��+H�=m�8HDŽ$��,��H�����A�H�-p�
���H�=��a��H��H���8��E�������H��$�L؍k�Lc�L9����&�E�����t$�0H��D�L$@��D�@�t$����D�L$L� H��A�� ��I��A��H��$�E�����I9�sL)�H��L9��Q�L��$�L��M��H��$�H��$�L���5��I��H�����@L�$$�����A���~�H�5�&���L�`�o�H�5h&����H��L��$��%H�=!�8D�L$HDŽ$�����D�L$H�H��E��u�LcÅ���A����L������Mc�I9�sL)�H��L9�/L��$�L��L��H��$�H��$��A��I��H�����t$��� L��Hc�@��H��D��Խ�I�D�8�Mc�I9�sL)�H��L9�/L��$�L��L��H��$�H��$�����I��H���A�t$��� L��Hc�@��H��D��f��I�D��Mc�I9�sL)�H��I9�|/L��$�L��L��H��$�H��$��e��I��H�����t$��� L��Hc�@��H��D���I�D���D$
�V������H�5�$��������B��H�5�$�P���H��H��$�L��H���������H��1�L)�H�H��?H��&H��H)�臼������H�I�������H��$�L؍k�Lc�L9�������L���d���	�	H��$�L؍k�Lc�L9������L����L���m�E1��f.�I��I��d�w��B�|%�b��y����H��I�����H�T$ L��A��"H���y��H�pH� tH�pH��$��dH���C��I������E��u��O��t$�0L�׉T$@��D�@�t$����T$H��H��� �eH����H��H��$�E����Lc�I9���I9�sL)�H��I9�|2L��$�L��M��H��$�H��$�L�����I��H����I)��t$L��L��M�踺�L��L��H+�$����H��L������I��� �V���H��I�n��I������۸HN����A�A�����I��H��?I��?��I�ЍoI���e�����ALڍk���Lc�I9������H�5�!�h�H��D�T$�'��D�T$I������H�=��D�T$�t��D�T$H��H�E�8�b��H��$��H��$��%I��H�=��8H�D$HDŽ$��ƾ�A��I����~W�\$PL�l$L�l$DM���*H��H�=A�8��	HDŽ$��5w�}����A��I��L�l$�\$PE��tK��H��H�A��u�H��L�D$L�ιH��$�H�=v�8�*���I��H�R�8HDŽ$�H����L�D$�L��H�=��8�����H��$�H�I��H)�����L�`�K���I9�sL)�H��H9������L��$�L��I��H��$�H��$�L�����I��H�������H�T$ H�t$8L���t��H��L��$��-H�=�8HDŽ$��7��H�����H�=(��~��H��H��8��H�5���H�k���O�T$�H�=)"H��$�L��$�脾�H�t$�H������H��$�H��$�H��$��%��H)�H��H��H���$�����H�t$0�WH�D$`���@�H��d����	�	L؍k���Lc�I9��������I��H��?I��?��I��D�eI������H�=+�L�L$�|��L�L$H��H�M�8���������AWM��AVM��AUI��ATI��1�UH��SH��1�H�����H��H��H��H9�wH���HC�R�T$HM��M��H��L��H��RH��jAW���H��([]A\A]A^A_�@��AWM��AVM��AUI��ATI��1�UH��SH��1�H���s��H��H��H��H9�wH���HC�R�T$HM��M��H��L��H��RH��AWj���H��([]A\A]A^A_�@H��� t0@��u"H�����t�ƒ���t�@@tH�G�H�G ��)�H��ff.���H��� u����H��?H��?���H���H��?H��?���ff.��H��H��H�:H)�H��~H��8H9�v&������t	H��t
H��H��H9�u�H�:�f�L�@I��I��I��L9�s%@��������H����H)�I9�u�I�L����H���n���L�H��L��I��H��H��L	�L!�I��I��L�I��I��L�I��I�� L���H)�I9�w��%���ff.�f�H��� u@H��H�W��H�<1�H9�v?f��
�΃�a��w�� �@�2H��H9�u��fDH�WH�GH�H��1�H9�w��f�H��� u@H��H�W��H�<1�H9�v?f��
�΃�A��w�� �@�2H��H9�u��fDH�WH�GH�H��1�H9�w��f���H��� uH��
��>H����H�GH�D�fD��H������AVAUATUSH��� ��I��L�gI��A��H��� u!H��L�nH����I9�t[�]A\A]A^�H�VL�nI9�u�H��H���Ã���tRH������t69�u�L��L��L���T��[]��A\A]��A^���L�gL�w�z���H�������@��H�M���AUATUH�-�]SH��H��dH�%(H�D$1�I�����I�ŐL��H��H��L��H�$��H�$H��4t�H��H���H�����t�փ���tH�ց�H	�t<�������unH��S7H�2H9pu?H�|$dH3<%(u*H��[]A\A]�H�
3H��-�gH�=0�ݳ��X��H�
�!H��-�jH�=蹳�H�
	H��-�iH�=�蚳�H�
�!H�l-�hH�=��{��ff.���UH��SH��H�l�7dH�%(H�D$1�f�;u&�H���I��H�L$dH3%(u$H��[]�f�H�|$�6��H��H��HD������H��tSfDH�_�w��H��H��u�[�D��AWAVI��AUI��ATL�f�UH��SH���z��M��x>J�D%M��8��GL��H�U��f��|�H�Du$�DH��H���u�H���[]A\A]A^A_Ð�J�t-L��H���-���~)H�L9��	L��H�|��H)��ٯ��l���@L9��_�������V���L��H�tL��H����������H��u�H�L����脯�����H�7H��������H��H��L��A�V L��D�`D��A�V(����H�L9�����L��H��D��A�V0L��H��H���R�����H��[��]A\A]A^A_ÀJ�t-L��H���(��������H�L9������H���[]A\A]A^A_�M��H�{I)��.���H��1�[]A\A]A^A_ÐH9�s{AUI��ATUH��SH��H���+fDH��L��H��U H����UX��tL�I9�v+H��L��H�����Lc�E���H��1�[]A\A]��H���[]A\A]ø�f.���tK��u>H��� u~H���t.H����V��uw�~uq�~�uk���u:��\�@����H��� t(H�~~�H�v�<�tV<�u�~�t\�����H���t�H����f�H�~~�H�v���uЀ~uʀ~�u�<�u���\�f��~�u���p\��f\�fDH��H�?H������t�	���f�H��H��H�t$�O��H�t$H��������ff.�@H������xH���H�PH��N7H�5~H�81������H��� uH����H��H�D?�@H�@H�H�y�������SH��@��tzH�H�H�� H��xFH��t!H�S�H9�}
H�[�3H�D[�@H����H�¸H��H9�|�[�fDH��u3H����H�¸H�y�[�DH�����H���y����H�S�H��y���[�ff.����SH��H�6�P��1�H��tH����[�f���1Ҿ����� ����1Ҿ�����SH���#���H�3�� u(H��H�{��H�H��1��p��[��H�D��H�{H�sH�����H���C��1�H���ff.��AUH��I��ATUH��H��SH��H��H��H���L��H��H��I��H��U��uH��H��[]A\A]�L��L��L��H�����H��H��t/H��1�L��H���?���
IE�H��H��[]A\A]�f.�H��L��H��[]A\A]�ff.�@ATUH��SH��H��dH�%(H�D$1����tJ����{;{t0��H�E(H��{�Ѕ�~�C�S9�������}D�H�{H�sH9���L�d$H��L���q���\tlH�sH�{H��L���ٯ�Hc|$H��L��H{H�s�CH�{�:���-uH�sHc|$H{H9�rK�CH�L$dH3%(��H��[]A\�H�{HcD$H�sH�H9�s�H�CH���{����H�{H��L���I���HcD$HC�C9�vGH��J7H�:��w��vH�5�1��%��D������f�����H�5U1����fD��K�B����m��ff.�f�AVAUATUH��S�P���H�]I��� uTH��L�e��L�L9�w[1�]A\A]A^�fDH��H��L��L�����H��H��t�L9�w*H��[]L)�A\A]A^�L�eH�]L�L9�v��fD1�L��H��H��踪��
u�H��H��L��L���b��I��H��t�1�L��H��H��芪��
ID�돐AUI��ATE1�UH�oSH��H���9�H����I9�}TH��J�4 H���H��H��t*H�����I��I�E�� t�M;e}I�E��f�H������fDH��ID�H��H��[]A\A]�ff.���SH�����1���uH�;�� tH�{���H��H��[�-���DH������ff.�@��H���c��H��� u�����H��H��?H��?���f�H�x��H��H��?H��?������H�����H��H���7��������USH��H��dH�%(H��$�1��<��H�D$����A�\X�D$/fD�\$-���~V�������h�H�5� H�H�|$H��H��D71�H�l$I��UL��Z��ZY��uKH�D$�yD���H�|$H��H�_D71�H�l$H�Y I��UL�H�r����AYAZ��t�H�\$0Hc�H��1�H������H��H�=:1����H�q�8H��tTH��$�dH3%(��H�Ĩ[]��H�5�������H�5�������\X�D$/I��1�f�t$-H�|$H�t$-H��H�l$H��C7H�VUL��E��_AX���1���H�D$H���8�U����T��H�t$-H�V���fDAWI��AVAUATUL��SH��x�T$H�L$L�D$dH�%(H��$h1�H��� ��H��L�GH�D$@H��L�D$P���D$HLƨ��H�t$X�����t$���A��tAƇ�D$1��D$/�D$(L�t$`L��I����H��H9�u�E1�1�L�d$@H��L���E����ƒ����������D$�D`��H�GL�GH�D$@�D$HH��I�4L�D$P��H�t$X���:���H�T$<H��L���ݥ��^�!����|$HcD$<HD$P�����D$��D$/�D$(�!����D$/1��D$�D$(L��I��fD�H��H9�u�A�����H��uc�L$��u#H�D$H�H��uA�������D$(����H�D$L�(L��M����H�D$H�H��������L�DM��t)L��L��L�D$ �>��L�D$ H������;D$(�u����L��H���5���`���1�fDA���tA�<��A�H��H=u�H��u�|$/tH�D$H�H��$hdH3%(ufH��x[]A\A]A^A_ÉT$ ��T$ H��H�D$L�(H��"����T$ 衽�T$ H�������D$�D$/��D$�D$(�n��������H��1����H�0fH~�H9�tMfH~�H��<������tH��H��u*H���DfH~�H��H��H��H���f.�H�������SH��H��H��H�t$��H��taH�8��u6�� uH�p H�xHc�H9�uVH��趴�H��[�H��H�p����H��H�$���H�$H�8�� t���H�t$H�ڿ�n��H��[��S��PXH�5�
H��H��A7H�81��B��f���@��u*H�����t!H��ƒ���t�t
H%����H�H���H��H�)<7H�5�H�81��������H������H�H�
)�8H9�tLH;�8������H;�8tMH;��8����%`=@����5@H���f���t+��H��
�����D��
@���H���8H9Fu)��H��
0����t��
 �f�H;Nt�H��@7H�5�	H�81����H�s@7H�5�	H�81�����H�[@7H�5�H�81�����H�C@7H�5�	H�81����f.�SH���w���u[�H�=7H�SH�5�H�81����DPX�1�H������ff.�AUI��ATI��UH��S��H��(dH�%(H�D$1����8��tYH�,$��wh��u<H�5M�8L��KI��H�=M�8��H�T$dH3%(u?H��([]A\A]�DI�EH�D$�DH�=1�L���R�8돉��9����4��@��H�
��8�@�����H�
��8�0���UH��1�H��SH��H��1�H�����H��yH���[]�@��H��H��H��轶�H��H��[��]�m��ff.�f���SH���s���tH��1�[����@���H������H��L�9�[1�1�H���|��ff.��ATI��UH��SH�\6H��u:H��u1�[]A��$A\���f�H��H���5��H��t�[1�]A\��H��H�����H��t�H��u
[�]A\�H��H�����H��u���ff.�f���H��H��dH�%(H�L$1ɨu)H�����t!�����tQ��uH��H�����%DH�<$I��H�ƺ�H�=
�8�ؠ�H�L$dH3%(uH����N��H�O57H�5�H�81����fD��SH�����H��[H���G����SH���7��H���?��H��L��|[1�1�H������PX��H��諿�ff.���H�W��u	H�����u
1���H��H���4��1�H���ff.�f���S��wOH�Ӆ�t/H�>@��t6�q��ƅ�y H�L<7��H�5r�H�81�����
H��1�[����������"���f�AVAUATI��UH��SH��dH�%(H�D$1��%0=txI������xtjL��L�t$L9���L��L��H��H���0��� t��	��wHcD$H�H9�w�fDH��L)�H�t$dH34%(uNH��[]A\A]A^�DL9�v3A�$H�
L��<u�@��<t�H��H9�u��@1���7���AVAUI��ATI��UH��SH��H�����H����L9����%0=tdH��L������xtSL��H��H��L�����I��H��t!1�L��L��L���*���tV�� tQ��	��vIL��H)�[]A\A]A^�f.�L��H�&fD�S���t�<t�H��H9�r���L���u����[1�]A\A]A^�DAWAVAUATUSH��H��HH�|$(H�t$ dH�%(H�D$81�����H����I��H��� �xH�|$(L�wH�oH�|$ L�H��� �yI��H�_%0I��A��I�=�wH�|$(���x�qI9���L9���H�D$0H�D$H�D$4H�D$�Wf���xxA�O�D���� ���H�DB��ƒ� ��B�D9��HcL$0HcD$4I�H�L9��kI9��bH�T$L��H��L����H�T$L��L��A��H�����E��y�L��H��L��薕�L��L��H�߉D$0脕�LcL$0H��L��HcЉD$4A9�D�L$INщD$���D�L$HcL$����A9���Hc��P���f.�H�|$ H��L�sH��H���L��� �����H�t$ %0H�^L�fI�=�������0��t(H�|$ �&��x�{����f.�I��H��L9�vCI9�v>A��8�t�r��у� ���p�Bщ��� ��B�9�t�rK��Kf.�H�D$(H��� uSH����H��H�D$ H��� uRH����H���H9�t	�H�����H�|$8dH3<%(ueH��H[]A\A]A^A_�H�D$(H�PH�D$ H��� t�H�D$ H�H����`����H�D$ H�������B����|��9������D��@��t@��u@H�����t7�����u-USH��H��H��蜞�H��H��葞�H��H��[H��]�p�����f.�UH��H��I��SH��H��H�UdH�%(H�D$1��� ��H����tpH�MH�$H�I��H9�tL�A�� uyI��H�KA��I�H�����xH�uH������t^H���V��H��H�|$dH3<%(uOH��[]�@��ސH�UH��t�H�MH�$H��z����H�KL�CI��H���8�������H��57H�5�
H�81�������AWAVAUATUSH��8dH�%(H�D$(1�����I���D$���M�,$A�� �!M�|$M�l$K�,/L��1�A�L9���H�L$ I�t$I�������?H�L$H�t$��H��H�H9�tiL9�v�L�D$H�DL�ι�+H�=.�8H�D$ �4��I��I�$�� ��L;|$��H����I9����1�H��H�H9�u��T$����H��t/H�DL��L�D$ ��+H�=Y�8H�D$ 迗�I��@H�t$(dH34%(L����H��8[]A\A]A^A_�f�I��M�|$A������fDM9|$�;I�D$�Q���I����H�\$ H����HcD$I�ع���H�=��8L�L$H�DH�D$ ���I�ع�-H��H�=o�8H�D$ ���L�L$I�ع�&H�=�8H�D$ L���˖�I������H�>@��u�2����IЉT$������3���ߐ�L$�������L$��?H�����H��H��H!�L�L����H�DL��I�ع�+H�=t�8H�D$ �:��I�����H�c-7H�56	H�81��*��1��~�����f�UH��SH��H��H�6H�������H�����H��� ua�������u`�E%0=��= t
H��[]�H���(��x��H�H���H�� H�H��[]�H�{����t�H������x�"H�H%���H
 H�H��[]�A�x�xBA�x�I�x�x7A�x�I�x�x,A�x�I�x�x!A�x�I�x�xA�x�I�x�xA�x�y
I�x�H���\���H���H��H�H��[]��H���Н������f�H��船�H��������� ��I��H�CI��A��I�I�x�H9�s*H���������H��H#0t�uDH��H#0uhH��H9�w�L��H)�H��H�
�Hc�H�>��DH����������H�H%���H
H��_���f�H�CL�CI��n����H����Hc�H�<���ff.��AVAUATUSH��dH�%(H�D$1�H����L�-�`7I��I��H�Ӊ�fA�}�]�L��蠍�I�Ÿ)�H�H9���I�EH����H�� M��t`H��tkI�}H��u:I�]H������H�L$dH3%(L���H��[]A\A]A^�H��L�����I�EH�� H��tI�}�DI�}H��u�H��H%�?��H��H	�I�E�� ��I�}�s����H%���H
I�E�=���I�] Hc��H�����I�EI�EA��uI�����t��H�ƒ��� ��HE�H%�?��I�E���@Hc�1�����
���f�H�|$�V��H���H��HD���H��.7H�5��
H�81��
�����I�}���ff.��AVAUATUSH��dH�%(H�D$1�H����H��I��H��A��H����L�5�^7fA�>��H�߾觋�H��H�hL�hH�h H���t@H%�?��H
@H�D��H������H��H�T$dH3%(uqH��[]A\A]A^�fDH�����t���H�ƒ��� ��HE�����:�H��H��1��H�)���H���@H�|$���H���H��HD�>����]��H�N-7H�5O�
H�81�����DAWI��AVA��AUATL�$USH��H��L9�H�IO�A��H���� t�)�H�L9��IcƾI�<H�$���L�+L�KI��A�� t]L�KM��uTL��%`@H= ttM����I��?��L�+I�<(�A���8L�CH�kL�c H��[]A\A]A^A_�DH��t�L��L��H��L�L$���L�L$I��L��%`@H= u�L��L�D$�K��L�+L�D$M���w���H������j���D�����t
I�� L�+L��I��?��H%�?���ƒ���IE�H��;���@H�wM��u'H�����t�Ѓ���tH����H�f.�L�CH��u7I�<(�A��ZH�H��H%�?��H	�H�+H��[]A\A]A^A_��L��H�����I���H�$1�L�D$萉�L�D$���fDIc�1��v���@UH��SH��H��H�H�<�� tX��uSH�����tJH�։ƒ���t=�@@t6��~)�?H�GuQ�Q�H�T��H���x�u6H9�u�H�k����H��H��[]�fDHc�1��ވ���@1�H���N���H� u�H�k��ff.�@AWAVAUI��ATUSH��H��H�/�� u)L�gH������D�xI��A��d��)@L�gH�o����D�xI��A��>�M��tu1�H��L���F��H��ucA�<,��H��L��[]A\A]A^A_�@Ic�M�,�H�D$L�I9�r^L��H��DH���x�uD��)�څ��H��t6E1��f�L��H��L��L�$���L�$H�H�H�D$H�I9�s�H��D��H��L��[L��]A\A]A^A_�	���f���SH����tH��軽�H�����t�H��ƒ���tߩu$��u�H�����H��H���Ý�H��H�#���[�H�x#7H�5�
H�81��?��ff.�@USH��H����tH���:��f.�H�����t�H����ƒ���t֩uP��u�� t(�@@t!H��H�k�$��1�H�ߋHH������H���0��0u	H%���H�H��[]�H��"7H�5;�
H�81����f���AUATUSH��H���:���H������H�+I��� ulH��L�c��I�,L��L��H����H��~ZH)�H��� t'H�kIcUI�<,���SH��H��[]A\A]�DH��H%�?��H��H	�H���L�cH�k�fDH���H��[]A\A]�D1��y������AUATUSH��H���j���H�����H�;I��� ��H��L�k��H��I�T-M��tL9�vL��L��H����H���H��H��[]A\A]�DH)�I�tL��H�����H��� t5H�kIcT$I�|-���~�1����fDL�kH�k�y���H��H%�?��H��H	�H����AWAVAUATUSH��H�����H���.��I��H��� ��H��L�k��H��M�t-L��L��H��L��M����M9������L��L��H��M�DI��L��L�D$��M��L�D$!H���H��H��[]A\A]A^A_�DH)�M��~L)�L��L��H�����H��� uXH��H%�?��H��H	�H�IcT$I�|-���~�1�蓃�뚐L�kH�k�2�����H���v���H)�H��� t�H�k뵐��USH��H���^���H��� u����„�uH��[]�fDH�{��„�t�H���o��H��� tGH�CH�kH��H����HcP�E��GH�H�؉с�0��t�H���H�H��[]�H��H��?��H��H	�H��� u�H�k뢐1�H��薂��@��SH����tH���۸�H�����t�H��ƒ���tߩ����u�� tm�@@ufH�{�
��H�H�CH�C�ƒ���u@H��H��?��H��� t71��H������xt+H�H���H�� H��H�[�f�H%���H�H�C�ŐH���ث�H�H�����u�H��H��H�[�H�7H�5��
H�81�������AWAVAUI��ATI��USH��@���.H��H�I�u�� �H����H��H��H��H9���H9���H��H�+L��HH��S���H���&a��H�Ǩu躬�A��A��tL���Y��f�軖�A��A��u�I�����t�I�E�ƒ���tʩ����u��� t#�@@tL��M�}�3��1�L��HL������L��E���H��I��I�E�� uLJ�\+H%���I�ED�;H��L��[]A\A]A^A_��I�m����H���X��H������I�u��0H�ti�� u�H�L��H��L�$H���L��L�$H��H��I��L�����L�$D�3H��L���D$L�����~Z9D$tdI�e����M����D�3A���6���H�L��H���¤��~I�EH%���H
 I�E����DI�M0���A������H�
 7H��H�5��
H�81��v��H��7H�5�
H�81��^��ff.�AVAUATUSH9���H��H��H�����I����%H������H�A��A��A�����uI��A����L�eL��� t
�@@��f�I��IcUA�� �H��H�����A��0)�Hc�H9��0A���nH%���H�H�MI��A�� M����H��H����H�H�uH�{M��tH�{H����M����H����H%�?��H��H	�H�L��H��Mc��y��H�H%���I	�L�#[]A\A]A^ÐH������H�{�w��H�CH�H�CH�MA��IcUI��A��A�� �����H�}���@HUH�u�>���H�M�X�����3��H�MH�I��A�� �&���DH�€� A��HE�H�UH��H��?��H�H�E ��H�SH�U�� ��H��L�u ��H�S@����H�������H�U�փ�������@���΃���������L�s A������@H�I�~uI�H�U�Ѓ��XH�UH�SH�U�� �a���H�UL�u H�S@���d���L�s H�E% H��t*H�E�(DL�s H�U�Ѓ���t6H��H%���H�EH�E�H�e�?�����DI��A�� ����H��% �L�s A���<���I�����u���$����%����L��H����H��ƒ���t��@H�I��ƒ��������H
I����H�
��
H��
�{H�=��
�}�H��7H�5�
H�81��l��ff.��AWAVAUI��ATI��UH��SH��H��HcEH�
���~�U9�tO����L9�sHL�q�H��u�ffDI�F�M��tWI��H��H��L���&y�H�H�I9�w�L����H��H�L9�L��I�$HF�H��[]A\A]A^A_�@H���H��������H��H�L$�c��H�L$���`���L9��?H���6H�I9��L�5 �
I���������fD�����H�p�H9��L��H��H#;t���L��H#:��H��H9�w�H��H)�Ic�L�>��x�xM�x�H�p�xC�x�H�p�x9�x�H�p�x/�x�H�p�x%�x�H�p�x�x�x
I�$���H�p�@H��t�H��H)�H��H)�H��H��L��H�L$�w�H�L$H�H�H��I9�v3H��~.H�I9�����I�$L�����1��H����Hc�H��H��H��I�$IE��`���H������UH��SH��H��dH�%(H�D$1�H�$H�E��t/H��tH9�sH��H)�H�t$dH34%(uH��[]�H����H���`������9��f�AWAVAUI��ATI��UH�,7SH��H��H���M����5A�|$��H9�r��H�H�H9�v~L��H��H���@����H���0[]A\A]A^A_À}�xA�}�H�M�x7�}�H�M�x-�}�H�M�x#�}�H�M�x�}�H�M�x�}��yH�M�H������ H��[]A\A]A^A_�@L��萡���?���L�u�L9�s:H���������H��H#t���H��H#��H��I9�w�I��I)�I������H�D�
Jc�H�>��f.�H�M�H9�s.H���������H��H#t
�CH��H#u8H��H9�w�I��I)�H��
Jc�H�>��������fD�H���Hc�H�H���������fD�H���Hc�H�H��t�H�E�L�-��
I���������H�D$L��H��H��肛���>���H�H�H9������L9�r�5DH��I9�v'L��H#t��H����H�H�H��u��h����H��H)�H���c��IcD�L�>��D�}�xC�}�H�]�x��}�H�]�x��}�H�]�x��}�H�]�x��}�H�]�x��}������H�\$�L��뀀}�H�]������}�H�]����}�H�]�����}�H�]������}�H�]������}��H�]����������}�y�L�����fD��ATI��UH��SH��H����� �H�kH�L�cH��H�k H	�H�H��7H�H�CH��[]A\�@��H��8dH�%(H�D$(1�� ��H�|$H��H�$H��7H�t$H�H�t$ H�D$���H�T$(dH3%(uH��8��/��ff.�@��H��8H��dH�%(H�L$(1�H��H��H��H�����H�����H�L$(dH3%(uH��8��Ҭ�f���SH��蓏�H��[H����z����AWI��AVAUATUH��SH��(D�)A��0��H��H��I��躌����A�� tyI�w�H9���H���������H��H��H#Mt��H��H#��H��H9�w�L��H���
H)�Hc�H�>��A��M�w���A�� tA�$@L��H)�H��([]A\A]A^A_��{��I��L9�r��H�I�M9��H��L��L����������0E�A�$H��(L��[H)�]A\A]A^A_�A��M�w�x4A��M�w�x)A��M�w�xA��M�w�xA��M�w��(���@M���*���I���������I�G�H�D$@H��L��L��L�L$�u��L�L$���RH�I�<I9�t=L9�r�H��I9��{L��H#t�E1��L��A��Mc�N�4M��u�A�$ ���A��x`A��I�w�xUA��I�w�xJA��I�w�x?A��I�w�x4A��I�w�x)A���xA�$L��H)�H��([]A\A]A^A_�I�w�H���%� A�$L��H)���H���h��D$���>���M�O�L9��}H���������H��H��H#Ut�$@H��H#�H��I9�w�L��H)�H���n��H���
Hc�H�>��f.��H���Hc�H�4H���%� �P��������A����M���'����L��H)�H������H�5A�
Hc�H�>���A��M�w��i���A��M�w��Z���A��M�w��K���A��M�w��<���A��M�w��-���A���*���L�t$����A��y�M���	����E1��L��D���Lc�N�4�n�������0ED$A�$L��H)����H���W���H�����f.���H���%0upH��ATUH��S�Ӄ���ts���t��xI��~H��胙��ugH�u�� u;H��H�}��L�����Hc�H�UH���H	�H�U[]A\�fD��H�uH�}��fD�S}����H��������xI��u��0�0�f���ATI��SH��H�H������tk��uO1�I�4$�� t!I�t$I�|$�k�H��H1�[A\��H��I�|$���_k�H��H1�[A\�@L�����=t�Hc��@�|���ff.�@��H���C��H��H�D�f�AW1�AVAUATUSH��H�|$(dH�%(H�L$x1�f�T$nH��D$j�D$p�� uFH����H�T$8H�|$8uHH�L$xdH3%(H�D$(�	H�Ĉ[]A\A]A^A_��H�D$(H�@H�D$8H�|$8t�H�\$(H���5���H�I��H��H�$�� ��H��H�D$H�D$HD$8H�D$@�H�$I��H�D$qH�D$ H�D$jH�D$H�D$TH�D$0H�D$Xf�H�$H�t$L��L���\��I��H������u4H�D$0H��t*��P������P�������0��	�[H�4$L��L���ɑ�Hc�H��~�M�$L��L��L��A�U L���ʼn�A�UX���xL����A�UX�����D$H���b�L��H��L��螻�����
�������DA���0��	�����S����D$TL�4$����L�d$qL�|$jH�$H�t$L��L���:��I��H����H�4$L��L���ߐ�Hc�H��H��~�H��L��L���q}�L��H��L�����������I�4L��L��蒐�9�tL��H��L�����A�}�UH����L��H+D$H�\$@H�D$H�G���DH���w�D$PH�k�H����A�}��I�.H�D$H�D$I��8�'I����H��I���u�H���51�|$P������|$��H����L��H+D$H�\$@�H�D$HL�t$0�D$T�s���H�|$ �H��L���;|�A�}�\���L��L��L���r����t���L��L��L��A�U ���_���D�x�L��D��A�U(���I���H�H9��>���L��L��D��A�U0L��L��L�����������L��L��L��A�U L��t$��A�UX��������D$P���@�(L��L��L���ώ��~#Hc�H9�t�H��1�H)�L��i����fDL9����������~���I��K�4>L��L��聎���u$I��u�H��A�K�<>1��2i��E���DH��L)�I����@L��L��L��A�U L��t$��A�UX�������'�����D$H�������H�|$ �H��L���z����DH����H�|$XL��H����������f�H�t$ H��L��耷��t���H�t$ H��L���h�����H�D$(H�@H�D$����D1��Q����A��P����H�����a�����/���f�H�|$X�H��L���y��_���fDH�|$X�H��L����y��Z���H�D$(H� ���H�\$(H���m��H�Hc@�� �H�L$(��uH������t�у���t	��@�H�\$(H�l$@�Hl$8H�{H�4(�vx�H�k H�CH��� ��H�D$(H�XH�D$HL�|$@H�T$8L�$H)�K�<<L���g��H�t$jL��L���W��H�L$(H��� ��H��H%�?��H��H	�H�A�EH�<+����)H�|$(蕭��&���L����������H�\$@���fDH��L��L��貵��L���D�H�l$@Hl$8)�Hc�H9�RH�D$(H�X�(�����H��L��L���]x��<����H�D$(H�h�O���f�H��L��L���B�����H�<(��Ϯ�H��H�D$(H��� uhI��H�pI��A��M��ucH�D$(H�HL�`�uH�����t��H�؃��� ��HE�H�L$(H��H%�?��H�H�i �[���Hc�1���e�����H�D$(L�`H�p�H��L��蝴�H����c��H�
�
H���
�MH�=�
��g�@SH�����=0t[�H���&���H�5˧H�PH�7H�81�芦�f.�AWAVAUATUH��SH��(H�H�t$dH�%(H�D$1��� �.H��L�w��H��tVH�?7M�,H�H9D$��H���m��H�|$I��L�'A�� tIL�gH�OM��tMH�$I9����H�L$dH3%(H����H��([]A\A]A^A_�f�I��H�OA��M��u�IcG���M9�w�L9���IcGI��L��L��L��L��H)�脤�L��L��H��H��A�W����IcGH��H)�L9�r�H��L��L���O��1�H��L��H��H���f��
HD��L�wH�_�����[��H�$HcPF�|!�L9�u'I����J�4!H��H�$H��PH�$����H�t$H��H�$蠧�H�|$H�����H�$=0�����E:|������M��M)�I��~L��L��H���ߣ�������L��L��L��H���v��I9��SH�D$H�D$H�D$�a���f�A��
�e���fDH���x��H��Hc@��LA�E�<
t<
�#���I�]�L)������I�]�L9�vA�}�
uI�]�@L)����L��L��L��H��H)��̢�H��L��H��H��U��HcELE�L��H)�L9�sXL��L)����DM9������A�}�
t���A�}�
tI��A�}�
u�I�]�L9��r�����I��M9�w��DL��L��H���B��1�L��H��H��I��M)��d�M)�L��
ID��"���L)������}��ff.�f���H���C��=�HE�H���ff.���H�����=0�HE�H���ff.���UH��S1�H������xtH����[]�DH���0���u�H��1�貧�=��H����[]Ð��SH��胡�H��[�p�������H��7H��H���H�8�"��f���S�v�H��H��覲�H�H��H���H��H�[�ff.�f���H�}7SH��H���H�8����H��H�����H��[�ff.����H��t?USH��H��H��H��H�)7�KH�8�v��H��H��H���v�H��H��[]�fD��u���SH��tH���n{�H��[H���u�譿��ff.�f���S見�H��H��覱�H�H��H���H��H�[�ff.�f���S�f��H��H�����H��[Ð��USH��H��t%�~H��u!H����z�H��H��H��H��[]�������H��7H�5��
H�81��O��ff.�@��H��7H��H��1�H�8�5��D��H��7H��H���H�8���f���H��7H��H���H�8����f���UH��SH��H��H���w�H��H�މ�H��7H�8H��[]���ff.���U1�H��SH��H�=[�
H���"��H��H��H��[]�t���S1�H��H�=w�
��H��[�����@��uH�����tH��ƒ���t��tH����SH�����H��[H���ff.�AUATUH��SH��H��H���8��H�MD�hH�ʁ� ��I��I��A���D)�H�L9���H�K��tRH�uH��tH�uM����H�L��J�<!H��H%�?��H	�H��A���uH��H��[]A\A]��H�����t�H��ƃ���t�H%���H�H�U�� �DH��%`H=`��L�e H���L�mH�mH�H��`@H�� �����mH�������H��ƒ�����H��H�k�� L�kH�����t���.���L��L�c ����H�����tH�������t��@H�H����I�|$���I�$H��H��[]A\A]�fDL�e�i����H�����H�(I��� u*H��L�h������f�H��L�m��H�����DL�hH�h����I�����tL��H�����H�����tH�1҉������6����I������3���I�$�ƒ����!���H
I�$����f�H�kL�kL�c A�������I��������L��H���b��뭩uPH�{I9��F���跢��<���f�H�kL�k�{���H��L��赩�H���i���DIc�1��Z��|���H�=B�
1��K��ff.�UH��SH��H�����H�uH������t/H���g��H�H�UH%�����0H	�H�H��H��[]�@H���xh����@AWAVI��AUATUH��SH��H��� �L�n��@�H�^ L�fL�{H�L+cL��L)�L)�� �H�����t"�΃���tH��H�΃���H	���M��H��
L9s���L��M)���X�H��H����LhH��L`I��A��H�uH��������H���V��H�H�UH%�����0H	�H�M��u,H�����t#�ƒ���tH�€�H�{H�t	����H��H��[]A\A]A^A_�f.�H���x���L��+PHc�L9���X�I��H��H�A��u
H�������H�ǁ� H�MI��A�� ��H��H�uH����H���wH�{H����M���QH����H%�?��H��H	�H��� �!H����L�lH��轘�@A�E�������Hc�1�L���X����f.�H��H�v����K��H�uI��H��H��A�������o���H���f���`���fD�W�I��H��H�A��u
H�������H%�?��H��H�H�E�� �NH����H�CH�EH�E tH�EH�CH�E H�C H�E%@H	�H�H�UH��H%����H�E@����H������>H�] M����H�����t(H�E�ƒ���t��@H�EM��uH��������H�{uH�M���W���H�#�����K���DH��������H��������9���H�{�y���H��m���f�H�] M��u�H������z���H��H���|�H��ƒ����^���H
H��P���H�E����L�kLk����H�M����H�{����H�UH�u�c�����������������������ƒ�������H%���1�H�����f��ƒ���������� H����H���X���g����[��H�MH�I��A�� ���DH�����tH��H���{�H������A���H�E�ƒ����#����*����H��L$�Dc�L$���a���f�H���(c�H�U���5���H�
p�
H���
��H�=Q�
�V�H�
f�
H���
��H�=2�
��V�ff.�@��AWAVAUATI��USH��H�����H�I��I����t`H���������nH�O�6H�sH�SH�8���H�0H��H��H�0H�� 1�H�3I�$I�]I�H��[]A\A]A^A_ÐL�5�6H��I�>���H�0H��H��%`H=`tpI�>��uH9{t�H�����H��H�0��H���u��uI�$H���[]A\A]A^A_�@I�$4H���[]A\A]A^A_�@�� ��H����H��H���ړ�H��1�H�ߋH���H�3���V���H������I���������;������/���H�
¾
H���
�)H�={�
�(U��H���a������H�k�u������AWAVAUATUSH��H��趥�H���6H�*H9�uH��H��[]A\A]A^A_�D�H��L�3�Q��oCL�xI��M��@H�C A���I�GA�� t'H�@t4H�[ I�\$ ��u	H�����ueI��@I����L��M	,$�t���A��u�H��H������H��H�I��A����� u��oKAL$H�C I�G�f.�H��L���x����SH��賤�H����P�H��[H�����f.���S�[�H��H�o�6H�8�P�H��[H��������UH���SH��H�?�6H�8�P�H��H��H���a�H�#���H��H��[]�AWAVAUI��ATI��USH��8H�|$dH�%(H�D$(1��%0=��萣���x��H�|$�y�H�(H�D$�� ��H�XH�hH�H��L�t$�P���I��H9�w�MfDL���Ƞ�HcD$H�H9�v2H��L��L��H���V��H�t6M��u�H���v��HcD$H�H9�w�H�D$H�D$ M��H�D$ME���L�l$L��L���@���I��H�T$(dH3%(L��u%H��8[]A\A]A^A_�H��H�X��H��8���萈���SH���Sp��tH��1�[���@H��[�W������H�tH����H��1��N���ff.���H�~uEH��H��� u����H��H��養�@H�H�с�HH��@tH���fD��H;w u�u��H�H�FH9G��H�FH9GuaH�F H�G H�%@H	�H�H��z���H�
��
H���
��H�=>�
��P�H�
v�
H�m�
��H�=�
��P�H�
��
H�N�
��H�=�
�P�H�
.�
H�/�
��H�=�
�P�ff.���AUATI��UH��SH��H��贎�H��D�h�(��H��L��H��[D��]H��A\A]�]���ff.�f���USH��H��H��� u3H��H�w��H���xq�H��H��H�����H��H��[]���@H�WH�w��ff.���H���W�H���+}�H��H���d�ff.�@��AWAVAUATUH��SH��8�[�ÉljD$�)d���$�xI���UI�~�h�L�`L�MA�� ��I��L�mA��M�M9��7I��������A�U�LfDI9��GA�U��$@�ƀ�@��@��\��{�SM���I��fD�I��M��I�]M)�������#t����\����"���¾�� ��^v}�����<$��L��L��L��L�L$�Xq�L�L$I�����������D$~<L��L��L��A�V �L�L$I��������=��D�\$��A��Mc�LېI9��DI�L9��#���L��1�H���[o�L�mI��A�� �wH�]L�mI�I�GI� tI�GN�L H�h�"I9���L�4���L�c<"�Y<\�Q<#��<
�<
�!<	�1<��<��<��<��<����L�]�Q�^��M���E\M)؃|$��L��L��L��1�L�$H��L����J�L�$L�����fD�B�<�8�������M��CH���6H�5[�
H�81�請�����fDI��~�I��I�����fDI�������L�mL�M�(���I��H�]A������1�=��@��H��	����@�E\L��H���E�L9�������"H�]f�EA�~�L��I�NH���
1�H)�H���I��D$�t$L���B��I�H%���H
I�H��8L��[]A\A]A^A_�fDH�EM9�v)�S��$@�ƀ�@��@�u��{uH�U�E\H��H���E#L��H���E�����\nH��L��f�E��)����\rH��f�]�L������A�\tH��L��fD�]����f�H��A���r����������DL��L�$�r�L�$�����������A�\fH��L��fD�E�����\aH��L��f�M�����\vH��L��f�}��m����\bH��L��f�u��X����EL��L���J����\eH��L��f�U��5���L��L��H��L�\$(L�D$ L�L$�L$�&m�L$L�L$L�����L�D$ L�\$(���$�����L�\$ H��L��L��L�D$L�L$A�V Hc$L�L$��L�D$L�\$ L�=��KL��H��
L��1�L�$�G�L�$L�L$L��L�L$L�$��b�L�$L�L$L�&�I�,�f���L��H�ʹ
L��1�L�L$L�$�;G�L�L$L�$�U1�1�H��SH���j�H��H��H�����H��H��[]�fDAVI��AUATI��USH��� �fH��L�o��L9��H���M���H��L)�H9�HO�M�H���L�����+PHc�H9�}
I�.H9��L��H��L���j�I��I�4$H�������]L���E��I�E�� tDI�}�„�uDI�$H%���H��0H����HD�I�E[L��]A\A]A^�@���„�t�L��褘���x��I�UH���H�� L��I�U[]A\A]A^��I������A�[]L��A\A]A^�DA����z���E1�1�����L�oH�_���L���Xn�H��H���]��H���D�H��H����I��LpH�h����DH���(o�I�UH������6���H��I�U���DL���(S��������UH��SH��8dH�%(H�D$(1������G����H���t6H�H��1ɺH�����H�L$(dH3%(��H��8[]�fDH�
�� txH�JE1�H�T$ H�t$H��H�L$ �j[�H����H��t�H�T$ H�t$�H���4����f�H���t8H�H�V��t\H��H��H���	����c���@H������H��H�t$��{�H�t$H���f�H����{�H������H����{�H����~����Y|�f���U�SH��H��H��6H�8�B�H��?�?H��HLߨuH�����tH��ƒ���t�� H�EH�] H�{�轋�H�E�H��H��[]�ff.����H���1�1��[���ff.���SH��H��dH�%(H�D$1�H���uLH�����tC�ƒ���t9� uB�� t
�@@t+fDH�D$dH3%(uJH��[�f.��� t�H�{�B����H�$��bH��1�H���
B�H��� t��ƒ���u����{���H����u,H�����tH��у���t��`@H�� t�fD1��DSH�_ 膂�Hc@H�[�ff.�f����qH���
�閂��fD��H9�u�fD���ff.���@��uH�����t
�����tH���ku�H���@��@��uH�����t
�����t3SH��H��E1�H�=bn81ɺ��fF�H��[H���z��f.�H���ff.����AWAVAUATUSH��H�����L�+H��I���3@��oCM��L�pH��A���@H�C I�FA�� t?H�@uWA��tVH�] ��uH�����tH��H����f�f�I��@I����L	eH��H��[]A\A]A^A_�@H�[ �f�H��L����H��H�I��A����� u��oKMH�C I�F�ff.�f���H����AWAVAUATUH��SH��H��H����@���RH�I��M���lH�MH�ρ� �H��H����H���4M����H��H�΃�H��L�����H��D�p艒�L��1�D��H���ɰ��I��H��� �ZM�}M����H�]�� ��H��H�u��H����L��H��?L�H�H9�}�6�H�H9�|&H��t�I�<H��L��H�L$�ߍ�H�L$H�H9�}�L��H)��nI�E�� ��L��H%�?��H��H	�I�E�H�uH��H����M����H�����fDH���v�I������H�E�8�CM����H��������H�I��H���bH��H�΃�H9������H���6H�5O*H�81��W��H�E�f.�M�}M�������M�eK�<'�A���H��L������H��L��[]A\A]A^A_ÐH��������H�I���t���@H�]H�uH���k���H��L���|���[����H������H�E����fDI�<L���L�������KG��S��H���<�H��H��I���(z��P���H���(��H���[<�I��I��XH��� t:M�eH��L����y�����fDH�u����Ic�1���<�����L��H%�?��H��H	�I�E�L�` I�|$��WD�I�EI�EA��uI�����t��H�ƒ��� ��HE�H%�?��I�E�`���H��6H�5S)H�81��}����H��� �(H��������'AWI��AVAUATUSH���Ɏ��I�H�$�� �	I�W1�L���_�I��I�H�� ��I��I�_I��A��I�I�6H���� �BI��A��I��A��0A��K�lH���:I��I��A��A��Ic�H�L$E����A���BL�������x�0A�� ��H�$A� �x�`H���7e��E�A���A�� �?fDH�����������D�H�������@I�6I�H�D$ H��H�� �� �H���H���vI�WH��H��H%�?��H	�I�I�7H������upL���H���d@A��I�nInA��0H������I�A�������I�_M�gI��l���H����I�GI�FI�7H������t�L�����M�.L��I���Ll$M�.H��[]A\A]A^A_�@Lc�E1�L)�M��u7L�I9���H�$L��H���'8��Ҁ;�Lc�DH�L)�M��t�L��H��H��L�L$�x��L�L$믐L��H��H���b��L�I9������H�$L��H���'e�Lc�L)�M��t���f.�H��������@H��H�ƒ������H��Ic�L)�H�D$H�I9�vf.�H���C�H���EH9�u�I�6I�H��H�� �� �����I�6I�Ic�H�L$H��H�� �� �����SH�H���� ��H��H�����„���%0=t+H���#����xtH������H��H���:���H��[�DH���H���H��� t@H�CH�SH�T�H9�v�fD��2H��H��@�p��JH9�r�H��[�f�H��H�C��H�T��fDH��„��Q���H���а��H��[�ff.�AWAVAUATUSH��HH�/H�|$ H�t$H�T$dH�4%(H�t$81��� u(H������H�D$ H��H�D$0H��+�H�D$ H�@H����H�t$ H�nH�l$0H�H�f�61�1�譄�H�D$(L�p H�D$0H9���H�L$0�$E1�H�L$f�H��I��H)�I��L�oH��,�c�H��H�t$H�|$I�L�xH��L�pH�@O�/L��L�(H�D$I���Px���BHc�$H�D$0H�SH9�r�Hc$I����H�|$ 1��Z�H��H�HH� tH�HH�D$(H�X H��u�dH�[H�H��t(H�SH��t�H�sH�����H�SH�[H��H�H��u�H�D$(H�x H�@ H��tfDH�_�}�H��H��u�H�D$ H�H��H�$H������t\H��輇��f.�H�|$ �?�H��H�t$8dH34%(H��u|H��H[]A\A]A^A_ÐH�|$ L���#Y�H���_���H�|$ �C���1����H�D$(H�x H�@ H��tH�_�}�H��H��u�H���6H�5N�
H�81��Tv���m�ff.�@��USH�Ӻ`H��dH�%(H�D$1��D$`�!���H�߉D$�խ��H���}���H��H���B����D$@t;H�T$H��H��H��踟���D$�HE�H�L$dH3%(u'H��[]�H�t$H��H�����H��H���E�����m�ff.���USH�Ӻ�H��dH�%(H�D$1��D$��a���H�߉D$����H��轆��H��H��肕��H��� u:��tC�D$@u\H�t$H��H������H��H��豴���D$tH���DH�{t	H�{u�f��H�L$dH3%(u H��[]�@H�T$H��H��H��荞����&l�fD��ATUSH�Ӻ@H��dH�%(H�D$1��D$@����H�߉D$�3���H���ۅ��H��H��蠔��D�d$A��@��A��tUH�t$H��H���5���H��H���ʳ���D$%���HE�H�L$dH3%(��H��[]A\�f��%0=u�H���~����H�؄�u����c=�H9�t܃}t�A��u�%0=t��D$@�Q���H�T$H��H��H���S����D$%�T�����j���ATUSH�Ӻ H��dH�%(H�D$1��D$ �?���H�߉D$��H��蛄��H��H���`���D�d$A��@��A��tUH�t$H��H�����H��H��芲���D$%���HE�H�L$dH3%(��H��[]A\�f��%0=u�H���
}����H�؄�u����#<�H9�t܃}t�A��u�%0=t��D$@�Q���H�T$H��H��H�������D$%�T����i���ATUSH�Ӻ`H��dH�%(H�D$1��D$`���H�߉D$�c���H��I���(���H��� uPH��H�݃�t'�D$@tW1�H���#T�H�T$L��H��H��H���}���H�L$dH3%(H��u9H��[]A\ÐH�SH��H��t�H�{t�D$@u�H�t$L��H���f���H�����h�ff.����UH��S��H��H���y9��H��H�����H��[H��]�^G�ff.���ATUSH�Ӻ�H��dH�%(H�D$1��D$��ߏ��H�߉D$�C���H��I������H��� uPH��H�݃�t'�D$@tW1�H���S�H�T$L��H��H��H���]���H�L$dH3%(H��u9H��[]A\ÐH�SH��H��t�H�{t�D$@u�H�t$L��H���F���H����g�ff.����UH��S��H��H���Y8��H��H�����H��[H��]�>F�ff.���ATUSH�Ӻ@H��dH�%(H�D$1��D$@迎��H�߉D$�#���H��I������l$��@������H���%0=���� tZH�SH�sH����Q�H�3H��H��������H�����H���z��H�L$dH3%(H����H��[]A\�@H��H�s����8�I9�t~A�|$tv�����D$@tCH��� t+H�S1�H���-Q�H�T$L��H��H��H��臘���v���f�H�������H�t$L��H�����H���L����H������H���X;��������e�H���%0=�]�������f���UH��S��H��H���i6��H��H���,���H��[H��]�ND�ff.���ATUSH�Ӻ H��dH�%(H�D$1��D$ �ό��H�߉D$�3��H��I������l$��@������H���%0=���� tZH�SH�sH����O�H�3H��H��������H���~�H���w��H�L$dH3%(H����H��[]A\�@H��H�s����6�I9�t~A�|$tv�����D$@tCH��� t+H�S1�H���=O�H�T$L��H��H��H��藖���v���f�H�������H�t$L��H����H���L����H������H���h9��������c�H���%0=�]�������f���UH��S��H��H���y4��H��H���,���H��[H��]�^B�ff.���@��u&H�����tH��ƒ���t��uH�����4�ff.���AWAVAUATUSH��H��H�-��6dH�%(H�D$1�f�}�	H�J�6�L�+L�8M��A���L���u)��oCL�pH��@H�C I�FA�� t;H�@ukA��trH�] ��uH�����tH��H���5P�DI��@I����L	eH��H�L$dH3%(��H��[]A\A]A^A_��H�[ �f.�H��L���E��H��H�I��A����� �j����oKMH�C I�F�f�H�|$�o�H��H��HD�H��� uH���������H�S����a�D��AWAVAUATUH��SH��H��HcJ9J��I��E1�t@H9�sH��L��H��I���&'�H�H�H9�w�H��L��[]A\A]A^A_�f.�H���R��u�H9�s�I���������L�u�������L��L9��L��H��H#t���L��H#��H��I9�w�H��H�
�
H)�Hc�H�>��@H��E1�H)�H�H��H��A��I��G����}�xR�}�H�u�xH�}�H�u�x>�}�H�u�x4�}�H�u�x*�}�H�u�x �}�xH)�I�����H�u�@H��t�H��H)�H��I�H��L��H��I����%�H�H�H9���������f��H���Hc�H�4��H��������AWAVAUATUH��SH��H���Hcr9r�I��I�΃�tzE1�H9�w�`H�A� I��H�H9�s1L��H��H���
L���A�0IcD$H�H9�HB�I��H9�r�A���tH��L��[]A\A]A^A_ÐA����H���P���v���H9��uE1�L�E�I���������fD�����L��L9��>L��H��H#t��L��H#�H��I9�w�H��H�
�
H)�Hc�H�>��@H��E1�H)�H�H��H��A��I��0����}���A���uA�H)�I��
���D�}�x2�}�H�u�x(�}�H�u�x�}�H�u�x�}�H�u�x
�}�H�u�y�H��t�H��H)�H��I�L��H��H��L�D$�J�L�D$��~#A�H�HÁ� A�I��H9������}���H���0��D�H����H�H�4�H�u��H�����A�E1��@���AWAVAUATUH��SH��H�dH�%(H�D$1���%0=�~I���rw���xtlM���H�]�� ��H��L�mH����M�t5��0�\$uH�L$L��L��L���$���H��HcD$��t%H�UH���H	�H�E�@H�]�� t/H�]H�L$dH3%(H���VH��[]A\A]A^A_�DH�������IcL$A9L$��� ����tW1�M9�v�L��L��L��H���."�H�I�M9�w��|����L�mL�uM������H���Hv��I������L���M��u����1Á���}I���������I�n�M9�����fDA�E����H��L9���L��L��I#Et�DL��H#��H��H9�w�L��H)�H���^��H�
�
Hc�H�>��f.�L��1�L)�H�H��H����H����DA�~���L��L)�H��d���A�~�x@A�~�I�v�x5A�~�I�v�x*A�~�I�v�xA�~�I�v�xA�~�I�v�y�f�H��t�H��L)�I��H�L��L��L��H��� �H�I�M9��������f.��H����H�H�4���,�I9��;A�L$�����M9������I���������I�n�f�A�E����H��I9��4L��L��I#Et��DL��H#��H��H9�w�L��H�
��
H)�Hc�H�>��A�~�xMA�~�I�v�xBA�~�I�v�x7A�~�I�v�x,A�~�I�v�x!A�~�I�v�xA�~��v���I�v��H���b���H��L)�I��H�L��L��L��H���L�H�I�M9��������fD�H����H�H�4�I�v��g���L��L)�H��A1�M9��m���A�E%�=���I����H�M9�u��G���L���w���L�����I�UL��1�H��H��L9�v%@A�E%�=���I����H�L9�u�I��H9��z���H�f�I�EI��H��H��H��H��H	�H!�H��H��H�H��H��H�H��H�� Hƒ�H�L9�w������X���H��1����H�@H�xH�DH����H��H���]�@��H���)�H��H���GZ����AUI��ATUSH��H�?H���������'6�H��H���,,����H���x��I�mI��� tmI�]I�mH�H9���E1��@H�I��H9�vE1�E1�H��H��H��L���F�H���H��������?I9�wAK�D-H��[]A\A]�f�H��I�]��H��H��L��[]A\A]�^Y�fDH��L��[]A\A]�V�fDL���,��������f.����Y��AWAVI��AUI��ATUH��SH��8��$%0�D$=t�p���x�����D$L��H���b�H��I���wd�=0�lM�A�� �M�~M�NH�]K�H�D$�� �H�EH��H�D$��I9��%M����$D$��$L�Ʌ��)H��M����L)�H9����$���.M�H��toM)�L���FfDM�H�L$L��L��L��L�$��?�L�$I9�� H��L)�H)�H����I�I��H�|$M��H��L��H����V�I��H��y�I��H��8L��[]A\A]A^A_�DI��M�~H�]A��K�H�D$�� ��H�EH�]H�D$���@E1��5���I������I�������L��L��L�L$ �P���L�L$ H��L��H��H�L$(L�L$ �3���L�L$ H�L$(���@D�D$H�t$L��L��L��L�$����L�$I������M�����������tA��1��L9��@AUATA�̹UH��H��SH��H��H���e���I��E��t'H��x8H���D�H��� u8H����L��H���5��H��L��[]A\A]����C���@H�S��f.���1��5���D��SH���;�1���t
H��[����@H���<�H�����H��[H������@��USH��H����tH���&Q�fDH�����t�H��ƒ���tܩu@��u�� t&�@@tH��H�k�[�1�H�ߋHH�����H�H%���H�H��[]�H�Ķ6H�5=�
H�81��[�ff.�AWAVI��AUATI��USH��H��(�Z�D�hA����H��� �"H�SH�CI�����L9�wH�L��H)�I9�LF�H��L�$�*7�M���H�L�$H�ց� ���H��L�CD)�H��Hc��H��������L)�H9��	N�<1L9�}6H��������?I9���L��H�����D)�H�H9���L�CK�I���I�<L��LE�L�$L���h�H�L�$�� urL��H%�?��H��H	�H�M�A�A���H��(H��[]A\A]A^A_�@H��H�S�������1���@H�k L�CH�K�����L�{�f.�Ic�DH�,hI9��H���"�����uAH�����t8�Ѓ���t.��@t)H�
˃
H���
��
H�=݂
��f.�Ic�H�{�H�$H�L�L$�)�H�k L�L$H�CH�$H��� �����L�C���D1�A����A���GE������A������E��1�fC�D/�����Ic��L�L$H�H�$�/`�L�H�$I��L�L$A�� ��L�SH�sM����L�[L�S��uH�����tD��L������ ��LE�L��H�k H%�?��H��%���@I�WD��I�I�D�H��I)�E�A��A������A��1�����H�4
D9�r����M��H�sI��A���Y���L��L��L�L$H�L$L�D$L�$�e�L�L$H�L$L�D$L�$I���)���E��A�C�D/����H�4�6H�5o�
H�81��W�H�
��
H���
��
H�=߀
��ff.����SH���3�H������H��[�fD��AUATUH��SH��H���V�H�}H���� ��I��I��A��H����H��������L)�H9��Z@����H�����t������tu���a��uaHcHH��tp��@@��H��~-��@�KL�H�}�H�4�N&�H�] H�}H�EH���H�}H��[]A\A]�@H���K�L�E�>����H��~ɸM�$)�H�I9�~�I�<��]�H�]H���� u_I��H�uI��A��M��u[��H��H�M���� L�m��L�e HE�H��?��H���\���fDH��H��L������H�}�?����L�mH�u�fDH��L���ec�H���H�!�6H�5H�
H�81��U�H�	�6H�5��
H�81��U�H���6H�5�
H�81��hU�H�
�
H���
�ZH�=�~
�I�f���S�T�xH��tH���6H�SH�5
H�81��U�H����=��u�[�f���H��uH�����uSH��H����H�[�@�����u��ff.�f���AWAVAUATUSH��HH�|$(H�l$ H�t$ H��dH�%(H�D$81��W;�H�t$ H�|$(���I��H�D$(L�A�� ��H��I��H�D$A��H�D$ L�A�� ��H��I��H�D$A��M��H��������A�\$L)�L9���H�̴6O�,8��1�L��L�D$H�8����L�D$H� I��H�H��M����M����J�<)����aL���i+�L�����_d�H�T$(I�H�H%�����0����� ��I�H�D$(H�D$0H�D$(H�l$0H�D$ L��H�L$8dH3%(��H��H[]A\A]A^A_�fDH�HM���Q���H�t$L��H��L�D$�`�L�D$H��M���4���H�t$J�<L��H�L$�`�H�L$����DH�T$ H��H�� H���0Hc�H	���HD��3���H�XL�@H�\$�?���fDH�XL�xH�\$�P���fDH�T$ H���0H	����f.�Hc�1�������I�H���6H�5�|
H�81��$R�@��H�ݲ6AVAUATUSH�H9G��H��H;F��H�H���� thH�EL�o�� unH����I��H�����H��A����D��������@�uLA9�uGH��������L)�L9�|5H��H��[]A\A]A^�"Z�f�H����I��H�E�� t�L�e��[�4]A\A]A^�H�
��
H���
��H�=�z
�3�H�
l�
H���
��H�=gz
��@��ATUSH��H����H�t$�{H������nH��ƒ����]������IH9\$�,H�|$�|7�H��ƒ����#��_����� t�@@��H�l$H�E�� �)H��%`H����H=`�#L�e L����3H�3H�SH�U��H����� ��HE�H��H%�?��H�H�E ��H�S�ƒ����:���u#L�c H���2��@H�I�|$uI�$H�uH�������cH���c`�H�H�UH%�����0H	�H�H��H��[]A\�fDH���D�H�U�k����H�{��U�H�l$H�CH�CH�E�� ����%`H�UH=`����H��H���E���H��H��[]A\�f�I����������I�$�ƃ���������������H�
@y
H���
��H�=x
��f�L�c H������I�����u���������@L��H���3�H��ƒ���u7I�$�ƒ��������H
I�$����H���@�������@H��H�R�6H�5�~
H�81��N�f���SH�
D:8H���n��H��[H����UH��SH��H�|$H�|$�4�H��H�D$�+S�=0t1H�|$���8_��H9���u�}�„�u)H�D$H��[]�H��6H�T$H�5�
H�81��vM�H�HH�UH�5�LH�Ȫ6H�81��VM�fD��AWAVAUI��ATA�USH��H��h�|$,dH�%(H��$X1��H�D$8H�D$@%0=tH��E1��m^���xA�ċt$,���Y���D$,E1�D�x�H�D$HH�D$H�D$@H�D$H�D$8H�D$H�D$PH�D$ �	fDI��K�D�H�|$H�D$H�Q3�H�t$HH���TO�H�|$HH��E��t#�%0=t��]��E1�H�|$H�xA��1�L�D$E��H�L$H�t$ ��I���ef��I�FM9�u�H�����H��� �@H��L�k��M�t�:1Ƀ}��M��E���zH�D$HA�����H�D$H�D$PH�D$ M9���H�\$L��E��A���"�D9��'�A��H��I��M9�s]E��tA��ƒ�v�H�T$H��L��L���R�A��D9��fL9�tD��D�T$H��H��U0D�T$HcD$HE��H�I�M9�r�I��H�\$H���hJ�@A�����H��� �\H�SM��I)�H��H����L9�t+H%�?��I��I	�H��L��fDL�kM��u?��H��$XdH3%(�~H��h[]A\A]A^A_�f.�L�KM��t�1Ƀ}O�t
������T@M9��7���������|$,�@A���I��M9�����I��A�E���9�u߅�~�΀|4Pu����H��M����2��������E��u�������D$,��~6A�����H�L$@H�T$8D��D�T$H�t$ ��k��D�T$���\���HcD$H�x����M��L+CL9C����L�CH������H���Z��H���T����L$,������D��|P��������D��|P�����1�����f�Hc�1�L����������@�f���ATI��U��H��S��L���H��H�����H��[]A\���AWAVAUATI��UH��SH��hdH�%(H��$X1�H�H�D$8H�D$@�� �$�������H�D$HE1�D�w�H�D$H�D$8L�l$@L��H�D$H�D$PH�D$�f�H��I��H�|$H�D$H�
/�H�t$HH���
K�1�H�L$��H�t$H�|$H��I��M��I���Ib��H�SI9�u�H��L������1�A���L�mA�� �L�eL�mM�E�A��A��M9��H�l$(I��L����D$$�+����|P��I9�tA�$I��H��L9�sl��t�E�ƒ�v�H�T$L��L��H���;�A��=��]H�L$@H�T$8�ljD$H�t$�Ci��D�L$�����D$$HcD$HH�L9�r�H�l$(H���DF�@A�$���KH�E�� �H�UH%�?��I)�I��L	�H%���Mc��T$$I	�H��L�u��u�H��$XdH3%(�H��h[]A\A]A^A_�f�H�zt�H�z�����@I��L�eA��M��x���@L���/�L�m������A�� �H�����DI9�t
L��L��D��A�W0HcD$H� I�A��DD����f����|P�������fD�\$$�I����L+eL�e����D$$���Hc�1�L���K�����=�����(�@��ATI��U��H��S��L���H��H���k���H��[]A\�AWAVAUI��ATA�USH���H�t$xH�T$p�L$HdH�%(H��$�1��%0=t�rV��E1�xA��H�\$xH���+�H�|$p�+�I�E�� ������H�T$pH�
�� ��H�z�„���H�t$x%0L��D$�aG�H�t$pL��I��H�D$ �LG�H��I9�tH�t$pH�|$x�5G�H��H�T$xH��� �rH��H�zH��H��$���H����H��$����o�D$LH�L$pH��� �H�QH��H��$����l$LH�HDŽ$�H��$�DŽ$�HDŽ$�DŽ$����L��$�M��L���H��I9�u�H�D$H��$�H��H����W���ƒ���������DŽ�������ѐI�}tI�}�v���fD�H��$�dH3%(��	H���[]A\A]A^A_�f.�����„��H���L��H�޿����DH�|$t H�|$H�t����7�����T$��T$H�D$��H��$�H��$�@�����H��H9�u�H��$�L��$�H�D$H��H���V��A�ǃ���}L��H���V���ǃ��u��$�A���v'H�|$t?H�T?D��H�|$H�t	����fDD��H�މ����G���DE�뀉|$��|$H�D$�1�|$ ��L���ty��I�E�� ��H��M�}D�\$H��I�H�L$�K�L$hE����H�D$0HcD$hH�|$0�H�H�D$X�H�H�D$(L;|$�tH��$�L�l$`I���D$8�����D$HH�L$@�l$l��D��D����A�����D;t$8�`D��H��E���F��D$HD�t$8Hc�E1�L��H+L$(H�D
H;D$0��H��L��D��S0E��tH��L��L����?��DDt$HD�t$H�|$uA���� BD$�D$I�L;|$��L�t$ H�T$@L��H�t$L���,�A��L9��H��D���eE�Hc�Hc�$�I�A�������H�|$�.E1�H;\$ �D$8����A������I�EM�}D�T$HH�D$0L�H�D$�C�D$hE���R����{tH�|$�6A���,�D$HL;|$�d���� E1�D�D$LH�|$�t$�,@A���A���u=�C�I��I9���A�H�Ћ������t�E��t�A�/E�����Hc�$�Hc����H�T$H�t$XH�L$PH�|$(L)�HкH�H�D$0��H�L$PH�D$(L�,�"����D��H�|$H�t6�N.�H���)D�D$LE�������H�Ǩ���&�A�����fD�|$�����|$8�� BD$�D$���H��$��H��H���R�����u�$�f�A�>�tA�.I��M9�u�|$ �d���H�D$ �x�U���H����&���ED$�D$�8���H�QH�AH��$����H�BH�zH��H�4H��$���H��$��������H��$�H������^�x���Hc�$�H�$�H;�$��Z���H��$��D$L�M���L��M��H+D$(L�l$`H��I�E ���|$hA��vH�D$(I�mI�EI�EA��tPH%�?��I�EH�D$0I�E �D$H������HcD$=0tI�UH���H	�I�EH��L���)�L�����I�����t���H�ƒ��� ��HE��I�}�+C��_���D�L$H�t$�D�L$LE������D�t$l�v���L�d$f�Hc|$h�L��H�|$XL)��H*��Yhx
�H,�H�H�D$0�C�H�D$(M9��II�Ɖl$PL�d$ H��$��D$HH�D$@L�l$`���D����A����QH��D��D���A��D$ �D$H��M��Lc�L+D$(K�DH;D$0�3M9�t0H��L����S0�T$ ��tL��L��L����:���D$ DD$H�D$H�|$u���� BD$�D$Hc�$�M�I�L;|$�gH�T$@H�t$L��L�����L9���H�މ��X@������
���H�|$���t$L��t^D�l$P����W%�A������D$HL�t$(1�I�E �$�|$hA������H�T$X1�L���d���w����1�L9����D$ �����$��e���H�T$f�H�t$XL�D$8H�|$(L)��H*��Ysv
�H,�HкH�H�D$0��	�L�D$8H�D$(N�4�x�����H�|$�L$ H�t6�)�L$ H�������|$L���_����L$ H�Ǩt\�w�L$ A�����L��L�l$`H+l$(���H�D$(1��D$HI���m���H�T$X1�L���c���v���I�}�%@������#�L$ A������0�f.�����"�f���1���D��ATI��UH��S��L��H��H��H�����H��[]A\�ff.�@��ATI��UH��S��L��H��1�H��H����H��[]A\�f���AWAVAUATUSH��X�|$dH�%(H��$H1�H�D$(H�D$0����H�L�l$8A��H��L��H�t$H�D$8�J�H�t$8H���M;�H��A���L�l$8I�EI��A�� �7I�}�����=L�d$@H�L$(I��L��L�D$0�L���UR��DH�E�� �sH��L�}H�¸��I�,��E1��{uH��E1�� ��A��L9��H�D$$E1�H�D$�@�|@A��I��I9�sTE��t	A���v�H�T$H��H��L���m��=���H�L$0H�T$(L����~Y����HcD$$A��I�I9�r�Ic�H�DH��$HdH3%(�%H��X[]A\A]A^A_�f�H����H�����������{�����H����A�ƅ������M��� I��M�eH��L��L��Sp���
L�l$8�w���fD���|@�����8���fDL�}�M���<���H�mH���/���L����f�L�\$H�D$(L�|$0I��L�d$@H�|$8H��M���L��L�\$H�D$�gP���D$L�\$��M�sI�D�H�D$DI�L��I��H�D$8���H�t$8H����8�H�L$M��1�H�|$8I��L��H���
P��L9t$u������r���M�m����H���;�=0���H�T$$L��H��L���u��H�U��� u?H������&���H�MH�H9�v��H��8A�uA��H9�u�Ic�H�D���H�M�H�����H�UH������H�붋|$����f��,�AVAUATI��USH��H�|$H�t$��H�|$�8:�=0��H�t$L���7�H�t$I��H�H��% t{H�^H��~ZI�,$�� uvH��I����H9�>H��tuH�vI��H��I)�M�L����3��uI�,L��L��L���c3�I9�tfD1�H��H��[]A\A]A^�fDH������I�l$H9��M�d$H��u�H���fD��ATUSH����tH���)��H�����t�H��ƒ���tک����u�H�����I��H����H��� ��H����H��H���Xk��H�H��L)�� uZH��H��?��H��H	�H��� uEH�kH��H��2�HcP�E��UH���0��t	H%���H�H��[]A\ÐH�CH�k�fDH�k�w�����H��[]A\�1�H������H��6H�5~c
H�81���2�ff.��UH��SH��H�|$H�t$�x�H�|$�7�=0tWH�t$H���j5�H�t$H�H�ځ� tGH�^H��~.H�E�� uEH��H�}��H9�H��t?H�vH���1��t1�H��H��[]�@H������H;]�H�}H��u�H���ff.�H��dH�%(H�D$1���wCu5H�H�$H��uH�T$dH3%(u)H���H����H�$��f�H�ъ6H����R���)�f.�AWAVA��AUATUH��SH��h�|$H�T$dH�%(H�D$X1��NC�H�D$P�����D$�����|$H�]��H�E�|$H�D$H��H�|$P��H�|$�B��H�D$ �@�D$8���SH��|$���D$A��L�-�w
H�t$ H�|$���H����H9���H)�E1�A��ltA��r��I��I��?I�I�M��L)�H�D$0H�D$H�D$(H��Ɓ�0�t$<H���I�� �(H�D$H�@H�D$H��������L��H�I��H��H��H�I��H�H��H�H��H9���H��H�T$(H��HT$0H)�H9���H�H+t$H9���H�D$H�|$L�4�A�L$8L��1�H����_��I��H�HH� tH�HH��$��H��H��L��M)��/=�H��H�M9�~�M��~H�|$(��HL$(H�D$H�8H�|$(�� ��H��H�|$H����L�|$I�H�� ��L��H��L��I��<�L)�I9�~�H��~H�|$0�^L|$0�|$8A��zI��� �&I�VH%�?��I)�I��I	�M�>H�t$ L���
�|$�O�D$<Hc�=0tI�H%���H	�I�H�D$HH�D$PH�D$HH�t$XdH34%(L���(H��h[]A\A]A^A_�DH�D$HH�|$P�!���H�|$P�i2�����@H����H�D$�����L��M�t-D�D$L��H�H�L$ L��I����s��D�D$L��L��H�D$(H��H�L$ H�I���s��H�D$0H�D$H��� �f����@M+~M�~���H�D$H�|$H�p�Q���H�T$H���&;�L�|$H��I�H���]���A�uL��H��I�����`���f�H�|$H��H�|$H�t$H�0�H�|$HH�D$ H�/�� �NL�oH�oH�t$ ����H�|$H�D$I�ċ%0=t�Y>���x�����D$H��t	M����H�.�6H�5~W
H�81��,�DH���x#�H�������)�T$���>���H�|$Pt
H�|$P�0�|$����f.��|$<��1ҁ|$< �����H�D$HH�%0�D$<=�w���� �{���@A�uH��L�����H��L����DH�|$���I���c���fDI��1��E���fDH��L�o�����H�D$HH�%0�D$<���f.�H�T$0L��L���09����H�T$(H��L���9�H�����HcT$81�L������r���H���6H�5,�H�81��4+��"�ff.�@���c���f����r�r���f����l�b���f���AWAVAUATUSH��dH�%(H�D$1����F�G�H��I��I��L�l�L�r�}@I��I��A��H�<$H�I��A�� ��H��H����I9�|;M����H��L����H�M��u|H��H�Ӄ�H��H�H��H���Q)�H9�t|I��M9���I�L��H�$���H�4$H����,�H�MI��A�� �X���L�M�Z����H�w�k����H�_H����H�uH�M�_���H�4$H��� u$H��H����H���)���]�����f�H�VH�v��fD1�H�\$dH3%(uH��[]A\A]A^A_��� �f.���UH��S��H��H�����H��H���H��[]�6���fD��AUATUSH��dH�%(H�D$1������G�H��I��I��H�l��U�H�4$H����H��� ��H��H����H9�|H�{H��tH�{�(����I��L9���I�}H�<$@��uH�����t
�����tQL���9�H�4$H���=+�H�H���� �k���H�4$H�CH��� �n���H�VH9�|�H�v�l���DH���H�����q�����f�1�H�\$dH3%(uH��[]A\A]��^�ff.���UH��S��H��H���	��H��H���H��[]���fD��SH��H��H�|$H�t$�U�H�t$1�1�H������H����HD�H��[�ff.����AWAVI��AUATU��SH��H��xdH�%(H�D$h1�H�=.
8�(H�D$@�8�H�D$HA�Ņ������N�U�Hc�M�$�A����I�������d�A�$������d�L�d$@I���{H�|$@�T$���T$L�|$@I�ĉ�M���Bd�E���d�M��LD�L�d$@����	���2H�D$HH�D$81�H���.I����L��L�D$P�1�H�528����H�|$PL�d$XH��4t
H���sE1�I��4�6I���,A���wI�A�M��tE�wI��?�?LL�E1��:����H�����fD�eH�D$8L�d$@I���J���f�H�L$hdH3%(H���8H��x[]A\A]A^A_�f.��"��������L�d$@H�D$HM�>L�|$8����H����H�|$H�M)�I���������z����D諗�H��
8H��
8H����H��
8��������M���.���L��H�����H�#���������%�I�����H�D$H�L�d$@����L���C�I���|���I������H�t$8H���a������U�Hc�I�<�H�������Ra�L�d$@�]���DH������U���H��ƒ����D���������0���Ic�H�L$M��� �#�@@��H�C H��L�\$H�D$�"�L�\$Hc@HD$L9��HL�KM�L�kA�A���s��tvH��ƒ���t�� H�L�c �����H�=&N
��H�8	8�_���H�D$H����T$�P�T$I��H�D$@�W���H�t$8H���"���F���H�l$8H�EH�u�� tH�uM����H���ƃ�����H���3�H�H�UH%�����0H	�H��6����L����)��oCI��H�C L�KI�A��H�|$8�C	�H�D$8L�A�� u6I��A��M��1�H9�@�����H�{�L������I��H�C���L�hM9�ML���H�{L����/�H�l$8H�E�'���H�T$1�L������y���H�����������H�CH��L�\$(H�D$H�CH�D$�!�H�t$L�\$(Hc@L��L�\$H�0�H�T$ ��(�L�\$H�T$ I��L9�IG�H��uH�#����L�K���H�t$H���/�I���މ�H�|$HtH�|$H�L$�%�L$�1�����������H�D$H���H�A|6H�5�Q
H�81��!���^���H�����H� u
H��H��ÐH�@H������H��A��I�����)��L�Hc�H�M��A�� ��L��H����H9��H��Hc�H)�H9���M��t8A��uRI������tID�σ���t.A��@@t%A9���H����A9�}�I�x�%DD�σ���u}DH)�I�@ A9�}�I�xH����~�1�H�����f.�H�w�O����A��uI������tD�ȃ���t	A��u`1�L��H����R���A��@�{���H�
�I
H��Y
��H�=�H
�|��H�
`J
H��Y
��H�=�H
�]��H�~z6H�5�O
H�81��E�D��H��dH�%(H�D$1�H�t$�.U��H�T$dH3%(uH�����@��H��dH�%(H�D$1���H�t$H����T��H��tH�T$dH3%(u?H���@H�)6H�8�D$��tH�5�I
1����H�5�1�����ff.�f���ATUSH�� H�4$H�|$H��dH�%(H�D$1���H�|$�	0��H�<$�0��H�$H��� ��H���������H�|$�u��H�$I��H� tmH�[�;ty�{tsH�l$��H����H��L��ƀ�H�����H��t_H���b�H��H����!�H��H�L$dH3%(uVH�� []A\�H���f�H�z���\���H��}6H�5%P
H�81��[��F�H���!�H�5VH
�������f���H���� uH��H�w���bR��f�H�wH�W�SR�����qH��I
��)�fDATA��USH����uqH�����tH�������������H���%��H��H��u
�����u#E��uCH��[]A\�DH�����H��H��uݾH������f�H������H��H��t�E��t�H���!�=0u�H������H����H��[H��]A\�DH���~����H��t>@��tH���v��H��HD�H���@H�����t؋H��������w��fD��ATI��UH��S���H��t"H��H��t1�H�=�F
1����H�][]A\�L�����H�5WN
H��H��s6H�81��c�@��u	H�����uSH������H��t[����u�H���H��s6H��H�5=F
H�81����SH����ugH�����t>�����tt��t��H���c��H��H��u
�����u![����f.�H���8��H��H��u߾H���"��f�H�����H��H��t�[���f�H��[����H��[�ff.���AU�G�ATUS��H����wMH�>I��H���*���1�I�Ń�uH�U��tH�H��L��L��[]A\A]�����H�����H�����=��fD���f.���AUATA��USH������H�-�8L�.H��H�H��tZL�����I��D��H��H��H�=8���H��H��uH��H��[]A\A]�����t�H��H��[]A\A]�M*�D�H�=�	��H��H�
8���<��fD��UH��S��H��H���i��H��H���H��[]�&���fD��SH��H���p��H��tH��H��[�?��fD�[Ð��H���D��@��H��H�T$H�T$�I\��H���@��ATA�UH��S�H��%0=t�)��E1�xA��H����)��H�3�� u#H��H�{��H�[E��H��H��]A\�^��H�{H�sH���ff.���AWAVAUATUH��SH�����0����I���o)���xtuH��xpM�4$I�\$A�� urL��A��0L�,+�?)��I�ċ@A9D$�A�� �!��tL1�I9�v!DH��L��L��H�����H�H�I9�w�H��H��[]A\A]A^A_�f�I�\$�f�L�����u�D��1��A1�A����I���������M�u�I9�v�f.�����L��I9���L��H��H#t�(�L��H#�H��I9�w�L��H)�H��H����T�H�=�L
Hc�H�>���Hc�H��H�H��H��1�H����H�����f��+��I9���A�D$�����A�}���L��H)�H�����A�}�x@A�}�I�u�x5A�}�I�u�x*A�}�I�u�xA�}�I�u�xA�}�I�u�y�f�H��t�H��H)�H��H�H��L��L��H���
��H�H�I9�������V���f.��H���Hc�H�4��I9��+���I���������M�u�������L��I9��4L��H��H#t���L��H#��H��I9�w�L��H)�H��H�={K
Hc�H�>��A�}�xJA�}�I�u�x?A�}�I�u�x4A�}�I�u�x)A�}�I�u�xA�}�I�u�xA�}������I�u�@H�������H��H)�H��H�H��L��L��H���I��H�H�I9������2���fD�H���Hc�H�4��I�u�����H��E1�I9������fD�%�=���H����H�I9�u�����H����H���i���H�SL��1�H��H��H9�s%fD�%�=���H����H�H9�u�H��H9��v���H�H�H��H��H��H��H��H	�H!�H��H��H�H��H��H�H��H�� Hƒ�H�H9�w�� ����AWAVAUATI��UH��SH��H��(dH�%(H�D$1��D�H��I����=0�VL�}D��%0=��H���$���x��L��H��E1����I��L��H���٬��I9��L��L��L)�H)�H9�LL�L��M���H�E�� �dH�}M���`H��L�d$N�'��L�<E����M��tM9�MG�L�3L��� ��I��A��L��M����L�}A�� ��I��L�eA��K�<H�$H���rH���M)�I�P�D$�fDL)�H��H���)�t$L�����I��H���H�$H��L��L����I9�u�L��H��L���D�L��L)�u�H��H���/���H�L$dH3%(�H��([]A\A]A^A_�DL�}A�� uI��A�A���l���L�}A��]����H�}M��u7H��� tH�SH�s�������H���z���f�H��H�s����L�}L�d$N�'I�E���m���H�T$L��L���T��I���U����H������$���@L�s�[����H�[����L�eH�EL�H�$�a����/�ff.�@��AWI��AVAUATU��H��SH��H��(dH�%(H�D$1���!��H��H��I���0���I���H"�H�D$���w���kM�'����M����@L�������A����I�M����M9�MO�H��txDL���h��H��H���L��H���@���H����H�@H��DH�DH�L$dH3%(��H��([]A\A]A^A_�@L���H��u�I�����t�A�$��������k���H�A���0��tH��� ��E1��xH�A���� �-H��H�{��H�4L��L����T��H��L��H���v��H��H���K��H������f���'���fD�����H�D$M�'��u&H���%���A�H�|$����r����M�����H��u��S���f�H���
����L���}����M��F���H���^���I������Q���I�$�����A�������2���f�L��H�T$���H�T$I�����H�{H�sH�����H�|$t
H�|$������#��L���+��H�5�8
H��H�2f6H�81��
���ff.���AVAUI��ATI��US��H��dH�%(H�D$1��S�H�$��������I�m����I��E1�A��M���CH������6�E��������1�L���̦��I9���A�$A�%0=tL��E1��R���xA��H��L����I�$�� ��H��I�|$��H�4E��H��L���tR��1�L��H��H�����L��H�����H��������fDM�u���}I��A�����A���AI�M����1�L�����I�����M��u�H�����t�H�E����u���^���@H���`��H��H���*1�L��L���V���L��H�����H����I���H�@H�xzH�DH�L$dH3%(��H��[]A\A]A^�@������H�$I�m��uFH������A�H��I����A���������E1�����H���`��fDM�u��uAH��u����DH���%����L�����I�����I�|$I�t$H��,���H�<$tH�����������)�H�����H�5�5
H��H�c6H�81��
�fD��ATI��USH��H�� H�|$dH�%(H�D$1��	�+HHc�H9�}|H�|$J�#H��� u[H����H9�twH�GJ�4 H�����H��H�D$H�D$H�D$H�t$H����7��H��H�T$dH3%(uUH�� []A\�@H;Wt"H�G�@H�|$H� t�H�G�@�k��H�����H��L`H;X}�H�X���ff.�AVI��AUI��ATI��UH��SL��M����H��tKH����L��H���U�H��u�L��L��H��1�����L��H���4�H��[]A\A]A^��H��言��H�����H��u�L��L��H��1����H�����H��[]A\A]A^�fDH��L��H���b��M��u���ff.���AWAVI��AUA��ATE1�UH��SH��dH�%(H�D$x1������A���_�I��H�D$h���:E���1�E�����H�D$H���A����E1�H�|$�D$DH�D$A��I��M��H���y��H�D$8H����1�H����H�D$(H�D$(A�H�H�$�$�����9	M����H�EH���� ��H��H�]H��H�\$ ��H�H�T$PE����A���5A���
H���bH�EH�D$XHcD$DE1�E1�L���D$0H�$H�D$H�H�|$(1�L��H����I��H����L�L$���M��L�L$I����M�}M9���I�GI�WH�H9��H�|$ �?
�|$0�@L;t$X�$�D$0I���M���g���L������L������R���f�I�A���2���I�vH�t$A���(���H�|$ht
H�|$h�
�1�D������H�Yb6E1�H�H�D$(H���b���H����H�D$(H���2D�H��^6H�59
H�81����fDH�]H�\$ H]H�\$PE���S���H���%�=��H�t$ H9t$P��	L�t$ 1�H�D$hL�d$(H�l$0A�H�\$PH��M��H�$I���KfDL��H+T$ �� �O��	���CH�|$tHcD$DH;D$~ZH�$E1��L9�vFH�L$8L��L��H�����HcT$hI�E��u�M��L+T$ �� ����	����L�$L9�w�H�,$H�l$0L�d$(H�UH�с� ��H�}����H�D$hH�����A���t���H�|$@����H�|$����D$D�D$D�����|$DI�����H�D$�T���H�E�� �0�������M���Q1�����I���E�k�E�������H�D$h������I���J���H����H�D$X����u��D$D�`���L�L$PH�D$ I9���E1�1�M����L�d$I��L�d$H��>
H�l$M��H��H���2fD���8H�|$tHcD$DL9���M��1�M9���I��A�M�M���I)�u�����L��H)�M����H���{I��H�|$��I��L����L+$H����M����H��I�GH�H�$A�~^A�I����I��IcGI��L9�~>I�GJ��H���t�I�GJ��H)�M��xH��t�H��L��I���
���I��IcGL9��L��H�|$tH�D$H�D$H9D$H�L�4$�D$0����H�$I��L��H��L�����H���=���H���@��L�L$����fDH�������H�$H)�M��x,H��u'I��H�|$tEH�D$L��A�����H�t$0H�|$(M��H��L�T$�.���H�|$L�T$I��u�L��A��`���H�D$ H�T$8H�t$PJ�<0����D$0H�I�����fDM������L������I��M����H�UH�с� �e����������t9H�|$�OH���wH�MH+$M��xH��tH�$M��H��L���c���M��uI��H�|$xdH3<%(L���`H�Ĉ[]A\A]A^A_�H�t$H�|$L�$����H�|$L�$I���o���L������H�T$8H�t$PL�L$H�|$ H<$����H��L�L$Hc��hH���_H��L�4$�X���H�D$(L�0A�� �^I��H��A��H�D$0L�t$H���HY��H�t$(H�����L�d$(L�l$ H�$HcD$DH�l$8L�t$PH�D$Hf�M9���L��L��L�$H�t$H��H�|$0H)��h��I��H��x$J�\%H�<$L��H��H���	��H9�t$H��I9�w�H��L�d$(H�l$8H+\$ H�$�%����L)�H��M��xMH��uHI��H�D$N�, I�H�|$�d���H�D$H�D$H9D$H�N���L�d$(H�l$8L����H�t$8H�|$(M��L��H+T$ �n���I���H�$I��H��L��L�L$�R���L�L$H��L�$�����D$D��H���H��H�у�H9$���������������H��H�у��~���L�t$(L������L��H���W��M�6L��� ��H�D$(H�x��A���������{�0H����H�D$(L��H��H�x��H�H�D$hH��A�H���m��� �:���H�D$(H��� �OH����HcT$hE1�H9�A������H�D$(H�pH�@H�t$0H�D$���L�������c���H�D$A��H�D$E��I��M���y���H�$M��L�d$H�l$�(���H���V��H����Hct$DI��H�D$ H�t$I��H9D$P�wH��L�,$L��L�l$M��H�\$PL�d$I���7Lc�H�|$M��L��L��L��w�H�|$I��tI��L9l$~xH9�vsH�$H��H�����H��H+T$ ���L��H�$L�d$M���q���H�MH9$�������A������A���I��H��yxI��1�1�H��L�����I���$���L��M��I��L+t$ L�d$H��L�4$����H�D$(H�xH�pH��"���H������M��uxH��I���

��=���H�}������I�����H��H�$����H�$�������H��ujL��H����H��uOH�D$(H��E1�8 A����H�$�t���H�t$p�H�D$p��I�����H�D$(H�@���A���H�D$(H�xu�H�D$(H�@�����ff.�@��AUI��ATUSH��H��(H�7dH�%(H�D$1��� �EH����I��A��u
I�������L���x��H��H���`L��H���@��H��H��H���B�H���H��H���~��I��L��1�H���N��H�H�l$H�$�� t]H�SH�uL)�� u`H����H)�H��L����H��H�D$����H�L$dH3%(��H��([]A\A]�@H��H�u��L)�� t�H�u�@A�E��������L��H��L���}��I��H��x-���1�H�����H���#���fDL�g����H���`q��H��H�$�Tq��H��H�D$�g��H��H�D$����-������L������H�5�$
H��H��Q6H�81��h�����ATUSH��H��1�H�� dH�%(H�D$1��W��H�ŨuH�������1�1�H��H��襙��I��H����L��1�H��蜹�H�H�l$H�$�� t[H�SH�uL)�� u^H����H)�H��L��c��H��H�D$���H�L$dH3%(��H�� []A\�@H��H�u��L)�� t�H�u�@������>���1�1�H��H������I��H��x;H��H�����H��M���&���H��� uO�����������H�����H��H�$�o��H��H�D$�o��H��H�D$�=���'���H�}����I��f�AWAVAUATUH��SH��8H�|$dH�%(H�D$(1�H�|$�P��L� H�D$A�� �KI��L�hA��H����I��H�D$H�%0���1Щ��K�D%1�H�D$M��XDH�D$H�D$ H�D$H��HDl$H�L$(dH3%(H����H��8[]A\A]A^A_�f�H��H����L�I9�~�H�t$I�|L����H�|$H��Lc�L���X��H��u�H������f�M���g���K�D%1�H�D$� f�H��H����L�I9��9���H�t$I�|L������H�|$H��Lc�L�����H��u�H���'��DL�hL�`������ff.���SH���S���tH��1�[�4���@H��[�W�����SH���#��1���t
H��[����@H�����H���P��H��[H�����@AWAVAUI��ATUSH��8H�|$dH�%(H�D$(1�H�H�|$H��H�D$H�������B���H��H���
����M����H���
��I��H�D$L� A�� ��L�pL�`M�M9�vcL���@H��L��H���I9�vGE1�E1�H��L��H��L���f��H��H��~(H��H�|$H��L)��[��M��u�H��H���I9�w�H�D$H�D$ M��LDl$H�D$L�l$H�L$(dH3%(H�D$umH��8[]A\A]A^A_�DI��L�pA��M��>���@H�|$���H�D$���@H�|$L���c���H�D$�@H�|$����������f���SH���C���tH��1�[�D���@���H����H��L�)���[1�1�H���L��ff.����SH������1���t
H��[��@H������H��� ��H��[H������@AWAVAUI��ATU��SH��hH�T$(H�L$dH�%(H�D$X1�H�T$H�D$@H�D$H��H�D$PA�ą�������D�}�Ic�I�\�����H�������1�������1�H�\$HH���BH�|$H�ҹ�L�t$HD��H��M���@1�E���1�H�۸HD�H�\$H��������H�T$PH�D$8H��tL�|$PL��������H�\$HH�vK6H�H�D$8H��tGH�=�7�21�L�D$@�H��H�5��7�Dz�H�T$@1�H��4t1�H�������H�D$@H�|$8H�|$(�hH��� �|����������H�H�D$(�� ��H�HH�@H�D$ H�L$H�I��H�|$8�d��H�t$8H��� ��H����L�5}P6H�|$(I;6���B��I��H���H�D$8IcMH��� ��H��H�h��H9��}�$I9��L�|$M9�sFL��M��L��H��L)�H�����H���[M�4L��L��L��L���^��I9���I��M9�r�M9��,@H�D$H��HDD$H�D$H�L$XdH3%(H�D$�,H��h[]A\A]A^A_�DH�\$H����H��H���w��H�\$�H�����������������H�\$HH�D$PM�uL�t$8���H������L�|$PL���I�����@�H�=�>�?��H���7�������)���fDH��H����H�D$L�$H�T$ ����f�H�T$P�H�\$H����H�|$@�M��M)�H�|$(L��L��H+t$���H�|$H����H���k��H�D$(H�D$PH�D$(����H�|$@L�4tD�$����L)�H�|$(L��H+t$H��豯�H�|$H��tH�����M�������L����H�����H�T$(H��� u3H��H9T$uH����H9D$ t�H��I6H�5�+H�81����f�H�D$H9Bu�H�B���H�^����D�}�Ic�I�|�H�������,�H�\$H���fDL��L��L���������H�D$L9��o���H��I��L�|$P@H�$�L��L��L��H���o���
���D$PH��L��L�����Hc|$PL��L��,H�A�U��twHc�H;$tH�M����H�$L9�r�1�M������H��L)�H�|$@uH�H�|$(L��H+t$���H�|$H��tQH���y��E1�L9��=�������M��Hc�LD�H�듐Hc|$PH��H���L9������b���f�H�����H�T$(H��� u+H��H9T$�B���H����H9D$ t��/���f�H�D$H9B����H�B�����I���_���H�hH;H�����I�EH�t
L��H��Ѕ������$H�D$8�d���H�D$P�O���H���h�������$����M��M)�I9�����I)�H��H��L��M)�����MD����A�}thH��H�����L��H�D$8����H�|$8�1�H�����H�H�D$8�� u"H��H�h���������H��H�D$H����H�hH�X���L������������L��L��L���k���L)�I��������H�|$PtH�|$P�$����$�1��������H�D$P�;������������$*�ff.���ATI��UH��S������tL��H���1�[]A\���@����H������H���L��[E1�]H��A\���ff.����ATI��UH��S���+��1Ʌ�tL��H���[]A\�T���@1��Y��H����@��AWAVAUATI��U��SH��H��HdH�%(H�D$81�����1���@�ƃ�����9���A�����I�<$��h��I����\H������OH��ƒ����>������*�1�H��L�����I��H���L�%0�D$�|��L��H�P��u I�����tM�}D��������@H�JL�!H�JL�9���
I����H���H�|$0H��L���G��H�D$0H��H�����H��H����H���c��H��H��訾�D$��=��/H�D$0H�(w:���0��0�N�|$ ���D$����@M��M)�� �vH����H��� �CH����I��L9���N�4"M)�I�H�KL9�t$L��K�4 J�|%H�L$H�H�L)��n��H�L$H�t$0H� �'H��J�<!H���G��H��� ��L��H%�?��H��H	�H��� ��H�CH��I����HcPA����GH�Lcl$H%���I	�H��L�+H�L$8dH3%(��H��H[]A\A]A^A_�DH������I�|$1�H�|$0����I��H���\���H�|$0�x���M�����f�L�KL9�GO�4!M)�I�H�K����@H�h����L�sH�C����H�v�����H��L�L$L�D$�~��L�D$L�L$HcpH��� �T�ƒ���t*��@t%H�
'
H�W 
��H�=9
���fDM��H�{�L�D$M)�L�L$I�M�L��i��L�s L�D$H�CL�L$H��� �������fDH��1����I��H��� ��H��H�K��H�L$H�D$����L���B��H�����H�D$0H��� umH�SH9T$��H��H����H9T$���ƒ����+������"���H�t$0����H�CH�D$H�CH�D$�w���f�H�L$H9K�xH�S�L��L��H��L)��G��L��H���l��H��H�D$0����H�D$0�@���DH�����H�+I��� �FH�KH�kH��L��L��H�L$�+��H�L$=�
H��J�<9L��L)��y+��=��H�|$0���H�����@I������t���A�E����MD��a����A��R���D�D$����M��M)�)�I�H�M�I9����J�<6�����H�L�D$I��L�L$�� ��I��H�sI��A��M������H��L�[���� L�S��L�s HE�H��H%�?��H����@�T$�/����H��H�K�����A�� uGI��A��M�I���o���@���e���A��V���D1�L��莢����f�M�}�L�SH�s�A���L��L��L�L$(L�D$ H�L$L�T$�>��L�L$(L�D$ H�L$L�T$I�����������������H��>6H�5�
H�81��I��H�j>6H�5= H�81��1��H�|$0��I�VH�5��H�HH�y@6H�81�������ATI��U��H��S諫�L���H��H���+���H��[]A\���SH���í��H��~6H��� tH�SH��1�[H)��D��@H��H��1�[��H)��+��H��[�?��ff.�@��SH��裯��H��~>H��� tH�SH��H��[H)����H��H��H��[��H)��ʢ�f.�H��[�ת����UH��SH���~�H�]�� u5H��H�u��H�H��H���+��H��~&H��H��H��1�[H)�]�`��H�uH�]��fDH��H��[]�b��f���ATUH��SH��� u]H��L�gH�Ӄ�H����I�M��t.L9�v)H��L��H�����H��~H)�H��H��H��[]A\���[H��]A\���@L�gH�_�fD��AWAVAUATUH��SH����H�]I���� ��H��L�e��M��M�<��M9�A��E1�A�u(L��L��L��H��L�D$���L�D$I�H��I��A��L��L��L��H������H��$E��tH��H��[]A\A]A^A_�9��f�H��L�H��L��[H��H)�]A\A]A^A_���fDL�eH�]�P���ff.���SH���#���H��tH��H���9��H��1�[H��餠�@H��[鷨����SH������H��1�[H���u��DAVAUI��ATI��UH��H��SH�H��衂��H���H�]I�Ɖ؃���uG�� �H�]L�1�L9�uLL����I�$�� ��H����H9��H�CI�E�!����H�hH�EL�0H�EH�L9�t�I�]H��tsHc}��tj轞�}I��~J��H�UHcþH��H��xH�UH��L��H��H)��}��H��L�������9]�[L��]A\A]A^�fDL)�L��L��H��[]A\A]A^�?���A�[]L��A\A]A^�fDH�������@I�L$H9�����I�|$H�4H�H������H�H�I�E����I�|$H�4��D��AWAVAUATUSH��H��H��8dH�%(H�D$(1�H�H�D$ �� ��H��H�K��H�L$H�D$���H��I���	7��������H�C1�L�t$ I�����H�D$�+H�t$H9t$�TH����I��H9D$�?L��L��L��H�����H��t/H��L�d$ �B��H��� t�H�D$H9C��H�C�DM��yKH�L$(dH3%(H����H��8[]A\A]A^A_�DH�CH�D$H�CH�D$����f��L��H��L����������1�L�t$ I�����H�D$�fDL�d$ H�|$H��I�����L��1�L��L��H�����H��u�M��x%H�޹L��L���R��H�\$�-��������H�\$����H�]76H�50H�81��$�����ff.�@��AWAVI��AUATUSH��8H�L�:H�|$H�t$dH�%(H�D$(1��� ��H�����F�H�|$I��H�L�g�� tL�gM���UH�۸LD���0�������x��H�D$M�H�|$H���AtH��� �#H�WH9���M����H�%0= �jIcEA;E��H�T$H��I�,I9���I��H)�H9�HN�I���-H�l$H9���H����H)�L9�}I��H��xyL�H�D$M�>H�D$ H�D$H�L$(dH3%(H���9H��8[]A\A]A^A_�fDL��H�T$L��L��L�L$���L�L$H��I9��?E1�H�|$~�@1��@H�_�t����H�H�l$�Q���1��o���H��IcMH�I9�LO�H��� ��H����H9�|$���L��L��L��L�����I��H��t�H�D$H�P�H�T$L9��M���k���L���1fDL��H��L��L��L�L$I������L�L$H��H���5���M���I)�M�����DH�wH��H�VHI�H���]����L���s��H�l$H9��q���1�����H��������@L��E1�L��L��H������I���>���@L��L�L$��r��HD$H�D$�����M��I�,L�L$����H�|$����L�L$�f��L�L$I9��~���H�T$L��L����H�|$H���9���L�L$H�T$ H��L�|$ L�����H)�I���������ff.�@U��SH��(H�$H��H�|$dH�%(H�D$1��7��H����H�|$H���a��H�$+HHc�H9�}$H�|$H�4H��� u|H��H�O��H�H9�tyH��u��tOH�|$H���2��H��H�D$H�D$H�D$H�t$H�����H�\$dH3%(H��uwH��([]�f����f�H�OH�GH�H9�u�H)����H��H�����H���P��H��H���e;��H��HXH�$H�e���H�E�i������@������f����1������UH��SH��8dH�%(H�D$(1������G�����H���t6H�H��1ɺH���Q���H�L$(dH3%(�gH��8[]�fD��u H�����t����������1�H���!p��E1�H�T$ H��H�t$H��H�D$ ���H��t_H��t�H�T$ H�t$H���'���q���f�H���uH�����t
�����te��t@H�H�V��t$H�H��H������0����H�����H������H�����H����H��H�t$���H�t$H���f�H�VH��H��������@1�1�H��H���u��H�¸H��������H���������H��H����������膸������UH��S��H��H���Y��H��H���H��[]����fD��@��u&H�����tH��ƒ���t�u
H
H�H���PH��/6H�5�
H�81������ATI��UH��SH�����H��H��46[L��H��]A\�q����UH��SH��H������tH���n��fDH�����t�H��ʃ���t������u�H�ʁ�`H��`tD�@H��D������H����H9����� u9H��H��?��H��H	�H��� u$H�{H��A�� H��[]�f�H�kH�{��fDH��Ic�1�[]�P��H��.6H�5�
H�81��x��H��.6H�5
H�81��`����AWAVAUATUSH��H���,H��@����H�������H��ƒ�����������I��H��I����� ��E1�L�'�@@L�gA��H���%��D�hH��� uYI9�t1�D)�Hc�H9�|bH��H%�?��H�|+H��H	�H��A��jH��H��[]A\A]A^A_ÐH�������D)�Hc�H9�}`E����I9�t�H��D��L��H��L)��~��H�CH�<(H�k�A��~�Ic�1��ߐ��DL�'I��E1�A���(���D��L�{����t	H%���H�I9�L��H�KHO�H��~H��L���{��H��H�<)�A����H�H��H��?��H	�H�+E������L���"�����DH�C H9�/H)�H��HN�H9�I9�����H�C����DIc�H�{�H����H�k H�C����Ic�1��ޏ��b���H��16H�5�
H�81����H�",6H�5�
H�81�����f���SH������H�������H�3��������� uc��uH�b16H�H9Cta�� tIH���`%H�� tZH��u
H�sH���!��H�����H��H���M1��H�H��[ÐH��H��H�3[Ð��t8H��[�o���H��u�H�
��	H��

�IH�=G�	���@�� uH����H�����믾H���J��H�s��@��SH��H�uH�p06H�H9Gt
H������H��tH��[���f�H���8��H��H��[�̏�ff.��AWM��AVI��AUM��ATI��USH��H��hH�L$(L�L$8dH�%(H�D$X1�����H��H�z
8H�8袛�H��$���$�H�@I�wI�}H�D$0艸�H�D$H���/H�D$0H�T$I��L�t$HL��H�P H�D$(L�H�D$H�D$PH�D$H�D$HH�D$ �P�H��������1�H�|$(H��I��L)�H9�sH��1�I��I��H��H���L��HB�H�H�����M�t$I�$ tM�t$K�.H�T$E1�M�.H�t$ H�|$H�L$PH�L$蒦��u5L�l$PL�|$HL��M)�I)�L��貾�M��t	M���L���H���r���@H�\$0H�|$�D$H�C �=��H������D$��t,�H�\$XdH3%(uMH��h[]A\A]A^A_��H�t$PI�D$I�$ tI�D$H)�L�����H�t$8L��询�L�������D��AWAVAUATI��USH��H��t}I��H��A��M��H����I9�tc�{������H9���I�,$�� tXI�T$I�l$H��H�T$���AVH��I��AUH�T$M�G1�H���T���H��XZH��uL��H��H��[]A\A]A^A_�@H��I�T$���f�H���H����n���L������=�[���DL������H9�t�L�����H��H��H��蕡���{��I��������A�1�韫�ff.�@��ATUH��SH��H��誣�A�ă�t"D��H���G���B��H��H��[H��]A\�@��H�����=t�H��1����H��[]A\�ff.�@��USH��H���N��H��H������H��H��H��H��[]�߯�ff.�@��USH��H��议�H��H�����H��H��H��H��[]韯�ff.�@��UH��SH��H���{��H��H��H��H��[]�g�����@��uFH�����t=H�7�����t0��u(S�� t'H�wH���c��H��[�Z��f.�H���@H������ff.�@��H��tx	��n��H���PH��*6H�5�	H�81��C����ATUH��S耤�H��I���U��L��H��H��H�����H��[]A\�ff.��AWAVM��AUI��ATA��UH��SH��(H�H�4$H��H��A��A��A������ ������%0���E�E9�����t	E���qM���8����E�E9��#���A���v��t�� tE1�M��f.�M����Lc�H�4$L��H���m��D��H������H�EH%���L	�H�EH��(H��[]A\A]A^A_��H�}���-���D��D�D$胞�D��H�D$�v��D�D$H��H�D$�x��M��t�H�E�� ��H�}��D�D$����H�4$L��H���	��D��H���.��H�ELcD$H%���L	�H�E�J����������IfDD�D$�6��D�D$A��H�E�^���DD���ȝ�H�<$L��H���Y��A��M���u�������A��AE�EE����D�����6���H��D�D$H�T$膰�H�T$D�D$��������z���H���b��H�T$D�D$������E��tm��u'H�E�t	A��tgH��D�D$���D�D$�Á���M����������f��� ����D���D1��AD�����H�<$L���R
��A���M�������A����D��萜�D��H�D$胜�H��H�D$H�JH�58�H�PH�$6H�81����H�'6H�5�	H�81����AWAVAUI��ATU��SH��H��XH�4$�����I���q���1����H�D$H�����D$(����H�����H�$H�9H���� �H��LccH�iH��H�l$ ��H�T$0H�A���H�D$H�|$t0I����I�E�� �YH��I�M��H�L$H�D$@L�l$ M��H;l$ �K�$L�t$ A�H�D$H�$M��H��H�D$8��H�I�L9�vsH��H��L���@�����W���LcCI����M9���H��M��L)�L9�IO�H9D$�yH�t$H����H�T$L�����M�M��L9�w�I���JM9��P� �fD���1��u5I����
L��H���v��H��H�D$����I���a��D$(���U���A�H��XL��[]A\A]A^A_�DH�$H�8�� ��H����L�D$(�t��L�D$(I��M9�����L��L��L��L�D$(L)����L�D$(���H��L��L����H������H�$H��� ��H�|$8H9|$ ��	H����H;T$0��	H��H����u��H��� umH��H�p��L���2�����DL)�I��I9�|�w����M)�M9��c���K�4.H��L���U����}��J���H�$H�x���H�PH�p�fDH�$H�|$ H9y�	H�$H�Q�E����H�$LccH�QH�iH�T$0H�l$ H�A������H�D$8H�|$t=I���I�E�� �I�MH�L$8I�MH�L$%0=�����D$(H�D$ L�E�M��I9���H���������H��H#t��H��H#��H��I9�w�H��H���	H)�Hc�H�>������������1�L�5��	��H���	��ID�H�LIH�L$H�D$�K���I����M9�rYL9�����H�D$H����H�T$H��L��� �E��H���m��L�����c��I�H%���H	�I������L��L��L��L)�����H�D$ �H���Hc�L�4M���L�d$ L9��CH�$A��D$I���������L�|$M��M��H��H�D$H���D$ H�I�I9��5H��H��L���ܤ��������H�|$LcC�gM9���I��M)�M9�MO�I���?A�H�D$8H����H�T$H�|$H�����L$(��u�D$ M�M9��vL��L��I#$t��@L��H#��H��I9�w�H��H)�H��H���P��H�
��	Hc�H�>����}��L�|$I���)H�$H�0Lc|$�fD�}��m�}�L�}�x,�}�L�}�x"�}�L�}�x�}�L�}�x�}�L�}�y�@M�������L�|$I��t�L9��CHcl$�����1��H���Hc�L�<��DH�$H�8�� �H����L�D$@�t��L�D$@H�D$M9��k���L��H�|$L��L�D$@L)�詽�L�D$@�I����H��L��L���z��H������H�$H��� ��H�|$HH9|$ ��H����H;T$0��H��H����p��H�I���� uzH��H�p��H�|$L�D$@� ��L�D$@I�%0= �������I��@K�4'H��L���I���������I��I��u�����H�$H�x���H�PH�p���H�$H�|$ H9y��H�$H�Q�5���L�}��O���L�����M��L�|$I����M9���L9��@���H�t$8H���@H�T$L��� �;��T$(HcD$��HE����H�$H�0L9����� uPH��H�������I�����I�EH�D$I�EH�D$���H�$H�0�I��L��L��L��L)��Ļ��[���H�$H�x�H��H��L��L)�蔺�H�����H�$H��� twH�$H�|$ H9y��H�$H�QH;T$0��H��H����n��H��� �H��H�p��L��� �;����H��I�MH��H�L$8��H�T$����H��H9L$ �[H�����M�����H�D$H���	H�D$����}�L�u�����}�L�u������}�L�u������}�L�u�������}�L�u�������}�A�L�u������H���H�$I	�L�8A��Z���A��܀}��x���M���^���H�D$ �b���1Ƀ�H�K�	��H�@�	�L$(��HD���H�L	H�D$8H�L$���H��H��L��L)����H���T��H�$H��� ��H��H9L$ �&H����H;T$0�H��H���8m��H��H��� ��H��H�u��H��L��蓹�H�EHcT$� %0= HE��-���H�$H�0�� uH��H��������I������H�$H�x��H�PH�p���H��H�$H%���H
 H�����H�UH�u�r���H�$H�|$ H9yuOH�$H�Q�#���H�D$H���	H�D$��H�D$H���	H�D$��H�D$�������H�@6H�5�H�81�����D$H��L9��������H�_6H�5`�	H�81��ֹ�I��M9��?������M��L�|$I��u�H�$H�8�ff.���AWE��AVI��AUM��ATI��UH��SH��H��H�?H�L$PH���� uyH��H����H��H��H9���H9���H�H��HH�M��tXH��H�L$�;��H���s��H�L$L��H��M�EH��I��QL��AW��H��([]A\A]A^A_�@H�E�f.�H��t#H�]H��L��L��H��[]A\A]A^A_�;��H��?��H��H	�H�}��H�6H��H�5��	H�81�艸�f���ATI��UH��SH�H���� u/H%�?��H�H��H��賍�L��H��H���š�H��[]A\�DH�G��ff.���AUATI��UH��SH��H��H����H��L��1�H���c�����ucJ�<#H�w�H9���H���������H��H��H#t�@�H��H#�,H��H9�w�H��H)�H��H�+�	Hc�H�>�����I��H9���H�����}��L��1�1��д�H��L��H��jE1�I��1�H��I�����ZYH���uH��L��[]A\A]����x<��H�w�x2��H�w�x(��H�w�x��H�w�x��H�w�x
��y"H�w�H��tH��L��H��[]A\A]�T��@���I��H9���H����L��L��H��H��[]A\A]��fD�H���Hc�H�4H��u��f�H���(�����J�<#H�w�H9��H���������H��H��H#t��DH��H#��H��H9�w�H��H)�H��H�����H���	Hc�H�>����K��I��H��tH9��4���f.�H���%����H��L��H��L�������u�����xD��H�w�x:��H�w�x0��H�w�x&��H�w�x��H�w�x������H�w�@H��������f��H���Hc�H�4���L�����L���������UH��SH��H���˄�H��H��H��H��[]������USH��H��螄�H��H�����H��H��H��H��[]�O��ff.�@��UH��SH��H����H��H��H��H��[]������USH��H���Η�H��H��裎�H��H��H��H��[]����ff.�@��UH��SH��H���k��H��H��H��H��[]������USH��H���>��H��H���3��H��H��H��H��[]�o��ff.�@��AWAVAUI��ATUSH��HH�dH�%(H�D$81��� u[H��H�o��H�L���Ͳ�1�H��H��I�����L��I��貀�L��躸�=t+H�t6H�5��	H�81��;��H�oH�_H��H�t$$L���+�H���I�E�� ��I�}�D$�|$��}"��L�EI9����E<"��H�L$(�D$L�l$2H�$L�5��	I�h<\�H9��A�P�B�<V���Ic�L�>��fD�|$�I�hH9���H�$�H���n�H�|$(�D$2���L��L��诛�L�D$(�D$I�f�L9��-A�<"�[���I�@H9���H��H)�H����H�
6H�5�	H�81��ֱ�fD�|$�kI�@H�D$H9���H�-��7H����L9�tH��L��L�D$���L�D$A�x{�M�xL9��oA�@<}�������	��v~H�$H��L��L)��nm�H�L$(H�Q�H���Y=���~��(������TH��L���U0L��L��Hc��u��L|$(L9���A�<}�[�� �z���I����@�H��L��L�D$�3��L�D$I�����D��aH�
��	��Hc�H�>��f�L�ƺL��L�D$���L�D$I���=���DH����D$�M�����	�L��L��L�D$�D$2蟙�L�D$I������
��f��
�f���f���f���f���f���n���fDL�ƺL�����I���h����M�G�D$I���O����H�$H�|$��k�H�|$(�w��(������}H��L���I��U0L��L��Hc�蛘�L�D$�D$LD$(����A�x.dupu
I�@H��H)�H����H�ncoding(H3HH�.force_eH3H	������x"�����|$H�h�{H�ھ"H��H)��bq�H��H)�H�������H)�H��������8"�����x)�u���H��������L��蹣�H�L$8dH3%(L��� H��H[]A\A]A^A_�L�D$��w�L�D$H��H�ߔ7�_���H�#	6H�5�H�81����H�	6H�5^�	H�81��ҭ�H��6H�5>H�81�躭�H��6H�5�H�81�袭�H��6H�5��H�81�芭�H��6H�5�	H�81��r��H��6H�5H�81��Z��H�{6H�5\�	H�81��B��H�c6H�5�	H�81��*��H�K6H�5��	H�81����荤�H�.6H�5Q�H�81���D��USH��H��t"H��H��H���#��H��H��H��[H��]�O���Z��f.���ATI��UH��SH��H���W��L��H��H��E1�[E1�]��A\�}�ff.�f���UH��AWAVI��AUATSH��(H�H�}�I��dH�%(H�M�1�I��H�E�D����E����
�}��́�xH����HcCH��H��H��H%�H)�H���H��H9�tH��H��$�H9�u����A�>I��@��tFD��H��I��D�����H��L��D��A��S0H�}��M�Ic�E1�A� L����A�>@��u�H�E�H�M�dH3%(umH�e�[A\A]A^A_]��H�������0���L��舅�M�H�}�E1�A�H��L������x�E����H)�H�L��.����u��D��UH��SH��H��(H�dH�%(H�D$1�H��A��H��A��0��D�D$��t_�� uJH��H�s��H��L�L$��H�HcT$H%���H	�H�H��H�|$dH3<%(u4H��([]�@H�SH�s�fDH��D�D$�Cw�H�D�D$���財�f�AWAVAUATUH��SH��H��h�L$LdH�%(H�D$X1��������H�~H�|$P����D$HH�D$@H����H�;���������1�H��H��H�$�L��I��H����H�E�� �UH�EH�x踲�I��H�E�� �XH��H�]��H�\$0H�D$8H���ۺ��L��H��I��H�D$�~�I�� H���A�uH�|$���H�H%�H H	�H�$A�����E1�I�H��H���H�D$ H�\$H�\$0H�\$�AH��H�|+H��H�|$��H9��H�<$D��H��H���K��I��H����I���=z�H�|$H�xu!H�|$ tH�$H��у�����@H�W�|$HL�"H�WH����D$HH��L)���E����H�$H�|$H����H��H�|$PH�����I��A���uE1�H9D$PA��@L��L)���L��L���٨�I9���H�EH���� ���H�uH�UH�H�t$H9���H���[H�UH9��aH�<$L��H���zJ���T$L����L��H��I��� �H�\$XdH3%(L����H��h[]A\A]A^A_�f.�H����H�x�`��I��H�E�� �����H�EH�D$0H�EH�D$8���f�H�u�� ��H����H9��B���H�}H�H�T$H��\��H�uLc�H�E tH�uH�L$H�L��L��L��Qc����@�|$H��DL��H���g�H�|$@H���@q�H��訝�I��H�E�� ��H�UH9T$0�XH����H9D$8�FM9��.���H�O6H�5��	H�81����fDH�L$H�t$L��L�D$(�b�L�D$(������ �GH�����L$HI����0���E�����L�D$PE1����H�D$0H9E��H�E�N���H��1�趘�H���n��H��趜�I���	���fDH�uH9������H�}H��v����H�|$ ����H�4$�H�H�D$(�D$(����HE������[���D$HH�D$@���!���蝙�H��襨�E1�H�ٺH��H���_��I���W�����t$LA����>���H���fm�I���.���fDH�$H�P���H���P��I�F�����H����������H��L���}������H��H�ƒ�H9������H�L$H�t$H)�L����`����H�EH���� �Z���fDH�|$P�Ί��D$H� ���H��5H�5��H�81��٣���*���E��H�$�6���ff.����ATI��U��H��SH���h��H��L��[��]A\�R���f���1��E���D��SH��H��H�|$H�t$�%��H�t$H���8��H��[�f���UH��AWAVAUI��ATSH��H��(dH�%(H�E�1�葴��I��A��uxA��t2L��H���w�H�M�dH3%(�IH�e�[A\A]A^A_]�DI�����t�A�E����
u�H�u�L�������t/H���5H�5��H�81�蓢�H�u�L��������lL���4z�A�ũ�����L�+A�� �fM��I��A���}�L��A��0�y���=p���������=o������@H��H�H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L��M�L��H��}�H�e�A�T$0Lc}�L��H��J�t<薅�M�9��H��K�47�O��H�{H� tH�{H�u�L�L�����A����Mc�H�H%���I	�L�+�/fD�U��Uǁ����H�uǺH��襊�A��t?H��� ����H��5L��H�5��H�H�81����f�L�s�����}�v�1�H���@��H�H%���H
 H��@�}��M�I���I�� �<������I�L$H���5H�57��U�H�81��v��U�H�t�5H�56�H�81��[��ff.���AUATUH��SH����t
H���R��f�H�����t�H�E�ƒ���tߩ����u�A��H��tnH��H��[]A\A]�fD1���H��H��I��蓛�A�E�L�l�f.�H�3L��H��豤�L9�u�L��H��葠�H��H��[]A\A]�H�6H��H��[]A\A]�{��H���5H�5�	H�81��c����H���3AWAVAUATUH��SH��H�>H���%H�VL��H��A��f�H����I�L9�tH�
H��H��� t�H�AI�L9�u�I��I��/���ԡ�A�H���@f�H��I�w��E1�D��H�����A��tH�H������tRI��L9�v]O�<�I�I��I��A��A��t!A��A��0�� t�I�WI�w��L���Xk�I�A����D��H��I�����L9�w�H��H��[]A\A]A^A_�f.�1�1��r��H��[]A\A]A^A_���DL��E1����I�4$H��H��螙��@���f���H��� �����„���H��� txH�~����uyAUH��I��ATI��US�Ã�H������H���Ճ�����9�ttL��輢�L��A��豢�A��t0=��H��1�[]A\A]�������t���D=t!���r�xu�H���̅��u���H��[]A\A]�H�������L����i���Y�����i�I�$���6������Yr�x�b���H���g��������ff.�f���ATUSH��� uhH��H�oH�Ӄ�H��� uH��L�f��H9�t[�]A\�H�FL�fH9�u�辘��t�H��L��H���|��[]��A\������H�oH�_�ff.���H9���ATUH��SH��@��u	H�����u"�qH���]�����[1�]A\�fDH��ƒ���u�H��� tsL�g�� uzH����I9�u�H��H������t�H�}H�E tH�}H�sH� tH�sH9�tL��蟚��u�[�]A\ÐH��H��[]A\�l�H����I������H�C������f.���H9�tW@��uH�����t
H��ƒ���t1���ATUSH��� uDH����I��� u%H����I9�t91�[]A\�f���f.�H�F��f.�L�g�f.�H��H������t�H�}H�E tH�}H�sH� tH�sH9�tL��聙��u���|���ATUH��SH��H��dH�%(H�D$1�H�3�7H�$�2��H��tMI��H��L����)��L��H��H����)��H��H����q�H�L$dH3%(uH��[]A\�������@��@��t@��u@H�����t7�����u-USH��H��H���a�H��H���a�H��H��[H��]� �����f.���SH��H���g�H��tH��H��[���fD�[Ð��H9���AUATUSH��H�/�� tVH�H�GH�o�� uYH��H�NI��I����H9�tVH9�H��H��H��HN�����t=BH�������[]A\A]�DH�H��H�G���� t�H�NH�^I��I��H9�u�H9�t~�H���[]A\A]�L��L��轔��u)I�$H������tAI�EH������t!9���s���H��1�[]A\A]�1��DL����d�9���@L����d���ff.����UH��H��SH��H���(f�H��t"H��H���g��H��H�[]H�D�f�H��H��H��[]�_��ff.�@��@��t@��u@H�����t7�����u-USH��H��H���|_�H��H���q_�H��H��[H��]�P�����f.���AWAVM��AUI��ATA��USH��H��hH�-��7H�t$(dH�%(H�D$X1�H����H�|$(�}�H�t$(H��膙�H��I����1�=��H�;H���� �lH��H����H����H�t$(����H�I��A�� �{H�~����to���/H�CH��tH�C��D$0M���jH���.@8�E���u@8��l@H��H�\$XdH3%(�3H��h[]A\A]A^A_�f�����H�CH��tH�C���0��	��L�H�NM��A�� tH�ND�A��0A��	�{H����H����H��~&L�8�����0��	�IH��L9�u�M����L�FM��~J�����0��	�H��H9�u�Hclj|$H9��_1Ҿ
H���Y��H�|$(1Ҿ
I���E��H�D$A��t���A���H�=��	M��ZZ�A��NH�D$HcD$I��<H�DH�D$@H�D$8H�D$H�D$@H�D$ �L�H�t$ H�T$�L�|$H�gg�L��H��A�Յ��^���L��E1�1�H��H�=�7�/X�I��H�D$L�D$L��L���H�=@7H�D$8�X�H��u�����@H���В������E��t����H�t$(E1�1�H��H�=�~7��W�H��H�D$�\�H��H�D$0H�D$0H�D$H�t$�k�H�������H�|$0E����H�t$(�k�H���\H�t$0E1�1�H��H�=�}7�SW�L��H�|$0H�D$A�Յ��S���H�T$H���D���H�|$H�T$0�y�H�|$0H�I��A�� ��H��H����H�t$(H��� ��H����H9���M�������&��������H����H�����z���DH��E1�1�H��H�=}7�V�L��H�|$0I��A��I��������������H�|$L�|$0�By�H�t$(H�|$0�sj�H���-����]���DH�V�T����H�O�,����H��u����(���L��H�|$0A������H�{������H�=���?w�H��H��}7�#���H�|$(�6��1�=���9����H�{�D����H�v����I��A���X���H�D$0H�D$fDH�|$�L�����L��H��A�Յ��e����D$0E��u@8��R������D$0����D$0@8�u��7���H��I�脠�H�H�D$I9�����E���D$�D$I9�u������L�%��	f�H�|$�T$L��1�L���n�L��H��A�Յ�����I��L9�����uʀ|$t�����)��蔖�@��AVAUATI��UH��S��H��dH�%(H�D$1��c��H�$��������L�uA���uT�o��tl1�I�����L��L����A�H�
ģ����h�H�L$dH3%(��H��[]A\A]A^�fD1�L�m��[H��t�H��� ���+o��u�肄�H��芓�E1�H���H��L���G���D���~H�$L�uA���t��H�<$tH���Ó������r����ff.�f���AWAVAUI��ATI��UH��SH��HH��y7dH�%(H�D$81�H����L���}��=u&I�M�� ��A�E��0��	���L��L�t$�W�H��H�D$�f�������uKE1�1�H�=Xx7H���R�L��H�|$I��Յ�u&L��L�|$�bu�H�t$H��� t�H�~����t�H�\$8dH3%(L����H��H[]A\A]A^A_�I�E���0��	�M���I�M�2��H�=ܹ�os�H��H�ex7���H��I�E��H��~ H�����0��	�����H��H9�u�H�=��	��oS�I�}H�$�� ��I�}Hc�A��H9���1Ҿ
L����I�ƨugIc�L�|$ H�DH�D$ � fDL��E1�1�H��H�=fw7�QQ�I��H�$L���L�t$(�H`�L��H��Յ�t��G���H�����t���膜�I�H�D$�@H�@I�~L�x2I��H�|$1�L��D��H�5��	�	k�L��H��Յ�t�O�t6�A������I���4����A��謒�ff.����AUATUSH��H��H�t$H�$�Qt�H�|$H���Ts�H�|$�:t�H�<$H�D$H��tK��Z�H�$H��t<H���ԝ���xt>H�t$1�H�����I��H����H�
0����d�H�<$�X1�H��[]A\A]�H����t�H�t$��u�H���w����xu�H���t��u�H�<$�\����xu�H���t�H�t$���x���H�UL�UI��A�� tL�UH�L�NI��A�� tL�NH�<$H�L�GI��A�� tL�GM����H����H���„�����M����H����H��������M����H���������������A���������A��ƒ������A�8���������@8�@8�H����������8������fD����H�}���Q���H�~���c���H�GH���w���H���s����h������AWAVAUATUSH��H��H��� u#H��L�gH������tH���h��L�gH�W��u�H�����tډ�����tЩ����u�H9�H��HN�H)�I��H���H��+PH�Hc�H9�|u��A��L�{H�ƒ�H����K�44L��A��`@��HE�H��H��H%�?��H	�H��H��z�A�� tVA�/H��H�#���H��[]A\A]A^A_��%`H=`tH���q�LsH�kM��L�s�f.�L���ȏ��H�W�5H�5й	H�81����ff.�AWAVAUATUSH��(L�A�� ��I��A��M��L��H	���H��H�L$H��H�4$���H��� ��L�{L�sI9���M��%0H�D$I)�M�=�I9��L;$$}H��yH��K�<71�H���#G�M��~.H�D$H�H�L$�� �HH�D$H�pH�<$L��L��y�H��� �L��H%�?��H��H	�H�H��M��V��HcPA�E����H�L�|$H%���I	�L�;H��([]A\A]A^A_ÐI��L�{I��A��I9�����H�����HcpH��� ��M��I)�)�M�Hc�I9��DL�{%0=�H�D$H�$L��H�4(I�<H)�L�L��*x�����DL�aL��H	��U���H��(H��[]A\A]A^A_��L�f.�L�k����H��H�����@��u;H�����t2�ƒ���t(��@t#H�
��	H���	�H�=�	�G�@M��H�{�I)�M�L��FV�L�k H�CH��� �����L�{���f�H�|$�Ƌ�H�H�D$����f.�1�L���E��M����J�<.�肍�L�;I��A�� uSM��H�sI��A��M��uOL�SL�K��uH�����tD��L������ ��LE�L��L�k H%�?��H��F����L�KH�s�fDL��L��L�L$�`��L�L$I���fDAUATI��1�USH��H��H��H��H�L$1��t�H�����W�L��H��H����]�H�U�J9�~y��xiH�rHc�H�,�H�����H�BH�|$L�$��k�H�t$H��I)���H�L$L��H��I��H����L��H���YZ�H��[]A\A]�fD���9�~�닉�H�S�5H�5��	H�81��„�H�;�5H�5��	H�81�誄��H�!�5H�5��	H�81�萄���UH��SH��H���K���H��H���Q��H��~H��H��H��[]�*J�f.�H���[]�@��AWAVA�AUI��ATUH��SH��H��(H�L$dH�%(H�D$1��%0=t�w���E1��xA��H����H�|$�j�H�t$H��謆�H��H��I�����L9��uM����L)�H��H9�HN��j���H��� ��H�{L�{L�l$I�I�E����M��tM9���M������ �H��H�l$H����L�lM��I�T-E����DH�T$L��L��L�����H��H��{DI��H�{L�l$I��I�A��I�E���s���H�T$L��L���u��I��H��X���f.�M���� �H��H����L�|H�l$I�T-E���j���H��t
I9�s+M��u#�� �H��H�KH�ƒ�H���L��H�K�� tH�KL��L)�H��H)�H�L$�*���L��H���W�H�����0��td1ҁ� ��H%���H	�H�H�D$dH3%(��H��([]A\A]A^A_��H��L���H9���I������H�T$H���0��0t�Hc��DL�{L{���H�T$H���0��uȺ �Z����H�KH�SH�����L�kLkM�����H���5L��H�54�	H�81��%���x�H�
A�	H��	�<H�=T�	�B�H�z�5H��H�5�	H�81����fD��AUATUH��SH����t
H����u�f�H�����t�H�E�ƒ���tߩ����u�A��H��tvH��H��[]A\A]�fD1��Q��H��H��I���#|�A�E�L�l�f.�H�3L��H���AU�L9�u�L��H��1�1��-9�H��H��[]A\A]��H�H��1�1��	9�H��H��[]A\A]�H��5H�5��	H�81������UH��SH��H��@��t*H�H���t2H��H��H��1�H��?H��8�H��H��[]�H���xv�H��H���u�H��H��H��[]�~T�ff.���AUATI��USH��H��(dH�%(H�D$1������G�����H�H�n������u H�����t����������1�L������H�T$H�t$H��A�H���T�H���$H�T$H�t$H��L���7�H�L$dH3%(H���:H��([]A\A]�DH��H�H��L���7��H�6H�kL�k@��tO@����H�@����H�L��H��L���G7�H�k����fDH��H��L������a���H�����t������u�L��H��L���_����D1�1�H��L���y��H��x{L��H���9j�1�H��I�����H��L��L��H���6����fDH���t�H������H���xt�H���;���H���ht�H�3H����������`���t�H���5H�5��	H�81��Q}���AVAUATUS��H�� dH�%(H�D$1��G�����H�H��A�H�$��uH�FA�H�D$H��I���ô��H��L�������I��H��t1�1��tQ�{H��L��J���R���H�L$dH3%(L��uH�� []A\A]A^��=����t����ATI��USH�� dH�%(H�D$1�������~vd����vdH�\$
��H���	1��
H���;�H���V�H��L��H��H���z��H�L$dH3%(��H�� []A\���F�^vxH�\$
��H�1�	1��
H���:��f�H�\$
��w!H�N��
H��1��{:��g���fDH��	�
H��1��Z:��F���DH�\$
��H�Xf1��
H���3:�������r�f���AWAVI��AUATUSH��XH�dH�%(H�D$H1�H����������P�1�H���7��H�D$�mX�H��H�D$�F�}�D$�D$uH���c�������D$H�|$��H�D$�x�w�
��H�D$L�|$H�t$L����O�H�5��L�����M�.A�� ��I��M�fA��M�L�������I��H9�t�T$����L��M9���L�|$:�L��L��H���^�Hc����L��L��H��H�A�V A���D$D$��A��"��A��\��A��#��I9���L��L��H��D�D$ �]�D�D$ ����L9t$��D$��A���2���*A�@�^�H��I9��A����L9�vH��H�|$L��L)�����H�\$�H�5p�H�����H��H�|$HdH3<%(�jH��X[]A\A]A^A_�f�A�@����T���H�5��	Hc�H�>��f��eI9�rCH�|$�L��I���D$:\H��L$;�B��I9�������D���@�rI9�s�fDH��H�|$L��L$ L)��	���L$ �f��f�f��v�f��n�n���fD�t�^���fD�b�N���fD�a�>���fD1�L��L��H���=�D�D$ ��$����@���u��{�C���f�I9���H�|$�D�D$ H�5���L��L9t$���D$D�D$ ����A�@����CH�
��	Hc�H�>��f�I9��gIcVL��H)�H��H�I9�B��P����������H�\$(L�d$H�D$ H�l�H�ڔL��1��
H���6�L���{Q�L��L��H�����H9�u�H�\$(H�D$ H�\I���?����I��H���3���DH��H�|$L��D�D$ L)��X��D�D$ ���fDM�fM�nM��X����H���hB�D$�]����H�D$�D��D�D$ H��PX��������D$D�D$ ������fDI9�r{�T$H�|$D��I��H������}����H���_��������t���H��H�|$L��L)���������B������@�E�H�D$�#����H��H�|$L��D�D$ L)��H��D�D$ �c����9m�f�����
��~9H���	��
��_H��	�������H�ء	HE��H�ҡ	��tk~JH���	��t]��	�H���	HE��f.�H���	��t3���H���	HE�Å��H�^�	HE��DH�P�	���AWAVAUATUSH��H��HH�?dH�%(H�D$81�H���������cJ�L�+I��A�� �PI��L�cA��M�1��}�L��I���?@�D$1�A�~uL���:]������L��M9�����L�|$�D$H�D$*I���.L9���H���N�H�|$H��H�����L�d$L��L9�srL��L��H����W�Hc����L��L��H��A�V A��H�+D��D�$H�D$�$���D�$H��H��u�A�����|$��A�@�^wzH�\$L9�r�L�|$L9��R�L���E��I�H%���H
I�L��H�L$8dH3%(�kH��H[]A\A]A^A_�DH��H�|$L��L)�������L9����T$H�|$D�����L�d$L����f�L9���IcVL��H)�H��H�I9�B��P����������H�\$L�d$H�$H�l��H�J�L��1��
H���s1�L����L�L��L��H���
��H9�u�H�\$H�$H�\I���[���f�H��H�|$L��D�$L)�����D�$�)���L�cL�kM����H��L��L��L)�������f.�H��H�|$L��L)���������H���>���9����li�ff.����SH��H�� H�|$H�|$dH�%(H�D$1��X�H���]\�H�T$H�t$�H�D$��h��H�L$dH3%(uH�� [��h�f���ATUSH�H���� ��H����H��H������I�ĸL9�~QH������H��� tJL�cH�CH��I��gp�HcPA�$��YH�H�؉с�0��t
H���H�[]A\�@L��H%�?��H��H	�H��� u�H�C�f�H�o�h����1�L���f/��@��SH�Ӄ�tH���e�H�����t�H��ƒ���tߩuE��u�� u1������u�P>��H��tH��H��[����fD�[ÐH�{����H�G�5H�5��	H�81��p�ff.���H��t@��uH�����t�����uH�:�PH���`B�H�5D�	H��H�G�5H�81��o�D��AVAUATI��USH����n�H�+I��� u3H��L�s��M����IcEI��H9�|"H��[]A\A]A^�fDH�kL�s��fDL��I�4.L��L����?�H��L)�H9�t�I��EA�}��L��H�=��	��y�L��H���o�H�߹[1�]H��A\A]A^��G�fDA�H��H��L��L���u�H����L)�1�H��H���P/�A�}H����L���Zo�H�=3�	H���Vy�H��1�H���tG�H��H���iC����@L���(W���6���H��L��H�5�	�P�L��H��H���C����A����DL����V���f����H�5��	H���tW����H�h�5L��H�5�	H�81���m�@��UH��SH��H���;���H��H��H��H��[]��0����ff.�@��SH�Ӆ�t,��u.H�6H���dD�H��tH��H���7�H��[�fD����̍��ff.����SH�Ӆ�t��u3H�6H���D�H��t[�@�H���C�H��u�H��[�5��w������ATI��UH��H��SH���W~��1�H9�tL��H��H��[]A\�.���fD���0��ff.���AVAUATUSH���I�I��H����H���}��H�3I��� t*L�kH�kM9�t0H���q�=t!1�[]A\A]A^�H��L�k��H��M9�u�L���uF�H9�u�L��H��L����_��t�I�t-L��L���|���������@�;�I���c�����AUATUSH���4�H��H���"���H�߅�uk�vE�H�(H��� tHH�hH�uH��L�k�Ti�H� tL�kI�}H��L���X\�A�E:H��H��[]A\A]�DH��������|��H�+�� uHH��L�c��H�uH��1��h�H��L�hH� tL�hH��t�I�}H��L���x��DL�cH�k�ff.���AVAUATUSH������H���������������H�I��H����H���|��H�3I��� t6L�sH�kM9�t<H����o�=t-H��[]A\A]A^�D�f.�H��L�s��H��M9�u�I�4.L��L���>z����t�H��[]A\A]A^�fD��9�I���o����H���~6�ff.���S�v<�H��H���;�����tH��[�f�H��[�C������~H��A��H�J�V�H��H�8�@R�PH��5H�5)�	H�81��i����@��t6@��uH�����t
�����tH����M��H��H���W���1�ff.���@��t6@��uH�����t
�����tH���M��H��H���H?��H���ff.����AVH�=d�	AUATUH�-��5SH�u�=�H�~�5I��H���GH����L��H�5X���H����D�L�%��5H�;I�4$�m3�H�;H�5v���g�H�;�H��O��H�5G��@�H�;�����H��@��H�58�;�L�-�5H�;�H�5(L����;�H�;�H�K��H�5a�;�L�5H�5H�;�H�5�pL���;�H�;L��H�5�p�;�H�;H��5�H�5��o;�H�;1�H�#���H�5/��W;�H�;�H��N��H�5�p	�<;�H�;�H�M��H�5&�	�!;�H�;H�g�5�H�5�,	�;�H�;H�|�5�H�5���:�H�;�H����H�5��	��:�H�;�����H����H�5F�:�H�;�����H�v�H�5�:�H�;�H���H�5K�:�L�5x�5H�;1�H�5�L���d:�H�;1�L��H�5�i�P:�H�;1�H��x��H�5��	�8:�H�;1�H��o��H�5� :�H�;�H����H�5���:�H�;�����H�VL��H�5,	��9�H�;�����H��K��H�5=a��9�L�5��5H�;1�H�5��L���9�H�;1�H�h��H�5��	�9�H�;1�L��H�5�	�9�H�;1�H�<��H�5��	�p9�H�;�����H���H�5@��U9�H�;�����H��W��H�5��:9�H�;�����H��T��H�5�9�H�;L��H�5-��9�H�;1�H�l���H�5~��8�H�;1�H�$���H�5ڐ��8�H�;�H�Iw��H�5q��8�H�;�H����H�5��	�8�H�;�����H����H�5��	�8�H�;�����H�x���H�5��	�l8�H�;�����H�
���H�5��	�Q8�H�;1�H�5�5H�5
��98�H�;1�H�m���H�5ҏ�!8�H�;1�H�����H�5;Y�	8�H�;�����H�:���H�5�Y��7�H�;1�H�����H�5tY��7�H�;1�H�
��H�5�7�H�;1�H����H�59u�7�H�;1�H�r�5H�5��7�H�;1�H���5H�5���v7�H�;1�H���H�5��	�^7�H�=��	��H�H���Eg�H�=z�	H��O7�H�H���%g�
H�=a�	H��O7�H�H���g�H�=L�	H��O7�}H�H����f�H�;�����H�&���H�5'�	H�PO7��6�H�;�����H��H�5�	�6�H�;�����H���H�5��	�6�H�;�����H���H�5�	�r6�H�;�����H�C�H�5؏	�W6�H�;�����H���H�5ŏ	�<6�H�;�����H���H�5��	�!6�H�;�����H��H�5��	�6�H�;1�H�zu��H�5��	��5�H�;1�H�Ru��H�5��	��5�H�;�����H�WY��H�5��5�H�;�����H��v��H�5���5�H�;1�H�dy��H�5a��5�H�;1�H��k��H�5>��p5�H�;1�H�D��H�5��X5�H�;1�H��m��H�5�	�@5�H�;1�H���H�5,�(5�H�;1�H�|�H�5�5�H�;�����H��H�5�h�4�H�;H���5�H�5�
��4�H�;�����H�+�H�5�
�4�H�;�H��B��H�5��	�4�L�-��5H�;1�H�5O�	L���4�H�;1�L��H�5?�	�u4�H�;1�H��s��H�5J�]4�H�;�H��8��H�5�
�B4�H�;�����H�S7��H�5��	�'4�H�;�����H�h5��H�5�	�4�H�;�H�
���H�5؍	��3�H�;�����H�"5��H�5	��3�H�;�����H��4��H�5��	�3�H�;�����H��4��H�5��	�3�H�;�����H��|��H�5�h	�3�H�;�����H�6���H�5�h	�j3�H�;1�H����H�5�h	�R3�H�;�����H�S��H�5(��73�H�;1�H�K~��H�5�	�3�H�;1�H��}��H�5�	�3�H�;1�H�+}��H�5��	��2�H�;�H��|��H�5�	��2�H�;�H�5|��H�5Ԍ	�2�H�;�����H�:t��H�5Ȍ	�2�H�;�����H����H�5��	�2�H�;1�H����H�5��	�k2�H�;�����H���H�5���P2�H�;1�H�����H�5n�	�82�H�;1�H�����H�5U�	� 2�H�;1�H�Ԗ��H�5E�	�2�H�;�H����H�52�	��1�H�;�H�*��H�5&�	��1�H�;�H��$��H�5��1�H�;�H��$��H�5��	�1�H�;�����H�]��H�5Ц	�1�H�;�����H����H�5΋	�f1�H�;�����H��$��H�5��K1�H�;�H�$��H�5��	�01�H�;�H��#��H�5��	�1�H�;�����H�f��H�5t�	�0�H�;�����H����H�5a�	��0�H�;�����H��q��H�5ڭ��0�H�;1�H��~��H�5���0�H�;1�H��f��H�5��0�H�;1�H����H�5���|0�H�;1�H��h��H�5�	�d0�H�;�����H�����H�5�
�I0�H�;�����H�����H�5�`�.0�H�;�����H���H�5�	�0�H�;�H��b��H�5��	�/�H�;�H��`��H�5~�	��/�H�;1�H�ɶ5H�5
��/�H�;�H�F���H�5V�	�/�H�;1�H�N��H�5w	�/�H�;1�H����H�55�	�z/�H�;1�H�����H�5-�	�b/�H�=-�	�V9�	H�=5�	H��G7��@�H�=B�	H��G7�@�H�;�����H��|��H�5�	H��G7�/�H�;�����H�%
��H�5�	��.�H�;�����H�j|��H�5ۉ	��.�H�/�51�H�
>?��H�=�H��H��m�H�
!?��1�H��H�=��	��l�H���8k�H�uH�=Ԫ�/�H���5I�4$H��H��%�H�;��H�;@���-@���c�������eH���k@��tH�H�5x	�Ue�H�;1�H��r��H�5"�	��2�H�-ƶ5H�;�H�5%cH����-�H�;H��H�5
c��-�H�;1�H��H�5��-�H�-�5H�;1�H�5�H���-�H�;1�H��H�5��	�-�H�;1�H�%e��H�5,�	�i-�H�;1�H�
e��H�5�	�Q-�H�;1�H���5H�5<b�9-�H�;1�H����H�5��!-�H�;1�H����H�5��	�	-�H�;�H����H�5���,�H�;�H�����H�5]b	��,�H�;�H�����H�5��	�,�H�;�H�9|��H�5K��,�H�;�����H�����H�5�,�H�;�����H�����H�5�\�g,�H�;1�H����H�5Є�O,�H�;1�H����H�5�[�7,�H�;1�H�Kp��H�5
�,�H�;�����H� ?��H�5	�,�H�;�����H�E>��H�5WS��+�H�;�����H���H�5+�	��+�H�;�����H���H�5�	�+�H�;�����H���H�5�	�+�H�;�����H���H�5��	�}+�H�;�����H��/��H�53�	�b+�H�;�����H�C.��H�5$�	�G+�H�;1�[H��o��]H�5�A\A]A^�'+��H��������H��tH������H�u�5H�8����DH���5H�8����H�ٯ5H�8����H��5H�8����H�a�5H�8���H�
��	H�k�	��+H�=%�	���f���H�`tH��H��H�H����H�`tH��H�G�f.�H�H�G����H�`tH��H�G�f.�H�H�G����H�`tH��H�G�f.�H�H�G����H�`tH��H�G �f.�H�H�G ����H�`tH��H�G(�f.�H�H�G(����H�`tH��H�G0�f.�H�H�G0����H�`tH��H�G8�f.�H�H�G8����H�`tH��H�G@�f.�H�H�G@����H�`tH��H�GH�f.�H�H�GH����H���`tH��
��H�D��H�GH�D�fD���?��UH��SH��H����tEH���7)�H�MHc��`u(H�MH��5H�5��	H�8H��xH�5Ґ	1��sT�H��
���ӾH�=��	��H��H��H���+7�H���2�AUATI��USH���>W�gH�5֑	H��H���f�H�EH���<f.��ƒ�IT$A�$L�*M��t;L����W�H��H������uPA�$��/v�I�T$H�BI�D$L�*M��u�H���78�H��H���4�H�EH��H�MH��[]A\A]�H��5L��H�5*�	H�81��cS�UH��SH����K�H�uH��H������H��H����H��H��[]�ff.�AWI��AVAUATI��USH��(H�H�|$�� ��L�nI��
��K�D�H��@��@fDH�H9�|�L�u�H�}L�t$�A�H��I��K�D-H��L��H�D$I�oH���C
�I�D$I�$ uI�D$ L�,�L���@�I�7H��H#D$�� �@H�D�L!�H��H��uI�O H������u�H��L��L��H�$���H�$H��L��H��H��H�p��H9\$�r���I�H�\$H�5w>7L��H�����H�5]>7L��H����H��(L��[]A\A]A^A_�A�>�A�@H�D$>���f�ATM��UH��SH��tqH��H��u9H��H���^&�L��H��H���P���H��H��t(H���P�H��[]A\������f�H��H�5��aP�H��[]A\�f�H������fDATUSH���4�H��H���)U��t0H���S�H��H��I���]������H��L��H��[]A\���$H�=A�	�T�H��H��H���3�H���.�ff.�����1�f�AWAVAUATUH��SH��(�J���H�5�
H��I���O�����H�����H��H�5`���(�����H�����H��H�5s���(�1�H�YH��H�5f�	�(�1�H�H��H�5��(�I��� �^I��I��A��L�|$H�|$�*I�NE1�H�L$��f�H�D$J��H���o�I��H�@L���O�d?I��	��H�SJL��H���X,�H��H�D$�+�H�T$1�H��A�H����L��I���W	�H����R�H�8JL��I��H���,�L��H�����A�1�H��H��H���Y�L;|$tRI��� �6���I�F �2���DH�1|51�L��H��J���p:��x���L����J�I���$����H��(H��[]A\A]A^A_�fDI�NH�L$���f.�@��u"H�����tH��ƒ���t��u�fDH���_C�ff.�@��H�A��H��H���`tH��
L�`D�ʃ�H���b0�f�H�rL�ED���M0�ff.�f���H���`tH��
H�wH�ǃ��!H�H�wH��H���H��1�H�=����ff.���AVAUATI��US�L_�H���$T�H���lE�H��I�$��`��I��I��
A��M��~\1�M�t$�1L��H�<���S�t5H�H��H��H���.7�H��L9�t&I�$��`u�I�D$H�<��S�u�H����C��ĐH���(X�[]H�DA\A]A^�f.�M�l$�u���fD��H9���@��uH�����t
�����	t
1���ATUH��SH���Q^�H��I���F^�I9�uAH�E��`uXH�EH���`t\H��
��H9�����H��H��H��[H�=]A\�0�[1�]A\�f���f.�H��
����H�S�f.���H9���@��uH�����t
�����	t
1���ATUH��SH���]�H��I���v]�I9�uAH�E��`uXH�EH���`t\H��
��H9��֊�H��H��H��[H�=]A\��/�[1�]A\�f���f.�H��
����H�S�f.�������AVAUATUSH���`��L�oM����I��H��L�v1��#DH�EH�<����tAH��L9�tVH�EL��I�$`uI�L$H��H�4��`u�H�EH�<���u�[1�]A\A]A^�I��I��
A���t���[�]A\A]A^�f���f.�������AVAUATUSH���`��L�oM����I��H��L�v1��$DH�EH�<�c�H��tBH��L9�tUH�EL��I�$`uI�L$H��H�4��`u�H�EH�<�!�H��u�[]A\A]A^�I��I��
A���t���[�]A\A]A^�f���f.���AWAVAUATUS��H��(H�T$dH�%(H�D$1�H�D$���[L�6H��A����A������H��D�c�Ic�L�l�I�}@����L�*Lc�E1�H�5��	H�@H��H�$�[�I�ą�~Gf�J�|��2�H��H���{I�����H��L��������I��M9�u�H�<$�-�L��H���~)�H�CH�I���
H�t$L���H���H��H��H������H�T$H�5�47H�����'����H�L$dH3%(H���4H��([]A\A]A^A_�H�����������������H�=M47uH�<47H����H�447I�}1�L�D$�D��H�547�U�H�|$4�����H�D$���I������O���A������@���@A��8���DH�|$�����f�H��1�1��0������H�=	�	�n,�H�37�G���H��H�5��	H�y�5H�81��F�H��H�5��	�����>*��Y>�f�UH��H��SH��H���;=H��tH��H��[]��H�#���H��H��[]��M�fD��AVAUATUS����H���%�����W=�1�L�eI���M@H��
��H9�}\L��H�<�L�4��W�H�����tL��H�E`uH�EJ�40L���U�H��H�E��`u�H;]}H�E�f.�[L��]A\A]A^�@�{:�H���I�[H��L���]1�A\1�A]H��A^�5H�1�1��(�ff.����ATUH��S��$��tL1�L�e� @H��
��H9�},L��H�<�H���DV�H�E��`u�H;]}
H�E���H��[]A\���9�H����H�[H��L�H�]1�1�H��A\�G�f���AVAUATUH��SH9���I����3�H�E��`��I�$L�m��`��H��H��
��L9���1�M�t$M��+�Q�H�EH�4@��u	H�����uqH��I9�t0I�$H�E��`L��uI�L$H��H�4��`u�H�E�@[H��]A\A]A^�@I��I�$I��
A����`�f���I�L$�f���fDH���0)��H���5H�5&�	H�81��C�fD��AUATUH��SH����L�%K07H��I��L����H��uUH���'f.�H���5H;tL��H����H��uH�[H��u�H��L��[]A\A]�@H��L��H���J�H�����t�L��H�5��	��,�H��L��[]A\A]�ATI��UH�-�/7SH����H��ubL���$�H��5H;tH��H�����H��u+H�[H��u�H�s�5H�54�	H�81���B�f.�H��H��L����u�H�����t�H���u��� u[H�@]A\�H��[]H��A\���f���U�	H��SH���y�H��H������H��H��H��w1H�H��H�{H��H��
��H	�H���H��H��[]��H��H���E���H��H�CH�����H�kH��H��[]����AWAVLc�H��AUATI��UH��SH��8dH�%(H�D$(1��S�H��I���B�L���j���I��E��bI9��2M9�,H�L$(dH3%(���H��8[]A\A]A^A_�@L��L)�H�E`��H�mJ�|��&��@H��-7L��H��H�D$��H����L���)f.�H��5H;tH�t$H�����H��uhH�[H��u�M9��x1�L�}��H��L9��*���H��I�4�L��H�E`uH�UH�4@��u�H�����t�H���%��H�t$H��L���Y��H�����t�A����I�$���H�������H�������H�}H�E`uH�}L���
�I�<$H�T$H�5�H�l$H�D$�s�H�|$�c����H�=fF��
�H�|$H���i?�H�=HFH��� uv�
�H�|$H���C?�H�PH� �5H�5~	H�81��?��H���7����7�H��5D��H�5A|	H�81��g?�H�؟5H�5�}	H�81��O?��*
�H�|$H����>�H�P��AWAVAUATI��USH��H����CH����tK���"H��H�I�$��`��I�T$H����H9���H��[]A\A]A^A_�f�H�����t����������u�H�����H��H����L�-+7L���PP�H��L��I���b�I��H����L���!H�9�5H;t$L��H���9�H���KH�[H��u�fDH�5�|	H���5H�81��>��H��
��H������H���H��H��[]A\A]A^A_�DH���4�����L�-I*7L���O�H��L��I����I��H��uUL���&DH�y�5H;(�`���L��H���u�H��uH�mH��u��A����H��L��L���B��I��H���%���A���KI������>I�/������-I�$H��H��%`�� t^H����H����H��
��H9���1�I�OH��~"H��H��uI�W H;������H��H9�u��������I�oH��
~�H����M�l$I�G L�4�J�|0���H�L9���H��H���C�I�7I�H��H!�� �DH�����t�H�D�H!�H��H��uI�O H��H9�u�H�|����K���H��
��I���q����I�L$����fDH�5�z	����H��L��L�����I��H�������A��u�I�����t�I��؃���u�I�$H��H��`�� tuH����H����H��
��H9��d1�I�OH�������fDH��H��uI�W H;,������H��H9�u����@H�DH�E�q���f.�I�_H��
~�H���|H��
��I��I�G L�4�J�|0���H�L9�ufH��H����I�7I�H��H!؁� �@H����������H�D�H!�H��H��uI�O H��H9�u��o���M�l$�I�D$����I�$��`t_H��
��H��I� tFI��K�|7���H��H�5�w	��H�ے5H�81��I:�H��H�ǒ5H�5@w	H�81��.:�M� �I�\$�H��H����f���SH��H��H�t$H�t$������x1H�`uH�[H�H��H��[��H��H�H��H��[�H�t$H�������H�@SH��H�xH��H�t6[�+��H���5�H��[H�����@��ATI��USH��H��H�|$H�:H�t$����Hc��y%H�{H��t[H�t$�AH�H��1�[]A\�fDH�;��H�;H�GH�`uH�GL�$�A��u�I�����t�L���	�����/�H��H�C�f���ATI��USH��H��H�t$H�t$����Hc��xOH���0�H�CH�`uH�CL�$�A��u	I�����uH��L��[]A\�L��H����H��L��[]A\�H�t$H����ff.��SH��H��H�t$H�t$���Hcи��xH�`uH�[H��H��[�fDH����f.���AUI��ATUSH��H�-P$7H����I��H��u-L���f�H���5H;tH��H����H��uH�[H��u�H��L��[]A\A]�@H��H��L��H��[]A\A]�P����ATI��UH�-�#7SH���F�H��udL��� H�!�5H;tH��H���!�H��u+H�[H��u�H�5�u	H���5H�81��
7�f.�H��H��L������H��tʨuH�����t�����u[]A\�H�5gu	����H���sH�H��H����-����H���cH�H���KH�H��H���-�ff.�@��SH���3H�H���H�H���`t3H��
��H��� tH����H9�u[�fDH�P��f.�H�K��H���5H�5s	H�81��6�f���AUATUSH��H��(dH�%(H�D$1��*����H��E1�I���T��H���<�������L�c�DDH��
��I9�}DL��H���a/�L��H�`uH�SJ�4�H��I����'�H���YF�H���`u�H�CI9�|�H��H�L$dH3%(��H��([]A\A]�fDH��
��I9�}�L��H����.�H�SH�`uH�SJ��L��H�$I��H�T$��H���`u�H�C�@�)�H���8�L����1�1�H��H���E7��[����+,�ff.���AWAVAUATUSH��H��(H�?dH�%(H�D$1���`��H��
����H��E1�I��H������I����A���Xf�H��
��I9�}[L��L���-�H�SH�`uH�SJ��E��t_L���H�$H�T$��H��H�����I��H���`u�H�CI9�|�H�L$dH3%(H��u/H��([]A\A]A^A_��H��H�����H�{�2����+�f���AVAUATUH��SH��dH�%(H�D$1�H���KH��@���H������	H�>��������H�E��`��H�E�� ��H����H9����V��E1�I��I���VH����I9���H�CJ��L��H��H�$���xgH�UH�E`uH�UH�H�4$L��I��H����H��� u�L;s}1H�C 뭐H��
���� �b���H�{H9��e���1���I��H�L$dH3%(L��uBH��[]A\A]A^�fDH���D�H�5�o	H��H���5H�81��2�D�s�����)�ff.����AWAVAUI��ATA��USH��(�C�H���[�	H�=}p	H����H��H�CH� tH�C��D$E���s<#�kL���#��I��I�E��`��I�EH�$1�I�GH�<$H�D$���H�D$L�4�H��H�L$L�����H��I������uL���+	����L����H��H����H�5��H���|�I�EI�E`uI�EH��H��H�<��H��H�����H;$tlH��t?�H�5.7H���+�I� �>���I�G �:���DH��
������@�|$#tκH�5yw	�L��� ��@���H��H�5l�	���H��(H��[]A\A]A^A_�f�H��H���%�E�������H��(H��[H�5�n	]A\A]A^A_�z�f.���AWAVI��AUATI��H��USH���3�H�-I7L��I���A�H��H��I����H��uRL���&DH�y�5H;tH��H���y�H����H�[H��u�H�5�m	H��5H�81��^/�fDH�����H�������H�+������~I�$H��H�΁�`�� tnH����H���fI�L$H9���1�H�KH���p�H��H9��[H��H��uH�S L;,�u��H����M�d$��@H�kH��
~�H���I�D$H�D$H�C L�<�J�|8���H�H;D$�HL��H���,��H�3H�{H��H!�� �fDH��������H�D�H!�H��H��uH�S H��I9�u�H�|���ƒ����I�4$��`H���8���I��Hc�I��H��[]A\A]A^A_�@H��H��L�����H��H���`����:���H�5Fl	�5���@H��
�����@H��
��H�L$���L���01�H�="l	H�����H��L��H���.�H����fDH���5H��H�57j	H�81��%-�DI�$��`tGH��
��H��H� tDH��J�|;���H��H�5$j	��H�k�5H�81���,�f�I�l$�f�H�[ �f.����'����AUI��ATI��UH��SH��H���L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$H���$ H�D$H�D$ �D$0H�D$���L��L��H��I��H���L��H�T$dH3%(uH���[]A\A]��I#�f���ATI��UH��SH��H���H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$����H��1�L��I��H���m��H�T$dH3%(uH���[]A\��l"�ff.����ATUSH��H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$���H��H��5H��t=L� H�����H��L�����H��H�����H�T$dH3%(uH���[]A\�H�8������a!���ATI��UH��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$���L��H��H��H��5H����H��H�����H�L$dH3%(uH���[]A\��z �f.���UH��SH��H��H�>��u=�� t%H��H�s��Hc�H9�u/H��H��[]��@H�s H�{��fDH�����H�;��v.�fD��H��ƀ��ATUSH�o��`u3H�_I����t9H�߾�/�I�$$���H��H��u,I�L$[]A\�H��
I��H�Ӄ���u�H���G�H��H��t�H��H��H���5�H��I�L$[]A\��ff.�@��UH��SH��H��H�>��u=�� t%H��H�s��Hc�H9�u/H��H��[]�l��@H�s H�{��fDH�����H�;��f-�fD��AUATUSH��H��H��$�H��$�H��$�L��$�L��$�dH�%(H�D$x1����I��A��H�I9��1A��
��H��$��D$H�t$ H�D$H��$�H�D$E��~YL�L$�|$1�1�L�D$�!@�����L�H�	H��H��A9�~��/v�L��I��H�	H��H��A9��t�|$H��D���D��H�\$xdH3%(�~H�ĸ[]A\A]�f�L���(�H��H��H�D$ �8��H�E�u=H�u�� uH�u H��$��D$H�D$H��$�H�D$�!���f�H���8��H�E��]�L����+�����ff.����US��H����~7H��H�6H����������uH��[]�@H��H�u�H��[]�<��������ff.����UH�=0d	SH��H�(�5H�0� ��H�	5H�~5H��H�2H����H�;�|��H�;�����H����H�5$���H�;�����H��H�5����H�;�H����H�5����H�;�H����H�5�-�p��H�;�H����H�5���U��H�;1�H����H�5r�=��H�;1�H����H�5a��%��H�;H�R�H�5j���H�;1�H�c��H�5W���H�;1�H���H�5D����H�;1�H�3��H�5r���H�-8�5H�;1�H�5'H����H�;1�H��H�5P��H�;1�H�<��H�5f���H�;1�H���H�5uV�h��H�;H�N|5�H�5���M��H�;H���5�H�5���2��H�;�����H����H�5�*���H�;�����H����H�5�*��H�;�����H����H�5?����H�;1�H�u�H�5ea	���H�;�����H�:���H�5����H�;1�H���H�5����H�;H���[H�2�H�5�]�u��D��H��H�=�a	�&�H�=�a	H�7�%�H�=�a	H��7��%�H��7H������fD�L�WD�H�D��!�Hc�H��L�D�E��t2A�f�D��@A��D!�Hc�H��L�D�E��u݋H�G��u�G�0H�P��AWAVAUA��ATA��	I��UH��S��H��L�=�5I��� ttH����L9�vHL��L���}�I��H��t4H�L��L����H���=��H��H�sH��[L��]A\A]A^A_� ���F�L��L��H��I������I�G�f.�UH��SH��H��H�=u�5dH�%(H�D$1�H�����tYH�,$H��H��@��t*H���uDH�����t;�E����u0H�E H��HD�H�t$dH34%(u1H��[]��1���H���,��H��H��H�=�_	H��1��%���Hc�H��Hw�F��u�o�o��H�F�f�H�
��5����	H��� tH����H9�r1��DH�AH9�s�U��H��S��H��H�����H��uH��1�[]�����H��H�4^���H��t�H��[]��H��H��H���G���t9=�5r�^���fD1��DU1�H��SH��H��dH�%(H�D$1�H�<$H�=ϯ5H���������^�H�D$dH3%(uH��[]����ff.�UH��S1�H����xt
H����[]ÐH����Å�uH���z$�=u���@1�H����[]�D=0u�H���9�H��H�5W^	H�PH�45H�81����f.���UH��SH��H��@��t;@���*^�H������^������^�H�F �uH������uH��H���t-�H��1�[]�H�CH���[]�@AVAUATI��UI��H��SH��H�� dH�%(H�D$1�H���DF�H��H��@��u	H�����ueH���M��L�5�5I��fA�>��H�=�5H��L���f��H��L��D������H��H�L$dH3%(��H�� []A\A]A^�@H��ƒ���t�H�€�H�~H��z������q���H��H�t$��H�t$�Z����H�|$�^"�H��:H��HD�I�UI�E tI�U��@�����AUI��ATI��UH���4SH��dH�%(H�D$1��c��L��H�����H�߉��-��u
H�������H�k@��u
H�������L�c H���i$�H�=ڬ5H��H��H�H�C� ��H�=Ѭ5H���\��H�-s�5f�}u~H�L$dH3%(H����H��[]A\A]�@H��ƒ����k���H�€�H�{H��W������N���H�����A���DH��H���
��C����H�|$� �H�k9H��HD�H�SH� uH����S����H�R���%�DATH��US1�H��H�=ԫ5dH�%(H�D$1�H������t	H�$��tH�L$dH3%(H��urH��[]A\�H�����t؋����u�H������t�H�kH�CH��L�c H���^���H��A���R�L��H��H��H�x5H�8����H���{����]�ff.�f���AUATUSH��dH�%(H�D$1�H�l$��H��H��H��5���H�߻!�	���H�=�n5��1�H���5�J	�H��H���5�����)�I���S��؃�v6�S���v.��0��	v&��_t!�H��L��\$��H��H������f�H��H��u�H��^	���.L�k~���C�k����t1��{@��H��H��L��H���:���H���o���I9�u��)�H�=��H��H�����
H���A���H�ھH�=������
H��� ���H�ھH�=�g����
H�����H�ھH�=�P���H������H�ھH�=����
H�����H�ھH�=lF	�i��
H�����H�ھ	H�=:H�H��
H���{���H�ھ
H�=HR�'��
H���Z���H�ھH�=yY	��H���9���H�ھH�=�C���H������H�ھH�=�C���!H�����H�ھH�=[O��1H������H�ھH�=0O��AH�����H�ھH�=2O�a�QH�����H�ھH�=O�@�aH���s���H�ھH�=�C��qH���R���H�ھH�=����H���1���H�ھH�=�j����H������H�ھH�=�B���H�����H�ھH�=�����H������H�ھH�=��z��H�����H�ھH�=;�Y��H�����H�ھH�=��	�8��H���k���H�ھH�=�W	���H���J���H�ھH�=�W	��H���)���H�ھ
H�=U����H������H�ھH�=?���!H�����H�ھH�=�M��1H������H�ھH�=�M�r�AH�����H�ھH�=�g�Q�QH�����H�ھH�=��0�aH���c���H�ھH�=�&��qH���B���H�ھH�=�B	����H���!���H�ھH�=�b����H������H�ھH�=����H������H�ھH�=Gi���H�����H�ھH�=
��j��H�����H�ھH�=��I��H���|���H�ھH�=
�(��H���[���H�ھH�=�	���H���:���H�ھH�=�	���
H������H�ھH�=]U	���
H�����H�ھH�=?U	��!
H������H�ھH�=r���1
H�����H�ھH�=?(�b�A
H�����H�ھ	H�=�2�A�Q
H���t���H�ھH�=�T	� �a
H���S���H�ھH�=�T	��q
H���2���H�ھH�=Ky����
H������H�ھH�=�z���
H�����H�ھH�=���
H�����H�ھH�=��{��
H����H�ھH�=��Z��
H����H�ھH�=��9��
H���l�H�ھH�=�l���
H���K�H�ھH�=�n���
H���*�H�ھH�=qf���H���	�H�ھH�=hS	��H�����H�ھH�=JS	��!H�����H�ھH�=,S	�s�1H����H�ھH�=S	�R�AH����H�ھH�=�R	�1�QH���d�H�ھH�=�R	��aH���C�H�ھH�=�R	���qH���"�H�ھH�=�R	����H����H�ھH�=xR	���H�����H��1�H�=�.���H�����H�ھH�=���n��H����H�ھH�=���M��H����H�ھH�=�Q	�,��H���_�H�ھH�=�Q	���H���>�H�ھH�=�Q	��
��H����H�ھH�=�Q	��
��H����H�ھH�=�Q	�
��H�����H�ھH�=�Q	�
��H����H�ھH�=�Q	�f
��H����H�ھH�=�Q	�E
��H���x�H�ھH�=uQ	�$
��H���W�H�ھH�=qQ	�
��H���6�H�ھH�=aQ	����H����H�ھH�=TQ	���H�����H�ھ
H�=GQ	���H�����H�ھH�=c���H����H�ھH�=(��^��H����H�ھH�=.�=��H���p�H�D$dH3%(uH��[]A\A]�����AWAVAUATUSH��8dH�%(H�D$(1��zt0�����H�|$(dH3<%(���WH��8[]A\A]A^A_�fDI��H��I��H��A�����Ņ�u�M��t�M��~�A�MO�L5��~��H�5:P	��Hc�H�>��DA�}*�5DM�e�M9��c����Y����M�eM9���A�E�H߉ƒ�]��p�Dž��NI�����48����Hc�)�H�=Xm5������I�EI9��A�U���_t�p�������M9�w3�f���DL��L��H��L�$�N��L�$H�I�M9��=���A�$�H���v̍H���vă�0��	v���_t��ƒ�w�M9�������=tL��?t	��!�������M������D���I�T$I�D$I9��qA�|$=�I�������A������I������DI���>A�U��=����~��A��@����M�e�M9������A�y�=�����I�v�D��H��L���s��������������A�}]��M��M9���I��u��a���f�A�E<=��<~�C���M�e�����A�}@�M�e��f�A�E��=���������DA�}@������A�E<<t�<=�o���A�}>M�eu��c�����Ƀ�����A����M��
�.���A�$���fDA�}=�I�mI9�v@A�u�~������~�������0��	����_���Ƀ�����-��a���S�����������E�����-t���0��	����L���fD���0��	�����H��I9�u����L��H��L��L�$�$��L�$���D$��L��H��L��S ���L�$A��D�T$��H�ھ
��SXL�$������H�ھD��SXL�$��uC�=Y�6uH�N	H��H�r�SPL�$�<�6L�$H�ڋ5/�6D��SX��L�$�u���M�����M�e����L�d$L��L�$I��D�T$H�t$L��L�l$�S8L�$��~�D�T$A9�� ���Ic�L��L�����I���L�������L��H��H��L�$�4��L�$H�H�����q�AUA��ATUSH��(H�|$H�l$H��dH�%(H�D$1����H�|$I��H�7�� uNH��H������D��H��L��H�����H�l$H�T$H�L$dH3%(uH��([]A\A]�f�H�_����DATA��USH���L���H��Hc�H���HD������tE��tk�v�H��H���k��E�5�P���t%��H��[�1�5H��H	�]A\H����fD�H����H�5dG	H��H��b5H�81���H���h��H����H��H��������H�����������H�������UH��SH��H�����H��H��H��H��[]������SH����H��[H��������SH�_H��u[�H�GH��H���M�H�=N�5H��[�-��ff.�f���ATUSH���0�H��t[]A\�fDH����H����I��H9�tH���P�����H���P��H���u3H�����t*H��ƒ���tH�€�H�{H�t
��uH����H�������H��H���M����H��[��H�H��]A\Hc�H�/c5H�8���H��L������L��H��H���W���e���f���ATUSH��@��tO@���H���������������U����}H�k H���t H��[]A\��H��H��[H��]A\Ð���5L�c�x��������=��5H��H	�H=�H�k F�L��H���S�H�=��5L���t���f�H�kH�CH��L�c H���e�H��A���Y�L��H��H��H�	b5H�8���H���<���f�H�����H�k �����H���F��H�5�D	H��H�=]5H�81���ff.���ATH��I��H��UH��SH��H��H��@dH�%(H�D$81�H�|$���uH�����uDH����H��uoH��H��L����H�����H�L$8dH3%(uNH��@[]A\�H��у���t�H�р�H�xH�t���u�H��H�D$��H�D$�f�H�������Q����UH��SH��H����H��H��H��H��[]������SH������H��[H���������SH�����H��uH��1�[����H��[�'�����H���v@��t
H��H��H��Ð��F�fD��1��5�D��USH��H��H���w"H��o���H������H��[]�D�������H��ETuJ��u=1����H��tH����H�5�B	H��1��k��H�ى�H�5�B	1���`��H���1���H��thH���$��H�5aH��H������H����H��tH��H��[]���f�H��H�߾[]�������H�5	B	H��H��1�����H�]F	Hc�I��H��H��H�5lB	1����ff.�f���@��uH�����t
�����tH���:��f.�H�G�ff.���H�����H��t&H� t
H�@H���@H��H����1�H��Ð�����5H������J���t�ȉ
o�5H��H���fD��H�]�5SH�x��H�=L�5H�5=�H��H���2��H��[�ff.�f�����5�D��H���v��1���
����1��ff.�f���H���v��1�������1��ff.�f���H���v��1�������1��ff.�f���H���v��1�������1��ff.�f����H���t H���v��1������f�1��ff.�f���H���v1������f.�1��ff.�f���H���v��1�������1��ff.�f���@��tH� ��1���
���fDH��H���w�1����@��tH� ��1������fDH��H���w�1����ATUSH�H��H����tnH����t1H���i��I��H��tZH�EL�����[L��]A\����H�����tƋ����t
I�܃�u���H�C H��u	H�CH�1�[]A\�H�W5H��H�5-?	H�81��k��ff.���AUATUSH��H���t@H����tJH�����I��H����H�EL������L���y�H��H���HD�H��H��[]A\A]�@H�����t������t
I�܃�u��H�C �u�H���f���uH�]�L�cH�CH��L�k L������L��A�����L��L��H��H��Z5H�8�m�H���H��U5H��H�5>	H�81��]��ff.�f���SH��H��0dH�%(H�L$(1�H��H��H��H���s��H��H������H������H�L$(dH3%(uH��0[��u��D��SH��H��0dH�%(H�L$(1�H��H��H��H�����H��H���h��H�����H��HD�H�L$(dH3%(uH��0[��	����H��8H��dH�%(H�L$(1�H��H��H��H�����H�����H�L$(dH3%(t���H��8���UH��SH��P��YH��H��H��[]���H��1�H���H��H��H��H�v���ff.�f�����H��K��f���fD��H��1�����
��H�������H��1������H�������H��1������H�������H��1��q����H�����@��USH���H�����f�H��H�@��~A������	É��	É��	É��	É��	Í<��}Hc��f��H�EH��H��[]����SH��H��O�H��[�F�fD��HcH�G1�H�H���R��f���HcG����HcH��H�����H��D�H��H���G�E��~UA��L�OD��!��H��L�;0t.�@��t3��
�@��t"���D!�Hc�H��L�90u�H�@H���1��ff.���AVAUATI��UI��H��SH��H�� �dH�%(H�D$1�H���DF���~�y�L�E��D!��H��L�D; t3D�PE��t[��
@D�HE��tG��!�Hc�H��L�D; u�H�XH�\$dH3%(��*H�� []A\A]A^���E����9����uf��D$D$��������	���	���	���	���	�<�9�~/�щ����	ȉ��	Љ��	Љ��	Љ��	Ѝ<��<$�Hc����H�}H�D$�E��~AE1�I���DA��D;u}*Ic�H��H��0��t�H�PL��A������H�}D;u|�H�D$fo$H�EM��H��D��H�����������D��H��D�H��H���F�E��~SA��L�OD��!Ή�H��L�;t.�P��t2��
�@��t!փ�D!�Hc�H��L�9u����fD1��ff.�f���AWAVAUATUSH��(dH�%(H�D$1�������h�H�D$I��I��H��I��I��1�H��H�D$����tcH��H9�tZI�GH؋��t�H�pL��4A�Ճ�u�I�GL��1�H�t$H�DH�D$A��I�GH�T$H�TH��H9�u�f�H�D$dH3%(uH��([]A\A]A^A_��,��ff.���������AWAVI��AUD�h�ATUH��S1�H��H�T$�
�H�CI9�t[H��H��A��H��HE���t�L�x�ׁ��v!1�;z�5w�׾����H�����H��H�T$L��A�փ�t��u�H��[]A\A]A^A_�DD��H���]���x����������~lAVE1�AUI��ATI��U�h�SH���D��t@I�FL9�t7I��L��H��HC���t�H�xL��A�ԃ�u�D��H������I�FL9�u�[]A\A]A^��f����ff.���� �fD��H�������$�fD���@�fD��H��%HE��f.���H�GH�WH�BH�H�G�h 1��f���H�GH�WH�BH�H�G�h$1��f�����fD��H�GH�WH�BH������H�7�FP��<t/H��H��t#H�OH;Ju�5fDH9HtH��H�H��u��f�H��H�H���H��H����D��H�
R5H�H�@8H�@��XH��>H��?������H��Q5H��H�����H�H�R8H�r���X��	ʈ�X����H��Q5H�H�@8H�@��XH��=H��?������H�mQ5H��H�����H�H�R8H�r����X��	ʈ�X�@����fD��H��1�H�v H�xH���f.�AUI��ATI��USH��XdH�%(H�D$H1�H�l$H�D$�}��H��H�����Å�t$H�L$HdH3%(��uTH��X[]A\A]��L��L��H���Z��Å�u�I�EI$H�t$H��蟭�Å�u�H�D$I)EH����������UH��ATI��SH�����H���H�� dH�%(H�E�1��\���u
H������tnI���veL)�H����H��H9�sOH)�H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��u0H�D$H����@H�E�dH3%(uH�e�[A\]��H)�H�L�������ATA�Ժ@U��H��SH��PdH�%(H�D$H1�H��H����H��<v
��H�����@H�<D��H)�H�|	1�����אUSH��dH�%(H�D$1�H�$��x*��H��H����Z��H�����0��t�uH�D$dH3%(uH��[]É�H�=<	�/������f.����=�5�q�������=ڀ5�a������SH�����H�5z5	H������1�[�ff.���H��H��5� �7��H�P H�JH�JH�JH���f���H��H�!5����H�P �H�BH���@��H��H�Q5�����H�P H�RH�H������H��H��5�@���H�P H�J(H�RH�H�J0H�J(H���ff.���H��H��5�$�g��H�P H�RH�H������H��H�5�5�l��H�8�HE�H���D��UH�5�5SH��H���7��1�H�8tH��H��[]�DH��L5H�5r5H��H�H�j8H�(���H��H��tH�PH���H��H��[]�f.���H��L5SH�55H�H�X8豫�H9�[HE��ff.���H��H�5�'5�|��H���H��HD�H���@��H��H�5�'5�L��H��H�����SH��H�5�'5�,��H������‰��PP�����	ʈPPH��[�ff.����H��H�5Q'5����@PH��H��;H��?������SH��H�5!'5輪�H��������PP��	ʈPPH��[�f.���H��H�5�&5�|���@PH��H��<H��?������H��H�5�&5�L���@P����<H�H�����D��H��H�5�&5����@P��<�HE�H�����H��H�5Q&5���H�@QH��H�D�ff.�f���H��H�5�5輩�����HD�H���D��SH�5t5H��茩��H��[ÐH��J5SH�5�5H�H����b��H9XtH�XH�@H�[�ff.�@��SH�����H�@H�H��[��H��H�5�5���H�J5H�H���H;PtH�PH�P(H�@H�H�P0H�P(H�@ H���D��H������P$P H��Hc�H�D�H��H�5�5蠨�H��I5H�H���H;PtH�PH�@H��@ H���f���H�����Hc@ H��H�D�D��USH��H��H��H�5�$5�4�����H�������H��H��ƒ���tz��uuH�5�5H��������H���H��tD@��ubH�����tYH��ƒ���tL��uGH�5�5跧���ueH���H��H��[]�H���[]�H�C5H�5�5	H�81��<��H��B5H�56	H�81��$��H��B5H�5�5	H�81����H��B5H�5�5	H�81�����@AVI��AUI��ATI��USH�SZ��/�DH�� dH�%(H�D$1�H��fDI�L��L��H��H��	H��H��H��H�$Hi�ʚ;H)�H��H�L$����tƅ�t��nuH�\$dH3%(uH�� []A\A]A^É�H�=}.	�������D��H���S���H�x8H�@H�xH�D?H���fDH���G����t
sH�G�1��DH�H�x ��ff.�@��PXH����H�5�lH��H�8A5H�81����fDSH��0dH�%(H�D$(1�H��F5H�H�P8H9��H��F5H��H�H9�����GPH�|$H�T$��H�t$ <uhH�C H�xxH��t8@��u,@��uH�����t�������'��j��f.�H��ugH�CH�L$(dH3%(��H��0[�@H��H�t$H�T$H�@�H��H�$H��H��H�=f裢�H���Z��������H�=4	��1����H�/@5H�5�3	H�81��f��H�@5H�5�3	H�81��N������f���SH�5� 5�o��1�H��H�����H���[�f���H��H��H���
��1�H���fD��AUATI��USH������I��H��D5H�H�@8H�hH��8H��8H9�u
�%H�H9�tL9��u�H�sL����H�H9�u�H��L��[]A\A]�ff.�f�UH��SH����������舧��xH��[]��8���H��0���ff.��S1����������t����߉�1�������t[�1��;��ff.���AVAUATUSH� �H��L�&L�vM����H�D5H���p��u^I�$M�l$�;H��H����H9�}QL��H�<�tL��诮�L��H���_��I�$��Hc�� u�I;l$}I�T$ ��f�L���8���M��tVI� trI��I�^1��-fDH����I9�}/H�߃��9��H��J�����H�Lc�� u�H�CI9�|�[1�]A\A]A^�f.�H�v ���M�v �f.����������H���������f.���SH���3��H��H���x��1�[�@AUATUH��SH��H��H��t;I�Ժ4莯�I��1�I��4t3A��uI�����tA�E����t(�H��H���E��H��[]A\A]�DL��L���%��I�E�Āu�����t����I�EH�x����ff.���USH��H�t$H�5:5�ՠ�H��H�D$H��u��(Hǃ��uJH��[]�H�|$���H�|$���xH��tCH��C5H�UH�5Q0	H�81��/���H�{HH�5��د�H�D$H��[]�@H�������u�H�|$����(H�D$H�����f���H�{HH��tH�pH� t�H�p�H�5P�f���������������UH��SH��H�|$H�t$�$��H�5
5H��H��袟�H�@ H�x@H��tH��t1�H���ƿ�¸��u1�H��[]�f���UH��SH��H�|$H�t$�Ļ�H��t
H�Eu
1�H��[]�@�a
H��H�����H��H�����H��H���b��H�¸H��u��f���USH��H�5O5���H�@ H�h@���H��H��tH��H�5���H���ý�H��H��[]�f���AVAUI��ATI��US��H��H�� H�5�5dH�%(H�D$1��y��I�ƍC�����I�$H�D$�l��Ņ�t	����H�|$賺�H9��6tbH��u5��ui����I�D$H�L$dH3%(uhH�� []A\A]A^�fDI�V H�z@H��t�H�T$H���&���t�H�D$�I�F H�@H�fDH�|$�n��뙺�����������H�\$H�=�%	1�H�����H��L��H������H��蚾�H�=K�1��,���������USH��dH�%(H�D$1�����H�Ӆ�u>1�H�5�5H���%��H��H���:���H�L$dH3%(��H��[]��H�>H��t�@��t1H�1�H��~H���ʚ;H��H��H�����HA�H�$H���D����
K�f/��k���f��f/�s?�YG�f/�s�H,�H�$H���D�����\��H,�H�$H�<$?��H�$H�������1��\���w�����H�7H���6L�G�H�=r�6齢�ff.�f���AUI��ATI��U��H��SH��8dH�%(H�D$(1��R�H���z��H�D$��������1�I�EH�$���~H�D$H�l$H����H�H<5H�SH��H��H�=?���H�H�@8H�T$ H�\$H�D$H�EH�H�k�H�C���L��H�L$(dH3%(ujH��8[]A\A]�@I�EH�D$���y���H�|$t
H�|$���������H�������T��������~�H�T$�������UH��SH���B��H��H��H��H�B>5H�8����H��H��[]���H�M;5ATUSH�H�XH�{�1��uH�����t
H��у���t[]A\�H�xu�� ��H��H�hH��t�H�CH�PH�H+BH���H��H��H� ��H��H�<��K��H�E tqH��L�eI�T$I�$ uI�T$ Hc�H�@H��H�H��H9��\���L��H�\藥�L��H��[]A\�G���H�@ �K����H�m �f.�H�R �c������H�:5ATUSH�H�XH�{���uH�����t
H��у���t[]A\�H�xu�� ��H��H�(H��t����D�`�H�:5Mc�H���punH�E�� tUH����I9�}�H�EJ��t�H�H�XH�@H9�t�H��H�\葤�H��J��[]A\�A��H�@ �{���L;e�U���H�E �H�{H�3�H�GH+pH��H���f&�K�t$[H��H��]A\�����H��H�5�5�,���HP�ʃ���u&H�@ H�Px1�H��t1�����H��H���DH�= 	��w H�=[���u��H�=�	H�_HD�H���3��SH��H�� dH�%(H�D$1����H;�6H�$u>H�H��6H���H���6H���1�H�L$dH3%(u@H�� [��H�t$H�|$�	���u�H�H��H���HD$H+D$H�����`��SH��0dH�%(H�D$(1���t'9=Ej5tH�D$(dH3%(��H��0[�D�1���j5��u�H�=j51�1�H��H�D$H�$H�D$�H�D$��7���uZ������i5��w��t�w���fD��u!H�=�i51�H�;-	1�����P������"H�=z	�y������H�=U	�0�f��fDS�1���Pi5��u+H�=Li51�1�H��,	蔧��t
���8t&[�@r���t��H�=�%	1����f������h5��t˾H�=�	���US��H��dH�%(H�D$1�H��H����6��H��1t���0��tރ�u%1�H�L$dH3%(u!H��[]�D��݉�H�=P%	�{��f��fD@��uH�����t�����uH���H��H�@05H��H�5_	H�81����@H��H�v���H��� tH��H��H�����@H�@H���ff.�@��SH���s�H��H�����[H��H����ff.����SH����H��H���x���[H��H����ff.����SH����H��H���H���H�@H�x	H�D[�f�H��[������SH���C�H��H������H�@H�x	H�D[�f�H��[�������SH����H��H�p���H���O��H��[�f.�AUI��ATA��USH��H��8H�vdH�%(H�D$(1�H���A����w�H����H��uyE����I�E��H�SH�\$H��L��H��35H�\$H�=SZH�T$H�H�@8H�$H�EH�H����C H�C訐�H�{H��� u�H�GH��t����H�L$(dH3%(u=H��8[]A\A]�H��L������H��u$���H�
.5H�5	H�81��A�����H�
�(	��H�5�	H�=	荜�ff.�f���H9�t'H�G �OPHǀ�Hǀ����@�ff.�@��AVI�փ�@AUI���wI�A�UATA��U�����Ѝz~SHc�H����?I�H��Hc�H��H���HB�H���HC�H9�rA9�|A��E�e[]A\A]A^��I�>H��H)��2��H��1�I�H�<(���A�U�ff.�UH��SH��H���G9t��H��H�{H��[]��fD�{��C����H��[]�ff.�f�U1�SH�����y�G��xH����[]�f�H���1��q��C���y8H�����Ņ�u3�;���{���;�D��{�<�H����[]���������B����8舺�H�=� 	H��1��7���w���f�USH��XdH�%(H�D$H1����c5�Ņ�t9���H�=Zc5�%�����xcH�=Rc5������xSH�Zc5H��H�D$H�PH�$�,���ux�2c5�����-'c59�tH�d�6�����-�b5H�D$HdH3%(u9H��X[]��H�5) 	H�=�b5�=���H�5F 	H�=�b5�*����D�������+��8�t��H�=M 	H��1��#���{���ff.���H95�6ATI��UH��SH��tH95Ͽ6t	H95��6u2H�}H��tH��L����[1�]A\�f�����H��H�E��H�#25H�5�	H�81����f.�H��u��q��AVAUI��ATUH�պ4SH��赜�I��H��4t\�uH�����u@�;��L��I��H���(��L��L��H�����[H��L��]�A\A]A^���f��M�����u��אH��L��H��[]A\A]A^�ڞ�f.���USH����w2H�ӽu
1�H�����@��H���B�H����H��H��[]�O����1������AWAVAUATUH��S��H��H��H�5
5認�H���H����I��H��� ��H�BH������������H��05L�eH�0L�����H����M���1�I�/M�oI��H��A�� ���H9�}3L��H�<�L���T��H��uG��Hc�M��u�I;G}I�W ���H��1�[]A\A]A^A_��H�����E���@H���[]A\A]A^A_ú1����Ʋ�H��'5H�5�	H�81��N��ff.���H�=-5H�H�@8H�P���D��AUI��ATA��H��UH��SH���apH��H�G-5H�H����@P��<t:�L��D��H������H�5h5H������(��t&H��H��[]A\A]�H�Y'5H�5�	H�81����H�A'5H��H�5�	H�81��u��D��H9���SH��H��t-fDH�HH�PH�H�@H�PH�PH��H��u�HLJH��H���H��u7H�C �KPH��Hǃ�Hǀ�Hǀ�[�ݯ�DH�5q�4���H�PH�PH�P�fD��SH��H�������CP�����CPH�C H�xH�@xLJ�H���k��ff.���USH��H��H�5�5臊�H�߃�H��t,�ǡ��������Lº��OˆEQH��H�H�D[]��{����f���AUATI��USH��~H�����H���[��H�5t5L��I���	���PPH�ʼnЃ�<t'����H��	<t<H��	H���HE�L��L��1�H�=�	�>��H��I��H��tH��H�5�	1�����(t$H��L��H�5�	1����H��L��[]A\A]�f�H���$U��H��H��t�H�@H�E uH�E H�HH�1�L��H�5(���H���	������H�5	H��HD��4���fD��UH��SH���>��H��聺�H�C�uH�����uH�[H��H�H��[]�H��H��蕰�����ATI��UH��S�}��H��@��tDH�H��~Y��"��H�C�uH�����u2H�C(H�[H�C0H�C(L��H�H�k8[]A\�H�����H���H��L������H�d+5H�5L	H�81�����ff.���ATUSH����unH�����teH�H�Չƒ���tU��uPI��u胥�a
H��H���c��H��a
H���/��L��H���T��H��H��[H��]A\�B��H�5�	H��1�豶���H�u��DUSH��a
H������H��H����H��H��[H��]�ɔ�f���UH��SH�����H��H�EuH��H��[]��H��a
�s��H��H�5��H�������ff.�@��H�������uH��É�H�=�	���ff.����H���c���uH��É�H�=�	�܏�ff.��UH�=h�6H�-�Y5SH�����H��Y5H9�tH�{��*��H�H9�u�H��H�='�6[]�ATA��UH���SH��H���7���H�C E��t.�H(H���H��t	H�����[H��]A\�8�����H(��f�AUI��ATUS1�H��H��&5H�(��xA���{�D�������H��X5H9t����H�������tH���L9�t#���4���H����[]A\A]��I�E �H(���H��[]A\A]�DUH�OH��SH��H��H�GH�H�H9�t4H�HH�x�H�JH�H�@H��GP��<���<���1����H��H9�u�+H��H�BH9�u�H��H�CH�1�H�CH��[]�H�������SH�7H��H��t�K���H���7�H��[���f���SH�5��4H���<��H�0H��t,H��H��$5H�H��	H;r8u���H��uH��[�H��	H��H�o5H�5��H�81����fDH�H�H9�tuAUI��ATI��UH�h�SH�Z�H��DH�KH�;H�SH�HH�H�SH�S�GP��<t1��l���H��`P�I��tH�EH�UH��H�h�L9�u�H��[]A\A]��ff.�@��SH������H��������H���Q���H��[�ff.����UH��SH������H��H�pH�����H��觽�H�{(H������������H��H��[]�f.���USH��H��H�t
H��H��[]����H���uH�����tH��ƒ���t	H
H�H��������H�����H�}(H������������H��H��[]�D��SH�����H���u:��u#H�����t�у���tH��H�fDH��������H������H��[�f���SH���c���H�����H��[Ð��ATUS��wiH��A�uE1�H�����A��H�����D��H��H��H����H��H��I����H;C8|
L��[]A\�DH�{(����L��[]A\ú1��n��ff.�ATUSH�u2H��H�vI��H����L��H������H���)���H��[]A\�H�=ʰ6H�5�
	1����ff.����AVI��AUATA��H��UH��SH��0dH�%(H�D$(1����H��A�D$����A�A��uE1�I�F����A��I���ofDE����H�E��H�S0H�\$L��H��H�!5H�=�GH�T$H�H�@8H�$H�C(H�D$I�D$H�H����C$H�C0��}�H��H���$�H9C8~�H�EuCI�H��H�����H�L$(dH3%(uLH��0[]A\A]A^�H�:5H�5f		H�81��q��H�=z�6H�5A		1��\���D��誥��Ź�D��UH��SH��H�����H��H��H��H��[]�������ATI��UH����StEH��H�L�����H��~?H�P8H��H�X8H�x(H)�H9ںHM��'���H��[]A\��H��萸�H���H�"5H�5	H�81����GP��<��USH����H����tZH���Z��H���SP����t4H�\5�4H��H�8��H���H���E��cP�1�H���G���H���[]�H�951�1�H�8�U�H��뙸�f.�AWAVAUATUSH��8dH�%(H�D$(1���P9�\�����H���6I��H��tH��5H�H;B8��I��$8I��$8H9����CP��<usH�S �B,��#B(�
ucL�-��4�-f.�H�H9�tp�CP��<u=H�S �B,��#B(�
u-H���H��t�L���Y}�H�H9�tH��u�H�PH9Pt�f�H�D$(dH3%(��H��8[]A\A]A^A_�DH��5�H�=�	L�5f	H�H�D$葍�H�=�	I��H�D$�x��A��$\L��A��$PH�D$H��5H�5b	M��$�H�L�@81����I��$8H9���H�C H�SL��H��L�CHH�5�	D�H(1����H���H����L��M��t!�I�WL��L��1�说�M�?M��u�H�5�	L��1�薴�H�{ 1�1���H�t$H���L��L��H�����H�5�NL��1��`��H�H9��L���A��$\H�T$�I��$�����o����H�5�4�{�1�H�PH�xH�r�H9�tf�H�VH��H�r�H9�u�H�H�5	L��1��۳�����葵���UH��SH��H�5��4�7{�H���@P�uH��<tAH�CH9��t>H��5H�H;X8tMH���H��t)�����cP�1�H�����H��H��[]�1����H�D5H�5�	H�81��{��H�������H�m5H�H�@8H�x�E��D��H���4��@UH�oXSH��H;oXtHH��H�=f�6��H�C`H�SXH�BH�H��M5H�k`H�kXH9tH��H�=3�6[]��@H��[]Ð����u��������H��1��!���uH��É�H�=�	�J��f.���H������uH��É�H�=�	���ff.����H��H�5!M5�,���uH��É�H�=�	���D��H���x��uH��É�H�=	輂�ff.����SH���H������t�u[É�H�=W	���ff.�@UH�oSH��H��H��8H���'�H�;H�C�H9�tH��t	H�����H��H��[]�+�ff.���H��h�c���AVI��AUI��ATI��USH��@H�5��4dH�%(H�D$81��x�H��H�=5H�H�h8H������H�������H��ʃ���������M���ǃ(L��L���UQH���1��SQ裩�cP�H���H����ܱ�H���H���H�@���H�=
�6��H�.K5H�'K5H9���H�H�PH��H�QH�
H��HtwH�X�H�@�H�CH�6���H�=��6���H�CH��8H�H��@H�SH��@H���PH��@L��H�t$8dH34%(��H��@[]A\A]A^�DH�=Y�6�t�H�C�L���L��I��PwH���������L��H��H��H�C L��H��H)�H��H��������NL��H���Q����I1�H�������E�H���������H�{HH��H�TOH�����H��A���q�����E�������KPD���D��H�5�	H��H��5H�81����f�I�}�� uTI�}Hc�H9���ǃ(��L��H�������t)�� H�������H�������[�����H�5H�5�	H�81��O���ʯ��H�=			��~��H�=���~��H�=���~��H�=o	�~��H�=�	�~����ff.�@��ATI��H�5��4UH��S�u�H����������(��tl��tH�h5H�5��H�81�蟷��H���@��H��t�H� tEH��H�HH�H�5s	H�5H�81��Z��f.�[L��H��1�]A\�����H�@ �H��5H�5��H�81����f.���SH���cXH��1�[H�����D��SH���H������t�u[É�H�=��_}�ff.�@��H������uH��É�H�=���,}�ff.����USH��H��H�-,G5H��tH��诪��tcH�G51�H�=�6�r�����H�{hH�CHH�CXH�C`H�CX����=�6H���x�H���H�5����[]�u���H������t��D��ATUSH��H��0dH�%(H�D$(1��l��H�=l�6H�]�6t#H�D$(dH3%(��H��0[]A\�fDL�d$H�|$L���v������H�?5H�H��6�ؗ�L����艷�H���tNHc�H�1�I��H��H��H��H��I)�1�L�%Т6L)�H9�r���]���H���6H���6�F����H�T$H���fDH�l$L�d$H��L��L�%��6H�-��6�m��H9�����0����ATUS��~菇�	E59�t%[]A\É��=�D5�s����t�[1�]A\���@�=�D5�U����D5��~�H��5H�(H��t�L���M��t���D5��~�I�D$ H��t��H(���@����T��t�I��$�H���p���[I��$�]A\�����ATUSH��L�cXH��H�o�=��6�p�L;cXt`H9EHt,H9��6t#L�eL���͙��u)H�}H�~L���6�H�{HH���[]A\���t��H�=���
z�DH�=��6H�D$���H��C5H��C5H�=��6H�C`H�SXL�bL�%�C5���H�D$�X���������f����s������UH��SH��H��(dH�%(H�D$1�H�t$H�|$�����umH�D$H�L$�H)�H=Pv;H9�H��HF�H)�H9���1�H9���!�H�\$dH3%(uZH��([]��H���������H��H���DH��t+H�U H���H����H)�H=Pw���1��跩����1���x 9=�B5t9=|B5t9=xB5t9=tB5t�DS�iB5���9�[�����f.���釖����ATI��US1�H��PdH�%(H�D$H1�H�l$H������tH�T$HdH3%(��uLH��P[]A\��H��������t
H��赆���H�|$L��H��1�H�����7�������軨�ff.�����A5��x2SH���9��H������H�ٞ6H���u�]A5[������[Ð������f.���H�����H���6H9�u�PH�
�	��H�5�H�=
��x����H��H�51�4����H�H��H�Ѓ��ff.���H��H�=��6H���4� �`��H�P H�JH�JH�JH���ff.���U��H�5��4SH��H���Um��tH� H��[]�H�#���H��[]�f���UH�-�@5SH���
�H�=S�6�>�H�w@5H9�t(H�X�fDH�{@H�C@�7��H�CHH�X�H9�u�H��H�=�6[]�(���������������������������1��U�D��H��H��H����USH��H�/H��t+H9�t6fDH���H��H�=V�1��x���H������H��H�_���H��u�H��t&H�H��t�H9�u�H��H��H�[��H��u�H��u�H��[]��ff.����H�� ������H�W �B����sH�zH�����8{�����H�H�P �B����rȃ���H�H�P �B��tsr�����H�H�P �B��tYr����H�H�P �B��t?�v�����ueH�H�P �B��t%�\�����uKH�H�@ �P��tsH�x�A���1��@��u%RH�H�x �~��H��H��t	H���]z1�H���fD��UH��SH��H��H�!5H�8�NH��H��H��H��[]��ff.�f���S�H�� dH�%(H�D$1�H��H����p��tH���K��ʚ;H�����H��H�$$H@�HD$HB�H�t$dH34%(uH�� [��0��ATI��UH��S���x8t1ۉ�[]A\�DH��tL�f���H9�r�H)ŻI�,$��[]A\�fD��t1ۃ�Uu��M��t�,���H9�s�I�$���[]A\���AWAVI��AUL�-�<5ATU��SH��H��hdH�%(H�D$X1���t$8f�D$<M9m�gI�����L�d$0L�d$H��tL�:L�|$L�|$0���L�LC�L�d$(I�SZ��/�DH�D$0H�D$H�D$@H�$H�D$8H�D$H�|$�H�t�HFD$H�D$ ���x<M9mt6��H���������H�D$XdH3%(�H��h[]A\A]A^A_ÐH�L$H��H�|$�H��	H��I��H��H�T$@Hi�ʚ;H)�H�$H�L$H1����H��A���d�A	�u�H��tH�S �B,��#B(�
�r���M���M������H�|$(H9��V���H)�H�|$H�|$0�����H�D$ H��X���H��t7H�
L�t$@H�SZ��/�DH��H��	H��H��H��H�T$@Hi�ʚ;H)�H�L$HH�|$81�L����~��H��������蜡�ff.��SH��H�� dH�%(H�D$1�H�=�:5t.����H�����H�HB�H�t$dH34%(u<H�� [�DH�����ʚ;H�����H��H�$$H@�HD$HB�H�HB���
��f.�AWAVAUATUH��SH��H��H���H�G8L�~XH�FXH�G@L�oL�fhL�5�95H�F`H�G@L�8L�@��L��L���u�H�CH����H�{Hu�H�kH�(���{Pn�H��6L��L������CPM96t���H���G��������H�CH��t)H��5H�H��t	�J(H�CH�CH�{���@H�CHH�E`H�UXH�BH����L�}`L�}X��uH�{HH�kt2H��[]A\A]A^A_�Dǃ�H�{X�-�H�{HH�ku�H�C8H9C8t	H�{@H��uOH��85H9t�H�������[]A\A]A^A_�K�������H�ה6���f��GPn�e���@H��H��[]A\A]A^A_��f�H���H9�t��������H�E �H(����ATI��UH��SH�_H������H��L������H��[]A\����AVL���SH��L��H��hH�t$(dH�%(H�D$X1�L�t$���H�����L��H������H�K L�sH�\$H���L�t$H�L$ �l���H�\$H�C H��L�t$H���I�^H���,��L��I�~8I�FH��8H9��@H���7H���~�H���&��H�D$H�P �B,��#B(�
����65�f�T$D1҉D$@��65�D$H�f�D$LH�D$(H��t7H�SZ��/�DH�H��H��	H��H��H��H�T$0Hi�ʚ;H)�H�T$0H�L$81�H�|$@��z��~
�D$N��f�L�t$L���C��H�\$L��Hǃ��[��H�{H���/���H�CH;��t�CTH�t$H��5H�N H���H�
H�D$XdH3%(uNH��h[A^�f�H�����H�D$��P������at����@�\$H�O���������C���螜�ff.�SH���H��0H�t$dH�%(H�T$(1�H�W H�<$H�D$H���H�T$�j���H�$H�C H��H���H�{���H�|$���H�!�H���H���H�S �B,��#B(�
uIH��hH�|$��H��]xEcH�t$H�>H9�vH�H���A���H�t$H�T$ H��H�D$ �J���H�$H�|$Hǃ����H�{H�����H�CH;��t�CTH�4$H��5H�N H���H�
H�D$(dH3%(uH��0[�f�H�t$H������<��ff.��AVSH��8�45H�|$H�t$��x/H�����I��H������H�J�6H���u��35�D$��y6H�T$H�t$H�BH9���sH�|$�1���H��8[A^�f�H���H�����H�����H��I������L��M�vH�Q H�L$L�t$ H���H�T$(�h���H�L$H�A H��L�t$ H���I�^H���-��L��I�~8I�FH��8H9���H����H����H���'��H�|$H�W �B,��#B(�
��H�T$�t$�0���L�t$I���H�����H��Idž�����I�~L�����I�FL;��tH�t$�FTH�\$H�5�t$H�K H���H��H�
��H�{�e���H��8[A^�DH�����H��8[A^��H���X��H�D$ ��P�����p�����@�t$H�|$�
���%���D��H���S������H�����fD��ATUH�-��4SH��H���^�H��H��H�@ D�`(�s^�[]H�@ �@,��D!�A\��
�ff.�@��H���=ʎ6�=]�H��tH�����H�����D1�H���f���H���鰘���SH��H���輯�cP�[�fD��H��(Hc�dH�%(H�D$1�H�f�4H�t6H��H�t$�H�H�$H�GH�������H�D$dH3%(uH��(�軗�ff.���S�H��H�=Y�H�� dH�%(H�D$1�H�Q�4H�H�$��m�H��H�D$H�CH����H��H�D$dH3%(uH�� [��=��ff.�f���������u��1�����ff.�@�����1���t������ff.�@��H�M�4AVI��AUA��ATUSH�H�@8H�hH��(H��(H�H9�u�o@H�H��H9�t`H��D9hu�H�H�PL�`H�QH�
I�L�pI��$�H�H�BI�I�D$H����Э�A�d$P�1�L������H�H��H9�u�1�M96[��]A\A]A^�@��H��H�5!�4�[��PP���u��1�����H���ff.���UH��SH��H�5��4�w[��PP����t;H��H��1��>���SP�Ѓ���<vH��H��[]�@��H��SPH��[]ýH��H��[]Ð��SH���|�H�����tH��[�H�w�4H�5;�H�81�讝�ff.���ATUS蓔�I��H���4H�H�@8H�hH��8H��8H9�t"�CP��<tH�sL���a��H�H9�u�L��[]A\Ð���f.���H�-�4H�H�@8H�@�f�AUE��ATI��USH��hH�|$ H�t$H�L$dH�%(H��$X1���H����H��腠�H�D$(H���4H�H�h8H�E H�XHH��t	����覟�H��H�E H�XH薟�H�t$(H��H��H���cj�H�D$H�l$HL�d$XH�D$PH�D$H�D$`E���H�t$1ۺ4H���g�H��4t"M�����uH�������L9���H�D$ H�D$@����H�=�6貟�H�|$H�H����i�H�T$XH�t$PH�|$H�<��H�|$HH�T$@H�5����H�L$4�'H�T$XH�t$PH�|$HH���:������wH�=��6�F��H�|$HH���k�D$4���wH9\$H�f�H��$XdH3%(H���&H��h[]A\A]��H�=!�61����H�|$H�4H���`f�H�t$PH�l$HH��4�����f.�H������H���������:���H�t$(H���e�H��H���0�����(���H�������������������!���@������i���L��H�����H���]���D��D���/�H�t$H�|$H�D$ ��H������fD�����H�D$(�d���@H�|$HH�T$XH�D$84H�t$P�s��H��4H��$�DŽ$PH�D$p4H�H�D$H�@H��$H�_�����uoH�L$H�D$p�D$4H�A1�H�t$H�|$H�D$ ��H�D$8H��$HH�L$H�T$XH�t$PH�AH�|$H������tM�D$4��ujH�\$8���fDH�D$H�P���ǂ��D$4��u��H�|$HH���p��蛐����H�T$(H�5:�H��H���4H�81���H���4�H�H�R���H�z��g�@��闆����H���4H�H�@8H�@H���H�@�ff.����n����SH��H��H�5
�4dH�%(H�D$1��U�H;I�6H�@ tKH�x@H��tH��H���u��u#�H�L$dH3%(u$H��[��H�$��f.�H�@H���u��D��SH��H��H�|$H�t$�q�H�ƸH��tH����H��[�f.���ATUSH��dH�%(H�D$1�@����H�������H�H�Ӊƒ���������H��H�5��4�T�H;-B�6I��H�@ tQH�x@H��t/H��tRH��H���G^�H�L$dH3%(H��uUH��[]A\�H��t�H��1�H�,$�eU���H�XH��f.��j�H��I�D$ H�x@�H�5n�1��/���:��f.���UH��SH��H��H���h��H��H��H��H��[]��\�@��H���4H���P�����@ATUS��H���x���-H�J�4H�H�H8H�$9YT�H�A H���H�D$��[���H�$H�A H��H���H��&5H�YH9t���H�kH���R��H�{8H�C8H�CH9���H����H������������H�L�cXH���@H��L�����������u�ǃ�H����u��L�$$H��L�����H������I�D$L;��tH�$�BTH�4$H�2�4H�N H���H�
H��[]A\������t0L���H��L���D�������u��������u�H���n����c�H���1��H��������K�����AWAVAUATUSH��H�O �t$$dH�%(H��$�1������H�D$0I��1�H�D$(@H�q(@�Q(�y,��!���>9�u�A,��!��j�Љ�A�ԃ���A�����D$��E��tI�FL;���a���=A�FP �2I���H��� ��H��H����H����D$ Hc\$ L�t$H�\$�� �OH����H9��9H�\$H��L�<�A���NA����D��������I����A����M�oH�D$H���H�+H��%�� ��H����H�,$H���
H��H�<$� H�$E1�L�d�I�$L��M��u.���H�EH�p@H9�uH���]�H��u*H�mH�����E����u�H�uH���]�H��t�H;��6��H;w�6�gH;b�6��H�D$�D$ Hc\$ H���H�\$H��� �����H�\$H;X��H�@ H�\$L�<�A�������I���������I����M�������H�H�4L�(����I��I��L;4$���L�t$H�t$I����ȕ�I��4��f��D$��tVA�VQ���������������O�A�FPuA�FT��I�V H�B8H������H�@����^������I�N ���f�I�~�w^��'���f�H�KH�$H��u#H�[ �����T$$��������+���f�H���X_�H� t�����f.�H�H�����H���4L�(�}���1�H��$�dH3%(����H�Ę[]A\A]A^A_�E�fP�
� 5A����x'謷��H������L�5L~6H���uD�-� 5E��y3A�fP����L�����	��?�����u�A�FP��A	�E�fP�2����R���D���ʷ��I�~葺��L��D���6��I�~荆���H�JH�|$(H�T$81��D$0H�qH�L$@H�D$PH�t$HH���H�D$XH�D$`H�D$h4H�D$x4�D$p贊��6���H���4L�(�<���H���4L�(�-���H���4L�(����H�{�4L�(����L�t$�A�NP ���L��H��H��t6I��t0I�FL9��t+A�FP�ƒ�����vL���um��A�FP��L���T���L����\I�����r��H���4H�5��H�81��ڎ�f.�UH��AVAUATSH��H�ĀH��dH�%(H�E�1�H���nL�fH� �M�8s�L��H���=[��(H��L����t4L���H���H�E�dH3%(�OH�e�[A\A]A^]��I�$�� �I�T$L�s L�h ��`���H�Nj� I�Fx��d������H�S I�FXH�z8H�B`H�����H�w����^H���H��� ��H����H�����B,�ЅB(��Hc�`�������H��H��H�BH��H%�H)�H���H��H9�tH��H��$�H9�u����H��I�t$H��h���I�$ �$H���3HǃH��d���H��h���H��`����H�H�{ E1�L�`���D��d���H��h����3x�H�S H���H�B8H������H�p����R���H��x���H�RH���H��p���H�CH�E�H�U�1�Džp���H�E�H�E�H�E�H�E�4H�E�4�E��U�����L�f������(twH��L�����@H�������@I�t$ ����fDH�A�;����I�$��A�� �I��L��h�������H�����I��H����L�pH� uL�p M�&I�$ ��M�d$�/L���3m�H��t
�xtL�`I�~@������_�A��L�u�L��1��L��H����I�L��Lc��6��I��v	�*f�E��o�L��H���W��(�u���@蓘�����fD�gP��J(��R��+���M�d$ ��fDI���7����H)�H�L��Q���f�L����X�I�$������t�A���-���H��x���H�RH��p���H���H�CH�E�H�U�1�Džp���H�E�H�E�H�E�H�E�4H�E�4�E����H�S H�z8�0����q����SH��H�� dH�%(H��$1�H���4H�H�D$H�D$H�@8H�D$ H�D$(��h���H�D$H���J�H�5s���H�T$H����c�H�t$H���H�D$ H�H����`��H�D$ H���H��� �pH����H���mH�D$ H�|$@H�D$04H�@ DŽ$H�D$H�@H��$�N�������H�D$H�@���ǀ�����H��$H�L$H�AH�D$ H����qL�H�D$ H���H��� ��H����H����H�D$ H�P �B,�ЅB(������H�D$(�
��6��H��$dH3%(��H�� [�fDH�L$H�D$0H�A�1���H�D$(�9���@H�BH���r���H�D$ �`P�H�D$ H�@ �H(�V����H�BH�������H�D$ �`P�H�D$ H�@ �H(�w����H�z81��O��&�����H���4H�5�H�81��k��H�D$ �H�@ H�@���H�x�JV�f.���H��H�5�4�lD�H��H���KO�ff.�AWAVI��AUI��ATE��UH��SH���H��(�GPH�|$���E�=fD����H��I���5���H�D$H�@ ���uC�P,�҅P(t9H���A���H�D$H�P �B,��#B(E��u���t�H�z81��N��f.�H�\$L��L���L�������CPH�\$H����D$����CPH�C H���H�D$��K���H�L$H�A H��H���H�y�3��H��(�[]A\A]A^A_��H��(1�[]A\A]A^A_����AWAVAUI��ATI��USH���=zs6��A�H����H��H���H���L���H�D$H������L���L���߻��L��Hǃ����H�����H�{H������H�CH;��t�CTH�K H�1�4H���Hǃ��CPH�
�ƒ���u�U���	ЈCPL��A��H�T$E1�L��H��H��I��������t<H��L��[]A\A]A^A_�H�[�4�=�H�=�H�����K�H�
3�H�j���H�=���yE�f���AUI��ATA��H��USH��H�5�4�A�H��H�K�4H���H�H�h8tEL��D��H�����H9�tH���[]A\A]��H�U �B,�ЅB(t�H�z81��L���H���4H�5��H�81��Ճ�D��ATUSH��0dH�%(H��$(1�H���4H�H�@8H�D$ H�D$ H�@ H�D$(H�D$ H�@H�D$0�D$H�T$0H�D$ H9������H�|$ �&��H�D$(H�|$PDŽ$ H�D$@4H�D$H�@H��$��H�������H�t$H�D$@H�FL�d$ H�l$0H��8H��8H9�t/I9�tH�������cP�1�H�����H�H9�u�H�D$0��P��H�\$8�3H����H��uc�B,�ЅB(ub�D$H�D$0��P���D$H�|$ H��H�D$8ʚ;���H�T$(H�z8H���H��� u�H�AH��t��gP��J(��NJ��@H�D$H�@���ǀ�������D$��u7�H��$H�t$H�FH��$(dH3%(uH��0[]A\��D$����&y�fD��AVAUATE1�UH��SH�L�/H�_t�[��H�UI�����HLC�A�EP��<tzL�uM�����+��I9���L��H��H)�I�6�CP����CPH�u�p��H�S H�z8H���H��� t9H����H��u6�B,�ЅB(u5�cP�A�EP��<u�[�]A\A]A^�DH�AH��tʀgP��J(���H��f��CPH�{����CP��\裿��1�H������H�C��\�Y���f�[1�]A\A]A^�D��H�]�4H�H�z8H���H��� tH����H��u�B,�ЅB(u��H�AH��t�gP��J(��4H�@��U1�SH��H���4H�H�X8�CPH�߉Ń�����CP���H�S H�z8H���H��� t-H����H��u*�B,�ЅB(u)�CP��	�CPH��[]�@H�AH��tրgP��J(��G���f.�AVA��AUATUH��SH��H��D�gPH�t$���A��H�S H�H�����HC��CP����CPH�z8H���H��� ��H����H�����B,�ЅB(���CP��<u]L�l$H��L�����H�S H�z8H���H��� tRH����H��uO�B,�ЅB(uN�w��H9�rH��H)��CPH�t$��<t��CP��A	�D�cPH��[]A\A]A^ÐH�AH��t��gP��J(��tF��t�E��u��f�H�AH���1����gP��J(��@F��'���ff.���H��H���4H�71�H�H�@8H���}����H�����H���4H���ʚ;H�H�x8H��H��H��p;H��A��H�����I��HA�H�I�����LC��L������f���H��I�����H��L��H��q���@��Hc�H��H�|?�[W�H��H��H���<�ff.��AVI��AUATA��U��S�WP��A��A�����������ۃ����	�H�O �WPH�y8H���H��� ��H����H�����Q,�҅Q(��A���$fDH����H��uG�B,�ЅB(uFA�FP����9�uJ��ug1�L�����I�V H�z8H���H��� u�H�AH��t��gP��J(��jD��t�E��u�A�FP[]A\��A	�E�nPA]A^�f�I�~��\����1�L���F��I�F��\�y���fDH�VH�������gP��I(���C�A�FP��������H��H���4�H�H�x8�p����H���fD����f.���H�m�4�H�H�x8�4���@��H���C=�1�H���ff.����H�-�4�H�H�x8��@��AUATI��USH��dH�%(H�D$1�H�����@s�1��ً�L��H���H�=���I���5�H���4H�H�z8H���H��� ��H�AH�����B,�ЅB(��1��x��H�@L)�H���H�DH�\$dH3%(��H��[]A\A]�fDH���0��L��H��H���r�1����ʚ;I��H��H��H������H��H��H�����H@�H�H�����HC�H�4$L��H��H��H�=�����4�����fDH����H�������gP��J(���A�����H����u��&�����H��H�����H��H���w��������p�ff.�����w���tH�H��H���@C�P�1��\�AWAVAUATA��H�5��4USH��H��XdH�%(H�D$H1�H���4H�L�h8�"6�I��H� uI�E �@,��H���l�H���M9/��I�GL�l$0I�}H�$H�D$0H�D$H�D$(H�D$f�A�EPI���E1�1�H�D$(��Ń����A�EP��\����\;�P��H�$I�H�D$8H�D$H�|$@H��H�L��I�G�b��H�t$8H�D$@M�H�FH�0M���eL9-�d6�kIDž�I�}E��tI�u �F,��#F(�
��A�EP�ƃ�@��u	��	�A�mP��\E����M9���I�u H�~8L���I��� �H����H����F,�ЅF(�I�H���I9�tI�}���M;/����H�T$HdH3%(H���TH��X[]A\A]A^A_�f�M9��w���H�5��4H��L�D$�#4�I��L�D$H��tH�pI��I��v����H�=�c6�n���L�-�c6A�H�t$�W���L9-�c6M�/M�������H�zc6���DI�@H��������gP��N(��x>�I�H����@M�/H�5Υ4H���f3�I��H��tH�pI��I���������M�I�}�/����I��N���H���4H�5��H�81���u��?m�H�p�4H�5\�H�81��u������r���f���ATI��UH��SH���zU�H��H�(�4[L��H��]A\�a0���SH���T��tH�5`�4H�ߺ4[�r�H���4H�5�H�81��"u�f���1����D��ATUSH��PdH�%(H��$H1�H���4�T$XH�D$04H�H�D$8�D$(H�D$8H�@8H�D$PH�D$8H�@8H���4��H�@H�|$H�|$pH�t$H��(H��(H�D$`4H�T$HH�T$@H�QH��(H�D$8H�L$@H�D$H�@DŽ$@H��$8�:������dH�t$H�D$`H�FH�|$PH�t$,E1�H�"���H����H�|$H�D$��H�D$0��h�H�\$PH�ŋL���L��D$(�G���L��Hǃ��d���H���|���H�{H���0��H�CH;��t�CTH�K H���4H���Hǃ��CPH�
�ƒ���u�T$,���	ЈCPH��$8H�t$H�T$@H�FH�D$HH�BH�H�T$8H�z8H���H��� ��H����H�����B,�ЅB(���D$(�EH�D$0H��$HdH3%(��H��P[]A\�H�D$H�@���ǀ��������H��$8H�L$�H�AH�D$HH�L$@H�AH�H�D$8H�@���H�x�pA�H�A�N�����gP��J(��}:��F�����i���AWI��AVAUATUSH��HH�t$dH�%(H�D$81�H��4L� M�t$8H�����H�D$H��tI�F��P��D��H�t$4L����A�������f�I�Ņ���H�|$A��A�mI��I���H��H�D$����H�D$Idž�H������L���3���I�~L������I�FL;��tA�FTI�V H�5O�4L���Idž�H�A�VP�у���tKǀT��t\H�|$��A�mL��H�\$8dH3%(�>H��H[]A\A]A^A_���L$4���	�A�VPǀT��u�I�|$8H���H��� ��H�BH����A�D$,��A�D$(�m�����8��^���H�|$�Vb�H�������P���f�L��H�V���H�D$�Z����I�FE1�����@A��t"ǀT�-���H�����_���@1�H�=��D�D$,H�L$ H�T$��H�T$H�L$ H�D$D�D$,���f��gP��A�L$(�.����+g�ff.���A��An���E1��4n�@��H��1����H�r�4H��B,�ЅB(u
H����H�z81�H���q7���SH�� dH�%(H�D$1�H��H��H�\$H�$������uH�D$dH3%(u'H�� [�f��C�H9$t���C�H9$u����Sf���SH���#>���C�H��[�f���H���C�H���f�UH��H��AVAUATSH��H�����H�dH�%(H�E�1�H���HDž��I��I��H;���ή�H��H��H��H�@H���H��H���H)�H��H9�tH��H��$�H9�u�%���L�����L�d$I���L���\��I�~ L��L����
I�F �=�[6L��H)��L����=0�I�VL;��tA�FTH�����H���4H�����HDž�4H�q H����E�H�0H�FH�����H�E��3�������H�����H�F���ǀ����#H�����H��@��2������H�����H���"��H�CH������NPH���H9���H�����uH�����tH��������H�E�H�����L�����H�AI�|$ 耚I��$�H����H�����H�FH�H�VH�QH�
��P�CP��<�H�����H��H��t3DH�{1��M���H�K�QP�Ѓ�����w��QPH�H��u�H�����H���˼��H�{����H�C H�x0�S�H�C �KPH��Hǃ�Hǀ�Hǀ��M�H�������H�{h�_����=aY61��".�H�{蹯��1�H�M�dH3%(�zH�e�[A\A]A^]��H�����H���H�B�)���f��L�����1�H���I�������H)�H�L��"���H�����H���r����M���H������4��H�@ H�@xH������H��tH������tbH��4H����H�0�C_�H��H�����uG�@Pu\H�����H�@��Xu1H������APu$�J�H�����uHDž��H�����H�@H�����Hǁ��W���L�����I�~�5����:H�5ټH��H���S�H���&A�I�~ H��������`���1��:V��ua��C�錪�ff.���AWAVAUI��ATL�%z�4UH�-BW6SH��dH�%(H�D$x1�H�\$ ��I���HN�I��H�D$H�D$�'f�H������H���0���L�l$XM����I�} �َ��I�EXI�}hI�E`I�EX�Ԭ���=W6L����+�L������^вH��H�D$謬��H�|$L�|$`H�D$XL�t$P���H��H�D$�b���I�$H�CHH��L�d$pH��H�T$hH�BH�T$I�$��~��H�|$X�<���H�T$hH�D$pH�BH��&���fDH�|$`�&o�L�l$XM���&���1�H�L$xdH3%(uH�Ĉ[]A\A]A^A_���_�ff.�@��H���J��u�p�H���H��4H�5R�H�81��h�����g]����SH������XS�H��H�C1���H�[�@��ATI��UH��S��X~���?I��Hc�H��H��w+�����S�H��[I�D$H�uH��]A\�,u�@H����R�H��[I�D$H�uH��]A\�u����SH��H�H��t��m��H�C[�f.���S�wH����xH��(���H�CH�x�{]��H�{(�b:�H�{8�Y:�H�{H�P:�1�[�ff.����H�OH��t#�H�ύP~��?I�1���Hc�H���d%�@�ff.�@��UH�VH��S��H��訑���ۍC?��I��H�u�������?H�)ѺH��H	�H��[]�@��9>~/���G?��H�vI���������?H�)�H�����H��H!�����1�9>~3���G?��H�vI���������?H�)ѺH��H�������f�����ATI��U��?H��S�Z~H�I�A�$��Hc�H��H��w/�����pc�I�D$H��H��[H��]A\�s�f�H���Hc�I�D$�֐��ATI��UH��S��X~�H���?Iں���Hc�H��H���HB�H���b�H��[H�EI�t$H��]A\�r�D��AVM��AUA��ATI��UH��SH��H��tH�V����H�[H��tH�UH��A�}��ۏ��H�mM��tI�T$L��A�}����M�d$M��L��H��H��D��[]A\A]A^� +���AWAVAUI��ATE1�USH��HH�oXdH�%(H�D$81��D$H��t_�ʚ;H��H�e��H��H�E�oH��H�����H@�H�H�����HB�H�\$I�����H�l$�Ƕ��1�H���H��LD�H�D$H�D$H�D$H�$�kH����H�����B,�ЅB(��H�<$L��H����������I�}H��t	I�u(�9�I�}H��t	I�u8�9�I�} H����A�UI�}H��r��A�H�t$��H�E���H��HI�����Å���A�uM�u���WH���4H9�GL���w���H�
�H��tH�}�HB�M�uI�v �V,��#V(��
�01�@M���L���!���L��Idž��>���L���V���I�~L���
���I�VL;��tA�FTI�v H�
r�4L���Idž�A�VPH�1�у���u�L$���	�A�VPDA�}��x'�D$��~I�u�l����I�}�����聙��I�EH�P H�z8H���H��� �"���H�AH���%����gP��J(���)�����DI�N 1ۋQ,��#Q(��
���E1�H��tOH��H�	L�D$ H�SZ��/�DH��H��	H��H��H�T$ Hi�ʚ;H)�H��S㥛� H��H��H��H��H�T$(I�M I�UI�uA�}�F�D$��x-M�u1��b���f�A�uI�}�l$莘������f���U�M�u��0����l$��y��U�H�\$8dH3%(Hc�u9H��H[]A\A]A^A_��I�uH��6��R���H��H��������������X���ATU��SH��H��dH�%(H��$�1�H�j�4H�H�@8H�p H�D$(H�~8L���I��� ��H����H�����F,�ЅF(��H�T$8H	�H	ډl$ H�\$0H�L$@L�D$x�Y�S�4H�l$(���.����H�����H���H�-�M6H9���D�%�4H�\$0H�l$ D�d$$E��x/H����H��D��H�l$ �&�D$$H�\$0;D$ |���D$ H����H�D$P�D$HH�t$8H�����D$ H�V�x��s���H�t$8H�}8H9�t�`���H�t$@H�����D$ H�V�x��B���H�t$@H�}HH9�t�/���H��H����H��H�={������H��$�dH3%(�SH�Đ[]A\��|$ ��H��H�S�݉��H�t$0H�}(H9��:�������H�t$8H���5���H�t$@�D$XH�D$`H���G���H�D$p�D$h�T���I�AH�������gP��N(�L�D$H�L$H�T$�Q&�L�D$H�L$H�T$��DH�l$ H�](H���#�D��H���\$�D$$�|$ H�\$09��U�������f��T$$H�\$0H�l$ �B���D�D$$����H�l$ �+���fDM��tI�8I�p�_�1������1�����T����AWAVAUATUSH��h�|$�t$H�T$dH�%(H��$X1�H�<�4�|$XH��$��D$ H�H�$H�D$p4H�@8H�PH�D$PH�@ H��(H��(H�L$HH�L$@H�NH��(H�D$H�@H�t$@DŽ$PH��$H�r"�������H�D$H�@���ǀ�����H�D$PH�P H�z8H���H��� �0H�AH���s�B,�ЅB(�nE1�H�|$tgH�t$�ʚ;H��H�&��H��H�F�PH��H�����H@�H�H�����HB�H�\$(L�l$(�Ү��1�H���H��H�����HD�H�$�D$1�L�5Kk��M��f�L$f�D$`�D$f�D$d�<H����H���S�B,�ЅB(�NH�$H�|$ L����Ϯ���������4L�|$P��������H�����H���L�=I6H9������4L�|$P�D$h���<�D$lL��H�t$$L��A�1�L�������t$hH�|$P���;����H���4H9���V���H�
ǮM��tI�}�IB�L�|$PI�w �F,��#F(�
uWH�SZ��/�DH�	H��H��	H��H��H�T$0Hi�ʚ;H)�H�T$0H�L$8H�|$`1�H���/�L�|$P�D$ ��y�DO�I���H��賐��H��ILJ��А��L�����I�L��蜲��I�GL9��tA�GTI�w H�
�4L���A�GPH�|$PILJ�H�1�t$h������u�L$$���	�A�GPfD��x?�D$ ��~f�|$n������������t$hH�|$P訨��H�D$PH�x�O��H�|$PH�W H�z8H���H��� �����H�AH��������gP��J(��j!����H��������f�H�W I���B,��#B(�
�����1�M�������L���M���fDH��������������D$ �L����1�����T$hL�|$P�H��������fD�D$h����H�������k����H��$HH�L$H�T$@H�AH�D$HH�BH��D$ �����T$f�� ��1����������f��E�������E�H��$XdH3%(��H��h[]A\A]A^A_�H�\$H�D$pH�C�`����gP��J(�� ����H��H�������������H�\$H�L$@�H��$HH�CH�D$HH�AH�H�D$PH�@ H�@���H�x�u&�D�[L��	������7����FL�������&�����N�DH�����D�x1��G$��xH���H�_�4H�5ןH�81��W�1��?�ff.�@����D��H��1�����H������SH��蓀����[�DH�߾[麍��f.���USH�����4�k)�9�tH��[]Ë��4�����4�����4�B)�9�u׻���1ҽ���t{�fDH���ܖ����-��4��t'��t��t΃�u��Ȗ�@��t1�����%��@H�=a�4�d���U���H�=ɞ��H�=A�41�1�H�Ω�$��t��J�H�=n��0�2�f����ff.�����4�=���ff.�f���SH��4� 1��X:�1�H�P H��H�JH�JH�JH��4�wa�H�x H���5�H��[�fD��ATH�5Â4USH���9�H����H�5��4H��H����H�߲4H�H�r8H90t{H�����B=��I������H��H��L!�H	�H��4�H����tF��L!�H��H	�H�{ H��t[]A\�H���L�H���u[1�]A\Ð[�]A\�H�g�4H�5`�H�81��.T�H�O�4H�51�H�81��T�fD��SH�5ā4H���<�H��tH���OL�H�[����H�H�Ѓ��H���4H��H�5
�H�81��S���SH�5t�4H�����H��t$H�C H���K�H�[����H�H�Ѓ��H�4�4H��H�5��H�81��hS����H��E1�1��?���ff.�@��ATI��UH��SH��H���G(�L��H��H��E1�[H��]A\���ff.�@��H��A�1��ܵ��ff.����ATI��UH��SH��H����'�L��H��H��A�[H��]A\霵��ff.����H���4AV�H�=�AUATUSH�H�h8��7�H���-V�	H�=ěH�2@6�7�H���
V�H�=��H�"@6�7�H����U�H���4�����H�����H�51�H��?6H�;�*�H�;�����H���H�5�;�*�H�;�����H�ʚ��H�5~�n*�H�;1�H�2���H�5j|�V*�H�;1�H�ڸ��H�5DK�>*�H�;1�H���H�5��&*�H�;�H�'���H�5X�*�H�;1�H���H�5����)�H�;1�H���H�5����)�H�;1�H���H�5���)�H�;1�H�]��H�5���)�H�;�H�]��H�5���)�H�;1�H�D]��H�5���x)�H�;�H�Y]��H�5���])�H�;�H����H�5z��B)�H�;�����H�S���H�5p��')�H�;�����H����H�5U��,$�H�;�����H�m���H�5Q��$�H�;�����H����H�5b��#�H�;�����H�p��H�57���#�H�;1�H��h��H�5{��#�L�%�4H�;1�H�5�L���#�H�;1�L��H�5Й�#�H�;1�L��H�5��#�H�;1�H��4H�5|��h#�H�;1�H���4H�5���P#�H�;�H�����H�5��5#�H�;�H�����H�5���#�H�;�����H��m��H�5y��"�H�;�H��l��H�5S���"�H�;1�H�Xm��H�5ל��"�H�;1�H�@b��H�5��"�H�;�H�����H�5��"�H�;1�H��s��H�5|��"�H�;�H�r���H�5���f"�H�;�H�ǃ��H�5���K"�H�;1�H�����H�5���3"�H�;�H�4l��H�5���"�H�;1�H�\a��H�5�G�"�H�;1�H�a��H�5����!�H�;1�H��`��H�5����!�H�;�H�q`��H�5���!�H�;1�H�)`��H�5���!�H�;�H��_��H�5���!�H�;1�H�m��H�5��j!�H�;1�H�N_��H�5</�R!�H�;�����H��j��H�5�]�7!�H�;�����H��j��H�5�]�!�H�;1�H�0_��H�5���!�H�;�H��i��H�5���� �H�;1�H����H�5,��� �H�;H��H�5���;C�H�=��j�H��H�#�4H�0��L�-��4H�=8�I�u�!�H�5�\��I��H����K�1�L��H��e��H�5(�R �1�L��H�&`��H�5���: �1�L��H��_��H�5��" �H�Fa��L��H�5ݖ� �L�uL�����L��H�5ƖI��HH��H����Z�H�=���Z1�H�=��H��86H���4H�0�� �L�eH���4I�|$H�����I�|$X�[���I��$��N���I�D$8H�}H��I�D$@I�D$8I�D$I�D$HA�D$PnIDŽ$����H�EH���蜎��H�EH�� 茎��H���耎��1��):�eP�1�H����:�H����w��I�UH�;H�5ؕ�m��H�5�Z��H��H�786�2J�H�=+861�H��U��H�5���H�O�41�H�=86H�5����H�ۨ41�H�=�76H�5|��n�H��41�H�=�76H�5���R�H�C�41�H�=�76H�5��6�H�=�76�����H���H�5���H�=�761�H����H�5���H�=d761�H��[��H�5n���I�UH�;H�5��l��H�5�Z��H��H�#76�&I�H�O�4H�=ƔH�0��H�=761�H�~��H�5�H��66�}�H�=�66H�5���T�H�=�661�H��`��H�5�>�N�H�=�661�H�n���H�5���2�H�=�661�H�RT��H�5���H�=w66�H����H�5����H�=X66�����H�Dx��H�5�����H�=9661�H��q��H�5����H�=661�H�lr��H�5.���H�=661�H�r��H�5u��H�=�561�H��]��H�5���h�H�=�56H��H�5����>�H�=�56H���H�5���>�H�=�56H���H�5^��>�H�={56H���H�5���>�H�=a56H�ntH�5KK�f>�H�G56H�;H�5��j��H�5YX��H��H�56�*G�H�=56�H�w|��H�5����H�=�461�H�;���H�5E���H�=�461�H�o^��H�5���c�H�=�46�H�����H�5���D�H�=�46�����H�у��H�5���%�H�=~46�����H�‚��H�5����H�=_461�H��o��H�5�����H�=C461�H�:���H�5\����H�='461�H��o��H�53s��H�=461�H�R[��H�5ʑ��H�=�36H�/�H�5���<�H�=�36H��H�5���<�H�=�36H��H�5����<�H�=�36H���H�5���<�H�=�36H��rH�5yI�<�I�UH�;H�5Y��h��H�5ZV��H��H�H36�[E�H�=��I�H�=0361�H�Z��H�5�H�36��H�=
36H�5����P�H�=�261�H�	]��H�5;��H�=�26�����H��f��H�5���n�H�=�261�H���H�5��R�H�=�261�H�r��H�5���6�[H�=��]A\A]A^���f���H���=36��H����H�����ff.�@��AWAVAUATUH��SH��H��H�C�������v3������u
H�XH��u�@1�H��H��[]A\A]A^A_�@��u�H�xL�g�<�Mc|$dMct$hMcl$lMcd$pO�|?O�t6O�l-O�d$�uH�����t�������H��t�H�EL�}L�uL�mL�e �y����H�x1��-9�I��H���Y���H���;�I�T$LczdLcrhLcjlLcbpO�|?O�t6O�l-O�d$�u��t����H�X������H���=���H��������������D�������ff.����UH��SH��H���4H�H�x�<1�H����H��tAH��H��H���C�t?H�@H�H��H9�tH�TH��H��H��[]�3�H��[]�f����f���H�e�4H�H��h�f.���H���A�H�����uH���fD1�H�5�\��H��H���;�ff.�AVI��AUATI��USH�_H���H�= 06L��8�ą��H�=�4H�{H�:�4H�+�4覅��H�{X���H�����H�C8H��H�CH�C@H�C8H�K�4H�CHH��CPnHǃ�H�p8蝚��H���4H�=O/6H���4H���4�,���H��8L9��@H��L��A��H�mL9�u�H��(L��@H���H��0H��(H��H��H��H��H��H��H��H�� H��L��8M�l$H��@M�,$L� L��@ǃP�t���H�� �h���I��$��[���H���ǃ\[]A\A]A^��ff.����H���4SH�5}r��H�H�X8H������H��Hǃ�k9��&�[鰬���H���4H�5�k��H�H�x8���f���H��4H���p�ff.���U�H�պS��H��H���4H�H��hH�=/d����p���I��u��u-H��[]�fD���H�=�b���I��t�H��H���[H�=?���]�I�f���S�f��!!�H��4H�=�c��H�Hǀh���H���p�u�u [�DH�=Ab����H���p�t�H�=���[��f���ATA���US�[��H��H���4H���p@����E���5Ic��-��I��H���R�L� A����I�������L��H���$�H��������@�����1�H���-�H��I����L� A��uI�����tL��H����#�@H����1��y-�H��I����L�`A��uI�����tL��H���#�H���X��H����H�h@��teH���>��H��[]A\�fDH���h�H�H�������8���H���H�H��H�@��H��[]A\�1���,�I������H�����t�H��H���"�H�����H��[]A\�ff.�f���AUI��ATI��USH���@�H�x+6H��H���4H��H�H�h8H�e�4H�0�m�H�H���H���wL�H���L��L��H�K�4H��[]A\A]�D��@��H��xQH�ףp=
ףH��H��H��H��?H�H��H)�H��H��H��)ǁ�l@��tPHc�H�T�����fDI�q=
ףp=
H��H��H��H��I��H��H��H��)������l@��u�I��(\��(Hc�H��H��H��I��H��H��H��H��H9�tHc�H������Ã��h�����@���.�fDLcO�WI���wL�����AkR<H�Aiz�K��A:I��Hc�H��I�Q�H�H��H��H��y�DL)�H�QHH�H��H��L��H�H��xjH�ףp=
ףH��H��H�H��?H��H)�L��H)�H��+xtH�ףp=
ףH��H��H�H��?H��H)�H�H��k|����Hi��QH�H��H�ףp=
ףL��H��H��H��H�H��?H��H)�H�V�L��H)�H��+y�H�����H�ףp=
ףL)�H��H��H�H��?H��H)�H�V��y���H��dH�%(H�D$1�@��t@��uHH�4$I��H�����H�=U)6��H���������H�T$dH3%(uH����1�H9������2�f�UH��dH�%(H�D$1�@��t@��ug@��u	H�����u@H�4$I��H����*H�=E/6�0��H�L$dH3%(u}H��]�f.������
u���C����H��H�E1�I�@H�H��H��I�H��H��������I�L9ȸL�rH��H�D	끐H���X���s����.1�ff.���H��H��i4�.��H�H �Q-H�H�A �����Q-H���f���SH��H�?@��t/H�{�v5�H�{�m5�H�{�d5�H�{ [�Z5�f.��K5���f�H��H�t$@��tQ@��uk�������}H����@����H�H�L$A��H�5f.6�H���@H�����u�H��t!H��u�H�͙4H�8�H�I�4H�8�@H���4H�8�@H�a�4H�8�@H���4H�8�|����H�Y�4H�8�l������H�wH�?� ����=�v6t�";�f�H���mv6H�t$H�<$�g�H�t$H�<$H���:�DSH�����H����H�p(A�����H��y	H��A�H���������H��I��I��H��I��?H�2H��L)�H��H��H)�H��I)�H��H��H��H��?E��H�<
H�|�j�Y�HH��H)�H��H��H)�H��H)�H��H��A��H��
L)�A��E��tD�vA��;�<A��<��D���tK�u��;���<���K����S�������{���s�S��lHc�H��H��?H1�H)�������lt~�CH�
��Hc{��H��9������s�C�C�H�Ⱥ�$I�������)�)�)��K�C H���H�C(H�C0H��[���S����H�C�{�C두�C���S����H��KH�C�A���kHcɉCH��H��?H1�H)��l���?�C�C�H�<���fDA��<��D�����������f���<���K���(������f.��S�H���t���K�S�f.��CH�=6���lHc�H��H��?H1�H)�@�����C���CH����K�C�L���D���C�S�s�s����K����D������I��(\��(H��H��H��I��H��H��H��H��H9�����m�l����CH�
:����H��(\��(H��H��H��H��H��H��H�4��mH��H9��������H�����m�w���H��(\��(H��H��H��H��H�=͕H��H��H��H��H9�������H��HE��������H����5���UH��SH��H��H�5�&6H�T$H��tC�H�L$H���Q��1�H��4t	H��������C,����?	ЈC,H��[]�f.��H�=ć���H��H�%&6�PX�FH�=�H������H��H�Ǔ4H�8�	�H����ff.�@@��u"H�����tH��ƒ���t��u�fDH���(�ff.�@AUATU��SH��H��8dH�%(H�D$(1��������,L�-������؃������u H�����t��������
�"H�L$���
H��H�D$���H��4�zH���`�I��H���e1�H���	,�L��H�D$�+�H�\$I�����H�H��y	����L�D$ ��*L��H�D$ �5wH�=C$6����&H�H���fDH��|1�H�L$(dH3%(H����H��8[]A\A]�L�-�c������H�1���f�H���X(�H���]����Kf�҅�t
f/��f(�H�|$�T$�$�`8��T$�$f/��Y!����X�'�,��D$Hc�H���ɚ;~�X��H��ʚ;�D$�H,�f���H*�f.�z����H�׉4f(�H�5�H�8��0��H���'�H������'�\��D$�,�Hc�H��~��\"��ʚ;H)�H���D$�t���@H���8'�H��H��������������H���4H�5%�H�81��+0�H��H9�t)H�ڸH��H��?H)�H	�H��H�$�~$����f��f������^'�H���A�L��H�54�H��H�J�4H�81��/��AUATI��UH��SH��H��HdH�%(H�D$81�H���U���H����H�D$(I�$L�d$0M����A�$L��������H�����ty��v�I��M)��	�I���L��L��H���,�H���s��fo$foL$H�EfoT$ H�D$0)H�C0H��)K)S H�L$8dH3%(uWH��H[]A\A]�@I��M)��
	�L��J�4(�9����H�=��7������f�E1���E1��J����%�ff.���H��H�|$H�|$���H�D$H���ff.�@SH�� dH�%(H�D$1�H��t0H�.6H��I��H��t;H�t$�1�H��H�D$���H�T$dH3%(u1H�� [��H�t$H�=�6���L�D$H��6��/%�ff.�@�F9Gu�F9Gt�����D��D�F9Gu�F9Gu�F9Gu�1��9u���ff.�AWAVAUATA��USH��H��XH�$dH�%(H��$H1�H��H�D$8H���=`k6H�D$@�G �D$u�Kk6�N�fofoKfoS H�C0HcK)D$P)L$`)T$pH��$����q���H�<;�D$`H�D$PH�H�D$XH�|$PH��$�(�L�l$0H��I��H�D$0L��E�����g�H����H��H�����L�\$0��tj���I���QL�\$8H�D$0L9��H9D$@�
H��L��E�����	�H���`H��H���E���L�\$0�����H�$L�1�H��$HdH3%(�q
H��X[]A\A]A^A_�fD�|$\�����D$d��lHc�H��H��?H1�H)�H�K�@���	��9���D$\H�<;H�D$P�D$X���fD��H��t/H��H���{���L�\$0��������L�\$8�E���gH�|$8H����H��H���gH��H���3���������o9H�|$@H��)�$��oY)�$��oa )�$�H�A0H��$�E���r�M�H��H����H��H���������>L�\$@���o)A�)�$��oi)�$��oy )�$�H�A0H�L$8H��$H��$�H�D$(H��$�H�D$ @H�qL9���E���A����A���>H�D$0L9���H9���H��L��E�����I��M��� L��H�����H�L$0����	�AoL�\$@H�qH�L$8)�$��Ao`)�$��Aoh )�$�I�@0H��$�L9��B���Hc{�sH�L$�SI�������$�H�L$A��D��A�A�)�A����A��i�m����y�DD)ȉ@I���Љ�E��A���%D�����QA����D)�A��E��A��+��D�к��QA������D)�A���G�A��A����yA�DD��)�D�PDI�A��A��A�����QA���[D��A������D)�A��A��A��+�D����QA����D)��+�$��SB�&+�$��s�i�+�$�D)�k�<D�D)�Hc�D�Hc�)�H�;i��QHы�$�H�H���<�D�)�H�H�H�$H�1�����f�H�|$8H����H��H�������H�|����3�H���c���H��H�����L�\$0�������D$���VL�d$HI�� H��L��L�\$H���H��H�����x����*D�CH�t$0D�OD���D�����)R��A)�E9���D)Nj+i�L�\$H‹A+Ck�<�H�I)ËAL�\$H9CtI�ÀQL�\$HL9������H��L���V�H���mH��H������L�\$0�������H�D$HL9�LN�H�$L����DH��D$`H�D$PH�D$X���H��z�M���@��H�����H�H�D$PH�D$X�Y���H�H9�����I�����@H��H��?H�H�H��L��H��?L�H�H�H9�sH�t$0A�H��L��E������T�I������@�Ao0H�L$@I��H�L$8)�$��Aox)�$��Aop )�$�I�@0H��$�9����L9�}3H�D$0A��d���I������L�\$@L�\$8H�D$0����DI��A�L�\$0�-���@L�d$HI�� H��L��L�\$H��H��H�����{�p����*L�\$0D�GD����D������)R��A)�A9���)��+i�‹A+Ck�<�H�T$HH�H)�H��H�T$H�Q9StH-�QH�D$HL9��k���H��L����H���H��H���|���L�\$0���?���H�D$HL9�LO�H�$L��.����H�|$ H�L$H�t$��H�t$H�L$K�H)�L9�H��uI�C�H�D$0A�����L�\$8L�\$0E���S������H�|$(H�L$H�t$�,�H�L$H�t$I�H)�H9�H����H�T$0E1����f��D$X������W�D$T������;��H�<;H�D$P���fDL�\$0�6���fDH�H9�r��������H�<;�D$XH�D$P�B���@L�\$0� ���fDH�t$0H��E1������H�D$P�D$X����f.�L�\$@�v���fDI�������I��(\��(H��H��H��I��H��H��L��H�փI��L9�������H���HE����fD�������Q)������)׃�����D��A����A)�E�N�����A�������QE)�D��A����A)�A���%���f.�E�˺��QA��D��A����A)�A������DH�D$P���D$P��x��<����D$P<����D$P����f.�AUATUH��SH��H��dH�%(H�D$1�@��t@��utH�4$I��H�����
H�=�6����H��I�����I��H��tr1�H����L��H�E��H�H�D$dH3%(u?H��[]A\A]��H��H�H�H�H��H��yH�H��H�DH�EH�DH�����L���&2�H�5gxH��H��x4H�81��; �ff.�H��dH�%(H�D$1�@��t@��u`@��u	H�����u9H�4$I��H����+H�=�6����H�T$dH3%(uHH���@�����
u��������H�H�H�@H�H�xH�D?밐������@SH�5xO4H������P-����t[�H���*1�H�5tH��H��w4H�81��?�ff.�@��H�������@-��<�HD�H������S�v���H��N4�.H��H�x4H�8���H�P �J-H�B H������J-�o�oKJH�K H�J �K(�J(�K,f�J,[���USH��H�����H�5wN4H��H������uH��1�[]��H������H�}H�0H��[]���ff.���H�����H�8H����$��SH�5N4H���@���P-����u[�H���/�H�5�rH��H�av4H�81����ff.�@@��t:@��t4I��H��I�H�tLH��I9�uH���tL��H�H��H��L9�t �{���H�@��f�H�D�P�D�@H������uH�����t
�����t	H���@H�xu�H�@��ff.���H�������5wH�8�6����uH�����u�H��H���"�f������u�H��ÐH��dH�%(H�D$1�@��t@��u`@��u	H�����u9H�4$I��H����-H�=�6�a��H�T$dH3%(uHH���@�����
u��9�����H�H�H�@H)�H�xH�D?밐�[����@UH��SH��H��dH�%(H�D$1���t@��tH9��������D���u	H�����uJ��H��I��H�=+6H�,$���H��H��H������H�L$dH3%(u2H��[]�D�����
u�H��H������H�������Ÿ��������ff.�f�ATI��UH��SH�W H�F �_"H��H����?f����?��?)��F"f����?)��F"H�6k�<������_"H�?����)�i��������ttA�D$!�U!1ƒ�u3A�T$ �E ��
��
����8�t�%]�����QHc�[]H�DA\��U!������8��%]�����QHc�[]H�DA\�DH�uI�<$�C�����%]�����QHc�[]H�DA\����ATUH��SH�����H�5J4H��I������t7H������I�<$H�0������t����H������[H��]A\�@H��H��[]A\�.���SH��]��H�������~��H�������yH��[�H�z4H�5wnH�81��z�f.�S�G!������������W"��H������H��H	����W"�����<�'�Ѓ�|�����G#��H�	Ȁ�`tv��;���S#�����S$��H��	¸<9���H�{������xTH�{��5w�����yBH�{H��u[�f�[����f.���ua�S#�����S$��H��	��H��x4H�5�mH�81��[�H��x4H�5XmH�81��C�H��x4H�5QmH�81��+�H��x4H�5]mH�81���H��x4H�5VmH�81���H�lx4H�5mH�81����SH��H���
��5wH���0��H��H��������x;H�����������H���`�����5wH������H��H���h���1҅��‰�[�ff.�f�@��uH�����t
�����t�2��f�1Ҿ
�"�@PX�1�H���~��ff.�H��@��t>H��H�H��x=t!�
�o��H��H����fD�H���fD�
�H���H�/w4H�5'lH�81���fD@��uH�����t
�����tH�(kn�(����H����5w����H��H����fD��H������H�8���H��H���_�ff.�@UH��SH��H����H�����H��H������o�oKHH�S H�P �S(�P(�S,f�P,H��[]�ff.�@��SH��H9�t���H��[�f�UH��SH���b'�H��E4�.H����H�H H���Q-H�H�A �����Q-H9�tH��H���+���H��H��[]Ð1�H��t2����t	1��fD@��u"H�����tH�����
t1������D��f.��ff.�@USH��H���
H��@����@��u(H�����t�H������
tw��������1�1Ҿ
H�����H��H��4���QH���
��tV@��u@@��uJH�����tA�EH�����
t#��u.H�zH��uH�ZH��H��[]�fDH��H��H��[]�H����%�H�5ilH��H�l4H�81����DH����H��t�H��H��H��[]�DH���H�Dl4H�5�kH�81���ff.�AUATUH��SH�����H����H��L�`H� u$H�߽��xt!H��H��[]A\A]�L�`��f.�H�����A�Ņ�u�H��� uAH����H��	wH�UlHc�H�>���렐H��H��[]A\A]����fDH�C�f�L��I�D$H����H��t;I�T$H9�����rЃ�	w��@�pЃ�	w���5����Pk�<E��@���A�$�Bը��v���A�D$�HЃ�	�d���A�L$��qЃ�	�����Ai�Aŀ�-�A����Hc�H�l-����f�L��I�D$H���@�����rЃ�	������I�qЃ�	�����D��Q������L��H���=����x�:������V����I�D$����fD�L��4H�=�g�����������f.�A�$<Ztt�P���vb�P���v_�P��������M)ʼn�i�Hc�H�l-����f.��D)�����A�|$:��������@뻃�A붽4���f�USH��H��H�����H��H�����H���<��P-H�@ H�h�����P-H��H��[]�f��������S����@��u	H�����u@��t5����x3!�9�u-[�@�����u�1Ҿ
��H����D����H��p4H�5�eH�81���f�AWAVAUATUSH��H���z��H��t}H�(I��I��A�� tbH�x~dH����I�F1�L�%�iH�D$�+H��uH�t$I�<�������H��H��t=A��M��t�I�~u�I�v��H����u��H��H��[]A\A]A^A_����@I�FM��u'��1�L����0��	v�H��[]A\A]A^A_�I�F��f�H��A�E[]A\A]A^A_�ff.�f�H��dH�%(H�D$1�@��tH��H���@��u\@��u	H�����u5H�4$I��H����%H�=�6���H�T$dH3%(urH������
u��Q����H��H�H9�u�H���t�H��H�H��H��~H��H��?Hф�HD�H�D	��H����������ff.���H��dH�%(H�D$1��s�H�8@��trH����&�.H��H��?H�H��H��H��H)�Hi�ʚ;H)�H��?H)�H�D�u�H�����t�����tffDH�t$dH34%(uoH���@��uH�����t
�����
t?H��I����
H�=h�5H�$�5w�+��u��DH�xu�H�@���5w�v��^�����ff.��H���7�uH�����t
�����t	H���@H�xu�H�@��ff.�H���'���uH�����t
�����t	H���@H�xu�H�@��ff.�H���'��uH�����t
�����t	H���@H�xu�H�@��ff.�H�����uH�����t
�����t	H���@H�xu�H�@��ff.�H����5w�2��uH�����t
�����tH����H�xu�H�@��H����5w����uH�����t
�����tH����H�xu�H�@����H�����H�8���H��H���O��ff.�@��H�����H�8�{�����5wH��H�����f.�H�@H�x)H�D?�uH�����t�����uH�xt/�fDH����uH�����t
�����tH���@H�@�H�xu�H�@��ff.�UH��SH���r�����5wH������H�}H��H��t)H�@H�x*H��H�t?H��[]�����H��[]�f��{�H��H��H��[]���f.�H��(dH�%(H�D$1�H���ɚ;~sH����&�.H��H��H��H��?H��H)�H��������H)�H9���Hi�6e�H�H�H�t$H�t$H�<$����H�L$dH3%(urH��(�f.�H��y�H����&�.H��H��H��H��?H��H��H)�H��H�A�H)�H9�Hi�6e�H�H��H�Fb4H�5�]H�81��-	����UH��SH��H��(dH�%(H�D$1�H�L$H�T$���H�D$�uH�����uTH�EH�D$�uH�����uH�H�D$dH3%(uCH��([]�D�����u�H�xu�H�@��f������u�H�xu�H�@����@AUATUSH��H��8dH�%(H�D$(1�H�l$ L�d$H��L��f$?��5w����H�D$ L��H��H�|$��H�C���H�|$ H�D$�H�|$H�D$���H�Ǩ���y��H��$I�H�|$�������)��C$у�����	��K$@�����9��A��D�Ⱦ����E��E���A��B�
��D)�k�<A)�D��A�������C$����	ЈC$�����s"������)�D��k�<)Ѻų������������D	�B�
	��K#H�|$��H�L$H�T$D)�����	�cu�C"���H�|$�!�_��H�|$H�@�����h���H�;��+~��:,�����Ⱥ����A���A������D)�D)�k�di���)�΍����+~��9,������s�m�����A��)�A)�D��Ei��D)�A����D���������B�,D�����A��)�A)�D�Ai�mA)�E���S!A�D$Lc�C ��K�t-���	ЈC!��H�L��H�؅�LH�A���hIc�H��eH�=�b��4������C!��	�	�C!���H�C�H�=�[�����C"��	ЈC"���H�CH�D$(dH3%(�-H��8[]A\A]�@��G��A���������N���@����-���fD�{��A���]���D��3���S!��A�D$�C �ă��	ЈC!��H�Ic�H�hcH�5a`�������<�S!��	�	���S!���f����D��3���n���fDA�iD��&����X���H��(\��(L��H��H��H��H��H��H��H��I9��f������_����X�����DUSH��H��(dH�%(H�D$1���tRH��H�L$H�T$��5w����H�l$H�\$@��tcH���tKH��H�H�t$dH34%(H��uOH��([]�H�������t�H�d4H�5:YH�81���@H���`��H���H���P��H������fDAWM��AVM��AUI��ATI��UH��SH��HH�<$dH�%(H�D$81�A����H�\$ H�T$L����5wH�����H�|$H�T$ H��H�@����H�D$ ��tgH�H�T$(H��H��I��M��$�L��L��PH�|$�*��^_H�\$8dH3%(��H��H[]A\A]A^A_�DL�������[���L���x���H��u"H�\$ �H�T$�>��H�T$�c���@H��L��I��M��$�H��QH�|$L���
��ZY�l�����ff.�@��H��(dH�%(H�D$1��s�H�8�+������H��������5wH�L$H�T$H�����H�|$���H�t$dH34%(uH��(��#��SH��H�� H�|$dH�%(H�D$1�@��uH�����t
�����tz��H�L$H�T$�H����H�|$@��t3��5w�y�H�|$H����H�\$dH3%(uDH�� [ÐH�����tċ����u�H�u�H��1Ҿ
�D�H�H��H�D$��N��ff.�AVAUATI��1�U��H�=GSH��H��dH�%(H��$�1�H�H�BH�B�B �B$H�$���H�C��
��I�D$I�|$(H�D$@I�D$@����M�t$ H�D$(I�D$M�l$H�|$H�D$0I�$L�t$H�D$8����L�l$ ���C$��?	ЈC$��H�I����C!�����C!I�����C %����� �C �C!�������w!�H���P
�����$@H�|$(1�H��t
���������C"H�|$0��	ЈC"1�H��t
�����?�S"��?L�d$@��H�|$8f���	�f�C"��u
I����H��uM�c#H�$H��c$�H�CH����H�l$H�$H��$�dH3%(��H�Ġ[]A\A]A^�f�H��H�������S#����������	ʈS#�S$��	ЈC$H�$�@1�H�����S#��������	ʈS#�S$��	ЈC$A��uI�����tA�$������DL��H���M���5wH��������H�����H�$����f.��L���c�����
�‹C %���	ЉC � ���f�L��������C!���	ЈC!����H�T$H�D$H�T$XH�T$ H�T$`H�T$(H�T$hH�T$0H�T$pH�T$8H�D$PH�D$HH�T$xH�T$@H��$�H��$��E�H�D$���t���E1�I�$�H�D$H�D$PH�p8�H��t
Hc�I�<�H�:��H��H9�tH�P9��H��t�H��H�H9�u�9���M�����K$�H�|$L�t$L�l$ ������S ��
���������L	����	��K!�C %����� �C ���@������?��fDH�;�!�[����H�H��H���H��?H1�H)�@�����C ���
����9������)�%�������
	ЉC �ĉƒ����T��	ЈC!�f���fDH�|$������f�����~yL�D$���L��1Ҿ
��I���n���H���~��H���I���H���H��(\��(H��H��H��H��H��H��H��H9��0�����H������H�|$t
H�|$�|�����������fDAW��AVI��AUATUSH��8H�?dH�%(H�D$(1��2��H�L$ H�T$�!H��H�����H�|$ @�����T��A��A�v!A�V Ic�@���
�������a���A�^"A�N"A�U�A���f������?A��i�k�<�I�^ H����?�Hc�H�\��y�DD)�A���AI�����A��-�cD��D$���,�Ⱥ��Q����)�A��H�|$���y���E��+���Q�|$H��D��A����D)��D�D)�Hc�H�|?�����H��I���2���L��H������uH�����t�������D��5wH�������H������5wH��H����H��H���#�I�v@��uH�����t�������f�H����H�L$(dH3%(u|H��8[]A\A]A^A_�f��{��A���B���E����QA��D��A����A)�A������DH�x�5���H�@�,���@H�~�u���H�v�l����'���U1�SH��dH�%(H�D$x1�H�\$H�l$@�v	�H��H�D$�y��H��H���n���H���VHc@H��H��������H�=��5H��H���5H�D$H)�H��H�����HN�H�k�5����H����D$TH�|$H�D$H�D$ lH�H�DH�D$�D$P�D�����D$1���	ЈD$1�D$L����
�‹D$0%���	ЉD$0���D$H�������Ѓ�	ȈD$2�D$D��?�����D$2f%�	��T$@f�D$2�����	ЈD$3�D$@�������D$4��	ЈD$4����H���+�H�=|�5H����H��H����H�Ǩu*�u��O�5H�D$xdH3%(uH�Ĉ[]�D�k�����T��@AUATUH��SH��H��XdH�%(H�D$H1�������nH�=��5�p���5���RH�=��5�V���5wH����H��H���N�����FL�l$L�d$H���5wL��L����H�|$H�l$@���MH�H�|$L��L���"���H����HcD$$�T$H�k�L$ �t$H�CH�����H���L	��H��D$��	�����Ǎ��T$	�����	��T$�C"�D$�����	��T$(�C#�D$�������Ǎ��T$,	����S �փ�	ʈS!�T$0��	ЈC$H��H�L$HdH3%(upH��X[]A\A]�H��H����H�����{������fDHc=Y�5��5wH�|?�:�H��H�����H��H���t�H�������H������F��fD��ATUSH��H��H��0dH�%(H�D$(1����H�߾.H��$4I�����H��H�X H���C-H�H�C �����C-I�<$H�;���H��tmH�t$H�;�>�H��D$ H�D$foL$�C(�D$$H�D$fo$�C,�C-C���K��	�C-H��H�L$(dH3%(u!H��0[]A\�H�OT4H�5�IH�81������A����UH��SH��8dH�%(H�D$(1����H���@-�ƒ���u}�uU�H�=�I���H�;H��H�D$���H��te�D$ foL$fo$�C(�D$$C�C,�C-K����	�C-H�L$(dH3%(H��uH��8[]�f.�H���ؿ���z����~��H�oS4H�5�HH�81�����fD��H���3��H��H�������ATA��UH��H��SH������A������t}��5wH�����H�;H���E�H�~"4H��.I���~��H��H�@ H��`-�L� H�@ �����K-�P-����	ʈP-H�SH�PH�S H�P H��[]A\�DH������w���������i���H�x�^���H�@�U���f��uH�����t�����t*f.���5wH����H�;H�����.���H�xu�H�@����ATI��USH���
��H��H���R�[L��H�����]H��A\���ff.���ATI��USH������H��H����[L��H��]H��A\�k���ff.���USH��H�����H�5!4H��H������u H�!J4H��H��H�8H��[]����H�YI4H�5�FH�81������USH����wm���tH�>H��tH�T$���H�T$H��H�����H�8H���z�H��H���o�H��H�����H��H��H��I4H�8H��[]������ff.�@��USH����wb���tH�>H��tH�T$���H�T$H��H���u��H�8H�����H��H�����H�޹����H��H��H4H�8H��[]������f.���ATUSH���������urH���
��H�8H����H��H���t��H��I�����L��H���I�������L��xL��H������H��H�cH4H��H�8H��[]A\�`���H�>H��t�H�T$���H�T$H���n����1��T��@��USH��H���^��H�5�4H��H���\���u(H��G4H��H�����H�8H��[]����H�����H�}H�0��H������H��[H��]���fDUSH��H��XH�7�idH�%(H�D$H1��:�����jH�=��5�LH����H�ŋs�5��uH�L$HdH3%(H����H��X[]ÐH�=Q�5�����5wH���'�H��H���������$H�;@���H�H������Hc�H9��J�D$$�C!H�T$H�|$�������D$ �C ��
���D$�C"�����D$�C"f����?�D$H�C �D$0H����?�D$���H����H�[��uH�����t��������H�|$�����5wH���A�H��H����H������fD�C����fDH����H���������H�����Hc=��5��5wH�|?����H��H���O�H���h����H�{�]���H�[�T�������H���O��H��H��L4H�5r�H�81��D��@AWAVAUATI��USH��H��dH�%(H��$�1�����L�l$`L�t$0L���5wL��L�����H�|$0H�l$`H��H�@����H�L$H�|$(L��L��H�D$(����H���KHcD$t�t$|H�kH�|$0H���H��H��D$p�D�����C!���	ЈC!�D$l����
�‹C %���	ЉC ���D$h�������Ѓ�	ȈC"�D$d��?�����C"f%�	��T$`f�C"�����	��T$x�C#�D$`�����������V���S 	�f��f���	�f�S ��$���	ЈC$H�@H���H�D?H�CH�D$H�CH��H��$�dH34%(�KH�Ĩ[]A\A]A^A_�L��������[���H��L����H���4H�;���7�����g�C fo�!foKH�;�D$P�C$)D$0)L$@�D$T���H�Ǩ���p��Hc�D�C!�����*D��@���)������)�)Ѝ���R�gfffD�L��EiəA��D��A����i�m�D)ʅ�D�IDIɍD���QA��A��A������A�ʉ����)�A)�E�AѺ�$I�D���D���B�
��)���)�D��)�A������Hc�H�iCHc�H��H)�Hc�H�DH�|$0H�D$0���H��������H��H�l$`H�D$ H�=?�y��H�L$H�T$H��H�|$ H�D$�
���H����H�D$H�l$D��$�H�D$H�l-��5wH������L��H���@��H��H����H��tP�C$A��H�k��?D	�C$H�D$H�CH�����f.�����`���fD軼�Hc��&���1��u���f�H�=`�5�"H�;�5H�-D�5D�-5�5H�D$H�l-�F���fD�L�|$L�t$H�=�=L�l$`�X��H�l$ L��L��H�D$L��H��H�ƛF����H�D$ �޷��H���H�l$D��$�H�l-H�D$H�D$����@H��H��?H1�H)�@������I��(\��(H��H��H��I��H��H��H��H��H9���Hc�H�AHc�H�D����H����������+���2���fD1����H�L$(H��H��5H�=�5H��5������$�H�|$(���5���H��H�D$(���H�D$(H���5���f�L��L��L��H��H�D$ 趶��H������E1������������)������ff.�f���UH��SH��8dH�%(H�D$(1�H��H���H�H�����H��4�.H��H�����H�P H�ǀb-�H�B H���H�L$(dH3%(uH��8[]��2��f���USH��8dH�%(H�D$(1��G���wq���H��H��D�H����H�����H�S fo$�J-H�B����J-�D$ foL$�B(�D$$J�B,H��H�\$(dH3%(uH��8[]ú��n�����f�AWAVA��AUATUSH��H��8H�t$H�|$�dH�%(H�D$(1��������H�|$L�d$H�L$�L��L�|$ �o��H�|$L��L��y�Z��H�|$ @���;���A��H�|$L��L��y�.��H�|$ @����ڸ��H�|$L��L��1���H�|$ @����诸�H�|$A��A�������c��H����E�����tR�C"�����C#��H�	���?��;~��<A������������C"����	ЈC"�C#���	�@�k#E�����S"�����D������t�� ��H�;�!��|	ˆS"�U��H��H���_�{!H��H��?��H1�A����H)�A�����K"��H��H	�@����D��L��DA��u����L��DfD�C!���s �����H��H	������Hc�f%�E9������S"���C ��f���΃������	�	��K"	��C!�s$��������H�|$@��u%H�����t�����uH�uH����5w�v��H�{H������H�CH���	������H�s��5w������H�{��5wA���-��H�Cf��S#�����S$H�у�H��	�D����;~��<���C#���������	ȈC#�C$��	ˆS$���fD��`�⃃�|	��C!�S"����H��������H	�<�}���t���K!���Ѓ�����	��C"��	�H�ȃ�S"���S H��H	�f�f%��C ��	ȈC!�s$��������Ⱥ%I�$���)���‰�����у���	��K$H�D$(dH3%(��H��8[]A\A]A^A_�f���<�����D��<A�����@����H�|$A��A����\���H���A������A��H��H�D$�:�������A�������������@H�t$�A���N��H��H�D$�F���������	ˆS"�(���DH�����H��������������C!H�;�f%�f
�f�C!�����!H�H��������H�H��H��H��?H1�H)Ǹm@���,�S!�C �ă���	ЈC!�\���fDH�{��5wA������H��H�C�%������Cf�H�;����H��C %��
"�C �t����T�̈C ���c"��Ѓ� 	ȈC!�Q����H�;�!�������H�H��H��H�5�@H��?H1�H)�@�����C!����������	�Ƀ�	�HcɈC!������	ˆS!���������C"��	��K �C"�ƒ��H��H	�f�f%��C ��	ЈC!�(���f�I��(\��(H��H��H��I��H��H��H��H��H9���A�������D��L�{?���fDH�����H������H�����H���$���H��H�5F?H��(\��(H��H��H��H��H��H��H��H9������H�O?HE�������A��tgD��H���[���L��>�\���H��(\��(H��H��H��H��H��H��H���nH��H9��������H�����fn����v���u�����ff.��ATUH��SH��0dH�%(H�D$(1��@���H���@-�ƒ���u��|L�c��H���h����C-��<t�A�H�;H����H��tm�T$ H�C H�{L��foL$fo$�S(�T$$K�S,�H�C C�<����C-L�c����
�C-H�L$(dH3%(H��u	H��0[]A\����H�{<4H�5�1H�81�����f�AVAUATUSH��H��H�?dH�%(H��$�1�@���H������H�����H9��&H��l��$��C!������������$��C ��
���D$|�C"�����D$x�C"f����?�D$tH�C H����?�D$p�C$������t���Љ�$�1�H�T$H�|$p�˭��H����H�[���5H�|$������5wH���.��H��H�����H��H��$�dH3%(H����H�İ[]A\A]A^�fD�����H�����H��H��聾�����Yf�H��L�d$��L��H��H���%�H���H�t$H�;�?������O�C!�T$11ƒ����L$0�C ���
��
����8�uR�C"�T$21ƒ�|�.�S"�D$2f��f����?��?8�u#H�S H�D$0H��H����?��?8��<@�-��5w��L�l$@����H��H���c��L��H��I���U�H���?L��H���A����uH�����t�����uH�x����5wH�����H��H�����L��H��H������uH������2��5wH���]��L��H������H��H��I����������L��H����H�����C"2D$2�|u�S"�D$2f��f����?��?8��L������D�T$1������8������L$0foD$foL$ ��5w���D$4�L$`)D$@)L$P�D$d���H��H���X��L��H��I���
�H����I��L��L�l$@����H����������������H����_蚬��$��f���fD����������H�x�����H�@���fDH��������������������H�{�����H�[����H�S H�D$0H��H����?��?8�����L��L���6�H��� �C"2D$b�|�}����S"�D$bf��f����?��?8��^���H�S H�D$`H��H����?��?8��?���H�t$PH�|$ �C$��������IH�����H�t$H�;�ۺ�����!����E���fD�T$2��������8��*������f.�������fDH�@�7����H�{H�t$�r�����tI��5w��Q���H��H���d��L��H��H����H�������H��64H�5,H�81��5��H�{H�t$�������]������������II��*������DAVAUATI��UH��SH��H�^ dH�%(H�D$1�H�;����H�=3�5H��I����H��L��H�5f�5H�$�5��H��1�H��4�
H�5�4H������uc@��u
H������E1�1ɺ�H��H�=�5�G��H���o��H�Ũu?H�����t7�����u-H�}u&H�m� f�L�u H���T�I�>���H��H��L�����H��I���3����c-���5wH��L�kL�c ���H�sH��t0@��u"H�����t�����uH�~uH�v@H���`��H�H�$H��L��螠���H�T$dH3%(u:H��[]A\A]A^�@�E����	��������H��H�����������f.�AWAVAUI��ATUH��SH��8H�^ ��5wdH�%(H�D$(1�L�|$L�d$ H�;L��L������H�D$L��H�=D�5L�t$ H�D$�
��L���H��H�5k�5H�D$�A��H��4��H�5�4H��L�kI���!�����A���?I������2A�����	��A���h��
�H���5E1�1�L��H�=:�5�%��H���ͻ��E1�1�L��H�CH���5H�=��5��H�����E1�1�L����H�=4�5��C)���	ЈC)H�n�5�ɖ�H���<���S)E1�L������H�=��5������	�1ɈS)�S*��	ЈC*H��5�~��H����E1�1�L����H�=��5���C*��	ЈC*H���5�@��H�����E1�L��H�=V�5����������S*����	�1ɈS*�S+���	ЈC+H�~�5���L��H���V���S+E1�L������H�=��5������	�1ɈS+�S,��	ЈC,H�-�5訕�H�CL��H�=�5H�������E1�1�����C,��?	к��C,�m��H�����I�Ǩ�"H�����t�����uI�u	M�DL�sL���̷���K-H�t$L���+��H��I���`����c-�H��H��L�cH�k H�T$�����H�L$(dH3%(��H��8[]A\A]A^A_�@M�g L��L����AoD$I�<$C�AoL$KA�D$(�C(A�D$,�C,���I��A�D$-��<�=���H�sH���/���@��u!H�����t������:f.�L�����I�����A�������5wL���i��L��H���N��H������H��04H�5�%H�81����D1�����u�I�u�M���H�=q�5���L��H���a��H���Y���H�=J�5H�C�i��L��H���>��H��膿������C)���	ЈC)H�=
�5�8��L��H���
��H���о���S)����������	ʈS)�S*��	ЈC*H�=��5����L��H���ƍ�H��艾�������C*��	ЈC*H�=|�5���L��H��茍�H���O����ƒ����S*����	���S*�S+�����	ЈC+H�=)�5�l��L��H���A��L��H������S+����������	ʈS+�S,��	ЈC,H�=��5�'��L��H����H�C��H������������C,��?	ЈC,����L��H���Ō����H�~����H�v�������UH��SH��8dH�%(H�D$(1��b���H���@-����uSH�K H��胸����u_H�;H���t�H���}�D$ foL$fo$�C(�D$$C�C,�C-K�����C-H�T$(dH3%(H��u6H��8[]�f�H���(�����t���f�H������H�K H�������u��t������H��-4H�5�!H�81����fD�F-��<t<t	���@���+��ff.���UH��SH���N����P-�у���t(��H��tH�CH��[]�DH��H�������H���[]�ff.����AWAVAUATUSH��dH�%(H��$�1�����H��I���Ĭ��H�t$@H�8I���d��H�l$@@����H�H��k�UH��-*�A���?�kH��H�|$H�|$HH�L$ H�T$(�谪��H�L$(H�t$ H��S㥛� H��H��?H�H��H��H��H)�Hi��H�T$H)�H�|�l������T$bH�L$I��A�D$-H�|$��<��HE�H�D$`f����?H��	H��%�H	‹D$`H	��L$b���T$t��%���H	��L$a�������
Hc�H	�I	�I	�D�|$pH����1����I��H����H�D$pH�t$xL��H�D$�/������1�H�I�4H�D$�b��H��H�HH� tH�HH�T$H�t$H���L��H�t$E1�L��H�|$A�"�H��Y��L��H�����L����H��u9H�5U�5A��u
I������bL��H�����H�5(�5�H�����H����H�gfffffffH��I��H��H��I��?H��H��L)�H��H�H)�H��H��H��H��H�|$nH��?@�t$oH��H)�H��H�ףp=
ףH�H)�H��H��H�H��L)�H��	�@��@�ƈL$n@��H���(��H�5��5H��H���V��A�D$-��<tLL���Q��H�L$8H�T$0H��H������H�|$8�蘚�H����H�5�5H��H����I�t$ H���г������H��H�5�5H���օ�H��H��$�dH3%(��H�Ę[]A\A]A^A_�f.�H��k��H�l@�lH)�H9��0H�D?E1��lH�D$����H�|$p����H����f�H�������H�|$@��A���?�k�	�H�D$�3���@E1�1ɺ�
H�=��5���H������f.�H�D$L������I������A�E���������I�UH��褄�I�UH�5��5H��葄����@H�t$@��E1��l���H�D$����H�|$0���H���?���fD���E1��lH�D$�X�������H��lH���H�h�H�L$@HE�H��'4H�5�H�81����葾���UH��SH���~���H��@-t%�C,��<�t'<H�H��H��[]����H��H�������H��!4H�5�H�81����ff.���UH��SH������H��@-tH�CH��[]�f.�H��H���U���H�CH��[]�f.���UH��SH��辦��H��@-t�C)H��[]��H���H��H����������UH��SH���~���H��@-t-�C)�����C*H��[]��H��H	�H�D�DH��H�������ff.���UH��SH������H��@-t�C*H��[]����H�D��H��H���]�����ff.���UH��SH���Υ��H��@-t%�C*�����C+H��[]��H�H	�H�DÐH��H����������UH��SH���~���H��@-t-�C+�����C,H��[]��H��H	�H�D�DH��H�������ff.���AWAVAUATUH��SH��H�t$����H��@-��H�|$�J��H�|$���xtH��$4H�5<H�81��R��f�H������u�H�|$�Z��L� I��A�� ��I��L�hA��H�|$�a��I��M��ty�C-H��L�L�CL��L��L��H���<����P�}���L��H��XZH�|$����H��tUH��H��[]A\A]A^A_�@H��H���������L�hL�`�x���H�=�1��"��L��1�1����H���H��#4H�T$H�5[H�81��T��@AVI��AUI��ATI��UH��H��S责��H���@-�t9��H��L�L��<L��L�CL����H����P衿��ZYH��t[]A\A]A^ÐH��L�������C-�H�P#4H��H�5�H�81�����@��SH���3����@-��<t ���H��[�H��H�=��;�������H��[�H��H�=�����ff.���SH�����H��[�H��H�=����ff.���AVAUATUH��S蜢��I���t��H��H�=dH�����I�<$H���1���I�ŨtSI��I�uBA�D$-��<t�0��H��H�=
H���i���H��H�����H��[]A\A]A^�f�I���ɚ;~g�H�5�H������5wL���&���H��许�H��H���c��A�D$-��<u�H�ߺH�5}�ª�H��[]A\A]A^�fD���H��H�5�L��H��1��4��H�0H��H��� uCH����H�K�fDH��~H��H��H��tH�CH���<00t�H��艾����@H�p�f.���UH��SH������H���@-�t3��<tBH�C H��t�uH�����t
�����t<H��[]�DH��H���E��C-��<u�H���H�=q[]�y�H��H��[]���f���UH��SH��hdH�%(H�D$X1��~���H��@-��C+H������C,��H��H	�H�DH�$�C*�����C+��H�H	�H�DH�D$�C*����H�DH�D$�C)�����C*��H��H	�H�DH�D$�C)��H��H�D$ H�CH�D$(�C,����H�DH�D$0�C)�S(��H��H	�H�DH�D$8�C,��<H�H�Ѓ�H�D$@�X���H��
H�D$H�V��H�t$XdH34%(�H��h[]�H��H���������C����UH��SH��8dH�%(H�D$(1�H��H���ؽ��H����H���3�.H��H��艣�H�P H�ǀb-�H�B H��^�H�L$(dH3%(uH��8[]��µ�f���USH��H��讞��H��@-te�U)�E(��H��H	‰�f��u
H�} H��uH����H�D[]�H�����E)�U(H��[]��H��	���H�D��H��H�������UH��SH������H��@-tE�C,�ƒ�8��8t��H����[]H�D�DH�{ H��t�H���.��C,���H��H���5����H������H��
�HE�H���ff.����H���S����H���HE�H���ff.����H���#����H��	�HE�H���ff.����H�����H���HE�H���ff.����H�������H���HE�H���ff.����H������H���HE�H���ff.����H���c����H���HE�H���ff.��ATUH��H��SH��H������tH��[]A\��H��� ���I��H��t'H��4tIH�����H��L��辪��H��[]A\���f�H��H���u���H��tH��H���D���u����H��[]A\���ff.������w��H��t	H�6H��u�2�f��;���P���D��AWAVAUI��ATI��US��H��dH�%(H�D$x1�H�D$H�D$(4H�D$PH�D$ H�D$XH�D$(H�D$`H�D$0H�D$hH�D$8���H�D$@�Ņ�t%�������H�=�}1�膵��@�˷��������H�L$@1�A�����M�uH�D$XL�t$���eH��tH�H�D$`�H��tH�H�D$hH��tH�t$8H�09��JH���rH�|$0H�t$H�4讋����tH�l$H���\����A���H�|$���H�|$ H��H�D$�Ѥ���uH�����t����������5wH���ì��L��H�����I���u H�����t�������f���5wH��胬��L��H�����H�1�3�.L��I���1��H��H�@ H�@ �`-�L�(H�\$ H��4tH��H������H�L$xdH3%(H����H�Ĉ[]A\A]A^A_�@t&H�L$@H��t
H�|$@������������[H�L$@��D�{�Ic�I�D������H�������������q��H�D$8H�����H�|$8�Z�L�t$8H��M���$������D��E1�A�����H�ɸHD�H�L$8H�L$@���F����L��E�������L�t$H�D$X�������H��tA����I�}H�8H�D$`���wH��t
A��tI�uH�0H�D$h�H���~������@H�|$@�ƻ������H�\$H�5t�3H����H�߅��A�ܗ��H�U�3�.L��I��L�0�R��H��H�@ H��H�\$ �`-�H�@ L�0蟗��A�M-�P-����	ʈP-I�UH�PI�U H�P ��fDH�=ɬ5H�\$(蟺�H9�t[H�=��5莺�H9�tJH�=��5�}��H9����H�=m�5�h��H9�����H�=h�5�S��H9��#A�����H�|$蕡��H�|$ H��H�D$胡��I�Ũ���I���������A�E��������I�}�����M�m�����;����u'H�����t�����uH�xuH�@f.���5wH���#������fDH������H�{�u���H�[�l���H�x�!���H�@����D�{�Ic�D�<$I�|����$���H��u�����H�D$8����衡�H�D$8�	���H��4H��H�5rdH�81��L���Ǭ������H�|$@�A���}�I�����H�=ixI�E1����H�L$@1�������1���f���AVAUI��ATI��US��H�� dH�%(H�D$1�H�$���H�D$�Ņ��(����D�s�Ic�I�D���oH�����������������H�$H����H���l{�H�<$I��������$D��M��LD�L�,$H�D$����H�,$����H��tH�|$�K���f���H�,$H�t$H��詅����u5L��1�1��n�H��H�L$dH3%(H����H�� []A\A]A^�f�H�l$L��1�1��on�H��H��4t�H��H������f��˰���@�����tH�|$u/1�1���輖�@D�s�Ic�I�|�H��t�q��H�$����H�|$�n����觪��_�����>�����AWH��3AVAUATUSH��.H��dH�%(H��$�1����H�P H��H���B-H�H�B ���H�\$0���B-�t��H�5��5H�|$0�H�5��5H�|$0H�$�nH�5�5H�|$0H�D$�XH�5Q�5H�|$0H�D$8�BI��H��t�1�H��H�=x������I��H�5�5H�|$0�I��H��t�1�H��H�=����谉�I��H�5��5H�|$0��H�t$0H��I���|��H�|$0袘�L�D$0I�0I��A�� �BH��I�@H�����„���1�E1�D�8��H��I��M	�H��u��X�xH��H��H	��xH��H	��xH	�A�����I��L��H��H�L$I����M���bI�PH�J�H���eH�PH�|$@H��H�L$ H�T$@H�T$(H�|$���H�|$@H�T$(H��H)�H��H�L$ H)�H9��H���H��A�"1ɺ聣�H��I�����L�����I��L��1�L�l$@H�=!�H�D$PH��
�D�����D$a���	ЈD$aL��H������
�‹D$`%���	�D�������D$`H�����f�d$`�A��H��A��D	ʈT$b���D$b��f%�	�H��f�D$bH�������	ЈD$cH�؁�H��Hi�����D$d�nu�L�<$H�\H�D$XH�\$HI���QH�|$�ǚ��L��H��輚��H��H���A���H�|$HH���T���H�D$HH�|$����H��I���Z����T$H���@-L�+���C-�������C-I��tK1�H�t$p�H�l$pH�=�v��L�d$x�І�H���F�uH�������H�C H��H������H��$�dH3%(H���2H�Ę[]A\A]A^A_�H����H�N�H�������H�D$@H�D$����@L��H����L���I��M���W�����I�xI�@������H�|$8����H�|$8���H�L$8H��� �IH��H�у�H���F�8��@��@��	���������Hk�d@��@��	�|����4��Hc�H�H���@�@��<	�X�����H�H�t6H�|$H蒍��H�D$H�9����H�|��5w������H������L��H���i�����5wH��輠��H��H���1���H��I���V���H�À`-�L�(�����I�������H��L���[���H���S�����fD���������H���rm�����D���^��I���`���fDH�I������
���fDL���(m����H�D4H�51H�81�諬��&��H�4H������f���ATUS����H�Յ�txH�H��toH���'�����tH��軖��H��H��I���������H��蝘��I��H��tdH��4tFH���f���H���~���L��H��H���0���H��[]A\�$��@H���X���[]H��A\����@H���@���[]H��A\����@H��H���r��H��H��t.H������H��H��I���v����tL��[]A\ú1�����x��f���H�Ѡ5���H��H��1��>o���tH���H�=[�i����AVAUATUSH��H��dH�%(H��$�1���ukH��L�d$��w��H�����L��`-�H��H��H��H�|$I�t$�9���H�EH��H��$�dH3%(��H��[]A\A]A^���I��1��L$48H�=1�f�d$0��)p�H�T$HH��$�H�T$PH��$�H�T$XH�D$(H�D$@H��$�H�T$`H��$�H�D$pH��$�H�T$hH��$�H��$����H�D$���[����E1�I�$H��$��H�y0H�D$@�@H��t
Hc�I�4�H�0��H��H9�tH�A9��H��t�H��H�H9�u�9��JM���/H�|$@�5���H�|$HH�D$�H��t�k�������D$1H�|$P���	ЈD$1�H��t
�轘�����T$0��H�|$X��
����	ЉD$01�H��t
�荘�������D$2H�|$`��	ЈD$21�H��t
��^�����?�T$2��?H�|$h��f���	�f�D$2H���U�d$3�d$4�H�D$L�d$p�L$4�H�D$ I����H�=f�5H���=�@��I9��H�=@�5H�����"��I9���L���������L�l$L���̎��H���u��H������L��H��豹��foD$H��L��H�EEfoL$ M�D$0�E(�D$4�E,�E-�����E-������H�؅�����L���-���I��H�D$ H���+�e-�H�EL�������L�����L��H�D$ ����L��H��H�E蟖�����f.�H�t$�ƥ���T$3����������	ʈT$3�T$4��	ЈD$4H�D$H�D$�~���苓��H���H��4�H�D$ f�L�l$L��蓍��H����s��H�����L�t$ H�ŀe-�H�EI���&���L������H��H�E������@�����ML�D$�����d$4?�f�H�="���ϋ�H��H�E�5�	���H�|$親�������D$4��?��@�D$4�<���@H�=5��臋�H��H��5����L��H���m��I��H��������r��H�D$ L�d$L���z���H���r��H���ʇ��L��H���_���foT$H�EUfo\$ ]�D$0�E(�D$4�E,�E-����	�E-H�����L��H���ul��H���s���H��H���p�����`���L�t$ �s���H�|$t
H�|$茩����蛈�趜�fD��SH��?B��H��4�ׂ�CH��H��H��H��?H��H)�H��������H)�H9���Hi���H�H�Hi��豚��H���3�.H��H��3H�8�É�H�P H�B �b-�H�[�fDH��y�H��4�ׂ�CH��H��H��H��?H��H��H)�H��H�A�H)�H9�Hi���H�H��m���H�K�3H�5��H�81��2��f���S����H��3�.H��H�@�3H�8���H�P H�B �b-�H�[���ATUSHc�H�wH�?蹙��H���3�.I��H��3H�8�ˈ�H��H�@ H�@ �`-�L� ��Q=��v0�����t�����uFH�������P-����P-H��[]A\�H��H�\�ۃ���P-H�X����P-H��[]A\�H��4H�5'�H�81��*��f.���ATUH��S@��u
H���������5w�8���H���3�.I��H��3H�8���H��H�@ H�@ �`-�L� H��tQH���v�����tH�����H��H�������u.H����I��H��tRH��4��H��踈��L��H��荑��H��[]A\�D������P���H��E���H��<���fDH��H���i��H��H��tH���\���H��H�������u��n���H��[]A\�4���@��H�����n��H��H��H��H��S㥛� H��H��?H��H��H��H)�Hc��f���SH�5��3H���,x��u81�H���n��H��H��[H��S㥛� H��H��?H��H��H��H)�Hc��DH���؁��H�8�0����ff.���SH�54�3H���w��uH��1�[�-n��DH��萁��[H�8��������n��f���UH��SH��H��8dH�%(H�D$(1��Ko�H��t%H�T$(dH3%(��H��8[]�f.�H�=�5H���ѫ��H�55H�D$H��t(H�L$�H���h�H��4t0H��蠗��fD�H�=�藅�H��H�u�5��H�=���e�H�5P�5H�D$H�D$H�D$H��t<H�L$�H���h�H��4u�A�1�1Ҿ�
H���{�p�����H�=i����H��H��5��.��ff.���AT�H�=<�US�ׄ�H�=2�H�|�5迄�H�=#�H�\�5规�H�=��H�<�5菄�H�=4�H��5�w��
H�=�TH���5�_��H�=�TH�ܔ5�G��H�=�TH���5�/��H�=��H���5���H�=}�H�|�5��H�=l�H�\�5���H�=a�H�<�5�σ�H�=V�H��5跃�H�=�OH��5蟃�H�=+�H�ԓ5臃�H�=�H���5�o��H�=�KH���5�W��H�=��H�t�5�?��H�=��H�T�5�'��
H�=��H�4�5���L�%��3H�=��H�R�5I�4$�r�H�
�3H��3H��H�2H��uh�H�;H�5�c��覜�H�;�����H�w�H�5>��u�H�;�����H�,�H�5oJ��u�H�;�����H����H�5����u�H�;�����H���H�5>��u�H�;�����H�;��H�5���u�H�;�����H� ��H�5���tu�H�;1�H�����H�5��|p�H�;1�H�`���H�5��dp�H�;1�H����H�5��Lp�H�;�H�M���H�5�I�1p�H�;�H��}��H�5�H�p�H�;1�H�~��H�5���o�H�;�����H���H�5#H��o�H�;�H�T���H�5H��o�H�;�����H���H�5��o�H�;1�H�!���H�5���o�H�;1�H�	���H�5���}o�H�;�����H��H�5���bo�H�;1�H�����H�5���Jo�H�;1�H�����H�5���2o�H�;1�H���H�5���o�H�;1�H����H�5���o�H�;1�H�v��H�5EG��n�H�;1�H����H�5M��n�H�;1�H����H�5G�n�H�;�H�˩��H�56`�n�H�;�H���H�5G��n�H�;1�H�8�3H�5i��ln�H�;�����H���H�5`��Qn�H�;�����H�R���H�53��6n�H�;�����H�����H�5��n�H�;1�H�?��H�5��n�H�;1�H����H�5�G��m�H�;1�H�o��H�5���m�H�;1�H����H�5���m�H�;1�H����H�5�I�m�H�;1�H����H�5SK�m�H�;1�H�o��H�5���sm�H�;1�H���H�5���[m�H�;1�H����H�5���Cm�H�;1�H�7��H�5���+m�H�;1�H�O��H�5J��m�H�;1�H�7��H�5���l�H�;1�H���H�5)���l�H�-��3H�;1�H�5a�H����l�H�;1�H��H�5Q��l�H�;1�H��H�5H��l�H�;1�H��y��H�5;��l�H�;1�H��y��H�5(��pl�H�;1�H����H�5��Xl�H�;1�H�<��H�5��@l�H�;1�H����H�5���(l�H�;1�H����H�5���l�H�;1�H�d��H�5���k�H�;1�H���H�5����k�H�;1�H����H�5����k�H�;1�H���H�5���k�H�;1�H�ԕ��H�5���k�H�;1�H�����H�5���k�H�;1�H�4���H�5t��hk�H�;1�H����H�5_��Pk�H�;1�H�4���H�5L��8k�H�;�H����H�5��k�H�;�����H����H�5���B��H�;�Z��H��H�5u�H�����I�$H�;H�5����]�H�5e]��H��H���*��1�H����H��H�5���j�1�H�y��H��H�5@D�j�1�H���H��H�5���rj�1�H����H��H�5���Zj�1�H����H��H�56F�Bj�1�H�)��H��H�5�G�*j�1�H���H��H�5���j�1�H����H��H�5"��i�1�H�!��H��H�5���i�1�H�	��H��H�5O���i�1�H�Q��H��H�5���i�H��1�H��H�54��i�1�H��H��H�5'��i�1�H��H��H�5��vi�1�H�}v��H��H�5��^i�1�H�ev��H��H�5���Fi�1�H����H��H�5�A�.i�1�H�5��H��H�5RG�i�1�H�-��H��H�5^A�h�1�H�%���H��H�5����h�1�H�
���H��H�5����h�1�H�����H��H�5���h�1�H�m���H��H�5���h�1�H�U���H��H�5���h�1�H�m���H��H�5���nh�1�H�����H��H�5��Vh�1�H�=~��H��H�5܉�>h�1�H�ew��H��H�5ɉ�&h�H�����H��H�5�Y�h�H�����H��H�5����g�����H�t���H��H�5@��g�1�H�u��H��H�5���g�H�-��5H���EH�5�5H��t`H��H���vV�H�߹H����H�5���[l�H��5[]A\���H�=n���x�H�5��5H��H���5H��u��H�=N��x�H��H�f�5�@��%?=t��=t= ����%�=�����%@tH���H�����tHc�H�
����H���tHc�H�
����H���tHc�H�
����H��� tHc�H�
����H�ց�t!Hc�H�
y���H���f����N���������f������fD����H����Hc�H�>��@H��5��H�ш5��H��5��H�و5��H���5��H���5��H���5��Hc�H�D?��UH��H��SH��H�=M�5dH�%(H�D$1�H��H���"o��t.H�<$H��H���o��tH�$H�L$dH3%(uH��[]�1�������AUATI��UH��H��SH��H�=և5dH�%(H�D$1�H��H���n��t7L�,$H��H��L���n��tAH�L$dH3%(H�$ubH��[]A\A]�f���q�H�=t�5L��H��H�$�um��� �6|�H��L��L� H��H�hH�@H�@H�$�=m�����fD��UH��SH��H��H�t$H��H�;H�T$��m��u/���{�H�SH�;H��H�hH�H�H�SH�C��l�H��1�[]�ff.�@UH��SH��H�H�SXH�CHH��tH�XH��w-��H�CHH��wa�{<K�{@%H��H��[]�g���H�}X��f.�H�}P�G��H��H��[]�9��f�H�}8�'���DH�}X����D��ATI��UH��SH��H�H��t&Hc�L��H��H�����H�H��[]A\���A�H�L$�T$�|Hc��s��H�L$�T$H��DU�SH����O￸�fz�0�h\Hc�H���@XH�H�@H�@H�@H�@ H�@(H�@0H�@8H�@@H�@H�@`�֕�H�CdH�CPH�H�ClH��H�CxHǃ�Hǃ�Hǃ�Hǃ�Hǃ�Hǃ�Hǃ�H��[]�ff.�f�AWAVAUATUH��SH��H��hH�T$H�L$dH�%(H�D$X1���^�����L�d$0L�-$����y�H�XH�H�D$@H�D$8�n�H��1�H�\$(H��H�D$0�j�I�D$H�D$�\f�I�wH�=��5H����j��t;L�t$(H��H��L����j����I�GL��L��L��H�D$H�gi�H�D$HL��覓�L�|$8M��tI�H�D$8H��u�H�D$H�D$@�A�����H�|$0�pR�H�L$XdH3%(D����H��h[]A\A]A^A_�f.�I�WH�|$0H���?i�L���'��H�|$8H��tDH�H�D$8���H�|$8H��u�H��E1��
f�A��H�|$0H����i�H�t$(H��u�E���A��H��H�L$H�D$D���H�l$(H�|$0H��H���i�H�|$(H��u�����A����������v��fDAVAUI��ATI��U��SH��H���A��A�EA���A�<$������L��H����Y�E��tc�H�5��H���
u�H�5"����
���-�� �P��@�s���������H��[]A\A]A^�f���uL��H���AY�E���w�����fD1�L��L��H��H�5��蹀�E���O����fDE���R���H�ߺ
H�5���Kt�H��[]A\A]A^��1�1��X�H�������H���X�H�ߺH�5A��t�H��[]A\A]A^��H���X�H�5@��H����s�H�5V�������H���YX�H�5���H���s�H�5'��� �����H���*X�H�5���
H���vs�H�5����@�����H���W�H�5���H���Gs�H�5������j���H����W�H�5���H���s�H�5���B���ff.��AUI��ATI��UH��SH��H�?�C��x!�lj��_�H��H��tH�@�f.�H��1��g�1�I�E��I�$H��[]A\A]�ff.�@��H���H�t$H�L$����H���f.���H��H���H�t$H�t$�є�H���ff.����SH���H��H�t$H�t$���H��H���Z�H��[�ff.�@AVAUATUSH��H�� dH�%(H�D$1��Gp��t:��t5����WH�L$dH3%(H���TH�� []A\A]A^�H���L���H��L���\�H��I���<y�{pH�D$�H���H���mJ�|-�c\�H��I���y�H�|$L���H�D$�f�H�|$H���f�L��H��H�=��H��1��>��H��H�=�~5�/]�H�5�}5H��H���4L��H���1D�H�5�}5H���aL��H��A��D�H�5�}5�{p�LE�H�����L��H����C�H����q�H�5a}5I��H����L��H���C�H����~q�H�5/}5I��H����H��L���C�H����Ą��yPH���贄���U������5\�H���=��H�5�|5H��H����H��H���?C��#���f.����[�H�����H�5�|5I��H����L��H���C�끐�H�=���_k�H��H�m|5�E����H�=m��?k�H��H�U|5���H���H����mZ�H���H�D$�H�=��I��������_L����v�H�D$H�kL���H��L���l~�L�����uH�sL���U~���}H�|$��c�H��L��H�=��H��1���H�ŋC`��~vE1�L�-p��fDA��D9s`~ZIc�H�@H��HCPH�H�H��:t�H�PL��H��1��z���fDH�|$�Fc�L��L��H�=��H��1����H��H�=|5H���mZ�H���H��辂��x
��L���z�H�5�z5H���m����
H�=Y��i�H��H��z5�M���H���H�|$A��b�H�=m�H��H��1���H�����D�H�=h��gi�H��H��z5�����H�=\��?i�H��H�]z5�����H�=,��i�H��H�Ez5����H���H�|$A��b�H�=��H��H��1��U��H������D�H�=4���h�H��H��y5�����H�=���h�H��H��y5������L�H���L���H��I��I�H��L���	g��~H�H;��tH�D$H���i����W���fDL��L��H��A�V H�=����1�蓇�H�D$���Gz����H�5�x5SH��H��tH��[�W��H�=����g�H��[H��H��x5�lW�ff.����H�5�x5SH��H��tH��[�CW��H�=���g�H��[H��H�qx5�W�ff.����H�5Mx5SH��H��tH��[��V��H�=@��?g�H��[H��H�x5��V�ff.����H�5�w5SH��H��tH��[�V��
H�=����f�H��[H��H��w5�|V�ff.����H�5�w5SH��H��tH��[�SV��H�=��f�H��[H��H�iw5�,V�ff.����H�5Ew5SH��H��tH��[�V��H�=���Of�H��[H��H�w5��U�ff.����H�5�v5SH��H��tH��[�U��H�=B��e�H��[H��H��v5�U�ff.����H�5�v5SH��H��tH��[�cU��H�=���e�H��[H��H�av5�<U�ff.����AUATUSH��H���o�H�5��3H��H���X=�H��tSL�`L�hH��H��H�=_/1�跄�L��L��H��H�����H��H�5��Pi�H��H��[]A\A]�f�H��H��H�=��1�[]A\A]�e��D��H���31��ދ�ff.�SH���j�H��t[�H���Ha�[���U���AUATI��UH��S��H��H�9t\A�<$H��u"��i�H�}H��Hc�H��[]A\A]��9�@���H�����L��I�����H����L��H���]q��H�t$��u�H�t$H�E�PXH�5��H��H�D�3H�81��~�f���ATUH��H�5��3S��;�H���+H�5�3H��H��A��U����H�m H����H�{H�uH9�t�Aw�E1���H�{H�uH9�t�$w�E1���E1�E9��H�{(H�u(H9�t
�v����H�U E1�H9S usH�{H�uH9�t	�B}��u]�C`E1�;E`uR��~HL�CPH�}PI�H�H�H9u8��H�t@�0H���fDH�I�H��0H�H9uH9�u�A�L��[]A\�f�E1�[]L��A\������H��H�5��3�:�H��tH��H������f���fD��H��H�5��3�\:�H��t!H���H��tH����}�f��H����!������H��H�5A�3�:�H��t!H���H��tH���}�f��H���������UH�5�3SH����9�H����H�ÿ�$<�{pH���	�1�H��H���7�H����
7�H���H��t�f�H��H����6�H���H��t��f�H��H����6�H���H��tFH����P�H��H���6�H���H���H���vP�H��H���v6�H��H��[]�������AVH�5�3AUATUS��8�H����H��1��r�I�ċE`��#�yf��f�H��L����m��9]`~XHc�H�@H��HEPH�L�(I�EI�}�8t����H����{�I�}I�����H����{�L��H���zm���[L��]A\A]A^�����ff.�@AWI��AVAUI��ATU��SH���G\9G`����$f�I�}PI��Hc�H�@A�E`H��)�H�4H�|0H�H�@H���dk�I�EP�`H�H�D$��e�I�HI��L�8�@H����I�WPH��tI�|$X��A�D$Ic<I�D$(I�D$0I�D$HI�D$@����Ic@����I�uPH�D$H�L� I��H�C A�E`L�s�PL�sL�s�C(A�U`I��:t9�}H��1�[]A\A]A^A_����9��Hc�H�RH��H�H�
H�	�9t�I�Uh�f���d�I�WPH��I�D$XH������I�$H�xH�����������d�I�D$P�5�����d�I�D$8������H�P�0Hc��H�A�]\I�EP�A���ff.�@AVAUI��ATUSH��t`H���(S�1�L�p
I��L���gM�H��H�xH� tH�xH�enc/tranH��s/f�GM��u`L��H���Mi��tH���P�[I�E]A\A]A^�H�����t�H��ƒ���t�H�€�H�{H�t��u�H����x��H��
H��L���م�L��H����h��u�����H��8t<SH�FH��H��t�xDt11�[�DH�FH�~H�����H��u�1����1��DH�@H��[�f��G��uZUH��H��H��SH�lj�H����H��t0H�pH��tH����H��[]���f�H�xH�p�s���H��H��u�H�������[]Ã��ff.����y�tSH��H��IH��H�;�q����C[�@��UI��H��H)�L��H)�H��H�(H)�H9�}H�E�x<H�E8H��uH�I�8H��]ÐH�E8H��t�H�H��L��L�D$H�$�`��H�EH�$L�D$�x<~
H�E8H�}(�H�E8H�}(�fDAWI��I��AVI��AUATUSL��H��XM�(L�'H�T$H�.D�L$dH�%(H�D$H1�A�E8�D$A�@������H���Hc�H�>��f.�M��L��H)�H���
H�CH��H���E�L��H)�H���p
H�CH��H������0�E�L��H)�H����H�CH��H���E�L��H)�H����H�CH��M��H������0�E�fDA�EH�C(�C�D$t	I9.�	L;d$�[�D$�UI����L��H)�H����
H�Icu@I���H�yHH9���HcI@�H�sP��HM�~H�sPH����H�{XL�T$��H�C@L�T$H��H�CH��H�1�H���z@CH�SPH�s@�H���H�CHH9C@�_L��H)�H����
H�H�C@H��z@H�p~�H�SP��L��H;L$�"I��M)�D$�N�CM��~*H�H�{8�x<~H�{8H{(L��L��H�L$��d�H�L$I��I�.Lk(��@HcL$I�x(L�l$M)�I�D=�D$t	H9���H9�~H)�I�I��H�D$�C1�M���!
H��x<�DH�C8L��H�L��H�L$�]d�H�s(H�L$L�H�D$H��I�I�.H����	H)�H�K01�H�s(�+H����H�{XH���H��C�M�'I�.H�t$HdH34%(��H��X[]A\A]A^A_�DA�$�CM�\$�S I�u(��I�MH�<�D���F�A8���H�|$@H�CL�
��H�|$ H�{XH�|$(H�ƒ�H���BIc�L�>��fDM����L��H)�H����S$H�CH����H��IE��E��C$H�SI�M��H���C$���9�r�M�����DB8T�W�����L���D)�H���D>��HЋ��3����M��L��H)�H���	H�CH��M��H���E��G����M��L��H)�H���7
H�CH��H���E�L��H)�H���	H�CH��H���E�L��H)�H����H�CH��M��H���E�����M��L��H)�H����	H�CH��H���E�L��H)�H����H�CH��M��H���E�����M��M��I)�M���C
IcE@I�7I9���
L��L�D$@L��H��L�T$(L�\$ ���H�3M�MxH�KPA�L�\$ L�T$(HcV@��LM�~H�KPH�~HH�T$@H�{XvH�{XL�T$(H��L�\$ A��H�C@L�\$ H��H�CHL�T$(�5���H�31�H���~@CH�sPH�K@�H���H�CHH9C@����L��H)�H���4H�3H�C@H��~@H�H~�H�sP�fDM��L��H)�H���K	H�McE@I�EpH�sH�zHL9��!
HcR@���HM���	H�SPH���n	H�{XL�T$(L�\$ ��H�C@L�\$ H��H�CHL�T$(�R���H�31�H���~@CH�sPH�K@�H���H�CHH9C@����L��H)�H���6
H�3H�C@H��~@H�H~�H�sP�M��L��H)�H���^H�CH��H���E�L��H)�H����H�CH��H���E�L��H)�H���`���M���CM)�M��~*H�H�{8�x<~H�{8H{(L��L��L�\$�{_�L�\$M��I�.Lk(�b���f�M������M��L��H)�H����H�H�KP�x@~H�KPH�C@H�uH�PH�S@��EH�S@H�CHH��H9�����M���k����M��M��I)�M����IcE@I�7I9��oL�D$@L��L��H��L�T$(L�\$ ���H�;A�L�CPH��L�\$ L�T$(HcW@I�����LM�~L�CPH�HH�KH�T$@�]H�{XL�T$(L�\$ ��H�C@L�\$ H��H�CHL�T$(�/���H�31�H���~@CH�sPH�K@�H���H�CHH9C@�����L��H)�H���IH�3H�C@H��~@H�H~�H�sP�M����M���Q���M������M������M������M������M��L��H)�H�����CH�������E��k����M���I����M���y����M�������C�M�'I�.H�C(������L�YH�K�S �ȉK�0���I�7L�D$ L��L��H��L�T$8L�\$0���H�3I�MhH�T$@L�\$0H�~HL�T$8�<H�|$(L�T$8H��L�\$0��L�
��L�\$0L�T$8H�C�	���H�I�U`H�yH��H�|$(L�T$8H��L�\$0��L�
��L�\$0L�T$8H�C����M���CM)�M��~*H�H�{8�x<~H�{8H{(L��L��L�\$�\�L�\$M��I�.Lk(����C$���H�{(M��HcL$M)�J�4/H9��_�����D$�����I9.����CM��~)H��x<�dH�C8H�L��L��L�\$�[�L�\$M��I�.Lk(�k���H�C@M9�s:L��1�H�{P�H�S@H�H��H���y@~H�sPH�JH�K@�H��I9�u�H�C@H��1�H�C@H�CH���L��D$�����I9.�����M���CM)�M���[���H��x<��H�C8HC(L��L��L�\$H���Z�L�\$�)����M���C M)�M���������DM���CM)�M���������DH�D$L�I�I�.H�{(1��G����M���CM)�M����������DH�{X�R��M���CM)�M���Z�������DM���CM)�M���:����_���D�C�M�'I�.���f�M���C	M)�M�����������DM���CM)�M���������DM���CM)�M�����������DM���CM)�M����������DH�C8����CM��~&H��x<�qH�C8H�L��L���X�H�C(L�H�|$I�?I�.H�C(����D�CM��~*H�H�{8�x<~H�{8H{(L��L��H�L$�X�H�L$I��I�.Lk(��fD�C�M�'I�.�i�f�H�{X�=�M���CM)�M�����������M���C
M)�M����������M���C!M)�M��~*H�H�{8�x<~H�{8H{(L��L��L�\$��W�L�\$M�I�.Lk(����M���CM)�M�������@���M���CM)�M�������%���M���CM)�M���v����M���C
M)�M���������CM�'I�.�{���M���CM)�M�����������M���CM)�M����������H�{X���H�SP�v���H�{X���L��L��H��L�T$0L�D$@L�L$(L�\$ ���H�M�exH�{XH�T$@L�\$ H�yHL�L$(L�T$0vH�{XL�T$(H��M��H��L�\$ A��L�\$ L�T$(H���H����H�{XL�T$(H��L�\$ ��L�\$ L�T$(H�M����L��L��H��L�T$0L�D$@L�L$(L�\$ �M�H�3H�KH�{XM���H�T$@H�~HL�\$ L�L$(L�T$0vH�{XL�T$(I��H��L�\$ A��L�\$ L�T$(H����M���CM)�M���1����V���M���CM)�M�����������M���C"M)�M����������H�C8���H�{X����H�{X�	���H�{X���H�F��CH�L�\$H��H��H��H)�M��������H�C8�s�����[�H�C8���H�o�3H�50�H�81��6d�fDUI��H��AWI��AVE��AUI��ATI��SL��H��(I�P0dH�%(H�E�1�H����H�BH��H��H%�H)�H���H��H9�tH��H��$�H9�u���H�H��H�e�H�s8H�E�H��x<��Hs(L�]��4q�E��H�U�L��H�C0A��I��L��H�}����L�]�����t1H�u�H�U�H�{8H�H)�x<iL�C01�H��umL�H�C0�DL��E��I��L��L��L������H�u�dH34%(��ulH�e�[A\A]A^A_]��H�s8�F����H�{8L�C01�H��t�H�C(�M�L�H��_p�H�E�L�C0H+E��M��m���H)�H�L������Z�DAWAVAUATUSH��xH��$�H�|$H�t$0H�T$8H�L$ L�D$(D�L$DH�D$HdH�%(H�D$h1�H�D$_H�D$`H����H�|$ �xH�D$L�@PA�x(uA�@(H�D$�@`�p�Hc�A��H�RH��E�L(���~A���n��D�ɿH��H��@��s�������P�Hc�H�RH��L�A��0fD�J(���"��L��H��H���su'H��0��A���\A�|$����u�E1�A����D�d$@f.�D�\$D�l$@E1�E���@�E�H�H�@H��H�L�xL�X9��-H�KL�CL�cL9�t>L��L��H��L�\$L)�L�D$�Q�L�D$L�\$H��HKH�CI��M)�H�CL�cH�K L�SH�D$E��9hdtA������A��t�D$@A����I�L�L��L��L��L�T$H�D$�/���L�T$���C(H�D$I;��A��U��w�H��c���tH�D$�PdH�D$�Ջ@`�p�9�~tH�D$H�PPHc�H�@H��HӅ�����L�\$8L�|$09�����L�T$ H�L$(M�"����f�A�����7���@M9"�DE��^����E��t;;D$@~5�l$@E1��u����H�D$�@`�p����t�T$@9��$���A���
�A��E��xRH�D$H�HPIc�H�<@H��HϋG(��uiA�s�Hc�H�@H��H��DH��H��0�BX��uA��A��u�H�D$H������H�|$hdH3<%(��H��x[]A\A]A^A_���v�P���w�G(H�|$HD��f.�H�D$(H�D$`H�D$ �t���@H�|$`H�D$8H�|$0�P���D�d$DA������D�L$DH��1�1��t$PL�D$8H�L$0A����H�|$A�����Z�Y��D��/����D$@�����U�騠�飠�DUSH��dH�%(H�D$1�����H����H��H9����o�H�C�uH���������H���D$�S���O3�xt9H�3� H���H	�H�3H�L$dH3%(H����H��[]�fDH���(F�H�3��u��� uiH��H�{��H�H�L$1���o�HcD$H�3�DH��H���5B��X�����%��H��H���nR��u���f�H���%�H���\���H�{H�sH���NT�ff.���ATUSL�gH��H�/L��H���C��H�xu	H�X[]A\�H��3L��H��H�5��H�81��u\�D��SH��tH�����H�X[�H�ɼ3H�5:�H�81��@\���H�WhH��yH��t
H��xDtH�@�fDH��@USH��H����%�8u-�H�
�yH�3GH�CH�S H�K(�CXH��[]�H��H�ChH�H�x��F�H�5�eH���,�H�5��H�
�e��H҃�H����H���HE�H�5�FHE��f���SH�5ċ3��H��t4H�xH��t H�{(�WF�H�s H�{H��[�X�fDH���������Q�����ATI��US�WX��unA�D$`��~<1�Hc�H�@I�D$PH��H�<����I�D$PH�|H��t�ca��A9l$`�I�|$0�Oa�I�|$P�Ea�[L��]A\�9a�f�H��'a��D���[�����GXS����H�G H��W`��~zL�OP���`L�RI��M�A0M��f�I��0I�H�
H�qHH��H�V`Hcq<HcI@HF�I��H�A��HO�H��Hу�HO�I�IH�H��t
I�Q H)�H�M��M9�u�HcO\H�WHH+W0[H�IH��H�H��f����P���fD���G`��tH�GP����H�H�@0H=���O��ff.����G`��tU��tQUSHc�H��H�GPH�(H�EH�U8�x<~H�U8H�E0HE(H��H)�H�4H����f�H)]0H��[]�f.��ff.�@��ATI��H�5`�3U��H��S�4�H��������H��t
I�<$H��uaH���IU�A��Ic�1��\-�H��H�pH� u,D��H���AD�H���H��tH����-�H��[]A\�DH�p��f.�@��u��B�A��H����T�D9�DN�닐��,�A����1����;��c����SH��H��H��0H�=�N5dH�%(H�D$(1�H�T$�5��tLH�|$1�H�u$H�T$H�5���H�\$H�D$�4�H�D$H�L$(dH3%(uH��0[�@1����'O����H��8H�t$H�|$H�T$ H�t$dH�%(H�D$(1�����H�|$�%^�H��t(H������H���X�H�L$(dH3%(uH��8�����N�ff.�����G`��tH�GPH�H�H��:t�xDtH��1�H�5�t�<��@H��H�5ut�$��@���O`��t'�Q�Hc�H�@H��HGPH�H�L�A�8t�xDtH��H�50t�������H��H�5t�������AWAVI����AUI��ATUSH��H�T$dH�%(H��$81�H�D$0H��H�D$�����D$������D$A�>�D$��A�}��1�L�-�s����H�$M��I��H�<$�j\�M��tR�D$M�wM�oA��D$���*H�\$��H�l��H��H9���H�3L����3���u�L���V�E1�H��$8dH3%(L����H��H[]A\A]A^A_�@L���hS�A�>uA�}�8���H�L$ H����L��L��H�D$ �D$(���H�L$ �D$H�$������D$L�$$��L��I�l���I��I9�twI�$H�xu�H�xH�p����I��H��u�H�<$�6[��!����D�d$E0�E'D�d$�D$A�����@L���R�A�}����A�>�,����_���fD�|$�?��I���f.�H��H9�tGH�H�pH��uH�xH�p�.��H��A�W`L���/�����u�L���T�H�<$�Z��q���@H�<$�wZ��
���1�����I�����NK�ff.�AWAVAUATM��UH��SH��H��HH��$�H�D$dH�%(H�D$81�M���s1�M���I]�I��H����H�D$(H�+E1�L��H�L$0O�<H��H�$H�\$(M��L�d$0H�L$H�D$�+�H�\$0L)�tQ�L��H���Q�I��H�L$H�$L�E1�H�t$M�.L��H�\$0�m+�H�\$0L)�uVH���I��K�,?M9�u�H���3>�I��M��uKH�L$H�$H�E1�H�t$I��L��H�\$0�+�H�\$0L)�t���u-L���R�H�D$H��3L��L��H���`��K���DM9�tL����X�L��E1��R�H�L$8dH3%(L����H��H[]A\A]A^A_�f.�H��A�LE�1�M����[�I��H��taL���Y=�H�+E1�L��I��H�D$0H�D$(H�L$0O�>H��H�\$(H�$H�L$H�D$�.*�H�\$0L)�u'M�������@���E1��H�����������/��������������H����AWAVAUATUSH��H�$H��HH��H��I��I��dH�%(H��$81�����CH����L��H��I���"�����S`H�l$(E1�����H�{0L�K0L�C8I��L�k@H�KHE1�H���I�EH�H)�L9��oH���FH�<(I�}M��t
I��yD��E��tL���W�1�H��$8dH34%(��H��H[]A\A]A^A_�@L�|$0H��H��L��H�D$0M��L��L��PA��g���ZYH���L9�H�l$(A��I9�I����A!֋S`�������r�H�KPHc�H�@H��H�L�8I�?�D�4H�xL�HL�@I��L�hH�H H����L��H�L$L�D$L�L$L�$�	;�L�L$L�D$L�$H�L$H�l$(I�I�I�EL�H�I�EH�������@H��L��H���]�I�EH�l$(���@I�0L�T$H�L$H)�L�L$H��L�$�?�L�$L�L$I�EH�L$I+II�EI�9L�T$I�8I�EH�H)�L9�ryH�l$(�0�����y<I�W0I�w8~I�w8H����H�I�}I�G0����f�I��MW0������L�K0L�C8H�{0L�k@H�KH���f�H)�H�L$L�L�D$L�$H��rGH���?L�L�D$L�$H�L$I�I�UH�I+I�UI�H�H�l$(H�I�E�j���f�E��tL���T������|���f���Hc�H�RH��H�L�HL�@H�xL�hH�H ���fDIw(�g[�I�}I�W0����%E�DSH�wH��H��t#H�K(H�S H���\�[����������fD�[�H�s��DAWH�5{MAVAUATUH��SH��8H���dH�%(H��$(1�H���#�H���L������5H�L$����A��H���M��H�\$L�%����H�D$I��H��H�D$H����A�L��H�߉�A�O�����A�G�A�G���1��^�H�ڋ
H����������!�%����t�H������D�H�JHD�H�
g���@�H��H��H)��a[����X�����E��tL���R�����H��$(dH3<%(��H��8[]A\A]A^A_�f�E��tL���sR�1���L�d$ H��L��A�H�D$M��H�5�KH��P���I��XZM���y���H�D$H�ƒ�M9�t(L9��tH���O���A�H���|����@H���8���E1�H���`���1��)�����B�fD��AWAVI��AUM��ATI��USH��H��XH�T$D�L$dH�%(H�D$H1�H�D$;�GH�D$@H����H���m�D$I�npI��%����
�D$I�F8H�D$ H�D$<H�D$f�I�G0AAGAG A�F`����H�;M��I)�I�~0tGI�v8I�V@H9�t:H)�H��L9��G�X�H+I�F0I�F@I�F8�D$�eH�;M��I)�I�4$H�l$H)�L9�IO�H��t�D$��H���W�H�;H�H�;I,$I�,$H9l$�b�D$��A�FpA�����H�H�@H��IFPH�pH����H�PH9���H�;L��H)�H��H)�H9����8W�A�F`H+��H�H�@H��IFPI�~0H�PH�PH�Pt7I�V@I;V8t-H��M��H��L���t$D�L$,H�t$0����XZ�����D$twI�$H9T$�
H��M��H��L��t$D�L$(L���o�AYAZ����A�FpA��DI�~0tI�V@I9V8�#�D$��A�~`���D$H�l$L�|$(
A��@H��M��L��E��UH�T$H��L�����_AX��t�L�|$(�Ņ�A�np@�ƃ���@�u	����HcD$<H�@H��IFPH�H�I�FxH�9�y<I���H�yI����+H�H8I���H�H(H�@0I���I���@��tA������v��u)A�%��� ����0uL���C��������A���cH��H��M��L���t$D�L$,H�t$0���Y^�Ń��������fDH�FA�I�$H�H�PH���A�FpH�\$HdH3%(D���KH��X[]A\A]A^A_�f.�H��M��H��L��t$D�L$(L��H�T$�]�A[��X���H�H8�����L�����������������I��H����L�+LxDA�FpA��M���DI��H�\$@���H�D$L�d$@�k���f�L��������z������A�FpA����DM��uCL�+A�FpM~8A������H���S�A�F`��H�H�@H��IFP�B���fDL���S���I=�f���AWAVAUATU��H��SH��H�5v3H��dH�%(H��$�1����H����H�D$PI��H�D$ H�D$H�D$`H�D$(H�$H�D$hH�D$0H�D$pH�D$8H�D$xH�D$HH��$�H�D$@H��$��W�H�D$XA�Ņ�t/��~���������������B(�f��+B�L�T$X�������'����H�L�T$XA�����E1�H�D$ L�sH�D$`L�t$(�H�p�)fDH��tL��D9�tHc�H�<�H�9��H��H9�tH�H9�|�H��t�H��H�H9�u�H��$�H��tH�L$PH�9��\M����L�l$0E1�I��tA����M��I�L�t$81�I��tA���iL��H�H�|$HH�T$@H����H�����"�H�Ǩ�)�D��H�<$�y*�H�|$ t
H�|$�g*�H�|$(��I���CI���?M����L�l$(I�E�� �nH����I9��H���,M��I���M����L����G�I9��?H�t$ H���H��� �<H�FH��H�D$P��H�I�EI�E tI�EL�H�t$PL��A��H�L$XL�H�D$X�>�H�|$(H�t$XA��H�GH� tH�GH)��X3�H�|$ H��tH�t$PH�GH� tH�GH)��?�H�|$8��A����H��������?H9���H�D$0H�L�l$(I�E�� u|H����I��H������H���3H�5b�H�81��B�H�D$P1����I�E����L��L���?�L�l$(���H�FH�VH�D$P����fDM�}M���U���H��3H�5��H�81��A�I��$�H��t
H�|$(���D�����H��$�dH3%(��H�Ĩ[]A\A]A^A_�H�D$ �H�������H��� ��H����H���HL�����1�H���B���H�5�75H��H�T$1���H�T$H�5r75H�����@��H��������H�����E�����H�|$X��D��o�����*������L���\7�H�����L���L7�I���`���H�X�B���D�}�Ic�H�è���H�������������ڂ�H�D$PH���H�|$P�%�L�t$PD��H��M���4��E�����E1�A������H�ɉ�HD�H�D$XH�L$PI�ƒ�uM������H�|$X�C������I��~�E��u
L�t$ M����H�H�D$ A��tM������M������H��3H�5ݣH�81��c?�H�ԟ3H�5ŨH�81��K?�H���3H�5z�H�81��3?�H�E1�E1�A���H�D$ �L�T$X���=���H�A��E1�H�D$ �Q����}���F"�����H�|$X���-�H��H�H��H�E��H�=H�E1���9����D�}�Ic�H�<Ã�H�D$XE1�A��I�����H��u���-��H�D$P�6����*��'�����5�H�=�1��B9����ff.�f���ATH�5�n3USH��H��0dH�%(H�D$(1��E��H����1�1�I�����H��H�ڿH��H�D$H�$H�D$H�D$H�D$ ���H9v45t;H9e45t2H9445t)H9;45���H�L$(dH3%(H��uH��0[]A\�L�����H����茾����4����ATUSH��H��@H�t$H�5�m3dH�%(H�D$81��`��H����H�|$I����#�1�1���
�H�|$H����H�t$H�ڿH�D$H�l$H�D$ H�D$(H�D$0���H9~35tDH9m35t;H9<35t2H9C35tCH9B35���H�L$8dH3%(H��uH��@[]A\�L�����H����苽����3�H�ǜ3H�5ӠH�81��><�ff.���AVAUATI��US���?������ t#H�5۞��t��[]A�$A\A]A^�@H�5��H�=nY���L�pA�D$`��~��1�1�L�l@I���9fDHc��oH��0��H�@H��H��oIH�oQ P I9�t4I�T$PH�H�9L97u��?���I�D$PH�|H��0��A�A�l$`I9�u�A�$[]��A�$A\A]A^�DH�5��C���ff.����AUA��ATI��UH��H�=��SH�����D��L��H��H��H�����H�ߺH�5D��@$�H�=	25H��H��[]A\A]�g����AWI��AVAUI��ATUH��SH��H��dH�%(H�D$1��-�8tH��L��I���Z��u^H���%�I��H�����CXH�,$��utH�$�CXL�sL�k(H�C 1�H�L$dH3%(uyH��[]A\A]A^A_��H��H��L��E1�H�D$E1�L��L��P��ZYI��H��t0�CXM��t�H�{�J@���H��L��H���RG��[������w����1���USH��H�5�i3H��dH�%(H�D$1���H����H��H��H�$� �H�<$�8�H�4$H�HH��� t6H�VH�vH�������t.H�L$dH3%(H��u0H��[]��H��H������H�=L05H�5��1���8��Y0�����@��AWAVAUI��ATUS��H��(dH�%(H�D$1�H���gH�5�/5H���`�H��tH;�/5����H�5�/5H���;�H�5�/5H��tH9����� H����H��t�؃� ��D�H�5Z/5H����H��tZH;=/5tK��0�H;&/5tB<��uH�����t�������H�[�3H�5\�H�81���7�f���0@H�5�.5H����H������H;�.5A����H;.5��H;j.5�\H;U.5��<�W�uH�����t������=H�Ɨ3H�5�H�81��=7�DH�A��H�L$dH3%(D���|H��([]A\A]A^A_��H���H��H�5I�H��H�_�3H�81���6�DA��H�5.5H����H�D$H����H�|$�y�H�|$�;�H�|$=0�)�J�H�D$�p�H�T$H�5�-5H��I���Y�H�5�-5H���*�H�D$H��t5H���w"�H���MH�D$I����H�T$H�5R-5L���
�I��tL����M�e����H�5)-5H����I��H�D$H��t�L��A���A����@H�5�,5H��E1��~�H�5�,5H��H�����A��A��H��A���Y�D��H�5,5H���H�����DE�H��A���2�D��E	��� H�����DE�H��uA��E���l����؀�D	�A���\���DA�� �K���@H���`��H�5��H��H�w�3H�81��4�DH�|$�#�H�������H�|$�C,�H�������H�|$���[7���{������fD��I���m����,�H��3H�5��H�81��~4�H��3H�5��H�81��f4��%�H�|$H�D$�3�H�|$H�X��H�55�H��H���3H��H�81��&4�fD��1��u:�DAWAVAUI��ATI��UH��S��H��hH��$�L�D$L�L$L��$�H�D$H��$�L��$�H�D$ dH�%(H�D$X1�H�D$H�E�H�D$P�…�tF��~+���������[H�T$P�H���R������fD�D$(�0�ۋT$(�+���-����I�EI�$I�EH�E����I�ML�l$HH�T$P��u�H���eH����I����H�����H�Ǩ�.�Y�A��H�D$PI�<$���������U�H�}H������������:�H��H����L�cH����H�BH�t$H�L$L�&H�H�D$H�H�D$ H�H�D$PE�.I�H�D$XdH3%(�(H��h[]A\A]A^A_���f�H�T$P����s�Hc�I�D����u�H�������u�������u�H�D$HH����H�|$H�t$0�T$(���H�L$H�t$0I��H���^u�T$(������1ɺ����M���LD�L�D$H��������^������I�$I�EH�E���@����H�|$PL�l$H��I����L��H�t$P�+�I�<$A���l����h���@L��1����H�}�M����d���H����1�H���d���L��H�T$(�E�H�T$(I��H���S���@H��H�T$(�#�H�T$(�<���f���A������H�|$PH�L$(�4�H�L$(����H�D$PE1�����H�|$P�4��
���I�EI�$��t$I�EH�E����������������DH�M�����������s�Hc�I�|����o���H��u<���\s�H�|$HtJH�|$H�t$(���H�L$H�t$(I��H����s��ns��t$0�T$(���T$(�t$0H�D$H���I�EI�$I�EH�E�k���H�|$P�����H��I�EI��H��F
�H�=��H�C1��D*�H�I�$I�EH�E���������I�E��1�I�$����H�|$P�K3�����&����M�1�H�=<���)�I�EI�$��r���AWAVAUATUSH��dH�%(H��$x1�H�D$XL�l$0L�d$(PL��L��H�D$,PH�D$`PH�D$`PL�L$`L�D$X�a���H�
���HDŽ$�H�� H�t$@H�|$8H�L$`�F���H�l$`H����H�\$p�|$$H���ƚ��A�ǃ����H�}H���� ��H�}Hc�A��H9�����t:H�EH��uH�E E�F�Ic�H���u
H�������C�t7�H��Hc��f��E��~,G�,7DH�;H���L�Ic�H��A��H���:��E9�u�H��$xdH3%(H�D$`�QH�Ĉ[]A\A]A^A_��H�����A���@H��ƃ����i����� ��H�B H�8H�T$D�D$�-�H�T$D�D$H�@H� H�D$H�BuH�B H�xH�T$D�D$�i-�H�|$H�p���D�D$H�T$H�pH��tHH��8������~D���C�t7�H��D�D$Hc��=��D�D$E������H�B�U����H�xH�pH�T$D�D$�i���D�D$H�T$H��H��u��T$$H�t$@H�|$8���L�d$hH�T$(L�l$hH��H�T$0�x
��#��1�ff.���H����AUA��ATI��UH��SH�����)p�H�������p�H��ƒ����p���p�H�5�"5H���p��H��D��L��H���_5�H��H��t2H��t,H����*�H�H�H�� u-H��H�s��H���J����t-H��H��[]A\A]��H�SH�s��fD�4�H��1��+���ff.����AWAVAUI��ATI��H�5W[3US��H��H��dH�%(H��$�1����H�������H�D$hH�l$xL���L�t$pPH��L��H�D$hPH�D$HPH�D$HPL�L$HL�D$@�s���H�� H�L$h�T$`H�t$(H�|$ ��I��H���RH�|$ H�l$0�?tLH���CH�D$8H���H�T$pH��$�H�T$pH�T$xH��$�H�T$xH�l$0�f.�H�D$8I���L��I���M�} H��$�dH3%(�H�Ĩ[]A\A]A^A_�DI�<$H����I��H�����H�D$HH�8H�D$P�� ��H����Hc�H9����V���E1�I��I�E H�D$@H�D$H�D$HH�D$H�D$XH�D$��f�H����I9���L��L����"�H��H�D$@��H��H����H��� ��H����H����H��1�H�$�"�H�T$H�t$H�|$hH�D$h�7���H�$�H���v"�H�t$`H�T$PH�|$pH�D$p�
���H�t$`H�|$XE�O`�?urH��D��H��L��蹰������#I��I��� � ���I�FI9��#������kH�|$ H�D$(H�l$0I�I�G�D$`H�D$h���fDH��$�H�����D�$L��$�D��$�DŽ$��ՙ������'��$��Lc$�I�WP��t!H�D$HH�D$0K�IH��H�H�H�H�D$ H�D$P1�H�D$8A�G`��H�H�@H��H�H�H�@H�D$(����H�A�g����H�|$H��DH�D$X��H��H�D$`���DH�|$(�����H�D$8����D������H�D$0���f.�H�x�`����H�D$0H�\DH�D$8H��H�D$ H�D$(�y���H�T$`H�t$XH�=�1��M+�H�T$hH�T$xH�T$hH�T$pH�T$xH��H��3H�T$pH�8���H����H�Ɔ3H�5��H�81��=&�H�t$`H�=�1���*�H�T$hH��$�H�T$hH�T$pH��$�땋T$`H�t$(H�|$ ��L��$�H�T$pH��$�H��H�T$x�4�H�U~3H�5��H�81��%��7��+�f�AWAVA��AUATUSH��H�H�T$8dH�%(H��$�1Ƀ��yM�Ņ��
H�H�D$h���<H�FA�H�D$pH�D$hH��$�D��H��$�H��H�T$(���H�t$0H�D$X蘛��H�|$p�D$P�L��$�H�T$xL��H�|$p�n���H��$�H�L$xL��$�H�D$H��$�H�D$ ����H�t$L�����uH�CBH�D$I��H�+�� �xH�KH��H��$���H�UH�L$H��H�T$�G2�H�T$H�L$H� H��L�`tL�`I�H�t$D��L��H�D$H�)L��L��$�H�D$�
�H��H���BI����A��u
I��������D$WA�H�D$@H�EhA�H��tH�D�p@Ic�L��$�H�D$Hf�L�D$H�L$(E1�L��H�T$H�������"�|$W�H�����H���H���H���� �L��H��$�H��H�D$@��H��$�H��4t
H���@H��踚��H��H���#�H���u�DH��tKH;L$ �CH�|$ t8�yu2H�����u&H�D$ �xuH�����uH���'(�=t(H�t$L����������H�|$p��H��$�dH3%(�D$P��H�Ĩ[]A\A]A^A_����/������&�������L��$�H�D$HH��M)�L�cJ�0H�H��H�T$���H� H�T$tL�cM�I�L��$�H�D$�G����H�|$0��H��$��)!�H��$�H�HH��� u5H��H����H����0��������H��3H�5��H�81��!�H�VH�v��fDH���!�H��$�H9D$�wH�CH� tH�CH��$�H���H��$�H)���H�|$ ��H�D$8H����DH�KH�kH��$����H��������H��L�xH��$�H�D$H��$�H�D$ ���	���H;L$ �����A������E�������I��tH�5�5L��H�L$�`��H�L$I��H��L��H��芳��H�L$8H��HD�H�����D�K�H�D$hH���E1�A���A��A��"����D$WH�D$@�>���DA�E��������H�515L������H��I���D$W�uH�����t�������L���{�H�
���H�L$@H������L����H�ǖ��H��H�����HE�H�D$@�����D$P�������H�|$�N�D$PH�D$XH��$�H�D$hH�D$pH��$�H�D$p�����E��t�H�����H�D$h����f�A�����H�y3H�D$@� ����1��S��n�H�T$H�5��H)�H�P3H�81����H�t$L��D���N��H�����fDAWAVAUI��ATI��US��H��(dH�%(H�D$1�H�$H�D$�d0�H�D$A�ƅ�����~L�C�H�I�,�@���zH�������b�E������b�H�l$H����H�T$�@�(H�l$1�H��t
H��H�����L�$L��L����/���H�T$dH3%(��H��([]A\A]A^A_�@���~M���}H�l$H�T$�GH�|$���H�|$H����a�E����a��H��HD�H�l$H�T$��xeH�l$1�����9�~��9�NH���4���H�|$�o!��%���D�{�Ic�I�<�H��u����a�H�l$�����1	�H��H�D$����H�|$t
H�|$�"!�1����4��O��la�f.���USH��H��(dH�%(H�D$1�����H�������H��ƒ�������uH�T$H�\$����Ņ�xJH�t$H9���H������H���D$�������xt=H�3� H���H	�H�3H�L$dH3%(H��uuH��([]�fDH����H����H�3��u��� t9H�{H�sH�H�L$1��.�HcD$H�3����H�����@H��H�{��H�����ff.���SH��H��dH�%(H�D$1�H�$H�����H�<$H�މ��J���H�L$dH3%(uH��[���ff.�@��SI��H����H�� H�t$H�t$dH�%(H�D$1�H�D$H�|$�H���.���H�|$H�މ��ϼ��H�L$dH3%(uH�� [��4�@��USH��H�t$H�5�J3����H����H��H�|$�O�H���7��H��H���|�H���$�H�|$1ҹH���P��H�H�D$�� t+H�PH�pH��H���P)���t H���[]��H��H�p����H�|z3H�55H�81��������ff.���H��H�q���dH�%(H�D$1�H��H�$豋��H�$������H�T$dH3%(u��H����	�f����������H����H��uH���H������AWAVAUI��ATI��UH��SH��hH�|$D�D$$dH�%(H�D$X1�H����H�D$H�D$H�@hH��tH�Hc@@H�D$H�EH�D$8H�D$PH�D$(H�D$HH�D$0�@H��H���\�H�T$��H)�I�4H9���L�l$HO�|%L�t$8H���-�D�L$$H�L$(M�H�t$0H�|$M�L��L�T$PL�T$����L�t$HL�T$H��H�t$PA��L��L)�L)�M��H�I)����H�|$��A��u{H�]�� �N���H��H�]��H�T$H)�J�4"H9�rL�l$HO�|%L�u�Q���fDH���H��O�|%��H��H����H�EL�l$H�� u�����@H�T$XdH3%(H��uZH��h[]A\A]A^A_�fDH��� �H��H�D$H���H���O���H������B���H��w3H�5H|H�81��;���fD��AVI��AUE��ATM��UH��SH��H��H�� H�t$dH�%(H�D$1���H�D$H�pH� tH�pH��L�E��L��H���j�H�T$H�T$H�T$H�L$dH3%(u
H�� []A\A]A^���f���H�I��A��� uH��1҃�H����DH�N1����ff.�f���E��A����ff.���H�A��� uH��A�1҃���DH�NA�1������UH�5�zSH��H�0t3H�-1v3H�;H�U���H�UH�;H�5�zH�
5�{��H�UH�;H�5�zH��5�a��H�-Rv3�����H�����H�5�zH��5H�}�'��H�}�����H�����H�5�z���H��q3H�;H�5�zH����H�5����H��H��S5�L�H�=uS5�H�i���H�5wz���H�=VS5�����H��H�5mz�~��H�=7S5�����H���H�5�����H�=S51�H�o���H�5���c��H�=�R51�H���H�5z�G��H�=�R51�H�����H�5x�+��H�=�R51�H�+���H�5x���H�=�R5�����H�|��H�5�y����H�=�R5�H����H�5�J����H�=jR51�H����H�5)����H�=NR51�H�5���H�5�y���H�=2R5�H����H�5}y�z��H�=R5�����H�����H�5ly�[��H�=�Q51�H�+���H�5Xy�?��H�=�Q51�H�����H�5Gy�#��H�=�Q5�H����H�54y���H�=�Q5�H�����H�5(����H�=~Q5�H�5
y�}!�H�=fQ5�H�5�x�e!�H�=NQ5��H�5�x�M!�H�=6Q5�AH�5�x�5!�H�=Q5�aH�5�x�!�H�=Q5�H�5�x�!�H�=�P5�H�5�x�� �H�=�P5�H�5�x�� �H�=�P5� H�5�x� �H�=�P5�@H�5�x� �H�=�P5��H�5�x� �H�=vP5�H�5�x�u �H�=^P5� H�5�x�] �H�=F	51�H�M���H�5Ou���H�=*	51�H���H�5Hu�u��H�=	51�H�u���H�5Fu�Y��H�=�51�H�	���H�5:u�=��H�=�51�H�����H�5Ku�!��H�=�51�H�����H�5�t���H�=�51�H�U���H�5�t����H�=z51�H���H�5�t����H�=^51�H�}���H�5�t���H�=B51�H�����H�5&t���H�=&51�H�U���H�5t�y��H�=
51�H���H�5�w�]��H��[]��of���H���s��H�=y:H�5���H���(�H�=�H��5���H���
�H�=&�H�5��H�����H�='wH�\5��H�����H�=wH�95�t�H����H�=�rH�5�Y�H����H�=�HH��5�>�H����H�=�vH��5�#�H���k�H�=�vH�e5��H���P�H�=�vH�B5���H���5�H�=�vH�5���H����H�=�sH��5��H����H�=�vH��5��H�����H�=�rH��5��H�����H�=�qH��5�f�H����H�=�qH��5�K�H����H�=�qH��5�0�H���x�H�=vH��5��H���]�H�=bqH�_5��H���B�H�=�uH�l5���H���'�H�=�uH�I5���H����H�=�uH�&5��H�����H�=�7H�5��H�����H��5H������fDH��5H��t\��5�5�5I����H�=g5���f�H��D�@H�HL�H�xH��D)�A�Ѓ�H��u܉5>5H�/5D�85H�5�5�f�H��Ѓ���tC~!��tL��	u1���tH�G���uC1�Ð��u�1���t�� t�H�G��1���t�H�G Ð1���t�H�G�P��H�=�xH��1����f.�AWAVAUATUSH��H�t$H����L�-ml3H��L�5y�CH��D�K�sI�}I�ؾH��xP�CPH�L$(1����H�� f�{~dE1�E1�f.�Ic�H�lH�}���H��I�}E��P�ED��I��L��A��P�EP1�����EH�� A��CA9�|�H�[H���O���H��[]A\A]A^A_�f�~9ATI��US1�Hc�I�lH�}�O��H�E�E�A�D$9�|�[]A\�fD�ff.�@H�G�����f�Wf����UH��SH�\H��f�;��H�{t<�f.���c�H�C4H�Cf��ucH�\f�;��H�{u[H��tߋ����t3~��t���	uU������uA���w���膠��@H��[]���c��H�=DwH��1��b���M��H�=HxH��1��L��ff.�����=I5u�f�USH���%��H�5�(5H��H��t@H�����H�[H��u�H��5H��tH�����H�[H��u��B�����5H��tH��[]����H��[]�f���H��H��i3�
�5H��vD�
�5D��5�H�81��W��H�=P5H�5]w����H�=E5H�5Ww���H�=:5H��H�5Nw���f.����ff.���H��H��H���H���`H��`��H��5H����U��SD�@�D��D)�9���H��5D��5E1��6f.�D�BD�
A��A�H�ZH�BH��E)�D��A9�}/H��H��u�E��tH�_5D�h5H�A51�[]�@H�A5D�J5H�#5�Mc�f�Bf�JJ�D����������f�pH��f�P�f�H�H�x�[�5]��1��DH�����UH����S�H��H��4�7fDHc�4�JH���
�4H�
��4H�H�*H�JH���4��t'H��uʾ��胿�H���4H��u��L�f�H�
Y�4� H�BH�5�4�N�4H�S�4����H�?�4H���VL�H��[]����H���4H��H��t"@H�PH9�rH�H�H9�rCH�@H��u�H��4H��t>fDH�PH9�rH�H�H9�rH�@H��u��f���f.�1��ff.�f���f�~�u5f�~�t�@H�F�H��H������Jf�N�H�JH)�f�B�L�4�SH���&��H��H�=�sH��1��"��f���S1�H������H��tR�5&�4Hc#�49�K��5�4xWHc�H�=��4H�����H��4H���K�Hc�4�J�
�4H��[��H���4�J�
�4H��[�H���4��J�f.���USH��H�_�4H��tf.�H������H�[H��u�H�@�4H��tH�����H�[H��u�M�4��~+1�H�1�4HcӃ�H�,�H�}����9$�4H�E�H��[]���US��H��H�5�4H��H��tCDH�A���t fDH�TA�����H�BfD�R���u�A�����fD�YH�IH��u�H�={�4H��H��tvH�A���t fDH�TA�����H�BfD�B���u�A�����fD�IH�IH��u�f���H��u
��DH��H�FH��u�H�~H���4H��4H��tH�PH���4H�@���4H��4��4��4��uu��4��~<fDH��4HcþH�,�H�����H��tH��H���
�����9��4�H��[]�H�WH��u�:H��H�FH��u�H�VH�G�s����m�4H��[]�H�=3�4����H�'�4��ff.�f����&�4��4��~1�H�5����1��8����[���f.��1�����u������u�������u�������u������x��� ��@D��ff.��1���t��uP��tU����f��u�����u������u������u������u����u� Ð��D�����ff.�f�H��(L�WdH�%(H�D$1�HcGM��E�A�M�Y�D����� ��)‰��
����M9�sTA�Q���tR��D�lj�A��)����A��I�A�D	�����?H�� I9�s
A�A����	�H�����H!�H	��1҅�urD�ǁ��?H�� H	�H�|$�D$H�D$dH3%(u_H��(�f.��D��1�)�����?H�� M9�sA�Q���HA��A	�L	���D�lj�1�����?H�� �[�����ff.��ND�WA9���AWL�F1�AVAUATU�i�Lc�SH�_I��O�$0I�A�$E�D�HD��A��D$�E9���A��M��I��E1�1��I��A�S�E�
I��I��L�I�Չ�H�I�� I)�L��E�J�H�� H�у�M9�s�E�E���	I�V�H9�s$E�V�E��t�DD�
E��uH����H9�r�o�NA��A9���Hc�H��H�L��f�H9�sH��H���291t�rp��H�މD$�1��I��A�H��H��H�H)�H�ЉV�H�� ��M9�s�Hc�H���2��u*H�B�H9�v�J���t����uH����H9�r�o�D$�[]A\A]A^A_�@�w����D$�[]A\A]A^A_�1��DD�W�NA9��&�����fDU��SH����~;�����C�H�H�<�'H�����h�XH�@H��[]��H��4Hc�H��H��tH�0H�@H�4�H��[]�����H�Z�4��C�H�H��'H���3H��H)�H��H��H��H��H�H�� �M���H��H�H�
Z�3�Y���ff.�f�UH���SH��H��(�D$dH�%(H�D$1����D$I��fH~�fH~�f~D$H�� ������։ρ���EωL$����H�|$������u_�T$A�Q�T$E1���A�QA��A��E�A����������U�5)‰H�\$dH3%(L����H��([]�D�T$� )�����L$	�A�I����T$�DH�|$�~����T$A�A�A�� A�Q���w���-2�EA�@�H�A�|����A��A)�D��c������AWI��AVAUATI��USH��LcoLcvE9�|D��I��Mc�I��Lc�C�.1�A9\$@��A|$�w���Hc�L�XI�,�L��I9�s@�H��H9�w�I�I��N�,�K�4�L9�r�^f.�I��I9�vKH��D�W�E��t�L��M��E1ɐI��A�P�D�1H��I��L�L�I�щQ�I�� L9�w�D�	I��I9�w���~�u�H�U���t�H���
��u��u�XH��[]A\A]A^A_��AVI��AUI��ATUH�nSHcFH�_D�gA)���H��H�H��
@H9��H��H���89:t���A�}�?���IcU1�D�`H�pI��L��IcVH�|��
�L��H���S�H��L�VH)ʋM�H)�H��A��A�R�H�� ��H9�w�I9�v;L��H��@H���V�H��H)�H��A�ӉW�H�� ��I9�w�I�q�H)�H��L�E��uf�H���A����t�D�@[]A\A]A^�DA��,���H��H��A�H��L��M��I�������1��I���H�@[]A\A]A^��AVA��AUA��A��ATUH��SH��D�e�E�E�A�\$9�~
����9����H�xE��~&A�v�H��H�L�DH���B�H9�u�H�|�HcUH�uL��A��tqA� E1�E)�D�D��H��H����D��D	‰W�D�F�A��I9�w�E��D�DE�HcUD�`��5H�
��4H�4�H�,�H�uH��[]A\A]A^�D�I9�vȥI9�w��f�H��H�D$��H�D$H��[]A\A]A^ÐAUHc�1�ATUHc�SH��H��D�g��D�H��H�H�ʼnD�H��H�� A9��H��tD9c~&Icĉl�A�D$�CH��H��[]A\A]�f��C�x���I��HcCH��H��u/HcC��5H���4H��H��Ic�H�L��l�A�D$�C�I�}H�s�U���H��L���(���m���AU��I��ATUS��H��������M��tbH�-G�4H����M��L�-T�4�f��t@H�EH��tKH���t�H��L������M��tKIcT$��qI�L��M�d�I�$I��u�H��L��[]A\A]�fDH��H������H�EH��I�����H�ffH��4�1��R���I���D���f.�L��H�D$�3��H�D$I���F���fD��&���H��H�qH�EH�-N�4H�E�������H��tS��A�<wGL�7I��1��f�A�	D�A�A��w"��0L��I��Hc�L	�M9�u�Hc�H�2ÐI)�Ic�H�2�1�1�H�2�ff.���AWAVAUI��ATUSH��H�T$H��ty�7I��@��tkN�$/I��1�H�-nP3�#@H)�H��I����H	�M9�t:A�7@��t
H���y��H��u�L��L)�Lc�H�D$L�(H��H��[]A\A]A^A_ÐMc���E1�1���@��A�H��txATL�%OU3Lc�E1�U��H��Sf.�H�Z�C�A�A�����t19�~-L��I��pEM��I��L�I��sA�H��H��x�H��u�H)�[L��]H�A\�@E1�H�L���A�벐��AUATUSH��(dH�%(H�D$1����	��$��H��I��H��I����t�� tX�K���vP��+t[��-���I��1ۀ�0uWI�l$������A�D$���<X��I����4�H�����u�I����HL�`���0t��Ҹ
D�L��H�L$H�����L�D$�۱�H�T$I�H��IE�M��tI�m�T$��u[H��H�ڃ��HD�H�t$dH34%(uxH��([]A\A]��k���1��ӐL�`�H������k���fDI���l����;���"H������@I���u��C������2��������UH��SH���N��H�XH���b��H��H��H����H��[]�ff.�f���U1�1�1�SH��(H�
IO3dH�%(H�D$1��D��1�1�H�D$����H��H�D$H�X H��tDH���m��H��H�����H�D$H�D$H�D$H�@ H��H�T$dH3%(uH��([]�H�=�`�u�������H��txATUH��S�H���u
�`@H����ƒ� t��	��v�,t��t<I��I��A�$��t�ƒ� t
��	��v��,u�L��H��H)���A�$L���u�[]A\��ff.���AWAVAUATUSH��I��H��H�t$dH�%(H��$�1��X��H�
A`H�D$(�A�E<-�A��Hc�H�>��@A�E�D$������I��1�<0���M��ʃ�/����9�1�E1�E1��.DC��D�tQ�I��A�A���у�/�X��9��A��~�A��ԍ��DA���f.��D$f�H�D$H��tH��D$��tfW�H��$�dH3%(�JH�Ę[]A\A]A^A_�fDA�E�D$������f�H�D$H��t�H��I��A�E<-������D$1�<0���A�E�ƒ�߀�X��E�eE��t�H�-�J3A��H�����H��t�I��A��0��f��O�A������$�D$ �@A��H���t���T$H����H)�f��I��E�u��A���H*��Y��Y}a�X$�$�T$E��u��$D��L���x������D$4E��1Ƀ�߃�Eu<D��	�	�����A�o@��+��@��-��I�WE1��}Ѓ�	��L��1�E����D��f��+\$4�H*�E�ҹ�\$0ED�A��AN�f�$A��	~$�Q�H�5�^f��Hc��H*��Y��X��$A�����\$0����	�|$0���%D)�;D$0�R�H�f^�$L��D)�H��Y‹D$0A�D�H��Y��k����H���*��0t�}σ���D�Z��0H�zA�[Ѓ�	w;D�L�H��C�lK�D�E�K�A��	v�H��H)�H�����N��E����L����I�����1�E1�E1�f���.�G���A�W�zЃ�	��M�WE�����D$4E��A��<�)A�RM�z�zЃ�	�	E��E������A�EI��<0t��������f��D$0D�)ȉD$������tH�H��\�<$�Y<��<$�d$�D$��=4���D$�������$1�1�H�
t\@�t
Hc��Y������u�fH~�@��HD$Hc���H�$H�$H�؉�H�� -PH�� H	�H�$�Y$fH~�f�$H�� ��%�=�|��
=�|�cH���������D$H�$�4$�t$ �'@	������L��f�� ���@�<$�|$ A�L$�9��81�������)ƒ�~�f����9��D�T$8�
�D�T$8H��D�p�@A��	��M�u	A�B�L�t$8M�l
H�D$@H��D��I��A�V��
H�ǃ�0��M9�u�A��H�|$@H��H�D$8L�l8E9�}9E�D$�H��E)�O�t�I��A�U��
H�ǃ�0�W�M9�u�H��D�d$4�|$01�L�|$`A)�DI�IljD$8H�CH�D$hH�D$|H�D$XH�D$xD�d$4H�D$P�{��I��HcCH��H���=	H�t$XH�|$P�D$ ����H�����D�l$xI��H�I�GE�����D$4E�t�D$8�L$|D+l$B�t)�A��3�����|	A�6A)�D$C�.A�D9�D��N�D9�AOƅ�~)�A)�A)Ƌt$4�����~
H�����H��D�T$0E��~�t$8L����I��E��~L��D�����I��E��~L��D�����I��H��L���[�IcW�xD�PI���@9��FH��H�pH�I�L��H9��?H��H���9t��M��L�|$`E����H�������H�T$ �uH�$H�� A�Ё������XE�ME��u	���FL��D�D$ ��IcVD�D$ �HI��)х���H��H�pH�I�L�
@H9���H��H���9t����|$����D����������p�
fDH�P9�<$H�D$�~D$�Y�fH~�f�<$H��uH�D$(�"H��t HcU����
H�
��4H�4�H�,�H�uM��t!IcT$����
H�
��4H�4�L�$�I�4$IcV����
H�
��4H�4�L�4�I�6HcS���x
H�
b�4H�4�H��H�3IcU���D
H�
C�4H�4�L�,�I�u�$L�����f.�A�I�WA�o�.���@���$�\$ �M���f�I��E�uA��0t�E����A��H�����H������f��_�A������$�T$A��.��E�uE���_���E��H���D$ D���i���D$ H���;���I��E���T$��
D���D$ �@E����
A��H���T$����T$H����
H)�f��E�uI�����H*��Y��Y*X�X$f.T$ �$z�u��|$ M���|$�A��H�����H���=E�wI��M��E��u��D$�u���@M�׃�0�B	�D)�@B�?I��A���0t�zσ�����0A���
�L$4M��M�������L��1�I���q����|$0��S���D�d$4H�gU�$L��A)�Ic��^��{�D$4)��D)�ƒ�tHc�H�
3U�$�^��$���D$�'����D$�����ƒ��������$�|$1�1�H�5cT@��t
Hc��Y��u��fH~�HD$H�$���sH�$�k�T$H�� �����)��~����	��4�
�7H��4H�$�$f�f.��\$ �o����i���H�D$(�"�>���fD���H��$�L��D�T$H�m�H��$�L��fI~��D$@�R���$�A�UA+WfH~�D�T$HD��$����L$@D��)�х���L���D��H�� �H�� H	�H�D$@�~L$@�^��$f/��
E�����
�H��?H�4$H�� ����������t$��t_���wW�;Uf/�r1�,��
����t��f���H*�f(�E��ufWa�fH~�H�։�H�� ���)�H�� H	��l$ H�$�$fH~�H�� �����@H�� H�$�$�Y��X�fH~�f�$H�� H���9�u�L$���4H��t HcU���rH�
;�4H�4�H�,�H�uM��t!IcT$����H�
�4H�4�L�$�I�4$IcW����H�
��4H�4�L�<�I�7IcU���]H�
��4H�4�L�,�I�u�$$�d$ �=���f.�L���L$@��H��H��I���v�H��L$@�IHcu���PH�=u�4L��H�,�L�MH�������D$8D�t$4D)��@�����Y
��f(�E��ufW��fH~����DH�t$hI�|$������@D)Ή�)�fH~��H�� �H�� H	�H�|$@�~D$@�t���@M��L�|$`E����H�$H�‰�H�� �с���������t9�\$ fH~�H�� �����@H��H�� H�$�<$�X��<$D�T$���D����w������PH���4$H�$H�� �$H	�H�4$H�� �$�������H�� H�$�$�Y��X�fH~�f�$H�� �ց�������|��H��������H9T$ ��H�$�r���fDH�������H�T$ H����H���H���
4��P����L��������L������y�����P�<$H��H�� H	�H�<$����@H������L����������,�f��*��\�E����H�������H�$���;Qf/������M��L�|$`��@H���X�����I��
A�	���P�f/����Y
�f(�fW��V���DE��1��D$41���@��Pf/��u���f/
�P���b���E1�����L��f���H��H�D$H���H�D$H�L$@H���X�H�D$(L���"H��H�$�$�T�E1��D$4���E1�1�E1�1��D$4E1����6��
&��z���A���A��P�c�A�U�,)׉�����1�)ȃ��I����BЃ�	�7�A��1�E�����	w5��I���DB�A�UA�4�JЁ�/~܃�	wI��A�U��0��	v���A����L������q���L��L������$�]�H���y�����L���l���a���H���_������L��I������D$ ����HcT$0H��L�$L���Y����N����P�$�D$H�� H	�H�$�<$�|$ ��A�UI�����1�����D�¹������������H�� H	�H�$����H�������H�T$ ��H�$H�� I�����D$���D�\$�jE���$����h�����M��A��0�h���I��E�uA��A��0t�E���t�E���C����I��'����D$ E�uA���A��P�G�������D$ �6��$���|$ fH~�H�� �����@H��H�� H�$�\<$f.=Ȝf�<$����������H�$��H�D$(M��L�|$`�"H��H�$��D�D$�����E��t!�с�����w��A�kA)�D����9����������H��H�� H�$�(���M��L�|$`�l����D$��H�$�����H�������!�H!�H	�H�$�%����yM����M���|$4A�C��1�D�tU���� ����!�H�� H�$�������M������������L$4D�ڃ�~/E�L��G�4���E�A9�t��~���������A�T�D�Z���w���1�A���y����G�n�ff.�f���AWf(�AVAUATUSH���|$@�t$H�T$ L�D$(dH�%(H�D$x1�fH~�f�D$H�� �Å�����f(�%�=��:f�f.���H�|$tf(�H�t$p�L$0�T$�s�����T$�L$0��I����fH~�fH~Ћt$p�D$`H�� ������H���?H�� H	�f��H�D$�D$f��*��Y
�J�\�J�Y�J�X�J�X�f/��,��j�V���)�����Hc�L��H�A�f/������D$H�D$0�������u�l$�E1��D$@��	��A���~
��E1�D$@�|$@�����D$@�D$8���������D$D$��D$h�����D$DO�����Hc����xD�h���H�D$ ��0�����f�H�\$(I��H��tH�@H�H�\$xdH3%(L���lH�Ĉ[]A\A]A^A_Á��fH~��H�؉�H�� H	‰�%�H�T$�T$=�����H�D$ fH~��'H�������H���C�	�)��nH�VFI���I�D�
H��H�����u�H�\$(H���5����3���@�D$H�D$0���K���D�g1�A)�D�d$0���=����D�|$@�D$8�
�D$�����D$h�x���D$DHc��ÉL$P�T$X�n��D �L$PI����
�D$�T$X����
�É�H�F������������f(��^H1�L��E��t#f.�@��tHc׃��AY҃��u��^�D�\$HE��t�
	�f/���f��D�L$D�*��Y��X
�GfH~�fH~�H�� ����@H�� H	�E���H�t$�|$DH�D$�G�f��M�gH�L�7E�\$�A$��,�D�D$8�*ȃ�0�\�E���}�
>�A��^��\�f/�wz�-U�f(��\�f/���
�����G��%�I�|�f(��\�f/���
I9����Y�f��I���Y��,��*؃�0A�D$��\�f/�v��F�D$���D$@��L$�T$8�|��L$I�NjD$t��x�|$�T$8��������D$lA��\$h�\$D�D$�T$`3��u	�6+D$p�\$0���L$XÉ\$P�9���D$8�L$XH��H�H�C�t$0��~��~9Ή�O�)D$P)�)��t$0E��~`�D$8�L$XD������	H�����L��H��H�����M��L$X�rIcu����H�=�4L��L�,�M�EI�����L$X�����L$XI��H�I�F�ME��tH�������H�D$�U
�ȃ���� )ƃ�� �)�t$Pt$0�t$P��~L��L$P�����L$PI�Ņ�~
L��������I�ƋD$H����IcFA9E�hH��I�uH�I�T�DH9��OH��H���:98t��;�D$L��1Ҿ
D�`��|��I�ŋD$8�����D$h�����D$DM���l$D�@L��1Ҿ
�A��I��L��L��I���o����0A�D$�A�u��uA�}�|D��D)�9�|�A��1�L��D�\$@����I��IcFA�U)…��>
H��I�MD�\$@H�I�T�f�H9���H��H���290t�A�T$��N
�
��t$p�|$tfH~����2�� ��� )�f~���f���D$`�H*�fH~�fH~�H�� �����H�� H	�����A��)l$0�l$A��1���������aH�@I���N�f��
H��H�����u�H�\$(H���������@�D$H�D$0����������@)�������	��)����D$8�>����f���*�f.�z��������z�������fDD�\$DE����D�L$8�D$E�������D$0���+H�\$H����	�D$DL�|$0L�t$��L�|$PM�dL�d$8L�d$Hf�H�t$L���#��E�u��D�x0HcCA)�u:H��I�MH�H�T�f�H9�sH��H���290t�E�A��H�|$L������D�@E��uEHcPA�u)�u9H��I�}H�H�L�
�H9�sH��H��D�	D9
t����HcP���yH�=��4H��H��H��|$@���D$����	���	E��x{D	�tvH�D$0H�h����D�}�H;l$8��L��1Ҿ
����1Ҿ
H��I��L9������L��1Ҿ
H�����I��H�l$0����E��y�H�D$0A�}E��L�d$HL�t$L�|$PL�`��uA�}~{��~wL��D�\$@���D�\$@I��IcFA�U)…���	H��I�MH�I�T�f.�H9���	H��H���:98t�rA��9�;A��A��1H�D$0H��H�\$HD������H��I������H�ljt$D���t$D���f���*��Y��X
w?fH~�fH~�H�� ����@H�� H	�f.��\P?H�D$�L$f/�wzfW
?�f/����D$lf�T$�|$�D$t�8���0HcD$�L$H��<�…����D$D�������Y
�>f/L$��E1�1ۃD$M�g1�A�1M��tIcF����H��4H��L�4�I�H��t`H��t%H9�t HcE����H���4H��H�,�H�MHcC���1H���4H��H��H��D�D$M���؉D$M��t IcE����H���4H��L�,�I�MH�D$ �\$A�$�H�D$(H����L� ��D�|$@�\$8��	�A�ԅ��n����D$01ۉD$P�����D$l�|����D$P�D$0�z���@�t$���'��H�#;�������Y�f(���E1��1�L��:f�@��tHc׃�A���AY҃��u�E������f(�����f�L��������E��L$XI����1�A�F�L$X��H�A�|����� �L$X)Ɖ�����D$@�����n���D�T$DE��uW1�L������A�UI��Hc@)…��{H��I�MH�I�T�H9�sH��H���:98t�������D$M��1�؉D$���f(¸��f�L���(������L������L$XI�����@���D$h�D$D�D$�D��Y�f�f.�����L��fD��
��f(��X�f/�w�\�f/��}�D$l��]����^A�D$��\$�L9���B�I��I�T$�<9t���%���f(¸�D�H�������H�D$�<���H�D$H�� ���(����D$P�����������@H�߉�����H������H�D$H�� ��u����HcT$f(�f��M�gH�q8��H�Ӄ��^��\$�,�f��*���0A��Y��\�f.��)�D$D�����D$D�%���I�L�
@I9����Y�f�I��f(��^��,�f��*��P0A�T$��Y��\�f.�z���빐I��A�|$�0I�D$�t��@�A����A����G��%tL��M�T�f.�A�D$�L��M9������Y�f��f��I���,��*ȃ�0�\�f.�z������f�A�T$��GfDI9����P�I��I�D$���9t�L$l��t	�������������A�T$�I��I�D$���0t����I�������^�\$���H��� �����L������y���D�T$DE���e����\$h��������%l��f�ɋ|$�*��Yčw��Y��X
�8fH~�fH~�H�� ����@H�� H	�����A�1�D$����1������{���H��HcCH��H�����H���D��H�D$H�<���A�0L��A�D$��D$���E��L�d$HL�t$L�|$PA��9��H�D$0A��I��H��H�\$HD��R���L��E��H��L�t$L�d$8L�|$PH�����H�������x���A��A�T$��N����z���H��1Ҿ
���H�ËD$h����D$D�k���L��H�D$0I��9H��H�\$H�9�����X�f/����A�I�������D$@����t\�D$h���H�|$0E����E��L��L�d$HL�t$L�|$PH�oA��9t���1E��I��H��DO�H��D��V����A������@�D$hD�d$�D$D�6���H�}H�s����k���L��H�D$`����H�D$`�L$XI���6���f.�I���w����q�����i����A��(����D$@����t��D$h������������A����������+��������A���T$f��D$I�Of(��^��,�f��*��P0A��Y��\�f.�{'�|$D�����I��������<)Ɖ��T���I���������@��AWI��AVAUM��ATLc�UH��SfH~�H��(dH�%(H�D$1�fH~�H�� �����f(�fT
jtf.
Zt��f.��gf.z��$H��H��4��uiH�\$�T$�YF5fH~�fH~�H��4-A�E��tH��A�|$Mc�Hc���H��A�T$�H�� ��
��B�4������.�-�A�E��u��A�A�譮����<H��A���
̓H�� ���	�H�� I	�L�L$�D$�X��\�fH~�fH~�H�� ���)�A��N�0A���1��H�HL9��1���H���������t=@�q�D��A����	�L9�u�E��xZI�A�$M��tM�eH�\$dH3%(�5H��([]A\A]A^A_�fD%���A���H�� L��H	��5���A��Lc�A�T$�Hcʀ<0t��DA�����	�w��nH�
�0�IH����1H��H��@�2@��u�M���S���I�U�J���A���.��������A���	��0f�M������H�PI�U���A������ڬ�aH�
0�NH���	fD�1H��H��@�2@��u��[���賸���H�������ff.���H������H��tH����f.���H�:����USH��H�H��tH��H�{H�u�SH�[H��u�H���[]����H�H� u �HH9�vH�@H�4�H��4u1���H��w�H��H�4�H��4t�H�JH�BH���ff.�@��H��H9�v"H�t�H��4tH�JH�BH���f.�1��ff.�f����(�fD���@�fD�����uH�1��ff.�f�ATUSH��dH�%(H�D$1�H�G�H��t_H�XH��tVH��I��H�5��4H��L������t$�EH�$H�L$dH3%(u/H��[]A\�H�5y�4L��H��讜��u
���H�$�蕶�DS����H�XH�H��t[�@�Ò�H�[�ff.�UH��SH��H�5 �4dH�%(H�D$1�H�GH��H��H�x�-���u1�H�L$dH3%(u4H��[]�H�<$H�5�2�{�H��t�H��H��H������t�H�$��޵�ff.�USH��H�5�2H���{{�H�5T�2H�xH���h{�H��t.H�xt'H�e3H�H���H9HtH�@H�@H��tH�+H��[]�fDSH��dH�%(H�D$1����H��t9H��H���f���H��t)H�@H��t H�X�o��H9�uH�$H�x 4u	�1�H�T$dH3%(uH��[����ff.�USH��H���r���H��t*H��H����H��H��tH�@H��tH�h��H9�t1�H��H��[]�����|�����}�����w�����������SH��H�?�0��H�[�ff.���SH��H����H�{H�C���H�{ H�C��H�{(H�C ���H�C([�f���H�GH9GtÐ����ff.���H�H�GH�BH�����f���SH��H��O|�H�{�F|�H�{ �=|�H�{([�3|���H���C��H�=�-H��1�肪�H������H��t�u�f��ff.�@��H��tH�?��t������SH�H�{�S H�[(H��u�&fDH�[H��tH�{H��t��t�H�[H��u�1�[�ff.����SH��H��耻�H�50H��H��1����ff.����SH���H��dH�%(H�D$1�H�4$H���C��1�H��H���f��H�D$dH3%(uH��[��;��ff.���SH���c��H��H�����1�[�@��SH���C��H��H�����1�[�@AUATUH��SH��8dH�%(H�D$(1�H�GH�t$H�\$H�5��4H��H�D$H�x詗��u%H�D$(dH3%(��H��8[]A\A]�fDH�|$H�5t�2L�l$�*w�H�T$L��H��I���Gx�H�|$H�t$ �x���H�D$ I�|$H�H�PH�QH�
H�@H�u�H��4H��L��H�D$H�EH�x�w��]�����ff.�f�U1�S��H��H��t�/��H�4��@��9�s+����)�H��H�H�L��H�B4H��H9�u�H��[]����UH��SH��H��H�r��t H�}�H9�v=H�;H���[]�fDH�1��uH�����tH���t
��H�@�����ƋC��t�*���H��H�E1�H�;H��[]��H���H�@H9�B���ff.�@AUI��ATI��USH��H��8dH�%(H�D$(1����H�@H�(H��tH�=U�4H�T$H��蘕��u$H�D$(dH3%(u>H��8[]A\A]�f�H�D$H�T$H��L�l$H�5����L�d$ H�D$�xy���A��SH��H��H��t+H�GH�xH��tH��H�5��Gy�H��H��[�fDH�|$�N��H�|$H���@AWM��AVM��AUI��ATI��UH��SH��H�|$H����H�mH��H��t*H��A�Յ�����u(H��H��[]A\A]A^A_�f�H��A�ԅ�����L��L���|�H�t$H��H���ș�H���@��UH���SH��H�=�(H���c|�H��H��H��蕙�H���
��ff.�f���ATI��UH��SH��芎��u[1�]A\��L��H��H�����H��胸�[1�]A\�ff.����UH��H�5a�2SH��dH�%(H�D$1�H�H�x�`s�H��4H�H�$H��t=��ZH��I��H��H�=s�4��y�H�EH�T$dH3%(u'H��[]��H�=�6���H��H���4��.��ff.���H�GH��u1��SH��H��������tH�SH�C H�BH�1�[�ff.�f���SH����+��H�{u�1�[�AUATI��USH��dH�%(H�D$1��>���H��u)1�H�T$dH3%(H����H��[]A\A]�D1�H��H�����H��t�H�(@����H�������H�U�у�����H�с� ��H�}��H�U�:��H�@H��tL�h�I��I9��Y���H�M�� H�}H��tH�}H��H�<$�ݯ���.���M���#���H�$H������I�$����fD���tH�U�{����H��肀��}��H�n3H�5b)H�81����D��UH��SH��H���k���uH��1�[]�fDH��H��H���1��ĵ�H��1�[]�ff.���H��H��tSH��ueH��1�H�=�(�,��u*H�����t"H��у���tH�р�H�xH�t��t>H���f�H��1�H�=�(�߷��DH��1�H�=��Ƿ��DH��H�D$蓳�H�D$�ff.��ATI��UH��SH��H��dH�%(H�D$1��
�H��tH�L$dH3%(uhH��[]A\���uH�����t
�����t�EH��H��A���fDH���0��H��3H��1�H;
t�H�{H�t$L���^����跩��UH��SH��8H�?dH�%(H�D$(1�H��H�|$�f.��H�G��u.H��H��H��u�H�D$H�EH�D$(dH3%(uH��8[]�H�C�O��H�{���4��@��H���GH��(�h����H���ff.���SH��H�?�q�H�CH9Ct[�@H�3H�=��4[�`����UH��SH��H��蛹��uH��1�[]�fDH�����H��H���%��H��1�[]�ff.��@��u"H�����tH��ƒ���t��u�fDH�����ff.�@UH��H��SH��H���+���H��tH�H��[]��H�#����H��H��[]�Ʒ�fDUH�WH��SH��H��H�?�؍��u#H�;H�WH�����wH�SH���،��CH��[]�H��3H�5�%H�81����f���ATI��UH��SH�����t�}u[1�]A\�f�H��蘳�L��H���ݾ�[1�]A\�fDUSH��H��H���_��H�=�!H���;u�H��H��H���m��H�����DAVAUATI��UH��SH��H��H�dH�%(H�D$1��Ѓ���tf��~*��%H�GH�xH��t(H��谌��tH�$�fD��t����f�H��H�L$dH3%(��H��[]A\A]A^�@�� u;D�oL�wH� H��t�H��L���G���t�H�$I9�v�I��H��4u��fDL�wA��i��H�@H�8�I��H�=��4H��L������c���H��L�4$�7��L��L��H�@H�8�Ջ���=���H�$A�H9��-���I�D�H��4HD�����覥�fDUH��AWAVAUATSH��H��dH�%(H�E�1��H��;$I����L�hH�E�I���wgH�@H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�t$L�}�I���A�$M��tP�?f.�H��������I9���I�t$L�}�H��L��H��H���u��$I��I�~L��H���ܺ�L��1�L���o��L��H���T��H�M�dH3%(H��u7H�e�[A\A]A^A_]�H��1�H���3��H����fD�L���ˉ��F��fD���>t1��@SH���g��H��H��謻�1�[��UH��AWAVAUATSH��H��dH�%(H�E�1��?$�识�H�E�L�hI��I���wgH�@H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�t$L�}�I���A�$M��tP�?f.�H��������I9��}I�t$L�}�H��L��H��H���t��$I��I�~L��H���L��L��L�����L��H���Ư�H�M�dH3%(H��u1H�e�[A\A]A^A_]�D�ˮ�H����fD�L���C��辢�ff.���@��u	H�����u
1��f.�H��H���$��1�H���ff.�f�UH��SH��H���H�W��u	H�����u8H�{�G
H�C�uH�����uH��[]�H��H��H��[]鿏��H��H��譏��ff.���UH��H��SH��H��H��(H�RdH�%(H�L$1�H���D$H�$����H�CH�t$�H9�r3�����֋T$��uH�$��H�RH9�B�H����H�t$H�CH�l�@��u	H�����u1�H�L$dH3%(uH��([]�f�H�;H��������>��ff.�UH��SH���br�H�5��H��H�����H��H���~��u+H�����t"H��ƒ���tH�€�H�{H�t��tH��H��[]�fDH���ة���fD��H��1��ѭ��H�r�4��|�H�=�H�2�4�M��
H�=
mH�:�4�5��H�=�lH��4���H��4H��Ð��H��dH�%(H�D$1�H�t$���H�T$dH3%(uH������@��H��H���dH�%(H�D$1�H�t$�w���H��tH���	q�H�L$dH3%(uH���诟�ff.�@���W������H��H���dH�%(H�D$1�H�t$����H�L$dH3%(uH����M��ff.�f���H����~�H��H���'���AWAVAUATUSH��(H�_H�o0L�o D�w8H�|$H�SH��dH�%(H�D$1�L�bH�T$L���������L�d$I�|$4��H��脧�E�4$H��H�3H9���H���5k�H��H�=3H��1����I�|$H��t+A�t$��t"H� ��H��H��H�"1��ۚ��c�D��L��H��L������H�D$dH3%(�H��([]A\A]A^A_�f��Kc���l�H��L��I��H���{���D��L��H��L���j�����H�T$H��H�����H��t3�b�H�\$L�k H�{<�H�C(�f���H��3����H��H����E�4$M�l$A��u	I�����u*H�D$H�p(I�t$@��u	H�����u�@<A�D$����L��H���Њ���H���Ɗ�H�D$�����f.���AVH�5��2AUATI��USH�H�x�b�L9`��I�D$������H�XL�hH�+I9���E1��@H��H�{ 4tH�{�%�H���}���H�EH��I9�u�E��tXI�L$I��H�H�A�H�Z�I9�t?H�p H�HH�xH�@H�rH�H�H H�H舃�H�SH�KH��H�Z�I9�u�[1�]A\A]A^�f�H�@H�@I�D$�����u���H�XL�hA�H�+L9��2����V���f�AVAUATI��UH��SH��I��H��dH�%(H�D$1�H�$�t�H������|I��H��A����@��u
H�������H9�tTH���h�H��M��uH�����t�������H����g�L��H���}��H��H��H�=(H��1��F��A�E����tRH�D$dH3%(��H��[]A\A]A^�f�H������Q���������C���H�C�:���@I�EH��1�H�x�a��@�U�����"���H;E�q���H�m����fDH�[�/����z��f.���H��dH�%(H�D$1��z�H�t$H�7�H�����H��t9H� t H�@H�L$dH3%(u H����H����f.�1��������@��t&@��u@������tVH��t`@��tjH��1��H�����u�H��t!H��u�H�]3H�8��H��2H�8���H��3H�8�@H��2H�8�@H�Q�2H�8�@H��2H�8�@��UH��H��SH��H�=�4dH�%(H�D$1�H���1�����t%H�$H�L$dH3%(H��u{H��[]����ތ�0H���ь�H���2H�kH��H�H�=��4H�PH���2H�H�PH���2H�@H�P H��H�@(� ����r���膘�fD��SH��H���p��H��2H�H�PH��2H�XH�PH��2H�P [�fD��SH��H���0��H�H�X[����H�=�4H��t1�H�5��颪��f��ff.�@��ATI��UH��SH��H�� dH�%(H�D$1��H��tH�H�D$��H��謮�H�H�XM��t@L�`H��tGH���2H�hH�P H�D$H�D$H�D$H�D$dH3%(u"H�� []A\�L�%1�2L�`H��u�H�-q�2��B��f���1�1��ӱ���H�
�21�龱�ff.���H��tH��tH��H��1�镱�DH�5Y�2H��u�H���2H��H��1��p����AUATI��US��H��(dH�%(H�D$1����H�D$�������I�$H�$�����H���x�H��H����H�=6�4H�T$H���a������yL�d$I�$H�X(H���H��tH;ku
�}DH9ktrH�[H��u�H�L$dH3%(H��� H��([]A\A]�f.�I�l$���Y���H�|$t
H�|$耢����菁���P���tkH�t$�H�l$�g��H���s�����C���~�I�$H�D$�H�$��uH������H�|$�������I�l$��~��_����H�x(�w��D蛔�H��H��t!L�kH�sH��萬��L��M��u�I�$�H������H�x(�*������Д�H��蘝�H�5�H��H��1��g�H�<$�K2��H�<$H�5�H��1��g�fD��AUATUH��S��H��dH�%(H�D$1��خ�H�$�������L�m����L�e����I����L���t��H����� H����H�H�J(L�`�H�HH�
c�H�HH�B(�H�t$dH34%(��H��[]A\A]��苙��~^H�$L�m��u2H��t
H���]��D�S~�I���U���H����Ap���L�e��uH���0���H������#���H�<$tH���
��������4��@��H�H�H�p�`ff.���UH��SH��(H�H�wH��dH�%(H�D$1�H�S�SH�C(H��t�S��t"H�L$dH3%(H��u:H��([]���CH��H��H�l�H�=E��H�$H�l$�V��耒���SH���c�H���k��H��[H���O��ff.�@��SH����H��tH���6��[H���]��DH��1�H�=l
�7��[���H�H�
"�2�H9H�HD��ff.�@��H�H�@�@��H�H�@�@��H�H�x(�����AVAUATUSH��dH�%(H�D$1����I���k�H�=T�4L��H�5B��H���J���H��u$H�L$dH3%(L����H��[]A\A]A^�H���8r���D$$A�Ņ�~ȻL�t$�+��H�=��1��P��H����o�H��L��荨��A9�|�H����r����t�	¾�C0L���D$�~�H�����H���輐�ff.����AUATUSH��H��H��dH�%(H�D$1�臧�H�=X�4H��H��I��肞����t~L�$$I�EI�,$H9�t�U�����mt,�I�$H�D$dH3%(uqH��[]A\A]�f.�H�}(H��t�H�_���H��H��u�H�����I�E륐��փ�H�=��4H��H�XH��I���]���I�E�x���迏�H�`�2H�5�
H�81��'�����H�E�4�@��UH��SH��H�=,�4dH�%(H�D$1�H���du��u H�D$dH3%(u6H��[]�f�H�,$�E��t�1��؃�H�|��ѓ�;]r�����D��SH��H�� dH�%(H�D$1�H�|$H�=��4H�T$H�t$��U��uH�D$dH3%(u#H�� [��H�T$H�=\�4H���D^���蝎�ff.�f���H��(dH�%(H�D$1�H�|$H�=�4H�T$H�t$�MU��uH�D$dH3%(uH��(�@H�|$�F�����/��ff.�@��H��H��H�=��4dH�%(H�D$1�H���s��u1�H�L$dH3%(uH���H�$�H�����Í���@��uH�����t
���H���ff.����SH��@��u"H�����t�4�o�H��4t	[���+f�H�����u
�[�H�����H�=�H��1��O�����SH����uGH�����t>H��ƒ���t1��t,�H���/��uH�����t�������v
fDH�C[�f.���@��uH�����t
�����f.���AUATUSH��H��(dH�%(H�D$1���H�t$��H�������H��Ѓ�����������teH����������H�CH�xH��tH�T$H�t$�R���5D�H�L$dH3%(�!H��([]A\A]�@�� u[�kL�cH�{ H��t�H�t$H�T$�q��t�H�D$H9�v�I��H�H�4H��4u���H������H��L�c�该�H�@H�8�fD���O���L�d$H�=�4H��L���0q���0���H��L�l$�k��L��H��H�@H�8�	q���	���H�D$A�UH9������I�T�H�BH�B4H��4��������H�D$����蹊�f���H����ATUS�� tEH�oA��H����tE�H���B��H�#����H��M��u9H�K[]A\�f.��GH�oH��L�$���u�H�����H��M��t�L��H��H���L��H��H�K[]A\��ff.�@��UH��SH��8dH�%(H�D$(1���uFH��H�����t:H��Ѓ�������~M��HH�GH�xH��t1��o����@1�H�L$(dH3%(H���H��8[]����tӀ�t�H��H�t$詣�H�@H�8H��t�H�t$H�T$�>o��t�H�=�4H�T$ H���&o��t�H�D$ H�T$�H9��w���H�|�4�HE��c���f��� u[H� H���F���H�T$ ��n���4���H�D$ H� uN�SH9�����H�[H�<�4���������f�H�t$�֢�H�t$H�@H�8��H������H����[��ff.���AVAUATUSH��H��0dH�%(H�D$(1���uxH�����toH��ƒ���tb��u]I��H��A��uH�����tH��у���t��uF���mDH�D$(dH3%(��H��0[]A\A]A^��H���H���L�l$H�=D�4L���m��t�L�t$A�������I�FI�L�@1�H�84��H��I�H9�u�M����H�=�4H�T$H���6m����A�1�H�4�I��艍�D� E��t!A�L$�H�PH�L�H�4H��H9�u�H�D$ H��ƒ���t��H��H���8��L��H��H�\$H�5��H�D$����H�T$ H�=P�4H���8V����H��ƒ�����������f.�H���h^�H��ƒ���������H��t���H�T$�
H�T$ ���h�����H�BH�T�@H�4H��H9�u��C������ff.���SH��0dH�%(H�D$(1�@��u9H��H�����t-H��ȃ���tP��~4��/H�GH�xH��t
��O�DH�D$(dH3%(uxH��0[�f���t��t�H�������@�� u3H� H��t�H�t$H�5N��H�T$ H�T$H�\$�zO���H�T$H�4$肟�H�4$H�T$H�@H�8����ff.���UH��SH��dH�%(H�D$1���uNH��H�����tBH��Ѓ���tU��~!��H�GH�@H��tH�h�f���t��uffD1�H�t$dH34%(H����H��[]À� ��H� tЋSH��t�H�[1�f�H�<�4tH��H��H9�r��f.�H�=�4H��H���.j��t�H�$�
��t���H�BH�L�@1�H�84��H��H�H9�u��X���fD�;��H�@H�8�=���H� �`���H����^���轃�ff.�f���UH��SH�����H��H�5���H��H��詑�H��H��[]�ff.�@��UA�2L���SH��H��8H�
?���H���2H�t$H�t$dH�%(H�D$(1��9�����`H������SH�H�ʼnЃ����?���6H������th��������H�CH�l$H�xH����H�T$H�t$�I����H�D$H�L$(dH3%(�aH��8[]�f.��� ��H�{ H��txH�T$ H���ah��tgH�D$ H� ���SH9�vMH�SH��H�H��4t<H�4�f���t%H���c��H�@H�8H��tH�T$H���g��uvH�l$�"H�=���P�H��H��H���2m�H���h�f.�H���X��H����H�@H�8�)���@H��w�H�S�J���f�H�=)�4H�T$ H���lg���n���H�D$ H�T$�H9��Y���H��H�BH��4�G���H�B4����+��ff.���S���
H��H�t$L�D$H��H�=Y�4�dM�H��茔H��H��[���H�]�2ATI��UH��SH�H�����H��t'�&H�=����N�L��H��H���k�H���pg�H��tH���3`�H���2H;u'�H�=��N�L��H��H���k�H���0g�!H�=l���f���UH��SH��H������H��t&H��H��tH�@ H�E�H��t�V8�H��[]�H��1�[]�������u�@U�H��SH��H����E��t>H��2H��H9t7肈�H��H���GL�H��H��H�=�H��[1�]�
��DH��[]Ð�K��H��H�=�H��[1�]���@��SH��H��H��t/H�GH�xH��tH��H�5������H��H��[�f.�H�|$�f[�H�|$H���ff.����UH��H��SH��H���H�A�2H�H9���H9��„�uH��H����\�H�[H��u�H��[]���H��t?USH��H��H��F�H��H�5K��H��H���H�H���L�H��H��[]�fD�F���USH����wv��t	H�����tH��1��J��H��[H��]��[�@H�BH�XH��t3H������H���+F�H��H�5q��H��H���֏��H��H��[]�@H��1�[]�E�1��i�ff.�@��AWI��AVAUATI��USH��dH�%(H�D$1�H�GH�xH��tH���c����L��1��Q�H��H����I��I���H�CH�xH��tL��L���@c��tI��H��uH�ݐH�[H��u�M��t_H��tL9�tL��L��H���*�H�L$dH3%(H�$ueH��[]A\A]A^A_��L����H��H��tL���c���M��u�L����)H�=��H����J�H��L��H���g�H���qc��|�ff.����H��twUH��SH��H��H�GH�xH��t1��Wb��uCH���+�H��H��t'H�CH�xH��t1�H���)b��uH�[H��u�H��1�[]�H���[]�@1��ff.�f���ATI��H��UH��S�ʇ�H��H����f��tH��L��[]A\�LZ�H��L���q�����USH�����H�Ӆ�t
H���������tT1�f�H��H���5��H�[H��H��u�H����H�}�wC�H��H�5=��H��H���rE�H���JI�H��H��[]�H�����t�H��ƒ���t���t��H���H���|���H������p���H��������^���H��1����H��H����H���E���D1�H���v��H��H���J���H��1�[]�B�1��qf���UA�L���SH��H��8H�
?���H���2H�t$H�t$dH�%(H�D$(1��Y��H�D$ H��������H�����tyH��H��ƒ���ti��udH�CH�xH��tH�T$H�t$ ��@��ulH��H���v�H��tDH�����H�=e�H����G�H��H��H���e�H���`�f�H���Hw��H�l$�(H�=��DH�L$(dH3%(H�D$uH��8[]��gy����ATI��USH���-��H��H���\�H��H��H�����H��t[L��]H��A\�`����Q�H�����u[�]A\��H��H�=��1��p���ff.�f���UH��SH��H��H�GH�x�cH��u	H�����u
H��[]�fDH��H��D$�9f�D$H��[]�ff.�AWAVAUATI��UH��SH��H��8dH�%(H�D$(1����������~G��BL�oI�}��H��L��H�����H�D$(dH3%(�tH��8[]A\A]A^A_�f�H��L�l$�D$ �[���L��L��H�D$����H�=��4L��H��H�7���b��H�D$H�T$H�l�@��u�H������{���H��H���5e��k����D$ ��L��H�|$H�D$���H�I��A�� ub�SH�D$L�kI��H9�w(H��wb�� H�C4H�H�C4H�C 4L�kI�l�@����H���������e���DH�D$L�kH��v˺A���A��A��A�4�D$ I����uH�D$H�@H9�sA��H��H�T$M��u_L�k����H���W��H��H����H�CE��~WA�V��@I��K�D�J��I�D$L9�u��5�R�I�E����f�H�����H�T$H��H����H�#���H�KE9�v.D��A��C�4>H��H�T2H���H�4H��H9�u�H�D$D�{H�C H�D$H� �����L�k����L����M�H��H�C�f.�L��H���Ջ�H���g����u�H�
B�H�����H�=6��>�f���S@��u5H�����t,H��H��Ѓ���t��uH�����H��[�f.���r�ff.���ATI��UH��SH��H��4dH�%(H�D$1�H�P�2H90tcH��H����H�t$�w��L��H������T$��t,H��H��H���:�H�D$dH3%(u(H��[]A\�DH�Q4���H���d���yt�f���UH��SH��H��H���g�u*H�����t"H��у���tH�р�H�xH�t��tH��H��H��H��[]��w�fDH��H�D$�#}�H�D$��ff.����UH��SH��H��H�����H��H��H��H��[]�$9�@���7����USH��H�_H�t$H�{H�kt6H�T$H�5R~4�u��H��tH�T$H�5�H���L���H��[]�DH�<$�O�H�<$H�C�ff.�f���AVAUI��ATUSH��`dH�%(H�D$X1�H�GL�`H����H��H�����M����f�H�|$)D$ )D$0)D$@)D$H�\$ H�l$0L�l$@���L�%�2I�<$t @��uH�����t�E������v{H�D$XdH3%(�VH��`[]A\A]A^��1����I��H�CL�p�7���JA�L��L��I��H���ɀ��1�H��H��L������^���@H�t$H�����I��H��t�L$���f���I9$tXH��H�t$軺��H��H���F����T$��uVI���4���L����L�H��H�����H�5r|4H��H���7��
���f�L���L�H��H����������D$������L���|L�H��H���1��H��H��������H���z�H�5�H��H�@�2H�81��y��)q�f���AUI��H��ATI��UH��SH����|�H��H���vQ���h��H����M�H��H��H��L��[]A\A]�6�ff.���H��2H��H��H�8闇����ATI��UH��SH��H�� dH�%(H�D$1��P��t"H�[��uH�����t�������v#1�H�L$dH3%(ulH�� []A\�DH�t$H��M�$$����D$��u�H���K�L��H������H��H���I���H�CH�xH��t�H��z4H�t$1�H�D$��6����o�ff.�f���AWAVI��AUI��ATUH��SH��H�GH�T$H�xH��t1��U����L��E1�L���V�I��H��t^L��I�GH�xH��t1�H���QU��t
L��M��uM��f�M�M��u�H��tbI��M��tI9�tH��H��L���7���H�����M�eI�|$tLH�T$H��H��H��[]A\A]A^A_�΃�L��M��u�fDL���L����I��H��t�M���B����J�I�D$�@��AUI��ATI��H��UH��SH���qz�H��H���Y��tH��L��H��L��[]A\A]��\�H��L�����ff.�@���f.���UH��SH��H�FH�x��<�H��H�5\��H��H���R�H�EH�XH��[]�f���H��dH�%(H�D$1�H�GH�xH��tH����{����tH�$�f�1�H�L$dH3%(uH����m�@��AWAVAUATI��H��UH��SH��H��dH�%(H�D$1���M�������mH������`H��ƒ����O�� �uH�{�����HH��L���*Z�H��tH�x4�%�4H��L����2�M�t$M�nM����H�5�w4H��L����R����H���21�1��~��H�5ww4L��H��H�$�Q�H�4$@��u
H���������H�I��H�$L�h H���I5�H�=w4I��H���L���?�I��H����H�5ڥ2H����1�H��L�pH�d�2�@1��Y�H�S H��L��H�H H�QH�S L�aH�i0H�A 4�A8L�yL�1H�
H��H�K �u;�H�D$dH3%(��H��[]A\A]A^A_�f��������L���8Y�����1�H�'�2�(�
Y�L��H�=+v4H�X H��I��L�3L�sH�CL�s L�s�A��������v�H��H��u4�,I�H�=�u4� H�H�=�u4���@H�<$H�5�2�0�I�������;G�I��I�F�!����H����?���j�H���2H�5��H�81��5s�H���}s�H�5��H��H���2H�81��s�f���USH��H��t'�:t"H��H��H��螽��H��H��H��H��[]����H�K�2H�5?�H�81���r�f�UH��SH��H���OW�H��t:H��1�H�z4tH��[]��1�1�H��H���A9����H����[]�f�H��1�[]����ATA��UH��SH���DE��tCH�[H��t:H��H���o�����t�1�H��H���޼��H��t1�H��迳��H��t
[H�]A\�f�[�]A\�fD����D��AVAUATUH��SH��H��PdH�%(H�D$H1�H�D$�����u(E1�H�L$HdH3%(L���xH��P[]A\A]A^ÐH�T$H��H���0���H�$H��t���P�H��tH�t$H��tH���;j��t�H��H��A�������U�H��t
D�(A��H�<$H�t$�ɲ��I��H���e���H�D$H�D$ ��^�I�VH�D$0H����H9B�:���H�BL�d$ H�D$8H�B L��H�=f���H�D$@H�J H�D$8H�L��H�B H�����+�L��L��H���H�D$(H�=5����+�I��E��H��H�D$H�$�����H��H���T�H��t�D	(��H���2L�d$ M�fH�H���I�FI�D$H�D$@H�D$8�t����g�AWAVAUATUSH���T$H�������H��H��A��E��E1�H��H���wT�I��H��t_E��t
A�?��H��H��L����P�I�GH��4uxI9�t3H��H��踱��H��tH�@ H��[]A\A]A^A_�H��H��I����6��E��tH�[H������u���f.�H�Q�2H�Hǀ��4�@�T$��t�H��2H9u���f.������uH�[H��2H�H����4�X����AWAVAUE��ATA��UH��SH��H��L�5��2I9>t:A�����H��4uE��uH�����t<�4H��[]A\A]A^A_��1��i���H��4t�H��[]A\A]A^A_�@I�>H��E��D��[H��1�]A\A]A^A_�/���ff.�@��AWAVAUATUSH��(H�|$dH�%(H�D$1��Tm�H�\$I��H�+L�kI��A�� tL�kA�|$tH�N�2H�5ǟH�81���m�DL���V��u�M���;H����L�I9��VA�}#�KH�f�2L�0I9���L��M��H9�w�f.�H��H9����;:u�H��L��L��L)��~�;:��H���L��E1�1ɺH���6���I��H��4���uH�����t
�������v@H�q�2H�T$H�5��H�81���l�H��H��L��L��L)��~��f.�H9��3���H�D$H�D$H�D$L��H�L$dH3%(��H��([]A\A]A^A_�f�H�k�����H��H)�H��v5�{:u/L�{L������H���Z��H�5�H��H���2H�81��l�H�|$H��1�L)��,�H�5I�H��H�t�2H�81���k��mc�ff.�f���H���V�H��H���w>��UH��SH��H������H��4t	H��[]�f�H���Xo�H��H��H��[]�u����E1����ff.�f���E1��1����E1�1ɺ���A����g������A�1ɺ�J���f.�AWI��AVA��AUA��ATI��U1�SH��H��D�D$H��u+�D	�ukA�����u`H���2�H�H��t�L��H���AO�H��uE��t�H�[뵐�T$��t�8t#H�x4t4E��t(H�P�2H�I9�tH9�u1�H��[]A\A]A^A_ø��1�L��H�����H��u�1�1�L��H����0��u����E1����
���f.���E1��1����ff.�f���E1�1ɺ����ff.�f���A���������AUATUSH��H������H�������H��ƒ���������H��H����M�I��H��tH�CH��H�x�,q����uhH��H���Mv��t9H����l�H�=u�H���.�H��H��H����K�H���WG��H���l�H��H�����DH����]��%�M�l$I��4t L���Ho�H��L��[]A\A]�f.�H��H��A�������ff.�f���SA�1L�f�H��H��H�
�l��H���2H�t$H�t$�ڰ��H��tH��H���jC�H��[�H�t$H���G������AUATUH��SH��H��H���TB�H��I�����1�L��H���<y�H��t$H��H��I���yL�H��t'�H��[]A\A]�L��H���X-�H��H���Ͱ��L���ek�H��H��躰��f.�AWAVA��AUE��ATI��USH��H��H�L$dH�%(H�D$81��M��E������A�F�1�H�D$H�D$0H�D$H�D$(H�D$�DH�EH;l$��H��I��H�|$H�D$0�@�I��H����H��H���K�H�����E��A��D!�T$H�x4�u�H�T$L��H���[���H��t�H�D$(D#x8D|$D�x8H�EH;l$u�f��K#�H�D$8dH3%(uaH��H[]A\A]A^A_��G.�H���f�H�=��H��1���T���t�#�L���i�H��H���P�����t��"�H�t$0H���:����]�D��SH��A��H����H���`���H��[�ff.���SH��A��H��1ɉ�H���3���H��[�ff.���SH��A�H����H������H��[�ff.�H�������AUA��ATA��UH��SH��H���E��tWH�[H�����tJH��H����I�H��t�E��u)H�xH��t;HcpH��[]H�t6A\A]�W��H���2H9u�H���[]A\A]�H��[]A\A]��[���AVAUL�-��2ATA��UH��SH��I9}t2A���*���H��uE��uH�����t4�[]A\A]A^�fD1����H��t�[]A\A]A^�f.�I�}[D��H��1�]A\A]A^�������1ɺ�`������1��P�����U�SH��H�=*�2��H���2�H�=��H��H���4�H�=l�2�
�Z�H���2�H�=��H����3�H�=T�2��2�H���j2�H�=x�H����3��H�=r��3�(H�=���H���12�H�=]�H���3�H�=�2�1���H���	2�H�=C�H���j3�H�=S�2���H����1�H�=*�H��H���?3�H���?�H��H�=��(3�H��H�=�[]��fD��H��H��2�8t,H�=���C�;�H���s1�H��H�=��H����2�H�=ѽ2�>��H���G1���D��H��H���2�8t$H�=%���'�H�Y�2H�8H���s�DH�=y�2�'���f.���H��H�=��2�'�H��2H�8H���s�f�@��t*@��uD������tZH��td@��tnH�G�f�H�����u�H��t!H��u�H���2H�ÐH�i�2H��DH��2H��DH���2H��DH��2H��DH�y�2H��D���@��t"1�@��uH�����tH�����������ff.�����@��t&�@��uH�����tH��������Ƀ�	ȉ������������HcB�H�JH�
H�RH�<�H�4�1����H����H��H��1���ff.�f�����f.���H�2�����H��H�RH�0����H��I��H�JH�RH�0A�����H��I��H�JH�RL�@H�0A��@��H��I��H�JH�RL�H L�@H�0A����H��H��I��H�JH�R�p(L�H L�@H�0A��H���@��H��H��I��H�JH�R�p0�p(L�H L�@H�0A��H��Ð��H��H��I��H�JH�R�p8�p0�p(L�H L�@H�0A��H��(�ff.���H��H��I��H�JH�R�p@�p8�p0�p(L�H L�@H�0A��H��(�ff.���H��H��I��H�JH�R�pH�p@�p8�p0�p(L�H L�@H�0A��H��8����H��H��I��H�JH�R�pP�pH�p@�p8�p0�p(L�H L�@H�0A��H��8�D��H��H��I��H�JH�R�pX�pP�pH�p@�p8�p0�p(L�H L�@H�0A��H��H�f���H��H��I��H�JH�R�p`�pX�pP�pH�p@�p8�p0�p(L�H L�@H�0A��H��H�ff.�@��H��H��I��H�JH�R�ph�p`�pX�pP�pH�p@�p8�p0�p(L�H L�@H�0A��H��X�ff.����H��H��I��H�JH�R�pp�ph�p`�pX�pP�pH�p@�p8�p0�p(L�H L�@H�0A��H��X�f���H���ff.�@���ff.�����f.���H������H��H�JH�����H��L�BH�JH���ff.����H��L�JH�JL�BH������H��H��H�J�r L�JL�BH���H���ff.����H��H��H�J�r(�r L�JL�BH���H���f���H��H��H�J�r0�r(�r L�JL�BH���H��(�fD��H��H��H�J�r8�r0�r(�r L�JL�BH���H��(���H��H��H�J�r@�r8�r0�r(�r L�JL�BH���H��8���H��H��H�J�rH�r@�r8�r0�r(�r L�JL�BH���H��8�ff.�f���H��H��H�J�rP�rH�r@�r8�r0�r(�r L�JL�BH���H��H�f.���H��H��H�J�rX�rP�rH�r@�r8�r0�r(�r L�JL�BH���H��H����H��H��H�J�r`�rX�rP�rH�r@�r8�r0�r(�r L�JL�BH���H��X�@��H��H��H�J�rh�r`�rX�rP�rH�r@�r8�r0�r(�r L�JL�BH���H��XÐ��H��H��H�J�rp�rh�r`�rX�rP�rH�r@�r8�r0�r(�r L�JL�BH���H��h�ff.���1��f������u	H�1��f���Hc�PH��H��H�H��H���H���t�DH������H���3��8�HE��U�Ѓ�H��S��D��H��H	�H��H��vKL�B1�I��tH�
�E��tH�RH����=��tH���tH�H��[]�1�A���fDH��2SH��1�E1�E1�1ɾH�8�^���H�S8H�z@H��u	[��E1�E1�H��1Ҿ[�2���f�H��9�tF���t*��1���H�=$��]�H��H�=�2H�8H���y.��1���H�=���g]�H���։�1���H�=u��P]�H���ff.���@��t&1�@��uH�����t
�����t�f.�H��H��H��H��H���+&�H��Ð��H��H��H��H��H���&�1�H�����H��H�5Ra4��,�ff.�f���UH��Hc�H��SH��H���5R�H��H��H��H��[1�]��f���AUATUSH��(H�ZdH�%(H�D$1�H�A H�nH�@H�h��u	H�����u/H��H���d,�H�|$dH3<%(�vH��([]A\A]�DH��A8�փ���ty�h���u9�� t$H�K��w+H��H��4u���f.��CH9�sH�K��f���t��6`�H�T$H��H���f4��t�H�D$�H9�s�H�D�������H�L$���2�����_�H�T$H��H���4���s���H�D$H��D� L�h�Ph�H�L$H�@H�8H�L$H���E���H�T$H����3���0���H�D$H�L$�P�Q8L9�����I�D������� uH�{ D�cL�k�H��H�L$��g�H� H�L$H�@H�8t�L�kA��v����eM�D��H�5_4�U���H�5
_4�U���PXH���1U�H��tKH��tH;wXt@H�N�H��tGH�H������u8H��tKH��t=H�A H��t(H�r�H���7O��H�O`H��u����f.�H�A�H�A�H���L�GH�H��8J��H9�s$H�0H��t�H�p �uH�F�H��H��t��;���ff.�ATI��H��UH��H��SH����a��u4H���2H;t[1�]A\ÐH��H����a��uH�[H��u���fDH��t�A��H��H��t[]A\���fD[]A\�G&��H�0fH~�H9�tDfH~�H��<������tH��H��u!��fH~�H��H��H���fD������L���ff.�@ATI��UHc�SH��H���P�L�$�H�#�[]A\�ff.�f���H���3Z�H���f���H���2ATH����USH�(H�^�H�EH�P8L�`@H�UH�PH�P@��u6H�����t-�����u#H��Hc��.�H�EH�P�H�UL�`H��[]A\þH����UH��SH��H���E�H��t51��
H���=�H9�HM�H��H���H��HI�H���H��H��H��[]�ff.�����4�����H�=?}�k �ff.���U�A
SH��H��dH�%(H�D$1��I'�H�5�[4H��H���R�H��H��H�$�3%�H�L$dH3%(uH��[]��I����H�G H;v�f�ATI��USH��H�����H���2H�H�iH��H�(�U��H�k ����tL��H��H�5����[]A\�!��H�CH�x H��t���V����ff.��H�٩2ATI��H��USH�8���%b�H�Ń��)H���Hc�H�>���H�T4H���0L��H�5�H���~�H����T�H��H�5��H���d�H��[]A\�@H��S4H��u��H�=��;6�H��H��S4��H�yS4H��u��H�=��6�H��H�YS4�l���@H�QS4H���X����H�=58��5�H��H�-S4�8����H�)S4H��� ����H�=���5�H��H�S4����H��R4H�����H�=-��o5�H��H��R4�����H�=\��O5�H��H��R4�����SH���H��H������H��H���ؔ��s1�H�CH��t	H9��tH��[�8V��[�ff.���SH��8�H�G tH�x@H��t�*�H�H��[�f�H�PH����f����Ǻ�����g,����PXH���a����H��2ATH��UH��SH�H�CH�H8L�`@H�KH�HH�H@���H��H�5����H���I)�H�CH�P�H�SL�`H��[]A\Ð��H����0�H�=�i�H���t�H���f.���AUH��I��ATUSH��H�}�2H�H�CH�H8H�h@H�KH�HH�H@�%�L��I����L��H���R�H�CH�P�H�SH�hH���[]A\A]�ff.�@H��f�H9�t%H���H��H��?H)�H	�H��H�D$��~D$���H��tKH�H��H������t��t$���HE�����tH�1���@H�W1��uH�B�1��ff.�f�H���t�.fDH�A�H��H���uH�y�1��u���H��t���H�y��Z���f.�@��uMH�����tDH��ƒ���u7H������t8��u&��t"H�@��uH�����tH�1��ƒ���t�1��f.���f.�H���t�.fDH�A�H��H���uH�y�1��e�����t��H�y��J���f.�HcBI��A��H�vH�
��u1���@I�QH�R���I)�I�Q J�T��L��}2A�$�ff.�H��H��t8�����t��uH�PH��t	H�BH��u��DH�@H�@��fD�ff.�@H�OH�H�F8H��H9�s.H�VXH��€u�"fDH��8H9�sH�P H��€t��u�1��ff.���H�m�2H�8H�WH�B8H�RX��tH�����H��t4H�P �uH�B�H��H��t�H�B��H��HE���1��ff.�f�H���2�H9:��H�ܨ2H98��H���2H98��H���2H98��H��2H98tH���2H98��H�ȣ2H98��H��2H98��H���2H98��H�Ф2H98��H���2H;8tH���2H;8����������f���f.���f.���f.���f.��@�f.����f.���f.���f.���f.�SH��H��dH�%(H�D$1���u	H�����u*H�G���<t<<	t8H�D$dH3%(u^H��[�f�H��ƒ���uɩt�H�[�fDH��H�=^R4H���&��t�H������H�[�2H�$H�f	�J���u@�DPXH�����H����
�fDSH�WH��H�B �t�H��8H�B �u�H�@�H��t0H�{H�H��H9�v H;B u�f�H9B tH��8H9�w�1ҿE1�1��0
�H�{��@ H�Cx�W����H�H�H�L�A���u%A������tH��H��.��fDH�IH�y����f.��W��w1���u
H�G�D��H�H�x ����t
sH�G�1��DH�H�x ��ff.�@ATI��UH��S��H��H�?dH�%(H�D$1��3�H�EH��t^��u*I�$�H�EH�L$dH3%(uyH��[]A\�H�T$H�5�H���D$�Y�D$��t��tH�E�I�$1��@H�}���H�E��!�H�5W�I�$H�}H���WY���w����;>�ff.�H�GH�xt(H�PH��t������HD��f�1��P�E��AUI��ATUH��H��SH��H�����H��H�=]�H��I��1��J�H��L��H����
�H��t7H�þH����?�1�H��I����?�M��L��H��H��H�5�1��;�H�t�2H��H�8��H���9$�f�H���2H�WH;��H���2H;t@H�
�2�4H;u|H��2Hc�H���r�ueH��ĀuPH����H���@H���2Hc�H���H�u�H��� uyH�@H�H�yP�yA�f�H�GH�@H�D�f�H�i�2Hc�H���H��I�����u H��� u�H����H��H�D?���{>�H����H��H�D?��H���2H�H�@H���tH�@HH��t	H�@�8t�P�C9�H����H�=��ZH��1��y?�f�@��u:H�����t1H��Ѓ���t,~��
t��t
�c4���u��D���� u��;4�ff.���SH���S#��t/H�X�2E1�1�1�H���H�=��[L�1��R���{8�H���G�H��L���[1�1�H���<F�ff.��SH���F�H�H�@[�f.�H��u�f.�UH��H��SH��H���<
��uH��[]ÐH���G�H�}H��1�[H���H��]�]��ff.�f�H�G�����tBATI��UH��S1�fDH�����L���H�4��h���H�E;��r�[�]A\�f���f.�UH��SH��H��H�{H��tH�����H�C�uH�@�H��H�XH��u�H��[]�f���ATUSH��dH�%(H�D$1�H�e�2H�8H�GH�X8H�@X��tH�����H��I��L�����H����H�SH��u1H�K �utH�A�H��u[H9�t�fDH��8H9C u���@H�B�����t�1�H�����L���H�4��H���H�SH�B9��w��fDH�xL�����H�<$�+&�H�<$H����I�H��H�L$dH3%(u	H��[]A\���8�ff.�UH��SH��H��dH�%(H�D$1�H�GH��H�x��F����tH�4$H��tH�F���<t!<	tH����H�=~�H��1��&�@H�=)J4H���	�H�=J4�H����H�D$dH3%(uH��[]��98�f�UH��SH��H��H�rH�s@��u	H�����u=H�BH�pH�C@��u	H�����u
H��[]�H��H��[]�z%�f.�H�T$�f%�H�T$�ff.�@AWI��H��AVH��AUH1�I��ATI��UH��SH��dH�%(H�D$1���#��2H��H���2H��H�v�2H�H9uH�G H9A�(H��I��H����H�CL��L��H�x�6E������H�$H����H�ڝ2H�HH���X��D��#a�2H�4�H�Z�2H��H�u H�Z H�rH�5�2L�jH�6H�2H�����	������H�BM��tI�H�|$dH3<%(��H��[]A\A]A^A_�f.�H�[H���*���H�,�2H���XuS1�1��f.�H��t�������HD���H9q����H�AM���l���H�Q I��`���H�E D��#d�21�Hk�(H[�2H�BH��2H�B H�L�jH�fDH�B1������5�ff.��H����ATI��UH��SH���q�H��t5H�s H���~-�H��t#H�sL��H�����H��tH�P�����u?H�CH�@H��uHH�C H�xH��t+H�sL���o���H��H��tH�C���<t�H��[]A\Ð[1�]A\�f�M��t�H�PI�$[]A\�1��ff.�UE1�SH��H���w D�H�OH���A���������^�H�{H��H��uH��H��[]����H�5���H��H���T�H�]��u	H�����uH�e����H��H��[]�H��H����!���ATI��UH��SH��H��H��0HcRLdH�%(H�D$(1�H�����H��H��H)�H�UH��CHH�L$�t$ H���H�T$���D$$A��H�T$H��H��L��S0H��4t'H�|$(dH3<%(��H��0[]A\�f.�H��2�:t�I�t$H�~H�_H��H�QH��H��H��vL���뚐��t��v���H�-�2�MH9��{�����Q����m����{��`���H�D$��}H�D$�G���H��L���L��7�����2�f�H����H�������UH��SH��H��H��H��ʃ�����H������t5���F��1���u���H�H��t�uH�����uDH��[]�D�����H�_H�@��uBH�����t9H�H��1��ȃ���u'H���f�H��H��H�D$��H�D$�f�1��@1��D��ATUSH�� H�ZdH�%(H�D$1�H�FH�h�H��H�F����H�������H��ƒ���tu��upH�q H�vL�f��u+�Q8% ������H��tO�H�KH�T$H9�rMH��L��H����H��H�|$dH3<%(H����H�� []A\�H����.�CH�KH�T$H9�s�H�,�@��u�H�����t�H��H������H��uDH�{ H�L$H���u���H�T$L�������`���H�D$H�L$H=���w+���A8�C���H��H�L$��J�H�L$H�@H�8��0�H���2H�5��H�81��8��USH��H�_���<wOH�-���H��Hc�H�>��DH�s@��uH�����t
����H�s@��u	H�����uMH��[]�fDH�s@��u	H�����u=H�{t�H��H��[]�X5��H�s@��u��@H��H��[]�R�f��K��f�AUATUH��H��SH��H�M(dH�%(H�D$1�H��toH��� uWH�AH��~^H�I H��H��H�D�H��:��t]L�$$L�m(M�����E����L���r���4H��H����u��EH�MH���H�H��H������u)1�H�\$dH3%(��H��[]A\A]���EH�$��H��tAH�MH�H���DL���H�L�d�A��u	I�����u$L������1����E��|���L��L������L���-��EI��H�E(�����0.�AVI��AUI��ATI��UH��SH��H���/H��t
H;wX��H�]�H���cH�I��H������t6�������H��M��tI;l$Xti�E��H�E�M����I��ttH�C H���^H��I�u�L��H��[]A\A]A^���E1�������H�ÐI�T$8H�zI�D$`�u�H�����t�H������@L�sA��u
I�������H��[]A\A]A^�@L�sA��u�I�����t���H�_`H���c���H�H����������I�ع������H��H���H�������E1�����H�_`H��u�E1�������H�����H��L��H��[]A\A]A^���f��+�H�C ������H����������H��H��H�D$��H�D$�k���f�H�¾����H�����0���ff.�H���L�OL�H��8O��L9�s$H�0H��t�H�p �uH�F�H��H��t��[���ff.�H��I��A��H��tQI��t�@I�A�H��I�����I�y�1����H��t�E1�H��1ҾL��H������H�wH�N H���t���H��t�H�H H��t�Jf.�H�A�H��H���u0H�y�1���H��t��fDI�y��j��y���DH�y��R��a���ff.�f���H���u@H�P�H��H��t��ff.�@��H�G H�H��
���ff.�f���H�G H�H�����ff.�f���H�W �uH�B�H��H��t�H�B��ff.���H�m�2H�8���ff.�f���H�VH�r@��u	H�����u�@�K�ff.���UH��SH��H��:	�H����H��H��H�����H��H��[]�f.�H�G8H���w�ATUSH�@H��H��xƇ��E��H��I�����L��
H��H���w��!
H��L���g��H�kxH�{���DPXH��H�k�2H�8�{���ff.�AWAVAUATUH��SH��H��(�B�u�@��H��([]A\A]A^A_�fDHcNL�GD�Y�M�P�Ic�L�WH)�I��H��tTH�9�� �eL�I H�yL�$�K�L"8H9��i1�H��~I�4�I�t�H��H9�u�M�A�L�SD�]���c����M���X���L�cI�|$�@���E���H������8���H��΃����'����� ����H�$�J��H�$�EI�D$��B���f�L�jMcuL��D�t$L�t$�f��H�KI��H�L$E����A�F��D$H�$L��E1�H��L�<��	fDI��K��K�t�L����I�FL94$u�H�SL�t$H�D$�EI��L)�L� HcD$H��H)‹EH�S��+D$�E�T����H��L�I������D$H�T$���D$����f�AUATUH��SH��H��H����H�GH�NH�PL�AH�H�H�z8H9���H�KH�JH��H��L�@�H�p�H�@�H�@�H�B�H�B�H�B��yH�H�H�P�H�P��V��H��I�����C,L�k�ЅC(u:I��8L�kL��!
H���u��H��L�����H������
��I��������H�{81����fDAWI����D��AVAUATUH����SH���P��I��H�E�@t
H�@8D�hE��L��H��L�������A
L��L�p��H�0H��� ��H�@H�p�H���+�1�A��H����H�5ҾH���I�H�5��H���5�A�E�L�-�tI�D�H�D$�L��H��I����I�~���H��H���x�H�5u�H�����L;t$u�H��� u$H��H�S���)����H����H���D���H�CH�P�H�C��AWAVAUATA��USL��H��hH�FH�|$PH�@8H�t$HH�T$H�p�HL�L$8�8H�@H�t$�L$,�|$@H�D$ ���)���D$(I��L�̓�E1�H�D�H�D$A�D$�H��H�$�M�/L���E0�E��~(H;���H�JH;D��H��H;$u�M����L���0�L��H���L;�I��H��L;|$u�M���@�L$,9L$@�^�D$@Hcl$,E1�H�D$0L�t$�D$D����A�D$�)�H��H��I�Hl$8H�L$H�$H�l$fDK�<�D��E���q/�E��~(H;�K��@H�JH;D�t]H��H9$u�H�D$ J��H��4��H�t$J��I�GL;|$tUI����HT$H��D$(H�EH�4���HT$H�H�t$�D$(J��I�GH�4L;|$u�H�D$HH�@�@ ��D;d$(��H�|$0uHcD$DH�DH�D$0HcD$@H�|$8H�L$0H��H��h[]A\A]A^A_ÐH�D$l$,J�������D����	D$D������V�I������fDH�T$����fDH�T$�#���fD�D$@H�|$8A�l$�E1���H�L�4�Ic��v��I��E��~0L�d$�
�I��K��H��4tJ�4�L�����I�GL9�u�M�.���fDH�|$0tMH�|$0K�t?����W����H�D$0�D$D���f��D$(�D$,�g����v�1�H�\$X�\$DH�D$0I����H��H��t��s�H�t-�L���?����H�\$X�k������I��E��~,A��1��H��H�D$H�<�4tH�4�L���8�H�EI9�u�L��H�=��v�H�t$HH�|$PH�����L��H�=�i�����SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�8H9�vhH�wH�H0H��8H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�8H9�vpH�wH�H8H��@H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D������SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�YHc��H�L�8H9�vMH�wH�HH��H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�f.�����ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�8H9�vPH�wH�HH�� H�Z�L�J�L�Z�H�B�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�c���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�8H9�vXH�wH�H H��(H�Z�L�J�L�Z�H�B�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D��ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�8H9�v`H�wH�H(H��0H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�����SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�@H9�vHH�wH�HH�� H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�;�ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�YHc��H�L�@H9�vMH�wH�HH�� H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�f.���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�HH9�vHH�wH�H H��(H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�HH9�vHH�wH�H H��(H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�+�ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�YHc��H�L�HH9�vMH�wH�H H��(H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�f.��{�ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�HH9�vPH�wH�H(H��0H�Z�L�J�L�Z�H�B�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�����SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�HH9�vXH�wH�H0H��8H�Z�L�J�L�Z�H�B�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D��ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�HH9�v`H�wH�H8H��@H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�C���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�PH9�vHH�wH�H(H��0H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D��ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�PH9�vHH�wH�H(H��0H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�@H9�vPH�wH�H H��(H�Z�L�J�L�Z�H�B�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�3���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�@H9�vXH�wH�H(H��0H�Z�L�J�L�Z�H�B�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�{�ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�@H9�v`H�wH�H0H��8H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D����SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�@H9�vhH�wH�H8H��@H�Z�L�J�L�Z�H�B�H�@�H�@�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�PH9�vHH�wH�H(H��0H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�;�ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�YHc��H�L�PH9�vMH�wH�H(H��0H�Z�L�J�L�Z�H�B�L�@�L�P�H�@�H�B�H�B��4H�J�[�f.���ff.���SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�PH9�vPH�wH�H0H��8H�Z�L�J�L�Z�H�B�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D�����SL�A H�^L�I�@L�ZL�HHcBH�WH��H)�H�K�H��H�NI�IH�r�H�Y�����Hc�H�L�PH9�vXH�wH�H8H��@H�Z�L�J�L�Z�H�B�H�@�H�@�L�@�L�P�H�@�H�B�H�B��4H�J�[�D��ff.���AWAVAUATI��USH��H��L�i L�FLczI�EL�pH�F H��� H��H�H�H��H��H���H��H��#H9��A�D$,��A�D$(�6I�vH�C8H�{@I�D$H�BD�NH�OH�E��t3E�Q�I��1�M�ZO�<��
�L��M��L�D�L�@I9�u�J�ً��L�L�R���D)�L�N�Hc�H�T�8H9���I�\$L�L�sL�SH�C(������H�D�f�H��H�A�H9�u�L�(H�PH��L�@�H�h�H�CH�C0�4H�S H�{@H��[]A\A]A^A_��H�I��H�K`H�KPH��H��H��H��A�D$,HE��H�
A�D$(����I�|$81�H�T$L�$����H�T$L�$���fD�;�H���Q���ATH�FUSL�GH��D�aD���D���M�HH�hA������H�yH��A������L�!E�I�@�Mc�K�L�8H9��|H�CI�h�I�p�M�`�I�@�E���cA�C�I�D�f.�I��I�A�I9�u�H�H�PH��H�x�H�@�!wwI�P�I�@�I�@�[]A\��A���+H�H�H D�aA���L���A�4�J���fDA����H�H�x �G����������H�H�x �G��t}������H�H�x �G��t_rm����H�H�x �G��tErS����H�H�x �G��t+r9��uqH�H�@ �x��tsCH�xH������fD��o���fDH�H���\����C�L�������uH�H�x ����H��H���,���ff.���ATUSL�Q H�NH�jI�BL�XHcBM�KH��H)�A�YE���H��M�aHc�H��H��H�FD��A���)�H�H�W�Hc�L�B�H�t�8I9�vnL�GL�b�L�Z�H�j�H�B���~Z��H�D�f.�H��H�A�H9�u�L�H�HH��H�X�H�@�H�B�H�B��4H�J�[]A\�f��+�H������AWAVAUI��ATUSH��H�{H��(L�A HcjL�KI�@L�x��I�O+AH�q0H�L�4�H�C H��� H��H�M�H��I���H��I��#H9��A�E,��A�E(�CH�C8H�{@D�QI�EH�BH�H�GE��t=E�Z�H��I�sI�,�H�t$1��	fDL��L�L�L�L�L�NI9�u�H�t$H��L�I���Mc�L�ZD)�O��L�
����Hc�H�T�8H9���I�]L�L�{L�[H�C(�����V�H�T�fDH��H�@�H9�u�L�H�BH��L�J�L�b�H�C �4H�SH�S0H�{@H��([]A\A]A^A_��H�v��H�s`H�sPH��H��H��H��A�E,HE���H�2A�E(�����I�}81�H�T$L�L$L�D$����I�OH�T$L�L$L�D$���f����H���A�����AUATUSH��L�Y D�RL�NI�CD��H�XH�CD�hL�@0D�`D)�DhHc�I�,�Mc‹��I��M)�D�Hc�M��G�"D)�L�RE)�D)�D���Mc�O��I��A�L�FH�pIc�L�H�WI�D�8H�,�H�r�H9�vrH�wH�j�H�Z�L�R�H�B���~^�A�I�D�fDI��I�A�I9�u�L�H�HH��L�@�H�@�H�B�H�B��4H�J�H��[]A\A]�@����L���ff.���AUATUSH��H�Y L�FLcRL�cM��I�D$H�hJ��I)�L�M8IcAMc)L)�L)�M��E��~)M�Q1�E�M��DH��I��I��H�HI9�u�O��I�M�T$HcE���M�BH�jI��I��I��L�^��L�A���D)�H�OM�`�L�I�Hc�H�T�8I9�vqL�OL�a�L�Q�H�i�H�A���~]�V�H�T�DH��H�@�H9�u�H�H�BH��L�Z�H�B�H�A�4H�Q�H�Q�H��[]A\A]�@���H�����UH��AWAVI��AUI��ATI��SH��H��8L�APH�vdH�%(H�E�1�H�A I��A�I��H�@L�xHcCI�WH��H)�H�z8HcGHc?H)�HczHc�H��L��H�BI��H%�I)�I���L��H9�tH��H��$�H9�u�A���8I��H��t%H�4�L��L�M�L�E��M����L�M�L�E��M�I��L��L��L������I�GI�~ I�ML��P���H�G)�L�@HcCH�[H��H)�H��Hc�I�T$H��H��I�EI�@L�J�D���L�XA�Ic�H�D�8I9���M�L$L�Z�L�B�H�Z�H�B������F�H�D�DH��H�A�H9�u�H�8H�HH��L�P�H�@�H�B�H�B��4H�J�H�]�dH3%(u5H�e�[A\A]A^A_]�f�L)�J�L����f����H����n�ff.���SH����u	���t1H�C8ƃ�H���Q�H�@H�{�H���H�Cx���H�����f���USH��H���G,H�o�ЅG(uH��8H�kH��[]�fDH�81��������PXH���Q���H�����f���AUATI��US��H��(dH�%(H�D$1�H�$H�D$���H�D$�Ņ������D�k�Ic�I�Ĩ�tH������P������P�H�D$H����H�|$���H�|$I���!P���%D��M��LD�L�d$H�D$����H�l$����H��tH�|$���uH�l$H��t#H�=�4tyI��1�H��H�5�4���1�H�$����@���]t�H�L$dH3%(��H��([]A\A]�fD�#���`�����t7H�|$uO1�1������@�H�=������H�(4�j���D�k�Ic�I�<�H��t ��H�D$����H�|$�
�������N��O��N���USH�������H���t/��u
H�������H��a2H�5�2H�81��	�DH�ݻH�y4H����H9��,H���=H�fh2H�8�6��H�5G4H��H�����H;--4�?H�@c2H�8���H�54H��H���v��H;-�
4��H�d2H�8����H�5�
4H��H���H��H���+H��H��[]�@�+��H��H��
4H���;����H�=:��b��H�����H�=5�H�
4�B��H����H�=B�H�W
4�"��H����H�;
4H�D
4H9�����H�Dg2H�8H��[]���fDH;-
4t'H;-
4�*���H�#c2H�8H��[]����DH�b2H�8H��[]����������B�����������7����1����H���k��H�5�1H��H��g2H�81�����H�O �u(H�A�H��tH�H������t7H�A�H��H���t�H�A�H��tH�H������t���HE��1��H�@H��t�H�H������ff.���AUATUH��SH��H��tIH��H�I��I��H9�u�NfDH�{I9�t?H��A�E1�1�1��r���H�[H�EH�hH��u�H�EH��[]A\A]�fDH��L��A�E1�1�1��0���H�EH��[]A\A]Ð��H�Gf�@~���ff.���H��H��H��u.H��tqH�H�‰σ���u6��t.H�PH��H���@H��H��u�GfDH�RH�����t3H���uD�A��A��uH�Jf.�H9�u�H������ff.���USH��H��H�nH�{H�u����H�E�H��H��[]�@��SH�FH��H�{H�P�H�p��#�H��[�ff.����ff.���H�GHc�H�@ H���ff.����H�%_2H����H�GH��tVD��HD�Ɖ������A��A�t?H�?��t�������	ʉP����~��A����D	Ɖ0�@H���
���UH���0S���H���r������H�h ���	�H���2@�8H�JH�P(H�
��2H��[]Ð��ATUH��S��Ӄ���ti��uiE1�H��H��H���^���I��H��a2H���XI�$��H%��������	�H	�I�$H��tL���_��L��[]A\��I���H����H�=y�H��1����f���SH�wH���H�O H�WL�G�����H�H���H����H	�H�[���UH��SH��H��H�F�H�G����H�EH�u H�CH�s @��u	H�����uQH�uH�s@��u	H�����u*H�H�UH%������H	�H�H��[]�f.�H���x����fDH���h��H�uH�s@��u�����@��uH�����t�����u	H�GH�pP�H����|��ff.����H���������@��uVH�����tM�H������u@H�GH�@PH���t.H��t�*H�JH�IPH���tH��u
H�RH��u��H���1���H�������f���H��dH�%(H�D$1�H�GH��H�x����H�$��t H�L$dH3%(H��uH����1��������1�����D��ATUH��SH��H��dH�%(H�D$1��ٵ����u5H��H�5���H���3|�H�D$dH3%(uWH��[]A\�f.�H�GH��H�@@H�@H�x�����t�L�$$M��t�H��H���p�L9�t�I�t$ L��辶���������SH��H��H���=�H9�tH�s H��茶��1�[����1����D��H����H��H�����H9�tSH��t>H��H��t6��1Шu*����
��E�L�L���Ic�L�>���1�H���f��H���fDH�GH9A��H�����D1�H�wH9qu��G9A�����fD�G9A�����f.�H�G H9A �����H�wH�y���H����������d���f���H�vH����ff.�@��SH�^�3������H��H�����H��t<H�������<
��D�H�e���Hc�H�>��@H�sH��[���H��[�H�sH�����Hcs[H������H�sH��[��q��H�s H��[�[���sH��[�L��ff.����H��u�ÐH����H��1�H��tH�H����t�H������H��H�=G����H��tW1��
H�������~D�P���u�lj��2���2�3D��H�?]2H��x�H�81��	��f��=j�2�(���H�a�2H��tH���H��\2�"�H�=�3H����5��D��AWAVAUATI��UH��SH��H��(�dH�%(H�D$1��B���vk1���tAA�$����B��H�UH�H��H�Ѓ���B�H�������B�H�������B�H�L$dH3%(��H��([]A\A]A^A_Ð��t	����trH��������E�<$E�wIc�H9��|H�4�H�|$Mc����I��H��E��tM��u>I�H�L$�!��H�L$I�EH�D$E�4$H�M��\����
�‰����f�H�uL��H���	�H���@�H�������V��fD��H��Y2H�H��tH�@H��tH�@�PH��V2H�5$�H�81���fD������H�\���Hc�H�>��H�t*��H�H*��H�o*��H�%��H�%��H��$��H��$��H��$��H��$��H��$��H�r$��H�\$��H�A$��H�'$��H�$��H�����H��#��H��#��H��#��H��#��H��#��H�n#��H�U#��H�=#��H�$#��H�����H��"��1��ff.�f�SH��H��H���0��H���uVH�����tMH��Y2L�L�M��tVD��H�T$��������H�T$H��t_�q�I��H����w@H�5vL��1��B��H�SY2H��H�5AuH�81��'��H��H�5muL��1����H�5vL��1����I��H�5xuL�������AWAVE��AUI��ATA��UH��SH��H��M�8H��tgH�`U2H9(t#H��L��L��H��[]A\A]A^A_����A�|$�I�pHc�����H��E��L��L��H��H��[]A\A]A^A_���D� H�=�uL�D$���L�D$H���v���ff.�f���H��H��H�=�0�Z��f.���AVI��AUATUH��SH��0dH�%(H�D$(1�H��U2H�H�X8L�k8L�c@��H�C@H�V2H�H������H�s@H�C8H���e��H�C8H�T$H�t$H�=�0L�t$ H�D$H�C@H�D$���L�k8L�c@H��t+�T$�UH�L$(dH3%(u)H��0[]A\A]A^���t$��t�H�C H�x�;������fD��SH�� dH�%(H�D$1�H�U2H�H�CH��tH;8u�UDH98tKH���H��u�H�<$H�=a�H�t$����H�4�H��H�D$�t��H�����@H�pE1�H��1ɿ1��P��H�{��@ H�Cx�w������AUATUH��S��H��dH�%(H�D$1��(�H�$��tG��~2L�m��uA�L��L���^��L�e��~�H�<$tH���6������E���0���~�H�$L�mA���uH��t�H�����L�e��~��ff.�@��SH���x���H��H���������H�}S2H�8H�WH�B8H�RX��t1H��H��蕩��H��tH�xH���3���H���fDH��tH�x���f���f.���H��P2SH�H�ZH��H��re�H��[�ff.�f���H�EN2H����H�WH�H��H9�s(H�FH��t
��H�~uH��8H9�r���H���1�Ð��USH��H��H�WH�H��H9�r�!�H��8H9�s0H�C ��u�H��H��[]�@H�����H�UH�EH��H9�r�H��1�[]�ff.�AUATI���UH��S�H��dH�%(H�D$1��q�����1�H����H�EI�t$L��H��H�����H��t~H�=�3L� H����H��L��� �����H�$��toH��H�$H9�tv�M��H�4$�I��H��艺�L��H��L���v��H�=��3H��L��1��b��f�H�L$dH3%(H��uaH��[]A\A]�f�1�H��H��I������t����DH��H�=V�3L��1�H������fD���H��H�1�3�!����G���ATI��UH��H��SH�����H��u6H�}4�9�I�<$�"��H��H���7��H��H����8��8�D[]A\�ff.�H��H�w���H��t.H�H �t�+H�A�H��H���uH�y�1��U���H��t�H���H�y��:���H����8�H���ff.��ATA��H��UH��S讱��H��tIH��H�@���<tH��[]A\�E��u;H��H��苳��H��H��tH�CH��t
���<u�1�H��[]A\�fDH��O2H�8�����H��tH�xH��H���8���H�����H�Ѻ�O���ff.�@��H��1��2���f�AUI��ATI��US��H��(dH�%(H�D$1����H�D$��������I�E�H�D$��t1�I�m����H��t
H�|$����H�|$�U��H��tFL��t1�H����u	I�T$H�z@1�1�H�����H��tH�P�����t
��u(L9` t"1�H�L$dH3%(umH��([]A\A]�DH�H������@�s���~!I�UH�D$�H�T$���E����3���H�|$t
H�|$�,������;���V��fD����H��H��H����������HE�H�������H��H��H����i�������HE�H�������H��H��H����9�������HE�H�������H��H��H����	��������HE�H�����U1ɉ�S��H����tc�����H��t`��tH�H������tL��u��uCH�@���<t�H����[]��۸E�H����[]�D1����H��u�1�H����[]Ð��UH��SH���G(t
H������DH��H�wH�?��l���t��t�H���4[]���C(u�H���4[]�ff.���H�
L2S��H�8������P �����	�@�x [�fDS������H��K2H�8�i������P �����	�@�x [�DSH�wH������H�x ������u	��[�DH��� ���[�P �����DSH�wH�����H�x 誠����u[�@H�����[�@ �����ff.����AUATUH��SH��8dH�%(H�D$(1�H�wH�����H���<��H�
F|��Hc�H�>��DH��J2H�VH�8H�w����I��H��taH����A�Ņ�tRI�|$���H�t$�H�D$Ic�H�DH�D$����H�����H�C�uH�����tH��H���|��@H�D$(dH3%(�H��8[]A\A]�f�H�V��u�H�����t�H���fDH��L2�F����H�FH�G���H�C뙐H�2L�bH�s@��uH�����t����M����L�cA���a���I������T���L��H������D���@�rH�H�C�F�s����2�H�{Hc�H�>��fD�V����H�2H�s@��uH�����tH�T$�`��H�T$H�rH�s@������H����������H���1�����H�E����	���H������H�������H�A������H���������H���������H�]������H�������H�Պ�����H��������H�m������H�A������H�����y���H������m���H�݉���a���H������U���H�U����I���H�AH2H�8��I���b������@��ATf�I��I��USH��H��0H�wdH�%(H�D$(1�H�)D$u
���<tm�FL����%������	ȉFH�K 脫�H�H��H���H%����H	�H
H�EH�|$(dH3<%(H����H��0[]A\�f�H�~H��t�H�$�>�L�$L�@A��u0I������t'L��H��L�D$H�$�S��L�D$H�$f.�H�D$H�K L��1�H�@ �H�D$�Ϫ�H�L��H��H���H%����H	�H
H�E���H�T$H��H������)����6��fDAUATUSH��H��H�T$H��t0H�zu)L�oH��H��M�e M��t'H�T$L������t$H�\$H��H��[]A\A]�1���I�E I��H�|$H��H�w����H��L��H��H���8�H��H��[]A\A]�f.���SH��H��dH�%(H�D$1�H��輧��H�<$H��H���-���H�L$dH3%(uH��[��B��f���UH��SH��H��XH�w@H��dH�%(H�D$H1��D��H����H;C ��H�G2H�D$ f�H�@)D$0H�)D$H�@(H�$H�U H�D$(H�HH�T$H�D$0fDfo$foT$fo\$ fod$0S[ c0H�D$HdH3%(��H��X[]��H��F2f�)D$0H�)D$)D$ H�$H�E H�D$H��H�D$0��H�PH�z(H9{(����H�H������t
�CH����H�
F2H�D$ f�H�@H�S0)D$0H�	)D$H�@(H�T$0H�$H�M H�D$(H�CH�L$H9������H�CH�D$H�CH�D$������f�H��E2H�H9uSL�F 1�H�L�Hc�H��t@I9�u1��u�@�P�Hc�H�t�H�t�Hc…�u�H�O�G8�DH��H��u��y��f���H����t$��u?�Ѓ���tUH��t_��tjH�r�a����H�����u�H��t!H��u�H��F2H�0��H�	>2H�0�1����H��C2H�0�@H�!C2H�0�@H��?2H�0�@H�B2H�0�@��SH��H9W@tf�G@H�W@GG G0H�����H�S 1�H��t
H�H����[��H��ATI��H!�UH��SH�����H��H��H��H��H	Ш�@���:@���}H������;������H�>B2H�CH;��H��D2H;��H�rB2H������H9���@���xH������kH�E�ƒ����YH��� �SH����I��� �7H����I9�uEH��H���:���t6H�{H� tH�{H�uH�E tH�uH9�t6L�������t*f�1�[]A\�f�H��A2H����u]H9�u�[�]A\�fD@��t*@����H��������E������@H�QA2H����@t�D��t[�����؃�����H������u>H��?2H�0�6f�H��@2H�����L�����H�����tgH�sL���k���I�D$ H��tqH�H�4��������H�=�>2H9y�����[]A\����L���H���������f.�H��tZH��u�H�FC2H�0�f�[�4]A\�fDH��:2H�0�^����H��?2H�0�N����H�1<2H�0�>����H�9@2H�0�.����H��?2H��������H��H��[]A\�z��H�E����L�c������Uf�H��SH��H��hdH�%(H�D$X1�H��)D$@H!�)$)D$)D$ )D$0H�D$@���MH��H��H��H��H	Шtx@����@����H��������������H��>2H�CH;�H��A2H;�H��>2H�����H��H���ø��!�H��>2H����uu1�H9���f�H�L$XdH3%(��H��h[]�D@��t*@����H��������E������@H�i>2H����@t�D��tc�����؃�����H�����uFH��<2H�0�>�H�>2H����u�1�H9��B�����8����H�����tgH�sH���{���H�D$ H��tqH�H�4����������H�5�;2H9q����������D���H������a���f.�H��tZH��u�H�V@2H�0�f��4���fDH��72H�0�^����H��<2H�0�N����H�A92H�0�>����H�I=2H�0�.����H�	=2H��������H��H���n���)������@��ATf�UH��SH��H��`dH�%(H�D$X1�H��)D$@H!�)$)D$)D$ )D$0H�D$@����H��H��H��H��H	Ш�2@���H@����H������A������#H��;2H�CH;��H��>2H;��H�<2H������H9���@���~H������qH�E�ƒ����_H��� �_H����I��� �CH����I9�uKH��H�������t<H�{H� tH�{H�uH�E tH�uH9�tLL���|���t@�1�H�L$XdH3%(��H��`[]A\ÐH�9;2H����uUH9�uȸ�Ð@��t*@����H��������E������@H��:2H����@t�D��tS�����؃�����H������u6H�f92H�0�.�H��:2H�����\�����H�����tgH�sH������H�D$ H��tqH�H�4��������H�5�82H9q�����������T���H���������f.�H��tZH��u�H��<2H�0�f��4���fDH�I42H�0�^����H�q92H�0�N����H��52H�0�>����H��92H�0�.����H��92H��������H��H������������H�E���L�c���f���AWAVI��AUATUSH�����H���H�XH��I��H�CI��H�@HH��tI��H��I�U�Ѓ���t6����I��I��t	���cH��L���(��H�����H�U���<��H�r H�U�I�t$@����tH�BH�@@H�xH����A�D$8H�jI�D$0H��[]A\A]A^A_�fDH��L�����H��u�L������H��H�5fXH��H�|22H�81�����f.�H�B��u���H������i���H��σ����X�����HE��L���A�D$I�&���H��42H�5>XH�81����@�+��1�I�D$ H��tH�@H�P(H�pI�T$(I�D$0H��[]A\A]A^A_���������H��L�����H�������A�E��������I�EH�XX�fDM��u�H���j�������H��52H�5'WH�81�����D��UH��SH��H��dH�%(H�D$1�H��H��HD�H����H�;H��H�����H�L$dH3%(uH��[]�����ff.�@��UH��SH��H��dH�%(H�D$1�H��H��HD�1�H���<�H�;H��H���n�H�L$dH3%(uH��[]����f���SH��H��dH�%(H�D$1�H�FH��H�$贙��H��tH�xtH�L$dH3%(uH��[�f�H�sH�$H���0�������f�USH��H�GH�XH�{tH��H��[]ÐH��H�s H�萚�H�uH��H������H�MH�ËA��������u(H�Y��u�H�����t�H��H���;���f�H�q ��B��H��H��H������H��H��[]�f.�UH��SH��H��H��(H�v dH�%(H�D$1�����H�s��L�CH�K H�SM��LD��d��H��H�H�$��H����H	�H�H�sH�l$褖�H��H��H���6��H�H%����H
H�H�D$dH3%(uH��([]�������UH���SH��H�W42H��o��H���H�(H�PH���H��[]���H�W1��uH�B�H��H�@�@��UH��SH��dH�%(H�D$1�H��H�����H��H���͒��H�<$���H�<$H������H�T$dH3%(u
H��H��[]�����f���USH��H��dH�%(H�D$1�H��H��舑��H��tH��H�������tH�CH���H��u�H�<$苹�H�<$H���?��H��H�T$dH3%(uH��[]��P�����B��tr*��uH�H��uH�����us�f.���ATI��UH��H�2SH��H�u@��u	H�����uEH�sH�u@��u	H�����u>H�CH�pH�E@��u	H�����u3[]A\�fDH���P���K���f�L���8���fD[L��]A\�$��@��AUATUSH��(L�o H�|$E�e dH�%(H�D$1�H�02A��H�8�=��L��H�X H��H��H�������S A�E��CH�D$D	�H�D$�S H�D$H�L$dH3%(uH��(H��[]A\A]�����fD��AUATA��UH��SH��H��H�F���H�EE1�H��H�H������A���<��H�uH�X H�3@��u
H�������H�uH�s@��u	H�����uWH�UH�rH�S@��u	H�����uT�K A��D�kE��D	�K H��[]A\A]�f�H�v��+�V���f�H��H�D$裷�H�D$�@H��H�D$苷�H�D$�@H��H�D$�s��H�uH�D$H�s@���U����G������H��tO@��tH�R.2H��1�H��L��@@��t@��uH�����t�����u	H�����H���@��f�UH��AWAVAUATM��SH��H���H��X���L�vH��0���H��H���E�VD��P���dH�%(H�E�1�A�F(AFDž@�������A��A��u
AF��@���H��H���A�vHDžh����H��%���8���H��X���H�xH�GH��(���H��0���D�HA9��}D��E���K���L�I�T��H�H��H9�u�I��L�e�H�GD�M��E���@��H��H���A��L�@Ic8L�E�H���iH��I��H�BH��H%�I)�H���L��H9�tH��H��$�H9�u��t	H)�H�L<�H��A)�H�}�D�M�H��tAIc������I�4�D�� �������D�� ���������f�H�E�H�E���8���E1����z�����E��E����E�H�I��H�H�E��� �;	H��H����E�4	A��E�N�A�p�Hc�H��E����E��������H��������H��ǃ������� ��H��H����������D�� ����<������D�� ���H��H�CH������@AE�A���qfDA�ŀ�.H�C�@0�����x�E�H�U���H�H��H�E�H��t+H�ȃ�H��u H������tH��ƒ����fDH�C�@��H�/2H�5DXH�81��z��f.�A��A�V������q����E�H�M������D�� �����H�H��H��H������_��D�� ��������H���(���H�0H����������H�@H�x���������E9��u�����m�A��A���H�E�E��������P�����E9���A�G�D9�����P�����H��X���H�PIc�H�JH�D�8H9��OH�}�H����D�]�E����L�7�U�A�� ��
I��A��Ic�I9���A�E9�
�@H�}��A�����E9�u�H�CD��E���P�Ѓ�0����f.����H�}���E9��t	E����
����	<��	H��h���H�}��D��8����o���D��8���H����	H��h����0	H��X���H���B��D��8���H���}H��H���H�8�Ӟ�H��I�����D��8���H��I���6����H�}��q���L�E�Ic8L�� ���I���G��E��L�� ���H��8���~gA�F�D�� ���E1�L��8���H��H�����L��L�����M��I��H�E�J�t#L��J� I��臙�M9�u�D�� ���H�����L�����H�}�H�E�H����HcE�H�U�H��8���D�HD�M�H��H�E�H��t,H�8�� ��H����Hc�H9��:
D+M�A�H�C�P��D���0��������u������D9�@���}��t
1�H�}�������@���A9�~M���tH��P�����H�}�A)�H��t+L�/A�� �L�oMc�M9��"H�E�E)�D)M�H�K�A��=��e��
E1�����j���H�Q8HcBHcH)�H�U�M��H����H�E��L�@H��X���H�����H�K�A�@t*H9��t!HcA,H��X���I��H��0���H�0���H�H��X���H��(���H�@H�XD��H�]�dH3%(��
H�e�[A\A]A^A_]�f�H��h���� ��H���u���H��ƀ�c���‹�P������R������J����׭�H�=a�H��踻�H��X���H��H���֙��fD��8������`���A���V���H�C�PE��������A��2���@HcA H�}�M�4�H�����ƿ�H�KI��A�l���fDD�A�U�A9���HcqL�m��E�M��M����Hc�H�4��
�Hc���I��A9���I�L�u�Lcy(I�6J���� �QM�nI�F H���WL��L��L)��R��H�K�A���D�u�H�}�A��H����D�M��E�E���X�}�����E����E��H��H���A��L��@���Mc�I���-�H��舂�D�E�E���>I��E����A��H�]�H�E�E��H��N�$0蓐�M��Q��U�Hc�L�$�A��u�I�����t�L��H���Y����HcqD�E�D9��wH�}�D�m�H� �H��D��Mc��D�0Ic�M��1��
�H��Hc�L�H��I��H�PI9�u�E)��E��AD�u��H���DA�ŀ����E��~H�C�@0�'����������DL�pIc�E��I9���
E�H�@ E�N����DH��h���H����H����H����Hc�A��H9��[
�H��H�H��H��H���H)�H��H9�tH��H��$�H9�u�%���H��Ic�H�5e��L��P���H�E�H��p���H��H��p���H��x����E����L��P���D��L��p���H��x����r���H�C�M��PA9��Hc���H�u�D�H�H��H�L�@H�H��H9�u�D�}�E���,���@�����L�����H�E��n��D�M������H��H�� ���H�U�A)�Ic�A��D�M���~lL�������L�,�H�����H�L�����M��I��M�pH�D�L��I��I�$H�3L��I��H��虒�M9�u�D�M�H�����L�����H�U�A�A�H�H�� ���D��8���L�sH��H��H���A�̀�H��������Hc�H�u�褾�H�E�H�E��E�H�K�A���@Ic�D)�H��Hu��U�H�Q0D�,2���f�Hcu�����E�H�E�����H��I�F��I��H�������HcI$I�<�L��L)�H�4��b�����DA)�H��Hu�D�E��'���@E1������I��A������H�CH�E��@��������D�u���E���l���H��0���H��H���H��D��8���H��X���H�p�Y��D��8����8���DH�WH�z�����1�H��h���H�}�D��H���辊��D��H���H�������A����DH�A8Hc@M�4�H���襍�H�KI��A���DD�����L�w�=���H�GH�@�6���D�U�E����L��L)�蒽�����H��H���L��@���E������A��Mc�E��N�4�M)�I���I��H�E�H�}�J�40�$��I�F�M9�u�����H� ���M�]A�� �CI�}Hc�A��H9���M�m Lcu�Hc�H�4�M��I)�1�O�l�f�E9��]I�|5��A��I�<2H���A9�u�Ic�D�M�H���Z����x��A����A���H�E�H��thH��� ��H����H��uOH��H�8�3��H���*���H�H�E�H�E��� ��H��H�׃�Hc�A��H9��6������}����H�E�L�0L���ן�H�U�L�2�H��H���L��@���H�K�A�>����η��E�H��H�E��6��v������謷��E�H�E����H�ω����D�����H�� ���H������y��H�� ���D�����H������������H�8H�����������������q���E9��������E�H�}�����诃�A��E�N��
�D�u�E���H��8�������D�M��c�E1�1�1������ H���I��I��A��������0� ���D��A�������A������g�����R�H)�H�L��U���@��tD�M�A9����������諍��H��h���H�}��D��8����߆��D��8���H���_H��h�����H��X���H��D��8������D��8���H�����H��H���H�8�<��H��I���Q��D��8���H��I������w��H�x�I�袵��E�H��H�E�����E���G�H�@H�x���:���H�x�F���H�x�R���H�@ ������H�H�������;�������-�H��D�����H�� ����/��H�� ���D�����H����D�� ���輘�H�U�D�� ���H���E���H�H�����D�Ӵ��E�H��H�E�����H��X���H���a��D��8���H�������H��H���H�8���H��I�����D��8���H��I�������fD�����H���������������T�H��D�����H�� ���H������7��H�� ���D�����H��� ��˗�L�u�H�� ���L����H�� ���H�����D�������H��u
H��������L��H�����D�� ����ww�D�� ���H�������@H��0���H��H���H��D�� ���H��X���H�p���H�E�D�� �����H��0���H��H���H��D�� ���H��X���H�p�L��D�� ����`��+���E�H��H�E�����H��L����D�����H�� ����-���H�������=��D��@���D��D��H��H��X����A���L�����f�UH��AWAVI��AUI��ATI��SH��H��@H��(D�M��KHdH�%(H�E�1������I�u�Ff%~��L�L��L���߉��A�T$D�M�����A�T$I�E�H9����CH���Au,H�C H�5�t���hA��~2H�S���H�C01�H�}�dH3<%(��H�e�[A\A]A^A_]��}�Ic�HcUHk�H�H�m�1H����f����F��~<t{H��E1�L��L��L�����DI�GH�P�H�
�ŀt@H�RH�z�„�����H��I�GA�D$A�D$�P�A�T$��f������D���|�����@Hc~A�D$L�~8� H�KPD�D)�9��T���Ic�L�aH��H��H�JH��H���H)�H���H��H9���H��H��$���fDH�����@L�L��L�E�L������A�D$L�E����I�}A�T$�O�G��D�)���9����CH����A������uH�C H�5�tH�p���H�C0D9�}'Hc��D�I��H�I�T�H�H��H9�u�H�G0Hc������9��>���IcIcG1�L��L��H)�1�M�$�E1�M���f���IcI�<������H�C H�5������H�
���������a���H�C H�5��J���H�����H�C0�:���I�T$I�t$I���o��L�E�����腯�%�t	H)�H�L�I��H��tI�4�L��D�U�L�E����D�U�L�E�I��IcIcGD��L��L��H)�L��M��M��茊��H�C H�5�����H�����H�C01����A��L��L������E��L��L���������AWAVAUI��ATI��UH��SH��H��0H�A L�FH��H�@H�HH�AD���D�xHcBL��AVE��H��I)��x����D$ZYA�EI��I�u A��H�MIc�L�L�SE)�Mc�H�FH�xHcCH��H)�H��H��H��H�EH�GH�P���N��D�I�T$Hc�L�B�H�D�8I9���M�D$L�Z�H�z�L�R�H�B�E����A�F�H�D�H��H�A�H9�u�H�0H�HH��L�H�H�@�H�J�H�B�H�B�H��(�4[]A\A]A^A_��M�E H�ML�ULc{I�@L�HH�E H��� H��H�M�H��I���H��I��#H9��A�D$,��A�D$(�1I�yH�E8H�M@I�D$H�CD�_H�QH�E��t3A�s�I��H�FO�<�I��1��@L��M��L�T�L�PH9�u�J��H�w���Lcl$L�D)�H�[N���Hc�H�t�8H9�vmI�l$L�]L�MH�]H�E(������H�D�@H��H�B�H9�u�L�H�PH��L�P�L�p�H�U H�EH�E0H�M@�����K���H���a���H�R��H�U`H�UPH��H��H��H��HE�H����I�|$81�L�L$L�D$L�T$�|�L�L$L�D$L�T$���H���`���ff.�@AWAVAUATUH��SH��XH�Af�@~��BD�L$ M��I��H��I��L�����@u;�K�SH�E���&�|$ �f�H9��]H��X1�[]A\A]A^A_�f�M�VA�L�T$(Hcȉ$H��H�L$��z�I�w�<$H��H�D$H�t$���H�L$L�T$(��E1�L�|$0I��H��L�d$8L��H�\$@L��H�l$(M��H��L�l$HM�ʼn|$$�I��K��J�t�H�����I�EM9�u�L�|$0L�d$8H�\$@H�l$(L�l$HI�WH�D$H�|$H��H)�H��H�|$H�8HcD$$H��H)‹CI�W�P+$�C�SH�EI��p(pL�W�M�M��A���9���M�����I�JH�y���������p9��������I�OHc�H�D�8I9��1�N�Hc�)�I�D�H�I�T�@H�H��H9�u�s�E����H��XH��H��H��[]A\A]A^A_�$�@�H�၀��q���I�}���H����H�E�S�p�R���fD�����M��u;A��tAA�����������H����I��S�C���fDI�rH�~����H��L���6���H���%H�{4�U��I�>�ʃ�H��I���ߏ�H�������M��HcVI�D�R�L�_�Ic�H)�H��M�_H��t`H�2�� ��H��L�B��H��I�D8I9���1�H��~!DI��H�L�H��H9�u�I�A�M�_D�SA�F��������s�������I�OH�y�@���x���H������k���H��փ����Z����� �Q���H�$�G{�H�$H�A�A�F�C�0�����SH�E�3���@�~��L�B H�r�$����$H�T$���D$$���H�8H�U�� tgI��I��A��HcJI�WH�T�8H��I9�v�1҅�~9M��~41�L�P�L��H�<σ�I�|�Hc�L9�}9�~H�8�� u�H�x �׉S����L�@�A��H��L�������AWI��H��E��AVM��H��AUI��ATUSH��M�aI�E1�L�T$I�D$L��HchHcFH��H)�E��A��I������M�D$L�T$H��H�I�I�PA���M�NL��A���I�U)�I��A��I�H��L�R�H�@0�H�D�8H��""I9�v~M�UL�Z�L�b�H�Z�H�B���~j�G�H�D�f.�H��H�A�H9�u�H�H�HH��L�H�H�p�H�B�H�B��4H�J�H��[]A\A]A^A_���|��H���AWA�AVAUE��ATI��UH��SH��H��L�2H�L$E��tM�9H�t$XH��L�$���H�|$`L�$�I�����ff�|$P���Ѐ��|$PD�H�KH�EHc�M�$$H�qH��H��H�A�H�~8H9���H�CH�D$L��L�a�H�A�H�D$`H�A�H�A�H�H�FH��H�n�H�V�D��H�q�H�q�I�vH�A�L��A�VH�kI�ċC,�ЅC(u5H��8L��H�kH��[]A\A]A^A_����I�����{{��H�{81��
u��ff.�AWI��AVI��AUM��ATUSH��H��XH�G�q�jH�D$@��ua��@�X�CD�C�����E�H��Mc�M�L��jI��I�UI�u�3I��I�MUM��2���M'H��x[]A\A]A^A_�HcBL�\$D�H�I�{Ic�H)�L�W�H��M�SH��t`H�0�� �L�@ H�pH��I�D8H9D$�]1�H��~#�M��L�\�H��H9�u�H�|$I�A�H�GD�K�q@�������S������H�D$L�`I�|$�@�����H���������H��ƒ��������� ����H�L$�Yv�H�L$I�D$��q�C���L�AIcL�D$0H��I�ĉD$H�D$�pr�H�L$H��H�D$(H�IH�L$ E���aH�D$L�D$0A�T$�E1�l$<H��H��L�t$@M��I��L��H�\$HL��L�l$0M�͉T$8�I��K�T�J�t�H���x�I�FM9�u�H�D$�l$<L�t$@H�\$HL�l$0H�PH�D$H�|$ D�CD+D$H��A��H)�H��H�|$(H�8HcD$8H��H)�H�D$H�PI�VD�C�CH�BH�p�H�>���t&H�vH�~@��@��u4�C��u]�����fD��@����@H��L�@�����H��A����H�B�D�CE��C�;���f.����E��"�����D$H�T$ ���D$8�����x��I�V�D���ff.�f�AVI��L��AUATE��UH��S���%��L��I���q�M��D��H���H��[]A\A]A^鯧�ff.�@AVAUI��ATI��UL��SH��H���BH�~��~9HcЃ�I�����H�L$H�H��L��H��I)�H)�H�L�譙�H�{H�L$H��E1�H�{H���H��tsH����@����@����H��������E������H�E D�@ A��A���PH��H����t�H��H����t�H�(H���H��u�H��I��H�sL��[L��]I��A\A]A^����H��I��H�sL��[L��]I��A\A]A^����fDI�}H��L���v��Mct$H��L��H�KM�$L��I��E�D$I��L��?���LsH��[]A\A]A^�fDH�E H������E1�� �����L�BH��@�O���ff.�@��UH��SH��H�T2H�H�sH���m��H������H�h(H�pH��1�H�X2H��X��H���1�[1�H��]���AVAUATUSL�n I�UI��A���3H��I�E�����H���*������A�����I�u�I��L���@��I��H�E ��uL�eL�M��1�L��H��1��;h�D�p H�CH�] H�I�E[]A\A]A^�fDH���q���H�^8H;FXt�H��8H9C u�H������H�C H��I�E�H�E H����A���H�E�H�@���D�sIc��0��S��Hc�Hc�I��H��H���6���L��H)�� ����[I�E]A\A]A^�L��tH��2H��1�H��H���H�U I�E�H�������UH��SH��H�_�H�UH�EH��H9�r�-DH��8H9�sH�{t�H��H��H��8�!������H��[]Ð��AUATUH��SH��H�WH�H��H9�sH�~H��t�3H�{u)H��8H9�r�H����H��1H�5�%H�81�谤�H���؄�I��H��t�H��H�����I��L9�t=H�MH�UH�C8H��H9���H�[HH��uH��8H9�s�H�xt�H���H��2H�8�q��L��H�X H��H��H���|c��I�t$H�3@��u	H�����uTI�t$H�s@��u	H�����uUH�FH�p@H�s @��u	H�����uIL��躑f�C(H��H��[]A\A]�1��!���H���و�I�t$H�s@��u��H����I�t$�H��豈��ff.�@��UA��H��AWAVAUATI��SH���H��(���L�~ dH�%(H�E�1�I�A����I�����t
��M������t1�� ��M�oI�����t�ƒ���t�� �$M�WM�zH��2HDž8���H�E����A�D$����E1���uM�t$A����A�@HcЃ��*H��H��H��H%�H)�H���H��H9���H��H��$���f�I�W L�*I������=���I���L���@����I�$H�P �B���CE1����\���L�rA���X���f.�Ic�L�M�H�U�H���2H��8���H�����H��`���E1�1�L��H��1�H�� ����|�H�� ���HDžH���DžP�������H��@���M���qI�FL��A�M��H��@���L��H�pP辚�I��H�����HDžh���蔥�L��1�L��H��褋��H�sH���8���H��(���L��H��I���s`���C,L�c�ЅC(��I��8I�EL�cH�M�dH3%(�4H�e�[A\A]A^A_]����5H�H�P �B����������H�H�P �B�����������H�H�P �B���i�������H�H�P �B���M�������H�H�@ �P���aE1��������L�p����� tSM�o�6���f�1��$���f��H�=�)�e�H��@���E1�H��H��H�����I������M�W M�*���@I�W I������@����H��8���L�L$H�����I���Ic�I�yI�H��H��L�� ����8��L�� ������@H��������H9�wiH��8���H�4�H�����H��D�� ���H������g�D�� ���H�����I���f.�H�{81��Eg����H)�H�L��F���f��H����{��uLH�H�����D�� ���H�x ��V��D�� ���H�����I�������9��H��8���I�yH���������f���H���1�H�8H�w�TI��@��H�}�1H���H�8H�w�j�����H�]�11�H�8H�w�I�����H�=�1H��1�H�8H�w��i��@��H��1SH�8H�w�8~�H��H��tH�x�W��H�{H��� u�F��H�XH��[�D�3��H�XH��[�f.���H��H���1H�8H�w��}�H��tH��H���t�@1�H���f���UH��SH��H�t�1H�8H�w�}�H��t+H��H�@ ��uH��tH���"��EH�{H��[]鐔�H��t�EH���[]��AWM��AVI��AUI��ATUSH��H���T$dH�%(H�D$x1��Jr�H��A�G����E1�uM�gH���H��4�#A�H����H��1�L�����L$H��L��H���=q�H�hI��H���I�D$LcD$H��M��I�}L��H�pPjO�Dj脉�L��H��XZ�G��H��t*H�3�1H�H�C8H������L�`A��$� ��H�L$xdH3%(H����H�Ĉ[]A\A]A^A_������I�H�P �B����E1���L�bH�����@H�|$����H��H��4����M��� M�} I�A���/I�����t��L���������� ��I�_I��������ƒ������� �xI�W I���p�H���h[�H��I���a���D����H�H�P �B��� �������H�H�P �B����������H�H�P �B���������H�H�P �B���������{H�H�@ �P���JE1�������L�`����H���X���;����� ��M� I��H��I����H�SI��$�H�|$�D$ H�\$H�JH�T$ 1�H�D$0H�L$(H�D$8H�D$@H�D$HH�D$X4�D$P�ǔ����f�I�_I��M�A�E(�H��D$�Ό����f�I�W H�I������1����G�����H�=0#A���^�H������H�t$`�L�t$`H�l$h臓�������uH�H�x �!Q��I���J���脐�@��H���s���H��t%H� tH�@H���H��H����1���@��AWAVAUATUSH��H��dH�%(H�D$1�H����H��4��L�%�)2H���1A�$H9:��H�E�1H�-.�1H9:��H9}��f����I��H���1L��H��H�H�$�F��H9]u=H�CH�X(H��t0H�H�@H�x H��t�K���H�[H��u��
H�-��1H9]t�H�D$dH3%(u|H��[]A\A]A^A_�@H�-��1f��uH�E�1H���A�I��L��诜�H��I��H��LD�H�Z!E��t�E���)����H���N����E1���Ҏ�f���AWAVAUATI��USH��8dH�%(H�D$(1�����I�������I�$�ƒ��������z����I�D$H��L�l$ H�h@�G�H�D�H�D$H�D$H�$�fDH�D$ H����H�PH������ƃ�@����@���yL9�t	M9������H�BH�@�P��4���
�HL���~]�H��H9\$��H�H�<$H�D$��o�I��H����I��H��t$I�FL��L��H�x藛�����?���M�vM��u�A�$����uBH��1L�0M��t3I�FL��L��H�x�X�����tH�D$ H������M�vM��u�D1�L��L�����<uH�BH�ƒ����H��t\L��H����e�H�=�H��1��_��H9\$����@H�L$(dH3%(��H��8[]A\A]A^A_��H��H�@���H�rH���[���H�vH���N����6��@���]����9����<�\����uH�����t������B���H�P �B���2�����tH�H�ƒ�����@H�Ѓ�H��H������DL��蘉�H�t$L������L����d�H�=,H��1��R�����L����d�H�=VH��1��4�����誋�f.���H���1H����ff.�f���H���1H�8鍡��ff.�f���H���1SH�8H�w�s�H�X H���G����u)�����tH�S1�H�{��<X��H��u/H�[�H��H���t׃�tH�SH�{�[�X���[�fD��UH��SH��H��H�Q�1H�8H�w�ms�H��tbH9huZL�@ L���vF����tJA�t�Rf.�I�@�H��I���u8I�x�1��%E��H��t�H;X�HE�H��[]�@1�H��[]��I�x���D��H������H;X�HE��f���H��H���1H�8H�w�r�H��tkH�H �t�EDH�A�H��H���u0H�y�1��D��H��H��t�DH�BH��u	H�RH��u�H��ÐH�y��RD��H��H��u����H�6�1H�5/H�81���ff.�f���PXH���Q@��H���9p�f���AVH��@AUI��ATI��UH��SH�~ �ufDH�G�H��H��t�H�_�H��� E1�H�؃�H��tlH������������H������������tyH�C D�@ A��A���PH��H����t�H��H����t�H�H�؃�H��u�H��H�uL��L��I��[]A\A]A^��f�H��H�uL��L��I��[]A\A]A^��f�I�}H��L���q_��Mct$H��L��H�MM�$L��I��E�D$I��L��'�[Lu]A\A]A^�f.�H�C H���*���E1��2���1ҾH�=`蘁������������H�= Hc�H�>��fDH�=n��>���H�=FH��4u�H��1H�H�@H�p�\>��@H�=1��G>���H�=���H�=�����f.���S�4���?���H��tH����m�H���1��H�H�x�|F��ff.����PX�H��H�R�1H�8�rF��f���PXH��H�7�1H��H�8�TF��@��H�E�3H��tH��1�H���l�1��ff.�f���H��H����C����uH����H�GH��H�5r���H�@@H�@H�xH���
���ff.�f���I��I��葇��H��1�H��t-H��tH�GH�@ H�M��tH�GI��M��tH�W I��f���ATUSH��H�� H�t$H�$dH�%(H�D$1�H��uSH���
H�1�H�L$H���g�����tH�D$H��u,f�1�H�\$dH3%(�&H�� []A\ÐH��H��ʃ��u!H�����t������t�����f��J���v��u�H���t�H�<$H�D$�]�H��H�������H�{舒�I��H���l���H�T$H��H��tH�|$�k�H�T$H��tvH�H�D$H�kH�C �L�cH�S(�&���@H��1H�8����H�@H�D$����M���D�H����a�H�D$H����������"���f�H��~����/��ff.�@��AWI��I��AVAUATUH��SH��H��dH�%(H��$�1��AH����@�qL�u A�@E�`M�HM�nM����JE�EA��UUH�Q2f�8�oH�C8H�����H�pH�C��� ��H�PH�H�H�r8H9��H�KH�JH��H�@�H�@�L�H�H�@�L�r�L�R�L�Z�H�H�H�P�H�P�E��x	E9��.A�D$I�WI�MD��H�L��L�$H��H)�I�WH��A�UL�$I��H�CL�`8M9����C,H�{8�ЅC(�DL�cH���0��H�w���@��H�-E2f�}��H��$�dH3<%(L����H�Ĩ[]A\A]A^A_���kY��HcRH�vD�R�L�^�Ic�H)�H��M�_H��tWH�
�� ��H�z H�JL�$�K�D#8I9�v�1�H��~#�H��H�T�H��H9�u�M�A�M�_E�P�EH����A�P�����M�gI�|$�@������H���������H���������� �����L�$�U�L�$I�D$��EHA�@���DL�ePL�D$ Mc,$L��D�,$L�l$�Q�I�OE��L�D$ H��H�D$H�L$�+L��A�U�E1�H�\$(H��L��H�l$8L��L�,��T$ I��M��L�D$0I���	fDH��I��H�t�L���LW�H�CL9�u�H�\$(L�D$0H�l$8I�WL�t$H�D$H�|$I��L)�L�u H�8HcD$ M�nM�HH��M�H)�A�@I�WD�`D+$$A�@E�`I�GH�P�H�
�ŀ��H�RH�z�„��E�EA��UU���f�I�U I�v H�L$@H��L�L$L�\$D�D$L�$�xU�L�$D�D$��L�\$L�L$�N���H��2��A���I�~I�V L�$H���H�M@L�\$H� H�T$p1�D�D$H�|$`H�|$@L�T$H�D$PL�L$X�D$@ H�\$HH�L$hH�D$x4HDŽ$�4DŽ$����H�CL�\$D�D$L�T$L�$����������!L��L��H�=
1��-m�DI�NH�U@H���H�|$@I�F H�I H�T$h1��D$@@H�\$HL�d$PL�L$XH�L$`H�D$pL�l$xHDŽ$�4DŽ$��C������fDI�FI�v H�L$@H��H�P �S���������1�L�$�%O�H�{8L�$������������f�H��H�z��� ���H��A��A��UUI�GE�`A�@E�E�i���f������,���f��$H�T$���D$ �,���D��D��D���i���}�f�SH��H��@H�m2dH�%(H�T$81�f�;uSH�N2f�;��H�;2f�;��H�(2f�;��H�D$8dH3%(�"H��@[�fD����v5�� ����@u�H��2f�;t�1�1�H��H���R��t���@��u�1�1�H��H���tR��t���D�� ���@t����i���1�1�H��H���BR���R�����L���@�� �s���1�1�H��H���R���(�����"���f.���������@�����G���f�H�2f�;����DH��2f�;�����a����=|�ff.�f�AWAVAUI��ATUH��SH��dH�%(H�D$x1�H���1�����H���1�����L�fI�D$L��H+PH��H����B�M�d$M��t]A\$!�tTI�}puMM�}8M��tM�M�����
�
���d���������ud@H�D$xdH3%(�wH�Ĉ[]A\A]A^A_�f.�L�fI�D$L��H+PH��H���$B�M�d$M���I����I����H�U%L�E��H�J�A�����M���w���A�\$�l���H�EI�EH�|$ 1�L��\$ L�l$(H�D$0L�D$8H�D$@H�D$HH�D$PH�L$XH�D$h4�D$`�~�H�m����fD��L�E��A����GM������A�L$����I�UH�|$ L��$H�EH�T$01҉L$ L�l$(L�D$8H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�`}�H�m�$�W�����L�E��A����M���&���A�L$����I�UH�|$ L��$H�EH�T$01҉L$ L�l$(L�D$8H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�|�H�m�$�����L�E��A�����M���}���A�L$�r���I�UH�|$ L��$H�EH�T$01��D$ L�l$(L�D$8H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�|�H�m�$���f���L�E��
A�����M������A�L$����I�UH�|$ L��$H�EH�T$01҉L$ L�l$(L�D$8H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�{�H�m�$�V���H�E��L��D$L�D$�$���I�U�$L��L�D$H�|$ L�l$(H�T$01҉L$ �L$L�D$8L�$H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`��z�H�m�D$�L$L�$����@H�EL���L$�D$L�$�R���I�UL�$L��H�|$ L�l$(H�T$01�L�D$8�D$ H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�Oz�H�m�L$�D$L�$���f�H�E��L��D$L�D$�$���I�U�$L��L�D$H�|$ L�l$(H�T$01҉L$ �L$L�D$8L�$H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�y�H�m�D$�L$L�$�]���@H�E��L��D$L�D$�$����I�U�$L��L�D$H�|$ L�l$(H�T$01҉L$ �L$L�D$8L�$H�D$@H�D$HH�D$PH�D$X4H�D$h4�D$`�
y�H�m�D$�L$L�$����@H�E��L��L�D$H�$�x���L�D$H�$1�I�EH�|$ L���\$ L�D$8H�L$XL�l$(H�D$0H�D$@H�D$HH�D$PH�D$h4�D$`�xx�H�mL�D$H�$�����t���ATUSH��pdH�%(H�D$h1�H�5�1H�H�kH���v��H�S8H�����H�r���@uLL�%#2fA�<$���C,�ЅC(��H��8H�kH�D$hdH3%(��H��p[]A\�fDH�xH�P H�D$H���H�HL�EH� H�T$@1��D$@H�|$0H�|$H�\$H�l$ L�D$(H�L$8H�D$HH�D$X4�D$P�\w�H�D$�>���f�H�PH�p H�L$H��H�R �I���.�����(���f�H�{81��5D������{s�ff.�AWAVAUATUSH��H�{�1L�0����I��H�:��I��I��D��@����A���tA��uZ��ur����1���uxA�ى�M��L��A��L���zt�� H��t<H����Y�L���rG��t�A���1�L���lo���%H�=���@�H������뽾'H�=��@�H��눾+H�=e��@�H���o����2H�=��@�H��H�]�1L�0�L���H�N�1H�56H�81���z�@��uH�����t�������H��1H��i��H�52�H��H��1��z�D��PXH��H�
w�1��H�9H��H���D����e���D��ATI��UH��SH�_I9�t+H�C H�%�H=UUt%�E,�ЅE(u+H��8H�]I9�u�[]A\�f����H�]�DH�}81��B���AVH��SH��8H�|$H�|$PH�t$ H�T$(dH�%(H��$(1�H�HH�D$H�D$8H�@H�L$DŽ$ H�D$@4H��$�0?�������H�D$H�@���ǀ���uw��H�D$(H����H�t$H�F(H�FH��H�\$H�|$ H���H�D$��H�D$8H��$H�CH�D$8H��$(dH3%(��H��8[A^�@�F���uH�D$H�XxH�D$H;CtlH��$H�D$H�x�/��fDH�|$H�D$@H�GH�D$(H���G���H�D$H�P �ufDH�B�H��H��t�H�B��+����L�t$H��L�����I�Fǀ�I�FxH�CH�D$8H��$I�F�
����o���H���1ATUH��SH��H��L� 1�H��tH�����Q��H��L��H��H��[]A\����ff.����H��8dH�%(H�D$(1�H�<$H�=
�H�t$H��T$L��H�L$L���D$ �S�H�T$(dH3%(uH��8���n�ff.�@��AUI��ATI��UL��SL��H��X�T$H��H�|$H��$�H�$dH�%(H�D$H1��2�H��H��H�t$ H�D$�D$H�=^�L�l$ �D$0H�$L�d$(H�D$8��$��D$@��R�H�|$H����z�H�L$HdH3%(uH��XH��[]A\A]��n����H��8dH�%(H�D$(1�H�<$H�=
RH�t$H��T$L��H�L$L���D$ �iR�H�T$(dH3%(uH��8��m�ff.�@��H��8dH�%(H�D$(1�M��t_H�t$H�t$HH�L$�L$@H�<$L�ljT$D���D$ �E��H���1H��H�=4�H�
H������H�L$(dH3%(uH��8�H��1H�5H�81��|u��l��H��8L�D$ H�|$(H�t$H�T$H�L$dH�%(H��$(1�H�|$@H�|$PDŽ$ H�D$ H�@H�D$8H�D$ H�$H�@H��$�:�������H�$H�@���ǀ���u`�H�L$(A�H�t$H�|$(H�D$��1�H��$H�<$H�t$H�OH��t�H��$(dH3%(uxH��8�fD���u�H�L$ H�IxH�IH9L$(u�H�t$8H�|$ ���H�D$ H�T$ H�@H�@H�Bx1��u���f.�H�$H�D$@H�B�6����k�f���H���1L��}���ff.�f���SH��dH�%(H�D$1�H���1H�L$H�I���@����t$��uH�\$dH3%(uH��[�H�{�*���k�@��UH��SH��H��H��t�Kw��H��H��H��H��[]�N�f�H�)�1H�8��?���ff.�@��H����w7��tH�>1�H�5�(H���JN�f.�H���1H�8�?�H���к1��@V�ATU��SH��H��pdH�%(H�D$h1���t^H�H�KL�`H�A H�H��%�H=""�`H=33��H=t<H�D$hdH3%(�H��p[]A\��H�A�1H�I9@u���fDH�-k2f�}��H�C8H���F��H�pL�Ń�����M����H��u�I�������s���I��ƒ����b���A�x �W���H
I��I���DH�C8H�����H�p����&���H�AH�|$H�����D$H�\$H�L$ H�D$(H�D$0H�D$8H�D$@H�D$HH�D$X4�D$P�Tl�������@H�C8t?H���1��H�@����{M��������L����f�H���
��H�@L�Ń������M�������A�D$	������H��u)I������t I��у���uA�x u��uI�@H�SL�$H�J�D$H�\$H�T$ H�L$(H�D$0H�D$8H�D$@H�D$HH�|$�L��H�D$X4�D$P�2k�L�$����f��H��u.I������t%I�������uA�x u�u
I�PfDH�CH���H�|$L�$H�HH�T$H��D$H�\$H�D$ H�L$(H�D$0H�D$8H�D$@H�D$X4�D$P�~j�L�$�S���DH�sL�$H���Ph��H�S8H���W��L�$H�RL�Ń������H�@H�pH�������F�	���H���I�������I��ƒ�����A�x �����M�HL�SL�$L���g��H�P H�HH�@I�zH�@ H�|$(H�|$H�T$@��D$H�\$L�T$ H�D$0H�L$8L�L$HH�D$X4�D$P�mi�L�$�K���@1�1�H�L$H��L�$�+;�L�$����������f�A�D$�����H��u(I������tI�������uA�x u�uI�PH�CL�$H�H�D$H�\$H�D$ H�L$(H�D$0H�D$8H�D$@H�T$H�U����A��u/I������t&I�0������uA�x u��u
I�PfDH�qH�|$L�$H�T$H1�H�t$(H����D$H�\$H�L$ H�D$0H�D$8H�D$@H�D$X4�D$P�
h�L�$�����H��u*I������t!I�0������uA�x u
��uI�P�H�qH�|$L�$H�T$H�H�t$(H����D$H�\$H�L$ H�D$0H�D$8H�D$@H�D$X4�D$P�jg�L�$����A�D$	�8����A��u)I������t I��у���uA�x u��uI�@H�SH�|$L��L�$H�JH�T$ 1��D$H�\$H�L$(H�D$0H�D$8H�D$@H�D$HH�D$X4�D$P�f�L�$����H��u,I������t#I�8A��A��A��uA�x u��uI�HL�PH�x L�D$L�HL�^H�$M�R H�t$ H����H�|$@H�|$�D$H�\$L�\$(L�T$0L�L$8H�L$HH�D$X4�D$P�f�L�D$H�$�����lb�A��������H��3����H���1H��H��H��H�H�z1����ff.���AWE1�AVI��1�AUI�͹ATUH��L��E1�SH��H�v�1H�T$H��L� I�\$�c�L��H�[I���
��I�T$H�s8H�J�H9�vxI�L$H�|$H�B�L�z�L�r�H�B�H�H�CH��L�k�H�C�#DDH�Z�H�Z�H�B��I�\$H��A�D$,��A�D$(u#H��8H��I�\$H��[]A\A]A^A_��K8��I�|$81���1���f.���H��tH����(�����H���AWAVAUI��ATUH��8SH��H��8H9�t�H�{�oe�H�H9�u�I��H�[e�I��`�Oe�M��`I��� �RI�VH�T$���M�v H�|$~iE1�f�K�<��e�O�<�I��� �7H��H������:I��H��~1��I�<�H����d�H9�u�I��L;d$u�I����d�I����d�I���H������I����{d�I����od�I����cd�I����Wd�I��X�Kd�I��hH�������I��x�K@�I���H��t�:@�I����>�I����A�}^�H��[]A\A]A^A_���I��I��A��L�|$�uVI�����f.�I�o�u
M� ����@L���5�I� t������c��P����c����L���5�I� �@����fD��ATI��US��H��H��H�e�1H�(��5�L��H����<�u*H�����t"H��у���tH�р�H�xH�t��tH���hH��H��[]A\�<;�@H��H�D$�Kg�H�D$��@��H��H���1H��H�H��x�-�H���D��H����AUATUSH��H��H���L���HLJ�H��tH���^�H���8��H��(H���ǃPH��0H��(H��H��H��H��H��H��H��H�� H��H��8H��@H��8H���DH�oL�/�$l�H��A��H��H��u�H���H��t%1�H�5����A�H�����*�Hǃ�H���H��t��*�Hǃ�H���A���H����k�M��tL���X�H����l���H�� �`���H���_�H�A�1H�H��1�[]A\A]�D1��D��H�H����ATUSH�WH�_L�$�L9�u�gf�H��8I9�tUH�{H�k �(�H�{H�C��(�H�{(H�C��(�H�C(�Eu�H�m�H��Et�H�}H��8�(�H�EI9�u�[]A\�D����SH�G H��H�x0�K;�H��8H��t�:;�H�{ [�0�����AUATUH��SH��H�7H��t'H�_H�GH�{L�,�H)�H����\�L9���f�H���t1H���t'H���1H;(tH������H��xH����l�H�}xH�������H�}`H�������H�}@�;�H�}HH�������H�}PH�������H���H�����uhH��[]A\A]�DH�x�?#��H��8I9��;���H�{L�c �#�H�{�#�H�{(�#�A�$u�I�D$�H��t��DH��[]A\A]��^���^��n���fD��^��M���fD�^��#���fD�^�����fD��SH�G H��H�x0�9��(������uH����H���H������H���H������H���H������H���H������H�{8H������#H�{@H������(H��8H��t�X9�H�{ ���H��0H������;H�{(H������H���H�������H��H�������[�H��H�������H��H�����������c]�H���H������������C]�H���H���������*]�H���H���������]�H���H���������\�H�{8H�����������\�H�{@H�����������\������[�\�f.��\�����fD�\�����fD�\����fD�{\����fD��H��H�5љ1�6��H�H��H�Ѓ��ff.���H�7H�W�@��H��H�WH�N8H�P�H�7H�GH9�vXH�WH�VH��H�@�H�@�H�@�H�@�H�F�H�F�H�F���yH�P�H�p�H�p���H���.��ff.�@UH��SH��H��H�w�k@�H��tfH�C �cP�H�C(H�@xH�@`H�@HH�@PH�CHǃ��X�������CP���	ЈCPH��[]�DH�C�H���H��H���$f�H�{ H��H�������j�����H�H�GH�G�@��UH�4�1�SH���C�H�5�1H��H����H��H��H�n�1H��H�H�@8H�@H�C����H���1H�C@H�H���H�C8H�C H�@`H��H��[]�ff.����H�U�1ATI��USH�H���H�@ H�PH�H��H�{���Z�L��H���&�H�{�H��[H��]A\���ff.���U�SH���<X�H���/X�H����H��H����H�}H��1��@H��H�E�HDžH)������H�H�{H��H�HǃH��H)������H�H��(H�=��ǃPH��0H��(H��H��H��H��H��H��H��H�� H��H��8��XH��@H��8ǃ�����u	����H�=��H����X	���@�H�=�H����;	����H�=��H����	��H����?H���wHǃ��H=�?wHǃ�����H��H���H�6�1H��^���H�]H��1��`���H�U H�͹1H��H�H��[]�4���H�M�1�"�H�=�H���c��"�f.���SH�Ĺ1H��</��H��x�;J�H��`�k�H�=H�1�'H����WB�H���H���[�����H�e�1H�H����f.���USH��H�ϻ1H�8�1H�8H�+�m'�H�6��H�5�1�H���H�H����W3�H�H�����J�H��H��H�5�[H��]��P�ff.����H�Ÿ1H�HH�ff.�AWE��AVI��AUI��ATI��UH��L��SH��HdH�%(H�D$81�H�T$����H����H�ø����H�t'H�L$8dH3%(��H��H[]A\A]A^A_�@L���]�H�D$(H�D$ E����H���y��A�ǃ�����thA�H�|$H�ھ���p��H��D��L��jH���I��H��HDž���L�D$0�*�ZYH���H����������<����)�H�8u6A��D����������P��H���1H�5��H�81��X�H�����L��H�D$�:Y�A��L�D$� �����fDAWAVI��AUM��ATUSH��H��(H���1���T$H�L$H�(D�L$�PA����D�������I���
A���#M�fL��A�H��H��L�����…���I�~H���H�މT$��b�T$H��I����H�@H�������<tv<tB����%H��H��M��L���D$ H��PL�D$ �L$�)�ZYH��([]A\A]A^A_ÐL����T$��T$H��tH�@H��t
���<u�H��H��L��H��D$ PAURL�L$0L��D�D$,��H�� H��4u�H��(L��[]A\A]A^A_�DI���������I����M�������L�=Y�1A�H��1�M�'L��H������…�t�I�?����L�=��1A�H��L��M�'���H����"���������1�H����J���L�=!�1A�H��M�'�{���L�=y�1A�H��L��M�'�]���DL�=ɰ1A�H��M�'�;���L�=Q�1A�H��L��M�'����H��L���r\��f���E��A�4�>���ff.���E1�A�4����ff.�H��(H��dH�4%(H�t$1�H��H�<$��H�D$H���7�1�H��4tH��H���҃�H�L$dH3%(��uH��(���L�@AWAVAUATUSH��hH�|$dH�%(H�\$X1�H���1H����5H�D$H�@I��H�I��H�����H�|$L��L���b������I�GI�nL��M��L�h�I�FI��I�A��uI�����tH�0�1H�I9E��>M�l$H���W�I�EI�D$H��I�I������I�FI�VH�|$1�I�L��n��L��L��I������H��4��4I�WH�H��I�W�e��H�|$L��L���������M�fI�VI�FL��L��I��I�A�D$H��7L���ǪH�|$H��L��H��L�bn���M��H��4�|HH�SH�H��H�S�e��H�|$L��L���������I�WI�vL��M�nH�|$H�j�I�VI�oI�I��H�t$�4a��H��I���C�H�t$H���t_A�L��L��H�����c��H�|$L��L���������I�FM�nL��H�|$H�D$I�FI�I����`��H�|$L�`H���be��A��I����^H�t$L��H��L���R�H�|$�xe�����EG�c��H�|$L��L���������I�NI�GM��I�� I�^�I�n��L�`�L�x�M�u��I�m���?G���Q3I��A��t&A��� _I������_A������_A����^I�������^A�$������^H��L��L�D$H�L$�x�H�L$L��H��H���%���L�D$H��I����U�uH�����t�������RH��L��H�=�6�X�����H�|$L��L���������I�wL��I�~H�V�����5���u1�Ѓ�����TH����T���y\H��4�g[H���9���HE�H�F�H�AI��I��a��H�|$L��L���l������I�NL��I�FL��H��I�O H)�H�9@���^AH��wH����_A�H�EH�HH�MH�H�CI��I��c��H�|$L��L����������I�FH����6I�WI�NM��H�L$ I��H�Z�H��H�Z�I������L$���\H��� �x:H�kH�KE1�H�L$H����RL��L�l$(I��I��H���7H�D$H�4�L$L��H�|$�y�H��H����BH��L9���BH��� u�H�C ����H�|$L��L���������I�^I�OL��H�4�H��H�yH)�H�s�I�H�1I�NI��I��`��H�|$L��L����������I�^L��H��I)OI�NI��I��`��H�|$L��L���������I�^I�GL��H�x�H�4�H��H)�H�{�I�GH�x�I�FI��I��b��H�|$L��L���>������I�FI�vM��I�nH�D$H��������A��H����ߚ�I�GL��L�@�I�F I��I����Ϛ�H�w���Hc�H�>����H�|$L��L���������I�GH�H�H�p�H�H�I�NH�p�L��I��I��`��H�|$L��L���{������I�^L��M��I�H���,BH�EH�I�|$I��I��e��H�|$L��L���2������I�FM��M��M�GH�4�H��H��t/L��I�<�I�P�H)�H)�H�2H�H��H��H�p�H�JH9�u�I�AM�BI��I�A�a��H�|$L��L���������I�GH�H�H�pI�wH�H�H�I�NL��I�I��`��H�|$L��L���t������I�NL��I�oI��I��b��H�|$L��L���C������I�GI�VL��H�x�H�p�I�FI�I���i�I�WH�J�I�OH�B�e��H�|$L��L����������L�-��1I�^I�nM��I��I�fA�}��TH��H����I��H���`@I�D$�H)�H��I�T$L�j��#��H�|$L��L���������I�GM�fL��L�h�I�FI�I��L���f'�H���WKI�������?I�WH�B��c��H�|$L��L��� ������I�GL�t$L��H�h�L�`�L��H��I�L��I��H�l$�&�H��I����&�H��I���LBH���
BM9��)BH��L���D'�H�SH�J�H�KH�B�H�D$�`��H�|$L��L���������M�nM�_L��L�t$I�^H��L��E��M�c�I��I�A��Mc�L�d$@I�A��u
I�������5L��L�\$(L�T$ D�L$��)�D�L$L�T$ H��H�D$@L�\$(��>H��H��� �p4H�r H�RH�D$@H�D$M��tZM�c�A���cAH9��.C1�H9��ZL�T�1�I�
I��H��I��I�L$�H�H9�w�E��tH��H)��D�I�$H�D$H�D$HA��H�D$@J�D+�H��HEH�D$�`��H�|$L��L���E������L�-��1L��I�nfA�}�4QH���	�I�OH�qI�wH�H�CI��I��c��H�|$L��L����������I�I�NL��M��I�vI�_ H�W�H��t1�f�H�[�H��H��H9�u����PHc�H��H�EH��H�I��I�|$I��e��H�|$L��L���l������I�VM��I�nM��I�_ H��t1�H�[�H��H��H9�u�H��}>H��H)�L�3I�EH�PI�UL�0I�D$I��I�A�d$��H�|$L��L����������M�GA�vL��L��I�NI� I�P���H��t1�f�H��H��H��H9�u���OHc�H��H�CI��L�EI��I��c��H�|$L��L���v������I�NL��M�FL��I�G H��t1�DH�@�H��H��H9�u�J��H)�H�H�GH�HH�OH�H�FI��I��f��H�|$L��L���������I�VL��I�I��`��H�|$L��L����������I�~L���aJ�I�OH�qI�wH�I�FI��I��c��H�|$L��L���������I�vM��M��I� ����:���](���H������4H�u	H�PH��u	H�@H��u�I�@H�HI�HH�I�AI��I�A�a��H�|$L��L���
������I�OI�vL��H�yI�H�1I�NI��I��`��H�|$L��L����������H���1L��M�ff�;�zML���4�I�OH�qI�wH�H�EI��I��e��H�|$L��L���s�������I�wL��I�^M��H�F�H��ƀ��-����H��H)ք��l-H�{��8@�I�L$�H)�H��I�T$H�B�H�EI��I��e��H�|$L��L���������I�^I�wM��H��H��H)���?�I�O�H)�H��I�WH�B�I�FI��I�A�d$��H�|$L��L���������I�GH�x��w�I�WH�B�I�VL��I�I��`��H�|$L��L���K�������M�nI�FI�^L��I�I�WI��1�J��L��H)��:��H��H�D$�&�H�T$H��H���<�I�W�L)�H��I�GH�X��e��H�|$L��L���ǿ������I�GI�VL��M��H�h�H��t
��H���*�H���3�I�D$H�h�H�CI��I��c��H�|$L��L���h�������I�GH�p�H�x��N�I�WH�J�I�OH�B�I�VL��I�I��`��H�|$L��L����������I�^I�FI�wM��I�I��H��H��H)���I�I�O�H)�H��I�WH�B�A�d$��H�|$L��L��躾������I�GI�nL�t$ L�|$(H�H�H�P�I�FI��I�H����'H����'H�D$L�@I�x ���I��H���;SI�$M�l$���8M��M��u�I�x���H��H�����'��H�|$L��L����������I�FL��L��H�D$I�GL�h�I�FI��I�I�G�uH������C4H�K �t!�^'�H�A�H��H����B'H�y�1���H��t�@I��I�D$H���DRI�|$H��t�@��uH�����tH��у���t��u�I�$��u�H�t$L����'�H�k�e��H�|$L��L���&�������I�WH�JI�OI�NH�L��I��I��b��H�|$L��L���������I�^L��I�oL�t$ H��M�fM��H�\$I��I�@���� H������� H�EH�u��H�^ ��I9$��JI�\$����B�� ��:H�UH���kBH��H��4�� �O�H������� H�|$�3A�H�=ԳH��1��r/��p D��H�|$L��L����������I�GI�w L��L��I�VH�H��u�H�F�H��H��t�H�|$��	��H�EH�kI��I��e��H�|$L��L��蠻������M�fL��I�VM����'I�w H��L��I��I�/��0'f.�H�F�H��H��t�M���
'L��H�|$H��I���3�H�SH�JH�KH�I�/�e��H�|$L��L���
�������I�VM��I�nM��I�_ H��t1�f�H�[�H��H��H9�u�H����&L�s�M����7A����=H��1L�0�&��H�|$L��L��艺������I�O I�FM�fL��L��I��I��t ��"�H�A�H��H�����"H�y�1���H��t�@I��I�EH����NI�}H��t�@��uH�����tH��у���t��u�I�U��u�L����H�SH�JH�KH��e��H�|$L��L��軹������I�WI�OH�rI�wH�
I�NL��I�I��b��H�|$L��L���|�������I�FM�oL��L��M�FH�D$I�GL�`�I�FI��I�A����0I�������0I�E�ƒ����u0���l0��u9M�M% I�I I9�VII�PH����/I�EH�T$HA�uH9���/H�t$L��L���[��H�k�e��H�|$L��L��诸������I�^M�fH��������u&H��M�f�ע��H; �1��#H;{�1��#M�'H��M���4�I�WH�JI�OH�A�$$��H�|$L��L���8�������M�fL��蔢������DL��L���q���H;��1��#I�WH;Q�1H�r���#H;X�1��#I�^L��I�I����N�I�o�#��H�|$L��L��起������I�GI�vL��M��L�h�H�h�I�FI��I�A����GI�������GA�E�����}GI�G�uH�����tH��ƒ�����5H��L���Z��I�l$�c��H�|$L��L����������I�WH�JI�OI�NH�L��I��I��b��H�|$L��L���޶������I�GL��L��H�x�H�p�I�FI��I�@��u
H������B-H��H!����H���1H��������mG�H��4�s�H�UH�J�H�MH�B�c��H�|$L��L���L�������I�WL��L��H�B�H�z�I��I!�A���x$L��1M�A���`$H	�H��4�S$H�z�I�H�B�I�FI��I��a��H�|$L��L���е������I�GA�vL��L��I� H�P����BHc�H��H��H�CH�EI��I��e��H�|$L��L���w�������I�FI�^M��M��H�D$I�FI��I�H�D$H�h8H�H��tmH����,H9��-L�d$L�d$�"f����H�H��t:H����,H9���,A�D$,��A�D$(t�I�|$81������H�H��u�L�d$H�kI�EH�(H��I�EA�d$��H�|$L��L��觴������M�OM�^M��M��H�-��1H�ӓ1I�Y�I�O H�H+EI�[I��t�H�A�H��H����H�y�1��!�H��t�H��f�H�J��u/H������t&H�	�΃���t���E/���9/@H�RH��u�I�@I�SH�EI��M�JI�Y�I�A�`��H�|$L��L��蹳������M�FM��I�nM��H��1I� �H�I9��+I�CH�PI�SH�I�BI��I�A�b��H�|$L��L���V�������I�WI�^I�nI��H�R�I�H��� +I�o�#��H�|$L��L����������I�WI�^I�nI��H�R�I�H������H�L$�A,�D$�ЅA(��=H��I�oI��I��#��H�|$L��L��謲������I�WI�^I�nI��H�R�I�H�������H�L$�A,�D$�ЅA(��=H��I�oI��I��#��H�|$L��L���E�������H�\$I�nI��M�7�C,�D$�ЅC(�e=I��I��I�� ��H�|$L��L���������I�GI�W0I��L��H�X�H��M�7I�GH9��AFI�G H�L$L� �A,�D$�ЅA(�W>H�L$H�E8A�� H�A��H�U@H�M8I��H�H��I��H�U@�!��H�|$L��L���h�������I�VI�FL��L��I��I�H�%���H9B0��=H�|$1�L����H���%���H��4��)H�SH�H��H�S�e��H�|$L��L���������M�fI�VI�FL��L��I��I�A�D$H��L���!�H�|$H��L��H��L�LZ�����H��4�&)H�SH�H��H�S�e��H�|$L��L���w�������L��I�^L�t$8H��L�|$(I��I�I�GH��H��H�\$0H��H)�H�3�1H�����;A�H����L�#H�D$HH�i��D$�D$L�d$HH�D$ H���eH��L�+A��tA��t�D$�
�D$�A���lI������_A�E�����1D�����tA�E����u.D������A��uI�����tA�$�����`L�D$ ���L��H�=93���L��L��H���4�������L�l$HM�����H�|$L��L���������L��I�^L�t$8H��L�|$(I��I�I�GH��H��H�\$0H��H)�H���1H����<:A�H����L�#H�D$HH�i��D$�D$L�d$HH�D$ H���OH��L�+A��tA��t�D$���D$�A����I�������A�E������D�����tA�E����u.D������\A��uI�����tA�$�����=L�D$ ���L��H�=h93�S��L��L��H����������oL�l$HM���g��H�|$L��L���w�������I�GL��I�^M��H�x�H���mH�L�1H�
�����QH�P�H�EI��I��e��H�|$L��L����������H��1L��I�~H�����7H��4�-I�WH�JI�OH�:I�VI��I��e��H�|$L��L��責������H���1L��I�~H������H��4��I�WH�JI�OH�:I�VI��I��e��H�|$L��L���R�������I�GI�nL��M�nL�`�H�@�L��H�D$����H��H���J��H�E H���
��H�P���<����H�M�1H9B����H�t$L��L����K��H��4����H��I�WH��H�H�J���I�OH�B�H�CI��I��c��H�|$L��L��蒫������I�GI�VL��L��H�p�H�x��oK��H��4��I�WH�J�I�OH�B�I�FI��I��c��H�|$L��L���4�������I�GL��L��H�H�H�x�I�FI��I�H��H!���#H���1H�����H�����H��H�H��H9�u�H���t4H��H�H��H���,8H��H��?H��H�:��HD�H�DH��4����H�UH�J�H�MH�B�c��H�|$L��L���g�������I�WH�JI�OI�NH�L��I��I��b��H�|$L��L���(�������I�O I�GL��L��A�vH�y�H�P���H���p6Hc�H��H��H�EH�CI��I��c��H�|$L��L���ǩ������I�wM��M��H�~�H�N�H��H!Ȩ�WH���1H�����@H9�A��LL�H�F�I�AI�@L�V�I��I�A�`��H�|$L��L���H�������I�wM��M��H�~�H�N�H��H!Ȩ��H��1H������H9�A��LN�H�F�I�AI�@L�V�I��I�A�`��H�|$L��L���ɨ������I�GI�nM��M��H�X�H���W��H��H���<G��H�E H��tH�P���<uH��1H9B��M�e�q����H�|$L��L���W�������I�WM��L��H�z�H�J�H��H!Ȩ�FH�(�1H�����/H��H�E1�I�@H�H��H��I�H��H��������I�L9ȸL���$H��H��H�DH��4�
H�SH�J�H�KH�B�I�D$I��I�A�d$��H�|$L��L��莧������I�FI�VI�NL��I�H�|$L��I�����I�WH�JI�OH��c��H�|$L��L���>�������I�WL��L��H�B�H#B��x H�=�1H�?���a H��H�z�I�H�B�I�FI��I��f��H�|$L��L���Ԧ������I�GL��L��H�x�H�p�I�FI��I�@������H���������H�
�1H�GH;��H��1H;�u��H�n�1H�����^���:�H��4�O��H�UH�J�H�MH�B�c��H�|$L��L���(�������I�wM��M��H�~�H�N�H��H!Ȩ��H���1H�����yH9�A��LO�H�F�I�AI�@L�V�I��I�A�`��H�|$L��L��詥������I�wM��M��H�~�H�N�H��H!Ȩ�a
H�z�1H�����J
H9�A��LM�H�F�I�AI�@L�V�I��I�A�`��H�|$L��L���*�������I�WL��L��H�z�H�r�I�VI��I�H��H!��QH��1H�����:H��H�����H��H��H�H9���*H�����*H�@�%��-��H�|$L��L��芤������I�OL��L��H�y�H�q�H��H!���H�[�1H������H�F�H��|5H��4�wH�KH�Q�H�SH�A�H�EI��I��e��H�|$L��L����������I�wL��L��H�~�H�N�H��H!Ȩ��H�Ԇ1H�����pH��H��H)���4H��4��H�sH�V�H�SH�F�H�EI��I��e��H�|$L��L���y�������I�GM��I�nL��I�^L�h�L���u
I������1H�
?�1H�	f���Gu\D������0H�T$HH��uI�����tA�E������ L��H�������JH���RM�$�I�GL��M�'H��H�BI�D$I��I�A�d$��H�|$L��L��詢������I�GL��L��H�x�@����H���������R�H��4��I�WH�B�I�FI��I��c��H�|$L��L���?�������I�^L��H��I�_ H)�I�OH�3H�yI�H�1I�NI��I��b��H�|$L��L���������I�VI�NI��M��M�7L��L�|$L�����H��I�D$ H�(A�G,�D$��A�G(�9.H�L$I�D$8�� H�A��I�L$@I�T$8I��H�qI��I�t$@H��"��H�|$L��L���\�������I�G I�^L��H�@�H�4�H��H)�H�0I�GH�xI�H�0I�FI��I��a��H�|$L��L����������I�FI��L��H�|$M�7��H��H�D$��1H�@I��H�I�� ��H�|$L��L��赠������I�GL��L��H�P�H�H�I�FI��I�������H������{��H���1L�BH�0H�ޅ1L;��I9��T��H�M�1H�����=��H��H�����H��4�(��H�UH�J�H�MH�B�c��H�|$L��L����������M�fI�FL��I�OI��I�wH�|$I�IcD$L�_V1H��H)�H��I�$A��I�O�A+T$Hc�H��I�WH�B��e��H�|$L��L��腟������I�GL��L��H�x�I��A����H���������+��H����H��4�qH�EL�`�H�CI��I��c��H�|$L��L����������I�GL��L��H�x�@���(H�������
���H��4�I�WH�B�I�FI��I��c��H�|$L��L��褞������I�GM�fL��M��H�H�H�h�I�FI��I�����H�������{H�g�1H�H9A�gH�K�1H�����PH��H�L$���H���:H�L$H��L��H�����H��4�I�WH�J�I�OH�B�c��H�|$L��L���������I�GL��L��H�x�H�p�L�`�I�FI��I�@������H���������H�31H�GH;�HH���1H;�~��H�w�1H�����g��L�����I��4�U��H�EH�P�H�UL�`�c��H�|$L��L���.�������I�WL��L��H�z�@��t9H��1H����u&H��������H9��BH�����H�G�M@��u
H������
H�]����H�&z1�L$H�0H����L$M9������y�L�d$HH��H�����H�D$(H�@�H�\$(H+T$0H��H�CL�`�H�D$8�`H��y1�L$H�0H�����L$M9��������L�d$HH��H�����H�D$(H�@�H�\$(H+T$0H��H�CL�`�H�D$8�`M�uL��H���{#�I�F�I�EI��H�(H��I�EI�����H�t$H���  �H��I�EH�PI�UH�H�D$ �`L���>���H��H���1H�0H9���D���������e�L������H��H�ʀ1H�0H9���D����������H�D$H�@I��H�I�� ��H�|$L��L���
�������I�FI�WI��L����H�Z�M�7����A��Ā��1�H�D$H��1ɿH�@D���E1��.��h H��H��H�\$XdH3%(��+H��h[]A\A]A^A_Ã��{/A����+I�������+A�$������+L��H��H�����I��H���2�uH�����t�������H��L��H�=���L�����PH�=,�1��5�D�D$��H��|1�L$H�0H����#�L$L��L����������M�gH���H!�I��I�$I�GI�/����D$�4H�*|1�L$H�0H����#�L$L��L���a������&���H��H��H��H��H	Ш�P
H�7|1H�����9
�������$�O�ȃ�����#�Af/�A��LF����H��H��H��H��H	��c
H��{1H�����L
���������O�ȃ������A�Y�H�0fH~�H9�t+fH~�H��<��������H��H����������z�H�y����H������Ui�f.�H��H��H��H��H	Ш��H�{1H��������������!�G�ȃ����:!�If/�A��LF��Z�H���B��I�G(I�GH���1��I�o�#H�y��c��I��H���J���h�f�H��H��H��H��H	Ш��	H�Pz1H������	���������G�ȃ������If/�M�I��A���0�H������S��H����&�H���A��H����6��I�o�#H���I�G(I�GH��������&H�������&�������&H��H����H�\$(H�SH�J�H�KH�B�H�D$ �`H�y��<��I��H�������vg�H��H��H��H��H	Ш�A	H�(y1H�����*	�������^�O�ȃ����
�Af/�M�I��A���i�H��H��H��H��H	�FH��x1H�����/�������
 H�W�ȃ�����H�AH�T$�L$H�D$�D$�"�H�0fH~�H9�t+fH~�H��<�������(H��H�����������I�GH�|$�H�P�H�p��,�I�WH�J�I�OH�B�I�FH�D$ I��I�H�D$ � 葷��H��H���v3��H�C H��tH�P���<uH�0y1H9B�-I�,$���H��H)�L�3I�EH�PI�UL�0I�D$I��I�A�d$H��M�����I�OH�qI�wH�M�'A�$$I�GH�p�I�^L���g+�I��H�mI��#H�|$��+��L��H��A��H���H��'���	
H��+��H��`��(�	�H�SL��H�JH�KH��eI�w L����j�����H��������H�@H�x���c��H��H��H��H��H	ƒ���H��v1H�������	�H��4�g��H�UH�J�H�MH�B�cH��H��H��H��H	Ш��H�4v1H���������������G�ȃ������\AH�0fH~�H9�t+fH~�H��<��������H��H�����Z����H��H��H��H��H	Ш��H��u1H�����m���������O������J�FH�0�X�fH~�H9�t+fH~�H��<�������]H��H��������������H�D$H�P�����u H�����t�����������ǂ�������H�|$L��L��译�����H����H�\$HH�H�����L��I�GM����H��H�rH�ƒ����H�ht1H�����=���L���0��H���,���H��L�����H��4����I�WH�B��cH��H�����}��H������NH��H	��@H������3H��s1H�GH;�bH�Mv1H;�M#H�]r1H;��H;F��H��s1H���������S�I�$L��ƃ����F���|��H�������H��H	Ȩ��H��������H��r1H�H9G�~H;A�tH�*s1H�����]�������H$�O�ȃ����J$�A�\�f(��7����.�H������տ��H��H	���ǿ��H����������H�[r1H�H9W�����H;V�����H��r1H��������逿��H�������s���H��H	���e���H������X���H��q1H�H9A�D���H;G�:���H�3r1H�����#�����������!�O�ȃ�����!�A���C����V�H������H��H	ȃ�I���
H��������H�cq1H�H9G��H;A��H��q1H�������������Z!�O�ȃ�����"�Af.ȸLG��^��D$����t��D$�r�����H�D$H�PH�H�<Ѓ������G���C_�M�_ M�L��A��uH�F�H��H��t�I9��� M��1�A�L��A��uDH�B�H��H��t�H���'H9��L9���H��8H9��W L�I M��H�������H��H	ȃ�I����H��������H��o1H�H9G��H;A�xH�6p1H�����a��������O�ȃ����^�Af.��LC���H������H��H	ȃ�I���
H��������H�co1H�H9G��H;A��H��o1H�������������p�O�ȃ����v�Af.ȸLC����H�������H��H	ȃ�I���qH�������dH��n1H�H9G�PH;A�FH�o1H�����/�������1�O�ȃ�����Af.��LG��d�H�-q1H�H9G���H��n1H���������H��4���H�UH�B�H�CI��I��cH�������H��H	Ȩ��H��������H��m1H�H9G�|H;A�rH� n1H�����[�������2�O�ȃ����o�A�Y��1�����H�t��H�������1�韾��I�O �uH�A�H��H���t�H�A�������H�=�3���L�d$H�������L$�����H�=<3����L�d$H������L$�������H�?m1H�������@�����H�L���z����A�M�������-��H���a ����H��l1H�����M��}��o�H���p���H9��Z�H��l1H�����C�H���8���a�H��ƒ��������Ā�����Z�@A��.�H��j1H�GH;�H�Rn1H;�A���H�:l1H�����*����������I�EH�T$HH9��.��L�$�A��u
I�������H�k�eH��I�WH��H���H�B�I�FI��I�A�d$M��ø��H�+黸��L�#鳸��L���u�L�l$(I�EH�H�I�MH�P�H�D$ � L�l$(H����L�d$H�+H�t$H��H�=�e��H��������H��H�D$H�@H�xH�k@��uH�����tH�����H��V��L�d$H�|$�fe��H���?��H�L$�A,�D$�ЅA(��H��I�oI��I��#M�HM��t����H����X�I9��?��M��I�XM��M��,�����H����X�H�PH���]��H�@H��u��O��H���b�I�WH�B��cH�D$H�@I��H�I�� H�D$H�@I��H�I�� I�t$H��L��H��H)����逿��H��H��H)���I�齽��H�t$@L�d$@�H�t$����H��&���@����L����H�t$H��L��A�H������cH�D$H�@I��H�I�� H�Dg1H��i��H�1颶��L���d��I��H�EH�|$1�1�L�����D���L�`�\$I�]D�L$���I�M D�L$�uH�Q�H��H��t�H�q��T$H�L$D�H�IHc�H�T�8L�y�I9��n
H�|$L�L�a�H�i�L�q�H�A�E���@
A�Q�H�T�H��H�C�H9�u�H�H�BH��M��H�r�H�B�33H�A�H�Q�H�Q�A�$$H�s�H�|$�8����I����GHc�H��H��\���M���~H�\$HL��L�d$H�\$�I�UH���XI�EL��I�թu�H�YH��t�E1�L�l$0�MH��H��H�����I�EH��4���L9��H�T$1�H��H���f����	H��H��I������H��H���%��I��H��u�L�l$0�d���H������H�D$H�t$P�H�D$P��H��M9��׽��L���n�I���ǽ��H�t$P�L�d$P��I��阽��O�d�H����
1�H��u
�AH9�t6H��I��H��I�L$H9�u�E�������H9���
���I�$锾��H��I��H��I�D$H9�w���L�d$I�D$H������H�D$L�@���A���V�I������I�A�$�����9�L���Y���H9��(��D$�w�D$��L��L��������D�DA��� �I�������A�$������L����H9�����D$�
�D$���L��L������u��H�Ɖ�����
�H���A��� ��H���$��H�L$H�Q����(�A���ރ��.Hc�L�4�H���H�@���
���H��H)��Ѽ��1�I�D�H��H9�u�M�$�髼�����t��AEf(��D$HH�T$HfT
f�f.
V��9��f��H�T$H�L$H��H�T$��
��L$H�T$f.��������D$H�
s�f/��f/Y���L,�O�l-����I�G H�P�H�����I9����H9�u���H;Q ��H��8H9�w�1ҽ��I�D$1��>���UH9��rH�U����Ā����MR�f�H�Id1H�������@���FH�H�H��� �H�GH�O H���H���H9��H���t��L��L�D$ 蔣��H��H�D$�W��H�|$H���z�L�D$ H����H�H������tP����
����H�|$��,D���B��H�SH�B�A�e H������I�H������H��u�H�S�H�B�A�e I�G �uH�P�H��H��t�H�x�u���L������H��t�H�P�
������H�@H�p H�B1�H�@@H�x����M����I� ����H����P�H�x�l���H�@H��u��^���H������I�w I��Hc�uH�F�H��H��t�H����H�|$1�����H������H�|$A������H�SH�B�A�e L��L�D$���H��I�����1�L��H����L�D$���TA��z���I� �L���H��H��uG�o�H�QH��t.��uH�����tH�2������t��uH�	��t2H��H�AH��u�H�=��1�H�L$�Q��H�L$H�QH����H��H�T$���H�T$H��H�����H����������H��L�D$ H�t$����H�t$L�D$ H�Ń���I����H�D$L�@I�x �_���H��H���~H����H�IH��u�I�x裠��H��H������H��t�H���X��H����H�����H���J����]���f.�H�AH�@�8��H��A����@A�€tA��uQH�����H�AH�@����eA��u-���H��t��u�E��tŅ���H��D���[����I9���M9�tL���L9�tH�v�H��H9�u�E1��M�H�ʽ��ǂ��/�A��t&A�������I�������A��������L���S��H�I������I�W M�OI�qD�A��tQH�AH�@�8thH�B�L���H��H��t!H9�vH9A u
��DH9A tMH��8H9�w�I�q1�D�A��u�H�q H��D	H�ʽA��>�H�QXL�IHH��8�m���H���e���H�t$P�L�l$P���I�WH�B��cH�D$H�E�L��H��葪��A�ą������T���H����������H��f�H9��`�H���H��H��?H)�H	�H��H�D$�~D$�6�H��H9��R�H�ʸH��H��?H)�H	�H��H�D$�\D$�(�����-�fH~�H��H��H���n��H���N��H��I���3��L��L��H�����L��H��L�����A�fH~�H��H��H���~��H��f��H9����H���H��H��?H)�H	�H��H�D$�~L$���fH~�H��H��H�����M�����I�~�3��I9����H�����H�5�H��H�iW1H�81�����H�H��H����H��?H��H�P���HE�H�D������������H�T$HH��H���	����}���H�D$H�H9��m���H�\��Y���H��f�H9��
�H�θH��H��?H)�H	�H��H�D$�~D$���E�����H��H�4�H)��n��I�$�Գ��H��f�H9��-�H���H��H��?H)�H	�H��H�D$�~D$��fH~�H��H��H���J��I�EH�P�I�UH�@�H�D$ � H�|$�H���ѧ��A��H����
H��'�!�H��+��
�U���!���A����
I��������
A�������
H��L�����H�H������A����H��f��H9��(�H�ʸH��H��?H)�H	�H��H�D$�~L$����m�����c���H��E1��S��1��P�H��f�H9����H�ʸH��H��?H)�H	�H��H�D$�~D$��H��f��H9����H���H��H��?H)�H	�H��H�D$�~L$�f�M��u
H��\1L�8L��H���q��H��I�����L��L��H�����H��L��L���J��L��L������H��f�H9����H��H��?H)�H��H��H	�H��H�T$�~D$�w�H��f��H9��M�H���H��H��?H)�H	�H��H�D$�~L$�#�H��f��H9�����H�ʸH��H��?H)�H	�H��H�D$�~L$���H��f�H9��`��H���H��H��?H)�H	�H��H�D$�~D$�6����H�=73�r��L�d$H���(�������H�=�3�O��L�d$H���a�����H��H��H9��(�H�θH��H��?H)�H	�H���	�H��H�ӺH9�����H���H��H��?H)�H	�H��H�����H��f�H9��@��H�ʸH��H��?H)�H	�H��H�D$�~D$���H��f��H9�����H���H��H��?H)�H	�H��H�D$�~L$����H�y81������H�y81����L��H�{81���I��I��I�� H�|$0H�����E1�1ɺ�
H��H�=�2���I��H�D$(H�@����H�|$0H���k��E1�1ɺ�
H��H�=��2���I��H�D$(H�@�#��H�T$HH�����H�iH��HD�I�$�� tRH�����L���R����Ȥ��L�E�P���H�T$HH����H�'H��HD�H�U�ƀuH�����L��阮��I�T$�H�UH�RH���H���o���I�|$����`���I�G����R���I�G���I�GH�p�銻��H�D$1�H�x8�<�����H�y81��,�����H�B0���H�T$HH�����H�vH��HD�W���H��I9��L��H��?H)�L��H��H	�H��H�T$�~D$��H�B�H��H9���H9�u�Jf�H;A �>H��8H9�w��H�x���I�H������H���j��(�H��������H;F���H�iU1H�����}��������F�O������&�F�X��z�������H���������C ����d��H��H�O�����H�����v�������b������<�������H�T$HH��H��������\���H�\$HH��H��H�D$��H�@H�8H���4���H�t$H�T$H��������H�D$HI�D$H�UH�R I�$H;D$�����H�������镤��L��L�����H�k�e�L$H��u&�L$���誧��f(���蜧��f(������H�=w�2�R��L�d$H��u��?���@�k���f(����H���Z�������P���f(����H���?������� u"H�} �EH�]H�D$���H��������H�����H�@H�8H�E t�H�D$H�]���H��H���
������鍣��H�y81�����'��L$H��uF�L$��f.���U���H��莦����L��H�M1H�5�H�81��~���H�=2�2�-��L�d$H��u�����H��ueI�} L�L$ L�D$H�������H�t$H�T$H���������H�D$HL�D$L�L$ I�@I�A I��{���H��L1H�5|H�81�����L��L�L$ L�D$��L�D$L�L$ H�@H�8�w����L$H�|$H��H���"tI�WH�J�I�OH�B�H�D$ � H�XxH�@x�/��H�H��?H��������H�H��?H������o������L�����L����H�5Y�H��H��K1H�81��-��DH�AH�@H���H��t^D�E��tVH�H+PH�w1�H���f���H�� D9�t.�>	u�L;Nu�D�^L9�v�D�^L9�w�H���DH9����H��H�=I~����f�f���L$Hf(���L�����DH�Ɖ�����B�H��`�������.�H��&��������t����L��H���T������H;F����H�nP1H�����������������f(��6��H���ޣ���<���H��H�=�{������f(����L�AM����H�\$H��L���H�sH����H�H��H��u�L�bI��t���H��L��H�L$ ���H�L$ H��t�H��H��L��H�\$H�D$���H�D$H�x4�,�M��H�L$ ��H�AH�����H�D$L�@�j�H�\$��H�J���G�H�������:�H�1�������)����HE���L��E1��t��H���B��H��誢������蠢��f(�����H�ʽ���L�����H�T$���H�T$I�������_���f(����1�����H���G������H���:����.���<��<�H�\$H�=�H�H)�H)�H��H��H��1����H�=]u1����I�}H���_����
<�H�=<u1�����I�|$H���׭����;��G<�H�=�z1��N��1�H�={1��>��H�={1��0���;�ff.���1�1�������AWAVAUATUSH��H�G�t$(dH�4%(H��$�1�H�<$H��$�DŽ$�HDŽ$�4H��$�HDŽ$��Դ�������H�$H�@D���ǀ�E�����D$(��tNH��N1�8tBH�$H�pH�~H�_H��H��H��H��H���OH�<$��I��I��4uH�<$1�����I��D��$�E���1DŽ$�H�D$0L�4$L��H�D$H�D$`H�D$I�^�H�3H��t
H�CH���CH�C H�%�H=UU��A�F,��A�F(��H��8I�^�f�H��t8D�E��t0H�H1�D�yH9�v�yH9�w	�9����H�� D9�u�H�$H��8I���H�@xH��H�]H�XH�sH�\$ H���z��H��H�[�F,�D$,�ЅF(��H�$L�eH��8H�XI��4������H��$�H�4$H�FL��H��$�dH34%(��H�Ĩ[]A\A]A^A_�@H�$L�`x�������@H�@A�U�L�PL)�H������H���A���KA�����H���CH�s1�I��L���y��I�^A�F,H�S ��A#F(� �����i���@I�~81�荴��U����I�F8H����8�H�p���@uFL�=U}1fA�?����H����H�L$L��H�PH�p H�R ����t�I�^���DH�����H�{L�t$hH�P H�HH����D$`@H�@H�|$xH�|$H�\$pH�@ H��$��H��$�H��$�HDŽ$�HDŽ$�4DŽ$��|��I�^�-����8����H�H1��fD��H�� 9���D�AL9�v�D�AL9�w�D�A����A��u�H9]u�H���DI��H�H�$H�@x�^���fDA�A��tA����A�
@H��tCD�H�x1�E��t5D�OH9�v�OH9�w����5L9�����H�� A9�u�D��������H������D�E��t�H�H1�@�yH9�v�yH9�w�9��������H�� A9�uֹ�|���@H�UH9�t?H���A��uH��uA�A�	�$���@H��H��uLD��H���5���DA���fH�S H���� ����H�S8�E A�H�UI�~H��t�D�E��t�H�D$E1�E1��s������fDH��H��HЋpL�@D�x H�t$M���]���I�HH�C0L�t$H�s D���J��H�iD���K��L�W�H�CE�K�H�H�PH��E�L� H�[Ic�H�L�8I9���H�$L�QH�o�L�G�H�_�H�G�E��~%E�C�J�L�H��H��H�@�H9�u�J�T�H�rH�4$H�BH��H�B�H�B��xH�G�H�FH�W�H�W�ǀ�H�Fx����H�4$H��$�H�F�D$(��������Q����H��H‹JL�BD�z H�L$M���U���H��H�P1��D��H�� A9������D�ZL9�v�D�ZL9�wރ:u�H��HȋHL�@D�x H�L$�o���DH��H�D�PI��H��PH�C0H��A��t$H�PH�SH�UH�H�$H�@x����@H�C��f�H�C��f.���t����������fD�õ��H�-tD1�UH9�����������������{��u������}�f���H�<$H���*��I���L���f���u>H�$H��8D��H�XH��L�`xH�@H���H�{���H�$1�H�x8�Ӯ��=���H�$1�H�x8迮������AUH��I��@ATM��UH��SH��H��hL�VdH�%(H�D$X1�H�CLc�$�IczA���L�@)�I�<�M�BO�,�E���L�X�A�Mc�N�D�8M9���L�[L�h�H�p�H�h�H�@����q��H�T��H��H�G�H9�u�L�-�v1H�JH�JH��L�b�L�J�fA�}H�H�H�P�H�P��<H�C8H���.2�H�pI�T$H�C����EH�rH���hH�@ �H��H� ����I��H�C8H����1�H�pI�D$�����H�pH��t�Fu>H�-Av1f�}�|H�\$XdH3%(L���1H��h[]A\A]�f.�I�T$ H�{H�@ I�L$�$H�|$H��H�T$01�H�\$H�l$H�D$ H�L$(L�l$8H�D$H4�D$@����f���@����H�����I�T$ H�{H���H�@ I�L$�$H�|$H��H�T$01�H�D$ H�\$H�l$H�L$(L�l$8H�D$H4�D$@�"��I�D$������F�����H�R I�|$H�D$I�L$ �$H�T$ 1�H�|$(H��H�\$H�l$H�L$0H�D$8H�D$H4�D$@���H�C�.���fDI�D$I�t$ H��H��H�P �g����c�����]���f�I�D$I�t$ H��H��H�P �7������������f�H�R I�|$H���H�D$I�L$ �$H�T$ 1�H�|$(H��H�\$H�l$H�L$0H�D$8H�D$H4�D$@����I�T$H�C�O����?��ff.�@��AWA��I��L��AVE��A�AUATI��USH��H��hdH�%(H�D$X1�L��$��s��tn������u9L��$�H�3D��L����8��H�|$XdH3<%(�H��h[]A\A]A^A_�H�E1�H�X H��t�D�K �sA��A����u�DA���>H��I��H�SL��AVH�sL��$�APE���3��H�� �z���DM�|$A��H�CM�I�oE0�H�$I��""H��A��$��Ic�H��H�T8I9��7H�A�{�I�G1�E���H��H��H�T�H�PH9�u�E��H�$D�D$TL��H��$�H�T$0I��L�T$D�\$PH�D$@��H�D$H4E�A���t$8H�t$@�,��M��I�oL�T$��H��H�KL��M��PH�t$M��L���A���ZY�w���f.�A�C�Hc�H��H�2����F���„�DEظDE����f�L��D�D$,H�L$ D�\$(L�T$D�L$�t$�[����I�W�t$D�L$L�T$D�\$(H�L$ D�D$,���DL�<$I�L$H�I�� I�L�AHcW���)�I��L�GM��H�CL�A�H��I�Ë���H�H�D�8I9���M�D$L�I�L�y�L�Q�H�A���~r�F�H�D�DH��H�B�H9�u�L�XH�PH��L��H�@��L�h�H�Q�H�A�H�A���������H�RH�z�������í��H������A��$�1�L���6��fD��UH��AWI��AVAUATI��SH��H��XH�}�dH�%(H�E�1��AH����@��D�kD�KIc�H��H��H�BH��H%�H)�H���H��H9�tH��H��$�H9�u����I��M�t$H��uXD��H�SH�}���H�I��I�D$I�G H�HH�IH�q PD��3��H�M�dH3%(�NH�e�[A\A]A^A_]�L��L��D�M�H)����D�M�I���DH)�H�L4�M�t$I��H���n�����@HcRH�~D�J�L�_�Ic�H)�H��M�\$H��t`H�2�� ��L�B H�rL�,�K�D+8I9���1�H��~$�I��H�T�H��H9�u�M�A�M�\$D�KA�GH���w����S���l���M�l$I�}�@���Y���H������L���H��փ����;����� �2������I�E�A�GH�C����DM�oPIcEH��I�ƉE�H�E����I�|$H��H�E�H�}�E����H�E�A�v�E1�L�e�H�]�L��I��H��L�}�M��I��H�lju�I���I��K��J�t�L���\��I�GM9�u�L�e�H�]�L�}�I�T$H�E�H�M�A�H�}�H��H)�HcE�H�9H��H)‹CI�T$D�hD+m��CD�k�G���H��L�B���\�����E�H�U����E���l����W���AWL�=�kAVL�q@AUI��ATI��UH��SH��H��L�A I�x���<�K(���Ic�L�>���H��H��L��H���C8L��H�C0H��[]A\A]A^A_��H��#��H��L��H��H�C0H��L��[]A\A]A^A_�#��fDH�qN��H��L��H��H�C0H��L��[]A\A]A^A_�NN��fDH��L��L��芩��A�|$���A�T$����H�}I�T$I�t$�l���A�|$�����C8�CHAuH�
���H�C0H��H��L��H��[L��]A\A]A^A_����L��L��H������A�D$���A�|$���V�C8�CHuH�d���H�C0H��H��L��H��[L��]A\A]A^A_�A����H���H��L��H��H�C0H��L��[]A\A]A^A_����fDI�@H�@H�@@H�xH����H�C H��L��H��L��H�C(H��[]A\A]A^A_�
�L������I��H�C H����I�xH�G(H�C(����H�C@H�} H�$�ϋ��I��H����%�L�=<�6f.�I�@(H�K H�C(A���<�`L�C M�vM���$I�~H��t�I�p �q��H��t�H�4$H�����H��H������L�@L9{0tYH�C H�p���<u�L9�u�댋w���,����H�u
H��L��H��H�C0H��L��[]A\A]A^A_�R
f�H�EH��H��t
H�@�8��H�L$�=��H�L$H���v���H�pL���C��H�L$������L�A�T���D���5H�H��L��H��H�C0H��L��[]A\A]A^A_��DI�xH�������1�H�C H��tH�@H�P(H�S(H��H��L��H��[L��]A\A]A^A_��fDI�}H���I�EH��H����H;w����H��8H9�r�H�����DI�@H�xH���(H�C H�{(�y���fDH�s@���I��H�C H���P���H�@I�xH�@(H�C(���<�>���H��3����!���I��H�C H���Y����H�<%1��Q����A�L$������H�EH�@�H��ƀu{������L��I�t$1�L����A�|$����H��.��L��L��H��H�C0M�D$H��L��[]A\A]A^A_�-��f�I�T$I�t$H�}�ݍ������H�@H�x�J����H�4$���1�H�C H������H�@H�x(���1�1��9����*��H�=;[1��L��ff.��UH��SH��H��xH�q dH�%(H�D$h1�H����H�H����������t/���RH��H�����H�\$hdH3%(�.H��x[]�AIu�H�vH�{H�L$H�$���H�$H�L$H�����AH@���o�oI�oQ �oY0�oa@H�AP)D$H�L$)L$ )T$0)\$@)d$PH�D$`�^���@�AH��O�����H�ރ�����	�A8H��H�A0��1���@H����� ����o)�oqH��H���oy �oA0�oI@H�L$)l$)t$ )|$0)D$@)L$P�g�������f��A8H��H���N������H�=�]1�薹�fD���G������AUATUSH��H��L�F A�uDI�@�H��I���t�H�	21M�@�H�K@H���uH��[]A\A]�v*��fDI��L��H��I���O��H�E�t'�ui�ƒ���tkH��t}<u.H�h01H�0�&H�����uH��tPH��uH�n41H�0�H�pH����H��H��H��[L��]L��A\A]�Z���H��+1H�0��H��01H�0��H�k11H�0�H�G-1H�0�f.���AWI��AVAUATI��UH��SH��H��H�V�odH�%(H��$�1�IcL$�oKH���oS �o[0)D$@H���oc@)L$PH)NjCH)T$`H�<$)\$p)�$���j�@�:E�l$A�D$E�u������$�I�D$HDŽ$�D��$��������ƒ�����H����<��H�x1Ҿ���E�t$H�D$`I�GH��@I9���A��vH�4$D��H��H�~�j��H�{@�A��H�$L��L��H��H��C8H�L$@I�G������H��$�dH3%(��H�Ĩ[]A\A]A^A_�H������U���H���H���B���H�B21H�8�7���f�L�kPIcEH��I�ƉD$ H�D$�4��I�OH��H�D$H�L$E���H�D$A�V�E1�H�l$(L�d$0M��I��H��H�\$8L��I��H���T$$H���I��J�T�J�t�L���k��I�D$M9�u�H�l$(L�d$0H�\$8I�WH�D$H�t$H��H)�H��H�t$H�0HcD$$H��H)�A�D$I�WA�D$D�hD+l$ E�l$E�u������H�y.1H�8�&����H��(1H�8������k���H��L�Z���Hc�H)�H��M�_H��t]H�9�� ��L�Q H�yL�,�K�D+8I9�v�1�H��~%f.�I��H�L�H��H9�u�M��M�_A�t$�CH������A�T$������M�oI�}�@����H��������H��у��������� �����
��I�E��CHA�D$���DH��,1H�8�����H�A)1H�8�����H��+1H�8����H��L�Q���
����D$ H�T$���D$$�=������fD�AHA�A��A��EE�E��A���EE�E��A����EE�H�y@tH�����D�A8H�A0�s���PH��H��A�� HcHH�RH��H��H)�H�HHLJ��"R��f���AWAVAUI��ATI��UH��L��H�Q@SH��H��H��dH�%(H�D$x1�耜��D�uE����A�V��CH@�m�ok@�o3�o{�oC �oK0)l$`)t$ )|$0)D$@)L$PHc�H�|$�T$H��H�����I��H�D$I)�I�D$J�8H�D$��T$H��H�D$`�9H�U������C�Ѓ�����H��������H�rH�����H�=��2褚����H�|$M|$���T$h�I�H�D$`�Ѓ�E�������E�������H�UE��D$XA��������H�������H����H����H��-1H�:��fD�o�oK�oS �o[0�oc@H�CP)D$ )L$0)T$@)\$P)d$`H�D$p���f�I�|$��~+A��H��H�T$Mc�I��L)�H�L�趼�I�|$H�D$`H�UH���mI�|$���5��������у�����H��������H�z1�H���j��1�H�D$@H��tH�@H�P(�}H�T$HL��H���H�L$ L�����D$h���H�t$xdH34%(��H�Ĉ[]A\A]A^A_�fDH���������H����H�����H�!,1H�0����H��#1H�0�����H�I)1H�:�=����H�y#1H�:�-����H��(1H�:�����H�%1H�:�
����H��'1H�:����H��'1H�0�s����H�a(1H�0�c����H��$1H�0�S����H��(1H�0�C���H��*1H�5�TH�81��)����H�UH��&1D�L$h1�M�D$�MH�8A��M����H���S����H��H��H9A0���H����ff.�AWE��AVI��AUI��ATI��UH��SH��8dH�%(H�D$(1�H��'1H�H�sH��譩�H�����o@H�@L��1�D��L���D$)$L�$$I��M��H�D$�0,��I��H���vH��tGH��L��L��H���~����H��衪�H�T$(dH3%(�`H��8[]A\A]A^A_�fDH�|$t��D$�����sIH�L$�t��f�H�A�H��H�����H�y�1���z��H��t�H���D���H���]���@����H�$H�P �B���@�������H�H�P �B����rg����H�H�P �B����rI����H�H�@ �P�����s4H�H�6���f�H�y��"z��H���M������@H�J������u:H�H�x ����H����H�{x���H��"1H�5�MH�81����������UH��S1�H��H��tH���$��H��H�����H��%1H��A�H��H�H���H��1�[]����ff.�@��H�5LS����w�����H�
%1ATUSH��H�8�m���H�=SH��H�CH�E躔�H�{I���~��H�;L��[H��A�]H��A\����AWAVI��AUA��ATI��USH��hdH�%(H�D$X1�H�D$H�\$H�D$8H�l$H�D$ H�\$0H�l$@H�D$H�H��H�D$(����E����1�I��H�D$H�D$0H�x�@H��t
Lc�O��L���H��H9�tH�PA9��H��t�H��H�H9�u�A9��rH���5H��蝬�A����A����H�\$L�l$�4L�|$H��HD�I����H��#1H�5@�0L��L�0赂�H�މ�L��I��H��I���O(��H��H���H��L��1�L��裯��H�C�����u5�L��踦�H�t$XdH34%(��H��h[]A\A]A^A_�DI�vL������L��L��H���6����@A��H��1�L��L���
����H�|$ @��tE�H�������H���x�����H�|$(�����������E��~H�t$(�@���@�������H�|$(t
H�|$(����D��訧�I�~x蟢�躻�f.���AWAVAUATUSH��H�"1H�(H�G�����H�UD���I��H��D���L�hH�Z�j��E�H�U8H�MMc�H�z8J�t�8H�Q�H9���H�UL�i�L�y�H�y�H�A�E��~pA�V�H�T��H��H�C�H9�u�H�H�BH��H��H�B��H�B�#DDH�A�H�Q�H�Q�H��[]A\A]A^A_�ͤ�D�Ñ��H���H��1H�5%IH�81������AU�ATI��H�=v�USH��H�� 1H��4��H��H��#1H�8蒄�H�h H��tUH��1�L��H��I������I�D$�����uH��H�߾[]A\A]� ��H�sH�����H��L��H���Ɓ����H�
'NH�S�H�=2N�U��D��AWAVAUATUSH��XdH�%(H�D$H1�H�D$ H�D$H�D$0H�D$H� 1H�(L�eI�T$ �uH�B�H��H��t�H�r�H���>E1�H���H��tfH����@����@���$H�������������H�F D�h A��A��H�v �F�������H�6�H��H��A��H�M�L�pH�$E0�H�\$I�\$I��""H�����iH��8I9��zI�\$H�T$E��I��H�t$A��L��H��H�D$0I�� H�D$84H�D$@�D$(���I�NH�UI�\$H�Hcq���L�J�L�B)�M��H�qL��H�$H�p����H��H�I�D�8I9���H�D$L�ML�Z�L�r�H�B�H�B������G�I�D�I��I�@�L9�u�H�pH�HH��H��H�@��L�x�H�J�H�B�H�B�詡����H��H��E1�E1�H��jH��jH�H�PH�pj����H�� ����E1�E1�1�1�H���_�����H���ҋ��uUI�D$H��8I9�������7���1ҾH�=Z��԰�H�����E1����L���1���H�����H��������1�H���x����AWAVAUATI��USH��hdH�%(H�D$X1�L��$�H���H��t{H���1@����@����H��������������H�F ��$������xH��H����t�H��H����t�H�0H���H��u�fDH��M�t$H���$�M�H�I�nE0�L�SH�D$I��""H��A��$���Hc�H��H�t8I9��H�z�I�F1����fDH��H�4�H�t�H�pH9�u닼$�1ɉT$PH�t$@L�L$@H�T$0��D�D$TL����1�E��I����A��L��L�T$H�D$H4��I�� �D$8�	��L�T$I�L$I�nH�I�zL�AL�I�HcW���)�I��L�GI�,����L�C�I��H�H�D�8I9��'H�D$M�L$H�i�L�Q�H�A�H�A����9�F�H�D��H��H�B�H9�u�L�8H�PH���L�@�L��L�h�H�Q�H�A�H�A�蓞�H�\$XdH3%(��H��h[]A\A]A^A_�H��H��L��jH��AQH�CI��H�APH�sA��H�����H�� �DL��L�L$(D�D$$H�L$�T$ L�T$蘈����I�vL�T$�T$ H�L$D�D$$L�L$(�����L�������H����ӊ��D��$�H�F E���\���H��uDŽ$��G���fDH�������p @������$��!����k��A��$�1�L������AVAUATI��UH��SH��@�T$H�$D�D$dH�%(H�D$81�H��1H�H�CH�P �uf.�H�B�H��H��t�L�r�H��H�T$E1�H�D$H�|$�v�1�H�D$M����L���H��trH����A��t&A���HI������;A������,�\$D�d$L��H�,$跂��E1�D��H��H���T��H�|$H�������f�I��H�t$ �AoH��)D$ I�FH�D$0H�CI�VL�d$ H�H �uf.�H�A�H��H���t�H�q��H��H���\���H�sD�D$H�$�T$H�~ �uf�H�w�H��H���t�H�w�H����H��H��E1�jAUP���H�� H�|$H���>��H��H�\$8dH3%(��H��@[]A\A]A^�f.�L�����I�V �JI��I����tI��I����tL�2E1�H��A���Z����I��H�t$ �AoH��)L$ I�FH�D$0����1ҾH�=�蕪��а���ATI��U��H��SH����t��L���H��E1�[H��]A\�Q��������H��H��E1���H���7��������H��H��A���H������@��ATI��U��H��SH���Xt��L���H��A�[H��]A\����ff.�AVE��AUI��ATI��US��H��0H�L$dH�%(H�D$(1�迗��tK���<H�t$H�L$E��L���y���H�T$(dH3%(�H��0[]A\A]A^��H�D$4�ōC�����I�EH�|$H�D$�ƞ��ty����L�t$H�D$L�l$H�D$ A��u	I�����u
1�I��@��H��1��1�L��H�8襃��H�|$ H���h��H�t$ A��L��H��L������4���DI�}@��t>���M�uL�t$I���q���H�|$����]���D���f�蛡���1�1����|��藮�����f��fD��ATI��U��H��SH���xr��H��L��[��E1�]H��A\�1������E1�H���!������A�H������ff.���ATI��U��H��SH���r��H��L��[��A�]H��A\����ff.���AWAVAUATI��UH��SH��hdH�%(H�D$X1�H��x��t}sc�^ L�(��u~����u�����������}H�uL������H�\$XdH3%(�H��h[]A\A]A^A_�D���H�H�@ �x��u��^ A�4��t�jL��AQE��I�ȉ�L���J��ZY�fD����H�E1�H�h H���J����] ����<���fDA����H��H�EH�uL��jAQI��L��APA��H�����H�� �'����M�T$��H�EM�M�rE0�H�$I��""L��A��$���Hc�H��H�|8I9���L�D�Z�I�B1���
�DH��H�<�I�<�H�xL9�u�E����L�L$@L��E���T$PI�� A��H�$D�D$TH�T$0�t$8M��H�t$@H��L�T$H�D$H4���H�{L�T$I�L$H�HcW���M�rL�A)�I��L�GM��H�EL�A�H��I�‹���H�H�D�8I9��H�$M�D$L�I�H�A�L�i�H�A������F�H�D��H��H�B�H9�u�L�PH�PH��L��H�@��L�x�H�Q�H�A�H�A�������f��r�Hc�H��H�8���tsH�@H�x�����E�DE����@L��L�L$(D�D$$H�L$�T$ L�T$�t$�$��uML�T$�t$�T$ H�L$I�zD�D$$L�L$(���������D�c���H�������C��A��$�1�L���Ц��AWAVI��H�
CAUATUH��SH��H��L�j dH�%(H��$�1�H���HLJ�H�M�eE�<$A��A���b��A��Hc�H�>��fDA�t$����}H�UL��ɋ}����I��D�C,�ЅC(�H��$�dH34%(L���xH�Ę[]A\A]A^A_�fDH�s�MH�~�AH�H�D�8H9��"H�EL�OL�NH���~,D�A�1�M�P�H��I��H�L�H�HI9�u�K��H�FH��H��H�����H�C�H��H�@ H� �Ԓ�I���B���@H�B@�}A��UUE�T$L�MD�EL�]H�D$��taA��UUE��~VA�P�Hc�I�ƨuGH�����t?H��΃���u2�ŀ�8H����DD�H��E�A��A�ǃUUf�H�-�A1f�}�H�C8H���~��H�@H�k��� �HH�EH�U�Mc�H�H8H9���H�SH�PH��H�E�H�E�L�M�H�E�L�h�L�X�L�x�H�U�H�E�H�E�E��x	E9���I�L$L��L��L�L$D��A�T$L�L$I��H�CL�p8I9��F�C,H�{8�ЅC(��L�sH������H�G���@�=H�-�@1f�}�����I�EI�u H�L$0H��H�P �z|���z�����t���@I�D$H�UM��H�ߋMD�MH�p AU�u�z�I��XZ�B���f.��u�}��tV���m�O�Hc�I�ƨu@H�����t8H�0A��A��A��u(�����������t�����M�ϐ���H�B H�}I�H�@H�p�k�I�������M�}���r���j�W�Hc�I�ƨ�1�1��ߑ��L��H�T$����H�T$H��I��H�
�>H�B �L�`I�D$(H�B(����DI�EA���zI�|$�~H�xH�r@H�T$H���,賸�H�T$I��H�B H���L�`H�
K>I�D$(H�B(�C,�ЅC(�m���H�{81���u�H�T$H�
>L�j M�e�I����H�ED�ME1�L��H����EH�r@H�}���I���w����H���������H��΃��������ŀ��������������U��@�������I�t$H�}�
��I���
���f�����H�E�UL��H��L�MD�EH�p �I��I�������H�{81��u�����L�$%1��{��������f�H�@H�@@���L��H�T$��e���#���fD�{��I�T$ I�u H�L$0H��L�\$(D�D$$L�L$D�T$�Fy�D�T$L�L$��D�D$$L�\$(���������I�MI�U H�|$0L�\$(H�t$D�D$$H�I H�T$`1�H�t$XH���D�T$H�l$@L�L$HL�L$�D$0 H�\$8H�L$PH�D$hH�D$x4�D$p�̦�H�kL�\$(D�D$$D�T$L�L$�#���������L��H��H�=�11����@I�MI�U H�|$0H�t$H�I H�T$`1�H�t$XH����D$0@H�\$8L�t$@L�L$HH�L$PL�d$hH�D$x4�D$p�(���^���1�L�L$�7s�H�{8L�L$�&�����������H�B(H�r@E1�A���UH�}A��D�ML��A���ZI�����H�@H�x���`���H�@H�xDD�H�xE�A��A�ǃUU����H�@H�x���u������D��D��D��赍�H�=�01��׏����H���f�dL�%(L��$�E1�H�t$I�q��$�)D$PH�v(L�L$@���D$H�t$H��H�5���foL$@H�t$P��H��foT$P���L$H��$�H�T$`��$�L��H�$4)D$ )D$0)D$`)D$p)�$�)�$���$�����H��$�dH3<%(uH�����ݠ�ff.�f�ATUSH�GH�X�H�P�H�WH����H��1H;��H����t:��uH�����t
�����t"H��誗�H����H��[]A\�f�H��1H�0H��t��H�=%�2�v��t�H�M �tSH�y���Z��H��t�H�hH��t�H��H�����H����H���f�H�A�H��H���u�H�y�1��Z��H��t��fD1�H��[]A\�fDH�W �u�H�B�H��H��t�H�Z�H�_(H��[]A\��H���E��1Ҿ�H���ٖ�H����H��I��H��11�j��E1�H��H�8���H��XZH����H���T��H��t|H�������m��H��I��H��菶�L��H��脶�I�$L��H�=�#轝�H��H��I��H���<u�L���S�����H�7?�H���˳�H���m���H��苖�H�5�-H��H���0H�81������AUM��ATI��UH��SH��H��(�L$H��H�|$H�T$PL�$dH�%(H�D$1��lb�H��H��M��H�D$�D$XL��H��P�L$L�D$���H��XZH�|$�Ū�H�L$dH3%(uH��(H��[]A\A]����f�UH��AWAVAUATI��S��H��8D�E�D�M�dH�%(H�E�1�H�41L�8I���E���ILJ�H�E�H���lD�jI��Ic�A���{H��H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����L�t$I���L��H�M��J��H�M�Hc�I�H�i6H��HD�H���8A����A����D�������I���KA����I�|$H������ɯ�I��H����H��sH�E�H��D��M��L��L��I����E�P�v�H�}�ZY��H�]�dH3%(�CH�e�[A\A]A^A_]��I������b���I����M���O���H��1H�8�E����H��������H9���H�u�H�}�H�4�H�M��l�H�M�L�]�I�����@I�~H���Ա�����H�}�H�E��K��H�E��8���f�H)�H�L��S���f�H�Q�0H�8����H�Y1H�8����H���0H�8����H��1H�8����H��1H�8�u�����H��蓀�I��A��D�E�L��L��D��L��A�� �'�����ff.�@AWI��AVM��AUA��ATUH��SH��H��(H�D$`H�D$A����A����E1�E�����������/�؃����!H���O���vH�{1�L���ȑ�H��H��tH�@H��t�E1Ƀ�<��E1�H��(E��L��D��L��H��[]A\A]A^A_�1����A�A����������؃�����H��������H�{H����L��D�L$���D�L$H��H���6H�@H���)���<�<��H�rH��H�H����H�~ t
H���~����!D�d$`H��(I��M��D��L��H��H��[]A\A]A^A_��r��H������B���H���	H���/���H��1H�8�$����A����Q���H������n���H����H���[���H�r1H�8�P���f�H�ֿD�L$H�T$�	]�D�L$H��tH�pH��t�H�T$���������f�A�A���-����%���H���0H�8���f�H�y�0H�8�d����H��H�T$�l�H�T$���������1�H��襔��DH���0H�8�$����H�y�0H�8�����E��@��H��uA�@�������H���\���@���S���H�p @��uH�����t�����uH�vH�D$H�T$H��4tH��舔�H�T$H������A��,����H��0H�8���f�H���0H�8�d����H��0H�8�T����H��0H�8����H�	�0H�8����H���0H�8�$���L��H��趥��fDUA��H��AWA��AVI��AUI��ATSH��HdH�%(H�E�1�H�5�0��H�E�A�ă�H�E�4H���A�uH�CH�@PH�E�E���QI�D�M�H�E�H�E�H��H�E��x�D�M�H����I��A��L�e�H�SH�R H��uH�q�H��H��t�H�I�H��H��M��L��H���D��H�
H��u�����L��H��XZ詢�H��H�}�dH3<%(��H�e�[A\A]A^A_]�@A����A���)D������ I���%A����I�uH���,�H�=Р2D�M��k���I�D�M�<�����H�CH�sH�H�}�H�H8H��H9��8L�`@D�M�I�D$I9�����s�D�M�H�E�I�D$L�e�ƃ�����I������R���I���rM���?���H�y�0H�0�4���L�u�DL�e��f.�H������L���H������=�����H���0H�0����?s�D�M�H�E�A��~�Ic�H�4�A����H��H��H�E�H��H���H)�H���H9�tH��H��$�H9�u�%�t	H)�H�L�H�D$L�e�H���H���<D�M��r�D�M�H�E��s���H�c�0H�0�F���L�e�D�M�L���d�D�M�H��H�E�A�W�H�yD�M�Hc�I�vH�M�H�H��轩�H�M�D�M�I�����H��0H�0���H�O�0H�0����H�X�0H�0����H�i�0E��M��D��A��L��1�H�8A��諔�H���z�H��0H�5�%H�81�苛����fD��SH��H�� dH�%(H�D$1�H�T$�<$H��H�t$H�t$H�D$�D$��V�|$�<$H���H�t$H�D$�у����H�|$H���K��H��H�\$dH3%(uH�� [��m��ff.�f���SH��H�� dH�%(H�D$1�H�T$�<$H��H�t$H�t$H�D$�D$�IV�|$�<$H���H�t$H�D$�������H�|$H��語�H��H�\$dH3%(uH�� [��̑�ff.����UH��AVAUATI��SH��H��H�� H�U�H�dH�%(H�E�1��� ��H��H���A��H��H�B��0H9�tH��H��$�H9�u�%�t	H)�H�L�I��H�wH����H���0D��L��H��H��A�H�8H�G�p�*���ZY�L�wIc�E��L9��;A���lH��H��H�BH��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�I��H�w H���X���L��賦�I���H���L��1��~v�I��H�E�H�@H�A��uI�����t�ƒ���t��I�E@�uqM�E�� tXH���0L��D��H��H��A�H�8H�G�p����H�U�H�U�H�U�^_H�]�dH3%(u8H�e�[A\A]A^]�DM�E �f.�L���f�I�E�L�����襏�D��UI��H��ATSH��PL�E�E1�H�M�L�M�dH�%(H�E�1���LH��0H����A�H��L��H�8H�G�p�d�H�]�dH3%(��H�e�[A\]��H�ELc�H���E�H�E�I��H�E�H�E�I�BH��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�I��L�e�D�M�1�L��M�H�}��#@D��H��A���L�H�	H�H�I9�tA��/v�H��H��H��H�	H�H�I9�u����D�M�����N��ff.���H��I��H��A�H�
��0H�9H�O�q��H��H���.�H���f���UH��SH��H��(�T$H��H�T$H�|$H�$D�D$dH�%(H�D$1���Q�H�B�0�|$H��H�D$�H��H�:��D�HH�W�r�L$H��L�D$��H��XZH�|$�6��H�L$dH3%(u
H��(H��[]��W�����SH��0H�|$H�|$PH�t$�T$$dH�%(H��$(1�H���0H�D$0DŽ$ H�D$@4H�H�D$8H�D$8H�D$H�@H��$�[������;H�D$H�@���ǀ����-H�D$�uH�������H�D$H������� ulH�D$H�H H�PHc�H9��
D�D$$H�|$�1
�ϐ�H�D$0H��$H�L$H�AH�D$0H��$(dH34%(��H��0[�@H�L$H����H���fDH�H�D$(�D$(�����K���H���0H�t$1�1�E1�H�H����~��H�D$0�j���@H��H���ub�H��� ������H�t$H�D$@H�F����H��$H�\$H�CH�D$8H�x��J���Y��H������H��I��H��E1�H�
��0H�9H�O�q��H��H���A�H���ff.����UH��SH��H��(�T$H��H�T$H�|$H�$D�D$dH�%(H�D$1��O�|$H��H��H�D$H�B�0E�H��A��H�8A��H�G�p�L$L�D$��H��XZH�|$�E��H�L$dH3%(u
H��(H��[]��f��fD��H���0SH��I��H�8L�_M�S M��A�uf.�I�A�H��I���t�I�A�H����E1�H��H��H���I�
A�s��ZY[�D��UH��SH��H��(�T$H��H�T$H�|$H�$D�D$dH�%(H�D$1���M�H�D$H�-�0H�8H�wH�N H��uf�H�B�H��H��t�H�B�H��H���H�	�|$E�H���vH��L�D$A�ыL$A���g�H��XZH�|$��H��H�\$dH3%(uH��([]����f���H��H��H�=��0H�?I��tL���L�GH��E1�A�pI�ȉ�H��H�����H���f.���ATI��UH��SH�� H�/�0�T$H�$D�L$dH�%(H�D$1�I��t
H�L���H�T$H��H�|$�L�H�;�|$L��H�D$E�H��H��H�GA��A���p�L$L�D$�R�H��XZH�|$���H��H�L$dH3%(u	H�� []A\����f���H��H�y�0H��� ��HH�:��H�PD�NL�GA�pL�@H�0���H���ff.���H��H�)�0H��1�A�E1���H�8H�G�p��H���f.���H���0AVAUATI��U��SH�H�{H�O H��uDH�B�H��H��t�H�B�H���H�1H��H��H�L�o菈��������H�PH�@H�@L�r H�@@L��H�x���I��H��t+H����L��M��jL��H���r`�ZY[]A\A]A^��[L���L��]L��A\A�A]A^��f���USH����~BH����H�vH���/��H�UH�5,�2H���K�H�UH�5�2H���K�H��H��[]Ã���r�f���AW�AVAUATUSH��H�_D�8L�w0D�o,L�gH�W H�?�ɥ��H��M��D��H���L��H��I��Hǃ��AW�x_�H���H��[]A\A]A^A_�f�AUI��ATM��UH��SH��H����H��8dH�%(H�D$(1�H�T$��M��H����H�¸4H�uWH�|$��L�d$L�l$����H��H��H��j���I��L���Hǃ�L�D$ �^�L���ZYH�L$(dH3%(uH��8[]A\A]�@�4���܄�ff.����H�M�0AVAUATA��UH��SH����L�(������؃����qH��������H�sE��H��H��L���2�������1҉�E���ƒ�����H��������H���0L�0���H�����uWH����H���<H�sE��H��H��L���2�����uD1�E����H���XH����H���0L�0�H�sA��H��H��L����1�����tV[]A\A]A^�DL�5��0H��A��L��H��I�6�1�����u�1�E��M�6���'H�a�0H�0�Y���f�1�E����L�s��H��L����F��t"��[]��A\A]��A^�H���0H�0����A��H��M��A��I��H��L��A��H��L��M���6���H�������H��4����!��&���@H�y�0H�0���f�H���0H�0�'����H�)�0H�0�����H�q�0L�0�=����H�y�0L�0�-����H���0L�0�������1�镅�DUH��AWM��AVI��AUI��H��ATI��SH��H��D��h���dH�%(H�E�1��O��L��H��L��A�H���H���H�����u0H�EH�u�dH34%(�H�e�[A\A]A^A_]�f.��U�H�߅��U�����H��4��	��	�H�E��U�H��H��`�����I��H��H��t�H�u���h����XHcӃ�wtH��H��HDžx���H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�L$H��x���I���H��H���M���F@H��������H9��H��x���H�4�H��X���H��H��H����Q�H��X���I��L��H��P���L��X����،�L��X���M��Hc�h���H��P���I�H��LD�H��ut�E H��`���E1ɉ]�Aƅ�H�M���H�=����E�H�\�0L�E�L�H�M�1�H��L�m�L�u�L�e��ۖ�H��H���H��h����Ȍ�H��h�������@I�xL��H��X���L��h������H��X���L��h����_����H���>e���f���AVI��AUATU��SH��H�� dH�%(H�D$1�H�	�0L�(���H�D$��������I�H�D$����A�H�|$I���la�A��H��H����1�I����M�������؃����)H���=���%L�s��H��L���~B���N����HE�H�L$dH3%(�OH�� []A\A]A^�@M�f���J���H�|$t
H�|$�A������Pj�H�|$��p�M������k�ڃ�����H��������H�sM��H��H��L���n���H��4�O���1��H���DH���������H���DH�������H���0L�0���f�蛃���0���I�H�D$A�H�T$����H���U���H�|$�T���F����M��H��LE�贉�H��L��L��M��H�����H������@���H��4�6�����{���H���������H����H�����H���0H�2����M�f���\����k���fDH�1�0L�0���H�"�0H�2���H�K�0L�0����H�T�0L�0����H���0L�0���H���0L�0���H��0H�2�`���H�p�0H�2�Q���H�y�0H�2�B���H���0H�2�3����]|�ff.�f���AWAVAUA��ATI��U��SH��H���0H�H�{H�O H��u@H�B�H��H��t�H�B�H���H�1H��H��H�L�w�g}��������H�PH�@H�@L�z H�@@L��H�x���I��H��t+H��M���L��AUL��H���JU�H��[]A\A]A^A_�H��E��L���[L��]L��A\A�A]A^A_������AWAVM��AUATUSH��8�T$H�$dH�%(H�D$(1�H� �fH���D$H�>�D$L�f�P��T$���H�$H�PL�(H�$�<K�H��A����A����D�������I����A����I�]�/@H��H���͍�H��tH��L���>�I��H����H�[H��u�I��tH���0H�L���H�T$H��H�|$�>�D�L$E1�H��H�$�T$L��H�D$ �O��H��H�|$ ���H��H�L$(dH3%(�H��8[]A\A]A^A_�@I������9���I����M���&���H���0H��L���f�H�v ����H�1�0H�I��tL���H�T$H��H�|$�=�H��H��H��H�D$(�D$$M��L��PL�D$�L$�?��H��XZ�)���H�N�0H�����fDH�y�0H����H���0H����H��0H����H���0H�����x�H���0H�5	�H�81��g�����AVM��AUA��ATI��UH��SH��H�� dH�%(H�D$1�H9W@��@����@���������%H���+@���AH�uH���՚��H�C H����H�@H�������<��H���0H��L��H��H�$4H�8H�l$D�l$�D$����H�T$dH3%(��H�� []A\A]A^�f.�H������b���H����H���O���H�q�0H�0�D����f�L��D��L��C@H��L�c@CC C0�Dp��t����H���0H�0���f�H���0H�0����H�1�0H�0�����H�9�0H�0�����H���0H�0����w�ff.��UH��SH��H��H�T$��t$����H���0H��H�0��s�H���%���������؃�����H�������H�{1Ҿ��n�H��t~H����H��I��j�H��L�D$�K}�H��XZH��H��[]�@��t�H�=�
1��Ud�DH�����u�H����H��u�H���0H�8�z���f�L�D$H�޹��H�=��2�bB�H��H��H��[]�DH��0H�8�2����H�A�0H�8�"����H�I�0H�8����H���0H�5k�H�81��~�f�H�q�0H�8����H�y�0H�8�����SH��H��H��dH�%(H�D$1�萁�H�$��u	H�����u1I��H��H�=��2�A�H�D$dH3%(u3H��[�@H�������t��t�H�߾�)}�!H�����t�f.���ATD��E1�A��UI��H��S��H��Q����V�h��XZu	[]A\�@H�a�0H���Xt�[L��H��]A\����fD��H��(dH�%(H�D$1��A��wIH;��0t/H�$��L$H���b���H�D$dH3%(u5H��(�D���9�����H���0��H�5�H�81��m|���s����UH��SH��H��dH�%(H�D$1�H�GH��H�x�����t,H�4$H��t#H�F���<tH���-���H���5C��A�1ɺH��H�����H�D$dH3%(uH��[]��Ls�ff.��AWI��AVM��AUATE��USH��H��XH��$�H�T$�$H�D$dH�%(H�D$H1�H��u
H�T�0L�8L������M��I����A���6A���,H��!����H�����H����L����H����M��I��M����fDI��ƒ������Ā��L�����H��H���c����y�A��tjA��tdH��!t��H���t
H���x���L���w���$�6fDI��ƒ�������������L���F���a����L���8��I�GH�h@H�EH�l$ L�hA���)H�T$8H��L���������L�|$8L��I�OH��H�L$(�m���L��H���E0��H�L$(�A��1�A��A�����D$�J�H�����t#A��tH��H�L$(H��MD�$H�t$1�H����u��I��M���
H�T$L��L���Je�H���@�H�;�0H9(��H���
��H������t	E�����D$��tI�G���<tL��H���0���L��H��L�����A��u
I�������@��uH������@H�L$HdH3%(L���H��X[]A\A]A^A_�f�H��1����H��A����L���~��H���=����z���H��1t
H��A�S���L���R���$�FfD�D$A���������D$����<��H���J�H�=��H��1��f�H�D$(��D$���*<uwH�D$(1�H�x��l�I��M��t_H�D$(H�x �aJ�H�D$I�GH�xX�OL�L��H�D$(�o�L��H��� ���n�H�xH�L$�t$(H���1��i��D$����H��tv5H������H����G�H�=�H��1��?r����f.�H��e���H��������DL�����M�����������f�L�D$@H��L��L���}|����tH�|$@H��tL���7-��I�GL��L�hL�|$ ���f�H�D$ H���������H�=�2H������1�H���T�������H��H���u�����f.�H��$�D���6�I�������L��H���e[��Q���H������I��L�D$@I�D$L��H��L�$H�x�{��L�$��t/H�|$@t'H���F�H�=��H��1���p����f�M�d$M��u����H�D$(L�x�����m�H�x�����0m���H��(dH�%(H�D$1�H�$1�H�L$H���5���H�D$dH3%(uH��(���l�ff.���AWAVA��AUA��ATI��H��UD��SH��H��H�=�0L�8�����tH��uD�L���G�H�=l�H��1���y�H���b�I��E��ufE��u1H��[]A\A]A^A_�f�L���(����Ń�ta���E��@L����.�H��A��L��H�ߺ[H��]A\A]A^A_�D���@A��H���L��H���*�����L��������A���H�=Q�1���b��.���ff.�f�AWAVAUI��ATUSH��X�L$dH�%(H�D$H1����*I������I�E��������������[�D$H���H�D$(�F�H�D�H�D$ H�D$8H�D$H�D$@H�D$@H�H�|$H�D$8�FM�H��H��� I�EL�`@M��tVM���,�L�L$@M��t3I�AM�����<uyM�vM��t%I�FH�T$H��H�x��x����u�M�vE1�M��u�E1�M���I�WH������<�<u(H�BH����H�@H�������<��I�H����9D$t4L��L���)��M9�t\M9�tWD�D$1ɺH��L���H����H��H;\$ ����H�D$HdH3%(�H��X[]A\A]A^A_�fDI�I�WH%����HD$(I����<tL���a9���H�RH��t�H�H%����HD$(H���@A�E����tD1�H��L���_���L���g��9�H���#r�H�=��H��1��b`��<���DH���0L�0M��t�I�FH�T$H��H�x�$w����tL�L$@M��tM���c���fDM�vM��u��n���H�t$8L��轲���h����ATI��U��H��SH���Xa�L���H�����H��[]A\�ff.���ATI��U��H��SH���a�L���H�����H��[]A\�ff.���SH�Ӆ�u��ڂ��H��[�DH����H���^���H��[�f���H�e�0SH���u�蓂��H��[�fDH����H������H��[Ð��SH�Ӆ�u��Z���H��[�DH����H������H��[�f���SH�Ӆ�u�����H��[�DH����H�����H��[�f���H���0SH���u��Ӂ��H��[�fDH����H���V���H��[Ð��S�����H�5Ϩ��H�=���s,�1�H�5�,��H�=���^,�1�H�5�#��H�=D��I,�1�H�5�#��H�=9��4,�����H�5����H�=.��,�����H�5�x��H�=��,�1�H�5�*��H�=
���+�H�@�0�����H�<���H�5�H�;�B�H�;�����H�޵��H�5��rB�H�;�����H�#�H�5���p�H�;1�A��	���-�H�F�0A�1ɺ	��H�;��H�;�����H����H�5���B�H���0�����H�.���H�5m�H�;��A�H�;�����H����H�5[���A�H�;�����H�5���H�5K��A�H�;�����H����H�5<��A�H�?�0H�=4�H�0�B�����H����H�5�H��H��v2�VA�H�=�v21�H����H�5��:A�H�=�v21�H����H�5p��A�H�=�v21�H����H�5]�A�H�=���R�H�=��H�nv2�iR�H�=�H�Nv2�QR�[H�9v2����AWH�=n�AVAUATUSH��8H���0H�0�A�L�-i�0H��I�E�.�I�E�������ƒ�����H����<�
H�xH�-6�0L�%g�0H���0H�D$(H�l�0H�D$ H���0H�D$H�|�0H�D$H�5V�3w�I�}�����H��b��H�5Ÿ�D�H�h�0H�8�xd�H�H��I���\���H�5H��H���W�H�߹H�;�����qW�H�߹H�����XW�1�H�߾�H�����BW�H�߹����H�������)W�H�߹H�J�����W�H�߹����H�!�����V�1�H�߾�H������V�1ɾ�H��H������V�L����9�H�CH����9�L���{?�H���0I�}H�5{�L�0�qb�1�H����H�5�H��H���fC�H�߹����H��_��H�5G��KC�H�T��1�H��H�5�c�3C�H�l�0H�="�H�0�]?�H�
N�0H��H���+��fa�I�}H�5z�H��H���x�H�=��8�H��H���Dy�H�=��8�H��H���(y�H�=���7�H��H���y��)�I�}H�5�H���Tx�H�-�0�L�;� 1�I���I��H��������?H�T?H9���	�H�=��H�T$��N�H���Pm�H�T$L��H���p7�I���H��������?H�T?H9��)	�H�=^�H�T$�N�H���m�H�T$L��H���#7�I���H��������?H�T?H9����H�=+�H�T$�NN�H���l�H�T$L��H����6�I���H��������?L�|?H9��o�H�=��N�H���nl�L��L��H���6�L���X7�I�}L��H�5��v�L���0�L�3H�=)�I�L�x8�.�E1�E1��1�H��H���a�I�}L��H�=�0H�D$�t�H�
�0L��H�¡0I�H�9�gt�L��0I�GH�M���H���M�wI�G@I�G8I�G M���I�I��8I�I��@I�GI��@L�8A��PM��@L�t$L���"<�I�G I�VE1�E1�1ɾH�@H�RH�I�W8L�pH�PH�@ 1�H� ���H�B�0H�8�
��I�W H�RH�R H�B��5p�H�=�sH���f7��;�H�bp2�:�1�H�}�+H�Cp2H�f���1��%��I�<$1Ҿ+�%��L�-��01Ҿ+I�}�{%��L�5��01Ҿ+I�>�e%��H�1�H�}��-f����F%��I�<$��-�3%��H�1�H�}�f����*�%��I�<$��*�%��H�1���/f���H�}��$��I�<$��/��$��H�E1�H�}��%fD����$��I�<$��%�$��H�E1�H�}���fD����z$��I�<$����g$��I�}����T$��L�|$ ���I�?�=$��H�E1�H�}���fD����$��I�<$����	$��I�?����#��I�}�����#��L�|$���I�?��#��H�D$(���H�8�#��H�D$���H�8�#��H�E1�H�}��<fD����~#��I�<$��<�k#��H�1�H�}��f�����L#��I�<$����9#��H�1�H�}��>f����#��I�<$��>�#��H�1�H�}�f�������"��I�<$�����"��H�1��	��f���I�}�"��I�>�	���"��H�E1�I�>�
��fD����"���
��L�%+�0I�<$�j"��H�}�
���W"��H�E1�I�>���fD����7"��I�<$����$"��H�E1�I�>��qfD����"��I�}��q��!��I�<$��q��!��H�E1�I�>�
��fD����!��I�}�
���!��I�<$�
���!��H�1�I�>��f�����z!��I�}����g!��I�<$����T!��H�1�H�}���f����5!��I�}����"!�����H���0H�8�	!��H�1��E1�f���H���0��H�8�� ��I�}����� ��H�1����
f���I�}� ��H�E1�I�}���E1�fD���� ��H�E1�I�>���
fD���k ��H�E1�I�>���
E1�fD���H ��H�E1ۺ�1
fD��H���0H�8�! ��H�H�}��&fD��� ��H�H�}��|fD������H�I�?���fD�������H��0H�8�-�H�һ0H��H��'Q�A���	�1
H����H�;�/�H�;�Z5�H��8[]A\A]A^A_�V�H������3�H����H��� �H��0H�-S�0L�%��0H�D$H�8H��0H�D$(H���0H�D$ H��0H�D$����V�I������V�H���'����V�H�������V�H���m���H�-Ѹ0H�}���H�y�0H�-��0L�%�0H�D$H�8H�D�0H�D$(H��0H�D$ H���0H�D$�{�f.�L�%��0H�-b�0I�<$�*�f�H��0H�-B�0L�%s�0H�D$(H�8��fDH�q�0H�-�0L�%K�0H�D$ H�8H���0H�D$(H���0H�D$H�d�0H�D$���f�ATI��UH��SH��L��H��L�KE�jjA���7�ZYH9�tPH�S�H�2�0H���XuH��[]A\�DL��H��H�D$���H�D$H��[]A\�f.�H�P�J�fD��I���d���@��SH�D�0�����H�8��H�5��H�;�2�H�;�H����H�5���1�H���0�����H�
H�5��H�;��1�H�;�����H��H�5���1�H�;�H��H�5X��1�H�;�����H���H�5J���_�H�;�����H�l�H�5���_�H�;�����H���H�5d�_�H�;�����H��H�5*}�z_�H�;�����H���H�5I�__�H�;�����H�n��H�5���1�H�;�����H��m��H�5����0�H�;�����H�zm��H�5����0�H�;�����H�/m��H�5���0�H�;�����H���H�5���0�H�;�����H�y�H�5���}0�H��0H�H�����L�����H���H�5�H���^�H�H����L�����H���H�5OcH���b^�H�H����sL�����H�'��H�5%H���8^�H�A�0�H�;�$l�H�;�H�H��I��H�������H�;���k�H�;��H�H��I��H�������H�;����k�H�;��[H�H��I��H�������f���AWAVAUATUSH��(dH�%(H�D$1�����I��H������t������f�����9I��H����L���������C�H�l$I�D�H�D$fDI�<$M����]�H���1�H�T$H��t:H�BH��ts���<ti<uwM�M��tnM��I�FH��H��H�x�``����u�M�vM��u�H���0L�0M��t*I�FH��H��H�x�1`����t
H�T$H��u�M�vM��u�1�H��L�����DL��H�$I���J�H�$�H��I��H���1���L9d$����H�L$dH3%(L��uJH��([]A\A]A^A_��_��H� �0H�8�g���P ����
�P �H���0H�5�H�81���Y��dQ�@��AWAVAUATUSH��(H�4$dH�%(H�D$1�H���~I��H��L�d$1�莘�M���fDH�t$H����H�F���<��<��A����I�������A�������H��0L�8M����I�GL��H��H�x�^����thH�t$H��t^H�VH��tb���<tX<��H�M�vH�j H����M��t9M��I�GL��H��H�x�V^�����.���M�M��u��H���M�M���t���1�H��L�����fDH�V����@1ҿ�T��H��H������H�@H��������������u�H�@H������H�@H���������<�������u
H�H����H�~ueH��H�t$��T����L��E1�PH�t$A�L��vH�t$���H�"�0ZYH���Xu|H�D$dH3%(u}H��([]A\A]A^A_�L�F H��H�4$��L���p���L�h A��u	I�����u L�xA��u�I�����t�L��H���<��H��L��H�$�n<�H�$��H�4$L���L���s����N�H���0H�5�H�81��W�f.���ATI��USH��H��H�|$H�T$�0�H��t%L��H���Y�H��H��H���q�H��H��[]A\�H�t$H��������H���0AVI��H��AUATI��USH�H�CH�P8H�h@H�SH�PH�P@�D�L��I���9�L��L��H����H�CH�P�H�SH�h�[]A\A]A^�ff.�f�AUI��ATUSH��H��(dH�%(H�D$1�H�GH�h@H�����H���H�����H���
�rH�EH�T$H��H�x�[[�����#L�d$M���I�T$H������<��<u(H�BH����H�@H�������<��H�EH��H�x�M]��H��L�����H���z�I�D$���<��H����X�1H�D$A��u7I�����t.I�E������t ��tL���T�AI��fDL�D$�L��H�=tX2��H�D$dH3%(uoH��([]A\A]�@H��H���E���i���H���XX�!H�=�H���$�H��H��H���V7�H����2�H����$�H�=��H��1��UO��p�����K�ff.����������SH��H���W�H��[H�����@��AUATUH��SH��dH�%(H�D$1���~;�G�H��I��L�l�DH�L��H�$�y-�H��t2H��H��H�����L9�u�H�L$dH3%(H��u6H��[]A\A]�H�$�!H�=���H��H��H���O6�H����1���J�f���AUATUSH��dH�%(H�D$1�H����H��H�����H���H�����kH���
�^I��I��H����I�D$L��H��H�x�zX������H�4$H����H�F���<��<���A�1�H��H���S��H���[V�QH�$��u5H�����t,H�������t��tH�߾�%R�aH��DM��H��H�=�U2�1�H�D$dH3%(��H��[]A\A]�f�M�d$M������H���$�H��H���O���1ҿ����H��t�H�PH��t����<t�<����H�BH��t�H�@H��t�������H���'"�H�=H�H��1��L����H��0H�5��H�81��yQ���H�@��AUATUH��SH��dH�%(H�D$1���~;�G�H��I��L�l�DH�L��H�$��*�H��t2H��H��H����L9�u�H�L$dH3%(H��uH��[]A\A]�H�4$H���6���aH���AUI��ATI��H��USH��H�ʮ0H�H�CH�H8H�h@H�KH�HH�H@�r�L��H����L����H�CH�P�H�SH�hH���[]A\A]�ff.�@��AWAVAUATUSH��HdH�%(H�D$81�H�?�0H�|$H�(L�eI�D$ �u�H�P�H��H��t�H�X�H���CH�؃�H��t\H����������uH�����t�������H�C �PH��H����t�H��H����t�H�H�؃�H��u�M�t$H��L�+L�{L����H��@I9���I�FH�T$M��L��I�D$H�D$H�t$ H��A�I�H�D$ H�D$(4H�D$0�D$�ܚ��I�H�MM�t$H�HcWL�AL�Iȋ��)�I��L�GM��H�CH��I������H�H�D�8I9��"L�ML�Q�L�y�L�i�H�A����
�F�H�D�f�H��H�B�H9�u�L�@H�PH��H��H�@��H�@�!""H�Q�H�A�H�A���/��;�H��H��A�H��jH��jH�H�PH�pjL�L$(����H�� H�L$8dH3%(uuH��H[]A\A]A^A_�fDH�L$E1�E1��H��H���m����H������u9I�D$�G���f�1ҾH�=sT��>�D�3��H���	����E���1�H���A��f���AWAVAUATUSH��XH�|$dH�%(H�D$H1�H�Z�0H�(L�eI�D$ �u�H�P�H��H��t�H�X�E1�H����H�؃�H��ttH�������!���8H������+�������H�C D�H A��A���PH��H����t�H��H����t�H�H�؃�H��u�@H��A��M�l$H�M�L�{E0�H�D$I��""L�����H��@I9���I�EH�T$ A��M��I�D$H�D$L��H��H�t$0I�� I�EH�D$0H�D$84H�D$@�D$(�ȗ��I�H�MM�l$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��NH�D$L�EL�I�L�y�H�A�H�A����1�F�H�D�f�H��H�B�H9�u�L�PH�PH��H��H�@��L�p�H�Q�H�A�H�A���,��7@H��H��A�H��jH��jH�H�PH�pjL�L$8���H�� H�|$HdH3<%(��H��X[]A\A]A^A_�f�H�L$E1�E1��H��H���U����H�C H������E1�����H��D�L$���uDI�D$D�L$�����1ҾH�=3Q�;�D����H�������A���1�H���b>��f���AWAVAUATUSH��XH�|$dH�%(H�D$H1�H��0H�(L�eI�D$ �u�H�P�H��H��t�H�X�E1�H����H�؃�H��ttH�������!���8H������+�������H�C D�H A��A���PH��H����t�H��H����t�H�H�؃�H��u�@H��A��M�l$H�M�L�{E0�H�D$I��""L�����H��@I9���I�EH�T$ A��M��I�D$H�D$L��H��H�t$0I�� I�EH�D$0H�D$84H�D$@�D$(舔��I�H�MM�l$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��NH�D$L�EL�I�L�y�H�A�H�A����1�F�H�D�f�H��H�B�H9�u�L�PH�PH��H��H�@��L�p�H�Q�H�A�H�A��)��7@H��H��A�H��jH��jH�H�PH�pjL�L$8詙��H�� H�|$HdH3<%(��H��X[]A\A]A^A_�f�H�L$E1�E1��H��H�������H�C H������E1�����H��D�L$�k��uDI�D$D�L$�����1ҾH�=�M�m8�D���H������>���1�H���";��f���AWAVI��AUATI��USH��xdH�%(H�D$h1�H�٤0H�H�CH�P �u�H�B�H��H��t�H�B�H�ƒ�H��tH�=q�1��",�f�H��L��H���oH�l$0H��)D$0H�PH�T$@H�P�]��I��L�`A����L�cI�T$ H��uH�A�H��H���t�H�i�L�t$0�uf.�H�B�H��H��t�H�j�E1�H����H���H����H��tj@����@���H�������E�����bH�E D�H A��A����DI������7���L��H���*��'���H��H��E1�E1�H��jH��jH�H�PH�pj�&���H�� H�|$hdH3<%(�1H��x[]A\A]A^A_��H��A��M�\$H�EM�L�uE0�H�D$I��""L�����iH��8I9���M�\$M��H�T$ L��H�t$PA��H��I�� L�\$H�D$PH�D$X4H�D$`�D$(�G���I�~L�\$H�KH�HcW���M�\$L�AL�I�)�I��L�GM�����L�E�I��H�H�D�8I9��H�D$L�KL�Y�L�q�H�A�H�A������F�H�D�fDH��H�B�H9�u�L�(H�PH���L�@�H��L�x�H�Q�H�A�H�A��S%��|���fDH�E H������E1ɋPH��H���������H��H���������H�(���fDH��D�L$L�\$�v��uTI�D$L�\$D�L$�m���fDE1�E1�1�1�H��H���Ù�����1ҾH�=�I�[4����H���������1�H���7���x:����UH��AWAVAUATSH��H�u�H�U�H�M�L�E�L�M�dH�%(H�E�1�����H���0L� M�l$I�U �uDH�B�H��H��t�H�Z�E1�H����H�؃�H����H�������u����H�������������QH�C D�H A��A���PH��H����t�H��H����t�H��f.�Hc�H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�EH���E�H�E�H�E�H�E���~h�W�L�]�H�ȾL�L�L�EE1��'f���H����A�L�H�H�P�I9�t��/v�L��H��I��H�H�P�I9�u�E��t�u�H��0L�I�BH�P �u�H�B�H��H��t�H�r�H����H����E1�E1�jL��jj�y���H�� �rH��A��M�]H�M�L�sE0�H��H���I��""L��A��$��_H��8I9��M�]M��A��L��H��P���L��I�� L��@���H��`���HDž`���HDžh���4HDžp���DžX������I�~I�L$L��@���H�HcW���L�I�M�]L�A)�I��L�GM�����L�C�I��H�H�D�8I9��_H��H���M�L$L�Y�L�q�H�A�H�A����<�F�H�D�f.�H��H�B�H9�u�L�@H�PH��L��H�@��L�x�H�Q�H�A�H�A��� �H�M�dH3%(��H�e�[A\A]A^A_]�@L��D��<���L��@����"����I�EL��@���D��<����l���1ҾH�=�E�0�DE1�E1�1�1�H��L���S����p���fDH��H��E1�E1�H��jL��jH�H�PH�pj�n���H�� �7���DH�C H���J���E1��R������H��������5�A��$�1�L���f2��fD��AWAVAUATUSH��XdH�%(H�D$H1�H��0H�(L�eI�D$ H��4�H�|$�u�H�P�H��H��t�H�X�H���CE1�H�؃�H��tTH���R���i����H�������������EH�S D�J A��A����H��A��M�l$H�M�L�{E0�H�$I��""L�����H��@I9���I�EH�T$ A��M��I�D$H�D$L��H��H�t$0I�� I�EH�D$0H�D$84H�D$@�D$(虈��I�H�MM�l$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��7H�$L�EL�I�L�y�H�A�H�A������F�H�D�H��H�B�H9�u�L�PH�PH��H��H�@��L�p�H�Q�H�A�H�A���H�t$HdH34%(��H��X[]A\A]A^A_��uH�P�H��H��t�H�X�E1�H���8H�؃�H���H���~���
���|H������o�������H�S D�J A��A���\@H��H��A�H��jH��jH�H�PH�pjL�L$8����H�� ����H��H��E1�E1�H��jH��jH�H�PH�pj���H�� ���DH�S H���^���E1ɋB���d�����t	���+H����fDH��A��M�l$H�M�L�{E0�H�$I��""L�����H��8I9��&M�l$H�T$ M��L��H�t$0A��H��I�� H�D$0H�D$84H�D$@�D$(���I�H�MM�l$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9���H�$L�EL�I�L�y�H�A�H�A�����F�H�D�H��H�B�H9�u��S���f.�1ҾH�=C@�*�DH��D�L$�{���I�D$D�L$����@����H�L$E1�E1��H��H��轏�������H�S H�������E1ɋB��tL������u[H��+���H��D�L$������I�D$D�L$�I���@H��H�����H��H�����H���a������t�E1�E1�1�1�H��H�������h���fDH��H�����@H��H�������/���1�H���f,��fD��AWA��AVAUATUSH��XdH�%(H�D$H1�H��0H�(L�eI�D$ �uH�P�H��H��t�H�X�E1�H����H�ڃ�H��ttH�������A���XH������K������H�S D�J A��A���JH��H����t�H��H����t�H�H�ڃ�H��u�@H��A��M�t$M�H�L�{E0�L��H�D$I��""�����Ic�H��H�T8I9��L�A�J�I�D$1�E���H��H��I��H�PH9�u�H�T$ H�t$0M��L��A��H��D�T$@I�� H�D$0�D$DH�D$84�D$(�e���I�H�MM�t$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��[H�D$L�EL�I�L�y�H�A�H�A����>�F�H�D�fDH��H�B�H9�u�L�PH�PH��H��H�@��L�h�H�Q�H�A�H�A��n��5@H��H��I��E��H��jjH�xH�H�PjH��H��苇��H�� H�|$HdH3<%(��H��X[]A\A]A^A_�@H��E1�E1�D��H��H�������H�S H�������E1����H��H�t$D�T$D�L$�A��uJI�T$D�L$D�T$H�t$���@1ҾH�=�;�=&�D���H�������c,���1�H����(��f���AWAVAUATUSH��xdH�%(H�D$h1��|$(H�|$(H�t$0H�t$0�T$,H�T$,�=��D�D$,H�L$0H�D$8H��0D�T$(H�(L�eI�D$ �u�H�P�H��H��t�H�X�E1�H����H�؃�H��ttH�������Y���hH������[������5H�C D�H A��A���PH��H����t�H��H����t�H�H�؃�H��u�@H��A��M�t$M�H�L�{E0�L��H�$I��""�����Ic�H��H�T8I9��>L�A�r�I�D$1�E����H��H��I��H�PH9�u�1�E��D�D$dH�T$@��H�t$PA��M���L��H��D�T$`H�D$PI�� H�D$X4�D$H�~��I�H�MM�t$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��wH�$L�EL�I�L�y�H�A�H�A����[�F�H�D�H��H�B�H9�u�L�PH�PH��H��H�@��L�h�H�Q�H�A�H�A����H���:f�H��H��I��H��H��jjH�H�PH�pAPE�����H�� H��H�|$8�56�H��H�L$hdH3%(��H��x[]A\A]A^A_��H��E1�D��H���G���H���f�H�C H�������E1����H��D�L$D�T$H�L$D�D$����uUI�T$D�D$H�L$D�T$D�L$����f.�1ҾH�=8�}"�D����H������(���1�H���2%��f���AWAVAUATUSH��hdH�%(H�D$X1���H�D$(H����H�8H��H��H������H�K�� uH�K �� ��H�RHc�A��H9���H���0L� M�l$I�u �ufDH�F�H��H��t�H�n�E1�H��� H���H��t|H���B@����@����H��������E�����bH�E D�H A��A���xH��H����t�H��H����t�H�(H���H��u�f�H��A��M�}M�H�EH�]E0�L��H�$I��""A��$��!Ic�H��H�t8I9��dL��r�I�E1�E����H��H��I��H�PH9�u�H�T$0H�t$@M��H��A��L��D�\$PI�� H�D$@�D$TH�D$H4�D$8��z��H�{I�L$M�}H�HcWL�A���)�I��L�GM��H�EL�A�H��I�Ë���H�H�D�8I9���H�$M�D$L�I�H�Y�H�A�H�A������F�H�D�fDH��H�B�H9�u�L�XH�PH��L��H�@��L�p�H�Q�H�A�H�A����H�T$(H�T$@H�T$(H�L$XdH3%(�;H��h[]A\A]A^A_�@H����H���d���f�H��I��I��E��I��jL��jI�
I�RI�rj���H�� �H�����H�T$(H�H�:����E1�E1�D��H��L���,����I����H�E H���q���E1��y���L��D�L$H�L$H�T$D�\$�l����umI�uD�\$H�T$H�L$D�L$���1ҾH�=�3�e�D���H�����H���0H�5%�H�81��,�H����2��k$�A��$�1�L��� �����AWAVAUATUL��SH���T$<H�t$0H�T$DH�L$0H�|$<dH�%(H�D$x1��D$D�3��H��D�D$DH�L$0H�D$H��T$<HD�H�d�0L� M�l$I�E �uH�p�H��H��t�H�X�E1�H���H�؃�H��ttH������i���xH������k������EH�C D�H A��A���xH��H����t�H��H����t�H�H�؃�H��u�@H��A��M�UM�H�L�{E0�L��H�D$I��""A��$��Hc�H��H�t8I9��LLЍz�I�E1����f.�H��H�4�I�4�H�pH9�u�1�E���T$pH�t$`��D�D$tH�T$PM���A��L��L��L�T$I�� H�l$`H�D$h4�D$X�v��I�L�T$I�L$H�HcW���M�UL�A)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9��zH�D$M�D$L�I�L�y�H�A�H�A����\�F�H�D�@H��H�B�H9�u�L�PH�PH��L��H�@��L�p�H�Q�H�A�H�A���H���4�H��H��I��H��jUH�xH�H�pAPA��H��L����{��H�� H��H�|$H�.�H��H�L$xdH3%(��H�Ĉ[]A\A]A^A_�f.�H��I��L���"���H���DH�C H�������E1����L��D�L$8L�T$(�T$$H�L$D�D$�`����uQI�uD�D$H�L$�T$$L�T$(D�L$8���1ҾH�=�/�U�D���H������{ �A��$�1�L��������AWAVAUATU��SH��xdH�%(H�D$h1����H�D$(H��� H�8H��H��H�����@�� ��H�[ �� ��H����Hc�H9����|$ H�T$$H�t$0H�|$ �l$$H�\$0����D�D$$H�L$0H�D$8H�5�0D�T$ H�(L�eI�T$ �u�H�B�H��H��t�H�Z�E1�H���@H�؃�H��ttH���R��������H�������������}H�C D�H A��A���PH��H����t�H��H����t�H�H�؃�H��u�@H��A��M�t$M�H�L�{E0�L��H�$I��""����CIc�H��H�T8I9���L�A�r�I�D$1�E����H��H��I��H�PH9�u�1�E��D�D$dH�T$@��H�t$PA��M���L��H��D�T$`H�D$PI�� H�D$X4�D$H�qr��I�H�MM�t$H�HcWL�A���)�I��L�GM��H�CL�A�H��I�‹���H�H�D�8I9���H�$L�EL�I�L�y�H�A�H�A������F�H�D�H��H�B�H9�u�L�PH�PH��H��H�@��L�h�H�Q�H�A�H�A��~�H��H�|$8�!*�H�T$(H�T$PH�D$(H��H�L$hdH3%(�PH��x[]A\A]A^A_�@H���� �!���H�z�����H��H��I��H��H��jjH�H�PH�pAPE���>w��H�� H���g���f�H�����H�T$(H�H�:����H��E1�D��H���{��H���,����H�C H���V���E1��^���H��D�L$D�T$H�L$D�D$������urI�T$D�D$H�L$D�T$D�L$����f.�1ҾH�=c+���D�#�H���i���H���0H�5��H�81��p$��[*������1�H���u��D��H�O�WH�wH�?����f���E1��T��@��AWAVI��AUA��ATI��USH��H��(���D$`L�$L�L$�D$H��0H�(��A���D������uI���{A����I�FL��A�H��H��H��H�D$�1���…��I�~H���nH�މT$�.�T$H��I���FH�@H���9���<�+<�������L�L$M��D��H��L��H�$��ЋD$M��M��D��H��L��H��D$`H��([]A\A]A^A_���DI������"���I���)M������L�=�0A�H��1�I�H�D$fDH��H���5���…�tI�?�����L�L$M��D��H��L��1�H�$�4��H��(H��[]A\A]A^A_�L����T$�/���T$H��tH�@H��t���<����H��M��E��H�ًD$ H��Pj4RH�t$0L���#���H�� 1�L�L$H��4H��M��D��@��H��L��H�$���d���fDL�=yz0I�A�H��L��H�D$����L�=�0A�H��I�H�D$����fDH��������:������1�H���w���L�=A0��L�=�{0A�H��I�H�D$�~���fDL�=!~0�S���H��L���Q'�����H��j����H���ff.����H�%0H�HP�ff.���H�0H�H����f.�����fD��HcGH�@H��(�ff.���H�L�FH�HcB�pH�@�rH�2H���L�@H�HH�G�f.���H�HcA�pH�@�qH�1H��H�PH�W�H�PÐ��H�W H��H�r���H�5~0H�H��`�GH�����ff.���SH�?H��t	H��9&�H��[�0&���ATUH��SLcgM��t=1���H��I9�t(H�UH�[H�‹����w�H�zH����I9�u�H�}�v�H�} []A\�i�f���H��S���H�uY0�(��ff.���ATH�SY0I��(USH��H�=O(2���L��H�h H�CH�+�&�H�H�EH�B�B[]A\�ff.���UH��H�QY0SH��H��H�=�'2��H�P H�*H�ZH��[]�fDAWI��AVAUATUSH��H�GH�7L�<�M����H�GI�_�H9���H��M��H�L$I��H)�L��H��m۶m۶mH��H��L�uL��A��M��~nH��H)�I���X����H�;t	H��L��A��H��8H9�tAH�{u�H�C H�%�H=UUu�H�����H��H��8L��H�@H�P H�D$��H9�u�H��[]A\A]A^A_��H��1�L��[]A\A]A^A_A��f.���H�G H����t#��w
H�x����uH�@H��uݸ�PH�=(�1���ff.�f�H��tJ@��uGH�����t>H�H���у���u.H������uH�W1��uH�B����u�f�1��PH�=ԭ1��.�ff.���USH��H��H�/H������H�{L�CH��H��HD‹SH��[]H��A��f���AUA��I��ATUH�-��SH��H��H��t
H�nH� uOL�%�{0A�EI�<$��tLH��t{L�KH� tL�KH��H��H�m�1�[�]A\A]�U��DH�n�f.�H���M�D�D$H�=���#�I�<$D�D$A�EH��u�H��H��H�ɬ1�[�]A\A]����ff.���AT1�I��UH��H�=��S� �H��I��t+H��L��H�5��1����H�}H�EH��[]A\��fD�H�5Y�H���|���f.���H�G H����t#��w
H�x����uH�@H��uݸ�PH�=d�1��=�ff.�f�H��1�1�dH�%(H�D$1�H��������tH�$��uH�����t
�����tH�t$dH34%(H��uH���H�R����D��ATI���UH��S���H�U1�H��H�����H���_���H�߾H�����H�ߺ����H�ߺ��{��H��H�߾H���g��I�<$H��[]A\�(����AUI���ATUH��SI��I��H�����H�U1�H��H�����H������H�߾H�����L��H�߾����H�U�H�߾H��HD�����H��L������I�}H��H��[]A\A]�(�ff.�@��H�A��% H��t;L�IH� tL�IH�NH��tH�NH�6��1��*��f.�H�NH��tH�NH�\��1�����H��t@��uH�����t
H��у���t	��H������u�H�G�ff.�@��H��H�G H����t:��wH�BH�@H�@HH���D��uH�z����H��HD�H���H�=ʪ1��c����H��H�G H����t:��wH�BH�@H�@PH���D��uH�z�"���H��HD�H���H�=�1����AWAVAUATUSH��L�L$H����H��H����I��H��I��H��M������H�$A�$H��~[Hc�H9�}SH��E1���Hc�H9�}<��H�t$A��H�H)�H�@I�H�<�A��H�<$H����%�Ic�A�$H�L5H9��H�$H��[]A\A]A^A_�H�=ʩ1��;��ff.�H��(H�|$H� HcOdH�%(H�D$1�H�ҸHD�H9�+I��H��E1�L��H�wL�����H�T$H�T$H�T$H�t$dH34%(uH��(��
�f�H��(I��H�|$H� HcOdH�%(H�D$1�H�ҸHD�H9�(I��L�A���H��H�wL���b���H�T$H�T$H�T$H�t$dH34%(uH��(��)
�f�H��xH;}H�?H���[�PH��u0H�5-�H�81��r�f���AVAUATUH��SL�fH�L����I��H�EI�D$L�pPH��t=H+XL��H��H��H��H���B��[�UL��L��H�}H�E]A\A]A^��D1���ff.��SH�����t-��uH�[H��u�1�[���tH�=��1��M��D�C[�H�s�H��t)H�{H�GH+pH��H��H����C[��1���@��H��H�G H�8�l���H��H�H�D�AUATUH��SH�����tl��uGH�GH���zH�x��H�}I���%���A��H�}���H��H���HD��D�����H�=��1��i��f�H��'�D�mI��H�EH�@H�XPI�l$I�$ tI�l$H��L����
�H��H�5�H��1����H��E�����H�5ۤH�����H����H�SH� tH�SH��H�5��1���H��H��[]A\A]��H��w
�H�}H�uI��H�GH�XPH����H+pH��H��H����A��D�m�E����H��D��H�5��1��|��B����H��p0E1�H�L��`����H��H�5z���H��H��[]A\A]�fDE1��}������������H�G H�8����H��H�G H�8����H��H��������H�W 1���u9SH�_H��t(H�7H��t/H�CH��H+pH��H��H�����t[�D��H�����H���P��[�ff.���H�5L0�0����H��(H�!�H�
Z�dH�%(H�D$1�I��H�5p�H�D$��H�D$H�T$dH3%(uH��(����AWA��AVAUE��ATMc�U��SH��H��8dH�%(H�D$(1����H�D$L�p ��"�H�D$ ���`E���Ht-1�L�A����H��tH�|$ L�L$��L�L$�	A�IcVA��udD)�E1�L��L�L$Hc�H�t$H�T$ �h��L�L$H���LH���0H�L$(dH3%(��H��8[]A\A]A^A_�DIcVD�Hc�H)�H����H�|$E��������H�T$H�T$ H�T$�fDH�[A���IH���A��u�H���
A����I�L�����H�H��H���)H���@I�4,H���q������)���f����E����H�D$ �����H�������H�|$ ��A����f��+����'���fDIc�H�T$ Ht$��A��tjI�M����Ic�IcVL�H)�����L�����H���)���f.�H�|$ L�L$�!�L�L$���A�V�&���H����H�����L����I���H�|$ t
H�|$ ���1�D������H��H��n0H�5*!H�81��u����H��n0H�5H�81��X�L����ATA��UH��H�5�G0S��H���u���PP��u,����t$H�x E��H���E1�[1�]A\����f.�[�]A\�fD��H��k0H��E1�A��H�8���f.���H��k0H��A�A��H�8�W������SH�_ H�CH��t[�@HcS1�����H�C[������f.���SH�W �B��H�H�@H�H��H�CH�@H�xX�����C[����SH�_ H�C H��t[�@1�1�����H�C [�f���UH��SH��H���[��H��H��H��H��[]�������UH��SH��H���+��H��H��H��H��[]�g������H��HH�
��H�����dH�%(H�D$81�H��L�D$�D$H�D$ H�D$H�5E�H�D$(H�1j0H�8��H�D$8dH3%(uH��H������H��8H��H�
Z�dH�%(H�D$(1�H�sk0H�T$I��H�T���H�5��H�H�D$H��i0H�8�F�H�D$(dH3%(uH��8���ff.����H��HH�
��H�����dH�%(H�D$81�H���H�<$L�D$H�D$ H��H�D$(H�>i0H�t$H�5:�H�8���H�D$8dH3%(uH��H������H��H��h0H�8�y��1�1�H��H���9�f�����r���f���1��e���D��SH�|i0H�5��H�vk0H�8H��[��H�5d�H��H��2�	�H��2������ƒ����`H���v<�~H�xH�5Q��.�H�g0H�=�2H�
�H�����H�0�z��H�H�=p2H�5�����H��H�R2�E��H�F2��6����ƒ�����H����<��H�xH�5����H�=�21�H����H�5��B��H�=�21�H���H�5&��&��H�=�21�H�&�H�5�q�
��H�=�21�H���H�5/����H�=�21�H�.�H�5�-����H�=s21�H�����H�5����H�=W21�H�����H�5ֺ��������H�5���H�=����������H�5���[H�=К���f�H��������H��tnH������H��i0H�8����fDH������&���H��t.H������H��i0H�8����fDH��`0H�8����H��f0H�8����H��f0H�8�g����H��`0H�8�W����H��e0H�8�G����H��e0H�8����H�Ab0H�8�'����H�1b0H�8����H��d0H�8�w����H��d0H�8������AUATUSH��XH�t$H�|$dH�%(H��$H1�H�se0H�8H��H�|$��a��H�CH��H�\$0H�D$8����1�1�H����H�H�D$@�� ��H����H�T$P1����H�|$L�D$(H�
��H�]�H�5&�H�D$(��H�|$(�2��I��H���Xf.�H����H9�}WL����H��I���|�H��t!H��H�|$H���a���L��H���5����H�EHc�� u�H�EH9�|�H�D$H�|$pL�d$HDŽ$@H�D$`4H�@H��$8�������uaH�L$H�D$`H�AH�|$0H�t$H�D$��H�L$H�D$ H��$8H�AH�D$ H��$HdH3%(ueH��X[]A\A]�fDH�D$H�@���ǀ���t�H��$8H�\$�H�CH�x�������fDH�P�^�����f.���H��H��H�w H����1�H��H�����f.���H��H��H�w H�����H��H��������H��H��H�w H���X��H��H�������H��H��H�w H���(��H����H�����u�H���f�H��H���t��@��H�G����AWA��AVAUI��ATA��U1�SH��H�db0H�$H�H�PH�XH�L�4�fDD9�} L9�tH�C ����E��~$A��D9�|�H����[]A\A]A^A_�f.�H�����H�$Hc�H�4�H��t	H�x�tH�CH�M��t6H�3I�L�H��t6H�{H�L$H�GH+pH��H��H�����H�L$���H��8�Q����1���ff.����H���s�H��tH��H�����f��H���fD��H���C�H��tH��H���"�f��H���fD��H����H��tH��H�����f��H���fD��H�����H��tH��H�����f��H���fD��H����H��tH��H���b��f��H���fD��S��H�����t~H�èukH��Ѓ���tZ��tY��tTH�߾��H�èuH�����t
�����t.H����H����H��H�=S�[H��1����DH�[H��[����[�f����g�H��H��t0H�Ѓ�u&H��у���tH�к%HE���1��ff.�f���H����H��tH��H���b��f��H���fD��ATUSH���@��H��H��tGH�����H��I������I��t.H��H�W[H��H���L��H�=Z�]HE�A\1����H��[]A\����ATUH��S���H��H���5�H��I�����H��ttI9�toH�3H��� tAI�$H�s�� uDH����H)�Hc�H9�uJH�SH��tH�S[H��]1�H�=ΒA\�@�I�$H������ t�I�T$�f�H��[]A\�H���@�AWAVI��AUATUH��SH��H���L�b L+'H��dH�%(H��$�1�����H�D$M����I��H�C �D$ L9e��H�%�H=DD����L�=�H=fft6�0L�=�H=wwt!H=�xL�
�aH��XID�I��fDL�kM���kA����I�������I�EH���H��@��D$H�UI��E1�H�-�^0H��H�~�H��m۶m۶mH)�H�}H��H��1����H�M��H�=R��/�H�KH�}�1�I+H�E�H���M��L��H�}H�KY�8��m4H��L��H��?H��H��H��H)�H��Hi�'I)̀|$ HE�L��1����H�}�1�L��H�ۑ�����t$���RH�C H�u� �n�
�w���
�<2����H�|$L��$�t^H�D$�u!H�����tH�H�D$%�H=`�GH�T$L��$��L���U�H�}�H���H��1��;��H�S�L���*�H�}�H���H��1����M��tI�E�������H��$�dH3%(�PH���[]A\A]A^A_�H�C I��H��D$p%�H=DD�U���L�kL�=��M�������@H�D$�D$H�������H�@H�x �u��H�|$0H����L�='�H=�=���v[L�=�H=""�(���H=33L�
�&H��UID�I�������H=UUL�
��H��UID�I�����H��L�
L�H�}UID�I������A���>L�����H�HH� tH�HH�|$0H��-��1�����D$��������H�}�H�L$01�H��d��H�C H�u� �����H��	�H�=<���H�u�p����A���`���I�EH�H��H+PH�T$ H��H�T$(�e��D$����H�UI��H�-[0H��H���H��m۶m۶mH)�H�}H��H��1�軿�H�|$ ��&���H�L$(H�}�1�H�~�蓿�����fD�����V�������L���H��L��H��� ���4��H�HD�D$H�|$0H�Z�1���胹��5���fDH�M��H�=�L��$����L�|$I�G�8���R��I�I������H�}M��H��H���1��ɾ�I�W �L����H�}�H�ӍH��1�螾�I�WI9W �U���L�����H�}�H���H��1��i���)���@H�M�	�H�=ō��I�E������;���L�t$E1�@H�CH�S E��H���H�|$A��H�@J�����H��H)�H�2����I��I�EH���J�<�����H�}M��H�I�H���1�趽�I�ED;��r����@�{��H�H�B������ff.�f��t
sH�G�1��DH�H�x ��ff.�@AUI��H��@ATUS��H�ƌH��XdH�%(H�D$H1�H��H���g��Ã�P0L�%)X0I�4$H���M����H�T$HdH3%(u(H��X[]A\A]�L�%�W0A�ſ
D��I�4$�������ff.���AU�MATUH��H�=�SH��L�eH��L�-�W0I�M�7�H�UH�EH��H9�s)fDH��L��H��H��8�~���H�UH�EH��H9�r�I�uH���
[]A\A]����D��H��U0H�8H�w�Y���f���AW�AVAUI���ATUH��H�=}�SH��L�%�V0I�$��H����L�5u��I�$��H�=���V���E ��tE1��"f.�I�4$�
A���.��D9} vXH�ED��I�<$D��H��L��H�L�I��1��>��H]I9�u�I�$��H�=�����f�H��� ��H��H���L���I�$H����[H�=��]A\A]A^A_��@��ATH��USH��H���QdH�%(H�D$1������H�9����H��H�$�x���H�-�U0�H�=c�I��H�M�$��H�}L��1�H�ĉ��J���C����s4H�sH�VH���,���H�D$dH3%(�H��[]A\������H�H�P �B����rz����H�
H�q �F����slH�FH�I H�P�A�����~H�q�q���D����H�H�J �Q������4���f.�H�rH�V�/������UH�H�p �F����@H�%fD���%H�H�H �A��tP�d������H�H�H �A��t2�F�������H�H�@ �H��t��H�p���D1������������H�H�p �F���^�����������H�H�@ �p���<���s	H�@�����ujH�H�@ �p������r݃�uPH�H�x ����H�
�v�����u7H�H�@ �H���^����J�����uH�H�x ���H���������f���H��H�5-0謰�H�x H�wH���+���ff.���H��H�WH�H�����H�r I��I)���uH�JH�qH�
H+NH��H�wI�����M��xM��H�����I��I9�LG�L�BH��I)�H��H)�I��H��m۶m۶mH��H��H�׈PH�WR0H�81��-��H������H��H�51,0�̯�H�x H���/���ff.�@��AWAVAUATUSH��L�nM��t~I�EH��I��H��m۶m۶mH+PH�I��H�WH��H)�H��H�Ņ�~1E1�D� A��蚻�I�WI�H��H)�H��H��A9�|�1�H�5[Y��l��M��yH��[]A\A]A^A_��L�����H��L��L��[H��]E1�A\H��A]1�A^A_�#�����ff.���USH��H�5+0誮��H�-�P0�H�@ H�=ޅH�MH�X��H�}�1�L�CH�H�̅裵�L�C H�}H��H�Dž�1�腵�H���[]�f���H���H�=\�1���H�5P�1H����饏D��AWAVAUATUSH��H��(dH�%(H��$1�H��N0L� M����H��N0H�8H�w�?������H�-P0�
H�u���H�MH�����M�H�=���r��H���1�H�5��M���H�{xH�5ބ���;���H���H�5̈́���&���H���H�5��������H���H�5�������H���H�5�������H���H�5��������H�{hH�5{������H�{pH�5m������H�{(H�5_������H�{0H�5P������H�{8H�5A����x���H�{@H�53����f���H�{HH�5%����T���H�{PH�5����B���H�{XH�5	����0���H�{`H�5��������H���H�5����	���H�M��H�=�~��H�M�M�H�=J�������H�u�
����H�M�N�H�=m���M���I��$`H��� ��H�HL�@H��~�H�}H�H�1�1۾L�-��L�=M�螲�H�u�
�P��H�M��H�= ��6����H����H9��hH��L�4�A����L����H���E���uH�����tL�D�ƒ�����A���&D������I���mA���sM�FH�}M���H�ł�1��ӱ���I��$�Hc�H��� �I���H;H��H�@ L�4�A���O���I�������M�D��������A��A����L����H����D����e���H������Y���L�D�ƒ����ZA�� �uI��L�HA��H��L��پAVH�}1����XZ�,����H�u�
���H�5�H�=�觸�I��H����H�M��H�=́L�l$�l���;f.�L���L�����H�M�L��H��H���4��H9�uL���W����t�L������H�M��H�=�{���H��$dH3%(��H��([]A\A]A^A_��H��L�@���;���L���H��H���`C���uH����������I���
M������H�~L0L�����fDL�@L�HI�������A��w������L�?mL��MD�L�D$�%��H����B��L�D$�uTH�����tLH���u?�� ��H��H�HI��A��H��H�}�1�QH�������Y^�?���f�H�}��H��1��������f�H�)C0L����I��������I����H��H0L�����f.�A�� ��I��M�NA��H�}��H�D1���~�����f�H�-�I0H�MH��������M�H�=k��������H�u�
���H�M�N�H�=�������*���@M�FM�NI���d���A��Y���H�aG0L�����M�H�=�����U���H�u�
�w��H�M�N�H�=��]������H�qC0L�����H�	F0L�����L�HH�HI���$���A������K��ff.���AUATUSH��H��F0H�(H��8H��8H9�tDL�-.H0L�%5~�L�CHI�}H��L��1����H�{ H�w�)�H�H9�u�H��[]A\A]�fD���8�fD��SH��H�(�O��H�{�F��H�CH��t
H�x[�3��[�ff.�US��H��H�-aC0�E��%��	�!ةuH�3G0�}�߉H��[]��,�H��G0������}	���@H�FATI��H�>UH��SH��H��tH�G�u:�WH�oH��	SH��u�I�D$8H��tH�@H�H9�t[]A\�f.�H�E���H�}멐�{[]A\�$���@H�G8H���r4�H�@H������~H�VH���������f�AVAUA��ATI��UL��S����H��tUL�pH��L�����A��
I�$uH���q��[�E]A\A]A^�DL���8��H�����[�E]A\A]A^�@[I�$�E]A\A]A^����H��H�5Q#0H�|$�g��H�PH��tH�|$H�p ��H���fDH�x(H�T$������H���ff.���AVAUATA��UH��SH��H��`H�L$L�$dH�%(H�D$X1������H�=�|A�� t,�LH�=�|A��@tA���H�=�'H���HE����H�L$L�D$D��I��H�RC0L�(I�uL���k���H�<$H���N@���H�D$H�|$L�t$ H�D$(HcD$H�DH�D$0�H���;H�D$8�H��tH�D$H��t����H�D$@H�$�H�߹�H��HD�H�T$ H�D$H���H�D$XdH3%(�H��`[]A\A]A^�f�H�=��A���	���H�=m�A�������A��H�=��
H�m�HE�����A��H�=ZnH�O�HE����DH��������H��Ѓ���tn����������������H�$����L��H��H�t$1���x��H�<$H����������@�s�����fDH�=��6���@H�GH�$�g������fD��USH��(dH�%(H�D$1�H��A0H�(�G��H���H��H�mH��t|1�1��fDH�I��H��t�u�H�I��H��u�Hc�H�H�TH�DH��H�$H�D$�V��H��H��H���ذ�H��H�|$dH3<%(uH��([]�fD����7���PXH�5�yH��H��=0H�81����f�AUA��ATI��UH��S��H������tf��u2�0����D�(�XL�`H�hH�@ �@(H��[]A\A]�H��:0H�5�|H�81��$��@H����AUATI��UH��SH��H��@��uB�U�St:H�S H��uYD�k(E��u`L�KH�{�u4H��H�M H�UL�E0�}A���H�[H��u�H��[]A\A]�@H��A�����I;T$8u���I�|$�V��A9�u���D��SH�G0H��H��t#�uH�����t
�����t=�C@[�@H�O0H�W(H�w H��{R��H�C0H��u�H�C0�C@[ÐH�@H�C0�fD��AWAVAUI��ATUSH��H�H�t$�� ��I��I��A��M���{1�E1�M�}�� �@L��H�<���H�=�
2H��H����<��H9��H�=\
2H�������H9���H�=6
2H�������H9���H�=
2H��������H9���H�=�	2H��������H9���H�=�	2H�������H9��H�=�	2H������H9��0H�=x	2H���/�j��H9��JH�=R	2H�����L��H9���H�=,	2H�����.��H9���H�=	2H�������H9���H�=�2H��������H9���H�=�2H��������H9��H�=�2H������H9��=H�=n2H�������H9��/H�=H2H�����z��H9��3�P@H��A	�L9�t\I�E�� ���I�E ���fDH�=�
����H��H�]2� ��H9�����H��A	�L9�u�fD苽������n��H�|$�8H�=0H���%��H�5.0H��H���C��H�h(H�@H�@ D� H�X0H��H��[]A\A]A^A_�fDH�=������H��H��2�p��H9��R�������DH�=�������H��H�e2�8��H9��8�������DH�=������H��H�%2���H9���������DH�=Fg��g��H��H��2����H9�������M���DH�=Lt��/��H��H��2���H9����� ����DH�=t���H��H�e2�X��H9������@����DH�=����H��H�%2� ��H9�����������DL�rM�������A�����H�=�s��o��H��H��2�3���H�=5=��O��H��H��2���H9��d�����5���DH�==����H��H�m2�x��H9��J�������DH�=s����H��H�-2�@��H9��0��������DH�=�r�
��H��H��2���H9���������DH�=�r��o��H��H��2����H9��������U���DH�=�r��7��H��H�m2�����H�=xr����H��H�52��� ���fD�(���H�;0H�5\"H�81��~��H���Ƣ�H�5'rH��H��:0H�81��[��ff.�PXH�5rH��H�d50H�81��2��f���USH��H��H��tH����K�H��1�[]�D�3b�1�H�pH��H�H��u.f��F�~��t6H�EH��1�[]�DyH�IH��t�H;Yu�	�F��f�H��70H�8��H�E��SH��H�� H�T$�VH�<$H�t$dH�%(H��$1�����FH����9��H�|$@H�$�D$,H�CDŽ$H�D$04H��$�۞�����u{H�$H�D$0H�AH�D$H�T$1�H�<$H�0����H�T$H��$H�4$H�F�B�D$���B�R��t��ta�D$,��uI��H��$dH34%(uTH�� [�H�<$H�G���ǀ����r����fDH�<$�8�����H�t$H�<$��������ff.�H�G8H����%�L�H1�M���M��u�O�I9PtM�@M��t9H��u�I9p tH��u�H��4tI9Hu�A�M�@��Aǁ�M��uȐA�����u�@A�����u�H��I����D$��D$H����ATI��UH��H��SH���+��H��t,H�ھ��H�=�����H��L�` H��[]A\�:�H��/0H�5$oH�81��2��f���SH��H�5�0�\��H��H��H�50H�8�w���H��[�f���ATH��40USH��H�5�0H�(����4H���H��H��I�����H��tH��L��H���!���H��[]A\�f���SH�H��tH�{���H�[H��u�[�ff.����H�m40H��H�8���f.���AVI��AUA��ATI��H�5�0US�o��D��L��L��H��H�$40�H���H�h H��H��[]A\A]A^������H����N�H��H��30H�8H�������AWE��AVI��AUA��ATI��USH��H�5;0�֒�D��L��D��H��H��30L��H����H�h H��H��H��[]A\A]A^A_�K�ff.���H����H��H�A30H�8H����ff.�f���UH�540H��SH���G��H�xuVH��H�@�3H��t2H�x��A�H��H�5������CH���4[]�@�H��H�=q��L����H�50H�5DoH�81����f���S��H��H���;��H��[�fD��SH��H�50蜑�H�ڹ4[H��H�Q20H�8�������UH��SH��H��H�5�
0�d��H��H��H��H�20H�8H��[]����fD��H��10H���41�H�8�����SH�=��H�����H��t!H���n��H��tH�ھ�H�=�����H��[�H�!,0H�5zkH�81�������H�}10H��H��1�H�8�%���D��UH�5t0H��SH��臐�H�xH��H��uSH�@H��t2H�xH��H�5������C�4H�CH��[]�@H��H�=��������H��H�5�����I��H�/0H�C�(�D��ATUSH��H�5�0H�����H��D�`�����tFH�}uYH���ǥ�E��u"H�C-0H�=�30H�پ4[]A\�c��H��00���H��舥�A��[]H�A\H�Ѓ��H��20H�5mH�81����ff.���H�w8�41����ff.�����41Ҿ���ff.���AUATUSH��H�_�H�kp�����H��tH��[]A\A]�DH�y-0H�H9Gt�H�CPL�kxH�{pA��H�kHH�CxH��H��H�CH��������H�SHH�CpH�kHH�SPE��t,H�SH�R � tH�SH���H�SH�߉D$����D$H�S����H�z�9��f�H��t
�E���6���H�S8H�{pH���P�L�bA��$�tOA��$�I��$�H��H����A��$�A��$���A��$���t��uI��$�H�����H�kp����H�CHL�kxH�CpH�CPH�kH�����SH��pH�|$H�t$dH�%(H��$h1�H�.0H�D$(�D$0H�H�xpH�D$�$H�\$H���_0��H��$�H�\$�D$$H�CDŽ$`HDŽ$�4H��$X�f��������H�D$H�@���ǀ���uH�|$H�D$1��H�D$(H��$XH�T$H�B�D$$��uYH�L$H�D$0H9Aptc����H�D$(H��$hdH34%(ulH��p[��H�T$H��$�H�B�DH�|$�n/��H�L$H�D$0H9Apu�H�D$H�@p��H�L$H�D$0H�Ap�����0��H�D$�H�@���H�x�ӏ���H��,0H�H�@pH��t�P���f�����f���H�����@�M��=�lv2=��= �d=��1�H������fD=��=��=�u�H�=l�1H��u�H�=�����H��H�L�1�f�����vM����� �s��u�H�=?�1H���w���H�=���Ͳ�H��H��1�W���fD�������=���H�=�1H���/���H�=i��腲�H��H��1����fDH�=��1H�������H�=�d�
�O��H��H�]�1����H�=��1H������H�=������H��H�u�1���H�=�1H�������H�=Ad����H��H��1�y���H�=)�1H���i���H�=�V�迱�H��H��1�I���H�=�1H���9���H�=|-�菱�H��H���1����H�=��1H���	���H�=|c��_��H��H���1���H�=��1H������H�=Sc��/��H��H�e�1���H�=9�1H�������H�=,c���H��H��1���H�=Y�1H���y���H�=�n
��ϰ�H��H�5�1�Y���H�=�1H���I���H�=�,�蟰�H��H��1�)���H�=��1H������H�=�b��o��H��H�u�1�����H�
)0H�H�xpH��t����P�>�ff.���SH�H4H��tHcCD[H�D�fDH�OHH�w�L�CDH����HcCD[H�D�ff.���H��(0H�H�xpH��t鴍�P��ff.���H�GHH��4tÐSH��H�OHH�w�H�L�CD�e�H�CH[�ff.�@��H�(0H�H�xpH��t锼�P�N�ff.���SH��H��dH�%(H�D$1���� tv[=������@���C@����H�{0H��tEH�s H��t<H��H�$�T��H���<P���u;�� ��tBvi��tt��to��H�L$dH3%(��H��[�f�=�u�H�J$0H�5�`H�81�����=t= u��׃���w���fDH�sH�{���H��t�H�P 1�H�H�с��H��""t#H�x����b���DH���H����H��H��H���������ff.���H�}&0H�H�xpH��t�t���P��ff.���S�G@H����u���H�{ H��u�[�@[����f���H�&0H�H�xpH��t�$��P�N�ff.���S�G@H����u�|�H�{(H��u�[�@[���f���H��%0H�H�xpH��t�$��P���ff.����G@SH����u��H�C0[�fD��H�m%0H�H�xpH��t鄩�P��ff.���SH��H�wH��[��H��tH�{H��[�	"��f��[�f���H��$0H�H�xpH��t�D��P�.�ff.���H�G����H��$0H�H�xpH��t�ĩ�P���ff.���AUH��H�5�0ATUSH��賃�H�t$0H�H�ZpH���|��� �ww��������uwH���P��H��H��tfH���_��H��觚�H��I��蜸�H��I�����H��I��D��[L��]H��A\H�=�`1�A]���D=ta=tZ��@��H����H���A��H��I���6��H��H���{��H��D��H��[H��]1�A\H�=�]A]�:��f.�H��舨�H��H���=��H��H��H�=\][H��]1�A\A]����H���p��H��踙�H��I��護�H��I���2��H��H�����H��E��L��[H��H��]H�=`A\1�A]����@H�5�WH�=]��H��\HD�H��1�[]A\A]�q�����H���PtH�G8H��4��H����8����H�}"0H�H�xpH��t餥�P��ff.���H����tH�G8H��4���H������ff.���H�"0H�H�xpH��t�T��P�N�ff.���H���H�W8�� tSH��4�{�H�
��u H�����tH�θ���H��pt�� uH�R H�H���f.�H�����5�D��H�}!0H�H�xpH��t�t���P��ff.���H���H�G8�� tiH��4���H��uH�����tH�с��H��pt2�� uH�@ H�xH����}�@H��H�xH����}��H��H���}���ff.�@��H�� 0H�H�xpH��t�T���P����ff.���H���0tH�G8H��4�6�H���H��0H�5+ZH�81��U��D��AUA��ATI��H��UH��SH��H�5P�/H���g�H��H�=����0���H�H�pD�h(H�P�PH�	S@��u	H�����uH��[]A\A]��H��L��[]A\A]���fD��AWM��AVAUI��ATI��USH��H�5��/H��H��dH�%(H�D$1���~�H��D�pI�������H�x�,H�5��/L���~�H�EI��uyI����H����脠����GE���SH��0H�=-"0H�پ4�|�H�L$dH3%(��H��[]A\A]A^A_�DH�@I��t�H�5�/H���~�H��1L�$$H��H����H�e 0I��H�=��1H�0�~��H���iH���l��I�NjE���kI���$�E�oL��負�A���Z��H���•��uD��H��H�EL���}1�H�}�L��A���	��L��職�H��ulE���0�EH�50��=���������A��H�H�Ѓ�����H�	0���@�H�=;���H��H���1��L����G�I�����<�{����E�q�����A�����1�H��L��I�GH������H�}1�L���8���7���E1����H��0H�5�ZH�81�� ��蛶�H��0H�5[H�81����H�t0H�5�YH�81����H�\0H�5�ZH�81��Ӿ�H�D0H�54WH�81�軾�H�,0H�5�VH�81�裾���H�1�H��u�%PH�@H��tH9pu�H�@�GH��u�W����H��H�5q�/�{��xH�H��H�Ѓ��f.���H�����@��AUI��ATI��U��SH��H�����uQH�=��1H��/�8��H�5�/H��H���{�H�@(4L�hL�` �(H�X0H��H��[]A\A]�H�5I�/��z��f���S�H�5��H�=V�z�H�T0�H�p�H�5�UH�;�!��H�;�H�"�H�5�U���H�0H�=�UH�0���H��H���1�~�H�5:�/H�=�U[�
bff.�f���S���H�:0H��2��H��ǃ[�ff.�@��H��0L�I�x8H��tH�Hc����6D�I���D��9�u�H��H�H�1H�Q�A�H(��D1��ff.�f���H�M0L�M�A8M��tM�@Ic���~9I��H;0tf�O�H��H��H��fDH��H9p�tFH9�u�I�O���A��9�u�I��H��H�H�0H�P�A�I(��fD�A�I(��@1��D��AU� I��ATI��USH���‡�H��1�H��tcH��0L�cL�kH�(L�� L�����H��L��H�H��H�CH��H�H���)��H�*0H��H(�H��[]A\A]�f.���AVL�� ATUH��SH��8H�<$H�\$0L��dH�%(H��$(1�H��0H�\$8H�\$0L� L�t$A�D$,�D$���D$$I�D$xH�D$(�>��H��H�T$8L��H�D$8H�H��H�H��H�QH�
H��H���L��A�L$,I�D$H�|$PI�D$xH�D$@4DŽ$ L�d$H��$���������L�d$I�D$���ǀ�����H��$H�t$H�\$0H�F�D$$���!F,H�D$(H�FxH9\$0��L�t$L���N��H�$H�T$8L��H��H��HH�D$8H�QH�
H�D$8H�T$0H�BH�H�\$8H�\$0�R��H�S0H��H(��H�4$�J������9���H�$�����L�d$0�"f�H�H�GH�BH�H�oH�_腒�H���H�|$0L9�u�H��$H�\$H�C�D$$���!C,H�D$(H�CxH��$(dH3%(uBH��8[]A\A^ÐH�$Hc�H��H��H�H�x��Y���H�t$H�D$@H�F�F������USATAUAVAWH�'H�&A_A^A]A\[]H���f.���������f��W�1�����w\����H�
xl������O��Hc��4q�Q���qʁ��
%H�
�mH�Qf��xH��H�50�	H��9<�t�fDH�D��f.��W�1�����wb����H�5�V������B�NHc��Vʉ�������Hc��Nʁ��	%H�
XH�Qf��xH��H�5�k	H��9<�t�H�D��f.��1��J���w|�w�N���wn��H�=�T��D�����A�LA��A��F�D�A��A��B�<���Q-H�=+UH�Of��xH��L��f	H��J�<;u;wt�@I�D�f.��1��J���c���w�N���c��D�GA�H���c��D��H�=MS��D�D�����A�L	A��A��F�D�A��A��F�D�A��A��F�D�A��A��B�<���.8H�=oSH�Of��x'H�IL�
zd	H��J�<	;u;wuD;GuI�D	�ff.�f�������w=�wH�7H
���B������[w��H���/H�<���,u�@������f�����[Hc�H���/H��H�1�ø�����f.����H�����ff.���AVAUATUSH��@dH�%(H�D$81�H9��I��H��I��1�I� ��N����H�
p0���U��,��,��Hc�A�FA9FtL��L��H�����H�H�I9���L��L��H��A�V �P�?w�I��r�랹H�م�t$�4p��t$�p��t$�p��<�4$�x@���Dx�ˁ��wGL�-��I�D�f��x5H�-��H�@8uu%H�uH�|$�����uB�|%����!���H�L$8dH3%(��H��@[]A\A]A^�f.�Lc��I�T$�B�$H��+w���wwH�=?P��Hc�H�>��H�������H�ք����H�ʄ���H����t$�4p��t$�4p�����H�����A�D��D����L$H����H���v��fD��AWH��I��AVI��AUATM��UH��SH��L�*H��L��U �]��9]tH��L��L��D$���L$��Hc�I���d���I��H��tl�����tB��t-1�E1�Ic�H��L��A��A�|��U0Hc��A�Iԃ�D9��H����[]A\A]A^A_ËxH�E0H��H��[L��]A\A]A^A_���K�1���
��DH��A�TA�H�PH9�u�����AWL�=�f	AVI��AUATUSH��H��H�|$(H�t$4dH�%(H�D$81�H�t$� I�W�$H�T$I��I�WH�T$ ���L�|$L�|$L�l$L��A�L��D$4Hc$I�,��}�Ӆ�ui�EL��L��A�?�D$4�Ӆ�uN�$��tn�$H�t$ L�|$��L�,��L��L��A�?�Ӆ�uI��M9�t;�}L��L���Ӆ�t�H�L$8dH3%(�H��H[]A\A]A^A_�@H�D$�$I���4$�@�D$,��9��!���L�|$I��H���	I9���L�|$�D$4iL���IL���Ӆ��w���L��L���i�D$4I�Ӆ��U����D$(@�^H�/`	L�4$A�H�D$1�A��tdL�t$H�$�E�l�L��D���A�Dž��!I��fDA9�tH�$�L��D��Ӆ�����A��I��E9�u�H��A9��H�D$H�D$H�*d	H9���L�4$��0H�5d	L��Ӆ������H�^	L�4$A�H�D$1�A��t]L�t$H�$�E�l�L��D���A�Dž�ufI��A9�tH�$�L��D��Ӆ��#���A��I��E9�u�H��A9��H�D$H�D$H��^	H9�t
D�`�{���@1����D������D�`����;��A�G����f���AWI��H��AVI��AUI��L��ATM��US��H��H��hdH�%(H�D$X1�A�U A�m�D$A9mtL��L��L��解��ŋ|$��@����A��I��H���������1E���@�D$���dL�T$ E1�L�l$M��C�|�A�>�G���H���FC�D�I��I��D9�ԋD$������I��D�\$L��1�M�l�E��~5D�A�4L��HcËJ��H��H��I���(�@D�@�H9�u׉�H��L9�u�I�y�5���H��t@����J���w31ɋ|�;|$tHc��H�4�I�4��.�F�~H��9��DH�t$XdH34%(����H��h[]A\A]A^A_�D�HA�,$A�D$E�L$D���*���H��t@���u9�փ�t2D�D$1ҋL�D9�tHc���H�<�I�<��/�G�OH��9��D�L$E���g���Hc�I�M9��X����D$L��L��L���D$ A�U ��A���)�H��t�����uD�HD�L$$McME9M�cF�\
H�l$ H��D�$���H��t9����J���w,1�E��Hc��H�4�I�4�D��F�|�H���~9��M�M9������L��L��L��A�U ��A����H��t�����uD�HD�L$(E�UE9UtL��L��L���ܠ�A��H�����H���X�������J����G����,$1�D�Hc��H�4�I�4��.�F�|�H���~9������@�|$1��u�H��������������������v���L��1ɉ*H���B��t�H���r�9���P���1����f�L��L��L�����Lc����f.����'L�t$ D�D$��1�I�VD�\$L�L$M��H�4�A�@�L�<�I��f�M��E��~TE��~FD�$A�}A�L��A�rHc�D�B ��H��H��I���(�@�x�pD�@9�u�D�$��I��M9�u�I��M9�u�L�L$I�y�m�H����������J�������D�D$1ɋ|�D9�tHc��H�4�I�4��.�F�~H��9�����@�1҃�t�t�A�t�H��9��C�L����1��t���1��������ff.���AWAVI��AUI��I�p�ATUH��SL��H��(�H�|$D�$�H�L$H�4$A��A	�@I�}H;,$��L9���H��L���Lc�E����H��L��I�}�S M}L�K0A����z���@�����A�� ��D��E��
A���A��t
A��i�^A�� A���H��H��D��A��H�H�E���N���A���I�}H;,$�G���H�D$A��D+|$D� H��(D��[]A\A]A^A_��A��@��E��A����@A��@u�=�v�=0t�=1�6��E����A���H����E�������D!���3���D��ց�!΁����/��H�5�O	��%�H��D�D������tD���`��`tDH��D�D����ƀtE��u-H��D�D�����tA��u��H��D�D���H����A���H�D$��A�@�������A��@����D��E��
A���A��t
A��I�:A�� A���5���DE��A���A�� ����A��A�I�����D��E���A���A�����L$H��H�ڿiA�ыL$L�K0A�H�H�A�����A��A�0���f�A��p���/wiH��A��@�H��A��A��H�H�����;�H���b����E��t���u6��D!���E���A��D!����D�D��+�����������H��H��D��A��H�H��!���A��A�1���A��A�i���H�pD�@��H�t$A�̃�������H��H��D��t/A��H��H�H�H�D$H��8�S0L�K0H�H�H�D$D�@���A��L�K0H�H�H�D$D��y���f����H��9
H�
��xiL�GL9��|D�GH��H�J���xWL�GL9���D�GH��H�J���xUL�GL9�t|H���OH�1��<
����D�����������D��f���������D@��f�H��@
��������������������H��@
��������H��@
���������1�H9�s1��?
���ff.����I�����������~������҃����f��H�w�)�����I�L��!��H���F�����?	�H9�u��������H���^��ff.�����L��I��H��H����פ����H�M�����xH��/���H���I��H��H��L����l�ff.�f�����ǀ���t6������t)�����t�����v���%�-������ǀ���t&�����t,����tt����v<���t	�����@�>��D��H�F�������?H���π@�x�)�Ð������������?����ʀ���V��?�Ȁ�FH�F��@������?�����π����?��ʀH�F�V@�8H��)�øo����ff.���H��H9�v(�����t��H9�sH�������t��f.����1�f�1��@���D���
t@1�A��t ��
tHc��1H���@��@�
��O���
u���f��W�G����E��DˆG��
��ff.�f���1��?u�
��O��D��H��H�=a�/���H�=��/���H�=	�/H���а�������AWAVAUATUSH��H�H�$H���kH�G�/H�(L�eM���o1�����ALc�J�|�u�Hc�I��A���H���ϟ�I��H���/L�8M���9E���<I�uA�F�L�,$L�4�H�t$H��1��@H�xI9�tI9�tL�+H��H��u�L���z�L�I9�u�I��L+,$M����L��E1��fDA��Ic�H�\�H��tH�xH9�u�H����y�H��ِH�$H�L$L�-H�1E1�H)�H�
3�1H�<�11�H�;�1��H�5!�/L�>L��A��I��'��Ic�I�L�d�H��M��u�H�
�/HI��I�H��[]A\A]A^A_�@������fDH���/H�(��I�U1�H�T$���H�D$L�-��1L�-��1H�z�1H�$H���1�ff.�f���SH���H��$8H��$@H��$HL��$PL��$X��t@)�$`)�$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H��$(1�H�=��1u#H��$(dH3%(��H���[�H��$�H�\$ H���H�L$H�D$H��H��$0�D$�D$0H�D$�h�H�m�1H�=n�1H���^�H�
O�1H9�HB
L�1H9�v#H�H�1H�H�f.��H��H9�u�H�
�1H��6���謔�f.�f���SH�����?��H�H����8t[H��H9�u�H��H)�H)�tUL�B��H���t)f�M��t
�I��H��H�����u�H)�H�H���[��H��H��H)�H)�u�H����v�H�H��[�1���L�B�H��1����H��tGL�D�H���D�P�H��H���W���tH�AL9�u�H���H���x�uH)�H���DH��DH���x�u�H)�H���fDH�71�H�FH��H��V�1���y#fD��H�7H����Hc�H��V���x��@t��)։���Hc�H)��@��?��Hc�H��ff.��H��ff.����H���dH�%(H�D$1�H�t$@�|$��Ϧ�H�D$dH3%(uH���赒�DAU�����ATI��USH��H�D�(�F
L�.I9���H���I�L�n8f�Nf�����V
����H�hH�DH�nH�H�n0��Vf��toH����V�P�V�P�V�P�V��Hc�H�|H�~ I9�v(�?H��u�Bf��xH�xt6L��1�H)��9]�H��u�H�������[]A\A]�@�xu�H���@H�GH�C(1�I�,$H��[]A\A]��L�hH���F
L�.����@�h�%���H��H�8�x`tH�WH�P8�V���fDH�WH�P8��DH��,��H�
�=
ATHc�UH��SH��H�>��H�W8H�BH�G8��R�E(��	�H�H�E[]A\�fDH�C8H�PH�S8��E(H�E[]A\�f.�H�G8H�PH�W8��E(H�E[]A\ÐH�{8H�GH�C8����E(H�E[]A\��H�G8H�PH�W8��E(H�E�f���f������E(H�E�H���H�W81�1�H�BH��H�G8�B���y!@��H�S8H����H�H��B���x�H���E(H�H�E[]A\�DH��B(����DH�W81�1�H�zH��H�{8�B���y$@��H�S8H��H����H�H��B���x�H��H�}H��E(H�E HC8�w���f.�H�W81�1�H�BH��H�G8�B����E�����H�S8H����H�H��B���x��#���fD�Gd<�$���<�d�����H�*�/H�g:
�H�81���[���Y��H�W81�1�H�BH��H�G8�B�����������H�S8H����H�H��B���x����fDH�G8H�PH�W8�H�UH�E �E(HG8�o���f�H�G8H�PH�W8�H�UH�E �E(HG8�F���f��Gd<�<���<�|�����H�B�/H�9
�H�81��[��X��H�G8H�B �B(H�H�G8����H�8�W����E(H�E�����H�W81�1�H�BH��H�G8�B����������H�S8H����H�H��B���x��s���fD��H�H���H�E�E(H�U�R���DH�X�����E(H�E�4����H�G8H�PH�W8�H�UH�E �E(HG8����f�H�W81�1�H�zH��H�{8�B����H�����H�S8H��H����H�H��B���x��#���H�W81�1�H�BH��H�G8�B�����������H�S8H����H�H��B���x��c���fDH�W81�1�H�BH��H�G8�B����=������H�S8H����H�H��B���x�����fDH�W81�1�H�BH��H�G8�B���������H�S8H����H�H��B���x�����fDL�g8L���n�L�eH�E I�DH�E�E(H�C8���H���/E1���H��6
�H�81��rX����Z���ff.�@H�WXE1�1�H�BH��H�GXD�B�E��y&�A��H�WXH��H��A��Mc�M�D�B�E��x�H�PE��H��H�WXD�@�I��1�M�1�E��y_�A��H�GXH��A��Mc�L�D�@�E��x�I��I�M��t#M��tSH��H��L�NL�FL���G���H��[�f�1��D1�1���f�U1�1�SH��H�G8L�PH��L�W8D�@�E���p�A��H�G8I��H�@A��Mc�L�D�@�E��x�I��I��I����0L��h�f�I��I�C�x�x�I���A�M�K1�I��1Ʉ�y!@��M��I����H�H�A�C���x���A�M�YI��H��1�H�1ۄ��bf���M��I����H�H�A�A���x�H��H�H	�u�A�I�[1�I��1Ʉ�y0@��L��M�[��H�H�A�C���x�H��H�I9��GH��u�f.�H��H�C�x�x�H�C�D�H�X1�H��1�E��y$A��H��H��A��Mc�L�D�H�E��x�E��H�C1�H��I��1�I��S����=D��H��H����Lc��S�L̈́�x�H��H�L	��t���D�H�XE���H��1�DA��H��H�@A��Mc�L�D�H�E��x�I��L�I9�tGH������H�4�/���H�K7
H�81��T���oW����J�\�pH�L�CE1�1�L+PHI��L�L�GX���x�fDI�Ѓ�I�P��H�WX��H�I�A���x�H��LȉFI�@H�GXA�@�F��t�GhH��H��[]�D1�1�H��H�L	��U��������A�������1�1�H��H�H	��5��������oh1�H��H��[]�I���h����AWE1�AVAUI��ATUSH��H��$�H��$�H��$�L��$�L��$�dH�%(H��$�1�H��$@�D$hH�D$pH��$�H�D$xH��$��D$H�D$L��E)��������K�H��H�k�}�A�A�̉�@��%uًD$��u�D�D$hH�D$p1�E1��D$TL�|$xE1�E1�D�D$P�SE1�H�D$H�D$@�D$�D$D�D$\�D$ �D$$�D$(�D$<�D$[�D$8 H�\$0�B�L�m��<W��	H�3
��Hc�H�>��H��$�dH34%(����H��[]A\A]A^A_�D�U�D$TL�����UA�L������fDE����|$[���L$��L$D�y���fDE�����T$P��/�C�Ѓ�A��T$PL���D$$��y	�t$ �\$$�UL������f��UA�L�����fDE�����T$8�UL��������U��0�hЃ�	��
H�\$0L��f.���H���|P��U��D�h�A��	v�H�\$0�D$$E��E�DljD$$�b���f�E�����|$[��A��/��A�@D�‰D$hI���/�A��L�D�D$hL�0�D$$���E��L�=�2
����A�<�����A�<��A�D$����A������DE���c�|$[�G�D$0A�A��\$����|$(��� 	A��/��	D��A��D�D$hL�L�8A���Ƅ$�L��H�\$�	fDH��H��1�L�5�1
I��A�,E��t@��A���AA��_��AB�H��@�+I9�v�H��H+|$M��A��1�E �t�T$0���t
1�������|$���D$ ��|$80�D�t$$A)�D9�D��D��M�A)�)Ɖt$8�D$8�p��t$$��~9H�\$(A�̉�f�� �������u�D��D�d$8�\$$H�\$(A̋t$��t�-A�����E��t/�|$0���|$0u�0A�����x��DE�~�E��~��0A����A���u�E�@���8I��DI��@��A���h�A�.E)�E�@��u�L$ �����D$�����U�D$ L�����@E���3�|$[��A��/��D��A�@A��D$hH�݃�/�?A��L�D�D$hH�Ƅ$�H��L��$�H�D$L��f�H��H��1�H�=�/
I��I���<A�>L9�s�@���H
M��A�����I��D��A�?D)�D�@��u�A�Dž������H�D$1�A��HH�hD���`	��D��L�u��H�H�����ML���� ~�A�NI�n�� ~�I��A�NI�n�� ~���@E����
�|$[�
A��/��D��A��D�D$hL��8�L$���L$D�y�L����UA�L�����fDE���i
�|$[���l$$��A��A��/�0D��A��D�D$hL�L�8E1��D$A��D$0�@����U�D$(L�����@E����	�|$[�%A�
�D$0
E�������D�D$���D�D$(���8D�t$@E���*�l$<����\$T���D�L$DE���	A��/��
D��A��D�D$hL�L�8L��@A��H���H��E1��D$I���e���DE����	�|$[��A��/��D��A��D�D$hL�L�8�l$ H���M��LD�����E����L���L$(��`��\$$�H��D$0)ÉL$�L$(��@��@��t	@���q�l$ !����	A�?M�w�L$M�|��A�>I����M9�u�D$F�| @���%���D�d$8�k�D����u����u�A�������U�D$L�����@�D$<�U����L���D$<�����U�D$@L���e���@E���3�|$[��
A�
�D$0
�����D$D�U���pL���D$D����E���a�|$[��	E1�A��D$0�V���fDE�����|$[�m
�D$���pA��/��D��A��D�D$hL�H�Hc�A��H�����fDE�����|$[��	E1�A��D$0����fDE���k�|$[��	E1�A�
�D$0
���fDE����|$[��	A��D$0���f�H�\$0E�����|$[�.	H��A��L9��C�H���}��s�I9�u�D���D$)�F�<)����9�A��T$$DM�)��|$ A��D)�)‰T$$���/����T$8����A��/��D��A��D�D$hL�L�8A���D$��A�>@��t-�M��D)�A�f����C�<I��A�?@��u�H����A�����A��/�~D��A��D�D$hL�H�I�����@�D$$�X����
�� ���c����u�D|$$���@H�D$pH�PH�T$p�6���D�0A���*��u���DH�D$pH�PH�T$p�~���D�T$@�������D$<�������D$T�������D$D���A��/�RD��A��D�D$hL�D�8A���D$���f.��������,���}A�G���� �L��E�wA)��k�E�<.H���}���� �����fDE�����H�D$pH�PH�T$p����DH�D$pH��H���H�D$pH��H�PH�T$p�!���@�D$(���<�D$<���0D�t$TE���"D�d$DE����A��/�!D��A��D�D$hL�H�A���D$f��6�DH�D$pH�PH�T$p�R���D�D$<L���D$<�D$(����D$DL���D$D�D$\���H�D$pH�PH�T$p����DH�D$pH�PH�T$p�J���DH�D$pH��H��H�D$pH�H�PH�T$p�0�fD�t$P��/����A��t$PL��U�0L����A��/�2D��A��D�D$hL�H�Hc�A��H��D$���U��0�hЃ�	���L�����~
A�?@��� �D$$�����[�D$0�D$����@���B�D$$�l$8A�̍X�fD��������u�D��T$0D�d$$1�A̅��%���E��������������>A������^�H�t$H�D$[H��H��H�t$H���H�D$pH�PH�T$p�@���H�T$H�D$[H��H��H�T$H��H�D$pH�PH�T$p�����\$$�3���A��L�����L���.�A������A���D$���M�wE1�L��A�P9��H���x�uw�T$0D�D$�\$$+\$0��@��~@��u��l$ !��(����l$ �\$$A��!��C����D$\���cA��/��D��A��D�D$hL�D�8A���D$��A���k����|$\��A��/�SD��A��D�D$hL�L�8L�������D$P�D$hA���g����D$P�D$hA������D$P�D$hA���?�D$P�D$hA�������D$P�D$hA������D$P�D$h����D$P�D$h�Z����D$P�D$hA����D$P�D$hA����D$P�D$hA���E����D$P�D$hA������D$P�D$hA�������D$P�D$hA���e����D$P�D$hA������D$P�D$hA���%���H�D$pH�PH�T$p���A��/��D��A��D�D$hL�D�8A���D$�<�|$\��A��/��D��A��D�D$hL�H�A���D$���A��/��D��A��D�D$hL�Lc8L���W���H�D$pH�PH�T$p�9���H�D$pH�PH�T$p�����s�H�D$pH�PH�T$p�Q���H�D$pH�PH�T$p����A��/w7D��A��D�D$hL�H�A���D$���H�D$pH�PH�T$p�9���H�D$pH�PH�T$p��H�D$pH�PH�T$p�D���H�D$pH�PH�T$p���D�D$�t$0����H�D$HH�D$p��H�D$HH�D$p��H�D$HH�D$p���H�D$HH�D$p���H�D$HH�D$p����A���%���H�D$p���H�D$p���H�D$HH�D$p�K�H�D$HH�D$p��H�D$HH�D$p�m�E1��D$�i�H�D$HH�D$p����H�D$HH�D$p�W���H�D$HH�D$p�p���H�D$HH�D$p����H�D$HH�D$p�"���H�D$HH�D$p��H�D$HH�D$p�������AWI��AVM��AUI��ATI��U��SH���:��H�׻L�D�1@H���H�€zH�Bu��@L�R1�H��1Ʉ�y'���I��H����H�H��B���x�@I��A�z�x�DI��A�z�x�9�tI��9���A�:L���y���L��I+	H����[H���1]1�A\H�=� 
A]A^A_��fDH��I�>H��H�teH��L���H��H���u
�K@H���:u�H��H���xu�L��H�=P 
1�L�$L�L$��L�$L�L$H���L��1��I�U9��<���H��[]A\A]A^A_��f�AWAVAUATUSH��L�d$XD�\$hL�T$`I�D$ H�I+D$(A9����W��$Ic�I��D)�H��L�L$H�,�H�H��D�D$L�hdH��L�M�t@�@H��@H��L9�t@H�UI9�s�I9�v�H�T$P�<$L�CH��H�t$M�L$H��@H������D$�C�L9�u�H��[]A\A]A^A_�@AWAVAUATUSH��H
H��|$DH�=�1H�t$X1���$�H��$�L�D$`D��$�dH�%(H��$8
1�H�D$H1�迆����/�1��lj��a�H��H����1�1����pa�E1�A���H��1�趆�H��$�H��������8�L��$�A�:ELF��M�r(A�B>H�L$HH��M�I�TA�B<L�QH�Yf���)��E1�L�%F
H��H��H�-@
HDŽ$�L�-5
H�D$xM�D@H�A0H�$H�AHHDŽ$�HDŽ$�H�D$����MD�I��@M9�tpE�>A�FI�M׃��z�<��uϹL��L��������e�L��H�������H��$�ID�I��@H��$�M9�u�@��$��L��$��HDŽ$�H�\$HH�SHH�{`H���H�{0�Hc�$�H�L$XL��$�H�CH��$�H��H��$�H��$�H�CPH��$�H��H��$�H�|$`H��H�H��$H�LH��$��L$D��)�H�H��H�\PH�\$8H��$�H�\$hf�H9���H�zH��$�DŽ$ H��$�����uH��H��$����DŽ$ H��H�H��$H�GH��$�f�?���[L������H��$�H�JH��$����$$H��$�1�HB0DŽ$(H��$@�H�pE1�H��1Ʉ������H��H�@��Hc�I��P���x�H��L�H9��dH���w�CfDH��H�F�x�x�H��H��@�L�N1�H��1Ʉ�y!D��I��H����H�H��F���x�D��I�qI�AI��1�I�A�E1Ʉ������H��H����Hc�I��V���x�H��H��L�L	��y������@HDŽ$�����H��$8
dH3%(H��$��+H��H
[]A\A]A^A_���������L��L��������=L��$��o����L�t$x�]���fDL��$��J���H�D$HH�x`H�|$x��H�D$xH���)H��$�H���H�P H�pH���������L�SH��H��H������H��$�D�t$DL�l$HH�0H�t0�B�Hc�$�M�] H�@H��H�D$XI��I��H�t$`I��H�,�A�F�)�I�H�H��L�L@�fDH��H9��|�A��<u�E9�}�L�AH��L��M��!@I�uL�@(L�X H�pH��@H��I9�t��p���H�2L)�H9qr�H�x0uɋ1L�H�$�H�p0�fDH�D$HH�x`H���H�D$HL�phI�I9��/H��$PL�4$D��$�L��$ H�D$H��
�H�t$H��$ L������������H��$ �A�E1�L��$�DL9���H�OH��$ �<wHc�H�>��f.�*�$m��$h����$l������Hc�I���$k��AWA��D��L��t$h�t$X��$��|$dL��$�H�t$x���H��$@L��$�H�� L9��X����H9<$�����L�4$I9�����H�5J�1H�=�
1��������H�������H�G@H��H��$ H����x�����fDH�G@H��H��$ H����x����fDL�OH�w1�1�L��$ �G���`
��H��$ H��H����H�H��F���x�H��D�$�`���L�OH�w1�1�L��$ �G���
��H��$ H��H�v��H�H��F���x�I�H��I�����fDL��� ��H��$ L��$�����f�H�GH��$ �w@���V��@����H�G@���PH��H��$ H����x����fDH�GH��$ �WH��I��m���D��$m����$lH��H)�1�H����$hH��I��4���@@����AWA��D��L��t$h�A�E1��t$X��$��|$dL��$�H�t$x����H��$@L��$�H�� �����H��
L�T$PE1�H�5�
H��$�H�
H��$�H�
H��$�H�
H��$�H�
H��$�H�D$HL�D$hH�H`H�\$8L��H�L$H�HxH�H�D$ H��$�H�L$H�D$(L�|$0M��H�$H�|$0H��$�H�D$H��$�H�D$H��$�H�D$H��$�H�D$ H��$�H�D$(H�H�D$p��e�����I�FL�T$PM��H�L$pH�\$8L�L�D$hH�I�F H�AI�FH�A������H�H�AHDŽ$���������L�wH��H��$ �[���H�=�
H�j�11�����H��$ L��$��.���fDH�=�
H�5:�11�����H��$ L��$����fD1�E1�H��H��L�L	�����l���@H9�sH���0���fDH��$�H��$PH�t$PH��$ H��$ H��H�D$�~���������H��$�H��$�H��$pH��$�H��$xH��$�H��$�H�D$(H��$�H�D$0@H��$�H;�$�bH�t$(f�L��)�$P)�$`)�$p)�$����H��t���$���.����H��$f�1�E1�)�$ H�w)�$0H��)�$@H��$�G���y+���H��$H��H����H�I��G���x���H�F1�H��H��$�F�H��1�L„�y_���H��$H����H�H��F���x���H��H�H������H������H�T$L���?������f.�1�1���f.��D$E1�E1�H�D$ H�D$H�$H�t$0f�L��)�$�)�$)�$����H����H��$H��1��v2H��U����H��X�hH��Yu�H��$���$h뉐H��u*H��$�H��tH�$�H��$��`�����R���H�P�H���D���H���RH��U�(H���&���H��$�A�H�$�����H��<��������H�t$hH��$�L��H�$�L��$�H��$��$(H��$����H��t_�H�t$f�L��)�$ )�$0)�$@���H��t*H��$0u�H��$ H��tH�$(H��$��L��$�H��$��$(�<���@H��$�H��$�H��$���$�L�HH�D$PL�@H���L������\$D9�$��W���H��$�L�|$pL��$�H��$�I���@DE���!E���H;$rH;T$�xDI��H��@H9\$8�,M�T$(M�\$ L��L)�I�|$u�E���*H�t$ L�$It$xE��uL��$��H��H���m��H��H�yH���]��H��H	�t�H�����J�L
H9�r�L�H9�s�H���`���H�{ t[�@��2��o�oSH��$P�o[ H�C(HH�H��$XP H�P��$hH�@(�PX0M�\$ M�T$(I�$L�I��H��@L)�H�C�H��$pH�k�H�C�H��$�H�C�H9\$8����L�|$p����I�������E�������H;$�����H�,$����@H��$��H��$�A�H�D$ ���H��$�H��$H�D$tH�$H�H�D$�D$���f�H�GH��$��GL����$$�a����@L������H��L��D�$�!�H��H��(��H�\$8M��L�T$PL�D$h�r�H��$�H���gH��$�H���V�1�L�cL�pH�X �e�HDŽ$�H��H����H���������H��H��H����~wL��$��B�H��$PH�@K�L7O�,7L�4�f.�A�E��<u4I�}t-A�uH��L�L��g�H��tH��H���+b�����I��M9�u�HDŽ$�H���sH�H��$�f�xH�D$H��H��$�DŽ$�H�X �����$��HDŽ$�HDŽ$�H�D$xHDŽ$�HDŽ$�����HDŽ$�DŽ$��v�@H��$�H�������$�����/H�=U�1H��$�Hh�E�H�����H��$�H�5,�1L�+�@H��H��H����������!ʁ ��t��A�����€�D�H�HHD���ѹ�H��H)�H�5ԍ1H=�H�~LF�L���m��H��H�/usr/libH���1�ugf���1I�D$H)�H�<���1/deb�#�����b�H��$�H�H��tH���I�U H��$�D��$�L�D$`H�t$X�|$DH�P I�UH�H�1�����@�W����:#����CI�H�="
H��1����HDŽ$������e��H��$�H��$�H��$�H�D$x����V�����"�����H�H�=�
H��1��(��H��$�H��$���H����,�H�@ DŽ$��P���T(�H�D$HH�@ H��$XH��$������X�ff.�f���UHc�H��AWAVI��AUATSH��@H��dH�%(H�E�1��`�A�~�HDžx���Hc�I���g`��H�5��1H�=\
H��P�����J�H��xH���1���E���VA�F�E1�H��h���H�E�H��X���H��x���H��H����I�D$L;�h�����I��M��D��d���I��C�|=��u�J�<�H��X����^���t�H��P���L�E�H�H���qL9�tH�ȐH��H�H���_L9�u�H�E�K�D=H�E�K�D=0I�D$L;�h����y����L��h���M��I��I��K�,H��h���L�I�G(I�wL��H)�M����H���5H����I�W0H����A�G���SM�OM���~I�?H��t	�?�MH��H�=N
M��P1����XZDM�d$8M��t>I�t$I�$E�D$I�L$I�T$0H��t	�8��H�=�
1��r��M�d$8M��u�I�0H��t�H�5r������tH��I��@L9�h�������L��x���M����H�E�H��h���H�X(@L��h���L��H�P0H�U�H�PHH�U�H�P`H�U�H�PxH�U�H���H�U�I��B��I��L9�u�H�pH���xI��$�L��H��x����7�L��x���M��u�E��~>M�}8E1�f�I�?H��t�H�_8�g7�H��H��u�A��I��@E9��L���J7�H��P����>7�H�E�dH3%(��H�e�[A\A]A^A_]�@L��L��I+W 1�H�=K
M������H����H�:��6�H��x�������@L��H�=
1�M�����������E��H�=�
I��H��1�������@H�=�
1�M���������f�P1�M��AQI��H�=n
�i��Y^���f�A��H�=�
1�M���L������H�x�\��z���f�M�����H��P���L����L��@����\�H��x���L��@���H��tH���H�u�L�@ �H�=J�1H��x���H�0H�E�K�t=K�D=0H�E�K�D=(��M��H��D��d���H��H���D�����H����9������H�PH��H��H��H%�H)�H���H��H9�tH��H��$�H9�u����L�d$H�5��1I���L���Hi�����)[�H��x���H��tH���L� H��x���M��H��A������D��H��x����,�H��������H��P���H����L��x���M��������\���H)�H�L��`����R�f.����AVAUI��ATI��H��UH�-%�/SHc�1�C�ؕ1H�[H�|��S���uZH�[H�D�H�pH�xH���/H�H���utL���ǃ��S�Hǃ�[H��]A\A]A^�K�@I��H�=hT1��f.���I�������I�>L���%S���u�Hc��g������@���ff.���1�H�=�
���f.�@���f.����H���H�=�.
�G��t
H���D�H�=�.
H���#���H�UUUUUUUUH��H��H!�H�33333333H)�H��H��H!�H!�H�H�H��H��H�H!�H�H��H��8�f���ATI��E1�USH��yI��I��I�����I��I��L��I��H��y
H��H��H��I��H��L��M��uVH9�v)L��H��H��H��H��1�M��t
H��H��H��[]A\�@H��u
�1�I��H��H��1�H��H��H��H���L��I9�vL��H���I��H��?��u$I9���L9���H��H���f.�Hc�A�@��H��I)�I��H��A��D��H���H��D��I	�H��H���H��D��H���H��H	�H��I��H��H��I��H��H9�ruH9�sH)�L�H��I��L)�H�D��I��I��D��H��H��I	�H��L�����@H)�L�H���H���f.���H��]/1���(���H��H���ruby_xmalloc%s - %sincompatible library versionInit_/opt/alt/ruby27/share/ruby/site_ruby/opt/alt/ruby27/lib64/ruby/site_ruby/opt/alt/ruby27/share/ruby/vendor_ruby/opt/alt/ruby27/lib64/ruby/vendor_ruby/opt/alt/ruby27/share/rubygems/opt/alt/ruby27/share/ruby/opt/alt/ruby27/lib64/ruby/opt/alt/ruby27  begin
    require 'abrt'
  rescue LoadError
  end
given block not usedarray size too bigsort reentered[][...][argc == 1array.cnegative array sizerepeated permute reenteredcombination reenteredindex %ld too bignegative length (%ld)modified during shuffleargument too bigsort_byrecursive array joinflatten reenteredtoo big to productproduct reenteredattempt to drop negative sizeattempt to take negative sizecan't set length of shared negative sample numbernegative argument$, is set to non-nil valuetry_convertinitializeinitialize_copyto_sto_ato_hto_aryeql?[]=fetchfirstlastuniondifferenceintersection<<pushappendpopunshiftprependinserteach_indexreverse_eachempty?find_indexrindexreversereverse!rotaterotate!sortsort!sort_by!collect!map!select!filter!keep_ifvalues_atdelete_atdelete_ifreject!transposeclearfillinclude?<=>slice!rassoc|minminmaxuniq!compact!flattenflatten!shuffle!samplecyclerepeated_permutationrepeated_combinationbsearchbsearch_indexany?none?digsumdeconstructblock supersedes default value argumentindex %ld outside of array bounds: %ld...%ldnegative array size (or size too big)repeated combination reenteredindex %ld too small for array; minimum: %ldwrong element type %li at %ld (expected array)wrong array length at %ld (expected 2, was %ld)tried to flatten recursive arraywrong argument type %li (must be numeric, true, false or nil)wrong argument type %li (must respond to :each)probable buffer overflow: %ld for %ldelement size differs (%ld should be %ld)ary_take_first_or_last����������������#<:%s@%d:%d-%d:%d>NODE_SPECIAL_NO_NAME_RESTNODE_SPECIAL_REQUIRED_KEYWORDNODE_SPECIAL_EXCESSIVE_COMMANODE_SPECIAL_NO_REST_KEYWORDinvalid source encodingset_encodingSCRIPT_LINES__AbstractSyntaxTreeNodeast_s_parseast_s_parse_fileast_s_ofast_node_typeast_node_first_linenoast_node_first_columnast_node_last_linenoast_node_last_columnast_node_childrenast_node_inspectAST/nodenode_children: unknown node: %sД�p����������������`��`��(��(��������������������(��(��x��(��(��(��(��(��H��(����8��8������(��(������(��8����������������������������ؐ�������������Ў���Ў���Ў�����.������P������������(��������x������H��������������������������Ў�(������ؓ�xn <= znbignum.cblen <= num_bdigitsunsupported flags specifiedword order not specifiedunexpected word orderbyte order not specifiedunexpected byte orderinvalid wordsize: %zutoo big wordsize: %zutoo big nails: %zuinvalid radix %d-InfinityNaNxn + yn <= znqds ? (xn - yn + 1) <= qn : 1rds ? yn <= rn : 1qds || rdszn > ynxn * 2 <= znzn == yn + 12 <= base && base <= 360 < xnx_higher_bdigit < yyn < znBDIGIT_MSB(yds[yn-1])zds[zn-1] < yds[yn-1]xn <= 2too big numberxn <= yndp <= deyn < 2 * xn2*n < xnt1ds[t1n-1] == 0t2ds[t2n-1] == 0t3ds[t3n-1] == 0qn + bn <= xn + wnqn <= bni == num_bdigitsshift width too biglen != 0s + len0 == str + lenInteger()unsigned longunsigned long longBignum out of Float rangeremainderin a**b, b may be too bigRB_BIGNUM_TYPE_P(m)BignumcoerceGMP %sGMP_VERSION(size_t)(dp - BDIGITS(z)) == num_bdigitstoo big numwords * wordsize: %zu * %zuinvalid value for Integer(): %+liyn < xn || (xn == yn && yds[yn - 1] <= xds[xn - 1])0 <= shift && shift < BITSPERDIG!KARATSUBA_BALANCED(xn, yn) || !TOOM3_BALANCED(xn, yn)unexpected bignum length for karatsubaunexpected bignum length for toom3too big power number requested: maxpow_in_bdigit_dbl(%d)**(2**%d)bignum too big to convert into `string'bignum too big to convert into `%s'too big to unpack as an integerbignum out of range of unsigned longbignum too big to convert into `long'bignum out of range of unsigned long longbignum too big to convert into `long long'Integer#pow() 2nd argument not allowed unless a 1st argument is integerInteger#pow() 1st argument cannot be negative when 2nd argument specifiedInteger#pow() 2nd argument not allowed unless all arguments are integers�i�-j�i�-j�-j�-j�-j�-j�-j�-j�-j�-j�-j�i�-j�-j�-j�-j�-j�-j�-j�-j�j�-j�-j�-j�-j�-j�-j�-j�-j�-j��i�-j�i�-j�-j�-j�-j�-j�-j�-j�-j�-j�-j�i�-j�-j�-j�-j�-j�-j�-j�-j�j�>�<�int_pow_tmp3big2str_karatsubabig2str_2bdigitsstr2big_karatsubastr2big_normalmaxpow_in_bdigit_dblstr2big_poweroftworb_int_parse_cstrbary_unpack_internalbary_divmod_gmpbigdivrem_restoringbary_divmod_normalbary_mul_gmpbary_mul_balance_with_mulfuncbigdivrem_mulsubbary_small_rshiftbigdivrem_single1bary_mul_toom3bary_addcbary_subbbary_mul_karatsubabary_mul_singlebary_short_mulbary_small_lshiftbary_mul_precheckbary_sq_fastbary_muladd_1xNbary_mul_normal�!�)R���@����eg��Aa"P�yB6�!�)R����#NJ9�?�V�(M�M�brsx�}�9w�=��'[��!~�^�'�\<��]ۮ��2���ļI���-@��{YXVq�`77���)�42����xd�n"�_�p�=8��#<Z�+�se��Y�6�A݁�� W�
�	_O��%,�D!q\n�%g�.��A?(






0123456789abcdefghijklmnopqrstuvwxyz��?�=�A����C���C0Crefinement module is not allowedsuperclass must be a Class (%li given)can't make subclass of singleton classsuperclass mismatch for class %s%li::%li is not a class (%li)superclass mismatch for class %li::%li (%li is given but was %li)no super class for `%li::%li'%li::%li is not a module (%li)Keyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecatedcan't make subclass of Classcan't copy the root classalready initialized classcan't copy singleton class__tmp_classpath____classpath____classid__BasicObjectModulecan't define singletonunknown immediate %pinherited%s is not a class (%li)no super class for `%s'%s is not a module (%li)cyclic include detectedcyclic prepend detected%s keyword%.*sbad scan arg format: %sunknownwrong argument type %s (expected Range)cannot clamp with an exclusive rangemin argument must be smaller than max argumentcomparison of %li with %li failedComparable>=<=between?clamp`W�8X�8X�W�8X�`W�`W�8X�8X�0W�8X�8X�`W�8X�8X�8X��W�8X�W�pX�W�X�8X�8X�8X�8X�8X�8X�8X�W�W�8X�8X�8X�`W�`W�W�PX�8X�8X�8X�8X�8X�8X�8X�8X�8X�X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�8X�he�xe�e�@e�Xe�����&��&��&��r��Y��&��@��&��'��&��&��&��&��&��&��&��&��&��&��&��&����&����&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��ܨ�&��&��&��&��&��&��&��&��&��&��&��è�&������x��&��ا���&��������������H�� ����x������x����x���������L�������x����x����x��x����ȵ���ش�x������x����(��x��x����H����x��H��@��(����(��(�����(������(��@��(��(��(��(��(��(������@��(����h�����������������������������������������������������������������8����`��:����<��<��l�d���)�:�:�!�!����.�4-�\6�,�����/�������*�\*���4�\�
�T
���8�7�7��l�l�4�4�4�\2�\2�5����)�L�\�
�������\������t����������l��d��������t�|��:�:�:��:�����t��:��������������d��T��l��$��|��|��$��$�����,��\��4���������������ܕ�T��,��d�������������������������������������������������������������� ��@��@��������������������������������������������������������������������������������������������������������������������������������������������������������X��p��p��p��p��p��p��p��p��p��p��p��p����������������������������������������@������������������������������������������������������������������P��`����������P�����`�����������������,��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��d�������d��d��d��d��d��d��d��d��d��d��d��d��d��d��d����������d��d��d����d��d��d��d��d��d����d��d��d��d��d��d��d��d��d��d��d��d��d��d��d��L��|��d���������d��|��d��d��d�����<���>����� ��������<��������������������2 �!�2 �2 �,#�"��!�d!�2 ���2 �2 �2 �2 �2 �2 �� �T ��2 ��!�ibf_load_codeibf_dump_codeibf_dump_iseq_eachcompile_keyword_arg__builtin_cdhash_cmpiseq_set_argumentsnopgetlocalsetlocalgetblockparamsetblockparamgetblockparamproxygetspecialsetspecialgetinstancevariablesetinstancevariablegetclassvariablesetclassvariablegetconstantsetconstantgetglobalsetglobalputnilputselfputobjectputspecialobjectputstringconcatstringstostringfreezestringtoregexpinternnewarraynewarraykwsplatduparrayduphashexpandarrayconcatarraysplatarraynewhashnewrangepopdupdupnswapreversetopnsetnadjuststackdefinedcheckmatchcheckkeywordchecktypedefineclassdefinemethoddefinesmethodsendopt_send_without_blockopt_str_freezeopt_nil_popt_str_uminusopt_newarray_maxopt_newarray_mininvokesuperinvokeblockleavethrowjumpbranchifbranchunlessbranchnilopt_getinlinecacheopt_setinlinecacheonceopt_case_dispatchopt_plusopt_minusopt_multopt_divopt_modopt_eqopt_neqopt_ltopt_leopt_gtopt_geopt_ltltopt_andopt_oropt_arefopt_asetopt_aset_withopt_aref_withopt_lengthopt_sizeopt_empty_popt_succopt_notopt_regexpmatch2opt_call_c_functioninvokebuiltinopt_invokebuiltin_delegateopt_invokebuiltin_delegate_leavegetlocal_WC_0getlocal_WC_1setlocal_WC_0setlocal_WC_1putobject_INT2FIX_0_putobject_INT2FIX_1_trace_noptrace_getlocaltrace_setlocaltrace_getblockparamtrace_setblockparamtrace_getblockparamproxytrace_getspecialtrace_setspecialtrace_getinstancevariabletrace_setinstancevariabletrace_getclassvariabletrace_setclassvariabletrace_getconstanttrace_setconstanttrace_getglobaltrace_setglobaltrace_putniltrace_putselftrace_putobjecttrace_putspecialobjecttrace_putstringtrace_concatstringstrace_tostringtrace_freezestringtrace_toregexptrace_interntrace_newarraytrace_newarraykwsplattrace_duparraytrace_duphashtrace_expandarraytrace_concatarraytrace_splatarraytrace_newhashtrace_newrangetrace_poptrace_duptrace_dupntrace_swaptrace_reversetrace_topntrace_setntrace_adjuststacktrace_definedtrace_checkmatchtrace_checkkeywordtrace_checktypetrace_defineclasstrace_definemethodtrace_definesmethodtrace_sendtrace_opt_send_without_blocktrace_opt_str_freezetrace_opt_nil_ptrace_opt_str_uminustrace_opt_newarray_maxtrace_opt_newarray_mintrace_invokesupertrace_invokeblocktrace_leavetrace_throwtrace_jumptrace_branchiftrace_branchunlesstrace_branchniltrace_opt_getinlinecachetrace_opt_setinlinecachetrace_oncetrace_opt_case_dispatchtrace_opt_plustrace_opt_minustrace_opt_multtrace_opt_divtrace_opt_modtrace_opt_eqtrace_opt_neqtrace_opt_lttrace_opt_letrace_opt_gttrace_opt_getrace_opt_ltlttrace_opt_andtrace_opt_ortrace_opt_areftrace_opt_asettrace_opt_aset_withtrace_opt_aref_withtrace_opt_lengthtrace_opt_sizetrace_opt_empty_ptrace_opt_succtrace_opt_nottrace_opt_regexpmatch2trace_opt_call_c_functiontrace_invokebuiltintrace_opt_invokebuiltin_delegatetrace_opt_invokebuiltin_delegate_leavetrace_getlocal_WC_0trace_getlocal_WC_1trace_setlocal_WC_0trace_setlocal_WC_1trace_putobject_INT2FIX_0_trace_putobject_INT2FIX_1_
$2EP[o�����������)29BR[co{����������������
4CM\m~�����������
 (07?FMT[dls|���������� AO]ky�������.Hby��������&:I\kx�������� +6DOZlz�������$4I`w��������		"	-	E	T	d	s	�	�	�	�	�	�	�	�	�	�	

&
:
N
_
n
�
�
�
�
�
�
*>Rfz����������������������������������������������������������iseq_set_sequenceLNLNLNLNLNNNNIAIAIIIIGGVNVNVNNNNVVNNVNNNNNNNNVVNLLNISNISISCSCVCCVCNNCSCNOOOOOKKSTHOCCCCCCCCCCCCCCCCCVCVCCCCCCCFRRNRNLLLLLNLNLNLNLNNNNIAIAIIIIGGVNVNVNNNNVVNNVNNNNNNNNVVNLLNISNISISCSCVCCVCNNCSCNOOOOOKKSTHOCCCCCCCCCCCCCCCCCVCVCCCCCCCFRRNRNLLLL

!#%'()+-/12478:<>@CDFHJKLNOQSUW[]`bfiloqtvy{}����������������������������������������������������������
"#%')*+-.0246:<?AEHKNPSUXZ\_abdfhjloqtwy{}������������������������������unsupportedblock in %liblock (%d levels) in %liinvalid %+li Fixnum: %+li<compiled>invalid bytecodecompile.cinvalid byte sequence&.thendump size exceedsunsupported classbroken binary formatYARBunknown binary formatx86_64-linuxunmatched platformget_local_var_idx: %dget_dyna_var_idx: -1%li: undefined label-- raw disasm-----------------------------%-20s %04d %-65s(%4u)
<ic:%d><calldata:, %d><ch><%p>unsupported: TS_BUILTINunknown operand type: %c<L%03d> [sp: %d]%s
trace: %0x
adjust: [label: %d]
dump_disasm_list error: %ld
argument stack underflow (%d)unknown label: <L%03d>unknown list type: %dinvalid instructionTS_FUNCPTR is not supportedinsn_len(insn) == op_index+1NODE_CASE: unknown node (%s)NODE_WHEN: unknown node (%s)unsupported: putundefInvalid breakInvalid retryrescue in ensure in cexpr!_bi%dcconst!cinit!Invalid yieldunknown dvar (%li)<class:%li><module:%li>singletonclassInvalid nextInvalid redocstmt!METHODEVALMAINTOPunexpected imemo_ifuncbody->param.rest_start != -1unknown scope: %ddeconstruct must return Arraydeconstruct_keysNODE_IN: unknown node (%s)unexpected nodedefined guard in dstr: must be string: %snd_type(node) == NODE_LISTi == lensetup_arg: unknown node (%s)keyword#arg_restlead_numpost_numpost_startrest_startblock_startarg_sizelocal_sizestack_maxkwbitsambiguous_param0wrong exception entryRUBY_EVENT_LINERUBY_EVENT_CLASSRUBY_EVENT_ENDRUBY_EVENT_CALLRUBY_EVENT_RETURNRUBY_EVENT_B_CALLRUBY_EVENT_B_RETURNunknown instruction: %+lioperand size mismatchISEQ is requiredmidflagorig_argckw_argunknown operand: %cshould be top of iseqibf_dump_overwrite: overflowcode_index == iseq_sizepath object size mismatchunexpected path objectibf_loaderibf_dumpibf_dump_object_unsupported: %sobject offset out of range: %zd(x == 1) || (x == 0) || (x == -1)ibf_load_object_class: unknown class (%d)object index out of range: %ldobject offset out of range: %uibf_dump_object_struct: unsupported class %liunmatched version file (%u.%u for %u.%u)unaligned iseq list offset: %uunaligned object list offset: %uoperand size miss! (%d for %d)iseq_set_sequence: adjust bug %d < %diseq_set_sequence: ic_index overflow: index: %d, size: %dISEQ_COMPILE_DATA(iseq)->ci_kw_index <= body->ci_kw_sizeISEQ_COMPILE_DATA(iseq)->ci_index <= body->ci_sizeiseq_set_sequence: adjust bug to %d %d < %dtoo large iseq_catch_table - %ddump->current_buffer == &dump->global_bufferNODE_CASE: NODE_WHEN is expected, but %sNODE_CASE: must be NODE_LIST, but 0NODE_WHEN: must be NODE_LIST, but 0Can't escape from eval with breakCan't escape from eval with nextCan't escape from eval with redoNODE_RESBODY: unknown node (%s)NODE_DASGN(_CURR): unknown id (%li)%s: invalid node in NODE_OP_CDECLshould not call builtins here.can't find builtin function:%sargc is not match for builtin function:%s (expect %d but %d)compile_array: NODE_LIST is expected, but %sNODE_VALUES: must not be poppedcompile_hash: NODE_LIST is expected, but %sargument of top-level return is ignored`yield' in class syntax will not be supported from Ruby 3.0. [Feature #15575]iseq_compile_each: unknown node (%s)iseq_set_arguments: NODE_ARGS is expected, but %scompile/ISEQ_TYPE_%s should not be reacheddeconstruct_keys must return Hashillegal variable in alternative pattern (%li)NODE_CASE3: NODE_IN is expected, but %s:opt param is not an array: %+likeyword default has unsupported len %+li:keywords param is not an array: %+liinvalid exception symbol: %+liunexpected object for instructionshould not compile with coveragebuiltin function table is not providedbuiltin function index (%d) mismatch (expect %s but %s)reading_pos == bytecode_offset + bytecode_sizeunexpected realpath %lx(%x), path=%+lito_cComplex.eEcan't convert %li into Floatnot a realstring contains null byteabs@real@imageinfinite?rationalizePIallocaterectangularpolardivmodfloorceilmoduloroundsteptruncateimaginaryimag-@quofdiv**magnitudeabs2anglephaseconjugateconjpositive?negative?marshal_dumpmarshal_loadto_ito_fto_rcomplex.somarshaled complex must have an array whose length is 2 but %ldcan't convert %li into Integercan't convert %li into Rational%li can't be coerced into %liinvalid value for convert(): %+lican't convert nil into Complex-DT�!	@-DT�!�?�!3|�@�?�can't alloc machine stack to fiber (%zu x %zu bytes): %sfiber called across stack rewinding barrierstart && stack && size >= 1024continuation called across threadscontinuation called across stack rewinding barriercontinuation called across fibercontinuation called from out of critical rb_ensure scopecannot raise exception on unborn fibercannot resume transferred FiberRUBY_SHARED_FIBER_POOL_FREE_STACKScan't set a guard page: %scannot initialize twicenot running threaduninitialized fibercreatedresumedsuspendedterminated (%s, transferred)fiber called across threadsdead fiber calledcoroutine/amd64/Context.hcan't call across trace_funccan't yield from root fiberdouble resumeFiberFiberErrorContinuationcallcctransferalive?currentcontinuationcoroutine_initializeDBG> %s: %s
DBG> %s: %s (%u)
gc_stresscorecirgengcignored rgengc option: `%.*s'
unexpected debug option: %.*s
������closed directorydirfdbaseflagscontinuous RECURSIVEsHOMELOGDIRHOME/LOGDIR not setDirforeachentrieseach_childfilenoto_pathpospos=getwdpwdchrootmkdirrmdirunlinkglobexist?exists?fnmatchfnmatch?FNM_NOESCAPEFNM_PATHNAMEFNM_DOTMATCHFNM_CASEFOLDFNM_EXTGLOBFNM_SYSCASEFNM_SHORTNAMEDir.exists? is a deprecated name, use Dir.exist? insteadnul-separated glob pattern is deprecatedconflicting chdir during another chdir block�6��6��6�6��3��3��6�t6�7��6�6���3�6�dir_initializedir_chdirdir_s_chdirdir_s_chrootdir_s_mkdirdir_s_rmdirpush_globrb_dir_s_empty_pdo_lstatdo_opendirdo_statopenpath: pathname too long (ignored)
	File "%.*s"%s
/usr/local/bin:/usr/ucb:/usr/bin:/bin:.openpath: pathname too long (ignored)
	Directory "%.*s"%s
	File "%.*s"%s
rb_enc_from_encoding_index(%d): no rb_encoding_listrb_enc_from_encoding_index(%d): not created yetwrong argument type %li (expected Encoding)encoding index out of bound: %dwrong encoding index %d for %s (expected %d)encoding %s is already registeredfailed to load encoding (%s); use ASCII-8BIT insteadcannot set encoding on non-encoding capable objectinvalid name encoding (non ASCII)incompatible character encodings: %s and %sdefault external can not be nilsetting Encoding.default_externalsetting Encoding.default_internalUTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF-16UTF-32UTF8-MACEUC-JPWindows-31Jfailed to replicate encodingenc/%s.sofailed to load encoding (%s)encoding %s is not registeredinternal_encodingexternal_encodingunknown encoding name - %lifilesystemunknown encodingempty stringinvalid byte sequence in %sinvalid codepoint 0x%x in %s (autoload) (dummy)broken Encoding#<%li:%s%s%s>localenamesdummy?ascii_compatible?replicatename_listaliasesfinddefault_externaldefault_external=default_internaldefault_internal=locale_charmap�r�r�(r�(r�(r�(r�Xr�8r�(r�(r�(r�(r�(r�(r�(r�r�slicewhen_enumslicewhen_predslicewhen_invertedsliceafter_enumsliceafter_patsliceafter_predslicebefore_sep_predslicebefore_sep_patslicebefore_enumerableinvalid sizeinvalid slice size%s%s reenteredchunk_enumerablechunk_categorizesort_by reenteredenum.cmemo != NULLRB_TYPE_P(hash, T_HASH)_alone_separatornegative size (%ld)too big sizeEnumerabledetectinjectreducegroup_bytallymin_byminmax_bymember?each_with_indexeach_entryeach_sliceeach_conseach_with_objectchunkslice_beforeslice_afterslice_whenchunk_whileboth pattern and block are givensymbols beginning with an underscore are reserved�hash_sumsum_iteruninitialized producer#<%li: uninitialized>#<%li: ...>#<%li: %+li>uninitialized chainuninitialized yielderuninitialized generatorunallocated yielderunallocated generatoruninitialized enumeratoriteration reached an endfeed value already setunallocated enumeratorObject#to_enumunallocated chainnon-symbol key inserted% li: %li, can't copy execution context(%s%li%s.#<%li: %li#<%li: %+lino block givenunallocated producerprivateenum_forEnumeratornext_valuespeek_valuespeekfeedLazylazy_enumerable_map_enumerable_collect_enumerable_flat_map_enumerable_collect_concat_enumerable_select_enumerable_find_all_enumerable_filter_enumerable_filter_map_enumerable_reject_enumerable_grep_enumerable_grep_v_enumerable_zip_enumerable_take_enumerable_take_while_enumerable_drop_enumerable_drop_while_enumerable_uniq_enumerable_with_indexeagerforceStopIterationGeneratorYielderto_procProducerproduceChainArithmeticSequenceexclude_end?===enumerator.soreceivermemoexclude_endproc_entrywrong argument type %li (expected Proc)tried to call lazy new without a blockEnumerator.new without a blocktried to call lazy drop_while without a blocktried to call lazy take_while without a blocktried to call lazy reject without a blocktried to call lazy filter_map without a blocktried to call lazy select without a blocktried to call lazy map without a blocktried to call lazy flat_map without a blockcannot get the last element of endless arithmetic sequence�<compile errorErrnoE%03dE2BIGEACCESEADDRINUSEEADDRNOTAVAILEADVEAFNOSUPPORTEAGAINEALREADYEBADEEBADFEBADFDEBADMSGEBADREBADRQCEBADSLTEBFONTEBUSYECHILDECANCELEDEXFULLEXDEVEUSERSEUNATCHEUCLEANETXTBSYETOOMANYREFSETIMEDOUTETIMEESTRPIPEESTALEESRMNTESRCHESPIPEESOCKTNOSUPPORTESHUTDOWNEROFSERFKILLERESTARTEREMOTEIOEREMOTEEREMCHGERANGEEPROTOTYPEEPROTONOSUPPORTEPROTOEPIPEEPFNOSUPPORTEPERMEOWNERDEADEOVERFLOWENXIOENOTUNIQENOTTYENOTSUPENOTSOCKENOTRECOVERABLEENOTNAMENOTEMPTYENOTDIRENOTCONNENOTBLKENOSYSENOSTRENOSRENOSPCENOPROTOOPTENOPKGENONETENOMSGENOMEMENOMEDIUMENOLINKENOLCKENOKEYENOEXECENOENTENODEVENODATAENOCSIENOBUFSENOANOENFILEENETUNREACHENETRESETENETDOWNENAVAILENAMETOOLONGEMULTIHOPEMSGSIZEEMLINKEMFILEEMEDIUMTYPEELOOPELNRNGELIBSCNELIBMAXELIBEXECELIBBADELIBACCEL3RSTEL3HLTEL2NSYNCEL2HLTEKEYREVOKEDEKEYREJECTEDEKEYEXPIREDEISNAMEISDIREISCONNEINVALEINTREINPROGRESSEILSEQEIDRMEHWPOISONEHOSTUNREACHEHOSTDOWNEFBIGEEXISTEDQUOTEDOTDOTEDOMEDESTADDRREQEDEADLKECONNRESETECONNREFUSEDECONNABORTEDECOMMECHRNG[BUG] %s:%d: ; use %s instead%s: errno == 0 (NOERROR)%s: %s (%s)%s: %s (%d)undefined errno[ASYNC BUG] errno == 0 (NOERROR)
Assertion Failed: %s:%d:%s:%s
%s

to_tty?full_messagebacktrace_locationsset_backtracecauseSystemExitsuccess?fatalSignalExceptionInterruptStandardErrorTypeErrorArgumentErrorIndexErrorKeyErrorRangeErrorScriptErrorSyntaxErrorLoadErrorNotImplementedErrorNameErrorlocal_variablesto_strNoMethodErrorprivate_call?RuntimeErrorFrozenErrorSecurityErrorNoMemoryErrorEncodingErrorCompatibilityErrorNoMatchingPatternErrorSystemCallErrorWarningwarn@pathbottomexperimentalunknown category: %liinvalid value for %s: %+liunknown errorinvalid instance type @ %lino receiver is availableno key is availablehighlightnegative level (%ld)%s:%ld: warning: rb_sys_fail(%s) - errno == 0 -- can't modify frozen %scan't modify frozen %li: , created at %li:%liNOERROREAUTHEBADARCHEBADEXECEBADMACHOEBADRPCECAPMODEEDEADLOCKEDEVERREDOOFUSEFTYPEEIPSECELASTENEEDAUTHENOATTRENOPOLICYENOTCAPABLEEOPNOTSUPPEPROCLIMEPROCUNAVAILEPROGMISMATCHEPROGUNAVAILEPWROFFEQFULLERPCMISMATCHESHLIBVERSEWOULDBLOCKwarningrb_warn_mname_err_mesgwrong argument type %s (expected %s)wrong argument type %li (expected %s)unknown type 0x%x (0x%x given, probably comes from extension library for ruby 1.8)unknown type 0x%x (0x%x given)undef leaked to the Ruby spaceexpected true or false as highlight: %+liexpected :top or :bottom as order: %+li%li() function is unimplemented on this machine[FATAL] rb_fatal() outside of GVL
rb_sys_fail_str(%s) - errno == 0rb_sys_fail_path_in(%s, %s) - errno == 0rb_error_untrusted is deprecated and will be removed in Ruby 3.2.rb_check_trusted is deprecated and will be removed in Ruby 3.2.backtrace must be Array of StringObjectClassModuleFloatStringRegexpArrayHashStructBignumFileDataMatchDataComplexRationalniltruefalseSymbolFixnumundefMemoNodeiClasswrong argument type %s (expected Module)%susing doesn't call the given block%s.wrong argument type %li (expected Class or Module)main.include in the wrapped load is effective only in wrapper modulecan't pass a Proc as a block to Module#refineexception class/object expectedException `%li' at %s:%d - %li
Exception `%li' at %s - %li
undefined method `%1$s' for module `%2$s'undefined method `%1$s' for class `%2$s'undefined private method `%1$s' for class `%2$s'undefined private method `%1$s' for module `%2$s'undefined protected method `%1$s' for module `%2$s'undefined protected method `%1$s' for class `%2$s'method `%1$s' for module `%2$s' is method `%1$s' for class `%2$s' is method `%1$s' for class `%2$s' is  privatemethod `%1$s' for module `%2$s' is  privatemethod `%1$s' for module `%2$s' is  protectedmethod `%1$s' for class `%2$s' is  protectedonly cause is given with no argumentsretry outside of rescue clause
main.using is permitted only at toplevelModule#using is not permitted in methodsModule#using is not called on selfmachine stack overflow in critical region__refinements__extend_objectextendedprepend_featuresprependedappend_featuresincluded, maybe for Module.new\x%02X	%*ld: from %li
	 ... %ld levels...
__activated_refinements____refined_class____defined_at__exception object expectedException `%li' - %li
circular causes$! not setcan't modify frozen %s: %liUnknown longjmp status %dcalled without a block%li:%d:in `%li': %li:%d: unhandled exceptionunexpected return
unexpected next
unexpected break
unexpected redo
unexpected throw
main.Module#assigning non-exception to $!$@failglobal_variables__method____callee____dir__includerefineusingused_modulesmodule_functionnestingconstantsextenduntrace_varexception reenteredsignoP?�?��?�?� @�H@��>�p?�?�Traceback (most recent call last):
 (most recent capath name must be ASCII-compatible (%s): %li%s is unimplemented on this filesystem%sexists? is a deprecated name, use %sexist? insteadcouldn't find home for uid `%ld'non-absolute home of %.*s%.0liInsecure world writable dir %s in %sPATH, mode 0%orb_find_file_ext_safe will be removed in Ruby 3.0rb_find_file_safe will be removed in Ruby 3.0#<%s: uninitialized>0%lo0x%lxuninitialized File::StatcharacterSpecialblockSpecialsocketFile is unnamed (TMPFILE?)not opened for writingbirthtimepath name contains null byterecursive arrayFileTest.FileTest#File.unknown command '%s%c'unknown command "\x%02X"bcdefgGkloOprRsSuwWxXz=<>resolvinguser %li doesn't existnon-absolute homeFileTestdirectory?readable_real?world_readable?writable_real?world_writable?executable?executable_real?file?size?grpowned?pipe?symlink?socket?blockdev?chardev?setuid?setgid?sticky?identical?lstatftypeatimelchmodlchownlutimesymlinkreadlinkrenameumaskmkfifoexpand_pathabsolute_pathabsolute_path?realpathrealdirpathbasenamedirnameextnameSeparatorsplitALT_SEPARATORPATH_SEPARATORflockConstantsRDONLYWRONLYRDWRAPPENDCREATEXCLNONBLOCKTRUNCNOCTTYBINARYSHARE_DELETEDSYNCRSYNCNOFOLLOWNOATIMEDIRECTTMPFILELOCK_SHLOCK_EXLOCK_UNLOCK_NBtestinordevrdev_majorrdev_minorblksize�����������������p��������������������������������������0��Ȑ���(��P����������ȑ���������0����p���������������� ��rb_file_s_sizerb_file_s_statrb_file_s_lstatrb_file_s_ftyperb_file_s_atimerb_file_s_mtimerb_file_s_ctimerb_file_s_linkrb_file_s_symlinkapply2filessyserr_fail2_inrb_file_s_renamerb_file_s_truncaterb_file_s_mkfiforb_io_statrb_file_lstatrb_file_atimerb_file_mtimerb_file_ctimerb_file_birthtimerb_file_sizerb_file_chmodrb_file_chownrb_file_truncaterb_file_flockrb_f_testrb_stat_initrealpath_recrb_check_realpath_internalrb_readlinkrb_file_s_birthtime/dev/null%s	%d
[FATAL] T_OBJECTT_MODULET_FLOATT_STRINGT_REGEXPT_ARRAYT_HASHT_STRUCTT_BIGNUMT_FILET_MATCHT_COMPLEXT_RATIONALT_NILT_TRUET_FALSET_SYMBOLT_FIXNUMT_IMEMOT_UNDEFT_NODET_ICLASSnon-hash or symbol givenmajor_bygc_byimmediate_sweephave_finalizernofreeoldgenshadyoldmallocnewobjcapinonemarkingsweepingunknown key: %liconsiderednon-hash givenTOTALFREEinvalid string for %s: %s
%s=%f (default value: %f)
-<%li:%pGC %zu invokes.
%p is not symbol id value%+li is not id value%+li is recycled object%s=%zd (default value: %zu)
not reachable %dGC_FLAGSGC_TIMEGC_INVOKE_TIMEHEAP_USE_SIZEHEAP_TOTAL_SIZEHEAP_TOTAL_OBJECTSGC_IS_MARKED#<collected:%p> => marking -> %s
markedwb_protecteduncollectiblepinnedheap_allocated_pagesheap_sorted_lengthheap_allocatable_pagesheap_available_slotsheap_live_slotsheap_free_slotsheap_final_slotsheap_marked_slotsheap_eden_pagesheap_tomb_pagestotal_allocated_pagestotal_freed_pagestotal_allocated_objectstotal_freed_objectsmalloc_increase_bytes_limitminor_gc_countmajor_gc_countcompact_countold_objectsold_objects_limitoldmalloc_increase_bytesgc_stat_heap_usedheap_eden_page_lengthheap_tomb_page_lengthheap_incrementheap_lengthheap_live_slotheap_free_slotheap_final_slotheap_swept_slottotal_allocated_objecttotal_freed_objectoldmalloc_increaseoldmalloc_limitnon-hash or symbol argumenttry to mark T_NONE objectcorrupted objectnon objectrb_gc_mark(): %p is T_MOVEDrb_gc_mark(): %p is T_NONErb_gc_mark(): %p is T_ZOMBIEvmfinalizersmachine_contextglobal_listend_procglobal_tblobject_id%s|%s:%dRUBY_GC_HEAP_FREE_SLOTSRUBY_FREE_MINRUBY_GC_HEAP_INIT_SLOTSRUBY_HEAP_MIN_SLOTSRUBY_GC_HEAP_GROWTH_FACTORRUBY_GC_HEAP_GROWTH_MAX_SLOTSRUBY_GC_MALLOC_LIMITRUBY_GC_MALLOC_LIMIT_MAXRUBY_GC_OLDMALLOC_LIMITRUBY_GC_OLDMALLOC_LIMIT_MAXtoo large allocation sizetowarddouble_heapattrestivarbmethodrefinedcfunczsuperoptimizednotimplementedenvcrefsvarthrow_datatmpbufparser_strterm%p [%d%s%s%s%s%s] %s %p [%dXXXX] %s(temporary internal)shared -> %s[%s%s] len: %d (embed)-> %p[%c%c] %dsrc:%slen:%d ptr:%p/%s(embed) len:%drb_obj_info_dump: %s
<OBJ_INFO:%s@%s:%d> %s
RVALUE_SIZEHEAP_PAGE_OBJ_LIMITHEAP_PAGE_BITMAP_SIZEHEAP_PAGE_BITMAP_PLANESINTERNAL_CONSTANTSProfilerenabled?raw_datareporttotal_timeObjectSpaceeach_objectundefine_finalizer_id2reffailed to allocate memory__id__count_objectsWeakMapeach_paireach_keyeach_valueverify_internal_consistencyverify_compaction_referencesOPTSUSE_RGENGCRGENGC_ESTIMATE_OLDMALLOCGC_ENABLE_LAZY_SWEEPgc_start_internalgc_enablegc_disablegc_stress_getgc_stress_set_mgc_statgc_latest_gc_inforb_gc_compactweakmapinternal_object_p(): GC does not handle T_NODE 0x%x(%p) 0x%lxGC.stat keys were changed from Ruby 2.1. In this case, you refer to obsolete `%li' (new key is `%li'). Please check <https://bugs.ruby-lang.org/issues/9924> for more information.%s=%f (default value: %f) is ignored because it must be greater than %f.
%s=%f (default value: %f) is ignored because it must be lower than %f.
Index    Invoke Time(sec)       Use Size(byte)     Total Size(byte)         Total Object                    GC Time(ms)
%5zu %19.3f %20zu %20zu %20zu %30.20f
cannot define finalizer for %swrong type argument %li (should be callable)hash modified during iteration[FATAL] failed to allocate memory
%s=%s is ignored because it overflows
%s=%zd (default value: %zu) is ignored because it must be greater than %zu.
obj_memsize_of(): GC does not handle T_NODE 0x%x(%p) 0x%lxobjspace/memsize_of(): unknown data type 0x%x(%p)Object ID seen, but not in mapping table: %s
verify_internal_consistency_reachable_i: WB miss (B->W) - %s -> %s
verify_internal_consistency_reachable_i: WB miss (O->Y) %s -> %s
check_rvalue_consistency: %p is a special const.
check_rvalue_consistency: %p is in a tomb_heap (%p).
check_rvalue_consistency: %p is not a Ruby object.
check_rvalue_consistency: %s is in tomb page.
check_rvalue_consistency: %s is T_NONE.
check_rvalue_consistency: %s is T_ZOMBIE.
check_rvalue_consistency: %s is not WB protected, but age is %d > 0.
check_rvalue_consistency: %s is uncollectible, but is not marked while !gc.
check_rvalue_consistency: %s is uncollectible, but not old (age: %d) and not WB unprotected.
check_rvalue_consistency: %s is remembered, but not old (age: %d).
check_rvalue_consistency: %s is marking, but not marked.
check_children_i: %s has error (referenced from %s)freelist slot expected to be T_NONE but was: %s
page %p's has_remembered_objects should be false, but there are remembered old objects (%d). %spage %p's has_remembered_shady should be false, but there are remembered shady objects. %spage %p's final_slots should be %d, but %d
gc_verify_internal_consistency: found internal inconsistency.heap_pages_final_slots: %d, objspace->profile.total_freed_objects: %d
inconsistent live slot number: expect %zu, but %zu.inconsistent old slot number: expect %zu, but %zu.inconsistent finalizing object count:
  expect %zu
  but    %zu zombies
  heap_pages_deferred_final list has %zu items.invalid_mark_stack: unreachableremembered_wb_unprotected_objectsremembered_wb_unprotected_objects_limitoldmalloc_increase_bytes_limitObject %s points to MOVED: %p -> %s
ROOT %s points to MOVED: %p -> %s
rb_gc_mark() called for broken objectrb_gc_mark(): GC does not handle T_NODE 0x%x(%p) 0x%lxrb_gc_mark(): unknown data type 0x%x(%p) %ssame heap page is allocated: %p at %luheap_page_allocate: allocated(%zd) > sorted(%zd)integer overflow: %zu * %zu + %zu > %zuinteger overflow: %zu * %zu > %zuRUBY_FREE_MIN is obsolete. Use RUBY_GC_HEAP_FREE_SLOTS instead.RUBY_HEAP_MIN_SLOTS is obsolete. Use RUBY_GC_HEAP_INIT_SLOTS instead.RUBY_GC_HEAP_FREE_SLOTS_MIN_RATIORUBY_GC_HEAP_FREE_SLOTS_MAX_RATIORUBY_GC_HEAP_FREE_SLOTS_GOAL_RATIORUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTORRUBY_GC_MALLOC_LIMIT_GROWTH_FACTORRUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTORgc_is_moveable_obj: unreachable (%d)malloc: possible integer overflow (%zu*%zu)lazy sweeping underway when freeing object spaceobj_free() called for broken objectobj_free(): GC does not handle T_NODE 0x%x(%p) 0x%lxgc_sweep(): unknown data type 0x%x(%p) 0x%lxgc_finalize_deferred_register: can't register finalizer.gc_profile malloc or realloc misswmap_finalize: objid is not found.object allocation during garbage collection phasenegative buffer size (or size too big)rb_method_type_name: unreachable (type: %d)rb_raw_obj_info(): GC does not handle T_NODE 0x%x(%p) 0x%lx[%s%s%s] len: %d, capa:%d ptr:%p(called_id: %s, type: %s, alias: %d, owner: %s, defined_class: %s)verify_transient_heap_internal_consistencyinteger overflow: %zd * %zd + %zd * %zd > %zd8���������x��H�����������X��(���������h��h��8��������x��H��h��h��h����������h����u����������$��"��d��������l����������������$����������������������������)��������)������M�������t��j��j����t����t��t��t��t��F����������6��������4�\�|��6�6������������6���������������d�n���6�6����������������� �����p�`�P�@�0� ���������������p����`��P�@�0�B�B�B�B�B�B�B�B�B�B�B�B�B�����B�B�B�����B�B�B�B�$B��I�DC�C��C�\D�tD�D��D�C�B�$C�4C�F���G�F�F�F��HG�B�A�HB�E�F���E�E�E��B��B�F��F��F��F��F��F��F��F��F��F��F��F��hG�PH�A�H�H�H�A�\H�A�A�A�A��G�+���v�\s�\s�t��v�v�v�tv�Dv�$v��u�|u�4u�t�t�+��+��+��+��<w�+��+��+��+��+��w�J���t�+��t�z�t�t�t�t�t�z��z�z�z���(��8��H��X��h��x������������۹��� �� ��۹���۹���8��۹�۹�۹���۹�۹�۹�۹�۹�۹�۹�۹�۹�۹�۹�۹�۹�����H��۹���|��p��d��X��L��C��:����1��ɾ����&�.>���ư>@�@�������?\��(\�?$@can't add a new key into hash during iterationrehash occurred during iterationbad environment variable %s: contains null bytebad environment variable %s: ASCII incompatible encoding: %sret: %d, hash modified during iterationdefault_proc takes two arguments (2 for %d)wrong default_proc type %s (expected Proc)extra states are no longer copied: %+lican't replace hash during iterationwrong element type %s (expected array)element has wrong array length (expected 2, was %ld)odd number of arguments for Hashwrong element type %s at %ld (expected array)invalid number of elements (%ld for 1..2)rb_env_path_tainted is deprecated and will be removed in Ruby 3.2.cannot freeze ENVENV.keyENV.index{"=>key not found: "%li"{}key not found: %lirehash during iterationHash#keyHash#index{...}unsetenv(%s)defaultrehashto_hashdefault=default_procdefault_proc=transform_keystransform_keys!transform_valuestransform_values!fetch_valuesinvertupdatemerge!mergehas_key?has_value?compare_by_identitycompare_by_identity?ruby2_keywords_hash?ruby2_keywords_hashfreezeTZungetbyte failedARGFchomp`$,'too few arguments for syscalla+w+r+invalid access oflags 0x%xab+rt+rb+wt+xwtwbwxwtxwbxwb+xwt+wb+w+xat+invalid access fmode 0x%xtextmode specified twicebinmode specified twicepollpreadlseekcopy_file_rangesendfilefd %d/proc/self/statusFDSize:end of file reacheduninitialized streamsysseek for buffered IOadvice must be a SymbolUnsupported advice: %+li%li (%ld, %ld, %li)syswrite for buffered IOfd:%d too long characternot opened for readingsysread for buffered IO#each_byteIO#bytesrs modified#each_lineIO#linesungetc failed#each_codepointIO#codepoints#each_charIO#charsnegative length %ld given%s() not implementedputcfstatflush failedencoding conversion is setencoding is set to %s alreadyinvalid access mode %sto_intperm specified twiceencoding specified twiceputsno stream to set encodingno stream to set positionno stream to rewindno stream to seekno stream to tellreadlinereadlinesARGF#codepointsARGF#charsARGF#bytesARGF#linesno stream@tied_io_for_writingreinitializing File02:too many argumentsto_openread would blockwrite would blockIOErrorEOFErrorflushreadpartialprintgetsdisplayEAGAINWaitReadableEAGAINWaitWritableEWOULDBLOCKWaitReadableEWOULDBLOCKWaitWritableEINPROGRESSWaitReadableEINPROGRESSWaitWritablesysopenfor_fdpopenbinreadbinwritecopy_stream$,$/$-0$\$_reopensyswritesysreadpwriteto_iofsyncfdatasyncsync=lineno=readcharreadbyteungetbyteungetcSEEK_SETSEEK_CURSEEK_ENDSEEK_DATASEEK_HOLEeofeof?close_on_exec?close_on_exec=close_readclose_writeisattybinmodebinmode?sysseekadviseioctlfcntlset_encoding_by_bomautoclose?autoclose=$stdin<STDIN>$stdout<STDOUT>$stderr<STDERR>$>STDINSTDOUTSTDERRARGF.classargvto_write_iofilenameskipinplace_modeinplace_mode=$<$.$FILENAME$-i$*permopen_argstextmodeautoclosenormalsequentialwillneeddontneednoreusewait_readablewait_writableio_read_nonblockio_write_nonblockASCII incompatible encoding needs binmodenewline decorator with binary modeUnsupported encoding %li ignored%li must have %li method, %li given%li::new() does not take block; use %li::open() insteadWe plan to remove a syscall function at future release. DL(Fiddle) provides safer alternative.too many arguments for syscallexclusive access mode is not supportedboth textmode and binmode specifiedASCII incompatible string written for text mode IO without encoding conversion: %sBOM with non-UTF encoding %s is nonsenseUnsupported encoding %s ignoredrb_update_max_fd: invalid fd (%d) given.rb_maygvl_fd_fix_cloexec: fcntl(%d, F_GETFD) failed: %srb_maygvl_fd_fix_cloexec: fcntl(%d, F_SETFD, %d) failed: %srb_fix_detect_o_cloexec: fcntl(%d, F_GETFD) failed: %sencoding mismatch: %s IO with %s RSreturn value overflowed stringbyte oriented read for character buffered IOinvalid limit: 0 for readlinesinvalid limit: 0 for each_lineclosing non-duplex IO for writingclosing non-duplex IO for reading%+li%cwrite is outdated interface which accepts just one argumentcannot specify src_offset for non-IOIgnoring encoding parameter '%li': %s_encoding is used%s can't change access mode from "%s" to "%s"setvbuf() can't be honoured for %liCan't do inplace edit for stdio; skippingCan't rename %li to %li: %s, skipping fileCan't remove %li: %s, skipping fileCan't set owner/group of %li to same as %li: %s, skipping fileCan't do inplace edit for stdioThe given fd is not accessible because RubyVM reserves itinvalid read/write type passed to rb_readwrite_sys_fail: %d�g�kf�g�g�(g�Hg�pg�g�f�io_read_nonblockio_write_nonblockio_reopenrb_io_reopenrb_io_syswriterb_io_sysreadrb_io_preadrb_io_pwriterb_io_fsyncio_writerb_io_tellrb_io_seekrb_io_rewindrb_io_set_posrb_io_close_on_exec_prb_io_set_close_on_execrb_io_close_readis_socketrb_io_close_writerb_io_sysseekrb_ioctlrb_fcntl (closed)io_getpartialio_writevrb_sysopenfptr_finalize_flushswallowio_freadrb_io_set_nonblockio_fillbufutf-bom|closed stream@%dlabel_%luinline_const_cachepeephole_optimizationtailcall_optimizationspecialized_instructionoperands_unificationinstructions_unificationstack_cachingdebug_frozen_string_literalcoverage_enableddebug_levelload_iseqplainunsupported iseq type: %dfunc_ptrunknown exception type: %dnode_idcode_locationb_callb_return<%li:%li@%li:%d>NODE_SCOPENODE_BLOCKNODE_IFNODE_UNLESSNODE_CASENODE_CASE2NODE_CASE3NODE_WHENNODE_INNODE_WHILENODE_UNTILNODE_ITERNODE_FORNODE_FOR_MASGNNODE_BREAKNODE_NEXTNODE_REDONODE_RETRYNODE_BEGINNODE_RESCUENODE_RESBODYNODE_ENSURENODE_ANDNODE_ORNODE_MASGNNODE_LASGNNODE_DASGNNODE_DASGN_CURRNODE_GASGNNODE_IASGNNODE_CDECLNODE_CVASGNNODE_OP_ASGN1NODE_OP_ASGN2NODE_OP_ASGN_ANDNODE_OP_ASGN_ORNODE_OP_CDECLNODE_CALLNODE_OPCALLNODE_FCALLNODE_VCALLNODE_QCALLNODE_SUPERNODE_ZSUPERNODE_ZLISTNODE_VALUESNODE_HASHNODE_RETURNNODE_YIELDNODE_LVARNODE_DVARNODE_GVARNODE_IVARNODE_CONSTNODE_CVARNODE_NTH_REFNODE_BACK_REFNODE_MATCHNODE_MATCH2NODE_MATCH3NODE_LITNODE_STRNODE_DSTRNODE_XSTRNODE_DXSTRNODE_EVSTRNODE_DREGXNODE_ONCENODE_ARGSNODE_ARGS_AUXNODE_OPT_ARGNODE_KW_ARGNODE_POSTARGNODE_ARGSCATNODE_ARGSPUSHNODE_SPLATNODE_BLOCK_PASSNODE_DEFNNODE_DEFSNODE_ALIASNODE_VALIASNODE_UNDEFNODE_CLASSNODE_MODULENODE_SCLASSNODE_COLON2NODE_COLON3NODE_DOT2NODE_DOT3NODE_FLIP2NODE_FLIP3NODE_SELFNODE_NILNODE_TRUENODE_FALSENODE_ERRINFONODE_DEFINEDNODE_POSTEXENODE_DSYMNODE_ATTRASGNNODE_LAMBDANODE_ARYPTNNODE_HSHPTNunknown node: %dnokeykeyreqkeyrestconstant-from:$%c:$%d<is:%td>mid:%liargc:%dkw:[%li]ARGS_SPLATARGS_BLOCKARGARGS_SIMPLEBLOCKISEQTAILCALLKWARGKW_SPLATOPT_SEND<calldata!%li><cdhash><funcptr><builtin!%s/%d>CbrCliBrBcCrCcReCaEnClLi%04zu %-*s %*s(%4d)[%s%s%s%s%s%s%s%s%s%s%s]BlockKwrestPostRestArg== disasm: #<ISeq: uninitialized> (catch: %s)== catch table
| unknown catch type: %dOpt=%ld%s%s%s%s%s%s[%2d] <%s>translate<main>unsupported type: :%liInstructionSequencedisasmdisassembleto_binaryload_from_binaryload_from_binary_extra_database_labeltrace_pointscompilecompile_filecompile_optioncompile_option=label_wrappertmpsetT_IMEMO/isequninitialized InstructionSequencetrace_instrument: invalid insn address: %pCompile option must be Hash/true/false/nilYARVInstructionSequence/SimpleDataFormat#<ISeq:%li@%li:%d (%d,%d)-(%d,%d)>| catch type: %-6s st: %04d ed: %04d sp: %04d cont: %04d
|------------------------------------------------------------------------
local table (size: %d, argc: %d [opts: %d, rest: %d, post: %d, block: %d, kw: %d@%d, kwrest: %d])
rb_vm_insn_addr2insn: invalid insn address: %pE��������V��g��x����)��m����������������a����������m����������|��������R��<��m��������,��]�����]��x��]�����]�����]�����M��A��5��)����������������������������������u��i��]��Q��E��9��-��!����	����������������������������y��m��a��U��I��=��1��%����
����������������������������}��q��e��Y��M��A��5��)����������������������������������u��i��]��Q��E��9��-��$������	���������������������������Y�������(�������������(������������������X�������x�����������h����X����H����8����(�������nilinstance-variablelocal-variableglobal-variableclass variableconstantmethodyieldsuperselftruefalseassignmentexpressionnopgetlocalsetlocalgetblockparamsetblockparamgetblockparamproxygetspecialsetspecialgetinstancevariablesetinstancevariablegetclassvariablesetclassvariablegetconstantsetconstantgetglobalsetglobalputnilputselfputobjectputspecialobjectputstringconcatstringstostringfreezestringtoregexpinternnewarraynewarraykwsplatduparrayduphashexpandarrayconcatarraysplatarraynewhashnewrangepopdupdupnswapreversetopnsetnadjuststackdefinedcheckmatchcheckkeywordchecktypedefineclassdefinemethoddefinesmethodsendopt_send_without_blockopt_str_freezeopt_nil_popt_str_uminusopt_newarray_maxopt_newarray_mininvokesuperinvokeblockleavethrowjumpbranchifbranchunlessbranchnilopt_getinlinecacheopt_setinlinecacheonceopt_case_dispatchopt_plusopt_minusopt_multopt_divopt_modopt_eqopt_neqopt_ltopt_leopt_gtopt_geopt_ltltopt_andopt_oropt_arefopt_asetopt_aset_withopt_aref_withopt_lengthopt_sizeopt_empty_popt_succopt_notopt_regexpmatch2opt_call_c_functioninvokebuiltinopt_invokebuiltin_delegateopt_invokebuiltin_delegate_leavegetlocal_WC_0getlocal_WC_1setlocal_WC_0setlocal_WC_1putobject_INT2FIX_0_putobject_INT2FIX_1_trace_noptrace_getlocaltrace_setlocaltrace_getblockparamtrace_setblockparamtrace_getblockparamproxytrace_getspecialtrace_setspecialtrace_getinstancevariabletrace_setinstancevariabletrace_getclassvariabletrace_setclassvariabletrace_getconstanttrace_setconstanttrace_getglobaltrace_setglobaltrace_putniltrace_putselftrace_putobjecttrace_putspecialobjecttrace_putstringtrace_concatstringstrace_tostringtrace_freezestringtrace_toregexptrace_interntrace_newarraytrace_newarraykwsplattrace_duparraytrace_duphashtrace_expandarraytrace_concatarraytrace_splatarraytrace_newhashtrace_newrangetrace_poptrace_duptrace_dupntrace_swaptrace_reversetrace_topntrace_setntrace_adjuststacktrace_definedtrace_checkmatchtrace_checkkeywordtrace_checktypetrace_defineclasstrace_definemethodtrace_definesmethodtrace_sendtrace_opt_send_without_blocktrace_opt_str_freezetrace_opt_nil_ptrace_opt_str_uminustrace_opt_newarray_maxtrace_opt_newarray_mintrace_invokesupertrace_invokeblocktrace_leavetrace_throwtrace_jumptrace_branchiftrace_branchunlesstrace_branchniltrace_opt_getinlinecachetrace_opt_setinlinecachetrace_oncetrace_opt_case_dispatchtrace_opt_plustrace_opt_minustrace_opt_multtrace_opt_divtrace_opt_modtrace_opt_eqtrace_opt_neqtrace_opt_lttrace_opt_letrace_opt_gttrace_opt_getrace_opt_ltlttrace_opt_andtrace_opt_ortrace_opt_areftrace_opt_asettrace_opt_aset_withtrace_opt_aref_withtrace_opt_lengthtrace_opt_sizetrace_opt_empty_ptrace_opt_succtrace_opt_nottrace_opt_regexpmatch2trace_opt_call_c_functiontrace_invokebuiltintrace_opt_invokebuiltin_delegatetrace_opt_invokebuiltin_delegate_leavetrace_getlocal_WC_0trace_getlocal_WC_1trace_setlocal_WC_0trace_setlocal_WC_1trace_putobject_INT2FIX_0_trace_putobject_INT2FIX_1_
$2EP[o�����������)29BR[co{����������������
4CM\m~�����������
 (07?FMT[dls|���������� AO]ky�������.Hby��������&:I\kx�������� +6DOZlz�������$4I`w��������		"	-	E	T	d	s	�	�	�	�	�	�	�	�	�	�	

&
:
N
_
n
�
�
�
�
�
�
*>Rfz�LNLNLNLNLNNNNIAIAIIIIGGVNVNVNNNNVVNNVNNNNNNNNVVNLLNISNISISCSCVCCVCNNCSCNOOOOOKKSTHOCCCCCCCCCCCCCCCCCVCVCCCCCCCFRRNRNLLLLLNLNLNLNLNNNNIAIAIIIIGGVNVNVNNNNVVNNVNNNNNNNNVVNLLNISNISISCSCVCCVCNNCSCNOOOOOKKSTHOCCCCCCCCCCCCCCCCCVCVCCCCCCCFRRNRNLLLL

!#%'()+-/12478:<>@CDFHJKLNOQSUW[]`bfiloqtvy{}����������������������������������������������������������
"#%')*+-.0246:<?AEHKNPSUXZ\_abdfhjloqtwy{}�����������������������������&.o%s is already registeredcannot load such file<top (required)>./cannot infer basepath$-I$LOAD_PATHresolve_feature_path$"$LOADED_FEATURESrequirerequire_relativeautoloadautoload?$LOADED_FEATURES is frozen; cannot append featureCan not set autoload on singleton classloading in progress, circular require considered harmful - %srb_require_safe will be removed in Ruby 3.0$:.so.omarshal data too shortinstance of IO neededMarshal.load reentered at %s%li does not refer to module%li does not refer to classcan't dump anonymous %s % li% li can't be referred tobad symbolMarshal.dump reentered at %sdump format error (unlinked)singleton can't be loadednan-infclass %li not a structdump format error_load_datadump format error(0x%x)dump format error (bad link)%li is not enc_capableno allocatorlong too big to dumpe%dexceed depth limitcan't dump internal %s_dump() must return stringarray modified during dump_dump_datacan't dump %lican't dump anonymous ID %ldsingleton can't be dumpedMarshal_allocrestoreMAJOR_VERSIONMINOR_VERSIONload_argdump_arginstance variable removed from %li instancecan't dump non-ascii %s name % lilong too big for this architecture (size 8, given %d)%li#%s returned same class instanceprepended class %li differs from class %lidump format error (user class)struct %li not compatible (struct size differs)struct %li not compatible (:%li for :%li)class %li needs to have method `_load'instance of %li needs to have method `marshal_load'class %li needs to have instance method `_load_data'can't override instance variable of class/module `%li'can't override instance variable of class `%li'can't override instance variable of module `%li'dump format error for symbol(0x%x)dump format error (symlink with encoding)ruby2_keywords flag is given but %li is not a Hashincompatible marshal file format (can't be read)
	format version %d.%d required; %d.%d givenincompatible marshal file format (can be read)
	format version %d.%d required; %d.%d givensingleton class can't be dumpedtoo big Bignum can't be dumpedcan't dump hash with default procno _dump_data is defined for class %liinstance variable `E' on class %li is not dumpedinstance variable `K' on class %li is not dumpedinstance variable added to %li instance�W�zY�zY�zY�zY�zY�zY�zY�zY�zY�zY�zY�zY��V�V�zY�zY�zY�zY�zY�zY�zY�zY�zY�pV�PX�zY�zY�zY�zY�X�zY�zY�pX�zY�zY�T�zY�zY�PT�zY�zY�zY�S�zY�zY�zY�zY�zY��T��S��R�zY�zY�zY�zY�zY�PR�zY�zY�zY�zY�zY�zY�zY�R�(Q�P��O�zY�zY�N�zY�zY� N�pO�zY��N�zY�zY�zY�zY�zY�M�zY�zY�zY�zY�zY�PL�zY�PL�*w�tr�p�r��q�r��n�s�*q��r�go�*w�Fn�encodingNumerical argument is out of domain - "log"Numerical argument is out of domain - "acosh"Numerical argument is out of domain - "acos"Numerical argument is out of domain - "asin"Numerical argument is out of domain - "log2"Numerical argument is out of domain - "log10"Numerical argument is out of domain - "atanh"Numerical argument is out of domain - "gamma"Numerical argument is out of domain - "lgamma"Numerical argument is out of domain - "sqrt"Mathatan2acosasinatanacoshasinhatanhloglog2log10sqrtcbrtfrexpldexphypoterferfclgamma�?�?@@8@^@��@��@��@&A��KA��A���A��2�A(;L4B�uwsB�uw�B���7�Bs��6C�h0�{CZA���C Ƶ�;(Dl�YaRwND�9��B.�?�@�y�PD�?7@MJIT warning: %s/%sp%uu%lu%sfailed to remove "%s": %sStarting process: %sMJIT: Error in execv: %s-olink_o_to_so: link error: %din stop_workerLocking %sLocked %sUnlocked %sin mjit_copy_job_handlerin add_iseq_to_processmjit.cUnloading unit %d (calls=%lu)worst->handle != NULL_ruby_mjit__mjit%d#include ""
Waiting wakeup from GC/* %s@%s:%ld */

JIT failure: %s@%s:%ld -> %s-cFailed to generate so: %s-nodefaultlibs-nostdlibCreating precompiled headerin make_pchin worker dequeueGetting wakeup from clientin jit func replacein valid_class_serial_pin MJIT copy job waitmjit_gc_start_hookmjit_gc_exit_hookmjit_update_referencesmjit_free_iseqin mjit_cont_newbody->jit_unit != NULLJIT recompile: %s@%s:%din rb_mjit_recompile_iseq/usr/bin/gccMJIT: CC defaults to %s-save-tempsTMPDIRTMP/tmpMJIT: tmp_dir is %sMJIT_SEARCH_BUILD_DIRNo MJIT_HEADERNon-file header file path: %sLD_PRELOADPRELOADENV(LD_PRELOAD)=%sMJIT_HEADER: %sCannot access header file: %s.h.gch_ruby_mjit_hMJIT is not enabledFailed to resume MJIT workerStopping worker threadWaiting wakeup from make_pchSuccessful MJIT finishmjit_markmjit_mark rb_gc_markin mjit_remove_class_serial-lgcc-nostartfiles-m64-L/opt/alt/ruby27/lib64-shared-Wfatal-errors-fPIC-pipe-O3-ggdb3failed to close handle for u%d: %sMJIT: Failed to open a null device: %s[%d] waitpid(%lu): %s (SIGCHLD=%d,%u)
Failure in MJIT thread initialization
Sending cancel signal to workerin rb_mjit_wait_call to set jit_functimed out to wait for JIT finishin rb_mjit_wait_call for a client wakeupunit->iseq != NULL && unit->handle != NULLNo units can be unloaded -- incremented max-cache-size to %d for --jit-waitToo many JIT code -- %d units unloadedSending wakeup signal to workers in mjit_add_iseq_to_processin compact_all_jit_code to keep .o filesfailure in loading code from compacted '%s': %sin compact_all_jit_code to read listskipping to reload '%s' from '%s': %sJIT compaction (%.1fms): Compacted %d methods -> %sJIT compaction failure (%.1fms): Failed to compact methodsFailed to fopen '%s', giving up JIT for it (%s)before mjit_compile to wait GC finishstart compilation: %s@%s:%ld -> %safter mjit_compile to wakeup client for GCSending wakeup signal to client in a mjit-worker for GCin worker to wakeup client for GCcompile_c_to_o: compile error: %dfailed to allocate memory to remember '%s' (%s), removing it...failure in loading code from '%s': %sJIT success (%.1fms): %s@%s:%ld -> %smaking precompiled header failed on forming argsMaking precompiled header failed on compilation. Stopping MJIT worker...in worker to update worker_stoppedSending wakeup signal to client in a mjit-workerin mjit_copy_cache_from_main_threadWaiting wakeup from a worker for GCGetting wakeup from a worker for GCSending wakeup signal to workers after GCNon-absolute header file path: %sUnsafe header file: uid=%ld mode=%#o %sFailure in MJIT header file name initialization
in mjit_pause for a worker wakeupin mjit_finish to wakeup from pch-Wl,-rpath=/opt/alt/ruby27/lib64/opt/alt/ruby27/include/rb_mjit_min_header-2.7.8.hrb_mjit_iseq_compile_infounload_units.so.gch.so.o.c��.A      case %d:
stack + (stack_size - (num))STACK_ADDR_FROM_TOP(num)stack + (stack_size - (cnt))STACK_ADDR_FROM_TOP(cnt)stack + (stack_size - (1))STACK_ADDR_FROM_TOP(1)(stack + stack_size)GET_SP()stack + (stack_size - (n))STACK_ADDR_FROM_TOP(n)TOPN(i)TOPN(n)TOPN(0)STACK_ADDR_FROM_TOP(bf->argc)
label_%d: /* %s */
        /* none */
    MAYBE_UNUSED(VALUE) val;
    idx = (lindex_t)0x%lx;    level = (rb_num_t)0x%lx;    val = stack[%d];
                    break;
                  default:
                }
            else {
                val = Qnil;
    key = (rb_num_t)0x%lx;    type = (rb_num_t)0x%lx;    MAYBE_UNUSED(VALUE) obj;
    obj = stack[%d];
    VALUE obj = GET_SELF();
    VALUE val;
        goto ivar_cancel;
    MAYBE_UNUSED(ID) id;
    MAYBE_UNUSED(IVC) ic;
    id = (ID)0x%lx;    ic = (IVC)0x%lx;    VALUE val = stack[%d];
    klass = stack[%d];
    allow_nil = stack[%d];
    cbase = stack[%d];
    entry = (GENTRY)0x%lx;        val = GET_SELF();
    val = (VALUE)0x%lx;        /* */
    str = (VALUE)0x%lx;    num = (rb_num_t)0x%lx;    str = stack[%d];
    stack[%d] = str;
    opt = (rb_num_t)0x%lx;    cnt = (rb_num_t)0x%lx;        rb_ary_clear(ary);
    stack[%d] = sym;
    ary = (VALUE)0x%lx;    hash = (VALUE)0x%lx;    MAYBE_UNUSED(VALUE) ary;
    flag = (rb_num_t)0x%lx;    ary = stack[%d];
    ary1 = stack[%d];
    ary2 = stack[%d];
    stack[%d] = ary;
    flag = (VALUE)0x%lx;    stack[%d] = obj;
        if (num) {
    low = stack[%d];
    high = stack[%d];
        (void)val;
        val1 = val2 = val;
    stack[%d] = val2;
    stack[%d] = val1;
    n = (rb_num_t)0x%lx;        void *dst = %s;
        void *src = %s;
        rb_num_t i;
        VALUE *sp = %s;
            VALUE v1 = %s;
            sp[i] = v1;
            %s = v0;
        val = %s;
        %s = val;
    obj = (VALUE)0x%lx;    needstr = (VALUE)0x%lx;    v = stack[%d];
    target = stack[%d];
    pattern = stack[%d];
    stack[%d] = result;
    MAYBE_UNUSED(VALUE) ret;
    stack[%d] = ret;
    MAYBE_UNUSED(ISEQ) iseq;
    iseq = (ISEQ)0x%lx;        goto send_cancel;
        calling.argc = %d;
        {
            VALUE v;
            stack[%d] = v;
    cd = (CALL_DATA)0x%lx;    blockiseq = (ISEQ)0x%lx;        if (val == Qundef) {
#if OPT_CALL_THREADED_CODE
#else
#endif
            goto cancel;
    recv = stack[%d];
    return stack[0];
            return 0;
            return val;
    throwobj = stack[%d];
        /* unreachable */
    dst = (OFFSET)0x%lx;            goto label_%d;
        if (RTEST(val)) {
        if (!RTEST(val)) {
        if (NIL_P(val)) {
    MAYBE_UNUSED(IC) ic;
    ic = (IC)0x%lx;            val = ic->value;
            stack[%d] = val;
    MAYBE_UNUSED(ISE) ise;
    ise = (ISE)0x%lx;    MAYBE_UNUSED(VALUE) key;
    hash = (CDHASH)0x%lx;    key = stack[%d];
        if (dst) {
    switch (dst) {
      case %lu:
        goto label_%lu;
    cd_eq = (CALL_DATA)0x%lx;    set = stack[%d];
    key = (VALUE)0x%lx;        if (tmp != Qundef) {
            val = tmp;
#ifndef MJIT_HEADER
            PUSH(val);
    obj2 = stack[%d];
    obj1 = stack[%d];
    bf = (RB_BUILTIN)0x%lx;    index = (rb_num_t)0x%lx;        /* leave fastpath */
    level = 0;
    level = 1;
    val = INT2FIX(0);
    val = INT2FIX(1);
    VALUE stack[%d];
      case %ld:
        goto label_%ld;

cancel:
    reg_cfp->pc = orig_pc;
    reg_cfp->sp = orig_sp;

    reg_cfp = ec->cfp;

send_cancel:

ivar_cancel:
    return Qundef;
#undef OPT_CHECKED_RUN
#define OPT_CHECKED_RUN 0


} // end of %s
*(stack + (stack_size - (i) - 1))*(stack + (stack_size - (n) - 1))*(stack + (stack_size - (0) - 1))stack + (stack_size - (bf->argc))    MAYBE_UNUSED(unsigned int) stack_size = %u;
    MAYBE_UNUSED(lindex_t) idx;
    MAYBE_UNUSED(rb_num_t) level;
        val = *(vm_get_ep(GET_EP(), level) - idx);
        RB_DEBUG_COUNTER_INC(lvar_get);
        (void)RB_DEBUG_COUNTER_INC_IF(lvar_get_dynamic, level > 0);
        vm_env_write(vm_get_ep(GET_EP(), level), -(int)idx, val);
        RB_DEBUG_COUNTER_INC(lvar_set);
        (void)RB_DEBUG_COUNTER_INC_IF(lvar_set_dynamic, level > 0);
        const VALUE *ep = vm_get_ep(GET_EP(), level);
        VM_ASSERT(VM_ENV_LOCAL_P(ep));
        if (!VM_ENV_FLAGS(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM)) {
            val = rb_vm_bh_to_procval(ec, VM_ENV_BLOCK_HANDLER(ep));
            vm_env_write(ep, -(int)idx, val);
            VM_ENV_FLAGS_SET(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM);
            val = *(ep - idx);
            RB_DEBUG_COUNTER_INC(lvar_get);
            (void)RB_DEBUG_COUNTER_INC_IF(lvar_get_dynamic, level > 0);
            VALUE block_handler = VM_ENV_BLOCK_HANDLER(ep);
            if (block_handler) {
                switch (vm_block_handler_type(block_handler)) {
                  case block_handler_type_iseq:
                  case block_handler_type_ifunc:
                    val = rb_block_param_proxy;
                  case block_handler_type_symbol:
                    val = rb_sym_to_proc(VM_BH_TO_SYMBOL(block_handler));
                    goto INSN_LABEL(set_%d);
                  case block_handler_type_proc:
                    val = VM_BH_TO_PROC(block_handler);
                    VM_UNREACHABLE(getblockparamproxy);
              INSN_LABEL(set_%d):
                vm_env_write(ep, -(int)idx, val);
                VM_ENV_FLAGS_SET(ep, VM_FRAME_FLAG_MODIFIED_BLOCK_PARAM);
    MAYBE_UNUSED(rb_num_t) key, type;
        val = vm_getspecial(ec, GET_LEP(), key, type);
    if (UNLIKELY(!mjit_call_p)) {
        reg_cfp->sp = vm_base_ptr(reg_cfp) + %d;
        RB_DEBUG_COUNTER_INC(mjit_cancel_invalidate_all);
    MAYBE_UNUSED(rb_num_t) key;
        lep_svar_set(ec, GET_LEP(), key, obj);
    const rb_serial_t ic_serial = (rb_serial_t)%llu;
    const st_index_t index = %zu;
    if (LIKELY(RB_TYPE_P(obj, T_OBJECT) && ic_serial == RCLASS_SERIAL(RBASIC(obj)->klass) && index < ROBJECT_NUMIV(obj) && (val = ROBJECT_IVPTR(obj)[index]) != Qundef)) {
        reg_cfp->pc = original_body_iseq + %d;
        val = vm_getinstancevariable(GET_SELF(), id, ic);
    if (LIKELY(RB_TYPE_P(obj, T_OBJECT) && ic_serial == RCLASS_SERIAL(RBASIC(obj)->klass) && index < ROBJECT_NUMIV(obj) && !RB_OBJ_FROZEN(obj))) {
        VALUE *ptr = ROBJECT_IVPTR(obj);
        RB_OBJ_WRITE(obj, &ptr[index], val);
        vm_setinstancevariable(GET_SELF(), id, val, ic);
        val = rb_cvar_get(vm_get_cvar_base(vm_get_cref(GET_EP()), GET_CFP()), id);
        vm_ensure_not_refinement_module(GET_SELF());
        rb_cvar_set(vm_get_cvar_base(vm_get_cref(GET_EP()), GET_CFP()), id, val);
    MAYBE_UNUSED(VALUE) allow_nil, klass, val;
        val = vm_get_ev_const(ec, klass, id, allow_nil == Qtrue, 0);
    MAYBE_UNUSED(VALUE) cbase, val;
        vm_check_if_namespace(cbase);
        rb_const_set(cbase, id, val);
    MAYBE_UNUSED(GENTRY) entry;
        struct rb_global_entry *gentry = (void *)entry;
        val = rb_gvar_get(gentry);
        rb_gvar_set(gentry, val);
    MAYBE_UNUSED(rb_num_t) value_type;
    value_type = (rb_num_t)0x%lx;        enum vm_special_object_type type;
        type = (enum vm_special_object_type)value_type;
        val = vm_get_special_object(GET_EP(), type);
    MAYBE_UNUSED(VALUE) str, val;
        val = rb_str_resurrect(str);
    MAYBE_UNUSED(rb_num_t) num;
        val = rb_str_concat_literals(num, %s);
        val = rb_obj_as_string_result(str, val);
    MAYBE_UNUSED(VALUE) debug_info, str;
    debug_info = (VALUE)0x%lx;        vm_freezestring(str, debug_info);
    MAYBE_UNUSED(rb_num_t) cnt, opt;
        const VALUE ary = rb_ary_tmp_new_from_values(0, cnt, %s);
        val = rb_reg_new_ary(ary, (int)opt);
    MAYBE_UNUSED(VALUE) str, sym;
        sym = rb_str_intern(str);
        val = rb_ary_new4(num, %s);
        if (RHASH_EMPTY_P(*%s)) {
            val = rb_ary_new4(num-1, %s);
            val = rb_ary_new4(num, %s);
    MAYBE_UNUSED(VALUE) ary, val;
        RUBY_DTRACE_CREATE_HOOK(ARRAY, RARRAY_LEN(ary));
        val = rb_ary_resurrect(ary);
    MAYBE_UNUSED(VALUE) hash, val;
        RUBY_DTRACE_CREATE_HOOK(HASH, RHASH_SIZE(hash) << 1);
        val = rb_hash_resurrect(hash);
    MAYBE_UNUSED(rb_num_t) flag, num;
        vm_expandarray(%s, ary, num, (int)flag);
    MAYBE_UNUSED(VALUE) ary, ary1, ary2;
        ary = vm_concat_array(ary1, ary2);
    MAYBE_UNUSED(VALUE) ary, flag, obj;
        obj = vm_splat_array(flag, ary);
        RUBY_DTRACE_CREATE_HOOK(HASH, num);
        val = rb_hash_new_with_size(num / 2);
            rb_hash_bulk_insert(num, %s, val);
    MAYBE_UNUSED(VALUE) high, low, val;
    MAYBE_UNUSED(rb_num_t) flag;
        val = rb_range_new(low, high, (int)flag);
    MAYBE_UNUSED(VALUE) val, val1, val2;
    MAYBE_UNUSED(rb_num_t) n;
        MEMCPY(dst, src, VALUE, n);
    MAYBE_UNUSED(VALUE) obj, val;
        for (i=0; i<n/2; i++) {
            VALUE v0 = sp[i];
    MAYBE_UNUSED(VALUE) needstr, obj, v, val;
    MAYBE_UNUSED(rb_num_t) op_type;
    op_type = (rb_num_t)0x%lx;        val = vm_defined(ec, GET_CFP(), op_type, obj, needstr, v);
    MAYBE_UNUSED(VALUE) pattern, result, target;
        result = vm_check_match(ec, target, pattern, flag);
    MAYBE_UNUSED(lindex_t) keyword_index, kw_bits_index;
    kw_bits_index = (lindex_t)0x%lx;    keyword_index = (lindex_t)0x%lx;        ret = vm_check_keyword(kw_bits_index, keyword_index, GET_EP());
    MAYBE_UNUSED(VALUE) ret, val;
    MAYBE_UNUSED(rb_num_t) type;
        ret = (TYPE(val) == (int)type) ? Qtrue : Qfalse;
    reg_cfp->sp = vm_base_ptr(reg_cfp) + %ld;
        vm_define_method(ec, Qnil, id, (VALUE)iseq, FALSE);
        vm_define_method(ec, obj, id, (VALUE)iseq, TRUE);
    if (UNLIKELY(GET_GLOBAL_METHOD_STATE() != %llu ||
        RCLASS_SERIAL(CLASS_OF(stack[%d])) != %llu)) {
    *(reg_cfp->sp + %ld) = stack[%ld];
        VALUE orig_self = reg_cfp->self;
        reg_cfp->self = stack[%d];
        stack[%d] = _mjit_inlined_%d(ec, reg_cfp, orig_self, original_iseq);
        reg_cfp->self = orig_self;
        struct rb_calling_info calling;
        calling.block_handler = vm_caller_setup_arg_block(ec, reg_cfp, (CALL_INFO)0x%lx, (rb_iseq_t *)0x%lx, FALSE);
        calling.recv = stack[%d];
            vm_call_iseq_setup_normal(ec, reg_cfp, &calling, (const rb_callable_method_entry_t *)0x%lx, 0, %d, %d);
            VM_ENV_FLAGS_SET(ec->cfp->ep, VM_FRAME_FLAG_FINISH);
            v = vm_exec(ec, TRUE);
            if ((v = mjit_exec(ec)) == Qundef) {
                VM_ENV_FLAGS_SET(ec->cfp->ep, VM_FRAME_FLAG_FINISH);
                v = vm_exec(ec, FALSE);
    MAYBE_UNUSED(CALL_DATA) cd;
    MAYBE_UNUSED(ISEQ) blockiseq;
        VALUE bh = vm_caller_setup_arg_block(ec, GET_CFP(), &cd->ci, blockiseq, false);
        val = vm_sendish(ec, GET_CFP(), cd, bh, vm_search_method_wrap);
    UNREACHABLE_RETURN(Qundef);
        calling.block_handler = VM_BLOCK_HANDLER_NONE;
        VALUE bh = VM_BLOCK_HANDLER_NONE;
        val = vm_opt_str_freeze(str, BOP_FREEZE, idFreeze);
            PUSH(rb_str_resurrect(str));
            reg_cfp->sp = vm_base_ptr(reg_cfp) + %d;
            reg_cfp->pc = original_body_iseq + %d;
            RB_DEBUG_COUNTER_INC(mjit_cancel_opt_insn);
    MAYBE_UNUSED(VALUE) recv, val;
        val = vm_opt_nil_p(cd, recv);
        val = vm_opt_str_freeze(str, BOP_UMINUS, idUMinus);
        val = vm_opt_newarray_max(num, %s);
        val = vm_opt_newarray_min(num, %s);
        VALUE bh = vm_caller_setup_arg_block(ec, GET_CFP(), &cd->ci, blockiseq, true);
        val = vm_sendish(ec, GET_CFP(), cd, bh, vm_search_super_method);
        if (UNLIKELY(cd->cc.call != vm_invokeblock_i)) {
            cd->cc.call = vm_invokeblock_i; // check before setting to avoid CoW
        val = vm_sendish(ec, GET_CFP(), cd, bh, vm_search_invokeblock);
MJIT warning: Unexpected JIT stack_size on leave: %d
        if (OPT_CHECKED_RUN) {
            const VALUE *const bp = vm_base_ptr(GET_CFP());
            if (GET_SP() != bp) {
                vm_stack_consistency_error(ec, GET_CFP(), bp);
        if (vm_pop_frame(ec, GET_CFP(), GET_EP())) {
            rb_ec_thread_ptr(ec)->retval = val;
    MAYBE_UNUSED(VALUE) throwobj, val;
    MAYBE_UNUSED(rb_num_t) throw_state;
    throw_state = (rb_num_t)0x%lx;        val = vm_throw(ec, GET_CFP(), throw_state, throwobj);
        THROW_EXCEPTION(val);
    MAYBE_UNUSED(OFFSET) dst;
        RUBY_VM_CHECK_INTS(ec);
            RUBY_VM_CHECK_INTS(ec);
        if (vm_ic_hit_p(ic, GET_EP())) {
        vm_ic_update(ic, val, GET_EP());
        val = vm_once_dispatch(ec, iseq, ise);
    MAYBE_UNUSED(CDHASH) hash;
    MAYBE_UNUSED(OFFSET) else_offset;
    else_offset = (OFFSET)0x%lx;        OFFSET dst = vm_case_dispatch(hash, else_offset, key);
    MAYBE_UNUSED(VALUE) obj, recv, val;
        val = vm_opt_plus(recv, obj);
        val = vm_opt_minus(recv, obj);
        val = vm_opt_mult(recv, obj);
        val = vm_opt_div(recv, obj);
        val = vm_opt_mod(recv, obj);
        val = opt_eq_func(recv, obj, cd);
    MAYBE_UNUSED(CALL_DATA) cd, cd_eq;
        val = vm_opt_neq(cd, cd_eq, recv, obj);
        val = vm_opt_lt(recv, obj);
        val = vm_opt_le(recv, obj);
        val = vm_opt_gt(recv, obj);
        val = vm_opt_ge(recv, obj);
        val = vm_opt_ltlt(recv, obj);
        val = vm_opt_and(recv, obj);
        val = vm_opt_or(recv, obj);
        val = vm_opt_aref(recv, obj);
    MAYBE_UNUSED(VALUE) obj, recv, set, val;
        val = vm_opt_aset(recv, obj, set);
    MAYBE_UNUSED(VALUE) key, recv, val;
        VALUE tmp = vm_opt_aset_with(recv, key, val);
            %s = rb_str_resurrect(key);
        val = vm_opt_aref_with(recv, key);
            PUSH(rb_str_resurrect(key));
        val = vm_opt_length(recv, BOP_LENGTH);
        val = vm_opt_length(recv, BOP_SIZE);
        val = vm_opt_empty_p(recv);
        val = vm_opt_succ(recv);
        val = vm_opt_not(cd, recv);
    MAYBE_UNUSED(VALUE) obj1, obj2, val;
        val = vm_opt_regexpmatch2(obj2, obj1);
    MAYBE_UNUSED(RB_BUILTIN) bf;
        ret = vm_invoke_builtin(ec, reg_cfp, bf, %s);
    MAYBE_UNUSED(rb_num_t) index;
        ret = vm_invoke_builtin_delegate(ec, reg_cfp, bf, (unsigned int)index);
        val = vm_invoke_builtin_delegate(ec, reg_cfp, bf, (unsigned int)index);
        /* TracePoint/return fallbacks this insn to opt_invokebuiltin_delegate */
MJIT warning: Skipped to compile unsupported instruction: %s
MJIT warning: JIT stack assumption is not the same between branches (%d != %u)
MJIT warning: JIT stack size (%d) exceeded its max size (%d)
    VALUE *stack = reg_cfp->sp;
    static const rb_iseq_t *original_iseq = (const rb_iseq_t *)0x%lx;
    static const VALUE *const original_body_iseq = (VALUE *)0x%lx;
    switch (reg_cfp->pc - reg_cfp->iseq->body->iseq_encoded) {
    RB_DEBUG_COUNTER_INC(mjit_cancel);
    rb_mjit_iseq_compile_info(original_iseq->body)->disable_inlining = true;
    rb_mjit_recompile_iseq(original_iseq);
    const VALUE current_pc = reg_cfp->pc;
    const VALUE current_sp = reg_cfp->sp;
    struct rb_calling_info calling;
    calling.block_handler = VM_BLOCK_HANDLER_NONE;
    calling.recv = reg_cfp->self;
    reg_cfp->self = orig_self;
    vm_call_iseq_setup_normal(ec, reg_cfp, &calling, (const rb_callable_method_entry_t *)0x%lx, 0, %d, %d);

    reg_cfp->pc = current_pc;
    reg_cfp->sp = current_sp;
    *(vm_base_ptr(reg_cfp) + %d) = stack[%d];
    return vm_exec(ec, ec->cfp);
    RB_DEBUG_COUNTER_INC(mjit_cancel_send_inline);
    rb_mjit_iseq_compile_info(original_iseq->body)->disable_send_cache = true;
    RB_DEBUG_COUNTER_INC(mjit_cancel_ivar_inline);
    rb_mjit_iseq_compile_info(original_iseq->body)->disable_ivar_cache = true;
JIT inline: %s@%s:%d => %s@%s:%d
ALWAYS_INLINE(static VALUE _mjit_inlined_%d(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VALUE orig_self, const rb_iseq_t *original_iseq));
static inline VALUE
_mjit_inlined_%d(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, const VALUE orig_self, const rb_iseq_t *original_iseq)
{
    const VALUE *orig_pc = reg_cfp->pc;
    const VALUE *orig_sp = reg_cfp->sp;

} /* end of _mjit_inlined_%d */

VALUE
%s(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp)
{
���a������!�� ��������Ŧ�����Z��=��;����ͳ�����Ѷ�:��r��Q��h��������]��B������������%����S��s���������� ��q��i����������F��8s�Bu�y�}�Q�QU�lW�<Y�[�\�]��`��b�od�f��h�k�om�n�p���	��Y������I��������Q����A����1�!�%�(�a,�0�5�Q9�=����A��C�E��I�[K��L�uN�P���m��n�m�m�m�m�m�m�m�m��n��n��n��n��n�m��n��n�m��n��n��n��n��n�m�m�m�m�m��n��n��n��n��n��n��n��n�m�m��n��n�m�m�m�m�m��n��n��n�m�m�m�m�m�m�m�m�m�m��n��n�m��n��n��n��n�m�m��n��n��n��n��n��n�m��n��n�m�m�m�m��n��n��n��n��n�m�m�m�m�m��n��n��n��n��n��n�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�nopgetlocalsetlocalgetblockparamsetblockparamgetblockparamproxygetspecialsetspecialgetinstancevariablesetinstancevariablegetclassvariablesetclassvariablegetconstantsetconstantgetglobalsetglobalputnilputselfputobjectputspecialobjectputstringconcatstringstostringfreezestringtoregexpinternnewarraynewarraykwsplatduparrayduphashexpandarrayconcatarraysplatarraynewhashnewrangepopdupdupnswapreversetopnsetnadjuststackdefinedcheckmatchcheckkeywordchecktypedefineclassdefinemethoddefinesmethodsendopt_send_without_blockopt_str_freezeopt_nil_popt_str_uminusopt_newarray_maxopt_newarray_mininvokesuperinvokeblockleavethrowjumpbranchifbranchunlessbranchnilopt_getinlinecacheopt_setinlinecacheonceopt_case_dispatchopt_plusopt_minusopt_multopt_divopt_modopt_eqopt_neqopt_ltopt_leopt_gtopt_geopt_ltltopt_andopt_oropt_arefopt_asetopt_aset_withopt_aref_withopt_lengthopt_sizeopt_empty_popt_succopt_notopt_regexpmatch2opt_call_c_functioninvokebuiltinopt_invokebuiltin_delegateopt_invokebuiltin_delegate_leavegetlocal_WC_0getlocal_WC_1setlocal_WC_0setlocal_WC_1putobject_INT2FIX_0_putobject_INT2FIX_1_trace_noptrace_getlocaltrace_setlocaltrace_getblockparamtrace_setblockparamtrace_getblockparamproxytrace_getspecialtrace_setspecialtrace_getinstancevariabletrace_setinstancevariabletrace_getclassvariabletrace_setclassvariabletrace_getconstanttrace_setconstanttrace_getglobaltrace_setglobaltrace_putniltrace_putselftrace_putobjecttrace_putspecialobjecttrace_putstringtrace_concatstringstrace_tostringtrace_freezestringtrace_toregexptrace_interntrace_newarraytrace_newarraykwsplattrace_duparraytrace_duphashtrace_expandarraytrace_concatarraytrace_splatarraytrace_newhashtrace_newrangetrace_poptrace_duptrace_dupntrace_swaptrace_reversetrace_topntrace_setntrace_adjuststacktrace_definedtrace_checkmatchtrace_checkkeywordtrace_checktypetrace_defineclasstrace_definemethodtrace_definesmethodtrace_sendtrace_opt_send_without_blocktrace_opt_str_freezetrace_opt_nil_ptrace_opt_str_uminustrace_opt_newarray_maxtrace_opt_newarray_mintrace_invokesupertrace_invokeblocktrace_leavetrace_throwtrace_jumptrace_branchiftrace_branchunlesstrace_branchniltrace_opt_getinlinecachetrace_opt_setinlinecachetrace_oncetrace_opt_case_dispatchtrace_opt_plustrace_opt_minustrace_opt_multtrace_opt_divtrace_opt_modtrace_opt_eqtrace_opt_neqtrace_opt_lttrace_opt_letrace_opt_gttrace_opt_getrace_opt_ltlttrace_opt_andtrace_opt_ortrace_opt_areftrace_opt_asettrace_opt_aset_withtrace_opt_aref_withtrace_opt_lengthtrace_opt_sizetrace_opt_empty_ptrace_opt_succtrace_opt_nottrace_opt_regexpmatch2trace_opt_call_c_functiontrace_invokebuiltintrace_opt_invokebuiltin_delegatetrace_opt_invokebuiltin_delegate_leavetrace_getlocal_WC_0trace_getlocal_WC_1trace_setlocal_WC_0trace_setlocal_WC_1trace_putobject_INT2FIX_0_trace_putobject_INT2FIX_1_
$2EP[o�����������)29BR[co{����������������
4CM\m~�����������
 (07?FMT[dls|���������� AO]ky�������.Hby��������&:I\kx�������� +6DOZlz�������$4I`w��������		"	-	E	T	d	s	�	�	�	�	�	�	�	�	�	�	

&
:
N
_
n
�
�
�
�
�
�
*>Rfz�(internal variable: 0x%li)    (null node)
| # statement sequence
| # example: foo; bar
statement #+- nd_head (%s%d):
nd_next (next block)+- %.*s:
| # if statement
nd_cond (condition expr)nd_body (then clause)nd_else (else clause)| # unless statement
| # case statement
nd_head (case expr)nd_body (when clauses)nd_body (in clauses)| # when clause
nd_head (when value)nd_body (when body)nd_next (next when clause)| # in clause
nd_head (in pattern)nd_body (in body)nd_next (next in clause)| # while statement
| # until statement
nd_cond (condition)nd_body (body)| # method call with block
| # example: 3.times { foo }
| # for statement
nd_iter (iteration receiver)nd_var (var)| # break statement
| # format: break [nd_stts]
| # example: break 1
| # next statement
| # format: next [nd_stts]
| # example: next 1
| # return statement
| # format: return [nd_stts]
| # example: return 1
nd_stts (value)| # redo statement
| # format: redo
| # example: redo
| # retry statement
| # format: retry
| # example: retry
| # begin statement
| # example: begin; 1; end
| # rescue clause
nd_head (body)nd_resq (rescue clause list)nd_else (rescue else clause)| # rescue clause (cont'd)
nd_args (rescue exceptions)nd_body (rescue clause)nd_head (next rescue clause)| # ensure clause
nd_ensr (ensure clause)| # && operator
| # example: foo && bar
| # || operator
| # example: foo || bar
nd_1st (left expr)nd_2nd (right expr)| # multiple assignment
| # example: a, b = foo
nd_value (rhsn)nd_head (lhsn)nd_args (splatn)+- %.*s: | # example: x = foo
nd_vid (local variable)nd_value (rvalue)| # example: @x = foo
nd_vid (instance variable)| # example: @@x = foo
nd_vid (class variable)| # example: $x = foo
nd_entry (global variable)| # constant declaration
| # example: X = foo
nd_else (extension)| # example: ary[1] += foo
nd_recv (receiver)nd_args->nd_head (index)nd_args->nd_body (rvalue)nd_next->nd_mid (operator)| # example: foo &&= bar
| # example: foo ||= bar
nd_head (variable)| # example: A::B ||= 1
nd_head (constant)| # method invocation
| # example: obj.foo(1)
nd_mid (method id)nd_args (arguments)| # example: foo + bar
| # function call
| # example: foo(1)
| # format: [nd_mid]
| # example: foo
| # safe method invocation
| # example: obj&.foo(1)
| # super invocation
| # format: super [nd_args]
| # example: super 1
| # format: super
| # example: super
| # list constructor
| # example: [1, 2, 3]
| # return arguments
| # example: return 1, 2, 3
nd_head (element)nd_next (next element)| # empty list constructor
| # format: []
| # example: []
| # keyword arguments
| # format: nd_head
| # example: a: 1, b: 2
| # hash constructor
| # format: { [nd_head] }
0 (keyword argument)1 (hash literal)nd_head (contents)| # yield invocation
| # format: yield [nd_head]
| # example: yield 1
nd_head (arguments)| # local variable reference
| # format: [nd_vid](lvar)
| # example: x
| # format: [nd_vid](dvar)
| # format: [nd_vid](ivar)
| # example: @x
| # constant reference
| # example: X
nd_vid (constant)| # class variable reference
| # format: [nd_vid](cvar)
| # example: @@x
| # format: [nd_entry](gvar)
| # example: $x
| # format: $[nd_nth]
| # example: $1, $2, ..
nd_nth (variable)| # example: $&, $`, $', $+
nd_lit (regexp)| # example: /foo/ =~ 'foo'
nd_recv (regexp (receiver))nd_value (string (argument))nd_args (named captures)| # example: 'foo' =~ /foo/
nd_recv (string (receiver))nd_value (regexp (argument))| # literal
| # format: [nd_lit]
| # example: 1, /foo/
| # string literal
| # example: 'foo'
| # xstring literal
| # example: `foo`
nd_lit (literal)| # once evaluation
| # format: [nd_body]
| # interpolation expression
nd_head (preceding array)nd_body (following array)nd_body (following element)| # splat argument
| # format: *[nd_head]
| # example: foo(*ary)
nd_head (splat'ed array)| # example: foo(x, &blk)
nd_head (other arguments)nd_body (block argument)| # method definition
nd_mid (method name)nd_defn (method definition)| # method alias statement
| # example: alias bar foo
nd_1st (new name)nd_2nd (old name)| # example: alias $y $x
nd_alias (new name)nd_orig (old name)| # method undef statement
| # format: undef [nd_undef]
| # example: undef foo
nd_undef (old name)| # class definition
nd_cpath (class path)nd_super (superclass)nd_body (class definition)| # module definition
nd_cpath (module path)nd_body (module definition)| # example: M::C
nd_mid (constant name)nd_head (receiver)| # format: ::[nd_mid]
| # example: ::Object
| # example: 1..5
| # example: 1...5
nd_beg (begin)nd_end (end)| # self
| # format: self
| # example: self
| # nil
| # format: nil
| # example: nil
| # true
| # format: true
| # example: true
| # false
| # format: false
| # example: false
| # virtual reference to $!
| # format: rescue => id
| # example: rescue => id
| # defined? expression
| # example: defined?(foo)
nd_head (expr)| # post-execution
| # example: END { foo }
nd_body (END clause)| # attr assignment
| # lambda expression
| # format: -> [nd_body]
| # example: -> { foo }
nd_body (lambda clause)| # optional arguments
nd_next (next)| # post arguments
nd_1st (rest argument)nd_2nd (post arguments)| # method parameters
1 (excessed comma)| # new scope
nd_tbl (local table)(empty)| # array pattern
nd_pconst (constant)| # hash pattern
dump_node: unknown node: %s (while-end)nd_next->nd_vid (attr)nd_aid (operator)nd_alen (length)nd_lit (preceding string) (begin-end-while)nd_state (begin-end-while?)0 (see extension field)? unreachable node %s# @ %s (line: %d, location: (%d,%d)-(%d,%d))%s
| # format: [nd_head]; ...; [nd_next]
| # format: if [nd_cond] then [nd_body] else [nd_else] end
| # example: if x == 1 then foo else bar end
| # format: unless [nd_cond] then [nd_body] else [nd_else] end
| # example: unless x == 1 then foo else bar end
| # format: case [nd_head]; [nd_body]; end
| # example: case x; when 1; foo; when 2; bar; else baz; end
| # case statement with no head
| # format: case; [nd_body]; end
| # example: case; when 1; foo; when 2; bar; else baz; end
| # case statement (pattern matching)
| # example: case x; in 1; foo; in 2; bar; else baz; end
| # format: when [nd_head]; [nd_body]; (when or else) [nd_next]
| # format: in [nd_head]; [nd_body]; (in or else) [nd_next]
| # format: while [nd_cond]; [nd_body]; end
| # example: while x == 1; foo; end
| # format: until [nd_cond]; [nd_body]; end
| # example: until x == 1; foo; end
| # format: [nd_iter] { [nd_body] }
| # format: for * in [nd_iter] do [nd_body] end
| # example: for i in 1..3 do foo end
| # vars of for statement with masgn
| # format: for [nd_var] in ... do ... end
| # example: for x, y in 1..3 do foo end
| # format: begin; [nd_body]; end
| # format: begin; [nd_body]; (rescue) [nd_resq]; else [nd_else]; end
| # example: begin; foo; rescue; bar; else; baz; end
| # format: rescue [nd_args]; [nd_body]; (rescue) [nd_head]
| # format: begin; [nd_head]; ensure; [nd_ensr]; end
| # example: begin; foo; ensure; bar; end
| # format: [nd_1st] && [nd_2nd]
| # format: [nd_1st] || [nd_2nd]
| # format: [nd_head], [nd_args] = [nd_value]
NODE_SPECIAL_NO_NAME_REST (rest argument without name)| # local variable assignment
| # format: [nd_vid](lvar) = [nd_value]
NODE_SPECIAL_REQUIRED_KEYWORD (required keyword argument)| # dynamic variable assignment (out of current scope)
| # format: [nd_vid](dvar) = [nd_value]
| # example: x = nil; 1.times { x = foo }
| # dynamic variable assignment (in current scope)
| # format: [nd_vid](current dvar) = [nd_value]
| # example: 1.times { x = foo }
| # instance variable assignment
| # format: [nd_vid](ivar) = [nd_value]
| # class variable assignment
| # format: [nd_vid](cvar) = [nd_value]
| # global variable assignment
| # format: [nd_entry](gvar) = [nd_value]
| # format: [nd_else]::[nd_vid](constant) = [nd_value]
| # array assignment with operator
| # format: [nd_recv] [ [nd_args->nd_head] ] [nd_mid]= [nd_args->nd_body]
| # attr assignment with operator
| # format: [nd_recv].[attr] [nd_next->nd_mid]= [nd_value]
| #           where [attr]: [nd_next->nd_vid]
| # example: struct.field += foo
| # assignment with && operator
| # format: [nd_head] &&= [nd_value]
| # assignment with || operator
| # format: [nd_head] ||= [nd_value]
| # constant declaration with operator
| # format: [nd_head](constant) [nd_aid]= [nd_value]
| # format: [nd_recv].[nd_mid]([nd_args])
| # format: [nd_recv] [nd_mid] [nd_args]
| # format: [nd_mid]([nd_args])
| # function call with no argument
| # format: [nd_recv]&.[nd_mid]([nd_args])
| # super invocation with no argument
| # format: [ [nd_head], [nd_next].. ] (length: [nd_alen])
| # example: { 1 => 2, 3 => 4 }
| # dynamic variable reference
| # example: 1.times { x = 1; x }
| # instance variable reference
| # format: [nd_vid](constant)
| # global variable reference
| # nth special variable reference
| # back special variable reference
| # match expression (against $_ implicitly)
| # format: [nd_lit] (in condition)
| # example: if /foo/; foo; end
| # match expression (regexp first)
| # format: [nd_recv] =~ [nd_value]
| # match expression (regexp second)
| # example: /foo#{ bar }baz/o
| # string literal with interpolation
| # example: "foo#{ bar }baz"
| # xstring literal with interpolation
| # example: `foo#{ bar }baz`
| # regexp literal with interpolation
| # example: /foo#{ bar }baz/
| # symbol literal with interpolation
| # example: :"foo#{ bar }baz"
nd_next->nd_head (interpolation)nd_next->nd_next (tailing strings)| # format: "..#{ [nd_lit] }.."
| # splat argument following arguments
| # format: ..(*[nd_head], [nd_body..])
| # example: foo(*ary, post_arg1, post_arg2)
| # splat argument following one argument
| # format: ..(*[nd_head], [nd_body])
| # example: foo(*ary, post_arg)
| # arguments with block argument
| # format: ..([nd_head], &[nd_body])
| # format: def [nd_mid] [nd_defn]; end
| # example: def foo; bar; end
| # singleton method definition
| # format: def [nd_recv].[nd_mid] [nd_defn]; end
| # example: def obj.foo; bar; end
| # format: alias [nd_1st] [nd_2nd]
| # global variable alias statement
| # format: alias [nd_alias](gvar) [nd_orig](gvar)
| # format: class [nd_cpath] < [nd_super]; [nd_body]; end
| # example: class C2 < C; ..; end
| # format: module [nd_cpath]; [nd_body]; end
| # example: module M; ..; end
| # singleton class definition
| # format: class << [nd_recv]; [nd_body]; end
| # example: class << obj; ..; end
nd_body (singleton class definition)| # scoped constant reference
| # format: [nd_head]::[nd_mid]
| # top-level constant reference
| # range constructor (incl.)
| # format: [nd_beg]..[nd_end]
| # range constructor (excl.)
| # format: [nd_beg]...[nd_end]
| # flip-flop condition (incl.)
| # example: if (x==1)..(x==5); foo; end
| # flip-flop condition (excl.)
| # example: if (x==1)...(x==5); foo; end
| # format: defined?([nd_head])
| # format: END { [nd_body] }
| # format: [nd_recv].[nd_mid] = [nd_args]
| # example: struct.field = foo
| # format: def method_name([nd_body=some], [nd_next..])
| # example: def foo(a, b=1, c); end
| # example: def foo(a:1, b:2); end
| # format: *[nd_1st], [nd_2nd..] = ..
| # example: a, *rest, z = foo
| # format: def method_name(.., [nd_opt=some], *[nd_rest], [nd_pid], .., &[nd_body])
| # example: def foo(a, b, opt1=1, opt2=2, *rest, y, z, &blk); end
nd_ainfo->pre_args_num (count of mandatory (pre-)arguments)nd_ainfo->pre_init (initialization of (pre-)arguments)nd_ainfo->post_init (initialization of post-arguments)nd_ainfo->rest_arg (rest argument)nd_ainfo->opt_args (optional arguments)nd_ainfo->kw_args (keyword arguments)nd_ainfo->kw_rest_arg (keyword rest argument)| # format: [nd_tbl]: local table, [nd_args]: arguments, [nd_body]: body
| # format: [nd_pconst]([pre_args], ..., *[rest_arg], [post_args], ...)
nd_apinfo->pre_args (pre arguments)nd_apinfo->rest_arg (rest argument)nd_apinfo->post_args (post arguments)| # format: [nd_pconst]([nd_pkwargs], ..., **[nd_pkwrestarg])
nd_pkwargs (keyword arguments)nd_pkwrestarg (keyword rest argument)NODE_SPECIAL_NO_REST_KEYWORD (**nil)nd_brace (keyword arguments or hash literal)nd_ainfo->block_arg (block argument)nd_ainfo->first_post_arg (first post argument)nd_ainfo->post_args_num (count of mandatory post-arguments)###########################################################
## Do NOT use this node dump for any purpose other than  ##
## debug and research.  Compatibility is not guaranteed. ##
###########################################################

�w�6w����u��d�c�c��a�x��%��̅��j�W�W�1}�W�~�}�r~�q�r\�[�
s��Z���~�g��h�o|�{��N�N�y�/p�6{�Jo�`�i_�t�^�~j�Qi�Bt��h�?R��Q�us�Q�ql�k�k�Ok�Bm��l�Y�SY�g�>g�n��e�en�m�L�%L�E�FE�K�{D��X��F���TA� P�F��J�C��@�?�;?�>�,V�U�U��S��]�Y�aM�M�=�9=�<��;�n;�;�:�-:��9�L9��8�7�j6��5�4�4B�|   smallcoerce must return [x, y]not an Integer%li.%li%c%linumeric.cx >= 0invalid radix %ldhalfevendowninvalid rounding mode: % lito is given twicestep is given twice%li%li%li%li.%li(%li)%-.10g0.e%+03ddivided by 0need to define `<=>' in %sstep must be numericstep can't be 0Unknown subclass for to_f: %s!rb_num_negative_p(num)negative radixout of domaininvalid codepoint 0x%X in %s%u out of char range%ld out of char rangebignum out of char range%d out of char rangeZeroDivisionErrorFloatDomainErrorNumericsingleton_method_added+@integer?nonzero?odd?even?allbits?anybits?nobits?uptodowntotimessuccchrpow^>>bit_lengthFixnumROUNDSRADIXMANT_DIGMIN_EXPMAX_EXPMIN_10_EXPMAX_10_EXPEPSILONNANnan?next_floatprev_floatinteger %ld too %s to convert to `short'can't define singleton method "%li" for %liinteger %ld too small to convert to `unsigned int'integer %lu too big to convert to `unsigned int'integer %ld too small to convert to `unsigned short'integer %lu too big to convert to `unsigned short'no implicit conversion from nil to integerfloat %s out of range of integerwrong argument type %s (expected Integer)integer %ld too %s to convert to `int'integer %ld out of range of fixnumno implicit conversion from nilfloat %s out of range of long longno implicit conversion from stringno implicit conversion from booleanfloat %s out of range of unsigned long longThe beginless range for Integer#[] results in infinityNumerical argument is out of domain - "isqrt"rb_int_digits_bigbaserb_fix_digits-Infinity@�C� @aU��N�ڿ�?Object#tainted? is deprecated and will be removed in Ruby 3.2.Object#taint is deprecated and will be removed in Ruby 3.2.Object#untaint is deprecated and will be removed in Ruby 3.2.Object#untrusted? is deprecated and will be removed in Ruby 3.2.Object#untrust is deprecated and will be removed in Ruby 3.2.Object#trust is deprecated and will be removed in Ruby 3.2.uninitialized class variable %1$s in %2$scompared with non class/module%li does not have #dig methodinvalid class path encoding (non ASCII)%li does not refer to class/moduleoptional boolean argument is obsoletedstring for Float contains null bytecan't convert false into Floatcan't inherit uninitialized classunexpected value for freeze: %liinitialize_copy should take same class objectcan't convert %li to %s (%li#%s gives %li)can't convert nil into Integerbase specified for non string valuedeprecated Object#=~ is called on %li; it always returns nil[bug] frozen object (%s) allocatedrb_obj_infect is deprecated and will be removed in Ruby 3.2.can't instantiate uninitialized classcan't create instance of singleton classcalling %li.allocate is prohibitedtrue or false is expected as %s: %+lino implicit conversion to float from nilno implicit conversion to float from trueno implicit conversion to float from falseno implicit conversion to float from stringclass or module requireduninitialized classFloat %.*s%s out of rangeFloat()#<%li:%p>%li=%+lican't convert nil into Floatcan't convert true into Floatcan't unfreeze %lino implicit conversion ofcan't convert%s %s into %s%s %li into %swrong instance allocation#<Class:#<refinement:allocator undefined for %lican't convert %s into Hashequal?!=singleton_method_removedsingleton_method_undefinedKernelnil?=~!~singleton_classitselfyield_selfinitialize_dupinitialize_clonetainted?untaintuntrustuntrusted?frozen?singleton_methodsprotected_methodsprivate_methodspublic_methodsinstance_variablesinstance_variable_getinstance_variable_setinstance_variable_defined?remove_instance_variableinstance_of?kind_of?is_a?tapsprintfNilClassincluded_modulesancestorsattrattr_readerattr_writerattr_accessorpublic_instance_methodsprotected_instance_methodsprivate_instance_methodsconst_getconst_setconst_defined?const_source_locationremove_constconst_missingclass_variablesremove_class_variableclass_variable_getclass_variable_setclass_variable_defined?public_constantprivate_constantdeprecate_constantsingleton_class?superclassTrueClassFalseClassto_intQaryastrqsym�hash�proc�io�a�s�i�r
invalid attribute name `%1$s'wrong constant name %1$s`%1$s' is not allowed as a class variable name`%1$s' is not allowed as an instance variable name\x%.2xencodes() buffer overrunCan't use both '<' and '>'pack length too big%% is not supportedmalformed UTF-8 characterredundant UTF-8 sequenceinvalid base64@ outside of stringX outside of stringx outside of stringno associated pointernon associated pointerpack(U): value out of rangebuffer must be String, not %sformat string modified@XxuPMmbuffer size problem?pack_packpack_unpackpack_unpack1unknown %s directive '%s' in '%li''%c' allowed only after types %smalformed UTF-8 character (expected %ld bytes, given %ld bytes)too short buffer for P(%ld for %ld)can't compress negative numbersg�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�[������������}������h��a�`���}��a�W��h��a���a�����a�T��a�G�a�a�a�a�a�a�g����D�������T����=����a���
��a�����a���a�=��������|)��������������������������� �������h���������V#���"���������"�������������""��!��������~���� ������~����$'��%�B&�B&�B&�B&�B&�8%�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�B&�$'�B&�B&�B&�B&�B&�B&�$'�$�B&�B&�B&�B&�B&�$�'�+%�%�%�%�%�%�$�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�'�%�%�%�%�%�%�'�$�%�%�%�%�%�{#�          � �0123456789ABCDEFABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/`!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_too few argumentssSiIlLqQjJsSiIlLqQjJ���������Gencountered \r in middle of line, treated as a mere spacemismatched indentations at '%s' with '%s' at %d%s%.*s%.*s%.*s%s
block argument should not be givennumbered parameter is already used in
%s:%d: %s block herePattern matching is experimental, and the behavior may change in future versions of Ruby!`_%d' is reserved for numbered parameter; consider another name`%s' is ignored after any tokenspossibly useless use of %s in void contextboth block arg and actual block givenstring literal encodings differ (%s / %s)key %+li is duplicated and overwritten on line %dduplicated `when' clause with line %d is ignoredinvalid Unicode codepoint (too large)invalid character syntax; use \M-\%cinvalid character syntax; use \C-\M-\%cinvalid character syntax; use \%cinvalid character syntax; use \M-\C-\%cinvalid character syntax; use \C-\%cInvalid escape character syntaxnumeric literal without digitsfound `= literal' in conditional, should be ==local->used->pos != local->vars->posassigned but unused variable - %liunknown literal type (%s) passed to negate_litregexp encoding option '%c' differs from source encoding '%s'vtable_add: vtable is not allocated (%p)formal argument cannot be a constantformal argument cannot be an instance variableformal argument cannot be a global variableformal argument cannot be a class variableformal argument must be local variableCan't change the value of selfCan't assign to numbered parameter _%didentifier %li is not valid to set__FILE__ in eval may not return location in binding; use Binding#source_location instead
%li:%d: warning: in `%li'__LINE__ in eval may not return location in binding; use Binding#source_location instead
%li:%d: warning: in `%li'circular argument reference - %liidentifier %li is not valid to getvtable_pop: unreachable (%d < %d)syntax error, unexpected %s, expecting %s or %s or %s or %ssyntax error, unexpected %s, expecting %s or %s or %ssyntax error, unexpected %s, expecting %s or %ssyntax error, unexpected %s, expecting %scan't find string "%.*s" anywhere before EOFunterminated list meets end of fileunterminated regexp meets end of fileunterminated string meets end of file`**' interpreted as argument prefix`**' after local variable or literal is interpreted as binary operatoreven though it seems like argument prefix`*' interpreted as argument prefix`*' after local variable or literal is interpreted as binary operatorembedded document meets end of fileunterminated here document identifiertoo long here document identifier`<<' after local variable or literal is interpreted as binary operatoreven though it seems like here documentinvalid character syntax; use ?\%c`?' just followed by `%.*s' is interpreted as a conditional operator, put a space after `?'`&' interpreted as argument prefix`&' after local variable or literal is interpreted as binary operatorambiguous first argument; put parentheses or a space even after `%c' operator`+' after local variable or literal is interpreted as binary operatoreven though it seems like unary operator`-' after local variable or literal is interpreted as binary operatorunexpected fraction part after numeric literalno .<digit> floating literal anymore; put 0 before dot`:' after local variable or literal is interpreted as binary operatoreven though it seems like symbol literal`/' after local variable or literal is interpreted as binary operatoreven though it seems like regexp literalparentheses after method name is interpreted as an argument list, not a decomposed argumentunterminated quoted string meets end of file`%%' after local variable or literal is interpreted as binary operatoreven though it seems like string literal`%s' is too big for a number variable, always nil`$' without identifiers is not allowed as a global variable name`$%c' is not allowed as a global variable name`@' without identifiers is not allowed as an instance variable name`@@' without identifiers is not allowed as a class variable name`@%c' is not allowed as an instance variable name`@@%c' is not allowed as a class variable nameInvalid char `\x%02X' in expressionReducing stack by rule %d (line %d):
else without rescue is uselessBEGIN is permitted only at toplevelcan't make alias for the number variables&. inside multiple assignment destinationclass/module name must be CONSTANTcomparison '%s' after comparisonclass definition in method bodymodule definition in method bodyInvalid return in class/module bodykey must be valid as local variablessymbol literal with interpolation is not allowedcan't define singleton method for literals`if' at the end of line without an expression`elsif' at the end of line without an expression... at EOL, should be parenthesized?%s%.*s%s
%s%s
unknown encoding name: %s%s is not ASCII compatibleouterinvalid value for %s: %sunixdosutf8-maca variablea constanta literal::empty expressioninvalid multibyte char (%s)%s mixed within %s sourceCan't set variable $%ldCan't set variable $%cliteral string changed: %+liunused literal ignoredstatement not reached(none)lex_state:  ->  at line %d
invalid Unicode codepointUTF-8 mixed within %s sourceinvalid Unicode escapeunterminated Unicode escapeinvalid hex escapeInvalid octal digittrailing `%c' in numberFloat %s out of rangedynamic constant assignmentduplicated key nameduplicated variable namevoid value expressioninteger literal in flip-flopstring literal in conditionstring literal in flip-flopregex literal in conditionregex literal in flip-flopinternal parser error: lex.state: %licond_stack: %licmdarg_stack: %livtable_alloc:%d: %p
cmdarg_stack(push)cond_stack(push)vtable_free:%d: %s(%p)
p->lvtbl->usedp->lvtbl->argsp->lvtbl->varscmdarg_stack(pop)cond_stack(pop)vtable_add:%d: %s(%p), %s
duplicated argument nameCan't assign to nilCan't assign to trueCan't assign to falseCan't assign to __FILE__Can't assign to __LINE__Can't assign to __ENCODING__ordinary parameter is definedtokennterm%s %s (%d.%d-%d.%dStack nowvtargsvtable_pop:%d: %s(%p), %d
syntax errorsyntax error, unexpected %sStarting parse
Entering state %d
Stack size increased to %ld
Reading a token
unknown regexp option%s - %*sincomplete character syntaxunknown type of %string__END__cond_stackcmdarg_stackNow at end of input.
Next token isShifting   $%d = END in method; use at_exitunexpected ...->invalid local variable - %liblock given to yield%li: no such local variable-> $$ =Error: discardingError: poppingmemory exhaustedCleanup: discarding lookaheadCleanup: popping$;$Fchomp!warn_indentparser"end-of-input""invalid token""`class'""`module'""`def'""`undef'""`begin'""`rescue'""`ensure'""`end'""`if'""`unless'""`then'""`elsif'""`else'""`case'""`when'""`while'""`until'""`for'""`break'""`next'""`redo'""`retry'""`in'""`do'""`do' for condition""`do' for block""`do' for lambda""`return'""`yield'""`super'""`self'""`nil'""`true'""`false'""`and'""`or'""`not'""`if' modifier""`unless' modifier""`while' modifier""`until' modifier""`rescue' modifier""`alias'""`defined?'""`BEGIN'""`END'""`__LINE__'""`__FILE__'""`__ENCODING__'""local variable or method""method""global variable""instance variable""constant""class variable"tLABEL"integer literal""float literal""rational literal""imaginary literal""char literal""numbered reference""back reference""literal content"tREGEXP_END'.'"backslash""escaped space""escaped horizontal tab""escaped form feed""escaped carriage return""escaped vertical tab""unary+""unary-""**""<=>""==""===""!="">=""<=""&&""||""=~""!~""..""...""(..""(...""[]""[]=""<<"">>""&.""::"":: at EXPR_BEG""operator-assignment""=>""(""( arg"")""[""{""{ arg""*""**arg""&""->""symbol literal""string literal""backtick literal""regexp literal""word list""verbatim word list""symbol list""verbatim symbol list""terminator""'}'"tSTRING_DBEGtSTRING_DVARtLAMBEGtLABEL_ENDtLOWEST'=''?'':''<''|''^''&''+''-''*''/''%'tUMINUS_NUM'!''~'tLAST_TOKEN'{''}''['',''`''('')'']'';'' ''\n'$acceptprogram$@1top_compstmttop_stmtstop_stmtbegin_blockbodystmt$@2stmt_or_begin$@3$@4command_asgncommand_rhs@5@6$@7expr_valueexpr_value_do$@8$@9command_callblock_commandcmd_brace_blockfcallmlhsmlhs_innermlhs_basicmlhs_itemmlhs_headmlhs_postmlhs_nodecnamecpathfnamefitemundef_list$@10reswords$@11reloprel_exprarg_valuearef_argsarg_rhsopt_paren_argsopt_call_argscommand_args$@12opt_block_argmrhs_argmrhsprimary$@13$@14$@15$@16$@17@18@19$@20@21$@22@23@24@25@26primary_valuek_begink_ifk_unlessk_untilk_casek_fork_classk_modulek_defk_dok_do_blockk_rescuek_ensurek_whenk_elsek_elsifk_endk_returnif_tailopt_elsefor_varf_margf_marg_listf_margsf_rest_margopt_block_args_tailopt_block_paramblock_param_defopt_bv_declbv_declsbvarlambda@27@28@29@30$@31f_larglistlambda_bodyblock_callmethod_callbrace_body@32@33@34do_body@35@36@37case_argsp_case_body@38@39@40$@41$@42$@43p_casesp_top_exprp_top_expr_bodyp_asp_altp_lparenp_lbracketp_expr_basic@44@45@46p_argsp_args_headp_args_tailp_args_postp_kwargsp_kwargp_kwp_kw_labelp_kwrestp_kwnorestp_valuep_primitive$@47p_variablep_var_refp_constopt_rescueexc_listexc_varopt_ensurestringsstring1xstringsymbol_listqwordsqsymbolsqword_listqsym_listxstring_contentsregexp_contentsstring_content@48$@49@50@51@52@53string_dvarssymdsymsimple_numericuser_variablekeyword_variablevar_lhsbackref$@54f_arglist@55opt_args_tailargs_forwardf_bad_argf_norm_argf_arg_asgnf_arg_itemf_argf_labelf_kwf_block_kwf_block_kwargf_kwargkwrest_markf_no_kwargf_kwrestf_optf_block_optf_block_optargf_optargrestarg_markf_rest_argblkarg_markopt_f_block_arg$@56assoc_listassocsoperationoperation2operation3dot_or_coloncall_opcall_op2opt_termsopt_nlrparenrbracketrbracetrailer�������������������������������������P�����������������������������������������������������8�����������������������������������������������������������������������������������������!�"�!�!�!�!�!�!�!�!�!�!�!�"�"�"�"��!�"�"�"�!�!�!�"�"�"�!�!�!�"�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�p"�p"�P"�`"�!�!�"� "�0"�@"�!�"� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � �#�"� #� #�#�#��"�#�#�#�#�#�#�#��"��"��"��"��"�#�#�#�"�"�P#�P#�P#�P#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#��"�lM�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�O�O�O�O�O�O�O�O�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�M�,M�,M�,M�,M�,M�,M�,M�,M�,M�lL�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�,M�\O�O��M�,M�,O�N�,M�,M�,M�,M�,M�,M�,M��N�,M�,M�,M��N�O��N�,M�N�,M�<O�R�$Q�$Q�$Q�$Q�R�R�R�$Q�$Q�R�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�R�R�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�R�R�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�$Q�R�R�[�Y�\�\�\�\�\�\�\�\�\�\�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�<[�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�<[�q�q�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�Lq�Lq�p�p�Lq�q�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�r�r�p�p�p�p�p�p�p�p�p�dr�L����\��������t������������4������Ȋ�؊���������������������������P����d��������������������4����܊�0��x������������������������������А���؏�����̑�������������������d��ؗ�ؗ�ؗ�ؗ�ؗ�ؗ�ؗ����������� ����������������������������������������������������������������������ؗ�����8�� ��P��h����������,�'��7�B6�8��3���\8�t7�s8�*�6�f6�6�Y4�27�?�P?���60��/�0�.�2/�/��/�)�**�y1�2�M0�"1����1�I2��'�(���.��.�f-�-��-�%.��*�+�W+�+�����x,�2-�N��N�$�G�F�F���E��E�)F�kF�������MC�C��C�<D�cD��D�E�WE�g?�?�?�:@�v@�@����@���A�VA�A��A�A�HB�~B��B�C�8�+9���{9�9��9��9�:�?:�h:�:��:�;�B;�;��;�<�G<�p<�<��<�<�<=�k=�=��=�3>���Q>�>�>��������>���f����f�:�W�
�
�������3
�K
�c
�{
�
�
��
��
��
��#�;�S�k����������+�C�[�����������������������������������������������������������������������������������s����=�����e��I�Sa�H_��_�`�a��lc�c�8c�"b�Vb�b��b��a��e�je�e���c��c�d�<d��T�AT�qT�zS�6U��T�!U�I�I�LJ�)T�S��S��S�S�2G�G����G�Q�O��O�%P�P�!O�Q���������Q�Q�TQ�S�bR�R�8���LM��L�M�HL�_L�wL�L�cJ�J�����J��J�K���������������������@K�qK�K��G�
H�:H�WH�H�H��H�I�bI�aN�	N�1N��M��M�k��x��������4���������������R�����I��.��w����?��d��1��X��!��������Y��������}��u��*��M����}�������������o�������������������������-��r�����L��������������m����������������������Z������������@����F��o������������$��f�������(��h������:��y������8��v�����������1��^��v���������������R�������0�H���Y��E����o��'�����/��
�
���������G	�\
������J��u�����������&��L��t���������������j���������b���������������'��M����s������0��t��������O������ ��d������
��;����~��L������u����������E������5��i������g����
����j����!������;��R��j������
�i��X�������Y�PX�����������������GZ�Y�zZ�V�>V�V��V�V�W����W�X���jU���U�������U������U�'[�x[�\��]�Z�Z����Z�^�]�^�d^��^���C�[�������'�?������I�������.��1�b��������������������f�������������������0_�f�\f�tf�Df�g��6�6��(�)�D)�����m)�)�5� 4�5�3�3�5�o5�}4�4��4�4������I�����M�����M�����E�������<�f�������&��� �!�Y � �!�S!��!�!�M"�d"�������"��"�<#�#��#�#�E$�\$�����$��$�����4%�d%���e'��&��&���{%���%�&�h&�!����������������������������������������������������������������������� �� ���,�Z*�2,�'��{,�+�,���*�~*�*�q(�J+�23�o3��U$�$�$�#�J#�#��#���B�%�&�e$�:%��%�a&������"��"�~!�!�!�="���,�o���� �J!�B��B�<
�#;�:�:��9�:�H:�:����e7��7�	8�[8�{8��8�/9�o9�3�3�4�R4�4��4��
5��5�n5�5��5�6�`6�6��6�7�-�C-��-�-��-�.�4.�W.�.�.��.�/�Z/�/��/�0�_0�0�0��0�1�T1�1��1�	2�K2��i2�2��2����
3��Z��Z�Y�o�"�:�������
�R�j����������*�B�Z�r����������2�J�b�z����������������������������������������������U����4�&�}��a�kU�`S�S�T�7U�
�W�W�PW�:V�nV�V��V�V��Y�Y�Y��W��W� X�TX��H�YH�H�G�NI�I�9I�=��=�k>�HH��G��G�G�H�J;�;���;�(E�C��C�=D�E�9C�F�����E��E�lE�'G�F�F�,��kA�@�3A�g@�~@�@��@�{>�>����>�>�'?�����������X?�?��?�<�"<�Y<�v<�<��<�=�1=�z=�yB�!B�IB��A�B����������L�����������,����q�����h��F����-��W��|��P��p��9�������x��#����������B��e��5�������������)���������������������������E������d���������������������0��������r�������
��$��_��3��^�������������<��~������@���������R���������P����������#��P��}��������������#��7��q����������O��g����q����]����,������?��������G����2����������������_��t�������b�����������E��d�����������������-���������������F��l����������H���������+��g�������8���������"��S�������d��������������-��]�����M�������$�������%��������9������Z��q�����������M����M�hL���������_N�M�N�J�VJ�J��J�K�6K���K�#L��I��I����I����I�?O�O�P��Q�N��N��O�3R��Q��R�|R�R�&�7�b�s�����	�F	�W	���	�
�h
��
��
�
�*�M��I�z���������
��Z����������OS�Z�{Z�Z�cZ�-[�+�+��3�\�����)�?(��)�-'��'�7)�)�(�(��(�)��
�
��a����&�e����#�e�����]�����*�T�~�С�����>�С���q��� �k���l��С�С�С����T����d�{�С�С����С�С�L��"��}����С��С��$��9����С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С�С������С�������k��k��������k����������S����S��S��S��������������������������k������������S��Ϣ�j������!��Ȥ�������������n����������������������������ȩ���x��$����������������������������������������������������������9��(��������N������������������������������������������������������������p��м�м� l�м� l����� l� l�м���м�k��м�м���!��!��!��!��!��!��!��!��!��м�м�м�м�м�м�м� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l�м� l� l�h���� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l� l�м�C��
f�
f�
f�
f�
f�
f�
f�
f�
f�x��
f�x��x��x��
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�
f�x��
f�
f���
f�
f��
f�
f�
f�
f�
f�
f�
f��O����O�������F��=����4���+������"�����������������������F��=����4���+������"�����&��&��&��&��&��&��&���&��&��&��&��&��̓�&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&��&���&��&��&��&��&��&��&��}��=����&��&��&��L��#��tnvfrsNONE333333333333333333333333333333333333333333333333333333333333333333
3333
3
33333333333333333
333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333����������������@!!		&&###)  .

4+@;""@*F(M@T�X$$\_ei�o%%ruz�
'���@����00�11�22�//�,,��..�--������)Multiple codepoints at single character literalBEGENDENDARGENDFNARGCMDARGMIDFNAMEDOTCLASSLABELLABELEDFITEMbreakelsenilensureendthennotfalseselfelsifrescuetrueuntilunlessreturndefanddoyieldforundeforinwhenretryifcaseredonextsupermodulebegin__LINE____FILE____ENCODING__ENDaliasBEGINdefined?classwhile���@	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������		



 !""""#$$&'()*+%,,---...../0011234444444544644748888888899::::;;<======>>??@@AABCCCCCCCCCCDDDDDDDDDEDFGHHHIIJJJKKLLMMNOOOPQRSTTUUVWWXYZZ[[\\]]^^_`_abcde_ffffgghiiiijkkllllmmmmmnnnnnnnooppqqsrrtttutvvvvvwwxxxxxxxxxxxxxxxyzzzz{{|}}~~������������������������������������������������������������������������ !"#$'-./0123456789;<=>?@AKLZ[befhiknopqrstuv����������������������������������MNOPQRSVXYghjklmnopq���	

 !"#$%&'-./0123458KLMNOPQRSVW\]^_kl������������������g':beklmp���������mnpq������������6����� �������8/e�����������������.b�����mnq�679�\i\]^����l��������()*+,%&�����~�ek�~MNOPQRSTUVWXY^_������������D`a������������b���mnq48^b���mnq�!"#$12348��o��a��Pcc��8���\~d���a��cc������[���y�����6@A�����a�c������������������8l���a��Bwyz_ww_C_TZW[M���������j�k������������������q�������������������������458������458�����
��������8a���48��ra�����Da�48�������|�k���48�48�����������������������48�48a`wU_BwwUBw��
� ���,���,~,a����cc�����cc������I��
������%�#48�48��s�48������������cc�ccy�����b679fq�_����!k�����48�4848Z[behin�/014CDFGHMNQRSVXYn�������c�������J�	��L������&#�k�"����������tu�c���c�	
�	��DD8�75�6��E4d��XYa��23���dK�������'��������46789:M[eklm��vxyz{|}~������������x~��xd|~�����������/k/89:<:p=>?@AB��F4DD���p8=8=b��mnq���(k���ek{��~�w����"4����w4�w4���txe�~�b���������4��k/<�\��/"4\����8a���L�-./:=�#${����vy}������~��|~�{�����8a��~��~4
z�;<4��|?AB48�48I��()����w�w��w�ww����x��48�����;��;�)��8��~�~~��~�~~
<;*w�www�+~~�w%,;5Y<qf[\G_leG�^�K9\z_�_��
�c�D�kCmsS�78S_\5;N`abK90X
������V\56�Z9\�d�7'(d�DcDdd���,��S	
�6[\B�_`abadD��Nd�f$D78����	�����`a~���%&�Ha��w�8����������d�����d��
����
��

��������
6789�;<��������P|6789|}ZZz|Y��
������������Q�HqrVX�[��s��{��I�
�F��	sKT����u[4�rt��
�5j�$��
Hu�,I56789:;<���m����F4HIlK�F�ml�K��a�5����:����������vtl~n���rst�B����%&�{�D��p��c��m	�����������a����`a���~�c��d���w���������3~�b�~~d�~RS�DPb������D���������BC�D��3aM�����R`a]���J���F�Hc`a�D����f���~��cB93Byz~�BD�`a��<Z���(BD~"��f�j��P`a;QPd4DZ��D[ZjyzdDyzF�Hc��j~pjP�D`a9D�`aZ:\]B�a���~�~�c�cQMap�`a�[��B��c�dD���~�~D���cl�c�p8���D��56D`a������a�~�D~���Bw�yza��zD�aD��$�K[\D~_,�.Fd�	�����E`a`a�c��c`aDE:yz�|G"d?,B.�D�cD~�M~U3c4`aDD����D)�f��D��~�Da��gclm;;c`aaXYc`awMyz`a()B`a��~�3c~�����~���?��B�DE�~�������~s���Tcc����[��8�w�yz�|g�j���C�~~��I6KwMyz|�M@A3j�44��88���8�����������56789:;<�M�D����FH`�KB��^_��������f��`a��B$�
�(�� ,,.l,n�~�rst������
B#�w�yz
��f��������w�yz�;<=>��67�9Z�\���@A��d4fdwkyz���� d�#F�H4JGF~�4���()*+,����4a�~�f8�F����4�6789���v4	6789�4�6789G��jk8�56�F9�I4�L���$S�(V��,x.���S�e����46789`abc���������`��b�F$H56(�W�,P.M	�d�JD�Z�\]e�qr^_k��Vf{|}$[\��_�,wd������D��;{��;�������;iyH��c���(��$������������������������������������������������������������������������������������
���������������������������������������������|�������������������������������5��������:����������������������HI����qr��3����w��yz��������h����3����8��4��6789:?����n��DEr��t56789:;<M����T����������F[H����K��������������g��ej�������lm���]^����c��e��g��l��n�����rst���������qr��������������{|}������������������������������������������������������������������4��6789:��������������������������M������������������������������������������e������klm���MNOPQRSTUVWXY��������^_�������������F��H���� �������������������������\��������������������������F��F����K�������������3����������������F��H56���9����P����������jk����Z��\]����������������S��������������������`ab������������������������������������������������������������������������������������������������������������������������������4�6789:���������������������������M�����������M����������������������������e^_������klm?��������D����������T��������56[��T��[�������������g����j����������qr3��������������{|}��?������DE�����5�56��:9�������Tk��m������[HI��K��������z��|g��Sj������������������`abc����������������n������r�t��������������������������������������������������56�����������������������������������������������������������������������`������������������������ ����#�������������������������3��������������������������������������������������5��������:�������������� ��H����K������jk4��6789:����N������������������F��Mn��5br��t:���������[������F��H��HIe��������klm��jk����\���������������������������n������r��tqr��������������{|}�����������������qr5�������:���{|}��������������H����K������������������������qr��������������{|}���������n������r��t���������������������������������������4��6789:�������������������������������M��������������������F��H�����������������e���������klm\����������������������������3����������3��������?�������D������F��H������������3����T������������[����\����������������g����j�������������������������3���������������������������������������������������������������F�H���������������������������������\����������������������������������������������������������������������������������������������������������������3�������������������?������D����������������������T������ ��[#��������������������g����j������������������������?��������D�������������������������qrT�����������[{|}��������������gjkj��������qr����������������{|}������������������������������3���������������������?����qrD��������������{|}����T������������[������������������g����j���������0123������78������������������DE������ �������������������������!"#$�����������d�������123�������������;<=>?����3�������������������� ����#���������������������jk3����������������������������nopqrstuv���������������������������������������3������������������jk��������������������� ����������������������������������������������������������������������������������������������������������������������������������jk���������������������������������������������������F������K��MNOPQ����TUVWXYZ[\����_`abcdefgh������l����������������������������������������������MNOPQRSTUVWXY��������^_�����������������������������������������������������������������������������������������������������������������������������������	
����
�����������������������������%&()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��cd����������j����������P��������������x��Z{����~�����������k��m����������������z��|��������������������	
����
����������������������������������%&�()*+,�������������������������������������D�����������������������������������������������������`a������������������������!"#$��������x��������������1234����8��:;<=>?��������������������M������������������������Z[��,��������b��3e����hi��kl��nopqrstuv����������������N������������������`��b������������������ !"#$����'����������-./0123456789�;<=>?@A������������������KL�������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������������������������������������������������������������������������������������	
��
����������,��������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_F����MNOPQRSTUVWXY��������^_`a��cd��������j����������������x����{���~����������������������������������	
����
����������,��������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a��cd��������j����������������x����{����~����������������������������������	
����
������������������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a����d��������j����������������x����{���������������������������������������	
����
������������������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x����{���������������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRST��VW����D������^_������MNOPQRSTUVWXY��������^_`a��cd����������j����������������x����{����~����������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRS����VW����D������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x���������������������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRS����VW����D������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x����{����������������������������������������	
����
��������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a����d����������j��������������������������x���������������������������������������������	
����
����������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a����d����������j��������������������������x����������������������������������������������	
������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~�����������������������������������	
������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~�����������������������������������	
��������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~������������������������������������	
��������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~����������������������������������	
���������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
���������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������	
������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������������������������������
������������������ !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��x������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������ !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv����������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv���������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv���������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������������������������������������������������	

������ !"#$%&'����������-./0123456789����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������������������	

������ !"#$%&'����������-./0123456789����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl�����������������������������������������������������������������	

������ !"#$%&'����������-./0123456��8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl����o�����������������������������������������������������������	

������ !"#$%&'����������-./012345����8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl����o�����������������������������������������������������������	

������ !"#$%&'����������-./012345����8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv�������������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������������������ !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv����������������������������������������� !"#$����'����������-.��0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��kl��nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi����lmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��kl��nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi����l��nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A��������������������������������������������������������^������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A!"#$������������������������1234������8����;<=>?��b����ef��hi��������nopqrstuv��������Z[������������b����e����hi�k����nopqrstuv!"#$�����������������������1234�����8����;<=>?����!"#$������������������������1234������8Z[;<=>?��b����e����hi��k����nopqrstuv��������Z[������������b���e����hi�������nopqrstuv45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl�����������������������������������������������������������������|#m&H��oo�4o�;�5�It���}q��u�L��Y4Y��Ev�V.o9-B���o��Jv�	���@dI~I�����!�sv����YY����d���������y��eh��9xB���\E�=�����{����������\?�����mn\��R���]���W������������i��;<�]
���1�2�����"���V�������UO��4d~l1�2"�������s����������"�)*+����oooo����x��>�|Y�v��������o�o�1�2���������	\�������Y�Y����\����oY��YQ����������S^J��?I�4�e2o�IjK�^����Q���r�R��	L��
yY����Y����!����������������Y���
��@�9
B1������I7�8���!�-/<46=�����Y��:��Y�Y4����3;<@kMi������{����A[�BC@�)��~���~�pjk����{���y�����@�����%����*�������v������y����RS����o@��A��il����Y�������������h�>���M��pA�j���gi�]^�����z��������+gi��A�`����z�����������i,������def`�C�����%������%�C>�>j��@��i����i@���������Y�Y�!��F�����j��}�Gj���Y���������^KNoN��A��<�}�}�NNA��U��T��|����S�����]�������@��~��$���NN��|�|���<B}�H��H��YN��Y�����~������i����NN���N����N
=A|��	>o��cjOgY��Y�����iii�������=��w�z��������������>jY�_�.0�i�P�57i��$�����i��$��������3��`|}`j��M��jE���jtZ��������N��.0��57�Y����Y�������N�NN���N�NY�3NFN�Y�Z������kNYN�Y��������������������GM���9TT�UoY�N��Y?�1�2RNNNNNNNNWMH�J>N�N�xN���Z[zbcdef|�����������'�����m���N�N��BNNN�Hbcdef�����N�����2����u"�,Y>Y�M��Q)*+,NN��#��b�XZf./�N�x�y����{�YooY��o���H@�	��6789:N�w�w#"�D$�(,N��������.�{=����8��0����Ab;n##bYYs�wwV�X�����d�d��b��������dd��������a����~������������y"�!���N�Nddv�h��N�M�u�H�d@N�NN��T##Z[�����###�dd##djY��d�_�-/wN�y��{N�}abcdef����I����_�u��q:��wNNNNNNNNw#w���#$��ww�NNN�d#���ddddd�ddwwddw��#����$$N������NwNNwwdddddddd�NdNddN�N�#��#���������dd#ddd�N�$$Nd$$$$$w##Yddacd������L���������d��$NdN���$MNOPQRSTUVWXYZ[��$wwNN�zzw\]^_`abcdef	N�$ddzzdNNdddww+��NNd$1$lnww$@AddddddWddn$$�N�����++dddy�yzM��Z[���wwzz�yy�wz�zv�vw_`abcdef�ww++d+++d++dd�zwvvzwd��dznddUU}���zz�zdd++nUUy9ww+O%yyzywyw�&zvk+ddvv'yyvvddyyww%%�������+U+&&d�yvyyv+�zzv�UU���dd''zUU++yy���vvv%%dd%%%w%%&&U�Uy&&&&&Uzz'''''d''UUUPvzz%Y%������&&%�yy&�'���y'U%��z'zvv&zzvzzyyy'yyyy%�%zz(%&y&UyUvv&)U%%'�'&&'vv*((zzy''UyUy))yzzy�yyUU**vvy((vyv(((((vzzv)))))))�vvU**U***��**UU(yy(UU�������)z()/0�yUyUv)v�* !"*)*+,-(vv�*yy);<=>?@ABUU*((�vv���/(UU)�)��)((y**))*UUv�** !"#$%&'()*+,-./0123�MNOPQRSTUVWXYZ[Ufff���ff�\�]^_`abcdef�f������������������������������������������������������������������������������������������������f
�ff�ff�����ffff� !"��)*+,-��������f��;�=>?@AB��	f�

 !"#$%&'(�)*+,-./01�23456789:;<=>?@ABCDE�������������������������������������������MNOPQRSTUVWXY��Z[���������������������������������������\��]^_`abcdef�������������������������������������������������������������������������������������MNOPQRSTUVWXY��Z[��������������������������������������\��]^_`abcdef����������������������������������������������������������������MNOPQRSTUVWXY�Z[������������������\�]^_`abcdef������������������������������������������MNOPQRSTUVW���Z[�������������������]^_`abcdef�����������������������������������������MNOPQRSTVW�Z[��������������������]^_`abcdef�������������������>�����>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�M����RS��>�Z[>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�]^_`abcdef>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>���>�>�>�>�������������������MNOPQRSVW�Z[�������������������]^_`abcdef�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	���
�
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
��
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
��
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
�
� !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
�
 !"#$%&'()*+,-./0123456789:;<=>?@AB	��
CDE
�� !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
�� !"#$%&'()*+,-./012346789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	�

 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
�� !"#$%&'()*+,-./0123456789:;<=>?@AB�	
CDE
��� !"#$%&'(�)*+,-./0123��678���:;�=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
12 !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
� !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'()*+,-./0123456789:;<=>?@ABCDE�~�����������������������������������������%&�(�������������������������������~����������������������������������������� !�"������������������������������~������������������������������������������������������������;�������������~�����������������������������������������������������������;�������������~�����������������������������������������������������������������������	�

����� !"#$%&'()*+,-./�678:;<=>?@AB	

����� !"#$%&'()*+,-./�678:;<=>?@AB	

 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'(�)*+,-./0123��678���:;�=>?@AB	
C�E
 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'(�)*+,-./012���678���:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678m��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./012���678m��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678m�:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678�:;�=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678N:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678�:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
 !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
����� !"#$%&'()*+,-./H678I:;<=>?@AB	

����� !"#$%&'()*+,-./x56789:;<=>?@AB	

����� !"�$%&�()*+,-./���678:;<=>?@AB	

����� !"�$%&�()*+,-./��678:;<=>?@AB	

����� !"#$%&'()*+,-./H678:;<=>?@AB	

����� !"#$%&'()*+,-./��678:;<=>?@AB	

����� !"#$%&'()*+,-./ !")*+,-&�678:;<=>?@AB�;<=>?@AB !")*+,- !")*+,-5;<=>?@AB;<=>?@AB456�����������������������������=>?�������������������������������q5r�������������������������������t>u��������������������������������5���������������������������������>���������������������������������5���������������������������������>���������������������������������5��������������������������������b>c�������������������������������5�������������������������������>��������������������������������5���������������������������������>���������������������������������5��������������������������������b>c��������������������������������FGH�C�D��JK�zprsJLM�OPQRS�T������j7�V�gW�
8�������<Xn��M��\^����Z[\]^_`abcAD�?�DE��F�FG|p%�gh�|}����d�lEefB��P�S�K������KL6��rtq�����������w !"�;�Aghijklm��n�op��$'(����e� �qr%stu��x��X�[\Z
����f������������������
�]��{�:a[�3���v�Gw
������������D��������������ff���y�	��g������I�{��n<v��d��3�'����������������� ����������������K����J������4���J�������������������P��*�����������������!����������}�������!u������&��������8�������������Y�t���`���������m����������1�C����'��x����\w��������P��I
�����jklcdehfgi^_`au}|~�������yx�{stuvB��2��_FVVXZ�	#(4CBSWa=��0??�;DD%&AC'()+*,@ij?q��-.G�����������������������������������������~������������������������������������VQ���.��R�O��N���
^_>��;���8��U4������]bgho�nmolkIRNTr8������m��H�Cn��c[X9���������>�N����.yz|���.V�������~�X�P��ED��8���=�����
�B7?�6�T�39���:�nre`�G�\p_]WEFYG[� !56��I�$!' �Yd3)1�%.:�������������������������������������wvL8�?Tyz{�R�Y��[��*�0���������<�
A�"��V5�^�m����`HKPMQ���t���$b\��L��J1o��7�x�Jz@yK�q�7���yz}����E������f��aefg^hJLSOU�F�"&Z2�����15���/;����!"#&'()*,+-./�.�M�,�-�K89�:pr>s{}A�P�O��W���\��	@�b���#�$%z3���2< ���+�<=~HI�M�Q�S�������������������������������������c��������������������V��0��4��V����;��.���U��������������������Z�������������������8��
���������������������������������8����������	
�
�7���6|�������������]�d���7����������������������������������������r���#���!�������M$M$����$���� !�����E������������1+1+1+1+|�$�&=(�"� ���<����+1+��)�v��o%����,�7�A\�-,-,���%-�-.�M$�_�� ������������C��:�������������������������������������������������������������������������������#���D1+z�1+1+1+�1+�eU����a��)���p�M$I%��l�-,_�F�����o����'�$���)���)���&��&��F��.�2]������X��������K��������-,-,-,-,�$-,-,���8�����(�N#�(�1+1+1+1+1+��1+1+1+1+1+1+1+1+1+��1+1+1+1+1+1+1+1+1+1+��b0M$�0�vjjt-,t�u���u���-,p�@�����"N�.drx��������5��+�+��I���	1+1+�%��1M$p11+1+A'��:��1+��D�J������!�1+BO1p11+)����hN���'��=(������R�.�1M$$2������������;�T1+���������S������1+�WY���.Z����w/�������{��QQ���v�����22pk������bL���J���W��6����~2M$�2�v�����23M$�3�-,�������
�����!1+�1+��)
�������E&�A'��-,U������Y��&�.R%��]������m���t���}����9)�$�R�.�$�+1+�3M$@40��+�+�8y��%�+�+��8���)��>�	��������5*�H��8t-,��������B"_%����1+1+�1+1+����^�������������1+��R�U)�����q�dw��������U���������1+������+�����W�����t����t-,��������1+��L�������b	���1+�A'�*���������0�/�A�����0��qdU��
/j���j�����*�������������������������1+�"�����*����b	���������/�����������c�/�������0�����������������,������mW1+��7�����1+�����������b	������b	��#��/b	�T�����b	��A�0�3���A��� �����4M$�4��>j!y���������I����
�a��������-����N5���+���0/�00�����=��9���-,-,�/��12�b	����������b	��34����A�/00/A����II8��?��/�2��������@����������������$+28=<FFMT^fmu}���������������� $(,18:0BELLLRSVW`jt}������������������	'(18AHQX_fpw���������������������"#$%&'()*+,-./0123456789:;<=>?BBBCCDDDEEEEFFFFGGGHHHHIIIIJJJJKKKKLLLLMMPW^fnv~�������������������								 	$	(	,	0	4	8	8	=	F	L	M	N	O	R	V	]	d	e	i	p	y	~	�	�	�	�	�	�	�	�	�	�	�	�	�	�	


)
2
6
<
C
J
Q
Z
[
^
e
l
u
v
w
x
y
z
{
|
}
~

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

#-87HGV_������������")/@FLRX^djpv|�����������������������



#
,
0
4
8
<
B
G
L
P
T
X
\
`
h
l
p
t
x
|
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
$+2;DLT[ckry���������������������&',48>AJMTWXZ[dmr{��������������������������
 "+3ABY]cijs|�����������������������
"),-0ABCLV_eou~��������������587HLQUYGnu|������������������������������������
((6:>BFLQVZ^bfjnrvz~�����������������!*1;BKLOW_is}�������������������%89:=>?@CDEHILMPQTUXY\_befgjknosG�JHI����������D����~��E�������XYZ[KLMN^_SROPQVW\]aTU`	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCFbcdefghijklmnopqrstuvwxyz{|}����������@reason@exit_valuetoo many arguments (%lu)Kernel#procProc.new`&block`#<%li:%p %li:%d%p(&%+li) (lambda)callable object is expected#<% li: (% li) (not-implemented)%li=...%li: ...**%li&%li**nil<empty_iseq>(binding)aritylambda?curryruby2_keywordsLocalJumpErrorSystemStackErrorstack level too deeporiginal_nameownerunbindsuper_methodpublic_methodUnboundMethodbind_callpublic_instance_methodBindinglocal_variable_getlocal_variable_setlocal_variable_defined?Skipping set of ruby2_keywords flag for proc (proc created from method)Skipping set of ruby2_keywords flag for proc (proc accepts keywords or proc does not accept argument splat)Skipping set of ruby2_keywords flag for proc (proc not defined in Ruby)wrong local variable name `%1$s' for %2$srb_method_entry_min_max_arity: invalid method entry type (%d)undefined singleton method `%1$s' for `%2$s'singleton method called for a different objectbind argument must be an instance of % lilocal variable `%1$s' is not defined for %2$sminimum argument number out of range: %dmaximum argument number out of range: %dCapturing the given block using %smethod_callable_method_entry: not callable.wrong argument type %s (expected Proc/Method/UnboundMethod)can't bind singleton method to a different classbind argument must be a subclass of % limain.define_method in the wrapped load is effective only in wrapper moduleundefined method `%1$s' for `%2$s'can't call unbound method; bind firstCan't create Binding from C level Proc ��p����������������������tried to create Proc object without a block/bin/shgetpwnam_rcan't find user for %sgetgrnam_rcan't find group for %ssigfillsetpthread_sigmask stopped SIG%s (signal %d) stopped signal %d exit %d (core dumped)duplex IO redirectionwrong exec redirectnegative file descriptorfd %d specified twicefcntl(F_GETFD)getresuid(2)getresgid(2)signal to obtain old actionsigprocmasktoo many groups, %d maxunexpected unit: %ligetrusageinvalid resource value: %lipid %ld#<%s: clock_getresinvalid resource name: % ligetrlimitsetrlimitgettimeofdayclockclock_gettimeprocess.cwrong exec rlimit optionpgroup option specified twiceunsetenv_otherschdir option specified twiceumask option specified twiceclose_othersuid option specified twicegid option specified twicewrong exec redirect actionwrong exec option*?{}[]<>()~&|\$;'`"
#wrong first argumentchild fd %d is not redirectedCommand failed withsetpgiddup2fcntl(F_SETFD)cannot close fd before spawnsetgidsetuidnoclosenochdir/dev/nulldaemonfork(2)getlogin_rgetpwuid_r$?$$forkexit!sleepabortProcessWNOHANGWUNTRACEDlast_statuskillwait2waitpidwaitpid2waitalldetachWaiterStatusstopped?stopsigsignaled?termsigexited?exitstatuscoredump?ppidgetpgrpsetpgrpgetpgidgetsidsetsidgetprioritysetpriorityPRIO_PROCESSPRIO_PGRPPRIO_USERRLIM_SAVED_MAXRLIM_INFINITYRLIM_SAVED_CURRLIMIT_ASRLIMIT_CORERLIMIT_CPURLIMIT_DATARLIMIT_FSIZERLIMIT_MEMLOCKRLIMIT_MSGQUEUERLIMIT_NICERLIMIT_NOFILERLIMIT_NPROCRLIMIT_RSSRLIMIT_RTPRIORLIMIT_RTTIMERLIMIT_SIGPENDINGRLIMIT_STACKeuid=egid=initgroupsmaxgroupsmaxgroups=CLOCK_PROCESS_CPUTIME_IDCLOCK_THREAD_CPUTIME_IDCLOCK_REALTIME_COARSECLOCK_REALTIME_ALARMCLOCK_MONOTONIC_RAWCLOCK_MONOTONIC_COARSECLOCK_BOOTTIMECLOCK_BOOTTIME_ALARMCLOCK_TAIcstimecutimeTmsUIDGIDrideidchange_privilegegrant_privilegeeid=re_exchangere_exchangeable?sid_available?from_nameSysgetuidgeteuidgetgidgetegidsetruidsetrgidseteuidsetegidsetreuidsetregidsetresuidsetresgidissetugidpgroupnanosecondfloat_microsecondfloat_millisecondfloat_secondTIME_BASED_CLOCK_REALTIMETIMES_BASED_CLOCK_MONOTONIChertzexec_arg���s�������s��8��s��s��s��s��s��s��h����s��s��s����� ��L�K��K�K�K�K�K�K�K�K�K�K�K�K�K�dM�K�!.:breakcasecontinuedodoneelifelseesacevalexecexitexportfiforifinreadonlyreturnsetshiftthentimestrapunsetuntilwhilerlimit_ruby_waitpid_lockedmaxgroups %d should be positiveenvironment name contains a equal : %scan't handle UID while evaluating block given to Process::UID.switch methodcan't handle GID while evaluating block given to Process::UID.switch methodset_blocking failed reading child error!ruby_thread_has_gvl_p() && "must not have GVL"negative process group ID : %ldunsetenv_others option specified twiceclose_others option specified twiceexception option specified twicewrong exec redirect symbol: %liwrong exec option symbol: % licyclic child fd redirection from %dexception option is not allowedGETTIMEOFDAY_BASED_CLOCK_REALTIMETIMES_BASED_CLOCK_PROCESS_CPUTIME_IDGETRUSAGE_BASED_CLOCK_PROCESS_CPUTIME_IDCLOCK_BASED_CLOCK_PROCESS_CPUTIME_IDe��Arandom data too short %ldrandom data too long %ldinvalid argument - %li/dev/urandomfailed to get urandomwrong dump datawrong valuerandom number too small %grandom number too big %grandom number too small %ldrandom number too big %ldsrandRandomleftnew_seedFormatterrandom_numberrandom/MT�������������������������A�<(... ... ...)(... .. ...)step can't be negativecan't iterate from %s`initialize' called twicebad value for rangenot a dumped range objectcan't do binary search for %srange.cargc > 0%ld..%s%ld out of rangeexclRangecover?cannot convert endless range to an arraycannot get the first element of beginless rangecannot get the last element of endless rangeRB_INTEGER_TYPE_P(b) && RB_INTEGER_TYPE_P(e)cannot get the minimum of beginless rangecannot get the minimum of endless range with custom comparison methodcannot get the maximum of endless rangecannot get the maximum of beginless range with custom comparison methodcannot exclude non Integer end valuecannot exclude end value with non Integer begin valuerb_int_range_lastRationalnot an integer%s can't be coerced into %s@numerator@denominatorgcdgcdlcmrational.somarshaled rational must have an array whose length is 2 but %ldcan't convert nil into Rationalundefined group name reference: % liincompatible encoding regexp match (%s regexp with %s string)variable $KCODE is no longer effective; ignoredvariable $KCODE is no longer effectivevariable $= is no longer effective; ignoredvariable $= is no longer effectivetoo short escaped multibyte characterescaped non ASCII character in UTF-8 regexphistorical binary regexp match /.../n against %s stringUTF-8 character in non UTF-8 regexpcan't make regexp with dummy encodingincompatible character encoding/.../n has a non escaped non ASCII character in non ASCII-8BIT scriptencoding mismatch in dynamic regexp : %s and %sincompatible encodings: %s and %sASCII incompatible encoding: %sencoding option is ignored - %sinvalid group name reference formattoo short escape sequenceduplicate meta escapetoo short meta escapetoo short control escapeduplicate control escapeunexpected escape sequenceinvalid escape codeinvalid multibyte escape: /to_regexpuninitialized MatchDatauninitialized Regexpinvalid Unicode rangeinvalid multibyte characterinvalid Unicode listcan't modify literal regexpalready initialized regexp(?index %d out of matchesregexp preprocess failed: %s#<%li: %li>no arguments given(?!)flags ignoredRegexpError$~$&$`$'$+$=$KCODE$-Klast_matchcasefold?fixed_encoding?named_capturesIGNORECASEEXTENDEDMULTILINEFIXEDENCODINGNOENCODINGpre_matchpost_match����������������@��@��@��@��@��@��@��@��@��@��@��(��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��0��@��@��@��@����@��?��@�������@��@��@��@��@��@��@����@��@��@�� ��@����@�����@��������������������o��o��o��o��o��o��o��o��o��o��o����o��o��o��o��o��o��o��o��o����o��o��\��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o����o��o��o��o��o��o��o��o��o��o��o��o��\��o��o��o��o���o��o����`3�`3�`3�`3�`3��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�`3��2��2�`3�`3��2��2��2�`3�`3�`3�`3��2�`3�`3��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�`3��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�`3�`3�`3�`3��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2��2�`3�`3�`3��2�2�3�d3�43�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�3�c2�c2�D2�D2�c2�c2�c2�D2�D2�D2�D2�c2�D2�D2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�D2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�D2�D2�D2�D2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�c2�D2�D2�D2��=�?��>��>��>�H?��>��>��>��>��=�?�?�?�?�?�?�?�?�?��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��>��?��>��>��>��>��>��>��>��>��>��>�>�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������������������������������������0J� J�J�I��I��I�8K�(K�K�K��J��J��K�K�K�pK�pK�K��N�L�L�L��L�M�N�`L�N�L�N�LQ�O�O�O��O�tP�\O�O��P�dQ�Q��R�R�R�pR�pR�T�4T�S�TS�S�T�T�U��T�T�T�U��U�xU�U�U��U��V�V�V�PV�PV��W��W�W�W�W�Z�[��Z�pZ�Z� [�]�\�\�\��^��]�P^��\�^�]��]�a�a�a�La�La�|a�\a�4a�=a�k�j�hi�hi�0j�Xj�j� i�i�i��i��}�~�d~�~�~����|��|�<}�t}�@���������Й����ќ�Ԟ��ќ��ќ�ќ�ќ��ќ�ќ�ќ�ќ�ќ�ќ�ќ�o��`��ȩ�ȩ�ȩ��`������H���P��x�������0����������	



��M����}od[SMGC?;8520-+*(&%$"! 










Alnum
AlphaBlankCntrlDigitGraphLowerPrintPunctSpace	Upper
XDigitASCIIWordAaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~�����������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~�����������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������������������������������������no support in this configurationinvalid combination of optionsnot supported encoding combinationtoo many capture groups are specifiedinvalid character property name {%n}group number is too big for capture historymultiplex definition name <%n> callundefined group <%n> referenceinvalid char in group name <%n>numbered backref/call is not allowed. (use name)too short multibyte code stringtoo many multibyte code ranges are specifiedmismatch multibyte code length in char-class rangeupper is smaller than lower in repeat rangetoo big number for repeat rangeinvalid repeat range {lower,upper}invalid pattern in look-behindend pattern with unmatched parenthesistarget of repeat operator is invalidtarget of repeat operator is not specifiedunmatched range specifier in char-classchar-class value at start of rangechar-class value at end of rangecan't convert to wide-char on specified multibyte-encodingdefault multibyte-encoding is not setundefined error codetoo big wide-char valueinvalid code point valuenever ending recursionmultiplex defined name <%n>undefined name <%n> referenceinvalid group name <%n>group name is emptytoo long wide-char valuetoo short digitsinvalid backref number/nametoo big backref numberempty range in char classinvalid conditional patterninvalid POSIX bracket typeundefined group optionend pattern in groupunmatched close parenthesisnested repeat operatorinvalid control-code syntaxinvalid meta-code syntaxend pattern at controlend pattern at metaend pattern at escapepremature end of char-classempty char-classend pattern at left bracketend pattern at left braceinvalid argumentparse depth limit overmatch-stack limit overunexpected bytecode (bug)undefined bytecode (bug)stack error (bug)internal parser error (bug)undefined type (bug)\x%02x����|��l����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������\��L��<��,���������ܾ�̾������|��l��\��L��<��,������������������������������������������������������������������������������������ܽ�̽������|��l��\��L��<��,����������ܼ�̼��������������������������������������������������������������������������|���������l��\������L��<��,�������������ܻ���̻��: /��l��l��l��\�����\��\��	��d������4��������Unknown escape \%c is ignoredinvalid Unicode Property \%c:]invalid back referenceinvalid subexp callGrapheme_Cluster_Break=ExtendGrapheme_Cluster_Break=LGrapheme_Cluster_Break=VGrapheme_Cluster_Break=LVGrapheme_Cluster_Break=LVTGrapheme_Cluster_Break=TRegional_IndicatorExtended_Pictographic*?+ and ??+? and ?+?character class has '%s' without escapecharacter class has duplicated rangeregular expression has '%s' without escapeGrapheme_Cluster_Break=ControlGrapheme_Cluster_Break=PrependGrapheme_Cluster_Break=SpacingMarkregular expression has redundant nested repeat operator '%s'nested repeat operator '%s' and '%s' was replaced with '%s' in regular expression�:��:�;�;�:�;�;�;�;�;�;�;�;�;�;�;�;�(;�;�8;�;�:�_B�_B�_B�_B�_B�_B�_B�_B�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�@B�7F�7F�7F�B�7F�7F�7F�7F�7F�7F�7F�C�7F�7F�C�7F�7F�7F�`C�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�7F�GC�7F�7F�7F�F�7F�7F�7F�7F�7F�7F�D�C�7F�7F�.C�7F�B�7F�A�tA�h�Dh�Rh�Rh�h�dh�h�dh��h��h�dv�lv�v��u��v�,v�u����h�����~���P�����������������������������������P��X�������������������������������������������̙����������������������L��������������������������������,��d������������������������������|��ԗ���:��0��'��|��O��O��O��O��/��������������������O��O���O��Ҟ���O��V���O���O��O�����O��O����O��O��O��O��B��ۜ�����O��O��O����ǜ�O��ɛ�O��O��O��O��O���O��+��O���O��O��ޛ��O��O����O��O��O���B��O��O���O��k��O����E��O����ڝ�ŝ���İ���G����Զ�l��T��D��l��l��T����<��,���<���ܷ�|��T���������������������������������������������������������������������������<���������������������������������������������������������������H�����������������������������������������o�����������������������������������������������������������������������������������������������'�����w��w��w�����w��w��w��w��w��w��w��w��w��w��w��w�����w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w��w����w��w����w��w��w��w����w��w��i��I��w��w��w��w��w��*��w����w��w����alnum
alphablankcntrldigitgraphlowerprintpunctspace	upper
xdigitasciiwordV��;k�����\���������p��h��V�``�� \V���cn
��\V��C ���\V�C ��\V�?w`K���\V���\�*�P\V*��@\V���\"�\\shebang line ending with \r may cause problemsdummy encoding is not acceptable - %s $_ value need to be String (%s given)no %s allowed while running setuidno %s allowed while running setgidinvalid name for global variable - don't know how to dump `%.*s',unknown argument for --%s: `%.*s'unknown argument for --debug: `%.*s'unknown warning category: `%s'ruby -T will be removed in Ruby 3.0missing argument for --disablemissing argument for --encodingmissing argument for --internal-encodingmissing argument for --external-encodinginvalid MJIT option `%s' (--help will show valid MJIT options)invalid switch in RUBYOPT: --dumpinvalid option --%s  (-h will show valid options)invalid option -%c  (-h will show valid options)invalid switch in RUBYOPT: -%cinvalid switch in RUBYOPT: --%s-0[octal]  specify record separator (\0, if no argument)--copyright  print the copyrightgems  rubygems (default: enabled)--jit-warnings  Enable printing JIT warningsUsage: %s [switches] [--] [programfile] [arguments]
yydebug  yydebug of yacc parser generatorparsetree_with_comment  AST with commentsdeprecated  deprecated featuresexperimental  experimental features-K is specified; it is for 1.8 compatibility and may cause odd behavior--jit-debug  Enable JIT debugging (very slow), or add cflags if specified--jit-wait  Wait until JIT compilation finishes every time (for testing)--jit-save-temps  Save JIT temporary files in $TMP or /tmp (for testing)--jit-verbose=num  Print JIT logs of level num or less to stderr (default: 0)--jit-max-cache=num  Max number of methods to be JIT-ed in a cache (default: 100)--jit-min-calls=num  Number of calls to trigger JIT (for testing, default: 10000)did_you_mean  did_you_mean (default: enabled)rubyopt  RUBYOPT environment variable (default: enabled)frozen-string-literal  freeze all string literals (default: disabled)jit  JIT compiler (default: disabled)--dump={insns|parsetree|...}[,...]  dump debug information. see below for available dump list--enable={gems|rubyopt|...}[,...] , --disable={gems|rubyopt|...}[,...] enable or disable features. see below for available features--external-encoding=encoding , --internal-encoding=encoding specify the default external or internal character encoding--verbose  turn on verbose mode and disable script from stdin--version  print the version number, then exit--help  show this message, -h for short message-a  autosplit mode with -n or -p (splits $_ into $F)-Cdirectory  cd to directory before executing your script-d , --debug set debugging flags (set $DEBUG to true)-e 'command'  one line of script. Several -e's allowed. Omit [programfile]-Eex[:in] , --encoding=ex[:in] specify the default external and internal character encodings-Fpattern  split() pattern for autosplit (-a)-i[extension]  edit ARGV files in place (make backup if extension supplied)-Idirectory  specify $LOAD_PATH directory (may be used more than once)-l  enable line ending processing-n  assume 'while gets(); ... end' loop around your script-p  assume loop like -n but print line also like sed-rlibrary  require the library before executing your script-s  enable some switch parsing for switches after script name-S  look for the script using PATH environment variable-v  print the version number, then turn on verbose mode-w  turn warnings on for your script-W[level=2|:category]  set warning level; 0=silence, 1=medium, 2=verbose-x[directory]  strip off text before #!ruby line and perhaps cd to directory--jit  enable JIT with default options (experimental)--jit-[option]  enable JIT with an option (experimental)-h  show this message, --help for more infounknown encoding name - %schopgsub  %.*s%-*.*s%-*s%s
casecmp%s already set to %li$0 not initializedhelpparsetreeinsnsbut only [%.*s].parsetree_with_commentcopyrightyydebuggemsdid_you_meanrubyoptjitdebug features are [%.*s].ASCII-8BITUTF-8--encoding-s-Sno code specified for -e-xCan't chdir to %sCan't chdirmissing argument for -Emissing argument for --enableextra argument for %s: %sinternal-encodingexternal-encodingverbose-warnings-debug=-debug-wait-verbose=-max-cache=-min-calls=missing argument for --dumpRUBYLIB@gem_prelude_indexTMP_RUBY_PREFIXno Ruby script found in input -$VERBOSE$-v$-w$-W$DEBUG$-d$0$PROGRAM_NAMEargv0setproctitleARGVDump List:insns  instruction sequencesparsetree  ASTFeatures:Warning categories:JIT options (experimental):RUBYOPTRUBYPATHprogram input from stdinGemDidYouMeanSyntax OKTOPLEVEL_BINDING$-p$-l$-a-c  check syntax onlyt��L��L��L��L��L��L��L��L��L��L��L��L��h��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L����L��L��`��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��L��X��L����@��L��L�����L����L��L��L��L��L��L��L������`��L����X��L��L��L��L��L��L��L��L�����L�������0��L��L�������L��L��x��L��P��L��(��L�������L��L��h��@����������������t�������������������������������������������������������������������t������������������������������������frozen_string_literalgems, did_you_mean, rubyopt, frozen_string_literal, jitversion, copyright, usage, help, yydebug, syntax, parsetree, parsetree_with_comment, insnsno-$SAFE will become a normal global variable in Ruby 3.0rb_safe_level_2_warning will be removed in Ruby 3.0rb_safe_level will be removed in Ruby 3.0rb_set_safe_level_force will be removed in Ruby 3.0rb_set_safe_level will be removed in Ruby 3.0rb_secure will be removed in Ruby 3.0Insecure operation `%li' at level %dInsecure operation at level %drb_secure_update will be removed in Ruby 3.0rb_insecure_operation will be removed in Ruby 3.0rb_check_safe_obj will be removed in Ruby 3.0$SAFE=2 to 4 are obsolete$SAFE should be >= 0Insecure operation - %liInsecure operation: -r$SAFEbad signal type %ssignal name with null bytenegative signal name: % liunsupported signal `%.*s%li'Illegal instruction at %ppthread_sigmask:unblockSEGVSegmentation fault at %pBUSBus Error at %pSIG%sSIG%uinvalid signal number (%d)SIGbad handlerSYSTEM_DEFAULTSIG_IGNSIG_DFLIGNOREEXITSignaltrapsignamesignmcan't trap reserved signal: SIG%scan't trap reserved signal: %d��������������������}�}�}�������@�����}�4�}�(�}�}���}���������������������������(� handler
 received in failed to install RUBY_SIGCHLD handlerfailed to install SIGSYS handlerfailed to install SIGPIPE handlerfailed to install SIGSEGV handlerfailed to install SIGILL handlerfailed to install SIGBUS handlerfailed to install SIGUSR2 handlerfailed to install SIGUSR1 handlerfailed to install SIGALRM handlerfailed to install SIGTERM handlerfailed to install SIGQUIT handlerfailed to install SIGHUP handlerfailed to install SIGINT handlerSIGEXITHUPINTQUITILLTRAPABRTIOTFPEKILL	BUSSEGVSYSPIPE
ALRMTERMURGSTOPTSTPCONTCHLDCLDTTINTTOUIOXCPUXFSZVTALRMPROFWINCHUSR1
USR2PWRPOLLrb_vsprintf reenterednumbered(%d) after namedinvalid index - %d$too big stringtoo big specifierInf0x0X0b0Bmalformed format stringflag after widthflag after precisionvalue given twice - %d$too few argumentswidth given twicewidth after precisionnamed%.*s after <%li>named%.*s after numberedone hash requiredkey%.*s not foundprecision given twiceprec too bigprecision too biginvalid format character - %%%%c requires a characterinvalid characterinvalid mbstring sequencenumbered(%d) after unnumbered(%d)malformed format string - %%*[0-9]unnumbered(%d) mixed with numberedunnumbered(%d) mixed with namedcannot construct wchar_t based encoding string: %sincomplete format specifier; use %%%% (double %%) insteadmalformed format string - %%%ctoo long name (%zu bytes) - %.*s...%cnamed%.*s after unnumbered(%d)too many arguments for format stringmalformed name - unmatched parenthesis4 �]�]��"�]�]�]�]�]�]�"��"�]�M��"�]��"�&�&�&�&�&�&�&�&�&�]�]�]�]�]�]�]�"�]�]�\#�9#�]��]�]�]�]�
$�]�]�L$�]�]�]�]�]�$�]�]�$�]�]�]�]�]�]�]�]�"�]�"��9#�!��!�Y�]�]��!�]�!�{!�� �]�]�O ��!�F"�]�]�`�]��!��[�e[�e[�e[�e[�e[�e[�e[�e[�e[��[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�[�e[�e[�<[�e[�4Z�e[�e[�e[�e[�\�[\�e[�6\��[�e[�]�O]�O]�O]�O]�O]�O]�O]�O]�O]�e[�e[��]�e[�e[�e[�e[�Y�fX�e[�e[�Y�e[�Y�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�e[�fX�e[�e[�e[�e[�e[�e[�e[�e[�Y�fX�eV�fX�Y�S�Y�e[�fX�e[�e[�e[�e[�e[�fX�eP�e[�e[�eP�e[�fX�e[�e[�fX�e[�e[��]�0000000000000000                st_table too bigh���������0������������ 	�	



 @ @� @ � !!""##$$% %&@&'�'(())**++,,- -.@./�/00112233445 56@67�78899::;;<<= =>@>?�%*d%0*d%*ld%0*ld��4��t��4��4��4��4��4��4��4����4��4��ķ�ȷ�ȷ�ȷ�ȷ�ȷ�ȷ�ȷ�ȷ�ȷ���4��4��4��4��4��4��\���<��ܵ������\����<��4��4����T��t�����|��4���������<�������<�����L��4��4��4��4����4��<�����d��d����4��\�����4���������l�����4��|��4�������,��������ܵ�T���AMPMJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberSundayMondayTuesdayWednesdayThursdayFridaySaturday%+*ld%+.*ld%a %b %e %H:%M:%S %Y%m/%d/%y%02d%I:%M:%S %p%H:%M%e-%^b-%4YcCxXyYdeHkIlmMSuUVwWy%0*ld%0*d%Y-%m-%dOBJ_FROZEN(ret)string.c!FL_TEST_RAW(ret, FL_EXIVAR)wide char encoding: %sNULL pointer giventoo many optionsinvalid second optioninvalid optiontype mismatch: String giveninput string invalidindex %ld out of stringstr2 != str!FL_TEST((str), STR_SHARED)wchar encoding given!STR_EMBED_P(shared)OBJ_FROZEN(shared)OBJ_FROZEN(str)OBJ_FROZEN_RAW(tmp)string size too bigstring sizes too bigzero width paddingcapacitycapa >= lenstring contains null charcrypt`$;'%+li is not a symboltype mismatch: %s given$; is set to non-nil valuenon-ASCII character detectedunterminated dumped stringinvalid escapeblock should not cheat%.*ld%.*dregexp not matchedindex %d out of regexpregexp group %d not matchednegative length %ldbeg <= slenstring not matched\u%04X\u{%X}\x{%X}\0\n\r\t\f\v\b\a\e\c?value of %li must be Stringno receiver givenrb_vm_fstring_table()casecmp?succ!next!setbytebyteslicescrubscrub!undumpasciiturkiclithuanianfoldupcasedowncasecapitalizeswapcaseupcase!downcase!capitalize!swapcase!hexoctgrapheme_clustersinternto_symstart_with?end_with?scanljustrjustcenterlstriprstripdelete_prefixdelete_suffixgsub!chop!lstrip!rstrip!delete_prefix!delete_suffix!tr_ssqueezetr!tr_s!delete!squeeze!each_grapheme_clusterrpartitionforce_encodingvalid_encoding?ascii_only?UnicodeNormalizeunicode_normalizeunicode_normalize!unicode_normalized?$-Fall_symbolsid2namemapping_buffer!FL_TEST_RAW(ret, STR_FAKESTR)RBASIC_CLASS(ret) == rb_cStringinvalid range "%c-%c" in string transliterationinvalid range in string transliterationcannot compile grapheme cluster regexp: %stemporal unlocking already unlocked stringoption :fold only allowed for downcasingincompatible encoding with this operation: %sunicode_normalize/normalize.rbnegative string size (or size too big)can't modify string; temporarily lockedrb_tainted_str_new is deprecated and will be removed in Ruby 3.2.rb_tainted_str_new_cstr is deprecated and will be removed in Ruby 3.2.about to free a possible shared rootRSTRING(orig)->as.heap.ptr == RSTRING(tmp)->as.heap.ptrRSTRING(orig)->as.heap.len == RSTRING(tmp)->as.heap.lentermlen < RSTRING_EMBED_LEN_MAX + 1negative expanding string sizeRBASIC_CLASS(str1) == rb_cStringRBASIC_CLASS(str2) == rb_cStringreplacement must be valid byte sequence '%+li'salt too short (need >=2 bytes)value of %li must be String or Regexpvalue of $; must be String or Regexptemporal locking already locked stringcan't set length of shared stringboth of block and replacement givendumped string contained Unicode escape but used force_encodingdumped string has unknown encoding namehex escape and Unicode escape are mixedinvalid dumped string; not wrapped with '"' nor '"...".force_encoding("...")' formi��U��J��?��4��)��������}��s��i��_��U��K��E�� ��������x��j��\��N������������������������������������������������������������������������������������������������P������������������0��na��ha��^a��Ta��Ja��@a��6a��0a��*c�� c��vc��lc��bc��Xc��Nc��Hc��;f��0f��|f��qf��ff��[f��Pf��If��f���g���g���g��yg��ng��cg��\g����������̳����������������������k���ʹ��´�����������������������
���
���
��{
��m
��_
��Q
���
���	��h	���	���	���	���	���	���	��������~��t��j��`��V��P��������������������������X��X��������������������������������������������������������������������������������������������������������������������������������������������������������������������������X��������������������������������������������������������������������������P�������������������������������������������������������������<O��,O��O��O���N���N���N���M���M���M���M���M���M���M���M���M���M���M���M���M��|N���N���N���N���N���N���N��hN���P���P���P���P���P���P���P���P���P���P���P���P���P��(N��.force_encoding("rb_str_sub_bang\X\X\X\XInit_String?��������?�....dup.force_encoding("%s")str_replacerb_str_splice_0rb_str_updatestr_succstr_buf_catrb_str_change_terminator_lengthrb_str_modify_expandrb_str_opt_plusstr_shared_replacerb_str_tmp_frozen_releasestr_new_frozenfstr_update_callbackregister_fstringrb_fstring333333�?offset %ld too small for struct(size:%ld)offset %ld too large for struct(size:%ld)identifier %1$s needs to be constantredefining constant %li::%liwrong number of arguments (given %d, expected 0)struct size differs (%ld required %ld given)struct size differs (%d required %ld given)wrong argument type %li (expected Array or nil)no member '%1$s' in structstruct.cduplicate member: %sinconsistent structkeyword_initinvalid struct member: %liduplicate member: %listruct size mismatch(keyword_init: true)broken membersunknown keywords: %sstruct size differsuninitialized structcorrupted struct#<struct :...>`%1$s' is not a struct memberStruct__members____members_back____keyword_init__non-symbol object %s:%lx for %li in symbol table%p can't remove str from str_id (%s)invalid symbol in encoding %s :%+lisymbol table overflow (symbol %li)wrong argument type %s (expected Symbol)cannot make operator ID :%li attrsetcannot make unknown type ID %d:%li attrsetcannot make unknown type anonymous ID %d:%lx attrsetcannot make anonymous %.*s ID %lx attrset%+li is not a symbol nor a stringinvalid symbol: %smethod_missing__send____attached__btbt_locationslocalsnot_1_2_3_4_5_6_7_8_9respond_to?respond_to_missing?<IFUNC><CFUNC>core#set_method_aliascore#set_variable_aliascore#undef_methodcore#define_methodcore#define_singleton_methodcore#set_postexecore#hash_merge_ptrcore#hash_merge_kwdcore#raiseX�����������������������������������������������������������������������������������������������������������������������������������X������������������������������د��X�������X���������������������������������������������������������h������@�������(�����������������������������������������������������������������������������������������������������������б��������������������������������������������������������������������������������������������������������������������������������������titlecaseletterlocalinstanceinvalidglobalattrsetconstclassjunk�..�...�+@�-@�**�<=>�<<�>>�<=�>=�==�===�!=�=~�!~�[]�[]=�::�&&�||�&.ruby-mjitworkerpthread_cond_timedwaitkey not found: %+lideadabortingtimer_settime (arm)UBF_TIMER_POSIX unknown statetimer_settime (disarm)%+li not initializedqueue emptythread_sync.cqueue_length(self, q) == 0timer_posix was not dead: %u
unknown mask signaturecan't alloc threadsleep_forever#<%li:%p@%li %s>queue size must be positivepthread_mutex_lockpthread_mutex_unlockunexpected THREAD_STOPPEDunexpected THREAD_KILLEDqueue closedqueue full mutex:%p cond:%zu
   uninitialized threadpthread_mutex_initpthread_mutex_destroypthread_cond_initpthread_cond_destroypthread_cond_signalpthread_attr_init(&attr)pthread_attr_destroy(&attr)can't create Thread: %smust be called with a blockalready initialized threadrb_native_cond_broadcastpthread_cond_waitpthread_mutex_trylockthread_pthread.cold == thinvalid keeping_mutexes: %skilled threadblock is needed.releaseddeadlock; recursive lockingclosed streamtimer_settime (destroy)RTIMER_DEAD unexpectedtimer_deletewaiting count overflowwaiting count underflowdestroyed thread shield - %pneverimmediateon_blockingstoppassabort_on_exceptionabort_on_exception=report_on_exceptionreport_on_exception=handle_interruptpending_interrupt?terminatewakeuppriority=thread_variable_getthread_variable_setthread_variablesthread_variable?stop?safe_levelname=ThreadGroupencloseenclosed?addDefault__recursive_key__ThreadErrorMutexlocked?try_locksynchronizeClosedQueueErrornum_waitingenqdeqSizedQueuemax=ConditionVariablethread.rbthread_shieldthgroupcondvarsized_queuemutexrb_thread_wakeup_timer_thread: writecan't move to the frozen thread groupcan't move to the enclosed thread groupcan't move from the frozen thread groupcan't move from the enclosed thread groupTarget thread must not be current threadTarget thread must not be main threadthread_join: Fixnum (%d) should not reach here.thread_join: THROW_DATA should not reach here.Thread#safe_level will be removed in Ruby 3.0ASCII incompatible encoding (%s)UBF_TIMER_POSIX bad state: %u
consume_communication_pipe: readpipe creation failed for timer: %s, scheduling brokenclose_invalidate: signal_self_pipe.normalclose_invalidate: signal_self_pipe.ub_maintimer_create failed: %s, signals racyclass or module required for rescue clauseuninitialized thread - check `%li#initialize'can't modify frozen thread localsAttempt to unlock a mutex which is not lockedAttempt to unlock a mutex which is locked by another threadsleeper must not be more than vm_living_thread_num(vm)* %+li
   rb_thread_t:%p native:%p int:%u
    depended by: tb_thread_id:%pNo live threads left. Deadlock?
%d threads, %d sleeps current:%p main thread:%p
can't start a new thread (frozen ThreadGroup)pthread_attr_setstacksize(&attr, stack_size)pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED)pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED)already initialized thread - %li:%liinvalid inspect_tbl pair_list for %+li in %+li[BUG] rb_thread_call_with_gvl() is called by non-ruby thread
rb_thread_call_with_gvl: called by a thread which has GVL.rb_thread_terminate_all: called by child thread (%p, %p)can't be called from trap contextdo_mutex_lock: mutex is not owned.thread_start_func_2 must not be used for main thread terminated with exception (report_on_exception is true):
thread_start_func_2: locking_mutex must not be set (%p:%lx)stopping only thread
	note: use sleep to stop forevertimed out waiting for timer to armstream closed in another threadqueue_closed_resultrb_thread_call_with_gvl�rb_sigwait_fd_putdst?time interval%f out of Time rangecan't convert %li into %s(NO-TIMEZONE-ABBREVIATION)gmtime/localtime errortime out of rangeuninitialized %lialready initialized %liutc_offset out of rangemon out of rangemday out of rangehour out of rangemin out of rangesec out of rangesubsecx out of rangenegative ndigits givenargument out of rangetime out of system rangegmtime errortime + time?localtimew errorisdst is not set yetinvalid format: %liinvalid format: %s%Y-%m-%d %H:%M:%S UTC%Y-%m-%d %H:%M:%S %z%a %b %e %T %Y%Y-%m-%d %H:%M:%S%li.%09ldmarshaled time format differstdabbr%Zstrftimesubmicronano_numnano_denlocal_to_utcutc_to_localyearmdayhourisdstfind_timezoneTimemktimelocaltimegmtimegetlocalgetgmgetutcasctimemonthwdayydaygmtoffgmt_offsetutc_offsetutc?gmt?sunday?monday?tuesday?wednesday?thursday?friday?saturday?tv_sectv_usectv_nsecsubsectmto_timefrom_timetime interval must not be negativeunexpected divmod result: into %lican't convert nil into an exact numbercan't convert %li into an exact numberTime#succ is obsolete; use time + 1year too %s to marshal: %li UTCformat should have ASCII compatible encodingstrftime called with empty format string����P������� ����������������������"+HH:MM", "-HH:MM", "UTC" or "A".."I","K".."Z" expected for utc_offsetjanfebmaraprmayjunjulaugsepoctnovdec�������������������������������������������������������������������������������������������	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

																														






























																														






























����;Zx����0N����:Yw����/Mxml_text_escapexml_attr_content_escapexml_attr_quotecrlf_newlinecr_newlineuniversal_newlinexml_textxml_attr_contentno-conversion with incomplete %s on %s%s followed by %s on %serror_bytesreadagain_bytesincomplete_inputsource_encoding_namedestination_encoding_namesource_encodingdestination_encodingU+%04X%s from %s to %serror_charinvalid library name - (null)�US-ASCII&#x%X;negative output_byteoffsetoutput_byteoffset too bignegative output_bytesizetoo long conversion resultconverter already finishedcode converter not found (already initializeddecoration failed: %stoo big fallback stringtoo long stringUndefinedConversionErrorInvalidByteSequenceErrorConverterNotFoundErrorencodeencode!Converterasciicompat_encodingsearch_convpathprimitive_convertprimitive_errinfoinsert_outputputbacklast_errorreplacementreplacement=INVALID_MASKINVALID_REPLACEUNDEF_MASKUNDEF_REPLACEUNDEF_HEX_CHARREFPARTIAL_INPUTAFTER_OUTPUTUNIVERSAL_NEWLINE_DECORATORCRLF_NEWLINE_DECORATORCR_NEWLINE_DECORATORXML_TEXT_DECORATORXML_ATTR_CONTENT_DECORATORXML_ATTR_QUOTE_DECORATORincomplete_input?fallbackxmlinvalid_byte_sequenceundefined_conversiondestination_buffer_fullsource_buffer_emptyafter_outputpartial_inputuniversalcrlfcreconv<��L��\��l��|����,���)��#���#��%���"��`$��`&���&���&���+��P(��@'��X+���)��0)���+���+��p+��`+���+���#���"���#��`$���"���%��@"���+���+��0*��@*��P+���-��E-���%��{&���-��&��#+���,���-��g,���%��',���-���+���'���&���-���,���!���)���-���3���3���3���-���3���3���3���-��%s to %s in conversion from %suninitialized encoding converterunknown transcoding instructionunexpected transcode last resulttranscoder from %s to %s has been already registeredoutput_byteoffset+output_bytesize too bigunexpected result of econv_primitive_convertreplacement character setup failedunknown value for invalid character optionunknown value for undefined character optionunexpected value for xml option: %liunexpected value for xml optionunexpected value for newline option: %liunexpected value for newline optionreplacement string is broken: %s as %srb_econv_open_opts called with invalid opthashnot a 2-element array in convpathadding conversion failed: %s to %snot fully converted, %td bytes lefttransient_heap_ptr: unknown obj %s
- transient_heap_dump: %s:%p index:%d objects:%d last_marked_index:%d next:%p
%4d %8d %p size:%4d next:%4d %s
rb_transient_heap_mark: wrong header %s
transient_heap_dump objects:%d marked_objects:%d blocks:%d
transient_heap_block_alloc: failed
Init_TransientHeap: malloc failed.rb_transient_heap_mark: wrong header, %s (%p)rb_transient_heap_promote: realloc failedunsupporeted: %s
using_blocksmarked_blocksfree_blocksgetcwd����������������������������������������������������������������������������������������������������������������������������������ؠ�������}NaNInfinity��ؗ�Ҝ<3���#�I9=��D��2�����[%Co�d(h��7y�ACn����F��?�O8M20�Hw�Z<�s�Ou�?$@Y@@�@��@j�@��.A�cA�חAe��A _�B�vH7B��mB@�0�B�ļ�B4&�kC��7y�AC�؅W4vC�Ngm��C=�`�X�C@��x�DP����KD��M��D������������������������������������������������	�������

 !"#������

 !"#�������������������������������������������������������������������������������������������������������������������������������������0123456789abcdef0123456789ABCDEF��7y�AC�?�����A�5�����?5�5�?�5�����?�?aCoc���?��`�(��?�y�PD�?<�s�Ou@@`global variable `%li' not initializedconstant %2$s::%1$s not definedwrong class variable name %1$salready initialized constant %lialready initialized constant %li::%liprevious definition of %li was hereclass variable % li of %li is overtaken by %liundefined global variable %liglobal variable `%s' not initializedinstance variable %li not initialized`%1$s' is not allowed as an instance variable nameinstance variable %1$s not definedprivate constant %2$s::%1$s referenceduninitialized constant %2$s::%1$sconstant %li::%li is deprecatedclass variable %1$s not defined for %2$sinstance variable %s not initializedno class/module to define constant %lirb_define_const: invalid name `%s' for constantautoload must be constant name: %lican't retrieve anonymous class %li`%1$s' is not allowed as a constant variable name%li with no argument is just ignored%li is a read-only variableempty file name#<Class:%p>#<Module:%p>too many instance variables__autoload__can't alias in traceruninitialized constant %1$sconstant ::%li is deprecatedcannot remove %1$s for %2$snewptrvariable.cundefined class/module % licannot remove %2$s::%1$sautoload_constautoload_iobj_ivar_heap_reallocRUBY_VERSIONRUBY_RELEASE_DATERUBY_PLATFORMRUBY_PATCHLEVELRUBY_REVISIONRUBY_COPYRIGHTRUBY_ENGINERUBY_ENGINE_VERSIONruby2_keywords.rbRUBY_DESCRIPTIONrubyruby - Copyright (C) 1993-2023 Yukihiro Matsumotoruby 2.7.8p225 (2023-03-30 revision 1f4d455848) +JIT [x86_64-linux]ruby 2.7.8p225 (2023-03-30 revision 1f4d455848) [x86_64-linux]�x86_64-linux2023-03-301f4d4558484b370999954f3ede7e3aa3a3a01ef32.7.8wrong number of arguments (given %d, expected %d)wrong number of arguments (given %d, expected %d+)wrong number of arguments (given %d, expected %d..%d)thread_free: locking_mutex must be NULL (%p:%p)thread_free: keeping_mutexes must be NULL (%p:%p)
%li:%li: previous definition of %li was herecalling %s without arguments inside a method may not have the intended effectundefined optimized method: %scref_replace_with_duplicated_cref_each_frame: unreachablerb_method_definition_eq: unsupported type: %d
rb_hash_method_definition: unsupported method type (%d)
RUBY_GLOBAL_METHOD_CACHE_SIZE was set to %d but ignored because the value is not a power of 2.
Keyword flag passed calling internal method, but last entry is not a hash, unsetting keyword flagmethod `%li' called on unexpected immediate object (%p)method `%li' called on terminated object (%p)method `%li' called on broken T_???(0x%02x) object (%p flags=0x%lx)method `%li' called on hidden %s object (%p flags=0x%lx)method `%li' called on unexpected %s object (%p flags=0x%lx)undefined method `%s' for %s%s%sPassing the keyword argument for `%li' as the last hash parameter is deprecatedThe called method `%li' is defined hereThe called method is defined herecall_cfunc_func: unsupported length: %dsuper called outside of methodself has wrong type to call super in this context: %li (expected %li)implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly.Splitting the last argument for `%li' into positional and keyword parameters is deprecatedSplitting the last argument into positional and keyword parameters is deprecatedUsing the last argument for `%li' as keyword parameters is deprecated; maybe ** should be added to the callUsing the last argument as keyword parameters is deprecated; maybe ** should be added to the callvm_make_proc_with_iseq: unreachableCan't create Binding Object on top of Fiber.Skipping set of ruby2_keywords flag for %s (method accepts keywords or method does not accept argument splat)Skipping set of ruby2_keywords flag for %s (method not defined in Ruby)Skipping set of ruby2_keywords flag for %s (can only set in method defining module)Can't call on top of Fiber or Threadretry outside of rescue clausevm_call_cfunc: cfp consistency error (%p, %p)method name must be a Symbol but %li is givenprivate method `%s' called for %s%s%sprotected method `%s' called for %s%s%sundefined local variable or method `%s' for %s%s%ssuper: no superclass method `%s' for %s%s%sRUBY_THREAD_MACHINE_STACK_SIZErespond_to? must accept 1 or 2 arguments (requires %d)%li%crespond_to?(:%li) uses the deprecated method signature, which takes one parameternot defined at the refinement, but at the outer class/moduleputspecialobject insn: unknown value_type %dunknown operand %ld: blame @shyouhei.unimplemented defined? type (VM)superclass mismatch for class %liisns(throw): unsupported throw typeclass variable access from toplevelvm_call_method: unsupported optimized method type (%d)vm_call_method: unsupported method type (%d)Can't eval on top of Fiber or ThreadNot a toplevel InstructionSequencevm_call0_cfunc_with_frame: cfp consistency error (%p, %p)vm_call0: unsupported optimized method type (%d)vm_call0: unsupported method type (%d)wrong argument type %s (expected Proc)rb_eval_cmd will be removed in Ruby 3.0vm_call_super: should not be reachedarity out of range: %d for -2..15method redefined; discarding old %liredefining Object#%s may cause infinite loopredefining `%s' may cause serious problemsattribute accessor as module_functionmodule_function must be called for modulesremoving `%s' may cause serious problemsmethod `%1$s' not defined in %2$sundefining `%s' may cause serious problemsrb_yield_refine_block: an iseq block is requirednoreason%li is not a %sglobal_method_stateglobal_constant_statefilter_defined_class: %sRUBY_GLOBAL_METHOD_CACHE_SIZEno self, no lifeuncaught throw %pvm_get_cref: unreachableno keywords accepted<temp>(eval)globalvm_cref_dup: unreachableno block given (yield)unexpected returnunexpected breakunexpected nextunexpected redo<unknown>no method name givenNULL lambda functionRUBY_THREAD_VM_STACK_SIZERUBY_FIBER_VM_STACK_SIZERUBY_FIBER_MACHINE_STACK_SIZErespond_to? is defined hereunexpected back-refno class variables available%+li is not a class/modulevm_defined: unreachable: %uunknown defineclass type: %dno class/module to add methodbreak from proc-closureTOPLEVEL_BINDING is not builtvm.ccheck_match: unreachableiterator?block_given?catchthrowloopinstance_evalinstance_execpublic_sendmodule_execclass_execmodule_evalclass_evalUncaughtThrowErrortagRubyVMMJITpauseThreaddirect threaded codeoperands unificationinline method cacheINSTRUCTION_NAMESthread_vm_stack_sizethread_machine_stack_sizefiber_vm_stack_sizefiber_machine_stack_sizeDEFAULT_PARAMSremove_methodalias_methodpublicpublic_method_defined?private_method_defined?protected_method_defined?public_class_methodprivate_class_methodno class to make aliasno class to undef methodnot an arrayVM/thread�!��� ��P!��� ��!��p ���8��9��9��9��(9��9��X9��9��9��9��9���8���q��r���q���q��Hr���q��I���q���q�� r��8r���r���r���r���r���r���r��+���r���r��s���r���u��Pw��@w��0w�� w��w��w���v���v���v���v���v���v���v���v��pv��`w��`v��Pv��@v��0v�� v��v��`w��`w��`w��v���u���u���u���u���������̃��̃��t���L���t���L�������<���L���D���(���v��������������������ԅ��ȅ��������������������������t���h���|�\�l��D��Q��Q���j��Q���m��Ol��m��sj��k��:k��Q��Q��Q��Q��Q��~k���k��l��m������������h���ȕ������H���~������(���H���x���н��`���X����� ���`��� ������`���`�������`���vm_set_main_stackStack consistency error (sp: %td, bp: %td); required keywordslocation_path: unreachableframe2iseq: unreachableruby%s:%d:in unknown method
	from %li:%d:in  `%li'
	from %s:%d:in `%s'
location_label: unreachableno such framelocation_lineno: unreachablelocation_to_str: unreachableunknown methodBacktraceLocationcallercaller_locations#<%s:%p>%li%s%li%.*s%liframe_info-- Ruby level backtrace information ----------------------------------------
location_realpath: unreachable	from %s:%d:in unknown method
location_base_label: unreachablebacktrace_collect: unreachableCFUNCIFUNCe:%06td E:%06tx c:%04td p:---- p:%04td s:%04td %-6s [FINISH]  me:
    called_id: %s, type: %s
    owner class: %s
    defined_class: %s
 me is corrupted (%s)
  self: %s
  lvars:
    %s: %s
 %3.3s: 0x%016zx-- env --------------------
%04d: %08lx (%p) <- ep---------------------------
-- proc -------------------
Thread state dump:
pc : %p, sp : %p
cfp: %p, ep : %p
RIPRBPRSPRAXRBXRCXRDXRDIRSIR8R9R10R11R12R13R14R15EFL* Loaded script: %.*s
* Loaded features:

 %4d %.*s
 %4d %s:<unnamed>
 %4d %s:%.*s
 %4d #<%p:%p>
 %4d #<%.*s:%p>
/proc/self/maps* Process memory map:

th: %p, native_id: %p
-- Control frame information -----------------------------------------------
  [PC] %04td, [SP] %04td, [EP] %04td, [CFP] %04td
-- Machine register context ------------------------------------------------
-- C level backtrace information -------------------------------------------
-- Other runtime information -----------------------------------------------

c-callc-returnaccess from outsidec_callc_returnthread_beginthread_endfiber_switchscript_compileda_calla_returnunknown event: %linot supported by this eventtrace_func needs to be Procdisabled#<TracePoint:%li %li>#<TracePoint:%li@%li:%d>#<TracePoint:%s>only target_line is specifiedcan not enable any hooksset_trace_funcadd_trace_funcTracePointtrace_pointtracepoint_new_stracepoint_inspecttracepoint_stat_stracepoint_trace_stracepoint_enable_mtracepoint_disable_mtracepoint_enabled_ptracepoint_attr_eventtracepoint_attr_linenotracepoint_attr_pathtracepoint_attr_parameterstracepoint_attr_method_idtracepoint_attr_callee_idtracepoint_attr_defined_classtracepoint_attr_bindingtracepoint_attr_selftracepoint_attr_return_valuetracepoint_attr_eval_scripttracepointCan not specify normal event and internal event simultaneously.can't nest-enable a targeting TracePointcan't disable a targeting TracePoint in a block#<TracePoint:%li@%li:%d in `%li'>#<TracePoint:%li `%li'@%li:%d>rb_tracearg_return_value: unreachablerb_tracearg_raised_exception: unreachablerb_tracearg_object: unreachablecan not override target_thread filterspecified target is not supportedtarget_line is specified, but line event is not specifiedtracepoint_attr_raised_exceptiontracepoint_attr_instruction_sequence1���ޯ��ͯ������ۮ������������������������������������////////////////////////////////////////////////
//////////////	///////////////////////////////////////////////////������������������������������������������������������	

������������:698+RRRRRRRRRRRRRRRRRRR43210/.-RRRR+R*RR
RRRRRRRRRRRRRRRR
RRRR%RRRRRRRRRRRRRRRRR%$#"!
RRRRRRRRR����������������������5&8%:0$49
	76321/
.-,+*)('!#" �������������������������	F	4��)/_�	�	�	�	�	�	�	�	�	�	�	�	�	p�	�	�	�	�	�	�	x�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�n���N6<�OjG�VW�,G��y
�W�j6�IR;{��^uS�,�H^���@�9���(�����C�-�t�f��(����#�����U�F�d`��j]#�7�-���c��Ho�������;���������MT������f���m����HreE�j�=�OU������g�QV�J���hUX�HL���jSW�P���i��������NGO������c���������BEM�(���b���������@IQ������d�����)��D������i*��������KS�,�����e������+F������g��$,���w%���WY�	����k����$���[[�
���m�����&���������������������CK�������a�������>'��	�������d�YZ�����l*2����}��U��-����
m����k����/������������������=E������^�����#�8?G�������_���L��:�������������.���������������������]\�����n�������������������z����Z�������� ����_]�����o��!������&.�!y�����SAI�������`������<�������ya^����p;C���.��]���*��&���q�����|������������,x~��z�<5=������������~���"����
������������h�:m�@�=�����������������9A��������\����u���Y������7?��������[��B�������������/7��2�����0���������������x�-5������������������7����n������sF����_��3;���������"�19���� �����������������	������r�����R���������t���M�������+3��~���}��X��
����>���������#+{�v���R�����!)z�t��Q���������������������$���'y6r��~�P���(	��[�,4���vV�����������������`�
�����b������p���������'&����Sv�l�{�N�����������r��w�J�����j��q��)v�I�e������g�����l�?�	������G������������#��d����e�8���nE�+���������������(���*��l$������s���x�K�����
�������d���'��a�������%x,p��}����b#��b�������cc�c������)1~�|8��������C���h������.�������rf%-|�x����&�;��.6��������W<D��9^�����������7�]�������K�� ���`��2��7_������'/}��z����D��������	��X0�������>�s��V���wn��|�O�����g�:���������tTh1y�L���������������a)�������������'!����a:B�������J_�1���q�����������f�9�T[�����F2:������\OY
���E�������
����l�����q�D����+���U��������������08�������X����������5�������/BJ����%������������=��Y����j��Ao�B��������������W���������V�������=B���R��O��������F����A��
��p������u�H�Mh�;���^��i����n�A�����1u��j3z�M�P�?���SZ���NK�����cQ��������I��q�����C3��wL�FN���1����G��A���-HP8@���"3�\��DLC��5������@H��?���>F�����I�;�����tk09�p�C����`�v��������(0G��{����T����4<�(�����Z���3�����|�����������������o�����5���������7��������H����������2������������g����26>���6
���������{����5"*��u�� (
s�����Df�+�k�>�e���i�<��������$JRo��%w�����o-E��t�G����������������������4����4!��������/���������&����������������#����������%��������<������������������������������� �����������������������������������������������������������������������!��������������������)N������{�����\���������������������@��}��m����������"���y��������@��������u6����������s�������9��������������������������������������������������]������������������������i������������#��������������.������� :���������8���������������������Z���������������������������44�����������������k�������,��;R*����������W������������U������������������������������������������0������������QP���������������������������������������b�������������������������6����������������������������/������-�����������������������������������������������������������������������������
��������������������������������������������������?������������������������������������������������������������������������������������f�������������������������������$����X����������������d����������������`������������^������������������������������������������������������������������������������������������T����������������������������"���������������������������������������������������������������������������������������������������������V������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������V	!"�
�
�
�
�
�
�
�
�
�
�
�
�
2�
�
�
�
�
�
�
��
�
�
�
�
�
�
�
�
�
�
�
�
�
��
�
�
�
�
�
�
/�
�
�(�
�
W�
�
�
�
�
�
�
��'��/��kZ��h���s��AP_B�,c�K�����ykkP�7�����
����$`o�8w]��_��C7���^���I7���M����\�Mo1,a�)��L��.���x�`��	};W���������������������P�1�=��2������~������	3�>��W��������)�9�M��,���@t����A�������A�E���B���Q��?�D�8�������;>���[�����Z���/�<�#P|��Y��&P�����!N����=�C���������T���9�A�>�������"��������2_��������-�;�L{���W���+�:�Hz�����x�������(� �����S��I�I�<��R��\���u��G:$���%O�L��������^��
�����M��+X��^��v#M�K������Na�������������1^�I�����C�F�����`�����j���/\w
U����&�����i�E���TT���[�����������%R��8��Z��q�������#L���6����!p��;�B��������+�������/S�Q������������������Q����������X����.X�����J����o�j�����RK������=j��m���������JE�G��������������:g�����������������Y
G�H����a�p\�����������'T�����\!K�J�u������]��r���������)V������[�
7�@�x����_����)S�N�-Z��
��������V������w������������-W�P���F����c�������������5br����+U�O������i-k�ge�k6q���9f7���'Q�M���R����e�����q�����7d��bg�so���4���������E�b��n�o����23`S��������~��5�?����n����������C�������WMm���������A���)8��������������DX�����%�s���N�����h(�����$������;h��pZ���������Dt�a�C��^
��9��������}��P1���R�Ov���������^������#�����z������q������!l��Gl���`��������?z����������A���]`������_�������������|���.���<f���
�������]�*T����{�������:�ym���
��s?��e����y������d���������d����6c�r������wouO������F`cu��K��������ay���������&k���g'�������������=���w��c�_J}��e{���� ����������s+��r�u�����o������hm�����,�����c"&-����������6������0}����"�������,������������LZ��i���2�b�������n*������{��������H���d�$���������k���1�.�������6�����)0����a��j��������(3����m��������������V������"&��E��������������,3������� q��t��Z������
I
U_n*�0�����������4���4�����>tl�����;��p������4v�������	 ��/��(@���\�3��*�v�����2�����S^��m�����i(R���������	���;���Y
 J��:���������$5��T�Q]��l����z�4a7s��B����	�������������,Y.�����u���6����D���������9����1@N[�j��������������Y��h�������Xc�r��_g�!=��@�������	����"O�������`��o�/�O\�k���g������8���������<��������B�����������b��2�����)����,V���������������f�����5Vb��q������$N���������f��������~#8e������������-F��W���?"L�����0]��������X�����A����}�����������'���������H�������V�x.[���������%���	F�����������/����0����{��}D�F��������y�7���U������y(U������Yd�s�������f?�t�K����&S����������|����x�l����������B���7���������3�<�������i��+]f�����<i�%�����J5w����$Q��������������B5K����������{�������0�������������I��H�������'�p��������������@�1��k[e�tw~���>�#�����������������*W�����G%��������>����E���������������n|��x���!��h���������'��������������L�������p M��H���D���������������l����:����z������������������n�8���������������������
4��C�����I������h}����������������d��G���������Uv�.�����C����������������*���r��y�����������j�����������������������=��������������������������9��������������������������|�����������������������������������v��������������������������������������������������������������������������������������������������������������������������������~�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������P������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������z���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������|�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~��������������������������������������������������������������������������������������������������������������������������������������������������������������������
	����������������������������������������q�%�/�	�X[6�6kH[l����������������������������o����������o�����������
4�������������������"����������������!�&)=,_0_����5K����?����������������B,��E?K������P�������U��������������X�����`����������e-��h!����������k�p�}l����������M�����������������b�M�����������������������*�������������������������������$���(����������������������
9������������������������������Q��������)K����0������3�������������������������8Y@�����������I)��l^ts��������y����������������������������������������������������� �������(�����f�������������������������O�V��������������������"32(5O��>������H������R�������Z�������g|������������������p7��{�����������������������������@�����L������������>���L���N�����5�������������������������������������,������������'�����,�0�����������������5d������������������������D<��M����UQ������������\7������������_l��������������h�������������������������������m����s��������������������������������v.����������y���~�����������������������������������-�������������������������������
�����������������������!�����������������������������DF����P[����U��c[������������������������k
��rO��x����������J�%���q�����������������=�F�j�������������������J���������H(�����-�������9'GO����VV����������}>������������������������������������������
�����1����������������������������������3��������������������E�������A����D����	���������������������������������&�+�����������I���VL��b�h,��������yi�������������H����������������������������������f��������������������������������������������������������<�������������������������������������������������	.����2��!C����/
������������5���������C�������N����`�s3�/�p�������4��������������������������:�����B���0���������������C���1���������X������������������������b�������������������������������������#�����C���WG����������|������������������������������������D���I������)��������������������������������������������������������������������������������������������������������������c���������������U�h�������������������5��������	����	�	61	�����������G	C������O	�����g	�������p	�t	G��w	4�	�������������������������	������������������������������������	f�����	s���	����������������	��	��������	����	7�����	E
��
}������
��������
�����0
���5
	��?
�������������������E
jJ
<P
m������������������������d
�����������o
]��w
�������|
��
����
��
b�
��
��
��������
��
������������
��������
h���
v�
�����
8!�)J6R��A�H�MXUe��Z���������ag����������qez���������_�����������������l���������������������������������������T�I��! ���������� F+�/�PX[cks
{����������@���������
����
���������������
T����2
i������7
M����A
~��������Z
�����_
Vd
���������n
��������������t
�����~
V���
�����������������������
������������������
i�����
x���������������������
��
������
R���
���������
t$$��2�������:��H���������S#������U8����Zq������������������������_�t����������������&�������������������������6�������'�������������������������������������������z�
�������������������������+�������2�>�������K�T���j�����t�������yH�������!�������������������F���������������z���n�����n���������E����������	u���������x��"���3���8�DL��������^���n1��������������u�����k���U��������������;�������������s������������������������������������������r�����Q��������a��������	a��������������������������(u8"����������O'��[�������aH����p���������v>��������������������z��	�������������������������������r�����������/���������S�������]��������|
y������������o����&�0:�������������������?���I�����������\[��f*������o�w�������{���������������������������������������������������������������I����j������������%~������*A��������������/�����9�����������������������������>P������HWO���]�����n5��������~���������������������������������I�������{�����������m�����������������������������������=���������������������������
?�������������������2������0L��������������J�]/e���������lW�������������������������������������������������C����������������������������������������m����"g����'�����.�:[����D���������������������������L�����������^��dho���{*���������������������������k�������B����������������� �������������������N����������������������������\�������������\�����������
���������������	����J��������#���������(D5�=��������������@���JU��_�d������p+s�����������x��{���������������������������������������������������������������������4���������y�����`���������������������,�17p����A�����FW��������������K�PW������������������������YS������f���oY����tq����������������������������������������������R�#��������������������������������$9������0�����������9���C���������������GU����hn�����������~|�������������&�����������������X���������������p�������������������������8�����������r����������������������������������X������"0-R������������������������4�������;;����R5n����������������%�y�������������������������������������������x�������������������������������������n��������������������&����������0�������������Dd��������������������I����Y�������^���p��������������������������������������Z�2�s���������������������������������������������������������������P���������������������������������������E���������� ���'}����������/v������4�����������������H�]���he��s�x0�����������������c�������������������������������������G���������������������g�����7����������������������������������������k����
����������������*�3@������I���ON����X�����]a������������e���jS����o^��tQ�����T�����S�����������������������������T�����0�������w�������Y��������������������������������������������������������������������������������������6������������������������������������+Z0���������������@����L�������������������������W"��������������������������������������������f(���������z�������������������������]�����������������������������������#�������B��������������������'������*�����������������������@���O�T�����������������������������������`�r�?�����%���������������������������������3�����������������������������\���������������������������������������������������+���������������������������������#��v	6���������:�������������@D�I@����_�t+�����������P�����������������������������������������������������������������A���������������������������������������������������������������������������������������������������������D�� g ����������� +��" -��; ���������������������������@ �J c��������������Q �����������������������������������������������Y :������������b �������m /������������t }������� =��������� ~����������������� ���������������������� �������� >����������� ������ �������������������������������������� w��� &!"��������������+!�����������0!�����������������������@!���������������������������������������X!���������������������a!)����������x!%�����������!����������������!����������������������!?�!K�������������������������������������!��!���"`����������������"�����"`��""B��������������������������������������������������������������������������������������������������������������������������������������1"�����="�����C"1����R"�������������������������������o"
��u"M�����������������������������������������������������������������������������������������������������"��"����������"����������������������������"��"&�"9���������������������������������")���������������";�������������������������������������������������������������������������������������������������������������"�#���#-����������������������'#G��������������������������������������A#�������������������������������W#�����������������������������������������������������������������������������\#���e#2����������������v#�������������������������������������������������������������������������������������������������������{#��������������������������������������������������#A���������������������������#����������������������������#����#$�����������������������������������������#������#��������������������������������������������������������������������������������������������#����������������������������������������������������������������$�����������������������������������$d������������������������������������������������������������������($:������������������������������������?$���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������F$�������������������������������������������Y$w������������������������������������������������������^$�������������������������������������������������r$ �������������������������$!�������������������������������������������������������$P�����������������������������������������������������������������������������������������������������$t�������������������������������������������$t�����������������������������$.�����������������������������������������������������������$K�����������������������������������������������������������������������������$��������������������������������������������������������������������������$����������������$*%,���������������������������������������������������������������������������������������������������������� %Z������������������������������������������������'%�������������������������������������������������������������������������������������0%.��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@%Y����������������_%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������p%����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%N�������������%��������������������������������������������������������������%����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%Zyiyiiilanazlinamakamanimnmiaolocilaolaooinkannadacnpiinnkozzzzgrancolinearamarkpomecariinkharoshthikanaloemgrekmromroocariangeorgreekgonmmendekikakuipemeroinosmanyacakminmanichaeaninmroinmiaoinchakmacmandaicmeeteimayekinarmenianinmyanmarinmakasarcommonlmmarcinrunicincarianinideographicsymbolsandpunctuationinkhmerqaaiinahommerccombiningmarklcpermmcconnectorpunctuationcansincuneiformnumbersandpunctuationarmiccarmnincherokeeprependedconcatenationmarkincuneiforminavestaninipaextensionspcarmenianinsharadainmarchenmakasarmasaramgondiinarrowsincyrillicinchamqmarkriqaacinsamaritanlatninmasaramgondiinthaanalatininthailineseparatorpcminkatakanainkaithiinzanabazarsquareinscriptionalparthianinitialpunctuationmteivaivaiiinkhmersymbolsinsyriacintakriarabiczskatakanaprtiasciicspsmandprivateuseinruminumeralsymbolsinmyanmarextendedamodiincjkcompatibilityformsinkanaextendedaincjkcompatibilityideographsbraimendideoletterlinmeeteimayekinideographicdescriptioncharactersxidcontinuekndainnandinagarikannadainmodiinlaoinoldnortharabianintransportandmapsymbolsletternumbergothicinlinearainmendekikakuixidcmongolianinmiscellaneousmathematicalsymbolsainspecialsgrlinkbrahmiinemoticonskaliinolditalicinmedefaidrininchesssymbolsincjkcompatibilityideographssupplementinadlampsalterpahlaviincommonindicnumberformsltinnewaskcontrolinancientsymbolspalminlyciansopatternwhitespacexidsinmandaicidcmeroiticcursiveinwarangcitisorainopticalcharacterrecognitioninoldsogdianinmalayalambamuminkanasupplementinsundanesegrextprintintaithamlowerjoincinoldsoutharabianincjkstrokesbatksamrinwanchobatakvspatwssamaritanidsbinaryoperatorpaucinsmallkanaextensionsmindominotilesalnuminsylotinagriinugariticincontrolpicturesinlinearbideogramsinmusicalsymbolssitalinmodifiertonelettersinancientgreekmusicalnotationpatternsyntaxlisulowercasecwcmscbassidsinlatinextendedaoriyaintaileinmiscellaneoussymbolsinmiscellaneoussymbolsandarrowsincaucasianalbanianinmiscellaneoussymbolsandpictographsinoldturkicinsaurashtraidcontinueintamilinmultaniinlatinextendedepdbaliblankidstinlydianinnewtailuebengalirunrzlincyrillicextendedallindeseretintaixuanjingsymbolsinancientgreeknumbersidstartinmeeteimayekextensionsbalinesediadiinspacingmodifierlettersinearlydynasticcuneiformplrdcanadianaboriginalzinhsindosageinlatinextendedcuideoincountingrodnumeralsxidstartxdigitosmainkhudawadiinhanifirohingyagongingranthabidicmongcasedincyrillicextendedcinhiraganasinhalaadlmglagoliticstermbamugeorgianinosagegunjalagondiphoenicianmultanikaithijoincontrolrunicingeneralpunctuationinmahajaniincyrillicsupplementlowercaselettermarchengraphemelinkingeorgiankhojkichaminoghamcherchakmaemojiinsiddhamcherokeekharinmongolianincherokeesupplementdiacriticmanichaeanxsuxinolchikiquotationmarkadlaminethiopicgraphemebaseage=11.0age=12.1age=10.0age=12.0casedletteringurmukhiodiincjkunifiedideographsextensionaage=1.1luage=4.1age=2.1age=4.0age=2.0age=9.0intamilsupplementage=6.1unknownage=6.0age=6.2age=3.1age=8.0age=3.0age=3.2cwtage=7.0unassignedage=6.3age=5.1age=5.0age=5.2ahomincjkunifiedideographsextensionekhmrinsinhalainmiscellaneoustechnicalsaurgurusundanesepunctpaucinhaugurmukhivariationselectorlogicalorderexceptionkhmerlimbuinscriptionalpahlavioidcincjkunifiedideographsextensionccntrlinlatinextendedadditionaldecimalnumberinsorasompengradicalemojimodifierkharoshthinmathgothanatolianhieroglyphsinenclosedalphanumericsnandinagarinonkonkooingreekandcopticolckpgranthaolchikiincjkunifiedideographszanbintirhutaoidsinhatranlinbxpeomultsaurashtrakthiinbhaiksukiolowerinnabataeaninphoenicianinkanbuninmeroitichieroglyphsinkayahliphnxinoriyaenclosingmarksdinelbasanwarainenclosedideographicsupplementsiddlinearbhanihaninenclosedalphanumericsupplementmedfbidicontrolhanoinphaistosdisclimbinkangxiradicalslepcmedefaidrinbrailleregionalindicatorinlowsurrogatesinshorthandformatcontrolsbrahinkhojkiinoldhungarianhanunoohirabengemojimodifierbaseinarabiclyciahexinheritedglaglycianindogradsrtarabmymrmyanmarphliinimperialaramaicingreekextendedinanatolianhieroglyphspunctuationtakrigraphemeextendinvaicwlingeometricshapesemojicomponentcopticdeseretinarabicpresentationformsatakrinbasiclatinincjkunifiedideographsextensiondsinhsundshaviantaileinsundanesesupplementinelymaicinsoyombobhksbhaiksukiincjkcompatibilityinhanunoointangutsogdianinlatinextendeddsogoinsinhalaarchaicnumbersideographicugarcoptimperialaramaicinsogdianindingbatsformatininscriptionalpahlaviininscriptionalparthiangrbaseinbatakcprtcwcfcuneiformtermintibetanintagsasciihexdigitsentenceterminalinmayannumeralsnandpatsynhatraninblockelementsinornamentaldingbatsinnumberformsoldpersianinshavianbopohatrcaseignorableinoldpersianmodifierlettercwulydiinbyzantinemusicalsymbolsingeometricshapesextendedinmyanmarextendedbinnushulydianinunifiedcanadianaboriginalsyllabicsorkhinyiradicalsinkatakanaphoneticextensionsinethiopicextendedaincopticinarabicextendedaoldpermicincjksymbolsandpunctuationwordbopomofoogaminlisuinoldpermicinnoblocktaivietinbraillepatternsalphainbalinesesorasompengclosepunctuationinmiscellaneousmathematicalsymbolsbinlepchainsyriacsupplementnewaspacingmarkinpalmyrenecyrlassignedmlymmalayalamextnewtailuespaceinteluguidsbindevanagariavestancfpalmyreneinethiopicsupplementsoyoxposixpunctpfsarbzanabazarsquareugariticosgejavasharadadograbugimeroitichieroglyphsseparatoringeorgiansupplementsogdtaleinunifiedcanadianaboriginalsyllabicsextendedterminalpunctuationshrdgrapholditalicdogrgujrphaggujaratiinhanguljamojavanesetamlinphoneticextensionssiddhambugineseinmongoliansupplementinvariationselectorsinhanguljamoextendedainverticalformssyrcnumberincopticepactnumbersavstinbamumndinsuttonsignwritingextenderintaiviethexincjkunifiedideographsextensionfotherotheridcontinueshawdashothernumberoryainvedicextensionssgnwcaucasianalbanianinmathematicalalphanumericsymbolsinphoneticextensionssupplementinvariationselectorssupplementinduployansyriacoalphainnyiakengpuachuehmongincombiningdiacriticalmarksinethiopicextendednlincombiningdiacriticalmarksforsymbolskhudawadiotheralphabeticoldhungarianincurrencysymbolsincjkradicalssupplementinglagoliticintifinaghingeorgianextendedsurrogateincyrillicextendedbethititlecaseletterrohginmeroiticcursiveidstrinaryoperatorinphagspalepchaintagalogmathsymbolincombiningdiacriticalmarkssupplementinbrahmiinsymbolsandpictographsextendedainlinearbsyllabaryoldturkicinbengaliwanchoosmanyabuhdinsmallformvariantsindevanagariextendedsoftdottedinbuginesemahjinlatin1supplementingothicmahajanihangsylowarangcitiingujaratitirhutaincombiningdiacriticalmarksextendedspaceseparatoringunjalagondiwchohiraganaextendedpictographicinrejanginottomansiyaqnumbersncharcyrillickhojinlimbuhmngthaathaiincjkunifiedideographsextensionbdevathaanaphagspadevanagaritangcurrencysymboltagbanwainenclosedcjklettersandmonthstamiltirhdigittaluzpinpaucinhautaithamotherlowercaseteluinaegeannumbersotherletterwhitespacenonspacingmarkgraphemeclusterbreak=spacingmarkinletterlikesymbolsintagbanwaoldsogdianotheridstartgraphemeclusterbreak=crnarbchangeswhencasemappedinbopomofotangutgraphemeclusterbreak=regionalindicatornoncharactercodepointotheruppercaserjngsylotinagriinhangulsyllablesemojipresentationinindicsiyaqnumbersinbassavahogrextothersymboloupperinbuhidhmnpinpsalterpahlavifinalpunctuationphlpinbamumsupplementbuhidparagraphseparatorinalphabeticpresentationformsomathanyelbachangeswhentitlecasedincombininghalfmarksintangutcomponentshebrdeprecatedinarabicmathematicalalphabeticsymbolsinprivateuseareakayahliinplayingcardsinarabicpresentationformsboghamelymgraphemeclusterbreak=tgraphemeclusterbreak=lvtnbatnabataeanhangulelymaicinhebrewinjavanesesymbolinmathematicaloperatorsinarabicsupplementcypriothungwspacechangeswhenlowercasedelbasanhluwinsuperscriptsandsubscriptsgraphemeclusterbreak=extendgraphemeclusterbreak=prependnshuoldnortharabianinyijinghexagramsymbolshexdigitgraphemeclusterbreak=lgraphemeclusterbreak=controlbassavahotherdefaultignorablecodepointchangeswhenuppercasedinalchemicalsymbolsinsupplementalarrowsainyisyllablestibtothermathtibetaninmahjongtilessignwritingnushumodifiersymbolinhalfwidthandfullwidthformsupperinsupplementalarrowscinsupplementalmathematicaloperatorsincypriotsyllabarydupltavtinpahawhhmongalphabeticdashpunctuationuppercasesoyombohanifirohingyaotherpunctuationdefaultignorablecodepointinhanguljamoextendedbaghbtifinaghinlatinextendedbtfnginhighprivateusesurrogateschangeswhencasefoldeddepoldsoutharabiangraphemeclusterbreak=lfpahawhhmongunifiedideographuppercaseletterinsupplementalpunctuationethiopicinglagoliticsupplementrejanginbopomofoextendedtagbothergraphemeextendinegyptianhieroglyphsinegyptianhieroglyphformatcontrolshebrewtglgtagaloggraphemeclusterbreak=zwjzyyyhypheninboxdrawinggraphemeclusterbreak=vgraphemeclusterbreak=lvteluguduployanopenpunctuationinsupplementaryprivateuseareaainhighsurrogatesinsupplementalarrowsbinsupplementalsymbolsandpictographsegypinhangulcompatibilityjamonyiakengpuachuehmongegyptianhieroglyphsinsupplementaryprivateuseareab5p��/�/��p�����@		�
�
��P@
_��p�P�����@�P����������P%�/@4�C�F�gpj�j�k?n�n�n�o�o����������P�����������0���P����������`�o�����P���������������� ���
���������������� ���@���?�ߦp����o�����������������P���O��������������0����/�����O�p����_���������O��/�������`���_������O��������������p���0�o��/�������p���o�oo�o@n�nk�k�j�j@jojh?jDF04?40/4�$O%$$ �#����`�_p�o��P�O����O?��`_��������O����PO������0o/`
?
��O��`@_?�
�

_
�	�	 	?			����@_?0o/��������P0O/����������@�?�������p���P�o�0�O� �/�����P����O���������������������������p���0�o��/������ߪ`���_������ߩ`��0�_��/������ߨ@��0�?��/� ���������@����?���Ϥ���N���M�M4�M3�32�2�1�1�1�1�1�1�1�101�11/1�0�0@0�00?0�/�//�/�.�...�-�-�-�-0---/-�,�,`,,,_,+�+*�*�)�)))�'�'�'�''�'&�&�%�%�%�%%%`$�$@$_$$?$#�#"�"�!�!P!�!!O!� � � � p �  o ��������������O������ �����PO�����`@_ ?����������������
�


�����
�


�	�			��`o@_?����PO���0�/�p�o��P��O��
 
 ����7�9�S�U�o�q���������ìŬ߬�������3�5�O�Q�k�m�������������ۭݭ������/�1�K�M�g�i�������������׮ٮ�����+�-�G�I�c�e������������ӯկ���
�'�)�C�E�_�a�{�}���������ϰѰ���	�#�%�?�A�[�]�w�y���������˱ͱ�����!�;�=�W�Y�s�u���������Dzɲ�������7�9�S�U�o�q���������óų߳�������3�5�O�Q�k�m�������������۴ݴ������/�1�K�M�g�i�������������׵ٵ�����+�-�G�I�c�e������������Ӷն���
�'�)�C�E�_�a�{�}���������Ϸѷ���	�#�%�?�A�[�]�w�y���������˸͸�����!�;�=�W�Y�s�u���������ǹɹ�������7�9�S�U�o�q���������úźߺ�������3�5�O�Q�k�m�������������ۻݻ������/�1�K�M�g�i�������������׼ټ�����+�-�G�I�c�e������������ӽս���
�'�)�C�E�_�a�{�}���������ϾѾ���	�#�%�?�A�[�]�w�y���������˿Ϳ�����!�;�=�W�Y�s�u������������������7�9�S�U�o�q�������������������3�5�O�Q�k�m�����������������������/�1�K�M�g�i�����������������������+�-�G�I�c�e���������������������
�'�)�C�E�_�a�{�}������������������	�#�%�?�A�[�]�w�y��������������������!�;�=�W�Y�s�u����������������������7�9�S�U�o�q�����������������������3�5�O�Q�k�m�����������������������/�1�K�M�g�i�����������������������+�-�G�I�c�e���������������������
�'�)�C�E�_�a�{�}������������������	�#�%�?�A�[�]�w�y��������������������!�;�=�W�Y�s�u����������������������7�9�S�U�o�q�����������������������3�5�O�Q�k�m�����������������������/�1�K�M�g�i�����������������������+�-�G�I�c�e���������������������
�'�)�C�E�_�a�{�}������������������	�#�%�?�A�[�]�w�y��������������������!�;�=�W�Y�s�u����������������������7�9�S�U�o�q�����������������������3�5�O�Q�k�m������������8�8�T�T�p�p���������ĬĬ��������4�4�P�P�l�l�������������ܭܭ������0�0�L�L�h�h�������������خخ����,�,�H�H�d�d�������������ԯԯ����(�(�D�D�`�`�|�|���������аа����$�$�@�@�\�\�x�x���������̱̱���� � �<�<�X�X�t�t���������ȲȲ������8�8�T�T�p�p���������ijij��������4�4�P�P�l�l�������������ܴܴ������0�0�L�L�h�h�������������صص����,�,�H�H�d�d�������������ԶԶ����(�(�D�D�`�`�|�|���������зз����$�$�@�@�\�\�x�x���������̸̸���� � �<�<�X�X�t�t���������ȹȹ������8�8�T�T�p�p���������ĺĺ��������4�4�P�P�l�l�������������ܻܻ������0�0�L�L�h�h�������������ؼؼ����,�,�H�H�d�d�������������ԽԽ����(�(�D�D�`�`�|�|���������оо����$�$�@�@�\�\�x�x���������̿̿���� � �<�<�X�X�t�t�����������������8�8�T�T�p�p�������������������4�4�P�P�l�l�����������������������0�0�L�L�h�h�����������������������,�,�H�H�d�d�����������������������(�(�D�D�`�`�|�|�������������������$�$�@�@�\�\�x�x������������������� � �<�<�X�X�t�t���������������������8�8�T�T�p�p�����������������������4�4�P�P�l�l�����������������������0�0�L�L�h�h�����������������������,�,�H�H�d�d�����������������������(�(�D�D�`�`�|�|�������������������$�$�@�@�\�\�x�x������������������� � �<�<�X�X�t�t���������������������8�8�T�T�p�p�����������������������4�4�P�P�l�l�����������������������0�0�L�L�h�h�����������������������,�,�H�H�d�d�����������������������(�(�D�D�`�`�|�|�������������������$�$�@�@�\�\�x�x������������������� � �<�<�X�X�t�t���������������������8�8�T�T�p�p�����������������������4�4�P�P�l�l�����������`�����_`�|��		;	;	>	@	I	L	N	O	�	�	�	�	�	�	�	�	

>
@
�
�
�
�
�
�
�
�
@@GHKL��������AD������������

?
@
F
H
J
L
�
�
�
�
�
�
�
�
33��>?11;<VW��������#&)+0138UUWWmr;;=ACD����������������$+45����#�$�'�'�������èR�S�����������������/�0�3�4�M�M�����������������������,,EF������,.2355��??ADGHKMbc57@AEE����������������02;<>>������ !&&,.88������99WX��//>>��������������Qo�of�f�m�m�Po������������K_pp��������0J������#%')-Y[���	:	:	<	<	A	H	M	M	Q	W	b	c	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	

<
<
A
B
G
H
K
M
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
<<>?ADMMVWbc����������>@FHJMUVbc����������������

;
<
>
>
A
D
M
M
W
W
b
c
�
�
�
�
�
�
�
�
�
�
114:GN������557799q~����������-0279:=>XY^`qt��������]_24RSrs����������
���� "'(229;VVX^``bbels|��4:<<BBks����������������,367����������������  � � �,�,--�-�-*0/0�0�0o�r�t�}�������������%�&�ĨŨ������&�-�G�Q�������������������)�.�1�2�5�6�C�C�L�L�|�|������������������������������������� �/���������vz





8
:
?
?
�
�
$
'
FP8F�����'+-4ss������/14467>>����;<>>@@WWflpt8?BDFF^^����������������������3:==?@��������"%'+/79:������
38;>GGQVY[����068=??��������16::<=?EGG���������j�j0k6kOoOo�o�o����e�e�g�i�n�r�{�����������B�D��6�;�l�u�u������������������!�#�$�&�*�0�6���������D�J����� �	���    ( . ` o �������0484����s�z�����

����N
N
������::��FF�wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfow�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[����������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-O.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�M�M������ƤФ+�@������§Ƨ��+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�g�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0Y��MRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]_��������DPY`l����+0?;����������GP���
68EPlp�����	6::<=?GPY`eghj�������������#$n$p$t$�$C%0.40484DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noJoOo�o�o�o�o�op������P�R�d�g�p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*��,�0�=�@�I�N�O�����������������K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z�����������֦�4�@�� ���������������������������������������	��	��
��
����������
��
 ������wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfow�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[����������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-O.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�23�M�M������ƤФ+�@������§Ƨ��+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�g�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0Y��MRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]_��������DPY`l����+0?;����������GP���
68EPlp�����	6::<=?GPY`eghj�������������#$n$p$t$�$C%0.40484DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noJoOo�o�o�o�o�op������P�R�d�g�p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*��,�0�=�@�I�N�O�����������������K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z�����������֦�4�@�� ���������������������������������������	��	��
��
����������
��
 ������wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfox�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+�+�+�+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-N.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�23�M�M������ƤФ+�@��������+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�e�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0YMRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]^��������DPY`l����+0?;����GP�����
68EPlp�����	6::<=?GPY`eghj��������� �#$n$p$t$�$C%0.4DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noDoPo~o�o�o�o�op�����p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*���������J�P�Y�^�_�q�������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������k�p�������;�@�H�P�Q�`�e���������s�������G�P�Y�`����������>�@�p�s�v�z�z�|�������������`�m���֦�4�@�� ���������������������������������������	��	��
��
����������
��
 ������wz�������/1VY_a�����������
JM���-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfox���������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�������KP|���7;IM������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+�+�+�+�+�+�+�+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-I.�.�.�.�./�/�/�/0?0A0�0�0�01.111�1�1�1�1�1�12 2�23�M�M������ƤФ+�@������������+�0�9�@�w���ŨΨ٨����S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�e�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







3
8
:
?
G
P
X
`
�
�
�
�
�
59UXrx�����H������`~MRo�����46CPv������>��������������(*02359<DGHKMPPWW]cflptY[[]]��������DPY`l����+0?����GP�������
68EPlp�����	6::<=?GPY �#$n$p$t$�$C%0.4DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�koDoPo~o�o�o�o�op�����p����j�p�|�����������������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*���������J�P�Y�^�_�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������.�0�k�p�������;�@�H�P�Q�`�e���������s�������G�P�Y�`����������>�@�L�P�k�������������֦�4�@�� ���������������������������������������	��	��
��
����������
��
 ������wz�������/1VY_a�����������
JM���-0>@[^^������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfox���������������������������






:
=
D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!�#$&$@$J$`$s+v+�+�+�+�+�+�+�+�+�+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-D.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M՟�����ƤФ+�@������������+�0�9�@�w���ŨΨ٨����S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�e�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#0JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







3
8
:
?
G
P
X
`
�
�
�
�
�
59UXrx�����H������`~MRo�����46CPv������>��������������(*02359<DGHKMPPWW]cflptY[[]]��������DPY`l����+0?������
68EPlp����� �#$n$p$t$�$C%0.4DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�koDoPo~o�o�o�o�op������j�p�|�����������������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*���������J�P�Y�^�_�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������.�0�k�p�������;�@�H�P�Q���������s�������G�P�Y�`��������� �'�0�0�3�>�@�K�P�^�����������֦�4�@�� �����������������������������������	��	��
��
����������
��
 �����owz�������/1VY_a�����������
JM���-0>@[^^����	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfox����������������������������






:
=
D
F
H
J
N
W
W
_
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�������KP|���7;IM�������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!�#$&$@$J$`$s+v+�+�+�+�+�+�+�+�+�+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-B.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M՟�����ƤФ+�@������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�e�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#0JPz���������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







3
8
:
?
G
P
X
`
�
�
�
�
�
59UXrx�����H������`~MRo�����46CPv������=��������������(*02359<DGHKMPPWW]cflpt��������DPY����+0?������ �#$n$p$t$�$C%0.4DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�koDoPo~o�o�o���j�p�|�����������������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������.�0�k�p�������:�@�H�P�Q��y�{�����������s�������G�P�Y�`�������������������֦�4�@�� �����������������������������������	��	��
��
����������
��
 �����bwz�������/1VY_a�����������
JM���-0>@[^^����	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXY`cfox����������������������������






:
=
D
F
H
J
N
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�������KP|���7;IM�������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!�#$&$@$J$`$s+v+�+�+�+�+�+�+�+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-B.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M̟�����ƤФ+�@��������������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�_�d�e�������������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �-�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37�������������#0JPz���������'0coo6@U`g
578<<?UW���			9	?	?	�	�	�	�	








3
8
:
?
G
P
X
`
�
�
�
�
�
59UXrx�����H`~MRo�����46CPv��������=����(*02359<DGHKMWW]cflpt��������DPY���������� �#$n$p$t$0.4h8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�koDoPo~o�o�o���j�p�|�����������������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R����������������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������.�0�k�p�������:�@�H�P�Q��,�0�}�������������J�P�y�{�����B�E�������s�������G�P�Y�`���������֦�4�@����������������������������������	��	��
��
����������
��
 �����%wz~�������'1VY_a�����������
JM���-0>@[^^������	w	y		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*359=DFHJMUVXY`cfox����������������������������






:
=
D
F
H
J
N
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�����KP|���7;IM������ EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!�#$&$@$J$`$�&'L+P+Y+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-;.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M̟�����ƤФ+�@��������������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީߩ�6�@�M�P�Y�\�{���ª۪����	���� �&�(�.�������������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<?UW_			9	?	?	�	�	�	�	








3
8
:
?
G
P
X
`

59UXrxH`~MRo������46C�������� n#$b$p$s$0.4h8joDoPo~o�o�o������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R���������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0��������������������
��.�0�k�p�������:�@�H�P�Q�� �0�5�7�|������������������>�@�@�B��������=�@�C�P�g���@�E�O�����s���֦�4�@����������������������������������	��	��
��
����������
��
 �����%wz~�������'1VY_a�����������
JM���-0>@[^^������	w	y		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*359=DFHJMUVXY`cfox����������������������������






:
=
D
F
H
J
N
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�����KP|���7;IM������ EHMPWYY[[]]_}�������������� d j q t � � � � � � � !�!�!�#$&$@$J$`$�&'L+P+Y+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-;.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M̟�����ƤФ+�@��������������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީߩ�6�@�M�P�Y�\�{���ª۪����	���� �&�(�.�������������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<?UW_			9	?	?	�	�	�	�	








3
8
:
?
G
P
X
`

59UXrxH`~MRo������46C�������� n#$b$p$s$0.4h8joDoPo~o�o�o������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R���������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0��������������������
��.�0�k�p�������:�@�H�P�Q�� �0�5�7�|������������������>�@�@�B��������=�@�C�P�g���@�E�O�����s���֦�4�@����������������������������������	��	��
��
����������
��
 �����%wz~�������'1VY_a�����������
JM���-0>@[^^������	w	y		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*359=DFHJMUVXY`cfox����������������������������






:
=
D
F
H
J
N
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq�������������HJMPVXXZ]`����������������Z]|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�����KP|���7;IM������ EHMPWYY[[]]_}�������������� d j q t � � � � � � � !�!�!�#$&$@$J$`$�&'L+P+Y+,.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-;.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M̟�����ƤФ+�@��������������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީߩ�6�@�M�P�Y�\�{���ª۪����	���� �&�(�.�������������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<?UW_			9	?	?	�	�	�	�	








3
8
:
?
G
P
X
`

59UXrxH`~MRo������46C�������� n#$b$p$s$0.4h8joDoPo~o�o�o������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R���������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0��������������������
��.�0�k�p�������:�@�H�P�Q�� �0�5�7�|������������������>�@�@�B��������=�@�C�P�g���@�E�O�����s���֦�4�@����������������������������������	��	��
��
����������
��
 ������wz~�������'1VY_a���������
JM���-0>@[^^	w	y		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*359=DFHJMUVXY`cfox����������������������������






:
=
D
F
H
J
N
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq����������HJMPVXXZ]`����������������Z]|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�����KP|�������7;IM���� EHMPWYY[[]]_}�������������� d j q t � � � � � � � !�!�!�#$&$@$J$`$�&'�'�'�'�'L+P+Y+,.,0,^,`,�,�,%-0-e-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-1.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M˟�����ƤФ+�@�s�|��������������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީߩ�6�@�M�P�Y�\�{���ª۪ߪ��	���� �&�(�.�������������������-�0�m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<?UW_			9	?	?	








3
8
:
?
G
P
X
`

59UXrxH`~MRo�� n#$b$p$s$0.4h8j������&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������+�0��������������������
��.�0�i�p�������:�@�H�P�Q�� �0�5�7�|������������������>�@�@�B��������=�P�g����������������� �%�(�+�-�-�0�3�5�@�E�O�����s���֦�4�@����������������������������������	��	��
��
����������
��
 ������wz~�������%1VY_a���������!^`
JM���-0>	9	<	N	P	U	X	r	y		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfq��������������������������������(*359=DFHJMUVXY`cfox����������������������������






(
*
9
=
D
F
H
J
M
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq������������HJMPVXXZ]`����������������Z_|������� 6@S`lnprs������ w���� +0;@@Dmpt�������^`|�����KP|����7;IM���� EHMPWYY[[]]_}�������������� d j q t � � � � � � � !�!�!�#$&$@$J$`$�&�&�&�&�&�&�&'''	'''')'K'M'M'O'R'V'^'a'�'�'�'�'�'�'�'�'�'�'L+P+Y+,.,0,^,`,�,�,%-0-e-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-1.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2�23�M�M˟�����ƤФ+�@�_�b�s�|������������+�0�9�@�w���ĨΨ٨����S�_�|���ͩϩ٩ީߩ�6�@�M�P�Y�\�{���ª۪ߪ������������������-�0�m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<?UW_			9	?	?	








3
8
:
?
G
P
X
`

59UXrxH`~�� n#$b$p$s$0.4����&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������+�0����
��.�1�1�=�=�?�?�B�B�F�F�J�N�W�W�_�_�y�y�{�|��������������1�@�H���֦�4���������������������������������	��	��
��
����������
��
 ������wz~�������#1VY_a���������!^`
JM���	9	<	M	P	T	X	r	{		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfq��������������������������������(*359=DFHJMUVXY`cfox����������������������������






(
*
9
=
D
F
H
J
M
W
W
`
c
f
u
y

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIlq��������������Y_���HJMPVXXZ]`����������������Z_|����v���� 6@S`lnprs������ w�� +0;@@Dmpt�������KP|����7;IM�� EHMPWYY[[]]_}�������������� d j q t � � � � � � � !O!S!�!�!�#$&$@$J$`$�&�&�&�&�&'''	'''')'K'M'M'O'R'V'V'X'^'a'�'�'�'�'�'�'�'�'�'�'L+P+T+,.,0,^,`,o,q,},�,�,�,%-0-e-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-0.�.�.�.�./�/�/�/0?0A0�0�0�01-111�1�1�1�1�1�12 2C2P2�23�M�Mß�����Ƥ�+�@�_�b�s�|��������+�@�w���ĨΨ٨�S�_�_��6�@�M�P�Y�\�_�����-�0�j�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �&�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37��������� #0J���������
578<<??			9	?	?	








3
8
:
?
G
P
X
 n#$b$p$s$����&�)����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������+�0�����֦��������������������������������	��	��
��
����������
��
 ������otuz~�����������1VY_a���������!:@^`
JMm����	9	<	M	P	T	X	p	{		�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<CGHKMVW\]_afq������������������������������(*359>DFHJMUV`afo����������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y����Y_���HJMPVXXZ]`����������������Z_|����v���� 6@S`lnprs������ w�� +0;@@Dmpt�������KP|����� EHMPWYY[[]]_}�������������� c j q t � � � � � � � !N!S!�!�!�#$&$@$J$`$�&�&�&'''	'''')'K'M'M'O'R'V'V'X'^'a'�'�'�'�'�'�'�'�'�'�'+ +#+,.,0,^,`,l,t,w,�,�,�,%-0-e-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-....�.�.�.�./�/�/�/0?0A0�0�0�01,111�1�1�1�1�1�12 2C2P2�23�M�M�������Ƥ�� �!��+�@�w�����-�0�j�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �#�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37� #0J���������
578<<??				








3
8
:
?
G
P
X
 n#$b$p$s$����&�*����E��V�`�q��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������֦��������������������������������	��	��
��
����������
��
 ������APotuzz~~��������������1VY_a�����������!:@^`
JMm��	9	<	M	P	T	X	p	}	}	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<CGHKMVW\]_afq������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y����Y_���HJMPVXXZ]`����������������Z_|����v���� 6@S`lnprs������ w�� +0;@@Dmpt����������� EHMPWYY[[]]_}�������������� c j q t � � � � � � � !L!S!�!�!�#$&$@$J$`$�&�&�&'''	'''')'K'M'M'O'R'V'V'X'^'a'�'�'�'�'�'�'�'�'�'�'+,.,0,^,�,�,�,%-0-e-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-....�.�.�.�./�/�/�/0?0A0�0�0�01,111�1�1�1�1�1�12 2C2P2�23�M�M�������Ƥ���+�����-�0�j�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �#�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37� #0J���������
578<<??








3
8
:
?
G
P
X
����&�*����E��V��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������֦��������������������������������	��	��
��
����������
��
 ������6PW]otuzz~~�����������������1VY_a�������������!:@X`
JMO��	9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<CGHKMVW\]_afq��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y������Y_���FHHJMPVXXZ]`������������������������ FHZa|��v���� 6@S`lnprs������ w�� +0;@@Dmpt��k��� EHMPWYY[[]]_}�������������� T W W _ c j q t � � � � � !;!=!K!S!�!�!�#$&$@$J$`$&&}&�&�&�&�&'''	'''')'K'M'M'O'R'V'V'X'^'a'�'�'�'�'�'�'�'�'
+�.�.�.�./�/�/�/0?0A0�0�0�01,111�1�1�1�12 2C2P2}22�23�M�M�������Ƥ����-�0�j������6�8�<�>�>�@�A�C�D�F����?�P����������� �#�0�R�T�f�h�k�p�t�v������������������������
&(:<=?MP]��37? #0J�������
578<<??����&�*����V��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������֦��������������������������������	��	��
��
����������
��
 ������ "3P���O`otuzz~~�����������������1VY_a�������������!:@U`���
,0J��			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y������Y_���FHHJMPVXXZ]`������������������������ FHZa|��v���� 6@S`lnprs���� w����� EHMPWYY[[]]_}�������������� R W W _ c j q t � � � � � !:!=!K!S!�!�!�#$&$@$J$`$�$%&&&&}&�&�&'''	'''')'K'M'M'O'R'V'V'X'^'a'�'�'�'�'�'�'�'�'�*�.�.�.�./�/�/�/0?0A0�0�0�01,111�1�1�1�12 2C2Q2{22�2�2�23v3{3�3�3�34�MN�������Ƥ����-�0�j������6�8�<�>�>�@�A�C�D�F����?�P����������� �#�0�F�I�R�T�f�h�k�p�t�v�������������������������� #0J%(M����&�*����T�V���������������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������֦��������������������������������	��	��
��
����������
��
 �����"3P���N`btuzz~~�������������������������1VY_a�������������!:@U`mp���
,0J��			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y������Y_���FHHJMPVXXZ]`������������������������ FHZa|��v�������� w����� EHMPWYY[[]]_}�������������� F H M j p t � � � � � !:!S!�!�!�!"�"#{#}#�#$&$@$J$`$�$%�%�%�%&&&q&'''	'''')'K'M'M'O'R'V'V'X'^'a'g'v'�'�'�'�'�'(�(�.�.�.�./�/�/�/0:0>0?0A0�0�0�0�0�01,111�1�1�122 2C2`2{22�2�2�2�2�23v3{3�3�3�34�MN�����������������¤ĤƤƤ����-������6�8�<�>�>�@�A�C�D�F����?�P��������� �#�0�D�I�R�T�f�h�k�p�r�t�t�v��������^�a������������������� #0J%(M����&�*����T�V���������������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������֦��������������������������������	��	��
��
����������
��
 ����q"3P���N`btuzz~~�������������������������1VY_a�������������!:@U`mp���
,0J��			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[������������������������������������GIjq���������!#')*,269@Y������Y_���FHHJMPVXXZ]`������������������������ FHZa|��v�������� w����� EHMPWYY[[]]_}�������������� F H M j p t � � � � � !:!S!�!�!�!"�"#{#}#�#$&$@$J$`$�$%�%�%�%&&&q&'''	'''')'K'M'M'O'R'V'V'X'^'a'g'v'�'�'�'�'�'(�(�.�.�.�./�/�/�/0:0>0?0A0�0�0�0�0�01,111�1�1�122 2C2`2{22�2�2�2�2�23v3{3�3�3�34�MN�����������������¤ĤƤƤ����-������6�8�<�>�>�@�A�C�D�F����?�P��������� �#�0�D�I�R�T�f�h�k�p�r�t�t�v��������^�a�����������������������������������������������������	��	��
��
����������
��
����8��P�����E`atuzz~~��������������������OQ\^�������������1VY_a�������������!:@R`mp���������			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
:?[������������������������������������GIiq�����������������Y_������ EHMPWYY[[]]_}�������������� . 0 F j p t � � � � � !8!S!�!�!�!"�"###z#$$$@$J$`$�$%�%�%�%&&&o&'''	'''')'K'M'M'O'R'V'V'X'^'a'g'v'�'�'�'�'�'070?0?0A0�0�0�0�0�01,111�1�1�122 2C2`2{22�2�2�2�2�23v3{3�3�3�3N������-������6�8�<�>�>�@�A�C�D�F����?�P��������� �#�0�D�I�R�T�f�h�k�p�r�t�t�v��������^�a�����������������������������������������������������	��	��
��
����������
��
����8��P�����E`atuzz~~��������������������OQ\^�������������1VY_a�������������!:@R`mp���������			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
:?[������������������������������������GIiq�����������������Y_������ EHMPWYY[[]]_}�������������� . 0 F j p t � � � � � !8!S!�!�!�!"�"###z#$$$@$J$`$�$%�%�%�%&&&o&'''	'''')'K'M'M'O'R'V'V'X'^'a'g'v'�'�'�'�'�'070?0?0A0�0�0�0�0�01,111�1�1�122 2C2`2{22�2�2�2�2�23v3{3�3�3�3N������-������6�8�<�>�>�@�A�C�D�F����?�P��������� �#�0�D�I�R�T�f�h�k�p�r�t�t�v��������^�a�����������������������������������������������������	��	��
��
����������
��
���� ��P�����E`atuzz~~��������������������OQ\^�������������1VY_a�����������!:@R`mp���������			9	<	M	P	T	X	p	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Y
\
^
^
f
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02369<CGHKMVW\]_afp��������������������������������(*359>DFHJMUV`afo��������������������������






(
*
9
>
C
F
H
J
M
W
W
`
a
f
o
:?[������������������������������������������Y_������ EHMPWYY[[]]_}�������������� . 0 F j p t � � � � � !8!S!�!�!�!"�"###z#$$$@$J$`$�$%�%�%�%&&&o&'''	'''')'K'M'M'O'R'V'V'X'^'a'g'v'�'�'�'�'�'070?0?0A0�0�0�0�0�01,111�1�1�122 2C2`2{22�2�2�2�2�23v3{3�3�3�3N���-������6�8�<�>�>�@�A�C�D�F����?�P��������� �#�0�D�I�R�T�f�h�k�p�r�t�t�v��������^�a��������������������xy��������00WX����������KL����./??\]__k������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	






)
)
1
1
4
4
7
7
:
;
=
=
C
F
I
J
N
P
R
X
]
]
_
e
w
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

))1144:;EFIJNUX[^^dex���������������������������������

)):<EEIINTWW[_depv��������������������������







E
E
I
I
P
S
d
e
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
;>\�����������������������HHmp��������������IINOWWYY^_����������������[\}����������

7?T_mmqqt������y����,/<?ACnou������__}~��������LO}��8:JL����������FGNOXXZZ\\^^~��������������e e r s � � � � � � � � �!�!'$?$K$_$t+u+�+�+/,/,_,_,�,�,&-&-(-,-.-/-h-n-q-~-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-P..�.�.�.�.�/�/�/�/@0@0�0�0110101�1�1�1�1�1�122�M�M�������ǤϤ,�?���������ǧ��,�/�:�?�x��ƨͨڨߨT�^�}��ΩΩکݩ����7�?�N�O�Z�[�êڪ���������'�'�/�/�h�o�������������������n�o��������7�7�=�=�?�?�B�B�E�E���@�O�������������S�S�g�g�l�o�u�u����������������������������'';;>>NO^��46�������������$,KO{��������������(/dnp�7?V_h�		669;=>VV��������		:	>	@		�	�	�	�	







6
7
;
>
I
O
Y
_
�
�
�
�
�
�
68VWsw������I����(
/
:
_�(/Z���NQp~��������55GOw������?��������������
))1144::EFIJNOQVX\demou�ZZ\\`�������EOZ_m����,/@�<����������HO����		77FOmo������

79;;>>HOZ_ffii�������������#�#o$o$u$$D%�//4/494�CGF�g9j?j_j_jjjmjpj�j�j�j�j�jFkOkZkZkbkbkxk|k�k?n�n�nKoNo�o�o�o�o�o�o��������O�S�c�h�o�����k�o�}������������������'�(�����F�������W�_�y���U�U�����������������������������������������:�:�?�?�E�E�G�I�Q�Q�������������������������"�"�%�%�+���-�/�>�?�J�M�P������������������L�O�Z�]�`�p����>����� � �#�#�%�&�(�(�3�3�8�8�:�:�<�A�C�F�H�H�J�J�L�L�P�P�S�S�U�V�X�X�Z�Z�\�\�^�^�`�`�c�c�e�f�k�k�s�s�x�x�}�}���������������������������,�/���������������������
��m�o�������<�?�I�O�R�_�f�����������t���������H�O�Z�_�����������r�r�w�y�����������T�_�n�o�t�w�{����������צ��5�?�����������������M����< < I I "!"!9!9!�!�!�!�!##(#(#�#�#�#�#�#�#�#�#�$�$�%�%�%�%�%�%�%�%&&&&&�&�&'''''''''!'!'('('3'4'D'D'G'G'L'L'N'N'S'U'W'W'c'g'�'�'�'�'�'�'�'�'4)5)++++P+P+U+U+0000=0=0�2�2�2�2���
��/�/�l�q�~������������������/�/�2�:�<�?�I����=�F�O�����t�������H�O�Z�_����������:�<�E�G���
##**09
 
 � � �������������� $&&�&�&
'
'����������������B�C�F�P�f�x�|�|���������������������t�u�z�z���������E�G�K�O�������������������&�&�0�9�<�>���������������������Q##�#�#�#�#�#�#�%�%&&H&S&&&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&''
''('('L'L'N'N'S'U'W'W'�'�'�'�'�'�'++P+P+U+U+����������������������/�/�2�6�8�:�P�Q�� �-�5�7�|�~���������������������>�@�@�B�����=�K�N�P�g�z�z�����������O�����������������
�:�<�E�G�q�s�v�z�������������p�s�x�z����������##**09����< < I I "!"!9!9!�!�!�!�!##(#(#�#�#�#�#�#�#�$�$�%�%�%�%�%�%�%�%&&&&&&&&&&&& & &"&#&&&&&*&*&.&/&8&:&@&@&B&B&H&S&_&`&c&c&e&f&h&h&{&{&~&&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&'''''
'''''''''''!'!'('('3'4'D'D'G'G'L'L'N'N'S'U'W'W'c'd'�'�'�'�'�'�'�'�'4)5)++++P+P+U+U+0000=0=0�2�2�2�2������p�q�~������������������/�/�2�:�P�Q��!�$�������������������������=�I�N�P�g�o�p�s�z���������������������������������������������������O���������������������
�:�<�E�G�q�s�v�z�������������p�s�x�z���������������������!/:@[^``{~�������������������� ' 0 > A S U ^ �!_$%u'�'�+..000 00000>�?�E�F�	
  ��  ( ) 
���J!!..??������7799=>d	e	JKbbghnn56		DE��Z[^_;<~< = G I ....<.<.00������������v�w�ΨϨ/�/�ȩɩ]�_�����R�R�V�W�������a�a�V
W
UYGH��AC������89;<��KL����AB<>BC��AB��njoj�j�j7k8kDkDk�n�n������������iq����!!.!.!�0�0@D������������������ij//IIhh������VVXXbb������--��q q H!I!|,|,"�#�V�W�������������&�'�Z�[�������������*�+�^�_�����IIsswwyy��j o )#*#OO_`��e e d1d1�����������4�MN���������!�!�#�$�'�)�֦�4�@�� ��������.�.�.�./�/�/�/�/�/�/�/�	�	�	�	>>WW��������>
>
W
W
�
�
�
�
55  .0/0����>>WW������e�e�n�r� ����������������������������������������	��	��
��
����������
��
������������`!o!�$�$0�I�P�i�p�������������EEzz,jxx��q q   � � p!!�$�$|,},����p�p�����\�_�����@@��FF��

CC��66{{001050�0�0�0�0����ϩϩ��p�p�ݪݪ��p�p�]]����BkCk�o�o�o�o<�=�D�F��^^``���������NPW]btuzz����YY����������KRWX������0J������<	<	M	M	Q	T	q	q	�	�	�	�	<
<
M
M
�
�
�
�
�
�
<<MM��MM����;
<
M
M
�
�
GLNN����557799>?������779:cdim������]_����9;u|��44DDks��67x}��������,j�������������������,�,/./.*0/0�0�0�0�0o�o�|�}����������!���������ĨĨ��+�.�S�S�����������{�}���ª����[�_����� �/�>�>�@�@�p�p����������
�
"
'
FP��34ss����56��<<MMflptBBFF����??��++9:��44GG��??BBDE���j�j0k6k�o�og�i�m�r�{�����������0�6���������D�F�H�J�00!0)080:04�MN��m�p��p����p���֦�4�@�� ����������EE����������KWY_pp��������0?��#%'),�����	:	;	>	L	N	O	U	W	b	c	�	�	�	�	�	�	�	�	�	�	�	�	

>
B
G
H
K
L
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
>DGHKLVWbc����������>DFHJLUVbc������������

>
D
F
H
J
L
W
W
b
c
�
�
�
�
�
�
�
�
�
�
114:MM��������q�����+688;>VY^`bdgmqt������23RSrs������ +08U^at5C��������$6���$�$�-�-t�{���������#�'�������èŨŨ����&�*�G�R�����������)�6�C�C�L�M�{�}���������������������������vz





$
'
8E����'2EF����,477>>��>DGHKLWWbc5ACE��������0>@@��*,8������
59;>Q[��/68>����16::<=?ACCGG��������OoOoQo�o�o�o���������!�#�$�&�*�G�G�0�I�P�i�p���09AFaf��!�&�A�F��^^��������  2 4 @ @ a d } ~ � � � � � � � � � � !!!!
!!!!!!$!$!(!)!,!-!/!1!3!8!<!?!E!I!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!##�#�#�#�#�#�#�#�#�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%&&@&@&B&B&`&c&m&n&�'�'�'�'�)�)�)�)�)�)a�a�c�c�h�h�<�<�>�>��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p�����������������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������f!!,,..:;??~~��������
��0>^^d	e	Z[
JKahnn��56����	DE��Z[]_;?~< = G I ....<.<.A.A.L.L.N.O.00����
�����v�w�ΨϨ/�/�ǩɩ]�_�ߪߪ����P�R�T�W�����������a�a�d�d�����WW		V
W
�
�
:?��UYGM��AC������8<��KM[[����AB<>BC����ACqq��p$t$njoj�j�j7k9kDkDk�n�n��������
""''����  9 : B.B.0000A�D�����b�c�
--����  ..�0�0c�c�
�
�e�e�--����  S S { { � � ""....:.;.@.@.000000�0�01�2�X�X�c�c�
�
� 
   * . f i ���������,�0�=�@�I�N�O���������'0Y
'
0
9
@n�n��`eghj�������;GP��o�op���	6::<=?GPY�o�op��������Y[[]_p�����
68EPl�K�P�Y�^�_����������������������������������DFF+0?����������������������Pz��`�����
�
@j^j`jijnjojDPY��������
�
�
�
Pv6@U`g>kEkPkYk[kakckwk}k�k(*02359<DGHKMPPWW]cflpt'�j�p�|��������������j�j�j�j0coo������������oJoOo�o�o�o�	�	�	�	�	�	�	�	46F@[^^MRo��������H`rx@UX_`

@UW_�����������ͩЩ٩ީߩ����h8jФ��-0>0.4048459?��ª۪ߪ ^`|������6�@�M�P�Y�\�_� 	9	?	?	����0�S�_�_��-�/�/���ŨΨ٨�+�P7;IMO��������@�w�				 �#$n$p$t$�$C%KP|








5
8
:
?
H
P
X
�����+�0-g-o-p---,.,0,^,�����!�#�$�&�*������������,�,�,�,(�(
578<<??����P����
&(:<=?MP]��Pmpt +0;@@DO`lnprs@S 4o��KUppQ	T	������������������ 
 � � *0-0�0�0�� �-�����;;g�i�{������������O0J#-/�����Ƥ�.�.�.�./�/0000!0)080;04�MN��m�p��֦�4�@�� �����������1/1�1�1	�0�0�0�0�1�1�2�23W3f�o�q�����d�g�A0�0�0�0��P�R��� x��`l��������������������p��� HJMPVXXZ]`����������������Z]|���-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-��	���� �&�(�.��.0/011�122`2~2`�|������������������������
��������������-%-'-'-----����`��GIlq�������������������������������:@[
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
��






D
F
H
J
O
T
c
f


��������������������������(*9=DFHJMUVXZ`cfow������������������������������������(*02359<DGHKMVW\]_cfw�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�








(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�		P	U	c	f		�����
JMO`j9
 ?AJVoq���P��������P����=�P���������p�t�v���`~����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~�������������������������	�������6�8�<�>�>�@�A�C�D�F�O�1VY���������/��++xx�-�-@���.�/�$psuwz}��������������&*]afj�� EHMPWYY[[]]_}��������������&!&!e�e�@����E� AZaz������������%,\bekwy��q q   � � *!+!2!2!N!N!`!�!`,,"�������§Ƨ����0�Z�\�d�f�g���!�:�A�Z��@[`{���������������tt~~������@@����d	e	??������56������������   d f p t ~ � � � � !%!'!)!,!1!3!M!O!_!�!�!�!&$@$J$`$�')s+v+�+�+�+.O.�/�/00000 00070<0?0�0�0�0�0�0�0�1�1�1�1 2_22�2�2�2X3�3�M�M�!�����0�9�.�.�ϩϩ[�[�>�?���0�R�T�f�h�k������ �;�@�[�e�p�p�������������37?�������o�o��������&�)�f�j�z������������������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�����������q����=��+�0����������������������l�p����������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z��������� 4M	M	�	�	M
M
�
�
MM��MM��;
<
M
M
�
�
::����9:44��``DD����--��ĨĨS�S�����������?
?
FF��34��55��MMBB����??��++99��44GG��??DE��3 ~����pwz���������/1VY���������������J`oq��������
/M��������$$((0>@X^^`j����	9	;	;	=	@	I	L	N	P	X	a	d	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
>
@
Y
\
^
^
f
o
r
t
v
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359==@@GHKL\]_afw��������������������������������(*9==ADXZ`afow�����������������������������






:
=
=
?
@
F
H
J
L
N
O
T
V
X
a
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
023?FO[������������������������46688:GIl����������,1188;<?WZ]apu��������������HJMPVXXZ]`����������������Z`|��������� 156@Q`lnp��������������
 x��������#&)+0138@@Dmpt�������UWWaacdmr������3;;=ACKPjt|�����������������+45;IM������������������ EHMPWYY[[]]_}�������������� 
  ' / _ p q t � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,�,�,%-'-'-----0-g-o-p-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-.O.�.�.�.�./�/�/�/0)000?0A0�0�0�01/111�1�1�1�1�1�12 2�M�M������ƤФ+�@�n�s�s�~������������§Ƨ������
��$�'�+�0�9�@�w���èΨ٨����%�.�F�R�S�_�|���������������ͩϩ٩ީ�����(�/�0�3�4�@�B�D�K�M�M�P�Y�\�{�}�������������������ªª۪������	���� �&�(�.�0�g�p���������������������m�p���������6�8�<�>�>�@�A�C�D�F����?�P�����������0�R�T�f�h�k�p�t�v��������������������������
&(:<=?MP]��37�������������#-JPu�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	





5
@
H
P
X
`
�
�
�
�
�
59UXrx�����H�����#
0
9
`~'0EQY��7GMRo������������&,,6FPrtv����������.23558=����������������(*02359==??ADGHKMPP]c7@AEEGY[[]]__��������������������������2;<>>ADPY`l������������ !&&0?.88;;������������29:?FPPWX\�������
/>>@EPlp�������	0FFPY`eghj�����������������#$n$p$t$�$C%0.4DFFh8j@j^j`jijnjoj�j�j�j�jk/k7kEkPkYk[kakckwk}k�k@n�noJoPo�o�o�o�o�op������P�R�d�g�p����j�p�|���������������������&�)�d�f�f�j�m��������������A�E�E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�����������7�:�m�t�v��������,�7�=�@�I�N�O���������������������C�K�K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������֦�4�@�� ���������Oo������������K_pp��������0J������#%')-Y[���	:	:	<	<	A	H	M	M	Q	W	b	c	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	

<
<
A
B
G
H
K
M
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
<<>?ADMMVWbc����������>@FHJMUVbc����������������

;
<
>
>
A
D
M
M
W
W
b
c
�
�
�
�
�
�
�
�
�
�
114:GN������557799q~����������-0279:=>XY^`qt��������]_24RSrs����������
���� "'(229;VVX^``bbels|��4:<<BBks����������������,367����������������  � � �,�,--�-�-*0/0�0�0o�r�t�}�������������%�&�ĨŨ������&�-�G�Q�������������������)�.�1�2�5�6�C�C�L�L�|�|������������������������������������� �/���������vz





8
:
?
?
�
�
$
'
FP8F�����'+-4ss������/14467>>����;<>>@@WWflpt8?BDFF^^����������������������3:==?@��������"%'+/79:������
38;>GGQVY[����068=??��������16::<=?EGG���������j�j0k6kOoOo�o�o����e�e�g�i�n�r�{�����������B�D��6�;�l�u�u������������������!�#�$�&�*�0�6���������D�J� ���OO_`��  * . ` o d1d1�����������������s�z���09AZ__az����������������������tvw{}�������������/1VYY`��������������� in���������JM�������-@[`j�������c	f	o	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfoqq��������������������������������(*9=DFHJMUVXZ`cfo����������������������������






D
F
H
J
N
T
W
_
c
f
o
z

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:@NPY���������������������� )557799>GIlq�������IP����������HJMPVXXZ]`����������������Z]_iq������lo������ 4@S`lnprs��������
 x���� +0;Fmpt������ ^`|�������KPYks��7@IM}������������ EHMPWYY[[]]_}��������������������? @ T T q q   � � � � � � � � !!!!
!!!!!!$!$!&!&!(!(!*!9!<!?!E!I!N!N!`!�!,.,0,^,`,�,�,�,-%-'-'-----0-g-o-o--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-00!0/0105080<0A0�0�0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф�����+�@�o�t�}�����"�������§Ƨ��'�@�s���ŨШ٨���������-�0�S�`�|�����ϩ٩����6�@�M�P�Y�`�v�z�ª۪ݪ�������	���� �&�(�.�0�Z�\�g�p�������������������m�p�������(�*�6�8�<�>�>�@�A�C�D�F����]�d�=�P����������� �/�3�4�M�O�q�q�s�s�w�w�y�y�{�{�}�}������!�:�?�?�A�Z�f�����������
&(:<=?MP]��@t��������-JPz���������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	








5
8
:
?
?
`
|
�
�
�
�
�
�
5@U`r��H����
'
0
9
''0P��Ffo�����46?DFPsvv��������7>>��������������(*02359;DGHKMPPWW]cflptJPY^_������������@DDPY����+09:������������>GGP�����
68@PYr�����	6::<=?GPY`eghj��������� �#$n$�$C%0.4DFFh8j@j^j`jij�j�j�j�jk6k@kCkPkYkckwk}k�k@nnoJoOo�o�o�o�o�o�o�op������P�R�d�g�p����j�p�|�������������e�i�m�r�{�����������B�D��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p��������������������6�;�l�u�u������������������!�#�$�&�*��,�0�=�@�I�N�N�������������K�P�Y�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ����������hAZaz��������������������ptvw{}�������������/1VYY`����� Jnoq�����������/M���������$$((@X`j����	9	=	=	P	P	X	a	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	





(
*
0
2
3
5
6
8
9
Y
\
^
^
r
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359==\]_aqq����������������������(*9==XZ`a��������������������




:
=
=
N
N
T
V
_
a
z

�
�
�
�
�
�
�
�
�
�
022@F����������������������@GIl��*??PUZ]aaefnpu������������HJMPVXXZ]`����������������Z������lo������ 1@Q`lnp������ x������Pmpt���� T��3EK������#MOZ}��������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!9!<!?!E!I!N!N!`!�!,.,0,^,`,�,�,�,�,�,-%-'-'-----0-g-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-00!0)0105080<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф������*�+�@�n���������"�������§Ƨ������
��"�@�s����������������
�%�0�F�`�|�����ϩϩ���������(�@�B�D�K�`�v�z�z�~�������������������ªª۪ݪ������	���� �&�(�.�0�Z�\�g�p��������������m�p���������(�*�6�8�<�>�>�@�A�C�D�F����]�d�=�P���������q�q�s�s�w�w�y�y�{�{�}�}����!�:�A�Z�f���������������
&(:<=?MP]��@t����-JPu�������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	






5
`
|
�
�
�
�
�
�
5@U`r��H����
#
''0E��7����&DDPrvv��������+������������(*02359==PP]a4GJ__����������/DD����+������������2::PP\�����
.@@r�	0FF`eghj����� �#$n$�$C%0.4DFFh8j@j^j�j�jk/k@kCkckwk}k�k@nnoJoPoPo�o�o�o�o�o�op������P�R�d�g�p����j�p�|����������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p����������������,�7�=�N�N���������C�K�K�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ����������09AZ__az����������������������tvwz}�������������/1VYY`��������������� in���������JM�������-@[`j�������c	f	o	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfoqq��������������������������������(*9=DFHJMUVXZ`cfo����������������������������






D
F
H
J
N
T
W
_
c
f
o
z

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:@NPY���������������������� )557799>GIlq�������IP����������HJMPVXXZ]`����������������Z]_iq������lo������ 4@S`lnprs��������
 x���� +0;Fmpt������ ^`|�������KPYks��7@IM}������������ EHMPWYY[[]]_}��������������������? @ T T q q   � � � � � � � � !!!!
!!!!!!$!$!&!&!(!(!*!9!<!?!E!I!N!N!`!�!,.,0,^,`,�,�,�,-%-'-'-----0-g-o-o--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-00!0/0105080<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф�����+�@�o�t�}�����"�������§Ƨ��'�@�s���ŨШ٨���������-�0�S�`�|�����ϩ٩����6�@�M�P�Y�`�v�z�ª۪ݪ�������	���� �&�(�.�0�Z�\�g�p�������������������m�p�������(�*�6�8�<�>�>�@�A�C�D�F����=�P����������� �/�3�4�M�O�p�t�v�����!�:�?�?�A�Z�f�����������
&(:<=?MP]��@t��������-JPz���������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	








5
8
:
?
?
`
|
�
�
�
�
�
�
5@U`r��H����
'
0
9
''0P��Ffo�����46?DFPsvv��������7>>��������������(*02359;DGHKMPPWW]cflptJPY^_������������@DDPY����+09:������������>GGP�����
68@PYr�����	6::<=?GPY`eghj��������� �#$n$�$C%0.4DFFh8j@j^j`jij�j�j�j�jk6k@kCkPkYkckwk}k�k@nnoJoOo�o�o�o�o�o�o�op������P�R�d�g�p����j�p�|�������������e�i�m�r�{�����������B�D��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p��������������������6�;�l�u�u������������������!�#�$�&�*��,�0�=�@�I�N�N�������������K�P�Y�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ����������aAZaz��������������������ptvwz}�������������/1VYY`����� Jnoq�����������/M���������$$((@X`j����	9	=	=	P	P	X	a	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	





(
*
0
2
3
5
6
8
9
Y
\
^
^
r
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359==\]_aqq����������������������(*9==XZ`a��������������������




:
=
=
N
N
T
V
_
a
z

�
�
�
�
�
�
�
�
�
�
023@F����������������������@GIl��*??PUZ]aaefnpu������������HJMPVXXZ]`����������������Z������lo������ 1@Q`lnp������ x������Pmpt���� T��3EK������#MOZ}��������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!9!<!?!E!I!N!N!`!�!,.,0,^,`,�,�,�,�,�,-%-'-'-----0-g-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-00!0)0105080<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф������*�+�@�n���������"�������§Ƨ������
��"�@�s����������������
�%�0�F�`�|�����ϩϩ���������(�@�B�D�K�`�v�z�z�~�������������������ªª۪ݪ������	���� �&�(�.�0�Z�\�g�p��������������m�p���������(�*�6�8�<�>�>�@�A�C�D�F����=�P���������p�t�v���!�:�A�Z�f�����������
&(:<=?MP]��@t����-JPu�������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	






5
`
|
�
�
�
�
�
�
5@U`r��H����
#
''0E��7����&DDPrvv��������+������������(*02359==PP]a4GJ__����������/DD����+������������2::PP\�����
.@@r�	0FF`eghj����� �#$n$�$C%0.4DFFh8j@j^j�j�jk/k@kCkckwk}k�k@nnoJoPoPo�o�o�o�o�o�op������P�R�d�g�p����j�p�|����������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p����������������,�7�=�N�N���������C�K�K�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ���������{AZaz�������79������������ "3:TVWYY[\`accefhlooqruu}}����������EEpsvw{}�����������������/1Va���������������������yy}}������ EHMPWYY[[]]_}��������������������&!&!*!+!2!2!N!N!`!!�!�!�$�$,.,0,^,`,p,r,s,u,v,~,�,�,�,�,�,-%-'-'-----@�m�����"�/�2�o�y�������������������§ƧS�S�p�������!�:�A�Z�O����������@nn�C�dAZ������

  ""$$&&((**,,..0022446699;;==??AACCEEGGIJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxy{{}}������������������������������������������������������������������������������������������

  ""$$&&((**,,..0022:;=>AACFHHJJLLNNEEpprrvv���������������������������������������������������/``bbddffhhjjllnnpprrttvvxxzz||~~����������������������������������������������������������������������������������������������������������������������

  ""$$&&((**,,..1V����������������

  ""$$&&((**,,..0022446688::<<>>@@BBDDFFHHJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxxzz||~~��������������������������������������������������������������������������������������������������������������������������(/8?HMYY[[]]__ho������������������&!&!*!+!2!2!`!o!�!�!�$�$,.,`,`,b,d,g,g,i,i,k,k,m,p,r,r,u,u,~,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l���������������������������������������������������������"�"�$�$�&�&�(�(�*�*�,�,�.�.�2�2�4�4�6�6�8�8�:�:�<�<�>�>�@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l�n�n�y�y�{�{�}�~�����������������������������������������������������������������������������������������������������§§ħƧp�������!�:�'������@n_n�!�gaz������		

!!##%%''))++--//11335577::<<>>@@BBDDFFHIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwzz||~���������������������������������������������������������������������������������������������		

##%%''))++--//1133<<?@BBGGIIKKMMOTVWYY[\`accefhlooqruu}}����������EEqqssww{}��������������������������������������0_aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������		

!!##%%''))++--//a�����yy}}��		

!!##%%''))++--//1133557799;;==??AACCEEGGIIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwyy{{}}��������������������������������������������������������������������������������������������������������������������� '07@EPW`gp}��������������������������N!N!p!!�!�!�$�$0,^,a,a,e,f,h,h,j,j,l,l,s,s,v,v,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,-%-'-'-----A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m���������������������������������������������������������#�#�%�%�'�'�)�)�+�+�-�-�/�/�3�3�5�5�7�7�9�9�;�;�=�=�?�?�A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m�o�o�z�z�|�|�����������������������������������������������������������������������������������������������ççS�S�p�������A�Z�(O������`nn"�C�haz������		

!!##%%''))++--//11335577::<<>>@@BBDDFFHIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwzz||~�������������������������������������������������������������������������������������������		

##%%''))++--//1133<<?@BBGGIIKKMMOTVWYY[\`accefhlooqruu}}����������EEqqssww{}��������������������������������������0_aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������		

!!##%%''))++--//a���������yy}}��		

!!##%%''))++--//1133557799;;==??AACCEEGGIIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwyy{{}}��������������������������������������������������������������������������������������������������������������������� '07@EPW`gp}��������������������������N!N!p!!�!�!�$�$0,^,a,a,e,f,h,h,j,j,l,l,s,s,v,v,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,-%-'-'-----A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m���������������������������������������������������������#�#�%�%�'�'�)�)�+�+�-�-�/�/�3�3�5�5�7�7�9�9�;�;�=�=�?�?�A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m�o�o�z�z�|�|�����������������������������������������������������������������������������������������������ççS�S�p�������A�Z�(O������`nn"�C�WAZ����

  ""$$&&((**,,..0022446699;;==??AACCEEGGJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxy{{}}������������������������������������������������������������������������������������������

  ""$$&&((**,,..0022:;=>AACFHHJJLLNNpprrvv���������������������������������������������/``bbddffhhjjllnnpprrttvvxxzz||~~����������������������������������������������������������������������������������������������������������������������

  ""$$&&((**,,..1V������������

  ""$$&&((**,,..0022446688::<<>>@@BBDDFFHHJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxxzz||~~������������������������������������������������������������������������������������������������������������������������(/8?HMYY[[]]__ho����������������&!&!*!+!2!2!`!o!�!�!�$�$,.,`,`,b,d,g,g,i,i,k,k,m,p,r,r,u,u,~,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l���������������������������������������������������������"�"�$�$�&�&�(�(�*�*�,�,�.�.�2�2�4�4�6�6�8�8�:�:�<�<�>�>�@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l�n�n�y�y�{�{�}�~�����������������������������������������������������������������������������������������������������§§ħƧ!�:�'������@n_n�!��''..::^^``�����������otuzz������YY������������@@K_pp������0J��������-Y[�	:	:	<	<	A	H	M	M	Q	W	b	c	q	q	�	�	�	�	�	�	�	�	�	�	�	�	

<
<
A
B
G
H
K
M
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
<<??ADMMVVbc������>@FHJMUVbc������������

;
<
A
D
M
M
b
c
�
�
�
�
�
�
114:FN��������557799q~����������-0279:=>XY^`qt����������]_24RSrs������������CC���� "'(229;VVX^``bbels|����446:<<BBks����������������,367x}������������,jxx����������������    $ $ ' ' * . ` d f o q q   � � � � |,},�,�,o-o---�-�-/./.00*0-01050;0;0�0�0�0�0��������o�r�t�}����������!�p�p���������������%�&�ĨŨ������&�-�G�Q�����������������ϩϩ��)�.�1�2�5�6�C�C�L�L�p�p�|�|���������������������ݪݪ��������[�_����������������� �/�R�R�U�U�����������>�>�@�@�p�p���������������vz





8
:
?
?
�
�
$
'
FP8F���������'+-4ss������/14467>>����;<@@flpt8?BDFF^^����������������3:==?@��������"%'+/79:������
38;>GGQVY[����068=??��������16::<=?EGG��������0484�j�j0k6k@kCkOoOo�o�o�o�o�o�o��������g�i�s�����������B�D��6�;�l�u�u������������������!�#�$�&�*�0�=���������D�K����� ��AZaz����������������������EEpsvwz}�������������/1V`���������������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!-!/!4!9!9!<!?!E!I!N!N!`!!�!�!�$�$,.,0,^,`,�,�,�,�,�,-%-'-'-----@�m�����"�����������§Ƨ����0�Z�\�g�p�������!�:�A�Z�O����������@nn�T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p����������������C�0�I�P�i�p����++<>^^||~~����������������  2 4 @ @ D D R R a d z ~ � � � � � � � � � � !!!!
!!!!!!$!$!(!)!,!-!/!1!3!8!<!I!K!K!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�"## #!#|#|#�#�#�#�#�#�#�#�#�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%&&@&@&B&B&`&c&m&o&�'�')�*0+D+G+L+)�)�a�f�h�h�����<�<�>�>�\�\�^�^������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R���������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~�������������������������  ���� 
 / / _ _ 00) ) ( (   ���� 
 ( ) / / _ _ 00����������������������	�	pp����O
O
y
y
446688������������mm@@��ajt|!!!!!	!!!!!!#!%!%!'!'!)!)!.!.!:!;!J!J!L!M!O!O!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!####"#(#+#{#}#�#�#�#�#&$@$J$�$�$%�%�%�%�%�%&n&p&g'�'�'(�(+/+E+F+M+s+v+�+�+�+�,�,�.�.�.�./�/�/�/0000 0 06070>0?0�1�1�1�1�1�122*2G2P2P2`22�2�2�2�3�M�M��Ƥ(�+�6�7�9�9�w�y���������������7?y���������wx�
�
??����<k?kEkEk��������&�)�d�j�l��������������A�E�E��V����7�:�m�t�v�������O�O�����.�.��+�0��������������������l�p�������;�@�H�P�Q�`�e������������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������@++<>||~~����������D D R R z | � � !!@!D!K!K!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�" #!#|#|#�#�#�#�#�%�%�%�%�%�%o&o&�'�'�'�'�'�')�)�)�)�)�)�)�*0+D+G+L+)�)�b�b�d�f�����\�\�^�^�������������������5�5�O�O�o�o�����������������^^``������������������uu���������������0�0�� �!�����[�[�����>�>�@�@�������$$�������	�	�	�	�
�
��??��� � 8�8�����i�i������������������$$++<>^^``||~~��������������������������uu�������������������	�	�	�	�
�
pp��O
O
y
y
??446688������������mm��@@��ajt|������������D D R R z | � � � � !!!!!	!!!!!!#!%!%!'!'!)!)!.!.!:!;!@!D!J!M!O!O!�!�!�!##(#+#&$@$J$�$�$%g'�'�'�'�'�'�)�)�)�)�)�)s+v+�+�+�+�,�,�.�.�.�./�/�/�/0000 0 06070>0?0�0�0�1�1�1�1�1�122*2G2P2P2`22�2�2�2�3�M�M��Ƥ�� �!�����(�+�6�9�w�y�[�[�)�)���������b�b�d�f�i�i�������>�>�@�@�\�\�^�^���������7?y���������wx�
�
??��<k?kEkEk��������&�)�d�j�l��������������A�E�E��V���������������5�5�O�O�o�o����������������7�:�m�t�v�������O�O�������������.�.������+�0��������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������K(([[{{::<<��    E E } } � � ##
#
#)#)#h'h'j'j'l'l'n'n'p'p'r'r't't'�'�'�'�'�'�'�'�'�'�'�'�'�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)".".$.$.&.&.(.(.B.B.00
0
00000000000000000?�?���5�5�7�7�9�9�;�;�=�=�?�?�A�A�C�C�G�G�Y�Y�[�[�]�]���;�;�[�[�_�_�b�b��!#%'**,,./:;?@\\��������~~��Z_����������	

jm��
��0>^^d	e	p	p	�	�	v
v
�
�
ww���
�
OOZ[������JO��`hnn��56����
DE����Z`��;?~����    ' 0 8 ; > A C G Q S S U ^ �,�,�,�,p-p-..............*...0.9.<.?.A.A.C.O.00=0=0�0�0����
��s�s�~�~����t�w�ΨϨ��������.�/�_�_���ͩީߩ\�_�ުߪ��������0�0�E�F�I�L�P�R�T�W�_�a�h�h�j�k�����
�
�������� �<�<�a�a�d�e�����ooWW		?	?	P
X


�
�
9?��UYGM����@Ctu��������8=��KO[[]]����AC`l<>;;��?F����AEpq����p$t$njoj�j�j7k;kDkDk�n�n�o�o��������^�_���      9 9 ....	.	..... . .
��    : : ....
.
.
.
...!.!.H))]]}};;==��F F ~ ~ � � 	#	###*#*#i'i'k'k'm'm'o'o'q'q's's'u'u'�'�'�'�'�'�'�'�'�'�'�'�'�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)#.#.%.%.'.'.).).	0	000
0
000000000000000>�>���6�6�8�8�:�:�<�<�>�>�@�@�B�B�D�D�H�H�Z�Z�\�\�^�^�	�	�=�=�]�]�`�`�c�c�--����  ....:.;.@.@.000000�0�01�2�X�X�c�c�
�
�__? @ T T 3�4�M�O�?�?�F�������	�	rw��x~X
^
p
x
*3i|����p p t y � � P!_!�!�!`$�$�$�$v'�'�,�,�1�1 2)2H2O2Q2_2�2�2�2�20�5�3ux���� #X_y����		�	�	�	�	�	�	@
H
}
~
�
�
�
�
X_x����`~&QTRe��:;��Zl��[kak�n�n����`�x�����q������������-�/�=�����`!�!�!�!00!0)080:0��@tAAJJ��$n$�09������`i����f	o	�	�	�	�	f
o
�
�
forw��fox~��X
^
f
x
�
�
PY�� 3@I��i|������FO������PY��@IPYp p t y � � P!�!�!�!`$�$�$�$v'�'�,�,00!0)080:0�1�1 2)2H2O2Q2_2�2�2�2�2 �)���0�5�Ш٨�	�Щ٩���P�Y������3@x���� #AAJJ����X_y����		�	�	�	�	�	�	@
H
}
~
�
�
�
�
X_x����0
9
`~&QTRo��6?������PY��PY��0;��PlPY����$n$`jijPkYk[kak�n�n����`�x�����@�I���������P�Y�q������������-�/�=���>o������������K_pp��������0J������#%')-Y[���	:	:	<	<	A	H	M	M	Q	W	b	c	�	�	�	�	�	�	�	�	�	�	�	�	

<
<
A
B
G
H
K
M
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
<<??ADMMVVbc������>@FHJMUVbc������������

;
<
A
D
M
M
b
c
�
�
�
�
�
�
114:GN������557799q~����������-0279:=>XY^`qt��������]_24RSrs����������
���� "'(229;VVX^``bbels|��446:<<BBks����������������,367����������������� � � � � � �,�,--�-�-*0-0�0�0o�o�t�}�������������%�&�ĨŨ������&�-�G�Q�������������������)�.�1�2�5�6�C�C�L�L�|�|������������������������������������� �/�����vz





8
:
?
?
�
�
$
'
FP8F�����'+-4ss������/14467>>����;<@@flpt8?BDFF^^����������������3:==?@��������"%'+/79:������
38;>GGQVY[����068=??��������16::<=?EGG���������j�j0k6kOoOo�o�o����g�i�{�����������B�D��6�;�l�u�u������������������!�#�$�&�*�0�6���������D�J������� � � � p�r��		;	;	>	@	I	L	N	O	�	�	�	�	�	�	�	�	�	�	

>
@
�
�
�
�
�
�
�
�
>>@@GHKLWW����������AD������������

>
@
F
H
J
L
W
W
�
�
�
�
�
�
�
�
>?+,1188;<VWbdgm��������������#&)+0138UUWWaacdmr55;;=ACD����������������$+45����.0/0#�$�'�'�������èR�S�����������������/�0�3�4�M�M�{�{�}�}�����������������������,,EF������,.2355��>?ADGHKMWWbc57@AEE��������������02;<>>������ !&&,.88������99WX��//>>��������������Qo�oe�f�m�r�o������������K_pp��������0J������#%')-Y[���	:	<	>	O	Q	W	b	c	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	

<
<
>
B
G
H
K
M
Q
Q
p
q
u
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
<<>DGHKMVWbc����������>DFHJMUVbc��������������

;
<
>
D
F
H
J
M
W
W
b
c
�
�
�
�
�
�
�
�
�
�
�
�
114:GN������557799>?q���������+>VY^`bdgmqt������]_24RSrs����
���� +0;U^`|��4Dks������$7��������������� � �,�,--�-�-*0/0�0�0o�r�t�}�������������#�'�������Ũ������&�-�G�S�����������)�6�C�C�L�M�{�}����������������������������������� �/�����vz





8
:
?
?
�
�
$
'
FP8F���'4EFss������,7>>��;<>DGHKMWWbcflpt5F^^��������0@��+,:������
39;>GGQ[��/68?����16::<=?EGG���������j�j0k6kOoOoQo�o�o�o����e�i�m�r�{�����������B�D��6�;�l�u�u������������������!�#�$�&�*�0�6���������D�J��|AZ����

  ""$$&&((**,,..0022446699;;==??AACCEEGGJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxy{{}}������������������������������������������������������������������������������������������

  ""$$&&((**,,..0022:;=>AACFHHJJLLNNpprrvv�����������������������������������������������/``bbddffhhjjllnnpprrttvvxxzz||~~����������������������������������������������������������������������������������������������������������������������

  ""$$&&((**,,..1V������������

  ""$$&&((**,,..0022446688::<<>>@@BBDDFFHHJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxxzz||~~������������������������������������������������������������������������������������������������������������������������(/8?HMYY[[]]__ho����������!!!!!
!!!!!!!$!$!&!&!(!(!*!-!0!3!>!?!E!E!�!�!,.,`,`,b,d,g,g,i,i,k,k,m,p,r,r,u,u,~,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l���������������������������������������������������������"�"�$�$�&�&�(�(�*�*�,�,�.�.�2�2�4�4�6�6�8�8�:�:�<�<�>�>�@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l�n�n�y�y�{�{�}�~�����������������������������������������������������������������������������������������������������§§ħƧ!�:�'������@n_n��4�M�h����������������������������������
�
����8�9�;�>�@�D�F�F�J�P�l������������!�<�U�p������������4�V�n����������!�
����������������������������������� ?AJnoq���������/M�����@X`j����	9	=	=	P	P	X	a	r	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	





(
*
0
2
3
5
6
8
9
Y
\
^
^
r
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359==\]_aqq����������������������(*9==XZ`a��������������������




:
=
=
N
N
T
V
_
a
z

�
�
�
�
�
�
�
�
�
�
023@E��������������������@GIl��*??PUZ]aaefnpu���HJMPVXXZ]`����������������Z��lo������ 1@Q`lnp���� BDx��������Pmpt���� T3EK������#MOZw��������5!8!0-g-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-00<0<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN������������*�+�n�n������������������
��"�@�s����������������
�%�0�F�`�|��������������(�@�B�D�K�`�o�q�v�z�z�~�������������������ªª۪ܪ������	���� �&�(�.����������������m�p�����(�*�6�8�<�>�>�@�A�C�D�F����=�P���������p�t�v���f�o�q���������������
&(:<=?MP]������-@BIPu������P�'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	






5
`
|
�
�
�
�
�
�
5@U`r��H
#
''0E��7����&DDPrvv��������+������������(*02359==PP]a4GJ__����������/DD����+����������2::PP\�����
.@@r�	0FF`eghj����� �#�$C%0.4DFFh8j@j^j�j�jk/kckwk}k�koJoPoPop������P�R�d�g�p����j�p�|����������,�N�N������������!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ���������<����������ttzzYY@@������$$((q	q	FF������CC��x},jxx��q q   � � |,},o-o-/./.001050;0;0�0�0�0�0����������������p�p���������ϩϩ��p�p�ݪݪ��\�_�p�p�����@kCk�o�o�o�o�o�o7�=�K�K��az������		

!!##%%''))++--//11335578::<<>>@@BBDDFFHIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwzz||~�������������������������������������������������������������������������������������������		

!!##%%''))++--//1139<<?@BBGGIIKKMMO���qqssww{}��������������������������������������0_aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������		

!!##%%''))++--//`���������+kwy�		

!!##%%''))++--//1133557799;;==??AACCEEGGIIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������� '07@EPW`gp}��������������������������
!
!!!!!/!/!4!4!9!9!<!=!F!I!N!N!�!�!0,^,a,a,e,f,h,h,j,j,l,l,q,q,s,t,v,{,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,-%-'-'-----A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m���������������������������������������������������������#�#�%�%�'�'�)�)�+�+�-�-�/�1�3�3�5�5�7�7�9�9�;�;�=�=�?�?�A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m�o�o�q�x�z�z�|�|�������������������������������������������������������������������������������������������������������çç����0�Z�`�g�p�������A�Z�(O������`nn�3�N�T�V�g�������������������������7�R�k������������"�;�V�o������������������6�N�P�U�p�������������������"�C��AZaz��������������psvw{}�������������/1V`���������������������+kwy� EHMPWYY[[]]_}��������������������!!!!
!!!!!!$!$!&!&!(!(!*!-!/!4!9!9!<!?!E!I!N!N!�!�!,.,0,^,`,{,~,�,�,�,�,�,-%-'-'-----@�m�����"�o�q�����������§Ƨ����0�Z�`�g�p�������!�:�A�Z�O����������@nn�T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p����������������C�aAZaz��������������������ptvwz}�������������/1VYY`����� Jnoq�����������/M���������$$((@X`j����	9	=	=	P	P	X	a	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	





(
*
0
2
3
5
6
8
9
Y
\
^
^
r
t
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359==\]_aqq����������������������(*9==XZ`a��������������������




:
=
=
N
N
T
V
_
a
z

�
�
�
�
�
�
�
�
�
�
023@F����������������������@GIl��*??PUZ]aaefnpu������������HJMPVXXZ]`����������������Z������lo������ 1@Q`lnp������ x��������Pmpt���� T��3EK������#MOZ}��������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!-!/!9!<!?!E!I!N!N!�!�!,.,0,^,`,�,�,�,�,�,-%-'-'-----0-g-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-/./.001050;0<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф������*�+�@�n���������"�������§Ƨ������
��"�@�s����������������
�%�0�F�`�|�����ϩϩ���������(�@�B�D�K�`�v�z�z�~�������������������ªª۪ݪ������	���� �&�(�.�0�Z�\�g�p��������������m�p���������(�*�6�8�<�>�>�@�A�C�D�F����=�P���������p�t�v���!�:�A�Z�f�����������
&(:<=?MP]������-@BIPu�����������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	






5
`
|
�
�
�
�
�
�
5@U`r��H����
#
''0E��7����&DDPrvv��������+������������(*02359==PP]a4GJ__����������/DD����+������������2::PP\�����
.@@r�	0FF`eghj����� �#�$C%0.4DFFh8j@j^j�j�jk/k@kCkckwk}k�k@nnoJoPoPo�o�o�o�o�o�op������P�R�d�g�p����j�p�|����������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p����������������,�7�=�N�N���������C�K�K�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������֦�4�@�� ��������������������xy��������00WX����������KL����./??\]__k������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	






)
)
1
1
4
4
7
7
:
;
=
=
C
F
I
J
N
P
R
X
]
]
_
e
w
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

))1144:;EFIJNUX[^^dex���������������������������������

)):<EEIINTWW[_depv��������������������������







E
E
I
I
P
S
d
e
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
;>\�����������������������HHmp��������������IINOWWYY^_����������������[\}����������

7?T_mmqqt������y����,/<?ACnou������__}~��������LO}��8:JL����������FGNOXXZZ\\^^~��������������e e r s � � � � � � � � �!�!'$?$K$_$t+u+�+�+/,/,_,_,�,�,&-&-(-,-.-/-h-n-q-~-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-P..�.�.�.�.�/�/�/�/@0@0�0�0110101�1�1�1�1�1�122�M�M�������ǤϤ,�?���������ǧ��,�/�:�?�x��ƨͨڨߨT�^�}��ΩΩکݩ����7�?�N�O�Z�[�êڪ���������'�'�/�/�h�o�������������������n�o��������7�7�=�=�?�?�B�B�E�E���@�O�������������S�S�g�g�l�o�u�u����������������������������'';;>>NO^��46�������������$,KO{��������������(/dnp�7?V_h�		669;=>VV��������		:	>	@		�	�	�	�	







6
7
;
>
I
O
Y
_
�
�
�
�
�
�
68VWsw������I����(
/
:
_�(/Z���NQp~��������55GOw������?��������������
))1144::EFIJNOQVX\demou�ZZ\\`�������EOZ_m����,/@�<����������HO����		77FOmo������

79;;>>HOZ_ffii�������������#�#o$o$u$$D%�//4/494�CGF�g9j?j_j_jjjmjpj�j�j�j�j�jFkOkZkZkbkbkxk|k�k?n�n�nKoNo�o�o�o�o�o�o��������O�S�c�h�o�����k�o�}������������������'�(�����F�������W�_�y���U�U�����������������������������������������:�:�?�?�E�E�G�I�Q�Q�������������������������"�"�%�%�+���-�/�>�?�J�M�P������������������L�O�Z�]�`�p����>����� � �#�#�%�&�(�(�3�3�8�8�:�:�<�A�C�F�H�H�J�J�L�L�P�P�S�S�U�V�X�X�Z�Z�\�\�^�^�`�`�c�c�e�f�k�k�s�s�x�x�}�}���������������������������,�/���������������������
��m�o�������<�?�I�O�R�_�f�����������t���������H�O�Z�_�����������r�r�w�y�����������T�_�n�o�t�w�{����������צ��5�?�������������������������������  * . ` d f o ������������0484����s�z� ����xy��������00WX�����������KL����./??\]__k��������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	






)
)
1
1
4
4
7
7
:
;
=
=
C
F
I
J
N
P
R
X
]
]
_
e
w
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

))1144:;EFIJNUX[^^dex���������������������������������

)):<EEIINTWW[_depv��������������������������







E
E
I
I
P
S
d
e
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
;>\�����������������������HHmp��������������IINOWWYY^_����������������[\}����������

7?T_mmqqt������y����,/<?ACnou������__}~��������LO}��8:JL����������FGNOXXZZ\\^^~��������������  * . ` o r s � � � � � � � � �!�!'$?$K$_$t+u+�+�+/,/,_,_,�,�,&-&-(-,-.-/-h-n-q-~-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-P..�.�.�.�.�/�/�/�/@0@0�0�0110101�1�1�1�1�1�122�M�M�������ǤϤ,�?���������ǧ��,�/�:�?�x��ƨͨڨߨT�^�}��ΩΩکݩ����7�?�N�O�Z�[�êڪ���������'�'�/�/�h�o�������������������n�o��������7�7�=�=�?�?�B�B�E�E���@�O�������������S�S�g�g�l�o�u�u�������������������������'';;>>NO^��46�������������$,KO{��������������(/dnp�7?V_h�		669;=>VV��������		:	>	@		�	�	�	�	







6
7
;
>
I
O
Y
_
�
�
�
�
�
�
68VWsw������I����(
/
:
_�(/Z���NQp~��������55GOw������?��������������
))1144::EFIJNOQVX\demou�ZZ\\`�������EOZ_m����,/@�<����������HO����		77FOmo������

79;;>>HOZ_ffii�������������#�#o$o$u$$D%�//4�CGF�g9j?j_j_jjjmjpj�j�j�j�j�jFkOkZkZkbkbkxk|k�k?n�n�nKoNo�o�o�o�o�o�o��������O�S�c�h�o�����k�o�}������������������'�(�s�z�����F�������W�_�y���U�U�����������������������������������������:�:�?�?�E�E�G�I�Q�Q�������������������������"�"�%�%�+���-�/�>�?�J�M�P������������������L�O�Z�]�`�p����>����� � �#�#�%�&�(�(�3�3�8�8�:�:�<�A�C�F�H�H�J�J�L�L�P�P�S�S�U�V�X�X�Z�Z�\�\�^�^�`�`�c�c�e�f�k�k�s�s�x�x�}�}���������������������������,�/���������������������
��m�o�������<�?�I�O�R�_�f�����������t���������H�O�Z�_�����������r�r�w�y�����������T�_�n�o�t�w�{����������צ��5�?�����������������wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfow�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[����������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-O.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�M�M������ƤФ+�@������§Ƨ��+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�g�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v��������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0Y��MRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]_��������DPY`l����+0?;����������GP���
68EPlp�����	6::<=?GPY`eghj�������������#$n$p$t$�$C%0.40484DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noJoOo�o�o�o�o�op������P�R�d�g�p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*��,�0�=�@�I�N�O�����������������K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������֦�4�@�� ��������� ��������!#%*,/:;?@[]__{{}}������������~~��Z_������������	

jm��
��0>^^d	e	p	p	�	�	v
v
�
�
ww���
�
OOZ[:=������JO��`hnn����56����
DE����Z`��;?~���� ' 0 C E Q S ^ } ~ � � ##)#*#h'u'�'�'�'�'�)�)�)�)�)�)�,�,�,�,p-p-...0.O.0000000000=0=0�0�0�0�0����
��s�s�~�~����t�w�ΨϨ��������.�/�_�_���ͩީߩ\�_�ުߪ����>�?���0�R�T�a�c�c�h�h�j�k����
������ �;�=�?�?�[�[�]�]�_�e�����ooWW		?	?	P
X


�
�
9?��UYGM����@Ctu��������8=��KO[[]]����AC`l<>;;��?F����AEpq����p$t$njoj�j�j7k;kDkDk�n�n�o�o��������^�_��09AZaz��������������������EEptvwz}�������������/1VYY`��������������� WYin���������?M�������,@X`j���������;	=	L	N	P	U	c	f	o	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
>
B
G
H
K
L
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359=DGHKLVW\]_cfoqq��������������������������������(*9=DFHJLUVXZ`cfo����������������������������






:
=
D
F
H
J
L
N
N
T
W
_
c
f
o
z

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:@FMMPY������������������������ )@GIlq�����688;IP����������HJMPVXXZ]`����������������Z������lo������ 3@S`lnprs���������� x���� +08Fmpt������ ^at������35CEKPY������6@IM}����������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!-!/!9!<!?!E!I!N!N!`!�!�$�$,.,0,^,`,�,�,�,�,�,-%-'-'-----0-g-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-/./.00!0)0105080<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф�����+�@�n�t�{�����"�������§Ƨ����'�@�s���èŨŨШ٨���������*�0�R�`�|���������ϩ٩����6�@�M�P�Y�`�v�z�������ªª۪ݪ�������	���� �&�(�.�0�Z�\�g�p�����������������m�p�������(�*�6�8�<�>�>�@�A�C�D�F����=�P���������p�t�v�����!�:�A�Z�f�����������
&(:<=?MP]��@t����-JPz���������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	








5
`
|
�
�
�
�
�
�
5@U`r��H����
'
0
9
''0E��Efo������26?DFPrvv��������477>>��������������(*02359=DGHKLPPWW]cACEGJPY__��������������>@@DDPY������*098��������������25>P�����
68>@@PYr�����	6::<=?ACCFGPY`eghj����������� �#$n$�$C%0.4DFFh8j@j^j`jij�j�jk/k@kCkPkYkckwk}k�k@nnoJoOo�o�o�o�o�o�o�op������P�R�d�g�p����j�p�|��������������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p������������������������!�#�$�&�*��,�7�=�@�I�N�N�������������C�G�G�K�K�P�Y�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������0�I�P�i�p���֦�4�@�� ����������09AZ__az��������������������tvwz}�������������/1VYY`��������������� in���������JM�������-@[`j�������c	f	o	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfoqq��������������������������������(*9=DFHJMUVXZ`cfo����������������������������






D
F
H
J
N
T
W
_
c
f
o
z

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:@NPY���������������������� )557799>GIlq�������IP����������HJMPVXXZ]`����������������Z]_������lo������ 4@S`lnprs��������
 x���� +0;Fmpt������ ^`|�������KPYks��7@IM}������������ EHMPWYY[[]]_}��������������������? @ T T q q   � � � � !!!!
!!!!!!$!$!&!&!(!(!*!-!/!9!<!?!E!I!N!N!`!�!�$�$,.,0,^,`,�,�,�,-%-'-'-----0-g-o-o--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-/./.00!0/0105080<0A0�0�0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф�����+�@�r�t�}�����"�������§Ƨ��'�@�s���ŨШ٨���������-�0�S�`�|�����ϩ٩����6�@�M�P�Y�`�v�z�ª۪ݪ�������	���� �&�(�.�0�Z�\�g�p�������������������m�p�������(�*�6�8�<�>�>�@�A�C�D�F����=�P����������� �/�3�4�M�O�p�t�v�����!�:�?�?�A�Z�f�����������
&(:<=?MP]��@t��������-JPz���������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	








5
8
:
?
?
`
|
�
�
�
�
�
�
5@U`r��H����
'
0
9
''0P��Ffo�����46?DFPsvv��������7>>��������������(*02359;DGHKMPPWW]cflptJPY^_������������@DDPY����+09:������������>GGP�����
68@PYr�����	6::<=?GPY`eghj��������� �#$n$�$C%0.4DFFh8j@j^j`jij�j�j�j�jk6k@kCkPkYkckwk}k�k@nnoJoOo�o�o�o�o�o�o�op������P�R�d�g�p����j�p�|�������������e�i�m�r�{�����������B�D��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p��������������������6�;�l�u�u������������������!�#�$�&�*��,�0�=�@�I�N�N�������������K�P�Y�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������0�I�P�i�p���֦�4�@�� ����������09AFaf�AZ����

  ""$$&&((**,,..0022446699;;==??AACCEEGGJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxy{{}}������������������������������������������������������������������������������������������

  ""$$&&((**,,..0022:;=>AACFHHJJLLNNpprrvv�����������������������������������������������/``bbddffhhjjllnnpprrttvvxxzz||~~����������������������������������������������������������������������������������������������������������������������

  ""$$&&((**,,..1V������������

  ""$$&&((**,,..0022446688::<<>>@@BBDDFFHHJJLLNNPPRRTTVVXXZZ\\^^``bbddffhhjjllnnpprrttvvxxzz||~~������������������������������������������������������������������������������������������������������������������������(/8?HMYY[[]]__ho����������!!!!!
!!!!!!!$!$!&!&!(!(!*!-!0!3!>!?!E!E!`!o!�!�!�$�$,.,`,`,b,d,g,g,i,i,k,k,m,p,r,r,u,u,~,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l���������������������������������������������������������"�"�$�$�&�&�(�(�*�*�,�,�.�.�2�2�4�4�6�6�8�8�:�:�<�<�>�>�@�@�B�B�D�D�F�F�H�H�J�J�L�L�N�N�P�P�R�R�T�T�V�V�X�X�Z�Z�\�\�^�^�`�`�b�b�d�d�f�f�h�h�j�j�l�l�n�n�y�y�{�{�}�~�����������������������������������������������������������������������������������������������������§§ħƧ!�:�'������@n_n��4�M�h����������������������������������
�
����8�9�;�>�@�D�F�F�J�P�l������������!�<�U�p������������4�V�n����������!�0�I�P�i�p���
	
  ������ 
 ( ) / / _ _ 00�!/:@[`{~������������~~��Z_������������	

jm��
��0>^^d	e	p	p	�	�	v
v
�
�
ww���
�
OOZ[:=������JO��`hnn����56����
DE����Z`��;?~���� ' 0 C E Q S ^ } ~ � � ##)#*#h'u'�'�'�'�'�)�)�)�)�)�)�,�,�,�,p-p-...0.O.0000000000=0=0�0�0�0�0����
��s�s�~�~����t�w�ΨϨ��������.�/�_�_���ͩީߩ\�_�ުߪ����>�?���0�R�T�a�c�c�h�h�j�k����
������ �;�=�?�?�[�[�]�]�_�e�����ooWW		?	?	P
X


�
�
9?��UYGM����@Ctu��������8=��KO[[]]����AC`l<>;;��?F����AEpq����p$t$njoj�j�j7k;kDkDk�n�n�o�o��������^�_�� ~�wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfow�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[����������������������GIlq�������������HJMPVXXZ]`����������������Z]|��������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� ' * d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-O.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�M�M������ƤФ+�@������§Ƨ��+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�g�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v��������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0Y��MRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]_��������DPY`l����+0?;����������GP���
68EPlp�����	6::<=?GPY`eghj�������������#$n$p$t$�$C%0.40484DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noJoOo�o�o�o�o�op������P�R�d�g�p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*��,�0�=�@�I�N�O�����������������K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������֦�4�@�� ��������� ������az����������		

!!##%%''))++--//11335578::<<>>@@BBDDFFHIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwzz||~�������������������������������������������������������������������������������������������		

!!##%%''))++--//1139<<?@BBGGIIKKMMO�������EEqqsswwz}��������������������������������������0_aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������		

!!##%%''))++--//`����������		

!!##%%''))++--//1133557799;;==??AACCEEGGIIKKMMOOQQSSUUWWYY[[]]__aacceeggiikkmmooqqssuuwwyy{{}}����������������������������������������������������������������������������������������������������������������������� '07@EPW`gp}��������������������������q q   � � 
!
!!!!!/!/!4!4!9!9!<!=!F!I!N!N!p!!�!�!�$�$0,^,a,a,e,f,h,h,j,j,l,l,q,q,s,t,v,},�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,-%-'-'-----A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m���������������������������������������������������������#�#�%�%�'�'�)�)�+�+�-�-�/�1�3�3�5�5�7�7�9�9�;�;�=�=�?�?�A�A�C�C�E�E�G�G�I�I�K�K�M�M�O�O�Q�Q�S�S�U�U�W�W�Y�Y�[�[�]�]�_�_�a�a�c�c�e�e�g�g�i�i�k�k�m�m�o�x�z�z�|�|�������������������������������������������������������������������������������������������������������çç����0�Z�\�g�p�������A�Z�(O������`nn�3�N�T�V�g�������������������������7�R�k������������"�;�V�o������������������6�N�P�U�p�������������������"�C��!~�wz�������/1VY���������
JM����-0>@[^^`j������	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
<
<
>
B
G
H
K
M
Q
Q
Y
\
^
^
f
v
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359<DGHKMVW\]_cfw��������������������������������(*9=DFHJMUVXZ`cfow�������������������������






D
F
H
J
O
T
c
f

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:?[����������������������GIlq�������������HJMPVXXZ]`����������������Z]|���������� 6@S`lnprs������ x���� +0;@@Dmpt�������^`|�������KP|���7;IM��������� EHMPWYY[[]]_}�������������� ' * . 0 ^ ` d f q t � � � � � � � !�!�!&$@$J$`$s+v+�+�+.,0,^,`,�,�,%-'-'-----0-g-o-p--�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-O.�.�.�.�./�/�/�/0?0A0�0�0�01/111�1�1�1�1�1�12 2�M�M������ƤФ+�@������§Ƨ��+�0�9�@�w���ŨΨ٨�S�_�|���ͩϩ٩ީ���6�@�M�P�Y�\�ª۪����	���� �&�(�.�0�g�p�����������������m�p�������6�8�<�>�>�@�A�C�D�F����?�P����������� �R�T�f�h�k�p�t�v��������������������������
&(:<=?MP]��37�������������#-JPz�������������'0coo6@U`g
578<<?UW��������		9	?	?	�	�	�	�	�	







5
8
:
?
H
P
X
`
�
�
�
�
�
59UXrx�����H�����'
0
9
`~'0Y��MRo�������46FPv������>��������������(*02359;DGHKMPPWW]cflptY[[]_��������DPY`l����+0?;����������GP���
68EPlp�����	6::<=?GPY`eghj�������������#$n$p$t$�$C%0.40484DFFh8j@j^j`jijnjoj�j�j�j�jkEkPkYk[kakckwk}k�k@n�noJoOo�o�o�o�o�op������P�R�d�g�p����j�p�|�����������������&�)����E������V�`�x��T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R������������������������!�#�$�&�*��,�0�=�@�I�N�O�����������������K�P�Y�^�_�q����=�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~��������������������������+�0����������������������l�p�������;�@�H�P�Q�`�e���������s���������G�P�Y�`���������
�q�s�v�z�����������S�`�m�p�s�x�z���������֦�4�@�� ��������� �����;09`i����f	o	�	�	f
o
�
�
fo��fo��f
o
�
�
PY�� )@I����FO������PY��@IPY �)�Ш٨�	�Щ٩���P�Y��������0
9
fo��6?����PY��PY��09��PYPY��`jijPkYk����@�I�����P�Y��		  ���� 
 / / _ _ 00�AZaz��������������������EEptvwz}�������������/1VYY`��������������� WY_n�����������?M�������,@X`j���������;	=	L	N	P	U	c	q	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	







(
*
0
2
3
5
6
8
9
>
B
G
H
K
L
Q
Q
Y
\
^
^
p
u
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
(*02359=DGHKLVW\]_cqq������������������������������(*9=DFHJLUVXZ`c��������������������������






:
=
D
F
H
J
L
N
N
T
W
_
c
z

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
:@FMM����������������������@GIlq�����688;?P������������HJMPVXXZ]`����������������Z������lo������ 3@S`lnprs�������� x���� +08Pmpt���� ^at��35CEK��������6MOZ}����������������� EHMPWYY[[]]_}��������������������q q   � � !!!!
!!!!!!$!$!&!&!(!(!*!-!/!9!<!?!E!I!N!N!`!�!�$�$,.,0,^,`,�,�,�,�,�,-%-'-'-----0-g-o-o-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-/./.00!0)0105080<0A0�0�0�0�0�0�0�01/111�1�1�1�1�14�MN����Ф������*�+�@�n�t�{�����"�������§Ƨ����'�@�s���èŨŨ�����������
�*�0�R�`�|���������ϩϩ�������6�@�M�`�v�z�������ªª۪ݪ�������	���� �&�(�.�0�Z�\�g�p��������������m�p�������(�*�6�8�<�>�>�@�A�C�D�F����=�P���������p�t�v���!�:�A�Z�f�����������
&(:<=?MP]��@t����-JPz�������������'0c6@U`g
578<<?U`v������		 	9	�	�	�	�	








5
`
|
�
�
�
�
�
�
5@U`r��H����
'
''0E��E����2DFPrvv��������477>>������������(*02359=DGHKLPPWW]cACEGJ__������������>@@DD����*8��������������25>P�����
68>@@r�����	6::<=?ACCFG`eghj��������� �#$n$�$C%0.4DFFh8j@j^j�j�jk/k@kCkckwk}k�k@nnoJoOo�o�o�o�o�o�o�op������P�R�d�g�p����j�p�|��������������T�V�����������������������������������
�
�����9�;�>�@�D�F�F�J�P�R�������������������4�6�N�P�n�p��������������������!�#�$�&�*��,�7�=�N�N���������C�G�G�K�K�����!�"�$�$�'�'�)�2�4�7�9�9�;�;�B�B�G�G�I�I�K�K�M�O�Q�R�T�T�W�W�Y�Y�[�[�]�]�_�_�a�b�d�d�g�j�l�r�t�w�y�|�~�~���������������������0�I�P�i�p���֦�4�@�� ���������

�SsSS�NS�d}��lJ��nJ�J�dZ������������5�5R!""*bJ�H1TW
Y
A�`�����B���	��
������
����������	���
���������
��������(��)��*��+��,��-��.��/� ��(�!��)�"��*�#��+�$��,�%��-�&��.�'��/��h��i��j��k��l��m��n��o�`��h�a��i�b��j�c��k�d��l�e��m�f��n�g��o��E������E���B�BE�B��������E������E���B�BE�B���������B�B����B�B�E������E���B�BE�B������FfFFFiFIFlFLFfiFFIFflFFLStSTStSTDvDFDeD5DkD;NvNFDmD=ffi�ffl��B���B��������B�������B��R�T�BV�B��a��ff�fi�fl�h1�j�ss��st��t�w
�y
��nI�������B������B������B����P�B��B��������e��te�tk�tm�tv�~v������������������������� ���!���"���#���$���%���&���'���`���a���b���c���d���e���f���g���p��t��|��i0a Ab Bc Cd De Ef Fg Gh Hj Jk K*!l Lm Mn No Op Pq Qr Rs St Tu Uv Vw Wx Xy Yz Z� �� �� �� �� �� �+!� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� x    	  

          !  # "% $' &) (+ *- ,/ .3 25 47 6: 9< ;> =@ ?B AD CF EH GK JM LO NQ PS RU TW VY X[ Z] \_ ^a `c be dg fi hk jm lo nq ps ru tw vz y| {~ }� C� �� �� �� �� �� �� �� =�  � �� �� �� �� �� �� �� �� �� �� �������������� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� ������ �� �� �� �� �    	  

          # "% $' &) (+ *- ,/ .1 03 2< ;? ~,@ ,B AG FI HK JM LO NP o,Q m,R p,S �T �V �W �Y �[ �\ ��` �a ��c �e ��f ��h �i �j ��k b,l ��o �q n,r �u �} d,� �� ŧ� �� ��� �� D� �� �� E� �� ��� ��q ps rw v{ �| �} �� �� �� �� �� �� ��� �� �� ��� �� �� ���� �E�� ��� �� ��� �� �� �� ��� ��� ��� �� �� ��� �� �� �&!� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� � �� �0 1 2 �3 4 �5 6 7 8 9 : ; < = > �? @  A !�B "��C #D $E %F &G 'H (I )J *�K +L ,M -N .O /P Q R S T U V W X Y 	Z 
[ \ ] 
^ _ a `c b�e dg fi hk jm lo nq ps ru tw vy x{ z} | ~� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �    	  

          !  # "% $' &) (+ *- ,/ .a 1b 2c 3d 4e 5f 6g 7h 8i 9j :k ;l <m =n >o ?p @q Ar Bs Ct Du Ev Fw Gx Hy Iz J{ K| L} M~ N O� P� Q� R� S� T� U� V� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ���@p��@q��@r��@s��@t��@u��@v��@w��@x��@y��@z��@{��@|��@}��@~��@��@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@��@��@��@��@��@�y }�} c,� Ƨ    	  

          !  # "% $' &) (+ *- ,/ .1 03 25 47 69 8; := <? >A @C BE DG FI HK JM LO NQ PS RU TW VY X[ Z] \_ ^a `�c be dg fi hk jm lo nq ps ru tw vy x{ z} | ~� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �  	 
   
          (! )" *# +$ ,% -& .' /0 81 92 :3 ;4 <5 =6 >7 ?@ HA IB JC KD LE MQ YS [U ]W _` ha ib jc kd le mf ng op �q �r �s �t �u �v �w �x �y �z �{ �| �} �� �� �� �� �� �� �� �N! 2!p! `!q! a!r! b!s! c!t! d!u! e!v! f!w! g!x! h!y! i!z! j!{! k!|! l!}! m!~! n!! o!�! �!�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$�$ �$0, ,1, ,2, ,3, ,4, ,5, ,6, ,7, ,8, ,9, 	,:, 
,;, ,<, ,=, 
,>, ,?, ,@, ,A, ,B, ,C, ,D, ,E, ,F, ,G, ,H, ,I, ,J, ,K, ,L, ,M, ,N, ,O, ,P,  ,Q, !,R, ",S, #,T, $,U, %,V, &,W, ',X, (,Y, ),Z, *,[, +,\, ,,], -,^, .,a, `,e, :f, >h, g,j, i,l, k,s, r,v, u,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,�, �,- �- �- �- �- �- �- �- �- �	- �
- �- �- �
- �- �- �- �- �- �- �- �- �- �- �- �- �- �- �- �- �- �- � - �!- �"- �#- �$- �%- �'- �-- �A� @�C� B�E� D�G� F�I� H�K� J��M� L�O� N�Q� P�S� R�U� T�W� V�Y� X�[� Z�]� \�_� ^�a� `�c� b�e� d�g� f�i� h�k� j�m� l��� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ��#� "�%� $�'� &�)� (�+� *�-� ,�/� .�3� 2�5� 4�7� 6�9� 8�;� :�=� <�?� >�A� @�C� B�E� D�G� F�I� H�K� J�M� L�O� N�Q� P�S� R�U� T�W� V�Y� X�[� Z�]� \�_� ^�a� `�c� b�e� d�g� f�i� h�k� j�m� l�o� n�z� y�|� {�� ~��� ���� ���� ���� ���� ���� ���� ���� ħ�� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ��ç §S� ��A� !�B� "�C� #�D� $�E� %�F� &�G� '�H� (�I� )�J� *�K� +�L� ,�M� -�N� .�O� /�P� 0�Q� 1�R� 2�S� 3�T� 4�U� 5�V� 6�W� 7�X� 8�Y� 9�Z� :�( ) * + , - . / 0 1 	2 
3 4 5 
6 7 8 9 : ; < = > ? @ A B C D E F G H  I !J "K #L $M %N &O '� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �`n @nan Anbn Bncn Cndn Dnen Enfn Fngn Gnhn Hnin Injn Jnkn Knln Lnmn Mnnn Nnon Onpn Pnqn Qnrn Rnsn Sntn Tnun Unvn Vnwn Wnxn Xnyn Ynzn Zn{n [n|n \n}n ]n~n ^nn _n"� �#� �$� �%� �&� �'� �(� �)� �*� �+� 	�,� 
�-� �.� �/� 
�0� �1� �2� �3� �4� �5� �6� �7� �8� �9� �:� �;� �<� �=� �>� �?� �@� �A� �B�  �C� !�i IA@aB@bC@cD@dE@eF@fG@gH@hJ@jK@kL@lM@mN@nO@oP@pQ@qR@rS@sT@tU@uV@vW@wX@xY@yZ@z�	��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��
�	ss@@@@@	
@@
@@@@@@@@@ @!"@#$@%&@'(@)*@+,@-.@/2@34@56@79@:;@<=@>?@@A@BC@DE@FG@HI*	�nJ@KL@MN@OP@QR@ST@UV@WX@YZ@[\@]^@_`@ab@cd@ef@gh@ij@kl@mn@op@qr@st@uv@wx@�y@z{@|}@~9	s�@S�@��@��@T�@��@V�@W�@��@��@Y�@[�@��@`�@c�@i�@h�@��@o�@r�@u�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��A���I@���a���i@��������@���@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@���	j������@���@��@��@��@��@��@��@�@@@@@	
@@
@@@@@@@@@ @�"@#$@%&@'(@)*@+,@-.@/0@12@3:@e,;@<=@�>@f,A@BC@�D@�E@�F@GH@IJ@KL@MN@OE�	�p@qr@sv@w@��@��@��@��@��@��@��@���	��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@���	��		��@��	��	��!	��)	��@��@��@��@��@��@��@��@��@��@��@��@��1	��9	��@��A	��@��@��@��@{�@|�@}@P@Q@R@S@T@U@V@W@X	@Y
@Z@[@\
@]@^@_@0@1@2@3@4@5@6@7@8@9@:@;@<@=@>@? @@!@A"@B#@C$@D%@E&@F'@G(@H)@I*@J+@K,@L-@M.@N/@O`@ab@cd@ef@gh@ij@kl@mn@op@qr@st@uv@wx@yz@{|@}~@�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�@@@@@	
@@
@@@@@@@@@ @!"@#$@%&@'(@)*@+,@-.@/1@a2@b3@c4@d5@e6@f7@g8@h9@i:@j;@k<@l=@m>@n?@o@@pA@qB@rC@sD@tE@uF@vG@wH@xI@yJ@zK@{L@|M@}N@~O@P@�Q@�R@�S@�T@�U@�V@��J�	e��@-�@-�@-�@-�@-�@-�@-�@-�@-�@	-�@
-�@-�@-�@
-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@-�@ -�@!-�@"-�@#-�@$-�@%-�@'-�@--� �� �� �� �� �� ��i	2�q	4�y	>��	A��	B��	B��	J��	c��	K��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�@@@@@	
@@
@@@@@@@@@ @!"@#$@%&@'(@)*@+,@-.@/0@12@34@56@78@9:@;<@=>@?@@AB@CD@EF@GH@IJ@KL@MN@OP@QR@ST@UV@WX@YZ@[\@]^@_`@ab@cd@ef@gh@ij@kl@mn@op@qr@st@uv@wx@yz@{|@}~@�@��@��@��@��@��@��@��@��@��@��@���	h1��	t��	w
��	y
��	a��	a�

ss�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�@	@
@@@
@@@@@@@@@(@ )@!*@"+@#,@$-@%.@&/@'8@09@1:@2;@3<@4=@5>@6?@7H@@I@AJ@BK@CL@DM@EP	�R#	�T;	�VS	�BY@Q[@S]@U_@Wh@`i@aj@bk@cl@dm@en@fo@g�j�	����	����	����	��ʂ	���	����	���	��*���R���z������������������B���j�	 ����	!����	"����	#��ʄ	$���	%����	&���	'��*� ��R�!��z�"����#����$����%���&��B�'��j�	`����	a����	b����	c��ʆ	d���	e����	f���	g��*�`��R�a��z�b����c����d����e���f��B�g��j�	p����	�����	����	�B�ӈ	�B��@��@��@p�@q�	����)		��2�	t��R�	���j�	����		�B���	�B��@r�@s�@t�@u��	�����		��
	��"
	�B�3
	�B�@��@��@v�@w�K
	��c
	��z
	���
	�B��
	�B�@��@��@z�@{�@����	|��Ҋ	����	���
	�B��	�B��@x�@y�@|�@}�J���&!@�*!@k+!@�2!@N!`!@p!a!@q!b!@r!c!@s!d!@t!e!@u!f!@v!g!@w!h!@x!i!@y!j!@z!k!@{!l!@|!m!@}!n!@~!o!@!�!@�!�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$�$@�$,@0,,@1,,@2,,@3,,@4,,@5,,@6,,@7,,@8,	,@9,
,@:,,@;,,@<,
,@=,,@>,,@?,,@@,,@A,,@B,,@C,,@D,,@E,,@F,,@G,,@H,,@I,,@J,,@K,,@L,,@M,,@N,,@O, ,@P,!,@Q,",@R,#,@S,$,@T,%,@U,&,@V,',@W,(,@X,),@Y,*,@Z,+,@[,,,@\,-,@],.,@^,`,@a,b,@kc,@}d,@}g,@h,i,@j,k,@l,m,@Qn,@qo,@Pp,@Rr,@s,u,@v,~,@?,@@�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,�,@�,@�@A�B�@C�D�@E�F�@G�H�@I�J�@K�L�@M�N�@O�P�@Q�R�@S�T�@U�V�@W�X�@Y�Z�@[�\�@]�^�@_�`�@a�b�@c�d�@e�f�@g�h�@i�j�@k�l�@m���@����@����@����@����@����@����@����@����@����@����@����@����@����@��"�@#�$�@%�&�@'�(�@)�*�@+�,�@-�.�@/�2�@3�4�@5�6�@7�8�@9�:�@;�<�@=�>�@?�@�@A�B�@C�D�@E�F�@G�H�@I�J�@K�L�@M�N�@O�P�@Q�R�@S�T�@U�V�@W�X�@Y�Z�@[�\�@]�^�@_�`�@a�b�@c�d�@e�f�@g�h�@i�j�@k�l�@m�n�@o�y�@z�{�@|�}�@y~�@���@����@����@����@����@����@e��@����@����@����@����@����@����@����@����@����@����@����@����@f��@\��@a��@l��@j��@���@���@���@S���@����@����@����@����@����@��§@çħ@��ŧ@�Ƨ@�p� �q� �r� �s� �t� �u� �v� �w� �x� �y� �z� �{� �|� �}� �~� �� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��r�	ff���	fi���	fl�Ӌ	ffi��	ffl�2�	st�R�	st�r�	tv���	te���	tk�Ҍ	~v��	tm!�@A�"�@B�#�@C�$�@D�%�@E�&�@F�'�@G�(�@H�)�@I�*�@J�+�@K�,�@L�-�@M�.�@N�/�@O�0�@P�1�@Q�2�@R�3�@S�4�@T�5�@U�6�@V�7�@W�8�@X�9�@Y�:�@Z�@(@)@*@+@,@-@.@/@0	@1
@2@3@4
@5@6@7@8@9@:@;@<@=@>@?@@@A@B@C@D@E@F@G @H!@I"@J#@K$@L%@M&@N'@O�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�@n@`nAn@anBn@bnCn@cnDn@dnEn@enFn@fnGn@gnHn@hnIn@inJn@jnKn@knLn@lnMn@mnNn@nnOn@onPn@pnQn@qnRn@rnSn@snTn@tnUn@unVn@vnWn@wnXn@xnYn@ynZn@zn[n@{n\n@|n]n@}n^n@~n_n@n�@"��@#��@$��@%��@&��@'��@(��@)��@*�	�@+�
�@,��@-��@.�
�@/��@0��@1��@2��@3��@4��@5��@6��@7��@8��@9��@:��@;��@<��@=��@>��@?��@@��@A� �@B�!�@C�I@i0@i@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@������������0�����������0�����0������4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

��unknown address_size:%d%d: unsupported form: %#lx
.debug_abbrevlseek: %s
mmap: %s
.strtab.dynstr.gnu_debuglink.debug_info.debug_line.debug_ranges.debug_strUnsupported operation in %s
/proc/self/exe%s(%s) %s/%s:%d
%s(%s) %s:%d
%s(0x%lx) [0x%lx]
%s(%s+0x%lx) [0x%lx]
%s(%s+0x%lx) [0x%lx] ???:%d
%s(%s+0x%lx) [0x%lx] %s:%d
�����=�����������H�����x��@����p��p��`����������p�����H��������������h��P��������H�����@�����������(��X�����p�������H��p�������H��T�����l�����������������������L����������$��$��$��$��$��$��$��$��$��������������������������������������������������������������������������������������������$�����������������������������d�����������������������,�����D��������L�����L��d��,��l��|��������������<������,�������|�|�$��|�|���0123456789abcdefghijklmnopqrstuvwxyz%d: Abbrev Number %ld not found
Unexpected file number %d in %s at %tx
Unexpected directory number %lu in %s
Unknown extended opcode: %d in %s
Unexpected size of .debug_line in %s
%s(%s+0x%lx) [0x%lx] %s/%s:%d
gem_preludebuiltin_lookup: can not find %s
vm->builtin_function_table should be NULL.YARBD�x86_64-linux!W
	
#)gG!W

	
#)gw!w))9k93]3#	

��������
f�GE-<internal:gem_prelude>�Erubygems.rbEdid_you_meanEGemEDidYouMeanErequire�����������YARB�8��x86_64-linux�
%	�!_G'!_
G'!_w!!77
?o?1�K1
���������
%�g�#%e	w		''!	+{+QEQ9
)��������
a#''%#%#gw%113	%!A%!!Ck!3%		a+
''%+%+gG#%+gw9EEIIK		%!-))Y)1'))o�7K1



	#)3�gG��e��������w

����������������79�;#�3��/1+?9�mYI#)AgG#gw''))+!C)#9G3=??K[%+3

��������
#)IgG#�AKgw;;==?!
&C)+c	GEGGs�9?G3
��������

h�#v�F��GE%<internal:prelude>�)OQSUGEsingleton classWY[]_GE<class:Binding>?aGE<module:Kernel>GcGE1block in singleton classEcThread.exclusive is deprecated, use Thread::MutexegikGEirbEirbmGEppEpp�oE
ThreadEsingletonclassEBindingE
KernelEMutexEexclusiveEmutexEnewEdefine_methodE+core#set_method_aliasEprivateEblockEsynchronizeE	warnEuplevelErequireE	objs��� $(,@DHLPTXlptx�����������$(,8LXdlx����������YARB@�x86_64-linux'!_w		)[��������#gGa
%
wUU[	99%	%	[%�rb_warn_mw
��WY!
	�)���UYA91��������@��GE%<internal:warning>GE<module:Kernel>GE	warnE
KernelEmodule_functionEuplevelE	msgsLPTlpt����������YARB|Lx86_64-linux'!_G'!_	w��
!?!U	��������a%w���	
1
%

#�%a	a%w	A/M�/	�pack_packw ��!	�#�(��A51���������pack_unpackw!	K!+!##
5+��������	�pack_unpack1w!	M#+%''
1G+��������P��h��GE<internal:pack>)+GE<class:Array>GE<class:String>#'GE	pack-/GE
unpackGEunpack1EArrayE
StringE
bufferEfmtdhl�������������������YARBxK�Lx86_64-linux'!_wcc�\��������#c
a#c	#ca
aaaaaa!a#a%a'a)!a+#a-%a/'a1)a3+%3w������������49AFKQYY\	����	�c\�?3�!tracepoint_new_sw��!	O+	%577���%���������%tracepoint_inspectw��!	A/;==������������#tracepoint_stat_sw��!	A-?AA�'��
��������	�%tracepoint_trace_sw��!	Q/	#CEE
7��#���������	'tracepoint_enable_mw%&'����!%&'	�1!	�
�GII�a��QEA��������
	�)tracepoint_disable_mw��!	I3QSS�k�����������
)tracepoint_enabled_pw��!	M3UWW�u�����������+tracepoint_attr_eventw��!	M5Y[[���
���������-tracepoint_attr_linenow��!	M7]__�������������)tracepoint_attr_pathw!	M3acc
����������5tracepoint_attr_parametersw!	]?egg

����������3tracepoint_attr_method_idw
!	M=ikk
�
���������3tracepoint_attr_callee_idw!	M=moo
!����������;tracepoint_attr_defined_classw56!	]Eqss
i�46
���������/tracepoint_attr_bindingw:;!	M9uww
s�9;	��������!�)tracepoint_attr_selfwBC!	M3y{{
��AC��������#�!9tracepoint_attr_return_valuewGH!	]C}
��FH��������%�#Atracepoint_attr_raised_exceptionwLM!	]K���
��KM��������'�%7tracepoint_attr_eval_scriptwRS!	]A���
��QS��������)�'Itracepoint_attr_instruction_sequencewZ[!	mS���
��Y[��������+@h�`(��0��@��P�`� ��GE-<internal:trace_point>�GE%<class:TracePoint>7=AEISW[_cgkosw{���GEnew�GEinspectGE	statGEtraceGE
enable���GEdisableGEenabled?GEeventGE
linenoGE	pathGEparametersGEmethod_idGEcallee_idGEdefined_classGEbindingGE	selfGEreturn_valueGE!raised_exceptionGEeval_scriptGE)instruction_sequenceETracePointE
eventsE
targetEtarget_lineEtarget_thread			8	<	@	X	\	`	d	h	l	p	t	x	|	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	



 
(
,
8
<
D
H
X
\
h
l
x
|
�
�
�
�
�
�
�
�
�
�
�
�
 ,<YARB83�lx86_64-linux'!_w����������'!_
w--�	1!	��!#c#c	#c'!_
wEEcc�����	)a)9[�-�9�ast_s_parsewGI!	A!!�E	I!���������!ast_s_parse_fileweg!	S+)!##�)c	g)!��������	�ast_s_ofw��!	C)'))�;�	�)!��������a1a3a5a7a9a;a=%=w���������	1q1A-//���	�A
�ast_node_typew��!	?%?AA�I�
����������	+ast_node_first_linenow��!	A5
CEE�U�
�
���������+ast_node_first_columnw��!	A5
GII�_�
�
���������
)ast_node_last_linenow��!	A3KMM�i�
����������)ast_node_last_columnw��!	A3OQQ�s�
����������#ast_node_childrenw��!	A-SUU}�
�	���������!ast_node_inspectw��!	=+WYY��
���������@��(��8�� p�`�GE<internal:ast>[GE<class:RubyVM>]GE7<module:AbstractSyntaxTree>#)_GEparseaGEparse_filecGEofeGE<class:Node>AEIMQUYGE	typeGEfirst_linenoGEfirst_columnGElast_linenoGElast_columnGEchildrenGEinspectE
RubyVME%AbstractSyntaxTreeE	NodeE
stringEpathnameE	body������,048<@HLP`dhptx����������������� ,DLXdYARB��x86_64-linux'!_wM���������a
a%w}���	3!	I�!	!��!io_read_nonblockw
��}�!

�1'	���%}�aUA��������	�#io_write_nonblockw
����!

	�-#���C��A91��������@�8��GE<internal:io>!GE<class:IO>GEread_nonblock#�)%'GEwrite_nonblockEIOEexceptionElenEbuf,04DHLP`dhlpt����YARB 	7XDx86_64-linux'!_G'!_	w��
!?!��	��������#ca	#c#c
#c#c#c#c#c#c!%!wCCKgg�������������	U�U�

/���-)a#%gw����		')G5#%%G���5	�#gc_start_internalw��EG!	�-!	��)++�+CGQIA��������	�#gc_start_internalw@XMO!	�-!	�
p577�WKOQIA��������		�gc_enablewik!	/9;;�cgk���������gc_disablew��!	3=??�o�
��������
�gc_stress_getw��!	3%ACC�{�����������	gc_stress_set_mw��!$	Q))EGG����)!���������gc_countw��!	1KMMǙ����������!��
gc_statw���!)qQOQQ!���1��������!��#gc_latest_gc_infow���!)�3QUWW5���1���������rb_gc_compactw��!	=%Y[[=���
���������#gc_start_internalw����!	�-!	��]77I���QEA��������	P�;��H��0�` �GE<internal:gc>_aGE<module:GC>+7;?CGMQW[GE)<module:ObjectSpace>cGEstartegi�)GEgarbage_collectGE
enableGEdisableGE
stressGEstress=kGEcountGE	statmGElatest_gc_infoGEcompactGEGCEObjectSpaceEmodule_functionEfull_markEimmediate_markEimmediate_sweepE	flagEhash_or_key������������������� $(,@DPT`dpt���������������,4enc/encdb.soenc/trans/transdb.so;�������=�$��=����=���>�4�>���+>�X�>>��Q>�0�g>���z>�d��>�l��>�
�>��
.?�G?�L]?���?�x%�?��,&@�<0+@�\14@�p2>@�3H@��4Q@�<Z@��@�@�A�@�pA�@��A�@�tB�@��B�@��C-A��C6A�F@A��I�D� J�D��L�D�,M�D��N E��Q>E�HSVE��_iE�c�E��gF�hi%F�dj=F��jUF��kmF�4l�F�$x2G�0y7G��y<G��zOG��|TG��|YG�p}�G�~!H��~4H�`9H�܀YH���qH�d��H����H���H�$��H�t��H�ܙ�H���I���J��CJ�|��J����J�@�K��L�t�L���)L�4�]L�d�kL���yL���L�@�M�D�-M���LM����M�x��M����M�4��M����M����M���N��-N�(LN�p	`N�H�N�4�N���N��N�$�N�\O�0$O���O� �O���O���P��#�P��#�P��#�P�<$(Q��$-Q��$2Q��%7Q�&bQ�d&wQ�'�Q��'�Q��'�Q�|(�Q��+�Q�,�Q�H,�Q��,�Q�D-R��-7R�\0�R��0�R�L1�R��2�R��2�R��3�R�d4�R��J�R�NS��`+S��k;S��n�S� oTT��pgT�TtzT�ԇ�T���U���pV����V�x�JW�ܔ4X���Y�,��Y���[Z���Z�ܙ[��p[�T��[����[�l��[����[���[�<��[�<�
\���\�d�,\���=\�L�N\���X\�(��\����\�\��\�P�]���]��]����]����]��O^���E_���'`�D��`�tIa�	Wa�4
ea�oa��2�a��4�a��8�a�9�a�T9�a��9�a��=�a��@b�DEb�(]+b�X~�b����b�܄gc��yc���c���c�,��c�D��c�8��c�$��c����c���c�l��c���-d���Cd���Qd�0��d����d����d���d�L�Re�l�le����e����e���{f���
g��g��pg�4��g�d��g��h�<�/h�T(i�P;i�<j��j�x+Hj��,Vj� -dj� 7�j��7�j��E�j�dF�j�lL�j�pPk��P"k�<S0k�X^9k��^Kk��_Yk�d`xk��b�k��c�k��d�k�lh�k�l{}l��"m�l��m�؋�m�`�Yn���gn��un��Oo���]o����o����o���o�0��o�Բp���.p�p�<p���Fp�x�Pp���p�,��p����p� �q����q���r�,�r����t����u����u���u���u�`��u����u�T��u�,�v�t�4v���w����w�<��w����w����w�$��w����w��$x���Ox���]x���kx��ux�<x�D�x�"�x�L"�x��"�x��"�x�$#�x��,�y�D�|�t�,|���L|���l|���||����|����|����|��L}�<��~����~����~����~���������\�����܁������8�|����<������H�l����<��l��������L���|�|��������|�������<�,��t��������D����������L����|��(����D���x�L���������|�����<�\��P�L����|���������,�������<��X������|����̡��\��T�ܣ��������<���l�� �ܮ�T�����L����l���|���<��h������,������D���X�L����L�������0�|��\���p�<����������������$�����������,����L����<������h������������������<�l��|�����������|������� �|��P��������������������L����\��$����P������������������4�<��l�L����,����|�����d�\����,����,��H�����l��������|��T�����\����|���L��h�������������������4���p�����	���|	���	�$�
�@�l
�t��
����
���|�������
�P�|���������������@�����|���,�0���h�������������H�L���L������� �,�\"�h��#���<$���l$����$���$�$�\%�\�|'����'���\-���,/�H��/���L0����0���,1���1�<��7�l�|8���,9����9����;�(�\<�x�L>����>����>��<H�d�lH����H���J���L�@��L�h�M�|�|O����Q�4��Q����Q����R���R��T��|T�<�V����V���W�$�,Z�X�lZ�x��Z���l[���f��g�4�Lg�L�|g�d��g�|��g����g���|h���h���i�T��i�l�,j���Lj���|j���,v��\v���w�X�lx�t��x����x����x���z��z����|�L�L}�d�~�x��~���<���L������������P�,�������������X�����|��������̉�����������X\�������̒���� ���8\�������ܖ��<���������h,����������\��ܜ�̝�P<�������L������ L��p���������$\�������|�����������������8���h���|���	<��@	��t	l���	��
���P
����
l���
����
�����$���D���X�����������L���L��D<�����$
���
\��&�`'�t<(��L(��|(���(��,)��+�L�.���3��\5�,�6�X�7���7���7���8���9��:�X�>���?��@�dA�xLB���C��|H�H�H�\|Q��R���R��R�LT�d�U���V�LX�T|X�h�X���Y���Y���Y���Y���Y��Y�l[�p�[��\��l\���\���\�|]�4�_�X,b���c��|d���d��d��d�,�d�@�e�xLg��h��\h��li�<k�@�l�p�n���n���n��Lo��,p�(q�L<t���t��y��\}�����H�����������\�����4��L���`l��t����<�����������|��\����l����8,��P����������\��$ ���@ ��\ ��x \��� ���� ��!��$!̢�`!<���!����!���!|��"��@"l��\"����"ܦ��"���"����"���#���0#̨�L#L��t#���#����#��$L��P$���p$����$���%���%\���%����%,��0&����&����&���&���&���4'���l'����'<���'���$(���P(l���(���(L���(����(��)���)��0)<��D)��X)���l)L���)\���)����)���)��*L��4*|��H*��\*,��p*���*l*��*-�0+�-�H+,.�t+l.��+�.��+�.��+�.�,�/�X,�0��,l4��,�7�4-9�d-l:��-�:��-;��-<;��-\;�.|;� .�;�8.>�t.|>��.�>��.?��.|?�/�?�,/L@�`/,A�|/<B��/LB�0�B�P0D��0lD��0�D�1�G�p1�G��1�G��1�I��1,J��1�J�2K� 2�K��2\L�3�L�03�L�L3�L�h3\M��3lN��3�N�4�N�,4,O�@4�O�T4�O�h4,P��4�P��4�P��4<Q� 5�Q�45�Q�P5,R�l5�R��5\S��5�S��5�T�6\U�6�U�T6�V��6,W��6�W��6,Y�7�Y�`7�Z��7�[��7|\�H8�\�h8\]��8\^��8|^�9�^�$9L_�p9�_��9�`��9�a�0:Lb�l:�b��:Lc��:�c��:|d�;\e�H;�h��;�j��;\k�<�k�0<\l��<�l��<Lm��<�m�=n�H=�n��=�n��=|o��=�o��=�p�>|q�@>�r�t>�s��>Lt��>�t�?�w�<?�x�l?\z��?L{��?,}�@�}�X@|��@��(A����A܀��A���B����B̠�C\���C|���C<��D���XD���D����D��E,���E,��FL���Il���I,��4J����K���8L����L,��@M���|M,��LN����N���$O����O\���O���O��� P<���P���Q����Q|���Q���0R��DR|��|R����R�\S��pS���S���S��S���S#�LT�#��Tl$��T�$�U�%�DU,&�XU<&�lUL&��U\&��Ul&��U|&��U�&��Ul'�V�'�0V�'�DV�'�XV�(��V�(��V\)��V\*�W+�8W,+�LW<+�`WL+�tW�+��W�+��W�,��W�-�X�.�(X�/�<X�0�`X�1��X<2��X,4��X�4�Y6�$Y\7�TYL8�xY�8��Y�9��Y<��YL=�Z,>�,ZA�hZI��Z<L��Z�N�[\R�`[�W��[�_��[�b�\lm�\\�o��\Lp��\�q��\\z�4]�}�x]���]̋�^\��P^\���^<���^,��_���_���d_����_���(`���t`l���`<���`���a���(a���<al��ta����a���a,���aL��bl��b���HbL���b����b<��0cl��lc<���cL���c����c����c<��4dl��Hd���dd���d����d,���dL���d|���dl��0e���Pe����e����e<���e|���e���f���(f���\f����f����f,���f���g\��4gL���g����gL���g,�$h\�@h��\h��ph���h,��h\��h���h�i��|i��i���i���i
��i\
�jl
�j,�xj<��j��j|�k��@k��Tk���kL��kl#�Hl�#�\l�#�pl�%��l'��l�'��l�'��l�(�mL)�Hml)�\m�)��m<*��mL*��m|,�n�,�@n�,�Tn�,�hn-�|n-��n,-��n<-��nl-��n�-��nl.�Lo|/��o�/��o0�p\0�p�0�4p�0�Tp�0�lp�1��pL9� q�;�pq�;��q�;��q<��q<=�r�=�(r�>�`r�>�tr?��r?��r<?��r|?��r<@�s\@�4sLA�xs�A��sC��s,C��s|C�t�C�t�C�8tD�PtlD�pt|D��t�D��t,E��t\E��t�E�u|F�<u�F�Pu�F�duG��u|G��u�G��u�G��u�G�v�H�Lv�H�tvI��vLI��v�I��vJ�w<J� w|J�@w�J�`wL��w�L��wlP�8x�P�pxQ��x�Q��xLR�Dy�U��yW��y,Z�4z�i��zlj�D{�l��{�l��{m��{�n�@|�o��|�p�}�r��}�t��},y�$~|y�P~�y�l~�y��~<{��~�{�L|�t�|��<}���������L�,����L����\������������|��P�܈�l�����<����l�������ԁ����������(�\��D��������������L��̂���������$�L��8�\��L����h�ܐ�|�|�������������H����������\���,��P�����������,��Ѕܘ���������p������\�������L�� ����T�<�����������<������0����H�,��h������|��Јܠ������<�ܡ�X����p�l����ܢ���L��̉����\��(����H�,��p�<����|����<��؊�������H����h�����\����l���������������p�,����<����|�����������̪�(�ܪ�<���X�l����|�����������������Ѝ|������$���D���\�<��t�\���������̭���ܭ�Ў���L����������0����D�ܮ�X���t���������ȏ���܏ܲ�����<��(�|��H����p��������ؐ����|��8�l��t�<�������Бܺ�����l��8���x�ܽ��������<��8��������������l��@����\���������l������4����t������L�������ܕ���(���<�|������������ؖ����,��(����`����|�<������������\��L������,��������\�� ����X�\����|��������|��(�l��t�������������К<���l������8�L�������ě\���\��$���H�|��d����|������L���l��<����X�l������ԝ����|��T������,������,�L��h�����\����<������
�Ƞ,�ܠ��<�,���d��������������,���p�����l������,�L�H�����|�أ������L�|�������< ��� ���#�h�\&���)��l,�X�|-���\0�ܦ,1��4�`��4���<5���l5�ԧ�5��L6�$��6�H��6�d�<7���l7����7���8���8��9�D��9�h��:����:�ĩL;����;��<�D�L<�d��<���<=���|>����>���>�4��B���|C�̫LD��LE�d�LF���LL�Ԭ\L��|L����L���L�$��L�8��L�L��L�`�M�t�M���LM����M����M�Э�M��,N���N���N�8��N�T�O�p�LO���|O����O�Į�O�خP��P��<P�$�\P�@�lP�T�|P�h��P�|��P����P���<Q�ȯ�Q���Q��R��LR�0�\R�D�S�l�T���,T���<T���,U���U���U�$�V�8��V�|��V���,Y��lY����Y���Y�4��Y�P�Z�d��[����\���L]�H�,^�|�\^����^����_��\`�8��`�T��`����b���\c���c��,d�@�ld�\��d�|��d���e����e��\f�,�lg����g���h�ض�i�H��i�\��i���j���\j�ȷk���k�(��k�D��l���\m���m���m���n�d��n����o���q�4�|r�d�s����s����t���t��Lu�(��v�x�lw����y���z�(��z�D�\{�x��{���}��|}���}���}�4�~�P��~�|������̽L��������� �<��<�́�h�L����܃�����о����̄�(����T�L��������������������4�L��T��������l���܋�P����h���������������������`������\������T�ܪ���<����,��X�<��l�<�����������l��@�ܶ�t������,���,��h�����,����������� ����4����H����\����p����������,�����������(�<��<����p�L����l���������������������L�<���������<����|�����������<���h����|�L��������������_���l��(����X�|����l���������\�� ����\�<��x��������������<��0�\��D�l��x�|����|��0�����|����\��T�\���l���,�������� ����|���l������<�H�|�\���|�����,���l����������<	�0��	�H��
�x�<�����������,��
�$��
�@��l�����,����(���D���\���x�l�����������������D���X�<���L ���,#�,�\#�H�l#�\��#�t�l'����'���(���,+�T��.����.����/���l0����0��|1�X��1�p��1���2���L2���l2���2�$��2�@��2�\�<3���l3����3����3����3��,4�,�,5�`�,6���7���l7����7��l8�,��9�T��9�h�:�|�,:���l:����D����D���\E����E����E���E�8�\F�h�lG����G����G���lH����H���LI�4��I�P��I�d��I�x�\K����L���N�\�,O����O���<P����P���P�8�Q�X�,Q�l��R���LU���U���U�4��U�H�<V���|V���l[����\���]�T�<_����d����f�0�g�L��g�x��g���h���Li����i����i����j��k�8�lk�T�\l�t��l����m���n���<n���Ln��<o�H��p�p��p���,q���\q����q����q���q��r�4�\t�X�u�t�,u���lx���,z���lz����z��|{�4������̄�����h�\���������|����܌�$���P���t�<����ܒ��������������H���p�<����\��������\��8�,��t�|����ܙ���<���\��$�|��@����T����h�����,����<����|����ܞ�����0���H�<��`�l��x�����������<����̠���\�����@���X�,��p�ܢ��������l������T����l�ܦ���l����̧���������,��4���`����t�\����l����|�����������������,��4�l��P����l�����,����l�������������,���\��0����L�ܭ�h�����\���������̮��������,���l��,����H���d�����\���������̰�������\������4���T�\��t�����������L������������L��$���\������ܵ������������,�����<�L��X�ܹ���\���ܺ��|��8���p������ܼ�������������<�\��h�|�������������,���<������<����P����d�����|�������������\�� ����D����h�<���������������������l������4�L��P����l�,���������l�������<������$�<��@�l��p�\����,������������������D����X����l�l�������|���L��,���X����|������,���\������������L��@�|��X����p������L�����������\��H����t������|����������<��HL��\����|�����x����,��������,���lL�������������0��������,��L�@�d,�x<�����\�����,��X|�����������,����0<�T|�|�����D�(��<)��\)��l)���)���)���)��*�,*�$L*�8|*�L�*�`�*�t�*��<+��L,���,��-�	,-�	\-�4	.�X	�.��	�/��	0��	l5�
�5�$
L;��
�<��
�?� @�\,B��LB���B��C���C� �C�H<D�p�D��,F���F�
lG�
\H�t
�H��
�I��
�I��K�HLL�\�L�p�L��LM���M���M���N���N���O�H�O�`,P�x�P���P��<Q��LQ��S�|S�(T�H|T�lLU��|U���X�(�X�<,c��|c��|g��g� �i�p\j���k��l��Ll�,�l�Xm�p,m��\m���m���m��ln�,,o�h�o��<p��lp���p���s��s�(�u�Llv�x�w���w��,x�z�T\|��\���\��8��pL���l�������܈�����������̉�@���l,��������������,���l����������<�� |��4���H���\��p,���,���|������������D���|̧��l����������L��8���\���x<����������L���l�����̫�8��L,��d\��xl�����������̭�4ܮ���������L��@���t<���|�������ܲ��,���l��,�� ���4 ���� ��� l��� ���� ���!l��L!,���!����!<���!����!��� "L��L"���x"����"���#��#���0#����#����#<��P$����$����$���%���\%<���%\���%����%���&���x&����&����&,���&<���&|��'����'���'L��,(���(���(��)��)��<)�X)<�l)L��)���)<��)\�*|�*�D*l�d*��|*���*L��*,	��*l	�+�	� +�	�4+�	�L+<��+���+��+|�,|
�\,l��,���,,��,��X-��|-|��-l�.��(.�L.<�p.L��.� ��.�!��.�!��.,%�</�%�P/�%�d/�%�x/'��/<'��/l'��/|(�0�+�p0�+��0�,��0|-��0,9�`1�9�|1,:��1�?��1�?�2@�82l@�`2|@�t2�@��2�A�3�A�$3�A�83�A�`3<B��3�B��3LC�4\C� 4lC�44�C�x4�C��4D��4�D��4\E�,5�F�l5LH��5\H��5�H��5�H��5�H�6�H�$6,I�86<I�L6|I�`6�I�t6�I��6�I��6,J��6LJ��6\J��6�J�7�J�7�J�,7�J�@7K�T7lK�t7�K��7�K��7�K��7,L��7\L�8|L�8�L�48�M�L8N�d8�N��8P�9\P� 9�P�49�P�L9�P�d9<Q��9�Q��9R��9�R��9S�:\S�4:�T�p:�U��:V��:�V��:�V�;�V� ;W�X;<W�p;�W��;�W��;�W��;\X� <�X�H<�X�t<Y��<<Y��<�Y��<�Y��<<Z�=[�d=�[��=�\�>]�0>,]�D>L^��>�^��>�^��>�`��>�`��>�`�?a� ?�a�P?�a�d?b�x?lb��?�b��?c��?�c��?�c�@�d�d@<e��@�e��@�e��@f��@�g�A<h�hA�i��A\j��A�j��A<l�(B�l�DB<m�tB�m��B�m��B|n�C|o�<C,p�xC<p��C|p��Cq��C|q��C,r�8Dlr�`D�r��D,s��D�s��D<u��D�u�(E�w�pE�x��E,y��E�y��E�}�HF,���F|���F̀��FL��G\��$G|��8G���LG���`G���tGl���G܃��G<���Gl��H��,H���lH����H\���H���I���\I\���I����I|���I���$J��@J���J���JL���J܏�,K\��TK���tKܐ��K<���K����K����K���$L��PL|��|L���Ll���L,���L�� M���DMl��hM���M<���M���0N��dN|���N����N\���N��� O���HO\��tO����O����O,���OL��P\��P��DP,��`P����Pl���PL��Q̢�@QL��tQ̣��Q����Q���Q,���QL��R|��TR����R,���RL���R\��S���8S��dS\���S����Sܨ��S����S���S��$T|��PTܫ��T<���Tl���T����T���U�� U|��TU���U,���U\���U����U<��lV����V���V����V���VL��W̴�4Wܴ�HW���\W,��pW̵��W,���W̶��W���X��$X���XX����X���Yܻ�(Y<��DY���Y���Y|���Y���Z,��<Z���xZ���Z,���Z���Z<��[���4[����[����[���[����[����[,��$\\��D\l��X\���l\����\����\���\,���\<���\L���\���]���0]��D],��X]���t]|���]����]����]����],��^\��0^��l^����^<���^|���^����^���(_���`_���x_����_\���_���_��D`,��\`����`����`���`��a���a���0a<��\a���xa���a����a,���aL���a|��$b���<b���\bL���b|���b����bL��c���,c���Hc\���c|���c����c����c����c���c,��dL�� dl��8d|��Ld���dd����d,���d|���d<��e|�� e\���e,���e����e���e|��f<��Lf����fl���f���f��$g��Xg\���g����g���g���4h\���h���h�$iL�@i\�Ti��i�j\�jl�0j�	�j��jL��j��k�� kL
�@k��|k\�k���k�l��<l��Xl�l���l,�l��0m��Dm�dm<�m|�m��m���mL�m��$n��tn���n�4o|�ho��o�o<�o|�p�!�Hp�#�p�#�p�#��p$��p<$�q\$�q�$�<q�$�\q%�pq<%�q|%�q�(��q)�rL*�Pr+�rl+�r�+��r,3�(s|3�Ts�3�s,4�s|4�s�5�s7�ht,7�|tL7�t|7�t\8��t�8�u�8�4u|:�pu=�uL@�v|@�(v�D�lv�F�v|H�w�H�0w|I�dw�I�w<J�wLJ�wlK��w�M�x�O�\x�P�xQ�xlQ��x]�(y�]�y^�y<^��yl^��y�^�z<_�@zL_�Tz,`�z�`�za��z<c�{�c�H{�c�d{,d�{\d�{�g�|,h�$|�h�\|Li�||i�|,j��|�j�}lk�@}ll�|}�l�}�m��}�o�~�o�,~\p�L~�p�~<s��~<t�<u�@\u�T�w�x��z��{���{�H�L|�l�,}��l}�Ѐ�}��l~����x���������,�� �l��L����d�̇��������؂������@����\�l������<���\��L����h��������̕�Ȅ����|��P�<���\������ԅܚ��������(�̛�@�,��h���������ܜ�Ԇ���L�� ����4�̞�L�����,���|��8�\������Ȉܰ�����\��0�����l��̉\���l��<�\��x�������Њ\������,�̻�H����l�ܼ�����\������,��P����|�����|������L���L���l������,�<��\����|������������Ў���|������4����`�,������Џ,������ ����L�<��t�,�������<������\�<������ȑL������ �L��T����x�L������В���(�L��`��������|��ܓl��(�<���l���������l�|���,���L��P��������Ȗ���ܖ���@�,����0�,�h��������,���P�	�t�l	���	��|
���
���
�`�,���������,�|�X�����.���.���.���.�$��.�8�/�T��/��0���1��2��2�,�\2�X��2���3�Н4��L4��l4� ��4�<�l8�h��9��:��l:���;�h��<��,=��l=�ğ�=��LC�,��C�D�,D�h��E��G��I�P�<K���L��M��LM�0�|M�L�,N�x�lN��|P���Q��<R�<�|R�P��V���V�ȣ�V�ܣW���n���n��o��o��<o�ؤLo��lo��|o��,s�d�Ls�|��s�ȥt�ܥ\t��lt���t���t�,��t�@��t�X�u�p�Lv�Ц�v� ��{�P���������܍�P���Ш,���L��̩��������\��@����x�ܛ��L��Ȫ����������`���t�|���|�� ����@�L������Ь\��<�L�������,��l�����̶����Ԯ���������$�,��8�|����������L��,����x�L�����������L��0����p�������l�� ����<�<��h�|������Ȳ������d����г\�� �L��\��������ش������� ����8�L��\�\���|�������l���|�� ����<����T�,���������ж��������������0�<��L�|��l���������������8����T����t�,����������ȸ���ܸ�������,����p�,����������̹������4�<��\�����L������|�����X����|��Ȼ\�����,���H���,�������0��|�L����̽L����,�l�H���t�|��L ���-�`�l/��1��L1���1�D�|3���3��5��\6�0��7�l��8���9��l;��|;���;�,�<�X��<�t�L=���=��L>����>��L?�(��?�L�L@�p��@��LA���A���LB���B�(��C�h�LD��E����E����F��LG�4�\H�P�|I�l�lJ��L���M���|N�,��S�X�wU���U���U���U����U����U����U��V��V�,�LY�H�\Y�\��Y�p��Z��,[����[���[� �,\�H��\�h��]��,^���L^����^���_�T�la���b���\d���e�X��f��|g��\h���<j���k�p��o����s���~�0�\����������������<���<��0�<��P���|�̌��܌��,����l�����0�\��p�|�������L����̙��|��T����h�,���l���̜���L���|t�L��y�������l�����0�l��l�L������L� ���L���`��t�<��L���������|���@���T���h���,��<��L���\���|�����,�4��p����������������|�4�L�������������L� ���\� ��!��<!����!����!��"�(�|"�D��"�X�l#��$���$��L%���&����&��|'��(�\��(�p�|)���)��\*���<+���+���,�H�<-�h��.��|/���/����2�0��2�D��2�X��2�l��2���2��|3���3���,4����5���7�8�8�L�|8�`��8�t�\9���9��l:���:���|;����<���=���>�@��?�d�<A�x�<C���G����K�@��K�T�L�p��M���N����N���N� �\O�4��O�H��O�`��P��\Q���Q���<S���S�,�,U�T�<V�x�LW���X����Y���<[��L\�8�\]�\��]�x��_��l`����`����a��|b��\c�D�le�t��g���j���l���\l��,n�L��p�h��s��lv����x�4�<{�h��}��\����̄�p�<������������\��$����8����|���,����L��L�|����������<�������̝�@�,������������<����ܦ�t�̧��,���|��T����L���|��������̭������ �,��<�l��X�������������<��$����H�ܶ�l�<���l���̷���<���l�� ����H����\����,���\������0���T�������������������������,����H����\�\���l����������0����D�<��������|���������������8����L�|��`����������������<��P����d����|����<���L���\����l����|���������������0����D����X����l�������,���<���L��������,������8����\�L��x�\�����������,����L���l��$����<����X����t�\��������������@����p����\�������L������(����H���\�|��|�������������\�������,��0�<��D�L��X����l�����������,�����������������,��,�l��x��������\������|��h�L�������������,��|�<�|�l����|������������,��L�,�`���L������p����<��|����<�����,�X�\�t����������L�D���t�\�����\�0�L ��!��<!���!�,#�H�#�p�#��#�\$��$��%�l%�4l&�h�&�|'��'��L(��(�8�(�L�*��,��,�$-�@�.���0�L1�4�1�T�1�h<2�|�2��3��	4��4��5�(8�,8�l8��8��=�<�@�A�A���A���A�B�,,B�@�C��U��V�X�T�X�\[�	\�@	,}�	L}�	|}��	<��	��H
<��d
̖�x
��
��
|��
����
|���
���
<��ܚ�(L��P���������|���� L��P̣�<�������ܥ�
L��,
���T
L��
l��
ܩ��
�����`\�����������l��$ܮ�X����������0|��D���X|������L��������(<��<|��X��������̷�T����������l��0ܻ�x���l�����l��p���������������l��LL��x�������L��`�������<��$\�����<���������@|��l,������,��(���d,�����������X|���������@��T������<������0L��l|�����<���l���������@���l���\������h\������<��(��D,
��
����@ ��` \
� �� L�X!|�!��"\�T"�"���"��#,�l#\�#���#��#��($<�`$l�|$|�$��$��$\�$��%��(%��D% �\%< �x%| �%� ��%\!�(&�!�L&#�&�#��&�%�'l&�0'�&�T'�'�'l(�'�(��'�)�$(�*�`(�+�(,��(L/�)|0�X)�1�)2��)�7�$*�9�p*:�*L;��*�;�+<<�H+?�+�?��+�A�4,�D�,�h�0�q�d0r�x0,r�0<r�0Lr�0\r��0�r��0�r�1�r�1s�(1<s�<1ls�T1�s�l1�s�1�t�1�t��1�t��1u��1Lu�2|u�2�u�82�u�L2�u�`2Lv�2�v�2x�2lx�3|x�03�x�L3,y�x3<y�3\y�3lz�3�z�4<{�@4�{�l4�|�4L}�4l}��4�}��4\~�5�~�<5|�l5��5\���5L��6́�t6���6,��7���d7���7���7l��D8���8���8\��8\��(9��h9ܔ�9����9,���9L���9l��:|��:��4:��L:L��d:���:���:L���:l��$;��@;\��d;|��|;l��;���;����;|��<���8<ܞ�T<\��<|��8=���L=����=����=����=ܣ�>��0>,��p>\��>���>���>|�� ?���H?��d?L��?���?,��@<��$@L��8@���\@���@����@����@��,Al��XA|��lA���A��A����A,���A\��A���B���(B��@Bl��TB���lBܴ�BL��B|���B\��C���dC��xC<��C���C����C<���C���D���4D<��\D���D����D���D,��XE���E���E���E����E����E���E��$FL��@F���`F��F����F����F���F���HG\��G���G|���Gl��H��4HL��PHl��hH���H���H���HL���H���I��� I���TI��lI<��I\��I���I����I����I��J,�� J<��4JL��pJl��J���J���J����J|��K���K\��XK���tK\��K���K<��K���L���<L���|L���L���L���M���$Ml��pM���M,���M\���M���M���N\��@Nl��TN���hN|��N����N����N<���N,��0O���XO,��O���O���O���P,��(P���LP\��xPL��P����P,�Q��0QL�TQ��Q��Q��R,�PR��|R\�R,��R<�S|�0Sl	�tS��S��S,
��S|
��S�
�T�$T|�PT��Tl�T���T,��T|�U��$Ul�LU��xU|�U��U��$V\�PV��lVL�V��V���V� �W� �$W� �8W� �LW\!�xW|!�W�!�W\"��Wl$�4X<&�hX�&�X\'��X\(�Y�(�$Y�(�8Y)�lYL)�Y�)�Y*��Y,*��Y�6�(Z7�TZ�7�tZ>��Z,A�Z�I�H[K�[�K��[L�\�L�D\�N�p\O�\\O�\�O��\L]�<]�^�]�_��]�_�]`�0^,`�D^|a�^|c�^d��^�d�^�d�_�d�0_�e�L_�e�h_�e�_�h��_�h�`,i�(`Li�@`|i�h`�i�`�j��`|l� a�m�pa|~�a<���al���a���a܃�b��,b��@b<��Tb<��b\��bl���b���b���Hc̈�dc���c��c܊�c��Dd<��tdL��d����dܑ�d��Le\��e��e����e,��fl��(f���@f̟�Xf��|f����f��f\��$g<��pgl��g���gܤ��g\��hܥ�@h��Xhl��h���h���hL��8i���Ti��ti\��i��i���i<��$j,��8j<��Lj\��`j���j��j���j,��j̻�k��$k���8k��Lk\��hk���k<��k����k<��Ll��l<��l����l��m���Dm���\m��m����m����m���n���Dn��Xn���xn����n���n<��n���To���hoL��o���o���p���8p���dpL��p����p���q��hqL��q���q���q���(r��Tr<��|r���r���r���8s��ts���s����sL��t���ht���t����tL�� u|��u���u���v<��vL��,v\��@v���Tv��hv��|v���v��v����v����v|��w\��Pw��|w<�w\�w���w�x��4x��px��xl��x��y��4y��Hy��\y��y|�y���y<��y��z�
�Dz��xz���z���z�@{l�|{�{�#�4|,%�|,)�8}0�}�:��}�?�~I�l~lK�~\O��~�a�,�e�h�i�\x��L��@�܉��\���,��H�l��\�\���l��Ё|�������|��p������������؂���$���\�����̨��\��ԃ������@�\��T�l�������\�����8�,��L�\��`�|��t�����������,��̅����L��,����h��������L���l�� ����4����H��������l��̇���X�,������Ԉ���$���p�\����������ĉ|����������L�|����������Ċ���؊���\���|������0����H�������������,���l���������`�������Č���،�������@����l����\������ԍ����L��`��������Ď��܎���(�������ȏ,��܏L��0���h�������������������̑�����8���L�,�`�L�|�|�����������,�\���x�L���
���
�0���|����\
�Ȕ�
��,�����,����������$���X�\����<����T���h�����������ԗ�����$���`����\�ؘ\ �4�� �`��!���"�ؙ%�0��%�\��)���)�̚�*���+�4��+�L�,0���0���0�؛�0��<1��<3��\3���9���A�<�|B�X��B�l�<D���D�Н�E���H�T�,L���L�ܞ�N� ��O�L�|P���Q�ȟ�R���T�<��V�p��Y��[�$�|[�P��[�d��\��l]��l^�ȡ�^�ܡ|`��,a�d��c��<j���k�l�,l���s���t�<�<u�l��u���u�̤\v���v�0�w�l��w���������X�l���|������Цܠ��������4���H�,��\�l��t�l���|��ħ��������l���ܤ�0���P�L�������������L���������̺�ĩ��ة<������H�,���\���̼��,�� ����l�������ȫ���ܫl��(�̿�<����L���\���|��Ĭ���ج��������������(���<�,��P�<��d�\��x�����\��ح��������,��,����X�<��p�L����������<�\���L�������,�����d�<���l������L���������L��P��8��,9��<:���:�<��:�P��:�l�\;���;�г�;���;���<�<�lG�д�G��|H�H��H�\��H�p��H���H���H���H��<I�ԵLI���I��J��\J�0��J�X��J�t��L�ض�M�<��N��O���S��T� ��T�4�,U�X��U���`��a��La�0��a�H��a�d�Lb���b�ȹlg���g�(��j�t��k��\o�T��p�Ļ\s�T�Lu��,w���|�\�|}���}���}���}�Ƚ�}�ܽ�}��~��l~�,��~���������о�������,��4�l��P�L���\������̿܂����\������������l���̆�H�,��t�|�������������(��������l���|���<��`���������L���ܕ�T�ܖ�����H��������,����������\��4�\�������������������������������$�,��8�<��L����d���x����������,����L�������<��8�|��L����L���l���������<������8����L���h�|������L��������<��0����������,���,�@�\�T���h�,���	����	��
��\
�D����\ ����!�@��!�T�"�h�,"�|�\#���#���$��<$� ��$�L��$�t��)���<+����+���<���=����?�,�L@�H�l@�\�|@�p��C���C���\D��\E�0��E�x��E���F���LG����G���G�(�,H�`��I�|�J��\J��L����P���P�H�LQ�h��Q�|��Q��LT����T���T���T�,�<U�@�lU�T��U�h�V��LV���Y��|Z�l�|[��<^���\^����^��<_� ��_��L`��La����b�4�����̒����������������0�̕�D����`�����|���,��P�l��d����x���������,���<���������L��8����L����\����L��L����������8�������,���L���\����|���������������,����H�<��\�l������$����p�����������P���d�,��x�|���������l��<�|��������<��$����8���L����`����t�L���l�����������,����<������������L��0�<��l�����$���������l����2���l3���3�l�<4��|4��|5���5��<6���l6���|6��L7�H��8���8��,9���;�`��;��|<����<����<��<=���=�8�,>�T�<>�h�L>�|��>���>��l?��A�@��A���B����B���,C��LC��\C�0�<E��|H����H���I�0��I�L�J�`�LK��|K���K��LL��\L��lL�$��L�X�M�x��M��LN���lN����N���N�,��N�D�\O�d�LP��<Q��|T�H��T�t��U���X���[�<�]��<^���L`�(�a�T�Lb���b���|c��Ld�T�,e��\f���,g��,h�8��j���n����p��Lq�<��t���t��\u���u���u� �z���z��|{���{�(�<��t�|������<���l������@�܈�\����p�<���|���̉������<���\��(����T�܊�h����|����\���������������,��h�����,������\����<���l���������T���t�L���|���̛��,���\��$����p�̢��ܤ��,��(����P�̦�d�|���ܧ���������L����������H�|�������@���|��\������ܸ�P������ܺ����̼�<��d������<������ |��l������<��$\��<|�����������8���L���l|��|���������<���X<��t����������X��t������������l�������������	���<	��h	���	���	<��8
���d
l��
���
���
���
���X��,�\�����	�h,
����������
�
�
�0
�D
��
<�
���
���
���L�`�����,�<�\�$��Tl�\��l�8| �||!�L"��/�d�1�<3���4� 5�@\5�`�6�L7���7���?�P@�L@��G�,H�0�H�X�H�\I��I���J�TK�t,K��L���N�@�R��S��S��T���U�V�4\V�H�V�t�W�Z�<[�8�[�X�]��^��^�l_�L�_�t�_�`���`���`��`�$ld�p\q�|r�,�r�X�u��v��\v��v�<�v�d�v�<w�~�L~�0�~�\��̀�L��|��4���H���h������,��x|����� ��h �� |��� ܑ�!�� !<��!���!����!\��<"���"L���"|��#��T#\��#l��#���,$��x$���$���%���H%l��%���%L��&��$&��t&���&\���&����&L��',��P'l��x'���'��'\���'��$(��`(��(<���(|���(��(��),��T)L��h)|��|)���)���)��)<���)l���)����)���*���*,��0*<��D*���d*���*����*\��+���L+l��+|��+����+���,��,L��(,l��<,<��|,���,���4-���-|���-,��(.|��\.l��.����.��$/���p/|��/���/���(0���0L��0����0,��1���P1��t1���1<���1\��2��� 2���<2\��x2l���2���3��l3L��3\���3<��4�<4�p4�4|��4�5��85'�x5<�5���5L��5��6	� 6�	�l6l
�6�
�6��6L��6��47<�l7��7�
�7\�48,�h8l�8"��8�"�,9l#�\9�#�t9�#�9�#�9$��9%�:\&�P:,'�:\'�:|'��:�'��:�'�:�'�;,)�T;l)�h;�)�;�)�;*�;,*��;\*��;�*�;�*�<�*� <,+�4<\+�H<�+�\<�+�p<�+�<�,�<�-�<.�=s.�@=�.�X=�.�=/�=,/�=L/�=l/��=�/��=�/�>,0�0>L0�L>l0�`>|0�t>�0�>1�>�2��>l3��>\4�@?5�?�5��?�5��?�5�?�5�@�5�$@�5�8@6�L@,6�`@L6�t@\6�@|6�@�6�@7��@\7��@�7��@�7�A�7�A�7�(A�8�dA�9�A�9�Al:��A|:��A�:�B�:� B�:�8B;�PBL;�hB�;�B�;�B�;�Bl<��B�<�C�<�C�<�0C<=�LCl=�dC�=�C�=�C>�C<>��Cl>��C�>�C�>�D�>�0D?�LDl?�dD�?�|D�?�D�?�DA��D�A�(E�A�HE,B�\E\B�xE�C��E�C��ED�F�D�8F�D�|FE�FLF��F\F��FlF�G|F�G�F�0GLG�lGLH�G\H�GlH��G�H��G<I� H�I�HH�J�HL�H<L��H|M�I�M�0I�N�lI�O�I|P��IQ��IR�J�R�4JS�`J\S�tJ�S�J�S�J�S��J<T��J|T�K�T�(K�U�dK,V�xK�V�K,W��K�W�$L�X�LlY�LZ�MlZ�0M�[�M�[�M�\��ML]�N�]� N�]�LN<_�N�_�N,`��N�`�Oa�@Ola�lO�a�O�a�Ob��O|b�Oc�DP�c�P�c�P\d��P�d�Qe�,Qle�TQ�e�QLf�Qlf�Q�f�Q\g�(R�h�lR�h�Rli�Rj��R�l�PS�m�|S�m�S�m�S,n��S\n�S�n�T�n�0T�n�LT,o�hT|o�T�o�Ts��T�s�Ut�4ULt�PU|t�lUu�ULv��Uw�V�w�DV�x�pVy�V,y�V�y��Vz�V\z�W�z�$W�z�<W{�pW|{�W�{�W�{�W�{��W�{��W�{�W||�(X�|�<X�}�\X�}�XL~�X�~��X��8Y|��\Y|���Y���Z��8ZL��\Z|��Z���Z���Z,��[<��[\��8[̊�T[L��x[|��[���[l���[����[��4\\��P\���|\̍�\��\,���\<��\l��]|�� ]��D]L��d]L��]|��]����]L��^,��l^���^���^��_,��p_����_,��`\��x`����`����`���a���La,��da���xaܭ�aL���a|���a���a���b̯�(b��<b���xbܱ�b\���bl��c���0cܵ�Lc��`c����c\��dl��0d|��Dd���dd,��dL��dl��d��d���Le���he���|e,��e����e����e,��fl��f���Df���Xf<��lf���f���f���gl��Pg���g����g���g��h<�� hl��@hl��h|��h���h����h���i<��(i���Di���Xi���i��i\���i���j���jL��dj���j���j<���j���k<��(k\��<k|��Pk��k���k<���k���$l���8l���Ll���`ll��|l\��l���l����l����l���m��m��<m���hm��m��mL���m���n���(n\��Ln���`n�	�n�
��n|�o��$o��<ol�Xo��o��o<
�o�
��o�
��o<�p��0p��\p��p<��p���p�q��4q��Hq��dq\�q��q��q<��q\�q�� r�4r\�xr��rl��r��s��s��s��s<��s|��s��t��,t<�Ht|�dt��|t��t\ �t� ��t�!�u�"�8u�&�tu�'�u�(�v\)�,v<*�Pv�/�v\2��v,4�w<6�Tw<7�w8�w<8��w\9�w�9�(x�9�Tx<:�x�:�xL;��x<�y�<�@y�>�ly�D�yLE��y�E�zN�`zO�z�T��z�V� {�\�{�]��{^��{|^�|�c�\|\d�|�d�|�d��|Le�}�e�@}�e�l}Lf�}�g��}<h�8~�h�X~�h�t~Lj��~�j�<l�4�l�`Lm��m���m��n��Ln��|n�$��n�<��n�T�o�l��o��o�Āv�(��w�l~�Ё|�$���8���T�̅�̆���Ԃ܇����H�L��`����|������\��܃����|�� ����4�,��H����t�l��ܚ�؄|�����D����l���|�� ���X���p�L�����<�������ܨ�,�,��L�|��l�̩���l��̇����\��8�|��L����l�,��L��Ĉ����̭����<�L��\�L����ȉ�����T�L��|������Њ|������D�|��x�����<������D����`����t�������l���|���L�� �|��4����`����\�����Ѝ,������<��D����\����������p�<������t�������$����t�\��l���,��0���|���,������T���L��L�h�<�Ȕ|�����L�<��h�|��������l�H���\���p��l���̖|�����`�L�L �ė� �l!��|!�(��"�`�|#�$�l$�Ș%���%�(�l'�`��'�t�(��(��)��+�(�|,�`��-��.�Ԛl0�$��1�|�l2��3��4���4�T�L5��6�Ȝ,7���7��\8�L�lP��f���i�<��i�P��i�d��i�x�j�,j�lj�Ȟ�j�ܞk��k��,k��Lk�,��k�`�l��l�m�ԟ�m��m� ��m�4�n�H�n�\�,n�p�Ln��n��n��n�Р�n��,o��Lo��lo�,��o�H��o�`�Lp�lp��p��q��q� ��r�X�<s��s�t��\t�$��t�\�\u��u��u�w�lw�0�x�L��x�Ly�|y�Ĥ�y���y��<z�,��z�`��z�<{�ĥ|{���|�(�<~�X�l~�t�����|���L�� �́�L�<��d�|��܂���<��̧\���l��D������Ȩ����,�����$�<��@�\��\����p�<��L��l��̩�������L��X�l��l����,��l��Ԫ�����������̐�$�̑�h�ܒ���l������\��$����@���T�\��x������̗��|�� �,��L�|��l��̞�����\��4����T�<��t�������|���̣�8���d�����������,�̦�X������������(���t�\����ı��������̮�,�<��X�\������ܱ����0�ܳ�|�<��L��̳���������\�<�����ȴ��������X���̼����h�<��|�����ȶ���ܶ����ܿ��������d����x���<��\��|�������l��P������L��Ը|���,��T�������ȹ���ܹ���|��$����@����\����p����,��L��l��|��Ժ��������������$����8�,��T�\��t����������\������8����h�<�����Լ��������������$����8���L�,��`�\��|��������������\��4����`������ľ\�����4����H����\���p�<�������п|�������������0�<��X���,��<��L�������������D����X���l�L��l������L���\���|��0����\�l������l����������� ����4����P�<��|�l��������,�������������L������0����D�<��X����l�����\������,������������<���l��(�L��\����p�,���<�������������\���|������L�<��|�|��������L������<����������L������<�|����������L��8�����������������<���\������(����<���P���x�����������������<���p�,���������|� �,�@���`����\��������l	��
� ��
�@���`�L������
��\������� ���@�\�`������|��\��|�<�l�l�|��������0��`�l����������!�$��#�t�|$��%���<%����%��&�$�<&�@�L&�T�l&�h�|&�|��&��<'���'���(���(�0�)�D�)�X��)�p��)���)���*����*����*���+�@�,�T��,��-���-���,/�4�l/�H�L1�\�2�x��2����2����3�4��4�P�\5�x�|5���5��6���,6���l6����6�(�<8�d��8���9���9�@��9�T��9�h�,;��\;���;����;����;��|<�D��<�x�=��L=���=����=����@�@�LB�t��B��<C����D��\E�$��E�8�LF�T��I��lL����O� �,R���R���R���lS��T�4��T�`�U��<U���U���,V����V�8��W�t��X��,Y���lo���s�8��v���{���|�T�,~������܁�8�|��������������H���p�|���\����|������������܌�,�<��L�|��l��������<��4�����ܖ���������������(�\��t����,������$�\��8����P����l�ܛ�����\��������\������h�L����������@�|��t�������������L������0�|��l����������������|���̷�$���@����,���\���\���|������|�\��������,������8����T�����������������������<��<�\��P����x�L���|�������������|��(����<�,������0����D���X����t�l;���|;���|D�P�LH����K�<�,O�l�LU����V���W��,X�T�l\���\��a��<a�8�lc���c���c����c���Ld���f�d��g��h���k�8�,o��q���q� ��q�4�r�H�\r�t��s�,t��<t�\t���t�8�Lx���� ����<���������������l�|��������ܒ��<��8�|��T�,��,���l����0����X�l�����|���̚����(���L��̜�����X���,��̢��,��4������l��P����������<��DL�����������d��,��l��������,��<l��\��x����l��|��(L��D������L�����X����������������<��x���|�����x������@���p����,��L	��	,��
��x
����
����
����	��|
���<
���\
���l
����
����
���
����(,��<<��P\��l������������\������
�
��t
�
���
l���
����
�����@\��T���p\������|�������,�����<\�������\������������<���T����������������L��\�����8�������<���l������������4��TL��||�������|�������, ��< ��$L ��8\#��X�%����%����%���&���l&��|&��|'��`�'����'���(���<(���l(��)��(\)��<�)��\�)����*����1��$,2��8�2��t\3���|3����4��|7��<�7��T\8��t�8���l9���|9��:��(<:��@<B����B����B��C�� lC��L�C���,D����D��E��,|G��tLH���lH����H����I��<J��`�P����P���lQ���R��$lS��P�S��|�S���\T����T����T���U��0<U��H�U����U���lV����V����V���V��4W��H|W��d�W��x<X����X���Y���,Y���Z��Xl\����\����\����_���`���l`����`�� �`��( a��< |b��` �b��t �b��� c��� <c��� lc��� �c��� �c��!�c��,!,d��@!<d��T!ld��h!Lf���!|f��"�f��0"�f��`"g��t"|g���"�g���"<h���"lh��#�h��8#<i���#\l���#�l���#�l���#�l��$\m��L$�m��h$<n���$�n���$\o���$�o���$�r��$%�r��<%Ls��P%�s��d%lt��x%Lu���%�u���%�u���%�u���%x��&y��p&L|���&����'���\'����p'����'�����'�����'̇���'����'l����'<����'|���(����((���<(,���P(\���l(l����(܍���(����)����4)l���H)|���\)̏��x)�����),����),���D*����`*�����*|����*���\+ܲ���+��� ,���T,����,����,���,���,\��-���$-L��T-zRx�$���YFJw�?;*3$",Dp��JE�C
E���z
It���HN����HN����HI��������/��������(Ĭ�pE�D�D0~
AACL<��BF�B�B �A(�A0��
(F BBBBv
(H EBBE���	���8�0��P�,���K�F�B �B(�A0�A8�DP�
8A0A(B BBBBP������<����F�E�F �D(�A0��
(D BBBHH\8��}F�E�E �D(�F0O
(A ABBAD(C ABB�l���@����F�B�E �A(�D0�D@7
0A(A BBBK zRx�@�����(�k�88|���F�B�A �D(�G@�
(A ABBEzRx�@����$Ck�8�̲��F�B�A �D(�G@�
(A ABBEtk�8�<���F�B�A �D(�G@�
(A ABBH��j�`H���QF�B�B �A(�A0��
(A BBBDD
(A BBBMS
(F BBBA zRx�0�����(@j�p�����F�E�B �A(�A0��
(A BBBK�
(F BBBAD
(A BBBHn
(D EDGE��i�plȷ�UF�E�A �A(�D0s
(F ABBAS
(F ABBB\
(D ABBKQ
(G CDEEzRx�0����$6i�4����E�A�D �
AAB{
DAH,L8��qk�A�D �{ABB��� |���nE�v
E`
H �Թ�fE�o
LV
J$� ���E�|
OE
KmL����3E�A�I �
FAED
FAED
DAGLAA4<x��nB�E�E �D(�F0N(D ABBHt����B�E�E �D(�F0^
(A ABBFD(C ABBH���PF�B�B �E(�A0�D8�FP�
8A0A(B BBBB zRx�P������(g�8D����F�B�A �D(�D0�
(A FBBI<�d��]�D�O QCAK��p ��DG�A�0�4��JA�H�G U
AAIKIA0�P��+B�A�A �D0u
 AABG(	L��AAK0D	P���F�A�A �D@e
 AABAx	���(A�[4�	���lF�A�D �Q
ABAADB4�	���F�D�A ��
ABKQDB4
p���F�A�D �U
ABEQDB<
��J<P
���N�B�B �A(�I0��(D BBBA������
���$A�^�
���<�
����B�E�B �E(�D0�o
(A BBBH$��U@p���B�A�D �V
ABH`
ABES
ABJ\X����B�B�A �D(�G0_
(A ABBK�
(A ABBAH
(A ABBB�<��vL����FN�E�D �C(�H0�
(F ABBKD(C ABBD����4����B�E�D �A(�F0h(D ABB@T��~F�B�B �A(�A0�D@)
0A(A BBBGH�<���F�B�B �B(�A0�A8�Dp�
8A0A(B BBBA�����D0t
H
4��&E�X
CA0 
D��nF�A�A �D0l
 AABDLT
���*F�B�B �B(�A0�A8�D�A
8A0A(B BBBCL�
`��:F�B�B �B(�A0�A8�D�&
8A0A(B BBBF�
P��\��HX���B�E�E �E(�D0�D8�DP`
8D0A(B BBBFLh���}F�D�G �G0R
 AABBz
 AABBH AAB8����mB�E�D �D(�G0y
(D ABBHL�0���F�B�A �A(�D0M
(D ABBDP
(D ABBGD���"(X���*B�D�D �XABH�����B�B�B �B(�A0�A8�D@�
8D0A(B BBBE\�t��RB�E�D �L(�D0K
(A ABBD�
(A ABBDp(D ABB(0t���A�A�D R
AAF\��ipt��A(����FA�D�D ^
GFL8�����P�F�A �j
ABDsABB���4�(��bF�F�A �t
ABDVABh$`��>N�E�E �B(�A0�A8�DPB
8A0A(B BBBD�8F0A(B BBBE�������4��	�0��J�l��H�x���B�B�E �E(�A0�G8�DP�
8A0A(B BBBCL��yF�B�B �A(�A0��
(A BBBEd
(A BBBE4hL���E�D�D }
AADa
AAEH���F�Q�J �B(�A0�A8�D@�
8D0A(B BBBD����8���F�E�A �A(�D��
(A ABBA<<���{E�D�G0S
AAKz
AADHAA|���,�����E�C
H����D�x
D,�����E�C
I������
E,����"E�C
D��H���
D, ����E�C
D��E�E�H�1
A,P$��wF�F�A �I
ABG,�t���F�D�F �v
ABG������2a�L��4��0A�n$�H��K l
IS
Er
F($0��=E�A�G0�
AAELPD��F�B�A �A(�G0�
(D ABBLD
(A ABBF(���	A�A�G o
AAFL�����F�B�D �D(�D0[
(D ABBHX
(A ABBBh��HN44p���B�B�D �D(�F0n(A ABB@l��F�M�A ��
ABA\
ABADABH�����F�B�E �B(�A0�A8�DP
8D0A(B BBBB�(��CE�x
AH\���F�B�B �A(�A0�u
(D BBBED(A BBBHd���;F�B�B �A(�D0��
(D BBBE^(K DDEH����F�E�A �A(�D0�
(D ABBCQ(F HDEH�(��F�N�B �B(�A0�A8�OP"
8A0A(B BBBKHH���F�N�B �B(�A0�A8�O@�
8D0A(B BBBD,���KE�C
F���F���
AH���>F�B�B �E(�A0�A8�GP{
8D0A(B BBBH@�
��A�D�G F
AAD\
AAJh
DAK|T �bB�E�B �B(�A0�A8�DP%
8A0A(B BBBHR
8D0A(B BBBIH
8A0A(B BBBF��jA�z
E(�d�E�C�D0f
DAIHX��F�B�B �B(�A0�D8�F`
8A0A(B BBBKh���E�n
ED�l��F�B�B �D(�D0�F�
0A(A BBBE���.E�X
KA ���E�G0d
AG��&E�X
CA84���F�B�A �A(�GPE
(A ABBDPpD��F�A�A �G0
 DABH~
 DABCT
 DABE���vE�E
Fa(�0�YE�A�J w
DADd�9$��HH0z
A0@��WE�A�G h
DDKDEAt�����H���B�B�B �E(�D0�D8�G��
8A0A(B BBBF�� �GKc
AH� ��F�B�E �D(�E0��
(D BBBJG(A EBBHPT!��E�G�D v
AAHk
DAPD
FAE\FA<��!�jF�B�B �A(�D0��
(D BBBI�#��#�8#��F�E�A �D(�G0|
(D ABBL\@�$��F�I�E �E(�A0�D8�FP�
8D0A(B BBBGS8D0A(B BBBD�$%��F�B�B �E(�A0�D8�F@~8A0A(E BBBD��%��F�B�B �E(�A0�D8�F@~8A0A(E BBB40�%��F�A�D �i
ABIAAB8hL&�'F�E�A �D(�I@�
(A ABBD4�O�L�,)��F�E�A �D(�G0U
(A ABBFH
(D ABBG |)�( �)�>E�A�G �
AAGLH �*�`B�B�B �B(�D0�E8�G��
8A0A(B BBBJ@� �.��E�A�D �
AADt
FAEW
DAA � h/�uE�h
CU
K(!�/��I�e
BP�P�Q
G8,!x0��F�A�A ��
ABH{
ABB4h!�1�FE�A�G �
DAKh
DAC4�!3��I�A�G K
DAGH��P ���!\3�$H [�!t3�J"�3�4E�P
KL4$"�3�TE�A�F ]
AAED
MAEH\"�3�F�B�B �E(�A0�A8�D`�
8A0A(B BBBE�"�5�'E�M
FG,�"�5��E�C
D��F�J��e
GL�"\;��F�B�E �B(�A0�A8�D�i
8A0A(B BBBH@H#�<��F�D�D �@
DEIX
CEHJFB �#8=�}E�l
GV
J4�#�=��F�A�D �^
ABLADB�#�=�ME�Z
I4$ >��F�A�D �^
ABLADB,<$x>�E�C
B�Q�����
A(l$HD��E�D�G@k
AAC4�$�D��I�A�A �[
ABGd
ABI �$TE�XE�G o
AD0�$�E�F�D�C �GP�
 AABB (%lG��HF
BY
GzRx�J�@x%�G��F�B�B �A(�D0�GP�
0A(A BBBE8�%�I��F�A�D �Z
ABHI
ABD�%�I�E�TL&�I�1	F�B�B �B(�D0�A8�I�B
8A0A(B BBBJ(d&�R�-F�D�F �YAB�&�R�E�T,�&�R�xF�A�A ��
ABE`�&(T�vF�B�B �B(�A0�A8�DP
8D0A(B BBBAQ
8A0A(B BBBE$@'DV�CE�F�G nAAh'lV�.@|'�V�nF�B�E �A(�A0�DP�
0A(A BBBBp�'�X�F�B�H �A(�A0��
(D BBBB]
(C EBBGA
(D EBBJ�
(D BBBD4(PZ�YH d
LP
EzRx� G�%�(dZ�	0�(`Z��E�D�D d
DAJODA�(�Z�	8�(�Z�gF�D�D �F
ABI�
ABA )�[�TE�j
AW
AH<)8\��F�E�B �H(�D0�A8�K��
8A0A(B BBBKH�)|]��F�E�E �E(�C0�^
(G BBBMA(A BBBL�)�]��F�B�B �D(�D0��
(D BBBHJ
(A BBBG0$*�^�tF�A�A �GP�
 AABCX*�`�4E�P
KLx*�`�-E�`X�*a��F�B�A �D(�D0v
(D ABBH{
(D ABBD_(D ABB(�*ta�uM�H�A �TAI+�l�)H[4+�l�)H[L+�l�)H[d+m�)H[|+(m��+$m�D�+ m��F�B�B �A(�A0�m8H@X8D0A(A BBB(�+�m�CB�R�I �bAB8,�m��B�H�A �D(�D��
(A ABBAT,`n�7Hfl,�n�)�,�n�DM�,�n�'A�Q
NFH�,�n��B�B�B �B(�A0�A8�D�}
8A0A(B BBBK- z�'KW8-8z�B�B�A �J(�G0
(D ABBFX-|{��H v
Bt-�{�'O�-|�AA�D zA�-<|�	(�-8|�A�A�D`�
AAG�-}�L�-}��F�E�A �A(�G0
(F ABBE�
(D ABBML.��]HPd.���x.���y$�.����L�E�t
AJ�.���
,�.|���B�D�I �g
ABG�.���H�T
D_4/l���A�A�D �
AAAK
FAFTP/ă�B�B�B �B(�D0�D8�D@�HKPIHA@H
8D0A(B BBBC�/|��TA��
GP�/���}B�A�A �p
ABIG
ABF�(B0F(D A
ABD80��E�F�G �A(�W0�
(A ABBA4X0����B�E�D �F(�J0�(A ABB�0���YL[
I�0ȉ� AAK�0̉�!AAK(�0��JA�I�D0�
AAE|1���B�I�B �B(�A0�A8�D�Y�H�W�B�s�G�X�A�R
8A0A(B BBBBD�K�S�E���1$��3B�E�B �E(�D0�A8�G���J�V�G�\�D�j�M�K�A�t�J�[�G�^�E�g�H�\�B�_
8A0A(B BBBJD�J�V�D�\�D�d�L�W�D�HX2���WB�B�D �A(�DpCxH�VxDp�
(A ABBJ�2���#�2̐�3P�2���=N�F�B �A(�A0��
(A BBBHX�����X0����� 3���~H83l���B�F�B �B(�A0�A8�D@o
8A0A(B BBBA<�3В�NF�B�B �A(�A0�
(A BBBA�3��%AA^�3��_@�3<��sTT4���3F�B�B �B(�A0�A8�D`�hKpShA`[
8C0A(B BBBFh4���%AA^ �4����A�B
Et
A0�4<���B�A�A �DP
 AABI �4ؗ��HE
CI
E5T��q85����B�B�A �A(�DP�
(A ABBD8P5t��gB�B�A �A(�DP�
(A ABBC(�5���`i�A�J TD�D�0�5ܚ��B�A�A �Dp�
 AABG0�5X��kA�U
Jq
OY
G~
BS
EL 6����B�B�E �D(�A0�E
(A BBBA�
(A BBBA,p6Ԟ��A�C
P������
I0�6d���A�C
B�E�E�I�D�b
AL�6���B�B�B �A(�A0��
(A BBBE�
(A BBBKh$7p���B�K�M �F(�D0�D8�D��
8A0A(B BBBA\�N�F�F�F�F�A�,�7ĭ�QA�O�S G(H0\AA,�7���A�C
P�����"
J��7����B�E�E �E(�A0�D8�Gph
8J0A(B BBBHP
8D0A(B BBBK
8A0A(B BBBHDxW�D�D�I8A0A(B BBBAp �8p��|H@FHDPdHA@D,�8̷�EA�C
P������
DL�8����H@F
BGHGPFHA@D
GDHKPDXD`I@D
DDHGPFHA@,89����A�C
B�E�E�J���
Ch9L���|9X��
B�B�K �E(�D0�D8�K�N
8A0A(B BBBAc�L�F�F�F�I�D���L�F�F�F�I�y�8:���NF�B�A �A(�DP�
(A ABBH0@:����F�A�A �D@�
 AABEHt:���^F�B�A �A(�DP�XQ`BhBpgPW
(A ABBAD�:����F�B�A �A(�DP�XK`dXDPT
(A ABBHD;����F�B�A �A(�DP�XK`dXDPT
(A ABBF8P;T��NF�B�A �A(�DP�
(A ABBH�;h��d(�;���`E�A�G0O
AAB0�;���KE�D�G e
AAIHAA <��jA�|
CX
H$<`��MDf
FXD<���@X<����B�B�B �A(�A0�G`
0A(A BBBC�<��A�<D��
� V�<<��1A��
FX�<\���F�B�B �B(�A0�A8�Dp�
8A0A(B BBBD�xK�TxBpXD=���F�B�B �B(�A0�A8�Dp�
8A0A(B BBBD�xK�UxBpH�=����B�B�B �B(�A0�A8�D`|
8A0A(B BBBD zRx�`������(�1�L$>����B�B�B �B(�A0�A8�G�O
8A0A(B BBBF$zRx��������, 1�j,�>���	A�C
P�����=
G$zRx�������,1�,?8
��A�F
F���E�D��
Ep�0�`?��8t?��/F�A�A ��
ABAy
ABD�?��	�?��$�?��yL�K
IX�?��(TS8@��B�E�A �A(�DP�
(A ABBK8L@���B�B�A �A(�GPS
(A ABBJd�@��B�E�E �E(�A0�A8�D`�
8F0A(B BBBK�hDpLhA`�hIpNhF`8�@�#��B�E�D �D(�D@
(A ABBE(,A(%�"A�D�G0�
GAK8XA,&��B�E�D �D(�G@�
(A ABBA�A�&�%�A'�% �A('�E�G �
AE8�A(��B�A�A �I
ABHq
ABA8B�(��B�A�A �M
ABDQ
ABA�XB\)�(F�B�B �B(�A0�A8�G��
8A0A(B BBBD��E�W�A�d�K�V�B�j�N�U�A���N�V�B�M�M�\�B��B�,�H |
DLC�-��F�E�E �D(�D0�G`FhKpFhA`T
0A(A BBBEdC�.�<xC�.�$B�H�B �G(�G0��
(D BBBJ(�C�/�FA�F�G@�
AAE`�C�0��F�E�E �H(�M0�D8�D`xhHpWhA`f
8A0A(B BBBKqhKpWhB`HD,5�L\D85��F�B�B �E(�D0�A8�D�$
8A0A(B BBBJ �D�=��E�J L
AD0�D4>��F�D�C �F@
 AABJE�>�HE�>�KF�E�B �B(�A0�A8�Dp
8A0A(B BBBDHdE�?�BF�B�B �B(�A0�C8�Gp�
8A0A(B BBBAT�E�@�RF�B�B �B(�A0�C8�Gp�x]�ZxAph
8A0A(B BBBJHF�A�BF�B�B �B(�A0�C8�Gp�
8A0A(B BBBATF�B�%hFC�HtS,�FDC��F�E�D ��
BBC�F�C��F�C��F�C�	�F�C�	G�C�	XG�C�zO�A�D �
A�A�GYM�A�Q ��|
A�A�JD
A�A�EpG�D�HE�j
A �G(E�TE�]
FS
A�GdE�HE�j
A �G�E�TE�]
FS
A�G�E�-HX
HD H�E�uH _
Ip
HL 4H@F�oA�G0�
AGLXH�H�:E�D�G X
GAHq
LAJ�
AABL
HAK �H|J��E�G0p
AC �H�K��A�U
Jn
J�H�L�I�L�I|L�,IxL�4@ItL�>E�[
Hl
Lc
EQ
Gh
H,xI|M�BE�G0Y
AJ�
GE �I�N��E�b
IL
D�IHO�5H_
ID �IhO�
H �
Gz
F,JTP��D �
EsU D
L}
E,@J�Q��D �
IkM D
Lz
E<pJ�S��E�G �
AEL
IKf
DFD
AK�J�T��J�T� �J�T��E�G P
AC(�JHU��E�D�G0�
AAC (K�U��E�G@P
ACLLK�V�+E�D�G@�
DAK�
GAO�
DAL�AA �K�Y�yH@
HI
WD��K�Y�JP�B�D �A(�D@v
(I� A�B�B�I5
(A ABBE�
(D� A�B�B�Ee
(A� A�B�B�KD
(D ABBCD
(F ABBAD
(I� A�B�B�EZ
(A� A�B�B�E�����,I�#�MH�LT]�GF�B�B �B(�A0�A8�D�M
8A0A(B BBBGH�LXa�(F�B�B �B(�A0�A8�D�M
8A0A(B BBBGLHM<e�dF�B�B �B(�A0�A8�D��
8A0A(B BBBF �M\h��H�X
HU
C �M�h��H�U
KR
F4�M4i�4E�D�G �
FAEa
AAEN<k�RE�b
Y4N�k�-\PLN�k�`N�k�ctN�k�<H]
KG4�Nl��E�A�GP�
AADAXH`[XGP�Nhm�Z�N�m�Zd�Nn�vF�B�B �B(�A0�A8�D`\
8A0A(B BBBH�hHpbhA`ghKpOhF`|\Os�F�B�B �B(�A0�A8�G�Y
8A0A(B BBBH/�J�X�D�^�D�^�D�]�N�K�B�$�O�y��E�H�D �AA0P`z��F�D�A �G0g
 AABC8P�z�HQ@PP�z��B�B�B �A(�A0�DP�
0A(A BBBAH�Pp|��F�B�D �D(�G0d
(C ABBEW(C ABB�P�|�$H[(�P�|�fF�D�D �h
CBE$Q0}�VA�o
A@Qt}�(Q�V\Q�}�(Q�VHxQ�}�7B�B�B �B(�D0�A8�GP�
8A0A(B BBBK$�Q���XA�I�G DAA�QȀ�(Q�VR܀�(Q�V8$R���F�J�D �A(�G0U
(C ABBG`Rd��mA�^
A\�R����X�B�B �B(�D0�D8�G@R8A0A(B BBBG������H@�������R���R ��QR�oG�,Sd���R�D�A �k
�A�F�G@Să�QR�oG�(\S��7F�A�A �kAB�S��+E�e�S0��+E�e(�SD���E�I�D r
DAG$�S���PA�G�D ~DAT���Hq
A0TT��>E�g
E$LTx��uf�G OF�V �HtTЅ��F�B�B �B(�A0�A8�DpY
8A0A(B BBBK�T$��0�T ��F�D�D �G@�
 AABDDU���6B�A�A �
ABFV
ABGt
ABIPU��fE�T
G\pUD���F�K�B �A(�A0��
(A BBBHX
(A BBBIv(A BBBH�U���
2F�B�B �B(�A0�D8�D�W
8D0A(B BBBG8Vx��{B�A�A ��
ABGX
ABEzRx� ���$*�$�V���=E�A�G jDA(�V����E�D�G0Z
AADL�V��&F�E�B �D(�A0�_
(A BBBHB
(A BBBAL0W���eF�B�E �D(�D0�f
(A BBBFD
(A BBBA$�W��,E�D�J IJA$�W��:E�F�D eDA�W4��	L�W0���F�E�A �A(�D0S
(D ABBCq
(D ABBA44X����F�D�D �q
ABF{
ABAlXH��E�OL�XL��RF�E�A �A(�L0�
(D ABBGH
(D ABBGH�X\��fB�E�E �B(�D0�A8�G`�
8A0A(B BBBB($Y���PE�D�G e
AAA4PY���fE�D�G g
AAGD
DAE(�Y���hF�A�A �\AB�Y ��bX$�Yx��gE�A�G TDA�Y���Z���Z���0Z���DZ����XZ����lZ(����Z���(�Z���4F�D�D �[DB(�Z���4F�D�D �[DB(�Z���4F�D�D �[DB[���&E�\4[��)H[,��K\[h��U<p[����E�A�D W
DAJn
ADENADH�[4��t.F�B�B �B(�A0�D8�D�g
8D0A(B BBBG0�[h���F�A�A �DP�
 AABG0\����(H\��+F�D�D �UAB4t\��:F�E�D �D(�G0I(M ABB�\��(�\��3F�D�A �]DB(�\��/F�D�C �WDB<]���F�B�E �A(�A0�C
(D BEBI(X]|��E�D�D@W
AAJH�]@��B�L�B �E(�D0�F8�GP�
8A0A(B BBBC�U��kL�]��"F�B�E �E(�D0�A8�G�
8A0A(B BBBB,4^`
�dE�A�G�	
AAH(d^��TE�A�G��
AAJ�^��#HW(�^��fA�N�G0H
AAA�^,
�"HY�^D
�HI_L
�HI _T
�"HY88_l
�QF�E�A �C(�G`�
(A ABBG4t_��fJ�J�Q a
CAFDFAE���_��XH J
A$�_�8E�D�G eAA�_$�[H M
A`h�dE�A�G 0,`��\E�J�N c
CALDFA``���E��l|`��B�B�A �A(�D0�
(C ABBAI
(C ABBGD
(F CBBGD(C CBB�`H�
8aD��B�B�A �A(�D0A
(A ABBG`[��XPa��B�E�E �D(�A0�F@T
0A(A BBBEl
0A(A BBBD$�aX�QA�E�G AAA4�a��hB�G�D �D(�F0J(A ABB(b���A�C
I����
A zRx�����(��	pb4�	�b0�4Lg4�bX��A�M L
DBU
GD7
DE�b �"EAK�b4�rc��fZ^PL c��{O�B�E �E(�A0�D8�GPcXS`S8A0A(B BBBpc�
�
T�c��B�B�B �B(�A0�A8�DpcxE�VxApT
8A0A(B BBBA zRx�p������(6
�
d@�#E�Y0dT�$E�ZLdh�'E�]4hd|�aB�J�A �X
ABHI
GBAT�d��B�B�B �E(�D0�A8�D`�hJpUhA`T
8A0A(B BBBD�dl�&QIe��ME�O�,e��9@e��XTe0�)heL�gA�ezRx�� ��	0�ep��B�A�D �J0I
 AABB�e�� �e��fA�N
AI
G f��4f��AAKPf��!AAK4lf���E�D�O N
DAEL
DAG�f ����f��oA�m$�f���] a
BX
HT
Lg���oY^4g8�QQ�G�G Z
A�D�JDCA@Tg`��B�B�B �A(�A0�D@X
0A(A BBBD�g���Z^0�gt ��H ~
JN
BN
BN
BN
A(�g� �MA�A�D@b
AAFLh"��F�E�D �A(�L0N
(D ABBEL
(D ABBCL`ht"��F�E�D �I(�D0Y
(D ABBBj
(D ABBAH�h�"��F�E�B �B(�A0�A8�G`�
8D0A(B BBBDH�h�#��F�E�B �B(�A0�D8�FP�
8A0A(B BBBFHi,$�?E�G qA@hiL$��F�D�A �D0W
 DABCL
 DABE@�i�$��F�B�B �D(�D0�D@�
0A(A BBBA�id%�DIjl%�`Km
HH$j�%�fB�H�G �D(�K0Q
(D ABBFY(D AEB8pj�%��B�B�A �A(�D0]
(F ABBFD�j&��B�E�E �B(�A0�D8�LP�8F0F(B BBB8�j�&�B�E�D �D(�F�I
(A ABBD80k�'��B�E�E �D(�D0�y
(A BBBDlk�'��A�j
E$�kX(�SE�K�K uAA�k�(��A�j
E4�k)��F�G�D �D(�G0l(A ABB8lh)��F�B�E �A(�H0��(A BBBHHl*�`B�E�E �B(�D0�A8�G`�
8D0A(B BBBCH�l -�(B�E�E �E(�D0�D8�DP�
8A0A(B BBBH$�l/�p^�D�G FAmA�	m8/�@hL0md/��B�B�D �D(�D0y
(A ABBID
(A ABBA4�m�/�=B�E�D �A(�G0a(C ABB(�m�/��B�J�I@{
ABE4�m`0�fF�D�D �`
ABGYNB(n�0�IF�A�G �uCB<Hn�0��F�E�B �A(�D0�`
(A BBBG�n1�(E�[�n 1����(�n�1�|E�D�G@d
AAA0�n2��F�A�D �D0�
 AABF o�2��E�G0X
AK0@o43�|F�A�D �J`�
 AABA,to�4��F�G�A �G
ABH0�o�4��F�A�G �G@}
 AABA0�ol5��F�A�A �J0n
 AABA,p�5��A�C
H����H��
F,<ph8�A�C
B�I���H��
C,lpX9��A�C
H����H�C
ID�p�:��F�E�D �A(�G0a8b@]8A0a
(A ABBA,�p`;��B�D�D ��
ABD@q=��B�A�A �D0v
 AABFL
 AABA\Xq|=��B�B�A �A(�G���V�F�A��
(A ABBFD�U�F�A� zRx������(v��& �q�>�~E�h
CI
A�d��	((r�>��A�A�D }
AAAzRx� �� ��9$�r?�AQ�D�G `CAH�r(?��B�B�B �B(�D0�A8�G`�
8A0A(B BBBC5��ds�R��b�B�B �B(�A0�A8�D`�
8F0A(B BBBF�������P`�������5X��
H�s�Y�7B�B�I �B(�A0�A8�N��
8A0A(B BBBI$zRx��������,��Ht�]��B�B�B �B(�A0�A8�G�Y
8A0A(B BBBD$zRx��������,`��A�t�m�(�t�m��E�H�GP�
AADzRx�P�� 1��	Lu,n��F�B�B �A(�A0�Q
(D BBBIh
(D BBBF,Xu�n��
A�C
B�Q�����

A4�u\y�E�D0W
AG�
AK�
AKH�u4{��B�B�B �B(�A0�A8�D`�8A0A(B BBBxv�|�1B�E�E �E(�A0�D8�G@j
8A0A(B BBBGT
8C0A(E BBBEf8A0A(B BBBL�v�~��B�F�B �E(�A0�A8�J��
8A0A(B BBBF$zRx��������,.��
@w���B�B�B �B(�A0�A8�G���g�X�A�L
8A0A(B BBBG��E�b�B�,	�I�h�A���S�c�B���b�^�B���N�d�A���g�X�A���M�f�B���M�i�B�%�I�t�A���g�h�F�P�g�f�E�i�g�o�B�U�M�g�C���t�d�A�k�N�c�B�S�I�p�C��
�G�k�A���M�f�B�J�B�_�C�C�Q�a�B���N�p�A���H�u�B���_�i�A�g�M�f�B�Q�L�e�A�r�b�X�A���N�m�B���N�m�B�2�N�c�A�T�_�T�A���\�r�A�s�J�l�A���P�p�A���I�u�B��	
�P�E�B�a�A�.�I�x�C�"�\�m�E��
�E�E��O�r�A��
�B�E�L�n�B���B�\�A�$zRx��������,���c�z�:�L�z�:��F�F�B �B(�A0�D8�J��
8A0A(B BBBE$zRx��������,{��.�4{�I�lB�E�B �B(�A0�D8�G��
8A0A(B BBBK#�g�e�D�q�N�n�B���g�y�D�y�E�k�C���b�_�E���g�g�A�T�g�g�C�R�g�Y�A���b�V�A���g�n�B�N�g�l�B���N�j�E���M�_�A�	�N�l�C���N�j�B���g�h�C�E�g�`�F�U�g�i�H���g�l�B�l�g�V�B�\�|�f�T
B�F�B �B(�A0�A8�J�8
8A0A(B BBBFh�{�g�D�L8}�s��B�B�B �B(�A0�A8�D��
8A0A(B BBBI$zRx��������,��#@�}0u�+B�B�E �A(�D0�D`
0A(A BBBJ zRx�`�����(���
8@~�v�QL�D�D �Q
ABHPADK����|~w��B�B�E �E(�A0�D8�DP�
8A0A(B BBBCiXW`hXAPD
8A0A(B BBBI�
XK`M|
XK`IY
XW`HC
XK`Jo
XK`Fo
XK`Fo
XK`F{
XE`P�
XF`L�
XK`ELL�|�YB�E�E �B(�A0�D8�D��
8A0A(B BBBJ$zRx��������,2��"H��~�jB�F�B �E(�A0�D8�G`�
8A0A(B BBBD`$����B�B�B �E(�A0�D8�D`c
8A0A(B BBBG�
8F0A(B BBBF0��<���B�D�D �G0m
 AABA$������D�m
Gq
Gx8� ��vB�D�K �s
ABI�
FBAd �d���B�E�E �B(�A0�D8�G`�
8C0A(B BBBK|
8A0A(B BBBJ������WB�E�E �I(�D0�D8�GP�
8F0A(B BBBI]
8A0A(B BBBIb
8A0D(B BBBAI
8A0A(B BBBEL�x���	B�B�B �B(�A0�A8�G��
8A0A(B BBBF$zRx��������,���H�����B�B�B �B(�A0�A8�D`�
8D0A(B BBBA8����cB�E�D �D(�GpR
(A ABBB0����4D����kF�N�H �H(�D0u(D ABBP|����!O�I�H �I(�D0�A8�GP�
8A0A(B BBBB`������LЃԘ�VF�B�E �E(�D0�A8�G� 
8A0A(B BBBH$zRx��������,���\����p���^��`����\��L��X���F�F�B �B(�A0�A8�G�B
8A0A(B BBBKL�����gF�B�E �B(�A0�A8�G��
8A0A(B BBBKdL�����G�B�E �G(�D0�G@R0A(A BBBF�����H@�����j0A(A BBB(�� ���E�P�F@^
AAA0�����F�P�F �D@a
 AABA,�����E�P�F@a
AAAD�@���X����	l����	���������������
�����HІ����B�E�E �D(�A0�\
(C BBBJ(F BBB�H��0�T��D�P��(X�\���E�A�G k
DAC$����2E�A�G _DA �����E�G0_
AD4Ї����B�D�D �l
ABGqFB,�L���Q�L o
ACA
AFP�8����L����`����(t����}E�D�J F
DAB��$��.He(��<���E�G n
AE}
DO ���
E�E
Fm
C�����D }
Gv
B(�\��� <�H��*E�L
Gu
C$`�T���F C
GS
EZ
F�����Ou
D@(������A�D�G0l
AAF0ԉP���A�h
GK
EF
JF
RA����1H c
E,$����4E��
G
AQ
EF
M T����E��
KH
Hx�����E�t
G��\���H0�
N0�� ��@F�D�A �G0�
 AABI$�,��(J �
HZ
Fg�4����R
A8,�����F�B�A �C(�G@�
(A ABBG@h�����F�B�B �A(�A0�G@�
0A(A BBBH@��X��%B�B�B �D(�D0�G@�
0A(A BBBJ(�D���E�D�G@
AAF@�����F�D�D �G0
 CABE�
 FABF@`���eB�B�B �D(�D0�GP�
0A(A BBBEL�� ��B�B�B �E(�D0�D8�G�s
8A0A(B BBBI���VH���z
B�B�B �E(�D0�H8�G`�
8A0A(B BBBG8\��YE�A�G �
DAO)
AAE��,�z ����lE��
LH
H`Ѝ���B�B�B �E(�H0�D8�G`�
8G0D(B BBBLg
8D0A(B BBBD@4� ��F�B�E �D(�C0�DP�
0A(A BBBD@x�| ��F�B�E �D(�D0�D@�
0A(A BBBJH��(#��
F�B�B �B(�D0�A8�D`j
8A0A(B BBBGD��-��F�D�D �v
FBL�
DEF�
DEG8P�0��F�B�D �D(�G@k
(A ABBH0���5��F�D�D �G@k
 AABD@��t8��E�G �
AE�
AID
UG>
AE� <��H��<��F�B�B �E(�A0�D8�G`j
8A0A(B BBBALd�0E�F�B�B �B(�D0�A8�J��
8A0A(B BBBD$zRx��������,r��4��X��E�A�G0m
DAI�
DDIH(�\Z�.F�B�B �B(�D0�D8�G`k
8A0A(B BBBH8t�@b��F�A�A �j
DBH�
DEH8���c��B�B�D �D(�D@
(D ABBG$�Hf�YE�P�D zDA��f�(�|f�4<�xf��E�D�L0
AAJ`
AAFt��f�P���f��E�A�DP�
AAG�
DAL�
AAI�
AAEܒ8j��4j��@j�,�Lj��A�C
B�E�H����
E8H��n�RB�E�A �D(�D@h
(A ABBBH���o�uB�B�E �E(�A0�D8�G`�
8A0A(B BBBGH�s�bF�E�B �B(�A0�C8�D`M
8A0A(B BBBB4VE���80�x�+F�E�D �A(�F@s
(A ABBA l��x��E�G P
AC���y�	���y�RH0D
A0���y�E�W g
DIE
GLHG<��z�F�N�B �A(�A0�i	
(H BBBI4���0H���;E�^
Md�@��dE�^�����u �����E�j
QA
G��l��̕x��.L�����B�B�B �B(�A0�A8�G�p
8A0A(B BBBA0�4��qE�U
FP,P�����I�A�A �g
ABA$����GE�A�G tDA$��<��IA�K�I qAAЖd��7a�M
BF����AAM����=Ho
A0(�����F�K�A �DP�
 AABG(\�h���E�A�G h
DAF�����"E�XL����jB�B�A �A(�D`�
(A ABBAT
(A ABBF�0��aH0@
H �����A�G v
OKD4� ���F�B�L �G(�A0�D�a
0A(A BBBG zRx�������(T�������nA�A�G Ԙ���A�C
0�T���F�B�B �B(�A0�A8�D�$���)N�PB�@���5E�k\�8��!p�T��.E�d��h��%HV�����.Y�T(�����SE�G�D0Z
DAI$�Ț�\E�A�D LDA,����F�B�B �A(�A0�G� zRx�������(���|�x��EAD��l���E�s
A����IQ�i
FԚ ���,��>L�Q
CY�L��	D�H���F�B�E �K(�A0�D�J
0A(A BBBA����x����L������F�B�E �E(�K0�A8�D��
8A0A(B BBBH(Y�� �$��RE�G 
AA(�`��9F�D�C �Z
ABF@�t��LT�p��,F�E�E �B(�D0�A8�D�c
8A0A(B BBBH�(���0��<��GE�D�F R
FAHIHAD�X��F�E�B �D(�A0�D�f
0A(A BBBD�1��H���&\�8��4(p�d���M�F�A ��HI��(��OH�
J��\��cHVԝ���DQ�r����K��
A8�����F�B�A �A(�J�t
(A ABBBH����4\���`F�A�A �K
ABJ|AB4��0��gF�A�A �K
ABJCAB̞h��(�d��-E�F�D@k
AAD0�h��HE�D�F M
AAB_CA@����T����h����|��������������
��|��#HZ(���AF�A�G gAAI��L������E�E�E �D(�C0�k
(A BBBHI
(A BBBHxL���N�B�F �E(�A0�A8�D@s
8A0A(B BBBB[
8A0A(B BBBKp������H@������Ƞ���E�T����kH@]
A���KH }
A�8��.Kb4�P��HD f
FWT���� HQHl�����F�I�A �A(�G0a
(A ABBA_
(C ABBId������B�G�H �E(�H0�A8�D�r
8A0A(B BBBA�
8F0A(B BBBEL �$��2B�B�B �E(�D0�D8�G�w
8A0A(B BBBEp���&HZ��,��-Ka��D��E�H��L��#F�B�E �E(�A0�D8�DPP
8A0A(B BBBK �0���E�D0�
AA4(�����F�A�D �
ABCt
DBF`�d��	$t�`��/E�F�N IGA��h��
��d��AAK(̣h��3F�D�D �WDE ��|���E�D n
AH���HI@4� ���B�B�B �A(�A0�DP�
0A(A BBBJx����PE�{
A8����dF�B�A �D(�FP�
(A ABBIФ4��HO�<��AE�l
A�p��HI�x��5A�Z
E8����>OeP����NE�i
JJp���������:HZ
NI(����mA�D�F |
DADХT��*HW�l��*HW8�����B�E�D �D(�DPw
(A ABBH<�8��-P�T��9td����(E�b(�����RE�D�D h
DAF�����E�LȦ���+HV
H����$E�Y
AH�����B�B�E �E(�D0�A8�DP�
8A0A(B BBBA$L�X��6E�D�D cDAt�p��$��|��3E�D�D `DA4�����tF�A�A �s
FBEU
DBE����<H]
F���$A�^ ���6E�Z
QD@�4��9E�W
TD8`�T��OF�H�A ��
ABDg
CNH4��h��tF�D�D �o
FBKVDELԨ����F�B�B �E(�D0�A8�F��
8A0A(B BBBH�)Y���48�,��eF�I�M �b
ABGNHBp�d��9Hp4�����tF�D�D �o
FBKVDEH������B�D�B �J(�A0�A8�D@J
8D0A(B BBBA zRx�@������(���LD���?B�B�B �B(�A0�A8�F��
8A0A(B BBBD�*���8������B�E�A �D(�Gp�
(A ABBFL�0��B�E�E �E(�A0�A8�D�
8A0A(B BBBG�4�����B�B�B �B(�A0�A8�G��J�P�L�B�G�R�j
8A0A(B BBBD��G�D�B�B�I�]�$zRx��������,L��D������F�D�D �G0J8C@CHAPKXC`I0a
 AABAdD� ��2B�E�B �B(�A0�C8�G���N�G�A�K�D�R�n
8A0A(B BBBD�����'HP NȬ��$HK PX� ���B�H�E �E(�A0�D8�D���L�F�A�X
8A0A(B BBBJ0@�����B�D�D �D@�
 AABEzRx�@���$���H�����B�B�E �B(�D0�D8�Dp�
8A0A(B BBBAJX��@�|��"F�B�B �D(�A0�FP�
0A(A BBBG zRx�P�����(���A8��0��@F�B�A �D(�Fp�
(A ABBBL��4��-F�B�B �B(�D0�A8�F�P
8A0A(B BBBGx/����($���LF�L�C �sABP�$��/E�el�8��	 ��4��}E�D0�
AEzRx�0� Y��<ԯ`��zF�D�D �L@fHEPVHA@T
 AABA,�����E�GPbX\`KXAPn
AAzRx�P� ���t���`H@R
A8�����F�E�D �D(�L`Y
(A ABBA̰h��gL�V\����B�B�B �B(�A0�A8�G�y�G�S�A�f
8A0A(B BBBKHL�8��F�B�D �D(�G@I
(P ABBKW(A ABB������������'A�e\LU�� ���	H����B�B�E �B(�A0�H8�D@�
8A0A(B BBBGP�$�_H0Q
Al�h�3L�f����E�V����)Q�W����Բ��#E�]���&AAD���EAD(���UA�SHD��`B�E�D �A(�D0f
(G CBBLD(F ABB��$�#W��@�"��\�&,̳x��A�C
F���M���
G�������$���(8��L��1H
Bh�,
�3,|�X
��B�D�D �Y
ABJ4���
�oA�A�D v
CAHV
CAF��HPH����B�B�E �E(�F0�D8�DP�
8D0A(B BBBFHH����F�E�B �E(�A0�G8�D@r
8C0A(B BBBD���lH T
D<��d�7B�G�B �A(�A0�
(A BBBD\�d��B�I�B �A(�A0�V
(C BBBBB
(A BBBGD(A BBB<P����A�A�D R
CADD
LAOICA ��$�8E�Y
BF
J��@�0E�Q
R(жT��A�C�D k
DAH����	\����F�B�D �D(�D0H
(C ABBDc
(C ABBED
(G ABBEp�D�4E�W
L$��h�WE�D�D GAA,�����F�A�D �]
ABA8��^F�B�D �G(�D0a
(G DBBI0 �$�JE�G�G M
FAINDC<T�@��E�D�D b
CAED
DAODCADF���4����_E�D�G Y
FAHD
FAA ���|E�D`A
AE�� HS��r0���9\\H���/A�`
GF4h����A�A�G _
AAFCLA,��T�}E�a
JX
H\
LT
L(�XE�A�G m
FAO<�����F�B�B �A(�A0��
(A BBBD<�x�E�OX�|�HIp���pH R
Fl
D����dH0V
A��(�bA�D [A ̺x�OE�Q
JO
E4����B�D�C �R
ABB[AB(�,�8E�D mA$H�L��T�Y�s�F
Ap���	$����<E�Q
JO
IC(�����F�D�D �u
ABJ@ػ\�[F�D�D �a
FBIA
CBJCAB(�x�TE�D�G N
AAAH�����TXIh���E�O����9HR
G����	4����BF�D�D �U
ABJNAB(���>J�D�J XAAF��T����S�B�E �D(�D0�u
(A BBBBb
(A BBBGG�����8p�$��F�B�A �A(�D0o
(J ABBB��x�(��t�;E�C�G K
AAA���������(���<���:E�t$X���ME�A�G }AA������������
����<��F�B�B �A(�D0��
(C IBBE�d�
$�`�QE�b
I`D���HI\���#HZt���HI����EfP���HI���	п�9a�0�#E�]�D�7fP�l�HI0�t�	D�p�X�|�#E�]<t���sM�I�B �A(�A0��
(C GBBI���"�	��"���"���"�)E�c��"�$E�^(�#�:E�[
HQ$H�,#�:E�D�D gDA8p�D#�[F�E�E �D(�A0�{(D BBB(��h#�fF�D�H �PAB,��#�F�D�A ��
ABF,�|$��F�D�A ��
ABA88�<%��F�E�A �D(�F@�
(A ABBH0t��&��F�D�D �F0�
 AABA$���(�wE�G t
AGmA���(�(���(�5E�D�D0�
AAD$�*�GE�I�K kAA(8�,*��E�A�D �
AAAQ��(x��*��E�A�D �
AAATQص�(��+��E�A�D �
AAA�Q���(���+��E�A�D �
AAA�Q~��88��+�QF�B�A �D(�D@{
(A ABBF�A��\��-��F�B�A �A(�F0f
(I MBBH]
(I DEBGH
(D ABBA(���-�cF�D�D �QAB(��-�fF�D�D �TAB@�$.�.E�[
A@\�8.� F�A�D �G0�
 AABFm
 AABG@��/�HF�A�D �G0�
 DABG}
 GABA0�� 0�WE�I�D e
FABOFA�L0�E�Q<4�P0�PF�E�D �D(�D0I8H@^(D ABBt�`0� HP��h0�JAAY0���0�{F�D�A �D@Z
 AABAH���0��B�B�E �E(�D0�D8�D`t
8A0A(B BBBH(�l1�lL<��1�gF�B�B �A(�A0��
(F BBBA_
(H EBBE���2�4���2��E�D�D t
DAJQFM���3�$A�^0���3�VE�A�G p
DAFDDA4(��3�xF�D�C �
ABA]DB`�D4�(A�[0|�X4�VE�A�G p
DAFDDA0���4�VE�A�G p
DAFDDA0���4�VE�A�G p
DAFDDA0��4�VE�A�G p
DAFDDA0L�5�VE�A�G p
DAFDDA0��45�nE�A�G D
DAJDDA,��p5��F�D�A �M
ABE8���5��F�D�A �R
ABHA
CBJ4 �46�sE�A�D Q
DAH|
AAA0X�|6�~E�D�D U
AALDDA���6�8���6�BF�B�D �A(�D@�
(A ABBIl���4���7��E�D�D0l8[@F8A0W
AADH(�L8��F�B�D �D(�F0�
(D ABBGa(I HEBt��8�AAD ���8�OE�k
HN
A�� 9�)E�[
A��49�)E�[
A��H9�(4�d9�hF�D�C �l
ABD]DBd8��9�fB�B�B �B(�A0�A8�G�
8A0A(B BBBA
8A0A(B BBBG ���?��A�G �
AC(��0@�YE�A�G0�
AAE0��dA��F�A�D �D0�
 AABG $�0C��A�G0{
ADH��C�VE�c
Ad�D�HQ|�D�7E�[
HNL��8D�aF�E�A �A(�D0w
(D ABBGy
(F HDEHL��XG�B�B�A �A(�DPB
(A ABBF�
(A ABBA<�(M�E�V8X�,M��F�B�I �D(�D@
(A ABBH<���N��F�J�B �D(�A0��
(F BBBG<��0P��F�B�J �D(�A0��
(F BBBH<��Q��F�J�B �D(�A0�
(F BBBGHT� S�F�E�B �B(�A0�A8�GP	
8D0A(B BBBB<���T��F�B�A �A(�D��
(A ABBGH��DY��F�B�B �B(�D0�D8�F`�
8A0A(B BBBG8,��]�CF�E�A �A(�D@
(A ABBC0h��_�CF�A�A �D0
 AABD`���a��O�B�E �E(�D0�D8�GP
8A0A(B BBBKx������XP������8�Tf�PF�I�A ��
ABLN
DPNL<�hg�B�B�A �A(�D0�
(A ABBFk
(A ABBG8��8l�!F�I�A ��
ABIY
FGJ��,m�&0��Hm��F�F�A �J0�
 AABD��m�'E�a4,�n�KF�D�G �D(�F0d(F ABBd� n�$E�^8��4n�F�H�A �C(�G`8
(A ABBI8��p��F�E�D �A(�GP�
(A ABBD0���q��F�D�C �G@�
 AABD@,��r�kF�B�B �D(�C0�G`%
0A(A BBBK8p�v�`F�J�D �A(�F0f
(F ABBD4��8v�qF�C�C �b
FBJhFB���v�Aa�_(��v�FF�I�D �e
FBA,��v�1E�f
AHH��v��F�B�B �B(�A0�D8�Fp_
8A0A(B BBBH@��`x�wF�E�B �D(�A0�DP3
0A(A BBBG ���y�WE�L0
AAL���y��F�C�D �D0G
 FABGT
 DABMl GABHL�Xz��F�D�A �D(�D0y
(D ABBK\(D ABB���z�"E�\8���z��F�E�D �D(�DPe
(A ABBA(��D{�DE�C�G `
FAAH�h{�
F�E�B �B(�D0�C8�GP�
8A0A(B BBBCLh�,~��F�D�G �A(�F0z
(F ABBCw
(F ABBFL������F�D�G �A(�F0z
(F ABBCo
(F ABBFL���KF�E�D �C(�D@�
(F ABBGY
(F ABBD0X���F�G�C �G@�
 AABDL�����F�H�D �D(�D0n
(F ABBEf
(F ABBG0��x���F�G�C �G@W
 AABFL����F�H�D �D(�D0n
(F ABBEd
(F ABBI0`�����F�G�C �G@W
 AABF ��@��ZE�J |
FA��|��)E�[
A(������E�J L
FGL
FA ���OE�k
HN
A $� ��_E�J |
FAH�\��.E�[
A d�p��ZE�J |
FA�����)E�[
A�����*E�$��؎�nE�C�J TFA0�� ���F�I�A �F0t
 AABB(����GF�F�G �kFB D�����E�J@�
AF h�����E�L0^
AH4�����UF�I�A �]
FBKLFB4�� ��UF�I�A �]
FBKLFB��H��_E�l
A(����ZF�I�A �]
FBAD����?E�d
GNd���pE�J ZF$��0��~E�C�J0dFAL�����@F�D�B �A(�C0��
(F BBBDz
(A BBBG��x��E�Q�|��$E�^L4�����F�B�E �E(�D0�A8�G�#
8A0A(B BBBED�� ���F�A�A �d
ABAV
HEMA
GLED������F�A�A �d
ABAV
HEMA
GIEL�0���F�E�E �I(�A0��
(A BFBFA
(D EGDKLd����F�E�E �I(�A0��
(A BFBFA
(D EDDN������E����p��
��l����x��2����
$����
8����L����
`����t����
�����)H`�����1Hh��̟�1Hh����)H`����)H`�$��}E�w����E�O8����"E�\T����E�Op����"E�\�����"E�\��̠�YE�O��������E�P�������E�P$���E�P@���T���h���|������� ����zE�N ]
DA ��l��zE�N ]
DA��ȡ��ԡ�:Hq����(H_0���$D����F�I�A �A(�D@(l�����E�A�G �
FAK��l����x�� ��t���E�G �
AG(��@���E�S
Ha
GA
GD����$����@8�̤��F�D�A �@
DDMF
HEMFHE|�(��5E�SH��L��<F�B�E �B(�D0�D8�D`-
8A0A(B BBBF��@��1Hd��h��'A�Y�|��!E�[4����!E�[P����Hd�����F�B�E �B(�D0�A8�D`D
8A0A(B BBBJH��$���F�B�D �D(�N0m
(D ABBDv
(D ABBIH������F�B�D �D(�N0r
(D ABBGb
(D ABBE0H�����F�D�A �G@�
 AABH|����0Hg �����aE�L I
AAH����F�B�B �E(�A0�D8�DP�
8A0A(B BBBA0���gB�D�D �M0O
 IABN8���'E�a(T�0��7F�D�D �eAB8��D���F�I�A �D(�D@

(A ABBE(��ȭ��A�D�D0�
AAB��l��8D[
A8�����F�B�E �A(�A0�r(D BBB@���8D[
A\���6E�G eD|�(��E�Q��,��8D[
AH��P���F�B�B �B(�D0�A8�I@�
8I0A(B BBBE(���pA�A�G ~
DAD0,�(��
F�D�A �D0D
 AABIzRx�0���$i����а�8D[
A$����ZE�D�D JAAl��,���F�B�B �A(�A0�G@d
0D(A BBBF�
0D(A BBBFD
0G(D BBBKH�\��	0\�X��>A�D�D V
AAGSAA��d��HI��l��1E�^
ED(������E�D�G0�
AAA0�����F�G�A �F0Z
 AABF(�l��7E�Y
AHD����B�B�B �B(�A0�D8�DP�
8A0A(B BBBAL��T��mB�E�E �E(�K0�I8�G@kHBPI8A0A(B BBB��t��ZE�D
G����HIH�����F�E�D �C(�D0`
(D ABBAh(D ABB,d�0��_E�M�G x(B0IAAH��`���I�B�B �A(�C0�r8K@Y8D0L
(A BBBAP�����F�B�E �B(�A0�D8�FPqXJ`R8A0A(B BBBGP,4�����F�A�A �U
ABH d����E�D0s
AA,��|��uF�D�A �K0Z AAB(��̸�
F�A�D �]
ABE�����`H
A$���KA�D�G uDAL(���XF�E�D �A(�D@�
(D ABBFO
(G ABBE(x�,���E�D�D u
DAAL�����B�E�B �B(�D0�D8�D��
8A0A(B BBBB0�����F�D�D �F@�
 AABB(�l��9E�S0D����F�D�D �K0\
 AABA0x�ܾ�F�D�D �K0\
 AABA@��(��*F�B�E �D(�K0�DP�
0A(A BBBJ����o�p��HN�x��HK4����EE�c
E(P�����E�D�GPx
AAF|�H��HE�\
O0��|���F�D�A �GPs
 AABG��(��HE�\
O��\��HE�\
O����HE�\
O ����HE�\
O(<�����E�A�D0_
AAA h�\��}E�G0J
AI,������E�F
M�����,
D����
����
@�����F�E�E �A(�D0�FPf
0A(A BBBG((�����E�A�N0�
AAE(T�0���E�A�N0�
AAE ������A�N P
FKL��P���F�B�E �D(�D0�s
(A BBBAg
(A BBBB�����,E�T
GK����<E�l
GC4����EE�a
JT8T�����B�D�D �D@OHGPL AABD@L������F�B�B �A(�D0��
(A BBBFU
(A BBBL(��$��SE�A�G h
DAA@�X��iB�H�F �A(�D0�FP�
0A(A BBBGP����HLh����HL(�����bE�A�G w
DAA(�����jE�A�G 
DAA@�����F�I�B �A(�A0�GP�
0A(A BBBG@�����B�B�E �D(�D0�GP�
0A(A BBBD``�4���F�I�B �D(�C0��
(D BBBHI
(H EDBL�
(H EDBLH������F�B�B �B(�A0�C8�Dp_
8A0A(B BBBC@�D��AF�B�B �A(�A0�GP�
0A(A BBBHHT�P��.F�B�E �B(�A0�A8�D`t
8A0A(B BBBAH��4��[F�B�H �E(�A0�A8�D` 
8A0A(B BBBKh��H���F�B�E �E(�D0�D8�G@k
8P0A(B BBBKIHBPI8A0A(B BBBB@X����\l�����F�E�B �B(�A0�D8�FPs
8L0D(B BBBKy8A0A(B BBB4�h���F�A�A �
KEIV
HEM����$����oE�G k
AHmA0@�$��nE�G�D r
DAIXDAdt�`���F�E�E �E(�D0�D8�G@X
8S0A(B BBBHzHBPI8A0A(B BBB0�����F�A�D �F0�
 AABKT����F�E�E �E(�D0�D8�IPEXB`UXAPT
8D0A(B BBBD<h�����E�D�G n
CAFq
CAC`CA@��l��F�B�B �A(�A0�D@�
0A(A BBBK�8�bHU���
 ���4���H�|�\�x�p�t���p���|�<��x��B�B�E �D(�D0�N
(A BBBJ8���ZB�E�E �I(�F0�g(A GIB(���0<���^B�D�D �G0C
 AABA(p�$��A�C�G0�
AAH��������1E�]
FD���
(���=F�A�D �nAB8����F�D�D �S
CBJA
FBG0L���ZF�A�A �D0�
 AABA����dH m
K0����F�A�D �F0d
 DABD�d�4HY
GG���HO0����B�D�D �G0�
 AABH(<�H�~A�D�G@~
AADh����|�X�a(����PE�A�D t
DAA����=E�_
DT4����E�D�D Y
DAEs
DAH�C �,(�< �AL�D�C �fABD���8X�\ ��B�M�I �K(�G�{
(A ABBA0��� ��B�A�A �G��
 AABC��!�]Hs
E\4��!��B�E�D �A(�G0f(D ABB8 �4"��I�G�B �D(�K0�X(A BBB\��"�IE�w
A8x��"��F�A�A ��
ABDP
DBJ ��$��E�W
LU
K@��$�wF�B�E �D(�C0�G@
0A(A BBBH��%�0�&�0D�&�F�D�C �J��
 AABA0x��&�F�D�C �J��
 AABA ��P{��E�J��AH��'��F�B�B �E(�D0�C8�Dp-
8A0A(B BBBGD��{�AH0�D)��F�B�B �E(�D0�A8�Fp5
8A0A(B BBBG���{�AL��t+�fF�B�B �E(�D0�A8�F�|
8A0A(B BBBHH��{�WH��-��F�B�E �E(�A0�A8�F`N
8A0A(B BBBFX��{�A(T0��E�D�J��
AAA ��0�E�J��
AD��1��K��
A(�d2��E�D�J��
AAE��3�9{��E�D�G�, �3�F�E�E �D(�D0�G� zRx�������(�{���4�[F�D�A �T�h{���4��E�O�L 4��5�fF�D�D �s
ABLRAB�5�[M�G�L ���z�4H�5�3\6�)HN
JD|(6�+�D6�JtR�|6�1 ��6�VE�M }
AA$��6�,E�G�G IGD$�6�6E�D�D0fAA07��A�H�7��HE
C��y�x<8��EADL��y���8�DE�q
A��8�5A�D�D  ��8�ZHi
ON
BI9��E�M�$�9��E�M�(@�:�5M�D�D �XABDl�:��F�E�E �E(�D0�D8�D@T8D0A(B BBB4��:�}F�E�D �D(�D0\(D ABB8�8;��F�I�A �A(�D0�(A ABB(�C��E�M�DpD�&E�\�D��EAG� xE��E�\
Gf
B��E�<E�v��E�'HX(�F��E�D�G0f
AAHD��F�F�I�B �A(�A0�G�M
0A(A BBBADPI�	8XLI��K�A�G �U
CBCDFBD��� ��I�A�G �
AA8��J��F�B�A �A(�G��
(A ABBF zRx������(Yv�,�L�*E�`HM�\M�+E�Dt M��F�B�E �A(�D0�I�E
0A(A BBBH ��P�mE�[
Hh
E��P�<H[
A@�Q�F�B�E �A(�C0�G`�
0A(A BBBC<�Cu�x@T�S�uF�E�B �D(�D0�G@�
0A(A BBBD�W�<H[
A�0W��E�J���W��E�D�J��tX�2EAD	�X��E�J�zRx��� �t�*X	Y�)H `p	4Y�$E�Z�	HY�"A�\(�}t��	HY�5A�f
EX�lt�5�	XY�EAD
\Y�EAD$
`Y�EAD@
dY�EAD\
hY�cE�F0�Zt�I�
�Y�(E�D�G �
�Y�+E�G�D �
�Y�+E�G�D �
�Y�-E�I�D �Y�-E�I�D 0,�Y��F�A�A �J��
 AABA8`�Z��F�B�A �D(�J��
(A ABBG0��[��F�D�D �I�
 AABF�D\�BE�G�D �t\�%EAK�\��E�G�G�$,8]�9F�B�A �A(�G0TP^�9th|^�|�^���^�9t��^�B
H5
��h��i�{�li�%��i�NHd
LI
G
�i�E�L,8
�i�_B�A�A �G@O AABh
�i�G��
E�
�j�SkV
GF�
 k�,HS
EG�
0k�foW
JI�
�k�DQ4�
�k��A�D�G z
NAKD
AAJ4l�KE�EPDl�	d@l�	Hx<l��F�B�E �E(�A0�A8�GP
8A0A(B BBBAH��m��F�B�E �E(�A0�A8�GP
8A0A(B BBBAH�n��F�B�E �E(�A0�A8�GP
8A0A(B BBBA,\8p��F�H�A �D
GKK��p�VA�l
_H��p��F�E�D �C(�D0k
(D ABBFD(I ABB$�@q�\E�A�D LDAxq�KE�E8�q�*HR
FIX�q�	Hl�q��B�B�B �B(�D0�A8�G`T
8A0A(B BBBFH�<s�PB�B�E �E(�A0�A8�G`W
8A0A(B BBBH@u�>^lu�AAD4pu�/4H�u�^M�A�A �W
ABO^AB��u�2D\
HIH��u��F�B�B �E(�A0�A8�G`�
8D0A(B BBBC,�xz�0F�D�H ��
CBK4x{�_A�A�G0�
AAGy
AAE8T�|�;B�D�A �^
ABHZ
ABC4��}��B�A�A �G�s
 AABAzRx�����$�k�0����B�B�B �E(�D0�C8�DP0���^Hj
N(LȄ�hE�I�G z
AAGx��TE�N�P���\��@K�~
G����jS Ti Y�І�0H g����H@
H���^HR
FQ
O8܇�IEAD T���F�G�A �t��eE�D�G �0���F�G�A ����IEAD �4��%EAH�H��0D���F�B�B �E(�D0�A8�D����i�	$H���F�B�A �D(�FPpt��EAD�h��+EAG`�+i��h��)H]����BE�d
A�������̌�)HM
A 4��;E�G��
ADX����K��
At�������>K��
D,�����E�A�G�>
AAC�L��2Hi�t��.He(����A�D�D0u
AAH|4@��"B�B�B �B(�D0�D8�GP�
8A0A(B BBBBx
8I0H(B BBBO�
8M0A(B BBBL`���B�E�E �E(�D0�A8�G`V
8A0A(B BBBC�8G0D(E BBBL����F�B�B �B(�A0�A8�D�
8A0A(B BBBGh���K�%
H�̡�CHM
A8����B�D�D ��
ABBH
ABE��f�,����_F�A�G�
ABF($���(B�A�G��
ABI P����A�G��
AFtp��BL�j�be�
<�����B�G�A �D(�G��
(A ABBE�������EAD0���F�A�D �D0\
 AABA$H\��XE�A�D KAAdp���(F�B�B �B(�A0�D8�GP;
8A0A(B BBBK�
8A0A(B BBBA�\�� KT�d��FKi
E(����E�D�G Z
DAA88���F�E�D �A(�D0T
(D ABBGt���DL�L
HU4���]F�E�D �D(�D0{(A ABB8���\M�E�E �D(�D0�q(A BBB,��E�L$0��E�R@4��T@��hL��LE�X
C,����E�O�K �AA�p��
(�l��@I�F�J �\AB$����VA�D�D GDA���0IJ�HTH̲� HU`Բ�'KYx��'KY���,���zB�D�D �X
ABK �`���E�G�b
AA �̳��E�G�b
AA 8���E�G�b
AA@��� HUX���HO(p����A�D�G f
DAIL�8���F�I�E �A(�A0�^
(D BBBBi(H EDB(�����E�D�G�r
AAD8L��'F�B�G �A(�D@�
(A ABBBT@��HNlH��HO8�P���F�E�D �A(�I0P
(F ABBA(����WE�A�J o
FAA�ظ�HO ��HP ��HP(4 ���B�B�B �D(�A0�` ���	0t ���_F�D�D �DP�
 AABE� ���� ���� ���� ���HO� ���VR�@A�!��AAK4!��1HX
LP!��1HX
Ll!8��1HX
L�!\��>Hp
A�!���>Hp
A�!���>Hp
A�!Ȼ�>Hp
A�!��>Hp
A"��.H]
D0"$��>Hp
AL"H��1A�f
Eh"l��=Ho
A�"���=Ho
A�"���>Hp
A�"ؼ�/H]
E�"��/H]
E�"��/H]
E#��:HY
T,#8��IHY
cH#l��+HX
Fd#���+HX
F�#���;Hc
K�#���+HX
F�#̽�9HX
T�#��HHX
c�#$��5E�f
E$$H��^Hr
FI
GD
E4$���NHm
KD
ET$���NHm
KD
Et$��NHm
KD
E�$��NHm
KD
E�$@��NHm
KD
E�$p��FHl
DD
E�$���w%��*HX
E4$% ���F�A�D �^
DBAz
AEP$\%����E�A�G �DA�%��>E�\
E(�%4���E�D�D@t
AAE �%��UE�]
NS
F�%��AAN,&���A�C
B�N����?
E<&���7Hc
G4X&����E�K�D `
FAEY
AAE4�&D��E�H�G m
FAHY
AAE4�&���E�H�G m
FAHY
AAE4'����E�K�D `
FAEY
AAE48'<���E�H�G m
FAHl
AAB4p'����E�H�G m
FAHl
AAB�'���4U(�'���E�A�G��
AAA,�'���]B�D�A �B
ABD (����E�G ]
AF(<(X���F�A�D �m
DBJh(���HI�(���	H�(���fB�B�B �B(�D0�A8�D`�
8A0A(B BBBE�(��.V�(0��0),���B�G�A �D0o
 AABA<)���P)���0d)���B�M�I �DP~
 AABB�)l��iK�X
A�)���UK�D
A(�)���E�D�N��
AAA �)����E�G�Z
AA  *4���E�G�W
AA D*����E�G�T
AA h*,���E�M�z
AA�*���aK�P
A�*���aK�P
A�*P��aK�P
A�*���iK�X
A�*���iK�X
A+L��iK�X
A4+���iK�X
AP+���lK�K
J l+H��lE�J�H
AH �+����E�G�^
AE�+ ���K�_
F�+���^K�M
A�+���iK�X
A,,��|K�J
K$,���|K�J
K,@,���0E�A�J�
AAA p,����E�D@�
AG �,����E�DP�
AJ�,l���HP�
A,�,@���A�C
B�G��I�H�
C-���(-����A�A�Dp�
AAAD-`��X-\��0l-X���F�A�A �D0u
 AABA0�-����F�A�A �D0u
 AABA(�-0��pE�A�F0O
AAA(.t���E�A�D@�
AAA(,.���E�A�D@�
AAA X.����E�G��
AA |.X���E�G��
AA(�.����A�C�DPu
AAA�.X��&HQ�.p��&HQ�.���&HQ(/����A�C�DPu
AAA@/��&HQX/��&HQp/4��&HQ<�/L��aF�B�A �A(�G�
(A ABBJ(�/|���E�P�G��
AAK$�/���E�J�G ~DA(0x���E�A�G��
AAA(H0���E�A�G�^
AAA t0p���E�G��
AA �0���E�G��
AK@�0���IF�B�B �A(�A0�G`
0A(A BBBA1���E�L(1���EF�A�A �yABH1���8\1����F�B�A �A(�D0d
(D ABBE\�1L���B�B�E �B(�A0�A8�J��
8A0A(B BBBG
�Q�Z�A�|�1|���B�B�B �E(�A0�A8�D�T�K�W�B�V�M�T�A�Q�K�Q�A��
8A0A(B BBBGDx2����B�B�E �D(�A0�J�B
0A(A BBBF(�2���E�A�D@t
AAA(�28���E�A�D@t
AAA3���<,3����F�E�B �A(�E0�o
(D BBBD4l3(���E�A�N N
GAF~
DAE(�3���4F�G�D �UDE�3���H�3���xF�B�E �B(�D0�D8�D`f
8D0A(B BBBBL04���F�B�B �B(�A0�A8�D�^
8A0A(B BBBF<�4D���F�A�A �D0�
 DABDe GAB�4�ME�G A�44�H�40�F�B�E �B(�D0�A8�G@�
8D0A(B BBBA @5��E�G0�
AKd5��x5��
H�5���F�E�E �B(�A0�A8�Gp�
8D0A(B BBBG(�5�	�vE�A�G [
DAC6P
�+f6l
�	(,6h
�^E�I�I x
DAD(X6�
�~E�A�G ^
DAH�6�
�+f�6�	�6�%A�_�6�7KeL�6D�pF�B�B �B(�A0�A8�G��
8A0A(B BBBG 07d
��E�N�{
AA$T7�
�?E�J�D gCAL|7�
�F�B�B �E(�A0�D8�D�4
8A0A(B BBBJ$�70G�)E�D�K HGA0�7��F�A�A �DPs
 AABE(8�F�E�U<D8P��F�I�A �A(�D0�(C OBB�8!���8�!��8�!��8�!��8�!��8�!��8�!�:9�!�$9"�89"�&L9("�0`9D"�0t9`"�EAD�9d"�2Hi �9�"�B�A�A �J��9x#�FA�X
Ge�9�#�fQN:$�:$�+E�a 4: $��A�G��
AGX:�$��lY(�D�(�:0%��E�D�G0L
AAB0�:�%�F�D�A �D0f
 AABA$�: &�VU_
L�
G`;X+�HVd$;`+��B�B�B �E(�D0�A8�J@�
8A0A(B BBBF�
8F0A(B BBBBH�;�0�mB�L�B �B(�A0�D8�FP�
8D0A(B BBBJD�;�1�F�B�B �A(�A0�G�^
0A(A BBBA$ <�4�9A�G�D gDA��C�#@\<�4�B�E�E �D(�C0�DPG
0A(A BBBJ�<�6�HN�<�6�AHl
DD �<�6�zE�K0c
AA �<7�zE�K0c
AA$ =t7�GE�H�G mDA$H=�7�GE�H�G mDA$p=�7�GE�H�G mDA0�=�7��F�A�A �G@�
 AABH0�=X9��K�E�G �P0P CABC���>�9��\>P:��B�B�B �B(�A0�A8�D@l
8A0A(B BBBD�8A0A(B BBBt>�:�#E�]`�>�:��B�E�E �E(�D0�C8�F@|
8A0A(B BBBDi
8A0A(B BBBE�>�;�0Hg8?�;�-F�E�A �A(�D@

(A ABBGH?�=�Y\?�=�Tp?4>�E�?p>�D�?�>�S�?�>�3�?$?���?�?�)(�?�?��A�A�D�X
AAHzRx����$G?�	H@L@�9lI`@t@�GtOx@�@�UDe
G�@�@�<A�W
A�@A�iLI�@lA�
,�@hA��A�A�J��
AAAAC�QWa
A(ALC��H X
H^ HA�C�hE�x
CG
EDlAD��}�B�G �C(�G0(I� H�B�B�T0�����A�D�0AAUT�A�D�B�B�E �E(�A0�A8�D`~
8A0A(B BBBDhRpWhC`(B\G�3H<B�G�R
F�E�H �B(�A0�A8�D@�
8C0A(B BBBC���<��B�Q�IHh
HH�B�Q��F�B�B �B(�A0�A8�DP�8A0A(B BBBCpU�QWa
AL C�U��B�B�B �B(�A0�A8�G�i
8A0A(B BBBD,pC4W��F�A�K �]
AFJ �C�W�jj�OG�C�0�CY�=E�D�G P
CADPCA0�CY�=E�D�G P
CADPCA(,DY��A�A�N0o
AAAXD|Y�$H[pD�Y�HV�D�Y�,E�R
IK�D�Y�,E�R
IK(�D�Y�eE�G�G@o
AAD4�DZ�jA�D�G f
GAFD
IHK8,E8Z��F�E�D �A(�D0u
(C ABBG hE�Z��G�Z
GU�EX[�KHB�E�[�.�E�[�+0�E�[�B�A�D �D0�
 EABB�^�9�F�^� (F�^����X
AD�(LFh`��A�G�D@\
AAFHxF�`�^B�B�B �B(�A0�A8�Dp&
8A0A(B BBBB(�Fb�0B�D�C �cAB$�Fb�,E�H�I SAA8Gb��P�A�A �i
ABB�
ABB4TG�c�8c�A�A �=ABK���H ���H�G�e��F�E�B �B(�D0�D8�Dp�
8A0A(B BBBHH�G|l�B�B�B �B(�A0�A8�D`�
8A0A(B BBBE<
�7�/ 8Ho��A�YP�
AG�z7�8pH�p�(H_�H�p�E�U�H�p�?�H�p�.�Hq�	 �Hq��E�G 
ADI�q�$I|q�.E�D�G QGA(@I�q��E�A�D0J
AAJlI(r���I�r�s�Is��Is�#�I(s�3�ITs�7�I�s�D�I�s�1J�s�1 Jt�54J@t�5HJlt�@\J�t�$pJ�t���D�n
AE�J�u���Jxv�J�J�v�+,�J�v��N�D�D ��
ABG(K�y��O�D�J �
AAB���4�4DK�z��M�F�C �k
ABLiAB<|K({�I�B�J �A(�A0�<
(A BBBF$�K���E�_
D]
KD�K����K���%(L����E�G h
CI`
CE 8L��eE�l
GV
B\LX��:k�NxL|��:k�N�L���od�A�D ��L��\c�D�G �L0��2E�l�LT�� M`��Ml��<H]
KG8M���LM���=gKdM���0xM܏�	�M؏��M��0�Mh2��E�A�A ,�M��A�G o
AHf
AIzRx� � �2�p4N���O�H�E �G(�H0�I
(A BBBEA
(H BBBII
(D EBBJA(D BBB<�N,���A�A�G �
GAHT
AABKDA���1��N���4,O��AG�D�D �dABJ���0@O���B�C�A �G��
 AABAtO���6�O���=�Oؓ��O��3WN$�O��OE�D�G zCA�O4��3ZQ�P\���B�B�B �D(�D0��
(A BBBC
(D BBBJd
(A BBBED
(A BBBED
(A BBBE5
(D BBBI
(A BBBKf
(A BBBC|
(A BBBMp
(A BBBELL0��(Q���E�A�D@p
AAAH4Q����F�B�B �B(�A0�A8�DP�
8C0A(B BBBF<�Q��sK�I�D �D(�G0@(C ABBE����$�QT��LE�D�G wCA�Q|��1�Q���
8R����F�B�A �A(�D0Y
(A ABBC8LR���F�B�A �A(�D0a
(A ABBK�R���|WTM�R���W]L�Rt���H�R���B�B�D �D(�D06
(A ABBD�(K ABB( S����E�A�DPt
AAA(LS����E�D�G }
CAG(xSl���E�D�G G
CAE`�S0���L�E�H �M(�A0��
(A BBBH�
(G BBBKA
(L BBBMT���MT���80Tt���F�B�D �D(�J�{
(A ABBE zRx������(K-��T��1Dc
Ex/ -��T-�EAAH�T��GB�B�B �B(�K0�D8�Dp
8A0A(B BBBBd��,�/8PU��pF�E�D �A(�D0P
(A ABBA�O�,� �U��LE�J I
AA�a,�4�U���A�A�D b
AAF\
AAAHV���B�B�B �B(�A0�A8�GPx
8A0A(B BBBE4\V���OB�E�D �D(�D0u(A ABB$�V���E�M�D �AAl�n+��V���D�V���H�
H�1/+�+LW����B�I�B �B(�A0�K8�I�d
8A0A(B BBBF��*�xW��PH B
A�WP���WL��(EAD�W`��(�W\��@F�A�A �0AB�k*�dX\��B�B�B �B(�A0�A8�D��

8C0A(B BBBH�
8A0D(B BBBE���)�C4�X��tA�A�K �
AAE�
GAI|��)�H�X4��&B�B�I �B(�A0�A8�G@H
8D0A(B BBBKL,Y���	B�B�B �B(�A0�A8�D�j
8A0A(B BBBF��I)�4�Y����A�A�G G
AANfAA8�Y���B�E�D �A(�GP^
(A ABBIZ���# Z����E�D@�
AE<Z���BE�`
SXZ���lZ���	@�Z����B�B�E �D(�C0�G`�
0A(A BBBG$�Z ��EA�G Q
DKTD�ZH��[T��HN([\���A�A�D@o
AAID[���RQ�r
�MAd[��HO|[��WL�{
IF�[H��^P�M$�[����f�CG�`�I�(�[D��3B�A�G �TLD\X�� \d��4\p��#MNHL\���SF�B�L �B(�G0�A8�Dp�
8A0A(B BBBG��@&�(�\���B�L�A �w
ABG�\���Bc�\��di �4�%�0]`���F�D�A �D0^
 DABD�u�%�\\]���B�B�E �D(�A0�V
(A BBBEd
(A BBBEA(D BBB�]���Hi�]���mr �5%�H�],���B�E�E �E(�D0�D8�G�A
8A0A(B BBBE���$� X^|���H@�
F[
E |^(���H@�
HW
NH�^����B�E�E �E(�A0�D8�G��
8D0A(B BBBFT�&$�$_d��~H@�
Ae
Ka
E (_���!H@�
H_
E L_���H@�
J[
E p_���H@�
Bd
E �_���8H@�
DW
J$�_���DH@�
D_
I[
E�_���HK@�_���/F�B�B �A(�D0�DPQ
0A(A BBBD<`��gP`D��	d`@��	@x`<��PF�E�E �D(�A0�D`
0A(A BBBH�`H��/W�`d��,0�`���F�D�A �F0�
 AABJ@a\��F�B�B �A(�A0�D`�
0A(A BBBDX��!�xpa��B�aP���Hk
EX<"��a�����a����F�E�B �E(�D0�D8�GP~
8D0A(B BBBD:XK`BhApLP3XE`AhIpBxA�PP�XH`\XAPDZk!�`b��nK�]
A@|b��F�G�L �J�_�G�a�A�Z
 AABA4�bd��F�H�A �;
ABCDAB�b�
�	(c�
�3F�I�D �ZCB$8c�
�DE�I�D oAA`c�	,tc�qI�G�A �P
DBEP
, �@�c<��F�E�D �A(�D0Q
8L@OD
(D ABBE ^��d��	$d��	$8d|�2E�F�D ]DA$`d��2E�F�D ]DA(�d��dF�M�A �LAB@�d���F�E�D �A(�D0Q
8L@OD
(I ABBE_��e8� e4�,4e0�qF�D�G �P
DBE{�xel��eh�H�ed��F�E�D �A(�D0{
(C ABBIw(F ABB<�e���F�A�F �P
ABHX
ABE<,f(�1B�B�B �A(�D0��
(A BBBJLlf(��B�B�B �B(�A0�A8�D�
8A0A(B BBBD�f��
�f��.OU�f���f��
g��1$g��.8g��	Lg��8`g�
tg��g�1(�g8�NE�D�G l
CAH�g\��gh��gd�,h��h|�
,hx�>@h��Th��TA�k
Dcth��AAK�h��"]�h�"](�h,�@E�A�D l
CAA�h@�"EAKiT�DXi\�Wq�e4i��ONLi��DNHdi��xB�B�B �B(�A0�A8�D@R
8D0A(B BBBCL�i���B�E�D �A(�D0�
(D ABBJT
(D ABBCj�@D�X
D_ j4�1l4j`�HKLjh�HNdjp�VH0H
A�j��VH0H
A �j��eE�G0R
AA(�jD�}E�D�G@|
AAB(�j��yE�A�D@b
AAAk��JH0|
A84k �$F�D�A �c
ABG�
ABK8pk�DF�E�A �A(�D0
(D ABBK�k(�/E�i �k<�uE�G b
AA�k��HSl��E�V4 l��KF�G�G �S
CBDWABXl��HR4pl��KF�G�D �S
CBGWAB�l��+E�e$�l��4E�G�G \CA0�l�\E�A�D x
FAGDFA$ m4�4A�D�G bDA(HmL�`B�A�A �XABtm���m|�&F�L�$�m��YA�A�D MDA�m��4�m���F�B�A �A(�D0v(D ABBHn��F�E�A �A(�D0�
(D ABBEL(D DBBTdn���F�B�B �A(�A0�D@�
0A(A BBBDL0F(A BBBH�n(��F�E�B �A(�A0��
(D EBBJI(F BBB$o��6E�M�N IGA0o��8Do��F�G�B �A(�A0��(D BBB�o��@v�o��PH0B
A0�o$ ��B�A�A �D@x
 AABD�o�!��o�!�p�!�, p�!��F�D�A �]
CBCPpD"�5dpp"�+0xp�"�^I�A�G kAAB��F ���p�"�qy�S��p#�HK�p$#��H0\
D�p�#�(A�[Hq�#��F�B�D �A(�D0[
(D ABBKD(D ABB,dq $��B�D�D �c
IBH�q�$�BH s�q�$�TH K�q %�%@�q<%�wF�B�B �A(�C0�D@�
0A(A BBBIHrx&��F�B�D �A(�D0[
(D ABBKD(D ABB@hr�&��F�E�B �A(�A0�DPt
0A(A BBBA�rH(�Q�r�(�(A�[H�r�(��F�B�E �B(�A0�A8�DP�
8F0A(B BBBG(s*�qJV
`,Dsp*�|F�A�A �I0c DAB(ts�*�IF�D�A �zAB0�s�*�DE�D�G [
CAAOCA(�s+��I�I oAF�H �A8tt+��B�B�A �A(�D0�
(D ABBD8<t8,��B�A�A �Y
ABHh
ABExt�,�	�t�,�8d S(�t�,��E�D�D0Q
AAH(�t4-�cA�D�J j
GAE8�tx-��F�D�D �I
ABF^
ABA$8u�-�1E�D�G [DA4`u.�{F�D�F �i
ABD^
ABA(�uL.�;B�E�J �bAB�u`.��H ^
J�u/�MH S
E(�u80�fE�D�G@L
CAAD(v|0��R�D�D �G0�
 AABJ�
 G�A�B�N@pv42�6F�B�B �A(�A0�F@y
0A(A BBBE�v03�=HZ
N(�vT3��E�D�G0m
AAAH�v�3��B�B�B �B(�D0�D8�J`�
8A0A(B BBBFlHw\7�sB�B�E �A(�D0�G@�
0F(A BBBAR
0F(A BBBA7
0C(A BBBG�wl9�IH`
HX�w�9�GH\
\�w�9�}H S
Ex4;�
$x0;�8x<;�	Lx8;�	`x4;�@tx0;��R�A�D r
AAEX��H ��DA�A��x�;�mH0G
A�x<�`H0G
A�xD<�!$y`<��E�s
Hl
DX<,y�<��E�D�D p
DAFi
DAJQFM0ly�=��F�D�D �G@j
 AABEL�y�=��F�B�A �A(�G0�
(D ABBDw
(D ABBH$�yd?��E�s
He
KX@z�?��E�A�G Y
AAHP
FAID
AAJ@\zH@��E�A�G Y
AAHP
FAID
AAJ$�z�@��E�s
He
KX$�z,A�zE�t
GU
KY0�z�A�"F�A�D �G`�
 AABG${�B�SH0E
A(@{�B�E�A�D@�
AAGzRx�@�� \�8�{xC��F�A�A �Q
ABD�
ABB�{D�RH0D
A4�{PD��E�A�G `
FADw
DAD$,|�D�tE�k
HS
EXT|E�9E�a
JDt| E�9E�a
JD�|@E�SH0E
A(�|�E�sE�K�N@M
AAA�|�E�6I�]J�(�|�E��E�D�D0`
AAA($}pF�yI�A�L FDAG��(P}�F�RE�A�G p
DAF0|}�F��F�A�A �D0k
 AABE$�}TH�[E�A�G HDA �}�H��E�[0u
AJ �}(I��E�[0u
AJ  ~�I��E�[0x
AG D~`J��E�[0x
AG8h~�J��F�B�E �A(�D0�|(D BBB�~`K�.L�aX�~tK�MF�B�A �D(�D@}
(A ABBDm
(A ABBE�(F HDE�{��00TL�}E�G j
AIm
ABDD$d�L�bE�G ^
AEpA0��L�}E�G j
AIm
ABDD0�4M�\E�D�D _
DAG^DA(�`M�JA�A�G p
DAB$ ��M�NE�g
DG
QA(H��M�RE�A�G p
DAF0t��M�\E�A�G0h
AAIYAA��N�>Hk
A$Ā0N�*E�D�I IIA�8N��DN�	,�@N��F�A�D ��
ABFD��O�E�LH`��O�dF�E�D �D(�G0W
(A ABBIP(G DBB ���O��A�G`|
AK8Ё�P��F�E�D �A(�G0q
(D ABBG0�8Q�uF�D�D �G@D
 AABC0@��Q�uF�D�D �G@D
 AABC4t��Q�~B�B�A �A(�D0j(D ABB��R�)E�U
FD̂(R�	�$R�HI��,R�HI@�4R�-F�B�B �A(�A0�G`�
0A(A BBBE<T� S�uJ�E�A �D(�G0F(D ABBF������`S�,WT��xS�KQHă�S�F�B�B �A(�D0�r
(D BBBE�(K DDE$�DT�,E�D�G WCA(8�LT�\E�G�G0m
CAD(d��T�dE�G�D0t
CAH(���T�\E�G�G0m
CAD���T�ЄU��U�(��U�E�D�G@�
AAF($��V�oE�D�G0}
AAA4P�$W�]F�E�G �A(�G0y(D ABB4��LW�TE�A�F ]
AAED
MAE��tW�&Uԅ�W�! ��W�`E�G @
AC��W�0 ��W�YE�G�L Z
FAGTCA<T� X��a�E�B �D(�D0�Q(D BBBE��������X���|X�$H [4���X�]F�E�G �A(�G0y(D ABBp���X�uT�D�D �G0�
 AABDH���P0���W
 FABHO
 AABEP
 G�A�B�Fl��Z�WH0I
A0��[�NE�D�G Z
AADTDA ��([�E�G0E
AF�]�HV��]�-$�8]�E�G sCF�X �4��]�	H��]�N\��]�!(p��]��E�D�J t
DAD ��(^�ZE�G0E
CA0��d^��F�D�D �G@e
 AABB��^�)E�c��^�0$��^��F�A�D �G@Z
 AABHtX�\_��K�B�B �B(�D0�D8�JPc8G�0A�(B� B�B�B�RP������
8A0A(B BBBB<Љ�`�F�B�B �D(�A0�C
(A BBBG��b�HT(��b�[E�W
D8D��b��B�B�A �A(�DP�
(A ABBB(���c��E�D�G@�
AAA0��8d��E�A�D b
GALDFA8��d�zF�B�A �A(�G`.
(A ABBK��e�.E�\
GA8<��e�zF�B�A �A(�G`.
(A ABBKx�,g�.E�\
GA(��<g�CE�G�D R
DAI(ċ`g��A�A�D@�
AAG�$h�HK(�,h�zE�G�L@Z
AAAH4��h�!F�B�B �E(�A0�A8�GP�
8C0A(B BBBF��di���`i�(��\i��E�A�F@�
AAAԌj�	8�j�'F�N�A �A(�D0�
(O ABB$�x�-H D�y�X�y�Nl�Hy�
��Dy���Py���\y���hy�
Ѝdy�0�`y�tE�A�G C
DAKNDA��y�HU0��y�D��y�X��y�ZH0L
A t�z��E�D`�
AK���z����z����z�(Ԏ{�JB�D�A �l
ABJ,�${�!B�D�A �i
DEG80�$|��F�B�A �A(�G@�
(A ABBB8l��|��B�B�D �A(�G0p
(D ABBG��L}�8A�vďp}�1A�o��}�0��}�9A�D�G T
AAFDGA4(��}��A�D�D0j
AAKR
AAD`�D~�HIx�L~�HK��T~�kA�e0���~��B�A�A �D0g
 AABE`�$��B�B�E �E(�D0�D8�D@P
8A0A(B BBBDc
8A0A(B BBBKD���HV<\����E�D�G0]
DAFs
DAH]DA��(��$��$��$A�D�D UDA�5�����	���hG~
K�h��	(0�d���A�C�G0q
AAB\�؀�EL�X
Dx���}L�N
F$��l���E�D�O {DA ����uA�Q�M
AA�@��(��L��+B�D�D �YAB$�P��!HX<�h��DE�G vA(\����EE�C�G d
FAA�����#��؂�S`��$��pB�B�B �A(�A0�U
(A EBBIC
(A BBBF�
(A BBBE�0��AHx,�h��5E�k8H����xF�E�D �A(�G0[
(A ABBA��Ѕ� HU��؅�!HV����HL̔���HL���������� �$��HK8�,��
L�(��HNd�0��:E�Z
AN(��P��MF�D�C �S
HBE��t��IH0{
A4̕����F�D�A �I�0
 AABH�0��3E�md �T���F�B�E �B(�D0�A8�D�D�D�f�A�z
8A0A(B BBBE�
�L,��̊��D_
E\
DK
E[
A��l����Z��#AAD�(��WHn
JV<�h���R�B�B �A(�A0�t
(A BBBE<L���vA�D�G n
CABX
CADNFA0��(���B�D�G �GPv
 AABA4�����_c�D�D �Y
ABIG�A�B�(��̎� Q�D�G s
AAG0$�����B�D�D �D@�
 AABK(X����iF�A�D �ZABD��А�-F�G�B �D(�C0�G�m
0A(A BBBF(̘���^B�D�D �V
ABE8�����B�F�A �D(�D@m
(A ABBDH4�`���B�B�E �B(�D0�D8�D��
8A0A(B BBBAT��Ԕ��B�B�B �B(�A0�A8�H��Q
D��o
8A0A(B BBBHHؙ��/F�B�B �B(�A0�A8�G`E
8A0A(B BBBD$���$A�^@���0T���KA�D�G M(T0H(A RAA|����lB�B�B �E(�A0�D8�GP8
8A0A(B BBBG^
8A0A(B BBBHD
8A0A(B BBBB���9�8��	L0�4��rB�B�E �B(�D0�A8�D�
8A0A(B BBBDH��d��&B�B�E �E(�A0�A8�G`�
8A0A(B BBBG̛H��&H]�`��7E�d
G����=E�]
FT ����v}OLI8@����F�A�A ��
IIMa
ABL(|�x��`E�A�D z
AAJX*{��(������E�J�D b
AAI���E�J4����E�I�D `
CAJK
CAA<�x��6Hb
F<X����B�B�A �A(�G� I� �
(A ABBF(��|��{F�D�A �o
ABC0ĝХ��E�D�D _
CAHGCA4��,���L�F�C �_
ABIIAB0����D����6HX
HKd����"EAK�����9t����#K�����E�P
A4��rA�A�G V
AAGt
AAB$��H��GE�b
IF
JFL$�p��
B�B�A �A(�D0M
(A ABBCv
(A ABBDHt�0���B�E�E �B(�A0�D8�Fp�
8A0A(B BBBH�;s��`Hԟ���rF�E�B �B(�D0�C8�GpY
8A0A(B BBBHH<s���04���RE�D�D i
DAELDAh���$E�P�� ��WE�j
I^��`��*E�d@��t��:F�B�E �D(�A0�F`
0A(A BBBH@�p��	F�B�E �D(�C0�D`�
0A(A BBBA@H�<��F�B�E �D(�C0�D@�
0A(A BBBH���������&E�U����,E�Zء��E�Q� ���,���8��AHZ
NI<�h��AHZ
NI\����$p����.E�A�G [DA�����3[D��ȳ�AF�B�E �D(�C0�D��
0A(A BBBE�ж�GE�s
HF8���!F�B�D �A(�G0_
(F ABBB4P����E�A�G c
FAIY
CAA0��|��XE�D�D o
DAGJDA�����.E�]Lأ����F�F�B �B(�A0�A8�D�F
8A0A(B BBBJ((����ME�D�D m
AAD(T� ��cA�A�D q
AAG��d��@d [ �����AE�V
ED
E8�����pF�B�D �D(�G`�
(A ABBH8����F�B�A �D(�GP�
(A ABBDzRx�P����$��h����|���������+\N8������B�E�D �D(�DP�
(A ABBA$�p��KE�_
DK
EM
A$����6A�G P
AGTA84�����B�B�A �A(�G`�
(A ABBDLp����B�H�B �B(�A0�A8�G�6
8A0A(B BBBAH��T��,B�B�B �B(�A0�A8�Gp�
8A0A(B BBBG�8��'DZ
A@(�L��0B�B�B �A(�A0�G@�
0A(A BBBDLl�8��BB�B�B �B(�A0�D8�G�`
8A0A(B BBBAH��8��|F�B�B �B(�D0�A8�Dp�
8A0A(B BBBC$�l��KE�_
DK
EM
A00�����A�H�G c
CAIdFAd���vE�_
D��t��1E�S
A�����	 �����E�D0�
AB@Ԩ���.F�E�E �D(�A0�DpL
0A(A BBBC@�|��F�B�E �D(�C0�D`A
0A(A BBBG4\�H���E�D�D I
DAEaGH �����}E�}
ND
L��L��SE�m
FZLة����B�E�B �B(�A0�D8�G�J
8A0A(B BBBE\(�����B�E�E �B(�G0�D8�D@N
8A0A(B BBBKV8A0A(B BBB ��,��XA�J@F
AA��h��E�TȪl��%E�Z
A,����hB�A�A �H
ABA(����RE�G�DPz
AAA@����0T�����F�D�C �GP{
 AABE4������F�F�K �q
DBJI
ABL$�����VE�A�G AFA0�,��F�A�A �D0�
 FABA(���jE�A�D m
GAIH�\��HO
A0d�`��RE�A�G m
DAALDA�����)E�^H�����IF�B�B �B(�A0�D8�DP�
8A0A(B BBBA ����}E�}
ND
L4$����F�D�A �b
ABHYAB \�h��}E�}
ND
L�����,A�c
A4������F�A�D �X
FBEqDB,ԭP���F�A�D �h
FBE8�����B�E�A �D(�D0M
(F ABBH8@�$���F�B�D �D(�F@W
(A ABBE0|�����E�A�D J
FAEdDA(��D���A�D�G�_
AAC8ܮ���)F�E�D �C(�DP�
(A ABBI����,����^E�A
A4L���mE�A�D B
FAED
DAEH��@��bB�B�E �E(�D0�D8�Gp�
8A0A(B BBBF8Яd���B�E�D �A(�D@�
(A ABBB0�(���B�D�A �G0�
 AABE@���HT����B�E�B �B(�A0�A8�G�	�
8A0A(B BBBG��T��H��P���B�B�B �E(�A0�D8�Gp�
8A0A(B BBBF���PQ�z�(�����A�A�G@s
AAB H�|��rE�D }
AI8l����F�D�A �e
FBHa
DBE$��|��4E�D�D _FA��kE�g
D(����E�A�D0L
AAH\�L��F�B�A �D(�D0P
(D ABBFA
(F ABBDe
(F ABBA,x���!A�H
D��L����
D`���2B�B�E �H(�A0�A8�DP�
8D0A(B BBBET
8H0A(B BBBE���%( ��>F�D�D �`GDL��2H id�@�E�L��D�E�Y8��H��F�B�D �A(�D@�
(A ABBBس��!HXL����B�E�B �K(�D0�Z
(Q BBBG�
(A BBBC@�T�E�L(\�X��E�D�G0j
AAD$����~E�D }
AIlAL��4�OF�E�B �B(�A0�A8�D�T
8A0A(B BBBEH�4�F�B�B �B(�A0�A8�Lp{
8A0A(B BBBAL��AHd
Dh�<�VI�e
B`�(��|��A�A�D k
DAJ���4ȵ���F�A�A �`
AFIYFBL����B�B�A �A(�G0~
(A ABBG�
(D ABBK8P�$��F�A�D �C
ABOA
FBA����HO
A(����WE�K�D X
AABԶ�����2E�e ��yJ�U
�IP�(�l�#MN$@���VE�D�D CDA$h���]E�D�D JDA���� E�V$����0E�A�G ]DAԷ�'E�a,��=F�D�A ��
ABD �$�Q4�p�HI8L�x��F�B�D �A(�Fp
(A ABBFH����F�B�B �B(�A0�A8�DPp
8A0A(B BBBD̰���=L�<�DJ�E�B �H(�D0�A8�J�9
8A0A(B BBBEL8�<��F�B�B �E(�A0�D8�F�(
8A0A(B BBBD�E'���(���'�QF�A�D �M
ABEȹ�'�E�M��'�	4���'�dE�D�D S
CADT
CAHL0�$(�^F�B�B �E(�A0�D8�I�o
8A0A(B BBBJ|����4�� ,��F�E�D �A(�F0�(A ABB0̺�,��F�D�A �D0�
 AABB8�T-�F�B�A �D(�DP�
(A ABBA8<�(.��F�B�A �D(�D@�
(A ABBI0x��.��E�D�D0b
JAFtGA ��8/��E�D0j
AD8л�/��F�B�A �A(�D0y
(D ABBH�H0�PE�g
LK,�x0�E�L H�|0��E�D0T
ABl�1�FlS��P1�5Q�c��t1�?E�,
AH���2��B�E�E �E(�D0�D8�DPy
8D0A(B BBBE@�3�B�E�H �A(�A0�Gp�
0A(A BBBG(P��3�E�D�D@j
AAA$|�(4�EE�D�D nDA8��P4�yB�J�E �G(�A0�U(D BBB(��4�`M�G�A �~DD\��4�jB�B�B �B(�D0�A8�J�
8A0A(B BBBKs�H�F�A�$zRx��������,���?H���:�B�B�D �C(�G0�
(A ABBET(F ABB�P;�E�T�T;�Iq�W,,��;�}F�D�F �Q
ABA\��;�NE�y
JA|�<�0E�j��<�E�M�� <�E�Mп$<�E�P�(<�ZE�A
JI$�h<�wE�U
FM
CF(4��<��E�G I
AJV
AA4`�$=��E�A�G z
HAHm
AAA4���=��F�D�F �}
CBNA
IBE ��=�nE�A
JA
E(�0>��E�H�G �
AAJ( ��>��E�H�G �
AAE$L�x?�lE�{
HO
IF
A0t��?��E�H�G �
AAJlFA8��|@��F�D�F �Y
ABDG
CBE$��@�{T�F P
J�Lp�L�(A�{F�E�B �B(�A0�A8�G�S
8A0A(B BBBA$\�XB�{T�F P
J�Lp�@���B��F�B�E �D(�A0�GPr
0A(A BBBE0���D�~E�H�G P
DAGDDA ��HE�}E�}
ND
L0 ��E�~E�H�G P
DAGDDA T��E�}E�}
ND
L0x�LF�~E�H�G P
DAGDDA ���F�}E�}
ND
LT���F��F�I�E �D(�A0�u8U@I8A0^
(A BBBFz(D BBB4(��G��F�F�K �q
DBJI
ABL`��G�GE�]
FZ ��H�E�~
MQ
F4��pH�XB�E�D �D(�F0y(D ABBH���H��F�B�B �H(�A0�A8�DP�
8D0A(B BBBDL(�<J��F�B�E �B(�D0�C8�D�	
8A0A(B BBBC�Q/���L���N�!F�B�B �B(�A0�A8�G��
8A0A(B BBBG�Qf���(��tR�-F�D�F �YABL�xR�bB�B�B �E(�A0�D8�I�
8A0A(B BBBK(l��W�mA�D�F0O
AAD\���W��B�E�E �E(�D0�D8�GPA
8G0D(B BBBLW8A0D(B BBBT��,X�B�B�E �D(�D0�G��
0A(A BBBAn�U�f�A�LP��Y�}B�E�B �B(�A0�D8�F��
8A0A(B BBBDJ������^���^�L��^��F�B�B �B(�D0�D8�I��
8A0A(B BBBI8M���L@�da�}F�B�B �B(�D0�D8�I��
8A0A(B BBBI8T���L���d��F�B�B �B(�D0�D8�I��
8A0A(B BBBF$zRx��������,7���40��g�F�D�C �J�{
 AABJ<h��i��F�A�A �D0�
 DABDM DAEL��,j�4F�B�H �E(�D0�F8�F�Q
8A0A(B BBBH0��m�nF�A�D �F@|
 AABG ,�Xn��e `[ q
GX P�4o��E�I o
AAt��o�ElX���o����o��E�C�F0zRx�0�� �����p� E�D�F L��p�(B�B�E �E(�D0�D8�D�
8A0A(B BBBH@`�ds�]B�E�E �D(�D0�Fp	
0A(A BBBE@���u��F�B�E �D(�A0�FP�
0A(A BBBJ���n���w���w�%HW
A(,��w�TE�G�G@�
AAB@X�y�%F�B�B �D(�D0�D`�
0A(A BBBGH��{��F�I�B �B(�A0�A8�D@�8A0A(B BBB��������������$����	8����E�O(T�����A�A�D r
DAC��4��]A�D
K`��t���B�B�B �B(�A0�A8�G`Y
8E0D(B BBBAs8A0A(B BBB��)���(,���9B�M�D �bAB(X����qF�D�D TD�A�H��P���B�B�A �A(�D0`
(D ABBEl(C DBB����PD X
D��(��#E�]�<��HI �D��6E�]
H(<�h���E�F�D F
DAFDh����B�E�E �B(�A0�H8�D`�8A0A(B BBB<��Ԛ�B�B�I �A(�A0�E
(A BBBE����SL�`���F�E�E �B(�A0�A8�D�4
8A0A(B BBBJ�P�� h�����A�Q `
AE��h��-\I�����4HX
HG(������E�D�G D
CAH8����JA�D�G $
AAF?
AAG,����o D����ME�G w
DA(h����yE�Z
AF
J�
OT����aO�B�B �D(�A0�&
�(A� B�B�B�KA(A BBBH�����`��(���F�B�B �B(�A0�A8�D@^
8D0A(B BBBKD
8A0A(B BBBA`P�ħ�F�B�B �D(�A0�
(A BBBL
(A BBBJD
(A BBBEL������F�B�E �A(�A0�E
(A BBBE|
(A BBBE���	���5Hl0���%A�c(L�(���E�D�D@^
AACx����<E�c
HGH��̫�F�B�B �B(�A0�A8�Dp�8A0A(B BBB(�����'E�A�D DA(�����E�D K
AKiA<����>HP�$��B�E�B �E(�A0�A8�G`/
8F0A(B BBBK��ݷ�����HI����>����HIL�� ���B�B�B �B(�A0�A8�G�B
8A0A(B BBBA$zRx��������,!��6��T��HI��\��	��X��
��T��HI��\��
��X��HI�`��
H�\���F�B�B �B(�A0�A8�Dp�
8A0A(B BBBCd����HIH|�����F�B�A �D(�D0k
(M ABBJj(M ABB����%��8��2��d���`���l��,�x��	@�t��!HXX����"HYHp����'F�E�B �B(�D0�A8�Dp�
8A0A(B BBBE�s��8��t���F�B�D �D(�F@D
(A ABBH��ȴ� �����Hg
A����HP�t���F�B�B �B(�A0�A8�D`Z
8D0A(B BBBGH�����P�H�A �N0q AABD���H0���a
 AABC0�����,	F�A�D �DPl
 AABAzRx�P���$���|P����
F�L�B �B(�D0�A8�Gp�xA�PxDp-xD�B�A�B�B�A�D�PpB
8A0A(B BBBG�����5	B�B�E �B(�A0�A8�G���F�K�A�Y�J�M�A�X�T�A�C�D�I�Q�u�C�A�F�Z�
8A0A(B BBBC$zRx��������,i����t��E�P��x��:HW
QI�����HI8�����F�B�I �A(�C0��(A BBB @���WE�J A
AAd����x�<��HI ��D��eE�D U
AA��p����|��RH0D
A�����JH0|
AH�����F�B�B �B(�A0�A8�D`�
8A0A(B BBBAd���`����%0t����[B�A�A �D0�
 AABEL����
`������F�E�E �B(�D0�C8�D�{�Q�B�A�V��
8A0A(B BBBK �T��%HHB RL@�d���F�E�E �E(�A0�D8�G@eHNPI8A0A(B BBBI@<�����ZF�E�D �I(�N0_8E@I(A ABBT�����F�B�E �B(�A0�A8�F`�hHpVhA`p
8A0A(B BBBD@�(��GX<����F�B�B �E(�A0�A8�Fp0xJ�ZxApj
8A0A(B BBBH�z���GX�����DF�E�E �E(�D0�A8�D`AhEpGxE�Q`�
8A0A(B BBBK`����F�B�E �B(�A0�A8�J���D�B�A�e�T
8A0A(B BBBF4l���nF�B�A �A(�D0W(C ABB����"H Y���HI$����L��
E�
Q�������$���L8���IB�B�B �B(�A0�A8�D��
8A0A(B BBBL���
�a@��H��B�B�B �D(�A0�D`�
0A(A BBBHH�����B�B�B �B(�D0�A8�D`�
8A0A(B BBBAH,��7B�B�B �B(�A0�A8�DPQ
8A0A(B BBBG,x���B�H�A �m
ABUH����fB�F�B �E(�D0�D8�D`
8A0A(B BBBD����)E�_���QN�h
JP�(0��CF�A�A �uCB����(p�$�uE�A�J@X
FAAH��x��B�H�B �E(�D0�D8�L`�
8A0A(B BBBA4���WF�A�D �~
ABDACB �D�;a�Y(<�h��E�A�F0g
AAA0h���<E�D�F O
IAHDFA(����OE�D�G W
JAE ����E�G@�
AI<����?B�B�A �A(�G��
(A ABBK zRx������(���4d��"��B�A�D �G�E
 AABIzRx�����$@��8���$��B�B�A �D(�D�W
(A ABBF����	8 �4&��F�B�A �D(�F@�
(A ABBD(\��'��E�A�D0g
AAEL��L)�F�B�E �B(�D0�A8�D��
8A0A(B BBBF0��/��F�A�I �G@�
 AABA��0� ��0�HI 8��0�wE�F0T
AA \��0�E�G��
AE���1� ���1�uE�L@]
AA$��U��rE�C�K SAD(��2�jE�I�G e
DAD�X2� �T2�=E�b
H<�x2�HI4T��2�IM�D�A �W
ABDJHB,���2��E�M�D �DA��X4�����4�
���4�
���4�AAK��4�AAK0��4�E�WL��4�2E�_
LA8l�5�vB�B�D �D(�D0T
(D ABBC8��L5��B�B�D �C(�G@�
(A ABBC4���5�EF�G�G �N
CBIOCB��5�qA�o8�\6�E�LT�`6�:E�g
LAt��6�!AAK ���6�VA�D U
AE���6�<a���6�!0��7��B�D�D �G0U
 AABF�t7�<A�_
A@,��7��B�B�B �D(�D0�G@M
0A(A BBBF p�$8��A�D0r
AH���8�YA�W���8�E�L0���8�ZA�D�P [
AAFVFA0�9��B�A�D �G0�
 AABE$4��9�GE�D�G rCA,\��9��B�E�D �\
ABA,��8:��B�A�A �D
ABE(���:��A�G H
AGr
EA ��;�oA�G0k
ADH�h=�AB�B�B �B(�A0�A8�Dp�
8A0A(B BBBHHX�l@�2B�B�B �B(�A0�D8�D@d
8D0A(B BBBF ��`A�gA�G @
AA,���A��B�D�I ��
ABE0��\C�IB�A�A �G@Q
 AABH,�xD�A�PLH�|D�JB�B�B �B(�D0�D8�G��
8A0A(B BBBA��|X�H��xX��B�B�A �C(�G0~
(D ABBJb(D ABB4���X��E�C�J i
DAHl
FAEH0�dY�sB�E�H �E(�A0�A8�DP�
8A0A(B BBBH8|��Z�$B�E�A �D(�DP
(A ABBB���\�7hH���\��F�E�E �E(�D0�A8�D@y
8G0A(B BBBI�,]��,��]�lD0J
A(H�^�.B�D�G �VDBHt� ^��B�F�B �B(�A0�A8�G�X
8A0A(B BBBIL���`��B�B�E �H(�D0�w
(A BBBEJ
(A BBBGL�4a�x
B�B�B �B(�A0�A8�G��
8A0A(B BBBHH`�dn��B�B�L �G(�A0�I8�D`
8A0A(B BBBK0���o��F�A�D �F`�
 AABE$��$q�4E�D�G _CA8�<q�yB�B�A �C(�D0T
(A ABBJHD��q��B�B�B �B(�D0�A8�Gpe
8A0A(B BBBE$���r�4A�G�N QDD@���r�MB�B�B �A(�D0�G@�
0A(A BBBJ0��t�DB�D�A �G0�
 AABF80�$u�tB�E�D �D(�GP�
(A ABBCLl�hv�F�E�A �D(�G0s
(C ABBFY
(C ABBA(��8w��E�J�J�g
AAA���w��E���`y��\y�(,�Xy��B�D�A �[
ABKX��y��D F
F t�Pz�yHH
HI
OD ���z�yHH
HI
OD ��{�yHH
HI
OD ��d{�yHH
HI
OD ��{�yHH
HI
OD (�|�yHH
HI
OD L�x|�yHH
HI
OD p��|�yHH
HI
OD ��0}�yHH
HI
OD ���}�yHH
HI
OD ���}�yHH
HI
OD$�D~��HV
BI
WD
E<(��~��E�G�D V
AAHI
EAQTAA0h�<��E�J Y
AGI
ERDA$�����H`
HI
WD
E$�@���H`
HI
WD
E �؀��H �
BI
WD �t���E�G t
DL4���H �
DP���H �
D,l����Hx
HN
JN
JI
M ��Ȅ��Hz
N�
B,��D��vE�G i
DG�
AM8�����E�J h
AH@
AGD
AKHE(,�H��eE�A�G`
AAE0X�����F�A�D �F@�
 AABA����	�����������������������,���/E�H����	\����a(p�T��A�D�G��
AACD��8��LB�E�E �D(�D0�J8H@\8A0A(A BBB�@��dD0Z
A����1A�M
BW$ ����IA�e
JA
GLH�ܓ�jA�I
FHh�,���B�B�B �B(�A0�D8�D@�
8A0A(B BBBK ����A�G��
AA�L���X��KE�r
IH����NB�B�E �B(�D0�A8�D��
8A0A(B BBBHLT����yB�B�B �A(�A0�H��Q
D���
0A(A BBBG$�����[A�C
B�K�D
A4�����A�C�D@�
CAG�CAP�P���B�E�B �A(�D0�D���Q�\�A�w
0A(A BBBH8X�����A�P�DPYXH`HhHpPP@
AAH��P���Di
C\(������A�H�D �
AAK$�t���Q�s
�Lt
�Ld�,��kL�B�B �E(�A0�A8�D@�
8A0A(B BBBGr8J�0A�(B� B�B�B�\p�4���\�B�B �B(�A0�I8�G@8H�0A�(B� B�B�B�Q@������,��A�C
Y�����
G,����A�C
\������
DL0�d���F�B�B �B(�A0�A8�D��
8A0A(B BBBC��Է��E��,��H���F�M�K ��
ABD�غ��Q��������T�,�4���R�Q�I ���H�B�0���Q��
�N(P����E�N�D �
DAD|�����E��
H��(��0��$��LE�K�G Z
DAJDFA�@��5V4��l���Y�A�G A
AADpA�A�<0���6F�B�A �D(�G�v
(A ABBH<p����M�B�B �A(�A0��
(A BBBA�����kHX
HR
A���Y,�`��rQ�L�P 
J�F�L<����R�P�H �A(�D0g(H� A�B�B�T ��h,���Q�v�����<Y�V
IC(����ZR�D�G �O
ABA(����}R�D�D �]CBL�H��0�B�E�B �E(�D0�A8�I��
8A0A(B BBBAHL(��#B�B�B �E(�D0�A8�G@ 
8A0A(B BBBG,����A�F
H����K��
B0�ܯ�E�C
D��G��D�
J0�h��A�A�G f
IAG}AA80���xb�A�G �e
�G�B�HG�C�I�\l���ۈB�B�B �B(�A0�D8�GprxU�N�B�Vpg
8A0A(B BBBA$�x<�D�O
ER
FNt�����<�xb( $=�JF�K�H �mABLH=�2`t=�1t�=���=���=�H�,�0>�S�A�A �ABI���,��>��F�A�A ��
ABA(`?�F�A�A ��AB@�?�T@@�	(h<@�lE�D�G R
IAL��@��|@�
�x@��t@�
�p@��|@�6AAY�@�pA�A�G 84�@��B�L�D �{
ABHF
CBEp�A�oD K
A^��A�lD0Q
K0�HB�F�G�A �G@�
 AABA��B�QH0C
A�C�}HPo
AlC��H Z
F�4@E��B�B�A �A(�D0�
(D ABBB�
(G ABBOD
(I ABBAG
(A ABBHS
(I ABBA��F�]L�j
J��F���F�E�O�F�WH I
A8 $G�XF�B�D �A(�DP�
(A ABBJ8\HH�XF�B�D �A(�DP�
(A ABBJ �lI�E�G O
AD�XJ��dJ�\E�G�D ��J�AAK�J�`DW
E(�J�_DQ
KD0K�(X<K��M�G�G u��` ����K�H q
G�dL�H0g
A�M�u�tM�H0g
A�N�H q
G	�N��<	XO�A�D�D p
FAH`
GAHTDA\	�O�x0p	$P��B�A�A �D0l
 AABH�	�P�u�	<Q�U(�	�Q��G iH Q
Gn
RJ�	<R�U8
�R�F�B�A �D(�D@g
(A ABBBH
lS�v\n
F` h
�S�A�G �
AE �
hU�xE�G r
AA�
�U�AAKL�
�U�B�E�E �E(�D0�A8�F��
8A0A(B BBBGL�q���0tX�DpX�
XlX�lhX��dX�
�`X�tB�D�G ���X�iH M
A�Y�9H f
A�8Y�4�Z�E�A�G �
DDE\
GAL8\\�kL�\�h`]�htp]�h��]�{�8^���^�wJ V
PA �_�A�L |
DC��_�Z
�`�� 
�a�E�G p
AC @
tb�-E�G t
AGd
�c�B0x
�d�B�A�A �DP�
 AABAD�
�f�F�B�B �A(�A0�D�9
0A(A BBBGH�
�j��F�E�B �B(�D0�A8�Gpb
8A0A(B BBBI@dn�=T�n�"EAK8p�n��A�H�G@w
AAG
AAF0�8p�F�I�D �D@s
 AABB(��p�0F�A�D �WDE�p� �p�]4 q�@{HLq�FA `�q��E�G e
AF �Pr�yE�L0a
AA ��r�E�I0F
AK(�(s�?Hr
Fe
Kt
La
O0�<t�F�F�D �G@k
 AABA$,�t�DJ s
CV
JW
I T�u�gqP^
Jp x�v�gqPe
Cp$��w�DJ s
CV
JW
I$��x�DJ s
CV
JW
I$��y�DJ s
CV
JW
I  {�gqPd
Dp 8|�gqP^
Jp\�|�tH W
A0x\}��B�D�D �D0�
 AABA �(�HM
KI
WD ���HM
KI
WD������$X���HM
KI
Wl
E,D��J v
HI
OW
IQ
O t��VE�GP�
AJ4�,���H y
G�
SW
ID
LQ
O�Ĉ��0��=P�\����D M�X ��
ADNF�T �D
A�Kb
G�EQ�L؋��HPP
H0h����B�D�D �G@p
 AABK8�8��F�E�D �C(�G@�
(A ABBKX����KA��
HW
�IG
Ij�V�A
�Ej
�PD
�EF
MD
AF
I04���rH s
E\
D
IW
IH
P0h̗�rH s
E\
D
IW
IH
P0���H W
Is
E`
HW
IH
P�����bA�D�J0H
D�A�LH��H0���
AADR
I�A�L_
I�A�EP
A�A�E�
E�A�Ej
A�A�Ib
A�D�E$pT��bJ k
KI
Wo
I����AH s
A,���t t
H
HWQ w
H<����E�G q
AB�
AK^
III
ER$0��6P8\��rE�C�G0�
AAEG
DAL�
AAED
LAO����ZL�Ԩ�F�D�D �D(�D`z
(A ABBA�
(F ABBAX�4��F�B�B �D(�C0�G��
0A(A BBBA-�H�N�E�I�HL���)F�E�B �B(�D0�D8�Gp�
8A0A(B BBBE�ܳ�.����3�$��HH@�
A�X��A�[
T@����E�D�F R
AAEH
DDHLDAD@���]E�C�G@�
AAI`
EAJ
FAE@����bD y
Kf
JG
Ig
In
JW
In
H�Ȼ�E���E|�@��B�D�E �B(�D0�I8�DP�
8D0A(B BBBDW
8G0A(B BBBI
8A0A(B BBBJ@t`���E�D�F R
AAEV
DDJLDAD���]E�C�G@�
AAI`
EAJ
FAEP$��AF�A�C �R
ABA�
AEHU
ABHI
DBE0T ��A�_
HM
K[
EC
MI�|��=����"GS��������:EAY8����*F�B�D �A(�D`�
(A ABBE ���"HQ
A<���7HX
HHX��F�E�B �B(�D0�D8�Dpp
8A0A(B BBBK̷�s��$����*E�D�I IIA����*HU
CI ���LE�P
KX
H $��LE�P
KX
H H<��LE�P
KX
H$lh��WE�R
IV
JM
E$����*E�D�I IIA$����WE�R
IV
JM
E����b$�<��*E�D�I IIA$ D��*E�D�I IIAHHL��mF�B�E �B(�D0�A8�Fp
8A0A(B BBBE���r�� �\��PE�D }
DA(�����E�A�G0�
AAH�,��#HR
A@��7HY
G 0d��OE�D }
CA(T���E�A�G0�
AAA�$��PT]
D�X��H@~
J�����H@�
A8�����F�E�A �D(�D0z
(D ABBIt��+H �
E,����H`�
HHl��=$\���UE�W
DR
NI
G����	p����dF�A�D �G0�
 AABE�
 AABD`
 ADBIJ
 AABEc
 AABF  ���t@
DDTI0 T��	HD P��E�D�G {
GAMD
AAJD
GALDGA0� ���F�D�D �D@f
 AABA� ��� ���$E�W� ���/E�_$!���4E�G�D WGA8!���L!x�� `!��VE�h
CL
D8�!P��5F�B�A �A(�D`
(A ABBG�!T���� k
A4�!8���E�d
GN
BR
FD
LL
E8"���?F�N�A �A(�D0�
(C OBBGP"���Qd"0��]|"x���"����"����"���
�"���
�"���
�"���
#|��#x��0#t��D#p��X#|��
l#x���#����#����#|��
�#x��(�#t��E�A�D0@
AAD�#���AMV
EI$��`H R
A 8$L��ZE�Q z
DA\$���`H R
Ax$���	(�$���E�N�G0S
AAA�$,��E�L�$0��HT�$8��E�U%<��E�U$%@��HT<%H��E�UX%L��E�UHt%P��B�E�E �E(�D0�D8�DPl
8D0A(B BBBJ�%���OD s
IN,�%���fM�F�D �vFBK���,&��fM�F�D �yFBH���,@&D��fM�F�D �vFBK���p&����&���LE�T qA(�&���lE�Q�G0t
DAJ(�&��zE�N�G0q
AAA(�&H��lE�Q�G0t
DAJ('���>H W
A]H'���\'���QE�T vA|'����'��	�'��LE�T qA(�' ��dE�Q�G0t
AAE�'d��aE�G
D(���ZH a
Gi0(��	D(��X(��7l(��:�(D��Hp�(������(X���(d��Ypb�(���s�($��J)���Go)��H,)���9F�B�B �B(�A0�A8�Dp�
8A0A(B BBBDx)��3E�T
GK�)��)E�c(�) ��ub�M�D �yFB4�)t��yB�J�A �K(�I0O(C ABBL*���B�B�E �E(�A0�C8�J��
8A0A(B BBBG,h*��A�C
D��E�E�H��
G�*��1AAP �*��CJ�S
C\D��*��
�*��+�$+�KE�G [
AHYA,<+8�F�A�A �f
ABGl+�yS_^M
A�+h�yS_^M
A�+��Y~ S�+	�E�L�+	�E�~
M,�+�	�II�D�D �fCBD���,,�
��E��
GL,�� `,���E�`
Kd
LH�,��.F�B�B �B(�A0�A8�Dp�
8A0A(B BBBAH�,t�F�B�B �B(�A0�A8�D`�
8A0A(B BBBCP-��B�A�D �D0v
 AABK�
 FABFO
 AABEp-D�!�-`�Ht S�-��8d S(�-��E�A�D0H
AAD�-$�+�-@�8.��8B�B�D �A(�FPa
(A ABBJ��b�}X.��&AAD,t.��:F�A�A ��
ABJ$�.��8E�G�D eAA8�.�B�E�G �D(�F0�R
(A BBBG8/��fB�E�D �G(�G@_
(J ABBI,D/�LB�E�D �D(�D0T8G@`t/ �B�C�F �G03
 AABGK
 AABAP
 FABG�
 AABI�/|�8E�W
A8�/��B�B�D �A(�G@V
(A ABBDL00$ ��F�B�A �D(�G0F
(A ABBHL
(A ABBF4�0� ��A�A�G 
AAFD
GAE�0\!�E�P
A4�0`!�E�I�P s
DAJd
DAG81�!�IF�A�A ��
ABBD
ABI$H1�"�bE�D�D ODAp1$#��10#�%EAK�1D#�oA�D
A(�1�#�@F�D�F �lAB(�1�#�E�A�G i
GAJ2�#�AE�g
H0420$��B�D�D �D@�
 AABIh2�$�D |28%�QE�f
EX
A(�2t%�E�A�G0R
AAG8�2�%�rF�B�A �A(�G0J
(D ABBA,3<&�bF�A�A �I
ABA83|&�	pL3x&�T�E�I �G(�J0F
(A ABBA`����x0����X����@0����P����P0����L�3�'�F�B�B �A(�A0��
(D BBBD\
(D BBBB4�)�$4�)�UH�^
L�@4�)�Y�E�F �G(�J0j
(A ABBKx����x0����P����p0����P����P0����P����P0����L�4+��F�B�B �A(�A0��
(D BBBBF
(D BBBH5�,�zjYMi45-�E�r
IT5�-�h5�-�7Y |5�-�E�T I
AA8�5$.�F�B�A �D(�F@R
(A ABBE�5/��5/� 6/�A�F0l
ADH(6�0�>F�B�B �B(�D0�A8�Fp�
8A0A(B BBBB��([���6�2��6�2�?H b
FN �6�2�to�^
�SFJ�X�63�E�A�G0a
AAHZ
JAC�
DALx
AAF{
EAGX<7�6�E�A�G0#
AAFG
JAFT
DAGx
AAFS
EAG�7,:�2E�O
DN�7L:� �7H:�fE�G o
AD�7�:�$8�:�|K�O
Fj�F�,8�:�X@8�:��F�B�B �B(�A0�D8�D���C�F�A�X
8A0A(B BBBAH�8X<��F�B�B �B(�A0�A8�D@j
8H0A(B BBBK�8�M�)H\L9N�B�E�B �B(�A0�A8�G�n
8A0A(B BBBD0T9�O��B�H�D �D0|
 AABFP�9LP�}B�B�B �B(�A0�A8�G� I� J
8A0A(B BBBB$zRx�� ������,=X�$:<R�D F
FH
HL
DL@:�R�!B�E�B �B(�A0�A8�D��
8A0A(B BBBI�:�s�$�:�s�-E�D�G VAA�:�s��L�:Pu��F�B�B �B(�A0�A8�G��
8A0A(B BBBA��W�H;���,Hcd;Ћ�x;L���;X����;D���;���}�;,��~F�nD��;���v�;���?<(��E��$(<���aA�_
Hg
AP0P<��B�A�A �DP�
 AABA,�<p��F�A�C �{
ABH(�<��wc�A�D {DAH���<4��Ys�e �<x��A�r
Ed
D, =��>A�L
D��L���
H8P=��yB�E�D �A(�G0X
(D ABBD@�=8��mB�B�B �G(�D0�DP
0A(A BBBD�=d��Q�=���<A�z(>Ԙ�eA�A�G �
AAA$,>��eA�p
Ga
EF(T>`��F�A�D �rDB8�>�A�D�J���]�M�A�W
AAA �>���mA�c
DT
D4�>��A�A�D ]
AAK{
FAFD?l��B�E�E �E(�D0�D8�DP`8D0A(B BBB(`?���;B�D�D �dFB@�?Ȝ�A�A�G q
JIKy
DAJ�
DAE�?4��(�?���ZA�G�G0X
JHG@��Q0$@@��fA�J�O Z
DAG`DALX@|��
B�B�B �D(�D0��
(A BBBDr
(A BBBG\�@<��F�B�B �B(�A0�A8�D@i
8A0A(B BBBKT8F0A(B BBBA���A���J0Aԡ�kDA0��<XA<���B�E�E �D(�A0�
(D BBBF4�Aܢ�|B�K�A �D(�L0T(D ABB�A$��LF�mE��AX��ZB]P�
B���=(B���A<B���6Dh
DLXB��B�G�B �D(�A0�M
(A BBBDA
(D GIBIH�Bl��B�E�D �D(�G0W
(A ABBE[(A ABB�B���BE�|@C��O�N�D �F�D�B�s ���A
ABD8TCp���F�B�D �A(�G0g
(D ABBD4�C��jB�J�D �n
ABGA
CBB�CL��dWL�CĦ�B�D�D �p
CBA\
ABAF
ADAEDBD0D4��pJ�D�G @
AAIo
G�H�J���A ��<xD\��A�D c
AAY
FGl
DAG
DE(�D<��bB�D�A �WAB�D���D h
DlE��IB�E�D �H(�G0Q
(D ABBDk
(D DBBAB
(D ABBE(D ABB(pE��CB�D�D �uAB�E��@A�[
Ab �E8��A�T0c
AG�E���A�E��@F���]B�E�E �A(�D0�D@�
0D(A BBBH(LF���A�A�D �
DADHxF̭�B�B�G �A(�D0n
(D ABBIG(D ABBH�F0���B�B�B �E(�A0�A8�Dp�
8D0A(B BBBDLG԰�\B�B�D �D(�D0v
(D ABBAs
(D ABBDL`G��MB�B�B �B(�A0�D8�D�
8A0A(B BBBF@�G��B�B�E �D(�D0�GP�
0A(A BBBF,�G���rK�D�A �CABJ���`$H��K�D�D �w
ABCF
�A�B�Ga
�G�G�IDABA���` ����H̵�80�H���A�A�G W
DAKhAAH�Hd��B�G�E �A(�F0�X
(D BBBIU(D BBB I����A�G0�
AI(@Id���A�C�G@�
AAC4lI��A�A�G s
DAGH
DAK4�I���~B�E�A �D(�D0d(D ABBH�Iȸ�vB�E�E �B(�A0�A8�D`�
8C0D(E BBBH8(J���B�B�D �A(�G0|
(A ABBF(dJ@��xA�F�G0A
JAF(�J���pB�D�D �e
DBKD�Jغ�B�D�G �O
ABQQ
ABDU
QBHPK���K�D�D �{
ABGY
�G�T�LBABC���` ���lXKl��B�B�E �D(�D0�G@S
0D(A BBBJM
0J(A BBBJ#
0D(A BBBJ8�K���$B�B�G �C(�G0s
(A ABBB8L���7B�E�A �C(�G0v
(D ABBG@L���8TL���F�E�E �D(�G0�[(A BBB(�L��.F�D�D �XAB4�L��hF�E�D �K(�G0|(A ABB8�L@��kF�L�E �D(�D0�@(A BBB80Mt��F�J�E �D(�A0�n(D BBBlM���#E�V4�M���qF�J�D �A(�N0r(R ABB�M4��;�M`��!�M|��+@�M���B�B�E �A(�D0�GP}
0A(A BBBF(@NT��DA�G�K I
IAJ(lNx���A�D�DPT
AAAL�N,��B�B�E �E(�D0�A8�G�a
8A0A(B BBBK|�Nl��B�E�B �B(�D0�D8�G@s
8A0A(B BBBI	
8F0H(B BBBI�
8I0A(B BBBE0hO���ZA�L�G Z
AAH]CA8�O���nB�E�D �A(�G@E
(A ABBAL�O���a
B�B�E �E(�A0�D8�F�^
8A0A(B BBBG(P��A�k
LHDP���RB�E�B �B(�A0�A8�Gp
8A0A(B BBBG �P���SA�M M
MH@�P���vB�A�D �h
CBLU
ABHNABD�P��K�D�D �h
�N�B�EM
ABHM�A�B�@QT��7A�V
IVH`Qt��rB�E�E �E(�D0�A8�DP�
8D0A(B BBBDH�Q���YB�B�E �E(�D0�D8�DP
8A0A(B BBBA\�Q���K�E�D �D(�D@J
(J� F�B�B�Fz(G� G�G�G�H@����`XR���-B�B�A �D(�D0�
(D ABBA�
(D ABBC�
(G DEJHH�R���eB�H�I �D(�G0g
(D ABBJD(C ABBHS���eB�H�I �D(�G0g
(D ABBJD(C ABB<TS��B�B�E �D(�D0��
(A BBBA,�S����E�D�J��
AAFP�S ���N�B�B �E(�A0�D8�G@�
8A0A(B BBBC`������PT���KA�A�D0G
AAA`
JAE�
AAJu
AAI0lT���)F�A�D �G0c
 AABG4�T���}B�A�D �`
CBDGAD�T���"8�T��B�B�B �D(�D0�u
(D BBBC4(U���wF�L�H �L(�O0{(A ABB`U��-E�g|U���U��$�U��E�O�D fDA(�UH��?F�D�K �fAB�U\��+HWVt��$HW(V���<E�vDV��� HW\V��� E�Z(xV���:F�F�A �iAB4�V��PF�E�F �A(�G0p(A ABBH�V��F�E�E �H(�D0�z
(A BBBCc(A BBB (W,��aE�q
JT
E0LWx��=F�D�D �G��
 AABCH�W���B�E�D �I(�D0y
(D ABBF[(D ABB8�W��GB�A�A ��
ABH�
ABD$X��qA�F�G `AA 0X4��PA�c
LA
G(TX`��A�A�G �
AAE$�X4�A�A�G �HA(�X��ZB�A�D �v
ABHL�X��B�B�B �D(�D0�i
(A BBBBx
(C IBBH8$Y`�CB�B�A �A(�D0�
(D ABBE4`Yt�A�@
GI
GQ
GQ
GQ
GQ0�Y��A�K�Q B
KFHDAA8�YH�!B�E�A �D(�D@e
(D ABBJLZ<�(F�B�B �A(�A0�I
(C BBBB�
(A BBBFHXZ�B�G�G �H(�A0�A8�G`�
8D0A(B BBBA0�Z��iB�N�A �G0s
 AABAH�Z,�B�B�B �B(�K0�D8�Gp�
8A0A(B BBBFH$[�
��B�B�B �B(�D0�D8�D`�
8A0A(B BBBK$p[D�IA�K�Q eAA8�[l�>B�S�G �D(�F0�
(M ABBI4�[p�tB�D�K �D(�J0~(M ABB8\��dR�G�J �J(�G0Y(F� H�B�B�HH\���B�B�B �G(�F0�D8�I`�
8A0A(B BBBF8�\��zB�E�A �A(�F0P
(A ABBK`�\��F�B�E �D(�A0�c
(A BBBD�
(D BBBMb
(A BBBGL4]p�+B�B�B �B(�A0�A8�D��
8A0A(B BBBDx�]P�$F�B�B �B(�A0�A8�G� L�,�,F�-Y�,B�,
8A0A(B BBBC<�,V�-X�,B�,�,]�-G�,A�, 5�,b�-U�,B�,I�,`�-X�,A�,I�,`�-N�,A�,P�,a�-V�,A�,I�,`�-V�,A�,[�,Z�-]�,B�,I�,a�-U�,B�,I�,^�-U�,A�,I�,`�-N�,A�,P�,a�-V�,A�,I�,^�-V�,A�,I�,_�-V�,B�,I�,^�-U�,B�,I�,_�-U�,A�,I�,\�-N�,A�,=�,E�-Y�,B�,a�,E�-Y�,B�,��,_�-U�,B�,z�,_�-U�,A�,{�,_�-N�,A�,��,`�-U�,B�,�,b�-V�,A�,I�,`�-Y�,A�,I�,`�-V�,B�,I�,a�-U�,B�,I�,`�-U�,A�,I�,a�-N�,A�,P�,^�-V�,A�,I�,`�-V�,A�,I�,a�-V�,B�,I�,^�-U�,B�,I�,_�-U�,A�,I�,^�-N�,A�,P�,_�-V�,A�,I�,\�-V�,A�,Z�,V�-]�,B�,
�,`�-U�,A�,[�,_�-U�,B�,I�,\�-Y�,B�,I�,\�-Y�,B�,+�,X�-U�,F�,j�,Z�-U�,F�,j	�,E�-V�,B�,S�,E�-N�,A�,h�,E�-Y�,A�,d�,E�-V�,A�,`a�8��F�E�B �B(�A0�A8�DPu
8F0A(B BBBGY
8C0A(B BBBKda�A�xa�A��a�A�
�a�A��a�A�
�a�A�<E�v�a�A�,E�bb�A�	b�A�)(b�A�&<b�A�!HXTbB�HS lbB�lA�D0O
AK�bdB�H0p
H�b�B�)H\�b�B�%HX�bC�$�b$C�$c@C�-HdcXC�7E�l8c|C�LcxC�`ctC�pE�\
G��.�9(�c�C�B�G�D �a
ABG8�cD�+F�E�D �A(�F��
(A ABBF�cE�VA�^
AudHE�0dDE�E�V(LdHE�a�y
F`�H�A�xd�E�	�d�E�E�ML�d�E�B�E�B �A(�D0�h
(C IBBA[
(A EBBD�dlF�!0e�F�B�A�A �D@�
 AABA(@e�F�A�]
BW
IL
TTle�G���e -�FN�eLH�[D Q
A�e�H�HI�e�H�$�eI�[A�S e
AFYA0fLI�B�I�J �D0`
 AABC,<f�I�zM�M�D �G
ABH(lfJ�oF�A�A �cAB(�fLJ�oF�A�A �cABL�f�J��B�B�J �K(�A0�z
(D BBBB\
(D BBBJ\g0K�B�E�E �E(�D0�D8�D@h
8C0A(B BBBGL8G0D(E BBB8tgPK��F�H�A �|
ABB_
ABF`�g�K�B�E�E �B(�A0�A8�G`�
8A0A(B BBBH�
8A0A(B BBBGLhN�B�E�E �D(�D0�G@kHKPQHA@T
0A(A BBBADdhPN�:F�B�A �D(�D@�HHPRHA@D
(A ABBED�hHO�F�I�A �D(�D@sHEPTHA@d
(A ABBAL�hP�_F�I�B �A(�A0��
(D BBBF�
(D BBBJHDi R�PB�E�E �L(�A0�A8�D`�
8A0A(B BBBK0�i$T�PF�A�D �DP�
 AABB �i@U�FE�G0~
AEH��(�
�iXV��Qj�(�
((j,W�E�A�G@{
AAF��y(�
0hj�X��F�A�D �GP�
 AABK��;(�
�j$[��j0[�%HV�jH[��jT[�k`[�	k\[�gH`
M4k�[�,H_Lk�[�(H[ dk�[�KE�G`�
AG(�k]��E�A�G@�
AAG(�k�]�E�A�G`�
DAA@�kd^�F�E�E �D(�A0�DP�
0A(A BBBI$l@_�xH0j
A @l�_�oE�D K
AKdl�_�HI |l�_��E�DP{
AK �l�`�}E�G@R
AA�l a�	@�la�rF�B�E �A(�A0�D@�
0A(A BBBHmXb�.E�]8mlb�)E�^LTm�b�xN�B�B �A(�D0�a
(A EBBF�
(D BBBH��m�c�B�E�E �E(�A0�A8�FPl
8D0A(B BBBF|
8D0A(B BBBO�
8G0A(B BBBHD
8D0A(B BBBE8n<e�DLnHe��F�B�A �A(�D`thKpLhA`T
(A ABBDzRx�`����$-$��n�e��n�e�	�n�e�(o�e�6F�F�H �^AB<0o�e�J�B�E �D(�D0��
(A BBBIpo�f�!�o�f�%HVL�o�f�wF�B�B �H(�G0�A8�G�$
8A0A(B BBBA0�ok�hE�C�D0g
DAH\FA$ pTk�*E�D�I IIAHp\k�fA�Q
F8dp�k�/F�B�A �G(�G0�
(A ABBD�p�m�F�A�D �L�p4n�,B�B�D �A(�G@u
(A ABBEu
(A ABBEqo�$qo� 8qo�SE�G x
AA \qHo�PE�G u
AAD�qto�F�L�L �G(�A0�x8L@L8A0A
(A BBBA m'!��q�o�8�q�o�RF�E�D �D(�F0R
(L ABBL(,r�o�BF�D�D �_
ABHXrp�(lrp�:F�D�D �Y
ABF�rp�HH z
A�rPp�~H U
C�r�p��r@q�!HX�rXq�%HXspq�l(s�q�HK@s�q�BTsr�=lIls8r�"HX �sPr�fE�G 
AD�s�r�0E�S
HIL�s�r��F�I�B �B(�A0�A8�G�y
8D0A(B BBBFHt<{�J�B�B �B(�A0�A8�DP1
8D0A(B BBBDdt�~�xt�~� �t�~�yA�G0j
AA�t�E�O$�t�TE�A�J wGA �t@�yA�G0j
AAu��E�O$4u��TE�A�J wGA0\u��B�D�A �G@�
 AABA8�uD���F�E�D �D(�D@\
(A ABBG$�u��BE�N�O VDAL�u��F�F�B �D(�A0�n
(A BBBHr
(D EBBI�q��,Xv́�o	F�O�A �5
AXL �v���L�R
R�v،�
�vԌ�	�vЌ�	�v̌�
$�vȌ�ME�D�D {CA$w��#L�SA�@w��{r
Cn<`w���B�B�B �A(�A0��
(A BBBH �wd��|E�{
PC
O�w���DTX
DS�w��HIH�w���B�B�B �B(�A0�A8�D�K
8A0A(B BBBEHHx\��B�B�B �B(�A0�A8�D�K
8A0A(B BBBE(�x���pA�D�G@\
AAA�x��E��0�x����F�D�A �D@�
 AABD yT��E�G0�
CA4y�>E�n
EPy��HIhy���HI�y��&HV
A�y��2A�]
BM�y8��PEAD(�yl��A�D�G�Q
AAAz���*DW
A0 zԖ�B�D�D �F@�
 AABDTz���HIlz���HI�z���HI�z���"IQ
A�z̗�HI�zԗ�$HO
F�z��&HQ
F{���HI {��84{��B�D�A �h
ABF^
ABGp{Ԙ��{��6Q�O��{���{��	4�{���B�E�A �A(�D0�(A ABB|t��AAK8|x��F�B�A �A(�D@�
(A ABBEX|���EK�h
F0t|0��F�A�A �D0s
 AABE4�|���E�A�D C
DAF}
MAE�|4��AAK�|8��EK�h
F }l��A�D `
AJ<<}h���B�B�B �D(�D0�A
(D BBBG|}��(�}$��9B�I�H �^EBH�}8��B�I�E �B(�A0�C8�F`H
8C0A(B BBBA~|��8AAIH$~���B�E�E �B(�D0�D8�F@a
8C0A(B BBBG8p~��`B�E�D �C(�D0q
(D ABBA�~��VG�j
G�~\��#HS�~t��VG�j
G�~���#HS(�eF�D�A �q
DBN@��
T��nHhl��B�E�B �G(�A0�G8�I`�
8A0A(B BBBH����
����
����<�D���B�B�A �A(�G��
(A ABBH$0���E�G
I����
G,X�\��mE�C
B�E�L����
D �����fE�G F
AE(����nE�A�J0I
AAE(؀,��E�A�D0Y
AAK ����E�D \
AJ (����E�D \
AJ(L�h��E�A�D0d
AAH@x�ܭ��F�B�B �A(�A0�D@�
0A(A BBBH �����fE�G F
AE(�Ԯ�nE�A�J0I
AAE ���E�D \
AJ 0����E�D \
AJ(T���E�A�D0d
AAH8��d���L�A�A �L
ABCB
MBE@������B�J�I ��
ABAF
AFSAABL����B�E�D �D(�G0�
(G ABBHX
(G ABBL(P�Բ�E�G�D@h
AAF |�H��E�D e
AA0������F�A�A �D0�
 AABH8ԃP��F�B�A �A(�D@�
(A ABBG�$��>H[
EU@0�D���F�B�B �A(�A0�D@�
0A(A BBBHt���-K�g
F����?Hh
H��$��GHo
ĪX��MH_
QI����@H^
J����GHu
C($���iE�D�D r
DAL0P�$��tE�D�D n
CAQXCA(��p��hE�G�D j
FAG�����^Hk
EXЅ��QH{
E�8��IHw
A�l��YH@
H$$����D �
Ft
DN
B(L���L�D�D �v
FBF(x�|��xL�A�D �z
AGE,��н�F�H�D �a
ABJLԆ@��F�B�A �A(�N0�
(D ABBK�
(H DDBI($�p��E�A�Dp�
AACP���lH[
M$l�X��zD �
GN
JV
J �����E�G0p
AC(��<��E�A�D@o
AAE(����E�A�G��
AAC����$����	8����	(L����bM�A�J �qASx����$�����2E�D�N QDA8����F�B�H �A(�Q0Z
(D ABBK@�d��F�E�E �D(�C0�Fpp
0A(A BBBK04�0���F�D�A �D`�
 AABD(h����YE�A�F0E
AAA8����F�B�G �A(�D@�
(A ABBA0Љ����B�A�A �F0Y
 AABI�P��/E�W
LF$�`��	08�\��rE�A�Q z
DAJLDAl����0HQ
GI�����1E�k�����H0d
DĊP��L؊L��F�B�B �B(�A0�A8�D�j
8A0A(B BBBJ((����YF�D�D �k
CBBT����sE�N
EPt� ��kB�B�B �B(�A0�A8�G� I�!�
8A0A(B BBBI,ȋ<��A�C
D��K���,
AL��,��F�B�B �B(�A0�A8�G�W
8A0A(B BBBJDH����F�B�B �B(�A0�D8�DP�8D0A(B BBB0��t��B�D�D �G@W
 AABDH���}F�B�L �J(�F0�C8�D@l
8D0A(B BBBA0����F�L�A �D�v
 AABG(D�����E�C
K�����
C$p�T��:E�D�D jAA��l��KH0}
A �����dE�Q v
AAL؍���x
F�B�B �E(�A0�D8�D��
8A0A(B BBBHX��p<��cB�J�B �A(�A0�|
(C BBBKU
(A BBBLF
(E BBBGA
(E BBBL(���F�M�A �A(�G�܎��EAD4����?F�E�D �D(�D0\(F ABB0���	LD���MF�B�B �B(�A0�A8�G�
8A0A(B BBBD(�����E�A�D �
AAD����H G
A܏(�qEAD0����MEAD���EAD0���E�D0L�X�EADh�L�>H p
A\��p�B�B�E �E(�A0�A8�D�}�E�b�A��
8A0A(B BBBC���HB I$���<E�RZ FAC(���HN$@�	�0E�F�L IJAh�	�$HTL��$	�F�G�A �A(�D0�
(D ABBET
(D ABBALБ�	�F�B�B �B(�A0�A8�D�4
8A0A(B BBBHL �T�F�B�B �B(�A0�A8�D�
8A0A(B BBBH8p���E�Q�D �
(K0l(H u
MAN����H�̒h�"A� �| �!���!�<A�V��!�
,��!�@��!�"HT��!��B�D�B �B(�A0�D8�Op�
8A0A(B BBBA���#����#�0ȓ�#�7B�D�D �G0�
 AABEH���$��B�B�B �B(�A0�A8�GP�
8D0A(B BBBBH�<%�=AAI (d�`%��A�C�D0q
AAE��$&�)H`L��<&��B�B�B �D(�D0�^
(D BBBJH
(A EBBAH���&�B�B�B �B(�A0�A8�D`A
8A0A(B BBBG,D��'�GA�E
B�S�����
E,t��)�A�F
H����H�A
H0���+�?B�D�G �F@g
 AABB ؕ�,�FA�R
ER
AL���,�&
B�B�B �B(�A0�A8�D�B
8A0A(B BBBF@L��6�CF�B�E �A(�D0�G��
0A(A BBBK,���7�F�A�A �C
ABB��$8�D@�
A(ܖ�8�E�A�D@u
AAA�9�6A�Q
F](�<9�!HP@�T9�!HP X�l9�DM�X
�KCE�H|��9�F�H�D �A(�G0h
(A ABBHD
(I CBBE0ȗ�9�YE�K�D X
JAILGA$��:�EE�D�M iDAH$�0:��F�B�A �D(�G0Y
(C ABBK�(A ABBp��:�-H_���:�;H_H��;�#F�B�B �B(�D0�A8�NP
8D0A(B BBBG$��<�~E�H�D gDA(�@=�xF�A�A �lAB@��=�$H[(X��=�]E�G�D j
GAN(���=�OF�G�K �sABH��>��F�B�B �B(�D0�J8�D��
8A0A(B BBBE8���F�F�L�A �F(�G0V
(D ABBA8�G�YE�r
IT�PG�4E�\
OC t�pG�eE�G w
AD ���G�E�R
Ix
A0��(H�F�A�D �G0K
 AABG0��H�CE�D�G N
GAJDIA$�I��8��J�L��J�0`��J�F�A�A �G��
 AABA��`K�8��lK��F�U�A �A(�DP�
(A ABBE�P�7Hj��(P���P�$��P�	8��P�	L��P�ML�Q
Sh��P�UH�U
[(��0Q�qA�N�G0S
AAA4���Q�aB�D�D �o
CBBA
FBG`��Q�F�B�B �B(�A0�D8�G@c
8M0A(B BBBOV
8A0A(B BBBH\L��R��B�I�E �E(�A0�H8�D@V
8A0A(B BBBF~8A0A(B BBB��hS�(��tS�aF�A�D �RAB(��S�ZF�D�D �f
MBE(��S�E�D�G0|
AABD�PT�HKL\�XT�[B�B�B �B(�D0�A8�F�
8A0A(B BBBA(��hW�E�D�G0|
AAB؞�W�HS(��W�E�A�G v
FAF$�hX�gE�I�D ODAD��X�	X��X�H�Y
GSHx�Y�&B�B�E �B(�A0�D8�DPR
8A0A(B BBBHğ[�4H V
BS� [�-UX��<[�F�B�A �A(�G0j
(F ABBJc
(A ABBGW(F ABBT��[�	0h��[�IE�I�G O
AAJLGA0���[�M�A�G pDAF��` ��0РD\�oE�A�G B
DDIDEA0��\�=F�A�A �DP|
 AABD(8��]��A�A�G0w
AAFHd�0^�F�H�B �A(�A0�A
(F BBBAo(D HBB4���^�vI�D�G V
CABpFAI����^�.H�S
EI\��^�F�B�B �B(�A0�A8�Fp\
8A0A(B BBBAtxX�D�B�Iph��c�$H [4���c�^J�D�J X
AAFDJ�H�4���c�^J�D�J X
AAFDJ�H�4�d�vI�D�G U
CACoFAJ��((�\d�|A�A�G k
AAJ$T��d�*E�D�G TDA8|��d�~B�E�D �D(�G@�
(A ABBJ@���e�F�B�B �D(�C0�G@�
0A(A BBBE8���f��F�B�A �A(�D0�
(D ABBA88�lg�SI�D�G [F�A�J ��LA�A�t��g�H��h��	F�B�B �E(�A0�A8�D`2
8A0A(B BBBG@Ԥ�q�F�B�B �A(�A0�D@�
0A(A BBBDL�,u�F�B�D �A(�D0q
(D ABBAE
(F HDEE8h��y�F�B�A �A(�D@_
(A ABBE@��|�0F�B�E �A(�C0�GPo
0A(A BBBA4���RF�E�D �D(�D0q(D ABB` �$��-F�B�B �E(�D0�D8�G@x
8F0A(B BBBK�
8C0A(B BBBH@����F�B�E �D(�D0�GP�
0A(A BBBF8ȦL��E�M�D y(P0|(H �FO�������	,���	@���6T�@��:h�l��|�h��
��d����p��bE�_
Ljħ���&E�Y4�Ԇ�E�A�D E
DDIRAD4�\���E�A�D R
DDL_AD(P���mE�D�D i
GFM(|�H��mE�D�D i
GFM�����$�����2E�A�G _DA(����|F�P�A �aAB ���E�G0_
AD84�p��F�A�A ��
ABDw
DBKp�4��H��@��B�B�B �B(�A0�D8�DpI
8A0A(B BBBD4���jA�D�G ]
AAE\
AAB(�̌���A�G QD�D�4�P��H�L��$\�H��KE�D�D xDA(��p��zA�F�J0l
AAA��č�.He Ȫ܍�_�J ^AP� �H��yH@
HI
WD0�����F�A�D �J@g
 AABH0D�P��GF�A�A �G@�
 AABB`x�l���F�D�D �G0�
 CABDB
 FABE�
 DABH^
 GABHܫؔ�
L�Ԕ�C	B�H�B �B(�G0�F8�J�w
8A0A(B BBBJ8@�ԝ�DF�B�A �A(�GP@
(A ABBI@|���F�D�H �G0�
 AABM�
 DABNp��D��F�B�A �D(�G@e
(A ABBIO
(D ABBH�
(F DBBEb
(G ABBJt4�`��F�E�E �A(�A0�D�U�J�T�B�[�J�P�D�W�G�P�D�a
0A(A BBBA���x��F�B�A �D(�G0.
(D ABBEl
(D ABBKT
(G ABBH_
(F ABBF
(D ABBKH8����F�E�E �B(�A0�A8�D`U
8A0A(B BBBIH�����
F�B�B �B(�A0�D8�G`y
8A0A(B BBBEHЮԼ��B�B�B �B(�A0�A8�DP^
8A0A(B BBBJ8�h��	F�B�D �A(�QP9
(A ABBC(
���t0l����NF�A�A �GPp
 AABE8������F�B�A �A(�Dp�
(A ABBCLܯx��qB�B�B �E(�D0�D8�G�.
8A0A(B BBBF8,����F�B�A �D(�G`g
(A ABBG8h�l��F�B�A �D(�G`g
(A ABBGL��0��wB�E�E �E(�D0�A8�D�
8A0A(B BBBBH�`���F�B�E �B(�A0�A8�G��
8A0A(B BBBFP@��E�D�G c
KKG\
AABN
NAK\
AAJH��@	�s
F�B�E �B(�A0�A8�G��
8A0A(B BBBKd�t��B�B�E �B(�A0�D8�DP�
8D0A(B BBBJ�
8D0A(B BBBJH���2fH\���F�B�B �E(�D0�C8�D`�
8A0A(B BBBF�t���A��������t�����F�E�H �D(�G0�
(D ABBEt
(D ABBKW
(F ABBF
(D ABBKp�����hH u
C4��T�E�D�L0
AAJ`
AAFHس��FB�B�B �E(�A0�C8�G��
8A0A(B BBBD4$��"�A�D�F0Y
AAJ�
FAA \��#��E�G _
AD��t$��H o
IJ0��$%�F�A�A �DP�
 AABFԴ�&�H0c
EL�'�
B�B�B �B(�D0�A8�D�E
8A0A(B BBBH@�T1�8T�2�F�B�D �D(�F@^
(A ABBFH���2�%F�B�B �E(�A0�A8�F`�
8A0A(B BBBH�w���� ��5�J @
Fg
I �@6�J @
Fc
E8��6�L��6�#W`��6�t�7�%Y��7�RH0D
A��`7�	��\7�	 ̶X7�E�_
DJ
A8��7�F�B�A �D(�DP
(A ABBB8,�9�dF�B�A �A(�G`l
(A ABBE$h�L:�J n
HG
I�
H(��D;�E�C�G0M
AABL���;�F�N�B �B(�A0�A8�D@z
8H0A(B BBBG�8D� �DD�64�pD�5HH��D�B�B�E �B(�A0�L8�G��
8A0A(B BBBA��PE�!AAK��dE�BE�|̸�E�<A�G�D �s���q��ET�s��,�q��EQD�p��HX�LE�qB�B�E �B(�A0�A8�DP
8A0A(B BBBA,���H�A�C
D��L����
ALԹ�J�*B�B�B �E(�E0�D8�M�W
8A0A(B BBBFH$��M�B�E�H �E(�A0�C8�DP�
8A0A(B BBBJ(p��N�JB�D�C �b
IBJ���N�E���N�(ĺO�B�D�D �S
ABH��O�#E�](��O�2A�C
M������
G\|���DL��S�F�E�H �B(�D0�D8�DPb8C0A(B BBB���S�3i��T�AAKĻT�QػT�Z�(T�<w�TT�HI�\T�\W0��T�HI8H��T�B�B�A �A(�D0~
(D ABBA��U���U�4��U�pE�A�D J
DAGD
AAE�@U�@h��lU�!E�MH��U�oB�E�B �B(�D0�D8�D@�
8D0A(B BBBDH`��V��B�E�H �B(�A0�D8�DP{
8A0A(B BBBA��8X�*A�ĽPX�eؽ�X�E�MH��X��O�D�A �Z
CBE
FBEp���P ���(@�DZ�ZA�D�D z
ADHl�xZ�HI$���Z�CE�A�G pDA$���Z�EE�A�G rDA8Ծ�Z�B�B�A �D(�D@�
(A ABBEL��[�sB�G�B �E(�A0�D8�G�
8A0A(B BBBBL`��`�aB�E�E �E(�D0�D8�G�
8A0A(B BBBH��d�-hĿ d�/HfHܿ8d�uB�E�A �D(�G0
(A ABBHD(G ABBl(�ld�B�E�E �E(�D0�G8�DPjXH`KXAPH
8A0A(B BBBHp
8A0A(B BBBF,��e�bA�C
D��Q����
D�Lj�P�Hj�B�B�B �B(�A0�A8�G� I� �
8A0A(B BBBA40�l��A�A�D0N
AAJI
AAE(h��l�E�D�D P
AAA(��m�~E�D�D O
AAA4��Tm�E�D�D M
AATD
KAE���m�4���m��F�B�B �B(�A0�A8�DPx
8A0A(B BBBDD
8C0A(B BBBHW
8D0A(B BBBD`
8G0A(B BBBHd
8G0A(B BBBE��<o�(���o�EE�D�G Q
AAE(���o��E�A�G@�
AAI�G���8��p�	L��p�'`��p� E�Z|��p�'���p����p�?<��q�F�E�E �A(�D0�P
(A BBBLP����L�xq�F�B�B �D(�I0�Dp�xM�FxApk
0A(A BBBJ\��r�ZH�L
A,x�s�F�D�D �[
ABD\���s�uF�B�B �B(�D0�D8�J���K�K�A�m
8A0A(B BBBDJ�����v�H0��v�B�E�A �A(�D0}
(J CBBEb
(A ABBH|�w�:H q0��0w�F�D�D �F@�
 AABF���x�FE�c
PM0���x�xE�D�D q
AAHhFAL�y�F�K�B �B(�A0�D8�J�
8A0A(B BBBFR�����D{�^Y���{�b],���{�PE�C
D��L����
A@��~�B�B�E �D(�A0�G@t
0D(A BBBD0$��~��B�G�D �G@f
 AABB8X�L�F�B�A �A(�D0�
(D ABBAH����F�E�B �B(�D0�A8�G@n
8C0A(B BBBK8��4��F�B�A �A(�D@�
(A ABBJ4���qE�A�D a
DAHa
FAET�`�� h�\��/E�V
EE
E��h��HI��p��|w��؂�HI8����F�K�A �A(�G��
(A ABBG����8$����F�N�G �D(�G�J
(A ABBA$`�$��'E�C�G IIAL��,��F�N�B �B(�A0�A8�J��
8A0A(B BBBAX��|��F�B�E �E(�D0�D8�D�K�B�F�A�y
8A0A(B BBBK(4� ��+F�D�D �UABH`�$��F�B�E �E(�D0�D8�D��
8A0A(B BBBG(����E�A�G {
DACT��܈�LF�K�B �A(�A0�J�"�L�O�A�
0A(A BBBD(0�Ԋ�tE�G b
DN_
AEH\�(��F�B�E �B(�A0�A8�D`�
8A0A(B BBBJ �����HE�P
Kb
A4��(���r�A�D �XABF���X ���,���F�A�A ��
AGA4�`��!KNLL�x��XB�B�B �E(�A0�A8�D�F
8A0A(B BBBG�����[E�\
Of��Ȕ�8E�P����HI(����DJ�D�G ]D�C�T����F�B�B �A(�C0�D��
0A(A BBBK��H�L�A� zRx�������(Y��4�����L�����(F�B�B �E(�A0�A8�G�
8A0A(B BBBK(�t��E�H�D �
FOL<�H���DP�
GX���{8l����2B�D�J �~
ABG�
FBG$�����A�v
IL
Dd4�����A�M�G |
CAKZ
CABH����4B�B�B �B(�A0�A8�D`v
8A0A(B BBBBHT����KB�B�B �B(�A0�A8�D`�
8A0A(B BBBJ8�����B�L�D �C(�G0F
(A ABBH@������B�B�B �A(�A0�D@
0A(A BBBH( �����B�H�D �t
ABK@L�8���A�H�G J
CABZ
CABZ
CAB4����;B�H�D ��
ABHlAE@����B�E�I �D(�D0�D@~
0A(A BBBF,�Ȳ��A�C
B�E�E�H��
I0<�h��BB�A�A �D0p
 AABDHp�����B�B�B �B(�A0�A8�DPv
8A0A(B BBBBd��(��"X�E�B �F(�D0�A8�DP�8A0A(B BBBA������AP������T������($���VB�D�D �_
ABDP�$��C4d�`���A�A�N v
AAHo
AAG��(��������O������v<����B�B�B �A(�A0�H
(A BBBID�X��B�E�E �E(�D0�F8�D@z8A0A(B BBBLd����B�E�E �B(�A0�A8�G��
8A0A(B BBBAd����aB�B�B �B(�A0�A8�DP{
8C0A(B BBBK�
8K0D(B BBBIL���xB�B�B �B(�A0�A8�D�S
8A0A(B BBBA@l�H��pB�J�D �D0m
 AABKT
 AABAL��t��pB�B�E �B(�A0�A8�G��
8A0A(B BBBE8����'B�D�A �D(�G@A
(A ABBG,<����jB�D�D �U
ABA,l����WB�D�D �B
ABA,�����XB�D�D �C
ABA,��(��WB�D�D �B
ABA0��X��0A�C�G M
AAFDFA80�T��|B�E�D �D(�D0b
(A ABBE<l����B�E�E �G(�G0�]
(C BBBHH����B�B�B �B(�A0�A8�Dpn
8A0A(B BBBJ\������F�B�D �D(�J0V(A ABBJ����H0����x
(G� A�B�B�LLX�,���B�J�I �B(�H0�G8�J�i
8A0A(B BBBE����������(�����HE�D�G \
AAB����!J�L����yJ�f�4�P��H����\���2\U8t����F�E�D �C(�G@�
(A ABBG�����	�����.E�h����DE�~�����h�T��iE�t
Ge0����9E�N ^CHP���+B�B�B �B(�A0�A8�Dpd
8A0A(B BBBDL����;	F�B�E �J(�A0�A8�J��
8A0A(B BBBA����H���cF�B�D �I(�J0[
(A ABBHD(M ABBLL���F�E�E �E(�D0�C8�L@
8C0A(B BBBE���������0���AE�D�G T
AAJGHA8�(�eF�E�G �J(�G0\
(D ABBHHH�\�yF�E�E �G(�J0�v
(A BBBBQ(A BBB����+<����dK�E�A �A(�H0@(A ABBA����4����RF�B�D �A(�G0w(A ABBH ��aF�B�A �A(�D0r
(D ABBGD(D DBB(l�(�mF�D�C �w
ABI,��l�rF�D�D �@
ABG����H����F�H�H �E(�D0�A8�KP|
8A0A(B BBBA(�<�TH<����F�B�H �I(�D0�D8�J`�
8A0A(B BBBE��<�x����
��������!����
�������
���0V(���<���
P���d��� $x���bE�D�G OAA4��$�F�A�A �c
ABBMAB��|�$����-(���aE�G�H ~
AAD(,���E�D�H \
AAAX�|�UiRp���`����O�E�B �D(�A0�[
(C BBBAE
(A BDBBC(A DBBA�����P���O�E�B �E(�A0�A8�G@q
8C0A(B BBBGL������\<�x�F�B�B �E(�D0�D8�R@H
8A0A(B BBBED8F0A(B BBBD�����F�B�E �E(�D0�A8�G`�8D0A(B BBB��`�`��A����(H���F�I�B �B(�A0�A8�G��
8A0A(B BBBJLd��!�F�E�E �B(�A0�D8�J`P
8A0A(B BBBAH���$�%B�B�B �E(�A0�C8�J��
8A0A(B BBBAH�d%�L�E�B �E(�D0�A8�D`�
8A0A(B BBBC`L�8&�I�B�B �D(�A0�o
(A BBBHF
(F BBBFA
(K EBBCL���&�WB�E�B �B(�A0�D8�J��
8A0A(B BBBEL��*�CB�B�B �E(�A0�A8�G�
8A0A(B BBBF,P��5�PA�C
F���F���
A��d��=`�����F�E�B �A(�D0�\
(D BBBHA
(A BBBHs
(A BBBA@��<��\J�E�D �D(�G0`
(A ABBDN����<�X��P�d��$E�^4l�x��aJ�C�G p
AAJDD�A�(�����qJ�D�G NAAK����������
@������F�E�E �D(�A0�G��
0A(A BBBG�<����
F�E�E �E(�D0�D8�J�_
8A0A(B BBBH��M�T�A���J�Z�A���L�K�A�h�L�L�B������HEB OT������F�E�E �E(�D0�D8�GPYXW`FXAP^
8D0A(B BBBJH�,��	\�(��p�$���� ��	������������Y��`����\��f�����A���JE�r
II$0�$��BE�D�G jFAX�L��!F�T�`t�`��B�D�B �B(�A0�A8�D`e
8A0A(B BBBA\
8F0A(B BBBA`�����B�B�B �B(�A0�A8�DP�
8A0A(B BBBHT
8F0A(B BBBA8<�h��#A�A�J���`�M�A�z
AAAzRx����$�����(��9H��T��B�B�B �B(�A0�D8�D`�
8A0A(B BBBD�ț�? ��� 4����eQ�iF�H�X�DX�̜�B�B�B �B(�A0�A8�DP�8A0A(B BBBL��$��(B�B�B �B(�A0�D8�D�P
8A0A(B BBBE����DY$���0A�I�G \AA0���GDBH�L��BA�@(d����_B�I�C �MAB4�����jB�D�I �t
ABJO
ABAH����B�H�E �B(�A0�A8�G``
8A0A(B BBBA�P��%H(�l��&B�H�E �B(�A0�C8�GP{
8A0A(B BBBGtt�P���B�B�B �B(�D0�D8�D@x
8A0A(B BBBJD
8M0F(B BBBID8C0A(B BBBd�����B�B�B �E(�F0�D8�DpY
8A0A(B BBBD�
8M0G(B BBBElT���FB�B�B �A(�D0�\
(A BBBBG
(O EHBK�
(D BBBHD(G BBB�����[�B�B �B(�A0�A8�Dp�8A0A(B BBBF������hp�������������Qp�������
8A0A(B BBBAXT����B�J�B �B(�D0�A8�G���J�Y�A�l
8A0A(B BBBK\������B�F�B �B(�D0�A8�K�(
8A0A(B BBBBK�K�Q�A�H���WB�B�B �E(�D0�C8�I�Z
8A0A(B BBBA,\�(���B�A�A ��
ABD��������������ܿ�����&E�L
GM��������FH0x
AP,�8��mF�E�E �D(�I0�D@e
0A(A BBBBT0A(A BBB��T��9E�s��x��pH@b
A����3QU����(����E�A�I0_
AAH �t��E�G u
AF4���9Q�gHP����O�A�H �j
�A�B�KR
�A�B�KbABA��������	�����2E�l$�����4E�I�G \AAd�����L�B�B �B(�A0�A8�F@�
8F0A(B BBBKD8C0A(B BBBH������(\����A�D�DP
AAF����2E�l��@��	`��<��jF�D�B �B(�A0�D8�G`�
8A0A(B BBBDe
8A0A(B BBBA(�H��\B�D�I �}
ABA(H�|��]A�I�G0D
AAA$t����BE�E�G nAA(�����(F�D�D �RAB�����	H�����`F�E�E �E(�A0�A8�F`z
8A0A(B BBBG`(����F�B�B �B(�A0�A8�DP�
8A0A(B BBBHD
8F0A(B BBBEH������B�B�B �E(�A0�A8�D�W
8A0A(B BBBF ����{H{
Em
K��h��
L�d��B�B�B �B(�A0�A8�G�y
8A0A(B BBBD<`����aB�G�A �G0f
 AABE\ AAB4����5B�D�G �S
FDFAAB@����`B�D�D �G0e
 AABFT
 AABA4�(��B�D�D �l
ABGe
ABHHT����B�B�B �B(�A0�A8�DP�
8C0A(B BBBB���4���B�B�B �B(�A0�D8�G���I�I�A�[�s
8A0A(B BBBE��I�I�A�X���K�I�H�X��N�I�H�V�LH�l���B�B�B �B(�D0�A8�D�(
8A0A(B BBBE�����B�B�E �E(�A0�D8�D��
8A0A(B BBBB�
�D�W�A���E�S�A���G�L�B���E�K�A�l,����%B�B�B �E(�A0�A8�J�z
8A0A(B BBBE��J�N�A���B�L�D�H���+�BB�B�E �E(�D0�C8�G`e
8A0A(B BBBEH��,�B�B�B �B(�A0�A8�D`�
8A0A(B BBBDL4� .��F�B�E �E(�D0�D8�G�Y
8A0A(B BBBD���/�4���/���0���0��0���/����/���/�$��/�8��/�L��/�vd�P0�x�L0���H0�
��D0���P0��\0�<�h0��I�E�B �D(�A0��
(A BBBI��0�E�W8��0�44L�(1�B�I�A �A(�G0i(A ABB���1�3dN���1������(��1�CB�D�A �^
AEE(��1�wA�A�H r
CAA�2�^D H
D8�\2�	L�X2�TD_
A(h��2�eF�D�C �p
ABH���2�UE�o
D(��$3�eF�D�C �p
ABH(�h3�eF�D�C �p
ABH$��3�wIkN A(J0IJP0�4�iB�A�A �D0�
 AABBk
 AABAN
 AABA�� 5�RDW
A0��d5��B�D�D �G0z
 AABA�6�GM�a
AL�46�B�B�B �B(�A0�A8�D��
8A0A(B BBBD@��8�)T�9�Dh��9�,F�D�D �#
ABDm
HPKI
EBA8��t;�B�J�A ��
DEK{
HPM��<���<���<�EE�����/^LD�=�qB�B�B �B(�A0�A8�D�v
8A0A(B BBBB�~��#H��,P�uB�B�E �E(�D0�A8�D`I
8A0A(B BBBFH�`R�eB�E�B �B(�A0�A8�DP

8A0A(B BBBH@��S�T��S�h��S�8|��S�!F�B�B �A(�A0�(A BEB0���T�F�D�D �G�v
 AABA�U�E�LU�HI( U�IJ�A�D kA�A�$L8U�<E�A�D kAALtPU�0F�B�B �B(�D0�A8�D�]
8A0A(B BBBA�0Z�:E�-0�T[�F�D�A �G0v
 AABDP�[��B�B�B �B(�A0�A8�G� L�"I
8A0A(B BBBH$zRx��"������,��	0�0l��F�A�D �I��
 AABA8��l�F�B�A �A(�G��
(A ABBA���2E_,�n�YE�A�D0�7���t|
AAAlޓ�ET���+E_���:E�t$����E�A�M0�AA$�����E�L�A }AA������QE�44��H�m�\n�Hpn�CB�E�B �E(�D0�A8�D`D
8A0A(B BBBK�q�(�q�jF�A�A �e
ABH0�Xq�B�A�D �I��
 AABB0$r�ND`D
AzRx�`��ix,r�@F�I�D �8�Lr�B�F�E �A(�I�X
(A ABBA� s�OF�I�D ��Ps�OF�I�D ��s�4(�s�eF�B�A �H(�M0}(D ABB`�s�lG��
F|u�nH0L
D�lu�P8��u�F�B�D �A(�DP�
(A ABBJ0�w�F�A�C �D0�
 AABG(x{�1A�A�F `
CAAH�{�jH|
LYh�{�;||�E�SL�|�F�B�B �B(�A0�A8�I�
8A0A(B BBBB�\~�sHPe
A�~�	�~�,�~�K@�~�-T�$h�|Hz
FQ
GG
I�t�@H_
IK4���F�H�A �G��
 AABAzRx�����$ې�*L؂�tF�B�A �C(�D0r
(C ABBF](A ABB l��A�H �
AI@���F�B�B �A(�A0�D@�
0A(A BBBG�`��A�X�d��j	���fDQ
A\ 	��B�B�B �B(�A0�A8�D@g
8D0A(B BBBF\8C0A(B BBB�	t��GDN
AH�	����b�B�B �E(�A0�D8�D@�
8C0A(B BBBFH�	\��F�E�E �B(�A0�A8�DP
8C0A(B BBBDL4
���/B�B�B �E(�A0�A8�G�
�
8A0A(B BBBA �
p���A�MP~
AC�
���
(���K��
D8�
ܹ�/F�E�D �I(�D��
(A ABBFк�K��
A0t��D���K��
A8`$��"F�B�D �D(�D��
(A ABBI���K��
AX����2F�B�B �B(�A0�A8�G��
8A0A(B BBBA�#
�T�\$zRx��������,ь�P���3[d��9x,��
�(���4��I�p��	�l��IA�X
GdL����B�E�A �D(�J0i
(A ABBKD
(G ABBH8
��uHL
x��BB�E�E �I(�D0�A8�G`�
8D0A(B BBBJH�
|��2B�B�E �E(�H0�D8�GP�
8D0A(B BBBFd�
p���B�B�B �B(�A0�A8�Gpz
8A0A(B BBBK�
8A0A(B BBBBHL���B�H�B �I(�G0�A8�G`
8D0A(B BBBD`�\��
B�B�E �E(�A0�A8�G`�
8A0A(B BBBI�
8A0A(B BBBH8���F�E�A �A(�D0�
(D ABBCH8���B�G�B �B(�A0�D8�D@�
8A0A(B BBBF�����|���x���������������������E�M,���(E�^H���:`\��+F�B�E �E(�D0�A8�DPe
8A0A(B BBBF
8C0A(B BBBE`����+F�B�E �E(�D0�A8�DPe
8A0A(B BBBF
8C0A(B BBBEH$p��(F�B�B �E(�D0�A8�Gp�
8A0A(B BBBH@pT��F�D�D �G0w
 AABHR
 AABBH��@F�B�E �B(�D0�D8�Gp�
8A0A(B BBBKL��F�B�A �A(�L0�
(D ABBCM
(D ABBJP��	d��	`x��EF�B�B �B(�A0�A8�D`Z
8A0A(B BBBJ�
8A0A(B BBBD���H����F�B�B �E(�A0�A8�G��
8A0A(B BBBBL<(	�F�B�B �B(�A0�A8�D�
8A0A(B BBBDH��
�{F�D�B �B(�A0�A8�D��
8C0A(B BBBEH��;F�D�B �B(�A0�D8�Dp�
8A0A(B BBBH$�c8l�cL��c`$�ct��P���E�Q���1���2��?�D��@�k��	��x0��F�B�B �E(�G0�D8�D@�
8M0A(B BBBF�
8A0A(B BBBJL
8G0A(B BBBL(���#A�F�G`�
AAGH���B�L�B �B(�A0�D8�Gp
8A0A(B BBBK\$��B�B�B �B(�E0�D8�D@H
8A0A(B BBBIT8C0A(B BBB��T�\�AAG�`�DSN����}-B�B�B �B(�A0�A8�J��T�D�G�[�^
8A0A(B BBBD�	
�T�D�G�W��T�D�G�[�^
�T�D�G�W�
�T�D�G�W
�T�D�G�WZ
�T�D�G�W�
�T�D�G�WP� L�|F�E�E �E(�F0�D8�I@eHTPEXB`I8A0A(B BBBPLL�|F�E�E �E(�F0�D8�I@eHTPEXB`I8A0A(B BBBlxL�B��L�4��L����M�^�N�^�dN�*��N�L�|N��F�B�B �A(�A0�w
(F BBBA}
(A DBEG8H�N�5B�B�A �H(�G@�
(A ABBA(�P�pE�D�D0~
AAC�DP�)J�XF���XP��B�B�E �E(�E0�D8�D@T
8F0A(B BBBB�
8A0D(B BBBAj
8F0A(B BBBAS8C0A(B BBBL`�Q�G�E�A �D(�G0G
(C ABBID(F ABBA������Q����R�Ad V��R�0DO
A��R�8((S�E�~
EY
GZ
Fk8�S�'E�aT�S�h�S�|�S�ME�l
O��S�HKX�T�B�H�A �G(�M0\
(D ABBDt
(D ABBKD(G ABB0XT�B�A�D �G0�
 AABDL@�U��B�B�B �A(�D0�e
(C BBBGb
(A EBBD4�TV�B�E�D �E(�G0t(D ABB��V�AE�i
J��V�HHZ
NL W�HI(W�	\0$W��A�A�J�p�R�I�A�b�Y�N�B�W
AADR�Q�I�B�L��X�?B�E�B �B(�A0�D8�G��
8A0A(B BBBA ��[�yHB
FI
WD(�[�E�J 
AAF
AA0d\�AAKLh\�Px$`�\�6La
CKUc
M��]�+A�M
A��]�AAK8��]�B�E�D �D(�FPW
(A ABBF�H^�D^�0$@^�SA�I�L N
FAEWDCXl^�DE�R
IX@x�^�B�F�D �R
AKFR
CBIW
FBA��^�H t
A�l_�E�L�p_�(A�[ �_�AAN, �_�3dND �_�^E�F
E@d �_��B�B�B �D(�D0�D@�
0A(A BBBFL� �`��B�B�E �D(�D0�}
(A BBBKA(C BBBL� <a�;B�B�B �B(�A0�A8�G��
8A0A(B BBBA(H!,d�Vd�A�J TD�D�(t!`d�	A�J�G0�
AAEH�!De�F�B�B �B(�A0�A8�DpQ
8A0A(B BBBCL�!�g�$A�D�G N
AADj
AADt
AAAg
AAH@<"�i��B�B�B �A(�A0�D@�
0A(A BBBD@�"�k�+B�B�B �A(�A0�D@�
0A(A BBBG`�"pl�B�E�E �B(�E0�A8�GP�
8A0A(B BBBF�
8A0A(B BBBI((#n�A�D�G p
DAG`T#�n�7B�B�B �E(�A0�A8�GPz
8D0A(B BBBE|8J0D(B BBB�#�o�qE�S
A(�#�o�A�A�G �
AAAL$pp��F�B�A �A(�G0`
(D ABBFl
(I ABBF8T$�p��F�B�A �A(�G0X
(D ABBFH�$�q�/F�B�B �B(�A0�A8�GP�
8D0A(B BBBF4�$xr��E�A�G b
AAGe
AAA %s�E��
Ct
AH8%�s�rF�B�B �E(�D0�A8�DP
8D0A(B BBBI<�% v��B�B�B �A(�A0�?
(A BBBBH�%�y�=B�B�B �E(�D0�D8�GP
8A0A(B BBBE(&�{�gA�D�G0A
AAA`<&|�JB�B�B �E(�D0�E8�JPJ
8F0A(B BBBAa
8A0A(B BBBE(�&�~�LF�D�D �zAB�&�aH@S
A�&l�NH@@
A'��E�L| '��6F�E�B �B(�A0�D8�D`�
8A0A(B BBBDP
8D0D(B BBBA,
8A0A(B BBBA4�'d���V�A�D �[ABG���H ���4�'���F�D�D t
DBHU
DBE(d��HIH((l��B�D�B �B(�A0�A8�G�c
8A0A(B BBBHt(���6A�P
AH�(��B�B�B �B(�A0�D8�D`�
8A0A(B BBBC�((��%H\�(@��%H\0)X��OE�D�F O
CAFbCA@)t��E�L\)x��p)���3E�m�)���4L�g(�)̐�MJ�A�M dDAG���)��#E�Q
H�)��3E�m*(��E�Y((*,��QE�A�D Z
JAET*`��h*l��|*x��$�*���5E�D�J [AA$�*���/E�F�N IGA�*���E�U�*���Eq�L�L+ܑ�%B�B�A �D(�J0�
(D ABBH
(D ABBG(h+���\A�D�G z
DAEH�+��B�B�E �B(�A0�D8�DP
8D0A(B BBBKx�+D���F�B�B �B(�D0�A8�D@o
8A0A(B BBBBd
8F0A(B BBBEL
8F0A(B BBBEH\,���
F�B�B �B(�A0�A8�G@X
8D0A(B BBBF�,\��&E�Y�,p��-E�`$�,���@E�I�D hDAH-���@B�B�B �E(�D0�A8�Dp
8A0A(B BBBDT-���)E�R
IDt-���"�-���"OX
IYO4�-̞�CF�B�D �D(�G0U(G DEB(�-��RE�A�G m
DAI.��!HQH$.0��@F�B�B �B(�A0�D8�Dp�
8D0A(B BBBG$p.$��*A�H�D WDA`�.,��B�E�B �D(�A0��
(D BBBEx
(A BBBIP
(A EBBF(�.ئ�GE�D�DPZ
AAG$(/���tE�F�G \DAP/T�� d/`��E�G X
AK�/��SA�Q�/0���/<���/H��,�/d��T^�`�H�/����F�B�B �B(�A0�A8�G@�
8D0A(B BBBEdH0\���P�B�B �B(�A0�D8�GP
8D0A(B BBBBp������HP������d�0ĭ�c�E�B �B(�A0�A8�DP������XP������
8A0A(B BBBE$1����E�U
FF
JtL@1ı�B�B�B �B(�A0�A8�D�
8A0A(B BBBB(�1$��E�A�L0x
AAD(�1����E�A�L0�
AAE0�1l��@F�A�A �L0�
 AABJ02x��@F�A�A �L0�
 AABJ0P2����F�A�A �L0�
 AABB$�20��2E�D�I VAD0�2H���F�A�A �L0�
 AABB$�2��2E�D�I VAD03��F�A�A �L0�
 AABE$<3���2E�D�I VAD0d3���F�A�A �L0�
 AABE$�3��2E�D�I VAD�34��5H�3`��{F�B�B �B(�A0�A8�GP�
8A0A(B BBBIH 4���F�B�B �B(�A0�D8�G@@
8D0A(B BBBKHl4��MF�B�B �B(�A0�D8�GPy
8D0A(B BBBBH�4��/B�B�B �B(�A0�D8�DP�
8A0A(B BBBF5���<H_
IG$5��HI\<5��F�E�A �A(�D0�
(A ABBJT
(D ABBKD
(D ABBK�5���	H�5���XB�B�E �E(�A0�D8�DpV
8D0A(B BBBF8�5���Z�B�I �G(�J0x
(D ABBI86L��L6H��<E�R
IT(l6h��E�A�G m
AAAH�6����B�B�E �B(�D0�A8�G`/
8D0A(B BBBE�6���E�T87���F�B�A �D(�G0�
(A ABBE<7x��>E�xX7���3T�OE�Lt7���F�B�B �B(�A0�A8�D�u
8A0A(B BBBGL�7��M�B�B �A(�A0�
(A BBBGa
(F BBBA@8���F�A�A �G0{
 DABGg
 DABJX8��� E�S(t8���A�D�D0Q
AAAL�8��7F�B�B �E(�G0�A8�J��
8A0A(B BBBK(�8���-F�D�F �YABL9���lF�B�B �B(�D0�D8�G�A
8A0A(B BBBJ(l9��-F�D�F �YABL�9���B�B�B �E(�G0�A8�G�
!
8A0A(B BBBK�9����9���(:���1F�D�D �_AB(<:���.F�D�D �\ABLh:����F�B�B �B(�A0�A8�G��
8A0A(B BBBJ@�:<��B�B�B �D(�A0�D@�
0D(A BBBG8�:���4F�A�A ��
ABBi
ABD(8;���A�D�D0}
DAEd;���fD x
DL�;���aB�B�E �B(�A0�D8�D�$
8A0A(B BBBF�;���;���;���H<���F�B�B �B(�A0�A8�DPt
8A0A(B BBBA$X<L��*E�D�I IIA8�<T��BF�B�A �A(�D@(
(A ABBA$�<h��*E�D�I IIA�<p��DE�G vAL=���MF�B�E �B(�A0�C8�G��
8A0A(B BBBKп�[��h=���)HV
BH$�=���H�
HA
O|
L�=��<H n
A�=(��H {
E0�=���7F�A�A �D@�
 AABD>��-0>��8D>���B�D�A �P
ABF\
DBF�>d�JUV(�>��]F�D�D �h
ABA�>��IP�OA�N�(�>�A�@
Or
ND
LD8?��jF�E�A �A(�F0m
(G ABBLL?��L`?��F�B�D �A(�D0J
(D ABBDM
(D ABBJ$�?�*E�D�I IIA�?�/E�X
KF�?,�@(�H S,$@0�uF�G�D �C
JBHHT@��F�B�B �B(�A0�D8�D@�
8D0A(B BBBCH�@���B�B�B �B(�D0�D8�G`�
8A0A(B BBBFH�@h
�F�E�B �B(�A0�F8�G`�
8A0A(B BBBE@8A,
�
F�B�E �D(�A0�F@�
0A(A BBBE0|A��F�D�A �G@�
 AABEL�A���B�E�E �D(�D0�L
(A BBBIr
(A BBBGLBD�Q
F�B�E �E(�D0�D8�G��
8A0A(B BBBA��W�8dB@��F�E�A �A(�GP�
(A ABBE0�B��F�A�A �L@�
 AABEH�B`!�B�B�B �B(�A0�D8�Dp�
8A0A(B BBBC C�"�)E�R
ID@C�"�<E�R
ITH`C�"�B�B�B �E(�A0�A8�Dp
8A0A(B BBBF�CH$�DE�R
IX�Cx$�<E�R
ITL�C�$�B�B�B �E(�A0�C8�D��
8A0A(B BBBFl��U��4PDT,�TF�D�D �V
ABIVDE(�D|,�<F�D�D �V
ABIL�D�,�F�B�B �B(�D0�C8�G��
8A0A(B BBBF(E�3�-F�D�F �YAB$0E�3�QE�_
LJ
ND$XE,4�YE�`
KK
UD0�Ed4�nE�D�D t
FDETDA8�E�4�zF�A�D �L
ABFA
DBI`�E�4��F�B�B �B(�A0�D8�DP�
8D0A(B BBBND
8J0G(B BBBKTFp5�9E�_
LDtF�5�E�N`�F�5�B�B�E �D(�G0��
(D BBBGM
(A BBBLG
(A EBBGH�F�6�F�B�B �B(�A0�A8�Jp
8A0A(B BBBFH@G�8�F�B�E �B(�A0�A8�Dpb
8A0A(B BBBG(�G<�<A�C�D@�
AAJ�G,=��G(=�(�G$=��E�D�DPZ
AAG$H�>�*E�D�I IIA4H�>�Mu(HH?�/F�D�D �SGB4tH?�E�D�G �
AAJT
FAE\�TR�H�H�?�wF�B�B �B(�A0�A8�D@�
8D0A(B BBBB(IB�E��
BN
BL
L8I�B�TE�m
NOLXI<C�B�E�E �E(�D0�A8�G��
8A0A(B BBBIT�IE�F�B�B �B(�D0�A8�DP\XH`WXAPM
8D0A(B BBBEJ�E�4J�E�aF�A�D �j
DBE]AB$LJF�1E�A�G TJA$tJ0F�1E�A�G TJA$�JHF�)E�D�G IJA�JPF�ai�X�W��J�F�-U(�J�F�4F�A�D �eABH$K�F�mB�B�E �E(�D0�D8�D`�
8D0A(B BBBHLpK�I��B�B�B �E(�A0�C8�G��
8D0A(B BBBFh�K�V�F�E�E �E(�D0�D8�GPoXE`I8A0A(B BBBEP]
8J0A(B BBBH(,LHW�RF�D�D �q
ABFhXL|W�F�B�D �D(�J0�8H@T8A0N
(D ABBHK
(G ABBIg
(A ABBK$�L Z�)E�D�G IJA$�L(Z�1E�A�G TJA$M@Z�)E�D�G IJA$<MHZ�1E�A�G TJA$dM`Z�)E�D�G IJA$�MhZ�1E�A�G TJAL�M�Z��F�B�B �E(�A0�A8�D�}
8A0A(B BBBD(Na�6E�A�D W
GDE(0Na�3F�D�D �XDD,\N(a�{E�C
D��L����
I(�Nxb�E�D�G@y
AAEL�Nc�tB�B�B �B(�A0�D8�G��
8A0A(B BBBK(O<i�.F�D�F �OHB4O@i�HO<i�.E�G `A,hOLi��E�C
F���F��V
F\�Ol��F�B�A �D(�D0G
(D ABBGK
(D ABBDG
(D ABBE|�O�l�O�B�B �B(�A0�D8�D@
8D0A(B BBBK������P@������D
8A�0A�(B� B�B�B�JdxP�m�Cv�I�D �A(�I0J(C ABBA����X0����q(A ABBA����P0����4�P�n�F�A�A �o
FBAe
ADNLQ�n�O�A�D �h
CBGn
FBBG
�A�B�F`���4hQ�o��r�A�A �fABC���P ���0�QDp�B�A�D �G0j
 AABD(�Q�p�Vd�A�J TD�D�R�p�/E�X
KFh R�p�$O�B�A �A(�D0P
(F ABBFq
(F ABBD|(C ABBD����H0����0�R�q�QE�G�G Z
CAODGA(�R�q�Vd�A�J TD�D�L�Rr�\F�B�E �E(�D0�A8�G�
8A0A(B BBBC@<Sx�3F�B�B �D(�D0�F@�
0A(A BBBGH�Sy�F�B�B �E(�D0�D8�D��
8A0A(B BBBD8�Sx{�(F�B�A �A(�G@�
(A ABBDHTl}�bF�B�B �B(�A0�A8�G@�
8A0A(B BBBIdTT�~�jB�B�B �B(�A0�A8�D`&
8A0A(B BBBB�
8D0A(B BBBO8�T���B�B�F �A(�M@�
(A ABBG0�Tl��LE�D�G Y
GAODFAH,U���ZF�B�H �E(�A0�D8�G`5
8A0A(B BBBH\xU���F�B�A �D(�D0G
(D ABBGO
(D ABBHS
(D ABBA0�U<��bE�D�G j
DAAUGA8Vx��F�B�D �A(�GP�
(A ABBF@HV\��F�B�B �A(�A0�FP�
0A(A BBBA0�V؈�7F�D�A �D@u
 AABHL�V��F�B�E �B(�A0�A8�D�
8A0A(B BBBJW4��L$W��F�B�B �B(�A0�A8�G��
8A0A(B BBBF tW���gE�G0T
AA,�W���F�A�A ��
ABE �W���E�X
KF
B�W��KhLXD���F�B�B �D(�A0�{
(A BBBGa
(C EBBK$PXԕ�1E�D�G KJAxX��DE�l
G �X ��IE�^
EW
E(�XL��BF�D�G �Y
ABK<�Xp��F�B�B �A(�A0�I
(A BBBD8$Y���F�B�A �A(�D0c
(D ABBFL`Y����F�B�B �A(�A0�n
(A BBBOj
(A BBBG�YT��)E�X
CD�Yd��9a�Y���EgI�YȘ�DgI<Z��F�I�B �A(�H0�E
(H IBBLTZЪ� hZܪ�)|Z���)�Z��)�Z0��)�ZL��)�Zh��)�Z���)�Z���)[���)[ث�*0[��	D[��}A�D�G 8d[P���B�B�D �A(�D0�
(A ABBA$�[��2A�D�D cDAH�[��~B�E�B �B(�D0�A8�D`>
8D0A(B BBBA4\@��B�D�D �z
ABIc
ABJ(L\���rB�A�A �
ABE$�>�,�\خ�H�\Ԯ�B�B�B �B(�A0�D8�D`�
8D0A(B BBBG�\���1l]�C]��-(]��<<](���F�B�B �D(�A0��
(A GBBKD|]����r�A�D �G
�H�B�HACBJ���P ���p|=�D�],���r�A�D �G
�H�B�HACBJ���P ����.=�P4^����N�B�B �A(�A0�
(C BBBDQ(F BBBC�����P�^���N�B�B �A(�A0��
(A BBBDQ(F BBBC�����H�^���F�B�B �B(�A0�A8�F`^
8A0A(B BBBD0(_���JA�H�G U
AAIKIAL\_���F�B�B �A(�A0��
(D BBBEN
(K DDEE4�_���F�A�D �Q
ABANKI<�_��
F�B�B �A(�D0��
(D BBBEH$`��F�B�A �D(�D0Y
(D ABBEn(D ABB4p`D��B�D�H ��
EBDDAF0�`̸�E�I�D @
DAIbDAH�`(��F�B�H �B(�D0�D8�Dp[
8A0A(B BBBE`(a���B�B�B �B(�D0�A8�D@K
8A0A(B BBBJ�
8D0A(B BBBF(�aX��]E�G j
AIN
AA�a���<O�Q
HL0�a���F�D�A �G0q
 CABG@b��F�D�A �G0F
 DABAO
 DABA Pbd��FA�G p
AGHtb���F�E�A �A(�D0I
(D ABBED(J ABB,�b��F�D�H ��
ABA�bD��HIcL��!HQ cd��nE�t
G8<c���UF�B�A �A(�GP�
(A ABBGHxc���F�B�B �B(�A0�A8�G`�
8A0A(B BBBH@�c���F�B�B �A(�D0�D@.
0A(A BBBG`d���F�B�B �E(�D0�A8�D`�
8D0A(B BBBCX8I0H(B BBBHld���6F�B�E �B(�G0�A8�DP�
8A0A(B BBBE�d���	8�d����F�E�D �D(�J��
(A ABBA0e,���F�D�D �J��
 AABA0<e���F�A�A �J��
 AABA0pe����F�D�D �G��
 AABA(�e`��jE�D�G j
DAI8�e���R�A�A �x
ABAyABD���(f��jE�D�G j
DAI<8fL��F�B�A �A(�J�
(A ABBCxf���	4�f���TE�A�F ]
AAED
MAE(�f���E�H�D �FO�fT��JH}g���iH g���B�B�B �E(�H0�D8�F@J
8H0D(B BBBE(lgH��A�D�G0r
AAH�g���.0�g���yr�F�I O
CAD^AA�g4��+(�gP��UA�F�G0
AAAd�<3�"44hp��A�D�F O
CABn
CAF0lh���|E�D�G P
CADLFAP��2�@�h��-B�B�B �D(�H0�GP�
0A(A BBBE8�h���kB�E�D �I(�D@�
(A ABBE04i ���B�D�A �F0C
 AABD8hi���@F�B�A �A(�D@&
(A ABBAH�i���F�B�B �B(�A0�A8�Dpu
8A0A(B BBBG8�i��B�E�A �A(�DPs
(A ABBJ,,jx��B�I�A �M
NBO\j�� HT$tj��)E�D�G IJA�j��E�L�j��3E�J
A^8�j<���F�A�A �N
ABG�
IBY8k���EF�A�A �L
ABIH
DBB0Pk���F�J�D �J`b
 AABD$�k���)E�D�G IJA�k���E�L�k���)E�S
HD�k���*�k���@l���3E�A�G c
AAF�
DAGD
IAETl���5 hl���?H[
EH
HF�l��*�l4��3L�f�lX���lT��#�lp��#�l���#m���# m���34m���#Hm��#\m(��0pmD��04�m`��F�A�A �u
DBMv
ABA8�m���F�B�A �A(�D0L
(D ABBE �m���[E�G@H
AA n���gE�G@T
AA@n+��NH@E$Xna�� E�D�D FJA�nY���np���n|��HQ�n���HQ�n���HQ�n���HP$o���xE�A�L `DA0o���E�PLo���`o��	to���o���u@�oh���F�B�B �D(�H0�GP�
0A(A BBBH�o��sH�op���F�B�B �B(�A0�A8�D`�
8A0A(B BBBAP@p��P�B�E �F(�A0�D8�FPp
8A0A(B BBBFP������<�p���wL�E�E �D(�D0�P(A BBBA������p����p���
�p���q���
$q���
8q���Lq���`q��tq��
�q���q��k�q4��)�qP��8�q|��)�q���<r��
r���8(r��B�E�D �A(�D�J
(A ABBH$dr@���A�C
B�K��
I �r���_B�I�F �Dp(�r4��vA�A�D0Z
AAA�r����r���s���"E�\ s���.He8s���,HcPs��)H`hs��5Hl�s��)H`�s��+Hb0�s4��vE�H�G Q
DAF@DA�s���2L�at���,Hct��� HW0t��4E�nLt��(HTdt��6E�p�t$��(HT�t<��+H_�tT��0Hg�tl��#HU�t���+Hb�t���E�Yu���1H�h0u��E�SLu��KDFdu�� HO|u��>Dy�u0��HM4�u8��E�A�J �
DAAD
FAA@�u ��B�E�E �D(�A0�NPp
0A(A BBBA(v���9Ha
GDHv���!\v��*EAD xv��WA�D@�
AEzRx�@� �$��v��'E�a�v���HQ4w��sF�B�D �A(�D0X(D ABB(8wL��4A�D�D W
AAAdwG$�2E_|wH��5A�l
A<�wl��6F�B�B �A(�A0�
(C BBBK�wl��	�wh��
xd��x`��E�V80xd��B�B�A �D(�G0T
(A ABBF4lx��E�A�D0x
AADY
AAE�x��	�x��	$�x��^E�D�D0NAA(�x��nE�D�D0d
AAE$ y�GE�A�D wDA@Hy<�IF�B�E �D(�A0�IP�
0A(A BBBG(�yH�)E�A�D0T
AAH�yL�#8�yh�@F�E�D �F(�D`�
(A ABBE$zl�0A�D�D aDA80zt�)M�A�A �j
ABD�
ABL@lzh�M�A�A �j
ABD�
ABF@HB�zD�}Hz
Fp �z��A�G0W
AH �z �A�D@t
AF{��A�z
E(4{`�zA�A�F0P
AAF`{��<at{��1DX
LH�{	�$E�T�{	�$E�T�{(	�9E�h
CD�{H	�9E�h
CD|h	�&E�`8(||	�3B�E�D �A(�G`�
(A ABBDd|�
�1<x|�
�D�H�O �D(�N0�C
(A BBBI0�|�CA�D�G P
HAKPAA4�|8�A�C�D Q
CACH
CAD($}��A�A�Dp�
AAHzRx�p�� q�(�}d�vM�D�D �l
CBJT�}��R�B�E �A(�I0�D
�(G� G�B�B�GZ�(A� B�B�B�(~
�ME�A�D h
IAE`0~4
�BF�B�B �B(�A0�D8�I@�
8C0A(B BBBHT
8F0A(B BBBA�~ �8�~,�F�E�G �D(�D0T
(D ABBA �~��N��
�J`�<�EA�( t�WE�A�G y
HAA8L��:F�B�D �A(�K0�
(D ABBC(���ME�D�D p
AAA,���F�D�D �K
ABD,�@�F�A�A �k
DBE(���GY�A�L TD�D�(@���QE�D�D V
DAHl���$HM
A���$HM
A$�� �MA�O�D nHA(̀H�WB�D�H �o
DBMH��|�B�E�A �A(�F0a
(C ABBHT(A ABB(D���A�H�G }
AAA }���0�'E�] i���0�jE�
D<Ё��M�E�D �E(�H0V(A ABBA�������$E�^$,���FE�D�D sDA0T��{E�A�G M
DAAUDA��\�WE�Q����E�Y8����F�A�A �O
ABFR
ABA(����TB�A�A �w
ABA@(�,�[F�E�B �G(�D0�D`�
0A(A BBBA$l�H�)E�D�G IJA(��P�}F�D�G �|
ABH,����P�A�I S
FADX��H���B�B�B �B(�A0�A8�Dp�
8A0A(B BBBFd ��(P���E�D�D c
DAA|�����4���pA�E�D |
HAID
AAB܄H�&HO
A��\�$HM
A�p�+HT
A0���$HM
AL���1E�]
A$h���EA�E�N gDA����
@����qB�E�E �D(�A0�Dpm
0A(A BBBF,���F�K�D ��
IBL���E�N4���1E�]
AP���$HM
A(l��E�A�G a
MAL0��|�0F�A�A �GP~
 AABG@̆x �F�A�A �T
ABAR
CBIlIB0�� ��F�A�A �K0O
 FABE(D��!��E�D�G@n
AAHp�T"�Fq�N���"�	0���"�F�D�A �Fpw
 AABD ԇ�"�FO�e
DFB���#�8Y�H#�%HV$�`#�5Hl0<��#�>E�J�G T
AADKAA$p��#�hE�H�D IHA���#�	���#�	���#�	Ԉ�#�	��#�(���#�X�A�D �AAA��(�L$�
<�H$�
�X
EF$\�8%�3E�D�G SJA ��P%�pE�I0[
AA@���%�}B�D�D �M
ABF^
ABGqABH��%�F�B�E �I(�A0�C8�G��
8A0A(B BBBB 8��'�A�G0A
AF|\�(�B�B�B �B(�A0�D8�G@
8A0A(B BBBFA
8F0A(B BBBHl
8E0A(B BBBN(܊�)�-B�D�D �[AB,��)�2B�H�J��
ABJ 8��+�TA�K@0
ACD\��,�+B�A�DPl
ABJO
ABFL
ABI���.�HN(���.�AF�A�H �_AN��.�7H_
IF�/��/�E�T8�/�eH0W
A T�p/�sE�S0T
AAx��/�!���/�!8��0�M�E�E �A(�A0��(D BBB܌�0�2Hi<��0�oE�D�D y
DAEM
AAAIDA4��0�2E�T
A(P�1�_F�A�A �SAB|�81���41�<��@1�<B�E�D �A(�G��
(A ABBI�@5�	��<5�"�X5�	  �T5�E�G Z
AID��5�6E�G hA0d��5�F�A�A �D0�
 AABD$���6�,E�D�J IJA���6�0Ԏ�6�B�A�A �F0>
 AABDL�<8��F�B�B �B(�A0�A8�G��
8A0A(B BBBAh���	(l��=��A�C
G�����
I zRx������(u�$Џ4B�E�J��
AG���D�%HU\��D�9B�B�E �E(�D0�D8�K`�
8F0A(B BBBHD8C0A(B BBBHp��E�WF�B�B �E(�D0�A8�DP�
8D0A(B BBBA����8А�F�F�E�G �A(�D0~
(F ABBH4�G�*F�A�A �G�
 AABAzRx�����$�
�Lx��H�;F�B�B �D(�D0��
(F BBBFa(C BBBȑ�I�\(ܑJ�E�C�D e
AAE@��J�UB�E�B �A(�D0�G@�
0A(A BBBBL��K�-Hdd��K�|x�,L�$KN<��DL�mB�E�B �D(�C0��
(A BLBJВtM�*Ha��M����M���M�HK(��M�8<��M�F�B�D �A(�D@�
(A ABBGx�,O�-aL��HO�yB�B�B �B(�K0�A8�G��
8A0A(B BBBJ,���dR�(�`R�/F�D�D �SGB0�dR�>E�\
EL��R�4`��R��F�A�A �G�)
 AABDzRx�����$��	L̔�T�F�E�B �B(�A0�A8�D�A
8A0A(B BBBH�8W�0�4W�D�0W�?H_
IJ d�PW�mE�D0|
AJ���W�E�Q���W�HN(���W�A�F
N����
HT��#L��\�F�B�B �E(�H0�H8�G�K
8A0A(B BBBAL�X]�8HW
Ah�|]�	|�x]�,E�f4���]�xF�D�D �r
MBILMB�]�&E�`��]�DE�~�^�1$�H^�LE�H�F vAAD�p^�8X��^�>(l��^�oH�D�G �y
DBN(��_�[F�D�D �yMB8ė@_�F�E�E �D(�D0�\(A BBBL��_��F�B�B �E(�D0�A8�D��
8A0A(B BBBH4P�c�F�A�C �J��
 AABDL���e�+F�B�B �B(�A0�A8�G�U
8A0A(B BBBDؘ�k�AD]
A�l��l�HP �l�&E�M
FI(@�$l�E�A�D S
AAA'>����l����l����l�JE�DDę m�F�H�A ��
ABDQ
CBBA
FBA��m�PE�`
P(�n�XE�h
PD�Pn�(X�\n�1F�D�D �XDB��pn�(��|n�4F�D�D �[DB8�n�>
M�N�B �A(�A0�
(H BBB��{�!HUH��{�tF�B�B �B(�A0�D8�G@v
8D0A(B BBBE4d��|�E�D�D S
GAHD
AAJ��8}���D}�5HQ
GP8Лd}�B�E�B �D(�A0��(A BBB��~�@L�o(��<��0P�$�E�N�F v
AAGdNH����nE�}
Fa@����F�I�A �
ABG|
ABAoAB8�L��|F�E�D �A(�D0](A ABB$�����8�\��
L�X��@`����wD \
H |����A�D _
AK�����>Hu��܄�GE�l
Oԝ���D W
E�����;T b���A��
I(<�ȉ�}A�D�G0G
AAKh���1AAP��@��1l8��l��8B�B�A �C(�G`?
(A ABBD8Ԟp��5B�B�D �D(�Gp�
(A ABBE�t��!H X (����A�D0Z
AHL���BL`�D��B�B�B �B(�D0�A8�J��
8A0A(B BBBG8����B�B�A �D(�G@�
(A ABBH�؛�D _
E�l��AA�\
A$����)H`<����pE�j0X���RE�A�G _
CAHSAA��8��HL��@��AA�\
A��t��lgؠ̝�5D_
E���OHj
NN� ��D _
E(0�����A�D�G0�
AAF@\�X��	B�D�D ��
AGAb
AGF`AG4��$��oF�A�D �J
DBEGABء\��FE�h
A ����A��
JA
O����sA�q4�`��,H�|��AAKd����jDf
NI
G��Т�JtN����!HQ$�� ��QA�D�G BAAܢX��E�Q$��\��_A�D�D PDA ����Q@4���5A�A�D �
DAGG
DAD}
DAFLx�ܤ�B�B�A �D(�D0v
(D ABBDT
(D ABBK$ȣL��GA�A�J uDA�t��wH�k
Et�ا�B�B�B �B(�A0�A8�GP�
8A0A(B BBBIb
8A0A(B BBBDL8E0A(B BBB��p���D k
A��D��H �
D��8��5D_
Eؤ\��5D_
E����5D_
E����5D_
E,�Ȫ�=Dd
HH���=Dd
Hd���!HQ|�(��&HV��@��u|_M<�����vA�D�D q
IALD
AAJIGA���D0�
K(�Ȭ�A�D�G@\
AAF88�L��KB�B�A �A(�G`
(A ABBE(t�`��A�A�G@a
AADl����AB�E�E �E(�D0�D8�D�h�W�K�A�X
8A0A(B BBBFD�T�N�A��Բ�mH0_
A ,�(���A�G0�
ABDP���B�B�B �F(�J0�J��
0A(A BBBCH��<��yB�G�E �B(�A0�A8�Dp�
8A0A(B BBBJ,�p���A�C�G��
AAF<���
B�B�A �D(�L��
(A ABBA0T���F�A�A �JP�
 AABA(������E�D�DP�
AAK��`��HI,̨h��B�D�G ��
ABF(��X��5F�D�A �TLE((�l��5F�D�A �TLE(T����`E�A�G t
AAE(�����E�A�D0k
AAE(����vE�A�D0`
AAE0ةl��F�A�A �D0{
 AABE0����zE�A�G t
AAM`AD(@�D��,A�A�Gpc
AABLl�H��B�B�B �B(�D0�A8�J��
8A0A(B BBBD(����~E�D�DPi
AAA(�\��E�A�DP�
AAAH����B�B�E �B(�A0�A8�Gp?
8A0A(B BBBC0`�����B�A�D �DP�
 AABAD��p���B�B�B �A(�A0�J�
0A(A BBBG@ܫ���B�B�B �D(�D0�D@y
0A(A BBBEH ����)B�B�B �E(�A0�D8�Dp5
8A0A(B BBBE(l�Z���F�C�A ��AB(��\���A�D�DP�
AACĬ ��%0ج<��TE�D�D c
AAFTFAL�h��oF�B�B �B(�A0�A8�G��
8A0A(B BBBK(\����eE�D�D b
DAL0�����FE�D�D V
AAKSAA(�����=E�D�D V
AAK(����UE�D�D `
AAY(�0��EE�D�D V
AAS(@�T��ME�D�D `
AAQ(l�x��UE�D�D `
AAYT�����\F�B�B �B(�A0�D8�DP�X_`LXAPS
8D0A(B BBBED����B�E�E �D(�G0�W8\@F8A0F
(A BBBB8����UE�\
WIX�<��%E�LLt�P��vF�B�B �A(�D0�w
(A BBBCb
(A BBBG<��E�D�D {
AAFZ
MAHDDA,����]E�D�D�5
AAD(4���~E�D�DPi
AAA4`�T��E�A�G u
IADT
AAZ(�����mE�D�D c
DAKİ���$H[ܰ��$H[� ��$H[�8��$H[$�P��$H[<�h��$H[T����$H[@l����B�A�G �S
ABHn
ABGlAB�����+fLı��.F�B�B �E(�D0�A8�I�,
8A0A(B BBBE�sa���@(�����F�B�E �D(�A0�FP
0A(A BBBC$���xL��d��wF�I�B �B(�A0�A8�O�
8A0A(B BBBDP��F�A�A �|
ABII
AEII
AEIr
ABA$�P��8�L��(HS
A@T�`��
F�B�B �A(�A0�J�v
0A(A BBBD��,�E��
G���=E�w8Գ0��F�A�A �y
ABDb
ABA4���,F�A�D ��
ABFdABH���>HN`���bE�d
g|�8�9E�Y
JI��X�(��T�BE�D�GPs
AAK,ܴx�<F�M�A ��
ABH���� �T�
4�P�(H���iA�G�D0Q
AAA8t� ��B�B�D �G(�D@T
(A ABBC$����aE�D�G0LCA4ص��A�D�D v
DAL]
DAN0�d�kF�D�D �D0a
 AABI$D���A�F�D �AALl���
B�B�B �B(�A0�D8�G�'
8A0A(B BBBK`��H�dB�B�E �D(�C0��
(A BBBCi
(A BBBHx
(A BBBI4 �T�aB�E�D �D(�D0G(A ABBX���&H ]p���$H [����1E�L ^A@����B�B�B �A(�A0�GPE
0A(A BBBD�H!�DL�L
HU�x!�DL�L
HU,��!�DL�L
HUL��!�DL�L
HUl�"�DL�L
HU��8"�DL�L
HU��h"�DL�L
HU̸�"�DL�L
HUH��"�F�B�A �A(�G0c
(D ABBCD(M ABB8�#�L�(#� A�N
AI8l�(#�F�B�D �D(�F@]
(G ABBI��|#�AAK8�#�PF�A�K �!
ABJD
AEA��$�*HX
E��$�?Ha
GI
A<��$�?Ha
GI
A(\��$�E�H�D �
DAA<���%�F�I�B �A(�A0��
(D BBBAHȺL&��B�E�B �E(�A0�C8�DP
8C0A(B BBBH<��'��B�B�E �A(�A0�f
(E BBBD$T��(�^M�U
F`�H�M4|��(�eH�J�I W
F�A�GYFAA����)�)K�XE� л)�A�S i
ABL��)�JB�H�E �B(�A0�A8�G�^
8A0A(B BBBF0D��;�A�F
B�E�E�E�D�,
H\x��<�{B�B�B �B(�A0�A8�D��
8A0A(B BBBDo�H�c�F�T?���(�A�2A�A�D0�
AAG(�B�KF�A�A �a
ABAD�@B�0E�R
A`�TB�,(t�pB�A�A�G t
AAA���B�OE�p
K,��C�F�D�A �a
DBN�xC�	�tC��H��
X �$D�%(4�@D�aP�A�G {AAK��,`��D��F�K�F �p
ABF ��4E�E�J@k
AE���E�tH@\
DоF�L�@F�YH���F�F�B�G �E(�A0�A8�G��
8A0A(B BBBELD��H�YB�B�B �B(�D0�D8�G��
8A0A(B BBBK\��K�F�B�B �B(�A0�A8�G� I�!�
8A0A(B BBBEI�!U�!L�!A�!�`N�;A�]
R\��N�B�I�B �B(�A0�D8�G�A
8A0A(B BBBJa�\�	I�A��p�DP�wF�B�E �E(�D0�A8�G���M�R�A�f�M�O�B�o�J�Q�B���M�P�A�Y
8A0A(B BBBKD�M�T�C�L�$U�F�B�B �B(�A0�F8�Q�Q
8A0A(B BBBAM@���0t�P\��F�H�A �GP�
 AABA�����0���\�F�A�A �G`�
 AABAzRx�`���$O��L$��]�F�B�B �D(�A0�q
(A FBBE�
(A IBBF4t�p^�iF�E�I �K(�D0x(D ABBT���^�F�E�B �E(�A0�D8�GPx
8A0A(B BBBHDXX`FXAP(�`_�E�A�N0r
AAHH0��_�F�B�B �E(�A0�A8�F`�
8A0A(B BBBI|�Xd�L��Td�@B�B�B �E(�D0�D8�F��
8A0A(B BBBAP����\��0i��F�B�B �B(�A0�A8�G�c�L�F�F�f��
8A0A(B BBBHLT��k��P�E�D �D(�D0�
(D ABBHP����H0����Ⱦ���\��,l�^F�B�B �E(�K0�A8�L��L�F�F�S��
8A0A(B BBBFL�,q�B�B�E �B(�A0�A8�G�&
8A0A(B BBBDHh��w��B�B�B �E(�D0�A8�F`�
8A0A(B BBB���Y(��ly�5E�A�G@�
AAG ���z�QE�G ~
AA ��z�lE�L0T
AA(<�{��E�A�D0
FAHh��{�WH I
A���{�	���{� HO
AL���{�F�B�B �E(�D0�D8�D��
8A0A(B BBBG@��}�F�E�E �D(�D0�JPg
0A(A BBBAH�~�3\�H~�p�T~�9(���~�^E�H�D FAA�����H}��(��~�����pd�����B�B�B �B(�A0�A8�DPjXH`ThEpPPlXH`WhEpOP]8A0A(B BBB,`����AI�D�A �hABG���0������Y�D�I �AAA��A ��4�����Q�A�D l
A�A�LDAA����vHb�P��4(�L��-z�C��
AEGHI��H��$`�D���E�K�I �AA8W&����؊���T��^B� �����E�b
IU
Ald���$���E�A�D �AA4(�l���E�A�F f
AAAv
AAA`���5t�0��R��|��s����5D0�
Kl�����R�H�B �B(�A0�G8�d
0A(B BBBEK0A(B BBBD������H8������4(�l���A�C�D v
AAHf
AAH(`���_A�I�G@�
AAFD��H��B�E�B �B(�D0�A8�D@�8A0A(B BBBL�� ��hB�E�E �A(�E0�
(A BBBF@(A BBBT$�@��B�E�I �A(�D0�D@�
0A(A BBBFf0A(A BBB8|����B�G�A �D(�G0H
(D ABBJ8�����/B�G�A �A(�F@w
(D ABBG�����bH����F�B�B �E(�A0�A8�DPl
8D0A(B BBBB4T�P��R�N�F �TDEE���N ���8�����F�B�A �A(�DP
(A ABBD$����3E�D�D cAA(��4��E�G�D@|
AAA,����K�A�D �mABA���LL���F�B�B �B(�A0�A8�M�,
8A0A(B BBBGL��Ȳ�<F�F�B �B(�A0�A8�G�L
8A0A(B BBBAL�����F�E�B �E(�D0�D8�I`�
8A0A(B BBBG<����P����d����x�|�������$�����8E�A�D fFA�����Q�����3����
���
���0,���B�A�A �D0c
 AABA`����"A�R
EI(�����A�D�D0D
AAA$�����jA�A�N WAA ��@��uA�D i
AA$�����IA�A�G zDA ����	4����	H����	\����	p����E�O�����>E�x���������������-E�c����(H_� ���,��,�8��DE�~H�l��$E� `����UE�L }
AA�����E�V�����E�V8������B�B�A �D(�D`V
(A ABBG$�����XA�C�F KAA4 ����E�D�G Z
FAGN
AAH8X�<��B�E�D �A(�G`M
(A ABBJ �����LA�G e
DGH�����B�E�E �E(�D0�D8�DPl
8D0A(B BBBJ���3A�I�N 4$�0��DF�D�D �M
CBHVCB(\�H��E�K�D0f
AAD�����3Q�a����� E�Z8�����[B�B�D �A(�D@w
(A ABBF0����EE�D�G M
CAGXCA0�4��H N
J0L����B�D�D �G0o
 AABD(��D��|A�D�DPY
AAD�����"HY�����0E�V
EK0�����DE�D�G M
CAGWCA����1l0,���JA�H�G U
AAIKIA(`�$��^A�H�G s
AAA4��X��JF�D�D �S
CBJTCB��p��;A�A�J @�����ZB�B�B �D(�D0�G@v
0A(A BBBE,(����ZA�C
I�����
DX����(Q�V,t����RA�C
I�����
F�� ��3dN4��H��eA�D�G q
AAAD
GAL(������E�G�J@�
AAC( �$��zA�D�D [
DAGL�x��oHfd����<H n
A�����QH C
A��8��	��4��CH u
A��h��HIH��p��B�B�B �B(�A0�A8�D`�
8A0A(B BBBCH����<D� ��.F�I�B �D(�A0��
(C BBBJ@����fB�B�B �D(�D0�J@�
0A(A BBBJ��<��yH P
H�����(��,���E�G�D0~
AAH$����:E�t@����E�S\����!0p���F�D�D �G@v
 AABA�����
����������@8�����:F�B�D �A(�FP�
(A ABBK8����\F�B�A �D(�F@�
(A ABBHX����(l����E�D�D@H
AAI��\��!E�T��p��@E�V
MW�����!��������������@$�����F�B�B �A(�A0�D@W
0A(A BBBA8h�\��	F�B�A �A(�J@k
(A ABBK��0��(��,��{E�D�D0w
AAJ �����sE�G0C
AH����aH0C
E$�0��]H |
D@�t��$ T����hE�c
HT
Dx����VA�T�� ��&8��<���F�B�A �A(�GP�
(A ABBE8�����T�A�A �|
ABK|ABA���( �T��E�D�DPx
AAI@L����BF�B�B �A(�A0�G`}
0A(A BBBH ������E�D@c
AC(�����SE�D�D0�
AAA$�����1E�D�D ^DA(����EE�N�GP�
AAK4� ��=E�N eDT�@��M�D�D �0t����IE�D�G m
AAADCA@�����Q�I�G l
N�C�JD
AABIK�C� ��(��TE�G e
DK$�d��ME�G�G wAA(8����MJ�A�G jDAG��@d����E�A�D `
ADIv
DAED
CAEH����4F�E�B �B(�D0�A8�DP�
8A0A(B BBBH4����J�D�G S
CADDFAE��(,�X��?F�G�D �[
ABE4X�l��E�A�D p
DAA�
CAE(��T��)E�N�GP
AAA4��X��sF�D�A �g
DEEO
FBI0�����RE�D�G0_
AAGWAAH(���B�B�B �B(�D0�D8�Gp\
8A0A(B BBBCt����EE�p
K0����F�D�D �D0l
 AABF(��@��tE�D�J0w
JAK$�����,E�D�J IJA����	(,����cA�A�D0B
AAF@X���F�B�E �A(�A0�D��
0A(A BBBH4�����RF�H�D �D(�D0d(J ABB��������0�����F�D�D �G@Q
 AABFH0����F�B�E �E(�A0�D8�DP�
8G0A(B BBBE8|�X�QF�E�G �D(�D0X
(J ABBE��|�$��x�>E�D�D nAA����\H N
AH���F�B�B �B(�G0�D8�GP�
8A0A(B BBBC(\���NE�A�D \
JAE<����YA�D�G Z
AAHX
DACDCA4����jF�D�D �I
DBCAFB��@���F�B�B �A(�D0�G�@
0A(A BBBBHX���)B�B�B �B(�A0�A8�DPw
8A0A(B BBBAt��p�B�B�B �E(�D0�D8�G@s
8A0A(B BBBIQ
8A0A(B BBBEG8G0F(B BBBH���CF�B�B �B(�A0�A8�D`�
8A0A(B BBBCh���HI0����9A�D�G O
AACLGA�������������������H����B�E�E �E(�D0�C8�GP�
8A0A(B BBBAd�p	�x�|	����	����	�8���	�F�B�A �A(�G0�
(D ABBK ���
�YE�T q
AA8��
�F�B�A �D(�J0
(A ABBAHP��{B�B�E �E(�D0�A8�G��
8A0A(B BBBA��H�%E�_��\�"E�\��p�%E�_`����O�E�D �D(�G0~
(A� A�G�B�LP
(F ABBAD(A� A�B�B�\T���B�B�I �D(�D0�m
(A BBBGN
(A BBBKE(I BBB��
�����(����:E�F�D HA��[Hs
E$�P�FHf
J@���'HZ\���p�$�2��P�H���� ������������	�����������$��� 8���,KN RT���/KNC Rt���2KN C(C0R ���5KNC C(C0R$���8KN C(C0C8C@R(��4�;KNC C(C0C8C@R(�H�>KN C(C0C8C@CHCPR,8�\�AKNC C(C0C8C@CHCPR0h�|�DKN C(C0C8C@CHCPCXC`R4����GKNC C(C0C8C@CHCPCXC`R���������������	$���8���L���`���$HJ Q|���'HJC Q����*HJ C(C0Q ����-HJC C(C0Q$���0HJ C(C0C8C@Q(��3HJC C(C0C8C@Q(4� �6HJ C(C0C8C@CHCPQ,`�4�9HJC C(C0C8C@CHCPQ0��D�<HJ C(C0C8C@CHCPCXC`Q4��P�?HJC C(C0C8C@CHCPCXC`Q4��X�BHJ C(C0C8C@CHCPCXC`ChCpQ4�p�H�l�\�x�8p���(����zA�I�U N
AAA���NH�h
HQ��4�eDn
E����OwW��� KT���$0���.E�J�G IJC8X����F�B�A �A(�DPV
(A ABBF������|���x�EAD��l�}����E@��yB�G�G �Y
CBBr
ABKAABD�P�]X���(l���#B�D�D �UAB����HN,����}M�H�A �V
ABA$���UA�D�G CDA�<�	�8�(0�D�iE�F�G0O
AAA,\���tR�D�A �@
�A�B�F,����I�G�A �o
ABE��H�RE�~
MA\�(��"��t�>E�h
C���	 ���	4���EAD(P���_M�D�D �FAB|���&H]4����qF�H�A �A(�D0Q(F ABB���9��D�S����F���f�(�F0�d�ED���AX���El��c��t�V ����A�G D
AC��L�AAD�P�A����F��)� �!0(�<��B�D�D �F0K
 AABA\���9t$p��B�E�A �G(�G0������� �GhU�� �U�!�dE�i
RX��\!�A�T4�`!�SQ�G�G M
AABPC�K�,L��!�VP�D�D �mFBC���$|��!�>A�D�G oAA0���!�F�A�A �D0�
 AABA(��"�A�D�G0�
AAA4�@#�qA�D�G0v
AADD
DAOH<��#�B�H�F �H(�D0�D8�DP
8A0A(B BBBKD��L%��K�D�D ��
ABBA
CBJNABA���4��%�A�D�G w
DAHz
DAA0�<&�GB�D�D �JP}
 AABK0<�X'��X�D�J0J
AAF`���.���0���'�F�A�A �D@�
 AABD@��L)��A�A�D a
AAG^
DAMT
DAG8���)�pB�B�A �G(�D@�
(A ABBIl8�+�UB�E�E �D(�D0�D@�
0K(A BBBHc
0A(A BBBE�
0G(A BBBN���,�E��8-��DT
H�.�!�(.��4.��@.�%(�\.�<�h.�%$P��.�6E�D�D cDAx��.�kO�A�A ������
���.�AADH��.�B�B�B �B(�A0�D8�G`S
8A0A(B BBBG$��0��B�B�A �D(�G00<�X1�=B�J�B �B(�A0�F8�DPLp�d2�HB�B�B �B(�D0�A8�G�P
8A0A(B BBBB��d6��E��
F�7��E��
F��7�E��
K �T8�E��
F@��8�E��
F`��9�E��
F��$:�E��
F���:�E��
K��D;�E��
F��;�E��
F�d<�E��
K ��<�E��
F@��=�E��
F`�$>�E��
F���>�E��
F��T?�E��
F���?�E��
F�t@�E��
F�A�E��
F ��A��E��
F@�dB�E��
F`��B�E��
K���C�E��
F��D�E��
FH���D��F�B�B �B(�D0�A8�GPE
8A0A(B BBBI,HF�B�E�A ��
ABH,<8H��F�A�A ��
ABCHl�H�F�B�B �E(�A0�A8�K`a
8A0A(B BBBI8��J�%F�B�A �A(�D0�
(A ABBE8��K�MF�B�A �A(�D0'
(A ABBE,0�L�E�C
D��E�E�D��
J`�N�NE���Ɵ�
(��N�=E�A�G Z
AAG��N�EAD8��N��F�B�D �A(�FP8
(A ABBG�\8��}L$�P�PE�A�D �
DAE�
AAKd
AAJN
AAHt�R�uH��R�F�B�A �D(�D0Z
(A ABBG`(A ABB�@S��LS�$��S�,E�A�G YDA$�S�"E�\@�S�T�S�h�S�|�S�p$�TT�OE�I�K sAA,�|T�F�A�D �j
ABH��T�@E�z(U�E�D�G c
AAK0�U�4jD�U�X�U�ndpV�YH 
I�XV�0�TV�F�A�D �G0
 AABK��V�(E�b��V�$�V�H^
JI
GO
I�����@�W�4T�W�E�S
HD
DQ
OH
HH
HG�G���$X�9Td�LX�H�
AH��X�ZF�B�B �B(�D0�D8�G`y
8A0A(B BBBB8����4�Y�:bHZ��\�[�A�J `x�\�F�B�E �E(�D0�D8�GPX
8J0A(B BBBLU
8P0A(B BBBJ��\�@��\��F�E�B �A(�D0�D`�
0A(A BBBH4�]�E�D0$PD^�F�B�A �D(�F@x�^�E���^�fcU
HI�4_�#L�V�H_��D_�?0�p_�bE�A�G i
DAE]CA8(�_�YB�B�I �D(�I@�
(A ABBC(d�`�UB�D�G �DAB@<�l���S
FKEA
HDEA
KDE|
CKE��`�dD@
D[�����4	�`�B�G�D �_
ABAv
ABG@	da�T	pa�8h	la�JB�E�D �A(�FP�
(A ABBF�	�b�-Jb�	�b�-Jb�	�b�-Jb�	�b�0Je<
�b�E�E�F H
CADN
CAFRCA0D
0c�bE�D�D t
FAHJFAx
lc�*L�]�
�c�+A�i�
�c�;A�a
FI�
�c�4A�Z
EI8�
�c�F�B�A �D(�D`�
(A ABBJ��̗�0@�f�jF�K�A �GP�
 AABCHt�g�B�B�A �A(�G@~
(D ABBDt(D ABB �$h�NE�G {
AA(�Ph�E�D�Gp�
AAH�i�g$0j�8�j�HE�B`T�j�8E�G�D �3
ABJY
FBG�
ABDA
FBG^
ABE,��m��E�H�G�
AAF4�|p�~F�E�D �G��
 AABB` 
�s�;F�B�E �B(�A0�A8�D@�
8A0A(B BBBG�
8A0A(B BBBH(�
�u�aE�D�G0I
AAA(�
�u�^E�D�G0F
AAA �
v�gE�G @
AC0dv�A�A�D S
DAB�DA(4�v�A�D�J@�
AAA$`tw�=E�I�D hAA��w�(��w�gE�D�D0O
DAA(��w�E�A�G0k
AAA@�0x��z�D�G �IABG���H ���a�D�B�88�x�F�B�A �A(�DP}
(D ABBA8t y�)F�B�D �D(�G@�
(A ABBJ�z�^,�`z�7A�C
H����D�&
J���|,\��)A�C
D��E�E�D��
DP8\��F�B�B �E(�D0�D8�GhkpThA`�
8F0A(B BBBId�(���B�B�B �B(�A0�D8�D�`
8C0A(B BBBC�
8J0A(B BBBID����*H���=B�K�H �E(�A0�A8�DP�
8A0A(B BBBIHT���EB�H�B �E(�D0�D8�GP�
8A0A(B BBBDX����SB�E�E �E(�A0�A8�G�{�K�N�H�O8A0A(B BBBA�8����AB�H�B �D(�D0�a(A BBBl8���B�B�E �D(�D0�G@�
0K(D FBBMD
0K(D FBBKA
0A(A BBBG�̡�$�ء�_E�D�D HF��ȓ�L����B�B�B �A(�A0��
(A BBBG�
(E BBBD$H<��_E�D�D OAA8pt��F�B�A �D(�D0-
(D ABBA,�Ȥ��E�F
H����K�~
D�x������������,���VL�v
FML��7H_
IF0l��hE�D�D |
AAEPFA\�D��B�E�E �E(�A0�A8�J���G�L�A�R
8A0A(B BBBH�����	��<H\
DH
HH4��nF�B�B �B(�A0�A8�GP�
8A0A(B BBBEH�$��&F�B�B �B(�D0�A8�Dp
8A0A(B BBBI������� ��zL�`
LA�����4(l��E�D�G q
AAEF
AAH�q��t��Hf
BH�O���`��EAD`�d��xF�F�E �D(�D0��
(A BBBGR
(A BBBGz
(E BBBK$���8��4E�PD��EAIlH��EAD�L��#�h��CHP
H^����G0�Ե�F�A�A �G@k
 AABBLP��GF�H�B �B(�A0�D8�J��
8A0A(B BBBI�����	 h<��A�GPh
AGH����`B�B�B �E(�A0�D8�G��
8A0A(B BBBK0����UF�A�A �D��
 AABGzRx�����$ʍ�	0@���kB�B�B �B(�A0�A8�D@t��+EAD(���mF�D�D �u
ABJ(�X���B�D�G��
ABE(���DM�A�D �jAB0��aH@S
A80���F�E�D �D(�G��
(D ABBAl��aH@S
A�\��H@s
A����gG��
G�4�� �@��\E�D C
AA(�|��AE�D�G N
JAG$���PHY
O0@���B�A�C �G�g
 AABHl���-����
����"H����F�E�G �J(�A0�J8�DP�
8A0A(B BBBA�X��hd��JO�B�B �E(�A0�H8�DP�
8A�0A�(B� B�B�B�EX������AP������0|H��F�D�A �I0T
 DABI����+Hb<����O�B�A �A(�G0p(C ABBF����,��R�A�A �{ABF���8���0E�fLT���F�B�A �D(�D0�
(A ABBF\
(A ABBF$����*E�

A�
O����%HV�������|(t��A�D�G l
AAF<���$P��E�M�D hDA(xl��RM�D�A �uDB(����&E�F�D �
AAE����]E�S����$���tE�A�D ROD(L��\<X��B�E�E �E(�I0�G8�D�L
8A0A(B BBBET�H�h�A������|�t��B�B�E �E(�A0�A8�G`�hQpOhA`D
8A0A(B BBBBthNpBxA�V`J
8D0A(B BBBF0 ���D ���X ���lD0b
ALt ���eB�B�B �B(�A0�A8�D�%6
8A0A(B BBBA�G���� �K�
L� �K�F�B�B �B(�A0�A8�G�\
8A0A(B BBBE�uO��<P!$T�B�J�D �D(�G�t
(A ABBK zRx������(߆�	p�!|W�F�K�K �B(�D0�A8�G�[
8A0A(B BBBAv�L�N�B�L���K�Q�A�,<"�Z�9E�C
B�I���D��
D@l"�]�B�I�F �E(�D0�D8�GPM
8A0A(B BBBLX
8D0A(B BBBKX
8D0A(B BBBKf
8J0D(B BBBLD
8J0D(B BBBFX
8D0A(B BBBKy
8A0A(B BBBM
8D0A(B BBBGy
8D0A(B BBBJo
8J0D(B BBBK5
8D0A(B BBBN���(�#�b�A�D�G�a
AAA�#d�	L$d�F�B�A �A(�G0~
(A ABBKo
(G DEBELT$�d�:F�E�B �B(�D0�D8�J�t
8A0A(B BBBA�$�h�~NL�$(i�F�B�B �E(�D0�K8�M��
8A0A(B BBBG%�l�"HU����H8%�l�(B�E�E �E(�D0�D8�Dp�
8A0A(B BBBG��E��$�%�n�QE�D�F yCA�%o�
�%o�	(�%�n�]M�A�A �zJEL&0o�vF�B�E �E(�D0�A8�D��
8A0A(B BBBFHd&`q�F�B�B �B(�A0�A8�D@�
8A0A(B BBBJ8�&4r�F�G�K �A(�D0P
(I ABBEH�&�r�F�B�B �B(�A0�A8�D�.�O�E�M�I�`8'lu�xB�B�B �B(�D0�A8�D�T
8A0A(B BBBAD�H�F�L�S�T�'�x�B�B�B �D(�D0�Dp�xH�B�A�Iph
0A(A BBBK(�'�z�/F�D�F �TDB (�z�4(�z�(H(�z�2F�D�F �WDB@t(�z�B�E�E �D(�A0�F`X
0A(A BBBI(�(<|�/F�D�F �OFE�(@|��(<|�()H|�2F�D�F �OIEp8)\|�F�B�B �B(�D0�D8�D�p
8A0A(B BBBFi�E�Q�A�F�M�B�H�O�\�)��iB�B�L �B(�A0�D8�J��
8A0A(B BBBGl�C�I�A�a�~�; *����K��
AP<*h��PB�A�A �_
ABJ�
ABGl
ABId(N0W(A D�*d��F�E�D �D(�GPnXV`RXAP^
(D ABBA,�*����A�C
H����D��
I`+���B�E�E �E(�A0�D8�G`�
8P0A(B BBBF�
8S0A(B BBBL,l+(���A�F
B�E�E�J���
E �+ؔ�E�G0�
AA �+T��E�G0�
AA(�+Е�E�C
F���D��
F$,ė�RE�F
G��e
I8,���7H] Q4T, ��E�D�G@IHQPUHA@^
DAA$�,���E�G�.
AE$�,h|�+E�D�K HIA�,H��4HZ Q4�,l��E�D�G@MHQPRHA@^
DAA$0-��kL�|Z FAA4X-,���E�D�G@~HCP\HA@a
AAA�-Ԝ�FHbG T<�-��F�D�D �D@]HQPRHA@a
 AABA�-���BHi P.���6Hd IT(.ܝ��M�B�B �D(�C0��8J@L8A0A
(A BBBHA(I EHB�)�z�(�.P��^E�A�D A
DAAL�.���~F�G�B �B(�A0�A8�D@dHhPP8A0A(B BBBD/����B�E�D �D(�O`QhHpqhA`T
(A ABBEPX/L��oM�B�B �D(�D0�
(A BBBFj
(A EBEA�/h��,�/d��A�C
B�E�E�H�D�i
K@�/ԣ�SF�E�B �A(�C0�GP�
0A(A BBBEd40���F�B�B �E(�D0�C8�D@�HJPO8A0A(B BBBD@D8I0D(E HBB���x�X�0d��yF�B�E �B(�A0�A8�DpD
8A0A(B BBBEuxV�RxAp@1����F�E�E �D(�D0�GP�
0A(A BBBK@P1��A�D�G0z8M@V8A0D
DAEj
GAF �1p��A�J W
AE@�1��ZF�J�G �F(F0I(A C
ABETGB�1��H0J
F(2|��E�D�G0|
AAALD2��B�E�E �B(�D0�A8�G��
8A0A(B BBBC�2���EH0w
A`�2��F�B�E �E(�G0�D8�G@O
8A0A(B BBBCl
8O0D(B BBBIL3����B�B�B �E(�A0�A8�D��
8A0A(B BBBG(d3@��2F�D�F �^AB(�3T��2F�D�F �^AB�3h��7E�U
FV�3���?L�U
GV�3���7E�U
FV4ȷ�7E�U
FV<4��?L�U
GV\4��E��Hx4����
F�I�B �B(�A0�A8�Dp
8A0A(B BBBLL�4��B�D�D �J0J8B@J8A0c
 AABFY
 AABK5P��(5L���E��HD5���F�B�B �B(�A0�A8�D`o
8A0A(B BBBAT�5����F�B�B �B(�A0�A8�D`�hQpRhA``
8A0A(B BBBA0�5���XF�D�A �G0q
 DABA86(��sM�H�B �D(�A0�O(A BBB8X6l���B�E�A �A(�GPe
(A ABBE�6 ��	�6��E�O8�6 ��F�B�A �D(�D@f
(A ABBA87����F�B�A �A(�D@)
(A ABBC8<7H��F�B�A �D(�D@f
(A ABBA4x7���qF�E�G �A(�D0N(F ABB`�7����F�B�B �B(�A0�A8�D��N�F�M�N�T
8A0A(B BBBG`8`��>F�B�B �B(�A0�A8�D�:�N�F�M�N�X
8A0A(B BBBC`x8<��>F�B�B �B(�A0�A8�D�:�N�F�M�N�X
8A0A(B BBBC`�8��F�B�E �B(�D0�A8�D�|�O�E�M�I�X
8A0A(B BBBH,@9���E�C
P������
Etp9D��F�B�B �B(�A0�A8�D�0
8A0A(B BBBD��N�F�M�N�I�O�E�M�I�`�9���nF�E�B �B(�A0�A8�D�W�O�B�M�O�X
8A0A(B BBBE`L:���F�B�B �B(�A0�A8�D���O�B�M�L�h
8A0A(B BBBH`�:4��8F�B�B �B(�A0�A8�D��
8A0A(B BBBE\�O�E�M�I�`;���F�B�B �B(�A0�D8�G���L�A�M�R�k
8A0A(B BBBK`x;���F�B�B �B(�A0�C8�D�
8A0A(B BBBEd�O�B�M�L��;���;��t<��F�B�E �E(�D0�A8�G`
8A0A(B BBBJ�
8D0A(B BBBA|hQpBxA�Q`|<x��HB I�<|���<����<���
�<����<���6=��/=��(=�� <=��P=�� E�V(l=��gF�A�D �TAB�=,��
�=(��(�=4��UF�P�A �zAB$�=h��:E�K�L [AA\>���B�E�B �B(�A0�A8�DP�
8A0A(B BBBID8F0A(B BBBt>0�Cu�>l�bT$�>��>E�A�G iAAH�>���F�H�A �H(�G@A
(M FBBJI(M FBB(?��fF�F�K �n
ABH@?��CuT?�kD X
D(p?T�F�I�D �nAB4�?��F�J�A �D(�K0s(D ABB�?0�p�?��A�?��]Hb
F^
A@�]Hb
F^
AH<@H��B�B�B �B(�A0�A8�DP�
8A0A(B BBBA�@��wD0m
A�@0�wD0m
A�@��.V<�@��tF�B�B �A(�D0�B
(R BBBG$A��|A�[
D\
Dp
H<AH� HPLTAP��B�B�A �D(�D0
(D ABBH�
(D ABBG�A��	�A���A�� HP �A��bP�rF�H�QB<�B8�]H0O
AH8B|��B�E�B �E(�D0�C8�Gp�
8A0A(B BBBF4�B �ZB�D�K �k
CBOAFB�BH�&�Bd�)�B��)E�N
EPC��C��8E�r4C��'E�N
EN$TC��)E�D�G IJA$|C��)E�D�G IJA�C��yHPk
A�C4�tH@f
A�C��xHPj
A�C��'HWD
�$D
�8D
�E��
U<XD��&F�B�A �A(�G��
(A ABBG�D��&HV�D�)HY�D�)HY�D4�LHn
JGEd�	HE`��F�E�B �E(�D0�C8�DPL
8C0A(B BBBK`E�*HQ
GI�E$�*HQ
GI�E4�*HQ
GI�ED�*HQ
GI�ET�*HQ
GI$Fd�E�l
OH
HF(F��C<F�*HQ
GI4\F(�hF�A�A �v
UFGDAB<�F`�F�A�D �a
DKEd
ABAL�F��CB�B�E �B(�A0�D8�J��
8A0A(B BBBA$G��!88G��B�M�A �A(�M�K
(A ABBA4tGP�F�G�A �K(�P0R(F ABB�G��D�G��,F�G�B �J(�A0�K8�D@�8K0H(B BBB0H���F�D�A �G0�
 AABH<H8 �%HXTHP �H]m UtH� �!HT\�H� ��F�B�B �B(�A0�A8�D@�
8A0A(B BBBIL8G0E(E EDB�Hx!�$It!�E�A�D uFA(I�!�+H\l@I�!�F�B�B �B(�A0�A8�J��L�L�A��
8A0A(B BBBI��L�O�A�8�I�)�zF�B�A �A(�D0e(A ABB�I�)�
J�)�2E�c
HA( J�)�\A�A�F p
AAF4LJ*�|J�G�D �}
ABKTAB�J`*�7�J�^�
\�Jx*�B�B�E �D(�D0�o
(D BBBFQ
(D BBBEA(P BBBK�*�UH i
G\D,K�*�ZF�B�B �D(�D0�G�<
0A(A BBBC(tK-��E�A�D@�
AAG�K�-�AAK8�K�-�lB�E�D �D(�F0x
(A ABBA@�K�-�K�B�D �D(�G0Y
(A ABBEx���� <LX.�jA�j
En
BH`L�.�F�B�B �E(�A0�A8�DP�
8D0A(B BBBG�L�4�AAK4�L�4�E�A�G Q
CAFn
CAF Md5�EA�J��
AD$M�6�� X<M1\�
(PM7�^B�D�G �q
ABE|MH7�.E�h(�M\7�WF�H�A �DAB�M�7�$E�^�M�7�8�M�7�XF�E�E �K(�A0�p(A BBB0N�7�(H[DHN�7�eF�E�E �E(�D0�A8�D@r8G0A(B BBB�N8�#HV(�N,8�E�K�D @
FAE�N�8�E�T�N�8�/E�X$O�8�:E�D�G cAA4O�8�HO�8�XE�z
AdO9�(xO9�E�K�D E
AAE8�O�9�F�A�A �M
ABH]
AEG�O:��O:�8P:�F�B�A �A(�D@^
(A ABBF�L3Y�	$XP\;�E�G�
AI�P�<�Y�P�<��P�<�PHE
K�P @�"]�P<@�BE�O
L\�Pl@�"]Q�@�1Q�_(Q�@�"] <Q�@�eE�G �
AJ`QB�"]tQ0B�.E�^
EA�Q@B�"]�Q\B�.E�^
EA�QlB�"]�Q�B�H�Q�Q�B�"]R�B�7E�]
NF,R�B�"]@R�B�	TR�B�"]�hR�B��F�L�A �A(�D0{
(G DEKJA
(G DDIOW
(K DDBLu
(G GIDHb(C ABB�RXD�(HZ
A�-xV�SXD�"]0StD�%HW
A.BV�`StD�"]tS�D�kHM
KH.V��S�D�"]$�S�D�HG
IL
LG
E�.�U��S@E�"]T\E�;HZ
A�.�U�H8TlE�F�E�G �D(�N0F
(A ABBHD(D ABBH�T�E�F�E�B �E(�D0�A8�QP�
8A0A(B BBBF�T�H�9�T�H�&HW�T�H�8U�H�~F�E�D �C(�D0M
(D ABBDLUI�E��hU�I�1E�k�U�I�c�UJ�4�U�J�F�J�D �A(�D0v(A ABB<�UK�F�I�A �D(�G�=
(A ABBB$V�M�<V�M�vPV�M�vdV`N�xV�N���V�O�N�V�O�&�VP�@�VP�F�B�B �A(�A0�DpM
0A(A BBBK`W�Q�F�H�E �B(�D0�D8�DP�
8C0A(B BBBAK
8D0D(B BBBEHpW�R�>F�I�E �B(�A0�A8�G��
8A0A(B BBBEL�W�U�BF�H�E �H(�D0�A8�I��
8A0A(B BBBDLX�Z�gF�B�E �I(�A0�D8�G`
8D0A(B BBBH\X�^��pX�_��X�_�h�X�_��X�_��X`�C�X@`�H�X|`���X8a�5Y`a�(Y\a�s<Y�a�PY�a�0Hc\lY�a�N�B�B �B(�A0�A8�DP8A0A(B BBBE������HP������$�Y�c�dE�G�	�
AD$�Y�d�E�r
I]
AZhe�j4Z�e�dHZf�\Zf�KH }
ALxZLf�0B�G�D �A(�D0�
(F ABBEb
(A ABBH�Z,g�+d�ZHg��S�E�D �r
ABGZ
ABK[
ABB]
ABH�
ABF����D[�l����ZC�8`[�m�A�E�D 
DAFZ
DAAL�[�p��B�E�B �E(�A0�A8�G�y
8A0A(B BBBFl�[���J�E�E �E(�D0�C8�DP�
8C�0H�(D� I�B�B�K�8A0A(B BBBA������D\\����B�B�B �B(�A0�A8�DP�8A0A(B BBBx�\0���B�B�B �B(�A0�A8�G��
8A0A(B BBBD��M�D�G�j�4�M�R�G�j�0 ]���E�F
D��H���|
E<T]����F�B�E �G(�H0�i
(D BBBI�X2L��],���](���]0���](��=HZ
FP^H��^,$^���F�G�A �b
ABET^��pm0m�$S�l�#�m�#�m/�#�]8�#@[F�#[\�#�Zr�#�Z��#�i��#�[	��#������$��#�[��������p[%
$P@p;6!0
$ @�@0B!�=�=�J�=�F Q�P`O`N�L�E�=@R�=�M�M�=�=�=�=@P�=�=�=�=�=�=�=�=�=�=�=`B`B�b`B�d�fh�aa@e�c`B`g`B@c@c`B`B`B`B`b`B`B`B`B`B`B`B`B`B`B`BPH�G_$��P�p� �i$`����0��#	`#	)'�2	@#	� 	!��#%$�C
���������w
pB
�%$�C
���������w
�B
�o
 T
PT
�z
�O
H
P{
PP
�H
�D
Py
E
�x
`M
�{
�M
�{
�@
�$$�C
���������@
�B
y$$�C
���������@
�B
�'$D
�������� @
C
�$$@C
��������@
�A
�3$������$3$p�
��������`�
}D$�xD$���t$ ��$��&��&�&��|D$p��!$���D$ �h�'ХC$���u'���u'`�fR$�����������R$ �0R$�:R$pER$�SR$P�L$��cR$@GkR$P�}R$������$�R$p�� P#О�C`C�@
�g
������$@u$�'u$������$gm$`�
����������
X�$�"�@!�i'�i'��-J�$�`���S�$��P���1�$7�$&�$5�$E�$J�$�${�$b�$j�$y�$b�$N*'�$��$��${�$E�$N*'j�$y�$b�$N*'�$s�[%q�[%�p\%������$C $�����#���U$Ъ�}%���}%������}%*$�}%~%~%!~%)~%3~%=~%H~%S~%[~%b~%m~%v~%�~%�~%�~%�~%�~%�~%�~%�~%�~%�~%�~%�~%�~%%%#%.%8%B%K%S%\%f%n%u%}%�%�%�%�%�%�%�%�%�%�%�%/�%J�%S�%e�%y�%��%��%��%��%��%р%�%�%	�%�%,�%8�%<�%H�%X�%q�%��%��%��%��%ȁ%́%Ӂ%؁%ށ%�%�%�%�%��%��%�%�%�%�%�%�%$�%)�%.�%3�%8�%I�%_�%d�%h�%p�%t�%x�%|�%��%��%��%��%��%��%��%΂%߂%�%�%�%%�%2�%8�%E�%R�%Z�%e�%m�%q�%u�%�Z%y�%}�%��%��%��%��%��%��%��%��%��%��%��%��%��%Ń%Ƀ%̓%у%Ճ%ك%݃%�%�%�%�%��%��%�%�%�%*�%3�%�%�%7�%E�%�%I�%M�%Z�%E�%f�%i�%l�%p�%{�%��%��%��%��%��%��%��%„%DŽ%҄%݄%�%�%��%��%�%�%�%�%�%(�%�%-�%��&6�%;�%A�%J�%T�%^�%j�%f�%u�%y�%��%��%Š%��%bz%��%��%��%��%��%Å%ȅ%ͅ%҅%օ%څ%߅%�%�%�%�%�%��%�%�%�%Q#$�%$�%+�%1�%9�%B�%H�%M�%X�%a�%j�%q�%x�%��%��%�$��%��%��%��%��%��%��%Æ%ӆ%φ%�%�%�%�%�%�%�%$�%(�%,�%0�%4�%9�%D�%O�%P�%[�%��%g�%r�%v�%z�%~�%��%��%��%��%��%Ň%��%��%��%��%��%��%��%Ç%ˇ%և%χ%�%�%�%��%�%�%�%�%�%%�%1�%=�%V�$I�%R�%Z�%_�%j�%s�%~�%��%��%��%��%��%��%��%Ȉ%Ј%w%ۈ%VJ'�%�%��&�%�%2$�M'�%��%�%�%�%%�%$�%5�%E�%T�%X�%]�%a�%e�%i�%m�%�I'y�%HL'~�%	I%��%��%��%��%��%��%Y%��%Ɖ%Љ%ن%ԉ%W�%�%�%��%�%�%�% �%(�%-�%8�%F�%N�%Z�%e�%n�%t�%��%��%��%��%��%��%��%�#̊%ъ%܊%)�#�%�%��%�%�%�%!�%+�%2�%9�%B�%I�%{%%�%I$[�'`f��������f fø'm�f�e@l!��&�l���������e0l!��&����������P���& zz�wo�����P[�����o���Z�X���������<�b���h�a���������?�T�j�T�U� �>���x��]�����'�������n�����J���������������i���
�"���U���� ���Z������Q�����R�����������w�,���i�i�i�i�i�i�i�=�=\<$\<$�t$�	'�	'�	'
'	
'�t$�&�	'�	'
'�'�'('x'�''p'X'�'
�'8 '� '0'� '#!'"%�!'"'
H"'
x"'�'
�"'Z+'�"' #'
X#'
�#'
$'
8$'�$'�$'�$'8%'p%'
�%'�%'(&'`&'�&'�&'(''`''�''p�0����M'�,���@�p������0�`����i':�i'���������+j'��������*!
j'0:���������)!j' :���������)!j'�Wp)Q$`���������`�M�'0�@�9�'�b pb �^ b H�'@m Pb �^ �a ��$�a �a �a �a �� �� �� �� � �  � P� �� �� ��  � `� �� ��  � �!��!#�!��!%�!�!p�!�!)�!��!��!��!V�![�!a�!��!��!U�!�!�!;�!��!��!I�!��!��!#�!��!E�!��!��!��!��!�!��!��!Y�!��!U�!��!��!��!D�!��!�!��!�!��!q�!��!u�!�!^�!��!��!�!��!�!��!�!�!��!d�!��!��!W�!i�!��!��!��!
�!��!��!��!~�!��!g�!��!��!I�!<�!��!��!2�!/�!l�!��!g�!�!��!�!G�![�!
�!�!��!"�!�!��!@�!��!��!��!��!��!�!��!�!��!\�!��!�!��!s�!��!B�!G�!M�!��!��!A�!��!k�!'�!��!��!5�!��!p�!�!��!1�!��!t�!��!}�!
�!��!��!E�!��!A�!��!��!l�!0�!��!	�!��!�!��!]�!��!a�!M"J�!��!��!�!��!�!��!�!�!��!P�!��!��!C�!U�!��!��!r�!��!��!��!��!j�!��!S�!��!��!5�!(�!��!��!�!�!X�!��!S�!�!w�!�!3�!G�!��!��!n�!�!��!��!,�!��!��!��!�� @� � �� � �� p�  � p! !�!�!� �� 0� � �� P� !�!p! !�!�!�'P�!�� 0� ��!O�'�� 5/$ �"�"0�"�'��"�������� �"�=#}�'0X#��'@;#��'0J#��']#Ʒ'L#ڷ'�`#�'�S#�'0T#�'�T#	1�'@V#
F�'�V#a�'W#{�'PW#
��'�W#��'X#˸'@Z#�'�Z# �'@[#��'\#H�'������$�'�6#���������6#��,`�,�,�,�,�,��,�p,k,�j,�V,PV,�?,�),X),�#,x#,�,��+�,�+�+��+��+��+��+��+��+��+ �+ �+@�+�+��+�z+�v+�,v+�s+�#,�s+�r+�p+ p+�o+ j+�g+�`+�_+�^+�\+W+�V+�V+�V+@V+�Q+`�,��,�V,`M+�@+.+�+`+ �*@�* �*��*`�*��* �*��*x*@v*�p*�o*`n*n*�m*`m*�k*@k*(k*k*�j*�i*`i*�h*@h*�g*@g*�f*`f*@f*�e*�e*�e* e*�d*�c*`c*@c*(c*c*�b*�b*`b*b*�a*@a*a*�`*�`*�`*�_*�_*�_*�_*p_*@_* _*�^*�^*�^*�^*@^*(^*^*�]*�]*�]*`]*H]*0]*�\*�\*�\*`\*H\*0\*\*�[*�[*�[*�[*�[*p[*X[*H[*0[*[*�Z*�Z*pZ*PZ*0Z*Z*Z*�Y*�Y*�Y*�Y*pY*PY*8Y* Y*Y*�X*�X*�X*�X*pX*PX*0X*X*�W*�W*�W*�W*`W*�V*�V*pV*PV*8V* V*V*�U*�U*�U*�U*�U*pU*`U*@U* U*U*�T*�T*�T*�T*pT*@T*T*�S*�S*�S*�S*`S*@S* S*�R*�R*�R*�R*xR*@R*(R*R*R*�Q*�Q*�Q*�Q*�Q*PQ*�j, Q*Q*`P*P*�O*@L*H*�G*PV,�@* @*�:*�9*9*�8* 8*@7*7*7*�6*`6*6*�5*�4*`4* 4*�3*�1*P1* 1* 0*�/*�/*+*`(*H(* '*�&*@$*`*@*`�)��)��)@�)��)��)@�)`�) �)��)�w)`f) U)�C)�0)@)�)@�(@�(�(��(`�(@�(��,��(�(�/* �(�(�(��(@�(��(��(X),��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Љ(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ј(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ї(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�[*�(І(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ѕ(��(��(��(��(��(p�(`�(P�(@�(0�((^* �(�(�(�(�(Є(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ѓ(��(��(��(��(��(p�(`�(P�(@�(Z*0�( �(�(�(�(�(Ђ(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ё(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(Ѐ(��(��(��(��(��(p�(`�(P�(@�(0�( �(�(�(�(�(�`*�^*�(�(�(�(�(�(p(�U*`(P(@(0(pX* ((�Y*�U*(�~(�~(�~(�~(�~(�~(�~(�~(p~(`~(P~(@~(0~( ~(~(~(�}(�}(�}(�}(�}(�}(�}(�}(p}(`}(P}(@}(0}( }(}(}(�|(�|(�|(�|(�|(�|(�|(�|(p|(`|(P|(@|(0|( |(|(|(�{(�{(�{(�{(�{(�{(�{(�{(p{(`{(P{(@{(0{( {({({(�z(�z(�z(�z(�z(�z(�z(�z(pz(`z(Pz(@z(0z( z(z(z(�y(�y(�y(�y(�y(�y(�y(�y(py(`y(Py(@y(0y( y(y(y(�x(�x(�x(�x(�x(�x(�x(�v(\<$��'$��-`�-\<$��'��-`�-\<$��'��-`�-@}#@}#P}#�}#�$��- 	it$��-��f'@�-8q�'��-x�[%@�-|�2$ �-s�-@�-�o�-��-D`
C�$Q�$@*�('�f#҂'�y#�('�z#�z#�{#0|#�{#p{#P{#}#������$�E�m�@�x�
$�#�$S�$S���o���4
V��SІ�P`~H�	���o�|���o�o.m���ov0$�tS������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v�������������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v����������������&�6�F�V�f�v��������������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������		&	6	F	V	f	v	�	�	�	�	�	�	�	�	

&
6
F
V
f
v
�
�
�
�
�
�
�
�
&6FVfv��������&6FVfv��������

&
6
F
V
f
v
�
�
�
�
�
�
�
�
&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������&6FVfv��������  & 6 F V f v � � � � � � � � !!&!6!F!V!f!v!�!�!�!�!�!�!�!�!""&"6"F"V"f"v"�"�"�"�"�"�"�"�"##&#6#F#V#f#v#�#�#�#�#�#�#�#�#$$&$6$F$V$f$v$�$�$�$�$�$�$�$�$%%&%6%F%V%f%v%�%�%�%�%�%�%�%�%&&&&6&F&V&f&v&�&�&�&�&�&�&�&�&''&'6'F'V'f'v'�'�'�'�'�'�'�'�'((&(6(F(V(f(v(�(�(�(�(�(�(�(�())&)6)F)V)f)v)�)�)�)�)�)�)�)�)**&*6*F*V*f*v*�*�*�*�*�*�*�*�*++&+6+F+V+f+v+�+�+�+�+�+�+�+�+,,&,6,F,V,f,v,�,�,�,�,�,�,�,�,--&-6-F-V-f-v-�-�-�-�-�-�-�-�-..&.6.F.V.f.v.�.�.�.�.�.�.�.�.//&/6/F/V/f/v/�/�/�/�/�/�/�/�/00&060F0V0f0v0�0�0�0�0�0�0�0�011&161F1V1f1v1�1����'������?�������?�������?�������?@ffffff�?333333�?�S����@�S@�S`�S`�S��S��S��S��SQ
������������@�����������������`�S`�Sp�Sp�S�U@U�Cstapsdtq��-ԯSrubyarray__create-4@$0 8@%rax -4@4(%rsp)Estapsdt���-ԯSrubyarray__create-8@%rbx 8@%rax -4@4(%rsp)=stapsdtW��-دSrubyraise8@%rax 8@%rbx -4@68(%rsp)/stapsdt����-įSrubygc__sweep__begin-stapsdt����-¯Srubygc__sweep__end,stapsdt@���-ƯSrubygc__mark__end.stapsdtP���-ȯSrubygc__mark__beginBstapsdt�d
��-үSrubyhash__create-4@$0 8@%rax -4@4(%rsp)Fstapsdt����-�Srubyrequire__entry8@%rdx 8@%rax -4@56(%rsp)Lstapsdt
���-�Srubyfind__require__entry8@%rdx 8@%rax -4@60(%rsp)Mstapsdt:���-ޯSrubyfind__require__return8@%rdx 8@%rax -4@64(%rsp)Gstapsdt����-�Srubyrequire__return8@%rdx 8@%rax -4@68(%rsp)Bstapsdt����-گSrubyload__return8@%rbp 8@%rax -4@(%rsp)Astapsdt����-ܯSrubyload__entry8@%rdx 8@%rax -4@(%rsp)Estapsdt���-֯Srubyobject__create8@%rax 8@%r13 -4@4(%rsp)Cstapsdt�b��-̯Srubyparse__begin8@200(%r15) -4@196(%r15)Astapsdt�b��-ʯSrubyparse__end8@200(%r15) -4@196(%r15)Dstapsdt�,��-ЯSrubystring__create-4@$0 8@%rax -4@4(%rsp)Fstapsdt�P��-ЯSrubystring__create-8@%rbx 8@%rax -4@4(%rsp)Fstapsdt�Q��-ЯSrubystring__create-8@%rbp 8@%rax -4@4(%rsp)Fstapsdtg���-ЯSrubystring__create-8@%rdx 8@%rax -4@4(%rsp)Fstapsdt���-ίSrubysymbol__create8@%rdx 8@%rax -4@20(%rsp)Estapsdt	��-ίSrubysymbol__create8@%rdx 8@%rax -4@4(%rsp)JstapsdtN�!��-��Srubymethod__cache__clear8@%rax 8@%r14 -4@(%rsp)YstapsdtZ�!��-�Srubycmethod__entry8@64(%rsp) 8@72(%rsp) 8@80(%rsp) -4@88(%rsp)Zstapsdt��!��-�Srubycmethod__return8@64(%rsp) 8@72(%rsp) 8@80(%rsp) -4@88(%rsp)Wstapsdt!�!��-�Srubycmethod__return8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Ustapsdt@�!��-�Srubymethod__entry8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Vstapsdtv�!��-�Srubymethod__return8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Vstapsdt��!��-�Srubycmethod__entry8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Zstapsdt��!��-�Srubycmethod__return8@16(%rsp) 8@24(%rsp) 8@32(%rsp) -4@40(%rsp)Ystapsdt��!��-�Srubymethod__return8@16(%rsp) 8@24(%rsp) 8@32(%rsp) -4@40(%rsp)Fstapsdt
&"��-ԯSrubyarray__create-8@%rdx 8@%rax -4@72(%rsp)DstapsdtL&"��-үSrubyhash__create8@%rdx 8@%rax -4@72(%rsp)Dstapsdt�&"��-үSrubyhash__create8@%rbp 8@%rax -4@72(%rsp)Zstapsdt�2"��-�Srubycmethod__return8@48(%rsp) 8@56(%rsp) 8@64(%rsp) -4@72(%rsp)VstapsdtQ;"��-�Srubymethod__return8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Ustapsdt�;"��-�Srubymethod__entry8@(%rsp) 8@8(%rsp) 8@16(%rsp) -4@24(%rsp)Zstapsdt>o"��-�Srubycmethod__return8@48(%rsp) 8@56(%rsp) 8@64(%rsp) -4@72(%rsp)Ystapsdt�r"��-�Srubycmethod__entry8@48(%rsp) 8@56(%rsp) 8@64(%rsp) -4@72(%rsp)GA$3a1x�~�#GA$3p1094�1��#GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*�o"�#GA$annobin gcc 8.5.0 20210514GA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�o�#GA$plugin name: annobinGA*GOW*�GA$3a1��#1�#GA$3p1067�#"�#GA$plugin name: gcc-annobinGA*GOW*
GA*FORTIFY�<��#GA+GLIBCXX_ASSERTIONSGA*�<lGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*GOW*�
GA*FORTIFY�o��#GA+GLIBCXX_ASSERTIONSGA*GOW*�#�
�"GA*�<lGA*GA!libruby.so.2.7.8-2.7.8-141.el8.x86_64.debug��1��7zXZ�ִF!t/����!]?�E�h=��ڊ�2N��U��KC��!�55Pa�f��P����l
�ǙysT
��r�_3��=H���V�qX���#5L#�`�g�e�5q�?�P��z!�77�>n:�?(IG��$��R~
ԃ^*�vT�+��a>� 
�j��HX5�׈w7�ٶ֭P����R
|"@�Mo�lpj#���&v`o���!g$��H6�Z���ϒo��$2��i��-U5��6�TN�\��m��g>��f���^��˯-��(P����/�@�����#�r�����|}�������X�s�Y�H9��y��i��]�}�'
Ѱ���.��4���q.�%�*I�~
�
N-�$����QF�'![�4y!a�a��9×:�x���)�ѩ�Is�Î5��Zk��
MH�a9���*#��Z�6.؎O�f�a��!��P�=d� �u�wEW;�x�"��ٙەS~�mv}x�N��_YZ$zk͞�PN�zzX���('�zXZ���b~5J����͙^����߸�HY����U2uf�Q%?u�dL샩�ؗr���Y�7��R�Dgm�^��y�S�Y��K��hVU!���?(<gM��yY��1�g[̵�MɌ�=�T���҈A�cO�Y{��hx���)��u��*V�z	7����Xt�8�`L�%a�a�C&+@��q�q����<�����������J�=c�^��Z�Qӣ�8�ԉx4��������Jֻ@%�����C��?�A0͈w8�.�<J�ɞLJ+��5z3ve�g^rX��m�UH_0��y���If�����B1�_-��9rw��~�H�@�jW�2U/�!����Z�Ʀ�$�X�^��E�FY�"��)!����α{�1.i�ķ��9�&?-m�}"�D~�r�z��2��^\����3��Ş�&��-Zl��w������K��F7C�S=@�//Nkɡ]��t��^)�>�p�O���z��|a�{������0��*���à�Gx��\��-��ɓ����C�|eJk���|�[�n\4�A=l]��PxpX�#�P��5K
l�W)'L���K��y��.��6�N�6A[d.���x�2�Z�㊖�tC�"(t5z҆M����<����H��
���]���M7��`��(�D?�s���)B�f��P���v����GT�w��T��Q>W0���j1I�S^��f�RPX��nԐ����j
�f����>�Fd蔑��c�	�D��c����(+?91�:�o�m
�6+�/��n��(�Ğq	��z;�a���#
���)���G�4wߍ�ʝ��;$��S�SsKM-YD��y���m��7��	�C�4ۖ�s��GÏ�=��	W1�n�";�����%W;��i���d�#�y�'͌��]b�0������B�����a�}�k8#����.a�
��C�z#�<jA^d���
���?���Vӟ���<4.��W�(�T���H�7���`h`oS�5��O�ᥫ@��}C�m�ª�O���
��]&��$��_�Qc�o{�7���+a�ي�[�Ҥ�S��
;棴q�����1�&��ra�*K����_Pľ����$�儺xq�A���$]�b��{���K/�C��w5���2K+�mB��7�(,���v��iu7O@�~!QON�xj��$Rd'�	�U	*��i����Ӄ�	�d5�|,��d�۝�-�*$3�n�6·x:�g�d��e�3��>�e���,qC��a
C���'�s���H� �H�iH�v��،�y��3
|�Ny�+��c5�+a+\��Ŝ˼��˜LYp�,��#d���(�����5��2;t��R��7�\�N<�'II�2$���<9p���ɣ��L�0�\�Ltt��� -f��?"��I��!@`$��X�U&ڰzxj+	��r�&��P�Fǡ0	���2ۻ��&�=A�8q(p]#�JY���s�oW��
�xo��ѕ�t�Q$v&@a�cYCQf&�p4��I=���dӘuZ
ӥ��pȼ�;��ɒ���ei\��'<閸��q "D�/���		r
	��A�Q��x̚fsf��Lw#p
�o<!�S�9ڗ�����/��b'2�tr���>r-�&�-=>y��j�vg���H߹��'*�:���(A7%=T�i��Z��f������u�VL�D�*#�Z sM�J���V懵Iu��bu7c��z�C�C����A�x����%�SR�t��6*H�[�59k:R4c���xD�vz\��P�*q�9��t��� ����K�ž���+)`���%�Y�F���[K��Ěn���CPG��S�H�_x�|b�E9�_�8����\���T!,�EK����T%-��ʈ F�\N�%Q�bED�R9���H��ĮpH�l�5�!TOD�+`=�@$��d^r���]/�F�e�cU>:Ml5��Z
̫\��kq�w�[u��d��1yy!����ԁվ��:"��
{�	~�e��2rI3�nm�Mn���CvWc��L��&TӦ �0a�{aY-����q�{���k��0�dYz�ي=U㲰W�zՅ�-z���tq�8��8^?�����]�O30�'�#i�8H,�Vtѯxf���'����.{�n�\/�����g�Z[)��nC�Fj?�)���h�KT�-|#0.�wo[����h�[i+��!N�6�K�t��]F>���Y�b�P��s����09wk=��שӼ@~N.�F����b~-�9��D��נ7ב�;�8����W��B�O�zBo�Kfd�o^8��r
��J=�g�Z�T���Gʪ��n�]�]�iS��熑�F�����l��2J�T@�
�監�:%J�����z=��ˆ��-XN6�����M;���Ԃ'Oj�0@��_��C�v�u<��]�][Y�66���P�xf���z�����f�<)+������'$�ٲ�c���S+�^O�X�F9��Q5z�w@si"�5����d'c�f��|Z�~�#�>��2)m^�EeSYǺ�M�Q�t��q3V�rL�������԰�kO���۩c�������c-
����Z���a��8�!m�E8����8�^��c]I��<Y-�/H�r9��r'a�xq��Pc(���Ul	jf;}��
(����w����z�ZK��F�F	*���
�/
�Il��J5�Yq%ޒ�y�J)͑yfs,���(V��Ie��
-5t:��nD�zw�on��Ǔ��Znl2H���.�x��/+@����I��d�О�+=��O���vm�Ɓ�=�;N������������aI9������k�\Y�KU4<g�c���dR]S�	���ј;}��I��#-x��z�}5?���م�#���r,��"��?��lj�C�=W�E�_�~�;�*�	�X����8�4%�
�G�:趈�7䟼��
�����i$Q��۾�^�{dP��^��rm�l��c���C<�l��x��Đ���Y�'���S��idХI��+��(����*��%x�����9��F�\���ZiZ�=����6�X�ɶg��#>{���L�EP�*oLxAI���
� o�'� �̺��%�N�������r�D��_�qa��-#9Ws!��W�����̉�{�D��!��'2�7F��+H�в�\ui������_k鿽o��o�Q|W�s�t�
�D�`�>C-��n��MN�/�:��~'����JX>�:+b�j��)�]�TA���6~�br�7�x>OL�I��a�~n)Z-�h��5p���n�jk��@n =K�?,�Q��c3L�c����4���<��
���E ���pDm��M&tv�B�GUxhѲ(�!���EV�-��_�$�y�I�2��/�
4�2��Ȁ���&���<��_)����D{�$��k�4< �ʧM�'2�*����k�3hs=�(1T1Ϭ�FO�6f��x^�8�b�{�S�?vV�T$�q<�S$ʲ�"dÎ[����`�22�Zp��
�����_Sb���Z�ʺկ��[nٺʏ�l5aoT6�����>�Q�l��w���¡0��(��+��-�-#tN0��=�a(N_�[��ގ���fY9>M��Sϟ¦s���b$�����N.V;,
���x�ϯ]+]�穆�=tJ�����T���͉װ"��s���ݱ�|�MsV3�T��t��q�4�w�к����Cx�6cG�	��w�'��}���+�u���Q�=D,�j%F?�\���4V9�h2n_o�V]H*�HM����t��ϙ�t�qf0']<��٧�7����C9|�	\V���ρܭdEN�LY(&?�&U��eI������:l7$�ڑ6��ڎfGG�F�F	�v�>���zbZ�;�����'��I��9*��0/JC#��:�hؔ�/wn����﹵*Ok�'��3T-Q'�`�5�}�+ͧD��0�\]g��g���;���EDŽ���&�)4����8FQFr���Q�����q�rK+��="�z��t�+�<�H���``��Jw�X~�3$k�8M���W�q\�,�&��^��It�A�1�U������������>�(��Yɴ�XN'�������E�{���j�=�FX�M�	q<�J��R->�E���\�̓X�0�U��k�V�Z4}O���b#���U^p�>
�3ԙ�c�QCE���(1p��	X˔�h�j+"�(^�-J�[���;AТj%�J���qͷ����P�^&n�0��7L�/��e���zc���o�
'2��8�ʜSh�9q��
����%-��1W�Υ��F�1���~-@G!p�>�ro���f��M���E��>��)W�'U3���w�XK��&D/��V�18��t����Y��(���I���A��X�}���;r<I6ٳ���)��U.64��<.��ł���
Y%�!�A��h�­��j������b�R�iB��|=���6�{�R���s���HЛ�.B-
4w)Y��sљe�
78l�&LI�~�z�Ω��Wk�����J�kN�җdy�U��(���:Y�g�k\xEaI<���t��-�Ĺ%,�U�K��kJ�{�u��WS̗�RG�� :�X���;픇`=n�3�H��*AR��#Ϭ�lI֑����r?y:�*�󦺉�Pd�Ya��;��(�M���]����TFh�h>��ch�/c�D�`�	�W�s�=��[{���F��<�a~����3�tu��
�4_b'�<�vfEo�M�Ł��o��2#�5�bMC��M�.u�.V��KMhe��]"���4��Ş�>|A��N,@�f�4�uI;BG��{�@@�Fh5���xp��t�P8'U�X�A�J88��_5N����e��RԽ�y�VX��Mա�h�����&����(����XGz����Q��~�tM�9��;b�����Ԭ�Z�1����0�û�~���:��L7!B���r��c�bXڧr9d��m�8roOi��2���vM1F��]'~��
���M=y�krY�A�ɶ�$.�&�Sz71���ў���L�NF�T�����3��
���kz�=�B��ȿE[K-)ܞ'q�����;Z	VA��0�e(��?3�:si��M�����%��Y��ț�C��@����bV�U�������Xv��RT�bݗ��C��|�! 6�4��¹�z(�� �@�q�v> h�ǫ�S�0dT�����/򀗳�_�e,9�R�w�l�"h��>9=��2W�F��o��Z�
��bq"fS<$���J��ɬ�N�o�*f�P��J*3�I����<�����E���/>0����:a����
w���c�4{K��@��r�����^M
j���۩(���1y�%�Pә�J.?*�4�ǹ��D/,�J���J$S��
�z~����J���K8ph{;p�
~�J䩟�O�Y�f�t��]I�WW�i:����(*GX��}����^���F�@~ oI*d.nd�ʭd���`�Ѝ�PS��{�L�<b�wk�$^�,�������p�G!嬽)YcY{7�9�+L&��=��L�eW����TR�
|�qQ��
����W��(=(��&Y�d���Bnj;�w��߈QtG"��&H��r��]�
�8OǬr�31<�k�Ux�r1�?�V���i\�W'L�u$ѥw��a�?�0�.��\��[D1��^�,x�[��5n9��E#�>�C|#�}�%�򰱬P9YҀ�w��5zy��J�j!�q-^[H7k6pG�pi���t;s8@���-�g���.j/ъ��zϰ���ɴ�#��z^dy��|�&l}0�KT͂�א��G�c�1�k[�fȬ���d�Gb��H�o�s4�Sn����-$Ow�Ԫ�M�8RK�D�;!�u_�J(H%/��m�,e�F�}�I���rF�v�@�^���V�ϥ�8���������.�ѸH��wM^��4�|�8r`���Kt��3����K?���jt*c ?�c	��b| �f�o�?oc\�e�wP�����󟗘��[U'�.��Dq�Z��4���9��d��M����_�%��I[�+����d�F��c��Uw�i����Q��>��
�*y��dH`��z\�f�C�*W7���*�_	�%�{$f���4�d�N�W���2���bnk亄�6����}8E��Q��M<q\^`��o�U�9#�T���*�JN��g��R4�,�������ߋv���T�@ɰ��+g.J��u�<�0<��8�C�P��n˜ά�(^�"����.�貉.D���ڐz���w_��c��u#q�\�����3�ek�*3@��Mgs�H��G �y�蓇��P�	��"��������QEuMW�6Z�<�\��:���1�}���g.���ԅr"	�΅�5����f����9O�nXRe&��]
��y�
k����8{��u��i�K:�Pm1���<��דY�7�����n��^%	_�����I�2{���4dP�rw�@ٿ���{}�Ǐ{{JZ9|8��V��yKZ���p��5�B�'��FHZ!5�$\K	��ouy�YF�gRq�������4{�g>���[�Qa.�%�3�ƇJ����0N�!�M}f3F��ЕU#�B2��P5�s�r3�!0��h:���ExS��9��
���3�nI�O��!��]zM���s�����<J���'>x�n#O�V̻���CK�3�B[<;x7<�daB+�`;9�ɘ���0pP��)�P�-}�cd���e�*�]��5o
�C<`����B���;+WӒ�Ñ*��MيV�u��9��t�8N�nk_�K����oG�wH�g?����&_x��m�g��7����N��)�h��W�5B��rr@��|�+��5<q���L"��E�i2h�]���-y5���J�˿e�G�Ycz���oq�&��Ykm�Ԟ�7;��3��alѮ���΀u/���5����T��UbxFc�_�v��(�S�&o�y�jF+��S���c�WH���%P���o4�	<�
..��e�:>ފj�.́���B]:Ѧ9f�a�΍b��O���
���𰞺E���.B�4|��Q/K���
)�rc��FlĜ�܃�[��Q" S��C���_Ƽ��Y��;���%�m�e�U#	��,�k@���\�(/.W�<�q�>4!W'c�N�/HF�s���Džg>6�3�+�0���v�<�k�X9��_'�]�K�<���/�4�.�H��-���Eh_��c�L�c���<���T$��v���(��R8R_��*d��+g
sGdeS�/�!��f4�v�hKw.6��0��zY�L/��l�/WQr~�� ���`Uc�	��.�765�f�/ K�x�*p�+�]��0r+o8��5���R�.�,�<_Y���`9&T�J�:�~�Pq
�}\ut��ʕI����`��J�,`]�Ȁ�N�'��=�s�b���Cw/e��A�e��t�~eʃ�œ�!}�!�a��|�����IJ���g�_Z�D;�?1)��a���J?
�s�����I��S����z��{��w��$JX�L����x6��������W�%��0���S�F��K�? Vڋx��[5�t�ƈ��:��Vdc��̗�����(�}�,wBn/��a�h��ٸi?��o����-��,���>���r�G@t�Γn�?z�~��n�W�{2�3�:��!������p:�mF�V���z<�B�cqNFY�S>�B ͝[Q$:/h3���g�k�k��g��%b!�j�-G�
3���oU���QqF�:*��%�Lcd_5�#s�}b��=��z��;4Sh1�>�6�f4��>�<E��4���9&ӆ���'�Q�OEpɛYv͖}�S��I{ەFg��Y�yQx��0���-����o]bf�P�~'!+�.�n7���Hi^@��^v����̳(�VU2�
r��J�谘T9Uq	A
�
�dgkZ�/
0r���i$W#}3'(�b@�'Wc(㹙REܱ��3I5sњ�sF�L/�徲6zb*�O$����-lx��g��Fu��5�����G��^�%q`CM�';�=�`��4��v��G������<�^�
ꁃӖ���e��^8���E+�r!΄���2���b����9�_R4����f�����Y�gevk����@��r3D拀�KWt�ى��Z��p=jٽ�ƥHtV�ഢRo���r��|��{Z{avMb��^�I65�Ql`52���EehS�W��n�MӺz���z
n�Q�|��Q?E��i] ����QwߢZhD}cN�"��	HPl�����~�2S��!�ΑP��;E"B|���$�z��s��cW����#_#r����F��uB����������W
Ϟ���\��X�k�d�U�7.5��9l�Ƞ e

�X���=raW4�m�nU�Ϛ�V&�J�d�]�e_�2�����/�|{,{�(u'ъ=��:��*�0��[do�g�z�T��b����	�dbbrs�f��̼�n��w��M+��<���p��[��T��	��)K�DW�2�ɨ��Z*�c&sߜ��H����bi�U�əh�񳫬��v���+s�\Ʈv��Y������*��[B�5��Zo��C:1B�,֯ߏ�z +ˊ��B������^����v�.�YR-�+�?��b�IQ�a��7��N"]R��t ��A�"��o���?���L�VD��)�}J����A>>�	L��0 ��&ԏe"�$���eTۡs��zcZ��&%��z��خ��Au��"����&�Q��=ݛy@i�5�4�;V]Z+)���$��$���9�;e�UO
r�g���
$g���I�SI�k�V#��l.��}]8���Lu2e�ʋ�D������iL�o�v�Ƹb�	���U����%�b��t�<p�r�)#h_��hGv��PA���T�_
��U�u�_K6a�;��QeZ]�`��ؑ��'Y������ʑ՝\�J�1�A�9��B��zX��X���Rh1��ׁ��ޮ�?9c�$� �xp4��w>�:�]� 3��1��@㿡��)A �
9�/r�jЌP���j9L��6�]�bדFm�ȤA3�ps�*��P�P�}�cV������T��W�fw�)�Zɐ����Sp|&��T��'_|1&����4{��S��N\l��L��R��n�F?<�Ґ�����7��W;��Ȝ7`M=��Z爐�:���P�V;p��B�"����T
w�&Q6M8��e0�[	���U(Q0<D�y`7rx$5��d�"��y�
�7D��$��T����������#��U3'�I��{�v?}��VMU5_����C�h۴3�9�9%���%����U�[���Sx3�?X��[��i�]0""��uv����m���a�\X�q�RA�����E��,o�@�f�@'��ɛԞ�G+b�ym�����z>�Ƣ ��~�+9�vT=�y�е#g=�K�Hl�w~��C��͖�3�]��u.���T.U��X��3~�B��g0c(y���e�J=�+�Ze�B�+�[kW4h޼W�V���[��i�4X�W�3ّMw���>�Y��.�$�����b��i$�_j��J�����ٜ<9)�TO��Fr���(v��clZo0[7���Y� ȡ*�F&B RltwFl�[��Y[���5c��ϷyJv��^�0��tM�9�ΜJ���!i~�Uפ�����z<��*(&9l�ך��#�ч�a��u�ң��9��f��_���MAhf(�Tz�	la���E�D��[3�:�s�Jdz��w?Q[uO�O�3q�8�o8Y��\���oif�"')f��d��GW�]���@]��,�_2*�L�szp"[����<��T�G��؞�߭�Ct�l����Պ�٣��2��\�� �̋�{[�K}�@� �����	/���	[,`�ŽZ��G�M�xx2
^Q��w�
v�վ2.
p�!��3̹ec,�j���rRB�y3�iS_ܞ�GG��=��a���WW7�?n�z�'&�%�e�2&��X(O������C[��5	G�6a�n��GA���,]���$��呰�V�i���{�<v	���Z�od�s ����`_�{��"<׽��/^J�d�����c��
/E���ˋņ	�gIr�w��`T����V�r�>�=G�ۂ��1�x�~���;� �����̀���+���<u:�ǁ��%��BziY���j��Y�Q��!85�E1_���M�A��V�˜�׎��C���:���"�9
�N�9r3���*�P�?[i�	���Sw�򦯘d���3@�A�M�@ʏ<�0��Y�
xu���2�ч��3�O^k[b3�*T$	��P2��]I�
�%�xj5��̢KQ�St�^w�,��L���e:]wUW���^�W�{yX#�h����
��Ze��(\��_�5�4�wo2g�E�DA㵴gl�)fo�ӛz��U1����Qnd{��<cB�'iK��j�h�ٵ����Y&{�C�c���}�X/�[F�|V� ��B$O���!᝔�#��B�@[�c:��Si*�cu����w�?8�bov�L��|$9��;)4h��D�"�)f��<�s��'<�z�L�+�ղ�x�f�V���|Y7�bjg�4��48�eZ!د��l�i!��2ȭ���8�I��V򯄃�9� �M�ۑ�X���Ď��}:�Q��U�#*�0��)F�|G����|/��U<5xv�2D�XC�,4�]�J v�<�,�Ы��P���#HW�	��\9�Ʈ��^�ڙ�荶��U|�۱h+�7^ޙ�j3SB.ァ�+m��Z��u��iG^�4���.!��ˮ��\V&ݨSEt�۸I�#�
T�@�S!��o����oˋ8���������&*�����Fl�(�0�ߛ�|�.�e��s�͹*z��fZ��=0A
�jdC	���R�����.�;���62�m�G�]�l+�������R(P�QI����-S�*nRrXo�'�\��jT	����3��T�*5���Y?��t��)h�t�y7�:�����cJEu��Qv�aV�Q���ײh�_x�<�K�ɴP��|�۫UA3{�j"�e̬9��H>c>s��~���s����#�74x���`�����<�#���I�T?�#��E�yۋcQo���ݤc�p'��Ā4�$/�Jf<J����!9�x

�^�㊸��7z��,�8V��L-�� ^O�e����e��W�[��w��_�`Q=Y�я;H9Fm��>�Z��	��Mҝ��\�+��{n�beE���úh�����m��i��E*�9��QkEpB�ʤ����N�~]��ڿ�I�����Ah�
��Ц��P��~-{M�՜Lk�[�z"�ۥ������7�Lx���0���D�e�	U˅��"�.Ly�2'�\=�Ӧ��U��]��;�T
�q�"�8�4S]f�%��*�E����1dTqYJ�
.�ý
=pV�i��S*0pP�j�l�$8;8O_��>?	kj�ND�G���kt��e7�Wߝ��O�[�ՊX`�������
R��J��Z��L���dMu�Uu*��&�l��п�`>X
�'�8��E�Df��
�.z:�s�h5{����6Edd�W��@c2��Fo��GXrbҮ�����#�o���=�z��R��m�|�<�;]pY�1�<�� �K�w�䴷M�5:���56�Z�|�y�@��j��������[�OxM��
�(M.�Idw���Xs֥�g) l�`q�@���Bь~�vJV���O�n�쿰%mϜv�>x�8I�2���+�,v��A��Y{�!M6/L\*�{eeV0�EP\ַ|$�SW�;(�4��<z�~4�Q�2�S���'>��L�Lj§&p�Nhj5��$��G	K�
�e�n�0`Lr�>��]C��#�CF�3�#�]t�aaeWW?�Q;�H)h�-�
w�$��?��o?�M�͵�7�v��*k2���Z�ϛɈ� ]ǵ�7�����?�"��#5�^�v/b�q��f�.�0�bP����`�X�|�`p�Ϣ(��Қ��Ofkh9y} �C���2T�{P�f���Oس�d��� �/�n�����K.���b�d�*�*m2Pf����P��X����GoT�%���
f�*��N�C�s�'ن��Ԗ� q9Wyn�v]��C��AI��)*����g�:ڼ�����NJN����}���1��z��6}����M�R�j��7Џ
��"M+���
�+2/r,Ⱦ��|q���L��7��3���㦗�3&�j6�%R���'<N�Ŕc�cM9a�ٹ�l��^1@�*��;+�7P������xf��t9U�Y�Y�]^��Ac
Y�E� �E䪠��T��
��Ӑ�u�6�L��6^v�MU�Fx�Dո�ϖԑ�Z�s&tʣ�K�L&w���|͹�M�4:XJ�8��@C?
�&5��t ��Z��c�{�iҟ��X=�,ء�;�C{�0Nk^�IF;v����<���}tbI�m��X
�=yY@Y!tPE0o��)29C.���T	E`>kJ�F
�.1�)�ٳ����j�pl��fD�nU|C<7��@�� 3D�g�)Y�E���@|�)
�qdJk\����3�WR�٩B�Y�> ��A��e���޷4qA�ʱ$5�Pjt�� ?�.���cY!|��G�⊲�-��`���z@�p��χ:v�<Y8l&���%�
�y��-��$,B��(��jӁ=��+����T0��l]�נ.����a|���i.$��-�V�`,ː��$�64�!u�Jd�Z	ò#�wj_��_eOy�sxUeTJ���^���$'	��O{D��&o�)j�w��<���;�-W��Z|�l,�I�pP&�B?����u<��o5�);����Z��s~ 5�0�w<�u����'�s�&��˼V0��[��1��{O��`:e���(Ѧ:��m��"e�y�0��/��\ė��nf�\�f�'��4�7����=	;ʿN����b��[��J���r[9�H+���	�����hQDH{όղ���r�1��RATh��}�h�c�;��g�CFn���7%���I��q�|�(9ˁ��@�H�t-��+����lb	[�lecT�BrV
 7�.n��G�X���]1;�].�t�Һ���F��LY�ڀ�� ���J̤��/v�\
�h�e6{��֘�k_��'�S�L�!��D��p�%$���ה��deY0Hs����d�;@K�T��Ԃ��<>☯I19]�ZޒqkM���}#���g-��?�;�m;�sO�8}���w�A�o���[�ͥ�~��"8\!#���:ax�!`�k�%����Y���:p��Jtt@7��(�W��L5���Vm���@e�������g6�*|�H��<�l���
�W���]�v6��4k^WZ�i��S遵()Ht1n���T�B0�������~7�Z#�޽��}�Ta���Z}�>܋)Y̌?���c(�c����*��a�� �t6q�P6���S�oA��](�'����%ʾ*" ��/;�bq�����
�@-�?5=���	�*Zy\1������J?HR�
���-�\X�Σ�O�x3�G��I�gLGT��f���XV���oHBc*޲FI��R��,�u�Z�>���*/B�Iv?���t�=��9�4�7��k?���Ă�}�l�;qƯ�O��ew����Z��� ��'f.E�f�۷dΤ�M�_��R3T���O=�(�oŨEgT��D*9@�*/!od����i
���1�.��߆��+��ֆ%ٚ,���7�Ae�|"{&��~���&�Es[wUO�u��B�X��/_,k$�b�I���N�AŞ"��pGʈ"�it^�����¬	ɧ*�_Px.�Z˴T�K��bs�E
�����'�FP�c��2���3�B��T�c>�*�K_�d7�D���Hax�E����2���˟��U��W�dq Q�!#Ju6���6�ׄ:�k���p����KL�B	�S�c��=
��61w_R�4!J�o�ϋV�p^o\G��^�o3Z��~d��Y*@3�X��d|Pe�?����phޡb�2F=�hS��[���.9O�׬Y�����ͺ�u�__X��*Uex#1�����U4f�V�z~Hd�}u�"�<�As�����ګ�c��Z�t$5��7U���?�*���x��XQ�1��2s�|w�n�cC)z�B��U���:�&��/�]H��.�R̒��(Xw���0�b!��ȼa�*	�����,p�����m��Mx�xo8@#*��e���F7n�o��,�M//�`t�lr<��m��ۈ؂w��Tv%7���
R.����j��Qk4@�� H%؜�'����gԱ4����������L`JI,��;���D��#���"-u1��+��[gJP�Z�]	�+���)�b`��X�J�I��@=:��v��v=�O�w{
r��hf�p���1p���P>=b�ci
���;�MT喚<��ݽ#zX�9Or��ƹ��\_�y��p�K�I����[!_��%�����W��)�|���3�����[3zFJCD�n�4\�&f�;�;��i��]�%A��'u�h���{��2������-��?1�}�|P;B��b1{Z��y.
J�� �#r?�`*������2
�c���/�q!���s��m�YO��Z�)�ZPG0�;g��[���2���H���M�s���D&�.��XI��G�+�U��A9Z���D�W��ع=�Y�	$���FW	��q�;� ���"bQ��*A����DsO����LpX�Q���5�w�Ĕ(y��$�/^<{��#��X��8�������1���4j�TQ��gVǹU�9���K)TO,%E0�;l�{
u�����bA�	.�A�pX�n���%~SS�i�Bz��몧
�-wҿ�w��i��$��w�,��i*kBٗ x�I�C�&糊(�s�t?n̴j��D�
�^�$���n����0��c�w���=lm���P�e�s!�х	ɹ
;Ů��ϻU�O"`ݘ�ƒHy6��'�E7��4�)(��H�����
!�GW(F��Z�qy�3��7T�|k@fv�W�������Y��|��Of���W�A�W/KX�A%��lO��R0M.�k8�x���,�]��Eoip9��]`+V;6�d�ʏL�Sxtk�M�Z����]<���	���Pgq���凥v���aQMdS���Yl���E��ĽœC�rs�t�KI�#P�k��p��p]��XC�o9$!a9Ӿ~'��W�>��_~�	���	�q5���^��M��!�/�I�I�BqKZ��?���])��Qg+�5��@�!�1��{%}�A���л�9��-��4���ŬޗF��g���>��sV������%N�(��:8:3��d�>�h6�m^S�z0�k�,S�א�9Ŀv��<��Q�ؓ6Ft�a3�ɄV����v��Y��~^pG�~����*�����9�}`��
s�(mM����ͅ���z����{̽$�h1b/�'Z1��d����Z�m=������vQ΂����6��gi��JF���0���#sԻ&D�*�R�wdz1�`��p�lE��������fh��M�e���:-2�:H��u�i�GJ�$�=��k�5�"�(T��7ݜS�)���i������)4��E���P���b���5�/f��w�x��f���,$>b�@Y�Dv�ͶT�`֗����@c�Fa{��|��Wo��
�n�P��%��w�ƞv��^W����b�7�8���H�|�bܪ�~��,�,���Aa�"J���tER�a�7�����ZG!G}T4}������=�@o��Z��j|��@�F�y0�Ś�qg�0��0�[��csuz�F��B�X\�B����l����'n7�4\��k�_.8cIJ*��N�`m-�$0���K�<z6�����"���kU�G:�z�dg��[~.��Ō�Lz�舱�D+�
lM�l�(�ŀִ���͑����{-^���i�"�p]����$��ht���$,Q�H�Oh
쵄"S(2.���y��NW�Q	R�ؖV~Pb��8�K�864w!�@�����<l�<LH{g6ۂv�l��T�<�ʑ\_�;)0��:�V]V�B1q'�T�*s*��	�M�2���a��(��M�5��B���A�� ��ӍI6����Zu*��zo�
����{Q�<&��C�0�T�$�h��}�ه�ᬗ��>���έQ�/���|@˔V��4�A�< ��sj=l*���<�r��~k�	��� �-y�k��G��
h[��Z�R�k���$�{�#|=Y��ɇ��zË����a�K1���w�&��q1�3=Q�2yJ�B���.tĦ�$%,Y�;6����CY7���tF��ۖ�{��o�0��!�+2�T�P)�c�u�;���o�2�^q� `�r��c�P��ߧ6.���A�SHWf4j��SS����K�<�D9C#!5���@l���ƒxEY�y-؟%�����:F��?���r�tc��"���ؑK4#�dT���]¶��"�]��ϏX�n��a�Y�
F���]��Aо��(*ٰ�p�����'��r�DeH&}W��fE�]>�rA�A�)FߑrĂK]��`�B�~���`
o/�M�#��*��v�#��b�Ͳ�ަ��6�"
H�?N|	��=4.�D�T�\��9$6�)�#�7��D)S�+shW���)��X�	,�⣔��O�h\�JL�)a�7}�^�Hya��v��y8�m���J�9/��F��Uș�gi��Q�K������(/�
��?H��6a�:g@���!l��n&��
��uX�T�Uv�����>aƌF�m߄��
Pg��v��}]7(	RY�o�84��I����Q��~��hI��i����`<�b6�TA,}��sT�O�o�K�K�.*�����	7����

{5�,W&�ě�T���9�e(���,��ڞ��^��Er���峉
�Al�~��ǂ{�Q	�d�[����Ɋ��}(��Q�G�~�Ֆ��g�9��]4
�R�}��0�g�1~^:������_1dE���\��B���G',��b�xفsbZu<>��u'�Pe�.��|����B���^ �n�e�G}��u��$�a�(p�����o�3��я���!�Y�7�2��+26y�G� �������J�]���\o�k*����Ti݋`C* 
}9�y�Ie������>>�.͇၎pͅ�AdHT�v�g�%�u��
������B�����j��Sa.ctd) E�F�)������\G����'A���G@�a��wgQ��sD<tK,�����JLf��iM��qfj+1�	⍴\�Ļ�F��UXلg+,��"m0ff�����x�Ig�2�,f����T�䒎$�D~w�'�Qݗ���8	�f�P!���?:��ց��3�p9i0Qc��MIt�Z��qٴz~����>���Z������%�#b��T�֙D4���|����<�n
���7�!e�}3����5_��Ȱ�P��j5`	=l�s�@��������'X�.Rj�����5b8�8e	oF��,-�?F�o𹊝	Ѫ�fq�=Et� �؈�,��E����a�s�X.�,�x�&,T
a'_�����Aa+��R�9Ȯ�`H �Ną ��a��	��7$>G�t�,������F�A�/Ii�!Y��S_����:1��E}�[Xx���.��H<T��r�i/�a�A;mLZm��$�ã_T���U��h6�@��4��0�"���ؠ��{�}�k�q�|�ݫ�̉�At�MxE?�)�\�@[X�*�j���$h��vO�&�i&��ә�J���O�ۍ���9��p�Is#��o�CGB�
��GE���80:�4@H�?u]�ܗ�6:9�@���|	|����B��T[V|sb
���BF�k%
�ވj�/\G�K�X�
��wj�6�X*4�6p�����Q|o�p���,�+�G��y��7�s_����j�Q���6S�8�N}�ϧaR^W����T��*��*_�A�6#��6��c�"ƌ�0��%�f�bX�AS��rs0�p�Knbيc��|�<����Ȃp�^*���>
���h}��G;��x���
��w����W�B���o�O>�y6c�,��a3N���FǤ5:���J���H�:�vΎ BH����λt	�3D)�6�,�
����4ul�b���*���K釭)���*�{��&�׮�*���#e44�d���,7�(��������#kUY���O����&ܲ4�3�Q�i�61�8�*�`�(���s�l
�=WS�w5g�wwk�}`%w�:��'K�������|�X���3Q�S��+a��8O�ZW�arhN����0<×wN��#�MYG�m��ڦ��i 3;��6�l�����]Z�NT�,x�~�p�w8��&�m'����9��xa�&��[��d��b�;G��:_���?��� �l@���|�&x�<M��<���أ���J%R;�
bğ.u>.�Q������D˖�'�<�ep�E���փ��ME@�0��4S<��֟�-�x.����s��*��Уs�0��ײӨ��g����K�X̀��]�����zw!��'�R��><HG}��Ii3���cC�M<Q�g�,���=�&v�1Y��F��E�Zk�Ȅ9�ZKsW��Ŗ�R�N;�O�HL�P|-����.�-�ZG��+�g�g�n%��߶�"{�@dԙ���E�3W���"�Ƿh�̺�d��GoA$�B��^�=�$��&�9L�t��܂��4.��K�jOU�[Kr�%�G<e�����T��b{��
�Ӥ����zA�t�������Q%?�Ya��.	�Nz�9qJ��ʝ>�P^��4w9
�g
����d%��D�,�5Mt��CgK�<!�e��>��C ��!oNX�9Pfc �R���v30 �kkK��>R�a�_4&l�T�n�@K�
��&�-a$�s2��L�4W��k���d�
'�fd�]p6_�e�rV5�U)[�;��T����c�o ?Lb� ����#a˨�\����u_���c�+[MG ���\cz�d�3
B����!h�&-�o/��ke�����a���.�v_Z��v\j
���z5���w��V���m�W#�J�!ފ�-p�A ���m1#��̈́
#�n�6pJmb��={g�B8KxXx6 �
,�m՝�ܜ�}@�޵�mŠ�Nbj"M��"��:�V��?%�P\�%��N4�!�Bn�m���n�}�!��4�Bt���El��K���=*�Aһ�P������mqw�@|b�`�N�RG�	��^y]**�QѠ�C_m��
9����$^�Q�Hj�l�q[��b�r�e�#�k0��V3� "�'F>t�*T3�<�k	���x	Eb}���a�vTط�caJW�%��o0�\�	g`�']�0�=d”��sQڛa&D�4+��j��{���~��%�������J>��Nx��b����!�|��h*�<4��a��M��'����/�REֈ��yOOcJ+��S><û%y�H;������JK�S�6"'��HT��{U�Mu�z'�|?܏\g���D�4�}o��n<��xx>�E��@q.D��!{���I�ԏ�K3�9�Jh��M�+Y3%��U��D��3n��
��pw��L��l��5w&�G�RC?�^,#�_q��������P��Y�^�x���:��E��f�.*�y:NP��1�2L�
l��Ð�ji0#+�<.����O�߾�.�>���AD�U�v�4�q���A_�>�����(�?1#i͚�8rC�
D���"{/`x�I���8Rs�K�SR08���r�d\E���bA8�Z���f)�����i#�q?	!���R�18D�&�g����+R։�~z&���O��H�հ��e�
ֆ�B��"?	�%]9N�X����J�.<O��.,�EN5�fޖ���G�x��]�M�%�טl9����!�ql�����)?}�z�	�L|�$�*���6�w�o���4<�t��/r�����U�P֟�"��~��fqV~L���'�07#R@m�_��W��뿺kd8���	;A�ܸV՗� �Fd�roo�t�|I;���%T�~�t�%>����>���|c�t"pܫ�**'�%Ck��!'[4	�[[	\晸�ąK����<
�Z��c�tP9�-is(��yJ�J�䵩&xL
�Y$fz���ER*}�
a��>GZ�X��3�{���ű4Lᔬ]x1szku���D(������d�Z&�e>K�.7C��qqc��b��/�[������l�r�
$@OH����t�-%�,����L�B�I�����E�n�Xu�G��<�i;^u�5Y}v1u'z8�����WE���B�RC�/��i)G�Čp�;�T ���X�ٳ���c��`E8�c����,(:b�l�˿!Ð���挔�O��0R�c1�4��o�$�H}|�q�
�0�m�]�ŠHW�A����=�q�X�x]�0$�3}>�,�,���tկ�h>���1�!i8c���s����~�=��oV�H��*���H9��t�$�T֪�b�yR�躘��b�{7K�Clt �%]������R)BN���]}ә	�g�T����\��1���}ݫ;�w�F��W*1y.0_/������y����)�u���[%+S��s<Ό�u��\8�d��+�<���1��-H�CN��p:jG��:Jj���R5Gmf�-���7�aH�$��?/�cC��'2R@�'�rf�����1Y3����^��\(MY��~��>��N#3W*�k��e����?��S:�5�#nl�
�]+ �uc��L5ȸF�� �g��[2_�n�L�=΋�a�r�pj�;��k*C��<���y��NcQ�s��]�FKX��f9֤r���a��[+�H�'2�<
��̝w���E餩�jH��s�� ������t��k�W}w��5��Ŗo��˗2Y��J�̌��ٸ�1���VOK�=��t���	G���8yܸ�ح}��.��(�DQO7�ڱ������h�:���-ݥ5��ܤ�=��|j2�&۱�{�/��Q�U`���$	�6���i���C&4F��—U���iW	
t�=�H-(��M���b#��H��s��}��H̓X���s,�� �L18y�ۢR�my$�MLb)l��������PC��H����L��<	j�a:.��=���_��3ڀ�P��W�ϋ�	F'Cuf���u�? �a����wh�%�N%�b~�=o���[gd8������z,:��!��|�f~�g����'�NE��U�K�{��c�+�H�Y7f�z	��i�v��;(���-�
� g�[�P��1�<dP���+��\O�E����%?��	ݹ��a��
�R����2l����.md�`��;-Q�DRq�$�0)�Y�s��Lv�,]4o`v�7�"���rE�ʟڠ,��f����/Ɓ5�Cp��ۄ!�A��θɱ3�����C���x�
9;�o��
h�09J�N��.&�!/ҍ
V1[L�oC�䨺��cV�]qo��x �WwQ�k��U��
y�ն�@�K���H.�YO�A�����Kȷ�2l=�P���Ȋ9�lD���B��
h2�����VU�޵��)
M�
4�g��z#��Ek綣��H^a[����b���v߭��
�X�H?)��˝)�f�i�6.���B>4Á 
F��*FfK�b����%�3�ˀ�Lq��2	�2b8��I
���A=ɳ�.�lbKt���
3�4@ف+�BC�sS[(e���Zܞv�G�l���Zf�C��-'Gʯ�v�0y]��4�U�5I�Y�@E�0.
k��:H�x�e $�K��zY�L*�ʮ��7����4��9�2;	�PAc�ҳB�m��.�R �%P�Ys��0زל(�äk�8���=1���<����'�yU�٥�S����߾�z�۰���;�f�-�~DF�&7Ȗb�}<�["�g��z4�n�)���eW[T�[1c+%O�EȽ�9����@���	
��Y�&�[
j�{��7�Y ��ԟ��*�K{}�dꤻ&�6P�3A����5TZ4nR'�)�}�29�v�5�@N�
���#����T1�v;�?z��J�\�7�嫔��l�jʰ�`�<LpZWb҈L��)���r�t��=O�4Q�N("���C��6;����F�}�͈B�e�%��>�Q|a���j� j�Wy���ʹ[YM����k�����И�>��h�+3��#�d
���WP8n22�;�57�o��c'Z\�c�C'+�!ߓ�4�������ԚY�0��f��LIA��\\0�玏���w�䁨�L=Zi���s�x7��&��H.kM��t-�T�\SvumzÝ����=lX��d�5��#�l^��më��8Tˍ�m�YC�)Qa����|� ��yZ����A������U;��0�]Y�tʀLzm�NQ�⏟�څ�`E͛�\���o4�^Q#0R���c�$���tM�b��/�$��w���E���\M��8�,6�)��Z����z�	�1�n��gR�'Lx��w(ˆ���|�O�n%K~�Z�A����{�A�:���2�~aHxPozܯg����b��ϫ[ +����E��(F<�Ί�!���Ԡ�����I�VmT��&vv����7�	x������ ��::��b�iC14��iƎz�k\�EWa���� �>hC�<;*23&i70����Ze�e����@e�9Z�=��{-���~2��/��5��3Ӳ�t�$�*�N�>XY��s5�F�T\q�W����?n�Ct�Q
<�i'RT�;��AROGU
�0��?A3��r�^�K'�pt�*��6�	�9V�+���^A��f��+�B�
��P����0_�m�c����XN��I�o:�:'Of�/f�L��"څ����*6�3^?s�9�z=��j�@}候��^��w�z\�M�m�A3s��܌�)�s��G��
�*�]���M���M����8�&�`��dA@X�J�����ߣ4©+�R4S�u���W�K����
�a���5�U�HPT�P��[
�Ŷx�3m�~�@e�ޛbn�/̓�sT1
�[L2옺�p?a�u�e2�K'���U�Dr
+1�g2Rr/�?������t�(��
�OR�)�6&�����o�Ὦ���I�lWt�=&ҰƂ�3A�Š �7�j�N߀B&��z�g���$��(���*��z!���^��T\6���FC��9O>��;�a����d� "1�Fl+�\���2�f��e��1<}�qq����
�v�:}?i�������g���Q�D�)H����l]���1CuVιD<F���]�M��r?=<71'&�
���9�auy�o�)ji�]I�5�J�oP���h.aQ�Se�d��
��)�L�5���&����"�mh�7�8���MLC��~��,���,��2��D�
+k�*/8�9�FGŻ����Β�M�,�!c��1
ɟ|t�B��G�B����X�y��Ʀ���_��_��yͦf&Q'��9����L�x���0�9m7����h���v[9��X��须�Ɏ���T��I���z�S�"���C<�>u�uo�wGH⒫�Ĭ�Q��$�V�ʢ����X�h��
��	oP�CCǥb�k�O!�1�v�@0�_@I�����B�j��(:����"��Mfs��k�a���z뤵%W	tg��4A�7�tG�6N��d�
ߢ�L�jg�!�]j�4mG^�ʼna���p�|i��������p�9�V��M��֤9;P$i�%���ᱸ�5�n�Q�vk�;V}-`�u+�e�q289��Uaɘ(^| 4����1���h�Uyex�T|5"�z���V��u
71��4�>�>���鲍�r6-9�w8u�vf��0�O�an�\�v�]##��
�s�I�-�65Šq�r�;;�ۏ�[)�
O쭖�,l;	߃������@�7��)[��� p��M�z(X���������Λ��׈���3�#R��!�⯋��zB)g��yE��,Ƣ���'�L�p�Ho��2"z�hn��ԧ�8B��)]���a���	�l�(X����ȫ���`����2�m;�m�d������?�W�
Խʴ��CL�܅��E���%U)a��вW�����W�ۋ"b�s�>ݱ�|1��8���֘�{�bќ7�@gB���|�3�����9�@�n�:���W���[ld�P�/QJ.�3���W=H�Y3�Ό@N밀�)�
cv[�.)�@-k.2�#@�s�{��=�a���?����D*�ҔdXA�A��IDB�b=-�+EB�0)'vE_���L[tt�q�^�e�B����R��A��
�9Q#z?��H�W3jJӜX<8��Y?��x]v�S�kK�>��fw䙮~
A����.�E�sBB�%F�����56��I��6wX
J�	Ⱦr��n��o]F593P�~��!�ȋ-0m~9���
�j���8�L)_��)p�l�S	˄�u�2��k��o�*p���N�!!��}J���!�>u�Y�:5�N"����'ͧ�,��[y8
�K.���Pb�Ό`
��Bp�4&L�������d��z��t�a�]��Oޘ�U� �9��g� ��$S��x�gt�A
Z����G>:�$�$9�9]o�;���@�#�ƐJ�T�RlCHH���P���:V.gQ��i�i����]��&�uH�	`� Gv@�͓VV����(Y�I���š7�1�{��T��~���N��t�����[��2����/$�g�㪒�׎��A����V֍�gx]Xh)�4�X�+_��
1�6�7
-E�S�(v�͆��Ǟ� W��(����
t0�%s��j���"z�}H\�6��h��U�7���r�g`@R��.�3�X��
�PR�kLa����>z%�$r�6�`�F�'���v�ץ-�O8B��jVA
�=�X�A~���ӂ@c1>�Y�69��(�Z�Ӽw��Tmu����2^���̭cԘ@kb|�d�ъU��*���Gx�*_��?Z[u��7!��Z
yC��~��7 
hd[�qK�S���eQD}�������P|ev��>n[��5@
�gK�R1����̴�����EÑ��*�[9*u1J����?�T�����U�u�	����֦W����;K���#��c%ס]��m�׏K�/�������,2���I�`'��#�J�e�u���3k��VN���%c�ҥ"�`c�3���PZ�:���Ƚv��9h�0"bp�8��Ч�5d�q�o��GM2[h���]/Y�A��ElP�<W3;��0d
gQƦ?�6�;�j�	«�/��a6PUi�U��!���]oR���� F]�����ep�����;�|ce��7��~��j�tI���
�r�ϊ��}�l�ݗ�8�C����A��Dj1,[H6"ԏYl�W�P��@�_&��qԢf�{���ӎ4:8T�Ы���<�%��7e�k�
�>����'^Χ�e�;Q	;`�$C5B���o���qi�IP�"�Q�m�'�iDC)F���&�M���@�<�,Q ���}��9p��:#UF^�DQz�/6�W:<���Vd��Hx�n��	�y��#A�u��Ej�Y���~�u��;�``{)�����lg4�$ڭMy;��f^OX3�O�fZ�ҞK�Tm{+��0w>K'˭ȡ'U���vU�~�3(ig�
Q"@�6e@;���(}��q���m8Q4u6�r	�_��BJo�i;�K�_��:vܳ�f���#dO����>E�9�E����mK �
i�JR}9a�>������@�����0�T���,�S
@T��s\�_�L�Go��֗�G�� S�er����7	;ы4$��i�CL�ʬ��;�Mn�DX=���O��Z�%X�
(®x/��0�����{P��YR*�6��s��W�-���A�̅_�މ���r����U�3Fk;�t!�^w�l�.J�Sz���I�7u%��yq��Ʈ�!-Y��9�N��[g��%k�ś�A�9F��c*Y����:�f_�iZ��m�v���5��#��;m�l�D�!��l�|o�|�̈́ߋ�i�uV44��7`��JU�,d}�h'��˜Y�
��n�ڃ�욯&��j���N��=�VT�w-�(ܼ�w`�4�S�;3��j�L�m<'k܋�(�AgQ�9�l����0~2�$̆��8��W�h�9:B�ʜ�8S���cZf4����."ʉKF�����X����T�K9�9/Y���?�x�+/�Z-,�fM�w�Ń^�
�'=��;�0��{���q���nr�:	�R"hչ�����g���1?Nl9Q#��5�Q��Y�@
��e�$FI|Nq�:$�#��$��-0�xI����Zع����.�����J���A�2
bgx����)���y�_~4��
 ܞ-�QQnTbf� {ۉ�J/Ո0��H�3����'/^F��t�)� ~3����u�BrX-$-v�P�J�Iq����cI���ك|��D��p�����u�Z�k6�۽Kp��6]���2bX�u({�*CN�}1���D[�l�JN�����<��;�?�#�^�Y���*�ـ��#`C�/o�?�6�~FCo��M�Z0����W-���7
D�0�ɴ(��J���A6�z���j3
 ����a\2�9�V��U��� �����c?� ��?*o
�w�p�7=��~ڔG�s�\�jۏ\J��(��HȠCh|����	�;�}��;Q9��oL"�����]�i��OU����@H�7$���iO�h�ÌJ&�D�Y��p�-�.�)4[5arN�EL�F���1��>[)2z�슲�q�H�J�X́�Y���\��'�ߍ�h[C�7C�ӂ��n��ࣉ�B���\����wUh8PI��W#Zi�g��
��o`F����z}p��K�0����=�\��V<�|��j���r[����,Ӂ�DK��{�b�0ɭ��Y�(Bӻ�+X��"��e�6r@�����M�e]fZ�:B�����<=�o"�����������_��}���aB�/��(�-����~�J��iTe�H��?�e-
Ңo:�[�{��
,�1U���mTG�l��w�Ъ"C�Cb:dąst?1�/�&�ԕ��h!�Q6�fȒU?v���ΣJ��cR��
�,5�#Ñm@�BE�x��HP��+m��T1";��G(c�&rJ����α��=��䏏t���iO��ku
-��I�/A�1�=�3C;F�t�0�]a29����\�۬�Gx�b��:K��§�ȋ3%�H����:�QZ����'�hN��b��ʛR�s�(7\:��⓭�y�fL<當7�0��Ƕ�����-���>��+<�@�.����U7�L���m��~zKa��,Z����w146�
Dx�^Ŗ�Z�kf^}�ƕ��_�])����ph�'��0�#&�)F��>S��N��%y�s$}�ME�q�3:���lݺ^���s1%ʅ�o��<�m���$p�߿˧����mXǛמkf�!}*�b�`�y�ʈ7�!�w��x
��a+�<�b�X;�~ّ0´�Y���qm/긁�����&*�R2���3���(����Պ�;��/�R���e65��҂78a����Zf���-�
� �+�\�G��m��esv7TĞBR����б�)�r��}d���;/��UN~�T�x�h�q����^?s�+�=�]
w��C�	³�fI,ή�N�F���"�n_Z�|�9
� |�(2���N&�R�K"A�oGRx{�x�Ei
ӛ,�8x�WG�жhO;GNJY�����q�`�e(/拒H��k�[�|��l���R�`6��,:]��!S�/��u�p�}ۇ��b�H�&��Z��_�F;��V�`�/3B��ɤS�yOT��i��~j�E!����L�GA�4�9E�:������$jh���H&� ������Y<A	�~!ӑ���`D}o�wxK[��=��c|�h�
gA��_���U ��Z�NA�'������#ĕ�8��:0JQ�-d���d&U�Yg
��R�-��]���-3�٘��8q̃����,�T�L���W��򩸶(R-�~�]x�,8���W����)�&�u���(�U�0��`z���!7���U��|c���y85+��
a�	'PsP�o�<�ɮ��+w(��b���f������
���l�d�����!��%Z(�f��G�_
Œd��@�;�K;�h{V���K�0"�BC&����M?q��f���C��fV���Ę�i)�5!J��~�!�����{���sq
,0I�M��5��m�w�i{��E�m�i�RSxޤ�T���hg׶��E��,X�wvec�qM�G���	���]���^ps��N�NM?ڻ����n�O.�ލH�׼�{�SZ@�A%�'1�P��
xch�z�v
Bp��>1MV�1�U�M�ZYc�&�]�s;0��3eI����t�-��K
~uL���%l�����n�`H|#Y����I$�@_���X���6;���q����^��U�[+��(�bĨ�g��/�?gT�PJq�
��q�͈Of��e�~qvZe����>LjrmX	6Nm��BmD��d���>O %�`L-�Q��h@&#�8�k��q�n�&?��AE=�~�It!���h��eh:�&#J�u�<g��М0��+.T��o��<����Ŀ1�H�e6�7��<�c��]m�0�ſ*��I}cGK7���0n5�"�9�\DY��E�+ g�gsJ����=\NӖ~j�&��9k�w���
�
�#^)
�*�1YijY����q��2ܟj.J�vl��K���3��>���g�Hm�����;L����^Nك_a(Ve�#�
KL�������Q�x4�P宿�[kʂ*:�h��|v��g��6Z�g������7�Wvda�8�pD�z�O)�I^G��Q���Q�)t�{��T3x��}�,8�,L��6E��g������v��^q����|�@��?k:�ٲ]j�����F|�"s����;<�eg4�$J,�+���|?����i�V�{�������<e;�M�_����9�}�;,b�(�p`���l�^B�+[��g�L���tU.��0t��r�^���,��?���X3G�]c%BD�h�7����I��.&x�VZ����F�+К�Y��g�F۰sq�U�c֘�-EW�)5ơuՇ�㾺yGܮJ�L������Τ^8�N�juY`ޗ�C�Y8��a@~C2��"�Oo���p`ڦ43 �a��x�;�s���jF�l����^N�X���~�����**�y�&gu���|�5�^O�Շ�L��5�+M����\y���s(�+�Ь�Z��ޓ�{\�r�Q=?8�c��z�q�1�ZWT�/�R�?g�s�R:q�J���(���Q�b�W�QEȰ{�o��.��`;�ۋ;�(&�m����BőF%�Δ��;h����?�L��t7*q�Rp�?(�Di'q�
c;��QQ���uJa`"C��ڂ^6t�t&�`@u��4
#~�:��(�iP4�:��
�h�3bt����� ����mV��9�Kj����,��񒢮��c=��dVf���c�ׯ�K�	{Z�"�ܸ�q0����6j�J3c�JL?l���z>�S͒_��rvD�@�W>�!����!	B��.g�B�ҪY��|�FR��Ώ�f�Ad�<�]�)��8Q�k�,��Bs�0e8/°�c3��dFA=����)���c�)��;�8r�}�i�F7�֛GiG���H�-�W`p:�,zk���Ỵ�����L�b�(�U�4̆Dk�K��%VL�L吹�85�k�h��n|\N�u���ËC�5�No�L(�"F@Y��X��-�em�iM��o�v.�;�l'<͆��)��(g3i��k�ބ�G�1�W�<��}}Q�p!#���e�t	U�rY�C���\��~V�ޗi��2QO�((��C^|�[��\�^	&&%�u��m�+�'W��6�R��s��(1��+�G@(3�,��!E���!~���O,X0���)���==-#��U��#C�Ĩ5i�u[��G�n��>ɦE�p"�� �
o>k�@��1���:&�6o�W�=W��,�x%4��y㈮�m��:�� �M����6b|�2��-#8(�#L�L�M?ޯ���lm
Ů"�9����Q��U
A�Q��0l�p~��N�I��A��JN~����co2Vv���@�P�Mq~�B�1Q��Q-籇��$�NW�����ۑ���Vh�N�v�H(o`�AR�g�̓��gg{�	|w�F���33k�Gv�jثm��>N�u�!�r��2C��Oo�����yͱ��'�j3�:�&r��M8�}2\�j��@�#�)Y�f:��7u6��t��6=�(�a$B;�ꛣ�22�e�y��N�T�؊�4&$�B�-��ݧ_O�%z�����ՏF�
�̜�_gZ�+���>[�n��z�Oc2T�OE�W}8-��q�ڽ�t�vk���cT��w�ĸ�|D�E���o�lݢ�x��/ŒD�5���R7�1�B��?�.���s��\���Jh;8?Z�?�X?>�l�]{o�>���k�����koy]_�&�!
�[���Nb���걳�a� ~`�MV�.-a��<��cB�+��
�W�=*�6}�����aP�v|��zIgM�k�0g���Ӧ�����,�<����p�k��+���`O��x�#�?��a�ME941��GTrf�f��H��Юr�I,0��Ag
P|$���z��պU�,F�|C�1FyM�q�+�lW����5Ay�\��ȸڼ�P�0��r֋F1:��<�֘��� 9�@G����7�fX���>����,2,@&�l�T�n��{���n����5#�W��\�%dE|(���FɘZ�Eh�D׷~r�”�b@
X�k�&ʞ���`n+�/�̳���
KL��߹@�
���>�9m�i&pAP�����J��F���5���X#��8:cj\��+_V��TU�4�m ̾�U�����/s׺%D�)��U�ܬ"y�
�:Ϡ�8�E�(	B�q^�P|N!�����9k�1b1G�шh#(�+Rh7�y�=�B|��ăV��"���~c'g��)^2��{j6�#'�g�FS_BT����i"<$�OQ7��������*��/���ۨA�f]TGdxA��W�F���5�A�R�.�IO�;`��Zbq×J0�}����@����9��T%`G��"iO��M�6��z|�N�9����՘qi�6��e�6�f����W�.+�S8\�\ �)#/7 U"6Wx�Q	��.O'OV�
b�yB��:�~�I��3���f����_��p����=��3|��M`��֛ڬfRk�?Rp8�xF>
#<v��u8{�$�Ln���g�!���q���jq�#��T�e�d_��x��e���SOx�]t�4ёÌ��1 �+��L��mw�����ȑ����35�x��̜�:�w�Wѕ��F�{�"*�6!�1
-�_�O�~���$[���,H�
wb�-5��菻!#��ȹ_�m���(�ޕp�NXs�l�{�4�Ϥ��G!em0�"�t�>bL�TbE��rk�`=�6s̙�[d�x�0�@�������xK��ծ#$-_�J,Eq���zF���P'���G�U
�zkc�P�jc��B��7��?�9L�9&���Z��@��C�g��W@D_[�n���(pa�T}qgF�>VT�횦3B�nH
��s�:�:h�$��]�O���%�lH7�O�7��
T#f�L�:��Ifplօ�ެ�1[�
�\^m8�mT9MT��Vv);��j��W�q(���A��V����=�)�b�_�?���sR�(��!\WL��dZ��:?r��)���<���7ٖX��Vjz�L�%Fˏ��:$M�:KG���1��v�^�w�ϱ�2�11����문)�9�CߝKG�M�\&�����Ef��j�Q--?��n��_������)�~��#�}=g3�ó`9yC"O˓r�{��@7*S`�56Cm>��&�{�,1�U���oT�P��`�b�{���>�|~�M��R�,�6/�ǂ����o5'�٬�2���p�Fh��>�%�o!w����
����æ�?#�=Emx�m}t��[J.�h5�H���х!��U��~�߃���8X�pA���Q�gm�<Z��*׸�:Om��(�@�p��V���9��
~G�L�ya�^9_/웛B�q��{w:��O[�~~�0�Je�
��d!�g��ʁ=�sHW����[��t�fC��|0��W��M&�d�����#k�����ly$ ������h%{
��U#1Ȣ��f�_�Z�K��)�H�،�c�Z!�c�۱Q��`Y�%C���`&Tm�d��N"����y����t�^���/wOHי� c���Y�6�w��HҠ{/�@�э�����Ӕ&ƀ�nYt��U�A����]�߂揗&�-(K�d�dх���
=Ϻo(ZL�Ӄ��(f�����)\@w�R���Y��ʕ�������s�����&�j�h��&��<l�'����|��� �k�I�|��b��l��?8кwWV]��U�_vh��Dl��M�UP�JQŻO��(Z���U�@��l�}�t��
�EP ��z�8����P����j��s!ش��*�T�ae�{��$����$�%B����!&Z�R������p��d��왅�''�u�h2q�����`(�c�f����bx�&�FJ�%�A1�������1ȿ��+�`9|���ü��T4��]{ý�F��sI5
C>غ,�#Y��ŗ!�6'J�Ũ#�}H�7��h� x��=�=��W���h�:�8�ۼ��k܉���Z�<Q��(�(N-�]�)���/�:A�{�<�5�^c�S������B:�Z��2���3�c�9��ET+(P�Pc2Ṵ���@k���E�3�&���ީN�2���Hs���Ϻ<"����j�@��w�����Ѥ`7h�N��gswd�`�jGv|���!Su(����]���HѴ�n����O�Ί!�����i�L[r��Ҹt.�V6�����r�-��B_����0f��qk_R"��@��@��~�2	���G���Q�i�Y�3QdJ�z4>��X!�
��V.o�KS<g�Ҝ{�?(���5Vi�f��z5Y�Vt��Y�����C�2[�~�f\���~�������+&�'Z�Үe��׏���
��
�˴�wKn��:F3�`b�
Vh���+|rZ1C�ܧiT�΂����#O�'G�W<�ʢ�oc1����Z�|ֱ�/ͅ$8&��
���5��k�`^�����.{��'l��r'-��?-,q�:�����Ziϧ��{�y��$`Nv���.Ν��<

��75�n�����A����e�G�
D��>��L�Hnr<��6�H@g�	�7~#��A���2�E�"f��u���Z��).�����[LO�����t�8���*�����x鲡�|FfN=�i�Nw����7&oa���@PZrD�'����Y�W�n��EOf<����p��p�l�\k�������,ۆ"u�M�C���\�Ű���Le�wP-��n:�ģ��0H��jJ����rZ��L�:�ݙ����.��l���&f��@�n������8�z���q@>��%�e���$�L��Z�qW�f
1*逑$��@-��`-��|9+�t�B��\��6nj:y�̚�Ŋ�F��S"��+�#acwf���pf�FI�Z��u���.��[�跷�b��'W�wl��s���FQ}	`�Kvl(��q�W����K�Rfo��!�Ԭ+a6i��%:��0A�~�����,p��o�8�6+Ұ�J_T���
d��1S-t�}h��X t�'���C��@�Jb*�SHy��XM���Zq���AX��0�3$NSG+ͻ%�E�>l��[��ZZ-�����{*(���iѐp�]�ˈ���}K�J���}zh{v+-'�/�:�w���&�w��u��lJ��Y�z���	���
�>|�ʾ��F�A�d�!r�=n���238KMr
���V�Y<�u�ln�eI�"���v�>ۍTC���F�-K�bd|{j!�f�s*ƹ����q��B/�%@�eI+oD�̥���A��t���r
����KS��1���R�a)�K,0b�@*dD���B�҄�0"�=����۞���mk�X�U��y�d�=���o��y��7�����u��W�òOԏn7���]�j��4���Gޅ}��{\�(��K�����W��<��0>��2ú7�����|�̕�c�[�� �%��f&��n�s�Ĭ�_aӲY�v�p�>��O�.i��,M�� ���T�-���`��tz\�a��&0����S�H�h�y+	)�9�I��<���G�rz%7gr��*|��A3���6ʎMb^G�P����a���-��ć�
J��ρ�t���~����9hSL�l��~��Ά�����D* d�^�F秋}O!f[\Bd5�{�wN�ޫ2�Mq�8����j=M��k�`�:&/��U�Oĥ�lq��L�5:v��� %1����"B����Y�毿4Eskz&~s��b�w�� �#1����+�j=�:�)����
�4���D�۴
��T)�]�����6>���Ű`�4OϿ�J���	I7#�&�P��,8>�(-6������/�~8d,cΛw~��=�+�{�w"��#�9:L�%r�X�s!X�5+�����\�+Jw��#,y"76�<�t���J7�=L�'皆�{��S�m*C��7��C��+J=׌������ԡpΡ��}ܳ�x�T��T<>��K�ִ��qM}Y�p����ꀝ�4f��CJqʬ$Y��l֔1m�]�|���(�_pg�oOiP��D�ru�xz��� �K�7,�]�#��*���6�g/<*�0XGԞ��"�"�޴f[v9�h9����E�����Q����&_��Nl��Rk�VR^<�xr�S�t��B׬,ܐkC'B����rC�=�b@�	#����=S���(���{/P9�e�eK�Ŵ����%���䄷lԴ���"�E�;@/g���B��]Q@’GH{*�gȑb�7�;�r`�s�=�t܆��g��)H�.��I���ƶ����i1��q������tڞ�(��-M�����eXo�b�� *�گ��:�\�J^m�s��С>`��5�Z,P0�h���X�Eb��A��f�4�qѼ>:���%.i�,/�'��^[�=�AP`�����f��w.
� ,\���Xr4/������]��0��j�S�-��iH�::��t��AŸl����[�'�o��j��eδ�j)�w��oɉ�
wh�rCjt��ۈ��!R��ͷ$���_p{g3�oŝ&�@y�1*�q&��
�̈�7��S�r�ٍ�}23ZH2��p�{{���:,3�/�:�׻�	E �[Xz�w=�j�܍X`�?rJk���d�@?��}��41���+��$�#U�뭯_�Ģ4����%1�j��)�G�ڑetp��2	�̙L<4�����5>{�X�b��=�覆q�8��.{ҁ��ᇺ�Z�Y��6�+�� H�Q��"��Ҙw5����\�2���	"�1��z쐀�}12<�/�"O�w�'=T���|��{~p:���W���S,��y�:���R�ַ��r|��B)�A���+����	��j9V>�e�h�Z�{?sDo��j@��k+��1l[�>�QPO/��'��)뇳^��O��+�
���"�\��-�x��WOQq�cȕ5����i*v�\����x "{�r�|c�*4
�AK�:>k��P����(ʻގ��o��3�(��S�z�gb������鷭`�dJ/gu���V��{��C2>�Y�P�x�g��N��ap������fGsǨb���gπ\۴.�F��!��;UL��G9b[8�5�|v��/��C��U�]�q�m�
��!8���"D,I�u]8�٬x+��ГQ�������N™��#���C���o-#�f,�}�e�ٌœ�+�u�"��z!wE*���_���=c`6�fg�ի^�,.���Jcʄ��P�����`�L
z,a�ed����T�d���EW���{�4Զ66nگ��f�
�}_�GB���-�
�1tVM�cb�
ZO��vH��'�f�BLiٟ36����ou�E�&�A�H?k��e�f����	"�f�,	`�A&Y6���ҡQ�3�jj��q���q��� �G�uګ+��ߘCN���XK�{z�!XDZp.]��y��h����d��Mxp�SZ��o$�M�{���g;�~?y�H��Ԉ����%�K}D�%15�Ċ�G��.�������"���=�S��0Z���;�z��g#C?T�s-���'�H���Jm}�5�"8A�s���*���u�y�)t֍e>~��uc���{V5���ٱTyWɤ��#��@~q8��6)�`x�T���!��
���̚�@ut�4!+�· 0�9./��Eِ'Uj"�M�����M�JBU{E��]$3��^�R7ܕPN������v�+W�����k]8֢0�xVA��ͻ%}~ofW�}Blf���͠��ip��Ӗ\�f&+����J�q��F��>�9����#��	�!�$�c�L�������S<�<�=��~�РA7��2�,���XD�������*��D�'#p9�m�a�����H|Z�e���2�P�9�Mo�l�d+��s>f:��Y�$G�6j��q�j$=Z�CvWBٿ:>�8Tl{���)�Q{�	����3���ɠj��y/��]Ct���$�GMl������T�<Ro}�V�3g�5�>5!q��\�pq|���\�'G�B���殦�M��)�k�$֋wԥ�ލ��_�>y�^]`�V�qn(�t,�ݷP��.Z�_K�/��_I��$\�����\�k�[~2�"�����Nz�0xu�FZ�;Io����6���1׈}�=��ʤ��ۺn�K�u�釴@�V�!�-]2��Q0E���lT����>RE���w�p�G�����&bz�H�O��lQP�����X_�,��gg\�]E�oƷ&���'_�H��j�c�L�߰�d���KdÉb��W���?��Hx�~�wԖ�4�:��1��Ao[*��ѠN�s?P"����o����7.��4N�0��/v��ૺ�I�S�=��O�7W`)ٳPN��a�=��E~.`?�`8�8Wqm� �^k�4���1�w�X��K�^��%D�b�S@�Pe-���5�Y��,������L=�K�*���ˌ�hc��c�hh�=Dk.^
c���͛��z�W��7Y�2PY�]�]S�l�<<�:d�wY�r��JB�O��r@i{Ǿ�ۅ�nn�

ic�[R����}��J�zf��W��>U��h�3Y�:?��hi��m����Z������HE0���֚b/�����o�,���ؘ3��33��JK<F<�Z<{�^��pd�h�t�?�񾸯���
�\6W;�22�E�z�cM�rB�d�%�nq���"�k�#�Jia� �~f�a.b�j����[Y��R�����Q�w���OG��#/���ݛk����2{8a�%pЀ���� ����L{��Dg�$V��YbxT������+�k�
�Y�r��D���t`���td)�Ç!�c`xxG�<+e��#���MQ{�]�V\���;��Z��ykօ��L�PˍY���nssP�g-��6^S�w�
�8g^�\
G��A�!ɽr�<�܁@-�61�a�h>�e���a���H���N3��kAł�Y�cp�<,�9wtK6ܴ�is=qt�L�u�"/Lk�|�T�Ok�����z�Q��UkU�%����CKCY�JT.v�>��"�.D��vv��J�N�Af�%���|�{�Cd
R5�J�r�\�U�@�������4Q�v��~��0��(]?��`�rW~����oW;��?>OZ��1-��__�)$�G>�����?䭐�֍Hw�>�
����=�vea�i{�g��T���j�Q�_���B�>��~�
x�l��Q�(I�
�L�>����V�c�5��%�́ߡӗ��(��O�ԀZ�&�����M��m�_�f#UH	~�U��Lm��C�7��~��u�]�|/�ߍ��M
qv���<��H+p{�����Q���Q�_y7O�A]�8Iu~��DCc��utN�O���Py�F
s���o��:�Z���y���X�)�b5W$Y�.�iG8�>#d�� /��y��8�:k�൰|�_��	�i��%d��lMK%�5�Z\U|�j>���,����q�@N�!D��3d�W�ы�jt�]��mN�FS$�EF9v��0�a}S�A.:{3~��1h����J���b�Bϑ�>�77F���	}�aⱥ�3?�'�[��C��9M��;]�IF�2[��&�&$�x�7>8A�ˢЪ}
��9�gZ�⇱�-u��YQQum�ל壥u<�H�qS��d���'��v�J�3Ӄb�2�7�9�i����h����*ztWpF8���˃���ۓjSߞwy�{����mh����:��`)��Ƭ@@N���տ!ԉ��u�T�׍"��}�c_�mˎ$�xK����Z���(LMx׀���>_�-^�\Wc�w���K���v�=�)fjw��!�[O�^?Ud�'1�G`:a�$�B}�6D�����y�"�M?��3�W�������f��ɤ��������.���WÚ���{��H/�g��߭����khz���-H
�����* zk8�OL괉���2�������䚮�AS� b��pg�k�|68�"�5�K��6��QvfW@�G!:&�+��T����@�Տ����4$a�f�@=�4�2Q�	��w��n��AUJ8;���[��YTd��;榗�վ���䃕|��g����9�֠V�bﮉWT�yv��zr�5�����{`?t��>$J�Z��`=����N۔�͍��9�]����%��PrzU�'>0T.��G��o�b��⬹w%}M9�m��/F$��F}^��)}�h:0�.�fٞ0�!k�D��x^7ٚ�kkvK���+y�5�V���d��u�f&s��$���酨B0|��	H�hO����Y�nԿ-��x\�5;�L�u�p3❰�/5Ն��d߃�圶���/��J�LB:��B�_�AD$��k¦;.wf�\V���D�`�$�5�%L[� �� ���PnƵ;�70�	��,��^t��_���]߱��H)��}$����&�~�Z�\���'�l�|��Y���4�*8����/ꓩ��h��n7���I�OVch�O]����ښ�W̐�xw�<8,�9������{+���=y5�����.�"-fC1���HZ���A��t��1n0uš;#�T��bxTC�mgBX5it�Lc!U�/֋�����LtJZ����G�
��qzF���I?�\��'�yn�"��t.���l{�2��mš���+Acp�ۖ<%#�Fc"�8�1�Ⱥ:�V�^
b�K&��t&u�}p�;���筮�n�N	7'��]�`n~�00��ȋ�j`3�?�p�E���,L�o�r1��m�ƙ@�TF��n�.n�ÚCj'��Y��xvJ��_ՓM�tZFs�&��}�-YI��V�<��d›i��}��w�N/���d��'8�l;T#9P�캣-l�ז2�P�K�G]�eK`�W�h��h&my��]�r�A�^0$)\ˈ��U@���f�Mt3NEIԿ�e|�{���Je>$3֣R�T�r8�	lg=�
�	b���Y�x7�#���
x����2{��K4��-}����S�Թ?L:�3˄�\��W&�B!�Qڒg]'�>��(�h���y�s(m����4�� {t��,B�&.6������;�䋨�lx퉃/��۰�E�]���Ƚx�c�V��n�ݾ�H'L!��T�;>�e�NY����3-���c�3T���ш3H�E��>)��%�fom�~�g��Ɂ<�lAF���$H�:����B�š�hOO]����7�‘�;(w��75��5�R<"`�ZὬ-�91��R�� �g��<]w!_R�^�Z�O�"3�S�ޝ�SU7�M�'
�
*ː.O���~�R�}�)��l7�P�x(����w����﹋�e�{��< ��:�4����V�����v�DaXb�m��g���R�&���?]�d�(Vį��h����
��۶IC�W��M4"�
��R8���ݒ�i�a��@l�5@�wz�?2�)ő�!8F(�P�5�\s�j�RbU�*1�y*ǖ�A�]����t搼��r@�Ch�7��)q�aA���`�����M�'�Y�Z!&�ZE���Fv)Fu�Kc{��'[��4���X��v�;
i��9��4����v ==J�iUO��Wv����5T7������ڣ�hD�3�|��m�s-٩�ww�g�+a��}�d�5Hu�ke�봂���D��xY�37�h�����gl�44��w5�f�� ��toO�:��V�Q<u�Av���X�7#2��<�#��I�MɂrMN��z#��,�fQe�
����6����T�H(݋R�y
-�|u5J����4ɫ.	�`�L�;��ڰj��8�2^�(O�ca5he[�)�4��s"�(	Gq�r�۝:�p,���q��1tu�	�`�O��J����l�}��]Fsǿ8�Kl��~��2p@sN@`���UN�-�����\���VC��������3����^�02"�����f�=�{Y�]J̄9;;����Ék)L�g�j.�}<�+N�ْ.]2@&�?�PM������R3��������׼���5���-����%r�E[���n���;�ʟ�SC�+�^���Q�O�{z�! 1����օN$��s���L��)��]ۜ�.RA��+4�@-�7m���6�#�w��g�	x��<�&E��Ѓ_8:U�_�u���w娑�Aw��E��<i����S�e^�S'B�![F��s�F	��`E��r}i�D��Y���f��D��\�>&
��_a�W�?D��w�#��V�/ZD���F�XA��KΩ/�E�N�@�1Sf���L�{�)w�����d|�3Be}l	��چ&S��#cGNg߇>z�]���Wɫ�<~0���D-�{�U1���mI�}L��iHWIsOr<��{��
H�
���"�����>RM�.�:S��!�j��m�*A�
&5�S�
�7GJ8�՚C�iXh(fhz9dJ�̜}�)qm�(�KA�g%_�6Yc����O��!�	�R�	[e:A@�K`6WS��i8���"��H��G��_���O�b�����
�a"&v�%a\�r�=��l'���V��N�Ј�z���ج��F�m�h�5�l˴Q{�]/�w�C���|�f��sܧ	ɥo�N��'I-���ovoװ�?�>�B��4��#���ל&��mC�53�^l����?PȀ?Jø_��=��}Sv�Az���P0�2��l��[ ̑��Rܩ�yӍ$y�3E���#�1O�!�d4us���K�H�f���Ń������.�Mpcw�4��;P�V�L��@�
9��Fi_�o�w�/�N!�>��Ny�_����K�.|��y
K�/p�C�G�䜟�m�&��3�f/��1"�
(H�7^��񁁮e ��s!O��/Ł�
�#I0G����u?)9ոG�=�W֑[.�[s%�;
����:��`���gn/`%<����T�꿰��Gd�}��RHћ=ߕ����lӔ4"��z�
;��nR���k=Z��E�1�(���2>����ۯ��@ּ��>�8ة)�ܕ��ߤ���6U��k��^/{���쨌Н��/�#�sC��	�xF��ߙen�S��E
s{QY���eʒ�[��S�@�S�_u0�Q���z������)��܋iI�״/�$^�SL�f�cV}G�r!��P�*�_Z�b�Z7Q�����pr.E��ŏ��,����0��ג}i����ۉ��	<ɷK>�G4����j�[�.~���ȣzc�Si�)I*02Ց�?��)9���pZ�o�k	m�=V�_1j������]�B����@)�y���^�o�O��]�_ӜQ�F��<5�It��aL�CaWg��E���,���ʳs�PE�6��Ih!U��Do}y�{�v>�����:G���K���q�˾�k�HR߫ѻ2�s/f��c�]�̅MtJf�y���/�q߼��M뾟�+ag�A@��9�M_�o����h��`/���x�t:[���wCEW۷Z�7@?Yo����{R�5�];��{3������ͨ��@CG��E�hD̓�8UM37�-� �e�J5ó�/�v�襾M���+��O{��E��ܴ�+���:�
`}/��]vL�t�:$*M�9.��:E�U�N�@�~@?|ڰL����R�,cR��4n~�y�1
���[Q��vF���B��8�j�{?��8)��Y��n���`(-S�<��O��zy�F�ciC�ÌɎ�Zy?�q�D$=��R�⭬WZW*�k�;��D�%L-�1�T��u���	�3��fu+p�V���}�o>��H�496ԻH�-Kߞ�e'S/]>|~jj��\E"G�fw�N$���QN;�TXiWmth�Zʌ����ڗ&��\sx��dn�GE�E�5�<�d�)���sb�
sVQ�J(6�`�>T%ڋ�������L�.[_\m���3}���W��$��|��e��f	�3`I�t_^��
� �E����/��uU�Hn]�j�g"(�-o��-��^eCP�&-��)-�"�ۊ��&"$ �QZ��Myܓ�NN�R9�7V�)S(��M��˜%�c��U�>Ȕ�IK��_��ˆ{�=��F���DJ����]V�����Y<�a��Hį:gq�;��B;��3n:6	OЛ�9GE(Q��3�$��D����ί
�9l7�o�h^�@;V�/`5��Σ� ���j��Ñ�Θ-Mӹ�2c�P?:�O]�������4�e�~3bFq��g�
*�W��_�48���G0ߴ��E&G��x[̅���5��N��"w��?��EW��3����:�dSK��H��
_�'�Ҟ��Gc���x��{�%�;)X$'���(�#*!� ���v|qջ���P��1^����v��5	�IP�����7���N����1�'f7�w#c8|�gь$��-��Ôc�ö��9m��w�0k	ܓW��K(R7ᖒ����F�!V�Tq�y�ҭ�N$���\��a����M�d���Sa��-�[7�(}s���#m���_����O{~��o�&ZI��`�L��Y#�0K�ӝ����n\
�,E�m�¡��x���
=h^�6t���Hc�91}�)&�CSg�i�H���1_��!H�9|����%ٱh$�L��
����a!��R{�R��A~�}4�"��!oy3���<5��6U�� 2�G����^��&���h����5<�3�WU�I.�YJ�
�q���05�$�q�<�[y\r|���p����ې��|!Z\�c��9E�)I)'!�5��!0���&<D��� ۗL�L��Yg�帆j��*�v=p��zW�Όu)[�eL��tE���=FuM��<��@a2��kR~π������a�lz_�jJ���ڒ)+[�;������?�cT�N?��M(����m�} �0ګ�2E�f��_��Q�hc�I���kȭ�=�Q
W�Q&MIeyo��r!�^W�|��u*���٦J��� f��d{9p-E��LxD�”K2�g#)���p8�t�8G�k�gp�U�#�"}|E�]���oS���.J���h��B��+A�lD��v�SU�L¡���>4,>u�ǎ��V�m�`�r%�#�\yO���c5v��J�#�Ն���G��Mo�c�~������e!�̧gl�+����+�=g������	6���#���ک%�J�z��w9׼.���c+º�m-�M�uO&��_g��%�O�{�[Q$�"�0��"��rB3�S�>U���_��6�@��o�5�5��H��77ꗛJ�^�c PZŭu���J6A�Pŧ�����R3���I��$�I���g�DŔ��d�@4���_#����
����~B�F��𯻩����7\K�k�wo�V�u��Ŋ��}�4Z��fs�_�h��p�?�+w�l�H4�KZ`���2��FL�
��DM3S�#����%�8(L)�O������ȸT�0��\Ą
�Ǝq��$�|���;ֺ|�@���1>rn����'=P�ߞr�ʼn��]cӗڎP�}IM�ݍm՟֔���J���S���N�q����4�u�y�#����U�M�8g't�bd�Q�=E8^\��FW�?b(�S_Ye�������>Bc�� 5tB�`�G$~��"�f�c�~W7=���u~��t���\mAx>W��r��\R�� Uϯ�1�B��-���=�'�����-ktY�j�Uhi#���@�`�-�z�,)�������x�PXR�8�`Ϝ�l��(�p�÷����m����()z�!�21_�O��ƅ-�s4�����p�(g%��ʈ�gH�1Z_G������Bu}�r<�j�؁�ζ�O�Ku[ڛ-M�%[�I8�^���rN�Z�:�����Xt��N�Qp}�
�7�#Y�����L����M�N҂��y4]��stf�d�~�po�I���4vP2��.`�f�nL���5�
C�_�f�����Ơ+6i(r�D��v������~�B���@Y�o��\3�K�����v�Ez�eioϹY��]qK�A[�Ҕ/7��Ӟ��9M��]�#�$��J���o(I�v�>�H��1��ӎ�CJ��\�җ�6ZɱR��v��3g����h,ܑ�@��W���21�* 5�0�B�tC��)�2�`���>�����%�N��༧��ٮ�ϟ�`�͡��*���QT���͡����n"�Z������u+R�jcZO��%6s�W�)3�=�߾�>��>
IN���\<6>�`+�N������?cm��%a���ê��WQ�a����S"�4�Ì�)Z8^��J?�Y���E������]�O��|��������e��|�'?Q��`L���7u���y-��y	5~�܃��=��ݷt�HJz$�-��ާ�aBrq����hD`m�QʌEE�3��I.- ۗRB���
��x�!H��x[�uA��>!����s�V�#c���l���%X�DŽE��gW	�?�*p�e�%�K�,#$6��	�ؤ�fP�?٘�z���&p�G�]P���t�}ɺ��L�E)^˱<��
�'��	a8�K������t�Li~'��\Q���n7��͋�7;�}�&ik��mχ��\�l���*̛h,���rY��O3�<�E��HR{_o8`����V�u5����qؚ^�)�\4L���o7D�x���A	���v"�I�&>֍=^+��!OvH	��J[�AYE�R�c����-��2�T��5�]�I�u�s^��4�P>Ē�
M���1��=��sX	E,t��/��h{��� ��d�S
��Q��rQI�y��y7g�4���ӣ�я�4�<~y�Ҏ��?<�@&��s����Z�ᚳ���F:G ݙ<��j��c9��Q����[�<V��	��Ľ��q	*&�1Nb��HsqPx��e
U��\A����灹��G�K�C����c3V
�{
�Wa(��p����˗��rf���6�'��8��ix�����
�;����:�� �H��/�P�*��W���ųfC�g$B'6��!@���_��?��|�>^��v��w:}����Y5q�f���tdj�.����>���~��w+���8"� A3Z�9F2ʫ0��
H�����]�֠���Cx.�6�}	������1D�k��^�XBZy�~���6�k���Ѷ�o��0th��a/G��(~�QJ.�"���Tԥ�E�ٛ��j��SE<��Eou39x�����FGlp�`��t������J��S��[���+N��3��e�{�h���V��"�MpLUL?�����;�ݼs^���\��'�2��V4�s�僯�����k��B��l-����o��Lj�b�L}��ݾְ�Q�e>.Ƴ�m҇�^�S���������������� nj���"��3�8�䥙�@E� vౖr�KNkTe0@Ʉ�}�3w��՝*�̮Ȥ2,D�;����6�9�d]�&I���^]�.��\���q�aJ�Z
�_WL�n󉆞�l��ãjV?
���#�����H��ꙹj�eJ��Y�49��GV�T
�N�2G��}�L��g�G�%�K�����]��&�IJ1~ށ�O��j\��7W�3��
/�dA�!�D)u+^��C�=)1p뭾�&��f|Fo�?"�Yңl`��AM5u�[l����}�D�����
T��7�X/X�H�.J����=�l���@w��]�~�E�*�J�[p�KA7�������x���?�X,\t{�CȚU���"��w��\r+��W�,��a19�ϥ6�ヅ�H�iWu�(�p���-�o�������&L�D*=�ĭ/)LDW��t��v�l=������'=4(X��P�cy��Pp�I�'��_�D��W��c-�0	�`Q�6�����^hkd�.��j�Oq��8y{��-w1�$:H��jr��Z�8>:�GpD��\�J�p
*�s�R{�I+�Q�[��(���>0L�0��gnn��s���$�?f�8�U��\ܻQ^-�Z����L���X��Y{V���y昔8j�����?ҋ��Vژ_�ί2�S'�S�{Y��������c)�\�5X������b��&�
����&*(N;�%Y���r���;9a�)��r:1ޞ|Y�����ř�ߦ�a�{��L)f�(�8|V=9�Dd�V�6֋��J9��u&�"]�:�,��r��lk�-���7�<yw/'��̶7�PJ;��� 7+���z]9�`d���؜����>���01�am2�x��a
%��.�p���_�f����>����,��c�0m_�����􉢂2]u���d�n��x��<�A�ѿe��������x݊@,5�./Sw�0���Dfd��Xx��'u�n���;��W��7-�V^L!�,�6�3)px/*J�d~{��,����Z�솉]��[�˰��#
�H���;�l�B�x���mH���U·6XW�Q�㳦��^jI
ǧlXۈ	�|[��,?�Ó�Vc�G�Eɭ�Gw�h/$�${`�.~��q+��C*�c^����@�k���
Z���4݄���Х�հ��B��u%JŇ��?��D���.��m!V���*Ddu�FV�&cs�4f0>�XV/�e��!��0;9�A��+z�q��&�	K��^�ca����f�YRm���t�h�hLi�#�y���+�'#��d�Y���`Ê��!IG°^��D\]��`I��x�u�)åh�70TWѨ\f�H9��jR�����㵫�6�2���z����~�5ţ�R	�����XR~�{�bw�R&�P���6t:Cv,�4^!�8�����>�k�5�º�"�`FCZ��}F��ֹ�Q��X�����SR7W6���
F-`hO�d��/�cq5��KȊ��2 ˕$vXE$R���4��4(��Z�z��2������q��4�ڃn`2Ѡ1�g��ދ��v�x���V�U�"-��ҽ���s���\��˥�2I�̙<E/ ^kk��h��F��\''���@[�T�9U!4v���d�.���U�[�q�c�/��"�c���gV�i�����������<:�n��E�7F�W���`���L�y�?��˲���m��_&a6�gd�ϯu�o�`����Y�q��z�}�:-�*���_�\H��5��g���ځXڹ��`�38�$�}^�}�5\Xȁ׉桿�ɻ�!v��7a��z�\�����+�~?�/_f�
1��}��W��}��&wx���3J���s��2�s�}��D!�5�J���;I�p��I3�#�kkE��8��<��9��P���W�y��y[�o�HQ6�����^G�Ed]zj���q�=-�(��gS	h)�����t��'B��]���R��H{�+v4�E�b*L^�&��
�A~�$���ƽyS��pm�+n�7.@N{�b�Lfmm�OSf#�_�4���d7ԲY��ޮ�W����Ê*�8B8Y$d%J|I4����SS3qa�7����xCfI���e�MN/#&Y�{�I�.�ܗ���`���m���>|�g�\oW�j���8yg���wj��1�;����
hJg�hJ��8��`�)l�U�t����z�ɺ��A�V��+}���݃h�M��NV��T�$��ᙥ���k���vN�QN��쿳`�����1A��,��Y��Hą{3��j�>��%��M���^�&DS�q(aɹ����Ĝ�la��C��4�T�-z��ȿ������ʹC�����ѦӜ�f
�i��ػ���ZMdG�G}9�*��H��T���-����K���ZC��o^���_��V�qHF� H�Y�ش+�^xI�6/b]�J�)�)�G��e>K�
�(�߻���.�TY	,��vwWQ��Oo6��o�Eo����h9�
���t�v��.��?��*�Hـ��[Bb�-�.A�J�(��J��
��#�R��Gà6�SǰeEu�Fgk��>�p,oVBr�;`�,tBw����⫡�z��<j��vLt$}�a���9~O��R���$��+�	���ʝ����M˅	��cL��Rmr+q��BΤ[�Sߢ��"�N���f�8�]�n`-�}�D=�1Lb
=*ސ�>�5�+��D_��啳�/��<�\�yp:?����\3�o�Rl���}�h��}h8E�=�?a�08E�>��*�EYw@-%���~��_����'a�Y K�Ꮿ��V�U-�Dj<?j�^d�W�Ym(�,����aq�E
�[GW.dQ��OyʑlA�]҈{\2T���#o,�?�z9H��[7���
�r1��g�sw�Z�3��!(ŅoS]��d$ïڤ�S�`K�i1��<%�KΒ�Ѩ�p�	�^r�ߺ�Ae�L�x�����lT9��\�8G�;t�qP��YnM�p�q���/Q�XYyg�g^Œ�
D��̜��޴��U���fpd�${�d�Θ���`L���4�D�q�8��x�[�P@�S��&d��̢�`n)�@�K������In^�"�:b�w�����^�^q/��tٙs�:�7����W�ٵ��IrV�O��K&o�Jj=��q&eÝ\L��3�J�T�>����Z5qu��Ȳ�l_���d���T��'cMVbQ6�,:�z���!KI\�eZ�`�:Zc���t���\�	
i,I���i�Xuzv�9l�\����7_�� H�;��s�)]=�wzwv����L�Ȧ��_�:��貋<Z��M��;��aHK���>T��$�"M+�:�{)Y���m��pp�{+���g��-E`(z�����/���_�t��x�}��w�u%�+�CF<MrC+?Xr6i1\\���QH�ލ�K�0�ć4�]vT����a��F�Ӝw��n��Z	(��D�.�16�H����ۣ�GDmޛ����� ��ǵ�ݯ�^��U�p��x�M]���–�k&^~uFWdG,�$�����������? ��CEn��=@X{�Z�Tv���Q5�ک-��8ŵzb�]>�A�6�q^8�t���e�0v���Y�m�1,-2K���Mjݔ��էRZ�u��?Z�;�0��
`J�R##$ؘ�H�[�xRmެ��z��C"冃�P���E�!�j��n<W�4^@�j�=��d-��Iܷ���g����}:�����~���Qځ��O
����).ی�e5��A�k�@�A��P��0w֡����QuEe��K�s9��P
��*?'��H��J����M80�|�E?QK]
�U#���h.�|�ǵ���	p�z��hŸ�f�9rGu��k��b���Yˬ���0
:H����XԨ��v�p�Bְg`z��tn��1ݺ��o1�x
o���f��E �8cydȩ��\���/f��;Ӎ�];��
V1w�xL���ߢY�oO7W��!P|�g1C�F��:<Ȇ����[�m�������QEڼ�!R�JL�.x�ǘߡ�H�΀{˪b]_8��ĩ��]_��2�����X�6%qMB��}�6�F��>�����J��cy��1�F4�����*z*$�&D�N�ҠC��G������B��C�M�"�H�0�XC`~!�
�g��@=�\��,˼�ո����5�/'��q�����ƾ��_��
�5���E��6�\k�?*��Z������*�ν����u��02� ǤP��r��?D)�T�T#��USŨ��:bE����
"m�.k�P�P0Щd��vT.����b?B�?C�k���v�����4u�X�2p���K�Fv
A'n
4�4��Yx̑^����33^+�Uy�r���:�+Y
�ā��7�ND�B��Հ�Q5s"O�Eǿ-�8̨�FDLq/�r�9�(����N6�{m�s.��~v���{e|< �!�;��Lݟv��5��W��؁��G΅�-��pB4m	�H�%�A�ݰg):m��I�Dǭ�3��`:1��;�Ȅ/�_�Q���|���&طn؜N��E�~G�D��?e?��6#��j�|��d�FM��֙5���վ�`
�V	�a�ӄ�f�f����b�L>��t��!��`n��ϴ�A���4���t�Vy�6�������/O�;`�c���+�W�4���K�!]�w!E��&kR	�ɜ�p�-d�������ڸ]���g~��2uj��^ʔ†	ޒ7��LM
�A������p�*]*)��Y��nk��������17��"������|50AY�z|����I,
	��ط�����gZ�<������Ъ�%Y.�-!��ɨ!��H>�?�H��_)�}Ty�""D>Pw�3�A�G���(���ȯ�	��r�ъz�,0��$<%�t��O�bkUXn����"`�WCs[��-n0���)T	�����!DŽE�f�9�S������B}��|?�<���蔅jb�͏`߅!��g@���vq��Ғץ��uW3��R�V���)��c�����z�%�T��–�II�~O4p�(�)@��~���]k n^�]��/�Z�^y����|�2#��ll��M�
�QŜ�����^���CAc�:�܉�F,�w��D�k��=�[�%��uH ��<��"1����/�軾Iػ�h|з�R
����_�g=L=���t!2�AY��!M6�[M���:.
ŻG�K�`�޺���R�ϛ�9a�	քzs:�d]�H����N���h?�J�#؅��+o3*ԩk�e���qe")�B����ڗ�!`��)�&���d�4�<Z�)rKN����nj;�R��8B��2.��Vo�бe�A$��X9N�wt�T^Qg�ke�f���64z�_���A%�,Xɟ�tB�Ḳq�<V�@�n���`,Ou1��b���@75��e5ɥ��{�榰Lm���g�������,�Z�fdP����gƀ��wbJ��v(�mj���{�e�)������T�G7�M��>ү\��Ǥ�9w�G+�@�=�[�����z�K'3�x�4a��4��J���E�5�`�
�n�p��5m@9[V�?A%�x��2��9S�8��HVy,`k	�"ܻ�U�0`�g!��B�k|{�O�B�竒."YНA�9U#mu���F���k��L���L�$nP7�;�]���9m�osNA�w�!����	�OG^\�;d�~��l��ge{|01��O�زs��:,�f���;��gD�O���_�Y��)+��}�W�wx�7�÷�"dto�7_��s\��l�&g8;|�`<�Q��,R��1a����E�K��"�ά&�,A,_%�M[!A�—�����y��Sľ��[�	�魛53H7���F�~ ���J�p���e�+�D���j�G�������ق�������ja����r,8��O���-��oZ�#�������_�R	�<���Y���(����b(��á(7ӊ�9HE�B)��-3?yz���})�z�e�5ءo�Q@g��u�g�G�d�;:��T߃�;P�pk�H�}ҙD���
0CTԱ&@D7?��^�}9Ww���QKZ.�H��v`�o:H2
:�M�2ӆw��],��DZu5����b�	7���k���g�����a�
zm��@�兜7�n=�FF���j�Q���"��L�z���r�+�p,[Q-[f��!�
'_��&m�S��(���6�̀��-
�V=�1�=���8biK*NOW��yEPG�vE�(����t;��I�`1/	��?utD�@@����
_|=�Yx\��`��7�6*'�U©���ʄ���
n#�S�>-�<��n��a���Ry(�&mA��'�i�u��7��N�g��0Z4�tq��R�,�6n�����
N��ZϽ�Z�v��R[��1ɩA��'V�v�Q����t-�"h
"5l�ն�Ο����~wI�1�E����ClH,۪L��A2oNr¤�ZJ��0��[ʭ���l0���p*h"l�ȉ��U�8�Gd�W%p��	y���yRa�QN��m�	b	�B.�0/
"��Հ�f�>���k�z@�v��
}��JOQХ9�BY�d��7��n:4���z�W������X.�N8���C��@0<��F�z�8���W>�z\�ž9���LvrN�f�m��UL�r�>~�Š�b���̍�d��h	�?JV�Œ�uQ^����7���8
)'�3t���
�*'x%���b�]H�sGv�Oi�+ >��6��CC�˲6��r�;�u,�*Jm�<��j#L�
dkB>'3���D�C��YA =Qǥ�Bz����3:��sG%�xXl0?xl"K<3�V}FaF8���^�����T|�}�$����ܣ�C?����拣�2�}1fS0�ժ��[���=���77ݩpG{?*:/1�QM�i:�������O��'�a�;(�`Ad�<��5�����/692�g�Q�d�0���=TjI䎔m�d(�����T.�ft�(�Kx�@��69���2���fkY��
�~�p�Tf�t�6���
�5r|�x�9j�|�OGD��^/���K�
�۶qG�.!�wvC_@R��C9P�7g����r�������t�M�{\|_ mS;�D��ޱ.�D�3|ο�܊[f�s22����猞�$[A5�Ӷ�*�h�4Bc�Bf�wu����#�.��9w����pv�;)�wU^����7.h
:b�v��x���fA�ˇ�f�S�bz���钵�F��ΐ����B5�n��̙�� ���}疄�$n����m������A�!/+
�w8�6]F+�6��f�g'��~�]�e�J!�F�ys���L'э���e6�V%�+�Pc|q�N3� �g�ecNx�#x��WufW_˨3����;ޙ@�7|��hv��4mf�`�l��=e���cB���=����^丰"�7��}2H�Ü[�E֣c8�?�nY��x��Vr���l^��[z<��14@���[�\b���L�l2�;5�"B-��	C x�S���ס��j�׷~�=.�Ň��W�Gin��J��*4j����v��jK�{��2_H,��ش�d�Cs���zc�<w�l�	#� TZ=U���r����)=�ߘ���iE�c�v[������
B��X��k�mkQ�2Fӯ��-��=-Zc�>�/�*���F=3��גWĒ��m��Vk�kt�'l=]�^<�H���+���IV�F��g������6:CYCV�A��3GU8K1�UȜ#��ND5]�_���y���g5�m�Qׄ���9hb׹�o�xW�u�Ԑy�']n*4��:6�*�Ϳ�3?%,[�����r�nF�J_Re�r�Y�U���9�56��<<�%o8��	���IY�00��2��|B�Hg�7�bm>���L�3[���L��l�����ū�`rW�2A��>�J>1�~���8���T�j@��+�(^l�fY�*AX����m��X����*�9��ا��O�>!48���e2���q���Ƒo�F�"��$��
��,�����E��_>{J=�jcV��8¼��FH�Pr�.��!,�|h5�ӊ�-��!��ۊ�T����"��i��}�I�N51��H��~tMz�0�J��躼�ґ�cTO/��i_jh�#����Zq��9������Z�(����sR�k�b#��6��v�]eϕ,��_�Z$a�s$e�V4�w�Җrp w��y�
o����5�:1�vI\rU�r���!d�R�m_%2z�,�I�!
�����P�������񽉉fw1���͗�<:d(����5A��'���g�r�k_*�Σ��XXo$�?��?�wĜ��Q�b�-�LiA
D�NX��"���
�weI�M�mfm���)�*W�r�	+I�4�S� �׍�]a�Q��)ꚷ��΍I7�<�&e�h��{Q��@y||E+����j��_\�z�a�ӹ8E���,����L;"�,��]���q���m��Z�A�ڪ�p�����ۖ߬��`T �`=հ�O��{�x���	MA;�fG����&��a0�����3���u(�R�3�	�zK�|��֫iPPr�-
�=w�k��\���
jΙs`B!nOd��V�\��c��;.<f* y�7��w3�*#��G�����-����,��K�X��Щ#Ng?��Tz`����O�h(tNa?��n�+����gOu�����).H�ˑ�	�K,�˖�?GE#^r����bሆ.Jq����l?�c+$_��bkbl��9����iDB{�#?����=���G+��8[{8�����-�����W�d�w�򭘍:>`�ͥ,=��b��M�}���i�%B|�P������^�-�%��e9L��\aB����Dt�[��Ϋ,L���ﮗ4��nVY�_�H�}��e
u��6$��LY�ڵ+�X���].V�X���|���qV���L���\4H;�Q2i%~�99��뗇��M��b���6�g�:����1���ָ���P�2[�z_�%};BνAu8�br�t"��K���qÚv�I#+E@������Ӛ���@I]�B>���`7Д�l���na5#j��@%<��َQ���I�G��l�RK3�?�(���|*!恻b6�Pp�)�N;/߉2�Ӯ�>�:D� �
6�#�[��8�-���ӣ���M�Pg S����n=��&�56�2ٝ�?��J-�k.�	v�K7��}�	�G~�y���þ~B�[��}�.��[����E��U���[��ٸ��#�������q��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.text.fini.rodata.stapsdt.base.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.probes.bss.note.stapsdt.gnu.build.attributes.gnu_debuglink.gnu_debugdata��$���o��2(44ط0����V�8���o.m.mRE���o�|�|�T`~`~H�^B�P�PІhx�x�c�����Yn�1�1�� t$�#$�#
z@�#@�#�,
 ���-��-���-��-����.��.h^��$S�$3��$S�$3��$S�$3�O ��tS�t3P��vS�v3	��S�3-� �S �3� ���S��3.��S�3`� ��3�`]���34��30* �3d���49PKKH[��Q�/�/(lib64/gems/ruby/openssl-2.1.4/openssl.sonuȯ��ELF>@�@P(@8	@���� p�p�%p�%h3< ����%��%888$$ؽؽؽ  S�tdؽؽؽ  P�td   <<Q�tdR�tdp�p�%p�%��GNU���yRWՊ-���o_�z\��� 0"$@@�	(Q�0�Au ���
@ �
`BbH�	�� P) �#�����		� ��@ �@ !�@D��@@ H!D�$`��
�P"�J$)�@N)�"DBX0!B @@@F���@� H@�
  �R��`��@@�P� �@�������������������������������������������������������������	!#%&(),./12689<@BCFKMQRSVW�E�K��l�I�q�η)��Bг���Z�ʮ9X�{�)��Ns���t��J���+agg�-(7�WN����/��iƵQ\���1b��8чɌA�Z��)&��p�EtdQ��z<wU��*��y�7)4^�S�14��8Q�1a��c�
O\���J�{(�����!�>�KG6�W6߂ט��m3l�јS6‡Nq��K� �ߝ�+&�)4�����"v��w�"`��P�b�yl
�I�!I�e�R�UF�Կ�1������>�텄�!��vvD�
z^����y�P=�2v�*b^��G��u$.�S�q�y]�e�Ω+�n	�
�ժ�m
!��I���p�`��qX��o㾆��ٴ7�8ѭdx)�1H����:e-&k��,jb��o���p��I���T
��g��:�ѫ���<�#IP���\��@��|��U�	s���|0�DcCE�? X��v$.�S�g���@�|��Y�D[H.ZJ7�.�0J�ʺ�|o�(4)*�%T���6�- I��ܛ{���ИBE��%9�<~�-)
͙��:'9�<�߲G�'3=��_�z�E'D�8��|t��X
�/i�ij�������`9E��D{���v,2��4��"�ǯ�M��������swxX�-�<�G��洿)4
�,���<-��,Tή�6���cfEӕ��%mTm�
�}��[-��t��ǫ����yqa��,T��kǨu$.b-����t�o�l��|fsG�,9�%�%�5E��H�&)�
=**=��G4�?�X&� ���3�8�A12`B#�D�3!�)���2�	�DwC;
 !�.\x��4�!�!"1�FNC�02?���)�D� �B�#�B�
�
"e*\'�CYW�*�%O$U.�2�"�!lG'�#"�$JX9h��K�>�G�2� �
�
�DH'�(!%�8�4�7�.<�'u	WlHe#�/O+�E	�J/Z�
�5F*,I)u
�
,0J?�9�%�_D&��-�%�f
�#�7�7�"�'b5�DX��,

LE�]�F"47?�?�j%�/��C_,�'V
�(8�y5��<�=�c8,w��8ij(B��!�?�7�(�.4'{�'�@�*W=�	_):Dt\-#&`��>���RGs�?}.*FC(3�!@.��&g�@�[E�B��!�<�U�Q#H%4�((�6��)�<�e!2�E;�E� 5�$�'O"���	�8�@H��<��&=�Cp'T��&�HA1L �$[�2��5o��=0�*��1�<�F�,�C�34)�"J!7
�	��6��E�;'*���-(� 0�"
�A�%Z7E�@$
8K3g4wIE1k
=b&��+G8�p*�D�3�:�GG5�.
*%9��_/\�%�tt1�A+`$	�E�;�+�0�:�[C *�C�@[7�CI�T"|3
�!�����0*�!g.m?		��w(���!96D=I(��Sh	�B	�<�+h3�;"
>�3u�)1,5�:;)wAy%�&:@�>*#�2�+h�+B,7�)/.m ��x$�=s<z'S@Q8w �0L
#
RD�+J����*�B�	�p)H?&.�8��?-"|*�E�G�"�v
p-CI�0<G�'5t;m9���:��G� d��'�v68>�,��<JF(7�G�;��
�$���.�;��#9T*�B�	,�2��4�#>m2iC�5�j<\	D�4"�+6C%-<�ws/�	��
"��d�,KH��/�5�=�
2
�;�F
e
f:��2�Z>�#z=k�<�*<+,�lD�1�&+X46 �=�{4q�/�A�>H�B��,�C�1�-{9!�0�<Cr/I,7�F��9��
A@7E�!F�y��6�
�5��(e�&$;U/�H�9;I����@
0
69	�/�#�V�2q!�[H#W?�-r,aI6a%��5D�x+$AByG>^I�'7-1�4=&�2��#h+�&83Z�#ES�3�F1X��$�)��)�&���C+9h/
l@?(�6=(�G�0/��8�D�-4�7e0�
��,35@v7[A_ ��M	Cp0}&�63�h5<Y%��l(�'rE�
�*�/[;�-N)�7*	�/4W3�H�c)�?2Hx>�0'C �:�3�	�*��E GmB�<�?C0
!I>>2�/.�V2%uC9�.8<��A�4�4�j=��5�-*~?$
�,�4�#-�V!!@�5A�$�>mO6kF�*�H��A��� �;�&.�Al$�pS�)
.H-�/�( ��F;#PB�=, e>~=�5�Hs�(XMI%���;%���$�8A�fA�6i %��0@8�?�-�$b6*�4`(�&��[���&
I�&L"{��O>b8&v$(�&��&�A�6�7�&�@�<p���"p��&I�*��&���i� Q��@0&��&�8&�$`&q" C�L&SP����l{7;&�h&X"@��y d^B@&*: �+�@&'$�C_��&�*�&�&0V��&�&�# >��<���mC��i�Eh&DCH&j�N6�&� �b6�Z�:(&T�&�'�&~"P&xpd�p��$x&	uj�0�iG
&�x&����~���&`1��@1B8&6P���1��%H{'�&�m�&&`�QsH&�>�VH�&Up&<&�����9=5$(q��&�Gp&�PNj��&c {Z�&�"H&L &cG�&�`&�I�%R:��G�`�6&W0��%H#`�9�&�0�}�-�&�0��> &$�~��Q�-vsd &��&��&�/�&�@�b��'�	� ���1�&/'p&$X&*0&f�&��&lp&<:@�d�^�B$�{jn(&�"Z�1�&)X&��bj,&?@&�@�)�I�&�90c�Y�&/��_��Ro`�"@�%He"P'�Z<�&�I�%/&H<`<jd<�<6�%x&8&?p�j��&,DX&��!j�&upP���T�8&�
���B�&�`�j) 0&Y
�&>�6N�.
P&B
�&���:�K�!(&��u6�=Њ6 �q�9@OEq'�&:�u��Ix&
@&�h&�EP&��&Q�	���_����/�&��&�&)�&�P1� ^��&��&�%h&�>`&x8�&�2���&D�'_��&�/�&__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizedOSSLrb_str_newrb_yieldrb_string_value__stack_chk_failossl_get_errorsrb_ary_newERR_error_stringrb_str_new_cstrrb_ary_pushERR_get_errorFIPS_modeossl_protect_x509_ary2skossl_x509_ary2sk0rb_protectossl_x509_ary2skrb_jump_tagossl_x509_sk2aryOPENSSL_sk_numrb_ary_new_capaOPENSSL_sk_valueossl_x509_newstderrfwrite__fprintf_chkossl_x509crl_sk2aryossl_x509crl_newossl_x509name_sk2aryossl_x509name_newossl_str_newrb_set_errinfomemcpyossl_buf2strCRYPTO_freeossl_bin2hex__assert_failossl_pem_passwd_cbrb_block_given_pPEM_def_callbackrb_warningossl_to_derrb_funcallvossl_to_der_if_possiblerb_respond_toossl_clear_errorERR_get_error_line_dataERR_clear_errorrb_warnossl_raiserb_vsprintfERR_peek_last_errorrb_exc_new_strrb_exc_raiserb_str_new_staticERR_reason_error_stringrb_str_cat_cstrrb_str_catrb_check_typeOPENSSL_sk_new_nullrb_ary_entrycX509Certrb_obj_is_kind_ofDupX509CertPtrOPENSSL_sk_pushX509_freeOPENSSL_sk_pop_freeeOSSLErrorossl_pem_passwd_valueFIPS_mode_setInit_opensslOPENSSL_init_sslrb_define_modulemOSSLrb_global_variablerb_define_constOpenSSL_versionrb_eStandardErrorrb_define_class_underrb_internInit_ossl_bnInit_ossl_cipherInit_ossl_configInit_ossl_digestInit_ossl_hmacInit_ossl_ns_spkiInit_ossl_pkcs12Init_ossl_pkcs7Init_ossl_pkeyInit_ossl_randInit_ossl_sslInit_ossl_x509Init_ossl_ocspInit_ossl_engineInit_ossl_asn1Init_ossl_kdfrb_eRuntimeErrorrb_raiserb_define_module_functionrb_string_value_cstrOBJ_txt2objeASN1Errorrb_ivar_setrb_attr_getASN1_OBJECT_freerb_usascii_str_new_staticOBJ_obj2txtrb_str_resizerb_str_set_lenrb_out_of_intOBJ_txt2nidOBJ_nid2lnOBJ_nid2sncASN1EndOfContentrb_funcallv_publicrb_intern2cASN1SetcASN1SequencecASN1GeneralizedTimecASN1UTCTimecASN1ObjectIdcASN1NullcASN1BMPStringcASN1UniversalStringcASN1GeneralStringcASN1ISO64StringcASN1GraphicStringcASN1IA5StringcASN1VideotexStringcASN1T61StringcASN1PrintableStringcASN1NumericStringcASN1UTF8StringcASN1OctetStringcASN1BitStringcASN1EnumeratedcASN1IntegercASN1Booleanrb_block_callasn1time_to_time__isoc99_sscanfrb_cTimerb_eTypeErrorasn1integer_to_numASN1_INTEGER_to_BNossl_bn_newBN_freeASN1_ENUMERATED_to_BNOBJ_createrb_num2intrb_fix2intrb_hash_lookuprb_class_superclassrb_cFalseClassrb_cIntegerrb_cNilClassrb_cFloatrb_cTrueClassrb_cSymbolASN1_object_sizeASN1_put_objectASN1_put_eocrb_convert_typerb_str_appendrb_keyword_given_prb_free_tmp_bufferrb_empty_keyword_given_prb_error_arityASN1_get_objectcASN1Datarb_obj_alloccASN1Constructiverb_int2bigd2i_ASN1_TIMEASN1_TIME_freed2i_ASN1_ENUMERATEDASN1_ENUMERATED_freed2i_ASN1_INTEGERASN1_INTEGER_freed2i_ASN1_NULLASN1_NULL_freed2i_ASN1_OBJECTOBJ_obj2nidd2i_ASN1_BIT_STRINGASN1_BIT_STRING_freeBIO_s_memBIO_newi2a_ASN1_OBJECTossl_membio2strrb_str_new_frozenossl_time_splitrb_Integerrb_num2longasn1str_to_strnum_to_asn1integerossl_bn_value_ptrBN_to_ASN1_INTEGERossl_asn1_get_asn1typeASN1_GENERALIZEDTIME_adjCRYPTO_mallocASN1_TYPE_setASN1_BIT_STRING_newASN1_BIT_STRING_setASN1_STRING_newASN1_STRING_setASN1_STRING_freeASN1_NULL_newASN1_UTCTIME_adji2d_ASN1_TYPEASN1_TYPE_freerb_str_drop_bytesrb_cArrayrb_id2symrb_define_module_undermASN1rb_ary_storerb_cObjectrb_attrrb_define_aliascASN1Primitiverb_undef_methodrb_mEnumerablerb_include_modulerb_hash_newrb_gc_register_mark_objectrb_hash_asetrb_define_methodrb_define_singleton_methodossl_obj2bioBIO_new_mem_bufBIO_ctrlBIO_freeBN_clear_freerb_check_typeddataBN_num_bitsBN_bn2binrb_memhashrb_alloc_tmp_buffereBNErrorrb_obj_classrb_data_typed_object_wrapBN_newossl_bn_ctxBN_sqrBN_bn2hexrb_cstr_to_inumBN_is_zeroBN_is_negativecBNBN_dupBN_set_negativeBN_is_oddBN_is_oneBN_cmpBN_bin2bnrb_absint_sizerb_integer_packrb_alloc_tmp_buffer_with_countBN_copyBN_hex2bnrb_string_value_ptrBN_mpi2bnBN_dec2bnrb_eArgErrorBN_is_bit_setBN_set_bitBN_clear_bitBN_mask_bitsBN_lshiftBN_rshiftBN_pseudo_randBN_randBN_is_prime_fasttest_exBN_is_prime_exstrlenBN_bn2decBN_bn2mpirb_assoc_newBN_mod_inverseBN_generate_prime_exBN_pseudo_rand_rangeBN_rand_rangeBN_ucmpBN_gcdBN_mod_expBN_expBN_mod_sqrBN_mod_mulBN_mod_subBN_mod_addBN_divrb_ary_new_from_argsBN_mulBN_subBN_addrb_error_frozen_objectBN_CTX_newrb_define_alloc_funcEVP_CIPHER_CTX_freeEVP_CIPHER_CTX_newEVP_get_cipherbynameEVP_CipherInit_exeCipherErrorEVP_CIPHER_CTX_cipherEVP_CIPHER_flagsEVP_CIPHER_CTX_iv_lengthEVP_CIPHER_CTX_get_app_dataEVP_CIPHER_CTX_key_lengthEVP_CIPHER_CTX_ctrlEVP_CIPHER_CTX_block_sizeEVP_CipherFinal_exEVP_CipherUpdaterb_eRangeErrorossl_evp_get_digestbynameEVP_BytesToKeyOPENSSL_cleanseEVP_md5OBJ_NAME_do_all_sortedEVP_CIPHER_CTX_copyEVP_CIPHER_nidEVP_CIPHER_CTX_set_key_lengthEVP_CIPHER_CTX_set_paddingEVP_CIPHER_CTX_set_app_datarb_class_path__memcpy_chkossl_evp_get_cipherbynamecCipherossl_cipher_newDupConfigPtrcConfigNCONF_newNCONF_load_bioNCONF_freeeConfigErrorCONF_get1_default_config_fileEVP_MD_CTX_freeEVP_MD_CTX_mdEVP_MD_sizeEVP_DigestFinal_exeDigestErrorEVP_MD_CTX_copyEVP_MD_CTX_newEVP_DigestInit_exossl_digest_updateEVP_DigestUpdateEVP_MD_typeEVP_MD_block_sizeEVP_get_digestbynameossl_digest_newcDigestrb_path2classrb_define_private_methodENGINE_freeENGINE_get_cmd_defnsENGINE_ctrl_cmd_stringeEngineErrorENGINE_load_public_keyossl_pkey_newENGINE_load_private_keyrb_iv_setENGINE_get_firstENGINE_up_refENGINE_get_nextOPENSSL_init_cryptoENGINE_load_builtin_enginesENGINE_by_idENGINE_initENGINE_ctrlENGINE_get_nameENGINE_get_idrb_sprintfENGINE_set_defaultENGINE_get_digestENGINE_get_cipherENGINE_finishcEnginerb_undef_alloc_funcHMAC_CTX_freeeHMACErrorHMAC_CTX_newHMAC_CTX_copyHMAC_FinalHMAC_UpdateHMAC_Init_excHMACrb_get_kwargsEVP_PKEY_CTX_new_idEVP_PKEY_derive_initEVP_PKEY_CTX_ctrlEVP_PKEY_deriveEVP_PKEY_CTX_freerb_extract_keywordsrb_check_hash_typePKCS5_PBKDF2_HMACEVP_PBE_scryptrb_num2ulongNETSCAPE_SPKI_freeeSPKIErrori2d_NETSCAPE_SPKIeX509CertErrorNETSCAPE_SPKI_b64_decoded2i_NETSCAPE_SPKIGetPKeyPtrossl_pkey_check_public_keyNETSCAPE_SPKI_verifyGetPrivPKeyPtrNETSCAPE_SPKI_signNETSCAPE_SPKI_set_pubkeyNETSCAPE_SPKI_get_pubkeyNETSCAPE_SPKI_printNETSCAPE_SPKI_b64_encodeNETSCAPE_SPKI_newmNetscapecSPKIi2d_OCSP_CERTIDeOCSPErrorOCSP_CERTID_freeOCSP_id_get0_infod2i_OCSP_CERTIDGetX509CertPtrOCSP_cert_to_idOCSP_CERTID_dupi2d_OCSP_SINGLERESPOCSP_SINGLERESP_freed2i_OCSP_SINGLERESPOCSP_SINGLERESP_itASN1_item_dupi2d_OCSP_BASICRESPOCSP_BASICRESP_freeOCSP_BASICRESP_itOCSP_basic_add1_nonceOCSP_REQUEST_freeOCSP_REQUEST_itd2i_OCSP_BASICRESPi2d_OCSP_RESPONSEOCSP_RESPONSE_freeOCSP_RESPONSE_itd2i_OCSP_RESPONSEi2d_OCSP_REQUESTOCSP_request_onereq_countcOCSPCertIdOCSP_request_onereq_get0OCSP_onereq_get0_idOCSP_request_add0_idOCSP_request_add1_nonced2i_OCSP_REQUESTOCSP_id_issuer_cmpOCSP_id_cmpOCSP_resp_countOCSP_resp_get0OCSP_single_get0_statusOCSP_SINGLERESP_get0_idOCSP_SINGLERESP_get_ext_countOCSP_SINGLERESP_get_extossl_x509ext_newcOCSPSingleResOCSP_resp_findOCSP_CERTID_newOCSP_SINGLERESP_newOCSP_copy_nonceOCSP_BASICRESP_newcOCSPBasicResOCSP_response_get1_basicOCSP_response_statusOCSP_response_status_strOCSP_RESPONSE_newOCSP_check_nonceOCSP_REQUEST_newOCSP_request_is_signedOCSP_response_createX509_gmtime_adjossl_x509_time_adjustrb_check_array_typecX509ExtOCSP_basic_add1_statusGetX509ExtPtrOCSP_SINGLERESP_add_extOCSP_check_validityGetX509StorePtrOCSP_request_verifyOCSP_basic_verifyOCSP_basic_signEVP_sha1OCSP_request_signmOCSPcOCSPReqcOCSPResi2d_PKCS12ePKCS12ErrorPKCS12_freed2i_PKCS12_bioERR_set_markPKCS12_parseERR_pop_to_markd2i_PKCS12ASN1_dupPKCS12_newcPKCS12PKCS12_createPKCS7_RECIP_INFO_freePKCS7_SIGNER_INFO_freei2d_PKCS7ePKCS7ErrorPKCS7_freePKCS7_verifyERR_peek_errorrb_iv_getPKCS7_dataInitBIO_writeBIO_readPKCS7_dataFinalBIO_free_allPKCS7_content_newd2i_PKCS7_RECIP_INFOi2d_PKCS7_RECIP_INFOcPKCS7RecipientPKCS7_RECIP_INFO_newPKCS7_get_signer_infod2i_PKCS7_SIGNER_INFOi2d_PKCS7_SIGNER_INFOcPKCS7SignerPKCS7_SIGNER_INFO_newPEM_read_bio_PKCS7d2i_PKCS7_bioPKCS7_dupPKCS7_RECIP_INFO_setPKCS7_get_signed_attributePKCS7_SIGNER_INFO_setPEM_write_bio_PKCS7X509_CRL_freeOPENSSL_sk_popGetX509CRLPtrPKCS7_add_crlPKCS7_add_certificatePKCS7_add_recipient_infoPKCS7_add_signerOBJ_nid2objPKCS7_add_signed_attributePKCS7_set_cipherPKCS7_ctrlstrcmprb_sym2strPKCS7_set_typePKCS7_newcPKCS7SMIME_read_PKCS7PKCS7_decryptEVP_rc2_40_cbcPKCS7_encryptPKCS7_signSMIME_write_PKCS7rb_thread_check_intsEVP_PKEY_freeEVP_PKEY_base_idossl_ec_newossl_rsa_newossl_dh_newossl_dsa_newcPKeyossl_evp_pkey_typerb_obj_is_instance_ofEVP_PKEY_newePKeyErrorossl_generate_cb_2BN_GENCB_get_argrb_thread_call_with_gvlossl_generate_cb_stopd2i_PrivateKey_bioPEM_read_bio_PrivateKeyd2i_PUBKEY_bioPEM_read_bio_PUBKEYEVP_PKEY_missing_parametersEVP_PKEY_get0EC_KEY_get0_public_keyRSA_get0_keyDSA_get0_keyDH_get0_keyEVP_VerifyFinalEVP_PKEY_sizeEVP_SignFinalDupPKeyPtrEVP_PKEY_up_refmPKeyInit_ossl_rsaInit_ossl_dsaInit_ossl_dhInit_ossl_ecEVP_PKEY_get0_DHDH_get0_pqgDH_set0_keyDH_set0_pqgDH_sizeeDHErrorDHparams_dupEVP_PKEY_assigni2d_DHparamsPEM_write_bio_DHparamsDHparams_printDH_generate_parameters_exDH_newBN_GENCB_newBN_GENCB_setrb_thread_call_without_gvlBN_GENCB_freeDH_generate_keyDH_freeDH_checkDH_get0_enginePEM_read_bio_DHparamsd2i_DHparamsASN1_d2i_biocDHEVP_PKEY_get0_DSADSA_get0_pqgDSA_set0_keyDSA_set0_pqgeDSAErrord2i_DSAPrivateKeyi2d_DSAPrivateKeyi2d_DSA_PUBKEYPEM_write_bio_DSAPrivateKeyPEM_write_bio_DSA_PUBKEYDSA_printDSA_generate_parameters_exDSA_newDSA_generate_keyDSA_freePEM_read_bio_DSAPrivateKeyPEM_read_bio_DSA_PUBKEYd2i_DSAPrivateKey_biod2i_DSA_PUBKEY_biod2i_DSAPublicKeyPEM_ASN1_read_bioi2d_DSAPublicKeycDSAEC_GROUP_clear_freeEC_POINT_clear_freeEC_POINT_is_on_curvecEC_POINTeEC_GROUPeEC_POINTrb_obj_dupEC_POINT_dupEC_POINT_newEC_POINT_oct2pointEC_POINT_bn2pointEC_POINT_freePEM_write_bio_ECPKParametersi2d_ECPKParametersASN1_i2d_bioeECErrorEC_GROUP_set_seedrb_sym2idEC_GROUP_new_curve_GFpcEC_GROUPEC_GROUP_dupPEM_read_bio_ECPKParametersEC_GFp_nist_methodEC_GROUP_newd2i_ECPKParametersOBJ_sn2nidEC_GROUP_new_by_curve_nameEC_GROUP_set_asn1_flagEC_GROUP_set_point_conversion_formEC_GFp_simple_methodEC_GFp_mont_methodEVP_PKEY_get0_EC_KEYEC_KEY_printEC_KEY_check_keyEC_KEY_get0_private_keyPEM_write_bio_ECPrivateKeyi2d_ECPrivateKey_bioPEM_write_bio_EC_PUBKEYi2d_EC_PUBKEY_bioECDSA_verifyECDSA_sizeECDSA_signECDH_compute_keyEC_KEY_set_public_keyEC_KEY_set_private_keyEC_KEY_set_groupEC_KEY_dupEC_KEY_freeEC_KEY_newEC_KEY_new_by_curve_nameEC_KEY_set_asn1_flagEC_KEY_set_conv_formcECPEM_read_bio_ECPrivateKeyPEM_read_bio_EC_PUBKEYd2i_ECPrivateKey_biod2i_EC_PUBKEY_bioEC_get_builtin_curvesEC_POINT_point2octEC_POINT_set_to_infinityEC_POINT_invertEC_POINT_make_affineEC_POINT_is_at_infinityECPKParameters_printEC_GROUP_get_degreeEC_GROUP_get_seed_lenEC_GROUP_get0_seedEC_GROUP_get_point_conversion_formEC_GROUP_get_asn1_flagEC_GROUP_get_curve_nameEC_GROUP_get_cofactorEC_GROUP_get_orderEC_GROUP_set_generatorEC_GROUP_cmpEC_POINT_cmpEC_KEY_generate_keyEC_POINT_mulrb_ary_tmp_newEC_POINTs_mulruby_malloc_size_overflowEC_GROUP_get0_generatorEC_KEY_get0_groupEVP_PKEY_get0_RSARSA_get0_factorsRSA_get0_crt_paramsRSA_set0_crt_paramsRSA_set0_factorsRSA_set0_keyi2d_RSAPrivateKeyi2d_RSA_PUBKEYeRSAErrorPEM_write_bio_RSAPrivateKeyPEM_write_bio_RSA_PUBKEYRSA_printd2i_RSAPrivateKeyRSA_generate_key_exRSA_newRSA_freeRSAPublicKey_dupEVP_DigestVerifyInitRSA_pkey_ctx_ctrlEVP_DigestVerifyFinalRSA_sizeRSA_public_encryptRSA_public_decryptRSA_private_decryptRSA_private_encryptPEM_read_bio_RSAPrivateKeyPEM_read_bio_RSA_PUBKEYd2i_RSAPrivateKey_biod2i_RSA_PUBKEY_bioPEM_read_bio_RSAPublicKeyd2i_RSAPublicKey_bioEVP_DigestSignInitEVP_DigestSignFinalcRSARAND_statusrb_num2dblRAND_addRAND_seedRAND_byteseRandomErrorRAND_load_fileRAND_write_filemRandomSSL_freeSSL_get_ex_datarb_gc_markSSL_CIPHER_get_nameSSL_CIPHER_get_versionSSL_CIPHER_get_bitsossl_ssl_typeSSL_get_fdrb_io_taint_checkrb_io_check_closedrb_io_check_readablerb_io_check_writableSSL_set_fdSSL_CTX_freeSSL_CTX_get_ex_dataSSL_CTX_flush_sessionsSSL_CTX_ctrlSSL_get_servernameSSL_get_ex_data_X509_STORE_CTX_idxX509_STORE_CTX_get_ex_dataossl_verify_cb_callSSL_is_serverX509_STORE_CTX_get_error_depthX509_STORE_CTX_set_errorX509_STORE_CTX_get_current_certmSSLcSSLSessionossl_ssl_session_typerb_during_gcSSL_SESSION_up_refX509_get_pubkeyEVP_PKEY_cmpSSL_CTX_use_certificateSSL_CTX_use_PrivateKeySSL_CTX_get_security_levelSSL_CTX_get_ciphersSSL_CTX_get_optionsrb_uint2bigSSL_get0_next_proto_negotiatedSSL_get0_alpn_selectedSSL_ctrlSSL_get_client_CA_listSSL_get_verify_resultSSL_set_sessionSSL_session_reusedSSL_pendingSSL_state_stringrb_ruby_verbose_ptrSSL_state_string_longSSL_get_current_cipherSSL_get_versionSSL_get_peer_cert_chainSSL_get_peer_certificateSSL_get_certificateSSL_shutdownrb_hash_lookup2SSL_writeSSL_get_errorrb_io_wait_writable__errno_locationrb_funcallv_kwrb_io_wait_readablerb_sys_failX509_verify_cert_error_stringSSL_acceptSSL_connectSSL_CTX_clear_optionsSSL_CTX_set_optionsSSL_CTX_add_sessionSSL_CTX_set_cipher_listrb_StringTLS_methodSSL_CTX_newSSL_CTX_set_ex_dataSSL_CTX_set_security_levelSSL_CTX_remove_sessionstrncmprb_str_unlocktmprb_str_modifyrb_str_modify_expandrb_str_locktmpSSL_readrb_eof_errorSSL_CTX_set_tmp_dh_callbackSSL_CTX_set_cert_storeX509_STORE_up_refSSL_CTX_check_private_keySSL_CTX_add_client_CASSL_CTX_set_verifySSL_CTX_set_timeoutSSL_CTX_set_verify_depthSSL_CTX_set_next_protos_advertised_cbSSL_CTX_set_alpn_protosrb_obj_freezeSSL_CTX_set_session_id_contextSSL_CTX_callback_ctrlSSL_CTX_sess_set_new_cbSSL_CTX_sess_set_get_cbSSL_CTX_sess_set_remove_cbSSL_CTX_set_client_cert_cbSSL_CTX_load_verify_locationsSSL_CTX_set_alpn_select_cbSSL_CTX_set_next_proto_select_cbcSSLContextSSL_newSSL_set_ex_dataSSL_set_info_callbackrb_call_superSSL_set_SSL_CTXCRYPTO_get_ex_new_indexrb_mWaitReadablerb_mWaitWritableInit_ossl_ssl_sessioncSSLSocketSSL_SESSION_freei2d_SSL_SESSIONd2i_SSL_SESSIONPEM_read_bio_SSL_SESSIONSSL_get1_sessionSSL_SESSION_newSSL_SESSION_printSSL_SESSION_get_idSSL_SESSION_get_timeoutSSL_SESSION_set_timeoutSSL_SESSION_get_timeSSL_SESSION_set_timeSSL_SESSION_get_protocol_versionCRYPTO_memcmpPEM_write_bio_SSL_SESSIONX509_time_adj_exmX509Init_ossl_x509attrInit_ossl_x509certInit_ossl_x509crlInit_ossl_x509extInit_ossl_x509nameInit_ossl_x509reqInit_ossl_x509revokedInit_ossl_x509storeX509_get_default_cert_areaX509_get_default_cert_dirX509_get_default_cert_fileX509_get_default_cert_dir_envX509_get_default_cert_file_envX509_get_default_private_dirX509_ATTRIBUTE_freei2d_X509_ATTRIBUTEeX509AttrErrorX509_ATTRIBUTE_countX509_ATTRIBUTE_get0_typei2d_ASN1_SET_ANYOPENSSL_sk_freeASN1_TYPE_getX509_ATTRIBUTE_set1_dataX509_ATTRIBUTE_get0_objectX509_ATTRIBUTE_create_by_OBJX509_ATTRIBUTE_dupd2i_X509_ATTRIBUTEX509_ATTRIBUTE_set1_objectX509_ATTRIBUTE_newossl_x509attr_newcX509AttrGetX509AttrPtrX509_EXTENSION_freeX509_delete_extX509_add_exti2d_X509X509_dupPEM_read_bio_X509d2i_X509_bioX509_newX509_cmpX509_get_ext_countX509_get_extX509_check_private_keyX509_verifyX509_signX509_set_pubkeyX509_set1_notAfterX509_get0_notAfterX509_set1_notBeforeX509_get0_notBeforeGetX509NamePtrX509_set_issuer_nameX509_get_issuer_nameX509_set_subject_nameX509_get_subject_nameX509_get_serialNumberX509_set_serialNumberX509_get0_tbs_sigalgX509_set_versionX509_get_versionX509_printPEM_write_bio_X509X509_up_refX509_CRL_delete_extX509_CRL_add_exteX509CRLErrorcX509RevX509_CRL_get_REVOKEDX509_REVOKED_freeDupX509RevokedPtrX509_CRL_add0_revokedX509_CRL_sortossl_x509revoked_newX509_CRL_get0_signatureX509_CRL_dupPEM_read_bio_X509_CRLd2i_X509_CRL_bioX509_CRL_newX509_CRL_get_ext_countX509_CRL_get_extX509_CRL_printPEM_write_bio_X509_CRLi2d_X509_CRL_bioX509_CRL_verifyX509_CRL_signX509_CRL_set1_nextUpdateX509_CRL_get0_nextUpdateX509_CRL_set1_lastUpdateX509_CRL_get0_lastUpdateX509_CRL_set_issuer_nameX509_CRL_get_issuerX509_CRL_set_versionX509_CRL_get_versioncX509CRLi2d_X509_EXTENSIONeX509ExtErrorX509_EXTENSION_get_objectX509_EXTENSION_get_dataASN1_OCTET_STRING_setX509_EXTENSION_dupd2i_X509_EXTENSIONOBJ_ln2nidX509V3_set_nconfX509V3_EXT_nconf_nidX509V3_EXT_printASN1_STRING_printX509_EXTENSION_get_criticalX509_EXTENSION_set_objectGetX509ReqPtrX509V3_set_ctxX509_EXTENSION_newX509_EXTENSION_set_criticalcX509ExtFactoryX509_NAME_freei2d_X509_NAMEeX509NameErrorX509_NAME_entry_countX509_NAME_ENTRY_get_dataX509_NAME_get_entryX509_NAME_ENTRY_get_objecti2t_ASN1_OBJECTX509_NAME_print_exrb_utf8_encindexrb_enc_associate_indexrb_utf8_encodingrb_enc_sprintfX509_NAME_dupcX509Namerb_const_getd2i_X509_NAMEX509_NAME_newX509_NAME_cmpX509_NAME_onelineX509_NAME_hash_oldX509_NAME_hashX509_NAME_add_entry_by_txtrb_mComparablerb_hash_set_ifnoneX509_REQ_freeX509_REQ_delete_attrX509_REQ_add1_attreX509ReqErrorX509_REQ_get0_signaturei2d_X509_REQX509_REQ_dupPEM_read_bio_X509_REQd2i_X509_REQ_bioX509_REQ_get_attr_countX509_REQ_get_attrX509_REQ_verifyX509_REQ_signX509_REQ_set_pubkeyX509_REQ_get_pubkeyX509_REQ_set_subject_nameX509_REQ_get_subject_nameX509_REQ_set_versionX509_REQ_printPEM_write_bio_X509_REQX509_REQ_newX509_REQ_get_versioncX509Reqi2d_X509_REVOKEDeX509RevErrorX509_REVOKED_delete_extX509_REVOKED_add_extX509_REVOKED_dupX509_REVOKED_get_ext_countX509_REVOKED_get_extX509_REVOKED_set_revocationDateX509_REVOKED_get0_revocationDateX509_REVOKED_set_serialNumberX509_REVOKED_get0_serialNumberX509_REVOKED_newX509_STORE_CTX_get0_untrustedX509_STORE_CTX_get0_certX509_STORE_CTX_freeX509_STORE_freeX509_STORE_get_ex_dataX509_LOOKUP_fileX509_STORE_add_lookupX509_LOOKUP_ctrleX509StoreErrorX509_LOOKUP_hash_dircX509StoreContextX509_STORE_CTX_get_errorX509_STORE_CTX_set_timeX509_STORE_CTX_initX509_STORE_CTX_set_flagsX509_STORE_CTX_get0_current_crlX509_STORE_CTX_get0_chainrb_block_procX509_STORE_CTX_set_ex_dataX509_verify_certX509_STORE_CTX_newX509_STORE_add_crlX509_STORE_add_certX509_STORE_set_default_pathsX509_STORE_set_flagsX509_STORE_set_ex_dataX509_STORE_set_verify_cbX509_STORE_newX509_STORE_set_trustX509_STORE_set_purposeX509_STORE_CTX_set_purposeX509_STORE_CTX_set_trustX509_STORE_CTX_get0_storecX509Storelibruby.so.2.7libssl.so.1.1libcrypto.so.1.1libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.3.4GLIBC_2.4GLIBC_2.7GLIBC_2.14GLIBC_2.2.5OPENSSL_1_1_0OPENSSL_1_1_1/opt/alt/ruby27/lib64		�I`ti		�Iii
Jii
J���Jui	!J�I m-J�Im;Jm-Jp�%0�x�%���%��%��%g���%��%`��%�7`�%_�p�%�V��%����%�` �%x�0�% o��%����%І��%y���% �@�%��P�%З��%����%���%���%�`�%��p�%@���%����%�� �%j�0�%0���%����%@���%����%p�@�%n�P�%���%����%�F�%���%�F`�%S�p�%����%����%����%����%����%����%���%� �%��(�%�0�%���%x���%���%o
��%�1@�%3P�%0>��%
��%�R�%��%@o`�%�p�%�e��%D��%�x �%�0�%`���%���%`���%���%����%@�@�%�H�%��P�%����%����%����%:���%B���%M���%Z��%*��%_� �%q�0�%z�@�%�P�%��`�%��p�%����%����%����%����%����%����%����%����%��%��%� �%#�0�%3�@�%A�P�%M�`�%[�p�%k���%|���%T�%T��% �%��%��%��%���%���%��%��%��%��%�`�%�H�%���%�h�%N��%N��%,��%,��%��%���%�(�%���%&P�%&��%��%���%���%��%���%��%��%(�%p�%8�%�h�%�H�%���%�X�%	��%	h�%���%���%���%���%��%���%���%��%��%��%(��%���%���%���%M��%6�%/�%a �%e(�%f0�%m8�%�@�%9H�%�P�%sX�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%C��%���%���%��%���%���%���%��%F�%��%��%� �%�(�%0�%H8�%@�%RH�%�X�%K`�%�p�%�x�%���%��%���%B��%���%1��%���%r��%���%��%2��%
�%��%'�%� �%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%p�%�x�%���%���%W��%D��%���%)��%E��%#��%���%��%���%��%��%I��%(��%��%O�% �%�(�%�0�%�8�%[@�%@H�%eP�%nX�%zh�%�p�%�x�%���%���%.��%��%���%���%A��%���%���%���%���%���%Q��%��%>�%��%�%$ �%"(�%V0�%�8�%�@�%9H�%BP�%�X�%�`�%Jh�%x�%[��%���%���%g��%h��%��%p��%5��%x��%���%P��%���%�% �%(�%0�%8�%@�%H�%%P�%X�%`�%	h�%
p�%<x�%��%��%
��%���%��%��%��%��%��%��%��%��%��%��%��%��%�%�%�% �%! �%"(�%#0�%$8�%%@�%&H�%�P�%'X�%)`�%*h�%+p�%,x�%-��%.��%/��%0��%1��%2��%3��%4��%5��%6��%7��%8��%9��%:��%;��%<��%=�%��%>�%?�%� �%@(�%A0�%B8�%C@�%DH�%EP�%FX�%G`�%Hh�%Ip�%Jx�%K��%L��%N��%O��%P��%Q��%R��%S��%T��%U��%V��%W��%X��%Y��%Z��%[��%\�%]�%^�%_�%` �%b(�%c0�%�8�%d@�%eH�%fP�%gX�%h`�%ih�%jp�%kx�%l��%m��%n��%o��%p��%q��%r��%t��%u��%v��%w��%x��%y��%z��%{��%|��%}�%~�%�%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%��%��%��%��%� �%�(�%�0�%�8�%=@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%��%��%��%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%��%���%���%��%��%��%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%G��%���%���%���%���%���%���%���%���%���%���%��%��%��%��% �%(�%0�%8�%@�%H�%P�%X�%`�%	h�%
p�%x�%��%
��%��%��%��%��%��%��%��%���%��%S��%��%��%��%��%�%�%�%�% �%�(�%0�% 8�%!@�%"H�%#P�%$X�%%`�%&h�%'p�%�x�%(��%)��%*��%+��%,��%-��%.��%/��%0��%1��%2��%3��%4��%5��%6��%7��%8�%9�%:�%;�% �%<(�%=0�%>8�%?@�%@H�%AP�%BX�%C`�%Dh�%�p�%Ex�%:��%F��%���%G��%H��%I��%M��%J��%���%K��%L��%M��%N��%O��%P��%Q��%R�%S�%T�%U�%V �%W(�%X0�%Y8�%Z@�%[H�%\P�%]X�%^`�%_h�%`p�%ax�%b��%c��%d��%e��%f��%g��%h��%i��%j��%k��%l��%m��%n��%o��%p��%��%q�%s�%t�%u�%v �%w(�%x0�%!8�%y@�%zH�%{P�%|X�%}`�%~h�%p�%�x�%;��%���%���%���%���%���%���%���%���%��%���%���%���%���%��%���%��%��%��%��%� �%�(�%�0�%"8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%��%��%��%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%��%��%��%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%���%��%��%��%��%� �%(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%��%��%��%��%��%��%���%��%��%��%	��%���%
��%�%�%
�%�%� �%(�%0�%8�%@�%H�%P�%X�%`�%h�%p�%x�%8��%��%���%��%��% ��%3��%!��%0��%"��%#��%$��%%��%&��%'��%)��%*�%�%+�%,�%- �%.(�%/0�%08�%1@�%2H�%3P�%4X�%5`�%6h�%7p�%�x�%8��%9��%:��%;��%<��%=��%>��%?��%@��%A��%B��%C��%D��%E��%��%F��%G�%H�%��%�%I �%J(�%K0�%L8�%M@�%NH�%OP�%PX�%Q`�%h�%Rp�%Sx�%T��%U��%V��%W��%X��%Y��%Z��%\��%]��%^��%_��%`��%a��%b��%c��%d��%e�%f�%g�%h�%i �%j(�%k0�%l8�%m@�%oH�%pP�%qX�%r`�%sh�%tp�%ux�%v��%w��%x��%y��%{��%|��%}��%~��%��%���%���%���%���%���%���%���%(�%��%��%��%� �%�(�%�0�%8�%�@�%�H�%7P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%.��%���%���%���%���%��%��%��%��%��%��%���%��%
�%��%��%U �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%��%��%��%��%��%��%���%��%��%��%��%� �%�(�%�0�%*8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%��%��%��%��%��%��%���%��%��%��%��%� �%�(�%�0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%��%��%��%��%��%��%���%�%�%�%�% �%(�%0�%8�%@�%	H�%
P�%X�%`�%
h�%p�%x�%��%��%���%��%��%��%��%��%��%�%�%�%�%�%�%��% �%!�%#�%��%$ �%�(�%%0�%&8�%'@�%(H�%)P�%X�%*`�%+h�%�p�%,x�%-��%.��%/��%0��%1��%2��%3��%4��%5��%��%6�%7�%8�%:�%;�%<��%=�%>�%?�%@�%A �%L(�%C0�%D8�%E@�%FH�%GP�%�X�%H`�%Ih�%Jp�%Kx�%L��%M��%N��%O��%P��%���%Q��%R��%S��%T�%U�%V�%W�%X�%Y�%Z��%?�%\�%]�%^�%_ �%4(�%`0�%a8�%b@�%cH�%dP�%�X�%e`�%fh�%p�%+x�%i��%j��%k��%l��%m��%n��%o��%q��%r��%s�%-�%t�%u�%v�%w�%y��%z�%��%{�%|�%} �%~(�%0�%�8�%�@�%�H�%�P�%�X�%�`�%�h�%�p�%�x�%���%���%���%���%���%���%���%���%���%��%��%���H��H���$H��t��H����5ҥ$�%ӥ$��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h��������h�������h�������h������h������h������h������h������h��q����h��a����h	��Q����h
��A����h��1����h��!����h
������h������h�������h�������h�������h������h������h������h������h������h��q����h��a����h��Q����h��A����h��1����h��!����h������h������h�������h �������h!�������h"������h#������h$������h%������h&������h'��q����h(��a����h)��Q����h*��A����h+��1����h,��!����h-������h.������h/�������h0�������h1�������h2������h3������h4������h5������h6������h7��q����h8��a����h9��Q����h:��A����h;��1����h<��!����h=������h>������h?�������h@�������hA�������hB������hC������hD������hE������hF������hG��q����hH��a����hI��Q����hJ��A����hK��1����hL��!����hM������hN������hO�������hP�������hQ�������hR������hS������hT������hU������hV������hW��q����hX��a����hY��Q����hZ��A����h[��1����h\��!����h]������h^������h_�������h`�������ha�������hb������hc������hd������he������hf������hg��q����hh��a����hi��Q����hj��A����hk��1����hl��!����hm������hn������ho�������hp�������hq�������hr������hs������ht������hu������hv������hw��q����hx��a����hy��Q����hz��A����h{��1����h|��!����h}������h~������h�������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!����h�������h�������h���������h��������h��������h�������h�������h�������h�������h�������h��q�����h��a�����h	��Q�����h
��A�����h��1�����h��!�����h
�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h��q�����h��a�����h��Q�����h��A�����h��1�����h��!�����h�������h�������h��������h ��������h!��������h"�������h#�������h$�������h%�������h&�������h'��q�����h(��a�����h)��Q�����h*��A�����h+��1�����h,��!�����h-�������h.�������h/��������h0��������h1��������h2�������h3�������h4�������h5�������h6�������h7��q�����h8��a�����h9��Q�����h:��A�����h;��1�����h<��!�����h=�������h>�������h?��������h@��������hA��������hB�������hC�������hD�������hE�������hF�������hG��q�����hH��a�����hI��Q�����hJ��A�����hK��1�����hL��!�����hM�������hN�������hO��������hP��������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q�����hX��a�����hY��Q�����hZ��A�����h[��1�����h\��!�����h]�������h^�������h_��������h`��������ha��������hb�������hc�������hd�������he�������hf�������hg��q�����hh��a�����hi��Q�����hj��A�����hk��1�����hl��!�����hm�������hn�������ho��������hp��������hq��������hr�������hs�������ht�������hu�������hv�������hw��q�����hx��a�����hy��Q�����hz��A�����h{��1�����h|��!�����h}�������h~�������h��������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h��������h��������h�������h�������h�������h�������h�������h��q�����h��a�����h	��Q�����h
��A�����h��1�����h��!�����h
�������h�������h��������h��������h��������h�������h�������h�������h�������h�������h��q�����h��a�����h��Q�����h��A�����h��1�����h��!�����h�������h�������h��������h ��������h!��������h"�������h#�������h$�������h%�������h&�������h'��q�����h(��a�����h)��Q�����h*��A�����h+��1�����h,��!�����h-�������h.�������h/��������h0��������h1��������h2�������h3�������h4�������h5�������h6�������h7��q�����h8��a�����h9��Q�����h:��A�����h;��1�����h<��!�����h=�������h>�������h?��������h@��������hA��������hB�������hC�������hD�������hE�������hF�������hG��q�����hH��a�����hI��Q�����hJ��A�����hK��1�����hL��!�����hM�������hN�������hO��������hP��������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q�����hX��a�����hY��Q�����hZ��A�����h[��1�����h\��!�����h]�������h^�������h_��������h`��������ha��������hb�������hc�������hd�������he�������hf�������hg��q�����hh��a�����hi��Q�����hj��A�����hk��1�����hl��!�����hm�������hn�������ho��������hp��������hq��������hr�������hs�������ht�������hu�������hv�������hw��q�����hx��a�����hy��Q�����hz��A�����h{��1�����h|��!�����h}�������h~�������h��������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q�����h���a�����h���Q�����h���A�����h���1�����h���!�����h��������h��������h���������h���������h���������h��������h��������h��������h��������h��������h���q������%Mj$D���%Ej$D���%=j$D���%5j$D���%-j$D���%%j$D���%j$D���%j$D���%
j$D���%j$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%�i$D���%}i$D���%ui$D���%mi$D���%ei$D���%]i$D���%Ui$D���%Mi$D���%Ei$D���%=i$D���%5i$D���%-i$D���%%i$D���%i$D���%i$D���%
i$D���%i$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%�h$D���%}h$D���%uh$D���%mh$D���%eh$D���%]h$D���%Uh$D���%Mh$D���%Eh$D���%=h$D���%5h$D���%-h$D���%%h$D���%h$D���%h$D���%
h$D���%h$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%�g$D���%}g$D���%ug$D���%mg$D���%eg$D���%]g$D���%Ug$D���%Mg$D���%Eg$D���%=g$D���%5g$D���%-g$D���%%g$D���%g$D���%g$D���%
g$D���%g$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%�f$D���%}f$D���%uf$D���%mf$D���%ef$D���%]f$D���%Uf$D���%Mf$D���%Ef$D���%=f$D���%5f$D���%-f$D���%%f$D���%f$D���%f$D���%
f$D���%f$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%�e$D���%}e$D���%ue$D���%me$D���%ee$D���%]e$D���%Ue$D���%Me$D���%Ee$D���%=e$D���%5e$D���%-e$D���%%e$D���%e$D���%e$D���%
e$D���%e$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%�d$D���%}d$D���%ud$D���%md$D���%ed$D���%]d$D���%Ud$D���%Md$D���%Ed$D���%=d$D���%5d$D���%-d$D���%%d$D���%d$D���%d$D���%
d$D���%d$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%�c$D���%}c$D���%uc$D���%mc$D���%ec$D���%]c$D���%Uc$D���%Mc$D���%Ec$D���%=c$D���%5c$D���%-c$D���%%c$D���%c$D���%c$D���%
c$D���%c$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%�b$D���%}b$D���%ub$D���%mb$D���%eb$D���%]b$D���%Ub$D���%Mb$D���%Eb$D���%=b$D���%5b$D���%-b$D���%%b$D���%b$D���%b$D���%
b$D���%b$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%�a$D���%}a$D���%ua$D���%ma$D���%ea$D���%]a$D���%Ua$D���%Ma$D���%Ea$D���%=a$D���%5a$D���%-a$D���%%a$D���%a$D���%a$D���%
a$D���%a$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%�`$D���%}`$D���%u`$D���%m`$D���%e`$D���%]`$D���%U`$D���%M`$D���%E`$D���%=`$D���%5`$D���%-`$D���%%`$D���%`$D���%`$D���%
`$D���%`$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%�_$D���%}_$D���%u_$D���%m_$D���%e_$D���%]_$D���%U_$D���%M_$D���%E_$D���%=_$D���%5_$D���%-_$D���%%_$D���%_$D���%_$D���%
_$D���%_$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%�^$D���%}^$D���%u^$D���%m^$D���%e^$D���%]^$D���%U^$D���%M^$D���%E^$D���%=^$D���%5^$D���%-^$D���%%^$D���%^$D���%^$D���%
^$D���%^$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%�]$D���%}]$D���%u]$D���%m]$D���%e]$D���%]]$D���%U]$D���%M]$D���%E]$D���%=]$D���%5]$D���%-]$D���%%]$D���%]$D���%]$D���%
]$D���%]$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%�\$D���%}\$D���%u\$D���%m\$D���%e\$D���%]\$D���%U\$D���%M\$D���%E\$D���%=\$D���%5\$D���%-\$D���%%\$D���%\$D���%\$D���%
\$D���%\$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%�[$D���%}[$D���%u[$D���%m[$D���%e[$D���%][$D���%U[$D���%M[$D���%E[$D���%=[$D���%5[$D���%-[$D���%%[$D���%[$D���%[$D���%
[$D���%[$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%�Z$D���%}Z$D���%uZ$D���%mZ$D���%eZ$D���%]Z$D���%UZ$D���%MZ$D���%EZ$D���%=Z$D���%5Z$D���%-Z$D���%%Z$D���%Z$D���%Z$D���%
Z$D���%Z$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%�Y$D���%}Y$D���%uY$D���%mY$D���%eY$D���%]Y$D���%UY$D���%MY$D���%EY$D���%=Y$D���%5Y$D���%-Y$D���%%Y$D���%Y$D���%Y$D���%
Y$D���%Y$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%�X$D���%}X$D���%uX$D���%mX$D���%eX$D���%]X$D���%UX$D���%MX$D���%EX$D���%=X$D���%5X$D���%-X$D���%%X$D���%X$D���%X$D���%
X$D���%X$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%�W$D���%}W$D���%uW$D���%mW$D���%eW$D���%]W$D���%UW$D���%MW$D���%EW$D���%=W$D���%5W$D���%-W$D���%%W$D���%W$D���%W$D���%
W$D���%W$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%�V$D���%}V$D���%uV$D���%mV$D���%eV$D���%]V$D���%UV$D���%MV$D���%EV$D���%=V$D���%5V$D���%-V$D���%%V$D���%V$D���%V$D���%
V$D���%V$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%�U$D���%}U$D���%uU$D���%mU$D���%eU$D���%]U$D���%UU$D���%MU$D���%EU$D���%=U$D���%5U$D���%-U$D���%%U$D���%U$D���%U$D���%
U$D���%U$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%�T$D���%}T$D���%uT$D���%mT$D���%eT$D���%]T$D���%UT$D���%MT$D���%ET$D���%=T$D���%5T$D���%-T$D���%%T$D���%T$D���%T$D���%
T$D���%T$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%�S$D���%}S$D���%uS$D���%mS$D���%eS$D���%]S$D���%US$D���%MS$D���%ES$D���%=S$D���%5S$D���%-S$D���%%S$D���%S$D���%S$D���%
S$D���%S$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%�R$D���%}R$D���%uR$D���%mR$D���%eR$D���%]R$D���%UR$D���%MR$D���%ER$D���%=R$D���%5R$D���%-R$D���%%R$D���%R$D���%R$D���%
R$D���%R$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%�Q$D���%}Q$D���%uQ$D���%mQ$D���%eQ$D���%]Q$D���%UQ$D���%MQ$D���%EQ$D���%=Q$D���%5Q$D���%-Q$D���%%Q$D���%Q$D���%Q$D���%
Q$D���%Q$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%�P$D���%}P$D���%uP$D���%mP$D���%eP$D���%]P$D���%UP$D���%MP$D���%EP$D���%=P$D���%5P$D���%-P$D���%%P$D���%P$D���%P$D���%
P$D���%P$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%�O$D���%}O$D���%uO$D���%mO$D���%eO$D���%]O$D���%UO$D���%MO$D���%EO$D���%=O$D���%5O$D���%-O$D���%%O$D���%O$D���%O$D���%
O$D���%O$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%�N$D���%}N$D���%uN$D���%mN$D���%eN$D���%]N$D���%UN$D���%MN$D���%EN$D���%=N$D���%5N$D���%-N$D���%%N$D���%N$D���%N$D���%
N$D���%N$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%�M$D���%}M$D���%uM$D���%mM$D���%eM$D���%]M$D���%UM$D���%MM$D���%EM$D���%=M$D���%5M$D���%-M$D���%%M$D���%M$D���%M$D���%
M$D���%M$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$D���%�L$DH��H�=8
1�����`H�|$uL�t$H�T$H��H�=�1�����8H�=�"1��t�����H�=h"1����^��H�l$ �w�1�H�=�"�F��H��t-D��H�l$ H�D$(A�����H�=�!1����H�l$ �7�H�D$ H�D$(���H�=2"1������+�H�=�!1�������H�l$���1�H�=B"����H��t-D��H�l$H�D$A���-�H�=T!1����H�l$��H�D$H�D$��H�=�!1��r����H�=f!1����\��H�l$��1�H�=�!�D��H��t-D��H�l$H�D$A����H�=� 1����H�l$�u�H�D$H�D$���H�$H�=,!1�D�D$����H�4$D�D$���H�$H�=G!1�D�D$����D�D$H�4$D��A����1�H�=V �$���H�D$0�$�\�1�H�=� �$���}��H�D$0�$�;�H�= 1��b��L�l$ ��H�=� 1��t$�F���t$�	�H�=� 1��t$�+���t$�����H�= 1����
��L�l$ �1�H�=�������H�|$tSH�|$���H�|$I��u+H�= 1������]41�H�=i���H�D$�4H�= 1�����54H�D$�E41�H�=����|��H�|$tSH�|$���H�|$I��u+H�=�1��Q���51�H�=��>��H�D$�c5H�=�1��&���5H�D$�5H�=�1��	��H�l$�?H�=�1�������H�l$�o?H�=1��T$�����T$�?1�H�=8�T$���H��T$t��H�l$H�D$ ���?H�D$H�D$ �?H�=11��z��L�t$ �EH�=i1����_��L�t$ �DH�=�1��G���E1�H�=�H�T$�/��M��H�T$tL�t$ I�m���:B�9BH�D$ A���H�=�1�������L�l$(�.�H�=1������I�H�=@1�����S�M�����H�D$(I���4�H�=M1����L�l$(���f.�f�H�=QG$H�JG$H9�tH�v($H��t	�����H�=!G$H�5G$H)�H��H��H��?H�H�tH��($H��t��fD�����=�F$u+UH�=�$$H��tH�=n$����d�����F$]������w������H�]%$H���H��H��H��HE�H�
:%$H��ff.���H��1����f���H��dH�%(H�D$1�����H�$H��tH������H�$H�T$dH3%(uH���������S���H����1�H���V���H���>��H��H���s����H��u�H��[�@��H���S����H�H��H�Ѓ��f���H��H��H�=�#$��f.���H��dH�%(H�D$1�H�t$�D$�&����|$��uH�T$dH3%(u
H���������ff.�@��AUATUSH��H��t}H�����A�ą�xNHc��F��I��E��t+1�@��H������H���S��L��H���h�D9�u�H��L��[]A\A]�DH�q#$H�8��H��[]A\A]�0��H�Q#$A�H�8u�H��$$��H�=�H�����H��	�H�=v����H�;A�Z1�H�
iH�i�����Y���@H�i$$��H�= H����H���H�=,���H�;A�Z1�H�
H�����������AUATUSH��H��t}H���E��A�ą�xNHc�����I��E��t+1�@��H������H������L��H����D9�u�H��L��[]A\A]�DH�"$H�8��H��[]A\A]���H��!$A�H�8u�H�^#$��H�=H���H��	�H�=��H�;A�[1�H�
�H������Y���@H��"$��H�=�H��H�H���H�=��/�H�;A�[1�H�
�H������������AUATUSH��H��t}H������A�ą�xNHc��f��I��E��t+1�@��H������H�����L��H����D9�u�H��L��[]A\A]�DH�� $H�8��H��[]A\A]�P��H�q $A�H�8u�H��!$��H�=�H��=�H��	�H�=��$�H�;A�\1�H�
�H������Y���@H��!$��H�=@H����H���H�=L��H�;A�\1�H�
$H�$����������AUI��H�=`���ATI��UH��SH��dH�%(H�D$1�H�T$��H��M��tH�D$A�$��ulM��tH�{H� tH�{H��uAH�L$dH3%(H��uEH��[]A\A]��D$��t����A�����H��L������������ff.����UHc�SH��H��dH�%(H�D$1�H�T$��H�ߺ~H�5��H�����|$��uH�L$dH3%(H��uH��[]��8��c����H��������?H9�wN1�L�
�H��t?��A�ȃ�A��A�	E��G��LFD�FH��H9�u��f.��PH�
g��H�5R�H�=p����ff.�@��AWAVLc�AUATUH��SH��dH�%(H�D$1�H�����������JH��؃����9�� t<H�YI9��'H�qH��u?��H�|$dH3<%(�{H��[]A\A]A^A_ÐH����I9���H�qH��t�H��H�������f.���������tu��L�d$Mc�M�I��A��L��L��H�=����~��T$��uvH��tzH�H�ځ� t"H�XI9�|AH�pH���A���H�p�8���H�������1ɉ�D��H���������@D��H�=^�1������r���f�������������@H�9$H�8u�H��$��H�=s�H���H��"�H�=����H�;A��1�H�
W�H�W�����������q���������H��H�5�<$1�1�dH�%(H�D$1����H��H�$�|��H�$H�T$dH3%(uH����~��ff.���SH�5�<$H������uH��[�H��[������AVAUATUSH�� dH�%(H�D$1�H�$H�8uSL�l$L�d$H��H�\$L�5��L��L��H��H���Y���H��t)1�H���z�H��ID�D$�X��i�諷��H�D$dH3%(u
H�� []A\A]A^����f���ATUH��H��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$��$H�D$H�D$ �D$0H�D$H��t.H�����H�����H��u1H��tH��H�����H���s������H��uJ1�1�耷��H����H���c�I��H��t6H��� u@������u>M��tOL��H���������H���'�I��M��t6L������H����H�{��뾺H�5��H������L�%���D���f���ff.�@��AU�ATUH��SH���e��`���H����I��1��HH����H9�}NH��H��H���e�I��H�C$L��H�0�P��H��t3L�����L��H����H�E�� u�H�EH9�|�H��L��[]A\A]�H�5!$L������H�J$H�5{�H�81�����H�2$1�H�81����ff.���H��H��H�|$H��tH�|$����H�D$H� u
H���DH�x~�H��$�H�5�H�81�葱�����SH��H�����t�����t.H��[Ð1������u�H��$H�5��H�81��M���D�������u�H�[$H�5Q�H�81��"���f���S1�1�貽������H�=r�����H�'$H��H������H�=W����H�;H�55H������� H�=E��ȴ��H�;H�5+�H������1��O��H���g��H�;H�5�H�����H�;�!  H�5����H�;�H�5��}��H�;1�H��H�5����H�;�H�����H�5�����H�k$H�;H�5��H�����H�=2$H�����H�=3$H�����H�;1�H���H�5����H�;�H���H�5���|��H��$H�;1�H�5���d��H�=���H��H�	7$�L������B���������Ӹ������ɽ���T�读����������˴��膻��[�0��H�A$H�5��H�81��8���H��H�|$H�|$��H�|$H� uH��1����H��tH���f.�H�1��e��H��u�H�|$H� t2H���D��H��u�H��$H�T$H�5Y�H�81�蒮��f�H����f.����H�=���{���ff.���AT1�UH�-�6$SH��H�=���P���H�5�6$H�ߺI���Y�H�5�6$L��H���G�H�5�6$H�ߺ�3�H�5t6$H��H���!�H�5R6$H��1���H��[]A\����USH��H�5G6$dH�%(H�D$1��Z��H�����H�T$H�=FH��H���k��H��H��蠹���|$��uH�L$dH3%(H��uH��[]��i�����@��AT�UH��1�S��H�0H��� ��H��H�x��H�������P��������H�Hc�� tUH�SH9�~7D�`H��Ic����H�{H� tH�{�H��D�������~?Hc�H��轿��H��[]A\�DH������H�xHclj�H9�u!H�{�]���H��$H�5?�H�81��a����l���ff.����H��H�5�4$dH�%(H�D$1�����H��H�$��H�����Ǹ��t
�H���H������H�T$dH3%(uH����&��fD��H��H�5Y4$dH�%(H�D$1��l��H��H�$�@�H�����Ǹ��t
蘬��H���`��H�T$dH3%(uH������fD��UH��S��H��H�5�3$H��tH��$H���H�8H��[]����H�=�
���H��H�M3$��ff.���UH��S��H��H�5"3$H��tH�~$H���H�8H��[]����H�=y
�G��H��H��2$��ff.���UH��S��H��H�5�2$H��tH��$H���H�8H��[]�;���H�=
����H��H�}2$��ff.���UH��S��H��H�5R2$H��tH�.$H���H�8H��[]�����H�=�	���H��H�2$��ff.���UH��S��H��H�5�1$H��tH�$H���H�8H��[]�{���H�=Y	�'��H��H��1$��ff.���UH��S��H��H�5�1$H��tH�^$H���H�8H��[]����H�=�����H��H�E1$��ff.���UH��S��H��H�51$H��tH��
$H���H�8H��[]����H�=��g��H��H��0$��ff.���UH��S��H��H�5�0$H��tH�$H���H�8H��[]�[���H�=9���H��H�u0$��ff.���UH��S��H��H�5J0$H��tH��$H���H�8H��[]����H�=����H��H�
0$��ff.���UH��S��H��H�5�/$H��tH�n$H���H�8H��[]����H�=y�G��H��H��/$��ff.���UH��S��H��H�5z/$H��tH��
$H���H�8H��[]�;���H�=����H��H�=/$��ff.���UH��S��H��H�5/$H��tH�&
$H���H�8H��[]�����H�=����H��H��.$��ff.���UH��S��H��H�5�.$H��tH��$H���H�8H��[]�{���H�=Y�'��H��H�m.$��ff.���UH��S��H��H�5B.$H��tH��$H���H�8H��[]����H�=�����H��H�.$��ff.���UH��S��H��H�5�-$H��tH��
$H���H�8H��[]����H�=��g��H��H��-$��ff.���UH��S��H��H�5r-$H��tH��$H���H�8H��[]�[���H�=9���H��H�5-$��ff.���UH��S��H��H�5
-$H��tH�$H���H�8H��[]����H�=����H��H��,$��ff.���UH��S��H��H�5�,$H��tH�f$H���H�8H��[]����H�=y�G��H��H�e,$��ff.���UH��S��H��H�5:,$H��tH��
$H���H�8H��[]�;����H�=����H��H��+$��ff.���UH��S��H��H�5�+$H��tH��$H���H�8H��[]�����H�=����H��H��+$��ff.���UH��S��H��H�5j+$H��tH��	$H���H�8H��[]�{����H�=Y�'��H��H�-+$��ff.���UH��S��H��H�5+$H��tH��
$H���H�8H��[]�����H�=�����H��H��*$��ff.���UH��S��H��H�5�*$H��tH��
$H���H�8H��[]黿���H�=��g��H��H�]*$��ff.���USH��H��H�5D+$H�-
+$�`��H��E1�E1�1�1�H���{��H��H��[]Ð��Sf�H��H�Ā�WdH�%(H�D$x1�H��)$)D$)D$ H�D$0��t>����1�H�=]�����H�\$xdH3%(��H��[��H�pH�PH�HVH�PL�HL�@H�5��1�舼��^_���-���N�D$��D��Hc$��D$H�T�LH�pH�PH�HVH�PL�HL�@H�5��1��(���ZY�������
Hc$�D$H�TH�H�5�)$H�T$hH�DH�D$@HcD$H�DH�D$HHcD$H�DH�D$PHcD$H�DH�D$XHcD$H�DH�D$`H��tH�$H�L$@�H�8�%������H�=��_��H��H�)$��Hc$l�D$H�T�R���f��$����@�$�D$��$����ƿ��H��$H�SH�5h�H�81��j���H��$H�SH�5��H�81��N���ff.���USH��H��tC1��
t1�D���H��H��tFH���$��H��H�����H��H��[]��胰��H����H�W$H�5�H�81��֟��H��$1�H�81��ß����ATI��UH��SH����t��u_H������tV�����uLH�5($H�����H�5($L��H�����H�5�'$H��H�����H�5�'$H��1��~��H��[]A\�H�o$H�5��H�81��.���ff.���H��(H�|$H�T$H�t$H�L$���H�|$���H�|$�{��H�T$H� uMH�t$H��H� uMH��H�|$H� uH��萸����t4�H��(�f�H���f.�H�t$H�RH� t�H�v�H��$1�H�81��e���DH��H�5�&$���H��t$H�Ǩu�ε��H���f�����H���H�O$H�5y�H�81�����ff.�S@��ti@������������H����@����H�_�'�H�=	&$H�����H��u;H���#��H��H��uڸ����[�H�����u�H��t=H��u�H��$H���H�Ǩt	�T���[�f����[�f�H��$H��H��$H��H�$H��H��$H��H�i$H��q����AWAVI��AUA��ATA��UH��SH��8dH�%(H�D$(1���t�ҸDE�H�5H%$L���x��H���nH;_%$�aH;J%$��H;5%$�WH; %$���D$�L������L���D$�n���H�M�D$�� �]H����I��Ic�Ic�I9��vH�5�$$L������H9�$$�8E1�E��A��A���|$��h�T$D��D��D�T$軿��D�T$�T$�ƉD$D��D�T$蟿��1�H�H��H�D$�~���D�T$D�\$I��H�@I� tI�GL�t$ D�D$D��D�֋L$L��H�D$ 蟹���L$D��E1���L��苹��H�uH�E tH�uH�|$ H���KH�H�|$ E���I�GI� tI�GH)�H;|$�eH�T$(dH3%(L���AH��8[]A\A]A^A_�DL�}�����T$D��D��衾��1�H�H��H�D$耬��I��H�@I� tI�GL�t$ D�D$�L$��D��L��H�D$ 謸��H�uH�E tH�uH�|$ H����H�H�|$ E���!���L���s���H�|$ ����f��D$����D$����L���8���L���0���H�|$ ����fDH������H�|$ ���fDH����H�|$ �j���fD�D$@�Q�������L���֙��H�
����H�5-�H�=4�藪��H��$H�5�H�81�菙��H��$H�5��H�81��w������AWAVI��AUATUSH��(H�5�!$dH�%(H�D$1�L�l$����H�5�!$L��H��H����E1����D$����H�
���H���H�����1�1�H������I���aH����I9��}H�CJ�<�H�|$H��tH�_$H�0���H��uBH�|$舥��L��I��H�D$跪��H�t$L�����H��� u�L;{}!H�C �fDH��� uHH�CH��L9�uD�T$L��L���7���H�T$dH3%(u8H��([]A\A]A^A_��H�����H�@$H�5��H�81�����:���f.���AUATI��UH��S��H��hdH�%(H�D$X1�H�D$H�D$0H�D$H�D$8H�D$H�D$@H�D$ H�D$H荙��H�D$(�������^1�I�$�H�D$H�D$0H�x�$f�H��t
Lc�O��L���H��H9�tH�P9��H��t�H��H�H9�u�9���H���wH������A��������Hc�H��$H�D$A�H�TH�T$H�\$ H�5K$H������H�T$H�5?$H������H�5$L��H������H�5$H��H�����H�5�$1�H�����A����H�t$XdH34%(H���DH��h[]A\A]�fDH�T$H���AL�l$I����A��t'A���
I�������A�E������H�\$ H��uH��$H�\$ ��������uH�����t��������H��#H�5�H�81�評��f�H�|$(����z�����{�����~OH�t$(���DH�5�$�H���������H�\$ H���c���H��$H�\$ �R���H�|$(t
H�|$(�������腲���P���H�9�#H�5��H�81����H�!�#H�5��H�81����AWAVAUATUH��SH��H��H�L�'H�T$ H�t$hH�T$XD�D$H�|$`I��L$8L�L$0dH�%(H��$�1�H�L$\H�D$(H�D$hL�d$`�.���H�L$`����L�l$hI9���A�ƋD$\������P���0�@H��$HD�$H�D$D��T$L)�� I�ωD$�����D$���"A��t	M���VH�D$D�t$XK�l=H9u$H�;u
A���vL�L���c���H+H�\$I��H;I$Ic�H�Tu
A����H��#H�T$H�8�ٰ��H�L$H�T$L��H��H����H�L$hL�l$(J�9I�H�D$0H�(H��tL�H9���H�D$ L�(H��H��$�dH3%(�kH�ĸ[]A\A]A^A_�H��$H�D$�����H�q$H�D$�����D$XL;L)��D$LH�D$(L�H�D$p���A��!H�M$LD�H�D$L��M�����D$8E1��D$(H�D$xH�D$@H�D$pH�D$8�@H�|$H���k��M���L�L$@D�D$L��H�ߋL$(H�T$8H�D$x�K���H��H�D$xI�I)�A��!u�H�����u�H�5|$H��謿��H��$H9�u�K�,'@HcL$LH��L�d	H9T$��������H�-�#H�8����H��H�D$H��$�H�ڿL��$�H��$�H�D$HDŽ$�H��$�����H�5�$A��!�f1�H�����L�l$pH�L$h���D�K���Hct$8H��I��H�t6�6��H�D$ H�8H�@H��H�t?L�����H�@L���K�t?L�����H�|$hH�@H���H�t?L�������|$L��H�H�փ�����D$\H�5($�����tH�5$��u�@H�5$HD5$L���t���Hct$XL��H�t6�b���L��蚏��L�l$h�B���K�,'H��$�H���H���#H�8聭��H�t$H�L$L��H��H���I�H�5j$A��!������H��������fDE1�H��H�
�#L�D$H�DH���2���H�8H�D$H��$�L��$�HDŽ$�H��$����H��$��H��H�����A��L�D$����H�5�$K�TH��������fDA���.H�
[�D��Hc�H�>��f.��{���H���R���L���h���H�������[���H�����H��H��#H�DH�8�8���H������H�|$xH�t$xH��1��D$p�ԭ��I��H����H�=��#H�T$pH���t���L��I���9����|$p����DH�H�
$E1�H�H�Ic�H�TH9L$�����p���DH�|$xH�t$xH��1��D$p�|���I��H���cH�=1�#H�T$pH�����L��I��衽���|$p��t�����@H�|$xH�t$xH��1��D$p����I��H���H�=�#H�T$pH��蔸��L��I���I����|$p���%����H���L�?�+��!��Ic�M�H��E1�I��H�;A���y���fDH�����?����v1�H�=���5���H�
�$E1�I��H����H�|$xH�t$x1�H���\���H���6H��A����H�H�
�$E1��h���H�|$xH�t$xH��1��l���I��H����H�����A�Ņ���L��赘��D��荍��H���U���I������DH�|$xH�t$xH��1�蔭��I��H����H�PHc0I�}H�Ѓ���I��LE�L�D$���L��I������H�L�D$H�
�$���@L�L��赝��I��������H���0���I��H��t#L��H���]��L�����L���M���I���M���L���ݗ��H���#1�H�81�誋�����H���#H�5s�H�81�荋��H���#H�5?�H�81��u���H���#H��H�5L�H�81��Z���H���#H�5V�H�81��B���H�k�#H�5#�H�81��*���f.���AWH��AVAUATUSH��HH�t$dH�%(H�D$81�H�D$ �ȗ��H�|$H�D$���H���q���L�8H�D$(A�� ��I��H��A��H�D$L�<$貣��L�<$1�H��M��~NL�t$0L�l$ L�d$DL��M��E1�1�H�D$0L��L�����H��H���f���H�D$0I)�H�M���H�D$(H�D$0H�D$(H�$H��tL�D$ H9�uBI9�u=H�L$8dH3%(H��uIH��H[]A\A]A^A_�DH�PH�@H�T$H�$�;���H��#H�$H��H�5��H�81��É�����ff.���SH��H��@H�t$dH�%(H�D$81�H�D$ H�D$(�X���H�|$H�D$艛��H������H�H�D$�� utH��H��H�D$��H�T$(H�|$1�H��L�L$ A��E�H�D$H�D$0H�D$H��tH�T$ L�D$(H9�u1I9�u,H�L$8dH3%(�u2H��@[�f�H�PH�XH�T$�H���#H��H�5��H�81�趈�������SH��H��@H�t$dH�%(H�D$81�H�D$ H�D$(�X���H�|$H�D$艚��H������H�H�D$�� utH��H��H�D$��H�T$(H�|$E1�1�L�L$ H���H�H�T$H�T$0H�T$H��tH�T$ L�D$(H9�u4I9�u/H�L$8dH3%(u:H��@[�f.�H�PH�XH�T$�H���#H��H�5��H�81�趇�������AUATUH��SH��H��dH�%(H�D$1�觶��I�Ĩt`H��I��?H�W)QΠ�EH�H��H��H��
L)�Hi€QH)�Hc�H�H9����UH�D$dH3%(��H��[]A\A]�@H�5Y$H�$�H����I��L��L���%���H�Ǩt>�ٍ��H�5$�EH�$�H��tBL��L�����tH�H��p����;����f�H���x�����fD�H�=�����H��H��$��H�=~��߷��H��H��$�H���H���X���胥����Hc7H������SH��H�|$H��t#H�|$H���/���H��H���T���H��tH��[�H�b�#H�5S�H�81����H��#1�H�81��΅��ff.���AUATUSH��H��(dH�%(H�D$1���H�5$H�߉��9������7H�
���I��Hc�H�>��f.�L��H�T$H�t$�ޙ���T$H�t$1�1��<���I��H���PL�-��#�/H�5����ê��H��H����f�L���H���ӱ��H��H�L$dH3%(��H��([]A\A]ÐI����I��/�I��H�5'�M��U���I��E��H��H��u�H���#H�5��H�81��~���fDL��1�����L�-�#I���6����H�5�$H�����H�Ǩ���)�����Hc�L�d$H���;H�|$�;���薍��I��H���*H�t$H��� �YH��H����L���賞��I�D$Hc�L�-�#H���H	�I�\$���H�|$L�d$�ѕ��茑��I��H����H�t$H��� �H��H����L������L�-��#�G���I���d聽��I��H��tyL�-Z�#�$���DH�����H������I��H��tPH��� ��H��H�s����L��H�T$H�t$莗���T$H�t$1�1����I��H�������H�	�#1�H�81��͂��DL�����L�-)�#I�������;������m���@H�~Hclj�H9�usH�v���f�H�~Hclj�H9�uSH�v���f�H�{Hclj�H9�u3H�s����H�r�#H�5f�H�81��1����l���L��1�A������*���H���#H�5��H�81�����H�+�#H�5�H�81����H��#H�5��H�81��ҁ��f���ATUH��SH��@dH�%(H�D$81��������H���;���1�H��I���ި��Hc�H���H�T$H��1��#����T$H�D$0����H� ��H�@H�t$ L��H�D$(H�D$ 芨��L���R���H�D$ H+D$(H9���H�L$H�T$I��H�t$H�|$(�å������H+\$H�|$0H�����H��1�1�H�����H�L$8dH3%(u:H��@[]A\ÐH���f����H�51	$H���Q���H�|$0H�D$0貒����˟��L��裞���|$芨��L��蒞��H���#H�5��H�81��Z���H�
c���H�5��H�=���+���H�d�#H�5��H�81��#�����SH�5�$H��輭��H�M�#H��H�2�ڨ��H��u%H�5V$H��薭��H�����uH��[����DH��[�W�H���#H�5��H�81����ff.�@��AW�	H�=�AVAUL�-��#ATL�%�U1�SH�����H�������H�=��H��$�Ͱ��H������H�=��H��$議��H���ů���H�=��H��$荰��H��襯���H�=r�H��$�m���H��腯���H�=��H��$�M���H���e���H�=���i���H�=�H�3$�V���H�=q�H�$�C���H�=g�H��$�0���H�=_�H��$����H�=_�H��$�
���H�5Y�H��$H�u�#H�8�M���H�^�#H���#H�53�H��H�H�����H�C�#H�;�H�5�H�H�J�赖��H�;�H�6���H�5��蚖��H�;�H���H�5�������ʖ��H�;H�5��H��I���ŧ��H�;�E��M�eI��A�$<[t&H�T-L��蒧��L���:���L��H��H���<���H�;H��H��u�H� �#H�5��H��9���L�%��#H�=��I�$�җ��I�<$E1���H��蹫��H�=��譗��I�<$E1���H��蔫��H�=��舗��I�<$E1���H���o���H�=���c���I�<$E1��H�ƺ�J���I�<$H�v�H�5���Ï��I�<$H���H�5��謏��I�<$�H����H�5���0���I�<$1�H�#���H�5;�����I�$H�;H�5���$���H�-��#H�=��H�E轖��H�}A��H�ƺ衪��H�}H�5B��!���H�}H�5E�����H�}�����H���H�5:�蕟��H�}1�H����H�5���|���I�$H�;H�5#�艋��H���#L�5��#H��H�2I��
���H�=9�����I�>A��H�ƺ���I�>�����H�G�H�5������I�>1�H���H�5���I�>1�H�7��H�5���۞��H�UH�;H�5�����H�
��#H�;H����H�5w�H������胓��H�UH�;H�5d�谊��H�
)�#H�;H���H�5G�H�������K���H�UH�;H�54��x���H�
��#H�;H�w��H�5�H����������H�UH�;H�5��@���L�=��#H�;�����H����H�5��I��ے��H�UH�;H�5������H�
a�#H�;H�G��H�5��H������裒��H�UH�;H�5���Љ��H�
A�#H�;H����H�5��H�������k���H�UH�;H�5��蘉��H�
I�#H�;H���H�5c�H�������3���H�UH�;H�5V��`���H�
9�#H�;H���H�59�H���������H�UH�;H�5.��(���H�
��#H�;H����H�5�H���������H�UH�;H�5���H�
9�#H�;H�O��H�5��H������苑��H�UH�;H�5��踈��H�
��#H�;H����H�5��H�������S���H�UH�;H�5��耈��H�
q�#H�;H���H�5��H����������H�UH�;H�5��H���H�
Q�#H�;H����H�5b�H���������H�UH�;H�5S�����H�
��#H�;H����H�56�H������諐��H�UH�;H�5)��؇��H�
!�#H�;H�W��H�5�H�������s���H�UH�;H�5�蠇��H�
��#H�;H����H�5��H�������;���H�UH�;H�5���h���H�
��#H�;H�'��H�5��H����������H�UH�;H�5���0���L�-�#H�;�����H����H�5~�I�E�ʏ��H�UH�;H�5p����H�
8�#H�;H����H�5S�H������蒏��H�UH�;H�5@�迆��H�
��#H�;H�^��H�5#�H�������Z���I�H�;H�5�舆��H�
��#H�;H����H�5��H�������#���I�H�;H�5�	�Q���L�5��#H�;�����H�+��H�5�	I����I�$H�;H�5������H�-��#H�;�����H����H�5��H�E賎��I�}�H����H�5~��y��I�}1�H����H�5n�螙��I�}1�H�a��H�5X�腙��I�}1�H����H�5B��l���I�}H�,�H�5/�赈��I�}H��H�5#�螈��H�=Q�����I�?E1��H�ƺ���H�}1�H����H�5������H�}1�H����H�5�����c���H��H�I�#�|��H�u�H�=4�#�u��H���#�H�=�#H�0��t��H�=�#�H�=�#H�0��t��I�7�H�=�#��t��H���#�	H�=�#H�0�t��H��#�H�=��#H�0�t��I�u�
H�=��#�zt��H�[�#�H�=��#H�0�_t��H���#�H�=l�#H�0�Dt��H�M�#�!H�=Q�#H�0�)t��I�6�#H�=:�#�t��H���#�%H�="�#H�0�s��H���#�'H�=�#H�0��s��H�H�#�)H�=�#H�0��s��H���#�+H�=�#H�0�s��H���#�-H�=��#H�0�s��H���#�/H�=��#H�0�ss��H�<�#�1H�=��#H�0�Xs��H��#�3H�=e�#H�0�=s��H��#�5H�=J�#H�0�"s��H�k�#�7H�=/�#H�0�s��H� �#�9H�=�#H�0��r��H�
�#�=H�=��#H�0��r���H�=7�����H��#H��[]A\A]A^A_�f.���SH��H��dH�%(H�D$1�H�?H�<$@��u	H�����u^H���V���H�<$H�7�� twH�GHcЉ�H9�uvH��u��H����H�$H�H�L$dH3%(��H��[�fD�����u�H�5��#H��t21�1���H�$�z����H��H�����H���q���H�=������H�<$H��H�1�#�H���#H�5��H�81��_q��蚐��f.���U1ҾsSH��H��(dH�%(H�D$1�H�L$����H�D$H�T$H�xH�0輚��H��H���1s���|$��uH�t$dH34%(H��uH��([]��������D��H������������UH�5��#H��AWAVAUATSH��dH�%(H�E�1�者��H����H��I������X��I��=���Lc�H��H�E�I�EH��H%�H)�H���H��H9�tH��H��$�H9�u��u|L�|$L�u�I���L��L���ԗ��9���L��L�����L��H���Ƣ��H�DH�M�dH3%(uxH�e�[A\A]A^A_]�Lc�L�u�L��L���^x��I���f�H)�H�L��v���H���#H�5��H�81��jo��L���R���H���#H�5��H�81��Jo��腎��D��ATH�5c�#USH���)���H��tmH��H���i���H�B�#1�H����p��I������H��H��t.H���#H��H��H��Ӏ����~
I�\$ L��[]A\�H���ڔ��H�K�#1�H�81��n��H���#H�5�H�81��n��ff.�@PX1�H��H�	�#H�81��wn�����S1�H���#�p��H���e���H��t	H�C H��[����f�PXH�5m�H��H�4�#H�81��"n��f���UH�5D�#SH���
���H��tCH���=���H��H��tK��H��裄��H�ߺ:H�5+�H������H��H��[]�H���#H�5�H�81��m������D��H��H�5��#茂��H��tH�����H��H�H�D��.���ff.���H��H�5��#�L���H��t H��远���P��H�H����H�H�D����f���H��H�5A�#����H��tH��诣����H�H��H�Ѓ�����f���SH�5�#�ρ��H��t1H��H���o�����t1�[��H���؆���¸��u�1����T���@��UH�5��#SH���z���H��tTH��H���#H���#1�H�8�n��H��H���oq��H��H��t>H�E H���k���1�H�߅�@���+{��H��H��[]�H�"�#H�5I�H�81��	l��H���#H�5\�H�81���k�����H��H�5�#�܀��H��tH���?�����H�H��H�Ѓ���y���f���H��H�5ѿ#蜀��H��tH����z����H�H��H�Ѓ���9���f���UH��SH��H��H��H���#H�0�.���H��u	H��1�[]�H��H�5f�#�1���H��H��t4H�5R�#H������H��tH��H���z�����u�H���[]����H���#H�5�H�81���j��ff.�f�UH��AWAVAUI��ATSH��H��8dH�%(H�E�1�����I��H��?H�}�H�M�I�H��H��L1�H)��PH��H��H9�u�L���Ck��H��H���FM����H�u�dH34%(H���?H�e�[A\A]A^A_]�f�1�H���F���I��H=����H=���H�@H��H�E�H��H%�H)�H���H��H9�����t	H)�H�L�H�E�L�|$H�E�I���E1�H��A�L��L���r���L��L��D��A���aj��H�}�H���e���H��t_E�������H���Zx������DH��H��$��b���H�pH�E�H��H��H��H�E�H��蹔��I���c���H���#H�5k�H�81��h���4���H�u�#H�5X�H�81���~��ff.����AUATI��UH��S��H��(dH�%(H�D$1��j��H�D$���<���I�$H�D$����A�
H�|$@����@��u
H������bH���#H�0�#���H������oH�5`�#H���(}��H�D$H����H�|$H�5>�#�	}��H����H�|$H���m��H��up��f�M�l$���@L��A�����n��H�|$A��@���I���fDH�5ѻ#H���|��H�D$H���!H�|$H�����H�L$dH3%(H����H��([]A\A]�@�Cp������I�$H�D$H�T$��u0H�������A�H�|$A�
�	�����������9���M�l$���hH��u����������
������5���D�c~��A���W���H�5�#H���{��H�D$H���AA����~7A��
tyA���=H�|$����H�|$H���xw�������mfDE���
H�|$����H�t$H�T$H��� t[H�vHc�H9���H���;���H��������H�|$覟��H�|$H���Y����������H���#1�H�81���e��fDH����H���H�|$蒋��H�t$H�T$H��� u(H����H��Hc�H9�uwH���f��H�������H�v��H�|$t
H�|$�p��������߂��誄��H�k�#H�5��H�81��Re��H���#D��H�5÷H�81��7e��H���?e��ff.�@��H����ATL�%�#USI�4$H���ٍ��H��ut��t7I�<$1�H��#�f��1�H��H������H��tVH�E H��[]A\����u#H�����t������
u��f��[H��]A\�H��[H��]A\��0�����UH��H�5��#SH���Wy��H��tNH��H���7���H��t#H�5j�#H���2y��H��tAH��H��蒈����tH��1�[]�DH���[]�H��#H�5,�H�81���c��������UH��H��SH����t;�j����H�5�#H���x��H��t)��H�������H�H��H��[]����{�������B���f���ATI��H�5��#USH���fx��H��t?L��A��H��u%��z����H��膜����~H��[]A\�f.��j��������H�#�#H�5J�H�81��
c��f.���ATI��H�5 �#USH����w��H��t?L��A��H��u%�`z����H��覀����~H��[]A\�f.��i��������H���#H�5ʴH�81��b��f.���ATI��H�5��#USH���fw��H��t?L��A��H��u%��y����H���vg����~H��[]A\�f.��i��������H�#�#H�5J�H�81��
b��f.���UH��H��SH����t;��h����H�5
�#H����v��H��t.��H��H��������~H��H��[]�D�;y��������H���#H�5ʳH�81��a��f.���UH��H��SH����t;�Vh����H�5��#H���Uv��H��t.��H��H���Co����~H��H��[]�D�x��������H�#�#H�5J�H�81��
a��f.���AUATUH��H��SH����to��g����H�5	�#H����u��I��H��tuH������H��#1�H���pb��I��踕��H��H��t9��L��H���n����~ I�m H��L��[]A\A]�D�x�����H���w���H���#1�H�81��T`��H�U�#H�5|�H�81��<`��ff.����AUATUH��H��SH����to�g����H�59�#H���u��I��H��tuH���A���H��#1�H���a��I�����H��H��t9��L��H��������~ I�m H��L��[]A\A]�D�3w�����H��觅��H��#1�H�81��_��H���#H�5��H�81��l_��ff.����AVAUATI��UH��S��H��@dH�%(H�D$81�H��H�D$ H�D$H�D$(H�D$H�D$0�a��H�D$���F���~1�L�uL�4$��WH�D$H�D$H��teH�|$辑����u[H�|$E1�@�����Bv��L��A����uL�2v�����JfDH�UH�T$��t�H�UH�T$����H��u���t���ty1�E1�L��A��t��Fe����L��H�z�#1��`��I���K���I��H����D����H���P�����~oM�f L��H�L$8dH3%(��H��@[]A\A]A^�@H�|$E1�H�|$A��@�������d�����d�����f����~%H�D$���L��赃��H�&�#1�H�81��]��H�|$t
H�|$�p���������z���|��f.���AVAUATI��UH��S��H��@dH�%(H�D$81�H��H�D$ H�D$H�D$(H�D$H�D$0�_��H�D$���F���~1�L�uL�4$��WH�D$H�D$H��teH�|$辏����u[H�|$E1�@�����Bt��L��A����uL�2t�����JfDH�UH�T$��t�H�UH�T$����H��u���t���ty1�E1�L��A��t��Fc����L��H�z�#1��^��I���K���I��H����D����H���`v����~oM�f L��H�L$8dH3%(��H��@[]A\A]A^�@H�|$E1�H�|$A��@�������b�����d�����d����~%H�D$���L��赁��H�&�#1�H�81��[��H�|$t
H�|$�p���������x���z��f.���AUATI��UH��S��H��dH�%(H�D$1��%]��H�$�������1�����A��H����1�I��tL��A������a����H�5�#L����o��H����H���#1�H�����H��E1�H�������uh1�H�L$dH3%(��H��[]A\A]��L�m���f���H�m���^���H�<$tH���G����1����w��f���u?��@H�������$����c����x�H�$��fD�q��������H�}�#1�H�81���Y��H���#H�5�H�81���Y���y��ff.����AUATI��UH��S��H��dH�%(H�D$1��[��H�$�������u[1�H�5��#L���jn��H����H�B�#1ɉ�H��H���o����uG1�H�L$dH3%(��H��[]A\A]�fDL�m����L��A��tj�_����눐��ug��@��a����xfH�$u)H���]���A�H��1�踋�����F����DL�m��u.H��u����+p��������H��#1�H�81��X��H�<$tH���b����1�����u��H�e�#H�5��H�81��LX���w�����ATI��UH��S��H��dH�%(H�D$1��Z��H�$���������M�$$����L��A���/�jo��A��H�5�#H����l��H��H����A����\A��
��A����H����x��H��H����H����`��Hc�H9�����H���ƍ��H��H�L$dH3%(H����H��[]A\��+`�����DH�$ueH��tA�H���
������%���H�5:�#H���l��H��H���1H���Y��H��H���^���H�c�#1�H�81���V���M�$$����H��u�������]��A������H������D�`��DI�1�A��Ic��2h��H��H�pH� tH�pH���F~��A9�������v����E��uA1�H���~��1�Hc�I����g��H��H�pH� tH�pH���~��A9�������(���H���#D��H�5{�H�81���U��H�<$tH���Ј���1����Bs��H����U���u��H�ƾ#H�5�H�81��U��ff.�f���UH��SH��H����tk��uVH��H���H��tb�؃���tX��tS�����
t0��t+��u?H��1�1��
���H��H��H��H��[]�e��fDH����H����H�����u�H���#H��H�0��}��H�����u�H�f�#H�5��H�81���T��D��UH��H��#1�SH��H�;�#H�8�{V��H��H��t#H����Y��H��tH�C H��H��[]��蛉����H�
�#1�H�81��vT��fD��UH��SH��H�?�K�H��t"H�5~�#H��H���Ci��H��t#H�]H��[]�H���#H�5-�H�81��T�����fD��ATUH��SH��H�|$H�t$�w��H�5�#H��I����h��H��tKH��H��� ���1�H���#H���U��1�L��H��H��H���#H��V��H��t(H�E H��H��[]A\�H���#H�5��H�81��xS��H���#H�5�H�81��`S����AWAVI��AUA��ATI��USH��xdH�%(H�D$h1�H�D$H�\$(H�D$@H�l$0H�D$ H�D$HH�\$PH�l$X�T��H�D$8���gE����1�I��H�D$H�D$@H�x�@H��t
Lc�O��L���H��H9�tH�PA9��H��t�H��H�H9�u�A9��-H����H�|$@�����j��A��E1�H�|$ A��H�|$(��H���mu��E1�H�|$0I��tH���Wu��I��1�H�[�#L��L�D$��S��H���&���L�D$H��H����E1�L��D��D��H����w����tqH�] H��H�t$hdH34%(��H��x[]A\A]A^A_��X��A���E���E1�E1��q���DH�|$8膄��������{Z��E��~%H�t$8���H���w��H���#1�H�81��aQ��H�|$8t
H�|$8�?�����D���n���xp�����ATUSH��H��H�|$H�t$�2t��1�H�9�#H��I���R��H������H��t"L��H��H���3�����~H�] H��H��[]A\��:�H����v��H�C�#1�H�81��P��ff.�@��ATUSH��H��H�|$H�t$�s��1�H���#H��I���.R��H���v���H��t"L��H��H����u����~H�] H��H��[]A\���H���Bv��H���#1�H�81��P��ff.�@��USH��H��H�|$H�t$�s��H�5�#H��H����d��H��tH��H����P��H��H�[]H�D���ff.�@��USH��H��H�|$H�t$�r��H�5��#H��H���d��H��tH��H����s��H��H�[]H�D���ff.�@��AUATUSH��H��H�|$H�t$�Pr��H�5Y�#H��I���d��H��tvH��H���^���H�7�#1�H���P��I������H��H��t7H�γ#L��H��H��H���u����~I�\$ H��L��[]A\A]�H����t��H�7�#1�H�81��N��H���#H�5ˠH�81��N��ff.���AVAUATUSH��H��H�|$H�t$H�$�zq��H��I���oq��H�5x�#H��I���=c��H��t{H��H���}���H�V�#1�H����O��I���$���H��H��t<H��#L��L��H��H��L��p����~I�\$ H��L��[]A\A]A^�H����s��H�Q�#1�H�81��M��H���#H�5�H�81��M��D��AUATUSH��H��H�|$H�t$�p��H�5��#H��I���nb��H��tvH��H��讁��H���#1�H���
O��I���U���H��H��t7H��#L��H��H��H������~I�\$ H��L��[]A\A]�H���s��H���#1�H�81���L��H��#H�5�H�81���L��ff.���AUATUSH��H��H�|$H�t$��o��H�5٠#H��I���a��H��tvH��H���ހ��H���#1�H���=N��I��腁��H��H��t7H�N�#L��H��H��H��l����~I�\$ H��L��[]A\A]�H���Fr��H���#1�H�81��#L��H�$�#H�5K�H�81��L��ff.���AVAUATUSH��H��H�|$H�t$H�$�n��H��I����n��H�5��#H��I���`��H��t{H��H�����H�֟#1�H���\M��I��褀��H��H��t<H�m�#L��L��H��H��L��Q^����~I�\$ H��L��[]A\A]A^�H���`q��H�ѱ#1�H�81��=K��H�>�#H�5e�H�81��%K��D��AVAUATUSH��H��H�|$H�t$H�$�n��H��I���n��H�5�#H��I����_��H��t{H��H�����H���#1�H���|L��I������H��H��t<H���#L��L��H��H��L��^����~I�\$ H��L��[]A\A]A^�H���p��H��#1�H�81��]J��H�^�#H�5��H�81��EJ��D��AVAUATUSH��H��H�|$H�t$H�$�:m��H��I���/m��H�58�#H��I���^��H��t{H��H���=~��H��#1�H���K��I����~��H��H��t<H���#L��L��H��H��L���[����~I�\$ H��L��[]A\A]A^�H���o��H��#1�H�81��}I��H�~�#H�5��H�81��eI��D��AUATUSH��H��H�|$H�t$�`l��H�5i�#H��I���.^��H��txH��H���n}��H�G�#1�H����J��I���~��H��H��t9H�ޭ#1�L��H��H��L�������~I�\$ H��L��[]A\A]�H����n��H�E�#1�H�81��H��H���#H�5ٚH�81��H��f���AWAVAUATUSH��H��H�|$H�t$�k��H�5��#H��I���Z]��H����H��I���|��H�o�#1�H��H����I��H��H�X�#1�I����I��I���&}��H��H��ti�}��H��H����H�ެ#L��L��H��H��L�������t)I�^ L��L���I�o 1��Ti��H��[]A\A]A^A_�H���m��H���m��H�&�#1�H�81��G��H���#H�5��H�81��zG��H����D��AUATUSH��H��H�|$H�t$�pj��H�5y�#H��I���>\��H��tvH��H���~{��H�W�#1�H����H��I���%|��H��H��t7H��#L��H��H��H��i����~I�\$ H��L��[]A\A]�H����l��H�W�#1�H�81���F��H�į#H�5�H�81��F��ff.���AUATUSH��H��H�|$H�t$�i��H�5��#H��I���n[��H��tlH��H���z��H���#1�H���
H��I���U{��H��H��t-L��H��H���L����~I�\$ H��L��[]A\A]�H��� l��H���#1�H�81��E��H���#H�5%�H�81���E��D��AUATUSH��H��H�|$H�t$��h��H�5�#H��I���Z��H��tlH��H����y��H�Ǚ#1�H���MG��I���z��H��H��t-L��H��H���?W����~I�\$ H��L��[]A\A]�H���`k��H�ѫ#1�H�81��=E��H�>�#H�5e�H�81��%E��D��USH��H����H�t$uaH�����tXH��ƒ���tK��uFH;\$t1H�5�#H����Y��H��H��tCH�|$��g��H��H����I��H��tH��H��[]�@H���J��H�!�#1�H�81��D��H���#H�5��H�81��uD��D��S��x��H�G�#H�H����H�|�#H�m�#H�5�H�;H��3T��H���#H�;H�5!�H�H��#H��T��H���#H�5���H��H��gQ��H�;�����H���H�5a��g��H�;�H�����H�5���g��H�;�H�����H�5[��g��H�;1�H�:��H�5y��ng��H�;1�H����H�5k��Vg��H�;1�H�J��H�5\��>g��H�;1�H����H�5G��&g��H�;�H�W���H�5/��g��H�;�H�|���H�5���f��H�;�H�����H�5���f��H�;1�H����H�5��f��H�;�H�>���H�5��f��H�;�H�S���H�5ȍ�f��H�;�H�X���H�5���lf��H�;�H�]���H�5���Qf��H�;�H�b���H�5n��6f��H�;�H�w���H�5[��f��H�;�H���H�5H��f��H�;�H���H�50���e��H�;�H���H�5���e��H�;�H�+�H�5��e��H�;H���H�5��T��H�;�H���H�5ٔ�~e��H�;�H���H�5Ô�ce��H�;1�H����H�5e��Ke��H�;�H����H�5���0e��H�;H���H�5��zT��H�;1�H���H�5k��e��H�;1�H�f��H�5Y���d��H�;1�H���H�5F���d��H�;1�H���H�53��d��H�;�����H�k�H�5)��D��H�;�����H�P�H�5��dD��H�;�H���H�5���ID��H�;�H�J�H�5ݓ�.D��H�;�����H���H�5ԓ�D��H�;�����H���H�5ȓ�d��H�;�����H���H�5���c��H�;�H����H�5����c��H�;�H����H�5����c��H�;�H����H�5���c��H�;�H�=��H�5u��c��H�;�H�r��H�5e��vc��H�;�H����H�5M��[c��H�;�H�l��H�55��@c��H�;�H����H�5"��%c��H�;�����H���H�5��
c��H�;1�H����H�5����b��H�;H��H�5��<R��H�;1�H� ��H�5ڒ��b��H�;�H�5�H�5s��b��H�;[�H���H�5a��b��H���#H�5Z�H�81��>��D���wl�����ATUSH��H��H�|$H�t$��w��H�5�#H��I���PS��H��uK�fo��H��H����H�C L���h��H��tTE1�1�1�A�����H��H���AO����u$H��H��[]A\�H��#H�5�H�81���=��H��#1�H�81���=��H�֦#H�T$H�5“H�81��=��H���#1�H�81��=��D��H�%�#1��N?��ff.���SH��H��H�|$H�t$�O��H�5�#H���VR��H����H��H���a��H����u��� ucH���+G����L�D$Hc�I��� t1I9@uSM�@1�1�1�A�����H���+N����uNH�D$H��[�H����H9�uI����fDH���j���…�t��H�a�#H�5�H�81��<��H���#1�H�81��<��H���#H�5ːH�81��}<��ff.�f���USH��H��H�|$H�t$�tN��H�5ݐ#H���EQ��H����H��H���Y��H�L$H�1�� tQHc�H9Qu]H�IE1�1�1�A�����H���/M����uYH�5��#H�ߺ�o��H�D$H��[]�f.�H��HcЃ�H9�uH��막�H�Z�#H�5�H�81��;��H���#1�H�81��;��H���#H�5ďH�81��v;��fD��ATUH��SH��H�|$H�t$�rM��H�D$H��� umH��L�`��Hc�H9���H��H�5��#�P��H��H��tyH����^��H���s��� tJL��ھH���r����tH�D$H��[]A\�@L�`H�X�H��#H�5E�H�81��:��H�ϡ#H�5АH�81��:��H���#H�5ԎH�81��:��H���:��ff.���SH�H���/Q��H��H���dk��1�[���UH�5Ԏ#SH��dH�%(H�D$1��*O��H����H��H���i��1�Hc��K��H��H�pH� uTH�T$H���o@������H�Hct$�� t:H�CH9�:H����L��H��H�L$dH3%(u>H��[]��H�p�f�H�����H�
Б��H�5 �H�='��hJ���X��H�t�#H�5��H�81��[9��H�t�#1�H�81��H9�����AWAVAUATI��UH��S��H��8dH�%(H�D$(1��;��H�D$ ���@���m1�I�$H�D$���4H�D$H����H�5��#H���sf��H������2H�|$��J��H�D$H��� �|H��L�`��H���H�5�#H���yM��I��H���H���Ug��Hc�H�H���H�|$�JH��1���I��H�D$L�pH� tL�pH�D$ E1�H�D$�!HcD$ Hc�H��@I�I�H�����@K�4>L��L��H��@�H�T$HN�M��HD�A���Z����u�H�ܞ#1�H�81��7��I�D$H�D$������H�|$ t
H�|$ �{j��������T��f.�H�|$H��� uSH����L9���L���[J��H�D$H�L$(dH3%(��H��8[]A\A]A^A_�L�`H�X���H�G�f.�H�|$�I��H�|$H���9��H�D$����H�D$ H���i����fD�?��������H�T$ ���H�
��H�52�H�=x��zG����U��H���#H�5=�H�81��m6��H��#H�51�H�81��U6��H�V�#H�5��H�81��=6��H���#H��H�5��H�81��"6��f���AWAVI��AUI��ATA��USH���dH�%(H��$�1�H�D$8H�\$(H�D$`H�l$0H�D$@H�\$PH�l$XH�D$h�7��H�D$H���aE����1�I�E�H�D$(H�D$PH�x�!DH��tLc�O�D�L���H��H9�tH�PD9�|�H��t�H��H�H9�u�A9��2H����H��1��RG��H�|$0��H�|$8A�H���9H�|$@H�����]h��H�D$H�5��#L����I��I��H���H�L$(L�A�� ��H�yHc�A��H9���H�IH�l$pL��D�D$H�L$�jX��UE��H��H��L��$�ATD�D$,H�L$ H�t$��B��X1�ZA�����1�I��L��L���E�����`�@L���5���H���5��H�5�#�L���Qg���H��$�dH3%(�^H���[]A\A]A^A_�I��H��A���.����@�����:��A��E�������H�^�#H�5W�H�81��I��DH���E��H�\$0H��� uSH����H����H���K�����T��H�D$�i����H�|$H�Ff��������;<��E��~3H�t$H���@H�{urH�[������J��A���M���H�|$Ht
H�|$H��e����D���_P��H��#1�H�81���2��H�ݛ#H�5�H�81���2����2��H�ؙ#H�59�H�81��2����Q��f���S�K��H�5����H��H���o?��H��[�f.���ATUSH����upH�����tgH��ƒ���tZ��uUH��H9�t;H�5Ɔ#H���.G��I��H��tFH�5��#H���G��H��tXH��L���U����u5H��[]A\�f.�H����7����b��I��H��t1H�C �H��#1�H�81��1��H���#H�5�H�81��1��H���#1�H�81��1��ff.�@PX1�H��H���#H�81��g1�����SH�5�#H���LF��H��t!E1�1�1�1�A�����H���`B����uH��[�H�'�#H�5\�H�81��1�����f�PXH�5;�H��H��#H�81���0��f���H��H�5a�#��E��H��tH���_��H��H�H�D����ff.���H��H�5!�#�E��H��t#H���OT��H���i���% HE�H����_���ff.�@��SH�5Ԅ#�?E��H��tJH��H���S��H����h��� uH���:��[��Hc�H�D�@H���0^���…�t�Hc�[H�D����ff.���H��H�5a�#��D��H��tH���M��H��H�H�D����ff.���H��H�5!�#�D��H��t#H���OS��H���GO�����p0��H��H���4F���_���ff.�@��AWAVAUATUH��SH��(H�t$H�|$dH�%(H�D$1��<A��H�D$H��� ��H��L�`��H�5��#H����C��I��H����H���R��H���ug��� ��L�|$A�@�DHc�H��@I�H��~FH��@L��L��L��HN�L��1�A���eQ����u�H���#H�5k�H�81��i.��f�H�T$dH3%(H�D$uPH��([]A\A]A^A_�@L�`H�X�+���H�D�#H�5�H�81��.��H��#H�5I�H�81��-���6M��fD��ATI��H��USH���t:��4����H�5\�#L����B��H��t-��H���`����uH��[]A\���+E����������H���#H�5ȁH�81��z-��f.���ATI��H��USH���t:�E4����H�5܁#L���DB��H��t-��H���uX����uH��[]A\���D���������H��#H�5H�H�81��,��f.���ATI��UH��H����Stb��3����H��H�5Y�#��A��H��H��t}H���P��H���Le��� tN1ɉھ	H���4d����t!Hc�H���X��L��[]A\�D�D�����H���#H�5��H�81��W,��H�p�#H�5M�H�81��?,��H�@�#H�5u�H�81��',�����AUI��H��ATUH��SH����tt��2����H�5��#L����@��I��H����H���O��H���rd��� t\1ɉھL���Zc����t/Hc�H�5t�#L��H�T��^��H��H��[]A\A]Ð�C�����H���#H�5��H�81��o+��H���#H�51�H�81��W+��H�X�#H�5�H�81��?+��ff.�@AWAVAUI��ATA��UH��S��H��dH�%(H��$�1���,��H�D$(���������tI�EH�D$��tzI�EH�D$ ����H�|$(tsH�|$(�]����ueH�52#H���?��H����E1�1�1�1�E��H���;�����RH���#1�H�81��a*���H�D$H�D$ H�|$(t��H���^��H���?��H�=}�H��H��H��1��.��H�|$�3<��H�5�~#H���?��H��H���:H�|$ ��H�|$ �<��H�D$ H��� �����7H���o)L$0H�D$H��� �H��L�hA��A��D�D$L�|$0�9J��H��H�$�MM��jA�L��L��H��L�t$HAVD�D$H�t$��7��X1�ZE��1�M��L��H���o:��������H�5�#�H���R\��H��$�dH3%(H��uIH�Ę[]A\A]A^A_�f.���1��������H�|$(t
H�|$(�[���1����3F���G��H���#H�5�|H�81��(��H�xHc�A��H9�uBL�h���f�)D$0H��� u-H��H�p��H�������H�|$0��*Y������`(��H�PH�p��H�x~�H�@�u���fo��)D$0�l���@��1����D�������f���ATA��UH��SH��H��dH�%(H�D$1���)��H�$����E���R��H�5x�#H���XU��H��H����A�H�5|#H���<��H��H���H���BK��H���
`��� �8Ic�1��9��H��H�HH� u=D��H����^������H�T$dH3%(H����H��[]A\�DH�H�f�H�A��u}H���6���H�߃�tE��-��A���C�����/��E��xLH�$t0H�A��u=H��t�H���Y�����+>��A�����H������H���oY������H�<$tH���[Y���1�D����C��H�]�#H�5�zH�81��D&��H�]�#H�5�}H�81��,&���gE��H�@�#H�5A|H�81��&��ff.�@��H��H��#H�|$H�0��N��H��t'H�|$H�5cz#��:��H��t_H���I��H���@H�|$�>_��H�|$H� u0H���'P��H��u�H�3�#H�T$H�5o}H�81��u%��DH���H�k�#H�5�yH�81��R%��f���UH��1�H��y#SH��H�S�#H�8��&��H���CV��H��t+H�C E1�1�1�A�����H��H���26����uH��H��[]�H��#1�H�81���$��H���#1�H�81���$��ff.�f���H���#SH�5�zH�H�ӊ#H�8�4��H���#H���#H�5�yH��H�H��x4��H���#H�;H�5��H���1��H�;�H���H�5w�$H��H�;1�H���H�5vy��<��H�;�H���H�5�p��G��H�;1�H���H�5Ky��G��H�;�����H����H�5(��G��H�;�����H�����H�5��G��H�;�����H���H�5y�G��H�;�����H�Y�H�5"��mG��H�;1�H�1�H�5�x�UG��H�;1�H���H�5��=G��H�;�H���H�5���"G��H�;�H���H�5�x�G��H�;�H���H�5�x��F��H�;�����H�����H�5sx��F��H�;�H����H�5ax�F��H�;1�H�*�H�5Wx�F��H�;�H���H�5Kx�F��H�;1�H���H�5<x�kF��H�;�H���H�5)x�PF��H�;�H�q���H�5x�5F��H�;1�H���H�5x�F��H�;1�H�Q�H�5�w�F��H�;�H���H�5�w��E���H�=�w�yS���H�=�wH���#�aS��[H���#����USH��H��(H�-t�#dH�%(H�D$1�H�D$����H�u�zJ��H���H�5Z�#H����1�1�H���I��H�|$H�D$�Z��1�H���,*��H��H����H��H�T$H���C��H��u9�d#��H����I��H�T$H��~rH�[�#H�5�yH�81��
!��f.��+#��H��H�L$dH3%(��H��([]�D�H�=�t�GR��H��H���#�7����H��#H�5AyH�81�� ��H���"��H�Ʉ#1�H�81��} ��H��H�m�T��H�5�xH��H�Ј#H��H�81��S ���?��ff.���UH�5�xSH��H�X�#H�I�#H�;H��0��H�O�#H�;H�5��H�H�ӈ#H���/��H�-��#H�E�9��H��H���6��H�}H�5�xH����I��H��H�ߺW[H�5�x]��T��f.�����Q�����H�ut#1��>!��ff.���ATI��H�5Pt#U��H��SH�� dH�%(H�D$1��@4��H���6H���!��H�D$�����������H�D$H�|$��H����4��H���+��H�|$����Hc�1��0��H�D$H�pH� tH�p1�H���A:������H�L$dH3%(H�D$��H�� []A\��I�$H�D$���i���H�|$t
H�|$�LQ���1����;��fDH�|$�^0��H�|$Hc��A!��H�D$�[����H�|$�Q��������&��������H��#H�5�vH�81�����H��#H�5wH�81������=��ff.����ATUSH����uhH�����t_H��ƒ���tR��uMH��H9�t:H�5vr#H���~2��I��H��t6H�5_r#H���g2��H��t^H��L����+����t<H��[]A\�H���@#���KB��I��H�C H��u�H�`�#H�5qvH�81����H�H�#1�H�81����H��#H�5�uH�81�����ff.����UH�5�q#H��SH����1��H��t'H��H���2��1�H��H���)����u"H��H��[]�H���#H�5�uH�81����H���#H�5�uH�81��k��ff.���SH��H��H�|$H�t$�e.��H�5.q#H���61��H��tVH�t$H��� t$H�VH�vH���V����tH��H��[��H��H������H�$�#H�5buH�81�����H�܄#H�5�tH�81�����PXH�5�tH��H���#H�81����f���H��H�5�p#�0��H��t#H���_1��H����,�����p��H��H���42�����ff.�@��H��H�51p#�<0��H��tH���1��H���'(��H��H�H�D��V���fD��H��H�5�o#�/��H��tH����0��H���'��H��H�H�D�����fD��SH��H�|$@��u	H�����u#H�5�o#�/��H����H���v0��H��[Ë����u�H�|$�T��H��H���9��H��u�1�H����3��H��H���2�����P��H���X9��H��H�$�\&��H�$H��u�H�4�#H�T$H�58sH�81����H��#H�5sH�81����ff.���AUATI��U��SH��H��(dH�%(H�D$1����H�D$��������M�,$����H�D$H�|$��L����L��H�|$H��t
H�|$�+��H�5Vn#H���^.��H����1�H��H���%������H�t$H����H�L$dH3%(H����H��([]A\A]��I�D$H�D$���_���H�|$t
H�|$��K�������B6��f�H�|$�K���7�����!��������뼐H���H6��H���o����=��H�C H���9���H��|#H�5�qH�81��v��H��|#H�5�qH�81��^���7��f���UH��1�H�/m#SH��H�C#H�8����H���3=��H��tH�C 1�H��H���}$����t"H��H��[]�H�0|#H�5AqH�81�����H�|#H�5gqH�81�����ff.�@��S�H�=�sH��dH�%(H�D$1�����H�=5qH�$�I��H���H���?��H�=q��*��H�5PqH��H�}#H�8�G'��H�h~#H�I~#H�5�pH��H�H��$'��H�U{#H�;H�5����H��{$��H�;�����H����H�5uc��:��H�;�H�!���H�5�i�:��H�;1�H���H�5l�:��H��}#H�;�H�57x�:��H�;H�(xH�5[j��)��H�;�����H�
���H�5Cp�Q&��H�;1�H�U���H�52p�9:��H�;1�H�����H�5(p�!:��H�;1�H�����H�5ׅ�	:��H�D$dH3%(uH��[��N5��f.�@����fD����6�����AUH�5#k#ATUSH����*��H���+H����.��H��I���D��H��H���������L�-d�A�����H�=W��~��H��H��H�� �oF��H��L���dF��������U.��H�{H���	,��H��H���>F��H�{�+��H��H���*F���C��tBv ��u��H�= o�
������u3�H�=�n�����g���D�L�������P���fD�H�=�x����4���f�H��L��[]A\A]�H��}#H�5�nH�81��z��f.���AUI��H�5�i#ATI��US��H��H��(dH�%(H�D$1��;)��H���H�����H�D$��������1�I�EH�$��urH�D$H����1�H�|$t
H�|$�lM��H��H���aM��1�H��H��H���1L������H�L$dH3%(L����H��([]A\A]��I�EH�D$��~�H�|$t
H�|$�`F��������0���H�|$�>F���Y���f��+����~�H�T$����H�.|#H�5mH�81����H�fz#1�H�81�����=2��ff.�f���ATI��UH��S��H�� dH�%(H�D$1����H�D$�������
����H�EH�$����H�EH�D$����H�|$��1�H�<$tH���K��H��1�H�|$t
H�|$��K��H��H�5�g#L���='��H����1�H��H��H���=��H����H������H�L$dH3%(upH�� []A\�f.�H�$H�D$H�|$�\���H�|$�D���M���@���������H�|$t
H�|$�D���1����/����0��H��z#H�5~kH�81��v��H��x#1�H�81��c����ATI��UH��S��H�� dH�%(H�D$1��'��H�D$����������H�EH�$����H�EH�D$����H�|$��1�H�<$tH���fJ��H��1�H�|$t
H�|$�OJ��H��H�5f#L���%��H����1�H��H��H���t0��H����H���C���H�5�jH��H���<.��H��H�L$dH3%(ufH�� []A\�H�$H�D$H�|$�L���H�|$�C���=���@����������H�|$t
H�|$��B���1����c-���./��H��x#H�5�iH�81�����H�'w#1�H�81�������AVAUI��ATUS�(��I���t;��H��tFH��L�5�d#DL��1�L���C��H��H���h<��H�] H��L���y@��H���!��H��H��u�[L��]A\A]A^�ff.�f���UH��S��H��(dH�%(H�D$1����H�D$���#��������H�D$H�|$��H�|$��H�|$�`H��H�T$H�zH� tH�z�H�5�h�����us1���7�������H�L$dH3%(��H��([]��H�EH�D$���d���H�|$t
H�|$�4A���1����+��fD1�H��H�=�i��4�����H�|$�@��H�|$� ����U0����a��������������H�*u#H�5hH�81��
���,��ff.����USH��H��H�l$H�t$H���!G��H��H�ڿ�A���H��H��b#1��0��H�|$H��H� uWH���#��H��H��tXH�E �e1����uAH���)B����t?L�ft#H��1�1Ҿ�=%���x&��H��H��[]�fDH��f�H���H���H�Gt#1�H�81�����PXH�5�fH��H��u#H�81�����f���ATH�5b#UH��S�!��H��t<H��H����2��H��I���/��H��H����@��L��H��[H��]H�=�f1�A\�(*�������H��H�5�a#�L!��H��tH���2��H��H���#���N���ff.���H��H�5aa#�!��H��tH���o/��H��H����"������ff.���UH��H��SH����t;�����H�5
a#H��� ��H��t)��H���65��H���[]�f.��#���������f�PX1�H��H��r#H�81��g�����USH��H��H�|$H�t$��D��H���L*��H��t<H�����H�5x`#H�߉�� ��H��t@��H���O'��H��t,H���r��H��[]�H�Lr#H�T$H�5PeH�81���
���Y���H��s#H�5�dH�81��
�����USH��H��H�|$H�t$�4D��H���,5��H��t<H���_*��H�5�_#H�߉��~��H��t@��H���'��H��t,H���R+��H��[]�H��q#H�T$H�5�dH�81��>
�����H�:s#H�5)dH�81��!
�����H��H�5a_#���H��tH�������t"�H���H��r#H�5�cH�81���	���T���@��H��r#SH�5+eH�H��o#H�8���H��p#H�-q#H�5*dH��H�H����H��p#H�;H��F��H�;�����H�'���H�5d�
��H�;1�H�O�H�5�c�
��H�;1�H�w���H�5�c����H�;�H�l���H�5�c����H�;1�H���H�5�i��,��H�;1�H�����H�5�x�,��H�;1�H�����H�5�b�,��H�;�H�����H�5mc�,��H�;�H�>���H�5�d�r,��H�;�����H�#���H�5>c�W,��H�;�����H�x���H�54c�<,��H�;�H�m���H�5)c�!,��H�;�����H���H�5c�,��H�;1�H�:�H�5c��+��H�;1�H�B���H�5�b��+��H�;�H�5�b�2��H�;�H�5�b��1��H�;�	H�5�b��1��H�;�H�5�b��1��H�;��H�5�b�1��H�;�H�5�b�1��H�;���H�5�b�1��H�;[�H�5�b�u1��D��������AVAUATI��USH��pH�$H�|$H�T$dH�%(H�D$h1��*��H���"��H�$L�A�� ��H�D$I��H�iA��H�M��� ��H�xHc�A��H9���H�XL��L�d$ �
:��H��H��M��H�T$$M��H��H��RD���:��ZYH�����D$1��4� ���T$H��H�pH� tH�pL�����H��H�L$hdH3%(uWH��p[]A\A]A^�H�D$L�iH�iH��� �I���H��H�XA��A���L������H�gj#H�5bH�81������!%�����AVAUI��ATUSH�� H�$H�|$H�T$dH�%(H�D$1�����H������H�$L�A�� ��H�D$I��H�iA��H�M��� ��H�xHc�A��H9���H�XL���8��H��E1�H��H�T$M��H��H��RD���N9��ZY�t$H������H�\$dH3%(uBH�� []A\A]A^�H�D$L�aH�iH��� �y���H��H�XA��A���|��������	$��f�AUI��ATI��UH��SH���h��H��t2L��H��H���(����t8H��L��H���c��H��H��[]A\A]����H��h#H�5�_H�81��Y��H�����H��h#H�5�_H�81��9��f�PXH�5�_H��H�$m#H�81����f���UH�5�Y#SH��hdH�%(H�D$X1�����H��tcH�l$H�T$H��H�������D$1��4�r���T$H��H�pH� u&H������H��H�L$XdH3%(uH��h[]�@H�p���M����"�����UH�5Y#SH��dH�%(H�D$1��J��H��tc�@1�H���F��H��H�pH� u>H�T$H���Y����t$��@wKH�����H��H�L$dH3%(u+H��[]�fDH�p�H��k#H�5�^H�81������"��H�
�^��H�5^H�=�^���fD��SH��H��H�|$H�t$���H�5.X#H���v��H��t6H�t$H��� tH�VH�vH������H��H��[�H��H����������fD��SH�5�W#H�����H��tE1�1�1�1�H����1��H��[�����ff.����ATUSH����uhH�����t_H��ƒ���tR��uMH��H9�t:H�5fW#H�����I��H��tNH�5OW#H�����H��t:H��L����%����tH��[]A\�H���p��H��e#H�5	]H�81��X��H�Yj#H�5�\H�81��@����ATI��USH��H��H�|$H�t$�?��H�5�V#H�����H��t]L��H���`4��H�t$H��� t3H�~Hcω�H9�u2H�vH��E1�H���0��H��H��[]A\��H��H����������y���f���S1�H�BV#�M��H���E��H��t	H�C H��[�H��d#1�H�81��d��@��SH�|g#H�5A\H�vf#H�H�;�;��H��d#H�;H�5:\H�H��h#H����H�Ag#H�5j���H��H��o
��H�;�H����H�5�[���H�;�H�����H�5�[���H�;�H�z���H�53L�#��H�;�H�����H�5nR�s#��H�;1�H�W���H�5�T�[#��H�;�H����H�5�`�@#��H�;H��`H�5S���H�;1�H����H�58[�#��H�;1�H����H�5[�"��H�;H�[H�5Z�D��H�;[H��ZH�5�R�-��f.���AWAVAUI��ATUS��H��hdH�%(H�D$X1�H�=�#�cH�D$ ���H�D$(A�ą������#����H�=�\1����I�UH�l$ H�D$(H�T$H����fDH�\$0�1�H��I��H�5�#�j4��H�|$�@��H�T$H��� �H����Hc�A��H9��H�����H�8H��� ��H����Hc�A��H9���H�{����H�8I��� ��H����Hclj|$H9���H�D$@���H�H�D$(H���2H�|$H��0��H�t$(1�H�$���1��I��� ��H��H���H����-�����HL�$E1��H�ߺ������V!�����?L�MH�E tL�ME����H�߾�����"!�����qL�L$I� ��I��E���H�߾������ ������M�L$I�$ tM�L$D�D$��H�߾����� �����PI�uI�E tI�uH�T$(H���k�����FH�t$(L���F��H���^2��L��H�L$XdH3%(��H��h[]A\A]A^A_��H�x�����H�B�����H�x�0����M�I����������~?H�l$ ���H�D$(M�uL�t$��u*H���F���H�|$(�t.���7������H�D$(H��t
H�|$(�N.���������D�H�=�W�,���H�=XH�t�#�,���H�=EPH�d�#�,���H�=�oH�T�#�o,��H�P�#�8���H������L������V����H�|$(��T&��H���,��H�=�XH�1��+���H�H�l$ H�D$(H�T$�-���@Hc�I�l�@����5��H�������5���E������5��H�l$ H�������H�|$ D�{����L�t$ H��M���`5��E���)5���H��HD�H�D$(H�l$ E��uN1��������H�����H���0��H�=M�#H�57V1�����H���/��H�=0�#H�5/V1������D��A��H�l$ E����������Hc�I�|�������H����4���F���H��H�D$ ����H���/��H�=ʂ#H�5�U1��L������H��]#H�5jUH�81��?��H�=��#H�5nU1�����H���B/��H�={�#H�5�U1����H���%/��H�=^�#H�5�U1����H���/��H�=A�#H�5tU1�������AWAVAUI��ATUS��H��XdH�%(H�D$H1�H�=��#�;H�D$�m���H�D$A�ą�����������H�=�V1�����I�UH�l$H�D$H�T$H����fDH�\$ 1ɺH��I��H�5��#�J.��H�|$� 
��H���
��H�|$(H��@�������A��H�|$0@���������H�|$8�+��Hc�1�I���a	��I��H�@I� tI�FH��� ��H��H�S��H�|$H�7�� u^H��H����PM��E��U��%��ZY���PH�T$HdH3%(L���4H��X[]A\A]A^A_�fD������T���@L�GMc�D��M9���H���H�{Hc׉�H9���H�S�W���D�c��A����������~?H�l$����H�D$M�uL�t$��u*H���n���H�|$�|)���_������H�D$H��t
H�|$�V)����������D�H�=�R�'���
H�="SH�#�'���H�=MKH�#�'���H�=�jH��~#�w'��H��~#�`������f����H�|$��l!��H���$'��H�=
TH�1��C���H�H�l$H�D$H�T$�e���@Hc�I�l�@���k1��H������^1���E�����O1��H�l$H�������H�|$D�{��
��L�t$H��M����0��E����0���H��HD�H�D$H�l$E��u'1����L�������D��H�=m~#H�5�Q����D��A��H�l$E���-����,���Hc�I�|����z���H���\0�����H��H�D$�C������AWAVAUI��ATUS��H��XdH�%(H�D$H1�H�=�}#�H�D$�M���H�D$A�ą��y��������H�=�R1����I�UH�l$H�D$H�T$H���pfDH�\$ 1ɺH��I��H�5�|#�**��H�|$���H�����H�l$(I��@���&H�L�d$0A���I�L�l$8A����I�H�\$@����H�H��1��4��I��H�@I� tI�FI��� upL�D$H��I�W��I�0�� umH��I�x��SM��I��Pj�AU���H�� ���lH�T$HdH3%(L���hH��X[]A\A]A^A_��L�D$I�OI�WI�0�� t�I�pI�x�fD�����~?H�l$���5H�D$M�uL�t$��u*H�������H�|$�%��������H�D$H��t
H�|$�^%����������D�H�=�N��#���H�=S=H�D{#�#���H�=@�H�4{#�#���H�=�bH�${#�#���H�=%GH�{#�g#��H�{#�p���H�����H���:����L���'��I������L���'��I�����H���'��H�������������H�|$����H����"��H�=�OH�1����H�H�l$H�D$H�T$�-���@Hc�I�l�@����-��H�������-���E�����x-��H�l$H���I���H�|$D�{����L�t$H��M���"-��E����,���H��HD�H�D$H�l$E��u1��<���H�="z#H�5�M��������D��A��H�l$E����������Hc�I�|����J���H����,���5�H��H�D$�K������H��H�qV#H�5UMH�8�B���H�SW#H�5CMH��H��y#H����H�=�y#�����H�?���H�5 MH�ay#���H�=]y#�����H�9���H�5�L���H�=>y#H�������H���H�5�L�j��f.���������SH��H��H�|$H�t$���H�5~E#H���f��H��tfH�t$H��� t4H�~Hcω�H9�u3H�vH�H�x������t$H�D$H��[��H��H��������H�wV#1�H�81���H��W#H�5�MH�81������UH�5�D#SH��dH�%(H�D$1����H����1�H��H���4&��Hc�H����1��A��H��H�@H� uQH��H��H�$�&����~[H�H�4$�� tBH�CH�SH)�H9�jH���Z��H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�V#1�H�81���H�W#H�5�LH�81����H�
QM�{H�5�LH�=�L����
��@��ATI��UH��S��H�� dH�%(H�D$1���H�D$����������tjI�$H�D$����H�|$��H�|$�r���H�D$H�0�� ��H��H�x����H��H����H�} �)���H�] �H�D$H�|$u'H�L$dH3%(H����H�� []A\��H�|$�����t��i���D������5���H�|$t
H�|$����1����
��H�xHc׉�H9�uvH�x�I�H��H���K�������H�D$H��� u;H��H��H�D$��H�t$1����H��H������H��S#1�H�81�� �H�PH�T$H�P���L�������SH�5B#����H����H�H�@Hc0��~H�x[�~���fDH��Q#H�8t1�1�[���H�qS#��H�=(3H��$��H���H�=HJ�$��H�;A��1�H�
JH�3�����H�ST#H�5�IH�81��:�f.���UH��H�51A#SH�����H��t`H��H���w
��H��H���,��H��H���!����t��uH���[]�@�3��H��1�[]�H�3R#H�5�IH�81���H��S#H�5:IH�81���f.�PX1�H��H��Q#H�81��w����ATUH��SH��H�����H��I�����H�5X@#H��H���=���H��tH��L��H���z����t H��[]A\�H�S#H�5�HH�81����q������ATUH��H�5�?#S���H��t-H��H���I��I��H�����L��H���#
����t H��[]A\�H��R#H�5?HH�81���H�Q#H�5�HH�81������H��H�5�?#�l���H��tH�����H��t$H��H����H�OR#H�5�GH�81��6�������UH�54?#SH������H��t5H����"��H���E�H��H��tMH��H�����H�߅�t#H��[]�`��H��Q#H�5hGH�81�������H�,P#1�H�81�������ff.���SH�5�>#���H��t+H�����H��H��t;H�����Hc�H9�u#H�߉�[���H�`Q#H�5�FH�81��G�H���O����f.���S1�H�2>#���H������H��t	H�C H��[��r���f���H�%N#SH�5�FH�8��H�O#H�gL#H�5�FH��H�H�����H�+O#H�;H�5GH�H�P#H����H��P#H�5a���H��H���H�;�����H�����H�5�3�K��H�;1�H����H�5W0�3��H�;1�H�����H�5dF���H�;H�UFH�5
;�e���H�;1�H���H�5=F��
��H�;1�H�����H�5�A��
��H�;�H���H�5F�
��H�;�H�[���H�5�U�
��H�;�H�����H�5_M�
��H�;1�H�����H�5�E�l
��H�;[�H���H�5�E�P
����UH�5�<#SH��dH�%(H�D$1��J���H����1�H��H���t�Hc�H����1�����H��H�@H� uQH��H��H�$�B��~[H�H�4$�� tBH�CH�SH)�H9�jH�����H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H��N#1�H�81���H��N#H�5EH�81��x�H�
1K��H�5EH�=D�I������@�������SH�5�;#H��dH�%(H�D$1�����H��tTI��H��1�1�1��5�����H���8�H��H��thH�4$H���d��H�߅�t8�X��H�T$dH3%(uH��[�H��M#H�55DH�81����������H��M#H�5CDH�81���H�yM#H�5#DH�81��p���SH�5�:#H��dH�%(H�D$1��K���H��tlH��I��1�1�1��e��H�$1��0�Hc�����H��H�$H�sHcH� u,H�x�3���H��H�L$dH3%(u.H��[�f.�H�s��H��L#H�5MCH�81�������ff.�f���SH�5:#H��dH�%(H�D$1����H��tl1�I��H��1�1��
��H�$1��0�Hc�����H��H�$H�sHcH� u,H�x�s���H��H�L$dH3%(u.H��[�f.�H�s��H�L#H�5�BH�81����=��ff.�f���AVAUATI��H�5L9#UH��S��H��H��PdH�%(H�D$H1����H���I��H�D$H�D$0H�D$H�D$8H�D$H�D$@�z�H�D$(���i����1�M�4$L�t$����H�D$H�D$H���"����L����H�|$ H�D$ �B�H�D$ H��� �H�PH�T$(H�P1�H�t$(�h��H����H��J#H�5�AH�81�����I�T$H�T$���i���I�T$H�T$����H����L������H�|$H�����H�|$I��1�H��uLL��H��H���
��H����H�E L�����H��H�L$HdH3%(��H��P[]A\A]A^�D����f�H�|$(������������~$H�D$(���DH��H��H�D$(������H�|$(t
H�|$(��������0���H��I#H�5�@H�81���H��I#H�5@H�81�������ff.���ATUSH����upH�����tgH��ƒ���tZ��uUI��H��H�5�6#�C���H��H��tCH�5�6#L���,���H��t/H���o���H��t:H�C H���~�H��[]A\�fDH����H��H#H�5k?H�81�����H��H#H�5�?H�81��������UH�5�6#SH��dH�%(H�D$1���H����1�H��H���t�Hc�H����1��!�H��H�@H� uQH��H��H�$�B���~[H�H�4$�� tBH�CH�SH)�H9�jH���:�H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H��G#1�H�81�����H��G#H�5JCH�81�����H�
aD��H�5R>H�=l=�����@��������USH��H��H��(H�t$dH�%(H�D$1��F�H�|$H�D$�w�H�5 5#H���H�H����H��H�D$H��� tGH�PH�T$H�P1�H�t$���H��t;H�C H���e��H��H�L$dH3%(u4H��([]�H��H��H�D$���H��F#H�5�=H�81�������H��F#H�5#BH�81�������ATUSH����uxH�����toH��ƒ���tb��u]I��H��H�584#�c�H��H��tKH�5$4#L���L�H��t7H�=�D#H����H��t;H�C H�����H��[]A\��H����H�F#H�5zAH�81����H��E#H�5�<H�81�������UH�54#SH��dH�%(H�D$1���H����1�H��H�����Hc�H����1��A�H��H�@H� uQH��H��H�$������~[H�H�4$�� tBH�CH�SH)�H9�jH���Z�H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�E#1�H�81����H�E#H�5<H�81�����H�
aA�}H�5r;H�=�:������@���W����ATUSH����uxH�����toH��ƒ���tb��u]I��H��H�5�2#�s�H��H��tKH�5�2#L���\�H��t7H�=�?#H���(�H��t;H�C H�����H��[]A\��H��� �H�!D#H�5%;H�81����H��C#H�5�:H�81�������ATI��U��SH��H�� dH�%(H�D$1����H�D$���6��������H�D$H�|$�H�|$��H�|$��H�5�1#H���l�H����H�t$H��� ��H��H����H��������H�L$dH3%(H����H�� []A\��I�$H�D$���a���H�|$t
H�|$�����1����N���fDH�51#H�����H��tV�����1�H�����q���H�~Hcω�H9�udH�v�R���f�H�|$�v������k��������p���H�oB#H�5s9H�81��V�����H�BB#1�H�81��>���I��f����������ATUSH����uxH�����toH��ƒ���tb��u]I��H��H�5�0#���H��H��tKH�5�0#L�����H��t7H�=(B#H����H��t;H�C H���G��H��[]A\��H�����H��A#H�5�8H�81��x��H�iA#H�5o8H�81��`����ATI��UH��S��H�� dH�%(H�D$1��'��H�D$�����������H�D$H�|$��H�|$tvH�5"/#H�����H��H����H�|$��H�|$H�D$���H�D$H��� ��H��H��H�D$��1�H�t$�8��H����H�E H���#�H�L$dH3%(H����H�� []A\�I�$H�D$���A���H�|$t
H�|$�,
���1�����fDH�|$�
������f���������볐H�PH�T$H�P�J���H��?#H�5�6H�81�����H��?#H�57H�81�������f���UH�54.#SH��dH�%(H�D$1���H����1�H��H������Hc�H����1���H��H�@H� uQH��H��H�$�����~[H�H�4$�� tBH�CH�SH)�H9�jH���*�H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H��>#1�H�81�����H��>#H�5�5H�81����H�
;��H�5B5H�=\4�����@���W����ATUSH����uxH�����toH��ƒ���tb��u]I��H��H�5�,#�C�H��H��tKH�5�,#L���,�H��t7H�=�9#H����H��t;H�C H�����H��[]A\��H������H��=#H�5�4H�81�����H��=#H�5�4H�81������ATI��UH��S��H�� dH�%(H�D$1����H�D$�����������H�D$H�|$��H�|$tvH�5�+#H���J�H��H����H�|$��H�|$H�D$�E�H�D$H��� ��H��H��H�D$��1�H�t$���H����H�E H����H�L$dH3%(H����H�� []A\�I�$H�D$���A���H�|$t
H�|$����1�����fDH�|$�n������f��[�������볐H�PH�T$H�P�J���H�O<#H�5S3H�81��6��H�'<#H�5�3H�81�����Y�f���UH�5�*#SH��dH�%(H�D$1����H����1�H��H���D��Hc�H����1��q�H��H�@H� uQH��H��H�$�����~[H�H�4$�� tBH�CH�SH)�H9�jH����H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�4;#1�H�81��0��H�1;#H�5R2H�81����H�
Q7��H�5�1H�=�0����4�@��AWH�5�)#AVAUATUSH�����H����H��I������A��~���L�=�7#1�H�D$@��L������I�?1�H��'#H���B��H��I����H����H��t=I�F H�|$L�����f��A9�u�H�D$H��[]A\A]A^A_�DH�D$��H�:#1�H�81����H�:#H�5<1H�81����f���ATI��H�5�(#USH�����H��t?H�5J'#L��H�����H��txH����I��H��tPH��H���_��H��t H��[]A\�H��9#H�5�0H�81����L������H�s9#H�5�0H�81��j��H�[9#H�5=0H�81��R��H�S9#H�5�/H�81��:��f.���ATI��U��SH��H�� dH�%(H�D$1����H�D$���6��������H�D$H�|$�H�|$��H�|$���H�5�'#H����H����H�t$H��� ��H��H����H����������H�L$dH3%(H����H�� []A\��I�$H�D$���a���H�|$t
H�|$����1�����fDH�5'#H���	�H��tV�����1�H���U���q���H�~Hcω�H9�udH�v�R���f�H�|$����������������p���H��7#H�5�.H�81�������H��7#1�H�81��~�����f���ATI��UH��S��H�� dH�%(H�D$1��7��H�D$�����������H�D$H�|$��H�|$tvH�5�%#H����H��H����H�|$����H�|$H�D$���H�D$H��� ��H��H��H�D$��1�H�t$�X�H����H�E H���3���H�L$dH3%(H����H�� []A\�I�$H�D$���A���H�|$t
H�|$�<���1�����fDH�|$�������f���������볐H�PH�T$H�P�J���H��5#H�5 -H�81�����H��5#H�5^-H�81������	�f�PXH�58,H��H��5#H�81����f���H��H�5##dH�%(H�D$1��|�H��t/1�1�1�I��H����H�<$���H�T$dH3%(u
H�������~�ff.���UH��H�5�"#SH����H��t2H�5{"#H��H����H��t3H��H���@�����H�H����[]�H��4#H�5S+H�81�����������UH��H�5!"#SH����H��t2H�5"#H��H����H��t3H��H��������H�H����[]�H�q4#H�5�*H�81��X�����H�91#S1�H��H��!#H�8����H��tH�X [��d���@��AWH�5C"#AVAUATUSH��xdH�%(H�D$h1�����H�D$H�������H�|$H�D$8�p���D$����H�D$`1�H�D$H�D$XH�D$ H�D$PH�D$(H�D$LH�D$0����9l$�oH�|$���'���H��H��t�L�D$H�L$ H��H�D$`H�T$(H�t$0H�D$XH�D$P���A�ą�x�H���i���H���q�I��H���B� �L��I�����L��H���
���Ic�L��H�t6���Hct$LL��H�t6���H�|$P�H��t��H��L������H�|$X�H��t��H��L�����H�|$`�H��t���H��L�������H��I���+�A�Ņ�~+E1��D��H��A���Q�H�����L��H���N���E9�u�L��L�����;���H�|$8L���.���9l$�����H�T$hdH3%(H�D$8u'H��x[]A\A]A^A_�H��1#H�5�(H�81�������H��1#1�H�81����PXH�5/-H��H��1#H�81����f�H�q.#S1�H��H�\#H�8�D��H��tH�X [����@��USH��H��H�5�#H���T��H���H��H�5q#H���9��H��H��tM�����H��H��������t,��H������H�=k/#H������H��tJH��H��[]�P���H���[]�H��0#H�5�'H�81�����H��0#H�5?'H�81����H��0#H�5�'H�81����ff.��PX1�H��H�y0#H�81��w�����S1�H��#���H���E��H��t	H�C H��[����f���AUH�5#ATUSH���&��H��tTH��H�����Hc�I������I��E��~(1ې��H������H���+��L��H����A9�u�H��L��[]A\A]��������H��H�5�#dH�%(H�D$1����H���E1�1�1�H��H�������xQ��u4H�<$H��t��H�L$dH3%(uH���D�����H�5/#H�5�&H�81��,��H�/#H�5�&H�81����H�/#H�5~*H�81����ff.��PXH�5~&H��H��.#H�81�����f���H��H�5�#���H��t!E1�1�1�1�H���&�����x$H�H��H�D�H��.#H�5*H�81��~�����f���H��H�51#dH�%(H�D$1��L��H��tP1�1�1�I��H�������x6H�<$H��t!�t�H�T$dH3%(uH��������<�����H��-#H�5a)H�81�����ff.�@��H��H�5�#dH�%(H�D$1����H��tPE1�1�1�H��H��������x5H�<$H��t ���H�T$dH3%(uH���fD������g���H�X-#H�5�(H�81��?��ff.�@��H��H�5�#���H��tH���O�H���W��H��H������6���fD��S1�H��#���H���%�H��t	H�C H��[��2���f�PXH�5�#H��H��,#H�81����f���AVH�5�#AUATUS���H����H��H������Hc�I���)��I��E��~FL�5�*#1����H�����L��H�����H��t'H�ǃ����L��H���0�A9�u�[L��]A\A]A^�H�,#H�5#H�81�����2���f���UH��H�5#SH������H��t0H�5�#H��H�����H��t1H��H�����H��H�[]H�D�H��+#H�5�"H�81����H��+#H�5�"H�81��r��f���S1�H��#���H������H��t	H�C H��[����f���UH�5�#SH���*��H��tLH��H��(#1�H�B#H�8����H��H����H��tH�E H��H��[]�@�H��H��[]�����@��H��H�5Q#���H��tH�����H��H�H�D�����ff.���H��H�5#�|��H��tH���o��Hc��w�H��H���+�����fD��S1�H��#���H���u��H��t	H�C H��[����f���UH��H�5#SH�����H��t0H�5+#H��H������H��t1H��H�����H��H�[]H�D�H��)#H�5� H�81�������D��S1�H��#�]��H������H��t	H�C H��[���f���H��H�5a#�l��H��tH�����H�H��H�Ѓ��H�O)#H�5p H�81��6���fD��AUATI��H��UH��SH����t\�����H��t\H�50#H�����I��H��t]1�L��H�t#���L���H���B��H��t'H�E H��H��[]A\A]��C����H��u�E1��H��(#1�H�81�蓿������ff.���H��H�5A#dH�%(H�D$1��\��H��t<E1�1�1�H��H�t$������xY��u<H�T$dH3%(HcD$H�DuH���H�(#H�5�#H�81������>��H��'#H�5�H�81����H��'#H�5oH�81��ξ��ff.���H��@��t"���Hc�1��c���H��tEH���f�@��uH�����t�����
t�H��1����@���������@��AWAVI��AUATI��H�5g#UH��SH��HH�L$H��$�L�D$(L�L$dH�%(H�D$81��D$4���H�D$H���)H�5U#L������H�D$ H����H������N���$H����H��E1�����H��L�h�=DH����I9�}^H�-�##L��H�uJ�<�N�$��M�H���KI��H��� u�L;{}$H�-k##H�C H�u�Ð�+���$H���}����<$�E1�E1�H�l$4H�t$H��H�=J�������t$4H�D$���|H��$�H�D$��H��$�H��H�=������L$4H�Ņ���H��M��D��UL�L$ �T$H�t$0H�|$(���I��XZM���1H����H�CE1�H�$�;f�H����I9���H�$J�<��c�������L��H����������I��H��� u�L;k}aH�C ��H�|$@����H�|$���A��H�l$4H�t$(H�=3���H������|$4I�ą�����H�D$E1�1�fDH�|$�n���H���f���L���^����|$4����H�L$8dH3%(L����H��H[]A\A]A^A_�@H�D$1���S��A���W���H�|$���H�����L�����H�/$#1�H�81��+���1��g����1��Q���H�mH� t+H��J�<#�O�H��H�5eH��H�[##H�81����H�[ ��H��##H�5NH�81��ú��H��##H�5�H�81�諺�����������AUI��ATI��US��H��(dH�%(H�D$1��e���H�D$���4���	1������A�H����1�H��tH���������ý����I��tL��A��������H�5�#L�����H����1�1�H�L$H��L�D$�V����H�t$H�|$Hc�Hc��Y�����u���1�H�t$dH34%(H����H��([]A\A]��I�,$���&���M�d$������H�|$t
H�|$�C��1������DH�|$�&���������x�H�D$����D��������@��������H��!#H�5fH�81����H��!#H�5mH�81��̸��������AWI��AVAUATUH��S��H��dH�%(H�D$1�聺��H�$�������`L�eL�u��t[L�m���7H�5G#L���O��H��H���<L��1����I��I��tHL��A��������Hc��1f�H�5�#L�����H��H����L��1��K��I��L������H��L��H��H��I���L��H�5�#L����{����~bH�L$dH3%(��H��[]A\A]A^A_���s�����~WH�$L�eA�L�u��u7H������H���F�������1�������Hc��K���L�m��~�H�<$tH���������w��H� #H�5)H�81�����*��f.���AWI��AVAUATUH��S��H��dH�%(H�D$1�衸��H�$�������`L�eL�u��t[L�m���7H�5�
#L���o��H��H���<L��1����I��I��tHL��A�����.���Hc��1f�H�5Y
#L���!��H��H����L��1��k��I��L������H��L��H��H��I���<��H�5�#L���������~bH�L$dH3%(��H��[]A\A]A^A_��蓾����~WH�$L�eA�L�u��u7H������H���f��������1�������Hc��K���L�m��~�H�<$tH���(��������H�(#H�5,H�81������J��f.���AWAVAUATI��UH��S��H��xdH�%(H�D$h1�H�D$H�D$@H�D$H�D$HH�D$ H�D$PH�D$(H�D$XH�D$0H�D$`菶��H�D$8��������E1�I�$�H�D$I�D$H�D$H�D$@H�x�"�H��t
Hc�I�4�H�2��H��H9�tH�P9��H��t�H��H�H9�u�9��WM���H�58#H�����I��H���VH�|$1���H�|$I���;�H�|$(I��H����H�|$0H������H�|$ H��H����H��E1�I��L��L��M��L����H�5q#L�����7������H�t$hdH34%(H����H��x[]A\A]A^A_�f�@��tr�%���H�|$0Hc�H���i������H�|$ H��H���i���H�L$����H�L$I���Y���DH�|$8���������˻����~L�D$8�J���@�S���H�|$8t
H�|$8���������H��#H�5�H�81�膲�����H�r#1�H�81��n���ff.���AWAVAUATI��UH��S��H��xdH�%(H�D$h1�H�D$H�D$@H�D$H�D$HH�D$ H�D$PH�D$(H�D$XH�D$0H�D$`���H�D$8��������E1�I�$�H�D$I�D$H�D$H�D$@H�x�"�H��t
Hc�I�4�H�2��H��H9�tH�P9��H��t�H��H�H9�u�9��WM���H�5X	#H���`��I��H���VH�|$1��x�H�|$I����H�|$(I��H����H�|$0H�����u�H�|$ H��H����H��E1�I��L��L��M��L������H�5�#L�����������H�t$hdH34%(H����H��x[]A\A]A^A_�f�@��tr腷��H�|$0Hc�H���i����N���H�|$ H��H���i���H�L$�R��H�L$I���Y���DH�|$8�6�������+�����~L�D$8�J���@����H�|$8t
H�|$8�������n��H��#H�5 H�81�����!��H��#1�H�81��ί��ff.���H��#ATH�5vUSH�8貸��H��#H�|#H�5\H��H�H�����L�%P#H�;H�5GH�_#H�I�$�[���H�-�#H�5��H��H�E豼��H�}�H���H�5���H�}�����H���H�5������H�}�����H����H�5�����H�}�H���H�5����H�}�H����H�5����H�}1�H����H�5��|��H�}1�H��H�5��c��H�}�����H����H�5z�G��H�}�����H�����H�5�+��H�}1�H�.��H�56����I�$H�;H�5N����H�-�#�H���H��H�5H�E蹱��H�}H�5���Y���H�}�H�Y��H�5����H�}�����H����H�56����H�}1�H���H�5E�x��H�}1�H���H�5��_��H�}1�H�2�H�5��F��H�}1�H����H�5Q��-��I�$H�;H�5d�:���H�-#H�5��H��H�E萺��H�}�H�`��H�5�����H�}�����H����H�5m�����H�}�H���H�5���H�}�����H����H�5�
���H�}�H�P�H�5�
�t��H�}1�H�g�H�5(
�[��H�}1�H���H�5�
�B��H�}�H���H�5�
�&��H�}�����H�6���H�5=�
��H�}�����H�:���H�5�����H�}1�H�!��H�5������I�$H�;H�5H
���H�-�#H�5��H��H�E�8���H�}�H���H�5�����H�}�H���H�5��p��H�}�����H���H�5��T��H�}1�H�7�H�5[�;��H�}1�H�~�H�5��"��H�}1�H�e�H�5��	��H�}1�H���H�5�����H�}1�H�C�H�5�����H�}1�H�j�H�5����H�}1�H���H�5����H�}1�H����H�5�����I�$H�;H�5n虺��H�-�#H�5�H��H�E���H�}�H����H�5>��C��H�}�����H�c��H�5��'��H�}�H�w��H�5g����H�}�H����H�5�����H�}1�H�b��H�5�����H�}1�H�9��H�5����H�}1�H�`��H�5����H�}1�H�w��H�5����H�}1�H�.��H�5���r��H�;�H�5����H�;�H�5���H�;H�����H�5��t��H�;�H�5��`��H�;�H�5��L��H�;�H�5��8��H�;�H�5�
�$��H�;�H�5����H�;�
H�5�
���H�;�H�5�
����H�;�H�5{����H�;�H�5����H�;�	H�5����H�;�
H�5����H�;�H�5����H�;�H�5��p��H�;�H�5��\��H�;�	H�5��H��H�;�H�5�4��H�;�!H�5s� ��H�;�AH�5h���H�;��H�5_���H�;�H�5T����H�;�H�5L����H�;�H�5A���H�;�H�5����H�;�H�5$���H�;�H�5���H�;�H�5�l��H�;�H�5�X��H�;�H�5�D��H�;[�]H�5A\�,��f.�f���UH�5D�"SH��dH�%(H�D$1��ڻ��H����1�H��H������Hc�H����1��a���H��H�@H� uQH��H��H�$�����~[H�H�4$�� tBH�CH�SH)�H9�jH���z���H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�t
#1�H�81�� ���H�!#H�5�H�81�����H�
q��H�5�H�=��ٶ���$��@���ש�����AUATI��U��SH��H��HdH�%(H�D$81�H�B �D$H�D$ H�D$(�{���H�D$0�������	����I�$H�D$����I�D$H�D$����H�|$0��E1�H�|$t
H�|$���I��H�|$����H�t$(H��H������H�D$(H��H�C �&����!���H�|$(H�L$0L��H�T$L�D$ �U��������ȫ��H�t$H���bH�=�	#H�T$����T$I�Ņ��jH�t$0H���HH�=5#H�T$��V��I�ċD$��u#H�t$ �H��tH�=�#H�T$�+��H��H�|$0���H�5'	#H�|$ ����L��H�5-
H�����L��H�5 
H������H��H��H�5
�����|$��t1���f.�H�D$H�D$H�|$0u.�������H�L$8dH3%(H����H��H[]A\A]�@H�|$0�~����@�s������	���H�|$0t
H�|$0�Y���1�������H�t$0A�H�������A�����f��A�����H�a
#H�5	H�81������C����ATUSH�����|H�����tsH��ƒ���tf��uaI��H��H�5�"迷��H��H��tOH�5�"L��訷��H��t;H�5D#H�=m
#H������H��t8H�C H���|���H��[]A\�@H���h���H�i#H�5.H�81��P���H��	#H�5hH�81��8������S1�H�r�"�ݣ��H��腢��H��t	H�C H��[�H�H	#1�H�81���@��AWI��AVA��AUATUSH��dH�%(H��$�1�H�D$HL�l$8H��$�H�D$PL�d$@H��$�H�D$XH�l$`H��$�H�D$pH�\$hH��$�H�D$xH��$�H��$�L��$�L��$�H��$�H��$�H��$��(���HDŽ$����,A����E1�H��$�1�L��H�qfDH��tI�<H�8H�H��H�� u�H��H�q0��'�H��t
Hc�I�<�H�8��H��H9�tH�B A9��H��t�H��H�H9�u�A9���M���uH�|$8H�$tL�����H�$H�D$H�|$@t
L������H�D$L�l$HE1�L�����L�d$PH�D$ L���Y��H�|$`H�D$(��E1�H�|$h�yH�|$p�D$H����H�|$x�D$H���+H��$��D$H����H�2#H��"1�H�8�i���H�l$XE1�H��H��tH��耳��I�‹D$E��M��P�D$ P�D$ PAWH�t$(H�|$ H�L$HH�T$@L�T$0�h��H�� L�T$H�58#I��L�����M����L�s H��L��H�5-���H��L��H�5 �ܼ��H��H��H�5�ʼ��H��H��$�dH3%(�kH��[]A\A]A^A_�fD@����詥���D$���@����葥���D$����H�����H������A�Dž��l���H�T$h�>fD@�����I����D$�^���H������H�����A�ƅ�����H�T$`H��#H�5QH�81������H��$������y���fD���A��~;L��$������k����D$����f��[����D$���f��K����D$���H��$�t
H��$�����
�D�����H��#1�H�81��u���谼����H�=#SH�5�H�H��#H�8�K���H�l#H��#H�5�H��H�H��(���H�i#H�;�����H�5�H�H�����à��H�;H�5����d���H�;�H���H�5�����H�=�	�}���H�;E1�1ɺH���h��H�=��\���H�;E1�1ɺH���G��H�=��;���H�;E1�1�H�ƺ�&��H�;�����H�����H�5���;���H�;1�[H�N���H�5F��"���f����7�����駽�����UH�5��"SH��dH�%(H�D$1����H����1�H��H���T��Hc�H����1�聭��H��H�@H� uQH��H��H�$�"����~[H�H�4$�� tBH�CH�SH)�H9�jH��蚮��H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H��#1�H�81��@���H�A#H�5�H�81��(���H�
!�gH�5�H�=�����D���@��������AWAVAUATI��H�5J�"U��H��SH��H��xdH�%(H�D$h1��D$误��H����I��H�D$L�l$(H�D$@H�D$ H�D$HH�D$0L�l$PH�D$X�f���H�D$8���
���;1�I�$M�|$H�D$L�|$ ��*H�D$(H�D$0H��t:H�|$8����.�I�D$H�D$(��t�I�D$H�D$0����H��u�L��E1��F���H�|$0H�D$H���bH�|$(�L���n��H�|$I��H���,H�t$���I�NjD$�����N��H���ƞ��H��H����H�T$E��L��I��L��L����L��A��膛��H�5?�"L�����E���?詷��H���1���H��tH�����H��H�5�H���ݶ���h���H�����H�5��H��H��辶��A����HE�H�L$hdH3%(�#H��x[]A\A]A^A_�f�H�5S�H���!���H�D$(H������H�|$E1�H������E1�����@��t*�U���A�����D�C�����~H�T$8���@�˯��A���a���H�|$8t
H�|$8�������耵��L���8����|$����H�8#H�5��H�81����L������H�5�"L�����H�	#1�H�81�轗��H��#H�52�H�81�襗�������AWAVAUATUSH��H�$H��(H�t$H�5��"I��dH�%(H��$1��[���H����H�xI��薯������H�|$H�l$����1�L��I�����I��H��u�Q���H��L������9�u9�H��L���?����Å��L��L�������t�H�5x�L��薴��L��莿��L������!���H��uAH��$dH3%(H�D$uTH��([]A\A]A^A_�f��L���������.���H���"1�H�81��X���H�Y�"H�5�H�81��@����{���ff.���AWH�5��"AVAUATUSH������H���H�xH���M�������H�C L�`M����L������Ņ���Hc�艠��I�Ņ�tz1��;fDH�5��"H�=��"L���2���H����I�G L��L������9�t;��L��虢��H�"�"1�I��H���"H�8����I��M��u�����H��L��[]A\A]A^A_�fDH�{�w�����uH�C L�`0M���.���H��[]A\A]A^A_����H�7�"1�H�81����H��"H�5`�H�81��Ӕ��H��"H�5��H�81�軔��ff.���AWH�5�"AVAUATUSH��蒩��H���RH��衯��I��H����H��荥���Ņ��DHc�����I�Ņ�tt1��5H�5�"H�=�"L���ʬ��H����I�G L��L����/��9�t;��L���1���H��"1�I��H�>�"H�8趕��I��M��u�艺����H��L��[]A\A]A^A_�fDH���"H�8tH��[]A\A]A^A_鸬��H�i�"��H�= �H����H��'�H�=�����H�;A�61�H�
��H�������H���"1�H�81��7���H�8�"H�5��H�81�����H�X�"H�5��H�81��������SH�5d�"���H���VH�xH���*�����teH�{������t?H�{��������H�{�����tgH�{��������[�fDH�=#H��tl[���fDH�=	#H��u�H�=b������[H��H��#����H�=�#H��u�H�=M�����H��H��#��H�=��	���H��H��#�t���H�=y#H���d���H�=��	�O��H��H�U#�D���H�=9#H���4���H�=T�����H��H�#����H���"H�5�H�81��x������ATI��U��SH��H�� dH�%(H�D$1�H�B H�$�/���H�D$�������
����I�$H�D$����H�|$��H�|$I���ӝ��H�|$H�D$���1�1�L��H��H���b���H����H�$H��H�C ���H�ߺH�5T��u����H�5V�H���a�����H�D$H�|$u'H�L$dH3%(H����H�� []A\��H�|$�6����t��=���D�#���������H�|$t
H�|$�	���1����{���1�1ҾH���צ���R���L��H������H������H������H�<$轐��H�n�"H�C H�5�H�81�譏��������ATUSH����upH�����tgH��ƒ���tZ��uUH��H9�tDH�5��"H���^���I��H��t>H�5��"H���G���H��t*H�����H��t5H�C L������H��[]A\ÐH������H��"H�5��H�81�����H�9�"1�H�81����ff.�f�PXH�5$�H��H��"H�81��Ž��f���H��H�5a�"謣��H��t
H�xH��������D��H��H�51�"�|���H��tH�@H�xH���&��������H��H�5a�"�L���H��tH�@H�xH�����H�7�"H�5��H�81�����ff.���H��H�5��"���H��tH�@H�8H���w�������f�PX1�H��H��"H�81��Ǎ�����USH��H��H���۽��H�5T�"H��H��虢��H��tH��H��蹪����t"H��H��[]�H�|�"H�5��H�81��c����~���ff.���S1�H���"���H���ղ��H��t	H�C H��[��B���f���H��H�5!�"����H��t4�4H��芜��H��t:�8t�H���fDH�xH���#���H��"H�5.�H�81�軌������fD��AUATI��UH��SH��H��H����L��I��趼��H��I���ۿ��H�5��"H��H���i���H��t#H��L��L��H���s�����t&H��H��[]A\A]�H�B�"H�5��H�81��)����D���@��S1�H�"�"�͍��H��襲��H��t	H�C H��[�����f���UH�5T�"SH���ڠ��H��t5H�����H������H��H��tMH��H������H�߅�t#H��[]� ���H���"H�5�H�81�舋��賍��H���"1�H�81��p������ff.�PXH�5��H��H�T�"H�81��B���f�SH�5��"�3���H��t(H�xH���r�����t
��t1�[�@H�C [H�@�������H�����H��H���'������ATI��UH��S���H����H���(���H�����H��u�H�5T#H��tM��H��L�r1�1��i��H��[]A\Ð�H�=����H��H�#��SH�5��"�S���H��t(H�xH��蒢����t
��t1�[�@H�C [H�@�������ATI��UH��S���H����H��訑��H�����H��u�H�5�#H��tM��H��L�"1�1����H��[]A\Ð�H�=V��/���H��H�M#����H���3���H��H��釭�����ATI��H�5��"USH���f���H��t"L��H�����H��H���ێ����t H��[]A\�H�@�"H�5��H�81��'����B���f���H��H��H��두��ATI��H�5p�"USH�����H��t"L��H������H��H��苼����t H��[]A\�H���"H�5D�H�81�跈������f���H��H��H��두��USH��H��H�5=�"H��脝��H��tKH�5��"H�=Y�"H�����H��H��tjH�5��"H���R���H��tQH��H��肊����t"H��H��[]�H�5�"H�5s�H�81�����H������H�M�"H�5��H�81�������H�0�"1�H�81����@��ATI��H��H�5��"US�Ɯ��H����H�5N�"H�=_�"H���7���H��H����H�5�"L��茜��H��H��tsH��H���)�����tDH�{輟����tL��[]A\����~���H���2H���	���L��[]A\�H��詨��H�b�"H�5��H�81��������H�E�"1�H�81����H���"H�5T�H�81�������UH��H�5A�"SH���Ǜ��H��t$H��H���7���H��H��謱����t"H��H��[]�H���"H�5�H�81�膆��������SH�5��"�o���H��t<H�xH��讞����t	1�[�D1�1ɾH���?���H�¸H��u�1�������f���H��H�5��"����H��t#1�1ҾH�����H��H�H��H�Ѓ������ff.�@��SH��H�51�"輚��H��tEH��tH��u"1�H���H����1�蔞��H��t5H��[�H���"H�50�H�81��r���H�s�"H�5��H�81��Z����u���D��AWAVAUATUH��H�5��"SH��(dH�%(H�D$1�����H���`I��H�l$@����@��u
H�������H�|$����H�T$H��� ��H�BH�ZH�D$L�-2�E1�M��@L���1H����������!�%����t������D�H�qHDΉ�@�H��L)�H9�uH�t$L��H�$���H�$��toA��I��A��u�H���"H�5�H�81��9���f�H�BH��H�D$���R����E��������H���a���H��H�D$����@Mc�L��K�@A�t��l�����t?H�\$dH3%(H��u'H��([]A\A]A^A_�H���"H�5+�H�81�螃���٢�����@��S1�H���"�=���H���Վ��H��t	H�C H��[����f���ATH���"USH�� H�t$1�dH�%(H�D$1�H���"H�8���H�|$H���ʻ��H�t$H�D$H��H��豅��H��I���&���M��tZH�|$�H��t�]���H��L�c H�5y�H��藠���H�5x�H��胠��H��H�L$dH3%(uH�� []A\����͡��ff.�f���H��H�5��"�l���H��tH�@H�8H�����H�X�"H�5��H�81��?���ff.�@��AWAVAUATI��UH��S��H��dH�%(H�D$1���H�$�������ZL�uL�m����L��1��-���L��I����I��L��H�5%�"谖��I��H���D�_���H���׆��H��H���L��A��H��L��L��跏��H�߅������H�L$dH3%(��H��[]A\A]A^A_�@L�}����L��1�艱��L��I���N���I��I���R���L��A��tH�����=���@�����~QH�$L�uL�m��u-H�������A�H��足���@�K��������@L�}��u
H��u��j���H�<$tH���~����������訂��H���"1�H�81��e���蠟��H�a�"H�5��H�81��H������AVAUATUH��S��H��`dH�%(H�D$X1�H�D$L�d$�D$H�D$0H�D$H�D$@H�D$ L�d$8H�D$H�ց��H�D$(���u����1�L�mH�EL�l$H�D$��[H�D$H�D$ H��tiH�|$(育��H�|$H��u_�2���H�|$ 1�I��H��t_@��� �S������L�H�EH�D$��t�H�EH�D$ ����H��u�H�|$H��t�裬��H�|$ 1�I��H��u�H���"H�u�"1�H�8軀��L��H��蠷��L��H�t$I��� ��I�ŋD$������L��L��L���a���L��H��H�����݀��H�k H�T$H��H�5D��e���H�5~�"L���F���H��H�L$XdH3%(ukH��`[]A\A]A^�fD�K�����~H�T$(���@�ӕ�����)���H�|$(t
H�|$(��������艛��L���A����|$�����C����.���H�5��"L��详��H�(�"1�H�81���}��ff.����AWAVAUATU��SH��H��xdH�%(H�D$h1�H�D$L�d$ �D$H�D$@H�D$H�D$HH�D$(H�D$XH�D$0L�d$PH�D$`�Z��H�D$8��������1�L�3L�kH�CL�t$L�l$H�D$ ��'H�D$(H�D$0H��t5H�|$8����)@H�CH�D$(��t�H�C H�D$0���LH��u�L��1��	���L��I���.���H�|$0I��H����H���"H��"1�H�8�d~��L��H���I���H�|$(I��H����H�t$�|��I�NjD$����A��L��L��L��L���ʀ��H����H�C H�T$ H�5��H���	����H�5��H�����L���M~��H�5�"L���Τ��H��H�L$hdH3%(��H��x[]A\A]A^A_��@��t2�ł��������fDE1��R���諄����~H�T$8�^���@�3��������H�|$8t
H�|$8�z����������L���}���|$�x���裚��L���}��H�5D�"L������H���"1�H�81��9{��f���AVAUATUH��S��H��@dH�%(H�D$81�H��L�t$H�D$ H�D$L�t$(H�D$0��|��H�D$���q����1�L�eL�$$��bH�D$H�D$H��tpH�|$1�菭��H�|$H��tf@���:�u���H�|$��uUH�5�L�����H�D$�?DH�UH�T$��t�H�UH�T$���H��u�H�|$1�H��u�H�|$t�L��H�5��"����I��H���/E1�H�|$uh軳��H���3��H��H������L��L��H���~������L���{��H���?���H�L$8dH3%(��H��@[]A\A]A^�fDH�x�ߑ����tJH�|$��L���&���I���n���fD�S�����~=H�D$���D�ې��������@1�1ɾL���/������@H��E��H�|$t
H�|$���������o���H���'{��L���{��H�(�"1�H�81���x��H���"H�5Q�H�81���x�����E1�������ATH���"H�5��L�%m�"USH�8I�$臈��H���"H�I�"H�5Q�H��H�H��d���H���"H�;�H�58�H�H����{��H�;�����H����H�5���{��H�;�����H�E���H�5���{��H�;�����H�����H�58��{��H�=��蒒��H�;E1�1ɺH���}���H�=���q���H�;E1��H�ƺ�Y���H�;H�5��
���H�;�H���H�5Z��_���H�;�����H��H�5���D���H�;�H��H�5O��)���H�;1�H�=�H�5s�����H�;�H�R�H�5"����H�;1�H���H�5��ޚ��H�;1�H�r�H�5��ƚ��H�;�H���H�5��諚��H�;�H���H�5��萚��H�;1�H���H�5���x���H�;�H���H�5���]���H�;1�H�A�H�5���E���H�;�H�F�H�5���*���H�;�H��H�5������H�;1�H���H�5�����H�;�H���H�5���ܙ��H�;�H�
�H�5q����H�;1�H���H�5_�詙��H�;�H���H�5I�莙��H�;H�:�H�5
��؈��H�;�����H����H�58��]���H�;�����H�>�H�5���B���H�;1�H�f�H�5s��*���H�;H�d�H�5��t���H�;1�H���H�5 ����I�$H�;H�5���	���H�-B�"H�;H�5��H��H�E����H�}H�5���L���H�}�H��H�5E�蠘��H�}1�H�3�H�5��臘��H�}H�~�H�5>��Ї��H�}1�H�#�H�5e��W���H�}1�H�J�H�5��>���I�$H�;H�5
��K���H�-��"H�5��H��H�E衁��H�}�H�a�H�5�����H�}1�H���H�5���ܗ��H�}1�H�_�H�5���×��H�}1�H��H�5��誗��H�;�H�5���֝��H�;�H�5�����H�;�	H�5��讝��H�;�H�5��蚝��H�;�!H�5��膝��H�;�AH�5���r���H�;��H�5��^���H�;�H�5��J���H�;�H�5��6���H�;[�]H�5��A\����f.�@��H���H�=<dH�%(H�D$1�H�T$袝��HcD$H�L$dH3%(uH��������H��賅���H���f����'������USH��H����H��腍��������t8~��ttA=�uJH��H��[]����@��u3H��H��[]�e}��DH��H��[]���f�H��H��[]�Bu��f�H���"H�J�"1�H�8�s��1�H�5��H�X H��H��萏��H��H��[]�H���"H�5��H�81��q��ff.���H�U�"SH��H�0�y��H��uH��[�H���"H�5q�H�81��Wq�����SH���"1��r��H��赅��H��tH�C H��1�H�5J����H��[�H��"1�H�81��q����AUATA��H��U��SH��dH�%(H�D$1��Տ���H�Å�u4�C�����H�L$dH3%(��H��[]A\A]�D��N{��Ic�1�H��H�TI���Y���HcվL��H�T�D���H�=��"H�T$L���0����D$���x����C1��D�C1�H�=8����t�����Z������T���@���G�@��SH��H��H�=~���H��dH�%(H�D$1�H�T$谚���T$��uH�L$dH3%(uH��[�H���Z����|$豗���܎��ff.����ATUH��S��H�� dH�%(H�D$1��Zq��H�D$��������H�EH�D$��ucA�L���5���H�|$I���ا��1�H��H���[���H��H����H���7q��H���x��H�L$dH3%(�CH�� []A\�f�L�e��~�H�|$t
H�|$赡�������$���@�w����~�H�UH�D$A�H�T$��uH���H���H�|$�k����9���fDL�e��~��D1�1ҾH���/���誇��L��1�H��H�s�"�F���H��H������1�1ҾH������t���1�H���jo��H��H�����1�1ҾH���̈́���H���1�H��L��H��"�d|��H��H���o��H�������H���"H�5��H�81��m�������USH��H��(dH�%(H�D$1��t������H��螚��H��H��蓈������~@��t�=�uH���Т��H��tIH�D$dH3%(��H��([]�D��u�1�H�T$H��H���Qu��H�<$tH�|$u�H���"H�5,�H�81���l��f.�1�H�t$H���q��H�|$u����1�H�t$H���1p��H�|$�]�����΋��H���"H�5��H�81��vl��fD��AUATUSH��H��H�5��"H�T$H�$�J���H���7H��I���f���H��莟��H�|$I���A~��H�D$H��� ��H�XHc�H9��H���~������H��H����1�L��H���Jx�����H�4$H��� ��H��H����H���O�������H�t$��H� uoH��H��L������H���莝����u*�Մ��H��1�[]A\A]��H�����H���@��u)H���[]A\A]�H�VH�v�t���H�v�H�#�"H�5��H�81��
k��H��"H�5W�H�81�����H���j��H���"H�5,�H�81���j��H���ڜ��H���"H�50�H�81��j��H��躜��H���"H�5"�H�81��j��f���H��H�5��"�|��H��tH���H�s�"H�5��H�81��j���f.���SH�5��"1�1�H���h���H��uH�5��"H���#��H��t[�H���"H�5��H�81��j��H��"H�5Q�H�81����ff.����AUATUSH��H��(H�T$dH�%(H�D$1�����H��I���
���H�|$I���{��L���e���1�Hc��;{��H��蓎��H���1�L��H��H����u������H�t$H��� tuH�VH�vH�������tnH�uH�E tH�uL��H��H�T$�ϓ��H��A���$���E��t\�t$H���|��H��H�L$dH3%(uUH��([]A\A]�DH��H�����H���ۚ��H���"H�5��H�81��h��H���"H�5��H�81��h���և��H��螚��H���"H�5>�H�81��vh��H�w�"H�5��H�81��^h��ff.���SH�5��"�?}��H��tH��H���_���H��[�H�+�"H�5w�H�81��"~��f���UH�54�SH��H�(�"H�8�q��H��"H�-
�"H�5��H��H�H�E��w��H���"H�}H�5��H�H���"H��w��H�q�"H�}�����H����H�5��H��B���H�;H�5(�����t��H�;1�H����H�5��;���H�;�H�l���H�5S�� ���H�;�H�����H�5������H�=��Ɂ��H���"����y������H��[]�������USH��8H�5G�"dH�%(H�D$(1���{��H���CH��H��������LH����j��H�L$H�T$H��H��H���}��H�T$ H�t$H���j���֗��H�<$H���z����H�=P�H���fj��H��H��H���xf��H�|$�N����H�=��H���:j��H��H��H���Lf��H�|$�"����H�=��H���j��H��H��H��� f��H�|$����H�=1�H����i��H��H��H����e��H�|$ �ʎ���H�=
�H���i��H��H��H����e��H��H�L$(dH3%(uH��8[]�H��"H�5��H�81��v{��衄��H�b�"H�5��H�81��Ie��f���AUI��ATU1�SH��H�t$H�$H��t
H�|$�4���H��1�H�<$tH��� ���H��H�5^�"L����y��I��H����H���
�����uwL���h��I��H��tH����i��H��H��t5H��tH����i��H��H��t H��H��L���қ����t`H��L��[]A\A]�H��踂��1�豂��H���"1�H�81��^d��H�_�"H�5��H�81��Fd��H�G�"H�5��H�81��>z��H���f���H���^���H��"H�5x�H�81��d��fD��AVI��AUATE1�USH�� H�t$H�T$H�L$H��t
H�|$���I��1�H�|$t
H�|$�Ԇ��H��1�H�|$t
H�|$轆��H��H�5��"L���x��I��H����H���~������L���g��I��M��tL���vh��I��H��tOH��tH���ah��H��H��t<H��tH���Lh��H��H��t'H��H��L��L��������tlH�� L��[]A\A]A^�1�L���5���H���-���1��&���H�g�"1�H�81���b��H���"H�5�H�81��b��H���"H�5�H�81��x��L���ۀ��H���Ӏ��H���ˀ��H���"H�5��H�81��sb����ATUSH�� H�t$H�5��"dH�%(H�D$1��Cw��H����H��H���_}������H���Nf��1�1�H�t$H��H���zy��H�|$tpH�|$����H��I���]���1�Hc��s��H��H�xH� u;H��L���h{����xHc�H����t��H��H�L$dH3%(u\H�� []A\�DH�x�H���"H�5�H�81��za��H�{�"H�5��H�81��ba��H�c�"H�5��H�81��Zw��腀��H���"1�H�81��2a��f���AUI��ATI��USH��8H�-}�"dH�%(H�D$(1�H���u��H���H��H���|�����H��L����u��H��H����H����{�����H����d��H��I��趖��H��H����H�¾H���je��L��H�T$ H�t$�d��H�|$H��t2�e��H�|$ H���|e��H��t9H�|$ tH��t,H��H��H���|���H�L$(dH3%(L��uUH��8[]A\A]�H��H�D$�Q~��H�D$H���D~��H�]�"H�5W�H�81���_��H���"H�59�H�81���u�����H�(�"H�5O�H�81��_��H���"H�5��H�81��_��H���"H�56�H�81��_�����USH��H�5��"dH�%(H�D$1��Zt��H����H��H���vz������H���ec��1�H��H���8���Hc�H����1���p��H��H�@H� u]H��H��H�$������x_H�H�4$�� tFH�CH�SH)�H9���H����q��H��H�L$dH3%(��H��[]�@H�C�f�H��H�S���H���"1�H�81��^��H���"H�5��H�81��h^��H�i�"H�5��H�81��`t��H�
y��tH�5��H�=��!o���l}��ff.����USH��H�5w�"�
s��H��t}H��H���*y����uUH���b��H��襗��H���c��H��H��t"H��H���:��H�߅�tH��[]�8�����_��H��"1�H�81��]��H���"H�5��H�81��]��H���"H�5��H�81��s����USH��H�5��"�Zr��H��t}H��H���zx����uUH���ma��H�����H���mb��H��H��t"H��H���n��H�߅�tH��[]鈉���3_��H�\�"1�H�81���\��H���"H�5%�H�81���\��H���"H�5%�H�81���r����SH��H�O�W�wH�?�F����C1�[�ff.�@AVA��AUA��ATUSH��@dH�%(H�D$81��D$H�D$�l��H��萐��H��H����H�����V�������L�d$H�5z�"H��L���'b���|$H�\$D�l$D�t$H�l$ ��H��"H�t$L��H�="������H���5����T$(H�߅�t:�Ք������H�L$8dH3%(H����H��@[]A\A]A^�f��{����D$��ug1�����D$�=���H��D��D��H������D$(�q���fDH��1��.���H��薔���t����H��1������d����\z���wt���|$����ff.�ATH�_�"I��1�US�\��H���co��H��tVL��H��H���_����t'H�k H��1�H�5��x��H��[]A\�f.�H��1��Fy��H��[]A\�fD1�H��[]A\�ff.���UH��SH��H�5�"�Wo��H��t}H��H���wu����uUH���j^��H���B���H��H���w���H��tH��H������H��t
H��[]�H����H�Y�"1�H�81���Y��H���"H�5"�H�81���Y��H���"H�5"�H�81���o��ff.�f�PXH�5��H��H���"H�81��Y��f���SH��H�5�"dH�%(H�D$1��kn��H��tIH��H���t����uVH���~]��1�H��H����\��H�<$H�H�Ѓ�H�L$dH3%(uH��[�H��"H�5j�H�81��o���@x���K���ff.���SH��H�5H�"dH�%(H�D$1���m��H��t_H��H����s����uJH����\��H��1�H���1\��H�<$H��t 裁��H�L$dH3%(uH��[�D����w�����H�h�"H�5��H�81��_n��ff.�@��SH��H�5��"dH�%(H�D$1��m��H��t_H��H���;s����uJH���.\��H��1�H���[��H�<$H��t ��H�L$dH3%(uH��[�D����v������H���"H�5�H�81��m��ff.�@��SH��H�5�"dH�%(H�D$1��kl��H��t_H��H���r����uJH���~[��H��1�1�H���n��H�<$H��t�A���H�T$dH3%(uH��[�����Lv���W���H��"H�5T�H�81��l��ff.�@��SH��H�58�"dH�%(H�D$1��k��H��t_H��H����q����uJH����Z��H��1�1�H���m��H�<$H��t���H�L$dH3%(uH��[�����u�����H�X�"H�5��H�81��Ol��ff.�@��SH��H�5��"dH�%(H�D$1��k��H��t_H��H���+q����uJH���Z��H��1�1�H���Om��H�<$H��t��~��H�T$dH3%(uH��[������t�����H���"H�5�H�81��k��ff.�@��UH��SH��H�5Ի"�gj��H��t.H��H���p����uNH���zY��H���R�����t"H��H��[]�H�5�"H�5��H�81��,k��H�u�"H�5�H�81��U��H��"H�59�H�81���T��ff.����SH��H�58�"dH�%(H�D$1��i��H��tOH��H����o����u\H����X��H�t$H���Q���1҅�t�|$H҃�H�L$dH3%(H��uH��[�H�h�"H�5��H�81��_j���s�����D��SH��H�5��"dH�%(H�D$1��i��H��tgH��H���;o����uRH���.X��1�H��H��H���~W��H�<$t�H�L$dH3%(u;H��[�@H���]��H��1�H��u������H���"H�5��H�81��i����r��f���AUI��ATI��US��H��H��(H�5ع"dH�%(H�D$1��[h��H���QH���:U��H�D$����������tmI�EH�D$��thM�m���gH�|$�,H�|$@����I��t_L��A������Y����H�|$@��uE�]j�����Cf�H�D$H�|$������H�|$A�@��t2��xY���lj����H��H��uZH�и"1�H�81��dR��@@�����1_��H�|$H�D$��1�1�1�H��I���n��H��H����L���MT��H�ھH����V�����H�L$dH3%(L����H��([]A\A]�A�H�|$����������sa��H���fD�Z�����z���H�|$t
H�|$艄���1����n��H������%��������
�����I��������h�����h�����p���1�1ҾL���h���j��H�=��"1�L��H�5|�"�Y��L��H���DS��H���������Ap��H��"H�5N�H�81��f��H���с���e���ff.����AVAUI��ATI��US��H��dH�%(H�D$1��R��H�$�������GI�m��uZA�H���t|�_W��D������H��H��t|H��L���R���H��tlH�L$dH3%(�H��[]A\A]A^�@M�u����L��A�����V��H���A��u�fD�g��D����Y�H��H��u�H���ɀ��H�2�"1�H�81���O��fD�X����~dH�$I�m��u2H������A�H��A��}����������d����M�u��uH��u��J���D��f��A������H�<$tH���4��������l���nn��ff.���USH��H��tQH���"H��H�h�"1�H�8�P��H��H���j����uaH�k 1�H�5�H���l��H��t4H��H��[]�f��k^��H��tH��H�$�"H�8��H�����H��"1�H�81��N��H��"H�5O�H�81��mN��ff.�f���SH�\�"H�53�H�n�"H�H�;�;^��H���"H�;H�5��H�H��"H��^��H���"�����H�5���H��H�5�H��Q��H�;�����H�T���H�5]��q��H�;�H���H�5���q��H�;1�H�!�H�5���q��H�;1�H�Y���H�5���mq��H�;1�H��H�5���Uq��H�;1�H�I�H�5a��=q��H�;H�R�H�5p��`��H�;H�<�H�5��q`��H�;1�H���H�5��p��H�;1�H���H�5ާ��p��H�;1�H����H�5���p��H�;1�H�]���H�5��p��H�;�H�R�H�5ӻ�p��H�;1�H�z���H�5���~p��H�;1�H�����H�5��fp��H�;1�H���H�51��Np��H�;1�H�"�H�5���6p��H�;1�H�Z�H�5���p��H�;�H�/�H�5G��p��H�;�H���H�54���o��H�;1�[H��H�5����o��f.�D��USH��8H�57�"dH�%(H�D$(1��`��H���CH��H����f����t�LH���%K��H�L$H�T$H��H��H���S��H�T$ H�t$H���+P����|��H�<$H���jt���H�=@�H���VO��H��H��H���hK��H�|$�>t���H�=w�H���*O��H��H��H���<K��H�|$�t���H�=��H���N��H��H��H���K��H�|$��s���H�=!�H����N��H��H��H����J��H�|$ �s���H�=��H���N��H��H��H���J��H��H�L$(dH3%(uH��8[]�H�o�"H�5��H�81��f`���i��H�R�"H�5��H�81��9J��f���AUI��ATU1�SH��H�t$H�$H��t
H�|$�$m��H��1�H�<$tH���m��H��H�5N�"L����^��I��H����H���d����tuwL���MI��I��H��tH����N��H��H��t5H��tH���N��H��H��t H��H��L���"I����t`H��L��[]A\A]�H���g��1��g��H��"1�H�81��NI��H�O�"H�5�H�81��6I��H�7�"H�5��H�81��._��H���Vg��H���Ng��H��"H�5R�H�81��H��fD��AVI��AUATE1�USH�� H�t$H�T$H�L$H��t
H�|$��k��I��1�H�|$t
H�|$��k��H��1�H�|$t
H�|$�k��H��H�5�"L���{]��I��H����H���c����t��L����G��I��M��tL���fM��I��H��tOH��tH���QM��H��H��t<H��tH���<M��H��H��t'H��H��L��L����\����tlH�� L��[]A\A]A^�1�L���%f��H���f��1��f��H�W�"1�H�81���G��H�İ"H�5�H�81��G��H���"H�5��H�81��]��L����e��H����e��H���e��H�|�"H�5̳H�81��cG����SH��H�t$H�5��"H�$�B\��H����H��H���^b����t��H���F��H�|$H���0Y��H���(Y��H�$L�A�� tXH�yHc�A��H9�uvH�t$H�IH��� uQH��H����1�I���U����xQ����HD�H��[��H�t$I��H��A��H��� t�H�~Hclj�H9�uH�v��~F��H���"1�H�81��[F��H�\�"H�5��H�81��CF��H�D�"H�5��H�81��;\��ff.���AUI��ATI��USH��H�-m�"H���Z��H��ttH��H���a������H��L����Z��H��H��tNH���`����tuqH���ME��H�56�"H�=��"H���7^��H��t6H��H�¾t�rJ��H��L��[]A\A]�H���"H�5ѯH�81��|[��H���"H�5��H�81��TE��H�U�"H�5��H�81��<E��H�u�"H�5��H�81��$E��@��AUATUSH��H�5s�"dH�%(H�D$1��Y��H���$H��H���`����t��H��I���^D��1�L��H��H���~I��H�<$��L�-��"1�H��A��Hc�H����1��AV��H��H�@H� uaH�$L��H��A�Յ�x|H�H�4$�� tTH�CH�SH)�H9���H���XW��H��H�L$dH3%(��H��[]A\A]�fDH�C�f.�H��H�S���L�-1�"�H���H�-�"1�H�81���C��H��"H�5�H�81���C��H�ʬ"H�5�H�81��Y��H�
ʰ��H�5"�H�=U��T����b��ff.�f���AVAUATI��US��H��H��H�5ɩ"dH�%(H�D$1��LX��H����H��H���h^����t��H���B��H���E��H�$�������1�����A�A�H����E1�I��tL���Wp��L��I����Y��I���|��H���G��H��H����1�H��H���cG��H�<$��H��L�
ũ"1�L��ATE1�H��H���O��ZY����H����n��H�L$dH3%(��H��[]A\A]A^�DM�,$���<���M�d$���4���H�<$tH���u���1����x_���H����t��������J����x�H�$����fDH��H���-`�����W���H����C��H���"1�H�81��A����`��H���"H�5֭H�81��A��H���"H�5ګH�81��W��D��USH��H�5ǧ"�ZV��H��tH��H���z\����tuWH����@��H���z��H���mF��H��H��t$H��1�H����A��H�߅�tH��[]�m���1C��H�:�"1�H�81���@��H��"H�5�H�81���@��H�ש"H�5#�H�81���V��ff.���S�wH��1�L�OL�G1�H���w H�?�V���C(X1�Z[ÐAUA��ATUSH��hdH�%(H�D$X1��D$H�D$��p��H���t��H��H����H�����Kd������L�d$H�5o�"H��L���F��H�D$�|$H�\$ H�D$0H�D$D�l$(H�D$8H�l$@��H���"H�t$ L��H�=�����y��H���y���T$HH�߅�t0�[P����twH�L$XdH3%(H��usH��h[]A\A]�f���l���D$��uW1�����D$�8���H�|$ ����@H��1��l��H���x���@H��1��vl���z����\^���wX���|$�g��ff.���AUI��ATI��US��H��H��(H�5H�"dH�%(H�D$1���S��H����H���@��H�D$���I���`��ueH�D$H�|$A��R��um�	o��H��H�ھtH���FC�����KH�L$dH3%(L���AH��([]A\A]�@I�EH�D$��t�M�m����H�|$��H�|$@��t.��D�����z���H��H���x���H�'�"1�H�81���=��@��uH�����t�����
��L���T��H�|$H���J��H�|$H�D$�Dv��H�Ť"H��1�H��I���]Y��H��H��tuL���?������KF���������H�|$t
H�|$�1p���1����Z��H�|$�p������T�������H��H�����������@1�1ҾL����S���JV��1�1�1�L���N��H��H���[���1�1ҾL���S���V��1�L���k��H��H���/���1�1ҾL���sS����U��1�L���TJ��H��H������1�1ҾL���GS����U��E1�E1�1�H�=c�"L��H�5ݨ�i��L��H���i>��H��������U��H�d�"H�5��H�81��<��H���[i�������A[��H��"H�5N�H�81��Q��f�ATH�?�"I��1�US�=��H���CP��H��tVL��tH��H���@����t'H�k H��1�H�5���bY��H��[]A\�f.�H��1��&Z��H��[]A\�fD1�H��[]A\�ff.���UH��SH��H�5��"�7P��H����H��H���SV����tuiH���:��H�=��"H�5�"H���S��H��H���Eo��H��t H��H������H��tH��[]�f�H���h��H��"1�H�81��:��H���"H�5�H�81��:��H���"H�5�H�81��P��DPXH�5��H��H�t�"H�81��b:��f���SH��H�5��"dH�%(H�D$1��;O��H��tIH��H���[U����tuVH���9��1�H��H����>��H�<$H�H�Ѓ�H�L$dH3%(uH��[�H��"H�5:�H�81���O���Y���K���ff.���SH��H�5�"dH�%(H�D$1��N��H��t_H��H���T����tuJH���9��H��1�H���1>��H�<$H��t �sb��H�L$dH3%(uH��[�D����|X�����H�8�"H�5��H�81��/O��ff.�@��SH��H�5h�"dH�%(H�D$1���M��H��t_H��H���T����tuJH���^8��H��1�H���=��H�<$H��t ��a��H�L$dH3%(uH��[�D�����W������H���"H�5ԢH�81��N��ff.�@��SH��H�5��"dH�%(H�D$1��;M��H��t_H��H���[S����tuJH���7��H��1�1�H���?@��H�<$H��t�a��H�T$dH3%(uH��[�����W���W���H�ؠ"H�5$�H�81���M��ff.�@��SH��H�5�"dH�%(H�D$1��L��H��t_H��H���R����tuJH���6��H��1�1�H���?��H�<$H��t�a`��H�L$dH3%(uH��[�����lV�����H�(�"H�5t�H�81��M��ff.�@��SH��H�5X�"dH�%(H�D$1���K��H��t_H��H���Q����tuJH���N6��H��1�1�H����>��H�<$H��t�_��H�T$dH3%(uH��[�����U�����H�x�"H�5ĠH�81��oL��ff.�@��UH��H��SH����t+�&=�������H��H��t+H��H���<���H��tH��[]��M�������H��H��u�H���Dc��H�-�"1�H�81���5�����UH��SH��H�54�"dH�%(H�D$1��J��H��txH��H����P����tucH���*5��1�H��H���M:��H�<$t&�H�L$dH3%(u-H��[]�f.�H�5��H����J��H��1�H��u���T�����H�;�"H�5��H�81��2K��f���ATI��USH��0H�t$H�5m�"dH�%(H�D$(1���I��H���eH��H���P����t�9H���[4��1�1�H�T$H��H����<��H�|$��H�l$ 1�H��H���Y9��H�|$ ��H�|$�F��H���Z��1�Hc��!F��I��H�HH� tH�HH�t$H��� tXH�~Hclj�H9���H�v1�I��I���J�������t$ L���)G��L��H�L$(dH3%(uOH��0[]A\�DH��H�����H�5�L���YI��H���B���H��"H�5��H�81��3����R��H��"H�5d�H�81��3��H���"H�5˟H�81��3��H���"H�5ϝH�81��zI���u3��H���"1�H�81��R3��f���USH��H��tQH�2�"H��H���"1�H�8��4��H��H���KN����tuaH�k 1�H�53�H����P��H��t4H��H��[]�f��{c��H��tH��H�ԙ"H�8��H�����H��"1�H�81��2��H��"H�5��H�81��2��ff.�f���SH���"H�5s�H���"H�H�;�kB��H���"H�;H�5%�H�H� �"H��HB��H�9�"�H���H��H�5�H���5��H�;�����H��H�5�~��U��H�;�H���H�5Ȅ��U��H�;1�H�����H�5ѝ�U��H�;1�H���H�5���U��H�;1�H�A�H�5Ր�U��H�;�����H��H�5���jU��H�;H��H�5���D��H�;H�i�H�5C��D��H�;1�H�2�H�5Jz�&U��H�;1�H���H�5��U��H�;�H�����H�5���T��H�;�H���H�5���T��H�;1�H���H�5ס�T��H�;1�H�$���H�5"��T��H�;1�H�\���H�5s��T��H�;1�H�����H�5��xT��H�;1�H����H�5��`T��H�;�H���H�5���ET��H�;�H�&�H�5v��*T��H�;1�[H�]�H�5ͤ�T�����H�U�"1���1��ff.���H���"1��1��ff.����;������5�����UH�5�"H��SH���D��H����H�5g�"H��H���L]��H�5%�"H���D��H��tQH�i�"H��H��H��S3����t��uH���[]�fDH��1�[]�H�ؗ"H�5��H�81��7/��H��"H�5u�H�81��/��H���"H�5A�H�81��/�����ATUH��H�5�"SH����C��H��uwH�5
�"H����C��I��H����H�5�"H���g\��H����8��H�58�"H��H���C��H��t^H��L����_��H��t6H�C H�5=�"H��H���a��H��[]A\�H��"H�5ٛH�81��R.��H��"H�5ߛH�81��:.��H��"H�5x�H�81��".��H�Õ"H�5D�H�81��
.��f.���AUI��H�5 �"ATU��H��SH��H��(dH�%(H�D$1���B��H���D�/��H�D$��������M�e��ucH�D$H�|$�VH��"L��H�0�TV��H��t��� L��H���[���H�L$dH3%(��H��([]A\A]�@I�EH�D$��t�H�|$t
H�|$�`�������wJ�����5�����O����ǐH�5y�"L����A��I��H���:����H�=�"H�|$H�0�U��H����H�|$��>��L���]<��H��H����H�r�"L�H�D$H��� ��H��H��H�P��H��L���8������H�k H�5
�"L��H���o_��H�������H�|$�_������H��"H�|$H�(�,O��1�L��H��H���4��H��H��u�H���"H�5ЙH�81���+��@H���;��H��H���o���H�e�"H�5��H�81��+��@H�HH�P�3���H�L�"H�5٘H�81��+���J��H��"H�5�H�81��vA��H����1��H���"H�5L�H�81��F+��H��"H�5��H�81��>A��ff.�ATA��H�5��"US�
@��H����H���d��H���40��H��H��tXA��t&H��H���+K��H�߃�u'[]A\�JW��f.�H�=Y�"H��H����[������,��H�h�"1�H�81��*��H�E�"H�5��H�81��|*��H�-�"H�5��H�81��d*��@����2���f���1��%���D��SH��H�t$H�5��"�&?��H��tH�|$H���4<��H�t$H��� t7H�VH�vH���7>��H�L$H��� u*H����H9�u$H��H��[�DH��H������H�Q��H�k�"H�5ЗH�81��)��H�S�"H�5�H�81��)��f.���AWA��H��AVI��H�5��"AUATUSH��H��xdH�%(H�D$h1��F>��H����H�D$H�l$ L�d$(L�l$0H�D$H�D$@H�l$HL�d$PL�l$X�*��H�D$8����E���ME1�I��H�D$H�D$@H�p�!fDH��t
Hc�I�<�H�:��H��H9�tH�PD9�|�H��t�H��H�H9�u�A9���M���UA����A����H�|$@��t%@����H���������������W��H��I���QK��L��H���FK��L��I���;K��L95�"��H��"H��L��H�
H���B��H��H����H�k H��H�\$hdH3%(��H��x[]A\A]A^A_�H�|$@����@��uH�����t�������H���"H�0�eP��H���|H�|$H�5�"�k<��H���eH���2��H��H���d���H���"H�5��H�81��6'��fDH�|$8�Z�������0��E���\L�L$8�����H�|$�_��1�1�1�H��I���A��H��H��t}L���)������U��H9��"��H9��"��H9��"�B�_��H��H���1�~,��H��H�������H�3�"H�5��H�81��j&��f.�1�1ҾL���/=���?��H�5c�"1�1�L���7.��L��H���\(��H���9���H�|$�_��H���QO�����j?�����:���1��H��H���
H�Ǿ�4���H����8�������%��H���'����nA��H������H�|$8t
H�|$8�X����D���C��H�3�"H�5 �H�81��z%��H��"H�5|�H�81��b%��H��"H�5�H�81��J%��H�K�"H�5��H�81��2%��H�Ӊ"H�5�H�81��%��H�ˌ"H�5��H�81��%���=D��H���"H�5;�H�81���$��H���"H�T$H�5<�H�81���$��H�y�"H�T$H�5�H�81��$��ff.���USH��H�5��"�9��H��tUH��H���?��=���H���'V��H���^��H���)��H��H��tTH��1�H���V��H�߅�t#H��[]�P��H�1�"H�5}�H�81��(:���C&��H�Ԉ"H�5ҒH�81��#��H���"H�5��H�81���#��H��"H�5��H�81���#��ff.�AWAVAUA��ATI��UH��SH��H�5
�"�8��H����H��H���>��=��^H���6U��H��H���X��H���*H���A�����H��E1��Q��I��H��tH���P��L��I���*:��I����\��H���Z(��H��H����A��tHM��t[H��L�
0�"L��1�ATH��E1�H���Q����XZH��uPH��[]A\A]A^A_�DO��@H��H��M��t%��%������@H��H���
>�����f��+$������$��H�C�"��H�5L�H�81��h"��H�)�"H�5i�H�81��P"��H��"H�5��H�81��8"��H���"H�5b�H�81�� "��H�!�"H�5ȐH�81��"��H�	�"H�5U�H�81��8��������������AUATI��UH��S��H��dH�%(H�D$1��#��H�$������xb1���u;A��H��u[1�H��L��L�����H�L$dH3%(u]H��[]A\A]�L�m��t�H�m��~�H�<$tH���T���1����>���H���T���fD�)����x�H�$�o����9@��f���SH��H�t$H�5C�"H�$��5��H���H��H����;��=���H���kR��H�|$H���2��H���2��H�$L�A�� tFH�yHc�A��H9��|H�t$H�IH��� u;H��H��1�I�ك���<����uBH��1�[ÐH�t$I��H��A��H��� t�H�~Hclj�H9�u"H�v1�I���<����t���uH���[�� ��H���"H�5ȎH�81�����H�ۈ"H�5��H�81�����H�È"H�5�H�81��5��f.���USH��(H�t$H�5�"dH�%(H�D$1��u4��H���H��H���:��=���H���Q��H�|$H���a1��H���yM��H����H���Y��1�Hc���0��H��H�HH� tH�HH�t$H��� tMH�~Hclj�H9�uLH�v1�I��L�D$�L&����u9�t$H����1��H��H�L$dH3%(u2H��([]ÐH��H��������H�_�"H�5��H�81�����=��H�B�"H�5d�H�81��i��H�j�"H�5�H�81��Q��H�R�"H�5��H�81��I4��f���ATUH��H�5��"S�3��H����H��H���59��=���H���O��H��H�5x"I����2��H��H��tN1����!��H��H�xH� u,E1�L��H���0����xcH��Hc�� ��H��[]A\�f�H�x��H�+�"H�5��H�81��r��H�s�"H�5�H�81��Z��H�[�"H�5��H�81��R3��H��"H�5G�H�81��*��f.���UH��SH��H�5t�"�2��H����H��H���#8��=�ukH���N��H��H��t3H�5w"H����1��H��tvH��H���0����uH��H��[]�D1�H���n0����v�H�Z�"H�5��H�81����H���"H�5)�H�81��i��H�j�"H�5��H�81��a2��H��"H�5s�H�81��9��f���USH��H�t$H�5��"�1��H����H��H���17��=���H���M��H�|$H��u#1�H���)����w5H�D$H��[]��H�|$��>��H��H��H�������u$H��t�H�`�"H�5ˊH�81�������u�H�D$H��[]�H�p�"H�5�H�81��W��H�X�"H�5��H�81��O1��ff.�@��UH��SH��H�5��"�0��H��tOH��H���76��=���H���L��H�5}u"H��H����/��H��tJH��H����<����u"H��H��[]�H�ă"H�5�H�81��0��H�l"H�5�H�81����H�D�"H�5чH�81��{��H�|�"H�5#�H�81��c����AUI��ATI��USH��H�-��"H���=/��H��tsH��H���]5������H��L���/��H��H��tMH���:5��=���H���K��H�����H��H��tZH�¾�H�������t&H��L��[]A\A]�H�Ƃ"H�5�H�81��/��H����/��H�f~"H�5�H�81����H�N~"H�5��H�81��u��H�v�"H�5�H�81��]��H�~"H�5��H�81��E��DUSH��H�C�"H�|$H�0�B��H��tIH�|$H�5�s"�.��H��H��ty��7��H��H����H��H����:����tqH��H��[]�fDH�|$�^R��H���B����tf���;O��H��H��tDH�Ǿ�J��H�߾���H��H��[]�H�@�"H�5ͅH�81��w��H���.��H�0}"1�H�81��\��H�}"H�5�H�81��D��@��AVI��AUATI��US��H��H�� L�-�~"dH�%(H�D$1�L���-��H����H��H���"3����������H�D$������������I�H�D$����M�v����H�|$��H�|$H����H��}"H�0�\@��H����H�|$L���f,��H��H���H���2��=��H���H��H�����H��H����H�ھ�H���������H�L$dH3%(L���H�� []A\A]A^��H�D$H�|$A��3���H�|$�I��H�|$H���)����5��H��H���x���H�d{"1�H�81����H��"H�|$H�0�\?��H���L���k-��H�|$I���O��H��}"L��1�H��I���GI��H��H��t?L���g������f�������W���H�|$t
H�|$�I���1����s3��1�1ҾL����,���J/��L��1�L��H�}"��3��H��H��u�1�1ҾL���,���/��1�L���!��H��H���c���1�1ҾL���q,����.��1�L����,��L��H�����H���C�����.��f�H�|$����H���#���H�O~"H�5�H�81��F+��H�7~"H�5ރH�81����H���6+��H��y"H�5��H�81����H��y"H�5��H�81������!4�����U1�1�H��AWAVAUATSH��(dH�%(H�E�1��3;��Lc�I��L9��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%���H��L��H����:��H����L���	��I��E��~yE�l$�I��I��J�+H�E�@�;�!���L�kI������L��I����*��L��H���
E���M��tL���*��H��L��H����D��L��L����D��H;]�u�H�M�dH3%(L��uDH�e�[A\A]A^A_]��H)�H�L��*���H�����H��|"H�5E�H�81��r���2��ff.�f�ATH��y"I��1�US���H����'��H��tVL�⾘H��H�������t'H�k H��1�H�5Am��0��H��[]A\�f.�H��1��1��H��[]A\�fD1�H��[]A\�ff.�SH���A��H9��"tH9��"t%H9v�"u#�[�D�[�f��[�H�*w"H��H�5�H�81��n��ff.���AWAVAUATI��H�5zl"UH��SH���<'��H����H�5�"H��H����?��H�5�l"H���'��H��H����L���.���E1�1�H��L�=�v"��H��A��M��8��I��H��tMH��1��}#��M�I��H�HH� u*M��D��H��H����7��H��tH��L��[]A\A]A^A_�f�H�H��H�+y"H�5[�H�81��r��H�#y"H�5�~H�81��Z��H��x"H�5|~H�81��B��f���UH�5dk"SH��H���'&��H��t@H�5ۚ"H��H���>��H�5�k"H���&��H��tJH��H�������u"H��H��[]�H��x"H�5~H�81�����H�Sy"H�5��H�81����H�cx"H�5�}H�81����f.���UH�5�j"SH��H���w%��H��tJH�5+�"H��H���>��H�5�j"H���Q%��H��tTH�-u"H��H��H��w=����u"H��H��[]�H��w"H�5J}H�81����H��x"H�5
�H�81����H��w"H�56}H�81�������UH�5j"SH��H����$��H��tJH�5{�"H��H���`=��H�59j"H���$��H��tTH�}t"H��H��H��;����u"H��H��[]�H�w"H�5�|H�81��`��H��w"H�5mH�81��H��H��v"H�5�|H�81��0��PXH�5s|H��H��v"H�81����f���UH�54i"H��SH���#��H��tpH�5��"H��H���<��H�5ii"H����#��H��tEH��H���&����t��uH���[]�@H��1�[]�H�(w"H�5�~H�81�����R���H�#v"H�5�{H�81��j��f.���UH�5�h"SH���J#��H��t7H���G��H���u��H��H��tOH��1�H���p*��H�߅�t#H��[]�:��H��u"H�5L{H�81��
���!��H��u"1�H�81���
��H��u"H�5�{H�81���
��fD��H��H�5Ah"�"��H��tH����)��H��H�H�D��^���ff.���UH�5h"SH���j"��H��tAH��H���0��H��H��t"H����*��H��H��[H��]����f�H���[]����ff.�@��UH��H�5�g"SH���!��H��tH��H������H�߉�����H��H��[]����ff.���H��H�5Ag"�!��H��tgH���'����t*��tE��t0��H�?t"H�5h�H�81��v��fDH�=A�"H���=��H�=)�"H����<��H�=�"H����<������ff.���USH��H�5�f"H���!��H��t3H��H���u�#����H�����H��H��[]�fD�����������f.���H��H�5Qf"� ��H��tH���(��H��H�H�D��n���ff.���H��H�5f"�| ��H��tH����&�����h��H��H���,"���'������SH�5�e"H��dH�%(H�D$1��+ ��H��tJ1�H���,4��H��H�$�0.��H��o"H��H��H��2����u7H�L$dH3%(H�$uH��[�H��r"H�5xH�81���
���)��H�pr"H�5�zH�81��
�����SH�5$e"H��dH�%(H�D$1��{��H��tJ1�H���|3��H��H�$�-��H�Ao"H��H��H��k����u7H�L$dH3%(H�$uH��[�H��q"H�5jwH�81��
���O)��H��q"H�5_zH�81��	�����AUATI��H�5nd"UH��SH��H�T$H�$����H��tSL��H�5�c"H�����I��H��tiH�|$�,��H��I���,��L��L��H��H���5����u&H��H��[]A\A]�H� q"H�5�vH�81��W	��H�q"H�5�yH�81��?	��H��p"H�5avH�81��'	�����UH��H�5�c"SH��H�����H��u/H�5�c"H������H��tKH�����H��t&H�C H��H��[]�H��p"H�5JyH�81����H�ip"H�5�vH�81����H�Qp"H�5�uH�81�������UH��H�5c"SH���g��H��tDH�5�b"H��H���P��H��tEH�,m"H��H��H��7������HD�H��[]�H��o"H�5\uH�81�����������ATI��UH��H�5��"S�5��H�5��"H��H���5��H��H���I���H��u[1�]A\�DL��H�5�a"���I��H��tTH��H�5�a"���H��H��t=H�5b"H���{��H��tAH�Wl"L��H��H�
H����'���¸��t�[]A\�H��n"H�5otH�81��5��H��n"H�5stH�81����ff.�f�PXH�5�uH��H�p"H�81�����f���SH�5Lm"����H��t1H��H���!��=�u7H���8��H���H<��[H��H�H�Ѓ��H��o"H�5�pH�81�����|���ff.����SH�5�l"�o��H��t.H��H���!��=�uLH���8��H���x$����u�[�H�=o"H�5�pH�81��4��H��j"H�5�vH�81����H�
o"H�5�tH�81�����@��SH�5Ll"����H��t1H��H��� ��=�u7H���7��H���3��[H��H�H�Ѓ��H��n"H�5�oH�81�����|���ff.����SH�5�k"�o��H��tAH��H��� ��=�uGH���7��H���3��H��tH��[�J.��f.��[�H�*n"H�5voH�81��!�����ff.����UH��H��SH����H��H��t3H��H���x�H��H��t H���
����t/H��H��[]�f.�H������H�ii"1�H�81����H�Vi"H�5>uH�81��}��ff.�f���UH��AWAVAUI��ATI��S��H��H��H�5�"dH�%(H�E�1���1��H�5[^"L��H�E����H���"H�}�H�5�^"I�����H��x���H���^H�|l"H�8�D!��H�u��I��H������H�5�]"L�����I��H����H�E�H��p���H�E�H�E�H��h���H�E�H�E�H��`���H�E��s��H�E����{����1�I�EH�E�����H�E�H�E�H����H�]�H���#6��H�}�@����DH��p����4&��1�H�}�H����H��g"I��L��L��H��x���L��'�����4H�M�dH3%(L���H�e�[A\A]A^A_]��I�EH�E����O���I�EH�E�����H���F���H�}�@���W���H������J���������<�����2��H�}����1��H�E�L�(A�� �NH�@H��p���H�U�H��� �zH����H��H;�p�����H��p���H���^��H��X���H���KH��H��H�E�H��H��H���H���H)�H��H9�tH��H��$�H9�u��t	H)�H�L�H�T$H���H��p���H��h�����E1�H�]��=�H��J��H��H�E��l$��H��h���H�u�H��X���J��I���=2��L;�p���}VH�E�H� u�H�@ 뵐H��h����$$��H�����@��	�����H�U��y���I��A��L��p������H��p���H����H��H��H��H%�H�E�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�\$H���H��p���L�3E1�L�h�H��7�Hf.�H��J�<�H�5aZ"�,��J�D�H���*I��M9�tH�E�H� u�H�@ ��1�H�}�tH��`����
#��H��H��d"H��H��p���I��H��x���L��h���L���0�'��ZH�}�Y�����2��H�}��2�����H�B���H��������H9�p���wzH��p���H�}�L��H��L��L��P����*��H��L��P���H��h�������H�]�H��p���H��L����*��H������H��p���H��������H9�w
L����H��p�������H��f"H�5lH�81�����H�}�t	H�}��1�������+������1��H�}��1��H�If"1�H�81����H�Ff"H�5�kH�81��}���H�c"H�5�rH�81��e���DUH��1�H��X"SH��H�Wg"H�8���H��H���d	��H��tH�C H��H��[]�H��e"H�5VlH�81��	���f�H��f"ATI��H�X"UH��1�SH�8���H��L��H���/��H��t&H�C H���_���H�5x�"H��H����0��H��[]A\�H�Fe"H�52kH�81����ff.�f���SH�5X"�o��H��t)H��H����2��H��tH��H��[�N���fD�[���ff.����USH��H�5�c"���H��tYH��H���:��=�u_H���.��H��H���2��H��H��t H���2��H��H��H��[]�����H���[]�H��e"H�5	gH�81�������ff.�@��SH�5�b"���H��tAH��H�����=�uGH��� .��H���1��H��tH��[���f.��[�H�:e"H�5�fH�81��1������ff.����UH��SH��H�5db"���H��t1H��H�����=�uOH���-��H�������u"H��H��[]�H��d"H�5fH�81����H�j`"H�5RlH�81����H��d"H�59jH�81��y���f���USH��H��tQH�Za"H��H��a"1�H�8����H��H���k��=�u_H�k 1�H�5QUH������H��t2H��H��[]�����H��tH��H��`"H�8��H�����H��_"1�H�81�����H�>c"H�5�kH�81����ff.�f���AUH�5|kATUSH��H��b"H��`"H�;H��
��H�C_"H�;H�5RkH�H�7a"H��_
��L�%0c"H�Q`"H�5.kH��I�$H��;
��H�-Dc"I�$H�5kH�;H�E�
��L�->a"H�}H�5FL�%�b"I�UI�$�	��H��a"I�<$H�5�EH�I�U��	��H�za"H�=�jH��s��H�=�jH���"�`��H�=�j�T��H�=�jH���"�A��H�=�jH�k�"�.��H�=�jH�P�"���H�=�j���H�=|jH�)�"���H�=tjH��"����H�;�H�5`jH��"�>#��H�;�H�5Qj�*#��H�;1�H��H�5�h���H�;�H���H�5�d���H�;�����H���H�5AE���H�;�H�M��H�5|K���H�;1�H����H�5�j�i��H�;�H�J��H�5�i�N��H�;1�H���H�5"S�6��H�;�H���H�5�i���H�;1�H�����H�5S���H�;�H����H�5@W����H�;1�H��H�5�b����H�;1�H���H�5�c���H�;H��bH�5,i���H�;H��cH�5#i��
��H�;1�H�����H�5�c�t��H�;H��cH�5Ah�
��H�;1�H���H�5h�F��H�;�H�'��H�5�h�+��H�;�H����H�5�h���H�;�H�1��H�5�h���H�;�����H�6��H�5�b����H�;H��bH�5
V�$
��H�;1�H����H�5�?���H�;1�H� ��H�5�U���H�}H�5������H�}�����H���H�5
C�h��H�}�H�X�H�5GI�L��H�}�H���H�5�I�0��H�}H��IH�5I�y	��H�}1�H�����H�5�f���H�}�H� �H�5�f����H�}1�H�W�H�5[f����H�}1�H���H�5,f���H�}1�H�5�H�5ig���H�}1�H���H�5[g���H�}�H�`�H�5Ig�d��H�}1�H���H�5;g�K��H�}�H�K�H�55g�/��H�}1�H���H�5lc���H�}�H����H�5g���H�}1�H�M�H�5g����H�}1�H����H�5T����H�}1�H�{��H�5�=���H�}1�H�b�H�5�S���I�<$H�5{�����I�<$�����H����H�5A�j��I�<$�H�z��H�5IG�N��H�=�f���I�<$E1�1�H�ƺ�"��I�<$�H�<�H�5pG���I�<$H�`GH�5_G�Y��I�<$1�H���H�5
f����I�<$1�H�#��H�5�e����I�<$1�H���H�5�e���I�<$1�H�1�H�5�e���I�<$1�H�h�H�5�e�|��I�<$�H�,�H�5�e�`��I�<$�����H��H�5�F�D��H�=�e���H�}"H��[]A\A]�fD��USH��XH�5�Y"dH�%(H�D$H1����H����H��H���6������H���U��H�L$H�T$H��H��H�t$�+���H��H�T$(H�t$ ���H�L$@H�T$8H��H�t$0�*���
$��H�|$H������H�=A?H�����H��H��H����H�|$����H�=�?H���p���H��H��H����H�|$�X���H�=�JH���D���H��H��H���V�H�|$ �,���H�=cH������H��H��H���*�H�|$(����H�=9]H�����H��H��H����H�|$0�����H�=3fH�����H��H��H�����H�|$8����H�=fH�����H��H��H����H�|$@�|���H�=�eH���h���H��H��H���z�H��H�L$HdH3%(uH��X[]�H�1Z"H�5}[H�81��(���S��H�Z"H�5meH�81���ff.���AVI��AUATE1�USH�� H�t$H�T$H�L$H��t
H�|$����I��1�H�|$t
H�|$����H��1�H�|$t
H�|$���H��H�5�V"L���{��I��H����H���������L�����I��M��tL���f���I��H��tOH��tH���Q���H��H��t<H��tH���<���H��H��t'H��H��L��L�������tlH�� L��[]A\A]A^�1�L���%��H�����1����H�WV"1�H�81����H��X"H�5dH�81���H��X"H�5�YH�81����L����
��H����
��H���
��H�|U"H�5�cH�81��c���AUI��ATU1�SH��H�t$H�$H��t
H�|$�T��H��1�H�<$tH���@��H��H�5~U"L�����I��H����H���*
����uwL���M��I��H��tH����H��H��t5H��tH�����H��H��t H��H��L����
����t`H��L��[]A\A]�H������1�����H�U"1�H�81��~�H�W"H�5�bH�81��f�H�gW"H�5�XH�81��^��H�����H���~��H�?T"H�5�bH�81��&�fD��AVI��AUATE1�USH�� H�t$H�T$H�L$H��t
H�|$���I��1�H�|$t
H�|$����H��1�H�|$t
H�|$����H��H�5T"L�����I��H����H����������L������I��M��tL����I��H��tOH��tH����H��H��t<H��tH���l�H��H��t'H��H��L��L��������tlH�� L��[]A\A]A^�1�L���U��H���M��1��F��H��S"1�H�81����H��U"H�5MaH�81����H��U"H�5(WH�81�����L���
��H����
��H����
��H��R"H�5LaH�81�����AUATUSH��(H�5�R"dH�%(H�D$1��f��H���%H��H���������H��L�d$���H�t$L��H��H�����H�|$tH�|$t	L�-"Q"�L�-YT"1�H��A��Hc�H����1����H��H�@H� u^H�D$L��H��A�Յ�xiH�H�t$�� tOH�CH�SH)�H9���H�����H��H�L$dH3%(��H��([]A\A]ÐH�C�f.�H��H�S���H��P"1�H�81��P�H�QT"H�5�_H�81��8�H�9T"H�5�UH�81��0��H�
	a��H�5�_H�=�I���<
��ff.����AVAUATI��US��H��H�� H�59Q"dH�%(H�D$1����H����H��H����������H���
��H����H�D$���^���1�����A�A�H���'E1�I��tL������L��I���;��I����#��H���k�H��H����H�T$H�t$H������H�|$��H�|$��H��L�
"Q"1�L��ATE1�H��H�����ZY���~H���C��H�L$dH3%(��H�� []A\A]A^�f�M�,$���-���M�d$���%���H�|$t
H�|$�c���1�������DH��H�������������H���u�H��N"1�H�81��2�f�H�|$�����������x�H�D$����H��H�	R"H�5b]H�81����H��Q"H�5=SH�81�������USH��H�5'O"���H��tH��H��������uWH�����H���U"��H�����H��H��t$H��1�H����"��H�߅�tH��[]������H��M"1�H�81��N�H�OQ"H�5�\H�81��6�H�7Q"H�5�RH�81��.���ff.���AUI��ATI��USH��H�-]N"H�����H��ttH��H���
������H��L������H��H��tNH��������uqH���
��H�5�O"H�=�L"H���'��H��t6H��H�¾�b�H��L��[]A\A]�H�uP"H�5�QH�81��l���H��L"H�5tMH�81��D�H�EP"H�5�[H�81��,�H��L"H�5�[H�81���@��SH��H�OH�W�wH�?����C 1�[�ff.�AWA��AVAUATUH��SH��HdH�%(H�D$81��D$H�D$���I�����I������M����M��I������
1�M��u�����@tXH��s��L�������u�L���\��L��E1��a��L�����H�L$8dH3%(L����H��H[]A\A]A^A_��+
������H�\$H�5OK"L��H�����|$L�l$L�d$D�|$ L�t$(t|H��K"H�t$H��H�=��������L�����L������T$0���a���L������D$��uLE1��I����D$�r���L��E1����L���r��L���������L��L��D��L�������D$0�����|$�@
���k��ff.�ATH�K"I��1�US���H�����H��tVL��H��H�������t'H�k H��1�H�5?���H��[]A\�f.�H��1��f��H��[]A\�fD1�H��[]A\�ff.���UH��SH��H�5�J"�w���H��t}H��H�������uUH�����H������H��H�����H��tH��H������H��t
H��[]�H���@��H��I"1�H�81��
�H�M"H�5gXH�81���H��L"H�5BNH�81����ff.�f�PXH�5/XH��H��L"H�81���f���SH�5J"���H��tH��H�������u'H�������[�H�|L"H�5�MH�81��s������ff.���SH��H�5�I"dH�%(H�D$1��+���H��t_H��H���K�����uJH���n��H��1�1�H������H�<$H��t���H�T$dH3%(uH��[����������H��K"H�5MH�81����ff.�@��SH��H�5�H"dH�%(H�D$1��{���H��t_H��H�������uJH�����H��1�1�H�����H�<$H��t�Q��H�L$dH3%(uH��[�����\���G���H�K"H�5dLH�81�����ff.�@��SH��H�5HH"dH�%(H�D$1�����H��t_H��H�������uJH�����H��1�1�H���o��H�<$H��t�
��H�T$dH3%(uH��[����������H�hJ"H�5�KH�81��_���ff.�@��SH��H�5�G"dH�%(H�D$1�����H��t_H��H���;�����uJH���^��H��1�H���
��H�<$H��t ��	��H�L$dH3%(uH��[�D���������H��I"H�5KH�81����ff.�@��SH��H�5�F"dH�%(H�D$1��k���H��t_H��H�������uJH�����H��1�H���
��H�<$H��t �C	��H�L$dH3%(uH��[�D����L����7���H�I"H�5TJH�81����ff.�@��SH��H�58F"dH�%(H�D$1���H��t_H��H��������uJH�����H��1�1�H�����H�<$H��t���H�T$dH3%(uH��[����������H�XH"H�5�IH�81��O���ff.�@��SH��H�5�E"dH�%(H�D$1���H��t_H��H���+�����uJH���N��H��1�1�H���/�H�<$H��t����H�L$dH3%(uH��[�����������H��G"H�5�HH�81���ff.�@��SH��H�5�D"dH�%(H�D$1��[�H��t_H��H���{�����uJH�����H��1�1�H����H�<$H��t�1��H�T$dH3%(uH��[�����<����'���H��F"H�5DHH�81����ff.�@��AWAVI��AUATUH��S��H��dH�%(H�D$x1�H�=�g"��H�D$L�d$H�D$0H�D$PL�l$ H�D$(L�d$XL�l$`H�D$h�O��H�D$8�…�t0��~���o�	������������$���������$������H�t$8��H�E�����E1�H�D$H�D$XH��tH�UH�H�D$`H��t��tL�}L�8H�D$hH��tH�T$0H����RH����H�|$(L�D$@1ɺH�5�f"���H�=�f"H�\$@H���3��������H9�tDH�=mf"H�\$@H���?���������H9�t H�|$@@���A����f.�H�|$H�f��H�5gB"L��I�����I��H���dH�|$�>��L��H�$���L���������H��H���H�$1�H�t$8M��H���C�����H�|$8E1���������������H�|$8E1�����������H�|$81�M������z�����{H�t$ H��� ��H��H����H��������NH�t$H��� ��H��H����H�����ut�7�H������1�H�L$xdH3%(�H�Ĉ[]A\A]A^A_���H�=xO����	H�=sOH��d"���H��d"��������H���g����H�VH�v�[���H�VH�v����H�=#O����H��H�=d"���H�|$8����l����H�=�5��o��H��H�d"����k������Hc�H�D������H������������������H�D$0H��tyH�|$0�$�R�L�|$0D�C�H��M���3���$�����������H��D��HD�H�D$8H�t$0H�ƃ�u<H������H�|$8�)������H�=}71����H�t$8�+���H�t$8��DH��~���u&H�D$XL�|$H������H�D$`H���&����(���L��H�EI��H�D$H�D$XH���������������H���
��H�/>"1�H�81��������1����W���1҃��H��A"H�5�BH�81��|��H�|$8�����oEH��H���	��H�=�6H�C1�����H�t$8�3���Hc�H�|���H�D$8E1���H�����@H�������$����$H�D$0�<������UH��SH��(H�54>"dH�%(H�D$1���H���|H��H��������H����H�T$H�t$H���P��H�|$t(H�|$�tH�L$dH3%(uAH��([]�@H�5s1H�����H��HE���H�3@"H�5AH�81��*��U����@���AUATA��UH��SH��H��dH�%(H�D$1�����H�$����E���%L�+A��uZ�L��A��tq���H�މ����H��H��tqH��H���r�H��taH�L$dH3%(��H��[]A\A]�fDH�[A����H��t���toH�L��A��u����H�މ��T�H��H��u�H���D
��H��;"1�H�81��������E��~QH�$L�+A��t)H�[A��u:H��t�H�������H������H������H������H��������H�<$tH�������D�������ff.�@��AUI��ATUS��H��H��(H�5�;"dH�%(H�D$1��N�H����H��H���j����H�����1�1�H��H��I���g��H�<$�����H�D$�������TI�EH�D$�����H�|$���L����1�Hc��k�H��H�PH� tH�PH�D$H�8�� ��H��H�p��Hc�H9��SA��L��������(Hc�H���n�H��H�L$dH3%(�H��([]A\A]�@1�I�m���}H��ulH���tT������9���H�pH�x�{���������~KI�UH�D$H�T$��u�H�������H�|$������@�S������@H�|$����H�|$t
H�|$���������H��<"H�5�=H�81���H��8"H�5bHH�81��Y��H�Z<"H�5�GH�81��A��H��8"1�H�81��.���i��4��@��AUI��ATUS��H��H��(H�5k9"dH�%(H�D$1����H����H��H���
�����H���)���1�1�H��H��I�����H�<$�����H�D$�������TI�EH�D$�����H�|$��L�����1�Hc���H��H�PH� tH�PH�D$H�8�� ��H��H�p��Hc�H9��SA��L���a�����(Hc�H����H��H�L$dH3%(�H��([]A\A]�@1�I�m���}H��ulH���tT������9���H�pH�x�{��������~KI�UH�D$H�T$��u�H�������H�|$�a�����@��������@H�|$�>���H�|$t
H�|$�*��������H�*:"H�5v;H�81��!�H��6"H�5FH�81����H��9"H�5SEH�81�����H�b6"1�H�81������	�����@��AUI��ATI��US��H��H��8H�57"dH�%(H�D$(1���H���)H��H�������EH�����1�1�H��H��H�����H�<$�H�T$ H�t$H������H�|$��H�|$ ���
��H�D$���9����I�EH�D$�����H�|$��H���(��1�Hc��~�I��H�PH� tH�PH�D$H�8�� ��H��H�p��Hc�H9���A��H���������kHc�L����L��H�L$(dH3%(�\H��8[]A\A]��H�5k)L����H������H��4"H�5/DH�81�����1�M�e����H��utL��A��t[����������H�pH�x�8��������~KI�UH�D$H�T$��u�H�������H�|$������@�#������@H�|$�n���H�|$t
H�|$�Z���������H�Z7"H�5�8H�81��Q�H��3"H�52CH�81��)��H�*7"H�5�BH�81����H��3"1�H�81�����9����@��AUI��ATI��US��H��H��8H�584"dH�%(H�D$(1���H���)H��H��������EH����1�1�H��H��H������H�<$�H�T$ H�t$H���7���H�|$��H�|$ ���:��H�D$���9����I�EH�D$�����H�|$�0��H���X��1�Hc����I��H�PH� tH�PH�D$H�8�� ��H��H�p��Hc�H9���A��H���4����kHc�L�����L��H�L$(dH3%(�\H��8[]A\A]��H�5�&L�����H������H��1"H�5_AH�81��G���1�M�e����H��utL��A��t[���������H�pH�x�8���������~KI�UH�D$H�T$��u�H�������H�|$������@�S������@H�|$����H�|$t
H�|$���������H��4"H�5�5H�81���H��0"H�5b@H�81��Y��H�Z4"H�5�?H�81��A��H��0"1�H�81��.���i��4��@��AUI��ATI��US��H��H��(H�5h1"dH�%(H�D$1�����H���"H������H�D$����������t}I�EH�D$��txM�m���oH�|$�4H�|$������I��tnA����I���uc����L����H��H����H��/"1�H�81��A���H�D$H�|$������H�|$A�@��tA�������@����L�����H�|$H�����H�|$H�D$���H�1"H��1�H��I���[�H��H����L������H�ھH���w������H�L$dH3%(L����H��([]A\A]�DA�H�|$�H�����������[���H���fD�+�����r���H�|$t
H�|$�����1�����H������
��������
�����1�I���i���A��o���L������H�|$I�ʼn����Q���1�1ҾL�������1�1�1�L���@��H��H�����1�1ҾL���c�����1�L���$�H��H�������1�1ҾL���7����1�L�����H��H�������1�1ҾL�������1�1�1�L���H���H��H���]���1�1ҾL�������V�1�L�����L��H�����H���1���H�Y-"H�5m4H�81����H��0"H�5
2H�81����H������G������fD��AWAVI��AUATI��US��H��XdH�%(H�D$H1�H�=nQ"��H�D$ �:��H�D$(A�Dž�t2��~�������������}�D�����������T����H�D$(�`L�l$ I�,$I�T$H�T$���DH���jL��L�D$01ɺH�5�P"����H�=�P"H�\$0H����%���A�����H9�tBH�=sP"H�\$0H���%����A�����H9�tH�|$0@���&�1��A��fDH�|$8���L��I�����H��I�����H��Hc�H�T$(�h���H�|$I�����H�t$(1����H����H��H����1�H�t$ M��L��H���������H�|$ E1���������������xH�|$ E1�D���������UH�|$ 1�M����������3H�t$H��� ��H��H����H���������H�uH�E tH�uH�T$(H��������H�t$(H�����H�����H��H�L$HdH3%(��H��X[]A\A]A^A_��H�=�9�/����	H�=�9H��N"����H��N"�3���H�VH�v�D���H�=�9����H��H�eN"�����H�|$(�6�������H�=: ����H��H�%N"������A������Hc�M�l�A���!��I��������A�E�������L�l$ I��uH�D$(I�,$���H�|$ ���H�l$ �s�I��H�����E������������M��H�L$(��LD�H��L�l$ ��uH���X���H�|$(�\����I����H��L�l$ ���z���I�$��uH��H���k���@H���Z���H�D$(�f�H���(���H��("1�H�81����1�L�l$ ������/��H�|$(��{�H��I�$H��,�H�=!H�C1��J��H�SH�+L�l$ H�D$(H�T$����Hc�I�|���H�L$(1��H�����H������A��I��H�D$ ���1�H�=� ����I�T$L�l$ H�D$(I�,$H�T$�v���f���USH��H��tQH�2)"H��H�x("1�H�8����H��H���+����uaH�k 1�H�5H�����H��t4H��H��[]�f�����H��tH��H��("H�8���H�����H�)'"1�H�81����H��)"H�5�6H�81��}���ff.�f���SH�l'"H�5�6H�~)"H�H�;�K��H��&"H�;H�5D6H�H�("H��(��H�9("�����H��H��H�5�,H�����H�;�����H����H�5m
���H�;�H����H�5���H�;1�H���H�5�,��H�;1�H���H�5�+�}�H�;1�H����H�5��e�H�;�����H����H�5n,�J�H�;H�_,H�5}���H�;H�I,H�5#�~��H�;1�H����H�5*	��H�;1�H����H�5����H�;�����H��H�565���H�;�����H���H�5*5��H�;�����H���H�55��H�;�����H���H�55��H�;�����H����H�55�g�H�;�����H���H�5�4�L�H�;1�H���H�5�4�H�;1�H��H�5���H�;1�H�P��H�5���H�;1�H����H�50���H�;1�H����H�5N*���H�;1�H����H�5\3��H�;1�H�0��H�5I3��H�;1�H�h��H�563��H�;�H�}��H�5�*�q�H�;�H�"��H�54�V�H�;�H�w��H�5�3�;�H�;1�H���H�5�2�#�H�;�H�5�3�O�H�;�H�5�3�;�H�;�H�5�3�'�H�;[�	H�5�3��f���H�������H�H��H�Ѓ��f���UH��SH��H��H�|$H�t$����H����H�|$H�7�� u!H��H�����y�H��H��[]��H�GHcЉ�H9�uH��Q�H��H��[]�H���_���ff.�@��H��H�|$H�t$�I��H�|$H�7�� u!H��H������H�D$H����H�GHcЉ�H9�uH����H�D$H���H���߼��ff.�@��UH��SH����tF�����1�Hc��M��H��H�xH� tH�x���r����t7���tH��H��[]���������H�""H�5\2H�81��G���H�""H�592H�81��/���ff.�@��H��H�|$H�t$���H�����H���z���t
�H���H��!"1�H�81��ٻ��f���H��H�|$H�t$�I���H���A����t
�H���H�[!"1�H�81�菻��ff.�@��H��!"SH�5�1H�8�u��H��""H�� "H�5~1H��H�H��B��H�� "H�;�H�5])H�H�������H�;�H�>���H�5A1����H�;�H����H�511���H�;�H����H�5'1���H�;�H�����H�51�q��H�;1�[H�����H�51�X������g����S�5yE"H���
�H������5gE"H����[H����ff.�UH���SH��dH�%(H�D$1�����H��H���b��H������H��H����H������H�����H��H�����H�t$H���g�H��Hc�H�t6���Hct$H��H�t6���H�T$dH3%(u
H��H��[]�����fD��AUI��ATUSH��(H�_D�gdH�%(H�D$1��r��I�H�D$L9�s,DH�k�H��H��H�����H�|$H���>�I9�w�H�5BE"I�}�H�L$�?�H�|$H�D$� ��H�D$H��� u3H����H��H���w*H�L$dH3%(uH��([]A\A]�@H�P�����H�=�D"H�5'/1�蠸����UH��H��SH��H��H�5�D"�1�H�8�� u&H��H��H�E��Hc�H9�u�;H��1�[]�@H�PH�xH�U���M���ff.�f�UH��SH��H�5�"���H��tsH��H������xH���[]�H�5C"H����H���a�H�hH���u�H���=��H������uH��誺����u�H�=�C"H�5�2裷��H�� "H�5�2H�81�苷��ff.��������H���5bB"�-��H��H�������H�"1����ff.���ATA��UH��SH��H��dH�%(H�D$1����H�$����E���0tkH�mA���H�5�"H������I��H��tWH��"H��H�0�3���H���H�5cA"H����1�1�H������tzH�H���f�H�5)"H���q��I��1����H��L�����H��H�L$dH3%(��H��[]A\�@�#���E��xbH�$uHH��t��H�����4����H������H����H�=�	�o�H��H��@"�F���H�mA��u
H��u����H�<$tH�����1�D���������H�J"H�5�0H�81�葵�����USH��H�50"H���w��H���tH��H�H��1ɾ*�:�H��H��[]�H���(��H������USH��H�5�"H���'��H���tH��H�H��1ɾ,���H��H��[]�H������H������H��H�5�"����1ɺ��!H�����H���ff.���SH��H�t$@��u|H�����tsH��ƒ���tf��uaH�5*"�u��H�|$H����H�L$H� t*H�I1Ҿ\H���'�H��t'H�D$H��[��H����f.�����H�=L@"1��
���ff.�f�U1�H��1�SH�����H�5�?"1�1�H��I��L�vH����H��H��[]�@��AT1�USH��H��dH�%(H�D$1��D$���H��t\�5�>"H��H������I���/���L��H��H���q�H���)��H��H���^�H�T$H��H�=�F���HcT$��u!1�H�L$dH3%(u*H��[]A\�fDH�5!?"H�TL���,�����0��ATI��H�=T���UH��SH��H��0dH�%(H�D$(1�H�T$H�t$H�t$L�D$D�L$ ���H�ƋD$��uOH��� u/H��H��H�u���H�L$(dH3%(uTH��0[]A\�DH�VH�U�V��f.��5N="L������HcT$H�5N>"H��H�T�Y����]��ff.�f���AVE��AUI��ATI��UH��H�52="SH��L�����E��M��L��H��H��H��[]A\A]A^�������AVE��AUI��ATI��UH��H�5�<"SH��L���F��E��M��L��H��H��H��[]A\A]A^������H���H�|$�	�H�|$1��-�H�5�<"H������H��tH�5Q="H�L$�H���O��H���f.���S�H��H�|$��H�|$1����H�55;"H��H��t51�1�H�����H��tH�5�<"H�L$�H������H��[�@�H�=6��H��H��:"�ff.���S�H��H�|$��H�|$1��<�H�5�:"H��H��t51�1�H���q��H��tH�5T<"H�L$�H���R��H��[�@�H�=}5��H��H�E:"�ff.���ATI��5�:"UH��S�w��1�H�=nH�����H��1�H��t<H�CH� uH�C H�8�R��I�$H� u%H�[ H�{���H�E�[]A\�f.�H����f.���USH��H�5g:"H�|$���H�5�:"H������H��thH�5I;"�H�L$H���G���H��H�����1�H�����H��H���"���H�����H��H���:��H��H��1��X��H��[]Ð��AVAUATA��UH��SH��dH�%(H�D$1��U���H��������5�9"H��H������5x9"H��I���	��H�5z9"H��I�����H�5x9"H�����E��tH�����u3H��D��L�������H�L$dH3%(��u|H��[]A\A]A^�@H���@����u�H������Å�u�H�T$H��H�=O���HcT$��uH��t��>H��E1��K����{���H�5�9"H�TL������r����������UH��SH��(dH�%(H�D$1��.���H�������5b8"H�����H�5_8"H�����H�����tH��H�����H�����H�5e7"H�\$H�$H��t7H��"H��H�8�0��H�T$dH3%(uEH��([]�f��H�=9(�O��H��H�7"�1�H�=g#�r��������fD��ATA��U��SH��@�5�7"dH�%(H�D$81����H�T$H�t$D�d$$H�D$H��H�f8"H�=o�l$(H�D$�D$ ���HcT$��u0H��1�H��t�Q���H�L$8dH3%(u)H��@[]A\��H�58"H�TH�����1����#����U1�1�SH��H��(H�wH�?dH�%(H�D$1�����H��tmH�H�5�7"H��H��H�$HcSH�TH�T$HcSH�TH�T$����H������H��H�����9CuH�L$dH3%(H��uH��([]Ð1����w�����AVI��AUI��ATU��SH��H��dH�%(H�D$1�H�6"�D$H�8���5�5"H���~���I��葵��L��H��H������Hc�L���h���H��H�����H�T$H��H�=����y��HcT$H�Å���H�
"H��H�0���H��tBH�5C"H���c���H����A�EH�L$dH3%(��H��[]A\A]A^Ð1���@L�%�"��H�=��I�$�7�I�$� �H�=� ��I�<$�1�A��H�
V%H�|��	������@H�5�5"H�TL������1��S�������H��"H�5� H�81�舩�����ATUH��SH��H��dH�%(H�D$1��D$�1�����uwH�~"H�8���564"H�����I��H��"H�8�|��H��H����H�] ��ó��L��H��H�����H��H�����H�T$H��H�=k������H�D$dH3%(urH��[]A\�DL�%y"��H�=0�I�$���I�$�#�H�=���I�<$�1�A��H�
�#H������������ff.�@��ATUH��SH��H��dH�%(H�D$1�H�O"�D$H�8���53"H�����I��H�u"H�8�E��H��H��躹��H�] �茲��L��H��H������H��H������H�T$H��H�=�������HcT$��u&1�H�L$dH3%(��H��[]A\��H�5�3"H�TL�������f.�L�%"��H�=��I�$�_�I�$� �H�=j�E�I�<$�1�A��H�
~"H����1������'�����AWAVI��H�5~"AUATU��H��SH��H��(dH�%(H�D$1�觻��I��菨��H�D$���N����M�>M�n����H�D$���H������H��ƒ���������L���d��L��I�����L��I���>���I��H������M���SL��L���?������WE1�����L��L���������L��L��������fM��t1�L���XL�����H���H�L$dH3%(H���*H��([]A\A]A^A_�fD1�I�NH�L$��jH����H�|$�E�����H���H�����+�����~8H�D$M�>H�D$M�n��t��f.�H�|$���I������H�|$t
H�|$���������K��H�5�	"L�����H�=�0"H�5^ 1�跤��H�X	"H�5!H�81�诺��H�@	"H�5 H�81�藺��H�5p	"L���8��H�=�0"H�59 1��c������H�5G	"L�����H�=�0"H�5�1��:���f.���H��H�5�!����H�����H��H�H�D����AUH�5��!ATUSH�����H���N��H��taH��H�����Hc�I��胮��I��E��~01�f���H����ð��H���[�L��H�����D9�u�H��L��[]A\A]�DH��[]A\A]�y���f���ATH�5�!US�L���H�����1�1ɾH��H�����H�@H���L�dH�=�-"H���`���L��H��H���%���1�1ɾH������H�@H���L�dH�=u-"H���|�W��L��H��H���٢��1�1ɾH���x��H�@H��eL�dH�=!-"H������L��H��H��荢��1�1ɾH���,��H�@H��IL�dH�=�,"H�������L��H��H���A���1�1ɾH������H�@H���L�dH�=y,"H���8�s��L��H��H�����1�1ɾH�����H�@H���L�dH�=%,"H�����'��L��H��H��詡��1�1ɾH���H��H�@H��uL�dH�=�+"H���`����L��H��H���]���1�1ɾH�����H�@H��YL�dH�=}+"H�������L��H��H������1�1ɾH�����H�@H���L�dH�=)+"H�����C��L��H��H���Š��1�1ɾH���d��H�@H���L�dH�=�*"H������L��H��H���y���1�1ɾH�����H�@H���L�dH�=�*"H�������L��H��H���-���1�1ɾH������H�@H��iH�lH�=-*"H��tH�c��H��H��H�����H��[]A\�DH�=��	���H��H�E*"����H�=������H��H��)"�H�=��
����H��H��)"�0���H�=x����H��H��)"����H�=P����H��H�})"�X���H�=%�
�o��H��H�e)"���H�=���O��H��H�M)"���H�=���/��H��H�5)"����H�=C����H��H�)"���H�=r�����H��H�)"�<���H�=E�����H��H��("����H�=�����H��H��("�d���H���x���I�����H���h���I���4���H���X���I������H���H���I�����H���8���I�����H���(���I���$���H������I�����H������I�����H�����I���p���H�����I������H���ز��I���X���H���Ȳ��H�������H��H�5�!�L���1�1ɾ+H�����H�@H�xH�DH���f�H��H���t���@��H��H�5��!���1�1ɾ-H������H�@H�xH�DH���f�H��H���$���@��H��H�5a�!謱��H����H��������?H9�w
H�DH���H��H���l��ff.��PXH�5�1�H��H�=�("�U���DPXH�5�1�H��H�=j("�5���DPXH�5RH��H�$"H�81�����f���H��(H�5�"dH�%(H�D$1����H��t>H�t$H��H�T$�����t$���t
H�|$�n���H�L$dH3%(u
H��(��t����ߺ��ff.�@��H��(H�5Y"dH�%(H�D$1��l���H��t>H�t$H��H�T$襽���t$���t
H�|$���H�L$dH3%(u
H��(����_���ff.�@��H��H�5�!dH�%(H�D$1����H��t@1�H��mH������H��tH�<$肤��H��H�t$dH34%(H��u
H����r����ݹ��ff.�f���USH��H��H�t$H�5O�!�r���H��tN1�H�|$H��t
H�|$����H��1Ҿ7H���d���H��t8H�T$H�5C%"H���[��H�D$H��[]�H� "H�5<H�81�����H�=8&"1����f���H��H�5��!�ܮ��H��tH���?���H��H���s������ff.���H��H�5y�!蜮��H��tH���O��H��H�H�D��N���ff.���UH��SH��H�54�!�W���H��t1H�5#"H��H���@���H��tGH��H��谦����u"H��H��[]�H�""H�5>H�81��	���H�=:%"H�5~1���H��"H�5�H�81��ܘ��ff.����H��H�5��!輭��H��tH�������H�H��H�Ѓ���i���f���H��H�5Y�!�|���H��tH��菭��H��H�H�D��.���ff.���USH��H�5�!�:���H��tfH��H���J��H����H���*���H�8uH��H��[]�f.��H�5��H�����H��贰��H��H���Y���H��H��[]����f.���H��H�5��!謬��H��t)H���_��H��tH��H���N��fD�H����I���f���H��H�59�!�\���H��tH���/��H��H����������ff.���AUATUSH��H�5�!����H��t}H��艘��H��H��tYH������Hc�I��计��I��E��~+1�@��H�����H��軰��L��H������D9�u�H��L��[]A\A]�DH��A�[L��]A\A]��_���ff.�@��USH��H�5G�!�j���H��tDH��蝬��H��H��t%H���=���H��H����H��H��[]���H��H��[]����ff.����H��H�5�!���H��t)H���?���H��tH��H���ί��fD�H������f���SH�5��!诪��H��t6H��H���/����x
H��賖����w�[���ۮ���[��?���ff.�@��ATI��USH��H��H�?dH�%(H�D$1��� �H����Hc�H9��������woH�t$�L��@�l$����H�sH� u-H��L������H�L$dH3%(u&H��[]A\�@H�s��f.�H�{�������H�=� "H�541�荔��蘔���1�@��uH�����t
�����t�@H��H�5M "�4�K��H����H�����ff.�f�AWAVAUI��ATUH��SH��8H�t$H�|$dH�%(H�D$(1�����H��蕷��H�5�!H��I�����H���gH�5�"H��H���x���H��H���=��L�pL���Q��H���9�����1�M�|$I�<$H���� u{H����Hclj�H9�����tvL��H��tI�t$H�����H�߉Ɖ��������~F��uqL���������M����A�~����I�<$H���� t�I�|$�f���u@Hc�H�DH�T$(dH3%(��H��8[]A\A]A^A_Ð��u�V��������H�=�"H�5A1�角���M��t{H��"H����1�H�=R
�=���H�D$H��H��H�L$A��L�l$H�D$����Z���fDL���������M����A�~�V�������H�	"H��td1�H�=�	�Ƹ��H�D$H��H��H�L$�H�D$�������f�1�詸��f��H�=��?��H��H��"�%����H�=A���H��H��"�|���H�q"���H�m"���胑��H�t�!H�5�H�81��[���薰�������ff.����1�����DAWAVI��AUATI��UH��SH��H�5*"H�$��4��H�5�!H�����H���>H�5"H��H��芾��H���R���L�hL���f��H��1�A��H�5�"H��A���\���H����E����D��H���>���������~1����L�������xM����A�}�F����@��u+�D$�R����L$�����u�������H�߉L$���H��蜐���L$H�$I��D�H�=/"H�5@1����f���u��f���H�ŋ��t
H�<$蔶��@H��舨��D�EH�$�H�=�"I��1�H�5�蓏��L����������M����A�}螤�����f�H���X��H��H���
���H������H��I��H�+�HD�M��LD�舨��H����H��訏��ATI�ٹUD�1�H�5!H�T$H�=-"��H�-�"H��H��[]A\A]A^A_�H�-�"��H�$�%���H�$H�Ǩt$襕����辶��H���!H�5�	H�81�薎���!��������5�D��AUI��ATUH��S��H��(dH�%(H�D$1�H�D$�<���H�D$A�ą�������Hc�I�D���#H������������������H�D$H����H�|$譨��H�|$I������E��������M��LD�L�l$H�D$��xuL�d$��ulH��tH�|$����
fDu[L�d$H���Y��H�5R�!L��H��H�
�@���H�L$dH3%(uYH��([]A\A]�D�;�����~���tH�|$u(1�1���蠪��Hc�I�|�H��t ���H�D$����H�|$������B�������������SH�����H�5��!H��1�H�v	[���f.���AUI��ATUH��S��H��(dH�%(H�D$1�H�D$�|���H�D$A�ą�������Hc�I�D���#H������������������H�D$H����H�|$���H�|$I���z��E���F����M��LD�L�l$H�D$��xuL�d$��ulH��tH�|$�о���
fDu[L�d$H�����H�5*�!L��H��H�f���H�L$dH3%(uYH��([]A\A]�D�{�����~���tH�|$u(1�1������Hc�I�|�H��t �-���H�D$����H�|$�9�����肪���@���|�����SH������H�5��!H��1�H��[����f.���U��SH��H��dH�%(H�D$1�������t��uH�D$dH3%(uZH��[]�@�5�"H���J���H�5�"H��H�$�G���H�58"H���8���H��t�H�5�"H��H��蛲���褩��@��ATUSH����uhH�����t_H��ƒ���tR��uMH��H��H�5��!�#���H��I���h���L��H���ݾ��H��t7@��t!H��H�L���#���H��[]A\�H�����H���ȿ��H����L��T���H��[]A\�ff.���USH��H�5P�!H��藞��H�5h�!H��H��腞��H��t#H��H����������HE�H��[]�H�^�!H�5WH�81��E���D��AUATUH��SH��dH�%(H�D$1�����H�������H�E�ƒ��������~H��H��tNI��A��u	H�����usI��H�$L�����H�5m�!H��赝��L��H���:��H��H��诫������H�L$dH3%(H���/H��[]A\A]�DH���h�������������1�1�L�%�R���H�$H��tf�H����I9���L��H������uH�����t�������H�����H�<$H���D���H��� t<H��H����H��I9�|9I���� u�H�C�H�=�"H�5k觇���H�S��f.�H�<$�L���O���H��f.�I������1�H���6����Y���茦��ff.����U1�H���!SH�����H�����H��踦��H��t6H��1ɺ�!H���ܴ��H�] H��H�ߋ5�"�Ƕ��H��H��[]�H�="H�5�1��Ȇ�����USH��@��u`H�����tWH��ƒ���tJ��uEH��H�5;�!膛��H��H���u������H���ܜ��H��H��[]�f��K���������K���ff.���USH��H��H�5��!H���$���H��H���ɣ��1ҾH��H�����H��t
H��H��[]�H�=)"1����f.���USH��H�5��!H���ǚ��H�5��!H��H��赚��H��t#H��H���E�������HE�H��[]�H���!H�5��H�81��u���DAWAVAUATUSH��H�|$H��������t�7���H��[]A\A]A^A_��@����@����H�|$H�-�!�+���L�|$H�=�M�'M�wM��I��A�� A��M��t*I�WI�w�T���������H����thH�}M��u�L��L�����H��1�[]A\A]A^A_��H������g��������
tA@��t	���N����Ş��H�D$�?���H���!L��H�5/H�81��M���D�Û��H��[]A\A]A^A_�@Hc�H��!H���D����f���ATUH��SH��H�5��!���H��I���k���H����a���1�HcӾ{L���蝱��H��t!1�Hcվ|L��膱��H��t[�]A\�H�=�"H�5�脃��H�=�"H�5��q������AWAVI��AUI��ATUS��H��8dH�%(H�D$(1�H�D$�(���H�D$ A�ą�t8��������H�=`�1�虇��H�l$H�D$ M�>�-f.��ۋ����~WH�l$���YH�D$ M�>��uDH���4H��L��L����H�L$(dH3%(�NH��8[]A\A]A^A_�t.H�D$ H��t
H�|$ �j��������ٟ��f���t�H�|$ �����H��蠳��H�=��H�1�迆��H�l$H�D$ L�;�P���DHc�I�l�@������H������r����E�����c���H�l$H������H�|$葜��L�|$�S�H��M�������E���`����H��HD�H�D$ H�l$��uK1��
���H�|$ �v������Hc�I�|����g���H��������1���H��H�D$�o���菠�����Ӊ�H�l$���f����d���fDAWI��AVAUI��ATA��US��H��XdH�%(H�D$H1���tkH�D$ ���H�D$(�Ņ��r��������H�=�1��S���I�mL�t$ f.�H�D$H�T$(�kD胂��H�D$(���r����I�m����I�EH�D$���XH�|$(��A�H��@���,�'���H�|$��Lc��,1�L���̑��H�D$H��1���������H�5��!L�����I��H����H�5"L��苭��H��I���P���H�@H��H�D$�_���L���G������E����H��
"H���T1�H�=]��H���H�D$H��L��H�L$0A��H�l$0H�D$8L�t$@����H�|$�
��H�|$Hc��P���H�D$H�L$HdH3%(��H��X[]A\A]A^A_��蛖��H�|$��Lc�����H�|$����H�|$H��� ucH����L9�|?���H�|$����H�D$H�|$(�\���H�|$(葱���M���@L��H)�譳��H�|$�o���H�G�f.��[������#����L�t$ I�m�������I�UH�T$H�T$(���]H�����H�|$(��������f.�����������H�|$(t
H�|$(��������P���H��"H����1�H�=��肤��H�D$H��L��H�L$0�H�l$0H�D$8�Υ���^���f�H�|$L�=��τ��H�t$H� uiH��L�����L��Ɖ��������Z��Ic�L�>��f�u>���H�T$(H���ZH�|$(�D$�
����D$�������H�v�f�H�T$(����H�|$�|��L���e����������>���H����H�|$�{|���F}�����t�1��y���f�E���CH�|$�M|��L�������@H�f"�6���E���H�|$�|��L��������H�/"�����
H�=��豭��H��H�"����H�=^�葭��H��H��"�2���Hc�M�t�A�������I��������A������ܺ��L�t$ I��tIH�|$ ����H�T$ I��H��������������M��t'L�t$ I�m�������>����I�m�.���H�D$ A���H�D$�x�I�������H�D$�x�w��������}������������N���H�|$(��躦��H���r���H�=[�H�1����L�t$ H�+�D���H�|$�z��H�="H�5�1���z�������������Hc�I�|���t:H��uB���˹��L�t$ I��t@H�|$ �V���H�T$ I��H��������ι��I�mL�t$ �����=|��I��H�D$ ���I�EI�mH�T$(H�D$����H�J�!H�5f�H�81��1z��������f���1����D��AUATUSH��dH�%(H�D$1�@���H��H�������H���ƒ���������H�5b�!譎��H�5��H��H��若��H�5"H���<���H�������	H�5Y"H���!���H�$H��tH��迊��H��I��H������L��蹣��H�5�"H�����H�$H��t&H�5�"H���I��L���1�1�H�����H�5�"H��E1�訦��H�$H��tH������I��H�5t"H��脦��H�$H��tKH���"���I��M��t;H��t6L��H��芬�����#	L��H���Ǭ�����6	H���7������	H�5("H��� ���H�$H�������H�������H��у�����E1��C�H����I9���H��J�<��C���H��H���x������QH�$I��H��� u�L;`}UH�@ ��@�H�L$dH3%(H���H��[]A\A]�f�H���ا��H��H���
�������H�5f"H���6���H�$H��t4I��L������H�5:"H��I������H�$H��u,L��1��3fDH�5"H�����H�$H��tE1�I��L��豰��H��L	�H���BH�5�"H��賤��1�H�$H��tH�Ǩ����}����H��H����&���H�5W"H���w���H�������H�5,"H���\���H�$H��t��zH�H��H������H�5E"H���-���H�$H��tH�Ǩ�8����H���ɖ��H�5�"H�����H�$H��t=H���8��H�59"H��H���V���H��H�5|���H������H�E�!H�8��H�5L"H��褣��H�������H�5"H��艣��H�$H��t@H������H��� �[H��H�p��H���(������ZH���!H�8��H�5�"H���0���H�������H���L���H�5�"H���
���H�$H��t3H���k���H�4$H��� �+H��H����H����������H�5�"H�����H������
H�5^"H��覢��H�����unH�5?"H��菢��H������cH�5��!H���t���H�$H��t(H��H���5�v���H���!H�(H��������H�59��H����H���!H�8�r���L�%!�!��H�=ػI�$�o���I�$��H�=r��U���I�<$�1�A��H�
��H����A�������@H�5���H�����H��!H�8����L�%��!��H�=P�I�$���I�$��H�=���ͬ��I�<$�1�A��H�
�H�,�蹢���o���@H�5���H���ћ��H���!H�8�}���L�%�!��H�=ȺI�$�_���I�$�!�H�=���E���I�<$�1�A��H�
~�H����1�������@H�5���H���I�������@H��L��H���¢���������H�=3��n������f�H��H�5����H����x��H���!H�8�	���L�%>�!��H�=��I�$茫��I�$��H�=/��r���I�<$�1�A��H�
��H�ѹ�^������f�H�VHc�H9��dH�v�����H��H�5&���H��讣��H��!H�8���L�%��!��H�=E�I�$�ܪ��I�$��H�=2��ª��I�<$�1�A��H�
��H�!�讠�����f�H�PHc�H9���H�p�����ˈ�����O���@�x��������@H�����H���|����H�=������H��H�M�!H�$����@L�%��!��H�=`�I�$���I�$��H�=���ݩ��I�<$�1�A��H�
�H�<��ɟ�����@H�A�!��H�=��H�萩��H��$�H�=���w���H�;A��1�H�
��H�ܷ��d����D����L�%��!��H�=��I�$�'���I�$� �H�=���
���I�<$�1�A��H�
F�H�l����������H�=�!H�5��o��H���o��H�=�!H�5��1��o��H�=��!H�5��lo��H�=��!H�5���Yo��H�=��!H�5��Fo��H�=w�!H�5��1��1o��H�=b�!H�5+��o��ff.���AUA��H��ATI��USH��H��(H�5��!dH�%(H�D$1��ڃ��H���U�p��H�D$����E���$I�,$A���4H�5u�!H����H���!1�1�H�8豖��I��H�5'�!L���o���H�5��!L��H��I��芡��L���B�H�5�!H���H��誝����t+H�D$H�5�!H���]H�L$�H���;���H�5$�!H��H���)���L���av��H��H���~H�C �5�!H��H���0v��H�5��H���Ay��H�5r�!L���b����5��!H��H���v��1�1�訂��H��H�L$dH3%(�*H��([]A\A]�fD1�M�d$A����H������H�|$�<���������	H�=3�诞��H��H���!�����v��E��~vH�D$I�,$A��u�H���Z���H�|$���H�5�!H���P����H�=���S���H��H���!�0���@�	H�=���/���H��H�m�!���H�|$t
H�|$�~�����D�����H�=��!H�5U�1��gl��H�=��!1�1��Wl��蒋��f���AT�USH��H�|$���H�|$1��	���H�5:�!H��H���Ǚ��H�5@�!H��踙��H��t9H�5�!H��H�L$�����H��H�?�!H��H�0贔��H��uH��upH���H��[]A\��H����H�5y�!H��虀��I��H��tPH��H�57�!肀��L��H���Gv��H�5��!H��H��蕞��H��H��[]A\�H���!H�5�H�81��Ak��H�B�!H�5^�H�81��)k��f���AT�H�=�US臜���H�=	�H��!�o���E1�E1�1�H���1�1�H��!�0u����!����E1�E1�1�1�H���1��
u�����!���}E1�E1�1�1�H������t���{�!���lH���!H�5��H�;�ms��H�-�!H�;H�5��H�E�Ss��H�}H�5�H�q�!H�R�!H��"z��H�}H�5��H��H�E�!�z��H�q�!H��H�'�!H�2�q��H�}H��!H�5����y��H���!H��H��!H�2�_q���Z���L�%��!H�}H�5f�I�$�y��H���!H�5Q�H��H��v��H�;H�5R��s���H�=�����H�;E1���H������H�=��轚��H�;E1���H���՗���	H�=�蔚��H�;E1���H��謗���H�=���k���H�;E1���H��胗���H�=���B���H�;E1���H���Z����H�=������H�;E1���H���1����H�=E���H�;E1���H�������H�=)��Ǚ��H�;E1���H���ߖ���H�=�螙��H�;E1���H��趖���H�=���u���H�;E1���H��荖���
H�=���L���H�;E1���H���d����H�=���#���H�;E1���H���;����H�=�����H�;E1���H�������H�=���ј��H�;E1���H������H�=��記��H�;E1���H������H�=������H�;E1���H��藕���H�=l��V���H�;E1��H�ƺ�n���H�=��!�H�5t��Ɛ���H�=������H�;E1���H���-����
H�=$����H�;E1���H�������
H�=���×��H�;E1���H���۔���H�=��蚗��H�;E1���H��貔���H�=���q���H�;E1��H�ƺ艔��H�;H�#�H�5���y��H�;H���H�5����x��H�;�H���H�5���ru��H�;1�H�����H�5ĺ�Z���H�;�H�+��H�5u��?���H�;�H�����H�5c��$���H�;1�H����H�5X�����H�;�H�]��H�5L���H�;1�H����H�5D��و��H�;�����H�
���H�5;�辈��H�;1�H���H�5&�覈��H�;H��H�5���w��H�;�H�5	�輎��H�;�H�5�討��H�;�H�5�蔎��H�;�H�5	�耎��H�;�H�5��l���H�;�H�5=��X���H�;�H�5Q��D���H�;�H�5���0���H�;�H�Q��H�5���Շ��H�;�H���H�5��躇��H�;1�H����H�5��袇��H�;�H�s���H�5��臇��H�;1�H�;��H�5���o���H�;�H��H�5���T���H�;1�H����H�5���<���H�;�����H����H�5���!���H�;1�H�u��H�5���	���H�;�H����H�5�����I�$H�}H�5���r��H���!1�H�=*�!H�5w�H����H�;H�5�����<p��H�;�����H���H�56�葆��H�;H�5}���l��H�;1�H�f��H�5D��j���H�;�����H����H�5��O���H�;1�H�s��H�5��7���H�;�����H����H�5������H�;�����H�
�H�5n�����H�;�����H���H�5����q��H�;�H����H�5���˅��H�;�����H�l��H�5���q��H�;1�H���H�5���q��H�;1�H����H�5��者��H�;1�H���H�5z��h���H�;1�H�L��H�5l��P���H�;1�H����H�5d��8���H�;1�H����H�5�� ���H�;1�H����H�5D�����H�;1�H����H�5(���H�;1�H�4��H�5��؄��H�;�H�y��H�5
�轄��H�;1�H�!��H�5��襄��H�;1�H����H�5��荄��H�;�H���H�5���r���H�;1�H�v��H�5���Z���H�;1�H����H�5���B���H�;1�H�F��H�5���*���H�}�H�5���U���H�}�H�5���@���H�}�H�5���+���H�}�	H�5������H�}H�5��H�����H�}�	H�5�����H�}�!H�5���҉��H�}��H�5��轉��H�}�H�5��訉��H�}�H�5��蓉��H�}��H�5y��~���H�}�H�5���i���H�}�H�5\��T���H�}�H�5���?���H�}�H�5D��*���H�}��H�5F�����H�}�H�5M�����H�}��H�5L����H�}H�5P�H��ш��H�}�H�5I�輈��H�}�H�5@�览��H�}� H�57�蒈��H�}�H�50��}���H�}�@H�5)��h���H�}�H�5"��S���H�}�H�5&��>���H�}�H�5���)���H�}�H�5������H�}�H�5����H�}�H�5
����H�}�H�5��Շ��H�}�H�5����H�}�H�5�談��H�}�H�5�薇��H�}�H�5�聇��H�}�H�5
��l���H�}�H�5	��W���H�}�H�5��B���H�}�H�5���-���H�}�H�5������H�}�H�5������H�}�H�5�����H�}�H�5���ن��H�}�H�5���Ć��H�}�H�5��识��H�}�H�5��蚆��H�}�	H�5��腆���	H�=���ԍ��H������
H�=��H�1�!贍��H���̌���
H�=��H�	�!蔍��H��謌���H�=��H���!�t����H�=)�H���!�\����H�=k��K����H�=a�H���!�3����H�=X�H���!�����H�=L�H�h�!�����H�==�H�H�!����H�=.�H�(�!�ӌ���
H�=#�H��!軌���H�=�H���!裌���
H�=�H���!苌���H�=�H���!�s����H�=��H���!�[����H�=�H�h�!�C����H�=��H�H�!�+����H�=��H�(�!�����H�=��H��!����H�=��H���!����H�=��H���!�ˋ���H�=��H���!賋���H�=��H���!蛋���H�=��H�h�!胋���H�=��H�H�!�k����H�=��H�(�!�S����H�=��H��!�;����H�=��H���!�#����H�=x�H���!�����H�=o�H���!���H�=h�H���!�ۊ���H�=T�H�h�!�Ê���	H�=E�H�H�!諊��[]H�2�!A\�H� �!H�5B�H�81��Y��H��!H�5j�H�81���X��f.�D����c�����USH��H�5��!dH�%(H�D$1��m��H����1�H��H���^������Hc�1��2j��H��H�@H� tH�CH��H��H�$�^��H��� t7H�CH�4$H�SH)�H9�4H���Kk��H��H�L$dH3%(u8H��[]ÐH��H�4$H�S����H�
(���H�5��H�=����h���+w��H�=<�!H�5m�1���W��H��!H�5��H�81��W��ff.���USH��H��@��umH�����tdH��ƒ���tW��uRH��H�5P�!H�k �ol��H��tUH�5��!H�=�!H����o��H��t'H�C H���Sb��H��H��[]�f�H���(]��H�=y�!H�5@��W��H��!H�5�H�81��V��ff.�f���ATUSH��H� H�t$��H���!H��H�|$H�0�=_��H��u@H�|$�^���1�1�1�H��I����f��H��H��teL���X��H�k H��H��[]A\�DH�5I�!H�|$�gk��H����H������H��H��u�H�=��!H�5��1��9V��f�1�1ҾL���l���zo��H�=k�!1�L��H�5O�!�^��L��H���'X��H���a���H���!H�5��H�81���U��H�='�!H�58�1��U��H�¾!H�5��H�81��U��f���H�m�!1��NW��ff.���USH��H�5G�!�jj��H��t5H������H���Z��H��H��tOH��H����s��H�߅�t#H��[]鰁��H�1�!H�5*�H�81��U���CW��H�=d�!H�5��1��T��H�=O�!H�5��1���T��f�PXH�5��H��H�Խ!H�81���T��f���H��H�5��!dH�%(H�D$1��D$�i��H��t.H�t$H���2k���t$H���&f��H�T$dH3%(u
H����|����s�����H��H�5�!�<i��H��t3H���S��H�@H�xH�DH���fDH��H���di������ff.�@��ATUH��SH��H�5��!��h��H��t6I���t!H�H��L���K���[H��]A\�_����H���d��H�������fD��H��H�5Y�!dH�%(H�D$1��lh��H����H��軇��H�ǸH��t;H�@H�xgH�D?H�5{�!H�$H��t2H�+�!H��H�8�C{��H�T$dH3%(u2H���fD�H�=��g���H��H�%�!��3h����r��������ATUH��SH��H�5��!�g��H����I��H���!H��H�0�[��H��u#��t>H�H��L���pW��[H��]A\����@H�5��!H��t$H��1�1��xz��H���u�H���c��H����H�=	�蟃��H��H�e�!�H��!H�5
�H�81��Q��ff.���AUATI��USH��H�-��!dH�%(H�D$1�H���f��H����H��L��H���f��H��H��tuH��H���Fh��H�t$H��I���6h��H��I���;q��H����1q��9�t1�H�L$dH3%(u*H��[]A\A]Ë$;T$u�L��L���{����H������lp���G���H�(�!H�5!�H�81��Q��ff.�@��USH��H�5Ƿ!��e��H��t5H��蝊��H���V��H��H��tOH��H���X��H�߅�t#H��[]�0}��H���!H�5��H�81��P����R��H�=��!H�5f�1��~P��H�=��!H�5E�1��iP��f���H�-�!SH�5a�H�H���!H�8�;`��H�\�!H���!H�5�H��H�H��`��H�;H�5n���H�_�!�r]��H�;�H����H�5l���s��H�;�H�(���H�5���s��H�;�H����H�5���s��H�;1�H����H�5'��ys��H�;�H����H�5���^s��H�;1�H�"���H�5���Fs��H�;�H�g���H�5?��+s��H�;1�H����H�5���s��H�;1�H�W���H�5��r��H�;1�H����H�5,���r��H�;1�[H�v���H�5���r��f.���UH��H��SH��(dH�%(H�D$1�H�\$H�T$H���>c���t$H��1�H����v��H�L$dH3%(uH��([]��m�����H���!SH�58�H�8�uW��H��!H��F�����W�������W����Rp���MZ���m����n��H�;�H�5\��?x��H�;�H�5M��+x��H�;�H�5���x��H�;�H�57��x��H�;�	H�5����w��H�;�H�5����w��H�;�
H�5����w��H�;�H�5���w��H�;�H�5��w��H�;�H�5��w��H�;�H�5��ww��H�;�H�5��cw��H�;�H�5��Ow��H�;�H�5���;w��H�;�H�5���'w��H�;�H�5���w��H�;�!H�5���v��H�;�#H�5����v��H�;�%H�5����v��H�;�'H�5����v��H�;�)H�5���v��H�;�+H�5��v��H�;�-H�5{��v��H�;�/H�5���sv��H�;�1H�5���_v��H�;�3H�5}��Kv��H�;�5H�5���7v��H�;�7H�5���#v��H�;�9H�5���v��H�;�;H�5���u��H�;�=H�5����u��H�;�?H�5p���u��H�;�AH�5���u��H�;�CH�5p��u��H�;�EH�5|��u��H�;�GH�5a��u��H�;�IH�5|��ou��H�;�KH�5T��[u��H�;�MH�5|��Gu��H�;�OH�5���3u��H�;�QH�5���u��H�;�SH�5��u��H�;�UH�5���t��H�;�WH�5	���t��H�;�YH�5���t��H�;�[H�5���t��H�;�]H�5��t��H�;�_H�5��t��H�;�aH�5
��t��H�;�cH�5��kt��H�;�eH�5L��Wt��H�;�gH�5X��Ct��H�;�iH�5l��/t��H�;�kH�5���t��H�;�mH�5l��t��H�;�oH�5����s��H�;�qH�5����s��H�;�sH�5P���s��H�;�uH�5���s��H�;�wH�5H��s��H�;�yH�5���s��H�;�{H�5P��{s��H�;�}H�5���gs��H�;�H�5���Ss��H�;��H�5���?s��H�;��H�5���+s��H�;��H�5���s��H�;��H�5���s��H�;��H�5����r��H�;��H�5����r��H�;��H�5����r��H�;��H�5���r��H�;��H�5���r��H�;��H�5���r��H�;��H�5���wr��H�;��H�5���cr��H�;�H�5���Or��H�;�	H�5���;r��H�;�H�5���'r��H�;�!H�5���r��H�;�AH�5���q��H�;��H�5����q��H�;�H�5����q��H�;�H�5����q��H�;�H�5���q��H�;�H�5���q��H�;�H�5���q��H�;� H�5���sq��H�;�@H�5���_q��H�;��H�5���Kq��H�;�H�5���7q��H�;�H�5���#q��H�;�H�5���q��H�;�H�5���p��H�;�H�5����p��H�;� H�5����p��H�;�@H�5���p��H�;�H�5���p��H�;�H�5���p��H�;�H�5���p��H�;�	H�5���op��H�;�H�5���[p��H�;�
H�5���Gp��H�;�H�5���3p��H�;�H�5���p��H�;�H�5���p��H�;�H�5���o��H�;�H�5����o��H�;�H�5����o��H�;�	H�5���o��H�;�H�5���o��H�;�
H�5���o��H�;�H�5���o��H�;�H�5���ko���j��H���\��H�;H�5��H���Lo����w��H����[��H�;H�5��H���-o���`��H����[��H�;H�5��H���o���9[��H���[��H�;H�5w�H����n���d��H���[��H�;H�5m�H����n���\��H���s[��H�;H�5d�[H���n�����gn�����UH�5�!SH��dH�%(H�D$1��ZY��H����1�H��H���m������Hc�1���U��H��H�@H� uRH��H��H�$�sm����~\H�H�4$�� tCH�CH�SH)�H9�kH���V��H��H�L$dH3%(uoH��[]ÐH�C�f.�H��H�S���H�,�!1�H�81��C��H���!H�5��H�81��C��H�
���(H�5��H�=,��YT���b��@��AUH�5ß!ATUSH��(dH�%(H�D$1��6X��H����I����O��H��H���YL��1��?{��A�Ņ�~%���L����t��H��H���x��A9�u�1�H���b������Hc�1��wT��H��H�@H� ��H�t$H��H�D$�Qb������H�H�t$�� ttH�CH�SH)�H9���H���U��H���(V��H�5��!H�\$H��t_H���!H�L$�H�8�nj��H�L$dH3%(��H��([]A\A]��H��H�S���H�C�L�����H�=
��gs��H��H�]�!�H���U��H�L�!1�H�81��A��H�9�!H�5�H�81��A��H���!H�5��H�81��A��H�
���H�5��H�=4��aR���`��ff.����AWAVAUI��H��ATUSH��H�ɥ!H�t$H�3�j��H����H�5��!H����H�|$�n��H�Ǩ���X��H�5j�!��H����H�|$�n��H�Ń���H�Ã���H������y������kH�5�!L���U��I��H����H���x������L�m�Sf�H����H9���L��H�<�H���m��L�pH��I���!e��L�����L�����W��L�������O^��H�E�� u�H9]~PH�E �f.��F��H�5t�!��H���
����H�=���hq��H��H�N�!���f�H�D$H��[]A\A]A^A_�@L����`��A�����1�1�H��1��v��I��H��t9I�E L��M���ei������H�=A���p��H��H���!�E����{]��H�Ԩ!1�H�81��H?��H�q�!H�5��H�81��0?��H�|$H��ss��H��H�5��H��H��!H�81��?��H��!H�5:�H�81���>��H��!H�5R�H�81���>��D��UH�54�!SH���S��H��tZH����_��H��H����V����u.�Yx��H����C��H��H��tFH��H���u��H��H��[]��j�����i?��H��[H��]�+U��H�\�!H�5��H�81��C>��H���!1�H�81��0>����ATUSH����upH�����tgH��ƒ���tZ��uUI��H��H�5h�!��R��H��H��tCH�5T�!L����R��H��t/H���_��H��t:H�C H���g��H��[]A\�fDH���C��H���!H�5��H�81��=��H�	�!H�5.�H�81��x=�����ATI��H�5Й!U��H��SH��H��0dH�%(H�D$(1��=R��H�D$H����?��H�D$�������I�<$H�|$���M�d$����H�5R�!H�|$ H���\H�l$ �H��H���d��H�5 �!L�d$ H���H��H����d��H�L$(dH3%(H���cH��0[]A\�f�H�l$�VI��H�|$H�D$�N��H�D$H��� ��H�PH�T$H�PH�|$H����p��H�T$H�S H��u�H���!1�H�81��<���E������I�<$H�D$H�|$��t0M�d$����H����H�|$��n��H�|$����DH���?���H�l$H���n��H�|$�-�����H�=X��m��H��H���!�����H�=3���l��H��H���!���H��H��H�D$������H�|$t
H�|$�)n�������X���cZ��H�$�!H�5X�H�81��;��ff.���USH��H�t$H�5Z�!��O��H��tBH�|$H���ct��1�H���YT��H��H��tXH��H���]��H�߅�t)��F��H�D$H��[]�H���!H�5��H�81��:���F��H���!H�5>�H�81��i:��H��!1�H�81��V:��fD��S1�H���!�;��H���k��H��t	H�C H��[�H���!1�H�81��:��@��UH��H�q�!1�SH��H�#�!H�8�;��H��H��t#H���[��H��tH�C H��H��[]���j����H�2�!1�H�81��9��fD��H��H�5�!�N��H��tH���H���!H�5��H�81��j9��f.���SH�|�!H�53�H�Ρ!H�H�;�;I��H���!H�;H�5�H�H���!H��I��H�A�!H�5����H��H��oF��H�;�����H�����H�5i���\��H�;�H�����H�5���\��H�;�H�����H�5r��\��H�;1�H����H�5L��v\��H�;�H�'���H�5D��[\��H�;1�H����H�5��C\��H�;1�[H���H�5N��*\��f.�����?�����AWAVAUI��ATUH���SH��1�L�eH���g���:H����H9�}TL�5
�!L��I�6H�<�L�<��`��H����H��H�E�� u�H;]}L�5ӝ!H�E I�6��f.�H�5i�!L���L��H��H��u��@H���xT��1�H���>_��H��u�E1�L�e�0H����I9�}<L��J�<��XK�������H��H���G����tgI��H�E�� u�L;m}	H�E ��H��H��[]A\A]A^A_�I�H�E t?H��J�|=�;k��H��H�5Q�H��H�G�!H�81���6��H�ƞ!1�H�81��6��H�m �H���!H�5T�H�81��6��ff.����UH�5T�!SH��dH�%(H�D$1��jK��H����1�H��H���DE��Hc�H����1���G��H��H�@H� uQH��H��H�$�E����~[H�H�4$�� tBH�CH�SH)�H9�jH���
I��H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H���!1�H�81��5��H���!H�5P�H�81��5��H�
a���H�5L�H�=<��iF���T��@��ATUSH����upH�����tgH��ƒ���tZ��uUH��H9�tDH�5�!H���.J��I��H��t>H�5�!H���J��H��t*H���?��H��t5H�C L���<��H��[]A\ÐH����:��H��!H�5��H�81���4��H�ɜ!1�H�81��4��ff.�f���ATI��UH��S��H�� dH�%(H�D$1�H�B H�$�o6��H�D$����������tjI�$H�D$����H�|$��H�|$I���A��H�|$H�D$��l��1�1�L��H��H���fB��H�$H�U H����H���-6���H�D$H�|$u'H�L$dH3%(H����H�� []A\��H�|$�f����t��i���D�<�����5���H�|$t
H�|$�yf���1�����P��1�1ҾH���GJ����L��L��H���WY��H��I��H�$H�E �t5��M���T���H�4�!1�H�81��(3���cR��PX1�H��H��!H�81��3�����S1�H�!�4��H���S��H��t	H�C H��[����f�PXH�5u�H��H�ě!H�81��2��f���UH��H�5q�!SH���G��H��t[H��H�P�!H��H�0�][��H��uH��1�[]��H�51�!H���YG��H��t5H��H���9M���¸��u�H��[]�H�8�!H�5��H�81��2���J���f.���UH��H�5ю!SH���F��H��t)H��H���E�������H��H���GB����t"H��H��[]�H�ʚ!H�5i�H�81��1�����ff.����AUH�5c�!ATUSH���F��H��tpH��I����d���Ņ�xPHc��(<��I�Ņ�t-1����L�����C��H���k��L��H���Hb��9�u�H��L��[]A\A]�fDH��[]A\A]�!J���<���ff.����USH��H��H���Ka��H�5��!H��H����E��H��t5H��H���A�����tH��H��[]�fD�J��H��1�H��[]�����f.���UH��H�5Q�!SH���wE��H��t[H��H����R��H��H���U��H��H���!V����t��uH���[]�@�I��H��1�[]�H�#�!1�H�81��0���B���f���ATUH��SH��H���Z`��H��I���Oc��H�5��!H��H����D��H��tH��L��H���*0����t H��[]A\�H���!H�5^�H�81��/��������ATUH��H�5_�!S�D��H��t-H��H����Q��I��H���T��L��H���c\����t H��[]A\�H�X�!H�5��H�81��?/��H�8�!H�5�H�81��'/�����H��H�5�!�D��H��tH���>��H��t$H��H���8��H��!H�5��H�81���.��������ATUH��H�5��!S�C��H��t/H��1�H���Y��H��H��I���I��L��t�=4��H��[]A\�����+4��H�t�!H�5T�H�81��c.����H��H�5!�!�LC��H��tH���/:��H��t$H��H���~X��H�/�!H�5��H�81��.�������ATUH��H�5ϊ!S�B��H��t/H��1�H���7Y��H��H��I����b��L��t�}3��H��[]A\����k3��H���!H�5��H�81��-����H��H�5a�!�B��H��tH���f��H��t$H��H���W��H�o�!H�5�H�81��V-���1������UH��H�5�!SH���7B��H��t$H��H���7E��H��H���7����t"H��H��[]�H��!H�5��H�81��,���������H��H�5��!��A��H��tH���S��H��t$H��H���NO��H���!H�5^�H�81��,��������UH��H�5a�!SH���A��H��t$H��H���D��H��H���>����t"H��H��[]�H�_�!H�5��H�81��F,���!������H��H�5�!�,A��H��tH���P��H��t$H��H���N��H��!H�5��H�81��+���������UH��H�5��!SH����@��H��t+H��H���H��H��H���\D��H��H����F��H��H��[]�����f���H��H�5a�!�@��H��tH���oH��H��H���3c�����ff.���AWAVAUATUSH��H�����H��I�����H��I�����H��I���5���H��I������H��H���__��H��M��M��AWL��H��H��H�=K�1��H��H��[]A\A]A^A_�ff.�f���UH�5��!SH���?��H��t=H���md��H����/��H��H��tUH���M��H��H�0�
b��H�߅�t#H��[]�V��H�y�!H�5�H�81��`*���,��H�T�!1�H�81��H*���#�����ATI��USH���t=H��H�H��x\H�5�!L���?��H��t0H��H���J����tH��[]A\��H����:��H������H�ߒ!H�5~�H�81���)��H���!H�5ľH�81��)��ff.���H��H�5a�!�>��H��t3H���O]��H�@H�xH�DH���fDH��H���>������ff.�@��UH�5�!SH���*>��H��t5H����b��H���U.��H��H��tMH��H���N��H�߅�t#H��[]�pU��H��!H�5��H�81���(���+��H�̐!1�H�81��(�����ff.���UH�5t�!SH���=��H��t5H���Mb��H����-��H��H��tMH��H����`��H�߅�t#H��[]��T��H�a�!H�5�H�81��H(���s*��H�<�!1�H�81��0(������ff.���UH��H��!1�SH��H�ː!H�8�)��H��H��t#H���{2��H��tH�C H��H��[]���H����H�!1�H�81��'��fD��H��H�5q�!�<��H��tH���H���!H�52�H�81��z'��f.���SH�54�!�_<��H��tH��H����Y��H��[�H�K�!H�5�H�81��2'��f���SH�L�!H�5?�H���!H�H�;�7��H��!H�;H�5-�H�H�ȏ!H���6��H���!H�5��H��H��?4��H�;�����H��H�59s�J��H�;�H�5�H�5ty�yJ��H�;1�H���H�5�o�aJ��H�;1�H����H�5���IJ��H�;H���H�58z�9��H�;1�H����H�5k��J��H�;1�H�����H�53��J��H�;�H����H�5L���I��H�;1�H�,���H�5=���I��H�;1�H�D���H�5Ƈ�I��H�;�H����H�5��I��H�;1�H�q���H�5��I��H�;�H�����H�5���jI��H�;1�H�����H�5Y��RI��H�;�H����H�5Ѻ�7I��H�;1�H�����H�5���I��H�;�H� ���H�5���I��H�;1�H�����H�5����H��H�;�H�-���H�5����H��H�;1�H����H�5��H��H�;�H�*���H�5���H��H�;�H���H�5���H��H�;�H��H�5C��hH��H�;�H�y�H�5ʡ�MH��H�;1�H���H�5��5H��H�;�H��H�5��H��H�;�H��H�5ٹ�G��H�;1�H�����H�5	��G��H�;[�H�G�H�51w��G��f.�����G'�����AWAVAUI��ATUH���SH��1�L�eH���US���:H����H9�}TL�5��!L��I�6H�<�L�<��VL��H����H��H�E�� u�H;]}L�5s�!H�E I�6��f.�H�5i�!L���18��H��H��u��@H���@��1�H���^(��H��u�E1�L�e�0H����I9�}<L��J�<��6�������H��H����>����tgI��H�E�� u�L;m}	H�E ��H��H��[]A\A]A^A_�I�H�E t?H��J�|=��V��H��H�5�zH��H��!H�81��m"��H��!1�H�81��Z"��H�m �H�U�!H�5'�H�81��<"��ff.����AWAVAUI��ATUH���SH��1�L�eH���Q���:H����H9�}TL�5e�!L��I�6H�<�L�<��J��H����H��H�E�� u�H;]}L�5+�!H�E I�6��f.�H�5�~!L���6��H��H����H���H��I��H��u
�H���W��L���PX��H��u�E1�L�e�0f�H����I9�}<L��J�<��XZ��H��H��I����-����tqI��H�E�� u�L;m}H�E ��DH���!��H��H��[]A\A]A^A_�I�H�E tLH��J�|=�#U��H��H�59yH��H�/�!H�81�� ��L����V��H�V�!H�5��H�81�� ��H�m �H���!H�5b�H�81��w �����AUH�5�}!ATUSH���V5��H����H��I���bG��H���Z1���Ņ�xTHc���*��I�Ņ�t11�L���8G���ރ�H���+-��H�����L��H���Q��9�u�H��L��[]A\A]�fDH��!H�8tH��[]A\A]��8��@H���!��H�=8gH���X��H��
�H�=���X��H�;A�1�H�
��H�g��N���H�c�!H�55�H�81��J��f.���UH�5d|!SH��dH�%(H�D$1��4��H��toH����X��H���E$��H��H��tDH��1�H����!��H�$H��H�0�aV��H�߅�t�UK��H�L$dH3%(u7H��[]��� ��H�b�!1�H�81����H���!H�5y�H�81������=��f���ATUSH����uxH�����toH��ƒ���tb��u]H��H9�tGH�5v{!H���>3��I��H��tFH�5_{!H���'3��H��t2H���%��H��H��t:L���z!��H�k H��[]A\�fDH����#��H��!H�5óH�81�����H���!1�H�81�����D��ATI��UH��S��H�� dH�%(H�D$1�H�B H�$���H�D$����������tjI�$H�D$����H�|$��H�|$I���'*��H�|$H�D$��U��1�1�L��H��H���H��H�$H�U H����H���=���H�D$H�|$u'H�L$dH3%(H����H�� []A\��H�|$�O����t��i���D�%�����5���H�|$t
H�|$�O���1����9��1�1ҾH���W3����5��L��H���76��H��I��H�$H�E ���M���T���H��!1�H�81��8���s;��PX1�H��H�с!H�81�������S1�H�2y!���H���EQ��H��t	H�C H��[����f���UH��H�5y!SH����0��H��t)H��H����/�������H��H���7����t"H��H��[]�H���!H�5l�H�81�����L���ff.����AUH�5�x!ATUSH���V0��H����H��I���&���Ņ�xLHc���%��I�Ņ�t)1���L����kU��H���SU��L��H���L��9�u�H��L��[]A\A]�fDH�!�!H�8tH��[]A\A]��3��@H���!��H�=HbH���S��H���H�=Ű��S��H�;A��1�H�
��H�,b��I���H�s�!H�5E�H�81��Z��f.���UH�5tw!SH���:/��H��t5H����S��H���e��H��H��tMH��H���M��H�߅�t#H��[]�F��H��!H�5ӯH�81��������H��!1�H�81��������ff.���UH�5�v!SH���.��H��t5H���]S��H������H��H��tMH��H���&��H�߅�t#H��[]��E��H�q�!H�5C�H�81��X�����H��~!1�H�81��@������ff.���UH�5Tv!SH���.��H��t5H����R��H���E��H��H��tMH��H���bK��H�߅�t#H��[]�`E��H��!H�5��H�81���������H�l~!1�H�81�����{���ff.�PXH�5x�H��H���!H�81����f���UH��H�5�u!SH���g-��H��t[H��H����:��H��H���|=��H��H����6����t��uH���[]�@�1��H��1�[]�H��}!1�H�81�����b���f���AUI��H�5 u!ATI��USH��H����,��H��t6L��H���-H��L��I���"K��L��H��H���T!����t&H��H��[]A\A]�H���!H�5u�H�81�����U���D��ATUH��H�5�t!S�i,��H��t-H��H���yP��H��H��I���$����tH������H��[]A\����L���JM��H��|!H�5�H�81����f���ATUH��H�5/t!S�+��H��t/H��1�H���7B��H��H��I����F��L��t�}��H��[]A\�� ����k��H�d|!H�5�H�81������H��H�5�s!�+��H��t)H���_L��H��tH��H���@��fD�H������f���ATUH��H�5os!S�9+��H��t/H��1�H���wA��H��H��I���	2��L��t���H��[]A\��`������H��{!H�5;�H�81�������H��H�5s!��*��H��t)H����2��H��tH��H���?��fD�H������f���UH��H�5�r!SH���w*��H��t$H��H���w-��H��H���D����t"H��H��[]�H�O~!H�5!�H�81��6���������H��H�5Qr!�*��H��tH���"��H��H���7���^���ff.���ATI��USH���t=H��H�H��x\H�5�q!L����)��H��t0H��H��� ����tH��[]A\��H���x%��H����^���H��}!H�5a�H�81��v��H�z!H�5t�H�81��^��ff.���H��H�5qq!�<)��H��t3H���,��H�@H�xH�DH���fDH��H���d)���_���ff.�@��H��H�5q!��(��H��tH���H��|!H�5��H�81����f.���UH��H��p!1�SH��H�y!H�8�K��H��H��t#H���[��H��tH�C H��H��[]���H����H�y!1�H�81��F��fD��SH�\z!H�5��H��{!H�H�;�#��H��x!H�;H�5��H�H��{!H��"��H�qx!H�5���H��H��O ��H�;�����H����H�5I_�6��H�;�H�5�H�5�e�6��H�;1�H�M���H�5���q6��H�;�H�����H�5���V6��H�;1�H�*�H�5���>6��H�;1�H�"���H�5-t�&6��H�;�H�����H�5���6��H�;1�H�?���H�5����5��H�;�H�����H�5x���5��H�;1�H�L���H�5|s�5��H�;�H�����H�5R��5��H�;1�H�I�H�5tr�5��H�;�H�n�H�5,��r5��H�;�H����H�5��W5��H�;�H�h���H�5o��<5��H�;�H����H�5�w�!5��H�;1�H����H�5-Z�	5��H�;1�H�]���H�5:p��4��H�;H�+pH�5�d�;$��H�;1�H�����H�5p��4��H�;1�H�g���H�5�r�4��H�;�H���H�5^��4��H�;[�H���H�5N��t4��@���-�����UH�5dn!SH��dH�%(H�D$1��Z%��H����1�H��H���:��Hc�H����1���!��H��H�@H� uQH��H��H�$�R:����x[H�H�4$�� tBH�CH�SH)�H9�jH���"��H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�lx!1�H�81����H��x!H�5M�H�81����H�
���H�5H�H�=,n�Y ���.��@��UH�5Dm!SH���J$��H��tZH���-$��H��H���'����u.��H��H���a��H��H��tFH��H���F��H��H��[]�;�������H��[H��]�%��H��w!H�5��H�81�����H��w!1�H�81������SH��H�t$H�5�l!�#��H����H�|$H���p��H�|$H�D$� ��H����6��H�t$H��� t,H�~Hcω�H9�u+H�vH���E����t H�D$H��[�H��H�������>��H��v!H�5�H�81����H�w!H�5äH�81��
��ff.���ATUSH����upH�����tgH��ƒ���tZ��uUI��H��H�5�k!�"��H��H��tCH�5�k!L���"��H��t/H���C��H��t:H�C H���~*��H��[]A\�fDH���h��H�iv!H�5�H�81��P
��H�	v!H�5:�H�81��8
�����AUATI��H�5k!UH��S��H��H��XdH�%(H�D$H1��!��H�D$H����H�D$I��H�D$8H�D$L�l$0H�D$@���H�D$ �������-1�I�<$H�<$����H�D$H�D$H���EH�<$�����S��L��H�$���H�$H��� ��H�PH�T$ H�PH�t$ H�|$���H�T$H�U H����H�L$HdH3%(H����H��X[]A\A]��I�T$H�T$���V���I�T$H�T$���BH����H�5b�!H�|$(H����L�d$(�H��L����3��H�D$H�5+�!H�D$(H����L��H���3�����K���H�D$H�5�!H�D$(H����L��H���z3������DH�|$ �&>�������������H�D$ �h���f��H�=�<��H��H���!�4����H�=���_<��H��H�e�!�C���H��H��H�D$ ���q����	H�=���'<��H��H�%�!�>���H�|$ t
H�|$ �v=��������'���)��H�)s!1�H�81��]
��H�^s!H�5
�H�81��E
��D��AUATI��UH��S��H��(dH�%(H�D$1����H�D$�������SI�$H�$I�D$H�D$���`H��E1��eC��H�|$����H�<$H� �rH���9��A�ą�u%H�<$H� ��H����2��A�ą��'I�����H�.QH�=��HD��7 ��H�t$H��H�D$���H�|$��B��H�5�f!H���<��H��H����H�Io!H�g!1�H�8��
��H��H�5@�1�I�����H��tH���@��H��H��H����B��H�L$H� ��H��D��H��H���$��H�C0H��I���a1��M���)M�e L��H�T$dH3%(�KH��([]A\A]�f�M�l$����H���A��H�|$���I�������E1����fDH�����H�I�]���������~dI�$H�D$H�$I�T$H�T$��t*M�l$��>H��u*�|���fDH��J����A�H�����H�|$�:���H���H�|$t
H�|$�:�������%��H��p!H�57�H�81����H�L$H�3p!H�5��H�$H�81��^��H�p!H�$H�5k�H�81��B���}&��ff.�f����gH�5��[<��ff.���UH�5�d!SH�����H��tqH���@��H���%��H��H��tF1�1�H��H���=����tH��H��[]�<3��@H���/��H��H������H��H��[]�3��H�Po!1�H�81����H��o!H�51�H�81��l��ff.����H��H�5Ad!�L��H��tH��������H�H��H�Ѓ��H�/o!H�5ۜH�81����fD��USH��H�t$H�5�c!���H��tBH�|$H���s?��1�H���i��H��H��tXH��H�����H�߅�t)����H�D$H��[]�H��n!H�5[�H�81�������H�Jn!H�5՜H�81��y��H�2n!H�5��H�81��a���PXH�5�H��H�Tn!H�81��B��f���ATI��USH��H�5�b!�&��H��t)H��L��H�5��H����"��H���?��H�E H��[]A\������ATI��USH��H�5kb!����H��t)H��L��H�55�H���"��H������H�EH��[]A\��C�����ATI��USH��H�5b!���H��t)H��L��H�5��H���<"��H���4��H�EH��[]A\�����ATI��USH��H�5�a!�6��H��t)H��L��H�5��H����!��H���D4��H�EH��[]A\������AUI��ATI��U��SH��hdH�%(H�D$X1�H�D$H�\$H�D$8H�D$H�D$@H�D$ H�\$0H�D$H���H�D$(��������1�H�D$0H��1�H�x �!f�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9���H��ukH�t$H��tL������H�t$H��tL���u���H�t$H��tL������H�t$ H��tL�����H�\$XdH3%(L��uOH��h[]A\A]ÐH�|$(�5���@�����x
H�t$(����H�|$(t
H�|$(�5���1��������!�����U1�H�`!SH���(���x�8H�5*�H���'��H��t9H��H��E1�E1�1�1�1���6��H�] H��H�5R�����H��H��[]�H�k!H�5��H�81����f���S1�H��_!���H���5��H��t	H�C H��[�H��j!1�H�81����@��SH��H�5�_!���H��t1�H�����H��@������H��[�H�~j!H�5*�H�81��e��D��UH��H�A_!1�SH��H�cg!H�8���H��H��t#H���+7��H��tH�C H��H��[]���k����H��i!1�H�81����fD��H��H�5�^!����H��tH���H��i!H�5�H�81����f.���ATH��g!H�5]�UH�-i!SH�H�}���L�%Xi!H�}H�5E�H�.i!H�I�$�b��H�Ci!H�5���H��H��
��H�;�����H�:���H�5�L�$��H�=������H�;E1�1ɺH���.��H�=�����H�;E1�1ɺH���.��H�=W����H�;E1�1ɺH���{.��H�=1��o��H�;E1�1ɺH���Z.��H�=֖�N��H�;E1��H�ƺ�6.��H�;�H�'���H�5Q��K#��H�;�H�����H�5J��0#��H�;�H�Q���H�5D��#��H�;�H���H�5:��"��H�;�����H���H�5$���"��I�$H�}H�5�����H�e!H�5��H��H��B��H�;�����H���H�5<K�"��H�;�H���H�5wQ�|"��H�;�H�}���H�5E��a"��H�;�H���H�5/��F"��H�;�H�����H�5[��+"��H�;1�H���H�5�K�"��H�;1�H����H�5�H�!��H�;1�H�����H�5=���!��H�;1�[H�v�]H�5�FA\��!������*�����UH�5\!SH��dH�%(H�D$1����H����1�H��H����5��Hc�H����1��1��H��H�@H� uQH��H��H�$�5����~[H�H�4$�� tBH�CH�SH)�H9�jH���J��H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H��a!1�H�81���H��e!H�5y�H�81�����H�
����H�5u�H�=|[�
������@��AWH�5�Z!AVAUATUSH��(dH�%(H��$1��|��H����H��I���/��A�Ņ���Hc����H�D$E����1�L�d$�TfDL�����I��H������HchH���f��L���H�l-H��1�H�����H�|$H���,��A9�ty��L������H��H����H���#���L��H���������L���+�����l��������H���e��I���`���DH��a!H�8t8���H�D$H��$dH3%(H�D$��H��([]A\A]A^A_�H�c!��H�=�BH��S4��H���H�=ϓ�:4��H�;A�_1�H�
��H��B��'*���g���H��_!1�H�81�����H��c!H�5X�H�81��������f�ATI��H�5�X!US���H��ttH���P4��H������H��H��tI1�L��H��H��������xM��u��tH��[]A\��&��H������H�@_!H�5�H�81��7���H�(_!1�H�81��$���H�%c!H�5��H�81�����ff.����S��A���H���	��H�߉��_���H��[�f.���USH��H�����H��H���.��H���*��H��H��H��H��[H�5{�1�]�>,��ff.���ATUSH����upH�����tgH��ƒ���tZ��uUI��H��H�5�W!�C��H��H��tCH�5�W!L���,��H��t/H���o��H��t:H�C H���N%��H��[]A\�fDH�����H��a!H�5��H�81����H��]!H�5đH�81��������AUATI��H�5�V!UH��S��H��H��8dH�%(H�D$(1��
��H�D$H���r�h���H�D$ �������F1���u1H���`H�L$(dH3%(H���FH��8[]A\A]�fDM�,$��uoA�H����L���(���H��H���3I����H��L��1��o��H�5��!I��H����L�u
1�1�H���0���d���@M�d$���wH��t�H�|$ �*�����;����v���fD�k�����HH�D$ ����f�A���H�5��!H����H��]!H�8����I���8���f��H�=�CH�D$�(��L�L$H��H���!�*���fDH�|$ A�A���)������������DL�����H�|$ H�D$ ����H�T$ H��� tDH�BH�RH�D$H�t$H�|$���H�T$H�U H���&���H�g[!1�H�81��c���H��H����H�T$H��봾H�=?��'��H��H��!���H�|$ t
H�|$ �	)���1����{��H�_!H�5��H�81����.��ff.���S1�H�"T!���H���u��H��t	H�C H��[�H��Z!1�H�81����@PXH�5.�H��H��^!H�81����f�UH��H�5�S!SH���k
��H��t(H�5�S!H��H���T
��H��t)H��H��H��[]�N���H�?^!H�5ǍH�81��&���������H�����H�������x��H�H��H��H��H���f���UH��SH��H��H��H�~[!H�0���H��u	H��1�[]�H��H���5����¸��u�H��[]���SH��������t"H�6H��t@��t[H��H�H��[���H�5�R!H���Y	��H��tb1�1�H������H��H��tfH�����Hc�H9�unH��H�߉�[�*���H��H�T$�*��H�T$H��H��[H���N����1��b��H��\!H�5{�H�81����H��X!H�5�H�81����H�����f.���H��H�5�Q!���H��t3H���"��H��������?H9�wH�DH���fDH��H���T�����ff.�@��H��H�5�Q!�<��H��t3H���?���H��������?H9�wH�DH���fDH��H�������_���ff.�@��AWAVI��AUATI��US��H��hdH�%(H�D$X1�H�=~!��H�D$(��H�D$0A�Dž�t*��~���5�	��u0����������[����������i���L�l$(I�$H�D$I�D$H�D$ ���AH�|$0��L�D$@�1�L��H�5�~!�J(��H�|$�+��H�|$ H�$���H�D$H�5�~!H��~!H�D$8H���YH�rX!H�8��H�L$8�H��H������H��H�|$@A�����H��4t@���o�z���A��H�|$HE1�H��4t@���?�Z���A��H�5�O!L���X��I��H����H�L$ H��� ��H��H��H�����H�L$���
���H�L$��H��E��A��L��AUH�t$���ZY����H�T$XdH3%(L���kH��h[]A\A]A^A_�f.��H�=ۉ�/"���H�=qEH�\}!�"��H�X}!����H�D$0H�������H�|$0�`#�����H�yHclj�H9���H�IH���H�L$�"�������H�L$���������A��������A�����I�$A�H�D$I�D$H�D$ f.�I�l$H�D$0���Z���H��uM1�L�D$@�L��H�5�|!�%��H�|$�C)��H�|$ H�$����H�������fD�H�|$0�q"�����H�=l��� ��H��H�|!���Hc�M�l�A���2/��I������%/��A�E�����/��L�l$(I������H�|$(��	��H�l$(I��H����.��E����.����M��uNH�D$(�����I�$L��H�D$@I�D$L�l$(H�D$ ����������������f.�1����I�$L�l$(H�D$��u�H�l$ ���G�������~��
��H�ZS!H�5��H�81��Q�H�RW!H�5چH�81��9�H�|$0������H��I�$I��H��s��H�=\LH�C1����L�l$(���Hc�I�|���H�D$0���T������f�H��u:���T-��H�|$(�����H�|$(�k��H�l$(I��H���H-���V-��D�[�I��H�D$(�Z���1�H�=�K��I�$L�l$(H�D$I�D$H�D$ �"�����ATUH��1�SH��H��H��0dH�%(H�D$(1��"��H��I����!���H��H�����1�H����!���H��H�D$��!���H��H�D$�!��H�D$ H��t;H�t$L�������H�L$(dH3%(��H��0[]A\��H�D$H�5Ty!H�L$H��H�D$���H�D$ H��u�H�5�x!H��tH��R!H�8�'�H�D$ �r���D�H�=r����H��H��x!���V��fD��UH��H�QJ!1�SH��H��R!H�8��H��H��t#H���+��H��tH�C H��H��[]���k����H��P!1�H�81���fD��H��H�5�I!���H��tH���H��T!H�5�H�81��j�f.���UH�=��SH�����H��S!H�5��H�x!H�VR!H�;H��#���H�P!H�;H�5��H�H��S!H�����H��Q!H��Q!H��H�2H���H�;H�5���E���H�;�����H��H�5?7���H�;�H�+�H�5z=���H�;�����H�����H�5��d��H�;�����H����H�5N>�I��H�;1�H�]�H�5ǃ�1��H�;1�H�u�H�5;E���H�;1�H�}�H�5�4���H�;�H���H�5B=��
��H�;H�3=H�5'=�0���H�;�H���H�5=�
��H�;1�H�y���H�5�^�
��H�;1�H����H�5#��
��H�;1�H���H�5�2�m
��H�;�H�5��������H��H���4����H�=kE�c��'H��H���s��H�=���B��'H��H���R��H�=(��!��'H��H���1��H�=�����'H��H�����H�=n�����-H��H������H�=P����-H��H������H�=?���H��-H����H�;H��H�5p����H�;�H�5Sv�w��H�;�/"H�5��c��H�;�?H�5���O��H�;H���
H[H�5�]�5��D���G�����AWAVAUI��ATUH���SH��1�L�eH������:H����H9�}TL�5�P!L��I�6H�<�L�<����H����H��H�E�� u�H;]}L�5�P!H�E I�6��f.�H�5F!L���a���H��H��u��@H���(��1�H���>��H��u�E1�L�e�+H����I9�}4L��J�<����H��H���
����tdI��H�E�� u�L;m}H�E ��H��H��[]A\A]A^A_�I�H�E t?H��J�|=���H��H�5)?H��H�O!H�81���H�>M!1�H�81���H�m �H��O!H�5��H�81��t�@��UH�5E!SH��dH�%(H�D$1��J���H��toH�����H���u�H��H��tDH��1�H����H�$H��H�0���H�߅�t���H�L$dH3%(u7H��[]���H��L!1�H�81����H��N!H�5�H�81������f���UH�5TD!SH��dH�%(H�D$1����H����1�H��H������Hc�H����1�����H��H�@H� uQH��H��H�$������~[H�H�4$�� tBH�CH�SH)�H9�jH���*���H��H�L$dH3%(unH��[]�H�C�f.�H��H�S���H�|K!1�H�81����H��M!H�5�~H�81���H�
Q��H�5�~H�=\C�������@��ATUSH����uxH�����toH��ƒ���tb��u]H��H9�tGH�5C!H���N���I��H��tFH�5�B!H���7���H��t2H���J�H��H��t:L���Z���H�k H��[]A\�fDH����H�M!H�5�}H�81����H��J!1�H�81����D��ATI��UH��S��H�� dH�%(H�D$1�H�B H�$��H�D$����������tjI�$H�D$����H�|$��H�|$I���7�H�|$H�D$���1�1�L��H��H���	��H�$H�U H����H���M��H�D$H�|$u'H�L$dH3%(H����H�� []A\��H�|$������t��i���D�����5���H�|$t
H�|$����1������1�1ҾH���g������L��H�����H��I��H�$H�E ��M���T���H��H!1�H�81��H����PX1�H��H��H!H�81��'����UH��H�5�@!SH������H��t$H��H���w���H��H��������t"H��H��[]�H��J!H�5�{H�81����������AUH�5c@!ATUSH�����H����H��I�����Ņ�xLHc��D�I�Ņ�t)1���L����+�H�����L��H���h��9�u�H��L��[]A\A]�fDH�qG!H�8tH��[]A\A]�4���@H��H!��H�=�(H��0��H���H�=w���H�;A�c1�H�
�zH�|(�����H��I!H�5�zH�81���f.���UH��H�5A?!SH�����H��t[H��H������H��H�����H��H�������t��uH���[]�@���H��1�[]�H��F!1�H�81��'�H�(I!H�5zH�81���ff.�@��AUI��H�5�>!ATI��USH��H�����H��t6L��H���-��L��I���"��L��H��H���d���t&H��H��[]A\A]�H��H!H�5�yH�81�����E���D��ATUH��H�5>!S�i�H��t-H��H������I��H���~��L��H������t H��[]A\�H�8H!H�5.yH�81����H��E!H�5=yH�81�������H��H�5�=!���H��tH�����H��t$H��H����H��G!H�5�xH�81�����q������UH��H�5Q=!SH����H��t$H��H�����H��H�������t"H��H��[]�H�oG!H�5exH�81��V���������H��H�5�<!�<�H��tH�����H��t$H��H�����H�G!H�5xH�81����������ATI��USH���t=H��H�H��xoH�5�<!L�����H��tCH��H�����tH��[]A\��H����H���H�<D!H�5�wH�81����H��F!H�5�wH�81��s��H�D!H�5qrH�81��[��ff.���UH�5�;!SH���:�H��t5H������H���e�H��H��tMH��H����H�߅�t#H��[]�	��H�F!H�5�vH�81��������H�|C!1�H�81��������ff.���UH�5d;!SH����H��t5H���]��H�����H��H��tMH��H����H�߅�t#H��[]����H�qE!H�5gvH�81��X�����H��B!1�H�81��@�����ff.���S1�H��:!����H���e
��H��t	H�C H��[�����f���H��H�5�:!���H��t3H���/�H�@H�xH�DH���fDH��H����H��D!H�5�uH�81����ff.����H��H�51:!�|�H��tH���H�sD!H�5iuH�81��Z��f.���SH�lB!H�5�uH��C!H�H�;�+�H��A!H�;H�5�;H�H��C!H���H�Q@!H�5���H��H��_�H�;�����H����H�5Y'���H�;�H�5���H�5�-���H�;1�H���H�5�9���H�;1�H���H�5�#�i���H�;H��9H�5X.��H�;1�H����H�5�9�;���H�;1�H�O���H�5S[�#���H�;�H�4���H�5lo����H�;1�H����H�5yo��H�;�H�Q���H�5fo����H�;1�H�y�H�5*o���H�;1�H����H�5�4���H�;�H�6���H�5�8���H�;�H�����H�5�H�o���H�;�H���H�5/@�T���H�;1�H�����H�5�s�<���H�;�H�M�H�5�s�!���H�;[�H����H�5�s����D��H�������'�����UH�58!SH��dH�%(H�D$1����H����1�H��H����������Hc�1��b�H��H�@H� uRH��H��H�$�����~\H�H�4$�� tCH�CH�SH)�H9�pH���{�H��H�L$dH3%(utH��[]ÐH�C�f.�H��H�S���H��@!H�5�rH�81����H�A!H�5�rH�81����H�
ls�H�5�rH�=�6�������ff.�@��AWAVAUI��ATUH���SH��1�L�eH���U���:H����H9�}TL�5�=!L��I�6H�<�L�<��V��H����H��H�E�� u�H;]}L�5s=!H�E I�6��f.�H�5I6!L���1�H��H��u��@H����1�H������H��u�E1�L�e�0H����I9�}<L��J�<��������H��H���X���tgI��H�E�� u�L;m}	H�E ��H��H��[]A\A]A^A_�I�H�E t?H��J�|=��
��H��H�5�.H��H��>!H�81��m��H��>!1�H�81��Z��H�m �H�U?!H�5�pH�81��<��ff.����ATUSH����upH�����tgH��ƒ���tZ��uUI��H��H�55!���H��H��tCH�5�4!L�����H��t/H���o�H��t:H�C H������H��[]A\�fDH�����H��>!H�5NpH�81����H�!>!H�5rpH�81��x�����UH��H�5q4!SH���W�H��t)H��H���W������H��H������t"H��H��[]�H�*>!H�5�oH�81����H��=!1�H�81����ff.���AUH�5�3!ATUSH�����H����H��I����Ņ�xLHc��t��I�Ņ�t)1���L������H������L��H�����9�u�H��L��[]A\A]�fDH��:!H�8tH��[]A\A]�d�@H�<!��H�=�H��`
��H���H�=Ej�G
��H�;A��1�H�
�nH����4���H��<!H�5�nH�81�����f.�PXH�5{nH��H��<!H�81����f���ATUH��H�5�2!S��H��t/H��1�H������H��H��I�����L��t���H��[]A\�������H��;!H�5�nH�81��C����H��H�5A2!�,�H��t)H�����H��tH��H���^���fD�H����)���f���ATUH��H�5�1!S���H��t/1�H��H���g�H��H��I���)	��L��t�M��H��[]A\������;��H�,;!H�5�mH�81������H��H�5�1!�l�H��tH������H��H���
���~���ff.���S1�H�B1!����H�����H��t	H�C H��[�H��:!1�H�81����@��UH��H�1!1�SH��H�[:!H�8���H��H��t#H���k�H��tH�C H��H��[]���{����H�::!1�H�81����fD��H��H�5�0!�|�H��tH����H��tH���H�f:!H�5lH�81��M��H��9!1�H�81��:��f.���SH�L8!H�5<lH��9!H�H�;��H��9!H�;H�5&lH�H��9!H����H�Y9!H�5����H��H��?��H�;�����H�����H�59��H�;�H�u���H�5t#�y�H�;1�H�
���H�5o2�a�H�;�H�����H�5�e�F�H�;1�H����H�5�k�.�H�;�H�����H�5:W��H�;1�H�7���H�5�1��H�;�H�<���H�5�e���H�;�H�����H�5�e���H�;1�[H����H�5���f.�f���SH��H�� H�5�\!dH�%(H�D$1�H�GH�$H�GH�D$H��t'H�;�H�����H�T$dH3%(u$H�� [�H�=]M����H��H�-\!��~�ff.���SH����H��tH����H�5�3!H������H������H��tH������H�����H��[�����H���5�[!��H��H���!������������H���5�[!���H��H�������SH��H��H�5j�I�H��[�@��ATE1�UH��SH��H�t$H��t
H�|$����I��H�5.!H���7�H��H��tQ��H��H����H��t)E1��L��H�������uH��H��[]A\�H��5!1�H�81�����H��6!H�5^iH�81�����fD��ATE1�UH��SH��H�t$H��t
H�|$�)��I��H�5_-!H����H��H��tQ����H��H�����H��t)E1��L��H���b����uH��H��[]A\�H�25!1�H�81��.��H�/6!H�5�hH�81����fD��H�m1!S1�H��H�h,!H�8���H��tH�X [�H��5!H�5hH�81�����ff.�f�PXH�5}hH��H��5!H�81����f���H��H�5,!��H��tH�����H��H�H�D����ff.���ATI��H��UH��S�j����t6H�H��H�5�+!L���1�H��t)H��H��1���H��[]A\��H������H�����>���ff.���AWAVAUI��ATA��USH��H��XdH�%(H�D$H1�H�D$H�D$0H�D$H�D$8H�D$ H�D$@���H�D$(����E����1�I�mH�l$A��'H�D$H�D$ H��t7H�|$(�F����+@I�UH�T$A��t�I�UH�T$ A���BH��u�H�5�*!H����I��H���oH�5�*!H�����I��H���<L�d$E1�I��tL����I��H�|$ H����H�t$(���H�D$�D$(����H�L$L��L��L�������
H�5fH����H��tH��H������H�5WOH������H�5HOH��H���#�L��H�5aOH����H��H�L$HdH3%(��H��X[]A\A]A^A_�H�D$�Z���f.�����E��~
H�D$(�f���H�|$(t
H�|$(������D���8�L���p���|$(���H��2!H�57eH�81����H��2!H�5WeH�81����L���/��H�5h.!H�|$�.�H�_1!H�5AeH�81��V�������USH��H�5�(!H���7��H��t3H��H���u����H�����H��H��[]�fD���������:���f.���ATUH��SH���t-I��I�H�5@(!H������H��t L��H�����H��[]A\�H�����I��������ff.���H��H�5�'!�|��H��t)H����H��tH��H���N�fD�H������f���H��H�5�'!�,��H��tH����H��H�����N���ff.���H��H�5a'!����H��tH���o�H��H�H�D�����ff.���H��H�5!'!���H��tH�����Hc�����H��H���[������fD��AUH�5�&!ATUSH���f��H���H����H��H��t}H���e��A�ą�xNHc����I��E��t+1�@��H����;��H����L��H������D9�u�H��L��[]A\A]�DH�!-!H�8t+H��[]A\A]����@H��A�[L��]A\A]�@H�y.!��H�=0H�����H���H�=yb���H�;A�a1�H�
xbH������t���H�X/!H�5bH�81��?��ff.�@��AVAUATI��UH��S��H��0dH�%(H�D$(1�����H�D$�������*M�4$����A�H�5�R!H�l$L�t$L�l$ H���HH�*!H�L$�H�8���H���������
���H�5mJH��H���H�H�5IR!H����1�1�H����H��I�����H�5faH��H����H���w���H�5�+H��H����H�����H�59aH��H�����L��H�L$(dH3%(��H��0[]A\A]A^��M�l$�������H�|$t
H�|$����������H�5�IH������
���@�H�=:+���H��H�MQ!�����H�=$����H��H�5Q!����;�����q���H�D$M�4$A���uH���O���H�|$�����@����M�l$��~��/����<�ff.����UH�5T#!H��SH������H��tcH�5�HH��H���@���5�P!H��H�����H�������t��uH���[]�f�����H��1�[]�H�{+!1�H�81��o�����f.�PX1�H��H�I+!H�81��G�����S1�H��"!����H�����H��t	H�C H��[����f���USH��H��H�����H�5�"!H��H������H��tH��H���y����u"H��H��[]�H��+!H�5J^H�81�����M���ff.�f���USH��H��H����H�5T"!H��H���y��H��tH��H���9�����u"H��H��[]�H�[+!H�5�]H�81��B������ff.�f���H��H�5�!!���H��tH�������u"�H���H�+!H�5�]H�81�������PXH�5e]H��H��*!H�81�����f���ATUH��SH���t-I��I�H�5p!!H�����H��t L��H�����H��[]A\�H���X��I�������ff.���UH��SH��H�5!!H���D��H��t-�5)N!H��H�����H��H��H�5F����H��H��[]��-���ff.�f���SH�5� !H��H������H��tqH��H�5j�e���H�߾�h���H�ߺH�5�\���H�ߺH�5b'�p��H�ߺH�5�\�\��H�ߺH�5\�H��H��[����ff.���S1�H�" !�
��H������H��t	H�C H��[�����f���ATI��H��USH���t2�����H�5�!L�����H��t ��H�����H��[]A\�D�s���������f.���ATI��H��USH���t2�����H�5|!L�����H��t ��H�����H��[]A\�D����������f.���ATI��H��USH���t2�E����H�5�!L���D��H��t ��H�����H��[]A\�D��������Z�f.���ATI��H��USH���t2������H�5\!L������H��t ��H���e�H��[]A\�D�S��������f.���AVAUATUSH��@dH�%(H�D$81���H����I��L�t$H����L��L��H�=Z��E��T$I�Ņ�����H�t$ L��H�l$ H�H�=|�L�l$0H�Ѓ�H�D$(��H�ËD$��urI�E H��tNL������t"1�H�L$8dH3%(uAH��@[]A\A]A^��L��D$�_���D$��f�1�L���F���������� ��H�=[1��"���q�������H�=�Z1�����b�����ATU��SH��5QJ!H�����H��tH�ډ�[H��]A\���D�%!J!H���i��H��D���~�H��uɉ�[]A\�f���H��H�5�!���H��tH���H��%!H�5rXH�81��ڼ��f.���ATE1�E1�1�UH��X1��S�
����I!����E1�E1�1�1�H��X������nI!����H�-�$!H��#!H�5�XH�}H��U��L�%&%!H�}H�5�XH�4$!H�I�$�0��H��#!H�=
AH�����H�;E1�1ɺH����H�=X���H�;E1�1ɺH����H�=�"���H�;E1�1ɺH���s�H�=�W�g��H�;E1�1�H�ƺ�R�H�;H�58������H�;�����H�����H�5��X��H�;H�5D���H�;�H�����H�5�W�.��H�;�H����H�5�W���H�;�H�T���H�5�W���H�;�H����H�5�W����H�;�H�^�H�5�A����H�;�H��H�5yW���H�;�H�H�H�5gW���H�;1�H�p���H�5XW�t��H�;�H���H�5OW�Y��H�;�H�Z���H�5�"�>��H�;�����H��H�5� �#��I�$H�}H�5W�/��H��!H�5��H��H����H�;�����H��H�5�����H�;H�5��,��H�;1�H��H�5� ���H�;1�H�H�H�5�U���H�;1�H��H�5�U���H�;�H�E�H�5uV�i��H�;1�H���H�54 �Q��H�;1�H�e�H�5LV�9��H�;1�H�
�H�5@V�!��H�;1�H���H�55V�	��H�;�H�*�H�5�U����H�;�H�����H�5�U����H�;�H����H�5�U���H�;[�]H�g�H�5�?A\���H��!H�5;VH�81�衸��H��!H�5�TH�81�艸����H��H���OSSL_DEBUG: empty sk!ossl.c [%s:%d]
items in sk < -1???inlen <= LONG_MAX / 20123456789abcdef(null)error on stack: %s (%s)error on stack: %sTurning on FIPS mode failedTurning off FIPS mode failedOPENSSL_init_sslOpenSSL2.1.4OPENSSL_VERSIONOPENSSL_LIBRARY_VERSIONOPENSSL_VERSION_NUMBEROPENSSL_FIPSfips_modefips_mode=OpenSSLErrordebugdebug=errorsto_derpassed data is not valid String???password must not be longer than %d bytesobject in array not of class ##type##OpenSSL 1.1.1k  FIPS 25 Mar 2021ossl_bin2hexinvalid OBJECT ID %liOBJ_obj2txt%2d%2d%2d%2d%2d%2dZbad UTCTIME format: "%s"%4d%2d%2d%2d%2d%2dZunknown time formatutcASN1_INTEGER is NULL!invalid tag classtag number not specifiedossl_asn1.cto_aArrayillegal EOC octets in valuemust specify tag numberinvalid tagging methodvalue is too shortinvalid length for BOOLEANinvalid BOOLEAN/%nil expectedunsupported ASN.1 typeASN1_TYPE alloc failurei2d_ASN1_TYPEp0 - p1 == alllenASN1_get_objectEOCUNIVERSALCONTEXT_SPECIFICAPPLICATIONPRIVATEIMPLICIT@value@tag@tagging@tag_class@indefinite_length@unused_bitsASN1ASN1Errortraversedecodedecode_allUNIVERSAL_TAG_NAMEASN1Datainfinite_lengthindefinite_length=infinite_length=initializePrimitiveConstructiveeachBooleanIntegerEnumeratedBitStringOctetStringUTF8StringNumericStringPrintableStringT61StringVideotexStringIA5StringGraphicStringISO64StringGeneralStringUniversalStringBMPStringNullObjectIdUTCTimeGeneralizedTimeSequenceEndOfContentregistersnlnoidshort_namelong_nameINTEGERBIT_STRINGOCTET_STRINGNULLOBJECT_DESCRIPTOREXTERNALREALENUMERATEDEMBEDDED_PDVUTF8STRINGRELATIVE_OID[UNIVERSAL 14][UNIVERSAL 15]SEQUENCESETNUMERICSTRINGPRINTABLESTRINGT61STRINGVIDEOTEXSTRINGIA5STRINGUTCTIMEGENERALIZEDTIMEGRAPHICSTRINGISO64STRINGGENERALSTRINGUNIVERSALSTRINGCHARACTER_STRINGBMPSTRING�#��D#���"��d$���$���#��$���$���$���$���"���$���$���$���$���$���$���$���$���$���$���$���$��"��"��/.���+��,�� ,���,��-���-��/.��/.��/.��,��/.���,��/.��/.��/.��0-��0-���,���,���,���,���,��h-��+���,���,���,���,��/.���,��ossl_asn1prim_to_derto_der_internalbad GENERALIZEDTIME format: "%s"explicit tagging of unknown tagp - (unsigned char *)RSTRING_PTR(str) == total_lengthindefinite length for primitive valueType mismatch. Bytes read: %ld Bytes available: %ldType mismatch. Total bytes read: %ld Bytes available: %ld Offset: %ldCan't convert nil into IntegerCan't convert nil into Booleanunused_bits for a bitstring value must be in the range 0 to 7indefinite length form cannot be used with primitive encodingBIO_new_mem_bufBN wasn't initialized!BN_bn2binossl_bn.cBN_dupBN_bin2bnbignum too longinvalid radix %dDon't know how to coerceBN_mod_inverseCannot init BN_CTXBNErrorinitialize_copynum_bytesnum_bits+@-@+-mod_addmod_submod_mulmod_sqr**mod_expgcd<=>ucmpeql?===zero?one?odd?negative?pseudo_randpseudo_rand_rangegenerate_primeprime?prime_fasttest?set_bit!clear_bit!bit_set?mask_bits!<<>>lshift!rshift!to_sto_ito_intto_bnOpenSSL/BNCannot convert into OpenSSL::BNCipher already initialized!Cipher not initialized!iv must be %d byteskey must be %d bytesunable to set AEAD tagossl_cipher.cout_len <= RSTRING_LEN(str)key not setdata must not be emptyout_len < RSTRING_LEN(str)cipher does not support AEADunable to set IV lengthCipherErrorciphersresetpkcs5_keyivgenfinalauth_data=auth_tag=auth_tagauth_tag_len=authenticated?key_len=key_leniv=iv_len=iv_lenblock_sizepadding=auth_tag_lenkey_setOpenSSL/Cipherunsupported cipher algorithm (%li)authentication tag not supported by this cipherdata too big to make output buffer: %ld bytessalt must be an 8-octet stringiterations must be a positive integerAEAD not supported by this ciphercouldn't set additional authenticated dataunable to set authentication tag lengtharguments for %li#encrypt and %li#decrypt were deprecated; use %li#pkcs5_keyivgen to derive key and IVretrieving the authentication tag failedunsupported cipher algorithm: %liossl_cipher_updateossl_cipher_finalOpenSSL for Rubywrong argument (%li)! (Expected kind of %li)wrong config formaterror in line %dConfigErrorDEFAULT_CONFIG_FILEossl_config.cDigest CTX wasn't initialized!Unsupported digest algorithm (%li).EVP_DigestFinal_exEVP_MD_CTX_newDigest initialization failed.EVP_DigestUpdateDigest initialization failedrequireDigest::ClassDigestErrorfinishdigest_lengthblock_lengthOpenSSL/DigestENGINE wasn't initialized.NUMERICNO_INPUTprivateopensslOPENSSL_init_crypto#<%li id="%s" name="%s">no such digest `%li'no such cipher `%li'EngineErrorloadcleanupenginesby_idcipherload_private_keyload_public_keyset_defaultctrl_cmdcmdsinspectMETHOD_RSAMETHOD_DSAMETHOD_DHMETHOD_RANDMETHOD_CIPHERSMETHOD_DIGESTSMETHOD_ALLMETHOD_NONEOpenSSL/Engineno such builtin loader for `%li'HMAC_CTX_newHMAC_CTX_copyHMAC wasn't initializedossl_hmac.cbuf_len <= EVP_MAX_MD_SIZEHMACErrorhexdigestOpenSSL/HMACossl_hmac_digestlength must be non-negativeEVP_PKEY_CTX_new_idEVP_PKEY_derive_initEVP_PKEY_CTX_set_hkdf_mdEVP_PKEY_CTX_set_hkdf_saltEVP_PKEY_CTX_set_hkdf_keyEVP_PKEY_CTX_set_hkdf_infoEVP_PKEY_deriveiterationsPKCS5_PBKDF2_HMACEVP_PBE_scryptKDFKDFErrorpbkdf2_hmachkdfKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecatedSPKI wasn't initialized!ossl_ns_spki.cnewlen <= lenChallenge.length <= 0?NETSCAPE_SPKI_verifyNETSCAPE_SPKI_set_pubkeyNetscapeSPKIErrorto_pemto_textpublic_key=challengechallenge=OpenSSL/NETSCAPE_SPKIossl_spki_to_derCert ID wasn't initialized!ossl_ocsp.cBIO_newi2a_ASN1_OBJECTd2i_OCSP_CERTIDOCSP_cert_to_idOCSP_CERTID_dupd2i_OCSP_SINGLERESPASN1_item_dupResponse wasn't initialized!Request wasn't initialized!d2i_OCSP_BASICRESPd2i_OCSP_RESPONSEOCSP_request_add0_idd2i_OCSP_REQUESTOCSP_single_get0_statuscertificate is not revokedOCSPOCSPErrorRequestadd_noncecheck_nonceadd_certidsigned?createstatus_stringbasicBasicResponsecopy_nonceadd_statusresponsesfind_responseSingleResponsecheck_validitycert_statusthis_updatenext_updaterevocation_timerevocation_reasonextensionsCertificateIdcmp_issuerserialissuer_name_hashissuer_key_hashhash_algorithmRESPONSE_STATUS_INTERNALERRORREVOKED_STATUS_NOSTATUSRESPONSE_STATUS_SIGREQUIREDRESPONSE_STATUS_SUCCESSFULRESPONSE_STATUS_TRYLATERREVOKED_STATUS_CACOMPROMISEREVOKED_STATUS_KEYCOMPROMISEREVOKED_STATUS_REMOVEFROMCRLREVOKED_STATUS_SUPERSEDEDRESPONSE_STATUS_UNAUTHORIZEDREVOKED_STATUS_UNSPECIFIEDNOCERTSNOINTERNNOSIGSNOCHAINNOVERIFYNOEXPLICITNOCASIGNNODELEGATEDNOCHECKSTRUSTOTHERNOTIMEV_CERTSTATUS_GOODV_CERTSTATUS_REVOKEDV_CERTSTATUS_UNKNOWNV_RESPID_NAMEV_RESPID_KEYOpenSSL/OCSP/CERTIDOpenSSL/OCSP/SINGLERESPOpenSSL/OCSP/BASICRESPOpenSSL/OCSP/RESPONSEOpenSSL/OCSP/REQUESTSingleResponse wasn't initialized!RESPONSE_STATUS_MALFORMEDREQUESTREVOKED_STATUS_AFFILIATIONCHANGEDREVOKED_STATUS_CERTIFICATEHOLDREVOKED_STATUS_CESSATIONOFOPERATIONossl_ocspreq_to_derossl_ocspres_to_derossl_ocspbres_to_derossl_ocspsres_to_derossl_ocspcid_to_derPKCS12 wasn't initialized.ossl_pkcs12.cPKCS12_parse@key@certificate@ca_certsASN1_dupUnknown PBE algorithm %liPKCS12ErrorOpenSSL/PKCS12ossl_pkcs12_to_derPKCS7 wasn't initialized.ossl_pkcs7.c@dataPKCS7_verify@error_stringNegative number of recipient!Negative number of signers!signedencryptedenvelopedsignedAndEnvelopedCould not parse the PKCS7PKCS7ri wasn't initialized.PKCS7si wasn't initialized.Could not add recipient.Could not add signer.must specify a booleanunknown type "%li"PKCS7Errorread_smimewrite_smimetype=detached=detacheddetached?cipher=add_signersignersadd_recipientrecipientsadd_certificatecertificates=certificatesadd_crlcrls=crlsadd_dataSignerInfoSignersigned_timeRecipientInfoenc_keyTEXTDETACHEDBINARYNOATTRNOSMIMECAPOpenSSL/PKCS7/RECIP_INFOOpenSSL/PKCS7/SIGNER_INFOOpenSSL/PKCS7OpenSSL::PKCS7#get_signer_info == NULL!signeddatasignedAndEnvelopedenvelopedencrypteddigestossl_pkcs7_to_derpkey is emptyCould not parse PKeyparameters missingpublic key missingPKEY wasn't initialized!EVP_VerifyInit_exEVP_VerifyUpdateEVP_VerifyFinalPrivate key is needed.EVP_SignInit_exEVP_SignUpdateEVP_SignFinalPKeyErrorprivate?OpenSSL/EVP_PKEYOpenSSL::PKey::PKey can't be instantiated directlyTHIS IS NOT A DH!qpub_keypriv_keyDH_set0_keyDH_set0_pqgincomplete DHDH already initializedDHparams_dupossl_pkey_dh.cFailed to generate keyNot a DH key!DHErrorgeneratepublic?exportparams_ok?generate_key!set_pqgset_keyossl_dh_to_derTHIS IS NOT A DSA!DSA_set0_keyDSA_set0_pqgDSA already initializedossl_pkey_dsa.cDSA PUBLIC KEYNeither PUB key nor PRIV keyincomplete DSAPrivate DSA key needed!Not a DSA key!DSAErrorsyssignsysverifyossl_dsa_to_derEC_POINT is not initializedEC_GROUP is not initializedEC_POINT_is_on_curveEC::Point already initializedEC_POINT_dupEC_POINT already initializedinvalid second argumentEC_POINT_newEC_POINT_bn2pointEC_POINT_oct2pointBIO_new(BIO_s_mem())EC_GROUP_set_seedEC_GROUP_newEC_GROUP_dupunknown curve name (%li)unable to create curve (%li)EC_GROUP_new_by_GF*wrong number of argumentsTHIS IS NOT A EC PKEY!EC_KEY_printoutlen=%dECDSA_verifyPrivate EC key needed!ECDSA_signECDH_compute_keyEC_KEY_set_public_keyEC_KEY_set_private_keyEC_KEY_set_groupEC already initializedEC_KEY_dupEVP_PKEY_assign_EC_KEYinvalid curve nameEC_KEY already initializedEC_get_builtin_curvesEC_POINT_point2octEC_POINT_set_to_infinityEC_POINT_invertEC_POINT_make_affineEC_POINT_is_at_infinityEC_GROUP_get_cofactorEC_GROUP_get_orderEC_GROUP_set_generatorEC::Group already initializedEC_KEY_check_keyEC_KEY_generate_keyNot a EC key!ECErrorECGroupPointGFpGF2mGFp_simpleGFp_montGFp_nistGF2m_simpleuncompressedhybridNAMED_CURVEEXPLICIT_CURVEgroup=private_key=private_key?public_key?dh_compute_keydsa_sign_asn1dsa_verify_asn1curve_nameasn1_flagasn1_flag=point_conversion_formpoint_conversion_form=seed=degreeinfinity?on_curve?make_affine!invert!set_to_infinity!to_octet_string@groupOpenSSL/EC_POINTOpenSSL/ec_groupEC_GROUP is already initializedunknown symbol, must be :GFp_simple, :GFp_mont, :GFp_nist or :GF2m_simpleunknown symbol, must be :GFp or :GF2munknown argument, must be :GFp or :GF2mcan't export - no public key setcan't export - EC_KEY_check_key failedunsupported point conversion form %+li (expected :compressed, :uncompressed, or :hybrid)unsupported point conversion form: %d, this module should be updatedbns must be 1 longer than points; see the documentationTHIS IS NOT A RSA!dmp1dmq1iqmpRSA_set0_crt_paramsRSA_set0_factorsRSA_set0_keyossl_pkey_rsa.cRSA already initializedsalt_lengthmgf1_hashautoincomplete RSAprivate key needed.maxNot a RSA key!RSAErrorpublic_encryptpublic_decryptprivate_encryptprivate_decryptsign_pssverify_pssset_factorsset_crt_paramsPKCS1_PADDINGSSLV23_PADDINGNO_PADDINGPKCS1_OAEP_PADDINGossl_rsa_to_derRAND_bytesRAND_bytes is not supportedRandomRandomErrorrandom_addload_random_filewrite_random_filerandom_bytesstatus?Selected protocol name must have length 1..255verify_hostname requires hostname to be setSSL SESSION get callback enteredSSL Session wasn't initialized.SSL SESSION remove callback enteredSSL SESSION new callback enteredcertificate does not contain public keyAdvertised protocol must have length 1..255SSL session is not started yet.%s SYSCALL returned=%d errno=%d state=%s%s returned=%d errno=%d state=%s: %s (%s)%s returned=%d errno=%d state=%sOpenSSL does not support tmp_ecdh_callback; use #ecdh_curves= insteadSSL NPN advertise callback addedSSL ALPN select callback addedSSL_CTX_set_session_id_contextSSL SESSION get callback addedSSL SESSION new callback addedSSL SESSION remove callback addedSSL TLSEXT servername callback addedservername_cb must return an OpenSSL::SSL::SSLContext object or nilSESSION_CACHE_NO_INTERNAL_LOOKUPSESSION_CACHE_NO_INTERNAL_STOREOP_DONT_INSERT_EMPTY_FRAGMENTSOP_NO_SESSION_RESUMPTION_ON_RENEGOTIATIONOP_ALLOW_UNSAFE_LEGACY_RENEGOTIATIONOP_NETSCAPE_REUSE_CIPHER_CHANGE_BUGOP_SSLREF2_REUSE_CERT_TYPE_BUGOP_NETSCAPE_DEMO_CIPHER_CHANGE_BUGSSL is not initializedSSL_set_fdarg must be Time or nilverify_certificate_identityossl_ssl.cpublic key mismatchSSL_CTX_use_certificateSSL_CTX_use_PrivateKeySSL_CTX_set0_chaincache_numconnect_goodconnect_renegotiateaccept_goodaccept_renegotiatecache_hitscb_hitscache_missescache_fulltimeoutswrite would blockread would blockSSL_set_sessionSSL_writesyswriteSSL_acceptSSL_connect:SSL_CTX_set_cipher_listSSL_CTX_newSSL2unrecognized version %+liSSL_CTX_set_min_proto_versionSSL_CTX_set_max_proto_versionSSL_readsysreadSSL_CTX_check_private_keySSL_CTX_add_client_CAcan't set verify locationsSSL NPN select callback addedSSL_CTX_set_alpn_protosSSL ALPN values addedSSL already initializednonblock=callcallback_stateossl_ssl_ex_vcb_idxSSL_get_ex_new_indexossl_ssl_ex_ptr_idxossl_sslctx_ex_ptr_idxSSL_CTX_get_ex_new_indexExtConfigSSLErrorWaitReadableSSLErrorWaitWritableSSLContextHAVE_TLSEXT_HOST_NAMEssl_timeoutssl_timeout=set_minmax_proto_versionciphers=ecdh_curves=security_levelsecurity_level=enable_fallback_scsvsetupfreezeSESSION_CACHE_OFFSESSION_CACHE_CLIENTSESSION_CACHE_SERVERSESSION_CACHE_BOTHSESSION_CACHE_NO_AUTO_CLEARSESSION_CACHE_NO_INTERNALsession_addsession_removesession_cache_modesession_cache_mode=session_cache_sizesession_cache_size=session_cache_statsflush_sessionsoptionsoptions=SSLSocketOPENSSL_NO_SOCKconnect_nonblockaccept_nonblocksysread_nonblocksyswrite_nonblockstoppeer_certpeer_cert_chainssl_versionpendingsession_reused?session=verify_resulthostname=tmp_keyalpn_protocolnpn_protocolVERIFY_NONEVERIFY_PEERVERIFY_FAIL_IF_NO_PEER_CERTVERIFY_CLIENT_ONCEOP_ALLOP_LEGACY_SERVER_CONNECTOP_TLSEXT_PADDINGOP_SAFARI_ECDHE_ECDSA_BUGOP_ALLOW_NO_DHE_KEXOP_NO_TICKETOP_NO_COMPRESSIONOP_NO_ENCRYPT_THEN_MACOP_CIPHER_SERVER_PREFERENCEOP_TLS_ROLLBACK_BUGOP_NO_RENEGOTIATIONOP_CRYPTOPRO_TLSEXT_BUGOP_NO_SSLv3OP_NO_TLSv1OP_NO_TLSv1_1OP_NO_TLSv1_2OP_NO_TLSv1_3OP_MICROSOFT_SESS_ID_BUGOP_NETSCAPE_CHALLENGE_BUGOP_MICROSOFT_BIG_SSLV3_BUFFEROP_MSIE_SSLV2_RSA_PADDINGOP_SSLEAY_080_CLIENT_DH_BUGOP_TLS_D5_BUGOP_TLS_BLOCK_PADDING_BUGOP_SINGLE_ECDH_USEOP_SINGLE_DH_USEOP_EPHEMERAL_RSAOP_NO_SSLv2OP_PKCS1_CHECK_1OP_PKCS1_CHECK_2OP_NETSCAPE_CA_DN_BUGSSL2_VERSIONSSL3_VERSIONTLS1_VERSIONTLS1_1_VERSIONTLS1_2_VERSIONTLS1_3_VERSIONexceptionwait_readablewait_writabletmp_dh_callbacknpn_protocols_encoded@cert_store@ca_file@ca_path@verify_mode@verify_depth@verify_callback@client_ca@renegotiation_cb@cert@extra_chain_cert@client_cert_cb@tmp_ecdh_callback@timeout@session_id_context@session_get_cb@session_new_cb@session_remove_cb@npn_select_cb@npn_protocols@alpn_protocols@alpn_select_cb@servername_cb@verify_hostname@io@context@hostnameSSL3TLS1TLS1_1TLS1_2TLS1_3OpenSSL/SSLOpenSSL/SSL/CTXU����������;��������������SSL Session already initializedi2d_SSL_SESSIONossl_ssl_session.cno session availableunknown typeBIO_s_mem()SSL_SESSION_print()SessionErrortime=OpenSSL/SSL/Sessionossl_ssl_session_to_derV_OKV_ERR_UNSPECIFIEDV_ERR_UNABLE_TO_GET_CRLV_ERR_CERT_SIGNATURE_FAILUREV_ERR_CRL_SIGNATURE_FAILUREV_ERR_CERT_NOT_YET_VALIDV_ERR_CERT_HAS_EXPIREDV_ERR_CRL_NOT_YET_VALIDV_ERR_CRL_HAS_EXPIREDV_ERR_OUT_OF_MEMV_ERR_CERT_CHAIN_TOO_LONGV_ERR_CERT_REVOKEDV_ERR_INVALID_CAV_ERR_PATH_LENGTH_EXCEEDEDV_ERR_INVALID_PURPOSEV_ERR_CERT_UNTRUSTEDV_ERR_CERT_REJECTEDV_ERR_SUBJECT_ISSUER_MISMATCHV_ERR_AKID_SKID_MISMATCHV_ERR_KEYUSAGE_NO_CERTSIGNV_ERR_KEYUSAGE_NO_CRL_SIGNV_ERR_INVALID_NON_CAV_ERR_INVALID_EXTENSIONV_ERR_NO_EXPLICIT_POLICYV_ERR_DIFFERENT_CRL_SCOPEV_ERR_UNNESTED_RESOURCEV_ERR_PERMITTED_VIOLATIONV_ERR_EXCLUDED_VIOLATIONV_ERR_SUBTREE_MINMAXV_ERR_UNSUPPORTED_NAME_SYNTAXV_ERR_PATH_LOOPV_ERR_SUITE_B_INVALID_VERSIONV_ERR_SUITE_B_INVALID_CURVEV_ERR_SUITE_B_LOS_NOT_ALLOWEDV_ERR_HOSTNAME_MISMATCHV_ERR_EMAIL_MISMATCHV_ERR_IP_ADDRESS_MISMATCHV_ERR_DANE_NO_MATCHV_ERR_EE_KEY_TOO_SMALLV_ERR_CA_KEY_TOO_SMALLV_ERR_CA_MD_TOO_WEAKV_ERR_INVALID_CALLV_ERR_STORE_LOOKUPV_ERR_NO_VALID_SCTSV_ERR_OCSP_VERIFY_NEEDEDV_ERR_OCSP_VERIFY_FAILEDV_ERR_OCSP_CERT_UNKNOWNV_FLAG_USE_CHECK_TIMEV_FLAG_CRL_CHECKV_FLAG_CRL_CHECK_ALLV_FLAG_IGNORE_CRITICALV_FLAG_X509_STRICTV_FLAG_ALLOW_PROXY_CERTSV_FLAG_POLICY_CHECKV_FLAG_EXPLICIT_POLICYV_FLAG_INHIBIT_ANYV_FLAG_INHIBIT_MAPV_FLAG_NOTIFY_POLICYV_FLAG_EXTENDED_CRL_SUPPORTV_FLAG_USE_DELTASV_FLAG_CHECK_SS_SIGNATUREV_FLAG_TRUSTED_FIRSTV_FLAG_SUITEB_128_LOS_ONLYV_FLAG_SUITEB_192_LOSV_FLAG_SUITEB_128_LOSV_FLAG_PARTIAL_CHAINV_FLAG_NO_ALT_CHAINSV_FLAG_NO_CHECK_TIMEPURPOSE_SSL_CLIENTPURPOSE_SSL_SERVERPURPOSE_NS_SSL_SERVERPURPOSE_SMIME_SIGNPURPOSE_SMIME_ENCRYPTPURPOSE_CRL_SIGNPURPOSE_ANYPURPOSE_OCSP_HELPERPURPOSE_TIMESTAMP_SIGNTRUST_COMPATTRUST_SSL_CLIENTTRUST_SSL_SERVERTRUST_EMAILTRUST_OBJECT_SIGNTRUST_OCSP_SIGNTRUST_OCSP_REQUESTTRUST_TSADEFAULT_CERT_AREADEFAULT_CERT_DIRDEFAULT_CERT_FILEDEFAULT_CERT_DIR_ENVDEFAULT_CERT_FILE_ENVDEFAULT_PRIVATE_DIRV_ERR_UNABLE_TO_GET_ISSUER_CERTV_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATUREV_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATUREV_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEYV_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELDV_ERR_ERROR_IN_CERT_NOT_AFTER_FIELDV_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELDV_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELDV_ERR_DEPTH_ZERO_SELF_SIGNED_CERTV_ERR_SELF_SIGNED_CERT_IN_CHAINV_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLYV_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATUREV_ERR_AKID_ISSUER_SERIAL_MISMATCHV_ERR_UNABLE_TO_GET_CRL_ISSUERV_ERR_UNHANDLED_CRITICAL_EXTENSIONV_ERR_UNHANDLED_CRITICAL_CRL_EXTENSIONV_ERR_PROXY_PATH_LENGTH_EXCEEDEDV_ERR_KEYUSAGE_NO_DIGITAL_SIGNATUREV_ERR_PROXY_CERTIFICATES_NOT_ALLOWEDV_ERR_INVALID_POLICY_EXTENSIONV_ERR_UNSUPPORTED_EXTENSION_FEATUREV_ERR_APPLICATION_VERIFICATIONV_ERR_UNSUPPORTED_CONSTRAINT_TYPEV_ERR_UNSUPPORTED_CONSTRAINT_SYNTAXV_ERR_CRL_PATH_VALIDATION_ERRORV_ERR_SUITE_B_INVALID_ALGORITHMV_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHMV_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256V_ERR_PROXY_SUBJECT_NAME_VIOLATIONATTR wasn't initialized!ossl_x509attr.csk_newargument must be ASN1::SetASN1::Set has non-array valueX509_ATTRIBUTE_dupoid=value=X509_ATTRIBUTE_set1_objectAttributeErrorAttributeOpenSSL/X509/ATTRIBUTEossl_x509attr_get_valueossl_x509attr_to_der#<%li: subject=%+li, issuer=%+li, serial=%+li, not_before=%+li, not_after=%+li>CERT wasn't initialized!ossl_x509cert.cX509_set_pubkeyX509_set_notAfterX509_set_notBeforeversion must be >= 0!CertificateErrorCertificateversion=signature_algorithmserial=subjectsubject=issuer=not_beforenot_before=not_afternot_after=extensions=add_extensionOpenSSL/X509ossl_x509_to_derCRL wasn't initialized!X509_CRL_add0_revokednum < 0???ossl_x509crl.ccount < 0???X509_CRL_set_nextUpdateX509_CRL_set_lastUpdateCRLErrorlast_updatelast_update=next_update=revoked=add_revokedOpenSSL/X509/CRLEXT wasn't initialized!ossl_x509ext.cASN1_OCTET_STRING_setX509_EXTENSION_dupcritical=critical,unknown OID `%li'@config%li = %liOBJ_txt2objX509_EXTENSION_set_object@crl@subject_request@subject_certificate@issuer_certificateCTX wasn't allocated!ExtensionErrorExtensionFactoryissuer_certificate=subject_certificate=subject_request=crl=create_extExtensioncritical?OpenSSL/X509/EXTENSIONossl_x509ext_to_derOpenSSL/X509/EXTENSION/FactoryName wasn't initialized.ossl_x509name.cname entries < 0!X509_NAME_print_ex#<%li %li>X509_NAME_dupOBJECT_TYPE_TEMPLATEX509_NAME_onelinelocX509_NAME_add_entry_by_txtDEFAULT_OBJECT_TYPE[]NameErroradd_entryto_utf8hash_oldcountryNamednQualifierDCdomainComponentemailAddressRFC2253ONELINEMULTILINEOpenSSL/X509/NAMEossl_x509name_to_derReq wasn't initialized!ossl_x509req.cX509_REQ_set_pubkeyX509_REQ_set_versionRequestErrorattributesattributes=add_attributeOpenSSL/X509/REQossl_x509req_to_derREV wasn't initialized!i2d_X509_REVOKEDossl_x509revoked.cX509_REVOKED_dupX509_REVOKED_set_serialNumberRevokedErrorRevokedOpenSSL/X509/REVX509_REVOKED_set_revocationDateossl_x509revoked_to_der@timeSTORE wasn't initialized!STORE_CTX wasn't initialized!STORE_CTX is out of scope!X509_STORE_CTX_initcerts in chain < 0???ossl_x509store.c@error@chainstctx_ex_verify_cb_idxstore_ex_verify_cb_idxX509_STORE_get_ex_new_indexStoreErrorStoreverify_callback=flags=purpose=trust=add_pathadd_fileset_default_pathsadd_certStoreContexterror=error_depthcurrent_certcurrent_crlOpenSSL/X509/STORE_CTXOpenSSL/X509/STOREStoreContext initialization failureexception in verify_callback is ignoredX509_STORE_CTX_get_ex_new_index;<F&��X�a��� ����^���@ߝ���@`���,A���sp����uݟ��t�S����ɠ����X������t� ����0����`����p������������ ���$@���8����T����������D�����0������������� ���,P���L���������`���(����D0���`0����г����������������8p���T��p@�������������`���  ����L  ���x ����� ��� @���� ����(!���T!`����!�����! ����!����"��0"@���\"�����"����"`����"����# ���8#����d#�����#���#����#0��,$���H$P��h$@���$����$`��,%p��l%0���%���&���0&���T&���& ���&����&��'0�8'��\'���'��'��'��(�� (�L(��|(��(�(0��(��(��)0���4)p���P)����l)`����)�����)���)����*����8*0���t*@����*���*p���+���4+P���`+����+P���+����+P��, ��L,����,����,���-���L-
���-����-p
���-�
��.@��@.���t. ���.����.@��,/���X/���/����/���0���@0P��|00���0��1���H1����1����1���2p��H20���2����2�#���2�#���2�$��3�$��,3�%��P3�&��|3�'���3(���3)���30,��D4�/���4�/���4�0���4�0��5P1��(5p1��D5�1��`52��|5p2���5�2���53���5`4��$6�4��P6`5��|606���6 7���60:��H7@:��\7P:��p7P<���7=���7�=���7�@��8B��48�B��`8�B��t8�B���8�D���8pE���8�E��9�F��<9�F��X9G��t9@G���9�G���9`H���9J��:�J��8:PL��`:`L��t:pL���:�M���:`O��;�P��4;�R��h;S���;�T���;pU���;�U��<�U��D<0V��`<pV��|<�V���<�V���<�W���<0X��=�X��8=[��X=[��l=p\���=�]��> ^��P>@^��l>�^���>�_���> `���>``��?a��4?�a��h?�a���?pc���?�i��,@�m���@r��@A�r��XA�r��lAps���A�t���APv���A w��B�w��LB�w��hBPx���B�x���B y���B�y��C z��(CPz��DC�{��`C}���C}���C�}���C�~���C`��DЁ��TD�����D�����D�����D�����Dp��� E����LE����`E`����E ����E0����E�F����<F����hFЌ��|F�����F@����F`���GP���XG ����G���G�����G����H ���(H����TH����H0����H�����H����I��$I����\I��xI����I�����I`����I����J��$J����@J ���\J`���xJ�����J�����J`����J��K���8K����pK�����K����K0����K�����KС��L ���(LТ��dL�����L����L�����L����8Mp����MP����M� N����pNP����Np����N�����NP���O ���LO`���hO����O���O ���O0��PP��<P`��PP����P ���P���TQP���Q����Q���Rp��HR���dR����R����R@���Rp���R����R��S0��8S���XS0���S`���S����S���SP��Tp��4T���dT0���T����T����T0���T@��U���<U���PUp��|Up���U����U0��V���V��<V����V����V����V ��V�@W���W ��W��X`�HX��dX��|X���X���X�YP�$Y@�`YP�tY��Y���Y���Y����HZ���dZp����Z����Z@����Z`���[���4[P���p[���[ ���[���$\0��P\���|\����\����\P��]���L]���x]����]`	���]
���]�
��^p��$^ ��H^���l^p
���^���^����^���_0��`_����_p���_ ���_`��`���T`0��x`0���`����`� ��@a�!��la�!���aP#���ap&��b'��Pb�'��|b�'���b�(���b@)���b�)��c�*��(cP+��Lc,��pcp,���c0-���c/���c�/��(d 2��Hd@2��\d`2��pdp2���d�2���dP3���dP4��e07��<e�7��le8���e8���e�8���e�=��f�>��4f`@���f�@���f`A���f�B��g D��8g0E��hg F���g G���g�G���gI��4hJ��lhpM���h�N���h�O��$i�O��LiQ���i�Q���ipR���i S��j@S��8j�S��pj�T���j�T���j@U���j�U��k V��Dk�V��pk�V���kW���k�W���k`X���k0Y��,l�Y��XlPZ���l@[���l`[���l�[���l`\��m�\��0mP]��Tm�]���m�c���mPd���m�d��n e��,n�e��dn@f���n�f���n�g���no�� o`q��Lo�r���o0t���o�u��p`w��Lp�y���p@z���p@{��qp{�� q0}��lq�}���q�~���q�~���q��r���8r`���\r����r�����rp����r ����rЃ��s����4sp����s@����sЌ��(t0���dt�����t`����t0���u����Tu ����u���u`���v����v���Pv����pv0����v�����vЦ���v�����vЧ��w��� w����Lw�����w ����wЪ���w���w���x ��� x����Tx����x`����x�����xP����x����y`���Dy@���xy�����y���y@���zб��,z`���Pz��z�����z�����z����{p���L{ ���x{и���{����{p���$| ���p|P����|��|���}@��$}���D}���d}���} ���}@���}����}@���}���~`��8~���T~���p~����~����~���~������, ��H����@��������������H� ��`����� ��������`��������� ���P������<����t�������܂������4�p��`������P������8� ��� � �0�4�@�H�@�������0����p	��8��	��L��
��x�`�������؆����p
����
��4���P�`��p�����������`���P��$����P�p��p��������������̈������ ��4��#���� $�����$���P'���(��H�@(��d��(�����(����*��Ȋ *��܊�+��(��,��T��-����0/����P/��ԋ�/����/���@0��D��0��p�P1�����1����@2��0��2��`�03�����3�����3��ԍ@4����4���5��8�`5��d��5����6����`6��Ȏ�6����6����7��`�8�����8����9��؏�9���0:��0��:��\��:��x� ;����p>�����>��Đ @����A��\�C�����C��ؑ�D��� F��<�@F��X�pF��t��F����H����H��� I��H��I��t��I����PJ��ȓ�J���@K��0��K��\�L��|�pL�����L��Ȕ M���`M���N��<�`N��\��N��x�O�����Q�����Q��ԕ�R����S��8�`T��\� U����X��̖ [���@[����[��T�@\��p��\����]����`]����]���^��<�P^��h��_����``��Ԙ�`����`���`a��8��a��T�pd�����d�����e�����g���Ph��@��h��\��h�����i����pl����l����l��(�0m��T�`m��l��m�����n��ԛo���`o���u����@v�����v����v���@z��0�Pz��D��{�����|�����}����~������L�0���h������������P����Ђ��X�P��������������̟P������������@� ���l�P��������������Ġ0����@����P��������4� ���������`���ܡ����,�����H����t�`�����Џ�������ܢP���������$� ���@�����`� �����p���������������̣������������4�@���h����������������`�������8�`���d������������P���̥�����К��� ���d�`������������@��������D� ���p�p������������ԧP����� � ���<�����h�����@������������0�@���h�������zRx�$����;FJw�?:*3$"DG���;\����p|���"����������MH 
A�Ȉ��<E�v���HO������QH ~
ALD���iF�B�A �A(�D0S
(D ABBFU
(A ABBELhd���iF�B�A �A(�D0S
(D ABBFU
(A ABBEL�����iF�B�A �A(�D0S
(D ABBFU
(A ABBE8�����F�L�D �D(�D@`
(A ABBD(D8���mE�D�G0P
AAAp|����bH��F�B�E �B(�A0�D8�DPl
8A0A(B BBBB�����RH D
A���)E�W
DD@�����F�B�B �A(�A0�DP�
0A(A BBBA zRx�P�����(d��> �0���qF�A�G �G�8������F�G�A �D(�D0x
(D ABBA�0���_H j
Ft���nE�Y
B$Ȓ���E��
ED�����D q
K`,���(t8����F�C�H �sAB(�����|E�A�D0e
AAA,���F�F�F ��
ABF�����jH \
A���jH \
A(4h���UE�D�F _
AAH(`����UE�D�F _
AAH(���UE�D�F _
AAH(����UE�D�F _
AAH(�8���UE�D�F _
AAH(l���UE�D�F _
AAH(<����UE�D�F _
AAH(hԘ��UE�D�F _
AAH(����UE�D�F _
AAH(�<���UE�D�F _
AAH(�p���UE�D�F _
AAH(����UE�D�F _
AAH(Dؙ��UE�D�F _
AAH(p���UE�D�F _
AAH(�@���UE�D�F _
AAH(�t���UE�D�F _
AAH(�����UE�D�F _
AAH( ܚ��UE�D�F _
AAH(L���UE�D�F _
AAH(xD���UE�D�F _
AAH(�x���UE�D�F _
AAH(�����UE�D�F _
AAH(���UE�D�F _
AAH$(	���?E�A�G lDA@P	,���BE�K�f
AII�E�[�A��E�[�A�(�	8���}E�A�D q
DAH,�	�����F�D�D �h
ABA�	�����H0u
C
����RDb
JI
A(,
���A�k
Dm
CF
JHX
�����B�B�E �E(�D0�D8�Dp�
8A0A(B BBBFH�
����vF�B�E �B(�A0�A8�D`(
8A0A(B BBBI<�
,���F�B�D �D(�F��
(A ABBGL0�����	B�B�B �B(�A0�D8�J��
8A0A(B BBBDL�l���bF�E�B �B(�A0�A8�D�
8A0A(B BBBF ������E�GP�
AC �h����E�GP�
AK8D���mF�B�A �D(�G@q
(A ABBETx��� ht���bE�D l
AA8������F�B�A �A(�GP�
(A ABBB0�t����F�A�D �D`�
 AABB ��qE�A
JD
EH 
L���&
F�N�B �I(�H0�C8�D@�8A0A(B BBB l
0��E�G |
AG(�
,��{E�H�G@Z
AAA�
����
|��	(�
x��kE�J
M������
D,����F�H�A �[
ABA@<��AAF\@��.E�c
AxT��AAK(�X��{E�H�D G
DAA����2H]
H����>Hf
K����7Hc
G��LE�c
H(0L���E�H�D X
DAA\���7Hc
Gx���7Hc
G4����E�D�J X
CAA~
FAA,�p���A�C
F���F���
J8�@���F�B�D �D(�FPW
(A ABBE8���DL����B�H�A �B
ABHn
DBDD
DBA4����E�K�D B
CAFD
FAA(�`��^E�G�D t
DAG(����vF�K�A �p
ABK($���vF�K�A �p
ABK(P<��vF�K�A �p
ABK(|���vE�G�D u
DAF(����vE�G�D u
DAF8�8���F�B�A �G(�D0e
(D ABBF8����F�B�A �G(�D0e
(D ABBF@L`���F�B�B �D(�D0�FpK
0A(A BBBE@����F�B�B �D(�D0�FpK
0A(A BBBE8�����F�B�D �D(�F@�
(A ABBH8<��yF�B�D �D(�F@}
(A ABBG0L����F�D�D �F0�
 AABD(�����E�D�G M
GAK(����jE�M�D l
DAI(����ZE�D�D m
AAA0����F�A�D �D0i
 DABAL8t�(F�B�E �E(�D0�A8�D�w
8A0A(B BBBD0�T��F�A�A �G0J
 DABA0����F�A�A �G0J
 DABA(��QE�A�G0u
CAF(@�QE�A�G0u
CAF8Ht��F�B�A �A(�G@w
(D ABBA@���F�B�B �A(�A0�G@�
0D(A BBBA8����F�B�A �A(�G@w
(D ABBA88��F�B�A �A(�G@w
(D ABBA@@���F�B�B �A(�A0�G@�
0D(A BBBA@�h��F�B�B �A(�A0�G@�
0D(A BBBA@���F�B�B �A(�A0�G@�
0D(A BBBA8���F�B�A �A(�G@y
(D ABBAHH4�F�B�B �B(�A0�A8�GP�
8A0A(B BBBA8���F�B�A �A(�G@w
(D ABBA8����F�B�A �A(�G@m
(D ABBA8 ��F�B�A �A(�G@m
(D ABBA(H���E�A�G0a
DAEt(��E��
X���	0����F�A�A �G0i
 DABA��� ���E�G �
AD(��E�A�G0�
AAK0@\��F�A�D �D0�
 AABEt(� E�Z(�,�E�H�D0�
AAHH����F�B�B �B(�D0�D8�Fp�
8A0A(B BBBD\��~F�B�E �E(�D0�A8�G�i�S�U�C�p
8A0A(B BBBDh���&E�`,�����F�A�A �j
ABK����AAF����WE�t
A� ���AAK$���2H]
H$H���AHs
A @|���eE�t
OR
Fd���2H]
H���AHl
HH� ���ZF�B�B �B(�A0�D8�D`�
8A0A(B BBBE(�4���vF�G�A �v
ABI(����vF�G�A �v
ABI,@����F�D�J �[
ABF8p|����F�H�A �D(�D0n
(D ABBB\�0��B�B�B �E(�D0�D8�I���V�P�C�M
8A0A(B BBBK��� ���04����F�D�D �G0�
 AABFh����H {
E(�8���E�M�D A
DAA�����L��(�p���E�A�G@�
AAF(��	���E�H�D nIH$H
��	8D
��0LP
���F�K�F �D@�
 AABH,�����F�A�A �i
ABD(�|��uE�K�D k
DAA �����E�G H
DHL
��AAKP
��AHl
H8�
��:He
HT�
��:He
H p�
���E�D u
AA8�����F�B�D �C(�GP�
(A ABBH(�����E�M�D u
DAA$�P���E�P �
AA$ ���
8 ���	8L ���fF�I�A �A(�D0/
(D ABBA8� ��sF�L�D �A(�IP�
(A ABBH0� X���F�D�D �F@�
 AABK0� ����F�D�D �F@�
 AABA8,! ��sF�B�E �A(�A0�Y(D BBB(h!d���E�D�F@�
AAH(�!����E�A�G0�
DAG�!l��AAK(�!p��]F�H�D �r
DKE"���2H]
H$"���2H]
H(@"���^E�G�D n
FAKl" ��AAF(�"$���E�A�G0U
AAA(�"����E�A�G0U
AAA�"��LHf
A�"@��{L�^#���	T0#���_F�B�B �D(�A0�D���U�I�A�N
0A(A BBBAL�#���F�B�E �A(�A0�DP�XU`IXAP`
0A(A BBBD8�#t���B�E�D �D(�D0n
(D ABBE$���AAK(0$����E�H�D�p
AAE(\$@ ���E�H�D0n
AAG �$� ��jE�G D
DD�$0!��4E�i
A,�$T!���F�A�A �i
ABD0�$�!���F�D�A �G0_
 DABH,%@"��<E�c
AH%d"��sE�[Ld%�#��F�B�B �E(�A0�A8�F��
8A0A(B BBBI$zRx��������,>]���\�%\)��F�B�B �E(�A0�A8�F�?�G�F�A�c
8A0A(B BBBG$zRx��������,#]���`�&�,��HF�B�B �E(�A0�A8�F�H�G�B�B�I�c
8A0A(B BBBH�,]���'�0���H�'P1��	 0'L1���E�G [
AH(T'�1��E�H�D0�
AAA0�'�2���F�D�D �F@�
 AABH �'X4���E�h
KR
F4�'5���E�K�D x
FAEI
CAA(l5��AAF,,(p5��oF�A�D �C
ABA(\(�5��yF�A�K �s
ABA�(6��OHe
E(�(86���E�H�D x
AAE�(�6��fE�w
E�(�6��.E�c
A)7���L�l($)x8��E�H�D0�
AAAP)l9��	 d)h9���E�K l
AA �):���E�K t
AK �)�:���E�K t
AKD�)L;��eF�B�B �K(�D0�I��
0A(A BBBF,*t=���F�A�A �n
ABG(H*>��E�H�D0�
AAAt*�>��	(�*�>���E�A�J@�
AAD,�*�?���F�A�A �u
ABH(�*H@��E�H�D0�
AAA+<A��	,$+8A���F�A�A �u
ABH0T+�A���F�D�C �G@�
 AABH�+TC��	,�+PC���F�A�A �u
ABH0�+�C���F�D�D �F@�
 AABD(,\E��E�H�D0�
AAA,,PF��	,@,LF���F�A�A �u
ABH0p,�F���F�D�D �F@�
 AABD(�,XH��E�H�D0�
AAAH�,LI���F�I�B �B(�A0�A8�DP�
8A0A(B BBBF,-�I���F�K�A �H
ABA0L-�J���F�D�C �G@�
 AABH0�-L���F�D�D �F@�
 AABD�-�M��AAK�-�M��bH O
A(�-�M��mE�K�D v
DAA(.4N��mE�K�D v
DAAD.xN��,H�^
AL`.�N��`F�I�B �B(�A0�A8�D�
8A0A(B BBBA�.�P��AAK�.�P��,H�^
A4�.�P���E�A�Q _
DAED
FAA /\Q��AAF</`Q��.E�c
A8X/tQ��xF�I�A �A(�D0T
(D ABBA�/�Q���H b
F�/lR��AAK�/pR��WHl
F�/�R���H X
H08S���H Y
G 0�S��:He
H<0�S��.E�c
AX0�S��AAK<t0�S���F�I�B �A(�A0�s
(D BBBA(�0hT��~E�K�D p
CAF�0�T��.E�c
A4�0�T��lE�H�D }
DAEI
DAA41U��2H]
HP1,U��:He
Hl1PU��.E�c
A(�1dU��kE�K�D p
CAF�1�U��.E�c
A�1�U��JHc
G8�1�U���F�B�G �D(�D0T
(D ABBD(2dV���H \
AD2W��lH^
J\`2\W���F�B�E �B(�K0�D8�D�x�G�\�A�
8A0A(B BBBE8�2�Z���F�E�D �A(�FP�
(A ABBHH�2P\���F�E�B �B(�A0�D8�FP
8A0A(B BBBHHH3�]���F�E�B �B(�A0�D8�FP
8A0A(B BBBHL�3x_���F�B�B �B(�D0�D8�F��
8A0A(B BBBJL�3�a���F�B�B �B(�D0�D8�F��
8A0A(B BBBJ,44d���M�H�A ��FI(d4�l��E�H�D0�
AAA�4�m��	8�4�m���F�B�D �C(�Gp
(A ABBE,�4,p���F�A�A ��
ABE5�p��<E�c
A`,5�p���F�E�E �B(�A0�A8�G�S�E�E�B�b�{
8A0A(B BBBG�5u��.L��5 v��	�5v��	(�5v��E�H�D0�
AAA6w��	L6w��PF�B�B �B(�K0�F8�G�
8A0A(B BBBJLd6z��eF�B�B �B(�A0�A8�G� I� �
8A0A(B BBBC`�6({��uF�I�B �B(�A0�A8�D@�
8D0A(B BBBGc
8A0A(B BBBE`7D|���F�I�B �B(�A0�A8�D@�
8D0A(B BBBGQ
8A0A(B BBBE(|7�}���E�l
GM
K^
R0�7�~���F�D�C �G@
 AABH,�7�����F�A�A �s
ABB8 ���AAK(8$���+HY
ED88���/H]
E`8L���BH]
E|8����.H\
E�8����AAF(�8����bE�A�J o
DAA�8܁��.E�c
A�8�jHq
GH
E89@����F�B�D �D(�J0K
(D ABBAX9����.E�c
A(t9�����E�H�D x
AAE�9���AAK �9���?A�j
EE
E�9,���HI,�94���}F�D�D �M
ABB (:����?A�j
EE
E,L:����}F�D�D �M
ABB|:�HI(�:����^F�K�A �k
ABA�:,���(�:(���^F�K�A �k
ABA;\���(;X����E�A�Q O
DAA8@;���F�N�A �h
ABHc
ABA(|;����_E�K�D h
DAA�;��WE�e
F�;(���AHm
G�;\���{E�@
AH<�����F�B�B �B(�A0�K8�D`s
8A0A(B BBBAL<0���.E�c
A0h<D����F�H�A �D@�
 AABA�<�AH\
EH�<$����F�B�B �B(�D0�D8�FP�
8A0A(B BBBED=Ȋ��dF�B�B �A(�D0�F��
0A(A BBBGLL=��F�B�B �B(�A0�C8�G��
8A0A(B BBBI@�=@���yF�B�B �A(�D0�Fpt
0A(A BBBG(�=|����F�V�A ��FI>���MH 
A(>D���HN@>L���	XT>H����E�A�D p
DAII
DAJD
DAGD
DAGt
DAA�>̗��9L�T
A�>�ME�t
A8�>$����F�B�G �C(�D@F
(A ABBF$?ؘ�� 8?Ԙ��dE�Q v
AA0\? ����F�A�D �F@�
 AABC(�?ܚ��*E�A�G@s
AAFL�?���F�B�A �A(�G@�
(C ABBIY
(F ABBD@p���6HU
A(@����dE�n
A8D@���F�B�A �A(�GP�
(A ABBF�@<���>E�`
A,�@`���E�H�D AA(�@P����E�A�DPe
AAA8�@ԡ��:F�E�A �C(�D@�
(D ABBA@4Aآ���F�E�B �D(�A0�DP�
0D(A BBBA0xA$���>F�A�A �D@�
 AABF8�A0����F�E�D �A(�D`�
(A ABBA(�A����TE�A�D0�
AAE(Bا���E�A�D W
AAE(@B\����E�A�D W
AAElB��!E�[@�B��B�E�E �A(�A0�Dp�
0A(A BBBJ@�B@����B�M�A �B
ABKN
ABGFAB(C�����E�D�D U
AAD<C ���AAK XC$����E�D h
AA |C�����E�D h
AF �C,����E�D h
AF �C�����E�D j
AD �CD����E�D j
AD D���E�D j
AD(0D\����E�D�D y
DAA \D���E�D n
AA �DL����E�D i
AE8�Dد���F�E�D �A(�IP�
(A ABBD@�D\����F�B�E �D(�A0�F@�
0A(A BBBE($Eȳ���E�A�D N
DACPE\���qE�Y(lE�����E�A�DPe
AAA8�ED���:F�E�A �C(�D@�
(D ABBA@�EH����F�E�B �D(�A0�DP�
0D(A BBBA F����5E�D �
AI8<F�����F�E�D �A(�D0~
(D ABBA8xFt����F�B�A �A(�D@�
(A ABBGL�Fؽ��F�B�B �D(�A0�I@�HNPOHA@h
0A(A BBBF(G�����E�A�D Y
AAE$0G,���/E�VC LCA8XG4���rB�E�A �A(�D��
(A ABBJ8�Gx���F�E�D �A(�IP�
(A ABBE@�G\���B�M�A �B
ABKN
ABGFAB(H����E�D�D g
AAJ@HL��AAK \HP���E�D h
AA �H����E�D h
AF �HX���E�D h
AF �H����E�D j
AD �Hp���E�D j
AD I����E�D j
AD(4I���oE�G�D m
AAA(`I����E�D�D0f
AAK0�I`���F�D�A �DP
 AABF(�I����E�A�D N
DAC�I���_E�GJ��� J���4J���	HJ���	4\J����E�K�D V
FAGD
CAA,�Jx���F�A�K ��
ABA8�JH���F�L�A �F(�GP�
(A ABBE,K����B�K�A �@
ABO0K|��DKx�� XKt���E�D ]
DFL|K���F�H�L �B(�A0�A8�G��
8A0A(B BBBA(�K����E�A�D _
AAET�KT���B�B�B �E(�D0�D8�D@�HNPQHA@L
8A0A(B BBBIPL���8dL����F�B�D �D(�F@c
(A ABBA,�L|��FE�D �
CBB
FA(�L���gE�A�D@�
AAB,�L���F�A�K ��
ABC(,M����E�D�D `
DAF4XM����E�A�D0[
AAIN
AAA(�ML���E�D�D Z
DAA8�M���F�E�D �A(�D0}
(D ABBA4�M���A�A�D0V
DAGC
DAA@0N��_F�E�B �D(�A0�IP-
0A(A BBBH,tN��sE�G
M�����
H@�N��B�M�A �B
ABKN
ABGFAB$�NT�bA�i
FF
JF
AHO��F�B�B �B(�K0�D8�D@�
8D0A(B BBBC(\Op��E�H�G D
DAA(�O���E�H�G N
DAA(�Ox��E�H�G N
DAA�O��AAK4�O��E�K�D H
FAED
CAA(4Px��E�H�D z
AAE`P��2H]
H4|P�aE�H�D i
DDND
FAA(�PH�BE�K�D c
DAA$�Pl��HS
EK
EK
E(Q��VE�A�N h
DAG4Q�2H]
HPQ,�9Hd
H lQP��E�K b
AA �Q���E�K b
AA8�Qh��F�B�K �D(�D@\
(D ABBA(�Q���E�K�G s
DAA(Rp�E�K�D K
AAA8HR���F�D�K �h
CBFg
ABA�Rx�AAK�R|�dE�t
N�R���E�~
A�RD�dE�t
N �R��tE�|
OF
A(S���E�G�D p
DAK,DSX�E�C
F���E�D��
H(tS8���WA�M�D g
DAA(�Sl���sI�K�F �}
ABA �S����DE�h
KF
A4�S���E�A�D J
GALD
FAA (TT���tE�|
OF
A(LT�����E�D�D |
DAA(xT$����E�A�D P
DAA<�T����jF�I�A �A(�D0N(A ABB(�T��EE�A�Dp
AAA@U���F�E�B �D(�A0�DP�
0D(A BBBA8TUX��:F�E�A �C(�D@�
(D ABBA@�U\���F�E�B �D(�A0�DP�
0D(A BBBA8�U����F�B�A �A(�DP�
(A ABBBLV��F�B�B �D(�A0�IP�XN`OXAPh
0A(A BBBC(`V����E�A�D Y
AAE8�Vp	���F�E�D �A(�D0~
(D ABBA�V4
��"E�\H�VH
���B�E�B �B(�A0�D8�D��
8A0A(B BBBD@0W����B�M�A �B
ABKN
ABGFAB(tW���E�D�D U
AAD�W���AAK�W���RE�o
A �W����E�D j
AD �Wp
���E�D j
AD  X�
���E�D j
AD DX����E�D h
AF hX���E�D h
AF �X����E�D j
AD �X,���E�D j
AD �X����E�D j
ADL�XD���F�B�E �B(�A0�D8�I�
8A0A(B BBBH$zRx��������,-+���(�Y����E�D�D@|
AAE8�YL���F�B�D �D(�G@�
(A ABBG8�Y���\F�E�A �A(�IP'
(A ABBE8(Z���\F�E�A �A(�IP'
(A ABBE8dZ����F�E�D �A(�I`Q
(A ABBH8�Z|���F�E�D �A(�I`Q
(A ABBH8�Z"���F�E�D �A(�IP�
(A ABBFL[d%��WF�B�E �B(�D0�A8�F��
8A0A(B BBBD5�)��m(|[`*���E�A�D N
DAC�[�*��~E�h�[X.��HO4�[`.���E�D�G0{
DAH[
DAA\�.��qH x
H`
A(4\/���E�D�D ~
DAH`\�/��GH k
A|\�/��AH e
A�\�/���L���\�0��	�\�0��2E�e(�\�0���A�I�D0�
DAA8]l1���F�E�A �A(�DP�
(A ABBE(L] 2��cE�G�G t
CAE(x]d2���A�D�D d
FAD�]�2��	�]�2��HO�]�2��0�]�2���F�D�D �G0�
 AABE(^d4��ME�A�N f
DAA(D^�4��ME�A�N f
DAAp^�4��2Hi �^�4���E�D n
AH$�^`5��<A�H�D iDA0�^x5���F�C�A �G0�
 AABG0_6���B�K�D �GPf
 AABF8<_�6��IF�E�E �D(�K0�^(A BBB8x_�6��IF�E�E �D(�K0�^(A BBB�_�6��VH M �_07���E�I T
AE �_�7���E�I T
AE,`8���F�J�D �^
ABK$D`h8���E�A�D0�AA@l`�8��(F�B�B �D(�D0�D@�
0A(A BBBE(�`�9���E�D�D@�
AAJ0�`�:���F�D�C �D`�
 AABI(a;���E�E�G@�
AAB@<a�;���F�E�E �A(�C0�G@�
0A(A BBBB0�a=��1F�A�D �G0�
 AABF0�a>��YF�A�D �G0�
 AABHH�aD?���F�B�L �B(�A0�F8�G`3
8A0A(B BBBG4b�A��(HXHLb�A���F�I�A �A(�D0d
(D ABBFD(A ABB,�bB��F�H�A ��
ABF�b�G��LHu
CG�bH��LHu
CGcDH��DHl
DG(ctH��AAMDcxH��AAM`c|H��AAK|c�H��qH0^
A�c�H��qH0^
A�cHI��sH `
A(�c�I���E�A�G0a
AAA�c J��2H]
HdDJ��2H]
H(4dhJ���E�D�D |
DAA`d�J��7Hc
G|dK��2H]
H4�d$K���E�A�D v
DAKk
DAA�d|K��GHe
KI
A�d�K��2H]
HLe�K���F�B�A �A(�D0k
(D ABBFD
(G DBBA4\e0L��dE�A�D x
DAII
DAA�ehL��GHe
KI
A �e�L��QE�s
HK
A0�e�L���F�D�A �G0�
 AABEf�M��Cd[H$f�M���B�B�B �E(�A0�D8�Dp@
8A0A(B BBBBpf\P��T�fXP���B�B�E �B(�D0�D8�DP
XI`]K
8D0A(B BBBA8�f�R���F�E�A �D(�FP
(A ABBFzRx�P����$a��vLg�S��&E�\8hg�S���F�E�A �D(�FP
(A ABBF�k��v�g$U��&E�\(�g8U���E�C�G0r
AAE4h�U���F�A�A �i
ABDiAB(8h$V��kE�A�N |
AAA8dhhV���F�B�A �D(�D@�
(A ABBF(�h,X��xE�J�D J
DAA(�h�X��uE�A�D N
DAC(�h�X��VE�A�Q k
DAA($iY��kE�A�N |
AAAxPiLY��gB�B�B �B(�A0�A8�DP_
8A0A(B BBBI�
8C0A(B BBBHa
8A0A(B BBBE,�i@Z���F�A�D �U
FBAH�i�Z��:F�B�E �E(�A0�A8�Fp�
8A0A(B BBBD zRx�p������(���L�j\\���B�E�B �E(�D0�A8�F��
8A0A(B BBBI�DD����j�b���j�b��8k�b���
F�B�A �A(�D@B
(A ABBJ8Hk�m���F�H�D �A(�GPy
(A ABBG@�k8p��'F�F�A �D0z
 IABIO
 DABA0�k$q��1F�M�A ��
AIA�k0���	(l,���E�A�D0�
AAB(<l ����E�A�G d
DAJ0hl����GF�A�A �D0_
 DABF�lЅ��(�l܅���E�A�D 
AAE�lP���AAK�lT���iH V
Am����QHq
GG
E(4m��ZF�A�D �k
DBL`m����H �
G,|mЇ���F�A�D �F
DBI8�mp����F�B�D �A(�D@�
(A ABBA(�m$����E�A�D 
AAEn����vL�W(4n����_E�G�D@G
AAA`n,����	L��	|n���	(�n����E�H�D0�
AAB8�n��F�I�A �A(�DP%
(A ABBHH�n�����F�B�B �H(�A0�A8�DP�
8A0A(B BBBE4Do�����E�H�D E
DAEK
ADE,|o`����F�A�A �n
ABG0�o�eF�K�F �GP�
 AABC(�o,����E�A�D0U
AAAp����<E�c
A((pԝ��jE�M�D l
DAITp���6HU
App<���E���p@���	H�p<����F�B�B �E(�A0�I8�M@�
8D0A(B BBBA(�p����E�H�D0�
AAA,q�����F�A�A �s
ABB0Hq����F�D�D �F@�
 AABH|qp���AAF�qt���.E�c
A�q����AAK4�q�����E�K�D h
CAHn
AAA(r�dE�K�D m
DAAL4r8����F�I�A �A(�D0[
(D ABBGD
(A ABBE4�r����fE�A�J t
DAGI
FAA4�r����~E�K�D x
FAEI
CAA,�r���oF�A�D �C
ABA($sH���yF�A�K �s
ABAPs����OHe
E(ls��mF�A�K �u
ABA�s���OHe
E(�sH���mF�A�K �u
ABA�s����OHe
E(�s����_E�K�D h
DAA(t�OHe
E(Dt(���_E�K�D h
DAApt\���OHe
E(�t����NE�K�D o
DAA�t����2H]
HL�tا���F�B�B �B(�A0�A8�G@@HHP[8A0A(B BBB($u����E�H�D @
AAE(Pu|����F�D�A �z
ABH|u�QHq
GG
E(�u0����E�H�D x
AAE(�u�����E�H�D x
AAE(�u����jE�M�D l
DAI v<���6HU
A<v`���>E�`
AXv����EE�(tv����	H�v�����F�B�B �E(�A0�I8�M@�
8D0A(B BBBAH�v����F�B�B �E(�A0�I8�M@
8D0A(B BBBAL w|���&F�I�A �A(�D0k
(D ABBGQ
(A ABBI(pw\����E�H�D0n
AAA,�w��F�A�A �v
ABG0�w�����F�D�D �F@�
 AABHxܳ��AAFx��.E�c
A(8x�dE�K�D m
DAALdx8���F�I�A �A(�D0[
(D ABBGQ
(A ABBI(�x����E�H�D x
AAE(�xl����E�H�D x
AAE(y��E�H�D x
AAE8y4���AAK4Ty8���~E�K�D x
FAEI
CAA8�y����{F�L�D �A(�G0v
(D ABBA(�y��nF�A�K �s
ABA(�y���mF�A�K �u
ABA zL���GHe
KI
A(@z|���mF�A�K �u
ABAlz����GHe
KI
A(�z�_E�K�D h
DAA�z$���2H]
H(�zH����F�D�A �z
ABH{����QHq
GG
E {����6HU
A(<{ ���jE�M�D l
DAIh{d����E���{����	(�{�E�H�D0�
AAA4�{���E�H�D E
DAEK
ADE �{P����E�D r
AD, |�����F�A�A �n
ABG<P|�����F�B�K �D(�I�
(A ABBH8�|<���F�B�D �D(�FP�
(A ABBC�|��4�|���E�H�D y
DAIW
DAE}���JHc
G(4}����E�A�D0U
AAA`}L��AAK(|}P��MF�D�A �y
ABA(�}t��MF�D�A �y
ABA(�}���MF�D�A �y
ABA(~���MF�D�A �y
ABA<,~���xF�E�D �C(�D�
(A ABBB(l~ ���E�J�D V
DAA�~���<E�c
A�~���KE�m
A(�~���jE�M�D l
DAI�~ ��6HU
A(D���F�O�H ��HID���	(X���E�H�D0�
AAAL�����F�I�B �B(�A0�A8�G�F
8A0A(B BBBA,�����B�K�A �C
ABE���&E�`$ ���BE�A�G \JJ,H�D���F�A�A �n
ABG8x�����F�B�K �D(�I`k
(A ABBG��x��<E�c
AЀ���AAK(����_A�K�D e
GAE����.He00����ME�D�J X
CAAZAA0d����E�D `
GH|
FFV
DH�����QHq
GG
E����QHq
GG
E\؁D���F�B�E �B(�D0�A8�F���K�K�A�c
8A0A(B BBBK�\g��q0L�p��:F�A�F �JP�
 AABH(��|��jE�M�D l
DAI�����6HU
A(Ȃ���KE�H�D 'FH���	H����F�B�B �E(�A0�I8�M@�
8D0A(B BBBA(T�H���E�H�D0n
AAA(�����E�H�D0�
AAA,������F�A�A �v
ABG0܃`��F�D�D �F@�
 AABH���AAF(,���_E�K�D h
DAALX���F�I�A �A(�D0[
(D ABBGQ
(A ABBI4�����E�K�D x
FAEI
CAA8�,�{F�L�D �A(�G0v
(D ABBA(�p�yF�A�K �s
ABAH���OHe
E(d���_E�K�D h
DAA��,�OHe
E(��`��F�D�A �z
ABH(؅���E�H�D x
AAE(�H��E�H�D x
AAE0���.E�c
AL���dHq
GG
El��6HU
A��4�+E���H���D�	(̆@�!E�H�D0�
AABH��D��F�B�B �E(�A0�I8�M@�
8D0A(B BBBA,D����F�A�A �n
ABG(t�(�rE�K�D m
DAAL��|�F�I�A �A(�D0[
(D ABBGQ
(A ABBI�L�AAK(�P�mF�A�K �u
ABA8���GHe
KI
A(X���mF�A�K �u
ABA���2H]
H��,�<E�c
A(��P�jE�M�D l
DAI���VHb
A���dE�L $�(��E�G0Q
ABH���OE�Ed���HO|���	����HO����E�V0ĉ���F�D�D �D0e
 DABA0��T�F�D�D �D0e
 DABA,���CL�^
AH��AAKd��2H]
H(��,�bF�G�D �t
ABHL��p�F�B�B �E(�D0�A8�G��
8A0A(B BBBD(����VE�A�N h
DAG((���RF�A�D �q
ABAT�(�GHe
KI
At�X�2H]
H��|�2H]
H����:He
H\ȋ��AF�I�A �A(�D0l
(D ABBFQ
(A ABBID
(G DBBE@(�����4F�B�B �D(�D0�F`(
0A(A BBBH4l������E�K�D B
FACI
CAA�����AAF�����.E�c
A(܌ ���cE�A�J p
DAA(�d���cE�A�J p
DAA4�����MHg
AP����AAK(l���RF�A�D �q
ABA(�����SE�D�N q
DAAčH����E��
A����.E�c
A(����VF�G�A �q
ABF(,����VF�G�A �q
ABF(X�D���VF�G�A �q
ABF(��x���VF�G�A �q
ABF@������@F�B�B �A(�A0�Dp�
0A(A BBBD4�����^F�A�C �\
DBLbAB,����6HU
A,H��GF�I�O ��
FPEGNU�0����%g��`��7_��V���`x� o��Іy� ���З���������@�����j�0���@���p�n�����F���FS�������������������x��o
�130>
�R�@o��eD�x�`��`����@����������:�B�M�Z�*�_�q�z�������������������������#�3�A�M�[�k�|��I�I�I�I�IIJ:
�p�%x�%���o`�p�
_J�%@Y����8	���o�����o�o0����oj��%@:P:`:p:�:�:�:�:�:�:�:�:;; ;0;@;P;`;p;�;�;�;�;�;�;�;�;<< <0<@<P<`<p<�<�<�<�<�<�<�<�<== =0=@=P=`=p=�=�=�=�=�=�=�=�=>> >0>@>P>`>p>�>�>�>�>�>�>�>�>?? ?0?@?P?`?p?�?�?�?�?�?�?�?�?@@ @0@@@P@`@p@�@�@�@�@�@�@�@�@AA A0A@APA`ApA�A�A�A�A�A�A�A�ABB B0B@BPB`BpB�B�B�B�B�B�B�B�BCC C0C@CPC`CpC�C�C�C�C�C�C�C�CDD D0D@DPD`DpD�D�D�D�D�D�D�D�DEE E0E@EPE`EpE�E�E�E�E�E�E�E�EFF F0F@FPF`FpF�F�F�F�F�F�F�F�FGG G0G@GPG`GpG�G�G�G�G�G�G�G�GHH H0H@HPH`HpH�H�H�H�H�H�H�H�HII I0I@IPI`IpI�I�I�I�I�I�I�I�IJJ J0J@JPJ`JpJ�J�J�J�J�J�J�J�JKK K0K@KPK`KpK�K�K�K�K�K�K�K�KLL L0L@LPL`LpL�L�L�L�L�L�L�L�LMM M0M@MPM`MpM�M�M�M�M�M�M�M�MNN N0N@NPN`NpN�N�N�N�N�N�N�N�NOO O0O@OPO`OpO�O�O�O�O�O�O�O�OPP P0P@PPP`PpP�P�P�P�P�P�P�P�PQQ Q0Q@QPQ`QpQ�Q�Q�Q�Q�Q�Q�Q�QRR R0R@RPR`RpR�R�R�R�R�R�R�R�RSS S0S@SPS`SpS�S�S�S�S�S�S�S�STT T0T@TPT`TpT�T�T�T�T�T�T�T�TUU U0U@UPU`UpU�U�U�U�U�U�U�U�UVV V0V@VPV`VpV�V�V�V�V�V�V�V�VWW W0W@WPW`WpW�W�W�W�W�W�W�W�WXX X0X@XPX`XpX�X�X�X�X�X�X�X�XYY Y0Y@YPY`YpY�Y�Y�Y�Y�Y�Y�Y�YZZ Z0Z@ZPZ`ZpZ�Z�Z�Z�Z�Z�Z�Z�Z[[ [0[@[P[`[p[�[�[�[�[�[�[�[�[\\ \0\@\P\`\p\�\�\�\�\�\�\�\�\]] ]0]@]P]`]p]�]�]�]�]�]�]�]�]^^ ^0^@^P^`^p^�^�^�^�^�^�^�^�^__ _0_@_P_`_p_�_�_�_�_�_�_�_�_`` `0`@`P```p`�`�`�`�`�`�`�`�`aa a0a@aPa`apa�a�a�a�a�a�a�a�abb b0b@bPb`bpb�b�b�b�b�b�b�b�bcc c0c@cPc`cpc�c�c�c�c�c�c�c�cdd d0d@dPd`dpd�d�d�d�d�d�d�d�dee e0e@ePe`epe�e�e�e�e�e�e�e�eff f0f@fPf`fpf�f�f�f�f�f�f�f�fgg g0g@gPg`gpg�g�g�g�g�g�g�g�ghh h0h@hPh`hph�h�h�h�h�h�h�h�hii i0i@iPi`ipi�i�i�i�i�i�i�i�ijj j0j@jPj`jpj�j�j�j�j�j�j�j�jkk k0k@kPk`kpk�k�k�k�k�k�k�k�kll l0l@lPl`lpl�l�l�l�l�l�l�l�lmm m0m@mPm`mpm�m�m�m�m�m�m�m�mnn n0n@nPn`npn�n�n�n�n�n�n�n�noo o0o@oPo`opo�o�o�o�o�o�o�o�opp p0p@pPp`ppp�p�p�p�p�p�p�p�pqq q0q@qPq`qpq�q�q�q�q�q�q�q�qrr r0r@rPr`rpr�r�r�r�r�r�r�r�rss s0s@sPs`sps�s�s�s�s�s�s�s�stt t0t@tPt`tpt�t�t�t�t�t�t�t�tuu u0u@uPu`upu�u�u�u�uGA$3a1:��GA$3p1094@��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094P���GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY@�X�GA+GLIBCXX_ASSERTIONS
GA*FORTIFYP��GA+GLIBCXX_ASSERTIONSopenssl.so-2.7.8-141.el8.x86_64.debug�og�7zXZ�ִF!t/���g${]?�E�h=��ڊ�2N����<�����5��SS�w���3̠t��1?��IH�ȍ>yY�#�N6:e�)ʯ�k���P��kX�:�R�W��k��꧅��>���\�s��{h���	�k;,����1�th�ǜ`J\ �u^d���%a��-��/���,�8��pŌ;���1��s�����l�6���yV,��ɼ_�m��tR����r�	��_�&�=�k4��`wk�2=�SM>�/Eьp��
�jz'�p�|�9���������&���&9��q�p��%����w��$h��q$�PmH����n�8�H5YJ	�^��
�(��Df�k�V�"�N<I��Dgv��b�G��M��!2�~��*^4����Ļe��f]V]†�����MքaG�I���ɼ�I�_o��ު�RrPV��0P�<�she�)�Hy^S�ä���o����������*��|e'3N���b�Ė���F<,.;|�?J'�"^VEs8��$��A�^�)PB��bT��%s\+
&~l��](X6�Hj;��9�X���f|ٕ,��Klc���T�+zo֯Jܱ���ovj���~M�/�V%�+Ai>����85�Ly�q�|3vظ�N����\�d�8�
!)d�j%
P����w���W�}�(Y��@|s�)
G�����W����OU̅S ��fx|A��7t�W�o��<�A�ѓ\������J�a��y�Zv��O�N��������Y	�֓�M��d!?�}+�;Q.�TJ�,�ne��B4���E�ט�/�b�����%��S�=c9�	�X�����T������
վ�Yy�q�:�x����kG�v��eq�>P	�z�nƜ�)���pk.�^�kY㳥2К����T-_��Z�q�� q��ͳʿ�����~��v9F����v̶�h���:�Γ�����Bot!��Bj�D���^��~�N��Ѝ^2[�i馢��çC�����*�$4���n�hy�|�YD��*f�,��_'w�
	=!/��c����AO�8�"y3�]������z4�Y�r0��	(�ڢ㛡��;tA���}jjev}<P�8�3���m�m�q�����W(f�k�^E<�En����{��E�jZ��O���޽,���3/��(**y��<ߤ��[�)L�ov�h�j"xC��)X��U�<A�ݸ�tS�xV�s�����q�v9��2�a<+~�R%a��	.�z�]��yE�z��^{��'O1�"e�y[`��D���I̕�z�4i���޹��&�*��e)��|���H�1�N���?��16L�|J�ʗ�"1�S�´�"~���!�M�ݝ�303�s�V���J�
�Nz	�Z���5�G���tC&l��4ٸ훈>0Q Uhi�w����3}�������'zZg-��'���^�TUt6@���d��ա��L��T��9�Z�	>0	Va/���QgD?j�C�u���!�"���MJ\��FRh��9��YBF���m��t������6h��)�>��'\�iȵQ/O\�0�`;*7�(]��ve��Ak�-��t:�u*�.�� �̃�\��6Q�����M����BO9�p�g��f��[�q4=��E�M�Dg#{l���d����Xk��.���ɠ)��B���P?D*+��5���m\��cr�Z����:pŸ|ANq��2�i�uN�x����hu65���u����y���o�7t���0�5�b��]2qBb�j�>�5c�(w��G+d��!�{!�"��2H��1���\(�VlX8�[�g�l��}�!��E%6�>�b���u�d�&s�4�RQ3C�Xf��Gq������$������J��P��.�i��֤��w'���)s�&�ב+Lq�>śװC+ޯ:��V���;WZ�!@4LT�XG��s:��|�4�:~W�����8A�j�M��_��y2�;HK���Eˉ3@uF'l�/(��T�z>|�-�/-+���s(
�a�j����#�㋆�����&YwC�$M̥�_/�@���]4���0i�v��k���}@���a�Y�p+E�íf�XK��O�;@7� gm<���$E�XQ�DAj�>uKG��Vr�do�>�a�$^�X�|b��
��+˘�j䗺��{�o&���{差��dѧu�w4����
��{%�Fۢ[�1�x�1�K�b4M1¥|���'�󍅐��|h89`f"9w@y}��dJ+8>b-g5��t�"��"��{���S�����Z������lݭ'(fB��'pp��C�։��B��E�����{m���2�B��Ӓ	����Rp�]��T��x��x(��C��S�r�Z����E��ۡ�>t H������g�
Eɔߙo�7e'��]�g�:�8�PD����z5��s��W.d�j��ޝ��^��Jv�Għ ��@7*����t��>'-E;��k�YG>e��@u�
�M��!%:�@���E[K'9
��?�6�И��q��S�R7������g������Z�Au��j���9c��OӪ��>��Oa�ʋ��4���Z��H�XVa��0����;����Q<��1�ּ�7��p(��vC��/��	�d��U��>�e�Ge8�X��j��:;pQf&���"U�mR���YG�_Pً1bs&�"���9�����k��46ơ�x��&�EOmd�_��ܛ��*�˒-�%0�T��*�i8%O�w�t�Ip6nu�#7e$�f�һ�1L��^�LTi�\��o�3
ѱl���'�W
&������� ="������������#}��W�φ2��G��	��<�4>�vÆrD�ŧn"5�vw
Hl�RLs�Bj����j8އ�fJ�Fl��2ؗ��}'�u���=����,�?+��:�����ΆTW���4������!&5�MX�KV
z��;m$Y �i�t�ϷH�s��J�{%��:G���e�O���3���(R�$�(��u����ҟ���G�p�w�&��攅�áC&��e>=U�.�&�8BS�j�G�L$ę�:�.Q.�nh�Z� �Fs���!21؃����]��~&=[�	f�7yBB#Cߤ�TԲ��P)��'ꛞa!�A뷒z��z�ݣ����€���1�mȳ���B��LDA�4��_���o�!;ɜdKˍ1	2Fb�B_}�h٠�nT��r/�돣;!|��`cN�͏�7�D�e��"L8m�y��!j/H��u�Kn�)���L�2���6azOO�$33�	��a�lF��ώ��~N������e�\�[o�g��R6@U��H��즓c��+�)�u&-�h�]h�d<l51w�<���o��9�t��7�k��{%��L�#j��2w�TM�qԕ��mt@b.�_eKc\MN7����ר<a����	��������'��VCJ�v��(�KRڨyt��H߄�s�I�,=Oѱ�� 
�7Y$��� ��R���ĊX��8�-\©�AҐr�Dlvy�E��Z�(��	�O����A�
���b�Qs���,O�Ni��V�<�8�U�������X}qIB�ɩ�e�K7�^�����3IxO��q�ՙr)l�w�ё7x���^����`� �)Nj��~�\�+���k,�a*3��5hS�3�ϙ�yj��ہ��l�=���c[���d��ء�u��{e���4R7&�2-XF�
'(�@�QÍ6���St��Q��$�O侭��}�J�a���t�A����]������D�"=.;��Âu�GC:�q9�Ôc��d���2�N�#�
��T�Si"��]=ƥ���5Z7��O	"�v^IEͧ"�#�[L�OV��.��u�3M�a�Ý�,�Q��i��&��n�@Tr�eGo�o������4Y�	���G��^�-��:�/���d��o�3rT�,a�����cq�#�s
��iH�x���j7n����D�(�jd0�vsB*$�`O�n���a�U8αF:�U��啕�u�*H��ձ�pb��}�]Hd�Iv�BX���Z|XJ�g4�	�_H�`66�T����G�k���m���)Jv�24��­�	��yl�������ԃEAoYID�evy���g�O�?Ť��d�?h�N�<��%�V_J~b� ����3h���Fz�O2KF��V!�s�� �:&i�fO������P����xr�ˤT#B��^e��&I��$�c�5������U�F���_6�Sa7 �5�4�e;����?���R�L!�i�-r:p����f�
����_ï��o.��}�x�	�u�<u�H�p��cE0q�̗�?��R��df9�ʫn�SE�Q�?�����w*\�}��7�ˁ2o���
������q�y��l�"�;�1��b/�Z���T��𞍧��CPf/�X�BV�1�qblO��u0�&\�L�P%�or:�Z$��DQ-�e�R>6^�yρ�߱c��]������5���dE�~�s���"
�V������ھ,��=����f�
s�6�\�w�L5�L�
�����xUp�)P ���~�O!��&褫�``2���-={�a�%r�]"1e1U�٪:��3/:���Ud�xU|�Z��a�Q�`T�KK�@X�G�"����)>R�_W{�SѬ�A`�ݵ�����Ah���
(p��
�a.]k[��*��
��NƫPF��3$MG��N�?�?�5Be.��I�$�q�D�I�c�L�#�dn�fd
#���,\�[�?���:����c��gZ�D+x��ӗ�\�f�ٴ1�0>ͩ�1e��be]T[@c����֦�G��7V(Njw�������B��)63
�ы+�@"r|�J��Aщ�\Ү����&_:�n��D����g?1<�أ2�ܶ� &��ȍ�1R�
}^_:�ɇY��μ�,l�K��Ӹ��d�+�+>�Viɸ�\��#�@0압��Џ��ܢy��I��*v��´�'8$ό�W0a�wW|��K=�s@�y�5�$�,˼����0LJY��h�A;G����
����^�D���k�"��^6ȿ��.�#>�Mlyc��.Cx��9gUޮvbR��O��IJ�=��<e�ً5��/Q"����&��)r���$H:�bK�L�h��Vr�Y���+����)ԓW�|��r;m���	�Q-z�m];R�u�G#���O�&�(;��VX%���R
�P�x��Lc��>%]�@���Ѯ�ϐ�M_mP�%���@u����ּ�MSy�6생���v�n�D�%��5���p�
���g��FiG��d	>��!�1�-槔�K
��|�b6�cډ�y�O�t�Ϡ� Z�����&�I��|B������3R�B���ޙNs�����ոߢz�SWn�o�ކ�]oϹ��@��Fn�Y�_�[G���:����%/�t���O|�z‡~U����O��"+�� �:~��2�_�1��Og���`א�g�
,�+o<�5��t�\$mbp#��Rg���y7Kz��
�g����Fql�d!�}�Pb�Ҏ�
niN�r^��zWN�Y�(�(E(���wn~��ຟ���FSb�C�8���#���ჹKj���8���El�(8	YiJ��Hy�"9�Cl+,T)��x
�8e>����V������N�e��ղX��y�G5wJ5�Y2���]U���3E��_[z7K��'�|]�@��܋[�	��;#��^a�)RpZ���5[{��b��%�R�%�빦��}h�5#������
F_��R�M¬���!�3�	߻Ksb�DO���y�a,����kEVGpY���Y�f(?�_����0z����<��i��dC�0�SB���(���Gb�m��Q ��]#����;��bB���0;XuʯKp
9nׄ�V�����bOԛ�&�������qcЭtyZ����m�{��F��o�aD���w��><�/����,?�4"���#+�*�maqx�����%A"��2
��OL	�Lv�[��X�HM�eܝ9r���0��ñ<׏NH,�K���&�4�pGa�$,bg\Mcn��:�=�v'�c�$�zPi-}V�k��T�9����ڊ�RX\_m�O�����u4��J��6���MvR�l1L��5���S�aJ=�hLe-��ZJee�EOs8ȃ� �w65���T�	�m�j�&0�6�.2����2�̭�a�B�_/�Z�3S-m�̖�Ǫ�,�"�JN��]h8���w0�ꦕA	(
w8;ZH��������5�+��C蒉(>p�'�Y��y@�v��m�&�!�
ǎ�K�>�F�gi�QxyKp-
_��0y`�1� ��l�x�M�*��m�������z�3��fpׁ�+��-�7W�zӑd���d��k nC"��kٕ?��Da�P�3��ݙN �W3��X�~"�Y�c����:�ঘ6@��Hz�&�R��k�s�'+�� ���1�40��-�*�C��p�����M��k4;鍦�Z�O2�hG5M_@���!�����hW3��A��=����/���/��\�I.yp�/��3|�/�*�F�a��K9��Qt U��U�(�KO���[_�_e�OD�TE��=ד̧K�6�xZ*��3�+��S_!�
d�T��BF�B�n��є�ie.��Eb�G��~H��t��[�q�}ֽ������
�11�q�g�0E�_|�a��k�)�wj:���U����"�2�
��j�޸�K�q3�f��~�K�"!��6�R���E�Z�?�.+��;g:���,���@S��*��7�|��H��(�Z��]dW@;�KH<��L��v+�n��x�'��x��_v�CUZ���r�(Ϳ˫��E^L��8��z����P2�w�n�Fy�Jpف�3��i��%K��1�V�:�3��?B�]��
ܵiҦ饕���ላ@���+r*����f�sGY�I���.y!�9�����3=�aW%"g���QBoT-yk������1~k�䑤'��`������`ǻb��bK7!�.c�*n'LԠ�����[fU��ŃAr.n�j��ȋn�|D^f�/��Xq�U`&R�TZ�f5ȵP�o���>�	yk�H�N���"%L?+҆�M?&-�|:�/����%�\X]L���-�D�-mMU������j|!�o��4	3��w��/ɑ��ӟ��=�e�1_K��|��2,�p���ף(�k��5̮k������>.����)Č�R5�^?���դ���-��<���H�18�.�(�>��*��b$^�-�o6�Mdbl)���P�(����:s/띞�|���=��Ļz �?.ӄ�J
fȞSY���~L�ș߭9x���V3�Ͳ8�R���!�$2���u�8�����+��fJq`���l��A�ce���i/��s~ӔA}��Z��)�A�piN\u��!�}����ʦ�6%lt
��KM�w8����BMl�%�3���
j��3���B*��`�A@<���?����q���o��tL�S�S��3!�������4%�ڑ����/,�?�h�hWI�!�"�d�^��R0�;(ojN9j����zs�i��/��FSi��/��ϖ!���N�P�Z �	�,��!�iÈ���_�SY��wp���5��{[�FZ9�	��n����,��7⸭ݐ���4��
��!�ӗ[X7�h���=>��.�Q��j����}�����!
��p�
��>QP���(cSD?8W�������Bq�nn�[�:������r��{�B�	��b^�g�C�ٚ9���Y����u%Ȋ*#�<8�����J;GƢ�/�
y��vg)?C�|�f"��Յ����j/B��3�T&�aG�(|�H�y�KW.+�%�8;�������b���h��g���*�6 ��������`�f3
� ���_\���O�:o���u9@`��p;-��q��_Q-{�D��+���v\X�#�Έfa	"�R2f��|�W<�n�Kg��l����F��τ�� �W.�~�/u5�Dn:Z��	�(ғ4���?�n5�^M�;i&!�kjV&��4b	T{�U�|/��B�;�5<^�H���j��@����ĕ���v`��ם�M�2s]}\��I	�?B0�
9��]�<���?G&�X��4a�7I7(h;'�������6jv���*������Iu(��O���_,����<+gR��.��3��: @�j���()���_�iVX@°��v�=꿍��t}����G�.<��w{�������N��l+�橶��^�6��Hv��Z��Wj^>7ڀ�/GD����[~�"���6�Z}
�
)4��;�,xJ,P�1q3C�'N�RD��'9�p�^���i��^�':a�P�2uKW��8����.�K_�N�W�4��q������ͺ���h���1
�8SqQ����a�9�o�p!X*�$�kEպ@!��:�~��<1lzu/�3�/}Ho5�P)��I����f��{����2Ü���]�k�t��:d��ؖ���I��O���	��{e�U�_�`J�ɿ*2����旆�pE^eMd�xi�15ے'zYn����E�Ƨ���M!2a�F����U�G5l��� 󥬼��&
P3�(��Lt��\�i��}�d7R0-�nޝ����$c�H{Y��o%M �G���]z�����^��Fi��V��P ��ɤZe�R7"�>���$ɸy/���Yj���:j�wGB��)_�;MG�>\ ����S��-��pP_��,���X(��N�aa��)���'
���T���'��f�7���Ƹ*�̾�����7���U�>|tR)邠@�F�]2SVLXRb,"}�1��:77�\8}`�0�{�@����� ����7�S�R��܍�:���F�mc�2s��a�E�p�ɥ���,�S�n��	�)4���]A`�UWc�[�K��[�Rlj�I��g�Y��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``,(��@h0�p�p_J8���o0�0��E���o�����T����8^B����@Yh::c0:0:�;n�u�u�;w@�@��}��
��� V �  <�`.`.x��ؽؽ �p�%p��x�%x����%�� ���%�����%��`��%����%�� ��f�d
<,h�$$'+PKKH[/��ss.lib64/gems/ruby/io-console-0.5.6/io/console.sonuȯ��ELF>�#@�k@8	@(Y(Y �\�\ �\ x� �]�] �] ��888$$YYY  S�tdYYY  P�td@M@M@M��Q�tdR�td�\�\ �\ GNU0��Н�P�B��z=����W�H!@WY[BE���|�qX/D�o������O���� @�kx �1�X��;�k�CON����U�o�� �f5w��Q������"�"h�^�a�	�3�{"�����a, ��[F"�r�0�$hb .�b +hb @�Dp� I�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_check_typeddatacfmakerawrb_data_typed_object_zallocrb_funcallvrb_default_rsrb_io_writerb_cIOrb_cFilerb_const_definedrb_cloexec_openrb_update_max_fdrb_class_new_instancerb_io_taint_checkrb_io_check_closedrb_str_new_staticrb_obj_freezerb_const_setrb_const_getrb_const_removerb_id2symrb_check_typerb_io_closerb_check_idrb_error_arity__stack_chk_fail__errno_locationtcsetattrrb_num2uintrb_sprintfrb_sys_failtcgetattrtcflushrb_string_value_cstrrb_intern2rb_io_get_write_iorb_ensurerb_stdinrb_stderrrb_str_catfrb_io_flushrb_convert_typerb_eArgErrorrb_raisestrlenrb_io_getbyterb_ary_newrb_ary_pushrb_str_newrb_str_new_cstrioctlrb_assoc_newrb_fix2intrb_num2intrb_Arrayrb_ary_detransientrb_protectrb_syserr_failrb_jump_tagrb_io_getsrb_yieldrb_keyword_given_prb_free_tmp_bufferrb_hash_arefrb_funcallv_publicrb_empty_keyword_given_prb_extract_keywordsrb_check_hash_typerb_warnrb_ary_resizerb_ary_ptr_use_startrb_ary_ptr_use_endrb_obj_classInitVM_consolerb_f_notimplementrb_define_module_underrb_cObjectrb_define_class_underrb_define_alloc_funcrb_undef_methodInit_consolerb_internrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_startGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64ii
7ui	A�\ �$�\ `$] ]  ] �K@] �Kx_ �_ 	�_ 
�_ �_ !�_ )�_ +�_ 5�_ >�_ L�_ N�_ O�_ P�_ V`  ` (` 0` 8` @` H` P` 
X` `` h` p` x` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �`  �` "a #a $a %a & a '(a (0a *8a ,@a -Ha .Pa /Xa 0`a 1ha 2pa 3xa 4�a 6�a 7�a 8�a 9�a :�a ;�a <�a =�a ?�a @�a A�a B�a C�a Z�a D�a Eb Fb Gb Hb I b J(b K0b M8b P@b QHb RPb SXb T`b U��H��H�QE H��t��H����5�E �%�E ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q�������%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%}@ D���%u@ D���%m@ D���%e@ D���%]@ D���%U@ D���%M@ D���%E@ D���%=@ D���%5@ D���%-@ D���%%@ D���%@ D���%@ D���%
@ D���%@ D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%�? D���%}? D���%u? D���%m? D���%e? D���%]? D���%U? D���%M? D���%E? D���%=? D���%5? D���%-? D���%%? D���%? D���%? D���%
? D���%? D���%�> D���%�> D���%�> D���%�> D���%�> D���%�> D���%�> D���%�> D���%�> D���%�> DH�=�(1����H�\$�H�=�(1��j����H�=�(1��W����f�H�=q> H�j> H9�tH�v; H��t	�����H�=A> H�5:> H)�H��H��H��?H�H�tH�u; H��t��fD�����=�= u+UH�=b; H��tH�=~8 �����d�����= ]������w������H�"�O{�H	�����g�����H��H�wH�� ff.�@��UH��H�518 SH��H������H�����t�HxH��H��[]�D�`�H��H��[]�f.���ATI��H�5�7 UH��S���L��H�5�7 H���t����o�oHK�oP S H�P0H�S0�@8�C8H��[]A\�D��UH��SH��H���[����C��ωCH��t.�U��x�S�U��x�S�U��t���CH�H	H��[]����H�%7 �<�K���ff.�SH�7 H��<�+���foH�P foKJfoS R H�K0H�J0�K8�J8[�ff.�����H��H�5(< H�׉����fD��H�5
< 1�1��|���ff.����H��8 H�0�m���ff.�f���AWAVAUA��ATUSH��8dH�%(H�D$(1����<I��H���oE1�H��8 H9u
H��8 H�H�5w; H���������M���1ҾH�=�"���Hc�����H�l-�d���H��H�t$�H�l$H�D$�d���H��H������L�xL�������H�=!"�<���H������A�OH��H��I�GH�5�: ����M���H�L$(dH3%(H���LH��8[]A\A]A^A_�f.�H�5�: H������H�ŨuH�����ubH�5k: H���S���M�������H�=K: �^���A�����I9�������n���fDL�&�L��������������u�H�EH��t��x�t�M���.���H�=�9 ��I9�u-A��u'H�����H�5�9 H��������fDI�H�|$H�D$���H��t)A��I��H��L��D��H������H������H�99 �փ�1����������U��SH��H���
����8u&1�H�ډ������u�H���[]�f.�H��1�[]����SH��H���`���H�=" �p1�����H��H���d���H��[�ff.�@��ATI��UH��H��S����L��H�������SH�=��p1�����H��H������H��[]A\����UH��H�5�2 SH��H��H��XdH�%(H�D$H1����H���o)$�oH)L$�oP )T$ H�P0H�T$0�@8�D$8����H�XH�������{H�������tH�L$HdH3%(H��uH��X[]�1�����L���ff.����USH��XdH�%(H�D$H1�H���^���H�XH���b����{H���G�����u&H�=D7 H����H�T$HdH3%(uH��X[]�1����������SH��PdH�%(H�D$H1���H�XH������{H��������u)�D$��H��H�H�Ѓ�H�T$HdH3%(u
H��P[�1�����b�f���AUI��ATUH��SH��XdH�%(H�D$H1�I���t���H�XH���x����[L����[�����uP�D$I�����u:��D$L����)�����t.H�T$HdH3%(H��u"H��X[]A\A]����x�D$��1�����ff.���ATUH��SH��PdH�%(H�D$H1�I�����H�XH�����[L��������u@L���H�"�L${�H	$�|�����tH�T$HdH3%(H��uH��P[]A\�1��U���� ���UH��SH���N�H�XH���R�{1��H��u
H��H��[]�1�����SH��dH�%(H�D$1�H�H��tH��H��H�$��H�4$H����H�D$dH3%(uH��[���ff.��H�5�4 SH��H��tH��1�1�[�c��H�=���H��1�1�H��[H�}4 �8����AUATA��USH������H��I��H����H��H9�tHA��uH��L������H��H�u���H��H�=[
�V�H��t0H��H��[]A\A]�>���fDH�1 H9u�H�-1 H�(�H���[]A\A]ú1���@AUI��ATI��U��SH��H��XdH�%(H�D$H1���1���uDH�C0�oL���oK�oS H�D$0�C8H��)$H��)L$)T$ �D$8A��H�މ��>�����H�T$HdH3%(��uH��X[]A\A]����f.���S��H������H�=�1ƃ�S)�1��}�H��[H�����AUATI��H�=�U��1�S��H���a�I�Ņ�t&����L����H�5D1��)ƒ�A1����t$�؉�H�5$L����1Ã�C��)�1��l�L��L���A�H��L��[]A\A]�O�ff.�@��SH��H��H�
�H����M�H��� t%H����H��u3H��H�PH�0H��[���@H�xuH�@ H��[H�PH�0�e���H�6/ H�5zH�81���ff.�f���AVAUATI��USH��dH�%(H�D$1�H����@��t.�H�L$dH3%(��H��[]A\A]A^��H�����tɋ����u�H��D�n�A�H�hH���E�L�uPM���%L�3L�����}L��H���_�H���u<�E���p���H�H����H�޿H���3�H����K����
�E1�L����H��7�-���L����H=�������1�H��DL���p�H��t*H���2���;t=�PЃ�	w%��L��\P��F�H��u�H��H��������E��t#A9�uE1�멐Hc�H��1�H�t6�^��@Hc�H��D$H�t6�D�H�|$����H�;�k�L��H����L�����������ff.���UH��SH����H�XH�����H�{PH��t��H�XH�����{�����u
H��H��[]�1��f�fD��UH��SH���^�H�XH���b�H�{PH��t�D�H�XH���H��{�H�5��t�H��x
H��H��[]�1���ff.���SH��dH�%(H�D$1����H�XH�����H�{PH��t���H�XH������{1�H��T����u.�t$�<$H�t6H�|?���H�L$dH3%(u
H��[�1��a��,�ff.����ATUH��S�P�H�XH���T�H�{PD�cH��u�D���:���uJH��[]A\�fD��H�XH�����[���t�A9�t�1�D������u��������t�1����D��SH��H����t �����t
��H�����H��[������f���SH��H����t ����t��H�߉��K���H��[�fD�����f���SH��H����t�k���uH��[�f�����t��H��1��+���H��[�fD��SH��H����t�+���uH��[�f��[���t��H��1����H��[�fD��SH��H����t�����uH��[�f�����t��H��1������H��[�@��SH��H����t����uH��[�f������t��H��1҉��i���H��[�@��USH����wVH��uH��H��H������H�5?, 1�1�H�����H��H��tH���J���H��H�() H��H�0���H��H��[]ú1���ff.�@��AWAVAUI��ATUSH��H��(dH�%(H�D$1���L�`L����H����H��H��� ttH��H����H���v��MI�|$PH�KA�A�H�SH����H�T$H�$�2�H�XH���6��[H�T$H�$�[�H�kH��t
H������H�[ H�H�SA�A�H��uL�{L�sI�|$PH��u�A�\$H�D$1�H��tH��H�$�P�H�$f�D$1�H��tH���7�f�D$1�I��tL���"�f�D$1�I��tL���
�f�D$H�T$1��T������ubH�t$dH34%(L��uVH��([]A\A]A^A_��H���p�H� ����H���
���H�K' H��H�5�H�81���1������AWAVAUATM��UH��SH��H��H�t$H�T$dH�%(H��$�1��D$,������L�xL����E�wA�����I�PE���D$H�����D$,����H��E1��>�H�XH���B�A���tD9k��E���	�|$,���MH��$�dH3%(H���%H�ĸ[]A\A]A^A_ÐH�t$0L��H��D���
��������D$,E��E�w�D$I�PH��tE����E��L�xL����E�wA����&���E9�����H�t$lL��H��D������LH�t$H�|$H�T$,�D$,A���H��H���/�H�XH���3�A������f�H�{PH����{D9�����H�t$l�������������D$,������D$f��|$1����D���t����fDH�t$H�|$H�T$,E1��y�H��H����H�XH����A����_���D9k�L���H�t$0D���Q����7����T��D$,������D$E���m����(�����+�A�����E�w��D$�h���fD��A�������D$���f.����H�XH������{D9������������f���H�5$ E1�H�
�H��������H�5�# E1�H�
��H�������H�5�# E1�H�
��H�����H��tjATI��U��SH��@��t�s�9�w/[]A\�f.�@��uH�����t�����
t/�H�a# H��L��H�5�
H�81����f�1��D�S�랐��SH��
H��H����d���H�=�
��1��4�H��H���y�H��[�@��S�H�����H�ߺ���H��[����SH�G
H��H�����H�=;
��1����H��H���	�H��[�@AVA��AUATA��UH��SH��H�� dH�%(H�D$1�H�D$��H�D$A����E��~qIc�H�\�����H���������������H�\$H����H�D$E����H��t
H�|$�y�E9�}D��1�D���7���FH�\$H����H�=�$ ��H��H���$�H�=e$ I����H��H���
�H�=C$ I���k�H��H�����H�EH���E1�I��tL��A���y���EH��I��t6L��H�L$��*H�D$���H�Ǩ�-����EH��H��tH��u.�EH��H�T$dH3%(�aH�� []A\A]A^�H����H��  H��H�5�
H�81��$�@��E��~]����H�D$H�\$H����������fDH�|$����H�|$H���b�E���F�A��H�۸HD�H�\$H�D$E����H�\$E���%���H���!���H���O���f.�1��
���f��EH��������������fD�������fDIc�H�|�H��uH�\$�����;�H���~���H��t
H�|$����1�D����������M�ff.�f���AT1��USH��1�H��0dH�%(H�D$(1�H�L$���H�T$H��H�\$I��H���H�
��H�D$H�5�H�M H�D$ �����ugH��H�����t\H��ƒ���uO�� urH�{uCH�K H�A�u7H�����t/H��փ���u"�� u]H��H����H��u�8RtW��H�t$(dH34%(H����H��0[]A\�H5�H�K��t���DH�xu�H�@�L�!H�i�H������L���l��H��I���a��H��H�����A�T$�H��Hc�H�TH�����H�������U�H��Hc�H�TH�P����G����%��D��AUATUH��1�SH��hdH�%(H�D$X1�H�L$����H��I���(��H�XH���,��D�cH�\$H��D������u8L��H���9�H��D�������tH�T$XdH3%(H��uH��h[]A\A]�1��������SH��1�H�� dH�%(H�D$1�H�L$�h���H�5� H��H��I��H�
�����H�T$dH3%(uH�� [��!�����SH��1�H�� dH�%(H�D$1�H�L$����H��H�
n�H��I��H�5Q��L���H�T$dH3%(uH�� [�������ATI��H�5� UH��S��H��H��`dH�%(H�D$X1��M��H�L$��L���oH�\$)D$�oH)L$ �oP )T$0H�P0H�T$@�@81҉D$H�Z���H��H����H�����H��H���,�H�L$XdH3%(u	H��`[]A\����ff.���AUI��H�5 ATA��H��USH��H��(dH�%(H�D$1����1�H�L$L��D��H������H��H���*�H�T$dH3%(uH��(H��[]A\A]�������U�����H���H�5�SH��H�� H�;�$��H�;�����H�%���H�5v�	��H�;1�H���H�5c����H�;1�H�e�H�5R����H�;�����H����H�5?���H�;�H��H�5*���H�;1�H���H�5���H�;1�H�o�H�5�s��H�;�H���H�5��X��H�;1�H����H�5��@��H�;1�H���H�5��(��H�;�H���H�5��
��H�;1�H��H�5����H�;1�H���H�5�����H�;1�H���H�5�����H�;1�H���H�5����H�;�H���H�5l���H�;1�H�����H�5Y�z��H�;�H���H�5E�_��H�;�H�0�H�52�D��H�;�H���H�5!�)��H�;�H���H�5���H�;�H��H�5����H�;�H���H�5�����H�;�H����H�5����H�;�H�>���H�5����H�;�H�3�H�5����H�;�H�X�H�5��l��H�;1�H�0���H�5��T��H�-� H�;�H�5�H���6��H�;H��1�H�5��"��H�;�����H��H�5����H�;�����H����H�5����H�;H�5y�
�������H�Q��H�5FH��H����������H��H���H�50���H�% H�;H�5;H����H�5���H��H�� �u��H�=� H�5���H�=� �H����H�5�C��H�=� �H�0��H�5��$��H�=� �����H�A���H�5r���H�=v H�������[H�]���H�5J]������H��H�=�����H�=�H�v ����H�=AH�3 ����H�=xH�H ���H�=kH�- ���H�=\H� ���H�=NH�� �z��H�=@H�� �g��H�� H��������H��H���/dev/tty[%dG[%d;%dHchomp![%d%cto_aryArrayexpected 2D coordinatewrong %s mode: %liscreen erase[%dJline erase[%dKrawraw!cookedcooked!getchecho=echo?console_modeconsole_mode=noechowinsizewinsize=iflushioflushbeepgotocursorcursor=cursor_upcursor_downcursor_leftcursor_rightgoto_columnerase_lineerase_screenscroll_forwardscroll_backwardclear_screenpressed?check_winsize_changedgetpassconsolegeneric_readableConsoleModeinitializeinitialize_copygetcgetsclosemintimeintr__send__console-modewrong number of arguments (given %ld, expected 2 or 4)Keyword flag set when calling rb_scan_args, but last entry is not a hashUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parameterstrue or false expected as intr: %li;�= �����8p��D
p��P���d���x�������p���������(@��D`��X���l���� ���p�������H���t �������@�����4�`p�����p���0@�L���p��`����0�D��h`�������� ��`���,��L`�x`��p�	��$	��8	��L	P��	���	���	��	0�X
��
p����
����
0����Dp�������zRx�$���FJw�?:*3$"D����\��p$��	� ��0�,��FE�K�G V
DAFHDA(�H��[F�K�D �BAB$�|��XE�D�G EAA ���4���BA�@P���d��x��H���xF�B�B �E(�A0�A8�Dp
8A0A(B BBBK0�L��IA�C�G c
FAKDCAh��1E�k((���HF�D�G �sAB(T����E�K�Jp{
AAA(�4��oE�A�DpV
AAA �x��nE�D`W
AA8�����F�E�A �D(�D�n
(A ABBH08���F�A�D �Dpp
 AABA(@���=E�D�D c
DAA l���TA�D H
AA����HH�P
H\L����F�B�D �A(�D0S
(D ABBK\
(F ABBA8t���B�E�D �C(�G�u
(A ABBA<���/C�d4X����B�B�K �E(�F0i(D ABB �T���E�B
IO
L@�����F�B�B �D(�A0�D@|
0A(A BBBI(�l��ZE�D�D @
DAA($���bE�D�D H
DAA P����E�D }
AA(t`���F�A�D �s
ABG����7E�b
I����7E�d
G��:E�X
CY�,�:E�X
CYL�<E�X
C[8l�<E�X
C[(X��qE�A�D U
DAAH����F�B�B �E(�A0�A8�G`�
8A0A(B BBBHH���B�B�B �B(�D0�D8�J��
8A0A(B BBBBX�0d�Dp�8X|�H�D�C �S
ABK@���H ������<E�v���)E�c���<E�v@��#B�E�B �D(�D0�GP�
0A(A BBBD zRx�P�����($��>0d���F�H�A �IP�
 AABD8�<��F�B�A �F(�D�z
(A ABBA ���_E�I0J
AA ���_E�I0J
AA0	��F�K�D �I��
 AABA8P	��yF�L�G �A(�GPI
(D ABBA(�	��pE�T�D 9FO�	,�H�GNU��$`$] �K�K��������!M@
�I�\ �\ ���o`8�
c` �P��	���oX���o�o����o�] p�������� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p��������GA$3a1@�IGA$3p1094�#�IGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�$�IGA+GLIBCXX_ASSERTIONSconsole.so-2.7.8-141.el8.x86_64.debug
w���7zXZ�ִF!t/��?�]?�E�h=��ڊ�2N���|��>(u�L��$�;�	��=ֿ�0�T�'܌ ]��QBv6d�Uʁ�V�q��J2����l'��%=A_u��NXyi�(KhZNmL�Æ	���Y@�F4�ݧ���4q;E)���i3�8,�|���%VfM�sz�X�9p�x����&�5U?5�3�~Onc��
@B1��5�~b^r�d��Cܱz��4T�!���}�n>Pp�g&`����$p��>�"t,G�Y&�\��)qf�"��i�|�i�2��
/�@���|��V�!?�����d�9�����GD?�&��k|+
�%�������E�U>��Y*K>2O��|}�˂�5ږ�ܰ�ބ�&�'��GgP|�|��iF�u@"���*��:ۈ�4��Wo�_�r�cG���uKX4��2�
G\akG�����u��M��[
�E��m�>�����ug�u{�q
E >��6`���P�
+��-&&���$Bڌ~E�$��4��5�J����˫�8f0{�l���h9�.��(�l�Ҷ�z�|	=tW���xg	W���$�(ߟp�Їi�z��J���6n�0I��!n�lڕ�������K�����'г�w=
ڳ��9��E#А‰7������T)�~`sG4�4=�b�!K�5��
��w�)i��ԥ�>!�`���'����`(�x+?'�0�vݔ6/�%�M���qA���~JYU)�OC��>8ô���_�!2Q�<�n.Ɨ�i�FU?����Хr��k��\�b!^ZH��P��t!^Q���Zr�t^�6��g�(�ߞ���f~�f \���͞�����.�x���a����Z�g�����f�/h�������쏼�gz&?�IF��k��
��|��QS>�Շ��>�[`�>U���5�ΧՆ��6;�3���:՚��Z�cdI�gP2.���s���V�j�g�݇K��Hw9�����s׮�{������:��juG���}46(N$ɖ��LLg)��:,��1a����^�ӭln��?���9�9�����ams�K��8�4
�t�\�
"L�j���i3��B�#+5��B���Q��}![���ְ�qU�j�>[���!��eTT�!�d������c8GnF��L|(�q����i	�H��抩Y����B���gۧh;�~i�36��02b�l�2]����TcMB.����p�XZ���M�E	�Q)�M�-��U=(@Ѝ{��p>{.@�{(�� �(?oٌV��M�_Pp�ܐ�NZ��EY.
����E�h�{���V_�|v�{�pwj�侶g�`>�2<��5���S�Y�͊���RC�Y�'�J89�^1%a����Z8���I�`ϼȗ��{/��KD�I�"Z���.�3�r��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``8(���088c8���o���E���oXX0T���^BPP�h@@c``�n�w�#�#&}�I�I
�2�I�I`�@M@M��8O8O�	�YY ��\ �\��\ �\�] ]� ��] �]��x_ x_p�` `h�hb hbX��b`hbD
�d,�d��j+PKKH[_HJ�����$lib64/gems/ruby/psych-3.1.0/psych.sonuȯ��ELF>�,@p}@8	@�a�a �l�l �l 8  �m�m �m 888$$�a�a�a  S�td�a�a�a  P�td�X�X�X��Q�tdR�td�l�l �l 00GNU4ȇq
�P.��甸rWK�s�^`� B��HH	�`hkx�
BE��"a��j������
��|�S��E6
Z�qXH���8����"GU�� ��Z�YA��d,�u\}�x@~��%�P!� 4B���D�"4�G��\�2?�"5�"���u5�OK�kf\�����, ��F"�f�)I8�f�`>rs ��T���R���s ��s -�s �@.N��Ut��s !s ��s ��s __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeyaml_get_versionrb_ary_new_from_values__stack_chk_failInit_psychrb_define_modulemPsychInit_psych_parserInit_psych_emitterInit_psych_to_rubyInit_psych_yaml_treerb_define_singleton_methodrb_check_typeddatayaml_emitter_deleteruby_xfreeyaml_emitter_set_canonicalrb_data_typed_object_zallocyaml_emitter_initializeyaml_emitter_set_unicodeyaml_emitter_set_indentyaml_emitter_emitrb_eRuntimeErrorrb_raiseyaml_alias_event_initializerb_check_typerb_utf8_encodingrb_str_export_to_encrb_string_value_cstryaml_mapping_end_event_initializeyaml_sequence_end_event_initializeyaml_document_end_event_initializeyaml_stream_end_event_initializerb_fix2intyaml_emitter_set_widthrb_num2intyaml_stream_start_event_initializerb_attr_getrb_enc_str_newrb_funcallvyaml_mapping_start_event_initializeyaml_sequence_start_event_initializerb_string_value_ptryaml_scalar_event_initializeyaml_document_start_event_initializerb_ary_entryruby_xcallocrb_string_valuerb_keyword_given_prb_ivar_setyaml_emitter_set_outputrb_empty_keyword_given_prb_free_tmp_bufferrb_error_arityrb_cObjectrb_define_class_undercPsychEmitterrb_define_alloc_funcrb_internrb_define_methodcPsychParserrb_const_get_atrb_class_new_instancerb_intern2yaml_parser_deleterb_funcallv_publicrb_utf8_encindexrb_default_internal_encodingrb_iv_getyaml_parser_initializerb_respond_torb_ascii8bit_encindexrb_usascii_encindexrb_enc_find_indexyaml_parser_set_encodingyaml_parser_set_inputyaml_parser_parserb_protectrb_str_new_cstrrb_enc_associate_indexyaml_event_deleterb_jump_tagrb_str_newrb_ary_newrb_ary_new_from_argsrb_ary_pushrb_enc_get_indexyaml_parser_set_input_stringrb_to_encoding_indexrb_str_new_staticrb_const_getrb_usascii_str_new_cstrrb_exc_raisememcpyrb_define_constrb_requirerb_path_to_classrb_obj_allocrb_iv_setrb_define_module_undercPsychVisitorsToRubyrb_define_private_methodcPsychVisitorsYamlTreelibruby.so.2.7libyaml-0.so.2libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4/opt/alt/ruby27/lib64ui	2���>ii
I�l �-�l `-�l �l m KWm  /`m Xpm �A�o 
�o 
�o k�o )�o i�o d�o e�o l�o L�o Q�o Vp  p (p 0p 8p @p Hp Pp Xp 	`p hp pp xp �p �p �p �p `�p �p �p �p �p �p �p �p �p �p h�p b�p q q q q   q !(q "0q #8q $@q cHq %Pq &Xq '`q (hq *pq +xq ,�q -�q .�q /�q 0�q 1�q 2�q 3�q 4�q 5�q 6�q 7�q 8�q 9�q :�q ;�q <r =r >r ?r @ r A(r B0r C8r D@r EHr FPr GXr H`r Ihr Jpr Kxr M�r N�r O�r P�r R�r S�r T�r U�r V�r W�r X�r Y�r Z�r [�r \�r ]�r ^s _��H��H��N H��t��H����5�N �%�N ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]���������%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%�H D���%}H D���%uH D���%mH D���%eH D���%]H D���%UH D���%MH D���%EH D���%=H D���%5H D���%-H D���%%H D���%H D���%H D���%
H D���%H D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%�G D���%}G D���%uG D���%mG D���%eG D���%]G D���%UG D���%MG D���%EG D���%=G D���%5G D���%-G D���%%G D���%G D���%G D���%
G D���%G D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%�F D���%}F D���%uF D���%mF D���%eF D���%]F D���%UF D���%MF D���%EF D���%=F D���%5F D���%-F D���%%F D���%F D���%F DH�=F H�
F H9�tH��B H��t	�����H�=�E H�5�E H)�H��H��H��?H�H�tH��B H��t��fD�����=�E u+UH�=�B H��tH�=^? �����d����uE ]������w������H��8dH�%(H�D$(1�H�T$H�t$H�|$���HcD$H�t$�H�DH�D$HcD$H�DH�D$HcD$H�DH�D$ ����H�L$(dH3%(uH��8��^���ff.���H��H�=�'���H�}A 1�H�5�'H��H�H�?����j����������;���H���"���f���H��H�5a> ���Hc��H��H�D�ff.���H��H�51> �\���Hc��H��H�D�ff.���H��H�5> �,����x|H�H��H�Ѓ��f.���SH���#���H��[���f.���SH��H�5�= ����1�H��H��@������H��[�D��UH��= ��SH�����H�X H��H�����H�߾�i���H�߾�L���H��H��[]�f�SH��������t[�H�@ H�SH�5i&H�81����D��ATUSH��H�ĀH�t$H�5�< dH�%(H�D$x1�����H�|$I��H��u:1�H�l$H�����H��L���x���H��H�T$xdH3%(uCH��[]A\�@��>�������H�|$H������H�D$H��t�H�|$����H������ff.�f���ATH�5C< USH��H��pdH�%(H�D$h1�H���R���H��I�����H��L������H�T$hdH3%(uH��pH��[]A\��{���ff.���ATH�5�; USH��H��pdH�%(H�D$h1�H�����H��I�����H��L���\���H�T$hdH3%(uH��pH��[]A\�����ff.���ATUH��H�5_; SH��H��pdH�%(H�D$h1��r���1�H��H��@��I��H������H��L�����H�T$hdH3%(uH��pH��[]A\����ff.�@��ATH�5�: USH��H��pdH�%(H�D$h1�H����H��I���G���H��L���l���H�T$hdH3%(uH��pH��[]A\�����ff.���USH��H�5p: H�����H��H���t�'�����H�����H��H��[]��k����������USH��H�5 : H���G���H��H���t������H�����H��H��[]������������ATUH��SH��H�5�9 H��pdH�%(H�D$h1����H�߾I���R���H�߃�t:�e�����H��H�����H��L���=���H��H�T$hdH3%(uH��p[]A\Ð��������f���ATI��UH��SH��H�5g? dH�%(H�D$1���H�����L��H��H����H��H��H�5"? H�$�q���H�Ǩt"���H�\$dH3%(uH��[]A\�@������L�ff.����AWAVAUATI��UH��SL��H��H�t$H�5�8 H�$dH�%(H�D$x1���I����H�|$I��H��t���H�|$L�����H�D$H�<$H��t����H�<$L�����H�$H�߃���������E1�M��A��E1�H�<$tH���H�I��1�H�|$t
H�|$�1�H��L�d$L��A��D��L���8���L��L���m���H��H�T$xdH3%(u&H�Ĉ[]A\A]A^A_������p�����ff.�@��AWAVAUATI��UH��SL��H��H�t$H�$dH�%(H�D$x1���H�|$I��H��t���H�|$L����H�D$H�<$H��t���H�<$L���z�H�$H��H�5�6 ��H�߃�I���������E1�M��A��E1�H�<$tH����I��1�H�|$t
H�|$���H��L�d$L��A��D��L����L��L������H��H�T$xdH3%(u#H�Ĉ[]A\A]A^A_�D�[���s�����ff.�@��AWAVM��AUM��ATUH��SH��H�T$ H��$�H�L$H�t$(H�5�5 dH�%(H��$�1����H�|$(�I���Z��5�H�|$(H��I���5�H�|$ H�D$(H��t��+�H�|$ L����H�D$ H�|$H��t���H�|$L�����H�D$H�߃���������H�D$(M��A��M��L�A��E��E��A�� ��I��D�����D$H�|$(���1�H�|$H��tH�|$H�D$�0�H�L$H��1�H�|$ t!H�|$ H�L$H�T$�
�H�L$H�T$H��L�|$0SE��AVD�D$L���%�XL��ZL���8���H��H��$�dH3%(u.H�Ĩ[]A\A]A^A_Ë@�D$�N���@�k���������ff.�@��AWAVAUATI��USH��H���H�|$0H�t$H�5�3 H�L$8dH�%(H��$�1���H��H�D$(�u�H��� ��H����H����I������H�D$ 1�L�|$PH�D$E1�H�|$8A��H��� �>H�D$H�@H��H�ٸH�\$ H�t$HL��HN�H����H�|$(L����H��tH����H��$�dH3%(H�D$0�tH���[]A\A]A^A_�f�H�D$H�@H���5���H�\$1�H�����H�߾H����H���H�����{�H�߃��D$H�{�f�D$LI�����������L��I��� �I�$�� �cI�D$H�D$L�|$�E1�L�����H�D$ H��M���kI�D$H�l$PM��H�D$H�D$@H�$�H����L9��o���H�D$N�4��L����I��� ����I�NI�FH�L$@H�@H�<$H��I��H�D$P��H����H�|$@L���7�H�|$PL��H�D$@�%�H�<$H�D$P���H��H�C����H�C�L;|$��I�$�� �?���M9|$�����I�D$ �?���f.�H�������@�K����fD�;��[���fDH����H�D$����I�~~(I�F H�H�L$@�
���I���<���H�\$ L�|$P�-���H�|$ ��H��3 H�5�H�81����"�f���AWAVAUI��H�5|0 ATU��H��SH��H��dH�%(H�D$1���I����H�$�������rM�u����M�m���IH�566 1�1�L����H�56 1�1�L��H���t�H�5�5 1�1�L��I���^�H���I��������L����L��A�����~���L����1�I��L��@����H�5�5 L��H���@�H��H�5&���L���~�H��H�L$dH3%(��H��[]A\A]A^A_������~cH�$M�u��u"H��t�A�H���W���u���DM�m��u+H��u�����D��������@�����(���H�<$tH�����������?�ff.�@��SH�=��o�H�5�H��H�.1 H��H����H��H�5�H�����H�1 H�5��H��H���H�;�����H�����H�5����H�;�H�>�H�5����H�;1�H��H�5���H�;�H����H�5���H�;�H�`�H�5v��H�;�H�����H�5h�i�H�;�H�:���H�5T�N�H�;1�H���H�5K�6�H�;�H���H�5=��H�;1�H���H�53��H�;�H�$�H�5$���H�;1�H��H�5���H�;�H�A�H�5��H�;1�H���H�5���H�;�H���H�5���H�;1�H�F�H�5��j�H�;�H��H�5��O�H�=����H�=�H��2 ���H�=�H��2 ���H�=hH�o2 ��H�=@H�T2 ��[H�?2 �f.�@��SH�5t, H�� dH�%(H�D$1��+�H�5D2 H��H��tlH��. H�8�
�Hc��H��H��H�L	H�$Hc��H�L	H�L$Hc��H�L	H�L$���H�T$dH3%(u+H�� [�D�H�=���H��H��1 �t������ff.���SH���s�H��[��f.���H�5�1 1�1���ff.����H�5�1 1�1��|�ff.����H�5E1 1�1��\�ff.����H�551 1�1��<�ff.����H��H�5)1 �dH�%(H�D$1�H�GH�?H��H�$��H�T$dH3%(uH������ff.�@��H��H�5�0 �dH�%(H�D$1�H�GH�?H��H�$��H�T$dH3%(uH�����ff.�@��H��H�5�0 �dH�%(H�D$1�H�GH�?H��H�$�9�H�T$dH3%(uH����/�ff.�@��H�OH�5�/ H�?����@��H�OH�5�/ H�?���@��H�OH�5�/ H�?���@��H�OH�5�/ H�?��d�@��H�OH�5Y/ H�?��D�@��AWAVI��AUATI��US��H��xH�T$HdH�%(H��$h1��D$|�n��D$$�E�H�5�L��H�D$0��H�����HDŽ$�����
����I�$H��$�����1�I�L$H�L$h����H��$�H���XH�|$HH�5�( �Q�I��H��H�D$�A�L���I�H�5�. H��$������M	H�5.. L��$�H����
1�1�L���I�H���Q
�J�A����D9��T
D9d$$�I
H�=����A9�tH�=
��1�A9�@�ƍ4vL�t$L��$�L����H��$�H�5L���d�H��$L�|$|H�D$H��$0L�53H�D$fDH�|$H���[����6
Hc�$�Hc�$�H�=���H��$Hc�$�Hc�$�H�t6H�TH��$H�t$H�L	H�DH��$L��H��$H��$ �S���$�
�:��$�Ic�L�>��@H��$�H�5- H��$�������	H�5�, H��$�1�1���H�D$h���f.�H��$�H������t$$H��I���k�H�t$0H����L��A���H��$�I��H��t$�z��t$$H��I���+�H�t$0L���N�I�ă�$�Hc�$�H��$0H�=����H�L��$8H�t$H��L��$@H�T��H��$PL��H��$HfD��H������|$|��������f�L��H��H�=S����ѐH��$�H���W���t$$H��I���k�H�t$0H���;L��A���H��$�I��H��t$�z��t$$H��I���+�H�t$0L���N�I�ă�$�Hc�$�H��$0H�=���H�L��$8H�t$H��H�TL��$@��H��$PL��H��$H�����H��$�H��$��+��t$$H��I����H�t$0H����L����H��$�I��H���2���t$$H��I���^�H�t$0L����H��$�I��H����L�D$(�s��t$$H��I���$�L�D$(H�t$0L��L�D$(�=�L�D$(I�Ń�$�Hc�$�H��$0H�=&���H�L��$8H�t$H��H�L	L��$@����$�L��$HH�H��$PL��H��H��$`��H��$X����f.�H��$�A�H��t,���t$$H��I���Y�H�D$0H��tL��H���t�I��H��$0L��H�t$H�=
���L��$8�]���DL��H��H�=�����F���fDL��H��H�=�����.���fD���$��H��$0HE�H�t$L��H�=����H��$8���fD�C��H�D$(H��$�H���-HcPHc0�1�H�TH�t6� ��H�D$@L��$�M����H�D$@���$�H��$0H�t$H�=����H��$8H�D$(H��$@�HE�L��H��$H�F���fDL��H��H�=S����>��H���&��|$|���3���H��$hdH3%(H�D$H��H��x[]A\A]A^A_�@Hc�$�H��$0L��H�=.���H�t$H�DH��$8����A�H��$�A�H���8�������t$$H��I���?��H�|$0��������fDA�H��$�A�H�����F���t$$H��I�����H�|$0�������fDH��$�A�H��t����t$$H��H�D$(���L�D$(H��$�A�H�������L�D$(�����t$$H��I�����L�D$(�s����L��$�M9�����H�l$P�l$$H�\$XH�\$0L�|$`�f��{����H��I���.��H��t|L��H���N��I�|$�I��H��t'�G����H��H�D$8���H�T$8H��H�����H��L���1�I�����H�|$(H�����M9�tHI�<$H���s���A�I�|$�H��t�������H��H�D$8���H��H�T$8t��fDH�l$PH�\$XL�|$`�
���@���H�D$@���A�A��;���H��$�H��t��n���t$$H��I�����A����@H��$����H��$�H�=	H��$����H�=�A�����H��$�A������9D$$�PA9��YA9��,����H��$�H������H��$�H��$�H��$�H��$��H�|$H��$��0��H��$�H��� uhH��H�p��H�|$������fD�{�����I�$H��$�H��$����@���H������H��$�H���������H�PH�p�H���v��A�����D9������������	H�=����H�D$h��H�=����H��H�]# �;���H��$�����H��$�����H��$������H�������H�D$H�XHH�@PH�kH�D$H�XH��" H����H��H�q H�8���I��H�D$hH��$0Hc�H�DH��$8Hc�H�\$H�DH��$@HcCH�{H�DH��$H�H��t����H��$PH�D$H�x8�H��t����H��$XH�A" H��tUH��$0�H��L���l��L�t$H��L�����L�����H������H�=U�K��H��! �����H�=D�.��H��! �H��$�t
H��$���������\��������SH�� �����H�x H���~��H��[�f���UHc�H��SH�TH��H��(H�5�! dH�%(H�D$1�H�L$H�T$��m��H�H�D$H��u#H�t$dH34%(�uLH��([]��H�|$���H�L$H��� u!H����H�H��t�H��H���W���DH�Q�����D��H� SH�5H�H�+ H�8����H�$ H�5���H��H����H�;�H�5����H�;�H�5����H�;�H�5����H�;�H�5����H�=����H�;�����H���H�5��{��H�;1�H���H�5��c��H�=���H�=xH�I  ����H�=jH�.  ����H�=�H�  ����H�=�H�� ���H�=�H�� ���H�=�H�� ���H�=H�� ���H�=�H�� �o��H�=�H�q �\��H�=�H�V �I��H�=�H�; �6��H�=�H�  �#��H�=�H� ���[H�� ����H������@��UH��H��SH������H��H�5�H��H������H��H��[]�ff.����ATH�=gUS���H�-� H�5_H��H��H�U���H��H�5RI�����H�UH�5HH��H���g��H��H�5;H���U��H�� �H�5'H��H�H�5�������[L��]�H����H�5
A\������SH��H��H�|$H�T$����H������H��H���2��H��[�ff.����SH�=x���H�5�H���0��H�5H��H�� H��H����H��H�5�H�����H�� �H�5xH��H�H�R���[�����H��H���Psychlibyaml_version%stag tuple must be of length 2HandlerEmitterinitializestart_streamend_streamstart_documentend_documentscalarstart_sequenceend_sequencestart_mappingend_mappingaliascanonicalcanonical=indentationindentation=line_widthline_width=iowritePsych/emitterMark@handler<unknown>external_encodingUTF-16LEUTF-16BESyntaxErrornewParserANYUTF8UTF16LEUTF16BEpsych/syntax_errorparsemarkreadpathemptyevent_locationPsych/parserH��`��x����������`�mesgClassLoaderVisitorsVisitorToRubybuild_exceptionpath2classYAMLTreeprivate_iv_get;�1����x������������((��@X��X���p��������(���X����� ���T����x�������8�����H��|�������X��LH�������HH�h��8��X��x���������x�0��L��`�t8��X��x�����8�������H���h��|(������������zRx�$����FJw�?:*3$"D����\ ���H@t
Ax���NHA����%HW����%HW����&HW���E�L���+E�e$(��NE�M�D rDA<P��+A�M
A0Xd���F�A�A �G�`
 AABE0����eF�H�A �G�B
 DABA0�,��eF�H�A �G�B
 DABA0�h��qF�A�K �G�K
 DABA0(���eF�H�A �G�B
 DABA(\���IE�A�N c
DAD(���IE�A�N c
DAD0�8���F�A�D �N�a
 AABB0�����F�D�D �D0m
 AABEH��AF�B�B �B(�D0�D8�J��
8A0A(B BBBILh��AF�B�B �B(�D0�D8�J�
8A0A(B BBBF\����F�B�E �E(�A0�D8�G�[�E�N�D�e
8A0A(B BBBAL����F�B�B �B(�D0�A8�J�
8A0A(B BBBJHh����F�B�B �L(�A0�F8�GP
8A0A(B BBBI�x��rE�e ����E�K0�
AF���E�L��(��<��P��d��QH C
A���QH C
A�@�QH C
A��������������L���
F�B�E �B(�D0�A8�I��
8A0A(B BBBEl�'E�a(��E�G�L@V
AAH����L���h�$�d�4E�G�D ^DA(|�F�H�A ��DU<�4E�G fA\ �tE�jGNU��-`-�l KW /X�A��S!
$V�l �l ���o`��
ip �0��	���o@���o�ob���o�m 0!@!P!`!p!�!�!�!�!�!�!�!�!"" "0"@"P"`"p"�"�"�"�"�"�"�"�"## #0#@#P#`#p#�#�#�#�#�#�#�#�#$$ $0$@$P$`$p$�$�$�$�$�$�$�$�$%% %0%@%P%`%p%�%�%�%�%�%�%�%�%&& &0&@&P&`&p&�&�&�&�&�&�&�&�&'GA$3a1!1VGA$3p1094�-$VGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�.oUGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�-�UGA+GLIBCXX_ASSERTIONSpsych.so-2.7.8-141.el8.x86_64.debug;	��7zXZ�ִF!t/��O�]?�E�h=��ڊ�2N�	�����c�`U@^M�me�3�r7N��,H�{5&�<�
�,j46i�{�b��¬����Z�=n�FU��'��[�+��S�>4�d���6�m��f����S���7�]��$�g�!�e}=�Lk
����
!�{#d��R�@1�\O<�3X��dF4�U�:/vlɼb/,`=�U�IPN��<������,�^s��X���Ʊrg�^���2zĿ�S��e�0�,Z��R�\
��k��AU��Y�h\�g�ʓ�$�{�x�Et��}��^�™���'��곃��^�T:*����?��.�11�ϱ?��
K�7ɮߥ�ZŐ	c�k-3Ͻ�<S�4�*�Tu��d��2D@�O�� V�K%c�e^&���$ ,
�1b�Q����0��K�g�U�Hk�: |�
�#׉e\�s�z3�Z���L�8��<0��z\b=��7J�\��k�0Ec�)��f�<g^&���Б��
����R2�':���Gf|�I��C]��ՏgJ��
����j�!�~���E������~Al�VO����#���tV�|��պP�:�mRJA��cA�/T�d]�����H�i�J��g#*S�7�ayw%�S�vEv�q������3�5��I�h��	��e��a�z�+3JF�bܘF�%B=:ks����.��
G&�\8�=ϯ����V�i�N������ͺYFf&�09.�[�`�7oθ��+���E���O"!��&d
�y�:���$�d��?�ͧ`+2�]1��Ie��8���$j'�¹BW;��]0sdt$p�w�-�;�|5�s8S<G�	/��Z½�"gH��ȸ�+o*�W�~+е{l�u�A��AFI������47�t�β�ā�B����
���|Je!2�y/���Nz��S/ ��][wE��-F$�G�1����	����@-D(�R��)�Ɵ�ew�i�����=���n�Ia�7�yjA�%�gG��x����(a�i����]���U�A��s�ڷ���S���X60zf��#��NڇP�m�(�r�j3���kiB��[��;7�`��-��VQq�yj`)Y2!9�"�>��Px�'��EP�p�puj5l���[�@�2r.56:y#l�*�z��1�o�j�4�b*�R�,�<���s�	�(�4tѱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o```(��8
0��i8���obb�E���o@@@T���^B00�h!!c ! !�n''�w�,�,4)}$V$V
�4V4Vd��X�X��0Z0Zx��a�a ��l �l��l �l��l �l� ��m �m��o �oX�p p�s s���s`s
w(Dw�@|+PKKH[}�X{HVHV.lib64/gems/ruby/bigdecimal-2.0.0/bigdecimal.sonuȯ��ELF> -@�N@8	@P0P0 �<�<!�<!x� h=h=!h=!��888$$000000  S�td000000  P�tdppp��Q�tdR�td�<�<!�<!ppGNUj7����h�	Kѝ^z��
�nKl�Ah@lqBE��|��X��=��|�!i��؁�9�w�qXF��Z��-E� &;���nZj����K���0~��v
&4�W�Gs� >�����^��V"\��p"�"���1@~�����Jg��T�e�"�, E���%F"��w#�Q��C!o D!�����(D!� d�$D!UC!�C!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizegOne_ABCED9B4_CE73__00400511F31Druby_xfreerb_thread_currentrb_thread_local_asetrb_inspectrb_str_duprb_str_catrb_exc_new_strrb_exc_raiserb_obj_classrb_class_nameruby_xmallocmemsetstrlenmemmove__sprintf_chkrb_thread_local_arefrb_num2ushortrb_id2symrb_hash_lookup2rb_check_string_typestrncasecmprb_eArgErrorrb_raiserb_sym2strrb_yieldrb_protectrb_jump_tag__stack_chk_failrb_num2ulongrb_uint2bigrb_eFloatDomainErrorrb_fatalmemcpyrb_bugruby_xreallocrb_check_typeddatarb_keyword_given_prb_num2intrb_empty_keyword_given_prb_free_tmp_bufferrb_fix2intrb_error_arityrb_big_packrb_sym2idrb_eTypeErrorrmpd_parse_special_stringstrncmprb_str_tmp_newrb_str_new_cstrrb_str_resizerb_warnrb_data_typed_object_wraprb_freeze_singleton_classrb_string_value_cstrrb_cBigDecimalrb_eZeroDivErrorrb_num_coerce_binrb_intern2rb_assoc_newrb_rational_numrb_rational_denrb_typeddata_is_kind_ofrb_big2strrb_float_valuerb_funcallvrb_int2bigrb_str_new__errno_locationruby_strtodrb_float_newrb_ary_new_caparb_ary_pushrb_Rationalrb_memhashrb_num_coerce_reloprb_num_coerce_cmprb_eMathDomainErrorrb_big_cmpruby_snprintfrb_num2longsqrtrb_opts_exception_prb_cFalseClassrb_extract_keywordsrb_check_convert_typerb_cFloatrb_cIntegerrb_cSymbolrb_cTrueClassrb_cNilClassrb_alloc_tmp_buffer_with_countrb_hash_newrb_check_hash_typeInit_bigdecimalrb_cNumericrb_define_classrb_undef_methodrb_str_new_staticrb_define_constrb_define_modulerb_mBigMathrb_thread_check_intsroundrb_dbl2bigrb_define_global_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.3.4GLIBC_2.14GLIBC_2.4/opt/alt/ruby27/lib64� ui	��ti	�����ii
�ui	��<!�.�<!�.�<!�<!�<!��<!��<!�=! =!�	0=!p08=!�.X?!`?!h?!qp?!x?!�?!�?!m�?!!�?!r�?!1�?!3�?!6�?!>�?!J�?!Y�?!\�?!]�?!`�?!c�?!j@! @!(@!0@!8@!@@!H@!P@!	X@!
`@!h@!
p@!x@!�@!�@!�@!�@!�@!�@!�@!�@!�@!�@!�@!�@!�@!�@! �@!"�@!#A!$A!%A!&A!' A!((A!)0A!*8A!+@A!,HA!-PA!.XA!/`A!0hA!2pA!4xA!5�A!7�A!8�A!9�A!:�A!;�A!<�A!=�A!?�A!@�A!A�A!B�A!C�A!D�A!E�A!F�A!GB!pB!HB!IB!K B!L(B!M0B!N8B!O@B!PHB!QPB!RXB!S`B!ThB!UpB!VxB!W�B!X�B!Z�B![�B!^�B!_�B!a�B!b�B!c�B!d�B!e�B!f�B!g�B!h�B!i�B!k��H��H�!!H��t��H����5r!�%s!��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1�������%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%}!D���%u!D���%m!D���%e!D���%]!D���%U!D���%M!D���%E!D���%=!D���%5!D���%-!D���%%!D���%!D���%!D���%
!D���%!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%}!D���%u!D���%m!D���%e!D���%]!D���%U!D���%M!D���%E!D���%=!D���%5!D���%-!D���%%!D���%!D���%!D���%
!D���%!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!D���%}!D���%u!D���%m!D���%e!D���%]!D���%U!D���%M!D���%E!D���%=!D���%5!D���%-!D���%%!D���%!D���%!D���%
!D���%!D���%�!D���%�!D���%�!D���%�!D���%�!D���%�!DH�=�1����H��H�=��1�L�D$L�L$H�$�#���H��H�$L�L$L�D$��=L����H�=Q�1����H�%1�H�='�������H�D$ 遡1�H�=������H�D$ �i�H�$H�=*�1��T$���H�$�T$�w�H�$H�=G�1��T$���H�$�T$H��t	�։��Y�H�D$ I�$H�D$�]��H�=�!H��!H9�tH�&!H��t	�����H�=�!H�5�!H)�H��H��H��?H�H�tH�U!H��t��fD�����=m!u+UH�=B!H��tH�=�
!����d����E!]������w������H�GH��(�ff.�@���!�fD��H�����B f���*f����f�����f����f�����L�Bf�H�M��t6�J$f���H*��Y
���X�I��v�J(f���H*��Y
u��X�H�RH��H�f��fW�������H�1�H���H��H��H��f���!f.��ztH�}!��^����!�1�H��H���H��H��H���H������H��f���H��t���f��ff.�@US��H��H�-q!������H��H��[H�TH��]����O f��t'f��tQf������y1�f���t�f.��NaN��@f��uJ������t|�0.0�Ã�t[��u�+H��H�Infinity�FH�����-0.0��F�H�-InfinitH��yf�F��@� H�����+0.0��F�� 0.0��F�SH��H��@��u	H�����u4����H�������!H�5��H���)���H��H���.���H��������H���)���H����@SH������H��1�H������[��H��tS�G �Pf��w�I� H��s�DH�W�>FH�D�u�H�OH�D�H��xH9�s�H)�H��H��@��f�H��H��H��H)�H��ff.�@AVAUATI��USH������H��t^I�����tTI�>(1�1��1fD<.tD���<Et3H��H�jL9�w@L9�s!H���H��t<-w�I��H�js�L9�r�[]A\A]A^ÐH�j1����I��H�{H��L��H)�H������ 1��AWI��A��AVAUATUSH��H��(H�T$��H�<$H�t$�4�����u0f�{ x8A����H�D$A��u+H��H�@�+��H��([]A\A]A^A_�A�-I�A�0.L�x�E1�f�H�$A�����H�@H�D$H���?f�H�$�	��F�l�$�D��1���A��A������tOH��t
�A9�r�D��1�H�
d�L����H�����I��1��y���L����1�I��f.�I��L9d$�q���H�4$A��H�F�N$L������w���������I�����9�w�@��0uI��A�A��0t�1�H�
���L��H��������H�|$�����H�t$H�|$H��([]A\A]A^A_�{���H�t$H�F� ���H�4$�.H�F�N$L�������U�����SH��!���H��H�����H��tH��[���f�H�a!���H��H����[�ff.�f�H���VUSH��H��H�=�
!����H�ߺ4H���a�H��H��4��H����<�2�u$H�����tH��H��������H�݃�tH�����H��H���H��H��� ��H�BH�ZH����H��u8�H�5 �H���������H�5��H��������H�	!H�8H��tnH��H�5�1����DH��[]���DH��H�Z��H���w����H�5��H���g��u��H��[]���;���H�5��1��z�f.�H����H��H��H����f.�H�i!H��H�8�H���fD�듐��f�SH�h!���H��H���h�H��tH��[��f�H�9!��H��H���t�1�[���USH��dH�%(H�D$1����H�T$�H�=�!�������H���^����|$��uH�L$dH3%(H��uH��[]�����B�f�SH��!��H��H����H��t"�tH�[�f�H��[�'��H�Y!����H��H����1�[�ATUSH�����H��H��������?H9�w*H�\L�%!��H��L��H���c�H��[]A\�H���p�H����ff.���USH��dH�%(H�D$1��!���H�T$�H�=X!H����H��H���]����|$��uH�L$dH3%(H��uH��[]������PXH�5g�H��H�!H��H�81���ff.�@H���G f��tf��t-f���tH������H�=��������H�=�������H�=������ff.�@PXH�5��H��H��!H�81���f�UH��S��H���P���f�� t*f��t5H�H��rH��H�=��1����@H�������H��1�[]��S�G H��f��tf��tMf���t'H�[�f�H�5����o���H�[�f.�H�5���O���H�[�f.�H�5����/���H�[�f.��G �Pf��w�IH�����H��s��F �Pf��vKH�WH�NH�GH9FHCFH9�t�H��H)�H)�HH�H�s�H��H�5������H��H���IH�����H��s��D�F f�����R f����f���@��f��A��D	�f��tef���t_@����������L���f����A��G$H�5��H�GfD�G �����@��tS������t���f����f��~N��1��G$H�5��H�Gf�O ����@������tbf���_���f�������G$H�Gf�w H�5!���W������f.��Hf�����d���f�f����f�����Df������<���f.��Jf�����$����f��~Lf��~L��G$H�Gf�W �a���f�f��~f��������f���$�������f��~�������G$H�Gf�G ����ff.�f�H�OL�1H��~;H��~'I�@H����H��������H�H��H����L�G��DH��y�I�@H����H�AH��v�H��H�H��H���f� �G$H�G��f�w H�5�������f�M����H��������H�I��H���N���fDf� ~1��G$H�Gf�W H�5H���h����������G$H�Gf�G ��fDM��~#H��������H�I��H���
����'���DH��H�I��H���������f.�H��H�I��H��������:���f������f�O ���f��O �Af��w#�]H��s���G$1�H�G�f�H�W�f.�H�B�D�D�$E��u2H��H��u��G$H�Gf��~f�1�f�W �f.��w$H�W��urU1�SH���H��H�u�L�$��t�H��tH)�H��H��H�W�����uH��[]�f������f�G 1��H�CH�t�(H�{$H�������ʸ�ff.�f�SH��H��uH�GH�p�H��tHH���A$�P�Q$���ɚ;veH�����D�$�P�T�$H�����ɚ;vA-�ɚ;�D�(H���uھH��������t�C$�H�C[�H���f�H���X����[ÐAWA��AVAUA��ATUSH��HH�GL�$�I���L��L�_H�r�q�qH��L��H��?H)�1�I��H�T$I9��y�D�$A�H�JH��L���$H��H��I��H)�H�D$8I)�L��H)�H�D$M����E1�1��f��؍�H���L9�|�k�d1҉D$�$��A��1������D$$D������H���������A)�I9�vT�t�$��K���	���i�ʚ;9����K�#D�t�$���	����i�ʚ;9���H��I9�wً$1�1�J�|$L�D$0�t$H�D$L�L$(�$H��������fA��L�L$(L�D$0wiH��E��Jc�H�>��@f� �G$H�G�NA�1�fD� H��H[]A\A]A^A_�D�$E��t1�f�} ���DM����1�D��H���I9�}�ɚ;�nM����f�} H�E�E$H�E�7�f�M H��H�EM��tYH���8��8��L��H��H��HUH��I)�t8�U$1ɾ�KfD��ҁ��ɚ;v��	H�E����H��I9�uۉU$H��H�[]A\A]A^A_�@�F�f������L�_1�M������G$I��L�\$�A��E1�A��$H�D$8H�D$�t���fDH�D$1�J�|$L�$L�D$H��������fA��L�$L�D$�����H�W�E��Jc�H�>��D�����f�U ����f�B�\�$H���������D$$A��w�B���D�\$$E���4���@��M���-����f.�A��������@B�D�$H�t$H���Z����O���DA�����1�fD�w ���fDD�4$�D$$E1��D$
����<$�������f�} ������D�,$E��������Y����A���N����x����t$$���<���H�|$8u1M���d���B�D� �������Q���A�������8��������؃������#���ff.�D�W$E��tWH�GA�����H��H��L��I)�D��A����A��	w	�D�щ�I��A�����	w�I�P������f�1��ff.�f�ATUH��SH�����H��I�������tbM��tMH��t@H��H���8��8��I�T$H��H��1�H��H9�w&��[L��H����]A\�-���DH�]�f�1�[]A\�f��������f�AVA��AUI��ATA��UH��S�G�L��H�����I�����u5E��t0f��w*H���Hc�H�>��f�A����vf�} x []A\A]A^��A����v�f�} ~�H��L�����[H��]A\A]A^����DA���E�#w��DA���d�w��DA���E�#w�A��e�A����w�A��t���A����w��j���f.�f.��&f(�fT
:�f.
����f��f.��ATf(�USH�� f/�wfW
���%��f/������1���^�H��f/�s�L�g1�H��H�$�T$J���L$�D$���L$f���T$f/���M����1���I9����Y�f��H,ɉʉL�$H���H*��\�f/�w�I9�vd�l$L�`�����f/�vj�YʺL�cf�S H�k�H,ɋT�$�f������G$H�Gf�O �f��t$1�I�D$�f/��������Y�f�S 1�L�cH�k�H,�M��u�H�� H��1�[]A\�G����f/��G$H�GvA�fD�G ������f�w �fD�%��1���f/��j���@�Y�H��f/�w��S���DE1��G$H�GfD�O �1�����AVAUATUS�F H��f������f����f������Pf����H�VL�nI��H�W���f����OŅ���L9oLFo��M�������L�oI��f�G ����
t.M9l$��M�1�A�L$$M��tA�T$ L��H�����L�kK�D�[]A\A]A^����C$��f��H�CN��~S�1�f�s []A\A]A^���G$1�H�G1�f�{ []A\A]A^�H�$H�v$L������O��������1�f�K �t�������G$��f��H�GN��~+��f�W �<���1�H�����L�k�$���D�����f�G �����DATI��UH��S�Ӻ
�:���H��v��L��[H��]A\���f�[1�]A\�f��N$��tyH�FH��~pH�V�N H9�ssH)�H�GH�GH9�HG�1�f����������H�Wf�G H�FH��tH��H�H��L���L�$A�L�$H��H9�u���f�����fD�G$H�Gf��~�f�W �f������f�G �fDAWI��AVI��AUM��ATI��UH��SH��L�D$�)�I�WH�|$P�E$H�L$XI�^H�uI+_L�M9VMCV��H�~�L�D$I9���H��I�uH���8��8��H��I�FH��H;EsRI�$I�OH�EH�4H9���H�KH9���H)�H�H�I�H�H9���A�D� H�L$XM�U��/@I�<$H9�r�A�D� H�L$P�뛐I�I�FI��I�$M�UI�FL�UH��H�E����H�����HD�H��H��[]A\A]A^A_�DI�M�U��I�����M�U�AWAVAUA��ATI��UH��SH��H��HdH�%(H�D$81������Ƀ���1҅�tOA�T$ �M �r�A��f���uef�����C$H�Cf���tA��fD�[ @H�\$8dH3%(H���qH��H[]A\A]A^A_�f.�f���_E1�A���H�EA��G�t6�I9D$���*M�D$H�}I9�H��IF�H��t5�E$A9D$$�|��1��f�D�\�$E9\�$wd��H��H9�u�I9�wP��A��1�f��M���@���f��NǍDp���u+A��C$�	H�CfD�S ����@M��1�f��A���E1�f��fD�K A��H�L$ G�|?�E��E�|G�H�D$fE����PL��H��H��H�D$ PL�L$@L�D$8���_AX�D$H����L�D$(I������L$L$H�|$ H�t$0�L$M��t3J�H9�r�f�J�H9���I��H��B�T�$�T�$M��u�H9��dI��I)�I�H���D�$I9�u�1�H����H��I��A�D�$B�D�$1�H��tnJ�L� H���f��1�H��H��tKH��AD�$=�ɚ;v�-ʚ;����DD���f��DN�A����v���fD�k ��{���I)�M��tBD� 1�fA����������f�C H�C1�H��t�T� �L$1�H���9���H�CH���,���@PH��H��L��H�D$ PL�L$@L�D$8�	���Y^�D$H����!L�D$(I�����t$�L$�9�r)�1҉t$H�|$ J�4H�L$0H9��nM��tMA�ʚ;A���fDJ�4A�H9���I��D��H��B+T�$D)҉T�$M��uѺH��H9�v'H��A�ʚ;D��H��H��)к�D�$H9�r�E1�H9���@H��tFH��H)�L��H���@)�1�A�t�$H��t"H��A�t�$9�s�ɚ;���f�H)�H��t)T� M9���1�fA�} E�����D�D��1�A����������f�C �E���D��H��H������H�CH���}���DI��L���p���D�L��H�����H�CH���K���vfDH��H��A�D�$�D�$H9�r�M�������L��L��H��H��L�<�L��M�I��!@)кʚ;D)�A�D�$H����A�D� H��D�L�$E�D9�r�)�1�D)����8E1��H��H��A�T�$�T�$H9�r�M���H��L�L� L��L)�M�T�1��f.�A�1�I��H��t*A�T� H��T�$�=�ɚ;v�-ʚ;A����DL)�L)�I���B���f.�L)�L)����DfA�|$ ~w�f�S ���f��L��H���0����p����L��H���������H��H9����������D���_����y���f.������f�C �,���I��1�������AWE1�I��AVAUATI�̹UH��SH��H��X�F$H�FfD�V L��H�T$@L���������A�W A�L$ �r�A��f�����f���f���`f���`��E$H�Ef�E H�|$@A�D$ f� �f������C$H�Cf�S f�H�EH��H��X[]A\A]A^A_�f����I�D$H�D$HH����H�EH�|$@H�D$0H�wH�CH�D$H9��H���C$H����H�V��DH�ȋL� �L�$H�HH9�u�H�D$H9T$v�H���D� H9�u�1�H�|$0H�T$0�<@H���D� H9�u�A�D$$H�D$8Hi�ʚ;H�|$HH�D$ H�D$v(A�D$(H�D$8HD$ 1�H�t$ H�|$H��H�H�D$H�D$H�t$0H��H9�HG�H�D$H����H�D$HA�I�SZ��/�DH�<�L�p�H�|$(f�J��I�uH�<�G$����Hi�ʚ;D�_(L�H9D$ ��H9D$��H9t$0�%1�H�t$8D
(M�L$M�I��L;L$����H�|$(L��B�L�$E1�H��L��L��M��GfD��ʚ;F�D)�L�$H���L�$E��tD9�se��ʚ;D)�A��L�$L��H)�I9�r\A�t� 1�I��H���ɚ;vH��H��	H��I��H���Љ�Hi�ʚ;H)։�H9�r�)�A��fDL��D)�E1�H)��L�$I9�s�D)��L�$B�D�$J�T� =�ɚ;v-ʚ;H���B�B���B=�ɚ;w�L;l$�����H�D$0�H��H�EH�D$@H�@H�E�N����]H��X1�[]A\A]A^A_�DI��L;l$�B����1�H�t$D
$I��I�D$M�L����L�\$HI�UI��v<�,A9|$,�B���r,M��K�<+I��O����E�T�$D9T�$����w	H��H9�u�I�D$L�P�O�LL9L$����L)�L��1�M���&fDʚ;�D)��D�$H��L��H)�L9�w A�|� �D�$D�7D9�r�)�1�)���fDH�A$���A$���f���`f���`A��E$H�EfD�E H�5����j��H��X[H�]A\A]A^A_�I�t$H��H������������H�|$@A�D$ f� �Lf������������f�E H���O�H�D$L�|$@H�߾H�CI�GH�C�|����.���1�fA� H����������f�C ������f�������������E$H�Ef�u ���A�|$$����I�|$�����L�|$@1�f��H���T�L����fA� �z���������C$H�Cf�K �~���f�������������E$H�Ef�} ���E1��E$H�5��H�EfD�M ����H��1���f������f�������������������A�D$$H�D$8Hi�ʚ;H�|$HH�D$ �������f���H����USH��H��H�FH�4�$�v��H�SH��H�PH�CH��H�EH�CH�E�C f�E �C"f�E"u
H��H��[]�H�}$H�s$���H��H��[]��ATUH��H�5�� SH���&��H�5�� H��I�����H9�tH��L���T���H�C H��[]A\����ATUSH��dH�%(H�D$1�����H�T$�H�=�� ���W��H������wIL�%:� �����H�TL��H���z���|$��u.H�L$dH3%(H��uH��[]A\�fD�[����������ff.�@��ATI��U��SH��dH�%(H�D$1��
��H�H�\�N��H�$��tr����tA1�M�$$����H������u$I��tL��A��u\�������Hc����H�L$dH3%(H����H��[]A\���;����x4H�$u�H��t�H���d���f������f�H���H���s���H�<$tH���4���1�������H��� H�5�H�81��n���I��f�H��dH�%(H�D$1�@��tv����u^H��H���H��t1������t'@��t!�����
u0H�����H�$H�Ѓ�H�L$dH3%(u.H���@1���u�H�H��H�Ѓ���1�H�����t�����ff.�H��@����@������������H����@��tH��4������������H;�� ��H;y� ��H;d� ��H;O� ��H;:� ��H;%� ��H;� ��H;�� ��H;�� ��H;�� ��H;�� u/�H����H������C����^���Ѓ���v�H��� H�5V�H�81�����봐��f���f���f���y���fD��i���fD��AUI��ATUS��H��dH�%(H�D$1����H�$��������M�e��ug�L��A���������Ä��������e��H���+H�����Ѓ������?����H�\�
f�I�m��~�H�<$tH��������������������{������H����H��t
H���b��t�‰ǃ���H����D�����������t��%����H����E���������t��%����H����E���������t��%���H����E��i���t����H�\�f.���H�\H�L$dH3%(H����H��[]A\A]�fD���������H�$M�e���uH���F���H������9���I�m��~����f.�H�-A� ��H�\���H��H��H���~���a���H�j� H�5��H�81����H��� H�5K�H�81�������@��AVH�5f�E1�AUATL�%�� UH��M��S�H��H�������t)I��I��I����I�]I�uH��H���t����u�H�T�
��t@����	��v�� u�H���
��u�(�[��K�vA�T�H�@�@$H�@��t-��t�����f�P �	�1�[]A\A]A^þf�p ��1�f�H ��f�AWA��AVAUATUH��SH��H��8�L$�0��H�}H���8��8��I��H��H��H��H��	I��I��H���n�H�މ���	��w�H�������	��v� t�#t]M��u0H��H�4$���H�4$H��I��tHH��8L��[]A\A]A^A_�fDH���8��8��I��L��H��H��H�BI9�LG��H���f�H��H�t$H�D$���H�x���H�t$L�D$H�H�D$ L�hH�$�� t	H�D$ L�h��P�A�E���/�$H��1��1�H��I�|I�>��$f���0��	�dH���LH��I�|H������&	E��uD��A��	A��v4�� t/��_u�H����L������9wI��r�E�����M��1�E1�L�l$�J�T%H�L$H���8��8��H��H��H��H��M��LD�I9�LB�J��$H�������<$H�L$I��L�p�@$H�@�A�fD�P I�@$1�H�S�H�L$H��L�$H�D$���H�L$L�$H���aH�D$�<-�SH�D$1�<+u	H���H9��0H�D$1�L�$I��������H�H��zDL��H�H��H���H��I��H��	��L�H��M��H�L��A��0Mc�M)�I9���H�L�X�H��/H����I9���H��H9��L��H��u�H�E1�1���<-������؉$H�F����DA�DE����E1�1�E1�E1�H�D$H��u	M����L�|$K�D
H�D$M�����L�A�
���.�OH�D$(E1�H�D$A�
���D��!�E1�1�E1�E�D��A��	A��v�� uH�t�H���ƒ�	��v� t�����E���_���H���T$(����>���M���5���f.�D�\$E���
���H������H�5�H��H�)� H�81�����E��u�J�<�$��1��I��L�p�@$H�@f�X ����$H��A�E<-��D$1�<+u	H���I���8��8��E1�H��A��1�G�\�f�L�L��H��?H��L1�H)�H��I��H��H��H��H��H9����$����H�t$1�H9���@�H9�v/H��w)1�D�<�A�D
H��H���DxЉH��wH9�w�H9���H��M��tXM�T�$1�fDL9��H���A�
H����<�A�H��H���Ly�A�
H��wL9�r�L9���I9���I�V�H��wI���B$��H���H��	u�B$L��I��?M�pL��H�r�q�qL�$H��1�L)ʃ|$��I�P������fA�@ ����L�$H�|$ 1�L�$�9���L�$����H��H��I9������1�����H��I��1�I9�������&����H���7����H������L�r����A�I��H�I!�M���hL�JL�XK�L
J�<I��H�L$�A�
��+����L�XH��J�<D�I�|1�D�E��tXE��uA�ƒ�	����A�� ��A��_��A�ƒ�0��	�wH��F�TH��I�|I��D�E��u�A��^���H���H�D$�������f�M��~;L��H�I��H����������H�|$L�$�$I��H�����H��H�I��H�����A�����fD�H ���H9�w�fD��tA�|
0��H��H9�r�M��t"��t1��	D��tA�<0��H��L9�r������_E���V�|$A�@$I�@���fA�x H�5���L�$���L�$���H���D$��������H��H��E1��I�|H�T$���tEE��uD��A��	A��vm�� th��_tB��0��	��H���LI��I�|H�����u�E1�1�E1�H�D$(���@M��tD�LD��A��0A��	v�E�������L�|$�1�L�l$M����H�|$L�$�$H��H���E���s���L�|$K�D
H�D$M����1�M��������|$A�@$I�@���fA�H �N���H�|$L�$�$I��H����H��tB�DA�ƒ�0��	�J���E�����L�|$�M��;���E1�1��`���E1�1�E1�E1�H�D$(H�D$�z��������fA�p ���������fA�P ���L�����H�t$L�$�$H�<.���M�������H��A�����H�D$(L����N�L��A�����1�E1�E1�H�D$�T���ff.�ATI��1�UH��H��H��� SH���a����L��H��H���Y�H�C H���u+H�����t"H��у���tH�р�H�{H�t��tH��[]A\�f�H��H�D$�3���H�D$��ff.����UH��SH��8H�t$H�|$dH�%(H�D$(1��T��������H����:����0��	��1��@H����:t��0��	��Hc�H��H�Q���u�H�S�H��	H��HG�H��H������H��H�H�D$H��v"H���8��8��H��H��H��H9WvH��H�W���H�t$(dH34%(u9H��8[]�1�H��H���k���H��H�H�D$��H�/� H�5��H�81�膵���a����AW�AVAUATUH��SH��H��HH�t$�M�����9H�D$�U �@ �Hf�������Jf������H�|$H�H�|$H���&L�eI���VH�|$L9���H�D$N�< H�CI��H��H�|$ H9��sH�EH��H�CH�D$H�p��������H�D$8H�D$f�} �@ ��f������������f�C N�,�1�H�{$L�����H�|$ L�{�sI�D$�L�t$ N�L+ E1�H�D$(H�D$I�SZ��/�DA��KH��H�D$I�G�H�D$0�M�~�L9l$��L�\$(L��H+|$H�D$I9���H�t$L�D�$�f�H��I��L9���A��t�$H��H��H��	H��I��H��H���ʉ�Hi�ʚ;H)�A1���ɚ;v���	��A����
i�ʚ;)�A�1��t�M��t�AA�L����A�A�=�ɚ;w%�z���f.��L�$щL�$���ɚ;�Z������	��A���i�ʚ;)��L�$H��H���u�H��I��L9��7���fDI��M��I��L9l$ ����H�|$8��H�����H�|$8�H���d��H���,���H�D$8H�@H��H[]H��A\A]A^A_�f���'f���'��C$�H�Cf�S H��H[]A\A]A^A_�K�<���H�56���I��H�EL��I�EH�D$H�p�<�����GL��茳��H��H1�[]A\A]A^A_�L��I��H�D$H��H�l$H�D$���H�|$�$����H������1�f��H��H���T��]��H�\$8����}$�����H�}�����f��H�t$H�����ҍT��!��H�\$8����f������������C$f�C �H�CH��H[]A\A]A^A_�H�D$0L)�L9l$(rL��I��H+|$����f�M��1�����f�������������j���1�H�����H�\$8�!���H�\$8L���%���AWAVAUI��ATI�ԺUSH��H�����H��hdH�%(H�D$X1��I��H�H�D$�؃���������H��1�H�������H��H����H�H�D$A�F f���+�K f���f����f������Qf�����H�5�� H�4$H�f����f�������f�����I�NI�FH�sH��?H1�H��?H)�IFH��H�CH1�H)�HCH�5��H9�HB�L�|�	L���[���K�|?H�5x�H��H�H�D$ H�$H��8���H��L��H��I��H�L��H�D$(�<��H�EH�5H�H�<�H�$H�H����1ɺH��I��H�L��L�L$H�D$0�l��L�L$H��L��L����������L��L��H������E L�L$��f���tfA�~ �C �<f���<M�$�I�mH�L$XdH3%(��H��h[]A\A]A^A_�H�����������������������I�FH�ߺH�4���H������f��t2f���t,��f�����H��� H�5�H�81�����fDH�-�� H�5Z��H�U���H�UH�5A�H��H�H�D$ ����H�I�$�I�]H�T$(����f�H�ߺ��.H��H���I���1�����f������H�P� L�ι����L���8��H��H������H�5]�H�<�H�$H�H������H��H��I��H�L��H�D$8���M�<$�M�u�e���H��� H�5	��H�H�$���fA�~ H��H�H�D$ ~Vf�{ ~V��E$H�Ef�U H�$H�5��H��w���H�I�,$I�E�H�T$(����Df�{ ~�������E$H�Ef�E ��H�5`������H�I�$�M�uH�T$ ���DH�50�����H�5�H��H�H�D$ H�$H��+������ff.����UH��SH��H��8dH�%(H�D$(1�H�L$H��H�$H�D$��H��u-�%H��H���}���H�t$(dH34%(u-H��8[]�fDH�$H�|$H�H�D$H�H�D$�R������K���ff.���UH��SH��H��HdH�%(H�D$81�H�L$H��H�$H�D$�R���H��uUH��� H��t)H��H���֮��H�L$8dH3%(ueH��H[]���H�=Ջ�ǯ��H��H�]� �H�$H�|$H�H�D$H�H�D$芽��H�<$H���~���H��H���s�����l���ff.��AWAVI��AUI��ATA�4U��SH�@H�H��dH�%(H��$�1�H�D6H�$A��tRA��� D�������I��tKA��tEI��4t?A�������w1H�f�Hc�H�>���I�����u�I��t	M��u�@����1�H��$�dH3%(��H��[]A\A]A^A_�DM����I��4�MM9�t�L���0�����H�����H������H��H��t�L�<$H����L��H�T$�m���H�T$H�D$H������I��I���^L��A��������Lc�M������H�t$L���7I�����DH�59� L���A���������I�F �����
L���Ӫ��H�D$8H�XH� tH�XH���e���H��H�x
H�O� H��?����f.�M����I�������L���u������f(�fT
�f.���f��f.�z��H�5� L��1�1�����I������@H�\$pM��1�H��I��H�
2�����H��� H�޿H�������fDH�t$H�L$0H�T$(H��H�D$(����H����H�H� H���gH�t$L���J���I���:���f�1�L�L$�d���H�
%� L�L$H�5H�H�D$H�I�y��L���H�����I��H�H�D$@���H�|$�H�����I��H�H�D$H���I�WH��H�H�rH�L$H�D$PH�AIFH�
�� H��H9�H�HF�H�5��H�|�	H��w�H�L$L��H�H��H�T$XL���|��H�|$蒷���=���L�L$L����L������L���R���I���2���f.�����J���fDL��H�D$���H�T$I�����fDM�������H�=����H��H��� �y���H��� L��H�8�ޯ��fDH�|$(辸��H���vI�����������L��让��H�5W�H��H�ͽ H�81�裥��H�a� 1���$H��E��$H��H�$����H�$����
Òf��H� � �^�H�f/�wH�5;�L�����y���H�50�L������e�������y���f���UH��S��H��HdH�%(H�D$81��ܦ��H�D$������� ����H��H������6���H�5��H��H�H��H�D$����1�H�p2����H�D$H�D$H��� tH�D$H�XH�EH�
r��H��H�����L��1�聩��H������1�1�H��H�4�ٯ��H������H�|$H���d���H�D$H�L$8dH3%(ujH��H[]��H�\$H���|���f��K�����x"H�D$��H���
���H�|$�j������H�|$t
H�|$�S����1������耤�����H��H����������P 1�f��tf��t�f���tH���fD1�H���f����H��H���������P �f��t1�f�����H�D��H���D��H���H������w���f�x H�H��������H���H������G���H�@ H��H�D����H�����H���������p$��tFH�@��H���������H��H��H����w0�H��H��H��H��H9�w�Hc�H�L	H��H���DH�H�L��ff.�@��S�H�����H��@dH�%(H�D$81��v���H�5фH��H�H��H�D$�L���1�H���R���H�D$H�D$H��� upH�t$H��1�1�H���K���H�D$H��� u>H�|$H���`���H�|$H���â��H�D$H�L$8dH3%(u)H��@[��H�D$H�x�DH�D$H�p�� �����S�H�����H������@ ��f����HD�H��[�ff.���H���H������g����@ ����f��H�H�����ff.���U�H�����SH��8dH�%(H�D$(1�����H�5��H��H�H�$H�CH�<�H�=� H�H��*�H��H��H�H��H�D$����H�D$(dH3%(uH��8H��[]�����������U�H�����SH��8dH�%(H�D$(1����H�5��H��H�H�$H�CH�<�H��� H�H���1ɺH��H��H�H��H�D$�
��H�D$(dH3%(uH��8H��[]�����z���f.���U�H�����SH��8dH�%(H�D$(1����H�5U�H��H�H�$H�EH�<�H�
� H�H����H��H��H�H��H�D$����C ��f��1�)�f�C H�D$(dH3%(uH��8H��[]�ϱ���ʟ��f.���AT�H�����USH��0dH�%(H�D$(1��3�H�t$H�|$H��H�H��H�D$ �������H�D$H==��H=����H�5K�H���Ѩ��1�H���ע��H�D$H�D$H��� �H�D$H�h1�1�H��H���ɩ���4���1�H���I���Q���A�<$"�D$u$f.$��~f(�fT
��f/
:�w�ۡ���Df�H�5�z��?���f�{ ����觡���D�D$蕡��H�L$(dH3%(udH��0[]A\�@�|���f�H�5Iz��߯��f�{ f��p�������C���묐H�l$H�����f��`��#�������ff.����U�H�����SH��8dH�%(H�D$(1��e�H�5�}H��H�H�$H�CH�<�H��� H�H��z������H��H��H�H��H�D$�?���H�D$(dH3%(uH��8H��[]�a����\���ff.����AW�H�����AVAUATUSH��XdH�%(H�D$H1���H�5I��H�L��H�D$ 蓦��1�H��虠��H�0H�D$H�t$�� �PH��H�D$A�D$ f���Uf����f������Pf����Ff��H�D$�w�-0�@f�H�D$��<-��H�\<N�HD�A�t$$��tKI�D$��H���������H��H��H�H�lH����w DH��H��H��H��H9�w�Hc�H�l	���H��H��I���%���H�\$L��H������H�|$�˛��H��H���0����L����H��L�����L��H�t$HdH34%(��H��X[]A\A]A^A_�f�H�D$H�@H�D$A�D$ f�������H�D$�NaN����H�|$I��f���I�D$H�D$H�����1�DE�|�$A�	���+fDL��1�H��H���������I��H��H��H��A��tKH��t
�I9�r�L��1�H�
�yL��H��H�����I��1�����L��褚��1�I��DH��H9l$�i���A�~�0A������f.�I��A�A�~�0t����@L�|$I�oH���G���H��L��H��H�����A�A�H���������L�w�-����@�0f����H�InfinityH�D$H�0�@�j���DH�-InfinitH�D$H�0�yf�p�E����˙��ff.���AW�H�����AVAUI��ATU1�SH��dH�%(H�D$1��(�I��H��蝪��fA�|$ A�L$$@��1�H�l-���t5I�D$H��H����w#H��������̺��H��H��H��H��H9�w�L������H� ��H��L�hM�eA�� ��I��A��H�5�� I��M)�H���L��1�1�I����I��H����M����H�5E� O�t6L�4$H���L����豙���*L��L���H�$蘙���H��蛙��H�\$dH3%(�H��[]A\A]A^A_��H�@ �#����M�e�0����I)�H�5�� O�d$L�$$H����L��������L��H�������w���f��H�=x�ߛ��H��H�e� ����L����*H��H�,$�ǘ��I��������H�=�w藛��H��H�
� ������H�=�w�o���H��H�� �L����K���ff.���AW�H�����AVAUATI��USH��HdH�%(H�D$81���H��H�H��H�D$�����M$��t`H�EH��H����w"H��������̺�H��H��H��H��H9�w�H��~(H��	R1�f�} ��H�D�H��H�D	�
��H�|$8dH3<%(�=H��H[]A\A]A^A_��L������H� ��H�@ H�5Ȱ L�`H���S1�1�L���G���I��I�$�� ��H����I��I��L�t$M)�f�} �7M����H�5W� O�|?L�|$H���:L������L��L��*H�D$�Ȗ���ƒ���t"�����H�����������������H��� H�5axH�81�脔��@H�������M�d$�9���fDI)�H�5�� O�d$L�d$H����L����1���H�5�� H�D$H����L��L�������?�����H�=u�ߘ��H��H�M� ���L��L���*H�D$�����•��I������H�=�t虘��H��H�� ����H�=�t�y���H��H�׮ �^����H�=t�Y���H��H��� �����5���D��AUI��ATUH��S��1�H��HdH�%(H�D$81��#���I������H�D$���B������H��H������h�H�5�sH��H�H�D$H�EH�<�H��� H�H��|��L��H��H�H�D$詣��1ɺH��H�����H���o���H���'���H�L$8dH3%(�+H��H[]A\A]��M�m����L��A�����ђ��A��H��H�������H�5sH��H�H�D$H�EH�<�H�ѩ H�H����L��H��H�H�D$���H��IcͺH���(���H��谤���D����#�����xWH�D$t8M�m��uGH���S���H�|$�<���L��A���I���蚖��A���D���f�H���{���H�|$�
����l���H�|$t
H�|$����1���蘔���#�����AUI��ATUH��S��1�H��HdH�%(H�D$81�����I�����H�D$���B������H��H������X�H�5�qH��H�H�D$H�EH�<�H�� H�H��l��L��H��H�H�D$虡��1ɺH��H���״��H���_���H������H�L$8dH3%(�+H��H[]A\A]��M�m����L��A�������A��H��H�������H�5
qH��H�H�D$H�EH�<�H��� H�H����L��H��H�H�D$�۠��H��IcͺH������H��蠢���D���������xWH�D$t8M�m��uGH���S���H�|$�,���L��A���I���芔��A���D���f�H���{���H�|$����l���H�|$t
H�|$����1���舒��������AUI��ATUH��S��1�H��HdH�%(H�D$81�����I�����H�D$���B������H��H������H�H�5�oH��H�H�D$H�EH�<�H�o� H�H��\��L��H��H�H�D$艟��1ɺH��H���Dz��H���O���H������H�L$8dH3%(�+H��H[]A\A]��M�m����L��A����豎��A��H��H�������H�5�nH��H�H�D$H�EH�<�H��� H�H����L��H��H�H�D$�˞��H��IcͺH������H��萠���D���������xWH�D$t8M�m��uGH���S���H�|$����L��A���I����z���A���D���f�H���{���H�|$����l���H�|$t
H�|$�֐���1����x���������AVI��AUI��ATUS��H��@dH�%(H�D$81�裚�����܎��H�D$���+���1�����A�A�H������������1�蛝��L��H�����I����H�5tmI��H�H�D$I�EH�<�H�+� H�H����L��I��H�H�D$�E���1���L��L��腰����� L������H�����H�L$8dH3%(��H��@[]A\A]A^�@M�&���)���M�v���"���H�|$t
H�|$�m����1��������L��A����6���Hc�A��uI�����tA������#L��������1��t���L��H�����I�����H�5MlI��H�H�D$I�EH�<�H�� H�H�����L��I��H�H�D$������H��L��L���]���L��������A��uI�����tA�$����trL��A��t\���Hc��T����H�|$�^�������f�����������H�D$����f�蛏�����fD����Hc����L��1��y��������L���j����������.���ff.���AWAVAUATUH��H�����S��H�׺H��XdH�%(H�D$H1����I��H�H�D$ ���H�D$����������H�D$H�|$��H�5�lL��1�E1�����1�H��1�����H�D$H�D$H��� �qL�t$I�����H��L��L���k�������fA� �����6L����I�^A�+�DH�EH�D$���KH�|$�H�|$I��A��uH�����t�������@���3�n������zLc�1�H�5�kL��1��0���H��DM���	���J�D.�1�I��H�t���H���C��<0t�<.�vM��tL��L���a����L���8���H�|$H��蛉��H�D$H�t$HdH34%(��H��X[]A\A]A^A_���L��L��L������fDH�D$L�p���f.�H�|$薋���������)�����;����������H�|$t
H�|$�a����1�������軌������fDA�-I�^I�oM�_H���I��E1�A�����M��uh��M��xfE�G$H��H�
]g1�H������L�\$L�$�q���H���	���L�$L�\$A�����H�M��u�.H��I��M9���I��M��t�C�D�$H�s	���1�H����0�׈C���A�����H9�u��DH�S
H��u�.H��H�S	@H�Z�H��y	�
����H��H�C�@�0H9�u���fDL)����0.H�sf���H�D�H�SH)�H�KfDH�B�@H���@�0H9�u�H�P	H9�u�H��H��H��H��H)�H�����H�\	���I�^A� �s����0f��}���H�|$�ԅ��H��� t1�+u"H�P�H���@K�L�L�lJ�H�H��������ʍq���v� t��0��	v΃�߀�F�����H�5�fL����H������H��H��������H�P�H���H�u� H�5�eH�81��D�������ff.�@��U�H�����SH��dH�%(H�D$1����H��H�H�] H�$H��t(H���t"H�L$dH3%(H�Du+H��[]�fDH�EH�}$H�4��S���H1�H]�腅��D��H���H�����dH�%(H�D$1����H�H�$H�L$dH3%(u'H�PH�@H���4ҍ<�Hc�Hc�H�t6H�|?��������@��SH��H��H�� dH�%(H�D$1��������@��t=�H������l��H�8H�<$H�D$dH3%(��H�� H��[餆��@H�����t������t-��u�H�C �H�@H�4����H�8H�<$�f�������H�H��H�$�B���H�L$dH3%(uH�� H��H��[�"�������ff.�f�AVAUA��ATI��UH��H�����S�ӺH��0dH�%(H�D$(1��x��I��H�H�$@����@���z������H��H���H����@�����E��������H�ThHc�H�>��fDI�F1�H��H�4����H�H�T$H�T$A�V f�����H f����f���@��f��@��	�f���
f����@���7f������*��"�����H�h��Hc�H�>��fDH�5I� H���Q�����u}��*��"�QH�Zh��Hc�H�>��D1ҾH���)��H�H�T$H�T$A�V f���3������*t1�H�L$(dH3%(�(H��0[]A\A]A^Ð1�H�����H������H�H�T$����f�H������V����}���fDH��� H���@�H�D$(dH3%(��H��0H��L��[]A\A]A^�ń��DH�y� H��uľH�=�a賅��H��H�Y� ��H�Q� H���H��L������H��������������I���_����H�� H����H�D$(dH3%(��H��0H��L��[]A\A]A^魂��D��)�@��EЅ���������*��H�؀�"�����H�
g��Hc�H�>��D�q�z��f���thf���_f����f����H�xI9~�?��f���������*��"�<���H�5g��Hc�H�>��1��i���f�f���f���H�����*��"�����H�g��Hc�H�>��fD����fDH�����������f�H���~����~���f�H����r����h���H��DH�H���Z���@�H�=�_跃��H��H�U� �����H�=�_菃��H��H�E� �8����H�=�b�o���H��H�� ����f���Q�������f���*��"�����H�
g��Hc�H�>��1��Q���f���s�����*��"�̃��H�ig��Hc�H�>��f��~z��*��"�����H��g��Hc�H�>��L�HM�FM9�L��IF�H��t+�p$A9v$w�r31��DD�T�$E9T�$w�rH��H9�u�M9�s3f����������f��~���*��"�-���H��g��Hc�H�>��v.f���6�����*��"����H�Ch��Hc�H�>���!~����*��"�݂��H��h��Hc�H�>��H���������G����f����>����f����L���f����<���f����=���f����*���f���AU�I��ATUSH��H�����H��8dH�%(H�D$(1����I��H�H�$�؃����;��t^1�H�����H������H��H����H�Ef�} H�D$t
fA�|$ uhI�$H�L$(dH3%(��H��8[]A\A]�DH�����t����������u�I�D$�H��H�4��N��H���|���fDH��L������I��H�����H�<�H�e� H�5�\H�H��K��H��H�H�D$M����fA�|$ �C$H�C���f�S H�D$(dH3%(��H��8H��[]A\A]����@��H�����H������fDH�ɒ H�5�[�
H����H��H�H�D$�����H��L��H��菡���x���f.�H�D$(dH3%(u.H��8H��L��-[]A\A]�f~��fD�����f�C �0����]{��ff.�f���AUATI��UH��H��SH��(dH�%(H�D$1������K��Hc�H����u-H�D$dH3%(��H��(L��H��[]A\A]�T���@1����L��H��I���;���L��H�����H��H������L��H��H�H�$�m���H��H�������H�D$dH3%(u!H��(H��[]A\A]�m���D�z���C����Yz���ԋ��@��AU�I��ATUSH��H�����H��8dH�%(H�D$(1����I��H�H�$�؃����;��t^1�H�����H�����H��H����H�Ef�} H�D$t
fA�|$ uhI�$H�L$(dH3%(��H��8[]A\A]�DH�����t����������u�I�D$�H��H�4����H���|���fDH��L���Ջ��I��H�����H�<�H�%� H�5MYH�H�����H��H�H�D$M����fA�|$ �C$H�C���f�S H�D$(dH3%(��H��8H��[]A\A]�̊��@��H���V��H������fDH��� H�5�X�
H��m���H��H�H�D$�H��L��H���O����x���f.�H�D$(dH3%(u.H��8H��L��+[]A\A]�&{��fD�����f�C �0����x��ff.�f���AUATI��UH��H��SH��(dH�%(H�D$1������|��Hc�H����u-H�D$dH3%(��H��(L��H��[]A\A]�T���@1�蹇��L��H��I���;���L��H��蠇��H��H��������H��H�H�$�-���H��H����返��H�D$dH3%(u!H��(H��[]A\A]�-���D��v���C����w��蔈��@��AU�I��ATUSH��H�����H��8dH�%(H�D$(1��{��I��H�H�$�؃���������1�H�����H���I��H��H����H�EH�5�VH�D$H�EID$H�<�H�a� H�H��N���H��L��H��H�H��H�D$���H�D$(dH3%(��H��8H��[]A\A]�/����H������a��������t1���N���I�D$�H��H�4����H���D���f.���H���n��H��H���%���H�D$(dH3%(uH��8H��L��*[]A\A]�x���u����AUATI��UH��H��SH��(dH�%(H�D$1������y��Hc�H����u-H�D$dH3%(��H��(L��H��[]A\A]����@1��9���L��H��I�����L��H��� ���H��H��������H��H�H�$譁��H��H�����?���H�D$dH3%(u!H��(H��[]A\A]魆��D�St���C����t������@��AW�AVAUATI��USH��H�����H��xdH�%(H�D$h1����I��H�H�D$�؃����&����1�H�����H������H��H����H�EH��� H�5TH�D$H�EIEH�L�4�L��O�|6�Ż��H�L��H�5�SI��H�H�D$ 註��H�L��H�5�SI��H�H�D$(苻��H�L��H�5�SI��H�L�D$H�D$0�i���H��L��L��I��H�L��H�D$8�m���I�D$H�H�5uSL�,�M�L���/���H�H�5\SL��I��H�L�$H�D$@����L�$1ɺH��H�L��L��H�D$H�}���L��H��貖��L�D$H��H��L��L�$苼��L�$L��L���L��贘��H�D$hdH3%(��H��xL��[]A\A]A^A_骄��f.�H������^��������tq���K���I�E�H��H�4����H���B���H�� H��t\H��L��E1��6u��H���h���H�L$hdH3%(uQH��x[]A\A]A^A_�D��H�����H������fD�	H�=,R�u��H��H��� ���q��fD��AV�AUI��ATI��H�����USH��`dH�%(H�D$X1��9��H��H�H�D$0D������OA���1�H�����L�����H��H���FH�H�UH�5SQH�KL�-'� H�D$8H�EH��?H��?H1�H)�HEH��H�CH1�H)�HCH9�HB�I�UL�t�L���۸��I�UK�|6H�5�PI��H�H�D$@軸��H��H��L��I��H�L��H�D$H违��I�$�s$H�$I�EH�D$H�H�D$����H�D$XdH3%(��H��`L��[]A\A]A^�s���I��������A�$����t'������H�E�L��H�4�����H���������L�����H��H��������/L��L����r��H��tTH�L$XdH3%(u?H��`[]A\A]A^��A�E$1�L��Hi�ʚ;H��I�T$A�T� 1����"��������o���yt����AWAVAUI��ATUH��S��H��XdH�%(H�D$H1��p��H�D$�������iM�e��tgM�m���AI��tTL��A���w�Zs��Hc�H���@u|L��H���A���H�L$HdH3%(�$H��X[]A\A]A^A_�fDH�L$H�T$L��H��H�D$����H����H��� H���vL��H���q���@1��~��L�5z� H�{H�5�NI��I��\���H��H�����I��H�H�D$ ���L��H�����H��H�H�D$(����I�UH�5<NI��H�H�JH�D$0I�D$HEH��H9�I�HF�H�|�	H����L��L��H�H��H�T$8H�����L���}���z��L��H�����<���L�����������cm�����fD�#q������H�D$M�e��t-M�m���H���5���H�L$H���*p���#���DH�L$H���o���H��H�L$�p��H�L$�X����H�=RM�:q��H��H��� �j���H�|$���H��������H�|$t
H�|$�o�������No���Y~����l��@��AWH��AVAUATUSH��H��H�|$0H�T$(dH�<%(H��$�1��uD�u H�����tH�H�D$�D$����
��H��� H�5�LH�81��xk���H�l$(H�H�����tJ�����؃����UH��H���H��t/��t*�������wH�%WHc�H�>��H�����u�H� � H��H�8��t��DH���o����
H��$���<H��HDŽ$��l��H�������	H��� H�5HH�81��j��fDH�5� H����j�����r���L�c 1�A�L$ �Af��������f��@��f���@��	�f�����Ʌ���@����H�� H�5KH��H��ز��H�D$x��@$H��H�H�@f�H ��|��H��$�dH3%(��	H��[]A\A]A^A_þH���i��H����n��1�H�H����H��?	����1�H�����H������I��M���x���L���W|��H�5�J�H��H�)� H�����H�T$HH�T$xH���'|��H�5�J�H�D$HH��� H����H�T$PH�T$xH���{��H�}H�D$PH�D$@H�|$H�D$xH�@H��MH�D?A�L$$H�D$@E1�����I�D$L�4�H����w)H��������̺��H��I��H��H��H9�w�I����L��$�L��1�H��H��IL���'h��H�(� L��H�l$@H�����H���#{��H��H��H����H��H�t$HH���u�H�t$HH��L�d$@H����H��I���L��A���P�m��Lc�M�����CH��H�����H��H�D$XH�D$xH�T$@H��H����H�D$XH�D$`H�D$xH�D$hH�\$`H�D$xL�S H�\$hA�B ��f����
H�L$xL�t$8L��H��H�L$ A�I���������f��p$1Ʌ�t*H�@H��H����w���H��H��I��H��H9�w�E�B$E��t:I�B��H��H��I�������H��H��I��H��L9�w�H)�H��L�l$H��?H1�H)�I)�M����H�T$@H�|$XI�l$H��I���0���H��H�@L���O�l-H�@L��L�d-I���$L��A���a�\k��Lc�M�����ZL��H���?���H��H�|$`H�t$h��H��H�D$`H�D$hL�P A�B ��f����:H�G I�����H���j��f��1��f.�f(�fTkS��D�1�f/���f.S�q1�f.����E1��V���H�|$(��h��H������H��1�H���H��?����f���A�!H��H�@L����H����d��I��I������H�L$ H�T$pL��H��H�D$p�L���H����H�Ā H����L��H����h��H�������{e�����fD1���u��H�
�| I�~H�5�EH�D$H��z����H�����H��I��H�H��$�����L��H�����I��H�L�L$H��$���L�L$H�5NEI��H�H��$�I�UI�D$IAH��H�JH9�HF�H�
�{ H�|�	H�H����L�L$L��L��H�H��H��$�L�����H�|$�t���q��L��L�����6���L���v��H�����fDL���hc��I���@���L�t$8H�t$P��H�D$`M�������H�T$(H�|$0����H��H�@L���K�|6�H��������H���;v��H��H��� �H�|$`H������N���fDH�|$p�v��H������H����fDH)��6����H�=D��g��H��H��~ ���H�L$xH�T$pH��H��H�D$p����H����H�z~ H���%H��H���~f��H�������1c�����1��s��I�H�5�CI��H�Hz H��8���H��H�����I��H�H��$��ַ��H�ߺH�����H��H�H��$�贷��I�T$H�5CH��H�H�JH��$�H�CHEH��H9�HF�H�|�	H��y H�H�謪��H��L��H�H��H��$�H��谏��L����r���so��L��L��������L���t��H������E1��k���H�|$�3a�������E1���H�Ay H�5[BH��H��'���H�D$xH�1��@$H��f�P H�@�"t���M���f.���f/�s���u���H��蚶��I�����H�|$p��s��H�����H���'���L���`��H���t����H��H���X���I���H���H���e��H������H��$���<H��HDŽ$��b������H�=�A�se��H��H�1| ���H�����	������������r���.a��H�gx H�5h=H�81��6`��H�7x H�5x=H�81��`��ff.���AW�AVAUATI��H�����USH��XdH�%(H�D$H1��Z���H��H�H�D$ H�EH�<�H�?L��A���>�d�����NH�H�5�@H��H9�HC�H�Vw H�H���C���I��H�H�D$(�E �ƒ�f���Uf����Kf�����TH�}�yI�G�H9EH�5�@H��I��LCeH�<P��c�����H�5�@H��K��I�<DH��?���H�t$H��M�oH�|$I���6f��H�L$�D$H�r�q�qH��H��H��H��H��?H��H�9��8��8H��H)�H�t$H)�H�I��H9�tH���^�K�D$I��I��?I�I�f���Q�f.��f(�L���~��Mw�I��IF�K�T�I�GH��H��dH�C�dHM�E1�H�D$�}@I�GH�CL��H��L��H���׋�������L��H��L��褄��H�5�y L��H���R����C ��f���t]�L��H��L���r����L��L���B���I��L;t$t/I�GH�I9��w���M�oL���o����^�����fDA�G M�oH�߉�f��1�)�fA�G �^��M��tL���^��L���p��H�L$HdH3%(��H��X[]A\A]A^A_úH��L�������fD1�A�G$H�5M>� I�GfA�W �Po���fD�}$�}���H�}�r����A�G$I�GI�GfA�G �Q���@1�A�G$H�5�=� I�GfA�O ��n��� ����n���1]���L$��`���L$���ff.���UH��SH��(H�t$H�|$dH�%(H�D$1���[���1�1�H���C���H�Lq H��H��H�H��H�D$�\��H��uH�����uH�L$dH3%(u6H��([]�H��у���t�H�р�H�xH�t̀�u�H���_��H���\\��ff.����AWAVAUATU��SH��HL�-s dH�%(H�D$81�I�}����H�I����
���)�؃����CH��������H�CH9���H�Lp 1��%[��H�D$ H����\��H�D$(A�Dž�������1�H�=^9�Y_��I�$H�D$L�|$(H�l$ M�����H��A��*^��A��H�l$@��u|H�������H���E�����H�L$8dH3%(H���@H��H[]A\A]A^A_�f�H���������H���	H������H��q H�����H����H����@���j������H��H���H���z@���p�E�������^H��EHc�H�>��fDH��n 1��Y��H�D$ H���Q[��H�D$(��u%�]�����w���iH�T$(��H���J�����n\��fD���������FH�_n 1��8Y��H�D$ H����Z��H�D$(A�Dž��Hc�I�D����^��H�������^���������^��H�D$ H����H�|$ �X��L�t$ �U�H��M����^��E���f^��H���������I�$H�L$ H�D$��������Չ�t
DM�t$L�d$ H�T$(���<H����L����[��L��A��A�����
]��Lc����{���E�������H�p H�58H�81���W���H�T$(�����@I�D$������H����������H�����������K���I����E���0���H���e[��H�5�6H��H��o H�81��ZW��f.�H�5�l H���W������E��u,H�|$H�
�8�H��8��[��H�D$H�������H�|$��V��H�t$H� �H�vD��L���(���H���H�yn H������H����Z���Df(�fT
DDf.��ZI������E���:���H��n H�5�7H�81��oV���H��H������ԫ��H��H�������H�EH��H�D$0�i��H��uRH�k ��u9H�����t0H��ƒ���t#H�€�H�{H�t����f.�H�]����H��1��֊��H��럐�+Z��A�Dž��>I�$H�D$���n���L�|$(H�l$ M������H�|$(A�E1��(Y���H���+Y��A������U���i���fDH�|$(�X���2����H�������E����H��l H�5'4H�81��%U��DE������H��l H�5)4H�81��T���H�	m H����f�I�$H�D$���f�H�������H��L���0���H���W����H�D$ I�$H�D$��������>���fDH��l H��m���f�H�D$H�h ����f�H����W���S���I�U1���$����$H��H���kt������fDH�l H������H��k H������T�������H�|$(�{W�����H�|$(����X��H���X��H�=c2H�E1��XX��H�EH�D$���H�+k H�5�2H�81��S��Hc�I�|���tH��u'���&Y��H�D$ ���I�$H�D$���fD�ST��H�D$ ���f���U�H�=�4SH��dH�%(H�D$1��W���H�=�4H�Bo ��W���H�=�4H�"o ��W��f�f.n H�o �������H�5#4�����H�5�4�H�Fn �ɏ��H�=k4H�+n H�j H�0�W��H�j �����H�5���H�=;4H��
U��H�����G�ƒ�����H����<��H�xH�54�V��H����
��4�ƒ����6H���\<�tH�xH�5�3H���AV��H�;�H�r���H�5�3�T��H�;�����H�W���H�5R2�T��H�;�����H�܇��H�5�3�T��H�;1�H��X��H�5p3�hT��H�;�H�����H�5`3�MT��H�;1�H�Qa��H�5N3�5T��H�;1�H�Ɇ��H�5J3�T��H�;1�H�Qb��H�5E3�T���H�=?3�Q��H�;H�563H����U��H�;��5wH�5'3�U��H�;��H�53�U��H�;�H�53�U��H�;�H�53�rU��H�;�	H�53�^U��H�;�H�53�JU��H�;�!H�5
3�6U��H�;�H�53�"U��H�;�H�53�U��H�;�H�5�2�T��H�;�H�5�2��T��H�;�	H�5�2��T��H�;�H�5�2�T��H�;�
H�5�2�T��H�;�H�5�2�T��H�;�H�5�2�T��H�;�H�5�2�nT��H�;H�����H�5�2�XT��H�;�H�5�2�DT��H�;H�����H�5�2�.T��H�;�H�5�2�T��H�;H�����H�5�2�T���	H�=�2�O��H�H��H�$�o�H�;H�5t1H����S���H�=2�|O��H�H��H�$�8�H�;H�5z2H���S��H�;�H�����H�5`2�Q��H�;1�H����H�5X2�sQ��H�;�H�$��H�5C2�XQ��H�;�H����H�5,2�=Q��H�;�H�n��H�52�"Q��H�;�����H�C��H�5�.�Q��H�;1�H����H�5�1��P��H�;�����H����H�5�1��P��H�;1�H�X���H�5�.�P��H�;1�H�@���H�5�1�P��H�;1�H�����H�5�1�P��H�;1�H����H�5�1�tP��H�;�H����H�5m1�YP��H�;�H����H�5T1�>P��H�;1�H�rT��H�5>1�&P��H�;1�H�����H�5)1�P��H�;�H����H�5�-��O��H�;�H����H�5�0��O��H�;�H����H�5�0�O��H�;�H�����H�5�0�O��H�;�H�����H�5�0�O��H�;�H����H�5�-�lO��H�;�H���H�5?-�QO��H�;1�H�%���H�5f0�9O��H�;1�H�
���H�5T0�!O��H�;1�H�%���H�5@0�	O��H�;1�H�]���H�5-0��N��H�;�H���H�50��N��H�;1�H�����H�50�N��H�;�����H����H�5�/�N��H�;1�H�Ǫ��H�5�/�N��H�;�����H�<���H�5�/�pN��H�;�����H����H�5�/�UN��H�;�����H�6H�5�/�:N��H�;�H��%H�5%,�N��H�;�H�@��H�5,�N��H�;�H���H�5O/��M��H�;�H����H�53/��M��H�;�H����H�5/�M��H�;�H����H�5/�M��H�;�H����H�5�+�}M��H�;�H�^��H�5o+�bM��H�;�H�3��H�5V+�GM��H�;1�H�+���H�5�.�/M��H�;1�H�Ө��H�5�.�M��H�;�H����H�5u.�L��H�;1�H�����H�5d.��L��H�;1�H����H�5T.��L��H�;1�H�Ц��H�5E.�L��H�;1�H�����H�52.�L��H�;1�H�0���H�5.�L��H�;1�H�ȥ��H�5	.�lL��H�;�����H�����H�5�-�QL��H�;�����H�"���H�5�-�6L��H�=�-�M��H��` �H��H��H�5�-H��L��H�;�H����H�5�-�K���H�=�-�M���H�=�-H��d �M���H�=U-H��d �M���H�=\-H��d �qM���H�=L-H��d �YM���	H�=<-H�nd �AM���	H�=.-H�Nd �)M���H�= -H�.d �M���H�=-H�d �L���H�=b,H��c ��L���H�=D,H��c ��L���H�=�+H��c �L���H�=&,H��c �L���H�=�,H�nc �L��H�Zc H�D$dH3%(�5H��[]��H����������H����H�������H�B_ H�8�z���f.�H�_ ��^U4�Mb �Z�H��������H��t>H�����H��^ H�8���fDH��^ H�8���H��^ H�8�����H�y^ H�8��H��^ H�8���H�I^ H�8���H�9^ H�8�~�H�q^ H�8�n�H�a^ H�8��H��^ H�8�N�H�y^ H�8���G��ff.����AWAVAUATUH��SH��H��H���H�T$HdH�%(H��$�1�����H�H�|$H�|$��@��tO@���r�������H��H���H��t3@��t-�E������wH�/2Hc�H�>��DH�����u�H��] H��H�8�]O��D�H��H�D$�p���H�t$1�H���ʚ��H��t��H f�L$>H�H�D$H�D$H��f�|$>H�$��H��\ H�5�&�H����H����W��L�@ H��H�D$@A�@ ��f����:H�L$XI��I��L��H�L$(H�L$P�H���������H�L$0fD�p$1Ʌ�t2H�@H��H����w!��f�H��H��H��H��H9�w�A�x$��t;I�@��H��H��H�����p�H��H��H��H��H9�r�H)�H��L�4$H��?H1�H)�I)��AE��M���pH�t$L��I�������I��H�@L��+O�t6H�@H���L�d-I����L��A�����H��Lc�M������L��L�����I��L��L��H�����M�D$ I��A�@ ��f�����I�G ���H�5�X H���C���������H�E �H f�L$>f���rf����hf�|$>����H��Z H�|$H�5�#H�豋��1��@$H�@f�H �:H����F��f(�fT
c0f.
0��f��1�f/�������H�t$������H���dU��H��$�dH3%(�KH���[]A\A]A^A_�1�H�����H���ʗ�����D���A�!I��H�@H��\���H���A��I��I���V���H�L$(H�T$0L��L��H�D$P����H����H��] H���SL��L���E��I���>����KB������fD1�L�D$ �R��H�
eY L�D$ H�5�"H�D$H�I�x�@���L��H�����I��H�H�D$`���L��H�����I��H�H�D$h�–��I�VH�5 "I��H�H�JH�D$pI�D$IEH��H9�HF�H�
�X H�|�	H�H�轉��L��L��H�H��H�T$xL����n��H�|$��Q���N��L�D$ L����L���_��L���S��I���0���f�L���H@��I������L�|$@f�|$>�kI�G �p$��tIH�@��H���������H��H��H������f.�H��H��H��H��H9�w�H)L$H�@H�\$H��WH�DH�t$HL���H�D$H����{����H�|$P��R��H��膩��I���\���fDH)����H��W H�|$H�5� H��u�����@$H�@f�p H�D$XH��H��mR��������H�=w �_D��H��H�[ ���H��H�t$X�H�D$X���H�t$H���t���H�D$H�@ f�P ����H�|$HH��ts@��uV�?��Hc�H������H�|$@L������c���f.�����1ҾH���N�������H�|$�_>�������C��Hc���D$>�����H�|$@H�L$XH�T$PL��H�D$P賍��H���$H�+Z H���+H�|$@H��L���*B������1��NO��H�{H�5:I��H�V H���H�|$@�H�����H��H�H��$�荓��L���H�����I��H�H��$��k���H�UH�5�I��H�H�JH��$�I�FIEH��H9�HF�H�|�	H�wU H�H��d���L��H��H�H��H��$�L���hk��L���N���+K��H��H�����[��H���EP������H)D$����H�|$P�,P��H���������H�=6�B��H��X ����=��H�6U H�57H�81��=���`O����AWAVAUI��ATUH��S��H��xdH�%(H�D$h1��>��H�D$0�������QL�}�����H�����L������H��H�H�D$@H�CA�H��H�$f�{ ��H�D$0H�-C)H�D$M��A����E��A����D��������I����A���I��4�uA��������cHcD�H�>��f.�L���@����8��x	�ƒ����.H��H���H���<�������S	���:	��
��L���?��I����6���
�����.L��H���H���A���A������@
����
��
�D��f�H�5yP L���;����tkH�t$L���H�D$0�ҭ���=L��H��買��H�������L���n���I��M��A���m���I����������I��t	M�������L���>��H�5+H��H�!R H�81��:���L���>���D$�:���L$f.��*�$��'f/��}f/
�'�o�L,�O�|����L�u�����H�����L������H��H�H�D$@I���^���A����L��H�f�{ H�$�\���H��Q H�<$H�5�H��q���H�D$0E1��@$H��H�H�@fD�x �jL��f.�H�L$hdH3%(�3H��x[]A\A]A^A_�DE1��C ��f����tM���L��H���.H�5�T H�L$8�L��L�L$H�D$8�;��L�L$H������������$H��P H�<$H�5_H�蔁��H���K���G����f(��9��I���Q����H��������H�5mT H�L$8�H��H�D$8�z:��H���������������L��D��H��?H��A��ueM���I������
A�����
�������������H�L$8�<L��H�D$8�9��1�H������…�tWH�4$�L���Y���I���|�����+<�����JH�D$0L�}����H�������A�H�|$0�8;�����A�A�A��C ��f�����L���H��?����M�������#L��H���H���wA��A���iA���_A������|������
�>H��N H�H�<$H�5����H���I���Z���f.�D��E�����Q���M���I�������A�����
��D������t	����L��D�L$�:��f��1�D�L$f/�������@L���9��H�$�����H��������H�5
R H�L$8�L��H�D$8�8��H���������������L���:��I�����fDL�u���jH���8�������DE1�L��H����������@D�ȃ����!���H�L$8��<L��D�L$H�D$8�7��D�L$H���������������H�,M H�<$H�5BH��~��H�D$0f�{ H��A��@$H�@fD�h �8���D��A���E���L��H���H��������������A�������A���������������
�����M����A����D�������(L��H���H���A���
A���������Z��
���C f���gf����]M����M���:I������-A�����
�L��莔��H�Ũ���u
�����H��H���H���@�����E���������6
��
��L�d$8��<H��H�D$8L���5��D��D����H����������i
A�����
��
������
����
L���<L��H�D$8�A5��H�������������f�{ �!���L���j����������DI��Q�IE�H��J H�f���}H�5���{��I��H�H�D$H�C �Pf�����M����f���6	M���
A�A�E$I�EfE�U I����L���ME������H���������f�H���7��������H�����������f���������L���<6��f��1�f/�������f.�A���������������
�����H��t]E1��E���f�I����������H�5�M H�L$8�L��H�D$8�3��H��������������������L��H�5NM H�L$8�L��L�L$H�D$8�V3��L�L$H�������������
L�����DL��L�L$��5��L�L$��L���H���C��������L��L�L$�5��L�L$H�D$L���5������H�H�����H�D$�����H�H���������DI�1�I�������L���O5��������H���}������L��L�L$�,5��L��H���4��L�L$����H�H������@������H�H���������1�I�������L��L��H�H���������L��H������D��D�����qM����I�������A�����
�m	����������H�L$8��<L��H�D$8�1��H�������������f�{ �n������VM��uI�����tA�����
�VH�G H�H�<$H�55��w��H���B�������u|M������I���������A�����
������H�t$0L��H�$��1��H�T$0H�$H�҃��������A������@$H�@fD�p ����L��H�����M��uI�����t�A�����
t���u�L��H�H�҃��L��H��?���I�H�D$(A�A ��f����c���H�$L�L$H�@H�H�i�ML�%�E H�3H�l-H��I�<$�&��L�L$H��I�9H��H���P���H�$H��H�@H���H�T	I�<$H����H�T$(H�T$0H�T$(�A�f����f����f����Q���IH�{��M������H�D$����I��I�E��H�5MH�|��j����H�52H��H�@H��H�|	�j���H��L��I���O��I��L�|$���H��H���O��H�|$��A��	fDI��H��H��L���Ww���L��H���gO��K�?H;D$v�L��H)L$H��L�|$L��L���!w���L��L���1O��M���v���H�|$��XM��tL����-��H����-��I�����A�E f������f������f���������9��H�$L�����E����������h���L���.0��f��1�f/����z����A�E$I�EI�EfA�E �V���A�E �|���H��C H�<$H�5�H��qt��f�{ I���.���kM��uI�����tA�����
��H�C H�5@H�81��f+��H�CH��H�5NH��H�H��H���t��I��H�H�D$H�m���M�O ����L��虀��I����M��uUI����������A�����
u4H�t$0�L����-��H�D$0H�Ѓ�H��B H������������m���L��H�H�Ѓ���A�����
��H�t$0�L���x-��H�D$0H�Ѓ����W�A�E$I�EfA�m ���M���Q���L��A�E$H��I�E��	�M�������q�fA�} ���E1�A�E$I�EfE�E ���H�<$�)��H������H���|)��L�%}A H�3H��I�<$�ֽ��H��H���[)��L�L$H�����L����q)��H���.�����o��!�L���O)��H���.�������M���A�������A�����A�E$I�EfE�M �����w���M��u2I������u���A�����A�E$I�EfE�e �����u�L��H�H�Ѓ��k���H�D$�a���H�{�;����{$�1���fA�E f�{ A�E$I�EI�E����A������fA�E ������D�A�E$I�EfA�] ���A��t�A�����A�E$I�EfE�] ��������fA�M ���H��C L��H��L����U���H��L���J���~���H������
�H�5�C H�L$8�H��H�D$8��)��H����������������������fA�u �"��������fA�U ��������A�����
�������;���2L���<L��H�D$8�H)��H�������������H��> H�<$H�5H���o��L��H���^������f�{ �E$H�E��f�E H���9���Z�H���+��H��I���*������H�H�����A�����I�I�������H��H�H���������I���
�H�|$0t
H�|$0�*�������)���L���&��H���Q+��������'��L���L*��f��1�f/�������L��H��?���f�{ �E$H�E����f�E �������L���%��H����*�������L��H��?���L����)��f��1�f/����q�L���i%��H���*�����T�f���H��H���H�t$H�t$�a�H�����H��H��� can't be coerced into BigDecimalComputation results to 'NaN'(Not a Number)Computation results to 'Infinity'Computation results to '-Infinity'ERROR(VpDivd): space for remainder too small.second argument must be true or falsefirst argument for BigDecimal.mode invalidinvalid value for BigDecimal(): "%li"Conversion from String to BigDecimal overflow (last few digits discarded).load failed: invalid character in the marshaled string%li can't be coerced into BigDecimal without a precisionBigDecimal to Float conversionUndefined operation in BigDecimalCmp()Zero or negative precision for expComplex argument for BigMath.logZero or negative argument for logKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecatedcan't convert nil into BigDecimalcan't convert true into BigDecimalcan't convert false into BigDecimalcan't omit precision for a %li.wrong argument type %li (expected scalar Numeric)a non-integral exponent for a negative base%lue%zdinvalid rounding mode: nilinvalid rounding mode: %li%snegative precisionExponent overflowComputation results to 'NaN'Exponent underflowDivide by zeroargument must be positiveinvalid rounding modeexponent overflow#0divided by 0divmod-0div%zu:to_i**F<=>>=<=remainderprecision must be an Integer21E%ldsqrt of negative valuesqrt of 'NaN'(Not a Number)#1precision too large.to_strStringBigDecimal.exception_modeBigDecimal.rounding_modeBigDecimal.precision_limit.5BigDecimalallocatenewinterpret_looselydouble_fig_loadsave_exception_modesave_rounding_modesave_limit2.0.0VERSIONBASEEXCEPTION_ALLEXCEPTION_NaNEXCEPTION_INFINITYEXCEPTION_UNDERFLOWEXCEPTION_OVERFLOWEXCEPTION_ZERODIVIDEROUND_MODEROUND_UPROUND_DOWNROUND_HALF_UPROUND_HALF_DOWNROUND_CEILINGROUND_FLOORROUND_HALF_EVENSIGN_NaNSIGN_POSITIVE_ZEROSIGN_NEGATIVE_ZEROSIGN_POSITIVE_FINITESIGN_NEGATIVE_FINITESIGN_POSITIVE_INFINITESIGN_NEGATIVE_INFINITE+InfinityNANinitialize_copyprecsaddsubmulthashto_sto_intto_rsplit+-+@-@/quo%moduloclonedupto_fabssqrtfixroundfracfloorceilpower===eql?<nonzero?coerceinspectexponentsignnan?infinite?truncate_dumpBigMathexploghalf_updefaulthalf_downhalf_evenbankerceilinghalf-InfinityT6���8��T6��<8��8��:6���8���8��46��8��46��8���7��#6���8���8��\:���:��\:���:���:��l:��L:���:��r���p���p���p���p���p���q���p���q���p���p���p���p���p���p���p���p���r������g���g���g���g���g�����g���T���g���g�������g���g���g���g���g�����Ě�����������������������������������������������������x���x���s���������������������������s���������������x���������������������������������������������������H������������������������������������������������������������ԙ��`�������������������������������������������[���g�������������������������������������ϗ��Ԗ��Ԗ������������������Ԗ����������ϗ��ۘ��t��t��t��t��t��t��t��t��t��t��t��t��t��t��t��t��t��C���H���H���t��t��t��t��t��t��t��t��H���t��t��t��t��C�����������������������������������������������������������������������������������������������������������������×��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��\��+���0���0���\��\��\��\��\��\��\��\��0���\��\��\��\��+���������������������������������������������������������������������������������������������������������������{���D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D��D�����������D��D��D��D��D��D��D��D�����D��D��D��D�����ؕ�������������������������������������������������������������������������������������������������������������D���,��,��,��,��,��,��,��,��,��,��,��,��,��,��,��,��,������������,��,��,��,��,��,��,��,������,��,��,��,������
��������1����h����³����������r����w���w���w���w���w���H���w���`���w���w��� ���w���w���w���w���w���H���������������������
������������������������������
�����~��~��~��~��~�����~����~��~��0��~��~��~��~��~����������&�.>�C��]r2<��������?e��A��C����������;�q ����������h���|
������ ���p������������,��@ ��TP��|@�����������@������ ���` ���0"����"���"��0P#��X�#��� $���P$����$����$��0%��,�%��X@&��p`(���*��� +����+����0��X1��l�1����2����4��T	�6���	�6���	�7��
9��P
0@���
@G��|PG����G���H����H��$�I��X�J��t L����N����O��
[���
�[���
�\���
�a���Pf����f���g��0@m��|�n���o���@o���po����o��0p��,q��PPq��l�q��� r����r���ps��@u��<�u��hpy����{����P���� ����0������H ��������� ���� ���@����P����`����p����������������0������ ���H �������������8`��������4`����@���� ��� ��L ���� ��P��T���zRx�$h���FJw�?:*3$"D���\x��p���
�����|��N����$����-A�A�F SDI���������\A����A�V0���q<D`���B�B�B �D(�A0�l
(A BBBBd����B�H�B �B(�A0�A8�G`M
8A0A(B BBBAW
8A0A(B BBBE�x��SA�a
Nb@����K�A�G 
A�A�JvAAH��H ��PD��PA�a
N_(pt��nE�A�D0W
AAA$����`A�e
JD
L_(����UB�A�A �}
ABD(�$��oE�A�D0X
AAAh��!AAK8|��QDY
AT���AAK$p���YA�D�F ICA(����vA�\
CU
KU
KU�P���]U������ ���4p"����C�D xAAC��L ��a��<H#���A��
DVd\�#���B�E�B �E(�A0�A8�D��
8A0A(B BBBA�
8F0A(B BBBE�@(��c8��(���B�A�D �K
JBJK
ABJL�(���B�E�E �D(�D0�M
(A BBBH\
(D BBBJXd�)��Ot�E�A �D@
���h@���{ F�A�B�D@���x���X@���`��+���B�B�B �A(�A0��
(A BBBDi
(A BBBHX
(A BBBA4$�,��7B�D�D �Y
DBGACB\�,���Hp�-��mB�E�E �E(�D0�D8�DP 
8D0A(B BBBFl��.��B�B�B �E(�D0�D8�G��
8A0A(B BBBK�O�P�B�u�O�P�A�|,h5��B�H�B �B(�I0�D8�G��
8A0A(B BBBA�
8C0A(B BBBF:
8A0C(B BBBA$zRx��������,@����;��0��;��oA�A�G F
DADQDA(0�;��HF�A�K �rAB0\<���F�A�A �D0y
 AABG0��<��'F�D�C �D0�
 AABH��=���D o
E�$>��zD�
I8��?���F�E�A �A(�F@�
(A ABBG<8	�A���F�L�B �H(�G0��
(A BBBAHx	�B��eB�E�B �B(�A0�D8�Gp�
8D0A(B BBBG zRx�p������(:
��:0�	xM���B�F�N �D0X
 AABJ(0
�M��E�D�DP�
AAA�\
�N���B�G�B �B(�A0�D8�G��
8A0A(F BBBAs
8A0A(B BBBAJ
8C0A(B BBBA�
8A0A(B BBBDL�
�R���B�B�B �E(�I0�A8�N�
8A0A(B BBBD(DpW���E�D�GPW
AAG(p�W���E�D�G`^
AAHH��X��gB�B�E �E(�G0�C8�T��
8A0A(B BBBF(��]��pE�D�F`�
AAI_��GMl
GF40_��;MmLX_��)H]dp_��(HZ|�_���Oc
F ��_���E�PP�
AI��`��2E�l��`��2Hf(�a���E�M�DPj
DAE(
ha���E�M�DPq
DAE(H
�a���E�M�DP�
DAE0t
`b���F�M�A �DPG
 AABE(�
�c���E�M�DPo
DAEL�
pd���F�N�B �B(�A0�A8�D��
8A0A(B BBBCH$�g��uF�N�B �E(�A0�C8�DPJ
8A0A(B BBBIHp�i��F�N�B �B(�D0�A8�D��
8A0A(B BBBI8��l��
F�E�A �D(�Hp�
(A ABBI8�|n��
F�E�A �D(�Hp�
(A ABBI84Pp��
F�E�A �D(�Hp�
(A ABBI@p$r���F�E�E �A(�A0�Fp
0A(A BBBEL��t��F�B�B �B(�A0�K8�N��
8A0A(B BBBD(�y���E�M�D0I
AAG0�y��lH D
[,L8z���E�J0T
DIr
GEl|{��B�B�E �D(�K0�K`�
0A(A BBBBh
0G(A BBBJ�
0G(A BBBJ zRx�`�����(L��$����8|���Lx���`t���tp����l���`�h���3F�J�A �A(�N`�
(A ABBF�
(D ABBI|
(L ABBKLD����F�B�D �G(�DPD
(G ABBIe
(D ABBJ`P�3F�J�A �A(�N`�
(A ABBF�
(D ABBI|
(L ABBKL�Є���F�B�D �G(�DPD
(G ABBIe
(D ABBJL����}F�J�A �A(�N`�
(D ABBLz
(L ABBELT�����F�B�D �G(�DPD
(G ABBIe
(D ABBJd�`����F�G�B �B(�D0�A8�N��
8D0A(B BBBOx
8A0A(B BBBFX����-F�G�E �K(�A0�D�+
0D(A BBBH�
0A(A BBBH zRx�������(���
H�T����F�B�B �E(�A0�D8�F��
8A0A(B BBBGL�؍���F�E�B �B(�A0�A8�J�
8A0A(B BBBAL<h����F�G�B �B(�K0�A8�D��
8A0A(B BBBA(������E�D�D@p
AAAL�����7F�B�B �B(�A0�C8�D�/
8A0A(B BBBC$zRx��������,D����(D@����E�M�D0�
AAHLp���0	F�B�B �B(�A0�D8�M��
8A0A(B BBBAL��wF�B�B �E(�A0�D8�F�~
8A0A(B BBBF$��$H [GNU��.�.�<!��	�	�����	p0�.���p!
d�<!�<!���o`�
�
@!���	���o����o�o����o
h=!�!�!�!�!�!�!"" "0"@"P"`"p"�"�"�"�"�"�"�"�"## #0#@#P#`#p#�#�#�#�#�#�#�#�#$$ $0$@$P$`$p$�$�$�$�$�$�$�$�$%% %0%@%P%`%p%�%�%�%�%�%�%�%�%&& &0&@&P&`&p&�&�&�&�&�&�&�&�&'' '0'@'P'@�@�?GA$3a1p!qGA$3p1094 -dGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�.dGA+GLIBCXX_ASSERTIONSbigdecimal.so-2.7.8-141.el8.x86_64.debugy�0�7zXZ�ִF!t/����]?�E�h=��ڊ�2N�/ ���7]|l�]����ύE��Eč�i����pI�>����"�
�Ȳ?�fVr`�yQ�v;���^U�����N�����kC-}�]m!�|��LZ�C*M$f�Lޙ�t�~)Ɖ�`!�y:�sR)u=�k�7���دm����Fx`�W�ȸ>&n�צ��9_�{�j�B��_]r(��b�*��r�І-��S�9.��./{�������}�1� w��d��BϺ?F9_g���}�`�X8�6��KJ�w��t�.�:��l�^+E���1���� ��s�|s�I�cZ�w����#w�$=eZ�X<��=L9�C�چ/���fU >�@Ǖ��̜k����6�s��F��Z��v��?��^�������)��?�PG
4\P���]F�+9:��dAe$ R��Pc��{�,�t�����l���6�3�f�l���H�ϐCF�ҹu.�ޕC�,lɇH;���fOM�ZG�x�k�+��w�����m?�'0g��	��i�Y�g��
q���,��`}3UM���z~�F�)���g}ֶ�[cO�u�7?�az��r	�%F�Lw�e�</L*�y��)
l�\�-Q�^B\9�-!���z��~-�	B���矰��K�=�oތ*e<	Z��'����#k�%7��;���i��"���e��E�|�L�2�?�kɯ��
�H���А���]��1MU����V�vJ�؄Z4�:J�T�KIa��@�L����ܫ1v��O)�Wxv��,��Ml�T�0�Qq�Q��ܮ|�v��F]�!�|�����E—!�Ό��	Eu�9[j�"|M�K<�������A�6%(ძ>������}�[o?k#Рxgl��~����&���(K.��*�#.�(��l��h�^3rQY,�Xas�°龗��M��9����c�gn�ƶ�)��$,{džXm�A���[?��Ƿ��$a	S 8F�6#���O�`�[�\�^p��)�I�˔X3�k��䆴4�$xQ�~�^�=6'[T+�騧$$#'�q,�@�"�e��Č!EC}�C���,[o!�Q�ƀ����ڈw:�r�nQt@��]e��G�R#�QF���ۧ�֛��Ѹ���)��^��Ջа��n�j��Yq}M��z^���`̲�8��I�{Z}��i'��]le3e��`�^D�(TPm ��G�G�G˱@�[_ŷ ���E�����]�'�W�$ �D�M��U~��G�`m忞v���̋{2M��j��@��/Ŵ9K�4	���N�J'[D�������=�w�oR�����PbP��^�'��VإS��X)�x
1�t3ˆ���j~�sA5�*>7Ԭ���r�R�ߋw��E��$�`��p��(�a����[BOT�CN��}���׹��V�*�%?�7;�ce��^��a�-����,_���v�|v��vE�7�����P���-�*;��=GZ��|��y��s�@
=�{%H("C����T?#�����P��-n��:CXIA���Q4[6�E�=�y�W�
~��"Cc�x����3�s�lb�
�=�-����c�rCi^)Վx��~�,(#�뮒����s������߃Ϣ(5R����M���#�QO�L8~8��Z��
�+#ē��ښavզ�tx�;�Ҩ�U�ToI%@���ڀ@�|2-�^`e�eWp�$�dWC�/z\�,��<#�'V(���
�Y�/^�ߒ8�]Uևw���s����K��j��H®#����c  �������KĠ���`����dc�~j��~Ǥ����՞�P�[��@��������$~�c��-��0�l�Bb��&���,u����B�GK����*��6/3ɩ��1���}'ƲC��?{ 1�yu���LJ~u�jgg�C�`.2XY��R���0������?���ʱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``D(���
0�
�
8���o���E���o��pT�^B���hp!p!c�!�!�n`'`'�w - -D�}dd
�����pp��(�0000 ��<!�<��<!�<��<!�<� �h=!h=��X?!X?��@!@���B!�B�C!C �(DaCDLE0"|E�M1PKKH[2��/�3�3'lib64/gems/ruby/ruby-lsapi-5.6/lsapi.sonuȯ��ELF>�S@@,@8	@�� PP!P!�� h
h
!h
!��888$$������  S�td������  P�tdp�p�p���Q�tdR�tdPP!P!��GNU�@�NfA�-�I�?h�\�^C�	H�‚3@(�L�`���q�CS�l����P*�f�R�������������������������������������������������n�}�'3qѮl>�&��Sɶ��
���ܮʼnSO��`��[is�|&߱R����D�/y7ř����k���Պ e�Y����&09=��By:%/�=��ejO�z�J�6�'��l#mNU�L�C�B�1�{�!�\�$�O#W��2�3S=ap��b�U�0��6�������aD7�jp#�7����ĴDI���Ί=\���4y�ݾCE���к�Q��u���o��	��r�SѮ����Io���|q%h6	󝵛���'
���=��qX�[�u��	� �f�� �	���!
�y��sO��[	��|

����[�7	P	+	���k�	�&����!\
�	2LRT	s��
�? +	q	ux	>A	���	��#	-r
cH�	�
".�/	�
"�
"$7x��	n,
�9
�
����A��	9��4�, �2(	��F"��X�f	E
��
L
rP��G���{F��pDЃ�
��K����
5�ti~@�� ��z�!	b`��.��8!���]0�Z\�e�n��v��1��p
Y���`�o�@���и�@rl��yjU�@|�� �-��q]���	��m��pYn���5@��oPw$��}l!�sUpT
E0u��qS��m7��mT0�(����p��������{F�0qJ�Ѝp@!��|�I�����`��!b �gP���@�@$�'!p�l��6 n�����P�@!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizecompareValueLocationset_skip_writesigactionsigemptyset__stack_chk_failreallocfcntlacceptsetsockoptmmapmemsetsetsidread__errno_locationclosewritevkillgetppid__ctype_b_locstrncpystrchrstrcasecmpstrtolgetaddrinfomemcpyfreeaddrinfoinet_addrLSAPI_Log__vfprintf_chk__snprintf_chkgetuid__fprintf_chkgettimeofdaylocaltime_rwaitpidforksystemexitlsapi_perrorstrerrorLSAPI_is_suEXEC_DaemonLSAPI_StopLSAPI_IsRunningLSAPI_Register_Pgrp_Timer_CallbackLSAPI_InitRequestmallocgetpeernamedup2LSAPI_Initgeteuidsignalg_reqdlopendlsymLSAPI_Is_Listen_rLSAPI_Is_ListenLSAPI_Reset_rLSAPI_Release_rfreeLSAPI_GetHeader_rLSAPI_ReqBodyGetChar_rLSAPI_ReqBodyGetLine_rmemchrmemmoveLSAPI_ReadReqBody_rFlush_RespBuf_rLSAPI_GetEnv_rstrcmp__ctype_toupper_locLSAPI_ForeachOrgHeader_rqsortLSAPI_ForeachHeader_rLSAPI_ForeachEnv_rLSAPI_ForeachSpecialEnv_rLSAPI_FinalizeRespHeaders_rLSAPI_Flush_rLSAPI_Write_Stderr_rgetpidgetcwdmemccpy__realpath_chkLSAPI_Finish_rLSAPI_End_Response_rLSAPI_Write_rLSAPI_sendfile_rsendfileLSAPI_AppendRespHeader2_rstrlenLSAPI_AppendRespHeader_rLSAPI_CreateListenSock2socketbindlistenunlinkLSAPI_ParseSockAddrLSAPI_CreateListenSockLSAPI_Init_Prefork_ServercallocsetpgidsysconfLSAPI_Set_Server_fdLSAPI_reset_server_stateis_enough_free_memLSAPI_Postfork_ChildLSAPI_Postfork_ParenttimeLSAPI_Accept_Before_Fork__fdelt_chkusleepsched_yieldLSAPI_Set_Max_ReqsLSAPI_Set_Max_IdleLSAPI_Set_Max_ChildrenLSAPI_Set_Extra_ChildrenLSAPI_Set_Max_Process_TimeLSAPI_Set_Max_Idle_ChildrenLSAPI_Set_Server_Max_Idle_SecsLSAPI_Set_Slow_Req_MsecsLSAPI_Get_Slow_Req_MsecsLSAPI_No_Check_ppidLSAPI_Get_ppidLSAPI_Init_Env_Parametersgetenvgetpwnamdlerrorsetrlimit__fxstatsetreuidLSAPI_ErrResponse_rlsapi_MD5Initlsapi_MD5Updatelsapi_MD5FinalgetpwuidsetgidsetgroupssetuidstrtollprctlinitgroupsLSAPI_Accept_rLSAPI_Prefork_Accept_rsigaddsetsigprocmaskLSAPI_Set_Restored_Parent_PidLSAPI_Inc_Req_Processedselectrb_str_newrb_hash_asetrb_funcallvrb_intern2rb_gc_markmunmaprb_check_typerb_obj_as_stringrb_f_sprintfs_fn_add_envrb_string_valuerb_string_value_ptrrb_eval_string_wraprb_str_new_staticrb_ruby_verbose_ptrrb_define_global_construby_strdupmkstempftruncaterb_str_buf_newrb_str_catrb_num2intrb_fix2intmemmemrb_yieldrb_gc_writebarrier_unprotectrb_io_putsrb_ary_detransientrb_exec_recursiverb_default_rsrb_output_fsrb_output_rsrb_lastline_getInit_lsapichdirrb_stderrrb_cObjectrb_const_getrb_global_variablerb_define_classrb_data_object_zallocrb_stdoutrb_stdinrb_hash_new__memcpy_chkrb_define_global_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6__environ_edata__bss_start_endGLIBC_2.14GLIBC_2.15GLIBC_2.4GLIBC_2.3.4GLIBC_2.2.5GLIBC_2.3/opt/alt/ruby27/lib64�
���)���4ii
?ti	Iui	Uii
aP!@TX!T`!`!�!���!��!A��!��!��!#��!)��!.��!4��!;��!J��!Z��!j��!x��!���!��!��!��!��!�� !��(!��0!��8!��@!��H!��P!�X!
�`!!�h!�p!,�x!<��!@��!R��!^��!r��!���!���!���!���!���!���!���!���!��
!
�
!�
!'�
!:� 
!Q�(
!_�0
!r�8
!��@
!��H
!��P
!��X
!��`
!���!���!���!���!��!�!!$#!8!��X!`!h!p!�x!��!��!!�!2�!��!<�!H�!J�!R�!V!V�!W�!��!��!m�!{�!��!�! !�(!0!8!�@!H!P!X!`!�h!p!	x!
�!�!�!
�!�!��!�!�!�!��!��!�!�!�!�!�!!!�!! !�(!�0!�8!@!H!�P!X! `!"h!#p!�x!$�!%�!&�!��!'�!(�!��!)�!��!��!��!*�!+�!,�!-�!��!�!�!�!.!/ !0(!�0!18!�@!�H!3P!4X!5`!6h!7p!8x!9�!;�!=�!>�!?�!@�!��!A�!B�!C�!D�!E�!F�!��!G�!��!I!K!L!M!N !O(!�0!P8!Q@!�H!SP!�X!T`!Uh!Xp!Yx!Z�![�!\�!]�!^�!��!_�!`�!��!a�!b�!c�!d�!e�!f�!g�!h!i!�!j!k !l(!�0!�8!n@!oH!pP!qX!r`!�h!sp!tx!u�!w�!x�!y�!z�!|�!��!}�!~�!�!��!��!��!��!��!��!�!�!�!�!� !�(!�0!�8!�@!�H!�P!���H��H�9� H��t��H����5�� �%�� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q�������%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%� D���%� D���%� D���%� DH�=�� H��� H9�tH��� H��t	�����H�=y� H�5r� H)�H��H��H��?H�H�tH��� H��t��fD�����=5� u+UH�=ڻ H��tH�=>� ����d����
� ]������w�������ff.����^� Ð��H�GH+F�Hc�AVI��H�@AUATL�$�USH��tQH��H��tIH��I��L9�r�0H��I9�v'�KH�SM��sH�;�Յ��[]A\A]A^��[D��]A\A]A^ø������ff.�f����=n� �D���� Ð��OAWD�D�_AVAUATUSD�6�^�nA��x�j׋G3GD!�3G��V���\$�ЋW�^$��D�D1��\$�!�3WA��ʋN��F���p $E��‰L$�A1�A1�D��D�^!�D1�G��;�ν�D�\$�D�E��D�V���D�T$�A!�A1�E�E���|���A��
1�A�D!�E��1�D�D��*ƇG���D1�D�!�A��1�A1�D�D�N���D�L$�E��	F0�D��!�D�nA1�D1�D�G���F�E��D�f ���D�d$�D�^(A!�A1�E�E��ؘ�i��A��
1�A�D!�1�D�D����D��ʋ^0��D1�D�!�A��1�D�E���[��D����1��!�D1�D�D�N,��A1��D�L$�G����\�E��A!�D�f8A1�E�D��"�k��A��
1�A�D!�1�D�D�N4��E���q����D�D1�!�1�D�E���Cy�D����1��!�D1�D�D�V<���1��G��!�I!�1�D�D�D$��
�E��b%���1�!�1�D�D�D$��E��@�@���1�!�1�D�D�D$���	�E��QZ^&��1�!�1�D�E��6�Ƕ����1�!�1�D�D��]/։���1�!�1�D�E��SD���1�!�1�D�E��
��؉���	�1�!�1�D�D�D$��E��0����1�!�1�D�D�D$���E�����!��1�!�1�D�E���7É��1�!�1�D�D�D$��	�E���
��1�!�1�D�D�D$��A��0�ZEA��A1�A!�A1�A�A���㩉�A��A�D1�!�1��t$�D������D��1�!�A��
�ogD1����	�1�D!�F���L*�1�D�D$�Ή���1�A��A!���B9��A1�DD$�A��A�D1���D$�����q���D�D1�1�‹D$�����0"a�mD���1�G��8�1�Ɖ��1��1�D�D�D$��	E��D꾤���1�1�D�D�D$�A�����KA���A1�A��5`K��A1�AЉ�A��p���A��1�A�D1����D1�D�1��A��	�~�(D����	1�G���'���1�����1��1�D�D�D$�A���0��A���A1�A1�AЋT$�A����2���A�1�D1�֋T$��	��
9��ى�D�D1����1��D�����1�1��C���|�A��A1��A1�A��D$�A����0eV�ĉ�A�1�D1��A��D")��D�t$��	��D�	�D1��A��
��*CD������G���#���	�1����
���	�1�D�D��9��������Ή��	��1�D�D���Y[e��\$���	�1�D�E�������D�t$�����	щ�1���D�E��3}���D�\$�
���	�1�D�D�D$���E���]����	�1�D�E��O~�oA���A���D��	�1�D�E��
��,���D�T$�����	�A��1�A��D�E��6C���D�t$���
��A���N�	�1�A���~S�A��D�E��A����A	�A1�A��5�:�A�D��A��A�D	�1�Љ�3���*�\$���D�	�D1��D��F���ӆ�[��
��]A\�A]A^	�1������։�	�1�DƉ�A�4A_���OW�G�O�W��ATI��1�U��SH��dH�%(H��$�1�H��H�����H�<$t)H��$�dH3%(u<H�Ġ[]A\�f.�H�{��1�H�މ�DŽ$�L�$$�����DH�
i� H�A(H�Q8H9�s;8u�fD98tH��0H9�w�1�Å�tH�P0H;Q0v�H�Q0�Df�H�@$@@�@,�������DUHc�SH��H��H��H�@��H��t#H�SPH�H+S@H�C@H�H�SPH�CH1�H��[]ø������f�U1҉�1�S���H�������t��t/H��1�[]�fD��t��H���‰߾[1�]��f�����ff.�SH��dH�%(H��$�1�H�T$H�t$�D$�D$��F�Ã��tf�|$t'H��$�dH3%(��u0H�Ġ[�f�H�L$A���Ǿ�������ff.�f��� ��Hc�H�vL��H�L9���H��H)�H����S�Nf.�E��������L�I؃�H��L�G�L�E�C�H�D�G��w�I9�thH��H)�H��~SH�pH�2H�pD�H�2H�pD�XH�2�pA��E�L�@��L�Ic�A���pD�Hc�L�M�L9��i��������[�f��0��u�H��[H�1�ø����Ë��u�H��H�1��f�AVAUE1�ATUH�-�� SH�}(t[D��]A\A]A^��EEA������!Lc�@���D��
 DI�E1�1�A���Mc�L����H��H���t]L��1�H����K�vH�](H��H�]0H�H�]8H�CH��� H�{� H�CH��H�l� H�m� ��[D��]A\A]A^�H�=EpA�����1����H���H���H+��Hcp�G )�H����H��xsH9�AVHN�AUATUI��SHwH��D�wH���L��H��D����I��H���u!���8u
�}� ��u�D��[]A\A]A^ÐH��~���[]A\A]A^ø�����fDUSH������tMH����������u�O��8u
� � ��u�H�Y� �E����H��t�(H�z� H��t�@��H��[]�ff.�@AWAVAUATUSH��������� ��t8A��A��I����A��f�I�7D����S��Å�-���tx��� ��u�D��D)�H����[]A\A]A^A_��A)�E��~ڋ^� ��t�I��f�H��)�I���~�H�PHc�H9�v�HI�H)H�x�����;����t���s����E)�E��AO��r���1��k���S�U� ��t-�=G� ��t+1��t����u���[�8������1�[�@��9�[����ÐAVAUATUH��SH��H��PdH�%(H��$H1����H��
fDH��H��DB u�L�d$@��H��L�����D$@Ƅ$?</tc<[����:L��f�E�e�H������|$@*H�X�zH�5;mL�����A�ƅ��;�EM�����H�}�lf�uL����1�H��$HdH3%(�QH��P[]A\A]A^�D�
M�l$�]f�ML����H�����|$A*H�XA���1��;:�
��1�H�H���2�H�Í@�=����E��uf��1�f�]�Y���D�Ef�1�H�T$)D$H�L$L��D$H�)D$ )D$0H�D$�J���upL�d$H��A�T$I�t$���L���'��L��E1�M���������EA���<�����EE1�M���"����::A�D$M��fA�$�
������������'����AUI��ATU��SH��(H��$�H��$�L��$�L��$���t@)�$�)�$�)�$�)�$�)�$�)�$�)�$)�$dH�%(H��$h1����t�=ͼ ���ML�d$`L��@��@��u��������L9���H��� H�;H�L$HL��H��$P�D$HH�D$PH��$p�D$L0H�D$X�8�H��$hdH3%(��H��([]A\A]�H��� H��L�QjH�����L�¾d1���s�H�HÁ��K����- � ��H��H�ߺUA��L�j�dH�����1��-�H�H�XZL9�����H��H��� M��1�L)�H��i�H�;�����f�H��1�L�d$`H����H�t$H������uI��������D$�L��L�Wi�P�D$PD�L$(1���Y^Hc�L��L����H�D$L��o�L���P�D$P�D$$P�D$0P�D$<P�D$H��P�D$TD��l1��3�H��0Hc�L�����_�ff.�@��AWAVAUATUSH��(dH�%(H�D$1�H�=�� �.�D$�H�l$L�5�hL�-�hL�%do@�H�������A�Dž����T$�Ѓ���<~$��M��L������D��ME�1���D;=� t�D;=�� tUD�����H��H��t�H�H1����@�1@�Ɖ�@����H�¹ H��t�(H�"� ��h�K����F� �����9����H�5�� H�N0H�V(H9�s*D�A�H�A�E��t�DH��0�8��u.H��H9�r�H�F0H�D$dH3%(uH��([]A\A]A^A_�H�N0������D$�@�1�D$�X���H�� H���D����C���ff.��AWAVAUATUH��SH��H��(�=� dH�%(H��$1���t1�����thH�C(I��I��D�3L+cI)�H�C D�{H)��]��D$�D�H��E��E��AT��H�5�m�AU1�U�L$,�L�H�� �#��e� ��t)H��$dH3%(ulH��([]A\A]A^A_�@D�H�\$H���H�߹�AQL��m�T��XH��Z������t
1���fDH�=f�<����e�DAWAVAUATUSH��L�� I�Z(M�j0L9��H�|$E1�E1�E1�@��B��ve�CA�l$����A�BD)�A;B�E9r�
��� ��~ H�SH�L$��H�H)�H9���fD�CA��f��A��H��0I9�w�A�R��D)���1�)ȃ��H��[]A\A]A^A_�fDH�C H�t$H)�IcBH9����C��i�gf��f����)���f9�u��� �����Cf��~pH�5�l�1��m��;�	������tp�CA��L�͵ A��f�C�5���fD�C��f�C�����A�������H�5�l�1����;��a����u������8u��L�U� ����H��E��E��D��[H�5cl]�A\1�A]A^A_��fDH�t$H����������@E1�E1�E1��z���f.���UH����S��H�����H����H��I��[H�5�c�1�]�9�f����� 1���u1��=�� ������ΰ Ð���° �D��H�=�� �@��ATUSH��dH�%(H��$�1�H���}H�H��H�1�HLJ	H�ى�H��H)����	���H�H�{`��I��H���0H�CxH�S`L�c`� L�H)�H�CxH�CpL�H)�H�CpI��$H�Ch���H�C8H�C(H����H I���H��H�C0H��(L�cxL�cpH����l��������twH�T$H�t$���D$�������t
����8kt0�����1��kH��$�dH3%(uiH�Ġ[]A\�fD�+����C�����C�1����1�����H�=�a��1���1����S���_���fD����������ff.����S�U� ��t	1ۉ�[��#��H�5L��
�в ��� �e�H�5>��
�T������������H�=� 1��X����tI�ٲ �t��H�=a��� �-��H���c���H�5�`H���E�H�v� ��[É��D�����1��?������H�=� �`����H�W(H�w`HLJ�H��HLJ0H���H�W�H�VH�W�H�W�H�W�H�W�H��)���81����H�����SH��H�H��t�:��H���H��t�)��H���H��t���H�{@H��t�
��1�[�fD��H��tG��wBL���Hc�A�T�4��t/Hc�A�pH���H�H€:t
�H���H���1��ff.�f���H��tP��tJSHc��H��;��}H�S�HH������[������~	Hc���и����[Ã����AWAVAUATUSH�Z�H�H��H�D$H���:�G�����H���%H����I��H���I�����I��I��L��fDA���)�Hc�H����L9�Hc�IO�IvI���
H��L������H��tML)�H��L��H�XH��H����A��I��A�$��D)��EH��[]A\A]A^A_��L��H��H��H�����A���L�|$I���I)�A���M���?����D���L���L�Hc�H��~�A����-���H��1��|���������v���@��AVAUATUSH������I����H��H����H��H����H���H+��E1�H����H9�Hc��HO؋��)�H�H��~)H9�H�wH��HN�H�H��I������E��L�L)�H��t6�E�u@H��H��D���j��H���u4����8u
�P� ��u�M��t-M��[L��]A\A]A^��H��~�I�H�H)�u���I�������D��H�O(H�W8H��LJLS���H)ʍB����H�GpH�0H�pH�@H�wp��~Hc�H�HH�� H�P�H�O8H�Gp����AWAVAUATUSH��H���H�T$H����H��H�<$�I��H�=)\�������HcB$H���H�@H�,�H9�r�Zf.�H��H9�vGH�3L���l����u�H�CH��[]A\A]A^A_�H�D$L9��I��M9���f.�1�H��[]A\A]A^A_��H�$1�L�=�� L���@A�l�4��tI�4�L����������H��H��u�H�D$HcP 1���~�H�$H��L���M�tM9�s�H���H�$I�D$H�D$@IcMIcmH,$L�|
L9��)���A�\$���)����{��H�8H�D$�'���-t	��_����H��H��I9�t�����H�U:�t������8����IcUIcEH$H€:����������H�$Hc�Hc�A�VH��H€:�������@��AVAUATUSL��$���H��H�$L9�u�H��dH�%(H��$@1�H����H��H����H���H����H��E1�L�
� L��g�f�H���Hc�HcT�4��t7�qH��M���
H��Ic�A��H��L�E��H�TD�T�tH��H��u�H���HcP ����H���H��L�L9���Ic�I��H��L��f�H��H�� I9���HcHHc0A��H���LcPI��HcHH��B�D�BH�J�HH�2�JA��u��H�
� � L������$DI��H�
�� Ic� L�����E��taE1��@A��I�� E9�~CA�MI�UI��A�uI�}�Ӆ��H��$@dH3%(u6H��@[]A\A]A^��D����1���@Ic��U����������<��ff.����AWAVAUATUSH��XH�t$ H�T$dH�%(H��$H1�H����I��H����1�E1�L�--fH��L�%Ò H��H���Hc�HcT�4��t/�HH��A��A�t�I�<�H���L�D$A�ׅ��4H��H��u�H���D�t$<HcB ���L���H��L�H�D$0I9���H�\$(L�t$@fDH�D$(A�l$Ic$A�HTTPH������A�F_L�<H�D$��O�Hcʼnl$8I�H�D$I9���M�nI��I�o�I���_@��-t�K��H���A�E�L9�u�H�D$I�D�t$8L�D$�L��IcD$IcT$HT$���H�D$ A�L$�Ѕ�~"I��L9d$0�-���H�l$(H����B D$<H��$HdH3<%(u'H��X[]A\A]A^A_�DI�F�v�������������ff.���H��t7H��t2H���D�@$1�E����H���H��H��D�����������f.���H��t7H��t2H���D�@(1�E����H���H��H��D���S��������f.���H����H�O`H��tz����Ѓ�tr��L�G@������H�WPL9�vH�wpL)��L�H��H�V�H�wpHc�0H�T�H�Q�����,H��(LJ(LSH�1�H�Oxø�����f.���H����H�GpH+GxH�������G�����SH�������H�C(H9C8tH���@��H�SpH+Sx1�H����~J�
إ �����u$�{H�sx����9��~H�{�������ǃ�H�S`H�SxH�Sp[�f�H�G(H9G8�c���1�������l���LJ�H�W(H�W8H�W`H�WxH�Wpø�����f���AWAVAUATUSH��XH�t$dH�%(H�D$H1�H���.H�=� ���GI�������;��H�G(H9G8t
H�$����H�$H�D$L�|$L�d$H�$H�l$ I��H��L)�H����H��@�@L�|$0HO�L�d$ �D$LS�BL�jH�T$8I׋j� �D$D��H�D$(H�l$��uA�~H�4$D����H�I9�~�I�~��H��L)�H���L��H+D$��H�t$����H�L$HdH3%(uH��X[]A\A]A^A_�H��������d��@AWAVAUATUSH��H�$H��dH�%(H��$1�H��I��I���e��H��8����H��I��H�/aHD��5��A�����AW�H��SA���1�AVL��Q�AU����H�� H��=O�Hc�M��t7L���_��1�H��$dH3%(u&H��[]A\A]A^A_���������o��ff.�@AT�~f�A��UH��SH��dH�%(H��$1�H�|$H��)$H���H�H���� ��xH��$dH3%(u?H��[]A\É�I��D��H�5)Y1��*��1�H�5�PH���i������������ff.�f�ATUSH��H�$H��H�$H��dH�%(H��$ 1���� �����?/H��H�����H������H���bH�ߋH����������!�%����t�¹�����D�H�WHD���@�H��H)��</��)�Hc�Hc�H�1�H���^��H���JL��$�H��L�����H�����H�=�OL������������AH��1��R���Ń������uRH�=ˠ H9�t
H��t�<��H��1����H��� H��$ dH34%(����H�� []A\�fD���������������n���@�C������4�����
�+����H��H�5VW1�������r����r���DH�߹����������S���fD������������H��H�5W1����������s����H��tv�����t]S��H��tC�uWH�C(H9C8tH�����H�CpH�� H��H�H��H�@����H�Cp���H�����1�[�@�����뢸�����ff.���H��������u��u1��f�S��H��tR�ubH�C(H9C8tH���`��H�CpH�U� H��H�H��H�@����H�Cp����H�{�:����������1�[��1�H�O@H9OPv�����닸��������AWAVAUATUSH��H����H���|���I�֨�,���aH��H�t$H����>��L�{8I��H�C0L)�H9��>L�t$L+{(L��A�@L��L�f�I��M)�M����K�H��@���σ��LSL�Cp�N���I�H�D���I�0H��I�@H�KpM��~H�C(M�xI�H E1�I�@H�C8H���L�1H��M�L�I�H��H�KpH9��e���H���m�����thI��L��M)�M���U���I9�t
H���I�����tDL+t$H��L��[]A\A]A^A_�DM��@�@M)��(����K��������I�������H�t$H��L������Hk8�f.���H�������������AVL��AUI��ATI��U��S���H���u\��H�߉���{��A�D$�{L��ǃLS������H��u0�{L��[L���]A\A]A^�����k������[H�����]A\A]A^�H���ff.���AWAVAUATUSH��H����H�������H����������D$����0��xI��H��I��H���
��Lc��\�CHc��T���
t��
u(��H�DLc���L�H����
t�
t�L�������~6Hc�A�T���
t��
u#��H�@��~A�L�H����
t�
t�E�<A�G=���I�|$PH�H�TI9T$Hs7H��I+t$@L������2%�)�)���������I�|$PL��H��Hc�A�����Mt$PH��L��I�FI�D$PA�:I�|$P�}��M�D$PI�I�@I�D$PA�Ic�$0fE��T8H�Ѓ�A��$0�D$H��[]A\A]A^A_��D$������ff.����H���
H����B�=����������0���AUATUSHc�H��f��D�A��<
t<
uH���؅�u�H��[]A\A]�I��H�PH��H�DI9D$Hs3H��I+t$@L������2%�)�)��������tQI�|$PH��H��A���P��I\$PH�CI�D$P�Ic�$0fE��T8H�Ѓ�A��$0H��1�[]A\A]ø�����S������D��AUATA��UH��SH���?dH�%(H�D$1��D$f����f��
t1�����f����H�L$dH3%(����H��[]A\A]ÐA�1Ҿ����Ã��tʼnǺ�1�����H�L$A��ߺ��ؿ����u#D��H����'����uD����	�����o�������߻����D� H���Z��D�e�O����A��k���DH�}A�n����}�N����c�����H��t����������ff.����U��SH��dH�%(H��$�1�H��H�������u/��H�����H��$�dH3%(uH�Ę[]����������Կ��@��1�H�=�� t������AUATA�'USH����� ��'DN�uD�������� H���@�A�����H��H�.� H����H��tH�-�� �t���ʖ �i����Ɖlj�� �J���U���D�k H�� D�cE��u<�����D�����SuG�CH�,H�C����1�H��[]A\A]�@A�|$�C�{�˸�����ك�ÉS�ff.�@��H�e� H��t�8�ff.�f���H�E� �BH�B(H�R8H9�s��H��0H9�w�H��� H��t	���H��� H��t	����fD��H�m� H�H;� �wH��H�H;�� �����ff.�@��ATUSH��H�� dH�%(H�D$1�H��� D�`���H�SX�+� ���H�kXH�-/� 肿��H�W� ����� ��� H�Ӕ H��� H��tH�� 1�1���H�-ߔ �E��H��� H��t��{1��F���8� ��uH�u� H��tA�D9 ~�� �� ��ut�;���u]H�LS�[H��H�$�CO�D$����H��߉D$�׻����� 1�H�L$dH3%(u)H�� []A\�D�K���������������t���p�����H�5� SH���@H�Xt1��/���H�SXH�BH�B�{����C����1�[���AWAVAUATUSH��HH�� H�|$H��$�L�edH�%(H��$81����H����L��DŽ$(H��$�詾��H�r� H��襺�����cH����L��DŽ$(H��$��k���H��� H���g������H�X� H���K�������H��� H��
�/�������H��� H����������H�D$1�E1�L�d$ �ʑ L�|$ǀ��D$H�� H��t	H�=� ��1�课��I��L9�t71���������L���P���C��t�S�����D$fD�V�f���H�׍ �L��H�1���H�Hc;����;M��L��H�D$H�D$�����������?)ѺH��1�H	T� 1��� �Ń���������I����8��1�H�5�� ��ݸ��1ҿH�5� �ʸ��1ҿH�5\� 跸��1ҿH�5�� 褸��1ҿ
H�5�� 葸��H��$8dH3%(���kH��H[]A\A]A^A_�fDH��� H��udD�C�S�K�
D9���H��� A�����H��tD��H�5H1��v����������ޏ M��� �������fDD�0D�CE��~�E��~����e���D�ۺ��A��u���D$�t$9��/������������D�;�)��A��H�D$D�pA���uc�Ҷ���0���k������b���H�=�>D��蟹���j���f.�H�=z>������������H�=G������	������1�1����H�\$H�CX��������������=�� �f����=�� �D��H��� H��t�x�ff.����H��� H��t��x�x����H�u� H��t��~�x����H�U� H��t��~�x����H�5� H��t�x�ff.�����=Ǝ �D����� �D����� Ð����� �D��AUATUH��H�=@=SH��8dH�%(H��$(1��m���H��tH��� �H�=� ��H�==�F���H���E1��
H��边������H�=	=����H��t�
1�H��薹����� H�=�<��H��H��t�
1�H���m���I��A��WE1�H�=�<���H��t�
1�H���<����� H�=�<蚳��H��tH�Ǻ
1�������菳��H�=�<�s���H������ H�=�<�T���H��tH�Ǻ
1������Y����������H�=�<� ���H����1��
H��蘸�����OH�=f<��H��tH�Ǻ
1��o���������H�=T<�̲��H��tH�Ǻ
1��H������1���H�=E<襲��H��tH�Ǻ
1��!��������H�=2<�~���H��tH�Ǻ
1�������ò��H�="<�W���H��t�]���H�= <�A���H��t�
1�H��轷����� ���_H�=<����H��t�
1�H��菷���� D�~� �p� �b� E����H�=�;���H�����=B� ��u	�P�5� �5+� ����H�=�;蓱��H�����
1�H��������� �…�t��� �����H��w H�H����H�H����D�Ɗ L��;L�
�;L��;�C�
H��L���������t@H�ֹL����€���D	�t%H��tAH�H��t9�H��L���������u�H��fDH�JH��H�J�H��u�H�H��u�1ۉ�H��$(dH3%(��H��8[]A\A]�fD��� H��趲���D����<G�~A��<MED�A������s���D��H�H��� �_�����������@H�=p9����H���������fDH�=�8���H����������fDA���f��@�K� �#���f��˳�����fD1�E��H�����螷��H�'v �8��������H�=�9���H��H�݈ H����H�5�9H�����H��H��� �6���H�����-�� ������H�5�9H�����H�5�9H��I��H�l� 觶��H�5�9H��蘶��H�5�9H��H�?� 肶����~H�5t9H���n���H�� H�=8� H���~A�ԅ��L���H�=-A���H�=� �Ԯ��H�� �$���@H��H�$H�D$蒵�����DH��H��$���$�������t
�ޮ��1҃8k�‰؇ ����H�=8����H��t1��
H��舳����~�v� H�=8���H��t1��
H���^�����~�H� H�=�7踭��H��H���iH�Ǻ�1�1��˵���Ã����H�T$�ƿ�/���������D$(?���H�5�� �����H�������w���H��� H��t�xc�@d�x��@�D�
�� E���9���D��� E���)����Z���f�H�=-7����^� H���K����]����
R� ��u
�D� '�:� �������(� '������� �)���f��Յ�tbH�� H���-�������DH��H�5�>�1��
������s�����������A��Hc�讲��L�%�� H��H��� �a���裮���Å�t��=�� ���@����b� ��u
�l� �5r� �������`���H��H�5�=�u���H��H�5�=�1��u�����������H��H�5�=�F���ff.����AVI��AUE��ATI��UH��SH��t��4H��u!�(fDH��H��褭��H��L����w���H�]H��u�M��tE��L������[1�]A\A]A^ÐIc�L��L����������H�#Eg����H�GH�H��ܺ�vT2H�G����AWAVA���AUI��ATUH�oSH��1�H���G�O�@�ƉWD���������W��?t;A�ĉ�D��H��H�|�@D)�A9�rhA��G�t4�L��L��D���H��L���9���A��?vWE�f�A��I��I��I�H�޺@H��H��@����H��L������L9�u�A��?D��L��H��H��[]A\A]A^A_�ܱ��I�������ATL�fUH��S�FH�����?��L�H�z���?)ƒ�w=��t1������9�r�L��H������f�CAD$AD$ I�D$0��71�)��2���H�CH��L��H�CP�?����oH�{1�H��MH�H�CPH)��KX���H�[]A\�ff.�f�AWAVAUATUSH��dH�%(H��$�1�H��t^� �I���A�����f�Mcg I�oA�_@L��H����C���H���uM�X����8u
�=)~ ��uٽ����H��$�dH3%(����
H�Ĩ[]A\A]A^A_�f���~�A��A������u���I���ALJ�f�8LS�|�x�r�@t�P�Hf�@�H�P�X���N������	M�g���A;G �ZA���9�~u���E�o)�H�Hc�I��H��L��D���2���H���u$�G����8������5} ��u�����������A��M�gA���9��I�D$,H�D$Hc�I�I���D�hA�����h(A9��}A�� �/Hc�I���H�4@H���e���H���A���I���I����h$A9��}A�� ��Hc�I���H�4@H������H����A���I���I���H�l$�p(I���L��H�����������I���I���L��p$�������hM���Ic@���o9��gIcP���[9��SIcp���G9��?IcH���39��+I�H�H�H�H�I���H�T$I���Ic@ H)�I���H��H��I���H��H�H���I���H�I���IcHI���H�H��H�D$I9���E����1�D�L�4��t9�d�<B�9�ZH��H��u�IcP ���kI���H��H�H9�r*�RP9�!�P9�P9�H��H9��-�9�~�H�5^0�1�譮��H�5�/�1���藮���>���f�H�� �"���H��� ���I�GA�G  I�������P�Hf�@	f�@
�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�P�H�H�P�Pf�@f�@f�@�H�H#�P�P �H �H'�P#�P$�H$�H+�P'�P(f�@f�@!f�@%�H(�P+f�@)I������1��
fDI���HcȋL�4��t#f�BI���H�T�4�
�rf�B@�2�JH��H��u�M���IcP ����I���H��H�H9������pH��@�p��p�H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��p��H��H�@�p��H�H9�w�M���A�pI����b���Ic@I���H����0�J| ALJ���t`��{ 
�{ A�������{ 1������L��Hc��ϩ��I��H������I�GA�o I����u���I���D�%�{ D�-�{ �B(A��A���1Ic�H�4II���L��I�
�9�H�qH�=-����������I�J�D�B(�9�xH�qH�=�,���������XI�J���B(��$�A�D$I���KA�zH�L$�;M�bfo{ L�t$ L���AoL$AT$M�l$)�$�踪��� L��L���8���H�L$�L��H���#���L��L������H��$�I�D$H��$�I3L$H1�H	���D�$$D�l$E����D��D�l$��H�=Tz I��H��������I��D���z ���M���H�=�y t"L��D��L������Ń����������P�|$臨�������E��t$A9u��H�t$�螤�������D���=����Ń�����5�y ���$A�?D�5�y ���t�@���A�����H�5�(L���*���H��tH�����H��y f�)wy �#���A��H�5
l 1��K���H��@�������H�5Z*�1��Y�������L������H��������
1�H��菤��I������H�5D2�1�����H�5i2�1����D�%�x ��x D��D$�4���H�=�x I��H��tZE���W����7����E1�1�1�1�������������H�=u2�������H�5�)�1�耨������E��|$迦�������M���2����;�����|$藦�������E������1�H�5�)L���u������I�}觧���Ń������1�H�5q)L���K�����fD�=�w ������-�w ��w E���D$A������I���F������H�5�(�1�覧��������H���H)���H�5x0�H��1�聧������1�H�5�(L�����������
�������1�H�5�0L�������A�#��L��H�
s2H�s 解�����1�H�5�(L���a����ff.����AVAUATUSH��dH�%(H��$�1��D$H���H��������	�;1�L�l$L�d$L�t$H�k�l����br �����{�ul�;�����L��L���D$������C�����H��v H��t�@��H�Tv H��t��{1�����f�|$���=�u u|H���4��tH��舴��H���`�����q ���d���1�H��$�dH3%(u}H�Ġ[]A\A]A^�D賜�����������������������{�H�5h �\���H���f����ы{L���A������;�������ff.���AWAVAUATUSH���D�=Tu dH�%(H��$�1�E���xH���@���H�-�t H�����}����u ;Ng �DH�-%u H��t1��a���H�ED��p E���H��$L�|$PD�cA����:E1�A�f�D�
Up E����D��t E��tH��t H��t
�@f����L��H��1���H�Ic�臝��D��H�D$PH�D$X����A���?)ѺH��H	��D9#��1�1�A�|$M��H��
p D9#������H�%t H��t
�@D9#��%f A��D9���1�葳��������f������H��$�dH34%(���'	H���[]A\A]A^A_��K���L��$�H�����DŽ$hM�l$H��$�L���̞��H��$L��H��H�D$@迚�����AH����L��DŽ$hH��$�腞��H��$�L��H��H�D$0�x������PH��$�L��H��H�D$8�S������+H��$`L��
H��H�D$(�.������H��$ L��H��H�D$H�	���A�Dž���H�D$PE1�L�l$`H�D$H��$�H�D$H��$`H�D$f�D�%�q E����H��q H��t	H�=�m ��1�蔞��I��L9�t<1��ձ������L���5����E���D�uE���M��E1���V�F���H��m �L��H�1���H�Hc}�՚���}L�D$L��H�D$PH�D$X�����������?)ѺH��1�H	T�`1�fm ������������'����8�����H�t$(1ҿ
轘��������x������=�����������_����5
q ��tH�&q H��t
�@f���,���D9#�
D������C�����H��p H��t�@��H��p H��t�D�c1�D���N����
@l �����=�o �����{�H�5�b ����H����������H�Ap H��t�*H�qp H�������B���(���@H�Qp H��t�@��H��o H����������@�˖���8�B����-���DA��D9�����M�����=rk ������譟����������=Vk �����H��o �
H��t��D��H�po H��t�
�A9����������H�Qo H��tD��҉T$$D�E~:E��~5���W����T$$A���˙��A�����輙��A��u������D�E�U�M�
D9�vH��n A�����H��tD�H�5j&�1��ƞ�������������D$藕���0������������H�=O �g����T$���fD�}蠩���C�����1��m���H�|$I�����H�|$�����H�T$H�t$1�萔�����6������������1�EM��tA�M�gM�g�{E1��c����C����H�t$1ҿ�;����������H�=t(�G������f��;�)���������>���fD�D$$菔���0���d������T$$�W���H�=c�T$�W����T$����fDD�#A�����������fD�nm ���R���D��h E���B���H�;m H���2����9�h �����{�H�5�_ �Д��H�{�w������H�='�f�������̓��H�=M'�0讖��M������A����H������…��
H�{����H������\h ���������H�=J���������������H�t$1ҿ贒������H��k �����rl ����L�=rl �Xl H�5l �7l H��k H��tH�lX 1�1���L�=7l A�G��H��k H��t��{1�蝦��D�-�g E��uH��k H��t!�E�9~�jg �hk �����;���t��������H�t$@1ҿL��$��	���H�t$01ҿ���H�t$H1ҿ���H�t$81ҿ�֒��H�t$(1ҿ
�Œ���kH�LSH��$��*&��$��ޒ���L��$�踒���ij ��j ���H�=?"�J���������%����˚���������,���H�=�$�"����Q���H��j H��t*f�C1��C�D$�C���C�����T$H�C(H�C ��j �������fD���=~j �|j �ff.�@��H�5f ������f.�f�����fD����n H���ff.���H��V H���H+���H���HO��D��H������1��f���1��f���ATI��H��US��Hc��h���Hc�L��H���Z���H�=#n H��H�����[�]A\�ff.�H��H�5�i dH�%(H�D$1�H��m H�$H��t-H�=�m H����H�D$dH3%(u&H���@�H�=0&跘��H��H�i ��f���fD��H��S�����H��H�=aU 謏���H���f���H��H�=AU 茏��Hc5
m ;5�d H�=�l |6����H��l �����H��l ���l H���fD蛎����f����?��I�H�=�T ���H���H+��9�M�1���~+H��Hc�Hc5yl H5fl 聐����~cl H���f��ff.�@��H��H�=aT �|������tH�H��H�D��H���ff.���UH��SH��H���6���H�m ��t]��uaH��H���H��tT�؃���tJ��tEH�H�؉у���u5H�M�� u@H��H�p��H�}��H��H�[]H�D�@H�����u�H���ߎ��H�MH��� t�H�PH�p�f���SH���C���H��[�ff.���SH���S���H��H�������[Ð��H��H�=1S �L���H�}b H�����H��H�=S �\���H�]b H�����H��H�=�R 輑������tH�3b H��H�����USH��H�=�R �:���������H�=uj H��t�K���H�`j �����H�\j �Zj 腍��9Wj t H�5�e �Hj H��t[1�1ҿ�}���1�H�4j �?���H�-�Q H�;H��H�u艔��H�uH�;H���j���H�ka H��H��[]�f��H�=�"����H��H�}e ���SH��H�\$H�t$H������H���-���1�H����H��[�ff.�f���AWAVAUA��ATI��U��SH��H���<Q��~v<R��<Su"�H�=0"H���������@Mc�L��L���j���Hc�H��I���\���H�=%i L��H�����H���[]A\A]A^A_�fD<Pu��
H�=�!H�������u��ƀULc�u��H�=z!H��������t����?H�����I��H���H��A��L)�A)�Mc�H��L��H�L$谒���	H�=/!H�$����H�$H�=`h H���8���H�L$L��H���x����H�=!H�$���H�$H�=(h H������1�A�??L����I�L���9����H�=� I��襋��H�=�g L��H���Î�����fD�
H�=n H��������r����:�i������@A�L�%��Q���fDO�<4L��E1������H9�^ tH����ATUH��S���ʉ��L� �‰��H�5cg H�=" H�訍��裉��H�5�b L� H��tH�=5g H���[]A\�?�����H�=�����H��H��b ��ff.��=�f �t1��@H��N H����=�f ����t�USH��;=^ ��H�=ib �d���H��H���Ɏ���Ń����H��覈��H������Hc?f ��H���
�������E1�A���H��1��K���H�f H��������Ë��1�H��[]�f.�Hc���#���H��e H��u�H�=	蛏�����@��e 1��H�=��t������]�����fD�ˇ���8�T���H�پH�qI��H��M H�81����H���)�����N���H�=j�����������1���f���AU1�ATUH��S��H���V������������-�d ��+�d Hc�D�%�d �X���I�Ņ�t"D)�A�DI�D9�uD���������H��L��[]A\A]ÐD)�Hc5�d H��H5�d Hc��t����d ���H��L��[]A\A]�@H�}@��u&������xU�-_d �Qd )�9�O���T����ӏ���ؐD9�Hc56d L��DN�H5d Ic�����D%d �U���@H��A�[L��]A\A]�ff.��AWAVL�5�c AUATUSH���f�D9-�c ~N����D�-�c M�&�H��Hc=�c D��)�I��L�Hc�H��躊��H��t�L)�D)��XHc�H�����I�ą�~Hc5cc H��H5Ic H���1���Kc H��L��[]A\A]A^A_�f���H��1��a�����tH���#����H���fD����b SH����b ���2f����H���#�����b 9�b }1������uٿ��f�H��[�ff.���AUATUH��SH��dH�%(H�D$1�����H��E1�I���G@H����I9�}HH���4���H��uj�� tUH�CJ��H��L��I��H�$襄��H��� u�H�CI9�|�H�L$dH3%(�uVH��[]A\A]�@H�C �f.�H�����H���H�=菅��H��H��H�$�+����褅��@��1��f���UH��SH��H��dH�%(H�D$1���u;H�����t2H��ƒ���u%�� tH�{~H�S��H�S��u�DH���uX�ӄ���H��D$�R���H�E H�t$�H�8�PH��H�����HD�H�L$dH3%(uH��[]���[�����Ą��@��AVAUATUSH�Ӆ�����G�I��L�%�H�l��R�@��uj������t`H��tZ@��tTH��4tN�������H��H��H�=�����f���I��L9�tpI�}@��u�H�����u�H��tqH��u���s���H��I��H����I��� u]H��I�V��H���<
t�H��G H��I��H�0���L9�u�[�]A\A]A^����u�L���v���H��뉐I�FI�VH���f�H�iG H��H�0�n�[�]A\A]A^���AVAUATUH��SH��dH�%(H�D$1������I��H�6A���L�5}�w���@����H��H���H��tw����to@��ti�����u_�L��貂��H��H�����A9�~OH��F H�0H��tH����I�t�H��@��u�H�����u�H��t�H��u��H���x�A9��H�lF H�0H��tH���[�H�L$dH3%(�u0H��[]A\A]A^�f��;���I��A�H��H�$���!������AUATUSH��荃�������H�=XH��] H��] ��] �p��H��t8�
1�H��H�����H��~�MH���%���H�������-#U H�=�'��H��H��tH���g���H��H=���Xfof�dY )MY H�=E1���~��H��t1��
H��1��Y�����@��H�=;E 薅���Q���H�=��] �~��H����H����������H��D H�g�H�H�
E H�5�X H�H�] H���CL�%tD I�<$�Ӆ��H�5tX H��\ H����1�1�H�����H�=�\ H��\ �ͅ���H�=�<����H�=�I���(���H�=y\ L��H���F����H�5z�H�=��^���I�4$H�=����1�H�e�H�5�H��H�\ 评������H�=\ 1�H�'�H�5��k���H�=�[ �H�8���H�5��L���H�=�[ �H���H�5��-���H�=�[ �����H����H�5�����H�=�[ �����H�+�H�5x���H�=p[ �����H�����H�5`�Ѓ��H�=Q[ �H���H�5F豃��H�=2[ 1�H���H�5-蕃��H�=[ 1�H���H�5�y���H�=�Z 1�H�����H�5�]���H�=�Z �����H�����H�5��>���H�=�Z 1�H���H�5��"���H�=�Z 1�H�����H�5�����H�=�Z 1�H���H�5����H�=kZ 1�H���H�5��΂��H�=OZ 1�H���H�5t貂��H�=3Z 1�H���H�5^薂��H�=Z 1�H���H�5J�z���H�=�Y 1�H���H�55�^���H�=�Y 1�H����H�5�B���H�=�Y �H�_�H�5�#���H�=�Y �����H� �H�5~����L�%A H�=~Y �H���L�����H�-kA H�
A H�=�P H�P H��P H�JH�*H�4Y H�5A H�H��@ H��[���H�=Y L��H���� ��H�
�@ H�=RP H�P H�GP H�JH�*H������S{��H�(�K{��H��o���H��X 1���H�5�X H�=
���H�3H�=�����
{��H�(H��[]A\A]�@H�P�H��H�=ET � ��H��wH�3T H�.XXXXXXH�(����H�t+��H�=������u�����H�=X 1�H��H�5�蜀��H�=�W 1�H���H�5�耀��H�=�W 1�H���H�5��d��������H�=4�ׂ��H��H�US H��W �����H�=�诂��H��H�5S ���H�=��$����Z����H�=���x��H���>����J���fD�mH���{��H���f����KH���u{��H��t��
�-wN �O����kH���U{��H��u�-ZN �2�����H��H���Anonymous mmap() failedlocalhost%02d:%02d:%02d [%s] [UID:%d][%d] %.*syesnosystem()%s, errno: %d (%s)
/dev/nulllibpthread.sopthread_atforkHTTP_[UID:%d][%d] %s:%s: %s
LSAPI: jail() failure./etc/Can't set signalsaccept() failedLSAPI_STDERR_LOGPHP_LSAPI_MAX_REQUESTSLSAPI_MAX_REQSLSAPI_KEEP_LISTENLSAPI_AVOID_FORKLSAPI_ACCEPT_NOTIFYLSAPI_SLOW_REQ_MSECSLSAPI_ALLOW_CORE_DUMPLSAPI_MAX_IDLEPHP_LSAPI_CHILDRENLSAPI_EXTRA_CHILDRENLSAPI_MAX_IDLE_CHILDRENLSAPI_PGRP_MAX_IDLELSAPI_MAX_PROCESS_TIMELSAPI_PPID_NO_CHECKLSAPI_MAX_BUSY_WORKERLSAPI_DUMP_DEBUG_INFOnobodyLSAPI_DEFAULT_UIDLSAPI_DEFAULT_GIDLSAPI_SECRETLSAPI_LVE_ENABLEliblve.so.0lve_is_availablelve_instance_initlve_destroylve_enterlve_leavejailPHP_LSAPI_PHPRC=packetLen < 0
packetLen > %d
Bad request header - ERROR#1
ParseRequest error
SUEXEC_AUTHSUEXEC_UGIDLSAPI: setgid()LSAPI: initgroups()LSAPI: setgroups()LSAPI: setuid()Bad request header - ERROR#2
lsapi_accept() errorPragma: no-cacheRetry-After: 60Content-Type: text/htmlDEBUGNOTICEWARNERRORCRITFATALAcceptAccept-CharsetAccept-EncodingAccept-LanguageAuthorizationConnectionContent-TypeContent-LengthCookieCookie2HostPragmaRefererUser-AgentCache-ControlIf-Modified-SinceIf-MatchIf-None-MatchIf-RangeIf-Unmodified-SinceKeep-AliveX-Forwarded-ForViaTransfer-EncodingHTTP_ACCEPTHTTP_ACCEPT_CHARSETHTTP_ACCEPT_ENCODINGHTTP_ACCEPT_LANGUAGEHTTP_AUTHORIZATIONHTTP_CONNECTIONCONTENT_TYPECONTENT_LENGTHHTTP_COOKIEHTTP_COOKIE2HTTP_HOSTHTTP_PRAGMAHTTP_REFERERHTTP_USER_AGENTHTTP_CACHE_CONTROLHTTP_IF_MODIFIED_SINCEHTTP_IF_MATCHHTTP_IF_NONE_MATCHHTTP_IF_RANGEHTTP_IF_UNMODIFIED_SINCEHTTP_KEEP_ALIVEHTTP_RANGEHTTP_X_FORWARDED_FORHTTP_VIAHTTP_TRANSFER_ENCODING%04d-%02d-%02d %02d:%02d:%02d.%06d Child process with pid: %d was killed by signal: %d, core dumped: %s
Possible runaway process, UID: %d, PPID: %d, PID: %d, reqCount: %d, process time: %ld, checkpoint time: %ld, start time: %ld
gdb --batch -ex "attach %d" -ex "set height 0" -ex "bt" >&2;PATH=$PATH:/usr/sbin lsof -p %d >&2Force killing runaway process PID: %d with SIGKILL
Killing runaway process PID: %d with SIGTERM
Children tracking is wrong: Cur Children: %d, count: %d, idle: %d, dying: %d
LSAPI: LVE jail(%d) result: %d, error: %s !
Invalid custom stderr log pathFailed to open custom stderr logCan't set signal handler for SIGCHILDReached max children process limit: %d, extra: %d, current: %d, busy: %d, please increase LSAPI_CHILDREN.
LSAPI: failed to open secret file: %s!
LSAPI: failed to check state of file: %s!
LSAPI: file permission check failure: %s
LSAPI: failed to read secret from secret file: %s
LSAPI: Unable to initialize LVERequest header does match total size, total: %d, real: %ld
LSAPI: missing SUEXEC_UGID env, use default user!
LSAPI: SUEXEC_AUTH authentication failed, use default user!
LSAPI: lve_enter() failure, reached resource limit.prctl: Failed to set dumpable, core dump may not be available!sigprocmask(SIG_BLOCK) to block SIGCHLDsigprocmask( SIG_SETMASK ) to restore SIGMASK in childfork() failed, please increase process limitsigprocmask( SIG_SETMASK ) to restore SIGMASKCache-Control: private, no-cache, no-store, must-revalidate, max-age=0PID<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>508 Resource Limit Is Reached</TITLE>
</HEAD><BODY>
<H1>Resource Limit Is Reached</H1>
The website is temporarily unable to service your request as it exceeded resource limit.
Please try again later.
<HR>
</BODY></HTML>






	


replacesrandQUERY_STRINGREQUEST_URIPATH_INFOREQUEST_PATHSCRIPT_NAMESTDERRreopenftruncate() failed. 
File mapping failed. 
Memory calloc error[...]nilLSAPI_MAX_BODYBUF_LENGTHLSAPI_TEMPFILEXXXXXXRACK_ROOTchdir()to_hashCGI/1.2eval_string_wrapLSAPIacceptaccept_new_connectionpostfork_childpostfork_parentprocessputcwriteprintprintfputs<<flushgetcgetsreadrewindeacheofeof?closebinmodeisattytty?syncsync=RACK_ENVGATEWAY_Irewindable_input.rbNTERFACE/tmp/lsapi.XXXXX;�{\���f��(�q��@�q��Tr��hr��|�r����r����r���z��8�z��l{���`{����{���`|��p}��,`~��|�������p���D����l �����,����x��� ���P	`���x	�����	�����	�����	�����	p���
@���$
P���8
`���L
����`
���|
p����
Џ���
@���P���@����T������0���X����l���p����p������
��p
�����
���
`������0��|��������� ����x�������p��������D����X ���l`�����������0��� @���4P���Hp���\����p����������������� ����0����@���<����|������������T@���@���`��������,���@���T���h��|���`���������������� ���80��X������� ���@���`���������0���P���������P�d��@�������$��8��d��� ��zRx�$X���
FJw�?:*3$"Dpb���
\�m��p�m����m��
L��m��sE�I�B �E(�A0�z
(A BBBIA
(D BBBA��m����m��@�m��YG�J�B �B(�A0�A8��0F(B DBb0T�t���B�F�C �G�
 AABK�,u��k(��u��GA�D�J n
AAA4��u��UA�G�K R
CAGL
JCG �u���A�G�]
AJ $Pv��t��
CKF�LH<w���B�B�E �A(�H0�H
(D BBBD�
(D BBBAP��w���v�F�B �A(�D0�D
(A BBBBL(A BBBA�����$�8x��aA�A�D XAAH�x���B�B�B �B(�A0�A8�D@N
8C0A(B BBBH$`$y��OA�f
QC
EH@�Ly��YB�B�B �A(�D0�J��
0A(A BBBFx�h{���F�E�A �C(�G�
 
(A ABBDM�
I�
c�
A�
��
E�
M�
A�
k�
E�
E�
E�
E�
H�V�
HH�}���F�B�B �B(�A0�A8�D``
8A0A(B BBBDl�0��+B�B�B �B(�A0�D8�J�Y�H�P�C�	M�i
8A0A(B BBBEL�T�M�D�d���6B�B�B �B(�A0�A8�DP�
8A0A(B BBBG
8J0H(G DBBK$lȁ��7E�F�F IIO������������4����F�A�A �G�>
 AABG h����E�O
D�
A@���
T���h���Y|X���JE�D�����S �؄��]P�h
HXA�H����lF�B�B �B(�A0�A8�LP�
8A0A(B BBBH<8���F�B�B �A(�A0��
(D BBBI\���i`pd���F�B�B �B(�A0�A8�DP~
8A0A(B BBBAk
8A0A(B BBBHL� ���$F�B�B �A(�A0�H��Q
D���
0A(A BBBHL$���F�B�B �B(�A0�A8�G��
8A0A(B BBBFtЌ��F����F�H����$�ԍ���n�C�X�J�L�����lF�B�B �B(�A0�A8�D�A
8A0A(B BBBA`(	̏���B�B�B �B(�A0�A8�G� I� K� I� L� N� N� w
8A0A(B BBBI0�	h����B�M�D �G�L
 AABA<�	��=B�A�A �G� L�@I�@U
 AABG$
���T�WE�H�G� (
L����a�g
HS�HL
ؓ���F�B�B �B(�A0�A8�DPS
8D0A(B BBBFT�
\����b�I�E �D(�C0�P
�(F� B�B�B�MQ(H BBBA�����H�
ԕ���F�B�B �B(�A0�A8�DP�
8A0A(B BBBAT<h���C�B�A �A(�G0`
(A ABBD�
(C ABBAJ����8�0���-F�B�D �D(�D@T
(A ABBB�$���(�0���lE�C�G�F
AAILt���!c�B�G �A(�D0�
(A ABBEX����D0����`T���t`���Z�����10�ؚ��pF�A�A �G@7
 AABF����@L�sL�8���F�B�B �B(�A0�A8�G��
8A0A(B BBBG<
���P
���d
���x
����
����
$����
0����
<����
8����
4���0���<,���	F�B�A �K(�G�
(A ABBG<X�����F�E�E �D(�D0�M
(C BBBB�<���(H�X����F�B�H �E(�A0�E8�I@�
8A0A(B BBBE(������F�E�D ��ABH$�����B�B�B �B(�A0�A8�G��
8A0A(B BBBJDp4����F�B�B �A(�A0�G�
0A(A BBBFL������
F�B�B �B(�A0�A8�G��
8A0A(B BBBAL��X��4`��
H\��\h��+p��������|��(�x��BF�G�A �kFB����zD O
E���
���HU ��gHQ
G<X��aydT���2HW
II(t����E�D�L ]
CAJ�T��E�L�X��E�Y�\�� HW�d�� HWl��-Hd( ����E�A�D �
DAJLH��3E�D hAHlh��F�B�B �E(�D0�C8�GPm
8F0A(B BBBG,�<���Z�A�D �J
�A�B�L4�����o�A�D �
AAKp��P ��\ ��4F�D�A �D(�F0`
(D ABBBj
(D ABBEl(G DBBD�����B�B�I �B(�A0�A8�D@�8D0A(B BBB�\��*HP
HI�l��UK�I8����F�B�A �D(�D@�
(A ABBE@t��(Tp���E�D�G0�
AAIH���PF�B�B �A(�A0��
(F BBBH{(F BBB@���OF�B�B �A(�D0�D@
0A(A BBBJ8$��KF�B�A �A(�D0�
(A ABBEGNU�@TT`!���A���#�)�.�4�;�J�Z�j�x��������������������������
�!��,�<�@�R�^�r�������������������
��'�:�Q�_�r��������������
�
�
k`>
��P!X!���o`��
�!��.0&p	���o�%���o�o$���oDh
!�>�>�>�>�>�>�>?? ?0?@?P?`?p?�?�?�?�?�?�?�?�?@@ @0@@@P@`@p@�@�@�@�@�@�@�@�@AA A0A@APA`ApA�A�A�A�A�A�A�A�ABB B0B@BPB`BpB�B�B�B�B�B�B�B�BCC C0C@CPC`CpC�C�C�C�C�C�C�C�CDD D0D@DPD`DpD�D�D�D�D�D�D�D�DEE E0E@EPE`EpE�E�E�E�E�E�E�E�EFF F0F@FPF`FpF�F�F�F�F�F�F�F�FGG G0G@GPG`GpG�G�G�G�G�G�G�G�GHH H0H@HPH`HpH�H�H�H�H�H�H�H�HI,����LSLSLSLS�������������������������!$#!���GA$3a1`>��GA$3p1113PT�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1113���GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYPT��GA+GLIBCXX_ASSERTIONSlsapi.so-5.6-1.el8.x86_64.debugG�c�7zXZ�ִF!t/��wP]?�E�h=��ڊ�2N�뺉� ��͕���
(<�φ�5+�#S�ݠ����`���SNܓ�mA亍oL��о3!��pU]��Ҍp��1�du�~
��ܡ�ʎI�q���7s��W�����M��R�����-n�8�'��Qe�pH��^:�T�~�Ж�Ł@L��=�u"9�,<����'G���Mg�q��H�[O�0�G���	��h��_`3g_21��,�#�#�#��l�Q�b��A��ש.��B��?�;���Y�о�Y��
�K*�����F�u7��o�:eO}o���ٰ
<�6Rz]�%�i-o3a�}�����9\BP()B��8��(���\�=RT��4�%e�zw����:39�1f�w�){�y0�^%�O�P�D�I��
���k�ż�~��ڶ�Kvo7����Mͻ�ML��X/e�jÆ� Ur!"�z+$b�e"wU�lt�.^n������/��.T�(b�Y�`��n���c��%��V�'ic* YT���K��.��6����*p4�]�k��w1�SlN�;n�%�1w"��<�6�DR,��uw,�Mg�/_��
�hEo)5��Q"-�r��-��	��b�T�,6���:gZ���o�?���ÊB��}~�o�b�<YY]�f��"y�eQ�d����6�4`t��T-�I��F���Y⣚oٺC�3���?���hM0֮��Ӟm>M} ���>lH�P��UAE�妳�����;�>�~�|��(��}/2Pߦ���46��_e6�=!�>�˻�D+��k��k_�6����1��;-��[�A쾃 !�,��8�#x�'������Gq����/>�j���U;[��8�tÕ�	��]��0�����n:�R�{�65
����
���w��W6 P��6B-[���P���Q;'5$�����$.�cm$2�R�փٓU�#��.�1��>9I֩��,$R�ⷬ�����LD+"�[��z�a�E��4���N(���w`X��(,dq�{H����t��F|��0^�t���Z��u�R�0�3��>B��fz�3�c�KZ}
L�V�F�eS,+����+�F̱`{<�����
2v�;�գ�ۦS����"�x&�aX�o=��n�<ka�eh3F��
J�/���#��
c�B��{'�Uq�n�Z�]�{��#1������f�޸��V5�.�4^�q|R[&f�����I�7��DVG�J���p���T�`�]�c)iE���R_�{����Y-E�?��mGYk�S%J�kCF˷�6��E̖�"�̯v&����A<�	s"�õ��i�#R=�#�%�%��&�éG�@s�[/`i�����pw�F�0��	�粷1]����2���kƋ�ob�i��N�D51V9d#�����ٽ�I�<K�O��3�,/uGn�]S�+�_3�q��`�I
��fo�Z
���hp���5"�QKbA�ёv﷎��� ��Tc�,�N�����ҝ�&�V8�
G h����VxDw(�ӆyr$��ϣ�Y���i�-��J���[T��d.���\g��Z	�@i��n���<j�m�Wòy��gO���7(�����"Mh(ggתx��4��&��>K�=�j_(�����X�ÅhO6		�i���e��,FjW�jC�pk�E2$4O�S��Ȃ/D�f�&��D��7ėM5�E�+��T�����ev>���� !Z����
��۬�db�lQ�k{�;�޼!��vb����]Uk,�ۆy�B_�E,C�L���Q�ˮ�A���
=���tdѕ&n��<��@s��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``p(���0���8���o$$�E���o�%�%pT0&0&p^B�.�.�h`>`>c�>�>�
nII�
w�S�SK}}����
���p �p�p���X�X�L����� �P!P�X!X�`!` �h
!h
��X!X��!X�`!`�	 �@!@� ��'a@T#$"x#�+1PKKH[h���11+lib64/gems/ruby/ruby-lsapi-5.6/gem_make.outnu�[���current directory: /builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapi
/opt/alt/ruby27/bin/ruby -I /opt/alt/ruby27/share/rubygems -r ./siteconf20240125-1057677-1po3rbp.rb extconf.rb
current directory: /builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapi
make "DESTDIR=" clean
current directory: /builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapi
make "DESTDIR="
current directory: /builddir/build/BUILD/opt/alt/ruby27/share/gems/gems/ruby-lsapi-5.6/ext/lsapi
make "DESTDIR=" install
PKKH[1lib64/gems/ruby/ruby-lsapi-5.6/gem.build_completenu�[���PKKH[@z�K<<'lib64/gems/ruby/ruby-lsapi-5.6/mkmf.lognu�[���have_library: checking for -lsocket... -------------------- no

"gcc -o conftest -I/opt/alt/ruby27/include -I/opt/alt/ruby27/include/ruby/backward -I/opt/alt/ruby27/include -I.    -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection conftest.c  -L. -L/opt/alt/ruby27/lib64 -Wl,-rpath,/opt/alt/ruby27/lib64 -L.  -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64 -fstack-protector-strong -rdynamic -Wl,-export-dynamic  -m64   -Wl,-rpath,/opt/alt/ruby27/lib64 -L/opt/alt/ruby27/lib64 -lruby  -lm   -lc"
checked program was:
/* begin */
1: #include "ruby.h"
2: 
3: int main(int argc, char **argv)
4: {
5:   return !!argv[argc];
6: }
/* end */

"gcc -o conftest -I/opt/alt/ruby27/include -I/opt/alt/ruby27/include/ruby/backward -I/opt/alt/ruby27/include -I.    -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection conftest.c  -L. -L/opt/alt/ruby27/lib64 -Wl,-rpath,/opt/alt/ruby27/lib64 -L.  -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64 -fstack-protector-strong -rdynamic -Wl,-export-dynamic  -m64   -Wl,-rpath,/opt/alt/ruby27/lib64 -L/opt/alt/ruby27/lib64 -lruby -lsocket  -lm   -lc"
/usr/bin/ld: cannot find -lsocket
collect2: error: ld returned 1 exit status
checked program was:
/* begin */
 1: #include "ruby.h"
 2: 
 3: /*top*/
 4: extern int t(void);
 5: int main(int argc, char **argv)
 6: {
 7:   if (argc > 1000000) {
 8:     int (* volatile tp)(void)=(int (*)(void))&t;
 9:     printf("%d", (*tp)());
10:   }
11: 
12:   return !!argv[argc];
13: }
14: 
15: int t(void) { ; return 0; }
/* end */

--------------------

PKKH[ó��@�@�0lib64/gems/ruby/json-2.3.0/json/ext/generator.sonuȯ��ELF>�@�@8	@�v�v }} } � �}�} �} ��888$$hvhvhv  S�tdhvhvhv  P�td�h�h�h$$Q�tdR�td}} } ��GNU���/
!-�Ǹ�yp�7�JM�@$�MOPBE���|�qX�t�)��^� �Oc6���B��a�S��r�`U�Y;� �/�-�zgAPj"�{"H�"�'�U ��z�;���, 6��F"�%�l�u�� �� �� �0Z�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_funcallv__stack_chk_failrb_check_typeddataruby_xfreeruby_xmallocruby_xrealloc2ruby_xmalloc2rb_str_newrb_utf8_encodingrb_enc_associaterb_check_typerb_str_new_staticrb_hash_arefrb_hash_newrb_obj_classrb_class_namerb_hash_asetrb_str_duprb_str_catrb_str_concatrb_str_internrb_sym2idrb_ivar_setrb_attr_getrb_ary_entryrb_string_value_cstrrb_iv_getrb_str_substrrb_id2symrb_intern2rb_data_typed_object_zallocrb_obj_is_kind_ofrb_cHashrb_const_getmemcpyrb_enc_getrb_usascii_encodingrb_str_encoderb_enc_str_asciionly_prb_path2classrb_raiserb_keyword_given_prb_free_tmp_bufferrb_error_arityrb_empty_keyword_given_prb_string_value_ptrrb_float_valuerb_hash_foreachrb_cArrayrb_cStringrb_cFalseClassrb_cIntegerrb_cNilClassrb_cFloatrb_respond_torb_cTrueClassrb_cSymbolrb_eArgErrorrb_check_convert_typerb_convert_typerb_id2strInit_generatorrb_requirerb_define_modulerb_define_module_underrb_gc_register_mark_objectrb_cObjectrb_define_class_underrb_define_alloc_funcrb_define_aliasrb_internrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4/opt/alt/ruby27/lib64�ui	�����ii
�} � } P  }  } @} =fP} �#X} �!x � � � � � � !� )� 3� 5� A� B� C� E� L�  � (� 0� 8� @� 	H� 
P� X� `� 
h� p� x� �� �� �� �� �� �� �� �� �� Ȁ Ѐ ؀ �  � "� #�� $� %� &� '� ( � *(� +0� ,8� -@� .H� /P� 0X� 1`� 2h� 4p� 6x� 7�� 8�� 9�� :�� ;�� <�� =�� >�� ?�� @ȁ DЁ E؁ F� G� H� I�� J� K��H��H��g H��t��H����5�g �%�g ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=���������%
d D���%d D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%�c D���%}c D���%uc D���%mc D���%ec D���%]c D���%Uc D���%Mc D���%Ec D���%=c D���%5c D���%-c D���%%c D���%c D���%c D���%
c D���%c D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%�b D���%}b D���%ub D���%mb D���%eb D���%]b D���%Ub D���%Mb D���%Eb D���%=b D���%5b D���%-b D���%%b DH�=!b H�b H9�tH�~_ H��t	�����H�=�a H�5�a H)�H��H��H��?H�H�tH��_ H��t��fD�����=�a u+UH�=z_ H��tH�=�\ ����d�����a ]������w����H�7H��thv$H��tNH��u8�R�1��€��?v2�f�H��u��B�<A�������	Ѓ��1��DH�W@�B��H�1���?w�H���J�1����w�����tKv���t$���u/���v��f����u���w��D���w��f.�1����o����W��������`����fD��H�?��t
H�GH�H�t	H�WH�DH� t	H�W(H�DH�0t	H�W8H�DH�@t	H�WHH�DH�WPH��tHBH�WXH��tHBH�W`H��tHB�ff.�@��H��H��H�5&` �dH�%(H�D$1�H��` H��H�$����H�T$dH3%(uH����\���ff.����H��H�5�Z ���H���H��H�D�ff.���H��H�5�Z �l���H�@xH��H�D�ff.���H��H�5aZ �<����xqH�H��H�Ѓ��f.���H��H�51Z �����xpH�H��H�Ѓ��f.���H��H�5Z ����H�xhH�H��H�Ѓ��f���H��H�5�Y ���H�@hH��H�D�ff.�SH��H�H��t�n���H��[�e���D��SH��H�?H��t�K���H�{H��t�=���H�{ H��t�/���H�{0H��t�!���H�{@H��t����H�{PH��t���H�{XH��t�w���H�{`H��t�i���H��[���SH��H���HDؿ �F���f�@H�@H�[ÐATI��UH��SH�tWH�OI�T$H��H)�H9�v:H���H�H��H)�H9�r�H9�vI�|$�H�����I�\$I�D$[]A\�@H�?�����I�$I�D$I�L$�ff.�USH��H��H�wH��:���H��H�������J���H��H���o���H��H��[]�D��USH��H�5X H������H�߾H�H���D���H��~H���H���[]�ff.����USH��H�5�W H�����H�߾H�H����H�]xH���[]�@��USH��H�5pW H���G���H�߾H�����H��H�H�EhH��[]�fD��SH��H��H��dH�%(H�D$1��w����H�=(?�v���H��H������H�=�<H���W����H��H��H�5�[ H�$����H�T$dH3%(uH��[��1������ATUH��SH��dH�%(H�D$1�����H��H������H������H�5�[ 1�1�H�='\ I���o���L��H��H������H�=<���H��H��H�5F[ H�$�5����H�=6>H�����H��H��H���C���H�T$dH3%(uH��H��[]A\��b���f���AV1�I��1�AUATUSH��H��H�� H�54[ dH�%(H�D$1�I�����H��H������H�5S=H���5���L��H��H�5cZ I��H�$�w���H�����u_�H�=;��H��H���#�H�����H����L��H��H������H�L$dH3%(u2H�� []A\A]A^�L��H��L�,$H�5�Y L�t$�����Y�f���AT1�1�USH��H��H��H�5+Z dH�%(H�D$1�I����L��H��H�5yY H��H�$��H�����t5L��H��H�,$H�5WY �j�H�T$dH3%(uCH��[]A\Ð�H�=�9��H��H����H�����H������H��H���	������f���AWAVAUI��ATUSH��(dH�%(H�D$1��f���H�5�S L��H����H�5�X H��H����1�1�L��E1���I��H�D$H�$��H����I9���L�=�X L��L����1�1�L��H���o�H�H�D$�� �&H����H�<$H�T$I����L��H�����H�T$H�|$�I��H����H���w���L��H��H���9�I�$�� �\���I�D$I9��^���H�sH�;���H�=+X I���s�L��H��H����H�sH�{��H�=�W I���I�L��H��H�����H�s(H�{ �~�H�=�W I����L��H��H����H�s8H�{0�T�H�=�W I����L��H��H���w�H�sHH�{@�*�H�=cW I�����L��H��H���M�{pH�=2W M���I��H��A��H��L���%�{qH�=W M���I��H��A��H��L����L�chH�=�V �]�O�d$H��L��H�����L�cxH�=wV �:�O�d$H��L��H����H���H�=IV ��H�\H��H��H����H��H�L$dH3%(uFH��([]A\A]A^A_��H�P������H�=�6�g�H��H��U �G����s���H��P ����ff.�1�H�=�6�2�f���H��H�5�P ��H�x@H��tH�pHH����fDH���f.���H��H�5qP �L�H�x0H��tH�p8H���V�fDH���w������H��H�51P ��H�x H��tH�p(H����fDH���7������H��H�5�O ���H�xH��tH�pH�����fDH��������H��H�5�O ��H�8H��tH�pH�����H��������UH��SH��H��H��H��dH�%(H�D$1���H��t H�T$dH3%(H��u{H��[]�fDH��Q H��H�0�N�H��t)H��H��H�$H�5kT ��H���f�H�5iT H�=�T �-�H�5�S 1�1�H�����H���r����=�ff.�f�ATI��H��UH��SH�����H�{H��H{L����Hk[]A\�ff.�@ATH�5gN US�@�H���H���A���H�kXI��H���)H�EH���L���H�EH�U�,H�EH�k`H���H�EH�s H��t
H�S(H�����H������H�EH�U�:H�sH�EH��t	H�SH��uhH�kPH��tqH�E�H�����H�EH�U�,H�s@H�EH��t	H�SHH��uL��[]A\��H�{P���L��[]A\��H�{`���H�kPH��u���,�H��H�CP�H���x���H�k`�/�������H��H�CX����f�����H��H�C`���f.���H��2f������N��f������N�у�f��������N�F���DI���������SH��6H�� dH�%(H�D$1�H��I��H��?L��I��I1�I)��f�L��L��L�II��H��H��H�I)�B�I��A�A�H��u�H��yH�AA�-L��I��L��L9�v#f���0H��H��@�q�P�H9�w�M)�uH�D$dH3%(uH�� [�L��L���
������6�fDUH��SH��H��H�>��H�H��uH��[]�DH�uH��H�D$����H�D$H��[]�ff.�AWAVAUI��ATI��USH��H��8dH�%(H�D$(1��O�H�CH�SL���"H�C�6�H�����H9�t#�$�H9�tH�5�P L��1��i�I��I�mH��% A�<$��L�l$H����M�}I�m�\uL��D$$f�|$"L9���A�H�
�4I��f���A��L�H9��L�5/4L�d$"L�-S4D��L��A�pHc�������A����E��Kc�L�>��DH����M�eI�m�\uL��L�-�/E1��D$$f�t$"��E1ɉD$H����K�<4�<��P����5H�5�3��Hc�H�>��A�L�=�/L��L)���L��L��H������M�NM��L9�w�L��L)�tK�4H��H������H���s�H�CH�S�"H�CH�D$(dH3%(��H��8[]A\A]A^A_��L��A�L�=�.L)��k����K�4H��L�$�8���L�$�K����A�L�=�.�&���fDA�L�=�.����fDA�L�=�.���fDf�Ѓ��00A�f��A�Df�L$$L�|$"��A�T�D$'�T$&���@H��M�e���)���1�A�I��H�H��H��A�I��H�H��A�I��H�H��H��A�I��H�H��A�I��H�Ic�H�
2H+�H������H��(��H=��;H�B�H��_��H��"��H��\�i�H�5�-H������DL9��A�H�
�1I��f���A��L�H9������H�=Q-��H�5_0H��1��-�D1������1�����f�1�����f�1��
���f�A��I��H������H��M�}�������<"t|<\t`�T$�����H�
1f�4����I�I9��A�����������fDH�=,�<�H�5�/H��1��[�A�L�=S,���fDA�L�=>,���fD�H��H�$�G�H�CH�sH�$�H�CL9������f.�H�D$H�D$H�D$���@�H�5�+H���$����G����H�B�H����IcD�L�>����H�5�+H�����������H�5n+H�����������H�5E+H�����������H�5++H����������H�5+H���d�������H����wXH����L��H��H��H�$H��
f��(�����H�$��f��f��$��L��H�������/����I���(���H�=�*�[�H�5.H��1��z���1����ff.���ATI��UH��S��H��dH�%(H�D$1��7�H�$��������um�H�=�I H����H�5D H��H�����H��H�����H�sqL��H��H�����H����H�L$dH3%(u}H��[]A\�f�H�m��~�H�<$tH�����1������f.��[���x�H�$u!�H���K���H������>���fDH�m��~�����UH��SH��(H�t$H�\$H��dH�%(H�D$1���H�L$H��� u0H��H�\$��H�L$H��u-H�D$dH3%(u*H��([]�H�QH�\$H�L$H��t�H��H�������C�ATI��UH��H��SH��H���G�E�$$1�1�H�5H H���D$��E��u"�D$f(�fT
�-f.
�-wf.�zBH��H��H��[]A\���H��H�D$��H�D$H�=�G ��H�5=(H��1���H��H�D$�c�H�D$H�=�G ��H�5(H��1�������ATI��UH��S��H��dH�%(H�D$1���H�$��������um�H�=QG H����H�5�A H��H���g�H��H����H�spL��H��H�����H����H�L$dH3%(u}H��[]A\�f�H�m��~�H�<$tH�����1����Z�f.������x�H�$u!�H���K���H���[��>���fDH�m��~���P�SH��H��H�5:F 1�1����H��[H���]���ff.�f���ATI��U��SH��H��dH�%(H�D$1��g�H�$��������umA�H�=F L�����H�5A@ H��H����H����H���tfH�H��H����H����H�L$dH3%(��H��[]A\�M�$$��~�H�<$tH���H��1����
�f.�H��H�������{���x�H�$u!A�H���;���H�����.���DM�$$��~������AWAVAUATI��UH��SH��H��HL�z0L�*dH�%(H�D$81�H�B8L�rH�RhH�D$H�ExH��H�ExH��t	H9���H��H�$�&�H�CH�SH�5GH�$�{H�T$H�CH��L�d$ H�\$H�l$�D$(�V��L�exI�D$�H�ExM��tLH�|$��M��t;H��~6A��1��fD��D9�t M��t�L��L��H�߃����D9�u�D�H���{�H�CH�S�}H�CH�D$8dH3%(u[H��H[]A\A]A^A_�H�T$L��H��H�$�d�H�$M���d�����P�H�ExH�=}C H�5$H�P�1�H�Ux�����Z��f.���AUATI��UH��S��H��dH�%(H�D$1����H�$��������uk�H�=/C H����H�5p= H��H���E��H��I�����L��L��H��H��H������H�����H�L$dH3%(uyH��[]A\A]�H�m��~�H�<$tH���x���1����:��f.������x�H�$u!�H���M���H���;���@���fDH�m��~���0����ATI��U��H��S����H��H������H��L��[��]A\���f.�AWAVAUI��H��ATUH��SH��XH�B@L�zH�T$H�D$8H�BHH�t$ H�D$@H�H�RhH�D$H�APH�xH�@H�|$HH�yxH�D$H�wH�|$0H�t$(H�qxH��t	H9����H����H�EH�U�[H�EH�|$8tH�|$@�}�D$01�D�`�QDH����H9�}RH�|$t���H�|$��H��L��H�����H�T$H�t$ H��H���tI�E�� u�I�EH9�|�H�D$H�T$0H�|$8H�PxtOH�|$@��L�l$M��t9H�D$0H��~/A��1��
D��A9�tM��t�L��L��H����B�A9�u�H����H�EH�U�]H�EH��X[]A\A]A^A_�H�|$(�,���E1���A��E9�����M��t�H�t$L��H�������@H�T$H�t$HH��������H�T$@H�t$8H����L�l$M���#����W���H�T$@H�t$8H�����l���H���u�H�D$H�=�? H�5B H�PxH�T$H��H�Px1�����f.�AUI��ATI��UH��SH��H��dH�%(H�D$1���������؃����:H���`���gH�CH��; H9��H��; H9��H��; H9�vH����H����H��������H����H������������
��H��L���>����E@H������d���H��tuH���U���H�e; H��J���DH��H��L��L���W���H�D$dH3%(��H��[]A\A]��H�); H�����H��L��H�����H��: H������H��: H9�@H�5�= H�������t=H��H��L�,$H�5�= �B���H��H�����H��L������K���f�H�5�= H��1�1��
���H��H���M��H�uqH��L���~�����f�H��H��L��L���O�����f.��H�5�L�����������H�5�L���������H��9 H�������H�5�L��������H��9 H�����H��9 H�����H�upH��L���Q��E�������ATI��USH����H��H�5�6 H�����H��L��H��H������[H��]A\�r��f���USH��H�����H��H�5�6 H���|��H��H��[]�f���ATI��1�U��H��1�SH��H�5�; dH�%(H�D$1��l��H���D��H�$��tx��xduJA��H�����H�=�; L����H��H������H�L$dH3%(upH��[]A\�@M�$$��~�H�<$tH���P���1������f������x�H�$u!A�H���v���H������i���DM�$$��~�������AUATI��UH��S��H��dH�%(H�D$1��U��H�$��������uk�H�=�: H����H�505 H��H�����H��I����L��L��H��H��H�����H�����H�L$dH3%(uyH��[]A\A]�H�m��~�H�<$tH���8���1������f.��{����x�H�$u!�H���M���H������@���fDH�m��~��������UH��S��H��dH�%(H�D$1��<��H�$��������uj�H�=�9 H����H�54 H��H������H�����H�5CH��H���=�H�����H�L$dH3%(upH��[]�fDH�m��~�H�<$tH��� ���1�������f��k����x�H�$u!�H���V���H�������I���fDH�m��~��������UH��S��H��dH�%(H�D$1��,��H�$��������uj�H�=�8 H����H�53 H��H������H�����H�58H��H���-�H�����H�L$dH3%(upH��[]�fDH�m��~�H�<$tH������1�������f��[����x�H�$u!�H���V���H�������I���fDH�m��~��������UH��S��H��dH�%(H�D$1����H�$��������uj�H�=�7 H���~�H�5�1 H��H������H���t��H�5.H��H����H���u��H�L$dH3%(upH��[]�fDH�m��~�H�<$tH������1�������f��K����x�H�$u!�H���V���H�������I���fDH�m��~�����H��t3UH��SH��H��H������H��H��H�����H��[]�D1�H���f���ATUH��H�5�0 S�����H��I���9��H�uH��% u;H��I�|$@H���H��u5H��t�}��I�D$@[�]A\�f.�H�]I�|$@H��t�H��t�H��H�E% H�}H��tH�}H������I�\$HI�D$@�[]A\�fD��ATUH��H�5/0 S�	���H��I���y��H�uH��% u;H��I�|$0H���H��u5H��t���I�D$0[�]A\�f.�H�]I�|$0H��t�H��t���H�E% H�}H��tH�}H���Z���I�\$8I�D$0�[]A\�fD��ATUH��H�5o/ S�I���H��I�����H�uH��% u;H��I�|$ H���H��u5H��t���I�D$ I�D$([�]A\ÐH�]I�|$ H��t�H��t����H�E% H�}H��tH�}H�����I�\$(I�D$ �[]A\�fD��ATUH��H�5�. S����H��I�����H�uH��% u;H��I�|$H���H��u5H��t�=��I�D$I�D$[�]A\ÐH�]I�|$H��t�H��t���H�E% H�}H��tH�}H������I�\$I�D$�[]A\�fD��ATUH��H�5�- S�����H��I���9��H�uH��% u;H��I�<$H���H��u5H��t�~��I�$I�D$[�]A\�H�]I�<$H��t�H��t�I��H�E% H�}H��tH�}H������I�\$I�$�[]A\����ATI��USH9��$H��H�5"- ���H��H�5- H������H��H�����oE�oHM�oP U �oX0]0�o`@e@�ohPmP�op`u`�oxp}pH���H���H�sH�;�^���H�sH�{H�E�M���H�s(H�{ H�E�<���H�s8H�{0H�E �+���H�{@H�sHH�E0����H�{PH�E@H��tH�wH����H�EPH�{XH��tH�wH���v�H�EXH�{`H��tH�wH���\�H�E`L��[]A\�H��. H�5MH�81��������AVAUI��ATI��H�5�+ USH��dH�%(H�D$1����H�
�L��H�H�����H��H����H�=�0 �'��H��H�����I��H�������H�=�0 ���H��H������I��H������7H�=�0 ����H��H�����I��H�������H�=J0 ���H��H�����I��H������kH�=,0 ���H��H���d��I��H������H�=�/ I���f��L��H��H�EhdH�5�/ I��H�$���H�������H�=e/ �(��L��H��H�ExH�5^/ I��H�$�b��H������&H�=/ ����L��H��H�5(/ I��H�$�,��H�������H�=9/ ���H��H�����H�=/ H������Ep���H��H���h��H�����L���EqH�T$dH3%(��H��[]A\A]A^�f.��H������M�4$A�� �bM�t$I�|$I�v�/���L�uH�E����f�L��H������I��H������6����H��I����M������L��������L��H�����I��H������&H�Ex���f�L��H���u��I��H�������H�Eh�E���f��H�����M�4$A�� �bM�t$I�|$I�v�O���L�u8H�E0���f��H������M�4$A�� �M�t$I�|$I�v����L�uHH�E@�W���f��H�����M�4$A�� ��M�t$I�|$I�v����L�u(H�E ��f��H���S��M�4$A�� tNM�t$I�|$I�v���L�uH�E���fDH�
9H�-�L�����H������DI��I�|$A��I�v�DI��I�|$A��I�v�V���f.�I��I�|$A��I�v���f.�I��I�|$A��I�v���f.�I��I�|$A��I�v���f.��H��I��P��L�uh�c�����H��I��0��L�ux����B��f���ATI��H�5�& U��H��SH��H��dH�%(H�D$1��m��H�@hdHǀ��e��H�$��tI����tM�$$��uuI��tL��H���e���H�L$dH3%(H��unH��[]A\�f�������x6H�$t!M�$$��u'H��t�H���k���f�H��t�H���S���H�<$tH���B���1�������?��ff.�@��AWAVI��AUATUSH��H��HL�zH�BH�t$ H�*I�w`I�XH�D$I�I�O0M�_8M�gH�WM�oxH�D$H�FH�D$(H�FH�D$�C��~	H����H��t	M���OH�|$tKM��~FE��H�\$0E1�L��E����A��E9�tH��t�H�t$H��H��A���6��E9�u�H�\$0H�%' H�
A����A���vD������I����A����I�VH9�t&H�
3' H9��H�5�) L��1�1����I�ƾL�����H�t$L��L��H���\�H�|$u|H�L$ H�t$L��H���?��CH��H1�[]A\A]A^A_�f.�I������h���I����M���U���H�i& H��J����L��H��H���"�����DH�T$H�t$(H������m���H�R& H9
�5����L���X��H������I�������H�wH��L�\$8H�L$0���L�\$8H�L$0����H��% H����@H��% H����f�H�q% H����H��% H��{���f���SH�=�	H��dH�%(H�D$1����H�=	����H�5i	H��H��( ����H�5W	H������H�=�H�d( �g��H�=?	H�)( �T��H�=( H�( �A��H�=( �5��H��$ H�=( H�5lH����H�5a��H��H��' �"��H�=�' �H����H�5��3��H�=�' �����H�P���H�5�����H�=�' �H���H�5�����H�=�' 1�H���H�5����H�=r' �H���H�5����H�=S' 1�H����H�5z�~��H�=7' �H���H�5a�_��H�=' 1�H���H�5L�C��H�=�& �H���H�5:�$��H�=�& 1�H����H�5,���H�=�& �H���H�5���H�=�& 1�H�)��H�5����H�=�& �H���H�5����H�=g& 1�H����H�5����H�=K& �H���H�5��s���H�=,& 1�H�c��H�5��W���H�=& 1�H���H�5��;���H�=�% 1�H����H�5�����H�=�% 1�H���H�5�����H�=�% �H�@��H�5v���H�=�% 1�H���H�5a����H�=�% �H����H�5X���H�=b% �H���H�5P���H�=C% H�=H�5@�`���H�=)% 1�H�p��H�5��T���H�=
% H��H�5��*���H�=�$ �H�g��H�5�����H�=�$ �H�8��H�5����H�=�$ �H�9�H�5��ݿ��H�=�$ H�5����H�5�H��H�q$ ���������H�(�H�5�H��虿��H�=J$ H�5��������H���H�5lH���k���H�=$ H�5^�x��������H���H�5>H���=���H�=�# H�56�J��������H����H�5H������H�=�# H�5���������H���H�5�H�����H�=�# H�5�����H����H�5�H��H�a# �̾��H�=U# �����H�9��H�5�荾��H�=6# �����H���H�5��n���H�=# 1�H����H�5��R���H�=�" H�5��_����H���H�5wH��H��" ����H�=�" H�5f�*��������H���H�5�H�����H�=�" H�5B��������H���H�5�H�����H�=r" H�5�ξ�������H�B�H�5�H��蓽��H�=藼��H�=yH�" 脼��H�=�H��! �q���H�=BH��! �^���H�=>H��! �K���H�=8H��! �8���H�=@H�z! �%���H�=BH�_! ����H�=BH�D! ���H�=fH�)! ���H�=]H�! �ٻ��H�=IH��  �ƻ��H�=CH��  賻��H�=1H��  蠻��H�=H��  荻��H�=H��  �z���H�=H�|  �g���H�=�H�a  �T���H�=H�F  �A���H�=��5���H�=�H�  �"���H�=�H�  ����H�=�����H�=�����H�=�H�� �O���H�=�H�$�Ϻ��H�=�H��耻��H��H��H��轺��H�=~H�g  蚺��H�=t莺��H�=o肺��H�� H�D$dH3%(uH��[������H��H���C*@instance_variables0123456789abcdef\n\r\t\f\b\\\"JSON::GeneratorError%u: %li not allowed in JSONnesting of %ld is too deepnullfalsetrueunallocated JSON::Stateto_hashHashto_hjson/commonExtGeneratorJSON::NestingErrorfrom_stateinitializeinitialize_copyindentindent=spacespace=space_beforespace_before=object_nlobject_nl=array_nlarray_nl=max_nestingmax_nesting=check_circular?allow_nan?ascii_only?depthdepth=buffer_initial_lengthbuffer_initial_length=configuremerge[][]=generateGeneratorMethodsObjectto_jsonArrayIntegerFloatStringincludedto_json_rawto_json_raw_objectExtendjson_createTrueClassFalseClassNilClassto_snewallow_nanascii_onlyunpackcreate_idextendkey?__send__respond_to?matchkeysduputf-8findEncodingencodingencodeSAFE_STATE_PROTOTYPEJSON/Generator/Statepartial character in source, but hit endsource sequence is illegal/malformed utf-8source sequence is illegal/malformed utf80�� ��������@�����h��P�������x�����������I�����h��0123456789�0� � �� �� ���������������;$CX���@H���h���ȸ���X����������������H���x���$����<غ��T����px���������8����x���ȼ��(���PH���xؽ����������������H���������������H���������<��\�����������������((��\���8���������<���p����������	���L	��x	����	���
���0
���X
����
��
(��
8� H�L��xH������ ��XH�������
��8
x�
zRx�$����FJw�?:*3$"Dذ���\`����p,���������TH F
A���%HW����"HT����&HW�4���&HWL���'HXd���"HT0|���A�UL�����E�vh��/A�m,������B�D�D �V
ABE$�X���;A�A�G lDA$�p���DE�A�N hFA$����<E�A�N `FA$,����:E�A�N cAA Tȸ���E�O t
AA0x4����F�A�D �D0�
 DABA@��F�I�B �A(�A0�JP�
0A(A BBBD0������F�E�A �J0t
 AABBH$8���
F�B�B �E(�A0�A8�D`�
8A0A(B BBBHp������������6H]
KD�$���9H]
KD�D���9H]
KD�d���9H]
KD����9H\
LD(8�����E�D�M0q
AAG(dH���1B�G�D �`AB8�\����B�H�A ��
ABHM
ABH�����K ����K�K0�
AD0����EA�D�G0T
AAFZAAH8����B�B�B �E(�I0�A8�Gp
8A0A(B BBBH0�h�� F�D�D �F0�
 AABJ(�T���A�D�D@Y
AAD0�����B�D�G �G0N
 GABE0T�� F�D�D �F0�
 AABJL@��#A�Z0hT��0F�D�C �G0�
 AABDL�P���B�B�B �B(�D0�D8�G�#
8A0A(B BBBD8���� F�B�D �D(�F@�
(A ABBD((���6F�D�F �\CBLT���vB�B�B �H(�A0�D8�D��
8A0A(B BBBA8�����B�E�D �D(�G@+
(A ABBI(�|��>B�D�A �lDB$���.E�A�G [DA04���F�F�H �D0w
 AABE8hd�� F�B�D �D(�F@�
(A ABBD(�H��E�D�F0�
AAG(�,��E�D�F0�
AAG(���E�D�F0�
AAG((	���>F�D�O WAAF��4T	���F�A�K �K
FBKFAB4�	����F�A�K �K
FBKFAB4�	���F�A�K �T
FBBFAB4�	����F�A�K �T
FBBFAB44
(���F�A�K �R
FBDDAB,l
���XF�D�A �1
ABA@�
���F�B�E �K(�A0�D@
0A(A BBBK0�
��F�K�F �G0t
 AABJL���F�B�E �B(�A0�A8�G�q
8C0A(B BBBK d���E�K �
AAGNU�� P  } =f�#�!�����
�b} } ���o`0
�
� � �	���o����o�o8���o�}  0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p��������GA$3a1��bGA$3p1094� �bGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY� z!GA+GLIBCXX_ASSERTIONSgenerator.so-2.7.8-141.el8.x86_64.debugk����7zXZ�ִF!t/��]?�E�h=��ڊ�2N��������oة��!�3;�zA"���1�U��3��c��y��Q�_D����r���B�{$r@o.�C��r�kH|�j�����cҐ��#lUL�[�X˃����_���"�Y ��'}����JMګU
D�����3.��W]���j�D5��BF
�j�2r�0�Z8�G:��ؤb7Bh�q��L���6H�����W��8ֶ$v@2����$�+�>����G4q1��H�l�v��C'Ym���ݴt�-Y����ֽY������v�'���ZX�a��F��=�e���S?���LH�a?�z�]��2J��kv�����?A�#����r|���u�w�����-?�z�
�}�h%c7������Ą�R�K�:O�C�(�iݣ�R��+��x3y1,�ɉ�5�t��@�akjT��Q�=Ġr����GY�x�%�ew�I�N�"��V�d�T44Rm�gE�5�x������Swg�q�<�+�n��8#J!�A�H洡0^ܤv�YN�b�8�r��(2�Vv�$˔mͻ�1��G@�Al:k�Sc�W|dz�k�7wr5� ��w�8��.d�n$�9�4�A��B��?
·ÑY�ks3k�V�P6�B�ٳ�뙚�b�M��Tҟ���!�>�<=�N�n��$b��Z�wN��i{a�6�	>�Ӫ���������E��������֐�QI�:(N�J,�0w����X�#�p�?A���\=O��fT8*��j�� ����aK�ΣȆ]��>���de��e,�=��8@Ҿ-m�Om��b���۾�
�Fϟ8�|��M�0��
Ls�go�y#�-ӝ�]�'�>���&/^!���c�����y�ǺI����E�։�p�̽�s'��G��+�
a�g�^Xn&q��>[���¹“j�i�W�,�6C�֏O<��AU�-]	��F0O�گ)ł$���Y�v硒A�N�yN3�W��c)ioN�H=̷�~��/.�3O%��;��;t�l�N�)	�G8���;A�(RMY&�5��%��a�p� ;;r�c�T4C�ը��ZM���X\�(����L�,�=�9-���b�z�H�U�P��䤚,m�2g
�4�~��95�@�7�訧���V�w|	��{&
�k^�}bo>�˴� Q�����M 8G4�y���w��l}��v����x�o	Q�]����=^�;T����E�JU*�/�$�#����iH�r.�/���A0��^h7����n�&[�%ƙۻ�[�<�._m��͗��-����.�(Oq���A�H��᫠�I�l���L
�F��Y�Kf\*R�����S«�H�rY�G���!>7J0O�$"���]1!}n���t��/���f H�.��`��v�&���+�t^L�Kdz7K%�	r
��?g��6���Š;^���R�ă�-�h�pW�'�'�T���-����%c�1M\"F�(G\�H�A��u���}&��3�Vև��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���00
0
8���o88�E���o��@T  �^B�h��c�n�w��C}�b�b
�cc� ��h�h$��j�j��hvhv �} }�} }� }  }h ��} �}��x xx�� ��� ���`�D
L�,x�\Ԋ+PKKH[`u{�@q@q-lib64/gems/ruby/json-2.3.0/json/ext/parser.sonuȯ��ELF>P@�i@8	@�X�X P]P] P] �� �]�] �] ��888$$�X�X�X  S�td�X�X�X  P�td`U`U`U��Q�tdR�tdP]P] P] ��GNU]u4��U���{l��Q�#�W�C�@ �CFBE���|ŷ|!�qXg�u ;�s��,�����U���FI�����
�� �q�;��"\F3.���`~�, ��WF"~���UtEb X�b g�D�Lb __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeruby_xfreerb_gc_mark_mayberb_str_buf_newrb_ary_new_caparb_ary_pushrb_hash_foreachrb_ary_entryrb_funcallvrb_str_catrb_str_internrb_utf8_encodingrb_enc_associaterb_str_resize__stack_chk_failrb_enc_raiseruby_xrealloc2ruby_xmalloc2rb_check_typeddatarb_str_duprb_eTypeErrorrb_raiserb_data_typed_object_zallocruby_xmallocrb_keyword_given_prb_warnrb_id2symrb_hash_arefrb_string_valuerb_enc_getrb_ascii8bit_encodingrb_str_conv_encrb_empty_keyword_given_prb_free_tmp_bufferrb_error_arityrb_alloc_tmp_buffer_with_countrb_hash_newrb_eArgErrorrb_extract_keywordsrb_check_typerb_fix2intrb_check_hash_typerb_class_new_instancerb_ary_newrb_cstr2inumrb_str_new_cstrmemcpyrb_hash_asetrb_cstr_to_dblrb_float_newrb_cObjectrb_const_definedrb_const_get_atInit_parserrb_requirerb_define_modulerb_define_module_underrb_define_class_underrb_path2classrb_gc_register_mark_objectrb_define_alloc_funcrb_internrb_const_getrb_define_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4/opt/alt/ruby27/lib64;ui	]���iii
tP] �X] p`] `] �] oI�] ��] @�]  �_ �_ �_ �_ "�_ 8�_ :�_ <`  ` (` 0` 8` @` 	H` 
P` X` `` 
h` p` x` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �`  a !a #a $a % a &(a '0a (8a )@a *Ha +Pa ,Xa -`a .ha /pa 0xa 1�a 2�a 3�a 4�a 5�a 6�a 7�a 9�a ;�a <�a =�a >�a ?�a @�a A�a B��H��H�)J H��t��H����5BJ �%CJ ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1�������%}F D���%uF D���%mF D���%eF D���%]F D���%UF D���%MF D���%EF D���%=F D���%5F D���%-F D���%%F D���%F D���%F D���%
F D���%F D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%�E D���%}E D���%uE D���%mE D���%eE D���%]E D���%UE D���%ME D���%EE D���%=E D���%5E D���%-E D���%%E D���%E D���%E D���%
E D���%E D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D DH�=�,1��b���H�l$ ��H�=�,1�A���F���H�l$ ��H�=�,1��L$H�$�&���H�$�L$��1�H�=-�L$H�$����H��H�$�L$t��H�l$ H�D$(D���H�D$ H�D$(��f.�DH�=�C H��C H9�tH��A H��t	�����H�=�C H�5�C H)�H��H��H��?H�H�tH�}A H��t��fD�����=�C u+UH�=bA H��tH�=�> �I����d����]C ]������w�����H�
�5H���x=�WH���x0H��H	��WH���xH��H	��WH���xH��H	�ø���f.���H�G`H�@H��h�ff.�@��USH��H��H�o`H�}H��t�!���H������H��H��[]����ff.���SH��H�?����H�{ ���H�{8���H�{@���H�{H����H�{X[����f�AWI��AVAUI��ATUSH��1�H��8H�$dH�%(H�D$(1����H�$I�EL�{I9��9A�?"��1�KP��unI�}�S4��t�C0����@��uH�����tH�7���������I�O�HD�H�\$(dH3%(�H��8[]A\A]A^A_�DL�cXI�����t���Q���I�uI��H�����H�5�L��L������L������H������A���I�UH�5�A H��H�L$H�T$��%���H��I�E����f�H��M��M�fL9���A�F<"t4<\uM�fL9���A�F<u�F<��M���f�I�OI��L9�r��M9��OL�ɀ9\L�Iu�L9����A<f���<r��J<t�r<u��I�F�I9���H�yH�$���H�$I��%�H=��L�II�F�I9����y\�H�5�&���yu��H�yH�$���H�$L��I��
%�H��E��L�I��H��H��I	�I	�L�кH�t$$H�����D$$L��H����?�Ȁ�D$%L��A��?H��A�ʀ��?D�T$'�Ȁ�D$&�d@<\��<b��<"t|M��M9������L��L)�L��H������I�mH����M������@�H�5�$<nu�H��L�$�D���L�$M�yM���L���@�H�5�$��f��H�5z$��f��H�5n$�f�H��L��H��L�L$L)�H�$���H�$L�L$�A<f�����H�51$�p����H�5$�_�����H�5�#�G�����;���I�E�r���f��[���I�}M��H���������f�L�II��wFD�T$$�H�t$$��f��� �H�w��������fD�����fDI�����I�����vI��������D$$?�H�t$$���DI�NH9���A�F<@����0<	��I�NH9���A�F<@����0<	��I�NH9��tA�F<@����0<	��M�fL9��\A�F<@����0<	�.���M��1����f�H������@L��A��?�H��A�ʀH�t$$��D�T$%�D$$���fD<F�=�����a<�2���I�����D<F�B�����a<�7�����<F�O�����a<�D�����<F�������a<�����L����L�кH�t$$H�����D$$L��A��?H��A�ʀ��?D�T$&�Ȁ�D$%���DI�׽���1����I�׽����I�׽����I�׽���I�׽���I�׽�����H�?< ��M����H��"H��H��1����H�< ��M����H�#H��H��1��f���fDATI��UH��SH�tWH�OI�T$H��H)�H9�v:H���H�H��H)�H9�r�H9�vI�|$�H�����I�\$I�D$[]A\�@H�?��k�I�$I�D$I�L$�ff.���H��H�56 �\�H�8H��t	H���k�H�,8 H�5; H�81�����AUATUS�H��dH�%(H�D$1�H��4t&I��H�5�: H��I��1�1�L���;�H�����u#1�H�L$dH3%(��uIH��[]A\A]�@1�L����H��H��H�5: H�$���H�����t�L��L���������UH�$5 �hSH���� H�h H�����f�@H�@H�H�E`H��H��[]�ff.�@��AWI��H�5�4 AVAUI��ATA��H��USH��HdH�%(H�D$81����H�8��H�D$ H����H�D$(A�ƅ��E���$A����H�=�!1���I�H�l$ H�D$(H�T$H���zH����H�=9 L�d$0���L��H��H�5�8 I��H�D$0��H������R�C(dH�=�8 ��L��H��H�5�8 I��H�D$0�P�H��������C,H�=~8 �q�L��H��H�5G8 I��H�D$0��H��������C4H�=X8 �3�L��H��H�5	8 I��H�D$0���H�������CPH�="8 ��L��H��H�5�7 I��H�D$0��H�������L��H����H�C H�=�7 ��L��H��H�5�7 I��H�D$0�P�H������lH�C8H�=m7 �p�L��H��H�5F7 I��H�D$0��H������H�C@H�=&7 �1�L��H��H�57 I��H�D$0���H�������H�CHH�=�6 ���L��H��H�5�6 I��H�D$0��H������WH�CXL�d$L�����H��H����I�����I9����q�H��I�����H��L��H���H�H��L��H�l$��H�T$H��� uCH����H�CH�BH�CL��H�H�L$8dH3%(��H��H[]A\A]A^A_��H�BH�CH�B�f.�@��u
H������
H���u�H����H��H���b��X���D���E����H�l$ ���?H�D$(I�H�T$A��uqH�������H�|$(�G�H������H�C(dH�5�5 1�1��CPH�=�5 ��H�C8H�C H�C@H�CH�w���fDtnH�D$(H��t
H�|$(�����D�����H�5!5 H�=b5 1�1���H�C �%���H�E�ƒ�����������������t��H�|$(��x�I����H�=1I�$1����I�$H�l$ H�D$(H�T$�b���fDL��H���5��H�����HD�H�CX���DL��H���
�H�CH�6���@L��H����H�C@����@L��H�����H�C8���@L��H�����1�H���‰SP�S4������H������H�N1 H�5�H�81���DL��H���}�H����������C4�Z���f�L��H���U�H����������C,���L��H���5�I��H��������C(���Ic�I�l�@���(�H��������E������H�l$ H���`���H�|$ �3�H�T$ A�L$�H��H���4�E�����H��HD�H�D$(H�l$ ��uBE1����H�Ǿ���L���m��C(���H��/ H�5H�81�����8���A�̉�H�l$ ����������Ic�I�|�A���6���H���Z��-�H��H�D$ �)���AWAVAUATUSH��XdH�%(H�D$H1�H9�tMH��I��H��I��H�J��A�<n���Hc�H�>���H��DH��H9�u��E1�H�|$HdH3<%(L���mH��X[]A\A]A^A_Ã�0��	w��H�CH9��c�	H�5XH��������EA�N,����H��1 L�c	I�E�H�CH9��s����{n�i���H�CH9��\����{f�R���H�CH9��E����{i�;���H�CH9��.����{n�$���H�CH9������{i�
���H�CH9������{t�����H�CH9�����{y����A�V,���kH��0 L�cI�E�����H�CH9�������{a�����H�CH9�������{N�����A�F,���H��0 L�cI�E�m���f.�A�@I�V@�ljD$A�F(9���������H�=]0 H�5�1��7��H�CH9�����E1�{a�	���H�CH9�������{l��H�CH9�����{s����H�CH9������{e����I�EL�c���H�CH9������E1�{r�����H�CH9�������{u�����H�CH9��u������{e�g���I�EL�c�V���A�F(E�`I�V8H�D$ A9��B���:H�=K/ D��H�5�1��"�f�L��H��H��L���/�I��H��LD���H�CH9�����K��*tR��/t�����8
�����H��H9�u����f�H��H�XH9�������@<*t�</�����H��DH��H9��{����8*u���@H�CH9��c���E1�{u�Y���H�CH9��L����{l�B���H�CH9��5����{l�+���I�EL�c�������
�0�����������f�H���~1�1��-�I�EH9�tD�;{H��u<L�zL9�t3�B<"����<
t< ��L��L�zL9�u�f�I������H����1�1���I�EH9����;[��H��H�
L�zL9����r�F�<n�z��Hc�H�>���0@��	�t�H�D$(H�D$H�D$0H�D$D�D$H�L$H��L��H�D$(L���k���I��H���,I�~@H�t$(I�}�#H�t$0H�L$�H�5-, �0�I�D$�H�PH9�t%�H��,t>o��
t	�� �YH��H�PH9�u�I����D��
�X����L��L�zL9����J�A�<nw�H�5���Hc�H�>�����/���]��H��I��LD����fD</��<}��A�vP����I�~8I�v I�}��	H�t$0H�L$0�H�5;+ �6�H��tpL�d$0�H�D$0H�5:+ H�=�+ L����H�5|+ 1�1�H��H����H�����t-I�EL��H��H�5G+ H�D$0���I�Ef�I��M��LD��#�����	�������I���i@H�PH9�������@<*tC</t��D�:
�f���H��H9�u��d����H��H9��V����<*t�</�;���@H��H9��6����:*u���@�S����fDI��L9���A�?*u�I��L9���A�<*t�</u�@L������L���B���L�zL9����B<*t�</��I��L9�t|A�?
u��L�zL9�tk�B<*t></u_f�I��L9�tTA�?
u����@I��L9�t<A�<*t�</������I��L9�tA�?*u���@��
�����@���K���H��) �G�M����H�H��H��1���������fD�����fDI�^H9�������<-��<0���1I��<w6I��L9���A�<E��<e��<.�	��0<	v�fDI�^�<-�Y<0����1I��<v����f�A�$��0<	w	I��L9�u�I�n`M��H�EI)��e�H�����H�EH�U�
�I�F`H�EH�x��I���I�ELD��e���f�L�zL9������B<*tK</t���f�A�?
�����I��L9�u�����I��L9������A�<*t�</�^���I��L9��c���A�?*u�����	<�8����H����H�D$ H�D$H�D$(H�D$H�D$0H�D$H�L$H��L��L��A�F0���A�F0H�������H�H�H�AH9�����Q�� ����/����:�xH�pH9�������H�Q�n�YH�=p��Hc�H�>���0��	�����H�L$E��H��L��H�D$(��I��H���X���I�~8H�t$ H�T$(I�}�4H�t$0H�L$H�5V& H�T$8��?��I�G�L�xL9������P��,t5�G��
t	�� �KL��L�xL9�u����<
t��	<�����L��I��L9�������B< t�~�<"�����</u�L�zL9�������B<*t6</t���A�?
t�I��L9�u��x���I��L9��k���A�<*t�</t�I��L9��R���A�?*u��Ҁ�
��������8���H���p���H�pH9��#����@<*t4</t
�����>
t�H��H9�u����H��H9����<*t�</t�H��H9������>*u�����
�H���������/�6��}�V�����	������������,�$���I��M�f`L��H)�I�D$H�D$��L���.�I�D$I�T$�I�F`I�D$I�~HH�x�{���H�="$ 4I��I�FHH�D$��H�D$H;$ �"H�L$0��H�5�# L�d$0���I�E��I����l���L��I�^H9��`�������I�GH9�t�A�W��+t��-uI�GH9�t�A�W��0��	����H��H9������E������e�������.������0��	v�����fD��	���u����7����H�AH9��#����Q��*tB��/t�����8
�@���H��H9�u����H��H9�������*t�/����H��H9������8*u���@H��L�`L9�������@��0<	�v������@H��L�xL9�������@<E����<e�����<.�����I�GH9������A�W��0��	�����L�xL9�������@<E�y���<e�q���<.�`��0<	�����L��L�xL9�u��|���DL�cL9�����C<0����1<��������L�{L9�������C<0����1<�����F���H��L���s�H�}L��H}H�����L}I�n`�p�������c���L�xL9��l��@<*tD</t�[�A�?
�]���I��L9�u��@�I��L9��3�A�<*t�</�2���I��L9���A�?*u����V�����L���d���L���4���I���`�������I�~HH�L$0�H�5�  L�d$0����I�E������������I�E����H��L���i�H�T$I�|$H��I|$���H�D$ID$M�f`������0��	����K���H� H�5X  H�8������\���H� H�5:  H�8���H�  ����I������H�-�  �J��I�ع�H��H�H��1����H�-�  �"��I�ع���H�-�  ���L�C����<,�0����L���@��UH�5$ SH��dH�%(H�D$1�H�$�R��H�8�H�XH�hH�
�H�H9����3�V�n����Hc�H�>���0@��	wp�E1�H��H��H��H���<�H����H���D��
t��	��w3H��H�XH9����P�� t�/u�H�XH9�t�@<*tL</taH��H�~ ���I��H��H��H��1�����DH��H9�t��<*t�</t�@H��H9�t��;*u��؀;
�l���H��H9�u��@��H9������H�t$dH34%(H�$��H��[]�H��f�H��H9�������I���fDH�SH9��6����s@��*tI@��/tH�������:
t�H��H9�u�����H��H�ZH9�������R��*t�/t�H��@H��H9������:*u���@@��
�E���@���\���������H�# H�52H�81����f.���H��H�=����H�=�����H�5}H��H�� ����H�� H�5�H��H����H�=RH�� ���H�=QH�� ���H�=� H�� �8��H�=y �,��H�=} H�5���)��H�=j �����H�F�H�5�j��H�=K 1�H����H�5��N��H�=/ 1�H���H�5��2��H�=��V��H�= H���G��H��H�� ���H�=[�,��H�=� H�����H��H�� �n��H�=����H�=� H������H��H�y �D��H�=t����H�=xH�R ����H�=qH�7 ���H�=hH� ���H�=fH� ���H�=W���H�=WH�� �m��H�=NH�� �Z��H�=KH�� �G��H�=EH�� �4��H�=>H�n �!��H�=9H�S ���H�=,H�( ���H�=&H�
 ����H�=H� ����H�=H�� ����H�=H�� ���H�=�H�� ���H�=�H�� ���H�=�H�{ �v��H�g H�����H��H���

	"\uninitialized instancealready initialized instancenesting of %d is too deep%u: unexpected token at '%s'-Infinityjson/commonJSONExtJSON::ParserErrorJSON::NestingErrorinitializeparsesourceNaNMinusInfinityjson_creatable?json_createcreate_idcreate_additionschrmax_nestingallow_nansymbolize_namesobject_classarray_classdecimal_classmatchmatch_stringkey?deep_const_get[]=[]<<newBigDecimalJSON/Parser%u: incomplete unicode character escape sequence at '%s'%u: incomplete surrogate pair at '%s'Keyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecatedoptions :symbolize_names and :create_additions cannot be  used in conjunction����������������������������������������������������������������(������������������������������������������������������p���������8���������������������������������������������������������������������������@�����������������}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}���}�$�}�}�}�}�}�}�}�}�}�}�$�}���}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�$�}�}�}�}�$�}�}�}�}�}�}�}�}�}�}�}�}�$�}���}�}�}�}�}�}�}�}�$�}�}�}�}�}�}�}�$�}�}�}�}�}�$�}�}�}�}�}�}�$�*�������������������*��|�����������|��a��������������������������|�����|�������������|�����������|��������|������|�������|�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������P�������������������������������������P���@���������������������@���h���������������������������������������������������@���������@�������������������������@���������������������@���������������@�����������@�������������@�������������������������������������������������	�������

��������������������������

���������������������������������������������������������������������������������������������������������������������������������������������������������;�`����0�������`���������� ��8`��Tp������@������(P��P������(P�TzRx�$�����FJw�?:*3$"DX���\p��Vp���$����5E�A�G ^DA����>E�tH���
B�E�B �E(�A0�A8�Ip�
8A0A(B BBBF,����B�D�D �V
ABED(��=HX
E8`L���F�B�A �A(�I@R
(A ABBE$����QE�M�D uDAL����pF�L�B �E(�G0�A8�D�a
8A0A(B BBBH$zRx��������, ���HP���,B�B�B �B(�A0�A8�D��
8A0A(B BBBA(���VE�H�D0p
AAA����H�GNU��p`] oI�@ "1;~�
�GP] X] ���o`@	�
�` ���P	���oh���o�o�
���o�] ��� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p�4GA$3a1��GGA$3p1094P�GGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GGA+GLIBCXX_ASSERTIONSparser.so-2.7.8-141.el8.x86_64.debug�-�7zXZ�ִF!t/��w�]?�E�h=��ڊ�2N�aV��g1q[�}�����i�덧�E.��}����k����D/���/7�D��jnZos�d�όsTz�^E���RiЭ#���O��@�D?�QfNģcb�3�fw/X��1���nVr��z!_�
?B�%��>U(
�DBĜj;V�
Q{��	@%%��2�K ��ΰ#d��d�
^�d�������z��*��.��
U\c)��ԁ���_���k�m�]=�T�X�;p��Y
�BU/�-�֎�!>���f�� Mmy>G�2�K��sG�.pT*��r�䡯�W�?dt�&g�r��l
�g���j�bm&6����2\�Gۤ�ed:�p=�D0�-�	9��'IV�e�m�Cc	��g`��`�O.��� (.�{���p�}I	�J`���t������[صp�m����\:��W�AL}��9�Q��ZAD��Ƥ��␅ү�i���T�!��j���س$&�i�ԅ/�K=�?ܺ7}�F5�>#�F�}^#�����@V�p��m��K�S{��,T$�"Q%B��P�H��U����r�5��>,d����^����]qB��{v'�OcѬ��e��0���כ4n[��q�}��'�f���}�b\>+׺��maG ��$�n�U�����N��dp5O^ᾎ�1��2H�/d���p��AY�J��~T�@8#/��d�){Tq	����}����Ŝȳ��quG��"s_S$w>Sv ��
V8)0r�*ԓ�<K��ņY3R�f�L\2��t��'*U&b�㶽O!�#kkzd`O�d�e�b	��9#�:�pkmA�?�t�=E)&ɚ�l)�;qWJe�#g�+��+�pm'��A �ې1H����
�RO|Cd;i���������<z<G?̑���7����΄�H�����ُ�Ʉ9��Je�A5~y�f9?U$���o�*��R��� j+鄱�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0@	@	�8���o�
�
�E���ohh@T��P^B���h��c���n���wPPV*}�G�G
��G�G�
 �`U`U���U�U���X�X �P] P]�X] X]�`] `]h ��] �]���_ �_8�` `���a �a�b b���b`bDDd,"pd�h1PKKH[ш�-HPHPlib64/ruby/racc/cparse.sonuȯ��ELF> @I@8	@p:p: P=P= P= p �=�= �= ��888$$P:P:P:  S�tdP:P:P:  P�tdh6h6h6��Q�tdR�tdP=P= P= ��GNU���`L��2w~�)}�M,�/�A @/12BE���|�qX7�/y�� ���e��OZ�)�m� �"UE�T�w�x��h, �F"�>�.9`��PA ��A �PA �01z__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_gc_markrb_ary_storerb_funcallvrb_int2big__stack_chk_failrb_check_typeddatarb_ary_subseqrb_catchrb_ivar_getrb_fix2intrb_num2intrb_num2longrb_sym2idrb_eTypeErrorrb_raiserb_check_typerb_ary_entryrb_ary_new_caparb_ivar_setrb_iv_setrb_ary_poprb_ary_newrb_str_new_staticrb_obj_classrb_id2namerb_eArgErrorrb_hash_arefrb_data_typed_object_zallocrb_iteraterb_iter_breakInit_cparserb_intern2rb_cObjectrb_const_definedrb_const_getrb_const_get_atrb_define_constrb_define_class_underrb_undef_alloc_funcrb_undef_methodrb_eRuntimeErrorrb_define_modulerb_define_private_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64�ui	�ii
�P= �X= �`= `= �= c5�= ��= ��? �? �? �? �?  �? $�? %�? '@  @ (@ 0@ 8@ @@ 	H@ 
P@ X@ `@ 
h@ p@ x@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ !�@ "A #A &A 'A ( A )(A *0A +8A ,@A -HA .��H��H��/ H��t��H����5�/ �%�/ ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&��������%]- D���%U- D���%M- D���%E- D���%=- D���%5- D���%-- D���%%- D���%- D���%- D���%
- D���%- D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%�, D���%}, D���%u, D���%m, D���%e, D���%], D���%U, D���%M, D���%E, D���%=, D���%5, D���%-, DH�=), H�", H9�tH��* H��t	�����H�=�+ H�5�+ H)�H��H��H��?H�H�tH�e* H��t��fD�����=�+ u+UH�=J* H��tH�=�' ����d�����+ ]������w���������fD��SH��H�?���H�{����H�{����H�{(����H�{0���H�{8���H�{@���H�{H���H�{P���H�{X���H�{`���H�{p�}���H�{x�t���H����h���H����\���H����P���H����D���H���[�7����ATI��H��UH��SH��H�� H���dH�%(H�D$1�H�7�� ��H�����
��������tVH���H�7�� ��H�wL������H�{H��L�$$H���H�5E* �H�D$H���H�D$�J���H�@H���H�xtH�T-H���H�7�� tMH�����q���H�D$dH3%(uNH�� []A\��H�����^���@H�w�(����H�w�f.�H������H����.���ff.���H��H�5q% �\���1�1�H�p H�x�{����H��ÐH��x;H��� u#H�GH9�H��HO�H)�H������f.�H���������f.�UH��SH)�H��H��H���H�H�5�H�=����H�{H�5�( H�������t8H�H���H���t�1���H��[]�f.�����H��[]�@H������fD@��t@��uH�����t�����u����PH�|& H�5�H�81��s���AWI��AVM��AUI��ATI��H�5$ UH��SH�����H��L�(L�`L�xI��tL���{���H�C H�5( L������H��H���������������H�U�� t H����H�=�' H�5�1�����@H�UH�B�H��w�1�H�������I��H�����L�s(�H������I��H�����L�s0�H������I��H���f���L�s8�H���u����I��H���E���L�s@�H���T����I��H���$���L�sH�H���3����I��H������L�sP�H�������I��H�����L�sX�H�����I��H�����L�s`�H��������(H�H�Ch�	H������I��H�����L�sp�
H������I��H���c���L�sx�H���r������H�H����H���S������H�H���H�E �#����ǃ����CH����@����@H������Hǃ�H�0H����� ��H�pH�Ǻ���H�5c% �L��Hǃ�Hǃ�Hǃ�����CH���L��Hǃ�H�5}Hǃ��j����������H���H�5YL���F���H��L��[]A\A]A^A_�@H�����E���@H�}
�����
H��������H���������������������@�i������@�H�5�L������q����H���������H������;���H�����������AWH��H�5  AVAUATUSH��XdH�%(H�D$H1�����H���H�xpH���,���H�{pH��H���H�p����H�{pI��H���H�p��I��@����H�L������I��H��u^H9�# ��������H�D$4L���H�D$I�u�� �3f.�I�u�'�H9)# H���u0H��� �\H�wH)��X�H�D$4H�D$�$�H�����1�H��H�D$�)�H�D$L���H����I��L���h�I��u�����DH�D$4L���@L���8�H��u�L���L9=t" tKD���H�D$H�{L�l$(E��H�D$ �H�D$H�L$ �L��H�D$0�C�L���H�D$I�u�� ����H����H�T$L���s��������tfH���H�7�� �H����L���D���H�D$L�t$(H�L$ H�5�! �H�D$ H���H�D$0H���H�D$8H�{��H���H�7�� �H����H�������H�����I��A����I�L+sh�(H�{`H��� ��H����I9���L���h�H������fH�I���H�{HH��� ��H����I9���L���"�H��H����H�{PH��� ��H�GI9�}tL�����I��H��tcH�@L���K�D6I9�uFA��A���eD�+�D���H�D$E����H�D$4H�D$����H�{XH��� �8H����I9��5E1�H���H�7�� ��H��H����[�E����H�H����H�L$HdH3%(�H��X[]A\A]A^A_�H�����=���H�I��A���B���L����I���5����H�w����H�wH�����E���q���H����H���d���H�W�����H�L$ �L���.�L���H�D$���DH���p�H���Z����H�WI9�����L���+�A��H��A�����@H�w����H��H�ƃ����f�H�������H�D$4�B�L���H�D$H�D$����H���H��I�����L���H�D$f�L�����I��u�L������fDH�G�4���������uH�D$4�}���H�����;���H���H���}�L���H�D$�Q���L������<���H�=� H�5�1�����5�DAUATI��UL��SH��H����I��H�����H�������L�D��������A�� u_L�BI����1�H����I�$H��� tKH����H�¸H��~
�H���Y�H�EH��[]A\A]�f.�I��A���fDH�S�f.�H��H�=L�8�H�EH��[]A\A]�H��H�t$�L�H�t$H��A�E��t-H�>���H�
H��H�� I��H�5iH�81���H�
�H����A�}t4H�>L�D$�{�L�D$H�
�H��H�} H�5>H�81��D�H�
�H����@AVAUATUSH��H��0H�t$H�$dH�%(H�D$(1�����H����H���+H�{@H��� �#H�GH9��&H���H�{8H��� ��H����H�¸H9���H�����I��M���L9���lH���H��~3H��������?H�x�H�H�����H�T?H�{H�5
 �m�H�$L��H�߽H�������H���������H�@H��WH�D6H�D$H�{H�L$�H���H�5t H�D$��H�������fDH����H9��������H�������H�I��H�������H��t|D�SE����H�����L���H�D$(dH3%(��H��0[]A\A]A^�L���H�{xH�t$��H���H����D���E�������H�L�H���3H�{(H��� ��H����H9��H�����H������H�I��H�{0H��� ��H�GH9���H����H������AH�H���1�H9���������f�H�����T���D����Hǃ�E���1����H�D$H�D$H�L$�H�{H�5� H�D$H�$H�D$ ���H���������H����I���5��������fDH���1�����f���������H�I��M�������H���H��M��t	I9��|I9���L9���������ulH���1��^�Hǃ�H��������H�G�K����H���H���@H�W�L����H�������@H�{H�5� 1�1����{����H�����%���@��H���V���H�������fDH���H����L�d$H��uH������H�{H�5 �Hǃ��r�H����wf�H����H������H�����H���H�7�� �(H�����(H������H����H������rH����H�{@H��� ��H����H9���H����H�������H�H��I���H�{(H��� ��H����I9�}cL���k�H��tU��=H�I��H�{0H��� ��H����I9�}+L���3�H��t���H�H9����DH���H��� �����H�G���@H�wH�������H���������H�W�����H�G�?����H���������H�G�W����Hǃ�Hǃ�����DH������H���H�{L��H�5� �H�D$H���H�D$H���H�D$ ������H���8�I�����L��H������tc����������f�H����I������H���H�{H�L$�H���H�5t H�D$H�$H�D$H���H�D$ �]�H������H�{H�5E 1�1��<�H�s H�{I��H�L$H���t��������H���p��)���H���c����M��~9L9����L9�������H�=� L��H�51�����t�H���H��L9�}�L��H����������H����4���Hǃ�Hǃ��@������H�� H�5�H�81��w�H�$�L��H���S��<���H�=O L��H�5e1��F�fD��AUI��H�� ATI��UH��SH��(H�= dH�%(H�D$1����1�A�H��H�X �H��H�D$I������‰��L���]�1ɺH���C�H�D$�}���H�D$H�D$H�D$H���H�L$dH3%(uH��([]A\A]�������AWM��AVI��H� AUI����ATI��UH��SH��(H�=, dH�%(H�D$1���1�M��L��H�X H��H��H�D$I������‰��L����1ɺH���C�H�D$���H�3H�~H�=�H����H���t5H�D$H�D$H�D$H���H�L$dH3%(u3H��([]A\A]A^A_�H�{ ��H�5�H��H�� H�81��\������UH��H��H�5� SH��(dH�%(H�D$1����H���uZH�p H�xH��H��H�L$L�D$�-�H�T$H�t$H�߹��H���w9H�T$dH3%(�uH��([]�H�� H�5)H�81��������ff.���AT�H�=US��H�-x H��H��H�}�����H�}H�����H�=�I���I�L��H����H��H�߹H����H�5�� ��H��H�����H�5����H�=��4�H��H�5�H������<H�=.��H��H�5�H�����H�UH�5�L����H��H�� ���H�=v H�5��:�H�=c H�5�'�H�x
 �H�=wH�H�B �U��
H�=�H� �=��H�=MH�� �%��H�=>H�� �
��H�=3H�� ���
H�=.H�� ����H�=!H�z ����H�=H�Z ���H�=	H�: ���H�=H� �}��
H�=�H��
 �e�[]H��
 A\�f�H�=����H�UH�5�H��I����H�������H��H���racc_jumpnot symbol[Racc Bug] wrong arg.size %ld@vstack@tstackreturnednext_tokenyielded$token given after EOFextra token after EndOfTokenRaccParser_racc_do_parse_c_racc_yyparse_c1.4.15Racc_Runtime_Core_Version_CRacc_Runtime_Core_Id_CCparseParamsinitializeinitialize_copy@yydebugon_error_reduce_none@racc_error_statusracc_shiftracc_reduceracc_acceptracc_read_tokenracc_next_stateracc_e_popracc/cparsestate stack unexpectedly empty%s() %s %li (must be Array[2])%s() %s wrong size of array (%ld for 2)[Racc Bug] unknown act value %ld%s() is finished before EndOfToken$originalId: cparse.c,v 1.8 2006/07/06 11:39:46 aamine Exp $;�����H���x������H� ��T��l�����������h(��������8��������zRx�$���FJw�?:*3$"Dh��p\���
p|���E��0� ��BB�G�D �G@�
 AABI�<�/Hf�T�F4����A�I�J O
AAKI
AAE$��=eH8�B�E�E �E(�K0�D8�D@:
8D0A(B BBBEL���{F�L�B �B(�A0�A8�D�I
8A0A(B BBBAL���B�B�D �D(�D@�
(A ABBK@
(A ABBA@$h��B�B�B �A(�A0�G`�
0A(A BBBD8h����F�L�I �D(�DP�
(A ABBAH�����F�E�L �J(�D0�D8�D`�
8A0A(B BBBA(�|����E�N�D@v
AAA,���zF�M�A �(
AIJGNU���`= c5�������������
�3P= X= ���o``�
@ �`P	���o�
���o�oz
���o�= @P`p�������� 0@P`p�������� 0@P`p���GA$3a1�3GA$3p1094��3GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONScparse.so-2.7.8-141.el8.x86_64.debug�іE�7zXZ�ִF!t/���]?�E�h=��ڊ�2N�.к����i>��U�\>���>���$��Ó�4���'J�~�B��r��=/R���ct�q, ߏ���/y���9�����;��N���@���R�6��DV	�OHm�$k�߻��?�Ʊ�#G#�c�>|f
PAZ������ςV��؉�������Ͳ��S/K*@o�r<љ���R{R�eL'*����d�����Ӗ�M�;�n�OAk�ϰ�T�;��	K�,��կ鮌�VjL7W��y*8�
�7��~�GsSn�z�m�ؗ31��F���~���Ƭ�h��Tt5��	Iu`y�/�$��O{��>U`Bc�^p�>����S�T�h��Jy�Y��d��յN��|M[�||�\X-3��*��*��	�g���F~
��uSQ�NL�l1�)�@Ҷ���L(�[�5��U��A95�C�釡u���_j֔N:	4�C~���8S��޽�2
�e�·@Y3LY{����ԥ^ĵݟw0me6ճ�z�%�o����#[t�vWE�e7i@
�G��>`:q=��JhNr�0���G(L��O"�PD�b,�[G�qZt8/�y᧾_���} ��>���VoN'$�����s�M�D�O���<���&a�߭;����Ɵ�D���!�⏡�7fXpX�0Y��`�jE�
�9��jb.�;<�j�z�O�^��e���4�
�%|�r����gF-�8Z�Bl��Y��4�ÐF�������@o�j�~,9/{Ď�&;�(O
G#��t��C������	G�"��Wm�5�@(�YÚ�0CW^�Ȭ[������]֝6;)�)N��W�m�jV�V\�2�[�̞W��TlJ/B�\��R�u�X��t��:�-�P�
����yWbP.,L�i>��_'�Mڝ���s���L7�����F;�Q�2�$�J��m����>���!i��0�:聼�� ���ڱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``8���oz
z
fE���o�
�
0TP^B``�hc00�n��pw  �}�3�3
�2�3�3��h6h6��77L�P:P: �P= P=�X= X=�`= `=h ��= �=���? �?@�@ @P�PA PAp��A`PAD
�C,�C�G+PKKH[	z7 @ @lib64/ruby/rbconfig/sizeof.sonuȯ��ELF>@	@�8@8	@()() �-�- �- �� �-�- �- ��888$$)))  S�td)))  P�td ( ( (,,Q�tdR�td�-�- �- ((GNUwP쪵�>I��}��ؒ�L 
BE��h)��|���qX� �� ���m, F"~ap0 U
-x0 ��!p0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_sizeofrb_hash_newrb_define_modulerb_define_constrb_str_new_staticrb_hash_asetInit_limitsrb_freeze_singleton_classrb_ull2inumrb_ll2inumrb_float_newlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5/opt/alt/ruby27/lib64ui	2�- �	�- �	�- �- �/ �/ �/ 
�/ 0  0 (0 00 80 @0 H0 P0 	X0 `0 h0 
��H��H�)( H��t��H����52( �%3( ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A�������%}' D���%u' D���%m' D���%e' D���%]' D���%U' D���%M' D���%E' D���%=' D���%5' D���%-' DH�=)' H�"' H9�tH��& H��t	�����H�=�& H�5�& H)�H��H��H��?H�H�tH�U& H��t��fD�����=�& u+UH�=2& H��tH�=$ �9����d�����& ]������w������S�&���H�=�H�����H��H�5�H������H�=��t����	H��H���t����H�=l�S����H��H���S����H�=V�2����H��H���2����	H�=0�����H��H�������H�=���!H��H�����H�=�����H��H�������H�=�����H��H������H�=�����	H��H������H�=��l����H��H���l����H�=��K����H��H���K����H�=u�*����H��H���*����H�=��	����H��H���	����	H�=;����H��H������H�=%�����H��H�������H�=����H��H������H�=�����H��H������H�=��d����H��H���d����H�=��C����	H��H���C����H�=��"����	H��H���"����H�=y�����H��H�������H�=W����H��H������H�=@����!H��H������	H�=����!H��H������H�=�}����H��H���}����	H�=��\����H��H���\����H�=��;����H��H���;����H�=������H��H�������
H�=�����H��H������
H�=������	H��H�������
H�=|����H��H������H�=i����H��H������H�=T�u����H��H���u����H�=@�T����H��H���T����H�=,�3����H��H���3����H�=�����H��H�������H�=���	H��H�����H�=������	H��H�������H�=�����	H��H������	H�=�����H��H������H�=��m����H��H���m����H�=��L����H��H���L����H�=o�+����!H��H���+����H�=Z�
����H��H���
����H�=M����!H��H������H�='�����AH��H�������H�=�����!H��H������
H�=�����!H��H������
H�=��e����	H��H���e����
H�=��D����H��H���D����H�=��#����!H��H���#����	H�=������!H��H��������u+H�����t"H��ƒ���tH�€�H�{H�t��t
[���@H��������f.�@��USH������H�=�H������H��H�5H�����H��������?����
H�=H���M���H��H��H���O���H�������
H�=�H������H��H��H��������D����H�=�H����H��H��H����H�ǀ�������H�=�H������H��H��H�����������	H�=aH�����H��H��H�����H�ǀ����\����	H�==H���h���H��H��H���j���������	H�=H���<���H��H��H���>��������d����	H�=�H������H��H��H������H��������	H�=�H�����H��H��H��������
����H�=�H�����H��H��H�����H������|����H�=�H�����H��H��H������������	H�=bH���\���H��H��H���^�����������H�=IH���0���H��H��H���2���H�����H�=H������H��H��H������������*����H�=�H�����H��H��H�����H����������H�=�H����H��H��H����H���h�H�=�H���t�H��H��H���v�H�������	H�=gH���F�H��H��H���H�H���������i�	H�=KH����H��H��H����H�����	H�=H�����H��H��H�����H������
�
H�=�H����H��H��H�������H�=�H����H��H��H����H�ǀ����P�H�=�H���\�H��H��H���^����	H�=yH���0�H��H��H���2��X�H�=gH����H��H��H����H�ǀ������H�=)H�����H��H��H��������H�=H����H��H��H�������
H�=�H���~�H��H��H����H�ǀ����D�
H�=�H���P�H��H��H���R���x�H�=�H���$�H��H��H���&���L�	H�=�H����H��H��H����H�������	H�=YH�����H��H��H����������
H�=7H����H��H��H��������H�='H���r�H��H��H���t�H������8�H�=�
H���D�H��H��H���F����l�H�=�
H����H��H��H����H���������;�H�=�
H�����H��H��H�����H����H�={
H����H��H��H����H��������H�=\
H����H��H��H���������	H�=K
H���\�H��H��H���^�H����"�	H�=
H���.�H��H��H���0������V�
H�=�H����H��H��H��������*�H�=�H�����H��H��H�����H������H�=�H����H��H��H�������������H�=�H���|�H��H��H���~�H�����������H�=uH���K�H��H��H���M�H�����H�=4H����H��H��H����H������@��H�=H�����H��H��H�����H�����������	H�=�H����H��H��H����H���~��	H�=�H����H��H��H����H��������
H�=�H���\�H��H��H���^�H�����������H�=�H���+�H��H��H���-�H������H�=HH����H��H��H����H������ ��H�=*H�����H��H��H�����H������������H�=H����H��H��H����H���^��H�=�
H���j�H��H��H���l�H��������H�=�
H���<�H��H��H���>�H���������_��
H�=�
H����H��H��H���
�H������
H�=h
H�����H��H��H�����H��������H�=E
H����H��H��H����H������������
H�=,
H���{�H��H��H���}�H���>��
H�=�	H���J�H��H��H���L�H������p��H�=�	H����H��H��H����H������B��H�=�	H�����H��H��H�����H�����������H�=�	H����H��H��H����H�����H�=]	H����H��H��H�����	H�=G	�m��H��H���m��
H�=0	�L��H��H���L��H�=	�+��H��H���+��H�=		�
��1H��H���
��H�=�����kH��H������
H�=������H��H������H�=����
H��H�����H�=����H��H�����H�=��e��%H��H���e��H�=o�D�H�����H��H���B��H�=Y�!�H�����H��H�����H�=5��H�����H��H�����H�=���H�·���H��H������H�=��H�›���H��H�����H�=���H��{��H��H�����H�=��r��H��H���r��H�=��Q��H��H���Q��H�=��0���H��H���0��H�=����MH��H�����H�=z����iH��H������H�=X�����&H��H������H�=G���H��H�����H�=7���#H��H�����H�=�j��+H��H���j��H�=��I��+H��H���I��H�=��(��H��H���(��H�=����H��H�����H�=�����H��H����������H�=�H����H��H��H����������H�=nH����H��H��H���������H�=GH���W�H��H��H���Y����l��H�=$H���(�H��H��H���*��b�=��H�=H����H��H��H�����;���H�=�H�����H��H��H����������H�=�H����H��H��H���������H�=�H���l�H��H��H���n���u+H�����t"H��ƒ���tH�€�H�{H�t��tH��[]��H��H��[]�2���H��H���RbConfigSIZEOFintshortlong long__int128off_tvoid*floattime_tclock_tptrdiff_tuint8_tuint16_tuint32_tuint64_tuint128_tuintptr_tssize_tint_least8_tint_least16_tint_least32_tint_least64_tint_fast8_tint_fast16_tint_fast32_tint_fast64_tintmax_tsig_atomic_twchar_twint_twctrans_twctype_t_Boollong doublefloat _Complexlong double _Complex__float128_Decimal32_Decimal64_Decimal128__float80LIMITSFIXNUM_MAXFIXNUM_MINSCHAR_MAXSCHAR_MINUCHAR_MAXWCHAR_MAXWCHAR_MINSHRT_MINUSHRT_MAXINT_MINUINT_MAXULONG_MAXLLONG_MINULLONG_MAXINT8_MINUINT8_MAXINT_LEAST8_MINUINT_LEAST8_MAXINT_FAST8_MINUINT_FAST8_MAXINT16_MINUINT16_MAXINT_LEAST16_MINUINT_LEAST16_MAXINT_FAST16_MINUINT_FAST16_MAXINT32_MINUINT32_MAXINT_LEAST32_MINUINT_LEAST32_MAXINT_FAST32_MINUINT_FAST32_MAXINT64_MINUINT64_MAXINT_LEAST64_MINUINT_LEAST64_MAXINT_FAST64_MINUINT_FAST64_MAXINTMAX_MINUINTMAX_MAXINTPTR_MINUINTPTR_MAXSIZE_MAXPTRDIFF_MAXPTRDIFF_MINFLT_RADIXFLT_ROUNDSFLT_EVAL_METHODFLT_MANT_DIGLDBL_MANT_DIGFLT_DIGLDBL_DIGFLT_MIN_EXPLDBL_MIN_EXPFLT_MIN_10_EXPLDBL_MIN_10_EXPFLT_MAX_EXPLDBL_MAX_EXPFLT_MAX_10_EXPLDBL_MAX_10_EXPFLT_DECIMAL_DIGLDBL_DECIMAL_DIGFLT_HAS_SUBNORMLDBL_HAS_SUBNORMFLT_MAXDBL_MAXFLT_EPSILONDBL_EPSILONFLT_MINDBL_MINFLT_TRUE_MINDBL_TRUE_MIN��G��������>�<8�6;,���Hp�p������zRx�$`���FJw�?:*3$"D����\P�E��
I4|@��E�A�D l
AAHDDAGNU��	�	�- �>�
�"�- �- ���o``�
T0 ��	���o����o�o����o�- �� 0@P`p�GA$3a1��"GA$3p1094
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�"GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignsizeof.so-2.7.8-141.el8.x86_64.debug�:��7zXZ�ִF!t/��7]?�E�h=��ڊ�2N�k?�������\eg�AvTIƝTy��{����7��
E]�^�n�����L�?Lj�)��S��!���b_�}v�����]��KF]��Њ2N����ބ2N���Չl�)�D��Sw%=S��Z�0�/-R�*ң0�'X9���f��nH���`fZ�#,\
�6l=�
�🻌��D�;��_�C�`Q:�%	�<���S�y�ȹ�H��v{`^����6����7�>��5�ՁU
x�o����秧�i�I'U5�ڪ	]ua��/�-��-XU��-t�
��]L�Z�T���`*����fbb�l�t"�ä��"ܪ����Ъ�����*�^�2ӝc*�*�g4���
����Т�C@iɡ���w_�4
!��G0
6j൸+�e����X,�E��+���{H_�X)���8����*Jd�c�\c���:�*��(t���H-�)���<N��BG����
�j����G��njX�25�X��P���@�%}�ߑ�rX��^j�5P?���̆\��~��ٸR��ё��=L�=M�������V�˫/���o�{<j�3�@w�� �ˤ��*�z�#ŷb�[<��ƐWN�-�q��R�pD$x��}Ɍ�
�8��;ЬU/��{$jk"�c�)ۣ�=k�EX3?g\�l-
�a@ؖ>An����?�_�k����KgQ��1�L'�E���������X�����ʛXP놓�<���5b�-}��U���l;(�Bi�%P$���i%���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``8(���0``T8���o��&E���o�� T�^B��h��c���n���w@	@	^}�"�"
��"�"p� ( (,�P(P(��)) ��- �-��- �-��- �-��- �-���/ �/ �0 0p�p0 p0�x0`p0�
44,`4T�7+PKKH[a�prprlib64/ruby/gdbm.sonuȯ��ELF>�!@0k@8	@�T�T ]] ] 0` �]�] �] 888$$pTpTpT  S�tdpTpTpT  P�td�H�H�H��Q�tdR�td]] ] ��GNU'��l�z\��y5�̥6^�Q�@$QSBE���|�V�qX�y7�z�� ��8z�:E�o�UoKs��U�W$�� p�_�q�"�"��) h��d��K~-~?�U�, �g�F"��+��T�����@b �pb ��@L�@b __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_check_typeddatagdbm_closeruby_xfreerb_eRuntimeErrorrb_raisegdbm_firstkeyrb_str_newgdbm_fetchrb_string_valuerb_str_exportgdbm_nextkeyrb_hash_newrb_hash_asetrb_ary_newrb_assoc_newrb_ary_pushmemcmpgdbm_existsrb_out_of_intrb_error_frozengdbm_syncgdbm_reorganizegdbm_fdescrb_fd_fix_cloexecrb_block_callrb_intern2gdbm_deletegdbm_errno_locationgdbm_strerrorrb_hash_delete_ifrb_yieldrb_ary_tmp_newrb_str_duprb_protectrb_ary_clearrb_freeze_singleton_class__stack_chk_failrb_jump_tagrb_ary_new_caparb_warngdbm_store__errno_locationrb_sys_failrb_data_typed_object_zallocgdbm_setoptrb_fix2intrb_keyword_given_prb_free_tmp_bufferrb_block_given_prb_eIndexErrorrb_empty_keyword_given_prb_error_arityrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_check_typerb_ary_detransientrb_eArgErrorrb_get_pathgdbm_openrb_sys_fail_strrb_num2intrb_ensureInit_gdbmrb_cObjectrb_define_classrb_eStandardErrorrb_eExceptionrb_mEnumerablerb_include_modulerb_define_alloc_funcrb_define_constgdbm_versionrb_str_new_cstrrb_define_methodrb_define_singleton_methodlibruby.so.2.7libgdbm.so.6libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�ii
�ui	�] �"] @" ]  ] @] �HP] �"X] �"�_ �_ 	�_  �_ "�_ $�_ 1�_ 3�_ ;�_ @�_ A�_ B�_ E�_ F`  ` (` 0` 8` @` H` P` 
X` `` h` 
p` x` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` a !a "a #a % a &(a '0a (8a )@a *Ha +Pa ,Xa -`a .ha /pa 0xa 2�a 4�a 5�a 6�a 7�a 8�a 9�a :�a <�a =�a >�a ?�a C�a D�a F�a G�a Hb Ib Jb Kb L b M(b N0b O8b P��H��H��F H��t��H����5G �%G ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD��������%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%}B D���%uB D���%mB D���%eB D���%]B D���%UB D���%MB D���%EB D���%=B D���%5B D���%-B D���%%B D���%B D���%B D���%
B D���%B D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%�A D���%}A D���%uA D���%mA D���%eA D���%]A D���%UA D���%MA D���%EA D���%=A D���%5A D���%-A D���%%A D���%A D���%A D���%
A D���%A D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D���%�@ D��UH��SH��H�='P1��%���ZH��H��[]��H�=i@ H�b@ H9�tH��= H��t	�����H�=9@ H�52@ H)�H��H��H��?H�H�tH��= H��t��fD�����=�? u+UH�=�= H��tH�=�: ����d�����? ]������w��������fD��H��H�5�: ����H�xH�H�����ff.����SH��H�H��t����H��[����PXH�5$H��H��< H�81��r���f���SH�5$: ���H�xH��tH������H�C�[����f.���PXH�5�#1�H��H��H�=�> ����ff.�USH�����H��t(H��Hc�H������H��H�����H��H��[]�D�H��H��[]�f���H��H�5a9 ����H�xH��t=���x
�t&H��Ð�k���H��tH���N���1�H�����H�������USH������H��t(H��Hc�H���R���H��H������H��H��[]�D�H��H��[]�f�SH��H��H�|$H�t$�	���H�|$���H�H��H�D$�� uH��H����H���l���H��[�fDH�H�Hc���H9�u�H�v���SH��H�5E8 ���H�xH��t	H��[�n�������f�����f.�USH��H��� uBH��H������H��H��tIHc�H���?���H��H����H��H��[]�f.�H�FHcȉ�H9�uH�v���H��H��u��H��H��[]�f���ATH�5�7 US���H�hH��tZ���H��I�����H��H�����t7�H��H�����H��L��H������H��H������H��H�����u�L��[]A\�����@��ATUSH���0���H�5�6 H��I���n���H�hH��tLH������H��H�����t1f�H��H������H��L��H�����H��H�����H��H�����u�L��[]A\��D���@��AWH�5�6 AVAUATUSH����L�`M����I��Hc��~H��H�D[]A\A]A^A_��L���h���H��H��tPE1�DH��L��A������H��I��H���+���L��H��M��u�Ic�H�DE�uH��[]A\A]A^A_�D�E1���������ATH�5�5 US�<���H�hH��tb����H��I�����H��H�����t?�H��H������H��H�����L��H���o���H��H���T���H��H�����u�L��[]A\����ff.����AWH�535 AVAUATUSH�����L�`M��tv���L��I���9���H��H��H��tIfDH��H��L�����H��L��I��H��I������H��L��H�����H��L��L�����M��u�H��L��[]A\A]A^A_��N���ff.���ATH�5�4 US���H�hH��tL����H��I�����H��H�����t)�H��L���E���H��H���*���H��H�����u�L��[]A\�����f���USH��H��H�|$H�t$�d���H�|$�J���H�5�3 H��H�D$�f���H�hH���H������H��H�����uD���H�H��H��I�Ƀ�A�� u\H����9�tXH��H�����H��H�������H��H�����H��t�H�|$H�I��A�� t�H��wI��A�� t��H9�u�M��u?H����H�pM��tH�pM��u6H�������y���H���[]�f�HcW��f.�H���f.�H��1�[]����f���USH��H��H�|$H�t$��H�|$���H�5�2 H��H�D$��H�hH����H�����H��H�����uD���H�H��H��I�Ƀ�A�� u\H����9�tXH��H���1���H��H�������H��H���g���H��t�H�|$H�I��A�� t�H��wI��A�� t��H9�u�M��u?H����H�pM��tH�pM��uH���}���y���H��H��[]�H���f�HcW��f.��H��H��[]��<���ff.����ATUH��SH��H�|$H�t$���H�|$���H�H�D$�� uKH��L�`��H��H�561 ����H�xH��t?L��H�����H�H��H��[]��A\�fDH�xHcω�H9�uL�`������f�@��uH�����tH��ƒ���t��u�H��H�=��~�ff.���SH�����H��H�5�0 ��H�xH��t
��H��[�����ff.����USH��H���n���H�5G0 H����H�hH��t!H���N�H�������H��H��[]������UH��SH��H��H�55 H��t$I��H��L��
1�1���H��H��[]�@�	H�=���H��H��4 ���AWAVAUATUSH��H��H�|$���H�5�/ H����H�hH���������I��@H����I��H��H��u�r�k�M��L��M��t�H��H��L���2�H��H��I��L��I����H�߅�t��2�M��tL���%��`��8���H�=4 H�5�H��1��!�A�H�D$H��[]A\A]A^A_��q���UH��SH��H�����H�5�3 H��t'I��H��L��1�1��i�H��H��[]���	H�=E�g�H��H�m3 �ff.�AVAUATUH��SH��H�t$�W���H�|$��H�|$�s�H�H�D$�� ��H��L�`��H�5. H����v�L�hI��M��tyL��H��L�����t8L��H��L���Z��uZA�H���x!��A�H��[]A\A]A^�f��H��[]A\A]A^�fDH�HHc��H9�u�L�`�j�����A��������8�I�H�=r2 H�5H��1������ATUH��S�P���H�5)- H����L�`M��tJL���P�H��H��t/L��H���<�H��H��I�����L��H��[]A\���[�]A\��y�f���H���#���H��H���'����AVAUATI��US��H�5�, L��I����H�hH����H����H��H�����tjL�-S, �+�L��L�����H�hH��tXH��H���!�H��H�����t6H��H���[�H��H���P�H��H����H�����t�H��L������[L��]A\A]A^���ff.�@��AWAVAUATI��1�USH��(dH�%(H�D$1���L���D$I�����H�5�+ L����L�xM����H�ŋL���E�����D$��H��H�������L�t$�@�H�59+ L����L�xH��M���>H��L����H��H���������u*H�������tH����H�{H�t
����@H��L���
�H��I���B�L��H����H�=- L��H�����T$��uH������Q���H��L�����A����E1�I�]�&�H����I9�}4H��J�4�L��I������I�E�� u�I�EI9�}I�E ��f��|$��uO�T$��~)‰UL���#�L��H�T$dH3%(u"H��([]A\A]A^A_ÐH��������������@��AUHc�ATI��I��USH��H���Q�H��E��~(A�E�L�l�H�3L��H���A�H��H����L9�u�H��H��[]A\A]���AVI��AUATUSH��H�$H�t$�o���H�|$��H�|$��H��H�D$��H�<$�u�H�L$H�$H��� ��H��H�i��Hc�H9���L�A��A�� ��L�hL�@Ic�I9���L��H�5�( D���@�H�xH���������L��I��H��A�L������tZ����8th����8�l�H�=�- H�5?H��1���@I��L�hA���q����H�iH�Q�6���H�$H��[]A\A]A^��1�������H���<�L���4�@��H��' ����ff.�PXH���5��8��H�=�, H�5�H��1���fD��SH��H�5�' H��dH�%(H�D$1���H�xH��tB1�H�T$�H���������D$������t#H�L$dH3%(H��uH��[��������N���ff.���SH��H�5' H��dH�%(H�D$1��x�H�xH��tB1�H�T$�H���������D$�[����t#H�L$dH3%(H��uH��[��X��c����ff.���UH��H�5�& SH��dH�%(H�D$1����H�XH��tBH���v�H�T$�H�߾�D$������t$H�L$dH3%(H��uH��[]��������-���ff.�f���AVAUI��ATUH��S��H��dH�%(H�D$1���H�$�������L�e��tb1�L�u����H��tH���v�L��L���;�H��H������t=H�L$dH3%(H����H��[]A\A]A^�DL��L����H��H��tl��H��u���u�H��' H�5H�81��U�D�K���~YH�$L�eA����M����;���I��tL���\���f.��K�����@���L����H���0���H�<$tH���������.��I�f���ATUH��S�����tlH��H�5b$ ���H�xH��tw��H��H�����t;L�%=$ DH��� �H��L����H�xH��t?H����H��H�����u�H��[]A\Ð��H����[H��E1�]1�1�H��A\�M������AUATI��USH���:�����H�5�# L���#�H�XH����H�����H��H�����tHL�-|# @H��H����H���U�L��L�����H�XH��tRH��H���6�H��H�����u�H��L��[]A\A]�D��H���+�H��L��E1�[1�]1�A\H��A]�o���f.���AUATI��USH���Z�����H�5�" L���C�H�hH����H�����H��H�����tSL�-�" @H��H�����H��H�����H���j�L��L�����H�hH��tOH��H���K�H��H�����u�H��L��[]A\A]�f����H���C�H��L��E1�[1�]1�A\H��A]�����f���UH���SH��H�����H�H���� tHH��H����H��~[�uAH��u$H�[ H�SH�3H���I���H���[]�DH����f�H�S�f.�H����H��� �H�$ H�5`H�81���D��ATI��UH��S��H��H��tH��L�����H��[]A\Ð����t�H����H����f.���AWAVAUATI��H�5�  UH��S��H��H��XdH�%(H�D$H1�L�|$�R�L�|$0I��H�D$H�D$8H�D$ H�D$@�q�H�D$(���@���`1�I�$H�T$����H�D$H�D$ H����A������H�|$ H����D$E1�1�L�|$(H�|$�?�H�D$E�������H�x�ڀ�H� tH�xL��D����I��M���A������6��8t�,��8	t�"��8
�AH�|$���I�T$H�T$������I�T$H�T$ ���8H���	H�|$A�����H���
���@�����u�H�|$ A��H�������@���f�Q���A�ĉÀ�A�� �L$�����H�H�ǁ� E������H�x��H���NL���D���b�I��H���}L��������W��I�~H��t�i�M�fH��A�����H�t$HdH34%(�`H��X[]A\A]A^A_��H�|$(�F����������	H�D$(���H�|$H��� ����H����H�L�/�1ɾ���I��H���A���H�D$H�xH� tH�x�T$L���1ɾ�j��I�����f��{����A�ĉÁ�A�� �t$�p���fD�S��A���A���H�x����H���Y���������8�\�H�=�" H�5/H��1��������H�|$(t
H�|$(��������������f���ATI��U��H��H� S���L���H��H������H��t�d���u H��[]A\���H��[]A\�H�= H��H��[H�{�]A\������H��H�� H�=^H�0���H�=�H��! H�� H�0��H�=sH�w! H�� H�0��H�=i! H�R! H�� H�0�[��H�=L! H�5��h��H�=9! �����H���H�5"�i��H�=! �����H����H�5�:��H�=�  1�H���H�5����H�=�  1�H��H�5����H�=�  �H�o�H�5�����H�=�  �����H�p���H�5�����H�=�  �H���H�5����H�=f  �H���H�5z���H�=G  �H�s��H�5a�g��H�=(  �H�$�H�5��H��H�=	  1�H�8�H�5,�,��H�=� �����H���H�5�
��H�=� 1�H�
�H�5����H�=� 1�H���H�5�����H�=� 1�H���H�5����H�=z 1�H�Y���H�5����H�=^ 1�H�]���H�5����H�=B 1�H�����H�5��e��H�=& 1�H����H�5��I��H�=
 1�H�I�H�5j�-��H�=� 1�H�}�H�5S���H�=� 1�H�a�H�5>���H�=� �H�"���H�5%����H�=� 1�H���H�5���H�={ 1�H�z�H�5����H�=_ 1�H�n�H�5����H�=C 1�H�b�H�5��f��H�=' 1�H���H�5��J��H�= �H���H�5��+��H�=� �H���H�5����H�=� 1�H�<�H�5{����H�=� 1�H���H�5j����H�=� �H���H�5P���H�=v �H�"�H�5<���H�=W �H�s�H�5'�w��H�=8 �H���H�5�X��H�= �H�e�H�5��9��H�=� �H�F�H�5����H�=� �H���H�5����H�=� �H��H�5�����H�=� �H�I�H�5����H�=~ 1�H�}�H�5����H�=b 1�H����H�5i���H�=F �@H�5Y���H�=. �@H�5H���H�= �@H�57����H�=� �@H�5'����H�=� �!H�5���H�=� �AH�5���H�=� ��H�5����H�� H�8���H�=� H��H�5�H���d����H��H���closed GDBM file%sGDBMeach_pairkey not foundpair must be [key, value]GDBMErrorGDBMFatalErroropeninitializecloseclosed?[]fetch[]=storeindexselectvalues_atlengthsizeempty?eacheach_valueeach_keykeysvaluesshiftdeletedelete_ifreject!rejectclearinvertupdatereplacereorganizesynccachesize=fastmode=syncmode=include?has_key?member?has_value?to_ato_hashREADERWRITERWRCREATNEWDBFASTSYNCNOLOCKVERSIONgdbmGDBM#index is deprecated; use GDBM#key;�4���`������@���������4��P ��l`�����������@�����4��X0��t@�������@�����������������0�,��d���p�������@�,��X������(��d��|�������hP��p�����0�	��$	P�P	���	���	`� 
@�p
��
@��
0�������\zRx�$0��`FJw�?:*3$"Dh��P\���
p���$HX����E�U����AAK����6E�k
A����"EAM0����GA�A�D g
DAFIDA$,��_Hf
BX
HI
A0T8��GA�A�D g
DAFIDA �T��iA�G @
AG����'A�\
E����0����~A�A�D z
DAKhDA,���|F�H�A �d
ABA,@L��|F�A�A �k
ABA`p����F�I�B �B(�A0�A8�D@`
8F0A(B BBBHP
8A0A(B BBBF,�����F�H�A �l
ABAHX���F�I�B �B(�A0�A8�D@v
8D0A(B BBBA,P���nF�H�A �V
ABA4����NE�A�G0
FAJd
CAA4���DE�A�G0
DADa
DAA0�,���F�A�D �D0`
 DAEG$���2f8���4E�i
A(T���PE�A�G x
DAA(���]E�D�G f
DAEH�@���F�B�B �B(�A0�A8�GP�
8A0A(B BBBA(����eE�D�G k
DAHT$(��B�B�B �A(�D0�D@�
0A(A BBBJI
0A(A BBBG8|���wF�A�D �N
ABLA
FBA�$�HI<�,��F�B�B �D(�A0��
(D BBBAH���F�B�B �B(�F0�A8�D`�
8A0A(B BBBB4\p�]F�E�G �A(�G0y(D ABB$�h��)E�D�K HGA@�p�lF�E�B �A(�A0�D@-
0A(A BBBH����*AAD 0���E�N ^
AA T(��E�N ^
AA(x���E�K�D0]
AAA@���wF�B�E �A(�D0�F@�
0A(A BBBF8�4��F�A�D �p
ABBN
GIEL$���F�B�D �A(�D0�
(D ABBFQ
(G CDEELt8��F�B�D �A(�D0�
(D ABBCQ
(G CDEE(����E�I�G F
FAF(�L�FF�D�D �]
ABBL	p��F�B�B �B(�K0�D8�I�i
8A0A(B BBBI@l	�}F�I�M �h
ABII
ABDNHB�	L�LH5GNU��"@" ] �H�"�"�����
�F] ] ���o`�
�
!` xX��	���o`���o�o����o�]  0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@GA$3a1��FGA$3p1094�!�FGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�"�FGA+GLIBCXX_ASSERTIONSgdbm.so-2.7.8-141.el8.x86_64.debug&})�7zXZ�ִF!t/���]?�E�h=��ڊ�2N�H��� ������'�'�	��A�A"�&�~o8�n'�)����BD~�|k��OOv�3-!cƊ��d4e
Ꮎb8��6�g��Q�b+h��fJBX���3o\�?��kg�
��t��pE��+eN-?܈3�]�j�!�8���xf�
u�G�z���M׀��*9�J�؜Ċ۠Y���C'�0$�AV�-��'c��o�����Y�*�mZ��k�.��ګ�z�G0\�S_r����j�kۖ�|wêB�ͮ�*{ Q��/�K���!��~Mb �t������`M��pfjoP��nnv���f'0F�9������W���k��m���d�KY�c
}۵��
��*zm���_b\�+$3!rǖt�K�#z����jD���a�����)Y����{��:�Lg�h�=��7uZ��Cf�`א�;���W�������$K�ު����9Q�k|��(SR�����ڑ��+ _:|�Aӆ��>�^o�N3�fw���DO"ꙴÕ4=�� ��އ��&�)�j\(�r�\v+���B�Ae!�q�Bz�q�4A��PbVLk�}@~T>��&!�U��d�NUwk�U�Ǥ�iw���	�7�Y;��ס���
�U��j�I��f��h�X�#cZ
-���_d�̍�3)�X5f�Q�wB���t�=zxA*D��gk����
�|7��bb�P��5�Hʎ��ͨ�b��)�9TJYu�|�c½�7����.t�9�@�]�/-k�~���������-3� �U<0���!���By��k���{��&Ȁ��E�/�����9�p�N>N�o��&-����Jƞ9u��PD����(��<dy�|:Ħ}`�ѯr{��dv
�4`��(:զ�T���7����bO����հ�f�.�~�Hy�W=6!��"�7h�a��Ժj� ��ۥ�D�!�X��dN��tS�]8W�X���Ϲh�Dm�ՠC�������R�0t��y2^�= �+�Ö���Cn6y�F�<P~vVk@'=�r�m-�Ձ�+ۀ�J11�0���X��hÚ����Яo�������οu6v�D,,˻��)��I2n�	_(����6�|F�ʉ����Gµ
���O������ǘc�����n�Z�j`0�y��ٰ��'�Kvsg�H_Qˮ'ԍ$y�f�ʰI;�j��]����2�>���2�{���V�&����v�}.��:�i=�j~k�|T�e�=wo*'p���Ul&dA�Щ�D��׫/��hY�
F3�Up��9;�
�+��J��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0�
�
!8���o���E���o``0T���^BXXxh��c��`nPPPw�!�!L%}�F�F
�2GG���H�H���J�J�	�pTpT �] ]�] ]� ]  ]h ��] �]��_ �_h�` `@�@b @b0�pb`@bD
�d(�dXj+PKLH[�
~/�/�/lib64/ruby/monitor.sonuȯ��ELF>�@�(@8	@xx PP P �� �� � ��888$$XXX  S�tdXXX  P�td�����Q�tdR�tdPP P ��GNU�b��k~tb�"�+•l�V�J<�@0 BE������|�qX ��2���
`s U�Un�"b"�, ��F"9���  |`��  ��  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_gc_markrb_check_typeddatarb_funcallvrb_intern2__stack_chk_failrb_mutex_locked_prb_thread_currentrb_yield_values2rb_mutex_trylockrb_gc_writebarrierrb_eThreadErrorrb_raiserb_ensurerb_int2bigrb_mutex_unlockrb_bugrb_data_typed_object_zallocrb_mutex_newrb_num2longrb_mutex_lockInit_monitorrb_cObjectrb_define_classrb_define_alloc_funcrb_define_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64�ui	ii
P pX 0` ` � �� �� �� � � 
� � �      (  0  8  @  H  	P  
X  `  h  p  x  �  �  �  �  �  �  �  �  �  �  ��H��H� H��t��H����5B �%C ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%} D���%u D���%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 D���%- D���%% D���% DH�=�1����f�H�=	 H� H9�tH�� H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�= �����d����m ]������w��������fD��SH��H��_���H�{[�U���D��SH��H�5�
 H�� H�?dH�%(H�D$1����H�5� H�@H�$H�CH�D$H��t0H�{�H�������H�T$dH3%(u'H�� [�@�H�=-�W���H��H�� ��V���fD��SH�5$
 �_���H�xH����H��u1�[�f.�H�[����H�¸H9�t�1���fD��H��H�5� ����H�xH�����ff.�@��1�1������ATH�5� UH��S����L�`H�����I9�t8H�{����H��u
[]A\�D�k���H�C�t#�H��[]A\ÐH�H�����H�����t�H��H��������ff.���SH�5 �?���H�X����H9�u�[�H�; H�5�H�81����f���ATI��H�5� UH��SH��H��0dH�%(H�D$(1�����H�8H�@H�H�@H�xNH�D?H��H�H�=����H�$H��L�d$H�l$H�D$�}���H�L$(dH3%(uH��0[]A\�@�����D���@��SH������H�5 H���D���H�0H���(���H��H�0t�[��H�@H�x����[�����f.���UH��
 �SH�����H�X H�����H�C�uH�����uH�CH��H�H��[]�H��H���U�������UH�5D
 SH��H��H�?�t���H���<���H�;H�E�uH�����u9H�{@��tH��H�}H��[]�@���H�ǸH�}H��[]�H�������fD��ATH�5�	 UH��S���L�`H�����I9�uH�H��H��[]A\�@H�{�������H�C�uH�����u�H��[]A\�H��H���U�������SH���s���H��H��[H�u���H�=~����Y���f���H�U SH�=$H�0�%���H�5N���H��H������H��1�H�G���H�5��{���H��1�H�����H�5��c���H��1�H�����H�5��K���H��1�H�O���H�5��3���H��1�H�����H�5�����H��1�H�_���H�5�����H��1�H�'���H�5����H��[�H�k���H�5�������H��H���waitcurrent thread not ownermonitor_exit: count:%d
Monitortry_enterexitsynchronizemon_locked?mon_check_ownermon_owned?wait_for_condmonitor;�����H��������`������������0X���T����p�������x���������h���$���t����8���������8���$h���@zRx�$����FJw�?:*3$"DX���p\����
p|���E�Q ������E�N0_
AE�����JE�`
K�0���!HT�H���
4�D����F�H�D �e
ABF[
ABB0����>E�`
A0L�����F�K�D �GP{
 AABE�<���XE�r
IWzRx�� P����L���(�H���]E�M�D w
AAA4|���zE�H�G }
AAEU
AAA4H���}F�H�D �f
ABEl
ABA����'E�O� ����L��GNU�p0` �����������!����
TP X ���o`��
1  (x	X 	���o(���o�o����o� ��� 0@P`p��������

 
0
GA$3a1�aGA$3p1094�QGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�QGA+GLIBCXX_ASSERTIONSmonitor.so-2.7.8-141.el8.x86_64.debugU?]�7zXZ�ִF!t/����]?�E�h=��ڊ�2N���6� ����)}��RRG��6|P0�0�L�W���Nk��bW��
8�w��mF���06ȆO�N�BEGN�����(�;|�u9��Y�S��[���%��n�6�Gh�;�֬�o�C��4&��5�Z-p&�*>m��x;�N�)y����̈́5>�ю 9�2wj���l'����`�i;QA�w��<?_
��wih��	ͮ��ҽI�V�4���mJ�7�Q�ګyŪ�(��pJ��m�q���S,L`s��W��E�-Yd���>,�w$謀Yi䄠>tVL�Q�E{��ЈU0�3;)��ץO�N�8�u}.�ۗhNL��"������f=��NTI�w��D��z8;�}�JW�t�D�D]��n^��4 ��o��w! R�������5t@�tۜ�Pq��(����#?��$���!�HvH�O�YLL�B��E�I��I��T�ID��G�)1��|�'�N�Di���#3���*N#�Ɨs����~AJ��}9�-�3�+����{����e��%�T2�(0�;O����l-�D����3rM�������k��c9k�I�!�^�L��!U�/�cMzF7�
=���6�r;P�˛s��KP���v3�ˍŽ(��,㔴�ZyE�5���p!��P�}va�Y��]x�0{{�y�\�X9ㆨ��B~�g �mς�/�����J��,��@�RL`��,����`H<�����Q6�^"+h+�mJ�p>y��T��#S�p���?Ș�
?̓��&��3蠠!0&x��a��r{�%��<Q�R�޿�j���O�d&�5��z=rh���p�Xr�����t?dLj��I��͎�~K�zt��`�03F.ʂ+�h����=�:
��{G�-�訡�Jh��0^T��	�]�BR��i��.g�%M����1�"���9.")Z��Rw�bI�+��)���!%w���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��18���o��BE���o((0TXX ^Bx	x	(h��c���n@
@
pw���}TT
�2aa����������XX �P P�X X�` `h �� ���� �0�   ���  � �� `� D
#,@#P'+PKLH[���ВВlib64/ruby/pathname.sonuȯ��ELF>�@��@8	@(r(r h}h} h} @x �}�} �} ��888$$rrr  S�tdrrr  P�td�b�b�b��Q�tdR�tdh}h} h} ��GNU>7�X;C���kmxKmq�C�b CEBE���|�qXF�qwIs�6#�� �3x�����B$�(��UC���`�z�m �P�"�P���"�"1z	k�5c�a�, z��
F"��CW����� � �� j`U�	P0P,__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_class_new_instancerb_cFalseClassrb_cIntegerrb_cNilClassrb_cFloatrb_cTrueClassrb_cSymbolrb_cFilerb_funcallv__stack_chk_failrb_cDirrb_yieldrb_keyword_given_prb_free_tmp_bufferrb_block_given_prb_funcallv_kwrb_convert_typerb_ary_storerb_block_call_kwrb_empty_keyword_given_prb_error_arityrb_warningrb_check_funcallrb_string_valuememchrrb_obj_duprb_ivar_setrb_eArgErrorrb_raiserb_ivar_getrb_eTypeErrorrb_mErrnorb_const_get_atrb_rescue2rb_mFileTestrb_obj_classrb_block_callrb_cIOrb_hash_newrb_id2symrb_hash_asetrb_check_array_typerb_ary_entryrb_ary_new_from_argsrb_enc_getruby_enc_find_extnamerb_str_subseqrb_str_appendrb_obj_classnamerb_sprintfrb_str_hashrb_call_superrb_str_freezerb_obj_is_kind_ofrb_str_equalInitVM_pathnamerb_internInit_pathnamerb_cObjectrb_define_classrb_undef_methodrb_define_global_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64ui	$ii
0h} 0p} �x} x} p x � � � � � �  � #� $� ,� 5� 6� 7� 8� :� @� A�  � (� 0� 8� 	@� 
H� P� 
X� `� h� p� x� �� �� �� �� �� �� �� �� �� Ȁ Ѐ ؀ !� "� %� &�� '� (� )� *� + � -(� .0� /8� G@� 0H� 1P� 2X� 3`� 4h� 9p� :x� ;�� <�� =�� >�� ?�� B��H��H��j H��t��H����5�j �%�j ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1���������%�g D���%�g D���%�g D���%�g D���%�g D���%�g D���%}g D���%ug D���%mg D���%eg D���%]g D���%Ug D���%Mg D���%Eg D���%=g D���%5g D���%-g D���%%g D���%g D���%g D���%
g D���%g D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%�f D���%}f D���%uf D���%mf D���%ef D���%]f D���%Uf D���%Mf D���%Ef D���%=f D���%5f D���%-f D���%%f DH�=!f H�f H9�tH��c H��t	�����H�=�e H�5�e H)�H��H��H��?H�H�tH��c H��t��fD�����=�e u+UH�=�c H��tH�=fa ����d�����e ]������w������H��H��H�t$�tL�uh�����t~H����@����H�HH�Wg H9�tH�t$����H���fDH�����u�H��t"H��u�H�c H�
뻐H�	c H�
�@H��b H�
�@H��b H�
�@H��b H�
�{����H��b H�
�k������H��H�5�d �dH�%(H�D$1�H��b H�<$H��H�8�F���H�T$dH3%(uH����\���ff.����H��H�5id �dH�%(H�D$1�H�=b H�<$H��H�8���H�T$dH3%(uH������ff.����SH��1�1�H��H�5e dH�%(H�D$1�H��a H�8���H��H�ڿH�$����H�L$dH3%(uH��[����ff.���H��H��+dH�%(H�T$1�H��H�<$H������H���T���H�T$dH3%(uH����*���f.���H��H��H�|$H�t$��a���H���	���H���@����f.���AUI��ATI��US��H��XdH�%(H�D$H1�H�l$H�EH�l$0H�D$8H�EH�D$@�I���H�D$��������1�I�EH�D$����H�D$H�D$ H����H�|$����r�������H���H�F` 1�H�5]c A�L�l$H�8�2���H�
�?�H��?H������H���Ff�H����H9���H�EH��L��L��H�D$�#���H��H��H��H��H�D$�<���H�E�� u�H;]}sH�E ��I�EH�D$������I�EH�D$ ��u{H������������ ���H��H�g_ H���jH�5yb M��L����H�8�O���H��XZH�L$HdH3%(H��uEH��X[]A\A]�@������~
H�T$�w���H�|$t
H�|$��������b�������ff.�f���S1�H��H�=�@�j���H��[�D��S1�H��H�=A�J���H��[�D��UH��SH��H��dH�%(H�D$1���u
H�������H�5` 1�1�H���;���H��H��4HE�H�$�W���H�$H��� tSH�SH�{1����H��ukH���O���H�5b H��H��H�$�i���H��H�L$dH3%(u5H��[]��H��H�{���H��Ѓ����Y���H�$����H��] H�53=H�81��4���@H��H�5}a �����uH�����t�����uH���H��\ H�5=H�81����ff.�f���UH��SH��H�] H�5%a H�8�M���H��H�����H��I��E1�H��H��[1�H�8���H�=����]�{���ff.���H��dH�%(H�D$1��3���H�5L_ �H��H�$H��\ H�8�a���H�T$dH3%(uH����w������ATUSH��dH�%(H�D$1�H������L�%\ H��H�5�_ �H��H�$I�<$���H�,$H�ٺH�5�_ H�����t+H�\ H�8����H�T$dH3%(uH��[]A\�I�<$����������H��dH�%(H�D$1��3���H�5�] �H��H�$H�q[ H�8�a���H�T$dH3%(uH����w����H��dH�%(H�D$1�����H�5L] �H��H�$H�[ H�8����H�T$dH3%(uH��������H��dH�%(H�D$1��s���H�5�\ �H��H�$H��Z H�8��H�T$dH3%(uH��������H��dH�%(H�D$1�����H�5�\ �H��H�$H�QZ H�8�A�H�T$dH3%(uH����W����H��dH�%(H�D$1����H�5t\ �H��H�$H��Y H�8���H�T$dH3%(uH��������H��dH�%(H�D$1��S���H�5,\ �H��H�$H��Y H�8��H�T$dH3%(uH��������H��dH�%(H�D$1���H�5�[ �H��H�$H�1Y H�8�!�H�T$dH3%(uH����7����H��dH�%(H�D$1����H�5�[ �H��H�$H��X H�8��H�T$dH3%(uH���������H��dH�%(H�D$1��3���H�5D[ �H��H�$H�qX H�8�a�H�T$dH3%(uH����w����H��dH�%(H�D$1�����H�5�Z �H��H�$H�X H�8��H�T$dH3%(uH��������H��dH�%(H�D$1��s���H�5�Z �H��H�$H��W H�8��H�T$dH3%(uH��������H��dH�%(H�D$1�����H�5�Y �H��H�$H�QW H�8�A�H�T$dH3%(uH����W����H��dH�%(H�D$1����H�5Z �H��H�$H��V H�8���H�T$dH3%(uH��������H��dH�%(H�D$1��S���H�5�Y �H��H�$H��V H�8��H�T$dH3%(uH��������H��dH�%(H�D$1���H�5�X �H��H�$H�1V H�8�!�H�T$dH3%(uH����7����H��dH�%(H�D$1����H�5�X �H��H�$H��U H�8��H�T$dH3%(uH���������H��dH�%(H�D$1��3���H�5Y �H��H�$H�qU H�8�a�H�T$dH3%(uH����w����H��dH�%(H�D$1�����H�5�X �H��H�$H�U H�8��H�T$dH3%(uH��������H��dH�%(H�D$1��s���H�5X �H��H�$H��T H�8��H�T$dH3%(uH��������H��dH�%(H�D$1�����H�5X �H��H�$H�QT H�8�A�H�T$dH3%(uH����W����H��dH�%(H�D$1����H�5�W �H��H�$H��S H�8���H�T$dH3%(uH��������H��dH�%(H�D$1��S���H�5TW �H��H�$H��S H�8��H�T$dH3%(uH��������H��dH�%(H�D$1���H�54W �H��H�$H�1S H�8�!�H�T$dH3%(uH����7����H��dH�%(H�D$1����H�5�V �H��H�$H��R H�8��H�T$dH3%(uH���������H��dH�%(H�D$1��3���H�5V �H��H�$H��R H�8�a�H�T$dH3%(uH����w����H��(dH�%(H�D$1�H�4$H�T$���H�5cT H��H�D$H�gR H�8��H�L$dH3%(uH��(��
�ff.�f���SH��H�� dH�%(H�D$1��_�H�5T �H��H�$H��Q H�\$H�8��H�T$dH3%(uH�� [���ff.�f���H��(dH�%(H�D$1�H�4$���H�5�S �H��H�D$H��Q H�8��H�T$dH3%(uH��(��2�f���H��dH�%(H�D$1���H�5T �H��H�$H�1Q H�8��H�T$dH3%(uH���������H��dH�%(H�D$1��3�H�5S �H��H�$H��P H�8�a�H�T$dH3%(uH����w����SH��H�� dH�%(H�D$1����H�5�R �H��H�$H�mP H�\$H�8��H�T$dH3%(uH�� [��
�ff.�f���H��(dH�%(H�D$1�H�4$�_�H�5�R �H��H�D$H��O H�8��H�T$dH3%(uH��(���f���H��dH�%(H�D$1���H�5�R �H��H�$H��O H�8�1�H�T$dH3%(uH����G����H��(dH�%(H�D$1�H�4$H�T$��H�53R H��H�D$H�7O H�8���H�L$dH3%(uH��(����ff.�f���H��(dH�%(H�D$1�H�4$H�T$�*�H�5[R H��H�D$H��N H�8�W�H�L$dH3%(uH��(��m�ff.�f���H��(dH�%(H�D$1�H�4$��H�5`Q �H��H�D$H�\N H�8���H�T$dH3%(uH��(���f���H��(dH�%(H�D$1�H�4$�_�H�5�Q �H��H�D$H��M H�8��H�T$dH3%(uH��(���f���H��dH�%(H�D$1���H�5|P �H��H�$H��M H�8�1�H�T$dH3%(uH����G����H��dH�%(H�D$1���H�5�P �H��H�$H�AM H�8���H�T$dH3%(uH���������H��dH�%(H�D$1��C�H�5�P �H��H�$H��L H�8�q�H�T$dH3%(uH��������H��dH�%(H�D$1����H�5\P �H��H�$H��L H�8��H�T$dH3%(uH����'����SH��H�� dH�%(H�D$1���H�L$�H�5�O H�D$H�D$H�L H�8��H��H�D$��H�t$�H����H�T$dH3%(uH�� [���ff.���SH��H�� dH�%(H�D$1����H�L$�H�5N H�D$H��K H�8��H��H�D$�
�H�t$�H����H�T$dH3%(uH�� [�����SH��H��dH�%(H�D$1��o�H��H�$��H�5,N H��I��H��J L���H�8���H�T$dH3%(uH��[�����H��dH�%(H�D$1���E1�E1��H�$H��J H��H�5[M H�8�k�H�T$dH3%(uH����A����ATI��US��H��H��0dH�%(H�D$(1���H����H�D$��tR����tg1�M�$$����H����H�L$�H�l$H��I H�5�L L�d$H�8���H@����xfH�D$u�H��t
H�|$�A�H�L$�H�l$H��I H�5|L H�8�<�H�\$(dH3%(u;H��0[]A\�H�|$���a���H�|$t
H�|$����1�������ff.����ATI��U��H��SH��H��0dH�%(H�D$(1��d�H�$��H�D$��t^����tw1�M�$$����H����H��H H�$H�L$L�d$H�5L H�:�H�D$�N�H�$�X��{�����H�D$u�H��t
H�|$��H�~H H�$H�L$H�5�K H�:�H�D$���H�$H�����H��H���h�H�L$(dH3%(u?H��0[]A\��H�|$���-���H�|$t
H�|$�w��1����I���@��ATI��U��H��SH��H��0dH�%(H�D$(1���H�$�+�H�D$��t^����tw1�M�$$����H����H�}G H�$H�L$L�d$H�5 K H�:�H�D$���H�$�X�������H�D$u�H��t
H�|$��H�G H�$H�L$H�5�J H�:�H�D$��H�$H����H��H����H�L$(dH3%(u?H��0[]A\��H�|$�.��-���H�|$t
H�|$���1�������T��@��AUATUH��S��H��H��8dH�%(H�D$(1���I������H�D$��t`����L�m��tu1�H�m����H����H�L$�L�l$H�	F H�5"I L�d$H�8H�l$ ����VfD����~vH�D$L�m��u�H��t
H�|$�:�H�L$�L�l$H��E H�5�H L�d$H�8�0��H�L$(dH3%(uBH��8[]A\A]�DH�|$�����J���H�|$t
H�|$������������	��f���UH��S��H��H��8dH�%(H�D$(1��Y�H�D$���H�D$����������tbH�EH�D$��t]H�EH�D$ ���H�|$uTH�{D H�5�F H�L$�SH�8�<��H�t$(dH34%(uiH��8[]�DH�D$H�D$ H�|$t�H�|$�����f.��+�����]���H�|$t
H�|$����1����������ff.���UH��S��H��H��8dH�%(H�D$(1��9�H�D$�_��H�D$����������tbH�EH�D$��t]H�EH�D$ ���H�|$uTH��C H�5DG H�L$�SH�8���H�t$(dH34%(uiH��8[]�DH�D$H�D$ H�|$t�H�|$����f.�������]���H�|$t
H�|$����1����c������ff.���ATI��U��SH��H��0dH�%(H�D$(1��G��H�D$��������u|A�H�l$H�����H�L$�H�5E H�D$H��B L�d$H�8���H��H�D$���H��H�����H�L$(dH3%(��H��0[]A\�DM�$$��~�H�|$t
H�|$����1����g���������x�H�D$u(A�H�l$H���;���H���T���.����M�$$��~��������ATI��U��SH��H��0dH�%(H�D$(1����H�D$��������u|A�H�l$H����H�L$�H�5�C H�D$H�DA L�d$H�8����H��H�D$����H��H���B��H�L$(dH3%(��H��0[]A\�DM�$$��~�H�|$t
H�|$�U���1����'��������x�H�D$u(A�H�l$H���;���H������.����M�$$��~���H�����ATI��U��H��SH��H��dH�%(H�D$1���H�$�;����tWH�5XB H�<$E1ɉ�E1�L�����H�$H�����H��H���0��H�L$dH3%(u+H��[]A\��H�5B H�<$L����k��H�$������AUATUSH��H��(dH�%(H�D$1�L�d$�5��H��1�I�����H�L$�H�5�B H�D$H�S? H�8���H�
��H��H������H���CH����H9�}LH�EH��L��L��H�D$�G��H��H��H��H��H�D$�`��H�E�� u�H;]}	H�E �H�L$dH3%(H��uH��([]A\A]����D��AUATI��UH��S��H��8dH�%(H�D$(1����H�$��������H�EH�D$����H�D$����L��H�D$ ��H�=B H�����H�|$ H��H������,��H�L$����H��H��= �M��jH�5A L�L��H�8����H��XZH�L$(dH3%(H���FH��8[]A\A]�D1�H�UH�T$���H���I���H���#���<���fDH�y= H�5�@ A�1ۺL�l$H�8�`��H�
��H��H�����H���DH����H9��Q���H�EH��L��L��+H�D$���H��H��H��H���l��H�E�� u�H;]�
���H�E �������~5H�UH�$H�T$������H�D$H���T���H���7���G���H�<$tH���#�����������]��ff.�f���ATUH��S��H��H��`dH�%(H�D$X1�L�d$0���H�D$0I�D$H�D$I�D$H�D$I�D$H�D$ ���H�D$�������1�H�D$I�|$E1�H�P�$@H��tMc�N�L�L�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9���H���|����S��u@H��; H�5Z> A�L��H�8�q��H�t$XdH34%(��H��`[]A\�@H��L��E1�E1�H�T; H�5
> jH�8�+��ZY��H�|$����u���������x
H�L$���H�|$t
H�|$�{���1����M��������ATI��US��H��H��`dH�%(H�D$X1�H�l$0���H�D$0H�EH�D$H�EH�D$H�EH�D$ �
��H�D$��������1�H�D$H�}E1�H�P�H��t
Ic�I��H�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9�fH��uUH�: H�5�= �SH��A�H�8����H�t$XdH34%(uOH��`[]A\�f������xH�t$�[���DH�|$�>���H�|$t
H�|$�*���1�������g�����ATI��US��H��H��`dH�%(H�D$X1�H�l$0���H�D$0H�EH�D$H�EH�D$H�EH�D$ ���H�D$��������1�H�D$H�}E1�H�P�H��t
Ic�I��H�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9�fH��uUH��8 H�5�: �SH��A�H�8���H�t$XdH34%(uOH��`[]A\�f��k����xH�t$�[���DH�|$�����H�|$t
H�|$�����1������������ATI��US��H��H��`dH�%(H�D$X1�H�l$0�b��H�D$0H�EH�D$H�EH�D$H�EH�D$ �m��H�D$��������1�H�D$H�}E1�H�P�H��t
Ic�I��H�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9�fH��uUH�~7 H�5: �SH��A�H�8�K��H�t$XdH34%(uOH��`[]A\�f������xH�t$�[���DH�|$����H�|$t
H�|$����1����\���������ATI��US��H��H��`dH�%(H�D$X1�H�l$0���H�D$0H�EH�D$H�EH�D$H�EH�D$ ���H�D$��������1�H�D$H�}E1�H�P�H��t
Ic�I��H�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9�fH��uUH�.6 H�5�8 �SH��A�H�8���H�t$XdH34%(uOH��`[]A\�f�������xH�t$�[���DH�|$�N���H�|$t
H�|$�:���1�������w�����ATUH��S��H��H��`dH�%(H�D$X1�L�d$0����H�D$0I�D$H�D$I�D$H�D$I�D$H�D$ ����H�D$�������1�H�D$I�|$E1�H�P�$@H��tMc�N�L�L�A��H��H9�tH�8D9��H��t�H��H�H9�u�D9���H���|�����S��u@H��4 H�5�7 A�L��H�8���H�t$XdH34%(��H��`[]A\�@H��L��E1�E1�H�t4 H�5�7 jH�8�K��ZY��H�|$�����u���������x
H�L$���H�|$t
H�|$����1����m���������USH��H��(dH�%(H�D$1��.��H�L$�H�5
6 H�D$H��3 H�8�Y��H���a��1�H��H���d���H��H�$�S��H��H�D$�&��H��H�����H��H�$�
��H�t$�H�����H�4$�H�D$H��1��P��H�L$dH3%(uH��([]�����@��ATUSH��H��0H�t$dH�%(H�D$(1��G��H�|$I������I�$�� ��H��I�l$��L��H�D$ �t��H�t$ H��H���D��H��tH�T$ H�H��HL�H)�1�L��H�����H�t$H��H�D$�<��H�����H�t$�H�����H�L$(dH3%(uKH��0[]A\�f�I�l$I�D$�`����I�$�� tI�D$H��|���f.�H����������f���USH��H�����H��H���3��H��H��H�=wH��[1�]����f���H�����H��H���������H������H�����H��H�DÐ��S1�H��1����H�����H������H��[�f.���UH��SH��H��H��H�55 ����H����H���k��H��H���`��L�EH�UL�ǁ� tH�UL�H�HL�΁� tH�HH��tnL�EI�H��urI��A��I��I9�v{I9�vvH���B�H���q�</tR1�@��/t@��9�t�@��@��H�4�����H��H��[]��I��A��I�H��t�L�H�f.�1�@��/u�I9�w��I9�w�L9�H�H��H��[]H���f���UH��SH��H��H��H�5�3 �Q��H��uH��1�[]�H���8��H��H���-��H��H��H��[]���ff.����H��H�=M�<��H�=RH�v3 �)��H�=GH��1 ���H�=<H�X3 ���H�=/H�53 ����H�=%H�3 ����H�=H�3 ����H�=H��2 ���H�=H��2 ���H�=�H��2 ���H�=�H��2 �~��H�=xH�x2 �k��H�=lH�]2 �X��H�=�H�B2 �E��H�=�H�'2 �2��H�=�H�2 ���H�=�H��1 ���H�=�H��1 ���H�=�H��1 ����H�=�H��1 ����H�=�H��1 ���H�=tH�j1 ���H�=mH�O1 ���H�=bH�41 ���H�=UH�1 �t��H�=JH��0 �a��H�=?H��0 �N��H�=2H��0 �;��H�=%H��0 �(��H�=H��0 ���H�=H�w0 ���H�=H�\0 ����H�=EH�A0 ����H�=�
H�&0 ����H�=�
H�0 ���H�=�
H��/ ���H�=GH��/ ���H�=�
H��/ �}��H�=�
H��/ �j��H�=�H��/ �W��H�=H�i/ �D��H�=c
H�N/ �1��H�=_
H�3/ ���H�=V
H�/ ���H�=L
H��. ���H�=E
H��. ����H�=;
H��. ����H�=/
H��. ���H�="
H��. ���H�=
H�v. ���H�=
H�[. ���H�=�H�@. �s��H�=�H�%. �`��H�=�H�
. �M��H�=UH��- �:��H�=�H��- �'��H�=�H��- ���H�=t
H��- ���H�=�H��- ����H�=�H�h- ����H�=�H�M- ����H�=zH�*- ���H�=nH�- ���H�=aH��, ���H�=^H��, �|��H�=QH��, �i��H�=HH��, �V��H�=�
H��, �C��H�=1H�m, �0��H�Y, H���@��H���3��H�* H�=H�0�����H����H�5�H��H�8. �{��H�=,. 1�H�����H�5��_��H�=. 1�H�O��H�5��C��H�=�- 1�H���H�5��'��H�=�- �H����H�5����H�=�- �H�����H�5l����H�=�- �H�����H�5Q����H�={- �H�7���H�57���H�=\- 1�H����H�5���H�=@- 1�H�����H�5�s��H�=$- 1�H�s���H�5��W��H�=- 1�H����H�5�
�;��H�=�, �����H���H�5
���H�=�, �H�����H�5�
���H�=�, �����H�
�H�5�	����H�=�, �����H���H�5l	���H�=p, �����H���H�5J
���H�=Q, �����H�m�H�5*���H�=2, �����H�.�H�5�b��H�=, �����H���H�5��C��H�=�+ �����H�p�H�5��$��H�=�+ �����H��H�5����H�=�+ �����H���H�5����H�=�+ 1�H����H�5\����H�={+ 1�H�z��H�5e���H�=_+ 1�H����H�5f���H�=C+ 1�H����H�5��v���H�='+ �H���H�5��W���H�=+ �H����H�5��8���H�=�* �H����H�5�����H�=�* �H�f��H�5f���H�=�* �����H�7�H�5����H�=�* �����H��H�5p���H�=m* 1�H����H�5����H�=Q* �H�-��H�5>���H�=2* �����H���H�5r�b���H�=* 1�H�b��H�5��F���H�=�) �H�c��H�5��'���H�=�) 1�H����H�5����H�=�) 1�H�k��H�5b���H�=�) �H����H�5��п��H�=�) �H�]��H�5�豿��H�=b) �H����H�5�蒿��H�=C) �����H�o��H�5�s���H�=$) 1�H����H�5<�W���H�=) 1�H���H�5g�;���H�=�( �����H����H�5<����H�=�( 1�H���H�5�����H�=�( 1�H�`��H�5����H�=�( 1�H����H�5��Ⱦ��H�=y( 1�H�h��H�5�謾��H�=]( 1�H����H�5�萾��H�=A( 1�H�p��H�5��t���H�=%( 1�H����H�5��X���H�=	( 1�H�x��H�5�<���H�=�' 1�H����H�5T� ���H�=�' 1�H����H�5�����H�=�' 1�H���H�5����H�=�' 1�H����H�5*�̽��H�=}' 1�H���H�5�谽��H�=a' 1�H����H�5�蔽��H�=E' 1�H���H�5�x���H�=)' 1�H����H�53�\���H�=
' 1�H���H�5�@���H�=�& 1�H����H�5�$���H�=�& 1�H�$��H�5�����H�=�& 1�H����H�5����H�=�& 1�H�,��H�5��м��H�=�& 1�H����H�5�贼��H�=e& 1�H�4��H�5�蘼��H�=I& 1�H����H�5��|���H�=-& 1�H�<��H�5��`���H�=& 1�H����H�51�D���H�=�% �����H��H�5{�5���H�=�% 1�H�ſ��H�5Y����H�=�% 1�H�����H�5����H�=�% �����H���H�5$�λ��H�=% 1�H���H�5�費��H�=c% �����H����H�5蓻��H�=D% 1�H�S��H�5@�w���H�=(% 1�H�g��H�53�[���H�=% 1�H����H�5�?���H�=�$ 1�H����H�5A�#���H�=�$ 1�H����H�5�����H�=�$ H�5�贻���H�5���H�=<H��騺����H��H���to_aryArraypathname contains null byteunexpected @path#<%s:%li>to_pathENOTDIRatimebasenamebasebinreadbinwritebirthtimeblockdev?chardev?ctimedirectory?dirnameempty?entriesexecutable?executable_real?exist?expand_pathextnamefile?fnmatchforeachftypegetwdglobgrpowned?lchmodlchownlstatmkdirmtimepipe?readable_real?readlinesreadlinkrealdirpathrealpathrenamermdirsetgid?setuid?sizesize?socket?splitsticky?subsymlink?sysopentruncateunlinkutimeworld_readable?world_writable?writable_real?zero?Pathnameinitializefreezeuntaint===eql?<=>hashto_sinspectsub_exteach_linefnmatch?make_linkmake_symlinkpwdopendireach_entrydelete=~Pathname#untaint is deprecated and will be removed in Ruby 3.2.Pathname#taint is deprecated and will be removed in Ruby 3.2.;�Y�����е������0����L��h@�������������@����P����p���@����\����x���������`��������`���8����T ��p��������@����������`�����4 ��P���l����@����������`������ ��0���L���h@����������`�������0�����4��P`��l����0�����������`��	���	0��8	���T	���p	P���	����	���	����	 ��
���0
���L
 ���
����
����
0��$P��Pp��|��������������T��������
 �L
p��
���
`��
@�(`�\�����������@���<��XzRx�$����0FJw�?:*3$"D���� \x����H Q
Gx,���TH F
A�p���TH F
A �����eE�K N
AA����VH H
A�D���,H c\���LX���F�E�D �A(�F�t�N�]�A�W
(A ABBEl(���E�U�,���E�U(�0����E�D�G0�
AAH����CDf
A$�8���UE�D�D eMQp���YH K
A00�����F�A�A �D0|
 AABDd ���YH K
A�d���YH K
A�����YH K
A���YH K
A�0���YH K
A�t���YH K
A����YH K
A(����YH K
AD@���YH K
A`����YH K
A|Ⱦ��YH K
A����YH K
A�P���YH K
A�����YH K
A�ؿ��YH K
A���YH K
A$`���YH K
A@����YH K
A\��YH K
Ax,���YH K
A�p���YH K
A�����YH K
A�����YH K
A�<��YH K
A���YH K
A ���cH0U
A <��cE�G0P
AA`d��^H0P
A|���YH K
A����YH K
A �0��cE�G0P
AA�|��^H0P
A����YH K
A��cH0U
A,X��cH0U
AH���^H0P
Ad���^H0P
A�4��YH K
A�x��YH K
A����YH K
A���YH K
A �D���E�G0r
AA ����E�G0m
AA 8��pE�G ]
AA\X��_H Q
A0x���$F�D�A �IP�
 AABD0����\F�D�F �GP
 AABH0����\F�D�F �GP
 AABH8���GF�B�A �D(�I`�
(A ABBF(P��E�D�IP�
AAF(|���E�D�IP�
AAF0����8F�D�C �GP�
 AABF0����8F�D�C �GP�
 AABF0	���F�D�F �G0m
 AABH8D	����F�B�A �A(�GP�
(A ABBAD�	D��3F�B�D �D(�F`�hQpZhA`[
(A ABBFD�	<���F�A�D �I�
 AABED�Y�I�A�0
���IF�D�A �I��
 AABC0D
���IF�D�A �I��
 AABC0x
���IF�D�A �I��
 AABC0�
���IF�D�A �I��
 AABCD�
���F�A�D �I�
 AABED�Y�I�A�((\���E�A�G@�
AAA0T��F�A�A �GP�
 AABJ$����7E�A�G TNC���HI���HQ�$��&E�`4�8��.E�D�J �
DAIDEA040��TE�D�J U
CADWGAh\��,H#�p��	H�	GNU�0�x} ��:
H_h} p} ���o`X	�
P� �`h�	���o8���o�o�
���o�} @P`p�������� 0@P`p�������� 0@P`p�������� 0@PGA$3a1U_GA$3p1094@H_GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY@GA+GLIBCXX_ASSERTIONSpathname.so-2.7.8-141.el8.x86_64.debug;>��7zXZ�ִF!t/���]?�E�h=��ڊ�2N���% ��y�6�5;D���!��T�(C��w-�K���@��^;����(�!B]��l
\��j8���&e�����-ڤȑ?�L)x���<�)�B��<+��Ƀ�؂�������in��b��zj�dK���������䎥���+�z���;+;�C��W�Ϋpń�x�i�YB�'s���7$r Ȍ�8�8�b7Lo՘���A4J��+l��H(R98�	�Ԏ�aw��Y�[��o��ȗ"�HC�?s��p��$K'��Bi~��w�gc�P|�(��G�{r�04�=s�x��G�Z�ĹNJ�q�|��0iu��F���p��&�~4e��ڼ��S���C3턈þ��>�Wbi
�S�z�cX(�fjn�
~ō�e˭���ru}�t�p��,�IG<���M_仳N�L�0+`H�kJ���ו
1�*���e'�Y)�R�\g)�aI`xf�^�y�Wh���[.Ϸ�s��|��s��	�o�J#�����%��g�ǖ5��R�5y�42#F�}�����>s#l^�y��FX��M�=��D�����^�������*٨�#��f��>���Ì�Kpd��x���e�/���se�)-)�I��F���VH�#�*���5��t*�8V�X��
ȍ��8p�U���{�����������j��U�=Ӄ�><��ջuָ�hT��F��HU.e���@:gc��xk����~���Es�Ś�9mڭ|Ώj+����&L�S��
H~X�Jgt�Z�M��H	��d���MD�/֜�w(.]�3����Q?gxֵ�D�޲�]��|;q�L7'^A�����(Q^�ם��*����Tp'������8�UܩQ��0��D�2_�P����S������ro�J�s���;?1��ifhm�<ﺹu5m�̧Y6��ٵ�.�����>~[�� ��w�O� NEsN��j�N��Zvׯ~Q��p���8E����@q�	�u��xg{,�����Z�3��7��p�_�����ʠ�o��!Y)��S����*4K:
:cD��Em�>"�=�U�B����~�X���+Ӑ��\䕔�G}z��rh�?��H�ʰ��� 
�#Ǯ��Ӡtbbۏ,�v�Bm������֢�����~��_��ܖ+�ڊ���]�N�����`�S���^E1��ҳ�"�7����?n!�5�ci�kF��]n�.��
����	�3��X3�L%V�‘_������mkM���X7Ȝ�����ĉihQ�] ��9��.C�"��N۹�:��>w��Zz����k��R��R'zH�M�8����9�J�u�r9���#V��.�E�d��(�p��A�Eܵ_�_j�_t���i�\AFAO�^���8�S]$�scg�����JUIS�V�A���;BH�1[M����sQ�G���rH�-JAPX�&vX:�ˊ���K6�U2Tt�5�U��5��yñ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``8(���0X	X	P8���o�
�
�E���o880Thh�^B``�hc000n`` w���C}H_H_
�2X_X_8��b�b��hehe��rr �h} h}�p} p}�x} x}��} �}��p p��� ����� ��8��`��D
�,�H`�+PKLH[�ta�@�@lib64/ruby/syslog.sonuȯ��ELF>@89@8	@P*P* �-�- �- |� �-�- �- ��888$$0*0*0*  S�td0*0*0*  P�td&&&��Q�tdR�td�-�- �- HHGNU�J�1��"��{	�+���c*�@ @*,BE���|��.*�qXB��f�U ���/,6 ��W$	�\"m"��s|B"�c����k, �F"
��41 ��1 �@|�41 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_extend_objectrb_f_sprintf__syslog_chkrb_eRuntimeErrorrb_raiserb_eArgErrorrb_check_typerb_sprintfcloselogruby_xfreerb_fix2intrb_error_arityrb_obj_classrb_eTypeErrorrb_str_new_cstrrb_num2intsetlogmaskrb_keyword_given_prb_string_value_cstrruby_strdupopenlogrb_block_given_prb_free_tmp_bufferrb_gv_getrb_yieldrb_ensurerb_empty_keyword_given_p__stack_chk_failInit_syslogrb_define_modulerb_define_module_underrb_define_constrb_include_modulerb_internrb_funcallvrb_define_module_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�ii
�ui	��- ��- ��- �- �/ �/ �/ �/ �/ !�/ %�/ &�/ '0  0 (0 00 80 @0 H0 	P0 
X0 `0 h0 
p0 x0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0  �0 "1 #1 $1 '1 ( 1 )��H��H�!! H��t��H����5B! �%C! ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!���������% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%} D���%u D���%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 D���%- D���%% D���% D���% DH�=! H� H9�tH�� H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�} H��t��fD�����=� u+UH�=b H��tH�=& �9����d����� ]������w�������=e H�H�Ѓ��ff.���H������SH��H��H�5> ����H��[�@��� ���tHc� H�D����� ���tHc� H�D����� ���tHc� H�D�S��~U�� ��t3����H���u���H�HH� tH�H��H�Q�1�[�~���H� H�5H�81��F���H� H�5�
H�81��.���ff.���SH��H���i���H��[�@��SH��H���I���H��[�@��SH��H���)���H��[�@��SH��H���	���H��[�@��SH��H�����H��[�@��SH��H������H��[�@��SH��H�����H��[�@��SH��H��1����H��[����S�H������( ��t4D�
 D� H��1��
� H� H�=E[����H��H�=�1�[���ff.���H���� ��tN�y���H�=� �����H�� �{ �����u �����o �����u H���H�	 H�5AH�81��8������ATUS��~,�_�H�>L�f@��t)H�����L��މ��_���H��[]A\Ã������5���H�5�H��H�t H�81�����f.����� ��u
��@H�=� �\���ff.����H��H����t �[������H����Hc�H�D�D�{����������H��H����t �����H�H����B�H�H�D�f��;�����f����& S��t@H��H��@��u�����lj=� ���H��[�fD����lj=� �v���H��[�H�z H�5c
H�81����f���AVAUATUSH��@�� dH�%(H�D$81����DH�D$I��I��H�D$(H�D$I��L�d$ H�D$0���H�D$��������1�H�D$ L��H�H�H��t
Hc�I�<�H�:��H��H9�tH�9��H��t�H��H�H9�u�9���H���H�<$�L�����H���]���H�|$H�� H������ H�|$H������ ��5� H�=� ����1��� �����lj\ ����������H�t$8dH34%(L���H��@[]A\A]A^�fD@�������H�|$� H���f���@���������‰� �Y����H�|$���H�<$���H�=����H�$����fDH�=Q L��H����L�������@���f������x)H�t$�?���D������y���@�s����E���H�|$t
H�|$�l����1����.���H�� H�5KH�81������A������ATI��U��H��SH���H���H��L��[��]A\�G������SH�=H��dH�%(H�D$1�H���H���H�5�H��H�� �B���H�=� H�5�H�� �(���H�=� H�5�H�� ����H�=� H�5�H�� ��H�=� H�5�H�w ����H�=� �����H�����H�5ZH�I �T���H�=e �����H��H�5j�5���H�=F �����H����H�5R����H�=' 1�H�v���H�5<���H�= 1�H���H�5(����H�=� 1�H�����H�5����H�=� 1�H�����H�5����H�=� �����H�#���H�5����H�=� 1�H�����H�5��k���H�=| 1�H�[���H�5��O���H�=` �H���H�5��0���H�=A 1�H�����H�5����H�=% 1�H�����H�5r��H�=� �H�5c�p���H�=� �H�5S�X���H�=� �	H�5D�@���H�=� �H�57�(���H�=� �!H�5*����H�=� �AH�5��H�=a �AH�5���H�=I ��H�5���H�=1 ��H�5���H�= �1H�5���H�= ��H�5���H�=� �H�5��h�H�=� �aH�5��P�H�=� �!H�5��8�H�=� �qH�5�� �H�=� �QH�5���H�=q �H�5����H�=Y ��H�5q���H�=A �H�5b��H�=) �H�5U��H�= �!H�5H��H�=� �1H�5;�x�H�=� �AH�5.�`�H�=� �QH�5!�H�H�=� �aH�5�0�H�=� �qH�5��H�=y �H�5���H�=� �����H����H�5��Q�H�=B �H�5����H�=J �����H�����H�5���H�= �H�5���H�= �����H�/���H�5����H�=� �H�5��[�H�=� �����H���H�5l��H�=� �	H�5X�$�H�=� �����H���H�5E�u�H�=f �H�55���H�=n �����H�*�H�5!�>�H�=/ �
H�5��H�=7 �����H���H�5���H�=� �H�5���H�= �����H�|�H�5����H�=� �H���H�5��Q�H�=� �H����H�5��2�H�={ �H��H�5��#�H�5t H�=u ��H�5Y H�=b �m�H�5> H�=O �Z�H�# H�=JH�$�S�H�=, H�ٺH���L�H�= �H���H�5��H�� H�=�H�$��H�=� H�ٺH����H�D$dH3%(uH��[�����H��H���no log message suppliedmust open syslog before write%s<#%li: opened=false>syslog not openedtype mismatch: %li givensyslog already open$0SyslogConstantsOptionFacilityLevelMacrosreopenopen!opened?identoptionsfacilityclosemaskmask=inspectinstanceLOG_PIDLOG_CONSLOG_ODELAYLOG_NDELAYLOG_NOWAITLOG_PERRORLOG_AUTHLOG_AUTHPRIVLOG_CRONLOG_DAEMONLOG_FTPLOG_KERNLOG_LPRLOG_MAILLOG_NEWSLOG_SYSLOGLOG_USERLOG_UUCPLOG_LOCAL0LOG_LOCAL1LOG_LOCAL2LOG_LOCAL3LOG_LOCAL4LOG_LOCAL5LOG_LOCAL6LOG_LOCAL7LOG_EMERGemergLOG_ALERTalertLOG_CRITcritLOG_ERRerrLOG_WARNINGwarningLOG_NOTICEnoticeLOG_INFOinfoLOG_DEBUGdebugLOG_MASKLOG_UPTOincludedinclude<#%li: opened=true, ident="%s", options=%d, facility=%d, mask=%d>must open syslog before setting log mask;�����(��@��T�h ��@��`������� ��@�`�0��L��h�������p����`�$��8��T�p������@���zRx�$��0FJw�?:*3$"D�� \��p�����E�V��� ��� ��� ���rA�|
E��E�V �E�V0$�E�VL(�E�Vh,�E�V�0�E�V�4�E�V�8�E�S�<�bE�
LM���xHW
A(��fF�A�A �m
ABA@4�$TP�9HX
Ppt�7HY
O ���gK�f
GV
A@����F�B�B �A(�A0�Dpi
0A(A BBBG(�0�)F�D�F �OCB  4�|E�K e
AAGNU����- �����
�"�- �- ���o`��
�0 0ph
	���o8
���o�o�	���o�- ��� 0@P`p�������� 0@P`p�������������������GA$3a1��"GA$3p1094��"GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONSsyslog.so-2.7.8-141.el8.x86_64.debug�R@��7zXZ�ִF!t/��']?�E�h=��ڊ�2N��,��"'MJps��{���Z|7vI>q��r���hhnyW�ڷT�"��MH�L*� �,ƽ<�m%����#P�)G\����q��p���$��B�&��%d��l�����u�Sʋ�L���lu�xH�N�a�s�6@J�х@�Q#XG���*�x�����9iɴ��,|�ύ�n�?�YN�͡Y�/_|�F\�e@(���U��^$�]��Wv��@�H�n
/�֏�P��G�0�����M�mE�l�T�
�n)���MO>�+�,�����䇪y4�����,�mE6zL�^g�~�3H��%�:^��z���y�Y�̸��M�إ�7�Σ�� �Np�W���po�g0����޶"n����F+��q��a���ׄ{5I������A4]���
��~2�{��ڠr����ĝ��j����4�x��'�z��	d*o�<t�]�X �	:1��:��‚|��/{���b!ӛa�}Cz�%w1�_��e k�2~ɯ��U:�q����rڶ˵��&�`hx�;%�g���|���~r�%�~^�������`����9�ܔ�+Ah��iCN����ٽ�]����0Vc8\�-�ҸvӪ����*V\[!����v�S��5�ȶ�VkȈ�<VH/�:��aq!�Y�C��������t��&o���zQ�����YS�+]Z��f`[�������Moֺ�4��^ɺ����K����d�'k)����2����_� p�����X�U*�0f�*��\��a2�6ٳL�w^Л����b�N����@T
��Ez���GL&yG���l?�>߉���p���`‚ޛ��&1f�5��F��$���k�#C�vɁ.o�P�ZK%ш�*�k�
v�d���̵S攰��w���iO<=�K_��>_>.�W^msy�u���H�\8	\�N�ݺ�]�1��E��_|����N���Z�I�T?J�*�>ٻ�f�U�����$��-���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��P0���8���o�	�	\E���o8
8
0Th
h
^Bpp0h��c��0n�� w�}�"�"
�2�"�"0�&&���&�&D�0*0* ��- �-��- �-��- �-��- �-���/ �/@�0 0(�(1 (1�81 41H��1`41Dx3,"�3\81PKLH[�k!h����lib64/ruby/date_core.sonuȯ��ELF>�B@�@8	@aa �j�j#�j# pmpm#pm#��888$$�`�`�`  S�td�`�`�`  P�td$$$|	|	Q�tdR�td�j�j#�j#00GNUA"�1�Q�J���?
�6)4�c�� @D�D���BE��N�#�YN���|�@����b�/EC�2��,O�qX[,��x��jד#�l��F�*���h�  �,r���}�8���
�(p�����N9�r��Ch��3����U�,AJ�q
"h�� ��:&�1�"�[C��^!�"�"����;h�U(��Q���|`^t0��E�w, d�[�F"�����t ���Y��[�v#Z`����Tn؈#-p}+��9b�`��h�T� �	b�v#L���eP�x`������__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_check_typeddatarb_funcallvrb_intern2rb_rational_new__stack_chk_failstrlen__errno_locationdate_strftimeruby_xmallocruby_xfreerb_sys_failrb_id2symrb_hash_deleterb_hash_arefrb_hash_asetrb_fix2intrb_num2intrb_string_valuerb_sym2strrb_num2ulongrb_eArgErrorrb_raiserb_ary_new_caparb_usascii_str_new_cstrrb_obj_freezerb_ary_pushrb_gc_markrb_rational_denrb_rational_numrb_eTypeErrorrb_cNumericrb_obj_is_kind_ofrb_keyword_given_prb_enc_getrb_free_tmp_bufferrb_error_arityrb_enc_dummy_prb_hash_newdate__strptimerb_empty_keyword_given_prb_enc_copyrb_error_frozen_objectmemchrrb_str_new_staticrb_str_catrb_str_newrb_usascii_str_newrb_alloc_tmp_buffer_with_countrb_warnrb_extract_keywordsdate__parserb_check_hash_typedate__iso8601date__rfc3339date__xmlschemadate__rfc2822date__httpdatedate__jisx0301ruby_snprintfrb_str_appendrb_num2longrb_num2dblrb_warningrb_data_typed_object_zallocrb_gc_writebarrierrb_float_valueroundtzsetlocaltime_rclock_gettimerb_int2bigrb_float_newrb_usascii_encodingrb_enc_sprintfrb_usascii_str_new_staticrb_cRationaldate_zone_to_diffrb_check_typerb_memhashrb_ary_new_from_argsrb_copy_generic_ivarrb_obj_classrb_cTimeruby_xreallocrb_marshal_loadrb_num_coerce_cmprb_gc_register_mark_objectrb_sym2idrb_cmpintmodfrb_block_given_prb_yieldrb_frame_this_funcrb_enumeratorize_with_sizeInit_date_corerb_cObjectrb_define_classrb_define_class_underrb_mComparablerb_include_modulerb_define_constrb_define_alloc_funcrb_undef_methodrb_cFalseClassrb_cIntegerrb_cNilClassrb_cFloatrb_cTrueClassrb_cSymbolrb_define_methodrb_define_singleton_methodrb_define_private_methodstrncasecmp__ctype_b_locrb_reg_nth_matchrb_str_to_inumrb_reg_newrb_cstr_to_inummemcpyruby_malloc_size_overflowruby_strtoulrb_int_positive_powruby_scan_digitsrb_str_subseqrb_backref_getrb_match_busyrb_str_duprb_backref_setstrchrstrspnmemmovememsetrb_str_formatrb_string_value_cstrstrlcpystrncmprb_internrb_uint2biglibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.3GLIBC_2.14GLIBC_2.4GLIBC_2.17/opt/alt/ruby27/lib64G ui	sQii
����ii
�����ui	s�j#`R�j# R�j#�j#k#��k#p`k#�k#@� k#`^(k#0]0k#�8k# ]@k#]Hk#��Pk#��Xk#��`k#��hk#0Tpk#�hxk#Pi�k#0��k#���k#��k# k�k# Sl#
�l#l# l#�(l#0l#8l#!@l# �Hl#(�Pl#1�Xl#7�`l#�hl#=�pl#B�xl#G��l#N��l#X��l#`��l#i��l#���l#���l#���l#���l#��l#��l#��l#��l#��l#��l#��l#�m#��m#��m#��m#�� m#��(m#��0m#��8m#��@m#��Hm#��Pm#��Xm#��`m#��hm#��@t#��Ht#��Pt#��Xt#��`t#��ht#��pt#���t#���t#���t#���t#���t#���t#���t#���t#���t#���t#���t#���t#��t#��t#�u#�u#�u#�u#� u#�Hu# �Pu#(�Xu#1�`u#7�hu#�pu#=�xu#B��u#G��u#N��u#X��u#`��u#i�`o#ho#
po#xo#�o#�o#�o#�o#B�o#N�o#[�o#p�o#q�o#t�o#v�o#z�o#�o#�p# p#(p#0p#8p#@p#Hp#Pp#	Xp#
`p#hp#pp#xp#��p#�p#�p#�p#�p#�p#�p#�p#�p#�p#�p#��p#�p#��p#�p# �p#!q#"q##q#$q#% q#&(q#'0q#(8q#)@q#*Hq#+Pq#,Xq#-`q#.hq#/pq#0xq#1�q#2�q#3�q#4�q#5�q#6�q#��q#7�q#8�q#9�q#:�q#;�q#<�q#=�q#>�q#��q#?r#@r#Ar#Cr#D r#E(r#F0r#G8r#H@r#IHr#JPr#KXr#L`r#Mhr#Opr#Pxr#Q�r#R�r#��r#S�r#T�r#U�r#V�r#W�r#X�r#Y�r#Z�r#\�r#��r#]�r#��r#^�r#_s#`s#as#bs#c s#d(s#e0s#f8s#g@s#hHs#iPs#jXs#k`s#lhs#mps#nxs#o�s#r�s#s�s#��s#��s#u�s#v�s#w�s#x�s#y�s#{�s#|�s#}�s#~�s#��s#��s#�t#�t#���H��H��<#H��t��H����5B=#�%C=#��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~���������%M5#D���%E5#D���%=5#D���%55#D���%-5#D���%%5#D���%5#D���%5#D���%
5#D���%5#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%�4#D���%}4#D���%u4#D���%m4#D���%e4#D���%]4#D���%U4#D���%M4#D���%E4#D���%=4#D���%54#D���%-4#D���%%4#D���%4#D���%4#D���%
4#D���%4#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%�3#D���%}3#D���%u3#D���%m3#D���%e3#D���%]3#D���%U3#D���%M3#D���%E3#D���%=3#D���%53#D���%-3#D���%%3#D���%3#D���%3#D���%
3#D���%3#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%�2#D���%}2#D���%u2#D���%m2#D���%e2#D���%]2#D���%U2#D���%M2#D���%E2#D���%=2#D���%52#D���%-2#D���%%2#D���%2#D���%2#D���%
2#D���%2#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%�1#D���%}1#D���%u1#D���%m1#D���%e1#D���%]1#DA�1�H�=y�����A�F�H��t5H�l$I���H�$�|6�{6H�=:�1�A�����H�l$�~5H�D$��A�H�=��1��z����5H�=F�1�D�s��c���H�l$�95H�=ڞ1��K���L�d$�8H�=�1����0���L�d$�j8H�=/�1������81�H�=������M��tD��L�d$H�D$A����8H�D$H�D$��8H�=Y�1�����L�d$�D:H�=��1������L�d$�):H�=��1�����H:1�H�=!����M��tD��L�d$H�D$A���:H�D$H�D$�:H�=؝1��I���L�d$�<H�=�1����.���L�d$��;H�=-�1������<1�H�=������M��tD��L�d$H�D$A���M<H�D$H�D$�@<H�=W�1�����L�d$��=H�=��1������L�d$�=H�=��1������=1�H�=����M��tD��L�d$H�D$A���>H�D$H�D$�=H�=֜1��G���L�d$�?H�=�1����,���L�d$�f?H�=+�1������?1�H�=������M��tD��L�d$H�D$A����?H�D$H�D$�?H�=U�1�����L�d$�@AH�=��1������L�d$�%AH�=��1�����DA1�H�=����M��tD��L�d$H�D$A���AH�D$H�D$�}AH�=$�1�D�{��A���H�l$H��u(M�&H�D$D����H�=��1�����H�l$�U�H�|$�t�L�d$�K�H��M��uH�=��1��L$����L$��A��1�H�=e��L$����H��L$t H�l$H�D$��u'D��A������H�D$H�D$��Չ�D��M����H�=J�1�D�{��g���H�l$H��u(M�&H�D$D����H�=͚1��>���H�l$���H�|$��L�d$�K�H��M��uH�=#�1��L$�����L$�v�A��1�H�=���L$���H��L$t H�l$H�D$��u'D��A���z��z�H�D$H�D$��Չ�D��M���5�H�=p�1�D�{����H�l$H��u(M�&H�D$D���v�H�=�1��d���H�l$�A�H�|$��L�d$�K�H��M��uH�=I�1��L$�.����L$���A��1�H�=���L$����H��L$t H�l$H�D$��u'D��A��������H�D$H�D$��Չ�D��M����H�=��1�D�{����H�l$H��u(M�&H�D$D�����H�=�1����H�l$��H�|$���L�d$�K�H��M��uH�=o�1��L$�T����L$�b�A��1�H�=י�L$�6���H��L$t H�l$H�D$��u'D��A���f��f�H�D$H�D$��Չ�D��M���!�H�=��1�D�{�����H�l$H��u(M�&H�D$D���b�H�=?�1����H�l$�-�H�|$��L�d$�K�H��M��uH�=��1��L$�z����L$���A��1�H�=���L$�\���H��L$t H�l$H�D$��u'D��A��������H�D$H�D$��Չ�D��M����H�=�1�D�{����H�l$H��u(M�&H�D$D�����H�=e�1�����H�l$��H�|$�2�L�d$�K�H��M��uH�=��1��L$����L$�N�A��1�H�=#��L$���H��L$t H�l$H�D$��u'D��A���R��J�H�D$H�D$��Չ�D��M���
�H�$H�=<�1��t$�!���H�$�t$���H�$H�=��1��t$����t$H�$A������1�H�=���$A�m�����H�D$0�$��1�H�=I��$D�����H�D$0�$���H�=z�1�D�{����H�l$H��u(M�&H�D$D����H�=��1��n���H�l$�H�|$���L�d$�K�H��M��uH�=S�1��L$�8����L$�F�A��1�H�=���L$����H��L$t H�l$H�D$��u'D��A���Z��R�H�D$H�D$��Չ�D��M����H�=��1�D�s���H�l$H����H�|$��L�l$�K�H��M��u6H�=��1��L$��L$�X�H�=��1��k�H�l$��A��1�H�=��L$�L�H��L$t0H�l$H�D$��u7D��A������M�/H�D$D���H�D$H�D$��ʼn�D��M����H�=”1�D�s����H�l$H����H�|$�6�L�l$�K�H��M��u6H�=��1��L$��L$��H�=�1���H�l$�A��1�H�=��L$�n�H��L$t0H�l$H�D$��u7D��A���~��J�M�/H�D$D���i�H�D$H�D$��ʼn�D��M���H�=�1�D�{���H�l$H��u(M�&H�D$D���H�=g�1����H�l$�H�|$�4�L�d$�K�H��M��uH�=��1��L$��L$� A��1�H�=%��L$��H��L$t H�l$H�D$��u'D��A���4��,�H�D$H�D$��Չ�D��M����H�=
�1�D�{��'�H�l$H��u(M�&H�D$D���H�=��1���H�l$��H�|$�Z�L�d$�K�H��M��uH�=�1��L$���L$�vA��1�H�=K��L$��H��L$t H�l$H�D$��u'D��A�����H�D$H�D$��Չ�D��M���5H�=0�1�D�{��M�H�l$H��u(M�&H�D$D���fH�=��1��$�H�l$�1H�|$��L�d$�K�H��M��uH�=	�1��L$���L$��A��1�H�=q��L$���H��L$t H�l$H�D$��u'D��A������H�D$H�D$��Չ�D��M���H�$H�=��1��t$�o�H�$�t$�vH�$H�=�1��t$�L�t$H�$A����T1�H�=	��$A�m��%�H�D$0�$�1�H�=���$D����H�D$0�$�h�H�=1%#H�*%#H9�tH��#H��t	�����H�=%#H�5�$#H)�H��H��H��?H�H�tH��#H��t��fD�����=�$#u+UH�=�#H��tH�=�#���d�����$#]������w�����G��H��F<��H�B<��HЉ91�A�0A���w��;w��;v1��@���u�1�	����fD�7@��u>�G�����i��ƒ�?����?k�<��+G x ������=QOƒ��G�7�f��Q��f����%���H�H���H��0�fD��H��������fD��SH��H�51#�L�H�H��#H�C[�ff.��SH��H��dH�%(H�D$1���ucH�5�)#H�$�5wH��t/H��H����H�T$dH3%(u>H��[�f��H�=���/�H��H�u)#���5wH���s���l�ff.�������tH�G(H���F���fD��H��H�5A#�\����tH�x(H������DH��dH�%(H�D$1�@��t@��u0H�4$H�5)#H����H�T$dH3%(u!H���H�H���H9�HE�����f�SH��H��dH�%(H�D$1���ucH�5�'#H�$�H��t/H��H���/�H�T$dH3%(u>H��[�f��H�=$����H��H��'#���H�������ff.���������~%͐f���5��*��^͏f(�fT�f(�f.�v3�H,�f���=��fU��H*�f(����f(�fT��\�fV����f(��Y�f(�fT�f.�v5�H,�f��fU��Dd��H*�f(���fAT��\�f(�fVՁ�lf���-C��*��Y
?��\�f(��X�f(�fT�f.�v5�H,�f��fU��D���H*�f(���f(�fAT��\�fVʃ�f��f(��*��Y�f(�fT�f.�v3�H,�f���=��fU��H*�f(����f(�fT��\�fV��X�f�Ҹ�*��X��X��\
��f/�v�\�1�A��,��Ðf���*�f/����5&��~-���F��.�f(��X�f(��\
B��^�f(�fT�f.�v5�H,�f��fU��Dڍ�H*�f(���f(�fAT��\�fV��Y�f(�f(�fT�f.�v5�H,�f��fU��D���H*�f(���f(�fAT��\�fV�f(����f(��\�f(��^�f(�fT�f.�v8�H,�f��fU��D
0��H*�fD(��D�f(�fET��A\�fV��Y�f(�f(�f(�fT�f.�v3�H,�f���=�fU��H*�f(����fT��\�fV�f(��\����f/�f(�r#�\���\
��,���,���,‰��\��\
Ԍ��f��\
���~-@��5X�f(��^��f(�f(�fT�f.�v3�H,�f��%1�fU��H*�f(����fT��\�f(�fV���f(��Y�f(�fT�f.�v3�H,�f��=�fU��H*�f(����f(�fT��\�fV؃�f���*��X��\����ff.�AWAVAUM��ATA��U��S��H��HH�L$L��$�L�t$4L�D$�D$dH�%(H�D$81��F
��H؅����DL$L����D��M��fA(�����L�T$L�\$L��A�}L��L�����D9d$4t*1�H�T$8dH3%(��H��H[]A\A]A^A_�DA9uѸA9*t����A�H�D$0�T$,H�D$ D��������t�H����M��M��AWH�L$0��D���D$����ZY��tϋl$,A�}L��H�L$H�T$��D$������D9d$4�=���H�D$9�0���H�D$�(�����f�AWA��AVI��AUI��ATUS�H��(�D$L�d$H�l$dH�%(H�D$1��
f�����t/H��H���M��AU�D$M��D������ZY��tθH�L$dH3%(uH��([]A\A]A^A_��u�DAUM��ATI��U��S��H��(dH�%(H�D$1�H�T$H�t$�D$�'����|$�L$��xp����$I��������)�)Љ�)ƒ�)�f��)�ǍD=��*�A�$1�f/���A�EH�D$dH3%(u9H��([]A\A]�fD���%I�$�щ���)�������)�)ȍP����ff.�AVA��AUM��ATM��U��S��H�� dH�%(H�D$1�H�T$H�t$�D$�2����D$�L$�p��D)�|k�J�%I�$����)�������)�)��ʍ�)�f�)�T�1���*�A�$f/���A�EH�D$dH3%(u8H�� []A\A]A^ù����)Ѻ%I�$����)�������)�)ȍP����AUI��A��fD(�ATL��A��UL��SH��H��(dH�%(H�D$1�H�L$H�T$����H�T$H�t$A�9fA(��)����D$�p��D)��|x�J�%I�$����)�������)�)���)�B�L"��x}�Ⱥ�$I������4
��)ƍ�)�)��3�MH�D$dH3%(��H��([]A\A]�@�����)Ѻ%I�$����)�������)�)ȍP)�B�L"��y��Ѻ�$I��ȉ������)ֺ%I�$��ȃ�)�������)�)ȍH�c����6��fDAWf(�A��AVM��AUATA��U��S�Ӄ�H��HL�L$L��$�L��$�dH�%(H�D$81���H�D$(H�H�$����f(�M��M���L$D��ډ�D���4���L�D$L��D���L$H�$A�}f(�����1�D9|$(t)H�t$8dH34%(��H��H[]A\A]A^A_�fDA9.u�H�D$9������@�ʍL�L$$�L�D$4L�\$�D$����L$H�$D��<�H�L$,)�f(�L�D$0|$4�g���1�D9|$(�L$L�\$�V����l$,���������AWfD(�AVI��AUATA����UH��SH��H��H�D$H�L$,H�T$(dH�%(H�D$81�H�t$$�D���D�l$$L�T$4L�L$0M��L��fA(ºE�}�L�T$D��L�L$�����D$0L�L$L�T$D9���E�>D��)��Ⱥ%I�$��)��������MA�����A���%I�$D���D��)�������)�D��)…ҸDЉH�D$8dH3%(��H��H[]A\A]A^A_�f��D$L��M��D����"���E�.D��+L$0�W����Ѻ�$I��������)щMA����W���������%I�$D)����)�������)�)ȍP�P����,��ff.��AWf(�M��AVI��AUATA��U��S�Ӄ�H��HdH�4%(H�t$81���H��$�L�l$(Hڅ���I��L�ɉ�L�L$f(���D���L$�C���L�L$L��L���L$L��A�9f(�����1�D9d$(t*H�t$8dH34%(��H��H[]A\A]A^A_��A9.u�1�A9���ǐH�L$4���L�D$$H�D$L�L$�D$����L$H�L$0L��<�H�T$,)�f(�|$4�+���D9d$(�L$L�L$H�D$t1��S���D�l$,�������f.�UH��I��fD(�S��H��(dH�%(H�D$1�H�L$H�T$�N�H�T$H�t$A�8fA(��g���+\$���]H�D$dH3%(uH��([]��Q���AVI��AUATI��UH��SH�H����!��H��u1�[]A\A]A^ÐI������H�}L��L����dH���K��H��u�H�E�8tMI��
��f�H�H������L��L��H��H�EH����
��H��u�H�}�_��I9�w�L�����f��;"�k����DAWAVAUATUSH��H��(H�=8#dH�%(H�D$1�H�������H��H�����I��H���5H�=�#H���z�m��H��H�l$H���-��H���3H�D$�H�5�#H���jL��H������%L��H��I��H�D$����H�5j#H�D$!I��H����L��H���m���%L��H��I��H�D$!�L��H�5#H�D$yI��H����L��H��� ���%L��H��I��H�D$y���H�5�#H�D$I��H���#H��L������H��L���%H�D$H�D$���H��{J��+I��L�|$���H�=J#H��H��������H��H��H�����H�=#H���[����H��L��H���x��H�=�#H������H��L��H���U��H�=�#H�������H�T$H��H���0��H�=�#H�����[��L��H��H���
��H�L$dH3%(H����H��([]A\A]A^A_��L��H���+H�D$���I�����fDH�=�t��G��H��H�U#�f����H�=�s����H��H��#�P���H�=At����H��H��#����H�=Ns�����H��H��#����H�=)s����H��H��#���H�=-u����H��H��#�B����H�=�r���H��H�m#����H�=�r�_��H��H�U#�P����H�=�r�?��H��H�=#����H�=�r���H��H�%#�v���H�=]r����H��H�#���K��ff.�H��@��t���H���@����H���ff.�USH��H�|$H���~H��H��@�����uH�����t��������H�|$���H�D$H��� tIH�XH����H�=
#H��tK����H��H�����H��t�tmH�H9�rH��[]�fDH��H�Ӄ�H��t�H�=�#H��u�H�=cq�����H��H��#��H������H�D$�N���fDH���@���fD���|���H��H�$#H��H�5�vH�81����AUATUH��SH��L�,�H���g��I��@H�;�H��t����H��H�����H��L��H�����L9�u�L�����H��L��[]A\A]�f���SH��H���t	����H�{([����SH��H��H�5Q#dH�%(H�D$1���u\H�4$H�5A#H��t,H��H������H�T$dH3%(u6H��[�fD�H�=�o���H��H��#�H�����������AWf(�AVAUATA��UH��S��H��HH�L$dH�%(H�D$81�����L�t$4L�l$0L�|$$f(�L��H��D���$�S��Ef�L���$H�L$L���D��*��E1�f/�f(�����}�j���1�D;d$$t)H�\$8dH3%(��H��H[]A\A]A^A_�fD1�9\$0����DH�D$(A�L�t$4H�D$H�D$,L�l$0H�D$�f�A��A��taH��L��f(�D���t$L�L$(M��D���L$��ZY���$t�\$(L�|$$f(�L���L���$�����D;d$$t
1��-���fD�$�\$0����5��DSH����uH�����t
�����tH��[��H���0���t�H�H��u�H��[�*��f.�PXH�5�mH��H��#H�81��b��f�H��#SH��H�0�
��H�����t[�H�l#H��H�5�mH�81��(���AVAUATI��UH��S��H�� dH�%(H�D$1����H�D$������~r1�H�EH�$��uCH�D$H���QH������H�<$�P���xtRH�3#H�5sH�81����f�H�EH�D$��~�H�|$t
H�|$�p�������/���H���0����u�H�$H�0�� ��H��L�h��H������L���j��I���b��L��L��H��I��L��H���K��H���H�=�#H���w�|��H��H���A��H�=�#I��H���t�Y��H��H�����H��I����H����H�L$dH3%(H����H�� []A\A]A^�H�|$�f�������K��������H�T$�i���L�hH�h����H�|$�b��H�|$�����x��H���"H�5�qH�81����H�4$H�����H�=�#H�������H��H��H���7���;���H�4$L������H�=�#H�����Q��L��H��H��������H���v�����p���H�T$H��� ��H��L�b��I���S���H�=	k��Y��H��H�W#�i���H�=�j��9��H��H�/#�l���H�=�j����H��H��#� ���H�=�j����H��H��#�4�����I���L�bL�r����.��ff.���H�ij�����H�aj�����ATUSH����upH�����tgH��ƒ���tZ��uUI��H9�t?H�5�"H������H�5�"L��H��������€u5�E�u_�o e�ohmH��[]A\�fDH�������E�tl�oM�oPU�oX H��] []A\���ʀ�UH�PH�U�PH�E�@�U�P�@H�E(�E�EH�؉U[]A\�H�'�"H�5hoH�81����fDAWAVI��AUI��ATUH��S��H��dH�%(H��$�1�L�d$0L�d$�R��H�D$ �����������AH�|$ L�l$ H�D$��H�����H�D$H�(�� ��H��H�X��L��L����1�H��H�����H����1�1�H�����I��H9���L�|$f�L��H��L����H�t$L��H���b��H������H�|$H�4L9�tH�t$�r��L�d$H�t$H9�v3�>H��t�f��;��H��H9�u�H��L��H)����H�t$L���3��L��H��$�dH3%(�@H�Ĩ[]A\A]A^A_��I�EH�D$����H�|$ u^H�|$����H�|$�R���x��H�1�"H�5BmH�81����H9����H��L��H)��Y��H9������K���L�l$ L���[����u��K���f��;��������H�|$ t
H�|$ �1���1�������H�XH�h�3���H�|$L��H����H�|$H�����H�|$I��L9������������H�������� ���H�D$L�l$ ������@��H�
df� �����H�
]f����ATI��USH��H�t$H�l$ H�|$H�\$0H��dH�%(H��$�1�H�\$�~��H��H�|$L���N�H�T$H�T$H�|$H��H�T$���H�|$H��H9�t� ��H��$�dH3%(H��uH�Ġ[]A\��I��f���H��H�=�e�=���ff.�f�����f.���H��H�=e�
���ff.�f���H��H�=Je���ff.�f�����f.���H��H�=De���ff.�f����q���AWI��AVAUATUS��H��(dH�%(H�D$1�H�D$���H�D$A�ą�t/��������1�H�=�k�@��I�H�l$H�$�/f����A�ƅ������I�H�l$H�$����H�D$A�H����1�H����)�H�<$H����H�����H�<$����x��H��"H�5�iH�81��5��Du>����H�D$H���$H�|$D�������������f.�H�D$A����Hc�I�l�@������H������~���E�����o��H�l$A��H����H�|$�|��L�l$H��M�����E����A��H����H�D$�I�H�$A��������H���(���������H�<$LN�L�����H�L$dH3%(�(H��([]A\A]A^A_�I�H�|$M�oH�$�z���fDH�|$�����Z���I�H�$M�oH�D$A���7������f.�A����H�l$�:���Hc�I�|���tDH��uO������H�l$H���q���H�|$�L���L�l$H��M���=������fDI�H�l$H�$�������A��H��H�D$�z���H�|$���I���h��H�=�hI�$1��v��I�$H�l$H�$�a���D������G������f���������AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$���H�D$A�Ņ�t3��������H�=3h1�����L�d$H�D$I�.�(D�C����~_L�d$���aH�D$I�.��uLH���<L��H���q�H�����H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$�����������f���t�H�|$�r���H�����H�=cgH�1��	��L�d$H�D$H�+�R����Hc�M�d�A������I������x��A�$�����h��L�d$I������H�|$D�{�����H�l$I��H������E���d���M��LD�H�D$L�d$E��uP1������H�|$�������Hc�I�|����d���H�������a���I��H�D$�h���������D��A��L�d$E���[����Y�����AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$�k���H�D$A�Ņ�t3��������H�=�e1����L�d$H�D$I�.�(D�����~_L�d$���aH�D$I�.��uLH���<L��H���1�H���پ��H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$��������Y��f���t�H�|$�2���H�����H�=#eH�1�����L�d$H�D$H�+�R����Hc�M�d�A������I���������A�$��������L�d$I������H�|$D�{��Լ��H�l$I��H������E�������M��LD�H�D$L�d$E��uP1������H�|$������Hc�I�|����d���H���6���!���I��H�D$�h����Ͻ����D��A��L�d$E���[����Y�����AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$�+���H�D$A�Ņ�t3��������H�=�c1��\��L�d$H�D$I�.�(D������~_L�d$���aH�D$I�.��uLH���<L��H�����H�����H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$�Z�����������f���t�H�|$��H���z��H�=�bH�1����L�d$H�D$H�+�R����Hc�M�d�A�����I���������A�$��������L�d$I������H�|$D�{�蔺��H�l$I��H�����E�������M��LD�H�D$L�d$E��uP1������H�|$�f������Hc�I�|����d���H���w�����I��H�D$�h���菻����D��A��L�d$E���[����Y�����AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$���H�D$A�Ņ�t3��������H�=sa1�����L�d$H�D$I�.�(D胿����~_L�d$���aH�D$I�.��uLH���<L��H����H���y���H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$���������ٽ��f���t�H�|$��H���:���H�=�`H�1��I���L�d$H�D$H�+�R����Hc�M�d�A���H��I������;��A�$�����+��L�d$I������H�|$D�{��T���H�l$I��H���C��E���'���M��LD�H�D$L�d$E��uP1������H�|$�&������Hc�I�|����d���H�������衹��I��H�D$�h����O�����D��A��L�d$E���[����Y�����AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$諺��H�D$A�Ņ�t3��������H�=3_1��ܽ��L�d$H�D$I�.�(D�C�����~_L�d$���aH�D$I�.��uLH���<L��H���q�H���Y���H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$�ڻ������虻��f���t�H�|$�r�H�����H�=c^H�1��	���L�d$H�D$H�+�R����Hc�M�d�A�������I������|���A�$�����l���L�d$I������H�|$D�{�����H�l$I��H�������E���h����M��LD�H�D$L�d$E��uP1������H�|$������Hc�I�|����d���H��������a���I��H�D$�h���������D��A��L�d$E���[����Y�����AWAVI��AUATUS��H��(dH�%(H�D$1�H�D$�k���H�D$A�Ņ�t3��������H�=�\1�蜻��L�d$H�D$I�.�(D������~_L�d$���aH�D$I�.��uLH���<L��H���1�H���	���H�L$dH3%(�QH��([]A\A]A^A_�fDt.H�D$H��t
H�|$蚹�������Y���f���t�H�|$�2�H��躻��H�=#\H�1��ɺ��L�d$H�D$H�+�R����Hc�M�d�A���ʾ��I����������A�$���������L�d$I������H�|$D�{��Գ��H�l$I��H���ž��E��������M��LD�H�D$L�d$E��uP1������H�|$覸�����Hc�I�|����d���H���:����!���I��H�D$�h����ϴ����D��A��L�d$E���[����Y�����H������H����ATI��USH��0dH�%(H�D$(1�H���D$SH�T%H:%M:%H�$H�]	H��~H��H��H��S1���}���H�HË&\L��H���5�H�T$(dH3%(u	H��0[]A\��������USH����wSH�Ӹu
H��t8H�H��H���B���H��H�='SH�����H��H��[H��]韵���H�����1�����f����f.�H��dH�%(H�D$1�@��t6H��H�xH���A��0H9�Hi��QH�D�+�H�_c�nt��H9�}�H���*H�$����H�t$dH34%(uH������ff.��H��dH�%(H�D$1�@��t6H��H�xH����H9�Hi�ʚ;H�D�+�H�A���H9�}�H���*H�$�5w�V���H�t$dH34%(uH����l���ff.����AUI��ATUS��H��dH�%(H�D$1����H�$�������M�e���t1�I�m����H��tH��薵��H���"L��H�0�D���H�����tt���3*FHD�H���8���f.�zbf(�fT
�[f.
[w�
[f/�w>f/[w4�I��t!H�L$dH3%(u}H��[]A\A]�fD1���@1�H�=Q�2����I��u���D�˵����~H�$M�e�����������H�<$tH��譴�������l�������AWA��H���"AVAUE��ATI�� UD��SH��(�L$�D$�;���A���L$I��H�X u*L��H��uiL�cH��tL��L���L$�	����L$�L�c�D$`A����f��D	�D�{�ZL$$�K�L��K�kH��([]A\A]A^A_��A�$����u�L��L$H�T$�K���H�T$�L$��i���H�H���\���L��L$�1����L$�I��H�C�b���H��H���5���f��F
��A��H�1��V���ws��xw@���������Q������)�1�iҐ9���H�Hc�H�H��H��H�H�XE�ɋ�B�TDH�E��~NA9�I�1�E��fD��A��A��@��tTD�к��Q��1���iҐA)�A������1��D�����Q������)¸k�d9��8����S��������Q������)¸k�d9��0�������AWE��AVA��H���"AUATM��UH���0SH��(�L$�D$���@���L$I��H�X ujH��H����H�kH��tXH��L��L$�ŭ���L$D�s�KA��uE@L��H��tA�$�����L�c(H��t#L��L��胭����H�kD�s�KA��t�L�c(�D$`�T$xf��D�{ �ZL$�K�C��$������$�	ЋT$p��	ЋT$h��	ЉC��$���H��(L��[]A\A]A^A_�D�E��������H��L$H�T$萱��H�T$�L$���H�H�����H��L$�v����L$�H��H�C�'���H��H������L���8�������H�H������L���+���I��H�C(���H��H�����H��dH�%(H�D$1�@��tf@��uPH��H���H��t\������tR@��tL�����ti��t$1���
u6H�t$dH34%(ubH����H��tI1����H�����u�H�5x�"H��H�$����f��[����t�H��u�������fDAUf��I�����ATI��U���SHc�H�\H��dH�%(H�D$1�f/�F�L�����H��t&I�$H�D$dH3%(uRH��[]A\A]��L�,$Hc�I��H�|?L��*�?���L���+H��H�$�&���I�$��K���ff.�ATI��UH��SHc�H�\H�� dH�%(H�D$1��E���H��t I�$H�D$dH3%(uLH�� []A\�H�L$��*�K�qH�\$H�l$蝬��H�L$��+H��膬��I�$�諪��ff.���UH�5��"S�H��(dH�%(H�D$1�襫����u H�T$dH3%(H����H��([]�f�H��H�D$�s���H�D$�x xxf��������QO����tH�h(Hc�H�|?�l��H��H���1���H��u�H�����H��H�L$��+H�D$訫��H���`����ǀQ��é��AVf��AUATI��UH��S���H��dH�%(H�D$1�f/ȸ��HF�@��tH������?H��H�H9���I��+�H�$�$L��H�\����H�5��"H�$I��H����L��L����I�$H���D���H��tgL���׮��-h�EH�D$dH3%(��H��[]A\A]A^�fDHhH��xmH�H��H�tH��I�4$HEʍ����]�DL��L���%H�$�_���I���x�����H�=pG����H��H��"�0���H��H�H��H��H)�H�DH�K�H���?���ff.�@AUI��ATI��USH��H��H�5��"dH�%(H�D$1�H�$K�qH��tyH��H�ߺH��趩��I�EH���
���H��uEH���%H��H�$K�q舩��H��耭��A�$H�D$dH3%(u<H��[]A\A]ÐH���X���A�$��f��H�=pF����H��H��"�g����[���ff.�AWf(�I��AVM��AUM��ATI��U��SH��H��8fT
QdH�%(H�D$(1�f.
uP��@���-H���
��"H�H=-��H=����
��"f.
GP{sDf(�L��L��H���L$����L$��L��A�<$L��f(�������H�L$(dH3%(����H��8[]A\A]A^A_�fDf(�f.
�Oz�u�H���D$�����D$��L��H�T$���k����t�Hc|$L��L��H�|?���I�?�8���H��usA�E�O��u��NH�t$L��H�������K���fDH�L$ ��<�D$H�D$ �}����
��"�D$H���:�������H���X���A�$���z���f.���AVAUATUH��S��H�� dH�%(H�D$1����H�D$������jL�eL�uA���t1�L�m���6H��t
H�|$蛨��H�-��"L��H�u�H���H�����u(1�H�L$dH3%(�H�� []A\A]A^�DH�uL������H�����tă��3*FL��LD��P��L������f.���f(�fT
PNf.
�Mw�
�Mf/�wpf/�MwfH�L$H�T$��L��L�L$L�D$�����H�H�Ѓ��A����裨����~:H�D$L�eA�L�u���������DH�=�C1�躢��f��H�|$t
H�|$�b��������!���謣��ff.��AWf(�I��I��AVM��AUA��ATA��USL��H��HfT
TMH��$�L��$�H��$�H�$dH�%(H�D$81�f.
�L��@���xH���
-�"H�H=-��H=����
�"f.
zL��@L��f(�L��H���L$����H���;D��U�L$D��M��L�L$L��f(����A��XZH�\$8dH3%(D���DH��H[]A\A]A^A_�fDf(�f.
�Kz�u�L��L�\$�D$L�T$�(���H��D��M��U�D$��L��D��L�L$4���^_A�ą�t�L�\$Hc|$$L�T$H�$L��H�|?L�$L�T$����L�$I�;�'���L�T$H�����M�fK��u��JH�t$(H��L����������DH�L$�H�L$0�<�D$H�D$0H�|$�[���L�T$�D$H���
}�"L�\$����[���DL���(��������L���ff.����AWAVAUATU��SH��H��8dH�%(H�D$(1����H�D$ ���S����L�#L�kA�L�{��t1�L�s���jH��t
H�|$ �f���H���"L��H�3����H�����u,1�H�T$(dH3%(�NH��8[]A\A]A^A_��H�3L���գ��H�����t�H�3L���£��H�����t����3*FL��LD����L�������L����袟��f.���f(�fT
�If.
|Iw�
zIf/��~f/pIwtH�L$ H�����H�D$$L��PH�D$(PH�D$,PL�L$0L�D$,�%���H�� ��H�H�Ѓ������;�����~;H�D$ L�#A�L�kL�{����������H�=)?1��T���f��u���H�|$ t
H�|$ �������踢���C���SH��H�� �GdH�%(H�D$1�(�T
	I.
"IvP�Z��s�{H�L$L�D$�������������D$��CH�D$dH3%(u}H�� [�f�H����H��uRH�{@��tH��x5���"�f�H�L$��<H�D$�C���H��t��n�"�U����f��ZC�F����M���ff.�f�USH��H��(dH�%(H�D$1��R����o�GG ��=Q������C(�T
�G.
Hvn�Z�H�L$H�T$��H�t$蔸���D$�L$�S��C�D$����	ȉу�?	ȉс����	�	ЉCH�D$dH3%(��H��([]�H�{��H��ubH�{@��t(H��xE�[�"�l���fD���B����H�L$��<H�D$��H��t���"�'����f��ZC�������ff.�f���SH��H��H�� dH�%(H�D$1�H���"H�0�"���H��������6FH�T$H�t$H�����L$��xl��t?�Ⱥ��Q������)�iҐ)у�H���H�|$dH3<%(��H�� [Ð�Ⱥ��Q������)¸k�d9�t��������t/����Q����iҐ)ֺ���HD��D�Ⱥ��Q������)¸k�d9��b�����ƛ��H���"H�?H�5�:H�81��G����AWf(�I��I��AVAUM��ATM��U��S��H��HfT
VEH��$�L��$�L��$�H�$dH�%(H�D$81�f.
�D��@���H���
/�"H�H=-��H=����
�"f��f.���fDf(�L��L��L���L$���L$f��f/��T�C
��H؍C����cA�$1�Hc˃���H�H�H��H��H�H�C����T(H���(9�� A�]�A�.H�$A�uM��f(�A�<$���G����f�f(�f��f.��>����8���L��L�\$�D$L�T$���H��L���AW�D$��M���L�L$4�^���ZY�Å���L�\$Hc|$$L�T$H�$L��H�|?L�$L�T$��L�$I�;���L�T$H����A��C��u��BH�t$(L��L�����+fDA�<$��M��L������L$������1�H�L$8dH3%(����H��H[]A\A]A^A_�fDH�L$�H�L$0�<�D$H�D$0H�|$�Ú��L�T$�D$H���
��"L�\$��������DA�.�_���L��舞��A�$�d���誘��f.���AWAVAUATU��SH��H��HdH�%(H�D$81��$���H�D$(���C���rL�#L�kA�L�{��t1�L�s���;H��t
H�|$(�ƛ��H��"L��H�3�t���H�����u,1�H�T$8dH3%(�H��H[]A\A]A^A_��H�3L���5���H�����t�H�3L���"���H�����t����3*FL��LD��f��L�����\��L��������f.�f(���fT\Af.�@����@f/�wrf/
�@whA����L��f(�H�H=-��H=�~f�
&�"�N@諛�����H�D$(L�#A�L�kL�{����������H�=�61����f���f(�f��f/���H�L$(H�����H�D$,L��PH�D$0PH�D$4PL�L$8L�D$4���H�� ��H�H�Ѓ��x���H�L$0��<L���L$H�D$0�,����L$H��f(������
I�"�f�����?H�T$H�t$(L���b��|$H�L$��L�D$���;���H�H�Ѓ���H�|$(t
H�|$(舙�������G����ҕ��f�AUI��ATUSH��H��(dH�%(H�D$1�@��uVH����tb��������H��H���H��tP@��tJ�����
��H�5��"H���cH��1�1��'���H��I�EI���c�H��H��uwH�D$H�5w�"H����H�l$�H��H���ٖ��H��H�߾%I��H�D$踖��I�EH�L$dH3%(L���H��([]A\A]�f������
t6��uQH���٘����j���H�H���]���H������H��H��@H�����������
���������@��� ���H���o����D$�����L$f.������t����D�H�=3跙��H��H�]�"�����H�=�3菙��H��H�]�"�}�������D$萒���L$f.�������G����~���谓����SH��H��H�� dH�%(H�D$1�H���"H�0���H�����tG�z<H�T$H�t$H�����T$1�����H��?H��?��H�L$dH3%(u%H�� [�H���"H��6H�5K2H�81�贑������ff.�@��SH�5�"H�� dH�%(H�D$1�����H�Ë��u2�t>�C����H�L$dH3%(H�H�D��H�� [�@�u�H���T���f��C(�T
q<.
�<v@�Z��{H�T$H�L$H�t$�����D$�T$�C�D$�����	ЉC�p���H�{�_�H��uJH�{@��tH��x-��"띐H�L$��<H�D$�Ó��H��t����"�m����f��ZC�^����͑��ff.�f���SH�5�"H�� dH�%(H�D$1��˒��H�Ë��u2�t>�C����H�L$dH3%(H�H�D��H�� [�@�u�H������f��C(�T
1;.
J;v@�Z��{H�T$H�L$H�t$�ݫ���D$�T$�C�D$�����	ЉC�p���H�{��H��uJH�{@��tH��x-���"띐H�L$��<H�D$胒��H��t����"�m����f��ZC�^���荐��ff.�f���H��H���"� ���H�P H�H�BH�BdTJ�BH���ATUSH��H�� �GdH�%(H�D$1�(�T
:.
:�Q�Z��s�{H�L$L�D$�������������;@��tj�sD�C ������?D�L$����?��i�k�<��D)��=Q����A���D�K�;H�D$dH3%(�XH�� []A\Ð�CD�C ���E���A��D[��A������A��QDO�D�غų��E���A����D�������%>���B�4	��������A��E)�Ei�E)�D��E���D���D��)�k�<��A)���D)�D	��	�	ЉƉC����H����H��uzH�{@��t8H��xU���"���fDA������A�ÀQ�-���@H�L$��<H�D$����H��t��F�"�4���f�f��ZC��������ff.�f�USH��H��dH�%(H�D$1���ƒ���ul�����C�k(�T
�7.
�7vY�Z�f(�fT
�7f.
7wof��1��*�f/���H�t$dH34%(��H��[]���u��7����DH�{��H���~H�{@��tDH��x^�G�"�D1�f.>�"���E��f�����2���fDH���<H�$�Ǝ��H��t����"����@f��ZC�
����͌��ff.�f���H��H�5��"�܍��H�������H�H�����fD��H��H�5��"謍��H���d�����H�H��H�Ѓ������€t��SH��t�C [��1��D���C [�ff.���H��H�5!�"�<������€t��tHcx H�|?H���I���f�H��H�D$���H�D$Hcx H�|?��SH��H����ƒ���u]��t)��H�C�f���Z��KH��[�f��D$�5���D$��t����H�C��f.���tLH���D$�n�����D$H�C��u��f���Z��SH��[�f������f��D$����D$�ff.�f���AWAVAUATUSH��H��8H�5��"dH�%(H�D$(1�H����1�1�H���o���H�5p�"H�$H����1�1�H���O���H���G���H�5@�"I��H���D1�1�H���(���H��� ���H�5�"I��H����1�1�H������H�����H�5��"I��H����1�1�H���ڋ��H���ҏ��H�5��"I��H���o1�1�H�߽;讋��H��規��H�5�"��<E�H��� 1�1�H��脋��H�����H�5M�"H�D$H����1�1�H���[���H���S���H�<$H�T$��2H�t$ H�����H��A��1�j��21�UH�=p�"AWAVAUAT�D$TPL�D$HH�t$`�|��H��@H�51�"H��H���F�����2H���F���H��H�L$(dH3%(�H��8[]A\A]A^A_þH�=5,�o���H��H���"�����
H�=�(�O���H��H�M�"�	����H�=i(�/���H��H�5�"����H�=L(����H��H��"�q����H�=Y'���H��H��"�*����H�=4'�ύ��H��H���"����H�=�'词��H��H���"����H�=�'菍��H��H���"�U����ۇ��ff.���ATI��UH��S��H��pdH�%(H�D$h1��W���H�D$0���v�������1�T$H�\$(H���͉��H�����讉��H�t$0H���Q���H�����D$@H�T$H�t$ ��0D�d$<�X�D$D��lHc�H�|?�S��H��A��E��j���"1�H��L$,H�t$0���H�5��"H��XZH�������D$H���
���H��H�L$hdH3%(�)H��p[]A\�f.�M�$$����L�����f.�f(��D$z2fTS0f.�/�����/f/�wf/
�/����H�=�%1������%�/�d$����諊����xUH�D$0t(M�$$��uEH���k���H�|$0蔉���\����H���W���H�|$0�u����]/�\$�H���H�|$0t
H�|$0�P����1�������H�=�)����H�=v%���腅��D��AWAVAUATUH��S��H��H�$dH�%(H��$�1����H�D$P�������1�[�
�.�L$1�H�t$@�q�������H�D$@H�D$8�I���H�t$PH�|$8���H�����D$dD�d$PH�\$xD�l$\��l�D$`D�t$XD�|$TH�l$H��A��<�D$�;DD�H���QH=���Hc�H�T$,H�t$0�.H�|?����T$,H�@�Y�"H���L�D-H��A��1�jATAWAVAU�D$@PRH�t$p1�H�|$@�q��H��@H�5&�"H��H���;����D$H���=���H��H��$�dH3%(�	H�Ę[]A\A]A^A_ÐH�m����H���+����D$���H�=�#1��L$1��|����L$����������xuH�D$PtHH�m��ueH��t�H�|$P�����fDH���D$�T$�~����D$�T$I����@H������H�|$P�ņ����,�T$���H�|$Pt
H�|$P蠆���1����b���H�=�"�V���H�=�"�J����Ղ��D��H��H�5ѱ"�����€t��tf��Z@H��鞆��fDH��H�D$�K�H�D$f��Z@H���t���@���tzUSH��H���t]�[ �؉����1Ã�)Ã�+�����ų��H��A�����H�lj�H�5?"����i�)É�[A��1�A�Љ�]A���������f��H�=�"����ff.�@��H���S���H� u
H��H��ÐH�@H������H��H�5��"輂��H��H��������SH��H�� dH�%(H�D$1���ƒ���u)��t5�C����H�t$dH34%(��H�� [�f���u������D�G(�T
+.
+v@�Z��{H�T$H�L$H�t$譛���D$�T$��C�D$����	ЉC�y���H�����H��uJH�{@��tH��x-���"띐H�L$��<H�D$�S���H��t��~�"�m����f��ZC�^����]���ff.�f���SH��H�� dH�%(H�D$1���ƒ���u)��t5�C����H�t$dH34%(��H�� [�f���u�����D�G(�T
�).
�)v@�Z��{H�T$H�L$H�t$�}����D$�T$��C�D$����	ЉC�y���H����H��uJH�{@��tH��x-�s�"띐H�L$��<H�D$�#���H��t��N�"�m����f��ZC�^����-��ff.�f�ATI��H��UH��SH��H��@dH�%(H�D$81��g~��H�߃��D$��谄����H�����蝄����H�L$(H����L��H�D$,PH�D$0PH�D$4P�D$(L�L$8L�D$4��H�� ���t�t$ H�|$(H�T$0�6��H�T$0H�t$8dH34%(H��u*H��@[]A\�D�}�����y���@��}�����V����/~��ff.�@AUI��L��ATI��UH��SH��H��XdH�%(H�D$H1��b}��L��A���D$��誃��H���A����薃��H�߃�����胃�����D$fT�'f.'��A����L���
��"H�H=-��H=����
]�"f.
�&���H�T$H�t$0f(�L���L$�l��H�D$(D���P��H�D$,P�L$�|$(f(�L�L$0L�D$,�̟��ZY����H�\$8�t$$H�|$0H�����H�D$8H�L$HdH3%(�mH��X[]A\A]���L$f.
"&�T����N���L���^���H�T$(D���R��H�T$4R�D$��L�L$0L�D$,�4���_AX�¸���{���Hc|$,H�T$$H�t$0H�|?�	��H�|$0�_��H�����t$(��%��u�%H�\$8H�T$L��H���9������@�{��H���A�������{��H�߃��������t{��������DH�L$@��<L��H�D$@�h}���
��"H����������f�L��H�\$8�C����D$�}���f.�������Q{���AWAVAUATI��USH��H��XH�=u�"dH�%(H�D$H1�H�����W��H��H���{��H��H���H�=0�"H�����*��H��H����z��I��H��t-H�=��"H�������H��H����z��I��H����H�=ʶ"H������~��H��H���z��I��H��tpH�=��"H��� �~��H��H���pz��I��H��tGH�=h�"H�����~��H��H���Gz��H��t!L��L��L��H������H���jfDH�=�"H�����;~��H��H���z��I��H���3H�=ܵ"H�����~��H��H����y��I��H����H�=��"H���6��}��H��H���y��I��H����L����x��L���D$�3���L��A���(���H�L$(H��L��H�T$,��RH�T$0RH�T$4R�D$(D��L�L$8L�D$4���H�� ��t(�t$ H�|$(H�T$0����H�D$0H���ZfDH�=�"H����+}��H��H����x��I��H����H�=��"H�����|��H��H����x��I��H��tJH�={�"H���J��|��H��H���x��H��t$M��L��L��H���N���H����@H�=)�"H�����|��H��H���Px��H����H�L$@��-H��H�D$8H�D$@��y��H�L$8��%H����y��I��H��tmH�=��"H�����|��H��H����w��I��H��tDH�=u�"H���$��{��H��H���w��H��tM��L��L��H���h���H��DH�T$HdH3%(H����H��X[]A\A]A^A_�f.�H�=m���|��H��H�u�"����H�=N��|��H��H�M�"�!���L���xv��L���D$躣���D$H�L$H�T$(L�L$$L�D$ ��L��������%����t$ H�|$(H�T$0�{��H�D$0H������H���$���@H�=a�"H������z��H��H���v��H��������;����H�=���{��H��H�%�"����H�=���{��H��H�U�"���H�=Y��{��H��H��"�=���H�=L��{��H��H���"����H�=&��{��H��H���"�
���H�=���_{��H��H�ݱ"����H�=��"H���p��y��H��H���u��I��H�������H�����H���LE����f.�H�=����z��H��H�U�"�@���H�=!�"H��� �ky��H��H���0u��I��H��������H�����H���LE��"���DH�=��z��H��H�Ű"���H�=*��_z��H��H��"���H�=
��?z��H��H���"�I���H�=���z��H��H�-�"���H�=���y��H��H�M�"���H�=����y��H��H�
�"���H�=T��y��H��H��"�p���H�=3��y��H��H�ݯ"���H�=��y��H��H���"�@�����s��ff.���ATUSH��H�� dH�%(H�D$1���ƒ���uFL�g�����kL�����H��t:Hc�H�DH�L$dH3%(�LH�� []A\�D����L�g�f�H���(�����t�,H�T$��L�����H�D$�fD�C(�T
�.
vp�Z��{H�T$H�L$H��藍���D$�T$�,$�����	Љk�C�/���fD�k���L�c�ƒ�������������H���H�����H�{���H��uRH�{@��tH��x5�[�"�j���fDH�L$��<H�D$�t��H��t��.�"�5����f��ZC�&����
r��ff.�f���H��H�5�"�s��H��H��� ���AVL�5>AUA�ATUH��SH��H�����������؃����H��H���H��������������������ZL�%��"H���۽��I�4$H��H���t��H�������zH�H���QH=��d�]H���[]A\A]A^��H������t���H��"H��H�0�It��H���-H�5Y�"H����H��1�1��r��L�%�"H��H��I�4$�t��H���B���E���lE1�����@��u�H���t���f(���Y�f/���f/���f(��L$�o���L$�,�f��*��Ef.�z�th1�H�=f�n����S�������H�H�CH��vH��u4iۀQ��]H��[]A\A]A^�f�H���xs��H�ƒ�u1�H��[]A\A]A^ÐH�H���QH���w݉UH��[]A\A]A^�DH���t��H��I���s��A��tW�tSH�H��uJL��H��3�����L����t��H��H���"�d���@�H���Cq�����fDH�5��"H��t<H��1�1���p��H��H��I�����L��H�������H�=(�m�����D�H�=0�_t��H��H�-�"��Ο��ff.���D�A���u1�ËGA��������S�_����_ ����������QO؉غų��A���A����A�������D���>D������	�A��E��E)�Ei�D)ۉ�A������[��)�k�<��A)�D��D)�D	��	�	ЉG�����fD����Ð�ÀQ�h���D��D�A���u1�ËGA��������SD�W����DW ��A������A��QDO�D�кų��E���A����������A��%>D�F��ʉ�A��	Ѻ����D��E)�D)�A��i�A)�D��D���D���D��)�k�<��)É�[	�D	�	ЉG��?�D��?�@A�€Q�d���ff.����D�A���u1�ËGA��������S�_����_ ����������QO؉غų��A���A����A�������D���>D������	�A��E��E)�Ei�D)ۉ�A������[��)�k�<��A)�D��D)�D	��	�	ЉG����?�fD����?Ð�ÀQ�h���D��SH�5�"H��0dH�%(H�D$(1��l��H�Ë��t���H�SH�$��t^���HcSH�T$1Ҩ�ugH�T$���tH�C(H�� H�D$�l��H�L$(dH3%(H�DulH��0[���u�H�����HcS�H�T$1Ҩ�t�H���X���HcS�f�H�������H�SH�$���X����@H�������K�����j��ff.����SH�5�"�k��D�A���u�[��H�Nj@A���������_����_ ����������QO؉غų��A���A����A�������D���>D������	�A��E��E)�Ei�D)ۉ�A�������)�k�<��A)�D��D)�D	��	�	ЉG��[��?H�D���ÀQ�j���ff.�f���SH�5�"�j��D�A���u�[��H�Nj@A��������D�W����DW ��A������A��QDO�D�кų��E���A����A������D���%�F���>�����A��	�D��D)�i�A)�D��D���D���D��)�k�<��)�D��D)�	��	�	ЉG��?[H�D�f�A�€Q�f���@��SH�5�"�i��D�A���u�[��H�Nj@A���������_����_ ����������QO؉غų��A���A����A�������D���>D������	�A��E��E)�Ei�D)ۉ�A�������)�k�<��A)�D��D)�D	��	�	ЉG��[��H�D���ÀQ�j���ff.�f���H��H��"�0�Gm��H�P H�B(H��H�BH�BdTJH�B�B H�����AWH�5��"AVAUATUH��SH���h��H�Ë��t��nf��ZC�Pk��I�ŋ������Lcc O�d$H��L�s(�V}���3Lc{���O�|?���������@HcSH�T��t	���
H��H�sL��M��AUM��1��g��ZY@��uPH�����tGH�U��t9��t4H��H��H�D$�gf��H�D$�uH�����tH���t��H�H��[]A\A]A^A_�@��A�A�A���tE�3HcS����8���@H������Lcc �O�d$�������A�A���u�H�������H��������H��H�T$���H�T$����f��{���3������ff.����UH�5��"SH���f��H���ujH�=��"H���"� ��j��H�5s�"H��H�@ H��H�H�@H�@dTJ�@�ff���o�oKHH��H��[]�@H�=9�"�,���H�5�"H��H���*f���o�o[X�oc �@` H�@(�S�
����PH��H��[]�f�ATI��U��H�5��"SH�� ��e��L��H����(�ch��H�����H�5��"H��I���e��H�sH�p@�����SH�@(H�@�C�P�S�@�P�S����P��ʂ�L�d$H�|$H�5�"�8e���H����"��uB�C������i�����?����?k�<��+C �	������=QO����C�H�C�€�����k H�D$H�� []A\�@H������$���L��H�D$��b��H�D$�
���@�;g��H���s���H�5\�"H��I���qd���o�oSH�pP�o[ X @��u	H�����ueH�p(@�����H���������L���rb������D����A���fDH����������f��Q���fDL��H�D$�#b��H�D$�ff.����H��1�����H�=�H�D$H�t$H���w������ATI��UH��S��H��dH�%(H�D$1���c��H�$��tk����t1M�$$�����$1���uH��L�����tw�4$�f��$1�H���/���H�L$dH3%(��H��[]A\�f��Kf����xQH�$uH��t�A�H���>e���@M�$$��u)H��u��q���DH�=x1��$�K`���o���H�<$tH���d���1����d���Da��@��AUH�5C�"ATUSH��HdH�%(H�D$81��Fb��H��H�����������C(�T
�
����.
�
��f���ZȨ���{L�l$,L�d$(H�l$$f(�H�L$L�D$ ���y���C(�T

.
�
�:�Z��D$L��L��H��x��){���|$,�R1��P�.
Y
v/f���ZȨ�j���H���L$����L$�Q���fDH�{�?���H���.H�{@���xH�����
�"���u�������C(�T�	.�	�U�Z��{L�l$,L�d$(�L$H�l$$L��L��H���Sz���|$$�L$�{�D$(�T$,�����	ЉC����ƒ���t�����K���<��u�Ⱥ��Q������)�k�d9�u!�Ⱥ��Q������)�iҐ9�������H�t$8dH34%(��H��H[]A\A]����u��C(�T
�.
����Z��{H�L$,H�T$(H�t$$�ey���L$$�K�D$(�T$,�����	ЉC�/���H�L$0��<H�D$0�3`��H���k����
Z�"�f���DH�{�o���H��uzH�{@���|H������"���fD�����3����Q���iҐ)ց������1�����@f���ZK���f.�f��ZC�4���f�H�L$0��<H�D$0�c_��H���g������"���DH���0�������H�{�L$艰���L$H��unH�{@����H�����/�"�q���f.�H�{�G���H����H�{@����H������"�.���f.�f��ZC����f��Ⱥ��Q������)�k�d9���������DH�L$0��<�L$H�D$0�U^���L$H���?����v�"���f��ZC���H�L$0��<H�D$0�^��H���>����5�"�l����#\��UH�5(�"H��SH���;]��H��H����|��_��H��"� H���ca��H�5�"H��H�@ H��H�H�@H�@dTJ�@��\���o�oKH�pH@��u	H�����ujH��H��[]�f��[_��H����H�5|�"H��H���\���o�o[H�pX�oc ` @��u	H�����u%H�p(@��u�H�����t�H���Z��H��H��[]�H��H�D$�Z��H�D$��ff.��H��(�D$���H�5�"H�D$H�|$�[���D$H�����H�D$H��(������"�f���UH�5��"H��SH��HdH�%(H�D$81��[��H��H���\�����DH�����H�D$ �€�����S�C����H�H�DH�D$(�€ti�����C��H�5��"��H�H�DH�D$0H����H��"H�L$ �H�8�[��H�L$8dH3%(�,H��H[]����u��C(�T
�.
��O�Z��{H�T$H�L$H�t$�Dt���D$�C�D$�T$�����	ЉC�E���f�������H�������������H�=����^��H��H�
�"�%�����"H��� ���H�5�"H���1Z��H�����f��C(�T
�.
�vX�Z��{H�T$H�L$H�t$�}s���D$�C�D$�T$�����	Ћ�C�Y���f�H���H����c���H�{觫��H����H�{@��tDH��xa�W�"�DH�{�w���H���~H�{@��tDH��xa�'�"���f�H�L$��<H�D$��Y��H��t����"�����H�L$��<H�D$�Y��H��t��Θ"�&����f��ZC����f�f��ZC�����W��ff.�f������"���ff.�@����o���ff.�@�����O���ff.�@��ATI��UH��S��H��dH�%(H�D$1��X��H�$��������tWM�$$����L���HV��f.�z.f(�fT
�f.
&w.�
$f/�w
f/vH�=K�1��vU���H�����H�L$dH3%(uvH��[]A\�D��Z����xBH�$u)H��t�A�H����Y������u��T���@M�$$��u
H��u��=���H�<$tH���Y���1����pY���U��ff.���AWAVAUATI��UH��H�5�"SH��HdH�%(H�D$81���V��A���ZI������MH��I�$�ƒ����8���/@����H�������H�E�ƒ�����H���� �/H�EH���kH���H���WH�E H�H�xH�T$(�؁���D$$H�EH�E uH�E H�x蹁��A��H�EH�E uH�E H�x L�h藁��A��H�EH�E ��H�x(�)T������E���wL���$�ʧ��E���$�\H���SH�|$(�I����$�H�CuH�����tH��L����S���$@�D$$f����Z�H�C�C�[�f�H����H�P�H���5H��"H���jH�EL�(L�xH�@H�D$H�D$0H�$H�$L��H�T$0�+��U��H�$�%�H�D$0H��I���pU��H�5َ"I��H����1�1�L���QU��L��H�D$��H�$�%�H�D$0H��I���"U��H�5��"I��H���o1�1�L���U��L��H�D$�6���L��I��蛟��H�5\�"I��H���1�1�L����T��L��H��I����j��H����H�|$H�T$$H�t$(衪��H�|$���L��A���|��H�|$A���R��A��Q�A����I����5w�f.�z6f(�fT
V�f.
�������
�f/�wf/������H�=��1��Q�����x����H�߾0�$�S���$I�D$ H��H�t$(@����H��H���UH�sH�����D$$D�s�CA����M��I����L�k(M����D�{ f��H�C�Z����SH�E�ƒ���t	���KH�L$8dH3%(L����H��H[]A\A]A^A_�DL����O��L�k(�f.�H�s�O����H�E �e����H�1�"H���H�E ����fDA�E�����*���L���$�U���$�����H�H������L���V���$�I��H�C(��I��I�����������������H��H�T$�D$H�4$�T��H�4$�D$�H�T$�o���H�H���b���H���$�U���$�H��H�C�N���H��H���9���f.�L���$�O���$�!���f�L��L���$�pO���$�-���fDH�$��<L���D$H�D$0�Q���D$H��u@H�$H�5�"�L���D$H�D$0�5w�YQ���D$H����f.�A���Q=�����H�=V�1��$E1��(N���$���fDH��L���N��I�$�ƒ����������I�$����H�=J���M��������H�=P��T��H��H��"�����H�=b��_T��H��H��"�q����H�=B��?T��H��H�Չ"����H�T$0H����H�EH�8H�L$0��-H�$�3P��I��H�EH�E uH�E H�@H��H�D$H�3�"H�0�Q��H��u�.�"H�D$����u;�R��H�D$H�"�"A��"����H�T$0H�E �l���f.��؎"�H���"H�5��H�81��^L��H���"H�5<�H�81��FL���M��H�=��"H�57�1��,L��ff.����UH��H��SH���[P��H��H����H��H��H��[]�_���ff.�@��AWAVAUATUH��SH��8H�5��"dH�%(H�D$(1�H����1�1�H����N��H�5��"I��H����1�1�H���N��H���R��H�5Y�"H��H���m1�1�H���N��H���R���1�L��H�T$H�t$ I���Ԣ��L�d$ �
��"H��{"H�=��"� D�|$�$��Q��I��H�h A��u(L��H����L�eH��tL��L���K���	DL�e��A��D�}f��A	��Z$L��H�ED�uH�5{"�U�%M���}�H���%���L��H�L$(dH3%(��H��8[]A\A]A^A_��A�$�����]���L��H�T$��O��H�T$��C���H�H���6���L���P��I��H�E��>���H��H������fD�H�=���P��H��H�ŋ"�s�����H�=���P��H��H���"�$����H�=e��P��H��H���"�����J��ff.�SH��H�� dH�%(H�D$1���ƒ���u%��t1�CH�L$dH3%(��H�� [�@��u��O�����D�G(�T
i�.
��v8�Z��s�{H�L$L�D$����������Ic���D$��C�DH��_���H��uJH�{@��tH��x-��"륐H�L$��<H�D$��K��H��t���"�u����f��ZC�f�����I��ff.�f�SH��H�� dH�%(H�D$1���ƒ���u-�����GH�t$dH34%(�|H�� [�������{ �t!{�C����xb��Q������D�S�����i��у�?����?k�<�ʉ�)�����Q~	��Q�9���K��C��y����Y����G(�T
��.
��v`�Z��s�{H�L$L�D$����������a���D$��C����f.����Q�9���f��;��������@H�藛��H��uRH�{@��tH��x5�K�"�z���fDH�L$��<H�D$��I��H��t���"�E����f��ZC�6����G��ff.�f���H���#������|.�H�%I�$H������)�������)‰�)��D������%I�$H��)�����)�������)�)ȃ��f���H��������|6�H�%I�$����)�������)‰�)к��D�H���������%I�$)�����)�������)к)ȃ���D�H�����H��H�5v"�H��H���d���H��H�H�D����H��H�5�u"��G��H�������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5Au"�\G��H���d������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5�t"��F��H���������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5!t"�<F��H���D������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5�s"�E��H��������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5s"�E��H���$������|?�H�%I�$����)�������)�)��ʃ���HE�H���D������%I�$)�����)�������)�)ȍP�D��H��H�5qr"�D��H��������|7�H�%I�$����)�������)�)��ʃ�H�H�����D������%I�$)�����)�������)�)ȍP��H�H����Ð��H��H�5�q"�C��H���������|7�H�%I�$H������)�������)�)���Hc�H�D�fD������%I�$H��)�����)�������)�)ȍPHc�H�D�f�USH��H��dH�%(H�D$1����t�t=H�kH���a���H���H���Ԗ��H�$H�L$dH3%(uH��[]�f�諣�����A��@��H��H�5�p"dH�%(H�D$1���B��H�$1*FH���\����H��-H���gC��H�T$dH3%(uH����}A��ff.�f���H��H�5qp"dH�%(H�D$1��|B��H�$>IH������H��-H���B��H�T$dH3%(uH����
A��ff.�f���H��H�5p"�B��H��H�������AVH�5�o"AUATUSH��H��0dH�%(H�D$(1���A��H��H������H��I���K����u7H�=��H���y��H�T$(dH3%(��H��0[]A\A]A^��H���(F��H�H='�$~�H=��$~6H=*%~nH=�X%~vH=�%�R��A�HA��DM�LM��A�MA�KL��H����E��H��D��Lc�H���1�M)��>��H���B���f�A�TA�w�f�A�SA����?��ff.�f���USH����wKH�Ӹu
H��t0H�H��H�����H��H�����H��H��[H��]�FA��fDH���B���ɺ1��B��f.�ATUH��SH��H�5/n"H��dH�%(H�D$1��6@��H��I��H��q"H�0�QB��H����H�5�"H���9B��H��tdH�5�y"H����H��1�1��@��L��H���]����t��u]H��H��H�$H�5�"�Y@��H�T$dH3%(usH��[]A\�H��"H��H����@����@L�������t���t�H�H�H9�t,1����H�=H��C��H��H�Ey"�L�����}����>���AWAVAUATUSH��H��hH�|$dH�%(H�D$X1�H�cu"H����H�H�$E1�H�D$�� ��f�H����I9���H��J��H� ��H��L�x1�E1�M�g�4�H����I9�}4L��J�4�H���U=��H����I����H�I��� u�M;o}I�G ��H9,$}	L�t$H�,$H��t"I��H��� �Z���L;p��H�@ J��H� �`���H�@ �[���H�<$�2H��H�L$H��H� ��H��L�8L�`I����I�$�� ��H�����H9$��H�=�y"H����
�@��I9��M
H�=�y"H�����@��I9��)H�=Zy"H�����d@��I9���H�y"H���H���C@��I9��H��x"H����H���"@��I9��H��x"H���H���@��I9����H�=Dx"H���A��?��L9���
H�=x"H����
�?��H��H���;��H���
H�=�w"H���=
�?��H��H���[;��H��� H�=�w"H���E�l?��H��H���1;��H����	H�=`w"H�����B?��H��H���;���tMH��w~!H�=.w"H��tl�?���wH��H����<��H�L$XdH3%(H����H��h[]A\A]A^A_�H�L$P��>H��H�D$Pw�V<��H��t�H�=�v"H��u�H�=F���@��H��H��v"�t���H�=&����?��H��H��v"�.���H�<$�����H�@ �^���H�=�v"H����
�L>��H�ߺH���;��H�=Uv"H�������H�=����{?��H��H�1v"���H�=-y"H�����=��H�=y"I��H������=��H�=�x"I��H���
��=��H�=�x"I��H�����=��H�=�x"I��H�����=��H�=�x"H��H���f�=��H��M��M��AWH��L��H��1��:��A_�Z�H��1��9��H�=8x"H�$H���u�.=��H�=x"I��H���=�=��H�=�w"I��H����<��H�=�w"I��H����
��<��H�=�w"I��H����
��<��H�=�w"H��H���]
�<��H��M��M��AWH��L��H��1��E9��A]�A^H�¾1��-9��H�=>w"H�D$H�����c<��H�=w"I��H�����K<��H�=�v"I��H���z�3<��H�=�v"I��H���B�<��H�=�v"I��H���
�<��H�=�v"H��H������;��H��L��H��AWH��M��M��1��z8��]�A\H�¾1��c8��H�=Dv"H�D$H���`�;��H�="v"I��H���(�;��H�=v"I��H����
�i;��H�=�u"I��H����
�Q;��H�=�u"I��H�����9;��H�=�u"H��H���H�!;��H��H��M��AWH�ƿM��L��1��7��H�=au"AZH��A[H������:���H��H��1��7��H�=+u"H�D$ H�����:��H�=	u"I��H���g�:��H�=�t"I��H���/�:��H�=�t"I��H�����p:��H�=�t"I��H�����X:��H�=�t"H��H�����@:��H��M��M��AWH��H�ƿL��1���6��H�=Ht"AXH��AYH���*�:���H��H��1��6��H�=t"H�D$(H����
��9��H�=�s"I��H����
�9��H�=�s"I��H���n
�9��H�=�s"H��H���6
�9��H��M��H��L��1��'6��H�=xs"H��H�����_9���H��H��1��5��H�=Fs"H�D$0H�����39��H�=$s"I��H���b�9��H�=s"I��H���*�9��H�=�r"I��H������8��H�=�r"I��H������8��H�=�r"H��H�����8��H��L��H��AWH�ƿM��M��1��J5��H�=cr"YH��^H���'�8���H��H��1��5��H�=/r"H�D$8H����
�T8��H�=
r"I��H����
�<8��H�=�q"I��H���k
�$8��H�=�q"I��H���3
�8��H�=�q"I��H����	��7��H�=�q"H��H����	��7��H��H��M��AWH�ƿM��L��1��k4��H�=Lq"H��XZH���h	�7���H��H��1��?4��H�=q"I��H���	�w7��H�=�p"I��H�����_7��H�=�p"I��H�����G7��H�=�p"I��H���v�/7��H�=�p"H��H���>�7��H��M��H��M��L��1��3��H�=]p"H��H������6��H��H��1��3��H�=+p"H��H�����6���H��1��[3����H��1��G3��H�=�o"I��H���F�6��H�=�o"I��H����g6��H�=�o"I��H�����O6��L��L��H��1���2��H�=so"I��H�����"6��L��H��1��2���4$M��H��t$H��L���t$(1��t$8�t$H�t$XL�L$h�2��H��0H��H�i"�2��H�i"��H�=�m"H���/�5���H��H���X3�����H�=�m"H�����~5��H�ߺH���.3��H�=�m"H������H�=���6��H��H�sm"���H�=����6��H��H�cm"�Y���I�D$�P�H�@ �"�H��q"�D$t��lH�|$H�L$P�H�5�q"H�D$P�e2��H�����H����H�m"H����H���4��H��H���o0��H�����H��H�5[_"�v1��H�����H��H��l"H���fH���c4��H��H��H���2���{�I�D$E1�H�$�`H����I9���	H�$N�4�H��L����/��H���r	H����L��I���*4��1�1�H��H���{1��L��H��H���1��I�$�� u�M;l$�+	I�D$ �H�=\���5��H��H��l"��H�=M����4��H��H��k"��H�kp"1�1��b���H���d���H�=(���4��H��H�wk"��H�sl"H����H�ǽ�-3��H��H����.��H����H�1l"H����H���3��H��H����.��H�����H��k"H����H����2���H��H���0�����H�=^���
4��H��H��k"��H�=I����3��H��H��k"�W���H�=7����3��H��H��k"�
���H�=���3��H��H��k"����H�=����3��H��H�{k"���H�=����m3��H��H�ck"�?���H�=����M3��H��H�Kk"���H�=����-3��H��H�3k"���H�=����
3��H��H�k"�j���H�=W����2��H��H��i"���H�=����2��H��H�{i"���H�=���2��H��H�cl"�Z�H�=����2��H��H�Kl"�"�H�=8���m2��H��H�l"�z�H�=����M2��H��H��k"�B�H�=����-2��H��H��k"�
�H�=w���
2��H��H��k"���H�=�����1��H��H�k"�(���H�=7����1��H��H��j"���H�=���1��H��H��j"��H�=����1��H��H��j"��H�=
���m1��H��H��j"��H�=����M1��H��H��j"���H�=����-1��H��H�sj"��H�=w���
1��H��H�[j"�f�H�=\����0��H��H�Cj"�.�H�=����0��H��H�+j"��H�=x���0��H��H�j"��H�=4���0��H��H��i"�K�H�=���m0��H��H��i"��H�=����M0��H��H��i"���H�=����-0��H��H��i"��H�=O���
0��H��H��i"�k�H�=W����/��H��H�h"�2���H�=<����/��H��H��g"���H�=����/��H��H��g"����H�=����/��H��H��g"�x���H�=8���m/��H��H��g"����H�=����M/��H��H��g"���H�=g���-/��H��H�sg"���H�=w���
/��H��H�[g"�u���H�=\����.��H��H�Cg"�=���H�=����.��H��H�+g"����H�=���
�.��H��H�g"��H�=-���.��H��H��f"�^�H�=���m.��H��H��f"�&�H�=����M.��H��H��f"���H�=����-.��H��H��f"��H�=|���
.��H��H��f"�~�H�=/����-��H��H��f"�F�H�=b����-��H��H�kf"��H�=B���-��H��H�Sf"��H�=����-��H��H�;f"�r�H�=����m-��H��H�#f"�:�H�=����M-��H��H�f"��H�=����--��H��H��e"��H�=����
-��H��H��e"�Y�H�=�����,��H��H��e"�!�H�=b����,��H��H��e"���H�=���,��H��H��e"��H�=����,��H��H�{e"�y�H�=����m,��H��H�ce"�A�H�=����M,��H��H�Ke"��H�=����-,��H��H�3e"��H�=����
,��H��H�e"�`�H��c"H���hH���*��H��H���K&��H���H�bc"H����H���Y*��H��H���&��H���Q�H�-c"H���Y����H�=���+��H�c"�<���I�D$E1�H�$�`H����I9���H�$N�4�H��L���%��H����H���3L��I����)��1�1�H��H���B'��L��H��H���d'��I�$�� u�M;l$�xI�D$ �H�T$H�H�H9������H�=���*��H�Pb"��H�Lb"H���H���;)���H��H����&������H�=���u*��H�b"�{����H�=���X*��H�Aa"�:�H��e"1�1��̜��H����I�D$E1�H�$�TH����I9�}tH�$N�4�H��L���r$��H��u[H��t@L��I���(��1�1�H��H���&��L��H��H���-&��I�$�� u�M;l$}I�D$ �H�?e"1�1��6���H���H�a"H����H���)(��H��H����#��H����H��`"H���.H���'��H��H���#��H�����H��`"H�����H�=���&)��H��`"���H�=I��
�	)��H��H��`"�1�H��d"1�1��z���H������H�=[���(��H��`"�]�H�=z��(��H�}`"��H�='��(��H��_"���H�d"1�1�����H��H��_"H���
H���'��H��H����"��H��H�D$H����H�L$P�H��-H�D$P�\$��H�L$H��+H���E$��H�5~Q"H���#��H����I��H�D_"H���sH���&��L��H��H���5$���}�H�Yc"1�1��P���H�5)Q"H��H���>#��H���F���I��H�d_"H���zH���+&��L��H��H����#����H��^"H����H���&��H��H����!��H���lH�t^"H���?H����%��H��H���!��H�����H�?^"H���oH���%���H��H���V#�����H�=����&��H�!^"�J�H�E^"H����H���\%���H��H���#���3����H�=+��&��H�^"���I�D$E1�H�$�TH����I9�}tH�$N�4�H��L���� ��H��u[H��t@L��I���%��1�1�H��H���a"��L��H��H���"��I�$�� u�M;l$}I�D$ �H��a"1�1�茘��H���H�]"H���H���$��H��H���D ��H����H��\"H����H���R$��H��H��� ��H���J�H��\"H���R�H�=��|%��H�u\"�5�H�=��_%��H�]"��H�=��B%��H�[\"����H�=���%%��H��\"����H�=���%��H��\"�i����H�={���$��H�\"���H�\"H���MH���g#���H��H���!���g����H�=C��$��H��["�-����H�=���$��H�\"�����H�=��g$��H��["�p����H�=ھ�J$��H��["�����H�=¾�-$��H��["�]����H�=���$��H�["�J���H�
["H��t:H���"���H��H���@ �������H�=r���#��H��Z"�����H�=U��#��H��Z"�����H�=��#��H��Z"�t����H�=��q#��H��Z"����H�=ݾ�T#��H�5Z"�}��AWAVAUATI��USH��H��8H�<$H��dH�%(H�D$(1�����f.��vf(�fT
:�f.
��w �
��f/��Nf/���@H����H�=�]"H�����Q!��H��H�����H��u*H�=Y]"H����+!��H��H������H���H���>E��H�<$H������L��H��H���d���I��I���GH�=�\"H���g�� ��H��H�����H���?I��H�=X\"��H���� ��H��H���m��H���I��H�=&\"�D$H�����| ��H��L�l$ L�t$H���7��H����H���t$H�L$��M��M�����1������il$H�=�["kD$<�l$ H����� ��H��H������H�D$H��t
H����h��H�D$H�=q["H��������H��1�H�����H����L��L��L���Fs��D�l$������QaL������H����A��jD��jjjjjjL�D$HH�t$`H�|$@�{l��H��@H�L$(dH3%(��H��8[]A\A]A^A_�@A����Q�@H�=��1�A�3*F�������H���G���Í��Q=���)��*���fDA���ŀQ�8���f�H�=���� ��H��H��Z"�Z���H�=i�����H��H�-Z"����H�=N������H��H�Z"����H�=�����H��H��Y"�y���H�=�����H��H��Y"����H�=ɹ����H��H��Y"�0���H�=!Z"H������H��H�����H������H�=�Y"H�������H��H�����H�������H�=�Y"H�������H��H���l��H���|���H�=�Y"H����}��H��H���B��H�=cY"H��H�����Z��H��H�����H�=8Y"I��H�����7��H��H�����L��H��L��H��軙��H�=�X"I��H������H��H������H����H�=�X"H�������H��H�����H���dH�=�X"H�������H��H���t��H���
H�=KX"H���J���H��H���J���yH���0��H���s���H�=
X"H�����O���wH��H������I���f.�H�=�����H��H�5X"���H�=ȷ1�1�����7���H�=���G��H��H��W"�����H�=U�����H��H��W"����H�=9�����H��H��W"���H�=IW"H���`�{���H��H���+���u���fDH�=)W"H���P�K���H��H������r���fDH�=	W"H���@����H��H����������fDH�=����O��H��H��V"����H�=q���/��H��H��V"����H�=~�����H��H�}V"����H�=%������H��H�}V"�!���H�=	������H��H�eV"����H�=z�����H��H�5V"����H�=ѵ����H��H��U"���H�=����o��H��H��U"���H�=����O��H��H��U"���H�=����/��H��H��U"���H�=Q�����H��H�UU"�L���H�=yV"H�5A�1������F��H�=_V"H�5'�������AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��4����Hc�I�l�@����H����������E��������H�l$H����M�&H�D$�ك��M�~���HH��t
H�|$���H��������H�=M��,��I��1�H��L�d$ A�3*F��H�l$(���2�L�d$I����A��H�D$ �L�d$(H�t$ L����\��L��L��H���<���H�L$8dH3%(��H��H[]A\A]A^A_�f��;����~/����M�&H�l$��H�D$�������A����@H�D$�4H�l$A��ك�����L��I���D���@��������L�d$ �H�D$(�&���Hc�I�|�H����������H�l$�Q���f.�H�|$�f��L�d$�K�H��M���	��E������H��toH�l$H�D$���J��������E1�M�&���������
���������)���fDL�d$ A�3*FH�D$(�n������H��H�D$���H�D$H�D$��u=�������H�|$tH�|$�L$����L$�1�������������M�&����i����i�������ff.���AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$�X��H�D$A�Dž��4����Hc�I�l�@����H������1���E�����"��H�l$H����M�&H�D$�ك��M�~���HH��t
H�|$���H��������H�=�����I��1�H��L�d$ A�3*F��H�l$(���2�L�d$I����A��H�D$ �L�d$(H�t$ L����jW��L��L��H�����H�L$8dH3%(��H��H[]A\A]A^A_�f�������~/����M�&H�l$��H�D$�������A����@H�D$�4H�l$A��ك�����L��I���D���@��������L�d$ �H�D$(�&���Hc�I�|�H�������K��H�l$�Q���f.�H�|$���L�d$�K�H��M������E���o��H��toH�l$H�D$���J��������E1�M�&���������
���������)���fDL�d$ A�3*FH�D$(�n����R��H��H�D$���H�D$H�D$��u=�������H�|$tH�|$�L$�q���L$�1����/���������M�&����i����i����_��ff.���AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��4����Hc�I�l�@����H����������E��������H�l$H����M�&H�D$�ك��M�~���HH��t
H�|$�p��H��������H�=���
��I��1�H��L�d$ A�3*F��H�l$(���2�L�d$I����A��H�D$ �L�d$(H�t$ L�����Q��L��L��H����H�L$8dH3%(��H��H[]A\A]A^A_�f������~/����M�&H�l$��H�D$�������A����@H�D$�4H�l$A��ك�����L��I���D���@��������L�d$ �H�D$(�&���Hc�I�|�H����������H�l$�Q���f.�H�|$��
��L�d$�K�H��M�����E������H��toH�l$H�D$���J��������E1�M�&���������
���������)���fDL�d$ A�3*FH�D$(�n������H��H�D$���H�D$H�D$��u=�������H�|$tH�|$�L$�!���L$�1������������f��M�&����i����i�������ff.���AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��4����Hc�I�l�@����H������E���E�����6��H�l$H����M�&H�D$�ك��M�~���HH��t
H�|$� ��H��������H�=]��<
��I��1�H��L�d$ A�3*F��H�l$(���2�L�d$I����A��H�D$ �L�d$(H�t$ L����JL��L��L��H���L�H�L$8dH3%(��H��H[]A\A]A^A_�f��K����~/����M�&H�l$��H�D$�������A����@H�D$�4H�l$A��ك�����L��I���D���@��������L�d$ �H�D$(�&���Hc�I�|�H�������_��H�l$�Q���f.�H�|$�v��L�d$�K�H��M������E������H��toH�l$H�D$���J��������E1�M�&���������
���������)���fDL�d$ A�3*FH�D$(�n������H��H�D$���H�D$H�D$��u=�������H�|$tH�|$�L$�����L$�1�������������M�&����i����i����s��ff.���AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$�h	��H�D$A�Dž��4����Hc�I�l�@����H����������E��������H�l$H����M�&H�D$�ك��M�~���HH��t
H�|$��
��H��������H�=
�����I��1�H��L�d$ A�3*F��H�l$(���2�L�d$I����A��H�D$ �L�d$(H�t$ L����F��L��L��H����H�L$8dH3%(��H��H[]A\A]A^A_�f��
����~/����M�&H�l$��H�D$�������A����@H�D$�4H�l$A��ك�����L��I���D���@��������L�d$ �H�D$(�&���Hc�I�|�H����������H�l$�Q���f.�H�|$�&��L�d$�K�H��M���1��E���
��H��toH�l$H�D$���J��������E1�M�&���������
���������)���fDL�d$ A�3*FH�D$(�n����b��H��H�D$���H�D$H�D$��u=�������H�|$tH�|$�L$����L$�1����?����������M�&����i����i������ff.���AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��,����Hc�I�l�@����H������Y���E�����J��H�l$H����M�&H�D$�ك���M�~���)H��t
H�|$���H��������H�=�����I��1�H��L�d$ A�3*FH�l$(@���1D��L�d$I����A��H�D$ 1�L�d$(H�t$ L���/A��L��L��H����H�L$8dH3%(��H��H[]A\A]A^A_�fD�����~/����M�&H�l$��H�D$������A�����@H�D$�H�l$A����������L��I���D���@���������L�d$ �H�D$(�#���Hc�I�|�H�������s��H�l$�Q���f.�H�|$����L�d$�K�H��M������E������H��tPH�l$H�D$���B��������E1�M�&���������
���������)����1��H��H�D$����H�D$H�D$��u=������H�|$tH�|$�L$�P���L$�1�������������M�&��������������f.���AWI��AVAUA��ATI��USH��dH�%(H��$�1�H�D$H�\$H�D$0H�D$hH�D$ H�D$pH�D$(H�\$`H�D$x���H�D$8�…���E��~QIc�I�D���5H��������������
��H�D$0D��H���uL�T$8E1�A������D��1�E1�E1�A�����H�D$`H��1�H�x�+@H��tM��D9�tHc�M��L���H�PH��H9�t9�|�H��t�H�H��H�H9�u�H��tH�D$0H�9��JM����H�\$(H����A��A���:A���xE���WH�D$H�\$P�H�l$ H�D$@H�D$H�D$H@H�t$@�&:��H��L��H����H��$�dH3%(��H�Ę[]A\A]A^A_��A����A����E����H�D$H�l$ �H�D$PH�D$@H�D$H�D$H�o����H�|$8�������f��$���E��~#���$��L�T$8D��E1�A������V���f�L�T$8��1�E1�A������9���DH�D$�1�H��H�D$@�3*F@��H�T$HH�\$P�������H�=���_�����DH�T$H�D$�Ic�I�|�H��umA���x
��H�D$0D������H�|$0�$���L�t$0�u�H��M���
���$������A�����H�ɸL�T$8��HD�H�L$0�e����$D���&����$H�D$0����D��H�|$8t
H�|$8�d���1����&�����D�����������AUI��ATI��U��SH��XdH�%(H�D$H1�H�D$H��H�D$8H�D$H�\$0H�D$@�	���H�D$�������m1�H�D$0H��1�H�x�%fDH��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9��H����������������H�\$H�D$H�,$H�t$ �H�l$ H���H�D$(�.��H��L��H������H�\$HdH3%(��H��X[]A\A]�f.�������xrH�t$����DH�|$�������_���H�,$���H�=����H�žH�=\�����3*F�B���f�H�D$H�,$��H�|$t
H�|$�s����1����5������AVAUATI��H��UH��SH��H�� dH�%(H�D$1�����f.��f(�fT
]�f.
ݤw �
ۤf/���f/Ѥ��H����H�=�5"H�����t���H��H���9���H��u*H�=�5"H�����N���H��H������H����H���a#��L��H�����H��H�����H��H���~H�T$H�t$�R��H���'���H��1�E1�j�T$E1�L��H�t$ �I��ZYH�L$dH3%(�GH�� []A\A]A^�DH�=�1��3*F�=��������H�=m������H��H��4"���H�=�4"H����[���H��H��� ���H���
���H�=�4"H����1���H��H�����H�����H�=U4"H��������H��H������H�������H�=#4"H���2����H��H�����H�=�3"I��H�������H��H������H�=�3"I��H�������H��H���\���H��L��L��H���z��H���[���H�=N�����H��H��3"���H�=j�����H��H��3"����H�=�������H��H�]3"����H�=����_���H��H�53"���H�=
���?���H��H��2"�4���H�=U������H��H��2"��H�=9�����H��H��2"���H�=i9"H�51�1������6���fD��AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��,����Hc�I�l�@����H������Q���E�����B��H�l$H����M�&H�D$�ك���M�~���/H��t
H�|$����H��������H�=h��,���I��L�d$ A�3*FH��u0��3��L�d$I���{A��H�D$ L��H�l$(�H�t$ L����?��L��L��H���!���H�L$8dH3%(��H��H[]A\A]A^A_�fD�C�����~/���M�&H�l$��H�D$������A�����@H�D$�#H�l$A����������L��I���<���@��������L�d$ ��*���Hc�I�|�H�������t��H�l$�Z���H�|$�v�L�d$�K�H��M������E������H��tfH�l$H�D$���R��������E1�M�&������������������9���fDL�d$ A�3*F������H��H�D$����H�D$H�D$��u=������H�|$tH�|$�L$�����L$�1��������������M�&���������z������@��AWI��AVAUATI��US��H��HdH�%(H�D$81�H�D$�x���H�D$A�ƅ�����|Hc�I�l�@���5H������$���E�������H�l$H���7M�/H�D$�ك���M�w����H��t
H�|$�����t��t&�*D��H�l$�H�=	����I��A�3*FL�l$ �H��t
H�l$(�H�t$ L���:��L��L��H������H�L$8dH3%(�BH��H[]A\A]A^A_��;�����~'��tCM�/H�l$��H�D$���/���A��1���H�D$��H�l$A����Hc�I�|�H��uv������H�l$�����H�|$��L�l$�K�H��M������E������H��tBH�l$H�D$��t������E1�M�/���_���������������H��H�D$�Q���H�D$H�D$��u=��>�����H�|$tH�|$�L$�6����L$�1����������{�M�/����������������AWI��AVAUATI��US��H��HdH�%(H�D$81�H�D$���H�D$A�ƅ�����|Hc�I�l�@���5H������b���E�����S��H�l$H���7M�/H�D$�ك���M�w����H��t
H�|$�@�����t��t&�*D��H�l$�H�=���T�I��A�3*FL�l$ �H��t
H�l$(�H�t$ L����5��L��L��H���v���H�L$8dH3%(�BH��H[]A\A]A^A_������~'��tCM�/H�l$��H�D$���/���A��1���H�D$��H�l$A����Hc�I�|�H��uv������H�l$�����H�|$��L�l$�K�H��M�����E������H��tBH�l$H�D$��t������E1�M�/���_��������������w�H��H�D$�Q���H�D$H�D$��u=��>�����H�|$tH�|$�L$��L$�1����T�������M�/������������5����AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$�8�H�D$A�Dž��,����Hc�I�l�@����H������w���E�����h��H�l$H����M�&H�D$�ك���M�~���/H��t
H�|$��H��������H�=����I��L�d$ A�3*FH��u0��3��L�d$I���{A��H�D$ L��H�l$(�H�t$ L�����0��L��L��H����H�L$8dH3%(��H��H[]A\A]A^A_�fD����~/���M�&H�l$��H�D$������A�����@H�D$�#H�l$A����������L��I���<���@��������L�d$ ��*���Hc�I�|�H�����������H�l$�Z���H�|$��L�d$�K�H��M�����E������H��tfH�l$H�D$���R��������E1�M�&������������������9���fDL�d$ A�3*F����K�H��H�D$����H�D$H�D$��u=������H�|$tH�|$�L$�j�L$�1����(������M�&���������z������@��AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$��H�D$A�Dž��,����Hc�I�l�@����H������!����E��������H�l$H����M�&H�D$�ك���M�~���/H��t
H�|$�p�H��������H�=����I��L�d$ A�3*FH��u0��3��L�d$I���{A��H�D$ L��H�l$(�H�t$ L����_+��L��L��H����H�L$8dH3%(��H��H[]A\A]A^A_�fD����~/���M�&H�l$��H�D$������A�����@H�D$�#H�l$A����������L��I���<���@��������L�d$ ��*���Hc�I�|�H�������D���H�l$�Z���H�|$���L�d$�K�H��M�������E���o���H��tfH�l$H�D$���R��������E1�M�&������������������9���fDL�d$ A�3*F�����H��H�D$����H�D$H�D$��u=������H�|$tH�|$�L$�:��L$�1�����������M�&���������z����h���@��AWAVI��AUI��ATUS��H��HdH�%(H�D$81�H�D$���H�D$A�Dž��,����Hc�I�l�@����H����������E���������H�l$H����M�&H�D$�ك���M�~���/H��t
H�|$�@�H��������H�=���\�I��L�d$ A�3*FH��u0��3��L�d$I���{A��H�D$ L��H�l$(�H�t$ L�����%��L��L��H���Q�H�L$8dH3%(��H��H[]A\A]A^A_�fD�s���~/���M�&H�l$��H�D$������A�����@H�D$�#H�l$A����������L��I���<���@��������L�d$ ��*���Hc�I�|�H���������H�l$�Z���H�|$��L�d$�K�H��M���=���E������H��tfH�l$H�D$���R��������E1�M�&������������������9���fDL�d$ A�3*F������H��H�D$����H�D$H�D$��u=������H�|$tH�|$�L$�
��L$�1�����������O�M�&���������z�������@��AWI��AVAUA��ATI��USH��dH�%(H��$�1�H�D$H�\$H�D$0H�D$hH�D$ H�D$pH�D$(H�\$`H�D$x�y�H�D$8�…���E��~QIc�I�D���-H�������������������H�D$0D��H���mL�T$8E1�A������D��1�E1�E1�A�����H�D$`H��1�H�x�+@H��tM��D9�tHc�M��L���H�PH��H9�t9�|�H��t�H�H��H�H9�u�H��tH�D$0H�9��BM����H�\$(H����A��A���A���pE���GH�D$H�l$ H�D$@H�D$H�D$HH�\$P�H�t$@����H��L��H����H��$�dH3%(��H�Ę[]A\A]A^A_�A����A����E����H�D$H�l$ �H�D$@H�D$H�D$H�|���H�|$8��������$�x�E��~#���$��L�T$8D��E1�A������v���f�L�T$8�1�E1�A������Y���DH�D$H�D$�H�D$@�3*F�H�D$ 3*FH�T$HH������������H�=k��/�H�D$��H�T$H�D$�Ic�I�|�H��umA����H�D$0D������H�|$0�$�{�L�t$0�u�H��M��������$���g���A�����H�ɸL�T$8��HD�H�L$0�m����$D������$H�D$0�"���D��H�|$8t
H�|$8�,��1�������y�D�����g���ff.�@��AUI��ATI��U��SH��XdH�%(H�D$H1�H�D$H��H�D$8H�D$H�\$0H�D$@���H�D$�������m1�H�D$0H��1�H�x�%fDH��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9��H����������������H�\$H�D$H�,$H�t$ �H�l$ H���H�D$(����H��L��H����H�\$HdH3%(��H��X[]A\A]�f.�����xrH�t$����DH�|$�����_���H�,$���H�=���H�žH�=$����3*F�B���f�H�D$H�,$��H�|$t
H�|$�3��1�������U��SH��H��8�GdH�%(H�D$(1�(�T
F�.
_�vM�Z�H���D$�{����D$��H�L$��H�T$L�D$����D$H�t$(dH34%(uwH��8[]�f�H��'3��H��uRH�{@��tH��x5�� "�f�H�L$ ��<H�D$ ��H��t��� "�X����f��ZC�I������ff.�f������f���1����D��SH��H��0�GdH�%(H�D$(1�(�T
%�.
>�vL�Z�H���D$�Z����D$H�T$H�L$��H�t$�.���D$H�T$(dH3%(uxH��0[�@H��2��H��uRH�{@��tH��x5��"�f�H�L$ ��<H�D$ �c�H��t���"�Y����f��ZC�J����m��ff.�f���H��H�5a
"�|��H�����H��H�H�D����AUATUSH��H��8dH�%(H�D$(1������L�g�W�
�T�.
����f��Z�H���D$L�l$�	����D$H�T$L���H�t$����L��l$��0��H��t^Hc�H�DH�L$(dH3%(�/H��8[]A\A]������GL�g(�TE�.^�vt�Z��g���H���(O�������t�,�L���L���1��H�D$�w���DH�{�/0��H��u/H�{@��t8H��xU��"����fDL���0��H��t�f��ZC���DH�L$ ��<H�D$ �k��H��t���"���f��;>���SL�c�
Z�(�(�T�������_����N��ff.���H��H�5A"�\��H��H������ATUSH��H��@dH�%(H�D$81��<����C�ŋ���+�-Ӆ),$T�.-����Z�f(��~��f(���fT�f.�vf��f/��[f���*��\�f/
7��A���t+�u'H���D$�)K���~A�����D$f���ZKfT�f.���f/
����H����Z��H�߉��Y��Lc���������C1Ҩ��H�H�H��H���L�,����{fDH�{�-��H���&H�{@����H������"�������H���D$�GJ���D$��@H�T$,H�t$(������D$,H�t$8dH34%(�vH��@[]A\�fDH����Y��H�߉��X��Lc���������K���������Ⱥ��Q������)�iҐ9�����H�H�H��I�H�߁B,����a���@�5��)4$T�.5�������Z������f���ZK����f.���_���H���0;���R�������������Q���iҐ)�1ҁ�����S�����Ⱥ��Q������)�k�d�9������$����H�L$0��<H�D$0���H���+�����"�&���D�Ⱥ��Q������)�k�d�9�������E���f��ZC���f��C(<$T�.=�����Z��{H�L$,H�T$(H�t$$��D$(�T$,�L$$�����	ЉK�C�$���f.���$���H����9�������K(<$T�.=���f��Z��{H�L$,H�T$(H�t$$��T$(�L$,�D$$�����	ʉC�S���fDH�{��*��H��u"H�{@��t0H��xM��"����fDf��ZC����f.�H�L$0��<H�D$0�#��H��t��N"�����H�{�g*��H��uH�{@��t H��x=�"����f��ZC����H�L$0��<H�D$0���H��t���"�������@��H��H�5�"����H�����H��H�H�D����ATH�5�"US���H��"� H�=�"H���ua����H�5u"I��H�@ L��H�H�@H�@dTJ�@�h���oH��H���oSP�]����EL��[]A\�f����H�5"I��H�@ L��H�H�@H�@dTJ�@���H�sH��H�p@��u	H�����uE�C�CH�߉E�C�E�E�C%��E��E�ϋ���eu����EL��[]A\�DL�������ff.�USH��H��(dH�%(H�D$1����uAH�o�ty�sL�L$L��H����)��H�D$H�L$dH3%(�H��([]�fD�t��H�o�…�u�H���D���D�6���H�k�ƒ���u��f.��C(�T
�~.
�~v@�Z��sL�L$�{H�L$M�ȉ���������~��t$��s�>����H�{�'��H��uJH�{@��tH��x-�C"띐H�L$��<H�D$����H��t��"�m����f��ZC�^������ff.�f���USH��H��(dH�%(H�D$1�H�l$H�D${J�`���H���-H���{��H���# ����uH�L$dH3%(uIH��([]��H��H�D$��HcSH�D$��t�H�TH��+H��H�T$������@����ATUH��SH��dH�%(H�D$1��,������H��H�x|H�����MbH9�}Hi��H�\�E���H�m(H���&��H���|I���/H��L��H�$�����H��L���+H�$�i��H���>@H�V-���H9�}��H���*H��H�$��3��H��E��o���H�t$dH34%(H��u	H��[]A\��5��DATUSH��H�� dH�%(H�D$1���������tH��������H��H�H9��"H�L$��*H��H�D$H�D$���H�L$��-H���z���H�����H��H�t$dH34%(H����H�� []A\�f.�����H�ǁ���H���ul��H��H�L$��+H�D$���H��A���tL�c(L���Q$��H��u�L������H��H�L$��+H�D$����H���V���H�����C-��t�H�H�H��H���q���DH�<������H�����H���������D��H��H�5��!���H��H���P�����ATH�5��!USH��dH�%(H�D$1����H��H������tH��$�H�H9�}_H��H�$>I����H���-H�������H�����H���uCH�T$dH3%(H����H��[]A\�DH�������H������H���t�H�����Hc{��uJA���tL�c(L����"��H��u�L���6���H��H���+H�$�=��H���h���DH�|?��H��H���+H�$�
��H����3����AWH�53�!AVAUATUH��SH���?��H��H������I�Ƌ��ukf���ZK�L$E1�A�E1�H���x���H�����AWE��I��AU�D$H��L��H��H�5�u����H��([]A\A]A^A_���t,f���ZS�T$�t>D�{ H��L�k(��D�c�H���>���f���Z[�\$���S����u�H����=��D�{ ��u��<���DATI��USH��H�� dH�%(H�D$1���ƒ���ug�����nH�C�������$��H�C�uH������.9kt�#�H�D$dH3%(� H�� []A\�f����H�kH�C����P��$���H�C�uH�������;ku���F(�T
1w.
Jw�D�Z��s�{H�L$L�D$����������
��l$�H�C�k�������H�L$��-H��H�D$����K��%��S��$����H�L$��+H��H�D$�m���k%�����H��L���������H��L���������H�L$��+H��H�D$� ���k%�����@H���;���kH�C��������H�L$��-H��H�D$�����K��%��S����fDH�~���H��uRH�{@��tH��x5��"���fDH�L$��<H�D$�s��H��t���"�a����f��ZC�R����}��ff.�f���AVAUI��ATUSH��H��H��H�5�"dH�%(H�D$1����H��tFH�5?�!L���W��H�50�!H��I���E��L��H���<��H��A����<��E���…���8�t0H��L��赋��H�L$dH3%(��H��[]A\A]A^�@L��L�����H��H�����A�$��t�uL���V,��fD�EI�\$��uTL��L�m踀��H��A��譀�����tA��u@H��H��L�,$H�5�"���H��tA9�t31��O���@�u�H����+���f�H�I�L9�t�1��)���fD��������f���AVAUATUH��SH��H��H�� H�5"dH�%(H�D$1����H�5�!H��H���0����H�5��!H��I�����I��A�$�u	���6H�5��!H�����H�5x�!H��I�����L��H��I���/���L��H���$���A�$����A�EI�\$����I�m��t
@���TL�t$�H��H�l$H�53
"L������H���
A�$�ƒ����)���YA�EA�\$�ƒ��������+A�E9��'���H�L$dH3%(��H�� []A\A]A^���8���L���(*���+�����1���L���*���$���L���0:��L��A���%:��E���…���8������L��H�����L��H�����A�$��t�uL���)���A�EI�\$����I�m��t
@���$L�t$�H��H�l$H�5�"L���{��H����L���|��L����|��9�������fD���H��I��H�^�!H�0���H����H�5~"H�����H����H�5^"H����H��1�1�����L��H�����H�l$H�è��@����H�H��H)�H���u�D���L���<H��H�l$���H������H����������������L���`'������H��"H��H���������A�$��5E1�A�E��_���H��H�����������H�L$��<H��H�\$����H���Z����q���f�H�5Y"H�L$�H������H��H��H���i��H�H�D�A���D������L���5������H�H�H9������������fDL���h�H�\$H�Ũt4��t/H�H��H)�H����������H��H�H�����H�5�"H�L$�H�����H��H��H�����H�H�D���D��9���L����&���,���L���0��A�ED9��L���A�E%�A�$���I�l$(����I�](H��H�����H���2���@���t����f���H�H�H9�������������fDL���@%������L���04������H�=e���H��H�u�!�����L���h��E�D$A�E�� ���1��%���H�H�H9��U����l�����5�����������@��UH��SH��H��H��H�5"�1��H��uH��1�[]�H��H������H��[H��]�������ATUSH��`dH�%(H�D$X1��_g��H�5��!H�D$H�|$���H��H���O���H�D$ ����>�����CH�l$����H�H�DH�D$(��������)�C����H�H�DH�D$0�����H�D$8������H�D$@���tH�{(�����H�D$�3@�ƀ���H��+�s���H�D$H��€t����HcC H�DH�5q"H�D$PH���H�T�!H�L$ �H�8�"��H�t$XdH34%(�H��`[]A\�D������H����#������������CH�l$�������@�C�������D�[����D[ ��A������A��QDO�D�غų��E���A��������������>F������	�A��E��E)�Ei�E)�D��E���D���D��)�k�<��A)�D��D)�D	��	�	ЉC����H�DH�D$8�����@����C����A���D�CA��A��DC ��A������A��QDO�D���ų��E����A��D�ރ�������B�<�������A��E)�Ai�A)�D���E��%>	�D����D����D��)�k�<��A)‰�D)�D	��	�	ЉC����?H�D�{���fD�H�=sa����H��H�5"������{@������D�[����D[ �A������A��QDO�D�غų��E���A������������3��>F������	�A��E��E)�Ei�E)�D��D���D���D��)�k�<��)�	�D��D)��	�	׉{��?H�|?������C(�T
Qi.
ji��H�l$�Z��{H�L$H�T$H�t$�����D$�C�D$�T$������	ЉC����H���� �������H���.���j����C(�T
�h.
�h���Z��{H�L$H�T$H�t$�y���D$�C�D$�T$������	ЉC����DH�{���H���.H�{@����H�l$H�����Z�!�
���DH�{�w��H����H�{@����H������!�J���f.�A���Q����@A�ÀQ�:���@A�ÀQ���@H�l$��<H�D$H��萿��H���U������!�_���f.�H���<H�D$�U���H���U����|�!����f��ZC���f.�f�H�l$�ZC���8������AWL�=�]AVI��H�5'�!AUA�ATUH��SH��XdH�%(H�D$H1�����H��A����A���=D������RL��H���H����A����A�����
�������E��D��A��u\A����I�����uI����M����A�����
t+����L���r������H�H���vDL���`���I��A���1���I������X���H���!L��H�0�T���H����H�5��!H���;
L��1�1�蟽��I��H�
�!L��H�0����H���!���E���pE1������u����t�uH���I��f�M��L�kI��xI��$$�H=H�qvOL��I��?L��H�L$@H�#\=�.����+H��L�H��L)�I��H�D�Mi�%�H�D$@���I��M)�H��M���}� p��A�ċf��ZCA��A��A������
H���D$豾��H��D��L��AV�D$E1�E1�1�H���	��A\A]H�L$HdH3%(�zH��X[]A\A]A^A_�D���q���L��A�艾��f�f/���L�d$0L��论���T$0�% df(��54cf(��^�cf(�f(�fT�f.���f�f.������,�f��A��*��d$�YvcL��f(��2����Y�c�D,d$0�~����D,�Mc�O�l-A����_L������H����L�l$@���tH�{(L�l$@��+L���<���I�ƨ�i
H��8H�D$@�5wA��L���+L������I�Ƌ%�E���������T$f�H��f.���	��	�n��A��L�����H���������
L�{E���������D$f��ZC1��@A���&L�l$@M���DH�5��!L��H�D$@K�qH����
L���?���L��L���%I��H�D$@K�q����H������H��A��E�����Rm��A��L���W��H���V�����	��L�sf���ZCA��H���D$�ʻ��H��E1�E1�AU�D$1�D��L��H������[]����������4	I����A����I��4�8�������H,�f���5�`fU�f��H*�f(����fT��\�f(�fV�f.��K���H�|$8�\$蟷��L�- �!�\$�D$M��u!�H�=�W趼���\$H���!I���D$8�\$���1�1�L��H��趸��f���`�\$�YD$I���,��*��|$���������L�s(E���H������D�c�n���f�L�l$@��<L��H�D$@L���-���H�������H�5M�!H����	1�1�L������H�5)�!L��H�D$@K�qI�ĺH����
L���ܷ���%L��L��I��H�D$@K�q軷��H��賻��H�5��!A��H����	L��1�1�A��葷��H��I��E���{�����j��A���	A��$��h���L��L���+H�D$@A��%��B���I���;���f.�fWX_A�������D�|$H�5�!A��fW=0_�|$H����L��1�1����I��L���:��H���k����L���@I��L��H�L$@�+H�#\=�.���L��M��H��I��?L��N�4"�I��L)�M)�Mi�%�H�D�H��H�D$@�q���M)�I��M��$��~������tH�����DcE���gA��Q�G����T$�X\]A��Q�T$�'���f�L�|$@���t��M	H�{H�L$@��+���I��E����L���1��H��������>����K ���+�ƒ����T$�f.����7L�l$@��<L��H�D$@L���d����D$H����H�D$@K�qH�5;�!H���L��L���*����%L��L��I��H�D$@K�q�	���H�5��!H�D$@I��H����
L��L���ݴ��H���ո��L��L���%H�D$ �D$H�D$@讴���*L��H�D$@�H��萴��H�5q�!H�D$@I��H���f
L��L��L�D$�_���H���W���L�D$L���%H�D$(A��H�D$@L���,���L���*H�D$@�5wH�������|$�H�D$��H�|$�T��H���]���Y
H�C(H�D$E����
H���(��D�sD�D$H��E�����f���D$L�����H��� �����	L�kE���:����A��f��ZCH���D$�r���H��E��D��AWL��H��jjjjjj�D$XL�D$H�T$P���H��@������‰��������T$���n������f��ZC����[ H���D$���H��A��M��L$D��L��H��QD��jjjjjj�D$H�&��H��@�%���DL�|$@���t���H�{�L��+�o���I�Ƌ����f���ZCA�Ņ�������SD�K H���D$L�{(�[�T$D�L$�3���H��M��L��AU�T$ H�ljу�?Q���������?Q��RD��jjj�D$XD�L$H�_��H��@�^���fD�SD�K H���D$L�{(�[�T$D�L$軳��H��M��L��AV�T$ H�ljу�?Q���������?Q��RD��jjj�D$XD�L$H����H��@���fD�d��A���A��$��p�L��H�L$@��+H�D$@A��%�����I���A�fD�Sd��f�f���*��XD$f/���f/�X���D,��	����L���<H��H�D$@誰��H���y���H�5
�!L��L��H�D$@�5w聰��H���u�����L���3���H��H�a�!��@L��蘲���D$�-����L$f.�������/����f����L�s������`L�{�����A�E��������@�t$�\5WA�ĀQ�t$�����H�=�L�o���L��H���!H���A����$r��A��H��f��ZC�D$�q���H��E1�E1�AT�D$1�D��L��H������AYAZ��fDL��H�L$@��+�D$H�D$@�
����D$�\�VI������@H=�ɚ;���A��L��H�D$@�5w�-��DH�����D�[ E��������A��A��rA���€����������H���t������H�5x�!H���eL��1�1��c����D$����I�������H�=�M����H��H�e�!�����H�=M���H��H�%�!�����H�=_M�ϱ��H��H��!�P���L��H�L$@��-�D$H�D$@�ʭ���D$�X�UI������@L��H�L$@��-H�D$@A��%�艭��I����L��L���-H�D$@A��%��[���I���T�H���D$�2���D$�N����H������f��ZC���$���1��(���fD�L���K����:�fD�H�=J诰��L��H���!H������H������.���H��������H��������H���x������a���L�|$@���t��3H�{L���+�P���I��E��uYH�|$���H��tJ��������S ����A��A���A�����f��ZC��|D�c �����A��A���A����u��`����$_��D$� �|$$�����L��L���+H�D$@螫���l$%�I�����H�D$�H�D$@��tH�{(L���+�d���H�D$���H���H=�ɚ;~)H�D$@�5wA��L���-H�|$�"���H�D$�%�E���)���A����0���H�5��!H���&L��1�1����D�t$(H�5��!I�NjD$ A��؉D$H����H�|$1�1�豪��H�D$���H�|$L���<H�D$@自��H����H�5��!H�|$L��H�D$@�5w�\���H���6��������H�=nG�
���H��H�#�!�A����H�=NG���H��H��!���H�=.GH�D$�ȭ��L�D$H��H���!�p�������E��xbA��Q�����D$A��Q���A��L��H�D$@�5w�+�n�����RL�k�<���H�D$E�������뙃l$A�ƀQ���$r��A��H��f��ZC�D$�U���H��L��E1�AT�D$H��E1��T$ 1��b���^_��H���s���Ds�.����H�=YH�ɬ��H��H���!�{����H�=9H詬��H��H���!�����H�=H艬��H��H���!���L��L���-H�D$@茨���D$%�I�����H���D$�^���D$�k���H���K���f��ZC���H������H���(�����H��������H������{ �%����A��A��rA���������������H��������������0����AWAVAUI��ATI��US��H��dH�%(H��$�1�H�D$PH�l$HH��$�H�D$XH��$�H�D$`H��$�H�D$hH��$�H�D$pH��$�H�D$xH��$�H��$�H��$�H��$�� ���HDŽ$��������
1�H��$�H��1�H�x@�&�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9���H��uK�D$$����H�
KL��Hc�H�>����S������lH��$��\���fDH��$��;����f��N�$H�|$xH�t$$�2������
H�l$pH�5�EH�������@����I��A����	������H��H���H��t6@��t0�E����
�L���	H���0������H�5q�!HDŽ$�H���5
L��$��H��L��茥���%L��H��I��HDŽ$��h���H�5�!HDŽ$��H��$�H����	L��H���4���H��$�L�����H��$��D$�s���H����f��*�f/2�!�H��$�����%�LA��E1��D$�D$�$$�L�|$HH�55FL�����H��$�H����L��H�T$LRH�T$PRH�T$HR�D$ D��L�L$LL�D$H��H�� ���#
�T$�t$H�L$4D��L�L$<L�D$8�F�������	�L$4���!�t$8i��|$<D�L$$�T$@Dk�<D��D)���=Q�����H��A�j	WL��VQ1�jjj�D$@H��$��>�H��@H��H������H���VH��H��$�dH3%(��	H��[]A\A]A^A_�f.��(K�D$E1�A��D$��$DH�\$PH�5�AH�����H��������m���D�=�J�D$E1��D$�<$L�t$XH�5>AL���L��L��H��$��,��H�����H��$�A����H���k�������H��$��U���D�5HJ�D$��D$�4$L�t$`H�5�?L������D��A���M��A���������lL��H���H��t7A��t1A�����
������L���a������f�H�5y�!HDŽ$�H���tL��$��L��L��輡���%L��L���I��HDŽ$�蘡��H�5�!HDŽ$�1H��$�H����L��H���d���H��$�L���D��H��$�A����H���K������QH��$��5���D�-�H�D$��,$L�|$hH�5p@L���b��D��A���&M��A���������<L��H���H��t/A��t)A�����
������L���������H�5)�!HDŽ$�H����L��$��L��L���\����%L��L���I��HDŽ$��8���H�5��!HDŽ$�AH��$�H���L��H������H��$�L������H��$��D$�C�H���l�������H��$��V���@�%xG�$$�r���fDH��$��;���f.�f(��$z2fT�Gf.G�#����Gf/�wf/G����H�=1=1��\����5G�4$���f.��-�FE1���D$A�I��1���,$�D$�X���H�H���W���M����H�5�!H����L��1�1��ž��I��HDŽ$�M�����H�H������M����H�56�!H���}H��1�1��y���H��HDŽ$�I���6���f����m����H��H���E��H�����D���?���L���w����D$�����L$f.������������H��$�H���+�D$4HDŽ$��ҝ���L$4H�����fD���'���L������D$蔚���L$f.�������������f�L��H�������A�����
�R���H��tA�����
t#@H�5��!H���XL��1�1��4���I��HDŽ$�M�����D�����fDL��H���k���A�����
�B���H������A�����
�����������������H�������D$蜙���L$f.����������������H�=�9�O���H��H���!H��$�����H�=�9����H��H���!�l���H��H���s����E����
�C���H��������E����
�w��������H�=9迟��H��H�}�!H��$�������H�=�8菟��H��H�U�!�<���H�=�9�D$$謘���[����H�=�8�V���H��H�,�!H��$��+����H�=�8�.���H��H��!���H�H���R���M�����L��H������D�H�=9���H��H���!�:����H�=�8�Ǟ��H��H���!�c����H�=�8觞��H��H�u�!���L�������D$襗���L$f.�������O������f.�L���؜���D$�m����L$f.��������������f�H��訜���D$�=����L$f.��}�������r�H�={�!H�5C9���H��$�t
H��$��כ���1���虛��H��H������L��H�����H�=*�!H�589螖�����f�AWAVI��H�5��!AUATI��US��H��H��dH�%(H��$�1��������H��H�D$PL�l$HH��$�H�D$XH��$�H�D$`H��$�H�D$hH��$�H�D$pH��$�H�D$xH��$�H��$�L��$�H��$����HDŽ$���������E1�H��$�L��1�H�p@�%�H��t
Hc�I�<�H�:��H��H9�tH�9��H��t�H��H�H9�u�9��rM��u,�D$$���KH�
8>��Hc�H�>���H��$��#�����������$L��$��L���fD�
�?�$H�|$xH�t$$�d$������
L�l$pH�5^7L���h��D��A����	M��A��������rL��H���H��t5A��t/A�E����
�R	���L�������#	fDH�5A�!HDŽ$�H����L��$��L��L���\����%L��L��I��HDŽ$��8���H�5��!HDŽ$��H��$�H���GL��H������H��$�L�����H��$��D$�C�H����f��*�f/�!�L��$�����h>�D$A�A��D$�D$�$�H�\$PH�5�7�D$H������H���F���L�t$HH�5�7��L������D$f.�=�>�,$�l$f�f/$�BH��$�D����L��H��H�D$LPH�D$PPH�D$HP�D$(L�L$LL�D$H�g���H�� �����T$�t$H�L$4L�L$<�|$L�D$8軩�����q�T$4����	kD$8<�\$@i��D$<+D$$�W=Q�����H��$��]��H�E�uH������	
�D$$�]f��L���E�Z\$�E �D$(H�E(�E�D$,�T$0�]����	ЋT$4D$<��	ЋT$8�E���	ЉE�B�H���H��$�dH3%(L����H��[]A\A]A^A_�D�%`<�D$A��D$�D$�$$DL�|$XH�5�5L������L��H��$����H���<���H��$�A����H��u���:L��$��$fT)<���@�=�;�D$�<$A�L�|$hH�5_3L���Q��D��A���KM��A���������+
L��H���H��t.A��t(A�����
������L��������H�5�!HDŽ$�H���L��$��L��L���L����%L��L���H�D$HDŽ$��&���H�5��!HDŽ$�AH��$�H���rL��H����H��$�H�|$�н��H��$��D$�/�H��uU���
L��$��B��-h:�,$���fD�P:�D$A��D$�$L�|$`H�5�/L������D��A���M��A���������{L��H���H��t.A��t(A�����
�����L���h������H�5��!HDŽ$�H����L��$��L��L���̑���%L��L���H�D$HDŽ$�覑��H�5'�!HDŽ$�1H��$�H���"L��H���r���H��$�H�|$�P���H��$��D$��H����������L��$����L�t$HH�5�2A��A�L������
�8�D$�D$�D$�$A����L��H�H=-�vH=����,$�
��!�l$�$���f�H��$��3���f.�f(��$z2fT�8f.8�K����8f/�wf/58�/���H�=).1��T����-�7�,$����f��%�7�D$A���D$A�I��1���D$�d$�="�!f��<$f/$����fD��7H�T$0H��$�L���#��|$0H�L$4��L�D$8D��������a�T$�t$H�L$<L�L$D�|$L�D$@胣�����9�|$<�]H��$��S���H�E�uH��������D$$�Ef�L��H�E(�Zt$�E �D$0�u�E�D$4�T$8����	ЋT$<D$D��	ЋT$@H�E���	ЉE�:�H�������L��L������I�����H�H���1���M����H�5I�!H���xL��1�1�茎��I��HDŽ$�L�|$���H�H������M����H�5��!H���ML��1�1��A���I��HDŽ$�M���.���f.�������������L���O����D$����L$f.����������f����G���L�������D$褊���L$f.��$����������f�L��H�������A�����
�[���H��tA�����
tH�5�!H���tL��1�1��H���I��HDŽ$�L�|$�����H��$���<L��HDŽ$�����H�����,$�=�!�l$�<$���@L��H���K���A�����
�#���H������A�����
���������������L���׎���D$�l����L$f.������������H�=t)����H��H���!H��$������H�=P)���H��H���!�,����L��H��$��+�D$4HDŽ$�����T$4I���@���fDL��H���3�A�E����
��H���M���A�E����
�=����W���D�H�=�(�O���H��H�
�!H��$��f�����H�=�(����H��H���!����H��L���������<$�|$�����$�%K�!�\$�$$���L��H��$��+�D$<HDŽ$��Պ��I���m����H�=�'茎��H��H�b�!H��$���H�=�'�d���H��H�B�!��H�=�(�D$$聇���`�H��L�����������$�\$�Z���H�H���?���M������L��H�����f.��H�=(�ߍ��H��H���!�h����H�=�'迍��H��H���!����H�=�'蟍��H��H�m�!�l���L�������D$蝆���L$f.�������3������f�L���؋���D$�m����L$f.������������f�L��訋���D$�=����L$f.����������H�={�!H�5C(���H��$�t
H��$��׊���1���虊���$���H�==�!H�5K(1�诅��H�ع!H�5N(H�81�藅��L��H������L��H����H�=��!H�5(�l���ff.����UH��S��H��H������H��H���H��[]��fD��AWAVAUI��ATI��US��H���dH�%(H��$�1�H�D$HH�l$@H��$�H�D$PH��$�H�D$XH��$�H�D$`H��$�H�D$hH��$�H�D$pH��$�H��$�谇��HDŽ$��������1�H��$�H��1�H�x8�&�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9���H��uK�D$$����H�
#-��Hc�H�>���������iH��$��\���fDH��$��ˈ���f���.�\$H�|$hH�t$$�#������	H�l$`H�5&H���'�����@����I��A����������
H��H���H��t5@��t/�E����
�I���3H��迈�����H�5�!HDŽ$�H���J	L��$��H��L�������%L��H��I��HDŽ$����H�5��!HDŽ$��H�D$xH����L���H���Dž��H�D$xL��誰��H�|$x�D$���H���f��*�f/��!�
H�l$x��A��E1�E1��*-�D$�\$@H�\$@H�5�&H��贴��H�L$(L�L$<D��H���D$H��$�L�D$8�������	�T$H�L$,D��D��L�L$4L�D$0�������b	�L$,����t$0i��|$4D�L$$�T$8Dk�<D��D)���=Q�����H��A�j	WL��VQ1�jjj�D$HH��$����H��@H��H������H����H��H��$�dH3%(��H���[]A\A]A^A_�f.��=�+E1�E1��D$�|$�L�|$HH�5Q"L���d���L��H�t$x�G�H���Ϯ��H�|$xA���2��H���q������LH�l$x�^���fD�-h+�D$��l$L�t$XH�5�"L����D��A���/M��A���������KL��H���H��t.A��t(A�����
������L��舅����VH�5��!HDŽ$�H����L��$��L��L������%L��L���I��HDŽ$��Ȃ��H�5Y�!HDŽ$�AH�D$xH���7L���H��藂��H�D$xL���z���H�|$xA������H��uN����H�l$x�>��%*�d$���D�5*�D$E1���t$L�l$PH�5NL��膱��D��A����M��A����������L��H���H��t;A��t5A�E����
�@����L�������tH�H���H�51�!HDŽ$�H����L��$��L��L���t����%L��L��H�D$HDŽ$��N���H�5Ϻ!HDŽ$�1H�D$xH���5L���H������H�D$xH�|$���H�|$xA���a��H�������{H�l$x����DH�|$p�v~��f.�f(��D$z2fT�(f.N(�����H(f/�wf/B(�����H�=k1��}���->(�l$����%((E1�E1�A��D$�H��1���d$���H�H�����M����H�5ȹ!H���wH��1�1�����H��H�D$xI���5�������=����H��H������H���g���D������L�������D$�|���L$f.������M���8H�5.�!H����L��1�1��q��I��H�D$xL�l$�C������/���L��藁���D$�,|���L$f.������i�����L��H���k���A�E����
�6���H���m���A�E����
�]����w���DH��$�H���+�D$,HDŽ$��~���L$,H������fD�����fDL��H���c���A�����
�;���H��tA�����
tH�5�!H����L��1�1��H~��I��H�D$xM�����������H���s����D$�{���L$f.�������������D�H�=跁��H��H�e�!H�D$x����H�=�菁��H��H�E�!�$���H��H���S����E����
�$���H���d����E����
�U����o�����H�=��/���H��H��!H�D$x����H�=h����H��H�Ͷ!�$���H�=P�D$$�$z���D����H�=#�΀��H��H���!H�D$x�����H�=
詀��H��H���!���H�H�������M���P���L��H���4�����H�=��_���H��H�-�!�i����H�=k�?���H��H�
�!����H�=K����H��H��!���L���~���D$�y���L$f.��u���������j���f�L���X~���D$��x���L$f.��������������f�H���(~���D$�x���L$f.��m���������b���H��$�t
H��$��j}���1����,}��H�=պ!H�5��Ix���y��H�=��!H�5��1x��H��H�����L��H���F���f���AWAVAUI��ATI��US��H���dH�%(H��$�1�H�D$@H�l$8H��$�H�D$HH��$�H�D$PH��$�H�D$XH��$�H�D$`H��$�H��$��z��H�D$p��������1�H��$�H��1�H�x0�&�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9��H��uC�D$$���:H�
3 ��Hc�H�>�����|������
H�t$p�_����H�|$p��{���@��!�\$H�|$XH�t$$�#�����k	H�l$PH�5H���'�����@���I��A���^�����2
H��H���H��t5@��t/�E����
������H���{������H�D$xH�5��!H����L�t$x�H��L���"y���%L��H��I��H�D$x�y��H�5��!H�D$x�H�D$hH���3L��H����x��H�D$hL��趣��H�|$hA�����H���@f��*�f/ط!��	H�l$h���=H E1�E1���D$�|$�L�t$8H�5�L���ħ��L��H�t$h��H�|$hI�����H��u���	H�l$h�t$H�L$(D��D��L�L$0L�D$,�������	�|$(��H�T$4H�t$pL�������t$,�L$(�|$0D�L$$i��T$4Dk�<D��D)��7=Q�����H��A�j	WL��VQ1�jjj�D$HH��$����H��@H��H������H����H��H��$�dH3%(�kH���[]A\A]A^A_�f��5��D$E1��t$L�|$@H�56L���n���D��A����M��A���4�����L��H���H��t;A��t5A�����
�����UL���y���tH�H���n@H�D$xH�5�!H���L�t$x�L��L���bv���%L��L���H�D$H�D$x�?v��H�5��!H�D$x1H�D$hH����L��H���v��H�D$hH�|$��H�|$hA���U��H�����������H�l$h�q���f��-�E1��l$L�|$HH�5$L������D��A����M��A���\������L��H���H��t3A��t-A�����
�^���mL���w�����DH�D$xH�5Ю!H���OL�t$x�L��L���u���%L��L���H�D$H�D$x��t��H�5��!H�D$xAH�D$hH����L��H���t��H�D$hH�|$袟��H�|$h�D$���H�����������H�l$h�v�����%8�d$���DH�|$`�q��f.�f(��D$z2fTVf.��V�����f/�wf/��:���H�=�1��q���%��d$������E1�E1���D$A��\$���H�H���o���M����H�5W�!H����H��1�1��s��H��H�D$hI�����fD�������H��H���e���H�����D�������L���u���D$�,p���L$f.�����������M���1H�5��!H���
L��1�1��s��I��H�D$hL�|$�����������L���'u���D$�o���L$f.��|����|�q����L��H������A�����
����H���n���A�����
�_����y��������fDH��H�L$x��+�D$(H�D$x�8r��H���:���L��H�����A�����
�����H��tA�����
t#@H�5��!H���L��1�1���q��I��H�D$hL�|$����fD���o���H���t���D$�n���L$f.��L��������A�����H�=��Ou��H��H���!H�D$h�J����H�=��'u��H��H�ݪ!�����H��H������E����
�����H���e����E����
�V����p�����H�=�t��H��H�}�!H�D$h�
����H�=�
�t��H��H�]�!�����H�=�
�ot��H��H�E�!H�D$h����H�=�
�Gt��H��H�%�!�1����H�=��D$$�\m���|���H�H�������M���1���L��H������D�H�=��s��H��H���!�Z����H�=�
�s��H��H���!�����H�=�
�s��H��H�m�!����L���r���D$�l���L$f.��
����z�������f�L����q���D$�ml���L$f.��-����g����"���f�H���q���D$�=l���L$f.������������H�|$pt
H�|$p��p���1����p��H�=[�!H�5i��k��H�=H�!H�5�k��L��H���L����m��H��H�����ff.�@��ATI��UH�����SL��H��H�t$�q����u�G�H����n��H��H���}���H��H�t$H��譢��H���er����y�H��L��[]A\�D�l��H���p��H�L$L��E1��H���;q��H��I��[]L��A\�ff.����UH��SH��H��H�t$�q����u�@H���Hn��H�߾�ۮ��H��H�t$H������H����q����~�H��H��[]�D�kk��H���p��H�L$H��E1��H���p��H��H��[H��]�ff.���AVAUI��ATA��USH��H��dH�%(H�D$1��"m��H�$����E����M�uA���1�I�mA����H�����p�����H�$@���KH�5\�!�H��H����l���H��H���ln�����I����L���m��L��H��蕭��I��L��L���Ǡ��H���p����y�H��H�L$dH3%(��H��[]A\A]A^��o��E����H�$M�uA������H��t�H���m��A�������6o�����t7I���L���`l��L��H�����I��L��L���'���H����o����~��[����i��H���9n��E1�L��D��H��H����n���8���u�H���l��H���k����@H��H�H���t������i��H�<$tH���Bm����D���m����ATI��UH��S��H��dH�%(H�D$1��k��H�$��t[��xGu-A�L��H������H�L$dH3%(uzH��[]A\�M�$$��t�H�<$tH���l���1����rl��f��m����x�H�$t!M�$$��u�H��t�H���{l���f�H���r���H���_l���e����h��D��H��1�1�������AWAVI��H�5��!AUA��H��ATI��USH��dH�%(H��$�1��i������H��H�D$0H�\$(H�D$hH�D$8H�D$pH�D$@H�\$`H�D$x��i��H�D$P���&E���?E1�H�D$`H��1�H�p �(f.�H��t
Hc�I�<�H�:��H��H9�tH�A9��H��t�H��H�H9�u�A9���M����A���t~zA���A����H�|$@��f��f.�z6f(�fT
Jf.
����
�f/�wf/���H�=�1��f�����DA���VH�\$(H�5k
A�A�H���6����
~���H�L$X��<H���$H�D$X�h�����!�$H��u���!f��f/��H�L$PH��f(�D��H�D$,D��H��PH�D$0PH�D$4PL�L$8L�D$4�L$ ���H�� �$����H�\$P���|H�]�D$ f��L���Z��]�E�D$�E�D$�T$�E����	ЉE�+���H���H��$�dH3%(L���<H�Ę[]A\A]A^A_�fD�
HA�A�A�H��1�����!f��f/���f��H�T$H�t$PH���$衻���|$D��D��H�L$ L�D$$�x����$���tH�\$P���uI��I���xH�]M�����D$f��L���Z��m�E�D$ �T$$H�E����	ЉE����H�����L��L��蘧��I������I��I����H�]M���n���H��L���$�d���$�T���@�H�\$8H�5��$H��觕��H�t$HH�����H������H�|$HA���u����$H����f���A*�f/
.�!�Df(�fT=�
L�t$H�|$�w�H�|$P�g���K�����{h��L�D$PE������M��t
H�|$P�ng���1�D���/g���H�]����f(�fT5|
A��t$H�\$0H�5��$H��跔��H���/���H�\$(H�5�A��H��蘔���d$�$f.%�f(�������H���fD������o���H���$�Eg���$��U���H�H���H���H���3h���$�H��H�E�����I��I���$���H��H�H=-����H=���������D������z���H���$�f���$��`���H�H���S���H���g���$�H��H�E�D���I��I���/���H��L���$�a���$����fDH�\$0H�5gA�A�H���H���H�����H�\$(H�5UA��H���)����
q���H�=��!H�51��g`��H�=�!H�5��T`��H�}�!H�5H�81��<`���a�����UH��� S��H��H���!H����f��H���H�H H��H�H�AH�AdTJ�AH��[]������AWAVAUI��ATI��U��SH��xdH�%(H�D$h1�H�D$0H�\$(H�D$XH�D$8H�\$PH�D$`�b��H�D$H�������w1�H�D$PH��1�H�x�'�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9��H�����������5����%�	A�A�H��1���d$H�L$H�T$HD��H���D$L�L$$L�D$ 趸������L��H�l$H� H���!D�t$ �`e��I��H�X @��tcH�kD�sf��L��H�C�ZL$��K�ֲ��H����H�t$hdH34%(L���TH��x[]A\A]A^A_��I��I��t�E������H�kM��t�H��L����^���p�����-�A�A��l$H��!H�\$(H�0H���gb��H���������H�đ!H�NH�5�H�81��|]��@L��L��蝡��I���(���DH�|$H�Vb�����O����55�t$H�\$0H�5��H���ˏ��H�t$@H�����H���6���H�|$@A��虱��H����f��*�f/X�!�L�l$@�"�����b������H�t$H�a���f�H�|$8�]��f.�f(��D$z2fT�f.^�Q����Xf/�wf/R�5���H�={�1��\���=N�|$����A����H����a����=���H�H���0���H���b��H��H�C������I��I������H�|$Ht
H�|$H��`���1����`��H�=^�!H�5&���[���-]��H�=F�!H�5T��[��f.���AWAVAUI��ATI��US��H��8dH�%(H�D$(1��^��H�D$ ���x����1������A�H���"��������L���\��f.�f(��D$�<fTTf.�w*��f/��f/��
f.�H�1�!H��H�0�_��H������_H��H�t$�E��H�|$H���8���H���gf��*�f/��!�EL�l$H��H�T$H�t$ 袳��L��H�l$ H�ӊ!� D�t$�4a��I��H�X @����I��I��t�E�����lH�kM����D�sf��L��H�C�ZL$��K腮��H����H�L$(dH3%(L���mH��8[]A\A]A^A_�fDI�m���Z���M�m���S���H�|$ t
H�|$ �^���1����V^��fDH�k�Y�����%XA���d$����f��-8�l$�]���DA����DH�|$ �^������f�L��L���5���I������D��^�����E���H�D$ �{����H�=�1��Y���5��t$����H���G^��������H�H���w���H���:_��H��H�C��m���I��I���X����H��L���MY���J�����Y��H���!H��H�5�H�81��DX��H�=��!H�5��1X�����AWAVAUATUSH��H�5��!H��H�|$8dH�%(H�D$x1��Z��H�\$`H��H��H�D$(����H��H�D$p��H�H�DH�D$h�b�H�T$p�*H��H�T$0H�Ǻ��Z��H�L$h��+H���Z��H�L$`��+H���Z��H�è�JH��H���H��H��?H��������*H��H�H)�H�H��H�H��H��H�t$H)��A�D$�a�H�D$pH�5��!H����L�t$0�H��L���"Z��L��H�߾%H�D$H�D$p�Y��H���]�����D$H�\$(H������A�ŋ����f���ZK�L$ H�D$PL�d$@H�D$L��L�|$HE��L�t$DH�\$XI��H�l$L�f�A��E���\H��M��M��D��SAUUH�L$(�D$@�t$<H�|$0���H�� ��t��t$@H�|$PH���0���H�|$(���H�L$0H�|$X��-H�D$p�Y��H�|$8H������H�T$xdH3%(��H�Ĉ[]A\A]A^A_�D�trH�D$(f���ZP�T$ ���H��������*H��H��H��H��H��?H�H)�H���������H�D�H��H�D$H��H��H��H�RH��H)�H�H����H�|$(�P��H�D$(f���ZP�T$ ����H�=g��\��H��H�l�!��H�=p�!H�58���T���?V��ff.�@��ATI��UH��S��H�� dH�%(H�D$1��W��H�D$������xmuPA��H�L$�*L��H�D$�W��H��H���/���H�T$dH3%(��H�� []A\�f�M�$$��t�H�|$t
H�|$�%Y���1�����X����Y����x�H�D$t(M�$$��u�H���d���H�|$��X���U����H���?���H�|$��X���0����U��ff.���ATI��UH��S��H��dH�%(H�D$1��V��H�$��t[��xGu-A�L��H���4���H�L$dH3%(uzH��[]A\�M�$$��t�H�<$tH���0X���1�����W��f��Y����x�H�$t!M�$$��u�H��t�H���W���f�H���r���H����W���e����5T��D��UH��SH��H��H��H��!H�0�nW��H��tFH�5�!H��tH��1�1��U��H��H��[H��]�P����H�=���oY��H��H�ݎ!��H���!H�5��H�81��KR��ff.���ATI��UH��S��H�� dH�%(H�D$1��'U��H�D$������xmuPA��H�L$�*L��H�D$�
U��H��H�����H�T$dH3%(��H�� []A\�f�M�$$��t�H�|$t
H�|$�V���1����WV����kW����x�H�D$t(M�$$��u�H���d���H�|$�TV���U����H���?���H�|$�5V���0����R��ff.���ATI��UH��S��H��dH�%(H�D$1��T��H�$��t[��xGu-A�L��H������H�L$dH3%(uzH��[]A\�M�$$��t�H�<$tH���U���1����bU��f��{V����x�H�$t!M�$$��u�H��t�H���kU���f�H���r���H���OU���e����Q��D��AWAVAUATUH��SH��H��H��H�5��!dH�%(H�D$1���T��H���@������uJ�؃�����H��H���H�������������
����������ueH�@H�H��H��H9��4H�t?H��诓��H��@H�T$dH3%(H����H��[]A\A]A^A_�f�H������y���H���!H��H�0��S��H���]H�5��!H���(H��1�1��<R��H��H���1���H�����f���u�H���cT��fW;��6T��H��H�����H���K���H�5)!H���AQ��H��H�5!I���/Q��H�Ë����H�CH�$A�E���~I�}I��E1�L��-�Q��L��I������H�߉�����)�A�E���A����aL�$�A�E��
L���-�;Q��I���x��$�~&L��L���+H�$��%��Q��I��E����A��Q~
��A��QA���dL��H���L��L���+H�$�5wA���P��I��L������H���>����E����L���ݡ��H������uH�����t����������H�߾�{T��H�����I�}(������z���L�������m�����N���H������A���H���Xd��D+c�������L�C(�L�$A�E������두L���(d��E�e�O����L��L���-H�$��%��O��I�����D��K��H������L���<L��H�$�[O��H�������H�5��!L��L��H�$�5w�3O��H���~����D�H�=o���R��H��H�=�!�����A�ĀQ�����L����{��H��L���+H�$��N��H���S����Ic�H�|?�Ce��H��L���+H�$�N��H���
���f�Hc��H�|?�R��H��L���+H�$�eN��H������DL���*L��H�$K�q�;N��H�����H=�ɚ;�x���L��L���-H�$�5wA���N��I���O����F}���!L�����ATI��UH��S��H��dH�%(H�D$1��M��H�$��t[��xGu-A�L��H���4���H�L$dH3%(uzH��[]A\�M�$$��t�H�<$tH���@O���1����O��f��P����x�H�$t!M�$$��u�H��t�H���O���f�H���r���H����N���e����EK��D��AWAVAUI��ATI��U��SH��dH�%(H��$�1�H�D$8H�\$0H�D$hH�D$@H�D$pH�D$HH�\$`H�D$x�L��H�D$X������h1�H�D$`H��1�H�x �'�H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9���H���o���y�����o����H�|$H�I��f.�f(��D$z2fT�f.���D�~�f/�wf/x��(H�=��1���H���=t��|$�f������
O�A��L�=�|!�L$L�l$0I�7L���L��H������7H�L$XH��D���H�D$4L��PH�D$8PH�D$<P�D$(L�L$@L�D$<賥��H�� ���3H��E1�E1�1�j�D$L��T$8H�t$h�2���H��H��XZ�E���H���dH��$�dH3%(H����H�Ę[]A\A]A^A_��h��\$H�\$@H�5��H���y��H�t$PH�����H���iu��H�|$PA���̛��H����L�={!H�l$8I�7H����K��H������IH���#u�������@A���-���I��1���l$���fDA���%���I��1���d$�s���fDH�|$X�K����������5m�A���t$�9�����KL����xCH�t$X���DH��H���m���H�����Df��*�f/��!wIH�\$P���H�|$Xt
H�|$X�K���1�����J��H���H�z!H�5l�H�81���E��H�=N�!H�5\���E��H�K����G��H�=-�!H�5���E�����S�H�=\�H��")��L���H�=E�H��!�hL���H�=0�H���!�PL���H�=&�H�݇!�8L����H���!�L��H���!H��H���!�F��H�=u�!��F��H�!�H�=��H�S�!H��H�=�!H�y!H�0�>L��H�Wy!H�5��H��H�F�!H��K��H�=7�!H� �!H�9y!H�0�qJ��H�5�~!�
�t��H�=	�!H�5Y�H���zK��H�5�}!�
��s��H�=�!H�5-�H���SK��H�5�}!��s��H�=��!H�5�H���,K��H�5%}!��s��H�=��!H�5��H���K��H�=~�!�3*FH�5����J��H�=f�!�
HH�5����J���%�!�I��H�=A�!H�5��H���J�����!�H��H�=�!H�5��H���J��H�=�!H�5Q����lI��H�=��!�����H�Y���H�5q���G��H�=օ!�����H�*���H�5\��G��H�=��!�����H�۫��H�5L��G��H�=��!�����H�����H�5:��pG��H�=y�!�����H�����H�5'��QG��H�=Z�!�H�n���H�5��2G��H�=;�!�H����H�5��G��H�=�!�H��H�5����F��H�=��!�����H���H�5����F��H�=ބ!�����H�r�H�5���F��H�=��!�����H���H�5]��F��H�=��!�����H�$���H�53��xF��H�=��!�����H�u���H�5^��YF��H�=b�!�����H�x��H�5E��:F��H�=C�!�����H��`��H�5'��F��H�=$�!�����H�����H�5��E��H�=�!�����H��\��H�5����E��H�=�!�����H�z���H�5���E��H�=ǃ!�����H�+Y��H�5���E��H�=��!�����H�|���H�5���E��H�=��!�����H��U��H�5���aE��H�=j�!�����H�~���H�5p��BE��H�=K�!�����H�OR��H�5R��#E��H�=,�!�����H�����H�5=��E��H�=
�!�����H�a���H�5'���D��H�=�!�����H�RO��H�5���D��H�=ς!�����H�3O��H�5���D��H�=��!�����H�D���H�5���D��H�=��!�����H�UL��H�5���iD��H�=r�!�����H�F���H�5���JD��H�=S�!�����H��H��H�5���+D��H�=4�!�����H�X��H�5j���C��H�=�!�H��u��H�5V���C��H�=��!1�H�p��H�5���C��H�=ځ!1�H�!p��H�5.��C��H�=��!1�H�����H�5���yC��H�=��!1�H�����H�5���]C��H�=��!1�H�m���H�5*�AC��H�=j�!1�H�1��H�5���%C��H�=N�!1�H�Ei��H�53��	C��H�=2�!1�H�����H�5����B��H�=�!1�H�ݬ��H�5!���B��H�=��!1�H����H�5���B��H�=ހ!1�H���H�5���B��H�=€!1�H���H�5��}B��H�=��!1�H�-c��H�5���aB��H�=��!1�H��`��H�5z��EB��H�=n�!1�H�5���H�5X��)B��H�=R�!1�H�9���H�5=��
B��H�=6�!1�H�����H�5����A��H�=�!1�H���H�5����A��H�=�!1�H�5���H�5t��A��H�=�!1�H�����H�5a��A��H�=�!1�H����H�5P��A��H�=�!1�H�1���H�5>��eA��H�=�!1�H�����H�5*��IA��H�=r!1�H��T��H�52��@��H�=V!1�H��T��H�5��@��H�=:!1�H��T��H�5@��u@��H�=!1�H��T��H�5���Y@��H�=!1�H��T��H�5���=@��H�=�~!1�H����H�5���@��H�=�~!1�H�Ѱ��H�5x��@��H�=�~!1�H�5��H�5x��i@��H�=�~!1�H�����H�5O��M@��H�=v~!�����H�
�H�5,��.@��H�=W~!1�H���H�5��@��H�=;~!1�H���H�5��?��H�=~!1�H�V�H�5����?��H�=~!1�H��H�5���?��H�=�}!�H�{��H�5���?��H�=�}!�H���H�5���?��H�=�}!�����H����H�5���a?��H�=�}!�����H�.�H�5t��B?��H�=k}!1�H����H�5a��&?��H�=O}!1�H�f��H�5J��
?��H�=3}!�H�g�H�50���>��H�=}!�H���H�5���>��H�=�|!�����H���H�5���>��H�=�|!�����H��H�5���>��H�=�|!�����H�K�H�5���o>��H�=�|!�����H���H�5���P>��H�=y|!�����H����H�5���1>��H�=Z|!�H����H�5���>��H�=;|!�H���H�5r���=��H�=|!�H��p��H�5F���=��H�=�{!�H�Qo��H�5;��=��H�=�{!�H��v��H�5 ��=��H�=�{!1�H����H�5	��z=��H�=�{!1�H�*t��H�5���^=��H�=�{!1�H�k��H�5���B=��H�=k{!�����H�s��H�5���#=��H�=L{!1�H�t��H�5���=��H�=0{!1�H��s��H�5����<��H�={!1�H��s��H�5���<��H�=�z!1�H��s��H�5��<��H�=�z!1�H��s��H�5���<��H�=�z!1�H��s��H�5���{<��H�=�z!1�H��s��H�5���_<��H�=�z!1�H����H�5���C<��H�=lz!1�H�S���H�5���'<��H�=Pz!1�H����H�5���<��H�=4z!�H��H�5����;��H�=z!�H�Y�H�5����;��H�5�y!H�=����>��H�5���H��H��y!�D=��H�=�y!�����H�!���H�5���;��H�=�y!�����H���H�5R��;��H�=�y!�����H�����H�5-��g;��H�=hy!�����H�t���H�5T��H;��H�=Iy!�����H����H�5���);��H�*y!��Z����ƒ�����H����<��H�xH�5���<��H�=�x!�����H�/���H�5x���:��H�=�x!�����H�pl��H�5���:��H�=�x!�����H��9��H�5���:��H�=�x!�����H��5��H�5|��f:��H�=gx!�����H��2��H�5d��G:��H�=Hx!�����H�$/��H�5N��(:��H�=)x!�����H��+��H�58��	:��H�=
x!�����H�F(��H�5$���9��H�=�w!�����H�'(��H�5���9��H�=�w!�����H��$��H�5���9��H�=�w!�����H�I!��H�5���9��H�=�w!1�H�}��H�5V��Q9��H�=rw!1�H�a��H�5?��59��H�=Vw!1�H�E��H�5d��9��H�=:w!1�H�)��H�5���8��H�=w!1�H�
��H�5���8��H�=w!1�H��M��H�5����8��H�=�v!1�H�uM��H�5���8��H�=�v!1�H�y���H�5r��8��H�=�v!1�H�ݳ��H�5���q8��H�=�v!�����H����H�5;��R8��H�=sv!1�H�ro��H�5���68��H�=Wv!�����H�#n��H�5���8��H�=8v!�����H����H�55��7��H�=v!�����H���H�5(���7��H�=�u!�����H�6���H�5��7��H�=�u!�����H����H�5��7��H��g!1�H�;K��H�5s�H�;�|7��H�;1�H�0�H�5`��d7��H�;1�H�x���H�5P��L7��H�=uu!1�H����H�5$��07��H�=Yu!1�H����H�5��7��H�==u!1�H�d��H�5���6��H�=u!1�H�Hp��H�5����6��H�=�t!1�H�,]��H�5���6��H�=�t!1�[H��~��H�5���6��H���������H��t.H�������H��f!H�8���fDH��f!H�8����H�Yf!H�8����H�1f!H�8�s����H�If!H�8�c����H�yf!H�8�S����AVL�wAUI��ATUH�-�
SL�'1�A�� fDL��M��tI�u�H���5����t��H����u׉�[]A\A]A^�@AVL�wAUI��ATUH�-;
SL�'1�A�� fDL��M��tI�u�H����<5����tH����u׻
��[]A\A]A^�ff.�@AWAVAUI��ATI��H��USH��H���!2��Lc�I9�}Y��L)���7��L�8A�D�A�DG t>L�L��L��H���4����u)H��I����F�H��A�DG t��L9�u��fD1�H����[]A\A]A^A_�ff.�f�H9�s?UH��SH��H)�H���W7��H��H�1��DH��H9�t�T�DQu�H��[]�1��f�AWL�AVAUATI��U1�S1�H��L�/M��I��A�� A���DL9�}k��6��H�L���(�JH�ȉك���Eىك���E�<-t3<.t'</u��H��M��t�I;l$} �6��H�I�D$뱐��������H����[]A\A]A^A_�ff.�@ATI��UH��SH��H��H�5�t!dH�%(H�D$1�H�<$H��t?H��H���/2��H��1�H��t
L��ոH�T$dH3%(u'H��[]A\Ð�H�=8��5��H��H��t!��0��ff.���H�=Eu!SH��H��t�'4��H�ߺH����1���[�H�=����_5��H��H�u!����UH��H���SH����.��H���n���H�=�w!Hc�H�\H��t"�3��H��H��H���g1��H���[]�H�=|����4��H��H�Uw!�ff.���UH��H���SH���F.��H���N���H�=v!Hc�H�\H��t"�53��H��H��H����0��H���[]�H�=����g4��H��H��u!�ff.�AWI��AVAUM��ATI��USH��H��8H�5�v!H�$dH�%(H�D$(1�H�|$H���H�l$H�ߺH���(0��H��1�H����H�D$H�5Av!H���pH��H����/��H�5v!H�D$I��H���$H��H����/��L�t$���H�H��A����M��I�H�@L)�H��H�DH�5�u!H�D$L�|$ H��tpH��L���`/��H�4$H��A�ոH�L$(dH3%(��H��8[]A\A]A^A_�fD�H�=`���2��H��H�Mu!������H�=L��2��H��H�
u!�p���L��H�T$�S0��H�T$I���%���fDH���80��H������H�=���o2��H��H��t!����H�=���O2��H��H��t!�p���H����*�������,��ff.���AVAUATUH��SH��H���H��dH�%(H�D$1��}+��H��I���m+��H��I���]+��H��I���M+��H��I� ��I��A����H��,wH���H�BH�TL��H�$�
1��$*��H���+H���-��H�=@s!I��H������/��L��H��H���-��L��1Ҿ
��)��H�=s!I��H�����/��L��H��H���d-��H��1Ҿ
�)��H�=�r!H��H��tF�/��H��H��H���3-���H�L$dH3%(u~H��[]A\A]A^ÐM�v����H�=����0��H��H�]r!�H�=����o0��H��H�Er!�I���H�=���O0��H��H�-r!���*��ff.���AUATUH��H��SH���H���)��H�޿I���)��H�޿I���)��H��I��uNL��1Ҿ
�(��H�=�q!I��H�����_.��L��H��H���,��H��uSH���[]A\A]�L��1Ҿ
�9(��H�=Rq!I��H�����.��L��H��H����+���x���fDH��1Ҿ
�'��H�=q!H��H��tj��-��H��H��H���+��H���[]A\A]��H�=����.��H��H��p!�,���H�=����.��H��H��p!�Z���H�=S���.��H��H�up!�v�����USH��H���H���&(��1Ҿ
H���7'��H�=8p!H��H��t(�-��H��H��H����*��H���[]�f�H�=����?.��H��H��o!���ATUH��H��SH����'��H�޿I���'��H��I��u<H��1Ҿ
�&��H�=�o!H��H��tV�y,��H��H��H���+*��[�]A\ÐL��1Ҿ
�a&��H�=Zo!I��H��t:�=,��L��H��H����)���DH�=����w-��H��H�o!�H�=����W-��H��H��n!�ff.���ATUH��H��SH����&��H�޿I���&��L��1Ҿ
H���%��H�=�n!I��H��td�+��L��H��H���A)��H��u[�]A\ÐH��1Ҿ
�q%��H�=Rn!H��H��tB�M+��H��H��H���(��[�]A\�DH�=����,��H��H�n!�|���H�=����_,��H��H��m!���ATUH��SH��H�����%��H��I���%��L��1Ҿ
H����$��H�=�m!I��H��tT�*��L��H��H���Q(��H��1Ҿ
�$��H�=[m!H��H��tC�n*��H��H��H��� (��[�]A\�fDH�=j���+��H��H�m!�H�=���+��H��H��l!���USH��H���H����$��1Ҿ
H���#��H�=�l!H��H��t(��)��H��H��H���'��H���[]�f�H�=����*��H��H�el!���USH��H���H���f$��1Ҿ
H���w#��H�=(l!H��H��t(�S)��H��H��H���'��H���[]�f�H�=J���*��H��H��k!���USH��H���H����#��1Ҿ
H���"��H�=�k!H��H��t(��(��H��H��H���&��H���[]�f�H�=9���)��H��H�Mk!���AUATUSH��H���H��dH�%(H�D$1��R#��H�=ci!H��H�����J(��H��H���$��H��t*H�=2i!H�����$(��H��H����#��H����H�=�h!H�����'��H��H���#��H��t&H�=�h!H��tE��'��H��H���#��H���SH�L$dH3%(���H��[]A\A]��H�=Q����(��H��H�Uh!�H�=����(��H��H�]h!�/����H�=	���(��H��H�=h!���H�=����(��H��H��g!�����
1�H���!��H�5�g!H�$I��H���vI��L��L���c$��H�������H�5�g!H�$?H���L��L���2$��H�������H�=zg!H���Y�&��L��H��H���6$���b�����
H��1��q ��H�5*g!H�$H��H����I��H��L����#��H���g���H�5�f!H�$1H��tFL��H���#��H���:���H�=�f!H������%��H��H��H���#������D�H�=���'��H��H�}f!��H�=���&��H��H��f!�����H�=����&��H��H�Ef!�*����H�=���&��H��H�Mf!�j���H�=	���&��H��H��e!�C���H�=����&��H��H��e!����� ��ff.�USH��H��dH�%(H�D$1�H��� ugH����H�5	e!H�DH�$H��tvH����A"��1Ҿ
H��H�����H��H���T&��H�T$dH3%(uWH��[]�DH�@H�H�H��y��M��H�5�d!H�$H��u��H�=-��%��H��H�jd!�j����������AUI��ATUH��S�H��XdH�%(H�D$H1�I��@��L������I��H��H��	u�H�|$�n�H�=�a!Hc�H�\H�����#��H��H��H���c!��H�|$1Ҿ
���H�=�a!H��H�����z#��H��H��H���,!��H�|$�b�H�={a!Hc�H�\H���J�E#��H��H��H��� ��H�|$ 1Ҿ
�6��H�=7a!H��H�����#��H��H��H��� ��H�|$(1Ҿ
���H�=�`!H��H������"��H��H��H��� ��H�|$01Ҿ
����H�=�`!H��H���E�"��H��H��H���R ��H�|$81Ҿ
���H�=z`!H��H�����i"��H��H��H��� ��H�=L`!H�\$@H�����A"��H��H��H������H�=`!H��tg�""���H��H�������H�L$HdH3%(�9H��X[]A\A]�fDH�=̽��7#��H��H��_!�����H�=Y���#��H��H��_!�y���H�=�����"��H��H�}_!�:���H�=����"��H��H�e_!��H�=���"��H��H�M_!���H�=����"��H��H�5_!�D���H�=:���o"��H��H�_!���H�=����O"��H��H�_!���H�=i���/"��H��H��^!�A����{��ff.���AUI��ATUH��S�H��XdH�%(H�D$H1�I��@��L���f��I��H��H��u�H�|$��H�=�]!Hc�H�\H���~�A ��H��H��H������H�|$�)�H�=�]!Hc�H�\H���� ��H��H��H�����H�|$1Ҿ
���H�=f]!H��H��������H��H��H�����H�|$ 1Ҿ
����H�=']!H��H���c���H��H��H���P��H�|$(1Ҿ
���H�=�\!H��H����g��H��H��H�����H�|$01Ҿ
�X��H�=�\!H��H�����0��H��H��H������H�|$81Ҿ
�!��H�=j\!H��H��tb���H��H��H������H�L$HdH3%(��H��X[]A\A]�H�=���� ��H��H�=\!�b����H�=�������H��H��[!�H�=������H��H��[!�+���H�=�����H��H��[!����H�=������H��H��[!�}���H�=����o��H��H��[!�&���H�=����O��H��H�m[!�������ff.���AWAVAUATI��H��USH���H��(dH�%(H�D$1����H�޿H���{��H��t&H�=.a!H��H�����m��H��L��H�����H�=GS!�)H�5�`!H�l$H����L�|$H�= S!�L�����H��1�H����H�޿���1Ҿ
H�����H�޿H�D$����I��H���	H�޿���I��H����H�޿���H��H��t_H��� �MH����H�DH�5*`!H�D$H����L�������H��1Ҿ
I���h��L��H���
��H��H�޿�-��H��H����H�=�_!H�������H�T$L��H������I��t#H�=�_!H���E����L��L��H�����I��t#H�=]_!H���<����L��L��H���y���H��t(H�='_!H���.���H��L��H���K���H�L$dH3%(�"H��([]A\A]A^A_�H�|$@���YH�|$������Ⱥ���*�����)R��)���H� �4H����JH�=�^!���<PD�Hc�H�DH�D$H�������[1Ҿ
H������I�������1Ҿ
H������I�����f�H�=������H��H�E^!����H�=I������H��H�
^!�P����H�=8����H��H��]!����H�@H�}H�H��������!�����@��ZH�=������H��H���W��H��O!�����������@H�[������H�=���'��H��H�]]!�<����H�=n�����H��H�%]!���H�=!������H��H��\!���H�=2�����H��H��\!������ff.�USH��H��H�5pY!dH�%(H�D$1�H�$�H��tcH��H��H�����H��u;H�$��H��+H���n��H�T$dH3%(u;H��[]��H�$���fD�H�=ص���H��H��X!��N��ff.���AUI��ATUH��S�H��hdH�%(H�D$X1�L�d$f���L���6��I��H��H��	u�H�|$���H�=V!Hc�H�\H�������H��H��H������H�|$ 1Ҿ
���H�=�U!H��H���?����H��H��H�����H�|$(���H�=�U!Hc�H�\H�������H��H��H���W��H�|$0�
1����H�5OU!H�D$H��H����L�d$�H��L������H��t2H�D$�H�5U!H����L��H�����H���~H�=�T!H���N�	��H��H��H�����H�|$81Ҿ
���H�=�T!H��H��������H��H��H�����H�|$@1Ҿ
����H�=\T!H��H�������H��H��H���M��H�|$H1Ҿ
���H�=T!H��H���I�d��H��H��H�����H�=�S!H�\$PH����<��H��H��H������H�=�S!H��������H��H�������H�L$XdH3%(��H��h[]A\A]�D�H�=��/��H��H��S!�V���H�=E�����H��H�}S!���H�=)������H��H�eS!���H�=d������H��H�MS!�J���H�=������H��H��R!�"���H�=?�����H��H��R!����H�=����o��H��H��R!���H�=����O��H��H��R!�@���H�=����/��H��H�}R!���H�=ڳ����H��H�eR!���H���X���H���r����H�=������H��H�=R!�9����+��ff.�UH��AWAVI��AUI��ATI��SH��H��8D�E�dH�%(H�E�1���H�E�u
H�������H�5�W!H����H��1�1����H��I���UH���KI����I�4$L��� �I�t$M�|$L�L9�vxA��BՈU�����H�u����H�u��U�H�8�@I��L9�tCA��Bը��x�DWt�L9�v(A���+���]L�}�L���Y��I�4�>��H���H�H��� ���{'tH����H����@I��t3I�4$L��� �oA�|$'�CH��H���H���H�����U���t%H�=V!H���>����L��H���Y��I���I�u�� �/H��M�}��M�,7M9�������H��DI��M9���A��DBt�M9���L��L���<��H�xI��H����PH�@H��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u����H�L$H�E�H���H�E�M���(B�)H��1Ҿ
����H�}�I�����H�=�T!H�������L��L��H���3��I����I�4$�� �!H��M�l$��M�d5M9��m���H��DI��M9��QA�E�DBt�M9��<L��L�����H�xI��H����H�@H��H�E�H��H%�H)�H���H��H9���H��H��$���f�H��L�y��L����DI�������I��uhM��H���I����E�����I��I�����D������[���H�5�S!H���<���f��H�=�����H��H��S!����I��L��H�3H��� �XH��H���H���]L��A�I��H���4���H�3H��� �NH��L��L�z��I��L�L9���A��Cը���H�u����H�u�H��I��L9��{A��Cը����DYt�L9��\A���+���mL�}��L���T��I�H���HC�H+M�H�yI��H�����H�AH��H�E�H��H%�H)�H���H��H9�tH��H��$�H9�u���{L�D$H�E�I���H�E�M����C�8L��1Ҿ
����H�}�I���
��H�=R!H���q���L��L��H���6������H�C�8'�[���H�{�P���L��M��I���B���f.���t	H)�H�L�H�L$H�E�H���H�E�M����B�!H��1Ҿ
�!��H�}�I���U
��H�=FQ!H�����
��L��L��H�����H��t#H�=Q!H�����
��H��L��H���i��H�E�dH3%(�xH�e�[A\A]A^A_]��M�|$A�?'��I�t$H�������I��L�����M�}I�EL�I������DM�l$I�D$L�I������L��M��A��������9���fDL�}�I�����L�}�1�I�����f�H�=������H��H�P!��H�sH���'L��L�{I��A�H������f.�H�sL�{����H�=C���
��H��H��O!���H�}�M��H)����I�����f�H��������H9�wIH�qH�E�H��H��H��H�E�H���
��I��M���=���H�u�L��L����	��I���&��������fDH��������H9�w�I�uH�E�H��H��H��H�E�H���:
��H��M������H��L��L���	��H�������H��������H9�w�I�t$H�E�H��H��H��H�E�H������H��M��� ���H��L��L���'	��H���
����H�=2���g��H��H�mN!�o����H�=u���?��H��H�5N!�J���H�=Y�����H��H�
N!����I�t$�D���fDH������H��uVI��t[I��L��A��I���H��~�L�{A�?'u�L��A�I��H�����H)�H�L��w���H)�H�L��l����{'u��=���I��A����������f���AVAUATI��H��USH�������H�޿I������H�޿I�����H�޿H�����L��H�����E1�Hc�H�TH��tH�E t3H�m�EE1����<BA��L��H��L������[�]A\A]A^�H����f���AVAUATI��H��USH����1��H�޿I���!��H�޿I�����H�޿H�����L��H�����E1�Hc�H�TH��tH�E t3H�m�EE1����<BA��L��H��L���i�[�]A\A]A^�H����f���AUATUH��H��SH���H�����H�޿I���o��H�޿I���_��L��L��H��H��E1���H���[]A\A]�ff.����f.����w������AUATUH��H��SH���H������H�޿I������H�޿I������L��H������L��H��H��Hc�E1�H�T�[�H���[]A\A]�ff.���AUATUH��H��SH���H���o��H�޿I���_��H�޿I���O��L��H���T��L��H��H��Hc�E1�H�T���H���[]A\A]�ff.���UH��AWAVAUATI��SH��hH�}�H�dH�%(H�E�1�H�E��� �1H��I����H���H��L���4�����H�I��H���L��I)�L���������H�L��E1�H)�H���F���L��N�#L��L�1�H��1����H��H�T
1�I9�tD�C�DP t�H���I9�u�H9���H�J�H����H��H��H��H���H)�H���H��H9�tH��H��$�H9�u�%��lL�\$1�E1�I���M���3�H�SI�<H��E��t� H�S�I�<H��H���H��E1�L9�t&�H��H��A�DP t�H��A�L9�u�fDH�P�H����H��~$�H�5c�L���������hI��H��E�<$A�A�Gը���H�E�H�E�H�E�H�}��t��L��H�M�dH3%(�;H�e�[A\A]A^A_]��H�ߪL��L��E1��C�����<���H�L��A�H)��)����H�_L�g����H���H��L��E1��������H�A�H)�����ك���H�=����Hc�H�>��f�I��L�u��
L��L�����H�}�I���<:����<,��H��1�E1�H���(Mi�I�M�L��H��A��-LD�O�l����H�5�L���L����������w����H�!�A�t$�4r�A�t$�4r�A�t$�tr�A�<$�w4Hc��rʁ�k����L�X�Ic4҅���H�
��HΉ�D�D1Ɂ������E1�L���Hc�A�8C�<��tr@8�umI��I9�tmF�C�<���H�i��O���@H�Y��K���@H�I��H���@A�t$H�3��4r������@8��=����<�3���E�l�E��A��DE�Mc�O�l-�`���DH)�H�L����f.�H��H�u��
H�E�H�}����Hi�A��-uI��H��H�u�H+u��
Hc��z���H�|H������Ii�H�M���+H�E�H�|?�z���I������f�H��A�L�u�L���L��
L�U�I)�H��x���H�E�L��I��L�]�H�E����L�]�L�E�L��
�I��K�<���H��L�U�I��RL��H��L)�H���W����H���
L��H�}����H��H�E��8:tIH��E1�H��H)�H�������L�E�L��
H�E�L+�x����I�|$�
��L�]�I���|���H�x�
L��H�}��9���I��H��H��H)�H������~���ff.���AWAVAUATI��H��USH���H��8dH�%(H�D$(1��k���H�޿I���[���H�޿H�$�J���H�޿H�D$�8���H�޿I���(���H�D$H�$H�(�� �0H��H�X��H�D$H���^H�
S�Hc�H�>��DH���VI���L�D+�H�= B!�������D+�D�|P�Mc�O�|?H��uH�=C�����H��A!H�����L��L��H���D����D+�H�=�A!�������D+�D�|P�Mc�O�|?H��uH�=�����H��A!H���:���L��L��H������D+�H�=`A!�������D+�D�|P�Mc�O�|?H��uH�=����Q��H�*A!H�����L��L��H������D+�H�=A!�������D+�D�|P�Mc�O�|?H��uH�=3�����H��@!H�����L��L��H���<���H��	���D+�H�=�@!�������D+�D�|P�Mc�O�|?H���|�?���L��L��H����H���w��������C�DP�I��tI� ��I�����A�>-D�H�=@!H�H�\H��u H�=����/���H��?!H��D���H��L��H���m���H�D$H��H�T$H�$H���!H��� ��H��H�h��I����H�������H��T���D�H�=�>!�������D�D�tP�Mc�O�t6H���W�"���L��L��H������H��~A�D�H�=b>!�������D�D�tP�Mc�O�t6H��������L��L��H�����H��uG�EH�=>!�������E�\P�Hc�H�\H�������H��L��H���I���f�H�D$H�D$H�D$I����I�E�� �:H����H�DH�5=!H�D$ H���9H�L$ �����1Ҿ
L��H���#���H��H������H�=1=!H��H������H��L��H�����H�\$H��tIH��� toH�=�<!L�kH�kH��tu���H��L��H���h���A�}[��H�D$H�D$H�D$H�L$(dH3%(���H��8[]A\A]A^A_�fDH��H�=}<!L�k��H��H��u�H�=E�����H��H�S<!�k���fDH�@I�}H�H�������������@H�hH�XI���u���H���\������H��T�J����EH�=<!�������ED�tP�Mc�O�t6H���n���L��L��H���K���H��~?�EH�=�;!�������ED�tP�Mc�O�t6H����T���L��L��H������H��������EH�=q;!�������E�\P�Hc�H�\H���u���H�=����`���H��H�6;!�U����H�XH�h����H��I�]�:H��H������H�|$H���*H�pH��H��L)�H)�H)�H�����H�|$H�ھH�����H�D$H�=�:!H���E�p���H��L��H���"���H�|$����H�=i:!H��H�����@���H��L��H�������DH�=���w���H��H�=:!������H�=��O���H��H�:!�����������S�TJ�Hc�H�\H����I����H�=[;!H�����H�=3����H��H�7;!����f�H����I�����CH�=9:!�������C�lP�Hc�H�l-H���1�<���L��H��H������H�=�9!��0Hc�H�\H���P���H�=Β��_���H��H��9!�0���H����I�����CH�=Q:!�������C�lP�Hc�H�l-H����
���H��L��H���^����CH�=:!�������C�lP�Hc�H�l-H���#
�n���H��L��H��� ����H�=�9!�������C�\P�Hc�H�\H���v���H�=�����H��H��9!�V���fDH���vI���l�CH�=�8!�������C�lP�Hc�H�l-H����
����H��L��H���~��CH�=C8!�������C�lP�Hc�H�l-H���#	���H��L��H���@��CH�=�7!�������C�lP�Hc�H�l-H�����P���L��H��H�����H�=�7!��0Hc�H�\H���d���H�=����s���H��H��7!�D���@H����I�����CH�=�8!�������C�lP�Hc�H�l-H���Q	���H��L��H���n��H�=<8!�������C�\P�Hc�H�\H������H�=B������H��H�8!���@H����I�����CH�=7!�������C�lP�Hc�H�l-H��������H��L��H������CH�=�6!�������C�lP�Hc�H�l-H���3���L��H��H�����H�=v6!��0Hc�H�\H����H�=k������H��H�G6!����f�H�����H�����A�UH��DP��H�l$����fDH�=�����H��H�U5!���H�=/������H��H�55!�����������C�TP�I��tI� ��I�����A�>-D�H�==6!Hc�H�lH������H��L��H���q��CH�=6!�������C�lP�Hc�H�l-H���V��H��L��H���3��CH�=�5!�������C�\P�Hc�H�\H�������H�=ю���H��H��5!�h�����H�=�5!�������C�lP�Hc�H�l-H�������H��L��H�����CH�=`5!�������C�\P�Hc�H�\H�����H�=A����H��H�%5!����1�1�@�+��H���TP�H��u�I��tI� �xI�����A�>-D�H�=�3!Hc�L�tH�����4�L��L��H�����1�@�+��H���TP�H��u�H�=t3!Hc�H�\H���3�H�=э��B�H��H�H3!��1�1�@���H���TJ�H��u�H�=t3!Hc�H�\H�����H�=y�����H��H�H3!����������C�TP�I��tI� �[I�����A�>-D�H�=�2!Hc�H�lH���<�'�H��L��H������1�f����H���TJ�H��u�H�=�2!Hc�H�\H���#�H�=����2�H��H�h2!��H�=a3!H�����H�=9����H��H�=3!���1�1�@���H���TJ�H��u�I��tI� ��I�����A�>-D�H�=Z2!Hc�L�tH���i�4�L��L��H������CH�=#2!�������CD�tP�Mc�O�t6H���*��L��L��H�����CH�=�1!�������CD�tP�Mc�O�t6H������L��L��H���h�H��	���CH�=�1!�������C	D�tP�Mc�O�t6H����m�L��L��H����H�����C
H�=:1!�������CD�tP�Mc�O�t6H�����$�L��L��H�����H��u>�CH�=�0!�������C
�\P�Hc�H�\H���E���H��L��H����H�=�0!H�����1�L��H���p�H�D$��fD�H�=v��/�H��H���4�H�D$��f.�H�=�����H��H��0!�Z���H�=j����H��H��/!���H�=�����H��H�u0!���H�=*���_�H��H�]0!�,���H�=
���?�H��H�}/!���H�=����H��H��/!�w���H�=n����H��H�M/!���H�=I�����H��H��.!����H�=.����H��H��.!���H�=����H��H��/!���H�=�����H��H��/!�_���H�=����_�H��H��.!��H�=y���?�H��H��.!����H�=U����H��H��.!���H�=�����H��H�u.!����H�=!�����H��H�5.!�O���H�=����H��H��.!���H�=����H��H��-!�_���H�=����H��H�e-!�r�H�=Ά��_�H��H�U-!��H�=����?�H��H�--!�4�H�=a����H��H�-!��H�����1�1�f����H���TJ�H��u�I��tI� �aI�����A�>-D�H�=�-!Hc�H�\H���C�L�L��H��H����H�=O-!H���l���H�=���}�H��H�+-!�L���fDM�v�����M�v����M�v����M�v�s����H�=M����H��H��,!�d��H�=1�����H��H�m,!���H�=>�����H��H�U,!�7���H�=����H��H�=,!����H�=�����H��H�m+!���M�v��M�v���H�=(���]�H��H�,!�����f���AUI��ATI��US�H��dH�%(H�D$x1�H�吉�L����H�D�H��H��u�H�\$H����H�|$H���H�sH� tH�sH�-u��H��������*H�|$H��u/H�sH� tH�s�H����€�1���t:�1Ҿ
��H�=�)!H��H�������H��L��H����H�|$PH����1Ҿ
���H�=,)!H��H���@��H��L��H���]�H�|$X1Ҿ
��H�=�(!H��H�����t�L��H��H���&�H�|$`H��t21Ҿ
�_�H�=�(!H��H���)�7�H��L��H�����H�|$hH��t+���H�=j(!H��H���V��H��L��H����H�\$p�H��tVH�=,(!H������H��L��H����H���(�H�=�'!H��H������H��L��H���R��H�L$xdH3%(��H�Ĉ[]A\A]�1Ҿ
�l�H�=
(!H��H����D�H��L��H����H�sH� ��������1Ҿ
H���!�I��H��� ��H�{�����PH�=�'!H��� ���L��L��H����H�|$H����������H�|$(H����H�\$@H����H�|$81Ҿ
��H�='!H��H���2�q�H��L��H���#�H��1Ҿ
�d�H�=�&!H��H�����<�H��L��H�����H�\$0H���A���1Ҿ
H��� �H��H��� ��H���������H�=i&!H�������H��L��H��������1Ҿ
����H�=M&!H��H�����H��L��H���N�H�\$ H�������1Ҿ
H�����H��H��� ��H�{�����-H�=�%!H���a���H�=[����H��H��%!�A���H���������H�=����b�H��H�X%!���H�=����?�H��H�%!�+���H�=����H��H�%!����H�=r���H��H��$!���H�=N����H��H��$!���H�=)���H��H��$!���H�=����H��H��$!�?���H�=����H��H��$!����H�|$HH���#���1Ҿ
���H�=f$!H��H����H�=���1�H��H�?$!����H�=܂���H��H�W$!���L���Z��I�����H�=p����H��H�$!����H���������H�=G���H��H��#!����H�=-���H��H��#!���H������H������H�{������H�����H������H�=�~��F�H��H�\#!������f���AUI��ATI��US�H��dH�%(H��$�1�H��fD��L���~��H�D�H��H��u�H�|$H���H�|$(H����H�|$0H����H�\$HH����H�|$@1Ҿ
�B��H�=#"!H��H������H��L��H������H��1Ҿ
�
��H�=�!!H��H�������H��L��H�����H�\$81Ҿ
H������H��H��� �"H��������^H�=�!!H����H�=�}����H��H�`!!�{fD1Ҿ
�t��H�=m!!H��H����L�H��L��H�����H�\$ 1Ҿ
H���:��H��H��� ��H�{�����rH�=!!H���B��H��L��H�����H�|$hH����1Ҿ
����H�=� !H��H������H��L��H���g��H�|$p1Ҿ
���H�=O !H��H���j�~�L��H��H���0��H�|$xH��t21Ҿ
�i��H�=
 !H��H���O�A�H��L��H������H��$�H��t+� ���H�=�!H��H���4��H��L��H�����H��$��H��tVH�=�!H���'����H��L��H�����H���,��H�=U!H��H�������H��L��H���V���H��$�dH3%(�H�Ĩ[]A\A]�@1Ҿ
�l��H�=}!H��H����D��H��L��H�����H�\$H�sH� tH�sH�-,��H��������rH�|$H�GH� tH�G�8-u7H�sH� tH�s�H����€�1��������&����1Ҿ
���H�=�!H��H��t~���H��L��H���B�����1Ҿ
���H�=j!H��H��u�H�=@z����H��H�G!�H������$���H�=z����H��H�,!����H�=�y��f��H��H�!�b���H�=�y��F��H��H��!����H�=iy����H��H�U!����H�=�x����H��H�=!���1Ҿ
H�����I��H��� ��H��������FH�=z!H����L��L��L��H������7���H�=�x����H��H�F!����H�=�w��h��H��H��!�v���H�=�w��H��H��H��!����H�=�w��(��H��H�n!���H�=�{����H��H��!���H���Q��H���~���H�{������H�\$XH��ufH�|$`H���z���1Ҿ
�f��H��H�!H���+H�����H�=U{����H��H�@!����L������I�����H�|$P1Ҿ
�
��H��H��!H����H������H��L��H�����H��1Ҿ
����H��H��!H���l����H�=�w���H�o!�O���H�{������H�=nw�����H��H�b!�F���H�=Hw����H��H�:!�[���H�����H������H�=w���H��!�1����H�=�v�g��H��!������fD��AUI��ATI��US�H��HdH�%(H�D$81�H���L�����H�D�H��H��u�H�|$1Ҿ
���H�=+!H��H�������H��L��H���4��H�|$1Ҿ
�s��H�=�!H��H���`�K��L��H��H�����H�|$H����H�|$ H����H�\$(H��tMH�=�!H�������H��L��H�����H���Y��H�=R!H��H��t:����H��L��H�����H�L$8dH3%(��>H��H[]A\A]�H�=9u�����H��H��!�H�=t�����H��H��!�\����[���H�=�!H��H�����C��H��L��H���������1Ҿ
�4��H�=�!H��H�������H��L��H���������f�H�=�s��?��H��H�e!���H�=�s����H��H�M!�)���H�=rs����H��H�!�H���H�=!t�����H��H��!�_����+��ff.���AUI��ATUH��S�H��XdH�%(H�D$H1�I��@��L�����I��H��H��	u�H�|$1Ҿ
���H�=h!H��H��������H��H��H�����H�|$1Ҿ
����H�=)!H��H���m���H��H��H���j��H�|$1Ҿ
���H�=�!H��H������H��H��H���3��H�|$ 1Ҿ
�r��H�=�!H��H�����J��H��H��H�����H�|$(1Ҿ
�;��H�=l!H��H���h���H��H��H������H�|$01Ҿ
���H�=-!H��H�������H��H��H�����H�=�!H�\$@H�������H��H��H���f��H�����H�=�!H��H��tw���H��H��H���<��H�|$8H��u)H�L$HdH3%(��hH��X[]A\A]�D�C���H�=d!H��H��� �+��H��H��H�������H�=�q��g��H��H�-!�i����H�=�p��?��H��H�
!����H�=aq����H��H��!����H�=np����H��H��!�x���H�=Ip�����H��H��!�!���H�=�p����H��H��!����H�=�p����H��H��!�s���H�=Jt����H��H�}!����H�=�o��_��H��H�!������ff.���AUI��ATI��US�H��XdH�%(H�D$H1�H��@��L�����H�D�H��H��	u�H�|$1Ҿ
���H�=�!H��H�����n��L��H��H��� ��H�|$H���AH�|$H����H�|$ H����H�|$(H���TH�|$0H���H�|$8H����H�\$@H��tMH�=�!H��������H��L��H�����H���@��H�=�!H��H��tA���H��L��H���n��H�L$HdH3%(���H��X[]A\A]�f.�H�=o�����H��H�E!�H�=_n����H��H�-!�U����;���H�=$!H��H���x�#��H��L��H�������
���1Ҿ
���H�=�!H��H��������H��L��H���������f�1Ҿ
����H�=�!H��H�������H��L��H���^���u���f�1Ҿ
���H�=�!H��H���!�l��H��L��H������&���f�1Ҿ
�T��H�=M!H��H�����,��H��L��H����������f�1Ҿ
���H�=!H��H��te����H��L��H��������DH�=�p��'��H��H��!�E����H�=rl����H��H��!�h���H�=m�����H��H��!�{���H�=�l����H��H�e!����H�=	l����H��H�=!���H�=�k����H��H�!�_���H�=�l��_��H��H��!������ff.���AUI��ATI��US�H��HdH�%(H�D$81�H���L�����H�D�H��H��u�H�|$1Ҿ
���H�=[!H��H�����r��H��L��H���$��H�|$1Ҿ
�c��H�=!H��H���`�;��L��H��H������H�|$H����H�|$ H����H�\$(H��tMH�=�!H��������H��L��H�����H���I��H�=�!H��H��t:����H��L��H���w��H�L$8dH3%(��>H��H[]A\A]�H�=)k�����H��H�%!�H�=oj����H��H�
!�\����K���H�=!H��H�����3��H��L��H����������1Ҿ
�$��H�=�
!H��H�������H��L��H���������f�H�=�i��/��H��H��
!���H�=yi����H��H�}
!�)���H�=bi�����H��H�E
!�H���H�=j�����H��H�-
!�_������ff.���AUI��ATI��US�H��8dH�%(H�D$(1�H���L���
��H�D�H��H��u�H�|$H���\H�|$H���
H�|$H����H�\$ H��tMH�=\!H�������H��L��H���p��H�����H�=)!H��H��t9���H��L��H���F��H�L$(dH3%(��mH��8[]A\A]�f�H�=�h����H��H��!�H�=?h����H��H��!�]���1Ҿ
�$��H�=�!H��H�������H��L��H���������f�1Ҿ
����H�=m!H��H�������H��L��H���n�����f�1Ҿ
���H�=5!H��H��tE���H��L��H���2���q���DH�=�g����H��H��
!�G����H�=�g����H��H��
!�H�=�g��o��H��H��
!�?������ff.���AUI��ATUH��S�H��hdH�%(H�D$X1�L�d$f���L�����I��H��H��	u�H�|$H��t0�8���H�=
!Hc�H�\H�����{��H��H��H���-��H�|$ 1Ҿ
�l��H�=�	!H��H���9�D��H��H��H�����H�|$(�,���H�=�	!Hc�H�\H�������H��H��H�����H�\$01Ҿ
H�����I��H��� �NH��������MH�=.	!H�������L��H��H���j��H�|$81Ҿ
���H�=�!H��H���6���H��H��H���3��H�|$@1Ҿ
�r��H�=�!H��H�����J��H��H��H�����H�|$HH���=H�=n!H�\$PH���h���H��H��H������H���m��H�=6!H��H���Z����H��H��H������H�L$XdH3%(�H��h[]A\A]�H�=�e����H��H�!����H�{���������H�D$eH�5�!H����H�\$�L��H������H���yH�D$�L��H�ٺ�+���H�=�!I��H���[���H�=2h��g��H��H�e!�;����1Ҿ
����H�=-!H��H��������H��H��H���~�����f�H�=�c����H��H��!�x���H�=)d�����H��H��!���H�=.c����H��H��!����H�=	c����H��H��!���H�=�c����H��H��!���H�=�c��_��H��H�m!���H�=�c��?��H��H�%!���H�D$����f��H�=�d���H��H��!�9����[��ff.���AUI��ATI��US�H��xdH�%(H�D$h1�H�l$f���L���F��H�D�H��H��
u�H�D$��H��t%H� �zH�@����H��,�zH�|$ H�T$�
1�����H�L$��+H���u��H�=6!H��H��������H��L��H�����H�|$(1Ҿ
���H�=�!H��H���k���H��L��H���H��H�|$01Ҿ
���H�=�!H��H����_��L��H��H�����H�|$8H���2H�|$PH����H�\$XH��tMH�=A!H�������H��L��H������H���m��H�=!H��H��tn����H��L��H�����H�L$hdH3%(��RH��x[]A\A]��H������H��,�����H�!lH�BH�T�p���f�H�=a�����H��H�}!�r���H�=_`����H��H�e!�(����;���H�=\!H��H�����#��H��L��H����������1Ҿ
����H�==!H��H���A����L��H��H�����H�|$@H��t21Ҿ
�׾��H�=�!H��H�������H��L��H���a��H�|$HH���P���1Ҿ
薾��H�=�!H��H�����n��H��L��H��� ������H�=�_����H��H��!�����H�=�_����H��H�e!�u���H�=*c��_��H��H�M!����H�=�_��?��H��H�!�]���H�=�^����H��H��!���H�=i^����H��H��!���H�=R^�����H��H��!�H����+���ff.���AVI��AUATUSH��H�� dH�%(H�D$1����H��I���ʿ��H�=*� �DH������H�=iH��H�� H�$蕾��H�5�!H�D$H��� I��H��L���]����x��H�=Y!H��H�������H��L��H���b���H�������b��j�ƒ������ƒ����n
�ƒ�
��
��
�ƒ�����ƒ����$�ƒ�
��
����������6	fDH�=�!H�������H��H���h��H������H�=m!H���|����H��H��蜽��H��H��t_H�5<!H�$H���kH��1�1��/���L���+H������H�=�!H��H�����r���H��H��H���$���H�=�!H����
�O���H��H������H��H��t_H�5�!H�$H���CH��1�1�觾��L���+H��蒾��H�=[!H��H�������H��H��H��蜾��H�=-!H���l����H��H���,���H�������H�=�!H����	���H��H���`���H��H���#H�5�!H�$H����L��H�����H����H�5�!H�$�H���zL��H��躽��H����H�5R!H�$�H����L��H��艽��H��tLH��L���+H�$��g���H�=!H��H��uPH�=�[�����H��H��!�3H��L���+H�$�����H�=�!H��H���H�s���H��H��H���%���DH�=y!H���	�K���H��H������H��H��t7H�5H!H�$H����	L��H��蟼��H���ffDH�=�!H��tt���H��H��贺��H��H��t*H�=�!H���+�ƾ��H��H��苺��H����L��艻��H��H�L$dH3%(�XH�� []A\A]A^�DH�=Y��Ͽ��H��H�U!�l���H�=Hd�诿��H��H��!�t���H�=d�菿��H��H��!����L�5� I����	�H�=d螹��L��H��H��L����H�����H���>����ƒ����T���L�5�� I����
�H�=�c�N���H��L��H��L�����H��覊�����>fDH�������R��X���L�5�� I���o	�H�=ic���H��L��H��L�����H���F��������L�5)� I�����H�=)c许��H��H��L��L����H������H���N����W���f�H�=�b��/���H��H�]!�����H�=�b����H��H�E!���H�=9X����H��H�m!���L�5�� I���O
�H�=yb���H��L��H��L�ވ��H���V����������H��薆����F�����L�5g� I�����H�=b褷��H��H��L��L�����H�����H���D����g����1ҾH�=
q�u���H��H���
���H�-�� ���fDL�5I� I�����H�=�a�&���H��L��H��L�����H���~���������L�5�� I����
�H�=_a���H��L��H��L���H���<����������L�5�� I���#�H�=a袶��H��L��H��L�"���H��������Z���L�5k� I����H�=�`�`���H��L��H��L�Ў��H��踇��������H�= � �}H�=
� �EH�5m� H�,$H���H�=�� L�����H����
H�=�� ��H�=�� ��H�5� H�,$H���tH�=�� L��螷��H���H���\��������L�5U� I���3�H�=�_�r���H��L��H��L�2���H���ʆ�����*���H���
����w���DH�5�� H�$�H����L��H������H���o���H�5p� H�$�H���L��H���׶��H����H��L���+H�$�豶��H�=� H��H����H�=(X��]���H��H�� �fDL�59� I���G�H�=�^�f���H��L��H��L�����H��辅��������H�������h���L�5�� I�����H�=�^����H��L��H��L�����H���l��������L�5)� I����H�=I^�γ��H��L��H��L�����H���&����������H���f�������L�5�� I���o�H�=�]�~���H��L��H��L����H���ք�����6���H�������ƒ�
��
�H����L�5i� I���?�H�=�]����H��L��H��L�����H���v���������H��趁���ƒ�������L�5� I���?�H�=9]農��H��L��H��L���H���������v���L�5�� I�����H�=�\�|���H��L��H��L�,���H���ԃ�����4���H�������]��H�=�R����H��H�� ����H�=�U��Ϸ��H��H�� ����H�=OR�请��H��H�� �d�H�=ZU�菷��H��H�E� ����L�5�� I���O�H�=\螱��H��L��H��L�����H��������V���H���6�����H���8���H�=�� H��H����谵��H��H��H���b������DL�5A� I���g�H�=�[����H��L��H��L�6���H���n���������H�������f��H�=R菶��H��H��� �u�H�=HR�o���H��H�� ���H�=T��O���H��H�E� ���H�=�Q�/���H��H�-� ��H�=�Q����H��H�� �5�H�=�P����H��H��� �	��)H�=i����I��H��诰��L�5X� �4�����H�=/h���I��H������L�5 � ������H�=�b躳��I��H���O���L�5@� ������H�=Ob芳��I��H������L�5� �d����H�=�P����H��H�� �f�H�=�P���H��H��� ���H��L���+H�$���H�=T� H��H���@�K���H��H��H������8�����H�=�e�ʲ��I��H���_���L�5�� �D���H�=�N��O���H��H�� �+�����'H�=c�z���I��H������L�5`� ����1ҾH�=*b�M���I��H�����L�5�� ���fD1ҾH�=Rd����I��H��貮��L�53� �g���fD��H�=�c���I��H������L�5�� �����6H�=_a躱��I��H���O���L�5X� �����LH�=Oc花��I��H������L�5�� �����'H�=b�Z���I��H�����L�5P� �����H�=�`�*���I��H��迭��L�5�� ����H�=�N诲��H��H�}� �7�H�=hN菲��H��H�-� ������#H�=�a躰��I��H���O���L�5�� �l�����cH�=�_芰��I��H������L�5� �>������H�=�b�Z���I��H�����L�5x� �T�����	H�=�`�*���I��H��迬��L�5� ������SH�=_a���I��H��菬��L�5�� �F���H�=L�����H��H�=� ��H�=*O��_���H��H��� ���1ҾH�=`药��I��H���"���L�5c� ��1ҾH�=�_�c���I��H�����L�51� ���L�5� �H�=�U�$���L�����H��H��L��H���||��������
����H�='U记��H��H�4� ���1ҾH�=�^�ܮ��I��H���q���L�5�� ��1ҾH�=�^貮��I��H���G���L�5x� �Y�L�5T� �H�=�T�s���L�����H��H��L��H����{�����+���H�=vT���H��H�k� �l�1ҾH�=^�+���I��H�����L�5�� �.�1Ҿ
H�=�]����I��H��薪��L�5�� �����D��ATI��USH���ܮ��H��H��豪��輯��H�5=� H��H����H�
��H��L���y����tH��躪��H��H��[]A\�fDH�5�� H����H�
���H��L����x����u�H�5�� H����H�
���H��L���x����u�H�5�� H����H�
r��H��L���wx���p���f����H�=�Z���H��H�D$�}���H�t$H�5Y� �$���@���H�=�Y責��H��H�D$�E���H�t$H�5� �-���@�L�H�=?Y�z���H��H�D$�
���H�t$H�5�� ����@�H�H�=�X�B���H��H�D$�ը��H�t$H�5�� ����@��ATI��USH������H��H�������H�5]� H��H��t,H��L��H�
����Jw��H������H��H��[]A\�fD�a�H�=�W誫��H��H�D$�=���H�t$H�5�� �ff.�@��ATI��USH���|���H��H���Q����\���H�5�� H��H��t|H�
���H��L���v����tH���^���H��H��[]A\�f�H�5q� H��t{H�
|��H��L���qv����u�H�5F� H����H�
���H��L���Jv�����k�H�=V躪��H��H�D$�M���H�t$H�5� �P���@�A�H�=�U肪��H��H�D$����H�t$H�5�� �Q���@�C�H�=�T�J���H��H�D$�ݦ��H�t$H�5�� �@���ff.����ATI��USH������H��H�������H�5=� H��H��t,H��L��H�
?���Ju��H������H��H��[]A\�fD���H�=oS誩��H��H�D$�=���H�t$H�5�� �ff.�@��ATI��USH���|���H��H���Q����\���H�5�� H��H��t|H�
u���H��L���t����tH���^���H��H��[]A\�f�H�5Q� H��t{H�
ܐ��H��L���qt����u�H�5&� H����H�
����H��L���Jt�������H�=�Q躨��H��H�D$�M���H�t$H�5�� �P���@���H�=�P肨��H��H�D$����H�t$H�5�� �Q���@���H�=P�J���H��H�D$�ݤ��H�t$H�5a� �@���ff.����ATI��USH������H��H�������H�5� H��H��t<H�
��H��L���Js����uL������H��H����H��H��[]A\���|�H�=�N蚧��H��H�D$�-���H�t$H�5�� �f.�DAWH��AVAUATUSH��H�|$H�t$dH�<%(H�|$x1�H���H��H����I��H����H�|$���%H���h���H���oH�|$H�D$H�H��H�D$�����L�a�L9��^H�L$PL�|$L�t$(H�L$0�$@A�I��I��H��A�E��tQM9��(<%u��D$ �SI��E1�H�����H�
�zM�n��z��H��z��Hc4�H�>��L�|$�L9|$��D����"1�H�|$xdH3<%(��H�Ĉ[]A\A]A^A_Å�VA��puP�T$ H�t$0�
L��D�D$8�X���H=���w�H9D$H�
#zD�D$8r�Hc�H�D$P�L�h�M���?���M��L��H)�H���UI�]��f.�H��舡��H��H;D$�z����4���I���L9|$�0���� ���L��A�H+D$����A��@H�5�yL��D�D$8臢��I��I�D�8zH�D$@�n���D�D$8L�h�H�|$(D�D$8H�GH�?���Lc�L��H��?H��L1�H)�H�����kD�D$8A�D�����ك�I���mM����I���9I����H��o^M<+	H��H��H��H��H��H��Hi�H9����Q�E�9�L�H�D$L9������QL)�Hc�H��H9������|$  uLA9�}GH�t$D)�1�L��L��JH�MxL�L$8L)�D�T$ �^���������D�T$ H�L�L$8I�D��I�o�+M��yI�ٸ-L��A�H�t$H��H��L�L$ H��o^M<+	H��H)�H��1�H��H��I��H��w������T���Hi�L�L$ I��H�L�|@��I)�M��u	@���DH���������L��H��H��H��M����H�t$A�:M�G��1�H�`?L��L�D$ L)��p���������L�D$ H�L��M�<H��H��H)�H��H)���@����I����H�t$A�:I�_1�H��>H��H)��������z���L�l$@H�L�<I�]���A��tA��A��H�|$(D�D$8H�GH�?�PHD�D$8����H�A�~AD�D$8�H��H�ZyH�P�Lc�D$8�H�D$L9���L)�H��H9����H��H��L��H�L$ �a����D$8H�L$ �����/L���tI���I���@A��ƒ�a��w��_A�I��L9�u���H�D$`�H��� H����H�L$(D�D$@H�AH�9�H�|$`�H��H�|$8H��H���`���D�D$@�ƒ��d��N�A��E�H�I���D$ <0��H�7u����H�t$L)���1�L���y���������H�I���H�t$H�L$(L��D�D$8H��tL)����H�������D�D$8A����A��u�Lc�I9�~�K�,H;l$�����L��L��H��H)�I�<�K����|$ � @��D�@��H��L��I�^I���U�������A�VA�� D�D$@���������H�ψT$8軜���T$8D�D$@H�
�tH����������@H�t$H�L$(L��D�D$8H��;L)����H������D�D$8A�����A������Lc�I9�����K�,H;l$�����L��H��L��H)�I�<�^����T$ � ��D�������A��tA��A��H�|$(D�D$8H�GH�?�PD�D$8������H�A�~BD�D$8�H��H��uH�P�����H���F���D�D$8H��H����DI�^�}���H�L$(D�D$8H�AH�9��G��D�D$8������
H����|$ H��H��?����N�A����E�@��0��H��r@����H�t$I��L)��z���H�|$(D�D$8H�GH�?�PPD�D$8���x�P�O…��L$ N�A��E�H�Zr��0tH�Sr��uA�~IH�
>rHD�H�t$A����L)�1�L���y�������������H�L$(D�D$8H�AH�9�PP��D�D$8N��|$ �A��E�H��q@��0t�H��q@��u�A�~HH�
�qHD��z�����L��	E…�N�H�D$L9��W���L)�Hc�H�D$@H��H�|$ H9��:���H�|$(��H�GH�?�PhI������H�L$`�l$HH�L$8H��@H�ٺ�*H��H�D$`�5w��	������ډ�I���l$H��t9�H��H���u�H��H�L$8L�Ǿ*H�T$`�迚��I��H�D$`H�5�� H����H�L$8�L��I�^荚��H�T$ I�<H�|$H��
H�H�t$@L����I��H�lp1��ɖ��L�|$H����H�L$(D�D$8H�AH�9�PX��D�D$8N��|$ A���E�@��0��@����H�p����A�VA��D�D$@���S�����H�=Rp�T$8�S����T$8D�D$@H�
1pH�������!���@H�L$(D�D$8H�AH�9�P��N�D�D$8�L$ A���E�0t���g���H�o�C���H�D$��~
A����L9��&���L)�H������A�
I�^I����H�t$H�L$(L��D�D$8H�>oL)���H�����D�D$8A���2���I�L����1����a��w��_@�9H��H9�u�����H�|$(D�D$8H�GH�?�PpD�D$8����HO�A������E��uH�D	H�L$(H�D$`H�AH�9�PpH�D$h�D$ <0�a�H�=gn���M�N���H�T$`H��H�¿評��H�D$PH�\$H�|$0赔��L)�L��H��H������H9���������A��H�D$u	���h
L9����L)�H�����A�	I�^I���1�H�|$(D�D$8H�GH�?�P������H�|$(D�D$8H�GH�?�P0D�D$8�A��u��O��|$ @��0�+H�xm@���H�t$A��L)��0���H�t$H�L$(L��D�D$8H�nmL)����H����D�D$8A���2���I�L���1����a��w��_@�9H��H9�u�����H�|$(D�D$8H�GH�?�PHD�D$8�A���E����;���H�t$H�L$(L��D�D$8H��lL)��A�H���s�D�D$8A���T	A���q���Lc�I9��e���K�,H;l$�4�L��L��H��H)�I�<����L$ � ��D�����������A��p���A��A�V�j�A��H�D$u	����L9����L)�H�����A�%I�^I���C�H�t$H�L$(L��D�D$8H�lL)��\�H�����D�D$8A�������I�L��D�1����a��w��_@�9H��H9�u���������A��p���A��A�V��H�L$(D�D$8H�AH�9�P(���H�t$H�L$(L��D�D$8H�PkL)���H�����D�D$8A���8���I�L��fD�1����a��w��_@�9H��H9�u��
���A��tA��A��H�L$(D�D$8H�AH�9���H��H���h�����������A��p���A��A�V�������A��p���A�V�D$  ��H�t$H�L$(L��D�D$8H��1L)����H����D�D$8A�������I�L���1����a��w��_@�9H��H9�u��v���H�|$(D�D$8H�GH�?�P��D�D$8N��L$ �A��E�H��i��0�����H��i���|���A�~dH�
�iHD��g���H�|$(D�D$8H�D$`�A�~gH�GH�?���D�D$8H��H�D$`��%D�D$8H���<���D�D$8���H���'���D�D$8��N����H�t$H�L$(L��D�D$8H�#iL)���H�����D�D$8A������I�L���1����a��w��_@�9H��H9�u����H�L$(D�D$8H�AH�9�P`�[���D�D$8��p����P�KH�L$(H��jH�AH�9�PP���H�CHM��$�H�|$(D�D$8H�GH�?�PxD�D$8����HO�A�������E��uH�D	H�|$(H�D$`H�GH�?�PxH�D$h�D$ <0�M���E�H�=�g���H�L$`H��H�����H�t$H�L$(L��D�D$8H��gL)��R�H�����D�D$8A������I�L���1����a��w��_@�9H��H9�u����H�L$(D�D$8H�AH�9��U���P@D�D$8��N�����D$ I������D$8f.�I9����H�D$L9����L)�H��I9����I)�H�L$@�L$ L��� L��L�T$ ��D���诏��L�T$ H�L$@M���L�f.�A��ƒ�A��w�� A�I��L9�u���H�i0�=�E��E�H�I���D$ <0�nH�_f���_H�t$L)��%�H�Hf����H�t$��1�H�l.L��L)�职�������H�I�L�l$@I�]�l�����N�A���uHc�H�DH��� H�D$`H�D$X�H��� H�L$(H�AH�9�H�L$X�H��H��莏��H�D$h�D$ <0�i�H�=�e���U�s���H�t$8H���#���A����H��D�D$8����D�D$8�
�����N�A���uHc�H�TH�D$h�D$ H�T$`<0t�������H�=e����H��d����P D�D$8���P D�D$8H���e���A���4���D������D$8�"����P8D�D$8�W����H�=�+D�D$8�N���D�D$8H��H��� ���H�L$ �H�D$hH�=kdH�T	H�T$`�U���H�t$8�H��賋��H�|$0H�D$P�Ċ��H�T$@L��H���$���L�|$H��L9����L)�Hc�H��H9�����|$ � �U�Hc�@��D�@��L��M�|�跌�����L9����L)�Hc�H��H9�����|$ � �U�Hc�@��D�@��L��M�|��o����A�L9��Q�L)�Hc�H��H9��>��L$ � �U�L��Hc�M�|���D����)����h���A��
������r���I�L��fD�1����a��w��_@�9H��H9�u��~���I�L���1����a��w��_@�9H��H9�u���I�L����1����a��w��_@�9H��H9�u�����H�=�b�K�H��b�e�H���������H��H��H��H��H��H��H)�H��H��H9�t!�Q�E�9�L�H�D$L9����Q���Q�E�9�L�H�D$L9�����Q����H�=b���H�b�W��H�=b���H�|$`H��H�¿�P���H�D$P��H�=�(L�D$H耏��L�D$HH��H��� ��Q�E��A��H�=�(�P���H��H��� ���D�D$8�7�H�D$`H�D$8�c�胉��L�l$@M��E1��K�������ATUSH�������H�(��DMu1���%t[]A\�fDD�cA��EtEA��Ot?1�E��t�A��H�=Ed�X���H�¸H��u�E��B�Def������D�c�f�AULc�ATA��UH��SHc�H��dH�%(H�D$1�A��utH�\��<H�$H��H���V���H��t!H�L$dH3%(D��uWH��[]A\A]�O�l-H�ٺH��>L�,$E1�����H��A���fD���9���E1�D9�A��A!������f�UH��AVAUI��ATI��S1�H��dH�%(H�E�1���H��H9�t7A���0��	v�1�H��u#H�u�dH34%(�QH�e�[A\A]A^]�H��H��@wZL��1�D�H��H����0H�H�<HH��L)�H9�r�1�I9�t�H�@H�xH�D?I�EH����p�����fDH�{H�E�H�����H�CH��H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�H�L$L�u�H���H��H��L�����1Ҿ
�H������L��I�E�@���H������H��������H9�w H�sL�u�H��L��H��H���N���H��뜾�χ���Z���f.�AWH��AVAUATUSH��XH�t$H�$L�D$dH�%(H�L$H1�H����E1�H��I��M��@B�D=< tZ~L<%��F�d=H�
JaL�^L�S%D��C�M�O<U��H�5pa��Hc�H�>���P������_���H��f.�I��C�.�DB u�I��L;<$�j���L����B�\=��t7D��L��L�L$D��蜅��L��]L�L$H�
�`H��L��$�#B�D=C8.��I���K�.E1�L�|$H�)L�l$ I��M��H�l$(I��H���H�I� N�$�L��轄��I��L��H��L���|������|I��I��u�H��� H���/H���҈��H�|$�H��耆��1�H�L$HdH3%(H����H��X[]A\A]A^A_�H�t$8K�<.��5���H����H�|$81��cI��X�������H�=�� H�\$8H����F���H�|$H��H�����H�=O� H�����!���H�|$H�����H����f.�I���;���C�<.%�GI��I���#���H�t$L�D$K�<.�H��[L)��-���H�=�� H��H���2f.�蛇��H�|$H���^���H������I��|���L�L$E1�N�d
�L�l$ M��I��L��L��H��Ic��ށ��H�
j^L�?[��L�q"��I��I���?H�L� J�,�H�����H���K�.H�P'�E1�L�|$I��L�l$ I��H��H�l$(�*fDI��I����H�3� N�,�L���g���I��L��H��L���&�����u�D�ຫ���D��L�l$ ��L��H�l$(L�|$I���R��)�H�� ��Hc�H�\H���E�H�=�!詇��H��� �(I��J�|=���K�<.H�t$8���������H����H�=|� I�H�\$8H���-���H�|$H��H��蛃������H�t$L�D$K�<.�H�lYL)��$���H�=� H��H������H�=�\���H��H��� ���H�t$8K�<.�����H���GH�|$8�5�I��>�������H�=�� H�\$8H������+���H�|$H��I��H���ׂ���V���H�t$L�D$K�<.�H��XL)��`���H�=Q� H��H���=���H�=\��,���H��H�*� ����O�$.�A�$�PՁ�u1�<-��I���\�O�$.I��J�|=���H�t$8���n
�L������H���(IŃ����H�\$8H�=�� H���O���H�=Y#�莅��H��H�d� �/���H�='� �<�̄��H��I��血��K�<.��~��H�5�� H�D$@H����H�\$@H�=� �H���Z���H����H�ƿH�D$ �~��H�5�� L�D$ H�D$@H�D$H����H��L�Ǻ����H�|$H���ނ��H�D$ ���HH��H�H�=K� I�H�����B���H�|$H�T$H����H�=� H���3����H�T$ H�|$I��H���ŀ��L�������<���H�t$8K�<.����H����H�|$81��;I�������VH�=� H�\$8H���{���H�=i����H��H��� �[���B�\=������D��H��L�L$D���y~��H�
�YL�L$L�UVH��L������M���(���K�.E1�H�l$ H�
KYH�D$L��I��H�t$H��L��苀�����uH��H���A
H�>� L�$�L���}��H����K�<.�?-�
H��������H�t$8�l���H����H�|$8Iž��a���H�=�� H��H���^���H�=;��݂��H��H��� �>���H�t$L�D$K�<.�H�
UL)����H�=U� H��H�������H�=cX�舂��H��H�.� �y���H�t$8K�<.���H����H�|$8��I������>H�=� H�\$8H�������H�=N�����H��H��� �y���H�t$L�D$K�<.�H��&L)����H�=�� H��H������H�=�W��Á��H��H��� ���H�t$L�D$K�<.�H��SL)����H�=3� H��H������H�=IW��n���H��H�� �_���K�<.�?-�R
H��������H�t$8��H���H�\$8I�H�=�� H�������H�=j�����H��H�z� �m���H�t$8K�<.��:�H���hH�|$8��I��Z���vH�=� H�\$8H������H�=0�蜀��H��H��� ���H�t$8K�<.����H���H�|$81��I������6H�=^� H�\$8H�������H�=���/���H��H�5� ���H�t$L�D$K�<.�H�VRL)���H�=�� H��H�����H�=�U�����H��H��� ����H�t$L�D$K�<.�H�%RL)���H�=�� H��H�������H�=`U����H��H��� �v���H�t$L�D$K�<.�H�9L)��d�H�=]� H��H���A���H�=U��0��H��H�6� �!���K�<.�? �jH�t$8��U�H����H�|$8��I��u���$
H�=�� H�\$8H���8���H�=���~��H��H��� ����H�t$8K�<.����H���H�|$81��cI������
H�=� H�\$8H����|��H�|$H��H���z��H�=�� H����
��|��H�|$H���x��H�����H�D$@�H��� H����H�|$8H�L$@�H���z��H��H�w� Hۃ�H��'H���eH���d|��H�|$H��H���z���O�H�t$8K�<.����H���H�|$8�n�I�������H�=�� H�\$8H������H�=���N}��H��H��� ���I��J�|=�1�K�<.H�t$8�����f�H����H�=�� I�H�\$8H�������H�=����|��H��H��� ���K�<.�? ��H�t$8��	�H���wH�|$81��I��,����pH�=� H�\$8H�����H�=���n|��H��H�� ����H�t$L�D$K�<.�H��NL)��M�H�=�� H��H���*�H�=�Q��|��H��H�� �
�H�t$L�D$K�<.�H��L)���H�=�� H��H�����H�=�Q���{��H��H��� ��K�<.�? �8H�t$8����H����H�|$8��I��	����?
H�=� H�\$8H�����H�=���K{��H��H��� ��K�.���PՁ�u1�<-��I���\�K�.I��H�L$J�|=��H�L$���A��L�	�H��HE�H�t$8�#�I��H���M����H��������?I9���K�D$H�5�� H�D$@H����H�L$@���v��H�|$8H����z��H�=~� H��H���
�H�=���Iz��H��H�W� ���H�t$8K�<.��w�H����H�|$81��<I������
H�=�� H�\$8H���]�H�=���y��H��H�b� �=�H�t$8K�<.��
�H����
H�|$81��5I��-����R
A��UH�='H�\$8H�!HE��u��H�����C�<.%��L9$vC8\.�E
I��I���(�H�=�� H�����H�=�N��#y��H��H�i� ���H�=ݽ H�����H�=�N���x��H��H��� ��H�==� H�����H�=�N���x��H��H�� �}�H����������H���1�H��� H���R��H�=QN�{x��H��� �5��H��������L����H�����H�6� H�����H�=N�,x��H�� ���H���������a�H�������H�ѽ H������H�=�M��w��H��� ��D��L�l$ L���%I�$L�|$H�l$(I͉���ȉ�)�������)�H�� )�Hc�H�\H�������H�=�vw��H��� ���H��� H��� ��H�=M�Iw��H�r� ��I��H�t$8�K�<.�v�H���m���H�=�� ��H�=�� ���I��H�t$8H��������K�<.�4�H����I�H�Q� H����H�|$81�1�H����r��H��H�D$8�}���I��H�t$8�K�<.���H�������H�=�� �{H�=u� �9�I��H�t$8�K�<.��H�������H�=�� �$H�=�� ��fDI��H�t$8H��������K�<.�d�H����I�H��� H����H�|$81�1�H���r��H��H�D$8���H�t$8H��H����������I��H����H�=ߺ �$
H�=Һ �f�D�H�=�u��H��H��� ���H��� s����H�=��Zu��L�D$ H��H�� �[�H�=��5u��H��H�Ӹ ���H�=�J��u��H��H�#� ��H�� H��� H�|$81�1�H���q��H��H�D$8�)�H�=�J���t��H��H�5� ��H�D$@�H�`� H����H�|$8H�L$@�H���p��H��H�-� Hۃ�H��'H��������H�=5J�Yt��H�� ���H�=���<t��H��H�· ��H�N� H����H�|$81�1�H���<p��H�D$8�G���L���o���R���H�=�
���s��H��H�r� �.�H�=^���s��H��H�� �%�H�=�I��s��H��H�Z� ��H�=O��s��H��H�B� ���H�=EI��ds��H��H�� ����H�=�
��Ds��H��H�� �����H�=�J�oq��H��H�ŧ �n�����H�=�H�r��H�3� ��I��I�H�l$ D�����H��� H�H���H��H���J����H�=�H�r��H�� �-���L�L$L�l$ L��I�G�dD������H�=�sr��H��� �J����H�=2H�Vr��H�� �~�H�=�9r��H�ҷ �,�H�=�
�r��H��� �H����H�=�
�q��H��� ����H�=�
��q��H��� �7����H�=U
��q��H��� ����H��� H���o��H�=nG�q��H��� �R�H�%� H���B��H�=AG�kq��H�� �%�H� � H�����H�=G�>q��H��� ��H��� H������H�=�F�q��H�j� ���H�~� H������H�=�F��p��H�]� ��H��� H������H�=�F�p��H�h� �q�H�ܴ H���a��H�=`F�p��H��� �D�H��� H���4��H�=3F�]p��H��� ��H�"� H�����H�=F�0p��H�� ���H��� H������H�=�E�p��H�|� ��H��� H������H�=�E��o��H�g� ��H�˴ H������H�=E�o��H��� �c�H��� H���S��H�=RE�|o��H��� �6�H�)� H���&��H�=%E�Oo��H�� �	�H��� H������H�=�D�"o��H�{� ���H�w� H������H�=�D�n��H�V� ��H��� H������H�=�D��n��H��� ��H��� H���r��H�=qD�n��H�ܳ �U�H�س H���E��H�=DD�nn��H��� �(�L����i��H�۱ H�����H�=D�9n��H��� ���H��� H������H�=�C�n��H��� ���H�� H������H�=�C��m��H�Ȳ ��H�IJ H������H�=�C�m��H��� �l�H�� H���\��H�=[C�m��H�� �?�H�ʱ H���/��H�=.C�Xm��H��� ��H��� H�����H�=C�+m��H�t� ���H�0� H������H�=�B�l��H�� ��H�� H������H�=�B��l��H�� ��H��� H���{��H�=zB�l��H�ձ �^�H��� H���N��H�=MB�wl��H�h� �1���f��H�7� H�����H�=B�El��H�� ��H��� H������H�=�A�l��H��� ���H�m� H������H�=�A��k��H�L� ��H�@� H������H�=�A�k��H�� �x�H�ӱ H���h��H�=gA�k��H��� �K��H�=JA�tk��H��� ���H�Y� H�����H�=A�Gk��H�8� ���H�=A�*k��H��� ��H�=�@�
k��H�v� ��H�=�@��j��H�� �h�@��AUATI��UH��SL��H��dH�%(H�D$1�����H9���H�=<� H���{�6i��H��H���d���H����H�=� H���,�i��H��H���li��H��H���H�=а H�����h��H��H���d��I��H��t_I���*H��L��H�$��6f��L��L���+H�$�f��H�=f� I��H���:�uh��L��H��H���'f��H�=8� H���w�Rh��H��H���d��I��H��t_I��H���*L��H�$��e��L��L���+H�$�e��H�=ί H��H������g��H��H��H���e��H�=�� H������g��H��H���/h��H��H����H�=k� H�����g��H��H���bc��H��t_I���%H��L��H�$�d��L���+H��H�,$��d��H�=� H��H��� �;g��H��H��H����d��H��H�L$dH3%(H����H��[]A\A]��H�=6>��Oh��H��H��� ����H�=>��/h��H��H��� ���H�=�=��h��H��H��� �e���H��I�<H)��qb��H�=�� H��H�����yf��H��H��H���+d������fDH�=z��g��H��H�� �N���H�=/��g��H��H�� ���H�=���og��H��H��� ���H�=���Og��H��H��� �>���H�=���/g��H��H��� �i���H�=���g��H��H��� ���H�=����f��H��H��� �����;a����H��H���quosecondsdivhourminsec_fractionlimitexpected numericinvalid %s (not numeric)zoneleftover%FT%T%z%F%Y-%m-%d%Y-%m-%dT%H:%M:%S%:z%a %b %e %H:%M:%S %Y%a, %-d %b %Y %T %z.%%%ldNinvalid start is ignoredto_imonmdaysubsecutc_offsetlocaltimeclock_gettimeinvalid offset is ignored%c%02d:%02dydaycwdaycweekcwyearwnum0wnum1fraction of offset is ignoredto_rround%a, %d %b %Y %T GMTlocalexpected an arrayfloorinvalid day fractioninvalid size%c%02ld.%%m.%%dcommercialcivilordinalinvalid date-4712-01-01T00:00:00+00:00-4712-01-01ajdnew-@secondinvalid fractionminuteDateTime expectedDate expected<=><=>=DateErrorABBR_MONTHNAMESABBR_DAYNAMESITALYENGLANDJULIANGREGORIANvalid_jd?valid_ordinal?valid_civil?valid_date?valid_commercial?julian_leap?gregorian_leap?today_strptime_parse_iso8601_rfc3339_xmlschema_rfc2822_rfc822_httpdate_jisx0301initializeinitialize_copyamjdday_fractionsunday?monday?tuesday?wednesday?thursday?friday?saturday?julian?gregorian?new_startitalyenglandjuliangregorian+next_dayprev_daynextsucc>><<next_monthprev_monthnext_yearprev_yearstepuptodownto===eql?hashto_sinspectstrftimeasctimemarshal_dumpmarshal_loadDateTimenowsecond_fractionnew_offsetto_timeto_dateto_datetimeSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturdayJanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilJuneJulyAugustSeptemberOctoberNovemberDecemberstring length (%zu) exceeds the limit %zustring should have ASCII compatible encodingformat should have ASCII compatible encodingcannot load complex into simpleKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedPassing the keyword argument as the last hash parameter is deprecatedThe last argument is split into positional and keyword parametersMon, 01 Jan -4712 00:00:00 GMTMon, 1 Jan -4712 00:00:00 +0000#<%li: %li ((%+lij,%ds,%+lin),%+ds,%.0fj)>0��������H���з��@���������������������������,����������������������h�����(��8���h���(�x����%:z;Zx����0N<[y����1OY@0C�?�?@�v@aTR'��>@З@@�}<A���@fffff�^@*@l�@k�@���������AA���BA����AA�@���BA�v@J�q�Ae��A���������������match_bcbeginend[]=**_compstandarddaylightdstgmtutc-- gsub!W���V���V���V��V��V��V��V��V��\��\���`��,a���c��Ld���a���b���Y��\���Y��\���Y��\���Y���K��w�K��w\A\s*([mtshr])?(\d{2})\.(\d{2})\.(\d{2})(?:t(?:(\d{2}):(\d{2})(?::(\d{2})(?:[,.](\d*))?)?(z|[-+]\d{2}(?::?\d{2})?)?)?)?\s*\z\A\s*(sun|mon|tue|wed|thu|fri|sat)\s+(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\s+(\d{1,2})\s+(\d{2}):(\d{2}):(\d{2})\s+(\d{4})\s*\z\A\s*(sunday|monday|tuesday|wednesday|thursday|friday|saturday)\s*,\s+(\d{2})\s*-\s*(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\s*-\s*(\d{2})\s+(\d{2}):(\d{2}):(\d{2})\s+(gmt)\s*\z\A\s*(sun|mon|tue|wed|thu|fri|sat)\s*,\s+(\d{2})\s+(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\s+(-?\d{4})\s+(\d{2}):(\d{2}):(\d{2})\s+(gmt)\s*\z\A\s*(?:(sun|mon|tue|wed|thu|fri|sat)\s*,\s+)?(\d{1,2})\s+(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\s+(-?\d{2,})\s+(\d{2}):(\d{2})(?::(\d{2}))?\s*([-+]\d{4}|ut|gmt|e[sd]t|c[sd]t|m[sd]t|p[sd]t|[a-ik-z])\s*\z\A\s*(?:--(\d{2})(?:-(\d{2}))?|---(\d{2}))(z|[-+]\d{2}:\d{2})?\s*\z\A\s*(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(z|[-+]\d{2}:\d{2})?\s*\z\A\s*(-?\d{4,})(?:-(\d{2})(?:-(\d{2}))?)?(?:t(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?)?(z|[-+]\d{2}:\d{2})?\s*\z\A\s*(-?\d{4})-(\d{2})-(\d{2})(?:t|\s)(\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(z|[-+]\d{2}:\d{2})\s*\z\A\s*(\d{2})(\d{2})(?:(\d{2})(?:[,.](\d+))?(z|[-+]\d{2}(\d{2})?)?)?\s*\z\A\s*(\d{2}):(\d{2})(?::(\d{2})(?:[,.](\d+))?(z|[-+]\d{2}(:?\d{2})?)?)?\s*\z\A\s*(?:([-+]?(?:\d{4}|\d{2})|--)(\d{2}|-)(\d{2})|([-+]?(?:\d{4}|\d{2}))(\d{3})|-(\d{3})|(\d{4}|\d{2})w(\d{2})(\d)|-w(\d{2})(\d)|-w-(\d))(?:t?(\d{2})(\d{2})(?:(\d{2})(?:[,.](\d+))?)?(z|[-+]\d{2}(?:\d{2})?)?)?\s*\z\A\s*(?:([-+]?\d{2,}|-)-(\d{2})?(?:-(\d{2}))?|([-+]?\d{2,})?-(\d{3})|(\d{4}|\d{2})?-w(\d{2})-(\d)|-w-(\d))(?:t(\d{2}):(\d{2})(?::(\d{2})(?:[,.](\d+))?)?(z|[-+]\d{2}(?::?\d{2})?)?)?\s*\z\A\s*(\d{1,2})\s*\z\b(bc\b|bce\b|b\.c\.|b\.c\.e\.)([-+]?)(\d{2,14})(?:\s*t?\s*(\d{2,6})?(?:[,.](\d*))?)?(?:\s*(z\b|[-+]\d{1,4}\b|\[[-+]?\d[^\]]*\]))?(\d+)(st|nd|rd|th)\b\b(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\S*'(\d+)\b\b-(\d{3})\b\d-\d{3}\b\b(\d{2}|\d{4})-(\d{3})\b[,.](\d{2}|\d{4})-\d{3}\b--(\d{2})(\d{2})?\b--(\d{2})?-(\d{2})\b-w-(\d)\b\b(\d{2}|\d{4})?-?w(\d{2})(?:-?(\d))?\b('?-?\d+)\.\s*('?\d+)\.\s*('?-?\d+)('?-?\d+)/\s*('?\d+)(?:\D\s*('?-?\d+))?\b(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[^-/.]*-('?-?\d+)(?:-('?-?\d+))?('?-?\d+)-(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[^-/.]*-('?-?\d+)\b([mtshr])(\d+)\.(\d+)\.(\d+)('?[-+]?\d+)-(\d+)-('?-?\d+)\b(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[^-\d\s']*\s*('?\d+)[^-\d\s']*(?:\s*,?\s*(c(?:e|\.e\.)|b(?:ce|\.c\.e\.)|a(?:d|\.d\.)|b(?:c|\.c\.))?\s*('?-?\d+))?('?\d+)[^-\d\s]*\s*(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[^-\d\s']*(?:\s*(c(?:e|\.e\.)|b(?:ce|\.c\.e\.)|a(?:d|\.d\.)|b(?:c|\.c\.))?\s*('?-?\d+(?:(?:st|nd|rd|th)\b)?))?\A(\d+)h?(?:\s*:?\s*(\d+)m?(?:\s*:?\s*(\d+)(?:[,.](\d+))?s?)?)?(?:\s*([ap])(?:m\b|\.m\.))?((?:\d+\s*:\s*\d+(?:\s*:\s*\d+(?:[,.]\d*)?)?|\d+\s*h(?:\s*\d+m?(?:\s*\d+s?)?)?)(?:\s*[ap](?:m\b|\.m\.))?|\d+\s*[ap](?:m\b|\.m\.))(?:\s*((?:gmt|utc?)?[-+]\d+(?:[,.:]\d+(?::\d+)?)?|(?-i:[[:alpha:].\s]+)(?:standard|daylight)\stime\b|(?-i:[[:alpha:]]+)(?:\sdst)?\b))?\b(sun|mon|tue|wed|thu|fri|sat)[^-/\d\s]*[^-+',./:@[:alnum:]\[\]]+lllllllllllllllllllllllllllllllllllllllllllllllllFllllllllll'��F�J�u�0X}�\6$
0�;r�m'��F�J�u�0X}�\6$
0�;r�mh	5����lUllllll6$
0�;r�mh	5����lUlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll����������Pe�������������`T
pb�����������PF�������"��'��- 1��60*;0*����?��D����J����N����V��X���\����`0*bh[f����j os@8u z`s������~�p������������0*�����������PF�`T����������������0*� ������������p��~��p����`T�� �`s���PF�PF�����������~��������`T�XM��p������PF ���������������� ����(��-����1����5��:��?���C��H��M����������\pba81f�pk�~q0*t��v`Tz������p�`s�����������@8������������pb��������{�L�������@8�����PF�����x����@8��~�`T�H?������������pb����������������������������#�~(��,pb05ж:p�����������BPe��������������E����HPFR��W�P[��`H?��������l������npbpH?u�pz�~��@8�pb�pb���������ж�������������~�������81�0*��p��������������\��PF�����@W��������p����@8�~ ����ж �p&��+ ����/XM����5���;������?��DJ`s��O��S@W��\��a�~g������w`T|������������0*������������������������������������PF�`T��p���������p�����������pb��p�������������p�����������pbp�������ж`s���������@8.�p0A���N0*S@8W0*^@8f������k`Tp`s��u�P{Pe��������������`s���0*����������~��p� �h[�ж�����PF���������pb�PF�������������p�����`T�������������������������"p���'PF+����- 1����6�p;�~A@8����EPF����I ����������������V�p����Z���^�����������c@8����h������qpbv�p��������|����������������@W���p��������`s������������������PF�`T�@8��~����������������p���� ���������������������`T������~�����������������������������pb����������������������������������������������������������������������� ���������p�������������������������������������������������������������������&ж*Pe����������0������������������������;��?@W��������������D����������I����������������������������M�~����S ������������]0*��������b`T��������r����������v�����������������������������PF������������������������������������������������������������������������p����0*����������������������p�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������oxzqomstomsstpaepetpmstpettpetsteetaesteesteateasteasstpsteasternmastestcmmtmetmestcetdcestcatcastmagtmagstmstmskcotcstaqttfartfntfetbanatanastbntiphtatzp6mewtfstahstmawtzp5botbstpwtpontiotistawstmhtmezoratmeszchstpmdtcentralaedtactectacsteadtbrtchutbrstcen. australiadavtirstirktirkstbtnbttmountaincctwlfwtmsdwetwestwatwastwaktnstacwstchastcistaztcltazstclstmartzp4jstcentral asiaafte. south americacentral americaictpgtnrtmexicoawdtegtcxtegstphotalaskanntwtwest asiaacdtnptlhstafghanistankgirdtchotchostgmtgetnovtnovstfjtufjstpystnctkstkostgstirane. africawadtte. australiaschadttmtcidstaoemytwest pacificmutwitsastsaktnew zealandtotchinatostsstindiawarstsbtazotazosttahtnztdatelinenzsttokyocentral pacificqyztatlanticnftuttrtwftsrtpdtlhdtadtedtpktalmtwitawgtakstwgstkratkrastmid-atlanticmdtlintmalay peninsulacdtswtse asiavtongacktvetcaucasuscentral europehcentral europeannewfoundlandarabsctarabicarabianddutvosthastnepalnutfktfksthstidttltw. australiaegyptmyanmarnzdtgftuztnorth asiamvtgaltnfdtcvtnorth asia eastkgtaus centralpacificcanada centralpacific saazoresgamttftrfleakdtulatulastrettjtsouth africasgtndtrottsamttasmaniahovthovstgytyhadtsa westernhawaiianuytuystyektyekstkuytyaktyakstystjerusalemsri lankayakutskwibaus easterngiltus mountainvlatvlastgtbtaipeisretcape verdetktsamoasa pacificvutidlwfijiutckoreae. europesyotn. central asiatvtw. central africaekaterinburgvladivostokyaptus easternsa easternhdtrussianhktromancew. europeydtidlegreenwichgreenland	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������������������������������������janfebmaraprmayjunjulaugsepoctnovdecsunmontuewedthufrisat%0*ld%*ld%0*d%*d%m/%d/%y%H:%M%I:%M:%S %p%H:%M:%S%e-%b-%Y%*s%.*ld%a %b %e %H:%M:%S %Z %YcCxXyYdeHkIlmMSuUVwWy:ʅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��8���ͅ��X���ͅ��ͅ��ͅ��ͅ��ͅ������ͅ������ͅ��ͅ��s���������������������������������������1���ͅ��ͅ��ͅ��ͅ��ͅ��ͅ��ڈ��ً������j������H���Y���d���ь��ͅ��ͅ��ƍ�����ƍ��d���ʖ�����M��������������������2���Y�������ͅ��ͅ��ͅ��ϔ����ͅ��ڈ��ً�����q���q���ͅ��ٕ��ً��ͅ������d���ь����������ͅ��ʖ��ͅ��8�������j���ő�������������ٕ��
���AMPMJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberSundayMondayTuesdayWednesdayThursdayFridaySaturdayCDdeFGgHIjkLlMmNQRrSsTUuVvWwXxYyamdeHImMSuUVwWy_fail_cent_merid:::zpma.m.p.m.���������������������������������������������������������������������������������������������������������������@�������S������������������;��������������������������R�������"�����������#������#���~���ӣ��q���������������������������@�������z���Ϫ��Ϫ������H�����������A������;���w���������R�������<����������%���c���Щ������q���\A((?:gmt|utc?)?[-+]\d+(?:[,.:]\d+(?::\d+)?)?|(?-i:[[:alpha:].\s]+)(?:standard|daylight)\s+time\b|(?-i:[[:alpha:]]+)(?:\s+dst)?\b);x	.����	� ���	�(���#)��d�)���%*��$�*���'+����+��D),��(-��h(�-���(�.��0)�/���)k0���)E1���*�1��x+�2���+�3��@,i4���,C5��-6��l-�6���-L8���	�8���	�8���	9��
,9��$
<9��8
l9��T
:��x
,:���
\:���
�:���
l;���
,=���
�?��\A��l�A����B���C��D<E����F���LH��
�I��d
J���
�J���
,O��\O��8�P��d�P���Q����Q���<S��<�S��\�S��x�S���LW���\W���lW���X��H\[���l[���|[���,\���L\��\\��|\��0�\��D�\��X�\��l�\���,`��<`��|b��x�d����f��8<i���|k����m��X�m��l�m���ln����n����n���|o��p��,|q��h�r����s����u��lv��0,w��l�w����x���<z��{��L�|����~���,���H,����,����|����̆��̉��|���������l���@����d���,����\��������ܕ�����0L���T����p�����������P��������������̠��8��P���tL����L�������8�����l���������̳��l����������|�������������  ����D ����h ܺ��� ̼��� ����!ܿ��D!���\!,����!L���!|��"���"���0"���\"���p"���"<���"|���"���#,��D#����#����#|���#����#l��$���0$,��L$���h$L���$����$l���$����$����$�%��D%��`%l�|%���%���%<�&l�8&���'<
���'���(���|(,���(|��D)����)� ��*�$���*�&���*<*��(+l-���+0���+�2��T,�5���,9��-<<���-@���-�A��$.�B��P.�B��d.C��x.D���.<D���.,F���.LF��/�K��</�K��T/M���/|N���/,O���/<P��0�Q��P0�Q��h0<S���0LT���0�V��$1|X��h1|^���1�^���1<e��2\|��@3|����3����,4ܛ��T4�����4|���<5,���|5̶���5ܸ���5����(6̹��<6����6<����6\��7���d7<���7\���7<��08���\8����8����8L��9,��D9l���9L��9��:�T:��:��:��;l�D;��`;<�;��;��<���H<\����<����<����<����0=����`=����=�����=����=��� >���L>����>����>l
��?,��D?L���?����?L���?���4@l��l@|���@����@���@���A�%��4A�<���A�C���A�K��BLN��<B�Q��|B�U���B\X���B�Z��4C_��tCLc���C|x���C<z��,D�z��`D<|���D�|���D<~���D�~��4E�����E����E�����E\���F���0F,����FzRx�$��FJw�?:*3$"D����\p.��Jp�.��W��.���/���/��
��.��$E�^ �/���A�G M
AJ�/���/��+H^,�/��nD H
D H0���A�G M
AJl�0����,2���\��4��wB�B�B �E(�D0�C8�F��
8A0A(B BBBFD�J�V�A�T��5���B�E�E �E(�A0�A8�I`phJpWhA`]
8A0A(B BBBA8L06���B�E�D �C(�FP�
(A ABBG@��6���B�E�E �D(�C0�FP�
0A(A BBBA8��7��ZB�M�G �D(�GP�
(A ABBEH�8��_B�I�E �B(�D0�C8�I��
8A0A(B BBBGHT�9���B�G�E �B(�G0�D8�G��
8A0A(B BBBCH�,;��VB�I�E �B(�D0�C8�I��
8A0A(B BBBH(�@<��oA�L�F@T
AAA8�<���B�E�B �D(�D0�V
(A BBBBHT=��EB�B�B �B(�A0�A8�G`�
8A0A(B BBBH�A��"DO
EI(�A��0A�A�D0�
AAG4� B��gB�B�A �D(�K0I(D ABB$XB�� E�V @\B���A�G P
AG\d�B���B�F�B �B(�D0�D8�F��
8A0A(B BBBGF�N�\�A���C��FA�_
HY�(D��AAK,D��8H�T
A@PD��RB�B�B �D(�D0�FP�
0A(A BBBD`lG��thG��D�dG��F�A�A �n
ABGt
ABI~
ABAL�<H���B�B�E �E(�A0�D8�I�r
8A0A(B BBBH �J��4�J��0H�J���B�D�A �G��
 AABA|0K���<K���8K���DK���PK���LK���XK��HTK��NB�E�B �B(�A0�A8�F`

8A0A(B BBBA zRx�`������(����� N��	H�N��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG�����H	�O��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG�����H`	�Q��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG\����H�	�S��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG����H 
�U��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG;���H�
|W��=F�B�E �B(�A0�A8�F`�
8A0A(B BBBG|\����
\Y���
XY��0TY���B�D�A �DPt
 AABA(<�Y��nE�A�D z
DDLh�Y��|�Y���D z
A�dZ���D z
A8��Z��iF�E�A �A(�F@�
(A ABBGH�\��B�L�B �E(�I0�D8�D`�
8A0A(B BBBH<�\��HP�]���B�E�L �B(�D0�I8�D`�
8D0A(B BBBF��_���D c
I8�4`���B�N�D �F(�L@|
(A ABBH0��`���B�D�D �L@r
 AABD((
$a���E�H�I@u
AAC@T
�a���B�F�B �D(�D0�I@�
0A(A BBBG8�
$c���B�E�D �A(�G@�
(A ABBBH�
�c���B�I�E �E(�D0�C8�Gp�
8A0A(B BBBG@ \e���F�B�B �A(�D0�FP�
0A(A BBBFhd�f��TB�L�E �E(�D0�A8�G���F�a�A�[
8A0A(B BBBGl�G�Y�A�\��h���F�B�B �B(�A0�C8�Gp�
8A0A(B BBBH�xM�F�F�Sp 0|j���A�G0m
AJ(TXk��CA�A�G@�
AAA �|l��IE�J0�
AB\��m���B�L�B �E(�D0�C8�F�r�G�X�A��
8A0A(B BBBG`Hp���F�B�B �B(�A0�C8�G��
8A0A(B BBBH!�M�F�F�S�8h�r�� B�E�A �A(�GP�
(A ABBC ��t���E�J0l
AA �$u��3E�K0J
AE �@v��3E�K0J
AE\w��@Hw0(�w��#B�A�A �G@�
 AABB(\�y��CA�A�G0�
AAD��z��*H^��z��-H^ ��z��2O�IH�H�I��z��]H j
N(�4{���A�G m
AJl
ACl$�{��F�B�B �B(�A0�A8�GpjxG�K�I�B�B�B�E�Sp}
8A0A(B BBBA@��~��KF�D�D �F���H�f�A�q
 AABKp������F�B�B �B(�A0�D8�I��G�B�B�B�B�E�A�U�A
8A0A(B BBBBLЂ��\H e
K_0l����G�A�G i
d�K�IP���|���)HV
BH����� HP �����#E�G0@
AC �����#E�G0@
AC@ �����B�G�D �G`JhKpFxF�Y`x
 AABFXdh����B�H�D �D(�G���H�^�A�{
(A ABBIm�H�X�B�`�܈���B�B�B �B(�D0�A8�G���K�F�F�\��
8A0A(B BBBK0$����F�A�A �G@W
 AABFX���� HP�p����2B�I�H �A(�D0�G@�
0F(A BBBH&
0A(A BBBJV
0A(A BBBBZ
0A(A BBBF �X����c�wn�H� ����c��S�H� <���c�wn�H� `����E�K@�
AH ������E�[
H�
P �d����E�[
H�
O �@����E�[
H�
P����PHGTT����F�I�B �B(�A0�D8�DP�XL`PXAPZ
8A0A(B BBBE4`���E�H�D m
DAEYDA0�����B�D�J �D@
 AABE�����)H \0�����F�D�D �F0�
 AABC8����F�I�A �A(�Dp<
(A ABBI4Tx���$A�K�D0�
DACj
DAA�p���=D0x�����(�����E�K�D`�
AAH�x������������0 ����5F�D�D �F0�
 AABFLT����dF�B�B �B(�D0�K8�D�i
8A0A(B BBBF$�ȱ��1E�G�D TGAH���UF�B�B �B(�A0�D8�Dpa
8A0A(B BBBH �A�G0z
AE <��A�G0~
AI`����nHV
bN����H|
Dw�L���(HX�d����HR
F�ط���HR
F�L����HR
F�����HR
F(4����HR
FD�����HR
F`����HG
Is������He
kN(�����lA�A�G0K
AAJ�@���cH U
A�����cH U
A�� HP@�3F�I�B �A(�A0�G`V
0A(A BBBH(`��fE�A�D s
DDK0�0���/B�A�D �N0�
 AABA��,���X B�B�B �B(�A0�A8�G�>
8A0A(B BBBAk�H�W�F���H�W�G���H�V�G���H�^�E���H�^�E�Z�H�]�D���H�`�A���J�O�F�D�D�N�l����mB�B�B �B(�D0�A8�Gp7xG�E�B�B�B�B�B�XpX
8A0A(B BBBEL��EF�B�E �E(�A0�A8�F�R
8A0A(B BBBJ$zRx��������,���L�l�EF�B�E �E(�A0�A8�F�R
8A0A(B BBBJ�����LX�EF�B�E �E(�A0�A8�F�R
8A0A(B BBBJ�	���LhD�EF�B�E �E(�A0�A8�F�R
8A0A(B BBBJX���L�0�EF�B�E �E(�A0�A8�F�R
8A0A(B BBBJ�����L0 �&F�B�E �E(�A0�A8�F�M
8A0A(B BBBG k���L� ���F�E�B �E(�D0�A8�G��
8A0A(B BBBH$zRx��������,����< !,����F�E�D �C(�D�
(A ABBKL`!����B�B�B �G(�D0�GP�XG`UXAPX
0A(A BBBFL�!���,F�B�E �E(�A0�A8�F�M
8A0A(B BBBG�S���L"����F�E�B �B(�D0�A8�F�(
8A0A(B BBBD����Lx"���F�E�B �B(�D0�A8�F�(
8A0A(B BBBDhC���L�"P��,F�B�E �E(�A0�A8�F�M
8A0A(B BBBG�����L@#	��,F�B�E �E(�A0�A8�F�M
8A0A(B BBBG03���L�#���,F�B�E �E(�A0�A8�F�M
8A0A(B BBBG�����L$����F�E�B �E(�D0�A8�G��
8A0A(B BBBDx	���<l$ ���F�E�D �C(�D�
(A ABBK(�$����A�C�GPp
AAC�$����$��� %����E�G@n
AE$%h��(HX8<%����F�B�A �A(�G`�
(A ABBHx%4�� HP0�%<��LF�A�A �G`�
 AABG�%X��(HX8�%p��2F�H�A �{
ABC�
ABF(&t��cA�A�G@N
AAG(D&����E�A�G@Y
AAH0p&<��F�A�D �D0�
 AABA0�& ���B�A�A �G@�
 AABK�&t!�� HP0�&|!��MF�H�A �D0�
 AABFP$'�"��F�I�B �B(�A0�D8�DPFXH`d8A0A(B BBBHP0x'T#���B�D�A �G@t
 AABJ@�'�%��wF�B�E �A(�A0�J@�
0A(A BBBE@�''���F�B�B �A(�D0�JPS
0A(A BBBD04(�,��IE�D�J U
CADOAD4h(�,��hF�A�A �D�Z
 AABF$�(3�� F�I�L �H(�A0�D8�D�7�H�X�B�[
8A0A(B BBBF��H�W�A�8�H�H�B�B�B�B�B�X�X�T�E�B�B�B�B�B�O���H�M�O�C�E�B�B�T�t�H�M�O�C�E�B�B�T��H�X�B���H�X�A���)I��F�B�B �E(�D0�A8�I�3�K�F�F�\�v�H�A�D�A�D�B�B�W�u
8A0A(B BBBK`P*�V��$B�B�L �B(�D0�A8�L���F�F�F�Y�
8A0A(B BBBF$�*xg��*E�D�I IIAp�*�g��
F�B�B �E(�D0�A8�I���H�A�D�A�D�B�B�W�u
8A0A(B BBBKpP+,t��qF�B�B �E(�D0�A8�I�}�H�A�D�A�D�B�B�W�u
8A0A(B BBBJ<�+8����F�D�H �G0J
 DABFi DAE0,�����E�D�G0E
DAFiDD@8,���F�B�E �D(�A0�G@�
0A(A BBBA0|,���F�D�D �F0L
 AABD�,����`�,����	F�B�L �H(�D0�A8�G���S�F�F�Y��
8A0A(B BBBG$(-4���XE�I�P sAALP-l���F�B�B �E(�D0�C8�D��
8A0A(B BBBHH�-<���F�B�B �E(�D0�A8�Fp�
8A0A(B BBBG`�-p���QF�B�B �B(�A0�A8�Q���J�B�A�]�e
8A0A(B BBBF0P.l���F�D�D �F@u
 AABC0�.X����F�D�D �F0L
 AABD(�.����E�D�J p
DDE0�.h���F�D�D �F@u
 AABC0/T����F�D�D �F0L
 AABDHL/���F�B�B �B(�A0�D8�JP�
8A0A(B BBBC0�/4����F�D�D �F0L
 AABDp�/��?F�B�B �E(�D0�C8�G���N�F�F�Y�L�J�^�A�o
8A0A(B BBBA @0�����E�E
V8d0h���\B�F�E �A(�H0�~(A BBB8�0����aB�F�E �A(�H0�C(A BBBD�0�����B�B�B �E(�G0�A8�G@l8C0A(B BBB($1���GF�D�J mAAA��DP1<����B�F�B �B(�D0�C8�F@�8C0A(B BBB0�1�����B�D�D �G0Y
 AABB�1 ���ML�c
A(�1T���uE�L�D x
FAD(2����uE�L�D x
FADH@2����"B�E�B �E(�D0�A8�Gp-
8A0A(B BBBG@�2���F�B�B �A(�D0�O@H
0A(A BBBBL�2�����F�B�A �G(�L0m
(F ABBDu
(F ABBH( 3����}E�A�O z
FAJ,L3����F�A�G �X
FBB8|3��F�A�G �X
FBBr
FBF,�3�����F�A�D ��
FBG(�34���}E�A�O z
FAJ(4����}E�A�O z
FAJ(@4ܿ��}E�A�O z
FAJ8l40����F�B�A �A(�O@�
(A ABBH(�4����A�A�G0w
AAF<�48��eF�E�A �D(�I�
(A ABBG<5h���F�E�A �D(�I��
(A ABBDHT5���F�B�B �B(�G0�A8�L`B
8A0A(B BBBD(�5L���A�A�G0m
AAH<�5���F�E�A �D(�I�{
(A ABBF,6���G
A�C
D��E�E�D��
H<<6����F�B�B �G(�A0��
(F BBBD<|6P���F�B�B �G(�A0��
(F BBBD4�6���eF�B�A �G(�L0}(F ABB�6���7���	47���uF�B�A �G(�L0M(F ABB4T78��uF�B�A �G(�L0M(F ABB,�7���bE�C
H����H�
HH�7���F�B�B �B(�G0�A8�Lp
8A0A(B BBBG<8D���F�E�D �A(�L�R
(A ABBD<H8���F�E�D �A(�L�A
(A ABBE8�8�	���F�E�D �A(�Ip-
(A ABBD<�8��uF�E�A �D(�I��
(A ABBF<9H���F�E�D �A(�I�6
(A ABBK8D9���F�E�D �A(�Ip-
(A ABBD8�9\��UF�E�D �A(�I`�
(A ABBC<�9���UF�E�A �D(�I�
(A ABBD<�9���%F�E�D �A(�I��
(A ABBH@<:���+F�E�B �A(�A0�GP�
0A(A BBBF0�:|4���F�D�A �D0K
 DABG0�:6���F�D�A �D0C
 DABG0�:t6��TF�D�A �D0G
 DABC0;�7���F�D�A �D0C
 DABG0P;8��TF�D�A �D0G
 DABC4�;89���F�D�A �D0R
 DABHL�;�9��
B�E�B �B(�A0�A8�G�D
8A0A(B BBBA<pS��	($<hS���B�A�A �b
ABG8P<�S���B�E�D �D(�G@P
(A ABBD(�<PT���A�C
D��E�D�[
DL�<�U��!B�E�B �B(�A0�A8�D��
8A0A(B BBBA8=�v��F�B�D �D(�G@Z
(A ABBIGNU�`R R�j#��p`�@�`^0]� ]]��������0T�hPi0���� k�������� S!
��! �(�1�7��=�B�G�N�X�`�i���������������������������������������������8GQ��2
X��j#�j#���o`��
�p#��&�	���o����o�oh���okpm#�2�2�233 303@3P3`3p3�3�3�3�3�3�3�3�344 404@4P4`4p4�4�4�4�4�4�4�4�455 505@5P5`5p5�5�5�5�5�5�5�5�566 606@6P6`6p6�6�6�6�6�6�6�6�677 707@7P7`7p7�7�7�7�7�7�7�7�788 808@8P8`8p8�8�8�8�8�8�8�8�899 909@9P9`9p9�9�9�9�9�9�9�9�9:: :0:@:P:`:p:�:�:�:�:�������������������������������������������� �(�1�7��=�B�G�N�X�`�i�GA$3a1�2e�GA$3p1094�B)�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094p	U�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYpR��GA+GLIBCXX_ASSERTIONS
GA*FORTIFYp	)�GA+GLIBCXX_ASSERTIONSdate_core.so-2.7.8-141.el8.x86_64.debug��V�7zXZ�ִF!t/��<�*]?�E�h=��ڊ�2N��D� ��Nz�~X�o���YBϮع�Y0.$אC+HNW�Ə4�l6���æ�vt��cp���ji7���$��r�Ӟ>)۸ZL+�!�^͟�L{�@�qa�8&����#���I�>��I��K}�/!��+PIc簧��Ȍ$�"&,N�� ���:m	�N��RAl�T�S�,�锺L|j��9�싻�ڱD��kиP�kÂY��$s����f�i��'m�rY�~�9��q�.�y,ڼ�r�kg�<Ї�	����%ġ�v8�f��a�0q�U����T�?s��a��\`93}۲��:/�|��"'�Q
5��B�^��K��R�^��w���z�ˢ�n���h��GGz�w�9`��S����6n�r�� ���};ER�<�%V�':��~�G]t�J������/��2��
�7�p�R�c.��	�".��(�|2��4i����J�p~��m�*�4��r&�\8���X�gt�	%���4?6�i���@P���;؎�,�[�?=ۢ%d܃�G��L�B;�����C�Eל/+��Ć�m
�4�MO�s��˔C�½p�*�i���U&����ʡ6\��9�^����7�LLA[���ǒ�8t�/
�9r��GLT�sƔx@{뷣�s�4s2r�kf�����6�0��!�j�?eW�#�TnS�\��
�s*�%�ɻ��L#f�#qh�ÿ�q~]�\s��P@y`k��P+�x�q~fI&�	w�O�T��s�I}����)ޮ/�Q�T�]�)M���F>��rL�V+n����#��-�E R���zu�V�O�?&��Bsw�rhm0RMTQfr�*2��ic��,�5BƸ}����A/9Ti��ȋ\BW���O�U�� �NE�Y<K����<-�K��a'�_��R���ZR���[��C���S��8^0<��v�WE�Έ
��1Lz0~��#´_M"�QS�0�5���fV���5J�?s��#���>�2��I�Z'X6�ؒ��;"|���2°�2��C�nBf��@o����^H��>�E;P���1·ߴ#2,�R�ᚿ�l8��<4��r�!]{X�#�A���(�$,��G�n�_Х��{
]��[Cχ_�un*QT��
��}v�d"�@xzjڜr<�b�}��,�	��LE<N����Gm��4�ȳ�CR�sfQ�[V���_Z)����g�{����m��A8��@����%��凬�e�
�����~���H�MX�|��w.���R}��YK�b~��$*�O���#�O�}]ϑֹƞ�,�]�=zb��P���ۜ�7�F���@l<s`���>�	P�����E��������>�N�K<��w��A/�z֍�#�;�%Y���(_����_Uq�Sw�1�ЋՔW����Zl���_>Z����$����lzD�e�g�-c��k]E���L��S+H/{��#g�������{�`�+� k�)j�^̤�M������YG�3�󮥐/�䪎�(��c���s��w�x rQm�2=�e��|�K���(��\W��I�f���a0�-5��b�}a��Zr����uR�bw���"xzA�n8]�ʈSkW�$	���'�(��3��f��e4*HW���	����-��(��BUpӎ~�>�B�77��̱6t
��Ik�-BhR{��򇪚�Qa~S�
����T�5�VŒ�f4��O�FX?}���DŶRʘ���[w(�&�'<|�:��EbP�|i?lWƯn���2L��1ձ"�{����� ,�U�h�v� S���D�da껸���b���ڮ>��D�aȺ�@���FT��(c��;)�%s�wD/�,�[؏��1r�v��Ջ�K�p����c�u���Cpu�C��0%;��p�qZ\LW���9���D2��Bwו�”��:��u�Vr�����OY�*��l|�ƍs��A�Z?��~+��[��+�Q~���D��jcg	�;i�lX"�=&"�boh�A�����G^�Q(88"��ȻMIW��%�y7�Kcɫ���DF�/��L
�*E�x�V��"Jk�1�_�n#��Ne�rZ�'U�Nb���O'h�
?P�p�
{*�s*b���Ym�K^4�ݺ�����jy�ȕ����J9I��v��2AJ����:�3&�=u1l��pb �v��/�}�<�];p֠�szҍ��Q�r�K{[�2�A5��%}��1mN���	�4������k��Ǧ����/);s5�
+��e���U)	Z��V�}�A�##kF���/�����^�<�5
�c�;�������U�}9��~���U�)%�u4�(�Ũ���:uKh��e��q�-r��ȱ�%Qc��j��l[;:��>�����8��!�1�uː��?ߴ�~��3���5Y}h�W��@�Y<��'8�cE.e�'(��UD¬.
�ƦpJ-�)�n�O�����q��͐p��4��ʇ�(���f�PmQ���O 7�����ю�]~��D5A�x��cHPh[�:-xjRV،E
�����z�D|&K%_2\�a�a�
\�e��l���H�3W���1�)���%�x��P����F2�h�˰1n��iY�nrFϤfļW��>���rs��~v�f�-\�e�)�C/�_ȳ%���U�N>fT}���ۏO�_k�r�R�i��S��4-e��ζ��V�=�i( �Z����)�{,�,]�t@ÙOu��l'�"Y��h��)�,����l�r)	NA�I�EW84�M�3]I�\F�\#�*Щ	� E�b< '��cr��H�lv�a��mô���vhk^q��|�&t0X�81!G��o!Gd[�A5�5!��͚��̌;u����S�0bk��ۆ����##[b�`��2�;���e����wP5�\$�Dr������ʼ���I[S��/�Z��ǵ�;���$dq��˪���b���u+.3��T3]�ru0`�U���n�Ӂ⵪ܷ��̝%�]}Ū��]'�	pR�8�ӟb�����K����\3�
p��4����B��Nۆ�q���d��\�z��VfB8r=��AU�����W�Z�*�zX��q�G�m{�Y�DJE#�W�n����}-��|���G^m��@6nP��JP�x\��D
�f�r�8|ԋ�L��%��ı��f"��$l<n`ir�͔^��O[x�5\*�9^��ā�����*��>I�2�_��������<�ڔ���P̀+�v�χ*��&Z*eY�#���t�ײ���PL�N�Xޝq�}G��Q��yl�B�����O��0$�aT��;S���J*~�)�� �Y]N��O��Yl�UW��v&�;3�}�.��*X�CK?�k|�-f��F�5l���9=i+C��,~��)׎,؂
ź��c={+DA!��W�S^�^�� �&ǒ��C�.�O+��_B��V�	�x���σq�j�ḅ�R�Hÿ��b�֛
MO��y��-I��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``d(���
0���8���ohh(E���o���T�^B�&�&�h�2�2c�2�2n�:�:�w�B�B��}X�X�
������> �$$|	��#�#D=��`�` ��j#�j��j#�j��j#�j� �pm#pm��`o#`o��p#p� t# t� ��v#�v��؈c�vdL{,"x{l�1PKLH[v�=��lib64/ruby/fiber.sonuȯ��ELF>�@�@8	@xx �
�
 �
 PX �
�
 �
 ��888$$���  S�td���  P�td���$$Q�tdR�td�
�
 �
 ((GNU	��J����$6Z텱����@ BE���| ���qX ` , F"�( �0 U�	�( __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_fiberruby_Init_Fiber_as_Coroutinelibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5/opt/alt/ruby27/lib64�ui	��
 ��
 P�
 �
 � � � �    ��H��H�i
 H��t��H����5r
 �%s
 ��h�������h���������%M
 D���%E
 DH�=A
 H�:
 H9�tH��	 H��t	�����H�=
 H�5

 H)�H��H��H��?H�H�tH��	 H��t��fD�����=�	 u+UH�=�	 H��tH�=v �Y����d�����	 ]������w������������H��H���GNU�;$����@��h�����zRx�$h���0FJw�?:*3$"Dp��� \8���	�P�
 }���p
��
 �
 ���o`��
� 0@��	���ox���o�ob���o�
 ��GA$3a1p�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignfiber.so-2.7.8-141.el8.x86_64.debug�R�g�7zXZ�ִF!t/��
��]?�E�h=��ڊ�2N������(�;'&���RP��L(EjP�Z�	T}4"L뷛.�G$Ղ�9$�8�G6pcuLp�!�y9�� ���4��x�i����0��>b�q�O�I=F��Y{]���=+����~�0����̐SW�i>�Vx�2���
*�W	~����?�&�E��w| ���dR)6����4��g�^W�s]_�1m�.�v����%�:L�a{�����j��a�d{���[���+�!1�C�}��e��Iq�,`~ t�E'��%M��϶,�E%�1�y��P��$�¤�=��`��wqb�R�5$Y���%?��)�h�mm�/����~��|È(At�4"ns�\o4�Te��a�Y�F�]2��"=��IHM�H�}�^��P�=����~ܙR���{�C~���u�UP
�2�����A���,���{u�,ۉ=����\�Kv�$���A��,�o2�*���j1��Z���.<��r�r�$ǣ�}�F1n��7���tb�ȍ��(��B�d 1���=<��!o��������\hb��2�y`���w����I�{��4�� ���m��t��>�#d¸?�Y�.cb)A�&1llE(����V07
�yY�����T.�@
Mo�"�*�^�T�l��<�D�M�Z�&'�$s^���K׎��툩��ُ�B>�Y%�<5�;P@ر
3D�����Q�'L�9���u5ı�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.note.gnu.property.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���obbE���oxx T���^B@@0hppc��0n�� w���}��
��� ���$�p��
 �
��
 �
��
 �
��
 �
��� � � (�( (�0`(�(D(l#PKLH[�e���@�@lib64/ruby/pty.sonuȯ��ELF>�@�9@8	@�-�- �-�- �- x� �-�- �- 888$$�-�-�-  S�td�-�-�-  P�tdp*p*p*llQ�tdR�td�-�- �- XXGNU�/tC�G+^�+�y@��R>I�@  IKLBE���|�qXu�U�i��L 2�l�g�,����Np���/U	'|� �����u�y%�e��"�"X��E�"�9��r�� �, �F"]�a?�\�4 2 @2 ; 2 ��(�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_ivar_getrb_intern2rb_ary_entryrb_io_closeposix_openptrb_fd_fix_cloexecrb_grantptunlockptptsnamerb_cloexec_openrb_update_max_fdstrlcpychmodrb_eRuntimeErrorrb_raiserb_keyword_given_prb_fix2intrb_waitpidrb_last_status_getrb_free_tmp_bufferrb_error_arityrb_num2intrb_empty_keyword_given_pkillrb_sprintfrb_exc_new_strrb_iv_setrb_exc_raise__stack_chk_failrb_detach_processsetsidioctldup2getuidseteuidrb_exec_async_signal_saferb_gcrb_cIOrb_obj_allocrb_io_make_open_filerb_obj_freezerb_cFilerb_str_new_cstrrb_assoc_newrb_block_given_prb_yieldrb_ensurerb_execarg_newrb_execarg_getrb_execarg_parent_startrb_fork_async_signal_saferb_execarg_parent_endrb_io_modestr_fmoderb_cloexec_duprb_ary_new_caparb_ary_store__errno_locationrb_sys_failgetenvrb_jump_taggetpwnamgetloginInit_ptyrb_define_modulerb_define_class_underrb_define_module_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libutil.so.1libm.so.6libc.so.6_edata__bss_startGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64*ii
Gui	Q�- 0�- ��- �- �/ �/ �/  �/ )�/ :�/ >�/ @�/ G0  0 (0 00 80 @0 H0 P0 	X0 
`0 h0 p0 
x0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 1 !1 "1 #1 $ 1 %(1 &01 '81 (@1 *H1 +P1 ,X1 -`1 .h1 /p1 0x1 1�1 2�1 3�1 4�1 5�1 6�1 7�1 8�1 9�1 ;�1 <�1 =�1 ?�1 @�1 A�1 B�1 C2 D2 E2 F2 H��H��H�� H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@��������%� D���%� D���%� D���%� D���%} D���%u D���%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 D���%- D���%% D���% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%} D���%u D���%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 D���%- D���%% D���% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�& H��t	�����H�=i H�5b H)�H��H��H��?H�H�tH�
 H��t��fD�����=% u+UH�=� H��tH�=� ����d����� ]������w������H�5� SH��H��tH��[����H�=Q
���H��[H��H�� �l���ff.����UH��S1�H��H��H���F����uH�����t
�����t H��uH���[]�fD��H�P�R��x�H�������ff.�AWI���AVI��AUI��ATA��UD��SH������������É����������������������������� ���H��H����E��u_1�H�ϾH�L$����H�L$���A��t^��H�L$����A�H�L$L��E�&�H������H��1�[]A\A]A^A_�fD��H��H�D$�>���H�L$���u�@��������uH�������[]A\A]A^A_�H�� H�5�H�81��i���f���AUI��ATUS��H��dH�%(H�D$1����H�$��������I�m��uoA�H��H����������H�޺�n����Í@����I�����������H�L$dH3%(�H��[]A\A]��M�e��~�H�<$tH���@����������������q���@�����~�H�$I�mA���uH��H���2���H������%���M�e��~��D��H����<$H�5]t1�������H�5S��H�RHE�Hc�H�=K1��+���H�=| H������H������H��H�5�H�����H������U���D��SH���H���dH�%(H�D$1�H�t$����~�{�F���H�L$dH3%(�uH��[����fD��AVAUI��ATI��UH��SD�7�_�`���D���H���1ҾT��1��(���1����������������������w2����������u2H�}[L��]A\A]A^���f����������L��L��H�5
���[�����]A\A]A^�AUE1�A��ATI��UH��SH��H��������uH��[]A\A]��K���H��D��L��H��H��A�[]A\A]���f.���AU�ATUSH��8dH�%(H�D$(1�H�l$H�t$H��H�|$�f���H�' H�8�w���H��I�����H��H�=CH���@+�D$�C1����H�����H�CH��
 H�8�/���H��I���d���H��H���@;�D$�C���H���S���L��L��H�C�T���H�������u(H�T$(dH3%(H��u3H��8[]A\A]�f.�H�=Y
 H��H��H��������H������ff.�f���AWAVAUATUS��H��H�-:
 H�t$H�}dH�%(H��$�1��Q���H�}I���E���L��I���z���L��I���o�����H�t$�D$$I���1ɺH�l$`������H�\$@H��H�D$P���H�|$PH�D$X���1�H�t$ H��H�|$����D$H�|$$H��A� �H�l$HH�5����D$@�D$ �D$p�D$DH�D$pI��H�D$�����!�|$ �D$H������H�|$P����T$�D$H�\$0�T$<�D$8H�=WH�D$P���H��A�D$�D$8A�D$����H���r�H�=*I�D$�Q����|$8��A�E���A�E��������]���I�D$�I�E��1�L��H��H������L��H������HcT$<�H��H�T����N�������H��$�dH3%(H���H�Ĩ[]A\A]A^A_�f.����|$H�Ë(���|$ ���H�|$P�j����|$$�+��uP�|$pH�=HE|$���f�H�=�D�H��H��tL��H�t$(H�D$(�����;�H�=q H��H�L$8H�������(�����H�=����H��t/H����H�=~H��t�H�x(H�nH��HD��x���@������t�H�=n�8������H��H�=X�������H�����H�5DH��H�	 �:�H�=	 �����H�w���H�5"��H�=� �����H���H�5	��H�=� 1�H����H�5���H�i H�=� H�5�H���1�H�����H�5 H�� H��H���@���H��H���statuscan't get Master/Slave devicestoppedchangedexitedpty - %s: %ldseteuid()masterpty:%s/bin/shfork failedSHELLUSERrwdup()PTYgetptyspawncheckopenChildExited;l������� ������������x������������$���p0����p����zRx�$P� FJw�?:*3$"DH�\�DL�L
HU(|0�eE�D�F k
FAG`�t�'B�J�E �E(�D0�D8�DP�
8C0A(B BBBGo
8F0A(B BBBA8@����F�E�A �A(�F@�
(A ABBH H���ZE�L B
AAHl����F�B�E �D(�D0�^
(I BBBNc(F BBBH�t���VB�H�D �D(�G0M
(A ABBDI(S ABB8����#F�G�A �A(�D`�
(A ABBKL@|���8F�B�B �B(�A0�A8�I�
8A0A(B BBBK�l����H�GNU�0��-  *]0
�)�- �- ���o`�	�
s0 	���o����o�oD���o�- `p�������� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`GA$3a10�)GA$3p1094@�)GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS@�
GA*FORTIFYpty.so-2.7.8-141.el8.x86_64.debug���7zXZ�ִF!t/��W�]?�E�h=��ڊ�2N����� ����e֔�������
��Xu"\-B�$�36%~�X�t�6�M�	�WGFa�FD��<�ɸ��--kKE[���IIm��)�P�S�c{l${�Я�K��bt�jͺ�#@����7[)�7fꟀ�"3�>$�1�_�&�sJJm�̃�:�������XR8_.=_P21�(�\�^��׌\CW�?4�Us���e���6�Z��$(���ߝF��s�s�|hѼ���,���m��B�sT2}L���Q����žT��],�m�,�Ϡ��Ns��eF��^q
�=�\�3j���

���i��7�J<�S!��`��]�{Us���6��2;�8#M5�US�����;�7r��E��maLd��Q?�s��~g�)[J��r6����B1�0�w{�s�SMJ�t.]hI�>L=^눜�1�
ߜ)en��b��_a��D��)W���D� �ZD����+_-BȦ<n�
�Pΐ�g���P�v��K�X�*�L�\,�ʂ��9l*�D���}�
B}N�_�����B���*��M�[�Y�9��0�d��<ͳ��[D4���ua�`�̿g���FB|��Edb�B�c}�y�%����U��Ȉ��XH7jG��)w��'�l�)U&8�B*Z�
!����>|QIT-��X̓l0��t΄4�Ա!�\Ŏ��;{A^`;�'�-��.��c+����\{֝%K�x�w%�EMS��7�~�������	4~"#��%:��p��<L@��0,�̤��8��T/=ܵ�
:ޙ$<��@z�����_�ȷ��!z��b0vm�_��ҀJdr���Y}Vm�/�0FH�;:��Ov>�z��$k��ү!9���4�x^K9��%]�W+��T����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��80�	�	s8���oDD�E���o��0T^Bh00cPP nppw��0}�)�)
�2�)�)��p*p*l��*�*���-�- ��- �-��- �-��- �-��- �-��/ �/@�0 0 � 2  2 �@2` 2D
d4(�4�\8+PKLH[�YKV��lib64/ruby/socket.sonuȯ��ELF>��@0�@8	@p�p� 0�0�"0�"�
� ��"�"888$$P�P�P�  S�tdP�P�P�  P�td������t
t
Q�tdR�td0�0�"0�"��GNU�ؖe_�rs�<�k��OmZa�
� � ��P�
�JP��H�H���1�@%D!GAD(`� $�"
�H��@@�D "� �WH�
"C$�   �p��8�������������������	
 #&'(+,-.26:;=>?ABDEFHIJKMOP:6�'H�As!�k����>3ѓ��`<�����3�`���7u+/Ze�/y�蘵~KU��K%f<���
�o�xvL���qzN����:|�ys>xD(h�V��tYi��jd�u�� ����B����62��W��R]��Ų9T��~CE��ȷ�0����*�����F�{]�FK�N����w��bQ���,��?�.�a�	b��-q)��[)uz�t;�ӊk4@k�=�@��ˌ�h�j�qXG��n`O��	%o��?f$��
��|��4�cu����UNn��H�����v2���0�tD}�p%R�%�q���@m�l�P��i���#&p%�L���V�
L�if\����y׫/��V�HL2M�c�'x���毷�NL4�\��
��U<H��Qvk]\��j�g�-��E��a�PNJK��a���g�!BMP�93��1��ց��d\�L������2�R��B�aSFjh'�i�D�n�yF�,K�U�!
��
���
�X�y�
�PD���
� �E`�Z�o�K}��
#-n�h�U�
��c1�,
J
�������|��:
DQ
�
~�[
��N�r�
�
� ���
���e�1m
dH��
��
u�
� ~�:l��<�t�"#N���7���Ir
&��#�=����"��"�~��-}
f!Z�q�$��E3?

R��3 �4r���>
N���D\�	E6, Y��
�a
F"p�V
�	X�&&�{��B�6� 4�]��Q��!dc�"�P���@3l@��Q,���k���Q���"��X���Q��p�
@M�-�}H�0�P�<���>���"X`��{	0��0��?��"��L_]`��%�L.���"*�{�`9��	
`���\��Qr��"^`�7��>	��"T�����i��"�0�p��h�y��&&�d�t��"\��"E�5V
�&oP�� �VLЈf0)X����F��� ���
�"�
�����9��"���"j	���"<`�hO	��QZp�\� �"������&`�[�{e8��V�)7.
0X/�
M.��"��DVБ��"3` 4�`��0�Q	��Q
�@Y�`�&���&�"�	P�7�p�Q�P6*�p�RzP�Q�
��ntP��� �?�Є"�H9�@6	P�Qx�3b�
0"n
0����L����M> I�6�?
0LE��n�`��@�(�`�>���" �5�0�Q	��Qj��9_
�@��	����`�7�N��`���	���	������"P��f	__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_thread_io_blocking_regionrb_string_valuerb_str_modifyrb_str_modify_expandrb_str_newrsock_raise_socket_error__errno_locationgai_strerrorrb_eSocketrb_raiserb_syserr_failrsock_init_sock__fxstatrb_reserved_fd_prb_update_max_fdrb_io_make_open_filerb_io_ascii8bit_binmodersock_do_not_reverse_lookuprb_io_synchronizedrb_sys_fail__stack_chk_failrsock_sendto_blockingsendtorsock_send_blockingrsock_s_recvfromrb_keyword_given_prb_free_tmp_bufferrb_fix2intrb_num2intrb_io_taint_checkrb_io_check_closedrb_io_read_pendingrb_io_wait_readablerb_str_locktmp_ensurerb_str_set_lenrsock_unixaddrrb_assoc_newrsock_io_socket_addrinforb_empty_keyword_given_prsock_ipaddrrb_error_arityrb_eIOErrorrb_bugrsock_s_recvfrom_nonblockrb_readwrite_syserr_failrsock_read_nonblockmemmoverecvrb_num2longrb_syserr_fail_path_inrb_eof_errorrsock_write_nonblockrb_obj_as_stringrb_io_get_write_iorb_io_check_writablerb_io_flushrsock_detect_cloexecfcntlrb_maygvl_fd_fix_cloexecrsock_socketrb_gc_for_fdrsock_connectgetsockoptrb_wait_for_single_fdrsock_make_fd_nonblockaccept4rsock_s_accept_nonblockrb_io_set_nonblockrb_obj_allocrsock_s_acceptrb_gcrsock_getfamilygetsocknamersock_init_socket_initrb_eStandardErrorrb_define_classrsock_init_ipsocketrsock_init_tcpsocketrsock_init_tcpserverrsock_init_sockssocketrsock_init_udpsocketrsock_init_unixsocketrsock_init_unixserverrsock_init_sockoptrsock_init_ancdatarsock_init_addrinforsock_init_sockifaddrrsock_init_socket_constantsrb_internrb_id2symrb_cAddrinforb_cSocketrb_cUNIXServerrb_cUNIXSocketrb_cUDPSocketrb_cTCPServerrb_cTCPSocketrb_cIPSocketrb_cBasicSocketrsock_family_to_intrsock_socktype_to_intrsock_ip_level_to_intrsock_so_optname_to_intmemcmprsock_ip_optname_to_intrsock_ipv6_optname_to_intrsock_tcp_optname_to_intrsock_shutdown_how_to_intrsock_scm_optname_to_intrsock_unknown_level_to_intrsock_udp_optname_to_intrb_check_string_typerb_sym2strrsock_ipproto_to_intrsock_intern_familyrb_st_lookuprsock_intern_family_noprefixrsock_intern_protocol_familyrsock_intern_socktypersock_intern_ipprotorsock_intern_iplevelrsock_intern_so_optnamersock_intern_ip_optnamersock_intern_ipv6_optnamersock_intern_tcp_optnamersock_intern_udp_optnamersock_intern_scm_optnamersock_intern_local_optnamersock_family_argrsock_socktype_argrsock_level_argrsock_optname_argrsock_cmsg_type_argrsock_shutdown_how_argrb_define_module_underrb_define_constrb_st_init_numtablerb_intern2rb_st_insertrsock_bsock_sendrsock_sockaddr_string_valuerb_str_new_frozenrb_io_wait_writablerb_int2bigrb_out_of_intgetpeernamersock_fd_socket_addrinforsock_sockopt_newrsock_sys_fail_pathrb_funcallv_with_ccsetsockoptshutdownrb_eArgErrorrb_io_closersock_init_basicsocketrb_cIOrb_undef_methodrsock_bsock_sendmsgrsock_bsock_sendmsg_nonblockrsock_bsock_recvmsgrsock_bsock_recvmsg_nonblockrb_define_methodrb_define_singleton_methodrb_define_private_methodrb_rescuerb_ary_entryrb_yieldrb_ensurersock_sockaddr_string_value_ptrrsock_unixpath_strrb_eTypeErrorrsock_make_ipaddrrsock_addrinforb_freeaddrinforb_string_value_cstrgetservbyportrb_str_new_cstrrb_eRangeErrorgetservbynameruby_strtoulgethostbyaddrrb_ary_newrb_ary_pushrsock_make_hostentrb_str_new_staticgethostnamestrlenrb_str_resizersock_addrinfo_newgetifaddrsfreeifaddrsrb_check_sockaddr_string_typerb_getnameinfostrcmp__memcpy_chkrb_check_array_typestrncpyruby_snprintfrb_getaddrinforsock_unix_sockaddr_lenrsock_sock_listenrsock_sock_s_socketpairrb_block_given_prsock_getaddrinforb_ary_ptr_use_startrb_ary_ptr_use_endrb_gc_writebarrierrsock_revlookup_flagrsock_syserr_fail_host_portrb_sprintfrb_syserr_fail_strrsock_sys_fail_host_portrsock_syserr_fail_pathrsock_syserr_fail_raddrinforsock_addrinfo_inspect_sockaddrrsock_syserr_fail_sockaddrrsock_sys_fail_sockaddrrsock_sys_fail_raddrinforsock_syserr_fail_raddrinfo_or_sockaddrrsock_sys_fail_raddrinfo_or_sockaddrrsock_sockaddr_string_value_with_addrinfobindrsock_sockaddr_lenrsock_sockaddr_objInit_socketrb_call_superrb_id2strrb_str_subseqrb_str_catrb_str_appendrb_str_cat_cstrrsock_init_inetsockrb_sym2idrb_unexpected_typerb_id2namersock_fd_familyrsock_freeaddrinforsock_recvmsgrb_str_duprb_obj_freezerb_obj_is_kind_ofrsock_cmsg_cloexec_statersock_discard_cmsg_resourcersock_init_unixsockrb_get_pathrb_protectrb_jump_tagrb_ivar_setrb_attr_getif_indextonamerb_str_catfinet_ntoprb_to_intrb_obj_classnamerb_str_dumprb_cSockOptrb_wb_unprotected_newobj_ofrb_check_to_integerrb_cObjectrb_define_class_underrb_str_buf_newrb_ary_new_from_valuesrb_num2uintrb_str_tmp_frozen_acquirerb_thread_call_without_gvlrb_str_tmp_frozen_releaserb_str_tmp_newmemsetrb_check_convert_typememcpyrb_ary_detransientrb_time_newrb_time_nano_newlocaltimestrftimerb_cStringrb_obj_revealrb_num2ulongrb_io_fdopenrb_freeze_singleton_classgai_suspendrb_data_typed_object_wraprb_gc_markrb_check_typeddatastrspninet_ptonruby_xcallocruby_xmallocstrtolrb_ary_storerb_getaddrinfo_agai_errorruby_xfreerb_cIntegerrb_ary_new_capagethostbynamerb_convert_type__sprintf_chkrb_str_equalrb_get_kwargsrb_extract_keywordsrb_check_hash_typerb_alloc_tmp_buffer_with_countrb_hash_newrb_warnrsock_inspect_sockaddrrb_typeddata_is_kind_ofrb_cDatarb_define_alloc_funcrb_cSockIfaddrrb_ull2inumif_nametoindexrb_class_namerb_cFalseClassrb_cNilClassrb_cFloatrb_cTrueClassrb_cSymbollibruby.so.2.7libanl.so.1libm.so.6libc.so.6_edata__bss_startGLIBC_2.2.5GLIBC_2.3GLIBC_2.14GLIBC_2.3.4GLIBC_2.10GLIBC_2.4/opt/alt/ruby27/lib64� ui	�ii
(���2ti	=���Iii
Tui	0�"��8�"p�@�"@�"`�"��h�"�x�"���"o���"U��"�S�"�"��"� �"(�"0�"�8�"@�"H�"P�"X�"�`�"�h�"p�",x�"/��"���"	��"���"J��")��"���"���"@��"`��"���"f��"i��"��"K��" ��"{�"��"��"#�"� �"�(�"�0�"S8�"T@�"H�"P�"IX�"�`�"�h�"Cp�"x�"%��""��"���"5��"-��"8��"���"���"���"���"���"���"N��"1��"���"��" �"(�"0�"8�"@�"H�"�P�"X�"�`�"	h�"
p�"x�"��"F��"��"��"���"
��"��"��"���"��"��"��",��"��"
��"(��"�"�"�"�" �"(�"�0�"8�"@�"H�" P�";X�"`�".h�"!p�""x�"#��"$��"���"%��"&��"'��"���"(��"��"���"���")��"*��"��"+��"-��".�">�"B�"0�"1 �"2(�"30�"48�"5@�":H�"6P�"7X�"8`�"9h�":p�";x�"<��"=��">��"?��"@��"��"A��"A��"��"���"B��"C��"D��"���"E��"��"F�"?�"G�"H�"I �"J(�"K0�"+8�"L@�"H�"MP�"NX�"O`�"Ph�"Qp�"�x�"H��"R��"S��"T��"U��"G��"V��"P��"W��"@��"���"X��"Y��"Z��"[��"\��"�"]�"^�"_�"Q �"a(�"b0�"c8�"d@�"RH�"eP�"gX�"�`�"hh�"jp�"kx�"l��"��"m��"n��"2��"o��"/��"3��"p��"q��"r��"s��"M��"t��"u��"v��" �"��"w�"x�" �"y(�"z0�"|8�"}@�"~H�"DP�"X�"�`�"�h�"�p�"x�"���"���"���"#��"!��"���"���"���"���"���"���"���"���"$��"���"���"��"��"��"��" �"�(�"0�"O8�"�@�"�H�"�P�"�X�"�`�"�h�"�p�"x�"���"���"���"<��"���"���"'��"���"��"4��"���"���"���"���"���"���"��"��"��"��"� �"�(�"�0�"E8�"7@�"�H�"LP�"�X�"�`�"�h�"�p�"�x�"*��"���"���"���"���"���"���"���"���"���"���"���"=��"���"���"0��"��"��"��"��"� �"�(�"�0�"�8�"�@�"�H�"�P�"�X�"�`�"�h�"�p�"�x�"���"9��"��"���"���"���"���"���"���H��H�	~"H��t��H����5""�%#"��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h�������h�������h�������h������h������h������h������h������h���q���h���a���h���Q���h���A���h���1���h���!���h������h������h��������h�������h�������h������h������h������h������h������h��q����h��a����h	��Q����h
��A����h��1����h��!����h
������h������h�������h�������h�������h������h������h�������%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%�m"D���%}m"D���%um"D���%mm"D���%em"D���%]m"D���%Um"D���%Mm"D���%Em"D���%=m"D���%5m"D���%-m"D���%%m"D���%m"D���%m"D���%
m"D���%m"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%�l"D���%}l"D���%ul"D���%ml"D���%el"D���%]l"D���%Ul"D���%Ml"D���%El"D���%=l"D���%5l"D���%-l"D���%%l"D���%l"D���%l"D���%
l"D���%l"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%�k"D���%}k"D���%uk"D���%mk"D���%ek"D���%]k"D���%Uk"D���%Mk"D���%Ek"D���%=k"D���%5k"D���%-k"D���%%k"D���%k"D���%k"D���%
k"D���%k"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%�j"D���%}j"D���%uj"D���%mj"D���%ej"D���%]j"D���%Uj"D���%Mj"D���%Ej"D���%=j"D���%5j"D���%-j"D���%%j"D���%j"D���%j"D���%
j"D���%j"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%�i"D���%}i"D���%ui"D���%mi"D���%ei"D���%]i"D���%Ui"D���%Mi"D���%Ei"D���%=i"D���%5i"D���%-i"D���%%i"D���%i"D���%i"D���%
i"D���%i"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%�h"D���%}h"D���%uh"D���%mh"D���%eh"D���%]h"D���%Uh"D���%Mh"D���%Eh"D���%=h"D���%5h"D���%-h"D���%%h"D���%h"D���%h"D���%
h"D���%h"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%�g"D���%}g"D���%ug"D���%mg"D���%eg"D���%]g"D���%Ug"D���%Mg"D���%Eg"D���%=g"D���%5g"D���%-g"D���%%g"D���%g"D���%g"D���%
g"D���%g"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%�f"D���%}f"D���%uf"D���%mf"D���%ef"D���%]f"D���%Uf"D���%Mf"D���%Ef"D���%=f"D���%5f"D���%-f"D���%%f"D���%f"D���%f"D���%
f"D���%f"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%�e"D���%}e"D���%ue"D���%me"D���%ee"D���%]e"D���%Ue"D���%Me"D���%Ee"D���%=e"D���%5e"D���%-e"D1�H�=?	���_���H�D$P��H�=^	1��G����#�1�H�=�	�4���M���LD�L�|$P��1�H�=�����H�D$P�fDH�=�d"H��d"H9�tH�Z"H��t	�����H�=�d"H�5�d"H)�H��H��H��?H�H�tH�U["H��t��fD�����=ed"u+UH�=b["H��tH�=�V"����d����=d"]������w�������H��H�=��ff.���UL�OL�G SH��H��H�w�o�OH�WH� u$H���;���H���t9kv�kH��[]�@H�v��f.���H���WH�w�?�
���H��H��SH��H��H�|$H��tUH�|$���H�|$H��� tH�GH9�|!�H�H�D$H��[�DH����H9�}�H)�H��������1��q���H��[�ff.���UH��S��H�����u���8��u%���j�H��H�5��H��H�.Y"H�81��L�H����@��ATI���US��H��dH�%(H��$�1�H���L��������D$%�=�uu���M�����uj�����L�����L��XH���@#�u�H��W"���u0H���0���L��H��$�dH3%(u8H�Ġ[]A\�fD�M��H�5���	���H�=���b�����ff.�f���H�wD�OL�G�OH��� uH���?H�����s�H�V�?H�v�a���H�w�OH��� uH���?H������H�V�?H�v�y�f���AWI��AVA��AUATI��US��H��xdH�%(H��$h1�H�D$H�D$ H�D$H�D$(H��H�D$0��H�D$�������1�I�,$H�l$���_H�D$H�$H���sH�|$����H�|$H���i@������H����D$D�^�x�Lc�H�<$L������L��H��H�$���H�XH���>�H���v�������CL�-���L�d$PL�d$@�D$X�D$@H�l$H���{�����H�����L��L��H���J�H��x�H��H���
�A���E��t&A�����t$XI�|$ ���H��H����H��H��$hdH3%(H���IH��x[]A\A]A^A_�f�I�T$H�T$�������I�T$H�$����H�������H�|$H�������H����D$D������������DA�����T$XI�t$ L����H��H�����H���=���f��{�����~rH�D$���D�t$X�����t6�SI�|$ ���y�H��H����H����fD�����H���i�H������H�=|����H�|$t
H�|$�s�����r����H��T"H�5,�H�81���H�=��1�������AWI��H��AVAUE��ATUH��SH��H��HL�D$dH�%(H��$81����D$,�s���H�߃�A���s���Hc�H��A��@H������L��D�d$H����L�`L���l�L���������A�D$L��D$�K�D$,H�u�D$H�E ��L�t$0�L$�|$H��L�L$,M����H������L$9L$,��H����H�U�� ��H�UH9�tH��H����A����E��t'A���&�T$,L��L�����H��H����H��H��$8dH3%(H����H��H[]A\A]A^A_�H�u�6�����L$,�[����H�����b���@�K�H�߃�A��������7����f�����8��uuH�|$uZH�-\"�d����D$,�������E���A�T$��L������H���(���H��R"H�5��H�81��G��r�H����1����H�5����H�=��1��E�D��AWAVAUI��ATI��UH��SH��@���SH��H�H��L������H��I�����H�hH���3�H���:M�FI� ��D�}HE����Mc�HcuDHu<L9���L��L����D}DD)}HI��� ��H����I9�tL�����L��L����M��uM����A�H��L��[]A\A]A^A_�@D�}HM�FE���s����}�@H��L���l�I��H���{������0��usM���L�5TZ"�f�Lc�L��L����]DI��)]HM��~�I��� �?���I�F�=����H����H������1�L���&��;���H�UH�=f����L�H�$��1���f���AUATI��UH��SH��@��u
H�������H���a�H��H���V�H��I����H�hH���_�H���G�E4��~L����H��� t0H�SH�s�}�@�[�H��H�DH��x>H��[]A\A]�H��H�s�����H������f����l���f.����0��uM��u"H��X"H��[]A\A]�H�UH�="���H����������S1�����}����t��[����8���H�=��H��1���@AUA��ATA��U��SH���X"��Tu*��Ã��t>���?����x�H����[]A\A]����}�Å�y7���u����8t;������ɐ���U�Å�x���~������y���W"��u��D���D��� �Ã��t��sW"�d���f.���AUA��ATA��U��SH�������Å�x����H����[]A\A]�����8�����t�D��D��������Å�y�H����[]A\A]����AUATUS��H��8dH�%(H�D$(1��|$H�t$H�t$�T$��H�=5��`��Ņ�x*H�L$(dH3%(���#H��8[]A\A]�f��K�I�ċ��t����Ut��su�L�l$H�l$���M��H���D$�X������T$�J���w�H�੡��1Ҿ������xRM��H������D$����x/�D$1�U�#���;������������������A�$��������������1���f���j����|ԍP���������A�$���L�ff.����S1�����m����t����߉�1��U����t[�H�=�����f�AWI��AVA��AUA��ATE1�USH��H��H��tD�"��T"��teA��H��L��D��Ɂ����������Ń��t*��~uH��tD9#vD�#H����[]A\A]A^A_���k���8&uV��T"H��L��D�����Ń��t7H��tD9#vD�#����E��t�������D������������f���H��H�WH�w1ɋ?���H��H����AVM��AUI��H��ATI��UH��SH������{�L��H�������y>����8��Gt��gt��tH�5z�����@M��u6[H��S"]A\A]A^��lj���L���7���[]H��A\A]A^�����H��1����D��AWAVI��AUA��ATU1�SH��(dH�%(H�D$1�I��H�T$��4$H�L$�f������3���$L��H�=������H�Å�y5������w���H���u�D������tX1������9�M��u,Hc�H�DH�t$dH34%(u6H��([]A\A]A^A_�DL���0���H�������H�5.����v���A����SH��H�� �WdH�%(H��$1��D$���t'���@tV�
���tI��� t<�{1�H�T$H�t$f�D$�+���1���x�D$f��tXf��
tBf��t$@H��$dH3%(uCH�� [�@�K ���f.��K��
�f��K@���M��ff.�f���H��H��G"H�=�H�0��H��G"H��S�������t������j��E������������H�=���@�H����H�=��H�
Q"�%�H�����H��P"H����H��H��	��H�
S�Hc�H�>��D�?AF_I���?PF_I���?AF_U���?PF_U�8�?AF_A�|�?PF_A�t�?AF_I���?PF_Iuf�SDu
�N�������@H�AF_UNSPEH9��H�PF_UNSPEH9��H�AF_PACKEH9�H�PF_PACKEH9��H�APPLETALH9u��Ku��1��fDH�AF_APPLEH9��H�PF_APPLEH9�`����TALK�S����f�?IP�ef�?SN��f�?MA�-����X�#���1��-�@�?INET���?UNIX�n�?AX25�R�?ISDN����"1����?INET���?LOCA�`�?ROUT������E�����1���f��?AF_I���?PF_I�H�?AF_S��?PF_S���?AF_M���?PF_M���?PF_K���?UNSP���?PACK�*���f�ET����1����H�AF_INET6H9tyH�PF_INET6H9tjH�AF_LOCALH9tQH��H9tHH�AF_ROUTEH9tH�PF_ROUTEH9������1���f�NI�P����X�F����1��
1���f�NE�����T������1�Ðf�NA�����1���T�w����1��D�6�R���1��
�D�C�!����1��Df�PX�`����1���X�������@�TALK�N����'���fDf�X2�x����5�n����1�Ðf�NE�4����T�*�������D�A�4���1���D�L��������f��C�l����3����f�PX������;�����T�j�������f�f�NI������X������[���Df�NA�t������f�AX�o����-1��f�AX�f�����f�X2������5�v������f�SD�q����N�g������f�EY�.���1���f�EC�%���1���ff.����H��H��w6H�
/�Hc�H�>��H�SOCK_SEQH9u�PACKuf�ET��������fDf�?RA�-f�?RDu�Mu��lfD�?DGRAùMu��D�?STRE�,�?PACKu�f�ETu����H�SOCK_RAWH9��H�SOCK_RDMH9�n����1�ÐH�SEQPACKEH9�Q����T�G����1��f.�H�SOCK_DGRH9�!���f�AM�����1���H�SOCK_STRH9tQH�SOCK_PACH9���f�KE�����
T�����
1����W�����1��Df�EAu��
Mu��1��f�f�AM������f���H��wnH�
��Hc�H�>��Df�?TC�Ef�?EG�
f�?PU�_f�?UD��f�?ID��f�?ES��f�?RAu�W�@D������f�H�IPPROTO_H9u�ICMPu�f�V6u�1��:��H�IPPROTO_H9�=H�IPPROTO_H9�RH�IPPROTO_H9u��ROUTu�f�IN�~����G�t�����f�?IP��f�?TP�:f�?AH�G����31��fD�?ICMP���?IGMP���?IPV6���?NONE�����;1����?SOCK�4�?ICMP���f�V6��������H�SOL_SOCKH9��H�IPPROTO_H9�:H�IPPROTO_H9�H�IPPROTO_H9�|���f�AH�p���1��3��H�IPPROTO_H9�]H�IPPROTO_H9��H�IPPROTO_H9�gH�IPPROTO_H9��H�IPPROTO_H9��H�IPPROTO_H9��H�IPPROTO_H9����f�RA�����
W����1����@H�IPPROTO_H9��H�IPPROTO_H9�:H�IPPROTO_H9��H�IPPROTO_H9�l����NONE�_���1��;�fDH�IPPROTO_H3H�FRAGMENTH3wH�������H	��)���1��,��?DSTO�l�?HOPOtd�?ROUT�����f�IN����G���1��+ÐH�FRAGMENTH9�����,1��@f�ET������1��f�PTu��Su��1�Ðf�EG�B����
P�8���1��Ðf�IP�������f��IGMP�����1���f.��P����@�1����1����P�����1���Df�TC������
P������ځICMP�&���1���f.�f�ET���������f�PT������S�~���1��<�f��DSTO�����f�PT������S��������HOPO�����f�PT������S�����1���@�)1���f�TP�u���1����IPV6�l���1��)�f.��P�����1���Df�PU������
P������ڀP�r���1���Df�UD�p����
P�f����ڀP�M���1���f�ID�X����
P�N����߀P�-���1��2�f�ES�@����
P�6�����f.���H��H����UH�
n�H��SH��H��Hc�H�>��H�ITY_ENCRH3WH�SO_SECURH3H	�uH�YPTION_NH9G�>
�����H��[]�H�_ENCRYPTH3WH�SECURITYH3H	�uH�ION_NETWH9G�%
������DH�_ENCRYPTH3WH�SECURITYH3H	�uH�ION_TRANH9G��������{���f�H�_AUTHENTH3WH�SECURITYH3H	�u
�ICAT��������B���f�H�ITY_AUTHH3WH�SO_SECURH3H	�uH�ENTICATIH9G�}��������f�H�T_ERR_QUH3WH�SO_SELECH3H	�uf�EU�w���������f.�H�ACING_RAH3WH�SO_MAX_PH3H	�uf�TE�%��������f.�H�SO_SNDBUH9��	H�SO_RCVBUH9��
H�SO_TIMESH9�\H�SO_WIFI_H9��
H�SO_LOCK_H9�2H�BPF_EXTEH9����������@H�SO_ACCEPH9��H�SO_GET_FH9�r
H�ATTACH_FH9�H�DETACH_FH9�F
��������f.�H�SO_REUSEH9��H�SO_REUSEH9�:
H�SO_DONTRH9��H�SO_BROADH9�AH�SO_KEEPAH9�
H�SO_OOBINH9��
H�SO_TIMESH9��
H�SO_BUSY_H9�CH�BINDTODEH9��H�TIMESTAMH9�%������f.�H�SO_NO_CHH9�
H�SO_PRIORH9�	H�SO_PASSCH9�<H�SO_PEERCH9�MH�SO_RCVLOH9��H�SO_SNDLOH9��H�SO_RCVTIH9�K
H�SO_SNDTIH9��
H�SO_PEERNH9��
H�SO_PROTOH9��H�5I�H�����������H�59�H��������^�H�5��H����������H�5��H���z�����X�H�5¾H���^�����x�H�5ƾH���B�����P�H�5|�H���&�����,�E,�;���f�H�H_FILTERH3GH�SO_ATTACH3H	��1��E����fDH�SO_PEERSH9��H�SO_PASSSH9��H�ACCEPTCOH9��H�GET_FILTH9��	��������f��?SNDB�$�;RCVB���;LING���;DOMA�7
������o���fD�?DEBU���;ERRO��;NOFC��������;���f��?TYPE�$�?MARK�L�E$1�����f.�H�ITY_ENCRH3WH�SO_SECURH3H	�u%H�RANSPORTH3WH�YPTION_TH3GH	��+���������H�XTENSIONH3WH�SO_BPF_EH3H	�u
�S�N��������@H�SO_BINDTH9��H�SO_TIMESH9�BH�MAX_PACIH9��������>���DH�SO_DEBUGH9�mH�SO_ERRORH9�H�SO_NOFCSH9�H�NO_CHECKH9�RH�PRIORITYH9��H�PASSCREDH9��	H�PEERCREDH9�{	H�RCVLOWATH9��	H�SNDLOWATH9�^
H�RCVTIMEOH9�|
H�SNDTIMEOH9��
H�PEERNAMEH9��
H�PROTOCOLH9��
H�RXQ_OVFLH9��
H�PEEK_OFFH9��
�*1�����fDH�SO_SNDBUH9��H�SO_RCVBUH9�
H�SO_LINGEH9�dH�SO_DOMAIH9��H�REUSEADDH9��H�REUSEPORH9�H�DONTROUTH9�sH�BROADCASH9��H�KEEPALIVH9��H�OOBINLINH9�}	�	H�5d�H���������	�	H�5�H����������	�E.����fD�?SO_T���;SO_M���;PEER���;PASS����������fD���������SPOR�%����T������E1�����{NG_R�6���f�{AT�*����{E� ����E/1��Z����{NSIO�F���f�{NS�:����E01��3���f.�f�YP�(����E����f.��E1����f�H�SO_DETACH3H	��b1��E����@�G�j���1�������1�����ODEV�.���f�IC�"����E����1���y���f�UF����1���`����f�EC�_���1���@�����F�9���1���"���f��TCON�&����N����1����@�ADDR�^���1�����fD�FFOR�^���f�CE�R���1�� ��f�f�EC����
K����1����DH�RR_QUEUEH3O�����H�SELECT_EH3H	��X��E-1��J��{R���1��E�1��f�{AR�4����{K�*�������1����f�{EC����1��E"���fD�{F���1��E����{FFOR�Y���f�{CE�M���1��E!��f�f�{IT�����{
Y����1��E�e�@�{ILTE������{R�w����E1��<��{PORT�����1��E��D�{TAMP�����f�{IN������{G�����1��E%����f�{UF�D���1��E���ETWO���f�RK����E1���f�OR���K�����f�ON�w��E1��n�f�IO��N���ڀE������{S�����1��E+�/�f�{NN�[���1��E��f�{SE�,����{C�"���1��E����+1����{TAMP���f�{NS���1��E#��{ILTE���{R����W���f�{ER����1��E
��{OUTE��1��E�l�{R�����1��E
�T�f�{RE���{
D���1��E�0�f�{RE���{
D���1��E��{CAST���1��E���{N�*���1��E'���f�{ER����1��E��f�{SE����{C����1��E"���1���{STAT�T�f�{US�H�1��E)�g�{ILTE���{R���1��E�B�f�{IN�����1��E'�(�{LIVE���1��E	�
��1���{R�L���1��E����{FILT���f�{ER���1��E,��f�{WA�K�{
T�A�1��E��f�{WA�:�{
T�0�1��E�y��{T����1��E�a��{LINE�-�1��E
�F��1��9��1��,��{TAMP��1��E���{E�����1��E��f�{ME���{
O���1��E������������1����{POLL���1��E.���{T�(���1��E��f�{ME�N�{
O�D�1��E�g���À{E�����1��E	�K��{VICE�P�1��E�0��1��#�f�{AM���{
E���1��E���1����f�{CO���{
L���1��E&����{E�y���1��E
���{PING���1��E%���E���1����1��u��E*�i��E(�]��(1��P��&1��C��E!�7��E �+����#����������E)���E#��f���H��H����H�
s�Hc�H�>��DH�CAST_LOOH3OH�IP_MULTIH3H	��DH�EMBERSHIH3OH�IP_ADD_MH3H	�u
�P�H�CK_SOURCH3OH�IP_UNBLOH3H	�u
�E��������f.�H�LT_MULTIH3OH�IP_DEFAUH3H	���H�SOURCE_MH3OH�IP_DROP_H3H	�u�H�EMBERSHIH9Gu��Pu��(1��Df�?TO�]f�?TT�
f�?MT�g����U�]����1��@�?IP_T���?IP_T��	�?IP_M�t
�?MINT� ���f�TL����1����?OPTI���?HDRI���?RETO�
�?RECV�(�?PKTI���?RECV�P�?RECV�q�?PASS�����f�SE������C�����1���f�H�RECVOPTSH9�H�FREEBINDH9��H�MSFILTERH9�G����)1��fDH�IP_MINTTH9�%����L��������fDH�IP_OPTIOH9�}H�IP_HDRINH9�JH�IP_RETOPH9��H�IP_RECVTH9��	H�IP_PKTINH9�R
H�IP_RECVEH9��
H�IP_RECVTH9�3H�IP_PASSSH9�MH�PKTOPTIOH9�e���f�NS�Y���1��	�H�IP_RECVOH9��H�IP_FREEBH9�BH�IP_MSFILH9��H�RECVRETOH9��	H�XFRM_POLH9��	H�TRANSPARH9�
H�PMTUDISCH9����f�_D������
O�����1���@H�MULTICASH9��H�ROUTER_AH9��H�MTU_DISCH9�?H�IPSEC_POH9�jH�BLOCK_SOH9�I����URCE�<���1��&�H�IP_PKTOPH9�eH�MULTICASH9��H�PMTUDISCH9��H�PMTUDISCH9����_WAN�����T����1���@H�IP_RECVRH9��H�IP_XFRM_H9��H�IP_TRANSH9�H�IP_PMTUDH9��H�MULTICASH9�tH�ADD_MEMBH9�%H�UNBLOCK_H9�;����SOUR�.���f�CE�"���1��%�f�H�MEMBERSHH3OH�IP_DROP_H3H	���H�EMBERSHIH3OH�IP_MAX_MH3H	�����f�PS�������H�CAST_TTLH3OH�IP_MULTIH3H	��CH�ISC_DONTH3GH�IP_PMTUDH3H	���1����H�IP_MULTIH9�5H�IP_ROUTEH9��H�IP_MTU_DH9�H�IP_IPSECH9�0H�IP_BLOCKH9��H�DROP_MEMH9�GH�MAX_MEMBH9�����ERSH����f�IP������S������1���H�MULTICASH3OH�DEFAULT_H3H	���H�RCE_MEMBH3OH�DROP_SOUH3H	��X����ERSH�K���f�IP�?������f.�H�MULTICASH3OH�DEFAULT_H3H	��lH�CE_MEMBEH3OH�ADD_SOURH3H	�����RSHI�����P�����'1���H�LT_MULTIH3OH�IP_DEFAUH3H	���H�OURCE_MEH3OH�IP_ADD_SH3H	��x���H�MBERSHIPH9G�d����f��T_TT�I����L�?���1��!�H�CAST_LOOH9G�`����P�V����1��f��P�����1��"�Df�IP�����$1���T_LO�W���f�OP�K����DH�CAST_TTLH9G�����f.��T_TT������L�}����b���@f�NS�w���1����1���f�ON�P����S�F�����f�PT������
S���1���S����������CAST�����f�_I������F�����1�� �@�ETOP�&���f�TS����1���fD�TION������S������C���@�T_IF������f�f�OS�0����M�����R_AL�)���f�ER�����T����1���@f�NC�<����L�2���1���f��POLI�i���f�CY�]���1���fDf�IN������
D�����1���f�H�ISC_WANTH3GH�Ƹ����H	������f�CL������m�����LERT������1���fD�1����L����1��Df�TL������f.��OVER�����1��
�f.��_DON�����T�������@f�TS�
����1��f�PT����S�������Df�TU������J�����ISCO�t���f�VE�h����R�^����U�����PARE����f�NT����1���fDf�TE�%����
R����1��)ÁERSH����f�IP����1��#�f�TL�7���1��ÁLICY�����1��Á_POL����f�IC������Y��������f�TT���L���띁ISC_����f�DO��������f�PT�j����
S�`����{���f�FO�����1��Á_SOU�D���f�RC�8����E�.������f�f�NF�H�O�>��f�IC�����
Y��������T_LO����f�OP�s�������f�EN����
T�����]���f�RR�
���1��ÁBERS�����f�HI������P���������f�ER���R����f�OS���1��
�f�TO���S�y���f�EC�����f.���H��H����H�
?�Hc�H�>��DH�TICAST_IH3OH�IPV6_MULH3H	���H�CAST_HOPH3OH�IPV6_UNIH3H	���H�VHOPLIMIH3OH�IPV6_RECH3H	�u
�T�AH�DRDSTOPTH3OH�IPV6_RTHH3H	�u
�S�ZH�DR_TYPE_H3OH�IPV6_RTHH3H	�u
�0��������@H�TICAST_HH3OH�IPV6_MULH3H	��tf�OP�h�S�^1���D�?RTHDu��Ru��iD�?V6ON���?TCLAu�f�SS�v����9�?DSTO�L�?HOPO���?NEXT���?PATH��?PKTI�2���f�NF�&����O����1��2�DH�CHECKSUMH9��H�DONTFRAGH9�H�HOPLIMITH9�����41��fDH�RECVRTHDH9������R������/fDH�IPV6_RTHH9�MH�JOIN_GROH9�ZH�RECVTCLAH9�e���f�SS�Y���1��B�f�H�IPV6_V6OH9��H�IPV6_TCLH9��H�LEAVE_GRH9��H�RECVDSTOH9��H�RECVHOPOH9��H�RECVPKTIH9�'H�RECVPATHH9����f�MT������
U�����1��<�@H�IPV6_RECH9�H�MULTICASH9�H�MULTICASH9�m����T_LO�`���f�OP�T���1���DH�IPV6_DSTH9��H�IPV6_HOPH9��H�IPV6_NEXH9�WH�IPV6_PATH9��H�IPV6_PKTH9��H�MULTICASH9�
H�UNICAST_H9�'H�RECVHOPLH9��H�RTHDRDSTH9��H�RTHDR_TYH9������PE_0�{���1���@H�VE_GROUPH3OH�IPV6_LEAH3H	��BH�VDSTOPTSH3GH�IPV6_RECH3H	�� 1��:��H�IPV6_CHEH9�5H�IPV6_DONH9�BH�IPV6_HOPH9�����LIMI�����T����1��4��H�IPV6_JOIH9��H�IPV6_RECH9������VTCL�����f�AS�w����S�m�������f.�H�TICAST_LH3OH�IPV6_MULH3H	��:���f�OO�.����P�$��������f�OU������
P��1��Ð�F�R���1���D�S�^���1���D�CKSU������M�����1��ÁOPTS�n���1��;�f.��VRTH���f�DR���1��8�fDf�NL�����
Y����1���f�f�DR�����1��9��1���f�PT������S������Z���Df�LY�`����f.��N_GR�.���f�OU�"����P����1���@�TFRA������G�����1��>�f�PT�,����S�"���1��6�T_HO���f�PS�������f�f�AS�����
S����1��CÐ�OPTS����말f�UP������R����H�VHOPOPTSH3GH	�u1��5�@�>1���H�VPKTINFOH3GH	�u=1��1�@�THOP�����1��	�f�f�HO�H����P�>�����H�VPATHMTUH3w�����H	�������f�PT�[����
S�Q����(����HMTU�G���1��=�f�MT����U����߁IMIT�e���1��3ÁINFO��������f�PT������
S������OPTS�5���1��7ÁT_IF������f�NF�����
O���������HOPS�������f.���H��H��w<H�
�Hc�H�>��H�TCP_THINH9u�_DUPuf�ACu
�K��������H�IE_TRANSH3OH�TCP_COOKH3H	�uځACTIu�f�ONuɀSu��1��H�_LINEAR_H3OH�TCP_THINH3H	�u�H�TIMEOUTSH9Gu��1����?CORK���?INFO�b����1����?MAXS���?MD5S�(�?SYNC���?REPA�"���f�IR����1����?NODE���?KEEP�h�?LING���f�ER�����2����1���DH�TCP_CORKH9��H�TCP_INFOH9�:���H�KEEPIDLEH9��H�QUICKACKH9�'H�FASTOPENH9�c����1��H�TCP_MAXSH9�mH�TCP_MD5SH9�
H�TCP_SYNCH9��H�TCP_REPAH9��H�CONGESTIH9�����f�ON���1��
�@H�TCP_NODEH9��H�TCP_KEEPH9�H�TCP_LINGH9�?H�THIN_DUPH9�����f�AC������
K�����1���DH�KEEPINTVH9�-H�QUEUE_SEH9�H�TIMESTAMH9�9����P�/���1���@H�TCP_KEEPH9��H�TCP_QUICH9�H�TCP_FASTH9�/H�DEFER_ACH9�H�WINDOW_CH9��H�REPAIR_QH9��H�USER_TIMH9������EOUT������1��DH�TCP_KEEPH9��H�TCP_QUEUH9��H�TCP_TIMEH9�I����STAM�<����P�2������H�TCP_CONGH9��H�REPAIR_OH9�����PTIO�����f�NS����@H�R_ACCEPTH3OH�TCP_DEFEH3H	���H�OW_CLAMPH3OH�TCP_WINDH3H	��0�
1���H�RANSACTIH3OH�COOKIE_TH3H	��f���f�ON�Z����S�P�������H�EAR_TIMEH3OH�THIN_LINH3H	��&����OUTS�������f.�H�IR_OPTIOH3OH�TCP_REPAH3H	����f�NS�����1�ÁCEPT����	1�Ð�1����INTV�.����L�$���1��ÁIDLE�n���1���f.��ESTI�F���f�ON�:����]���f�f�EG�����1����L�����@f�LA�����Y����1���f�f�LA�����
Y�������f�EG������f��E_SE�a����Q�W���1���f�CN����
T����1��Ðf�CN������T��������H�IR_QUEUEH3OH�TCP_REPAH3H	�uf�1����Q����x����f�IG���1���f�IG������f.��KACK��1���H�_TIMEOUTH3w�����H�TCP_USERH3H	��+���ÁOPEN����1����1�Ðf�NT�m���1���f�NT�H�����f.�f�ER������
2����������1��f�IR�,��������LAMP�e�������UEUE�f����������H��tf~$H��t>H��	uH�SHUT_RDWH9ty������H��u�f�?RDtYf�?WRu��1���?SHUTt0�?SHUTu�f�_Wu��Ru��ԁ?RDWRu��1���f�_RuȀDu��1�Ð�Ru������H��H��
wRH�
s�Hc�H�>��H�TIMESTAMH9��H�CREDENTIH9�2H�WIFI_STAH9��������f.�H�SCM_TIMEH9u�STAMu؀Pu���DH�SCM_TIMEH9�uH�SCM_CREDH9��H�SCM_WIFIH9u��_STAu�f�TUu��S�x����)1����?RIGH�\���f�TS�P����H�SCM_TIMEH3H�STAMPINGH3wH�������H	��!����%1��H�TIMESTAMH9������P���1��f.�H�SCM_RIGHH9����f�TS������1���H�TIMESTAMH9������PING������o���f�TU�|����
S�r������Df�PN�/����
S�%����#1��f��STAM�~���f�PN�r����S�h������ENTI�i���f�AL�]����S�S����1��@f�AL�����
S���������H��tH��
uH�SOL_SOCKH9t)�������?SOCKu�f�ETu��1���f�ETu���ff.���H��t&H��u(H�UDP_CORKH9u�1����?CORKt�����f�ATI��UH��SH��H��dH�%(H�D$1�@��t{@��u	H�����ubH��蒘��H��tlH�0�� t9H�XH�pH�T$H��Ճ��tf�D$H�L$dH3%(uMH��[]A\�DH��H�X���������u�H��覞���@H�߃�t�#���뫐������Ę��H�e"H��L��H�5�H�81��v���fD��H��wnH�
��Hc�H�>��Df�?TC�f�?EG��f�?PU�/f�?UD�Tf�?ID�yf�?ES��f�?RAu�W�xD������f�H�IPPROTO_H9u�ICMPu�f�V6u���H�IPPROTO_H9��H�IPPROTO_H9�BH�IPPROTO_H9u��ROUTu�f�INu��G�������f�?IP��f�?TP�"f�?AH�W����31��fD�?ICMP�$�?IGMP���?IPV6���?NONE�����;1����?ICMP�����f�V6��1��:���?DSTO�L�?HOPO���?ROUT�����f�IN������G�����1��+�DH�FRAGMENTH9������,1��@H�IPPROTO_H9��H�IPPROTO_H9��H�IPPROTO_H9�?���f�AH�3���1��3�f�H�IPPROTO_H9�mH�IPPROTO_H9�JH�IPPROTO_H9��H�IPPROTO_H9�H�IPPROTO_H9�4H�IPPROTO_H9�LH�IPPROTO_H9�����f�RA������
W�����1����@H�IPPROTO_H9��H�IPPROTO_H9��H�IPPROTO_H9�H�IPPROTO_H9�4����NONE�'���1��;�fDH�IPPROTO_H3H�FRAGMENTH3wH�������H	���1��,�f�PT�����S�����1��f�f�EG������
P�����1���IGMP�1���1���f.�f�TP����1����P�����@�1����1����P����1���D�1����DSTO�>���f�PT�2����S�(���1��<�@f�IP�g��������ICMP�F���1���f�f�TC������
P�}����g���Df�PT������S��������HOPO�����f�PT������S�����1���@�)1����IPV6����1��)�f.��P����1���Df�PU������
P����ڀP�����1���Df�UD�����
P�����ڀP�}���1���f�ID������
P������߀P�]���1��2�f�ES������
P�������f.���H��Hc�H�="dH�%(H�D$1�H�����H�$��u1�H�L$dH3%(H��uH�������ff.�@��H��Hc�H�=�"dH�%(H�D$1�H��薚��H�$��u1�H�L$dH3%(H��uH���近��ff.�@��H��Hc�H�=F"dH�%(H�D$1�H���6���H�$��u1�H�L$dH3%(H��uH����_���ff.�@��H��Hc�H�=�"dH�%(H�D$1�H���֙��H�$��u1�H�L$dH3%(H��uH������ff.�@��H��Hc�H�=v"dH�%(H�D$1�H���v���H�$��u1�H�L$dH3%(H��uH���蟐��ff.�@��H��Hc�H�="dH�%(H�D$1�H������H�$��u1�H�L$dH3%(H��uH����?���ff.�@��H��Hc�H�=�"dH�%(H�D$1�H��趘��H�$��u1�H�L$dH3%(H��uH����ߏ��ff.�@��H��Hc�H�=>"dH�%(H�D$1�H���V���H�$��u1�H�L$dH3%(H��uH�������ff.�@��H��Hc�H�=�"dH�%(H�D$1�H�����H�$��u1�H�L$dH3%(H��uH�������ff.�@��H��Hc�H�=n"dH�%(H�D$1�H��薗��H�$��u1�H�L$dH3%(H��uH���迎��ff.�@��H��Hc�H�="dH�%(H�D$1�H���6���H�$��u1�H�L$dH3%(H��uH����_���ff.�@��H��Hc�H�=�"dH�%(H�D$1�H���֖��H�$��u1�H�L$dH3%(H��uH������ff.�@��H��Hc�H�=6"dH�%(H�D$1�H���v���H�$��u1�H�L$dH3%(H��uH���蟍��ff.�@��H�5��!H�7����f���H�5u�!H�-����f�����H��H�"���uH�5�!H����H�5a�!H����f�����H��H�Ѓ�u��)w8H�
)���Hc�H�>��D��uH�5��!H���H��H���1�H�Ǩt����H������H���fDH�5)�!H���H��H�����fDH�51�!H��H��H�����fDH�5��!H�aH��H����fDH�5��!H�$H��H����ff.�����H��H�Ѓ�u��)w8H�
ч��Hc�H�>��D��uH�5��!H� H��H���1�H�Ǩt����H������H���fDH�5)�!H�H��H�����fDH�51�!H�.H��H�����fDH�5��!H��~H��H����fDH�5��!H��~H��H����ff.���H�5��!H��~�i�f���SH���!H�5�~H�;�ŕ��H�;�H�5htH��!躖��H�=s�!�H�5It袖��H�;�H�5*t莖��H�=G�!�H�5t�v���H�;�H�5k~�b���H�=�!�H�5S~�J���H�;�	H�5H~�6���H�=�!�	H�50~����H�;�H�5�s�
���H�=�!�H�5�s��H�;�H�5�s�ޕ��H�=��!�H�5ys�ƕ��H�;�H�5s貕��H�=k�!�H�5�r蚕��H�;�H�5�r膕��H�=?�!�H�5�r�n���H�;�H�5tr�Z���H�=�!�H�5\r�B���H�;�H�5Pr�.���H�=�!�H�58r����H�;�H�5}����H�=��!�H�5}���H�;�H�5�|�֔��H�=��!�H�5�|辔��H�;�H�5�q誔��H�=c�!�H�5�q蒔��H�;�H�5�q�~���H�=7�!�H�5�q�f���H�;�H�5�q�R���H�=�!�H�5tq�:���H�;�H�5hq�&���H�=�!�H�5Pq����H�;�	H�5�p���H�=��!�	H�5�p���H�;�	H�5�p�Γ��H�=��!�	H�5�p趓��H�;�H�5$q袓��H�=[�!�H�5q芓��H�;�H�5q�v���H�=/�!�H�5�p�^���H�;�H�5w{�J���H�=�!�H�5_{�2���H�;�H�5T{����H�=�!�H�5<{����H�;�-H�5�o��H�=��!�-H�5�o�ڒ��H�;�-H�5�o�ƒ��H�=�!�-H�5�o讒��H�;�!H�5�z蚒��H�=S�!�!H�5�z肒��H�;�!H�5�z�n���H�='�!�!H�5�z�V���H�;�EH�5�o�B���H�=��!�EH�5to�*���H�;�EH�5ho����H�=�!�EH�5Po���H�;�[H�5�n���H�=��!�[H�5�n�ґ��H�;�[H�5�n辑��H�=w�!�[H�5�n覑��H�;�#H�5o蒑��H�=K�!�#H�5�n�z���H�;�#H�5�n�f���H�=�!�#H�5�n�N���H�;�H�5Mn�:���H�=�!�H�55n�"���H�;�H�5_y����H�=�!�H�5Gy���H�;�H�5;y���H�=��!�H�5#y�ʐ��H�;�	H�5y趐��H�=o�!�	H�5y螐��H�;�H�5�x芐��H�=C�!�H�5�x�r���H�;�AH�5�x�^���H�=�!�AH�5�x�F���H�;�H�5�x�2���H�=�!�H�5�x����H�;�H�5�x����H�=��!�H�5{x���H�;��H�5sx�ڏ��H�=��!��H�5[x���H�;�!H�5Tx讏��H�=g�!�!H�5<x薏��H�;�H�52x肏��H�=;�!�H�5x�j���H�;�H�5x�V���H�=�!�H�5�w�>���H�;�H�5�w�*���H�=�!�H�5�w����H�;� H�5�w���H�=��!� H�5�w���H�;�@H�5�w�Ҏ��H�=��!�@H�5�w躎��H�;��H�5�w覎��H�=_�!��H�5ow莎��H�;�H�5hw�z���H�=3�!�H�5Pw�b���H�;�@H�5Ew�N���H�=�!�@H�5-w�6���H�;�H�5�k�"���H�=��!�H�5�k�
���H�;�H�5�v���H�=��!�H�5�v�ލ��H�;�
H�5�v�ʍ��H�=��!�
H�5�v貍��H�;�#H�5�v融��H�=W�!�#H�5�v膍��H�;�H�5Kk�r���H�=+�!�H�53k�Z���H�;�H�5�k�F���H�=��!�H�5|k�.���H�;�H�5uk����H�=��!�H�5]k����H�;�
H�5�j���H�=��!�
H�5�j�֌��H�;�H�5�j�Œ��H�={�!�H�5�j誌��H�;�H�5�j薌��H�=O�!�H�5�j�~���H�;�#H�5�j�j���H�=#�!�#H�5pj�R���H�;�-H�5hj�>���H�=��!�-H�5Pj�&���H�;�;H�5�i����H�=��!�;H�5�i���H�;�gH�5�i���H�=��!�gH�5�i�΋��H�;�yH�5Kj躋��H�=s�!�yH�53j袋��H�;�eH�5�i莋��H�=G�!�eH�5�i�v���H�;�YH�5#j�b���H�=�!�YH�5j�J���H�;�H�5�i�6���H�=��!�H�5�i����H�;�uH�5�i�
���H�=��!�uH�5ti��H�;�SH�5Fi�ފ��H�=��!�SH�5.i�Ɗ��H�;�wH�5'i貊��H�=k�!�wH�5i蚊��H�;�WH�57i膊��H�=?�!�WH�5i�n���H�;��H�5�h�Z���H�=�!��H�5�h�B���H�;�H�5Is�.���H�=��!�H�51s����H�;�'H�5-s����H�=��!�'H�5s���H�;�H�5s�։��H�=��!�H�5�r辉��H�;H�5�rH�����襉��H�=^�!H�����H�5�r舉��H�;��H�5�r�t���H�=-�!��H�5�r�\���H�;H�5�rH���C���H�=��!H��H�5�r�&���H�;H�5�rH���
���H�=��!H��H�5or��H�;H�5vrH����׈��H�=��!H���H�5Or躈��H�;H�5WrH�����衈��H�=Z�!H�����H�50r脈��H�;�	H�5�i�p���H�=)�!�	H�5�i�X���H�;�H�5�i�D���H�=��!�H�5�i�,���H�;�H�5gi����H�=��!�H�5Oi����H�;�H�5Bi���H�=��!�H�5*i�ԇ��H�;�
H�5�i���H�=y�!�
H�5ni訇��H�;�H�5�i蔇��H�=M�!�H�5ti�|���H�;�H�5�h�h���H�=!�!�H�5�h�P���H�;�+H�5�h�<���H�=��!�+H�5�h�$���H�;�H�5�h����H�=��!�H�5�h���H�;�AH�5i���H�=��!�AH�5i�̆��H�;�CH�5<i踆��H�=q�!�CH�5$i蠆��H�;�EH�5Ci茆��H�=E�!�EH�5+i�t���H�;�GH�5)i�`���H�=�!�GH�5i�H���H�;�IH�5!i�4���H�=��!�IH�5	i����H�;�H�5i����H�=��!�H�5i��H�;�H�5!i�܅��H�=��!�H�5	i�ą��H�;�)H�5�h谅��H�=i�!�)H�5�h蘅��H�;�H�5�g脅��H�==�!�H�5�g�l���H�;�H�5�f�X���H�=�!�H�5�f�@���H�;�H�5g�,���H�=��!�H�5�f����H�;�H�5Tg����H�=��!�H�5<g���H�;�H�5yf�Ԅ��H�=��!�H�5af輄��H�;�H�5Xf訄��H�=a�!�H�5@f萄��H�;�H�5�e�|���H�=5�!�H�5�e�d���H�;�H�5"f�P���H�=	�!�H�5
f�8���H�;�!H�5�f�$���H�=��!�!H�5pf����H�;�#H�5�e���H�=��!�#H�5�e���H�;�%H�5�e�̃��H�=��!�%H�5oe贃��H�;�'H�5�e蠃��H�=Y�!�'H�5�e舃��H�;�H�5	f�t���H�=-�!�H�5�e�\���H�;�H�5�e�H���H�=�!�H�5�e�0���H�;�H�5Ae����H�=��!�H�5)e����H�;�KH�5�e��H�=��!�KH�5�e�؂��H�;�MH�58e�Ă��H�=}�!�MH�5 e謂��H�;�OH�5�e蘂��H�=Q�!�OH�5�e耂��H�;�QH�5�e�l���H�=%�!�QH�5�e�T���H�;�SH�5d�@���H�=��!�SH�5d�(���H�;�UH�5�k����H�=��!�UH�5�k���H�;�WH�5�k���H�=��!�WH�5�k�Ё��H�;�YH�5�k輁��H�=u�!�YH�5�k褁��H�;�[H�5�k萁��H�=I�!�[H�5ik�x���H�;�]H�5gk�d���H�=�!�]H�5Ok�L���H�;�_H�5Sk�8���H�=��!�_H�5;k� ���H�;�aH�5@k����H�=��!�aH�5(k��H�;�H�5#k���H�=��!�H�5k�Ȁ��H�;�H�5k贀��H�=m�!�H�5�j蜀��H�;�H�5�j舀��H�=A�!�H�5�j�p���H�;�H�5`�\���H�=�!�H�5�_�D���H�;�H�5�_�0���H�=��!�H�5�_����H�;�H�5�^����H�=��!�H�5�^����H�;�	H�5@j����H�=��!�	H�5(j���H�;�H�5v_���H�=e�!�H�5^_���H�;�
H�5W_���H�=9�!�
H�5?_�h��H�;�H�56^�T��H�=
�!�H�5^�<��H�;�H�5^�(��H�=��!�H�5�]���H�;�AH�50_�~��H�=��!�AH�5_��~��H�;�CH�5_��~��H�=��!�CH�5�^�~��H�;�H�5�^�~��H�=]�!�H�5p^�~��H�;�H�5i^�x~��H�=1�!�H�5Q^�`~��H�;�H�5l]�L~��H�=�!�H�5T]�4~��H�;�H�5L]� ~��H�=��!�H�54]�~��H�;�H�5�\��}��H�=��!�H�5�\��}��H�;�!H�5]��}��H�=��!�!H�5�\�}��H�;�#H�5�\�}��H�=U�!�#H�5�\�}��H�;�%H�5�\�p}��H�=)�!�%H�5�\�X}��H�;�'H�5�\�D}��H�=��!�'H�5�\�,}��H�;�)H�5�\�}��H�=��!�)H�5h\�}��H�;�+H�5`\��|��H�=��!�+H�5H\��|��H�;�=H�5�\�|��H�=y�!�=H�5�\�|��H�;�-H�5�]�|��H�=M�!�-H�5v]�||��H�;�/H�5m�h|��H�=!�!�/H�5�l�P|��H�;�1H�5�l�<|��H�=��!�1H�5�l�$|��H�;�3H�5�\�|��H�=��!�3H�5w\�{��H�;�5H�5�\��{��H�=��!�5H�5k\��{��H�;�7H�5h\�{��H�=q�!�7H�5P\�{��H�;�5H�5�[�{��H�=E�!�5H�5�[�t{��H�;�9H�5�Z�`{��H�=�!�9H�5�Z�H{��H�;�;H�52[�4{��H�=��!�;H�5[�{��H�;�GH�5Z[�{��H�=��!�GH�5B[��z��H�;�?H�5�Y��z��H�=��!�?H�5�Y��z��H�;�EH�5�Y�z��H�=i�!�EH�5�Y�z��H�;�IH�5^Y�z��H�==�!�IH�5FY�lz��H�;�KH�5�Z�Xz��H�=�!�KH�5�Z�@z��H�;�MH�5�Y�,z��H�=��!�MH�5�Y�z��H�;�OH�5Y�z��H�=��!�OH�5�X��y��H�;�QH�5lY��y��H�=��!�QH�5TY�y��H�;�SH�5	Z�y��H�=a�!�SH�5�Y�y��H�;�UH�5 Y�|y��H�=5�!�UH�5Y�dy��H�;�WH�5�c�Py��H�=	�!�WH�5�c�8y��H�;�YH�5�Y�$y��H�=��!�YH�5|Y�y��H�;�[H�5�Y�x��H�=��!�[H�5�Y��x��H�;�]H�5�X��x��H�=��!�]H�5�X�x��H�;�_H�5sY�x��H�=Y�!�_H�5[Y�x��H�;�aH�55Y�tx��H�=-�!�aH�5Y�\x��H�;�H�5�]�Hx��H�=�!�H�5i]�0x��H�;�H�5)]�x��H�=��!�H�5]�x��H�;�H�5jb��w��H�=��!�H�5Rb��w��H�;�H�5�]��w��H�=}�!�H�5y]�w��H�;�H�5b�w��H�=Q�!�H�5b�w��H�;�
H�5�\�lw��H�=%�!�
H�5�\�Tw��H�;�	H�5�\�@w��H�=��!�	H�5�\�(w��H�;�H�5�\�w��H�=��!�H�5�\�v��H�;�H�59\��v��H�=��!�H�5!\��v��H�;�H�5�[�v��H�=u�!�H�5�[�v��H�;�H�5�[�v��H�=I�!�H�5�[�xv��H�;�H�5�[�dv��H�=�!�H�5o[�Lv��H�;�H�5\�8v��H�=��!�H�5�[� v��H�;�/H�5�[�v��H�=��!�/H�5k[��u��H�;�H�5�[��u��H�=��!�H�5v[��u��H�;�H�5�[�u��H�=m�!�H�5�[�u��H�;�+H�5[�u��H�=A�!�+H�5[�pu��H�;�'H�5�Z�\u��H�=�!�'H�5rZ�Du��H�;�-H�5A[�0u��H�=��!�-H�5)[�u��H�;�)H�5�Z�u��H�=��!�)H�5�Z��t��H�;�#H�5�Z��t��H�=��!�#H�5}Z�t��H�;�!H�5�Z�t��H�=e�!�!H�5�Z�t��H�;�1H�5 Z�t��H�=9�!�1H�5Z�ht��H�;�%H�5TZ�Tt��H�=
�!�%H�5<Z�<t��H�=�!�H�5�^H�;�!t��H�=��!�H�5�^�	t��H�;H����H�5�^��s��H�=��!H����H�5n^��s��H�;H�����H�5g^��s��H�=|�!H�����H�5M^�s��H�;H�����H�5A^�s��H�=L�!H�����H�5'^�ys��H�;H�����H�5^�cs��H�=�!H�����H�5^�Is��H�;H�����H�5�]�3s��H�=��!H�����H�5�]�s��H�;H����H�5�]�s��H�=��!H����H�5�]��r��H�;H�����H�5�]��r��H�=��!H�����H�5�]�r��H�;H�����H�5�]�r��H�=\�!H�����H�5n]�r��H�;H����H�5c]�sr��H�=,�!H����H�5I]�Yr��H�;H���H�5@]�Cr��H�=��!H���H�5&]�)r��H�;H���H�5]�r��H�=��!H���H�5]�q��H�;H����H�5�\��q��H�=��!H����H�5�\��q��H�;�H�5�\�q��H�=n�!�H�5�\�q��H�;�H�5�\�q��H�=B�!�H�5�\�qq��H�;�	H�5�\�]q��H�=�!�	H�5~\�Eq��H�;�H�5y\�1q��H�=��!�H�5a\�q��H�;�!H�5\\�q��H�=��!�!H�5D\��p��H�;�AH�57\��p��H�=��!�AH�5\�p��H�;�H�5\�p��H�=f�!�H�5\�p��H�;�H�5�[�p��H�=:�!�H�5�[�ip��H�;�AH�5�[�Up��H�=�!�AH�5�[�=p��H�;�	H�5�[�)p��H�=��!�	H�5�[�p��H�;�H�5�[�o��H�=��!�H�5}[��o��H�;�H�5x[��o��H�=��!�H�5`[�o��H�;�H�5X[�o��H�=^�!�H�5@[�o��H�;�!H�5;[�yo��H�=2�!�!H�5#[�ao��H�;�H�5�U�Mo��H�=�!�H�5�U�5o��H�;�H�5~U�!o��H�=��!�H�5fU�	o��H�;�H�5ZU�n��H�=��!�H�5BU��n��H�;�)H�5�R��n��H�=��!�)H�5�R�n��H�;�+H�5�R�n��H�=V�!�+H�5�R�n��H�;�%H�5VS�qn��H�=*�!�%H�5>S�Yn��H�;�#H�5�R�En��H�=��!�#H�5�R�-n��H�;�'H�5S�n��H�=��!�'H�5�R�n��H�;�!H�5�R��m��H�=��!�!H�5rR��m��H�;�5H�5EQ�m��H�=z�!�5H�5-Q�m��H�;�H�5rQ�m��H�=N�!�H�5ZQ�}m��H�;�}H�5TQ�im��H�="�!�}H�5<Q�Qm��H�;�wH�5�P�=m��H�=��!�wH�5�P�%m��H�;�iH�5
Q�m��H�=��!�iH�5�P�l��H�;�mH�5�P��l��H�=��!�mH�5vP��l��H�;�H�5oP�l��H�=r�!�H�5WP�l��H�;�{H�5PP�l��H�=F�!�{H�58P�ul��H�;�eH�51P�al��H�=�!�eH�5P�Il��H�;�uH�5|P�5l��H�=��!�uH�5dP�l��H�;�gH�5�P�	l��H�=��!�gH�5�P��k��H�;�kH�55P��k��H�=��!�kH�5P��k��H�;�cH�5P�k��H�=j�!�cH�5P�k��H�;�qH�5�O�k��H�=>�!�qH�5tO�mk��H�;��H�5O�Yk��H�=�!��H�5gO�Ak��H�;�sH�5�N�-k��H�=��!�sH�5�N�k��H�;�oH�5�O�k��H�=��!�oH�5�O��j��H�;�H�5�O��j��H�=��!�H�5�O�j��H�;�yH�5#O�j��H�=b�!�yH�5O�j��H�;��H�5
N�}j��H�=6�!��H�5�M�ej��H�;�!H�5V�Qj��H�=
�!�!H�5V�9j��H�;�]H�5V�%j��H�=��!�]H�5�U�
j��H�;�!H�5�U�i��H�=��!�!H�5�U��i��H�;�!H�5�U��i��H�=��!�!H�5�U�i��H�;�H�5�U�i��H�=Z�!�H�5�U�i��H�;�H�5@j�ui��H�=.�!�H�5(j�]i��H�;�;H�5�O�Ii��H�=�!�;H�5�O�1i��H�;�GH�5�O�i��H�=��!�GH�5�O�i��H�;�KH�5�O��h��H�=��!�KH�5�O��h��H�;�H�5RO��h��H�=~�!�H�5:O�h��H�;�SH�56O�h��H�=R�!�SH�5O�h��H�;�H�5xT�mh��H�=&�!�H�5`T�Uh��H�;��H�5YT�Ah��H�=��!��H�5AT�)h��H�;�H�5;T�h��H�=��!�H�5#T�g��H�;�	H�5T��g��H�=��!�	H�5T��g��H�;�H�5�S�g��H�=v�!�H�5�S�g��H�;�H�5�S�g��H�=J�!�H�5�S�yg��H�;�H�5�S�eg��H�=�!�H�5�S�Mg��H�;� H�5�S�9g��H�=��!� H�5�S�!g��H�;�H�5}S�
g��H�=��!�H�5eS�f��H�;�AH�5[S��f��H�=��!�AH�5CS��f��H�;�!H�5>S�f��H�=n�!�!H�5&S�f��H�;�@H�5"S�f��H�=B�!�@H�5
S�qf��H�;�H�5S�]f��H�=�!�H�5�R�Ef��H�;��H�5�R�1f��H�=��!��H�5�R�f��H�;�H�5�R�f��H�=��!�H�5�R��e��H�;�H�5�R��e��H�=��!�H�5�R�e���Z���	H�=CH�a�!�e��H�=U�!�H���0U���H�=�B�oe��H�=0�!�-H���U���H�=�B�Je��H�=�!�"H����T���H�=tM�%e��H�=��!�H���T���H�=B�e��H�=��!�H���T���H�=M��d��H�=��!�H���wT���H�=HB�d��H�=w�!�H���RT���H�=�A�d��H�=R�!�H���-T���H�=�A�ld��H�=-�!�H���T���H�=�A�Gd��H�=�!�H����S���H�=ML�"d��H�=��!�
H���S���H�='A�c��H�=��!�H���S���	H�=BA��c��H�=��!1�H���wS����X���	H�=/AH�o�!�c��H�=c�!�H���FS���H�=�@�c��H�=>�!�-H���!S���H�=�@�`c��H�=�!�"H���R���H�=�K�;c��H�=��!�H����R���H�=@�c��H�=��!�H���R���H�=.K��b��H�=��!�H���R���H�=^@��b��H�=��!�H���hR���H�=�?�b��H�=`�!�H���CR���H�=�?�b��H�=;�!�H���R���H�=�?�]b��H�=�!�H���Q���H�=cJ�8b��H�=��!�
H����Q���H�==?�b��H�=��!�H���Q���	H�=X?��a��H�=��!1�H���Q���H�=�?��a��H�=��!�H���hQ���H�=�>�a��H�=`�!�-H���CQ���H�=�>�a��H�=;�!�"H���Q���H�=�I�]a��H�=�!�H���P���H�=B>�8a��H�=��!�H����P���H�=SI�a��H�=��!�H���P���	H�=�>��`��H�=��!�H���P���H�=�=��`��H�=��!�H���eP���H�=�=�`��H�=]�!�H���@P���H�=�=�`��H�=8�!�H���P���H�=�H�Z`��H�=�!�
H���O���H�=b=�5`��H�=��!�H����O���H�=}=�`��H�=��!1�H���O���
U���H�==H���!��_��H�=��!�H���~O���	H�=E=�_��H�=n�!�H���YO���H�=�<�_��H�=I�!�-H���4O���H�=�<�s_��H�=$�!�"H���O���H�=�G�N_��H�=��!�H����N���H�=7<�)_��H�=��!�H����N���H�=JG�_��H�=��!�H���N���H�=~<��^��H�=��!�H���{N���H�=�;�^��H�=k�!�H���VN���H�=�;�^��H�=F�!�H���1N���H�=�;�p^��H�=!�!�H���N���H�=F�K^��H�=��!�
H����M���H�=X;�&^��H�=��!�H����M���	H�=u;�^��H�=��!1�H���M���R���H�=�;H���!��]��H�=|�!�
H���oM���H�=};�]��H�=W�!�H���JM���H�=�E�]��H�=2�!�H���%M���H�=}E�d]��H�=
�!�H���M���
H�=�:�?]��H�=��!�H����L���H�=�:�]��H�=��!�H���L���R���H�=B;H���!��\��H�=��!��H���L���H�=�;��\��H�=e�!�+H���`L���H�=$;�\��H�=@�!�;H���;L���H�=�:�z\��H�=�!�)H���L���H�=�:�U\��H�=��!�:H����K���H�=�:�0\��H�=��!1�H����K���H�=�:�\��H�=��!�,H���K���H�=/:��[��H�=��!�2H���K���H�=e:��[��H�=e�!�<H���`K���
H�=�9�[��H�=@�!�3H���;K���
H�=n9�z[��H�=�!�H���K���H�=�9�U[��H�=��!�H����J���H�=^9�0[��H�=�!�H����J���H�=-9�[��H�=��!�H���J���H�=�8��Z��H�=��!�H���J���H�=�8�Z��H�=b�!�H���]J���H�=9�Z��H�==�!�H���8J���H�=�8�wZ��H�=�!�H���J���
H�=;8�RZ��H�=�!1�H����I���LO���H�=}8H��!�$Z��H�=��!��H���I���H�=�8�Y��H�=��!�+H���I���H�=_8��Y��H�=s�!�;H���vI���H�=-8�Y��H�=N�!�)H���QI���H�="8�Y��H�=)�!�:H���,I���H�=8�kY��H�=�!1�H���
I���H�=8�IY��H�=�!�,H����H���H�=j7�$Y��H�=��!�2H���H���H�=�7�X��H�=��!�<H���H���
H�=�6��X��H�=s�!�3H���vH���
H�=�6�X��H�=N�!�H���QH���H�=�6�X��H�=)�!�H���,H���H�=�6�kX��H�=�!�H���H���H�=h6�FX��H�=߾!�H����G���H�=76�!X��H�=��!�H���G���H�=6�W��H�=��!�H���G���H�=B6��W��H�=p�!�H���sG���H�=6�W��H�=K�!�H���NG���
H�=v5�W��H�=&�!1�H���,G���
H�=I5�kW��H�=�!�H���G���H�=d?�FW��H�=߽!��H����F���H�=�5�!W��H�=��!�+H���F���H�=�5�V��H�=��!�;H���F���H�=W5��V��H�=p�!�)H���sF���H�=L5�V��H�=K�!�:H���NF���H�=�:�V��H�=&�!1�H���,F���H�=D5�kV��H�=�!�,H���F���H�=�4�FV��H�=߼!�2H����E���H�=�:�!V��H�=��!�<H���E���H�=4�U��H�=��!�3H���E���H�=�3��U��H�=p�!�H���sE���H�=�3�U��H�=K�!�H���NE���H�=�[�U��H�=&�!�H���)E���H�=�3�hU��H�=�!�H���E���H�=a3�CU��H�=ܻ!�H����D���H�=H[�U��H�=��!�H���D���H�=l3�T��H�=��!�H���D���H�=:3��T��H�=m�!�H���pD���H�=�7�T��H�=H�!1�H���ND���H�=�N�T��H�=&�!�H���)D���I���H�=45H���!�\T��H�=�!�0H���C���H�=5�7T��H�=Ⱥ!�/H����C���H�=-4�T��H�=��!�.H���C���H�=�4��S��H�=~�!�-H���C���H�=H4��S��H�=Y�!�,H���dC���H�=$>�S��H�=4�!�+H���?C���H�=23�~S��H�=�!�*H���C���H�=�3�YS��H�=�!�)H���B���H�=�2�4S��H�=Ź!�(H����B���	H�=2�S��H�=��!�'H���B���H�=�2��R��H�={�!�&H���B���H�=d3��R��H�=V�!�%H���aB���H�=�1�R��H�=1�!�$H���<B���
H�=�1�{R��H�=�!�"H���B���
H�=p1�VR��H�=�!�H����A���H�=�2�1R��H�=¸!�#H����A���H�=2�R��H�=��!�H���A���H�=w1��Q��H�=x�!�H���A���
H�=�1��Q��H�=S�!�H���^A���H�=]2�Q��H�=.�!�H���9A���H�='2�xQ��H�=	�!�H���A���H�=�1�SQ��H�=�!�H����@���H�=�A�.Q��H�=��!�H����@��� H�=�A�	Q��H�=��!�H���@���H�=�1��P��H�=u�!�H���@���
H�=�0�P��H�=P�!�H���[@���H�=0�P��H�=+�!�H���6@���H�=�/�uP��H�=�!�H���@���H�=�/�PP��H�=�!�H����?���H�=�/�+P��H�=��!�H����?���H�=Z/�P��H�=��!�H���?���H�=)/��O��H�=r�!�H���}?���	H�=�.�O��H�=M�!�
H���X?���H�=�.�O��H�=(�!�H���3?���H�=�.�rO��H�=�!�H���?���H�=N/�MO��H�=޵!�
H����>���H�=/�(O��H�=��!�	H����>���H�=V/�O��H�=��!�!H���>���H�="/��N��H�=o�!� H���z>���	H�=�-�N��H�=J�!�H���U>���	H�=�-�N��H�=%�!�H���0>���H�=V.�oN��H�=�!�H���>���H�=$.�JN��H�=۴!�H����=���H�=�8�%N��H�=��!�H���=���H�=�,�N��H�=��!�H���=���H�=�-��M��H�=l�!�H���w=���H�=v-�M��H�=G�!�H���R=���H�=8�M��H�="�!�H���-=���H�=@.�lM��H�=��!�0H���=���H�=-.�GM��H�=س!�/H����<���	H�=@-�"M��H�=��!�.H���<���H�=�-�L��H�=��!�-H���<���H�=[-��L��H�=i�!�,H���t<���H�=77�L��H�=D�!�+H���O<���H�=E,�L��H�=�!�*H���*<���H�=3�iL��H�=��!�)H���<���H�=�+�DL��H�=ղ!�(H����;���H�=2+�L��H�=��!�'H���;���H�=�+�K��H�=��!�&H���;���H�=�2��K��H�=f�!�%H���q;���H�=�*�K��H�=A�!�$H���L;���H�=�*�K��H�=�!�"H���';���H�=�*�fK��H�=��!�H���;���H�=�1�AK��H�=ұ!�#H����:���	H�=�1�K��H�=��!�H���:���H�=�*�J��H�=��!�H���:���
H�=+��J��H�=c�!�H���n:���
H�=p+�J��H�=>�!�H���I:���
H�=:+�J��H�=�!�H���$:���H�=�*�cJ��H�=�!�H���9���H�=c+�>J��H�=ϰ!�H����9���H�=Z+�J��H�=��!�H���9���H�=+��I��H�=��!�H���9���
H�=�)��I��H�=`�!�H���k9���H�=1)�I��H�=;�!�H���F9���H�=)�I��H�=�!�H���!9���H�=�(�`I��H�=�!�H���8���H�=�(�;I��H�=̯!�H����8���H�=m(�I��H�=��!�H���8���H�=<(��H��H�=��!�H���8���H�=�'��H��H�=]�!�
H���h8���H�=�'�H��H�=8�!�H���C8���H�=�'�H��H�=�!�H���8���	H�=a(�]H��H�=�!�
H���7���	H�=/(�8H��H�=ɮ!�	H����7���H�=i(�H��H�=��!�!H���7���H�=5(��G��H�=�!� H���7���H�=�&��G��H�=Z�!�H���e7���H�=�&�G��H�=5�!�H���@7���	H�=�3�G��H�=�!�H���7���	H�=�/�ZG��H�=�!�H���6���H�=�1�5G��H�=ƭ!�H����6���H�=12�G��H�=��!�H���6���	H�=�&��F��H�=|�!�H���6���	H�=�&��F��H�=W�!�H���b6���H�=�2�F��H�=2�!�H���=6���;���H�=e(H��!�pF��H�=��!�)H���6���H�=�)�KF��H�=Ԭ!�(H����5���H�=b)�&F��H�=��!�'H����5���H�=�(�F��H�=��!�&H���5���H�=�(��E��H�=e�!�%H���x5���H�=�'�E��H�=@�!�H���S5���H�=H(�E��H�=�!�H���.5���H�=(�mE��H�=��!1�H���5���H�=q'�KE��H�=ԫ!�H����4���
H�=�&�&E��H�=��!�H����4���H�='�E��H�=��!�H���4���H�=P'��D��H�=e�!�H���x4���H�=�&�D��H�=@�!�H���S4���H�=�%�D��H�=�!�H���.4���
H�=-&�mD��H�=��!�
H���	4���
H�=�%�HD��H�=Ѫ!�H����3���H�=�&�#D��H�=��!�
H���3���
H�=�%�C��H�=��!�	H���3���
H�=�%��C��H�=b�!�H���u3���H�=&�C��H�==�!�H���P3���H�=�&�C��H�=�!�H���+3���H�=�&�jC��H�=�!�H���3���H�=h&�EC��H�=Ω!�H����2���H�=&� C��H�=��!�$H���2���H�=�%�B��H�=��!�#H���2���H�=�%��B��H�=_�!�"H���r2���H�=E%�B��H�=:�!�!H���M2���H�=�$�B��H�=�!� H���(2���
H�=$�gB��H�=�!�H���2���	H�=�#�BB��H�=˨!�H����1���
H�=�#�B��H�=��!�H���1���H�=$�A��H�=��!�H���1���H�=�#��A��H�=\�!�H���o1���H�=#�A��H�=7�!�H���J1���H�=�"�A��H�=�!�H���%1���
H�=�"�dA��H�=�!�H���1���
H�=�"�?A��H�=ȧ!�H����0���H�=#�A��H�=��!�)H���0���H�=g$�@��H�=~�!�(H���0���H�=$��@��H�=Y�!�'H���l0���H�=�#�@��H�=4�!�&H���G0���H�=t#�@��H�=�!�%H���"0���H�=�"�a@��H�=�!�H���/���
H�=�"�<@��H�=Ŧ!�H����/���
H�=�"�@��H�=��!1�H���/���H�="�?��H�=~�!�H���/���H�=���?��H�=Y�!�H���l/���H�=�!�?��H�=4�!�H���G/���H�=�!�?��H�=�!�H���"/���H�=F!�a?��H�=�!�H���.���H�=�#�<?��H�=ť!�H����.���H�=� �?��H�=��!�
H���.���H�=� ��>��H�={�!�H���.���H�=4!��>��H�=V�!�
H���i.���
H�=� �>��H�=1�!�	H���D.���H�=#�>��H�=�!�H���.���H�=� �^>��H�=�!�H���-���H�=L!�9>��H�=¤!�H����-���H�=l!�>��H�=��!�H���-���H�=!��=��H�=x�!�H���-���H�=� ��=��H�=S�!�$H���f-���H�=� �=��H�=.�!�#H���A-���H�=�"�=��H�=	�!�"H���-���
H�=��[=��H�=�!�!H���,���H�=�!�6=��H�=��!� H����,���H�=��=��H�=��!�H���,���H�=c��<��H�=u�!�H���,���H�=���<��H�=P�!�H���c,���H�=��<��H�=+�!�H���>,���H�=V�}<��H�=�!�H���,���H�=��X<��H�=�!�H����+���H�=��3<��H�=��!�H����+���H�=��<��H�=��!�H���+���H�=���;��H�=r�!�H���+����0���H�=_H�E�!�;��H�=9�!�CH���T+���H�= �;��H�=�!�<H���/+���H�=Q �n;��H�=�!1�H���
+���H�= �L;��H�=͡!�7H����*���
H�=��';��H�=��!�9H����*���H�=8�;��H�=��!�BH���*���H�=���:��H�=^�!�8H���y*���H�=1�:��H�=9�!�1H���T*���H�=��:��H�=�!�5H���/*���H�=-�n:��H�=�!�3H���
*���H�=��I:��H�=ʠ!�:H����)���H�=�$:��H�=��!�2H���)���H�=��9��H�=��!�=H���)���H�=���9��H�=[�!�	H���v)���H�=n�9��H�=6�!�6H���Q)���
H�=��9��H�=�!�4H���,)���H�=�k9��H�=�!�;H���)���
H�=A�F9��H�=ǟ!�>H����(���
H�=�!9��H�=��!�H���(���H�=��8��H�=}�!�H���(���H�=���8��H�=X�!�H���s(���H�=��8��H�=3�!�H���N(���H�=(�8��H�=�!�H���)(���H�=]�h8��H�=�!�H���(���H�=��C8��H�=Ğ!�H����'���H�=D�8��H�=��!�H���'���H�=8�7��H�=z�!�CH���'���H�=c��7��H�=U�!�<H���p'���H�=��7��H�=0�!1�H���N'���H�=c�7��H�=�!�7H���)'���H�=��h7��H�=�!�9H���'���
H�=~�C7��H�=ĝ!�BH����&���	H�=:�7��H�=��!�8H���&���H�=w�6��H�=z�!�1H���&���H�=A��6��H�=U�!�5H���p&���H�=s�6��H�=0�!�3H���K&���H�=��6��H�=�!�:H���&&���H�=��e6��H�=�!�2H���&���H�=��@6��H�=��!�=H����%���H�=��6��H�=��!�	H���%���H�=g�5��H�=w�!�6H���%���H�=���5��H�=R�!�4H���m%���H�=��5��H�=-�!�;H���H%���H�=��5��H�=�!�>H���#%���H�=T�b5��H�=�!�H���$���H�=��=5��H�=��!�H����$���H�=��5��H�=��!�H���$���H�=��4��H�=t�!�H���$���H�=n��4��H�=O�!�H���j$���H�=��4��H�=*�!�H���E$���H�=��4��H�=�!�H��� $���
H�=��_4��H�=�!�H���#���V)���H�=EH���!�.4��H�=��!�H����#���
H�=��	4��H�=��!�H���#���H�=0��3��H�=]�!�H���#���H�=��3��H�=8�!�H���[#���H�=��3��H�=�!�H���6#���H�=��u3��H�=�!�H���#���
H�=��P3��H�=ə!�H����"���
H�=��+3��H�=��!�H����"���H�=:�3��H�=�!�H���"���H�=���2��H�=Z�!�
H���}"���H�=C�2��H�=5�!�H���X"���H�=��2��H�=�!�
H���3"���
H�=��r2��H�=�!�H���"���H�=��M2��H�=Ƙ!�H����!���
H�=P�(2��H�=��!�H����!���H�=d�2��H�=|�!�H���!���
H�=r��1��H�=W�!�H���z!���H�=&�1��H�=2�!�H���U!���H�=��1��H�=
�!�H���0!���H�=�o1��H�=�!�H���!���H�='�J1��H�=×!�	H���� ���H�=��%1��H�=��!�H��� ���
H�=�1��H�=y�!�H��� ���H�=$��0��H�=T�!�H���w ���H�=��0��H�=/�!�H���R ���	H�=�0��H�=
�!�H���- ���H�=��l0��H�=�!�H��� ���H�=�G0��H�=��!�H�������H�=%�"0��H�=��!�H������H�="�/��H�=v�!�H������H�=��/��H�=Q�!�H���t���	H�=Y�/��H�=,�!�H���O���H�=��/��H�=�!�H���*���
H�=+�i/��H�=�!�
H������H�=O�D/��H�=��!�H�������H�=�/��H�=��!�
H������H�=1�.��H�=s�!�H������H�=S��.��H�=N�!�H���q���H�=��.��H�=)�!�H���L���H�=��.��H�=�!�H���'���	H�=��f.��H�=ߔ!�H������H�=��A.��H�=��!�H�������H�=u�.��H�=��!�H������H�=|�-��H�=p�!�H������H�=���-��H�=K�!�	H���n���H�=;�-��H�=&�!�H���I���H�=��-��H�=�!�H���$���H�=��c-��H�=ܓ!�H������Z"���H�=�H���!�2-��H�=��!�H�������H�=��
-��H�=~�!�H������"���H�=�H�Q�!��,��H�=E�!�)H���x���H�=T�,��H�= �!�H���S���H�=O�,��H�=��!�%H���.���H�=��m,��H�=֒!�#H���	���
H�=��H,��H�=��!�H�������
H�=�,�#,��H�=��!�H������H�=��+��H�=g�!�)H������H�=z��+��H�=B�!�H���u���H�=u�+��H�=�!�%H���P���H�= �+��H�=��!�#H���+���	H�=��j+��H�=ӑ!�H������H�=$,�E+��H�=��!�H�������< ��[H���!���H��!�����HE��f���H��1�H��!H��������
�@��ATI��UH��S�#��H�XH���$���CI�����t���CH��[]A\����CH��[]A\�f���S�v#��H�XH����#���C[H��7H��?���f.���AVI��AUATUH��S��H��@dH�%(H�D$81��!��H�D$�������L1�H�UL�eH�T$���H�$H����H�\$H�{���H�<$�/H���_��H�<$���H�8H�$�� �#H��H��H�D$ ��Hc�H9��a�|$(H�-��!L�-�L���m"��L�pL���"��A�FL��A���D$���)���D$���|$� �������T$H��H�����H��x�H�@H���H�DH�L$8dH3%(��H��@[]A\A]A^�f�H�UH�$�����H�|$t
H�|$�M%�������L$��@����W���fDL�-�H�-�!����DH�PH�xH�T$ ����fD�s&����~�H�D$�M���@H�|$��$���a����H������0���L���(���F��������E1��'��@����1�H��H����k"��ff.���USH��(dH�%(H��$1��D$H�l$� ��H�XH���!���{H�T$H��������xM�T$��w2�{H�����H��$dH3%(u/H��([]�f.��D$��H�=��5'���`����USH��(dH�%(H��$1��D$H�l$� ��H�XH���b ���{H�T$H���r$����xM�T$��w2�{H������H��$dH3%(u/H��([]�f.��D$��H�=��&�������SH�� dH�%(H�D$1��D$�j��H�XH������{H�L$L�D$��������t-�t$�|$H�t6H�|?� ��H�T$dH3%(uH�� [�H�=p��%�����ff.�@��USH��(dH�%(H��$1��D$H�l$���H�XH������{H�T$H��������xE�t$��w*H���J$��H��$dH3%(u*H��([]�D�D$���H�=��=%���h�����USH��(dH�%(H��$1��D$H�l$���H�XH���b���{H�T$H���r"����xE�t$��w*H���#��H��$dH3%(u*H��([]�D�D$���H�=��$��������AVAUI��ATI��USH�� dH�%(H��$1�L�t$�Z��H�XH�����H���&!��L��lj����L����A���;��H���D$A���x���{L�D$L��D��D���b����x?�t$L���"��D��D���H������H��$dH3%(u H�� []A\A]A^�H�sH�=3�������f.���AVI��AUATUSH��H�� dH�%(H�D$1�����H�z�!H���QH�3E1�1�H�=�!�M��H���!I��H���JH�3E1�1�H�=��!�&��H�o�!I��H����H�3E1�1�H�=�!���H�D$L������H�XH���F��H�����L��lj��"��L����A������H�|$A��@����@���W������t2H���#@��t"H��4t�����te���$����H�|$�A��H�D$H�(�� �}L�pH�hHc�H9�t7H�����DH�����u�H��t�H��u�@�D$�L�t$H���^���{A��L��D��D��������^H�L$dH3%(��UH�� []A\A]A^�@���!��H�D$������~H�CL�#L�kH�D$����������������D$�L�t$�S���f��!���L�t$�D$�2�����H�=��/!��H��H�e�!����H�=�!��H��H��!����H�=q�� ��H��H���!���H��L�p���{���������~GH�SH�D$L�#L�kH�T$��u-H�������H�|$������H�sH�=�T�����H�|$���H�|$��������@��ATI��UH��S��H��dH�%(H�D$1����H�$��������uU�L�����H�XH���T���{���j�������H�L$dH3%(���H��[]A\��H�m��uzH��t�H���a����v�H��|!H�5|H�81��r��f������xBH�$t!H�m��u3H��t�H�������f�H���:���H�������-���H�<$tH������1������H�=�����'�����UH��SH������H�XH���B���Ct$�{��O���c�H���[]��H��H��[]�:��f.���UH��SH�����H�XH�������{1�����C�t��CH���[]��H��H��[]����f.���UH��H��SH����t;�����H�������H������H��H�����H�x�^��H��H��[]�@�[���������H�mz!SH�=�H�0����H�nz!H�5wH��H��|��H�;1�H���H�5d���H�;�H���H�5_���H�;�H�*���H�5[�~��H�;1�H�����H�5J�F��H�;1�H�:���H�5=�.��H�;�����H����H�5.���H�;�����H�d���H�5���H�;�H�Y���H�5����H�;1�H�����H�5�����H�;1�H����H�5����H�;1�H����H�5����H�;1�H�I���H�5��}��H�;1�H���H�5��e��H�;H��x!�����H�5��J��H�;�����H�+�H�5��/��H�;1�H���H�5�
���H�;�H�8�H�5�
���H�;�H���H�5e���H�;H�x!�H�5Z���H�;H�Lw!�H�5O����H�;H�9w!�H�5E���H�;H�Fx!�H�54���H�;H��x!�H�5,���H�;[�H��w!H�5�n��f.�@��H��1�H�=1��Y��f���H�u�!SH��H��tH��E1�1�[H�=�!������H�=�
����H��H�5�!����S�H���>
��H�=�v!H��[H��H�i����d��@�ր!AVA��AUA��ATA��USH�˅�bu8�����Ń��tL�;�����{�����;����{���[��]A\A]A^�������Ņ�t7���u��-���8tH������ː������;�Ņ�u���~��{~�띋;�	
���;�-�!��u��v����H��D��D��D���?�����t���!�;�E������H��H�|$H�t$���H�T$H�2H��� ufH����H��~f�8uaH��uHc�H9�uLH����	��H���f�H�RH��nv�H��t!�nH�5�H�81��	
��f�H�r�H���r	��H�Kv!H�53H�81���	��H�3v!H�5H�81���	��f����f��tf��
u#H����o���H����Z��R��H�Wu!H�5�H�81��n	��ff.���SH��H�|$H�t$���H��H�D$H�0�� uMH����H��~f���f��uBHc�H9�u2H������{H��f����H�|?�d��H��[�fDH�p�H���Z��H�3u!H�5|
H�81�����H�u!H�5�
H�81����f.���UH��E1�1�S1�H�����H��H��pH�x�E��H��H������H��H��[]���ATI��U��SH�� dH�%(H�D$1����H�D$��������I�$����H�D$H�|$������H���H������H�|$L�%]
t
H�|$���I��f��L�������H����H�8���H�T$dH3%(��H�� []A\�I�D$H�D$���j���H�|$t
H�|$����������f�H�����H���M���H�|$�����2�����K���������H��H��	H��H�
aH�5�HN�H�Kr!H�81�����H��r!L���H�5�H�81������	��ff.�@��UH��S��H��(dH�%(H�D$1��
��H�D$��������1�H�EH�$����H�D$H����H��H���C��H�|$t
H�|$�1��H��H���r��H�|$H��t
H�|$�]��H��H��H���
��H�����@f����H�L$dH3%(H�D��H��([]�H�EH�D$���_���H�|$t
H�|$�T�������S��H�|$�6���3���������~�H�T$���D1�H�t$H���)��H�T$�:�`���H�,q!H��H��H�5�H�81��=���h�����AUATUH��S��H��(dH�%(H�D$1����H�D$���?���H�EH�D$���]H�m����H�|$�	��H���FH������H�|$��H��� �uH��H�΃�H���N��H��H�����	��H�}I���Q��L��H������	��L��H��I�����H�]H��t&H�;H��tf����H��L��H���|��H�;H��u�HcuL��H�t6�c��H�]H�;H��t'�HcuH������L��H���8��H�;H��u�H�L$dH3%(L���H��([]A\A]�fD��������H�UH�D$H�T$����H��tH�|$�%��DH�|$�f��H�|$H��� u)H�κ
H����H�����������fDH�w�
H��t�H�wHc�H9�uTH�����H�m��uH���.���H�|$�������H�|$t
H�|$�}�������|
��H���D��H��n!H�5VH�81�����������SH��1ҾH��A�����H��H�����[H�����ff.���AT�1�US����H��L�`�%fD�S���8��t��$uUH��H��H����L��H�E tH�}H���p����x�H�}H�E tH�}����H��H�����H��[]A\�H�5z�&��fD��A����������H��H���������USH��(dH�%(H��$1��D$H�l$�n	��H�XH����	���sH�L$1�H���@���T$H��H��H������H��H���
��H��$dH3%(u
H��([]��1�����USH��(dH�%(H��$1��D$H�l$����H�XH���2	���sH�L$H��H��k!H�8����T$H��H��H���6��H��H���	��H��$dH3%(u
H��([]����f���ATI��USH�� dH�%(H��$1��D$H�l$�9��H�XH�����H��L�D$H��H�Ck!L��H�8���H��<t)�uH�����uE�T$H��H���~��H��H���C	��H��H��$dH3%(H��uH�� []A\�fD�����u��������H��tkH���f��tVv<�f��
t�f��u�w��H��A�E1�1�j�y��H���@f���n�E���D����f.���USH��dH�%(H�D$1�H��H�$������tt���H�$H��H��u�?fDH�H��t-H�{H��t����f��u�����H��H����
��H�H��u�H�$H���G	��H��H�T$dH3%(uH��[]�H�=$�a
�����ff.����AWAVAUATUSH��H�$H��xdH�%(H��$h1���H��H�D$H�D$ H�D$(�w��H�D$0��������L�e���aE1�L�����H��H���H�8�� �jH�PH����H�p1�H������H�|$`L��$`L��$`H���AUA�M��L�����Y_�ƅ���H�|$(H����H�H�X(H��ttL��$`H��$`�H���sH�{H��AUA�M���=�����XZ���cH��L��������.L��L��������H�[(H��u�H�|$(�(��L�����L��H�����H��H���
��H��$hdH3%(��H��x[]A\A]A^A_ÐH�m���4H�������H���������A���r���H��H�pH����u[��Hc�H9���������@A���0	������H�D$0L�e���|H�m����H��t�H�|$0�z���r���H�|$`�����H�;�� �UH����,���A������L���|��H����f�)D$0)D$@)D$PH��� �H�PH�����H�@ H�PL� H�T$ H�PH�T$H���;�D$0H�|$H��$`�b����H��H���B���Ƅ$_H�L$ H�������H��$`H��1�H���H����1�A�������D$81�I��tL�����H��H�L$(H�T$0H��D$4�(���Å��3H�D$(H�H�x�p���H�������H�|$0������H�{�,���H����H����H��f!H�5b�H�81��0���H�|$ H��$`�^����H��H���>���Ƅ$_�0���H�@H�D$1�H��������A�01�fD��$`����H�@ H�PL� H�T$ H�@H�D$�H����H�|$(���H�we!H�5�H�81�����t$���H�|$(�t$H�Ë(H��t	�����t$�+H�=k�����v���H�|$(H��D� H��t���D�e��H�=3����H�|$0t
H�|$0����������H��c!H�5�H�81���H��c!H�5��H�81������������USH��H�t$H�|$H�l$dH�%(H��$�1����1�H�}�H�D$H�Ef�H��f�D$H�\$H��� tFH�SH��lw\H�sH��uCH���;���H������H��$�dH3%(uKH�Ę[]�@H��H�s��H��t�H�}�l�����H�Yd!�lH�5e�H�81��������ff.���UH��H��SH����t;�6����H�����H�hH������}��������xH���[]�fD�������H�=���k��ff.���AVAUATI��UH��S��H��dH�%(H�D$1����H�$�������L�uL�m��ueL�������L����&���A��H���k����D������������L�����H�L$dH3%(��H��[]A\A]A^�@H�m��u}H��t�L�����L������A��@��u�H��������f������~DH�$L�uL�m��tH�m��u*H��t�H�������DH���"���H����������H�<$tH������������H�=�����!������AVAUATI��UH��S��H�� dH�%(H�D$1��C���H�D$���"����L�mL�u����L�����L��A�����A��H�������H�l$��D��D��H���������\$L���J���H�lj�����\$L��H���1�����H������H��H�����H���D������H�L$dH3%(H���HH�� []A\A]A^��H�m���H���1���L������L��A�����A��@���,���H���!������'���f.��������H�D$L�mL�u����H�m����H��t�H�|$���x����c�8�L�����uH�=\��,��H���D��D�������������f�H��H��H���H�=L�����H������H���G���H�|$�u����8���H�|$t
H�|$�^��������]����������AWAVAUATUH��S��H��dH�%(H��$�1�H�D$H�D$pH�D$H�D$xH�D$H��$�H�D$ H��$�H�D$(H��$�H�D$0H��$�H�D$8H��$����H�D$@��������E1�H�E�H�D$H�EH�D$H�D$pH�x(�&f.�H��tHc�H�t�H�2��H��H9�tH�P9��H��t�H��H�H9�u�9��6H�\$@M����H�|$f�1�)D$@)D$P)D$`H��t�l�H�|$ �D$DH��t	�x�D$HH�|$(H���EH�|$0H���TH�|$8H���cH�0]!��D$H�t$H�|$1�H������D�l$I��H����� ���I�I��H�����H�{�sD����H�{ H��H��t/���H��I���u�L�xA��u
I�������H����HcsH��H�t6����HcsH��H�t6���HcsH��H�t6���H��L�����H�[(H���k���L�����L��H��$�dH3%(��H�ĸ[]A\A]A^A_��L��H�����b���@��tz�e��H�|$0�D$LH�������@��tl�G��H�|$8�D$@H�������H�t$�
����������DH���0����
��������~%L�D$@�x���@����f�����H�|$@t
H�|$@�����������a�H�\!H�5��H�81���f���S1���H�=9������H�������ATI��UH��SH����L��H��H�ދ8���f.���S����uH�����t
�����t����H�=��1��|�����H����f���UH��SH��H����H��H�ދ8���ff.���UH��S��H��H���Y���H��H�=��H��1�������H���+�ff.���UA�H��E1�S�Ή�1�H��1�H��j����ZH��YH�‰��i�f���ATA��UH��SH�����D��H��H�ދ8�
�f.���UH��SH��H����H��H�ދ8��ff.���S��H��H�T$H��tH�����H�|$H�4$�4�H�T$H�4$H�
�� t�JH�R����H��H���������ATI��UH��SH����L��H��H�ދ8�*���f.���SH��H�� H�t$H�|$H�t$dH�%(H�D$1����H�����H�XH������H�t$H��� u7H��H�����{�����x?H�L$dH3%(�u%H�� [�DH�VHc�H9�uH�v��H�����i�H�T$H�t$H�=���#���SH��H�� H�t$H�|$H�t$dH�%(H�D$1�� �H�|$�V�H��H�D$���H�XH���=���H�t$�{H��� u=H��H����1�������xHH�L$dH3%(H�H�Du,H�� [�f.�H�FHcȉ�H9�uH�v�H�������H�T$H�t$H�=���I�f���UH��SH��H��(H�t$H�|$H�t$dH�%(H�D$1��<�H�|$�r�H��H�D$��H�hH���Y�H����H�t$H��� u<H���}H���������xAH�H�DH�L$dH3%(udH��([]��H�VHc�H9�uBH�v�}�p�����y����8��st��ju.H��u)���H��u,H��b!�H������m�H�L$H�T$H�5���g���H����s������H��tO�f��t&v,�f��
t�f��u�G���fD��f�f���n�E��fD1��D�������USH���q�H�JV!H�=��H�0���H��U!H��|���H�;�����H���H�5&��a�H�;�H�"���H�5���F�H�;�H���H�5���[�H�;�H�,���H�5����H�;H��T!�H�5����H�;1�H���H�5�����H�;�H�^�H�5r����H�;1�H��H�5l���H�;�����H���H�5[���H�;�H���H�5I���H�-ET!H�;�����H�5B�H���v�H�;H�����H�5.��_�H�;1�H���H�5��G�H�;�H�h�H�5��,�H�;�����H���H�5����H�;�����H��H�5����H�;�����H�W�H�5�����H�;�����H���H�5����H�;�����H�1�H�5����H�;�H����H�5����H�;�H����H�5���o�H�;�H����H�5l��T�H�;�H�E�H�5k��9�H�;�H�*�H�5K���H�;�H�O��H�5.���H�;1�H���H�5)����H�=���O�H����H�(_!H��[]�f���SH��H�H��t
���H�CH�{0H��t
���H�C0�{<��x���[�f���AWI���AVAUATUSH��(�o8H�wdH�%(H�D$1�H��D$��A��1�E����I�G��t+I� I�w(H��uH��tE1��1����I�G0I�GL�(A�G<����M���-I�W01�E1�E1�H��t@H�H��tA�}H��9xu	�0f�9{t)H�[(H��u�I�M(H����I��H��u�DA�}1�A�UA�u��A�ƉD$���A�G<���QH����H�L$A���Ǿ�D$���SH�sD����A�ĉD$��yRH�5E�H�t$���D��A�����D�D�D$��H�t$D�D$A�G<����M�m(M���3I�W0���1�I�u��A�U��D�����H�5���D$��x�A�G<������tLI�?D����H�L$dH3%(�H��([]A\A]A^A_�fD�C�H�5=�D��k���@��D���S��D$��y���D����L�H�5�����>�fDH�L$A���Ǿ�D$���I�uA�UD����H�5��D$�'���@�L$��x+A�}H���*����D$��x,A����������T$����E��xI�WI�OD���x�1�E1���I�W I�O(���b�f���ATH��1�E1�U��SH��dH�%(H��$1�I����H��H��PH��H��u3H���K���L�����H��$dH3%(u!H��[]A\�f�H�p�L��������������H��H��������AUATUSH��H�$H��(1�dH�%(H��$1�H��1����D$H��H�EH��t�x��y,H��$dH3%(H���eH��([]A\A]�@H�l$H�T$H���n���x��|$�P�H��t�H����I��H��� ��H��H�KH�ƒ��t�<>��1�H��1��D$L��$�n�H�5(�H��H����L��H��L��$�d�H��L��M��j�t$�H��A��q�ZY��tK�|$����H�t$�H���N����H���l���H�SH���\���H�CH�H��C���D�H��H�5����L��H����H�ߺH�5h����L��H���r��r���������H��XdH�%(H�D$H1�H�t$H��H�<$H�=%���H�T$H����H�L$ H��H�D$L�D$(H�D$0D�L$8�D$<������H�T$HdH3%(uH��X��>�ff.���H��tVH��thH��tSSH��@��t@��upH�����tg�����u]��H;TX!tBH;CX!uP��[�@1��D���@���@��[þ���H����H�5:�H��H��L!H�81��>�ff.���ATI��U��H��SH�� dH�%(H��$1��D$�	�H�XH���]���Y�C%�D$H�l$�{H�T$H������xM�T$�t$H�����H��$dH3%(u%H�� []A\�DI�<$H�t$�����t����H�=���k�ff.���ATI��U��H��SH�� dH�%(H��$1��D$�9�H�XH������Y�C%�D$H�l$�{H�T$H������xM�T$�t$H���4��H��$dH3%(u%H�� []A\�DI�<$H�t$����t�����H�=���ff.���H�EJ!SH�=6�H�0��H�~J!1�H�����H��H�5�H��c�H�;�����H���H�5���H�H�;�����H�����H�5���-�H�;�����H�~���H�5����H�;�H����H�5����H�;H�5:����H�=������H�=��H�LU!���[H�7U!�fD��AVI��AUATUH��S��H��`dH�%(H�D$X1�H�D$H�D$0H�D$H�D$8H�D$H�D$@H�D$ H�D$H���H�D$(��������1�L�eL�mL�d$L�l$��(H�D$H�D$ H��t2H�|$(���&DH�UH�T$��t�H�UH�T$ ��uXH��u�H�L$L�D$ E1�L��L��L����H�L$XdH3%(uKH��`[]A\A]A^������~
H�D$(�M���H�|$(t
H�|$(�
������	����@��SH��1ҾH��A���N��H��H�[H����ff.���������H�H!SH�=��H�0��H�nG!�H�����H�5��H��H����H�;[�����H����H�5y���@��AUI��ATI��US��H��dH�%(H�D$1���H�$��tq����I�,$��uH��H��H��L��A�A���H�L$dH3%(��H��[]A\A]�DI�D$��PH��H���fD����~9H�$I�,$��u�H��t�H���p��x���I�T$��H��H����H�<$tH���G������F�������SH�� dH�%(H��$1��|�H�XH������sH�T$1�H�L$�D$�D�H��$dH3%(u	H�� [��S����SH�� dH�%(H��$1���H�XH���`�H�yE!�sH�T$H�L$�D$H�8����H��$dH3%(u	H�� [�����ff.���UH��SH��(dH�%(H��$1��D$��H�XH�����H��H�L$H��H��D!L�D$H�8���H��$dH3%(u
H��([]��S����H��D!SH�= �H�0��H�VD!1�H����H��H�5��H����H�;�H�4���H�5����H�;1�H�,���H�5����H�;�����H����H�5j���H�;[�H�eC!H�52���f����f.����A��Q����UH��SH��H��(dH�%(H�D$1��;�H�xH�|$��H�D$�x�@�E1��H���H�����H�D!H��H�=�H��H�$���H��tH�L$dH3%(�uH��([]�H��H��H�=��������fD��UH��SH��H��(dH�%(H�D$1����H�xH�|$����H�D$�x��E1��H���H���k��H�lC!H��H�=jH��H�$���H��tH�L$dH3%(�uH��([]�H��H��H�=r��K���&��fD��AVAUATUSH�oH��H���E��H�L�0M��tcL�kL�%�B!�D�}�����t<I�F�UL��L��H�C A�F�S�C(�����x�H�[]H�DA\A]A^��M�v(M��u�[1�]A\A]A^�ff.����AUI��ATU��SH��H��dH�%(H�D$x1��G�����L�d$ I�D$H�D$PH��H�D$XH�D$H�D$`H�D$H�D$h�k��H�D$�������mH�H�D$8H�CH�$H�CH�D$H�CH�D$���0I�|$���L�����H�xH�|$(���H�D$(H�<$�@�D$0@��������D$4H�D$(�x��H�l$H�\$E1����H��H���W��H�XA!L��H�=6���H��H�D$ ���H����H�L$xdH3%(��H�Ĉ[]A\A]�fD����~hH�H�D$H�T$8H�SH�$H�SH�T$H�SH�T$��<H������H�|$�?���f.��������fD����f���H�|$t
H�|$����������~��H��H��H�=�����ff.����USH��H��H�oH�����H��mH�H��t*�SH�s�������x�H��[]�H�[(H��u�1���ff.���USH��H��H�oH���'��H��mH�H��u�7�H�[(H��t'�SH�s1ɉ�������x�H���[]��H��1�[]����ATI��UH��S��H��dH�%(H�D$1����H�$��tc����uA�1Ҿ����������H�����H�L$dH3%(��H��[]A\ÐM�$$��uWL���������������x?H�$u)H��t�A�H���F�����u���f.�M�$$��uH��u��H�<$tH������1������H�=y��W����f���H�U>!SH�=j�H�0�E�H��<!�����H����H��H�5��H�� ��H�;�H�a���H�5�����H�;�H�����H�5������H�;�����H�{���H�5I�����H�;[�H�O���H�5��������H��H���W�H�01�����H��H��ff.���AUI��ATI��US��H��8dH�%(H�D$(1�����H�D$��������1���u^H�����A�H�t$L��H�D$H�l$L�d$ ���H�L$(dH3%(��H��8[]A\A]�fDI�,$��uH��t�A�H�|$�J����t��@M�d$��MH��u݃��v����k��������x.H�D$�C���DH�|$�A��������.����H�|$t
H�|$�����1��������T��@��H�w�?1��_��ff.�@��H�w�?1����ff.�@�����H��H����H�����USH��dH�%(H��$�1��D$nH�l$���H�XH�������{H�T$H�������x=�t$��nw%H������H��$�dH3%(u)H�Ę[]��D$n�n��H�sH�=�����L��ff.����USH��dH�%(H��$�1��D$nH�l$����H�XH���B���{H�T$H���R����x=�t$��nw%H���-��H��$�dH3%(u)H�Ę[]��D$n�n��H�sH�=���a�����ff.����USH��dH�%(H��$�1��K��H�XH�����H�{H��t%�p��H��$�dH3%(u]H�Ę[]�H�l$�{H�T$�D$nH���s����x4�t$��nv
�D$n�nH���Q��H�����H��H�C�����H�sH�=����ff.���ATUH��SH��H��H��dH�%(H��$�1�H�9!H�0���H������>H�������H��H���?��L�`L�����f�H��$��\$`H�D$@H�D$@H����H�D$H�D$PD$d�D$tA�T$H�D$(H�H�D$�D$Ƅ$�H�D$HH�D$ H�D$0�D$8H�D$PH�D$X�$���<$������tX�$H��H���f�����t�H��$�dH3%(�u>H�Đ[]A\�DH���@��H�XH������[���I�t$H�=G�����6��H��6!H�5`�H�81�����ff.���AWAVAUATU��SH��H���H�T$dH�%(H��$�1��)��H�D$0�������1����TH�\$0H���KH�7!H�H�D$ H�D$(H��$�E1�L��$�H�D$H��$�H�D$H�|$D����8��L�hL�����H�D$DŽ$�����A�U�D$@H�D$HH�D$H�D$8H�D$XH�L��$�HDŽ$�H�D$PH�D$`�D$hHDŽ$�H��$��T$0�)fDA��u�����|$0�������T$0H��H�=C����^�����ui�t��D�0A��Zu�A��uÿA���G�����H�H�L$ ���kH�\$0H�������H�D$(H�\$0H��������}����ZH�T$`H��w8A�����A�����������A�������u�����$�������$����H���H���/H��$���Hc�$����+��L�%�5!A�$������~��u������H�|$ H�\tIH�$A!H����H�L$(�H�t$ L�D$pH�=�@!H�\$pH��H�L$xE�H�‰����H��H��$�dH3%(H����H���[]A\A]A^A_�H�KH�L$(����H�\$0H����������-�������������x~H�D$0����I�UH�5��D����������A�$�����H�=F��Y��H�2@!����H�D$ H�D$(����H��3!�H�5��H�81����H�|$0t
H�|$0����1���������H�{1�����H��3!��$��H�5��H�81������H�t3!�H�5x�H�81����H�W3!���H�5��H�81��g��H�83!�H�5��H�81��J��H�3!�H�5��H�81��-��ff.�f���AWAVAUATA��UH��SH��H��dH�%(H��$�1���u
H������H������H��L�l$ �1�H�D$"I�}I�Ef�H��f�L$ H��� �H�SH��l��H�sH���H���e��1Ҿ�A���1��A�ƅ��xE����D��L����P�����i��D���{�����yD��H������H��� ��L�`L���t��H���l��I�D$H��$�dH3%(H���.H�Ĩ[]A\A]A^A_�H��ƒ��������� ��������H�C�f.�H��H�s��H�������I�}�l�n�����f�H�T$H�t$L�l$H�=��D�|$�D$����T$������x]D��H�������%���@H�{�;���H�C�8�#����)���H�T1!�lH�5P�H�81�����H��H�=���������D���(� ��H��H�5(����O����������D���(���H��H�5�����*��D�������|$�)��f���1����D��H�0!SH�=��H�0�U��H�>0!�H����H��H�5��H��0��H�;1�H�����H�5,����H�;1�H���H�5<����H�;1�H�$�H�5������H�;�����H���H�5������H�;�H����H�5�����H�;�����H�����H�5�����H�;�����H��H�5e����H�;[�����H���H�5O������SH��dH�%(H��$�1��<��H�XH������sH�T$1�H�L$�D$n���H��$�dH3%(u	H�Đ[������SH��dH�%(H��$�1�����H�XH��� ��H��.!�sH�T$H�L$�D$nH�8���H��$�dH3%(u	H�Đ[����ff.���UH��SH��dH�%(H��$�1��H��H�XH�����H��H�L$H��H�.!L�D$�D$nH�8���H��$�dH3%(u
H�Ę[]�����������f���H��-!SH�=`�H�0����H�-!�H����H��H�5h�H����H�;1�H�����H�5M����H�;�H�	���H�5����H�;1�H����H�5��U��H�;[�H�,!H�5���9��f���AUI��ATI��H��UH��SH��L�D$���H��Hc؉��O��L���H�\Hc�����H�|$Lc����H�5g9!H��trH��L��H�l-���H�5C9!H����H��L��O�l-����H�59!H��tvL��L������H�5�8!H�\$H��t:H��L�����H��L��[]A\A]Ð�H�=��_��H��H��8!�n����H�=��?��H��H��8!��H�=�����H��H��8!�j����H�=����H��H�m8!�.�����SH��H��H�5�7!dH�%(H�D$1�H��t8H�����H��H�$���H�$H�T$dH3%(u-H��[�f.��H�=	����H��H�m7!��~��ff.���UH��SH��H��7!dH�%(H�D$1�H�4$H��tCH���;���H��I��H��H�=&7!���H�T$dH3%(u.H��[]�f.��H�=������H��H�57!�����ff.���H��dH�%(H�D$1����H��H�$�g��H�$H��� u;H����H��u>H��H�H�%�H��H�t$dH34%(u:H���DH�JH��u	H�R��H��H��(!�H�5��H�81������+���ff.���H�5�5!SH��H��tH��[�����H�=������H��[H��H��5!����ff.��S����H��uHc�[H�D�@H��[����ff.�@AUI��ATI��U��S��H��(dH�%(H�D$1�H��H�����H��t<I��H�
��L��1�H����0�<���H�L$dH3%(u(H��([]A\A]ÐA��L��H���L��0����������ff.�@��H��dH�%(H�D$1����H��H�$���H�$H��� u3H����H��u6H��H�t$dH34%(HcH�Du:H���DH�JH��u	H�R��H��H��&!�H�5�H�81��8����c���H��� u@H����H��u+H�GH���H��1�H�5��耿���H���fD1��DH�u�H�G��ff.���H��dH�%(H�D$1����H��H�$���H�$H��� uCH����H��tNH��usH�������HE�H�t$dH34%(uHH���DH�HH��t.H��u3H�@�f�H���8��HE��f�H�@���E���H��%!�H�5��H�81�����H��� u@H����H��u+H�GH��H�H�HH��1�H�5x��;����H��Ð1��DH�u�H�G��ff.�USH��H��dH�%(H��$�1�H��� ��H����H��uxH���oH�l$ H��.H��)$�G�
�D$����H��tvH��H�5 �H��1�蒽��H�l$P�t$H�=��H�����H��H��迿����
�1�H��$�dH3%(u1H�Ę[]ÐH�u�H��\����H�5j�H���ܽ����ż��DATUSH��H��`dH�%(H�D$X1�H��� ��H����H����H��H�L�d$H�l$�L��H��H�D$�G��D$����H����L��H�5�H��1�艼��H�u�L���ӷ��H����L��H�5��H��1��V���H�l$ �t$H�=��H���N���H��H��胾����@1�H�L$XdH3%(uZH��`[]A\�DH�u�H��$�����H�5*�H��蜼���N����H�5�H������f����g����ATUSH��H��0dH�%(H�D$(1�H��� uEH����H����H����1�����H�L$(dH3%(��H��0[]A\�fDH�GH��u�H�H�L�d$H�l$�L��H��H�D$�s���H��tnL��H�5��H��1����H�u�L���D���H��t_L��H�5Y�H��1��˺����V����H������H���H���m�����H�5ڿH���L����f.�H�5��H���q��������f.�H��dH�%(H�D$1��G���H�Ǩt0�;��H�|$��D$�x��H�T$dH3%(uH���������费��@H�5�.!SH��H��t0H�����H�Ǩt����[�f.��˸��[�f��H�=X��O��H��H�M.!���H�����H��H�H�D��H�5.!SH��H��t0H������H�Ǩt�\��[�f.��K���[�f��H�=Q�����H��H��-!���H�����H��H�H�D����ATUSH����H�߉��f���H��A���������A��
uH��� tDH�HH��uPH�@H�01���t���tHc�H�|?H�� []H�t6A\�y���f�H����H��uH���H��H��!�H�5�H�81��ʹ��H�v!H�5��H�81�赴��D��ATUSH�����H�ǨtA�����H���
���H��A����������E���„�t ��"uH��[]A\���fD�Ӷ�����H��!H�5��H�81��7������ATUSH���0���H�ǨtA�����H�����H��A���������E���„�t ��!uH��[]A\����fD�S������H�x!H�59�H�81�跳�����AWAVAUATUSH��H��dH�%(H��$�1����H�Ǩ��������H�����Hc�H�|?����H��I���N���Hc�H�|?���H��I���f�H�|$hH�D$h����H������H�=#�H��1������H���Բ��H����H���3���H�5��H��H��1��_���A��������������D��H�5ٻH��1��*���D��H�5��H��1�����������
��H�54��H��谶��H�|$h�&���H��H���k����H�5��H��臶��H��H��$�dH3%(�aH�ĸ[]A\A]A^A_�D��萿��H���gD��H�5"�H��1��s���A���y��A����A��)�wH�5�!D��� �<t"��
���H�����������������H��肺��H�5�H��H��1�������f�1���H�5ڳH���ݴ��A���~���H�ߺH�5U�����D���'���H����H���f���H�5#�H��H��1�蒴��A�������H���E��Jc�H�>��@�k������v���@A��tbA��)��E���C���A�� A���5���H�ҾJc�H�>���H���ذ��H�5��H��H��1���������A��ubf�H�|$hH���3����������fDD��H�5_�H��1�輳���%����A��A��
�����H�O�Jc�H�>��A�������H�D$hH� �p���L�hI��g�b���H�@�H��hD�`D�x,D�p0�L$>�H�L$=�H�L$?�H�L$�H�L$�H�L$(�H�L$$�H�L$ �H�L$,�H �L$0�H$�L$8�H(�L$4�H4�L$�H8�L$�H<�L$X�H@�L$\�HD�L$�HH�L$�HL�L$T�HP�L$P�HT�L$H�HX�L$L�H\�L$�H`�@d�L$@�D$D����H�
l���Hc�H�>���E����H�5�!D���@�����H��1�H�5�D���D���D���l���H��t'H�����H�5��H��H��1���������fDD��H�5��H��1�������H�5�!D�������@Ic�H�D���H�5q!D�����t���@H�|$hH���3����fDH�|$hH���������fDH�|$hH���c����fDH�T$hH��� ��H����H���B���H���*��艵��H���^	H�����H�5��H��H��1������4����H�T$hH��� �H��H����H������H�*���	���-	��H�5��H��1�軰��H��H�5z�H��1�H�� 裰������fDH�D$hH��� �#H����H���r���H���H�H��H�53�D�@1��X����H�54�H�������d����H�T$hH��� ��H����H������H���*���)�����H�5��H��H��1�������H�|$hH��� ��H����H���DH�����������H��������H�T$hH��� ��H����H�������H�BH�l$p�0H�=��H����H��H��蹱�����H�T$hH��� �mH����H���>���H���H�5&�H��1��+����K����
H�5u�H���ү��@����H��Hc�H�>��H�5͵H��裯���T$>H�5�H��1��ͮ���T$=H��1�H�5ݵ跮���T$?H��1�H�5ҵ衮���H�5͵H���M����=A����A���VA���&A����A����A�� ����=��E���k���c�D$���CD�D$H�5��H��A��Mb���H�����i�@BA)�1�����D$D�D$H��H�5d����H�d���i�@BA)�1��ȭ���T$(H��1�H�5G�賭���T$$H��1�H�5>�螭���T$ H��1�H�55�艭���T$,H��1�H�5,��t����T$0H��1�H�5"��_����T$8H��1�H�5��J����T$4H��1�H�5
��5���D��H�5�H��A���H�����i��A)�1�E������D��H�5�H��A���H����i��A)�1�E���׬���D$D�D$H��H�5��A���H�ô��i��A)�1�襬���D$D�D$H��H�5��A���H�����i��A)�1��s����T$XH��1�H�5���^����T$\H��1�H�5���I����D$D�D$H��H�5�����H�q���i�@BA)�1������D$D�D$H��H�5�����H�F���i�@BA)�1�����T$TH��1�H�5,��ҫ���T$PH��1�H�5(�轫���T$HH��1�H�5 �訫���T$LH��1�H�5�蓫���D$D�D$H��H�5�����H����i�@BA)�1��b����T$@H��1�H�5��M����T$D1�H��H�5��8���I��h�S���A�U�H�5ڳH��1������9����
H�5ܱH����������H�5��H��觫������H�5˱H��莫������H�5~�H���u��������H�5=�H���\�������
H�5�H���C����l����H�5�H���*����S����H�5°H�������:����H�5X�H������!����H�5/�H���ߪ�������H�5�H���ƪ������H�5.�H��譪�������H�5�H��蔪������H�5
�H���{������H�5W�H��1�襩�����H�z���H�R�J���H�z�}�H�R�f���H�z�i�H�R���H�x�U�H�@����H�GH���v���H��H�l$pH�t$d�H���D$d�|���H����H��H�5��H��1������H�z���H�B�\���H�z���H�R���A��H�5:�H��1�轨�����H�
�H��1�A���H�5�蜨��1��,�J���H�
�H��1�A���H�5ů�t����,����H�
��H��1�A��H�5���N����,���H�
��H��1�A��H�5y��(����,���H�
h�H��1�A��H�5S������,���H�
2�H��1�A��H�5-��ܧ���,�T�����H�5�H��1�迧�����H�5f�H���f�������H�5R�H���M�������H���A���@��H�5x�H��1��j�������H�5��H�������q�������AUA��ATU���S��H��H��!H�L$H�8��H�|$I���u���Ic�Hc�Hc�L�D$L��H�L	H�TH�t6�@�H��L��[]A\A]�f���H��H���`��"1�H��H����(������H��H���0��!1�H��H���������UH��H�5-�SH��H��H��dH�%(H�D$1�H�$虫��H��uc1�H�������H�߃��$tD����H���D$�V���1��
�H���r���H�L$dH3%(u)H��[]��Ӥ��뺐H�Ǩt	�ı���f�軤����d���@��AUH��M��ATI��UH��SH��dH�%(H�D$1�����H��lj��U���L��߉Ɖ�����H�|$�A��1�I��������D$蕯��D����H��趩��H�L$dH3%(uH��[]A\A]��Ƥ��fD��AUH��M��ATI��UH��SH��dH�%(H�D$1��q���H��lj�赢��L��߉Ɖ��g���L��A��輫���u@H�����t8H��у���u+�� tH�x~H�H��"fDH�H���u�@H�ǨuI�l���H�|$��D$詮����D���H���ʨ��H�\$dH3%(uH��[]A\A]���#�����̣��ff.����AUH��M��ATI��UH��SH��聡��H��lj��š��L��߉Ɖ��w���L��A���l�H��D����H��[]A\A]�3�����H��
!SH�5p�H�H�K!H�8����H�!�H����H��H�5��H����H�;1�H���H�5���ީ��H�;1�H���H�5ߕ�Ʃ��H�;1�H�
�H�5@�让��H�;1�H����H�50�薩��H�;1�H���H�55��~���H�;�H����H�5��胩��H�;1�H�w�H�5���K���H�;�H�����H�5��P���H�;1�H�t�H�5g�����H�;�H����H�5Q�����H�;1�H��H�59����H�;�H����H�5#����H�;1�H�.�H�5�貨��H�;�H�s���H�5��跨��H�;1�H�K�H�5ߪ����H�;�H����H�5ת脨��H�;1�H���H�5���L���H�;�H����H�5��1���H�;1�[H�D��H�5����������WH�w�?�~���ff.���AUI��ATI��H��UH��SH��L�D$�̞��H��Hc؉�����L���H�\Hc�����H�|$Lc��~���H�5�!H��trH��L��H�l-�Ҭ��H�5k!H����H��L��O�l-責��H�5C!H��tvL��L��蛬��H�5$!H�\$H��t:H��L������H��L��[]A\A]Ð�H�=ѱ����H��H��!�n����H�=�����H��H��!��H�=Ғ�߫��H��H��!�j����H�=Ȓ迫��H��H��!�.���AUA��ATU���S��H��H�=�!H�L$�ɧ��H�|$I���L���Ic�Hc�Hc�L�D$L��H�L	H�TH�t6�W���H��L��[]A\A]�f���SH��H��H�5�!dH�%(H�D$1�H��t8H������H��H�$�Ԡ��H�$H�T$dH3%(u-H��[�f.��H�=Y��Ϫ��H��H�U!��Ξ��ff.�S����H��uHc�[H�D�@H��[�ϧ��ff.�@��AWI��AVAUA��ATUSH��(dH�%(H�D$1��s���H��E����I�7I��A���gH������Z������LI��E�u�K�,��2fDI�7@���+H�������I�������H������I9�u�Ic�N�4�L�l$H���F���H��H�CH�D$�C�H�D$J�< I���~���L�xL���Ң��A�GL��H���D$芞��M9�t%H� u�H�C �Ic�H���ڡ��H���H�����y���H�5�!H��H��t-H��H���O���H��H�L$dH3%(uDH��([]A\A]A^A_þH�=q��ܨ��H��H�r!�H�Y!H�5F�H�81�蘙���Ü��AUH�GATUSH��L�/I�H9�r8I9�r3I��H�_�f�I9�r�{�H��H�������{�褞��I9�s�H��[]A\A]�@H�5�!SH��H��t0H���8���H�Ǩt茨��[�f.��{���[�f��H�=�����H��H��!���H�����H��H�H�D��H�5�!SH��H��t0H��踢��H�Ǩt����[�f.����[�f��H�=������H��H�-!���H�����H��H�H�D��H�5�!SH��H��t0H���8���H�Ǩt茧��[�f.��{���[�f��H�=����H��H��!���H�����H��H�H�D����USH��H�����H�߉��d�����uH��uCH�5K!H��tH��H��[]鐡���H�=�����H��H�!H��H��[]�g���H��!H�5��H�81��/���ff.�@��AUI��ATUH��SH��H������H���A���W���D��L��Ɖ��8���H��A���-���9�t1�H��[]A\A]�@H������¸A9�u���f���H�����H��� u#H����H��u1H��HcH��H�D�DH�HH��uH�@HcH��H�D�H��H�!�H�5�H�81��=���ff.�f���AUH��M��ATI��UH��SH��dH�%(H�D$1�����H��lj��U���L��߉Ɖ��7���L��A��A��tK�V���H�|$��D$蓣��D����H���$���H�L$dH3%(uH��[]A\A]�f������贘��@AVAUATI��UH��SH�����L��A���/���L��A���4���A��)��A��2uH��� tdH�xupH�@�of�
)M�@�E1�CH�Cf�Cf��EfoU%��S=��u�E�C[]A\A]A^�fDH����H��uH���H�n� H�5G�H�81�譔��ff.�f���H��XdH�%(H�D$H1�H�T$ H������D$H�L$HdH3%(u
H�DH��X�舗�����SH��PdH�%(H�D$H1�H�\$ H��H�����H��1�E1�j�
A�H�߾�4���ZYH�L$HdH3%(uH��P[��������SH��`dH�%(H�D$X1�H�\$0H�t$H���5���H��E1�1�jA��
H�߾� ���H�D$�D$0H�DH�D$XZH���0���H�L$XdH3%(uH��`[�腖��D��SH��H��`H�t$H�|$dH�%(H�D$X1��Օ��H���-���H�T$f��D$ )D$H�
)D$0H�D$@�D$H�� ��H����H����H���o
H�r�
�R)L$0H�t$@�T$Hf��
uv�oT$8H�|$��D$ )T$�`����2�)�
H�����H�\$XdH3%(uIH��`[�H�zu	H�R���H��� H�5��H�81��8���H��� H�5�H�81�� ����K���ff.���AUATUSH��H��8dH�%(H�D$(1��:���H�߉����H��A��������A���H��� ��H�x��H�@�P��H��f�$D�hH��1�E1�1�A��H�D$
H��H�\�T$��E
f�Ej聞���E1�1�f�t$�H��I��A��D�l$H�$�J���L�d$ H�\$(H�D$0_�AXH�t$蹠��H�L$(dH3%(u?H��8[]A\A]�fDH����H��u	H������H�k� H�5��H�81�誐���Փ��D��ATUH��S��H��@dH�%(H�D$81����H�D$�������l1�H�EL�eH�$���1H�D$H����H���ߒ��L���7���H�|$H���XH�$H�D$H�D$f��D$H�)D$ �� �	H����H���\H��H�H�@H�T$ H�D$(f���UH�D$H�� f�\$�T$H�)D$ �� ��H����H���6H��H�H�@H�T$ H�D$(f���/H�� H�|$��T$����1���H����H�L$8dH3%(�H��@[]A\�H�EH�D$������H�|$t
H�|$蔚������蓙��H�xu]H�@���H�xu}H�@�B���H�|$�f���H�$���DH�|$�>����b���f�諛����~�H�T$����H�� H�5~�H�81��d���H��� H�50�H�81��L���H��� H�5v�H�81��4���H��� H�5��H�81������G����AWAVAUATUSH���H�t$HH�T$H�L$@L�D$8L�L$ dH�%(H��$�1�H�D$X�Օ��L�pL���)���L��衙��H�|$H�$蔒��H�|$H���I��H�D$8�uH������r轒��H�H�D$8H�ց� �vI��I��A��Ic�E��L9��H��$�E����H�|$1�H���J��$ ���@��E�H�|$@t
H�|$@跏��L��L�l$pL�%���c���H�D$`I�OL�,$H�L$I����f�H�L$H����H�L$`H�D$hH�D$XH��t9H�8�� �H��H��H��$���Hc�H9�����H��$�L���ߔ��A�FH�4$1�H�����L��H�\$x�D$p�l$t�	���H������$ ����A�~臒������L��臔��H�D$@f�H�C0))C)C H��t1H�8�� urH��H��H��$���Hc�H9��6��$�I�L��$�HDŽ$��� ����I�GH�D$`I�G����f�H�PH�xH��$����H�PH�xH��$��fD�{����8����H�|$ ��H�m!H��$�dH3%(��H���[]A\A]A^A_�@H��у����}���H�ց� �����L�`����@�����Q��������f.�H�T$XH�$H�T$pH�|$HL��H�T$X耋��H�$H�@H���H�D�B��������H�hH����1�蘐��H�D$XE����A�D$�L�t$(H�D�L�|$0H�D$H��$�I�����H��$�H����H�I��� ��H����H��H��H�ZI�t襍��H�D$XH� ��H��J�(H��1�H��莎��H��$�D��$�H��D��$�H��� ��H����H��H��$�fo�$�	H��$�H��� �H��H����H���	H��H9l$�H�]H�
-��H�#�H�����I��H���5H��� ��H����H���h1�L��莊���L��I���~����L��I���n���H��$��$L�������L���߉�A�����L��L�t$A��芍��H�|$XH��� �i���H��$�L�oH��� �o���H�PH��H��H�Z�m���@H�VH�vH�������H�yH��躏��H9l$���L�t$(L�|$0H�\$H�D$8H��$�H�D$8����f�H�B���h���@H�@�����H��!H����E1�1�H�=�!H���̌��H�u!I��H��t}E1�1�H�=!H��詌��H��!I��H��t:E1�1�H�=�!H��膌��H��$����f�I�E�U�����H�=��_���H��H��!��H�=2}�?���H��H��!�c����H�=(}����H��H�!� ���H�|$�f���������H�h �p���H��H�D$�r���H�D$H�0�� �C���H��藅���e���H��$��u�������H��� H�5�H�81��x���裉��H�j����
����x����8H�5��誆��L���…��f���ATUSH����H��A����H�߉���A���ƒ�u��tH��� ucH����H��u6H���[��#u+��t'H��� uH����H��uH���P@H�xtA�H�i� H�5z�H�81�訅���H�xu�H�@H�8H�p�)�����H�@H�8H�p�p���H��t�[]A\�D��AVAUATUSH��H��dH�%(H��$�1���H��A���w�H�߉����H��A�����H��I������H�=�H��1����D��H��軄��H����H������H�5ןH��H��1��F�������D��������H�5ȓH��1�����1�D��H�5��H������A���A��
�H�5#��H��蟈��L������H��H���\����H�5��H���x���H��H��$�dH3%(�yH�İ[]A\A]A^�fD1�D��H�5q�H���t������.���H�ߺH�5�����D���o���H���FD��H�5ђH��1��2���A�����JA���8A��#����I��� ��I�~����I�V�oH��H�l$p)$�>���H�L$H��H����o � )d$�oh)l$ �op )t$0H�@0H�D$@�?���H�L$H��H��H�5[�1�膆���������y���H���H��H�5
�H��1��]��������V�����)��H�5�� D����<t"�����H������������������H���o���H�5܅H��H��1����A�����������)����A��2����I��� ��H����H�������I���Ao>H�l$pH�t$P�.H��
E�f)|$P�ڀ��H����H��H�5�H��1��]���H�l$`D��H���
���H����H��H�5��H��1��0����_���H�����H�5��H��H��1���������H��踁��H�5u�H��H��1��������A������I��� �H����H�������I��I�H�l$pL�d$�I�t$H��H�D$A�F�D$����H���H��H�5�H��1��_����|$H������H���
H��H�5ěH��1��6���I�t$�H�����H����H��H�5 �H��1������1���D����H�5� D��������@A������I��� ��I�VH�������������E1�I�n�2H����I9�����H��B� H�5ӒH��1�I���t���I��� t�M;f�����I�F��@H�5�� D���9�����@Ic�H�D����H�5�� D�������@H��I�V��H����������fDH��H�����3�����I��� ��H��I�V��H������H�H��L�bH�l$pH�$���H�L$H��H�J��o� )D$�oH)L$ �oP )T$0H�@0H�D$@����L��H��H��H�5�1��Q������@I��� uhH����H���<���I��A�A�NH��1�E�FH�5������H�5�H��軂���*���fDI�~��I�V����@I�~����M�v�I�~����M�v����I�~�����M�v��D��H�5��H��荁������H�5†H���4��������H�5��H����������H�5D�H�������q����T$H�5 �H���*�������Ѐ����H��A�j�{�H���fD��H��j�a�H���ff.����U��@SH��H���n�Շ��H���t9kv�kH��[]����WH�w�?�n���ff.���AUATUSH��H�_(H��vnH�w H��H��tbI�I��H�L9muH��H���;�I�t$ H�EH��H�ڃ�H��H��v%I�L$(H�H)�H9�wH)�H9�w
H��H��H�u�H��[]A\A]�ff.�@AWAVA�AUATUSH��H��x	H�|$HH�t$8H�L$0L�D$PL�L$XdH�%(H��$h	1�H�D$hH��tH����H�I��H�D$H�D$0H��t���H�H�D$H�߃����U����D$@�\$@D��$�	H�|$H�؃�@E��D�H�|$8�D$@��H�|$0��	����D$衃��L�hL�����L���-�������H��$`D�d$@�D$D�H�$H�D$pH��$�H�D$ H�D$�H�D$H��$�H�D$(@H���fL��H����~��L�{H� tL�{H�|$hH����H�t$�~��H�D$hH�PH� tH�PH�<$1��f�ED�D$�H�H�D$ H�<$H�E,�E4H��$�H�D$H��$�DŽ$�HDŽ$�L�|$pL�t$xH��$�H��$�E����L��A��赂��A�EH�t$(1�H�����H�=����H��$���$�D��$���y��H�����H�|$8uH;D$x�cH�|$0��D9d$@���H����{��D�d$@�D$H�������L������H������L������A�EH�t$(1�H�����H�=O���H��$���$�D��$��#y��H����9��$�	�����ey���8�����t$D���k��t	��Z�]苅���D$D���fDH�|$�>��H�D$h����@1��$������H�t$H��������;�$�vw�L$D�����������H���z���q���f�M���M�H�|$0u��$�tNjT$�@A�}菀������rx���8����H�|$��H�d$H�D$�H�D$�{���fDH��H���?H����{��H�� H��H�0�y����$�H��$�H��$�H�|$H�x|���H��$�Hc�$�H�DH��$�H��$�H��H�D$�a���L��I��膃��H��$��$H��uFH��$h	dH3%(L����H��x	[]A\A]A^A_�f.�L���������H���KH��$�H���:H�H����H�T$PL�t$H�H��H�T$H�H�{H9�HB�H��H)�躄���S�s�<$H���I��H�|$I��H��&H9CuH��H�����H�|$L����H�H��$�H��H�ك�H��H����H�$�H)�H9��|H)�H9�wtH��H��H�tgH�H���H���H��� H�5U�H�81��3v��H�|$8�y��I������H�|$0�y��H�߃�H�D$�)����~x���D$@�$���DL�t$H�D$hH��$�H�D$h�N���L��蜃��H�������H����w�����H�|$X�TL�5�� ����H9C�����z��I��H�i� H����L��H��L�kL���Ƅ��H�H�H�D$ L9��L9�s]���D��1���{��H�5
� I��H����L��I���2��L��H��I���T���L9l$ ��L9���E�e�H�T$�D���~������D��虁��L�=�� A���xvA��~��uD���9~����$�%�=��R���H��� H�8�w��D��H���8���H�5Q� I��H���G����H�=	��t���H��H�*� �'���D���ms��A��z���A���|���I������o���I��ƒ����^���H�€�I�I��J������A���L������4����H�=�����H��� �K���H�5�y�t��H��� H�5��H�81��s����v��H��� H�5-�H�81��s��H��� H�5D�H�81��js��H��� H�5L�H�81��Rs��H���1���v��ff.�@��H��A�j���H���fD��H��j���H���ff.����H��H��� H�5ۂH�H�� H�8�؁���H����H�5�sH��H��� �|��H�=�� 1�H�6�H�5Qx�|��H�=�� 1�H����H�5@��~|��H�=�� 1�H���H�5{h�b|��H�=s� 1�H�r��H�5Ih�F|��H�=W� 1�H���H�5�r�*|��H�=;� �H����H�5��|��H�=� �H����H�50~�|��H�=�� 1�H���H�5~��{��H�=�� �����H�M��H�5V���{��H�=�� 1�H����H�5:��{��H�=�� 1�H�5�H�5���y{��H�=�� �����H���H�5q��z{��H�=k� 1�H�*��H�5U��>{��H�=O� �H����H�5A��?{��H�=0� 1�H���H�5%��{��H�=� 1�H����H�5���z��H�=�� 1�H�'��H�5���z��H�=�[�Ow��H���}��H�=�[H��� �4w��H����|��H��� H������ �fD��H��H�OH�WH�wH�?��~�����tH�H�����[p���8��H����H�D������H��H�W�dH�%(H�D$1�H�H��H�$�0s��H�L$dH3%(uH�H����s��@��H���GH�W�wD�O(L�G �OPH�?�Zu��H��H����H��� 1��Np��ff.���SH��H�?� x��H�{[�x��fDPXH�5��H��H��� H�81��Bo��f�PXH�5��H��H��� H�81��"o��f���H��H�5� �t��H��t�pH�x H����|�����f���H��H�5�� �|t��H��t|H�x"H�H �PH��H)�9�rJf�x uCH�H9�sR�x�uLH���
��x�u:H��H9�u�H)�x6H��lMH���M|��DH�I� H�5߀H�81��`n��H��������H�'� �H�5��H�81��9n��H�
� H��lH�5˅H�81��n��f�H��H�5�� �s��H��tH��1��zvf�z 
uH�B(H������ff.���H�����H��1�H��t�:�tH�����R�����HD�H�����H���s���H��1�H��t�:�tH�����R�����HD�H�����H���3���H��1�H��t�:�tH�����R�����HD�H�����H����H��1�H��t�:�tH�����R�����HD�H�����H�����H��1�H��t�:�tH�����R�����HD�H�����H���s���H��1�H��t%�:��u�r��u�J��u�Bȃ�H�H�Ѓ�H���ff.�@��H���#���H��1�H��t�2��u�J��u�z���HD�H������H�����1�H��t���<H҃�H��H���fD��H�����1�H��t�%��=���HD�H��H���ff.�@��H���s���1�H��t�%��=���HD�H��H���ff.�@��H���3���1�H��t�8��HD�H��H������H������H��1�H��t$�:��u�r��u�J��u�z�HD�H�����H������H��1�H��t�:��u�r��u�J��u
�zH���H���fDSH��H�5�� �0p��H��t H��1��zvf�z u�B$ȉ�[��&���fD��H��dH�%(H�D$1�H�t$���1҅�t�D$%�=�HD�H�L$dH3%(H��uH����4m��@��H��dH�%(H�D$1�H�t$�>���1҅�t�D$%�=�HD�H�L$dH3%(H��uH�����l��@��H��dH�%(H�D$1�H�t$����1Ʌ�t2�T$��%�=
t>��%�=�t0f1Ҹ����HD�H��H�L$dH3%(uH���fD����Ll��ff.����H��H�5�� �n��H��t|�P��v\�H �΃�f��uMf��t*f��
uA��uY�@"H��f����H�D�f.���t�H�|� H�5��H�81��h��H�d� H�5{H�81��{h���6���H�G� H�5x�H�81��^h��ff.���H��H�51� ��m��H��t$H��1��zv�R ��f���HD�H�������ff.���H��H�5�� �m��H��tH��1��zvf�z �HD�H������@��H��H�5�� �Lm��H��tH��1��zvf�z 
�HD�H����D���@��H��H�5a� �m��H��tH��1��zvf�z �HD�H�������@��H��H�5!� ��l��H��t	H�@H�������f���H��H�5�� �l��H��tHc@H��H�D����@��H��H�5�� �ll��H��tHc@H��H�D��t���@��H��H�5�� �<l��H��tHc@H��H�D��D���@��H��H�5a� �l��H��tH�¸�zv	�B H�DH�������fD��AWH�5#� AVAUATUSH��dH�%(H��$�1��k��H���xL�h"H�h I��1�L��H)�A9F�^A�~�i��H���H��A��p��A�~H�$����A�~���2�؃�����g��H���H���fp����M�>I��I�FH�D$��e��H����H���?p��H�D$L�T$`H��$�H��A�vjM�йH��A� H��L�T$(��j��ZY��L�T$��L����n��H��H����n��H��H���hn��H�D$(H�$H�t$ �H�L$L�d$8H�D$0H�D$H�L$ L�l$@H�D$HL�|$P�xt��H��$�dH3%(�7H�Ę[]A\A]A^A_��A�^ ���fDI�F��M�>H�D$��d��H��H���~�4o��H�D$����A�FH�I9�sZ�}�uTL���
��}�uBH��I9�u�L)�L��A���q��������k��H����H����n��I���,���f�H����H��� ��H�5�vH�81��c��H��� A�VH�5SvH�81��c��H�v� ��H�5�vH�81��c���F�H�W� A�VH�5IvH�81��jc���f����H�=gf�q��A���H�� A�VH�5�uH�81��0c��AWAVAUATUH��S��H��dH�%(H��$1�H��|1I��L�o�?f���uH�
V}��I��Hc�H�>��fD�H�5�uH���f��H��$dH3%(��H��[]A\A]A^A_�H�5{OH���f��H�5vH�����4h��H�5hH���%h���D��H��H�5�z1��e���H�5#vH���hf���g����H�5�NH���Lf���K����I�M��I9����x���L�����x���H��L9�u�L9�����L��I9����H����!<]�`�H�5�MH����e��L�%!uDI��A�V�1�L��H����d��I9�u�������A�T$1�H�5tH���d������A�T$1�H�5^tH���d������A�T$1�H�5>tH���d�����8A�T$H�5 tH��1��`d��A�T$f���҅��;A�������D��H��1�H�5�x�(d��������/��H�5�xH��1��d���������`��H��unA�$H�5WtH����c�����DH���{����H9������L)�A�|$/t�H�5�sH���Xd��H��L��H���Jd���I���DH���8`��H�5tH��H��1��dc���#����H��H�5�r�d��H��H�5�r��c��H��H�5�r��c��H��H�5�r��c���H�5�rH���c������H��H���E1�jH��E1�D��L���d��ZY����A�L$f��tAf��H��H�5]r1���H���b��A���P���A�W�H�5CrH��1��wb���6���f�H��H���d����1����@�d��A�T$1�H��H�5erf�����5b������H�5\dH��I���jd��A�|$L����h��H���LL��H�5yH��1���a��A��	��H�5dH���'d��A�T$1�H��H�5r�a��A��
tsH�5�cH���c��A�D$
����<��<� <�1<����H�5�qH��1��ia��A�D$��A9�uA��uHA9��h������H�5wcH���c��A���J���A�T$1�H�5�qH���a��A����H�5=cH���Nc���H�5^qH���a��A�D$H��H��H9���A�_�E1�L�5�qfDM��H�5�xH��IE��b��C�T,H��1�H�5�pI���`��D9�w�A�D$���'���@�H�5KpH���$a���#�����H�5FpH���a�������H�5�oH����`��A�T$f���҅�����fDH�5�oH��1��_�����f.��ڸ����������H�5�VH���`���V����A�T$H�5�oH���_������	H�5hWH���K`�������H�5�oH���2`�������	H�5rWH���`������	H�5�oH���`��������^����H�=�^�i���H�5�nH����_��H��H�5�n�_���H�5�nH���_������AWAVAUATUSH��XH�L$dH�%(H�D$H1�H��t1H��I��H��H���L��H�5Eo��`��L��I����]��I9�t/�����H�T$HdH3%(��H��X[]A\A]A^A_����Z���
1�L���I���{c��E�EE��u�A��H=��w�H����D�ED�eD�mE��@��A��
��@�A����A��t	E���b���H��H�5�n�`��H��H���/]��H9��?���H�T$,H�޿�b�����%���H��tE1�fA��H�K�E��t,D9ct&H��H9�u�M�������H�D$L�81����DE�����CA9�t��už0��i���H����`���t$,��EH�@H�
@t�p�s�@f�fD�p�uD��L�}(I��u�EH�EH�E �M����0��h���H���l`���t$,��EH�@�p�sf�H�
�s�u�s�@fD�p���DH�5%mH��E1�E1��^��H��H���[��H9��f���H�T$0H�޿
�`��A�Ņ���E1��]DH�5�lH��D�D$A���Q^��H��H�D$�d[��H9D$D�D$�����H�T$0H�޿
D�D$�=`��D�D$������H�	sE1�fA��H�K�E��t(D9ct"H��H9�u�����@E1��q���A�����E�����CD9�t��uɾ0��,g���H���_���
foT$0�E
f�0�sf�H�
drfD�p@H�@�uD��PL�}(I��u�EH�EH�E �M����0��f���H���^���sfoL$0f�
@H�
�qH�@�u�sf�8HfD�p�E
��NZ��ff.���AUATI��H�5� U��H��SH��(dH�%(H��$1��x\��H���WH���G]��H�D$�������(��1�{u��L��$L�d$H���sU�L��H�{ A�M���\��ZY����L���<`��L��H���1`��H��H���_��H��$dH3%(��H��([]A\A]ÐM�$$��uI���e���L��A��tD�e�����R�����c����xOH�D$t0M�$$��u?H��t�H�|$�ha���fD�;X��������@H�������H�|$�=a����H�|$t
H�|$�&a���1����(`���3���H�=uX�c���X����SH�5D� H��H��dH�%(H�D$1���Z��H��tc�xvE�@ ��f��u8H��H�ڿH�$���1�H���V��H�L$dH3%(u#H��[�H��� H�5dgH�81���T�����W��fD��SH�5�� H��H�� dH�%(H�D$1��8Z��H�����x���@ ��f��uwH��H�t$�H�D$�M����H��H����U��H�|$H�D$�~S��1��
H���[���H��Hc�H�T�c��H��H�L$dH3%(u#H�� [�H�ҿ H�5}fH�81���S�����W��ff.�@��AWI��AVI��AUI��ATI��US�H��HdH�%(H�D$81�H�l$H���0�����u<��Z��H�T$I�H��X1�H�L$8dH3%(��uFH��H[]A\A]A^A_ÐH�t$1�H�����L�t$H�=��L�l$L�d$ H�l$(��R���Å�u���EV��D��AWM��AVI��AUI��ATI��UH��S�H��xdH�%(H�D$h1�H�L$�p�����uD���Y��H�T$I�H��X1�H�T$hdH3%(����H��x[]A\A]A^A_�DH�l$@H�t$(H�l$01ɺ�L�l$0L�d$8H�l$(�`���Å�u�H�t$1�H�����H�l$H�=�L�|$��Q���Å�t!����n����;R���8�����D��Y���H�|$(��Q����H�D$(H�@H�D$���4��������U��ff.����ATI��US�GH���u#�9f�H�{H�k(�cV��H��H���XV��H��u�[L��]A\�GV���H���a��[L��]A\�,V��ff.����H����\���H���f���H��HdH�%(H�D$81��D$PH�<$H�=I��t$H��H�T$H�����H�L$1�L�D$ L�L$(�D$�P��H�T$8dH3%(uH��H��T��f�H��E1�E1�j�Q��ZY��uH��É�H�=�S�^��fDH��(1�H��dH�%(H�D$1�H��f�4$�H�D$f�H��@
�|$H�����H�D$dH3%(uH��(��gS���ATUSH��H�|$H����H�b� H��I��H�0�Z��H����H�|$�1O��H�D$H�(�� tAH�hH�pH��tD�><��H����H��H���3W���+H��[]A\�fDH��H�p��H��u�1�H�����M��tA�$H��H��[]A\�H�|$�vR��H�މ�����M��u���H��1�[]A\�DH��tRH���e���H�<broadcaH9�_���f�~st�S����~
>�I���H�޿�����Z���M���p����p���@�><any�����~>�����=���H�&� H��H�5'cH�81��N��f���AVAUATUSH��L�/L�gdH�%(H��$1�H�GH��S��H�{ H��H����BX��H��H���Z��L�k M��tL���&Q��H=v~1��GT��I��L��H���yZ��HcsH��H�t6�hZ����sH�{A��H��H���KZ��H�[(H��u�H��$dH3%(H����H��[]A\A]A^��L���T��I��H���n�����R��M�mI��M���c���I�}H���V���f.��[W��I��L��H���Y��I�}H��u��*���fDL��H��1�����H�������nP��ff.�AUATI��UA��H��SH��HH�t$dH�%(H��$81�H����H�\$L�l$0H���rH�zj�L��A� I���N��ZY��ueM��u H�����tH�E�ƒ�����DL�l$A��u%I�����tI�E�ƒ�����f.�A���6fD�M��uH�����t�E�����FfDH�|$@��t=@����H��t��thH��$8dH3%(H����H��H[]A\A]�H�����t������u�H�|$H���^�	K��H�5_[H��H��1��5O���H�����t�H��ƒ����~���H�€�H�{H��j������a���H���V���T���@��Z�����8���H�|$H��tp��Z��H�5�^H�߉�1��N������H��1��
�R��H�|$H���Z��9������H�D$���fDH���@U��H�������[Z��H�=^��1��T��H�����H�u�� tH�uL���kQ�����HD����I�u�� tI�uH���CQ���������j���fD�I��H�=ZH��1��JT��H���/����}M��ff.�f���S�H��dH�%(H��$1�H��H���A���H����S��H��$dH3%(u	H��[��M�����AVAUA��ATUH��SH��H��PdH�%(H��$H1�H�T$H�t$@H�D$�D$�a���H�\$I��H�������H�|$�H��H�D$H��� ��H�XH�pH����L�t$ H�����D L��E��t�E��u�|$ ��@�D$	EH��H�L$H��L���O����tXM��tL����K��A�|�
����H�=�K�!W���H��H�pL�t$ ��H���|���� H��L���O���g���f�H��$HdH3%(H�D$��H��P[]A\A]A^�@H��L�t$ � 1�H�H�8KL���oG���L$����f�H�t$�
L��H�D$��P��H�D$H��t�8u�E��f.�L������H��� H�5�`H�81���G���1������J��H�� H��H�56\H�81��G��f�AVf�I��AUI��ATI��UL��SL��H��@dH�%(H�D$81�)$)D$)D$ H��tH���eH���D$I��tL���sI���D$H��uAH��uR�L$pH��L��L���1K��H��thH�L$8dH3%(uSH��@[]A\A]A^��H���t(�kV���D$H��t�H�߃�t�TV���$���CI���֐�;I������I��H��� H�5FIH�81��F��ff.����AWAVAUATUH��SH��H�5e� H���dH�%(H��$�1��K��H����H�
=UH�8IH�߾��F��L�d$81�H��H���G��L��H�D$8�K��H�|$8H�7�� �?H�wH�H�T$(�O������S�H���wG��L��H�D$8�J��H�|$8H�7�� �H��H����H�T$,�aO������$�H���+G��H�D$8H�����D$0�H���G��H�D$8H����D$4�H����F��I��H�D$8H��t
L���J��L�l$8�H���F��I��H�D$8H��t
L���I��L�t$8�H���F���|$(H�D$8�H�
�SH��G�H���hE��LcD$4�Lcd$0I��H��Hc\$,O�DO�d$L�D$H�\�5F��L��1�H�D$�&F��H��L��H��jL�D$ A�	H��H�t$����ZYH��H�D�xM��M����H��E1��O��� ��pS��D�T$4D�L$0H�D�D$,H��H�@H�E D�cH��D�CD�KD�SL�kL�3H��$�dH3%(�~H���[]A\A]A^A_��H��H�������H�wH����L���H��H�|$8H�7�� �H��H����H�T$0��H�������H�� H�5,XH�81��NC��fDL���0H���D$(���u2H�|$8H�7�� ��H��H����H�T$4�[D����������H��� H�5�WH�81���B��f.�H�\$@1��H�D$BH�{H�Cf��H�L��f�t$@�G��H�t$8H��� ��H�VH��l�4H�vH����H��$�foD$@�� foL$PfoT$`A�nA�nH��$��$�fo\$p)�$�fo�$�fo�$���$��$�)�$�)�$�)�$�)�$�)�$f��$�Q��D�T$4D�L$0L��$�H�E D�D$,H��H�x H�H�@�L��L��D�T$D�D$D�L$�H��D�T$D�D$D�L$�l����H�wH����H�wH��>���L��$�H�p�L��L��L�\$�/H��H���L��� ��XP��D�T$4D�L$0A��H��H�D�D$,H�@L�\$H�E wlE������H�x �)���H��H����H���>���H�{�l�G���+���H�R� H�5kYH�81��@��H�:� H�5"UH�81��y@�����H�� H�5UH�81��\@���C��H�(� �lH�5�WH�81��:@��f.���H��8f�dH�%(H�D$(1�)D$�D$��x#H�t$H�T$�L����u�|$v	�D$�f�1�H�L$(dH3%(uH��8���B��@��H��Hf�dH�%(H�D$81�H��D$�@,�T$H�‰L$�@D�$�C��H�T$8dH3%(uH��H��B��ff.���AWA��AVAUATA��UH��SH��8�?dH�%(H��$(1��?��H��tbH��H��$ L�l$ ��I��H���EI��I��E��tzH���L��I��jA�D��H���@��ZY������H�=�A�M��H��$ D�E�H�
�S�H��L�l$ 1��cN��H���[H��I��E��u�H��E1�E1��jL��D��H���?��AXAY���[���L��� H��H��D��H��jA�I�عL��I���[?��^_���P���L����G��I��H��LD��@L����G��I��H��1��
H���;E��H��L�4$H�L�d$H�DH�l$H�D$�tM��H��$(dH3%(uH��8[]A\A]A^A_��@��f.���H����H�H�H9�s+�x�u%H����x�uH��H9�u�H)�x�K���H��H)�y�1�H�=�@�?��f.���S�<���H�=_)H����?��H��[H���fF��fD��H��H��� u0H����t�uYHc�H9�u[��H��Ð�H���fDH�GH��t�H�W�:u&�����H9�v�H�� H�5~UH�81��|<��@�nH���H����;��fDAUATU��SH��H��H�t$H�|$dH�%(H��$�1��A��L�d$I�$H��% ��I�T$H��l��L�l$�1�H�D$I�}I�Ef�H��f�L$I�t$H����L���?��=�6�����C�C�k�CH�CH�H��$�dH3%(��H�Ę[]A\A]��L�l$�H��H�D$I�}I�Ef��I�t$�H��f�D$H���U���I�}�l�B���B���@H�K ��s/�uc���D���A�U�S ��4�����A�t�f�t��"����H�T$H�{(H��H�S ��I�t�H�t�H)�L��H)�����H����DA�U�S ��A�t��t���������=��H�Ц �lH�5�?H�81��Z:��f.���ATUH��S��H��dH�%(H�D$1��@��H�$��������L�e��t)H�m����H��tH���<�����f.��H�l� H��� 1�H�8�:��� �H����H����L��H�H��H�@H�E �1���H��H�L$dH3%(u|H��[]A\�D�F����~EH�$L�e��t"H�m��u/H���L���H����D���?���H���O���H����D���G���H�<$tH���D�������C���-<��ff.�f���AWAVAUI��H�5̠ ATA��H��UH��SH��dH�%(H��$�1��P>��H����� �L�|$(��G��L�|$`H�H��H�@H�E H�D$0H�D$hH�D$8H�D$pH�D$@H�D$x��>��H�D$X���DE����E1�I�E�H�D$(H�D$`H�p�#�H��tHc�I�|�H�:��H��H9�tH�PA9��H��t�H��H�H9�u�A9��YM����H�|$0E1�H��t��8��Lc�H�|$8E1�H��t��9��Lc�H�|$@�D$H����H�|$(�_>��I��H���1�H��L�|$H�9��L��H�D$H�F<��H�|$HH�7�� ��H�wH�H�T$$��@��������D$$���:��
�1�����L���8��H�|$XH�D$X��;��H�t$X�H���z���H��$�dH3%(H����H�Ę[]A\A]A^A_�fDH��H�����^����@���v�F���D$����L���X;��H�D$(H��� �WH�PH�pHc�H9��A�ԁ��H���B�D$D�cD�kD�s�CH�CH��*���@�C��E���vL�D$X�����L���s7���L��I���c7��L��H�D$P�Q7��L��A��H�D$X���8��H�H�|$PH�DH�D$t
H�|$P�l:��H�|$XO�t6�]:��H�D$PLcd$H�D$O�d$E��uLcl$$L�T$XH��M��L��jO�l-H�t$(A�	L��L��L�T$�~�I��XZL�T$H�t$L���:��H�D$H���5I�A�H�x H��tK�>��I���u?H�����t7H��ƒ���t*H�€�I�xI�t��uL��L�D$��?��L�D$L��L�D$�D��L��H�D$�C��L��I����C��L�D$I��I�D�hA���'E�����D$D�kL��D�s�CH�D$D�cL�CH��?���H���f�H�|$X�?���E�����6���D$�y���f�H��H�p��A��H�������H�{ ���:�����fD�KC���,���fDI�H�t$H�|$�~�H�D$���@H�pD��H�{ �L�D$�:��L�D$�.���H�|$Xt
H�|$X�
?����D���>��L���2��H�5PHH��H�� H�81��53���`6������H���2��H�̝ H�5�KH�81��3��H�ܞ H�5�GH�81���2����H��(H��dH�%(H�D$1�H�T$H�� H�<$H�=�H�t$H���7��H�T$dH3%(uH��(���5�����AWAVA��H�n� AUA��ATM��U��1�SH��H��� H�|$H�8D�D$�3��� �I���A����D�D$H�H�@I�G wXH�Å�u0H�D$P�kD�sH�L��D�kD�CL�cH��[]A\A]A^A_�H�t$��H�x �D�D$��8��D�D$��b��f���H��(H�5�� dH�%(H�D$1��<7��H����H�¸�z��f�z 
uzD�J(E��uqD�B,E��uh�J0����t��uY�J4Ƀ�vOH��1��H��H�D$
�f�G�B4f�L$D�B�G
L�J�D$�J�2��5>��^_H�t$dH34%(uH��(��4��������AWAVAUATUH��S��H��dH�%(H��$�1�H�D$H�D$PH�D$`H�D$ H�D$hH�D$(H�D$pH�D$0H�D$xH�D$8H��$�H�D$@H��$�H�D$HH��$���6��H�D$XA�ƅ�t6��~���I������������:��f��+=�������������<L�L$XH�EE1�A�����H�D$H�E�H�D$ H�D$`H�p �&f�H��tL��D9�tHc�H�|�H�9��H��H9�tH�H9�|�H��t�H��H�H9�u�H��$�H��tH�L$PH�L��9��TL�D$XM����H�|$H�1�H�5�� ��<��H�l$ H�\$H�D$XH��jL�L$PH��H��L�D$HH�L$@H�T$8�a�^H��_H�H��I����I���&4��I�]H��H����fDH�{ A�H��tA�8��I���u5H�����t-H��ƒ���t H�€�I�yI�t���G�H��D�C�K�S�sH�{AT�;��ZH��YH���:��H�[(H���z���L���9��H��H��$�dH34%(��H�Ĩ[]A\A]A^A_�fDH�D$XH������H�|$X�9������Hc�H�D���R>��H������F>��������8>��H�D$PH������H�|$PD�c��	-��L�l$PI��M����=��E����=��M��taL�|$PD��A�����H�EL�L$XH�D$���f�L��L�D$��8��L�D$���f�L��L�L$�c8��L�L$���H�ED��E1�A�����H�D$PL�L$XH�D$�&���Hc�H�|���~(H��u���=��H�D$P�����f0��H�D$P����L�L$XL�ȃ����������L�D$X��L���o<��H��H�EH��H��<��H�=�FH�C1���;������E1��|����/��1�H�=�FE1�A����:��H�EL�L$XH�D$�a���ff.��ATI��A�H��U�H��I��SH��j�j�H��Y^H�H��L������L�A�H��I�z H��t�5��I���t>L�H��A�RI�zE�BA�JA�rU��8��H��H��XZ�7��H��H��[]A\�@H�����t�H��ƒ���t�H�€�I�yI�t���u�L��L�L$�6��L�L�L$����SH���������H�5� H��H����0��H��t
H�@H��[��˻��ff.���H���
H�ֺ������H���#H�ֺ������SH�Ӆ�t���H��[�f.�H�ߺH�5�?��.��H��[��SH��H�5e� �0��H��t�pH��H�x [�k7������fD��S1�H��H�=�-�
-��H��[H��뱐��ATH�5� I��USH��dH�%(H�D$1��/��H����L��H����3��H�=?H��1���3��L��H��H���R���D�cE�����{�K�C A9��>��{�����������U���-�S��t$���g+��H�����SH�5�>H��1���,��H�CH��t H��H�$�(��H�5ADH��H��1��,��H�H��t H��H�$�[(��H�5�>H��H��1��,���H�5d=H���3-��H��H�L$dH3%(��H��[]A\��{��u�S���S����_�����t�E1�f��{0��H�����SH�5�=H��1��,���S���)���E��������
���DD���,��H����H���(��H�5TCH��H��1���+���C����C��tA����r����H�5_=H���N,�����f�H���8(��H�5�BH��H��1��d+���Q�����SH�5=H��1��D+���C����@�C��tA������H�5�<H����+���/���f�H���'��H�5uBH��H��1���*�������A���������s*����UH�5$� SH��H��H�/H���(����uH���,��H�H��[]�H�����H���ff.���ATI��USH�/H��H�H�5�� H���I(����uH���+��H�[]A\�DH��舷��H��H�I�,$�+��H�[]A\Ð��SH���3)��H�H��� H�u
H��[��H�@[�f���SH�5D� H����'��H�߅�u
[�(���[����f���ATE1�UH��S��H��dH�%(H�D$1��D$��rD�&H��L�D$���T,�����t;H��E1�D��A�j�L$��H����2��ZYH�T$dH3%(uH��[]A\�H�=;�4����(����ATU��SH��@����@��uS��������H��H���H���}@��tw�����t<��t��
uc�'����H��[��]A\�5%��D�4����H��[��]A\�%���-��L�`L���g-��A�|$��H��[]A\��$��@H�����uH��� H�51+H�81��$��������t���t���
u�@���`����4����H��[��]A\�$��D��H��� SH���[H��� H�%� H�=�9H�0�^4��H�ߎ H�5����H��H���1��H�;�����H�6�H�5�$�*.��H�;1�H����H�5�)�.��H�;1�H�>� H�5�9�-��H�;�����H���H�5�&�-��H�;�H�p���H�5g9��-��H�;�H�����H�5$&��-��H�;�H�����H�5�)�-��H�;�����H��H�59�-��H�;1�H�׼��H�59�[-��H�;1�H�����H�5�8�C-��H�;1�H�G���H�5�7�+-��H�;1�H�����H�5�7�-��H�;1�H�����H�5�8�,��H�;1�H�_���H�5�8��,��H�;1�H����H�5�8��,��H�;1�H�����H�5�8�,��H�;1�H�G���H�5r8�,��H�;1�H����H�5^8�,��H�;1�H���H�5P8�k,��H�;1�H�?���H�5C8�S,��H�;1�H�����H�538�;,��H�;1�H����H�5)8�#,��H�;1�H�����H�5 8�,��H�;1�H����H�58��+��H�;1�H�����H�58��+��H�;1�H�o���H�5	8��+��H�;1�H����H�58�+��H�;1�H�����H�5�7�+��H�;1�H�w���H�5�7�{+��H�;1�H����H�5�7�c+��H�;1�H�����H�5�7�K+��H�;1�H�_���H�5�7�3+��H�;1�H����H�5�7�+��H�;1�H�����H�5�7�+��H�;1�H�W���H�5�7��*��H�;1�H�����H�5�7��*��H�;1�H���H�5�7�*��H�;1�H�����H�5�7�*��H�;1�H�g���H�5�7�*��H�;1�H�O���H�5�,�s*��H�;�����H�D��H�5X#�X*��H�;1�H�����H�5e7�@*��H�;[�H����H�5V7�$*��@�H�=�5�/��H�8� �������@���PHE��f���AWAVAUATUSH��dH�%(H�D$1�H����(������$H�$E1�H��u�@E��H�E�|$H��u�H�ɋ 1�Mc�1�H��� H�8� ��L��H��I��H���x&��H�$H�pH��D�xH��fD�(��H��H�P�H�D9�u�I�v L����%��L��H��I���K+����tFL�k1�L�59� f�H�1� L��L��H��I��H�8���L���H���+��A9��H�L$dH3%(L��uH��[]A\A]A^A_�fD��#��I�����!��H�=0!�m-��ff.�f���S���H�H��H�\��+t[�DH�{�(��H��[��"��ff.�H��H�5e� �#��H��tH���H��� H�5�8H�81�����ff.���S���H�X�CtH�{(H��t�>)��H�{([���b)��f��[�f���S�v���H�X�CtH�{(H��t�(��H�{([���")��f��[�f���S�6���H�XH�{ H��t��(��H�{ [����(����[�f���S���H�XH�{H��t�(��H�{[���(����[�f���H�����H�@�xH���)����S���H�XH�{��#����t	��[H�D�H��� H�SH�5w7H�81������H���S���H�@H�xH���B&��f���ATI��US�0����H�=N7H�h���H��A���fA���tD������I���A���I�|$�$��H��H���"���H�5�!H��� ��H�uH���!���E���1H�}t+�H�5e!H������H�}�'��H�}H�ډ��(��H�} t+�	H�547H�����H�} ��&��H�} H�ډ��m(���E�t5H�}(td�H�57H���{��H�}(�&��H�}(H�ډ��4(���E�t2H�}(t+�	H�5�6H���B��H�}(�y&��H�}(H�ډ��'��H�ߺH�5E/���H��[]A\��I����������I���M�������H��� H�8���f�A��H�= ��FA���A����A����A���~A��@�LA�Ā�A����A�� ��A���~A���IA���A����A�� ��A��@uyA���uHM������L��H�5u5H��1��;�����fDH��� H�8����H��� H�8����H�5/5H��1�I�������H�y4��H�5�4H��1�I��������H�Q4�c���@H�5�4H��1�I�������H�)4�2���@H�5�4H��1�I������H�4���@H�5e4H��1�I�����X��H��3����@H�544H��1�I�����0��H��3���@H�54H��1�I�������H��3�^���@H�5�3H��1�I�������H�d3�,����H�5�3H��1�I�������H�93���@H�5j3H��1�A�����H�3�����H�583H��1�I���k��H��2����H�53H��1�I����C��H��2�a����H�5�2H��1�I�����H��2�/����H�5�2H��1�I������H�t2����H�5k2H��1�I������H�L2�����H�5>2H��1�I�����H�$2����H�� H�8�����H��� H�8����H�i� H�8������UH�5�2SH��H�-� H��� H�}H���%��H�� 1�H�E���H��H�5]H�� ��H�;1�H����H�5�� ��H�;1�H�����H�5�&�s ��H�;1�H�w���H�5/2�[ ��H�;1�H����H�5&�C ��H�;1�H����H�52�+ ��H�;1�H�o���H�5�1� ��H�;1�H����H�5�1���H�}H��1�[H�	���H�5�]�����H��H���%s: %sfstat(2)not a socket file descriptorrecv for buffered IOrecvfrom(2)recvfrom for buffered IOrecvfrom(2) would blockread would blockwrite would blockfnctl(2)accept(2) would blockaccept(2)SocketErrorwait_readablewait_writablersock_s_recvfrom called with bad valuersock_s_recvfrom_nonblock called with bad valuersock_detect_cloexec: fcntl(%d, F_GETFD) failed: %srsock_write_nonblockrsock_read_nonblockAF_IPXPF_IPXAF_SNAPF_SNAAF_MAXPF_MAXPF_KEYAF_INETPF_INETAF_UNIXPF_UNIXAF_AX25PF_AX25AF_ISDNPF_ISDNAF_UNSPECPF_UNSPECAF_PACKETPF_PACKETAF_APPLETALKPF_APPLETALKSOCK_DGRAMSOCK_STREAMSOCK_PACKETSOCK_SEQPACKETSOL_SOCKETIPPROTO_IPIPPROTO_TPIPPROTO_AHIPPROTO_TCPIPPROTO_EGPIPPROTO_PUPIPPROTO_UDPIPPROTO_IDPIPPROTO_ESPIPPROTO_RAWIPPROTO_ICMPIPPROTO_IGMPIPPROTO_IPV6IPPROTO_NONEIPPROTO_ICMPV6IPPROTO_DSTOPTSIPPROTO_HOPOPTSIPPROTO_ROUTINGIPPROTO_FRAGMENTSO_TYPESO_MARKSO_SNDBUFSO_RCVBUFSO_LINGERSO_DOMAINSO_PEERSECSO_PASSSECSO_NO_CHECKSO_PRIORITYSO_PASSCREDSO_PEERCREDSO_RCVLOWATSO_SNDLOWATSO_RCVTIMEOSO_SNDTIMEOSO_PEERNAMESO_PROTOCOLSO_RXQ_OVFLSO_PEEK_OFFSO_REUSEADDRSO_REUSEPORTSO_DONTROUTESO_BROADCASTSO_KEEPALIVESO_OOBINLINESO_TIMESTAMPSO_BUSY_POLLSO_ACCEPTCONNSO_GET_FILTERSO_SNDBUFFORCESO_RCVBUFFORCESO_TIMESTAMPNSSO_WIFI_STATUSSO_LOCK_FILTERSO_BINDTODEVICESO_TIMESTAMPINGSO_ATTACH_FILTERSO_DETACH_FILTERSO_BPF_EXTENSIONSSO_MAX_PACING_RATESO_SELECT_ERR_QUEUESO_SECURITY_AUTHENTICATIONSECURITY_ENCRYPTION_NETWORKSECURITY_ENCRYPTION_TRANSPORTIP_TOSIP_TTLIP_MTUIP_MINTTLIP_OPTIONSIP_HDRINCLIP_RETOPTSIP_RECVTTLIP_PKTINFOIP_RECVERRIP_RECVTOSIP_PASSSECIP_RECVOPTSIP_FREEBINDIP_MSFILTERIP_PKTOPTIONSIP_RECVRETOPTSIP_XFRM_POLICYIP_TRANSPARENTIP_PMTUDISC_DOIP_MULTICAST_IFIP_ROUTER_ALERTIP_MTU_DISCOVERIP_IPSEC_POLICYIP_BLOCK_SOURCEIP_MULTICAST_TTLIP_PMTUDISC_DONTIP_PMTUDISC_WANTIP_MULTICAST_LOOPIP_ADD_MEMBERSHIPIP_UNBLOCK_SOURCEIP_DROP_MEMBERSHIPIP_MAX_MEMBERSHIPSIP_DEFAULT_MULTICAST_TTLIP_ADD_SOURCE_MEMBERSHIPIP_DEFAULT_MULTICAST_LOOPIP_DROP_SOURCE_MEMBERSHIPIPV6_RTHDRIPV6_V6ONLYIPV6_TCLASSIPV6_DSTOPTSIPV6_HOPOPTSIPV6_NEXTHOPIPV6_PATHMTUIPV6_PKTINFOIPV6_CHECKSUMIPV6_DONTFRAGIPV6_HOPLIMITIPV6_RECVRTHDRIPV6_JOIN_GROUPIPV6_RECVTCLASSIPV6_LEAVE_GROUPIPV6_RECVDSTOPTSIPV6_RECVHOPOPTSIPV6_RECVPKTINFOIPV6_RECVPATHMTUIPV6_MULTICAST_IFIPV6_UNICAST_HOPSIPV6_RECVHOPLIMITIPV6_RTHDRDSTOPTSIPV6_RTHDR_TYPE_0IPV6_MULTICAST_HOPSIPV6_MULTICAST_LOOPTCP_MAXSEGTCP_MD5SIGTCP_SYNCNTTCP_REPAIRTCP_NODELAYTCP_KEEPCNTTCP_LINGER2TCP_KEEPIDLETCP_QUICKACKTCP_FASTOPENTCP_KEEPINTVLTCP_QUEUE_SEQTCP_TIMESTAMPTCP_CONGESTIONTCP_THIN_DUPACKTCP_DEFER_ACCEPTTCP_WINDOW_CLAMPTCP_REPAIR_QUEUETCP_USER_TIMEOUTTCP_REPAIR_OPTIONSTCP_COOKIE_TRANSACTIONSTCP_THIN_LINEAR_TIMEOUTSSHUT_RDSHUT_WRSHUT_RDWRSCM_TIMESTAMPSCM_TIMESTAMPNSSCM_CREDENTIALSSCM_WIFI_STATUSSCM_TIMESTAMPINGunknown socket domainunknown socket typeunknown protocol levelunknown IP level option nameunknown TCP level option nameunknown UDP level option nameunknown UNIX control messageunknown IP control messageunknown IPv6 control messageunknown TCP control messageunknown UDP control messageunknown shutdown argumentConstantsSOCK_RAWSOCK_RDMAF_INET6PF_INET6AF_LOCALPF_LOCALAF_ROUTEPF_ROUTEMSG_OOBMSG_PEEKMSG_DONTROUTEMSG_EORMSG_TRUNCMSG_CTRUNCMSG_WAITALLMSG_DONTWAITMSG_PROXYMSG_FINMSG_SYNMSG_CONFIRMMSG_RSTMSG_ERRQUEUEMSG_NOSIGNALMSG_MOREMSG_FASTOPENSOL_IPSOL_TCPSOL_UDPIPPORT_RESERVEDIPPORT_USERRESERVEDINADDR_ANYINADDR_BROADCASTINADDR_LOOPBACKINADDR_UNSPEC_GROUPINADDR_ALLHOSTS_GROUPINADDR_MAX_LOCAL_GROUPINADDR_NONEMCAST_JOIN_GROUPMCAST_BLOCK_SOURCEMCAST_UNBLOCK_SOURCEMCAST_LEAVE_GROUPMCAST_JOIN_SOURCE_GROUPMCAST_LEAVE_SOURCE_GROUPMCAST_MSFILTERMCAST_EXCLUDEMCAST_INCLUDESO_DEBUGSO_ERRORSO_NOFCSTCP_CORKTCP_INFOUDP_CORKEAI_ADDRFAMILYEAI_AGAINEAI_BADFLAGSEAI_FAILEAI_FAMILYEAI_MEMORYEAI_NODATAEAI_NONAMEEAI_OVERFLOWEAI_SERVICEEAI_SOCKTYPEEAI_SYSTEMAI_PASSIVEAI_CANONNAMEAI_NUMERICHOSTAI_NUMERICSERVAI_ALLAI_ADDRCONFIGAI_V4MAPPEDNI_MAXHOSTNI_MAXSERVNI_NOFQDNNI_NUMERICHOSTNI_NAMEREQDNI_NUMERICSERVNI_DGRAMINET_ADDRSTRLENINET6_ADDRSTRLENIFNAMSIZIF_NAMESIZESOMAXCONNIFF_ALLMULTIIFF_AUTOMEDIAIFF_BROADCASTIFF_DEBUGIFF_DYNAMICIFF_LOOPBACKIFF_MASTERIFF_MULTICASTIFF_NOARPIFF_NOTRAILERSIFF_POINTOPOINTIFF_PORTSELIFF_PROMISCIFF_RUNNINGIFF_SLAVEIFF_UP�)��*��T*���*���(��+��4)��*)��*)���)��.��.��,.��D.��.��l.���.���.���.��.��.���-���/���/��l0��|/���0���/���0���2���2���/��1��t1��2���/���/��0���2���;��x;��8;���>���<���=���:��9��H8���7��h7��`<���:��(<��(7���6�� ?�� ?�� ?��h6�� ?�� ?���6���5�� ?��(6���5�� ?���;���I��I��I���I��J���J���J��K���K��lL���L��TM���N��dN���H��N��I��I���O��tO��I��TP��$I���W��X��(X���X���X���X��HY��PZ���[���Y���[��([���V���W���W���`��&`���`��a��da���b���a��Db��c���c���c���_��Dd��&`��e���d���d��&`��&`��,`��l`��pi���h���h���i���i���h��(j���h���h��i���i���l���l��lm���l���m���l���m��n��Ln���l��ln���n��do���l���l��m���o���x���w��x��x��x��x��px��x��x��x��x��x��x��x��x��x��x��Px��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��0x���x��Ex��`x��`x��`x��`x���x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x���x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x��`x���x��SO_SECURITY_ENCRYPTION_NETWORKSO_SECURITY_ENCRYPTION_TRANSPORTunknown socket level option nameunknown IPv6 level option namesendto(2)send(2)getpeername(2)getsockname(2)getsockopt(SO_PEERCRED)getsockopt(2)optnamedatasetsockopt(2)shutdown(2)BasicSocketinitializedo_not_reverse_lookupdo_not_reverse_lookup=for_fdclose_readclose_writeshutdownsetsockoptgetsockoptgetsocknamegetpeernamegetpeereidlocal_addressremote_addresssendrecv__recv_nonblock__read_nonblock__write_nonblock__sendmsg__sendmsg_nonblock__recvmsg__recvmsg_nonblock`how' should be either :SHUT_RD, :SHUT_WR, :SHUT_RDWRclosetoo short sockaddrnot an AF_UNIX sockaddrunknown socket family:%dsmalltcpno such service %s/%shost not foundgethostname(3)getifaddrssockaddr length too big%ldexpecting String or Arraygetaddrinfogetnameinfolisten(2)socket(2)socketpair(2)%s for %+li port % li%s for % li%s for %libind(2)connect(2)connect(2) would blockconnect__connect_nonblockbindlisten__accept_nonblocksysacceptrecvfrom__recvfrom_nonblocksocketpairgethostnamegethostbynamegethostbyaddrgetservbynamegetservbyportunpack_sockaddr_inunpack_sockaddr_unip_address_listtoo long sockaddr_un - %ld longer than %dnot an AF_INET/AF_INET6 sockaddrinteger %ld too %s to convert into `int16_t'no such service for port %d/%sarray size should be 3 or 4, %ld givensockaddr resolved to multiple nodenametoo long unix socket path (%zu bytes given but %zu bytes max), IPSocketinspectpeeraddrgetaddressnumericinvalid reverse_lookup flag: :%sTCPSocketTCPServersocket(2) - udpUDPSocketsendmsg(2)recvmsg(2)UNIXSocketsend_iorecv_ioneither IO nor file descriptorfile descriptor was not passed (msg_controllen=%d smaller than sizeof(struct cmsghdr)=%d)file descriptor was not passed (cmsg_level=%d, %d expected)file descriptor was not passed (cmsg_type=%d, %d expected)file descriptor was not passed (msg_controllen=%d smaller than CMSG_LEN(sizeof(int))=%d)file descriptor was not passed (msg_controllen=%d bigger than CMSG_SPACE(sizeof(int))=%d)file descriptor was not passed (cmsg_len=%d, %d expected)too long unix socket path (%ldbytes given but %dbytes max)UNIXServer%s%u%s%s %ld.%06ldsec invalid-address interface: ifindex:linger socket option expected#<%s: SOCKET optname:%d level:%d %s (%d) off on on(%d) %dsec pid=%u euid=%u egid=%u (ucred) %u state=ESTABLISHED state=SYN_SENT state=SYN_RECV state=FIN_WAIT1 state=FIN_WAIT2 state=TIME_WAIT state=CLOSED state=CLOSE_WAIT state=LAST_ACK state=LISTEN state=CLOSING state=%u ca_state=Open ca_state=Disorder ca_state=CWR ca_state=Recovery ca_state=Loss ca_state=%u retransmits=%u probes=%u backoff=%u optionsTIMESTAMPS%c%sSACKWSCALEECNECN_SEENSYN_DATA%c%u rto=%s%u.%06us ato= snd_mss=%u rcv_mss=%u unacked=%u sacked=%u lost=%u retrans=%u fackets=%u last_data_sent=%s%u.%03us last_ack_sent= last_data_recv= last_ack_recv= pmtu=%u rcv_ssthresh=%u rtt= rttvar= snd_ssthresh=%u snd_cwnd=%u advmss=%u reordering=%u rcv_rtt= rcv_space=%u total_retrans=%u (%u bytes too long)to_intOptionbyteboollingeripv4_multicast_ttlipv4_multicast_loopto_ssize differ.  expected as sizeof(char)=%d but %ldsize differ.  expected as sizeof(int)=%d but %ldsize differ.  expected as sizeof(struct linger)=%d but %ldipv4_multicast_loop socket option expectedipv4_multicast_ttl socket option expected�?���A���A��tD���E���A���A���A���A���A���A���?���?���D���?���?���?��DE���A���A��,D��,D���?���?���?���?���?���?���?���?���A��rE��pA��pA���C���C��\A���E��\A���E���C���C��H?��H?��H?��H?��\A��jK��K���J���J��8K��K��QK���E���J���J���J��pJ���I��'J���I���E��J��IO expectedunix_rightsaddr is not AF_INET6 sockaddraddr is not AF_INET sockaddrto_arysendmsg(2) would block cmsg_type:%d cmsg_level:%d%Y-%m-%d %H:%M:%S %s.%06ld %s.%09ld pid=%u uid=%u gid=%u ifindex:%d spec_dst:invalid-address spec_dst:%srecvmsg for buffered IOrecvmsg(2) would blockmax data length too biginvalid fd in SCM_RIGHTSAncillaryDatacmsg_is?timestampip_pktinfoipv6_pktinfoipv6_pktinfo_addripv6_pktinfo_ifindexSCM_RIGHTS ancillary data expectedIPV6_PKTINFO ancillary data expectedaddr size different to AF_INET6 sockaddrIP_PKTINFO ancillary data expectedaddr size different to AF_INET sockaddrspec_dat size different to AF_INET sockaddrspec_dst is not AF_INET sockaddran element of controls should be 3-elements arraytimestamp ancillary data expectedmax control message length too biginvalid control message (cmsg_len == 0)sockaddr string too biguninitialized socket addressneed AF_UNIX addressneed IPv4 or IPv6 addressunknown protocol family: %dunknown socktype: %dunknown IP protocol: %dunknown protocol: %dunknown address family: %dtoo-short-sockaddr.?:?.%d[%s]:%d(sockaddr %d bytes too long)too-short-AF_UNIX-sockaddrempty-path-AF_UNIX-sockaddrUNIX :%02x[protocol=%difindex=%dhatype=%dOTHERHOSTOUTGOINGpkttype=%dhalen=%dhwaddr]unknown address family %d%s address format unknown01234567890123456789abcdefABCDEF.:0123456789.<any><broadcast>hostname too long (%zu)service name too long (%zu)unexpected address familyunexpected protocol familyunexpected socktypeunexpected protocolunknown:%dunknown address family: %sempty-sockaddr#<%s:  PF_???(%d) TCP UDP SOCK_???(%d) UNKNOWN_PROTOCOL(%d) (%s)getsockopt(SO_TYPE)timeoutAddrinfoinspect_sockaddripunixafamilypfamilycanonnameipv4?ipv6?unix?ip?ip_unpackip_addressip_portipv4_private?ipv4_loopback?ipv4_multicast?ipv6_unspecified?ipv6_loopback?ipv6_multicast?ipv6_linklocal?ipv6_sitelocal?ipv6_unique_local?ipv6_v4mapped?ipv6_v4compat?ipv6_mc_nodelocal?ipv6_mc_linklocal?ipv6_mc_sitelocal?ipv6_mc_orglocal?ipv6_mc_global?ipv6_to_ipv4unix_pathto_sockaddrmarshal_dumpmarshal_loadsocket/addrinfotoo short AF_UNIX address: %zu bytes given for minimum %zu bytes.too long AF_UNIX path (%zu bytes given but %zu bytes max)unexpected sockaddr size for IPv4unexpected sockaddr size for IPv6 (%d bytes for %d bytes sockaddr_in)too-short-AF_INET6-sockaddr %d bytes(%d bytes for %d bytes sockaddr_ll)newline at the end of hostnamealready initialized socket addressLinux abstract socket too longKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecatedp�������0����������������������������������������������uninitialized ifaddrinvalid interface name: %s,#<%sUP%sBROADCAST%sDEBUG%sLOOPBACK%sPOINTOPOINT%sRUNNING%sNOARP%sPROMISC%sNOTRAILERS%sALLMULTI%sMASTER%sSLAVE%sMULTICAST%sPORTSEL%sAUTOMEDIA%sDYNAMIC%s%#llx netmask= broadcast= dstaddr=Ifaddrflagsnetmaskbroadaddrdstaddrsocket/ifaddr;t
M`���
���
�;@����
`����
������(`���P����p�������� ����`�����l��������
��$
���`
P���
����
 ����P0��h����������(���@�
��T���h��|p)���8���pA����I���`J���L��PM��0�M��D�N��x�T���U���pU����U���0V����V���V��4PW��P�W��lX���pX����X���0Y����Y����Y���Y�� Z��4[��p\���0\����������0�����@���\���������������p�� ��D���pp���`������$��X`������� ���������@��8p��T`���0�������P������0��@���lP�����0��@�`���H��t`�������� �l ������P�L���0��p������, ���TP���t����������������������D@���XP���l`�������������`��4���H`��������������`��HP��h������������P���`	��4�	��XP
��|�
���������������P��  
��L �
��� ����  ��!���8!���l!P���!����!����!����!��"0��"���D"���p"`���"���"���$#���t#����#� ���#!���#�!���#"��$ "��0$�"��P$ $���$�$���$P%���$&���$P&��%�&��8% '��t%�'���% (���%)���%`)���%`*��&�+��<&-��p&p-���&�-���&�-���&P.���&p.��'@/��4'�/��d'@0���'0@���'�@��(�@��4(A��L(�A��x(`B���(`C���(�C��()�E��H)F��\)`G���)�G���)`H���)�H��*`J��`*�J���* K���*@K���*�K���*�K��+ L��4+@L��L+�L���+@M���+�M���+pN��,PO��\,�O��x,P���,�P���,�Q���,PS��D-�U��x-�]���-�^���-Pf��<.pf��X.�f��t.�f���.�f���.�g���.�p��8/�p��T/q��p/ps���/�s���/�s���/ t���/Pt���/pt��0�t��,0�t��H0�t��d0u���0�u���0 v���0`v���0�v���0�v��1 w��81`w��X1�w��p1�w���1 x���1`x���1�x���1�x���1y��2Py��2�y��42�y��P2Pz��l2�z���2�{���2�{���20|���2p|���2�|��3�|��03}��L3@}��h3p}���3�}���3����4����`4���4�����40��� 5 ���D5���5 ����5����6����,6 ���H6P���l6�����6@����6���� 7����l7����7P����7`���8����|80����8�����8p���49��H9���d9�����9�����9����9���\:`���x:0����:����:�����;�����;��;���<0���$<p���D<����`<����|<�����<����<`���=����4=����T=`����=p����=��> ��>���h>����>���>P���>����>���?��$?0��<?p��X?���p?���?zRx�$���`FJw�?:*3$"D��P\h�(pt�VE�I�G t
AAE���HR$���uA�G y
AFkA��LE�D�F 0�8��F�I�A �I��
 AABG0��?D �7LXL�9F�E�E �B(�D0�A8�I��
8A0A(B BBBJL�<�{F�H�B �E(�A0�D8�J�a
8A0A(B BBBAH�l��F�B�B �E(�D0�D8�D@�
8D0A(B BBBELD��F�B�D �D(�D0�
(A ABBDL
(A ABBA���<E�W
A8����B�E�D �C(�D0j
(C ABBDH�x�hF�E�D �C(�D0V
(C ABBDg(C ABB88��F�B�A �A(�F`P
(A ABBJt�>E�l
AH�����B�E�E �E(�D0�A8�G@O
8C0A(B BBBH����� HUL������F�E�H �D(�D0�K
(H BBBDT
(A EBBEHD ����F�B�E �E(�A0�C8�D`�
8A0A(B BBBF �����E�J��
AE������H��8���D�t�����0��V8|��nS�K�G H
AAA���D ��D����X,(��f	l�1��9��9����P:�����<��R�=��>0�D=���B�D�D �G0m
 AABF>��&D��QH C
A4`D��QH C
AP�D��QH C
Al�D��QH C
A�,E��QH C
A�pE��QH C
A��E��QH C
A��E��QH C
A�<F��QH C
A�F��QH C
A0�F��QH C
ALG��QH C
AhLG��QH C
A��G����G����G��78��G���K
FP
HI
GU
KU
KU
KU8��H���K
FP
HI
GU
KU
KU
KU8\I��LhI���kE��kl�������4� ���NF�D�D �g
ABHJAB�8���&E�U@�L���/F�E�B �A(�D0�FpM
0A(A BBBC,	8���@	4���(T	@����E�A�G�v
AAK(�	��E�A�G�v
AAK �	H����E�D0u
AA(�	ĸ���E�A�G�s
AAF(�	H����E�A�G�s
AAF@(
̹���F�B�E �D(�A0�G��
0A(A BBBA@l
x���LF�E�B �A(�A0�GP�
0A(A BBBE0�
����IF�D�D �F0x
 AABH0�
����VE�D�D l
FAHDDA0̾��VE�D�D l
FAHDDA(L����YE�G�D v
DAEx,����L�~���������ML�Q
S���,E�X8����H�E�E �D(�A0�t
(C BBBD����H N
J8|��Rw L����E�D g
AG$pd��@E�I�F fDA0�|���F�D�C �D@�
 AABD(�����E�D�F@�
AAD8�L���F�B�A �D(�FPX
(A ABBG4
���5E�h,P
����F�H�A �{
ABA�
4���
0��(�
<���E�A�G�z
AAA(�
����E�A�G��
AAA0���F�D�A �G��
 AABG 4���vIlM IE`(X���E�A�D0�
AAAp����yF�B�B �B(�A0�A8�G� L�1��1G�1R�1A�1y�1L�1V�1A�1}
8A0A(B BBBB(�����E�A�G��
AAE($���eE�G�D r
FAG@P���oF�B�B �D(�D0�F@�
0A(A BBBE@����HF�B�B �D(�D0�FP�
0A(A BBBIL�����F�B�B �B(�A0�D8�I�t
8A0A(B BBBH(<��E�@D��&F�D�D �`T��>E�x|��"E�D�G ����5E�D�I $����7E�M�O(B0F(D ����&F�D�D ����"E�D�G  ���XE�F <(��&F�D�D � \8���E�G0u
AF �����E�G0�
AK(����/E�D�G@�
AAH����[����	(����E�A�D �AA$���GE�AH@���F�J�B �B(�A0�A8�D`�
8A0A(B BBBG0����F�I�K �G�X
 AABC�$�P�0��F�B�A �A(�G� I� [
(A ABBE�� H� X� A� (���H`t
A$D0��V�EE�h�L
A0l���F�D�F �G�
 AABF0�t��F�D�F �G�
 AABF���L��@���LF�E�B �A(�D0�F��
0A(A BBBH8��5E�hT�	h�\L�x8�P�F�E�D �A(�F@n
(A ABBF �$�mE�G�Z
AA �p�uE�G�b
AA(��}E�D�G�e
AAA4 ��L��T��l��(����E�D�G@�
AAA(�(��E�D�G@�
AAAH����F�B�B �A(�A0�_
(A GBBIJ(C BBB<$�F�E�A �C(�J�B
(A ABBG(d��UE�A�G u
AAD0��iE�A�G D
FAHDCA0�P�F�D�D �F0f
 AABB�,�L����"KT8,��LF�E�D �A(�F`�
(A ABBGh��|����(��E�A�G�p
AAA(���E�A�G�p
AAA(���E�A�G�M
AAD4(��F�A�D �M�6
 AABFL`4����F�B�B �B(�A0�C8�J�
8A0A(B BBBAL������F�B�B �B(�D0�D8�J�,
8A0A(B BBBD������L�� 4�mE�G�Z
AA X<���uE�G�b
AA(|����}E�D�G�e
AAA�������L��8�x���PF�E�G �D(�D@�
(D ABBB �����E�G H
AK(<�����E�D�D0V
AAKhl���H b
F���DL�L
HU�0��!A�M
JD8�@���B�E�D �C(�FPT
(A ABBB����H Z
F(��U]\4p���H j
FP4��U]a(h|���A�A�J��
AAB0�P��YB�A�A �G��
 AABF0�|��FB�A�A �GPR
 AABG����\D H
D ���]H�]
KF
J<��HI T ��]H�]
KF
Jx\��HI,�d���F�A�A �b
AGN,���yF�A�A �B
ABK,�T��yF�A�A �B
ABKL ����F�B�B �B(�A0�A8�J�r
8A0A(B BBBD4pD��nF�E�A �H(�F@J(D ABB�|��(KP����(KP(�����E�K�J0x
AAD8@���F�H�D �D(�D@t
(A ABBA8@����F�H�D �D(�D@�
(A ABBH4|h��]F�H�D �D(�D0n(K ABB����(L�	����8����PF�E�G �D(�D@�
(D ABBB4$���gB�E�A �H(�F@G(D ABB \����E�G H
AK�d��!A�M
JDH�t���F�E�B �E(�A0�A8�D`p
8A0A(B BBBA4����\B�F�A �A(�D0G(A ABB $   ��]H�]
KF
JH \ ��HI ` d ��]H�]
KF
J� � ��HI � � ��]H�]
KF
J� � ��HI4� � ���E�A�G i
DAE_
DAE8!D!��nF�E�A �D(�G0v
(A ABBEL!x!��sHe
KU
F8l!�!���F�H�D �D(�D@v
(A ABBJ<�!L"���B�B�B �D(�D0��
(A BBBG�!�"��HH`z
A," #��iE�D`dhGpYhA`T
AA,4"`#���E�DpfxG�qxAp\
AA d"�#��5E�Gp�
ADD�"�$��kF�B�A �A(�G`phypLhG`^
(A ABBG0�"&���F�A�D �F`o
 AABDL#`(���B�B�B �B(�A0�A8�G��
8A0A(B BBBE(T#�/���F�A�A ��ABD�#�0���F�B�B �A(�A0�J�3
0A(A BBBG�#8��HH I�#8��HB I$$8��0E�G�G ZAA($8��4<$(8���F�B�A �A(�D0|(A ABBLt$�8��1	B�B�H �B(�A0�A8�J��
8A0A(B BBBK�$�A��HH I�$�A��HB I�$�A��pHg%�C��
0%�C��HH_
IOP%D��LH ~
Al%8D��-HV L�%LD���%XD��E�P�%\D��AAK�%`D��AAK�%dD��.H\
E&xD���Hf
J(&<E��5Dk
AD&`E��@HX
HWd&�E��@HX
HW�&�E��@HX
HW�&�E��@HX
HW�&�E��@HX
HW�&F��AHx�&8F��9Hp'`F��*Ha,'xF��1HhD'�F��1Hh\'�F��(H_t'�F��@Hw�'G��:Hq�'0G��:A�s
A�'TG��\H N
A�'�G��\H N
A�'�G���H i
G(PH���HA
W0(�H��BHt
AL((I��<Hn
Ah(LI��<Hn
A�(pI��<Hn
A�(�I��'HY
A�(�I��,HY
F�(�I��,HY
F�(�I��,HY
F)�I��:Hl
A\,)J��F�I�B �B(�A0�A8�G�	��	F�	_�	A�	�
8A0A(B BBBH\�)�L���B�B�B �B(�A0�D8�I�|
8A0A(B BBBD/�J�R�A�H�)(T��BB�B�B �B(�A0�A8�D�h
8A0A(B BBBHL8*,X���F�B�K �F(�G�d�D�[�A�D
(A ABBB �*�Y���E�N c
AA �*Z���E�N0�
AAH�*�Z���F�E�E �E(�D0�A8�I�Q
8A0A(B BBBBH+H[��4F�E�E �E(�D0�D8�I�R
8A0A(B BBBF4h+<\��dF�D�A �s
DBLIDB�+t\��HN�+|\��nHP`
A �+�\��*DH FAH
A�+�\��iD0_
AP,0]��~B�A�A �D0}
 AABGh
 DABAd
 CABF@h,\^��rF�B�B �A(�A0�G��
0A(A BBBIH�,�_���B�B�D �H(�G�o�I�	W�A��
(A ABBA �,<b��XE�L�@
AAD-xb��7F�B�E �A(�D0�J�	G
0A(A BBBE@d-pd��B�I�E �D(�D0�Gpy
0A(A BBBH\�-<e��VF�B�B �B(�A0�D8�Q���H�Y�A��
8A0A(B BBBI.<k��lH@^
A$.�k��bHPT
A|@.�k���F�E�B �B(�D0�D8�G�I�M�R�A�Z�M�P�B�T�H�Z�A�
8A0A(B BBBA�.4m��V�.�m��*E�]$�.�m���Hf
BI
GA
A8/�m��B�B�A �C(�J��
(A ABBH0T/�o��SF�A�D �F0�
 AABF\�/�p���F�B�B �L(�G0�D8�G�
8A0A(B BBBGb�H�d�A��/�v��YH0K
AH0�v���F�B�L �E(�D0�E8�DPt
8A0A(B BBBD$P0dw���H0w8r@K8A0W
Alx0x���F�B�B �B(�A0�D8�I���B�`�D���S�F�D�~
8A0A(B BBBG$zRx��������,����jD$1 |���B�M�L �D8B@I8A0v8U@L8A0I
 DABEl1�|��EE�z
A�1�|���1�|���1}��9E�P
KX�1$}��*A�_
E�18}��E�U02<}���F�K�A �D0B
 AABD(<2���EE�H�G ^
AAD4h2���_F�D�A �l
ABF[AB�2D���.E�[
HE�2T���.E�W
LA<�2d����F�D�D �F0A8N@O8A0T
 AABAL 3��F�A�C �W
CBJK
CBH\
ABIQCB p3�����L�H
\�3�H�3����cF�B�B �B(�A0�A8�DP%
8A0A(B BBBG�3 ���2E�U
FM4@���2DU
A04d���7E�b
IFP4����7E�b
IFp4����7E�\
OF�4�7E�\
OF�4��HP�4��@E�Y
F�4���HQ,�4���F�D�A ��
ABH$,5h���E�H�D �COGNU���p�@�"������������o�U�S����^�`
�]0�"8�"���o`h&p
t�"��F@�	���o�?���o�o�<���o	�"�`aa a0a@aPa`apa�a�a�a�a�a�a�a�abb b0b@bPb`bpb�b�b�b�b�b�b�b�bcc c0c@cPc`cpc�c�c�c�c�c�c�c�cdd d0d@dPd`dpd�d�d�d�d�d�d�d�dee e0e@ePe`epe�e�e�e�e�e�e�e�eff f0f@fPf`fpf�f�f�f�f�f�f�f�fgg g0g@gPg`gpg�g�g�g�g�g�g�g�ghh h0h@hPh`hph�h�h�h�h�h�h�h�hii i0i@iPi`ipi�i�i�i�i�i�i�i�ijj j0j@jPj`jpj�j�j�j�j�j�j�j�jkk k0k@kPk`kpk�k�k�k�k�k�k�k�kll l0l@lPl`lpl�l�l�l�l�l�l�l�lmm m0m@mPm`mpm�m�m�m�m�m�m�m�mnn n0n@nPn`npn�n�n�n�n�n�n�n�noo o0o@oPo`opo�o�o�o�o�o�o�o�opp p0p@pPp`ppp�p�p�p�p�p�p�p�pqq q0q@qPq`qpq�q�q�q�q�q�q�q�qrr r0r������������GA$3a1�`�]GA$3p1094���]GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�}SGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY����GA+GLIBCXX_ASSERTIONS
GA*FORTIFY��]GA+GLIBCXX_ASSERTIONSsocket.so-2.7.8-141.el8.x86_64.debug�w�5�7zXZ�ִF!t/��>W
U]?�E�h=��ڊ�2N��F�� ���C4����~�u"�D֓��o���i�v����f��=�:}��i����R&�n�ϐTdk�#i�W��Q��W�n#�u-��V#���_��UǷ��D�'AQ)���K?Gw�BU;�D
�x��ECI�!���f'�9��nB�@��p,��iwU8�"�{(�z����}u4���rbAp��^Y�Ap7F�s�=l��)��]Z��t�x�(���{�Ɛ�N���7��e�<0cGКv%�����#�o�֜�j<w���1C8��	*��M�V��*�l�z���K������E�T�s�0��C��$�b8�'O#����qt������c��7^�}V_h�N�8�Ù�S?�����V��V�귤�#��V�K8B�����\Q�ƻ������e�%^|)��L�!<�H�_��)y�m�]X��g�`Y_�9�BK@!z�9X:ˑ�]G�05�j��CG�A��*a\�ڜ�	���c�z���g�*��`[�K��V�s�]F$���Fke�����nAf�R}�:T�+
���2��J*��E���>ض�H1o;*}�N�AV��"��[YV�PM������w��ړ�"�P�t��;;�z^��w<h��1&�:cK���p$f�ωq/�L�3���b�����VK�g�;�]~�S�_c�SI߫e�kD�b'�9J�\���h��-1�x��ĂS��w�F2W����Ei.w(���"]szͺ�!������/6Եu�l�����:��Aգ��x��o��N����){Iw��5�L��M�I���	�}�hCA8j��m������ҝ��9�
�2�F��lL ��P���0X�q�($Y=P��N>�G��W�(I��d=�\��9���D�l� q�	`�OᦘӦ}�=a���T
�cp�>-u}w��2O���(*x$s��i�0z��!����x�ݼK�~H��Hq�J+7��A=�����@���owҡӺ�G�WH>:�6��i.������<���W�iU)?����V�uz91��������ђ׽�A��>��4#5�B;S�U0%u��K�܄��B��-	B�ҢD��;�
���t�F����x����c��ٯ@�Oo^+�T�@"����h��
D�K�Z+R��)GY	2�f�Y�?P�˔��̦ȴl�_�܍��$
���i�j�Lή`i\��Ȥ��$>������"SK+�p���f�Ȣ��<��;����ѷA�^����V�(�#@��t��yTњ���������&C�0�_�8U- �Flݩ!��:�JUFC_���+��Ey~F�p�x���UU"���@P���u��F�ݣ��l�(]T�ߏv����1�fF��X�F����*5G�pM!q���к�@��n1����yׁ!��ٱ@\A�A�����5ʬ������QIK�jzai#/:RN�E���"{�Y�0���K�����Ʀ]�\�nY��U����� �ePe~>$Z�O#)
C��Cp��ڴj��u}#�x��k�ty!}�Ҷ�E�*D#�
������`��b Qt`�ir鋶�O��P��@��]d�!9��LP�yJ6.���[�1��gSf;'
2*[�E+8�`S��ދGH���j�I��#�A���mx�8��w`��-/�!>C���=�e�1�&�O�t?��0K��Ս�t�2T�+4���ĕ��Hy�8�Z5O�H�D�@�x<�#���[��_�\/�|$�=����`+#�پ�ۊ+	�ʮ��W��]��?s��'U��MHg\:���as&D�[��6t'�K�f��Pۅ�/x�y�7�T�5.�
��J:�x"�z�5�S(��Hެ�xg���Fb_���.?���
��6��t_ZoB�G����<��o>�4��]��+@e��*������P!&��J�]n�/��^�|�9s]!D�On�S
j'-����
���ͳ�U��k��a�$���TD�#��k[�؞md��k,&b��M��v:��˨��.e�縬W9��|H������e�>sWK��II|�¥�5Ԩ������������+`�7}_H^;�x2Oي)�Qsҵ
\*�c����3�O/<B���a_}�_��W+?�1-�m��e���o�Ccj��5�%�rh���NAy�b��P�'�D"�!]�SߙkC��;.֧hW97�(�[�
���`����u�Iai0}��wC`�����y�T*`��5ھa ��Ǿ�8uo'�O�s��}}�_ۚk�HS�3"��
c�贿�^�Ο�+���/ ;7�b��3�՘Z�ZM^�<�Ű�hz�vPw�V���k/^Rw�MdC
���>u-Obǟ�hd�vˢly=���>IC@}�`}��[�m���ѱ��MeW�zt��|'�|B���:y<��³5ܐ�6;iH����������������K�p!�8�l�j	9��$���l����B�����4Q��A^����jbR�����v��U�ͬS"s�[�����&}�r�9��DSc�aɎ^6�"�f����Y����14��Q����n!5������Z�zf��Ɇ��4��kW�0���:T�Uzt���Xɟ��֜�g��B�lqb��� ���vLse��[�.��`�p�tq�-j�4e��|���BՒ��7�A8�.�@�ڜn��=�	{RWm�hw)�eA\ƛ+�����!��]�&/���;�L�@��3����L������c���.��؊Y"'���0L�#w�Dp��0�Jz�V���a�sPJg\�L$+A����� U$הg�~�|��TarPo��^��A��-��D��%�<�I��M��}A��N���y��5}�˟�����
�,\���:��Eߩ
:l���~b`5.�`_y(�6nu��7�������g�z��-�҇e�R�{����X��;/�J���F�B��E2)8倜�!0���T3y��Ѵ�@�zpIxj��7EU�"��L���5�;�t�*�<���J�;��4��s.L��?��R[��ix�\�%�Y�.ϊc|@y�v�]g=wro�dvcֻ)5��sو�"���d,�`e�~��s5��N_x��x����P����|ϕ�:`<���?��ܒ��7�S��	�"3A45Y2R�P�#�Uw3��eA�b�J%��^q!�V�ws�M��k�a�}��h�̀xE�/�_T�Q�j��Ш�	�R/��$G�*�%|�;��j����|�����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``(pp�0h&h&t8���o�<�<�E���o�?�?�T@@�^B�F�F�h�`�`c�`�``n@r@rPw�����}�]�]
��]�]�1�����t
�����T5�P�P� �0�"0��8�"8��@�"@�� ��"���"����"�����"�����"��@ � �b��d8�,"d��
��1PKLH[|���@�@lib64/ruby/rbconfig.rbnu�[���# encoding: ascii-8bit
# frozen-string-literal: false
#
# The module storing Ruby interpreter configurations on building.
#
# This file was created by mkconfig.rb when ruby was built.  It contains
# build information for ruby which is used e.g. by mkmf to build
# compatible native extensions.  Any changes made to this file will be
# lost the next time ruby is built.

module RbConfig
  RUBY_VERSION.start_with?("2.7.") or
    raise "ruby lib version (2.7.8) doesn't match executable version (#{RUBY_VERSION})"

  # Ruby installed directory.
  TOPDIR = File.dirname(__FILE__).chomp!("/lib64/ruby")
  # DESTDIR on make install.
  DESTDIR = '' unless defined? DESTDIR
  # The hash configurations stored.
  CONFIG = {}
  CONFIG["DESTDIR"] = DESTDIR
  CONFIG["MAJOR"] = "2"
  CONFIG["MINOR"] = "7"
  CONFIG["TEENY"] = "8"
  CONFIG["PATCHLEVEL"] = "225"
  CONFIG["INSTALL"] = '/usr/bin/install -c'
  CONFIG["EXEEXT"] = ""
  CONFIG["prefix"] = (((TOPDIR && TOPDIR.empty?) ? nil : TOPDIR) || DESTDIR + "/opt/alt/ruby27")
  CONFIG["ruby_install_name"] = "$(RUBY_BASE_NAME)"
  CONFIG["RUBY_INSTALL_NAME"] = "$(RUBY_BASE_NAME)"
  CONFIG["RUBY_SO_NAME"] = "$(RUBY_BASE_NAME)"
  CONFIG["exec"] = "exec"
  CONFIG["ruby_pc"] = "ruby.pc"
  CONFIG["CC_WRAPPER"] = ""
  CONFIG["PACKAGE"] = "ruby"
  CONFIG["BUILTIN_TRANSSRCS"] = " enc/trans/newline.c"
  CONFIG["MANTYPE"] = "doc"
  CONFIG["vendorarchhdrdir"] = "$(sitearchincludedir)/$(RUBY_VERSION_NAME)/vendor_ruby"
  CONFIG["sitearchhdrdir"] = "$(sitearchincludedir)/$(RUBY_VERSION_NAME)/site_ruby"
  CONFIG["rubyarchhdrdir"] = "$(DESTDIR)/opt/alt/ruby27/include"
  CONFIG["vendorhdrdir"] = "$(rubyhdrdir)/vendor_ruby"
  CONFIG["sitehdrdir"] = "$(rubyhdrdir)/site_ruby"
  CONFIG["rubyhdrdir"] = "$(DESTDIR)/opt/alt/ruby27/include"
  CONFIG["RUBY_SEARCH_PATH"] = ""
  CONFIG["UNIVERSAL_INTS"] = ""
  CONFIG["UNIVERSAL_ARCHNAMES"] = ""
  CONFIG["configure_args"] = " '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/opt/alt/ruby27' '--exec-prefix=/opt/alt/ruby27' '--bindir=/opt/alt/ruby27/bin' '--sbindir=/opt/alt/ruby27/sbin' '--sysconfdir=/etc' '--datadir=/opt/alt/ruby27/share' '--includedir=/opt/alt/ruby27/include' '--libdir=/opt/alt/ruby27/lib64' '--libexecdir=/opt/alt/ruby27/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/opt/alt/ruby27/share/man' '--infodir=/opt/alt/ruby27/share/info' '--with-rubylibprefix=/opt/alt/ruby27/share/ruby' '--with-archlibdir=/opt/alt/ruby27/lib64' '--with-rubyarchprefix=/opt/alt/ruby27/lib64/ruby' '--with-sitedir=/opt/alt/ruby27/share/ruby/site_ruby' '--with-sitearchdir=/opt/alt/ruby27/lib64/ruby/site_ruby' '--with-vendordir=/opt/alt/ruby27/share/ruby/vendor_ruby' '--with-vendorarchdir=/opt/alt/ruby27/lib64/ruby/vendor_ruby' '--with-rubyhdrdir=/opt/alt/ruby27/include' '--with-rubyarchhdrdir=/opt/alt/ruby27/include' '--with-rubygemsdir=/opt/alt/ruby27/share/rubygems' '--with-ruby-pc=ruby.pc' '--with-compress-debug-sections=no' '--enable-shared' '--with-ruby-version=' '--enable-multiarch' 'build_alias=x86_64-redhat-linux-gnu' 'host_alias=x86_64-redhat-linux-gnu' 'CFLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' 'LDFLAGS= -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64' 'CXXFLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'"
  CONFIG["CONFIGURE"] = "configure"
  CONFIG["rubygemsdir"] = "$(DESTDIR)/opt/alt/ruby27/share/rubygems"
  CONFIG["vendorarchdir"] = "$(DESTDIR)/opt/alt/ruby27/lib64/ruby/vendor_ruby"
  CONFIG["vendorlibdir"] = "$(vendordir)"
  CONFIG["vendordir"] = "$(DESTDIR)/opt/alt/ruby27/share/ruby/vendor_ruby"
  CONFIG["sitearchdir"] = "$(DESTDIR)/opt/alt/ruby27/lib64/ruby/site_ruby"
  CONFIG["sitelibdir"] = "$(sitedir)"
  CONFIG["sitedir"] = "$(DESTDIR)/opt/alt/ruby27/share/ruby/site_ruby"
  CONFIG["rubyarchdir"] = "$(rubyarchprefix)"
  CONFIG["rubylibdir"] = "$(rubylibprefix)"
  CONFIG["ruby_version_dir_name"] = ""
  CONFIG["ruby_version"] = "2.7.0"
  CONFIG["sitearch"] = "$(arch)"
  CONFIG["arch"] = "x86_64-linux"
  CONFIG["sitearchincludedir"] = "$(includedir)/$(sitearch)"
  CONFIG["archincludedir"] = "$(includedir)/$(arch)"
  CONFIG["sitearchlibdir"] = "$(libdir)/$(sitearch)"
  CONFIG["archlibdir"] = "$(DESTDIR)/opt/alt/ruby27/lib64"
  CONFIG["libdirname"] = "archlibdir"
  CONFIG["RUBY_EXEC_PREFIX"] = "/opt/alt/ruby27"
  CONFIG["RUBY_LIB_VERSION"] = "2.7.0"
  CONFIG["RUBY_LIB_VERSION_STYLE"] = "3\t/* full */"
  CONFIG["RI_BASE_NAME"] = "ri"
  CONFIG["ridir"] = "$(datarootdir)/$(RI_BASE_NAME)"
  CONFIG["rubysitearchprefix"] = "$(sitearchlibdir)/$(RUBY_BASE_NAME)"
  CONFIG["rubyarchprefix"] = "/opt/alt/ruby27/lib64/ruby"
  CONFIG["MAKEFILES"] = "Makefile GNUmakefile"
  CONFIG["PLATFORM_DIR"] = ""
  CONFIG["THREAD_MODEL"] = "pthread"
  CONFIG["SYMBOL_PREFIX"] = ""
  CONFIG["EXPORT_PREFIX"] = ""
  CONFIG["COMMON_HEADERS"] = ""
  CONFIG["COMMON_MACROS"] = ""
  CONFIG["COMMON_LIBS"] = ""
  CONFIG["MAINLIBS"] = "-lpthread -lrt -lrt -lgmp -ldl -lcrypt -lm "
  CONFIG["ENABLE_SHARED"] = "yes"
  CONFIG["DLDSHARED"] = "$(CC) -shared"
  CONFIG["DLDLIBS"] = " -lc"
  CONFIG["SOLIBS"] = "$(MAINLIBS)"
  CONFIG["LIBRUBYARG_SHARED"] = "-Wl,-rpath,$(archlibdir) -L$(archlibdir) -l$(RUBY_SO_NAME)"
  CONFIG["LIBRUBYARG_STATIC"] = "-Wl,-rpath,$(archlibdir) -L$(archlibdir) -l$(RUBY_SO_NAME)-static $(MAINLIBS)"
  CONFIG["LIBRUBYARG"] = "$(LIBRUBYARG_SHARED)"
  CONFIG["LIBRUBY"] = "$(LIBRUBY_SO)"
  CONFIG["LIBRUBY_ALIASES"] = "$(LIBRUBY_SONAME) lib$(RUBY_SO_NAME).$(SOEXT)"
  CONFIG["LIBRUBY_SONAME"] = "lib$(RUBY_SO_NAME).$(SOEXT).$(RUBY_API_VERSION)"
  CONFIG["LIBRUBY_SO"] = "lib$(RUBY_SO_NAME).$(SOEXT).$(RUBY_PROGRAM_VERSION)"
  CONFIG["LIBRUBY_A"] = "lib$(RUBY_SO_NAME)-static.a"
  CONFIG["RUBYW_INSTALL_NAME"] = ""
  CONFIG["rubyw_install_name"] = ""
  CONFIG["EXTDLDFLAGS"] = ""
  CONFIG["EXTLDFLAGS"] = ""
  CONFIG["strict_warnflags"] = "-std=gnu99"
  CONFIG["warnflags"] = "-Wall -Wextra -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable"
  CONFIG["debugflags"] = "-ggdb3"
  CONFIG["optflags"] = "-O3"
  CONFIG["NULLCMD"] = ":"
  CONFIG["ENABLE_DEBUG_ENV"] = ""
  CONFIG["DLNOBJ"] = "dln.o"
  CONFIG["INSTALL_STATIC_LIBRARY"] = "no"
  CONFIG["MJIT_SUPPORT"] = "yes"
  CONFIG["EXECUTABLE_EXTS"] = ""
  CONFIG["ARCHFILE"] = ""
  CONFIG["LIBRUBY_RELATIVE"] = "no"
  CONFIG["EXTOUT"] = ".ext"
  CONFIG["PREP"] = "miniruby$(EXEEXT)"
  CONFIG["CROSS_COMPILING"] = "no"
  CONFIG["TEST_RUNNABLE"] = "yes"
  CONFIG["rubylibprefix"] = "$(exec_prefix)/share/ruby"
  CONFIG["setup"] = "Setup"
  CONFIG["ENCSTATIC"] = ""
  CONFIG["EXTSTATIC"] = ""
  CONFIG["STRIP"] = "strip -S -x"
  CONFIG["SOEXT"] = "so"
  CONFIG["TRY_LINK"] = ""
  CONFIG["PRELOADENV"] = "LD_PRELOAD"
  CONFIG["LIBPATHENV"] = "LD_LIBRARY_PATH"
  CONFIG["RPATHFLAG"] = " -Wl,-rpath,%1$-s"
  CONFIG["LIBPATHFLAG"] = " -L%1$-s"
  CONFIG["LINK_SO"] = ""
  CONFIG["ADDITIONAL_DLDFLAGS"] = ""
  CONFIG["ASMEXT"] = "S"
  CONFIG["LIBEXT"] = "a"
  CONFIG["DLEXT2"] = ""
  CONFIG["DLEXT"] = "so"
  CONFIG["LDSHAREDXX"] = "$(CXX) -shared"
  CONFIG["LDSHARED"] = "$(CC) -shared"
  CONFIG["CCDLFLAGS"] = "-fPIC"
  CONFIG["STATIC"] = ""
  CONFIG["ARCH_FLAG"] = "-m64"
  CONFIG["DLDFLAGS"] = " -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64"
  CONFIG["ALLOCA"] = ""
  CONFIG["MATHN"] = "yes"
  CONFIG["dsymutil"] = ""
  CONFIG["codesign"] = ""
  CONFIG["POSTLINK"] = ":"
  CONFIG["WERRORFLAG"] = "-Werror"
  CONFIG["CHDIR"] = "cd -P"
  CONFIG["RMALL"] = "rm -fr"
  CONFIG["RMDIRS"] = "rmdir --ignore-fail-on-non-empty -p"
  CONFIG["RMDIR"] = "rmdir --ignore-fail-on-non-empty"
  CONFIG["CP"] = "cp"
  CONFIG["RM"] = "rm -f"
  CONFIG["PKG_CONFIG"] = ""
  CONFIG["DOXYGEN"] = ""
  CONFIG["DOT"] = ""
  CONFIG["MAKEDIRS"] = "/usr/bin/mkdir -p"
  CONFIG["MKDIR_P"] = "/usr/bin/mkdir -p"
  CONFIG["INSTALL_DATA"] = "$(INSTALL) -m 644"
  CONFIG["INSTALL_SCRIPT"] = "$(INSTALL)"
  CONFIG["INSTALL_PROGRAM"] = "$(INSTALL)"
  CONFIG["SET_MAKE"] = ""
  CONFIG["LN_S"] = "ln -s"
  CONFIG["NM"] = "nm"
  CONFIG["DLLWRAP"] = ""
  CONFIG["WINDRES"] = ""
  CONFIG["OBJCOPY"] = ":"
  CONFIG["OBJDUMP"] = "objdump"
  CONFIG["ASFLAGS"] = ""
  CONFIG["AS"] = "as"
  CONFIG["ARFLAGS"] = "rcD "
  CONFIG["AR"] = "ar"
  CONFIG["RANLIB"] = "ranlib"
  CONFIG["try_header"] = ""
  CONFIG["CC_VERSION_MESSAGE"] = "gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-18)\nCopyright (C) 2018 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
  CONFIG["CC_VERSION"] = "$(CC) --version"
  CONFIG["MJIT_CC"] = "/usr/bin/gcc"
  CONFIG["CSRCFLAG"] = ""
  CONFIG["COUTFLAG"] = "-o "
  CONFIG["OUTFLAG"] = "-o "
  CONFIG["CPPOUTFILE"] = "-o conftest.i"
  CONFIG["GNU_LD"] = "yes"
  CONFIG["LD"] = "ld"
  CONFIG["GCC"] = "yes"
  CONFIG["CXXFLAGS"] = "-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection"
  CONFIG["CXX"] = "g++"
  CONFIG["EGREP"] = "/usr/bin/grep -E"
  CONFIG["GREP"] = "/usr/bin/grep"
  CONFIG["CPP"] = "$(CC) -E"
  CONFIG["OBJEXT"] = "o"
  CONFIG["CPPFLAGS"] = " $(DEFS) $(cppflags)"
  CONFIG["LDFLAGS"] = "-L.  -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64 -fstack-protector-strong -rdynamic -Wl,-export-dynamic"
  CONFIG["CFLAGS"] = "-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fPIC"
  CONFIG["CC"] = "gcc"
  CONFIG["target_os"] = "linux"
  CONFIG["target_vendor"] = "redhat"
  CONFIG["target_cpu"] = "x86_64"
  CONFIG["target"] = "x86_64-redhat-linux-gnu"
  CONFIG["host_os"] = "linux"
  CONFIG["host_vendor"] = "redhat"
  CONFIG["host_cpu"] = "x86_64"
  CONFIG["host"] = "x86_64-redhat-linux-gnu"
  CONFIG["RUBY_VERSION_NAME"] = "$(RUBY_BASE_NAME)-$(ruby_version_dir_name)"
  CONFIG["RUBYW_BASE_NAME"] = "rubyw"
  CONFIG["RUBY_BASE_NAME"] = "ruby"
  CONFIG["build_os"] = "linux-gnu"
  CONFIG["build_vendor"] = "redhat"
  CONFIG["build_cpu"] = "x86_64"
  CONFIG["build"] = "x86_64-redhat-linux-gnu"
  CONFIG["RUBY_PROGRAM_VERSION"] = "$(MAJOR).$(MINOR).$(TEENY)"
  CONFIG["RUBY_API_VERSION"] = "$(MAJOR).$(MINOR)"
  CONFIG["HAVE_GIT"] = "yes"
  CONFIG["GIT"] = "git"
  CONFIG["cxxflags"] = ""
  CONFIG["cppflags"] = ""
  CONFIG["cflags"] = "$(optflags) $(debugflags) $(warnflags)"
  CONFIG["target_alias"] = ""
  CONFIG["host_alias"] = ""
  CONFIG["build_alias"] = "x86_64-redhat-linux-gnu"
  CONFIG["LIBS"] = "-lm "
  CONFIG["ECHO_T"] = ""
  CONFIG["ECHO_N"] = "-n"
  CONFIG["ECHO_C"] = ""
  CONFIG["DEFS"] = ""
  CONFIG["mandir"] = "$(DESTDIR)/opt/alt/ruby27/share/man"
  CONFIG["localedir"] = "$(datarootdir)/locale"
  CONFIG["libdir"] = "$(exec_prefix)/lib64"
  CONFIG["psdir"] = "$(docdir)"
  CONFIG["pdfdir"] = "$(docdir)"
  CONFIG["dvidir"] = "$(docdir)"
  CONFIG["htmldir"] = "$(docdir)"
  CONFIG["infodir"] = "$(DESTDIR)/opt/alt/ruby27/share/info"
  CONFIG["docdir"] = "$(datarootdir)/doc/$(PACKAGE)"
  CONFIG["oldincludedir"] = "/usr/include"
  CONFIG["includedir"] = "$(DESTDIR)/opt/alt/ruby27/include"
  CONFIG["localstatedir"] = "$(DESTDIR)/var"
  CONFIG["sharedstatedir"] = "$(DESTDIR)/var/lib"
  CONFIG["sysconfdir"] = "$(DESTDIR)/etc"
  CONFIG["datadir"] = "$(DESTDIR)/opt/alt/ruby27/share"
  CONFIG["datarootdir"] = "$(prefix)/share"
  CONFIG["libexecdir"] = "$(DESTDIR)/opt/alt/ruby27/libexec"
  CONFIG["sbindir"] = "$(DESTDIR)/opt/alt/ruby27/sbin"
  CONFIG["bindir"] = "$(exec_prefix)/bin"
  CONFIG["exec_prefix"] = "$(DESTDIR)/opt/alt/ruby27"
  CONFIG["PACKAGE_URL"] = ""
  CONFIG["PACKAGE_BUGREPORT"] = ""
  CONFIG["PACKAGE_STRING"] = ""
  CONFIG["PACKAGE_VERSION"] = ""
  CONFIG["PACKAGE_TARNAME"] = ""
  CONFIG["PACKAGE_NAME"] = ""
  CONFIG["PATH_SEPARATOR"] = ":"
  CONFIG["SHELL"] = "/bin/sh"
  CONFIG["UNICODE_VERSION"] = "12.1.0"
  CONFIG["UNICODE_EMOJI_VERSION"] = "12.1"
  CONFIG["archdir"] = "$(rubyarchdir)"
  CONFIG["topdir"] = File.dirname(__FILE__)
  # Almost same with CONFIG. MAKEFILE_CONFIG has other variable
  # reference like below.
  #
  #   MAKEFILE_CONFIG["bindir"] = "$(exec_prefix)/bin"
  #
  # The values of this constant is used for creating Makefile.
  #
  #   require 'rbconfig'
  #
  #   print <<-END_OF_MAKEFILE
  #   prefix = #{Config::MAKEFILE_CONFIG['prefix']}
  #   exec_prefix = #{Config::MAKEFILE_CONFIG['exec_prefix']}
  #   bindir = #{Config::MAKEFILE_CONFIG['bindir']}
  #   END_OF_MAKEFILE
  #
  #   => prefix = /usr/local
  #      exec_prefix = $(prefix)
  #      bindir = $(exec_prefix)/bin  MAKEFILE_CONFIG = {}
  #
  # RbConfig.expand is used for resolving references like above in rbconfig.
  #
  #   require 'rbconfig'
  #   p Config.expand(Config::MAKEFILE_CONFIG["bindir"])
  #   # => "/usr/local/bin"
  MAKEFILE_CONFIG = {}
  CONFIG.each{|k,v| MAKEFILE_CONFIG[k] = v.dup}

  # call-seq:
  #
  #   RbConfig.expand(val)         -> string
  #   RbConfig.expand(val, config) -> string
  #
  # expands variable with given +val+ value.
  #
  #   RbConfig.expand("$(bindir)") # => /home/foobar/all-ruby/ruby19x/bin
  def RbConfig::expand(val, config = CONFIG)
    newval = val.gsub(/\$\$|\$\(([^()]+)\)|\$\{([^{}]+)\}/) {
      var = $&
      if !(v = $1 || $2)
	'$'
      elsif key = config[v = v[/\A[^:]+(?=(?::(.*?)=(.*))?\z)/]]
	pat, sub = $1, $2
	config[v] = false
	config[v] = RbConfig::expand(key, config)
	key = key.gsub(/#{Regexp.quote(pat)}(?=\s|\z)/n) {sub} if pat
	key
      else
	var
      end
    }
    val.replace(newval) unless newval == val
    val
  end
  CONFIG.each_value do |val|
    RbConfig::expand(val)
  end

  # :nodoc:
  # call-seq:
  #
  #   RbConfig.fire_update!(key, val)               -> string
  #   RbConfig.fire_update!(key, val, mkconf, conf) -> string
  #
  # updates +key+ in +mkconf+ with +val+, and all values depending on
  # the +key+ in +mkconf+.
  #
  #   RbConfig::MAKEFILE_CONFIG.values_at("CC", "LDSHARED") # => ["gcc", "$(CC) -shared"]
  #   RbConfig::CONFIG.values_at("CC", "LDSHARED")          # => ["gcc", "gcc -shared"]
  #   RbConfig.fire_update!("CC", "gcc-8")                  # => ["CC", "LDSHARED"]
  #   RbConfig::MAKEFILE_CONFIG.values_at("CC", "LDSHARED") # => ["gcc-8", "$(CC) -shared"]
  #   RbConfig::CONFIG.values_at("CC", "LDSHARED")          # => ["gcc-8", "gcc-8 -shared"]
  #
  # returns updated keys list, or +nil+ if nothing changed.
  def RbConfig.fire_update!(key, val, mkconf = MAKEFILE_CONFIG, conf = CONFIG)
    return if mkconf[key] == val
    mkconf[key] = val
    keys = [key]
    deps = []
    begin
      re = Regexp.new("\\$\\((?:%1$s)\\)|\\$\\{(?:%1$s)\\}" % keys.join('|'))
      deps |= keys
      keys.clear
      mkconf.each {|k,v| keys << k if re =~ v}
    end until keys.empty?
    deps.each {|k| conf[k] = mkconf[k].dup}
    deps.each {|k| expand(conf[k])}
    deps
  end

  # call-seq:
  #
  #   RbConfig.ruby -> path
  #
  # returns the absolute pathname of the ruby command.
  def RbConfig.ruby
    File.join(
      RbConfig::CONFIG["bindir"],
      RbConfig::CONFIG["ruby_install_name"] + RbConfig::CONFIG["EXEEXT"]
    )
  end
end
CROSS_COMPILING = nil unless defined? CROSS_COMPILING
PKLH[�B
�QQlib64/ruby/digest.sonuȯ��ELF>�@�I@8	@�1�1 P=P= P= (� �=�= �= ��888$$�1�1�1  S�td�1�1�1  P�td,,,Q�tdR�tdP=P= P= ��GNU���/�_�z$�n!��'O�4�F 	467BE���|�qX���RYR	�� ����Q�����y(� �A�a"iv5"F"�gT"���;�����, UoF"%�^�xA ��A �xA |�%��0)�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_class_superclassrb_ivar_definedrb_ivar_getrb_eTypeErrorrb_raiserb_eRuntimeErrorrb_check_typerb_obj_classrb_check_typeddatarb_string_value__stack_chk_failrb_funcallvrb_usascii_str_newrb_obj_clonerb_keyword_given_prb_empty_keyword_given_prb_free_tmp_bufferrb_error_arityrb_obj_classnamestrlenrb_str_buf_newrb_str_catrb_str_cat_cstrrb_str_buf_appendrb_obj_is_kind_ofrb_check_string_typerb_str_cmprb_str_newrb_error_frozen_objectmemcpyrb_data_typed_object_zallocrb_eNotImpErrorrb_obj_allocrb_obj_call_initrb_eArgErrorInitVM_digestrb_define_modulerb_define_module_underrb_cObjectrb_define_class_underrb_include_modulerb_define_alloc_funcInit_digestrb_internrb_intern2rb_define_module_functionrb_define_methodrb_define_singleton_methodrb_define_private_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.14GLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�����ii
�ui	�P= PX= `= `= �= �+�? �? �? �? �? �? &�? +�? -�? .@  @ (@ 0@ 8@ @@ 	H@ 
P@ X@ `@ 
h@ p@ x@ �@ 7�@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@  �@ !A "A #A $A % A '(A (0A )8A *@A ,HA .PA /XA 0`A 1hA 2pA 3��H��H��- H��t��H����5�- �%�- ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1�������%-+ D���%%+ D���%+ D���%+ D���%
+ D���%+ D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%�* D���%}* D���%u* D���%m* D���%e* D���%]* D���%U* D���%M* D���%E* D���%=* D���%5* D���%-* D���%%* D���%* D���%* D���%
* D���%* D���%�) D���%�) D���%�) D���%�) D���%�) D���%�) DH�=�) H��) H9�tH�( H��t	�����H�=�) H�5�) H)�H��H��H��?H�H�tH��' H��t��fD�����=]) u+UH�=�' H��tH�=.% �	����d����5) ]������w������H����USH��H��tlH��H���@H�����H��H��tOH�5�( H�����H��t�H�5�( H������t@H��& H�8H9�tyH��H��H�541��
���DH��& H�5rH�81���H�����t������u�H�xt�H�ǾH�D$����H�D$H�@ H��t��8uH��[]�H��H�5�1����H��& H�5�H�81�����ff.�@��H���3���H������Hc@H��H�D�ff.�f���H������H�����Hc@H��H�D�ff.�f���AUATUSH��H��(H�t$H�l$dH�%(H�D$1����H���X���H�5a# H��I���V���H��I���;���H�t$I�E(H��� u:H��H����L���H�l$H�D$H��H�L$dH3%(uH��([]A\A]�f�H�VH�v��������H�5�& 1�1��<���ff.����H�5�& 1�1�����ff.����U1�1�SH��H��H�5�& ��H�5�& 1�1�H��H������H��H��[]�ATUSH�� H�|$H�\$H��dH�%(H�D$1��6���H�D$H�(�� ��H��L�`��1�H�t-���H�xH� ��H��t91�L�l@A��΃�@��A���A�40�LW@�4WH��H9�u�H�\$H�T$H�\$dH3%(uSH�� []A\�f�H�hL�`H��������?H9��^���H��# H�5�H�81�����DH�x�U�������f.���H����H��H�5T% H�׉����H��H�����fD��U1�1�SH��H��H�5(% �c���H�5,% 1�1�H��H���M���H��H��[]�o���ff.�@��H���T���@��S���H�5�$ 1�1�H��H������H��[�ff.���ATI��U��SH��H�� dH�%(H�D$1����H�D$�������#uLH�-e$ H���=���1�1�H��H�����H��H�����H�\$dH3%(��H�� []A\�fDM�$$����H�5$ 1�1�H���@���H�5$ H�L$H�ߺL�d$�"���H�5�# 1�1�H������H�5�# 1�1�H��H������i���@�����xJH�D$u0H���+���A�H�|$�w������k����
���f�M�$$��u
H��u��J���H�|$t
H�|$�;����1��������������ATI��U��SH��H�� dH�%(H�D$1��'���H�D$�������uDH�-�" H�����1�1�H��H������H��H�\$dH3%(H����H�� []A\�M�$$����H�5�" 1�1�H������H�5�" H�L$H�ߺL�d$���H�5c" 1�1�H�����H�5`" 1�1�H��H������q���@�s�����xBH�D$u(H���3���A�H�|$������k��������M�$$��u
H��u��R���H�|$t
H�|$�����1�������h������H��H��1�1�dH�%(H�D$1��l���H��H�$�`���H�$H��� u$H��
��>H��H�L$dH3%(uH���@HcBH�D�����SH�����H��H�5|
H��H�s H�81��y�f���PXH�5m
H�����f.���PXH�5Z
H�����f.���PXH�5@
H���z���f.���PXH�5'
H���Z���f.���ATUH��S�0���H��I����H�xE���H�5�	H��H���%�L��H���J�H�ߺH�5�	��H��1�1����H��H����H�ߺH�5�	���H��[]A\���UH��SH��H��H��(H�5  dH�%(H�D$1���H����H�5� 1�1�H����H��H�D$�'�H�D$H��t>H�|$�r�H�|$�h�H�|$H��� t;H�t$H�WH��� uAH����H9�t>1�H�L$dH3%(ucH��([]�DH��H�t$��H��H��� t�H�FH9�u��;��u���H��1�1����H��1�1�H�D$����H�D$�M�����@PXH�5jH��H� H�81��"�f���USH��H�����H�����H��H�5� H����H��U ��u
H��H��[]����f.���ATUH��S��H���8���H��H�5> H���6�H�s1�I����H��H�C0H�uH�E tH�uL���L��S ��uH��[]A\��"���f���ATUSH��H9�tt@��uzH�����tqH��ƒ���td��u_H����H����H��I�����H����I9�uZH��H�5� ��H�5� H��H���v�I�T$H��uH��[]A\�@H�����H��H�����H��[]A\�H�n H�5�H�81���D��USH��H9=G t7H����H��H�� H�pH����H��H�x �U ��u"H��H��[]�H�' H�5�H�81��.����f���ATUSH�� dH�%(H�D$1���~rH�I�ԉ�H��H��H�$�i�L���!�H�U�s�H�D$H�|$�k�H�$H�|$H�L$H�5^ �H�D$��H�L$dH3%(u!H�� []A\�H�� H�5�H�81��v������H��H�=��l�H����H�5�H��H� ���H�= H�5��W�H����H�58H��H�� �e�H�=� �H���H�5y�F�H�=� 1�H�����H�5���H�=� 1�H�j���H�5���H�= 1�H�����H�5(���H�=c 1�H����H�5����H�=G �H����H�5���H�=( 1�H�W���H�5���H�= 1�H�����H�5���H�=� �����H�����H�5��`�H�=� 1�H���H�5��D�H�=� �����H����H�5x�%�H�=� 1�H�%���H�5f�	�H�=z 1�H�Y�H�5U���H�=^ 1�H��H�5����H�=B 1�H��H�5"��H�& H�=' H�5
H���1�H���H�5�H��H�� �y�H�5� H�=� ���H�=� �����H����H�5��W�H�=� �����H��H�5{�8�H�� H�=� H�5���H�5���H��H�e ��H�=Y �H�%���H�5a���H�=: 1�H�I���H�5y��H�= �H�:�H�5g��H�=� �H��H�5���H�=� 1�H�?���H�5%�3�H�=� 1�H���H�5}�G�H�=� 1�H�g�H�5�H���'����H��H�=���H�=�H�^ �y�H�=�H�C �f�H�=0H�( �S�H�=H�
 �@�H�=�H�� �-��H�=4H�� ��H�� H�������H��H���%li::metadata is not initialized properly%li(%li)::metadata is not initialized properlyIncompatible digest API versionDigest::Base cannot be directly inherited in RubyDigest::Base is an abstract classdigest string too long%s does not implement %s()block_lengthresetfinishupdate#<: >Digest initialization failed.different algorithmsno data givenDigesthexencodeInstance<<digest_length==inspectnewhexdigesthexdigest!to_ssizeClassinitializeBaseinitialize_copymetadata0123456789abcdef;!�0��X`�pp���������������0��D�l0�`���������p�D��xP������������������H����t���� ���������`���(���T�����0����zRx�$���FJw�?:*3$"D���\��(p��A�A�D0�
AAD���#HU���#HU8����F�B�A �A(�GP�
(A ABBCl�x�$0��=E�E�G fDA0X��B�A�A �D@�
 AABJ���*HZ$���AE�E�G fDA������%E�_0���xF�D�C �G@q
 AABG00$�hF�D�C �G@l
 AABDd`�pH S
E���'A����EAK���EAK���EAK���EAK(��F�A�D �~AB(4@�E�D�J@�
AAF`4�AAK(|8�FE�A�G n
DAA,�\�nF�A�D �Z
ABA8����F�A�A ��
ABE_
ABA(0�gE�A�D z
DAA0@t�F�A�A �D@�
 AABAt��H�������H�GNU�P`= �+��������!z����
�)P= X= ���o`��
�@  �
�8	���oP���o�o����o�=  0@P`p�������� 0@P`p�������� 0@P`p������GA$3a1��)GA$3p1094`�)GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY`hGA+GLIBCXX_ASSERTIONSdigest.so-2.7.8-141.el8.x86_64.debug��_�7zXZ�ִF!t/���u]?�E�h=��ڊ�2N�Hiy^ ��1�4�'�'�	��A�A"��0_��h�F�qv����=I������51g�d$7���؄)�<V�A��ܵ��b
�k��R�0�'x\k���f�x���Ni�������ǔ!Ma0��SV0І"����)�#6�n�D����qVX�b�%���DW~�@%�z&،A�_�Kp�N~�OW��r�ԟ��up{=J4>d:4�+�a��ՙ�۸���jL�[� ?�aL^=�F|��@�����k�b�����y��24�ߴp$�(I��]'�MJ��Dh;2K,�Р�+�O�w�:��5���G[�J�u��9��3�����aw+�޴1@,��R�E~_O���1~]�(��Z��chDq��B��|Yp�l��P�wQ�WB����Ob��۸A��*)e�9�8���zK.m-�@�k��c2��jU�fJ����+�n��И@F}
�`��Z^�LS3�-٢���9��4v�=���D����$O�u�\\�"i3����&��ѲM�Jh�\X�g��4�sKYc�V��:�-�֩��
/s�:���1"�r�m����~p"�o�r4��vP��NBP�E��~V}pj����J��5x�.�~�
d6�
a�aUC��p��������Y0+��}9|�(s��J���I�\ 6��54�4ո��l���rM1����p��Fû���ɾgш���$��s�+��a=�#��U�KL�89`哸���T
�p��Kq�*��A���m�Stň.��G��{Ŭ��Jv���	pۺ�A���]��b�=��r�/XU����ǽ��ÊK����m��k�l�'w��IJ]���g2Ҧt�_@�2�n�j���HjX����獭��N{ov���;��<�QN��zë�6�h���S}|R��'�qa+% �Y-΅��<�-BĿ&*���i��U�o�f7�h;�
�3�Df�~Ӱz�7@\ևO�,��\+��>�J������F��C�bhg�jr]���U��Y/i��B��1����м��I����GD'���Wňa61�e�Y��X(MB�,�}����r6��됪^��N�#�&},d�w���G��6#_!':dfڔ��,��k]9M�j�	�'Y��Ʊ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``8(��X0���8���o��rE���oPP@T��8^B�
�
 h��c�n���w��+}�)�)
��)�) �,,�--���1�1 �P= P=�X= X=�`= `=h ��= �=���? �?H�@ @x�xA xA`��A`xAD
�C,�C��H+PKLH[�G��q�qlib64/ruby/etc.sonuȯ��ELF>@ @pj@8	@�W�W �]�] �] �� �]�] �] ��888$$xWxWxW  S�tdxWxWxW  P�td�P�P�P,,Q�tdR�td�]�] �] PPGNU M���Hi
x�B�G�wdDM�D0MOBE���|��U��qXU����� ]��p�1KK�p�BD�^�S&�gV�;��o ���w���wT��$E"V"�,r+"�e����, �F"�|�,Y�8b ��b �@0P�8b __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeendgrentsetgrentrb_ary_newrb_locale_str_new_cstrrb_ary_pushrb_str_new_cstrrb_struct_newrb_yieldgetgrentendpwentsetpwentrb_filesystem_str_new_cstrrb_sys_failgetpwentruby_xcallocsched_getaffinityruby_xfree__sched_cpucount__stack_chk_failunamerb_hash_newrb_id2symrb_hash_asetrb_intern2rb_filesystem_str_newrb_string_value_cstrgetgrnamrb_eArgErrorrb_raiserb_keyword_given_pgetgidgetgrgidrb_num2uintrb_empty_keyword_given_prb_free_tmp_bufferrb_error_aritygetpwnamgetuidgetpwuidgetloginrb_locale_encodingstrlenrb_external_str_new_with_encgetenvrb_ensurerb_eRuntimeErrorrb_frame_this_funcrb_enumeratorize_with_sizerb_block_given_p__errno_locationsysconfrb_int2bigrb_fix2intconfstrrb_alloc_tmp_buffer_with_countrb_num2intruby_malloc_size_overflowrb_bugrb_io_taint_checkrb_io_check_closedfpathconfInit_etcrb_define_modulerb_str_new_staticrb_define_constrb_cIOrb_struct_define_underrb_cStructrb_mEnumerablerb_extend_objectrb_define_module_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.3.4GLIBC_2.4GLIBC_2.6GLIBC_2.2.5/opt/alt/ruby27/lib64�ti	�ii
�ii
�ui	��] !�] � �] �] �_ 	�_ $�_ %�_ /�_ =�_ A�_ C�_ D�_ E`  ` (` 0` 8` @` H` P` X` 
`` h` p` 
x` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` a a  a !a " a #(a &0a '8a (@a )Ha *Pa +Xa ,`a -ha .pa 0xa 1�a 2�a 3�a 4�a 5�a 6�a 7�a 8�a 9�a :�a ;�a <�a >�a ?�a @�a B�a Eb Fb Gb Hb I b J(b K0b L��H��H�)H H��t��H����5RH �%SH ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC��������%
D D���%D D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%}C D���%uC D���%mC D���%eC D���%]C D���%UC D���%MC D���%EC D���%=C D���%5C D���%-C D���%%C D���%C D���%C D���%
C D���%C D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%�B D���%}B D���%uB D���%mB D���%eB D���%]B D���%UB D���%MB D���%EB D���%=B D���%5B D���%-B D���%%B D���%B D���%B D���%
B D���%B D���%�A D���%�A DH�=	.1��b���f�H�=�A H��A H9�tH�N? H��t	�����H�=�A H�5�A H)�H��H��H��?H�H�tH�5? H��t��fD�����=mA u+UH�="? H��tH�=�< �����d����EA ]������w������H�������<A H���ff.�@��H������H���f���H�����H���f�AVAUATI��US� ���I�\$H��H�;H��t�k���H��H��H�����H�;H��u�I�|$L�-1 A�\$H��H�\ID�����I�<$I��H��ID�����I��H��L��H�=o@ [H��1�]A\A]A^����ff.�f���H���3�����H���H���H������K���H��u�H���ff.����H���#���H��tH��H������f��H���fD��H��������? H���ff.�@��H������H���f���H�������H���f�AWAVAUATUSH��H����H��H�(H�-�H��HD�����H�{ I��H��HD�����H�{I��H��HD����H�{D�kH�D$D�cH��O�l-HD�O�d$�2���H�;H�$H��HD�����H��M��L��jH�=�> H��1�AWAVL�L$(H�T$ �t���H��8[]A\A]A^A_�H�=����f���H��������H������H��� ����;���H��u�H���ff.����H������H��tH��H������f��H���fD��H�=Q��UH��AWAVA�@AUATA�	SH��(dH�%(H�E�1��Hf�H�޿�c���H��1�H��I������A�Dž��L������E����E�A����Ic�H��?H��H��H���w�H�CH��H��H��H��H���H)�H��H9�tH��H��$�H9�u�%�uzL�D$��1�H��I����L��L��L�E��H�1��[���L�E���A���\���L��H���a���A��E���N���DH�u�dH34%(D��u$H�e�[A\A]A^A_]��H)�H�L��x����u���L��H���
���A�����f���ATUSH��dH�%(H��$�1�H��H�����������%���H��H�����H�=C< I��H�����2���L��H��H������H�{A�k���H�=< I��H���X����L��H��H�����H����9���H�=�; I��H�������L��H��H���s���H�������H�=�; I��H�������L��H��H���A���H������H�=^; H��H��tf�q���H��H��H������H��H��$�dH3%(��H�Đ[]A\�DH�=�����H��H�; ����H�=������H��H��: �z���H�=Y��_���H��H��: �,���H�=1��?���H��H��: ����H�=�����H��H��: ���H�=����O���ff.�@��H���dH�%(H�D$1�H�|$�D$/tmp�D$����H�T$dH3%(uH������f���H��H�|$H�t$���H������H��t
H������H���H�x7 H�T$H�5\H�81����f���UH��S��H��dH�%(H�D$1�����H�$��tX����u6�������H����H�����H�L$dH3%(utH��[]�H�m��uGH�������S�����x/H�$uH��t��H�������u���H�m��uH��u��H�<$tH������1��������H�w6 ��H�5xH�81����@��H��H�|$H�t$��H���1�H��t
H���D���H���H�(6 H�T$H�5>H�81��r�f���UH��S��H��dH�%(H�D$1����H�$��tX����u6�!�É���H����H������H�L$dH3%(utH��[]�H�m��uGH������������x/H�$uH��t��H�����u���H�m��uH��u��H�<$tH���q�1����C��n�H�'5 ��H�5YH�81��t�@��USH����H��H��t)��H��H���	�H��H��H��H��[]�u�DH�=���H��H��u�H���[]Ë"7 ��u!1�H�����1��	7 H�=�����5�PH�e4 H�5�H�81����ff.��SH���'�H����H��E1�1�1�H��[���ff.����SH������t�j���H��[�DH��[�f.��v6 ��u!1�H�����1��]6 H�=�����PH��3 H�56H�81���ff.����SH���S��t���H��[�DH��[�'������H���#��u�
�H��tH��H�����f�����H��Ð��H������u�z�H��tH��H���)���f������H��Ð��H���c������tH�H��H�D�f��K��T���H���t)H�@H�xH�DH���@H��H�����H�=�p���UH��H��AVAUATSH��dH�%(H�E�1�����z�A�����L��P�����D���L��I����H��H=���H=�w[H�@H��HDžH���H��H%�H)�H���H��H9�tH��H��$�H9�u��t	H)�H�L�L�l$I����1H��������H9���H�sH��H���H��H��H�����I��A�H��L��D���J�H9����H��H��u9A���uT�H�M�dH3%(u;H�e�[A\A]A^]Ð�;�A������L�������fD�H������N�H�=����f���UH��SH����t>�	���R����H���"�H���t,H�@H�x5H��H�D[]Ð�������E��uH���[]�DH��H��[]��H�=#�N�ff.���ATUH��H����StU�h��H����H�hH����������}I����H���t,H�@H�x5[H�D]A\��������A�$��u[�]A\�fD[H��]A\���H�=u�����ATH�=eUS�,��H�=VH����H��H�5�H���v�H�ߺ/H�53�b�H�ߺ1H�51�N�H�ߺ3H�5(�:�H�ߺH�5*�&�H�ߺ�H�5!��H�ߺIH�5��H�ߺKH�5���H�ߺMH�5���H�ߺOH�5���H�ߺH�5	��H�ߺH�5��H�ߺQH�5���H�ߺ5H�5��r�H�ߺUH�5��^�H�ߺiH�5��J�H�ߺyH�5��6�H�ߺWH�5��"�H�ߺ�H�5���H�ߺH�5���H�ߺ�H�5����H�ߺ�H�5����H�ߺ7H�5���H�ߺ9H�5���H�ߺ	H�5���H�ߺ	H�5���H�ߺH�5��n�H�ߺH�5��Z�H�ߺH�5��F�H�ߺH�5��2�H�ߺH�5���H�ߺ�H�5��
�H�ߺH�5���H�ߺ!H�5����H�ߺ#H�5����H�ߺ%H�5���H�ߺ'H�5���H�ߺ)H�5���H�ߺ+H�5��~�H�ߺH�5��j�H�ߺH�5��V�H�ߺ�H�5��B�H�ߺ3H�5��.�H�ߺH�5���H�ߺ7H�5���H�ߺH�5y���H�ߺ+H�5r���H�ߺ-H�5l���H�ߺ;H�5q��H�ߺ?H�5f��H�ߺ5H�5[��H�ߺAH�5U�z�H�ߺ�H�5T�f�H�ߺH�5O�R�H�ߺ�H�5N�>�H�ߺ�H�5S�*�H�ߺH�5X��H�ߺ�H�5V��H�ߺ�H�5Y���H�ߺ�H�5\���H�ߺ�H�5f���H�ߺ�H�5k��H�ߺ�H�5u��H�ߺ�H�5��H�ߺCH�5��v�H�ߺ�H�5��b�H�ߺIH�5��N�H�ߺH�5y�:�H�ߺkH�5o�&�H�ߺmH�5d��H�ߺ�H�5f��H�ߺoH�5j���H�ߺqH�5g���H�ߺ�H�5`���H�ߺ�H�5^��H�ߺ�H�5[��H�ߺKH�5_��H�ߺ;H�5c�r�H�ߺ�H�5Z�^�H�ߺ�H�5X�J�H�ߺ�H�5W�6�H�ߺ�H�5T�"�H�ߺaH�5S��H�ߺcH�5Q��H�ߺeH�5P���H�ߺgH�5M���H�ߺ_H�5L��H�ߺaH�5D��H�ߺ�H�5;��H�ߺcH�56��H�ߺeH�50�n�H�ߺiH�5*�Z�H�ߺQH�5%�F�H�ߺSH�5�2�H�ߺ_H�5��H�ߺUH�5�
�H�ߺWH�5��H�ߺYH�5���H�ߺgH�5���H�ߺ�H�5��H�ߺ]H�5���H�ߺ=H�5���H�ߺ=H�5��~�H�ߺ�H�5�j�H�ߺ�H�5��V�H�ߺ�H�5��B�H�ߺ�H�5��.�H�ߺYH�5���H�ߺ?H�5���H�ߺAH�5����H�ߺCH�5����H�ߺEH�5����H�ߺH�5���H�ߺ[H�5���H�ߺGH�5���H�ߺ�H�5��z�H�ߺ
H�5��f�H�ߺ�H�5��R�H�ߺ�H�5��>�H�ߺH�5��*�H�ߺH�5���H�ߺ�H�5���H�ߺ�H�5����H�ߺ�H�5����H�ߺ�H�5����H�ߺ�H�5���H�ߺ�H�5���H�ߺ�H�5��H�ߺ�H�5�v�H�ߺH�5�b�H�ߺ�H�5�N�H�ߺ�H�5�:�H�ߺ�H�5K�&�H�ߺ�H�5��H�ߺ�H�5��H�ߺ�H�5,���H�ߺ�H�56���H�ߺ�H�5���H�ߺ�H�5,��H�ߺ�H�5���H�ߺ�H�5��H�ߺ�H�5�r�H�ߺH�5�^�H�ߺ�H�5�J�H�ߺ�H�5�6�H�ߺ�H�5�"�H�ߺ�H�5���H�ߺ�H�5��H�ߺ�H�5���H�ߺ�H�5����H�ߺ�H�5���H�ߺ�H�5��H�ߺ�H�5���H�ߺ�H�5���H�ߺ�H�5�n�H�ߺ�H�5��Z�H�ߺH�5�F�H�ߺ�H�5��2�H�ߺH�5}��H�ߺH�5}�
�H�ߺH�5���H�ߺH�5���H�ߺH�5w���H�ߺH�5p��H�ߺH�5i��H�ߺ	H�5a��H�ߺH�5Y�~�H�ߺ)H�5Q�j�H�ߺ%H�5K�V�H�ߺH�5I�B�H�ߺH�5K�.�H�ߺ!H�5L��H�ߺ#H�5M��H�ߺ'H�5K���H�ߺ
H�5F���H�ߺH�5F���H�ߺH�5>��H�ߺH�56��H�ߺH�5.��H�ߺH�5%�z�1�H��H�^�H�5��H�߹����H�C�H�5��H�߹H���H�5��l�1�H��H��H�5��T�1�H��H���H�5��<�H��1�H� �H�5��$�1�H��H���H�5���H�߹����H�]�H�5�����H�߹H���H�5�����1�H��H�
�H�5|���1�H��H���H�5j���1�H��H���H�5[���1�H��H���H�5L�v��1�H��H���H�5=�^��1�H��H��H�50�F��1�H��H���H�5��.��H�߹H���H�5����H�߹H�4�H�5e���H�� �H�E�H�5WH�8�v��1�H��H���H�5�
���H��
jL�
Z
PH��
L�
H��PH��
H�
PH�H�5y
1�����L�% H�� H�5`
H��H��! I�<$���H�- H�=�! H�u�{��H�=|! 1�H�;�H�52
����H��H��1�jL�
 
L��H�
tH��H�5
�\��I�<$ZH�5�YH��H�! ���H�uH�=! ���H�=�  [1�]H�>�H�5�A\�P����H��H���/etc/passwd/etcunamesysnamenodenamereleaseversionmachinecan't find group for %lican't find group for %dcan't find user for %lican't find user for %dUSERparallel group iterationparallel passwd iterationsysconf(_SC_NPROCESSORS_ONLN)confstrsysconffpathconfEtc1.1.0SC_AIO_LISTIO_MAXSC_AIO_MAXSC_AIO_PRIO_DELTA_MAXSC_ARG_MAXSC_ATEXIT_MAXSC_BC_BASE_MAXSC_BC_DIM_MAXSC_BC_SCALE_MAXSC_BC_STRING_MAXSC_CHILD_MAXSC_CLK_TCKSC_COLL_WEIGHTS_MAXSC_DELAYTIMER_MAXSC_EXPR_NEST_MAXSC_HOST_NAME_MAXSC_IOV_MAXSC_LINE_MAXSC_LOGIN_NAME_MAXSC_NGROUPS_MAXSC_GETGR_R_SIZE_MAXSC_GETPW_R_SIZE_MAXSC_MQ_OPEN_MAXSC_MQ_PRIO_MAXSC_OPEN_MAXSC_ADVISORY_INFOSC_BARRIERSSC_ASYNCHRONOUS_IOSC_CLOCK_SELECTIONSC_CPUTIMESC_FSYNCSC_IPV6SC_JOB_CONTROLSC_MAPPED_FILESSC_MEMLOCKSC_MEMLOCK_RANGESC_MEMORY_PROTECTIONSC_MESSAGE_PASSINGSC_MONOTONIC_CLOCKSC_PRIORITIZED_IOSC_PRIORITY_SCHEDULINGSC_RAW_SOCKETSSC_READER_WRITER_LOCKSSC_REALTIME_SIGNALSSC_REGEXPSC_SAVED_IDSSC_SEMAPHORESSC_SHARED_MEMORY_OBJECTSSC_SHELLSC_SPAWNSC_SPIN_LOCKSSC_SPORADIC_SERVERSC_SS_REPL_MAXSC_SYNCHRONIZED_IOSC_THREAD_ATTR_STACKADDRSC_THREAD_ATTR_STACKSIZESC_THREAD_CPUTIMESC_THREAD_PRIO_INHERITSC_THREAD_PRIO_PROTECTSC_THREAD_PRIORITY_SCHEDULINGSC_THREAD_PROCESS_SHAREDSC_THREAD_ROBUST_PRIO_INHERITSC_THREAD_ROBUST_PRIO_PROTECTSC_THREAD_SAFE_FUNCTIONSSC_THREAD_SPORADIC_SERVERSC_THREADSSC_TIMEOUTSSC_TIMERSSC_TRACESC_TRACE_EVENT_FILTERSC_TRACE_EVENT_NAME_MAXSC_TRACE_INHERITSC_TRACE_LOGSC_TRACE_NAME_MAXSC_TRACE_SYS_MAXSC_TRACE_USER_EVENT_MAXSC_TYPED_MEMORY_OBJECTSSC_VERSIONSC_V7_ILP32_OFF32SC_V7_ILP32_OFFBIGSC_V7_LP64_OFF64SC_V7_LPBIG_OFFBIGSC_V6_ILP32_OFF32SC_V6_ILP32_OFFBIGSC_V6_LP64_OFF64SC_V6_LPBIG_OFFBIGSC_2_C_BINDSC_2_C_DEVSC_2_CHAR_TERMSC_2_FORT_DEVSC_2_FORT_RUNSC_2_LOCALEDEFSC_2_PBSSC_2_PBS_ACCOUNTINGSC_2_PBS_CHECKPOINTSC_2_PBS_LOCATESC_2_PBS_MESSAGESC_2_PBS_TRACKSC_2_SW_DEVSC_2_UPESC_2_VERSIONSC_PAGE_SIZESC_PAGESIZESC_THREAD_KEYS_MAXSC_THREAD_STACK_MINSC_THREAD_THREADS_MAXSC_RE_DUP_MAXSC_RTSIG_MAXSC_SEM_NSEMS_MAXSC_SEM_VALUE_MAXSC_SIGQUEUE_MAXSC_STREAM_MAXSC_SYMLOOP_MAXSC_TIMER_MAXSC_TTY_NAME_MAXSC_TZNAME_MAXSC_XOPEN_CRYPTSC_XOPEN_ENH_I18NSC_XOPEN_REALTIMESC_XOPEN_REALTIME_THREADSSC_XOPEN_SHMSC_XOPEN_STREAMSSC_XOPEN_UNIXSC_XOPEN_VERSIONSC_PHYS_PAGESSC_AVPHYS_PAGESSC_NPROCESSORS_CONFSC_NPROCESSORS_ONLNCS_PATHCS_POSIX_V7_ILP32_OFF32_LIBSCS_POSIX_V7_ILP32_OFFBIG_LIBSCS_POSIX_V7_LP64_OFF64_CFLAGSCS_POSIX_V7_LP64_OFF64_LIBSCS_POSIX_V7_LPBIG_OFFBIG_LIBSCS_V7_ENVCS_POSIX_V6_ILP32_OFF32_LIBSCS_POSIX_V6_ILP32_OFFBIG_LIBSCS_POSIX_V6_LP64_OFF64_CFLAGSCS_POSIX_V6_LP64_OFF64_LIBSCS_POSIX_V6_LPBIG_OFFBIG_LIBSCS_V6_ENVCS_GNU_LIBC_VERSIONCS_GNU_LIBPTHREAD_VERSIONPC_FILESIZEBITSPC_LINK_MAXPC_MAX_CANONPC_MAX_INPUTPC_NAME_MAXPC_PATH_MAXPC_PIPE_BUFPC_2_SYMLINKSPC_ALLOC_SIZE_MINPC_REC_INCR_XFER_SIZEPC_REC_MAX_XFER_SIZEPC_REC_MIN_XFER_SIZEPC_REC_XFER_ALIGNPC_SYMLINK_MAXPC_CHOWN_RESTRICTEDPC_NO_TRUNCPC_VDISABLEPC_ASYNC_IOPC_PRIO_IOPC_SYNC_IOgetlogingetpwuidgetpwnamsetpwentendpwentgetpwentgetgrgidgetgrnamgroupsetgrentendgrentgetgrentsysconfdirsystmpdirnprocessorsPasswdshellgecoseachmemGrouprequired buffer size for confstr() changed dynamically.SC_THREAD_DESTRUCTOR_ITERATIONSCS_POSIX_V7_ILP32_OFF32_CFLAGSCS_POSIX_V7_ILP32_OFF32_LDFLAGSCS_POSIX_V7_ILP32_OFFBIG_CFLAGSCS_POSIX_V7_ILP32_OFFBIG_LDFLAGSCS_POSIX_V7_LP64_OFF64_LDFLAGSCS_POSIX_V7_LPBIG_OFFBIG_CFLAGSCS_POSIX_V7_LPBIG_OFFBIG_LDFLAGSCS_POSIX_V7_WIDTH_RESTRICTED_ENVSCS_POSIX_V6_ILP32_OFF32_CFLAGSCS_POSIX_V6_ILP32_OFF32_LDFLAGSCS_POSIX_V6_ILP32_OFFBIG_CFLAGSCS_POSIX_V6_ILP32_OFFBIG_LDFLAGSCS_POSIX_V6_LP64_OFF64_LDFLAGSCS_POSIX_V6_LPBIG_OFFBIG_CFLAGSCS_POSIX_V6_LPBIG_OFFBIG_LDFLAGSCS_POSIX_V6_WIDTH_RESTRICTED_ENVS;,$���H(��ph���8���h�����������H�����$���D���\��t(������H���x�����0���`���h���������������Dh��x�����������h������������<���d������h��TzRx�$���PFJw�?:*3$"D���@\���!HXt���HN����HN8�����B�B�B �D(�A0�w(F BBB�4��4Hk�\��*HQ
GIl��!HX0���HNH���HNT`����B�B�B �B(�A0�A8�DP�XH`NhBpS8A0A(B BBBAP���4Hk�D��*HQ
GI�T��,P��nA�C
D��J��K�#
H44���F�A�A �G�?
 AABFlx��NH @
A����NH h
A(�����E�D�F0^
AAA����NH h
A(�����E�D�F0^
AAA0���`E�A�D a
JAJXFAL���Dl`$��$A�^|8��&E�U
FD�H��Dl����)E�U
FD����?HZ
NN����?HZ
NN$���pHP
Hs
EG
E(8���E�F
N����5
B zRx������(���@�H���E�D�D z
FAB[
FAFD
DAED�����F�A�J �K
FBDY
FBGA
DBED(��PF�H�A �,(H0R8O@` Q(G0m(H gCPGNU�!� �] q����
�A�] �] ���o`0
�
�` `0 	���o����o�o���o�] ���� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p��������GA$3a1��AGA$3p1094@ �AGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY!�AGA+GLIBCXX_ASSERTIONSetc.so-2.7.8-141.el8.x86_64.debug�Q�7zXZ�ִF!t/��Z]?�E�h=��ڊ�2N�\�h��
7A������7�L1���������L
:7$Ɲ2cI�CT��)��U���TԶ�oj�M�όƉ�KG�A�=��`Zr�:
�NX�v�/��m/��S'�u���7����a?������\#S�*�������okh�32=�̺bs������̓\�ۇ4kG���U�:�	��u&�cA��6!C�H�aj���E�_H������I���g��9>D5�����6�7�p�^�	�42H\�M��\e��z
&5�s�%쑐��3����dȫ1�vZ��������I.��#,��K<ٱ�&��%o����c
��	�,�Rw:��/�bc�9/����e�PUwW�j�]l��a!ĝ<d�[8���h���A"��j�BX��Zs���;�S�����#�Fq\���=D ��?����ڵcD���V��^.�L��D&a�i�|���EfzZ���ͯmE�
�գ'*�o�}17�m�G/��h����k@��f�ь% nre�$�����L�8��óp.x_}=0N�i�y>�W$��R=��5'bm��;/�<|S_�Jp�g&U�r>��V��0�
���'���.i�W�lBW�L�=�>�
��V�uq�t�)�
�4�s�wS�R�`�,&�1�N�Ό�y�Ƿ˿�
@j����M<��.��4��p.U
ꨡ����rΌ����&˓u
��U<M⢧���7d9�E'$���k�����Put�ԦY9lv���X=O=J��m��!�q�Q+���?|�P�if�&v�����'��a���*�C��S;@gN��cQ�~��K+�=$�x���FMe��N�^����?���s��;��{��xK8��d��y6�+�u�Ub�vR�	�]��>�=���gMt���2�c(�<�E��Q���7��ލƠ����#r֥w�D3.�K�E
0�"İ&>���PEqes��w��*����7*�U�M��&�>h;*)"�-�����`)`�mY���=�W�z���p]�R��FNLB��Y��f�&q#Z󫽹~����I���x��v�@�B.�f?/D͉w����TE[�5���&���$��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���00
0
�8���o�E���o��PT ^B00`h��c��Pn@w@ @ P!}�A�A
�2�A�A8��P�P,�RRp�xWxW ��] �]��] �]��] �]��] �]���_ �_H�` `8�8b 8bH��b`8bD
|d(�d�@i+PKLH[o�� ����lib64/ruby/objspace.sonuȯ��ELF>�/@��@8	@���� �� � 8 ���� �� ��888$$h�h�h�  S�tdh�h�h�  P�tdd�d�d�DDQ�tdR�td�� � ��GNU[>��s����lS6@���#r�@`� 8	rvw4~ȺBE��t�Fٻ�|�qXf-7߬��v��|��������K G-����pG �'Zz;^b�c�@5��G
����e�E+s�p!�� ��b��#N"����{h��"A��*_��"U6���v+���V, n#S`�F"���q����`���H� �P;	� � �H� �`;��l�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_st_lookup__stack_chk_failrb_uint2bigrb_str_new_cstrfwriterb_st_foreach__fprintf_chkrb_sym2strruby_xfreeruby_xmalloc2rb_st_init_numtablerb_st_init_strtablerb_st_clearrb_tracepoint_disablerb_tracepoint_enablerb_tracepoint_newrb_gc_register_mark_objectrb_bug_reporter_addrb_st_insertrb_st_get_keyruby_xmallocstrncpyrb_st_add_directrb_yieldrb_ensurerb_st_deleterb_tracearg_from_tracepointrb_tracearg_objectrb_tracearg_pathrb_tracearg_linenorb_tracearg_method_idrb_tracearg_defined_classrb_num2intrb_gc_countrb_fix2intrb_class_path_cachedobjspace_lookup_allocation_infoInit_object_tracingrb_define_module_functionrb_obj_idrb_id2symrb_intern2rb_bugrb_sprintfrb_obj_memsize_ofrb_gc_markrb_data_typed_object_wraprb_typeddata_is_kind_ofrb_cFalseClassrb_cIntegerrb_cNilClassrb_cFloatrb_cTrueClassrb_cSymbolrb_ident_hash_newrb_objspace_reachable_objects_from_rootrb_hash_foreachrb_ary_newrb_hash_asetrb_ary_pushrb_hash_lookuprb_objspace_markable_object_prb_objspace_internal_object_prb_hash_arefrb_keyword_given_prb_hash_newrb_hash_tblrb_empty_keyword_given_prb_free_tmp_bufferrb_error_arityrb_eTypeErrorrb_raiserb_objspace_each_objectsrb_objspace_data_type_namerb_internrb_sym_immortal_countrb_obj_is_kind_ofrb_eArgErrorrb_objspace_reachable_objects_fromInit_objspacerb_cObjectrb_const_getrb_define_class_underInit_objspace_dumprb_define_methodrb_io_check_iorb_io_get_write_iorb_io_flushrb_io_taint_checkrb_io_check_closedrb_io_stdio_filestdoutrb_hash_lookup2rb_str_new_staticrb_requirerb_assoc_newrb_path2classrb_funcallv_with_cc__vfprintf_chkrb_str_vcatfrb_str_capacityrb_enc_str_coderangerb_str_resurrectrb_extract_keywordsrb_check_hash_typerb_warnrb_obj_frozen_prb_obj_gc_flagsrb_id2namerb_enc_from_indexrb_class2namerb_enc_get_indexrb_alloc_tmp_buffer_with_countlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5GLIBC_2.3.4/opt/alt/ruby27/lib64�ii
�ui	�ti	�� �1� @1 �  � @� ��H� 0CX� �Bx� �� �� �� �� �� �� ;�� <�� I�� Tȯ cЯ dد g� j� q�  � (� 0� 8� @� H� P� 	X� 
`� h� p� 
x� �� �� �� r�� �� �� �� �� �� Ȱ а ذ � �  � !�� "� #� $� %� & � '(� (0� )8� *@� +H� ,P� -X� .`� /h� 0p� 1x� 2�� 3�� 4�� 5�� 6�� 7�� 8�� t�� 9�� :ȱ =б >ر ?� @� A� B�� C� D� E� F� G � H(� J0� K8� L@� MH� NP� OX� P`� Qh� Rp� Sx� U�� V�� W�� X�� Y�� Z�� [�� \�� ]�� ^Ȳ _в `ز a� b� w� e�� f� h� i� j� k � l(� m0� n8� o@� p��H��H�Ɍ H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he��������%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%݅ D���%Յ D���%ͅ D���%Ņ D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%݄ D���%Մ D���%̈́ D���%ń D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%݃ D���%Ճ D���%̓ D���%Ń D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D��1�H�=�W���H�=�`1����1�H�=!d���1���H�<$tOH������H�<$I��u*H�=1d1��
�����E1�H�=�c���H�$�EH�=Gd1������EH�D$��EH�=bc1�����H�,$�DSH�=�c1������H�,$�*SH�=�c1�����FS1�H�=�c����H��tD��H�,$H�D$A���SH�$H�D$�}S@H�=q� H�j� H9�tH��~ H��t	�����H�=A� H�5:� H)�H��H��H��?H�H�tH��~ H��t��fD�����=� u+UH�=�~ H��tH�=�{ ����d����� ]������w����H��H�
Ձ dH�%(H�D$1�H��tH��H�yH�����1Ʌ�tH�$H�T$dH3%(H��uH����
���f.���H��H�����H��tH�@0H���f��H���fD��H��H���`���H��tH�@ H��H�D�D�H���ff.���H��H��� ���H��t3H�x8H��������?H9�wH�D?H���fDH��������H���ff.���H��H�����H��tH�x(H��tH�����f��H���fD��H��H�����H��tH�xH��tH���y���f��H���fD��SH��H���&�H�=�Q�o���H�� H��tH�xH��H�5%����H�ٺ$�[H�=�Q�6���fD��UL�IRH��H��SH�ERH��H��H���L�N���H�"RLD�1����H�K(H����H�R�H��1�����H�KL�C H��H�RH��QH��HD�1����H�{0H��u$H���H�=�Q�{���H��1�[]�f����H�HH� tH�HH��Q�H��1��T����f�H�KH�|QH��1���6����W������H�����1�H���ff.����H��H�����1�H���f�H�y~ H��t�S�0�����H���H�P~ �F~ H�C�CH�C�"���H�CH�'~ �b�H�C H�~ [�D��S���1�H�5]���H�xH������H�{�(���H�{ 1�H�5������H�{ �
����[�fD��S�6���H�Ë��~�����t�[�DH�{���H�{����[�ff.�@��S���H�Ë�P���~�[ÐH�{H��t�b�H�{�Y�[�f�H��H�����H�CH��� ���H�پ 1�H�����H�CH����H�{������| SH����| ��tH��[�K���H�=����1���| ����H��[�'����AUATU1�SH��dH�%(H�D$1�H��t=H��I��I��H��H���+�����tGH�$H��L��H�P�D�H��H��L����H�,$H�L$dH3%(H��uAH��[]A\A]�@I�}�G���L��H��H��H����H��L��B�D-�@���Y�f���SH���S���H�=�w H��[H�������ATUH��SH��H��dH�%(H�D$1�I��L���G���H�$H��t-H��H��H���^�H�D$dH3%(u*H��[]A\�DH��1�L��H�,$���H�<$�V�����ff.�@��USH��H��(dH�%(H�D$1��n�H����KH�T$H�D$��t=H�{H�������uH�D$dH3%(ubH��([]�fDH�D$���H�{H�t$�*��t�H�l$H�{ H�uH��t	����H�{ H�u(H��t���H��������ff.���AWAVE1�AUATUSH��H��(dH�%(H�D$1���I��H�����L��H�����L��I�����L��I����L��H�D$��I��I�����t I��� �ZI�WI�wH�{ �!���I��I�����t
A����H�$H�{H�T$H���R���*L�d$H�{ I�t$M��H��t	���H�{ I�t$(H��t���H�EL��A��A�I�GH�EM�wI�GuX�s�H�I�G H�D$I�G0H�$I�G(�w�H�{L��H��I�G8���H�D$dH3%(��H��([]A\A]A^A_Ð����f�I�$�ƒ����������
���L�����H����������H��� uQH��H�p��H�{ ���H�$����@H��I�w�������@��I��I�����H�PH�p���f����7������S1�H��H�/���H�5�J��H��1�H�w���H�5J��H��1�H����H�5�J��H��1�H�����H�5�I�k�H��1�H�����H�5�I�S�H�߹H����H�5rJ�8�H�߹H����H�5mJ��H�߹H�����H�5hJ��H�߹H�����H�5cJ���H��[�H����H�5\J���f.�����
f.�H�H9�t(H�H��t����u�H�G �uH����1��DH�A����5f.�H�H��t A��A��A��uH��%�H�DH�H9�u�1��ff.�f���H� ���H�������H�
hQ��Hc�H�>��H�=z H����H���7��H�=�y H��u�H�=5J����H��H��y ���H�=�y H��u�H�=�I����H��H��y ��H�=�y H��u�H�=�I���H��H�qy �d���@H�=iy H���P���H�=�I��_�H��H�Ey �0���H�=Ay H��� ���H�=II��/�H��H�y ����H�=y H����H�=I���H��H��x ����H�=�x H�������H�=�H����H��H��x ���H�=�x H�������H�=�H���H��H��x �p���H�=�x H���`���H�=hH��o�H��H�}x �@���H�=yx H���0���H�=2H��?�H��H�Ux ����H�=Qx H������H�=�G�
��H��H�-x ���H�=)x H������H�=�G�	���H��H�x ���H�=x H�������H�=�G���H��H��w ���H�=�w H���p���H�=NG���H��H��w �P���H�=�w H���@���H�=G��O�H��H��w � ���H�=�w H������H�=�F���H��H�ew ��H�=aw H�����H�=�F����H��H�=w ���H�=9w H�������H�=nF���H��H�w ���H�=w H�������H�=6F���H��H��v �`���H�=�v H���P���H�=�E��_�H��H��v �0���H�=�v H��� ���H�=�E��/�H��H��v ����H�=�v H����H�=�E���H��H�uv ����H�=qv H�������H�=SE����H��H�Mv ���H�=Iv H�������H�=E���H��H�%v �p���H�=!v H���`���H�=�D��o�H��H��u �@���H�=�u H���0���H�=�D��?�H��H��u ����H�=YE���H��H��t ����SH�_ �;�����H�����H��H�=HE[H��1��0���H�G H�8���}���ff.�f��������H9�tWAUI��ATI��UH��SH��H����L�H9�t!H�;t�H���b�H�;L��ID�H9�u�H��1�[]A\A]�f�1��ff.�f������H�����t@��u
�����tH����H����H��H�=�t H��i ��f.���SH��H�5�i H�������tH�[ ��t,��uG�؃���t]H��tg��trH�{[�h����H�����u�H��t!H��u�H��k H�8��H��k [H�8�0���H��k H�8�@H�qk H�8�@H��k H�8�@H��k H�8�@��SH��0dH�%(H�D$(1����H��H�=�H�D$H��H�$���H��H�5)H���1�H�L$(dH3%(u	H��0H��[��3���AUI��ATI��UH��SH�����L��H�5JH��H�����H��L��H����H��1�[]A\A]�@��H��H��H�׺�x�1�H��Ð��H��H���@�1�H���f���AUATUH��SH��H��H9ztfH�z�-�H�CI�����H�;L��H�CI�����H���5�H�;L��L����H������tH9+tH9ku H��[]A\A]�DL�b��f.�H������uH��H��H��L��[]A\A]��@H�=	r H��H�'g ��H����ff.�f���H9���AWAVI��AUI��ATL�%�q UH��SH��H��f�H�H��t
�ƒ���tL�L9�u�H��1�[]A\A]A^A_�DH����I�<����H��H��I���b��H��uL��H������f.�H����L��H��PHc�H�T���1��ff.�f�U��SH��H��dH�%(H�D$1��@�H�$�������
tnH��������H��������������H��t8H��Āu@�����uDH�L$dH3%(H����H��[]�fD��H����fDH�CH�x����t�H�ߺ�H�5@�d�H��H�5*���H����������x:H�$u!H��t��H�������P����'����H���uH��������H�<$tH������1�����H�!g H�5�?H�81�������S���H�=�o H����H��n H����H�~o H��n H���&H�oo H�hn H����H�`o H�In H����H�Qo H�*n H����H�Bo H�n H���JH�3o H��m H���H�$o H��m H����H�o H��m H����H�o H��m H��trH��n H�tm H��t?H��n H��H�=������H��[�@�	H�=]>���H��m ����H�=�>��H�m �fD�	H�=�>��H�m �q����H�=[>�g�H��l �>����
H�=0>�G�H��l �����
H�=>�'�H��l �����
H�=�=��H��l ����H�=�=���H��l �b����H�=}=���H�pl �+����
H�=R=��H�Xl ���
H�='=��H�@l ���ff.���S���H�=H��H���t��H��[�ff.�@��H9���AWAVL�5C=AUI��ATI��UH��SH��H���L�H9�tUH�H��t����u�L�{M��tOL��L������H��tH������PHc�H�TL��L��L����H9�u�H��1�[]A\A]A^A_�f�H���h�H��ID�H����H����I���@1��D��AWAVAUATUSH��XdH�%(H��$H1�H������H��HI��H��H�H��H9�u�H��E1�H�=c�I��������?�$��H�-�BDJ�<�D��tGA��g�HcD�H�>��H�=g H������I�ǐJ�<�H�T?L9�wjL��L������I��I��hu�H��$HdH3%(L����H��X[]A\A]A^A_�H�=�f H�����|�J�<�I��H�T?L9�v�����H���H�=�f H���0�I�I���a���H�=�f H�����,�I���D���H�=uf H������I���'���H�=`f H���y���I���
���H�=f H���<���I�����H�=f H������I������H�=�e H������I�����H�=�e H�����~�I�����H�=�e H���H�a�I���y���H�=�e H����D�I���\���H�=�e H�����'�I���?���H�=�e H�����
�I���"���H�=�e H���T����I������H�=ve H�������I�����H�=ae H�������I������H�=Le H�������I�����H�=7e H���`�y��I�����H�="e H���#�\��I���t���H�=
e H�����?��I���W���H�=�d H�����"��I���:���H�=�d H���l���I������H�=�d H���/����I������H�=�d H��������I�����H�=�d H�������I������H�=�d H���x���I�����H�=zd H���;�t��I�����H�=ed H�����W��I���o���H�=Pd H�����:��I���R���H�=;d H�������I���5���H�=&d H���G���I������H�=d H���
����I�����H�=�c H��������I������H�=�c H�������I�����H�=�c H���S���I�����H�=�c H����o��I�����H�=�c H�����R��I���j���H�=�c H�����5��I���M���H�=~c H���_���I���0���H�=ic H���"���I������H�=Tc H��������I�����H�=?c H�������I������H�=*c H���k���I�����H�=c H���.���I�����H�=c H����
�j��I�����H�=�b H����
�M��I���e���H�=�b H���w
�0��I���H���H�=�b H���:
���I���+���H�=�b H�������I������H�=�b H��������I����H�=�b H�������I������H�=mb H���F���I�����H�=Xb H���	���I�����H�=Cb H�����e��I���}���H�=.b H�����H��I���`���H�=b H���R�+��I���C���H�=b H������I���&���H�=�a H����
����I���	���H�=�a H����
����I�����H�=�a H���^
���I������H�=�a H���!
���I�����H�=�a H����	�}��I�����H�=�a H����	�`��I���x���H�=qa H���j	�C��I���[���H�=\a H���-	�&��I���>���H�=Ga H�����	��I���!���H�=2a H��������I������H�=a H���v����I�����H�=a H���9���I������H�=�` H�������I�����H�=�` H�����x��I�����H�=�` H�����[��I���s���H�=�` H���E�>��I���V���H�=�` H����!��I���9���H�=�` H�������I������H�=u` H��������I�����H�=`` H���Q����I�����H�=K` H������I������H�=6` H�������I�����H�=!` H�����s��I�����H�=` H���]�V��I���n���H�=�_ H��� �9��I���Q���H�=�_ H�������I���4���H�=�_ H�������I������H�=�_ H���i����I�����H�=�_ H���,����I������H�=�_ H�������I�����H�=y_ H�������I�����H�=d_ H���u�n��I�����H�=O_ H���8�Q��I���i���H�=:_ H�����4��I���L���H�=%_ H�������I���/���H�=_ H�������I������H�=�^ H���D����I����H�=�^ H������I�����H�=�^ H�������I����H�=�^ H�������I����H�=�^ H���P�i��I����H�=�^ H����L��I���d�H�=}^ H�����/��I���G�H�=h^ H�������I���*�H�=[ H��tc���I����H�=:^ H��t-����I����H�=Z4����H��H��Z ���H�=�/�
���H��H��] �H�=)4��j��H��H��Z �H�=�/�
�M��H��H��] �G���H�=p/��-��H��H��] �
���H�=X/��
��H��H�[] ����H�=D/�	����H��H�3] ���H�=./�
����H��H�] �S���H�=/�
���H��H��\ ����H�=/�	���H��H��\ ����H�=�.��m��H��H��\ ���H�=�.�
�M��H��H�k\ �_���H�=�.�
�-��H��H�C\ �"���H�=�.�	�
��H��H�\ ���H�=�.�����H��H��[ ���H�=.�����H��H��[ �k���H�=n.�
���H��H��[ �.���H�=Y.�	���H��H�{[ ��H�=C.�	�m��H��H�S[ ���H�=-.�
�M��H��H�+[ �w���H�=.�
�-��H��H�[ �:���H�=.��
��H��H��Z ���H�=�-�����H��H��Z ���H�=�-�����H��H��Z ���H�=�-����H��H�cZ �F���H�=�-����H��H�;Z �	���H�=�-�
�m��H��H�Z ����H�=�-�
�M��H��H��Y ���H�=o-�
�-��H��H��Y �R���H�=Z-��
��H��H��Y ����H�=J-�
����H��H�sY ����H�=5-�
����H��H�KY ���H�= -�
���H��H�#Y �^���H�=-����H��H��X �!���H�=�,�
�m��H��H��X ���H�=�,�
�M��H��H��X ���H�=�,��-��H��H��X �j���H�=�,��
��H��H�[X �-���H�=�,�
����H��H�3X ��H�=�,�	����H��H�X ���H�=�,����H��H��W �v���H�=x,�
���H��H��W �9���H�=c,�
�m��H��H��W ���H�=N,�
�M��H��H�kW ���H�=9,�
�-��H��H�CW ���H�=$,��
��H��H�W �E���H�=,�	����H��H��V ����H�=�+�
����H��H��V ���H�=�+����H��H��V ��H�=�+�	���H��H�{V �Q�H�=�+��m��H��H�SV ��H�=�+�
�M��H��H�+V ���H�=�+�	�-��H��H�V ��H�=|+�	�
��H��H��U �]�H�=f+�	����H��H��U � �H�=P+�	����H��H��U ���H�=:+�
���H��H�cU ��H�=%+�	���H��H�;U �i�H�=+��m��H��H�U �,�H�=�*�
�M��H��H��T ���H�=�*�
�-��H��H��T ��H�=�*��
��H��H��T �u�H�=�*�����H��H�sT �8�H�=�*�����H��H�KT ��H�=�*����H��H�#T ��H�=*�	���H��H��S ��H�=i*�	�m��H��H��S �D�H�=S*�
�M��H��H��S ��H�=>*�
�-��H��H��S ���H�=)*�
�
��H��H�[S ��H�=*�	����H��H�3S �P�H�=�)�	����H��H�S ��H�=�)�
���H��H��R ���H�=�)����H��H��R ��H�=�)��m��H��H��R �\�H�=�)��M��H��H�kR ��H�=�)��-��H��H�CR ���H�=�)�
�
��H��H�R ��H�=w)�
����H��H��Q �h�H�=b)�����H��H��Q �+�H�=R)�	���H��H��Q ���H�=<)�	���H��H�{Q ��H�=&)�
�m��H��H�SQ �t�H�=)��M��H��H�+Q �7�H�=�(�
�-��H��H�Q ��H�=�(�
�
��H��H��P ��H�=�(�����H��H��P ��H�=�(�����H��H��P �C�H�=�(����H��H�cP ��H�=�(����H��H�;P ���H�=�(�	�m��H��H�P ��H�=m(�	�M��H��H��O �O�H�=W(�
�-��H��H��O ��H�=B(�
�
��H��H��O ���H�=-(�	����H��H�sO ��H�=(�����H��H�KO �[�H�=F(�
���H��H��N ��H�=(����H��H��N ���H�=�'�	�m��H��H��N ��H�=�'�	�M��H��H��N �g�H�=�'�
�-��H��H��N �*�H�=u'��
��H��H�sN ���H�=b'�����H��H�KN ��H�=t'�����H��H�N �]��9��f���AWAVAUATUSH��dH�%(H��$1�H����H��I��H��H�H��H9�u�H��H�=���1�E1��l��I��������?�
H��H�� t9H�|�t������H�|�I��I�H�T?L9�wrL��L��H���3��H�� u�H��������?I9�wXH�=�L O�d$H��t^���L��L��H�����L��H��$dH3%(uRH��[]A\A]A^A_�f��K��H���L���>��H�=�L I��H��u�H�=9&��n��H��H�tL �����ff.�f���USH��8dH�%(H�D$(1�H�D$H�D$��~)��H�����H�D$��tiH�EH�D$����H�=0H�t$���H�|$H��������?H9�w"H�D?H�L$(dH3%(uIH��8[]�fD�[����f�����H�UH�D$H�T$��uH��t�H�|$�)���}���������H��t
H�|$����1�������ff.���H��H��� ���H��������?H9�wH�DH����H��H�����@��ATUSH�� dH�%(H�D$1�H�$H�D$�^��H���f��H�=���H��H������H�<$H��������?L�d?H9��H�=�J H������L��H��H�����H�|$H��������?L�d?H9��xH�=yJ H���H�c��L��H��H���e��H��H+|$H��������?L�d?H9��H�=.J H����� ��L��H��H���"��H��������?H9���H�l-H�=�I H��tn����H��H��H������H��H�L$dH3%(��H�� []A\��C��H�=�I I��H�������H�=B#��o��H��H��I ����H�=O#��O��H��H�]I �r���H�����H���V���H�=#����H��H�5I �������I�����H�=�"�����H��H�
I ������I���{����N���ff.���H9�twAVI��AUA�ATI��UH��SH��DH�H��t6����
L��H��<u!I�vH��t
H������H��tH���M���IL�H9�u�[1�]A\A]A^��1��ff.�f���SH��H�5�A H���)�����tH�[ ��u,H�����t#������H��t
H�{[���H�AD H�5�!H�81��H������UH���SH��H��(dH�%(H�D$1��־����u"H�L$dH3%(H��uhH��([]���˿��H�54A H��H���i�����tH�[ �<���H�$裿��H��H��H�5&H�D$����H�<$H��H�5����)���蒾��f���ATUH��SH���=�����u	[]A\�@H��I���u�����uH�}L��H��[]A\�μ��fDH�=iK H��H��@ �r���H�}H��I��������UH�=� SH��芿��H�-�B H��H�}�����H�+���H�5� H��H������H�߹����H�����H�5| ���H�߹����H����H�5p ���H�߹����H����H�5h ����H�߹����H����H�5[ ���H�߹����H�n��H�5L ���H�߹����H����H�5E �w���H�߹H���H�5> �\���H��1�H�p��H�5= �D���H�߹H����H�5> �)����H��H�*���H�55 ����H�UH��H�54 �+���1�H�R��H�55 H��H��I �|���H�=�I 1�H����H�5 �`���H�=�I 1�H����H�5 �D���H���l���H��H��[]鮻��f.�@AUI��ATUH��SH��H��dH�%(H�D$1��g8�H�������H9%J ��H9J �H9J ��H���]���H�$H���yH��I H���л��H�EH��脽��H�}諽��L�`L���Ͻ��L�����H�EH�L$dH3%(H���!H��[]A\A]ÐH�@ H�EH�H�E���I��H�5nI L���^���H�5?I 1�L��H���j���H�������M8�����1�H�=D��H�E�f���f�H�=!�d����H�=!�ú��L��I���x���L��H���M���L�%�H H�$M��t5H�=� �!���I��L��H��H�=<H �W���H�$���fD�H�=� ���I��H�]H ��V���H�7? H��H�5� H�81��;���ff.�H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$��$H�D$H�D$ H�D$H�G�D$0H��t+H��H��H���x���H�D$dH3%(uH����H�H��t�H���ϼ�����X������H9~(tFSH�~0H��H��tH��H�5�1����H�C0[�H��H�5z1�����H�C0[���ff.�@AV1�AUATUH��SH��H�5� L�c���H��� tL�cE1�L�-R�_�H����I9�}YC�4�Ѐ�
�$b����������H�5�H��1��:���f.�H�I���� t�H�CI9�|�[H��H�5$ ]1�A\A]A^����f���
t;��utH�5�H��1����뱐��"t��\uVH�5�H��1������H�5�H��1�����z���f.�H�5XH��1�����Z���f.�<TH�5CH��1��k����6���fDH�5H��1��O�������f.�L��H��1��3������fDH�5�H��1��������f���ATI��UH��SH�BH��H9���H��t��t1�H�5�H������H�CH9���H��t��t(L��H��H��1�H�5v���H�k�K8[]A\�@L��H��H�5>1����H�k�K8[]A\�ff.�@UH��SH��H��H��� u\H����1�H�5%H���D���H��� t%`H=`tH��藶��H;CuY�H�����=t!H��[]�f.�H�V�f.�H��H�51�����H��H��H��[]����fDH��H�5�H��1�����f�H95�C t/H;5�C �t	��SH��H�?脷��H�[��H�?� �����ATf�I��US��H��`dH�%(H�D$X1�)D$)D$ )D$0)D$@H�$�ʶ��H�D$�Ņ������Hc�I�D���qH������N���������@���H�$H����H���ϳ��H�<$I���3�����������M��LD�L�$$H�D$����H�,$����H��tH�|$�޷���@��H�,$H�\$H��B H��H�
�H���@���H��H�=6���H������D$Hu_H��H�=�
���H�{H���l���H�L$XdH3%(utH��`[]A\�������M�����t/H�|$uC1�1�������@H�5�H��1������DHc�I�|�H��t�
���H�$����H�|$�����ó��鬸�����f�AWAVAUATI��UH��SH��H��XdH�%(H�D$H1�A����H��������H�VH�} H�F0�����<H�OH�N(H9�to���vH�wHc�H�>��DH��f�H9�t%H�ڸH��H��?H)�H	�H��H�\$�~D$H�5�H�����@H�D$HdH3%(�N	H��X[]A\A]A^A_�DH���H����H��������؃����T�����t M����H������������uH�52H��1�����H��讴��H��H���C���H�5*H��1����E���DH�F(H9��/���H�
��H��H�5�H��1�H��������@H�5�H��1�������f�H�5�H��1���������f.�H�5�H��1��_������f.�H�5RH��1��?������f.�H�
=
f�H��H�5H��1�����H�U(H���H�����H����H��ȃ���w)H��Hc�H�>��H���h���H��H���M���DH��H�5����H������H�}0��H���c���I��H��t?H�H H�P1�H��H�5��r���I�}0H�������I�U8H�5�H��1��L���H�����H����L�l$H�ߺ0L���6���H��H��thH�5�H��L�{�1��	���L�5�f�K�|��V���L��H��H��1����M9�tH�5(H��1�����I��L9�u�H�5�H��1����H�5�H��1�������H������
�>H��Hc�H�>���H�{�����H�CH�5YH��H�1��U������H�CH��������PH�5\H��1��/����r���f.��ŀ��H��H�ʃ�1�H�5�H����H��ƒ����3�����@�*���H�SH�5�H��1����������� �gH��H�ʃ�1�H�5~H����H�H�� �J������������t��@��H�����������������������H�5�H��1��;��~���fD�� �H�����=0�{H��ƒ���t� �%`H=`��H��H���p���H�;H�����������f��H�5cH��H�P1�������؃������CH�5�H���y����@H�}(�����H���-���H�5?H��H��1��I����@��� u�SH�5BH��1��"��e���DH�
o	���@H�
h	����@H�
a	����@H�
X	���@H�
9
���@H�
G	���@H�
A	���@H�
��|���@H�
��l���@H�
[	�\���@H�
[	�L���@H�
:	�<���@H�
	�,���@H�
�����@H�
�
����@H�
����@H�
�
���@H�
6����@H�
.����@H�
'���@H�
 ���@H�
����@H�
�
���@H�
�
�|���@H�
��l���H��DH�5�H��1��o����H����H�	��H����H����H���H���H���H���H���H���H�5JH��1�������f.�H�5H��1��������f.�H�5�H��1�������f.�H��H�5H��1����\�����+���H�PH� tH�PH�5�H��1��i�����@H�CH�P�F���H�S����H�{�}���������������j���H�5�H��1����,���H�5jH��1�������1�H�5tH�����H����H��f�H9��9���H�ڸH��?H)�H��H��H	�H��H�D$�~D$����H�5	H��1����o���1�H�5H���r�H�H�� ���H���9��������H������q������H9�tGAUI��ATI��UH��SH��H����E8uH�;tH��H�����L�L9�u�H��1�[]A\A]�@1��ff.�f���AWf�AVI��AUATUS��H��hdH�%(H�D$X1�)D$)D$ )D$0)D$@H�$�4���H�D$A�ą�t4�������+H�=�1��Ŭ��H�,$H�D$M�.�-��K�������H�,$����H�D$M�.��uqH���aH�\$H�]6 H�
�H��H�����H��L��H���u�H�{H���9�H�L$XdH3%(�PH��h[]A\A]A^A_�fDt.H�D$H��t
H�|$�
��������ɪ��f���t�H�|$���X���H���`���H�=�H�1�迫��H�,$H�D$L�+�$���fDHc�I�l�@���Ŭ��H�����������E���������H�,$H������H��D�{�����L�,$H��M���ì��E��������H��HD�H�D$H�,$E��uM1��
���fDH�|$�������Hc�I�|����;���H���<�����H��H�$�o���谦����D��A��H�,$E���8����6���D��S�����H��H�l���H�5�谩��H�������H��H�5�蕩��H�=��ɧ��H�����H�=�H�[4 讧��H���Ʃ��H�=�H�84 蓧��H��諩��H�=�H�4 �x���H��萩��H�=nH��3 �]���H���u���H��1�1�[H��3 顥����H��H���== object_allocations_reporter: START
== object_allocations_reporter: END
trace_object_allocations_starttrace_object_allocations_cleartrace_object_allocations_debug_startlivedead-- %p (%s F: %p, C: %sC: %p@%s:%lu (%s))
trace_object_allocationstrace_object_allocations_stopallocation_sourcefileallocation_sourcelineallocation_class_pathallocation_method_idallocation_generationT_NONET_OBJECTT_CLASST_MODULET_FLOATT_STRINGT_REGEXPT_ARRAYT_HASHT_STRUCTT_BIGNUMT_FILET_DATAT_MATCHT_COMPLEXT_RATIONALT_NILT_TRUET_FALSET_SYMBOLT_FIXNUMT_UNDEFT_IMEMOT_NODET_ICLASST_MOVEDT_ZOMBIEtype2sym: unknown type (%d)#<InternalObject:%p %li>non-hash givenobjspace.cimemo_envimemo_crefimemo_svarimemo_throw_dataimemo_ifuncimemo_memoimemo_mentimemo_iseqimemo_tmpbufimemo_astimemo_parser_strtermunknownNODE_SCOPENODE_BLOCKNODE_IFNODE_UNLESSNODE_CASENODE_CASE2NODE_CASE3NODE_WHENNODE_INNODE_WHILENODE_UNTILNODE_ITERNODE_FORNODE_FOR_MASGNNODE_BREAKNODE_NEXTNODE_REDONODE_RETRYNODE_BEGINNODE_RESCUENODE_RESBODYNODE_ENSURENODE_ANDNODE_ORNODE_MASGNNODE_LASGNNODE_DASGNNODE_DASGN_CURRNODE_GASGNNODE_IASGNNODE_CDECLNODE_CVASGNNODE_OP_ASGN1NODE_OP_ASGN2NODE_OP_ASGN_ANDNODE_OP_ASGN_ORNODE_OP_CDECLNODE_CALLNODE_OPCALLNODE_FCALLNODE_VCALLNODE_QCALLNODE_SUPERNODE_ZSUPERNODE_LISTNODE_ZLISTNODE_VALUESNODE_HASHNODE_RETURNNODE_YIELDNODE_LVARNODE_DVARNODE_GVARNODE_IVARNODE_CONSTNODE_CVARNODE_NTH_REFNODE_BACK_REFNODE_MATCHNODE_MATCH2NODE_MATCH3NODE_LITNODE_STRNODE_DSTRNODE_XSTRNODE_DXSTRNODE_EVSTRNODE_DREGXNODE_ONCENODE_ARGSNODE_ARGS_AUXNODE_OPT_ARGNODE_KW_ARGNODE_POSTARGNODE_ARGSCATNODE_ARGSPUSHNODE_SPLATNODE_BLOCK_PASSNODE_DEFNNODE_DEFSNODE_ALIASNODE_VALIASNODE_UNDEFNODE_CLASSNODE_MODULENODE_SCLASSNODE_COLON2NODE_COLON3NODE_DOT2NODE_DOT3NODE_FLIP2NODE_FLIP3NODE_SELFNODE_NILNODE_TRUENODE_FALSENODE_ERRINFONODE_DEFINEDNODE_POSTEXENODE_DSYMNODE_ATTRASGNNODE_LAMBDANODE_ARYPTNNODE_HSHPTNTOTALimmortal_dynamic_symbolimmortal_static_symbolimmortal_symbolclass or module is expectedObjectSpacememsize_ofmemsize_of_allcount_objects_sizecount_symbolscount_nodescount_tdata_objectscount_imemo_objectsreachable_objects_fromreachable_objects_from_rootinternal_class_ofinternal_super_ofInternalObjectWrappertypeinspectinternal_object_idt���D����������������T���$����ı������d���4������԰������$���t���D����������������$���$���$���T���$����Į���������Q��4�������������������i��L��/�������������������d��G��*��
��������������|��_��B��%����������������w��Z��=�� ����������������r��U��8�������������������m��P��3�������������������h��K��.��������������������c���F���)�������������������{���^���A���$��������Ϳ����������v���Y���<�����������q���T���7��������������Ⱦ�������n��reachable_object_from_root_i: category should insert at onceObjectSpace::InternalObjectWrappertempfile.jsoncreateTempfilewrong output option: %li, "references":["%#lx", "%#lx"\%c\u0000\b\t\f\n\r\u%04d]}
, "bytesize":%ld, "capacity":%zuUNKNOWNfalsenull%#g{"type":"SYMBOL", "value":{}, "class":"%#lx", "frozen":true, "imemo_type":"%s", "embedded":true, "broken":true, "fstring":true, "shared":true, "encoding":"%s", "size":%zu, "default":"%#lx", "length":%ld, "name":"%s", "struct":"%s", "value":"%g", "ivars":%u, "fd":%d], "file":"%s", "line":%lu, "method":"%s", "generation":%zu, "memsize":%zu, "flags":{"%s":truedumpdump_alloutputstdoutstringfull{"type":"ROOT", "root":"%s", "references":["%#lx"Keyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parameters{"address":"%#lx", "type":"%s"Passing the keyword argument as the last hash parameter is deprecated`����x�����������x���������������������8�H�X�������h���(��b�������x���`�X���`�`�����`�`�`�`�`�`�`�H�`�`�`�`�`�x�`�`�b��6�c�Z�Q�H���~�u�l�?�rubyobjrubyheap;@G����\�����\���l����z�������
,�������������������\�������<ܜ��\<���xL����l��������������L�������,,���P|���p<����l���������̢��(��t���������\������������������(,���DL���X\���l̬���ܬ���,�������\�������P̮��h���̯������X���������̴�������	\��`	����	����	���	L��,
���l
L���
����
l���
L��\��X<��t����L���������H���d����
|�X
���
zRx�$(���pFJw�?:*3$"Dp���`\����VD L
Ax̘��*HU
CI�ܘ��2HU
KI �����RHi
GD
LI�8���:HZ
NI�X���:HZ
NIx���ZE�I(8����E�N�Q �
CACd����HK|����HN�����kQ�Y����JE�D�8���AE�]
FX �h����E�Y
B]
Cԛ��IK�U
H\80����B�B�A �C(�D@i
(A ABBEl����)E�S0������B�A�D �G0H
 AABF(������E�A�G@R
AAGH�����F�B�E �B(�A0�A8�G`L
8A0A(B BBBB4p���	Hl���E��d`���Ox����C�ؠ��
�Ԡ��@Dp
LzRx�@����̥��0E�a����	8,��cK�E�D �D(�G0v(C ABBC����h���	|���F �T����E�~
Mh
H ��mE�D@Z
DA4�<���LF�E�D �D(�D0l(C ABBT���HV(\���HNL@d����F�B�A �D(�G0`
(A ABBF`
(J ABBIzRx�0����$t���P������O�B�E �E(�H0�D8�G@`
8C0A(B BBBF`������(<���mA�C�G0�
AAGD�����E�
Ed�!E�[P�����O�B�I �E(�D0�D8�G@c
8C0A(B BBBCh������H������F�B�B �B(�A0�A8�G��
8A0A(B BBBAH ���SF�B�B �B(�A0�A8�G��
8A0A(B BBBC(l��E�A�DP�
AAG����<H`
HG0���2F�A�A �D@T
 AABD<����K�E�H �D(�D0�O(C BBBH�����,h��hE�F
E(L����E�I�G@p
AAI4x<��oF�A�D �M
ABEZ
ABK(�t���E�H�D �DA8�(��B�E�A �D(�G@�
(A ABBB	����G��
A 4	���QK�d
AWI�<X	����B�D�B �A(�D0��
(K DBBG4�	l���F�D�D �Z
ABE]AB4�	����A�D�G W
AAKe
GAK
\��@a�OH�4$
����F�H�A �F�S
 AABDzRx�����$����qH�
��?
B�B�B �B(�D0�D8�G��
8A0A(B BBBF8�
���SK�E�D �D(�G0d(C ABBE����H��{F�F�E �B(�A0�A8�F��
8A0A(B BBBG$zRx��������,���}���E��GNU��1@1 � ��0C�B����"
0�� � ���o`�
�
� �	@H�	���o���o�o���o�� ## #0#@#P#`#p#�#�#�#�#�#�#�#�#$$ $0$@$P$`$p$�$�$�$�$�$�$�$�$%% %0%@%P%`%p%�%�%�%�%�%�%�%�%&& &0&@&P&`&p&�&�&�&�&�&�&�&�&'' '0'@'P'`'p'�'�'�'�'�'�'�'�'(( (0(@(P(`(p(�(�(�(�(�(�(�(�()) )0)@)P)GA$3a1�"=�GA$3p1094�//�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094p<�nGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�1e<GA+GLIBCXX_ASSERTIONS
GA*FORTIFYp</�GA+GLIBCXX_ASSERTIONSobjspace.so-2.7.8-141.el8.x86_64.debug�9&�7zXZ�ִF!t/��'C]?�E�h=��ڊ�2N�k� ��cA`���Xm3�oh4D���8KW,}�CU?�SJ�3�d�Z�u���u��ef���E��31t�I����1��n�KK�J��Υk#�3`�
n�-64��9�N��9��<�>p�׆x�Oȴ~p�6o�:f��?���b� �Z[&�x�	�kt�*ы�'�.���N���k�C9K`
�9uףՈl���TRoD�=��p;�|5�+O�ϼ��-;_����z�ES�fε���+jw�4-���v9�\��reI�U�D8��'Q5Ǚ��E�e��p��-!�~�<u�FYT
����6Zk26�$�Bv�o���YҪ�x[��4'���"Қ~Y��*�E[%��a �k�O�<�r����������8�-�ٵ�gJ��ˆ���y��ō��'�젘�QwQ8��)��m�
M���=�b��0��5�YNq�Zb�ʘo�Q�C ��ф���F�&�a�U����t���y[�K����f�LtA��k�Y�dP)FeU��3n?Whmp��(���G{\�A��&7��
���~3���'�
p��<0�{����tJƄ��թ��Y0�X���Q�OͿ����)��(5�z�=?��38�M����e��D�bWsf�\b׃��;����Vh��#�@U��I��UA���q=j���E��9
�L�8,+7�%P��߰gU7�pH!�F�Ӝ�l'�
��h��)����F��`P���O����gE��4���ΧE����!���^%�41�����aÈ	2��)��%_
5��×w���hU���9�LqvR�8�t4)��y	���H��]q>���b0s������/6�m�I�Q#�`z#9���/�T��!�:�1)%C�6���]u�|A���+�:�B[X-�7�>9�����*���nH��[�"+��ʬ[l��l�p���߷�n�ǩ~�Rv/J�#�q��0r�A��)��{:���edb{(�ɼ�I�>0���������i�l�fx�?�+�T�����ߤ��e:D�~�r6R�I��p	�'��R2��CC���	�
m�d���k�S��ҧJ�[n�oH���Qa���!���+9��K��[Ǔ1ŞO�AR�?��ak�B�m$�����qB?U�Ũ{�*��J�_��=�[^BڧC�c��m=li�O#�|�æ����
a���k�a x1��m�`s,��.(�.�p1�z����qg�s��Hvb4%�vr��q����-������	�Zz�[k��|~*�n۹�`&�e���\@:nSM�R(Cr�@R5r�qs��7@�=�	.y�H��H��,�"�M_�{�-��LV�m۽@Ȝ²�^�j��<�06x5Z�y�i�F?���� ưPR|~�,��-�xw��h(��t��t���4�^��>r�On��`:?���G�ȟr���x�?�
��sTH��ZRk.x��1��KZ=�3t�&k2�&�B��$�/�t�b��9��T����|[Mg:��t�'P*@C[k��`����22��J��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``@(��X0�
�
8���o�E���o@THH�^B@@�	h�"�"c�"�"pn`)`)`w�/�/oU}0�0�
�@�@�!�d�d�D�������h�h� �� ��� �� �  �h ��� ����x� x�x�� �H�`� H�� � �`H�d
��,ط�\�+PKLH[��P@P@lib64/ruby/coverage.sonuȯ��ELF>0@�8@8	@'' �-�- �- p� �-�- �- ��888$$�&�&�&  S�td�&�&�&  P�td($($($llQ�tdR�td�-�- �- 00GNU��ʋ�J�Ѭ�$��ǫ�>�)�@ ),BE���q?���|�qX�� (�����p8�  
G0�j~}"�f�e�YU, C�F"��Y
���@1 Kp"���1 �@1 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_get_coveragesrb_id2symrb_resolve_me_locationrb_hash_arefrb_ary_new_from_valuesrb_hash_asetrb_intern2__stack_chk_failrb_bugrb_ary_duprb_ary_freezerb_hash_newrb_internrb_fix2intrb_keyword_given_prb_convert_typerb_hash_lookuprb_ident_hash_newrb_obj_hiderb_empty_keyword_given_prb_free_tmp_bufferrb_set_coveragesrb_error_arityrb_eRuntimeErrorrb_raiserb_hash_tblrb_st_foreachrb_hash_freezerb_objspace_each_objectsrb_clear_coveragesrb_hash_foreachrb_reset_coveragesrb_warnInit_coveragerb_define_modulerb_global_variablerb_define_module_functionlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64�ui	�ii
��- �- ��- �- �/ �/ �/ �/ �/ "0  0 (0 00 80 @0 H0 P0 	X0 
`0 h0 p0 
x0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0 �0  �0 !1 "1 #1 $1 % 1 &(1 '01 (��H��H�Y! H��t��H����5b! �%c! ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#��������% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%} D���%u D���%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 D���%- D���%% D���% D���% D���%
 D���% DH�=�1�����H�5��q����/
f.�f�H�=� H�� H9�tH�^ H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�5 H��t��fD�����=e u+UH�= H��tH�=� �����d����= ]������w������H���c����H��HE�H��Ð��AWAVAUATUSH��L�!dH�%(H��$�1�H9���H�l$@L�l$pI��I��H����I�M9���A��u�I�����t�I��ƒ���u�H������u�H�=� H�����w���H��L��H�$���I9�u�I�V ��uH�����t������#���L�D$HH�T$I��L�D$�j���H�|$`H�D$PH�L$XH�t$@H�|$(L��H�D$H�L$ ����H���5���H�4$H�����H�$I�FH�x ����H�=� L��H�D$8����H�t$L�D$�H�L$ H�T$H�D$0H��$�H�t$(L�L$8L��$�H��$�L��H��$�H�T$pL�L$x�*���H�<$H��H�D$�i���H�L$0L�D$H����H�H���H��������?H�H�H9���H��������H�<$L���i����D���@1�H��$�dH34%(u^H�ĸ[]A\A]A^A_�H�=���H���H��H�� �=���H�T	�H��H��H���HD��H�H��H���x���������H��H��H�=V �����1�H���ff.�f���AWAVAUATUSH��H��H�|$ H�T$(dH�%(H��$�1��] ��uqH� uXH�^ H�;����H��H�D$����H�T$H�t$ H�|$(�;���1�H��$�dH3%(�BH�ĸ[]A\A]A^A_�H���f.��k���H�D$�� �t^H�SH� uH�S H�:�H�-@H�1HE��o���H��I���D���H�����H���D���H�|$L��H������v ���H� �IH��H�[����H�D$XH�CH� uH�C H�8���H�D$H� ��H��H�{E1�E1�����I��H�D$H��H�D$hH�D$pH�D$I�GH�D$`H�D$H��� �a@H����L9���H�D$hJ��H�C H� �fH�kH�sH�{H��H�S(L�w H�t$@H�T$8H�L$0����H�t$@H�T$8H�l$pH�L$0�I�mO�l-H��$�H�t$H��$�H�$L�l$xH��$�L��$����H�$H�|$XH���5���H� �}H�{�rL�d$PA�A�(@H�C N�0N�L0N�D0J�t0J�|0(N�d0 L�T$HL�L$@L�D$8H�t$0����H�t$0L�D$8I� L�L$@L�T$H�=H�T$`H�H���H��H�D-�H��$�H�t$H��L�T$pH�T$0H�D$xL��$�L��$�L��$����H�T$0H�<$H���F���H� ��I��0I�EL9k~{I������H�=� H�������H�T$XH�|$H������� �������V���H�=� H��H�����n���H�|$H��H������j���f�L�d$PH�D$I��I��H��� �����H�D$L9`�d���H�D$H�@ ���fDI�W ����H�(H�pH��H�HH�P���f�H�[ ����H�[ ����H�=���/���H��H�� ��H�=Q�����H��H�� �
����{���ff.���UH��S��H��dH�%(H�D$1��|���H�$��������uR1�H�
 �`���H�������9V ��H�L$dH3%(���H��[]��H�m���yH�=� H���x����H9���H��H�
��H���U�H�=� H��H����}���H��1�H����H�=q H�������H�����R���H��H�����H�=> ��H�����E�H���o�$���H��H���i��H�= ��H�����E�H���!��H��H���;�H�����t������	��������Y�H�� ��H�����������|���H��H���A����� �fD����)H�$��H�m���H�������H���+�H�=l H�������H�=$���H��H�H �h������H��H����۸�S D�H�� ��H��������f�H�������H�������H�=��
�I�H��H�� ���H�=k��)�H��H�� �q���H�=j��	�H��H�� �#���H�=D����H��H�o ����H�<$tH����1�������8�H�� H�5bH�81����H�� H�5�H�81������USH��dH�%(H�D$1��!�H����H�$H�����tm��H�5�H��H����H��H�5[���H���3�� u*H�<$��H�$H�L$dH3%(u6H��[]�fDH��H�=V�����H�� H�5H�81����B�f���AUATI��UH��S��H��dH�%(H�D$1��E�H�$�������ucH����H���k�H�=� H��t�H�5R����=��h�H�� H�L$dH3%(H���fH��[]A\A]�M�$$���.L��H�
e�H�a�0�H�=� H��H�����X�H��H����H�=f H��I��A��H�����-�H��H���r�H��H��H������H��H��u	E����H����M���3�����������~H�$u%H������A�H�����������%���M�$$��uJH��u�����H�=����H��H�� �K���H�=r����H��H�� ����H�<$tH����1�������;���H�= H���,����H�5��������H�=	1��Q��|�H�=� H���������fD��SH�=��������H�S���H�5�H��H����H�߹����H�b���H�5��v�H��1�H�����H�5��^�H��1�H�B�H�5��F�H�=G [����H��H���methodsT_ICLASSoneshot_linesbranchesallto_hashHashcoverage.cstopstop implies clearCoveragestartpeek_resultrunning?cannot enable lines and oneshot_lines simultaneouslycannot change the measuring target during coverage measurementcoverage measurement is not enabled;lx������X���������l�������(������(H����zRx�$��PFJw�?:*3$"D�@\(�HVLt0��F�B�B �B(�A0�A8�G�
8A0A(B BBBA$zRx��������,��4�#HZHL��F�B�B �B(�A0�A8�J�}
8A0A(B BBBA(d��hE�D�F0v
AAI(�$����E�A�D0}
AAG8�����ZF�B�D �D(�F@�
(A ABBDzRx�@����$��,�����E�}GNU���- ����x
�"�- �- ���o`��
�0 `X
�	���o(
���o�o�	���o�- ����� 0@P`p�������� 0@P`p�������GA$3a1x#GA$3p10940�"GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY �"GA+GLIBCXX_ASSERTIONScoverage.so-2.7.8-141.el8.x86_64.debug/"��7zXZ�ִF!t/���]?�E�h=��ڊ�2N�����$�����P���-�̕�l��Ւ�5�q^�;J���kE�����'ac9�҄�`3�$�67���{��ۿw�j�z�f�@���}�E�I:=v��=w��{��w�X��!c��l0��C�'T.D��^@�o��mq|�/d
i��w�@��D��5ꗂ��5w)T�����н]�6��R�j��J��l���́!��>�n?8m(�/>�O�$��]��d�]S�9�H_U��.�T�O�"lb�O��؅fp�⌗��&��]?�H�O�&�Uf�:|���`JX���hN��ļF/\|�TP^�^���B����x�y{-)+L.�]Y��=� �
�z�}@�I�LJǾJXC�W�]:J���(�Ib�J�/�������vcd��+�R���i�^E-=&*�ޱ���_Mqk��~?
j��q�𝛗�g��5��
�?݁�if�n���I��\��I%�����췊g:KA�$b`nHח�x���؛���s�����
����]�+T�?LT����.��Xz#$_ ���������q�+��e����?���j����TE��M!�������q��6Dz�Hʑ�
�_�K
�a�UK�J�-<-�i��PnV3/ڐ��;���R�oX���h����?֬�C���o�TV�A-�ot� t�q>B�=V�桝¶����fî9)�o���M��A��
��N�ȌT�D<�=�M��J��2(�q�
��Z� V8j��^(���;���^��"s�*n���g	X��RlOu��ٛ`���D�;f˦��� [�mT��}(+��'���:���j��(�}��*.
���QG���I�&io,"L��!
x���W�C:�k�ji�#IA|��T���Z�e��>������ 㼩���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��80���8���o�	�	ZE���o(
(
0TX
X
�^B`hxxc��Pn��@w00�}�"�"
�2## �($($l��$�$H��&�& ��- �-��- �-��- �-��- �-���/ �/(�0 08�81 81�@1 @1`��1`@1D�3,"�3��71PKLH[���0H�H�lib64/ruby/stringio.sonuȯ��ELF>�*@�@8	@P�P� �� � �0 ���� �� ��888$$0�0�0�  S�td0�0�0�  P�tdvvv��Q�tdR�td�� � ��GNU�wW�tk'	%,�o�#z����h�@ Ahk��1�BE���|�qX'	27b`� Y-�B��������o� %v�UR�R�R �.��8K|kO ����l����B"S"���6{�������m+��9\�+�G��\, ����F"�d�A�k��|h��� �@� �� __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_funcallv_kwrb_intern2rb_eof_errorrb_funcallvruby_xfreerb_gc_markrb_enc_find_indexrb_enc_from_indexrb_enc_associate_indexrb_utf8_encindexrb_keyword_given_prb_free_tmp_bufferrb_check_string_typerb_rsrb_get_kwargsrb_empty_keyword_given_prb_string_valuerb_extract_keywordsrb_check_hash_typerb_num2longrb_error_arity__stack_chk_failrb_warnrb_io_extract_modeencrb_str_resizerb_enc_getrb_default_external_encodingrb_enc_str_new_staticrb_syserr_failrb_check_typeddatarb_call_superruby_xmallocrb_block_given_prb_class_new_instance_kwrb_obj_as_stringrb_yieldrb_ensurerb_data_typed_object_wraprb_io_taint_checkrb_eIOErrorrb_raiserb_enc_from_encodingrb_ascii8bit_encodingrb_enc_associaterb_int2bigrb_notimplementrb_convert_typememsetrb_str_buf_appendrb_str_conv_encmemmoverb_str_modifyrb_enc_str_buf_catrb_eArgErrorrb_enc_mbclenrb_str_subseqrb_uint2bigrb_enc_copymemcpyrb_str_new_staticrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_enc_codepoint_lenrb_enumeratorizerb_to_encodingrb_alloc_tmp_buffer_with_countrb_hash_newrb_str_modify_expandrb_str_set_lenrb_fix2intrb_enc_codelenrb_num2intrb_enc_uint_chronigenc_get_right_adjust_char_headmemcmpmemchrrb_ary_newrb_ary_pushrb_lastline_setrb_str_newrb_str_substrrb_io_writerb_hash_lookup2Init_stringiorb_cDatarb_define_classrb_define_constrb_mEnumerablerb_include_modulerb_define_alloc_funcrb_cIOrb_define_module_underrb_io_addstrrb_io_printrb_io_printfrb_io_putsrb_internrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.14GLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64�����ui	�ii
�� p0� 00 �  � @� pH� `2P� @2X� �0x� �� �� 
�� �� �� �� �� +�� 3�� 4ȏ <Џ Z؏ [� \� ^� _�  � (� 0� 8� @� H� P� 	X� `� 
h� p� x� �� �� �� �� �� �� �� �� �� Ȑ А ؐ �  � !� "�� #� $� %� &� ' � ((� )0� *8� ,@� -H� .P� /X� 0`� 1h� 2p� 4x� 5�� 6�� 7�� 8�� 9�� :�� ;�� =�� >�� ?ȑ @Б Aؑ B� C� D� E�� F� G� H� I� J � K(� L0� M8� N@� OH� PP� QX� R`� Sh� Tp� Ux� V�� W�� X�� Y�� ]�� _�� `�� a�� b�� cȒ dВ eؒ f� g��H��H�ap H��t��H����5�p �%�p ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q�������%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%�j D���%}j D���%uj D���%mj D���%ej D���%]j D���%Uj D���%Mj D���%Ej D���%=j D���%5j D���%-j D���%%j D���%j D���%j D���%
j D���%j D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%�i D���%}i D���%ui D���%mi D���%ei D���%]i D���%Ui D���%Mi D���%Ei D���%=i D���%5i D���%-i D���%%i D���%i D���%i D���%
i D���%i D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%�h D���%}h D���%uh D���%mh D���%eh D���%]h D���%Uh D���%Mh D���%Eh D���%=h D���%5h D���%-h D���%%h DH�=)H1��R���L�d$��	H�=aH1�D�m��6���L�d$I��uI�D��H�D$H�D$ �	H�|$�L���L�t$�U�I��M��uH�=MH1��T$����T$�D��1�H�=mH�T$����M���T$LD�L�d$��uL�t$H�D$ ���D	�I�H�D$H�D$ ���c��� 	�	H�=�G1��i���L�l$8�U�I����H�D$8�T$H��H�D$���H�L$8�u��T$I��H��u3H�=~G1��t$�����t$�H�=�F1�����L�l$8���1�H�=�G�t$H�L$���M���t$LD�H�L$��L�l$8uH�L$(H�D$@�I�H�D$(H�D$@��t"���@�?I���H�D$(H�D$@�'��
��S1�H��H�=�G�e����P�����u>H�=<f u�H�=�C�q���H�"f H�=f �^���H��1�1�H��[���H��[�#��S1�H��H�=�G��������u>H�=�e u�	H�=�C����H��e H�=�e ���H��1�1�H��[�(���H��[��$��S1�H��H�=�G��������u>H�=`e u�	H�=+C���H�Fe H�=?e ���H��1�1�H��[����H��[�$1�H�=�E�;���M���M�.LD�L�|$�K&1�H�=�D����H�D$�'1�H�=!E�����H�D$�&H�=@E1�����'��AT1�I��UH��S��H�=kG��������uBH�=}d u�	H�=ZB����H�cd H�=\d ���H���L��[H��]A\���L��H���[]A\�r11�H�=)D�T���H�D$�51�H�=aD���9���H�D$�5H�D$H�={D1�����H�T$�5H�D$H�=�D1����H�T$H��tH�T$H�D$ D��A����5H�D$H�D$ ��5H�=�C1�D�{����H�l$�g7A�H�=�C1�����z7A�H�=#D1�����e7H�=HC1�A���n���H�l$�7@H�=!c H�c H9�tH��_ H��t	�����H�=�b H�5�b H)�H��H��H��?H�H�tH��_ H��t��fD�����=�b u+UH�=�_ H��tH�=�\ �����d�����b ]������w�������(�fD����fD��ATI��H�5�b U��SH��H��t$A�L���H������H��t([]A\�fD�H�=X@�_���H��H�5b ��^���ff.���ATI��H�5b U��SH��H��t$A�L���H���a���H��t([]A\�fD�H�=\>���H��H��a ����ff.���H�5�a SH��H��t1�1�H������H��t'[���H�=@���H��H�Ua ����ff.���H�5-a SH��H��t1�1�H�����H��t'[���H�=�?�/���H��H��` ���.�ff.����G$���G$��~�fD�c���H�?���@AUATUSH��H��H�H��� ��H��H�J��H��~4������v>��������uH��t�y���1�H�kH��H��[]A\A]�@��u�H��~ހyu؀y�uҀy�u�H�=�<A����A���E��t�D������H��Ic�H�C�C t�H�;D�������fDH�JH�B�:���H���f����y��\���H�=B<A��J���A���DH���6����y��,���H���"����y������#�A�A���U���DH��~�yu�ytH�=�;A����A���$���H�=�;A����A���
���f.�AWI��AVAUATU��SH��H��8dH�%(H�D$(1�H�D$��H�D$ A��������Hc�M�d�A����I������1���A�$�����!���L�d$I���*I�H�D$H�D$ ���aM�w����H����H�|$ �����H�|$H�����H��tb@��uH�����t
�����tI��H��H���lH�D$H������)���L�d$H�VZ H�8H�����H�|$H�;H�C�c�I��tKH�=�] ��1�L�D$ �L��H�5z] ��H�D$ 1�H��4t	H��������C��	ЈCH�L$(dH3%(H���4H��8[]A\A]A^A_�D���~O����I�L�d$H�D$H�D$ ����������H�=�9��H��\ �C���H�D$ �uL�d$H�D$H�����1�A��k����������H�|$t
H�|$�e�I����A����L��H�|$H����Hc�I�|�H��������L�d$����@H�|$�~�L�t$�U�I��M���L�E���%�M��t<L�d$��tJI���H�D$H�D$ �������A�H�����������H�D$����A�H�D$ ���H�|$H���������	�I��H�D$� ���L�����H�|$����H�D$�tH�H��W H�:H�|$���H�������H�|$ t
H�|$ ��1�����I�A���H�D$H�D$ ������������c���ff.�AWAVI��AUATI��U��SH��H��xdH�%(H�D$h1�H�D$8��H�D$@A�Dž�������Hc�M�l�A���I������|�A�E�����l�L�l$8I����I�H�D$(H�D$@����I�NH�L$0���VL�s H���JH�L$8H�|$0M��L��L�L$@1����H�|$(���H�|$(�C H���H�|$0�����C ����@1��I�H�|$(H�;������H�C�f.���H�T$8H�L$8L�C 1�H�|$0L�L$@H�D$(H�D$0�I����H�=771�1�H���q�H��H�D$(�C H��J���������X���H�;���d���H�D$@H�C�C H�CH�C�����H��I	$L��H�T$hdH3%(�H��x[]A\A]A^A_�@�+���~w���
I�L�l$8H�D$(H�D$@���K���H�t$8H�t$H�D$0L�s H����H�L$H�|$0M��L��L�L$@1��8��E���H������C �K���H�D$@�TH�t$8L�l$8H�t$H�D$(L�s H�D$0H����H�L$H�|$0M��L��L�L$@1�����}���fDH�D$8H�D$L�|$@L����H�L$1�H�|$0M��M��L�������>������Hc�I�|�H������� �L�l$8����DH�D$8H��H�D$��H�L$8�u�I��H���j�E���,�M��t4L�l$8��t>I�L�l$8��H�D$(H�D$@���������f�H�D$8A���u�H�D$@�����^�I��H�D$8�x���H�|$@t
H�|$@���1����A���H�D$0H��L�s H�D$8H�D$����L�|$@����1��
��1�����x�f.���AUI��H�5�P ATA��H��UH��SH���j�H��H��t*1�1���H��H��H��L��[D��]A\A]�.���fD�(��H��H�H�@H�@H�H�C H�] ���ATI��U��SH�������uH��L��[��]A\���H����H�=�6H��H��1�������S���H���y���uH��[�H�=R H��H��[H�+�&�fD��H�uO 1���ff.�H����H�5PO H���8�H��tH���H��Q H�5�1H�81��f�fD��H������H���f���H�����1�H���ff.����SH���s���H��[�ff.���H���S����H���f���H���3���H�@H�@�H���f���H�������H���f���SH�����H��[�ff.���SH�������H�tH�C �@ ����H���[���SH������H�tH�C �@ ����H���[���SH���c����H�tH�C �@ ����H���[���SH���3���H�#�����[�D��H������H�H���ff.���SH����H��` �H��[���S����H��H���[�H��tH�{[���@�[��H�����H�xH��t
H�����H�8��H��H����ff.����AVI��AUATI��US��H��H��dH�%(H�D$1��@���I�����H�$���8������u{�I����
H�I�$�~I�D$ �@ �oH����@���H�H��t]H����I�UH��� �#H�����>f.�I�n��~�H�<$tH���������'��I�EH��������H)�H9���H�H����I�]�H�L$dH3%(��H��[]A\A]A^�H��t�H�5>.����f.�H����H����������L���H�$���u5H�������H���������H���P�H�������I�n��~����f�H�B����1���;�H�lM H�5�-H�81������ff.���USH��H���>���H���tH��H�H�EH��H��[]�f�H����H�EH��H��[]�f.���USH��H�����H����H�EH�t
H�S �B uH��H��[]�DH�}H�����H��H��[]�f.���H�����H�xH�@H�xH�D?H���fDH�������H���S���H�xH�@H�xH�D?H���fDH���g����UH��SH��H�t$�	���H��H�����c �H�|$��H�D$��uH�����u"�S H�CH�CH�H��[]�DH��΃���tс�H��҃�������PXH��H���~������f���ATH�
�+H��+USH��H�����H9�tYH��H���:���H�5�H H��I���x�H��tH�{ �G$���G$��~2H�L�c H����H�H�E%H	�H�A�D$$H��[]A\�@����f�SH������H�tH�S �B t[�H��J H�5�*H�81��:�f.���AUATI��USH�����H�(A��tqM��I�H�]�� uRH����M��xcL��H����L9�}"L��H�}H)�H�E tH�}H�1���H��L��[]A\A]�fDH�]�f.�L����I���H�5N*����f�@��uH�����tH��ƒ���t��u�H��H��I H�5*H�81��B��f�AWAVAUATUSH��(H�t$dH�%(H�D$1����H����H�|$I��@��u
H����������L�mH�D$M����H�|$�D��I��I9�t	M9���H�D$H��� ��H�XH��tdH�}� ���H�}H��� ��H�����E @��H�EH�t$M9���M9����o���H�D$H�D$H]H�D$H�L$dH3%(H����H��([]A\A]A^A_��H�����^���@���������L�mM������DH�}�O��I������H�|$L��H������H�D$���fDH�G�E @�#���L�}I9�����H��������L)�H9��
���H�}L�'A�� tzL�gI�4L9�~~�h��M9�~%H�EL��L)�H�xH� ��L�1��~��H�t$H� uTH�}H��H� uTH��H}H���/����f.�I��I�4A��L9���z��H�t$H� t�H�}H�vH� t�H��DH� uH��L��H������;���H�v��f.�H�x�?����b��H��F H�5L'H�81��Z��f.�����~pAU�G�ATL�l�I��U1�SH��H��fDH��H�s�L������H�L9�u�H�@H�xH��H�D-[]A\A]ÐH��H��[]A\A]�~��fD��f�SH���'�H�tH�S �B t[�H�F H�5�&H�81����f.���H�����H�H�xH��� uDH��H��H�ֺ��H9�}H�WH�PH�9Hҁ�H��H��H���f.��H;y}�H�I��ff.�@��H���3���H�H�HH��� u$H����H9���HL�H����H�B��f.���AVAUATUS����L�`H��M����H�+L�kH�u�� tTH�EA�I9�}3H�uJ�<.H�L�����L��H��Hc�HS���L��H��I������[L��]A\A]A^�fDH��A���I9�}�H�EJ�<(H��f�H�8�x��I���a�����SH���S�@ tH�#�����[�H�0D H�5�(H�81��������SH����@ tH�#�����[�H��C H�5y(H�81�������USH��H�����H���tH��H�H��xH�EH��H��[]�DH���@����1���R��f���H����H�H��t>H�8�� uH����H�D?H���fDH�xH��������?H9�v�H�����H�-C H�5�#H�81�����@H��� u(H����H)�H9�HN�H��%H��1�1��F��fDH�GH)�H9�HN�H��~�USH��H���/��H��H��H�����H��H��[]����AUATUH��S��H��H��dH�%(H�D$1��U���H�$���aI�ă������I�<$H�H��I��A�� ��H��I�t$H����H9���H�$H)�1�I��H���gM����H��H�˃�H)�H��L9�IO�H�����I�4$H� �nH��H�<$H� �9H��H���9�������H�<$H������H�$H�I�L$�� ��H����H�I�T$H�L$dH3%(�fH��[]A\A]�H�EH�$H���~L�mI�����A����I�M���*H�$� I�$I�t$H�
I��A�� ��H��H����H9����H���������I�t$I�<$H��L�����I�L$H��� �*���H�P�(����I�4$H�<$����H�$��f�H�H������It$H���v������H�v����H�Z�S����H�_I�t$H9�����I�\$H���H�<$1�H��������H�<$H���O��H�$���fDH������I�$I�t$�H�
I��A�� ���fDH������H�<$����l���f.�I�L$H���������I�t$I�<$H�����@L��� ��I���E����H�z�m����1�����H��H�$�6���DH�������1�H����������f.��+��H������1���������H�? L��H�5�H�81����D��AUATI��USH��dH�%(H�D$1�������uF����H�����E1�1�1�H��L�����H�T$dH3%(��H��[]A\A]��L���8���H�XI��H��t|I�}H�l$�;�H����H9�}TH��H�H�H��H��������H�|?���Hc|$I}I�}I�EH�0�� t�H�pH9�}H�@H��DL���Q����H�8����H���t����[��ff.�SH������H�����H��E1�1�1�H��[���ff.����SH�������u�%DH���`��H���H���H��u�H��[�DH��[�f���USH��H������H���f����u1�`H����H9�}DH��H�QH�UH�<H���H������H�EH�MH��� t�H;H}H�@��DH��H��[]�fDH��H��[]����f���ATI��U��H��SH��������u3I�4$@��uH�����t
�����tH��[]A\�
�f.�H���h�H��L��[��H��]A\��@��AWAVI��AUATU��H��SH��H��8dH�%(H�D$(1���H�D$I�����H�D$ A��tM�������H�=E!1����M�.H�T$ H��tJH�|$ ����I��u@�I���A��K����~w���oM�.��t�H�T$ ����H��u�I��t�L���&��I�D$H�tH�S �B ��H�L$(dH3%(H����H��8[]A\A]A^A_�@u>���iH�T$ H����H�|$ �D$�
���D$������H�T$ ����Hc�I�D������H������������������H�D$H��t[H�|$�(��H�|$I������E��������M��u9H�D$M�.���������fDI�<$H��������M�.���L�|$M�.���f������f�Hc�I�|���t;H��u=���J��H�|$t;H�|$���H�|$I���D������fDM�.�����{��H�D$����M�.H�T$ �;��������H�|$ ���Y��H���a��H�=�H�E1�����L�m���������v���f.�AWI��AVAUATI��USH��H��H�/L�6H�$H��% �H����M��I)�M9���L��K�D%H��L)�M��HH�H��H�D$�Y��H�D$H��H�t�W��H� t.H�[1�M��x.M��uNI�H���[]A\A]A^A_��H��1�M��y�H��J�43J�<#H�L$L)��m��H�L$M��t�H�4$L��H��H�L$�|��H�L$�DM��~L��H�����L��H�����H�% H��u(H��M9�(L��L)�H��N����H�o����H�[M9�~�L��H�<+1�L)������@��AVAUATUSH��@H�t$dH�%(H�D$81���H�8H�����H�D$H��tQ�ttH���T����H�;�����H��I���}��A��L�t$ L���L��A�U0H�;Ic�H�sL�����H�T$8dH3%(��H��@[]A\A]A^�fD�uH�������H�l$H���;��H�;�3��H�|$I���&��I��I9�t&�)��I9�tH�|$L��L������H�D$�
DH�D$H��� t[H�HH�PH�;H�s�W���H�l$H�D$��D��������
�j���H����������L����f������H��H�P������ff.�AWI��AVAUATI��USH��HL�nL�wdH�%(H��$81�L�H�M���H�I�W�� �H�AH9��&H�YH�,H�M��~1H)�L9�v)I�J�3H���H��H��L�T$���L�T$H��I����M�2L��� �I��A��M����I��I)�I���M9��SI�����J�3H9��9I�BI��H�D$(�TH�t$(L��L��L�L$ L�T$H�L$L�\$���L�\$H�L$��L�T$L�L$ ��I��K�3H9���H��t�I�r�@H��H�Y��H9������H��$8dH34%(��H��H[]A\A]A^A_�fDH��H9�tÀ;
t�H���H��
H)�����H����H9��~�PH�x��
��H9�vȀ�
uÀx
u�H�hA�D$���fD���@Lc�H��I�?H)�L)�H�GH� tH�GH��L��H)����I�H� tJH�R�H1�A�D$tH9�v�}�
�6�H��I�wI�?L��H)�H)���I�H� u�H��H)�I�GI�o����M�r����H����M�RA�2L��H��L�L$����L�L$H��t-H�hI��I)�A�D$tH9�s
�x�
�LD�M)�fDI�wI�?L��L�����Y����H��L�T$���I�L�T$I������A�D$�����H9�������}�
�����H�E�A�H9������E1��}�
A��I���}���f.�I���$���H���;I��H�D$0H��$0DL�0H��H9�u�M��I��t'L��L��DH���J�H�D�0H��u�M9�����L��f�M����L��H��D�;H��H)�L)�L�G8t�DH���D�8u{H�B�H9�u�H�������A�D$�LE�N�2J�,���H��L�T$H�T$����L�T$H�T$H������H�U��H9������1��}�
��H�����DJ|�0L9��:����=���H�hA�D$������M�R���H�W�W���A�D$K�,3IE�I��I)����������AVI��AUA��H��ATUH��SH�� dH�%(H�D$1�H���������L��D��H��I�����H�xu�IDH��L�����H����H��H���J���H��u�H�L$dH3%(L��u%H�� []A\A]A^�H��0 H�5H�81����������UH��H��SH��(dH�%(H�D$1�H��H���s��H��H�xt9���H��H�����H��H���~��H�L$dH3%(H��u8H��([]�@��H�PH��t1�1��)��H����@H�8����H�����N��ff.���AUI��ATA��H��USH��H��(dH�%(H�D$1���������thH��L��D��H�����H�xu�yfDH���@��H����H��H������H��u�H�L$dH3%(H��u:H��([]A\A]�f��+��H���s��H��E1�L��D��H�����H����u��H��. H�5�H�81��m��ff.�f���UH��SH��H��dH�%(H�D$1����H�8����uH�����t
�����t[H���uC�����H�|$�D$�K��H��H����H��H�L$dH3%(u1H��[]�fD�����f�1��H������H���������USH��8H�t$dH�%(H�D$(1���H�8H�����H�|$H��tM@��tpH�L$ ��&H�D$ ��c��H�Ǩ�������D$H�;H�T$H�s��	�H�\$(dH3%(���H��8[]�f�@��uH�����t�����
�s���H�l$H���3��H�T$H�
�� u>H��H����t�H�;H�s��H�l$H�D$�u���fD����K���fDH�JH���R���H�R��P����AWAVAUI��ATI��US��H��8dH�%(H�D$(1�H�D$���H�D$ ��t1��������H�=�1����H�D$ M�u�&�������~O���NH�D$ M�u��u@H���(L��L�����H�L$(dH3%(�BH��8[]A\A]A^A_�f�t.H�D$ H��t
H�|$ ���������y��f���t�H�|$ ���X��H���`��H�=�H�1�����H�D$ L�3�Y���f�Hc�I�D���N��H������B��������4��H�D$H������H�|$D�{����L�t$H��M���V�����1���H��HD�H�D$ H�T$E��uK1�����fDH�|$ ��������Hc�I�|����~���H�������i���H�D$�n����J�����D��A��E���v����u�����AWAVI��AUI��ATUS��H��(dH�%(H�D$1�H�D$���H�D$A�ą�t(�������H�=�1��y��H�l$�/f�������������H�l$A��A��t
A����H�|$�gH���=�{�L��L���/�H��H��uH�5'- �4H����H���#H�L$dH3%(H����H��([]A\A]A^A_�����H�|$�����H���&��H�=�H�E1����H�l$�G���f.�Hc�I�l�@������H����������E��������H�l$A��H����H�|$�v���H�|$H������E����A��H��HD�H�l$���H�|$tH�|$���f���L��L�����H��H�����������H�|$������D��H�|$t
H�|$�l�����������Hc�I�|�������H��u9������H�|$�h���H�|$袽��H�|$H���������fD裾��A��H��H�D$����~����~��f���H��' ATH�=USH�0����H�=�H������H��H�5�H�����H��' H��H�0����H��H�5`���;���H�߹����H����H�5x���H�߹����H����H�5~�ſ��H�߹����H����H�5F蚿��H�߹H����H�56����H�߹����H�@�H�5+�d���1�H��H����H�5b�L���H�߹H����H�5��1���1�H��H�U��H�5�����H�߹H�J��H�5����1�H��H����H�5����1�H��H�*��H�5��ξ��1�H��H�2�H�5�趾��1�H��H���H�5�螾��1�H��H����H�5�膾��1�H��H�j��H�5��n���1�H��H�"��H�5u�V���H��1�H�j�H�5k�>���1�H��H�R�H�5W�&���H�߹����H���H�5A����1�H��H����H�5/��1�H��H�g��H�5�۽��1�H��H����H�5�ý��H�߹H�d�H�5�訽��1�H��H����H�5�落��H�߹����H����H�5��u���1�H��H����H�5��]���H�߹H�^��H�5��B���1�H��H�&��H�5��*���H�߹����H���H�5w����H�߹����H���H�5���H�߹����H����H�5r�ټ��1�H��H�
�H�5G���1�H��H����H�5詼��1�H��H���H�5
葼��1�H��H�@���H�5��y���1�H��H��H�5��a���H��1�H�����H�5��I���1�H��H����H�5��1���H�߹H���H�5�����H�߹H�����H�5����1�H��H����H�5p���H�߹����H��H�55�Ȼ��H�߹����H�)�H�5B譻��H�߹����H�~�H�5�蒻��H�߹����H�c��H�5{�w���H�߹H�8�H�5��\���1�H��H�@��H�5��D���1�H��H�(��H�5��,���1�H��H����H�5�����1�H��H����H�5����1�H��H����H�5����1�H��H����H�5��̺��H�߹H����H�5q豺��1�H��H����H�5b虺��1�H��H����H�5\聺��H�߹����H���H�5S�f���1�H��H�
��H�5H�N���L�%�! H�5II�<$�ǻ��1�H����H�5AH��H������H��1�H�@��H�5,����H�����H����H�5���H�����H�*��H�5�ι��H�����H���H�5�賹�������H��H�����H�5�蘹��H��H��譺��I�<$H�5��
���H��  �H�5�H��H���_���H��  H�����H�5��D���H��  H�����H�5��)���H�Z  H�����H�5�����H�/  H��H�5u�������H��H���H�5c�ظ��H��H�����H�=[��H��蹹��[]H��# A\���H��H���getsUTF-16BEUTF-32LEUTF-16LEUTF-32BEchompuninitialized streamclosed streaminvalid whenceto_strioStringIOnot opened for writingnegative lengthnot modifiable stringstring size too bignot opened for readingnot openednegative length %ld giveneach_codepointeach_chareach_byteeach_line0.1.0VERSIONnewinitializeinitialize_copyreopenstring=linenolineno=binmodecloseclose_readclose_writeclosed?closed_read?closed_write?eofeof?fcntlflushfsyncpospos=rewindseeksync=telleachbytescharscodepointsungetcungetbytereadlinesputcisattytty?pidfilenosizetruncateexternal_encodinginternal_encodingset_encodingset_encoding_by_bomgeneric_readablereadcharreadbytereadlinesysreadreadpartialread_nonblockgeneric_writable<<printprintfputssyswritewrite_nonblockexceptionKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parameters%li::new() does not take block; use %li::open() insteadclosing non-duplex IO for writingclosing non-duplex IO for readingStringIO#codepoints is deprecated; use #each_codepoint insteadStringIO#chars is deprecated; use #each_char insteadStringIO#bytes is deprecated; use #each_byte insteadPassing the keyword argument as the last hash parameter is deprecatedinvalid limit: 0 for readlinesinvalid limit: 0 for each_lineStringIO#lines is deprecated; use #each_line instead;�Rp���� ����������������������q���D׷���D��������dS����������������� ���L����x���@����`����p���� ��� ������$0��`������������ ���@���`�����(���@���X���p���@���p����������������00��Pp��p��������@�����<���\P���p������P�����,	@��@	0���	����	����	p��
���0
���p
����
���
P���
����
0����X ���P������ ��d����p����H
���
���
�� 0�L ����� �@�x�zRx�$�����FJw�?:*3$"D8����\����
p|���
(�x���bF�K�C �b
ABG(�����bF�K�C �b
ABG����RL�[
I�D���RL�[
I����(����8<�����B�B�A �A(�G0]
(D ABBEHx����B�E�B �B(�A0�C8�Gp�
8A0A(B BBBF zRx�p������(4����L�����vB�B�E �B(�D0�C8�G�
8A0A(B BBBE$zRx��������,�����8�t����F�L�G �D(�D0Z
(J DBBK(����MF�D�C �S
HBE���:E�Z
AN��$��:D]
A@<��HNXD��HKpL��E�L�P��HN�X��'H^�p��HN�x��E�L�|��0E�j���0E�j(���0E�jD���E�U`���HLx���E�W����/E�Z
IF����4HR
FL@����F�E�B �D(�A0�I@,
0A(A BBBA0���FE�A�G [
DACPDA0L���VE�A�G h
DAFPDA���9Ha
GD�<��9Ha
GD(�\���E�D�D0S
AAF����EAD,����F�O�A �r
ABE84��6A�\
A8TX���F�B�D �A(�D0_
(D ABBG����>fH�����B�B�B �B(�A0�A8�D`
8A0A(B BBBHL����~J�E�I �C(�G0q
(F ABBBD(D� A�B�B�@���6A�\
A\���qHM
KxT��FHp
H<�����F�B�B �A(�A0�k
(D BBBG���9E�[
A�,��9E�[
A(P��NE�A�G `
DAF8t��lHi
GW
E$X���iD�A�G WDA8����F�B�A �D(�I@3
(A ABBA8����F�B�D �A(�D@P
(A ABBI�	���fE�S
ED	d��$A�^4	x��>E�m
FDT	���fE�S
ED0t	x���E�A�G g
DAGDDA�	%���fE�S
ED4�	���lF�D�F �n
ABOOFBH
����F�B�E �B(�A0�F8�Gp�
8A0A(B BBBE���mH`
l��lB�E�B �B(�D0�A8�GP�
8F0A(B BBBH@�
����F�B�B �A(�A0�Dp�
0A(A BBBGL�
���=B�E�B �B(�D0�A8�G��
8A0A(B BBBG@@����F�E�H �A(�D0�DPw
0A(A BBBA(�X���E�I�D@W
AAE8�����F�E�G �A(�GPv
(A ABBJ4�����zF�F�D �N
DBEIAB($X���E�D�G0w
AAG(P���@E�A�DP�
AAJH|��F�B�B �E(�D0�A8�Fp�
8A0A(B BBBCR����H�����F�B�E �E(�A0�A8�F`�
8A0A(B BBBD zRx�`������(c���i(`
���M�H�A ��AIGNU�p000 � p`2@2�0n}��H
�o� � ���o`��
�� p��(	���op���o�o����o�� ��������    0 @ P ` p � � � � � � � � !! !0!@!P!`!p!�!�!�!�!�!�!�!�!"" "0"@"P"`"p"�"�"�"�"�"�"�"�"## #0#@#P#`#p#�#�#�#�#�#�#�#�#$$ $0$@$P$`$p$�$�$�$�$�$�$�$�$%%GA$3a1H�oGA$3p1094�*�oGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*GOW*��,�.GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�,�0GA+GLIBCXX_ASSERTIONSGA*�,�.GA*GA*GA!stringio.so-2.7.8-141.el8.x86_64.debug��f�7zXZ�ִF!t/��o:]?�E�h=��ڊ�2N�\�. ��ۢ���jf��y�򸗨��FV�%v��E����Vkk�,N�s5��K^fЬ��KX��w<~�+p��p(%�0#�Np����(8¿ܱ��h^�o�JQa��˃���"��kY(�a
���Q�8���#�n�:�|:d����T����	pL�#�z(���Eu�>�\�ؿ�S���mj��Q:�lY�=��U@=� ��R%��9C��O�+�&,�T�n���%Xm��B���TV�_��rw���v?�5$gJ<)��X�.J����n~\��u0&��pqRߔ�*H���?���]�g�(��eD{W��I�G���H��4p�=�a ���k�/�\Q�h	5{3��t:0�r�Cũ���s~�g
�Y5l:��K�ih�,�X�m���.$vC��9נ�q좴qu}p��>I����c|1}ю�})0N<I�o��lNFǟT��n#�2��E��۾PV��Mٸ
�u�J'�,1C���B3��_z��ܨ�kp[ye��8�f�&��vOu×ܯn #iie�Zc�E��XUf�|®#Ȃ���������ˆ/����(q���?��09GH�^����1e�*^�u�Sî�اZ"��p��px=b�,�z��j! 4˴��<�-��0P�z>�����S\�y	�:����-���Sn*�Y���نX��t�Ɠ%s�?�Ka"I~||Wnlh�<Y�:���Vw��ܝ����5.�<_���5�5-A�j��#��%xy�mtE�oU�#���i<�`��+^�VV����lf��C��S��뼣l�`$f�m���RZ�т�����u[T�A?��;�ֆ����a9(��:�_r}������Oa�@GQ��m�Ӈٕb��t��A���_,R���Ջ6Ɠ���3�F��J�*Y$�
��8�Ty�r�g���^�fVR��C������W;m���,!͠��vZL#M�7�%�6ә
�Y��8�<˶G�A7B��=4{�w*~������NO��J�Y�=��-}F<�g�C�;�f'�9�m~_~��Vj�Q+UJ�R�����4<i�}�m�@>�;�r�*�����5���Д��K��C�¬(_X�j��x}�.%���l(щa�VS�v6E��#-�����b�Z�A�jrg����!iŀi>,�A0f��z�lk�_��y�3���2�e�=V0r��A5�2Q�>X��M�(l��h��j�.C��7R�+�qb��±w#g{�P���4j�+f6����;C_(����$��M$�V�*�Y�VI�“"g7�<�F<��/~I�(��9u�_9v�����q~�B�c[G�����9�`T�_�u���J�6f��+1�.kQ���L���M,�(��.L��@.��/(���))�������!�
ڲv�h��7��%.1\�!á��U�j��#���U������8��,��$u!�4���^5*��u@S�L�~��(x��M�\�*�u���s���m|�.�$�ޛ��us�YB��n{K�S���4��g��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(�� 
0���8���o���E���opp@T��(^B��phHHcpp�n % %�w�*�*�D}�o�o
�2�o�oH�vv���x�x�
�0�0� �� ��� �� �  �h ��� ����x� x���� ���� �X�@�`�L
4�,`�|ܜ+PKLH[~����r�rlib64/ruby/strscan.sonuȯ��ELF>P@�k@8	@�P�P P]P] P] �� �]�] �] ��888$$`P`P`P  S�td`P`P`P  P�td�E�E�E��Q�tdR�tdP]P] P] ��GNU˃5S�[�48�I�e�}b��p�G�@`GJV`TdBE���|�qXF� Thp��D��������|�U��_�f��� )"�q�;�&��"8"N�;�(.�����J��, �F"n�c��{Y�:�eb x0b lb __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_check_typeddataonig_region_memsizeonig_region_freeruby_xfreerb_gc_markrb_str_newrb_enc_copyrb_ary_new_caparb_ary_pushrb_eArgErrorrb_raiserb_num2longrb_enc_getonig_name_to_backref_numberrb_eIndexErrorrb_enc_raiserb_sym2strrb_out_of_intrb_warningonig_region_clearonig_region_setrb_enc_mbclenrb_string_valuerb_num2intrb_fix2intrb_eRangeErrorrb_reg_region_copy__stack_chk_failrb_memerrorrb_keyword_given_prb_check_hash_typerb_get_kwargsrb_free_tmp_bufferrb_error_arityrb_empty_keyword_given_prb_intern2rb_data_typed_object_zalloconig_region_initrb_str_catrb_str_dumprb_str_new_staticrb_obj_classrb_sprintfrb_funcallvrb_str_lengthrb_str_appendrb_enc_checkmemcmprb_check_typerb_reg_prepare_reonig_searchonig_freeonig_matchInit_strscanrb_internrb_cObjectrb_define_classrb_eStandardErrorrb_define_class_underrb_const_definedrb_obj_freezerb_const_setrb_define_alloc_funcrb_aliasrb_define_methodrb_define_singleton_methodrb_define_private_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64[ui	}ii
�P] X] �`] `] �] �C�] ��] ��] `�_ �_ �_ �_ !�_ 1�_ =�_ >�_ ?�_ @`  ` (` 0` 8` @` H` 	P` 
X` `` h` 
p` x` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �` �`  a "a #a $a % a &(a '0a (8a )@a *Ha +Pa ,Xa -`a .ha /pa 0xa 2�a 3�a 4�a 5�a 6�a 7�a 8�a 9�a :�a ;�a <�a @�a A�a B�a C�a D�a Eb F��H��H�aI H��t��H����5�I �%�I ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=���������%�E D���%�E D���%�E D���%�E D���%}E D���%uE D���%mE D���%eE D���%]E D���%UE D���%ME D���%EE D���%=E D���%5E D���%-E D���%%E D���%E D���%E D���%
E D���%E D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%�D D���%}D D���%uD D���%mD D���%eD D���%]D D���%UD D���%MD D���%ED D���%=D D���%5D D���%-D D���%%D D���%D D���%D D���%
D D���%D D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D���%�C D�k���f.��H�=�C H��C H9�tH�>A H��t	�����H�=qC H�5jC H)�H��H��H��?H�H�tH�%A H��t��fD�����=-C u+UH�=A H��tH�=n> ����d����C ]������w������H������H��H�5A> �\����x@H�H��H�Ѓ��f.���H��H�� �/���H��H��0�fD��S1�H��H� ����H��[���@��H�����USH��L�OI��� uNH�����H9�|/H9�HN�I��H��H)�H��I�<1H������H�uH��H���^���H��H��[]�@I�I�H9�|�H9�M�IHO�H)��f�UI��SH��H�OH��� uKH�����I��H9�|,I)�I9�IN�H��H��H��J�<	�Z���H�uH��H������H��H��[]ÐH�q�L9�|�L)�H�IH9�HO��f���AUH�5�< ATUSH������H�x��H��A��tiHcx$H�����I�ă�~U�E��L�,�f�H�C0H�K(�{@H�(H�4)H�CuH�H�H��H���t���L��H���9���I9�u�H��L��[]A\A]�H��> H�58 H�81�����ff.���AUATUSH��H�5�; H������H�x��H��tP��t[��ud�؃���t,H��t&���&H��4t����������	H������H���$H���[]A\A]�H�����uW��t�H�HcU$H��yH�x�H9�~�H�U(H�4�H���t�H�U0�}@H�EH��uH�H�H��H��[]A\A]�D���@�����uvH�}8�{���L�#A�� uI��L�kA��H������H�M K�T%L��H��H�E8H�x�����[Ic�I9�uwH�= M��D��H��H��H�01��R���f���� ���H�����H���q����L�kL�c�fDHc�HcU$����H��< H�5fH�81��<���L���$���@��USH��H�5 : H���7���H�HH����H���tiH�H�H�u�� t"H�QH9�}%H)�H��H9�HO�H��[]����H����H9�|�1�H�=I ����H�uH��H�����H��H��[]�DH��� ���H�MH���H��; H�5�H�81��o���ff.�@��U1�H��SH��H�=�H���R���H��H��H��[]�����UH�o SH��H��H���{����{@H�KtH�SH��H��1�[]���D+KH��H��1�[1�]������SH�5�8 ���H�pH����H��H�H�H�KH��H��� tHH�VH9�}KH��H�KH��H��H�H�K�T���H�C0�{@H�u/H�sH�C(H��[H�H0���H����H9�|��[�DH�C(H��[H�0�h���H��: H�5JH�81�� �����S1�H��H�=�����H��[�!������SH�5�7 ����H�xH���
H��H� �H�PH��� ��H�GH9�����H�KH�1�� ��H��H�y��H�H��H{�[���H�KH�H��� ��H����H�KH��H)�H�KH9�HO�H�H�H�S����H�C0�{@H�uPH�sH�C(H��[H�H0�Y���f�H����H9��S����[�f�H�yH�q�Y���H�C(H��[H�0����H�Q�e���H�@9 H�5�H�81���ff.�@��SH��H�t$H�5�6 ��H�|$H���i�H�D$H�CH�#�H�CH��[�ff.���UH��H�5Q6 SH���g�H�x��H���H��uA��H�KH�H�H�ց� H��x5H��u`H����H9�|5H�CH��H�H�D[]�f�����f�H��u;H����H�y�H�8 H�5�H�81����H�Q�f.�H�QH�y���H��7 H�5�H�81��}�ff.�f���UH��SH��(H�t$H�5W5 dH�%(H�D$1��b�H�|$H�565 H���N�H9�tBH�H�p H�{ H�H�PH�SH�PH�SH�PH�S��������H�D$H�D$H�D$H�L$dH3%(H��uH��([]��X����AVAUI��H�5�4 ATUH��S��H��H�� dH�%(H�D$1���I����H�D$�������I�EH�$����A�L�����H��H����H��8 H����1�H�t$L�D$H�߹H�D$�N�H�T$1�H��4t
H�������A�D$@H�����H�$I�D$H��H�L$dH3%(��H�� []A\A]A^�DM�u���Z���H�|$t
H�|$�I�����(��A�D$@�����~�I�UH�D$A�H�$��u?H�������H�|$��������H�=���H��7 ���M�u��~��W�����ff.�f���UH��2 �HSH���E�H�X H��H�#�H�{ ���H�CH��H��[]�ff.�@H�H�� urH����H9�~oH)�SH��~<H��twH�H����H�5BH��H����H��[��fDH��tKH�H�H���|�H��H��[��H�GH9��1�H�=���f�H���f.�H���f.���AVH�5�1 AUATUH��S���H�xH����H��H�PH��� ��H�GH9���H����H���$1�1���H�S1�I��H�CH�pH� tH�pH�L����L����H�sH�{I�����I��H�CH��� �H����I��H�[H����M��M��L��H��H��[1�]H�=A\A]A^�,�@H����H9��A���H����[H�=�]H��A\1�A]A^���1��	���I��H�CH��� tjL�`H�[H���z�M��L��H�=�H��H��[1�]A\A]A^����H�=<����I��H�CH�H�����f.�H����I���@L�`����H����[H�=�]H��A\1�A]A^�/�ff.�@PXH�5�H��H�<2 H�81����f���H��H�5�/ ���H�HH��t3H�H�p�� tH�Q�H9�}H)�H�DH���H���������f.���S1�H��H�=7�Z�H��[�@��H��H�51/ �L�H�xt��t	HcP$H�TH��H����%���D��H��H�5�. ��H�xt'��tH�P0H�@(H�+Hc�H�TH��H�������f���H��H�5�. ��H�xtH����HE�H������ff.����H��H�5a. �|�H�PH��t3H�HH��� tH�BH9���HL�H���@H�������:���f.���H��H�5. ��H�PH��t3H�HH��� tH�BH9���HL�H���@H����������f.���S1�H��H�=���H��[�@��H��H�5�- ��H�HH��thH�pH�H�ǁ� t@H�Q�H9�&�H��tH��u3H���|1�
��HE�H����H����H���@H�I���%���D��SH�5�, H����H�xtH���t,H�HH��H�H�HH��[�H�2/ H�5�H�81���H�=J1 H�51���ff.����H��H�5�, ��H�xtH�@H��H�D����f���H��H�5Q, �l�H�@H��tH����X������SH�5$, H���<�H�HH��t6H��� tH�QH� �H�PH��[�f�H��H� ���H�PH��[�������S1�H��H�=O���H��[�@��SH�5�+ H����H�xtH�@H� �H��[����ff.�@��H��H�5a+ �|�H�HH��tL�t=H��� t%H�QH�H0�x@H�1H�HuH�H��H���Q��H��������H����!������H��H�5�* ��H�xtG�t8H�P(�x@H�HH�t1�H��H������H�1�H��H�������H������f���H��H�5�* ��H�xtO�t@H�P0H�p(�x@H�HH�H�6tH��H���|�@H�H�H��H���f�fD�H����A������UH�5* SH���*�H��H�@H��t`H�H�s�� t!H�PH9�}$H��H��[]�
�f.�H����H9�|�1�H�=I��H�sH��H����H��H��[]�������AULc�H��ATI��USH��H�5s) H����H�xtP��t8L����H��M��~(N�,�DH�3L��H���1�H��H���&�L9�u�H��H��[]A\A]��.���ff.���H��(H�5�( dH�%(H�D$1���H�xH��tGHc@H�5_- �H��H�$H�DH�D$�H�H���@�H�T$dH3%(u
H��(���������USH��H��H�t$H�5g( ��H�xt%H��H�|$�.�H�}H�t$���H��H��[]��Q����AWAVAUE��ATA��U��SH��H��H��H�t$E����@��uH�����tH�����t
H�|$���H��H�5�' ���H�xH��H���^H� �H��� �H�GH;C�$H�D$�uH�����t�������H����H�SH�H���� ��H����H�t$L�CL�.L)�A�� ��I��H��A��L9���H�zH��tH�zL�L��������L�s L���c�1�1�1�L�������H�C0���{@��L�(H�sH�H�sE��t
H�H�H�SH�H�D��t:H���]�H��[]A\A]A^A_�fDH����H;C�����H��[]A\A]A^A_�@H�B����L�nL9�|�H�v����fD����O����H�SH�K(I�H�L�(H�sH�H�sE��tH�H�SH�H)��>���@�K@H�sH�H�sE��tH���������fD��u������H�C8H��H�����I��H�D$L�xM9���H�CL�C �{@H�KH�E������ ��H��H�p��H�H�@��uH��H��M��L��I��j��I��XZH�D$H�P M9���H��tnL���v�I�����M�������H�C0�K@����fD�� ucH��H�p��H�H�@��HD�E1�L���X�I���H�@ �*���fDH�x��H�D$L�p�@H��H�P �u���H�pH�PH�H�@��HD�랐H�pH�PH�H�@����������H��& H�5vH�81��L�H�=�( H�5�
1��7����H��������H���������E1�������f.���E1��1����ff.�f���E1�1�1������E1�1ɺ���ff.�f���E1����j���f.���H������A���H������������7������A��1�����f.���A�1�1����ff.�f���A�1ɺ����f.���A���������UH�=.	SH���Z�H�='	H���K�H��$ H�=	H�>' H�3�^�H��$ H�5�H��H�.' H���H�;H��H�' �|����\�H�=�����H��H�����H�=����H�=�& H��H���J��H�=����H��H�����H�=���H�=�& H��H����H�=�& H�5���
�H�=~& �����H�
�H�5U��H�=_& �H�;�H�5A�o�H�=@& 1�H�/�H�55���H�=$& 1�H����H�5(��H�=& 1�H�'���H�5��H�=�% 1�H�k���H�5��H�=�% 1�H���H�5��c�H�=�% �H�P�H�5��D�H�=�% �H�a���H�5��%�H�=v% �H�B���H�5���H�=W% 1�H��H�5�����H�=;% �H�'�H�5k����H�=% 1�H�k���H�5T���H�=% 1�H���H�5@���H�=�$ �H���H�5)�t��H�=�$ �H����H�5��U��H�=�$ �H����H�5��6��H�=�$ �H�����H�5����H�=h$ �H�T���H�5����H�=I$ �H����H�5�����H�=*$ �H����H�5����H�=$ �H�����H�5����H�=�# �H�X���H�5l�|��H�=�# �H����H�5T�]��H�=�# �H����H�5A�>��H�=�# 1�H���H�51�"��H�=s# 1�H���H�5���H�=W# 1�H���H�5����H�=;# �H�W�H�5�����H�=# �H��H�5����H�=�" 1�H�L�H�5����H�=�" 1�H���H�5��t��H�=����H�=�H�����H�=�" H��H�����H�=�" 1�H���H�5z�+��H�=|" 1�H��H�5c���H�=`" 1�H�?�H�5N����H�=D" 1�H���H�58����H�=(" 1�H���H�5%���H�=" 1�H�[�H�5���H�=�! �H�<�H�5����H�=�! 1�H� �H�5��d��H�=�! 1�H���H�5��H��H�=�! 1�H���H�5��,��H�=}! 1�H����H�5����H�=a! �����H��H�5�����H�=B! 1�H�q�H�5����H�=&! 1�H���H�5h���H�=
! 1�H���H�5V���H�=�  1�H�]�H�5C���H�=�  H��1�[H����H�5*]�_���H��  H�;H����������H��H���uninitialized StringScanner objectundefined group name reference: %.*sStringScanner#peep is obsolete; use #peek insteadStringScanner#getbyte is obsolete; use #get_byte insteadStringScanner#restsize is obsolete; use #rest_size insteadStringScanner#empty? is obsolete; use #eos? insteadunscan failed: previous match record not existStringScanner#clear is obsolete; use #terminate insteadindex out of rangefixed_anchor...#<%li (uninitialized)>#<%li fin>#<%li %ld/%ld @ %li>#<%li %ld/%ld %li @ %li>regexp buffer overflowScanErrorbytesliceStringScanner1.0.3Version$Id$Idinitializeinitialize_copymust_C_versionresetterminateclearstringstring=concat<<pos=charpospointerpointer=skipmatch?checkscan_fullscan_untilskip_untilexist?check_untilsearch_fullgetchget_bytegetbytepeekpeepunscanbeginning_of_line?bol?eos?empty?rest?matched?matchedmatched_size[]pre_matchpost_matchcapturesvalues_atrestrest_sizerestsizeinspectfixed_anchor?;�<������,���8|��D���X���p��������������������L����|����������0���\���x,��|��l���L���<�������T�p|��������,��l����,�4L�P��lL��|�������,�l���@L�h���L����	\� 	��L	��	���	���	�	,�
L�$
|�8
��L
��`
��t
��
zRx�$����FJw�?:*3$"D����\0��p,��&HW�D��HM�L��E�R�P��
(�L��~A�A�D P
DAE(����~A�D�D P
DAB8(����F�I�A �A(�D0�
(D ABBALd����F�B�A �A(�N0l
(F ABBAN
(D ABBI4����E�A�N D
AAFm
DAF$����/E�F�N IGA0���MA�E�J W
FAJGFC(H����E�p
KR
FH
HtX��E�U(�\��AE��
TV
JX
H����BE�D wA(�����E�K�D P
HAC(t���E�D�D@�
AAAzRx�@�� l��@d����F�B�L �A(�D0�IP�
0A(A BBBF$�T��AE�M�D hAA$�|���^�w
�K[�e�p���F�I�B �A(�D0��
(C IBBIY
(H EDBLz
(C BBBMY(H EDBl��AAK���VH|
D���E�U���;Hm
A��GHy
A�D�4Hf
Ah�VH{
E0��VH{
EL��E�Uh���H`
H�h�dE�q
A���.H[
F���(HZ
A ���YE�q
JS
A� �E�U$�1E�f
A 4H�oHB
FY
A$X��gHr
FL
LI
A$���oHw
IM
KI
A4�$��E�H�D k
DAOm
DAA8�|��F�H�D �A(�N0R
(D ABBA��H0l
A(84�OE�A�G0w
DAApdX��B�B�B �E(�D0�C8�JPk
8A0A(B BBBGa
8A0A(B BBBEXK`IXAP���&����(�< �)P<�dH�xT��`�(�l��E�H�D �
COLGNU��`] �C��`BQ[�`
�AP] X] ���o`�	�
�` ���	���o����o�oJ���o�] ������� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`GA$3a1`�AGA$3p1094P�AGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY �AGA+GLIBCXX_ASSERTIONSstrscan.so-2.7.8-141.el8.x86_64.debug��m�7zXZ�ִF!t/��_�]?�E�h=��ڊ�2N�aY�tg1u���W�J�p�c
��⺞=�1N���K\�dⷰX�J�y"�Нݬ_��5���{v���T_*j�̷L���iokЏ���RUqsl9�#���O�%N�B�����.�{��[��3�;�c�)�����IB���x&Z�$a�㼟1��.Ȭk�D,*n�6|��Ɔ��Y�<����;+��Ə��A�3��i�@4���e����g���|�%^�CM&�K<�����l��C��8�	m�����35��3�8]��}8���d��D��ܶ���:�T�p����e�s�@��|yQ�:ΊӇ#6�8x\���AY�T\n"��;�]3ubJ+�R�h7���r�9�|Q1�樱�s�zN��+���'�uϾ��ާ�P��$���C�G
y��{\n��C�\R��4���[��=�sGE˯�ϻ$V���5�F�Wh�k�m��=1�b�R�����ΓϟM�����'�nq��\�
}J/Ԇ�Zu|0�=	�Pꛏ�aվ��[p�>C¨>{Xp.���ю~��wu�Džf<x,���=qİ�a/�;�,e������(�S��|sހ��^�tԝe�}ٔTd/�@C�=\%4A�;��*�w�2W?���[�8c|������T����w�x�de����:]��OPο�w����ཫwa�PQLN��Ҏ��:N�fy!��o4��ҏ��]M���N��ؚl1C}�.�^K9#��9�N���A[�c8x��?�z�{F�I�6mV��NT���	�W�>��C@�#�/�U�Z�C4Yj8P,��p0,���ya����=r��X�c&����Ժb��~i�c�1�s1Y��N�P���f�3玽7�3_����(?A�MB��3r������f;�^�����#$4I�/�o��^+��=뻓��D4Pp��X�*��P}�l����wc�Ƙ�h���1#�̄
,^#��̯FE7y)���k[�	�ի��['���,�q&�N@���D� z2�tLO���Y1����<�K^.���$d-dUW��~�G��_�s4�O�j�>����|�G�w��,p�x�S_=K��d:_��5_W,�t�\1l��r�1�4�K�]���6Ú�{:�߁��'#���S�D��2"�?X�l�Q���Rj.V�p���7���({,^��g	�t���j��l]:1���e����N�\8�ᢽGc�]�����ޕ���f���r�8�|G�+e���%�nCc$����^�R����벀ly�!p��;8�N[���Sj�`�;�7E��ׇ���}ԇ���s��(�42��j�:ؾ��,���9Pڃ����>�#���%��,�sD�XAO���1*�I(�)q}_�%j�]7�V��,��A%��
WO&Fd�'vx�
���'�e�[-��yW|s�iO��4'����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0�	�	�8���oJJ�E���o��0T�^B���h``c���npp�wPP?#}�A�A
�2�A�A��E�E���G�G��`P`P �P] P]�X] X]�`] `]h ��] �]���_ �_H�` `�b b(�0b`bD
Ld,xd�j+PKLH[1��0�0�lib64/ruby/fiddle.sonuȯ��ELF>�5@�@8	@�� �� �  � ���� �� 888$$���  S�td���  P�tdЁЁЁ<<Q�tdR�td�� � ��GNU��5cB�[}ډ�����xPx���B@(�@*4xy|}����������O� �>=~@��v��6��qX�d�>Ĭ
����9��|}9ҝ���BE��@��
��Z0F��p��`�e�Gc[29uM_� }C+��j��E����;�V� ���^R���u�����i�^G[��K�(;�xU ���������0;��u�S�*"�U"gib|,�*�,�"c�F���K4l�n�;�, {o��F"���@�����Dc���� ��[�PE��0v<]0� ��C��� Hw@[Wi�� t@� H�BrV0� bPIm��� 
�� ��a�$�G?��B��� �� 3 H i�� __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeffi_raw_sizemunmapruby_xfreeclosure_data_typerb_check_typeddatarb_int2bigrb_data_typed_object_zallocmmaprb_keyword_given_prb_check_typeruby_xcallocrb_fix2intint_to_ffi_typerb_num2intrb_free_tmp_bufferrb_error_arityrb_iv_setffi_prep_cifffi_prep_closuremprotectrb_empty_keyword_given_prb_out_of_intrb_eRuntimeErrorrb_raise__stack_chk_failrb_sys_failrb_iv_getrb_ary_tmp_newmFiddlerb_const_getrb_float_newrb_ary_pushrb_funcallvrb_ll2inumrb_uint2bigrb_ull2inumrb_intern2rb_ary_detransientrb_num2dblrb_num2longrb_num2uintrb_num2ulongrb_num2ullrb_num2llruby_thread_has_gvl_prb_thread_call_with_gvlInit_fiddle_closurerb_cObjectrb_define_class_undercFiddleClosurerb_define_alloc_funcrb_define_methodffi_type_sint64ffi_type_uint64ffi_type_floatffi_type_voidffi_type_pointerffi_type_uint8ffi_type_uint16ffi_type_uint32ffi_type_doubleffi_type_sint8ffi_type_sint16ffi_type_sint32value_to_genericrb_Integergeneric_to_valuerb_fiddle_freerb_fiddle_ptr2valueruby_xreallocruby_xmallocInit_fiddlerb_define_modulerb_eStandardErrorrb_eFiddleErrorrb_define_constrb_str_new_staticInit_fiddle_functionInit_fiddle_handleInit_fiddle_pointerrb_define_module_functionfunction_data_typerb_cFalseClassrb_thread_call_without_gvl__errno_locationrb_alloc_tmp_bufferrb_cIntegerrb_cFloatrb_cTrueClassrb_cSymbolrb_eTypeErrorffi_callrb_id2symrb_eArgErrorrb_ary_subseqrb_ary_storerb_extract_keywordsrb_hash_foreachrb_check_hash_typerb_freeze_singleton_classrb_alloc_tmp_buffer_with_countrb_hash_newrb_warnrb_fiddle_new_functioncFiddleFunctionrb_class_new_instancedlcloserb_string_value_cstrdlerrordlsymdlopenrb_block_given_prb_yieldrb_ensurerb_cHandlerb_define_singleton_methodrb_gc_markrb_str_newrb_obj_classrb_sprintfrb_ary_newrb_cPointerrb_cIOrb_obj_is_kind_ofrb_io_taint_checkrb_io_check_closedrb_io_stdio_filerb_cStringrb_string_value_ptrrb_check_funcallmemcpyrb_str_new_cstrmemsetrb_internlibruby.so.2.7libdl.so.2libffi.so.6libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4/opt/alt/ruby27/lib64+ ui	nL���zii
�ui	n� �6� �6 �  � @� zP� 7X� �6�� 0~�� �M�� �M� ��� �\� @\`� c�h� �dp� �dx� �c�� �� Ȟ xО ؞ �� � � �� � � � � ~ � �(� �0�  8� #@� &H� )P� ,X� �`� �h� 0p� 2x� 4�� 6�� 7�� ��� ?�� A�� ��� Q�� S�� `ȟ �П f؟ g� j� k� w�  � (� 0� }8� @� H� 	P� 
X� `� h� 
p� x� y�� �� z�� �� �� �� �� �� �� Ƞ Р ؠ �  � !� "�� $� %� �� '� ( � *(� +0� �8� {@� -H� .P� /X� 1`� 3h� 5p� 8x� 9�� :�� ;�� <�� =�� >�� @�� B�� C�� Dȡ EС Fء G� H� I� J�� K� L� M� N� O � P(� R0� �8� T@� UH� VP� WX� X`� Yh� Zp� [x� \�� ]�� ^�� _�� a�� b�� c�� d�� e�� hȢ iТ kآ l� m� n� o�� p� q� r� s� t � u(� v��H��H�Av H��t��H����5�v �%�v ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb��������%�p D���%�p D���%}p D���%up D���%mp D���%ep D���%]p D���%Up D���%Mp D���%Ep D���%=p D���%5p D���%-p D���%%p D���%p D���%p D���%
p D���%p D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%�o D���%}o D���%uo D���%mo D���%eo D���%]o D���%Uo D���%Mo D���%Eo D���%=o D���%5o D���%-o D���%%o D���%o D���%o D���%
o D���%o D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%�n D���%}n D���%un D���%mn D���%en D���%]n D���%Un D���%Mn D���%En D���%=n D���%5n D���%-n D���%%n D���%n D���%n D���%
n D���%n D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%�m D���%}m DH�=YI1������E!1�H�=I�����H�D$p� H�=�I1�����s�M���$!H�D$pH�L$xM���1�H�=qH���H�D$p� f.�H�=�l H��l H9�tH��h H��t	�����H�=�l H�5�l H)�H��H��H��?H�H�tH�Ei H��t��fD�����=�l u+UH�=2i H��tH�=^d �)����d����]l ]������w������H��H�����H��H��x�fD��SH��H��0����H�{8H��t����H��[������H��H�5h �,���H�8H�@H�x
H�D?H���H���������U�@SH��H��g �u���E1�A�����1�H�h �"�H�þ0���H�EH��H��[]Ð��AWAVAUATI��U��SH��HH�T$dH�%(H�D$81�����H�D$0�������I�$I�\$H�D$����H�D$ �H������L�#A�� �I��A��Ic�D�d$,L9���H�5�f H�|$���A�|$�Hc�H�����H�E8E����A�D$�E1�L�,�H�CH�D$�/�H�D$J�<8@��t6�����L�u8���M�I��I�M9�tbH� u�H�C J�<8@��u��v�������f�I�D$H�D$ ������H�|$0t
H�|$0�����������f.�H�E8HcT$,L�|$L�mH�5@L�t$H��L��L������L��H��H�5�?���H�]L�}8L��A�������������H�|$ H�D$@�������H�L$��M��D��L���������&H�L$H��L��H���o���H�]�H�߾0A���������
E���H�L$8dH3%(H�D$��H��H[]A\A]A^A_�DL�c����H�|$ ����H�L$���V���f�H�|$�����������������}���I�$H�D$0I�\$H�T$��t2I�T$H�T$ ���R���H���a���H�|$0�����R����H���9���H�|$0����*���L������H��d H�5m>H�81�������H�=m>����H�~d D��H�5`>H�81���f.���AWH�5>AVI��AUATUSH��HdH�%(H�D$81�H�GH��I��H�D$���L��H�5�=H�����H�;H�$�� ��H����Hc�A��H9����P�H�5ag H�D$ H���H�,c H�8�l���H�D$E����H�D$0E1�H�->H�D$f.�H�CH� uH�C J�<�N�$�@�����$����H����HcT�H�>��DI�FJ� ����H�|$ H�����f.�I��E9��H�\$ H���t�� ��H�5lf H�[ H����H�|$H��D������H��H�D$ H�D$(H�<$H�D$ @�����r����H���WH�?=Hc�H�>��DI�Ff�J� �Z����H�|$ H�������I���f�I�FJ� H�8�0�H�|$ H���������fDI�FJ� H�8H�@H���H�t?H�|$ �k������fDI�FH�|$ J� Hc0H�t6�F�������I�FH�|$ J� H�0H�t6�%������I�FJ� H�0H�t6�DI�FJ� H�8H�@H��H�D?H�5�d H�D$0H����H�|$H�L$���H�|$ H������*���f.�A�������I�FH�|$ J� �0H�t6�v������I�FH�|$ J� �0H�t6�V��������I�FH�|$ J� �0H�t6�7������f�I�FJ� H�8H��������?H9��������H�����DI�FJ� H�8�0���H�|$ H������^���fD�3��
���fDH�{�k����H�5�c H��H���]����H�=Z:���H��H��c �=���I�n����H�H�]1�H�\$8dH3%(��H��H[]A\A]A^A_�H�<$���(���f.��H�=�9�/���H��H�5c �@����H�=�9����H��H�c ����H����H��|����K�H���^����;����I�nH������E�@���H�����I�Ff���Z���#���I�n������H����H������H�߃�ut���I�VH�H��������H�I�VH�����H����I�V��H����I�n�������H�����H�����I�nH�����H�E����U�늉�H��^ H�5�8H�81����H���!�H���U���H���q�H���j����D�����H�F^ H�5f8H�81���D��H��8dH�%(H�D$(1�H�<$H�t$H�T$H�L$���t$H�����H�D$(dH3%(uH��8��H��H�=n���������f���H��\ SH�5�7H�H�] H�8��H�,] H�5M���H��H��B�H�;�����H�����H�5�7��H�;1�[H���H�5�7�n�f.�@�����y��1Ƀ���H�8��Hc�H�>����tH��\ �@H��\ ��H�i\ ��H��[ ��H�q\ ����u<H�-\ �@��u<H��[ �@��u<H�U\ �@H��[ ��H��[ ��H�1\ ��H��[ �PH�P\ ��H�5#7H�81���ff.�f����OS����L�(7H��Ic�L�>��H���@�H�[�H�����[�f.�@���6H�H�3[�fDH�����[�@H����f�[�H�����[�@H���P����H��H�������/���H���������DH����th����@���X���H����H���K���fD@���8���H����H���+���fDH����f���Z��[�f��������@������fD�{������@H�������H����H�����H��Z ��H�5\5H�81����fD��ATUSH��H�� dH�%(H�D$1�@��tK��H�5�] ��H��tKH��Y H�8����UI�ă���H�
_5Hc�H�>��f���H�5�] ��H��u��H�=�3�L�H��H�j] �H�\$�D$��H�\$dH3%(��H�� []A\�H���8���fDH��������?H9���H���U��H�H�����H!�H��H���fDH�%��H��끐H�%�H���n���fD��^���fDH�@H��H�DH�5�\ H�D$H����H�L$�L���	�����@H��H�D����f�Hc�H�D��H�@H���H�D����H��H�D����f�H���X�����\$fnD$�Z��������H�=R2��H��H��[ �E���H�)X ��H�5�2H�81��f�fDH������C���H����������f.�@��H��H����tH����H���fD���H�����H��Ð��@��tH��H���H������UH��SH��@��t=H��H�@��tBH��H�H�����H�@H�x4H��H�D[]��H���8�H��@��u�H���'�H���f�H��H��[]���f���H��H����t(H��(�H�@H�x!H�DH�������H����fDH��H���|�ff.����H�@H�x
H�D6��H���H����SH�=�1�/�H�HV H��U H�5�1H��H�H���H�=U H�;H�5�1H����H�;�H�5�1��H�;�H�5�1�v�H�;�H�5�1�b�H�;�	H�5�1�N�H�;�H�5�1�:�H�;�
H�51�&�H�;�H�5z1��H�;�H�5q1��H�;H�����H�5g1���H�;�H�5_1���H�;�H�5X1��H�;�H�5S1��H�;H�����H�5K1��H�;�H�5F1��H�;�H�5>1�n�H�;�H�551�Z�H�;�	H�5-1�F�H�;�H�5#1�2�H�;�H�51��H�;�	H�51�
�H�;�H�51��H�;�H�51���H�;�H�51���H�;�H�5�0��H�;�H�5�0��H�;�H�5�0��H�;1�H�5�0��H�;�H�5�0�m�H�;�H�5�0�Y�H�;�H�5�0�E�H�;�	H�5�0�1�H�;�H�5�0��H�;�H�5�0�	�H�;�	H�5�0��H�;�H�5�0���H�;�H�5�0���H�;�H�5�0��H�;�H�5�0��H�;�H�5�0��H�;�H�5�0�}�H�=fR H�@H���H�T?H�;H�5~0�O��H�=w0��H�;H�5u0H���,�H�;�H�����H�5k0��H�;H��R �H�5W0��H�;�H�g���H�5E0�k�H�;�H����H�510�P�H�;H�NQ �H�50�5�������[�����H���%�����H���3�H��H�� �f.���SH��H�H��t��H��[�����Uf�H��AWA��H��AVAUATSH��H��H�u�H�5�/H��P���dH�%(H�E�1�)E�)E�H�E��%�H�5%+H��H��H�����H�5�T H��H���lH��P H�8���H��`���E���#L�#A�� �mH�CH��p���H��p���Hc�H9��D;�p�����H�53P H��P�����A�wHc�H�p���H�E�H��H�����H��H��H�E�H��H���H)�H���H9�tH��H��$�H9�u�%��H�E�L�l$H��@���I���H��p���I�D�H�E�E����A�G�E1�L��x���H��H�E�H�E�H��X���H�CH��h����W�H��h���H�M�J�< N�,!��I�ǃ�tXH��x���L��D��N�4 L�����H�U�N�4"I��L;e���H� u�H�C �f�I��A��L��p������@I����A����A����D������I���!A���&I�EH9�`���t/H�5�R L�m�H���H��X���H��`�����>�I��L�����I������A���M��u�H��N H���H�E�H��p���H��H��H�����&H�H�u�1�1�H�E�H�=��������H�5/R HcH�DH�E�H����H��M H��X����H�8��H��@����S�H��P���H�5O,���H�u�H������H�]�dH3%(�"H�e�[A\A]A^A_]�f��H�=(�o�H��H��Q ����H�E�H��H��@����=�I�����D�H�=�'�/�H��H�eQ �t����H�=�+��H��H�5Q ����H��H�����������H��M H��&���f�H)�H�L����f�H��L H�����H�]�H��X����\���H�M H�����H�JM H�����H��p���D���‰�������H�L D��H�5i+H�81��/��H��������H��H�WH�OH�wH�?��1�H���ff.�f���H��K � ���ff.���ATI��UH��SH��H�= P H��t#���H9�u6L��H��H�5c*���[1�]A\�H�=Q*���H��H��O �H�<L H��H�5/*H�81��X�����AWAVI��AUATUH��S��H��dH�%(H��$�1�H�D$HH�D$pH��$�H�D$PH��$�H�D$XH��$�H�D$`H��$�H�D$hH��$����H�D$xA�Ņ�t1��~���O��������������@�������W�������H�D$xH�����:E1����H�EH�D$HH��$�H��tL�}L�8H��$�H��tL��tH�UH�H��$�����H��tH�H��$��H��tH�t$pH�09���H���xH�\$HH�5�(L��H���A��H���)��H�D$ H�D$H��H�|$`H���p@���>����D$<H�H�DH�D$H�D$H�|$XH�D$`@��������Hc؉�����H�D$0H�DH�\$PH�D$(H��H�D$X�+��L�+A�� �;I��A��L�l$D�l$8H�T$1�H��1����I��H�CH�D$�Xf.�H����H9��H�D$L�$�L��A��tO�)��A��D�����Ic�H�TL9�tH��L�����H��H��� u�H;k��H�C L�$�L��A��u�����A���Hc�H�D���S��H������G��������9��H�D$pH����H�|$p����L�|$pI��M������E��������M����E1������H�EH�L$xL�d$pM��H�D$HH��$�H���������������|����A��u2I�����t)I��ƒ���tH�€�I�I�t����H�T$ H�5&L������H��H�5�!L������H�T$(H�5&L������H�T$L��H�5#&���H�|$hH��tL��H�5M����H��H�5G L��E1�L�c�r���I�ŋD$8�xHc��+��H���4fDH����I9�}LL��J�<�@��t1�2�������J�D�I��H��� u�L;{}H�C J�<�@��u��������DHcD$8H�L$0I��L��T$�t$<H�D��������H��$�dH3%(L����H�ĸ[]A\A]A^A_�fDH�D$�D$<���f�H��t��tL�eL� H��$��H����������@H�CHc�H�D$�D$8H9����������H�xE H�59&H�81��������Hc��;���H���H��H�@H�����H����������H�|$x����y��������D$<H�H�DH�D$���H�L$x����H�L$xH���y���H�|$x�����j����H�D$pH�L$x��������Hc�H�|���~vH��u5������H�|$pt�H�|$p���L�|$pI��M���Q���z��@�s��H�D$p�c���L����������'����H�.E H�5h#H�81��m��H�D$xH�����5�������H�|$x�E1�����oEH��H�����H�=f$H�C1������H�L$x�����H������1Ƀ�������L���H�=*$1�E1����H�L$x���z�����H��(dH�%(H�D$1�H�1D H�T$H�<$�H�H�t$H�����H�L$dH3%(uH��(����f���H�EC SH�5d"H�H�kC H�8�[��H��C �H�5H"H��H��]��H�;�H�56"�I��H�;H�5����z��H�;�����H���H�5����H�;[�����H�����H�5��������fD��H��H�5�? ����xH�H��H�Ѓ��f.���H��H�5q? �����@�H���ff.���H��H�5A? ����@�H���ff.���SH��H�?H��t�S��t�C��uH��[�	��f�����H��[����f�USH��H��H�|$H�t$���H��� ��H��H�����H���
��H��t7H��u2H�@H�xH��H�D[]��H�����H��[]�H�2A H�T$H�5x"H�81��d��@��H������`�����H��H�51> ���H�@H�x
H�DH���H��H�����@��ATI��UH��S��H�� dH�%(H�D$1����H�D$���f���}����H�EH�D$����H�m���DH�|$����������1�H�|$�kH����O����H�߉����H��H���|@���H��tnH��H��? H�5U!H�81��+��H�D$H�|$��s���H�|$������i���H�|$���1�H���@��H��H��t�L��H�5�< �9��H�8H��H��t�P��t�@����H�+H�C�L����uXH�L$dH3%(���H�� []A\�fD�����������H�|$t
H�|$����1������H�=�? L��H�?L���G���D������,���@H�|$����H���H��t����fDH�|$����H����f���������a�����H��H�I? H��; �H�8���H�P H�H�BH���DSH��H�e; �H��H��> H�8�]��H�P H�H�B�u*H�����t"H��у���tH�р�H�xH�t��tH��[�f.�H��H�D$���H�D$��ff.����SH�5�: �O���P��tH�8H������C��u�[�H�l= H�5EH�81��������H�5�H��H�E= H�81������SH��H�5a: �����P��tH�8H��[�i���H�
= H�5nH�81��A�����H�= SH�5^H�H�;= H�8�+��H��= H�5M���H��H��r��H�;�H�����H�5$����H�;�H�x���H�5�����H������@���H�;H�5�H������1��'���H�;H�5�H������H�;�H�5����H�;�H�5����H�;�H�5����H�;�����H�:���H�55���H�;1�H���H�5(���H�;1�H�*���H�5�����H�;�H����H�50����H�;�H�d���H�5����H�;1�H�l���H�5%���H�;1�H�$���H�5�x��H�;1�[H����H�5�_��f.�D��H�GH��(���USH��H����H�o tH��H�H�EH��H��[]�fDH���X��H�EH��H��[]�f.���H�G H�xH�@H�x
H�D?���s����H��H�518 �L��H�8H�H�����ff.�f���H��H�58 ���H�H���@��H��H�5�7 ���H�8H�@H�x
H�D?H���H���������SH��H�?H��tH�CH��t��H��[�<��ff.����SH��H�H��uH�{ H��u[�@�{��H�{ H��t�[�l��ff.����AUI��H�507 ATU��H��SH��dH�%(H�D$1��.��H�8�TI���l��H�$�������#I�]��tCM�m�����؃���u1����H�A����L��H�I$H�������!�؃�����H�I�$H�H�DH�L$dH3%(��H��[]A\A]��c����~H�$I�]��u"H��t�A�H������\���f.�M�m��uGH��u��?���DL���p��H���O����H���X��H���'���H���H��H���H���H�<$tH���!���������H�8 H�5
H�81��H��������AVH�5�5 AUATUH��S���H��L�pL�hH��L� ���M��M��H��L��[H��]H�=_A\1�A]A^���f.���ATI��H�5 5 US��H��H��dH�%(H�D$1�� ��H���h��H�$��t<����tYM�$$����L��A��tl����H�}Hc�����=f������xjH�$uQH��tA�H��������t�H�uH�}����H�L$dH3%(uLH��[]A\��{���f�M�$$��u
H��u��h���H�<$tH������1���� ���k��ff.���UH�54 SH�����H�xH��tQH�@H�x2H�\?����H��H�����H��H��H�ߺ[]�B��f�����H����fDH���[]�@��AWI��AVAUATA��UH��SH��XdH�%(H�D$H1�H�D$H�D$ H�D$0H�D$H�D$8H�D$H�D$@���H�D$(���hE����1�H�]H�\$A��&H�D$H�D$H��t6H�|$(�M���*H�UH�T$A��t�H�UH�T$A���aH��u�H�������H9�HDڨ��H�H��A����L�l$A����I�E1�A��~1L�d$I����L�����I9�MD�L�d$ ���H�I��H��tBL��H�5:2 �U��H�8I��H��tH�@H��t��H�D$ I�\$I�,$I�D$ M�l$M�t$H�L$HdH3%(���H��X[]A\A]A^A_�f.�E1�E1��|���D����E��~QH�D$(���@H�����H������L���X��I�����H�������'���H�D$ ����H�|$(t
H�|$(�����D���A�����ff.����H��H�!1 �(����H�P H�H�BH�BH������SH�5�0 ���H��0 �(H��H��3 H�8�q��H�P H�H�BH�B[����SH�5�0 ���H��0 �(H�H�H�63 H�8���H�P H�H�BH�B[�D��AUATUSH��H��H��H�u3 H�t$H�0���H�����txH�|$���H�hH���
��H�����I��H��2 H��/ �(H�8���H��H�@ L� H�@H�@H��tH�E H�XH��H��[]A\A]��H�A2 H�|$H�0���H��I��t[H�|$�Q��H�T$I��H��� ��L�bH�"2 H�[/ �(H�8���H��H�@ L�(H�@L�`�i���H�5I6 H�|$1�1����H��H��4tRH��1 H��H�0����H���:���H�X1 H�5)H�81�����H����I���`���f�H�|$����H9D$IDܨtH�I�����fDH��������ff.�H�91 SH��H�0�]��H��uH��u1�[�fDH��H�5N. �i��[H��H��0 H�5�H�81�����ff.����AVI��H�5. AUA��H��ATUSH�� dH�%(H�D$1����H�8��I���I��H�D$���A���'I�.I�^A����I�FH�D$A����H�|$����A�������7H����H�H�|$@��u
H�������H�	0 H�0�1��H���8H�D$��;H�H����H�\$�8�H�D$���H�|$uz����H�H���'���I�$�*H�L$dH3%(H����H�� []A\A]A^�@����A�����H�|$t
H�|$�����D�����DH�|$�����������������H�|$�(���+���H�����H������H�����H�����H�����H���1���I�<$H��H��H��������f�H�|$�v��������H���X������H�D. H�5=H�81��{�������fD��ATUH��SH���-���I��H�E H�h��t=H�H�S. H��+ H�I)ܾ(H�8�)��H�P L�"H�BH�j[]A\ÐH���(��H�����ATUH��SH�����I��H�E H�h��t=H�H��- H�+ H)�Iܾ(H�8���H�P L�"H�BH�j[]A\ÐH�����H�����UH��SH��H��H��H��- H�0���H��u	1�H��[]�H���(���H��H������H9�u߸�ڐ��UH��SH��H��H��H�6- H�0�^����H��t.H������H��H�������H)�H��t����H������H��H��[]�ff.����ATI��H�5* US��H��H��dH�%(H�D$1�����H���X���H�$��t<����tYM�$$����L��A��tl����H�}Hc�����9f������xjH�$uQH��tA�H��������t�H�}���H�L$dH3%(uPH��[]A\���k����f�M�$$��u
H��u��h���H�<$tH���~����1��������[���ff.���USH��H�5�( H������H��H��tNH������H9�HD�H�] �tH�H�EH���[]��H������H�EH���[]�H�@ 1�H�EH���[]�fD��AUATA��UH��SH��(dH�%(H�D$1�H�D$讽��H�D$���5E����H�]A����H�mA�����؃�A�������QH�H���tH������H9�HD�H�l$��CH�I��H���U���H��1�H��I���e���H�^* �(H��' H�8�:���H�P L�*L�bH�ZH��t\H�j �V�؃�����H�H�����H��1�H��H������H�* �(H�5' H�8�ݿ��H�P H�*H�BH�ZH�L$dH3%(��H��([]A\A]�����E����H�D$H�]A��u#H���b����H�|$�#������fDH�mA��uLH��u����@H���h���H�����H���X���H��� ���H�����I�����H�D$����H�|$t
H�|$谽����D���>���艺��f���UH�=�
SH��蚻��H�-�( H�5rH�%- H��( H�}H�貾��H��( H�5��H��H����H�;�����H�Z���H�5�n���H�;�H�_���H�5F
�S���H�;�H�D���H�5��8���H�;�����H���H�5���H�;�H�^���H�5�	�һ��H�;1�H�6�H�5�躻��H�;1�H�>�H�5�袻��H�;1�H�&�H�5�	芻��H�;1�H���H�5�	�r���H�;1�H�F�H�59�Z���H�;1�H�.�H�5�	�B���H�;1�H���H�5m	�*���H�;1�H���H�5Y	����H�;1�H�F�H�5D	���H�;�����H�K���H�5/	�ߺ��H�;�����H� �H�5	�ĺ��H�;1�H���H�5	謺��H�;�H�����H�5�葺��H�;�H�"���H�5��v���H�;�H����H�5��[���H�;�H�|���H�5��@���H�;�H��H�5��%���H�;�����H�V�H�5��
���H�;�����H�[���H�5c���H�;1�H���H�5O�׹��H�;�H���H�59輹��H�;�(H�-# �ػ��H�}H�5H�H H��H�H�AH�AH��[]�Ի����H��H���@ctype@argserror prepping CIF %dmprotecterror prepping closure %dPointer[]closure args: %dcallclosure retval: %dClosureinitializeto_ifiddle/closure������������l��	��\��������������d��<����T��������}��}��}����P��e��J��J��J��-��<�������unknown type %d4��D��T��d��t������$����������(��8��H��`�����X��p����������������������$��D��d��t��������������$�������4��D�����FiddleDLErrorTYPE_VOIDTYPE_VOIDPTYPE_CHARTYPE_SHORTTYPE_INTTYPE_LONGTYPE_LONG_LONGTYPE_FLOATTYPE_DOUBLETYPE_SIZE_TTYPE_SSIZE_TTYPE_PTRDIFF_TTYPE_INTPTR_TTYPE_UINTPTR_TALIGN_VOIDPALIGN_CHARALIGN_SHORTALIGN_INTALIGN_LONGALIGN_LONG_LONGALIGN_FLOATALIGN_DOUBLEALIGN_SIZE_TALIGN_SSIZE_TALIGN_PTRDIFF_TALIGN_INTPTR_TALIGN_UINTPTR_TWINDOWSSIZEOF_VOIDPSIZEOF_CHARSIZEOF_SHORTSIZEOF_INTSIZEOF_LONGSIZEOF_LONG_LONGSIZEOF_FLOATSIZEOF_DOUBLESIZEOF_SIZE_TSIZEOF_SSIZE_TSIZEOF_PTRDIFF_TSIZEOF_INTPTR_TSIZEOF_UINTPTR_TRUBY_FREEx86_64-linuxBUILD_RUBY_PLATFORMdlwrapdlunwrapmallocreallocfree@ptrlast_error=@return_type@nameunknown keyword: %li@closure@abierror creating CIF %dFunctionDEFAULTSTDCALLfiddle/functionnumber of arguments is so large that it can cause integer overflow (%d)Keyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedPassing the keyword argument as the last hash parameter is deprecatedargs is so large that it can cause integer overflow (%d)The last argument is split into positional and keyword parametersunknown symbol "%li"%sclosed handleHandlesymNEXTRTLD_GLOBALRTLD_LAZYRTLD_NOWdisable_closeenable_closeclose_enabled?fiddle/handledlclose() called too many timesNULL pointer dereferenceFiddle::Pointer was expectedto_ptrfree=to_intto_value+@ref-@null?to_sto_strinspect<=>==eql?+-[]=sizesize=NULLfiddle/pointer#<%li:%p ptr=%p size=%ld free=%p>to_ptr should return a Fiddle::Pointer object;<Fp���X�������t ����@����p����������������d�����0����������������L���P���p�������P��������@��X0��t ���P���p�������p�������p����������������P��<���t����0�����������P�����4�P��p��� ��P����������	�8	P�X	��	`��	��
�8
`��
���
���
@��
�p�8��|@������p�0��d �`��zRx�$���@FJw�?:*3$"D(���0\����HMt����-E�c�����9Hg
AD$�����OE�F�D zDAL����F�B�B �B(�D0�C8�D�a
8A0A(B BBBFL($���+F�I�E �B(�A0�A8�D�N
8A0A(B BBBDx���nH@H
H�X���rL�S������@������H�l
DM
KQ
GK
EL
DK
E�
C0,����F�A�A �G@�
 AABDD����?HY
GVd���� 0x����~E�D�D s
FAIdDA���THh
HW�@��( �\��mE�V
E���HI���E�U,8����E�G
B�M�����
Cht��#HZ����(����xF�D�D �l
CBAL����}F�B�E �B(�A0�D8�I��
8A0A(B BBBG$zRx��������,d���vL���WH0I
Ah$���L�y����
����&HW����%H\����%H\����>E�]
NI4���A�A�G0G
FAIL
AAA8d��L`��<Hd
DG0l���OF�D�D �F@�
 AABG����;Hr �����A�S P
AK�0��mE�o
A����?E�]
E����L��4H��
0HD��FE�A�G W
DAGPDA|`��-�|��#HW����HS����9Hg
AD����$E�Z����4E�V
EO8����F�L�A �F(�D@�
(A ABBD8Xd��VF�I�B �A(�D0�h(D IDB0����F�K�A �I0�
 AABD0�t��|E�H�D {
LAGTFAL����TF�E�B �B(�D0�D8�D��
8A0A(B BBBKL���9Hpd���HE�B�,��KE�E8�`���F�B�A �A(�J@�
(D ABBH ���TH�Y
GP
D@�0�ZF�L�H �A(�A0�DP;
0A(A BBBE,@	L�mF�A�D �P
ABB,p	��mF�A�D �P
ABB(�	��OE�D�J Z
AAA$�	��dE�D�J KDA0�	8�F�K�A �I0�
 AABH<(
$��E�A�N u
FAHP
FAARFA8h
t�7F�B�D �D(�DPZ
(A ABBD(�
x�<E�H�D $AAGNU��6�6 � z7�60~�M�M���\@\c��d�d�c+6BL� )
ly� � ���o`p 
�� H	��@	���o8���o�o���o�� P)`)p)�)�)�)�)�)�)�)�)** *0*@*P*`*p*�*�*�*�*�*�*�*�*++ +0+@+P+`+p+�+�+�+�+�+�+�+�+,, ,0,@,P,`,p,�,�,�,�,�,�,�,�,-- -0-@-P-`-p-�-�-�-�-�-�-�-�-.. .0.@.P.`.p.�.�.�.�.�.�.�.�.// /0/@/P/`/p/GA$3a1 )yyGA$3p1094�5�cGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3p1094�BlyGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�6�cGA+GLIBCXX_ASSERTIONS
GA*FORTIFY�B�cGA+GLIBCXX_ASSERTIONSfiddle.so-2.7.8-141.el8.x86_64.debug�G��7zXZ�ִF!t/��G�]?�E�h=��ڊ�2N��~ ��U�l�@^M�me�3�r7N�\QC3z,å�Dh�Ý�t)��	%���C�F���w=-S9�ٛQ���G��~����mQ�A�T\��̾�3r�M��:�o$v����E���{�du5$����ŏ_,{��,(1�Lz)���<GA�im*3���^������3��tN�{�D���	� �X(l��(5�	�"�a�F��eLp�`)]��0S'2�ʄ���цH�A��L�I���,W)���?�˝(��}N$��e�?@&^�S���ɒ�k���2r�Uv�Xн�'���p�Y�/hh�ȁtS)��H���	25�Q�x�X���?�'�%/�9�����Cw����j#��Fn���%Mz0E���hƸ�T�Of��^���;G�^tE��#%/`q�Y�����&�Z'�����/�R3�g(��z2O�ϰ]қ��J�"J1m���d�W`��&�by[�v8���"ۻ7�!���L�'\!H�%4L?.�s���tܼדH-оܱK|ݭ�ɮj�iyZ[�Nd��j���[+)yn����������|{f
�)�Ru�AP�)u���s����7?X �\�r�8o'[v�Jv�f��^������5�\���
�
����%4 �s���r$�QFq�e,jG�ik�����0	(��|��K
t��2h�e1�|�h����!�siy+�&'�����O5��&��Ut��$:��X/Tږ_]�!U��l~C�n}�E'����3�Z��5�E6��?�N�I=�*�+�Gʽ�;&�b��W`&��� ���r��Sy��gT7U�3`��[��M]l):�r-#G	߂��!=��w�+X��d�F�t����E��~Ju�}֙��Ǭ"�S��~pPٽ�+���R�],�(����y,�Ft�q%�	�As�a �<�T���{��N��Ţ����ޣ�k�\ڀ���w��G�~\su/k~N�7W_��u���b�1@�P��ޯ`˸Q���t�?;���e{N�.����m,��cP!n���㡋?�`�-�f�?�G���9.=�̇ND���q=_c���c��ō�����<��,*T�x��o���a'�	F�e��4�T��Lff�tھV��������8Q�A �٦�Ȯܶ����cF�y��LY�_����Iϓ��Y�`H3�-M�N�է�<�f�Jg�p�ÇшDKS�Do�a�*�bK���%�Zh~G���$n�ٵB�R���'�Z
"\]��6���t@�5`D���W�k���4��?鎧�?�\B(<Q�J�:V��G��9�f��Yƛ�K�s���F?px��.�J�$Y��t��1�-�|���TmI�e?Oh�*���N?���2<_���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``�(  P
0pp�8���oE���o88`T��@^B��H	h ) )c@)@)@n�/�/0w�5�5�C}lyly
��y�yP�ЁЁ<����
��� �� ��� �� �  �� ��� ����� ��@�� �0�0� 0�����`0�d
��,����+PKLH[��z�((lib64/ruby/continuation.sonuȯ��ELF>@@�@8	@ �
�
 �
 X` �
�
 �
 ��888$$���  S�td���  P�tdXXX$$Q�tdR�td�
�
 �
 ((GNU� rm�����E�)
�͝���� 	BE���|�qX�4 o , gF"�0 �8 �0 U@__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_continuationrb_warnruby_Init_Continuation_bodylibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5/opt/alt/ruby27/lib64�ui	��
 �
 ��
 �
 � � � �    ( ��H��H�)
 H��t��H����52
 �%3
 ��h�������h��������h��������%�	 D���%�	 D���%�	 D��PH�=�1�����Z����H�=�	 H��	 H9�tH�f	 H��t	�����H�=�	 H�5�	 H)�H��H��H��?H�H�tH�5	 H��t��fD�����=U	 u+UH�=	 H��tH�=� �9����d����-	 ]������w�����H��H���callcc is obsolete; use Fiber instead;$x���@����h���zRx�$0���@FJw�?:*3$"DH���0\`���EOGNU���
 �����
�
 �
 ���o`��
� Hh��	���o����o�o����o�
 ��GA$3a1�GA$3p1094@YGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3a1)continuation.so-2.7.8-141.el8.x86_64.debug0�O�7zXZ�ִF!t/���]?�E�h=��ڊ�2N�	za�1Ɔp~i�����:��'�YW��g��7�r᱾|))@Ǫ�h#�0��t/��m��(=>t���Q�������Y�a���n�����ÄJ�ѠC�]{tO��/NiSz;6m
�v����5D����I�Ť8-�(N��'���Y��WA�h@]y�iEbR]�݄y�<9=���x������!�.�B4�Dr�;��Z�@)�J}#CFg8�g���>Z��Y/�פC<������AC�(?�Ql攇6�X!�	�����[*ȱ���k�3�N�
g�ݢ�^Oؠ�6qQ�����Rl��ZvO~�t^c�[�b�)W�9��<��1ކ��\8���E<+6ci<PE���8R�ˡ�5ُ�F��V3uAfG�?;%�
88eu�L�qgJ������OSȔ��E��P��H���Q@ANH���Jq��7�G��0Cp9�B��Q����@]�
6����|x��&`�zb8~�#��-�]�B9�:?dW �{��uH���z;�$�.�A�R�Q��wܜ�������Im)˺�E�e�!��"|�	���.m�Zq���]6�	Id�����2ߺC�C�~�`��n�fb��9���W��f���ZݚiY��%�����fx�R\[`�qd��A-�_Wt	��~�_h0�EW���� �
��&c�~Z�qeW�����.F��q5<�8���_�~Do�b0|1Q������6?����u�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0���8���o��E���o�� T���^BhhHh��c��@n0w@@�}
�200(�XX$���t��� ��
 �
��
 �
��
 �
��
 �
��� � � 0�0 0�8`0
H0x@�+PKLH[������lib64/ruby/ripper.sonuȯ��ELF>`e@H�@8	@���� ����#��#��& ����#��#��888$$������  S�td������  P�td}}}��Q�tdR�td����#��#ppGNUs������M�,�hfX�[��d �������&BE���|�G�s�qX��h�V?��;T���" �	�)	.I�q�2�_R���>�}�a����r�����!���s�(�E
�x������� ���	�,]�	"<�U*�X�e�r�-?�sN�e	"�v	"3��U%��O�Zc���8���o�D	���a, �~B�F"���|���4?p�4	Y	p�	x�#�	H�#	��
�	x�#��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeruby_global_name_punct_bitsrb_parser_printfrb_usascii_str_new_staticrb_funcallv_with_cc__stack_chk_failruby_xrealloc2rb_enc_str_newrb_enc_dummy_prb_enc_str_coderangerb_usascii_encodingrb_utf8_encodingrb_ascii8bit_encodingrb_enc_associaterb_enc_find_indexrb_enc_from_indexrb_sprintfrb_eArgErrorrb_make_backtracerb_ary_unshiftrb_make_exceptionrb_exc_raiseruby_xmalloc2rb_vsprintfrb_intern2ruby_xfreerb_string_valuerb_num2uintrb_str_modifymemmoverb_str_set_lenrb_fatalrb_check_typeddatarb_gc_markrb_enc_from_encodingmemchrrb_str_subseqrb_funcallv_publicrb_obj_classrb_eTypeErrorrb_raiserb_io_getsrb_keyword_given_prb_free_tmp_bufferrb_respond_torb_string_value_cstrrb_str_new_frozenrb_stdoutrb_fix2intrb_enc_str_new_staticrb_freeze_singleton_classrb_empty_keyword_given_prb_num2intrb_error_arityrb_data_typed_object_zallocstrlenrb_st_lookuprb_st_insertrb_st_init_numtablerb_usascii_str_newrb_id2strrb_eRuntimeErrorrb_str_catrb_str_buf_newrb_out_of_intrb_enc_getstrcasecmprb_compile_warningruby_scan_hexrb_internrb_id2symrb_hash_asetrb_ident_hash_newrb_obj_hiderb_memcicmpstrncmprb_enc_precise_mbclenruby_xmallocrb_ruby_verbose_ptrrb_parser_show_bitstackrb_parser_fatalrb_ary_entryrb_ary_new_from_valuesrb_int2bigrb_thread_currentrb_ensurerb_yytnamerrrb_ast_newnoderb_node_initrb_imemo_newruby_xcallocrb_gc_writebarrierrb_parser_lex_state_namememcpyrb_enc_codelenrb_ast_add_mark_objectrb_parser_trace_lex_staterb_complex_rawrb_rational_rawrb_intern3rb_enc_str_buf_catrb_hash_newrb_define_construby_scan_octrb_cstr_to_inumrb_int_positive_powrb_rational_newruby_strtod__errno_locationrb_float_new_in_heapripper_yyparserb_parser_set_location_of_nonerb_parser_mallocrb_parser_freerb_parser_set_locationrb_parser_set_location_from_strterm_heredocrb_str_new_staticrb_ary_pushrb_st_free_tablerb_ary_concatrb_assoc_newrb_errinforb_reg_fragment_setencrb_parser_reg_compilerb_st_locale_insensitive_strncasecmprb_str_coderange_scan_restartablerb_char_to_option_kcoderb_ascii8bit_encindexrb_str_resizeruby_scan_digitsrb_reserved_wordrb_str_newrb_attr_getrb_set_errinforb_hash_clearrb_intern_strstrcmprb_ast_newrb_ast_disposeInitVM_ripperrb_cObjectrb_define_classrb_define_alloc_funcInit_ripperrb_define_methodrb_define_singleton_methodrb_define_private_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.14GLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�	����	ii
�	ui	�	��#f��#�e��#��#��#l#ȟ#�lП#P�؟#j#�#�l�#P��#.2��#0��#D2�#P� �#P2(�#�q0�#�n8�# i��#W2��#C$��#f2��#v2��#�2��#�2��#�2��#�2��#�2Ƞ#�2Р#�2ؠ#�2�#�2�#�2�#�2��#�2�#�2�#�2�#3�#3 �#3(�#!30�#+38�#43@�#=3H�#G3P�#N3X�#U3`�#j3h�#{3p�#�3x�#�3��#�3��#�3��#�3��#�3��#�3��#�3��#�3��#�3��#�3ȡ#�3С#4ء#4�#14�#E4�#O4��#\4�#f4�#n4�#{4�#�4 �#�4(�#�40�#�48�#�4@�#�4H�#�4P�#�4X�#5`�#5h�#(5p�#;5x�#O5��#^5��#s5��#�5��#�5��#�5��#�5��#�5��#�5��#�5Ȣ#�5Т#	6آ# 6�#)6�#26�#76��#=6�#B6�#H6�#M6�#R6 �#W6(�#\60�#a68�#f6@�#k6H�#p6P�#v6X�#|6`�#�6h�#�6p�#�6x�#�6��#�6��#�6��#�6��#�6��#�6��#�6��#�6��#�6��#�6ȣ#�6У#�6أ#�6�#�6�#�6�#�6��#7�#7�#%7�#87�#I7 �#U7(�#j70�#x78�#�7@�#�7H�#�7P�#�7X�#�7`�#�7h�#�7p�#�7x�#�7��#�7��#�7��#�7��#�7��#�7��#�7��#�7��#�7��#�7Ȥ#8Ф#8ؤ#8�#8�#8�#8��#+8�#/8�#38�#78�#;8 �#?8(�#C80�#G88�#K8@�#O8H�#S8P�#X8X�#-`�#`8h�#d8p�#q8x�#{8��#�8��#M*��#�8��#h8��#u8��#�8��#�8��#2/��#�8ȥ#�8Х#�8إ#�9�#�8�#�8�#�8��#�8�#�8�#�8�#�8�#�* �#�8(�#�80�#^+8�#�8@�#9H�#9P�#9X�#'9`�#19h�#;9p�#E9x�#�=��#O9��#U9��#[9��#a9��#g9��#r9��#]?��#w9��#->Ȧ#�9Ц#�9ئ#�9�#�9�#�9�#�9��#�9�#�9�#�9�#�9�#�9 �#�9(�#�>0�#�98�#�9@�#�9H�#�9P�#�9X�#:`�#:h�#
:p�#:x�#:��#:��# :��#$:��#):��#-:��#2:��#6:��#::��#>:ȧ#B:Ч#P:ا#X:�#]:�#f:�#n:��#v:�#}:�#�:�#�:�#�: �#�:(�#�:0�#�:8�#�:@�#�:H�#�:P�#�:X�#�:`�#�:h�#�:p�#�8x�#�:��#�:��#�:��#�:��#;��#;��#;��#*;��#&;��#>;Ȩ#:;Ш#J;ب#Z;�#f;�#)0�#�+��#o;�#s;�#w;�#{;�#; �#�;(�#�;0�#�:8�#�;@�#�;H�#9P�#�;X�#�;`�#�;h�#�;p�#�;x�#�;��#�;��#�;��#�;��#�;��#<��#�;��#�;��#�;��#�;ȩ#�;Щ#<ة#	<�#<�#<�#!<��#<�#1<�#6<�#<<�#E< �#P<(�#]<0�#a<8�#e<@�#i<H�#p<P�#|<X�#�<`�#�<h�#�<p�#�<x�#�<��#�<��#�<��#�<��#�<��#�<��#�<��#�<��#�<��#�<Ȫ#=Ъ#=ت#=�#!=�#`&�#,=��#R&�#4=�#<=�#D=�#]= �#m=(�#K=0�#d=8�#P=@�#\=H�#c=P�#l=X�#w=`�#�=h�#�=p�#�=x�#.��#�=��#�=��#�=��#�=��#�=��#�=��#%.��#'+��#�=ȫ#�=Ы#�=ث#�=�#�=�#�=�#�=��#/�#�=�#�/�#�=�#> �#>(�#>0�#0;8�#>@�#�9H�#�)P�#'>X�#1>`�#<>h�#G>p�#R>x�#X>��#`>��#e>��#p>��#~>��#�>��#�>��#�>��#�>��#�>Ȭ#�>Ь#�>ج#�>�#�>�#�>�#�>��#�>�#?�#?�#?�#? �#%?(�#+?0�#5?8�#@?@�#K?H�#X?P�#`?X�#i?`�#s?h�#�0p�#�0x�#�0��#z?��#'#��#m?��#�?��#��#
��#��#F��#S��#Tȯ#zЯ#�د#��#��# �#(�#0�#8�#@�#H�#P�#	X�#
`�#h�#p�#x�#��#��#��#��#��#��#��#��#��#Ȱ#а#ذ#�#�#�#��# �#!�#"�##�#$ �#%(�#&0�#'8�#(@�#)H�#*P�#+X�#,`�#-h�#.p�#/x�#0��#1��#2��#3��#4��#5��#6��#7��#8��#9ȱ#:б#;ر#<�#=�#>�#?��#@�#A�#B�#C�#D �#E(�#G0�#H8�#I@�#JH�#KP�#LX�#M`�#Nh�#Op�#Px�#Q��#R��#U��#V��#W��#X��#Y��#Z��#[��#�Ȳ#\в#]ز#^�#_�#`�#a��#b�#c�#d�#e�#f �#g(�#h0�#i8�#j@�#kH�#lP�#mX�#n`�#oh�#pp�#qx�#r��#s��#t��#u��#v��#w��#x��#y��#{��#|ȳ#}г#~س#�#��#��#���#��#��#��#��#� �#�(�#�0�#�8�#�@�#�H�#�P�#�X�#�`�#�h�#�p�#���H��H��[#H��t��H����52\#�%3\#��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1�������%mS#D���%eS#D���%]S#D���%US#D���%MS#D���%ES#D���%=S#D���%5S#D���%-S#D���%%S#D���%S#D���%S#D���%
S#D���%S#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%�R#D���%}R#D���%uR#D���%mR#D���%eR#D���%]R#D���%UR#D���%MR#D���%ER#D���%=R#D���%5R#D���%-R#D���%%R#D���%R#D���%R#D���%
R#D���%R#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%�Q#D���%}Q#D���%uQ#D���%mQ#D���%eQ#D���%]Q#D���%UQ#D���%MQ#D���%EQ#D���%=Q#D���%5Q#D���%-Q#D���%%Q#D���%Q#D���%Q#D���%
Q#D���%Q#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%�P#D���%}P#D���%uP#D���%mP#D���%eP#D���%]P#D���%UP#D���%MP#D���%EP#D���%=P#D���%5P#D���%-P#D���%%P#D���%P#D���%P#D���%
P#D���%P#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%�O#D���%}O#D���%uO#D���%mO#D���%eO#D���%]O#D���%UO#D���%MO#D���%EO#D���%=O#D���%5O#D���%-O#D���%%O#D���%O#D���%O#DH�=O#H�
O#H9�tH�&J#H��t	�����H�=�N#H�5�N#H)�H��H��H��?H�H�tH�J#H��t��fD�����=�N#u+UH�=�I#H��tH�=�9#����d����}N#]������w�����B��~Y��E1�A�L�L������� EE�H��I9�t���	u��H������	I9�u�H��GD�GH�W�H�E1���GH�WD�G�f�H�WHL�GP1�H�rL9�s�
��@����{����$t�f��J��-���A߃�]w4�Q�΅ҍBI�����1����H�)�H�5�H#�4��\��r��Qи\��	vj��wU��_tP��߃�A���%\��H�wH�[�� ���J��@u�H�JI9��W����J�@�\�f.��ff.�@H�H�GH�H�O0�� uiH�QH��H�W@��H�H�NH�GP�FD�FH�L�L)�H�H�H�GH���H�WX����F����� tH�G8�� ��f�H�QH�AH�W@�f�1�� ��1���9��uDH�wHH�W@H��H9�s6�
�σ�	��v	@�� u)H��H9�t�����	��v� t�1��f����f�H��~1���|�*tIH��H9�}���*t��-t�H��H9�|�1��fDH�PH9�}�|-t H����f.��|�-u�H�D��|�-u�H�D���Hc��H���HPH��t!H�JH�� H��tHcIH��H�RH��u�ÐAU1�ATI��H�50�UH��SH��H��H���<�L9�w0I)�I��N�lcL�%�D�L��H��1�H����L9�u�H��H��H�5ռ1�[]A\A]���ff.��U��SH��H��dH�%(H�D$1�H�GHH;GPs�8
tn��!�tH�T$dH3%(��u`H��[]�f����9H�=I���!�f���H��8I��H��U#�H�=YN#H�$�`����fDH���
H�GH��T�@D������H���A�0���9�|NUSH����9�����H����H��Hc���D���H���H��A)�[]Mc�L�ÐMc�L��f�Hc��H����H���@�4���9��}�fD�SH������H���Hc�� �H���[��AUM��ATA��USH��H���H�A��H��u�{tH��H��[]A\A]�H���`��u�H���d�=t�����L9�u���H9�t����H��H���i���UH��H��SH��H��(dH�%(H�D$1������������
����xH��ttH�sH�=��1�����H�D$H��C#H�H�$�j���H���H�=^�H�D$1�����H�|$H�������H��� �H�������H���h��u�H���H�D$dH3%(u"H��([]�H��H�=ڵ1��e���H�D$�^�����fD��H��I��I���-�����u	H���@L��L��H�������S���H��LJ����H���H��t:���[�@��<H��ǃ�<��H���[�LJ�<��<���H����ff.�SH��H��H���H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H��$�H�t$�D$H�D$H�D$0�D$0H�D$ ���H��I#H�D$H��t>H��8L�D$�H�=�I#�Q��!H�D$(dH3%(u'H���[Ð�
H�=?�����H��H��I#���ff.���ATUH��SH���H��t��H���H��tH�H�{H��t��L�cH���v�L��M��u�H���H��tf�H�GH����P�H���H��u�[H��]A\�8����AUATUSH��H��H�|$H�t$�0�H���H�L�l$��I�]�� ��H��I�u������H����1�1��-f�<	������9���H��D�gH9�~)9�~%�.��A��< u�H����D�gH9���L�����I�E�� ugH��I�}��H9�uaH)�Mc�J�4'H����H��L�����H��K�D$[]A\A]�f�E��u�H���[]A\A]�I�uI�]�"���I�}I�E�L��H�=]�1���ff.�f���H��H�5a/#�,���!H��H��<H��?���D��SH��H�51/#��H��H��[���H��H�5/#���H��H�����SH��H�5�.#��H��������� ��	ʈ� H��[�@��H��H�5�.#�|��� H��H��<H��?���D��H��H�5�.#�L��� H��H��=H��?���D��H��H�5Q.#��HǀH�H������SH��H� ��H�{(��H�{0�}�H�{8�t�H����h�H�{�_�H���S�H����G�H��(�;�H��8�/�H��@�#�H��H��H�����H����H�;[��fD��H��H�5q-#�<�H���H����ff.����AWAVAUATUSH��H��� uvH��L�~��H�o`H��tH9�tmI�H)�I���f�E1�I��I��H��L���
��L��L��H�PL)�H��HE�H�H��I�n`H��[]A\A]A^A_�6�fDL�~H�^�fDH���[]A\A]A^A_�ff.����H��H��H�5�L#1�1����H��t�uH�����t�����uH���H����H�5��H��H��;#H�81��!����H���t�@��AVAUATI��H�5,#U��H��SH��@dH�%(H�D$81�I��L�l$��L�t$ H��H�D$L�l$(H�D$0���H�D$���w����1�I�$H�$���lH�D$H�D$H����H�|$��H�<$@���vf�H�5qK#�����$H�����H�<$H�C�� �H�|$H�{ �vL�����H�|$�T�H�D$H��:#�� Hǃ�H��Cp����ǃHǃ(Hǃ@HǃHHǃ�H����H���H�D$H���H� ��H�@H�|$H���1�H��t@���`�S�������H�L$8dH3%(�fH��@[]A\A]A^�@I�D$H�D$�������I�D$H�D$���H�������H�<$@�������H����������������x���H�����H�C����H���1����H����H�=���8�H�D$��|���H������p���H��у����_���H�р�H�xH��K������B���H���	��5���@�����~9H�T$���DL����H����H�<$H�C����@�C����H�|$t
H�|$�������{���fD��H��H��(#�P�G�H�P H��8H�����G��~+H�?H;7t-�H��H���H��H9t�t
��H9�u�1����ø�ff.�����t)�� tT��	t/1���
t;}������1��f�1���
u���f��ɍAH�������fD�����DI��H�?I��H��v�,����¸��t�I�x1�H��v�L�������������AUH��'#I��H�5��ATI��Hc�UH��S��H�����H��H��H�l�H�_�HM�1����A�L$A�$1�E�L$E�D$H�5L�H�����1�H�5G�H����M��tk��4��/wcH�+�Hc�H�>��I�UH��4t'��u1H�����t(H�������uH������t�f.�H�5��H��1��O�H��H��H�5{�1�[]A\A]�4�@I�EH�5j�H��H�P1�����DI�UH�5J�H��1����f�H�R�f.�A�� u�DAU1�I��ATI��H��L��U��H�57�SL��H����L���H��L���W���H��H��1�[H�5b�]A\A]�|�ff.��USH��(dH�%(H�D$1�H���v@��uH��H���������vH�D$dH3%(uRH��([]�f�H���?H�=I���H��E#H�uI��H�$�� ����H�=�<#H�DH�D$�������f�H��(dH�%(H�D$1�H��4�B��uH�����tH�A��A��A����H��4����uH������tH�A��A��A����I��4��A��u$I������tI�A��A��A�����H�$H��H��H�=�:#H�L$�L�D$I����H�t$dH34%(��H��(��H������ulH�RH��4�H���fD�I��4�_���f�A��u���DH������u�H�I�'���H������u�M�@�C�����������H��8dH�%(H�D$(1�H��4����uH�����tH�A��A��A����H��4����uH������tH�A��A��A���I��4��A��uI������tI�A��A��A����I��4��A��u'I������tI�A��A��A����f.�H�$H��H��H�=�8#H�L$�L�D$I��L�L$�s�H�t$(dH34%(��H��8�f.�H��������H�RH��4����f��I��4�'����A�I��4�C���A��e���DH������u�H�I���H������u�M�@���H������u�M�I������~�����f�USH��HdH�%(H�\$81�L�\$`L�T$hH�D$pH��4����uH�����tH��݃����bH��4�x��uH������tH��݃�����I��4�_A��uI������tI��݃�����I��4�EA��uI������tI��݃�����I��4�+A��uI�����tI��݃�����I��4�A��uI�����tI��݃����yH��4���u#H�����tH��݃����rf.�H�$H��H��H�=/6#H�L$�L�D$I��L�L$L�\$ L�T$(H�D$0��H�t$8dH34%(�BH��H[]�f�H�������H�RH��4�����f��I��4������A�I��4�����A�I��4����A�I��4���A�H��4�	�����&���fDH������u�H�I�2���H������u�M�@�D���H������u�M�I�V���H�������x���M�[�d����H�������h���M�R�n����H�������X���H�@�������l�������f�H��(dH�%(H�D$1�H��4����uH�����tH�A��A��A��tdH��4t~��uH������tH�A��A��A��tpH�$I��H��H��H�L$H�=g3#��-��H�t$dH34%(u_H��(��H������u<H�RH��4u�f.���f�H������u�H�I�{�����J�������f�H��dH�%(H�D$1�H��4tn��uH�����tH�������t;H�$�H��I��H��H�=/2#�Z��H�L$dH3%(u)H���DH������uH�R�fD���,��ff.��AVAUATUH��SH��L���H��t
���;tDH������L��H��H������H��8H�5�A#H��������![1�]A\A]A^�fD;Fu�HcNHcVH�G@L�oHL�wXH�H�H�OXH�GHH���Y��L��H��H���k��H��8H�5A#H�������!M��t�L�sX1�L�kH[]A\A]A^�fDATUH��SH��H���H��t*I��1������u<H���H��[1�]A\������[��H��1�H���H��[]A\���L��H��H�:�[]A\���f.�SH��H��@�t$H�|$�����H��8H�5�=#H������H���[�SH��H��H�5>#H��8�����![�ff.�f�H���7��H��1�H��tH� tH�R1��:_��H���H����f.���iwHc�H����Bf��u��H��<#��H�X;#H��PH��*#��H�5�H�81�����f�H9�sCAUI��ATI)�I��UH��SH��H��H��(H��t%L��H������L�cXH��[]A\A]���L�����H���H��(H��������H��H+{@��0Hc�H9�u��4H��(��#��USH��H��H�o8H�G8H��un�� �@H�WPH;W@v
�z�
��H�s H����H��SH��H����H���m���x��H��)#H�5�H�81����H�WPH����H�sXH����������~lǃ������H�E�� u8H�UH��H�SH��H�S@H�H�SXH�CPH�C0H�k0H�C(1�H��[]�DH�UH�EH�SHH�S@��fD����H�SP�� �����H�SH�f.�H��������������H�SP��!��/���������f�SH��H�GHH;GPt*�� u!H�G8����uH�PH�SH�<
t [�fDH���P�����uH�CH��fDH�߾
[�B������[�ff.�AUI��ATI��UH��SH��H���<Tt
~Y<ftY<tu!H�5��H������¸��t(�A�4$H�}1�I��L��H�o����������H��[]A\A]�@<Fu�H�5E�H��������u�H��[]A\A]�fD��SH��H��H���H��H���H���<�����x��!������	Ј�![�ff.�ATUSH��PdH�%(H�D$H1���!��H��H����I��H�w@H��L��H��A���7���D$9C���CD$���D$9C��}
A�����/H�=0����L��H�D$ �v��H���L��H�����L�#H�D$(L���T��H���L��H���b��L�D$ �H��8H�D$0HcCH�=Q-#H��6#H�DH�D$8�+��H�D$HdH3%(u	H��P[]A\����f.�UH��H���SH��H��H�H���H�UH��tHSHH��[]��H��H���1����H�CHH�CXH��1�[]�fD��ATI��USH��H�� dH�%(H�D$1���!u}H���H��H���L���<����Ņ�x<H�������L��H����H��H�ǃ����H���H��H������H�D$dH3%(�H�� []A\�D� H�=������L��H�$���H���L��H������H��8I��H�(5#�H�=/#H�D$�����k��H������H����?������f���AUATI��USH��H��H��~.�|�-H�j�L�j�t/A�|�-L��tDH��H��H��[]A\A]�A�u���fDJ�<.�H�5��#����u���DM�l��H�5֗L�������t��H�5ǗL��������u�H��u��H�5��L��������H��H���^����ATI��H��H��UH��SH��������uLH�I;$t3��у�	��v&�� t!��w�H������[]A\�@[�]A\�fD[1�]A\ÐI��E��t7���t0�ƒ�	��v�� u �H��D�E��tA����	��v�A�� t�H�6L�1�L)�xt!A���
t��
u3H��t-�|
t�DH��H��H��L���������H����Ð1��ff.�f�SH��H��H���H�sP�����~[�H���H��H�5N�H�P1��7������[�UH���SH�������H��H�H�C���H�kH�H��H��[]�ff.��USH��H��H�/H�}���H�EH�+H�}���H�EH�+H�}H��t�v���H�EH�+H�EH��[]�@ATUSH���$��� L� �w��1�H��H���I��H�E�.���1�H�E�#���H�E1�M��u8H�EH���H�4H����� u)H�cxH���[]A\�f�1��������%.H��H���<��H�CxH�4H�sx�� t�H�߹&.H�����H���[]A\��ATI��UH��SH��� ���H�s@H��L� I��H���L��I�C����L���[]A\�ff.�f�SH��H�?H��t�/��H��[�&��fDUSH��H��H���H�xH�hH��tH�P�J9OuwH��wa�H�8H��v���H���H�xH��v���H���H��H����� ubH�kxH������H���H��[]�@�K���H����f�H��1�H�5�����H���H�xH���j�������;.H���H�����H�sxH��H�sx�� �v����<.H���H������]���ff.�UH��SH��H���H�XH��t'H�HH�ڋq9s�|H�RH�PH��wVfDH�8H�WH�H��v�k���H���H�xH�WH�PH��vH��[]�G����H��[]�f�H���(���H�����1�H�5o����H���H�PH�RH�PH���m����ff.�ATUH��SL���H��I�$�f����H���H�H��tH��H9�u�[]A\����L�g����L����fDH��v*UH��SH��H��HcvH�;st*�V�SH�,�H��[]ÐH��1�H�5̮�/�����H�ljsHc��S��HcsH��f.�UH��SH��H��8H����H���H��H��H�p�b���H���H�pH��tHc��H��H��[]�=���DH��[]ÐUH��SH��H��8H����H���H��H��H�0H��[]���ff.�f�AWI��AVI��AUATI��USH��H�YdH�%(H�D$1�H����H�{1����H�{�H�����H�{�I�����H��I��tH��tfL��H�����I��8L��I��M��H�5�.#H�����H�T$dH3%(uBH��[]A\A]A^A_���A��H��t�H��L�$$�Y��H������ff.�@PXH�5�H��H��#H�81����f���H��H�5#����H�x tH��HH��t	HcPhH�TH��H������f���H��H�5�#���H�x t!H��HH��tHc��H�TH��H����_���ff.�@��H��H�5�#�L��H�x tH���H����$���@��H��H�5Q#���H�x t7H��Ht#H�pXH�PHH�x0H)�H+p@H�������H�������f���H��H�5�
#���H�x t>H��HH��tH�xXH+x@H�@H�xH�|?H��H���@H���7���b���f���ATH�5�
#UH��S�Y��H�x �L��HH��I��t>����I9�tH�#H�5f�H�81��<��@H��#H�58�H�81�� �����H��H��H����H��HH�=�m���H��@[]A\����f.�AWAVAUATI��USH��HH�T$HcQH�t$dH�%(H�D$81������H��T$ H�H�&��4H����^����<6�߅�I�)����O�9��3�Hc�H�?Z1�Hc�H�=��H)�H�H�H��
DH��9�~8�G9�u�t�f�<F�t��HcՃ��D�$H��9���HcT$ �����E�D$�������D$A�.H�D���tA�2H�������D$H�l$ L�-	#��L�t���I9��WHcUI��H��I�T�1�L�����L�L9�}ո����H�\$8dH3%(��H��H[]A\A]A^A_�D�D$$�����D$A�H�D��e���fDA�&H�����I����D$A�
H���H�I)�M���)���f.�H�>���D$�sH�΋H�L$L�=#L�)1���I��H����A�E��tF�S<%u�su�;L$}�HcD� L��L��D�qH��I�����Ic�I��A�E��u�fD1�����f�H�L$H9|@��l���fDA�*H����U���HcT$ ����H�D$H���������H�H9�H�D$}H��������H�������a����|��H����Q����L�GI��L�I��w�?fDM�@M�II��v*I��vL��L��������uL��L��������tθ��1��ff.��H�WI��H�?H��t'L�BI��w�6DI�@H��v6I��H�M��u�1�H��vL���j�����E��L��I��f�H��tBH��w$I��v6L��L���3���������f.�L������¸��t��@1��DATUSH���umH�����tdH��ƒ���uWH������uKL�[M��tBH��I�� r>I��#v
I�����H��w(H��8H�5�'#H���1���!H��H��[]A\�I�����D�؃�����H�ܰHc�H�>��f��� y��DL���I�D$H��vNH�xtG����~L��H���������vtL��L��������q���L��L���������^���DL��L���%������F���L��H������6���DL�����H�5��H��H��1����������� ���H�5:�H��1������ff.�AUATUSH��H��t]H��H��H���v@��t`L���M�kI��vgI�}t`H��L������A�ą�u]H��L��������ugH��L���T�����uXA�H��D��[]A\A]�@H�������t���f.�H��L��������t�H���1�H������fDL��H��H�����H���H�pH��t�Hc��H��H��?����w����UH��SH��H��H���v@��t-H��8H�57'#H�������!H��1�[]�����H��H��[]�f�AWM��AVI��AUI��ATA��UH��SH��H�����L��M��L��D��H��H������fo8�H�#�C ���P���C0H��H��[]A\A]A^A_�f�AWI��AVM��AUI��ATA�USH��HdH�%(H�D$81�H��t H��H��8H�5�'#ID�H�����I��E1�1�1�1������� �H���y��H�t$�H�EH��L�|$L�d$L�t$ H�l$(����fI��L��H�C�����H�s@��u	H�����u&H�\$8dH3%(u.H��H[]A\A]A^A_��I��H�D$���H�D$���ۿ��ff.���H��H����t����H���������+���H��������AUATA��USH��H��H�GHH�p������xW��D��H�����L�kH�u�Hc�I�D-H�CH��D��H��[]A\A]�DH������H��t�H��L��H���M�����������ɐAWAVAUI��ATA��U��SH��H��(H�HdH�%(H�D$1�H�T$����H�sPH)����H�t$L�{HA��I�H�V�L�{HH���9A�����L��%���=��ZE�����L$A���������L$I��I�EH��t	L9��EM�eL��D���L$�r��H��I�l$0�������L$L��H�Ɖ�ս�^fD��.���L�{HH�t$A��I�L�{HH���H���H�σ1�H��1�����@D��H�߽����H�L$dH3%(����H��([]A\A]A^A_�Lc�H�߽�H��M��t�L��L��H��L)�袿���1�H�L�H��1��M�H�|$@��두H���1�H���/��z���f.�H�ׂ1�H�����Z���f.�H�PH�5͂H��1������6��������U��SH��H����ux@��u	H�����u!��� u7�ChH����[]�������t�H���J������ tɋshH�߹J��7����ChH����[]���=�)���H���q����UH��H��S�Ӻ:H����uH����H��H��[]�5���D�H������<��ff.��AUATI��UH��S��H��H��H��ueE1�H���g�p���H��u8H�����t/�����t%A�I��$H��H�D$�M���H�D$H��thH��[]A\A]��H��8H�5b"#���E1�H�ھgH��L��I����H��L��u��H�����t������t��@���I�����t�A�U����t�I��$L��H�D$豹��H�D$H��[]A\A]ÐAUI��I��ATI��UH��SH��H��H��FH���g���A��u	I�����uh@��u	H�����u)��uH�����t
�����uqH��[]A\A]�fD�U����t�I��H��H�D$����H�D$�f.�A�$����t�I��L��H�D$���H�D$�n���fDI��H��H�D$輸��H�D$H��[]A\A]�ff.��ATH��I��I��U��H��SH��H��A��upH������tWH�	�΃�����H��uH�������I������tA�����uxH��H��H��H��[�]A\����DH��u�H�����t��pH��u�H�����t‹����t�H��H��L�D$H�$���L�D$H�$M���z����@H��L��H�T$L�$谷��H�T$L�$�b���f�������>����H����������M�@M��A��H��u�H�����t������t��`����AUATA��USH��H��H�wHH�XH9���t}H�CH�(@���|H��H���H)��Z���D��I���O��H��8L��H�����H�SHH�SXH�E�u-H�����t%�����tH��H��H��[]A\A]鲶��f�H��[]A\A]�DH������w����UH�������d����b���H��#H�5�}H�81���AVAUATUSH��(H��to��0D���H��L�gX���Hc�4HG@H�GX���k��H�SL�2A��tfI��H��8H��H�����I��t"Hǃ(D���L�cX[]A\A]A^�H�����t֋����t�H��H��诵���DI�����t�A�I������u��ff.�SH��(H��t
�A����H�{XH�sPH���H)�衵��H��8H�5�#H������H�CPH�CHH�CX[�ff.�f�AUATA�����U��SH��H����H��������t`H�CHH;CP���� ��H�C8������H�PH�SH�(@��
���� tE���tH�SHH�B�H�CHH;C@w1�H��[]A\A]�z�
u�z�
u�H��H�SH��f.�H���L�kH�
A�}�H��PX���B���A�E�<_�5������,����}���f�H���x����u H�CH�H����
H���k������F���D���>���ff.��AUATE1�U��SH��H��L�oHL��H9CP���� ��H�C8������H�PH�SH�<
�����t	��i����ru@��u\��w
�ƒ�߃�A��wL�kHE1�H��D��[]A\A]�D��_t�H�SHH�B�H�CHH;C@vրz�
uЀz�
u�H��H�SH�A����H�CHH9CP�F���H���X����u�H�CHH�PH�SH�<
�N����
H���@�������8����g���f�A	�1��f�ATUSH��H��H���Hc��H����+���L�cH��H��輸���uH�����t
�����u&H��H��E1�H����P�I�$H��H��[]A\�H��H��H�D$�<���H�D$�DUH��H��SH��H��H��8H�5S#���H�ڃ�uVH�����tH��΃���uH������td@�uH�����t
�����u"H��H��E1�H��[�]��1���@H��H��H�T$H�$萱��H�T$H�$�DH�S�f.�ATI��USH�GH��H�(@��u
H�������I��1�1ҾH���(�H��H��(H��t0H�sXH�SHH)�H��H�AH�����H�CHH�CXH�CH�H�E�AH�����H�CH�H9�tH�UH�([]A\�L���h����fDH�E�ƒ���t*�E�����W���H��H��蔰���C����H������u��B����UH��SH������H�5�wH��H��H��蝷��H�=�{����H���i����H��H���I���H�=m��ݲ��H���E����H��H���%���H�=�{蹲��H���!����H��H������H�=z{蕲��H������H��H���ݲ��H�=e{�q���H���ٵ���H��H��蹲��H�=I{�M���H��赵���H��H��蕲��H�=3{�)���H��葵���H��H���q���H�= {����H���m����H��H���M���H�=	{���H���I����H��H���)���H�=�z轱��H���%����H��H������H�=�z虱��H�������H��H�����H�=�z�u���H���ݴ���H��H��轱��H�=�z�Q���H��蹴���H��H��虱��H�=�z�-���H��蕴���H��H���u���H�=�z�	���H���q����	H��H���Q���H�=kz���H���M����H��H���-���H�=Qz���H���)����H��H���	���H�==z蝰��H�������H��H�����H�=&z�y���H������H��H�����H�=z�U���H��轳���H��H��蝰��H�=z�1���H��虳���H��H���y���H�=$��
���H���u����H��H���U���H�=�y���H���Q����H��H���1���H�=�y�ů��H���-����H��H���
���H�=�y衯��H���	����H��H�����H�=�y�}���H������	H��H���ů��H�=��Y���H������H��H��衯��H�=by�5���H��蝲���H��H���}���H�=�y����H���y����H��H���Y���H�=*����H���U����H��H���5���H�=��ɮ��H���1����H��H������H�=�x襮��H���
����H��H�����H�=:�聮��H������H��H���ɮ��H�=�x�]���H���ű���	H��H��襮��H�=�x�9���H��衱���H��H��聮��H�=�x����H���}����H��H���]���H�=�x��H���Y����H��H���9���H�=(��ͭ��H���5����H��H������H�=ax詭��H�������H��H����H�=Hx腭��H������H��H���ͭ��H�=LJ�a���H���ɰ���H��H��詭��H�=x�=���H��襰���H��H��腭��H�=�w����H��聰���H��H���a���H�=�w���H���]����H��H���=���H�=[��Ѭ��H���9����H��H������H�=>�譬��H�������H��H�����H�=�艬��H�����H��H���Ѭ��H�=vw�e���H���ͯ���H��H��譬��H�=dw�A���H��詯���H��H��艬��H�=u����H��腯���H��H���e���H�==����H���a����H��H���A���H�=�u�ի��H���=����H��H������H�=�v豫��H�������H��H�����H�=�v荫��H������H��H���ի��H�=���i���H���Ѯ���H��H��豫��H�=�v�E���H��譮���H��H��荫��H�=�v�!���H��艮���H��H���i���H�=uv���H���e����H��H���E���H�=Wv�٪��H���A����H��H���!���H�=Cv赪��H�������H��H�����H�=)v葪��H������H��H���٪��H�=v�m���H���խ���H��H��赪��H�=�u�I���H��豭���H��H��葪��H�=�u�%���H��荭���H��H���m���H�=�u����H���i����H��H���I���H�=�u�ݩ��H���E����H��H���%���H�=�u蹩��H���!����H��H������H�=�u蕩��H������H��H���ݩ��H�=�u�q���H���٬���H��H��蹩��H�=���M���H��赬���H��H��蕩��H�=Uu�)���H��葬���H��H���q���H�==u����H���m����H��H���M���H�=*u���H���I����H��H���)���H�=u轨��H���%����H��H������H�=u虨��H�������H��H�����H�=�t�u���H���ݫ���H��H��轨��H�=�t�Q���H��蹫���H��H��虨��H�=�t�-���H��蕫���H��H���u���H�=�t�	���H���q����H��H���Q���H�=�t���H���M����H��H���-���H�=�p���H���)����H��H���	���H�=bt蝧��H�������H��H�����H�=Mt�y���H������H��H�����H�=4t�U���H��轪���H��H��蝧��H�= t�1���H��虪���H��H���y���H�=t�
���H���u����H��H���U���H�=�s���H���Q����H��H���1���H�=�s�Ŧ��H���-����H��H���
���H�=�s衦��H���	����H��H�����H�=�s�}���H������H��H���Ŧ��H�=�s�Y���H������H��H��衦��H�=���5���H��蝩���	H��H���}���H�=ls����H���y����H��H���Y���H�=Vs���H���U����H��H���5���H�=@s�ɥ��H���1����H��H������H�=D�襥��H���
����H��H�����H�=s聥��H������H��H���ɥ��H�=�r�]���H���Ũ���H��H��襥��H�=�r�9���H��表���H��H��聥��H�=�r����H���}����H��H���]���H�=�r��H���Y����H��H���9���H�=�r�ͤ��H���5����H��H������H�=�r詤��H�������H��H����H�=or腤��H������H��H���ͤ��H�=Zr�a���H���ɧ���H��H��詤��H�=7v�=���H��襧���H��H��腤��H�=6r����H��聧���H��H���a���H�=�n���H���]����H��H���=���H�=r�ѣ��H���9����H��H������H�=�q譣��H�������H��H�����H�=�q艣��H�����H��H���ѣ��H�=�q�e���H���ͦ���H��H��譣��H�=�q�A���H��試���H��H��艣��H�=�q����H��腦���H��H���e���H�=�q���H���a����H��H���A���H�=�|�բ��H���=����H��H������H�=Qq豢��H�������H��H�����H�=�|荢��H������H��H���բ��H�= q�i���H���ѥ���H��H��豢��H�=	q�E���H��譥���H��H��荢��H�=�p�!���H��艥���H��H���i���H�=�p���H���e����H��H���E���H�=�p�١��H���A����H��H���!���H�=�p赡��H�������H��H�����H�=|葡��H������H��H���١��H�=�{�m���H���դ���H��H��赡��H�=Yp�I���H��豤���H��H��葡��H�=Bp�%���H��荤���H��H���m���H�=*p����H���i����H��H���I���H�=p�ݠ��H���E����H��H���%���H�=�o蹠��H���!����H��H������H�=�o蕠��H������H��H���ݠ��H�=�o�q���H���٣���H��H��蹠��H�=�o�M���H��赣���H��H��蕠��H�=�o�)���H��董���H��H���q���H�=�o����H���m����H��H���M���H�=to���H���I���H��H�ߺ[H��]�#���SH� �H��1��.��H�CHH;CPs�8_tH��1Ҿ[������ u/H�C8����u%H�PH�SH�8
uɾ
H������f�H��������u�H�CH��ff.�AWI��AVA��AUATA��UH��SH����uBH�EHH;EPs�8{tS1�D��L��H���s����uH�EHH�EXH��[]A\A]A^A_���\薩���uH��艩������ �;H�E8�����-H�XH�]HD�A��
�0H�MPH9�w���H��H�]HH9�t��P���v� t�}�WE1�A9���E�����D��L��H��D�D$���H�]HD�D$��u�`fDH��A��H�]HH;]PsI��P���v� t�A���uM��H�5��LD�}��A9�tH�ޮI9�LD��t���H�]HH�]XH��H��1�[H�Lb]A\A]A^A_����D��H��D�D$�H���D�D$�9���fDH����������H�EH����
H�����H�]HA�����L�%O�M9�t7M��t2L�mH�AH����H�EHH�]HL��1�H��H�EX�{���H�EHH�EXE��uIH�EHH;EPtN�� uEH�E8����u;H�PH�UH�8
����H��H��
[]A\A]A^A_�E����}H���h����H������������H�EH�H�]HA����AUI��ATA��USH��H��8dH�%(H�D$(1�H�GHH;GP�w�� �jH�G8�����\H�PH�SH�<
�Q�H��y��H��Hc�H�>��@A����H�CHH;CP���� ��H�C8������H�PH�SH�<
�4��-��H�CHH;CP�/�� �"H�C8�����H�PH�SH�(@��
t^��\����wq�E���wH�*�Lc,�E������vP��tK����H�t$(dH34%(��H��8[]A\A]þ
H��蜤���Ń�\�P���u�@H�1~1�H���W���H�CHH�CX1��H���P�����u�H�CH���H�CHH;CPt�� u
H�C8����tH��������u�H�CHH�PH�SH�<
����-u�A���y���H�CHH;CP��� �H�C8�����H�PH�SH�(@��
�d��\����?�f���� ����������E�����H�̧Hc�����A��L�l�� ��E�����$H�=A|�$���L�D$�H��8H���"H�=�"H�D$L�l$����fD��%��L���@��>���fD�	�.���fD�
����fD�
����fD����fD� ���fD�����fD�����fDH�t$H���s��H�|$�D��������fD�
H���S������fDH�CHH�x�H�{HH9{@s
�x�
��H�T$�荘��H�T$HSH�G����H�CHH;CPs	�8u�m���D��L��H�߃����������DH��������@���H�CH�������'���������������x�
�k���H�x�H�{H�^���H���r�������H�CH�����
H���d����O����
H���R����������y���H�CHH;CPs	�8u�����D��L��H�߃��
�����N����
H���	������H��������l���H�CH����E�����'H�=6z衙��L�D$�H��8H�!�"H�=��"H�D$L�l$蓖���~����!H�=�y�]���L�D$�H��8H��"H�=��"H�D$L�l$�O����:����$H�=�y����L�D$�H��8H���"H�=��"H�D$L�l$�������M�I���� uA��uI�$H�=�x�Ø��L�D$�H��8H�C�"H�=t�"H�D$L�l$赕�����軔���'H�=�x�z���L�D$�H��8H���"H�=��"H�D$L�l$�l�������AWAVM��AUI��ATUL��S��H��HL�H�t$L��$��T$dH�%(H�D$81�H�D$0�D$#H�D$�B܉D$$�?H�EA�ǀ�QI�$I�H���yH9��8�|$#�EDM�}HM;}P�2A�� �$I�E8�����I�GI�EHE�?A��
��A�����~I���I���D���o�����t	D9��Z���D9|$���T$I�EH��t
A��#�@A��\���P�����I�$I�H���aH9��0���D��L���u������,���A������4��D$�����t"� ����A�����������|$
���\L��A�
���D��L���ݞ�������L��船������M�}H�����I�$D��L��衞�����@H���}H�EH���pH��H�E�2���D�D$�"���A�W���v
A�� ����H�P�I�UHI;U@v;�x�
u5�x�
u/H��I�EH�%fD�
L�����A�ǃ���?���A�����I�$H��tI�H�L$8dH3%(D����H��H[]A\A]A^A_��H�JH�PH�5�W1�L���W���M�}H�D$#���f�I9EP��A�� ��I�E8������H�HI�MH�<
��<\�<u��<
����D��A�����D$�?D9|$��I�UHH�B�I�EHI;E@v
�z�
��E1�I;EP�ZA�� �LI�E8�����>H�PI�UH�<
�E��7����M�����c����x��H�t$L���\���H�L$0H���R����qL��H�L$(M�}HHc�H�T$��H�T$H�L$(H����Hc�H�����H��H)�L��7����f�I9EP��������$@�ƃ�@��@�����{��A�#L��D���������fDI�$����L��T$蜶���T$�������I�EHH�HI�MH�<
�R����
L��T$�x�����\tS��u�T$t��
�a�������L���A���5������0L��\A�u�e���D��L���Z����E���D�D$�]���L��\�8���D��L���-�������A�
L��D����������I�EHH�P�I�UHI9U@���������I�EHH�P�I�UHI;U@v�x�
u�x�
uH��I�EH�D$�rL��1�L���q�A���f�����C��A����I�EHI;EP�%A�� �I�E8�����	H�PI�UH�<
�:��-�I�UH�L��H�T$躙��H�T$�J�f��R��PI�EHI;EP��A�� ��I�E8������H�PI�UH�<
����\��I�EH������0���������
��I�$M�}HH�������I�H9�������|$#�����I�MXH�5�SL��H��I�MHH�JH�P1�����M�}H�D$#�V��������\L���M��������L$�T$L��L����2�M�}H�����D$tA�G����-���A�� �#���D9|$������t	D9�������\L�����I�EHL�x�M�}HM;}@�����x�
������x�
�����L�x�M�}H����L���`�������I�EH����D$$��Y�����H�
�{Hc�H�>��z�
�X���H�B�I�EH�K���H�P�A�#I�UHI;U@�9��������t&I�EHH�P�I�UHI;U@v�x�
u�x�
uH��I�EHH��p1�L��A�����諯��I�EHI�EX���\L��D$�ݗ���D$��L���ϗ���
���A��u�I�EHI;EP�lA�� �^I�E8�����PH�PI�UH�<
�z��-�A���I�UH�L��A��H�T$���H�T$�J�f��R��P�%����\L���?����|���I�EHH�T$�H�x�I�}H�_���L�|$0M�������M�EHA�wL��Hc�M�H�T$M�EHL�D$(�m���H�T$L�D$(H������Ic�H��H��I�4踌������A�������I�UH�L��A��H�T$����H�T$�R�f��g����
L���Q������L���4������Z���I�EH�f���L���������A���I�EH����L���������(���I�EH����
L�����5����
L���������
L���Д���t��������������踉���AWA��AVAUATUSH��H��8dH�%(H�D$(1���� ���ChH��诗��A�GՃ���E1�A��0�}�D$E1�E1�H�-�yA�G҃�7wwHcD�H�>��@E���|
E��H�CHH;CP���� ��H�C8������H�PH�SHD�8A��
u��
H���ԓ��A��A�G҃�7v��A���tH�CHH�P�H�SHH;S@v
�x�
�E��tD��H�5�NH��1��U���Hc��H����E���*D����H���	���Ũ��Hc|$D���L���H����L�A�H�wMc�I�U�1���1�L��
����L��
I��蒈��L��H���W����<H�Ɖ�H������H�L$(dH3%(��H��8[]A\A]A^A_�f�H�CHE����E���:
H;CP�@�� �3H�C8�����%H�PH�SHD�(A��
�gA�EՃ��ZA�EЃ�	��D��H��A��A��p���D��H��E1��b���H�CHH;CP����@H���������r���H�CH�����E���^���D�l$H�CHE	��u	H9CP���� ��H�C8������H�PH�SHD� A��
��A�D$Ѓ�	�=
����.H��A���D$豒��D��H��E1�裒���R���fDD��H��E1�芒���9���Hc��H�����H������H���1Ҿ
��������H��H������'���@D��H��A��A��#���D��H�����������wh����~����O���f�D��H�����H�CHH;CP��� �rH�C8�����dH�PH�SHD�8A��
�����
H���i���A������H���1��B����D$臃���D$�8"I���H�0fH~�H9�t0fH~�H��<��������H���;H�������̄���;H��������H�CHH;CP�D�� �7H�C8�����)H�PH�SHD�8A��
�{D����߃�X����B���D��A��_t��O��A�GЃ��nE1�A��_��A�GЃ�	�@A��7�:D��H��E1��T���H�CHH;CP��� ��H�C8������H�PH�SHD�8A��
u��
H���܎��A�ǃ��u�Hc��9���
H����E���Y	E1��D$E1�����fD�x�
��H��H�CH����H���h������P
H�CH����H���H�������	H�CH�����H���(�����u]H�CH�k���H������������H�CH�����
H�����A������
H�����A���-����D$H�K@E1�H�CH@H�P�H�SHH9��*����x�
� ����x�
����E1�����H�CHH;CP���� ��H�C8������H�PH�SH�0@��
�]�F�E1�	����_�*�FЃ�	�����߃�A��vyH�SHH�B�H�CHH;C@v
�z�
�	Hc��H����9����E1��D$E1�E���7����H���s��H���1Ҿ�����fDH��E1��͍��H�CHH;CP��� �
H�C8������H�PH�SH�0@��
�����
H���R����ƃ�������=���f�H���;H��H��H���8�����H�=�G�߄��L���H�D$L���ˀ��H���L��H������L�D$�H��8H�1�"H�=
�"H�D$谁��A�$�D$�x������߃�A���{����T���H����������H�CH����fDH�SHH;SP��� ��H�C8������H�zH�{H�<
���FЃ��*E1�_�d�FЃ��aH��E1��:���H�CHH;CP�_�� �RH�C8�����DH�PH�SH�0@��
u��
H���Ê���ƃ��u�@Hc��H����9���E������H���4��H���1Ҿ���L����E����Hc��9��PH�SHH�r�H�sHH;s@�u����z�
�k����z�
�a���H��H�SH�T���f�E�����A�_�_���Hc��9�|�E����A�Gȃ���D����߃�E��A��.�vA���tH�CHH�P�H�SHH;S@v
�x�
�iH�߾�C���H�߉��$�����H�CHH;CP���� �H�C8�����qH�PH�SH�0@��
�
�F�E1�	vjH�CHH�P�H�SHH;S@v
�x�
�{Hc��H����9����E1��D$E1�E���L�������
H���ӈ���ƃ��t���_�J�FЃ�	w�H��E1����H�CHH;CP��� ��H�C8������H�PH�SH�0@��
u��@H�K@���H�CHH;CP���� ��H�C8������H�PH�SHD�8A��
��A�GЃ�	�����H������)���H��������*���H�CH����
H������ƃ�������Hc��H����;������E����H�{HH�W�H�SHH9S@�����
������
����H��H�{H����DH���`������c���H�CH���H�SHH�K@E1��D$H�B�H�CHH9��{����z�
�q����z�
�g���H�B��^���fD�
H������A���p���E1��O���E1�H�:B1�H���ǟ����H�s@H�P�H�SHH9�v
�x�
�dA����$�H�CHH�P�H�SHH9�����H�s@��H��腢��������H�CH���A�_�U���E���:���A�_���H���M�������H�SH����0H��E1��l������
H���*����ƃ������Hc��H����9���������z�
���H��H�SH���H���͡������H�CH�v���A�_���Hc��H����;���������H��膡�����t���H�CH���DA�����H�SHH�K@H�B�H�CHH9�����������H�����H���1Ҿ����
H���)����ƍ@Ѓ��������Q���H�{HE1�H�W��V���f�H�CHH�P�H�SHH;S@�9����x�
�/����x�
�%���H��E1��D$E1�H�CH�"�H��蠠���������H�CH�a����x�
�{���H��H�CH�n���Hc��H�����E�����#�x�
�����H��H�CH����
H���?���A�������x�
�����H��H�CH���A�����y��Hc��H����;���������E���F����0������AWAVAUATUSH��H�$H��xfo
g�dH�%(H��$h1�H��$�I��)�$�H�D$XH��$�HDŽ$���� ��H��$�L��1�H��L��$`	H�D$0H��$ �z��L�d$@I��M��H��$�H�\$8fo�$�H�D$HA�� H�D$ H�D$(��D$�D$�����l$L��I��)�$`	�����D$��fA���H�|$(H�t$ H�?H�T�I9��M��I)�I�I��H��'�r�H='�'H��HN�H�H�T$(H�H��H�t�v��H���<�O�<$H�t$ H��H��L��H���N�4�I���Ty��H�t$8L��M��H�H�D$PH���9y��H�L$(H�t$@L��L�$�L��� y��H�t$ H�D$HH�L$PH9�tH��H�L$ �z��H�L$ N�|9�N�t3�O�l,� �
H�D$(H�DA�I9����L�d$@H�\$8H�L$ �D$����Lc�H�E�B�`�D$=����|$����D$�����|$��HcD$�=a���� �f.��D$�=;6w;H�H����B9�u*H�D�BE���-	A�������A���H��xF�`E���{Ic�H��H�D$PH�q�D��D)�D��H�I��H��$�E����I���� I��H�D$`I��L��H��I�DH��$I�EH��$fo�$)�$p����H�L$PA�P�H��H�NjH�5�^L�L$p�H1�D�T$hD�D$��s��D�T$hD�D$L�L$pE����A�B�D��$�I�L�H��O�d�L�|$hH�=��H�D$K�OL�t$pI��I��H��L�l$xI��@D��H�5k<H��1��ls��K�wL��L��H��I��I��I���<C�	���H�5<H��1��8s��L;t$u�L�|$hL�t$pL�l$xD��$�A�����H��eJc�H�>��@H�|$ H��L���~���;����T$H�5�:H��1���r���� ������� ��1��D$���@�� �{L�UH��$�HDŽ$�4H�EM���vI��y
H���HDŽ$H��$�I�BH� �@H�@IBA�J!H�D$`A�B�L$hH�D$P�ȃ� �L$xH�MH���D$pH;MP��� ��H�E8������H�AH�EHD�	A��
���H�}@H�GH9EH���D$h��1�H���L�|$D�|$pL��$�L�t$`L��$�I��L�d$pI���f.�H�]PI��L9����C�<
��<
uH��D���E����M����H��L��L��L)��r��H9]P��H�EP���H�EH���y�H���������H�EHH�PH�UH�8
��H�}@H�L$PH�uPE��L��蔟�������L�U0I� �;���M�RH�]PL9��;���������Q���Dž�M���G���H���H��L��L)��dp��I��H9]P�@����H�59L����q���'���fDHcD$�=a��D�D$E����fo�$���$��|$��$�)�$p�D$u�|$����	�L��L��A��L�d$ H���	fDHc�H��}�P=�t��=;6wH�H�
H�f�<A�}I9���A�E�AoEL��I��H�=�8H��E�}I���D$H�&��4PL��)�$pI���N������ �n���H��H��L��D$�z���D$�S���H�
9D�AE���n���H��D���� M�ffo�$�I��H��$�I�F�D$M�u)�$�A�EH��$�A�]I�E�����M��D�D$M���D$�-D�D$M��I��I��L��M��D$���t,�=a��H�L$0H��$�M��H�=�7�L���A�� ��H�-��M9�t1f�I�L��H��M��H�=�7I��H��I���tE����M9�u�L;l$HtL��L���/r��H��$�H;t$XtL���r��H��$hdH3%(�D$��	H��x[]A\A]A^A_�I�E�� H��$H��$fo�$)�$p���ºI��H�D$`A�����H�
�kE��Jc�H�>��f�H�ي��� ����1�H��H��5H�5x2��l��H�T$0��H��H��$�虇��H�5�5H��1���l������M���D$M��L��M��L�l$ I���HcT$H�T��4�C���D�D$H�<��4E���j���H�D$0H��$H�$H��$�H��L��$H��$ H��$�H��H�T$H�D$蓤�������H��2����H�t$0H��L$����L$�����fo�$���$���$�)�$p�D$���H�5�4H��1�1��k���D$����D$�� �����D$���LH��$�I��I��fo�$�D�D$�D$����I�A}@I����I�~�I�v�I�N�I�V�I�F�H���"L��8H��4�[�@��u/H�����t&L�E��A��A��uI��A��A���*�H�H��4��@��u/H�����t&L�E��A��A��uI��A��A����H�vH��4����u/H������t&L�E��A��A��uI��A��A�����H�IH��4�����u/H�����t&L�E��A��A��uI��A��A���Q�H�RH��4����u.H�����t&L�E��A��A��uI��A��A���~�H�@H��$0L��$0H�=X�"H��$8L��H��$@�H��$HH��H��$P�k��H��H��$��H���A�F��� ����	�I�F舕 H��H�I����(H�|$`L��H��$�fo�$H��H)�H�?H��I)�I)�H�qL�qL��H�
�jA�?M�mXH�D$P���C-�H��A���;6wHc�H�=��f;4O�|H�
�h�A�D$�x����H��lF�`E�������|$��t����t$���H�T$(H��1�H�L$ H�5H0�uh��H�L$ ���H�501��Zh���
�DL��L��L����s������DH��1H�5�-H��1�� h��H�D$PH��$H��H��$��<C迂��H�5�0H��1���g���� ���f�I�BM�ZI�Z H�MHHDŽ$H�D$PH���H�MXH��$�D��%��D$��A���<���� �~��EhD�؃�H�E�����B�D$@H�EH��t
H��
H�t$0H����k��H��(�G�t$H���{������fDH�5�.H��1��f���o�f.���!H�MHL�|$P�D$�]h���D$h��L�d$`I��D$x�� ���D$p����$��� f%����f�� A��I;L$P�zA��$ �kI�D$8�����\H�AI�D$H�)@��
����E����$H�
�pHc�H�>��H�L$0H��$�I��H�=�/�4����D$�����>���H��$�H�t$0H��������H����H;MP�d��� �W�H�E8�����I�H�AH�EH�	��
�J�D�؃��D$`���A������� ����A��@�29����D$`�D$hH��L�\$x�T$p�L$`L�T$�t��L�\$xL�T$�L$`�T$pA��t	��#�¹���tH�EHH�H�H�MHH;M@v
�x�
��H��M�BD��H��H��$S�L$`L��$�L�\$ L�T$p���AXAY���L�\$uQ�� tH�|$hL�T$`���!�L�\$PA��L�T$��H�5�JH��1��|t��L�T$L�\$PI�J�H���Hc��D���H��$�Hc��H���L�����q��H�UH�èu+H�����t#�����tH��H��H�T$��c��H�T$H�H��$�H���J����D$A���DH�EHH;EP���� ��H�E8������H�PH�UH���
����A���v��� t���A��@�J9��RI�z�GI�J����tH�EHH�P�H�UHH;U@v
�x�
�l�H�UHH�uXH��賊���D$ ����1�H�,H��D�D$H�5�(�c��H�T$0H���H��$���}��H�5�+H��1���b���� D�D$�^����D$����t$H���8����}�H�C�I9��x�{�
��������p�M��L����@I��L9����A�L��L���||����u����H����H�D$���@I9�r����fDH�T$0H�pH���f������
H���5n������@�L�|$L��$�L��$�L�d$pH��(�d�H�uHL�EXH��L)�H�D$PH��~0H��$��D$hu
�{�C�H��(H�T$PH��L���d���AH�����H�EPH��H�EHH�EH�p�Wk��H�L$`�T$P1�H�5UG�Pq��H�EHH�EH�EX��� ����Eh�D$Y����fo�$���$��D$��$�)�$p�D$�5�H��L�\$hL�T$P���L�T$PL�\$h����H�EH����H��D�L$�$p��D�L$A��#�6H��$�L�|$H��$D�|$pL��$�I��D��L��$�I��L�d$pD�d$x�I���H��1�M��
E1�D��L��H��$�S����ZY����\���
�%�I�FHI;FP��A�� ��I�F8������H�PI�VH�0@��
��L���9m��A������z�I�FHI;FP��A�� ��I�F8������H�PI�VH�(@��
���I�~@H�L$PI�vPE��H�T$`�a������˯�������I�VHH�B�I�FHI;F@����z�
����z�
����H��I�VH����L���A��������I�FH����L���(������M�I�FH�W���L���������-�I�L$H���H����������H�MH�������,Dž���D�؉�%@�D$huc9��9���I�z�.���H�EA�����A��@tH�EHH�UPH9�s	�8:�~���� �c��Eh�D$Y���I�b����9������tH�EHH�P�H�UHH;U@v
�x�
�0�H�UHH�uXH���t����D$ ���H��$�H;t$XtH���@b��H��$�H���]��H��$�H����H�T$H�t$H��H������H��$�����D�D$pH�L$PH�uPD�L$H�T$`�^���D�L$�����H��詧��H�EH��H�p�9g��H�EHH�EH�EX��� ���Eh�D$Y����H�D$XH�t$0H��M��H��#M��L��I��H��$�HDŽ$�����H�t$0H�p&L��M���ׁ��L�l$ �D$�d�D�؉ك��D$`A��@���I�b�����������I�z�[����\$`���������H���We���D$������t;��}���Dž������t$�����#H���i��H�MHH;MP����� ���H�E8�������H�AH�EHD�	A��
�C����
H���h��A���.����x����	��v
@�� �ѻH��L��H��L�xH��u�L�d$L��$�L��$�M�|$PM�|$H�cL������D$�D$xA�\$h���A��$!��	�A��$!�Á�z����q��D$���b��D$I�L$H��H�:�EA��$ uFI�D$8����u;H�PI�T$H�<
�����ɯ�� ���H�����I�D$HI;D$Pu�L���ӂ�����I�D$H뮉l$L��L�|$PH�EHL�d$`H�D$P��� �R��EhH�D$PH��H��H�EX��i��H�MHH;MP���� ��H�E8�������H�AH�EH�	�L$P��
���D$P��!��]���H��fHc�H�>���D$xM�|$PI�l$H��L���H)�A��$!��	�A��$!H�����H��H���d��H��H����L��H��H)��d��H�����H)�H��DŽ$�H�X�H�����HDŽ$�1�L��$�L�d$L��$�I�ź�M���p���;wH��H��H��H��u����	��v	�� �B�H��H��u��^���L��L�|$PL�d$`�Uh��t�|$p�@t1���0������E1��"1҃��
�K_���D$RH�EH�EHH��H�EX�V�l$L��L�|$PL�d$`H�MHH;MP�|��� �o�H�E8�����a�H�AH�EH���
����uh�ƀ������ �j��Eh��@����=����~��������H�EHH�P�H�UHH;U@���x�
���x�
���H��H�EH���l$L��L�|$P�uhL�d$`�ƀ����� ����Eh�N�l$L��L�|$P�EtL�d$`�P��Ut���m�H�ux�� H��H�ux���2�H���H���H��������Eh�ml����l$L��L�|$PL�d$`H�MHH;MP�-��� � �H�E8������H�AH�EHD�A��
���A��|���A��=����� �4��uh�$H��D�D$P��%���ҁ�����sY��D�D$P�EhA����9�H�EHH�P�H�UHH;U@�#��x�
���x�
��H��H�EH��f.��l$L��L�|$PL�d$`�Et�El9Ep����uh���b�@��:u@���R��D$L�� ����� ���y��Eh�� H�Ex�ElH�4H�ux����H�����H�4H����T��%H��H����W���;��l$L��L�|$P�uhL�d$`@�ƀ������J���$����!�� �� �J��Eh���I�D$@I�|$HH��H9����I�\$P�H��1H��考�����e�I�D$P�dL��L�=)I�D$H�Z���I�D$PI�D$H�fDI�D$P�eL��I�D$H�1���I�D$HI;D$P��A��$ ��I�D$8�������H�PI�T$H�<
�i���=u�I�|$H�L��H���Ղ����t�I�D$P�fL��I�D$H躜��I�L$HA�\$h���l$L��L�|$PL�d$`H�MHH;MP����� ���H�E8�������H�AH�EH�	�L$`��
����|$`<�M��uh�ƀ������ ����|$`=�Eh�X��|$`<����|$`��A�H�EHH�P�H�UHH;U@�+��x�
�!��x�
��H��H�EH�
�f��l$L��L�|$P�L�d$`�� ����Eh�� ����l$L��L�|$PL�d$`H�MHH;MP���� ���H�E8������H�AH�EH�<
�,���:�F��Eh����#���H�>	H�����H�UHH�J�H�MHH;M@v
�z�
�����u�|$h�Y���� ���Eh���l$L��L�|$PH�}@L�d$`H�GH9EH��H���a���Eh�\$�D$P�D$`������H��BD$P�D$P茓������̺H�EHH;EP����� ���H�E8�����w�H�PH�UH���
����� �+��\$�D$��!����?���|$=���|$�tH�EHH�P�H�UHH;U@v
�x�
����D$7Hc��H�����]h��t�|$pt��0tH�MHH�EPH9�s	�9:����|$P����q�����$����h�� �� �E��EhH������|$7H�����D$`��m��|$3�_�L���I�CH�����H�x���H��L���<����������� ����Eh�D$3�
�f��l$L��L�|$P�L�d$`�� �@��Eh����l$L��L�d$`D�|$pH�MHL�|$PH;MP����� ���H�E8�������H�AH�EH�<
�����*�c���=�������d�H�UHH�J�H�MHH;M@v
�z�
�l��T$h�]h����0t������A�B��ف����.��D$p�u���K��� ����ع9#��H��%���҃����R���Eh����l$L��L�|$P�EhL�d$`�A�ԧ��������T$h��th�0���������tH�El9Ept@�[H�=57�S��H��8�H�%�"L��$0H�=��"H��$0�P��H�Ex�� �ElH�4H�ux����H�����H�4H����ǿ��Eh����l$L��L�|$PH�ux�� L�d$`H��H�ux���n�H���H���H�������Eh�ml���l$L��L�d$`D�|$pH�MHL�|$PH;MP�M��� �@�H�E8�����2�H�AH�EH�<
�Y���&�º��=�q���.���������H�UHH�J�H�MHH;M@v
�z�
����T$h�]h����0t�������A�d��ف����P��D$p�u������� ���ع�#��H��%���҃����O���Eh���l$L��L�|$PH�EHL�d$`H��H�D$P�Eh�A���%=�q��v��A����=���D�L$h�uhA��@��0t	E���W���t
A��s����� �����Q!H��D�L$`%�D�D$P��҃����N��D�D$PD�L$`�EhA������H�EHH�P�H�UHH;U@v
�x�
�E������E�����A�@����z�A�� �p��H�=U�L��H��8�%H�5L�"H���n���?��L��L�|$PL�d$`�Uh��t�|$p�@t1���0����Hc�E1��'1ҿ
��Q���D$RH�EH�EHH��H�EX����l$L��L�|$P�uhL�d$`�El�ƀ�����A�����%=�}�@��0t��\$h%	øJDD$�D$�� ����5��EhH�ExH�4H�ux�����H�����H�4H����*��%H��H���L����L��L�|$PL�d$`H�MHH�L$H;MP�٧�� �̧H�E8�������H�AH�EHD�A��
���H�D$H��D�D$PH��H�EX�^Y���@H���AW��D�D$P�D$6A��@�E��� ���uh�"H��D�D$P����҃���wL��D�D$P�EhA���t)�� �Z�H�EHH�P�H�UHH;U@v
�x�
���H��$H��H����M���|$6��H�5H3H��1��.Y����� �ʸ�Eh����l$L��L�|$P�uhL�d$`@���K�H���~r���Ã�����H����	��H��PX���ŦH���/X��H���H�UHH��$�R���wRH�¾
��PX��_�P����H���\���H�EHH;EP�H����u�=����3�H����q����H���׉�����*�H���Hc��1��H��$Hc��H���L�����U��H�UH�èu+H�����t#�����tH��H��H�T$�G��H�T$H���� ����Eh�D$>�e��l$L��L�|$PL�d$`�� ����uh��#H���%���҃����MJ���EhH�MHH;MP����� ���H�E8�������H�AH�EH�<
�����=�����>����������H�EHH�P�H�UHH;U@�����x�
�����x�
����H��H�EH���@�l$L��L�|$PH�ux�� L�d$`H��H�ux����H���H���H����è��Eh�ml�9����L��L�|$PL�d$`H������D$����l$L��L�|$P�EhL�d$`�A�Ψ%=���H���o��A����=���������H�EHH�P�H�UHH;U@v
�x�
���D�D$h�uhA��@��0t	E������� ����$H��D�D$`%�D�L$P��҃����H��D�L$PD�D$`���Eh�E��E���<��A�A����/��A�� �%���H�=�
�LF��H��8�/H�5�"H���h������@�l$L��L�|$PH��L�d$`�n���Ã�=����� �Ǟ�uh��$H���%���҃�����G���Eh�������H�EHH�P�H�UHH;U@�{���x�
�q���x�
�g��H��H�EH�Z��f��l$L��L�|$PL�d$`H�MHH;MP���� ��H�E8�����ذH�AH�EHD�A��
���uh�ƀ������ ����EhA��@�(�A�������H�EHH�P�H�UHH;U@�����x�
�����x�
����H��H�EH����I�L$HI;L$P�n�A��$ �_�I�D$8�����P�H�AI�D$H�<
�����
����CL�������D$hI�L$HA�\$h����A�t$h���Au��1�%=�øA��$ �T�A�D$hI�L$HI;L$P�%�A��$ ��I�D$8������H�AI�D$H�<
����.�p�I�T$HI�L$@H�r�I�t$HH9�s
�z�
�:���0��	�֜I�D$HH�P�H9�����X��.L�������Ã�0��	�o�H��*1�L���g���A��$ ���I�L$HA�D$h��I�L$X�����l$L��L�|$PL�d$`H�MHH;MP�Ü�� ���H�E8�������H�AH�EHD�A��
����uh�ƀ�2���� �C��EhA��@�W�A������H�EHH�P�H�UHH;U@�i���x�
�_���x�
�U��H��H�EH�H��L��L�|$PL�d$`�D$�.��A��$ �۫��H�5,L��1��TQ��I�L$HA�\$hI�L$X���I��M�N�M�F�H��8H�PH�HH�@H��4HD�H��H�5ҧ"PQ�R��xa���� H��$�H�� ���I��H��8A�A�H�PH�HH�@H��4HD�H��H�5n�"PQ�R��a���� H��$�H�� ����� ���� ���H��A�H��8HDžA���Dž����jH�5�"jj�`��I�N�H�� �H��8H�5�"H��4HD�H���dc���� H��$����I�V�I�N��HDžH��8H�5¤"Dž����H��4HD�H��4HD��c���� H��$��'���� HDŽ$������ I�F�H��$����I�H��4����u)H�����t!H��у���uH�������s�H�@H��$0�H��$0�sF���� H��$����I�6H��4�*�@��u*H�����t!H��ƒ���uH���������H�vI�~��D���� H��$��5��I�H���ugH�����ttH��փ����[�H�������K�H�XH���>�H���v	���
�H���[C��H�5pH��H��1��'N��I�H��H��4�F���-�H��$��� ����� HDŽ$����H����m���� H��$��c���� �Ep��$��El�Ep�G���� ��Dž��$��$���� HDŽ$������ H���H�GTH�4H���������H�d��
H���?���� ������ A�F�H����EpA�F�H���H��������I�V�H��8I�H�5�"�G`��H��H��$�I�v��p���� �W��I�V�H��8H�5u�"�a���� H��$��,���� I�H��$����H���H��t-H�CH��M��H��H�5�H����4g��H���>��I�F��� H��$������� I�F�H��$������ I�F�H��$����I�V�H��8I�H�5'�"�J_���� H��$��f��I�N�I�V�H��8M�F�H�5ܠ"��X��I�H��4tH��8H�5С"H���^��H��$��� ���I�N�I�V�H��8M�N�M�F�H�5��"�Z��I�H��4tH��8H�5��"H���^��H��$��� ���I�N�I�V�H��8M�N�M�F�H�5X�"�Y��H��8I�H�52�"H���R^���� H��$��n��I�V�H��8H�5��"�'_��H��8I�H�5�"H���^���� H��$��*��I�N�I�V�H��8M�F�H�5��"�W��I�H��4tH��8H�5��"H���]��H��$��� ����I�V�M�F���H��8H�5M�"�XW��H��8I�H�5G�"H���o]���� H��$����I�V�M���H��8H�5�"�W���� H��$��X��I�N�I�V�A�1
H��8H�5̞"��V��H��8I�H�5Ɵ"H����\���� H��$��
��I�V�H��8��A�1
H�5}�"�V��H��8I�H�5w�"H���\���� H��$����I�H��8H�5��"�u]���� H��$����H�z�"H��8E1�1�H�=��"��:���� H��$��^��I�N��I�V�H��8H�5�"H��4HD��\���� H��$��"���� I�F�H��$��
���� I�F�H��$�����H����fh���� H��$������� ��Dž��$������ HDŽ$����A�F�I�V�H��8I�H��4���H�5�"HD��6[��H��H��$�I�v��rk���� �F��H����g���� H��$��&���� ��Dž��$������ H���H�>NHDŽ$�H�4H���������H�O���H���j9���� ���A�F�I�V�H�5��"H��8H��4���I�HD��MZ��H���H��$�H��H����� ���I�v�H���kj���� �?��H��8H�A�"E1�1�H�=5�"�8��H��8I�H�5��"H����Y���� H��$�����H��8H���"E1�1�H�=�"�T8��H��8I�H�5Ú"H���Y���� H��$����I�V�H��8I�H�5��"�]Y���� H��$��y��I�V�H��8I�H�5d�"�/Y���� H��$��K��I�A�I�V�I�N�H��8H��4H�5��"LE��R���� H��$������ ����$��Eh�Ѓ����@���� ��$�����H����6���� H���H��$������ H���HDž�H��$����H���I�^�H��t�Q6��H����� �^��I�^�H����.6��H����� �;��E�V��� E�������	ˆ� ���I�A�I�V�I�N�H��8H��4H�5l�"LE��Q���� H��$�����I�I�N�H��8H�5*�"�W���� H��$����I�I�N�H��8H�5�"�_W���� H��$��{���A�1�H���t��H��$�I�V�H��4�o���u*H�����t!H�2�����uH�������D�H�RH���H���h���� H��$����I�V�I�H��4�����u*H�����t!H��ƃ���uH�������[�H�R�H���;h���� H��$����I���H���h���� H��$��n��I�H��8�H�5��"H�HL�@��O���� H��$��7��H�
�"I�V�H��8M�H��H�5w�"H���O���� H��$����I�V�M��|H��8H�5@�"�{O���� H��$������� H���HDž�H��$������ H���HDž�H��$��{��H���I�^�H��t�F3��H���I�N��H��I�v���f���� H��$��6��H���I�^�H��t�3��H���I�F�I�V�H��8H�HL�@H�5T�"�N���� H��$�����A�1�1ҾH���lq���H��H��$�I�v�H���@f���� H��$����H���I�^�H��t�g2��H���I�N��H��I�v��e���� H��$��W��H���I�^�H��t�"2��H���I�F�I�V�H��8H�HL�@H�5u�"�M���� H��$����A�1�1ҾH���p���H��H��$�I�v�H���ae���� H��$������ H���HDž�H��$����H���I�^�H��t�b1��H���I�N��H���d���� H��$��Q��A�1�1ҾH����o����H��H��H��$��d���� H��$��	���� H���HDž�H��$����� ������A��� ����H���I�^�H��t�0��H���A�F�H��8H�5�"�������� ��	к�� I�F�H�HL�@�	L���� H��$��U��1ҾH����s��H��8�H�5��"H�HL�@H��$��K���� H��$��
���� H���HDž�H��$�����H���I�^�H��t�/��H���I�F��� H��$����I�H��4�8��u)H�����t!H��у���uH��������H�@H��$0�H��$0�,5��1�A�1�H��H����m���� H��$��3��I�6�A�1�H���m���� H��$����I�6H��4���@��u*H�����t!H��ƒ���uH�������Y�H�vI�~��1��1�A�1�H��H���Lm���� H��$����I�v�I��H��A��m���� H��$��j��I�N�I�v�H��M���l���� H��$��>��I�v��1�H��A���l���� H��$����I�v�M��1�H���l���� H��$������� I�F�H��$�����I�v�H��4�B�@��u*H�����t!H��ƒ���uH��������H�vI�~��h0���� H��$��t��I���H��A��k���� H��$��E��I�N�M��H����k���� H��$�����A�1�H���k���� H��$����M��1ɾH���sk���� H��$����I�6H��4�R�@��u*H�����t!H��ƒ���uH�������&�H�vI�~��Y/���� H��$��e���I�H��4���u)H�����t!H��у���uH�������ŹH�@H��$0�H��$0��1���� H��$����I�I�v�H���no���� H��$�����I�61�H���Mo���� H��$����I�v�1�H���+o���� H��$����I�H��$01��U1��H��H��H���n���� H��$��c���I�v��
H����n���� H��$��>���H��$01��0����
H��H���n���� H��$�����I�H��$0�H��$0�0���� H��$��ڿ��I�~�I�6�/���� H��$�麿��I�N�I�U�H�΃��<�H������tH��ǃ���uH������uH�qH����N��I�F�H��4����u)H�����t!H��у���uH�������͹H�@H��$0I�H��4����u)H�����t!H��у���uH���������H�@H��$0�H��$8�/���� H��$��;��I�H�փ��9�H�����tH�������uH������uH�rL��H����M��I�H��tX�u7H�����t/H��у���u"H������uH�PH���v	�����H��L��H���L��I���^�1�H���1�H���*-������H���L��H���pL��I�H��4����u)H�����t!H��у���uH�������~�H�@H��$0�H��$0HDŽ$8�p.���� H��$�錽��A�U�A�M�I�E��$I�V���$H��$��uH�����tH��������N�H��$H��H��H���K���� HDŽ$�����I�V�I�N�H��8H�5׌"��I��H��H��$��
X��A�V���!����	��� ��!�ļ��I�H�փ����H�����tH�������uH������uH�rH��8�B��H���KV��H���� HDžH��$��U����� �Ѓʀ���� ����$��1���I�V�I�N�H��8M�F�H�5�"�B��H��H��$��"W��A�F��� ����	�I�F� H���ػ���� ��������Eh黻��I�H�փ��f�H�����tH�������uH������uH�rH��8�zA���� �� ���ʀ��A�F���� ���-��EhH���U��H���� HDžH��$�����H��8H��"E1�1�H�=|"�{&��H��8H�5u�"H���H���� H��$��Ѻ��H��8H�ӈ"E1�1�H�=�{"�2&��H��8H�5��"H���lH���� H��$�鈺��H��"H��8E1�1�H�=~{"��%���� H��$��U���H��"H��8E1�1�H�=K{"�%���� H��$��"����� I�H��$�������!�y��� ��H�EHH�MPH9���H�P���#�����
u/���H9���H���B���
����#����p���vՃ� t��!tH��$H�5��H��� T��H���H���a�D�[E���'��� �G�����!�؊�� �.�����!�ͅ�� ������!����� ���I�V�H��8�H�5݇"�E���� H��$��̸��I�N�H��8�q
H�5�"�E���� H��$�霸��H��8�q
�H�5��"�OE���� H��$��k���I�V�H��8H�5��"�$F��H��8H�V�"1�E1�H�=Jy"H���#��H��8H�5ć"H��H����D��H��8I�H�5��"H����D���� H��$����I�V�H��8I�H�5�"�D���� H��$�龷����!�e��� 饷��H�MHH;MP���� �շH�E8�����ǷH�AH�EH���
����� ���H�EHH�P�H�UHH;U@v
�x�
����$H����-���t$PH����-��H���Hc��H����� ��H��H�EH��H�D$�X&��H���u+H�����t#�����tH��H��H�L$P���H�L$PH��E1��H����_��H�\$�D$5H�鶸���$H���Q-���D$P�2�� u=H�E8����u3H�PH�UH�<
���PЃ�	����H���-��H�EHH;EPu�H���G������H�EH�� �%��D$P����H���H�]H�
�{�H��PX��u�C�<_t	���ʃ�$H���,���\$P��H����i��������� �ͭ�EhH���l���D$5鶷�����V���HcL$PE1�1Ҿ9H���^���D$@鉷���� HDŽ$��Y����� HDŽ$��A���I�V�H��8I�H�5$�"�A���� H��$�����I�V�H��8I�H�5��"��A���� H��$������ I�H��$��δ��I�H��8H�55�"�B���� H��$�餴��I�H��8H�5Å"�^B���� H��$��z���I�V�H��8I�H�5-�"�0A���� H��$��L���I�H��8H�5��"�B���� H��$��"���I�V�I�N�M�F�M�H��4H��8H�5��"HD�H��4HD�I��4LD�I��4LD���;���� H��$��dz��I�H��4�ǫ�u)H�����t!H��у���uH���������H�@H��$0�H��$0�C$���� H��$��_����� I�H��$��H����� I�H��$��1���I�H��8H�5��"��@���� H��$�������!�=�� ����� I�H��$��ײ��I�6H����i��H��H����X���� H��$�魲��H��8I��H�5��"�b?���� H��$��~���H��8I��H�5h�"�3?���� H��$��O���I�V�H��8�H�58�"�?���� H��$�����I�H��8H�5�"��?���� H��$����I�6H���X���� H��$��ֱ��I�V�H��8H�5��"�?���� H��$�髱��H��8H�e�"E1�1�H�=�r"���H��8I�H�5+�"H���C>���� H��$��_���I�V�H��8I�H�5��"�>���� H��$��1����� I�H��$�����I�V�H��8I�H�5ŀ"��=���� H��$����I�N�I�V�H��8H�5��"�=��H��8I�H�5x�"H���=���� H��$�餰��H��8H�^�"E1�1�H�=�q"���H��8I�H�54�"H���<=���� H��$��X���H��8H��"E1�1�H�=Nq"���I�N�H��8H�5�"H����<��H��8I�H�5�"H����<���� H��$���I�6H���V���� H��$��ӯ���� HDŽ$�黯��I�V�I�v�H��I��8_���� H��$�锯��M�&I�^��H��FM��H���X��H�D$��u"H�����t�����tH��H���y��A��u$I�����tA�$����tH��L���O��H�D$�� H��$�����M�&I�^��H��FM��H���X��H�D$��u"H�����t�����tH��H������A��u$I�����tA�$����tH��L�����H�D$�� H��$��x���I���
�H��FI���{W��I���u"H�����t�����tH��H���a��L��$��� ����I���H��FI��� W��I���u"H�����t�����tH��H�����L��$��� �­���� I�H��$�髭���A��H��F�V���� H��$��z���I��I�V�M�F�I�N�H�pL�HH�@H��4HD�H��H��8PAQA�VH�5^}"�7���� H��$�H�� ����I��I�V�M�N�M�F�H�pH�XH�@I�N�H��4HD�H��H��8PVH�5}"S�6���� H��$�H�� 黬��I��I�V�A�I�N�H�pL�@H�@H��4HD�H��H��8PAPA�VH�5�|"�P6���� H��$�H�� �X���I��I�V�M�N�I�N�H�pL�@H�@H��4HD�H��H��8PAPA�VH�5<|"��5���� H��$�H�� ���I��I�V�A�M�F�H�HH�pH�@H��4HD�H��H��8PVH�5�{"Q��5���� H��$�H�� 閫��H��8H��z"E1�1�H�=�l"���A��H���FH���wT���I�V�I��H�HH�pA�H�@H��4HD�H��H��8PVH�5E{"Q���4���� H��$�H�� ���I��I�V�M�N�M�F�H�HH�pH�@H��4HD�H��H��8PVH�5�z"Q��4���� H��$�H�� 雪��I��I�V�A�A�H�HH�pH�@H��4HD�H��H��8PVH�5�z"Q��04���� H��$�H�� �8���I��M�F�A�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5"z"R���3���� H��$�H�� �ש��I��M�N�M�F�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5�y"R��p3���� H��$�H�� �x���I��I�N�A�A�H�PH�pH�@H��4HD�H��H��8PVH�5`y"R��
3���� H��$�H�� ����I��M�N�A�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5�x"R��2���� H��$�H�� 鴨��I��M�F�A�H��8H�PH�HH�@H��4HD�H��H�5�x"PQ�R��J2���� H��$�H�� �R���H����H��L��$H�5���<���� �#���H����H��L��$H�5j��P<���� ��H���1�H��L��$H�5G��$<���� �ȧ��L���M���tI�4$�H�=���������sH��$�L��H��I��H�5��H�D$H��$�;��H���I�T$H��H��$H�D$H�u@H��$(H���
����$$�i��� � ���H�EHH�MPH9����H�P���
u%驞fDH9����H���B���
�����#����p���vՃ� t�H����H��L��$H�5&��:���� 陦��H���H�����H�CH�ڹH��L��$H�5��H����:��H������� �K����� I�H��$��4�����!�<s�� ������!��t�� �����$H������-H�����H�MHH;MP����� ��H�E8������H�AH�EH���
����� �S�H�EHH��H��H�EHH;E@v
�z�
���H�P�H�UHH;U@������x�
�{����x�
�q���H��H�EH�d���@�� f%�f=����� �'���I�A�I�V�I�N�H��8H��4H�5t"LE��+���� H��$������!�cq�� �Τ����!��q�� 鵤����!�wq�� 霤����!��q�� 郤����!��v�� �j���H���H�������I�F�I�N��H��8H�5�r"H����0���� H��$�����I�V�I�N�H��8H�5]u"��0���� H��$����I�V�I�N�H��8M�F�H�5rr"�m*��H��H��$���>��A�V���!����	��� ��!闣���� ��!��H��f�� ��҃��	Љ�$��4=���� �X���I�N�I�V�H��8H�5�s"�
0��H��H��$��M>��A�F��� ���������	���!�� ��	Ȉ�!����� �����!H���A�F���!�<���� ���I�V�I�N�H��8M�F�H�5�q"�A)���� H��$�鍢��I�F�A�I�V�I�N�H��8H��4H�5�s"LE��)���� H��$��L���I�V�I�N�H��8H�5�s"�/���� H��$�����I�F�A�I�V�I�N�H��8H��4H�5Yq"LE��(���� H��$��ܡ��H���H��������I�F�I�V�I�N�H��8H���H�5?p"�r.���� H��$�鎡���� H���HDž�H��$��h����� H���HDž�H��$��B���I�V�I�N�H��8H�5�o"�-���� H��$������� �_���!H���A�F�!�:���� �ݠ��I�H��8H�5�o"�.���� H��$�鳠��I�N�I�V�H��8H�5pn"H��4HD��[-��I�N�M�H��8H�5�p"H���'���� H��$��Z���I�N�I�V�H��8M�F�H�5xo"��&��I�N�M�H��8H�56p"H���&���� H��$��
���I�N�I�V�H��8M�F�H�5(o"�&��I�N�M�H��8H�5�o"H���n&���� H��$�麟��I�N�I�V�H��8H�5dn"�o,��I�N�M�H��8H�5�o"H���"&���� H��$��n���I�V�M�F��H��8H�5�n"��%��I�N�M�H��8H�5Io"H����%���� H��$�����I�v�H���V��H��8I�H�5(m"H����+��H��8H�5m"H���,���� H��$���!�Ǟ���� I�H��$�鰞��I�V�H��8I�H�5+o"�f+���� H��$�邞��I�V�M���
H��8H�5�l"�%���� H��$��O���I�V�M���
H��8H�5�l"��$���� H��$�����H��8I��q
H�5>o"��*���� H��$����I�H��8H�5n"�+��H��H��@��8���� 鼝���� I�F�H��$�餝��H��8H�^n"E1�1�H�=�^"�	��H��8H��n"1�E1�H�={^"H������H��8H�5n"H��H���*���� H��$��6���H��8H��m"E1�1�H�=,^"���H��8I�H�5�m"H����)���� H��$����I�V�H��8I�H�5�m"�)���� H��$�鼜���� I�H��$�饜���� I�H��$�鎜��I�V�H��8H�5,j"�G*���� H��$��c���I�~��a��� �L���I�V�I�N�M�F�M�H��4H��8H�5�j"HD�H��4HD�I��4LD�I��4LD��$���� H��$����� I�F�H��$��ٛ��H��8H��l"E1�1�H�=�\"�:��H��8H�4m"1�E1�H�=�\"H�����H��8H�5Jl"H��H���O(���� H��$��k���I�V�I�N��A�M�H��8H��4H�5�i"HD�H��4HD�I��4LD��:#���� H��$�����H��8H��k"E1�1�H�=\"�w��H��8I�H�5�k"H���'���� H��$��ʚ��I�V�H��8I�H�5uk"�'���� H��$�霚���� I�H��$�酚��I�H��4�/��u)H�����t!H��у���uH��������H�@H��$0�H��$0����� H��$�������EhH����3���� ����I�H��4�r���u7H�����t.H��ƒ����j�H�������C�H�[���@��"E1�H�پH���B���� H��$�錙��I�H��4�!z��u7H�����t.H��ƒ����"�H��������yH�[������#E1�H�پH���KB���� H��$�����I�H��4��y��u7H�����t.H��ƒ����,�H�������syH�[�����1E1�H�پH����A���� H��$�题��I�H��4�#y��u7H�����t.H��ƒ������H��������xH�[���^��0E1�H�پH���aA���� H��$��-���I�H��4��x��u7H�����t.H��ƒ����q�H�������uxH�[���G��2E1�H�پH����@���� H��$�鸗��M�L�ۃ��5kI������*kI��ƒ����kH�������	kI�[H�����jH�ك�H����j�H��DuZH����jL���I�D$H��v,H�xt%��uH��H��-���v"H��L���(<����uH��L���y<������jH��8H�5[h"L���$���� H��$��ǖ��I�H��8H�5.h"�$���� H��$�靖��I�6H���M��H��H���<���� H��$��s���I�6H���hM��H��H���<���� H��$��I����� ����Zw�� �Eh���� ������ I�F�H��$�����M�&I�^��H��FM��H���?��H�D$��u"H�����t�����tH��H�����A��u$I�����tA�$����tH��L�����H�D$�� H��$��v���I���
�H��FI���y>��I���u"H�����t�����tH��H���_���L��$��� ����I���H��FI���>��I���u"H�����t�����tH��H������L��$��� ����� I�H��$�驔���A��H��F�=���� H��$��x���I��I�V�M�F�I�N�H�pL�HH�@H��4HD�H��H��8PAQA�VH�5\d"����� H��$�H�� ����I��I�V�M�N�M�F�H�pH�XH�@I�N�H��4HD�H��H��8PVH�5�c"S����� H��$�H�� 鹓��I��I�V�A�I�N�H�pL�@H�@H��4HD�H��H��8PAPA�VH�5�c"�N���� H��$�H�� �V���I��I�V�M�N�I�N�H�pL�@H�@H��4HD�H��H��8PAPA�VH�5:c"������ H��$�H�� ���I��I�V�A�M�F�H�HH�pH�@H��4HD�H��H��8PVH�5�b"Q������ H��$�H�� 锒��I��I�V�M�N�M�F�H�HH�pH�@H��4HD�H��H��8PVH�5�b"Q��-���� H��$�H�� �5���I��I�V�A�A�H�HH�pH�@H��4HD�H��H��8PVH�5b"Q������� H��$�H�� �ґ��I��M�F�A�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5�a"R��i���� H��$�H�� �q���I��M�N�M�F�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5]a"R��
���� H��$�H�� ����I��I�N�A�A�H�PH�pH�@H��4HD�H��H��8PVH�5�`"R������ H��$�H�� 鯐��I��M�N�A�I�N�H�PH�pH�@H��4HD�H��H��8PVH�5�`"R��F���� H��$�H�� �N����� HDŽ$��6���I�V�H��8H�5T`"����H��$���� �s�� �Eh���� ����*H���0.���&H���#.��H��M�F�I�V�H��8jA��jH�5�_"j���H��8H�5�_"H�� H���Y��H��$���� ��r�� �Eh���� �W����*H���-���&H���-��H��M�F�H��8jA��H�5B_"j�j����H��8H�5._"H�� H������H��$���� ��q�� �Eh���� ����� �Ѓ�@���� ������$���q�Eh���Eh�� 郎��I�V�I�v�H��I��>���� H��$��\���E�N��� E�������	�I�F��� ��H��$����q�� �Eh���� ����M�&I�^��H��FM��H���7��H�D$��u"H�����t�����tH��H����A��u$I�����tA�$����tH��L������H�D$�� H��$��}���I��M�F�A�H��8H�PH�HH�@H��4HD�H��H�5m]"PQ�R������ H��$�H�� ����I��M�N�M�F�H��8H�PH�HH�@H��4HD�H��H�5
]"PQ�R������ H��$�H�� 黌��I��H��8A�A�H�PH�HH�@H��4HD�H��H�5�\"PQ�R��O���� H��$�H�� �W���A���H��F�Z5���H��8A�H�PH�HH��$�A�H�@H��4HD�H��H�5#\"PQ�R������� H��$�H�� �ы��H��Y"H��8E1�1�H�=�L"�2����� H��$�鞋��I�H��8H�5�["�X���� H��$���!�m���I�H��8H�5|["�'���� H��$���!�<���I�H��8H�5K["����� H��$���!����I�H��8H�5["������ H��$���!�ڊ��I�H�փ���mH�����tH�������uH������uH�rH���]3��I��� Dž����H��$��|���I�H�Ӄ��YmH�����tH�������uH������uH�ZH��H���(��I�H���� H��$������� HDžI�H��4��l�u)H�����t!H��΃���uH��������lH�@H��$��ʼn��I�V�H��8H�5�Y"�~���� H��$�隉��I�H��4��j�u)H�����t!H��у���uH��������jH�@H��$0�H��$0������ H��$��2���I�6H��4��j@��u*H�����t!H��ƒ���uH�������ajH�vI�~��<����� H��$��؈��I�H�Ӄ����H�����tH�������uH������uH�ZH��H���X1��H��H����&��I�H��Dž������ H��$��e���HDžI�H��4��i��u*H�����t!H��ƒ���uH��������iH�[I�v�H���B.��H��4�\i�u)H�����t!H��у���uH�������3iH�@H��H������� H��$�鼇��HDžI�6H����-��H��4�b��u)H�����t!H��у���uH�������9�H�@1�H�������� H��$��Q���I�H��4����u*H�����t!H��ƒ���uH�������ՉH�[I�v�H���9-��H��4����u)H�����t!H��у���uH���������H�@H��H���w��� H��$�鳆��I�6H����,��H��4��g�u)H�����t!H��у���uH��������gH�@1�H������ H��$��S���I�H��4��g�u)H�����t!H��у���uH�������]gH�@H��$0�H��$0������ H��$����I�6H��4�A�@��u*H�����t!H��ƒ���uH��������H�vI�~����� H��$�鑅���� I�H��$��z���I�V�H��8I�H�5�U"�0���� H��$��L���I�V��H��8H�5S"H��4HD������ H��$�����H����*H���*����t�&H���o*�����T�H�5j�H��1��6����� HDŽ$�龄��H����*H���**����t�&H���*�����h�H�5�H��1������ HDŽ$��h����� I�F�H��$��P���I�V�H��8H�5�R"�	��I�V�H��8H�5R"H�������� H��$�����H��8H�
R"E1�1�H�=E"�l�I�V�H��8H�5*R"H�����H��8H�5�Q"H��H������� H��$�饃��H��8H��Q"E1�1�H�=�D"��H��8I�H�5eQ"H���=���� H��$��Y���I�V�H��8I�H�5<Q"����� H��$��+���H��8H�-Q"E1�1�H�=!D"��I�V�H��8H�5JQ"H������H��8H�5�P"H��H�����H��8I�H�5�P"H������� H��$�鬂��I�V�H��8H�5�P"�e��I�V�H��8H�5sP"H���K��H��8I�H�5bP"H���2���� H��$��N���H��8H�PP"E1�1�H�=DC"��H��8I�H�5P"H�������� H��$������� �D$=H�UT=G�XT��(�OT��[�FTH���H�H�H��H����������H�+��
H���F��� 銁���� H���H��|$LH����������I�H��$��K����� I�H��$��4����� I�H��$������� HDŽ$�����H��8H�O"E1�1�H�=�A"�f�H��8I�H�5�N"H���
���� H��$�鹀��H��8H��N"E1�1�H�=�A"��H��8I�H�5�N"H���Q
���� H��$��m���I�V�H��8I�H�5HN"�#
���� H��$��?���I�V�H��8I�H�5*N"����� H��$�����I�V�H��8H�5�O"��
��H��8I�H�5�O"H������� H��$�����I�V�H��8H�5�O"�
��H��8I�H�5�O"H���m���� H��$����H��8H�kO"E1�1�H�=@"���H��8I�H�5AO"H���!���� H��$��=��H��8I�H�5\N"���H��8H�)M"1�E1�H�=@"H����H��8H�5�N"H��H������� H��$���~���� H���H��H�4H�������~��H�0���
H���K��� �~���� H���H���H������I�V�H��8H�5�L"�'���� H��$��C~���� ����0��Eh�&~���� ����M��Eh�	~��H��8H�5+N"1������� H��$���}��I�V�H��8H�5�M"����� H��$��}��I�V�H��8H�5�M"�n���� H��$��}��I�V�H��8I�H�5=L"�@
���� H��$��\}��I�H��8H�5{N"����� H��$��2}��I�V��H��8H�53K"H��4HD���
���� H��$��|��I�V��H��8H�5+L"H��4HD��
���� H��$���|��H�kM"H��8E1�1�H�=�="�#��� H��$��|��I�V�H��8H�5�L"�H
��H��8H�5JN"H���2
���� H��$��N|��H��8H�PJ"E1�1�H�=D="��H��8H�5QL"H����	��H��8H�5�M"H����	���� H��$���{��H��M"H��8E1�1�H�=�<"�P��� H��$��{���� �� �� �{���� �I�V�H��8H�5nJ"�Y	���� H��$��u{��H��8I��!H�5�L"�*���� H��$��F{���� �����Eh�Ѓ����@���� ��$��{��H�������� H���H��$���z��I�^�H�����H����� ��z��A�^�H��8�A�H�5J"���������� ��	�I�V��� �"��I�V�H��8H�5I"H���8���� H��$��Tz���� I�H��$��=z���� H�uxH�{�H�t6H�ux���)z��H����LH������ �y���� H�uxH�7�H��H�ux����y��H����LH���s��� �y���� I�F�H��$��y��I�N�I�V�H��8M�F�H�5H"� ��H��8I�H�5I"H���7���� H��$��Sy���� I�F�H��$��;y���� I�H��$��$y��I�V�H��8I�H�5�G"������ H��$��x��I�N�I�V�H��8H�5�G"���H��8I�H�5rH"H������� H��$��x��I�V�I�N�H��8M�M�F�H�5IG"����� H��$��xx��I�N�I�V�H��8M�N�M�F�H�5G"�e��H��8I�H�5�G"H������� H��$��(x��I�V�H��8��M�M�F�H�5�F"����� H��$���w��I�V�H��8��M�N�M�F�H�5�F"����H��8I�H�5dG"H������� H��$��w��I�H��8H�5�H"�Z���� H��$��vw��I�H��8H�5EI"�0���� H��$��Lw��I�H��8H�5�G"����� H��$��"w��I�H��8H�5�E"������ H��$��v��I�H��8H�5�F"����� H��$���v��I�V�H��8H�5�F"����� H��$��v��I�V�H��8H�5aF"�\���� H��$��xv���� I�H��$��av��I�V�H��8I�H�5�E"����� H��$��3v��I�V�H��8I�H�5�E"������ H��$��v��I�N�I�V�H��8H�5�E"���H��8I�H�5�E"H������� H��$��u��I�V�H��8�H�5fE"�q���� H��$��u��I�V�H��8�H�56E"�A��H��8I�H�5E"H���(���� H��$��Du��H��8H��D"E1�1�H�=:6"��H��8I�H�5�D"H�������� H��$��t��H��8H��D"E1�1�H�=�5"�Y�I�N�H��8H�5�D"H�����H��8I�H�5fD"H���v���� H��$��t��H��8H�LD"E1�1�H�=�5"����H��8�H�5 D"H���(���� H��$��Dt��H��8H��C"E1�1�H�=:5"���H��8�H�5�C"H������H��8I�H�5�C"H������� H��$���s��I�V�H��8H�5�C"����� H��$��s��H��8H�lC"E1�1�H�=�4"���I�N�H��8H�51C"H���I���� H��$��es��I�V�I�N�H��8H�5�B"����� H��$��6s��H��8H��B"E1�1�H�=,4"���H��8I�H�5�B"H�������� H��$���r��I�V�H��8I�H�5�B"����� H��$��r��I�6H���)��H��H�������� H��$��r��I�6H���)��H��H������� H��$��hr��I�N��I�V�H��8H�5%@"H��4HD������� H��$��,r��I�~���vI�V�I�N�H��8M�H�5=A"����� H��$���q��I�V�H��8I�H�5�@"����� H��$��q��I�~���wI�V�I�N�H��8M�H�5�@"�2����� H��$��~q��I�V�H��8I�H�5)@"�4����� ��vH��$��� �Cq��H��8I�H�5ZB"����� �cvH��$��� �q��I�6H���(��H��8H�5#?"H������� H��$���!��p��I�6H����'��H��H�������� H��$��p��I�6H���'��H��H������� H��$��|p��I�N��I�V�H��8H�59>"H��4HD��$����� H��$��@p��I�V�I�N�H��8M�H�5_?"������ H��$��p��I�V�M���H��8H�5,?"����� H��$���o��I�V�I�N�H��8M�H�5�>"�]����� H��$��o��I�V�H��8I�H�5T>"�_����� ��tH��$��� �no��H��8I�H�5�@"�(����� ��sH��$��� �7o��I�V�H��8I�H�5�@"����� H��$��	o��I�V�H��8I�H�5�="����� H��$���n���� �����s�EhI�H��$��n��I�H��8H�5�?"�m����� H��$��n���� I�H��$��rn��H���L��H�������� �Tn���� I�H��$��=n���� �����:s�Eh� n��I�V�H��8I�H�5�;"������ H��$���m��I�6H����$��H��8H�5	<"H������� H��$���!�m��I�H��8H�5M<"�p����� H��$���!�m��I�H��8H�5�>"�?����� H��$��[m��I�H��8H�5<"������ H��$��1m��I�V�H��8I�H�5�="����� H��$��m���� ��qI�V�H��8H�5�:"����� H��$���l��I�V�H��8I�H�5N<"����� H��$��l��I�I�N�H��8H�5�;"�S����� H��$��ol��I�I�N�H��8H�5�="�%����� H��$��Al��I�I�N�H��8H�5�="����� H��$��l��I�I�N�H��8H�5^="������ H��$���k��I�V�H��8I�H�58="���H��8H�5�9"H������� H��$���!�k��I�H��8H�5�<"�T����� H��$��pk��I�V�H��8I�H�5�<"�&����� H��$��Bk��I�V�H��8I�H�5�;"���I�V�H��8H�5�:"H�������� H��$��j��I�V�H��8I�H�5}:"����� H��$���j��I�V�H��8I�H�5�8"����� H��$��j��I�V�I�N�H��8M�H�5�:"� ��� H��$��lj��I�V�H��8I�H�58"�"����� H��$��>j��I�H�Ӄ���nH�����tH�������uH������uH�ZH��H�����H��H���C��I�H��8H�5z:"����� H��$���i��I�6H��4�Gn@��u*H�����t!H��ƒ���uH�������nH�vI�~������� H��$��oi��I�H��4��m�u)H�����t!H��у���uH��������mH�@H��$0�H��$0������ H��$��i��I�6H��4�qm@��u*H�����t!H��ƒ���uH�������EmH�vI�~������ H��$��h��I�H��4�
m�u)H�����t!H��у���uH��������lH�@H��$0�H��$0�)���� H��$��Eh��HDžI�H��4��l��u*H�����t!H��ƒ���uH�������elH�[I�v�H���"��H��4�V�u)H�����t!H��у���uH�������VVH�@H��H���`���� H��$��g��HDžI�H��4��k��u*H�����t!H��ƒ���uH��������kH�[I�v�H���y
��H��4��k�u)H�����t!H��у���uH�������ekH�@H��H������� H��$���f��H��8H�5e6"����� H��$���f��I�H�Ӄ��HUH�����tH�������uH������uH�ZH��H���G��H��H������I�H��8H�5�5"�6��� H��$��Rf��H��8H�5L6"��
��� H��$��&f��I�6H��4��b@��u*H�����t!H��ƒ���uH��������bH�vI�~��0���� H��$���e��I�V�H��8I�H�5�3"���� H��$��e��I�V�I�N�H��8M�H�5�5"� ��� H��$��le��I�N�I�V�H��8H�5)3"H��4HD���I�N�M�H��8H�5?5"H������� H��$��e��I�N�I�V�H��8M�F�H�514"��I�N�M�H��8H�5�4"H���w��� H��$���d��I�N�I�V�H��8M�F�H�5�3"�D�I�N�M�H��8H�5�4"H���'��� H��$��sd��I�V�M�F��H��8H�5�3"���I�N�M�H��8H�5N4"H������� H��$��"d��I�N�I�V�H��8H�5�2"���I�N�M�H��8H�54"H������ H��$���c��I�V�H��8H�5�4"��I�N�M�H��8H�5�3"H���B��� H��$��c��I�v�H�����I�N�M�H��8H�5}3"H����H��8H�5�1"H������ H��$���!�4c��I�V�H��8I�H�52"����� H��$��c��I�V�H��8I�H�5�1"���� H��$���b��I�V�H��8�H�5�1"���� H��$��b��I�V�H��8�H�5�1"�\��� H��$��xb��H��8I��H�5Z1"�-��� H��$��Ib��H��8I��H�531"���� H��$��b��I�V�M��+H��8H�5`0"���� H��$���a��I�V�M��-H��8H�5-0"�h��� H��$��a��I�V�M��*H��8H�5�/"�5��� H��$��a��I�V�M��/H��8H�5�/"���� H��$��Na��I�V�M��%H��8H�5�/"����� H��$��a��I�V�M���H��8H�5a/"���� H��$���`��I�V�M���H��8H�5./"�i�H��8��H�5�1"H���~��� H��$��`��H��8I���H�5�1"�O��� H��$��k`��H��8I���H�5�1"� ��� H��$��<`��I�V�M��|H��8H�5�."���� H��$��	`��I�V�M��^H��8H�5O."���� H��$���_��I�V�M��&H��8H�5."�W��� H��$��_��I�V�M���H��8H�5�-"�$��� H��$��p_��I�V�M���H��8H�5�-"����� H��$��=_��I�V�M���H��8H�5�-"���� H��$��
_��I�V�M���H��8H�5P-"���� H��$���^��I�V�M���H��8H�5-"�X��� H��$��^��I�V�M���H��8H�5�,"�%��� H��$��q^��H��8I��!H�5�/"�&��� H��$��B^��H��8I��~H�5d/"���� H��$��^��I�V�M���H��8H�5Y,"���� H��$���]��I�V�M���H��8H�5&,"�a��� H��$��]��I�V�M���H��8H�5�+"�.��� H��$��z]��I�V�M���H��8H�5�+"���� H��$��G]���� �� �� �2]���� �I�H��8H�5�+"����� H��$��]��I�V�I�N�H��8M�H�5X,"���� H��$���\���� I�H��$��\���� HDŽ$�>�\���� HDŽ$�<�\���� HDŽ$���p\���� HDŽ$���X\��I�N�I�V�H��8M�H��H�5�*"H������� H��$��\��� H�=���m��H��$0I�~��|��H��8�H��'"L��$0H�=
'"H��$8�M��I�N�I�V�H��8M�H��H�5*"H���G��� H��$��[���� I�H��$��|[���� I�F�H��$��d[��I�V�H��8H�5�)"��I�V�H��8H�5+)"H������ H��$��[��H��8H�!)"E1�1�H�="���I�V�H��8H�5>)"H����H��8H�5�("H��H������ H��$��Z���� �Et�Et��$��Z���� ���Dž���$��yZ���� H�uxH��H�ux���jWH���H��H������0WI�F؃�H�E�WA�F�I�V��EhA�F�H��8H�5+"�EtA�F�Dž������������� H��$���Y��I�H��8H�5M+"���� H��$��Y��H�*"H��8E1�1�H�=�"����� H��$��Y��I�V�I�N�H��8H�5�)"�>��� H��$��ZY��H��)"H��8E1�1�H�=P"����� H��$��'Y��I�V�I�N�H��8H�5Y)"����� H��$��X��H��8H��)"E1�1�H�=�"�Y��H��H��$��u!H�����t�����tH��H������1�E1�H�پH������� H��$��X��I�V�H��8I�H�5;)"�6�H��$�I�V�H��I�����!�� �?X��H�*"H��8E1�1�H�=5"����� H��$��X��I�V�H��8I�H�5�)"����� H��$���W��H��8H�P("E1�1�H�=�"�?��H��H��$��u!H�����t�����tH��H�����1�E1�H�پH������� H��$��fW��I�V�I�A���uH�����tH��ƃ����E��uH������tH��ƃ����JEH��8H�5}'"����� H��$���V��I�H��4�EH���u*H������t!H��ƃ���uH��������DH�Q1�H���;���� H��$��V���� H�EH�EH��$�����TD�Eh�fV��I�F�I�H��8H�59'"H�E���� H��$��4V���� H�EH�EH��$��V���� �uh���$�����C�Eh��U���� H���H�4H�������DH�ExH��H�4H�ux����U��H�C��JH���K����� �U��I�V�I�N�H��8H�51'"�D��� H��$��`U��Hc��I�^���~%H��8H�5�$"H�LH��Dž���H��8H�5�&"H������� H��$��U��M�f�I�A��uI�����tI�$�ƒ�����CI��A����H�������H��D$�ƒ�����CM��L�D$pti踽��L�D$pH�D$hA��uI������tI��ƒ�����C�T$L��H��L�D$p���L�D$p���0D�T$L��H������H����CH��8H�5�$"L��H������� H��$��T��I�V�H��8I�H�5�$"���� H��$���S��Hc��I�^���~%H��8H�5#"H�LH��Dž��u�H��8H�5�$"H���_��� H��$��{S���� I�H��$��dS��I�V�H��8H�5j!"���� H��$��9S��H��$"H��8E1�1�H�=/"蚾���� H��$��S��H�$"H��8E1�1�H�=�"�g����� H��$���R��I�V�I�N�H��8H�5�#"����� H��$��R��I�V�H��8H�5� "�]��� H��$��yR��I�V�H��8H�5 "�2��� H��$��NR��I�V�H��8I�H�5�#"����� H��$�� R��I�V�H��8H�5& "������ H��$��Q��H��8H��#"E1�1�H�=�"�V���H��8I�H�5m#"H������� H��$��Q���� H�MHH�MX�Q���� H�MH�D$H�MX�yQ��I�H��8H�5�"�3���� H��$��OQ��I�V�H��8H�5E "���H��8I�H�5_"H�������� H��$��Q��I�V�H��8I�H�5."����� H��$���P��I�V�H��8I�H�5"����� H��$��P��I�6H��4�[?@��u*H�����t!H��ƒ���uH�������/?H�vI�~�蹿���� H��$��UP��I�H��4�
R�u)H�����t!H��у���uH��������QH�@H��$0�H��$0������ H��$���O��I�V�H��8H�5#"����� H��$���O��I�V�H��8H�5�"�{���� H��$��O���� ����QQ�Eh�zO���� I�H��$��cO���� HDŽ$�4�KO���� I�H��$��4O��I�H�Ӄ���PH�����tH�������uH������uH�ZH��H�����H��H���9�I�H��8H�5H"����� H��$��N��H��8H�5I"��w���� H��$��N��H��8I���H�5�"�H���� H��$��dN��I�H��4�P��u*H�����t!H�������uH��������OH�R1ɾ!H������� H��$��N��I�H��4�sO��u7H�����t.H��ƒ����kOH�������DOH�[���AO� E1�H�پH�������� H��$��M��I�H��4��N�u)H�����t!H��у���uH��������NH�@H��$0�H��$0������ H��$��(M���� ������/�Eh�M��I�6H��4��/@��u*H�����t!H��ƒ���uH�������f/H�vI�~������� H��$��L���� HDŽ$�4�L���� �D$�L��I�H��8H�5�"�?���� H��$��[L��I�H��8H�5�"����� H��$��1L���� �����QH��8I��EhH�5"����H��8H�5"H������� H��$���K���� �����.I�V��EhH��8H�5�"�z���� H��$��K��fDM��L��M��I���X���
L����������T���
L���������(U��L��L�|$L��$�L��$�L�d$p�R��H���ZC��M��M��L��I��M���D$L�l$ �F��L�|$L�d$pL�l$L��$�L��$�H�t$H�]@��u)H�����t H�H�D$P�D$P����tH�����H�D$H��$�H��H��Y���D$A�L��L�|$L�d$pL�l$L��$�L��$�H������H�EL�
B"H�H�D$���H������@H��ƒ�������u>H�����t*�����tH��H��L�L$P�1���L�L$P�D$u:H�D$����t/H�t$H�H�D$P�D$P����tH��L�L$P��L�L$PL�D$H��L�ʾH�����H��H��H�EH�p���H�EH�t$x1�E1�1ɿ
H�EX���Hc��Z���H�UH�E��u,H�����t#�����tH��H��H�T$�f���H�T$H��D$A�9K��H�L$PA�P�H��H�>�H�5O�D�D$�H1��g���H��D�D$H�D$`�:?��H;MP��� �H�E8������H�AH�EH�9
��J���
H��L�\$�,���L�\$�rJ��f��uh���H��L�\$趴��L�\$�^J��H��zH��1�M��H�5IwD�D$輱��HcD$L��L��H�
��M���<AH���[��H�5pzH��1�花���D$�� �&F��H��L�\$hL�T$`�t��L�T$`L�\$h����T��H�MH�K���uh���H��������O���
H���B���A������$O���R?���������H������k��������
H��L�\$hL�T$P���L�\$hL�T$P���"M��M��M��L��I��M���D$I���MB���
L��������MJ��L���������I�D$H��[���AH�������N���������5���L��L�|$L��$�H�EPL��$�L�d$pH�EHHc��H���L����L$xH��$��Ž��H�D$���L��L�|$L��$�L��$�L�d$p��\u�Dž������L��L�|$L��$�L��$�L�d$p�� ��M���ER��L���L$xH��$�Hc��H���L���L�|$L��$�L��$�L�d$p����H�D$����
H��L�\$hL�T$`�j���L�\$hL�T$`���I��H��L�\$�<��L�\$����G��H�MH����
L���)��������Z��L��H�5ޕ1�L�|$PH��L�d$`�Ҿ���D$�}G����H�-����u:�T$����A��$ @�)E�D$I�L$HA�\$h�G���D$hL������P��/�HcT�H�>��bL������I�T$H1�I;T$Ps1ɀ:.����&��8���H�B�I�D$HI;D$@v
�z�
��D�CL���}���I�L$HA�\$h�oG��I�D$HH�P�I�T$HI;T$@v
�x�
�uD�|$h�Dj���L��L�|$PL�d$`H�EPH�EH�� ����� ���\P�Eh�D$
�7F��H�5��H��1��n���L�\$PL�T$��H��H����+DI��H����+A�$����	��v� t�L�d$L��$�L��$�M�|$PL��茷�����yQ��1�I�|$HL�d$H���A��L��H)�H����$�W�B�<5wY��Hc�H�>��H����H����H����H���H���H���H�oA��H�5Hr�G�������$H�����H�o��	��vӀ� t���@H��L�D$hH�t$议��L�D$h����J��H�t$H��$�H��L��DŽ$������$�tH����5���H9���$L�EXH��$��HJ���x�
��F��H��H�EH��F���x�
��M��H��H�EH�M��H������� ���H�D$H�@H�D$���:���H������-�������@H�5��H��1��o���H�E�D$Y�D��H��L�T$`�=����D$����C���#藸��H�����L�\$x�T$p��L�T$`�E������|g��I�D$HH�P�I�T$HI;T$@�cg���x�
�Yg���x�
�Og��H��I�D$H�Ag��fD�
L������O��A��=��,A��>��,��A�G��%=�5�D$h��@��0�D$Pt������� ��?�EhA�����?H�EHH�P�H�UHH;U@v
�x�
��?����B���|$P��B��A�@�����B��A�� ��B���H�=ar���H��8�-H�5�"H���M���B���H���
��;wH��H��H��H���\&����	��v�� tH��H��u���M���H��H��H����M����΃�	��v�@�� t߀8:��M����$�������H����O���uh����
����K����t�� ��� �WU����#�H���ҫ���@U���Eh%��������ha�����������-_����� ���Eh�P��A��=�N��A�u��%=�c�D$h��@��0�D$Pt������ �nF�EhA�����H�EHH�P�H�UHH;U@v
�x�
�iF����@���|$P��@��A�@�����@��A�� ��@���H�=Rp�٨��H��8�+H�5�"H���>���@��f����������X��H�EHH;EPs	�8=�V���t$H������D$4�%V��L�EHH����
A�x�L�D$H��PX���<U��L�D$A�@�<_�*U�����!U���U���D$M��W���D$G�X�����A��A�����A�@�����H��D�D$����
��H�����H��PX����H�EHD�D$�@���������l�)��(t �]��[t��{�C��<��B��1�H�T$PH��H�UXA�P���/��JH�
��Hc�H�>���D$J�[��I�z��@����B����Eh%��������Ca���.L�����H�d�1�L������c���
L���(�����.�u!�����b���l$L��L�|$P�L�d$`�� ��'�Eh�s>��A�t$h�d$�L��脨���:c��A���1$�H��D�D$P�d���D�D$P�c���D$��%>��H���������(H�MH�?c���T$h�]h����0t����'���U���P����ƒ� �����W����:��(H�MHH�AH9EP��(�y��'t9��"t4H���H�L$�
H��PXH�L$��u�A<_t	���n(�]h�D$O�W��H��1�����H��$�L�d$`H�D$hH��$��D$PH�D$pH�EHH;EP���� �wH�E8�����iH�PH�UHD� A��
��%A�D$���wSH�T$hH�t$pD��跩�����_��$��҉T$x��:�'����T$x9‹�$�DDd$�D$PD�d$�d���A�D$�����D��\$PL�d$`���tH�EHH�P�H�UHH;U@v
�x�
�J%Hc����t>H���H�5�kH������H�klH��hL�����HN�1��b����t$L�E1�1�H���L�D$P����	�Hc��l�L�D$P�BH��I������ ��$�Eh�D$B�;��A��o�������n���H���������$H�EH�~����x�
��?��H��H�EH�}?��D��H�������.����bL���#���H��������F;��H�MH�D[���@H���د��H������D$8A���X��H��H�L$P�s��H�L$P���b*H�MH�X��H�MHH;MP��(��\�3*H��$1�H��H���1��H����g�����Y���Eh0u��	��wH�]�Hc�����*H�EHH�P�H�UHH;U@v
�x�
��-��� ��*�Eh�c:����� ���Eh�I:��DŽ$��
H���Eh���M���0t%D$h��M��H�MHH��H+E@H�D$pH;MP��*�� ��*H�E8������*H�AH�EHD�A��
�YA��-�)A��~��5�D$x�D$PA��'��5A��`�7A��"�?5�� �q*A��tH�EHH�P�H�UHH;U@v
�x�
�*�|$P��L��H�EHH�P�H�UHH;U@��L���x�
��L���x�
��L��H��H�EH�L��f�H���x������5H�MH�VL��H�������D$���>��8����tH�EHH�P�H�UHH;U@v
�x�
�W$�D$��8��H�������.�� �6��@��"��M��H���I��H���SA�$<;w�H�>H��sك�$�M���>�H�>A�$<;��H��$�H��H)�H���kH��H��H��$��̠��H��$�H��$�H��� H��$���H����H��$�L�HL��J�	H��~�8-u�_H��H9�u�H��$�H�-�!L��$�M��L��$�M��I��H�]L��L��H��茢����uB�<#��H��H�"�!H9�u�M��L��$�H��$�L��$��FA�@�����A�� ��-H��D�D$`����D�D$`������� �b�EhA��������H�EHH�P�H�UHH;U@v
�x�
�]A�@Ѓ�
�%���D$�6��L��������
���I�L$H��Z���O$�L��贠���Z���z$H�dH�������� �W���uh�{$�H���y����W��H��c�y$H���П���� ��V��E1��/1Ҿ�
����D$TH�E�6��L��L�|$PL�d$`H�E0���H�E8H�EPH�EHH�EX�p�L��H�5LfH���[���� �3��L��L��$1�H��H�5�y������ �w3��H��$H�5�yH������� �T3��H��$H�5]yH�������� �13��H��$H�5�wH�������� �3��H��$H�5yH������� ��2��H��$H�5yH������� ��2��H��$H�5�xH���a���� �2��H��$H�5�xH���>���� �2���uh���H��譞���=���bL���;�I�L$HA�\$h�-5��L��H�5�dH�������� �.2���� �|���D$P����!��H�|H����H�5��H��1��L����D$5�3��H���W������{��H�MH��@���uh��!�H�����@��H�������=��0�����'H�UHH�J�H�MHH;M@v
�z�
�
.��u�|$h�L0�D$��n3����#�H��脝����F���uh��$�H���j����XG��H��$H�5\wH������� �1��L���z�����Q.I�L$H�V����� �<-�EhH�������=�
-���tH�EHH�P�H�UHH;U@v
�x�
�?.���	H�EHH�P�H�UHH;U@��2���x�
��2���x�
��2��H���D$|H�EH�q2��H�EHH�P�H�UHH;U@v�x�
u�x�
uH��H�EH���y��Hc��H���H��$L��$�H�������
�p�H���Hc�H�x�T�����$��y��H=���?�kHc�E1�1Ҿ8H�������D$?�1����$�H���ԛ���QA���D$��1��H���������H�MH��A��H��^�%H�������� ��B��H���1����@t!���tH�EHH�P�H�UHH;U@v
�x�
�8��� �F�Eh�1���uh�%�H���,����mB��H�5(�H��1��6����D$��0����� �g�Eh��0��E1��`1Ҿ�
膞���D$SH�E�0��H��$H�5xtH������� �b.��H��$H�5btH������� �?.���Eh��F��H�EHH�UPH9�s��΃�@��>��E����=�
5�=H������D$3�E��H���k�������4H�EH�pE����H���������v���D$��/��H��$H�5>rH���S���� �-���|$J�����H���H��H�������/H���H�H��H������t/H���H���H�H������@-��H��\�
H���̘���� �-��H�������]��8��� ��8�EhH���ҿ���D$���=��.����tH�EHH�P�H�UHH;U@v
�x�
�%�D$��.��H����������:H�MH�=�����������8P��1�H�����H�5��H��H��1�趥��I�H��8H�5�!������ H��$��,,��I��$�I�\$H�
�{�H��PX��u�C�<_t	����S���l$L�|$PL��L�d$`�C��H���]�������H�MH�.9��������A5��H��]1�H���!����D$�-��A�@������A�@Ѓ�	���A��(�gA��[�"A��{�gD��A�Q�(�fDH=��d-����\-���D$`���C���D$3�A-����� ��C����"���H���C����C������v��� �aC����"���H�������HC�����C�����H���茔��H��H����Eh�D$������ �c�s�uh@��t�� �Cf=�
�D$��	�D$�c,����� �x8�Eh�F,��H��覻������7H�MH�O��H�������=��7��tH�EHH�P�H�UHH;U@v
�x�
���D$���+��A���$�H��D�D$P���D�D$P��N���E#�H���ߕ���M��D$��+���uh��$�H��踕���B������������E����� �K2�EhH���0�����=�2���tH�EHH�P�H�UHH;U@v
�x�
�Y2�D$��!+��H��聺������H�MH�D��A�@������A�� ����+H��D�D$`藸��D�D$`�������� �
2�EhA�������H�EHH�P�H�UHH;U@v
�x�
�2A�@Ѓ�	�V7�D$��}*���?#�H��蓔���9���� �����1�Eh�D$K�;���Eh%����%�����:���D$]�j;����$H��WH��螓���� �:���uh��$�H��������9��H�~W��$H���c����� �9���D$Z�)��H����������2H�MH�=������7>�����Z>���|$h�O>���H�=(Y蠑��H��8�:H�5U�!H�������>��H��V�%H���̒���� ��E����%H���>����� �E���uh� "�H�������G��H�5�yH��1��'�����F��H���H�]HD�D$P�
�{�H��PXD�D$P��u�C�<_t	���mF��A�@Ѓ�	��.H�EHH�P�H�UHH;U@v
�x�
�+/H��$H��D�D$PH���H���D�D$P�|$6D���Z5H�5zH��1�聟����� �5�Eh�(��H�������=��-����4H�UHH�J�H�MHH;M@v
�z�
��-�T$h�]h����0t���l�D$N��A��?���ف�����?���D$p�u���,�D$��?���s$H�UH�������� ��@���uh�t$�H���|����@��H��T�r$H���Ӑ���� �r@����$H��TH��賐���� �@���uh��$�H���!����@��H�pT��$H���x����� ��?��E1�H�uP�H��V������;��H�EP�� �iH��H�EH�`���D$�&����"��/��'��/E1��'1Ҿ�
�8���H�E���� �P/�Eh�D$Q�:&���uh��%=t��Au@��0�`�|$h�U��� �23�Eh�D$D��%��H���J��������H�MH�3=���T$h�]h����0���������#H�=�s���H��8�H�i�!L��$0H�=z�!H��$0�ݎ���D$N�]h�[=���P����ƒ� ����}���뗁��@%���|$P����0%�����$%��E����@���%��H�QH9�v
�y:�1;����� ���EhH;MP���� ��H�E8������H�AH�EH�9
��H���Hc��H����F���H��H�EH��H�D$�ґ��H���u+H�����t#�����tH��H��H�L$P�u���H�L$PH��E1��H���M��H�\$�D$9H��0$���
H��蛗���f���H���~������V���H�MH�<����U"���H������H�MH����z�
��;��H��H�UH�};���P�����8���� ��8���>������ ���Eh�D$��#��H��L�������D$3���z#���I:���1H�=�s謏��L���H��H���H��$01�L���L��H��H��H�p�虊��H�
�!�H��8L��$0H�=�!H��$8�j���1���x�
���H��H�EH��A���Y3���uh��$�H�������@�����=��A�� ����=����#� H��輌���4��f;Ct��� uQ�Eh�C�D$�k"���El9Ep���� uZ�ExuG���t1�D$�� ������D$�*"���y"�H���@�����D$�	"���D$�!��H�ux�p"H��QH���|����Exu=�� t�H����q"H��QH���R����e����Ep�����D$�!���D$�!���鎇��������鐆�������H�D$PH��H�EX�]Ic�Hc�E1���
�����D$RH�E�1!��H�D$PH��H�EX�)��H�D$PH��H�EX�}믹�$�H�������M����uh���H������錈���靘����;�����ǖ����z����陕����$���L�d$�O,��D��L�d$�H��H�]I9��5,���U�Ѓ�	��v�< tޅ�u<=t<:�,��H�����H��H���H��sH��I9�v��JӀ�2v��߃�A��v�H)�H��L��H�����H��H��賍��H��H�pH� tH�pL���g���1�H��荈��M�|$P�+���Ή��H;�$�t
����H��$�L�EXH���H%���x�
���H���D$�H�EH��������uh���H��草���� �.���uh���H���l����c��A����%����B���1��ƒ��1��a����uh�%�H���1��������uh��H�������͌���uh��H������I����uh�+H������������uh�1�H���Ɉ���a����]h��4����� ��4����"���H��蓈����4���
H���ё�����J-����"� ��H���f����4���t$�S�g"H���L��������� ���EhHc��H����M���H�MH��H�D$H�L$P�'���H���u+H�����t#�����tH��H��H�L$`�ʄ��H�L$`H�T$E1��H�����H�L$PH��C�D$����t$�c"�H��蕇���]�����#�H���~������x�
�L�H���D$�H�EH�2��L��L�|$PL�d$`H�������.t7��tH�EHH�P�H�UHH;U@v
�x�
���������D$�����}l�H�EHH�MPH9���H���P���
����#���r���vՃ� t���H���j���H�D$pA���D$x�D$P ����
H���ߏ��A����H�EHH�P�H�UHH9U@s
�x�
��T$PH�5mH��1��v����D$5�!����� u0�Eh�D$E�������	�������� ����H�������uh��$�H�����빉l$L�|$PL��L�d$`�� th�P���vW������H�EHH�P�H�UHH;U@�����x�
�����x�
�{��H��H�EH�n���� �H��脅�����D$�N���D$C�A��D�D$h�uhA��@��0��<��E����<���/H���̨��E1��/1Ҿ�
�ӈ���D$TH�E����A�A�����A�� ���A���9<����D$����x�
�<��H��H�EH�;��L�xH�����@M��<"u&�ff�H��L��H�Y�L�`H��~C�@<"�E<\u�H��I�D$��H����I��H�����������L���M��1����H��$�H�xH��uH��$�L�H�%�H��$�H�xH��H��H��$��y���H��$�H��$�H�H��$��� u����H�D$H��H��H��$�H�������H��$�H��$��M��L��$�H�EL��$�H��$�L��L)�H��tH��L��H�|$��H��M���H��L��H��$����I�E H��$���I�}H����H�EI�UH�uH�|$��M��tYM)�L��L��褁��I�}I�E tI�}M��uSH�D$H��$�L��H�56�!H��8�j���H���L$��L���&��H�D$L��L��L)�H�������I���L��L�������H��L������H�EI�E �J���I�U�E���I�}H��u�H�E��H�D$H��L��H������I���I�D$��$�H�Y�M��I������H���������M������H��H��莽����tH��H��诳��I���@��H��4�<H��փ�����@��H�������H�H��@���uh�B$�H��D�D$詁��D�D$�z��x�
���H��H�EH���uh��"�H���s����,.���z�
��;��H��I�T$H�;���
H��虊��A������x�
����H��H�EH����uh���H���������L�d$`\$P�w����� u*�Eh�D$E����uh�i$�H���π���'���uh��$�H��赀��뿸�� u.�Eh�D$P�m����� u$�Eh�D$E�O���>$�H���e���뾹:$�H���Q����ȍP����ƒ� �����-���"H�=d�G���H��8�H���!L��$0H�=u�!H��$0�8���D$M�]h�-���P�����/���� ��/���H�=E��}��H��8�&H�5��!H���7����]h�/���uhA���ƀ����� ����Eh�K����� ���Eh�D$��)���T$h�]h����0t��u���%/���"H�=Ad�D���H��8�H���!L��$0H�=�!H��$0�5~���D$O�]h�/����� u�Eh�D$E����uh��#�H���~���ًuh��#�H���~���5����x�
����H���D$�H�EH�O��H���������L�bH�R����uh��<H���E~���� 鋻����SH���'~���� ��������H�����������H�YH��8H�IH�5�!�v���H��$�M��uFH��t5H��H��1�H������� H��$��p��1��ת���餩���� �S���� �G�������H��@�IH����|���� �R���H�������3���M�D$�D$M�d$���K���H������>���� ���H�������b���M�@�Y���H�����������CH�[�D$����A�u�A�U�H��H��$A�M�A�E���$H�މ�$H��e��$��$�ў���Vo���wy���A
H���z~��H�|$hH�D$����H�D$H�5�BH��H��1�肉�����L�ljD$x�ay���T$xH�5�eH��H�H1��X���L�D$p须��H����9H�L$P�
H��PX��uH�L$P�<_t	����0���|$h�/��H�EHH��H�D$PH��H��H��腨������H�H�H;]Ps%H����;�
H��PX��u��<_tƒ�w��[H�=I`�}��H�|$PH���H��$0H)�Hc�H��H�H��H��$8�x��H��8�H��!L��$0H�=)�!H��$@�lz���f���D$���������
H���]���A���.��H��H��$襡����z��1Ƀ�H��H��H��$�X���/����H���I����/��H��H��H�MX�D����@H���'���A���D$6��-����%��������+���x�
��+��H��H�EH�+����� u�Eh�D$E�"��A�s�b���uh�K!�H���*z����H�5�?H��1��7����D$�����"H�=�^H��|��H��8H���!H��L��$0�H�= �!H��$0H��$8�x������uh�� �H���y���.���uh�� �H���y������H��躞����u H�MH�b���x�
����H��H�EH������ ��"���D$PA���D$xH�MHH����
D��$��y�H��$�H��PX��u!H��$��A�<_t��D��$��@���L$PH�EHH��H�p�聥�����"����H��H�HEH�h�����t)�� �4H�EHH�P�H�UHH;U@v
�x�
���RE1�H�UHH�D$pHE@H)�Ic�H)¸����H�T$H9����gH��D�L$`���H�EPL�E01�1�1��
H�EH��{��H�L$p���H�ED�L$`H�H�L$H��H�L$P�PD�H �H!H�EHDž�H�EX�D$x����۸IÉD$�
���
H���
����D$`� ��H�\1�H��D�L$`�˙��D�L$`�8����x�
�����H���RE1�H�EH��H�MHH����
�y�H��$�H��PX���g���H��$��A�<_�S������J�������$H�=�a�5y��H��8�H���!L��$0H�=��!H��$0�&v���������D$����x�
�!��H��H�EH���H�HH9�v
�x:�o��H���N������ u=�Eh�D$^�X���
H�������D$P�k���x�
���H��H�EH����uh���H���>v��묁�u�|$h�	�D$�������?���uh���H���u���� �=����
H�Q9H���Mu���6����H�89H���4u���(<�����F����E�����D����?���� uM��H�MHH����
�y�H�L$PH��PX���J��H�L$P�A�<_�9�����0�����cc��H�EH�yc���
H���{~����� u��H���V������w���H�MH�c���z�
�<c��H�B�H�EH�/c��H���H�@H��v*H�xt#�� ����x�
�AQ��H��H�EH�4Q��H��]L��H���і���� �U���0H�=�^�v��H��8�H�!�!L��$0H�=��!H��$0�s���Ha��H��������e�� ������\T���uh��!�H���t���R��H�������I��H��у�����I��H�������uI��H�XH��t?H����]I�����TI��H��跗�����DI���jI����5F�����E��H��4�]I����|I���t����b��A�U�A�M�H��H��$I�EH�މ�$H�@\��$H��$�l����d��H�`[L��H���U����� ������ �����8t���d��fo�$�� A<$fo�$ A|$���H������tO�� �����l��H�������l���������l��H��H���~o���l�����k��I���t"�� �+��H���1�H���jn���H��H������un�� ���1��jI��H��������H��L�bM����H��H�ZL���t��L��H��H��H���O����� fo�$H��$�x ���H��ƃ���t.�� ���1���F����yF����-F��1���E��H������t;�� �K��H�������k���������k��H��H���Qn����k��H�z�
�� �����|��H�������l���������l��H��H���n���sl��H�������k���������k��H��H����m����k��H�������l���������l��H��H���m���l��������a�����������1��H���uh����H���jp���� �[H���uh���H���Ip���H��H�AH�B��u&H�����t�����tH��H���m��I�V�H��$��� I�\$������ u*�Eh�D$E����uh��#�H����o������uh��#�H���o��뿀z�
����H��H�UH�����
H����x������	����L����D���A�V�uh�bH���Yo�����H��2�`H���n���� 鰨��H��2�_H���n���� �v����
H���Wx��A���A����� u&�Eh�D$E����l$L�|$PL��L�d$`����uh�$�H���n���þ
L���w���$(���x�
����H��H�EH����x�
�b�H��H�EH�U��L$P�R�\$D��H�D$p�/�� u0H�E8����u&H�PH�UH�<
��9�tt��
tVH�EHH;EPu�H���Z�����u3H�EH�ȻR�H��豔��H�D$pA���D$x����D$P ���A�؋\$A��tH�R1�H���������\$A��,������z���|$P������j���x�
�q���H��H�EH�d����uh�I$�H��D�D$`�am��D�D$`�����P���v�� u8�D$�����D$`���������� uI�Eh�D$E�����
H�=`2�k��H��8��H�5��!H���v����D$�����uh��#�H����l���H����������+����+���L$P�S�.�����*����*���
H����u��9����������������
�,�������$�����L��L�|$PL�d$`魻���x�
�����H��I�D$H�s����z�
�.���H��I�T$H� ����
H���Mu��A���'��H���-�����u9H�MH�$H�����t~H��L�\$pL�T$�Yx���D$`��L�T$L�\$p�D$h������ �$H����H�MHH����
�y�H�L$H��PX��uwH�L$�A�<_tj��we����G����G��I�ztoH��L�\$x�L$pL�T$��w���D$`��L�T$�L$pL�\$x�D$h�'���
H���ft����� u��f���H��$�yu���_H���lu����H���|$`�w	��I�J������/����鿰��H��������������������H��H���g��鐰�������1��<���������uh���H���\j���� 鎮���� ������ ��c���uh���H���"j����c��H�^-�
H���yi���� �l��H�b-�
H���Yi���� �.�����w��I�N�I�V�H��8H�5m�!�H���H��8H�5R�!H���2����� H��$��N�����rv����%v����u��1��t��I�V�H��8H�5��!����� H��$�����uh���
H���)i���� �~����
H�},H���yh���V~���uh���
H����h���� �~��H�H,�#
H���?h���� �({������H���H��H�����usH���H�H�������z��H��+�$
H����g���� ��z���uh��3H���Uh���� �؀��I�u�H��PH���f����Ӊ��H��+�#
H���g���� �m���H�v+�"
H���mg���� �7����镔����H����镓��������鵒����@�����ߑ��1��[���H��H���i����	����H�=�-�i��H��8�H�(�!L��$0H�=��!H��$0�f�������uh��H���:g���� �(����uh���FH���g���� 饌��H��H���Ҋ���f���H��H���Š��鍉��I�u�H�ZOH���
������H��H��蚊�������� �y����e���uh���H���f���>���L��L�|$PL�d$`�D$�X����>�
����}����L�cM����I�<$H�5�@�f����t�� ����� ��IcD$H�M@H�UXH�LH9�v;��ƃ�	��v@�� uUH��H9�t-��ƃ�	��v�@�� t��� ���t�� ����C�� ����� �t����� �h����P��������� �����H�=�*�c��H��8��H�5G�!H������D$��]h�%���x�
���H��H�EH���H�HH9������x>��������������-H�=O�+g��H��8�H���!L��$0H�=y�!H��$0�d���?���
H���n�����-���uh�*$�H��D�D$`�d��D�D$`�n����x�
�����H��H�EH逹����� u'�Eh�D$E�B����z�
�O��H��H�UH�B���uh�#�H���>d����D��H��������u+H���U��������� u�Eh�D$E�����D$�����uh�*#�H����c����Hc�Hc�E1���
�vg���D$SH�E���Hc�Hc�E1��@�
�Mg���D$VH�E�d����x�
�B��H��H�EH�5���x�
����H��H�EH������ u*�Eh�D$E�����uh��#�H���+c������uh��#�H���c��뿾
H���Rl������x�
����H���D$�H�EH����uh�#$�H��D�D$��b��D�D$�����x�
����H��H�EH������%H���b���� ����
H����k�������l$L��L�|$PL�d$`�� ���uh�n#H���%���҃����3b���EhH���؈����=t{��~ti��>tW�����H�EHH�P�H�UHH;U@�����x�
�����x�
�����H��H�EH����z�
�j��H��H�UH�]���D$F����D$����H���P�����=t*��tH�EHH�P�H�UHH;U@v�x�
t2�D$��I����D$��<����Eh%������������x�
u�H���D$�H�EH�	����Eh�����j���uh��$��H���
a��������{��H�EHH�P�H�UHH;U@�e���x�
�[���x�
�Q��H��H�EH�D��E1��"1Ҿ�
�_d��H�E�"���uh��$�H���`���_����tH�EHH�P�H�UHH;U@v�x�
t��� u�Eh�1����x�
u�H��H�EH�ڋuh��$�H���4`�����D$�����
H���hi������uh�#�H���_��銯��������D$�����D$����Hc�Hc�E1���
�oc��H�E���� u9�Eh�D$Q�u���Hc�Hc�E1���
�5c���D$TH�E�L����uh�A!��H���__���Hc�Hc�E1�1��
�b���D$RH�E����Hc�Hc�E1��@�
��b���D$XH�E���Hc�Hc�E1��
@�
�b���D$UH�E��A���[��Hc�Hc�E1��
@�
�ub���D$WH�E��H�^$1�H���Ӏ���D$�n��� u<�Eh�D$E�P�uhA���ƀ����� �B���Eh�$�uh��#�H���7^��뭋uh��$�H��� ^�������������
H���Vg��A��������#�H����]���q���P��������� �����H�=#��[��H��8�*H�5��!H���6~���]h�l���D$H�8���z�
�_
��H��H�UH�R
����� u&�Eh�D$E�4�+H�������D$��$�H���4]���Ƌuh�."�H���]������H�5�DH��1��'j������
H���Ef���=
����$�H����\�����f���UH�5T�!SH���\��H��H�@HH;CP���� ��H�C8������H�PH�SH�(@��
�Q�4Y��H�����������!��	Ј�!��#����������t"H�CHH�P�H�SHH;S@wMH�{0�,Y��H����p\��H��H���a]��H����X��H��@HǃH��[]�@�x�
u��x�
u�H��H�CH�f�H���������H�CH�����H�CHH�SPH)�H���X����8��O����x��E����S[��H���H�CHH��H�CHH�C@�B����H�CHH;CP�����8!������ ���D�
H���kd���������W��H�����������!��	Ј�!�������UH�=�!SH��H��!H�0�_���H�=�!H����\��H��H�5�!H����^��H��H�5Pq����]��H�����H��m��H�5�!�P\��1�H��H�T���H�5{!�8\��1�H��H�܎��H�5i!� \��1�H��H�4���H�5X!�\��1�H��H�̍��H�5I!��[��1�H��H�t���H�58!��[��1�H��H����H�5u�[��1�H��H��j��H�5!�[��1�H��H��k��H�5��[��1�H��H�tj��H�5� �x[��H��H�j��H�5� �][��1�H��H��i��H�5� �E[��H��H��i��H�5� �*[��1�H��H�^i��H�5� �[��H��H��g��H�5� �[��H��H��g��H�5 �Y���H��H�m���H�5r ��Z��H��H�5m �
]��H��H�5b �\��H��	H�5W ��\��H��H�5O ��\��H��!H�5F �\��H��AH�5; �\��H�ﺁH�53 �\��H��H�5( �\��H��H�5 �m\��H��H�5 �Y\��H��H�5 �E\��H��H�5 �1\��H�� H�5��\��H��H�5��	\��H�ﺃH�5��[��H��aH�5���[��H��H�5���[���H�5�H���[��H�����\��H�5�H��H��H���[��H�=�(�V��H���cZ���H��H���CW��H�=�(��V��H���?Z���H��H���W��H�=P&�V��H���Z���H��H���V��H�=7&�V��H���Y���H��H����V��H�=�!�kV��H����Y���H��H���V��H�=�!�GV��H���Y���H��H���V��H�=�%�#V��H���Y���H��H���kV��H�=�%�U��H���gY���H��H���GV��H�=m'��U��H���CY���H��H���#V��H�=;'�U��H���Y���H��H���U��H�=/'�U��H���X���H��H����U��H�==%�oU��H����X���H��H���U��H�=(%�KU��H���X���H��H���U��H�=%�'U��H���X���H��H���oU��H�=�$�U��H���kX���H��H���KU��H�=�$��T��H���GX���H��H���'U��H�=k&�T��H���#X���H��H���U��H�=V&�T��H���W���H��H����T��H�=z$�sT��H����W���H��H���T��H�=�%�OT��H���W���H��H���T��H�=;$�+T��H���W���H��H���sT��H�=$$�T��H���oW���H��H���OT��H�=$��S��H���KW���H��H���+T��H�=�1�S��H���'W���H��H���T��H�=�1�S��H���W���H��H����S��H�=�$�wS��H����V���H��H���S��H�=�#�SS��H���V���H��H���S��H�=k#�/S��H���V���H��H���wS��H�=S#�S��H���sV���H��H���SS��H�=Z$��R��H���OV���H��H���/S��H�=�1��R��H���+V���H��H���S��H�=�"�R��H���V���H��H����R��H�=f#�{R��H����U���H��H����R��H�=4#�WR��H���U���H��H���R��H�=J#�3R��H���U���H��H���{R��H�=w"�R��H���wU���H��H���WR��H�=]"��Q��H���SU���H��H���3R��H�=�"��Q��H���/U���H��H���R��H�=�"�Q��H���U���H��H����Q��H�=�!�Q��H����T���H��H����Q��H�=�!�[Q��H����T���H��H���Q��H�=�"�7Q��H���T���H��H���Q��H�=�!�Q��H���{T���H��H���[Q��H�=�!��P��H���WT���H��H���7Q��H�= "��P��H���3T���H��H���Q��H�="�P��H���T���H��H����P��H�="!�P��H����S���H��H����P��H�=
!�_P��H����S���H��H���P��H�=� �;P��H���S���H��H���P��H�=� �P��H���S���H��H���_P��H�=� ��O��H���[S��H��H�ߺ[H��]�5P��D��H���H�=��7T���H�=xH�d�!�T���H�=gH�T�!�T���H�=XH�D�!��S���H�=OH�4�!��S���
H�=?H�$�!�S���H�=5H��!�S���H�=.H��!�S���H�=#H��!�wS���H�=H��!�_S���H�=H�԰!�GS���H�=
H�İ!�/S���H�=H���!�S���H�=�H���!�R���	H�=�H���!��R���	H�=�H���!��R���H�=�H�t�!�R���H�=�H�d�!�R���H�=�H�T�!�R���H�=�H�D�!�oR���H�=�H�4�!�WR���H�=�H�$�!�?R���	H�=�H��!�'R���H�=�H��!�R���H�=�H��!�Q���H�=uH��!��Q���H�=iH�ԯ!��Q���H�=`H�į!�Q���H�=QH���!�Q���H�=AH���!�Q���H�=1H���!�gQ���H�="H���!�OQ���
H�=H�t�!�7Q���H�=H�d�!�Q���H�=	H�T�!�Q���H�=H�D�!��P���H�=�H�4�!��P���H�=�H�$�!�P���
H�=�H��!�P���H�=�H��!�P���H�=�H��!�wP���H�=�H��!�_P���H�=�H�Ԯ!�GP���H�=�H�Į!�/P���H�=�H���!�P���H�=�H���!�O���	H�=rH���!��O���H�=dH���!��O���H�=^H�t�!�O���H�=OH�d�!�O���H�=@H�T�!�O���H�=/H�D�!�oO���H�=H�4�!�WO���	H�=H�$�!�?O���H�=H��!�'O���	H�=�H��!�O���H�=�H��!�N���H�=�H��!��N���H�=�H�ԭ!��N���	H�=�H�ĭ!�N���H�=�H���!�N���
H�=�H���!�N���H�=�H���!�gN���H�=�H���!�ON���H�=�H�t�!�7N���H�=�H�d�!�N���H�=�H�T�!�N���H�={H�D�!��M���
H�=oH�4�!��M���	H�=eH�$�!�M���H�=WH��!�M���H�=KH��!�M���H�=DH��!�wM���H�=8H��!�_M���H�=6H�Ԭ!�GM���
H�=&H�Ĭ!�/M���H�=H���!�M���H�=H���!�L���H�=H���!��L���	H�=H���!��L���H�=�H�t�!�L���H�=�H�d�!�L���
H�=�H�T�!�L���H�=�H�D�!�oL���H�=�H�4�!�WL���
H�=�H�$�!�?L���
H�=�H��!�'L���H�=�H��!�L���
H�=�H��!�K���H�=�H��!��K���
H�=�H�ԫ!��K���	H�=�H�ī!�K���
H�=vH���!�K���
H�=lH���!�K���H�=bH���!�gK���	H�=SH���!�OK���
H�=EH�t�!�7K���	H�=8H�d�!�K���H�=*H�T�!�K���H�=H�D�!��J���
H�=H�4�!��J���H�=
H�$�!�J���H�=H��!�J���H�=�H��!�J���H�=�H��!�wJ���H�=�H��!�_J���H�=�H�Ԫ!�GJ���	H�=�H�Ī!�/J���H�=�H���!�J���H�=�H���!�I���H�=�H���!��I���H�=�H���!��I���H�=�H�t�!�I���H�=�H�d�!�I���H�=�H�T�!�I���	H�=�H�D�!�oI���
H�={H�4�!�WI���H�=qH�$�!�?I���H�=bH��!�'I���H�=WH��!�I���H�=LH��!�H���
H�=AH��!��H���H�=4H�ԩ!��H���H�=%H�ĩ!�H���H�=H���!�H���H�=
H���!�H���H�=�H���!�gH���H�=�H���!�OH���H�=�H�t�!�7H���H�=�H�d�!�H���H�=�H�T�!�H���H�=�H�D�!��G���H�=�H�4�!��G���H�=�H�$�!�G���H�=�H��!�G���	H�=�H��!�G���	H�=�H��!�wG���
H�=�H��!�_G���H�=sH��!�GG���H�=gH�ܢ!�/G���H�=XH�̢!�G���H�=IH���!�F���H�=9H���!��F���H�=0H���!��F���	H�='H���!�F���H�=H�|�!�F���H�=
H�l�!�F���H�=�H�\�!�oF���H�=�H�L�!�WF���H�=�H�<�!�?F���H�=�H�,�!�'F���H�=�H��!�F���	H�=�H��!�E���H�=�H���!��E���	H�=�H��!��E���H�=�H�ܡ!�E���H�=sH�̡!�E���	H�=aH���!�E���	H�=SH���!�gE���H�=EH���!�OE���	H�=9H���!�7E���H�=+H�|�!�E���	H�= H�l�!�E���H�=H�\�!��D���H�=	H�L�!��D���H�=H�<�!�D���H�=�H�,�!�D���
H�=�H��!�D���H�=�H��!�wD���H�=�H���!�_D���H�=�H��!�GD���H�=�H�ܠ!�/D���
H�=�H�̠!�D���
H�=�H���!�C���H�=�H���!��C���H�=�H���!��C���
H�=�H���!�C���
H�=�H�|�!�C���
H�=vH�l�!�C���
H�=lH�\�!�oC���
H�=_H�L�!�WC���	H�=UH�<�!�?C���
H�=GH�,�!�'C���H�==H��!�C���H�=+H��!�B���H�="H���!��B���
H�=H��!��B���H�=H�ܟ!�B���H�=�H�̟!�B���H�=�H��!�B���H�=�H��!�gB���H�=�H�̝!�OB��H���!H����A����H��H���Stack now %dunknown encoding name: %s%li:%d%s is not ASCII compatiblecompile_errorliteral string changed: %+li(ripper)tokennterm%s %s (%d.%d-%d.%d: %s duplicated key nameinvalid source encodingtruefalseinvalid value for %s: %sinvalid hex escapeunixdosutf8-macinvalid multibyte char (%s)cmdarg_stack(push)cond_stack(push)cmdarg_stack(pop)cond_stack(pop)Ripper#parse is not reentrantsyntax errorsyntax error, unexpected %sduplicated argument nameinvalid Unicode codepointUTF-8 mixed within %s sourceinvalid Unicode escapelex.pcur < lex.ptokPARSER_EVENT_TABLEunterminated Unicode escape%s mixed within %s sourceInvalid octal digittrailing `%c' in numberFloat %s out of rangeStarting parse
Entering state %d
Stack size increased to %ld
Reading a token
unknown regexp option%s - %*sargument prefixhere documentincomplete character syntaxunary operatorsymbol literalregexp literalunknown type of %stringstring literal__END__cond_stackcmdarg_stackNow at end of input.
Next token isShifting   $%d = END in method; use at_exitunexpected ...->invalid local variable - %li}duplicated variable name-> $$ =Error: discardingError: poppingmemory exhaustedCleanup: discarding lookaheadCleanup: poppingRipper0.1.0Versioninitializeparsecolumnfilenamelinenostateend_seen?yydebugyydebug=debug_outputdebug_output=error?dedent_stringlex_state_nameEXPR_BEGEXPR_ENDEXPR_ENDARGEXPR_ENDFNEXPR_ARGEXPR_CMDARGEXPR_MIDEXPR_FNAMEEXPR_DOTEXPR_CLASSEXPR_LABELEXPR_LABELEDEXPR_FITEMEXPR_VALUEEXPR_BEG_ANYEXPR_ARG_ANYEXPR_END_ANYEXPR_NONESCANNER_EVENT_TABLEon_BEGINon_ENDon_aliason_alias_erroron_arefon_aref_fieldon_arg_ambiguouson_arg_parenon_args_addon_args_add_blockon_args_add_staron_args_forwardon_args_newon_arrayon_aryptnon_assignon_assign_erroron_assoc_newon_assoc_splaton_assoclist_from_argson_bare_assoc_hashon_beginon_binaryon_block_varon_blockargon_bodystmton_brace_blockon_breakon_callon_caseon_classon_class_name_erroron_commandon_command_callon_const_path_fieldon_const_path_refon_const_refon_defon_definedon_defson_do_blockon_dot2on_dot3on_dyna_symbolon_elseon_elsifon_ensureon_excessed_commaon_fcallon_fieldon_foron_hashon_heredoc_dedenton_hshptnon_ifon_if_modon_ifopon_inon_kwrest_paramon_lambdaon_magic_commenton_massignon_method_add_argon_method_add_blockon_mlhs_addon_mlhs_add_poston_mlhs_add_staron_mlhs_newon_mlhs_parenon_moduleon_mrhs_addon_mrhs_add_staron_mrhs_newon_mrhs_new_from_argson_nexton_nokw_paramon_opassignon_operator_ambiguouson_param_erroron_paramson_parenon_parse_erroron_programon_qsymbols_addon_qsymbols_newon_qwords_addon_qwords_newon_redoon_regexp_addon_regexp_literalon_regexp_newon_rescueon_rescue_modon_rest_paramon_retryon_returnon_return0on_sclasson_stmts_addon_stmts_newon_string_addon_string_concaton_string_contenton_string_dvaron_string_embexpron_string_literalon_superon_symbolon_symbol_literalon_symbols_addon_symbols_newon_top_const_fieldon_top_const_refon_unaryon_undefon_unlesson_unless_modon_untilon_until_modon_var_aliason_var_fieldon_var_refon_vcallon_void_stmton_whenon_whileon_while_modon_word_addon_word_newon_words_addon_words_newon_xstring_addon_xstring_literalon_xstring_newon_yieldon_yield0on_zsuperon_backrefon_backtickon_commaon_conston_cvaron_embexpr_begon_embexpr_endon_embvaron_floaton_gvaron_identon_imaginaryon_inton_ivaron_kwon_lbraceon_lbracketon_lparenon_nlon_opon_periodon_rbraceon_rbracketon_rparenon_semicolonon_symbegon_tstring_begon_tstring_contenton_tstring_endon_words_begon_qwords_begon_qsymbols_begon_symbols_begon_words_sepon_rationalon_regexp_begon_regexp_endon_labelon_label_endon_tlambdaon_tlambegon_ignored_nlon_commenton_embdoc_begon_embdocon_embdoc_endon_spon_heredoc_begon_heredoc_endon___end__on_CHARwarnwarninggets=>frozen_string_literalwarn_indentripper"end-of-input""invalid token""`class'""`module'""`def'""`undef'""`begin'""`rescue'""`ensure'""`end'""`if'""`unless'""`then'""`elsif'""`else'""`case'""`when'""`while'""`until'""`for'""`break'""`next'""`redo'""`retry'""`in'""`do'""`do' for condition""`do' for block""`do' for lambda""`return'""`yield'""`super'""`self'""`nil'""`true'""`false'""`and'""`or'""`not'""`if' modifier""`unless' modifier""`while' modifier""`until' modifier""`rescue' modifier""`alias'""`defined?'""`BEGIN'""`END'""`__LINE__'""`__FILE__'""`__ENCODING__'""local variable or method""method""global variable""instance variable""constant""class variable"tLABEL"integer literal""float literal""rational literal""imaginary literal""char literal""numbered reference""back reference""literal content"tREGEXP_END'.'"backslash""escaped space""escaped horizontal tab""escaped form feed""escaped carriage return""escaped vertical tab""unary+""unary-""**""<=>""==""===""!="">=""<=""&&""||""=~""!~""..""...""(..""(...""[]""[]=""<<"">>""&.""::"":: at EXPR_BEG""operator-assignment""=>""(""( arg"")""[""{""{ arg""*""**arg""&""->""symbol literal""string literal""backtick literal""regexp literal""word list""verbatim word list""symbol list""verbatim symbol list""terminator""'}'"tSTRING_DBEGtSTRING_DVARtLAMBEGtLABEL_ENDtLOWEST'=''?'':''>''<''|''^''&''+''-''*''/''%'tUMINUS_NUM'!''~'tLAST_TOKEN'{''}''['',''`''('')'']'';'' ''\n'$accept$@1top_compstmttop_stmtstop_stmtbegin_block$@2stmt_or_begin$@3$@4command_asgncommand_rhs@5@6$@7expr_valueexpr_value_do$@8$@9block_commandcmd_brace_blockmlhsmlhs_innermlhs_basicmlhs_itemmlhs_headmlhs_postmlhs_nodecnamecpathfnamefitemundef_list$@10reswords$@11reloprel_exprarg_valuearef_argsarg_rhsopt_paren_argsopt_call_argscommand_args$@12opt_block_argmrhs_argmrhsprimary$@13$@14$@15$@16$@17@18@19$@20@21$@22@23@24@25@26primary_valuek_begink_ifk_unlessk_whilek_untilk_casek_fork_classk_modulek_defk_dok_do_blockk_rescuek_ensurek_whenk_elsek_elsifk_endk_returnthenif_tailopt_elsefor_varf_margf_marg_listf_margsf_rest_margopt_block_args_tailopt_block_paramblock_param_defopt_bv_declbv_decls@27@28@29@30$@31f_larglistlambda_bodyblock_callmethod_callbrace_body@32@33@34do_body@35@36@37case_argsp_case_body@38@39@40$@41$@42$@43p_casesp_top_exprp_top_expr_bodyp_asp_altp_lparenp_lbracketp_expr_basic@44@45@46p_argsp_args_headp_args_tailp_args_postp_argp_kwargsp_kwargp_kwp_kw_labelp_kwrestp_kwnorestp_valuep_primitive$@47p_variablep_var_refp_constopt_rescueexc_listexc_varopt_ensurestringsstring1xstringregexpwordsymbol_listqwordsqsymbolsqword_listqsym_listxstring_contentsregexp_contents@48$@49@50@51@52@53ssymdsymsimple_numericuser_variablekeyword_variablevar_lhssuperclass$@54f_arglist@55opt_args_tailf_bad_argf_norm_argf_arg_asgnf_arg_itemf_argf_labelf_kwf_block_kwf_block_kwargf_kwargkwrest_markf_no_kwargf_kwrestf_optf_block_optf_block_optargf_optargrestarg_markf_rest_argblkarg_markopt_f_block_argsingleton$@56assoc_listassocsassocoperationoperation2operation3dot_or_coloncall_opcall_op2opt_termsopt_nltrailernoneencountered \r in middle of line, treated as a mere spacegets returned %li (expected String or nil)`_%d' is reserved for numbered parameter; consider another name[Ripper FATAL] unknown token %dmismatched indentations at '%s' with '%s' at %d`%s' is ignored after any tokenslocal->used->pos != local->vars->posvtable_add: vtable is not allocated (%p)method called for uninitialized objectRipper#parse is not multithread-safesyntax error, unexpected %s, expecting %s or %s or %s or %ssyntax error, unexpected %s, expecting %s or %s or %ssyntax error, unexpected %s, expecting %s or %ssyntax error, unexpected %s, expecting %sCan't assign to numbered parameter _%didentifier %li is not valid to setinvalid Unicode codepoint (too large)numeric literal without digitsinvalid character syntax; use \M-\%cinvalid character syntax; use \C-\M-\%cinvalid character syntax; use \%cinvalid character syntax; use \M-\C-\%cinvalid character syntax; use \C-\%cInvalid escape character syntaxcan't find string "%.*s" anywhere before EOFunterminated list meets end of fileunterminated regexp meets end of fileunterminated string meets end of file`**' interpreted as argument prefix`*' interpreted as argument prefixembedded document meets end of fileunterminated here document identifiertoo long here document identifierinvalid character syntax; use ?\%c`?' just followed by `%.*s' is interpreted as a conditional operator, put a space after `?'`&' interpreted as argument prefixunexpected fraction part after numeric literalno .<digit> floating literal anymore; put 0 before dotparentheses after method name is interpreted as an argument list, not a decomposed argumentunterminated quoted string meets end of file`%s' is too big for a number variable, always nil`$' without identifiers is not allowed as a global variable name`$%c' is not allowed as a global variable name`@' without identifiers is not allowed as an instance variable name`@@' without identifiers is not allowed as a class variable name`@%c' is not allowed as an instance variable name`@@%c' is not allowed as a class variable nameInvalid char `\x%02X' in expressionReducing stack by rule %d (line %d):
else without rescue is uselessBEGIN is permitted only at toplevel&. inside multiple assignment destinationcomparison '%s' after comparisonclass definition in method bodymodule definition in method bodyInvalid return in class/module bodykey must be valid as local variablessymbol literal with interpolation is not allowedregexp encoding option '%c' differs from source encoding '%s'identifier %li is not valid to get`if' at the end of line without an expression`elsif' at the end of line without an expression... at EOL, should be parenthesized?P.��P.��P.��P.��P.��P.��P.���-���-���-���-���-��p.��p.���-��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��1.��P.��@O���O���N���O���O���O���N���O���O���O��0O���O���N��$y���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x��d{��d{��d{��d{��d{��d{��d{��d{���x���x���x���x���x���x���x���x���x���x���x��\y���x���x���x���x���x���x���x���x���x��x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x��<{���z���y���x��{���z���x���x���x���x���x���x���x���z���x���x���x���z���z���z���x���z���x��{�����~��~��~��~�����������~��~�����~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��������~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��������~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��~��������\���������������������������������������������������������������������������������������������������������������������������������������������������������������������4���������������������������g���g��������0��H�������0��g���G��^�������������������"	��P	��c5��z5���5���5���5���4��|8��8��R8��O7��}7���7���7���6���6��g���!7���9���8���8��g��� 9��N9��9��������2��~�����%��<��g���g���j��������w(���(���(��)��()��g����)���)���)��5*��g���g���g���M*���*���*���*���*��>+��t+���+���+��L,��v,���,���,���,��g���-��g���I-��t-���-���-���-��/.��_.���.���.��Z/���/��g���0��:0���0���0��1��01��Z1���1���1��2��.2��n2���2���2��3��F3��p3���3���3��4��C4��~4���5��66��g���g6���6���4��g���g���g���5��g���95��g���\V���V���V��g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g��� >��N>���>���>��)?��y?���?��@��^@���@���@��A��DA��tA���A���A��B��8B��kB���B���B��C��RC���C���C���C��D��ID��g���|D���D���D��E��HE��{E���E���E��F��?F��rF���F���F���F��G��4G��LG��dG��|G���G���G��YH��g���pH���H���H��[��r��������.��g���g���g���g������������G ��� ��� ��@!���!���!��b"���"���"���"���"��3#��#���#��g���g����#��$��c$��g���g���g���g���g���g���g���g���g���g����$��%��]%���%���%���%��&��7&��b&���&���&���&��*'��]'���'���'��0(��E(�� �P���g����.��������_�������������^���������,�������U����������(������1�������d���������������P����������������7���i��������������$������S�������g���g���g���g���g���g������g�����g���g������A������H����1�X���t������*���A���r������1�����������V����Q����������t������8�����l��g���������l�����������]�����Q��i��������������)�����������(��@��X��������.��~�������a��������1��[����������������=��U�����������>��������E��s�����g���g��������@��f�����������g���g���g�����C��g���q�����U��~��g������g������g���%��K��g���q�����	��P��������/��U��������$����������<��������T�������g�����x������g���-������3�U��������2��g���`��{���g�����������g���g���g���?�n�g���g���g���g���g���g���g���g����������H�r�����g���%��g�����g�����g���g���g���qP��g���g����O��P���N���N���P���P��]N���Q���Q���Q���P��Q��HQ��sQ��0J��cJ���J���J���J��lK���K���K��L���L���L��UM���M���M���M���M��3I��PI��sI��J��gW���W��g���g���g����W��g���g���g���g���X��g���YU��g���g���g���g���g���g���g���g���g����U���U���	��`
���
��J�����4��%
��O
��y
��g���g����
���
��������������,�����i������
��v�����,��C��t�����3��������X�������{�����=��o�����1�������N����������g�����p�����'��R����������0�����9�������g	���=��g���g����=��%=���<��P<���;��?;���:��}:��#:��g���g����9��-U��g���g����T���T���T��rT��UT��*T��g����S���S��=S��S���R���R��sR��g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���g���WR��CR��g���SW��;W�������������O���`���������O������f���v������������������+�����:���o����)���)���)���)���)���(���,��,��j,��g+���+���+���+���*��+�����9+���-���,��
-�����8-��f-��Q�����������J���������D���T������������������������������@�������������T�����������e�������������V�������� ��d ��� ��� ��� ��!�����6!�����a!���!���!���!���!��G"��w"���"��#��r#���#�����'$��R$���$���$��%��H%��r%���%���%��&��F&���&���&���&��4'��^'���'���'���'��)(��[(���(��*��N*�����*���*���(�����������0)�����Q)�����tJ���J���J�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������82��f2���2���2��A3���3���3��.4��v4���4���4��,5��\5���5���5���5��6��P6���6���6���6��7��j7���7���7���7��.8��a8������8���8���8��-9��`9���9���9���9��$:��W:���:���:���:��;��<;��S;��k;���;���;���;���;��x<������<���<���<��z�����������F�����������������������_��������X�����	�����������������K�����������������7��{�����������������������������������3��|�����������$��O��z��������
��B��u�������H��]��8��h���������F�����w������������(���}��������D�����t��������@��������3��I��-������3��|����������������������h��6�����O������<���k����������������������������������.�Y��������`����8�I�p�������I�Y�����I���
�n�
�i���-�����P�$��������������������������
��u�����p�����������������H�����������G��_��p��������F��������,��y��������I��s������������9��\��m����������V�������]����������������1��_��~��������������������-��[����������m��������������
�����D��j�����������!��h�������N��m�������<������� ��T��������l��������������$��5����������������E�������*��K��m�����������*��J��7�����x��&�������������������������W��������������������������������-�6�`����������=�����������'�������������D���������C��+D���B��C���D���D��uB��F���E���E���D��1E��`E���E��H>��{>���>���>��?���?���?���?��&@���@��A��tA���A��B���A���A��R=��o=���=��>��K���K������������K��������������2L�����qI������������������������������I���I�����x�����b������L��=��g����������������������������K	���	���	���	����������K��[��������K�������p�����2��������U���
���
��I�����3��f��������������*
���
���
��?��j�����,�����H�����Q�����������1���������1��=1��1��h0���/��W/���.���.��;.���������-��EI���������H���H���H���H��tH��BH�����H���G��UG��'G���F���F���F��������������������������������������������������������������������������������vF��bF�����rK��ZK�����������������������������d������d���d���d��������������������������������������������������������d���ޜ��y���~���ؚ��������������`���K���W���ܰ��,���-�������������������������������������������������^���,���Q���L���ϭ��h���#���������������������������������������������������������������������������������_�����������D���$�������������������������������������������������������������������������������������<���N����������������W������W��~��~���W���W�����~������������1��~��~��~��~��~��~��~��~��~������������������������W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W������W���W��w��~���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W���W�����BD���T���T���T���T���T���T���T���T���T���C���T���C���C���C���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���C���T���T��D���T���T���C���T���T���T���T���T���T���T���C���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D��~D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D��~D��o�������������������������������g�����������������������>������������������������������������������������������������������������������������������������������������u�������������������n���tnvfrs�	�������������������	y��������������������������qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqQQIi!)aAY��!q�������yy���9��	����1)9A1�IQYaiy��Multiple codepoints at single character literal	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������		



 !""""#$$&'()*+%,,---...../0011234444444544644748888888899::::;;<======>>??@@AABCCCCCCCCCCDDDDDDDDDEDFGHHHIIJJJKKLLMMNOOOPQRSTTUUVWWXYZZ[[\\]]^^_`_abcde_ffffgghiiiijkkllllmmmmmnnnnnnnooppqqsrrtttutvvvvvwwxxxxxxxxxxxxxxxyzzzz{{|}}~~������������������������������������������������������������������������ !"#$'-./0123456789;<=>?@AKLZ[befhiknopqrstuv����������������������������������MNOPQRSVXYghjklmnopq���	

 !"#$%&'-./0123458KLMNOPQRSVW\]^_kl������������������g':beklmp���������mnpq������������6����� �������8/e�����������������.b�����mnq�679�\i\]^����l��������()*+,%&�����~�ek�~MNOPQRSTUVWXY^_������������D`a������������b���mnq48^b���mnq�!"#$12348��o��a��Pcc��8���\~d���a��cc������[���y�����6@A�����a�c������������������8l���a��Bwyz_ww_C_TZW[M���������j�k������������������q�������������������������458������458�����
��������8a���48��ra�����Da�48�������|�k���48�48�����������������������48�48a`wU_BwwUBw��
� ���,���,~,a����cc�����cc������I��
������%�#48�48��s�48������������cc�ccy�����b679fq�_����!k�����48�4848Z[behin�/014CDFGHMNQRSVXYn�������c�������J�	��L������&#�k�"����������tu�c���c�	
�	��DD8�75�6��E4d��XYa��23���dK�������'��������46789:M[eklm��vxyz{|}~������������x~��xd|~�����������/k/89:<:p=>?@AB��F4DD���p8=8=b��mnq���(k���ek{��~�w����"4����w4�w4���txe�~�b���������4��k/<�\��/"4\����8a���L�-./:=�#${����vy}������~��|~�{�����8a��~��~4
z�;<4��|?AB48�48I��()����w�w��w�ww����x��48�����;��;�)��8��~�~~��~�~~
<;*w�www�+~~�w%,;5Y<qf[\G_leG�^�K9\z_�_��
�c�D�kCmsS�78S_\5;N`abK90X
������V\56�Z9\�d�7'(d�DcDdd���,��S	
�6[\B�_`abadD��Nd�f$D78����	�����`a~���%&�Ha��w�8����������d�����d��
����
��

��������
6789�;<��������P|6789|}ZZz|Y��
������������Q�HqrVX�[��s��{��I�
�F��	sKT����u[4�rt��
�5j�$��
Hu�,I56789:;<���m����F4HIlK�F�ml�K��a�5����:����������vtl~n���rst�B����%&�{�D��p��c��m	�����������a����`a���~�c��d���w���������3~�b�~~d�~RS�DPb������D���������BC�D��3aM�����R`a]���J���F�Hc`a�D����f���~��cB93Byz~�BD�`a��<Z���(BD~"��f�j��P`a;QPd4DZ��D[ZjyzdDyzF�Hc��j~pjP�D`a9D�`aZ:\]B�a���~�~�c�cQMap�`a�[��B��c�dD���~�~D���cl�c�p8���D��56D`a������a�~�D~���Bw�yza��zD�aD��$�K[\D~_,�.Fd�	�����E`a`a�c��c`aDE:yz�|G"d?,B.�D�cD~�M~U3c4`aDD����D)�f��D��~�Da��gclm;;c`aaXYc`awMyz`a()B`a��~�3c~�����~���?��B�DE�~�������~s���Tcc����[��8�w�yz�|g�j���C�~~��I6KwMyz|�M@A3j�44��88���8�����������56789:;<�M�D����FH`�KB��^_��������f��`a��B$�
�(�� ,,.l,n�~�rst������
B#�w�yz
��f��������w�yz�;<=>��67�9Z�\���@A��d4fdwkyz���� d�#F�H4JGF~�4���()*+,����4a�~�f8�F����4�6789���v4	6789�4�6789G��jk8�56�F9�I4�L���$S�(V��,x.���S�e����46789`abc���������`��b�F$H56(�W�,P.M	�d�JD�Z�\]e�qr^_k��Vf{|}$[\��_�,wd������D��;{��;�������;iyH��c���(��$������������������������������������������������������������������������������������
���������������������������������������������|�������������������������������5��������:����������������������HI����qr��3����w��yz��������h����3����8��4��6789:?����n��DEr��t56789:;<M����T����������F[H����K��������������g��ej�������lm���]^����c��e��g��l��n�����rst���������qr��������������{|}������������������������������������������������������������������4��6789:��������������������������M������������������������������������������e������klm���MNOPQRSTUVWXY��������^_�������������F��H���� �������������������������\��������������������������F��F����K�������������3����������������F��H56���9����P����������jk����Z��\]����������������S��������������������`ab������������������������������������������������������������������������������������������������������������������������������4�6789:���������������������������M�����������M����������������������������e^_������klm?��������D����������T��������56[��T��[�������������g����j����������qr3��������������{|}��?������DE�����5�56��:9�������Tk��m������[HI��K��������z��|g��Sj������������������`abc����������������n������r�t��������������������������������������������������56�����������������������������������������������������������������������`������������������������ ����#�������������������������3��������������������������������������������������5��������:�������������� ��H����K������jk4��6789:����N������������������F��Mn��5br��t:���������[������F��H��HIe��������klm��jk����\���������������������������n������r��tqr��������������{|}�����������������qr5�������:���{|}��������������H����K������������������������qr��������������{|}���������n������r��t���������������������������������������4��6789:�������������������������������M��������������������F��H�����������������e���������klm\����������������������������3����������3��������?�������D������F��H������������3����T������������[����\����������������g����j�������������������������3���������������������������������������������������������������F�H���������������������������������\����������������������������������������������������������������������������������������������������������������3�������������������?������D����������������������T������ ��[#��������������������g����j������������������������?��������D�������������������������qrT�����������[{|}��������������gjkj��������qr����������������{|}������������������������������3���������������������?����qrD��������������{|}����T������������[������������������g����j���������0123������78������������������DE������ �������������������������!"#$�����������d�������123�������������;<=>?����3�������������������� ����#���������������������jk3����������������������������nopqrstuv���������������������������������������3������������������jk��������������������� ����������������������������������������������������������������������������������������������������������������������������������jk���������������������������������������������������F������K��MNOPQ����TUVWXYZ[\����_`abcdefgh������l����������������������������������������������MNOPQRSTUVWXY��������^_�����������������������������������������������������������������������������������������������������������������������������������	
����
�����������������������������%&()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��cd����������j����������P��������������x��Z{����~�����������k��m����������������z��|��������������������	
����
����������������������������������%&�()*+,�������������������������������������D�����������������������������������������������������`a������������������������!"#$��������x��������������1234����8��:;<=>?��������������������M������������������������Z[��,��������b��3e����hi��kl��nopqrstuv����������������N������������������`��b������������������ !"#$����'����������-./0123456789�;<=>?@A������������������KL�������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������������������������������������������������������������������������������������	
��
����������,��������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_F����MNOPQRSTUVWXY��������^_`a��cd��������j����������������x����{���~����������������������������������	
����
����������,��������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a��cd��������j����������������x����{����~����������������������������������	
����
������������������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a����d��������j����������������x����{���������������������������������������	
����
������������������������������%&��()*+,��������������������MNOPQRSTUVWXYD������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x����{���������������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRST��VW����D������^_������MNOPQRSTUVWXY��������^_`a��cd����������j����������������x����{����~����������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRS����VW����D������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x���������������������������������������������	
����
��������������������������������%&��()*+,��������������������MNOPQRS����VW����D������^_������MNOPQRSTUVWXY��������^_`a����d����������j����������������x����{����������������������������������������	
����
��������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a����d����������j��������������������������x���������������������������������������������	
����
����������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a����d����������j��������������������������x����������������������������������������������	
������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~�����������������������������������	
������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~�����������������������������������	
��������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~������������������������������������	
��������������������������������������������%&��()*+,����������������������������������������������D����������������MNOPQRSTUVWXY��������^_`a��c����������������������������������������x����������~����������������������������������	
���������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
�������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������
���������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������	
������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv�������������������������������������������������������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������������������������������
������������������ !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��x������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������ !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv����������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv���������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv���������������������������������������� !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv��������������������������������������������������������������	

������ !"#$%&'����������-./0123456789����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������������������	

������ !"#$%&'����������-./0123456789����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl�����������������������������������������������������������������	

������ !"#$%&'����������-./0123456��8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl����o�����������������������������������������������������������	

������ !"#$%&'����������-./012345����8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl����o�����������������������������������������������������������	

������ !"#$%&'����������-./012345����8������������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv�������������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������������������ !"#$����'����������-./0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv����������������������������������������� !"#$����'����������-.��0123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��klmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��kl��nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi����lmnopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��kl��nopqrstuv������������������������������������������� !"#$����'������������.����123456789:;<=>?@A������������������KL��������������������������Z[������������b����ef��hi����l��nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��k����nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A������������������KL��������������������������Z[������������b����ef��hi��������nopqrstuv������������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��k����nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A��������������������������������������������������������^������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A����������������������������������������������������������������b����ef��hi��������nopqrstuv������������������������������������� !"#$����'������������.����123456789��;<=>?@A!"#$������������������������1234������8����;<=>?��b����ef��hi��������nopqrstuv��������Z[������������b����e����hi�k����nopqrstuv!"#$�����������������������1234�����8����;<=>?����!"#$������������������������1234������8Z[;<=>?��b����e����hi��k����nopqrstuv��������Z[������������b���e����hi�������nopqrstuv45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl������������������������������������������������������45����8����������������������������������KLMNOPQRS����VW��������\]^_����������������������kl�����������������������������������������������������������������|#m&H��oo�4o�;�5�It���}q��u�L��Y4Y��Ev�V.o9-B���o��Jv�	���@dI~I�����!�sv����YY����d���������y��eh��9xB���\E�=�����{����������\?�����mn\��R���]���W������������i��;<�]
���1�2�����"���V�������UO��4d~l1�2"�������s����������"�)*+����oooo����x��>�|Y�v��������o�o�1�2���������	\�������Y�Y����\����oY��YQ����������S^J��?I�4�e2o�IjK�^����Q���r�R��	L��
yY����Y����!����������������Y���
��@�9
B1������I7�8���!�-/<46=�����Y��:��Y�Y4����3;<@kMi������{����A[�BC@�)��~���~�pjk����{���y�����@�����%����*�������v������y����RS����o@��A��il����Y�������������h�>���M��pA�j���gi�]^�����z��������+gi��A�`����z�����������i,������def`�C�����%������%�C>�>j��@��i����i@���������Y�Y�!��F�����j��}�Gj���Y���������^KNoN��A��<�}�}�NNA��U��T��|����S�����]�������@��~��$���NN��|�|���<B}�H��H��YN��Y�����~������i����NN���N����N
=A|��	>o��cjOgY��Y�����iii�������=��w�z��������������>jY�_�.0�i�P�57i��$�����i��$��������3��`|}`j��M��jE���jtZ��������N��.0��57�Y����Y�������N�NN���N�NY�3NFN�Y�Z������kNYN�Y��������������������GM���9TT�UoY�N��Y?�1�2RNNNNNNNNWMH�J>N�N�xN���Z[zbcdef|�����������'�����m���N�N��BNNN�Hbcdef�����N�����2����u"�,Y>Y�M��Q)*+,NN��#��b�XZf./�N�x�y����{�YooY��o���H@�	��6789:N�w�w#"�D$�(,N��������.�{=����8��0����Ab;n##bYYs�wwV�X�����d�d��b��������dd��������a����~������������y"�!���N�Nddv�h��N�M�u�H�d@N�NN��T##Z[�����###�dd##djY��d�_�-/wN�y��{N�}abcdef����I����_�u��q:��wNNNNNNNNw#w���#$��ww�NNN�d#���ddddd�ddwwddw��#����$$N������NwNNwwdddddddd�NdNddN�N�#��#���������dd#ddd�N�$$Nd$$$$$w##Yddacd������L���������d��$NdN���$MNOPQRSTUVWXYZ[��$wwNN�zzw\]^_`abcdef	N�$ddzzdNNdddww+��NNd$1$lnww$@AddddddWddn$$�N�����++dddy�yzM��Z[���wwzz�yy�wz�zv�vw_`abcdef�ww++d+++d++dd�zwvvzwd��dznddUU}���zz�zdd++nUUy9ww+O%yyzywyw�&zvk+ddvv'yyvvddyyww%%�������+U+&&d�yvyyv+�zzv�UU���dd''zUU++yy���vvv%%dd%%%w%%&&U�Uy&&&&&Uzz'''''d''UUUPvzz%Y%������&&%�yy&�'���y'U%��z'zvv&zzvzzyyy'yyyy%�%zz(%&y&UyUvv&)U%%'�'&&'vv*((zzy''UyUy))yzzy�yyUU**vvy((vyv(((((vzzv)))))))�vvU**U***��**UU(yy(UU�������)z()/0�yUyUv)v�* !"*)*+,-(vv�*yy);<=>?@ABUU*((�vv���/(UU)�)��)((y**))*UUv�** !"#$%&'()*+,-./0123�MNOPQRSTUVWXYZ[Ufff���ff�\�]^_`abcdef�f������������������������������������������������������������������������������������������������f
�ff�ff�����ffff� !"��)*+,-��������f��;�=>?@AB��	f�

 !"#$%&'(�)*+,-./01�23456789:;<=>?@ABCDE�������������������������������������������MNOPQRSTUVWXY��Z[���������������������������������������\��]^_`abcdef�������������������������������������������������������������������������������������MNOPQRSTUVWXY��Z[��������������������������������������\��]^_`abcdef����������������������������������������������������������������MNOPQRSTUVWXY�Z[������������������\�]^_`abcdef������������������������������������������MNOPQRSTUVW���Z[�������������������]^_`abcdef�����������������������������������������MNOPQRSTVW�Z[��������������������]^_`abcdef�������������������>�����>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�M����RS��>�Z[>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�]^_`abcdef>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>���>�>�>�>�������������������MNOPQRSVW�Z[�������������������]^_`abcdef�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	���
�
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
��
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
��
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
�
� !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	�
�
 !"#$%&'()*+,-./0123456789:;<=>?@AB	��
CDE
�� !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
�� !"#$%&'()*+,-./012346789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE���	�

 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
�� !"#$%&'()*+,-./0123456789:;<=>?@AB�	
CDE
��� !"#$%&'(�)*+,-./0123��678���:;�=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
12 !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
� !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'()*+,-./0123456789:;<=>?@ABCDE�~�����������������������������������������%&�(�������������������������������~����������������������������������������� !�"������������������������������~������������������������������������������������������������;�������������~�����������������������������������������������������������;�������������~�����������������������������������������������������������������������	�

����� !"#$%&'()*+,-./�678:;<=>?@AB	

����� !"#$%&'()*+,-./�678:;<=>?@AB	

 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'(�)*+,-./0123��678���:;�=>?@AB	
C�E
 !"#$%&'()*+,-./0123456789:;<=>?@AB	
CDE
� !"#$%&'(�)*+,-./012���678���:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678m��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./012���678m��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678��:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678m�:;�=>?@AB	
C�E
����� !"#$%&'(�)*+,-./0123��678�:;�=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678N:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678�:;<=>?@AB	
C�E
����� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
� !"#$%&'()*+,-./0123��678:;<=>?@AB	
C�E
 !"#$%&'()*+,-./0123��678:;<=>?@AB	
CDE
����� !"#$%&'()*+,-./H678I:;<=>?@AB	

����� !"#$%&'()*+,-./x56789:;<=>?@AB	

����� !"�$%&�()*+,-./���678:;<=>?@AB	

����� !"�$%&�()*+,-./��678:;<=>?@AB	

����� !"#$%&'()*+,-./H678:;<=>?@AB	

����� !"#$%&'()*+,-./��678:;<=>?@AB	

����� !"#$%&'()*+,-./ !")*+,-&�678:;<=>?@AB�;<=>?@AB !")*+,- !")*+,-5;<=>?@AB;<=>?@AB456�����������������������������=>?�������������������������������q5r�������������������������������t>u��������������������������������5���������������������������������>���������������������������������5���������������������������������>���������������������������������5��������������������������������b>c�������������������������������5�������������������������������>��������������������������������5���������������������������������>���������������������������������5��������������������������������b>c��������������������������������FGH�C�D��JK�zprsJLM�OPQRS�T������j7�V�gW�
8�������<Xn��M��\^����Z[\]^_`abcAD�?�DE��F�FG|p%�gh�|}����d�lEefB��P�S�K������KL6��rtq�����������w !"�;�Aghijklm��n�op��$'(����e� �qr%stu��x��X�[\Z
����f������������������
�]��{�:a[�3���v�Gw
������������D��������������ff���y�	��g������I�{��n<v��d��3�'����������������� ����������������K����J������4���J�������������������P��*�����������������!����������}�������!u������&��������8�������������Y�t���`���������m����������1�C����'��x����\w��������P��I
�����jklcdehfgi^_`au}|~�������yx�{stuvB��2��_FVVXZ�	#(4CBSWa=��0??�;DD%&AC'()+*,@ij?q��-.G�����������������������������������������~������������������������������������VQ���.��R�O��N���
^_>��;���8��U4������]bgho�nmolkIRNTr8������m��H�Cn��c[X9���������>�N����.yz|���.V�������~�X�P��ED��8���=�����
�B7?�6�T�39���:�nre`�G�\p_]WEFYG[� !56��I�$!' �Yd3)1�%.:�������������������������������������wvL8�?Tyz{�R�Y��[��*�0���������<�
A�"��V5�^�m����`HKPMQ���t���$b\��L��J1o��7�x�Jz@yK�q�7���yz}����E������f��aefg^hJLSOU�F�"&Z2�����15���/;����!"#&'()*,+-./�.�M�,�-�K89�:pr>s{}A�P�O��W���\��	@�b���#�$%z3���2< ���+�<=~HI�M�Q�S�������������������������������������c��������������������V��0��4��V����;��.���U��������������������Z�������������������8��
���������������������������������8����������	
�
�7���6|�������������]�d���7����������������������������������������r���#���!�������M$M$����$���� !�����E������������1+1+1+1+|�$�&=(�"� ���<����+1+��)�v��o%����,�7�A\�-,-,���%-�-.�M$�_�� ������������C��:�������������������������������������������������������������������������������#���D1+z�1+1+1+�1+�eU����a��)���p�M$I%��l�-,_�F�����o����'�$���)���)���&��&��F��.�2]������X��������K��������-,-,-,-,�$-,-,���8�����(�N#�(�1+1+1+1+1+��1+1+1+1+1+1+1+1+1+��1+1+1+1+1+1+1+1+1+1+��b0M$�0�vjjt-,t�u���u���-,p�@�����"N�.drx��������5��+�+��I���	1+1+�%��1M$p11+1+A'��:��1+��D�J������!�1+BO1p11+)����hN���'��=(������R�.�1M$$2������������;�T1+���������S������1+�WY���.Z����w/�������{��QQ���v�����22pk������bL���J���W��6����~2M$�2�v�����23M$�3�-,�������
�����!1+�1+��)
�������E&�A'��-,U������Y��&�.R%��]������m���t���}����9)�$�R�.�$�+1+�3M$@40��+�+�8y��%�+�+��8���)��>�	��������5*�H��8t-,��������B"_%����1+1+�1+1+����^�������������1+��R�U)�����q�dw��������U���������1+������+�����W�����t����t-,��������1+��L�������b	���1+�A'�*���������0�/�A�����0��qdU��
/j���j�����*�������������������������1+�"�����*����b	���������/�����������c�/�������0�����������������,������mW1+��7�����1+�����������b	������b	��#��/b	�T�����b	��A�0�3���A��� �����4M$�4��>j!y���������I����
�a��������-����N5���+���0/�00�����=��9���-,-,�/��12�b	����������b	��34����A�/00/A����II8��?��/�2��������@����������������$+28=<FFMT^fmu}���������������� $(,18:0BELLLRSVW`jt}������������������	'(18AHQX_fpw���������������������"#$%&'()*+,-./0123456789:;<=>?BBBCCDDDEEEEFFFFGGGHHHHIIIIJJJJKKKKLLLLMMPW^fnv~�������������������								 	$	(	,	0	4	8	8	=	F	L	M	N	O	R	V	]	d	e	i	p	y	~	�	�	�	�	�	�	�	�	�	�	�	�	�	�	


)
2
6
<
C
J
Q
Z
[
^
e
l
u
v
w
x
y
z
{
|
}
~

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

#-87HGV_������������")/@FLRX^djpv|�����������������������



#
,
0
4
8
<
B
G
L
P
T
X
\
`
h
l
p
t
x
|
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
$+2;DLT[ckry���������������������&',48>AJMTWXZ[dmr{��������������������������
 "+3ABY]cijs|�����������������������
"),-0ABCLV_eou~��������������587HLQUYGnu|������������������������������������
((6:>BFLQVZ^bfjnrvz~�����������������!*1;BKLOW_is}�������������������%89:=>?@CDEHILMPQTUXY\_befgjknosG�JHI����������D����~��E�������XYZ[KLMN^_SROPQVW\]aTU`	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCFbcdefghijklmnopqrstuvwxyz{|}����������;�s�������� �����(0�<��P �d`�x�������p�$��`��� �������`� ��p��� �`��������� ����<���T�����������P���(����@���T@���h����|���P����� 	`���<	0��X	 ���	 ���	����	���
 ��P
`��p
����
����
0���
���@
��0�
��XP�����������0
��(P��\0�������@������
���<
 ��d
���
P���
p���
���p��H���t@�������������P��l@����������� ������0��4p�������������� ��p ��L� ���"���@"���"��<�$����%����%����&��8�'���0)��� *��+��H`+��d�,����-���P.��/��<0��l�C���D����F��4pM��p0X���i������$����Pp���|zRx�$���FJw�?:*3$"D����\�wp����p�����g�H�}���?4���tB�D�K �D(�J0~(M ABB((��A�C�G0@
AAC(8��wc�A�D {DAH��d�Ys�e8�D�yB�E�D �A(�G0X
(D ABBD(����A�G�G@�
AAA�\�/HS
EJ l��A�r
Ed
D ,��A�M��
AB(P���F�A�D �rDBL|8�CF�B�A �A(�G@�
(F ABBCI
(F ABBD�8�+HW�P� E�ZT� HW\�<E�v4��+HWL��+HWd��)H`|���E���\�$HW\�t��F�B�B �B(�A0�A8�D@i
8A0A(B BBBKT8F0A(B BBB��_Hs
A,�@@�JF�B�B �K(�F0�Dp�
0A(A BBBE� �)H`�8�B�t�k���=8���VB�S�G �D(�F0�
(M ABBI8 �dR�G�J �J(�G0Y(F� H�B�B�(PT�A�A�D@E
AAC|��oD0�
H�����D@
K(�����A�A�D`�
AAJ������D0�
I�x����D f
FL�����B�B�B �A(�D0�M
(C BBBGj(A BBB@h����vB�A�D �h
CBLU
ABHNAB����=A�G nF���#A�a�����6Dh
D ���W}Dl����G�E�G �D(�G0`(A ABBD����H0����(`���nA�A�G �
AAF$����eA�p
Ga
EFH�P����B�E�D �D(�G0W
(A ABBE[(A ABB����BE�|0���&B�A�A �Dp
 AABA0P���ZA�L�G Z
AAH]CA0���F�D�A �G@�
 AABF8�����F�B�D �A(�G0g
(D ABBD@����oB�J�D �@
ABEA
FBGACB8	����tWP	D��@A�[
Ab$p	d��DA�I�D pDA$�	���LA�A�G @AA4�	����B�A�A �o
ABJUAB(�	\��CB�D�D �uAB$
���A�T(@
���A�A�G �
AAE4l
x���A�D�D i
AALD
AAJ(�
 ��ZB�A�D �v
ABH0�
T��fG�D�G ZAAB��X ��0���_A�D�N v
DAJDAA$8���3A�D�N YAAH`����B�E�E �B(�D0�A8�DP�
8A0A(B BBBH����AAK����>Hp
A����AHs
A���,H^
A���WHt
LI
A <8��^HC
ED
E,`t���F�H�D ��
ABAL����?B�B�B �B(�D0�A8�D��
8A0A(B BBBF����T�0���,
����B�A�A �y
ABA88
,���B�B�A �A(�D0p
(D ABBE0t
���WA�D�G p
CAHIDAD�
��wB�E�E �E(�D0�D8�D@L8D0A(B BBBH�
T��B�E�E �E(�G0�A8�D��
8A0A(B BBBH<(��0HQ
GI8\8��B�B�D �A(�G0|
(A ABBFH�|��B�B�B �E(�D0�C8�G`Q
8A0A(B BBBD4�P���A�C�G i
CAH@
CAD(���DA�G�K I
IAJHH���B�B�D �D(�J@[
(A ABBI�(A ABBH�����B�H�D �D(�R@
(A ABBG}(A ABB0�T��HB�J�G �G0J
 JFBJLp���B�B�D �A(�G0�
(D ABBGD
(A ABBF<d���B�B�B �A(�A0�}
(A BBBD����SA�Q8����$B�B�G �C(�G0s
(A ABBB8����'B�B�D �C(�G0w
(D ABBF08����B�A�A �G0]
 DABA(l8���A�G�G0[
JFF,�����B�D�A ��
ABD(����mA�D�D RID��-���A�k
L|T.���B�E�E �B(�D0�D8�DPs
8A0A(B BBBI*
8F0H(B BBBH�
8I0A(B BBBE8��0���B�E�D �A(�G`M
(A ABBAL��6���
B�B�E �E(�A0�D8�F��
8A0A(B BBBHHhA���B�E�B �B(�A0�A8�Gp�
8A0A(B BBBCh�Q���F�B�B �B(�A0�A8�G� L�-	

8A0A(B BBBD��-S�-]�-B�-p�-\�-F�-A�-!�-H�-A�-F�-]�-x�-H�-A�-F�-]�-^�-t�-I�-B�-M�-i)�-H�-B�-G�-_�-u�-H�-A�-H�-X�-s�-H�-B�-G�-_�-q�-H�-B�-G�-_�-s�-H�-A�-H�-]�-n�-H�-A�-H�-]�-q�-H�-A�-H�-]�-u�-H�-A�-H�-]�-s�-H�-A�-H�-]�-q�-H�-A�-H�-]�-u�-H�-A�-H�-]�-s�-H�-A�-H�-]�-v�-H�-A�-F�-]�-�-H�-B�-G�-_�-u�-H�-A�-H�-X�-s�-H�-B�-G�-_�-q�-H�-B�-G�-_�-s�-H�-A�-H�-]�-q�-H�-A�-H�-]�-u�-H�-A�-H�-]�-s�-H�-A�-H�-]�-q�-H�-A�-H�-]�-u�-H�-A�-H�-]�-s�-H�-A�-H�-]�-��-Q�-M�-I�-W�-X�-M�-T�-G�-W�-��-H�-A�-F�-]�-t�-H�-A�-F�-]�-x�-H�-A�-F�-]�-Z�-H�-A�-F�-]�-(��l���E�H�D �
AAE(�Xn���
E�H�D �
ID��x��HGNU�f�e��#l#�lP�j#�lP�.20�D2P�P2�q�n iW2C$f2v2�2�2�2�2�2�2�2�2�2�2�2�2�2�2333!3+343=3G3N3U3j3{3�3�3�3�3�3�3�3�3�3�3�3�34414E4O4\4f4n4{4�4�4�4�4�4�4�4�455(5;5O5^5s5�5�5�5�5�5�5�5�5	6 6)62676=6B6H6M6R6W6\6a6f6k6p6v6|6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�677%787I7U7j7x7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7888888+8/83878;8?8C8G8K8O8S8X8-`8d8q8{8�8M*�8h8u8�8�82/�8�8�8�9�8�8�8�8�8�8�8�*�8�8^+�8999'919;9E9�=O9U9[9a9g9r9]?w9->�9�9�9�9�9�9�9�9�9�9�9�9�>�9�9�9�9�9::
:::: :$:):-:2:6:::>:B:P:X:]:f:n:v:}:�:�:�:�:�:�:�:�:�:�:�:�:�:�8�:�:�:�:;;;*;&;>;:;J;Z;f;)0�+o;s;w;{;;�;�;�:�;�;9�;�;�;�;�;�;�;�;�;�;<�;�;�;�;�;<	<<<!<<1<6<<<E<P<]<a<e<i<p<|<�<�<�<�<�<�<�<�<�<�<�<�<�<�<===!=`&,=R&4=<=D=]=m=K=d=P=\=c=l=w=�=�=�=.�=�=�=�=�=�=%.'+�=�=�=�=�=�=�=/�=�/�=>>>0;>�9�)'>1><>G>R>X>`>e>p>~>�>�>�>�>�>�>�>�>�>�>�>�>????%?+?5?@?K?X?`?i?s?�0�0�0z?'#m?�?�	�	�	
�S
�"��#��#���o`�

�# 
�F��)	���o`���o�o,���o���#�S�STT T0T@TPT`TpT�T�T�T�T�T�T�T�TUU U0U@UPU`UpU�U�U�U�U�U�U�U�UVV V0V@VPV`VpV�V�V�V�V�V�V�V�VWW W0W@WPW`WpW�W�W�W�W�W�W�W�WXX X0X@XPX`XpX�X�X�X�X�X�X�X�XYY Y0Y@YPY`YpY�Y�Y�Y�Y�Y�Y�Y�YZZ Z0Z@ZPZ`ZpZ�Z�Z�Z�Z�Z�Z�Z�Z[[ [0[@[P[`[p[�[�[�[�[�[�[�[�[\\ \0\@\P\`\p\�\�\GA$3a1�S�"GA$3p1094 f�"GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY f�fGA+GLIBCXX_ASSERTIONSripper.so-2.7.8-141.el8.x86_64.debug�Y�&�7zXZ�ִF!t/��!��]?�E�h=��ڊ�2N��<�88�@DUH�s�Y=�YQ�YR�IZV=Z�ɚ��0�z���f�����/L��^b�����VAI�J���W���_�4�m�T���Ev(XsXqk�h�yP�4X����k�K"�g�Óp��f�CGþ	ףa(��r���7dx5�����G|԰�� P*Y�p�E��Tp�*��$
���������E�L�l���O�,N�D�6����ێ	�E�)� �1Qհ�7�2_�=1c=���1Շ�'3�~7H3���pHmlcV�>%��o0�[�&�u7�1h�9lT�����[�spgΣ���E����;،*�9+�1����~�I���"���T�ͣ��^��j�Q��X�?In/�R=����OYɺ��=oJ���{!�Y
�.2�7������h����ѽ�ˤ^x3�r�m�^1�D��ls��]-�D�z/���% ��k����9���W~��-5Z/��[��b�_�SvA(R�
jߔ��5����F(p&��;��U54	�D���e�;[��M��ژD��g�/�X!~��a@��y��pQ�C:�����4e��4��D���H�1+R�e�Y,�?{%L�L�{n�Lڗ���!S�T�h��������
�9���e�������dp�.AŕF�k��rt�ob�*d]�����;�^.B2�b�_P^���C��S��<�.
K�\\��-�-���ɾႚ8�S%��,�~�'���f!��9����YLd�!���W���"
�O�y�������'W{�	�༃����tv��_���L���߀�^i퇷�:遮�Ch
�G�cAϸ�����T��t}�o��
�q[��(E�}�E�B���4a�T����N&�P=�1��,SbB0r�$<�Xk	s�ӥ�b]�ͳ"W�y!�[L��ʚQ]J�>��,�w-�b� �6a���л��P����7I���-;[2*<�R��꫽��Ia}F������=�UL_AO����֌98(O��������:Y�à;"ݒ
�	�4
�E�L��y��<�cn옍�Ɨ,]�y��a�+�K��^x��wc`�vkd`(8
�����=�*S��a:�f!g4�_!b{;�}���������w�S<I�̝aJ?�!�1a|�عο���NP����o��޷6^�,���)
#kjX#��`$��54��8��u��q��:2w3l��+��bl�.�H���aG*�a[N�7���`7���us�r�u����b�W�9�W��th)uP�-D�f~�I%�_��9x�� �^U6�ȳ�w.}�e�*�/o�ѓ�&��I�''g�4`4s��X��X��ȡ=��z�m�Sߺ!�S��{i" a�s�>DAT�mc�5g"CX�&������=��"n}B]��c�d�/�g��@O�"?��R���V��T���W��@-��bM\~W�r��~=p_3������_|]Σ^����Z}����+����G��\��/l)�6�3z}�Ѳ$��=Z����"�h%j��N�+��g��LR�h8܀��Vz�H�ƀK8���9��:Eų[� ���l9��iP�[A¯�Ӿ���t2l����eJ�����y1�^�L�x�Yƨ�("��ke�����([;}���j�a��22��8/�:��ޗ�CE�b
��N?D�#��2j=kJ��n���+�\�X@�2q����.ٱ<(����ѷ���VUٰ$@סq���

�Q�G�_o,6����9ы
Y���$`�6�^�-�b酳kr�Jx���/ݮZb����8q�G�Ϊ%o�N�����4:W5�l��ۭ!l�ٻ��
J�;��9��.]4H�;0G��<u�U|#t�I�����.�(�������JI��Ʋ���T���S��2�	�ο�UT�<1��N`��ů��Pŧ�b�8;��D��'W��`���Aʚ�;i�L-��#��D3������d�N��o�ؚ՝���fP��o�	��@��)a	� ��)��̋��.͡ASK�k][X/f�wY�ɬ骜1�0qv�E<����8s�zN�,j��Ivy��)}d��Y�:Pt��8�%4M�h����jqP��9"�J���ի�;�ލ[��ik��`e�-�?�s2���F�����i�/����C����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``<(��p0
8���o,,4E���o``@T���)^B�F�F 
h�S�Sc�S�S�n�\�\�w`e`e!�}�"�"
��"�"`Z �}}������������ ���#�����#�����#�� ���#������#��P��#�x���#x�� �H�cx�D
��,�4	�+PKLH[�6k6����lib64/ruby/readline.sonuȯ��ELF>P8@p�@8	@�x�x �|�| �| �� �|�| �|   888$$�x�x�x  S�td�x�x�x  P�tdplplplDDQ�tdR�td�|�| �| XXGNU�r�C�_���W�{�A���@ ����|CE���qX}�BWg�n�6{�E������ ��X�K���^��	�{�� �n�E	"�g, h/�aSF"Y��������� _�l����)��S��%���������HU�v+	"{�tT�-NT3�����1Ln%'+1�8�j�Zo��D�x�@�	A�����	H� �	�� �	�� �@_y__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerl_pointrl_editing_modehistory_basehistory_lengthclear_historyrb_attr_getrl_completion_quote_characterrb_locale_str_new__stack_chk_failrl_completion_append_characterrb_str_sublenrb_funcallvrb_eIndexErrorrb_raiserl_filename_quote_charactersrb_locale_str_new_cstrrl_completer_quote_charactersrl_basic_quote_charactersrl_completer_word_break_charactersrl_basic_word_break_charactersrl_line_bufferrl_attempted_completion_overrb_Arraymallocrb_locale_encodingrb_enc_from_encodingrb_obj_as_stringrb_string_value_cstrrb_enc_checkstrcpyrb_enc_codepoint_lenstrncpystrduprb_memerrorrb_string_value_ptrrl_username_completion_functionrl_completion_matchesrb_ary_newrb_ary_pushfreerb_ary_shiftrl_filename_completion_functionremove_historyrb_enc_getrb_str_conv_encadd_historyrb_fix2intreplace_history_entryrb_num2intrb_str_new_staticrl_special_prefixesrb_ivar_getrb_str_new_frozenrb_cStringrb_obj_revealrb_obj_hiderb_ivar_setrl_redisplayrl_delete_textrb_enc_str_new_staticrb_freeze_singleton_classrb_str_subposrb_gc_force_recyclerb_enc_strlenrb_range_beg_lenrb_num2longrb_error_arityrb_out_of_intrb_eArgErrorrl_insert_textfcloserl_instreamrl_outstreamruby_xrealloc2ruby_xmalloc2rl_emacs_editing_moderl_vi_editing_moderl_get_screen_sizefilenorb_thread_call_without_gvl2rb_wait_for_single_fd__errno_locationrb_sys_failrb_thread_check_intsstdinrb_syserr_failrb_bugrb_block_given_prb_yieldhistory_getrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_respond_torb_io_taint_checkrb_io_check_initializedrb_eIOErrorrl_initializerl_refresh_linerb_keyword_given_prb_protectrb_str_new_sharedrb_str_set_lenrb_str_catrb_str_locktmprb_str_unlocktmprb_empty_keyword_given_prb_free_tmp_bufferrb_str_tmp_new__ctype_b_locrl_free_line_staterl_cleanup_after_signalrb_jump_tagreadrb_check_typerb_io_check_closedrb_cloexec_dupfdopenrl_set_screen_sizeInit_readlinerl_readline_namerl_getc_functionusing_historyrb_internrb_define_modulerb_cObjectrb_obj_allocrb_mEnumerablerb_extend_objectrb_define_constrl_library_versionrb_str_new_cstrrl_attempted_completion_functionrl_pre_input_hookrl_char_is_quoted_prl_catch_signalsrl_clear_signalsrb_gc_register_addressrb_define_module_functionrb_define_singleton_methodlibruby.so.2.7libreadline.so.7libncurses.so.6libtinfo.so.6libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.3GLIBC_2.2.5/opt/alt/ruby27/lib64�	ii
�	ii
�	ui	�	�|  9�| �8�| �| �~ �~ �~ �~       ( 0 #8 (@ 0H 5P 7X 9` ;h =p @x F� L� R� T� U� V� X� ^� p� z� }� �� �� �� �� �� ��  � (� 0� 8� @� 	H� 
P� X� 
`� h� p� x� �� �� �� �� �� �� �� �� ��  Ȁ !Ѐ "؀ $� %� &� '�� )� *� +� ,� - � .(� /0� 18� 2@� 3H� 4P� 6X� 7`� 8h� :p� <x� >�� ?�� A�� B�� C�� D�� E�� G�� H�� Iȁ JЁ K؁ M� N� O� P�� Q� S� W� Y� Z � [(� \0� ]8� _@� `H� aP� bX� c`� dh� ep� fx� g�� h�� i�� j�� k�� l�� m�� n�� o�� qȂ rЂ s؂ t� u� v� w�� x� y� {� |� ~ � (� �0� �8� �@� �H� �P� �X� �`� �h� �p� �x� ��� ��� ���H��H��T H��t��H����5�U �%�U ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn���������%�N D���%�N D���%�N D���%�N D���%�N D���%�N D���%}N D���%uN D���%mN D���%eN D���%]N D���%UN D���%MN D���%EN D���%=N D���%5N D���%-N D���%%N D���%N D���%N D���%
N D���%N D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%�M D���%}M D���%uM D���%mM D���%eM D���%]M D���%UM D���%MM D���%EM D���%=M D���%5M D���%-M D���%%M D���%M D���%M D���%
M D���%M D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%�L D���%}L D���%uL D���%mL D���%eL D���%]L D���%UL D���%ML D���%EL D���%=L D���%5L D���%-L D���%%L D���%L D���%L D���%
L D���%L D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%�K D���%}K D���%uK D���%mK D���%eK D���%]K D���%UK D���%MK D���%EK D���%=K D�k���H�=�/1��
���f.�H�=K H�K H9�tH��F H��t	�����H�=�J H�5�J H)�H��H��H��?H�H�tH�uF H��t��fD�����=�J u+UH�=ZF H��tH�=�C �����d����}J ]������w������H�uF HcH�D�ff.����H��E �8H����ff.���H��E ��8�HE����H�EE 8��������f���H�5E HcH�D�ff.����H�E �8H����ff.���SH���s���H��[�ff.���H�5�I H�=J ����f���H�5�I H�=�I ���f���H�5�I H�=�I ���f���H�5�I H�=�I �i���f���H��dH�%(H�D$1�H�!E ����tH�|$��T$���H�L$dH3%(uH������f���H��dH�%(H�D$1�H�D ����tH�|$��T$�S���H�L$dH3%(uH����Y���f���AUATI��U��SH��(H�5�H H�=�H dH�%(H�D$1��j���H����L��H��������xuLc�I9�wmH��L������L��H��H���0���H��H��H�5fH H�DH�,$H�D$����H���������H�T$dH3%(u0H��([]A\A]�@1���H��H��C ��H�5�+H�81�����j���f.���H��H�5�G H�=�G ���H��tH�5�G 1�1�H�����1�H���D��H�]B H�8H��t
�H������f.���H�
C H�8H��t
�������f.���H��B H�8H��t
������f.���H�B H�8H��t
������f.���H��A H�8H��t
������f.���H�}B H�8H��t
�X������f.���AWAVAUATUH��SH��xH�5tF H�=}F dH�%(H�D$h1�����H�����F H��H�A H�5/F H�=@F �H�wA ����H��H�D$���H�5F H�L$`H�ߺH�D$`����uH������0H������L� H��A�� ��L�eM����J��H��H�D$��H�D$HH����������1�H��I�����I��H�D$XH�$H�EH�D$M���L�t$ L�l$H�zf.�H�D$H�<����H�<$H�D$X���H�t$XL������L�t$XI�>�� ��H����H����I�D�H���lI�vH��H�����L9�txH�E u�H�E �I��A��M������H�D$H��L� H��D���������������I�FH�x��I�D�H����I�v�{���@L�t$ H�D$HH�L$H�D�I����H�\$HH�CH��H�$�q�I��I���)H�D$H��H�D$ H�CH�D$8H�D$H�D�H�D$@H�D$PH�D$(H�D$TH�D$0f.�H�D$8H�(H����H�D$H���M���H�$E1�H�M��H�D$M��J�;1�H�L$�#�HcD$PI�HcD$TH�M9�}gH9\$~`H�$H�T$(L��H�t$J�< �*�H�T$0H�t$L��H�|A����H�|$ tA�O�D���� ���H�DB��ƒ� ��B�A9�t�M��H�D$8H�D$8H9D$@����I���H��H�D$HH�H�������H�pL��H���?���B�8H�L$hdH3%(H�D$Hu'H��x[]A\A]A^A_�E1��H�\$HH�{��H�����������ff.�@��ATU�SH��H�|$H�t$���H�5�= H���1�H��tdI����I�<$H��H��t-L��D���H��H��H�����H�{��3�H�;H��u�L���#�H�E�� u"H�EH��~H����H��H��[]A\�@H������ff.�@��ATU�SH��H�|$H�t$��H�5�< H���q�H��tdI�����I�<$H��H��t-L��D��H��H��H����H�{��s�H�;H��u�L���c�H�E�� u"H�EH��~H����H��H��[]A\�@H������ff.�@U�SH���`�H��tH�8H����H�;H����H�����H��H��[]���H�e; �8��~���f.���f.���AVAUI��ATUSH��dH�%(H�D$1���td�G�H��H��L�d�H��H�C�H��H�$����O�H�<$I����H�<$L��H���D�H�$H�xH� tH�x�j�L9�u�H�L$dH3%(L��u
H��[]A\A]A^��@���USH��H��H�|$H�t$�t����H�|$H����H�|$H��H�����H�D$H�xH� tH�x���H��H��[]�ff.�f���UH��SH����H�T$ty�����H�|$���S�H�|$H����H�|$H��H���F�H�D$��xMH�hH� u(���> 1�H�����H��t2H�D$H��[]�H�h��f��K�����H�y9 y�H�>: H�5#H�81���ff.�f���USH��H��H�t$H��uH�Q9 �H��H��[]ÐH�|$���q�H�|$H���$�H�|$H��H���d�H�H�D$�� u���t�H���f�H�xt�H�@�H��8 �H��H��[]�ff.�@���H�=F"�+�ff.���H�-9 SH�8tH�5w= H�=�= ��H��u
�H��[�H�����H��H�.9 H��H�0��H��[�fD��UH��SH��H��H�t$H��tKH�|$���V�H�|$H���	�H�|$H��H���I�H��H�D$�l�H��H�D$���H�T$H�5�< H�=�< �'�H�D$H��t,H� tH�@H�@8 H�H��H��[]�H����f�H�!8 H�H��H��[]����H��H�=�< H�5s< ��fD��SH�����H��[�ff.���AWAVA��AUATUSH��8dH�%(H�D$(1�����H��7 H��L�(M��t^H�D$L��H���<�I��H�D$ ��I��A��t^H�t$ H�|$A���H�Hc�H9���Hc�H9����B�H�L$(dH3%(H����H��8[]A\A]A^A_�@H����H�H�{H�L$@���H�H�|$ L�t$ L��L��L��H�L$�V�H�L$�I��u:H�����t2H��ƒ���t%H�€�I�|$I�$t��uL����H�L$�L��L��H���R�L��H���g�H����L)�H�t$ H��H�\$���f�L�H��L�t$ L���m�H�;H�t$L��A�H��H�D$ �o�H��tBH�|$H�t$ ���H����H��������H�L$H�����fDH���t
H�H�L$����H���k�H����1��*���H���-��(�H��5 H�5bH�81������USH��H��H�|$H�t$�����H�|$H����H�|$H��H�����H�D$H�xH� tH�x��H��H��[]�ff.�f�H�=9 H��t<H����H�,4 H��8 H9t0H��8 H��8 H���DH��8 �@H���ff.�@H�=�8 H��t<H���K�H�4 H��8 H9t0H�u8 H�z8 H���DH�e8 �@H���ff.�@��USH��H��H�|$H�t$�D���H�|$H���R�H�|$H��H����H�=�7 H�D$H����H�0�� trH�pH�����H��7 H��H�t$H��� uiH��H����H���v�H�T$H��H��� u6H�����H��2 H�H��H��[]��H����H���H�B��f.�H�VH�v�fDH�8�� t%H�xH�����H��H�7 �N���@H����H������USH��H��H�|$H�t$���_�H�|$H����H�|$H��H���R�H�=�6 H�D$H����H�0�� trH�pH����p�H�i6 H��H�t$H��� uiH��H����H���6�H�T$H��H��� u6H�����H�<2 H�H��H��[]��H����H���H�B��f.�H�VH�v�fDH�8�� t%H�xH����s�H��H��5 �N���@H����H������USH��H��H�|$H�t$�����H�|$H�����H�|$H��H����H�=S5 H�D$H����H�0�� trH�pH����0�H�!5 H��H�t$H��� uiH��H����H����H�T$H��H��� u6H�����H��0 H�H��H��[]��H����H���H�B��f.�H�VH�v�fDH�8�� t%H�xH����3�H��H�q4 �N���@H����H������USH��H��H�|$H�t$�����H�|$H����H�|$H��H�����H�=4 H�D$H����H�0�� trH�pH������H��3 H��H�t$H��� uiH��H����H����H�T$H��H��� u6H�����H�$/ H�H��H��[]��H����H���H�B��f.�H�VH�v�fDH�8�� t%H�xH������H��H�)3 �N���@H����H������USH��H��H�|$H�t$�D���H�|$H���R�H�|$H��H����H�=�2 H�D$H����H�0�� trH�pH�����H��2 H��H�t$H��� uiH��H����H���v�H�T$H��H��� u6H�����H��- H�H��H��[]��H����H���H�B��f.�H�VH�v�fDH�8�� t%H�xH�����H��H��1 �N���@H����H������H��1�����H���f���H��1�����H���f���SH��dH�%(H�D$1�H�t$H�����E�Hc4$H��H��H�t6��Hct$H��H�t6��H�T$dH3%(u	H��H��[��!����H��, ��U1 ������ATI��USH�� dH�%(H�D$1�H����L��L�$$H��H���������D$1�H��H�����H�\$H�=��+��D$���ub�|$��tZ��tE��uL���8��;D$�#�1Ҿ��� �����u����8t�H�=X�5��D�K��f�H�L$dH3%(u+H�� []A\��H��+ L� �)���H�5�5�������H�5+ ���~1��x����f.���ATI��US����tTH�-�* 1ۋE��$�6f.�H�8�����H�����9]~���/ ������H��u�L��[]A\�@���H����[L��]E1�1�1�H��A\�E�DH��u
�f�H��H�5�/ �0���tH���H�8+ H�5�H�81���ff.�@��SH��H�����H�51/ H�=b/ H��[���f���SH��H���p���H�5/ H�=2/ H��[�Y��f���SH��H���@���H�5�. H�=/ H��[�)��f��
j. S����H�=z. H��uMH�=f. H��u	[����H�XH�������C��y����H��) H�54H�81��{����H�XH������S��y����H��) H�5�H�81��C������- �[���ff.����H���3���1�1������H�����AWAVAUATI��UH��S��H��XdH�%(H�D$H1����H�D$@������������H�D$8H�|$@L�l$@H�D$���������L��1�H�=������H�ËD$@�����H�D$�����4H���KH�t$HdH34%(H���sH��X[]A\A]A^A_�DH�EH�D$8���_���H�EH�D$���H�|$@L�l$@�#H�|$8�������H�|$8H�����H�|$8H��H������H�5�, L��H��H�D$8�`��H��H�����H�5n, L��I���C��H��L9��I��� ��I�_H���rM�W1�H��L�L�T$�7��L�T$I9��kA�
���_M��E1��ED����A��u!�H�5AH��L�T$�h��L�T$E1�M��L9�v&A���tM�p������u�L9���M��L��L)�A��u�H�5�H��L�T$�
��L�T$L��H��H�����H�5k+ L��L�����H�5Q+ H��L�����H��H�l$8���H�\$8H� ���b���H�sL��H�=�������H��H�|$8������DH������H�����H��H���,������������+���H�|$@t
H�|$@����1�������L�l$@L������!���fDH�k���L��H�=��H������H��H���U�������@H����H���|M�W����fDL��L��H��L)����M��M��A������I���fDL��L��H��L)����M��M��E1��$����A�H��[t?M������fDH���`������H���s��H��I� �v����g���1��/���L��L��H��L�D$L)�D�\$H�����D�\$L�D$fDI�vH9���A�N����L�D$(H�t$ D�\$�L$����T$D�\$H�H�t$ H��L�D$(�DPu�B�I��<	v���;t�M��I���K���E��tGM�VL��H��D�\$L��L�T$L)��w��L�T$D�\$M������M��I���(���I��M�������H�5H��L�D$�6��A�L�D$��$���?���z���|$@������USH��H��dH�%(H�D$1����H�t$���{H���c��H��t>H��u(�D$�C�E�C1�H�L$dH3%(u&H��[]Ð�������f��E�������}��ff.�f���USH��H��H��tm�H������H���(��H�hH��������}����Ń��tcH�5{�����H��t4H��" H�/' H�8' H�H��H��[]��k�H��H��[]��|��������H�5(�����H�=���f���USH��H��H��tm�H��� ��H���h��H�hH��������}�����Ń��tcH�5�������H��t4H��! H�w& H��& H�H��H��[]��;�H��H��[]�������3��H�5h���E��H�=T����f���SH��H���t���H��! �H��[�D����H��! �H��[�D��ATI��UH��H�׃�StJ������L��A��t�����މ��L��H��[]A\�@�{���މ��2��H��[]A\�f.��[��������H��H����t0�k���Dž�x0�w% �����H��t)H�8H���G�������Dž�y�H�>  8y�H�! H�5�	H�81��b��f���H��H����t(�����H�  ���x(9�~(H���?�������H�� ���y��y�H��  H�5j	H�81�������AUATUSH��	H��H�\  H�H�� H�3�H����H�=�	�_��H�=�	H��$ �L��H�=�	H��$ �9��H�=�	H�s$ �&��H�=�	H�@$ ���H�=~	H�%$ ���H�=�	H�2$ ��������H�1���H�5l	H��H�0$ ���H�=$$ �H����H�5L	���H�=$ �H���H�54	���H�=�# �H���H�5	����H�=�# 1�H����H�5�����H�=�# �H�O�H�5����H�=�# 1�H����H�5����H�=p# �H���H�5��h��H�=Q# 1�H�8��H�5�L��H�=5# 1�H�\��H�5��0��H�=# 1�H���H�5����H�=�" �H�a���H�5����H�=�" �H�����H�5m����H�=�" 1�H���H�5a���H�=�" 1�H�J�H�5U���H�=�" 1�H����H�5I���H�=k" 1�H���H�5>�f��H�=O" 1�H�v��H�55�J��H�=3" �H���H�5*�+��H�=" 1�H����H�5+���H�=�! 1�H�?��H�5+����H�=�! �H� �H�5'����H�=�! 1�H����H�5(���H�=�! �H���H�5����H�=�! 1�H�I��H�5��}��H�=f! �H�*�H�5��^��H�=G! 1�H����H�5��B��H�=+! �H���H�5��#��H�=! 1�H�s��H�5����H�=�  �H�4�H�5�����H�=�  1�H���H�5�����H�=�  1�H�|�H�5����H�=�  �H�
�H�5����H�=z  1�H�A��H�5\�u��H�=^  �H�R�H�5��V��H�=?  �����H���H�5��7��H�=   1�H���H�5w���H�=  �H���H�5b���H�=� 1�H��H�5�����H�=L�d��H�=LH�� �Q��H�-Z H�s H�}���H��H�h H��H�0����1�H��H���H�5
�}��H�߹H�~���H�5��b��H�߹H����H�5��G��H�߹H�H��H�5��,��H�߹����H�}��H�5����1�H��H�5��H�5����1�H��H�M�H�5�����1�H��H�e�H�5w����1�H��H���H�5d���1�H��H���H�5K���1�H��H�
��H�5;���H�߹H��H�5'�f��1�H��H����H�5�N��H�=7 H��H�5����H�}�/���H�S��H�5�H��H�����H�=� H��H�5��{��H�}H�-@�������H�O��H�5�H��H������H�=� H��H�5�H�����0��L�-� H�J H�-; I�}���I�u�H�=�I���������H�=Y L��H�5rH��������H�l H�H�J H�+��H�H�Y H�*��H�H�` ����H�=� ���H��H�=� []A\A]���H�=��4��1��� �����H��t 1�1�H�5��@��H��t�����A����H�-Q ���H�9 ����H��H���invalid byte index (%d in %zd)readline_getc: input closed unexpectedly or memory corruptedargument must respond to `call'completer_word_break_characters=completer_word_break_charactersinvalid indexHISTORYrb_wait_for_single_fdreadclosed readline inputclosed readline outputdupwfdopenRubycallcompletion_proccompletion_case_foldpre_input_hookspecial_prefixesquoting_detection_procReadlinereadlineinput=output=completion_proc=quoting_detection_proc=completion_case_fold=line_bufferpointpoint=set_screen_sizeget_screen_sizevi_editing_modevi_editing_mode?emacs_editing_modeemacs_editing_mode?completion_append_character=completion_append_charactercompletion_quote_characterbasic_word_break_characters=basic_word_break_charactersbasic_quote_characters=basic_quote_characterscompleter_quote_characters=completer_quote_charactersfilename_quote_characters=filename_quote_charactersrefresh_linepre_input_hook=insert_textdelete_textredisplayspecial_prefixes=orig_promptlast_promptto_s[][]=<<pushpopshifteachlengthempty?delete_atclearFILENAME_COMPLETION_PROCUSERNAME_COMPLETION_PROCEditLine wrapper1aVERSION;DG�`����������t	����������� ���0���@��`�����,���H���\���p��� ����������������$@��8p��L���`���t���0���P��(��\�������@������`��80��d�������`���0��P��p��0���|@������� ���`���4��` ��`���������	0� 	@��	p��	��	P��	��
��(
��D
��`
��x
 ��
���
��(@�`����`�����zRx�$����FJw�?:*3$"D`���\��p$���0���<���8���4���@���L��E�LP��\��,h��@t��T���WH I
Ap���WH I
A8����F�B�D �C(�DP�
(A ABBE����;Hr����&���&��&8��&0T��&Dp��&LX���F�B�B �B(�A0�D8�D��
8A0A(B BBBA$zRx��������,���0� ���F�A�F �D0�
 DABE0����F�A�F �D0�
 DABE$L8��=A�F�D lDAtP��&@�l���F�B�E �A(�A0�D@�
0A(A BBBA$����cE�A�G0PDA(� ���E�D�D0u
AAD0 ����E�A�G0\
DABkDAT@��hL��ZL�h
Da0�����E�D�G0�
DADZDA�(���4��E�LH�8��`F�B�E �B(�A0�A8�Dp�
8A0A(B BBBE$8L��cE�A�G0PDA`���aPrV|���aPrV(�<��=E�A�G0�
DAH(�P��=E�A�G0�
DAH(�d��=E�A�G0�
DAH(x��=E�A�G0�
DAH(H���=E�A�G0�
DAHt���HU����HU ����oE�D \
DA����0���F�D�A �D@�
 AABHzRx�@���$i��D���&4X����F�D�A �U
ABENDL�$��ATT
A�X��'E�]�l��'E�]����'E�]����G�a
H8�� HWH4@��_F�B�B �B(�D0�D8�F��
8A0A(B BBBF(�T��E�A�G0_
AAB4����E�A�G j
DADI
DAA4�P��E�A�G j
DADI
DAA	��;E�]
FR4<	��iF�D�J �d
ABER
ABKt	0�nHl
L�	��hHd
L8�	��yF�B�A �A(�K0�
(H ABBHGNU� 9�8�| `	o	�	�	�	�	�	@*
�g�| �| ���o`��

� h
�0�	���o����o�o����o�| p*�*�*�*�*�*�*�*�*++ +0+@+P+`+p+�+�+�+�+�+�+�+�+,, ,0,@,P,`,p,�,�,�,�,�,�,�,�,-- -0-@-P-`-p-�-�-�-�-�-�-�-�-.. .0.@.P.`.p.�.�.�.�.�.�.�.�.// /0/@/P/`/p/�/�/�/�/�/�/�/�/00 000@0P0`0p0�0�0�0�0�0�0�0�011 101@1P1GA$3a1@*�gGA$3p1094P8�gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY09�gGA+GLIBCXX_ASSERTIONSreadline.so-2.7.8-141.el8.x86_64.debug΂�4�7zXZ�ִF!t/��]?�E�h=��ڊ�2N�a��em컙��ɕ2��}�[�{���f���
�0J�I=H-~�>u����32��2���q���_Sf�j�2�3'�ۅ8�<�L�;���'(N��h���=���粌�v�sp�{S�=H� u������g)��qlG ߲�⯸[�7�\�b3�=r�w�!�B,ˇy�2���m�]�?���mG(��D�O���eIU� "���k�ݧÄ��[l)��B�,U�R�ܟpA	�~?�E�b�L�./���n3g�9�����.F���ꊥ���%%��esF���$�L�l���
�FS
���h>zBL��2��R<b�8��:�@�tn�4mhH���U�9�R����J(	y<��.�"]���NC�/����	��d�<�$�Kk>��Z�����"�'\�0\�O3z�q`��e}��[	�@.���y��:�Ox\}�I�׻һ�WB�ڀ���Z)�a�
��08R�]ޣX�좓�uv.ї�+�_�+���M�����먃U�}<5H[����ΐgC�wb%$�%�BI��B��J�eQޙ�D!u�<D�Hn��:�j���8����B��.6�1����m��ss����#�@�U��KN��Z�x�5NHrO�Z9�%�'����%�nz���Is����~{�����>�t'�3*�B���	���rQ%���?F��Hw��u�6xo���(>9�i�
˝-��ڝ�e4���6���Ɂ���N]����)�B�c|6�־Ƥ�nm�'�Qf%<��*�!��<CS_�^�-&�����!I@���V���N�K4��.<&Ci��+���0\��cW;kf�1�{�Vwf�UR����s���EaGqţ]��Sq�����d[V�4�C#���)�*lta�F~�+fNB��q��&C�`���kx����zO3�ݴ�����Ҙ��7	[�dR�-��
�H�B4Y��\�<$���	��>�q'�d�Ff�J��ޏf�
��������c���P��u��$�j�ٸN�"W��"��	E5ؼ0&w�K��%"�UA%�^S��gb];Az'c����e�Y���V��-[��[��R��e��]`����x��}���)��cXԑ.{��,����^rWu��n�^���gPrb
�-���U��d	-���p1�w��euq�H4C�4���?0�y��]
�����kC,�`Q%�h:�QDB�g4�(V���O��p�Pob�e�����8��E
��w9u٨�	��nm��G�f5��ۂ&۰>�=�Ǟ�m�'o(/��?�B�3=�Dn�huW}Aơ��o��C�]HJ���W�Kg�����'d��:�صc+i�{g ;�o㷼Ä�z�"d�)��5��{�4���z?c!*��Upd�s��Q���l;W�,E�������>\��䞘�����y����5�b,�xq���^��7m�ӱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0��
8���o��.E���o��@T00�^B��h
h@*@*c`*`*n`1`1�wP8P8i/}�g�g
��g�g��plplD��n�n�	��x�x ��| �|��| �|��| �|��| �| ��~ �~ �� ����� ����H�`��D
ԅ,�DD�+PKLH[lib64/gems/ruby/json-2.3.0/jsonnuȯ��PKLH[�G����lib64/ruby/sdbm.sonuȯ��ELF>� @H{@8	@�b�b 0m0m 0m P �m�m �m ��888$$�b�b�b  S�td�b�b�b  P�td�T�T�T��Q�tdR�td0m0m 0m ��GNUF�v�
��HS(z���$��E�A$���	���EIPBE���|�Ϲ=��%2�?����ѣ�nV�qX�?~G�*ŤZx�|�[!y��C�H� ��U�����`(=�~�*E[oiq V	~����""�v����]�1d�|�;4, ��UwF"]���Q��@@r S�r ��+3��)�fPr �`*5,��`M�G@r ��+2�1���*�
�,���'�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizefcntlreadlseeknullitemmemcmpmemmovememcpysdbm_prepmalloc__fxstat__errno_location__stack_chk_failsdbm_openstrlensdbm_closesdbm_firstkeysdbm_nextkeysdbm_hashsdbm_fetchsdbm_deletewritesdbm_storerb_check_typeddataruby_xfreerb_raiserb_hash_newrb_external_str_newrb_hash_asetrb_ary_newrb_assoc_newrb_ary_pushrb_string_valuerb_str_exportrb_out_of_intrb_block_callrb_intern2rb_error_frozenrb_hash_delete_ifrb_yieldrb_str_duprb_protectrb_jump_tagrb_block_given_prb_ary_new_caparb_warnrb_sys_failrb_keyword_given_prb_empty_keyword_given_prb_free_tmp_bufferrb_eIndexErrorrb_error_arityrb_get_pathrb_num2intrb_fix2intrb_sys_fail_strrb_data_typed_object_zallocrb_ensurerb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_check_typerb_ary_detransientrb_eArgErrorInit_sdbmrb_cObjectrb_define_classrb_eStandardErrorrb_mEnumerablerb_include_modulerb_define_alloc_funcrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.14GLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib646���Xii
cui	m0m �!8m �!@m @m `m �Tpm �3xm �3�o I�o �o �o �o  �o +�o 8�o 9�o :�o <�o =p  p (p 0p 8p @p Hp 	Pp 
Xp `p hp Ppp Jxp 
�p �p �p �p �p �p �p �p �p �p Q�p �p �p K�p �p �p q q q q   q !(q "0q R8q #@q $Hq %Pq &Xq '`q (hq )pq Gxq *�q N�q ,�q -�q .�q /�q 0�q H�q 1�q 2�q 3�q 4�q 5�q 6�q 7�q ;�q Or =r >r ?r @ r A(r B0r C8r D��H��H��W H��t��H����5�W �%�W ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD��������%mS D���%eS D���%]S D���%US D���%MS D���%ES D���%=S D���%5S D���%-S D���%%S D���%S D���%S D���%
S D���%S D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%�R D���%}R D���%uR D���%mR D���%eR D���%]R D���%UR D���%MR D���%ER D���%=R D���%5R D���%-R D���%%R D���%R D���%R D���%
R D���%R D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%�Q D���%}Q D���%uQ D���%mQ D���%eQ D���%]Q D���%UQ D���%MQ D��UH��SH��H�=�3P1��E���ZH��H��[]���H�=Q H�Q H9�tH�fN H��t	�����H�=�P H�5�P H)�H��H��H��?H�H�tH�MN H��t��fD�����=�P u+UH�=BN H��tH�=�K ����d����}P ]������w�����1���v�f����t��wH�Gf��H�Of9�|?��~#�5D�8��9�'D�@fD9�|A9�D����H����ٸ�1��ff.�f�S1����������t��~�t1�[�����߾��1��e���[�����������AWH��HI��AVAUE1�ATU1�SH��H�D$1�H���H��E1��fDH�t$A�?��N���H����M��@H��L��H��?H��?H��4H��=HÁ�H)�I�DA��H��H)���skH��D��A�T$H���N�lhM9o�A��M��I�]M���II�H��M��MI�I��M;�@�t���L��A�?1�H����H���8���Ic�H�~.H��H!�M�o�I�G I9o8uH����[]A\A]A^A_�M�g@I�H1�H��H��L��H��
1�H)�I�G@��ILJ8���H�A��k���H��x.A��L������H��xL�������tI�o8�w���1��m����Hc�H��-H��H!��C���f.�UH�o@SH��H���fD�D�9���HcȺH�4	��~�T5�H�DMH��H�)�H��u}H�C(�{�CH�pH�s(H9C8tH��
1����H��x_H�s(�{H�s8�H���/���H��~BH�������t6�C�S@���Cf���`���H�IJ H��RH��t�H��[]��H�)J �KH�H�RH��[]�ff.�@AWAVAUATUSH����~}��Lc�H�T$I����M���H�l6�f�A�D]H��H9�tAI�T]A��)�H��D9�u�H�|$L�L���^�����u�H��D��[]A\A]A^A_��E1���ff.�AWAVAUATUSH��H�/�������H���H���5���A��1�E�����E�I��A9��Mc�A����J�|{�H�|$I�GB�c���CL�,D)�L���)�L��Hc�L��H)�H)�H�H�����L$J�D+�H�tkD)�D�PH���f�P�H9�u�D�#A���fD�#H��[]A\A]A^A_�DH�D$��e���DAUATI��UH��S�H��L�/fE��~B�o)Ӆ�u.I�Ef�\EL�,D)�E��u9fB�\-f�EH��[]A\A]�Hc�Hc�D�D$H��%���D�D$�fDHc�Ic�L��H������D��AVI���HAUI��ATA��U��SH��dH�%(H��$�1����H��H���YH�@ H�@(H�����H�@@������D��L��1����[����C����������������D���L��1��0���������������������3H���V��������H�D$01ҹ�H�C8����H����H��H��H�C1�H��@H�S@H��H��H�H��H���H�H��$�dH3%(H��ujH�Ġ[]A\A]A^�D����
���D�{���t���;���t���H��1��e���{���u���fD�{�����ff.���AWAVAUATUSH���t$H�����?H����A����L�xH��K�<?����I��H����H��H��H��M�����I�K�<<H���.dirH���@���T$L��D��H�H���.pag�C��L��I����H��L��[]A\A]A^A_����E1�����������SH��tH���?��{��H��[�+��S��[�ff.���USH��H����H�G@H��1�1�HLJ8H�o@H�H1�H��H��H)������H��{��H��x>�{�H���F�H��x)H�C8H��H�C(�CH��[]�\���@H�YD �KH�PH�H��[]�����H�.D H�PH�H��[]����H��t����f�H���G��H��C H�PH�H���ff.�����t(�F�H�L1�fDH��Hi�3�W�H�H9�u��1��ff.�f���AU��AT��I��USH��H�����uHH��H��t@H��D��H����H��H���o�����uKH�LC �KH�H�RH��[]A\A]�fD�s�H�$C �H�H�RH��[]A\A]�@�s@��t8L�k@D��H��L�������t"H�H�TH�D@�T>H��L�)��fDH��B H��R뢐����AV��H��AUI����AT�US��H��H�����o��uzI��D��L���,�H��H�������tML�s@D��L��L�������t_H�s8�{1�H��
�E�H��x �{�L����H��x[��]A\A]A^ÃK�������D�K���������fD������Ɛ�+��������ff.�AWAVAUATL�g@USH��H��hH�t$L��$PL�t$P�T$HdH�%(H��$X1�H��H�D$L
H�D$8H�GHH�D$@��L��L��H�k H���H�I�$H�t$8L�}H�F�H�|$@H��H��L��H)������H���L���H���$Pf������I�mL�|$(���H�\$0I��L��I�D�H�D$ f�M�I�OD)�N�,L��H�ȉ�H�L��)�H�L$�T$�b�L��H�D$(A��IE��T$H�L$L��I������A�W�L;|$ u�I��H�\$0H�k L�}H�D$�{H!�L	�L���+H�s81�H��
�L�H�����{�L����H����H�k8H�{HI�L��H��L��I�$H)�I���H)΁�H��8���H�L�C�;M��I�hI���II�H��M��II�H��I��H�L$I��H;�@tQ1�L��L�D$ L�L$��H���8�;H��H��5�H���H�L$�;L�D$ L�L$H��@H��H��?H��4HŁ�H)�L��H��?H��=I���H)�����+HH�CI9�|
H�H�C1�L���
�H�����;H��H��a�H����H�K@���~A�L�t$H�T	)ЍV9���H�C H�s1ɋ{H�PH�T$��H	�1�H�LqH�C H�s8H�KH��
��H��x#�{�L�����H��x�l$L��1�H��$XdH3%(uRH��h[]A\A]A^A_�f�H��1�H��
�"�H��x��{�L���}�H�������f������@��AWAVAUATI��UD��SH��(H������u!H��H��t�_����G�4A���v*���������H��(��[]A\A]A^A_�f�I��D��I��D�L$L��L�$��H��H��H�D$�f���D�L$H�E@L�$H�D$A��t^D�U@E��fE��~jD��L��D��L�D$H�}@D�T$D�$�������\���fD�+��������A���D��L��H���Z�D�U@L�$E�ѸE����C�T)�A�V9�}H�t$D��H��L�$���L�$��tED��L��H�}@L����H�u8�}1�H��
�a�H��x�}�H�u@��H�������f��M��������f�D�$D�L$L�D$M��H�E@B�H�`�����H�H�H%��HX����H��H�5�9 �\�H�xH�H�����ff.����SH��H�H��t�Z�H��[���PXH�571�H��H�=Z> ��D��AVH�539 AUATUS���L�`M��ts�z�L��I�����H��H��H��tL@H��H��L�����Hc�H���7�Hc�H��I���)�L��L��H�����L�����H��H��H��u�[L��]A\A]A^��G������AWAVAUATUSH��H�����H�58 H��I���4�L�`M��t{L���C�H��H��H��tV�H��H��L����Hc�H��I��I����Ic�L��H���s�H��L��H���5�L����H��H��H��u�H��L��[]A\A]A^A_����ff.���H��H�5�7 ��H�xH��t$���x
u�H��Ð��H��t�1�H����:���f.���ATH�5�7 US�<�L�`M��t\H��Hc��~[H�D]A\��L���0�H��t+1�f�L����E�H��u�Hc�H�D�][]A\ø1������f���SH�57 ��H�xH��tH�����H�C�[��z���f.���AVH�5�6 AUATUS�x�L�`M��t{�:�L��I����H��H��H��tT@H��H��L���R�Hc�H�����Hc�H��I����L��H����L��H����L���[�H��H��H��u�[L��]A\A]A^�����ff.�@��UH�56 SH�����H�XH��tQ��H��H�����H��t2@H��H����Hc�H���"�H��H���'�H�����H��u�H��H��[]��K���ff.���UH�5�5 SH���J�H�XH��tF��H��H���Q�H��t'@Hc�H����H��H����H���Z�H��u�H��H��[]�����fD��SH��H��H�|$H�t$��H�|$��H�8H�D$�� ��H����Hc�H9���H��H�5�4 ��H�XH����H����H��uG�fDH����Lc�L9���9�uH��uDH��H��H������tDH����H��tDH��H���9�H�t$H�H�ρ� t�H�N�H�vH��H���A���u�H���[�f�H��1�[��H�x�'���H���o����f.���ATI��USH��H�|$H�t$�b�H�|$�X�H�H�D$�� uSH��H�h��Hc�H9�uOL��H�5�3 ���g�H�xH��t0H��H���c�H��H�H��H��[]��A\�DH�hH�P��	���H�������ATUSH��H��H�|$H�t$���H�|$��H�8H�D$�� ��H����Hc�H9���H�5
3 H�����H�hH����H�����H��I��H��u9�}DH��H����H9�uH������tGH�����H��I��H��tIH��L��H���k�H�t$Hc�H��� t�H;Vu�H�vH���y���u�Ic�H����H��[]A\ÐH���[]A\�f�H�x�*��������ff.�f���UH��SH��H��H�57 H��t$I��H��L�W1�1��.�H��H��[]�@�	H�=���H��H��6 �@��uH�����tH��ƒ���t��u�H��H�=���ff.���AWAVAUATUSH��H�����H��H�5l1 �'�H�XH����H��I���/�H��I��H��ttH��H���	�Ic�H��I��H�T$�v�H�T$L��I��Hc��c�H��L��H��I����A�E��x��A�EH��L��L��[]A\A]A^A_�z�f.�H���[]A\A]A^A_��W������H���c���H��H���'����AWAVAUATI��USH����H�5o0 L��I���$�H�hH����H���/�I��H��H����L�-90 �.�L��L�����H�hH��t~H���$�I��H��H��tYH��L��H�����Hc�H���@�Hc�L��H���2�H��H���w�H��H����H�����t�H��L������H��L��[]A\A]A^A_��9���f���AWAVAUATUSH��H��XH�|$dH�%(H�D$H1�����H���D$<I���~���H�5G/ H�����H�hH���JI�ŋH��A�E�����D$,���I��H��A��H����H�D$<H�D$ �>H�|$H�5�. ���H�hI��H����H�����I��H��A��H����H�����D��L��H��H!�H	�H���l��L��Ic�H�T$H�D$���H�T$H�|$H�D$@Hc���H�|$@I���3�L��H�����H�T$ H�=�0 H������T$<��u$H������8���H�t$@L�����&���fDI�D$E1�L�|$@H�D$��H����I9���H�D$J��L��H�D$@�Z��H�|$@�P�H�8H�D$@�� uhH��H�p��Hc�H9���H�������H!�H	�H��H���,������I��I�<$�� �p���I�|$I9�}I�D$ �q���@H�pH�x�fD�D$<��u]�D$,��~Hc�H9�u.�D$,)�A�EH�L$HdH3%(H�D$u5H��X[]A\A]A^A_��]��H�=2 H�5�1��X������,���������AVAUATI��USH��H�t$���H�|$�)��H�|$��H�H�D$�� ��H��H�h��Hc�H9���L��H�5m, ���&��L�hI��M���������H��H��L�����H��tUHc�H�����H��H��L��I�������unA�$��x��A�$H��L��[]A\A]A^�fDH�hH�P�h�������A���t�H�|$���H��I��[]L��A\A]A^�H������O�H�=�0 A�$����H�5�1����f�AVI��AUI��ATUSH��H�|$H�t$����H�|$����H�H�D$�� uXH��L�`��Hc�H9�u|L��H�5;+ ���H�xH��tl��L������H��t.Hc�H���c��I��H��L��[]A\A]A^�L�`H�X�fDI��u�������t�H��L���&��H�����I���H���!���\�ff.���������f���AUHc�ATI��I��USH��H���a��H��E��~-A�E�L�l�H�3�L��H������H��H�����L9�u�H��H��[]A\A]�ff.���AVI��AUATUSH��H�t$H�$H���*�5���H�|$�{��H�|$�q��H��H�D$�d��H�<$�[��H�L$H�$H��� ��H�iH�QHc�H9���L�A��A�� ��I��L�hA��Ic�I9���L��H�5}) D���5��H�xH���������L��I��H��A�L���K����tG�����8tUH�=F. H�5B1�����H��H�i���R���L�hL�@�p���H�$H��H��[]A\A]A^�@1�����H������H��H��[]A\A]A^�H��� ��L������S���AUATI��UH��S��H��(dH�%(H�D$1����H�D$��t`����L�m��tu1�H�U����H����L��L�����H��H�L$dH3%(H����H��([]A\A]��������~xH�D$L�m��u�H��t
H�|$�"���L��L���R���H�����H��u���u�H�9* H�5�
H�81��(���H�|$H�T$����H�T$�H���H�|$t
H�|$��������T�����ff.�@��AUI��H�5P' ATA��H��USH��H��(dH�%(H�D$1�����H���2��H�D$����E���I�EH�D$A����H�D$H�D$H�|$A�����H�D$H�xH� tH�xD��B�(��I��H����H�}H��t���L�mH���E����H�L$dH3%(��H��([]A\A]ÐM�mA���\I��t<L��A������A��H�D$H�D$H�|$�s��H�D$E��x(�N���@H�D$H�D$H�|$A������F��H�D$H�xH� tH�x1Ҿ�T��I��H���,���H�|$H� ��H�1�1��)��I��H������A�������	���f��;��E���|I�UH�D$H�T$A��t&M�mA��^H�������H�|$������@H���J���H�|$�e���;����{��A������H���U����H�D$����H�|$t
H�|$�$����D������H�|$���������H��$ �����ff.���ATI��U��H��H��$ S���L���H��H������H��t�T����u H��[]A\���H��[]A\�H�=�& H��H��[H�+�]A\�����ATUH��S�P�H�5$ H������H�XH��tQI��������DH��H�������uH�����H��u�A�$H��[]A\�H�=�( H�5�	1��'���R�f���UH��SH��H���k���H�5�( H��t'I��H��L��1�1����H��H��[]���	H�=M	���H��H�U( �ff.���USH��H�������tjH��H�5 # ����H�xH��tw����H��t9H�-# �Hc�H���E��H���-��H��H�����H�xH��t>����H��u�H��H��[]�D�{��H���3��H��H��E1�[1�1�H��]�k���6�fD��ATUH��S�`����t|H�5u" H���-��H�XH����H���8��H��tJL�%L" @H��H���
��Hc�H�����H���j��L��H������H�XH��t9H�����H��u�H��[]A\���H���s��[H��E1�]1�1�H��A\����x����AWAVAUI��ATUSH���������H�5�! L���_��H�hH����H���j��I��H��H��tvL�5x! �H��L��H���2��Hc�L��I��H�����H��Ic�H�����H��H������H���p��L��L������H�hH��tYH���$��I��H��H��u�H��L��[]A\A]A^A_�����H���c��H��L��E1�[1�]1�A\H��A]A^A_����^�ff.���UH���SH��H������H�H���� tHH��H����H��~[�uAH��u$H�[ H�SH�3H���)���H���[]�DH����f�H�S�f.�H�����H��� �H��" H�5BH�81��u��D��H��H�9" H�=�H�0�R��H�=(H��$ H�-" H�0�5��H�=�$ H��$ H�(" H�0�H��H�=�$ H�5����U��H�=�$ �����H����H�5��6��H�=�$ �����H����H�5����H�=h$ 1�H�7�H�5�����H�=L$ 1�H�{�H�5�����H�=0$ �H�\�H�5z���H�=$ �����H�=���H�5^���H�=�# �H���H�5E�r��H�=�# �H��H�5*�S��H�=�# �H� ��H�5�4��H�=�# �H��H�51���H�=v# 1�H���H�5����H�=Z# �����H���H�5�����H�=;# 1�H���H�5����H�=# 1�H�n�H�5����H�=# 1�H��H�5����H�=�" 1�H�����H�5q�j��H�=�" 1�H����H�5Z�N��H�=�" 1�H�N���H�5I�2��H�=�" 1�H�����H�5\���H�=w" 1�H���H�5���H�=[" 1�H��H�5����H�=?" 1�H���H�5�����H�=#" �H�/�H�5����H�=" 1�H�S�H�5����H�=�! 1�H�7�H�5��k��H�=�! 1�H���H�5��O��H�=�! 1�H�_���H�5��3��H�=�! 1�H���H�5o���H�=x! �H�$�H�5W���H�=Y! �H�����H�5?����H�=:! �H��H�5(���H�=! �H���H�5���H�=�  �H���H�5��|��H�=�  �H���H�5��]��H�=�  �H�j�H�5��>��H�=�  �H�K�H�5����H�=�  1�H���H�5����H�=d  1�H��H�5H��������H��H���?�������?���������������?�����������������������?���closed SDBM fileeach_pairSDBMsdbm_delete failedsdbm_store failedkey not foundpair must be [key, value]SDBMErroropeninitializecloseclosed?[]fetch[]=storeindexselectvalues_atlengthsizeempty?eacheach_valueeach_keykeysvaluesshiftdeletedelete_ifreject!rejectclearinvertupdatereplacehas_key?include?member?has_value?to_ato_hashsdbmSDBM#index is deprecated; use SDBM#key;�9h���������
��0���D���d��������X��0X��|����������L���l��������(�����(���h������������4(��PH��l���������x�P��lh�����X���0(�dX����������L	��d	���	��
��X
���
���
X���l(������X�<��lH�������������
���p
�����
zRx�$p���`FJw�?:*3$"D���P\���sp<��HA�_
HTH�l���B�L�B �E(�A0�C8�DP
8C0A(B BBBD0����A�E�G �
AAHVAAH����B�B�B �B(�A0�A8�DPl
8D0A(B BBBIH\ ���B�B�B �B(�A0�A8�DP�
8A0A(B BBBF8�����B�B�D �D(�I@y
(A ABBDD�(���F�J�E �D(�C0�G�'
0A(A BBBFH,����F�B�B �B(�A0�A8�DP�
8D0A(B BBBHx4��5E�[
HL<�T���E�A�D �
AAIV
AAH]AA����2T]���3LH���F�D�G �A(�D0E
(A ABBG]
(A ABBE<T����H�H�H �C(�A0�z
(C BBBAL�����B�B�B �B(�E0�A8�J�t
8A0A(B BBBJL����F�B�B �B(�D0�D8�D`B
8C0A(B BBBJ4���H���$HX`���E�U|���AAM<�����F�I�B �A(�A0�v
(D BBBAH�4���F�B�B �B(�A0�A8�G@�
8D0A(B BBBA$���FHf
BP
A4D���~F�H�A �Y
FBHt
ABA| ��6E�k
A<�D���F�I�B �A(�A0�~
(D BBBA(����uE�H�D Y
DAA(��jE�H�D N
DAA(0L��&E�G �
FCD
CI0\P���F�D�A �D0i
 DAEF@����#F�A�A �G0�
 AABBD
 FABC(����]E�D�G f
DAE���2f`���F�B�B �B(�A0�A8�GP�
8G0A(B BBBOD
8F0A(B BBBAx���HIH�����F�B�B �B(�D0�A8�D@�
8D0A(B BBBAL�@���F�B�B �B(�A0�A8�G�n
8A0A(B BBBAT,��>F�B�B �D(�A0�D@�
0D(A BBBGm
0D(A EBBA@����B�E�E �A(�A0�D@r
0D(A BBBA�4�4�0�bF�E�G �A(�G0~(D ABB$	(���)E�D�K HGAX<	@�}F�E�B �A(�A0�D@%
0D(A BBBET
0D(A BBBA8�	d�AF�B�D �D(�FPt
(A ABBH8�	x��F�L�G �A(�GP�
(A ABBB
��@$
��}F�I�M �h
ABII
ABDNHB,h
�~F�A�D �U
ABA(�
d�eE�D�G k
DAH4�
���E�A�G h
DAFQ
GHE8�
 ��F�A�D ��
ABBN
GIE`8��F�B�B �E(�A0�A8�D@�
8D0A(B BBBHQ
8G0C(D EBBE(�`��E�I�G F
FAF����H�GNU��!�!@m �T�3�3,6y
0R0m 8m ���o`�
�
�p x��	���o����o�o ���o�m P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p��GA$3a1=RGA$3p1094� -RGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�!-RGA+GLIBCXX_ASSERTIONSsdbm.so-2.7.8-141.el8.x86_64.debug���h�7zXZ�ִF!t/���0]?�E�h=��ڊ�2N�	]����m��������N>�J�r,y�=���=���4�V��Fm��n���O�!F�jV�$s+����������U�|
Ɇk�%�ռ�W�O���T�8I��Ы�a��7���z�s��l�1��E�I
f������n�����l����U�3�j�o��%� ��:��#�[LjW$��v_�-i��EϽ~�Π��x�Ն�o�������o*��ړs�fV��`����OW����v!䯗.����g\7.;�7���) ��(�Gϡ�e\^���Ϡ��U���I��@��޲��צ�f�E�۞r\�Ͻ�Q��+T���]q9
0��E�yB.�"g��Ϩ�;O�K>�H'��W��R	��ok����S�k�9��Ӊ����sv���ގv�UPh�Y���K��������P6D$�@[�ƭ����Y�6��n�o�	U�Vߝ\N!e�T}Fo��X��m��Ć{[t����t@ �/C�$��e<����c����`j�Z�k7�y�{���	���_�58�2�lӇ��3V�Cٓ�g9$O�_���	Bz��V��!^a��a�JM�+S��Y����kC9?d�h|Vk��p�m���$V��+$D���~f������Iژ�h�.�_N*(>CS�Oօw�I�&���|k��W��̒�'��f�����	�e�/����efݡ���_�����7���%ǧ�*p^�y�	��}n��lYK�1���'3��*G��Xts���z�:�
C�:�3X����쮓V�(���\S� 
fi�@� Yf������lA�#V��Dc�]	O%z��Ӊ#�(�������i��:�O�h�\j
쁂Y$���N+g���QS����X�j�Y��d�D�����)��}���֐`����;��WH9\'Qo����ě�i��K����AW�[{ yYV�뺨�L��f��"��
nf��Kׇ���� 3��
�/��4o����\#��$�
hh�n�5wm��ű������	Ox��Y�-�1�����[?;��d0�2B)}kI~$sm��P��uP�u�4�U�� ��]�~�?D��G���<$��C�L�����{d^|�黹��8W����� 5�@_}�j�y�?��k�C�‹!�H�2""S@g �Gem_\����������o��J�����߆o
?3a�IE�a/�A��3��8�G)��
��8��Qj��`h��4���[����+��TF'\xH�ȓ�a��~<A�,7:j�|�ٻ�{k�L�
�+�U����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``d(���0�
�
�8���o  �E���o��@T�^B��xhc@@`n��Pw� � =1}0R0R
�@R@R� ��T�T���V�V���b�b �0m 0m�8m 8m�@m @mh ��m �m���o �oX�p p@�@r @r@��r`@rD
�t(�tpz+PKLH[��_6��lib64/ruby/digest/rmd160.sonuȯ��ELF>�@X@8	@ P
P
 P
  �
�
 �
 888$$�
�
�
  S�td�
�
�
  P�td0
0
0
,,Q�tdR�tdP
P
 P
 ��GNU�^���4B]kcK�%�����}
�D 
BE��b�&��|�qX�F"�|���qU  ,  P e�	f3X 'P __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeRIPEMD160_FinalInit_rmd160rb_requirerb_path2classrb_define_class_underrb_data_object_wraprb_iv_setRIPEMD160_InitRIPEMD160_Updatelibruby.so.2.7libssl.so.1.1libcrypto.so.1.1libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5OPENSSL_1_1_0/opt/alt/ruby27/lib64 ui	8�mDP
 `	X
  	`
 `
 �
 p	�
 �
 � � 
� �    ( 0 8 @ H 	��H��H�1 H��t��H����5B �%C ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH� H��t	�����H�=i H�5b H)�H��H��H��?H�H�tH�� H��t��fD�����=% u+UH�=� H��tH�= ����d����� ]������w������H��H��H������ff.���SH�=i���H�=d���H�=_H�����H��H�5ZH�����1�H�5� 1�1�H�����H��H�5:[H�������H��H���digestDigestDigest::BaseRMD160metadata;,����H���p@����`����zRx�$@����FJw�?:*3$"D����p\����p����fE�YGNU�`	 	`
 @`p	���R�
�	P
 X
 ���o`0�
h ���	���o����o�o����o�
 ��� 0GA$3a1�
GA$3p1094p	�	GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYp	�	GA+GLIBCXX_ASSERTIONSrmd160.so-2.7.8-141.el8.x86_64.debug;�V�7zXZ�ִF!t/��G&]?�E�h=��ڊ�2N����N ��Uf�G?*��5�z*��
N|�*�E9��?3u[�}C$��N��ZJ���as�;�T�����}T�;`>RBN����0�s����	~��f��Pe�ƈ/˵sM}�=�G͹Rr(�0\����D���2u�&�D�SV-�F���^R�{�Ii��7�6+-RII���ۓP�K
��&C�.J��&�]�IVЧ���-b�'밬�1�q�׳��<z���L�46�a�M��H2�z��睭�Sۄ�RM�C���8�?)Ӄ�v��D��&>����J!��,!!6=�Hc)��*�$���Cc_�.�VaF[�`��-�g�9��l��r���,�O�-x�
��㘺O�c�I�o�
�K�E�M��t�nv˃>�Z����1Uc�۳8���@k|b�b����.�9LE����:�����E��Q�+Sp*���a{㿱'��	��bY2��/�Z�>,�U�J�C"�8��B�3%n}��U�H	R�0B6�X�H��@�J�N~
8qI�P@�v�p�%�n�;�r^����9pݘϯ&�I��8�sF*��h)�-����m�aJ���)&�q6��7;�B�WX��?߻;ڧ���B�	�g� �F�E����isQ������n��lh�^Xh�$�ՎYj�!���-I��3O�z�j���9 ���c��q_T�?	���M$i�4>�����R0��ўۨ����kj����qACE��ެ;\��:�����`ҟ1�_��2�����o#��U��?��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���000h8���o��"E���o��@T�^B���h��c���n@@pw��F}�	�	
�2

+�0
0
,�`
`
���
�
 �P
 P
�X
 X
�`
 `
X ��
 �
�� � � P�P P�X`PD
�,�h(+PKLH[�����.�.lib64/ruby/digest/sha2.sonuȯ��ELF>�
@p'@8	@   �� � �� �� � 888$$  S�td  P�td���<<Q�tdR�td�� � 00GNU��^h�����x:V̲�����@ (BE���|�qXGVb��U�F"�����y � , c`  vh  j`  o��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeSHA512_FinalSHA256_FinalInit_sha2rb_intern2rb_requirerb_path2classrb_define_class_underrb_data_object_wraprb_ivar_setSHA512_InitSHA512_UpdateSHA384_InitSHA384_UpdateSHA256_InitSHA256_Updatelibruby.so.2.7libssl.so.1.1libcrypto.so.1.1libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5OPENSSL_1_1_0/opt/alt/ruby27/lib64Y ui	{>m�� @� � � 0 �p P� p  ( ` h � � � � � �      (  0  8  @  	H  
P  
X  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a�������%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�& H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=U u+UH�=� H��tH�=� ����d����- ]������w������H��H��H�����ff.���H��H��H���~���ff.���H��H��H���n���ff.���AU�H�=�ATUSH�����H�=�H�����H�=��V���H�=�H���G���H��H�5�H��I���"���1�1�H�5g 1�I���-���H��L��H���O���L��H��H�5����1�1�H�5� 1�I�����H��L��H������L��H��H�5t���1�H�5 1�1�H������H��H��H��[H��]A\A]������H��H���metadatadigestDigestDigest::BaseSHA256SHA384SHA512;<p���X����`�������������������zRx�$����FJw�?:*3$"D�����\����p�������4����F�N�A �A(�D0�(G DBBGNU�@� @���0��P @pp!0>OY�8	
�� � ���o`��
�  �`��	���o����o�ol���o� p	�	�	�	�	�	�	�	�	GA$3a18	�GA$3p1094P�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYPbGA+GLIBCXX_ASSERTIONSsha2.so-2.7.8-141.el8.x86_64.debug1Q(��7zXZ�ִF!t/���2]?�E�h=��ڊ�2N���. ��'����~X�o��/������1U%V#��?�2���I@�DhZ��&t:��)�:�.ĺ���b-6�O�:�W؄���Ia�8�)0�c�c�Lzr4g�hpQ�%<Ix�j�yi;�,��8{�k�
%��co�T���؉K�UL:9_�!5\2��$�Gd%Q�Ȓ����#cC%nj�N�n���ip�Y��r,~���@�s�uےYf�G;�`�Y�y�cM�sB�H5:�_b�)\�P�LD��ѝ�Q���*��u���c4�d(�nB�{�c�2��ⱀ��a��AW,����'=:,�R��{��me�{���NP"�Iی	���2[��W~H� Q���7V��C��=�VɞC8s,X
Q@��`��}c��~i����M�a�w�9�t�G�^�F�\��wZ QbY3��r�BbX�h�]�'����=�k+�۶e�k��Hd'CUSvW>)[�,�H���ٚl�Z�LѲn_QV����--��zj!�X�\mlռ�W�aّW�?���P/$�Z�9?}*�<	�7k��lM�}�Rդ�>���ɨ��Ddc�~_;/��J}��l��y��ժ��#�*:�!�r���3M
XY�\�ߪ�L	�;�	�Y'$2j@�S[5�m�w��Z&y@Q�`\��Q�|j'�z��M�P�>��?���i}"�m+�4�x
����/� �����$�Ab�5�<l��SM0��:�K��\�������&1�
�Fzh-��G��O��gl90��}NQr��>?��.�B��0�گ���wb>��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0���8���oll.E���o��@T���^B``�h8	8	c`	`	�n

�w�
�
}��
�2��9���<�0
0
�� �� ��� ��� �� �� ��� � �   `�`  ` �h `` D
�"(�"t@&+PKLH[-���lib64/ruby/digest/md5.sonuȯ��ELF>�@H@8	@�
�
 P
P
 P
  �
�
 �
 888$$�
�
�
  S�td�
�
�
  P�td


,,Q�tdR�tdP
P
 P
 ��GNU�q��eGV[�/����=b
�B A
BE���|_�U��qXF"�Us���h�  , P X _p	fP __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeMD5_FinalInit_md5rb_requirerb_path2classrb_define_class_underrb_data_object_wraprb_iv_setMD5_InitMD5_Updatelibruby.so.2.7libssl.so.1.1libcrypto.so.1.1libm.so.6libc.so.6_edata__bss_start_endOPENSSL_1_1_0GLIBC_2.2.5/opt/alt/ruby27/lib64� m#ui	1P
 @	X
 	`
 `
 �
 P	�
 	�
 � � 
� �    ( 0 8 @ H ��H��H�I H��t��H����5b �%c ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�& H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=E u+UH�=� H��tH�=> ����d���� ]������w������H��H��H������ff.���SH�=i���H�=d����H�=_H�����H��H�5ZH�����1�H�5� 1�1�H�����H��H�57[H�������H��H���digestDigestDigest::BaseMD5metadata;,����H���p@����`����zRx�$@����FJw�?:*3$"D����p\����p����fE�YGNU�@		`
 @\P	����=�
�	P
 X
 ���o`0�
S ����	���o����o�o����o�
 �����GA$3a1��	GA$3p1094P	�	GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYP	b	GA+GLIBCXX_ASSERTIONSmd5.so-2.7.8-141.el8.x86_64.debugo���7zXZ�ִF!t/��? ]?�E�h=��ڊ�2N��ߵN�>&�vL��$�;�	��=ֿ�0����^3Ӟ�B!����.���G��U�H��>��5���\�z�4�^2\�b��u�	$�`Q�:��2���:+	��+<g�E�V�~rc����KEJ	[�p�?�f{qR{�1P3϶�6�'�Hl���Xˀu�t"7�tv�P��PD�|�������P<��3��e>rϢU�{A�9r\X7���v��xO��tweb�@x[�ݍ
N��}-.s\0�n���VY�{$�U�xa�����R����qfE�eЕx��N��JD9�V�X�Ww�l����qgg���>��/NTKr>m�u�T�x(��U'�ʽ�)p�݂-�`��:��FW�P��;	�)Y��F����3�@w"X:"�h�2���=�+T(�S}2!7�Н�0\fa(�"q�֣�}�C#o�?NJ���g���#U!ܨ�l�X�ۀ\�C��������af���0A5E'L3|3���9|��|����Y.d�fm�e�uN)��qp�"�Or�mGJ_��!��^{���pH��C�m���7��2�Q�#73$���#	�f���:;�� #.J��C#�,�	{��K��+�
�����[�
�	L���P��K�7iN�̢����n�:��IW��xg�X�Cc��t�ݑ+��>9\��ߣw,�Ŏ#%�f3�R��ש�M�Uo=��Q&��:����9 �k.�	��Mf�}�Ҍ�y��^�a7Y�����~�櫉��	T8m<�z%%�����%�R6��aFlB��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���000S8���o��"E���o��@T���^B���h��c���n  pw��F}�	�	
�2�	�	(�

,�@
@
���
�
 �P
 P
�X
 X
�`
 `
X ��
 �
�� � � P�P P�X`PD
�(�`+PKLH[�@Lb��lib64/ruby/digest/sha1.sonuȯ��ELF>�@P@8	@ P
P
 P
  �
�
 �
 888$$�
�
�
  S�td�
�
�
  P�td 
 
 
,,Q�tdR�tdP
P
 P
 ��GNUK\����x����q({�CQ�B
�@ (
BE���|DV�qXF"U�u���j  , �P "X `�	fP __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeSHA1_FinalInit_sha1rb_requirerb_path2classrb_define_class_underrb_data_object_wraprb_iv_setSHA1_InitSHA1_Updatelibruby.so.2.7libssl.so.1.1libcrypto.so.1.1libm.so.6libc.so.6_edata__bss_start_endOPENSSL_1_1_0GLIBC_2.2.5/opt/alt/ruby27/lib64� m'ui	5P
 P	X
 	`
 `
 �
 `	�
 �
 � � 	� 
�    ( 0 8 @ H ��H��H�A H��t��H����5R �%S ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH� H��t	�����H�=y H�5r H)�H��H��H��?H�H�tH�� H��t��fD�����=5 u+UH�=� H��tH�=. ����d����
 ]������w������H��H��H������ff.���SH�=i���H�=d����H�=_H�����H��H�5ZH�����1�H�5� 1�1�H�����H��H�58[H�������H��H���digestDigestDigest::BaseSHA1metadata;,����H���p@����`����zRx�$@����FJw�?:*3$"D����p\����p����fE�YGNU�P		`
 @``	����A�
�	P
 X
 ���o`0�
W ����	���o����o�o����o�
 ���� GA$3a1��	GA$3p1094`	�	GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY`	r	GA+GLIBCXX_ASSERTIONSsha1.so-2.7.8-141.el8.x86_64.debug�X���7zXZ�ִF!t/��?!]?�E�h=��ڊ�2N�H=�N�>&�vL��$�;�	��=ֿ�0�e�yh���Um���Q�t���ɫ��އ,[�2-��8�M9PQNSA���EX+�������m�mWT�
�=����y�ǂe�~=Nֽܑ�s�&𻩦.��ŋ�����]�Bl��]�m�\���cm���%�5�3�f���Ir
f��V��˰����d*�F9��$���ЂQ݃67t��X7�I���J����ڀQ�zny;R
��Z�@%֊5��o�jyT�e���|vT�]<P��l�q���z�+y��U�5�D��-&�Vk���R
=0�I�jK釉�~�.	��^M���e��.��u%��^hzw���.?�陛������.�r�d����+�F'��0x�-���~A!�(D���ۊz
�Ɏ��R�asS��an�qf'zv��&�4$1��Һ�X�,-J>Libmmh��L�el���
k^-�U�ͨ���Q�%y(�e٭bQ��I��I��W<��Ȣ�~֗�z��?�z���u����k�A�o���p�v�Z�f�W��+��(_�T�	ѹӡ���C�>]T�}H_���"�1C�H����pk2�ԭ0�ļ�/|���-��M�v
��H��홹�s�$ 	����x/{���o5Ie���z��:�K�zq�â�M`��QŘjY�������x�\�9>�Rb`�[5��9Sj�y�ʖ�A��.��S�Z�0�~
)n�1������rx2n��i��i�E����ĕ0���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���000W8���o��"E���o��@T���^B���h��c���n00pw��F}�	�	
�2�	�	)� 
 
,�P
P
���
�
 �P
 P
�X
 X
�`
 `
X ��
 �
�� � � P�P P�X`PD
�(�d +PKLH[E�)��.�.!lib64/ruby/digest/bubblebabble.sonuȯ��ELF>�	@�'@8	@ �� � �� �� � ��888$$���  S�td���  P�td���DDQ�tdR�td�� � 00GNU߸&�(�=�2X���U�`�@ BE��\1A���|�qX� �U�� ��"�"�"pe, F"4p  �`
�G�  ;p  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_string_valuerb_str_newrb_eRuntimeErrorrb_raiserb_funcallvInit_bubblebabblerb_requirerb_path2classrb_internrb_define_module_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5/opt/alt/ruby27/lib64*ui	L� @
� 
� � � � � � �      (  0  8  @  H  	P  
X  `  
h  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A�������%- D���%% D���% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�. H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=e u+UH�=� H��tH�=� �Y����d����= ]������w����AWAVAUATUSH��(H�|$H�|$���H�D$L� A�� ��I��H�hA��L��H��H�t@1�����H�H�D$H�\$�� ��H�D$H�@H�D$H�D$�xM����H�D$M��E1�A�I��H��I���������H�pL�tI)��@I��L��I�<6H��B�D
��F�-�����A��V�H�ƒ�A��V�I�A��D��A)�H���8��8��Mc�I�I��H��H��H��L��H��H)�M9���F�l
D��@��@��H�H��I��H��H�RH�H)��;L����F�D�����A��F�H��I��H��H�H��I��H��H�RH�H)��;�F�M9��
���I��A�ExH�D$H��([]A\A]A^A_�f�L�`H�hH��������*L��H��H9��C���H�� H�5�H�81��v���fDH��H�D$�G���f�H��L�GH�wI��L�oH��H�RH�H)���H�\$�;I�B�x�3�N���A��A��a�e���ff.���H��H�5y 1�1�����H��H���<���ff.����H����H��H�5D H�׉����H��H������fD��H����@��ATH�=�US�|���H�=����H�=�I�����H�=�H�����L��H�����H��H�5����H�����H�U���H�5��y���H��1�H�
���H�5z�Q���H�=A����[]H�t A\���H��H���digest string too longdigestDigestDigest::InstanceDigest::Classbubblebabblebcdfghklmnprstvzxaeiouy;D����`H���������X���������������0zRx�$ ����FJw�?:*3$"D�����H\����B�B�B �B(�A0�A8�D`�
8A0A(B BBBJ�d���$HT�|���*HZ�����(������F�H�A ��AIGNU�@

�  *X�
� � ���o`x�
n  �0�	���o���o�o����o� 0@P`p������GA$3a1�GA$3p1094P
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYP
�GA+GLIBCXX_ASSERTIONSbubblebabble.so-2.7.8-141.el8.x86_64.debugG�A��7zXZ�ִF!t/���A]?�E�h=��ڊ�2N���> ����'�'�	��A�A"��:�5�p������)�`VZ��C���SûO���'��]A�Y�4Z�
��G���o�CY��LZT������X�uq����jr��A�"�R
��ЏVF��V&������[�1b�\�G}lL�M���h�g����{J	Rp�hb8K �$�R��%xSپ�p�ʔ����UJK�󦡳���3`��}#�i>�޵V�v<��v��ye���jO!#���� ��cg��P\Q)N$�y�B2,��뽑����6��#˕��ѱC���s�$wbQ�e�9�g;�-{�|�%�s�8O�C�vJ������R��thH5w�_RE:፧ٺ��_�)Et����v�{����✻�2���ܾk0@F�	���(O2;�KO�y]����!�i�r'V�Z�5�����
���lM��<�����=�^��6z�?ԹD}���o˅G����'�ΏS�m�Ŋ�v0�w��E�$��}ܶ���fD36eD��H �<���
�f4m�D3$��2&�+O�g-�>��Iܱ{a��'��a�mzX#;��*_�ժ5�\��s�~xf����'�Q;�K�O��n1��/�C��;/bM'��֘��M"}L�2��k�'�R��#�5�����{�����Z~�찉��7H������i.����$���u��i�e"����	k�鉕�2|^!Nx[�����������g3�;b�������5�-�,��
��
��OЎy�x���@O�����K�y�v�B�u�k����xw���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0xxn8���o��(E���o T00�^B��h��c  �n���w�	�	w}
�  w���D������ �� ��� ��� ��� ���� �(�   p�p  p �� `p D
�"0�"�h&+PKLH[p"�M(�(�lib64/ruby/nkf.sonuȯ��ELF>`�@��@8	@�\�\ P^P^$P^$Hm� мм$м$��888$$�\�\�\  S�td�\�\�\  P�td�I�I�IQ�tdR�tdP^P^$P^$�a�aGNUaW��g�=��$�[w�W'ƶ,%&���7HD+�(*���*���@2�&()+,-./13569:;<@BDGILNOµ{q��l�i�p� �ϵ�<����eF�W/�ûy�_:�2��Q�k}>�A�%$�� ���夂sc9d%x2�u��LO8Aq^�����CWQ.���"A�(JA{v!�9����;s�� ~�qXǤV��|�A׶�U�ˮ�����R�5cu�:BE��>'��5�ύ|S��oI� a�~�3�� ��M�>�A�5"����3���, rF"����$���$�ئ
��$���$�������n~�$�N�$`�(,�`g$�l@�$�`�n��q$�[��$�`e$�o�a$�_��$�`u$��d$��@���������$s`f$�� zb\�e$�
��$�|�U�$@y��$v`�$P�@�$I`�$���3�`�$P1 �~.�j$���f$�r��$����E`n$� �$x�$�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeencoding_name_to_id_tablex0212_shiftjiseuc_to_utf8_2bytesx0212_to_utf8_2bytes_x0213euc_to_utf8_1bytex0213_1_surrogate_tableeuc_to_utf8_2bytes_x0213euc_to_utf8_2bytes_msx0212_to_utf8_2byteseuc_to_utf8_2bytes_macx0213_2_surrogate_tableNkfEncodingUTF_16NkfEncodingUTF_8NkfEncodingUTF_32__stack_chk_failrb_str_resizeexitstderrfwritestrcmpmallocperrorinput_code_listshiftjis_x0212shiftjis_cp932cp932invutf8_to_euc_2bytes_x0213utf8_to_euc_3bytes_x0213utf8_to_euc_2bytes_macutf8_to_euc_2bytes_932utf8_to_euc_3bytes_932utf8_to_euc_3bytes_msutf8_to_euc_2bytes_msutf8_to_euc_3bytesutf8_to_euc_2bytesutf8_to_euc_3bytes_macx0213_combining_table__fprintf_chknl_langinfonkf_encoding_tablenormalization_table__assert_failreallocfreeNkfEncodingASCIINkfEncodingISO_2022_JPmime_priority_funcrb_nkf_enc_getrb_enc_find_indexrb_enc_from_indexrb_define_dummy_encodingrb_string_value_ptrrb_enc_from_encodingrb_out_of_intnkf_split_optionsrb_string_value_cstrrb_str_newrb_str_set_lenrb_usascii_encodingrb_enc_associaterb_eArgErrorrb_raiseInit_nkfrb_define_modulerb_singleton_classrb_define_aliasrb_define_constrb_utf8_encodingrb_str_new_staticNkfEncodingShift_JISNkfEncodingEUC_JPx0213_combining_charsrb_define_module_functionlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.3.4GLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64hti	�ii
�ui	�P^$ �X^$��`^$`^$�^$D��^$5��^$z��^$���^$���^$���^$���^$���^$Dž�^$҅�^$d��^$c��^$h��^$c�_$�_$�_$�_$� _$�(_$1�0_$��8_$��@_$��H_$c�P_$*�X_$��`_$/�h_$6�p_$�x_$��_$��_$��_$��_$
��_$��_$%��_$)��_$,��_$.��_$��_$9��_$>��_$B��_$���_$J��_$%�`$j�`$R�`$U�`$^� `$a�(`$s�0`$l�8`$c�@`$�H`$v�P`$��X`$c�``$��h`$c�p`$��x`$c��`$y��`$'��`$~��`$���`$��`$c��`$ۃ�`$c��`$��`$c��`$��`$c��`$���`$c��`$��`$c�a$�a$c�a$
�a$c� a$��(a$��0a$��8a$��@a$��Ha$c�Pa$ɃXa$c�`a$$�ha$c�pa$s�xa$c��a$}��a$c��a$���a$c��a$���a$c��a$���a$c��a$���a$c��a$2��a$c��a$��Xb$�`b$ �hb$`�pb$��xb$��b$ ��b$`��b$���b$��b$ ��b$`��b$���b$��b$ ��b$`��b$���b$��b$ ��b$`��b$��c$�c$ �c$`�c$�� c$�(c$ �0c$`�8c$��@c$�Hc$ �Pc$`�Xc$��`c$�hc$ �pc$`�xc$���c$��c$ ��c$`��c$���c$��c$ ��c$`��c$���c$��c$ ��c$`��c$���c$�d$ �d$`�d$��d$� d$ �(d$`�0d$��8d$�pd$ �xd$`��d$�$�d$�$�d$�$e$�$e$�$e$�$e$�$ e$�$(e$�~$Xe$�x$pe$�$xe$�$�e$�$�e$�$�e$�$�e$�$�e$�$�e$�$�e$�z$�e$�$�e$�$f$�$f$�$f$�$f$�$ f$�$(f$�$Xf$�z$pf$�$xf$�$�f$�$�f$�$�f$�$�f$�$�f$�$�f$�$�f$�z$�f$�$�f$�$g$�$g$�$g$�$g$�$ g$�$(g$�$Xg$�|$pi$��xi$ ��i$ ��i$ ��i$���i$���i$ ��i$���i$���i$ ��i$���i$ ��i$ ��i$���i$ ��l$���l$ �m$��m$��m$ �8m$ �Pm$ �Xm$��`m$��hm$ �pp$ �xp$���p$���p$���p$ ��p$ ��p$ ��p$���p$���p$ ��s$ ��s$ �t$��t$��t$ �8t$ �Pt$ �Xt$��`t$��ht$ �pw$��xw$ ��w$���w$���w$ ��w$ ��w$ ��w$���w$���w$ �z$ z$�z$� z$��(z$ ��z$���z$���z$ ��z$���z$��|$�|$  |$ �|$ ��|$���|$���|$ �~$�~$  ~$ �~$ ��~$ ��~$���~$ ��~$�=�~$�<�~$�;�~$�:$�9$�8$�7$�6 $�5($�40$�38$�2@$�1H$�0P$�/X$�.`$�-h$�,p$ ,�$ +�$ *�$ )�$ (�$ '�$ &�$ %�$ $�$ #�$ "�$ !�$  �$ �$ �$ �$ �$ �$ �$  �$ (�$ 0�$ 8�$ @�$ H�$ P�$ X�$ `�$ h�$ x�$ ��$ 
��$ ��$ ��$ 
��$ 	��$ ��$ ��$ ��$ Ȁ$ Ѐ$ �$ >�$ =�$ <��$ ;�$ :�$ 9�$ 8�$ 7 �$ 6(�$ 50�$ 48�$ 3@�$ 2H�$ 1P�$ 0X�$ /`�$ .h�$ -p�$ ,��$�+��$�*��$�)��$�(��$�'��$�&��$�%��$�$ȁ$�#Ё$�"؁$�!�$� �$��$���$��$��$��$��$� �$�(�$�0�$�8�$�@�$�H�$�P�$�X�$�`�$�h�$�x�$���$�
��$���$���$�
��$�	��$���$���$���$�Ȃ$�Ђ$��$�|�$�{�$�z��$�y�$�x�$�w�$�v�$�u �$�t(�$�s0�$�r8�$�q@�$�pH�$�oP�$�nX�$�m`�$�lh�$�kp�$�jx�$�i��$�h��$�g��$�f��$�e��$�d��$�c��$�b��$�a��$�`ȃ$�_Ѓ$�^؃$�]�$�\�$�[�$�Z��$�Y�$�X�$�W�$�V�$�U �$�T(�$�S0�$�R8�$�Q@�$�PH�$�OP�$�N`�$�Mh�$�Lp�$�Kx�$�J��$�I��$�H��$�G��$�F��$�E��$�D��$�C��$�B��$�AȄ$�@Є$�?؄$�>�$ }�$ |�$ {��$ z�$ y�$ x�$ w�$ v �$ u(�$ t0�$ s8�$ r@�$ qH�$ pP�$ oX�$ n`�$ mh�$ lp�$ kx�$ j��$ i��$ h��$ g��$ f��$ e��$ d��$ c��$ b��$ aȅ$ `Ѕ$ _؅$ ^�$ ]�$ \�$ [��$ Z�$ Y�$ X�$ W�$ V �$ U(�$ T0�$ S8�$ R@�$ QH�$ PP�$ O`�$ Nh�$ Mp�$ Lx�$ K��$ J��$ I��$ H��$ G��$ F��$ E��$ D��$ C��$ BȆ$ AІ$ @؆$ ?�$���$���$����$���$���$���$���$�� �$��(�$��0�$��8�$��@�$��H�$��P�$��X�$��`�$��h�$��p�$��x�$����$����$����$����$����$����$����$����$����$��ȇ$��Ї$��؇$���$���$���$����$���$���$���$���$�� �$��(�$��0�$��8�$��@�$��H�$��P�$��X�$��`�$��h�$��p�$��x�$����$����$����$����$����$����$����$����$��Ȉ$�Ј$�~؈$�}�$ ��$ ��$ ���$ ��$ ��$ ��$ ��$ � �$ �(�$ �0�$ �8�$ �@�$ �H�$ �P�$ �X�$ �`�$ �h�$ �p�$ �x�$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ �ȉ$ �Љ$ �؉$ ��$ ��$ ��$ ���$ ��$ ��$ ��$ ��$ � �$ �(�$ �0�$ �8�$ �@�$ �H�$ �P�$ �X�$ �`�$ �h�$ �p�$ �x�$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ �Ȋ$ �Њ$ ؊$ ~�$���$���$����$���$���$���$���$�� �$��(�$��0�$��8�$��@�$��H�$��P�$��X�$��`�$��h�$��p�$��x�$����$����$����$����$����$����$����$����$����$��ȋ$��Ћ$��؋$���$���$���$����$���$���$���$���$�� �$��(�$��0�$��8�$��@�$��H�$��P�$��X�$��`�$��h�$��p�$��x�$����$����$����$����$����$����$����$����$����$��Ȍ$��Ќ$��،$���$ ��$ ��$ ���$ ��$ ��$ ��$ ��$ � �$ �(�$ �0�$ �8�$ �@�$ �H�$ �P�$ �X�$ �`�$ �h�$ �p�$ �x�$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ �ȍ$ �Ѝ$ �؍$ ��$ ��$ ��$ ���$ ��$ ��$ ��$ ��$ � �$ �(�$ �0�$ �8�$ �@�$ �H�$ �P�$ �X�$ �`�$ �h�$ �p�$ �x�$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ ���$ �Ȏ$ �Ў$ �؎$ ��$�;�$�:�$�9��$�8�$�7�$�6�$�5�$�4 �$�3(�$�20�$�18�$�0@�$�/H�$�.P�$�-X�$�,`�$�+h�$�*p�$�)x�$�(��$�'��$�&��$�%��$�$��$�#��$�"��$�!��$� ��$�ȏ$�Џ$�؏$��$��$��$���$��$��$��$��$� �$�(�$�0�$�8�$�@�$�H�$�P�$�
X�$�`�$�h�$�
p�$�	x�$���$���$���$���$���$���$���$���$���$��Ȑ$��А$��ؐ$���$ <�$ ;�$ :��$ 9�$ 8�$ 7�$ 6�$ 5 �$ 4(�$ 30�$ 28�$ 1@�$ 0H�$ /P�$ .X�$ -`�$ ,h�$ +p�$ *x�$ )��$ (��$ '��$ &��$ %��$ $��$ #��$ "��$ !��$  ȑ$ Б$ ؑ$ �$ �$ �$ ��$ �$ �$ �$ �$  �$ (�$ 0�$ 8�$ @�$ H�$ P�$ X�$ 
`�$ h�$ p�$ 
x�$ 	��$ ��$ ��$ ��$ ��$ ��$ ��$ ��$ ��$ Ȓ$ �В$ �ؒ$ ��$ X�$�W�$ W�$�V�$ V�$�U�$ U �$�T(�$ T8�$�S@�$ SH�$�RX�$ R`�$�Qh�$ Qp�$�Px�$ P��$�O��$ O��$�N��$ N��$�M��$ M��$�L��$ Lȓ$�Kؓ$ K�$�J�$ J�$�I�$ I�$�H �$ H0�$�G@�$ GX�$�F`�$ Fx�$�E��$ E��$�D��$�C��$�B��$�A��$�@��$�?Ȕ$�>Д$�=ؔ$�<��$ D��$ C��$ B��$ A��$ @Ȗ$ ?Ж$ >ؖ$ =�$ w�$�v�$ u��$ t�$�s �$ s(�$ r0�$�p8�$ p@�$�oH�$�nP�$�mX�$�k`�$ kh�$�jp�$ jx�$�i��$ i��$�h��$ h��$�g��$ g��$�f��$ f��$�eȗ$ eЗ$�dؗ$ d�$�c�$ c��$�b�$ b�$�a(�$ a8�$�`@�$ `H�$�_P�$ _X�$�^`�$ ^x�$�]��$ ]��$�\��$ \��$�[��$ [��$�Z��$ ZȘ$�YИ$ Yؘ$�X�$�w�$�v�$�u��$�t �$�r0�$ q@�$ oH�$ nP�$ mX�$ l�$�w�$�v�$�u��$�t �$ s0�$�q@�$�oH�$�nP�$�mX�$�l�$ x�$�v�$ v��$�t �$ s0�$�q@�$�oH�$�nP�$�mX�$�l�$ ��$���$ ��$���$ ��$ ��$ � �$ �(�$ �0�$��8�$ �@�$ �P�$��X�$ �`�$��h�$ �x�$ ���$���$ ��$ ~��$ }��$ |��$ {��$�zȟ$ z�$�y�$ y�$�x�$���$ ��$���$���$�� �$��(�$��0�$ �@�$��h�$����$���$ ��$�~��$�}��$�|��$�{�$���$���$ ��$���$�� �$ �(�$��0�$��@�$��h�$ ���$���$ ��$�~��$�}��$�|��$�{�$ ��$���$ ��$���$�� �$��(�$��0�$��@�$��h�$ ���$���$ ��$�~��$�}��$�|��$�{�$���$���$ ��$���$�� �$��(�$��0�$��@�$��h�$ ���$���$ ��$�~��$�}��$�|��$�{��$��Ȫ$ ��$��$���$@���$���$���$���$��$� �$@�(�$��0�$��8�$@�@�$��H�$��P�$�X�$�`�$@�h�$��p�$��x�$���$@���$����$����$���$@���$����$����$���$@�ȫ$��Ы$��ث$��$@��$���$����$��$@��$���$���$� �$@�(�$��0�$��8�$�@�$@�H�$��P�$��X�$�`�$@�h�$��p�$��x�$���$@���$����$����$���$@���$����$����$���$@�Ȭ$��Ь$��ج$��$@��$���$����$��$@��$���$���$� �$@�(�$��0�$��8�$�@�$@�H�$@�P�$��X�$��`�$�h�$@�p�$��x�$����$���$@���$����$����$���$@���$����$����$�ȭ$@��$���$���$� �$@�(�$��0�$��X�$�`�$@�h�$��p�$��x�$���$@���$����$����$���$@���$����$����$���$@�Ȯ$��Ю$��خ$��$@��$���$����$��$@��$���$���$� �$@�(�$��0�$��8�$�@�$@�H�$��P�$��X�$�`�$@�h�$��p�$��x�$���$@���$����$����$���$@���$����$����$���$@�ȯ$��Я$��د$��$@��$���$����$��$@��$���$���$� �$@�(�$��0�$��8�$�@�$@�p�$��x�$���$I�$F�$�D��$C�$�A�$@�$�>�$= �$�;(�$:0�$�88�$@6@�$4H�$�2P�$1X�$@0`�$�/h�$�.p�$.x�$@-��$�,��$�+��$+��$@*��$�)��$�(��$(��$@'��$�&ȱ$�%б$%ر$@$�$�#�$�"�$"��$@!�$� �$��$�$@ �$�(�$�0�$8�$@@�$�H�$�P�$@X�$�`�$�h�$p�$@x�$���$���$��$@��$���$���$��$@��$���$�
Ȳ$
в$@ز$��$�
�$
�$@	��$��$��$�$@�$� �$�(�$0�$@8�$�@�$�H�$P�$@X�$��`�$��h�$�p�$@�x�$����$@���$����$����$���$����$���$����$@���$��ȳ$���$@H�$�F�$@E��$�C�$@B�$�@�$@?�$�= �$@<(�$�:0�$@98�$7@�$�4H�$@3P�$�1X�$@0`�$�/h�$�.p�$.x�$@-��$�,��$�+��$+��$@*��$�)��$�(��$(��$@'��$�&ȴ$�%д$%ش$@$�$�#�$�"�$"��$@!�$� �$��$�$@ �$�(�$�0�$8�$@@�$�H�$�P�$X�$�`�$�h�$p�$@x�$���$���$��$@��$���$���$��$@��$���$�
ȵ$
е$@ص$��$�
�$
�$@	��$��$��$�$@�$� �$�(�$0�$@8�$�@�$�H�$P�$@X�$��`�$��h�$�p�$@�x�$����$���$@���$����$@���$��$@H�$�F�$@E��$�C�$@B�$�@�$@?�$�= �$@<(�$�:0�$@98�$�7@�$�5H�$@3P�$�1X�$@0`�$�/h�$�.p�$.x�$@-��$�,��$�+��$+��$@*��$�)��$�(��$(��$@'��$�&ȷ$�%з$%ط$@$�$�#�$�"�$"��$@!�$� �$��$�$@ �$�(�$�0�$8�$@@�$�H�$�P�$X�$�`�$�h�$p�$@x�$���$���$��$@��$���$���$��$@��$���$�
ȸ$
и$@ظ$��$�
�$
�$@	��$��$��$�$@�$� �$�(�$0�$@8�$�@�$�H�$P�$@X�$��`�$��h�$�p�$@�x�$����$���$@���$����$@���$��$I�$�G�$@E��$�C�$@B�$�@�$@?�$�= �$@<(�$�:0�$@98�$�7@�$�5H�$@3P�$�1X�$@0`�$�/h�$�.p�$.x�$@-��$�,��$�+��$+��$@*��$�)��$�(��$(��$@'��$�&Ⱥ$�%к$%غ$@$�$�#�$�"�$"��$@!�$� �$��$�$@ �$�(�$�0�$8�$@@�$�H�$�P�$X�$�`�$�h�$p�$@x�$���$���$��$@��$���$���$��$@��$���$�
Ȼ$
л$@ػ$��$�
�$
�$@	��$��$��$�$@�$� �$�(�$0�$@8�$�@�$�H�$P�$@X�$��`�$��h�$�p�$@�x�$����$���$@���$����$@���$��`�$��h�$���$���$���$P���$PG��$P��$PG�$���$P��$PG�$P��$PG��$���$ ��$ ��$ ��$ � �$ �(�$ �0�$ �8�$ �@�$��`�$ʄ��$`T��$����$����$�2��$���$����$�U��$��$��0�$��@�$��h�$����$P���$PG��$P���$PG��$P���$PG��$P���$PG�$��$|� �$��0�$��@�$�P�$Ć`�$��p�$����$Ԇ��$���$���$����$���$���$���$��$(��$,� �$8�0�$Ά@�$E�P�$K�`�$S�p�$ʄ��$Y���$����$c���$����$m���$u���$����$���$���$�� �$��0�$��@�$��P�$��`�$ʇp�$Ӈ��$����$���$݇��$���$���$����$*���$��$
��$� �$��@�$��H�$��P�$�`�$��h�$��p�$0��$����$���$��$ʄ��$����$�$��$����$���$�'��$���$����$��$|��$���$�$(�$�@�$#�X�$�p�$����$����$���$���$����$��$���$.�0�$K�H�$ʄ`�$:�x�$����$D���$M���$Y���$h���$���$�� �$��8�$��P�$��h�$ʇ��$����$���$݇��$���$���$���$*�(�$�@�$
�X�$�p�$����$3Ⱦ$)о$ؾ$N�$-�$O�$/��$+�$1�$1�$10�$1H�$1`�$1�$*�$P�$& �$=(�$60�$I8�$
@�$;H�$DP�$7`�$7x�$7��$7��$7��$7��$7��$7X�$B`�$'h�$Hp�$4(�$4@�$4X�$4p�$4x�$J��$8��$2��$0��$M��$K��$,��$:��$9��$5ȿ$?п$ ؿ$.0�$.H�$.x�$.�$!�$"�$F��$F��$F��$F��$F��$F��$$�$< �$<8�$<��$<��$<P�$@h�$@��$@��$@��$@��$@�$@�$ �$(�$0�$8�$@�$H�$P�$	X�$
`�$h�$>p�$x�$A��$��$��$��$��$��$��$��$��$�$�$�$�$�$�$��$�$�$�$"�$# �$%��H��H�9�#H��t��H����5�#�%�#��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!���������%�#D���%�#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#D���%}�#D���%u�#D���%m�#D���%e�#D���%]�#D���%U�#D���%M�#D���%E�#D���%=�#D���%5�#D���%-�#D���%%�#D���%�#D���%�#D���%
�#D���%�#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#D���%��#DH�%fDH�=!�#H��#H9�tH�F�#H��t	�����H�=�#H�5�#H)�H��H��H��?H�H�tH��#H��t��fD�����=��#u+UH�=��#H��tH�=^�#�)����d������#]������w�����?X��L�
�#A�A����S�M�A���te��tM��A���C�B���tJI����t&���a��D�^���AB��aD�Z�AB�9�t�I��A�A��y������[Ð��fD��t�I��A�A���t�����f��-�O���H���F������������S���&1��$�#����#1���#��?B�=�غ��C1���ֺ������������)ƃ�0���#�ھ�Z|
1������ֺ������������)ƃ�0���#�غY��1���ֺ�����
�������)ƃ�0�|�#�غ�Mb1�����ֺ���̉������)ƃ�0�P�#�غ��Q1���ֺ������������)ƃ�0�$�#����̉�1�����Љ������)ƃ�0���#�غ����1�������)Ís0���#�;1�[�%��#f����������'��������(�����c�K�����	~��m���f���AU�&ATU��1�S���H���e�#�#1��X�#�x1��K�#��L�%:�#��ك��t;�ЍY���9�|�L�-��D����1����A�tA�ԉم�y�L�%��#H��L��;1�[]A\A]�����AT�\U��1�S����#����������
1��u�����L�%X�������#��1�����A�4�o�#��1�����A�4�Z�#�؃�1�����A�4�B�#1�A�4�5�#1��\�(�#1��u��#1��D��#��1�����A�4���#����A�4��1����#A�4,[1�]A\�%��#��u1�L�%�����#��1�����A�4���#���1�������A�4���#A�4�D��AU�\ATU��1�S���H���U�#�x1��H�#�{1��;�#��L�%*�#��ك��t;�ЍY���9�|�L�-װ�D����1����A�tA�ԉم�y�L�%��#H��L��}1�[]A\A]��������#�����%��#f.�A��fA��fA���tP���~�D�G�A�qA�����_EM�D�����~t1���_�����1�����D�
�$��D�@�E��tD�H�A��~QD�H�A��vwA��]w�L�
�#Mc�O��M��tA��A��G�LH�E��E��uqD�@��A��
�F����DMc�L��C�<
t�A��vYD�@�A��v��f�A��v:��������~�2����"���A��E��1�D�
D���D�@�����A����@A�����~�������@��%����ǀ��u���A������u ����?�@�π��:�A��f����t8=��aA����?A��@�πA���D��������?��?�@�΀�2�A�8�A������?A����?@�πA����D���9A������A��fDH��tk�ǀxf9�}bHc�H��H��tV�ƀ���?wHHc��rf��t<�
�$��f����t
f���w&f��-t f��x+��f���D���A�1�A�ø�f.����̏����fD������f��f=�tH��1���!��]���
�$���9�C$���cH�$�#Hc�H��D1�H��um�D�
$E��u��"�u
����Ct4��1���!��]w'D�~$Hc�E���"H���#H���D1��D�=�$��H�
��#��1��V߃�]w�Hc��Q�*$��tȍ�(�����w��W!Hc���	�H���#H9���L�
�#�".1�I�x�������t����H��9�u�Hc�H�IA�TP���T�����
��$���f�H�y�#Hc�H������D���� ��������}�!������Hc�t H���#H�����H���#H�����H���#H���x���L���#�!!1�I�x�@����������H��9�u��0���f���H�����#�H������H���z�#� H����D���#A��tC~!A��tKA��u-������	���	��fDA��u����	��	��D���f�������	�	�Ð����	��	��9=$txS����Y�	~/��)�3��3����h����$[���t;��u��X�#�(�M�#�I�B�#��$[�f�����%�#�.��#�A��#�q$[������#�$���#�(���#�Q���#�6$[�@����#�$���#�=��#���#�$[�D����#�$���#�(�w�#�D�l�#��$[�@��U�#�$�J�#�(�?�#�P�4�#��$[�@D�_E��xOA���t>�wA���tRI��D���w�����t3D�؃�p�� ����p����O~A�JÃO��O�A�J@�f.���G��p�� t+��`tV��pt	���G�f���H�ֶ��G����H�>���G��A��H���B��A	B�@��H�ζ��G��A��H�5�B��A	B�ff.����AUATU��S��H������$�H$A�ă�
A�����3$�������
��E�����������%�

��$��=�$
H���#��$t1��
�Ѓ=�$
tH���#�
1���E��t7E��t2��$
H��[]A\A]�D��u���
u�E��u�f.���u��
t�H���މ�[]A\A]�%3�#��
��D��tE��u`��t���uH�:$
�A���f���u��
�+����$��������@��

u�������
u����fD��$����������'���f���ATU��S�������=��#��t�=��#�.H�w�#������$�у���#u������!����������������&���H����<���&��H�	�#H��1����3@��u�[]A\�@����� 1ۉ��[]A\��fD�F����<�� �3���#����H���#�8$1Ƀ�t���%����t����������1ہ����g����w������[�]A\��f��F�#L�C�#�D��PH�H�
öHc��&�#�4�<A�Ё�������D-�H�
�HcЀ<��H�
@��<���
0$��tH�
���<����H�
Q�[]H��<A\�4�%��#D���h�������������������[�]A\�%w�#���!�w�����t�M߃�]����n����Uރ�5�b���H�
��Hc�H�>��H�
���>�����|���H�����"���d����-��#���#���=��#�������#L���#�D��P��^�[H���_�v���H�5�����u!�5�$���Y���H�5<�����F���Hc�[��]�n�#�4A\A��D�����u���� 1���[� ]1�A\�%;�#�M�H�5~�Hc������������������,��������������������������}������s������i������_���@�U�H�
��Hc�D�$�E�������D������A�������D�����@H�c��T���@1�����H�
I�Hc�H�[�I�#]�4�<A\A��ff.�����t��w/��@~��M~E��Z~��`~��m~6��z���
�%��#��� ~��O&��/�� ~�O)��/��@��
�%��#��Fу�L���D�Gу�L��D���2$H�o�#�t
��%t.��!tq�t�������0���t�%��D�F߃�R�|��tu�H�$H�@H;��#A��H;j�#��A�u	H;��#u���01���N̓�vH�t��Fˉ���!��C�����$u+�� ~&1���t@�ǃ�$��$��f�������!t��O���ff.����F�=�w�� vm�G׃�ve�G���	v]H��A�9"�/"A�.L���A�"�fD�D�@H�������9�D9�AN�AN�I9�u�%��#D�.�"�@���5��#H�
��#���V����#��@�<�f����ff.�AWAVI��AUA��H��ATI��UH��SH���҉�D9���H��A��D�x�A�ōP�A��	v@��v;�@����H��A��A�č@�A�L$���	v��v
A�T$���wjA�]���9��T$H��A�ԋT$A�č@Ѓ�	A�L$�vD���߃�A��w4A��	wFD������	w[	�H����[]A\A]A^A_�H��D��A����DH��D��A��H��D��A����@A�u����q���1ۃ�w�A�]����A�D$���wA��7D	��D��w�A��WD	��f���H�
%�#H�&�#H���:�������%�#fD��H�
��#H���#H���%�q�������%��#fD��AWAVAUATUH��SH��XL�-��#L�%��#dH�%(H�D$H1�A��A�ljD$��&t.H�T$HdH3%(D���zH��X[]A\A]A^A_��H��A�ՉD$��#tH���A����H��A�ՉD$��߃�X��H�D$A�E1�H�D$�.D��vC�G�����A���G�A	�I��I��
��H��D��A�Չ�H�D$�O�B�<��GЃ�	w�A����	wA	��ōG���v���w��G���A�E1���2���H��A��HcӍHЉD���	wpC��D�<AA��tVA��A��u�HcӋD��HЃ�	wIC��D�<A�݃�;uA���u(��Hc��@�|�H��H��A�ԅ�u�D�|$���A���z�����;t�|���������%��#fD���%��#fDH���r	$������uDH�!	$H�:��@����0�<���#�=���#�=���#�"	$� 	$��~0�=M
$t/�?�\�#�=�Q�#��$��$H�����Qt���$BH���@H��$H����@����<�<���#�=���#��$��$�n���f�US��H���~$H���#���2����B����Q����
�a��
�X�GЃ�	������߃�A�����=H�-���҉؃������|�W�#�|�L�#��$H��[]�fD��uSH��$��H�-����?���@������<	�H��|���|���#��$��$BH��[]���҃}$H��[]�fDH�1$��HcۉxH�A��<�҃L$�F$H��[]�H��$�����@������0	�H�
��H��<��H��$�$��$�XH��[]�D�����$���ff.�f������u�fDHcY$�5O$S��9�}H�]$�H�
<$�[��5"$H�=$�5$Hc���H��$�%$H� u'H��Hc�$H�$�H�[�
�$��H�R��f���H��$H�H�JH9
~H�BH�qH�r�<����P��\�ff.����H��$H�HH�QH��~���@H;}H�AH�rH�q�<����P���ff.���PXH�=�^�(�H��H���#H�������ff.����PX1�H�����ff.�@H�5�$H��t$H���{����tH��H��$H���@H�=�$��H���H��HD����H��tH���H�=������+�ff.�UHc�SH�����H�<�H�����H�+H�CH��H�CH��[]�@H�a�#H�8t)H��8�@�H�8�@��@Ԁ�@�u���$H�9$��$H���n$�`$�R$���#�:$�,$�$�$�$���#������$� $�$�$H��$�_�#?�Y�#��$�=�#��$�}$�o$�a$�S$�E$�/$�!$���#�	$��$�H��H9�u�H�����H��Y���#H�}�#H�
����H�g�#H�X�#H�I�#H�:�#H�+�#H��#H�e���H���#H���#H���#H���#���#�a$�S$�E$�7$�)$�$�
$���#B���#B���#
H�
��#H�s�#H�\�#H�
E�#H�6�#H��#��$��$��$��$H�x$�z$�l$�n$�@�#�2�#H��$H��$H��$H��$H��t2H�H�BH�PH�BH�P H�B�@�@�S�(�����H��H��$�D����H�H��$�0����	H�CH��$����H�C H��$�@�@[�H���#H�H��t,H;z(u�!f�H9z(tH��8H�H��u��DH���@D�A�#�s$E��u.���������G���	�a��:�11��f�D�����A������uō�������<H�D�F�L�@Mc�L��H��L)�L�L��#E�@D��E�������D�?�a��N�D��)ǁ��� ����~�G���	����w�����	�Q������π��C������������H�D�F�L�@Mc�L��H��L)�L�L���#E�@E����D��A�����������DMc�D�N�O�@Mc�M��I��M)�M�L�
��#G�AE��tPD��A�������������D���
������������f�L���#E�@D��E��u\D�?�aD��)ǁ�����1�������)����������������~L��������x�/�뿐D�������������A���M��2����f�1����L�������Hc�I�<x�<�� �����<����T���fD��?�����������5�������f�UL��SH��H��dH�%(H�D$1���_�A�8�;E1ۉ�f��f=�t%H�L$dH3%(D���'H��[]���2�#����E1�H�=��#A��뼐A���U���#D���#����A���6A���A����D�
�#E���H��#�
fD�ց���iD�C�#D�D�#E����A���$A���wA�������#����H���#�A���f�H�#���A���>����F���A���<�����^�����w�A�H��$@�����@H�!�#�;@A���VA����A���"����~����)���A����%A����=A�������A������������@�uH�L$H�����A�Å�ua�t$�������<$H��H��������fD���������*�����H�����?�<����f.�A����D����T���u��H�c�A���?�<�[���H�A�#I��I�عpD���6��A��E���5�������DA����������t����m���H���#Hc�I��I�ع@H������D������A����������uA����������������H���#�����u��H�����?�<�}���f�H�I�#����@H��#�^���@H���#���@�����H�
�#�2������H�W�A���?�<������
������H�����?�<�\����M���DA���tA��������A������������A���tfA��������������A�����A����3���A�����!����[���A�����1����D����Ѓ�=��4�������}����#������������
n�#A�����������`���A����������A���������A��������������r��f�ATA��UA���H��SH��H�� dH�%(H�D$1���%���u/�D�"H�\$dH3%(�QH�� []A\�f��������#����D����@�1�L���#��
������I�P�f.���H�������B�9�u��9�u�Hc�H�IA�@�����U�1��M���H�L$H�T$D��H�t$L�D$�����T$�t$I�؋|$H���]���������A���E1�D�#���DL���#�@�1�I�P�@��H����t��B�9�u��9�u�Hc�H�IA�@�����Ώ�U�1��������ff.��H����dH�%(H�D$1���5�D$�<$1���(�#1�H�|$dH3<%(��H���D��H������tс���w��uC�-�#��t9H�5R�#�K0H�VH�Ƙ�H9�t�H��9�u�H����H��H�t$�������H����g����$�|$�Q���f������F������D$1��$�$�������������=\�#tN��(�����w3��$�����������	�	��
��$��1����f���	�1����@��(�����wE��$�����wJ����	�	�1���
��$���_����H��1����#1�H���D��	�1��4���@H����������	��=��#u����	������ff.�f���H���|$�t$��ud��%�=���=A�#H���#v4��п(���#�=�#���#H���#�|$��#��H���D��������6������f��f=��j�T�#�� ������rw��D$�� ��^����u��=��#�@��5��3�k���|$��#�|$��#�p���f�H�T$H�t$�1����|$���]����|$��%�=�������%����D$-�=Ww���#���H���#H����������D�=��#H���#v0��п(�v�#�=��#�i�#H�b�#���#��������fD�=��#H�:�#v0��п(�&�#�=k�#��#H��#�p�#�|$@�π��H��Ð�=y�#�@��0��)�(���|$�����#�|$���#�*���@��^�����f���f.������|$���#������]AL��������zk�^�|$)эA!�D$������H��(�|$�t$dH�%(H�D$1���t`���tX������G�t$��vl��~g���#�������#��t�������	�������t$�|$�0@�=��#��t
�5$�#��t<�t$�D$����t$���#1�H�L$dH3%(�yH��(��D$"�"�.�D$.�@���?�
��#�D$��tj�����ljT$�ց���|$H�L$H�T$���������t$����|$H�L$H�T$��|$�t$����D�������=r�#��u>�������	w3��_�����]w(k�^�D$��
����t$���������lj։T$����|$���������G��t$�|$��������'�����t$�|$�����_�����]�X���k�^�D$1���_����t$�u���������s�������f���H����_����|$�t$��>v-��t%�G�t$��v	��\@��#1�H������#��t.��#��u$�D$"�"�.�D$.���t$���t$��
�#��uN�������	wC�N����w8��t�1���~�D$��iҼ1�)�������t$�S��������G���H�L$H�T$�����0����t$�|$������~���~~�������?��	����f.����~8���K������?������	ʁ��%<	�	‰׉��fD������?�ǁ���	�	lj�ÿ�����ff.������w$1ҁ�	�H�=�#H�O�fD����t �H��9�u�Hc�H�R�DG��1��ff.�f���AWAVAUATUSH��(�|$�t$dH�%(H�D$1����#��t+���#������#��������#��������#D�T$A�����D�\$E��uHD��L�v�#%�=�^D��A��H�D$dH3%(�~H��([]A\A]A^A_�DD��D������Å�tǍ����H�-�#�����0���u�������ttL�|$L�t$L�l$L�d$M��L��L��L��������|$�Ջ|$��t���#�|$��t���#�|$���G������#�<���@D����#�*���f�D��L�|$L�t$D������L�l$L�d$���y�����M��L��L��L���V���|$�Ջ|$��t�:�#�|$H�-/�#��t	��H�-"�#�|$���.�����H�-
�#� ���D��H�L$H�T$H�t$���L�D$�����|$A�ҋ|$�����������q�����AUATU��S��H�����#��t0�=�#H���#�x�#�n���п��|�#����;��u?��%�=�1��=��#H�M�#��Љ�H��[]A\A]�%3�#������A�ą������������A���0�����A��$�������D��A������=2�#��E��H�Ȼ#� ���H��D��[]A\A]�%��#%���=���0��
�������A����H�w�#A���=Ⱥ#�D��Љ�Y�#��H�P�#@���=��#�
���H����[]A\A]�%&�#fD�����#�������������
������\������������
%��������H���#A��@��A���=�#�oD��Љ���#��H���#����=޹#���Љ�p�#�~���H��[]A\A]�D����������=��#��@��H�5�#����������H��1�[]A\A]�%�#f.�%���=�����
A������A���H�޹#��@����=*�#tl��Љ���#D��H���#E���=�#���D��Љ��S���fD�=�#����H�|�#�������Љ�j�#�x���D��Љ�T�#�f.����D��;�#�������D��)�#���ff.����AUATA��U��SH�����#��t@�=P�#H��#���#��1���1��Ѹ#���Ƹ#�����#���ti���#��uoD��D��D�
��#L���#%����=AE܉������A��@��A����1�A�Љ�V�#D��M�#��H��[]A\A]�%;�#D������Å�������D�
u�#L��#�����0���u��������q���D���������_�������D��A��@��A����1�A�Љ���#D����#D����#D�
��#L���#�����D��D�
ڶ#L�w�#�ˀ�����A��D��Z�#��R�#H��1�[]A\A]�%@�#����п��&�#1���#1���#�V���f�H��[]A\A]�DD��A��D���#���#1��ٶ#D�
.�#L�˶#�G���ff.���u�1�A�8�D��@���1�A��/v�AVA��AUI��ATM��U��S���6���~!A�E1�D�����l���
A�$1�[]A\A]A^����H��A��1ɉ|$�t$���~��A��D�L$A���wnE��uD�\$D��D��@�#1�H��ÐD��1������t�A��@���H�߂H����<�FH�}��Hc�H�>��f.�A�AD�\$����D��%�=�����#��tQD��D��D���s���H�5�#�K0H�NH�Ƙ�f.�H9�t�H��9�u���H���fDH�L$L�D$D��D��D���X������
���D�\$D�L$����D��D��D������D$E1�
A�ÉD$����fDA��������DE���>D�\$1�A�S��������D�ҁ����������ʁ�����t�������DE����D�\$1�A�S���?v��L���f�E����D�\$1�A��p�����/v��)����E����D�\$1�A�S�������D�ҁ�������S����E��tjD�\$1�D�ځ����������DD�\$1�A�S���?��������E��t"D�\$1�A��`�����v����1��{������s���������i���ff.�@H�����|$H�L$��L�D$�t$�����u�t$�|$�D$�c�#�D$H���f���~[����������-����������0���u<���������t,�1��������D������f.�L�Y�#�K01�I�P�@��H����t��B�9�u��9�u�Hc�H��H�IA�@���������#1�H��ø��f�SA��A���D�Ɖ�1�D���8�A����x!��D��D��1��"�[D�Ɖ�����[�ff.��J�#H����t��
t=

t'��
t�
��f��
��f�SH���
��H�ؿ
[��f.�AVAUATUS���5��	L�%�rH�5�M#L�p��
fDA��Hc�9����PH��L�$�M��u�Hc�H��L�%|r���=��#-���#�.�#��H��#��~�ʺ#< �b<	�ZH��E1����� ���#��#�L�#���fH�-��#Ic��T�� w)H�&H��sA���|f��j�#��#I��A�<$@��u���#���#D9�~2Ic�H�'�#��H�D)�H�H�fD�}H���H9�u�[]A\A]A^�DE1�H�-�#A9�}�Ic��|@�� w�I�&I���p���A�^Hc�����#�[�#A��9�#�E����|@�� �6���H��I��r��'���fDH�i~���l������A���H�=^�#���� �N�#���#���#�������H�-�#�����BL�%�p����f���AWAVAUA��ATUSH���=��#���#�(D�=�#H�-ʸ#E������A�����E��~
C�7Hc�D�tA��	��Q�w��~cA����E��~>�Ƹ#1���|Lc�@��
�N@��
�D���H��A9��H��D��[]A\A]A^A_�`��A����A��
�$A��
�A�� u@�=Q�#~&1ې�|H����#�7�#���#��9���ַ# ��#�=f�#�a���D�%�#�,���D�b�#��Q�Y��G�(A����H���H��[]A\A]A^A_����=�#��v	���>���A��
��A��
��	�A�� ��A��	����������D�
t�#���#E���3E1�1��%fD���#��H��9A�#���#���|��#�D<
t<
u�1���D�b�#��vD�%�#���$���A��
��A��
��Lc%޶#A�� �(E���9���A�� ��A��=���A�D$F�l%���#��J�DH�K�#���#H�kL��;H���^��H9�u��@���#���O���A��
��A��
��A�� �
�?���#�=��#���#���#���|�#��F��A�� tA��	t� ���#�U�#A���0�I�#���������#��t	���K���D�%��#��#D����D�L���E�#��
����
��E�L$�E���7E�T$�1�L��l��XH�PI9�t!H��H�t�
L�lj���€���uփ�A9���Lc�I��N�|5A�<$I���ժ#M9�u�H�=ɪ#�����#�\�#9�~#�H�H���#)�H�L
B�42H��@�r�H9�u�)؍PH����#D�l��J~X�=�#H��[]A\A]A^A_���D��G~+��
t��
t�=�>�#H�=7�#�b������#A�������H��[]A\A]A^A_��D�=�#1�E��~!f.��|H����#9�#��w�#��#A�� ��������fD������ٳ#����A�_�Hc��D< ��<	��E������I�&A��E1��	fDI��B�|5@�� wI��s
�=��#F���Q��I�FM9�u����E9�������B��A��H���#L����#A)�I�M��}H����#L9�u�=g�#�b����w���DA�����#E�������H���#A�G�H�kH�f��;H�����H9�u��\���f.�H�&L������E���@H�<�#A�L$�H�BH��fDH��H9��|���!<]w��L���
R�#1ۅ�~�|H����#���#90�#��$�#D�-ѱ#���@H�-��#��H�EH�E���!�����}H������H9�u������=+�#�&����<�#D�=ű#����@���H�=t�#����
�#���D�t$���HcD$D9��*���H�2�#H�D)�H�H�D�}H���C��H9�u����f�E��t�6�����#���#D�-۰#��#���@A�� tjA��	td����5��#1ۅ�~�|H�����#9߰#��?�#�������+���B���D���#E���L����z���@�=��#1ۅ��f�����|H���b��9x�#��C����?�*�#�=��#���#D�����#��#���#�����=��#F~S�?��#�=�ץ#H�=Х#�q�#�k�#��� ���#�=9�#�G�#�*�A���:���A�Eރ�=wH��( H������D��j�#��#�@�����uD���#A�E���"����4���������#��H�='�#�R����#�H���A�D$F�l%�?�#���H�=��#�"��ۮ#���#< v� �Ҥ#�s�#��#�5�����H��	H��r���A�D$F�l%�ۮ#��J�x�������Ǯ#1ۅ�~#D�|H���q�#��#9��#����#�5������#H����t��
t=

t'��
t�
1�����
1����SH���
1���H�ؾ
1�[��fD����
to��
t"�����w�#��~	���j�#�%�#�Z�#��
��������>�#���Z��
t9���D�
*�#E��t��t@��#���������D���#E������#������ ����	���5��#��!�A���
��#��#���#9��?���
o�#9���1����������#��f���D�m�#E���(��������G�5Q�#ËJ�#�=?�#��������
uV��!A����!��E������ t���# ��#��;��#���#� 1��%��#f.��5��#H�=��#���#����@���t[����������#
���#U��S��H��H�=E�#���H�����[]�%0�#��
n�#��u������D�]�#E��u���
�������
u��@�����6�#
�D����&�#1��������T����� ������5�#���@��tm����1���?wH�����H������߃�]�[������S���E���J����Ѓ�߃�A��vu�BЃ�	w	���,������#����F߃�>w�H�
�`H��������D��!t�U�#����Fރ�5w�H�� H�������Ӄ� t���
t��f���U��S��H����#����H�
��#���t ��������H�����[]���5n�#�VUUU������#)����I~�1���H�=C�#���� 1��1�#H�
*�#������#H��[]��@�G���|H�
��#H�����[]��f��5�#�VUUU����@�#)����B�C���1��������H�=��#�%���� 1����#��#��#�����f��
��#�VUUU�������#)ʍ���<�^����=��#�������B���#��1�������9�#�{���ff.�������#S����t���#��[�D�"�#H��#����#%�@�<��[�ff.�f������#��t
�%t�#@�ڬ#�P%��̬#H���#���H��H��H��_�HD�H�k�#H��_H�81��r���f���@~��Z�G��f���_�G��?D�Ð��/~�G����+1�������>Ð���#��uvH�=�#tl����USH��H�7�#H9��#t>H��t2H�����H��H��t"H�8����c�#��tH�}�.���H���#H�@�#H��[]�f�9�t4�=j�#��H��t����tH�=��#�p���H�5��#���i����@����@��H��(�|$�t$dH�%(H�D$1���uD��%�=���~�#��#H�D$dH3%(��H��(�����u��#������������f��f=���D$��!��]���G߃�]�����#@�π���#�|$@�π�f�H�T$H�t$����|$���m����|$��%�=�'�����%����D$-�=Ww�
��#���*H��#H������������f�#�|$@�π��#�����F�#���ӛ#�|$@�π�ś#����1�1�������f���#��#��t,��#���v������{�#�|$����f��t$H�L$H�T$�����u�t$����|$H�L$H�T$�:���D$��u���#�|$��#������f��f����l������c������]AL��������k�^)���H�
֚#��!���~+����D$�ЉT$f��f=�u6�����|$������u�D$�T$�ʀ��ы|$@�π���#�k�����������f���H���|$�t$��u,��%�=����#�0�#H������t�t$���s���J��f��f=����F�^�n�G�^�bH�L$H�T$�6�#	�a�����#�|$��tS�������wH�L$H��Q�H�@H��Hc�H��H)�H�H�Ԗ#�B�Ѕ�t�����T$�׉D$f.��b�#�|$H���#@������������>�#�|$���DH�T$H�t$�Y���|$������|$��%�=�������%����D$-�=Ww�j�#����H���#H��������������#@�΀�����#�u���D���#	@�΀�����#H���D1�1��_����B���f.�H�L$H�T$���#	����������|$�=�#�|$�3�#������]AL��������=c�#�����1�iҼ�|$)у�>���D@�D$��#�|$�ۗ#���ff.�ATU�-�#SH���#H��t*�;"w%�H�\_��Hc�H�>����#fDD�%5�#H�z�#H�����8"wD�H�
�_Hc�H�>�����#���#�=��#u���#f.�H�@H;��#H�=�@��H;�#H�=�#H�H��@�H�
3�#�eH;�#�X���u�%�#��Z�#��=b�#tH�=
���H�=��#�d�#��t%H�5��#H�=^�H�=��#H�5`�#���w��#tH���#H���#H�J���H���#D�,�#E��tH���#H�a�#H�B���H�s�#D�
��#E��tH�`�#H�!�#H�����H�K�#D���#E��tH�8�#H�	�#H�����H�#�#�=M�#��t&H��#�D�#H��#H���H��#-}�#tH��#H�Օ#H����H�ϕ#�59�#H��H�ӽ��H�l�#H�]�#��t*H�
���H�3�#H����H�-�#H�
>�#H�/�#�
��#��t8H�&�#H���#H�����H��#H��#H�Ӗ#H�����H��#���#��t8H��#H���#H���H�ϔ#H���#H���#H�����H���#E��t8H���#H���#H�H���#H���#H�t�#H�}���H�n�#�Г#��t
�=5�#���$�#��H���H�C�����H�p�'���H���#H�8t0f.�H��8�@�H�8�@��@Ԁ�@�u�[1�]A\Ã��u�@�#1��l�#���#H�@H�5����H;<�#H�5��#@��H;��#H�H��@�H�
�#uH;��#����f.���#����H�i�#H�R�#H�H�T�#H�E�#H�.�#H�߻��H�0�#H�����H�5���1���������v�#���#���H�5Y�S�#H�
�#H�5-�#������k���f.�H�ɒ#H���#H��H���#H���#H�v�#H�ϳ��H���#�]�#�9���������#�^�#�M������u
���#�=��#u
���#�A�#�-��#�������#D�%�#���#����x�#D�%��#�����������#D�%��#��#�^���������H��t*H�������#wH�H�@H���#H��H���#�.���H���#H���=ِ#��#�Q����8�������������#�	����=��#��#t"�7�#�����=��#���#u��m�#�҃��u�`�#1����#��#������#����=+�#u
��#���#����B�#D�%c�#�)����=�#D�%P�#��#��#�����ȏ#����#D�%�#��#�����ٿ#D�%��#�0�#������u�x�#1����#D�%ſ#�����#�������#A��j������u�0�#1��`�#D�%}�#���#�9������u���#1��/�#D�%L�#���#�����?�#D�%,�#�����#1��c���f.�SH���G�����G��������H���#H9C(t[�f.�1�1�[��fD���G������H��WSH��Hc�H�>����F���>v�F���|w-HcC�P�S�t��s����{H�KH�S跼����tLH��[�J���f.��F���>v�F���|w�HcC�P�S�t��s����{H�KH�S�g����K�C�C[���~���%�=t荆_�����>������������ �����
������������������HcG�G�P�W�t�[����z������#���l���H���GH�G[�f.��F���>v�F���|����HcC�P�S�t��s����{H�KH�S�c���H���+����C�C[���HcWH��H�����B��G�r���C�C[Í�������N���HcC�C�P�S�t�[�HcG�G�P�W�t�[�AWE1�AVA�AUA��ATUSH��L�%�#L���f.�E1�H��H�;t,H�C H�k8H��t�D��H��ЋUЅ��u�M��u�I����@E��tM��t
�,�#��tTA��~5H��[]A\A]A^A_��A�D$I��8A�D$�A�D$ԀI�<$u�H��[]A\A]A^A_�I�w(H���[]A\A]A^A_���@AWAVAUATUSH��(dH�%(H�D$1��H�W<-�8H�����u�E1�L�%|TL�5�LH�r(#f���uM����A�E����L��E1�� H�o<X�Q��Ic�L�>��@H��<-t�E��u�H���{���#���#�G�z�#�PЀ�	�21��H�����TP��E�HЀ�	v�G�#��H�����<-�f���(������#H�����G<8��
<1��<3u�2H�G���H�V�#H��H�H�V�#�@�&�#H���f��GH��<1�p���<2HE��e���DH��#H��H�H��#�D���@�ƹ#H���.���fD�G�ƒ��Bt<H�����H����#�����G<B�<Q�<N�?
<S��	<0��
�ڈ#H������f�H�a�#H���$�#H��H�a�#���@H�9�#H��H��0H�;�#�~���fD�G�ƒ��@���H���a�#�W�����G�Ҹ#�HЀ�	���0H��	Љ��#�&���fDH���#H��H8H���#����@��#
H�����fD��#

H������fD�^�#H�����fD�O�6�#��QЀ�w���0H�������M	ЍQЀ�v��H���#�v���fD�r�#H���^���fD�G<8��<1��<3u
�2��H�ׄ#H��H�H�߷#����f.�H���#H��H�H���#��@�G<B��<Q���F�#H������f.��G<u��<m��<w�,<0�������#H�����f�H�!�#H��H��0H�+�#�f���fD�ƶ#H���N���fDH��#H��H8H��#�,���@�W���#�JЀ�	����H�����#�����G����D$L��##M��E1ɐ�D$A��w<=������@8��H�O��@L�‰T$A��1��t<=t
L�BH��@8�t�@8�A��@�� ��A���A��D�L$A��0tM�:I���r���f������H�\$dH3%(�	H��([]A\A]A^A_�D1���@�2�#<H��<-�����EH�}��#�PЀ�	���1�H�����TP���HЀ�	v�Ą#���H�TH���a����G�t
H���E�u�Mc�I��J�|�?���L��L���������H���W���H��#�[���H�H�@H���#H��H��#�>���fD1������H����#� �����H������#�
�����#
H������,�#BH���V�#����I������H����#�A�#����GH�������H�=�EL���������H���z���H��#�~���H�H�@H��#H��H��#�a����6�!����GH�W�a�#<L�)<B�aH�׸pH΀#H�߳#�����6H�G��R������L����B�(�5�#H�ǀ�0�K���e���0�HE�Hg�#H�p�#����H�=�DL����������
H�=�DL����������
H�=�DL���������H�=�DL��������U�
H�=�DL��������i�H�=pDL��������9�H�=[DL��������?�	H�=:DL��������G�	H�=%DL��������a�H�=DL��������1�H�=�CL��������Q�H�=�CL��������!H�5�CL��H�T$D�$�Ê��D�$H�T$����H�5�CL��H�T$D�$虊��D�$H�T$����H�5�CL��H�T$D�$�o���D�$H�T$����H�5xCL��H�T$D�$�E���D�$H�T$����H�5VCL��H�T$D�$����D�$H�T$����H�54CL��H�T$D�$��D�$H�T$����H�5CL��H�T$D�$�lj��D�$H�T$���H�5�BL��H�$袉��H�$����H�5�BL��H�$胉��H�$����H�5�BL��H�$�d������|���H�$H�����!<]������D$H�5�#��:���L$@�<HcD$H����x�@��]v���fD�~�#

H���e����GH�W�o#<L��<B��H�׸��	����<#H���#����)�#
H�������B�#QH���l�#���0��H��|#H���p�#H(H��#���H�c|#H��H�H�j�#����~#H������#H����H�����E������������H��H�׸�����ή#H���L~#�7�0H�P�9~#���#����t�H�׸0�=���H��{#H��HH���#������0<vv��#H������W�5�}#H�x�N�#����H�����}#�h����'�#H����������������������#H���T����#H���B��L�#1�����í#H�x����u��N���H�����}#���������pHE�� ����<�#H�����H���p�����#H������#H������#H����|#�����1�#�|����#H���m|#��#�V����#H���D��B|#����H���2�荅�����#H�������#H���	�H�52����:0�
|#H�5��#���J��߀�X�S�D$�1��5A��	vBD�N�A���(��@�΃�7�|$H��	�D��H��	���t:�D�V�D�N�A��w���@��A��	�\��0�H�����H��H���#�S�H����H��H��#�=�H�ҫ#H���*��ȫ#H�������#H����H����H��H���#���H�Y���H��H��#���H�S���H��H�i�#���@��t��z#�=�z#H�T$H�t$蔱���D$H���D$��z#���u����D$�1��t
�D�N�A��w��L$H���D��D��H��	u���D$1�1��4
D�N�A��	�n���k�
D�ǍD0ЍqH���t$H��u��S�����A@���Y�����W�T���ff.�f���H��#H�H�BH��u)Hc��#;��#}*�P���#H���#��DH�JH��H�B��ø�����f.���USH��H��#H�PH�BH����H���z#��H�\�#��$����(���x���V�#��ht����H���y#H��#�����B��B�H�JL�H�QI9��
H�qH�zL��H�y��I9���H���H�Q��B�D(H��[]�fD�xt���#��t8��t0�XH����[]�@H�JH��H�B��H����[]��H���x#H�P�#�����B��@uOH�JH�1H�QH9�~OH�yL�BL��L�A��L9�~3H���H�QB�D$�k����H���}x#�S�����v���fD��AWAVI��AUATUSH��(H�Tz#H�
Uz#H�D$H���#H�$L�x �у���v=��k������WI�WI;��I�H�rA��1�I�w��E�,,H�
�t#A�Ic�D�l$E1�H�@H��H�D$H�\f�B�+���M9o<L��H�$�Ѓ����I�wI97�CI�L�NM�O��B�+M9��I�wB9���I��I��	u�I�GH�\$HEt#L�C���t!I�WI9��H�rH��I�w��I9�u�A9�����I�GH��~&I�WH��L��I�G�<�H�D$��I�GH���H����I�WH��I�G��H��([]A\A]A^A_�f�E���N���A9�|����D~�l$��A9��v������D�d$A��A9��_����r���H�
3C�aH�5�8H�=�8�����1���H�
:C�wH�5x8H�=�8��~��f�H���H��HD����H��tH���H�={8���������ff.�����#;�#AVAUL�-�#ATUS�c��#H�����	�=r�#�D�A��H�hu#��Q�W��B��D�%ߣ#�DA����&H�7u#H���A�ă� ~��3D������=�t#�H��u#�ƒ� ~����#BD������߉������?�ƍ�������	ȃ�=��D��#D��E�P��D��#A�D
A��=taD���j����?E�HA������D�
Ղ#��������	�C�D��=t)A����D���#�(������?A����	�C�T
���#�P%��z�#A�\��[]A\A]A^�f�������=�s#�H���s#�Ã� ~�A��?u*��=u%�f.�������=@s#��H���s#A�ƃ� ~����@��#[H��]A\A]A^��f��=�r#���#�IH�Zs#H�Ks#H�5�}#H�ms#H�^s#H��t1��J��H�Ss#H�h}#�fD�������[]A\A]A^�ЉÃ��t�_tr�C߃�]�*��=ty��?�����=Ѣ#�����D�%\�#H���r#���t���=u
�=��#���2�#QH����r#�v���f.��=y�#� E��X���@D�%��#H��`r#�Ã���=�����~�q����'���H��6r#�Ã� ~����#Q�!����H�r#H��q#H�r#H��q#�����D�=�#�����m�#����=š#��u����D�%M�#�����A��E1��4�#�S���I��H���q#�Ã������
�~|��
��� tsE��t\��=uIc�A�D�< tJ<	tF��D��H��bq#��t.Ic�A�T$�Hc�I�D�L�H)�I���;H��H��4q#I9�u�A�]L���zy�������	u�Ic�A�\A�\$E9��|A���B���H���p#���������� ������E�#Q�SЃ�	��S������S���XЃ�	v�H��XɃ�v
�H�1ۃ�w�X���T���H��p#H��
���Ѓ����� �H��hp#H�Yp#���t�� �u��	�lH����H��
�-p#E�����
�����D�%��#E1�A��蘙��I��H���o#�Ã���I��
��~��
���� tvE���������=uIc�A�D�< �����<	������D��H���o#���c���Ic�A�T$�Hc�I�D�L�H)�I���;H��H��io#L9�u��0�����	u�Ic�A�\A�\$E9��QA���?���H�=o#H��
���Ѓ���e��
�\H��o#���t�� ����	��H����n#H��
��n#E�����
� ����K�1҃������S�������Ѓ��t
�� t;��	t6H����n#E�������\���E�L��A��A�vHc��Y���I�����H�� �[n#���H���Kn#E�������
�����Ѓ��t
�� t��	tH���n#E���j������H�� �n#���D�����E�L��A��A�vHc�����I������H�� ������E���N������H����m#E�������^���E������h���f.����G��te~3��t~��ui��_�����]��HcG�G�P�W�t��@���uC��+�$�#��t!H���GH�G�fD��[�f.�������_�����]w-HcGSH���P�W�t�辄���C�C[�fD�s����%�=t���_�����]�9�������-������u�HcG�G�P�W�D���D���O�A���5H��6SH��Hc�H�>����F���?��HcG�P�W�t�9�}8�L�CH�K�����S�s�P���H���؃���C�C[����~��%�=t㍆@��������� �������HcG�G�P�W�t�[������i�#��t�H���GH�G[�f.��F���?w HcG���S����P�W�t�[��H��[�������HcG�G�P�W�t�[�f�H���H9C����S�s���,���������������w�HcG�G�P�W�t�[�ff.�AWAVAUATUSH��dH�%(H��$�1�H���#�D$H��t!H�@H;Eh#��H;�g#����!ЉD$���#���#�n�����1��j#=�����=��=��G1���i#=��V1����i#1���H������i#fDH�	j#H9���H�I��H9��)�D$ �D$1�1���i#�Ń����H���#H����������%�=���=��#��h��H�P�#H��t	�8I�����)D�=��#�ܘ#E������s��������h������_��Y��Ϗ���1�i#1���h#�Ń���6����1�1��������h#H�=��#u�L$���[1�H��$�dH3%(��H�Ę[]A\A]A^A_Å���1��Ph#����1��@h#=���=���1���H��}���h#1�1��h#�mf.�1������H����>1���g#�Ã���*���1���g#�Ń������1���g#A�ă������1���g#A�Ń�����D��D�����p}����y�H�������G���H�pg#1��҉Ã�������1��Yg#�Ń�������1�1҉���A���H�����
H�0g#H���u�1���A�ă��t�1��g#A�Ń��t��=sf#����(�����v��D�����	�D	��ѳ�����b���1�D���f#1�D���f#���芠��H��f#�>���1���H�c|����f#1�1���f#����1���f#����1��vf#����H�=v�#��H�|��H9�f#��1�1��:f#1�1��0f#�H��c#H�;H��t H��fD�K9HHL�H��8H�8u�H�;�L������#���c���H�;�f���V������)������3t|��1�
f#�/���D���������F���H���#H����f������w~��9�~�[�#ٓ#����?�����=ȓ#��h�c����5J�#��t&�C���w�U߃�]wk�^1ۍ�����@�߉�1�\e#������}���fD�E߃�]�dD�t$E�������#�����E�?�6�������f.��E����e���������D��1�1��d#����1҉���d#�����	������������1��Qd#A�ă��tF1��Ad#A�Ń���E1�1�A��D��������������1�D��d#1�D���c#��1҉�1�覰���c���������H�Ѣ��H9*d#�4�=͓#���7�����������(���������f���_�����>�g�������������	����	��
t	��
��$�#�|� �#���K������#����H�/c#1���
���Ѓ����� ��
��
�1���b#H��b#���t	�� ��1��ǽ
�ҿ
1���b#�=8�#�����L�5	q#�q#��p#�-�p#�Q�A���V
D������Hc�p#������BE�<��R�#��p#�����=����ug1��Hb#A�ǃ��u���#��uGD���n��H��_#H�:t$H��fDH�x t
�J9HHL�H��8H�8u�H�r(������-p#1�D�|$A���XDH�5����H9��@9���Hc�A��1ҽE�$�D��D��у�������������+��o#A9��|Ic�A�_E�,�D��������H�
�a#A���s���1�D��1�A����D1��0a#A�ă���$��A�߽�U��1�D��D��H�
Va#�у���^���D9=8o#�>Ic�A��A�������D9=o#�FIc�A��A�,��������D��D���	��`#�DD��1�A���`#����DA��_�����>�����1�D��A���V����������n#A9��AIc�A����A��A9��LIcǃ�A��A���D$D�D$E1�1҉�D��D���ѭ�����	����u���D�|$A����a����<���@D;=%n#�kMc�A�OD��D��C���L$����`#�L$A�σ��u���m#9��sHc�D�y��A���L$$A9���Mc�A�w��C���t$�L$(�L$9���Hc�D�D$(�L$$��D�xA��D��D��A���D$,������+�������D��D���ԫ�����K
D�|$��1��_#�Ã�����;m#A9������1���^#�D$��������1�D��D���|������#1����^#�)���@1���^#�Ã�����������D9=�l#�����1���^#�Ń�����������1��h^#�Ã��������������D��D���^#���������}l#D��9�������L$1��"^#�L$�ƉD$$�Vl#A�σ���w�����D��D��詪���i���@��h����Y��	Ё�3����'�����)������=�f�]#�����
�#���J1���]#�������?�h�=�\#�nD�%�k#L�5�g#A�D��%�A�=A�D$�yk#A�D$%�A�?1��.]#�\k#�J���
Mk#A���-��	��_��	A��A��u�H��\#H�	�H9�t]H��\#H��\#H�
�}���=(\#H��\#H��\#H�
�\#u*H�r\#H���H�t\#H�����H�N\#H�W\#D�-�#E����	D�%�j#�������D$���f.�1��P�f�1��8\#A�����1��$\#������D������
���H�\#��1�D��D��裨������1��|$��[#1����[#�����D�\$E���"��#����������`�����?����������j�#���P������f�1��h[#A�ă���������D�����[#������1��7[#A�Ń��tb1��'[#A�ƃ���
1��[#A�ǃ��t(A��E��D��D����趨�����^�1�D����Z#1�D����Z#1�D���Z#��D���1��o����,�f.�1���Z#A�ă���������1���Z#A�Ń������A�����D��߉�D	�1��Z#����D�T$E���:D�
��#E�������D$1ۉD$��1�� Z#=���1���Z#1���H��o����Y#�2�f�1���Y#=��h1����Y#1���H��o����Y#��f.�1���H�eo����Y#���f.�D�D$E����1��zY#����7��&����$����(�;��.����N�y1���1�0Y#�1��sY#��fD���,A������fD�\$���1���X#D�|$�ƉD$(�#g#����f�����D��D���y������ 1��|$$��X#�$����1���X#�D$,�����D�L$,D�D$(��D��L$$D���8������vD�|$�]���fD1�D��D��D�|$����N���f�1���+X#��#��������1���1�D��
X#�
�1��D$�s��c�#���q���H�ܖ��H95X#���1���W#�������$��1���W#�Ń�����@������E������1���W#1��$��W#�=�#�|�1��mW#���1��]W#����H�=]�#��
H�m��H9�W#��1�1��!W#1�1��W#��1��W#=��Q1����V#1�����V#���1��|$A����V#�����8�#1�1�1�豸���='�#��1���V#��������A������1����V#H�=��#�2H�l��H9�V#��1����VV#��1���GV#H�=W�#�H��k��H9�V#��1����V#�H���1��V#�Ń���X���I�*���B�L��H�C���#�����1��V#1��(�	V#�='�#��H�=��#�	H�a���H9�U#���1����U#���1��zU#=���1���H�$k���VU#1����IU#�3�1�� �7U#���1��uU#�x��A��$(������6���D�����	�D	�����D��D��蝡��H��T#��������1��|$,��1��|$(��T#1��|$$��T#�?���1���T#A�ƃ����1���T#A�ǃ����1��T#�D$���t~1��nT#�D$���tmD��D�����6j��A����x)�L$�T$D��D���j����x��D���������9�1��|$�T#1��|$�T#1�D����S#1�D����S#���D��D����i������͋�����1���S#�Ń�������@����(�8�v�#�����#h1��D$��H�$ H���q����ƒ�߃�A���`����PЃ�	�T����Ń�=�.H�ES#��?�L���1��Љŋda#�P%�A�,H�S#�Ka#A����������`���߃�B��T�#B1��Љŋa#�P%�A�,H��R#��`#A������������?��
H������#H9��������#������1��� �+�����eR#��1��`R#=���1���H�
h���<R#1����/R#��1��� R#�1��cR#���=1��QR#1����Q#�D$�d�H��Q#��D�|$1��|$,A�������D�|$����1����Q#�����D��D���Z�������H��Q#���1��|$(��1��|$$�uQ#D�|$���1���aQ#�"�1��\Q#��������A���1�1��Q#1��.�tQ#�=�#�(��������1�D��Q#�:�����1��
��P#�=^#���D�|$1��|$,��1��|$(A����P#���1���P#�|$ ���1����P#1����P#�=#�\$ ����O#�
�H�=��#�?H�,f��H9�P#�1����JP#�	���H�5�e����,��������O#��H�5�e������������躓$I�H�5�1���*����)Ѝ�)�)�Hcŋ,���O#����#����1��t�P#1���O#���� ��P�Zv���1����O#1��$��O#��1���O#���1��pO#�Ã��������@�s��D���C����o��P���1��vO#�$1��iO#�(1��\O#��1�1�PO#�u�H�t$01�H�=?�P}#L�-5H�t$A��A�M�eH�D$0�����L��A�܉�1���N#H�L$B�����t/�p��P��M��C�9�u I�V��I�l�} �+I��뻾������D�X�Ic׉�H�5��"DG�E�GE��L�L�H��@I�1E��H����I��tF�NA8Mu2��f��H��A:L�uHc�H9�u�A9�u
�D9���I��A��륹���H|#hH�=d� w���r}#�D$���,�H�=B1��,������	|#�H�=�}#��H�Fc��H9�M#��1����dM#�	���A��1���D��OM#H�l$A�F�L�eM�,��I���u1�L��zM#M9�u�A����s���1�� ����I���u���D�|$A���o��\{#H�=x�4v����|#�D$���@�H�=V1��@����D$�%��D$ 1����=
{#���H�5M�����s�������D�|$1��|$(A�������H�5!b����G�������Ic�D��A��L�%�I#C�D5�1�I�4��z#H�yL#H�BV#�
���I�<�H��t��y��H��t�`����=dz#B��H��K#H���H9�t]H��K#H��K#H�5�l���='K#H��K#H��K#H�5�K#u*H�qK#H���H�sK#H�����H�MK#H�VK#�L{#�J���H�50a����V�������J#�e���J#�V���J#�G�H�5�`����������1��=�	K#H�
K#H�#���-0Y#H9����Uy#�D$����D�%Y#�n�H�=]
�0y#�t���az#�D$�������H����H9�����=�x#�oD�%�X#�����x#)����Nz#�D$�,z#���^���H���"L�5vT#H��lX#�
�kX#�aX#��t ��H������A�6�
��u�AX#�-;X#1��c���+
 X#��t_��=u	��?�M�����+t�����=t����߃�A��v�HЃ�	w(�J���É
�W#A�1���I#��W#���u���w#�J��A�H�kI#H�����
�W#�
�W#H9�����H�HI#H�9I#H�
jj���=�H#H�I#H��H#H�
I#����H��H#H�J���1�H��H#H���H��H#H��H#�Y���=1��"I#�%��7w#3����(w#Y�����H#��H�5a^���自�������=Q����H��H#�-�V#A�=H����H9�����H�^H#H�OH#H�5�i���=�G#H�H#H�H#H�5,H#����������v#1�����vv#�Y��H�"��H9���������Q����Iv#Q���ff.����SH���cQ����x��[��Q���H����R����#�R��H�H��D#H�@H��H�@H�8�"Q����y�H���P��[���Q��ff.���H��H�t$�^q��H�|$�ww#�ZP��H�sw#H�D$H�8�� ��H����Hc�H9����=:w#��v#�W��L�w#��v#M����A�8tGH�= G#1�H��t�t���
H�=�	L����€���uy�@t!L�zL��v#�L�$	L��v#L���jO��H���2P��H���DH�x�G����H�=�F#H��t�t��L��L�Qv#���H�=�L����€���u�@� t^L��L�v#�y����H�={L����€����W����@�uZ��H���L��L��u#�5�����u��"���L�UL��u#�����L�8L��u#���DL�1L��u#�����M����AUATUSH��dH�%(H��$1������H���E1�1�1�1�I���/<'��Hc����<Hc��D��t.���������uЅ�tdHc���4Hc�1��D��u҅�tHc҃=#s#�tH�����1�H��$dH3<%(��H��[]A\A]�f.�<\t,E��t7<"tkHcʃ�����\���1��R���f����=���@<'t$<"��< tHHc�D����D������@D������E1�����fD������?���fDHc҃=Br#�tL������Hc��D������1�1�1�����DD��D��A�����JL��f.���SH��H�t$H�$�m��H�|$��K��H���wL��H�hs#H���������w-H��
Hc�H�>��@H�)@#H�H�,s#@�s#H���1s# �7s#�L��H�3s#H�$H�8�� ��H�xHc�H9��i�t
�=�r#1�Hc��L����r#H�8H��� ��H�@H��H��r#��Hc�H9����=�r#H��r#����Hc5�r#H��H�xr#��K���r#��tA�K��H��H����J��H��H��[�H�����H���@H�@H�{H�Yr#�~���@H�	r#H�x��J��H��H���}J��H��H��[�@H��>#HH��q#����H��>#HpH��q#����H��>#H�H��q#�g����H�q>#H�H�tq#�G�����I��H�K?#H�55H�81���I��f.���SH�=��K���H�����H�5lH��H���J���H�����H��H�5��J��H���NK��H��H��H���<J��H�ߺH�5��K��H�ߺH�5��K���H�5�H����J��H�=4�I��H���LJ��H�5 H��H����J��H�=��^I��H���&J��H�5�H��H���J��H�=��8I��H���J��H�5[H��H���~J��H�=�I��H����I��H�50H��H���XJ��H�=���H��H���I��H�5H��H���2J����H��H���I��H�5�H��H���J��H�=��H��H���oI��H�5�H��H����I��H�=��H��H���II��H��H�5�H����I���H�=��H��H��H�5�H���I���H�=���G��H��H�5�H���I���
H�=��G��H��H�5�[H���]I����H��H���0123456789ABCDEF&gt;&quot;&lt;&amp;can't malloc=?SHIFT_JIS?B?=?EUC-JP?B?boundary="NULL%s
ic=oc=guess=cap-inputurl-inputnumchar-inputno-outputdebugno-cp932cp932invx0212no-cp932extno-best-fit-charsfb-skipfb-htmlfb-xmlfb-javafb-perlfb-subcharfb-subchar=ms-ucs-maputf8mac-inputprefix=nkf-utf8/nkf.cindex <= buf->len!nkf_buf_empty_p(buf)can't reallocISO-2022-JPBINARYEUC-JIS-2004EUCJP-MSCP51932CP50221CP50220Shift_JISEUC-JPno output encoding givenguessAUTONOCONVUNKNOWNUS-ASCIIEUCSJISUTF8UTF-16BEUTF16UTF-32BEUTF322.1.5 (2018-12-15)2.1.5NKF_VERSION2018-12-15NKF_RELEASE_DATE=?ISO-8859-1?Q?=?ISO-8859-1?B?=?ISO-2022-JP?B?=?ISO-2022-JP?Q?=?UTF-8?B?=?UTF-8?Q?=?US-ASCII?Q?base64jMBeuceuc-inputfjjmhelpmacsLmmimejMmime-inputmsdossLwsjissjis-inputunixeLuversionwindowsh1katakanah2katakana-hiraganah3g2utf8utf16w16utf8-inputWutf16-inputW16UTF-8UTF-16UTF-32646ROMAN8ISO2022JP-CP932CSISO2022JPCP50222ISO-2022-JP-1ISO-2022-JP-3ISO-2022-JP-2004SHIFT_JISMS_KanjiPCKWINDOWS-31JCSWINDOWS31JMS932CP10001EUCJPEUCJP-NKFEUC-JP-MSEUCJPMSEUC-JP-ASCIIEUCJP-ASCIISHIFT_JISX0213SHIFT_JIS-2004EUC-JISX0213UTF-8NUTF-8-BOMUTF8-MACUTF-8-MACUTF-16BE-BOMUTF-16LEUTF-16LE-BOMUTF-32BE-BOMUTF-32LEUTF-32LE-BOMISO-8859-1Windows-31JeucJP-nkfeucJP-MSeucJP-ASCIIShift_JISX0213Shift_JIS-2004�W���W���T���T���W���T���T���T���T���W���W���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���W���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���W���W���� ��� ��� ��� ��� ��� ��� ��� ������������������ ��� ��� ��� ��� ��� ���X���8�����������������I���@���@�������
���
����������������������@�������]�����������է��է��������������H���*���*���*�����������*���*���*�������������������w���ڦ��G�������,���c���c�������H���˦��`�������G�����������m���m���c���c�������������������������������.�������������������.�������`���������H�������ܫ��������������������������������������d���������������������������������������������������������������<��������������������������������t������������������T������������������������������������������������|���d���D���������������̭���������d���̭��<���������$��������̬���������t��� �����p��p��P��d�|�|�|���|��|�|��|��/"9"B"I"Q"["k"q"z"}"!#/#:#@#[#`#{#~#t$~$w%~%9&@&Y&~&B'P'r'~'A(~(TO~O%t~t'1(2)3*4+56^67^78^89^9:^:;^;<^<=^=>^>?^?@^@A^A/B^BC^CD^DEFGHIJ^J_JK^K_KL^L_LM^M_MN^N_NOPQRS,T-U.VWXYZ[\&]^3_6_7_8_9_:_>_B_Dnkf_buf_at��������������nkf_buf_pop !!()))*+++2222<<FF
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/BBQBBBQBQQ	h                              ,.:;?!'`^_-/\|`'""()[]{}<>+-=<>$%#&*@%w%x%y%z%{%|%}%~%Q%T%W%Z%]%t%,%.%0%2%4%6%8%:%<%>%@%B%E%G%I%P%S%V%Y%\!!!#!V!W!"!&%r%!%#%%%'%)%c%e%g%C!<%"%$%&%(%*%+%-%/%1%3%5%7%9%;%=%?%A%D%F%H%J%K%L%M%N%O%R%U%X%[%^%_%`%a%b%d%f%h%i%j%k%l%m%o%s!+!,L�M�N�O�P�Q�R�S�V�W�X�Y�Z�b�j�|�������������������������������������������C�D�P�X�^�n�p�r�u�|�}�~�����������������������������������������������������������������B�I�K�@�A�B�C�D�E�F�G�H�I�J�K�J�F�H�G�A�C�D�E���@���������������������������e��������^�������������������������������_�����������������������������]�`�������������������������\�����������������x�y�z�{�s�q�t�v���o�e�g�i�h�j�k�l�m�]�_�`�a�d�b�c�f�Y�Z�[�\�M�N�O�Q�R�T�S�V�W�U�J�K�L���������@�A�B�E�H�F�I�G�����������������������d�����c���f������������������������������������g�������������������������������������������������������������������������w�������{�}�~�������p�o�r�q�a�s�v�w�u�t�z�x�y�h�i�k�l�m�n���C�P�`�U�s�t�u�v�w�x�y�z�{�|�}�~�!�"�#�$�%�&�'�(�L"C�)�*�+�,�-�h"c�_�i�x�!�;�.�-�|�P�?�t�)�H�/�R�T�c�n�'�#�,�)�>�_�X�H�W�c�t�a�#�0�;�f�m�u�|�1�5�X�[�e�n�{�2�3�@�G�P�^�4�*�5�/�D�h�6�B�d�h�g�7�8�9�N�a�u�w�x�|�/�7�>�[�*�a�:�k�3�8�;�J�<�=�P�^�t�u�y�d�m�~�>�B�g�?�p�0�,�@�3�=�M�I�d�(�I�D�d�t�&�A�u�|�B�x�+�!�%�C�8�:�D�D�R�W�[�^�m�p�E�!�5�I�9�F�X�~�G�L�H�Y�j�}�I�'�5�6�J�U�8�W�`�j�c�!�+�G�C�K�O�Y�K�L�f�n�|�k�p�1�e�x�&�+�-�M�J�S�i�c�|�t�u�N�3�=�o�q�.�O�J�f�j�p�t�n�%�y�+�.�-�2�B�P�Y�P�;�Q�;�R�:�C�S�r�]�U�b�i�m�T�U�V�W�e�X�i�h�Y�Z�l�;�[�a�h�'�\�]�T�r�.�^�^�_�"�7�A�Q�t�F�H�Q�`�a�b�c�d�S�H�T�j�z�$�0�e�5�K�f�9�g�C�h�i�Y�j�k�b�l�m�n�G�(�&�)�/�0�*�+�<�A�?�U�X�V�_�c�a�T�i�&�q�r�K�A�C�>�o�@�G�?�`�^�Q�p�\�R�[�T�z�o�3�?�I�P�b�j�k�q�r�s�h�o�,�t�.�u�1�v�2�1�6�w�x�]�y�z�Q�{�m�M�|�[�f�j�%�{�z�}�V�~�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�@�A�B�C�D�E�F�G�H�I�ʁU�V�W�����������������T�U�V�W�X�Y�Z�[�\�]�ʁ��������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������������������������������������������������������������������������������������������������������������������������������������������;;ÀÀÁÁÂÂẦẦẤẤẪẪẨẨÃÃĀĀĂĂẰẰẮẮẴẴẲẲǠǠÄÄǞǞẢẢÅÅǺǺǍǍȀȀȂȂẠẠẬẬẶẶḀḀĄĄḂḂḄḄḆḆĆĆĈĈĊĊČČÇÇḈḈḊḊĎĎḌḌḐḐḒḒḎḎÈÈÉÉÊÊỀỀẾẾỄỄỂỂẼẼĒĒḔḔḖḖĔĔĖĖËËẺẺĚĚȄȄȆȆẸẸỆỆḜḜĘĘḘḘḚḚḞḞǴǴĜĜḠḠĞĞĠĠǦǦĢĢĤĤḢḢḦḦḤḤḨḨḪḪÌÌÍÍÎÎĨĨĪĪĬĬİİÏÏḮḮỈỈǏǏȈȈȊȊỊỊĮĮḬḬĴĴḰḰǨǨḲḲĶĶḴḴĹĹĽĽḶḶḸḸĻĻḼḼḺḺḾḾṀṀṂṂŃŃÑÑṄṄŇŇṆṆŅŅṊṊṈṈÒÒÓÓÔÔỒỒỐỐỖỖỔỔÕÕṌṌṎṎŌŌṐṐṒṒŎŎÖÖỎỎŐŐǑǑȌȌȎȎƠƠỜỜỚỚỠỠỞỞỢỢỌỌỘỘǪǪǬǬṔṔṖṖŔŔṘṘŘŘȐȐȒȒṚṚṜṜŖŖṞṞŚŚṤṤŜŜṠṠŠŠṦṦṢṢṨṨŞŞṪṪŤŤṬṬŢŢṰṰṮṮÙÙÚÚÛÛŨŨṸṸŪŪṺṺŬŬÜÜǛǛǗǗǕǕǙǙỦỦŮŮŰŰǓǓȔȔȖȖƯƯỪỪỨỨỮỮỬỬỰỰỤỤṲṲŲŲṶṶṴṴṼṼṾṾẀẀẂẂŴŴẆẆẄẄẈẈẊẊẌẌỲỲÝÝŶŶỸỸẎẎŸŸỶỶỴỴŹŹẐẐŻŻŽŽẒẒẔẔ``ààááââầầấấẫẫẩẩããāāăăằằắắẵẵẳẳǡǡääǟǟảảååǻǻǎǎȁȁȃȃạạậậặặḁḁąąḃḃḅḅḇḇććĉĉċċččççḉḉḋḋďďḍḍḑḑḓḓḏḏèèééêêềềếếễễểểẽẽēēḕḕḗḗĕĕėėëëẻẻěěȅȅȇȇẹẹệệḝḝęęḙḙḛḛḟḟǵǵĝĝḡḡğğġġǧǧģģĥĥḣḣḧḧḥḥḩḩḫḫẖẖììííîîĩĩīīĭĭïïḯḯỉỉǐǐȉȉȋȋịịįįḭḭĵĵǰǰḱḱǩǩḳḳķķḵḵĺĺľľḷḷḹḹļļḽḽḻḻḿḿṁṁṃṃńńññṅṅňňṇṇņņṋṋṉṉòòóóôôồồốốỗỗổổõõṍṍṏṏōōṑṑṓṓŏŏööỏỏőőǒǒȍȍȏȏơơờờớớỡỡởởợợọọộộǫǫǭǭṕṕṗṗŕŕṙṙřřȑȑȓȓṛṛṝṝŗŗṟṟśśṥṥŝŝṡṡššṧṧṣṣṩṩşşṫṫẗẗťťṭṭţţṱṱṯṯùùúúûûũũṹṹūūṻṻŭŭüüǜǜǘǘǖǖǚǚủủůůűűǔǔȕȕȗȗưưừừứứữữửửựựụụṳṳųųṷṷṵṵṽṽṿṿẁẁẃẃŵŵẇẇẅẅẘẘẉẉẋẋẍẍỳỳýýŷŷỹỹẏẏÿÿỷỷẙẙỵỵźźẑẑżżžžẓẓẕẕ῭῭΅΅΅¨̍῁῁´´··ӔÆǼǼǢǢǾǾӕæǽǽǣǣǿǿẛẛӘƏӚƏ̈ӨƟӪƟ̈ӠƷǮǮәəӛə̈өɵӫɵ̈ӡʒǯǯʹʹ̀̀́́̐̆̇̈́̈̍̓̓ᾺᾺΆΆᾹᾹᾸᾸΆΑ̍ἈἈἊἊἌἌἎἎἉἉἋἋἍἍἏἏᾼᾼᾈᾈᾊᾊᾌᾌᾎᾎᾉᾉᾋᾋᾍᾍᾏᾏῈῈΈΈΈΕ̍ἘἘἚἚἜἜἙἙἛἛἝἝῊῊΉΉΉΗ̍ἨἨἪἪἬἬἮἮἩἩἫἫἭἭἯἯῌῌᾘᾘᾚᾚᾜᾜᾞᾞᾙᾙᾛᾛᾝᾝᾟᾟῚῚΊΊῙῙῘῘΪΪΊΙ̍ἸἸἺἺἼἼἾἾἹἹἻἻἽἽἿἿῸῸΌΌΌΟ̍ὈὈὊὊὌὌὉὉὋὋὍὍῬῬῪῪΎΎῩῩῨῨΫΫΎΥ̍ὙὙὛὛὝὝὟὟῺῺΏΏΏΩ̍ὨὨὪὪὬὬὮὮὩὩὫὫὭὭὯὯῼῼᾨᾨᾪᾪᾬᾬᾮᾮᾩᾩᾫᾫᾭᾭᾯᾯὰὰάάᾱᾱᾰᾰάα̍ἀἀἂἂἄἄἆἆἁἁἃἃἅἅἇἇᾶᾶᾳᾳᾲᾲᾴᾴᾀᾀᾂᾂᾄᾄᾆᾆᾁᾁᾃᾃᾅᾅᾇᾇᾷᾷὲὲέέέε̍ἐἐἒἒἔἔἑἑἓἓἕἕὴὴήήήη̍ἠἠἢἢἤἤἦἦἡἡἣἣἥἥἧἧῆῆῃῃῂῂῄῄᾐᾐᾒᾒᾔᾔᾖᾖᾑᾑᾓᾓᾕᾕᾗᾗῇῇιιὶὶίίῑῑῐῐϊϊῒῒΐΐΐϊ̍ῗῗίι̍ἰἰἲἲἴἴἶἶἱἱἳἳἵἵἷἷῖῖὸὸόόόο̍ὀὀὂὂὄὄὁὁὃὃὅὅῴόͅῤῤῥῥὺὺύύῡῡῠῠϋϋῢῢΰΰΰϋ̍ῧῧύυ̍ὐὐὒὒὔὔὖὖὑὑὓὓὕὕὗὗῦῦὼὼώώώω̍ὠὠὢὢὤὤὦὦὡὡὣὣὥὥὧὧῶῶῳῳῲῲᾠᾠᾢᾢᾤᾤᾦᾦᾡᾡᾣᾣᾥᾥᾧᾧῷῷϔϔϓϒ̍ЇЇӐӐӒӒЃЃӖӖЁЁӁӁӜӜӞӞӢӢЙЙӤӤЌЌӦӦӮӮЎЎӰӰӲӲӴӴӸӸӑӑӓӓѓѓӗӗёёӂӂӝӝӟӟӣӣййӥӥќќӧӧӯӯўўӱӱӳӳӵӵӹӹїїѶѶѷѷאַאַאָאָאּאּבּבּבֿבֿגּגּדּדּהּהּוֹוֹוּוּזּזּטּטּיּיּךּךּכּכּכֿכֿלּלּמּמּנּנּסּסּףּףּפּפּפֿפֿצּצּקּקּרּרּשּשּשּׁשּׁשּׂשּׂשׁשׁשׂשׂתּתּײַײַक़क़ख़ख़ग़ग़ज़ज़ड़ड़ढ़ढ़ऩऩफ़फ़य़य़ऱऱऴऴড়ড়ঢ়ঢ়রব়য়য়োোৌৌਖ਼ਖ਼ਗ਼ਗ਼ਜ਼ਜ਼ੜਡ਼ਫ਼ਫ਼ଡ଼ଡ଼ଢ଼ଢ଼ୟଯ଼ୋୋୈୈୌୌஔஔொொௌௌோோైైೀೀೊೊೋೋೇೇೈೈൊൊൌൌോോำําຳໍາཀྵཀྵགྷགྷཌྷཌྷདྷདྷབྷབྷཛྷཛྷཱཱཱཱཱཱིིྀྀུུྐྵྐྵྒྷྒྷྜྷྜྷྡྷྡྷྦྷྦྷྫྷྫྷྲྀྲྀཷྲཱྀླྀླྀཹླཱྀ῍῍῎῎῏῏῝῝῞῞῟῟ゔゔががぎぎぐぐげげごござざじじずずぜぜぞぞだだぢぢづづででどどばばぱぱびびぴぴぶぶぷぷべべぺぺぼぼぽぽゞゞヴヴガガギギググゲゲゴゴザザジジズズゼゼゾゾダダヂヂヅヅデデドドババパパビビピピブブププベベペペボボポポヷヷヸヸヹヹヺヺヾヾ1!o!q!r!L"1!C�o!@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_.!a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#P!C!Q!2"V"W"!"#$%&'()*+,-./0123456789:;<=>?.!a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#P!C!Q!A!!"#$%&'()*+,-./0123456789:;<=>?.!a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#P!C!Q!7�!"#$%&'()*+,-./0123456789:;<=>?*!0"t!p!s!u!/"J!K!v!\!$!1"%!?!0#1#2#3#4#5#6#7#8#9#'!(!c!a!d!)!w!A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#N!@!O!0!2!*!*�t!p!s!u!)�J!K!v!\!$!]!%!?!0#1#2#3#4#5#6#7#8#9#'!(!c!a!d!)!w!A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#N!@!O!0!2!>#=#at(u+uCueuivwv%wUw)�%x'y3y4y7y8y9y;y?y@yMyQydy.zP�3z:zDzXzt�u�'{o{y{/|0|8|=|i�Y|c}v}{}K/W/rOy�zuZwow<y=yAy:{8�E�.|n�j|8.I.P.c.h.n.,///6/Z/^/aObOPt\t^t4�7�8�=�D�G�H�N�O�S�U�V�W�X�Z�[�^�`�b�c�e�i�j�k�m�o�p�s�w�x�y�}�$~]}r�Iv;v.tNuO{E�6NX�v~Z�[�w~|s]�x~}sTc_�~s`�y~b�c�6NX�Y�Z�[�\�|s]�^�}sTc_�~s`�a�b�c�h�@�A�i�j�D�ns7cZlmposk�psl�G�u~m�J�o�L�rssstspNqsusvsM�q�xswss�P�Q�t�S�zsT�u�{sysV�W�?�@�A�B�C�D�ns7cZlmposE�psF�G�H�I�J�K�L�rssstspNqsusvsM�N�xswsO�P�Q�R�S�zsT�U�{sysV�W�_�a�gshs%�$E&�s~(�)�]8*�js+�b�c�.�/�0�MAks1�2�3�4�lsd�6�7�8�e�t~f�!I<�g�ms>�#�$�gshs%�$E&�'�(�)�]8*�js+�,�-�.�/�0�MAks1�2�3�4�ls5�6�7�8�9�:�;�!I<�=�ms>�q~+2q�r�s�TsP5UsVsWsr~u9Xst�T`[LcBYs[sZs[�\sv�]s\�^sx�y�]�_s{�|�}�`s~�asbs!�csdsesfs^�+2q�r�s�TsP5UsVsWs~�u9Xst�T`[LcBYs[sZsu�\sv�]sw�^sx�y�z�_s{�|�}�`s~�asbs!�csdsesfs"�T�Fs]�^�_�U�a�GsHsIsb�c�LsJs<OKsd�oNe�V�Msk~[Nl~Ns~GW�OsQsm~Rsk�n~m�n�o~p~Psm9MLcKwVY�`]{K\�Fs]�^�_�`�a�GsHsIsb�c�LsJs<OKsd�oNe�f�Msg�[Nh�Ns~Gi�OsQsj�Rsk�l�m�n�o�p�Psm9MLcKwV`]{KCs48DsY�R�j~Es/<Cs48DsY�Z�[�Es/<M�h~L�N�P�Q�R�S�i~U�O�@sAsP�Q�BsN�O�M�P�Q�R�S�T�U�V�@sAsW�X�Bsb~2s8sB�1s6sC�D�;�7s:s<�=�E�e~9sF�A�G�H�I�D�<sg~F�G�=sH�>sI�IOJ�J�;skBm:?sL�2s8s8�1s6s9�:�;�7s:s<�=�>�?�9s@�A�B�C�D�<sE�F�G�=sH�>sI�IOJ�K�;skBm:?sL�#�:�%�)s(s`~;�(�\7)�*�+�a~-�.�<�-s=�.s/s0�*sc~2�tr3�0saD?�4s@�5s3sd~A�>�#�$�%�)s(s&�'�(�\7)�*�+�,�-�.�-s/�.s/s0�*s1�2�tr3�0saD4�4s5�5s3s6�7�zr.�Z~wrl�}r[~~r/�%s$s\~r�s�&s-1!s"s0�t99L1�]~#sw�3�y�4�2K+s^~'s6�7�8�,s~�_~9�zrn�o�wrl�}rp�~rq�%s$sr�s�&s-1!s"st�t99Lv�u�#sw�x�y�z�2K+s{�'s|�}�,s~�!�"�$�prqr>Fnrmr#�*2&�yrxr'�(�u1b�X~Y~vrursr{3rr2<)2e�f�,�h�i�j�c9k�m�|r{r^�prqr>Fnrmr]�*2_�yrxr`�a�u1b�c�d�vrursr{3rr2<)2e�f�g�h�i�j�c9k�m�|r{r;D!�jr7Horkrlr"�1KDLPF[�\�;DY�jr7HorkrlrZ�1KDLPF[�\�Q~=�>�k�crar-Cn�o�B�R~S~pKT~q�G�ZNr�ers�l�t�K�u�frU~V~grR�v�w�x�y�z�{�|�}�hrW~ir~�X�<�=�>�?�crar-C@�A�B�C�D�pKE�F�G�ZNH�erI�P�J�K�L�frM�grR�N�O�Q�S�T�U�V�hrW�irX�O~&�ZrVrWrSrYr'�Urb3(�LO)�XrTrRrQr^�_�`�a�\r.�b�/�_rc�P~^r]r2�d�4�e�f�II[rs0`rh�br8�i�j�o3Mr71;�dr%�&�ZrVrWrSrYr'�Urb3(�LO)�XrTrRrQr*�+�,�-�\r.�/�_r0�1�^r]r2�3�4�5�6�II[rs0`r7�br8�9�:�o3Mr71;�drArJ~DrP�p�q8BrK~Err�FrGrKr*;s�R�dBS�v�LrIrHrJrL~T�_7U�V�X�W�PrOrNrQ�30\�M~!�Z�N~$�Arn�Dro�p�q8Brq�Err�FrGrKr*;s�t�dBu�v�LrIrHrJrw�x�_7y�z�{�PrOrNr|�30}�~�!�"�#�$�R�9rE~T�U�V�W�F~Y�Z�>0G~\�:r+J8r]�;r<r^�_�H~=r>rH�I~?rc�nK-;I�z:/Ae�J�M�@rh�N�Crk�O�m�R�9rS�T�U�V�W�X�Y�Z�>0[�\�:r+J8r]�;r<r^�_�`�=r>ra�b�?rc�nK-;d�z:/Ae�f�g�@rh�i�Crj�k�l�m�!32:1r0r%L:�@�<�3r4r2r5rbK=�>�?�6r{5@�@~B�A�B�B~F�G�C�D�J�K�%OC~E�7rD~F�G�O�A~Q�!32:1r0r%L:�;�<�3r4r2r5rbK=�>�?�6r{5@�A�B�C�D�E�F�G�H�I�J�K�%O|�L�7rM�N�O�P�Q�{�|�;~6�!�"�"r<~$�%�7�'�(�8�9�:�#r,�$r-�;�%r=~&r'r(r0�)r*r+r,r<�?~-r.r5]/r=�4�5�6�7�8�xd45>�{�|�}�~�!�"�"r#�$�%�&�'�(�)�*�+�#r,�$r-�.�%r/�&r'r(r0�)r*r+r,r1�2�-r.r5]/r3�4�5�6�7�8�xd459�oq6~7~q?-�e�8~pq.�qq/�rqsq0�9~k�b9l�2�tquq3�vqwqo�4�xqq�5�1Hzqs�&I{qyq}qt�u�|qv�~q:~x�!ry�z�oqb�c�q?d�e�f�pqg�qqh�rqsqi�j�k�b9{�l�m�tquqn�vqwqo�p�xqq�r�1Hzqs�&I{qyq}qt�u�|qv�~qw�x�!ry�z�|9V�W�lqX�'�mqZ�[�\�5~)�<3+�_�nq`�a�|9V�W�lqX�Y�mqZ�[�\�]�<3^�_�nq`�a�^qL�]q_q#�\qK�2~O�$�bq3~R�4~S�aqT�dq%�C6cqU�eqfqhqgqiqkqjq^qL�]q_qM�\qK�N�O�P�bqQ�R�S�aqT�dqC6cqU�eqfqhqgqiqkqjqUq,~-~9�Wqz�:�;�35Vq<�{�{A38|�Yq}�?�~�A�B�.~D�MBZq/~0~-F!�G�H�"�[q1~`qUq7�8�9�Wq:�;�35Vq<�=�{A38>�Yq?�@�A�B�C�D�MBZqE�F�-FG�H�I�[qJ�`q}Gq�LBX1n6o6r�sCNqp6'�s�o2Mqt�*�Kq+�Lqu�JqXq-�.�/�0�OqPqw�QqRq2�3�Tqx�Sqy�5�6�Y=}G%�LBX1n6o6&�sCNqp6'�(�o2Mq)�*�Kq+�Lq,�JqXq-�.�/�0�OqPq1�QqRq2�3�Tq4�Sq5�6�Y=s<DqEqa9w�x�+~y�l�Fqm�>3OGGqHq{�|�}�ZCkF~�n�"�Iqo�p�s<DqEqa9w�x�z�y�Fqz�>3OGGqHq{�|�}�ZCkF~�!�"�Iq#�$�d�e�;q=qf�k�l�<q?qBqg�h�>q@qAqo�CqB6*~q�r�i�t�j�k�h�i�;q=qj�k�l�<q?qBqm�n�>q@qAqo�CqB6p�q�r�s�t�u�v�P�-q_LQ�T�.q\MB1A;S�/qn20qT�W�X�1qZ�[�\�3q4qZ�6q2q[�5q\�[4^�7q8q^�_�`�b�c�d�a�b�c�9q:qP�-q_LQ�R�.q\MB1A;S�/qn20qT�U�V�1qW�X�Y�3q4qZ�6q2q[�5q\�]�[4^�7q8q_�`�a�b�c�d�e�f�g�9q:qH�)q(qE�*qI�(~J�G�tHLf)?K�M�25N�O�K�)~+qP�,q,R;]SHQ�R�{0S�;0O�t;0K~>D�)q(qE�*qF�G�tHLf)?H�25I�J�K�L�+qM�,q,R;]SH{0N�;0O�t;0K~>wI$q?�@�<�%qA�&q>�'qC�D�'~E�F�G�wI$q:�;�<�%q=�&q>�'q?�@�A�B�C�*�yp=�,�{pjB[3\3zp-�|}}}i428~}!~j4"~#~?E`N4�5�%~>�\88�|p&~}p~p!q#q"q*�yp+�,�{pjB[3\3zp-�.�/�i4280�1�j42�3�?E`N4�5�6�7�\88�|p9�}p~p!q#q"qGJ:D":2�`9g=s�\?w}sp3�4�rpBMh4RH\F5�6�|?NNu�[7z�x}|�vp9�up<�~�y}KK,F"�#�z}:�;�P1'�wptpQIjMxp)�GJ:D":`9g=s�\?t�spv�w�rpBMh4RH\Fx�y�|?NNu�[7z�{�|�vp}�up(�~�!�KK,F"�#�$�%�&�P1'�wptpQIjMxp)�q}gpY�Z�hp[�ipr}]�jp+�_�`�a�,�Z4-�d�.�/�t}kpg�s}i�0�l�lp#Gm�1�np;2u}qpppp�q�r�$1A6X�gpY�Z�hp[�ip\�]�jp^�_�`�a�b�Z4c�d�e�f�j�kpg�h�i�k�l�lp#Gm�n�np;2o�qpppp�q�r�$1A6B�[ps3Yp]pC�^pH0_p`pn}$�F�d>G�%�ap&�J�G5'�dpcpbpqkL�\Jo}(�)�epfpP�Q�R�S�p}U�*�W�B�[ps3Yp]pC�^pH0_p`pD�E�F�d>G�H�apI�J�G5K�dpcpbpqkL�\JM�N�O�epfpP�Q�R�S�T�U�V�W�z�NpKpLp{�MpOp/�h}i}j}D@|�wL}�4�E@k}~�PpsHQpSsLL7�RpSp8�TpW3!�VpY?l}Wpm}$7<�=�>�Xp\p?�Zp@�A�-�Np.�KpLpMpOp/�u�0�1�v�D@2�wL3�4�E@5�6�PpsHQpSsLL7�RpSp8�TpW39�VpY?:�Wp;�$7<�=�>�Xp\p?�Zp@�A�{<~�!�<p"�=pL?>p#�nN9p@pBpAp?pv�CpDp$�%�zA&�b2'�(�w�Ep8L*�FpGp+�*Of}y�1[Hpg}IpJp{<~�!�<p"�=pL?>p#�nN9p@pBpAp?pCpDp$�%�zA&�b2'�(�)�Ep8L*�FpGp+�*O,�1[Hpt�IpJp}?g4:Mm28=[85pr�4ps;6p3p(;a}:p-jr�VRs�w?8pt�b}y�%NqF+1d}c@6<e}7J|�@1mNkM;p}�EE}?g4:Mm28=[85pr�4ps;6p3p(;s�:p-ju�VRv�w?8pw�x�y�%NqF+1z�c@6<{�7J|�@1mNkM;p}�EE`�f�b�\}y64N(7d�bB!g&p,3o?e�V3(pf�)p'pd7h�]:c>^}i�#1YN_}`}l�+p.nk�*pn�l�.p,p-pm�/p0plN1p2pn�I@;Ho�`�a�b�c�y64N(7d�bB!g&p,3o?e�V3(pf�)p'pd7g�]:c>h�i�#1YNj�k�l�+p.nm�*pn�o�.p,p-pp�/p0plN1p2pq�I@;HKBc�xomI{oyo_9zoB8T�U�V�W�[}EJ}o!p~o"pd�!1X?|=Y4#pfG%pZ�"1$pDD[�MN+F|o&N18\�]�[M^�_�KBS�xomI{oyo_9zoB8T�U�V�W�X�EJ}o!p~o"pY�!1X?|=Y4#pfG%pZ�"1$pDD[�MN+F|o&N18\�]�[M^�_�lI%�E�toF�G�H�I�uoe:^�vowoK�IK_�`�M�N�O�P�KAb�R�$0lID�E�toF�G�H�I�uoe:J�vowoK�IKL�M�N�O�P�KAQ�R�$0jo4�G0[�6�hoU}lokoV}9�:�W}nomooo.F<�Y}po>�Z}@�A�qosoB�roC�jo4�G05�6�ho7�loko8�9�:�;�nomooo.F<�=�po>�?�@�A�qosoB�roC�gLYo.A"�T�Zo#�DJ[o+3U�V�N}<1W4V4\o]o^o_o'�(�O}`o*�X4U3^96HP}boaoQ}X�R}co\1Y�S}fo1�eodoT}go3�gLYo.A"�Zo#�DJ[o+3$�%�&�<1W4q�V4\o]o^o_o'�(�)�`o*�X4U3^96H+�boao,�-�.�co\1/�0�fo1�eodo2�go3�9DR�S�!�9D}�~�!�Wo|�{�Goi�IoM�I}m�U4HozLn�o�ToJop�Moq�Kor�LoJ}t�NoK}P�w�Q�PoL}M}QoRoUoSoVoXoGoi�Ioj�k�l�m�U4HozLn�o�ToJop�Moq�Kor�Los�t�Nou�v�w�x�Poy�z�QoRoUoSoVoXoT�U�?oF}@oW�E�Y�Z�F�Ao>o=o\�G�H�b>*F<o_�EoCo`�a�J�H}K�DoBoxBFoL�h�g�T�U�?oV�@oW�X�Y�Z�[�Ao>o=o\�]�^�b>*F<o_�EoCo`�a�b�c�d�e�DoBoxBFof�h�g�@�7o=�>�C}A�:oA�B�C�D�E�9o-EF�2o3o6oG�B�8oD}E}@6C�;o5oL�D�4o?�<�O�N�Q�I�G}<�7o=�>�?�@�:oA�B�C�D�E�9o-EF�2o3o6oG�H�8oI�J�@6K�;o5oL�M�4oO�P�N�Q�R�S�$�%�&�8�(�9�y3*�:�,�0o-�?:yA.�JD@};�5�A}4�;35�;�6�.o/oCD-o7�8�9�1oB}$�%�&�'�(�)�y3*�+�,�0o-�?:yA.�JD/�0�1�2�3�4�;35�;�6�.o/oCD-o7�8�9�1o:�}n.�9}:};}iFUEk�/�m�WDn�,o0�p�1�CC(or�)o<}=}u�v�>}2�-7x�+oy�?}3�4�}�08~�!�*o"�a>#�}nh�i�j�iFUEk�l�m�WDn�,oo�p�q�CC(or�)os�t�u�v�w�-7x�+oy�z�{�|�}�08~�!�*o"�a>#�S�%�5},;U�&�{nm?}�X�'�n?!o#oZ�(�)�6}{>7}"o$o_�8}S6*�EI+�c�b<#O~nx:?Od�e�&of�g�%o'oS�T�,;U�V�{nm?W�X�Y�n?!o#oZ�[�\�]�{>^�"o$o_�`�S6a�EIb�c�b<#O~nx:?Od�e�&of�g�%o'ou�3�/}5�6�v�8�9�0}1}<�w�wnx�/K2}y�B�z�D�E�F�3}H�I�{={�|�L�zn_JM�T1N�O�FIrC"�x5#�|n$�]94}2�3�4�5�6�7�8�9�:�;�<�=�wn>�/K?�@�A�B�C�D�E�F�G�H�I�{=J�K�L�zn_JM�T1N�O�FIrCx5P�|nQ�]9R�d6F=<F.}j�z�k�|�-A}�tnnnsnl�CLm�8Dunrnn�#�$�%�o�'�p�,A)�s�+�yn,�xn-�.�/�0�t�d6F=<Fx�y�z�{�|�-A}�tnnnsn~�CL!�8Dunrn"�#�$�%�&�'�(�,A)�*�+�yn,�xn-�.�/�0�1�*}Y�+}4Ejn[�Z�mnkn[�pn^�\�,}qn]�^�inb�_�vnt1d�e�hn`�a�-Hlnb�`>c�d�k�l�m�n�[9o�p�-}s�t�g�h�HKi�X�Y�Z�4Ejn[�\�mnkn]�pn^�_�`�qna�inb�c�vnt1d�e�hnf�g�-Hlnh�`>i�j�k�l�m�n�[9o�p�q�r�s�t�u�v�HKw�8�S�:�;�$}>�T�@�_FC3%}gnB�C�dnfnU�V�E�F�G�bnH�I�J�K�L�OoenM�N�O�X�kNQ�R�Z8&}'}(})}W�on8�9�:�;�<�=�>�?�@�_FC3A�gnB�C�dnfnD�E�F�G�bnH�I�J�K�L�OoenM�N�O�P�kNQ�R�Z8S�T�U�V�W�onVnWn!�L�M�#�PHS:a<XnYn$NE=nLLNZnb6$�%�[n||#E'�N�^nx3K?\n]n`D~|!}UK|6,�-�Q�"}R�1�2�#}`nan4�5�}|_n7�cnVnWn!�"�#�PHS:a<XnYn$NE=nLLNZnb6$�%�[n&�#E'�(�^nx3K?)�\n]n`D*�+�UK|6,�-�.�/�0�1�2�3�`nan4�5�6�_n7�cnd�Nnw|F�g�f=Mnh�LniBG�o8j�C@k�l�m�0Hn�9=x|p�On_>q�H�RnPny|t�I�Qnv�z|x�J�TnSnK�z>Un{�{|}�~�d�Nne�f�g�f=Mnh�LniBi�o8j�C@k�l�m�0Hn�9=o�p�On_>q�r�RnPns�t�u�Qnv�w�x�y�TnSnz�z>Un{�|�}�~�S�>�?�u|SFDn6=`<[GqCV�r<W�l?En@�FnA�Z�v|B�]?GnC�Hn^�InoM7=_�KnJnD�Z9s9@;E�b�c�S�T�U�SFDn6=`<[GqCV�r<W�l?EnX�FnY�Z�[�\�]?Gn]�Hn^�InoM7=_�KnJn`�Z9s9@;a�b�c�2�?n6�7�7�9�:�;�@nk|l|m|>�8�An@�9�:�C�n|o|D�p|H�"EI�q|Cnr|Bns|M�;�<�=�Q�t|5�?n6�7�8�9�:�;�@n<�n�=�>�?�An@�A�B�C�E�F�D�G�H�"EI�J�CnK�BnL�M�N�O�P�Q�R�j0*�b|c|d|+�Y9|�:O-�%�e|'�(�>n-�f|g|.�47;n<n,�tI3�T3h|1�1�i|9M0�?6TE4�5�j0~�!�"�#�$�Y9|�:O-�%�&�'�(�>n)�*�l�+�47;n<n,�tI/�T30�1�2�9M.�?6TE3�4�3n2n0ndcT4"�nmZ|5n4ni�#�k�6n$�8M[|\|o�]|^|r�&�_|aFu�.K7nY<8n(�9nw�`|y�:n)�!E{�a|3n2n0ndcT4g�nmh�5n4ni�j�k�6nl�8Mm�n�o�p�q�r�s�t�aFu�.K7nY<8nv�9nw�x�y�:nz�!E{�}�[Fk?{�|�YCx6&n7M?1]�WJa2!n"n#n$n;F#Cc0(n)n#t^�=B}�*ns1LA`�/8ZMa�+n,Ec�xAW<,nd�/ne�e=-n+A*Af�d0KN1nrH[Fk?[�\�YCx6&n7M?1]�WJa2!n"n#n$n;F#Cc0(n)n#t^�=B_�*ns1LA`�/8ZMa�b�+n,Ec�xAW<,nd�/ne�e=-n+A*Af�d0KN1nrH`BwAw�(FL�pmU5W|ymx�vm%n)F`Csm~DSEtmxm`?O�gGLDP�B@wm.B$Bum)0"OzmQ�R�T�U�X|aBS�5=J?W�X�|m{my�o0}m/I'nZ�`BwAK�(FL�pmU5M�ymN�vm%n)F`Csm~DSEtmxm`?O�gGLDP�B@wm.B$Bum)0"OzmQ�R�T�U�V�aBS�5=J?W�X�|m{mY�o0}m/I'nZ�7�l�*1xKW?m�o�;�p�^7=�a6>�q�VJr�ims�kmB�T|jm`2U|vFlmwG3EV|mmR=t�omu�H�BL~mqmrmv�IDJ�7�8�*1xKW?9�:�;�<�^7=�a6>�?�VJ@�imA�kmB�C�jm`2D�vFlmwG3EE�mmR=F�omG�H�BL~mqmrmI�IDJ�I?cm-�-<dm.�/�emg�1�R|!R~Qfmpegm$C+?@Gh�S|j�hm5�UJTD~96�)CI?cm-�-<dm.�/�em0�1�2�!R~Qfmpegm$C+?@G3�4�hm5�UJTD~96�)Cc�~�Xm!�m3Wm\m"�[md�Zm2E]m#�$�%�&�P|(�^me�_m*�+�l9%7`mambm,�}�~�Xm!�m3Wm\m"�[mZm2E]m#�$�%�&�'�(�^m)�_m*�+�l9%7`mambm,�_�f�S3Jmg�`�\:ImRmi�j�LmNmeJKmk�a�m�MmQmOm15M|Pmo�p�q�r�Sms�t�ZGXNb�u�N|w�4=Tmx�y�O|{�"MVm|�UmYmAMe�f�S3Jmg�h�\:ImRmi�j�LmNmeJKmk�l�m�MmQmOm15n�Pmo�p�q�r�Sms�t�ZGXNu�v�w�4=Tmx�y�z�{�"MVm|�UmYmAMJ|U�V�W�@m=mX�AmV<Bm0537Z�.8[�Cm\�pF>EDm]�Gmd�^�_�`�a�4<]�L|FmEmZ7HmT�U�V�W�@m=mX�AmV<Bm0537Y�Z�.8[�Cm\�pF>EDm]�Gmd�^�_�`�a�4<b�c�FmEmZ7Hm/mA�B�2m1m0mC�4m3mvLD�6mE�5m7mF�R�8mG�H�I�S�:mK�L�M�9mH?;mN�T�m6<m>mU�V�W�R�X�?m/mA�B�2m1m0mC�4m3mvLD�6mE�5m7mF�8mG�H�I�J�:mK�L�M�9mH?;mN�O�m6<m>mP�Q�R�S�?m+�,�zl}D!m%m"m~lL�#m.�/�0�$mM�+m&m2�3�4�5�X@(m6�N�*m'm8�O�P�Q�G|=�-m3=,m>�?�H|.m+�,�zl}D!m%m"m~l-�#m.�/�0�$m1�+m&m2�3�4�5�X@(m6�7�*m'm8�9�:�;�<�=�-m3=,m>�?�@�.mt�u�v�A�sltlYMx�>�'Fxly�C�D�vlwlylD|E�F�E|"�G�)m|l$�%�}l{lJ�'�(�K�F|t�u�v�w�sltlYMx�'Fxly�z�{�vlwlyl|�}�~�!�"�#�)m|l$�%�}l{l&�'�(�)�*�^�el_�:�a�;�c�mlklA|hlB|f�g�jlC|<�illlw5plW@qlj�k�l�Y8nlol=�)On�p�q�7Dr�)Arl@�ul^�el_�`�a�b�c�mlkld�hle�f�g�jlh�i�illlw5plW@qlj�k�l�Y8nlolm�)On�p�q�7Dr�)Arls�ulclK�6�6DM�[1N�O�P�7�dlR�S�T�q<8�v?V�W�@|Y�-BZ�[�\�gl]�o�flclK�L�6DM�[1N�O�P�Q�dlR�S�T�q<U�v?V�W�X�Y�-BZ�[�\�gl]�o�flV@F�O<_lG�R35�`lI�vAalblkI/5J�V@F�O<_lG�R3H�`lI�vAalblkIh�/5J�@�A�SlTlVl#B3�Ulf4Xl4�WlYl>|[l]l^lD�?|@�A�SlTlVl#BB�Ulf4XlWlYlC�[l]l^lD�E�l2Ll(OBDEO,�-�q;Kl.�1B/�\l(A0�xFPI-�,�.�Ol?;r;4�^>eG9|-8NlMljI6�A<7�RE8�0�1�:�:|;�<�;|QlRlX9Pl<|?�l2Ll(OBDEO,�-�q;Kl.�1B/�\l(A0�xFPI2�1�3�Ol?;r;4�^>eG5�-8NlMljI6�A<7�RE8�9�:�g�;�<�=�QlRlX9Pl>�?�:l<l~�!�;l=l"�FK>l?l#�'�&�@lBl(�*�(�-3gDiIb:W9+�OI_2NHElS4U@DlIlyCcLGlHl.5JlcG_B*�+�qH=EFlGK:l<l~�!�;l=l"�FK>l?l#�$�%�@lBl&�'�(�-3gDiIb:W9)�OI_2NHElS4U@DlIlyCcLGlHl.5JlcG_B*�+�qH=EFlGK/l{�&F|�1l6|-Ki�2l3l}�4lk�l�~�5l!�o�r�ZFp�q�]>6ls�t�u�7|"�k9.P7l#�$�z�{�8l?I9l|�Al}�/lf�&Fg�1lh�-Ki�2l3lj�4lk�l�m�5ln�o�r�ZFp�q�]>6ls�t�u�v�w�k9.P7lx�y�z�{�8l?I9l|�Al}�+Cb�v�.lx�e�0l+Cb�c�.ld�e�0l&lp�>;X�Y�NZq�'l[�(l\�2=)l*lr�s�+l,l-lt�5|u�a�&lW�>;X�Y�NZZ�'l[�(l\�2=)l*l]�^�+l,l-l_�`�a�vkD�j�F�G�1|I�zkwkN�ykxkl�J�2|{k1<3|}k|khIm�!lP�Y74|~k"lQ�#lD5Afy>$ln�n8S�T�U�%lV�o�vkD�E�F�G�H�I�zkwkN�ykxkJ�K�L�{k1<M�}k|khIO�!lP�Y7~k"lQ�#lD5Afy>$lR�n8S�T�U�%lV�f�EKZ1b0%Fe�9�ikd�:�hkf�fFmk;�bklknk,8jkV9g�U<=�h�okXMrkuksk5Ii�A�pkB�`6C�tkEKZ1b0%F8�9�ik?�:�hkfFmk;�bklknk,8jkV9<�U<=�>�okXMrkuksk5I@�A�pkB�`6C�tk[k%�Yk&�LC'�(�)�A@R4Zk[?*|*�JN+�,�-�@Oa�\kgk5D/�fk+|ckkkdk`k|D_k]k1�!Mp;2�ak^k,|4�-|ekt=A8b�zB7�[k%�Yk&�LC'�(�)�A@R4Zk[?*�JN+�,�-�@O.�\kgk5D/�fk0�ckkkdk`k|D_k]k1�!Mp;2�ak^k3�4�5�ekt=A86�zB7�o�Pkp�QkOkq�X8@Mr�o;'Gs�^�Tku�@@BCv�w�6Mx�Wkl8y�?@SkXkm8UkVk)|Rk{�b@IF]�}�/C]2~�!�_�pH#�C5`�4Do�Pkp�QkOkq�X8@Mr�o;'Gs�t�Tku�@@BCv�w�6Mx�Wkl8y�?@SkXkm8UkVkz�Rk{�b@IF|�}�/C]2~�!�"�pH#�C5$�4DW�FkX�Z�Ik#|Jk[�[�$|>:BBHk^�[>>I_�`�\�Gkb�%|l;S1&|NkX7e�n;f�m;MOMkLk'AM5CO:3\>'|h�i�(|k�l�Kkm�n�W�FkX�Y�IkZ�Jk[�\�]�>:BBHk^�[>>I_�`�a�Gkb�c�l;S1d�NkX7e�n;f�m;MOMkLk'AM5CO:3\>g�h�i�j�k�l�Kkm�n�@8{D>kC�D�E�W7V?Ak$FF�@kT�}{17U�~{?kwB-5BkCkK�Y>L�W�!|m7N�DkO�,KP�Q�_@R�v5uLJAX�Ek"|G?pCZ>U�Y�@8{D>kC�D�E�W7V?Ak$FF�@kG�H�17I�J�?kwB-5BkCkK�Y>L�M�m7N�DkO�,KP�Q�_@R�v5uLJAS�EkT�G?pCZ>U�V�7kQ3z{5�K�7�L�8k9k:kr2{{(?;k:�M�<�O�P�<k|{=k@�Q�R�7kQ34�5�6�7�8�8k9k:kr29�(?;k:�;�<�=�>�<k?�=k@�A�B�E�WM)k$JFG*kF�+k+8%�,5G�,kx{(�k;AG-kP3)�*�H�,�.k-�0kwM/kF?1k2kI�3kQ4/�0�1�J�4k3�5k6kWM)k$JFG*k$�+k+8%�,5&�,k'�(�k;AG-kP3)�*�+�,�.k-�0kwM/kF?1k2k.�3kQ4/�0�1�2�4k3�5k6kw{vj?�qjwj@�n�A�{j7pp�q�(2r�s�t�u�~j_6}jv�D�x�"k!k$ky�#kz�%k{�1=|�&k}�'k~�!�"�#�(k>@k�vjl�qjwjm�n�o�{j7pp�q�(2r�s�t�u�~j_6}jv�w�x�"k!k$ky�#kz�%k{�1=|�&k}�'k~�!�"�#�(k>@;�hjmjV�#JojnjW�X�Y�l3+KpjZ�[�p{q{r{n{|jrj`�sja�s{c�tjujt{e�u{g�yj=�zjv{i�xjj�U�hjmjV�#JojnjW�X�Y�l3+KpjZ�[�\�]�^�_�|jrj`�sja�b�c�tjujd�e�f�g�yjzjh�i�xjj�2�[:vNajbjuAj{F�G�H�k{"N5�3�6�cj5Mdjej7�dJfjN�@:#NO�kjP�8�9�ljX>jjm{T�gMgjij=@~?D�[:vNajbjuAE�F�G�H�I�"NJ�K�L�cj5MdjejM�dJfjN�@:#NO�kjP�Q�R�ljX>jjS�T�gMgjij=@~?8�OjVj67^B\jXj5BWjh{Zj:�;�<�Qj=�.�[j]j?�i{oHYj^j`jS8TjA0A�/�0�1�_j8�OjVj67^B\jXj5BWj9�Zj:�;�<�Qj=�>�[j]j?�@�oHYj^j`jS8TjA0A�B�C�_jl7#�Ij$�Hj%�0=&�'�%�)�T9'^*�+�JjQ=,�-�93&�Kj/�R10�W>Lj'�2�U9Mja0(�=I+�Nj-�j?5�UjRjoC6�7�SjPj^6l7#�Ij$�Hj%�0=&�'�(�)�T9'^*�+�JjQ=,�-�93.�Kj/�R10�W>Lj1�2�U9Mja03�=I4�Njj?5�UjRjoC6�7�SjPj^6z�{�$jc{k�d{|�8j<j7je{>jp�}�f{@j?js�o�t�u�v�w�g{BjAjZiFj~�z�!�|�Cj"�~�DjEj!�Gj#�h�i�$jj�d�k�l�m�8j<j7jn�>jp�q�r�@j?js�o�t�u�v�w�x�BjAjZiFjy�z�{�|�Cj}�~�DjEj!�Gj"�+jo�/j2j1jS�T�U�)jp�,j=jW�a{Y�Z�[�r�6j]�t�_�u�v�w�x�b{y�4jc�5jd�q�:j;je�*3f�B59jg�+jR�/j2j1jS�T�U�)jV�,j=jW�X�Y�Z�[�\�6j]�^�_�`�a�b�4jc�5jd�:j;je�*3f�B59jg�'j8�9�:�;�[{\{g�h�@�;MA�i�C�D�E�F�G�&jj�%jI�f�.j]{^{M�(jN�0j_{fM3j*jm�Q�'j8�9�:�;�<�=�>�?�@�;MA�B�C�D�E�F�G�&jH�%jI�J�.jK�L�M�(jN�0jO�fM3j*jP�Q�\�]�-�f@9Oxi.�yi^�!j*?{i_�~i0�viui1�"j`�a�\2|i#j}i4�Z{b�zi3Dwi7�c�hG+�,�-�f@9Oxi.�yi!j*?{i/�~i0�viui1�"j2�3�\2|i#j}i4�5�6�zi3Dwi7�hGfi*Kgiq�P�diQ�eijimiY{kiR�v�S�iiciT�y�XCU�ti*L{�V�W�X�ri!�si"�#�Y�%�nipi&�Z�qi(�)�[�oifi*Kgiq�r�dis�eijimit�kiu�v�w�iicix�y�XCz�ti*L{�|�}�~�ri!�si"�#�$�%�nipi&�'�qi(�)�*�oi_�H�I�Vib�WiX<YiACV7B3J�d�\iK�L�?3g�aih�]i`ii�M�:Hk�N�l�^i_iHIZHbi}BliV{hiW{X{k2_�`�a�Vib�WiX<YiACV7B3c�d�\ie�f�?3g�aih�]i`ii�j�:Hk�l�^i_iHIZHbi}Blin�hio�p�k2>�m�?�c2RiSi@�A�Ni=;N�T{P�B�C�R�OiBGS�T�D�PiQi[iV�UiXiF�G�Y�Z�Ti[�U{]�^�m�c2RiSiL�M�Ni=;N�O�P�Q�R�OiBGS�T�U�PiQi[iV�UiXiW�X�Y�Z�Ti[�\�]�^�7�h/7�8�HiW8T59�9�Ji]Q:�M{=�>�u5N{:N?�s6Ki@�A�P{C�D�LiE�nCR{;�MiS{I�<�zF=�:06�f�7�8�HiW8T59�:�Ji]Q;�<�=�>�u5:N?�s6Ki@�A�B�C�D�LiE�nCF�G�MiH�I�J�zFK�:0-�"iF{G{CiIA>i@i%�&�H{.�D{?i1]"]J{+�Ei,�/�0�Di1�2�K{vM<bFi1�L{4�3�5�5�Gi"�"i#�$�CiIA>i@i%�&�'�(�)�?i1]"]*�+�Ei,�-�.�Di/�0�vM<bFi1�2�3�4�5�GiNOo�%�4i&�A{uMB{6i8i9i'�(�v�<i:i)�x�*�#F;i+�z�MH.iC{|�,�s==iBitA~�AiE{NOo�p�4iq�r�uMs�6i8i9iu�v�<i:iw�x�#F;iy�z�MH.i{�|�}�s==iBitA~�Ai!�%iy�vGY�z�/i'i[�)i\�={>{3i(i{�,ir1`�eF-i0i|�}�c�?{&ie�&Af�*i';E?07tL;{yLr=@{g�h�#�j�7i5i$�l�m�n�%iX�vGY�Z�/i'i[�)i\�]�^�3i(i_�,ir1`�eF-i0ia�b�c�d�&ie�&Af�*i';E?07tLt�yLr=a�g�h�i�j�7i5ik�l�m�n�{h!iYHA�~hV>I<#i>6k�C�p�E�q�$iG�yI}h8{VhI�J�r�L�M�s�t�|h9{OO"FsI+il�1iS�<{v�w�2ix�{h!iYHA�~hV>I<#i>6B�C�D�E�F�$iG�yI}hH�VhI�J�K�L�M�N�O�|hP�OO"FsIQ�+iR�1iS�T�U�V�2iW�C<-�.�Qh/�e�1�2�NJ"Lyhxhthuh61f�3�5{whqh5�6{g�h�UD9�:�i�vh~07{4{=�j�"B?�CJo�@�C<-�.�Qh/�0�1�2�NJ"Lyhxhthuh613�4�whqh5�6�7�8�UD9�:�;�vh~0<�)�=�>�"B?�CJ@�1{mh2{_Cnhz�{�VMch83|�ihZ�[�lh,L\�ohhhkhU�^�_�)K!O`�a�b�'�sh(�c�+�zhd�rhx�mhy�_Cnhz�{�VMch83|�ih}�lh,L~�ohhhkh!�"�#�)K!O$�%�&�'�sh(�*�+�zh,�rhS�\hWh,{U>/=j�k�,<l�V�XLGI-{ghphW�o�p�q�Zh.{s�w3/{x>eh0{jhsAv�X�fhh�\hWhi�U>/=j�k�,<l�XLGIm�ghphn�o�p�q�Zhr�s�w3t�x>ehu�jhsAv�w�fhO�^hP�({UMG�S�*NH�I�J�W�xCX�K�L�k3M�){\�rIdh!F]�O�10_�]h`�YhrASh[h`h*{,G+{c�*0P�XhQ�ahxIR�g�O�^hP�Q�UMR�S�*NT�U�V�W�xCX�Y�Z�k3[�\�rIdh!F]�^�10_�]h`�YhrASh[h`ha�,Gb�c�*0d�Xhe�ahxIf�g�${Dh:F%{Ih&{Fh(KLh`0A�B�@hC�E�K�NhMhkGTh_hM�~3bhPhF�UhnME�Dh:FF�IhG�Fh(KLh`0H�I�@hJ�K�NhMhkGTh_hM�~3bhPhN�UhnM|zGh{?}z;�F5]6Bh~z<�!{[2=�T>EhZ:>�QEJh"{?�?�nJ#{AhZ2V8)IKh?hHhB�@�RhD�Ch6�Gh{?7�8�F5]6Bh9�:�;�[2<�T>EhZ:=�QEJh?�nJ@�AhZ2V8)IKh?hA�HhB�C�RhD�Ch#�$�%�.hvz6h=h7h6�5hwzvg7�8�3hxz,�/h9�.�:�P41h<h2h0�yz>hzz0h|G3�L�iM9hOh4�{z#�$�%�.h&�6h=h7h'�5h(�vg)�*�3h+�,�/h-�.�/�P41h<h2h0�1�>h2�0h|G3�L�iM9hOh4�5�&hs�qz0�)hrzpAU7w�x�A1(hszS9>�+�tz{�1�qAmzJ�}�:h;hY2~�.28huz3�&hs�t�u�)hv�pAU7w�x�A1(hy�S9>�c�z�{�|�qA_�}�:h;hY2~�.28h!�"�kzlzPLwgX2}3{g(�)�}ga�b�*�T7#h,h-h,�+0-�f�g�h�nz4hq0+hj�ozl�*h.�%h$hn�"h!hcCo�{B'hpz/�r�]�^�PLwgX2}3{g_�`�}ga�b�T7#h,h-hd�+0e�f�g�h�i�4hq0+hj�k�l�*hm�%h$hn�"h!hcCo�{B'hp�q�r�#4gzO�q1rgjN]BhzDI~gQ�W2|gzgqgR�og%�pgT�c<l6wC&�V�QFW�X�Q1tgsgY�'�ygugxgizjz#4N�O�q1rgjN]BP�DI~gQ�W2|gzgqgR�ogS�pgT�c<l6wCU�V�QFW�X�Q1tgsgY�Z�ygugxg[�\�/�0�z�2�3�4�{�r0ig^z7�jg|�8�9�:�gI;�<�G<lg=�_z`zaz)320}�~�bzD�kgngNGczD?F�V2!�'K"�dz]7\6#�mg$�j2ezfz/�0�1�2�3�4�5�r0ig6�7�jg8�9�:�gI;�<�G<lg=�>�?�@�)320A�B�C�D�kgngNGE�D?F�V2G�'KH�I�]7\6J�mgK�j2L�M�Yg{�|�i�g�zDh�k�"�m�$�%�o�[gZg]gq�\g^g[z`gr�_gO4)�agbgcg*�1:INeg'?\zp1fgggv�,�x�hgy�Yg{�|�}�~�zD!�"�#�$�%�[gZg]g&�\g^g'�`g(�_gO4)�agbgcg*�1:INeg'?+�p1fggg,�-�hg.�m�MgNgn�^�OgPg=6*ZQge@RgK<o�Sg0Pp�q�Tg^J\4`�s�$AX=t�qI.=a�b�w�UgR9VgLHdgd�Xge�IBuG?8Wg%Az�f�m�MgNgn�OgPg=6*ZQge@RgK<o�Sg0Pp�q�Tg^J\4r�s�$AX=t�qI.=u�v�w�UgR9VgLHdgx�Xgy�IBuG?8Wg%Az�=gR�>gS�W�22Eg@gUzU�AgY�VzBg!B[�T�WzDgCgFgU�^�_�GgHg`�C?W�i2IgWN+<b�Y�-=d�e�f�j;WCg�h�i�j�JgKg11[�Lg\�=g>gV�W�22Eg@gX�U�AgY�Z�Bg!B[�\�DgCgFg]�^�_�GgHg`�C?a�i2IgWN+<b�c�-=d�e�f�j;WCg�h�i�j�JgKg11k�Lgl�/gK�0g,gM�N�I�-g.gJ�K�Q9F�6g2gL�P�fIN�lK(IO�1gP�4g3gDK7gQ�8gQ�7AS�9g;g?gTz<g:g?G/gE�0g,gG�H�I�-g.gJ�K�Q9F�6g2gL�M�fIN�lK(IO�1gP�4g3gDK7gQ�8gR�7AS�9g;g?gT�<g:g?G7�"g8�Oz~f:�U?eI%g;�$gP9SO<�5gPz>�)g*gQzRzI�p<Sz(gC�x9'g+gD�2D"J#A\B7�"g8�9�~f:�U?eI%g;�$gP9SO<�5g=�>�)g*g?�@�A�p<B�(gC�x9'g+gD�2D"J#A\Bi;(�<6H@FO.LwfT@)�;�@�+�NzS5zf-�A�/�|fC�D�{fE�}f3�&C>G?�1D5�6�G�#gi;(�<6H@FO.LwfT@)�*�+�,�S5zf-�.�/�|f0�1�{f2�}f3�&C>G4�1D5�6�#g_0tf6�@Ct�JzXGu�[Bv�w�x�7�vfKz8�rfufpfsf&KLzU8}0qf9�}�~�xf!�yf"�Mz9F<�$�;6%�&�=�&g=G'�_0tf@Ct�XGu�[Bv�w�x�y�vfz�{�rfufpfsf&K|�U8}0qf}�~�xf!�yf"�#�9F$�;6%�&�&g=G'�j�gfifhf%Hk�yF>O)Hl�kfS>*I0�lfjf1�N4n�T8h;2�nHo�3�*8CKq�ofmfN9O9i0h:4�s�YGj�gfifhf%Hk�yF>O)Hl�kfS>*Ilfjfm�N4n�T8h;nHo�p�*8CKq�ofmfN9O9i0h:r�s�YGb�+�c�YfXfZf;@[f\f9J]fd�oA^fe�,�_fg�~Nbf-�af`f0D.�cf&?df/�ef8Offb�c�YfXfZf;@[f\f9J]fd�oA^fe�f�_fg�~Nbfh�af`f0Di�cf&?dfef8OffTM7O"�M9NfT<MfH�$�#�Of)<K�%�M�QB&�PfO�EzL9'�WLQfRfSfR�S�T�U�Tf(�FzUf)�Y�*�*<[�GzmLHz^�_�WfIz?Ca�VfTM7OM9NfT<MfH�I�J�Of)<K�L�M�QBN�PfO�P�L9Q�WLQfRfSfR�S�T�U�TfV�W�UfX�Y�Z�*<[�\�mL]�^�_�Wf`�?Ca�Vf6�'2z�BfCf8�DfbM>z{�,=FfEf?z@zi?Gf|�}�Hf?�Ife4AzBz~�M4!�JfKfCz]KcME�F�G�6�'27�BfCf8�DfbM9�:�,=FfEf;�<�i?Gf=�>�Hf?�Ife4@�A�B�M4C�JfKfD�]KcME�F�G�%�0f2feM1f4f3fSM&�5f'�~H(�s�;z6fv�<z9fw�8f7f/�:f270�"AA51�x�>f;f<f3�?f@f=f4�)1=z%�0f2feM1f4f3fSM&�5f'�~H(�)�*�6f+�,�9f-�8f7f.�/�:f270�"AA51�2�>f;f<f3�?f@f=f4�)15�e�f�!f9z"f#f$fg�%f&fj�u�(f'f)fv�w�x�*f+fl�m�n�|�}�.f,f-fa:S7o�VC3H!�p=MGmH/fmXp�q�$�p�q�!fr�"f#f$fs�%f&ft�u�(f'f)fv�w�x�*f+fy�z�{�|�}�.f,f-fa:S7~�VC3H!�p=MGmH/fmX"�#�$�L4}e~ec�b�m�d�o�L4}e~el�k�m�n�o�`�<;me[�\�rese7zte8zze;Eve^�uewexef�ye_�`�{e|ei�j�`�<;mea�b�resec�ted�ze;Evee�uewexef�yeg�h�{e|ei�j�KH^eO�W�Ye4z!AR7+=R�S�5z%?6AdeU�fegeceeeV�6zX�Y�Zebejeie~~zK[�\�+7X�Y�^�helekeoeZ�qeKH^eO�P�YeQ�!AR7+=R�S�T�%?6AdeU�fegeceeeV�W�X�Y�ZebejeieZ�zK[�\�+7]�^�helekeoe_�qe3�o1lFOe0zVePeWeQ�1zSe2zR�{GD�S�J<UeT�ReXeQeD=U�/z%KV�J�L=K�Te`eL�\eM�_e]eae[eAeS@N�3�o1lFOe?�VePeWe@�A�SeB�C�{GD�E�J<UeF�ReXeQeD=G�H�%KI�J�L=K�Te`eL�\eM�_e]eae[eAeS@N�H�*z*�+�,�-�>e[6lH+z/�0�mAPNo=ne,zI�HeJ�~@DeIeKeyDNe4�-zJe5�K�TJK47�8�KL9�^0L�Me}N;�<�M�>�Le)�*�+�,�-�>e[6lH.�/�0�mAPNo=ne]�1�He2�~@DeIeKeyDNe4�Je5�6�TJK47�8�KL9�^0:�Me}N;�<�=�>�Ler�s�&zu�>�?�5e'z@�z�7e{�4e|�A�Q73B9enAC�!�Fe(zBe<e)zD�E�@ez<]0;eCeGeK9VL%�VD=eF�G�Ee(�:e>C?e=0JLr�s�t�u�v�w�5ex�y�z�7e{�4e|�}�Q73B9enA~�!�Fe\�Be<e"�#�$�@ez<]0;eCeGeK9VL%�VD=e&�'�Ee(�:e>C?e=0JL2�!z*=>8HA%e+e3�"z&eP7b�.e2ek7c�#z-ee�7�8�6e$zi�J9mM<03ej�k5k�0e9�1e:�}E/e,e(3d@n�(8%zp�8e<�^�_�*=>8HA%e+e`�a�&eP7b�.e2ek7c�d�-ee�f�g�6eh�i�J9mM<03ej�k5k�0el�1em�}E/e,e(3d@n�(8o�p�8eq�*5!e)�sLH9~dyyzy*�$efL<GO�3IP�,�{yc=#eS�S<I9f;i56J"e|y-�GABKw:}yW�X�g;]DY�'e_NY:~y(eB?*eR>0:[�0�1�)e*5!eK�sLH9~dL�M�N�$efL<GO�3IP�Q�R�c=#eS�S<I9f;i56J"eT�U�GABKw:V�W�X�g;]DY�'e_NY:Z�(eB?*eR>0:[�\�]�)eqdsd|�rd;�~�=�R8!�8A?�ud@�A�vy|E#�tdwyE�vdxy5JlAG9wd%�HNH�&�ydzd{d(�|de;}dO7j5qdsd:�rd;�<�=�R8>�8A?�ud@�A�B�|EC�tdD�E�vdF�5JlAG9wdG�HNH�I�ydzd{dJ�|de;}dO7j5N6)7cd,�-�4Jh?0Lrydd3NsytGFA4GM=0�@0tyidgded!4v�Q>jdhdfdnd3�mdldkdx�y�od6�7�uypd:@z�N6)7cd,�-�4Jh?0L.�dd3N/�tGFA4GM=0�@01�idgded!42�Q>jdhdfdnd3�mdldkd4�5�od6�7�8�pd:@9�ZdWdi�s�j�VdR@Yd[dk�w�x�Xdu�_dl�\doyz�{�|�}�m�]dFdn�"�^d`d#�o�adpyp�q�r�(�FJbdqy*�+�bLZdWds�t�VdR@Yd[dv�w�x�Xdu�_d\dy�z�{�|�}�~�]dFd!�"�^d`d#�$�ad%�&�'�(�FJbd)�*�+�bLGdgy]�d�_�`�Hda�e�c�Mdf�g�BdURIdCdLdf�g�iyRdjyJ4Odi�h�Pdk�QdTdl�hykyo�lySdvHq�r�Ud|NmJGd\�]�^�_�`�Hda�b�c�Mdd�e�BdURIdCdLdf�g�Rdh�J4Odi�j�Pdk�QdTdl�m�n�o�p�SdvHq�r�Ud|NmJa@;dH�OH[�?dSJJ�[C\�:d<d=d_�`�eyfya�Q�@dD<FFEdDdR�Adb�6Oc�T�JdU�V�NdKdW�X�Y�Z�[�a@;dH�OHI�?dSJJ�[CK�:d<d=dL�M�N�O�P�Q�@dD<FFEdDdR�AdS�6OT�JdU�V�NdKdW�X�Y�Z�[�4�OJU25�5d2d6�7dT�U�6dsG'L9�;;0d9d4dV�3d/dcy1d<�I4=�=C>�}@X�@�"HA�>dY�C�$HD�E�Z�G�4�OJU25�5d2d6�7d7�8�6dsG'L9�;;0d9d4d:�3d/d;�1d<�I4=�=C>�}@?�@�"HA�>dB�C�$HD�E�F�G�%�J�&d.I]y&HyEZ6%d#d^y5H~c^C{EzEL�v:8d_yN�(dO�*dP�.�-d`y.day+d,dbyQ�)d'd3�M�!dI�%�&�&d.I'�&HyEZ6%d#d(�5H~c^C{EzE)�v:8d*�+�(d,�*d-�.�-d/�.d0�+d,d1�2�)d'd3�!dsc"dvc?�h5uc$dtcP>Zyt�xcyc+Ezcu�^3v�Z?dIB�|cx�C�z�hB[yD�E�~�F�wc"�{c}c{:\yA�$�sc"dvcs�h5uc$dtcP>t�xcyc+Ezcu�^3v�Z?dIw�|cx�y�z�hB{�|�}�~�!�wc"�{c}c{:#�$�v3bcacd�ec^ce�fc)N8�gcWyhc9�tTjcickclci�5NmcopO>ncocW=8Fpc:�;�k�(CXym�qc<Crcn�<�%6?Q]C3<p�Yyr�H4v3bcacd�ec^ce�fc)Nf�gcg�hch�tTjcickclci�5NmcopO>ncocW=8FpcY�j�k�(Cl�m�qc<Crcn�o�%6?Q]C3<p�q�r�H4R�MF-�`@u:RyU�Xc.�W�/�Y�bCkAZ�Zc\cYc[c[�"7Sy0�]c&71�g5RM_cUy`�`c4�.1Vy5�6�ccR�MFS�`@u:T�U�XcV�W�X�Y�bCkAZ�Zc\cYc[c[�"7\�]�]c&7^�g5RM_c_�`�`ca�.1b�c�ccr9fJNc?�@�TK"�B�Pc#�Q@O1:2,0D�$�Oc%�&�Oy'�(�QcRcw>K�)�Sc*�O3PyUcj7+�f5,�Vcu6WcQ�|@r9fJNc?�@�TKA�B�PcC�Q@O1:2,0D�E�OcF�G�H�I�J�QcRcw>K�L�ScM�O3N�Ucj7O�f5P�Vcu6WcQ�|@)5*�Ly,�Cc-�x�xD/�DcG@y�-Lz�#IEcFcUC{�GN|�HcGc4�5�6�~�o<8�9�Jcp0:�;�Mc!�Ny>�KcT2N7LcF9)5*�+�,�Cc-�.�xD/�DcG@0�-L1�#IEcFcUC2�GN3�HcGc4�5�6�7�o<8�9�Jcp0:�;�Mc<�=�>�KcT2N7LcF9(=d;o�u�p�Ey=cFy)=q�r�y�J2CIHy>cs�kH|�}�IyEA!�Ac"�BciG#�A??caC$�Jy@cKyN>'�(�\0)�(=d;t�u�v�w�=cx�)=y�J2CIz�>c{�kH|�}�~�EA!�Ac"�BciG#�A??caC$�%�@c&�N>'�(�\0)�IcX6=O5A4ca�b�R2wD!Jc�d�g�h�i�Byj�j�5ck�z56cl�l�8cn�9co�)GCy:cm�Dy;c<cn�Y6S2EFIcX6=O5A4ca�b�R2wD!Jc�d�e�f�g�h�i�j�5ck�z56cl�m�8cn�9co�)Gp�:cq�r�;c<cs�Y6S2EF+c77N�5y6y@5'5c;a�R�S�4MT�1cU�0cDA-cb�/cc�:yK=@?.c,c*GM>e�<IZ�[�W:f�xE>y2c^�_�`�3c+c77N�O�P�@5'5c;Q�R�S�4MT�1cU�0cDA-cV�/cW�X�K=@?.c,c*GM>Y�<IZ�[�W:\�xE]�2c^�_�`�3c-yL><�%c=�CA\�'c&c(c?�]�/yA�B�C�_�hbE�F�jb*c)cG�0y^�1y2yJ�(<`�iNL�R<M�6�L><�%c=�CA>�'c&c(c?�@�A�B�C�D�hbE�F�jb*c)cG�T�H�I�J�(<K�iNL�R<M�'<|bwb$�P�&�}bxbQ�R�XHvb)�*�ybS�,�"c.�/�T�U�+yV�!caK3�~bk0,y5�$c7�.yW�X�Y�#cZ�;�'<|bwb$�%�&�}bxb'�(�XHvb)�*�yb+�,�"c.�/�0�1�-�2�!caK3�~bk04�5�$c7�8�9�:�#c;�k8nbvDI�qb73lbp�jH01J�l:ROr�pbL�M�N�s�rbK�KJx�Y@tby�*yub(y|�}�~�sbN3O�{b"�zb#�k8nbvDo�qb73lbp�jH01q�l:ROr�pbt�u�v�s�rbw�KJx�Y@tby�z�ub{�|�}�~�sbN3!�{b"�zb#�!y^�kbE�`�a�"y#y$yc�d�K>e�f�g�h�F�%yG�2NE9&y'8#Hmbobn�]�^�kb_�`�a�b�c�d�K>e�f�g�h�i�j�k�2NE9l�'8#Hmbm�obn�=:>�?�@�fbA�R�S�gb&8U:B�T�ibC�V�W�VEV:N5D�}xY�Z�$KKG[�\�WE\9=:N�O�P�fbQ�R�S�gb&8U:T�ibU�V�W�VEV:N5X�Y�Z�$KKG[�\�WE\9<�^b=�_b>�?�@�`bA�ab7Lbb3�4�|xpLcb5�NC6�jGk67�8�;Cdb:6:�J�P@;�L�<�eb<�^b=�_b>�?�@�`bA�ab7LbbB�C�D�pLcbE�NCF�jGk6G�H�;Cdb:6I�J�P@K�L�M�ebyx,�Sb-�.�RbTbzx0�1�.�Vb/�Ub0�1�MJ5�2�{xV=FN7�8�Wb9�7F:�XbYb]b[b\b;�Zb+�,�Sb-�.�RbTb/�0�1�2�Vb3�Ub4�MJ5�6�V=FN7�8�Wb9�7F:�XbYb]b[b\b;�ZbeCp�q�rxIbs�sxtxv�w�x�y�%�JbMbux{�vx&�g?wxDF!�NbSK"�Kb'�Lb$�%�)�'�(�Qbxx*�+�PbObeCp�q�r�Ibs�t�u�v�w�x�y�JbMbz�{�|�}�g?~�DF!�NbSK"�Kb#�Lb$�%�&�'�(�Qb)�*�PbObZ�J>@b[�?b>b}HnxG4)8]�^�_�`�{�ox|�Fbd�Cb??2Le�BbDbEbf�Ab}�h�i�px~�qxGbHbm�/Dc4n�o�Z�J>@b[�?b>b}H\�G4)8]�^�_�`�a�b�c�Fbd�Cb??2Le�BbDbEbf�Abg�h�i�j�k�l�GbHbm�/Dc4n�o�I�3bVGgx_KN1v�W1L�hx4bix6bjx5bpEP�9@9]7bALQ�8bF4WH9bkx:bx�;by�\LU�lxUL>DW�jAX�=bmxb=I�3bVGJ�_KN1K�W1L�M�4bN�6bO�5bpEP�9@9]7bALQ�8bF4WH9bR�:bS�;bT�\LU�V�UL>DW�jAX�=bY�b=%b`x&b*E6�'3D9'b(b7�8�)b);+bn�*b,b-baxo�bxcx=�q�p�?�@�A�B�dxr�s�exG�iHt�.b/bfxis0b1b2bH�.;%b5�Q�&b*E6�'3D9'b(b7�8�)b);+b9�*b,b-b:�;�<�R�=�>�?�@�A�B�C�D�E�F�G�iH.b/bis0b1b2bH�.;$�h�ENYx'�(�tarasaj�#�Zxb4~Lk�JJva,�ua-�waxa[x\x|ayaza{a}a]xm�^x~a_x!b4�"b#b/HPE$brG4I$�%�EN&�'�(�tarasa)�#�*�b4~L+�JJva,�ua-�waxa.�/�|ayaza{a}a0�1�2�~a3�!b4�"b#b/HPE$brG4IPxaaQxX�f�Z�Rxhai�faj�ga[�l�^�SxTxY�Ux_�`�s�Vxiakalamau�nab�}~jac�x�Wxpaz�e�oaXx}�~�!�qad�c�aad�e�f�g�h�hai�faj�gak�l�m�n�o�p�q�r�s�t�iakalamau�nav�w�jax�y�paz�{�oa|�}�~�!�qa"�L�Q�PaRaR�BIM�I>YaT�XaNxN�ZaO�&</:W�wE[aKDX�P�]aQ�R�[�!N\aOxS�iAT�U�`�baV�daeaTCW�ca`a^a_aP�Q�PaRaR�BIS�I>YaT�XaU�V�Za&</:W�wE[aKDX�]aY�Z�[�!N\a\�]�iA^�_�`�baa�daeaTCb�ca`a^a_aC�JaD�EaFaIaHa%IE�BAAAE�?5LxG�KaH�I�LaJ�MaG�OaL�NaV1I�WahHQaM�SaJ�Ua>?N�VaTa@<K�C�JaD�EaFaIaHa%IBAAAE�?5F�G�KaH�I�LaJ�MaK�OaL�NaV1WahHQaM�SaUa>?N�VaTa@<O�8�1�7a<a2�9�:a9aBZ&38a:�Z0;�*H<�JH7�1N=a;a\C&@8�9�+H:�-I?a,NM7@a>aVHAa=�BaJx[0?�>�v>GaDamFCaKx@�?�@�A�B�&50�1�7a<a2�3�:a9aBZ&38a4�Z05�*H6�JH7�1N=a;a\C&@8�9�+H:�-I?a,NM7@a>aVHAaBa;�[0<�v>GaDamFCa=�>�?�@�A�B�&5Gx,a+a-a~�.a0a/ay9!�2a1a"�HxE4S?<E3a8@1�%�:;2�y14a'�QM(�3�cJ5aIxDE3MC9=?+�KC4R,�.Dh26a6�7�/�P�,a+a-a~�.a0a/ay9!�2a1a"�#�E4S?<E3a8@$�%�:;&�y14a'�QM(�)�cJ5a*�DE3MC9=?+�KC4R,�.Dh26a-�.�/�CxDx{`l�|`m�n�}`)�*�Exq�;1+�s�!a;I"at�$4#au�$av�-�%a,�'a(a&ay�SI*a)a/�{�|�Fxj�k�{`l�|`m�n�}`o�p�q�;1r�s�!a;I"at�$4#au�$av�w�%ax�'a(a&ay�SI*a)az�{�|�}�K�x�~My�6x7xz�8xx`Q�=xS�|�}�9x~�W�:xy`;x!�"�e`<x#�>xz`?x@x$�%�b�c�D4d�e�Ax&�(�'�%<BxK�L�~MM�N�O�P�x`Q�R�S�T�U�V�W�X�y`Y�Z�[�e`\�]�z`^�_�`�a�b�c�D4d�e�f�g�h�%<i�r�p`s�.x/x0x1xt�>�u�q�l`2xo`j8M1q`v�p?n`\N3xt`$tC�D�E�r`u`4x5xH�g`s`w�J�<:v`w`7�p`8�9�:�;�<�=�>�?�l`@�o`j8M1q`A�p?n`\NB�t`$tC�D�E�r`u`F�G�H�g`s`I�J�<:v`w`"�m�e5$�f`}M!x0N"x'�k�#x$xvBn�h`&x'x(x)x*x1�+x,x-xo�j`VNW6|HJGp�k`m`"�#�e5$�f`}M%�0N&�'�(�)�vB*�h`+�,�-�.�/�0�1�2�3�4�5�j`VNW6|HJG6�k`m`a`Q2f�i�]`yw9;g�l�AD_`zwo�{w|wr�d`n<h�}wb`u�i�~w>7IHc`~`x�z�i`j�l�}�~�=8!�a`Q2h�i�]`j�9;k�l�AD_`m�n�o�p�q�r�d`n<s�t�b`u�v�w�>7IHc`~`x�y�z�i`{�|�}�~�=8!�M�X�O�<8Y�Q�(NL6Z�&2R�S�T�[�swj6V�\�]�^�twuwvw_�ww`�a4_�xwa�hN^`a�b�c�``d�e�M�N�O�<8P�Q�(NL6&2R�S�T�U�j6V�W�X�Y�Z�[�\�]�^�a4_�`�a�hN^`b�c�d�``e�f�g�8�v9b;9�R`S`pwO�<�U`=�>�?�@�A�C=qwC�W`D�V`Q�R�T�U�X`V�M3Z`W�Y`K�\`[`rw8�v9b;9�R`S`:�;�<�U`=�>�?�@�A�C=B�C�W`D�V`E�F�G�H�X`I�M3Z`J�Y`K�\`[`L�"�#�$�E�I`&�'�F�)�K`H`G�H�TLJ`L`,�DN-�P`mwnwO`vC-GK�%8N`L�3�M�M`4�1M2MJ�5�6�N�Q`n1"�#�$�%�I`&�'�(�)�K`H`*�+�TLJ`L`,�DN-�.�P`/�0�O`vC-G1�%8N`2�3�M`4�1M2M5�6�7�Q`n1jw>�86=`?`>`s�t�@�@`Q8A`v�w�i6x�@A}9y�C`D`B`z�m<HF96C�|�F`,CE`D�kw5ObG!�r�86=`?`>`s�t�u�@`Q8A`v�w�i6x�@A}9y�C`D`B`z�m<HF96{�|�F`,CE`}�~�5ObG!�T:5`4`f�6`g�gw8�7`j�8`hw>59`:`l�$8:�;�HH<�=�<`p�u>;`iwT:5`4`f�6`g�h�i�7`j�8`k�>59`:`l�$8m�n�HHo�<`p�u>;`q�.`M�/�O�P�/`RJGH0`WGQ�R�S�-D0�dwew1�1`g2W�m5X�FLY�6LZ�424O2�RK\�*J]�4�5�`�7@2`a�6�CFc�d�#83`7�.`M�N�O�P�/`RJGH0`WGQ�R�S�-DT�U�V�1`g2W�m5X�FLY�6LZ�424O[�RK\�*J]�^�_�`�7@2`a�b�CFc�d�#83`e�bwzG'�@�A�#`$`B�cwC�D�%`E�F�G�&`^D*�(`'`I�)`*`+�_<cI,�-�lL+`,`VA$<-`>�zG?�@�A�#`$`B�C�D�%`E�F�G�&`^DH�(`'`I�)`*`J�_<cIK�L�lL+`,`VA$<-`2�^w3G`wuEw_#�6�y_UNv_$�x_m18�s_%�:�&�[Sz_gA8;|_{_$?YR}_<�!`n_~_aw"`2�3�3G4�uEw_5�6�y_UNv_7�x_m18�s_9�:�;�[Sz_gA8;|_{_$?YR}_<�!`n_~_=�"`y�o_[w\wg_'7&�m_]wPMp_x�&t(�z�O={�|�q_r_}�~�-�.G.�!�t__wu_1�#�o_$�%�g_'7&�m_'�PMp_&t(�)�O=*�+�q_r_,�-�.G.�/�t_0�u_1�r�s�RwSw{Nt�w�j_y@s�TwVwu�f_k_z�l1{�Wwv�Xwi_aGe_h_H>YwQHl_Q<"�z@r�s�t�u�{Nv�w�j_y@x�y�f_k_z�l1{�|�}�~�i_aGe_h_H>!�QHl_Q<"�z@j�k�d�l�m�n�a_g�o�Lwk1d_2Jc_NwOw5LG>Mwm�Pwq�Qwr�3Aq�F>b�c�d�e�f�a_g�h�i�k1d_2Jc_j�k�5LG>l�m�n�o�p�3Aq�F>uNf�^_(1g�h�Iw\�]�Jw`_i�__]_Kwe�X_#Ka�b_uNX�^_(1Y�Z�[�\�]�^�`__�__]_`�X_#Ka�b_\�Ew]�'Of?j1V_L�^�N�_�P�U_Q�b�FwGwY_:C\_W_T�c�[_V�HwZ_@EY0`�I�J�K�'Of?j1V_L�M�N�O�P�U_Q�R�S�Y_:C\_W_T�U�[_V�W�Z_@EY0.�Q�8�R�9�:�?wS�u^BwS_U�>�gF@wAwT_CwV�W�P2X�Y�tE%3DwZ�d5^<R:[�7�8�9�:�;�<�u^A�S_=�>�gF?�@�T_B�C�P2D�E�tE%3F�G�d5^<R:H�I�G_<w=wJ�C_K�D_.�H_F_NI/�N_K_J_M_TFO_0�L�uCmB>w%@2�P_R_3�4�N�O�P�Q_*�G_+�,�-�C_D_.�H_F_NI/�N_K_J_M_TFO_0�1�uCmBM�%@2�P_R_3�4�5�6�Q_c7yB2_;G{�9_7wB�C�8w>_<_?_D�B_E�;_j9(G9^#�F�tM=_A_uB:w@_+_;wio9wE_H�)�I_c7yB2_;G{�9_|�}�~�>_<_?_!�B_"�;_j9(G9^#�$�tM=_A_uB%�@_+_&�io'�E_(�)�I_(_'_-_c�!@$_d�/wf�0w1w0_:�1_j�k�2w;�B48�n�=�3w6_5_7_>�r�4wt�:_u�?�w�CE4_A�5w8_6w<�(_'_-_c�!@$_d�e�f�g�h�0_i�1_j�k�l�m�B4n�o�p�6_5_7_q�r�s�t�:_u�v�w�CE4_x�y�8_z�s^C4T�)w3�W�i74�/_*w5�*_x@[�+wc36�,w-wa=3_7�`�,_,D)_YDL_&_%_._9�.ws^C4T�U�V�W�i7X�/_Y�Z�*_x@[�\�c3]�^�a=3__�`�,_,D)_YDL_&_%_._a�b�y5:IA�?<B�w9,�-�E�3O#wt^"_i1fAF�.�$wI�yGA4zN/�J�K�&w!LRDS�'wN�{^}^(w(�0�2AQ�1�!_y^y5:IA�?<B�w9C�D�E�3Ot^"_i1fAF�G�H�I�yGA4zNJ�K�L�!LRDS�M�N�{^}^O�P�2AQ�R�!_y^2�~vq^%�k^GL!w6�f^&�"<~^8�"w:�j3h^m^n^'�lBZB)�v^<�=�|^z^)E#_w^*�+�@�x^`^2�3�q^4�k^GL5�6�f^7�"<~^8�9�:�j3h^m^n^lBZB;�v^<�=�|^z^)E#_w^>�?�@�x^`^~Kc^.H'�o^;8!�`=e^)�/NB9r^*�n0p^"�d^|v,�-�j^}vl^/�#�OMg^.E0�i^$�~Kc^.H'�o^;8(�`=e^)�/NB9r^*�n0p^+�d^,�-�j^.�l^/�OMg^.E0�i^1�\^yvr�t�u�+Lv�w�Z^^^x�y�x�z�{�P8|�E>9Czv}�{vT^!�}�/M#�W^P^rES^$�Y^%�&�QO><\^q�r�s�t�+Lu�Z^^^v�w�x�y�z�P8{�E>9C|�}�~�T^!�"�/M#�W^P^rES^$�Y^%�&�QO><g�h�6@i3Q:D>=^B=L7<^]�R^m=:8a^n�[^t5OEo�V^_^/021p�92X^,BO^Q^A9r�xvm�b^]^o�s�U^g�h�6@i3Q:D>=^B=L7<^R^m=:8a^i�[^t5OEj�V^_^/021k�92X^,BO^Q^A9l�m�b^n�]^o�p�U^dMd�qvH^B^?^f�W�TNE^g�h�i�J=G^L^rvqEJ^svtvuvD^j�^�8C_�K^`�@^F^k�M^|0C^N^b�c�<?_=d�%Jl�.:;^I^:EvvdMU�H^B^?^V�W�TNE^X�Y�J=G^L^Z�qEJ^[�\�D^]�^�8C_�K^`�@^F^a�M^|0C^N^b�c�<?L�_=d�%Je�.:K�;^I^:Ef�V�W�jv:^kvC>lvX�0MY�7^Z�I�2^mv8^L�[�^NsEBFnva�ovb�63U1c�>^Q�A^R�CNS�pvF�:^G�C>0M7^H�I�2^J�8^K�L�M�^NsEBFN�O�63U1P�>^Q�A^R�CNS�T�.Nt>u@=�gv6^4^R�MIS�?�T�@�1^3^hv:1B�@92O=3bIU�aM$3;?5^E�.Nt>u@=�6^4^MI>�?�@�1^3^A�:1B�@92O=3bIC�D�aM$3;?5^E�J�av,�K�NM0^bv/�0�/^1�v@,^2�lM6F&^L�EDM�N�5�L1?9)^cvP�dv'=.^e�-^(^+^evh3Q�*^IGfv+�,�-�NM0^.�/�0�/^1�v@,^2�lM6F&^ED3�4�5�L1?9)^7�8�9�'=.^-^(^+^:�h3;�*^IG<�76@�u]z][vt@qGgHx�y�A�{�|�w]\v!KC�y]$^D�"^E�{]]v"KHGc5%E$�mCF�%^^vG�H�_v#^YBv])�K1*�Zv76v�u]z]w�t@qGgHx�y�z�{�|�w]}�!K~�y]$^!�"^"�{]#�"KHGc5%E$�mC%�%^&�'�(�#^YBv])�K1*�n]k]`M9�VvWvk�@D:�YFl]t]s]#7<�=�-2>�Xv;:m]o]Yvr�WKtBSvwK?�|]s�}]t�O2u�(J}L!^#<B>x]~]h1n]k]`Mi�j�k�@Dl�YFl]t]s]#7m�n�-2o�p�;:m]o]q�r�WKtBwK|]s�}]t�O2u�(J}L!^#<B>x]~]h1uDA=a5X�Y�6�FH[�.<\�]�h]@4Qvx17�RvrFg]>9SCi]O�q]j]a�8�ABb5r]TvUvf�g�h7h�%5p]uDA=a5X�Y�Z�FH[�.<\�]�h]@4^�x1_�`�rFg]>9SCi]6�q]j]a�b�c�ABb5r]d�e�f�g�h7h�%5p].�D�Nva]F�/�G�0�a;Ov1LJ�b]c]$5K�d]L�f]e]M�N�O�P�Q�Pve?1�2�9IJ13�V�EH5�C�D�E�a]F�G�H�a;I�1LJ�b]c]$5K�d]L�f]e]M�N�O�P�Q�R�e?S�T�9IJ1U�V�EHW�LT4�5�#5X]&�'�(�Y]7�lJhKJvGFZ]fHKvLv{H)�SL[]:�;�*�+�]]\],�_]-�^]@�A�MvLT4�5�#5X]6�Y]7�lJhKGFZ]fH8�{H9�SL[]:�;�<�=�]]\]>�_]?�^]@�A�B�H]~�FvJ]I]#�XK^=l<D;K]M]#?$�L]!�N]&�'�(�)�O]*�GvP]Q],�Hv"�R]/�T]S]U]%2JCV]0�1�&;L3W]$�%�BEH]"�J]I]#�XK^=l<D;K]M]#?$�L]%�N]&�'�(�)�O]*�+�P]Q],�-�.�R]/�T]S]U]%2JCV]0�1�&;L3W]2�3�BE=]@v<]>]y�N2s�7C?]t�?4A]Avz�@]B]w�C]BvD]_;5@!:CvpIDvbJDOz�{�{�u;|�P:rN|�EvE]F]}�`;~�!�G]=]q�<]>]r�N2s�7C?]t�?4A]u�v�@]B]w�C]x�D]_;5@!:pIy�bJDOz�{�u;|�P:rN}�E]F]`;~�!�G]]�^�sM0]_�`�a�^\q�r�s�t�3]4]v�<v51=v6]g7!<U6h�$2i�j�>vx�_M?vn�8]7]:]=5o�V6>4p�]�^�sM0]_�`�a�^\b�c�d�3]4]e�f�51g�6]g7!<U6h�$2i�j�k�l�_Mm�n�8]7]:]=5o�V6>4p�j\%]$]d�M�L�N�f�*]&Oe�Q�R�-]{6g�h�)]+]8v9v'H.]k�X�l�m�n�2]/][�o�j\%]$]K�M�L�N�O�*]&OP�Q�R�-]{6S�T�)]+]J�U�V�'H.]W�X�Y�Z�2]/][�\�IC7�[�|\9�:�3v\�z\i8y\^�4v!]>�X[5v6v_�{\`�}\~\7v,]b�(]m[D�E�F�']G�&]#]c�I�J�IC7�8�|\9�:�;�<�z\i8y\=�!]>�X[?�@�A�{\}\~\B�,]C�(]m[D�E�F�']G�&]#]H�I�J�m\,vS�r\v\T�)�66V�-v,�W�.�.vL5t\/v!5KFs\X�u\2�3�0v4�o\1vq\U�Z�`3m\&�'�r\v\(�)�66*�+�,�-�.�/�L5t\0�!5KFs\1�u\2�3�I�4�o\5�q\6�`3r�s�[\t�b\h\uHn\'vK�i\l\f\(vtC8IL�\\M�d\@>z�OLx\k\{�|�"8#2_3S\A�O�P�Q�A>p\"�w\y<r3*v.C+vR�r�s�[\t�b\h\uHn\u�v�i\l\f\w�tC8Ix�\\y�d\@>z�OLx\k\{�|�"8#2_3S\}�~�!�A>p\"�w\y<r3#�.C$�%�<�I\Q\e�"tf�N\=9HDdAL\}uG\=�J\>�i�MMjKO\Y\"vD�k�a\Z\#v$vg\e\E�F�n�`\G�I�%v&v_\PDeAJ�]\I\Q\e�"tf�N\=9HDdAL\G\g�J\h�i�MMjKO\Y\j�k�a\Z\g\e\l�m�n�`\o�p�_\PDeAq�]\yuC\53g:V�]1T\3�1OW\5�6�:?V\U\Z�{u7�R\]�^�|uF\`�8�c\E\X\9�b�:�P\;�K\H\U�C\53g:V�]1T\W�1OW\X�Y�:?V\U\Z�[�\�R\]�^�_�F\`�c\E\X\a�b�c�P\d�K\H\tuC�-�quLME�vI8\JBuu>\?AG�5\B\A\oF@\jFvuwuJ�K�xu.�D\7\/�H6:\]=O�P�0�`G<\K64\6\3\1�S�0OZ39\2�B�C�D�LME�vI8\JBF�>\?AG�5\B\A\oF@\jFH�I�J�K�L�M�D\7\N�H6:\]=O�P�Q�`G<\K64\6\3\R�S�0OZ39\T�POv[&�&\X05�'�x[6�pu:L}["?GDs[8�9�%\:�;�<�z?/\q3!81\z[0\)\{[-\.\?\=�>�NFsu$\@�;\+�=\XDPOv[&\X05�x[6�7�:L}["?GDs[8�9�%\:�;�<�z?/\q3!81\z[0\)\{[-\.\?\=�>�NF?�$\@�;\A�=\XDz�~4{�2\iuILw[}4|�~[}�ju"�@K#�!\#\~�'\y[!�*C&�'�oE+\|[(\"�#�"\ku*�+�$�lu9?,\munu3@0�1�%�*\=4v�ou4�~4{�2\|�ILw[}4}�~[~�!�"�@K#�!\#\$�'\y[%�*C&�'�oE+\|[(\(�"\)�*�+�,�-�9?,\.�/�3@0�1�*\=42�3�4�BNj�l[l�_Gm�n�t[g[k�40i[l�<9n�o�p�k[q�j[f[q[s�?>fugumTh8|Mv�r�s�h[x�tD#3-:hu`[t�p[a3n[r[u�nEBNk�l[l�_Gm�n�t[g[40i[o�<9p�q�k[r�j[f[q[s�?>t�u�mTh8|Mv�w�h[x�tD#3-:y�`[p[a3n[r[z�nE\[e7K7mE_�`�Z[F0a�Z�b�][_[M6,7^u<4K5c�d�^�b[buy:qK7;c[0If�g�b�c�d�cuo[du32d[g�h�i�i�u[e[\[e7K7mEX�Y�Z[F0Z�[�][_[M6,7I�<4K5\�]�^�b[_�y:qK7;c[0I`�a�b�c�d�e�o[f�32d[g�h�i�j�u[e[]uNDJFI1K�r@J�4@*7X�K�_uY[Y�;9|3O�N�[[t3a[`uZ�R�S�au^[\�s@K3,:]�J3O:^�W�F�NDJFI1r@J�4@*7K�L�Y[M�;9|3O�N�[[t3a[P�Q�R�S�T�^[U�s@K3,:V�J3O:W�ZuHB:�N�AJ<�V[O�>�"IU[pG?K;4P�w@@=[uSDQ�.MR�B�Q[P[C�R[O[D�W[M[K[S[I[S�lCF�xLF<t:G�T�Yu::\uoKA39�HB:�;�AJ<�V[=�>�"IU[pG?K;4?�w@@=@�SDA�.MB�Q[P[C�R[O[D�W[M[K[S[I[E�lCF�xLF<t:G�H�8�::oKA3Tu(�G[zH>[D[C[)�*�O@+�H�UumK-�SNVu/�gKWuL2^;HOF[u?E[@[O8L�2�M�L[J[4�M2H[N[T[Xu6�7�'�(�G[zH>[D[C[)�*�O@+�,�mK-�SN.�/�gK0�L2^;HOF[u?E[@[O81�2�3�L[J[4�M2H[N[T[5�6�7�5[x�8[QuRuy?>�?�{MI0`:<B]<@�}�s>;[NEA�9[+B:[r>]L<[=[hMPuB["�:9#�UG?[lE^ZbZE�O5F�GGSuA[>>DH5[x�8[y�z�y?{�{MI0`:<B]<|�}�s>;[NE~�9[+B:[r>]L<[=[hM!�B["�:9#�UG?[lE^ZbZ$�O5%�GG&�A[>>DHG:7�rP8�o�n7-M~J~I,[9�Mus:?D-[/O;�>Ks�+D.[|4t�u�/[0[ZL$LvK\K%;2[k<OuQK4[7[6[y4`5w�3[G:rPn�o�n7-M~J~Ip�,[q�s:?D-[/Or�>Ks�+D.[|4t�u�/[0[ZL$LvK\K%;2[k<v�QK4[7[6[y4`5w�3[_�zZ`�a�![Gu^FHu|Zc�d�e�f�#[l=$[JuKMxGh�%['[Ku([j�5�l�)[J6H199*[+[q=bALu7uXR>A=AXB_�zZ`�a�![^Fb�|Zc�d�e�f�#[l=$[g�KMxGh�%['[i�([j�k�l�)[J6H199*[+[q=bAm�?�XR>A=AXB*�G6sZwZK2tZvZM�N�BuuZ+�k=,�HCE0xZ-�S�T�U�yZV�Du*DX�qNC;/�kJ0�Eu=K1�"[{ZFu~Z}Z3�K�G6sZwZK2tZvZM�N�O�uZP�k=Q�HCE0xZR�S�T�U�yZV�W�*DX�qNC;Y�kJZ�[�=K\�"[{Z]�~Z}Z^�1�jZ~;89hZy�3�8uiZ4�8?9u{�gZz�/;~�9�;u<u!�<�lZkZpZ=�=uqZ"�mZ>u"3nZoZUH%�&�'�(�aIJ7rZ?u2@E�=>@uAuI�RC)�L�C�F�1�jZ~;89hZ2�3�iZ4�8?5�7�gZ6�/;8�9�:�;�<�lZkZpZ=�>�qZmZC�"3nZoZUH@�A�B�aIJ7rZD�2@E�=>G�H�I�RCJ�L�C�F�,u79`Zu�+::>v�-u_Z;>y�@L*:z�{�W0N@.u}�fZ~�/u1@G1w�1u$�2uU=&�fKr:'�x�3u*�<>'@4u5u6ueZcZdZ0�/�0ukC&[u�79`Zv�+::>w�x�_Z;>y�@L*:z�{�W0N@|�}�fZ~�!�1@G1"�#�$�%�U=&�fKr:'�(�)�*�<>+�'@,�-�.�eZcZdZ0�/�B�kC&[UZn�SZVZ9NTZf�o�{@WZh�2Bi�XZp�k�z4l�ZZYZm�[Z\Z{4|F6Cl5];aA\=00n�]Zr�p�q�s�"2aZt�s�t�UZe�SZVZ9NTZf�g�{@WZh�2Bi�XZj�k�z4l�ZZYZm�[Z\Z{4|F6Cl5];aA\=00n�]Zo�p�q�r�"2aZs�t�f�LZMZg�h�8J]UF@i�LIX:eHCHY�Z�ME[�ANOZP<*uPZ]�60^�T6M@_�`IQZB;GC`�[;7?j�b�c�k�RZl�}Jw1\;m�V�LZMZW�8J]UF@X�LIX:eHCHY�Z�ME[�ANOZP<\�PZ]�60^�T6M@_�`IQZB;GC`�[;7?a�b�c�RZ}Jw1\;d�J�b�N8K�CZL�FZRIM�_5N�c�EZDZTGGZ56IZHZP�Q�:46;XF)ud�I7t?JZ0@(E_IKZe�U�J�N8K�CZL�FZA�RIM�_5N�O�EZDZTGGZ56IZHZP�Q�:46;XFR�S�I7t?JZ0@(E_IKZT�U�5Z5�Z�9Z7�8�9�\�;�]�^�7Z>�?�8ZpY`�A�&u;Z:ZC�'uxY<Z0ZE�Y;F�a�=Z>Z@Z?ZAZ~2G�69H�I�|J/@5Z5�6�9Z7�8�9�:�;�<�=�7Z>�?�8ZpY@�A�B�;Z:ZC�D�xY<Z0ZE�Y;F�=Z>Z@Z?ZAZ~2G�69H�I�|J/@JM'Z!u#Z$Z"�"uR�S�`A|t#u(�"Z?YT�U�&Z!Z+Z,Z'E.ZW�X�$;)Z-�.�<5/�/Z0�(Z3Z2Z1�1Z$u4Z%u6Zq>Y�JM'Z!�#Z$Z"�#�$�%�`A&�'�(�"Z?Y)�*�&Z!Z+Z,Z'E.Z+�,�$;)Z-�.�<5/�/Z0�(Z3Z2Z1�1Z2�4Z3�6Zq>4�b7l�N�}Yn�o�O�5;zYyYq�r�2Gs�P�5FQ�v�w�1E{Yx�y�|YoIz�EG#;q@PK{�I3%Z~Y|�}t~tb7l�m�}Yn�o�p�5;zYyYq�r�2Gs�t�5Fu�v�w�1E{Yx�y�|YoIz�EG#;q@PK{�I3%Z~Y|�}�~�]@Y�wYZ�yt\�]�^�&EI�J�a�K�c�zte�f�tY`K{tuYL�i�vYNLxt"@j�M�]@Y�wYZ�[�\�]�^�&E_�`�a�b�c�d�e�f�tY`Kg�uYh�i�vYNL"@j�k�lYD�H�;BsYutJ�mYvtjYqYL�SYE�N�wtP�F�nYrYG�S�BHkEH�U�kYV�oYH7W�q:X�lYG�H�;BsYI�J�mYK�jYqYL�SYM�N�O�P�Q�nYrYR�S�BHkET�U�kYV�oYH7W�q:X�cY5�7BiY6�dY7�fY8�AIsD9�gY:�=�>�,MHM94?�@�.0eYrtbY@�A�B�stx4C�C�g1tthY<�E�F�IMcY5�7BiY6�dY7�fY8�AIsD9�gY:�;�<�,MHM94=�>�.0eY?�bY@�A�x4B�C�g1D�hYE�F�IMWY%�]A7�'�x<\Y(�8>VY[Y)�SG:�+�UY!78�-�]3.�]Y+NN:5CZY/�\@0�59d?f1<AXYE51�2�3�G7OD^Y_A;�aYWY%�]A&�'�x<\Y(�8>VY[Y)�SG*�+�UY!7,�-�]3.�]Y+NN:5CZY/�\@0�59d?f1<AXYE51�2�3�G7OD^Y_A4�aY/�l�ot0�o�*Bp�q�+;RY1�TYPYs�t�u�aJ=Dv�3�w�\Apty�{JN<`Y_Y6�{�x?|�~7}�~�YY9>!�hF1Gqt#�$�k�l�m�n�o�*Bp�q�+;RYr�TYPYs�t�u�aJ=Dv�w�\Ax�y�{JN<`Y_Yz�{�x?|�~7}�~�YY9>!�hF1G"�#�$�};LY&�\�X;MYD0lt^�HY'�(�)Da�b�mts546KY'0d�e�C:f�6?+�,�h�ntrD-�.�THQY^A};LY[�\�X;MYD0]�^�HY_�`�)Da�b�c�s546KY'0d�e�C:f�6?g�h�i�rDj�THQY^ADYit4C>YEY@YGYCYBYoGR�<Y}2:Yq5sB6Y#�jt9Y49[@U�7>AYRGr5H3V�g3!?IYNYJYW�}7X�OY";i9kt%�&==YDYQ�4C>YEY@YGYCYBYoGR�<Y}2:Yq5sB6YS�T�9Y49[@U�7>AYRGr5H3V�g3!?IYNYJYW�}7X�OY";i9Y�Z�&==Y;50Y7Y6>ht1YDGE�F�G�H�^M3Y4Y8YjE5Y39^@!�FY4HrB"�J�dH-ZzJK�qDL�M�uKN�;Y!2jCO�P�;50Y7Y6>1YDGE�F�G�H�^M3Y4Y8YjE5Y39^@FY4HrBI�J�dH-ZzJK�qDL�M�uKN�;Y!2jCO�P�j=(Y3�dt5�v�p@=nbHj<w�M:)Y8�x�y�GB;�'JetqBft,Y>�*Y-Yz�+Y{�.Y}�1Jgt70~�^IcHC�|�/YD�2Y5>j=(Y3�4�5�6�p@=nbHj<7�M:)Y8�9�:�GB;�'J<�qB=�,Y>�*Y-Y+Y?�.Y@�1JA�70B�^IcHC�/YD�2Y5>xX$�%�&�'�yXzXjJ|X{X?=.@f2|2}Xs�?0L@~X*�Cl!Ya7+�"Ybtt�o@.�u�#Y0�$Y:5%Y&Y'YWBM81�aL2�ct<KxX$�%�&�'�yXzXjJ|X{X?=.@f2|2(�}X)�?0L@~X*�Cl!Ya7+�"Y,�-�o@.�/�#Y0�$Y:5%Y&Y'YWBM81�aL2�<Kp�q�r�iXjX):hXfXeXlXdXnXs�t�{2n�v�o�x�p�z�{�pX~�oX|�}�!�"�#�(DsXq�qXgX|7rXvXuXwXtXp�q�r�iXjX):hXfXeXlXdXnXs�t�{2u�v�w�x�y�z�{�pX~�oX|�}�!�"�#�(DsXqXgX|7rXvXuXwXtX[�\�+M]�^�\X`X_�]t~AyNaXf�g�^X[Xh�i�ZX_Xe�f�g�h�0Jj�4Fk�F7k�bX]Xl�cX{712m�`tkX_t84[�\�+M]�^�\X`X_�`�~AyNaXa�b�^X[Xc�d�ZX_Xe�f�g�h�0Ji�4Fj�F7k�bX]Xl�cX{712m�n�kXo�84a�JXKXP�b�@X|;R�DXVB292X5?XXiJNXOXPXWXS�VXc�}K74TXE743QXU�8NSXV0UXV�LXRXYXD7MXW�X�d�]MZ�O�JXKXP�Q�@X|;R�DXVB292X5?XXiJNXOXPXWXS�VXT�}K74TXE743QXU�8NSXV0UXV�LXRXYXD7MXW�X�Y�]MZ�7X%=8�:X4X9�|L{L:�;�>X?XU0Z�[�\�@�3XA�B�]�r6&0Xt^�64;XF�CXBXG�YtGXZtJ�HXK�L�[tN�_�FXIXAXEX7X%=8�:X4X9�|L{L:�;�>X?XU0<�=�>�?�@�3XA�B�C�r6&0D�E�64@�;XF�CXBXG�H�GXI�J�HXK�L�M�N�FXIXAXEX#�$�p>/XWFT�&�'�St)�*�GO+XTtUt1XU�{9V�K@VtT0*X(X1�ZA2�|W4;W�FB=XX�[A8XY�5X6XWtf<9X<X6�7�#�$�p>/XWF%�&�'�(�)�*�GO+X+�,�1X-�{9.�K@/�0�T0*X(X1�ZA2�|W4;FB=X3�[A8X4�5X6X5�f<9X<X6�7�zWm�}W!Xn�o�=<M�'XpD{Wq�r�%Xs�y2N�#X$Xu�~W"XQtRtg8*Mx�54y�z�Y1&XO�:G-0Q�R�aH\W,X0XeL~�)X!�iE.XS�zWm�}W!X?�n�o�=<p�'XpD{Wq�r�%Xs�y2t�#X$Xu�~W"Xv�w�g8*Mx�54y�z�Y1&X{�:G-0|�}�aH\W,X0XeL~�)X!�iE.X"�^�lWvWtWqWOt`�a�pWxNK�rW26c�19d�z=e�f�yWkWoW_Wh�z2sWuWQCi�(:82mWxWwW36)Bf3j�C7nWk�L�^�lWvWtWqW_�`�a�pWxNb�rW26c�19d�z=e�f�yWkWg�oW_Wh�z2sWuWQCi�(:82mWxWwW36)Bf3j�C7nWk�l�Q�R�JtcWiWaW\ET�KtfW]IG�Lt`WX�eWgNW;Y�UB^WH�I�^5hW-@e1bWx2gW[�16dWMtNtjWQ�R�S�cWiWaW\ET�U�fW]IV�W�`WX�eWgNW;Y�UB^WZ�^5hW-@e1bWx2gW[�16dW\�]�jW4?:�,I<�:�Ft=�w4&G=�>�>�?�@�VWV;:K;K~1[WGtiCHtA�XWE�ItG�w2H�I�B�C�-XZWL�D�0GN�YWO�WWE�z9]W4?8�,I9�:�;�<�w4&G=�>�?�@�A�VWV;:K;K~1[WB�iCC�D�XWE�F�G�w2H�I�J�K�-XZWL�M�0GN�YWO�WWP�z9]W}1,@IWHWB7TBNWLW@tKW'Ne8*�6�y=MWLE>=,�@FQWPWAt.�OWRWf87�8�BtSW|I[=1�3�TWyHCt5�6�AF'DDtEt9�0EUW+5}1,@IWHWB7TBNWLW)�KW'Ne8*�+�y=MWLE>=,�@FQWPW-�.�OWRWf8/�2�0�SW|I[=1�3�TWyH4�5�6�AF'D>�7�0EUW+59t;Ws�:t2�<W06=Wv�>Ww�@WvE;tAWBW<tCWz�4W3W{�DWA73�=t'I>tL:7I&DKIEW!�4>F14�FW#�$�GW%�rL&�`H?t5�JWr�;Ws�t�u�<W06=Wv�>Ww�@WvEx�AWBWy�CWz�4W3W{�DWA7|�}�'I~�L:7I&DKIEW!�4>F1"�FW#�$�GW%�rL&�`H'�(�JW1t[J2t1W.O]�3t-�2W@J5W!P1P.�0<uF6W]5$Dz07W&J09a�PC/�4t1�oDe�5tg�oL98L8h�8Wi�j�9Wk�?Wl�e<6t%D7t/6:Wo�+I8tFCq�[J\�1W.O]�^�_�2W@J5W!P1P`�0<uF6W]5$Dz07W&J09a�PCb�c�oDd�e�f�g�oL98L8h�8Wi�j�9Wk�?Wl�e<m�%Dn�/6:Wo�+Ip�FCq�zV{VQG(�|VwN-O/tQ�S�~V}VT�)�G3V�W�!W*�$W%WX�#WY�@I3>'W&W"WZ�(W)W[�*W-W+W,W.Wd1nD/W0tz7v26G,�0W{FzV{VQGP�|VwN-OR�Q�S�~V}VT�U�G3V�W�!W$W%WX�#WY�@I3>'W&W"WZ�(W)W[�*W-W+W,W.Wd1nD/Wz7v26G0W{FB�#D-91>_H2>C�D�x=lDyJ9E.9\IyVE�F�#�YEB:H�$�K8%�mDK�L�C0n=/9GM&�M�-t'�B�#D-91>_H2>C�D�x=lDyJ9E.9\IyVE�F�G�YEB:H�I�K8J�mDK�L�C0n=/9GMM�N�O�lVkVjV}IsVx�2�ZKmV3�5�oVkKz�nV+t8�9�,tpV(HqV>JrV;�<�|�}�~�!�A�34?J/GtVuV|~,944vV88DM)Mv4xVlVkVjV}IsV4�2�ZKmV3�5�oVkK6�nV7�8�9�:�pV(HqV>JrV;�<�=�>�?�@�A�34?J/GtVuV,944vV88DM)Mv4xVp�T;[IAH%�cVu4&�fVr�)ts�!D*teVdVgVkDu�,�c?.�U;J@v�SB"5/�"D0�hViVo>9Kw�$�T;[IAH%�cVu4&�fV'�(�)�!D*�eVdVgVkD+�,�c?.�U;J@-�SB"5/�"D0�hViVo>9K1�v�w�ZV}O`4[Vz�h�]V\V^Vi�j�|�_Vn@#=k�d=(tcAm�)98:*9p5n�`V9:J8aV&LCGbV+9"�#�,4'CR6v�w�ZVx�`4[Vz�y�]V\V^V{�|�_Vn@#=}�d=cA~�)98:*9p5!�`V9:J8aV&LCGbV+9"�#�,4'CR6xOQVe�PVOV]�g�hE:VWV_�i�`�k�a�b�m�SVn�yORVzO{Oq�TVUVc�d�e�XV|Og�fNYVVVd�QVe�PVOVf�g�hE:VWVh�i�j�k�l�m�SVn�o�RVp�q�TVUVr�t�s�XVt�u�fNYVVVU�Q�sOtOS�vOKVHVJVrMU�IVuOT�V�?VX�Y�W�[�\�s?X�LVwO7:Z�MVNV`�a�b�c�P�Q�R�S�W�KVHVJVrMU�IV<�T�V�?VX�Y�Z�[�\�s?]�LV^�7:_�MVNV`�a�b�c�B�L�r?<VpOj:M�BVE�CV=V33>VGVFVEVAVO�@VP�DVG�Q�R�qOxJN�S�L�T�N�O�B�C�r?<VD�j:BVE�CV=V33>VGVFVEVAV@VDVG�H�I�J�xJF�K�L�M�N�O�2V4VI�jOkOlO=�5V<�=F.6e26V;V9V>�wJvJ?�@�mOgE8VT=7V2V4V9�:�;�=�5V<�=F.6e26V;V9V>�wJvJ?�@�A�;�gE8VT=7V)�<�=�)VeOt4*V-�+V.�fOA�,2B�gOC�D�;Ad4hO-V(LF�RB5�Y36�G�/V1V_4iO.V0V3V)�*�+�)V,�t4*V-�+V.�/�0�,21�2�3�;Ad44�-V(LRB5�Y36�7�/V1V_48�.V0V3VI6{Uo5|U~6OF02S;}U"V!V}6~U8Ew�x�{~y�0B1�KEH<`O2�XAzM3�4�5�$V!�%VVF6�3;#�$�'V(VdO&�9�(�I6{Uo5|U~6OF02S;}U"V!V}6~U8Ew�x�y�0BKEH<z�{�XAzM|�}�~�$V!�%VVF"�3;#�$�'V(V%�&�'�(�uIl@-�M<qU->rUsUS0:BR?i�tU3F.>/>[OuUm@j�0>\Ol�vUwU]O`Ln�xU.�^Oq�F6r�/�"=t�u�v�yUzU\<,?tFT?xH"GuIl@M<qU->rUsUS0:BR?i�tU3F.>/>uUm@j�0>k�l�vUwUm�`Ln�xUo�p�q�F6r�s�"=t�u�v�yUzU\<,?tFT?xH"G$�\�d<cUs4RF)LdUeUYI]�&�^�gU(4w6fU'�`�YOb�c�242?kU!;d�I2jUhUlUiU+GM\3?mUZO@Ne�nU*�pUg�~CoU#@{;+�PBw<[�\�d<cUs4RF)LdUeUYI]�^�gU(4w6fU_�`�a�b�c�242?kU!;d�I2jUhUlUiU+GM\3?mU:�@Ne�nUf�pUg�~CoU#@{;h�PBw<_U|�`U}�pBI�'1i<B0J�WA045<K�(9L�M�XOO�fE!�!=14hCjD8095uJB<R5k@<<(MaUQ�R�"�T�\5U�K:V�W�23c1,>H2X�bUFMY�Z�I=_UG�`UH�pBI�'1i<B0J�WA045<K�(9L�M�N�O�fEP�!=14hCjD8095uJB<R5k@<<(MaUQ�R�S�T�\5U�K:V�W�23c1,>H2X�bUFMY�Z�I=RUUOPUQU;�v�R;SUw�&9TUVOz;8BUUVUZ;'9?�RL(5I8WUX3x�XU9BA�y�YU#VZU[U\U^Uz�WOE�{�RU:�PUQU;�<�R;SU=�&9TU>�z;8BUUVUZ;'9?�RL(5I8WUX3@�XU9BA�B�YU#VZU[U\U^UC�D�E�F�q�/�r�r4IUHUJUs�|/4�5�6�n>}/MU\Du�E1KUt�NU9�OU.�/�0�r4IUHUJU1�3�4�5�6�n>7�MU\D8�E1KU2�NU9�OUG2?Uz/"�#�;<>Uy7$�LUEUBUj�k�l�dCAUm�CUDU)�o�n�p�,�FUGU-�G2?U!�"�#�;<>Uy7$�LUEUBU%�&�'�dCAU(�CUDU)�*�+�,�FUGU-�w/`�l�^Gm�n�o�;U2Ia�x/b�c�d�y/v�e�x�f�g�{�h�}�<U@U=Ui�k�l�^Gm�n�o�;U2Ip�q�r�s�t�u�v�w�x�y�z�{�|�}�<U@U=U~�4U,O[�\�LG]�^�6U_�`�]�':b�9Uc�^�XIs/:U5Ut/u/_�i�v/;L4U,O[�\�LG]�^�6U_�`�a�':b�9Uc�d�XIe�:U5Uf�g�h�i�j�;LL�R0#0M�2UX�Y�P�0UQ�q/Z�<L3U1US�/U1?r/U�.U[�W�ZJX�\�d8Z�7U8U+>L�R0#0M�2UN�O�P�0UQ�R�<L3U1US�/U1?T�U�.UV�W�ZJX�Y�d8Z�7U8U+>9�n/;�(UN�P;=�O;O�90H8o/+@Q0,U-U*Up/P�B�Q�R�81/4S�)UEL1IT�G�H�I�J�(0K�z~y0Q;9�:�;�(U<�P;=�O;>�90H8?�+@Q0,U-U*U@�A�B�C�D�81/4E�)UEL1IF�G�H�I�J�(0K�y0Q;"U!G^HQL%Gk/)�+U*�l/85,�EM-�/L,V#UK�&Um/EB0�8KJE1�L�3�4�'U5�6�eKJ:M�*>"U!G^HQL%G(�)�+U*�+�85,�EM-�/L,V#U.�&U/�EB0�8KJE1�2�3�4�'U5�6�eK7�J:8�*>r�b1B�q4`FtJwTUAvT@7t�[KuTeEyTv�xTE�i/y�F�{T{�zT|1|T)>~T%C}�}Tj/3J!�"�w=[EH�I�!U%�&�J�%9r�b1s�q4`FtJwTUAvT@7t�u�[KuTeEyTv�xTw�x�y�z�{T{�zT|�|1|T)>~T%C}�}T~�3J!�"�w=[E#�$�!U%�&�'�%9iT8�9�QJjT:�g/;�F2kTc�d�<�<M03IRH=?BlTkLg�h�4Li�=�nTgBk�7E@BWIoTpT{1l�m�:<qTn�o�p�P0rT@�sTq�iT_�`�QJjTa�b�F2kTc�d�e�<M03IRH=?BlTkLg�h�4Li�j�nTgBk�7E@BWIoTpT{1l�m�:<qTn�o�p�P0rTsTq�IJQ�3�O�YTECR�u2m>4�b/U�[Ta/ZTc/h9X�\T^T]Td/`TZ�UTbTe/[�5�aT_Tf/N;Q?TAcT<@m0dG6�7�[DeTdTfTgThTIJQ�O�YTECR�u2m>S�T�U�[TV�ZTW�h9X�\T^T]TY�`TZ�UTbT[�\�aT_T]�N;Q?TAcT<@m0dG^�[DeTdTfTgThT;�<�-6PT=�>�\/)�*�A�+�,�-�hJ.�F�}AFD/�]/RTH�I�J�K�OK_/0�STXT1�/JWTQTTTVTP�&:;�<�-6PT=�>�?�@�A�B�C�D�hJE�F�}AFDG�9�RTH�I�J�K�OKL�STXTM�N�/JWTQTTTVTP�&:=J]N&�t2JT'�/�0�1�:AMTcE2�IEdE9HMDI:3�X/ITY/(�7�v16EKTGTP?8�OT[/N=:�=J]N-�t2JT.�/�0�1�:AMTcE2�IEdE9HMDI:3�4�IT5�6�7�v16EKTGTP?8�OT9�N=:�YK2Fz�}�x7OB|�V/ATDT!�"�DBET#�FT~�%�!�HTiD'�"�.4)�!ta1sJ#�l>HE$�f:NT,�YK2Fz�{�x7OB|�}�ATDT!�"�DBET#�FT$�%�&�HTiD'�(�.4)�!ta1sJ*�l>HE+�f:NT,�1T<T=TN/O/dKs�k>P/?T@T>Tk�BTq�8Gl�v�h0VI~�CTQ/w�p�q�R/x�}>S/T/9<z�]Gp4{�k:|�x�U/1T<T=Tg�h�dKi�k>j�?T@T>Tk�BT8Gl�m�h0VI~�CTn�o�p�q�r�s�}>t�u�9<v�]Gp4k:w�x�y�T�b?U�2T5T?7V�6TW�`�X�Y�m�J/n�o�^�7T_�$9@39Ta�p�c�:Tl�;T8TM/f�T�b?U�2T5T?7V�6TW�`�X�Y�Z�[�\�]�^�7T_�$9@39Ta�b�c�:Td�;T8Te�f�.Td:_�`�Q67Ka�b�,T/TA:#9@�3TA�%:3CC�d�0TZDE�F�G�e�G/J�f�g�h�H/O�P�i�I/S�4T.Td:<�=�Q67K>�?�,T/TA:#9@�6�3TA�%:B�3CC�D�0TZDE�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�4T{S#�$�`J}S%�!T~SA/"T'�#Tw7(�`1$TZ�&T%T*�+�(T,�ZE-�C/.�[�0�1�)T50_:]�3�4�=75�D/OCE/F/*T+T-T9�:�;�{S#�$�`J}S%�!T~S&�"T'�#Tw7(�`1$T)�&T%T*�+�(T,�ZE-�.�/�0�1�)T50_:2�3�4�=75�6�OC7�8�*T+T-T9�:�;�sSqSoSrSS�tS?/@/m�p�T�uSn�o�vSwSxSEQr�|<M;s�t�s2U�x0v�DCw�x�y�z�V�}�~�yS$:|�O0^?W�X�zSG8q9|SsSqSoSrSj�tSk�l�m�p�q�uSn�o�vSwSxSEQr�|<M;s�t�s2u�x0v�DCw�x�y�z�{�}�~�yS$:|�O0^?!�"�zSG8q9|SfST�U�eSE3K�gSW�L�jSiSM�:/N�O�;/^�hS9GkS_�`�P�</c�=/Q�lSf�R�>/nSmSh�pSi�fST�U�eSE3V�gSW�X�jSiSY�Z�[�\�]�^�hS9GkS_�`�a�b�c�d�e�lSf�g�nSmSh�pSi�E�?�=1@�A�B�F�3/D�9AE�YSF�ZS'tG�z3G�H�J�K�L�aS5/o4N�dS`ScSI�7/8/9/.JS�4/UF8H>�?�=1@�A�B�C�D�9AE�YSF�ZSG�z3H�I�J�K�L�aSM�o4N�dS`ScSO�P�Q�R�.JS�UF8H*�2C>�0/E2,�-�1//�?�1�2�RSTS(>313�WS<�^24�bS@�|>^S6�\S7�]SA�_S9�2/;�C�D�*�2C+�E2,�-�.�/�0�1�2�RSTS(>313�WS^24�bS5�|>^S6�\S7�]S8�_S9�:�;�<�=�v�w�NSLSx�'T4�z�5�./6�0�!�QS"�#�KS$�OS7�%�MS9�L;PS;�(�SSXSVSUS)�v�w�NSLSx�'Ty�z�{�|�}�~�!�QS"�#�KS$�OS%�MS&�L;PS'�(�SSXSVSUS)�=S)/,�GS1A*/IS-�"9?S}C+/k�.�m�n�o�p�CS<S-4n4e3DS@Sq�r�v7JSHSSAJ5,6-/ESt6t�D13�=Sf�g�GS1Ah�ISi�"9?S}Cj�k�l�m�n�o�p�CS<S-4n4e3DS@Sq�r�v7JSHSSAJ5,6s�ESt6t�D1u�1S"�oB6S&>$�X�%�3SZ�dL'/\�<77S8S]�^�_�5S;S(/'�(�2S)�d�ASFS+�BSe�1SV�oB6S&>W�X�Y�3SZ�dL[�\�<77S8S]�^�_�5S;S`�a�b�2Sc�d�ASFSBSe�|�}�41G�6:0?H�~�J�K�$/)SbE*SM�"0N�%/4S#M'>P�:S&/R�9S0SS�!�U�CBE�F�41G�6:0?H�I�J�K�L�)SbE*SM�"0N�O�4S#M'>P�:SQ�R�9S0SS�T�U�CB%0JI"Sv�|R"/wR}RH::�;�<�&S=�w0/S'S(S%>iK>�x�-S,Sy�z�/E{�A�.SB�+SC�#/%0JI"S|R9�wR}RH::�;�<�&S=�w0/S'S(S%>iK>�?�-S,S@�/EA�.SB�+SC�D�rR!�"�tR#�vR|.%�l�p:BOm�kRiRuR'�pRn�}.x.+�o�~.xR#SzRp�.�~R!/0�!S{Rq�r�>S3�i:13s�yR5�t�7�%Sv0$Su�rR!�"�tR#�vR$�%�5�p:BO&�kRiRuR'�pR(�)�*�+�,�xR#SzR-�.�~R/�0�!S{R1�2�>S3�i:134�yR5�6�7�%Sv0$S8�`R$Oh�p�rJq�hDb8p9w.hRs�]Fd�t�lRi�v�j�x�~<y�v<y.k�{�|�oRmR#Lz.jRsRnRqRF8?L{.`R$Oo�p�rJq�hDb8p9r�hRs�]Ft�lRu�v�w�x�~<y�v<z�{�|�oRmR#L}�jRsRnRqRF8?L~�^Rd�I5F3g9H5_D%11F>L!9yMGE~8u.e�f�/7gR~Oc6JKg�e�]Hv.f�fRj�^4aRbRdRk�l�m�n�eR[5a?-JcR_Rc8^Rd�I5F3g9H5_D%11F>L!9yMGE~8e�f�/7gRc6JKg�]Hh�i�fRj�^4aRbRdRk�l�m�n�eR[5a?-JcR_Rc8[�2;TRX�tK5:Z5'MPA?H}<Y�Z�[�G=_�h<u<v=`�@H_�WR`�C1QA}8E8g6a�b�[R!C~B+6$>\RZRD2fB8<K;&1b�c�p3f9J;]RW�2;TRX�tK5:Z5'MPA?H}<Y�Z�[�G=\�h<u<v=]�@H^�_�WR`�C1QA}8E8g6a�b�[R!C~B+6$>\RZRD2fB8<K;&1c�p3f9J;]RLRC�qLD�E�F�r.H�MRRNI�|8s.68NRK�W�PROR_?91M�N�^1QRO�RRt.78X�R�SRZ�T�U�n5V�LRC�qLD�E�F�G�H�MRRNI�|8J�68NRK�L�PROR_?91M�N�^1QRO�RRP�78Q�R�SRS�T�U�n5V�?R==Q�i@AR@R#>a8CR>H8�7�DR\H4BnB(6nF1C9�nG:�NKFRj@o.p.=�57T�GRU�?�HR,1u0m4(BQ5qMKR72A�V�JRq.B�*6?R==6�i@AR@R#>a8CR>H8�7�DR\H4BnB(6nF1C9�nG:�NKFRj@;�<�=�57GR>�?�HR,1u0m4@�(BQ5qMKR72A�JRB�*6k.hLwF|�qJ2Rl.3RL�M�!�5R7R6R"�#�8R=2LK$�|:9R%�m.YA'�(�">)6:RN�)�*�+�,�[H-�.�/�;R0�<R1�=RO�>R$Ih6e03�4�P�?F{�hLwF|�qJ2R2�3R}�~�!�5R7R6R"�#�8R=2LK$�|:9R%�&�YA'�(�">)6:R3�)�*�+�,�[H-�.�/�;R0�<R1�=R2�>R$Ih6e03�4�5�?F&RVKf�<Dg�&Mb.YJG�d.'Rj�e.I�Upl�0Ff.(R*43Lg.o�!>)RgJ-Rp�*@*RP6q�+R+4r�s�t�u�i.w�.7.Rx�/Ry�K�0R1R[<j.{8^Le�&RVKf�<Dg�&Mh�YJi�'Rj�k�Upl�0Fm�(R*43Ln�o�!>)RgJ-Rp�*@*RP6q�+R+4r�s�t�u�v�w�.7.Rx�/Ry�z�0R1R[<{8^LM�>�D3=�O�`7|Q-NP�Q�xQ}QzQa.yQS�T�U�@�W�ONy8C2tNB�Z�C�\�u=XEe9"R#RD�^�eN+O%R_�`�a�z8E�F�$Rd�/3M�N�D3O�`7|Q-NP�Q�xQ}QzQR�yQS�T�U�V�W�ONX�y8C2tNY�Z�[�\�u=XEe9"R#R]�^�eN+O%R_�`�a�z8b�c�$Rd�/3fDmQ>�'B^.o:nQoQ0AlQqQ9�6K_.B�C�d9:�~/pQE�F�`.u7^:mGH�tQrQ;�I�{Ij>{Qd3uQsQOA<�K�L�wQvQfDmQ>�'B?�o:nQoQ0AlQqQ@�6KA�B�C�d9D�pQE�F�G�u7^:mGH�tQrQI�{Ij>{Qd3uQsQOAJ�K�L�wQvQaEZ.5�O?cQ2�,JZ@"4)4dQfQ:76�\.eQ].7�sN7�i=8�=HLJgQ9�xMhQiQ~E:�;�jQ<�)@~:t7kQI;o9=�aE0�1�O?cQ2�,JZ@"4)4dQfQ:73�4�eQ5�6�sN7�i=8�=HLJgQ9�xMhQiQ~E:�;�jQ<�)@~:t7kQI;o9=�~�U.(@YQZ=!�ZQV.|C?N`E"�#�$�%�&�ER'�[Q%tE6W.\Q^KX.*�h=|B^QdF_QY.`Q.3,�3�4�aQ'6/�LFz1P=!HbQ~�(@YQZ=!�ZQ|C?N`E"�#�$�%�&�ER'�[Q%tE6(�\Q^K)�*�h=|B^QdF1�_Q+�`Q.3,�-�.�aQ'6/�LFz1P=!HbQCQDQ)�q�bF_1GQ}:*�FQF:s�HQnfIQAKJQKQLQi>,�L<T.'4v�OQ-�MQ=LNQZIPQQQRQ_E.�VQTQUQSQc:WQjLdNy�z�0�XQ}�CQDQp�q�bF_1GQ}:r�FQF:s�HQnfIQAKJQKQLQi>t�L<u�'4v�OQw�MQ=LNQZIPQQQRQ_Ex�VQTQUQSQc:WQjLdNy�z�{�XQ|�}�:Qt0e�58;7<={C$6h@w8O.n9<QHLFEg�y;;Qh�=QQ.R.k�^Eu3l�&�>Q~Fn�4A@QAQ,Hx8;OBQ&6(�<J6Bq65Et�s7o�:Qt0e�58;7<={C$6h@w8f�n9<QHLFEg�y;;Qh�=Qi�j�k�^Eu3l�>Qm�~Fn�4A@QAQ,Hx8;OBQ&6<J6Bq65Es7o�75.Q/QK./2J.K�!�-QL.N�O�P�R�t<2Q1Q0Q#�VPT�3Q$�V�W�M.~=4QY�Z�[�%M\�]�^�_�YL`�a�N.6Qc�d�5Q8Q7Q9Q75.Q/QI�/2J�K�L�-QM�N�O�P�R�t<2Q1Q0QS�VPT�3QU�V�W�X�~=4QY�Z�[�%M\�]�^�_�YL`�a�b�6Qc�d�5Q8Q7Q9Q2�$Q3�t�O6u�!Q"QE./Fx�|AG.#69�z�MK%Q{�=N<�=�&Q>�|�?�)Q@�'QH.NAB�}�(Q*QD�E�F.v�,QF�+QG�HJH�2�$Q3�4�O65�!Q"Q6�/F7�|A8�#69�:�MK%Q;�=N<�=�&Q>�?�)Q@�'QA�NAB�C�(Q*QD�E�Q�0�,QF�+QG�HJH�zPw�x�y�|Pz�i�{�5K|�}�~�f7j�k�D.l�m�1;wH{P%�n�'�(�)�*�+�h�o�E:CM-�.�q�~P#Q}PD:}=/�r�s�1�97zPw�x�y�|Pz�{�5K|�}�~�f7!�"�#�$�1;wH{P%�&�'�(�)�*�+�,�E:CM-�.�~P#Q}PD:}=/�0�1�97A.C._�pPb�`�qPuPN0d�e�a�PJtPg�h�b�sPwPc�k�vPdDl�m�n�d�r7e�q�f�xPs�g�u�E<&BeDv6yP65_�`�a�pPb�c�qPuPN0d�e�f�PJtPg�h�i�sPwPj�k�vPdDl�m�n�o�r7p�q�r�xPs�t�u�E<&BeDv6yP65X�;.<.K�fPoPL�RAM�D8N�\G=.G`Y�nP]EZ�cPv8R�>.u8aPT�[�V�\�Z<iP]�oJMCePq7?.bPjPdPQNkPAO@.[�\�]�^�f6p7B.I�J�K�fPoPL�RAM�D8N�\GO�G`P�nP]EQ�cPv8R�S�u8aPT�U�V�W�Z<iPX�oJMCePq7Y�bPjPdPQNkPAOZ�[�\�]�^�f6p7v�6�7�87%Bd2R�9�:�9.S=S�=�YPT�^P\PU�WP/BZP]P[PA�]JXP:..?C�sK_P`PO�$=mPD�!.W�PG6IhPpJ62F�G�lP6�7�87%Bd28�9�:�;�S=<�=�>�YP?�^P\P@�WP/BZP]P[PA�]JXPB�.?C�sK_P`P$=mPD�E�PG6IhPpJ62F�G�lPH�|�K�&4~�L�TPLP"�5.cN$�x;%�MP&�RPM�(�6.UP7.NP+�N�!6M0-�.�"6A2%UyKnIt8P�/?7N0�1�2�3�4�Q�XJ|�}�&4~�!�TPLP"�#�cN$�x;%�MP&�RP'�(�)�UP*�NP+�,�!6M0-�.�"6A2%UyKnIt8/�/?7N0�1�2�3�4�5�XJf�g�QD"CJP../.j�k�L0cD;=4:$Ml�NBD�?20.IPE�>MEPGPn:HP$U1.-.q�A�PP2.3.t�SPQPu�B2;JKPG�H�x�I�OPs8J�4.H;f�g�QD"CJPh�i�j�k�L0cD;=4:$Ml�NBm�?2n�IPo�>MEPGPn:HP$Up�_�q�PPr�s�t�SPQPu�B2;JKPv�w�x�y�OPs8z�{�H;?�k4S�+.U�DPK0,.W�`8l4zI2HY5X�Y�@�[�\�q2gPAE]�lGFP^�`�<Ha�bNB�-?G;d�w;@2C�R�k4S�T�U�DPK0V�W�`8l4zI2HY5X�Y�Z�[�\�q2gPAE]�lGFP^�`�<Ha�bNb�-?c�G;d�w;@2e�:=N?>P8�<P=PX59�#:p2;P:P)J:�F;E;>B?PUIg@<�F�8!@PBPG�(.I�eBaNJ0J�;�AP>2K�D6=�gCM�>�o7CP$G).P�*.:=N?>PC�<P=PX5#:p2;P:P)JD�F;E;>B?PUIg@E�F�8!@PBPG�H�I�eBaNJ0J�AP>2K�D6L�gCM�N�o7CP$G/�O�P�Q�55,P-P;N=MhA/Pv;sF'.2P>1_8^8f0>�?�KOJO3:!01�3P4P5P4K6Pr8g0rK|5}5~5bD<NA�7P8P9P4�M?5�7�55,P-P;N=MhA/Pv;sF=�2P>1_8^8f0>�?�KOJO3:!0@�3P4P5P4K6Pr8g0rK|5}5~5bD<NA�7P8P9PB�M?(�0�)P5G1�W5)�*�7GcFC83K,�Ii*Ph>+P52/�5�e6p8iL&V6�7�0�pM}F9�:�;�%4<�/�0�)P5G1�W52�7GcFC83K3�Ii*Ph>+P524�5�e6p8iL&V6�7�8�pM}F9�:�;�%4<�l0zC"�7<"�#�|Kf>0;e><2$�TI?M#�"P/1$�n3#P$@BRV5:Jg>&�>N'�(�BJ$.%�$P&�.�fC'�%.&.%Pz6.�&P]40Cg<'P(Pl0zC!�7<"�#�|Kf>0;e><2$�TI?M"P/1%�n3#P$@BRV5:Jg>&�>N'�(�BJ)�$P*�fC+�,�-�%Pz6.�&P]40Cg<'P(P`�K�*�-�>~?�&�(�*�1�U�7�u�x�j�p�X}'�K|\�I�?�)�k�N�S�:�C�$�l�`{Q{O�n�Y�T�m�4�w�5�2�YzZzl�n�H�J�L�O�>�B�a�N�]�+�6�;�myS�W�G�K�H�3�7�t�w�}�d�9�-�"�g�l�\�4�MxF�H�I�P�?�A�B�(�fwp�w�T�@�q�~�;�B�:vw�!vH�]�(�)�,�4�~um�e�.�2�4�Iuq�6�|�[�_�`�F�J�;�t�y�{�^�o�q�>�oOV�Y�\�_O#�%�)�(�,�W�?�C�A�y�J�/�8�B�#�&�]�^�a�g�H�h�/�[.~�S.+�^�V�#.-�2�3�U-^#c-.+|+U-c-++-+!+#+)+'+S-T-P-Q-R-V-!./.#...1.j.i.h.g.@-N-C-H-I-_-o-n-m-).2.$.+.".4.5.-.7.*.6.F-J-A-D-B-L-K-E-M-G-O-[,\,],^,_,`,a,b,c,d,e,f,g,h,i,j,k,l,m,n,q,p,s,r,o,e-f-g-h-i-P(Q(R(S(T(U(V(W(X(Y(Z([(\(](^(s-t-u-v-w-e-f-g-h-i-A(B(C(D(E(F(G(H(I(J(K(L(M(N(O(.-1-,-j-k-l-n&o&p&q&r&s&t&u&v&w&y&z&{&|&}&~&@%A%B%C%D%E%F%G%H%I%J%K%L%M%N%O%P%Q%R%S%T%U%V%W%X%Y%Z%[%\%]%^%_%`%a%b%c%d%e%f%g%h%i%j%k%l%m%n%o%p%q%r%s%t%u%v%r's't'u'&!<!3!4!8"@%A%B%C%D%E%F%G%H%I%J%K%L%M%N%O%P%Q%R%S%T%U%V%W%X%Y%Z%[%\%]%^%_%`%a%b%c%d%e%f%g%h%i%j%k%l%m%n%o%p%q%r%s%t%u%v%&!<!3!4!`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$+!,!5!6!9"{#!%"%#%$%%%&%'%(%)%*%+%,%-%.%/%0%1%2%3%4%5%6%7%8%9%:%;%<%=%>%?%`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t%+!,!5!6!!%"%#%$%%%&%'%(%)%*%+%,%-%.%/%0%1%2%3%4%5%6%7%8%9%:%;%<%=%>%?%`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$+!,!5!6!!%"%#%$%%%&%'%(%)%*%+%,%-%.%/%0%1%2%3%4%5%6%7%8%9%:%;%<%=%>%?%!$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O$P$Q$R$S$T$U$V$W$X$Y$Z$[$\$]$^$_$!!"!#!7!9!:!;!R!S!T!U!V!W!X!Y!Z![!)"."L!M!Z"["X"Y"A!`-a-f&3"4"5"6"7"<#!!"!#!7!9!:!;!R!S!T!U!V!W!X!Y!Z![!)"."L!M!`-a-!!"!#!7!9!:!;!R!S!T!U!V!W!X!Y!Z![!)"."L!M!A!`-a-}#~#:#.#/#}-!,",#,$,%,&,',(,),*,{'j!i!:&=&;&@&9&>&<&?&l&}"v"{"|"u"z"t"j!i!v"u"t"h&i&j&k&z!y!g&d&e&~-z!y!$###!"~!;#{!}!|!g(h(i(j(?#~"!"~!{!}!|!~"#"""m&%"$""#!#'"&"#"""%"$"'"&"@(6(!(,("(-(#(.($(/(&(1(%(0('(<(7(2()(>(9(4(((8(=(3(*(:(?(5(+(;(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,+,,,-,.,/,0,1,2,3,4,Z&[&\&]&^&_&`&a&b&c&!)")#)$)%)&)')()))*)+),)-).)/)0)1)2)3)4)!-"-#-$-%-&-'-(-)-*-+-,---.-/-0-1-2-3-4-}'D'E'F'G'H'I'J'K'L'M'N'O'P'~'B'C'H"I"^"|'^"v'w'>"?"B"C"<"="D"E"Q"R"S"]"y->"?"<"="]"#/>"?"<"="]"y-l"m"n"b"b!a"k"e!f!c"d"o"p"b"b!a"e!f!c"d"O"_"P"G"`":"F";"t-]![#e"g"g!x-\"T"U"J"K"A"@"i"j"s-h!h"f"O"_"P"`":";"e"g"g!"/\"B!J"K"A"@"i"j"!/h!h"f"O"_"P"`":";"t-e"g"g!x-\"B!J"K"A"@"i"j"s-h!h"f"O"_"P"`":";"t-]!e"g"g!x-\"B!J"K"A"@"i"j"s-h!h"f")#M"N"+#,#*#-#M"N"+","*"-"q"'#%#&#(#+","*"-"x'y'z'5-6-7-8-9-:-;-<-=->-?-W-5,6,7,8,9,:,;,<,=,>,?,@,!*"*#*$*%*&*'*(*)***5*6*7*8*9*:*;*<*=*>*5-6-7-8-9-:-;-<-=->-s�t�u�v�w�x�y�z�{�|�n!]#_#b-d-o�`#r"\#n!{+}+�r"n!b-d-o�r"!)~,l(m(n(},>!|#=!=!B!F!G!H!I!w"x"@#E!D!s"l!m!("k(1!X+>!=!F!G!H!I!w"x"E!D!s"l!m!(">!=!=!B!F!G!H!I!w"x"E!D!s"l!m!("~>!=!=!B!F!G!H!I!w"x"E!D!s"l!m!("1!F+G+P+Q+r(s(b'c'd'e'f'g'h'i'j'k'l'm'n'o'p'q'W'r�s�t�u�v�w�x�y�z�{�|�}�~�''B�C�D�E�F�G�H�I�J�K�L�M�N�!'"'#'$'%'&'(')'*'+','-'.'/'0'1'2'3'4'5'6'7'8'9':';'<'='>'?'@'A'Q'R'S'T'U'V'X'Y'Z'['\']'^'_'`'a'P&Q&Y&R&S&T&U&V&W&X&u�z�w�y�|�P&Q&x�R&S&T&U&V&W&X&u�z�w�y�|�8�9�a�b�c�d�g�i�l�v�!&"&#&$&%&&&'&(&)&*&+&,&-&.&/&0&1&2&3&4&5&6&7&8&e�j�q�r�s�t�{�A&B&C&D&E&F&G&H&I&J&K&L&M&N&O&R+\+Z+_+}+[+W+m+Y+^+]+x+y+~+j+v+w+k+l+r+g+o+z+h+p+s+u+i+{+|+t+n+1*S+T+U+V+"*X*6�-*6*q+`+a+b+c+d+0�/�2�6�5�3�|*q*h*'+m*-+5+f*7+;+x*r*@+i*!+~*#+w*>+=+3+9+:+%+8+?+n*&+.+0+C+1+2+u*(+y*6+<+"+B+,+j*t*k*4+{*e*v*o*/+l*A+s*p*g*$+o(p(C�q(v(w(g�x(p�y(m�z(o�{(n�|(9�t(u(E+&�&�C�C�U�U�g�g�p�p�m�m�o�o�n�n�9�)+I�#*.*A*Q*O�O�B*R*J�+�z*y)~)C*S*++*+9*H*[�[�D*T*%*0*]*c*'*3*&*2*G*W*(*4*/�O�l�l�w)|)^*d*E*U*F*V*j�j�q�q�t�t�s�)*5*+*8***7*I�(�H�M�M�O�O�N�N�J�+�K�W�W�V�V�-�M�Y�Y�[�[�Z�Z�\�\�]�]�_�_�^�^�a�a�`�`�/�O�l�l�i�i�f�f�k�k�h�h�j�j�q�q�t�t�s�u�u�w�w�v�v�u)z):*I*!*,*<*K*Y*_*/�/�=*L*@*O*"�P*x)})6�6�>*M*?*N*Z*`*;�;�=�=�<�[*a*$�}*G�G�v){)F�F�D�E�&�F�\*b*I�I�G�;*J*L�L�$*/*)�'�'�%�%�(�(�+�+�,�,�/�/�-�-�0�0�"�B�7�7�6�6�8�8�5�5�:�:�;�;�=�=�<�>�>�$�D�G�G�E�E�F�F�D�E�&�F�H�H�I�I�G�J�J�L�L�K�K�)�7)8)9):);)<)=)>)?)@)A)B)C)D)E)F)G)H)I)J)K)L)M)_!N)O)P)Q)R)S)T)U)V)W)X)Y)Z)[)\)])^)_)`)a)b)c)d)e)f)g)h)i)j)k)l)`!m)n)o)p)q)r)s)t)AAAAAAACEEEEIIIIDNOOOOO_!OUUUUYTsaaaaaaaceeeeiiiidnooooo`!ouuuuyty"�!�$�*�#�)�!�.�2�1�4�3�@�?�B�A�P�R�Q�T�X�S�_!,�c�b�e�d�r�0�N�"�!�$�*�#�)�A�.�2�1�4�3�@�?�B�A�C�P�R�Q�T�X�S�`!L�c�b�e�d�r�P�s�")#)q!r!$)o!%)x!/!&)')()L"))*)+)k!^!,)-)-!y".)/)0)1)2)3)4)5)6)!q!r!\|x!/!cac"L"-R1!k!^!23-!L&y"&!$!1od"�B�q!r!p�\C�x!/!�l�L"n�4�k!^!-!y"1�k�D�B�q!r!p�\C�x!/!m�l�L"n�4�k!^!-!y"1�k�D�B�q!r!p�o!C�x!/!m�l�L"n�4�k!^!-!y"1�k�D�!!@؉�+!@آ�.!@ؤ�6!@آ�F!@��p!@�+�w!@؁�y!@�q�"#@��%#A�J�'#A�	�1#A���2#A�(�8#A�O�?#B��A#B�:�J#Bع�R#B�|�S#B؝�Y#B���\#B��w#C�E�*$C���1$Cؕ�2$C�m�:$C�d�=$C�_�Y$D��\$D�U�^$D�{�c$D�t�j$D���k$D���r$D��t$D�6�u$D�D�%%D���2%E�m�>%E���D%[�)�G%E�G�U%E��V%E�B�~%F���0(G�V�7(G�-�8(G�E�:(G�x�;(G�b�?(Gء�@(G؜�E(Gؒ�H(Gط�J(G���K(G�3�[(G��f(G�v�l(G��",H�{�+,H��0,Hح�P,I���e,J�[�m,Jث�r,J؏�$-Jظ�)-J�O�*-J�P�2-J�F�4-K��5-Jئ�9-K�$�V-K���}-L���#.L��$.Lض�:.L�r�<.L���=.L���B.L���C.L���D.L���G.L���I.L���U.M�J�V.M�Q�W.M�K�[.M�e�w.M���x.M�Z�*/Mؔ�?/M�9�@/M�G�B/M�8�C/M�:�N/M��Y/M��a/M�d�i/M��j/M���p/N�$�u/N�=�#nNؘ�4nO��InO��\nO�@�^nO��_nO��`nO���2oO�~�GoPؖ�MoP��aoP���doP��"pPؼ�3pQ�)�9pQإ�SpRؖ�{pR�M�.qR�V�0qR�o�5qS��DqS��]qS��aqS�7�fqS�j�iqS؋�uqT�J�wqT�U�zqT�"�!rTة�#rT���$rT���(rT��,rT�L�=rU�.�HrU���[rUا�urUة�vrUش�2sV���=sV���>sV���@sV���RsVز�]sW�K�^sW�d�ssW�.�tsW�V�usW�e�wsW�b�{sW���}sW���"tW���$tW�#�'tW�\�.tW���/tW���4tX��5tW��=tX��BtX�`�OtX���itX�p�ktX؆�rtX�L�utO��ytY��5uY�~�:uYذ�FuY��VuZ���XuZ���ZuZ�Q�]uZ�o�_uZ���cuZ��juZ�X�puZ،�suZط�Dv[�s�Nv[���]v[�e�uv[ؔ�~v[��!w[��"w[��3w\�
�6w\�9�dw\���ew\���kw\��nw]��sw]�I�)x]��*x]��,x]�1�4x]ؓ�<x]��>x]�#�Bx]�R�Vx^؅�cx^؄�wx^س�yx^ؾ�zx^���%y_ظ�/y_ؠ�2y_��9y_ط�By`؊�Hy`ػ�Yy`؂�^y`���fya��kya�U�zya�k�~ya���!za���,za���/za��Ozb�I�Pzb�F�Wzb�k�ezb؇�fzb؈�qzbغ�rzbػ�~zb��!{b�)�,{b�q�-{b�C�6{bؙ�7{b���={b���>{b���N{b��O{b���W{c��Z{c�q�\{c��]{c��a{c�6�e{c؉�g{c���i{c�2�q{c��"|dؠ�#|dر�8|eؐ�B|e���L|e��V|e���Y|e��]|e�P�v|f���,}f�r�K}g���L}g�=�Y}g��[}g؊�]}g�I�g}g���m}g���p}g���%~g���)~h�/�+~h��2~h��5~h؂�S~H��X~h،�Z~i�7�n~i���p~i��r~i��v~iز�".@��B/D�=�L/D��`/E�n�{/Fؽ�TOB؟�cOEش�nOG�4�:uL���ruM���)vM�?�2vM�c�`vO��lwQ���~xU؎�)yU��GyU�q�TyV���nyWء�]zZ��3{[�@�I{\���l{]؄�I|`�w�Q|`���f~hؐ�w$K0�0x$M0�0y$O0�0z$Q0�0{$S0�0w%�0�0x%�0�0y%�0�0z%�0�0{%�0�0|%�0�0}%�0�0~%�0�0x&�1�0D+�H+TI+TJ+�K+�L+YM+YN+ZO+Ze+��f+���0��a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������"!b!c!d!e!f!g!h!i!��12!!!�p�N�P�QS$S��TYW���X�[�\S]��_�` aNe;fef�)�h��kj�j�m�m(p��u�v�v�0y�����z���}�}�b���� �!��"���v�#�$�%�ސ&��'�(����)�;�M�Q�*�+�,���ٚr�-�ўp!q!r!s!t!u!v!w!x!y!`!a!������	������������"�&�*�+�/�1�2�4�7�9�:�<�=�?�A�C�D�E�F�G�S�U�V�W�X�Z�]�^�h�i�m�n�o�p�q�s�u�z�}�������������������������|�~�������������������������������������������Ýǝɝʝԝ՝֝םڝޝߝ���������
������������z�{�|�������������������������������������������ƞȞ˞՞ߞ���������������������������"�#�&�'�(�)�*�1�5�6�7�=�A�C�D�E�I�J�N�O�P�S�T�V�X�[�]�^�_�c�i�j�\�k�h�n�p�r�u�w�{�������������/�0�2�3�4�:�<�E�=�B�C�G�J�S�T�_�c�b�e�i�j�k�p�v�w�{����	���
�������� �&�+�-�3�4�5�7�9�:�=�H�K�L�U�V�W�[�^�a�c�e�f�h�j�k�l�m�n�s�u�w�x�y������������������������������������������������������������ǛțΛЛכ؛ݛߛ����������������Ùəәԙٙڙܙޙ��������������������� �"�#�$�'�-�.�3�5�6�8�G�A�D�J�K�L�N�Q�T�V�]���������������������������ÚƚȚΚКҚ՚֚ךۚܚ��������������������+�.�/�0�2�3�5�%�>�D�G�J�Q�R�S�V�W�Y�Z�b�c�e�f�j�l���������������������˜ŘȘ̘������������������"�&�'�+�1�2�3�4�5�9�:�;�<�@�A�F�G�H�M�N�T�X�Y�[�\�^�_�`�������������������	����!�"�#�(�1�3�A�C�J�N�O�U�W�X�Z�[�c�g�j�n�s�v�w�x�{�}������������������������������������������������ėŗǗɗʗ̗͗ΗЗїԗחؗٗݗޗ�ۗ����������
��
������ �#�&�~�������������������������������������ƕȕɕ˕Еѕҕӕٕڕݕޕߕ�����"�$�%�&�,�1�3�7�8�9�:�<�=�A�R�T�V�W�X�a�n�t�{�|�~��������������������������������������ʖҖ�]ؖږݖޖߖ����z�}����������������������������������������������������ēœƓǓɓʓ˓͓̓ӓٓܓޓߓ������������������	�
�������.�/�1�2�3�4�;�?�=�C�E�H�J�L�U�Y�\�_�a�c�h�k�m�n�o�q�r�����x�y���������������������������������������’ÒŒƒǒȒ˒̒͒ΒВӒՒגْؒܒݒߒ����������������
��������!�$�%�'�)�*�3�4�6�7�G�H�I�P�Q�R�U�W�X�Z�^�d�e�g�i�j�m�o�p�q�s�t�v�‘Ñőӑԑבّڑޑ����������������������	�
���������#�$�%�&�(�.�/�0�3�5�6�8�9�:�<�>�@�B�C�F�G�J�M�N�O�Q�X�Y�\�]�`�a�e�g�h�i�n�o�p�u�v�w�x�y�{�|�}����������������ĐŐǐȐՐאِؐܐݐߐ�Ґ�������������
��������� �%�"�#�'�)�.�/�1�4�6�7�9�:�<�=�C�G�H�O�S�W�Y�Z�[�a�d�g�m�t�y�z�{�������������������������������������������������������C�G�O�Q�R�S�T�U�X�]�^�e�������������������������Əʏˏ͏ЏҏӏՏ������������������(�)�/�*�,�-�3�4�7�?�C�D�L�[�]�b�f�g�l�p�t�y�������������������������������������������̐��Ð#�&�'�1�3�6�7�8�9�=�@�A�K�M�N�O�T�[�\�]�^�a�b�i�l�m�o�p�q�y�z�{�������������������������������������������ÎĎǎώюԎ܎������������������� �!�#�%�'�(�,�-�.�4�5�6�7�:�@�A�����������������������ŌƌɌˌό֌Ռٌ݌����������������	����e�i�l�n������������������������������������������ōƍǍȍʍ΍эԍՍ׍ٍ���������������� �!�"���������ÊƊȊɊʊъӊԊՊ׊݊ߊ����������������
�-�0�7�<�B�C�D�E�F�H�R�S�T�Y�M�^�c�m�v�x�y�|�~�����������������������8�9�=�>�E�G�I�K�O�Q�S�T�W�X�[�]�Y�c�d�f�h�i�m�s�u�v�{�~���{�|�}���������������������������������ԉՉ։׉؉��������������������� �"�$�&�+�,�/�5�7�=�>�@�C�E�G�I�M�N�S�V�W�X�\�]�a�e�g�u�v�w�y�z�{�~����������������������������������:�<�A�C�E�H�I�J�K�N�Q�U�V�X�Z�\�_�`�d�i�q�y�{���������������������������ʈˈ͈̈Έш҈ӈۈވ��������
��������� �&�'�(�0�1�2�5�9�:�>�@�B�E�F�I�O�R�W�Z�[�\�a�b�c�k�n�p�s�u�z�(�.�/�1�2�9�:�<�=�>�@�C�E�M�X�]�a�d�e�o�q�r�{�������������������������������������������������������ȇɇʇ·Շևهڇ܇߇���������������	�
�������������(�-�.�0�2�5������
���������!�'�)�6�8�:�<�=�@�B�F�R�S�V�W�X�Y�]�`�a�b�c�d�i�l�o�u�v�w�z�������������������������������������������Æņц҆Ն׆چ܆���熈�������������������!�#�܄������2���������������"�#�$�%�'�*�+�/�3�4�6�?�F�O�P�Q�R�S�V�Y�\�]�^�_�`�a�b�d�k�o�y�z�{�}������������������������������������������������…Džʅ˅΅��؅څ߅�������}������������������������������������������ǃɃσЃуԃ݃S������������
�������/�9�E�G�H�J�M�O�Q�R�V�X�Y�Z�\�`�d�e�g�j�p�s�t�v�x�|�}�����������������������������������„DŽȄ̄τӄK�N�O�Q�V�\�`�c�g�m�t�{�}����������������������������������������������������������������ƂЂՂڂ������������������
��T�����!�"�,�-�.�0�3�7�:�<�=�B�C�D�G�M�N�Q�U�V�W�p�x����������������� �$�'�,�0�5�:�<�E�G�J�L�R�W�`�a�g�h�i�m�o�w���������������������������������ˁÁŁʁ΁ρՁׁہ݁ށ�������������������������!�"�(�2�4�:�C�D�E�F�q}~�������������������������������������
�
���������� �$�&�,�.�0�4�5�7�9�:�<�>�@�D�`�d�f�m�q�u���������������������Ȁ̀πҀԀՀ׀؀����}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}�}~�}�}�}�}�}�}�}�}�}�}�}~~~~~~~ ~'~(~,~-~/~3~6~?~D~E~G~N~P~R~X~_~a~b~e~k~n~o~s~x~~~�~�~�~�~�~�~�~�~�~�~�~<;=>?CDGORS[\]acdefma|c|g|i|m|n|p|r|y|||}|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|}}}	}}}}}}}}#}&}*}-}1}<}=}>}@}A}G}H}M}Q}S}W}Y}Z}\}]}e}g}j}p}x}z}{}}�}�}�}�}�}�}�}�}�}�}�}�}�}1{4{={?{@{A{G{N{U{`{d{f{i{j{m{o{r{s{w{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{�{|||||	||||||| |%|&|(|,|1|3|4|6|9|:|F|J|U|Q|R|S|Y|Z|[|\|]|^|�y�y�y�y�y�y�y�y�yzzz	z
zzzzzz!z'z+z-z/z0z4z5z8z9z:zDzEzGzHzLzUzVzYz\z]z_z`zezgzjzmzuzxz~z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z�z{{{#{'{){*{+{-{.{/{0{�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�xy�x�x�x�x�xyyyyyyy y%y'y)y-y1y4y5y;y=y?yDyEyFyJyKyOyQyTyXy[y\ygyiykyryyy{y|y~y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�y�ydwgwjwlwpwrwswtwzw}w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�wxx	x
xxxx!x"x#x-x.x0x5x7xCxDxGxHxLxNxRx\x^x`xaxcxdxhxjxnxzx~x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x:v<vJv@vAvCvDvEvIvKvUvYv_vdvevmvnvovqvtv�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�vww
wwwwwwwww"w(w-w.w/w4w5w6w9w=w>wBwEwFwJwMwNwOwRwVwWw\w^w_w`wbwuuu u!u$u'u)u*u/u6u9u=u>u?u@uCuGuHuNuPuRuWu^u_uauouquyuzu{u|u}u~u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�uvvvvvv
vvvvvvvvvvvv#v%v&v)v-v2v3v5v8v9v�stttt
tttt$t&t(t)t*t+t,t-t.t/t0t1t9t@tCtDtFtGtKtMtQtRtWt]tbtftgthtktmtntqtrt�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�tu�rsssss
ssssss"s$s's(s,s1s2s5s:s;s=sCsMsPsRsVsXs]s^s_s`sfsgsiskslsnsosqswsys|s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�shqyq�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�qrrr	rrrrrr$r+r/r4r8r9rArBrCrErNrOrPrSrUrVrZr\r^r`rcrhrkrnrorqrwrxr{r|rr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�o�o�o�o�o�o�o�o�opppp
pp p#p/p4p7p9p<pCpDpHpIpJpKpTpUp]p^pNpdpeplpnpupvp~p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�pqqqqqqqqq q+q-q/q0q1q8qAqEqFqGqJqKqPqRqWqZq\q^q`qbncnhnsn{n}n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�noo
oo
ooooo&o)o*o/o0o3o6o;o<o-oOoQoRoSoWoYoZo]o^oaoboholo}o~o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o�l�l�l�l�l�l�l�l�l�lmm
mmmmmm&m'm(mgl.m/m1m9m<m?mWm^m_mamemgmompm|m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�mnnn"n'n2n6n9n;n<nDnEnHnInKnOnQnRnSnTnWn\n]n^n~k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�klll	l
llllll&l'l(l,l.l3l5l6l:l;l?lJlKlMlOlRlTlYl[l\lklmloltlvlxlyl{l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l4j7j;j>j?jEjFjIjJjNjPjQjRjUjVj[jdjgjjjqjsj~j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�jkkkk	kkkkkkk$k(k+k,k/k5k6k;k?kFkJkMkRkVkXk]k`kgkkknkpkuk}k�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�hi	i
iiiiii1i3i5i8i;iBiEiIiNiWi[icidieifihiiilipiqirizi{ii�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�ijjjjjjjj j$j(j0j2jfglgngtgvg{g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�gRhhhhh(h'h,h-h/h0h1h3h;h?hDhEhJhLhUhWhXh[hkhnhohphqhrhuhyhzh{h|h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�hf!f"f#f$f&f)f*f+f,f.f0f1f3f9f7f@fEfFfJfLfQfNfWfXfYf[f\f`faf�fjfkflf~fsfuffwfxfyf{f�f|f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�f�fgggggg g"g3g>gEgGgHgLgTgUg]g�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�deee	e
eeeeeeeee"e&e)e.e1e:e<e=eCeGeIePeReTe_e`egekeze}e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�efff	f
ffffffxc|c}cc�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c	d
dddddd d"d$d%d)d*d/d0d5d=d?dKdOdQdRdSdTdZd[d\d]d_d`dadcdmdsdtd{d}d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�a�a�abbbbbbb b"b#b'b)b+b9b=bBbCbDbFbLbPbQbRbTbVbZb\bdbmbobsbzb}b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�bcc
cc
ccccc)c*c-c5c6c9c<cAcBcCcDcFcJcKcNcRcScTcXc[cecfclcmcqctcuc�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`aa
aaaaaaaaaaaa"a*a+a0a1a5a6a7a9aAaEaFaIa^a`alaraxa{a|aa�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�ao_r_t_u_x_z_}_~_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_`
`
```````$`-`3`5`@`G`H`I`L`Q`T`V`W`]`a`g`q`~``�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�]�]�]^^
^^^^^^ ^.^(^2^5^>^K^P^I^Q^V^X^[^\^^^h^j^k^l^m^n^p^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^________!_"_#_$_(_+_,_._0_4_6_;_=_?_@_D_E_G_M_P_T_X_[_`_c_d_g_m\p\t\u\z\{\|\}\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\]]
]]+]#]$]&]']1]4]9]=]?]B]C]F]H]U]Q]Y]J]_]`]a]b]d]j]m]p]y]z]~]]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z[[[[4[[[[![%[-[8[A[K[L[R[V[^[h[n[o[|[}[~[[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[\\\\#\&\)\+\,\.\0\2\5\6\Y\Z\\\b\c\g\h\i\oYrYuYvYyY{Y|Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�YZZZ
ZZZZZ#Z$Z'Z(Z*Z-Z0ZDZEZGZHZLZPZUZ^ZcZeZgZmZwZzZ{Z~Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�ZX
XXXX X&X'X-X2X9X?XIXLXMXOXPXUX_XaXdXgXhXxX|XX�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�XYYYYYYYA�Y!Y#Y$Y(Y/Y0Y3Y5Y6Y?YCYFYRYSYYY[Y]Y^Y_YaYcYkYmY�V�VWWW
WWWWWWW W"W#W$W%W)W*W,W.W/W3W4W=W>W?WEWFWLWMWRWbWeWgWhWkWmWnWoWpWqWsWtWuWwWyWzW{W|W~W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�WXXX	X�W�U�U�U�U�U�U�U�U�UVV
V
VVVVVVV,V0V3V5V7V9V;V<V=V?V@VAVCVDVFVIVKVMVOVTV^V`VaVbVcVfViVmVoVqVrVuV�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�TUUUU	UU
UUU*U+U2U5U6U;U<U=UAUGUIUJUMUPUQUXUZU[U^U`UaUdUfUU�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�USSSSSSSS%S'S(S)S+S,S-S0S2S5S<S=S>SBSLSKSYS[SaScSeSlSmSrSyS~S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�STTT!T'T(T*T/T1T4T5TCTDTGTMTOT^TbTdTfTgTiTkTmTnTtTT�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�QRRRRRRRR"R(R1R2R5R<RERIRURWRXRZR\R_R`RaRfRnRwRxRyR�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�RSS
SS�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�PQQQQQQ
QQ�PQQQQQQQ#Q'Q(Q,Q-Q/Q1Q3Q4Q5Q8Q9QBQJQOQSQUQWQXQ_QdQfQ~Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�OPPPP
PPPPPPPPPPP"P'P.P0P2P3P5P@PAPBPEPFPJPLPNPQPRPSPWPYP_P`PbPcPfPgPjPmPpPqP;P�P�P�P�P�P�P�P�PNNNNNN#N$N(N+N.N/N0N5N@NANDNGNQNZN\NcNhNiNtNuNyNN�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�NOOOOOOOOOOO.O1O`O3O5O7O9O;O>O@OBOHOIOKOLOROTOVOXO_OcOjOlOnOqOwOxOyOzO}O~O�O�O�O�������	
������!%�����+/)57:><DHF������QM�UYW[]a_ec����m�qksoi����u��wz~|��������
����" $�����0*.(469=;CGE������PL�TXVZ\`^db����l�pjrnh����t�xvy}{�&2A?J�Rf���'138B@IK�S�g�	
RSTUVWXYZ[\^_�����������������������������^���������"!�!����g����h��Lh�2��LB�J�_�b�h�i�k�h�s�v�w�~�����������������Ýǝɝ֝ڝߝ���M
��
����{�H؀�������hؽ�i�ߞ����wM���/�7�:�=�A�E�F�S�U�X�i�]�i�i�i�m�p�u�i�1�6�D�L�X��K���K���K��f�ƚКҚ՚�Kܚ���������+�3�=� LK�c�e�k�l�s�v�w�������g�gز�����Ǜ�؛ݛ�����g��g��g������"�'�)�*�g�1�6�7�E�\�g�I�J�g�T�X�[�]�_�i�j�k�m�n�p�r�u�z�j�d�dؖ�������������̗їԗؗٗ���
�����Je�#�2�3�%�G�f�������eط���������˜ǘ˘�e���������;Ke���e����e�1�2�3�:�;�<�@�A�F�M�N�\�_�`�����������Ùəԙٙޙf����
���� �b�������
����'�)�b�b�G�Q�W�Z�k�q�s���b�b؈���������b�b��Ǔܓ��	������2�4�;�E�b�b�m�o�x�y�������cث���c�ȕc�c�,�3�4�c�<�A�a�c؂�cؚ�c��I�����������Ic�ؖږݖJ�#�)J6�A�G�U�W�[�a؅���������H����ÐȐa�ܐߐa�������������7�9�:�F�G�W�Y�a�d�t�y�������������Ñđڑb�b����
���b�3�B�G�J�N�Q�V�Y�`�a�e�g�h�b�b�|�}����������������b�bز�����ƒΒВגْ���b�W�i�m�s�_ؓ�����dG����֌Ռٌ_���_�	��l�������_�ƍȍٍ���G���`���!�"�'�`�H6�9�K�T�b�l�m�o���������������`�юԎNH��`����+�@�J�X�aؤ���f���a��Ə$�ʏ͏ӏՏ������7�a�C�D�]�a�.�2�<�FJ�X�_�d�]�]�i�]�o�����������҈]�шӈۈ��AF�]�7�]�B�E�I�]�eFb�������������։؉뉡F�����F��^�!�5�>�E�M�X���������׊��^�
��
���-�C�GQ�^�v��������������9�^�=�^�^�E�G�O�T�[�[ط���Džʅ؅م߅������!�$�'�\�9�<�\�@� �S�V�o�w�z���������������!�������ÆцՆ׆�憸E�������!�#�1�:�>�@�C�Q�X�d�e�r�|�\�\ا���������\��E��]��·��߇]�����������(���������������T���0�<�D�W��D��D�D����������ɃЃԃ݃�����[��9�J�O�Q�R�Y�Z�\�[�e�v�x�|���
E܄������E΄τӄ[����������$�%�+�4�O�o�%ECE>�Q�S�^�a�b�[�{�}������������[���
�����$�,�0�C�f�q�u�{�����������Y�ŀՀ؀�Y�
������C5����C$�'�,�Y�=�Di�D��D����"D������ÁցہZ��Z��Z����Z��Z��!�"�Z�2�4�<�F�I�E�Z�K�vDO�zDW�Z�\�c�Z�]�^�y��D}�������������|W��|W��|�|W�|}	}�B}}W�W�=}>}@}G}X�W��BY}Z}j}p}�B}X؆}�}�}�}X؝}�}�}�}�}�}�}�}�}�}�}CX�X�~~~ ~'~,~E~s~u~~~�~�~+C�~�~�~CC<;>CDO�4X�RX�acdm}~Xؐ{QOؖ��Y������8zGzLzVzYz\z_z`zgzjzuzxz�z�z�z�z�zVشA�z�z�z�A�z�z�z�z�zV�V�{V�={'{*{.{/{1{�A�A{A{�AU{y{d{f{i{s{V�B�{�{�{B�{�{�{�{�{W�W��{�{�{�{�{||||&|E|J|Q|W|^|a|i|n|o|p|W�W�Wئ|Wض|�|�|W��|W��|T�9@T�T�Xw`wjwT�rw|w}wT�X@�w�w�w�w�w�w�w�w�w�w�w�@�w�w�wU�xx	x
xx!x,xGxdxjxU؊x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�xU�yy0y%y;yJyXy[yAgyry�y�y�y�y�y�y�y�y�y�y�y�y�yHAU�U�OA
zzzzzcA-z�t�t�t�t�t�t�t�t�t�t�t�t�tR�tR� u$u*uW?S�=u>u@uHuNuPuRuluruquzu}u~u�uS،uu?�uw?�u�u�u�u�u�u�u�u�u�u�u�u�u�u�uvvvv�?S�vvvS�%v(v<v3vS��?AvS�IvUv�?nv�v�v�v�v�v�v�vT��vT��v�vT�ww-w5w�qP��q�q�q�qr>I�+r4r8r9r,NBrSrWrcrQ�nrorxrr�rQحr�r�r�r�r`>�rf>h>�r�rssss�>9s,s1s3s=sRs�>kslsR�nsosqsws�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�s�st�st$t1t9tSt@tCtMtRt]tqt�t�t�tRؒt�t�t�n�n�n�n�n�n�n5o�n�n�n
ooo%o6o<oO�RoWoZo`oho�o}o�o�o�o�o�o�od=�o�o�o�o�o�oP�opp
p#pP�9p:p<pCpGpKp�=Tpepiplpnpvp~p�p�p�p�p�pP؟p�pP��p�p�p�p�pqqqqqq�=/q1qPqJqSq^q�=�q�q�q�q�q�q�q�k�kNؽk�k�k�k�k�k�k�k�k�kl
ll5l6l:lO�?lMl[lml�l�l�<�l�l�l�l�l�l�<�l�l�l�l�l�lO�m
m$m&m'mgl/m<m[m^m`mpm�m�m�m�m�m�mO�nO�O�Oثm�m�m�m4m�m�m�m�m�m�m�m6nn"n'n=2n<nHnInKnLnOnQnSnTnWncn=�h�h�h�h�hii�;�;M�;i�;Fiiilirizii�i�;�i�i�i�i�i�i�i�i�i�iM�M�0jM�M��i�i�i�i�;�i�ijjjM�2j3j4j?jFjIjzjNjRjdjM�~j�j�j�;�j�j�jMثj�j�j�j�j�j�jM�M��j�j�j�j�jN�kkkkN�k&</kJkXklkukzk�k[fcfL�L�jfkflfmf{f�f�f�f�f;�f�f�f;�f;�f�:gggL�gL�L�LgMgTg]gL�L�L�tgvgLؒgL�c�h�g�g�g�g�g�g�g�g�gM�M�M�hh-hM�3h;h>hDhEhIhLhUhWhw;khnhzh|h�h�h�hm;�h�h�h�h�h�h�h�h�hM�M���h�h�h�h�h�b�b�bJ�bc
ccJ�J�2c5c;c<cAcDcNcJ�YcK�J�lc�c�cKؔc�c�c�c�c�c�c�c�c�c	dd%d)d/dZd[d]dsd}d�d�d�d�d�d�d�d�dK��d�d�den:eees:e2eDeTekeze�e�e�e�e�e�e�e�e�e�e�e�:�e�e�eff!f*fEfQfNf�:L�Wfn^Hإ^�^�^�^�^�^�^�^H�^___H�_G_c_r_~_�_�_�_�_�_�8�_�_�_�_�_�_�_�_�_�_9`"`$`9L``�`�`�`Iذ`�`�`�`�`�`�`�`�`aaaaa:ao9AaFa`a|aJؒa�a�a�a�a�a�aJ��a�a�a�aJ�b#b)bFbLbQbRbabdb{bmbsb�[�[a7�[b7�[�[l7k7�[�[u7\)\0\G�_\c\g\h\i\p\G�G�|\G�G؈\�\�7G�Gؠ\�\�\�\Gح\�\G��\G�G�]]+]] ]$]&]1]9]B]�7a]j]�7p]G�7�]8�]�]�]�]�]�]�]Gع]�]�]�]�]G��]�]/8^68^^@8^.^>^I^\8V^a8k^l^m^ X'X2X9XD�IXLXgX�X�X�X�X�X�X�X�X�XE��X�X�X�X�XYYY
YY$YEؑ6=Y�6FY�6[�[Y_YE�uYvY|Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�YE�E��6Z
ZZ'Z-ZUZeZzZ�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z[[[4[-[L[R[h[o[|[[�[�[F�<UAU�5GUJU�5`UaUdUC�}U�U�U�U�5�UC�CؿU�U�U�U�U�5�UC��U(VC�VV0V7V�5=V?V@VGV^V`VmV6�V�V�V�V�V�V�V�V�V�V�V�V�V�VD�W#WD�)WD�EWFWLWMWD�hWoWsWtWuW{WD�DجW�W�W�W�W�WD��WD�D��W�W�WJ6�W�W�WXXQ@�QQA�`QA�sQ�Q�Q�4�Q�Q�Q�4�QA�A��Q�QRRRA�UR\RlRwR�R�RBؘRBؤR�R�R�R�R�R5�RB�R
SS$S5S>SBSB�B�gSlSzS�S�SBطS�SB�]5^5�S�Sc5�S�SUT$T(Tn5CTbTfTlT�T�T�T�T�T�T�T�T�T�T�TC��T�T�T�TUU	U@�NNN)N+N.N@NGNHN@�QN4@�ZNiN�N,4.4�N�N@ؼN�N�N�N�N�N�N�NOOdO7O>OTOXO@�wOxOzO}O�O�O�O�O�O�O�O�O�O�O�Oj4�OPPPPP"Ph4BPFPNPSPWPcPfPjPpP�P�P�P�P�P�P�P�P@رP�P�P�P�P�P@��P@��P�P�P�P�4W�Y�Z��e�l���Ș�X�����$�-�.�8�J�N�R�����ÚΚ֚���� �L-�^�y�f�r�u�������������Λ�����#�A�O�P�S�c�e�w���C�G�R�c�p�|�����������םh����|�������������Þў�9�W����������Y[\w^&vk~�����8�9�:�<�@�C�O�x���’˒̒Ӓ����!�%�H�I�J�d�e�j�p�������Ɠޓߓ���3�J�c�k�q�r���������������˕Еӕ�IڕޕX����������Җޖh���3�;�M�N�O�Z�n�s���������ɗޗۗ�i�
��+�0�j�R�S�V�"�7�G�N�]�a�u�y���Њߊ�"�b�c�F�T�Y�i���I�h�d�����e�����΍э׍ �#�=�p�{�`��DH���-�6�T�`ئ�������-�g�����������������ĐŐǐאݐސ��&����"�#�'�/�1�4�=�H�[�����������ב���בޑ������
�:�@�<�N�Y�Q�9�g���w�x��גْВ'�Ւ�Ӓ%�!���(������p�W���Ɠޓ��1�E�H����)�����3�;�C�M�O�Q�U�W�e�*�+�'�,���N�ٚܚu�r��������p�k�-��ўp!q!r!s!t!u!v!w!x!y!����בޑ������
�:�@�<�N�Y�Q�9�g���w�x��גْВ'�Ւ�Ӓ%�!���(������p�W���Ɠޓ��1�E�H����)�����3�;�C�M�O�Q�U�W�e�*�+�'�,���N�ٚܚu�r��������p�k�-��ўp!q!r!s!t!u!v!w!x!y!���у����
�_�H�_�p�s�������������„[�2��#�/�Y�d����z���������˅΅�������\��)�8�W�[�6�b��El�u������������q������������Eև��
��������ʈΈ]���`����'�0�2�9�@���a�ԉ�����r$s�ws�s�s�s�s�st�s&t*t)t.tbt�t�tuou�v�v�v�v�v�Fw�R!xNxdxzx0y����y��y�z�z��z�{�H}\}�}�}�}R~G���b��ǃ��H���S�Y�k���� �!�����7�y�����ߊ"���S�����v�#�ώ$�%�g�ސ&��'�ڑA}H}S}\}z}�}�}�}�}�}�}�}�}W�(~~~~Y�G~R~a~�~�~GZ����������[��&�5�7�<�ʀ׀���J�`�g�h�m���ʁρׁ\�SD[D`�t�Z؎�����������������ƂՂ������b�"�-�:�C�G�Q�U�}���������������ǃσ�_]`�`�`�`�` a�`a7a0a�ab�b�c`d�d�dNeff;f	f.ff$fefWfYf�sf�f�f�f�f�fg)�fg�gRh�ghDh�h�hi��i�i0jkjFjsj~j�j�j�k?l\l�lol�lm�mom�m�m�m�m�m�m9n\n'n<n�n�o�o�opp(p�p�pqq\qFqGq��q�q�rCxNxOxQxhxnxK��xUحx�x�xy�xy.y1y4yL�M�EyFyN�O�P�\yQ���yyR�S���y�y�y�y�yU��y�y�y�yzT�9z]zmzU��z�zVسz�z�z�z�z{-{;{G{N{`{m{o{r{�{V��{�{|1|| |3|6|dBW�Y|m|y|�|�|�|�|�|�|�|}}}}#}1}�~�H���܄�O�p1f�h���fE_(N�N�NOO9OVO�O�O�O�O�O@P"P�OPFPpPBP�P�P�PJQdQ�Q�Q�QR�R�R�R�RSS$SrS�S�S�S��T�T�T�T�UYWeW�W�W�W���X�XYSY[Y]YcY�Y�YV[�[/u�[�[\�\�\�\']S]�B]m]�]�]�]!_4_g_�_t
tttJ�&t(t*t+t,t.t/t0tDtFtGtKtWtbtktmt�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�tuu/uouyu�ur?�u�uvvvvvvv-v5vCvKvdvevmvovqv�v�v�v�v�v�v�v�v�v�v�v�v�v�v
ww4w6wFwMwNw\w_wbwzw�w�w�w�w-xU��n�nooG�*o/o3oQoYo^oaobo~o�o�o�o�o�o�o�o�o�o�o�o�o�opp(pJp]p^pNpdpup�p�p�p�p�p�p�pq+qq q.q0qFqGqQqH�Rq\q`qhq��q�q�q�q�q�q�qrrUrVr?>�r�r�r�r�rQ�'s(s�Psfs|s�s�s�s�s�s�s�s�s�s�s�s�s�;�i�i�i�i�ijjM�;j>jEjPjVj[jkjsjM؉j�j�j�j�j�j�j<�kk,k5kFkVk`kekgkwk�k�k�kp��k�k�k�kll3lYl\l�ltlvl�l�l�l�l�l�l�l�l�l�lO�mm.m1m9m?mXmemE��m�m�m�m�m�m�m�m�m�m�m�m�mF�4nDn\n^n�n�n�n�d�d�d�d�d"e)eA�ge�eB�f	fff:f"f$f+f0f1f3f�fHfLfL�YfZfafefsfwfxf�fC��f�f�f�f�f";�f�f�fg)�3gfgGgHg{g�g�g�g�g�g�g�g�g�ghRhh,h1h[hrhuhD��h�h�h�h�h�h�h�h�h�h
iIiM�5iBiWicidihi�i��i�i�i�;3�1�0�5�6�9�:�7�8�?�@�=�>�A�B�C�D�;�<�/X�iY�dt�Q�qSV�]^^X^^^�^(��^�^____#_4_6_=_@_E_T_X_d_g_}_�_�_�_�_�_�_�_�_�_�_
```3`5`G`=��`�`�`�`�`�`�`a+a0a7a>��a?��a�a@�"b>bCbVbZbob�b�b�b�b
cc9cCcec|c�c�c�cdd"dydQd`dmd�d�d�d/X�iY�dt�Q�q]�^�d�Q�P�Y�r�������o�z���������ĝ��������Ɲϝٝӝ���������u�y�}���������������������������a�̞ΞϞОԞܞޞݞ������������������v�!�,�>�J�R�T�c�_�`�a�f�g�l�j�w�r�v�������������"�#�%�'�(�)�*�.�/�2�D�C�O�M�N�Q�X�t���������������������ʛ��ƛϛћқ���ԛ�:������	������
��.��%�$�!�0�G�2�F�>�Z�`�g�v�x����	�����*�&���#��D���A�?�>�F�H�q�t�s���������ĘØƘ���	����!���$� �,�.�=�>�B�I�E�P�K�Q�R�L�U�������������ߙۙݙؙљ�����������+�7�E�B�@�C�>�U�M�[�W�_�b�e�d�i�k�j���������ϚњӚԚޚߚ��������]�_�f�r�l���������������������������Ζ˖ɖ͖M�ܖ
�Ֆ�����������$�*�0�9�=�>�D�F�H�B�I�\�`�d�f�h��Rk�q�y���|���z���������������������×Ɨȗ˗ܗ�O���z������8�$�!�7�=�F�O�K�k�o�p��"��#�:�5�;�\�`�|�n�V�����������֓ד��ؓÓݓГȓ�������6�+�5�!�:�A�R�D�[�`�b�^�j�)�p�u�w�}�Z�|�~����������������������������������ʕ�oÕ͕̕Օԕ֕ܕ���!�(�.�/�B�L�O�K�w�\�^�O�P�Q�R��I�>�V�X�^�h�o�v���r���}���������������������Hbې���2�0�J�V�X�c�e�i�s�r�������������������������ɑˑБ֑ߑ�ۑ����������,���^�W�E�I�d�H���?�K�P���������Z�ϒ��������D�.�G�I�L�P�H�Y�d�`�*�c�U�v�r�|�����������������������������Ǝ����ŎȎˎێ������
����������&�3�;�9�E�B�>�L�I�F�N�W�\�b�c�d�������������ڏ������������!�
����'�6�5�9���_�l�o�t�}�����������������:�A�?�H�L�N�P�U�b�l�x�z���������������|���b��������������Ȍ����ڌ��������
���
��N��͌��g�m�q�s���������ύڍ֍̍ۍˍ��ߍ���	�������B�5�0�4�J�f�d�m�j�o�t�w�~�������������������������������ډ܉݉��������%�6�A�[�R�F�H�|�m�l�b���������������������Ċ͊Šڊ���������ފۊ������� �3���&�+�>�(�A�L�O�N�I�V�[�Z�k�S�c�j����������ˇ����Ї֖��ć��LJƇ������
��������҇���"�!�1�6�9�'�;�D�B�R�Y�^�b�k���~���u�}���r�����������������������ÈĈԈ؈و݈����������
��C��%�*�+�A�D�;�6�8�L��`�^�A��K�U�������������m�����ꅇ���w�~���Ʌ��υ��ЅՅ݅�܅��
��������"��0�?�M�UNT�_�g�q�����������������ĆƆ��Ɇ#���Ԇކ��߆ۆ���������	�
���
�4�?�7�;�%�)��`�_�x�L�N�t�W�h�n�Y�5�4��2�1�@�9�P�E�/�+���������������#�������|���s�u����������΃���؃��������
�"� ���8����m�*�<�Z���w�k���n���i�F�,�o�y�5�ʄb�������ل̈́��ڄЄ��Ƅք��!������,������@�c�X�H���F�>�S�Q���q�n�e�f�t�������������������_�������������������Ɂ́сف؁ȁځ߁�����������
�
���)�+�8�3�@�Y�X�]�Z�_�d�b�h�j�k�.�q�w�x�~���������������߂҂���������ނ�܂	�قELMNPQUTX_`higx�����������������q�����������ܘ�������!�(�?�;�J�F�R�X�Z�_�b�h�s�r�p�v�y�}�����������������Q��ۀ�ـ݀Āڀր	����)�#�/�K�}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}�}�}[}�}}}�}�}�}�}�}�}�}�}=~�}�}�}�}�}�}�}�}�}�}�}�}�}~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~�~�}}~��~�~�~�~�~�~�~�~�~�~�~�~8:z{{M{{L{E{u{e{t{g{p{q{l{n{�{�{�{�{�{�{�{�{�{]{�{�{�{�{�{�{�{�{�{||�{�{`||||�{�{|
|�{#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|�|;��|�|�|�|�|}�x�x�x�xyyyy,y+y@y`yWy_yZyUySyzyy�y�y�yK��y�y�y�y�y�y�y�y�y�y�yz
zzz zz�y1z;z>z7zCzWzIzazbziz��pzyz}z�z�z�z�z�z�z�z�z�z�z�z�z���z�z�z�z�z�z�z�z�z�z�z�z�z�z{{
{{3{{{{5{({6{P{rvvvxv|v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v/��vwww)w$ww%w&ww7w8wGwZwhwkw[weww~wyw�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�wxx&y x*yEx�xtx�x|x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�t�t�t�t�t�t�t�t�t�tuuuuu
uuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvu�u�utu�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�uv�u�u�u�uv
v	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpv�q�q
rrr(r-r,r0r2r;r<r?r@rFrKrXrtr~r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�rPs
ssss4s/s)s%s>sNsOs؞Wsjshspsxsus{szs�s�s�s�s�s�s�s�s�ttot%t�s2t:tUt?t_tYtAt\titptctjtvt~t�t�t�t�t�t�t�s>oo�n�ozoxo�o�ooo[o�omo�o|oXo�o�o�ofo�o�o�o�o�o�o�o�o�o�o�o�o�o�o�o	pp�oppp�opptoppp0p>p2pQpcp�p�p�p�p�p�p�p�p�p�p�p�p	q�pqqeqUq�qfqbqLqVqlq�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�q�l�l�l�l�lmM�6m+m=m8mm5m3mmmcm�mdmZmymYm�m�m�o�m�mn
n�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m�m-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$n�nn8n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�nAooLp�n�n�n?o�n1o�n2o�n�j��j�j�j�j�j�j�j�j�j�j�j�j�jk��jkk1�k8k7k�v9k�GkCkIkPkYkTk[k_kakxkykk�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k��llll$l#l^lUlbljl�l�l�l�l�l~lhlsl�l�l�l�l�l�l�l�l�l�l�l�l�h�h�h6iii�h�h%i�h�h�h(i*ii#i!i�hyiwi\ixikiTi~ini9iti=iYi0iai^i]i�iji�i�i�i�i�i�i�i�i�[�i�i�i�i�i.j�i�i�i�i�i�i�ijj�i
k�i�i�ij�ij�ij�i
jj�j#jjDjjrj6jxjGjbjYjfjHj8j"j�j�j�j�j�j�j�f�f�f�f�f?f�f�f�f�f�fggg&g'g8�.g?g6gAg8g7gFg^g`gYgcgdg�gpg�g|gjg�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�jhFh)h@hMh2hNh�h+hYhchwhh�h�h�h�h�h�h�h�j�hth�h�h�hi�h~hi�hi�h"i&i�hi�h�d�d�d�d�d�d�d�d�d	��d�d�b�d�d,e�d�d�d�de�deee$e#e+e4e5e7e6e8eKuHeVeUeMeXe^e]erexe�e�e���e�e�e�e�e�e�e�e�e�e�e�e�e�e�erg
ff�esg5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpf�f�f�f�f�f�f�f�f�f�f�f�fb!b*b.b0b2b3bAbNb^bcb[b`bhb|b�b�b~b�b�b�b�b�b�b�b�b�b�b�b�b�d�b�b�b�b�b�b�b�bc�b�b'ccc�b�bPc>cMcdOc�c�c�c�cvc�c�c�c�c�ckcic�c�c�c�c�c�c�c�c�cd4ddd&d6ded(ddgdodvdNd*e�d�d�d�d�d�d�`�`�`�`�`�`�`�`�`�`�`�`�_�`�`�`�`Maaa�`�`a�`�`a!a�`�`
aaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSaua�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�ay�a�a�a�a�a�a�a�a�a�abb	b
bbbb�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w_�_�__�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�`�_!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`�`�`�`�`�`P\O\q[l\n\bNv\y\�\�\�\�Y�\�\�\�\�\�\�\�\�\�\�\�\�\�]�\]]]\]]]]]"]]]]L]R]N]K]l]s]v]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^��^�^�^�^�^�^�^xY�Y�Y^O�O�Y�Y�Y�Y�Y�Y�Y�Y%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZ�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z[[[2[�Z*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[x[�ez[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[\\\
\\ \"\(\8\9\A\F\N\S\WW
WWWW�UW&W7W8WNW;W@WOWiW�W�WaWW�W�W�W�W�W�W�W�W�W�W�W�W
X�W�WXXXrX!XbXKXpX�kRX=XyX�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�XY
YYY�h%Y,Y-Y2Y8Y>Y�zUYPYNYZYXYbY`YgYlYiY�T�T�T�T�T�T�T�TUU�T�T�T�T�T9U@UcULU.U\UEUVUWU8U3U]U�U�U�T�U�U{U~U�U�U�U|U�U�U�U�U�U�U�U�U�U�U�UV�UV�U�UV�UNVPV�q4V6V2V8VkVdV/VlVjV�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�VW�VW	W���R�R�R�R�R�R�R�R�R�R��R�R�R�R�RSS8u
SSSSS#S/S1S3S8S@SFSESNISMS�Q^SiSnSY{SwS�S�S�S�S�S�S�S�S�S|ٖ�S�f�q�S�S�S�ST=T@T,T-T<T.T6T)TTNT�TuT�T_TqTwTpT�T{T�TvT�T�T�T�T�T�T�T�T�T�T�T�P�P�P�P�P�P�P�P�P�P�P�P	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbQ�ziQjQnQ�Q�Q�V�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�QU��Q�Q�Q�Q�QRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}R�R�R�RqR�R�R��_NN*N1N6N<N?NBNVNXN�N�Nk��N�
_�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N	OZO0O[O]OWOGOvO�O�O�O{OiOpO�OoO�O�OQ�O�O�O�O�O�O�O�O�O�OP(PP*P%PPO�O!P)P,P�O�OPPCPGPgUPPPHPZPVPlPxP�P�P�P�P�P�#�,�BTo��j�pŒ�2��RAZ�^_g|i�ijmobr�r�{�~�K�ΐmQ���y��2�֊-P�Tq�jkČ��`�g�N�N�k���h�i~n�xU�B�A[V[}[�[�[�[\\#\+\�7b\;�<�E�z\�\�\�\�\�\�\�\�\�\G��7
]']�F]G]S]J]m]�]�]�]�]�]�]T�#�,�BTo��j�pŒ�2��RAZ�^_g|i�ijmobr�r�{�~�K�ΐmQ���y��2�֊-P�Tq�jkČ��`�g�N�N�k���h�i~n�xU��uψ�̑�x��_�s�zN��ceu�RAm�n	tYukx�|���z���Ona�e\��N�N�P!N�Q�[�e�h�msBv�wz�|o�Ҋ|�ϑu���R�}+P�S�g�m�q3t�*���W���`tAX�m/}^��N6O�O�Q�R�]`�s<yӂ4�����
���b��ftkR�R�pˆ�^K`�a#oIq>|�}o��8�/UQO*Q�R�S�[}^�`�a�c	g�ggn�m6s7s1uPyՈ��J�����Ė��Y�NYON��?���P|^�Y�[�^�c�c�d�fJi�im�n�q(u�z��I�Ʉ��!�
�e�}�
�~a�b2k�ltm���m�����eg��<���ma}=�j�qNuSP]k�oͅ-���)RTe\Ng�ht�t+o�sT*gE��]�{�\�[�Jnфz��Y�|l w�R"Y!q_r�w'�a�iZZ�Q
T}Tf�v������Y]r�nMQ�h�}�}b���xd!j��Y_[�ks�v�}���2Q(gٞ�vbg�R�$\;b~|��OU�`}��S_N�QY:r6�Α%_�w�Sy_}��3���V��g��S�	aa�lRv�l�l�p2x+~ހ������*�J���Ғ���l�ON�N�PVRJW�Y=^�_�_?b�fg�g�h�Q!}���������~�2� T,�S�P\S�X�d4ggrfwFz��R�l�kXL^TY,g��Q�vid�xT����W�Y'f�g�k�T�iU^���g���gR�]h�N�O�S�b+g�lď�Om~��Nba�n�yy�����m_Ub�l�Nir��R;TtV�X�anbqnY�|�|}�e^�NuOuQ@Xc^s^
_�g&N=���[�s|��P�XVv�x%R�w��{OP	YGr�{�}��ԏM��O�R)Z_���O��WUcik+u܈�Bz�R�XUa
b�f�k?|�#P�OSFT1XIY�[�\�\)]�^�bgc>e�eg;��gz9S�u�f_��񃘀<_�_buF{<�gh�Y�Z}~v,��Oj_j7lo�thyh�U�y��^�c�u�yׂ(�򒜄�-��Tl_�e\mp��ӌ;�Oe�t
N�N�W+YfZ�[�Q^�^`vbwe�enfnm6r&{P�����\����t��D��O�dfk�a�j��\Si��z�W�OoR�_E^
g�Q�{rx�{��H{�ja^��Qu`ukQb��nzv���Op�bO{���zVYX䆼�4O$RJS�S�S^,d�eg>lNlHr�r�sTuA~,�酩��{Ƒiq��=cifju�v�xC��*SQS&T�Y�^|_�`Ibyb�b�e�k�l�u�v�x�y�}w���������^�ۘj8|�P>\�_�g�k5t	w��Y?\�N�Y�_���o�yby�[q�+s�qt^�_{c�d�q�|CN�^KN�W�V�`�o
}��3����������]�b�d��wg�l>m6t4xFZu�����O�^�b�cWeog�vLr̀��)�M�
P�W�Z�hsidq�r���X�j����y�w)�/OeRZS�b�g�l}v�{�|6�����f or~������c�i����F�����v�-�0�ؕ�P�RTX\�a�dm�w�z��S����\�?S�_�_�myrcw�y�{�k�r��haj�Q�z4iJ\����[I�pxVo\�`fe�lZ�A��QT�f
�HY���QMN�Q���XpzcK�bi��~wuWS`iߎ�]l�N<\_�Sь��y��^�esNeQ��-�ؑ��lXd�due�n�v{i�ѓ�n�T�_�dM��D�xQkX)YU\�^�m�~u���[��pO�k�o0u��NQT5XWX�Y`\�_�e\g!n{v߃����M�%x:x�R�^WtY`PZQ�Q�QRUTXXXWY�[�\�]�`�b-dqgCh�h�h�v�mon�mop�qS_�uwyI{T{R{�|q}0R^3^�^_5_k_�_�ac�fgnoRr:u:wt�9�x�v���܊��󍚒w����RWc�vg�l�sÌ��s�%m�Xi�i�����u�ZXh�c�iCO,o�g��&��}T�?ipojW�X,[,}*r
T㑴��NNO\PuPCR��HT$X�[^�^�^�^_�`�b:c�c�h@l�x�yz�}G���D���SFOT���jY1��]�z���h7��rH�=j��9NXSVfW�b�c�eNk�m[n�p�w�z�{�}=�ƀˆ��[��V�X>_�e�f�j�k7uNJ$P�w0W_e`zf`l�uzn��E����{\u�zQ{Ą��y�z6��Z@w-N�N�[�_�b<f�g�lk�w�;�N��Йj&p*s�W���NFQ�Q�U�[Ӂ5�� ��OtPGRsSo`Ic_g,n����O^\ʌ�e�}RS��vQ�cX[k[
\
dQg\��NY*YplQ�>UX�Y�`Sb�g5�Ui@�ę(�SOX�[��\/^�_ `Ka4b�f�l�n΀�Ԃ�����.���۞ۛ�N�S'Y,{��L����n'pSSDU�[Xb�b�b�l�o"t�8��o��8��Q���SJ~�z��9���n�Ό��x�w���������MR�U8o6qhQ�yU~���|LVQX�\�c�f�fZi�r�u�uyVy�y�| }D}�4�;�a� ��PuR�S�S	P�U�XOY=r�[d\S�`�`\c�c?c�c�d�e�f�]�i�io�q�N�u�v�z�|�}�}a�I�X�l�����ňp��m������P�X�a�ozd�[N,p]u/f�Q6R�R�Y�_'`b?eteftf�hhcknrru�v�|V��X�������ˊ���R�Y��ez���-^�`b�ef�g�wMzM|>~
���d��_��xR�b�cBd�b-��z�{���v}�I��NHQCS`S�[\\�]&bGb�dh4h�lEmm�g\oNq}q�ez�{�}�b
i�k�qT~w�r��ߘU���;\8O�O�OU Z�[�[�_Na/c�eKf�h�ixm�m3u�uw^y�y3}は�����:�����2�ݑ��N�NRuX�X\u=\N�
�ŏc�m�%{ϊ�b��V�S�9T�W%^�c4l�paw�|�p�B�T�����^tĚ]i]pe�g��ۖncIgiŃ������R SGS�S�TFU1UVhY�Y<Z�[\\\\�^�^�^p_b�b�b�cwcff-fvf~g�hj5j�l�m	nXn<q&qgq�uw]xyey�y�z{�|9}��փ��I�]���<�T�s�a�ތ��f�~������
NNNWN�QpR�W4X�X"[8^�`�dagVgDm�rsucz��r��� �1V�W���[1\�]�Oa�b2m�y�yB}M~�����F�r���t�/�1�K�l�Ɩ���NOOEQAS�_b�gAlncs&~͑���SY�[�m]y.~�|~X�q�QS���O�\%f�w�z����Q�_�eoi�k�m�ndo�v}�]u�����QR@b�f�fn�^�}r�f�������R�SsY�^�_U`�d��PQ!k�n�l>r�t�u�x:y�3�ꁔ���Pl�_X�+��z���[�N�S�W1Y�Z�[�`no�uꌟ[��{rP�g��a\J�~��Q\hcf��enq>y}��ʎn�dž��P�R:\Sg|p5rL�ȑ+���[1_�`;N�S�[Kb1g�k�r�s.zk���R���Q�SjT�[�c9j�}��V�ShT�[�b�d�d-g�k��і�v֛Lc����vRf	N�P�Sq\�`�dce_h�q�s#u�{�~����یx���e�f�k�N�N:OO:R�S�S�U�V�X�Y�Y�YP[M\^+^�_`c/e\[�e�e�e�gbk{klEsIy�y�|}+}���󁖉^�i�f����nj܌̖��ok�N<O�OPQW[�[HacBfdk��N�VdW�XZZh`�aff9h�h�m�u:}n�B��NPO�SUo]�]�]�g�lstxP���߈PW�^+c�P�P�Qg�T^X�Y�[i_Mb�c=hskn}pǑ�rx&xmy�e0}܃��	���dR(WPgj���QBW*�:X�i���T]�W�x��\OJR�T>d(fg�g�zV{"}/�\h��9{S�Q7RT�UQW�W}YT[][�[�]�]�]x^�^�^�^_R`La�b�b�c;efCf�fmg!h�h�i_l*mim/n�n2u�vlx?z�|}}^}�}������T���*�R�L�a������ʐu�q�?x����M����ؚ;�[R�R�ST�X�b�oj�_���KQ;RJT�V@zw�`�ҞDs	op�u�_�`���r��i)j}r�r.sxoxy}w������Ҏc�u�z�U��x�CQ�S�S{^&_n�n�s�sC}7����P�NNP�S|T�V�Yd[�]�^'_8bEe�gVn�r�|������N����7�ǖg���N�N
OHSIT>T/Z�_�_�`�h�jZt�x����w���^Nɛ�N|O�OPPIQlQ�R�R�R�S�ST�c�z�lt�a��z�q���|hp~Qhl��RT����͎�fS��Ay�O�PRDQSU-W�s�WQYb_�_u`vaga�a�c:dleofBhnfu=z�|L}�}K~k�J�͆�c�f��������Ώ蛇Rb�d�o��Ah�P kzlTotzP}@�#�g�N9P&PeP|Q8RcR�UWX�Z�^�a�a�brc�O�O�PGQ�zqQ�QTS!SS�S�U�X�\7_J_/`P`m`cYeKj�l�r�r�w����N�����W�Z��N�Q-\�fmi@\�fui�sPh�|�P�RGW�]&��e#k=k4t�y�yK{�}��̃�_�9�яёT��]N6P�S:S�r�s�w悯�ƙșҙwQa^��UzzvP�[G���2N�j�Q\H\_j0^�kl}luHyc[z}�_�����w�̎���<��N}PQ�Y�[/b�b�d:k�r�uGy�����p��cʃ��	TT�UThXjp�'xug͞tS�[�P��NEN�NO�S8T�[_%`Qe=gBlrl�lxptvz�z{}�|f}�e[r�SE\�]�b�bc nZ�1�ݍ��o�yZ��N�N�N�|Rł�t~N�O�Q�[
R�R�R�]�U*X�Y�[�[�[r^y^�`aca�a�cbe�gSh�h>kSkWl"o�oEo�tu�vw�z�{!|�}6���f�����̊����Q�������e�ӗ(��8N+T�\�]�sLv<w�\�����T�X�OOqS�UhV�WGY	[�[�\^~^�_�c:g�e�eg�h�hA�ff�hwmppLu�vu}�����������Q�RY�T�[]ha�i�m�x˄W�r�����lm��ن�W�gΆ��R�VT�^�b�d<h8h�krs�xkz��҉k��퐣���i�f[�\}iM�N��c {+jj�h
�_orR�Up`�b;mn�n[��D�N9��Si:j��*h\Q�z��ܑ��[V(�"h�1��b�e*j'k�k�s�V�,��Ğ�\�l{�QK\�aƁvharYN�OxSi`)nOz�NS�NUO=O�OsO�R�S	VY�Z�[�[�y�f�g�gLk�lkp�s�y�y<z�{��ۂ�w��Ӄf���)V���N�����O�\bYr;u偽�����Ŗ�ՙ�NO��VJX�X�^�_*`�`b`�ab�b9eb�p�����T�S�[�p��oS\��zN�x��&nVUk�;��Y�Sfm�t��BV�NK��O���S�U0[q_ f�fh8l�l)m[t�vNz4��[�`�풲m�u�vř�`������i�S�QW0XDY�[�^(`�c�c�lo�pqYq�q?s~v�т��`�[��iX�eZl%u�Q.YeY�_�_�NUZ?��Ta(c�Y"�u��Pz�`�c%n�ef������h'W�eqb�[�Y{��b}�}��b�|���[�^	c�fHhǕ��Og�N
OMO�OIP�V7Y�YZ	\�`apafi�pOupu�y�}�}À�c��U�z�;S�N�N�W�����xN�X�n8�2z(���/�AQpS�T�T�V�Y_��m�-��T�T�TU+U5UPU^U�U�U�U6��U�U7�VV;VIVvVfV8�oVqVrV�V�V�V�V�V�V�V
WD�!W/W3W4WpWwW|W�W�DظW�W�W�W�W�W�W�W�W	X�aXdX9�|X�X�X:��XE��X�X�X�X�X�XYA�]YmY�Y�Y�Y�Y�Y�YZ#ZgZmZwZ~Z�Z�Z�Z�ZF�[%[]R.""�"00�0�0�0�0�0�O@�4(N/N0N�N�N�N�NOO`OHOIOVO_OjOlO~O�O�O�O0��O�OPPPP'P.P@P;PAP�P�P�P�P�P1�QQQQ5QJQ2�UQWQ�4�Q�Q�Q�Q�Q�QR�4RRIRWRaR�R�R3��R�R�R�R4��R�RSSS5�aScS}S�S�S�ST'TMT�TkTtTT�T�T�TI3"3M333333N336333'3Q3J393W3
3B3#3&3;3+333*313G3~3}3|3{33`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$`!a!b!c!d!e!f!g!h!i!j!I33"3M33'3363Q3W3
3&3#3+3J3;3�3�3�3�3�3�3�3k!{300!�3!!�2�2�2�2�2122292~3}3|3R"a"+"."""�" ""�"5")"*"V'&�egkp4l(gёWmy]y��92|T12nj
T22f[��>yyr�vOTS�Re!f!g!h!i!I33"3M33'3363Q3W3
3&3#3+3J3;3�3�3�3�3�3�3�3{300!�3!!�2�2�2�2�2122292~3}3|3R"'Y\�2�2�2�2�2;S��*Q�RpS�c�y`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$`!a!b!c!d!e!f!g!h!i!I33"3M33'3363Q3W3
3&3#3+3J3;3�3�3�3�3�3�3�3{300!�3!!�2�2�2�2�2122292~3}3|3R"a"+"."""�" ""�"5")"*"�2v'w'x'y'z'{'|'}'~''�$�$�$�$�$�$�$�$�$�$p!q!r!s!t!u!v!w!x!y!z!{!�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2Q B d&g&a&b&`&c&e&f& 0&0&&&&�!�!�!�!�!�!�!�!�!�!�!d&g&a&b&`&c&e&f& 0&0&&&&�!�!�!�!�!�!�!�f��SW�`�SRh�XuY\^Po�d�TQR�e��U�zgZ�pqrsa����? �������%,9 =)/�$0<4*:;�3�3�3�3�3�3�3�3�3�3�3�3�3�3!�3�3�3�3�3	!�3�3�3�3�3�3!�3!!�A=Z`^dy}{�B>[�a_ez�~|T9CGPXnpbU:
DHQYoqc�$4\l	%5]mq�~��lny�Vs}��{m_r��aKp�'�`!a!b!c!d!e!f!g!h!i!j!k!p!q!r!s!t!u!v!w!x!y!z!{!�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$� �����������������������������������������������������������������������������������*jL+kM`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$w$x$y$z${$|$}$~$$�$�$�$�$�$�$�$�$v'w'x'y'z'{'|'}'~'�$�$�$�$�$�$�$�$�$%%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%B%Q2R2S2T2U2V2W2X2Y2Z2[2\2]2^2_2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�%�%�%�%< G H I ���>?���������%%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%B% !"#$%&'()*+,-./�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#012345Q6789:;<=>?@ABCDEFGHIJKLMNO�0�0�0�0�"�"S!T!U!'##$�# !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO������������������������d&`&b&f&a&e&g&c&��������������������������$�$�$�$�$�$�$�$�$�$&& 0&&&&&h&�%�1�1�1�1�1�1�1�1�1�1�0�1�1�1�1�1�1�������������������������������������������������0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�%�%�%�%�!�!�!�!�!�!�!�!�!4)5)�����������)�%=0F�E��%" !�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�"5!!�3!'!A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z��0 �)�)����������!�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z��%�%�%�%�%�%�%; 0�!�!�!�!0��
�^�304050;0<0�0�0""�"�"�"�"*")"�"�"�"�"	""##'"("��!�!""�"�"�"%"&"_�`�0000 "�"#""a"R"j"k""=""5"+","b"C"E"H"v"w"�!+!0 o&m&j&  ! �n&k&l&i&�%�%�%�%�%�%�%�%; 0�!�!�!�!0""�"�"�"�"*")"'"("��!�!"" "�"#""a"R"j"k""=""5"+","+!0 o&m&j&  ! ��%�%�%�%�%�%�%�%; 0�!�!�!�!0""�"�"�"�"*")"'"("��!�!"" "�"#""a"R"j"k""=""5"+","+!0 o&m&j&  ! ��%000���0�����0�0�@��>��?��0�0�0�00�N000�0  �<�^�%"\�& %     �	�00;�=�[�]�0	0
000
00000�
�����`"��f"g""4"B&@&�2 3 !�������
� ��&&�%�%�%�%000���0�����0�0�@��>�> ?��0�0�0�00�N000�0  �<�0 \�& %     �	�00;�=�[�]�0	0
000
00000�"����`"��f"g""4"B&@&�2 3 !�������
� ��&&�%�%�%�%nkf internal module connection failure.
;_ ~�� P���Hp����@���`���������p����Ї������D����X���l��������������������P������0�D������������,����@0���T`���hp���|�����К�������������d���x������������`���4����H�\0���xP���������С�������Х��	��� 	����4	@���`	��	����	б���	����	����
�
���8
����L
���`
@����
�4P�������������������$��Dp��`�������8
���T
`���
����
@���
����
������ ���L���h@��������@�(0��`������������D���� ���p
�����,`
��p00����0���2��,p4��h�6���zRx�$�z��0FJw�?:*3$"D}��  \����]�q
B`�������E�\
O4�����F�G�A �E(�J0y(K ABB,�����[F�F�E ��
CBN4�����F�G�A �E(�J0y(K ABB@4���T@���lh�����|h���������HO�����HO����m@�\����I�{
DuC�H�h
Hs
Ej
Fs
Es,����L@�����F�B�A �C(�F0�
(A ABBFe
(E ABBI���uF�A�C ��
ABEU
ABHt
FBD�
AHOc
FBM�
DPHU
FDI�KJ��(l����<X����PԒ��'d�Hx��>B�B�E �H(�D0�D8�DP�
8C0A(B BBBA������
����
H��F�B�B �B(�A0�D8�D�H
8A0A(B BBBI`����
t����
 �|����D�
DS
E\�H����A�A�F �
AAGR
AADO
AAGr
AADH
AAF �����^�Z
HJ
N0$���4jDP���BxX����4EAUt����EAF�����8P[�ܘ��5DZ
A$����<A�I�D kAA�����^�a����<���(0����~A�D�G0J
AAH0\ؤ���B�D�K �G@z
 AABJ�T���	D F
F�H�����N����# �����H j
F�
B�����NH0�
D̬��H |
D4���H\���SH\����/F�B�B �B(�A0�A8�D`�
8A0A(B BBBF�������F�B�A �C(�F0w
(A ABBIv
(D ABBIt
(C ABBL�
(A ABBFx
(C ABBP\0����RF�B�D �C(�D0�
(A ABBI�
(C ABBNt
(A ABBF8�����hb�E�E �D(�C0�m(A BBB ����H F
B�
G�����>D y	ܸ����] 	����BA�n
QA@	��VA�S�<\	���WB�B�B �A(�A0�[
(A BBBF��	(����
F�B�B �E(�A0�A8�DP�
8D0A(B BBBE�
8A0A(B BBBH
8A0A(B BBBJ~
8A0A(B BBBH4
P��ZA�W�(P
���n��C�F PE�A�@|
����E�C�F o
EAEX
AAFW
EAK�
$��CK�O
Fb�
T��8�
���.���?(����]�A�D RAAJ��H\���H0X
H d0���H t
D�
F,����fB�A�G ��
CBA����:A�d
KEH���M[�V
�OL
Dt
Dm
KTD�H�o
Ae
AVt$���B�E�H �E(�A0�A8�D@l
8A0A(B BBBHj
8A0A(B BBBDH8F0A(B BBBH����#B�B�B �B(�A0�A8�D`�
8A0A(B BBBF�l�V@����E�A�D �
AAG_
CAES
CAIH@
4�^F�B�E �B(�A0�A8�D`�
8A0A(B BBBJ�
H�5DZ
A`�
l�FR�B�I �A(�A0��
(A BBBJ{
(D BBBKh
(A BBBAX�����aG�@(\����[�l
IG
Ie
K`
HD�T�V
JQLl���"B�B�B �B(�A0�A8�G�$
8A0A(B BBBA�h��bE�O
L{zRx�� lp��
���H �
F8(l ���F�B�A �A(�G��
(A ABBK,d"��FE�D R
DAG
DE� $��3E�&GNU� ���`^$D�5�z�����������Dž҅d�c�h�c������1�������c�*���/�6������
��%�)�,�.��9�>�B���J�%�j�R�U�^�a�s�l�c��v���c���c���c�y�'�~����c�ۃc��c��c���c��c��c�
�c�����������c�Ƀc�$�c�s�c�}�c���c���c���c���c�2�c���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`���� �`��$�$�$�$�$�$�$�$�~$�x$�$�$�$�$�$�$�$�$�z$�$�$�$�$�$�$�$�$�z$�$�$�$�$�$�$�$�$�z$�$�$�$�$�$�$�$�$�|$�� � � ����� ����� ��� � ��� ��� ����� � � ����� � ������� � � ����� � � ����� � � ����� ��� ����� � � ����� � ���� ����� ������   ����� ��   � ��� ��=�<�;�:�9�8�7�6�5�4�3�2�1�0�/�.�-�, , + * ) ( ' & % $ # " !                     
   
 	       > = < ; : 9 8 7 6 5 4 3 2 1 0 / . - ,�+�*�)�(�'�&�%�$�#�"�!� �������������������
���
�	�������|�{�z�y�x�w�v�u�t�s�r�q�p�o�n�m�l�k�j�i�h�g�f�e�d�c�b�a�`�_�^�]�\�[�Z�Y�X�W�V�U�T�S�R�Q�P�O�N�M�L�K�J�I�H�G�F�E�D�C�B�A�@�?�> } | { z y x w v u t s r q p o n m l k j i h g f e d c b a ` _ ^ ] \ [ Z Y X W V U T S R Q P O N M L K J I H G F E D C B A @ ?��������������������������������������������������������������������������������������������������������������������������~�} � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � �  ~�������������������������������������������������������������������������������������������������������������������������������� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � ��;�:�9�8�7�6�5�4�3�2�1�0�/�.�-�,�+�*�)�(�'�&�%�$�#�"�!� �������������������
���
�	����������������� < ; : 9 8 7 6 5 4 3 2 1 0 / . - , + * ) ( ' & % $ # " !                     
   
 	          � � � X�W W�V V�U U�T T�S S�R R�Q Q�P P�O O�N N�M M�L L�K K�J J�I I�H H�G G�F F�E E�D�C�B�A�@�?�>�=�< D C B A @ ? > = w�v u t�s s r�p p�o�n�m�k k�j j�i i�h h�g g�f f�e e�d d�c c�b b�a a�` `�_ _�^ ^�] ]�\ \�[ [�Z Z�Y Y�X�w�v�u�t�r q o n m l�w�v�u�t s�q�o�n�m�l x�v v�t s�q�o�n�m�l ��� ��� � � � � ��� � ��� ��� � ��  ~ } | {�z z�y y�x�� ����������� ������ �~�}�|�{���� ����� ������� �� �~�}�|�{ ��� ������������� �� �~�}�|�{���� ������������� �� �~�}�|�{�� ����@���������@�����@�������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@�@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@������@�����IF�DC�A@�>=�;:�8@64�21@0�/�..@-�,�++@*�)�((@'�&�%%@$�#�""@!� �@��@��@��@��@��@��

@��

@	��@��@��@�����@���@�����������@�����@H�F@E�C@B�@@?�=@<�:@97�4@3�1@0�/�..@-�,�++@*�)�((@'�&�%%@$�#�""@!� �@��@����@��@��@��

@��

@	��@��@��@�����@����@���@��@H�F@E�C@B�@@?�=@<�:@9�7�5@3�1@0�/�..@-�,�++@*�)�((@'�&�%%@$�#�""@!� �@��@����@��@��@��

@��

@	��@��@��@�����@����@���@��I�G@E�C@B�@@?�=@<�:@9�7�5@3�1@0�/�..@-�,�++@*�)�((@'�&�%%@$�#�""@!� �@��@����@��@��@��

@��

@	��@��@��@�����@����@���@���O^h���
�P^$X^$���o`h�
��$0����	���o����o�o*���o&м$ �0�@�P�`�p������������������� �0�@�P�`�p������������������� �0�
BB����?�����P�PGP�PG��P�PGP�PG�� � � � � � � � ���ʄ`T�����2����U���������P�PGP�PGP�PGP�PG�|������Ć����Ԇ������	�	�	(�	,�
8�
Ά
E�
K�S�ʄY�
��c���m�u�����������������ʇӇ���݇����*�� 
�!�"��#�������������0���ʄ���$����'����|����$�#�����������	��
.�K�ʄ
:���D�M�Y�h�����������ʇ���݇����*� �!
�"�#������GA$3a1���GA$3p1094`��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY0��GA+GLIBCXX_ASSERTIONSnkf.so-2.7.8-141.el8.x86_64.debug��1�7zXZ�ִF!t/��'.]?�E�h=��ڊ�2N��v�����3\4��I��y �_�3YR��� JԷ��#v���n��	g!�E]��\u��unl��颥H[y�_��,R�z�(�uԆr�])��^���oOB�r�9-y� T|;h�#;X�3Ϳ�p��<E�Ľ��	h��𑈎��5���q|���|�%n�A��'V�"��IQUiV�Ӊ��W�lX��?S�����L	�P�5�2���&���Gf*]�+���b�3A;��R_��bO=Q�?_���(A֗���1��/"�6��Q�:�.V�v
���}0dB��z�˱�H&�wE�(��s����$̷9��=9k�Sx�E�q\o�S��P�"���#Î�/}�45��8��Lz
���eMt�����3z��uK ���$��k��|.���uu܈�����>�H6YO믘����pw��\B�*� 
�k�Gx����&ye�-Y@%��;�j�]t�{���ZϘH�	j0:��x ����1�'b��7I������T�-�)$�%��7��a�	[ۣ�e�Jkɦ3\1/!L%�Y
jl�"y�2�:��NUJ](��̛�>�#aD��!tn�
8Ɂ��9�a�%�U��d�2v`y
�ҷ�~�Ƕ���������'�@hP��^]��v^��g��9��4����M!ϫغ-0"c*z�c�&ۖ�F,;2h�v\�QalMŨ��S�};w�7ܺ(ڔ��򢰠 �g?k�5�ar
���Fӵj����S�v��hv�"VVm$�����N
F��ܶ8�"QR�����ے�B��|��`�F"ŽL%P�I�i��"�\y:���ܵʅ��
�ې5�^���>"#�f�T�I�ȅl�0T�j
�	�+����X���*���,��L��{<^7/�c�d��}��l�����S؛c�O�Nl�j}puh싮mP��)�Jl'%�q�^nqI�#_.�������ͼ��I�1�P�/�Ot���PAU��6�b�yE=�7�����PU]�ø�+���<�4�� �����j%��9�W��b��*�p,�A$�]Q$�� �^W�6� B��֢m�(�_1Dp(����ʏ�s���r4���anA�h������v/�[=�@�M�_�kb�� ����\�.Lj��2aЌ���ƐS5�V����BN�o���H�;��e�C~��/,#�&������lHm	�d|~��[޷�iCmJWAk��$ ��e�	�V��{]Zkڠ�i�$�˲�6CH�C��Gw�m�׌|@�HЄ��$X53��#7��r�ޞ��t���N�������\8�R��]�p;/�UG}}o�C�o���w�.�>@<[
�4�섊�G-^�I��(�~/�8�d#s>��>7�Z�_m�Ч��B��=@��[1\���'s��Y�����
�k��,[l?�JO�^�_-U��
aB���⏇oO���z�
!%���2�7�����:P�	�~�-3����BP����*�l�k'Gv,��sŗ�ҫbB��-j}MTd��6L��IM8hs1,�����*�&�#��k���9¨�e=�a7�,��77���*�YH�$
���_Ch���f�f�G�_��5�X��	g5�!��c59��
0y_������S���HՑ�|��"nc���s��G��ntl��Go��v�@�8k�֎,
|?�\Ly_6+-UQ��ՙq���}���ʖ[�UG[P��A�Z�1&�'��Bƫ�J^�;䞣�[�yw^���(���xe����:�5m��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``p(���0hh�8���o**�E���o��@T��^B����0h����c��0n@�@� w`�`���}��
����� ��I�I��L�L���\�\ �P^$P^�X^$X^�`^$`^p^ �м$м����$��@��$�(�@�$@�X
 ���$���& �@�d��D��("�pt�1PKLH[Ge���a�alib64/ruby/dbm.sonuȯ��ELF>�@�Z@8	@�K�K MM M 8 �M�M �M 888$$hKhKhK  S�tdhKhKhK  P�tdBBBLLQ�tdR�tdMM M ��GNU�[99�ʮVm&��W���K�H KMNBE���|�qX�U�)<}e �f�J��Tq�/?��hr���U��J� �\I��/"@"t���|v��	�]�5���, ���F"0�$>��� R �HR � R ��:R__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_check_typeddatadbm_closeruby_xfreerb_raiserb_hash_newdbm_firstkeydbm_fetchrb_str_newrb_hash_asetdbm_nextkeyrb_ary_newrb_assoc_newrb_ary_pushrb_string_valuerb_str_exportmemcmprb_block_callrb_intern2rb_error_frozendbm_deleterb_hash_delete_ifrb_yieldrb_ary_tmp_newrb_str_duprb_protectrb_ary_clearrb_freeze_singleton_classrb_jump_tag__stack_chk_failrb_block_given_prb_ary_new_caparb_warnrb_obj_as_stringdbm_storedbm_clearerr__errno_locationrb_sys_failrb_out_of_intrb_keyword_given_prb_empty_keyword_given_prb_free_tmp_bufferrb_eIndexErrorrb_error_arityrb_data_typed_object_zallocrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_check_typerb_ary_detransientrb_eArgErrorrb_get_pathdbm_openrb_fix2intdbm_pagfnorb_fd_fix_cloexecdbm_dirfnorb_num2intrb_sys_fail_strrb_ensureInit_dbmrb_cObjectrb_define_classrb_eStandardErrorrb_mEnumerablerb_include_modulerb_define_alloc_funcrb_define_constgdbm_versionrb_str_new_cstrrb_define_methodrb_define_singleton_methodlibruby.so.2.7libgdbm_compat.so.4libgdbm.so.6libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�ii
�ui	�M � M `  M  M @M �APM � XM � �O �O �O !�O #�O /�O 1�O =�O >�O ?�O A�O BP  P (P 0P 8P @P HP 	PP 
XP `P hP 
pP xP �P �P �P �P �P �P �P �P �P �P �P �P �P �P �P �P Q  Q "Q #Q $ Q %(Q &0Q '8Q (@Q )HQ *PQ +XQ ,`Q -hQ .pQ 0xQ 2�Q 3�Q 4�Q 5�Q 6�Q 7�Q 8�Q 9�Q :�Q ;�Q <�Q @�Q B�Q C�Q D�Q E�Q FR GR HR IR J��H��H�18 H��t��H����5r8 �%s8 ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@��������%]4 D���%U4 D���%M4 D���%E4 D���%=4 D���%54 D���%-4 D���%%4 D���%4 D���%4 D���%
4 D���%4 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%�3 D���%}3 D���%u3 D���%m3 D���%e3 D���%]3 D���%U3 D���%M3 D���%E3 D���%=3 D���%53 D���%-3 D���%%3 D���%3 D���%3 D���%
3 D���%3 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%�2 D���%}2 D���%u2 D���%m2 D���%e2 D���%]2 D��UH��SH��H�="P1��E���ZH��H��[]��H�=)2 H�"2 H9�tH��/ H��t	�����H�=�1 H�5�1 H)�H��H��H��?H�H�tH�}/ H��t��fD�����=�1 u+UH�=r/ H��tH�=�, ����d�����1 ]������w��������fD��H��H�5q, �\���H�xH�H�����ff.����SH��H�H��t����H��[����PXH�5/1�H��H�=1 ���D��AVH�5, AUATUS���L�`M��ts�:���L��I�����H��H��H��tL@H��H��L���B���Hc�H���g���Hc�H��I���Y���L��L��H������L���c���H��H��H��u�[L��]A\A]A^��G������AWAVAUATUSH��H�����H�5O+ H��I���4���L�`M��t{L���S���H��H��H��tV�H��H��L�����Hc�H��I��I�����Ic�L��H�����H��L��H���%���L�����H��H��H��u�H��L��[]A\A]A^A_����ff.���H��H�5�* ���H�xH��t$H�8x
u�H��Ð���H��t�1�H����:���f.���ATH�5S* US�<���H�hH��tdI��H�H��~[H�D]A\�fDH���@���H��t31�f�H�������H��u�Hc�H�DI�$[]A\���1������f.���SH�5�) ���H�xH��tH���N���H�C�[��j���f.���AVH�5�) AUATUS�h���L�`M��t{�J���L��I������H��H��H��tT@H��H��L������Hc�H�����Hc�H��I������L��H�����L��H���S���L������H��H��H��u�[L��]A\A]A^����ff.�@��UH�5�( SH�����H�XH��tQ���H��H������H��t2@H��H������Hc�H���B���H��H������H���O���H��u�H��H��[]��;���ff.���UH�5T( SH���:���H�XH��tF����H��H���Q���H��t'@Hc�H������H��H���R���H������H��u�H��H��[]�����fD��ATUH��SH��H�|$H�t$���H�|$�8���H�H�D$�� uCH��L�`��H��H�5�' �����H�xH��tDL��H������H��u&H��1�[]A\�H�HHc��H9�u�L�`�@H���[]A\�����ff.�f���SH��H��H�|$H�t$���H�|$���H�H�D$�� uH��H����Hc�H9�tH��1�[�@H�@Hc�H9�u�H��H�5�& ����H�XH��tzH�����H��u2�DH����9�uH��Hc�H�������t=H���b���H��t�H��H������H�t$H��� t�9Vu�H�vHc�H���q�����u�H���[�����ff.�f���ATUSH��H��H�|$H�t$��H�|$���H�H�D$�� u#H��H����Hc�H9�tH���[]A\�H�@Hc�H9�u�H�5�% H�����H�hH����H������H��I��H��u4�H��H����H9�uH�������tGH���T�H��I��H��t�H��L��H�����H�t$Hc�H��� t�H;Vu�H�vH���Y�����u�Ic�H�����H��[]A\����ff.����UH��SH��H��H�5�) H��t$I��H��L�1�1��N�H��H��[]�@�	H�=����H��H��) �@��uH�����tH��ƒ���t��u�H��H�=����ff.���AWAVAUATUSH��H�����H��H�5\$ �G�H�XH����H�����H���[�H��I��H��tXH��H����Ic�H��I��I������Ic�L��I�����H��H��L��I���e�H��L��L��[]A\A]A^A_�|�@H���[]A\A]A^A_����ff.�@��H�����H��H���w����AWAVAUATI��USH���V�H�5o# L��I���T�H�hH����H���o�I��H��H����L�-9# �.�L��L����H�hH��t~H�����I��H��H��tYH��L��H���{�Hc�H����Hc�L��H����H��H���w�H��H���,�H�����t�H��L������H��L��[]A\A]A^A_��i���f���AWAVAUATUSH��H��HH�|$1�dH�%(H�D$81���H���D$4I�����H��H�5B" �-�H�XH���_I��H�H��I�E����H�D$(�5�I��I�׉�H���,H�D$4H�D$ �B�H�|$H�5�! ���H�XI��H����H����I��I�׉�H����H�������L��H��L!�H	�H��I����Hc�L��H�T$H�D$�.�H�T$�H��u:H�����t2H��ƃ���t%H��H��H�}H�ut���G�H�|$Hc����H��I����L��H����H�T$ H�=y# H���q�T$4��u!H����������H��L���"����DH�����E1��Tf�H����I9�}tI�D$J��H��� uRH��H�r��L��H��H!�H	�H��I���������I��I�$�� u�I�D$I9�}"I�D$ J��H��� t�H�r�B���|$4��ulH�\$(H��~H)�I�]L����H�D$H�\$8dH3%(uCH��H[]A\A]A^A_�H����H�T$���H�=�$ H�5�1��a����W���f���AVAUATI��USH��H�t$���H�|$�i�H�|$��H�H�D$�� ��H��H�h��H�5l L����R�L�hI��M����H��H��L�����H��t?Hc�H�����H��H��L��I������ukI�H��xH��I�H��L��[]A\A]A^����A���t�H�|$�G�H��I��[]L��A\A]A^�@H�HHc��H9�u�H�h�F�����I�����H�=�# H�5�1��(��AUATI��UH��SH��H�|$H�t$�A�H�|$���H�H�D$�� ��H��L�h��L��H�5A ���*�H�xH��txL��H����H��t!Hc�H�����H��H��H��[]A\A]�DH��u������t�H�|$���H��H�D$�:�H����DH�HHc��H9�u�L�h�n�����@�������f���AUHc�ATI��I��USH��H����H��E��~-A�E�L�l�H�3�L��H������H��H����L9�u�H��H��[]A\A]�ff.���AWI��AVAUATUH��SH��H���P���H����H��H����H�I��� ��H��H�k��Hc�H9���M�$��A�� tpM�t$M�D$Ic�I9���L��H�5� E����L�xM����H�����L��M��H��A�H��L���R���u>H��L��[]A\A]A^A_�@I��M�t$A���f�H�kH�S�P���L���X�����8tH�=! H�5H1���f�1������H���l�L���d�@��AUATI��UH��S��H��(dH�%(H�D$1����H�D$��t`����L�m��tu1�H�U����H����L��L�����H��H�L$dH3%(H����H��([]A\A]�������~xH�D$L�m��u�H��t
H�|$�R��L��L�����H�����H��u���u�H�� H�5;H�81��x��H�|$H�T$��H�T$�H���H�|$t
H�|$������������ff.�@��H�� ���ff.���ATUH��S���H�5Y H���A�H�XH��tQI��H������@H��H������uH���A�H��u�I�$H��[]A\�H�=� H�5$
1������f���UH��SH��H���k���H�5� H��t'I��H��L��1�1���H��H��[]���	H�=���H��H�} �ff.���USH��H���>���tjH��H�5` �K�H�xH��tw�m�H��t9H�-A �Hc�H�����H����H��H����H�xH��t>���H��u�H��H��[]�D���H���C�H��H��E1�[1�1�H��]����fD��ATUH��S����t|H�5� H����H�XH����H����H��tJL�%� @H��H����Hc�H���"�H�����L��H���O�H�XH��t9H����H��u�H��[]A\Ð�+�H����[H��E1�]1�1�H��A\���������AWAVAUI��ATUSH���������H�5� L�����H�hH����H�����I��H��H��tvL�5� �H��L��H���"�Hc�L��I��H���A�H��Ic�H���3�H��H����H�����L��L���U�H�hH��tYH���$�I��H��H��u�H��L��[]A\A]A^A_����H���s�H��L��E1�[1�]1�A\H��A]A^A_������ff.���UH���SH��H���&�H�H���� tHH��H����H��~[�uAH��u$H�[ H�SH�3H���i���H���[]�DH����f�H�S�f.�H�����H��� �H�� H�5�	H�81����D��AWAVAUA��H��ATUH��H�5# SH��H��HdH�%(H�D$81�I�����L�|$ I��H�D$H�D$(H�D$H�D$0��H�D$���E����1�H�UH�$A����H�D$H�D$H������A����H�|$H����E1�E1�L�|$H�<$���H�$E����D��H�x���߁�H� tH�x�����I��M��������+�H�L$8dH3%(�H��H[]A\A]A^A_�fDH�UH�T$A���2���H�UH�T$A����H����H�|$�����H���#���@���c���H�|$��H������D@���&��A��A��A�� ���H�H�ǁ� ����H�xH�����B���I��H��tsL�������,�L���������I�|$H��t��M�l$H��I�$��������f�H�|$���8�����K�E����H�D$��H�<$H��� H����H�1Ҿ�2�I��H���[���H�$H�xH� tH�x1Ҿ��I���-���D�s�A��A��A�� ������[������@H�x����H���y���H�|$t
H�|$�5���D�����H�<$�
��%�D��ATI��U��H��H�� S���L���H��H���o���H��t�t���u H��[]A\���H��[]A\�H�=� H��H��[H���]A\�#���H��H�� H�=lH�0��H�=�H�4 H�� H�0��H�= H� H�� H�0�x�H�= H�5j�����H�=� �����H����H�5U��H�=� �����H�����H�5;�w�H�=� 1�H���H�5*�[�H�=� 1�H��H�5�?�H�=x �H���H�5�� �H�=Y �����H�m���H�5���H�=: �H���H�5����H�= �H���H�5����H�=� �H�p�H�5���H�=� �H���H�5���H�=� 1�H�%�H�5_�i�H�=� �����H���H�5G�J�H�=� 1�H��H�55�.�H�=g 1�H���H�5 ��H�=K 1�H���H�5	��H�=/ 1�H����H�5����H�= 1�H�:���H�5���H�=� 1�H�n���H�5���H�=� 1�H����H�5���H�=� 1�H�V�H�5��j�H�=� 1�H���H�5��N�H�=� 1�H���H�5q�2�H�=k �H���H�5X��H�=L 1�H���H�5C���H�=0 1�H���H�51����H�= 1�H�[�H�5���H�=� 1�H��H�5���H�=� 1�H�c�H�5����H�=� �H���H�5��h��H�=� �H���H�5��I��H�=� �H���H�5��*��H�=c �H�g�H�5����H�=D �H�H�H�5����H�=% �H���H�5h����H�= �H�
�H�5<���H�=� �H���H�5.���H�=� 1�H�/�H�5�s��H�=� 1�H���H�5�W��H�=� �@H�5����H�=x �@H�5����H�=` ��@H�5����H�=H ��@H�5��g��H�� H�8����H�=! H��H�5�H���>����H��H���closed DBM fileeach_pairDBMdbm_delete faileddbm_store failedkey not foundpair must be [key, value]DBMErroropeninitializecloseclosed?[]fetch[]=storeindexselectvalues_atlengthsizeempty?eacheach_valueeach_keykeysvaluesshiftdeletedelete_ifreject!rejectclearinvertupdatereplaceinclude?has_key?member?has_value?to_ato_hashREADERWRITERWRCREATNEWDBVERSIONdbmDBM#index is deprecated; use DBM#key;L(���h�����������������������0�����L������p����`�L��xP����� �X�������������`�������D��X��`���@��TP���p��0�$P�����`���	��H	zRx�$ �� FJw�?:*3$"D��\��
p���$HX���E�U���AAM<����F�I�B �A(�A0�v
(D BBBAH|���F�B�B �B(�A0�A8�G@�
8D0A(B BBBAL���FHf
BP
A4l ���F�H�A �Z
FBGu
ABH�x��6E�k
A<�����F�I�B �A(�A0�~
(D BBBA(��uE�H�D Y
DAA(,`��jE�H�D N
DAA@X����F�A�D �D0_
 CABD\
 FABA(���E�G |
CE�
FA@���F�A�A �G0|
 FABD�
 AABA(��]E�D�G f
DAE8��2f`L ��F�B�B �B(�A0�A8�G@z
8G0A(B BBBID
8F0A(B BBBA���HIH����F�B�B �B(�D0�A8�D@�
8D0A(B BBBALH��F�B�B �B(�A0�A8�G�u
8A0A(B BBBDTd��(F�B�B �D(�A0�D@�
0D(A BBBA]
0D(A EBBE8����B�B�D �D(�D@q
(D ABBF�D�4@�bF�E�G �A(�G0~(D ABB$D(��)E�D�K HGAHlP�LF�E�B �B(�A0�D8�G@�
8D0A(B BBBE8�T�AF�B�D �D(�FPt
(A ABBH�h�,t�~F�A�D �U
ABA(8��eE�D�G k
DAH4d��E�A�G h
DAFQ
GHE8����F�A�D ��
ABBN
GIE`��F�B�B �E(�A0�A8�D@�
8D0A(B BBBHQ
8G0C(D EBBE(<���E�I�G F
FAFLhD�[F�B�B �H(�A0�K8�G�
8A0A(B BBBG@�T�}F�I�M �h
ABII
ABDNHB���RH;GNU�� `  M �A� � [j~���h
4@M M ���o`
�
�P P��	���o����o�o����o�M ������ 0@P`p�������� 0@P`p�������� 0@P`p�������� 0@P`p���GA$3a1hA@GA$3p1094�2@GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY� 2@GA+GLIBCXX_ASSERTIONSdbm.so-2.7.8-141.el8.x86_64.debug�Z�V�7zXZ�ִF!t/��G�]?�E�h=��ڊ�2N�<�� ��U�������m�
�[��Ƈv��r~U�U0	�CƓ�װ��
���|7M�v����a��R-/�@�jQȿx�mԝe�g}�Ƹ�&*�χ7�9�0vI�����c@[���
&a��kOe��~}!��D�{%/M�e������@~pc�,��1��*SN�t�|���Y�V����8K�=2��ozd��']+U�薾´��s���t�*V�
τ��K�J��2Q
��ԫ�ܬ���*�]g�ϋ���ݑ�=�����-~K򡚄�awr���ڿ�m��Ƒ���*��[�'��<�@�+^u�x����6���Li�53-|��irVp��h#�/u��3|F�8�8��yj�����*᱐�|M���3)Y�G�|.�o'�h$�p�uCͼ�,�u`߮őx0n�,U��\Osׯ��֙�!�N�0�Z�ح�T��x&��j�O\�t���s��XA��O9$=�&�@����\r�H������X�v�FXML$�mh��S��N�eًag0�e��N.2uZ��o�$�㜨��|��d��$oGs�Z�E�F���ȫ`�
\x� ���]\�
�`�%�]r��4�z���"5��X
=!�з��޲f�81b�7V��<��bN��/��$��1]�(��m��"=9rEQw:b�N�? !�[a�\�s���wB	oN�*���
�#?�*\�v�^S��h?�ūo��v�.䷃f�`r�B�
\��NW[��x��4� a��U��D�<�Y����z쨃u�a�h!y{��T���/F��U� �N��Q?��j���l��Z����.B�Bq�sB-;Xaj[��1��h�Ӷ�[	�\�]_w.�[
�&�
3#�ʵ3��ة:Ÿ���� H3C��q��f9[��K�.�s9Ҍd��
��;A���K^��Nf�x��}w���la�:�#��ĘvH�j���z�}Dj�^݈Z}��{��v��}�E��yd����ulz�o�)�!,�^�,��Qu.���Fu+�R�q�I����>�
�t:6ɗ�+<-��?q��+$��@$�p8�`JK�kc��c�v�*�ծ���`���G���~)��v���+?���%�M��	�&�[`X��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��h0

�8���o���E���o��0T���^BPPhhhc�� n��w��r }4@4@
�2H@H@��BBL�PCPC�hKhK �M M�M M� M  Mh ��M �M��O �OX�P P � R  R(�HR` RD
dT(�T�PY+PKLH[��~��lib64/ruby/fcntl.sonuȯ��ELF>@@�@8	@x
x
 �
�
 �
 X` �
�
 �
 ��888$$X
X
X
  S�tdX
X
X
  P�td�	�	�	$$Q�tdR�td�
�
 �
 ((GNUP:No�h�)�-�ե�9�pM�� �	BE���|�qXϫ�  `, F"q�0 �8 �0 U�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_fcntlrb_define_modulerb_define_constlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5/opt/alt/ruby27/lib64�ui	��
 ��
 ��
 �
 � � � �    ( ��H��H�1
 H��t��H����52
 �%3
 ��h�������h��������h��������%�	 D���%�	 D���%�	 DH�=�	 H��	 H9�tH��	 H��t	�����H�=�	 H�5�	 H)�H��H��H��?H�H�tH�U	 H��t��fD�����=u	 u+UH�=2	 H��tH�= �I����d����M	 ]������w������SH�=�����H�5�H��H������H�ߺH�5���H�ߺH�5����H�ߺH�5�����H�ߺH�5����H�ߺ	H�5����H�ߺ
H�5����H�ߺH�5��|���H�ߺH�5u�h���H�ߺH�5l�T���H�ߺH�5`�@���H�ߺH�5T�,���H�ߺ�H�5H����H�ߺH�5<����H�ߺH�5/��H�ߺH�5$����H�ߺH�5����H�ߺH�5
���H�ߺH�5���H�ߺH�5����H�ߺH�5��x���H�ߺH�5��d���H��[�H�5��O�����H��H���FcntlF_DUPFDF_GETFDF_GETLKF_SETFDF_GETFLF_SETFLF_SETLKF_SETLKWFD_CLOEXECF_RDLCKF_UNLCKF_WRLCKO_CREATO_EXCLO_NOCTTYO_TRUNCO_APPENDO_NONBLOCKO_NDELAYO_RDONLYO_RDWRO_WRONLYO_ACCMODE; ���<T���dD���|zRx�$���@FJw�?:*3$"D��0\�����E��GNU����
 �����
��
 �
 ���o`��
� H`��	���o����o�o~���o�
 ��GA$3a1��GA$3p1094�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignfcntl.so-2.7.8-141.el8.x86_64.debug�o�B�7zXZ�ִF!t/��]?�E�h=��ڊ�2N�	za�1�T�Bn�c/L���pZ��<�vke.P��'>G�1��W�#����$��<B�p0̌��gd%�]��0b[�xJåY�b��zݢX����H,Y�M5~t�-�͉Y�P(�H�4�E��]�,4*��A�;�����B�~��H�|"�4�;%�B�0����'u�<x�,n�FѕVœT)���@cH�x��E'[f�I˔����ud�q�z�y�
�/�VWļ���.�'�Z�jx���M,�����=�/�,�1��Y�2��>n���i�^Ϧm�(��X�O/G���y1M&�� �'�#H|�_��|�c
Z���	��a��L�
����jU���;�J��M��,e폰�RO�nipm��.����)J���g~��Oz
_^��o�M-{!��;���,�3N},t��ɻe�-�-�l�bp�Jr>`�����f��G��/7�V�� �4'�P�H�����/e
$�G�oUM:�
�u�+͹DbBb��p@}�QǬ<j�?��C�X`Ń��d�����
x��IV��/�s��M�M�KI.+��`��oyF� H*��]�Dƛ�΍��H+���
�{��E/�;"�>�椆�о��@*�91�
6�4�F!	u�]�%%	r�&��j�},���3%�7�D�x�ޝ��θ�Gֶ���ﷲ��O�Ds2$z�HB���8���q�����z��?ԍ�۟|R$�-�2�yd2��A��D])U����L͎��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0���8���o~~E���o�� T���^B``Hh��c��@n0w@@�}��
�2�����	�	$��	�	x�X
X
 ��
 �
��
 �
��
 �
��
 �
��� � � 0�0 0�8`0�
$(L@�+PKLH[�C���lib64/ruby/zlib.sonuȯ��ELF>�B@�@8	@���� 0�0� 0� pH	 H�H� H� 888$$������  S�td������  P�tdh�h�h���Q�tdR�td0�0� 0� ��GNU�)6
�*�젖�	��r�84��@ ���BE���|�qX)hV�k�&Q�Y {	l�]�	{���U	*�q���lh:f{��b	&X����^9�	�@�	�U@}`�/,�o	�3n��||�����c%r� �����K��	�w����S$J>
14�	�	"eW�	"����:���_i���	"�<�Pb�y���sC	�	�O(	���K��, 4	���3F"����'ZI��D�%	9
�!L
x!@
�!���i__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_ensurerb_rescuerb_eNoMethodErrorrb_errinforb_obj_is_kind_ofrb_funcallvrb_check_typerb_mutex_synchronizerb_block_given_p__stack_chk_failrb_protectrb_str_capacityrb_str_modify_expandrb_thread_call_with_gvlrb_str_set_lenrb_str_catrb_str_buf_newrb_obj_hiderb_cStringrb_obj_revealrb_str_new_staticrb_yieldrb_str_newmemmoverb_mutex_newcrc32rb_default_external_encodingruby_xfreeruby_xmalloc2rb_exc_new_cstrrb_exc_raiserb_sys_failrb_sprintfrb_exc_new_strzErrorrb_string_valueinflateInit2_rb_str_resizerb_warningtimerb_keyword_given_prb_empty_keyword_given_prb_free_tmp_bufferrb_error_arityrb_check_hash_typerb_get_kwargsrb_fix2intdeflateInit2_rb_check_typeddatarb_uint2inumrb_gc_markrb_enc_dummy_prb_str_conv_enc_optsrb_econv_str_convertrb_enc_associaterb_io_extract_encoding_optionrb_econv_prepare_optsrb_econv_open_optsrb_data_typed_object_zallocrb_hash_newrb_ivar_setrb_class_new_instance_kwrb_io_closerb_jump_tagrb_respond_torb_check_convert_typerb_call_superrb_attr_getrb_str_inspectrb_str_appendrb_num2ulongrb_ivar_getadler32rb_hash_asetinflateInit_deflateInit_get_crc_tablerb_ary_new_caparb_ary_pushcrc32_combinerb_num2longrb_uint2bigadler32_combinezlibVersionrb_str_new_cstrstderr__fprintf_chkrb_raiserb_str_resurrectrb_eEOFErrorrb_rescue2rb_gc_force_recyclerb_str_substrrb_eArgErroronigenc_get_left_adjust_char_headrb_enc_precise_mbclenrb_enc_mbclenrb_enc_str_new_staticrb_econv_convertrb_econv_check_errorrb_enc_from_encodingrb_int2inumrb_econv_closerb_obj_as_stringrb_ascii8bit_encodingrb_enc_getrb_str_conv_encrb_str_duprb_time_newinflateSetDictionaryrb_out_of_intinflateSyncPointinflateSyncdeflateSetDictionarydeflateCopyrb_rsmemchrmemcmprb_check_string_typerb_eRuntimeErrorrb_ary_newrb_lastline_setrb_num2intrb_frame_this_funcrb_id2symrb_enumeratorize_with_sizerb_warnrb_intern2rb_enumeratorizerb_str_to_strrb_Integerrb_num2uintrb_alloc_tmp_buffer_with_countrb_extract_keywordsrb_mutex_unlockrb_mutex_lockrb_hash_arefrb_nogvldeflateParamsrb_file_open_strmemcpyInit_zlibrb_define_modulerb_internrb_eStandardErrorrb_define_class_underrb_define_constrb_cObjectrb_undef_alloc_funcrb_define_alloc_funcrb_define_attrrb_mEnumerablerb_include_modulerb_io_addstrrb_io_printfrb_io_printrb_io_putsinflateResetinflateEndinflatedeflateResetdeflateEnddeflaterb_define_module_functionrb_define_methodrb_define_singleton_methodlibruby.so.2.7libz.so.1libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.3.4GLIBC_2.14GLIBC_2.2.5GLIBC_2.4ZLIB_1.2.2/opt/alt/ruby27/lib64/
Pti	Q
���]
ui	h
ii
t

��'~
0� E8� �D@� @� `� j�h� �\p� �kx� �E�� q�� �\� Pl� �E� �� U � 0� +8� g@� .H� 	P� 
X� `� h� p� x� "�� #�� ;�� M�� O�� Z�� w�� x�� ��� �� �� �� �� �� �! !(!0!8!@!H!P!X!`!h!
p!x!�!�!�!�!�!�!�!�!�!�!�!�!�! �!!�!$�!%!&!'!(!) !*(!,0!-8!/@!0H!1P!2X!3`!4h!5p!6x!7�!8�!9�!:�!<�!=�!>�!?�!@�!A�!B�!C�!D�!E�!F�!G�!H!I!J!K!L !N(!O0!P8!Q@!RH!SP!TX!V`!Wh!Xp!Yx![�!\�!]�!^�!_�!`�!a�!b�!c�!d�!e�!f�!h�!i�!j�!k�!l!m!n!o!p !q(!r0!s8!t@!uH!vP!yX!z`!{h!|p!}x!~�!�!��!��!��!��!��!��!��!��!��!��!��!��!��!��!�!�!�!�!� !�(!�0!�8!�@!�H!�P!�X!�`!�h!�p!�x!��!��!��!��!���H��H�� H��t��H����5b� �%c� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h��������h��������h������h �������h!��������h"�������h#�������h$�������h%�������h&�������h'��q������h(��a������h)��Q������h*��A������h+��1������h,��!������h-��������h.��������h/������h0�������h1��������h2�������h3�������h4�������h5�������h6�������h7��q������h8��a������h9��Q������h:��A������h;��1������h<��!������h=��������h>��������h?������h@�������hA��������hB�������hC�������hD�������hE�������hF�������hG��q������hH��a������hI��Q������hJ��A������hK��1������hL��!������hM��������hN��������hO������hP�������hQ��������hR�������hS�������hT�������hU�������hV�������hW��q������hX��a������hY��Q������hZ��A������h[��1������h\��!������h]��������h^��������h_������h`�������ha��������hb�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr�������hs�������ht�������hu�������hv�������hw��q������hx��a������hy��Q������hz��A������h{��1������h|��!������h}��������h~��������h������h��������h���������h��������h��������h��������h��������h��������h���q������h���a������h���Q������h���A������h���1������h���!������h���������h���������h�������h���������%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%�� D���%}� D���%u� D���%m� D���%e� D���%]� D���%U� D���%M� D���%E� D���%=� D���%5� D���%-� D���%%� D���%� D���%� D���%
� D���%� D���%�� D���%�� D���%� D���%� D���%� D���%� D���%� D��AT1�I��UH��S��H�=���������uBH�=�� u�	H�=I�����H��� H�=�� ���H���L��[H��]A\����L��H���[]A\�U��S1�H��H�=Ն�@����+�����u>H�=7� u�	H�=����H�� H�=� �I���H��1�1�H��[���H��[�UH�=��1��L$�����L$�_H�=f�1��T$�����L�t$�T$�-_1�H�=���L$���M���L$t3��L�t$H�D$ ���_H�=ņ1��T$�r���L�t$�T$��^H�D$H�D$ ��_�H�=I� H�B� H9�tH�޺ H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=տ u+UH�=
� H��tH�=^� �	����d������ ]������w����AVAUI��H��ATA�����UH��SH��L9�~"A�����H�����L)�L�A��H��L9��H��~��H��[L��]A\A]A^���[H��]A\A]A^�@���G�@��H�H� ߸�ff.�@�����fD����fD��H������H������H��t�@H��H��H��H�H�<
H�=�.������H��t�@H��H��H��H�H�
H�=�7������H���1�H�=k������fD��UH��SH��H�$� H����H��H�޻����H��t*1�H�}H�}H�M��H�5^� �����H��H��u
H��H��[]�H�Ǿ���H��H��[]Ð��S1�H�H�O��H�5� H�?���K����H��H�����H��[�fDSH��H��0dH�%(H�D$(1�H�<$H�t$H�T$�L$H�D$�t0H�{H��H�5�%�D$$�q�H�D$(dH3%(uH��0[������������@��H��H��H�=n\dH�%(H�D$1�H�T$�D$����HcD$H�L$dH3%(uH����]�ff.�f�AWAVAUATUH��SH��L�oI����I�]M��I��A�� ��M�}L���^�L)�H=�?��L��H��?L�H�H��I�����L���j���I����@N�L�e�u@I�$I��A�� M��tEI�D$ID$H�E8H��1�[]A\A]A^A_�f�L�����H��H����H)�H=�?vS�E@@H����I�D�fD���H=�?v&H�%A�I��A�� �E@@�l���f��L�������>���f���AWL�=�� AVAUI��ATE1�USH��D�wH���H��H�=����A�������A�E����H���H�{ D���k@�PH�{1�A��H��tH�7�� uoH����+k@H�����A����E��tA���uX�s@��ui�K(��u	L9��tYA�U$���e���H���������l���A�E H��1�[]A\A]A^A_�H�w�f.�H��Ic�[]A\A]A^A_�fDH�H��Ic�[]A\A]A^A_�f�H�H��H��H�H���[]A\A]A^A_�ff.�AUI��ATUH��SH��H��L�gI����L�����I�$�� t^I�L$L�H9�|`�S@��D)�D9�B‰C@L��H��L�����H�SH��� uQH����H�DH�C8H��[]A\A]�fDH����L�H9�}�L��L�����C@L�c�f�H�BHBH�C8H��[]A\A]�f�H���x�L��H��H�CH���6�H�{H�GH� tH�GH�C8�C@H��[]A\A]�w����S�H��H��dH�%(H�D$1����H��$�G0�D$���H�H�D$dH3%(uH��[���f�H�wH��t6SH��� tH�VH�vH���M���H�C[�H��H�������ff.�@USH��H���tBH�kH��tPH��� H��H�0��H�CH�C8�C@�t:H��H��[]�����u�H�kH��u�1�1��/�H���f.��k��t�H������AVAUATUSH�_H����L�#A�� ��L�cI9���H�[H��I��H�����I)�H�4+H��L��I���v�I�~L���j�I�^H��� unH����H��H�DI�F8H�����H��H)�H��HEº@H=@HO�A�F@L��[]A\A]A^�fDI��A��I9�~CH���a���f.�H�kH�CH��H��yE1��%	 �(����[]A\A]A^�C�����SH�wH�H��� u<H��H����H�߹���H�߹1�H�5�t���H��[���DH�VH�v��fD��SH�wH�H��� u$H��H����H�߹�D���H��[���H�VH�v��ff.�ATI��UH��SH��H�H�GH�G��H�1�1�H�CH�1�H�C`H��H�ChH�L���H�CpH�CPH�C �C(H�C8�C@Hǃ�H���Hǃ�Hǃ�Hǃ����H���H���ǃ�Hǃ���Hǃ�H���Hǃ�ǃ�Hǃ�Hǃ[]A\�f���H�����@��������S��H�����K����H��wHc�H�>��H�=ȴ ��H�����H�=�� ����H�=�� ����H�=}� ����H�=w� �z��H�=q� �l��H����H�=k� �V��H��H�=:q��1��!�H�=R� H�����u�����H���<�����SH�� H�t$H�|$H�\$dH�%(H��$1����H��H�5�� H�����H�{ �pH��p������uQH�D$H��H���H��H�=NH�L$HDŽ$�4H�D$ �T�H��$dH3%(uH�� [�H�t$`���l����g��SH��H�� H������uCH�{H�H�CH�C8�C@H��tH�tH�C[�f�1�[�h�H�sP�����ff.�f�SH��thH���uAH�{H��tH�thH�CH���H�{ �P��uWH��[��H�=v1��r�H���*�����1�H�=�u�R��[�1����H�sP���T���@��H��S�����S�H��1�H�H�5p���H�����H��[� ����������USH��H��(dH�%(H�D$1�H���@���H���t��H��H���������t��	��҉D$�������H�߈T$H�t$�
f�L$�D$@�l$�D$����H���H��t0H��� ��H�VH�vH������H�5rtH�����H���H��t,H��� tEH�VH�vH���e����H�59tH���Q���H��H�D$dH3%(u=H��([]�H��H�����H��H�����j���1���H�����������ATUSH�L�gH���y���I�,$�� u}H��I����t0H���H�=Z� H��L����1�H��L��H���H����H����H��Hǃ�Hǃ�Hǃ�[]A\�:���f.�I�l$H��~�M�d$�|���ff.����AUATUS��H��hdH�%(H��$X1���>�q�H�D$ ��u�?�H�|$ t
H�|$ �M��������@Hc�I��H�|���I��H����H��� 1�L���H��$0L��$@�H��$0H�p� H��$8���L��$@�H��$HI��4LD�H��4HD���H�D$ ������K���I�EH�D$���9���H�\$ H�|$�w�H�5p� H�Y���H���A��������I��t
L�����Ɖ�$�E1�H��tH������$�A��jp���H�{ H�=kA�P�W�ZY����H�D$H��H��$@H��H�=���H�L$ H��$@H��$H��H��$XdH3%(��H��h[]A\A]��z����3���I�UH�D$ H�T$������H�\$ H�����H���e������[�H�D$ ��tpI�EH�D$�����H�|$H�\$ �-�H�5&� H����H����������E1�DŽ$���������H�߉D$����D$H�t$p������������=���ff.�@��H��H�5� ���H��H�����H��H�5�� ���H����HE�H��Ð��ATI��UH��S��H��dH�%(H�D$1��G�H�$��������u]H�5�� H���N��H��H�{ �pH�0i�a�����H�H��H�L$dH3%(��H��[]A\�DM�$$��ugH�5P� H������H��I��t�L�������fD�s���x/H�$uH���S���A�H���r��M�$$��uH��u��H�<$tH���Q��1������H�sP���h����c���AVAUI��ATI��U��SH��`dH�%(H�D$X1�H�D$H�\$H�D$8H�D$H�D$@H�D$ H�\$0H�D$H���H�D$(���:���W1�H�D$0H��1�H�x �H��tLc�O�D�L���H��H9�tH�9��H��t�H��H�H9�u�9���H����L��H�5� E1���H�|$ H��H��t��A��H�|$A�H��t��A��H�|$�H��t�q���H�|$�����H��t�Z���H�gjp��PH�{ E��E���(�ZY��uzH�L��H�\$XdH3%(u^H��`[]A\A]A^�fDH�|$(���2���f��k���x
H�t$(���H�|$(t
H�|$(�k��1���������H�sP���}�ff.�f���H��H�5�� �\�H��H������H��H�5�� �<�H���H��H�H��������H��H�5q� ��H�P�H��tH��� uH��
��>H��H���DHcBH��H�D�f���H��H�5!� ����x@H��� ���SH��H����H�{���H�{[���ff.����SH��H�����H�����H�����H�����H�����H��[�s�AUATI��USH��H��H���H��tWL���M��tH���0����u,���H���H��L��L���H��[]A\A]�3�L��L�����I��H���L���^��H��L��[]A\A]�SH��H��H�t$H��tH��H���1�H������H���tJH�|$H�t$����H���H�L$���H�rH���H�z������H���H�D$H���H��[�ff.���SH�� ���H���H�5�� H�x H����H��[�ff.�ATH�'� I��US�h�H�X H��H�H�CH�C�u��H�CPH�CH�r�H�C`H�W�H�ChH��H�C �C(H�C8�C@L���H�kp[]A\�f���SH�5� �_���H���w�H�50� H��H���5�H��[���H�5՝ �0���UH��SH��8dH�%(H�D$(1���tc�|$H�=�H�t$H�t$H�T$ H�T$�D$�G��H�ËD$��u`�����u9H��H�\$(dH3%(uVH��8[]�f�����H������t�H�=�� H��H��H��@���H���H�}�����|$�����5��D��1��%���D��H�WH�w��?�X����AUI��ATUH��S��H��HdH�%(H�D$81�����H��H�D$ H�D$H�D$(H�D$H�D$0���H�D$���?���X1�A�I�EH�$H�D$(����H��tH�H�D$0H��tH�H����H�5L� H���D��H�|$�����H��H��t�\���H�|$���E1�H��t�A����A��jp���H�{ H��`A�P���ZY����L�,$H�L��H��L����!���H�5J� L���������
H�L$8dH3%(H����H��H[]A\A]��H��tI�MH�H�D$0�������H��tI�MH��������H�|$t
H�|$����������fDHc�H�
`H� `H�|�����I��H����H���H�D$ H�D$H�D$(H�D$H�D$0���1�H�D$���5����o���qDH�|$�~���V���f�H���H�5"� 1�1����1�H�����H��H��H�5}_�z�����D���������A�H�T$���f�H��H�D$ H�D$H�D$(H�D$H�D$0����H�D$���w����E���H�sP�������f���U1�H��1�SH������H�5[� H��H������H��tYH�3H��� t\H�CH�p�H������H�5�^H��� ��H�����H��H�������H�5�^H�����H��H��[]��H����H���ff.�ATI��U��SH��H�� dH�%(H�D$1�����H�D$���
���!����H�H�D$����H�[����H�|$�4H��������H�H�|$��H�|$�t��H�T$H�
�� ��H��H����L��H���-�H������H�t$dH34%(��H�� []A\��H�D$H�|$t
H�|$���H�|$t}1�1�1�A��H�|$H���g���H��1�1�A��H���fD�������H�|$t
H�|$����1����3��H�JH�R�;���H������H�����1�1�1�H��A��H���"���H�|$�b�����������USH��H��H�t$H�5w� ����H�t$�H��� H���	���H�T$H��H�����H��H��[]�ff.�@��H�� ������H�E� �����SH���H�t$H�|$H�\$dH�%(H��$�1����H�D$H�D$H�D$ ���H�{ �pH�5�[H�D$(H���H�D$pH�e�H�D$xH�)� HDŽ$�H�D$`H�D$0�D$8H�D$H�D$PH��$������uUH�D$H��H��$�H�
�H�=�H�L$H��$�H��$����H��$�dH3%(uH���[�H�t$`���������ff.���ATUH��S��H���dH�%(H��$�1��d��H�D$���[����H�EH�D$��t-L�e����H�\$�����I��tL���x�����@�����H�\$H�|$���H�D$H�D$H�D$ ����H�{ �p��H�D$(H���H��YH�D$pH���H�D$xH��� HDŽ$�H�D$`H�D$0�D$8H�D$H�D$PH��$��������H�D$H��H��$�H�c�H�=��H�L$H��$�H��$����H��$�dH3%(��H���[]A\�fD������~_H�UH�D$H�T$��t,L�e��uCH�\$H�������H���������H�������H�\$�����H��������H�|$t
H�|$�~���������H�t$`�������ff.����ATUS�����H�����L��H��@�;H�����H��H�����L9�u�H��[]A\�D��ATUH��SH��tEH�I��@��tJH���tRH�H��L��H�����H��������?H9�wI[H�D]A\��H�����I��@��u�H������H���u�H������H���f.�[H��]A\���@��ATUH��SH��tEH�I��@��tJH���tRH�H��L��H�����H��������?H9�wI[H�D]A\��H���p��I��@��u�H���?��H���u�H���/��H���f.�[H��]A\���@��H�����H��H������H��H��H�� H����PH�
l]���t���t
H���DH�
y]H�� H��V�H�81�H��������SH���tH�,� H9��tH���{���H��[����f�H��� H�
:]�H�DVH�81��,����f.���SH���uH��[���f.�����H��[���f�H�
H��� uUH����H9�~9H)�H��UH��H�SH��H��H�7H�=�� �T��H�EH�H��[]�f�H)�H��f�H�JH9�~�H)�H�R�ff.���H��H�H�� u*H�� H��H��H�H�=:8H�c�������H���H�=� H�5IU1�����ff.�@UH��H��H��SH������H�}H��H��t���H�5[� H��H������H������H��(H����dH�%(H�D$1�H�� H�<$H�=#��H�t$H��H��H�D$H��jL�H�Ǒ L�1����ZYH�T$dH3%(uH��(��I��f�ATI��USH��H�� dH�%(H�D$1�H�l$DA�$��I��$�H���=���H�D$H����H��� uvH����tH�p�L�����H�l$H�D$I�D$H��t�H�H��H�ց� uF�������t�H��uiH��H����H�\$dH3%(ujH�� []A\ÐH�PH��~�H�p눐H�x���fDA�$t$I�L$1�H��t�H�H�ց� H��t�H�A�H�=�� H�5eS1��������ff.�ATUSH��f�H�CH��t&H�H�с� u0����„�t/�t[]A\Ð�u��H���n����@H�x�„�u�H����H�pH���L���1��!DH��� ��H����H��H9�}�<
��H��u�H�����L��H��H���V���H�CH��tC@H�H�с� uj����„�����:����H�����H�CH��u�������H������ސH�p�8����H�H�R����H�x���fDHc�H���u��[L��H��H��]A\���H�pH�������H�p���ff.�f�H��~SH�H��tH������f.�ATI��UH��H��SH������H��L��H�EH�����H�}[]A\���@��AUI��ATI��USH��H��(H�WdH�%(H�D$1�H���4��H�l$�@H��H�p��I�}�L���I�UH��tH��� uJH����I9�~GI���H�����H�D$H��t4H�l$H�T$H��� t�H�PH�p��H�BI9����1�H�L$dH3%(uGH��([]A\A]�H��tH��� t"H�BL9��:���H�=~� H�5\P1����H����������f�H�H��twUH��SH��H�H�с� H�xu;H��t^H�XH�xH)�H��d1�H�����H�}���H�EH��[]�@H��tkH�PH9�|nH�EH��[]���H��H�xH����H)�H��~�H�H������H�}H�����H�}H��H��[]����f�H����H9�}�H)�H���y��H�EH��[]�ff.�ATH��USH��H�����H�{��txH�CH� t8H�@�(H��D� H�C0����H9��u�CHL9�u)[]A\�fD�hH����H�=ؐ H�5�U1��*��H�=�� H�5�U1����H�5�� H��N�2���f���H��H�5!� ���H�H�у�H��uDH�HH��tH�1�� u(���u'��t3H�xH��tH������H�ytٸH����H�ǾH�D$����H�D$H�xH��u���D��H��t#H�WH��tH�
�� tH�z�„�t��t��@�������DH����Z����H���USH��H��H�������H�H����t-�VfDH��H����H9�~:�H�����H�M��u+H�EH��t�H�H��H�с� t�H�@H9��H��u�8H�uH��t:H��� tH�~t+H�FH9�HN�H��[]�D���tH��H������H�������uԾH��H�D$�n���H�D$�H��� H��H�5�LH�81����ff.��AUI��ATUSH��H��H�GH�(�� uQL�`H����H����L�I���I�H��L���s��H��L)�I��H9�-H��H��[]A\A]��L�`L��H��t�Hh�DI���H��H������Hc�H���|-I�H��IO�H��H��[]A\A]�DL���o����H��L��H��L�����H��HO��n���UH��SH��H�t$H��tLH�|$������H�t$H���t�� uOH����H��H���G��� uSH����H��u��D�1�H�5�K���H��[]�fDH�VH�v��H���n��H��[]��H�VH�����DUH��H��SH��H���,��H�EH�PH� tH�P�����H�U8H��H9�HOމ]@H��[]�6��fDH�GH��tV�W@H9�u�DUH��SH��H��H�����H�SH��� t0H�BHB�����H�C8H9�HN��s@H��[]�fD�K���H����H�D��f.�AVI��AUI��ATI��USH�_H��t"H������H�+H��� u7H����H9�!L��L���8���I�~H�/�� u!H����H�_�@H�kH9���DH�oH�_J�<#H��H������L��L��H������I�~J�t%���A�F@��t��L9�LF�Mf8D)�A�F@[]A\A]A^�UH��SH��H�H��t.H�ׅ H��H�0����H�EH��H��[]�f.�1�1��w���H����f���H��H�5� �|��H��H�x�f�USH��H���2���H��tM�xH��H���+��H��H��uH��H��[]��H���H���H���:�H��H��[]�H��1�1�[]����AUATUSH��H��(dH�%(H�D$1�H���Lc`H��t-��@H����L9�}<�H���o�H����H�k1�H��t�H�E�� t�H�EL9�|�fDH���L���tH����������H�u�� ��H�}H�uH�L���H��H��Hc����H��twH��H�����H��H�L$dH3%(H���kH��([]A\A]��H�kH��tH�U�� uU����„��L�����u�H������f.���f�H��H�}��H��M���DH�}���fDL��
1��ٽ��H�SH��H��� u L�bL�d$H����H����I��L�bL�d$H����H�BL�H��L�mH�E tL�mH���H�L$A�M�E
H�t$L�l$�F��H�������H�t$H��L)����H���H���H�����H�t$H��L)��������L���z���蒾��f�SH��dH�%(H�D$1�H�GH��tIH�H���� tVH�x����t2H�����H���H��H�5� �H�$�3����@u.fDH�D$dH3%(uHH��[�f�������DH���H�5�� �-�����t�H���H�5�� 1�1��ҿ����˽��ff.�ATI��UH��SH����tNH���@t8H���H�=�� H��L���;��H�H��L��H���H��H�����<��H��[]A\�����[���f���SH����t3�1�H�5EH�����H�����H������[�fD�����f�H��H�5�} ���tH���H�=_� H�5�D1�衻�����H������H���H�������H������H���&���H��tH� tH�@�H�%�H��H����H����f���AUI��ATA��H��UH��SH��dH�%(H�D$1��1���H�����H�$����E���u^�1�H�5�CH������H���`���H���H�5�� ������uQH�T$dH3%(H����H��[]A\A]��M�mA����I��t�L����������t��@H���H�5"� 1�1��q���������E��xAH�$t M�mA��u1H��t�H��������H���!���H����������H�<$tH���޿���1�D���_������f.���H�����H�x0H���F���fD��H������H�PH�xHH��t1H��� tH�BH9�vH)�H��H�D?��H������H)�H�����ff.���SH���c���H�H�����tH��@H�H��[�H��H�H��[�ff.����H���#����H���@HE�H���ff.�@��H����H���t,H�@�H��tH�H�ʁ� u����HD�H��H����H�xH�H����H���ff.�f���USH�����H��H���H����Hǃ�Hǃ�H��Hǃ�H��[]���H���3���Hc��H��H�D�f���H������Hc��H��H�D�f���H����Hc��H��H�D�f���H������H���H���3�����H�����H���H������H�����H��H��������SH�� dH�%(H�D$1��b���H�PH��H�x0H��tH��� ��H�BH�H�����H�5ρ H��H����H�$H�D$����H�����H�1�1�1��G���H���ǃ�H���Hǃ�H��t4�ʶ��H���H������H�pH���H�x�R���H���H�t$dH34%(�uH�� [�H�����3����o���ff.�@��AWAVAUATU��H��SH��H��(dH�%(H�D$1��1������QI�čE�L�l$1�L�t��FDH��H�p��L���=���H�T$H��� ��H����H�L�l$H�D$L9���H��H�{�H�|$@��uH�����t
�����t
�D���H�D$M��$�M��tR�m���I9�tHH�|$M��$�覵��H�|$L��H���v���H�D$H��� �E���H�PH�p�C����H�D$��f�H�B�B����H��������?H9�w)H�D-H�L$dH3%(u+H��([]A\A]A^A_�DH������fD����̵��ff.����H�����H���H��u�H���@H��鯹��ff.�@��H���s���H���H��u�H���@H���o���ff.�@��H���3���1�H���H��鱺���PXH�5�<H��H�dy H�81��ҳ��f���H���C���H��tH�������H��H�55v �е���tH���H�=�~ H�5�<1�聳�����ATI��U��H��SH��dH�%(H�D$1����H���O���H�$��ts����uA�1�H�5D<H���#���H�����H�t$dH34%(��H��[]A\�fDM�$$��ujI��t�L���A�������t��f�諹����xBH�$t!M�$$��u3H��t�H��諸���f�H���^���H��菸����Q���H�<$tH���v����1������蓳����UH��SH��H�����H��1�H���>�H��H��[]�@��AVAUI��ATU��H��SH��dH�%(H�D$1��S���I�����H�$��to����M�u��t&I�]����H��tH���#������	�1ۉ�L��L����L�����H�L$dH3%(uxH��[]A\A]A^�@���Y�����~<H�$M�u��t I�]��u&H��t�H���R����|���DH��t�H���;����H�<$tH���*�������詶���D���@��S�V����1�H�5:H��H�����H��[�T��@��H���#���H������H��Ð��H������H�������H��Ð��H������H���HE�H���ff.�@��H�����H���H������H�����Hc@xH��H�D�D��H���s���H�xHH��鶴��fD��H���S���H�x0H��閴��fD��USH��H���.���H��H���3���H��Hc����H��H��[]�ff.���USH��H��dH�%(H�D$1�����H��H�$H������H�4$H��� u3H��H����H�} 蟳����u:H�L$dH3%(H��u"H��[]ÐH�VHc�H9�uH�v��H�������Q���H�uP���F��fD��S�V���H�x H�������t
��u1�[�D�[�H�sP�����fD��AUATUSH��H�t$����H�|$I��諰��H�l$H�]�� ��H��H����I�D$H��tfH��� ��H�PI�T$ �����H9PHNPA�T$(I�|$ ��A�Ņ���I�|$H��tH���I�D$A����H��~1�����I�l$ I�|$ H9�HO�A�\$(蘵�����������1�H��[]A\A]�f.�H��H��I�D$ ���[���H�]H�m����I�D$H�0�� uxH����A�D$(M�l$L��H)����H��H��L���>�H���[]A\A]�fD1�����%���@A�T$(I�t$ I�|$����E���f.�H�p�I�t$PD���=��I�t$P���1�����USH��H��dH�%(H�D$1��.���H��H�$H���Ϯ��H�4$H��� u3H��H����H�} �/�����u:H�L$dH3%(H��u"H��[]ÐH�VHc�H9�uH�v��H���f���衭��H�uP�����fD��ATI��UH��H�5�n S�v���H��H�����H9�t7H�p H�{ H�������uZH�EH��u8H�CH�EH��uH�CH�EH�L��[]A\��H���8�����fDH���(���H�CH�EH��t���1������ff.�@USH��H��H��u�H�����H��t�H�SH��tRH�
�� tbH�z�„�u>H���ֽ��H��H��tqH���H���H�����H��H��H��[]�6��fD��t#H��1�1�[]�,���@������DH�߾�K�H��1�1�[]���H���[]�AWAVAUATI��U��H��SH��HdH�%(H�D$81����H��H����@�D$���<H��o I�����H�H�D$(H����H�(�� ��H������H�߽���H�c3�D$H�$�(fDH����H9�}3����H�����L�{1�I��t�I��� t�I�GH9�|�I� ��M�WI��D1�I��tI��� �H����I9�~4��'�H�����L�{M�WI� tM�WL��H)�I‹T$���`H�$M����E1��1I��tM�A�� ��I��A��M9�A��A �D�d$��L��L��L�T$L)�H��薫��L�T$H��I����L��L)�I�H���rH�4$H��L��蓫�����[M�T$I��1�I������I��� �����I�G����H�hH���S���H�@�D$H�$���fDH�����H��� ��H�x�„��t����P��[���H�D$0���Z���TI�<$H�|$(����M�l$���"I���xH��t
H�|$(����A���nI�M����H�D$(H���g���M���B���L��H�����H�����|$~6L9�|1�tH�SH��t"H�
�� �r���tH��H����I��L��H��莺��H��H���qH���H���H�����H��H���P������I��tI��� ��I�����t���H��H�����H�L$8dH3%(��H��H[]A\A]A^A_�DM�W����H���D$H�$���������>���H��tH�|$0諬��H�|$(fDH�������聧��H���H�D$(I��������fD�����5���L��L��L�L$L)�L�T$H��质��L�T$L�L$H��I������M�q�E���DH�T$(H��� usH��H����H9$t	H9���H�$M�����1I���x����L��L�T$L)��=���L�T$H��I�������E1���M�O�U����H�$H9Bt�H�B�M9��D$�|$~:�|$t31�I��tI��� ��H����I9�|�uL��H���Z�I�ƃ��L��H����H��H��t,�D$����H�D$(H�D$0H��H��H�D$(������������fD�˫������I�<$H�D$0H�|$(������M�l$����H�������H�|$0諪��H�|$(�����H�������s���L�����I�����I�G����H��i L�l$(H�H�D$(I���Q���H�������I���������M�����1�1��B�������H�z��������H��i H�5)-H�81������0���H�|$0t
H�|$0��������m���ff.�f���AUA��ATI��UH��SH���ԥ��H����H��H���=���H��L��D�����H��u�H��H��[]A\A]�ff.���H�����H��tH��H�D$����H�D$H���fD��ATA��H��USH��H��dH�%(H�D$1��F�H������H�$��tbE����twH�A����H��tdH�߃�tl�7���Hc�H����H����H�L$dH3%(��H��[]A\�fD�{���E��xUH�$u0H��tH��胨��H�������fD�k����f�H�A��uH���d���H���F����W���H�<$tH���2����1�D��賧��H��g H��H�5�*H�81������3���SH��觢��H��蟨��H��E1�1�1�H��[�,���ff.����ATA��UH��SH��������u�,@H���X���H��H��D�����H��u�H��[]A\�@H��[]A\�|���ff.����SH���è����u�DH������H�����H��u�[�H��[�7������S�F���H��u�+�H��H��轠��H��[����SH���S�����u�-DH��萤��H����H����H��u�[��H��[������H�����H�����H��tH�����ff.�PXH�5�)1�H��H�=k �e���D��AUATI��USH���z���ujL��H��芤��H��肥��H�H��� t?H�PL�h1�L��腢��H��tL)�H��H��蒡��H���H��L��[]A\A]�DH��L�h����V���fD��AUATI��USH�������ujL��H�����H����H�H��� t?H�PL�h1�L�����H��tL)�H��H������H���H��L��[]A\A]�DH��L�h�������fD��UH��SH���^���u.H��H���ޤ��H���6���H���H���H��H��[]��v���fDATE1�USH��H�� dH�%(H�D$1�H�l$��H��H�x1���L�L)�����H����H�������H�D$H����H�SH�:�� ��H����I��H�l$H�T$H��� u`H��H�p��H�{���H�CH��� �l���H�PH�x1�L)�L�臠��H���o���H�L$dH3%(u<H�� []A\�DH�PH�p�fDL�b�u���H�=�h H�5G&1�������ff.�f�AU��
ATUSH��H����������H�CH� ��H�@�8�g�x��]�P�����P����k�� �������P����ǃ��HL�c�
L��H����@	����J��@��ut@�������&H�CH��tH��� �k��������jH��[]A\A]��H���(��������҃�	����c���f���H��������vH�CH� �%H�@D�(�H��I��L���i�����AL��L���v��@���2�����H���:�����H���
���H�{H� ��H�H)�H��I������I�uL��H��������������H����������H�����H�{H� tlH�H)�H��H��誢��H�uL��H���������f�H�x���������H��H�߹1�[1�]A\A]�5���DH�������H���f.�H���"���H�5�e H�{H�I$� ��H�=�e H�5`#�ݚ��H�=�e H�57+1��Ț��H�=qe H�5�*1�賚��H�=\e H�55+1�螚��H�=Ge H�5�#1�艚��f���USH��H�����H���֬��H���H���H��H������tH�{t,H�߾���H��H��[]�H�=�d H�5�"1�����H�=�d H�5�"1�����USH��H��H������H�5�d Hǃ�Hǃ�H��Hǃ��*�����uH��[]��H�5id H��H��1�[1�]鿜��ff.�@��SH�5�[ �蚛���tH��H����V���H��[Ð��H��H�5q[ �l����u�H���DH��� ����H���fD��AWI��H�50[ AVAUATI��U��H��SH��8dH�%(H�D$(1�����H�D$H���ƛ��H�D$ �…�t7������^H�=g*1�����L�t$H�D$ M�/�<f��D$�W���������L�t$�T$��H�D$ M�/����H����H�{ �p��H�Y 芞������H�H��L����_���L��H��蔻��H�5�b L���e������=H�L$(dH3%(L����H��8[]A\A]A^A_��t.H�D$ H��t
H�|$ 誝�������)���f���t�H�|$ �����H����H�=1)H�E1��Ξ��L�t$H�D$ L�m���Hc�M�t�A���"���I���������A���������L�t$�T$I�������H�|$�͖��L�l$�M�I��M��������T$���]����M��LD�H�D$ L�t$����1�����H���H�5ba 1�1��ə��1�H�д��L��H��H�5�躛�����DH�|$ �f�������Hc�I�|��������H������T$蝗���T$I��H�D$����H�sP���Q����L������͉�L�t$������������SH��H��dH�%(H�D$1�H�tm�t(H��谣��H�D$dH3%(��H��[�fD������t�H�{H����H��� u1H���@��H)�H���z������f���@H�G�@H)�H=�?~�H��Z �D$H�0�ŕ��H�{�̚��H�sH�T$H�=�Z �ט��H�{莙��H�CH�߾@����|$������踖����@�T����������AWAVAUATUH��SH��(H��GH�W�D$H�{H�CH�D$u	H���cH�uL�sL���T��L������I��H��H�D$蜜��I��� �H�L$H�AH�C �����H9AHNA�K@�C(���,L�-������U����H�{H��tH��(H�C�S(A���'����A���mL�{pM���`H�5
_ L���U���H���I���V���L��H�����H���-H��L�����A�H��L��H��H�=����蛘��I��A�ƅ��E����|$�E�������<����C@���1���H��(���I�VH��H�S ������K@H�@�C(H�C H�D$������H����������fDH�s H�|$������D1��i����S(A��������uDH�\$H��tH��1��C���H������} ��u<H��(�[]A\A]A^A_��E���H�s H�|$�F���H�sPD��蘨���3�����AWAVAUI��ATI��U�����SH�����H��I��t
L��荚����E1�I��tL���z���A��L�k D���D�{@L��貔��D+{@���uYL�5$�*H����J�4:���D���L��D�{@����D+{@���u&L��1��̑��H�����H�{H��� t�H�W�f���u=H�{H�7�� t%H�wL��a���H���[]A\A]A^A_�DH������H�sP��脧��@��SH�tS �����H�#���H�5,T H�x H������H��[�ff.���ATU��S��~.H��H�5tI��H�;�ݓ��L��H�މ�H��[]A\��������W����SH��H��H�t$H��tMH�|$裒��H�t$H��� t&H�VH��~MH�v�H���|���H��[�fDH����t7H���ؐ�1�H�5k�M���H��[���C(��u����K(��t�����UH��SH��H�t$�Y��H��tQH�|$uH��H��[]��H�|$�ޑ��H�t$H��� tIH�VH�vH���Q���H��H��[]��H�t$H������t�H��趡��H��H��[]�@H��H�����ff.���SH��H�t$���H��tUH�|$t=H�|$�C���H�t$H��� ufH��H����H��賟��1�1��*���H��[�@H���x���H��[�f�H�t$H���3���H���[����t�H��H�$���H�$H��[�H�VH�v�fD��USH��H������H��H���t������H��H��[]�fD胏�����H��H��[]���USH��H��dH�%(H�D$1��~��H���u>H�����t5H��ƒ���u(�� tH�{~H�S�� H�S��u�DH�߃�u@���H�t$�H��D$�e��H����H�L$dH3%(uH��[]Ð��������@��ATUSH�� H�t$dH�%(H�D$1�@�������L�d$H��L���p���H���H��tD�o���H9�t:H�|$H���詍��H�|$H��H���y���H�H�D$�� tH�XH�p�f�H�D$H��� u�H��H�p��H��H���}��H��L�d$H�D$�H�L$dH3%(uH�� []A\�fD�S��������ff.����AVI��AUATA��H��USH��dH�%(H�D$1����H���z���H�$���"E���~M�.A���T�L��A����蝔��Lc�M���{H���W�H��躏��M��uH1�H��蛍��H�L$dH3%(H���YH��[]A\A]A^�����u8H��H��轿��H���"H�CH��t�H��� t�H�xt�f�L��H��襞��H���H���H��I���̽��H����I�4$�� �rI�t$H�����I�$�� �xH��I�t$��H�}H�E tH�}H���aL��1�觌��L���_������f.�I�nA�������H�<$tH�������D���a����M�������1�1��΋��H�����fD請���i���fDH�SH��tH�
�� t~H�z�„���������H��t
1�H�����H��O H�5FH�81��M���D�#���E���H���H�$M�.�A��u(H������H����������f�������|���f�I�nA��~�����H�������@L�������I�T$I�t$����蛍�����H�WO L��H�5gH�81�蛉���Ɗ��H��H����������fD��ATU��S��~.H��H�5�I��H�;�M���L��H�މ�H��[]A\�t�������ǎ�����USH��H��dH�%(H�D$1��>��H���u>H�����t5H��ƒ���u(�� tH�{~H�S�� H�S��u�DH���u8軉��H�t$�H��D$���H��H�L$dH3%(uH��[]������謉��ff.����AUH�=�ATUSH���v���H�=�H���W���H��H�5�H�vS H��M H�����H��H�5�H��H�KS ���H�?S H��H�5�H�&S ���H�"S H��H�5�H�S �ď��H�S H��H�5uH��R 觏��H��R H��H�5dH��R 芏��H��R H��H�5PH��R �m���H��R H��H�5<H�mR �P���H��R H��H�5,H�HR �3���1�H��H�w���H�5H�!R �4���H�߹����H�5���H�5����H�߹H�����H�5����H�߹����H���H�5����H�߹H�Ķ��H�5��Ȍ��1�H��H�\���H�5�谌���H�=�蟇��H��H�5�H��荎���H�=��|���H��H�5�H���j���L�-{K H�5�H��I�U�0���H��H���U���1�H��H�����H�5m�-���H��H���H�5\����1�H��H����H�5O���H��1�H����H�5@���1�H��H����H�51�ʊ��1�H��H�^��H�5#貊��1�H��H�&��H�5蚊��1�H��H����H�5肊��1�H��H����H�5��j���1�H��H�.���H�5��R���1�H��H����H�5��:���1�H��H�^��H�5��"���1�H��H�F��H�5��
���1�H��H���H�5���1�H��H����H�5��ډ��1�H��H�^��H�5�‰��1�H��H�f���H�5u誉��H�ߺH�5p薌��H�ߺH�5c肌��H�ߺH�5U�n���H�ߺH�5x�Z���H��H��H�54�(��������H�����H�5$H��I���Z��������H��H�{���H�5�?���L��H�5�����L�����H�����H�5����L��H�f��H�5��ʈ��L�����H�{��H�5�诈��L��H�0��H�5�蔈��L�����H����H�5��y���L��H���H�5~�^����L��H�?��H�5j�C���H��H��H�5g�����H�E���H�5WH��H���C����H��H�$���H�56�(���H��H�5Χ���ى��H�����H�Z���H�5�
�·��H��H�_���H�5�
資��H��H�$�H�5�
蘇��H��H�Y�H�5�
�}���H��H����H�5�
�b���1�H��H�6��H�5�
�J����H��H�{��H�5V
�/���H�ߺH�5�
����H�ߺH�5|
����H�ߺH�5s
��H��H�����H�5n
�݉��H�ߺH�5n
�ɉ��H�ߺH�5c
赉��H�ߺH�5\
衉��H�ߺ	H�5L
草��H�ߺH�5>
�y���H�ߺH�5;
�e���H�ߺH�51
�Q���H�ߺH�5+
�=���H�ߺH�5%
�)���H�ߺH�5
����H�ߺH�5
�����	H�5
H�����H�=
���H�=�H��K �΃��H�=�H��K 軃��H�=�H�}K 訃��H�=�H�bK 蕃��H�=/H�GK 肃��H�=�H�,K �o���H�=�H�K �\���I�UH��H�5�H��J �"���H�cK H�5�H��I���	���1ɺH�5UH��H��J 茈��H�=�J 1�H�,���H�5>��H��J L��H�50躇��H�sJ L��H�5#H�ZJ 蝇��H�VJ L��H�5H�5J 耇��L��H��H�5H�J �g���L��H��H�5�I���R���H��H��D H��H�0���������H�A���L��H�5��r���L���J���1�L��H����H�5��"���L��1�H�V��H�5��
���1�L��H����H�5���1�L��H���H�5y�ڃ��1�L��H����H�5g�ƒ��1�L��H�V��H�5W誃��1�L��H����H�5I蒃��1�H��H�f��H�59�z���H��H���H�5%�_���L��H���H�5�D���L��H�U��H�5�
�)���L��H����H�5�
����1�L��H�r�H�5����1�L��H�z��H�5��ނ��1�L��H�"���H�5]�Ƃ��1�H��H����H�5�
讂��1�H��H����H�5�
薂��1�L��H�z��H�5��~���L��H���H�5U
�c���1�H��H����H�5C
�K���L��1�H�o��H�5+
�3���1�H��H�w��H�5
����1�L��H�?��H�5�	���������L��H���H�5�	����L��H�5~��Ƀ��L�����H���H�5�辁��L�����H�o���H�5�裁��L�����H�T��H�5�舁��L��H�9�H�5s	�m���H��A L��H�5i�R���H��A L�����H�5B	�7���H�xA L�����H�5.	����H�%A L�����H�5	���������H��H�b�H�5�����H��H�5���ǂ��H�����H���H�5�輀��1�H��H�P��H�5�褀��1�H��H�����H�5�茀��H�����H�-��H�5��q���H�����H���H�5��V���1�H��H����H�5��>���1�H��H�����H�5|�&���1�H��H�Z��H�59����H��1�H�"��H�5*���1�H��H�j��H�5����1�H��H����H�5����1�H��H�ă��H�5����H��H���H�5����H��H��H�5��x��H�����H����H�5��]��H�����H���H�5��B��H�����H�S��H�5��'��H�����H�8��H�5'���H�����H�����H�5f��~��H�����H���H�5G��~��1�H��H����H�59�~��H�߹����H�����H�50��~���H��H�����H�5�~��H�ߺH�5
�t���H�ߺH�5�`���H�ߺH�5��L���H�ߺH�5��8���H�ߺH�5��$���H�ߺH�5�����H�ߺ
H�5����H�ߺH�5����H�ߺH�5��Ԁ��H�ߺH�5����H�ߺ	H�5�謀��H�ߺH�5�蘀��H�ߺH�5�脀��H�ߺH�5y�p���H�ߺH�5m�\�����H�5fH���H���H�=��<{��H�=VH��B �){��H��B H��[]A\A]���H��H���unknown zlib error %d: %s1.2.11to_hashHashpath, input=>zlib(finalizer): %s
zlib stream is in progressunexpected end of fileunexpected end of stringfooter is not foundnegative length %ld givenclosed gzip streamend of file reachedstream is not ready

rs modifiedeach_lineeach_byteheader is already writtennot in gzip formatunknown flags 0x%02xwbrbZlib@dictionariesStreamEndNeedDictDataErrorStreamErrorMemErrorBufErrorVersionErrorInProgressErrorzlib_versionadler32adler32_combinecrc32crc32_combinecrc_table1.1.0ZLIB_VERSIONZStreamavail_outavail_out=avail_intotal_intotal_outdata_typeadlerfinished?stream_end?closed?ended?closeendresetfinishflush_next_inflush_next_outBINARYASCIITEXTDeflatedeflateinitializeinitialize_copy<<flushparamsset_dictionaryInflateinflateadd_dictionarysyncsync_point?NO_COMPRESSIONBEST_SPEEDBEST_COMPRESSIONDEFAULT_COMPRESSIONFILTEREDHUFFMAN_ONLYRLEFIXEDDEFAULT_STRATEGYMAX_WBITSDEF_MEM_LEVELMAX_MEM_LEVELNO_FLUSHSYNC_FLUSHFULL_FLUSHFINISHwritereadreadpartialseek@inputGzipFileinspectNoFooterCRCErrorLengthErrorGzipWriterGzipReaderwrapto_iocrcmtimelevelos_codeorig_namecommentlinenolineno=mtime=orig_name=comment=eofeof?sync=postellopenputcprintfprintputsrewindunusedreadcharreadbyteeach_charbytesungetcungetbytegetsreadlineeachreadlinesexternal_encodinggzipgunzipOS_CODEOS_MSDOSOS_AMIGAOS_VMSOS_UNIXOS_ATARIOS_OS2OS_MACOSOS_TOPS20OS_WIN32OS_VMCMSOS_ZSYSTEMOS_CPMOS_QDOSOS_RISCOSOS_UNKNOWNstrategygzfilezstream$���2���@���N���\���j�������r���
���attempt to close uninitialized zstream; ignored.attempt to close unfinished zstream; reset forced.the stream state was inconsistent.the stream was freed prematurely.Zlib::GzipWriter object must be closed explicitly.invalid compressed data -- crc errorinvalid compressed data -- length errorZlib::GzipReader#lines is deprecated; use #each_line insteadZlib::GzipReader#bytes is deprecated; use #each_byte insteadunsupported compression method %dmulti-part gzip file is not supportedencrypted gzip file is not supportedKeyword flag set when calling rb_scan_args, but last entry is not a hashThe last argument is nil, treating as empty keywordsUsing the last argument as keyword parameters is deprecatedThe last argument is split into positional and keyword parametersPassing the keyword argument as the last hash parameter is deprecateddeflateParams() returned Z_BUF_ERROR;��8d���Xm���hv���v��\Hw��$�x���y��<(y��PHy��dXy��xhy����y����y����y���z����z���z��0H{��T�{��p�|���X~��L��������8����؀��	����l	X����	�����	؃���	���	�����	Ȅ��
����8
���\
�����
�����
���
�����
h����
(��� ���p(����X�������������,����D؏��\(���|H����x����Ȑ���X���
��8
(���T
�����
���
�����
ȓ���
ؓ���
�������P����|x����ؙ����������8���(x���`ȝ���h��������(�������4��P���p����������8������������4����p������������0ȧ��`h����Ȩ���ة���Ȫ��x���Pȫ��xH��������h�������,����lh����8�������������(���4H���L����h����(���������ȴ�������h���4����\ص��t���������8����X����x��������8���\x���|�����ع������������H���h���<����d������������(����X���x���$����<����Tؽ��l�����������������4h���`����������,X��d���|��������X��<���|�������H���h������,���h�������H�����DH��xx����������8���\h���x������ ��< ���h X��� ��� X��!�D!�x!H��!���!X�"zRx�$�^�� 	FJw�?:*3$"Dxg��	H\�r��lB�B�H �G(�D0�u
(D BBBJA(D BBB��r����r����r��
��r��
��r��HO�r��0$�r��08s��0L s��E�D�D R
DADQDA�ls��:E�t ��s��|A�G@[
AD��s��SH E
AH�0t��GB�B�B �B(�A0�D8�D@�
8C0A(B BBBC�(4u��RF�I�B �E(�D0�A8�D@�
8C0A(B BBBAT
8D0A(B BBBGH
8D0A(B BBBCR8F0A(B BBB\�v��)B�E�A �D(�G0p
(A ABBG@
(A ABBJ~(A ABB �v��WA�L C
AA<w��AK�a
DP�(\@w���A�A�G A
DAAL��w��B�B�B �A(�A0��
(A BBBGQ(A BBB��x��ZE�A
J��x��BE�k
H(�x��.B�D�D � AB@�y��T�y��
h�y���A� ��z���E�G��
AA �X{��cA�L
CC
E ��{���A�F
It
D� |��
|��0E�f0|��	(0,|��hA�A�G@!
AAD,\p}���F�A�A ��
ABOL�~���F�B�A �A(�I�e�\�F�A�_
(A ABBA����� HW�����/Hf0����=F�D�D �F0�
 AABFT@�����F�B�E �D(�C0�D�)�H�P�A�_
0A(A BBBG�T��� HP�\���)H]�t���NHr
FH����� HS����$E�Z����ME�CH8��B�B�D �A(�G0B
(A ABBHf(D ABB�8����A�G {A�����5E�o(�̄���B�P�A �wAB�0���0E�jD���(@����A�D�DPk
AAJH��\��Hp��F�E�A �D(�Fp�x\�FxApT
(A ABBI(������E�H�D z
DAH0�4����B�D�C �G@�
 AABI$	����QE�A�G0~DAD	����X	�$l	�5E�G�
AA4�	���4F�A�D �I�y
 AABG(�	���KF�A�A �AB4�	4����F�A�D �}
FBHyDB40
�����F�A�D �}
FBHyDBh
���HI�
���XGc
Fc�
L���VE�d
G�
����.E�L
OI(�
����r_�G�G ^AAC���QHs
A$8���@A�J�D $DX���wD0u8N@U8A0T
A0l����5B�D�A �G@�
 AABB8������B�A�A �w
ABB,
JBE(� ���Yb�D�G �_�A�B�8T���B�E�D �A(�GP�
(A ABBDTD8����J�D�D G
AAEZAAD��H ��u
D�A�N_AA,����B�I�A �R
ABG �`����H K
MP
H�ܕ��`LS(
$���A�A�G0�
AAFL4
����B�E�A �A(�G0O
(D ABBHA
(D ABBF4�
�����A�D�D0n
AAGV
AAH$�
 ���JA�G�G tAA0�
H���vY�D�J pAAG��H ��8�����B�E�E �D(�A0��(A BBB(T(���NA�D�D g
DAK�L���HP<�T���oA�A�G i
DAIZ
DAADEA8�����nB�B�A �A(�GP�
(A ABBH �����A�D w
AC,8d���gB�D�D �N
ABEh����GE�t
G�؜��/DU
A���HP��NHx
H8�(���fF�E�G �D(�D@�
(A ABBH\���HM(d���UHk
MPH����4E�_
DKhĞ��!HX�ܞ��cH@
HL$�,���ME�A�D @AA�T���HP�\���HP�d���HPl���HP(t���HP@|���HI X����E�D0�
AAH|�����F�B�B �B(�A0�F8�G`N
8A0A(B BBBF�ԡ��1H[
ED��1H[
ED���HR ���AAK< ���HO
AX$���/DU
A0t8���F�D�F �D0i
 AABG$�$���,E�D�G VDA@�,���F�B�E �A(�F0�D@�
0A(A BBBE���,E�b0���HVH$���HV`,���!HXxD���HP�L���HM�T���HM�\���HM$�d���2E�A�G _DA(|����E�A�G0_
AAB ,�:E�]
FF
ALP����F�B�A �A(�D@�
(A ABBKf
(F ABBG(������E�A�G0_
AAB,�����F�D�K �P
ABHH������A�A�G d
GAKI
EAIa
EAEDFALH���B�B�B �B(�D0�F8�D��
8A0A(B BBBF4�Į��UF�E�D �D(�D0t(D ABB���*H a0����=F�G�A �G0�
 AABG���$A�^48$���TF�D�D �r
ABEDAB4p\Z��zF�F�D �N
DBEIAB����9E�j
AD�~Z��fE�S
ED����(E�b(���IE�r
ID$X���%HW
A@l���AAM8\p����F�B�D �A(�D0X
(D ABBF8����F�B�D �A(�D0X
(D ABBF(����JE�D�D r
DAA0<���3B�D�A �G@�
 AABFL4H���'B�L�A �A(�G0�
(A ABBH\
(K CBBJ(�(����E�A�G C
DAA0�|���qA�A�G E
AAHKFC�ȵ��/E�iܵ��:HZ
FQH ����
F�L�B �B(�D0�F8�Dp
8A0A(B BBBH zRx�p������(X��� �����/E�G |
AGH�����mF�B�B �B(�A0�D8�D`
8F0A(B BBBAH����F�B�B �E(�D0�F8�D@�
8F0A(B BBBF`|���5E�o(|����IF�A�C �j
ABE(���A�G @
AGg
AH@�8����E�D�D0^
DAHk
DAH^
DAE4�����E�D Q
AEL
ACn
AA0P���ME�A�G _
DAGODA(�8����E�A�G0�
AAB0�̾���F�A�A �D@�
 AABG@�����*F�E�B �G(�A0�D@�
0A(A BBBH((���IF�A�C �j
ABE(T����E�A�G0�
AAD8�<��iF�I�A �A(�D0M(A ABBGNU�E�D@� j��\�k�Eq��\Pl�E

%
/
�
�0
,�0� 8� ���o`��
�
!�
�"X�	���o����o�o����oH� �0�0�0�0�011 101@1P1`1p1�1�1�1�1�1�1�1�122 202@2P2`2p2�2�2�2�2�2�2�2�233 303@3P3`3p3�3�3�3�3�3�3�3�344 404@4P4`4p4�4�4�4�4�4�4�4�455 505@5P5`5p5�5�5�5�5�5�5�5�566 606@6P6`6p6�6�6�6�6�6�6�6�677 707@7P7`7p7�7�7�7�7�7�7�7�788 808@8P8`8p8�8�8�8�8�8�8�8�899 909@9P9`9p9�9�9�9�9GA$3a1�09�GA$3p1094�B)�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*GOW*��B�CGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign�BJC
GA*FORTIFY�B|EGA+GLIBCXX_ASSERTIONSGA*�B�CGA*GA*GA!zlib.so-2.7.8-141.el8.x86_64.debug��Yd�7zXZ�ִF!t/��,�
]?�E�h=��ڊ�2N�a� ��D�t�'�'�	��A�A"���>K�D�H���#�7pư�8y�{@ysEP�KN�B����aM�8"���6f�_z�"�Ԃ��6ʏ6�ڷ%�@iT�o%hy��	����7��CJ�>d:%Z�Jʳ��P`�c�i�u�y����,@S�
LA���Vx:J��������h�c��xgx�\:w��m�Olɹ�YSٟvc�qJ��q�mwTѫ�)��K9������ʛ���<SAp��T���h
6�������W%���N"a�Au�2��P�;�
r�����.Z�[%V��XP�r���̵�$�l
���t2n��`+Ű��c��Td�$���բ� 
��k$��@N�;iJЖ#j�X9��ȸ�+��V�A��;�H�Ly�*y����FY@ֲ[�0�H�M�ᦑ����fo�F5��t$ȋY;���L.���֢���]r�5M桜�hU���R��4I.9ʑgqw"�cO7��ͽ�}�gg�%J1z���,�������f~�P����>.�Ap?Տ���6k�9W\p3�`��N���
��O6�c�&�5�1w�b
:�8���=�Hu[s�ylU���̛P"�Q<qvR�q5�B]H%w�[�c��ܬ���k��V�dhG�@M>��QY�+;6eyJ����[��%4~OT��A$�;~�U��w�0~�����#��8���2����P��vl"�̦%hf튎2̊�k�b�����9�͌�A7?6��Y�����K�g0!��v-�C���0�A�N�ڣ>��V�	��4t��F�&{��f��c]��wYR��4Uۨ�"�LAN߆�۝����Ը�͹8��ҕ��M�Uz��V�V����/�
r�b9��>MZ<Lw� �x����9�����Yz?	�,�	@�*P��������쟄W)V��;������n\P�o�g"��rI�~�|�����,ƹ�:�Tݓ��\N������s�L�x�۝1�nΌ�m2:i���<B��,C����)!�7oLk�5U��P���帥�dE�v��Ҁ�Ս\�d���������c�����Mt2�؋S����z�О/��k�T�,2��Tg@$=��ڿ�J�3�>���£���H�.�D>���l`�Pp|!'�����+�ca�I��X��v��9`��-�bM�9?>�$Q�|bDC��T�:�&��aˀpQ\�T�%ۢ�0LsB�IU^��|�:�:��J���b��y�bJCr�1iy��#<7:��(�u�'�V�n�����S;m�f7F��V�L�a����j���	G��_ݵy>�]���Ro��k��e8��]b����?�T�?&�
���5��g�s�P3�M���m@	)�� a�|H��J�NO{���x�7$�;�|߹�N���C�V?r�^i����k��m�6!�Q#K�b����
�|��{O�BXrN�%��cR9b��/�8��ȳ@ݯԒ�M��=�i�ƭ~�|����oV���gn��cO����	�W�Bslr�E�y�LU���5:��Ͼ�GbW��V�г
`A�s�xaף��K��8�1����!�Ǜ4}�vto�6WHA���A'Յ��
/h��s�xTO�L��Ơ����R���ٚ����l!䱝*[�m��\Z��+o�N�qP�k�3�LСdzl@��"M�]D�ih˂ϗ��$��+I�!uH8=��>��*��ar��Ƥ.����"/�չ��#,&�����q����v�L�2�������9�0c?�R���s�ՃY�rFr]୸'���^����"��r�����L)za?ؽ7CX�����eG=��y�,�����z/!S$���y2�u�����t���U�S��T��|�/�9��CQ�����Ʋ�Ķ$B{�;�{�r^�[+�oj۶�j���W<#�Բ����{(�W�=��睥��V�6�G�14K�a�D�0g�d]�MҼ�����I��E��p�g��Cp��<�`S6�d��0 
Ŋ"���W}�B�����$c`�V3��~1ץ/+��C��(TDŽ�#��	#�ʤx}/�~����m#�LD&�L3�&�,�0�F�m!K�M����]�fgx![d9�S�˖����F�M���f�IƨO��p�FשÁ��~����gH-���%4��^8������NmO�����d�/%��	h�8��ۍ��Ws�<�_��wN))+w<�01�-����68�2ߦ���Z��e*�+��N�U�vۏ���ǝ�u:�E{0�*_a#��!����+M�m�7�yف����R��;o"6�Y�V^��|�V��������(3����d2-Kg�%M�6~!�E���a����\�Y4 w�)��!F}�Lr��s�
ؼ��x?��nvK��ܗ<�?P]=�.�N�X4�a
rs��#}u
*�Y�G=��u�㔁�.@�
�0��PQ��X;��L�=�;{)ʀ�L��P=��B�K�w��*���B��/���Yh�㸱�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��P0���
8���o��\E���o��pTXX�^B�"�"�
h�0�0c�0�0 	n�9�9	w�B�BY},�,�
�@�@�(
�h�h����������� �0� 0��8� 8��@� @� �H� H��H� H���!���!���xa�\
�($L
p+PKLH[)܍�.�.lib64/ruby/io/nonblock.sonuȯ��ELF>�
@�'@8	@�� �� � �� �� � ��888$$���  S�td���  P�td���TTQ�tdR�td�� � 88GNU�꘵�^6�z�$���k�d�@ �BE���|�qX�0� U���� �gy&"���, F"[Z�  m�  a�  @[__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizefcntlrb_sys_failrb_io_taint_checkrb_io_check_closedrb_keyword_given_prb_yieldrb_ensurerb_empty_keyword_given_prb_free_tmp_buffer__stack_chk_failrb_error_arityrb_io_set_nonblockInit_nonblockrb_cIOrb_define_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64Pii
rui	|� �� P� � � � � � � �      (  0  8  @  H  	P  
X  `  
h  p  x  �  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
���������%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�� H��t	�����H�=q H�5j H)�H��H��H��?H�H�tH�� H��t��fD�����=- u+UH�=� H��tH�=f �I����d���� ]������w������H���W�?1���G������t
�H���1������H��1��� ������tH���1�����ff.�@��S�V���H�XH���Z����{���[H��4H��?���D��%��t5��uA����H��1��������t'�H���f.���t�����D1��1��F����D��AUI��ATA��H��UH��SH��(dH�%(H�D$1����H�XH�����E�����g���H�D$����M�mA����E1�I�����A�ċ{�����{D��ƉD$�|$�
�����tIH�=� H�L$H�f���H������H�L$dH3%(uZH��([]A\A]�A���H��������fD�+���H�D$M�mA��uH���[���H�|$����L����_�����H��t
H�|$�����1�D�����ff.�f���ATI��UH��S�m���H�XH���q���I�����tH��� ���H��[]A\���{����{1҉����H��[]A\�@��SH�� 1�H�����H�5MH�;����H�;�H�m���H�59����H�;[�����H����H�5'�����H��H���nonblock?nonblock=nonblock;T	H���p8������������8����h������$���`x����zRx�$����FJw�?:*3$"D�����\ ���/H_
Ax4���!DU
A�H���+E�Z�\���[[Z^G8�����CF�E�G �D(�DP�
(A ABBD4����\F�D�D �f
ABIXABD���[E�~GNU��P� 7FP��
�� � ���o`��
�  P���	���o����o�o^���o�  	0	@	P	`	p	�	�	�	�	�	�	�	�	GA$3a1��GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONSnonblock.so-2.7.8-141.el8.x86_64.debug}]�&�7zXZ�ִF!t/���J]?�E�h=��ڊ�2N�����t�=cS�&_6v��q�?�^�rF�m�:�r�D��5�W�/��ǶQ��ـ��F�;� ��Cm]�p=#�D���Ѧ�f#��r�b&�_ZgLJd>����l����\*u�ń�fAFI����w����b��c�W4�؞_R	*�44��7�m�Sۿӊ8����i�L�������K˼E�X��R�M�WCe�Ͽ8���FI�sRwh
�z�d��7���ۗ��e �=���-��|�u���׽��C��ѩI\�0�����dADO
�20�ȳ���=�(t0p�Vjh�D�c��%e� ֺ�2O��iy
�W��pMO}�H��0��%��.�Ć�#Dc�x$�)������($�қ���GM�<=G�6��1�^�:u<M�	$�(I4	�b>�`��!�x�U%BP�ͳE�;���$e�1��b��L#�O%r���[`VK�p@9��	�?�;��q�j9٩y�;���nK�l��+\�p� Ǧ/��w�M�[k��������*���0RZ��m����wʱQf/�/���mB
�Z���g
�sZaJ�E猥��Ê���L�Ec]Vm�Eul�cX�=[�}>;;I��"y�W�o�G����"F����k:�z�I��>-�j�H�1u�w�3{�D�g�&M"�m� ����# �I��qki���~�dX#M��|n�mk󋫇G�]�}M�g��y����w�������:D%#���@���"LKC�͒������>��[dSľ��3��f;�i���a?o�$�ek�?�F�V8G�����w��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0���8���o^^.E���o��0T���^B��Ph��c		�n

�w�
�
�}��
�2�����T�  `��� �� ��� ��� ��� ���� �0�   ���  � �� `� D
�",�"��&+PKLH[�\< / /lib64/ruby/io/wait.sonuȯ��ELF>�@�'@8	@�� �� � �  �� � ��888$$hhh  S�tdhhh  P�td444\\Q�tdR�td�� � 88GNUQBh��5�R������`"BE���|�qXM�V� U�� �kEL"�&, ��F"~���  ��  ��  ;0�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_wait_for_single_fdrb_io_check_closedrb_sys_failrb_io_taint_checkrb_io_check_readablerb_io_read_pending__stack_chk_failrb_time_intervalrb_id2symrb_intern2rb_eArgErrorrb_raiseioctlrb_error_arityrb_io_check_writableInit_waitrb_cIOrb_define_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4/opt/alt/ruby27/lib64vui	�ii
�� p� 0� � � � � � � �      (  0  8  @  H  	P  
X  `  
h  p  x  �  �  �  ��H��H�A H��t��H����5R �%S ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h�������%M D���%E D���%= D���%5 D���%- D���%% D���% D���% D���%
 D���% D���%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�� H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=] u+UH�=� H��tH�=� �9����d����5 ]������w����ATI��US����O�����xL��������[!�]A\�1������SH�� dH�%(H�D$1�H�$H�D$�A���H�XH���E���H������H�������u1H��H���q���1҅�uH�L$dH3%(H��uH�� [�f�������@��AWAVAUATU��H��SH��H��8H�T$dH�%(H�D$(1����H�@H��H�$������D�E�E1�L�t$E1�H�l��C�A��uI�����tA�����t+L��H��M�����H�D$H�T$H9��$L�;A��u�H�=� H���s�^���I9��]H�=� H���u�@���I9��?H�=� H�����"���I9��!H�=z H��������I9���H�=T H�������I9���H�=. H��������I9���H�= H�������I9�t8H�=� H�������I9�tH�=� H�����v���I9���H��A	�H9�����H�<$����E���FA����H�<$L��D���M������HED$H�L$(dH3%(��H��8[]A\A]A^A_�D�뉐H�=V��/���H��H�U �m���H�=p�����H��H�- �k���H�=�
���H��H�� ���H�<$E1�A��N���H�<$����¸���*����A����H�=����H��H�� ����H�=������H��H�� � ���I9����������fDA��w���DH�=`��/���H��H�5 ���H�=O�����H��H�
 ���H�=����H��H�� ���H�=�����H��H�� ������H�� L��H�5�H�81������SH��dH�%(H�D$1���H�XH�����H������H���6�����~"H�H�DH�L$dH3%(u<H��[�D�{H�T$�T1��|����¸��uƋT$��~�Hc�H�D��J���f.�S��w.��t&H�>1�H��tH������H�SH�H��[��1�[ú1��`�����AUI��ATA��H��USH��H��(dH�%(H�D$1�����H�hH������H���=���H��L��D���o����H��H���/������HE�H�L$dH3%(uH��([]A\A]��t���@��AUI��ATA��H��UH��SH��(dH�%(H�D$1��q���H�XH���u���H���M���H��D��L������H��I��������uL��H��������HE�H�L$dH3%(H��uH��([]A\A]�����ff.�f���SH�� 1�H����H�5�H�;���H�;1�H�P���H�5�����H�;�����H����H�5����H�;�����H���H�5{���H�;[�����H�>���H�5m�����H��H���rrwread_writereadable_writableunsupported mode: %linreadready?waitwait_readablewait_writable;X
|���t�����L����|����������P|���t�����L��������zRx�$���FJw�?:*3$"D��(\����/B�D�A �[
CBA ������E�D0s
ACH�����F�B�B �B(�A0�F8�Gp�
8A0A(B BBBF ������E�D P
AF ���@A�g
HC
A8@����F�E�G �A(�GPf
(A ABBA8|p����F�E�G �D(�DP}
(A ABBA����E�qGNU�p0� ]lv��	
�� � ���o`�
�  �0�	���o���o�o����o� �	�	�	�	

 
0
@
P
`
p
�
�
�
�
GA$3a1�	�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONSwait.so-2.7.8-141.el8.x86_64.debug|-=�7zXZ�ִF!t/��i]?�E�h=��ڊ�2N�v �ҰCr%��jyk�Q�p���L%�Ц��W��w��hA["�<���h�^�-?nST�ԬЬpt�� �R<�"�w�=2�>�pd�I~Ũ�D�V$T�"���rc��Vd}��9J+��i��T�/Y(�
6To@C������:mA"����7�����n9��_�8���ny.F�W�g���YγR(��T��3{_��{dm�W�@����K��$3��9[[J$<�`J�'=��|���?Z�����+��դ�tj)��d5�H�;0k��Fǟ�����k���9w
62m���^�F�S�y1u�ۻ'=�ڶ�ԉ����ƥ��ĀpQ��4?*�޿cO���8
�&���	�J�\t��z8�yzGn�+�K��W]��A_2��w����s�Z@�vFN�3�BK@���d�g3:�<���)JU��C�� X-P���i���ݩpjp�<�kWXl�X�5U�̛��f�lV:J�6G�
f���F������Wl�(*c�kB��K�WK�Nv�.���e��tO+&XW� pNsӣ�W"RV�}�8o>y�L�'�%h�*1�`Y�D����ef��@@dG�r�pE������sR�D�OP�\��N�*e@4�%v��/_���Q�t@hĮmd����I��2�G>�M���A��)N��G!�g�gڪ�a�ҟ�.�y����/����=�	Ձ�ٺj4RL#���������n���C/EsGj��u;��,����!g�+��&��+�V
u?�O6Amԑ��&��M��<+B�K4~\lm˒c(s'f�Ю�?.��䀸�evI�ɤC��{�Ih�f������PD}�ڪ�nz	����]������d��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��p0�8���o��4E���o0T00�^B�h�	�	c�	�	n�
�
w���}��
�2��g�44\�����hh �� ��� ��� ��� ���� �0�   ���  � P�� `� D
�"(#��&+PKLH[k�$�.�.lib64/ruby/enc/iso_8859_5.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td```LLQ�tdR�td00 0 ��GNU&+��&�;�j�Aq9��j �@ BE���|4,\�qX "U���� �Ee��, F" 8  3@  ��'8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_5rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h ��  � p� @� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H�2����H��ff.�@��1����w��H�����x����ff.�f���AUD�H��ATL�%�UH�-�S�2A��@tUG�,A��H��D�P�E��A���A���EE�L�L9�sVI9�sQM�ZL�A�A��A��F�\mfA��u�A��@t�A�� t����E�Z�A��A�� ��EF��D[H)�]D�A\A]���H��I��I��1�QH�5����.���H��������I��I�ѿ.1�H�5V������H�5� H�=�����H��H���ISO-8859-5��������������������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0�0�0�0�0��0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;Lp���h������������ ��������� 0���4zRx�$���PFJw�?:*3$"D(���@\���!p,���#0�H����F�H�H �H(�� DEB����)HI W�����GNU��
@ � p@P�D�	
�0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSiso_8859_5.so-2.7.8-141.el8.x86_64.debug��P\�7zXZ�ִF!t/���Y]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���@F���@j
�2�����C�.��1x�_�O�f]�V�>JÇj�u�,yzЂ	�aq�ȪGZ�
Q��8Y�<��I�4����9��ˉ:�+�X©1/�U���_+� c"2!P�J(h�1xL�� ����S��UŁ��݂��ᆕ^�
'E+���Ղn#5� \�0����݋b�7�`���(q�Pp���ݺ���rr	R[� \I!zCz�#4C�ɒN�@��u�]��&�_n]�fv��/z.�{r��+�Y3�zY�>|n����O���;L�F�ތ�
\��v�^�Q�|���D��R��c��7n_��2_C����9��^�t.�f+\��/�'0Wi�)�.>q�	ى�mqhh��
�B��W�ѩs��ɴA��1�\�?#�Z���e[Eu��y7OT6�:w%`P�
}F} �TAY�:[l��~C�O}���9���5��]�!e����X�ii�k<�>6̽�Y�
�P�4�nv0�]��ݚÿ=�
��
b�?�V=s`�y��R������W���f�k�;Za����6Z�ND+	B-a��T���Po'��&��W�����<ϓņ]�~�r�	o�x�Ś*6ڊ�5����Y�z�O��F�<���O%�tJ�fH�n'oo(�y[�x�+���QuHM�x��i��qd���-@n��7��:��z#�⚵��x�g���E��u�eD��'�U���]uZx�yPԸ��M-�ݴ��G1�?��e]Yar��'_���V��>'�ײGe�D�>%��S!��cPfBJ�6�<����eb#L��R�H�1�P���`�̦Z������˱�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
G}��
���� �``L������� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�H&+PKLH[�S	�>�>lib64/ruby/enc/cesu_8.sonuȯ��ELF>
@�7@8	@XX 0-0- 0-  �-�- �- ��888$$888  S�td888  P�td���llQ�tdR�td0-0- 0- ��GNU�f\�u�+���̹���q��@  �BE���|�qX�r �a�� U��, CF"v�@0 �H0 �@0 �P__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_unicode_ctype_code_rangeonigenc_unicode_get_case_fold_codes_by_strOnigEncAsciiToLowerCaseTableonigenc_unicode_mbc_case_foldInit_cesu_8rb_enc_registeronigenc_unicode_apply_all_case_foldonigenc_unicode_property_name_to_ctypeonigenc_unicode_is_code_ctypeonigenc_always_true_is_allowed_reverse_matchonigenc_unicode_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0- �
8- �
@- @- `- �
h- �x- P�- p�- �
�-  �- �
�- `
�- @
�- �- �- 
�- �- �- 	�/ �/ �/ �/ �/ 
0  0 (0 00 
80 ��H��H��& H��t��H����5�& �%�& ��h�������h��������h�������h�������h��������%M& D���%E& D���%=& D���%5& D���%-& DH�=)& H�"& H9�tH��% H��t	�����H�=�% H�5�% H)�H��H��H��?H�H�tH�u% H��t��fD�����=�% u+UH�=R% H��tH�=�" �I����d�����% ]������w������D�H�
�J�����H�WH9����WH��H�H�����H�GH9����GH��H�H�����H�WH9����WH��H�H���xyH�WH9����WH��H�H�����H�WH9����WH��H�������<��D��f.���������D��f�1�������D@����������D���f�H��B�����f����������������H��B���������t�A���ø���������������D�ø����ø�������1�H9�s1��?
���ff.�����W��������~Y��tt��uW�W���G�������?��	��O	��G��
��?�����%�	�	����D�у�t��р��v�1Ҁ���ƒ����W���G�������?��	�	‰��@�W������?	ʉ������H�����ff.�����L��I��H��H���������H�M�����xH�@" ���H���I��H��H��L�����ff.�f�����ǀ���t6������t)�����t�����v���%�-������ǀ���t*�����t,����������v8���t	�����@�>�Ð��H�F�������?H���π@�x�)�Ð�������
����F����ƒ�?���Ȁ��?�FH�F�ʀ�V������?�ʀ�V��������?�����π����?��ʀH�F�V@�8H��)�øo����ff.���H��H9�v(�����t��H9�sH�������t��ff.���H�5 H�=�i�����H��H���CESU-8�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;l��� ��0��������������,0�@��Tp�h��|zRx�$0�`FJw�?:*3$"Dh�P\`�}p���������������C���H�$����5,�GNU��
�
@- �
�Pp�
 �
`
@
���@	
h0- 8- ���o``�
�0 x��(	���o����o�oV���o
�- p	�	�	�	�	GA$3a1@	uGA$3p1094�
gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS�
M
GA*FORTIFYcesu_8.so-2.7.8-141.el8.x86_64.debugb�}��7zXZ�ִF!t/���]?�E�h=��ڊ�2N��x�1ۄY���(�H��/�1��$ 1��tǏjX�ST��֕^5߫]�݉�4�hqg�����r���]�$.Q��;�yg�E�MMrN�B�����A&�^ee4c6�x�\�!`��#@T*[�HNd14�Q]�dCۭ�� �+3�&�F�R�}'E���#*|���fd���ɁFQ�2�r�3�
�;�Fr�a�A�Ͽx���Lz�ˉ�ִD񛡡R����L𧊨����A�DѶj�s���\uZ	�`H���CX��p>*X�U�jQtO���Px�ރ��xs��~N:��4>�X��G�!����%���dr*H�:lI����8�yg+P��A�[��3�wߋ�9X_�*�}��!r>�z�pM�l|��R�r�u���`�f%�����
g����i�Ίn$�"���Q
�F�N�ߍ4C��D/���1�ՠ<Xh�@���r
�4F`
f�1y���Hݪ�'�s+XL�Mh���p�:4r:Cؗ\e١R�~-��=Y*�WUi���<���z+`�d����B�R�mi��GK���jϣ���[1Ӯ�o���x��r�j
$ԟc�+�#}�������!N�()òd|�[56����h����f�D#��ж�Rl�x ZJL�_�	L`�N��菌�:8�	�?׳����5��L�����Q�SOk��6�,��`%�]�Th�T�ɏ���ik��d�c���B}��P�zw��İ`��h�S�������0G@@��W�{'ӵ�l�1n6��FT2�M�׺�U=��#e˟�С��]Mt����y�7c�_��N�b(��\�ĤC�
��Ќ��퓸Fȴ���`�sj\<{@pޮvM�FnE��BǕ�\��E�o/�����%*@���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``�8���oVV&E���o�� T��(^B��xh@	@	c`	`	`n�	�	Pw

W}hh
���  ���l�$�88 �0- 0-�8- 8-�@- @-� ��- �-���/ �/(�0 0@�@0 @0�H0`@0D
�2,�2��6+PKLH[R�!��.�.lib64/ruby/enc/utf_32be.sonuȯ��ELF>�	@�'@8	@(( 00 0  �� � ��888$$  S�td  P�td���ddQ�tdR�td00 0 ��GNUO���y���W�U��
�@ �BE���'᩻�|�qX ��� h���B, $F"U�8  �`�@  �8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_unicode_get_case_fold_codes_by_stronigenc_unicode_mbc_case_foldOnigEncAsciiToLowerCaseTableInit_utf_32berb_enc_registeronigenc_unicode_apply_all_case_foldonigenc_unicode_property_name_to_ctypeonigenc_unicode_is_code_ctypeonigenc_utf16_32_get_ctype_code_rangeonigenc_always_false_is_allowed_reverse_matchonigenc_unicode_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 �
8 P
@ @ ` �h �x �� �
� �
� �
� @�  � �
� � 	� � 
� � � � � � � 
     (  
0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%m D���%e D���%] D���%U DH�=Q H�J H9�tH�� H��t	�����H�=! H�5 H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=� �I����d����� ]������w��������W����W����W����ff.�f�����fD��ϸ�>�f���H��H9�vH��H)�H��H��?H��>Hʃ�H)�H)��fD����L��I��H��H���������H�A��L�ǀxx�xu�xu�8tI��H��H��D���+���1��Af�H�P �@��A�H����H�W1�H9�v�
t�f.��u�u�1��?���ff.���H9�rWH)�H��~^��G����G����G�����(����� ��1���������D���f�������f.��F��ff.����H�5� H�=�9�����H��H���UTF-32BE;d�������������@����P����`������������$���8P���L���`zRx�$8���PFJw�?:*3$"D`���@\H���#pd���
�`����\���*�x��������]����5�����t�h���GNU��
P
@ ����
�
�
@ �
���0	
x0 8 ���o``�
�  `��(	���o����o�o^���o� `	p	�	�	GA$3a10	�GA$3p1094�
wGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS�
�

GA*FORTIFYutf_32be.so-2.7.8-141.el8.x86_64.debug���7zXZ�ִF!t/����]?�E�h=��ڊ�2N������!�eoة��!�3;�zA"���#���aF�U�``bF��K�R�G�M`��h+�em��(evL߈���(���6��ȋ��|�q&Aj�&��w��V�(�\�;���Ot��
�X�j�
���<�� {sV:,=�V�.���)��r�}	]x�
�=O}��*���MQ`8Qn�/ ��w��A��7�D�1�5����t�}��'BL��`ȽUC4MO�`JZ�X!j�
+�����8���7/4�8�g�]]6d�O)R�+j�q-l�L��Cb�}��k���C�y��iA-����b&!7T���5�HÔ�@%k�9Uj(����Y��Ήɖ��lct�dDa��v�gdz��l��y(N�<�^���f��j![<qb�8�EN!����=�p涔�$�C���ٓm��!l�8�P�4	{���B�߬�靯��%���;�7$��م.n���$�7/���2N�[/��3�,b}v�vL���D�tp�c��V!��@k߅{ŭ=�����$���47hk�F��w��"`�	�6z�d��¯D�k3bDA�V��;2!��W�o-����wLT}ֹXY��h�qh�T^��&B!w=����^98�t��?A��I�^����͕1;�UY��"��.�
��i�V��&���͐����t��a�.��J��aƸi×�u$�i
��!l�P��啗� 
�T8o�`�3��5�W�z��ncU2 ��咕�HniYݏ����2#`�0�U
�rDY;,��}2��ՙ�
J5i���A
M�KV�W�B5�UоR�qI�2w~�⻐�S�k��w�Q�vl�g�Bz�Kӄ�%���.����߀0T����]����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``�8���o^^&E���o�� T��(^B��`h0	0	cP	P	Pn�	�	@w�	�	�}xx
�2��	���d���� �0 0�8 8�@ @� �� ���� �(�   8�8  8 �@ `8 D
|",�"�l&+PKLH[K���.�.lib64/ruby/enc/iso_8859_16.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td```LLQ�tdR�td00 0 ��GNU;�-s��$�F�A@�����B @BE���|�qXg��� #U���� �Ff��, F"!8  4@  (8  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_16rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	90 8 �
@ @ h �� `� 0� �  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�)���x����ff.�f���AWD�H��AVAUA��ATL�%�UH�-�S�L�L9�swI9�srM�ZL�A�L�XA�ځ���%A��F�t}fA��tTA��@tKE��L��G�<I��A���A��H��@E�E��t�A���L�L9�r�[H)�]D�A\A]A^A_�A��@��A�� ��E��A���A��E�΁���!����E�JMA�������2����&����F����#����EL��A�� I��E��H���6���fDL��E��I��A���H������A�� t/E���SL�XA��A���t=�@sE��L�����fDA��u/M��E��I��A���L��A���������@SE��L���A����E���sA�sH��A���A�����DL��A��I��E��H���k���M������L��A��I��E��H���I���L��A��I��E��H���4���M��E��I��L��A���������M��E��I��L��A���������M��E��I��L��A�����������H��I��I�ѺQH�5����)���H���@����I��I�ѿ)�H�5����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�i�����H��H���ISO-8859-16����������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�0�4���4��0��4��4��0�4���4�0�4����0�0�0��4�0�4�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;Lp���h������������������� ���4P���HzRx�$���PFJw�?:*3$"D(���@\���#Dp,����F�H�B �H(�H0�H8��
0D(E BBBA�����,HL W�����"����B����GNU��
@ �`0 P
E�	
�0 8 ���o`��
\  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_16.so-2.7.8-141.el8.x86_64.debugu�Q�7zXZ�ִF!t/���`]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���a�Q�
\�s��7��Ynt8I��v��苔U$�bB+jP܇��?�/��47���Gc��*�&i��':�a��;ٝjU��86�JT��"�r7x�b�)ͺd�h��W�U���
�EƋ�
�$JӞ��?���u��;��<�����8'�i҅�b��a�Q�N�?� 	e��kk�o�����;�|7M&�iW�>ifչ��'�Y��Q�}��F�ݮf�B��gjsg����:��YK�Yߤ�=iV�ы�쿂��=`]oT�g�ODnUs�ʼ�B����GP��+G,2�s�_b���+�o�2�s��"f�4�Nfv��a�I��������bV�WfL�5o@�.���\�u�����-�)���� � {��}�ul(�ٍ��G%����a晶y]M$��1x��ɉ���D<(p�ߣ0�jv���x1���>���p35�����V)���e�hO'�u���E8��X%��D�����|�8�~jWf��M�����|��g'�XY���)�q�A�+�t��I��	t��Q�)9u=���e3�;��}(��Hə�K�nK{���
�L�����X�e�bY
yK(�f�+�U4�D�z��Ֆ\���:�:/M(�3��P�@��?��V���w$Y���|���(�5ޘ����*�yJ|��>�Z%$�!�C�ua��bًj�V��~�>���g�3����J��J�"�X�?��z��.0��G�3F#�U�6g�i�N��#R@�
5�D&V�Il�<�
P`s��v�?R�]�pi�E�u`�Qt��������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��\8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
g}��
���� �``L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKLH[��H�.�.lib64/ruby/enc/iso_8859_2.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td```LLQ�tdR�td00 0 ��GNU	��gX��5�:��Ż,��@ BE���|0,\�qX "U���� �Ee��, F" 8  3@  ��
'8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_2rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h � p
� @
� 
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�)���x����ff.�f���AVD�H��AUATL�%�UH�-�SL�L9�swI9�srM�ZL�A�L�XA�ځ����A��F�lufA��tTA��@tKE��L��G�4I��A���A��H��@E�E��t�A���L�L9�r�[H)�]D�A\A]A^�f�A��@tBA�� t9E�΁�A���A��E�̓���L��A��I��E��H���@L��E��I��A���H���x���A�� t/E���SL�XA��A���t=�@sE��L���N���fDA��u/M��E��I��A���L��A����������@SE��L������E���sA�sH��A���A�����DL��A�� I��E��H��������H��I��I�ѺQH�5����(���H���@����I��I�ѿ(�H�5�����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=.�Y�����H��H���ISO-8859-2��������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4��4��4�4���4�4�4�4��4�4��0��0��0�0���0�0�0�0��0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;Lp���h����������������������,`���@zRx�$���PFJw�?:*3$"D(���@\���#<p,����F�H�B �H(�H0��
(D EBBC�����,HL W�����"����B����GNU��
@ p
@

 PD�	
�
0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�
GA$3p1094 �
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_2.so-2.7.8-141.el8.x86_64.debug�]G�7zXZ�ִF!t/���`]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���'�^�;R���?~��{8�Ma0J�%��-���g$�Fy�h��n
d'/5M
���8�P�A"jA3�0�1S	^����r��H�)��T���	
��
�O��8����R�g�E:2q��.R8�Un.$�o7n���*�$��z(b���kե��=g�X��n�C�:d�2M`��oSO,X�#3�yF+X�(��!	͕����Δ��z�E7	���y��ĥg��Gq�d}��$È�Qbn^�	������MܹC*~�Z��dIv�7/x��a�״�j���"e�E�|������a���=!D$�^�gJV9�cV9o�X��HjQO����sQ�[*1k!F;|@����I��k�N
��M��~uŒ�ç�����$rP^Ė�����z{�2
�@��Ms��\�{&d7�>�1O���eu�_ �Ȳwe�2�����<d'��̭m0�3~ߞd�אZp,L+�%F���J�6%
��=��&G�����w�u���H8pT,8�z�rt}�ܱKGZx�h�:�����Ja�K-=z9�����ߛ;[�
��ꄪm�xйUZ��0Ո�.6�6��Gq{�`���ߓ�-�����&8	DOM�;�j[�<���J�J1U\W��9����cy���	�랷Ռ�A��L,ZJ��"��AЭ7N
�'l��tQ����{I�,�
�$�l��0J�?
���i�*^A��ƨ��\$�}"xz��)h\R�XԼիB,�WE|�S8���$gx�͙�KY���������z�E6g��XJGic �X�&B�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
w}�
�

�` �``L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKLH[��8n�.�.lib64/ruby/enc/iso_8859_4.sonuȯ��ELF>`
@x'@8	@88 00 0  �� � ��888$$  S�td  P�td���LLQ�tdR�td00 0 ��GNUi
�p�zZ͓�_ݿl��@ 	2,\BE���|�qX "U���� �Ee��, F"�0 8  3@  '8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_4rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h `� �
� �
� �
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�����x����ff.�f���AVD�H��AUL�-[ATL�%RUSL�L9�svI9�sqM�ZL�A�L�XA�ځ����A��C�,tf��tVA��@tMD��L��G�T5I�Á��A��H��fDE���t�A���L�L9�r�[H)�]D�A\A]A^��������@��A�� ��E��A���D��D��`���A��A�������
L��A��I��E��H���p����A�� tGE���SL�XA��A���t}�@sE��L���=���fDL��D��I�Á��H�������A��uWM��D��I�Á��L��A������f.�M��D��I�Á��L��A����������@SE��L���Q����D���sA�sH�����A�����fDL��A�� I��E��H���{���M��E��I��L��A������a���f���H��I��I�ѺQH�5����(�y���H���@����I��I�ѿ(�H�5��n���ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5% H�=�����H��H���ISO-8859-4��������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�0�4��4�4���4�4�4�4��4���0��0��0�0���0�0�0�0�4�0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L���h`����`��������������� ���,p���@zRx�$����PFJw�?:*3$"D���@\����#<p���'F�H�I �H(�A0�
(D EBBD�����,HL W����"���B�(���GNU��
@ `�
�
�
 PD�	
H0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	UGA$3p1094 GGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_4.so-2.7.8-141.el8.x86_64.debug�`+��7zXZ�ִF!t/���^]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k��ѳ��� Vu��r�����U�@a�_��
D�h����(P�[�s��r0��s?����y��q6�Jh5k[i^Umy����B�[B����N-�mYX	9}�\n�0�ɳf�tA�����M�N�nRӝ]��Te�ܗ��f�o�W���0g}�����]�(�|SQ�.h����oNdb�vn>+�i �v�r�،����{�Il�H���v�X�D=�
�Cm��Í���l�㐲?ߵ�v�a%��i�e��IG�����W9��������l��s�6`ќ萖��R��74Κ�sV�l�������C4��Z��!��aĞ�
>���P����^�B�~�e��C��9�����@���W>�_�K
8;�Q(�תt�0OH�s�EVy��U�ή>!��,M��sP�ڰ��� �����fc}�w��ۀ�����;ӭk@�l�{��!�t��+ezOCU���u�q�s�csALU�L�)���JZ�M�.x�^�q�d�l��-�g��a@���t�MX����|8/�JN�C9�G?K
z����&_���ɮ�^�ǎ�u�	�؇�iv��Bv\"7�C��v���W�e\�ŘO��`��w��(���2ʴ]����+�W@iߓ����8٠�v53�v��W��O
P�1��.�\~�M�������L�Q�ϫg��N;?bѢM�x��3��K�VΦ�b�	�
��W��	�Hp�Ck��"H����i$��4�{�A�#T���b,���5�X�����)R�4g�Id�L�R�!�9�($�s�N0��f�q����j�:��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}HH
�``` ���L�� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKLH[p_
L�.�.lib64/ruby/enc/windows_1251.sonuȯ��ELF>`
@�'@8	@   00 0  �� � ��888$$  S�td  P�td���LLQ�tdR�td00 0 ��GNUۯg�qi͒�t:��֪E�@ BE���|�qX��� $U���� �Gg��, F""8  5@  )8  �0
__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1251rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h `
�  � 
� �� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H�r����H��ff.�@��1����w��H�9���x����ff.�f���AWD�H��AVA�����AUA�ATL�%�UH�-�S�2A��@tZG�<A��H��D�P�E��A���A���EE�L�L9���I9���M�ZL�E�E��E��B�\}��u�A���t\��@t�A�� t�A�[�A����vfA�� �����vZA�Z^��vaA���tgA���tiA��A���ED��P���A������B���D[H)�]D�A\A]A^A_��A�� �����I��s�A������A��������A�������ff.���H��I��I��1�QH�5����!����H��������I��I�ѿ!1�H�5V�������H�5% H�=�����H��H���Windows-1251������������������������������������������������������������������@@@@@@@@@�B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�4�4��0������4��4�4�4�4�0��������0��0�0�0�0��4�0�4��4���4��4�����4���4�0�0�1���0�0��0�4�0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L0���h������������������@���p���4����HzRx�$����PFJw�?:*3$"D��@\���!p��#D����UF�H�H �H(�H0�H8��
0D(E BBBH� ���)HI W�4����@���GNU��
@ `
 
�P�F�	
H
0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	U
GA$3p1094 G
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSwindows_1251.so-2.7.8-141.el8.x86_64.debugYyS�7zXZ�ִF!t/���e]?�E�h=��ڊ�2N��J��g�vP�����|��{��Ea��`ԙ��\��Hl��눸�!��?wt�ΰt���E'D>$9jQ�'?�G�G��t�#��ジ�]�C1>�
{J��#O>G�DD����O�Z*Hѯf
�(66�LF�x���n�7�F�������z��"��z��_3]LB���L(-<�*(�t�q<�|c@�4
����@�;&�zz�݈�KDf	A}�-鳢AT^�W�Q��s���Պh��b�$‚�l���_�])g����pU\i�b�V�A���ϩ�'�6���a�ݷC�2�'���	W�ᅢ�k�q��M��x�4��韅�a�+����}|H)�vzV�]�D�"Q��2��D��.ҴbB�Rh7�<M�§��������!�9H�b��QX���5hf�(�T�g���i�BT43Y4�ĝ�ֵD�N�d]��n��.P�r����.��N*M����v�z7&y`ak�;���['��D�jY�[k3W�ח	��
��0��N�p�`6W%Hl�b��&�S5cRZ�������<�_?�$�Ï��h·w�vK(=C��1Q	�6ӏ��׷͔�1��Ą����8��k��Y�M���	�v��R���DfЃ�څo
R���c��]�͹|�vh}�v�z�Iŗ�Y�!�kZ��4Ƶ�����
�{4��{%�2��%h�Ǧ�6��� ��Jg`�VI�h��/=��6�r�����V"�O�	N��~��[|�z�e�>�8G��i�pV؋�)e��
�0��l-��-z��̹�;��ˮ�"e�S�=s.72Pi�$ˆ�W�ښu��},��_�ufQ�-�>~8�T9�	&~T�Y�9̩�Y���,���(���x_��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}H
H

�`
`
@ ���L���� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�T&+PKLH[�'I0P?P?lib64/ruby/enc/windows_31j.sonuȯ��ELF>P@8@8	@� �  �,�, �, `h �-�- �- ��888$$p p p   S�tdp p p   P�td�����Q�tdR�td�,�, �, GNU�Vr�;��07������a�$�@!�BE��пeL��|�qXU gSc +����, F"�P0 B�X0 �P0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeOnigEncodingASCIIonigenc_with_ascii_strnicmponigenc_minimum_property_name_to_ctypeonigenc_apply_all_case_fold_with_mapOnigEncAsciiToLowerCaseTableonigenc_ascii_get_case_fold_codes_by_stronig_is_in_code_rangeOnigEncAsciiCtypeTableInit_windows_31jrb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��, �, �- -  - ((- 0- �8- �@- PH- 0`- h- @�- p�- P�- ��- ��- 0�- `�- P
�- ��- 
�- ��- �x- �- �/ �/ �/ �/ �/ 	�/ 
�/ 0  0 (0 00 
80 @0 H0 ��H��H��% H��t��H����5�% �%�% ��h�������h��������h�������h�������h�������h�������h��������%-% D���%%% D���%% D���%% D���%
% D���%% D���%�$ DH�=�$ H��$ H9�tH�f$ H��t	�����H�=�$ H�5�$ H)�H��H��H��?H�H�tH�E$ H��t��fD�����=�$ u+UH�="$ H��tH�=! �Y����d����]$ ]������w�������H�"H�
��x)L�GL9�t0�OH��HЀ<������D@��fD��������D��f�H�y
��������L��I�H�Ѕ�x$L�OL9�tH���L��<9�u
L9�v�����H�FH����t��H��H�F�.@�:H)��ff.����H���<����������v7������wH�  H��H�1���������f.�������f.���I��AWI��AVI)�AUE��I��ATI�F�UH��SH��H�����6�EH�
���1H���D���wkL�
4��M�$YE��xXH�AI�A2$���uBH�=�! J�T5L��H��������u'C�<4u L�
�A�DYH��[]A\A]A^A_�@H��L��H��L��[]A\A]A^A_���@����I��I�ѿS1�H�5�����������wHc�H�z�p�������E������w@��H�U
�<8�%n�����øo���Í��}����v%��a|����v���{������ v�@�G �@�G!�@1ҁ�N��D0����H�>���xH��  ���H��H��I��L��I��H���D������m���I�RL���t
��A�
H��I�RL)҈��Hc�I�fD��ATI��A��I��UL��L��SH��L��H���������A�2H����H�2����I�zH9���A�rH��HЀ<0�@��@���tv���������}����vM��A|���������{���������{������9�tl[]A�C�A�3A\A�C��Q�9�u�[�]A�3A�CA\A�S�1����@�ƍt6��o���fDI��H��D��[L��]L��A\���[1�]A\�f�H�I	�4����0�����Q��9��\���1�������T��k���@��H��H9���D�H�
�B�<t9�N�L�
�H�F�A�<���H�L�@�A�<�~L��H9�u�D�L�H�HK�<��x1H9�t<H���PLǀ<�u@H�HH9�rH)�H��H�1�fDH�P����HE���H�YB����Hc�H���H�H��H�������w��v:����������	��������w0H�I H��H�����H�� �����x����������f.���H�5E H�=������H��H���Windows-31J













































































































������
�"hanlatingreekhiraganakatakanacyrillic@�`�p������������փAZaz`�y�����W�W���r�����@���@���\�K�����@�~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`���a���b���c���d���e���f���g���h���i���j���k���l���m���n���o���p���q���r���s���t���u���v���w���x���y�����������������ƒ��Ã��ă��Ń��ƃ��ǃ��ȃ��Ƀ��ʃ��˃��̃��̓��΃��σ��Ѓ��у��҃��Ӄ��ԃ��Ճ��փ@�p�A�q�B�r�C�s�D�t�E�u�F�v�G�w�H�x�I�y�J�z�K�{�L�|�M�}�N�~�O���P���Q���R���S���T���U���V���W���X���Y���Z���[���\���]���^���_���`���;������0��������$ �8p�LP�p����������P��d0�xzRx�$���FJw�?:*3$"D(�p\@�]p��?���%������F\���I�E�E �H(�E0�D8�D@�
8A0A(B BBBED8J0A(B BBB ��4��PH��H\ �jPp|�lF�J�G ��
ANLH
FMEb
DEEA
CBJ�����T�f���GNU��- (��P0@pP��0`P
�
�����@

(�, �, ���o`x�
�0 ��	��	���o����o�ob���o�- p
�
�
�
�
�
�
GA$3a1@
5GA$3p1094'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYmGA+GLIBCXX_ASSERTIONSwindows_31j.so-2.7.8-141.el8.x86_64.debugC��7zXZ�ִF!t/��7�]?�E�h=��ڊ�2N�a�Ӈ�[��͎�v��B��3[a��x{�[Tݟ(�TR�A�_
v�no�rvo��\H���nD��Ŭs�J����3�Q�h��г"���&C=6��M�H�d$x1R�6��u��e��0�$��!�Rm�{R�~��1�
�MAc3
b�<�@0����t��q�/p����7n��� ����&*�j%WC�vkj׸�sk���N�~��;�j�h%MR
���c(L�,L�F_�(�~!T(�h�'#��s�n��8m.����=�C��+"�7M����Ɓ���
����1�V�7���C��S!+
�"��&��f9�jL�D�V�_�w ��qP��
U��z4��<�͘V�S�b�WKQ��G�k�ſE�ϻf�(D��\�lD��ނq���84��o�+���r��X�՞w��k.����H�“�':-KA�zY�ґ�s���8�8�l�Ǥ�OB��H�F
��,��PDZL��$]}����S,�P������.����Z5-����т��%�R��=�ᄖ5p
��aM�E�����.��X9B ���'��� )�*S}ŗ��z��T"���pm�l��ͭ2�����DJ���S�n�t���
��]7�4/�����Q�1���l	��
M`ń��v����s�!u&ʫ^�t
��꟪�َ���}�v¸8�з�O��Rf`�H�`�=��8c'+0h�1z�`�%���ߝ�T�>�Z�+�6��n�D�<c�ɮ�:V*T���zy�g�QP�y9B�.�����F�T�����4^/d��w�/\~1�,c�nC�	�c��EA3�$��˯A���/$韆5j� \6�X�L��a���+1�(����wF�6F7�֕��'��K��t'���^��z������nE��`����pF}D�m�m�x'�liZ�x���9P,�&�G�.���� �Ա�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0xx�8���obb(E���o�� T���^B�	�	�h@
@
c`
`
�n�
�
pwPP�}((
�@@� �����pp�p p  ��, �,��, �,�- -� ��- �-���/ �/8�0 0P�P0 P0�X0`P0D
�20�2�6+PKLH[�&�h.h.lib64/ruby/enc/iso_8859_6.sonuȯ��ELF>`
@('@8	@xx 00 0 � �� � ��888$$XXX  S�tdXXX  P�td�
�
�
,,Q�tdR�td00 0 ��GNU���ϛ�1�S�"����Ы�@ !BE���|�qX5,\"� ���e� u�{0R�, F"^(  q0  e(  UP__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_iso_8859_6rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_ascii_mbc_case_foldonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_single_byte_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5Tui	v0 8 �
@ @ h ��  ` 
x � � � � � � � 
� � � � � � 	� �      ��H��H�� H��t��H����5� �%� ��h�������h���������%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=M u+UH�=� H��tH�=N �Y����d����% ]������w������1����w��H�i���x����ff.�f���H�5 H�=������H��H���ISO-8859-6@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�������0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0;,p���H����p����������zRx�$ ���0FJw�?:*3$"D(��� \�#p���GNU��
@ � JT��	
h0 8 ���o`��
�  0�	�	���o����o�oZ���o�  
0
GA$3a1�	uGA$3p1094 gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_6.so-2.7.8-141.el8.x86_64.debugF����7zXZ�ִF!t/��?]?�E�h=��ڊ�2N��J��m.�󜕲Y��q��#&?ǰU�#�=���
i:(�,�O�̆��y�,ÞMeVS�����';��~,l��5}�"8�7[�NC�MZ>�8|_��Gfa��ZwˎE��n��p*``���v�x��/6
7�(N�:�z���èO���/��
P��*�,�/�O��1kܗ8�W\O,�P���Pq��A�����C7�A��訋��J��Bx�<0��[�`�v�+I�ʆ��j��R�GrE=��7
#��AH%�FѠ�L���./V-��t�@�q€Z9/B�V4�,9i�EU,�d�3��w�"�S{]=X�Hö=N��y~l+=�vR*�Aj�f|K� �,/�����}F�@$Z�����Ps�(2�ׇ��0��=Fh������,��;y���I�~������:�#�� 5�5['���l���Ur�)��
x����'�Q�o�1bSҬ�81�	8Wmk5,���62�.,ݵ�[n
_T��2���o�S�ӳ!/B�&���p���� �r#Ʉ#������^���g<L��9�W�<�`XKu,�Bᖱ�V�p)W̡e��,5Z�'C�:B�\�i��s�*���<fS(D�j�f;���?�X>~����o�;�Ք5μI>��V���J����B(v�hC��a�p�v*��	ub�b]R!��w��4�r"�IE��j�I�6�i�I����	�iU�!��ζ�3��X��,��%H��36�B:X2������^�.��bJ�ն�������(��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0���8���oZZ.E���o�� T��^B�	�	0h�	�	c

0n@
@
 w`
`
}hh
���  ��
�
,��
�
��XX �0 0�8 8�@ @� �� ���� � �   (�(  ( �0 `( D
l"0�"\�%+PKLH['�)ߠ.�.lib64/ruby/enc/koi8_r.sonuȯ��ELF>�
@`'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td���DDQ�tdR�td00 0 ��GNU9��a��%�q��5�".��@ BE��X���|�qX� U���� �Aa��, F"D8  �W@  K8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_koi8_rrb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_single_byte_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5:ui	\0 P8 @ @ h @� `� �� �� �` x 	� � � � 
� � � � � � 
� �      (  0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH� H��t	�����H�=a H�5Z H)�H��H��H��?H�H�tH�� H��t��fD�����= u+UH�=� H��tH�= �Y����d����� ]������w������H�H�����H��ff.�@��1����w��H�����x����ff.�f���H��I��I��1�QH�5����!�|���H��������I��I�ѿ!1�H�5V�q������H�5E H�=�I�����H��H���KOI8-R������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@������������������������������������0����������������4�������������0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������������������������������������������������������������������������;D����`����������@����p���������zRx�$(���PFJw�?:*3$"DP���@\8���!pT���#�p���)HI W����������GNU�P@ @`���0:h�	
(0 8 ���o`��
  `�	x	���oX���o�o(���o�  
0
@
P
GA$3a1�	5GA$3p1094`'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY`�GA+GLIBCXX_ASSERTIONSkoi8_r.so-2.7.8-141.el8.x86_64.debug_��2�7zXZ�ִF!t/���K]?�E�h=��ڊ�2N�HC�. ����'�'�	��A�A"�&�4����sa�*�S���N�|C�x�@����#�����`T�s�k�:zę��a>�ō.���4��7քC�xj��91�g�qA����c�\���n5�yQ�@���/���a�?嶋�{�yR�r�$�zs1�Ԙ�>Œ�H�<_}��^M�	�4M��e�j��
i��ۢ7����P��cv��l�k�3�J@˙�D��v�ц�`$�YF�r����C{c2�j�<������z>O��r�JضN�,@
>Dfu�2��r�%2��3�E�(PI:�@����%~w��%j�Ђx�jc�����1�x8��, ��7D�8c�5tK�u%ٷ����I^�{?�ևJ㜝=�,���j��rB��U���ur�.1]��j�TT�����C�L��t��6\�>�\h������mVa�"�YO"� ��ڳ7+�2LX�X#��߫"�l�3>�!pt}=��n�k��'+�uЇ�\v�S௲7Ky����?x��4����G�w��orc��KbR u_�*��̵�Ȟq�e06�E$��>q⤏�G�����C1�i�c4�R�sS��v���Jk�7��B�I`��_J���&�*^���(K���',�und3
�[�y�]u3��'�P
���dJS�GlX1�bњ�@]�Sua�d&Z�R��T�$�߆+�:���vB%���E�4��Y���e,�e�h�l�C17h�g�dur����������� ��N��92>CsQ<�3����^��f��hzk�_�tPi@��ݱ�vޟx�1�&n:C���J���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��8���o((,E���oXX Txx^B�	�	`h�	�	c

Pn`
`
@w�
�
�}((
�@@@ ���D������� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|",�"�4&+PKLH[tN�ø.�.lib64/ruby/enc/windows_1254.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$```  S�td```  P�tdLLQ�tdR�td00 0 ��GNU�� -�"�ȗr�N,���Y�@ @BE���|����qX $U���� �Gg��, F""8  5@  ��)8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1254rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h �� `� 0� �  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�����x����ff.�f���AWD�H��AVI���AUL�-�ATUSL�I9���L9���M�ZL�A�L�XA�ځ����A��C�lef��tuA��@tlE��D��A�������I��H�E��F�#L��I��H���E����m���L�A���I9��f���[H)�]D�A\A]A^A_ÐE�b}A��7w^M��sXL��D��I�Á��H���@A�� ��E���SL�XA��A������@sE��L���y���fD��@t�A�� t�E��D��A�������i�������E��A��A���t�����L��A��I��E��H������@A��u7M��D��I�Á��L��A��������f.��@SE��L���9����D���sA�sH�����A�����fDM��A��I��E��L��A�i�y���A������n���M��A��I��E��L��A�����O���A�I�D���M��E��I��L�����tL��A�� I��E��H������M��E��I��L��A���������f���H��I��I�ѺQH�5�������H���@����I��I�ѿ�H�5����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�i�����H��H���Windows-1254������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�4�4�0�0�4�����������0�����������0�����0������4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������������������������������������������������������������������i�������������������������������;L���h ���� ����P�������0��� `���4����HzRx�$`���PFJw�?:*3$"D����@\p���#Dp�����F�H�L �I(�A0�A8��
0D(E BBBB��,HL W����"�$���B�`���GNU��
@ �`0 PF�	
�0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSwindows_1254.so-2.7.8-141.el8.x86_64.debug��z�7zXZ�ִF!t/���^]?�E�h=��ڊ�2N��J��]�Z4�5�ܹE�2��B^k���� �
�w=ۯ!ɾ6 �v:WG+�!�J�_J��N�l��<b���~���еB+���ڴˏ��ɼ�B`�
�����5Ӆ�ѾL���a����o��kg�Tl]�M7(���,w-GFD���}��eaW��!n�×�b�^�h�x�}���X0��+�3��Z��\+U��7��m%]$���sî7�u(�zl}uI�(�!7�`u ���/�I���0YA��B����^�Od/N����?4���8���B_�e��-�+�wv��i�<�6��@
�m��`�o�AJU������j�pKY��X[د�bӥ�V�����j2�����r}y��vT�J��i01��	x��k��+��o����W+���B��3\?��I�։<[�='vJ?r�Y�2�U���/��e�/"�ݐc	8�MȢzM�;��rn������d5�_�פ�A��k2�v��l_�X�O��O�S�7��4&�h�pf�W�ح	��K�L�m�vr�A��T+�J�t<����<�I�t��e�~y�DP��#��໪�d���ca�{�.�}��L�'��:���s��v�p�,s�Z8K�ԼH��T[���d82V��3gy3��
2����체���/�Vj��t�j�;=�OEV��S�Aɏ�2�S)զ����d�ةQgcN��XW�;w�A=�Q� ���pG�������>�}]a�T>�eG+��ꝉ��4�S�>\�����U�j#S��l�U/��8�8���-���J�?|~������o��Z+���B)���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
g}��
���  �L�PP�`` �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKLH[u�o40.0.lib64/ruby/enc/encdb.sonuȯ��ELF> @�&@8	@00 �� � px   ��888$$  S�td  P�tdttt$$Q�tdR�td�� � GNU�b�F���{���|+�%�@0BE��j���|�qX ��` ���q, F"�X  U���`  �X  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_encdbrb_encdb_declarerb_encdb_aliasrb_encdb_replicaterb_enc_set_baserb_encdb_dummyrb_enc_set_dummyrb_encdb_set_unicodelibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	� �� �� � � � � 
�      (  0  8  @  H  	P  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h�������h�������h�������h�������h��q�������%m D���%e D���%] D���%U D���%M D���%E D���%= D���%5 DH�=1 H�* H9�tH�� H��t	�����H�= H�5� H)�H��H��H��?H�H�tH�u H��t��fD�����=� u+UH�=R H��tH�=F �Y����d����� ]������w������H��H�=�����H�=����H�=����H�=����H�=����H�=����H�=����H�=|�x���H�=v�l���H�=u�`���H�=p�T���H�=k�H���H�=f�<���H�=b�0���H�=Z�$���H�=Y����H�=X����H�=W����H�=V��H�=U���H�=T����H�=S����H�=R����H�=Q���H�=Q���H�=Q���H�=Q���H�=Q���H�=Q�|���H�=Q�p���H�=L�d���H�=G�X���H�=E�L���H�=B�@���H�=?�4���H�=<�(���H�=9����H�=9����H�=:����H�=;���H�=<���H�==���H�=>����H�5�	H�=8����H�5	H�=,���H�5 H�= ����H�5Y	H�=�x���H�5H�=���H�53	H�=�
�R���H�5�
H�=�
���H�5
	H�=�
�,���H�5�
H�=�
�i���H�5�H�=�
����H�5�
H�=�
��H�5�H�=�
���H�5�
H�=�
����H�5�H�=�
���H�5�
H�=�
���H�5uH�=}
���H�5q
H�=q
����H�5OH�=d
�n���H�5X
H�=X
���H�5)H�=K
�H���H�5?
H�=?
���H�5H�=2
�"���H�5&
H�=&
�_���H�5�H�=
���H�5
H�=
�9���H�5�H�=
����H�5�	H�=�	����H�5�H�=�	���H�5�	H�=�	���H�5kH�=�	���H�5�	H�=�	����H�5EH�=�	�d���H�5�	H�=�	���H�5H�=�	�>���H�5H�=�	�+���H�5�H�=�	����H�5�H�=�	����H�5�H�=�	��H�5�H�=x	����H�5�H�=p	����H�5�H�=f	���H�5�H�=^	���H�5tH�=S	���H�5aH�=K	���H�5hH�=C	�m���H�5UH�=S���H�5GH�=#	���H�54H�= 	�4���H�5H�=%�a���H�=	����H�5�H�=��R���H�5H�=����H�5H�=��,���H�5�H�=�����H�5�H�=�����H�5�H�=����H�5�H�=����H�5�H�=�����H�5�H�=����H�5�H�=����H�5wH�=��D���H�5�H�=����H�5�H�=��n���H�5uH�=�����H�5AH�=w�H���H�=�����H�5�H�=^�)���H�5�H�=V����H�5JH�=Q����H�5�H�=J���H�5�H�=?���H�5�H�=4����H�5�H�=+���H�5�H�="���H�5�H�=���H�5�H�=�~���H�5�H�=�k���H�5�H�=�����H�5�H�=��E���H�5qH�=��2���H�5iH�=�����H�5VH�=����H�5�H�=����H�5;H�=����H�53H�=�����H�5,H�=����H�5H�=��]���H�5H�=��J���H�5�H�=����H�5�H�=��t���H�5�H�=��a���H�5�H�=��N���H�5�H�=x�;���H�5�H�=p�(���H�5�H�=c����H�5WH�=\����H�5�H�=����H�5~H�=?����H�5kH�=;����H�=3�]���H�5'H�=&���H�53H�=���H�5 H�=�4���H�5H�=�q���H�5�H�=��^���H�5H�=�����$������
���H�5�H�=��������������H�5�H�=��	���H�5�H�=���H�5�H�=����H�5�H�=����H�5�H�=���H�5�H�=���H�5{H�=~��H�5tH�=o��H�5nH�=c�q�H�5hH�=W�^�H�5bH�=K�K�H�5\H�=?�8�H�5VH�=3�%�H�5�H�='���H�5�H�= ��H�5�H�=��H�5�H�=��H�5�H�=�v�H�5pH�=��c�H�5<H�=��P�H�5qH�=�H���9���H��H���ASCII-8BITUTF-8US-ASCIIBig5Big5-HKSCSBig5-UAOCESU-8CP949Emacs-MuleEUC-JPEUC-KREUC-TWGB18030GBKISO-8859-1ISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-8859-10ISO-8859-11ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16KOI8-RKOI8-UShift_JISUTF-16BEUTF-16LEUTF-32BEUTF-32LEWindows-31JWindows-1250Windows-1251Windows-1252Windows-1253Windows-1254Windows-1257BINARYIBM437CP437IBM737CP737IBM775CP775CP850IBM850IBM852CP852IBM855CP855IBM857CP857IBM860CP860IBM861CP861IBM862CP862IBM863CP863IBM864CP864IBM865CP865IBM866CP866IBM869CP869Windows-1258CP1258GB1988macCentEuromacCroatianmacCyrillicmacGreekmacIcelandmacRomanmacRomaniamacThaimacTurkishmacUkraineCP950Big5-HKSCS:2008CP951IBM037ebcdic-cp-usstateless-ISO-2022-JPeucJPeucJP-mseuc-jp-msCP51932EUC-JIS-2004EUC-JISX0213eucKReucTWGB2312EUC-CNeucCNGB12345CP936ISO2022-JPISO-2022-JP-2ISO2022-JP2CP50220CP50221ISO8859-1ISO8859-2ISO8859-3ISO8859-4ISO8859-5ISO8859-6Windows-1256CP1256ISO8859-7ISO8859-8Windows-1255CP1255ISO8859-9ISO8859-10ISO8859-11TIS-620Windows-874CP874ISO8859-13ISO8859-14ISO8859-15ISO8859-16CP878MacJapaneseMacJapanANSI_X3.4-1968646UTF-7CP65000CP65001UTF8-MACUTF-8-MACUTF-8-HFSUTF-16UTF-32UCS-2BEUCS-4BEUCS-4LECP932csWindows31JSJISPCKCP1250CP1251CP1252CP1253CP1254CP1257UTF8-DoCoMoSJIS-DoCoMoUTF8-KDDISJIS-KDDIstateless-ISO-2022-JP-KDDIUTF8-SoftBankSJIS-SoftBank; ��<,�dl�|zRx�$X��FJw�?:*3$"D���\���H�GNU���� ���
x� � ���o`�
'  �(��	���o`���o�o@���o  0@P`p��GA$3a1��GA$3p1094�wGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignencdb.so-2.7.8-141.el8.x86_64.debug��-�7zXZ�ִF!t/��	]?�E�h=��ڊ�2N�.���D�����C6J�M�}-JFkj��\ڽ�(�ӛ��-�UHH
4(��d�q��ݜ�h1;W����i���p�dŰ�8�F#�(EY�-��z�)�%�j���v7���&a�i������t������ayѽ.b���H<�tZ40U~�p��C��&����9`�!*�]���4)1�{B��qL��;w��D��+��βQ%t�;LjR�8M�R�/#C��O�Q�j����j���ww��Dɞv���B��p4���E�������&�Փ����*7�K�C�W��4�즀���0�%�M���KE܋�]
����s�Hgl���~2)8�m�Z�6W���V�W.��6�_7��E��t����y馆|g5�6��yT�LZ�;�g��w>�{Q���[��`���5��w��s	��%A�r��O��~<B�<�=�D��~�j#�V��$����2Y��	[�ɿ\ֻ�{׽-�y|�K$v���DK�_��ϑuP�9g��%"7��;���.�������ц4�-JY�˝#�c�I����o��뛶���_�i{�r"���_���F�R�5���~��!5��
��C7\�0�a\t��P�2�l��i�-�����P��B}�L��)'������_�[,.<yrl�H-��b�p�q���:z[#ӆ���4<~u�϶�R�`du�ܶ�8��d���+�3h��\�����:�������Fɥ��u;P��s!�&�<�~�x�?/�7�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0'8���o@@ E���o`` T���^B((�h��c�n���w  W}xx
�2����tt$���x� �� ��� ��� �� ��� � �   X�X  X �` `X �
L"(t"L�%+PKLH[�	Tp�.�.lib64/ruby/enc/cp949.sonuȯ��ELF>�
@�'@8	@XX 00 0  ( �� � ��888$$888  S�td888  P�td���\\Q�tdR�td00 0 ��GNU�9m�4YGg[�h�]�m6)�@" BE���|P�e�qX ��o�� U�q&H, ��F"�P  X  �`
�P  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb2_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb2_code_to_mbconigenc_mbn_mbc_to_codeonigenc_mbclen_approximateInit_cp949rb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_mb2_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui		0 �8 `@ @ ` �h �
� �� p� P� 0� �� x � � � 
� 
� � � � � �      (  0  8  	@  H  ��H��H�� H��t��H����5 �% ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%} D���%u D���%m D���%e D���%] DH�=Y H�R H9�tH�� H��t	�����H�=) H�5" H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=j H��tH�=� �Y����d����� ]������w�������H�H�
��x)L�GL9�t0�OH��HЀ<������D@��fD��������D��f�H����������H���<����������H�׉���n���ff.�����L��I��H��H����'��������H��H������ff.�f���H��H��H��H���+���ff.���USH��H��H9�vk�L��A�<t4�F�L�
�H�^�A�<��oD�C�L�C�A�<�~L��H9�u�H��H���A9Au+H�H�H9�rH��H)�H��H�0H��H��[]�f�H��H��H���r���H�H�H9�s���H��먐��H�5� H�=.�)�����H��H���CP949��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
@���x�������P����p�����������������0����\zRx�$��FJw�?:*3$"D���p\0���]p|�����������������������(������E�A�G t
DAJ<���GNU��`@ ��
�pP0����	
x
0 8 ���o`��
,  �0	 	���o���o�o����o� 
 
0
@
P
`
p
GA$3a1�	�
GA$3p1094�w
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�
GA+GLIBCXX_ASSERTIONScp949.so-2.7.8-141.el8.x86_64.debug��L�7zXZ�ִF!t/��O�]?�E�h=��ڊ�2N�	����c��P@^M�me�3�r7NT??��$���:��ڞ�;qK����⸪K�dѣя�liȐ:�-�#�]�{P6�Os:��]�x?h$|�,o#�b�>47�����n�c��<�Ύf�.牀)�C��2`�뗏����N�@�0ƒ�M@gf/��;��,B��9x�d��J��GN��0�yL.?�]��f��CA�������l%F�9K�\:��J�խ����Z�e;z[7ì��tI;�����nQ
��
��r����'�w���NT�tkT��G���[V�/g�2%�86��{���/�A��Vc����@��b쟛�N�=�8"����Of	Yƞn�$�n���%���o��˴���j���п�IX��~y���1���6�W�O@?C(T\���2�}�
=���Z�,�0�pc3�l"��3Q���C_魄�� �F�����6}[��&��#���a�&3��c!怶s�O�pks"���������=����X�.).U�q�X%�Ásd�E�-"�=x5X]J��53�g�^�	�(#Lai1��]H�ߗ��a9�aJm�lM�Z�$�����N���]6��i=Nc�_�?����y8`�Y��V�a�D�"
�%WO�Ju�A��A���y���m��#���T���륨Jtq��1��:Y./���U$�h��eV��?�n23�L:c�N�
�#�9_��/�1�N���p�4z5�z2]���5�̈́9H9N�~��2{�x-#u�+�F>2K�$�9���D@NI�2 ���}���i5�̄�.����%��j�������o�~h�ԫ�ۺ�O�kc�����s������hh[ku�_�-6�\�k�%����.�X��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��,8���o��,E���o T  ^B0	0	�h�	�	c

�n�
�
pw�
�
�}x
x

��
�
  ���\�  �88 �0 0�8 8�@ @� �� ���� � �   P�P  P �X `P D
�"(�"��&+PKLH[�nT̨.�.lib64/ruby/enc/koi8_u.sonuȯ��ELF>�
@h'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td���DDQ�tdR�td00 0 ��GNU�&	�ݜ������N�=J�@ BE���|�X��qX� U���� �Aa��, F"D8  W@  �K8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_koi8_urb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_single_byte_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5:ui	\0 P8 @ @ h @� `� �� �� �` x 	� � � � 
� � � � � � 
� �      (  0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH� H��t	�����H�=a H�5Z H)�H��H��H��?H�H�tH�� H��t��fD�����= u+UH�=� H��tH�= �Y����d����� ]������w������H�H�2����H��ff.�@��1����w��H�����x����ff.�f���H��I��I��1�QH�5����%�|���H��������I��I�ѿ%1�H�5V�q������H�5E H�=�I�����H��H���KOI8-U��������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@������������������������������������0�0��0�0������0������4�4��4�4������4���0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������������������������������������������������������������������������;Dp���`������������ ����P����p����zRx�$���PFJw�?:*3$"D0���@\���!p4���#�P���)HI W�d����p���GNU�P@ @`���0:h�	
(0 8 ���o`��
  `�	x	���oX���o�o(���o�  
0
@
P
GA$3a1�	5GA$3p1094`'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY`�GA+GLIBCXX_ASSERTIONSkoi8_u.so-2.7.8-141.el8.x86_64.debug��}��7zXZ�ִF!t/���O]?�E�h=��ڊ�2N�HC�. ����'�'�	��A�A"�&�9��;��bi�Ԙz� �_�G�c��qT(P_l{yn�46��~_>$Ϩ۝�.��A1�#�^�L�6���8�^��	42�Jc�C<�g�X��^'���քX�IA�H��QH�[��d�Zk��UF)2��m�>$j��r<"�S�i9j/��u�*��Q�އ>��K�Fɩ�1r�p��?�Vى#|B�B1�E ��&�F��
 ]'>����Qץ��9���9�A&x���JiF]���F_g��B�������*y�$5��쫵	�S�.�d��T�>�j����}!swP��3a�3�u�]��)
Ƕw�����)�c�
j�"��<*���p�s<"}|���:9k��kKC
�_�K��>{�>G?J�����b��z��Ѕ�c�	ɀ)L��jګ��T{�h�,
\�S&M�D`�������J��r���bDM�id!la���,����)���b���?�[��@���h�㉚31Y��,I�dvx�EM܈������@5�Ղ��W��̺kB\:�jd� �ӟ��/gG�7��0m�-�Ϯ��~|]�\@i}���&��F�PT���MW�3Dkx8�t���0��T��-��ڶ�1��6���e��o"�E��!�%#���]
�z�b���)Po�3�{bP/Tڌ�8y��6��CB�)�/�6�)���i�(s0s�O�1����"G���,~8Lj(�=����Xɘ4�\�ɫ�R�v��izN���x{0�0b��q������F���py�^��A!�}i��;N��nBA�����ik�DZ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��8���o((,E���oXX Txx^B�	�	`h�	�	c

Pn`
`
@w�
�
�}((
�@@` ���D������� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|",�"�8&+PKLH[R�
��.�.lib64/ruby/enc/euc_tw.sonuȯ��ELF>�
@�'@8	@�� 00 0  ( �� � ��888$$xxx  S�tdxxx  P�td\\Q�tdR�td00 0 ��GNU�or�ƉY�9B?Yݻ���v��@ �BE���|�qXV5	 ��oU�� �r'I, ��F"�P  X  �P  ��
__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb4_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb4_code_to_mbconigenc_mbn_mbc_to_codeonigenc_mbclen_approximateInit_euc_twrb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_mb4_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	
0 �8 `@ @ ` �h �
� �� �� �� �� 
� �x � � � 
� � � � � 	� �      (  0  8  
@  H  ��H��H�� H��t��H����5 �% ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%} D���%u D���%m D���%e D���%] DH�=Y H�R H9�tH�� H��t	�����H�=) H�5" H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=j H��tH�=� �Y����d����� ]������w�������H�BH�
��xiL�GL9��|�OH��H�H���xXH�OH9��|�OH��H�H���xWH�OH9�teH���OH�1��<
����D���D��������D��f���������D@��f�H��������������������ø����ø�������1��?~�������H�׉�����ff.�����L��I��H��H������������H��H������ff.�f���H��H��H��H������ff.���USH��H��H9�vG���_<]v	�f�H9�sH�����_<]v�H��H���A9Au'H�H�H9�rH��H)�H��H�0H��H��[]�DH��H��H���:���H�H�H9�s���ff.���H�5� H�=.�����H��H���EUC-TW���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
�x�����������������������������0����\zRx�$��FJw�?:*3$"D��p\���p����
�������������������(�����E�A�G P
DAF<���GNU��`@ ��
����
����	
�
0 8 ���o`��
-  �8	(	���o���o�o����o� 
 
0
@
P
`
p
GA$3a1�	�
GA$3p1094��
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�}GA+GLIBCXX_ASSERTIONSeuc_tw.so-2.7.8-141.el8.x86_64.debugN-_��7zXZ�ִF!t/��O~]?�E�h=��ڊ�2N�	����c��P@^M�me�3�r7NT?L��8��_֬�&�|̅�>Ofr��.SY8ߔ�o�o}���,��'�	&>��B$��W+��m�	� 
/۾��y�)S#��Z�j�K.���HH�t�_G�c׸w|X\��(p��f�L���܈F���Ӯ
үO�4t
D s��(j�)/9Fh�c몁�FɄW��c�:��}�vKڴ9��X!��}<gH$��W/�޶��굄��ӆ~�kg��]XZ��Q�h��,����=�{�\�n�T|�Z� ����_�߹�H���9gd�E���2���/΀�t�
�hf…���U9�E�� 1���	Gфb�%��a6���,+�X���?!v�Mޮ)�����?��v�p*�ίȑ/M�\���E3Ђd+*�_�=g*��{����JKL��-��*�ps��\�V�rJ��Y�X�ѥt����
d���!�.�}�?6�Jj������E�
��}���"Rsq�B�)��*BRP��K'��N�������u	��4ݕE-��ͬ��
XUB���3�uV�G�
7MrI�Yxv��/WV�*h��(�l%߽'�[CK�ұh���Iu?������~���6N�=O©y%�O��
������>�B�EƘ���k@qN�#֦�2xr5ɍ�Ŏs2^D��Y�*4��as��j������/Uh�{h�!!�T
���ɏ�?�p����Q:�uh��=�&
��@�B���Yܮj��?2#��PF��*�b�`o��H,#٧��Z�d��~�o]�ؙtȏ�Kq;'��Σ$��}�� ���_��yh���A��}-��H(L���IƗW�̭'Y�{#�4v���
d���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��-8���o��,E���o T((^B8	8	�h�	�	c

�n�
�
pw�
�
�}�
�

��
�
  �\�``�xx �0 0�8 8�@ @� �� ���� � �   P�P  P �X `P D
�",�"��&+PKLH[)��??lib64/ruby/enc/big5.sonuȯ��ELF> @�7@8	@($($ �+�+ �+ `h �-�- �- ��888$$$$$  S�td$$$  P�td " " "||Q�tdR�td�+�+ �+ GNU��7���j���u��'�@ �BE���|;�V ���qX�1
V ��o� U��C(e, ��F"P0 !X0 ����P0 ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb2_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb2_code_to_mbconigenc_mbn_mbc_to_codeonigenc_mbclen_approximateInit_big5rb_enc_registerInit_big5_hkscsInit_big5_uaoonigenc_is_mbc_newline_0x0aonigenc_mb2_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	&�+ ��+ �, ,  , �(, @, �P, �X, `x, @�, ��,  �, @�, �, ��, ��, `- @(- �0-  `- �h- �- ��- ��- `�- @�- ��-  8, �, x- H, �, �- `, - �- h, 
- 
�- 
p, 
- 
�- 
�,  - �- �, 8- �- �/ �/ �/ �/ 0  0 (0 00 80 	@0 H0 ��H��H��" H��t��H����5�" �%�" ��h�������h��������h�������h�������h�������h�������h��������%]" D���%U" D���%M" D���%E" D���%=" D���%5" D���%-" DH�=)" H�"" H9�tH��! H��t	�����H�=�! H�5�! H)�H��H��H��?H�H�tH�]! H��t��fD�����=�! u+UH�=:! H��tH�=N �Y����d�����! ]������w�������H�2H��H���x&L�GL9�t-�OH��HЀ<������D@����������D��f�H����������H��H��H����x*L�GL9�t9�OH��HЀ<������D@�����������D��f.�H�y
��������H�bH��H����x*L�GL9�t9�OH��HЀ<������D@�����������D��f.�H�	��������H���<����������H�׉�����ff.�����L��I��H��H����G��������H��H�������ff.�f���H��H��H��H���K���ff.���USH��H��H9����L�@A�<tQL�L�
O���L�(
H�-!	��A�<�����u$L��L9�tL�C��C�M9�u߃|�����t�H��H���A9Au*H�H�H9�rH��H)�H��H�0H��H��[]��H��H��H���r���H�H�H9�s���fD��H�5� H�=^�)���f���H�5 H�=C�	���f���H�5E H�=.�����H��H���Big5Big5-HKSCSBig5-UAO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;|�������� ����� �(@�<`�P��d��xp��������zRx�$p��FJw�?:*3$"D��p\��]p,�m���m�������������(� ��E�A�G �
DAI(��<��P��GNU���, ���`@� @��`@� ���`@� �2

��+ �+ ���o`��
I0 �`��	���o`���o�o*���o�- @
P
`
p
�
�
�
GA$3a1
�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�=GA+GLIBCXX_ASSERTIONSbig5.so-2.7.8-141.el8.x86_64.debug����7zXZ�ִF!t/����]?�E�h=��ڊ�2N�.��'E-%��/�
�Y��`ϓͽ0�r�K�,�+T؝��(�U���zU!zv'�/�"�5S4Tf[��=h�㼢T)q3�{���n_Q�X�AܔG�v�<�c����-wNQ���q�y��<W���	������8H�bپ��un�X:s�jN��H���w�i�<�6:��y��w�3$u�_q$6!���{�T���}C�e�Հ��>�_YU8���)��K�`�@a��F�C�%ĝθ�w̄V?ۧ��[m+<;Hp���;be�A@�YF�N��%\��i>�<��c�:x�\@�`���
`�\U`!�#x�(�RժH?G��RTʤ�t�����4�,
L-7�
�L+i�h�9N���{�6P�ȑ���
��A��{=B�cI\��O0��_�(mWB("���\OF@��@��̬��kǰ�h�j2���`���<�ZQΘyx��.��}lM��yo�C���lF"dh��3�S�L�i(��c�]�1�~��mQ����v�n�6ǜ�kI������:j��?�@��wFArR���%�H�D������!/�	�kM*�7=���&xٛ��2���].�a0r���tAb�wĸ�Q)c�z�iP�x�FG�T����YL��Y����jkf��,?.���HF��KUf~��q��C���$�W�#�˯�)�Q�O�g�,�$�'憒ѡ$B��5,��)��'��.��y��?Ke^�8d�k�l�L�GVR�:P��_�
��`~Q��y��]�j�_�u	!m�΁X�^���w�q
�c�UN.a��T ���)�yF�A(���(�
��tX���/����]F�E"]ֽ\�GG�)k�
�^aC�VX��]��7���W���O�k�(
�ìj��!�� ~�h��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``<(��@0��I8���o**0E���o`` T���^B``�h

c0
0
�n�
�
pw  �}��
�  � " "|��"�"d�$$ ��+ �+��+ �+�, ,� ��- �-���/ �/ �0 0P�P0 P0�X0`P0D
�2(�2��6+PKLH[��I�.�.lib64/ruby/enc/euc_kr.sonuȯ��ELF>�
@�'@8	@ 00 0  ( �� � ��888$$���  S�td���  P�td���\\Q�tdR�td00 0 ��GNU��r�[��%���OS5,�}��@(BE���|�T5	�qX ��o�� U�r'I, ��F"�P  X  �0
�P  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb2_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb2_code_to_mbconigenc_mbn_mbc_to_codeonigenc_mbclen_approximateInit_euc_krrb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_mb2_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	
0 �8 `@ @ ` �h `
� �� `� @�  � �� x � � � 
� 
� � � � � �      (  0  8  	@  H  ��H��H�� H��t��H����5 �% ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%} D���%u D���%m D���%e D���%] DH�=Y H�R H9�tH�� H��t	�����H�=) H�5" H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=j H��tH�=� �Y����d����� ]������w�������H��H�
��x)L�GL9�t0�OH��HЀ<������D@��fD��������D��f�H�y�������1��?~�������H�׉���~���ff.�����L��I��H��H����7��������H��H����
���ff.�f���H��H��H��H���;���ff.���USH��H��H9�vG���_<]v	�f�H9�sH�����_<]v�H��H���A9Au'H�H�H9�rH��H)�H��H�0H��H��[]�DH��H��H�����H�H�H9�s���ff.���H�5% H�=�Y�����H��H���EUC-KR����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
����x����0������������������������ ���0����\zRx�$����FJw�?:*3$"DX���p\p���]p����
�����������������(����E�A�G P
DAFL���GNU��`@ �`
�`@ ����	
H
0 8 ���o`��
-  �8	(	���o���o�o����o� 
 
0
@
P
`
p
GA$3a1�	U
GA$3p1094�G
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�
GA+GLIBCXX_ASSERTIONSeuc_kr.so-2.7.8-141.el8.x86_64.debugUH}=�7zXZ�ִF!t/��O�]?�E�h=��ڊ�2N�	����c��P@^M�me�3�r7NT?a�jEQ[f|g�����������rRCت_��w�n����)�P)֬4�76�MFv޸&�#��b"?S�^`��.jtY%ZTW��ԍ��)3���&P�r��ơv��班���^��A�09z�ꚩC�e�q�~ukgQ�Fk�Ll�DZ��:e�q��	�3V�#�R	₤��A��Rӑ$�0�.�Ɲ�]Kj��
��	
�CW�
� �+���Y��Ғs�byJo\��bJʳ�����|�X�y��H�}=�p�c`��kt���]���&'R��~���[��*��,
Nb�[GδQ(e�۫M<V����~m
)���EԚ	������R6z?��NT7Y�yĖ:�����~,a� ���9��I�e����bo�-��8��$֫�d���.�����+m�����%j�O�Q-e��5e�f�e��*�n
M��i����S{�@�&|:�]6���Y.<���c�f�
�g~}c�%�fϾ��$;�M�S�v,q3Ds��{����e�&�f��qM�{O���:����\�F
,�?�����ό򙬪YǪ%��KWMaE�D�z�\���x��c#\�c����k�+��5N�u���P��D��H���y��@��v�r��S!p*-��G�sQI�g���6%Z��n��-�ael�8-�����?eC�n咁���h�L���7]����Q�{pf�?V�!�UJ�u��V}�-���v�3���z�LE:�w
v�A�;_���c�j�s�*j�MP�m''c���c��}�֜|�l���K&�V���Xv
`�n
!�,&sž3����Fʻ���e�ٓ��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��-8���o��,E���o T((^B8	8	�h�	�	c

�n�
�
pw�
�
W}H
H

�`
`
  ���\������ �0 0�8 8�@ @� �� ���� � �   P�P  P �X `P D
�",�"��&+PKLH[
?�*�.�.lib64/ruby/enc/gb18030.sonuȯ��ELF>�
@�'@8	@�� 00 0   �� � ��888$$���  S�td���  P�td   \\Q�tdR�td00 0 ��GNUOP370��[1�&RiG�����@ @(BE���|�qX�9� ���oU�� �[2, �F"�H  �P  �H  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb4_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb4_code_to_mbconigenc_mbclen_approximateInit_gb18030rb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_mb4_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 08 �
@ @ ` @h � `� @�  � � � �x � � � 
� � � � � 	� �      (  0  8  
@  ��H��H�1 H��t��H����5R �%S ��h�������h��������h�������h�������h�������h��������%� D���%� D���%� D���%� D���%� D���%� DH�=� H�� H9�tH�. H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�� H��t��fD�����=M u+UH�=� H��tH�=. �Y����d����% ]������w�������H��H���xiH�OH9����OH��H�H���xpH�OH9�t{�OH��H�H���x;H�OH9�tXH���OH�1��<
����D���f���������D��f������������������������D@�ø����ø�����ff.���H��H9���H��H�
�
�2�41@������@���U@����H��H9��3L�G��2�41@��t��@��ylH��L9�u���H��H9��8�2�41@���@��~7@���H��H9�w �2�41@�����S@����H���D@��t�H��H9��(����DH��H9���L�G��2�41@����@��~�@����H��H9����2�41@��x�@����@��u�H��H9��c�2�41@��x@���e���@��t�H��H9�v���f.�H��H9��*L�G��2�41@����@������@����H��H9�w%�2�41@������@��y	H��I9�u�H����@�������_����H��L9�����f�@����H��H9����2�41@��x]@�������@��uMH��H9��v����2�41@��x$@���`���@��uH��H9�v��f.�H��I9�u��8���f�H��H9�v��fDH��H9������f�H��H9��	����2�41@����@�����@����H��H9����2�41@����@�������H��I9�u��@@��u�H��H9�������2�41@��x�@�������@��u�H��H9��`�2�41@��x@���`���@��t�H��L9�u��fDH��I9��0����4���fDH��H9������f.�H��L9��������fDH��H9������2�41@��x�@�������@��u�H��H9�w�2�41@����@����H���D@����H��H9�������2�41@��x�@�������@��u�H��H9�w��2�41@��x@��~�@��t�H��I9�u�뗐@���P���H��H9��������H��I9�����f�H��I9��=����T���fDH��H9��A����2�41@����@���'���@����H��H9������2�41@�������@�������H��I9�u����@��u�H��H9������2�41@��x�@�������@��u�H��H9��w����2�41@��x@���a���@��t�H��I9�u��M���f.�H��I9��(����d��������������H�2�<����������H�׉���.���ff.�����L��I��H��H�����������H��H�������ff.�f���UH��SH��H���r9rt
H�������H�}�E��~,H9�v'H����H9�vH���J���ȍJ)�9��H��[]�ff.���H�5�
 H�=�i�����H��H���GB18030������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
��x� ��������������� ���@���0����XzRx�$�pFJw�?:*3$"DX�`\`��p����������������$����bE�D�G OAA�P���GNU�0�
@ @`@ �����	
�0 8 ���o`��
  �	�	���o����o�o����o� �	�	�	�	

GA$3a1�	�GA$3p1094@�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY@GA+GLIBCXX_ASSERTIONSgb18030.so-2.7.8-141.el8.x86_64.debugO�7zXZ�ִF!t/��_�]?�E�h=��ڊ�2N����. ��u.�U𽢶�M�PPhI��,�la��y;�j�[z>>^h����L�����
Ά��<�o�������>K�E�t<�9�4d-�n:Yy
�.��1���2���K�B$WjWC�?����(	�ZZV3��p��6dŤ]Q.#���N�~&��UD��
ث��ͺ��1z�P~�*P�̲�,E�J�<x��.lsl_�Wض�༴JKt�L��_	I��SA�W�f�+]�o�HC��Or��M�x(?d7�>�&��P�e�~3��m/����[Y~[~.]�l��w�Zׅ��%
�PgX�5]ٮv.��Z1k���t�?W��{�u���n��^i�K��S���P�B]p�����7�ϧm��Λ��%��.�u�@	G�ÇCf��f��gyӇ��X�R۝�]{�!A[�G��S�[�J��8H�L����;R���Ί�6(�2YFI��hjfV�ā�^+L��~��۽	�NM�3,%��/U�Vif)�d����^��$�J��p^��_�UV�dRQ:ӑ>a��q6sc�/�M��鶾*P&��������n]*��S�ߺ�	�A�[Ͻ-���r>R@Am���Ym���pj�=\M��C�8���Q_�—~�|��3
<�ޏ�eez�9�4(���+t��*/�7�N-z'�t{�=�ǟ|�r�B!$��]�f��gƕ�P�fVDYҹ�sO�K� ��g��3��XK>��>��N���ĕ�^)Ƌ�b�܃5�❵/���:M��`�X��I�*5Rl�&i;��UOԭ���5/X�$ţ�h��sv]��9Ҡ��.��R0��2…�y��C}i�����2���w�?3��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��8���o��*E���o�� T��^B		�h�	�	c�	�	pn 
 
`w�
�
g}��
�  �  \������ �0 0�8 8�@ @� �� ���� � �   H�H  H �P `H D
�",�"��&+PKLH[�+KI�.�.lib64/ruby/enc/gbk.sonuȯ��ELF>�
@�'@8	@XX 00 0  ( �� � ��888$$888  S�td888  P�td���\\Q�tdR�td00 0 ��GNU@F�‹ul���IR���Hi�P BE���|͸U��qX ��o�� U�o$	F, ��F"�P  X  �`
�P  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_mb2_is_code_ctypeonigenc_mbn_mbc_case_foldonigenc_mb2_code_to_mbconigenc_mbn_mbc_to_codeonigenc_mbclen_approximateInit_gbkrb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_mb2_code_to_mbclenonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	0 �8 `@ @ ` �h �
� �� p� P� 0� �� x � � � 
� 
� � � � � �      (  0  8  	@  H  ��H��H�� H��t��H����5 �% ��h�������h��������h�������h�������h�������h�������h��������%� D���%� D���%} D���%u D���%m D���%e D���%] DH�=Y H�R H9�tH�� H��t	�����H�=) H�5" H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=j H��tH�=� �Y����d����� ]������w�������H�H�
��x)L�GL9�t0�OH��HЀ<������D@��fD��������D��f�H����������H���<����������H�׉���n���ff.�����L��I��H��H����'��������H��H������ff.�f���H��H��H��H���+���ff.���USH��H��H9�vk�L��A�<t4�F�L�
�H�^�A�<��oD�C�L�C�A�<�~L��H9�u�H��H���A9Au+H�H�H9�rH��H)�H��H�0H��H��[]�f�H��H��H���r���H�H�H9�s���H��먐��H�5� H�=.�)�����H��H���GBK��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
@���x�������P����p�����������������0����\zRx�$��FJw�?:*3$"D���p\0���]p|�����������������������(������E�A�G t
DAJ<���GNU��`@ ��
�pP0����	
x
0 8 ���o`��
*  �0	 	���o���o�o����o� 
 
0
@
P
`
p
GA$3a1�	�
GA$3p1094�w
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�
GA+GLIBCXX_ASSERTIONSgbk.so-2.7.8-141.el8.x86_64.debug�j��7zXZ�ִF!t/��?|]?�E�h=��ڊ�2N�	����.wD��%6 �H�`�`��2�8��!�w�a�I��,��G�[��Ʃ���XU�X���ؚ8�f�th3����6p�!'�T���k�<Do���oiL��m�'ּ��y��Nq̸�:�ڬ�%�8�9hB��^�K��[��?���5M��4���A�ʈ�]�B�z#����9�|\.�?�ۋ��|i�=��C��ޙ�X�-iԱ�C��&sh$trq�{�N3X�8Ddc^���R�����m;2�7���*P�c&Y��.ɸ_�����Nq��swZ	q��4SS�O�j�%j�>u����lcں��2"-J��wpˏg�`D^<�_�x����k�_PKu<����J����GJ��Xy��_j�㵞Jt�d�'ǴW��ˤ�\k�I;s�ڃ�{f��t\�	j�4KY�^��v�{ ��i���,���)�|4y&������gq!�[$���i2%8��T���e���QDr��  �o�1��(�*�<BZ�4  ��Lf ۅ��!��))�� y2^Z�6��s
V�in�Ԓ�1�]�i���u�B�o���w�e[�I
@*[��1m�j�/�r�צ�bS<FHI�S�-짅�e����I=>+�A-ت�y���(�!윫�t'�YW3Ht�/H�Ra6C��"ҁ��!��~4��쌷Br��Ke@�O�D�h"�I�qڨ�.�����ދ��rL��#���^�h����!"�VK��w�M��خN��m���e�`
�E��9N4�4��ػoS���m���.
u�KQu��?*⸽��ě�
[A�}���sQ^�s���AY���-�
M_��!8�����=S#��Z�V_��5ޓ��P����|n�Y��~�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0��*8���o��,E���o T  ^B0	0	�h�	�	c

�n�
�
pw�
�
�}x
x

��
�
  ���\�  �88 �0 0�8 8�@ @� �� ���� � �   P�P  P �X `P D
�"(�"�x&+PKLH[P���.�.lib64/ruby/enc/windows_1250.sonuȯ��ELF>`
@�'@8	@88 00 0  �� � ��888$$  S�td  P�td���LLQ�tdR�td00 0 ��GNUzxY��ez���Lc����@ BE�쪞ٻ�|�qX $U���� �Gg��, F""8  �05@  )8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1250rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h `�  � � �
� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H������H��ff.�@��1����w��H�Y���x����ff.�f���AVD�H��AUATL�%)UH�-!SL�L9�swI9�srM�ZH�XL�E�E��A�����E��F�lufA��tSA��@tJE��I��G�4H��A���A��L��D�E��t�A���L�L9�r�[H)�]D�A\A]A^�f�A�����A��@��A�� ��E��A���A��E��A����A����6A��A��5�
I��A��H��E��L���`����A�� tGE���SL�XA��A���t}�@sE��L���.���fDI��E��H��A���L������A��uWI��E��H��A���L��A�������f�I��E��H��A���L��A��������f��@SE��L���A����E���sA�sH��A���A�����DI��E��H��L��A������i����I��A�� H��E��L���S���I��E��H��L��A������9������H��I��I�ѺQH�5����(�)���H���@����I��I�ѿ(�H�5c����ff.���H�5% H�=�����H��H���Windows-1250��������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�4�4�4�4�0�0�0�0�0����4��4�����4�����4����0��0����0�0��4��0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L���h`����`�����������������@���,p���@zRx�$����PFJw�?:*3$"D���@\����!p���#<���OF�H�B �H(�H0��
(D EBBC�����,HL W����"�(���GNU��
@ ` �
P�F�	
H0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	UGA$3p1094 GGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSwindows_1250.so-2.7.8-141.el8.x86_64.debug�����7zXZ�ִF!t/���f]?�E�h=��ڊ�2N��J��g�vP�����|��{��Q��a��ۿ'�����Yl�W�m�Ŭ:�������9�q�X2����b哗��eE��ާO))fCc寣��m]��B�8��?۾1_�d
]�D,�@q�b'��>9uO�(6��$��(�S��ur��_3<�6��da�s:�݁	�;;��	i��|�9e�/��]��`<�E��cU�j���j��}V�XY�|/
� �e��8?�Ŕ�/f�!��Џ�6V�%=
�t�+�.B���f�A��4��H#2᛺��0�U�P���#��T��8�F+�$����irSh��1�揇��xW��ޥ�HjZ�GYȿ��H��'�z,>l�������2��E�^��>�׷O�@�;�Y������q2�xXeQ��+���>	LP!�fg�;G|�~S���w�#,�a}�cɚ��aК1��{(�R�v��>�x��H�lp���onX{{�xd���<��ׂp����B9OM��MX<�'kZ�k�⿭>NA�����h�C��'TYf,E��*��#@t�hyX��<:>z�T
�����j&05ʹ:r��w��tɜ�in{�1�2|�\������a;9Rr0�Mmu�禁�	?Y���n��c�c]�Q����>݌��ΦR�#=�غ>���\���ͷ�"ΪL
���UeN���ȇqE.;��ؑ����s�9�?��G��7�F���jCmA��$�_t(�������L:��zG?�'*s�+,�6k�o�.�Wv�pL%����/�@,�;"��o�
9�8��땁�
zC!������hW�y3�����_��ٱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}HH
�``` ���L�� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�T&+PKLH[�&�.�.lib64/ruby/enc/windows_1252.sonuȯ��ELF>`
@�'@8	@ 00 0  �� � ��888$$���  S�td���  P�td���LLQ�tdR�td00 0 ��GNU�}��d�w��h����9��@ BE���|�qX��� $U���� �Gg��, F""8  5@  )8  �__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1252rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h @�  � �
� �
� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H�R����H��ff.�@��1����w��H����x����ff.�f���AWD�H��AVAUL�-�ATI���UH�-�S@L�L9�stI9�soM�YL�A�L�XA�ف����A��F�t}fA��tTA��@tKE��L��G�L=I��A���A��H��E�E��t�A���L�L9�r�[H)�]D�A\A]A^A_�E�y}A��7w^M��sXL��E��I��A���H���A�� ��E���SL�XA��A������@sE��L���{���fDA��@t�A�� t�E��A���E��E��A��A��A���������������L��A�� I��E��H�������A��u7M��E��I��A���L��A��������f��@SE��L���a����E���sA�sH��A���A�����DL��A��I��E��H�����M��E��I��L��A������q���ff.����H��I��I�ѺQH�5����"�I���H���@����I��I�ѿ"�H�5c�>���ff.���H�5E H�=�	�����H��H���Windows-1252��������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�4�4�0�0�0�4�����������0�����������0�����0������4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;LP���h������������������0���`���4����HzRx�$��PFJw�?:*3$"D���@\�!p���#D�(���$F�H�B �I(�K0�H8��
0D(E BBBD����,HL W�$���"�@���GNU��
@ @ �
�
P�F�	
(0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	5GA$3p1094 'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSwindows_1252.so-2.7.8-141.el8.x86_64.debug��7zXZ�ִF!t/���f]?�E�h=��ڊ�2N��J��g�vP�����|��{��*�.:3l>����/Y+O�A��@6CT�Q2�]0J['�	J"�j#RAI��R�bT8}���V���8��Z �~(F���L���*֨��3����E��_��
{pM�׼�Gp��f8��
Zeu���vR)�Z���u����ݖ��L	���L����3��hO�w&���W��C�^N�J6Fc>�fD<
���k�T�t]�>�'6x<[�y&�N����wn0�k��|m
po�0�zr�<�n��[���,c+�<��Wz�j\(�~I��a��=��Pf�.�ᡝ�Ɛ
Q����j1���`�ٺˢͱ��1JBM��!2�H9�&XNK�[�xk7������S�ċz�7���d�ma.$:ܟ5(
L�%�-����(ؼz�eJ��d�k?� �}�?����#����W� �}�f�޸��xH&�A���x�7"���5�b�.�5v��I���D���?}�샠g1<jt~��r	�"�1���z���M�s\���}##�K�����ʰ�Dj%%�N�|�,�b���F_c��u;�!��#]c���Ҽ����=���m�κ1���Q5��Mj�QZ���,����-�K4m6[��t_�ì�6�	Xž��"�Y�ͼ��3�I`��N�!�}H8��#M{�"[�Ĵ|D+���ƽ�i�K<�J���R[s|��^���`�˗�U]��u�‚z���Z��]`J�Τ�Opo�WP��{��ү�ʫk�tΚQ;�[7Rnk�Jŗ� n�긼t�tם�zC�.�f��P�yG����c�X�mRndY@���LRyFyO���R�YD�v*=����_��ٱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}((
�@@@ ���L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�T&+PKLH[9��z�.�.lib64/ruby/enc/iso_8859_14.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td```LLQ�tdR�td00 0 ��GNUj�E��~����.����B BE���|�qXe��� #U���� �Ff��, F"!8  4@  (8  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_14rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	90 8 �
@ @ h �� `� 0� �  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�)���x����ff.�f���AWD�H��AVL�5�AUATL�%�USfDL�L9�svI9�sqM�ZL�A�L�XA�ځ���MA��C�,lf��t^A��@tUD��L��G�.I�Á��A��H���E���t�A���L�L9�r�[H)�]D�A\A]A^A_�f���@��A�� ��E��E�j^A���A��D��A��w$A�	�
M��sL��A��I��E��H���{�����������6��������JE��A��A����$����L��A�� I��E��H������fDL��D��I�Á��H�����f�A�� t/E���SL�XA��A���t=�@sE��L������fDA��u/M��D��I�Á��L��A�������f��@SE��L�������D���sA�sH�����A���^���fDM��E��I��L��A������A���M��E��I��L��A������*���M��E��I��L��A���������L��A��I��E��H�����M��E��I��L��A�����������H��I��I�ѺQH�5����,���H���@����I��I�ѿ,�H�5����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�i�����H��H���ISO-8859-14����������������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�0��4�0�4��4��4�0�4���4�4�0�4�0�4�0��4�0�0�0�4�0�4�0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;Lp���h������������������� ���4P���HzRx�$���PFJw�?:*3$"D(���@\���#Dp,����F�H�I �B(�H0�A8��
0D(E BBBJ�����,HL W�����"����B����GNU��
@ �`0 P
E�	
�0 8 ���o`��
\  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_14.so-2.7.8-141.el8.x86_64.debug$��*�7zXZ�ִF!t/���`]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���a�Q�
\�s��7��Ynt8I��v��苔U$�bB+jP܇��?�/��47���Gc��*�&i��':�a��;ٝjU��86�JT��"�r7x�b�*����`�E�V�9�<M���+�I��du�rƢV����2�u�#������B!�B%K��PQ��)r@��9M+��ǥL��H�������j�2aF�E�d��`#���:Yl��i{3�^\{�u���
煳/S��+9M9�yI�����n2QC�xq"���'�7������Q�tc�����RB�k�8Ѹ���)@QT��w��S��͌�сo��'ӡ'7j���$"�̤baJź4FT�
��Kz2�5q�`���k�kd�ԑ�3x#e��Э�X%�!ͬ���4�<XN���>!�m�&�
�мKv�0��YUK��^�����L<s����r�$��2��t?�{k�o�8H�$y�M
�-Y�J�)�!�8i�É��a�m���ɭ�t��� ��s�-�-�S*%	Gi�o�ޞK��-�&��p?�UTME��:�%�0-"��z�
�;����V����?��ע�͢k�p'�*jY� P�狝w�W�W����
)Dw\�0P�.�����8�˒jk8S�������_��ƥ���S�C�[��o�D�ڑ)�A��F��峺?��R{���-�O�����tD|훈B6n͖'�L̫��[K�*�D$��Q�R�17Է�@f
xs]�P"aڳ�ù�w!�
�w)�|4Csnj��D�%-�p� 8߹L՛dd-P�kcN+���������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��\8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
g}��
���� �``L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKLH[bҕ��.�.lib64/ruby/enc/iso_8859_3.sonuȯ��ELF>`
@�'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td@@@LLQ�tdR�td00 0 ��GNUY��,d;�S�(Ӿ�@ BE���|�qX3,\ "U���� �Ee��, F" 8  3@  '8  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_3rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h � �� P�  �  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�	���x����ff.�f���AWD�H��AVAUATL�%�UH�-�SfDL�I9���L9���M�YH�XL�E�	E��A�����A����GE��F�lufA����A��@��E��E��A��A���A��I��I��G�4H��E��L��fDD�E���\���L�A���I9��U���[H)�]D�A\A]A^A_�A�� ��E���SL�XA��A������@sE��L���f�A��@tZA�� tQE��E��A��A���A��i��A����FA��A���I��A��H��E��L���0���I��E��H��A���L�������I��E��H��A�����A���L����f�A��u7I��E��H��A����A���L������f��@SE��L�������E���sA�sH��A���A�����DI��A��H��E��L��A������i���A�I�^���fDI��A��H��E��L��A�i�9���A������.���fDI��A�� H��E��L������I��E��H��A�IL�����f���H��I��I�ѺQH�5����"����H���@����I��I�ѿ"�H�5�����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�I�����H��H���ISO-8859-3��������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4����4���4�4�4�4��4��0����0�0���0�0�0�0��0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������i��������������������������������������������������������������������������������;L����h��������������� @���4����HzRx�$ ���PFJw�?:*3$"DH���@\0���#DpL����F�H�B �B(�H0�H8��
0D(E BBBA����,HL W���"����B�@���GNU��
@ �P  PD�	
�0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_3.so-2.7.8-141.el8.x86_64.debugd3R�7zXZ�ִF!t/���a]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���w+ ʧ���F��T�qi!�n��[z��U�Kn��i9���OK�W���q�I#Ԕ,V�/�;aѽ�W˗�t�S�Sd(W�D��:f\���8�l������Y�Ǥ^��f_t�GT8�7l�'�I�|�q;=�G�ur��0R��Pb��Rmf�o*�#�}avgȭ�䉅�&����8ǥ���HӦ'l��@�	�]��|+!�Hj:����iF_:���.��:�g�v��؁���і�.�i����H�{ml�{�_RCA�%��vcK�� �ϱ���v��O�y�4o�t�lYd��=��ٓ���w�O�۾qfP�Z��)=HW}��S�C���N�����}�uఄP�)y-&�:I�U�B�	���P��s��抌��.5�hz/DpS�|�{EFf0���Fg�s�wVt%2.�u�� �nV-�m��$<�EJ–(��<S�G5����t�-ٞ0`s=�� �U���xljT��j	�h"�����H�׷����bp2
��Z�,���O`Nsg��`�Թ'��E�R�&�"��c��@���-��
���^̣G����`",la{;� [�
`^ėr�{V�D�}�.�3�+���L��ܩZ��0Gb��;z�'��z#�ӳ1��6 ���Y������B���ΜE:�鈌�Q��yc�57��i�n������h�}���c���H�^maZ2���"E]���3w]�@�6�g&N��{۔��7�.dG��<��s�{��
&؊��j�7����D�;@7c[�}V��,����Z�'��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}��
�@ �@@L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�P&+PKLH[��(!��lib64/ruby/enc/gb2312.sonuȯ��ELF>p@�@8	@ �
�
 �
 8@   ��888$$HHH  S�tdHHH  P�tdhhh$$Q�tdR�td�
�
 �
 GNU���ʑ��^��l!e�tCVH�P BE���|�qX)3l  , F"u  �( |  U0__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_gb2312libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5kui	��
  �
 ��
 �
 � � � �  ��H��H��
 H��t��H����5�
 �%�
 ��h��������%�
 DH�=�
 H��
 H9�tH�V
 H��t	�����H�=y
 H�5r
 H)�H��H��H��?H�H�tH�%
 H��t��fD�����=5
 u+UH�=
 H��tH�=� �Y����d����
 ]������w���������H��H���GNU�;$���@����h����zRx�$���� FJw�?:*3$"D����\@��� ��
 ak�
8�
 �
 ���o`p�
� X�	���o8���o�o ���o PGA$3a1EGA$3p109405GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realigngb2312.so-2.7.8-141.el8.x86_64.debug"�v�7zXZ�ִF!t/��
��]?�E�h=��ڊ�2N�$�������Ph�!h�մB]2�3W펁��4��"���>S���-k"���ނ�#b��8k5fW�ig��U�a�d���	��A���f�}�����|c���1�I����V��=��X1�e�l�p#�.�Dg�ZI����<�W��`tr5U��Mҁ-�"�99��:�o�wh�]	H���_�5{�Z��9l4ĩ����"�v�w�=�Ew��{72��Dq�K�$���Η��-�W��d�g|�
��YZmwc��ݥ�4�fH����8�Q
��?2��M����f���yINc��P\XV�;�&��ɘD�-g��S�';˗Ox���?'�u@q��%~rѓ��(\���W:��56�uu65lN�=�Ob� �D�i��I���.쉝�~�*ҋ	�iV&k	c��h�|M���a[}pz�;0�#�ق�Zr״@u�e@���Wzxv��C��EL�?��}w���c\u�T��ʿ ���V��bڅ��36w�7�Z��>���P�͖�x�w��%��httO���^)��¢qa��S����l}fx���o�ٗ�+�ZH�t�I��>�@v�`^��:&����?��Z�7�	��.� �=��{';@��?K�A�0K&���V�۳O{��@77�����o��;W����cL�a0�X,f�&6)����-"��4:��|���o���:�6�so4k� ����i��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.note.gnu.property.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0pp�8���o  E���o88 TXX�^Bhc@@ n``wpp�}88
�HH �hh$���p��
 �
��
 �
��
 �
� ��� � �  �   �(` �,@,l#PKLH[<	�X�.�.lib64/ruby/enc/iso_8859_7.sonuȯ��ELF>`
@x'@8	@00 00 0  �� � ��888$$  S�td  P�td���LLQ�tdR�td00 0 ��GNU������g�"I���.S���@ ABE���|7,\�qX "U���� �Ee��, F" 8  3@  �P
'8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_7rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h �
�  � 0
� 
� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H������H��ff.�@��1����w��H�Y���x����ff.�f���AUD�H��ATUH�-*SH�"�ME��F�$kfA����A��@t{F�T-A��fDH��D�P�E��A���A���EE�L�L9���I9���M�ZL�E�E��A���u�A�� t~A��A������E��A���A���t�A��@t�A�� �x���A��A���tpE��#���A��vsA���tsA��E�b�A�� A��EF��6���fDA��A������A��A������[H)�]D�A\A]�A��������DA��%����A���������@��H��I��I��1�QH�5����"���H��������I��I�ѿ"1�H�5V�����H�5 H�=������H��H���ISO-8859-7��������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�������������������4��4�4�4��4��4�4�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������������������������������ܷ��߻��������������������������������������������������������������;L���h`����`��������������@���p���$����8zRx�$����PFJw�?:*3$"D���@\����!p���#4���|F�H�A �H(�2
 DEBD�0���)HI W�D����P���GNU��
@ �
 0

P�D�	
h
0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	u
GA$3p1094 g
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSiso_8859_7.so-2.7.8-141.el8.x86_64.debug����7zXZ�ִF!t/���[]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���۱$�gr���`���Gk�?�X�����3[1������ʧ���R5v� [
;��H���N��1"��R^xd��j��V�,�$����]�N4Lҟ�� 5�
�S$W�>~�_����uۢ�խ�H���D���E���u�hD�y82��@�J�U+�:��
��)�'��ݬ�`]Y+�4��v�(-�PM�����|��sw�=��օuZ����!&��>��������r�=��0�x���K��>q����z��]kd��{�6(q2zD֛��N�LGG��UN�3!��`r�u-%b��T`�h
�n�6���˯e�l��)�|q0z}���_(�J4��bF�;_�h��:o�Ig5	7q�g+<E�8C�z�ҍ	�.i��@���&�h���SP�:�m�Iv�rC�kC��C[c�u�/p��wzH/������M�C$dn�-3�T0=���է�V�a@+�T�튩E�wb鸒�bt�e��8�Я	 ��pN2`y��l� l�SF�6Œ���hC2�u�pPR�S@C�?���7@��+��� Ñ|d�ȑB�@E�sF�v��7��lG��?�F����5h<���Le-_����7��ݑLc޵��t	l�7
���_�P��2��,۫��G���1Xۜۚ��x!}�vm^�en���/6�#|���v��
��t�m����v
��ǂ5ޮ�WK��k-
�P�GY��9@_.dC���Z��tm��*y�+��ߠ�b����>
k碿!9��P&n�g��7�?H����y���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
}h
h

��
�
@ ���L�� �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�H&+PKLH[ک�H?H?lib64/ruby/enc/shift_jis.sonuȯ��ELF>P@8@8	@� �  �,�, �, `h �-�- �- ��888$$p p p   S�tdp p p   P�td�����Q�tdR�td�,�, �, GNUf�jf��4�	J��t�����@0	%��BE���|�qXU gQa +����, }F"B�P0 �X0 �P0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeOnigEncodingASCIIonigenc_with_ascii_strnicmponigenc_minimum_property_name_to_ctypeonigenc_apply_all_case_fold_with_mapOnigEncAsciiToLowerCaseTableonigenc_ascii_get_case_fold_codes_by_stronig_is_in_code_rangeOnigEncAsciiCtypeTableInit_shift_jisrb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��, �, �- -  - ((- 0- �8- �@- PH- 0`- h- @�- p�- P�- ��- ��- 0�- `�- P
�- ��- 
�- ��- �x- �- �/ �/ �/ �/ �/ 	�/ 
�/ 0  0 (0 00 
80 @0 H0 ��H��H��% H��t��H����5�% �%�% ��h�������h��������h�������h�������h�������h�������h��������%-% D���%%% D���%% D���%% D���%
% D���%% D���%�$ DH�=�$ H��$ H9�tH�f$ H��t	�����H�=�$ H�5�$ H)�H��H��H��?H�H�tH�E$ H��t��fD�����=�$ u+UH�="$ H��tH�=! �Y����d����]$ ]������w�������H�"H�
��x)L�GL9�t0�OH��HЀ<������D@��fD��������D��f�H�y
��������L��I�H�Ѕ�x$L�OL9�tH���L��<9�u
L9�v�����H�FH����t��H��H�F�.@�:H)��ff.����H���<����������v7������wH�  H��H�1���������f.�������f.���I��AWI��AVI)�AUE��I��ATI�F�UH��SH��H�����6�EH�
���1H���D���wkL�
4��M�$YE��xXH�AI�A2$���uBH�=�! J�T5L��H��������u'C�<4u L�
�A�DYH��[]A\A]A^A_�@H��L��H��L��[]A\A]A^A_���@����I��I�ѿS1�H�5�����������wHc�H�z�p�������E������w@��H�U
�<8�%n�����øo���Í��}����v%��a|����v���{������ v�@�G �@�G!�@1ҁ�N��D0����H�>���xH��  ���H��H��I��L��I��H���D������m���I�RL���t
��A�
H��I�RL)҈��Hc�I�fD��ATI��A��I��UL��L��SH��L��H���������A�2H����H�2����I�zH9���A�rH��HЀ<0�@��@���tv���������}����vM��A|���������{���������{������9�tl[]A�C�A�3A\A�C��Q�9�u�[�]A�3A�CA\A�S�1����@�ƍt6��o���fDI��H��D��[L��]L��A\���[1�]A\�f�H�I	�4����0�����Q��9��\���1�������T��k���@��H��H9���D�H�
�B�<t9�N�L�
�H�F�A�<���H�L�@�A�<�~L��H9�u�D�L�H�HK�<��x1H9�t<H���PLǀ<�u@H�HH9�rH)�H��H�1�fDH�P����HE���H�YB����Hc�H���H�H��H�������w��v:����������	��������w0H�I H��H�����H�� �����x����������f.���H�5E H�=������H��H���Shift_JIS













































































































������
�"hanlatingreekhiraganakatakanacyrillic@�`�p������������փAZaz`�y�����W�W���r�����@�������@�~����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`���a���b���c���d���e���f���g���h���i���j���k���l���m���n���o���p���q���r���s���t���u���v���w���x���y�����������������ƒ��Ã��ă��Ń��ƃ��ǃ��ȃ��Ƀ��ʃ��˃��̃��̓��΃��σ��Ѓ��у��҃��Ӄ��ԃ��Ճ��փ@�p�A�q�B�r�C�s�D�t�E�u�F�v�G�w�H�x�I�y�J�z�K�{�L�|�M�}�N�~�O���P���Q���R���S���T���U���V���W���X���Y���Z���[���\���]���^���_���`���;������0��������$ �8p�LP�p����������P��d0�xzRx�$���FJw�?:*3$"D(�p\@�]p��?���%������F\���I�E�E �H(�E0�D8�D@�
8A0A(B BBBED8J0A(B BBB ��4��PH��H\ �jPp|�lF�J�G ��
ANLH
FMEb
DEEA
CBJ�����T�f���GNU��- (��P0@pP��0`P
�
�����8

(�, �, ���o`x�
�0 ��	��	���o����o�o`���o�- p
�
�
�
�
�
�
GA$3a18
5GA$3p1094'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYmGA+GLIBCXX_ASSERTIONSshift_jis.so-2.7.8-141.el8.x86_64.debug��7zXZ�ִF!t/��7�]?�E�h=��ڊ�2N�a�Ӈ�[��͎�v��B��3[a��xvY�Tݟ(�TR�A�_
v�no�rvo��\H���nD��Ŭs�JkC�+��	�n���|�I�=�-t����
@�x�~�z�'��x��?�du���`�t�6����7�Z�K�V��Z.d)�P�4<5�U�U�8�{B�]�1mCx�̱��g��8���Xc�APS�z�|�a�IKv.�߮��I�іC�;5��M�
8AB\����{�v���,�O�jc4�J�=0��nMB�$�h=���޳8�eڣp�&����������I9��#��-�
o�F���4�X�隺�F'o��snB��pM�֢r�3'`�R�0�1��{��{10n18n�̺�)gF��Әկ�6���e��
�P�(�_RW+}6�&r��h��k@�����$
���r��7�=b��,�"�U����y���?��7m��"By\ne�TZ��r�U�1�|y� �.��J�s��S�@Kr�ۥ���o��Q�7�v9�z��<�mƸ���s��d΍�E�o7��g�
@c4��U�t�V�d&I�s�P[@^�ݝvq�S�"y*j�>f��|�I��c(���
�qX���b��ʤ���t�����~:�M���21;b4�	W�U��Η�Dʍ�P�cꙜ=�P�S��=WO3�^̳ۏx�x01�밹���*���k���s.���HB�˙�qU�龜q�\ߪe�����\7G��#/�Ì��Un��Y���ﮇ7<���I��ZڗԐI�����e�#S�е�|�����u�u�l��>��cZ�	��J1�#�)�?s
5l���*rPɖ_|�ҮjWX/�P�O��5wb`�H�F&�A�ߕ�;�c�Fu�S)i͝$=#F�ϸ�{W�n��/��Mh�U�^���)�	��s����/�!В��;bS?�M������ \�5R��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0xx�8���o``(E���o�� T���^B�	�	�h8
8
c`
`
�n�
�
pwPP�}((
�@@� �����pp�p p  ��, �,��, �,�- -� ��- �-���/ �/8�0 0P�P0 P0�X0`P0D
�2,�2�6+PKLH[\n�\h.h.lib64/ruby/enc/trans/cesu_8.sonuȯ��ELF>�@('@8	@�
�
 �� � ��   ��888$$�
�
�
  S�td�
�
�
  P�td���44Q�tdR�td�� � ppGNU*�0B]K��fcw!��O�lp�@  �	BE���|�qX�r a , F"�(  �0  �(  Up$__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_cesu_8rb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�� p� 0� � � �� �� �	� �8 �` �h �x �	� �� �� � � �      ��H��H�� H��t��H����5� �%� ��h�������h���������%m D���%e DH�=a H�Z H9�tH� H��t	�����H�=1 H�5* H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=N �Y����d����� ]������w�������F�V����
%��	��V��?	��V����	������������?�ʀ�Q�ƒ�?���Ȁ��?�A��ʀ�Q�f�����V�������%	��V��?	��V���A����	�-����ʠ�Q���
��?�ʀ�Q�ƒ�?���Ȁ���A��ʰ�Q����H��H�=� ����H�=5 H��������H��H���UTF-8CESU-8B(0d8@vHPX`yh t�|�8������ �����������������������;0����L���t��������������zRx�$@���0FJw�?:*3$"DH��� \���npl���x����$HWGNU�p0� ����	��>�����	��>�x��P
�� � ���o`��
�  0 ��	���oh���o�oP���o
 ��GA$3a1P�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONScesu_8.so-2.7.8-141.el8.x86_64.debug�l:��7zXZ�ִF!t/��g]?�E�h=��ڊ�2N���n ��(	�c�xc��y8�3 \���89a
-�A77�i4��V%ƙ�d�_d�+ɛ�3~z�X��� D7�#��Ml�ۍ�G�3?$����Q|G���׵�=���&iG��}}V�gcL��9�8]9
�,�t�q�4�7��v�z�*��g���/g�!=;|��	��x�%<�CIH�V_z���A������o�tR�H��"{�TάeXN���ft|9��%)�|�"T�a�qq?v]u�MZ
k���P���S*����v).�}}3!m��*�N[��%--��f1�v�Mq��Kؼ�8�'6'��1m��*R)���Z�2�g��3�bs[�l�,��ĥ4�
|(	�ve����VO���i�h؆��2���d��(o<�le�a�,|��bNIo8���֘g������-n�q��I���u7������J��2R�2�}ʖy��
3WZ��.��V�>b���A�&c,�Wc�i$����En�f�Mq�V�
K�-]���s�^�JtT䝂�]Ez�c�Q;O�&P�Y�p�I�4vU؛_�h�k4[}bׁ
�P
J�2��@jӆGV�ɹa
��CFr)N&�n��_'=��C�?�,T7�-^Y��g��H��;��zk�{o&��Z�PR���)r�Ս�&��s�_	o�g3`Id
�;���n$��k$��M�@@֓�w��D�N�а�H��\��I"B��)٣Y߁���8F/�J(���d⯑#���pˡQg�4S�z������:��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T���^B  0hPPcpp0n�� w���}��
��� ���4�

���
�
 �� ��� ��� �` � ��� � �   (�(  ( �0 `( D
l",�"`�%+PKLH[��#�-�-lib64/ruby/enc/trans/ebcdic.sonuȯ��ELF>�@�&@8	@ �� � ��   ��888$$���  S�td���  P�tdDDD$$Q�tdR�td�� � ppGNU���f�����@{jq߶��@$	BE���|S���qX a , F"�(  �0  UP$�(  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_ebcdicrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�� @� � � � �� �� @� �` �h �x @� �� � � �      ��H��H�� H��t��H����5� �%� ��h�������h���������%� D���%� DH�=� H�� H9�tH�6 H��t	�����H�=a H�5Z H)�H��H��H��?H�H�tH� H��t��fD�����= u+UH�=� H��tH�=~ �Y����d����� ]������w������H��H�= ����H�=U H�������H��H���ISO-8859-1IBM037�	��������������
���������������� ����������.<(+|&���������!$*);�-/���������,%_>?���������`:#@'="�abcdefghi�������jklmnopqr�������~stuvwxyz������^��������[]����{ABCDEFGHI������}JKLMNOPQR������\�STUVWXYZ������0123456789������7-./%<=2&?'@Z{[lP}M]\Nk`Ka����������z^L~no|������������������������������my���������������������������O�� !"#$()*+,	
01345689:;>�A�J���j�����_������������������debfcg�htqrsxuvw�i�������������YDEBFCG�HTQRSXUVW�I������p���������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������������������������������������������������������; ����<,���d���|zRx�$����0FJw�?:*3$"D���� \����$HWGNU�@� ��p@�����@��x�� 
t� � ���o`��
�  0��h	���oh���o�oP���o P`GA$3a1 �GA$3p1094PtGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignebcdic.so-2.7.8-141.el8.x86_64.debug�-��7zXZ�ִF!t/��]?�E�h=��ڊ�2N����n ��)�I���� �Q�{�H[5@��]��{���mY3�>А��뀙n�8�1�/#�D��K!CB�%�v�=-���(���~��Q �ט���@�s�q���^�;�q#E�FR�,U�y�(@k:���O
�4�����_��TOG�%�5{�lR����l��r��,�0��pCN��K��OtQτ��3��@�t�&�j�X�5��I�N���)��Q�~�ȧ�Mah�����u$�D����W�� �g|�x}�V�Ƽ�2�B�pͱϖ���.�/y��GFtJ>e�h���d�wHO�#?r8��N���I;m�">�wl�rΗ�%!3�6W:���p)]
��@��!vX��T,D�w�Ǹ��yЮ����H�r�JE�/&���x.I+S��F�ôT �|�P�M�r�#��ޫX-���]~��C��ν��~�P{�R����iO�g�T�:��G~U�X4�T�;�4Ǝ��1�ئ}b[6��f
�,֩��*!ħ�^�3�2Lc,����*I��g�%>�oZ�&�#��Ts���Ą2�T��R�찍�V�'"!]���U>�V��UQ��CU2]V���Й�g=�წ~�]Ć��ɉ��>]�n����!��U��:��*�V�nV9�us��[G��Wr�}i�Z�������%�&�#~G�:�A��m�j{�~8�1�>jx�D��0�v��>��@�_�����ñ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T��h^B��0h  c@@0npp w���}tt
���� �DD$�hht��� �� ��� ��� �` � ��� � �   (�(  ( �0 `( �
",H"D�%+PKLH[pq��.�.lib64/ruby/enc/trans/escape.sonuȯ��ELF>�@@'@8	@00 PP P ��   ��888$$  S�td  P�td   <<Q�tdR�tdPP P ��GNU���,"��;&��Z3H�rl5�B 	BE���|�qX	-	 a , F"�(  �0  �(  U�<__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_escaperb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P `X  ` ` � �	� @	� 
� �	� p� p� � �  �	( O	8 
H �	� �	� g	� 
� �	` �	h w	x 
� �	� � � �      ��H��H�� H��t��H����5� �%� ��h�������h���������%} D���%u DH�=q H�j H9�tH� H��t	�����H�=A H�5: H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�= �Y����d����� ]������w�������1��fD���?�u�H����A�"���ff.�����?�u�"�H���"��ff.�@��H��H�=q ���H�=� ���H�= ���H�=m H���t�����H��H���xml_attr_quotexml_attr_content_escapexml_text_escapeamp_escape�@�@��у���@��у(D�&amp;�&lt;&gt;�&quot;�;<@���Xp����P����`��������������zRx�$��0FJw�?:*3$"D�� \����
p����$����!���<HoGNU�` ` �	@	H
�	pp���	O	<
�	�	g	 
�	�	w	
�	x��@
	P X ���o`��
�  0��	���oh���o�oP���o p�GA$3a1@)	GA$3p1094p	GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFYpzGA+GLIBCXX_ASSERTIONSescape.so-2.7.8-141.el8.x86_64.debugHB3�7zXZ�ִF!t/���5]?�E�h=��ڊ�2N����^ �޶���;e,"����ƀ�V��Ï�,T�b��Lߦ[�l	}a,|\���63���<�F�f51�u����jF��JU1`5����;z���a���έ��|��&#|@�MO�
N�����4�w-������7�d�iK7�7-�	��E1	:εv̷�l,ME֊�lߐ��?2�� �ʔ��8����Ïe��-@������5w�8�Us�sTv��&V~J��{��ӎӊ�o0���#���<Ä3[�)zr�ϣE��J��Sx�{�hoۋ��ߥR����u�^ǭ�.��J�*�/ ��wJ��˗���m{E)�E�!W�P�C�6�S�"����7x�3Hͱ��.�awدэ��>c�RWr��H�ˌG����R��k����L��a��q����=�8�Nx�:�1��T�k���<�[��b�' ��\Ҟ-c덫�bx�����ʍ�����&�r��b��U�g��Sǂ�I�S�׼��a�W]����ZF�qu֪5gf�h�y!���bR����n�O~�B�u�S�i�#�w:����c�����5���,?O� ��5T�T�
�U�֞�XV�'�O{��ʝ"q�8=��G�BR:2m�C]���]b�i�z�&r��m��p7�O��$��-<�f%��v�*p���P55*��B������=r��l���B�;��φP6"��Nx�+�l��o��D:�րAdA���0]kp=+�}��1��3v�t��<~�m�3c)դQ�&����4r��ls�1��7�L\�?�����>�V	��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T���^B0h@@c``0n�� w��l}		
�@	@	� �  <�``�� �P P�X X�` `� � ��� � �   (�(  ( �0 `( D
l",�"x&+PKLH[E�q��#lib64/ruby/enc/trans/single_byte.sonuȯ��ELF>�-@ж@8	@h`h` �k�k!�k!�D�D ��!�!��888$$H`H`H`  S�tdH`H`H`  P�td�_�_�_$$Q�tdR�td�k�k!�k!pDpDGNU��s&���ʏ�@��SkޤQ�` 	BE���|�qXM�e� f , F"�(�!�0�!�(�!UP.__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_single_byterb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��k!@.�k!.�k!�k!�k!�3�k!�3�k!���k!�5`l!�3hl!�3xl!���l!�5m!�3m!�3m!��(m!�5�m!�3�m!�3�m!���m!�5@n!�3Hn!�3Xn!��hn!�5�n!�3�n!�3�n!��o!�5�o!�3�o!�3�o!���o!�5 p!�3(p!�38p!��Hp!�5�p!�3�p!�3�p!���p!�5`q!�3hq!�3xq!���q!�5r!�3r!�3r!��(r!�5�r!�3�r!�3�r!���r!�5@s!�3Hs!�3Xs!��hs!�5�s!�3�s!�3�s!��t!�5�t!�3�t!�3�t!���t!�5 u!�3(u!�38u!��Hu!�5�u!�3�u!�3�u!���u!�5`v!�3hv!�3xv!���v!�5w!�3w!�3w!��(w!�5�w!�3�w!�3�w!���w!�5@x!�3Hx!�3Xx!��hx!�5�x!�3�x!�3�x!��y!�5�y!�3�y!�3�y!���y!�5 z!�3(z!�38z!��Hz!�5�z!�3�z!�3�z!���z!�5`{!�3h{!�3x{!���{!�5|!�3|!�3|!��(|!�5�|!�3�|!�3�|!���|!�5@}!�3H}!4X}!��h}!�5�}!4�}!�3�}!��~!�5�~!�3�~!4�~!���~!�5 !4(!�38!��H!�5�!�3�!4�!���!�5`�!4h�!�3x�!����!�5�!�3�!4�!��(�!�5��!4��!�3��!��ȁ!�5@�!�3H�! 4X�!��h�!�5�! 4�!�3��!���!�5��!�3��!'4��!����!�5 �!'4(�!�38�!��H�!�5��!�3Ȅ!.4؄!���!�5`�!.4h�!�3x�!����!�5�!�3�!54�!��(�!�5��!54��!�3��!��Ȇ!�5@�!�3H�!<4X�!��h�!�5�!<4�!�3��!���!�5��!�3��!C4��!����!�5 �!C4(�!�38�!��H�!�5��!�3ȉ!J4؉!���!�5`�!J4h�!�3x�!����!�5�!�3�!Q4�!��(�!�5��!Q4��!�3��!��ȋ!�5@�!�3H�!X4X�!��h�!�5�!X4�!�3��!���!�5��!�3��!_4��!����!�5 �!_4(�!�38�!��H�!�5��!�3Ȏ!l4؎!���!�5`�!l4h�!�3x�!����!�5�!�3�!y4�!��(�!�5��!y4��!�3��!��Ȑ!�5@�!�3H�!�4X�!��h�!�5�!�4�!�3��!���!�5��!�3��!�4��!����!�5 �!�4(�!�38�!��H�!�5��!�3ȓ!�4ؓ!���!�5`�!�4h�!�3x�!����!�5�!�3�!�4�!��(�!�5��!�4��!�3��!��ȕ!�5@�!�3H�!�4X�!��h�!�5�!�4�!�3��!���!�5��!�3��!�4��!����!�5 �!�4(�!�38�!��H�!�5��!�3Ș!�4ؘ!���!�5`�!�4h�!�3x�!����!�5�!�3�!�4�!��(�!�5��!�4��!�3��!��Ț!�5@�!�3H�!�4X�!��h�!�5�!�4�!�3��!���!�5��!�3��!�4��!����!�5 �!�4(�!�38�!��H�!�5��!�3ȝ!5؝!���!�5`�!5h�!�3x�!����!�5�!�3�!5�!��(�!�5��!5��!�3��!��ȟ!�5@�!�3H�!5X�!��h�!�5�!5�!�3��!���!�5��!�3��!&5��!����!�5 �!&5(�!�38�!��H�!�5��!�3Ȣ!15آ!���!�5`�!15h�!�3x�!����!�5�!�3�!<5�!��(�!�5��!<5��!�3��!��Ȥ!�5@�!�3H�!G5X�!��h�!�5�!G5�!�3��!���!�5��!�3��!R5��!����!�5 �!R5(�!�38�!��H�!�5��!�3ȧ!]5ا!���!�5`�!]5h�!�3x�!����!�5�!�3�!h5�!��(�!�5��!h5��!�3��!��ȩ!�5@�!�3H�!s5X�!��h�!�5�!s5�!�3��!���!�5��!�3��!~5��!����!�5 �!~5(�!�38�!��H�!�5��!�3Ȭ!�5ج!���!�5`�!�5h�!�3x�!����!�5�!�!�!��!�! �!��H��H���!H��t��H����5‚!�%Â!��h�������h���������%��!D���%��!DH�=��!H���!H9�tH�6�!H��t	�����H�=a�!H�5Z�!H)�H��H��H��?H�H�tH��!H��t��fD�����=�!u+UH�=�!H��tH�=~=!�Y����d������!]������w������H��H�=!����H�=U~!����H�=�}!��H�=�|!���H�=Q|!����H�=�{!����H�=�z!����H�=Mz!���H�=�y!���H�=�x!���H�=Ix!���H�=�w!���H�=�v!�|���H�=Ev!�p���H�=�u!�d���H�=�t!�X���H�=At!�L���H�=�s!�@���H�=�r!�4���H�==r!�(���H�=�q!����H�=�p!����H�=9p!����H�=�o!���H�=�n!���H�=5n!���H�=�m!����H�=�l!����H�=1l!���H�=�k!���H�=�j!���H�=-j!���H�=�i!���H�=�h!���H�=)h!�t���H�=}g!�h���H�=�f!�\���H�=%f!�P���H�=ye!�D���H�=�d!�8���H�=!d!�,���H�=uc!� ���H�=�b!����H�=b!����H�=qa!���H�=�`!��H�=`!���H�=m_!����H�=�^!����H�=^!���H�=i]!���H�=�\!���H�=\!���H�=e[!���H�=�Z!���H�=
Z!�x���H�=aY!�l���H�=�X!�`���H�=	X!�T���H�=]W!�H���H�=�V!�<���H�=V!�0���H�=YU!�$���H�=�T!����H�=T!����H�=US!����H�=�R!��H�=�Q!���H�=QQ!����H�=�P!����H�=�O!����H�=MO!���H�=�N!���H�=�M!���H�=IM!���H�=�L!���H�=�K!�|���H�=EK!�p���H�=�J!�d���H�=�I!�X���H�=AI!�L���H�=�H!�@���H�=�G!�4���H�==G!�(���H�=�F!����H�=�E!����H�=9E!����H�=�D!���H�=�C!���H�=5C!���H�=�B!����H�=�A!����H�=1A!���H�=�@!���H�=�?!���H�=-?!���H�=�>!���H�=�=!���H�=)=!�t���H�=}<!�h���H�=�;!�\���H�=%;!�P���H�=y:!�D���H�=�9!�8���H�=!9!�,���H�=u8!H��������H��H���UTF-8CP855CP852CP850TIS-620KOI8-RKOI8-UMACUKRAINEMACTURKISHMACROMANIAMACROMANMACICELANDMACGREEKMACCYRILLICMACCROATIANIBM869IBM866IBM865IBM863IBM862IBM861IBM860IBM857IBM855IBM852IBM737IBM775IBM437WINDOWS-1257WINDOWS-1256WINDOWS-1255WINDOWS-1254WINDOWS-1253WINDOWS-1252WINDOWS-1251WINDOWS-1250WINDOWS-874ISO-8859-16ISO-8859-15ISO-8859-14ISO-8859-13ISO-8859-11ISO-8859-10ISO-8859-9ISO-8859-8ISO-8859-7ISO-8859-6ISO-8859-5ISO-8859-4ISO-8859-3ISO-8859-2ISO-8859-1ASCII-8BITUS-ASCII	�� � � 0@�@:@(08HPXL`	C�€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿE�����������������������������������������������������������������G�����������������������������������������������������������������G���(08HPX��€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙E����������������������������������	��������	���������������������������������	��������������������<	��������������������������������F�	������,	�4�$	H	(08HPX�P	€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤	Ĥ§¨İŞĞĴ­Ż°ħ²³´µĥ·¸ışğĵ½żÀÁÂÄĊĈÇÈÉÊËÌÍÎÏÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâäċĉçèéêëìíîïñòóôġö÷ĝùúûüŭŝ˙��	���������������������������������	������������������	��������������������������������������������	L	������������������G	
	���������	p
	���	�
D
h
�
�
(08HPX��
€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙E�
���������������������������������	��������
	�������������������������������������O
���	��������������������������
\	���������������������
�	���8�T�0L(08HPX�T€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџE����������������������������������	��W�	���������������������������������������������������������������<����������������	���������������D	���_�4<�(0�8HPX��€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ 	¤،­؛؟ءآأؤإئابةتثجحخدذرزسشصضطظعغـفقكلمنهوىيًٌٍَُِّْ�
0���������������������������������	����	������������������������������(�������������������	� �(08HPX`€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ‘’£€₯¦§¨©ͺ«¬­	―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώW@���������������������������������	���������������YD	��	���������������������������������������������������������(���������������		���ad	����x��� \(0�8HPX'�€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ 	¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾‗אבגדהוזחטיךכלםמןנסעףפץצקרשת‎‏����������������������������������	��������������������������� p 	��bp!	�����������������������������!	����""( "h!�!�!(0,"8HPXj4"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿEp"����������������	������������������������������������������a|$	�����t%	����%�l%�%�%(08HPX'�%€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸE�%���������������������������������	�����'	���������������������������������������������`�(��	��������������������������
\)	��������������������)	��0*<*(D*�(T)�)(*(0P*8HPX&X*€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู	฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛�*���������������������������������	�,	�����������������������������������������������������������a-����������������������������	�..�.��.-�.08HPX�.€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’E�.���������������������������������	������������������������0	���������������������@�1��	�����������������������<2	��������������������������2	����343(<3�142�23(0H38HPX&P3€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿE�3���������������������������������	������H�5����������������	�������������������������������������������H6	�����@7	����� `7	������P �7��	������� �7������	� �7	��!8�7�7�78X!8@687X7|7(4808HPX�!<8€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿE|8������������������������������������	���������������������"�:	��������"x;	�#�;�;W#�;p;��;(0�;8HPX�#�;€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿE<���������������������������������	����������$>���	��������������������������������������������$�>	������������%�?	���������������������V%�?	�����%8@	���%X@h@�;�p@�>�?�?0@P@(0�@8HPX&�@€	…‘’“”•–— กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛'�@	�(`B	��������W(tB	�#�B�B�B��BlB�.0�B8HPX�(�B€	‚„…†‡‰Š‹ŚŤŽŹ‘’“”•–—™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙�)C	�������������������*E	��������������������XE	��������������������������������F�E	������HF	����������������*lF	�+�F�F�B�FX+�FPE4�E@FdF(0�F8HPX�+�FЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—	™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяE,G	����������������,8I	����������������������������������������������������������������I����������������	����������������J	���,K	�#,K	��-@K�F8KPKX+XK|I�JK$K(0lK8HPXW-tK€	‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿN.�K	��������������������������������P/�M	��������"@N	��/lN	���/�N8N�dNxN�N(0�F8HPX0�N€	‚ƒ„…†‡‰‹‘’“”•–—™› ΅Ά£¤¥¦§¨©«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ
1�N	���������������������2�P	���������������������������������������������������������Q	����������������Q2�QDR�B�FX+LRQxN�Q\(0`R8HPX�2hR€	‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ�3�R	��������4�T8Nl%�%�TxN�N(0�F8HPX�4�T€	‚ƒ„…†‡ˆ‰‹‘’“”•–—˜™› ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״אבגדהוזחטיךכלםמןנסעףפץצקרשת‎‏�5U	������������������������������6�V	����������������	7LW����	��������������������������������K7�W	������������������7<X	���7�X�X�X�FX+�X	��������������������������������������������8�X����	����������������������S8(Y YdY�8lYDW�!xN�N�W4X(0�X8|YHPX�8�Y€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ےE�Y	�����������������������������9�[	���������������:\\	��R:�\�:,K	�������������������������������\�������������������	���:L]	��������;�]	��Z;�]	��������������������;�]L^�B�FX+T^T\�\�\xN�\D]�]�]�](0h^8HPX�;p^€	‚„…†‡‰‹¨ˇ¸‘’“”•–—™›¯˛ ¢£¤¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙�<�^	����������������������������=�`	��� aa42�234a(0�F8HPX�+<aÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ E�a	������������������>�c	�����������������������������������[>�c	��/�d	���������>�d�	����>�d	�!?�d	�c?�d	�����?e	�����?,e	���)@Le�	����������k@he	������������������������������@�e�	���������@(f�de$eDe`e�e fTf1A\f�cxd�d�d�d(0�f8HPXsA�fĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ E�f	�����������������������jB�h	���������������������@Hi��	������������������������i	�������������������������j	�����j	��B�j	������������B�j�j�j�e�jTf0C�j@i�ij�j(0k8HPX& kΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ E`k	�����rClm	��C�m	�����������������������������������������������������C�m���������������	�n	��8D�n	���zD�n�d�n�n�e fTf�Do�m�m|n�n(0$o8HPX�D,oÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ Elo	������������Exq	���������������������������������q	��������������������@r	��������������������������������F�r	������0s�	������7FTs�e�jxsyF�s�q8r�r(sLs(0�s8HPX�+�sђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ E�s	�������F�u	���������������������������������������������������������������v����������������	���������������w	��w�w�e�jxs�F�wvw�w(0�w8HPX��wÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ	ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ×ÚÛÙìÿ¯´­±¾¶§÷¸°¨·¹³²■ ?Gx	��������������������������������P/z����������������	������������������������������������������a�z	������{	����{�z�{�{�{(0�s8HPX&�{ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ E|	�����������������AH$~����	�����������������������������������Hx~	���H �de$eDe0�e fTf1A8p~�d�d(0`8HPX�DhÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ E�	��������������I��	���������������������������������������II������d�d�d(0�f8HPXsA��אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ E�	���������I��	����������������������������(��c ��d�d�d��(0�f8HPX�I��ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ E�	������������������������J���	�����������������������������Kd�	�HK����d$eDe`e�e fTf�K�\���d�d�d(0(�8HPXsA0�ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ Et�	�����������������K��	�������������������������������������LЋȋl��d�d�d(0�f8HPXsAt�АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ E��	����PLĎ	�����������������������������������������������������L�����������������	�����Lď�d$��n�e fTfM,�܎���(0H�8HPX�P�	Ά·¬¦‘’Έ―ΉΊΪΌΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ XM��	����������������ZNx�	���������������������������������������������������������Ȓ���������������	��	���a���e�jxs�N �������(08�8HPX�N@�ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊	©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸ÊæˇE|�	������������������������O������������������	����������������������������������������P�	�������YP�	�������P�	��/8�	�����PL��	(l�	��������������Q��	�_Ș	��aQܘ	��������Q�	�����Q �	�'R@���Ԙ��8�L�iRT��ܗ�0�D�d�x�(0t�8HPX�R|�АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤Eș	���������������Sԛ	��C�	���������������������������������������������������������������0�����������������	���������������8�	�����������S��	��-��	����&T���(�8�hT0��(�D�0���(0H�8HPX�TP�Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ	E��	�������������������U��	����������������������U��	�%V\�	���������������������������������������������������������gVp����������������	d�	�����������V��	�+���8��V���T�h�\���(0�8HPX-W�ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ	ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇE\�	������������������������$Xh������������������������	����������������������������������������Gإ	�fX�	����X��	���������X��	(D�	�����������,YX�	��������Q����Ԙ���8�L�iR��Хܦ��D�<�P�(0�8HPX�R�ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ	ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇE4�����������������	�����������������������������������������nY@�	����������������*4�x�Ԙ���8�L�iR��	���Y����#��Х,���D�<�P�(0��8̫HPX�YԫÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ	ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇE$�������	������������������������������������������������Z0�	���+[�	�������m[0�Х�(�T�D�<�P�(0��8HPX�R\�ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ	ÒÚÛÙˆ˜¯˘˙˚¸˝˛ˇ�[��	������������������������\��	������	������\<�	�������������5]`������8�L�w]���,�4�X�D�<�P�(0��8HPX�RȲАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤E�	��������������] �	���,d�	����]|�����8�hT��\�(�D�0���t�(0��8HPX=^��─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪE�	�����4_��C�d	����������������������������������������������������v_8�����������������	�����_�	���,x�	��8D��	���zD��	���HĹ�	����������k@ܹ	����������������������_��	���������@|�����Թ�t���<`��(�0��p���(0к8HPX~`غ─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪE�	�������������������������������������������������ua(�����������������	��a��	������������������������������@P�����Թ�̾��<`Ծ(�0��H�(0�8HPX�a��	กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛�b<��.08HPXL��ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ E�	��������������������������������P/������������������������������������������������������������������Gp�	�fX|�	�HK�����e�jxs�N��h�t����d(0��8HPX�c���������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���	

 !"#$%&'()*+,-./0123456789:;<=>?@�			
��	

 !"""#""$%""""&""'"""(""")"""""""��	

 ��	

��	

 !���												
		
�	

 !"#$%&'()*+,-.&/0123456789:;<=&>?@A&BCDEFGHIJKLM&NOPQRSTUVWXYZ[\]^_&`abcdefghijk&lmnopqrstuvwxyz��	

 !""#$""%&""""'""(")*+,"-.""""/""��	

 !"#$%&'()*+,-./0��	

��	����	

 !"""#""$%""""&"'(""")"""*"""""""��	

 !"#$%&��	

��	

����	

 !""""""#"""""$""""""""""""""""""��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

�����	
�	

 !"""#"""""""$%"""""""""""""&"""'"()*+,-./0123456789:;<=>?@A"""""BCDEFGHIJKLMNOPQRST"""""""""""""��	

 !"""#""""""""$""""""""""""""""""��	

��	

�	


�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQR/STUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~/��	

 !""#""$%&'"()*""+,-."""/"""0"1""����	

 !"#$%&'()*+,-./0123456789��	

�������	

�	

 !"#$%&'()*+,-./0123456789:;<=>?""""""""""""""""""""""""""""""""@ABCDEFGHIJKLMNOPQRSTUVWXYZ[""\]"��	

 !"#$%&'()*"+,-./0123456789":;<="����	

�����	
��	

 !"#$%&'()*+,-./0123456789:;�����	
��	

 !""""""#"""""$""%""""""&""""""""��	

 !"#$%&'()*+,-.��	

���	

�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_`abcdefghijklmnopqrstuvwxy\\\\��	

 !"""""""""""""""""""""""""""""""��	

 !"#$%&'()*+,-./0123456789:;<��	

���	��	

 !"#$%"&'"(")*+,"-./0"123"4"5678"��	

��	

��	

����	

 !""#"""$"%"""&'"""""""("""""""""��	

 !"#$%&'()*+,-./0123456789:;��������	�������											
		
��	

 !"#$%&%'%()*+,-./012%345%678%%%9�������	
��	

 !""""""#"$"%"&""'("""")*"""+""""��	

 !"#$%&'()*+,-./��	

��	

�����	
												


�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab����	�			
�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|��	

��	

�����	
												


��	

�����	

�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|��	

 !�����	
												


�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnop��	

��	

�	

�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz���	













�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijk��	

��	

��	

 !"#$%��	

����	

��	

���	












��	

��	

������	

��	����	

�	













�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu��	

��	

��	

 !"#$��	��������������	
��	

��	
��	�	
												


��	

����	
��������	

 !"#$%&'()*+,-./012345�������	

��	
���������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgVhijklmnopqVrstuvwxyz{|}~��	

��	

 !"#$%&'����	

��	

 !"#$%&'(��	�	













��	

��	

����	��	

��	

 !"#$%&����	

 !"#$%&'()*+,-./012345��	

���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx��	

���	
��	

��	

 !"#$%&'()*+,-./0123456789��������	

�����������	

��	

��	
�����	
												


��	

��	

����	

 !"#$%&'()*+,-./0123456789:��	
���	
												


��	

������	��	
��	

 !"#$%&'()*+,-./0123456789:���	

��	

 !"#$%&'()*+,-./0123456�����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuqvwxyz{|}~��	

����	

����	

���	













����	

 !"#$%&'()*+,-./012345��	

��	

���	
												


��	

 !"#$%&'()*+,-./012��	

�	

�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWX�	

; ���<���d���|zRx�$P��0FJw�?:*3$"DX�� \ ��H�GNU�@..�k!�3�3x���d�5A1�3�3�u���d�5A1�3�3�s���d�5A1�3�3pq���d�5A1�3�3�����d�5A1�3�3�����d�5A1�3�3����d�5A1�3�3�����d�5A1�3�34����d�5A1�3�3 ����d�5A1�3�3����d�5A1�3�3����d�5A1�3�3�����d�5A1�3�3����d�5A1�3�3����d�5A1�3�3�����d�5A1�3�3�����d�5A1�3�3(����d�5A1�3�3����d�5A1�3�38����d�5A1�3�3,����d�5A1�3�3`����d�5A1�3�3T����d�5A1�3�3�����d�5A1�3�3�����d�5A1�3�3̛���d�5A1�3�3�����d�5A1�3�3�����d�5A1�34t����d�5A14�3p����d�5A1�34�����d�5A14�3�����d�5A1�34�����d�5A14�3x����d�5A1�34l����d�5A14�3����d�5A1�3 4����d�5A1 4�3����d�5A1�3'4����d�5A1'4�3�����d�5A1�3.4����d�5A1.4�3~���d�5A1�354|���d�5A154�3z���d�5A1�3<4x���d�5A1<4�3�u���d�5A1�3C4�s���d�5A1C4�3pq���d�5A1�3J4do���d�5A1J4�3dm���d�5A1�3Q4Xk���d�5A1Q4�3�h���d�5A1�3X4�f���d�5A1X4�3�c���d�5A1�3_4xa���d�5A1_4�3�`���d�5A1�3l4�^���d�5A1l4�3�[���d�5A1�3y4�Y���d�5A1y4�3�V���d�5A1�3�4U���d�5A1�4�3�T���d�5A1�3�4�R���d�5A1�4�3�P���d�5A1�3�4�N���d�5A1�4�3�M���d�5A1�3�4�K���d�5A1�4�30I���d�5A1�3�4$G���d�5A1�4�3�D���d�5A1�3�4�B���d�5A1�4�3XB���d�5A1�3�4�@���d�5A1�4�3>���d�5A1�3�4<���d�5A1�4�3�:���d�5A1�3�4t8���d�5A1�4�3�5���d�5A1�3�4�3���d�5A1�4�3�0���d�5A1�35�.���d�5A15�3�,���d�5A1�35�*���d�5A15�3�'���d�5A1�35�%���d�5A15�3t$���d�5A1�3&5h"���d�5A1&5�3h ���d�5A1�315����d�5A115�3<���d�5A1�3<58���d�5A1<5�3����d�5A1�3G5(���d�5A1G5�3����d�5A1�3R5����d�5A1R5�3����d�5A1�3]5�
���d�5A1]5�3|���d�5A1�3h5�	���d�5A1h5�3����d�5A1�3s5����d�5A1s5�3����d�5A1�3~5����d�5A1~5�3����d�5A1�3�5����d�5A1�5�3���d�5A1}�� -
T3�k!�k!���o`��
��!0�,�h(	���oh���o�oT���o��!P-`-GA$3a1 -a3GA$3p1094P.T3GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignsingle_byte.so-2.7.8-141.el8.x86_64.debug�7��7zXZ�ִF!t/��]?�E�h=��ڊ�2N��K�� ����I�����3ǰU��	�AYJ<*J�4a'Q|lE�[[)zZ�v�nM|�2��O^��1J�[1Q�p�	�jfhR��YT}t<"����X?O��s8n�O����+U9a�FCm�+�U�7!Pӕv�ba=
����5֜�.A�
�J��*�n����,�S���.K�F=h[-�^��<�W�n���o��Vr��v�6�W�:e�\����o���qF,hE�7L�ץ�R���L����:�۷G��)A���))vϡG}j�U��X�ϛ:��/eKK��l�qD~���j@D�B�r����ָ�(�7�i���5���	�/��m{#c�oQq�x6��)q��r�M(
�D�� �[_k=No��(w5<YSgI)ygk�h�f`�:d�a�i����2�`)�L`m�V��a�	����C��S���!��H����vd���1)AB�ҍ;*��kA��ǾQ�#X:S�jm��h�$⋥����#I�, ytu����*��_�F�5�L�p��}�^���^��:c�OV�沛.�P�8��0<�m^,��o�y�wq9?&�Yq_ݴ��zE�ht�X��]�2��!j�Ak��w6����`�����!��ås�
g�e�����	
ǿ��LGV��
�����QrX¥|�`�\�����U���^�|ŗ�.�?��w��#܊12XiVi����@Zf2�@����3�TFJ��n��	^=Y<�S�tE�AK\1%�w��K�0&4��b��(�H}e�pg��\�v��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oTTE���ohh T��h(^B�,�,0h - -c@-@-0np-p- w�-�-�}T3T3
��3�3), ��_�_$��_�_x�H`H` ��k!�k��k!�k��k!�k`B ��!����!� ��!�(�(�!(��0�a(��
�0L�X��+PKLH[��Ŭ��lib64/ruby/enc/trans/big5.sonuȯ��ELF>�	@��@8	@(�(� ����(��(�� ��(�(��888$$���  S�td���  P�tdl�l�l�$$Q�tdR�td����(��(ppGNU�H['�1�8	���InY'v��@ �	BE���|�qX�1
V _ , F"�(�(�0�(�(�(UP
�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_big5rb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	���(@
��(
��(��(��(��(��( ���(@`�(h�(x�( ���(@�(�(�( �(�(@��(��(��( ���(@@�(H�(X�( �h�(@��(��(��( ��(@��(��( ��( ���(@ �( (�(8�( �H�(@��(��(&��( ���(@`�(&h�(x�( ���(@��(��(��(��(�( �(��H��H���(H��t��H����5��(�%��(��h�������h���������%��(D���%��(DH�=��(H���(H9�tH�6�(H��t	�����H�=a�(H�5Z�(H)�H��H��H��?H�H�tH��(H��t��fD�����=�(u+UH�=��(H��tH�=~�(�Y����d������(]������w������H��H�=�(����H�=U�(����H�=��(��H�=��(���H�=Q�(����H�=��(����H�=��(����H�=M�(���H�=��(���H�=��(H�������H��H���UTF-8Big5-UAOCP951Big5-HKSCSCP950Big5	 ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢﹣﹤﹥﹦~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/�\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁▂▃▄▅▆▇█▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭╮╰╯═╞╪╡◢◣◥◤╱╲╳0123456789ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ〡〢〣〤〥〦〧〨〩十卄卅ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv��wxyzΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩ˙ˉˊˇˋ	€�一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙��世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全�	共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣��作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠�杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵��咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊�昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附��陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷�拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄��耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪�哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓��浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃�"虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀��$娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺�'毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼��)莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠�,婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋��.溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁�1詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼��3媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督�6睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊��8辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇�;愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬��=罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜�@劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃��B瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞�E輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡��G濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚�J錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬��L瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁�O駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦��Q鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類�T願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴��V護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒�Y讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲��[�^��`乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋�c汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇��e杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢�h坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲��j泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏�m哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺��o柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀�r穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱��t唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤�w毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐��y笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐�|酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏��~崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉��淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟���耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪��釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔���惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞��湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥���罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺��軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆���媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼��毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓���稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤��觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠���凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉��榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓���禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻��裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘���噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒��澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟���膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧��踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮���噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸��澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘���蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌��錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎���檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞��蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜���鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶��璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧���蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰��徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕���譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲��嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿���鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥��蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚���糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾��讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚���纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓����	�����"�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[^�`c�eh�jm�or�tw�y|�~���������������������������������������������������������C��	�����X���PD�	�����8��	������������
X�	�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�jL���k�l	�m�n�o�p�q�r�s�,�P��`��`�	�V�X���������L�K�E�������x�	��4��	�J���Kv��	�����������������������	����������������� �	�A������������������������<P�	����������~��	������������w	�x�z�{�|�}�u�t�s�r�q��	�����������������������������������������������������������~�������������ZD�	�b�c�d�e�f�g�h�i�p�o�n�m�l�k�j���v�y���������������	�������������������(�	����
\���	��Lt���P������H���������� �T�l�������@�B�C��	�q�r�m�n�u�v�y�z�i�j�E�e�f�������������������������	�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������	T�	��T	��	�U�V�P�Q�R�T�	�	�W�S�����O�	4�L�P����,�P�
X��@�B	�C�E�V�T�W�U�F���O�M�����B�A�@�C���������X���P���c��˱�Y���D�d\
|�	�@�D�[�G�\���E�G�F���������A�A�E�^�]�������K�
�	��ܱܲ�F�����G�H�_�����Q�����������E�`���������������F�G��ܳ���H�
x������R����	�����T�S�������J�K�L�M�I�P�j�f�i�Q�a�h�N�O�H�e�g��ɰ����ɺɮ��ɲ������"�ɱ��ɵ	ɹɶɳ��������ɫ������ɻɸɯ��ɬ��ɴɷɭ�f�B���g���D�����[�����`�hd��	�d�������G�]˽���C�������b�^�����Z���e�E�H���@�F���c�A�i�\���_�a��˿������������˹��˸˼�������˳˵�����X�˶������˻˴��˷��˺	������������������˾˲����������V�J�����I�Q�]�������K�8������Y�P�X��	�����T�����[�N�W�M�������U�R���Z�����O�\�S�L�H������������������������*��P��p����P�0�����l����	���������������������������[��������������������������������������������������������������c�W	���\�b���U���Y�R���V�����g�Q���f���X���S�O�]�P�N�Z�`�a���[�^�M�_���d���L�T�e�����������������	�^�W���_�U�X���Y���]�S�R���������Q�\�Z�T���V����ܷ��ܽ�����ܺ��������ܿ��ܴ��ܵ2
H�	ܾܼܸ��ܶ��ܻ��ܹ�������������������������������������������������������������t
����	���������������������������������������v��w������u������x�_�������������l�k���I�
���a��	���S�R���������J�I�K�������^�Y���Z���\�[�`�]���^�J�������K�������@�L���������
����	�N�T�U�A�j�`�_���������U���a���������V�Bɼ�M�N�k������:<�	�������������������h�a���@������L�Z�������B���Y�W�X��|���M�N	�b������ɾ�Z�k�Fɿ�D�Eɽ�G�C�l���m�n�P�O�S�Q�R�����������������������8�	���c�����h���d�g�f�e�b�����������������������������i�k�j�l�������������������������A�B�����Z	�@�A�B�D�����C�������������O�\�[�H��U�V�T�W�o�p������B�����l���k	�i�j�����n���m�����������������������C�D��E������y���U�c���V������	�]�^�I�q�����m�������c�b�P���_���C�l�`���K�J��X���o���E��������������������Q	�d���������c�b�m�����������n���R���e�d�r���W�g�f�L�M�s�Y�Z�������o���\�	�D�����t�u���������p�p�������d���e�F���F���X�hJ�	���S�e�������������q����O�f�j�y�t�o�n�u�s�l�z�m�i�x�w�v�k�r�q�{�p�t�	�S�Y�U�[���X�N�Q�T�P�W�Z�O�R�V�\�~�{�g�|�[�]�u�pʥ�}�_�aʤ�h�x�t�v�\�m�v�s�d�n�o�w�l�j�k�qʡ�^���rʣ�f�c	�z�bʦ�e�i�`ʢ�y�����O�����������P�������I�K�M�������L�E�A���D�I�R������C����	�F�H�����Q�M���S�J���G�B�@���N�H��K��x���t���}���r��C���O���y�E�B�w����J�|�L��R���s�~�{�@���F�G�z���v	�u��D�N�D��������@������������������B�C���A���C��@�	���F�����B����@�Gԡ�E�D�������������A�w��ԧ�����|��Ԣ���v�{�z����ԥԨ�s����ԩ��	�����~��Ԧ��Ԫ�tԤ���u�x�}���������������y����ԣ�����q�r�j�����u���x�����q������	���n�������v���{�o�f�s�m���y�������������z�l�r�t�h�w���g�������i���������p����Z0���	�������������������������������������������������������������������_�������������U�Q�K�����T�����N�P	�S�������I�����L���J�O���H�������M�R���G�M�G�D�G�S�T�J�B�L��R�F�I�H�H�C�E�K����A��	�k������O�N�P����@�E����B�����A�����������C�������D�@�Q���F�������� p��{���������}���~	����z���|��P�������`�����V��������Q��A�Y�@�X�W�Z����b$���������	�����m�o�n�������������I�}�|�_�^���]���yʩʨ�w�zʧ�x�����T����	�H�I�E�FԬ����ԫ���|�������������I�H�G�k�g�Y�n�o�b�f���d�c���e�a�`�������h��}ʪ	ʫ��ʭ�{ʮʬ�~�������|ʯ�Y��[�Z�@�X�W��������������V��\�A(��	���U���T�Z���X�^�U�Y�[�]�W�V�Q�R�������S�\���P�S�R�W�N�Q�P�Tj��	�X�G�J�O�U�I�J��Ժ�V�M�H�LԱ�����ԯԽ��Կ�����ԴԼ����ԾԹԲئ԰��Է����ԭ��Ե�0�Գ����	������ԻԶ�K��Ը��������Ԯءتة��آ����ؤ��بأإ�}��زرخ�������Kث����ح�~ذدس��ج��	ا���������������������������������������������������������]���c���_�f�W�����\0��U�[�d��	���Z�`�e�V���^�b�h�X�a���g�Y�Y�K�W�V�M�R�N�Q�\���[�J�P�Z�O�L�X�M���O�J���LrX	���N���P���I�K�����������������S�R����a�b�c�B�[�������h�����_���������i�S�	�Zʰ�B�`�Y�L����i�~�p�g�h�]���������j�������[�����q���i�j������ʱ	�a�C�_�`�^�Z���������a�b���M�N�O����ش���������j�]��������k�������l�o�����n����8@���q�p�m�k��	����ʶʹʸ������ʵʳ������ʴʻʷ������ʲʺ���g�o�O�H�p�S�D�K�f�E�d�L�P�cz��Q�J	�M�r�i�T�R�n�l�I�k�G�F�j�h�q�m�e�N�����o���g�c�s�b���l�������p���V�v�d�f�m�q�u�r�k�n�h���j�i�t�����e��	���\�b�[�`�P�U�_�\�a�Q�[�T�R�c�S�W�X�Z�Y�]�^�d�����������@��������������	�C�������D���������������������B�������������A�������������������@ػظ��ؽ���B@	���������������G�C��ض����A�D����غطعؾؼ�E��ؿ�ص���B�@�C��D�@��F������������A���A	���������B����E�n�������z�p�v�k�y�x�|�u���t���m���{���o�r�w�q�l�s�U�a�X�W�Z�\���_�V�T��	�]�[�Y�_�^�c�^�`�b�`�W�V�U�X�Q�R�Z�S���\�[�T�����������Y�����������������T����\�\	�]�C�������������l�m�n�������r�s���������s�U�u�t�V���]�e���E�G���F���}�������^�pH		�r���s�v�t�u�w����ʼ��ʽ�W�X�v�x�z�w�{�y�����������f�w�h�g�c�_�`�b�d�a�f�e�J��	�����I	�H�G�K�F�����I�����K���H�J���H�I�J�����~����������������f���g�e�d�]�������d�_�o�x�l
	���i�g�N�M�L�L�M�������p�\���t���y�|�K�q����ʾʿ�����N�L���r�����u������,����	�Y�~���Z�}���x�������j�h�k�i�j�^���P�Q�O����h�i�a�����������K���s�w�v�z��������P�	���������������������������h�b�]���e�c�\�i�l�g�`���f���a�d�[�_�k�����^�j������	ΫΤΪΣΥ�}�{άΩ�y��ΧΨΦ�|�z��΢�~Ρέ�o�n�l�k�n�p�o�s�q�pή�r�m�l�m�0
�q�r	�S�R����T��X�A�Z�V�^�[��U����C��W�B�\���]��Y�D�@�������Q�������������������
��������	���R���O���O���P���������S�V�N�P�U�T�C���R�D�M�Q�������X����	����������e�g�k�h�c�b�l�j�j�m�d�i�k�f�a�f�`�e�^�h�d�i�c�_�g�j�b�����������,��	�r��D�E�`���������r�q�������t�{�������_�u���������t�W�v�w�x����ί�S�y�]��	�����x�|���������n�����m���o��������γΰαβδ���t�s�v�u�b�F�a�c�`�U�E��V��	�W���T�Z�\�E�[�Y�X������������q�o�m�p�n�l���m�k�l�n�����������n��z���~���}���F�������X`$�y	�z��������������������������θ����ηιζκ���y�u�w�w�x�x�vε�G�J�K�H�g�f�d�e�I�h��	�Z�[�\�]�_�a�H�G�Y�`�^�������������p�s��r�t�q�t�u�o�s�s�q�p�r�o�f�F�G�����U�������{����	��������λ�����|���I�}�����������������q�r�s�����p����μ�z�z�y�i�L�j�M�]&p�b	�����u�v���t���s���tν�k���J�U�������{�m�C�n�l�^����v�L�������������w�v��h�����u	��ξ�������������}�|�{�O�o�r�p�N�u�q�P�t�s���a�_�`��K�d�L�c�w�x��w�����u�����@���H�I	�����{���������������������������x���������y���������������������������������|x�@�������4���0��������T���l���x�8����(����h���`����(���P�8��|��T	�	d
$�|(
�
�$����h�t$.,��	̢̯�~̮̩����̪̭��̬������̣�|̥��̰��̦����̨�����{����������̧�z̫���}̡̤��ο�p8��ѡ������������	������������������~�}���|���������������~���������������������v��ѤѦ	Ѩ�����SѬѣ�x�Q����Ѯ�Rѥ��ѩ��ѫ��Ѫѭѧ���yѢ�w�z�U�^�d�|���e�`����V�����~�T�b���e�I	�c��������]��a�{��d��Y�b�W�X�����[���_���\���f�c��Z�}�k�o�@�Q�m�D�q�e�F�S�i�l�G�H�N6`�s�T	�J�O�C�^�U�r�A�P�]�p�N�M�t�E��j�B�K�M�R�g�L�P�h�\���p�h���l�n�k�[�j�_���Z�@x(�q��	�X�i�m���O�f�g�A�W�Y�V�o�������}���G�F���|���E���C�D����z�n�������{�����������H�y�B�z����������	�~�y�~���x�������������x����v���}�����w������������|�{����z������~�������	�|�����y�{�����������}�������������V�������������������������g�j�i�h�a�J�b�A�������t>d����	���������|��������������̱����ѯ�����u�r�`�a�t�v�u�����I����������W������̲�������������	Ѱ�����v�Q���~���}������������������������������������������������������������������������	��������������������������������������̷̾����̳̺̼̿��̴̻��̸���̽����̶�� �	������������̹������������̵�����������������������A�����@����ѱ���C�������������������B��F T�����E��	����������������Ѳ�D����������Ѿ����Ѵ�����f���ѷ��Ѻ���}ѽ�����  ��ѿ��ѸѵѶ��������Ѽѻ������������	����ѳ��������g���������y�u�rզ�����w����ա�����{�j� � ��գ�i����բ	�s�����h�xե�q���tդ���R���o�������x�n�l�~�������w�|�����������p���m�z�v�T�S�k�d!x!�z	�j�Y�g�w�}�k�n�|�\�m�l�~�U�y�����i�_���p�h�q�����f�e�c�]����ѹ�Vݷ�W�{���y�����X�o�x�`�[���a�^��N!@"	�p�|ݱݶݪ�lݻ�i�z�{�b�kݤ�n�oݥݲݸ�j�dݣ�}ݺݨݩ�~ݴݫݵݭ�e���h�fݹݰݬݡ�Sݯ�mݧݦ�g�c���!#ݳݮ	ݢ���������Q�����L�K�����������O���b�����R��������T�����������������N���P�U�����!�#	����J������������������������Z��������M������������������������������"�$	�������������������������������������������������������������Y��X�^���\�]�����Z��V"P%�k��	�����[�B�E�F�D�G�l�C�N�d�M�L�K�c�e���������������u�������������������r��������������F�"&	�����G������������է�������������v���������u�x���s�w�t�qݼ�V�����������������"�&���������H	���y����ݽ���������������z�{�r��W������������H���|���s������_���������I��#�'	����������������ը�����}�~ݾ�Y�X�����J�I�O�^�J�������������������������������^#L(��	�����������@��������������������������������P�M�����S�K���N�Q���L��O�R�������������#)	����������������������լ��իխ������ժծ��թ����٧٢������٥٨��������٦��٣١���#�)٤	�yݿ�v�w�u������{��������x�t�z���\����Z�[������������������������������$$p*�	��������������������������`�n�K�m�Q�R�f�P���������������������T����������f$$+��٩	�|���������B�A������������կ���������z���a�g�����������������������������������$�+	�����C���G�B�E���������@�A���A�@�F���D�������W���C�M�N�F�X�H���S���I���������V���Q�O�$�,	�����������J�P�D�������R�����U���E�L�����T�G�K���[�\�i�V�L�b�J�[�E�e�R��A,%T-�D��Q�a�`�F�X	��_�`�c�Z�K�S�f�Y�a�m�V�X�C�j�c�]�@�l�g�I�k�P�H�d�\�T�^�b�G�Z�Y�O�_�U�W��h���]�N�M�B�^�W�Un%�-	�����������������������������������������������������������������%�.��������������	������������������������մյչ����վս�����հ�����������%l/��������	����ձ���������ղ��������������ճ����������պ������ռ��շջ��ն������տ�����4&0	������������ٽ����������٫����ٳ������٭��������ٻ��ٶ��������ٰٵٯ������ٱ��ٺ����ٷٴ������������v&�0	٬����ټپ����٪����ٲٹ���ٸ��������ٮ���������������������������&�1������	��������������������������ո���������������������������������������~����ٿ�������������������&02	�������J�H�^�F�X�}�_�B�]�G�U�d�]�[�@�Z�o�Q�a�m�I�^�K�Y�g�D�k�a�M�C��W�h�`��e�S�f�E�P�L�N<'3	�`�_�n�O�b��T�c�l�j�A�V�i�b�R�\��������������������������������������������~'�3������	������������������������������������������������������������������������������'p4����	��������������������������������������������������������������������E((5���	�A���H���I������D�J����@�����G�������������C��F�B�c���h�i�b�������f�����e��D(�5	�g�d�������Q�N�W�V�T�O�r�P�q���S�p�X�R�M���o�L�V�U�U�h�Y�Z�T�X�S���W�������(�6��	�����������v�������������V���������������Y���d������������������������������(47	���������p�c�e�q�d���������������K�����j�Y�w�������B�Z�[�n��������k�������\
)�7��	�e�o�f�p�����������������������������f�g�h�����������������L���l�Z���_�q�g����������L)�8��	�i�j���������������`���C�H�r�����h�s�i�������j�B�A���C�@�@�A���������A�B�@�����k��)\9�����������	���M���[���������]�a�~����I�J�^���t�k�l�����D���������B���������r��ɡ��ɤ��ɣ�):�����Dɢ	����@���������������������E�������[�Y�L�Q�S�L�M�U�R�O�Q�V�Z�X�Z�K�M�\�T�W*�:�E�G�^�U�N�J�Y�V�H�I�C�O�P�[�]�P�N	�S���\�W�R�]�F�T�K�X�D�j�z��q�K�b�e�B����m�o��v�h�f�g�uT*�;�G�p���n�s��J	�u�y�c�I�M��O�@�l���k�}�r���u�x�|�A�F�~�w�i�_�d��`�N��������{���t��a���L�*l<�|ϡ	Ϥ�wϧϪϬ�t�v�{�I��ϥϭ�{�s�d�~Ϣ�x�z���}�}�pϨϫ�z���m���x��ϩ�o���^�H�|�w�v�n����ϣ�����y���q�����r�*4=Ϧ�y�~	�L���C�U�[�W�J�M�F�G�J���V�_�E���@�N�B�O�Y�D�h�H�����H�E�f�Z�g�a�S+>�b	�\�e�c�I�T�����A�G�`�F�Q�C�i�P�K���K���X�]�e�����R�P�G�����[���U��G�D����g\+�>��	��d�X�c�N�����O�I�E��@�Q�Y�B������D�^�F�\�������S�����H���F�J���h�b���_�]�f��a�R��`�A�E��W���V�T�L�K���C�+d?��	��M�A�Z������������I���������M�D����������J�C������U�V���H������������+X@���	���D��������������B��S�K���Q�����W���A����G�E�B���C�O�L�T���@�F�G�����F�E����P�N�R",A	���@�a�`�F���_�I�J���h���^�C�����R�H�K�c���j�b���W�������i���U�L�Y�e�����T�M�����P�Z�dd,�A�G�Q���[�����N���E�S�g�����V�l�X�f���O�������D	�]�\����}����n���w�m����q��s���u���,�B�S���}�o	������u�~���|�|�v�t���z�w�x����z��~���p��y�x�����{��t��������s���r�����{��y���,<C��	��v�D�N���M�Y���K�O���F���R�������T�C�^�����W�[�`�U�I���������L��H�_�����a���V��\*-D��	�J���E������A�Z�B�@���X��Q�P�]�G�����I���@���A��H�C��O��B�����D�F���E�D�J�G��F������l-�D�E�B���@��	������A�����N�C����Q�������S�Y�W�������Z�R���V�U�[�������T���������X�P��q����o���-�E��X ��\��L � p!8"#�#�$H%&�&�'D(�(�)h*+�+�,L-�-�.d/0�0�1(2�2�3h4 5�5�6,7�7�8T9:�:�;d<,=>�>\?P@�@�AxB4CD�D�ElF.tF����	����p���m��n�������s�r���x�_�e�y�\�v�s�g�w�t�^�a�b�c�f��]�u�d�h�`�]�j�`�k�h�_�\�^�b�e�d�g�[�i�c�-�G�f�i�a��������	���������x���������y�����������������W�e���l�����������A�^�_�b�_�`�a2.\H	�X�Z�U�R�T�����V���S�P���W�Q���Yϯϳ��϶����������ϲϱ��ϴϵϮ����ϰt.I	�w�x�y�P�L�n�v�{�Q�l�r�k�u�q�M�O�z�j�m�s�t�|�p�N�m�N�P�L�X�J�W�i�H�[�R�l�S�.�I�V	�Z�O�T�j�k�Y�M�I�[�Q�U�K�H�I�e�O�Y�b�X�L�`�^�_�J�c�\�Z�K�]�a�M�d�.LJ	�p�w�yޡ���k���z��ޢ���}�m�~�l���x��ޣ���q���|�o�v�r�n�������������u���N�{�s�t���:/�J����	��������������������g�d�p�j�l���f�n�m�k�q���h�o���c�e���b�r�i�J�Q�U�S�K�I|/�K�L�M�H�U�V�G�V�Q�O�L�P�N	�R�R�M�N�O�P�K�T�S�W�X�T�����\�b�`�������^�������a�]�_���w��t�u��v��/LL	��l��m�z�k�j�i�{�l�j�k���������������������y�����������������R�����n���b0M	Ϸ�}��������ϸϹ�f�Pޤ�������|���g�����B���e�d�c�`�����[ϺϽ��ϻ��ϼ��Ңҡ�~�S�]�^�o�\�_B0�M�R�p	�Q�k�j�h�i�lަޥީިާ�����������s�t���Y�Z�r�}�q�p�n�o���l������ɥ��ɦ�C�D�f�b�a�0|N���e�g�c�f�g�d	�_Ͼ�]�d�����e�a�b�\���^���c�`��������Ͽ��������Ҩҥҧ�X�W�UҤҩ�T�VҦ�g�04OңҪ	�b�f�e�n�y�h�c�m�t�s�a�d�u�r�q�`�i�p�w�T�v�s�V�u�o�q�t�r�U�x�S��ޭެު����1�Oޮ	ޫ������ްޯ�����������v���u�~�}�{�z�w�x�y�|��_�\�]�W�[�a�`�^�d�e�����c�y��x�~á�m�n�m����J1�P�z�����������Y�v�j��ɧ��	�E�l�j�k�h�h�i�m���k�g�j�f���i�������l�h������������������ү�����1lQ��	��������������������ҴҫҶҮҹҺҬҸҵҳҷ�_�]ұҭҰһҲ�^���Z�\�x�m�k�l�s�t�p�{�u�1,R�r�o	�y�n�w�z�q�y�[�x�w�v�|�~ڡ�`ڧکڢ�Zڦڥ�[�a�bڨ�X�}�{ڣ�z�_�|ڤڪ�Y�^�\�]�W��2�R޷��޻	ޱ޼޲޳޽޺޸޹޵޴޾��޶��������������������������������������������@�bR2�S�A�	�����������i�f�e�g�f�Z�c�X�\�[�d�h�Y�m���z�����j�h�k�n���l�g�B�E�u�@�o�Fâ�D�{�2LT�A�C�G�v	�tã�s�n�������������������nҼҽ�}޿�]ä�{�����o�`����Ҿҿ�~��ګ�����2U��	���������i�^�_�r�o�p�q�I�H�|�w����������������c�d�����F�j�i����ڬ���������k�l�n�m���r�p3�U�q	�������������`�d�c��b�a�����{�z�����f�eڮڭ��������������BZ3�V�j	�sæå�|���s�������o�p�t�����������������������h�i�����n�l�����k�j�e���3W�����m	���f�g��֢֡���|�~֤֣�}����ڶ�k�jڰ�hڳ�lڴ�mڱ�g�iڵڲگ�������������������������������������3�W����	�����������������������������������E�C�H�I��F��G����D�l�k�s�m�r�o�`�q�a�b�p�n 4�X	���t���w�u�v���M¡�N�}�O�~�L�P�Jç�xè�o�K�p�����~���}�����������n�o�����Gb4HY	�q�m��������֦���o��֥ڸ�qڷ�p���J�����x�Q�q�p�����u�p�r�����K�t�R�r���4�Y	���������������q�r�s��֧��ڹ���s�����������L�d�u�c�y���S�s���n�x�w���v���y���������������4�Z	�������������������������������������u�v����ְ���w�tֲ֪֭֮֩֫֬������֨��ֱ��֯��(5T[	ڼھںڻڿ���ڽ��t���������������C���������F���D�����E���A���B�������@��������j5\������������	�N���Q�O��M��P�}��~�v�z�y�w�f�g�e�x�{�|�h�@����{���A����|����z�~�}�U¤¥¢£�5�\	�T�{é�y�z�t�w�u�v��������������f�����������o�������x���u�G�B��|�x��͡�z�|�~�}�{���5�]	�����������������������������|������������ֹ�z�����������������y�������}���~�{06D^	��ֳֵֶַָֺ��ִֻ���v�������������������w�����x���������N���Qr6�^����	�����������M�L�H���O�P�������J�K��������������������������������I�������T��X�V�6�_	�������S�����U�R��������Y�����W�j����������l�i���k��F���E�C��D�����V�6<`	�G����Z�W¦�[�]�\�X�Y�ê�~��}���z�}�y�q�{�|�~�r�t�s���������������r��ͣ87�`����͢	�������������������������������������������������ּ��ֽ��־ֿ�������������R����Sz7�a	�T���A���������C�B�����@���������������m�H��I��_�^§�ë�š������ɨ�������V���r�7tb�q�p	ͤ���������������������������������������������������������78c�}	�������|�z���{���y�A����Z�����X�@�W�\�[�Y��I�H�D���G�F���^���_�[�]�Z@8�c�\	��p���E�r�q�n�o���J�����`ª¨©��íì����������H�sͥ����ͦ�@���8|d���	��������������������������~���D�]�^�C�B�J�����K�L�a�`������������s��K�8(e��	«¬�u�����A����������������E���M���v�����ͧ����9�e�B�C	�@�B���D�G�E�F�C����H�A������������������������������������������������������H9`f��	�������������������������������������a�P�S�G�L�F�c�J�H�b�O�N�K�M�I���R�_�Q�9g	�]���X���N�P���U�T�W���R�Q�����S���Y�[�V�O���i���\���b���c�e�����������9�g�`�h	�d�f�g�v�����j�������t��x�������Q�y����w��{���z������������O�������N�:Xh�������	����L�������P�M�����u�c�a�g°�e�d²�j±�k�h®�i�b¯­��f�l�òð���ñîïP:ió	�x������w�y����������������ţŢ�����������������X�Y�m�~��ͨ�E�F�D���G�:�i�H�I	�I�O�M���K�L�N�J�����������������������������V�d�T�e�U�f���a�^�`�����_�:�j	�����k�����a���������|�}���W�S�X�T�V�R�U³������z�{�A���@�������tͩ��;$k���L���J���������K�������Z���S�Y���R�X�V�����U���T���������Q�P�W������	����������������������������������������X;�k����������������	�������������������l������������������������������������h�]�_�a�e�[�;�l�Y�j	�`�d�\�X�W�b�Z�^�k�i�f�g�c�r���j�x�t���x���e�u�b�w�f�����v�p�����������c���q�����s�������;tm�h�g�d	�l�i�m���y���n�o�k�����p�y�u���r�v���l���t�����s�w���q���n�����z�r�m�����{���o<<n	�������~�������������������������������������������������������_���Y�i���a�]���d�g���\���e�������`�Z�h`<�n���c���^���b�[���f��	���n�t¹�w´µ�o�v�qº·�m¶�s�u¸�r�p�÷øôõ���ú�����ö���~�}��<�o��ġ	�����������������B�����������@�B���A�l�<�p	�����o������&=q	���j��»��Ģ���C��I���u�M�`�[�_�]���^�\����@�i�j�n�o�h�k�g�m�@�p�z�|���}��������������h=8q	�ù��D����������O���N�b�����a����������B�C�A�s�m�l�n�r�q�����~�������y�xû�ýü��������P���=�q�e���d�c	���������������������D�o�p�~�C�A�B�{�|�}�������������������k����z�{¼½�l����=�rTHI�IDJ�J�KDLM�MtN,O�O�PdQ$R�R�SDTU�UxVW�W|X@Y�Y�ZL[\�\�]<^�^x_4`�`�alb0c�ctd e�eXfg�gPhi�ixjk�k�llm4n�n�o�pqP�0q�q�r�s.�sģ��	���������Q�����A�R�S�@�B���T���f�������A���@��q����������������sͪ�C�U�h���g��.>�t	�C���B�D���F�G�E���t�u�E���D�����p�o�m�n�q�|¿¾��ťŤ��p>lu	��w���v�F��ɩ����ͫ�v�w�w�t�v�y�u�{�z�x�x����ͭ��������Ͱͬ�����|��ͯͮ���>�u	�[�G�H�]�W�Z�c�a�I�g�L�d�\�Y�I�b�D�e�V�_�F�K�`�O�M�X�J�^�N�E�f���������j�����l���k�i�n�����H�>�v�o�m��	���������N���E�G�H�P�L�J�M�Q�����F�O�����K�I�������Q�O��6?dw	�Jߡ���N�K�����P���M�G���L�������w�u�{�sߢ�x�r�{���}�v�~�|�~�y�x�y�}���|�t�z�����Lx?�w�H	�M����J��K����I�A�D���C���������@����B��������������������������������t�����x�z�w�?�x�v	�u�s�����r���y��������}�~���þ�Ĥ����EŦ�C�D�������R�N�{���������S�����P�T�U�V�O�������h�?ly���p��	�W���P���|����������R���Q��E����ߣ�R��ͱ�i�Q�r���������q�W�T�V�������S���U�X�Y�Z>@<zߦ	ߧߥߨ��ߤ�S�J�F�I�K�H�G���������������������ĥ���F�������}�}���X�[�A�J�K�M���N�@�z�L	ˢˣ�{ˡ�����|�z�y�}�~�~�jͶ��͵ͷ��ͼ��Ͳ���������͹Ϳ�ʹ����ͺ��������;͸��������ͽ��ͻ�����@�{ͳ	�����b�\�d�a�q�t�]�k�V�`�c�eТ�w�UС�Y�W�R�o�~�s�vХ�f�}�^�xФ�u�y�|�mУ�{�lA�|�p�_�Z�S�X�T�g�nӥ�[	�z�AӨ���vӣ�}ӲӪ�~ө�x�|ӵ��ӭӤ��ӳ�tӬ�����s������ӫ�����r�\Ӧ�zFA<}���{ӡ���uӯ	ӮӶ����ӴӰӧӢ�����w��ӱ���y�^�`�e�y�����]�����h�o�u�A�}	�b�i�@�w�r�����n�j�\���a�Y�����f�c���s���d�z�l�k�������Z�_�p�v�A�[�g�m���x�q�t���l�A�~�`���}۪ۧ���hۣ�i�w���s��	�t�]ۤ��ۡ�u۬�p��ۯ���n�z�����rۭ�k�d�o�c�a��ۥ�jۨ۩���������~���v�f���^ۢ۫�e��۰�qBD	�m�����|���x�����������y�g�{�bۦۮ�_�����U����ߵ�����������߿�����������ߪNB4�߲	������������������߶����߱����߫��߹߸��߼߾��������߰��ߴ����������������߻ߺ��߬����߭��߷���B܀	��߳߯��߮�`��������X����[��Y���������������������Z����]����a�U�B���^��	�W���V���T�c�\��������b���_���������s�t�g�f�b�����v�uߩ�_�c�]�p�a�w�Z�X�d�n�i��C\��O	�m��߽�[�R�U�{�\�S�Q�N���e�����`�h���x�|���W�k�o�T�y�����L���r�V�j�P�^�Y�����l�}�z�q�M���IVC��@�C	���E��A�G��������L�F��U�O��F����J�T���Q��D�H�B�V�S�P��������W���M�K�N�S�@�E�R�D��A���C����M�O�����Q�I���P�B����R�J�G��U��	����H�T�K������L��V��C�N����������~�������������������C���	���������������������������������������������������ÿ��������������������ħĩĦ����D����	��ĪĬ�ĭī��Ĩ���������������������������������J������K�I�G�H�L��������������^Dp���	���E�F�G�����O���hӸӷ�@�B�|�{�����������~�X�Z�Y���W���������������ЩЧЦ�i�k�jШ�D4�	���ӿ�A���FӼ����ӽ�C����ӻ��������H��Ӿ��ӹ�G�D����Ӻ�E�B�Lץ�Kר׫�H�F�~שקפ׬׭ׯװ�}�D��Eעס׮�Gף�I�Dצ�M	�Jת��ۿ۴����۽۱��۶��ۺ۸����۲۵��۳۾ۼ۷۹ۻ������������������$E��������������������������������	�������j�������e�������g�����h�������m�����������������i���l�����f�����dfEt���������	���������������k������������������������������������������d���EP�	�a�����k�g�e�`�o���\�h�i�_�^�l�b�]�c�n�[�m�j�������f���Y���]�Z�a�g�\�p���j�_�k�f�m�^�����`�n�X�l�E(���	�d�c�h�[�����b�i���e��������������������o���������������������������������������������,F����������	����������������������Įį�������B�E�A��C����D�Q�O�N�@�P�F�M���������������������Z�n������nFȌ��Ъ	������G�����lЫױ�N�����������������Ь��ЮЭ�m�����I�����������J�N���M�����F�����K�L��	�Pײ�U���T��׸�R��׳�S׿׻׽׷׾�O׺׹׵�׼״׶�Q����������������������F\�������	�����������������������������������������t�B�A��v�@���n�p���r�q����s�4G�	���o�������������������������������������u�p�|���w�y���q�u�x�����{�s�t�z�r�v���r�q���w�����s���tvGЏ	�u�x�����������������v������������������������������İ���I��K��H�JŨ�Rŧ�������H�I�K�J�P���G��	�n������������W�V������������C�F�E�D�������������y�{�z��������ı��T�S�Gh��[	��Я�o�����������C����A�@�B�����D�I�G�H�������}�|�}�����IJ�L�Uũ���L<H���	�q�rаб�p�T�R�Q�X�P�Y���V�S�W�U�O�_�Y���^�`�Z�[���X���]���\�D�F���E�������I~H������	�����C�������������B�����@���G�������A�����H���������������������������P�M�E�J���Q�����G�HX�	�O�K�N�L���F���L�x�{�N���M�}���O���K���y���|�z�~���w�������J����������������������I ���	�����������������������������������������������~�������������������������������������DIԔ������	���������������������������������~��������������������������������������������������I������A	�O���������������@�B�����C����������ķ������ĵ������ĸĴ��Ķij��@�N�M�P�Q�A�V�[�I��Ū	�X�W�Z�Y�C���B�@�A�������@�M�N�g�m����
J`�	�������R�P����LJė	�����D�D�����Z�a�T�S����������v�������b�������H���V�U�W�Q�R�����������������F�Eˤ�\�[�����J������I	�Y�Z�X������������������������G�����s�t�]�^�������h�f�c�g�e�d�J�����L�Q���S�R�U�����O�K�M���T�J���P�N��������	�������[�T�������S�U��������������������������������������������������������K���	������H�I���J��ĺĹ�R�B�S�\ūŬ�E�BTKh�	���j�i�\�]���������в�v�u���_���������KĚ���X	���W���V�_�b�`�a�e�^�f�c�d���V�������������������L�N�K�M���T�o���w���������l���k���K$�	������`����[�^���Y��l�]����������\�_��Z���h���o�n�����p���m���r�i�k���g�j�q���s�����[�a�YL��b	�X�]�c�`�_�^�W�\�Z������A�C�@���E�B��F��D��������������������������������������������\L�������	������������������E�������A�@��C�����B����������D�R���O�S���Q�����P���T���L��	ļľ��Ľ������Ļ�C�E�V�D�U�aŭ�`Ů�^�]�b�c�F�_���������\�Q�P�O�p�����n���`�������LX���	�U�������y�x�c���a���b�����m�������n�����C�A�E�F�L�H�J�B��I�K�D�G��b�@��a�c���u"M��w�v�{��	�x�t�y�z�����|�g�f�d�e���������M�N�I�J�����������K�L�H�@�������G��������������������������dM���	��������F�G�H���I�����X�Y�W�V�Z���������������X�Y�W�F�dů�e�H�G�M��	���d�@���������|�G���d�A�[˦�M(�	��������˥��������������������жд�|г���~�{���}����е�z�j�����g�n�i�����l����*Np�du�u�v\w�w�xdy4z�z�{�|4}�}�~<,�Ԁ��T��܃����h�,����l�H� ������T��ȏ��`����P��̔����X���P������`����ܛ����P������ �h��.��h�e���k���m�f	�����p�z�v���~�w�|�r�o�q�}���u�x�t�y���{�s���M�e�O�g�i�N�f�j�h�G��O�~lN(�	�P�E��J��C�B�M�L�K�I�N�}�D�F�H�������������������R�C�A�S�D�B�Q�P���O�������E�����������������N�������������������	�������������U�o�R�S�Q�T˪˧ˬ˨����˩��˫��������������������имй�N��	����лнп��о����к����������q����p�r�������������������з�������l�V���W�T���n�S2Oh��Y�X�k�\�R�[�P�Z�U�m	�������Q���R�����n�q�i�m���l�j�p�k�h�o�Y�H�J�V�W�U�Q�G�Z�T�F�I�X�������������K�L�M�]tO,��\��	���[�\�Z�fŰ�������u�t�@�A��s�����������_�a�]�`�o�^�p�s�U�T�S���s�u���������t�r�O��a�^�_�M�`�[�\�J	�K�]�L�����������������������������������O�P�N�R�����_���Q�^������Ŀ�����]�H�I�����Oܧ�C�]���q	�o�����V��������q�������B�x�v�z�D�y�w�C��������B����@����C������A���m�l:P���j�b�q�e�o�v�n�y	�u�c�i�w�h�x�z�k�r�s�w�u�t�f�r�v�t�s�d�g�p���������a��W�Y�e��Z�\�f|Pt��[	�d���b��^���c������`��������X�g�]������_�����������x����z��������P4���	�����������~������|���������y����{����w�v������}��R�Z�U���g�P���O�VQ��e�T�q�c�d�N��X�t�y�s���o�w�u�h�b�}�W�~	�x�m�k�f�n�{�j�z��S�v�|�r�l�Q��p�Y�i���������D���A�BQ���C���	�������B�@��������@������C�E���E�������������B��������A�����������D��������������Q��	�����������������������������������������������������������������������������������QL���	�����`�Y���T�c�[���e�U���_�������a���W�X�]�b�����j�g�k�^�Z�h�j�\���������d�f���i�S�VR��s	�c���q�a���l�h���r�b�e���t�m�p�������i�d�����`�������o���k�u��g�n���B���f����@�����JR����	���D������A��������C����������������a�f�O�h�I�d�j�N�J�K�`�g�M�e�L�_�c�b�^�R���i	ű�m�p�l�n�o�i�j�g�k�hŲų�K�M�L�N���J���������D���S�R�T�_�U�^�V�r�u�t�h�s�r�p�q�w�R4���������	S�	���D�x��vRS���	���{�E�F���}�z�y���|�{�~�����{�h�����������������������[���\�M�K���I�J�F�F�N�H�L�S0���	�������������������G��n�l�m������w�x��E�G�F���P�m�l�k�S�	��ɪ�X���V�Y�Wˮ����˰��˯˭����������������Tp���	�@�����������������������������E�����F�~�|�}�����I���H�K���J���������������G���}ZTزܣ	ܢ�������|�~ܡ���������������j�k���i�����������G�H�O�I�������o����A���G�L�T������ܤܦ��������ܥ�n�o�m���l��	����P�J���p�t��q���u��s�y�����B������ܨܧ�����s�p���r���q����T@���	��]��^�_��`�Q�N�K�P�S�L�R�O�M����������w�v��x�~��}�z��{�|�H�I���S�n�Q�R�oŴŵ�q U�	�E���G�����F�W���C�t���Q�R�D�a����S�����Mܩܫܪ�����u�v�������������bUܵ������������	���c�b��d�V�U�T�T���A�@������}���{�~�|�y�@�z����J�K�p�U��	ŷŶ�O�P�H���i�������������C�B���������q�r�����W�D�����X�A���L�M�T�U,��Q�������N����ܬ��	�z�|�������w�x�{�y��������g����e�[�����f�Y�Z�U�[�Y�X�V�Z�W(Vط	�E�J�F�I�����H�G�D�B�E�C����F��@��A����Q�N�O�P�r�V�U�t�sŸ���I�`�X����jV��	��ܭ������������h����G��B����V<��u�R�S	���t�s�u���������H�O������ܮ�������~������}�����V����	������������i���\��k�j���������l�a�_�^�]�`�\�K�^�]�_�N�L�M�R�K�Q�T�S�P�O�����J�H�I0W�	���C���D�X�W�U�T�����Y�vŹ�w�W�v�V�w���a�Y��rW̺	���P�U�������`�W�V�L�����������������������������������W<�	���������������������n�q�s�����r�������t�p���m�o�c�f�d�c�i�h�g�b�b�a�e�d�Z�^�[�]�\�Y�_�b�`�a�@�W��	���X�c���������M�����E�F������������`�^���]�c�a���\�Z�[���_���b�x�~�y�[��8X���Z�}�|�Y�{�X�z	�}���~�{Ż�x�|�����y�zź�R���S�������J�v�j���k���������z��zXX�	���������������l�u�e�j�m�f�d�k�X����N�	�f�d�e���\����ż�������b����I�������������h�v�w�������n�q�p�o�g�h�f�e�XD�	�g�O���P��������G���g�i�h����������Ž�T�U�V�K�c�����x�i������J�{���r�������������@Y�	�������z�y���i�����S�R�Q�^���]�����L�����������������������|�����������{�}�x�v��w�Y���s	�y�t�r�u��|�j�{�z�~�j�m�l�t�o�s�q�p�n�k�C�B�D�A�u�������������Y`��X��	���������W�U�T�������J�������K�����������������I�H���������l�o�VZ�	�m�s�q�k�v�j���r�n���u�t�����������`���������_ſ��������������������HZ���p��	������ž�Z�\�_�[�`�Y�W���]�����X�^���M�����������Z�\�[�y�x�w�z�s�t�����Z$�	��ܯ�����������������������������������Z����	�������}�����~��o��k����p������l��m�n���z�{�~�|�v�y��}�E���F[$���w��	����������Y���������������������Z���[�M�x�����O���P�������N������������������P[��������	�����������L�������}�{�������|�x���~���z���w���������y���������������a�������b�������d�������������[��	���c���������������������������������������������������i�n�d�g���k�r���e�o�s�j�c�m�l�q�p���h�b�f�N�O�a�������[l�����������������	���]�^�`�_�b�a�|�{�������x�|���}\T�	�������P�Q��X\����	����������G��������Q�S���R���������e�����c������������T�������������\����	�t����d�����H�u�����r���q��L�J�K�I���\�����������������f���v�w���d�}�uܰ�������\������	�x�R�e�~����������]�����g�����y������������������^������������������|�{�z����M]X������}	���f�������N������~�������������h�����������������i�j���������������T�������S�g�j�i�h��`]�	�s�e�����������t������]��أ��`�$��ԧ��l�,����x�D�����x�,���P�(��h�в��8��Եx�$�з��4����ĺ4�����P��<����X������������d�L�������P����$��],�&^`�	ơƢƣƤƥƦƧƨƩƪƫƬƭƮƯH^4�ưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿ����������������������������������������������������������������������������������������������.�����������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p.���q�r�s�t�u�v�w�x�y�z�{�|�}�~ǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾǿ������������������������������������.���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S.���T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~ȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵ.��ȶȷȸȹȺȻȼȽȾȿ���������������������������������������������������������������������������������������������������������.�����������	�^��	�J��^��	�J�W�Y�[�_�`�c�d�g�h�k�l�o�p�s_��t�w�x�{�|	�������������\�M�N�O�Q�R�S�T�}�~�������������������������B�L�M�NP_`�	�I���C�H���]�^�����A���D�����������������������G�F�������H�I�����������������������������������������������������@���_�	���������������������������������������������@�A�B�C�a�U�b���_��	�F�G���D`��P�x����������������X�����|���X`��p��`������`��0�H�P�x�$�X�h�p���t���0xG�t �$�,���������`��p�����p�����p�����p�����p�����p�����p����p����p����p���p��	�p���p���p���p���p ��"�p%��'�p*��,�p/��h���h���h���h���h���h��h��h��h�h�	h�h�h�h�h �"h%��	�����"�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[^�`c�eh�jm�or�tw�y|�~����������������������������������������������������������'h*�,h/�1�a�1	!�F�G�D|���Lca-R���X��23���g�P�M1o�b�3ACEIDNO��UYTsaceino��uytc`4	��Zc�4	�V�X�w�����������E���L�K�����������c�4	�A�B�X�������������������������c,5 d��	�[bd�5	�����������������������������������������������������������~�������������ZD�5	�������d86������	�dT6$5P������H�p5x5���5�06 �T�L6h6(ep6�@�B�C��	�q�r�m�n�u�v�y�z�i�j�E�e�f��������������������������je�6	�@�G�T�|�W���U���A���B���a�H�eD7	�@�G�T�|�����C�K�E�Q�����������g���������W�S�]�����N�I�����������e�7��������	S8�@�G�T�|�����C�K�E�Q�����������g���������W�S�]�������k�k�A�u�L�`�����g���W���U���k���v�����������]	0f<8<7P����78489,�P�rf9�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��.@9��������������������������������������������������������������������������������������������������������������������������������.L:�����������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b.X;�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������.d<���������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E.p=�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������.|>��������������������������������������������������������������������������������������������������������������������������������.�?�����������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h.�@�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������.�A���������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K.�B�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������.�C��������������������������������������������������������������������������������������������������������������������������������.�D�����������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n.�E�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������.�F���������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q.�G�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������.�H��������������������������������������������������������������������������������������������������������������������������������.J�����������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t.K�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������.L���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W.$M�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������.0N��������������������������������������������������������������������������������������������������������������������������������.<O�����������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z.HP�{�|�}�~������������������������������������������������������������������������������������������������������������������������.TQ���������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�].`R�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������.lS�������������������������������������������������������������������������������������������������������������������������������@.xT�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����.�U��������������������������������������������������������������������������������������������������������������������������������.�V���������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c.�W�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������������.�X�������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F.�Y�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������.�Z��������������������������������������������������������������������������������������������������������������������������������.�[���������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i.�\�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������������������������.�]�������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L.�^�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������.�_��������������������������������������������������������������������������������������������������������������������������������.a���������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o.b�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������������������������������������. c�������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R.,d�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������.8e��������������������������������������������������������������������������������������������������������������������������������.Df���������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u.Pg�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������������������������������������������������.\h�������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X.hi�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������.tj��������������������������������������������������������������������������������������������������������������������������������.�k���������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{.�l�|�}�~��������������������������������������������������������������������������������������������������������������������������.�m�������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^.�n�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������.�o�����������������������������������������������������������������������������������������������������������������������������@�A.�p�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������.�q��������������������������������������������������������������������������������������������������������������������������������.�r�������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d.�s�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������.�t�����������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G.�u�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������.w��������������������������������������������������������������������������������������������������������������������������������.x�������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j.y�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������������������.(z�����������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M.4{D:P;\<h=t>�?�@�A�B�C�D�E�F�G�H�IKLM(N4O@PLQXRdSpT|U�V�W�X�Y�Z�[�\�]�^�_abc$d0e<fHgTh`iljxk�l�m�n�o�p�q�r�s�t�u�vxy z,{8|.@|�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������.L}��������������������������������������������������������������������������������������������������������������������������������.X~�������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p.d�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������������������������������.p������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S.|��T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������.����������������������������������������������������������������������������������������������������������������������������������.���������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v.���w�x�y�z�{�|�}�~����������������������������������������������������������������������������������������������������������������.�������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y.���Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������.ć��������������������������������������������������������������������������������������������������������������������������������.Ј�������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|.܉�}�~����������������������������������������������������������������������������������������������������������������������������.������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_.��`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������.����������������������������������������������������������������������������������������������������������������������������@�A�B.��C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������.���������������������������������������������������������������������������������������������������������������������������������.$������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e.0��f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������.<����������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H.H��I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������.T���������������������������������������������������������������������������������������������������������������������������������.`������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k.l��l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������.x���������������������������������������������������������������������������������������������������ơƢƣƤƥƦƧƨƩƪƫƬƭƮƯ.���Z�����������y�t�������`�i��ù�����r�������O�_���T�d���Z������}�P����İ��þ��Y�����T	���N�����r�l�c��Ī�����S�|�O�L�S���w���f�������b��ŢŤ�c�U���p�S�����\�|���\�����������W������Ū�������������v���_��K�_���c�������������������H�B�Y�����G��	��³�}���q�y.���f�k�f���o�r�[�z�R���O�����e�~�����������	�m�p�����s���C�H�|�P�����G������î�y�O������̰���������a�s�F����§Ŀ���c�F���d������.���R���d���s�w���B���h�y���[�d��������������[�_�����X���v���Q�O�i�������d�z�g��	����������[�M�Zĩ�����L�O�{�������������������f���������}�v�}�������������J�	��������q�������t�������h�����}�]�b8g��	�I�����C�H�����]�^�����A���D�����������������������G�F�������H�I�����������������������������������������������������e�@�f�s��.H������������������������������������������������@�A�B�C�a�U�b��	�NzgT�P~\h�t�������������Ȉԉ�������(�4�@�L�X�d�p�|�����������������P���������@�X���L�ܟ���g�X4�4P�x��4$�X�h�p��689��0xG�t �$�,�D}��������g��䏰䰲䘃䖦䕸�m䵷䖳�n䳢p㮕䜶䝄䱇䱀Qq�r�suQv䱗�w䝏䗚䲅�x䴇䪤䚡z爥Q{�|�}晍囻	綕夝Q�㷴霴��寛т媤㘥�嫑宷峼杮薓Q�瑡璝�h�㇀㇁㇂㇃㇄Ѷ㇅�Q�㇆㇇��ѻ㇈�㇉㇊㇋㇌Q�㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ	ẾỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚǜüếềêɡ⏚⏛j����	攊丽滝鵎釟Q�撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮琑糼緍楆竉刧醌碸酞肼贋胶��肟黇䳍鷉鸌䰾���鸊Q�㗁溚舾甙䤑马骏龙禇����Q�两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅�j(��-唥	/Q0�1喐�2㧬4蹆Q5�6䁓�7睺9㨴䟕Q:�;�<擝>Q?�@�A撍蹾CQD�E�FHQI�J�KM䟴QN�O骲㩧�P㿭㔆RQS�T�U鵮頕䏙W撴哣QX�Y�Z㧻\Q]�^�_擪aQb蹨�c�df䠋Qg㿺塳�h�ikQl�m�n啹䂻䎺䪴pQq膪飵�r捹㧾�s跀嚡摼㹃uQv�w�xzQ{㦒㨆�|㕸�}噒Q���т㒼氽�Q���ч�Q���ь�羓Q���ё㗻�Q���і㾓�Q���ћ�Q���Ѡ�㿹Q�搲���kt��Q������Q���㨘���Q������Q���閪哌苄喹	��鰦骶�Q�煀腭胬尜��脴㞗卟��醶�Q�����㗝�㘉Q�嚯����Q�����Q���婔Q��垜Q	�
�
Q�㜃�Q��Q�墙剨㘚�箲孨䠀䬬鼧䧧鰟鮍Q嗻㗲嚉丨夂��靑!乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭Q"罒礻糹罓�#㓁�$耂肀&Q'卝衤见�(讠贝钅镸长门�)韦页风飞饣+鱼鸟黄歯龜丷Q,阝户钢�ņ倻淾�]龦㷉袏_灷峵䬠Q`㕙�a愢�b辧釶熑朙玺dQe㲋�f䬐磤琂冮�g䀉橣i䈣蘏Qj稪�k�l靕灍匤n鏴盙Qo龧矝亣俰傼丯众龨吴綋墒壐�p庒庙忂�q斋s椙橃Qt泿	爀�u玌㻛�v嬕璹讃xQy窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬�z�{䁱䊢娚顨杫䉶圽藖}芿Q~䲁�嵻р�龭龮宖龯曧繛湗秊㶈䓃Q���䎚䔶峕х諹屸㴒�嵸龲煗䕘Q���䱷㥸㑊ъ�諌侴Q�妿腬顖��弻�pD�я	�Q�䄂䚻��㼇龳є䃸㟖䛷�䅼Q���䕭㣔љ䕡䔛䶉䱻䵶䗪㿈�㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆Q�溻滢滚齿滨滩漤漴㵆��澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉ў䏁㗱������垾��焾�㙎榢Q�孴穉����穥穽�窻窰竂竃燑Q�䇊竚竝竪䇯咲��笋筕笩���箢筯莜Q���篐萡箒	��㶭�蒒篺簵Q�籄粃��粦晽��糉糇糦籴糳糵繧䔝�絝Q�璍綉綫焵綳����緤㴓緵�緥Q�����繮纒䌫鑬縧罀罁罇礶�駡羗Q�羣���䕜�䔃Q�翺��耈耝耯��耻耼聡Q�䦉���朥肧Q脇脚墰�汿�擧Q舘�橓�	䑺舩Q�
�俹蓢荢Q��Q芪椛�䇛�r0�蕋苐茚IQJ㛁�K�L艻苢茘NQO�P�QS㶿茝嗬莅䔋QT莬	菓㑾�U橗蕚㒖�VX葘QY葱㷓䓤檧葊�Z祘�[]Q^蓞莑䒠蒓蓤�_䉀�`䕃蔴嫲b䔧蕳䔖枿蘖Qc�d藁�e蘂gQh�i䕪蘨㙈�j号l虾蝱Qm蟮�n螱蟚蠏噡虬桖䘏衅衆�oqQr衞袜䙛袴袵揁装睷�s覇覊覧覼�t觧vQw誜瞓釾誐�x竩�y{䜓Q|煼謌謟�}�~謿譌譍誩�讐讛誯Q�䘕衏貛��у�㜥Q�賖��ш贒贃�賛灜贑Q�㻐ct��趩Ѽ�Q�㭼���竧躭躶軃鋔輙輭�Q�辥錃����辳䤪�Q���廸��迹�Q�����㦀�逷Q���遡���邨Q�郄��邮	酧㫰醩釄粬���鈎沟鉁鉢Q������Q���錬鍫���炏嫃Q���䥥鉄���Q�鍳鑛躼閅閦鐦閠濶䊹�����Q�䧟氜陻隖䅬隣��懚隶磵��隽双䦡�Q�����Q����霱虂霶䨏䔽䖅�灵孁霛Q靗孊�靟鐥僐�鞉鞟鞱鞾韀韒韠Q韮琜�韵�	䫑頴頳顋顦㬎Q
㵑��2v�飊颷飈飇䫿Q�喰飡飦飬鍸餹�䭲Q駵騌騻騐驘�㛄�髠髢Q髴䰎鬔鬭�倴鬴�㣃魐魀Q婅�鮎� 鰂鯿鰌"鷔Q#�$�%'Q(�)鵾鶃�*鸎梈鷄,Q-�.�/1鴹Q2�3麐麕麞麢䴴麪麯�4黁㭠㧥㴝伲㞾6鼂鼈䮖鐤Q7鼗	鼹嚟嚊齅馸�8韲葿齢齩竜龎爖䮾�9;煷Q<�=�>玞@QA禟�B�C鍩鏳E鋬鎁鏋QF�G爗㻫睲穃烐�HJ煾QK炣�L�M㻇OQP�Q㜢�RT㛡QU�V�W㜣Y坛QZ�[�\�x�Q���蔃ѐ	葕�Q���ѕ�Q�䓴��њ�柹㜳㰕㷧塬Q�栐䁗��џ�Q���哋嚞Ѥ嚒�Q���鏆ѩ鎜仸儫㠙�亼Q���佋侊Ѯ婨�Q�㦙��ѳ㐵伩�Q���諚Ѹ亘働儍侢伃�Q�佂倮偬傁俌俥偘僼湶��ѽ�浲Q���冨凃��䓝�Q���赺���剙劤Q�勡䙺熌�����Q�槑��㻞璙琔瑖玘䮎���叐㖄爏Q�喴��响��圝鉝雴鍦埝垍坿㘾壋媙�Q�����娬妸銏婾嫏娒�Q�����㛵洅瑃娡�xy��媁Q���鏠璌��焅䥲鐈�鎽㞠尞岞幞幈Q�����廍孏�Q�㜁��㛝��㛓脪�Q�����弌弎�Q�婫��孄蘔�衠恾�Q�忛㺸���Q懀��憙憘恵Q��
摱Q�㨩�
Q�挷�撶挱揑Q护�搻敫楲㯴�Q�唍�Q曎� �!㫠䆐#Q$�%�&(Q)磮�*�+-㑤Q.�/�0暎2晫䮓昰Q3�4晣�57昞Q8㣑�9�:㮙<Q=瓐㮖枏�>梶栞㯄檾㡣�?A樳橒櫉欅QB攑梘橌㯗橺歗�C�D鎠鋲FQG�`�銉�xz鑧涥漋Q{	�|㶏渄�}娽渊塇洤硂焻Q�烱牐犇犔��т兹�Q�瑺��ч�Q���㼆㺱ь�Q�悧㻳瓌琼鎇琷䒟��䕑疃㽣ё�㽘畕癳Q�㬙瑨��і�㫻㷍Q�㻿��ћ釺圲鍂�Q�僟��Ѡ睸�眎眏睻Q���㩞ѥ琸璛㺿�Q�䃈��Ѫ錇�砞碍碈磒珐祙Q���䄎蒖禥樭ѯ稺秴䅮�䄲鈵秱Q���Ѵ�Q�㖗啫㕰㚪��ѹ竢婙�Q���娍Ѿ磰娪�竾䇹籝籭䈑Q�����糍�Q�粎籼粮檲緜縇緓罎��"}����綗Q�䉪����柖�Q�埄�����翝笧Q�����笌�駦虅驣樜Q�㧢����騟�蒀Q���䓪脷䐂胆脉腂��飃�艢艥Q�葓��蘐��媆䅿�嬫Q�嫤��蚠���蠭Q�娂衮佅袇袿裦襥襍��襔���Q�����㺭蒣䛵䛏㟲訽訜Q�彍鈫��旔焩烄�鵭貟賩�妚矃姰䍮㛔踪躧Q�輰轊䋴汘澻��䢛潹溋�鯩㚵 邻	啱䤆醻鐄Q 䁢� 鐧�  蓥訫閙閧閗閖Q 瑅㻂� �	  㻧Q 随�
 �  㻌Q � � 琒瑫㻼靁 �\�桇䨝�F �G 	鍨I QJ �K �L 銺嬑譩䤼珹N 鞛靱餸QO 巁�P �Q 頟S 鋶QT 釥䓀�U �V X 飜QY 㼀鈪䤥萔餻饍�Z 㷽馛䭯馪驜�[ ] 檏騡嫾騯Q^ 䮐�_ 馼䮽䮗鍽塲�` 堢b Qc 硄�d �e 棅㵽鑘㤧慐g Qh 愇鱏鱓鱻鰵鰐魿鯏�i 鮟�j l 鴡䲮Qm 鸘䲰鴌�n �o q Qr 鶥蒽�s �t v 藼䔳Qw �x �y 萠藮{ Q| �} 秢�~ � 䤭Q� 㵢鏛銾鍈�� 碹鉷鑍俤㑀遤у 砽硔碶硋� Q� �� 㚚佲濚濙瀞吔ш 垻壳垊鴖埗焴㒯� 燫Q� �� э � Y���愌嫎娋䊼Q� 㜬䭻�� 鎻鎸ђ � 葲Q� �� ї � Q� 妔�� ќ 綨� Q� �� ѡ � 鋥珢㻩璴Q� �� 㻡Ѧ 櫘珳珻㻖� Q� �� ѫ � Q� �� 瑈Ѱ 炥� 銄珦鍟Q� 錱�� ѵ 鎆� Q� 䤵�� 煫Ѻ � 嚤Q� �� ѿ 唂秄� 緾Q� �� �� 䔮鐁㜊� Q� 妰�� �� � 媡㛢Q� 㚰鉟婹�� �� 鍴㳍� 䪖㦊僴㵩㵌Q� 煵䋻�� 渏�� 䓫浗� 灧沯㳖Q� �� 渂漌㵯�� 畑㚼㓈䚀㻚䡱姄鉮䤾轁� Q� 堒埈㛖�� 烾�� � Q� �� �� 梹楧� Q� �� �� � Q� �� �� 樚� Q� 萾䓟䓎�T��� �� � Q� 漗�� 茽� 菭� Q� �� 妉媂� 婡婱� Q� 㜭姯�� 㛇熎鎐暚�!婮娫!樫Q!�!�!!焝Q!�	!侰�
!峂!Q
!�!樌�!!炦焳Q!㶥泟�!�!繥姫崯㷳彜!Q!綤萦咅�!�!!坾Q!�!㿥�! !瀃Q!!嵰玏糓�"!�#!俈翧狍猐%!猸猹Q&!獁獈㺩�'!遬燵�(!珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発*!熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈Q+!礳栃礲䄃���䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀�,!総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑�-!訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿�T�鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯/!鵉鰺黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄Q0!�1!�2!椚铃妬4!塀铁㞹Q5!�6!�7!9!块煳Q:!�;!�<!呪>!Q?!咞�@!�A!C!QD!�E!惧�F!噺H!QI!�J!�K!M!QN!楕鰯螥�O!�P!R!QS!�T!�U!尠W!帋QX!�Y!�Z!朞\!Q]!�^!㙇�_!a!Qb!�c!卤蒭�d!f!Qg!讁�h!�i!k!Ql!乸炻�m!�n!���Q�!��!Ѣ!�!Q�!��!拃ѧ!�!熘桕Q�!槩㛈��!Ѭ!�!Q�!��!ѱ!苽�!Q�!��!覥Ѷ!辠�!鞸Q�!顇骽��!	ѻ!�!Q�!��!�!�!Q�!��!��!�!Q�!��!��!�!徱晈暿Q�!��!��!�!Q�!��!��!墵朎椘�!Q�!��!��!�!Q�!��!䣐䪸��!�!Q�!��!��!�!Q�!��!��!凒�!妟Q�!㮾��!��!�!垈Q�!㦛��!��!�!㝢Q�!譞��!�!�!Q�!爉��!�!奥�!Q�!�"軚�"劏圿煱"Q"�"�"喼"Q	"�
"㑳�"
"Q"䜘�"�""Q"�"偦㓻�""䝼Q"�"�""Q"垡煑�"�"遖!"Q""譢�#"�$"��T�嵛QV"	�W"�X"諪Z"Q["�\"�]"䯀_"Q`"�a"鑥�b"憕娧d"嚹Qe"�f"乪�g"陖涏i"㘘襷Qj"�k"�l"n"Qo"筂�p"�q"s"Qt"穅�u"騦�v"㙟x"Qy"禃�z"�{"崬}"Q~"䛐�"画补р"墶㜜�"Q�"��"㱔х"�"銁Q�"��"錰ъ"�"氹钟Q�"��"蠧裵я"�"Q�"溸��"є"㦤㚹䔿暶�"Q�"襃��"љ"囖䃟�"㦡Q�"��"ў"熭荦�"Q�"䲷��"ѣ"�"Q�"��"Ѩ"�"筃祾Q�"澵��"樃ѭ"厢�"鎿栶靝Q�"��"Ѳ"�"Q�"��"嶅ѷ"�"圕頣Q�"嶫��"斾槕叒Ѽ"�"㰑朶Q�"��"�"�"Q�"�����"�"Q�"��"�"�"㗊Q�"��"䣺揦�"砈鉕#䏲Q#䏟�#�##姸Q#	�#�	##Q#㷷�
#�#运犏嚋#Q#�#�##Q#�#�##Q#�#�##纟Q #�!#䲤镇�"#熢$#䶑递Q%#䶜�&#达嗁辺�'#边)#䔉繿潖檱仪㓤Q*#�+#㜺躀�,#.#Q/#�0#�1#3#㷫Q4#�5#�6#8#亚Q9#�:#嚿�;#踎孭=#Q>#揞�?#�@#攰嘭B#吚QC#㷆�D#䱽嘢嘞罉�E#奵G#蝰东QH#�I#�J#脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖L#㗎嘅嗱曱QM#㘭甴嗰喺咗啲�N#�O#廐Q#QR#�S#���#麫絚嗞Q�#抝靭咔賍燶酶揼掹揾啩��#鱲ш#冚㓟�#冧呍唞唓癦踭Q�#疱肶蠄螆裇膶萜��#䓬猄э#宐茋�#噻Q�#��#ђ#�#Q�#��#酰ї#鈈�#Q�#��#ќ#牦�#䝎Q�#��#ѡ#䃺鱝攟�#䣳Q�#��#Ѧ#�#	Q�#��#ѫ#�#熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥Q�#墚��#舭呋垪Ѱ#�#㩒Q�#獴��#䴉鯭ѵ#�#䱛Q�#��#Ѻ#葜�#Q�#��#ѿ#挮紥�#Q�#㨪逈勌㹴㙺䗩��#癀嫰��#硺�#墧䂿噼鮋嵴癔Q�#麅䳡㟻愙��#��#噝�#垧Q�#��#刴��#㖭鵼S���籖鬹埞Q$屓擓�$�$$蚭Q$�$�$	$	凾Q
$嶎霃�$麁遌笟鬂峑箣扨挵髿篏鬪籾籂粆鰕篼鬉鰛�$齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰椬叚鰊鴂䰻陁榀傦畆$駚剳酙隁酜酑Q$捿�$櫊嘑醎畺抅�$獏籰$Q$�$盖鮝个�$莾衂届槀坺刟巵从氱$伹咜哚劚趂㗾㗳歒酼龥鮗頮颴骺麨麄煺笔毺蠘罸嘠Q$蹷齓跔蹏鸜踁抂�$踨蹵竓�$稾磘泪詧瘇@���QM$鼦泎蟖痃�N$硓�O$贌狢獱謭猂瓱賫Q$蘯徺袠䒷	QR$�S$詾�T$惽癧髗鵄鍮鮏蟵賷猬霡鮰㗖犲䰇籑饊V$慙䰄麖慽坟慯抦戹㩜懢厪QW$捤栂㗒嵗�X$迚�Y$僙[$礆匲阸Q\$䁥矾糂�]$糚稭聦聣絍甅瓲覔舚朌聢�^$聛瓰脃眤覉`$畓Qa$螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦覩涹蟁�b$瓧㷛煶悤憜㳑恷罱�c$惩䭾删㰘e$Qf$�g$�h$j$Qk$�l$�m$o$峁Qp$�q$�r$t$Qu$�v$䕢嬟�w$齐麦y$t�L� ,、。.•;:?!︰…‥﹐、﹒·﹔﹕﹖﹗|–︱—︳	︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅‾_﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢﹣﹤﹥﹦∼∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂♁☉↑↓←→↖↗↙↘∥∣���	/\$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁▂▃▄▅▆▇█▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭╮╰╯═╞╪╡◢◣◥◤╱╲╳0123456789ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ〡〢〣〤〥〦〧〨〩卄ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv���wxyzΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩ˙ˉˊˇˋ	k���讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲①②③④⑤⑥⑦⑧⑨⑩⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广	彐彡攴疒辵¨ˆヽヾゝゞ々〆〇ー[]✽ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじ,��すずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをんァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶАБВГДЕЁЖЗИЙК�t�ЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя⇧↸↹㇏�k%乚�l%刂䒑龰冈龱n%	¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣ʃɐɛɔɵœøŋʊɪ���纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕	╘╧╛╓╥╖╟╫╢╙╨╜║■������%鋛�%Q�%蕌䊵珯况㙉��%��%鍄�%苮Q�%砼杄拟��%��%�%Q�%��%侫��%倈�%Q�%��%��%�%	Q�%徤��%��%滛�%儁㑺儎顬㝃萖Q�%��%兠��%兪�%Q�%��%��%�%Q�%��%宂蝽�%�%冲冸鴴凉减凑㳜凓Q�%决凢卂凭菍椾��%彻刋刦刼劵剗劔効勅簕蕂勠蘍�%�%啉滙Q�%�&�&匳&泋Q&栛珕恊㺪㣌�&燝䒢卭却�&卾&Q	&矦厓�
&厠厫厮玧�&㽙玜叁叅汉义埾叙㪫
&叠Q&�&叶�&吓灹唫晗浛呭&Q&啝咏咤䞦�&�&㶴&~�0��H&�I&啇䳭启琗喆喩	K&QL&䕒�M&暳�N&嘷曍P&暤暭噍噏磱囱鞇叾圀囯园QQ&㘣�R&坆�S&汮炋坂㚱U&埦QV&堃�W&�X&堦Z&塜墪㕡壠壜Q[&壻寿坃�\&�]&鏓㖡够梦㛃湙_&娤啓Q`&蔅姉�a&�b&d&Qe&姙�f&�g&i&浱Qj&�k&姹�l&媫婣㛦n&㜈媖瑥嫓Qo&�p&㶅�q&㜲s&広勐孶斈孼Qt&䀄䡝�u&寕慠�v&x&Qy&寳宝䴐尅�z&尓珎尔�{&}&屉䣝岅峩峯嶋Q~&�&崐崘嵆р&岺巗苼㠭�&Q�&��&芇㠶㯂帮檊幺х&�&厦亷厨Q�&帉廴��&a���廹廻㢠廼栾鐛弍�&Q�&㫞䢮��&强Ѿ&�&	Q�&彣鞽��&彲鍀��&徧嶶㵟�&Q�&��&��&釖�&Q�&怱暅��&㥣㷇㘹垐��&祱㹀悞悳�&Q�&��&璤僡媠慤萤慂��&�&憁凴Q�&憇宪��&��&懓�&Q�&懐㤲��&��&怣慜攞掋�&担Q�&拕��&捬��&㨗搸揸�&Q�&澊��&頔��&�&擡擥鑻㩦携㩗敍漖Q�&��&斅敭敟��&斵�&䬷旑䃘Q�&无旣忟��&昘��&�&晄Q�&��&晋�&晧�&晳Q�&��&�&�&Q�&矅��&馤朂�&'㬫槺Q'杧杢�'�'柗䓩栢湐鈼栁'Q'桝+���8'槡樋:'楳棃Q;'椁椀㴲㨁�<'㮀枬楡�='䋼椶榘㮡?'荣傐槹Q@'�A'橅�B'檝㯳枱櫈D'㰍欝QE'惞欵歴�F'溵�G'I'QJ'㝀吡�K'毡�L'毜氷N'QO'�P'汚舦汹�Q'䓅S'QT'�U'�V'X'㛥㳫QY'鮃�Z'�['羏样]'Q^'�_'涖浜湼漄�`'b'Qc'蔳�d'凇	萮�e'g'瑓Qh'秌湏媑�i'濸㜍澝�j'滺l'Qm'䕕鏰潄潜㵎潴�n'㴻澟�o'濓q'Qr'�s'�t'v'Qw'凟�x'�y'{'Q|'灋灾炧炁烌烕烖烟䄄㷨熴熖�}'焫煅媈煊岜�~'煏鍢�'焬Q�'��'у'熺�'炽爎"���鑂爕夑鑃爤鍁��'爮牀ѷ'梽牕牗㹕�'栍漽犂	猫Q�'��'䣭Ѽ'猨献珏玪�'Q�'珉瑉��'�'�'昣㛅Q�'��'��'珷琕椃�'琹Q�'㻗��'瑠��'瑇珤瑶莹瑬㜰瑴鏱樬璂䥓�'Q�'��'��'孆�'Q�'瓈��'甎甞��'�'寗Q�'鎅畍畊畧畮��'㼄��'疎瑝疞疴瘂瘬癑癏癯癶�'皐臯㟸Q�'��'皡皥皷盌��'葢�'Q�'��'眞眦着撯��'睘�'瞯Q�'��'��'矴�'Q�'棊碯磇磓隥礮��'磗礴碱��'辸袄�'Q�'��'禆褀椂禀��'禝�'礼禩渪Q�'㺨秆��'秔����� �l�ħ<���(�����p��X�ؽT���L���L���L��������D����x��	�����"�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[l������eh�jm�or�tw�y|�~�������������������������������������������������������(����|��d��l�	�������X���P�`��Y�W	�]�[�f�a�_���j�h�o�m���s�q�w�u����{�y��&����V�g	�Z�l�\�n�ph��	��^�t��x���	�X�i�r�`�v�z�|�}�~���@�	��k������.�x�	��p���	������������������	���������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�\�]�^�_�`�a�b�c�d�e���f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u	�[6���	�c��x���e��	��(�P� �8���@�	�J���K����>�X�	��������������������ƵƶƷƸƹƺƻƼƽƾ��|�	�����������������w�x¤�	�v��	����F�(�	ơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴ��@�	�������������������������������������������������������������������������ZD��	�b�c�d�e�f�g�h�i�p�o�n�m�l�k�j�v�y������������ʥD	������	������������������������������������N��	�������������������� 	��ҦT��P���t��� �������8����<�T�l����L`�h�@�B�C��	�������q�r�m�n�u�v�y�z�i�j�E�e�f����������������������V��	���������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f.X�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z	���������{�|�}�~ǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻ��dǼǽǾǿ����������������������������������������������������������������������������������������������������	������ڧP�@�A�B�C�D�F�I�J�M�O�P�Q�R�T�U�y	�H	��^��	�w�����	���������h���Y��	���]������$��	�����S������f�	�n����<	�����K�p�����������T	�������z������,��	�������F���~�h���h����������n��	�j�\���^�p�����f�����	�����H�E�o�\���0	�������������e������4�\	�E�}�X�d�V�M�[�����Y����������v��	�W�����������������E�S�x���Q������l	�k���{��,	�`�K����<�L	�K������~�l	�d�i�g�����h���	���z��	�BD��	�f�����R�����	�m�n�����oȭ		�p�d��
�(	�`	�t�����t�������xL�D		���Z���H�}�}����x		�J�������G�����Q�		�������x�����k��		������T�
	�I���o�����~��
	���y�����{دD
	�������������D�h
�L	�K�����S����\��
	�������������]�����
	�a���R����
	��"�	�Vd�$	����������������8	�������I���d	���������Y������������*��	�������I���r�k���Pl��	���e�D�n���c���S�����y�j�]�c�i���	�p�D�j	�����M��2�X	���������d�o��t�|	�������������f�n�������a�����]���~���i������������b	���c�G����
	���u���r��:�8
	��|�\
��	�Z�������m������p
P\H@��P����,�P���4L���(T��$Dd����� 	<	p	�	�	�	
<
`
�
�
�
0\���<Pt�
0
T
h
�
��
	���]����B��	���M�W�������������	��������Ƶ�	�������J�~�	�D�����@������J�,	�F�����N�s��X	�����Hζ|	�K�U�N���_�Y����	���`R���t	�U�D���V���	�Y�[���E���Cַ	�����P�(	����Z�D	����\	�g����޸p	���v�Q�s�@�O ��	�z�d������b��	�����	���~�n�p�����S�^���\	���z�����]�����d���b���d�L(�	�������T�|�U���z������������j�d	�v�p�K�������T�����Q���D���	���C�G��	�X���Y0�	�B��������r�$	������H��	�]���E��`	���y���L8��	�����Lz��	�M�z�W�����	�������	�R���g@����	������	����Ľ,	�����J�D	�����V���IH�`	�������d�U�������|�M�����	�H�I�}���P�G̾�	�����U��	���X��P�	���A�Z�\�� 	���\����Կ@	���`�E�`	�X�c�I����X�|	�k�n�O�F�����	���u�����y�p�x�����J	��	�o�j�_�A����`��O	�N�U���y���W����0	���Y�s�������`	�����I�C&��	�[������h��	�X�F���	�V�x�{����@�B	�C���E�V�T�W�U�F���O�M�����B�A�@�C�����������O���������X�����P�r���c��˱ƿ���Y���D�d�F�.��	�@�D�[�G�\�����E�G�F���������A�{���A�E�^�]���W�������Kp��������ܱܲ��F������	���G�H�_�����Q�����~���������E���`���o�������������F�G��ܳ�����H���k����@�����R����	�����T�S���������J�K�L�M�I�P�j�f�i�Q�a�h�N�O�H�e�g��������ɰ����ɺɮ��ɲ�g��������ɱ��ɵ��ɹɶ	ɳ��������ɫ������ɻɸɯ���sɬ���Nɴɷ�O�xɭ�f�B�����g���D���������[�����`�h6��	�d�����������G�]�n˽���C�������b�^�����Z���e�E�H���@�F���c�A�i�\���_�a��˿��������������˹��˸˼�������˳˵����x��˶������˻˴��˷��˺�o��	����������������˾˲������������P�W�V�J�f�������I�Q�]���������K��x�����Y�P�X��	�������T�������[�N�W�M�������U�R���Z�����O�\�S�L�H�����������p���n�����������������l����8��$Pt���� <Th����\��@Xx����$<X|���8P�Xt���(X������8���p0>���	���������Y���������������������[�������������������������������������������������������c�����@�����c�W	���\�b���U���Y�R���V�����g�Q���s�f�����X���S�O�]�P�N�Z�`�a�����[�^�M�_�����d���L�T�e��������������������^�W	���_���U�X���Y�V���]�S�R���������Q�\�Z�T���V������ܷ��ܽ�����ܺ��������ܿ���qܴ��ܵ��	ܾܼܸ��ܶ��ܻ��ܹ������������������������������r��������������������������������������������F�����g�������������������������i	�����������������v��w������u�h������x�_�������������l�k���I��h �a��	���S�R���������J�I�K�������Q�^�Y���Z���\�[�`�o�]���^�J�������q�K�������@�R�L�������Z����D!��	�����NȢ�T�U�A�j�`�_�����������U�R�S���a�������U�������V�[�Bɼ�}���h�G�M�N�~�k�������"	���������������������������h�������a���@����������L�Z���T���������z�B���Y�W�X�����ON��"�M�N�}�b	��������ɾ�Z���k�Fɿ�D�Eɽ�G�C�l���m�����n�P�O�����S�Q�R����������������������������|#	���c�����h���d�g�f�e�b���������������������������o�����������i�k�j�l����������������������������@$�A�B�����Z	�@�A�B�D�����C���������������������O�\�[�U�H����V�U�V�T�W�o�p�����������%���l���k	���i�j�������q���n���m���������������������������C�D��E������y���U���c���V����V��%	�L�]�^�I�q�����m�������c�b�P���_���C�l�`���K�J��X�h�����}�o���E�������������W�����������&���Q���d����	�����c�b�m���X���������n���R�����a�e�d�r���������W���g�f�L�M�s�Y���Z�������o���������@'	�D�����t�u�����������p�p�����������d�����e�����z���F�������F�����X�h�(	���������S�e�����������Y���������Z�����q������O�f�j�y�t�o�n�u�s�l�z�m�i�x�w�v�k�r�����q�{�p�Y^��(	�S�Y�U�[���X�N�Q�T�P�W�Z�O�R�V�\�������~�{���g�|�[�]�u�p�m��ʥ�}�_�aʤ�h�x�t�v�\�m�D�v�s���d�u�n�o�w�l�j�k�qʡ�^��|)�rʣ�f�c	�z�bʦ�e�i�����V�`ʢ�y�����O�����������P�y�����������I�K�M�������L�E�A���D�I�R������l*�C����	�F���H�����Q�M���S���J���G���G�B�@�����N�����H��K������x���t���}���r��C���O���Z�y���E�B�w������J�|�L��$�0+�s�~�{�@���F�G�z���v	�]�Q���u����D���N�D�����y����@��������������������B�C���A���C�f� ,	�����F�����B����@�Gԡ���E�D������X��������W���A���A���w����ԧ�����|��Ԣ���v�{�z����ԥԨ�s�������,ԩ��	�����~���BԦ����Ԫ�tԤ���u�x�}�������������������y����ԣ���N���������j�q�r�j�������u���x���-���q������	�F���n�������v���{�o�F�f�s�m���y�������������z�l�r�t�h�w���g�G�������i���H���������p�S��������,�|.���~���������������������������������������������������������C��	�������������_�������R���������������U�Q���K�����Tn�\/���N�P	�S���������I�����L�����J�O���H�������M�R���������������G�M�G�D���G�S�T�J�B�L��R�O�F�I�H�H�C�E�K��P0�A����	�k������T�O�U�����N�_�P����@���E������B�����A�����������C�������D�@�Q���F�������j��������,1�{���������}���~	�����b����z���|�`��P�������^�������`�����V��������Q�l�~��A�Y�@�X�W�T�Z������4�2��������	�����m�o�n���������������I�}�|�_�^���]���[�yʩʨ�w�z�\ʧ�[�x�W�����T�e����v��2�Z�H�I�E�F	Ԭ����ԫ���|���������������I�H�G���k�g�Y�n�o�b�f���d�c���e�a���`�������������3�}ʪ�d�v	ʫ�`��ʭ�{ʮʬ�~�������|ʯ�������s�Y��[�Z�r�@�X�W��������������V����\�A������T4�	���U�������T���Z�g���X�^�U�Y�[�]�W�}�V�Q�R���������S�\���������o�P�S�R�W�N���Q�P�A�T<�5	�X�G�J�J�O�U���I�J��Ժ�V�M�H�L��Ա���B�����ԯԽ��Կ�g�����ԴԼ������ԾԹԲئ԰��Է����ԭ��Ե��~��5Գ�����i������ԻԶ�K��Ը������	����Ԯ��ءتة��آ�����}ؤ��ب�lأإ�}��زرخ�������Kث����ح�~ذد��س��ج���6��	�e�Nا�����������������������������������n���������������������T�������{���]���c���_�f�W�����\��7�U�[�d��	���Z�`�e�V���^�b�h�X�a�w���g���Y�����Y�K�W�V�M�R�N�Q�\�����[�o�J�P�Z�O���L�X�}�~�M���O�J���LD�\8	���N���P���I�K�������x�������������S�R���r��a�b�q�c�B�[�������h�����\�����_�����t�����i�S��49	���Z�]��ʰ�^���B�`�Y�L�B����i�~�p�g�h�]�h�{���������j�������[�����q���_�`�i�j�������9ʱ	�a�C�_�`�^�Z���������a�b���M�N�O����ش�����������j�]��������k���������l�o�����n����
��:���q�p�m�k��	�L����ʶʹʸ�����R��ʵʳ����������ʴʻʷ������ʲʺ�����g�o���O�H�p�S�D�K�t���f�E�d�L�P�c��L�l;�Q�J	�M���r�i�T�R���n�l�I�k�G�F�j�h�q�m�e�N�������o���g�c�s�b���l�������p���w�V�v�d�T���f�m�q�u�r�k�n�U���h���j�i�t����H<�e���~��	�\�b�B�[���`�P���U�_�\�a�Q�[���T�R�c�S�W���X���Z�Q�Y���\���]�^�d�����������@�L����@=�����������k�C�������D	�������������x�����������B�������������O�A�����������q�����e�����[���P�@ػ��ظ��ؽ�����B�>	�@�M�����r�������������G���C��ض��������A�D����غط�s��ع�oؾؼ�E����ؿ�ص���B�@�C��D�@��F���������T��>�A���A����	�������B����E�A���r���n�������z�p�v�k�y�x�|�u���t���w�m���{���o�r�w�q�l���x�s�U�a�X�W�Z�\���_�V�r�T���?	�]�[�Y�_�^�c�^�`�b���`�W�K�V�U���X�Q�R�Z�S���\���[�T�����������Y���u���������������T�������@�\��	�]�g�C�����������������T�l�m�n�������r�s���������s�U�u�t�V�a�����]�e�����E�G���F�H�����}���������^�p��A���r�y���s�v	�t�u�w����ʼ���gʽ�W�X���v�x�z�w�{�y���b�c�����������f�w�}�h�g�c�_�`�b�d�a�s�f�e�J\�lB�����I�k�H�G�K�F	�����I�����K���H�J�����H���I�J�m�����~����������������f���g�e�d�]���������d�_�o�x�u��8C	���i�g���N�M�L�L�M�������p�\���t�������y�|�]�L�K���q������ʾʿ�����N�L���r�����u��������D����	�Y�~���Z�}�������x�������j�h�D�k�i�j�^���P�Q���O����h�i�a�����������K���s�w�v���z��������"��D	�������������������������������d���h�M�b�]���e�c�\�i�l�g�`���f���a�d�[�_�k�����^�j������d��E	���hΫΤΪΣΥ�}�{άΩ�y�X��ΧΨ��Φ�|�z��΢�~Ρέ�s�o���n�l�k�n���p�o�s�H�q�pή�r�m�t�l�m��\F�q�r	�S�R����T����X�A�Z���V�^���[��U����C��W�B�\���]��Y�u�D�x�@�������Q�����������������`���� G��������	�����R�a���O���O���P�������b�����@�S�V�N�P�U�T�C���R�D���M�Q�������������*��G���	��������������Q�e�g�k�h�c�b�l�j�j�m�d�i�k�f�e�a�f�`�e���^�h�d�i�c�_�g�j�b�X�����f������l��H���T�r�	�D�E�`���������r�q�����������t�{�������_�u���������t�W�v�w�x������ί�S�y�]���I	�����x�|�������������u�n�����m���o��������γΰαβδ���t�s�v�u���b�F�a�c�`�U�E��@J�V���i�W���T	�O�Z�\�E�[�Y�X������������q�o�N�m�p�n�l���m�k�l�n�����������n��z���~���}���F���������X��2��J�y	�z�����e�����������������z�������{��θ����ηιζκ���y�u�w�w�x�x�vε�G�J�K�H�g�f�d�e�I�j�ht��K	�Z�[�\�]�_�a�H�G�Y�`�^�S���������������p�s��r�t�q�t�u�o�s�s�q�p�r�o�f�F�G�����U�������Y�@���A�C�{�����L	��������λ�����|�a�F�b���I�}�����������������q�r�s�k�����p����μ�z�z�y�i�L�j�M�L���]��|M�b	�����u�v���t�����s�������tν�k���J�z�U�����Q�����{�m�C�n�l�^����v�T�L���������������w�v��:�4N�����u�l	��ξ�������������}�|�{�O�o�r�p�N�u�q�P�t�s�a���W�a�_�`��K�d�L�c�p�w�x��w���Q���u�����@|�O�H�I�|������	�{�������������������������n���x�����������y�����������������������������������O���` <!"�"t#8$%�%x&8'(�(t)d*(+,�,�-t.T/H0$12�2�3L45�5�6�7T8,9�9�:d;@<8=�=�>�?�@�AdB0CD�D�ETFG�G�H�I8J�J�K�LtM,N�N�O�P.�P��	̢̯�~̮̩����̪̭��̬������̣�|̥��̰��̦����̨�������{����������̧�z̫���a�}̡̤��ο��f��Q��ѡ������������	��������������������~�}���|���������������~���������������������z���k�vB�hRѤѦ	Ѩ�����SѬѣ�x�Q����Ѯ�Rѥ��ѩ��ѫ��Ѫѭѧ�k���yѢ�w���h�z�U�^�d�m�|���e�`����V�����~�T�b��(S�e�I	�c��������]��a�{��d��Y�b�W�X���q���[���_���\�d���f�c����Z�}���a���k�o�@�Q�m�D�q�e�F�S�i�l�G�[�H�N���S�s�T	�J�O�C�^���U�r�A�P�@�]�p�N�M�t�E��j�B�K���M�R�g�L�P�M�h�\���p�h���l�n�~�k�[�j�_���r�Z�@��T�q���v	�X�i�m���O�f�g�A�W�Y�V�o���������}���G�n�F�����|���E�����C�D�t����z�n�������{�t�����������H�y�B�z�����q��J��U���y�~�y	�|�~���x�������������P�x�y�x������v���}�����w������������|�{����z�����u��v�~��������V�t�|����	�y�{�����������}���w�����������������y�V�������������������������g�j�i�h�a�J�b�A�������t��lW����	���������|��������������̱����ѯ�����u�r�`�a�t�v�u�����I���y��������W�������v��̲�����<X��������	Ѱ�����v�Q�����~���}�����������������������������������Z��������������������������������R�Y����������������������	�������z�����������������E���u��̷̾����̳̺̼̿��̴̻��̸���̽����̶�����Y	�����F������������̹������������̵�����������������������Q�{���A�����@����ѱ���C�������������������B�����Z�����E��	����������������Ѳ�D���������|��Ѿ����Ѵ���������f����[ѷ����Ѻ���}ѽ�����|[��ѿ��ѸѵѶ��������Ѽѻ������������	����ѳ��������|�g�����������y�u�rզ�����w����ա�������{�j��Z�0\��գ�i����բ	�s�����h���xե�q���tդ���R���o�������x�n�l�~�������w�|�����������p���m�z�v�T�S�L�k�d��]�z���j�Y�g�w�}�k�n�|�\�m�l�~�U�y�������i	�_���p�h�q�����f�e���c�]������ѹ�V�Jݷ�W�{���y�����X�o�x�`�[���a�^�������K�M���]	�p���|ݱݶݪ�lݻ�i�z�{�b�kݤ�n�oݥݲݸ�j�dݣ�}ݺݨݩ�~ݴݫݵݭ�e���h�fݹݰݬ��ݡ�Sݯ�mݧ��ݦ�����g�c�� ��^ݳݮ	ݢ���������Q�����L�K�������������O���b�����R��������T�������������������N���P�U������b��_	����J�������[����M���������������Z��������M������������������������x�������������l`�����������	����������������E�����������V�����������������������������������Y��X�^���\�]�����Z����8a�k��	�����[�B�E�C�F�D�G�l�C���N�d�M�L�K�c�e�������������������u���������������������r������������������F(�b	�����G��������������է�������������v�����������u�x���s�w�t���q��ݼ�V����������������j��b���������H���������g	�~�y����ݽ���������������z�{�r��W������������H���|���s��������_���������I�������c	����������������ը�����}���~ݾ���Y�X�����J�I�O���^�J��������������������������������������d��	�����������@������������������������������������P�M�����c�S�K���N�Q���L��O���R������������0�`e	�������������q���������d����������լ��իխ��������ժծ����թ������٧��٢������٥٨����������٦��٣١�v��r�0f٤	�y�bݿ�v�w�u������{������������x�t�z���Y�\����Z�R�[�������S�����������M�����������������r��g�	�������������P����������������`�n�K�m�Q�R�f���P�����������������������T�������������g��٩���|��	�������B���A�~��������������կ�R�����������z�����a�g������������������������������������8��h	�P�����C���G�B�E���������@�A���A�@�F���D�������������W�����C�u�M�N�F�X�H���S���I���������V���Q�Oz��i	�������������J�P�D���������R�����U���E�L�����T�G�K���Y���M�[�\�i�^�V�L�b�J�[�E�e�R��A�}��`j�D��Q�a�`�F�X	��_�`�c�Z�K�S�f�Y�a�m�V�X�G���C�j�c�]�@�l�g�I�k�P�H�d�\�T�^�b�G�Z�Y�O�_�U�W��h���]�N�M�B�P�^�W�h�U�� k�����}���i	�O�V���������������������������������������������������������������������������D@�l���������������@��������������������	�����J�����j��մյչ����վս�����հ�������������l��������������ձ�~��������	�ղ����������������ճ����������պ���|����ռ��շջ��ն������տ����������J���m	�E����������������ٽ����������٫����ٳ������٭��������ٻ��ٶ��������ٰٵٯ������ٱ��ٺ����ٷٴ�������������dn�H�G���j٬����ټپ������٪����ٲٹ���ٸ����	������������ٮ���������������Q����������������H�Ho��������������	������������������������ո���������������������N�����������������������~����ٿ�����D������������������p��	�����������J�H�^�F�X�}�_�B�]�R�G�U�d�]�[���@�Z�F�o�Q�a�m�I�^�K�Y�g�D�k�a�M�C����W�h�`��e�S�f�E�P�L�N��q���`�_�n�O	�b��T�c�l�j�A�V�i���b�R�����\�A�������������L�����������������������W��������������q�����������������������B�l��	�����������������������X�����������������������^�{�������������������������P��r����	�����Z��������������������������������[���������������������^�����������������������������E���s������A���H	�����I����p���D�J����@�������G����\����������C��F�e�B���c���h�i�����b���������f�����e������\t	�g�d�������_�����Q�N�W�V�T�O�r���c�P�q���S�p�X�R�M���o�L�V�U�U�h�Y�Z�T�X�S�����W�������Hu��	�������������v�������������V���������b�������Y���d����������e��������������������X�v	���������p�c�e�q�d�������������������K�����j�Y�w�������B�Z�[�n������f�����k���������\���v�����e�o�f	�p�����������������������������f�g�h�����������������L���l�Z���_�q�g�������������w����	�i�j���������������`���C�H�r�����h�s�i�����q���j�o�B�A���C�@���@�A���������A�B�@�������k��Px�����������	���M���[���������]�a�~����I�J�^�����t�k�l�����D���������B�����������r����ɡ�r������ɤ����ɣ`�$y�����Dɢ	������@������������������v������E�������[�Y�L�Q�S�L�M�U�b�R�O�Q�V�Z�X���Z�K�x�M�\�T�W����z�E�G�^�U�N�J�Y�V�H�I�C�O�P�[�]�P�N	�S���\�W�R�]�F�T�K�X�D�v�����j�z��q���K�b���e�B����m�o��v�h�f�g�u���z�G�p���n�s��J	�u�y���c�I�B�M��O�@�l���k�}�r���u�x�|�A�F�s�~�w�i�_�d��`�N����������{���t��a���L��&��{�|ϡ��Ϥ�w����ϧϪϬ�t�v�{�I��ϥϭ�{�s	�d�~Ϣ�x�z���}�}�pϨϫ�O�z�����m���x��ϩ�o���^�H�|�w�v�n����ϣ�����y���q�����rh��|Ϧ�y�~	�k���L���C�����U�[�W�J�M�F�G�J���V�_�E���@�N�B�O�Y�����D�h�H�����H�E�f�Z�g�a�S���}�b���\�e�c�I�T�����A�G�`�F�Q�C�Z�i�P�K���K�����X�]	���D�e�����R�P���G�����[���U����G�D����g��L~��	��d�X�c�N�����O�I�E��@�Q�Y�B������D�^�F�\�������S�����H���F�J���h�b���_�]�f��a�R��`�A�E��W���V�T�L�K���C�A.���	����J�M�M�������A�Z������������I���������M�D��������������J�C������U�V���H�����������p�����	���D��������������B������S�K���Q�������~�W���A����G�E�B���C�O�L�T���@�F�G�����F�E������P�N�R����Ԁ	�����@���a�`�F���_�I�J���h���^���C�����R�H�K�c���j�b���W�������i���U�L�Y�e���h���T���M�������P�Z�d�����G�Q���[�����N���E�S�g�����V�l�X�f���O�������D	�]�����d�\�G����������}����n���w�m����q����s���u��6����S���}�o��������u�~�E�����|	�|�v�t�����D�z�w�x����z��~�����p��y�x�����{��t��������s�����r�����{��P�y��x�`���	����v�D�N���M�Y���K���O���F�����R�������T�C�^�����W�[�`�U�I���������L����H�_�������a���V��\��\������J	���E������A���Z�B�@���X��Q�P�]�G���������I���@���A��H�C��O��B�����D�F���E�D�J���G��F������������0��E�B���@��	������A�����N�C������Q�����������S�Y�W�������Z�R���V�U�[�������T���������X�P������q����o��>��`R S�S�T�U�VdW4X�X�Y�Zt[(\�\�]�^�_d`0ab�b�c�dXe(fg�g�h�iXjkl�l�m\n@op�p�q�r�sTt@u�u�v�wHxyz�z�{�|�}D~�̀��|�X�T�(���.������	������p���m��n�������s�r���x�_�e�y�\�v�s�g�w���t�^�a�b�c�f��]�u�d�h�`���]�j�`�k�h�_�\�^�b�e�d�g�[�i�c����f�i�a��������	�����������g���x�����������y�������������������W�e���l�������������������A�^���_�G�b���_�`�a�������	���X�Z�U�R�T�����c�����V���S�P���W�Q���Yϯ�pϳ�����p�o��϶����������ϲϱ��ϴϵϮ���������l��ϰ�܉�^	���w�x�y�P�L�n���v�{�Q���l�r�k�u�����q�M�O�z�j�m�s���t�|�p�N�m�N�T�P�L���X�J�W�i�H�[�R�l���SF����V	�Z�O�F�T�j�k�Y�M�I�[�Q�U�K�H�I�e�O�c�Y�b�X�L�`�^�_�J�c�������\�Z�K�]�a�p�����M�d�Q�C��t��Z�p�w�yޡ�����k	�����z��ޢ�����}���m�~�l�����x��ޣ���q���|�o�v�r�n�������������u�~���N�{���s���������t�����������0�����	��������������W���Q���������I���g�d�p�j�l���f�n�v���m�k�q���h�o�����c�e���b�r���i���J�Q���U�S�K�I� ��L�M�H�U�V�G�V�Q�O�L�P�N	�R�R�M�S�N�O�P�K�T�S�W�X�T�������\�b�`�������^���������a�]�_�����I�w��t�u��v�N������l�	�m�z�k���j�i�{�����l�j�k�A���������������������D�_�����y�����������G���������R�����n���b����HϷ�}	��������ϸϹ�f�Pޤ�U�����K���L�|���g�������B���e�d�c�`�x�����[ϺϽ��ϻ��ϼ��Ңҡ�~�S�]�^�o�\�_�����R�p�Q	�Q�k�j�V�h�i�lަޥީ�aިާ�����W�������s�t���Y�Z�f�r�}�q�p�n�o���l��������ɥ��ɦ�i�C�D�f�b�a������e�g�c�f�g�d	�_Ͼ�]�d�������e�a�b�\���^���c�`�������I��Ͽ��������Ҩҥҧ�X�W�UҤҩ�T�VҦ�gV�d�ңҪ�L	�e�b�f�e�n�y�h���c�m�t�s�a�d�u�r�q�`�i�p�w�T�v�s�X�V�u�S�e�u�Y�o�q�t�r�U�x�S������ޭެު������,�ޮ��ޫ������	��ްޯ�������������v���u�~�}�{�z�w�x�y�|��_�\�]�W�[�a�`�^�d�e���J���c���y��x�~á�m�n�m��������z�����������Y�v�j��ɧ����	�E���l�j�k�h�h�i�����m�����k�g�j�f���i�������[���l�h�����������������S��ү��������	���������������^�����������Z��ҴҫҶ��ҮҹҺҬҸҵҳҷ�_�]���\ұ�tҭ�sҰһҲ�^���Z�\�F�d�x�m�k�h�l�N�s�e�t�p�{�u^����r�o�Z�y�n�w�z�q�y�[�x�w�v�|	�������i�~�E��ڡ�`��ڧ����کڢ�Zڦڥ�[�a�bڨ�X�}�{ڣ�z�_�|ڤڪ�Y�^�\�]�m���l�W�k������޷��޻��ޱ��޼�s�n�_޲޳��޽޺޸޹޵޴��޾����޶	���������������q�x�����������z�������w���������������y���u��]���@�b�����A��|��	���������D���i�f�e�g�f�Z���c���X�y�\�[�d�h�Y�q�m���z�����j�h�k�n���l�g�^�B�E�u�@���o�Fâ�D�{$����A�C�G�v	�t����ã�s�j�n�����������������������nҼҽ�}޿�]ä�{�������o�`�������M��Ҿҿ�~����ګ����f�����	�����������i�^�_���r�o�p�q�I�H�|�w��������������������c�d�����F�j�i����ڬ�����������m�k�l�n�m�{���r�p��T��q	�������������������������`�v�d�c��b�a���x���{�z�������f�eڮ����ڭ������������������B��8��j	�q�sæå�|���s�������������o�p�t�������������������������\�h�i�������n�l�����k�j�e��,��������m�D���f	�g����֢֡���|�~֤֣�}����ڶ�k�jڰ�h��ڳ�lڴ�mڱ�g�iڵڲگ������������������������������������n�����������	�����������������������������������E�C�H�I��F��G����D���l�k�s�m�r�o�`�q�a�b���p�n������	���t���w�u�v���������M��¡�N���}�O�~�L�P�Jç�xè�o�K�p�Y�\�����~���}�������w�������������n�o�����G��l�	�q�m��������֦���o��֥��ڸ�qڷ�p���J�������x���Q�q�p�����u�p�r�������K�t�R�r��4�H�	���������������q���r�s��֧�����kڹ���s�����������L�d�u�c�y���S�s���n�x�w���v���y��������������v���	���������������������������������������������u�v������ְ�����w�t��ֲ֪֭֮֩֫֬������֨��ֱ��֯����ȟ��	��ڼھںڻڿ���ڽ��t�����������������C���������F���D�����E���A���B�������������@�O��������������������������	�N���Q�O��M��P���}����~�v�z�y�w�f�g�e�x�{�|�h�@����{���A������|����z�~�}���U¤¥¢��£<�l�	�T���{��é�y�z���t�w�u�v��������������f�����n�������o���������x���u�G�B��|�x����͡�z�|�~�}�{����~�P�	���������L�������������������������|��������������ֹ�z�����������������y�������}���~�{���O����$�	�P����ֺ��ֳֵַ��ֶָ��ֻ��ִ�F�����v���������������������w�����x�����������N���Q������	�������������M�L���H���O�P�������J�K����������������������������������I���������������T��X�VD���	�������S�������U�R��������Y���������W�����j���������Y��l�i���k����F���V���E���C��D�����V��x�	�G������Z�W¦�[�]�\�X�Y�ê�~��}���z�}�y�q�{�|�~�r�t�s�����������������������������r��ͣ��`�����͢	���������������������������������h���������������������ּ��ֽ��־ֿ������i��������R������S
�,����T���r	�����A���������C�A�B�����@��B��������������������m�H����I��_�^§�ë�š������ɨ�������V���rL���q�p	��ͤ�����������������������������������������������������������������������������}	�������|�D�z���{���y�A����Z�����X�@�W�\�[�Y��I�H�c�D�������G�F�����^�����_�[�]���Z�����\	����j�p���I�E�r�q�n�o���J�����`ª¨©�L��íì������������H�sͥ����ͦ�M�@���|����	�s����������������G�������������~���D�]�^�C�B�J�����K�L�a�`�P������������s�O�I��KT�@����Q�R«¬	�u���������L�A������V�M���W���������������G���X�E���M���v�����ͧ������������B�C	�@�B���D�G�E�\�S�F�C����H�A���������������V�������������O���^���������������������������j����Ь��	�d�����������������������������������]�����a�P�P�S�G�L�F�c�J�Q�H�b�b�O�N�K�M�I���R�_�Q�R���	�]���X���N�P���U�T�W���R�Q�h�����S���Y�[�V�O���i���a�Y�\���b�����c���e����������\�d��`�h	�d���f�g�v�����j���]�f�����t��x�������Q�y����w��{���z��������������O����n��d���N�����������	����L�������P�M�����u�S���c�T�a�g°�e�d²�j±�k�h®�i�b¯­��f�l��pòð���ñîï���ó	�a�x�r������w�y���k�����@������������ţŢ�����������������X���Y�m���~���{ͨ�E�F�D�W�����_�G"����H�I	�s�I�O�b�M���K�L�N���J�������������X�������������u�����r���V�d�T�e�U�f�Z���a�^�`�����_d���	�������y���x�k�������a�����������|�}���W���S�X�T�V�R�U�z³�����\��z�{�A���|�@�}���������t��ͩ����T����L���J���������K�������Z���S�Y���R�X�V�����U���T���������Q�P�W������	��������������������������������������������(�����������������	���������������������B�l��������������������������������������h�]�_�a�e�[*���Y�j	�`�d�\�X�W���v�b�Z�^�k�i�f�g�c�g�r�B���j�x�t���x���e�}�u�b�U�w�f�������v�p�������������c���q�����s������l���h�g�d	�l�i�m���y���n�o���k�`�b�����a���p�y�u�����r�v���l���t���������s�w���q���n�����z�r�m�������{���o�c����е	���������~���������������������������������������������������������_���Y�i���a�]���d�g���\���e�������`�Z�h�������c���^���b�[���f��	���n�t¹�w´µ�o�v�qº·���m¶�s�u¸�r�p�v���÷øô��õ�����ú�����ö���~�}���2�����ġ	�������������������B�������������@�B���A�l�p�n�o�pt���	�q�r�s���	�t���u���o�������� �����	���j����»����Ģ�����C��I�������u�M�`�[�_�]���^�\����@�i�j�n�o�h�k�g�m�@���p�z�|���}����������������:�T�	�ù��D����������O�����N�b�������a������������B�C�A���s�m�l�n�r�q�����d�~�������y�e�xû�ýü��������P��|�<��e���d�c	���������������������D�o�p�N�~�C�A�B�{�|�}���������������������k����z�{¼��½�l�����$��ԉ��l�(��������\�$���ؓ��������x�L�0������d�@������d�H�����p�X�$�����t�8��Ȭ��\�������L� ���ȵ����|����L�4���.�ģ�������������Q��	�����A�R�S�@�B���T���f�������A�����@��h�q��i�����������k�����l���sͪ�C�U�h�������g����	�C���B�D���F�G�E���m�t�u�E�����D�������������p�o�m�n�q�|¿¾��ťŤ��B�����	��w���v�F��ɩ����ͫ�v�w�w�t�v�y�u�{�z�x�x������ͭ����������Ͱͬ�����|��ͯ�]�qͮ����������	�[�G�H�]�e�W�Z�c�a�I�g�L�d�\�Y�I�b�D�e�V�_�F�K�`�O�M�X�J�^�N�E�f�r�\���������j�����l�����k�i�n�����H�\��o�m����	���������f���t�v�w�y�N�����E�G���H�P�L�J�M�Q�����F�O���\���K�I�������_�c���Q�O���4�	�g�Jߡ���N���K�����P���M�G���L�������|�}�~�w�u�{�sߢ�x�r�{���}�v�~���[�|�~�y�x�y�}���|�t�z�������LJ���H	�M������J��K����I���A�D���C���������@����B��������������������������������a�����t�����x�z�w����v���u�s�����r�����y��	������}�~���þ�Ĥ����EŦ�C�D���������R�N�{���������S�������P���T�U�V�O�������h������p��	�W���P���|����������R���Q��E��������ߣ�R��ͱ�i�Q�r�w�������������q�W�T�V�������S���U�X�Y���Z���ߦ	ߧߥߨ��ߤ�S�J�F�I�K�H�G��������������������k�����lĥ���F�������}�}���X�[���A�J�J�v�H�K�M���NR�`��L	ˢˣ�{��ˡ�����|�z�y�}�~�~�jͶ��͵ͷ��ͼ��Ͳ�����������͹Ϳ���ʹ����ͺ��������;͸��������ͽ��ͻ��������<�ͳ	�����R���w�A�b�\�d�a�q�t�]���k�V�`�c�eТ�w�I�UС�Y�W�R�o�~�s�vХ�M�f�}�^�xФ�u�y�|�����mУ�{���T�l��� ��p�_�Z�S�X�T�g�nӥ�[	�h�z�AӨ���J�v�Bӣ�}�QӲӪ�~ө�x�|ӵ��ӭӤ��ӳ�tӬ�����s������ӫ�����r�\Ӧ�F�z������{ӡ���uӯ	ӮӶ����ӴӰӧӢ�����w��ӱ���y�����U���x�^�`�e�y�����]�����h�o�uZ���	�b�i�S�@�w�r�����n�j�\���a�Y�o�����f�c���s���d�z�l�c�k�������Z�_�p�v�A�[�g�m���V�x�q�t�v�����l��x��`���}۪ۧ���hۣ�i�w���s�����t�]	ۤ�X��ۡ�u۬�p��ۯ���n�z�����rۭ�k�d�o�c�a��ۥ�jۨ�H۩���������~���v�f���^ۢ۫�e��۰�q�D�	�m�������|���x�����������y�g�{�bۦ�e�l��ۮ�b���g�_�u�~�����U������ߵ�����������߿�������������ߪ �@�߲	�����������������f����߶����߱���n���E߫���`߹߸����߼߾������������߰��ߴ�����������������b�L߻ߺ��߬����߭��߷����b���_	����߳��߯��߮�`���m�q��������X����[��Y�������������������������Z����]����a�����U����^��	�W���V���T�c�\��������b���_�����������m�����r���s�t�g�f�b�����v�uߩ�_�c�]�p�a���w�Z�X�d�n�i������O	�m�B������߽�[�R�U�{�\�S�Q�N�����e�����`�h���x�|���W�k�o�T�y�����L���r�V�j�P�^�Y�����l�}�z�q���w���M���I(����@�C�����E��A�G�������@�D��L	�F����U�O��F����\�J�T�����Q��D�H�B�V�S�P��������W���M�����K�{�N�S�@�E�R�D��A��j������M�O�����Q�I���P�B����R�J�G��U��	�v����H���T�K������L��V��C�N����������~����������������������������������	����������������������������������������������ÿ����������������������ħĩĦ�������������	��ĪĬ�ĭī�����a�pĨ���h�~�����������������������������������J����P���K�I�G�H�L��������������0�t���	�����V�E�F�G�����O���hӸӷ�@�B�|�{�����������~�X�Z�Y���W�������������������ЩЧЦ�i�k�jШ��r�\�	���ӿ�A���FӼ����ӽ���C����ӻ��������H��Ӿ�y��ӹ�G�D����Ӻ�E�B�I�Lץ�K��ר׫�H�F�~שקפ׬׭ׯװ�}��(��Eעס׮�Gף�I�Dצ�M	�Jת��ۿ۴����۽۱��۶��ۺ۸����۲۵��۳۾ۼ۷۹ۻ�������������������������������	���������������k����������������������������������������������d���z8���	�a�����k�g�_�e�`�o�������\�h�i�_�^�l�b�]�c�n�[�m�j�������f�������Y���]�Z�a�g�\���p���j�_�k�f�m�^�����`�n�X�lz��������d�c�h�[��	���b�i���e�����������C��������������o��������������������������������a�����������������������������^����	��������������������Įį���������B�E�A��C����D�Q�O���N�@�P�F�M�|���������������������Z�n��������x���Ъ����������	��G�����lЫ��ױ�N���������������j��������|Ь��ЮЭ�m�������I�����������J�N���M����@�l����K�L����	���Pײ�U���T���E��׸�R��׳�S׿׻׽׷׾�����O׺�R׹׵�׼״׶�Q�������������������������������D�������	���`�������������������������������������������t�B�A��v�@���n�p�����r�q����s���� ������o	�������������������������������������u�p�|���w�y�����q�u�x�����{�s�t�z�r�v���r�q���w�����s���t��	�u�x�����������������������v��������������������������������İ�����I��K��H�JŨ�Rŧ�������]�H�I�K�J�P��H�����n����	��������������W���V��������������C�F�E�D�������X�����������y�{�z��������ı����T�S����[��	�y��Я�o�����������C����A�@�B�����D���I�G�H�������}�|�}�����IJ�L�Uũ���L�x���	�q�rаб�p�T�R�Q�X�P�Y���V�S�W�U�O�_���Y���^�`�Z�[�����X�����]���\�D�F�����E���������I(�����	�����C���������������B�����@���G�������A�����H�����������������������������P�M�E�J���Q�����X�GP��	�O�K�N�L���F���L�x�{�N�����M�}�����O���K�����y���|�z�~���w���������J�������������������������������	������������������������������������������|��������~���������E����������������������������������������	�����������������������������������~������������������������K������������������������������t�����A��	�O�������������������@�B�����C������������ķ��������ĵ�����L��ĸĴ��Ķij��@�N�M�P�Q�A�V�[Xh�Ū���X���W�Z�Y	�C���B�@�A�����������@�M�N�g���m�������z�L�	�{���	�����D�D�����Z�a�T�S������������v�������b�������H���V�U�W�Q�R�����������������F�Eˤ�\�[�����������I	�Y�Z�X������������������������G�������s���t�]�^�������h�f�c�g�e�d���J�����L�Q���S�R�U�����O�K�M���T`���P�N��������	�������[�H�T���������S���U�������������������������������������N��������������d�����������������	��������H�I���J�����HĺĹ�R�����B�S�\ūŬ���E�B�������	���j�i�\�]���������в�v�u���_����������&����X��	���W���V�_�b�`�a�e�^�f�c�d���V���������������������@�L�N�K�M���T�o���w���������l���k��hh���������	��`����[�^���Y��l�]������������\�_��Z���h���o�n�����p���m���r�i�k���g�j�q���s�����[�a�Y�4��b���X�]�c�`�_�^	�W�\�Z��������A�C�@���E�B��F��D���������������������������Z�������������������������������	����J�����������������E�������A�@��C�����B������������D�R���O�S�����Q���������P���T���\.���ļľ	��Ľ������Ļ�C�E�V�D�U�aŭ�`Ů�^�]�b�c�F�_���������\�Q�P�O�p�������n���`�H�����I��������p����	�U�J�������y�x���c���a���b�������m�������n���������C�A�E�F�L�H�J���B��I���K�D�G��b�@��a�c���u����w�v�{��	�x�t�y�z�����|�g�f�d�e���������M�N�I�L�J�����������K�L�H�@�������G�M������������������������������������������F�G�H�����I	�����X�Y�W�V�Z���������������X�x�Y�W�F�dů�e�H�G�|�}�~6h�	�]���d�@�Z���P���O�����|�G���d�A�T�[�������������C�E�}˦x�	����������˥�������������`����������������жд�|г���~�{���}����е�z�j�����g�n�[�i�����l����������T�,��������X�4������p�<�8�������������l�T� �����H�����p�d�<��������p� �������l�`�D��������������`�,����������`����T�.\��h�e���k���m�f	�������p�z�v���y�~�w�|�r�o�q�}���u�x�t�y���{�s���M�e�O�g�i���N�f�j�b�h�G��O�~�h�	�P�E����J��C�B�U�M�L�K�I�N�}�D�F�H�����������������e�������R�C�A�S���D�B�Q�P���O�������E����������������>0�������������������	�������������U�o�R�S�Q�T˪˧ˬ˨����˩��˫�h���l��������������������имй��	�����jлнп��о����к����������q����p�r�������������������з�������l�V���W�T���n�S����\��	���[�\�Z�fŰ�������u�t�@�A����s�����������������_�a�]�`�o�^�p�n�s�U�T�S���q�s�u�����J�����t�r�����a�^�_�M�`�[�\�J	�K�]�L���������������������������������������O�P�N�p�R�����_���Q�^������Ŀ���c���]�H���I����F���C�]���q�q�o����	�V��������q�������B�^�x�v�z�D�y�w�I�C����[�����B����@����C������P�A�����m���l�l��j�b�q�e�o�v�n�y�s�u�c	�i�w�u�h�x�z�k���r�s�w�u���t�f�r�v���t�s�d�g�p���c�����������a����W�Y�e����Z�\�f�L��[�w	���d���b��^���c������`������M���X���g�]��������x���_���������������x������z�������	4��������r������@����~���	�����|���������y����{����w�v������}��R�����Z�U���g�P���J�O�V����N	��e�T�q�c�d�N��X�t�y�s���o�w�u�h�b�}�W�~�K�x	�m�k�f�A�n�{�j�z��@�S�[�v�|�r�l�Q�A����p�Y�i���B�C�Y���������D���D�A��	��C����Q��	�������B�@��������@������C�E���E�������������B��������A�������������D�����v������������	���U�E���E�K����������������������������	���������������������t�����������������E�����������_���������������L���������z��
����������F���y�l�`�Y��	�T�c�[���X�e�U���_�������a���W�f�X�]�b�������j�g�k�^�Z�h�j�\���G�������d�f���i�S�V�I�H�J��V
��s	�c���q�d�a���l���h���r�b�e���t�y�m�p�������i�d�������`���C�����o���k�u��g�n���z���j���B���f����@������
�����	�����D��H�����A��������C���������K����E�M�������������a�f�O�h�N�I���d�j�N�J�K�`�g�M�e�L�_�c�b�O�^�
���i	�@�Cű�m�p�l�n�o�i�j�g���k�hŲų�Q�K�M�����L�N���J�����N�C�����D�����S�R�T�_�U�^�V�r�u�t�h�s�R���r�p�q�w����������	������^x�	�����������	�S��	�t�����D�x��v��$���	���{���E�F���}�z�y���|�{�~�����{�����h���������������T���������������P���[���\�M�K���I�J�F�F�N�H�Lf��	�������������������G��n�l�m������w�x��E�G�F���P�m�l�k���V��	����ɪ�X���V�Y�Wˮ����˰��˯˭�����W���������������t�����@������	���������������������Y�����E�����F�~�|�}�������I���H�K���J�����������������G���},
�ܣ��	ܢ�������|�~ܡ�����������������j�k�����i���������������G�H�O�I�������o������A���G���Ln
�����ܤܦ��������ܥ�n�o�m���l��	����P�J���p�t��q���u��s�y�����B������ܨܧ�������s�p���r���q����
���	��R�]��^�_��`�Q�N�K�P�S�L�R�O�M������������f�w�v��x�~��}�z��{�|�H�I�����S�k�n���Q�R�oŴŵ�q�
X�[���E���G	�����F�W�������C�f�t�����Q�R���D���a����S�����Mܩ�Fܫܪ�Q�����u�v�������������48������������	�X�����c�b��d�V�U�T�T��P��A�@��������}���{�~�|�y�@�z���]��z���\�J�|�K�R���pv��ŷ�^Ŷ�O�P�H���v�i	���������������C�B�����������q�r���������W�D���������X�A���L�M�T���Q�������N����ܬ��	�z�|�������w�x�{�y���t��������g���W��e���[�����f�Y���Z�U�[�����Y�X�V�Z�W��	�E�J�F�I���^���H�G���D�B�E�C����F����@��A����Q�N�O�P�r�V���U���t�sŸ�j���I�`�X������<�	��ܭ������������h�����B��b�G��B���~H	�u�R�S�i��	�t�D�C�s�A�u�������`�������I���H�O�J������ܮ�K�����d���~��������}������	��	������������i���f�\��k�j���������l�g�a�_�i�^�]�`�\�K�^�]�_�N�L�M�R�K�Q�T�S�P�O���j�R�M��f��J�H�IX
�{��k�	�C���D�l�X�W�g�U�T�����Y�v�w�W�v�V�w���l�a�Y���m��D4	���P�U���j�����`�W�V���L�����l�������������������������������w����	���������o���������������n�q�s�����r�������t���p���m�o�����c�f�d�c�U�i�h�g�b�b�a�e�d�Z�R�^�[�]�\�Y�_�b�`�a�@�T	���X�c��������S��M��U����E�F������]��q�����m��`�^���]�c�a�s���\�Z�[���_���b�x�~�T�q�y�[��
<
�Z�}�|�Y�{�X�z	�}���~�{Ż�x�|�����y�zź�R���V�S�����m���J�v�j�W���k���������z����L,	���������������j���l�W�u�e�j���m�f�_�d�k����N�	�f�d�e���\����ż�������b�]����I�[���\�����������h�v�w�������^�n�q�p�o�g�h�f�e�\�<	�g�W�O���P��e�������G���r�g�i�h�`����������Ž�T�U�V�K�c�����x�i��^���a���J�{���r�d����A������������i�������z�y��	�i�����S�R�Q�h�^���]�����L���������������������t���|�����������{�}�x�v��w��T��s�u�y��	�t�r�u������m�`�|�j�{�z�~���j�m���l���t�o�s�q�p�n�k�C�B�D�A�u�g���������������X��	���������W�U�T���������J�������K���v���������������I�H�������������w�x�l�o�V�p�T	�o�m�s�q�k�v���j�q���r���n���u�c�t�g�������z�������`�V���������_��ſ���������������~���������p��	��������ž�Z�\�_�[�`���Y�W�����]�����X�^�����M�����������Z�\�[�y�P�x�w�z�s�t��������\���	���������}�����~����o��k������p��������l��m�n���z�{�~�|�v���y��}���E���F����w���^�	�}�������H�����Y���������������������Z�����[�M�x�����O���P���s�������N�������������������z���X�������{�����������L������	�}�{���������|�x���~���z���w���������y�������������w�����a�������b�������d��������������"8�����c������	���������������������������s�����������������������i�n�d�g���k�r���e�o�s�j�c�m�l�q�p���h�b�f�N�O�a��������d,����������������	�����]���^�}�`�_�b�a�|�{���������x�|�����}���(	���������P�Q�������T��������������G�����	�����Q�S�����p�R�m���������e�������c�����������������A����������T���������������J*������t����	������d�����H�u�����r���q��L�J�K�I���\�������������������f�����v�w���d�}�u��ܰ��������l�������	�x�R���e�~����������]�������g�����y����������A�����������^������������������|�{�z������M�������}�������f�������N������~��	�������������i���h�������������������i�j�����������������T�������S�g�j�i�h������	�s���e�����������������t����������C�m�t��������������ȡȣ���H2�	����������t(�������|�d�D�,�������������p�������l��xP0���x@	�	P
,�L4
$�4���L��P��P0$ �����x(.0	��bd<	�I�����C�H�����]�^�����A���D�����������������������G�F�������H�I�������������������������������������������������������@�����P	�F�G�������D���XP�H�X���P|�|:�	�q�u|�	�v�H����	�����|���	�N�K�z�H�G��B 	�E�S���, 	�����r�H 	�G����d 	���}����J� 	�����{�� 	���_�T������ �y	�t� 	�u��R� 	�I���|�c�`�m�!�b	���k�j�8!	�T�s����X!	�B�v�eZx!	�l��!	�n����������!	�����u �!	�@bd�!	�v���{b�!	�m�������B���\�"	�����������D"	�{��(h"	����j�"	����"	�P4�"	��Ҧ�"	����"	�F�c0�"	����r#	���#	�f�,#	�S�b�@#	����8X#	����zp#	����#	���@�b������#	�����������r@ �#	�^�������\��� �#	���C������������� $	�����|����!@$	�_�����Y�k������H!d$	�D�J�����!�$	�d���������������M���W�C�D�!�$	�����T��"�$	��P"%	�������c���e�o�~�C���",%	�����������f�p�u�����"d%	���]�H���@�����v��#�%	���������w�d�gX#�%	�K�S���J�������#�%	���_�#(&	�������X������$@&	�a���}����`$l&���$ @ P�\ x � � � � !0!P!p!�!�!�!�!�!"<"`"x"�"�"�"�"�"�"#$#8#P#h#�#�#�#�#$8$\$�$�$�$%$%\%�%�%�% &8&d&�&�$�&	�B�y�z�$|'	�����~�D���|�q��&%�'	�������N��h%�'���c	�I���n�������Z�{�|�%�'	�������%((	�A�r��.&D(��	��p&`(	�r�&x(	�s�&�(	�_��6'�(	������x'�(	�����'�(	�|�E�n�V���K�'�(	����>()	�������(,)	���@�����(H)	�N�h�l��)h)	���j�tF)�)	�����A�)�)	�����)�)	��*�)	����N*�)	���������**	���*$*	������+8*������	�G�������a���������ZV+T*	�������G�f�U�+�*	���C���������������+�*	�d�������N�D��,�*	�����i���K���|����������������^, +	���������������U�,l+�t	�����������l���c���,�+	���������`�X�v������$-�+	���J�I�x����f-,	�U�V�Q���������D�U�c���-4,	���k���Q�-p,�W	�x���P,.�,	�L��n.�,	�@���.�,	�A���a�.�,	��4/�,	���|v/-	�B�/(-	�C�/<-	�y���D<0P-	���{�n~0l-	���y�^�0�-	���S����1�-	��������D1�-	�t�����1�-	�E�G�1.	�P�H
2.	�[�/0.	����L2D.	�L�2\.�'�'�' (<(X(p(�(�(�(�(�()$)@)`)�)�)�)�)P��)�)*0*L*�*�*�*+d+�+�+,,,h,�,�,�,�,�,- -4-H-d-�-�-�-�-�-.(.<.T.h.�2p.	�K���i3\/	��T3x/	���s�3�/	�Y�/�/	�������3�/	���*�/	�B��4�/	��P"0	�N�&0	���_\4(0	���@0	�N�O�P�4T0	���P�4p0	�s������"5�0	�������Xd5�0	�^�Y�u�5�0	��"��0	���p�q�5�0	�w���m*61	�]��l601	���A�6H1	�k�����6`1	�}���M���Q27|1	�����1	�����h�mt7�1	�g��1	���7�1	���l�R�7�1	�p�2	����:8,2	����|8D2	�S�U���8\2��	�V9x2	��B9�2	���W���Y�9�2	�[���]�9�2	�O��:�2	�{�BJ:�2	�P���P�:3	�`�E�F���:,3	�b�{���`���c;L3	�i�G��R;t3	�|�e�f�;�3	�r�z���;�3	���h�����w�g<�3	�Y���3	����Z<4	�i���<4	���Q�<44	�_ =L4	�jb=`4	�k���=t4P�p/�/�/�/�/�/�/0 080L0h0�0�0�0�0�01(1@1X1t1�1�1�1�1�12$2<2T2p2�2�2�2�2�23$3D3l3�3�3�3�3�34,4D4X4l4�4�=�4	�lҦl5	�N���m�g��(>�5	������j>�5	��T3�5	�����>�5	�F��5	���������>6	������������0? 6	�����������w��r?H6	�����Z�?t6	�T���Q�������?�6	������8@�6��	���nz@�6	�pb=�6	���o���@�{�������@7��	�Y�@47	���@�_@AL7	���h7	�v���A|7	���G�t�A�7	��������B�7	�F�O�I�uHB�7�\	�Q�y�K�B�7��	�X�_���B8	���|�C����C08	���MPCT8	�[�z�������X�Cl8	��B9�8	�������C�8	��������D�8	�����8	��XD�8	���9	�i�R���D 9	��T3<9	�nT3P9	��T	d9	�|���|�g���Dx9	���N���t������E�9��	����`E�9	�{���S�������X�y�{�E�9	�����E:	�b�������������H��&F0:	�������K����hFd:	�@���^�_���J�p�F�:	�g���:	�����c�H�F�:������	�����~.G�:��	�C���������H��pG;x5�5�5�5�5�56@6l6�6�6�6�6P��6,7D7`7t7�7�7�7�78(8L8d8�8�8�8�8�89949H9\9p9�9�9�9:(:\:�:�:�:�:;<;�GD;	�����J���K���G<	��6H@<	���Z������xHT<	���Y���Hx<	���[�����H�<��	���F����������������>I�<	�m�|�a�����I�<	���`�R�I=	�OJ0=	�n�m�d�S���xFJD=	���]���Z�P�Jl=	�����b���O�J�=	���R��K�=	�����k����NK�=	�������k�K�=	�Q�q�������K>	���L�jL8>	���a��VLT>	���D�����Lp>	�i�b���L�>	���UM�>	�w^M�>	��P"�>	�����M�>	�����M?	��6H?	�}"�0?	�f�Y��$ND?	�XfN`?	��D�t?	���T�N�?	�tXD�?	�����t���������N�?�~��	�}�o�a�����R�X�h��,O�?�����I��	�M���I���q����nO@	�n�����C�Y���f�}�o�F�m�����|�����e�~�X�w���OX@	�������������m�F���F�[�����g�O�@	���������������b���k�����N���g4PA	�����`���u�����{���j�^����������vPPA	�~���h�����[�������]�V�b���O���P�A��	���_���e�L���P�A	�[fNB	����,B	�m��@B	��<QTB	����~QhB	���s�Q�B	�t��R�B	�K^M�B	�U�iDR�B	���R�B	�v�R�B	���h
SC	��LSC	���S0C	�������������SDC	�{XDlC8<L<p<�<�<�<=(=<=d=�=�=�=�=>0>L>h>�>�>�>�>P��>�>?(?<?X?l?�?�?�?�?@P@�@�@HA�A�AB$B8BLB`BxB�B�B�B�B�B�BC(C<CdCxCT�C	��4tD	��TT�D	���T�D	�E�T�D	������U�D	�J������\U�D	�����UE	�Z�RE	���&,E	�o���U@E	�_����"VXE	��������dVtE	�������V�E	�ST3�E	�������V�E	���I����������*W�E	�������ylWF	�{�~���W,F	�F���WHF	�p�`F	����2XtF	����tX�F	�@���W���X�F	���X�F	���C�D�O:Y�F	������|Y�F	�o���J�YG	���70G	����ZDG	�N4\G	��BZpG	�`"��G	���������Z�G	�Q�Z�G	��b=�G	�����d[�G	���a�dJ[�G	�[�����[H	���lR4H	�s���[LH�u�q	�`\dH	�j�LR\�H	�R�7�H	�����\�H	�TLS�H	��<Q�H	���C�������\�H	����]I	��T3(I	��d�<I	�b��Z]PI�D�D�DP��D�D�DE$E8EPElE�E�E�E�EF$F@FXFlF�F�F�F�F�FG(G<GTGhG|G�G�G�G�G�GH,HDH\HxH�H�H�H�H�HI I4IHI`I�]hI	�}���]DJ	���� ^\J	�����W�wb^tJ	�����^�J	�m���V�@�^�J	������(_�J	���T�J	��������j_�J	���RK	�G��0K	�������_DK	�I�_`K	���L0`tK	�����`�Kr`�K	���p�`�K	�C�G���T���`�K	�ITT�K	�^�X�K	�^�\�K8aL	����za,L	���_�L�aDL	�����V�a`L	��@b|L	�T�b�L	�^���h�b�L	��BZ�L	���S�L	���a�_c�L	�M�[�iHcM	�cbd M	�����g�i�c4M	���TM	�e���chM	�T�ld�M	�n�]�sPd�M	�j�m���d�M	�M�������^���d�M	�L�u�����t�Ee�M	���j�N�x�UXe N��	�A�eDN	�\�*\N����	�M�f�e�epN�I���B	�z�����[f�N�M	���a`f�N	�K�������@�F�g�Z���f�N	�A���fO	�������L���U���o�}&g(O	���o����hg\O��	�V�����g|O	�^�l�����S���k�g�O	�����S�y.h�O	�o���x�B�Z�����aph�O	�OB9P	�s���h,P	�������hDP	�C��~Q`PTJlJ�JP��J�J�J�JK(K<KXKlK�K�K�K�K�KL$L<LXLtL�L�L�L�L�L�LM,MLM`MxM�M�M�M�MN<NTNhN�N�N�NO OTOtO�O�O�OP$P<PXPpP6ixP	��LShQ	���K�Jxi|Q	���������i�Q	���T�\�i�Q	�E�F�����`>j�Q	�H�G���j�Q	���R	�qJ(R	�E�<R��	�������p�jPR	��B9tR	�RTT�R	��T3�R	�Pk�R	�}��R	���R�R	����Fk�R	��b=S	��T	S	�����i���k,S	Ȥ�����A�kLS	������llS	��"��S	���L�`Nl�S	���X�l�S	�����l�S	��BZ�S	����m�S	����VmT	�qP",T	���m@T	�����mTT	��D�lT	����n�T	������^n�T	�p���s�n�T	�[���d�n�T	��b=�T	�h����������$oU	�A��fo(U	�l���o@U	��TTXU	�Z4lU	�H^��U	�JZc�U	�l =�U	�������n�o�U	�@������,p�U	���S�U	�j��npV	����(V	�|�<VtQ�Q�Q�Q�QRP� R4RHRlR�R�R�R�R�R�R�RS$SDSdS�S�S�S�S�S�ST$T8TLTdTxT�T�T�T�T�T U8UPUdUxU�U�U�U�U�UV V4VHV�pPV	�A���A�����p0W	��P"TW	�����b�N4qhW	���f��vq�W	�����W	���S���q�W	�@�A�E�q�W	�s���B<r�W	�a��~rX	��J$X	�����r8X	�C���D��sPX	�N����DspX	�E�s�X	�OTT�X	�G�����s�X	��XD�X	�^�c�W
t�X	�f4Y	����LtY�b	�g�����t,Y	�H���O�]�tLY	���k��lY	�\�iu�Y	�W�UTu�Y	���s�u�Y	�����K�������C���u�Y	�F�`�S���N�@v�Y��	�B�V�e�l�J�P�R���Z�I�G\v$Z	���x���`�N�V�vdZ	���a���]�����O�����@�v�Z	���}��������"w�Z��	�{���{�w���C�����������e��dw�Z	�}�e�����������H�w4[	�S�����]�_�_�n�]���wd[	���������i*x�[	���U�T�A�����z���G����������lx�[	���V�����f�G���������x\	�O���M�x<\	��b=X\	�N���\l\	������2y�\	����ty�\	�����r�z�y�\	�����y�\	�XZc�\LW`W�W�W�W�W�WP�XX0XHXhX�X�X�X�X�X�XY$YDYdY|Y�Y�Y�Y�YZ\Z�Z�Z�Z,[\[�[�[�[4\P\d\|\�\�\�\�\�\:z]	�F��]	�r���B�����Y|z�]�e	�����Y���z^	���[�\{,^	�~���^��B{H^	�`���{h^	�����{�^	��������|�^	��P"�^	�F�K�X�L�cJ|�^	���e�f�|�^	�Z�d�l�|_	���g}(_	�p"�@_	���RT_	�P6Hh_	���m|_	�h���t��R}�_	���Q���}�_	�w�d�v�i���j�}�_	�N�T�_	�k��~`	�l�2 `	�e�4`	�]�mZ~H`	�Z�``	�BҦt`	����`	�j�_�`	�n���~�`	���o�~�`	�� �`	����b�`	�r�2a	���q� a	�U�q�8a	�r��(�Pa	�t*ha	��j�|aP��]^$^@^`^x^�^�^�^�^_ _8_L_`_t_�_�_�_�_``,`@`X`l`�`�`�`�`�`�`aa0aHa`ata�a���a	�\"�<b	�����Pb	�w��������0�hb	�U�x���|r��b	�w�R�b	�u���v���I���b	�y�����b	����8��b	�u�R�E�����_��z�c	���w��@c	�V�Xc	�@�Zlc	��b=�c	��J�c	�x�z���c	���K@��c	�������c	�u�Z�c	��kdHbP�`b�b�b�b�b�bc8cPcdcxc�c�c�c�c�c�cdăd	�t���td�G	��H��d	�H�w���d	�R��d	�����z̄�d	��"��dP��d�d�d�d�d�d�ep�t'T/d5<lD<J`Q(W�]4bld eP�(e����8�P�p������$�X����h�P����Q��`�4p�,��`e�����heĀÁǍÀĒÉĚÈŌÓǑÒẾỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚǜüếềêɡ��e攊丽滝鵎釟撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮琑糼緍楆竉刧醌碸酞肼贋胶肟黇䳍鷉鸌䰾鸊㗁溚舾甙䤑马骏龙禇两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅�lh唥喐㧬蹆䁓睺㨴䟕擝撍蹾䟴骲㩧㿭㔆鵮頕䏙撴哣㧻擪蹨䠋㿺塳啹䂻䎺䪴膪飵捹㧾跀嚡摼㹃㦒㨆㕸噒㒼氽羓㗻㾓㿹搲��j㨘閪哌苄喹鰦骶煀腭胬尜脴㞗卟醶㗝㘉嚯婔垜㜃墙剨㘚箲孨䠀䬬鼧䧧鰟鮍嗻㗲嚉丨夂靑乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭罒礻糹罓㓁耂肀卝衤见讠贝钅镸长门韦页风飞饣鱼鸟黄歯龜丷阝户钢�lm倻淾㷉袏灷峵䬠㕙愢辧釶熑朙玺㲋䬐磤琂冮䀉橣䈣蘏稪靕灍匤鏴盙矝亣俰傼丯众吴綋墒壐庒庙忂斋椙橃泿爀玌㻛嬕璹讃窓篬糃繬苸薗袐躹迏蕟駠鈡䁱䊢娚顨杫䉶圽藖芿䲁嵻宖繛��o崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆溻滢滚齿滨滩漤漴㵆澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉䏁㗱�lr垾焾㙎榢孴穉穥穽窻窰竂竃燑䇊竚竝竪䇯咲笋筕笩箢筯莜篐萡箒㶭蒒篺簵籄粃粦晽糉糇糦籴糳糵繧䔝絝璍綉綫焵綳緤㴓緵緥繮纒䌫鑬縧罀罁罇礶駡羗羣䕜䔃翺耈耝耯耻耼聡䦉朥肧脇脚墰汿擧舘橓䑺舩俹蓢荢芪椛䇛��t蕋苐茚㛁艻苢茘㶿茝嗬莅䔋莬菓㑾橗蕚㒖葘葱㷓䓤檧葊祘蓞莑䒠蒓蓤䉀䕃蔴嫲䔧蕳䔖枿蘖藁蘂䕪蘨㙈号虾蝱蟮螱蟚蠏噡虬桖䘏衅衆衞袜䙛袴袵揁装睷覇覊覧覼觧誜瞓釾誐竩䜓煼謌謟謿譌譍誩讐讛誯䘕衏貛㜥賖贒贃賛灜贑㻐�lw趩㭼竧躭躶軃鋔輙輭辥錃辳䤪廸迹㦀逷遡邨郄邮酧㫰醩釄粬鈎沟鉁鉢錬鍫炏嫃䥥鉄鍳鑛躼閅閦鐦閠濶䊹䧟氜陻隖䅬隣懚隶磵隽双䦡霱虂霶䨏䔽䖅灵孁霛靗孊靟鐥僐鞉鞟鞱鞾韀韒韠韮琜韵䫑頴頳顋顦㬎㵑��y飊颷飈飇䫿喰飡飦飬鍸餹䭲駵騌騻騐驘㛄髠髢髴䰎鬔鬭倴鬴㣃魐魀婅鮎鰂鯿鰌鷔鵾鶃鸎梈鷄鴹麐麕麞麢䴴麪麯黁㭠㧥㴝伲㞾鼂鼈䮖鐤鼗鼹嚟嚊齅馸韲葿齢齩竜龎爖䮾煷玞禟鍩鏳鋬鎁鏋爗㻫睲穃烐煾炣㻇㜢㛡㜣坛�l|蔃葕䓴柹㜳㰕㷧塬栐䁗哋嚞嚒鏆鎜仸儫㠙亼佋侊婨㦙㐵伩諚亘働儍侢伃佂倮偬傁俌俥偘僼湶浲冨凃䓝赺剙劤勡䙺熌槑㻞璙琔瑖玘䮎叐㖄爏喴响圝鉝雴鍦埝垍坿㘾壋媙娬妸銏婾嫏娒㛵洅瑃娡��~媁鏠璌焅䥲鐈鎽㞠尞岞幞幈廍孏㜁㛝㛓脪弌弎婫孄蘔衠恾忛㺸懀憙憘恵摱㨩挷撶挱揑护搻敫楲㯴唍曎㫠䆐磮㑤暎晫䮓昰晣昞㣑㮙瓐㮖枏梶栞㯄檾㡣樳橒櫉欅攑梘橌㯗橺歗鎠鋲�l�銉鑧涥漋㶏渄娽渊塇洤硂焻烱牐犇犔兹瑺㼆㺱悧㻳瓌琼鎇琷䒟䕑疃㽣㽘畕癳㬙瑨㫻㷍㻿釺圲鍂僟睸眎眏睻㩞琸璛㺿䃈錇砞碍碈磒珐祙䄎蒖禥樭稺秴䅮䄲鈵秱㖗啫㕰㚪竢婙娍磰娪竾䇹籝籭䈑糍粎籼粮檲緜縇緓罎��綗䉪柖埄翝笧笌駦虅驣樜㧢騟蒀䓪脷䐂胆脉腂飃艢艥葓蘐媆䅿嬫嫤蚠蠭娂衮佅袇袿裦襥襍襔㺭蒣䛵䛏㟲訽訜彍鈫旔焩烄鵭貟賩妚矃姰䍮㛔踪躧輰轊䋴汘澻䢛潹溋鯩㚵邻啱䤆醻鐄䁢鐧蓥訫閙閧閗閖瑅㻂㻧随㻌琒瑫㻼靁�l�桇䨝鍨銺嬑譩䤼珹鞛靱餸巁頟鋶釥䓀飜㼀鈪䤥萔餻饍㷽馛䭯馪驜檏騡嫾騯䮐馼䮽䮗鍽塲堢硄棅㵽鑘㤧慐愇鱏鱓鱻鰵鰐魿鯏鮟鴡䲮鸘䲰鴌鶥蒽藼䔳萠藮秢䤭㵢鏛銾鍈碹鉷鑍俤㑀遤砽硔碶硋㚚佲濚濙瀞吔垻壳垊鴖埗焴㒯燫��愌嫎娋䊼㜬䭻鎻鎸葲妔綨鋥珢㻩璴㻡櫘珳珻㻖瑈炥銄珦鍟錱鎆䤵煫嚤唂秄緾䔮鐁㜊妰媡㛢㚰鉟婹鍴㳍䪖㦊僴㵩㵌煵䋻渏䓫浗灧沯㳖渂漌㵯畑㚼㓈䚀㻚䡱姄鉮䤾轁堒埈㛖烾梹楧樚萾䓟䓎�l�漗茽菭妉媂婡婱㜭姯㛇熎鎐暚婮娫樫焝侰峂樌炦焳㶥泟繥姫崯㷳彜綤萦咅坾㿥瀃嵰玏糓俈翧狍猐猸猹獁獈㺩遬燵珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈礳栃礲䄃��䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿�l�鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯鵉鰺黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄椚铃妬塀铁㞹块煳呪咞惧噺楕鰯螥尠帋朞㙇卤蒭讁乸炻��拃熘桕槩㛈苽覥辠鞸顇骽徱晈暿墵朎椘䣐䪸凒妟㮾垈㦛㝢譞爉奥軚劏圿煱喼㑳䜘偦㓻䝼垡煑遖譢�l�嵛諪䯀鑥憕娧嚹乪陖涏㘘襷筂穅騦㙟禃崬䛐画补墶㜜㱔銁錰氹钟蠧裵溸㦤㚹䔿暶襃囖䃟㦡熭荦䲷筃祾澵樃厢鎿栶靝嶅圕頣嶫斾槕叒㰑朶��㗊䣺揦砈鉕䏲䏟姸㷷运犏嚋纟䲤镇熢䶑递䶜达嗁辺边䔉繿潖檱仪㓤㜺躀㷫亚嚿踎孭揞攰嘭吚㷆䱽嘢嘞罉奵蝰东脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖㗎嘅嗱曱㘭甴嗰喺咗啲廐�l�麫絚嗞抝靭咔賍燶酶揼掹揾啩鱲冚㓟冧呍唞唓癦踭疱肶蠄螆裇膶萜䓬猄宐茋噻酰鈈牦䝎䃺鱝攟䣳熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥墚舭呋垪㩒獴䴉鯭䱛葜挮紥㨪逈勌㹴㙺䗩癀嫰硺䞶墧䂿噼鮋嵴癔麅䳡㟻愙噝垧刴㖭鵼��籖鬹埞屓擓蚭凾嶎霃麁遌笟鬂峑箣扨挵髿篏鬪籾籂粆鰕篼鬉鰛齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰椬叚鰊鴂䰻陁榀傦畆駚剳酙隁酜酑捿櫊嘑醎畺抅獏籰盖鮝个莾衂届槀坺刟巵从氱伹咜哚劚趂㗾㗳歒酼龥鮗頮颴骺麨麄煺笔毺蠘罸嘠蹷齓跔蹏鸜踁抂踨蹵竓稾磘泪詧瘇�l�鼦泎蟖痃硓贌狢獱謭猂瓱賫蘯徺袠䒷詾惽癧髗鵄鍮鮏蟵賷猬霡鮰㗖犲䰇籑饊慙䰄麖慽坟慯抦戹㩜懢厪捤栂㗒嵗迚僙礆匲阸䁥矾糂糚稭聦聣絍甅瓲覔舚朌聢聛瓰脃眤覉畓螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦覩涹蟁瓧㷛煶悤憜㳑恷罱惩䭾删㰘峁䕢嬟齐麦��讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲①②③④⑤⑥⑦⑧⑨⑩⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广彐彡攴疒辵¨ˆヽヾゝゞ々〆〇ー[]✽ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじ�l�ЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя⇧↸↹乚刂冈¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣ʃɐɛɔɵœøŋʊɪ��纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯■�l�鋛蕌䊵珯况㙉鍄苮砼杄拟侫倈徤滛儁㑺儎顬㝃萖兠兪宂蝽冲冸鴴凉减凑㳜凓决凢卂凭菍椾彻刋刦刼劵剗劔効勅簕蕂勠蘍啉滙匳泋栛珕恊㺪㣌燝䒢卭却卾矦厓厠厫厮玧㽙玜叁叅汉义埾叙㪫叠叶吓灹唫晗浛呭啝咏咤䞦㶴��啇䳭启琗喆喩䕒暳嘷曍暤暭噍噏磱囱鞇叾圀囯园㘣坆汮炋坂㚱埦堃堦塜墪㕡壠壜壻寿坃鏓㖡够梦㛃湙娤啓蔅姉姙浱姹媫婣㛦㜈媖瑥嫓㶅㜲広勐孶斈孼䀄䡝寕慠寳宝䴐尅尓珎尔屉䣝岅峩峯嶋崐崘嵆岺巗苼㠭芇㠶㯂帮檊幺厦亷厨帉廴�l�廹廻㢠廼栾鐛弍㫞䢮强彣鞽彲鍀徧嶶㵟釖怱暅㥣㷇㘹垐祱㹀悞悳璤僡媠慤萤慂憁凴憇宪懓懐㤲怣慜攞掋担拕捬㨗搸揸澊頔擡擥鑻㩦携㩗敍漖斅敭敟斵䬷旑䃘无旣忟昘晄晋晧晳矅馤朂㬫槺杧杢柗䓩栢湐鈼栁桝��槡樋楳棃椁椀㴲㨁㮀枬楡䋼椶榘㮡荣傐槹橅檝㯳枱櫈㰍欝惞欵歴溵㝀吡毡毜氷汚舦汹䓅㛥㳫鮃羏样涖浜湼漄蔳凇萮瑓秌湏媑濸㜍澝滺䕕鏰潄潜㵎潴㴻澟濓凟灋灾炧炁烌烕烖烟䄄㷨熴熖焫煅媈煊岜煏鍢焬熺炽爎�l�鑂爕夑鑃爤鍁爮牀梽牕牗㹕栍漽犂猫䣭猨献珏玪珉瑉昣㛅珷琕椃琹㻗瑠瑇珤瑶莹瑬㜰瑴鏱樬璂䥓孆瓈甎甞寗鎅畍畊畧畮㼄疎瑝疞疴瘂瘬癑癏癯癶皐臯㟸皡皥皷盌葢眞眦着撯睘瞯矴棊碯磇磓隥礮磗礴碱辸袄禆褀椂禀禝礼禩渪㺨秆秔����h���h���h���dh�jdm�odr�tdw�yd|�~d��d��d��d��d��d��d��d���	�����"�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[���d��eh�jm�or�tw�y|�~��������������������������������������������������������d��d��d��al�	!�F�G�D|����ca-R���X��23���g�P�M1o�bt��Y�WAC�]�[�fEIDN�a�_O��UYTs�j�hac�o�m��e�s�qin�w�uo����{�yu��yty�ܺ$5P���t��� �p5x5���5���< �T�L6h6�L`�����@�B�C��	�������q�r�m�n�u�v�y�z�i�j�E�e�f�����������������������������	�@�G�T�|�����C�K�E�Q�����������g���������W�S�]�����N�I�����������e����	�������h���Y?��	�����S������D�	�j�\���^�����f��Çh�	�����H�E�o�����	������G���	��T	ܽ	�f���������	�p�dˈ�	�I���o���~
�(��L	�����S����O�L�	�����I����t�	�����I���r�k���PӉ��	���e�D�n���c���S�����y�]�c�i�ľ	�������������f�n�������a�����]�����i��������W���b	���c����t���	�������m����ۊ����\H@��P��7�489,�P��<�`�L���������$DdԽ���� 	 �p	�	�	�	
D�`
�
l��
0\������Pt�l���T
h
�����	������_���	�������~���	�����@�������	�F�����s%��	���Hg�<�	�K�U�N���Y����T�	���T|�	�g�����	���v�Q�s�O-���	���n�p�����So���\	�z�������d���b���d�L���	�������T�|���z�����������0�	�v�p�K����������5�p�	��Zc��	���Z��	��������w�����	���	���y������	�������	�z��=�0�	�������H�	�������d�U���|�M����d�	���������	�o�j�_����E���	���y������	���s������ɐ��	�����C��	������M�4�	�x�{��P�˶������˻˴��˷��˺�o��	����������������˾˲������������P�W�V�J�f�����I�Q�]���������Kёh������4�L�t��� <��h������(�h���������X���(�@�\�$<X|����8P���t��������,�H�`��8���p��$�	���c�����h���d�g�f�e�b�������������������������o�����������i�k�j�l��������������������������U�(��rʣ�f�c	�z�bʦ�e�i���V�`ʢ�y�����O�����������P�y�����������I�K�M�������L�E�A���D�I�R����������������	�����m�o�n���������������I�}�|�_�^���]���[�yʩʨ�w�z�\ʧ�[�x�W�����T����ْ���	���U�������T���Z�g���X�^�U�Y�[�]�W�}�V�Q�R���������S�\�������o�P�S�R�W�N���Q�P�A�T�`�Գ�����i������ԻԶ�K��Ը������	����Ԯءتة��آ�����}ؤ��ب�lأإ�}��زرخ�������Kث����ح�~ذد��س��ج]���U�[�d��	���Z�`�e�V���^�b�h�X�a�w���g�Y�����Y�K�W�V�M�R�N�Q�\�����[�o�J�P�Z�O���L�X�}�~�M���O�J���L����	���Z�]��ʰ�^���B�`�Y�L�B����i�~�p�g�h�]�{���������j�������[�����q���_�`�i�j����������q�p�m�k��	�L����ʶʹʸ�����R��ʵʳ����������ʴʻʷ������ʲʺ�����g�o���O�H�p�S�D�K�t���f�E�d�L�P�c#�|�	�@�M�����r�������������G���C��ض��������A�D����غط�s��عؾؼ�E����ؿ�ص���B�@�C��D�@��F���������e�T��A���A����	�������B����E�A�����n�������z�p�v�k�y�x�|�u���t���w�m���{���o�r�w�q�l���x�s�U�a�X�W�Z�\���_�V�r�T��8����r�y���s�v	�t�u�w����ʼ���gʽ�W�X���v�x�z�w�{�y���b�c�����������f�w�}�h�g�c�_�`�b�d�a�f�e�J�$������I�k�H�G�K�F	�����I�����K���H�J�����H���I�J�����~����������������f���g�e�d�]���������d�_�o�x�u+�������	�Y�~���Z�}�������x�������j�h�D�k�i�j�^���P�Q���O����h�i�a�����������K���s�w�v�z��������m���	���hΫΤΪΣΥ�}�{άΩ�y�X��ΧΨΦ�|�z��΢�~Ρέ�s�o���n�l�k�n���p�o�s�H�q�pή�r�m�l�m������������	�����R�a���O���O���P�������b�����@�S�V�N�P�U�T�C���R�D���M�Q������������D�	��������λ�����|�a�F�b���I�}�����������������q�r�s�k�����p����μ�z�z�y�i�L�j�M�L�]3�����` <!"�"t#8$���%x&8'(�(t)d*��,�,�-t.T/H0$12�2X�L45��6��T8���9t�d;L�8=�=�>0���AdB�����D��TF<��G���I8J�J�K�LtM���N�O�P.��	���F������������̹������������̵�����������������������Q�{���A�����@����ѱ���C�������������������B��u���	�������������q������������������լ��իխ������ժծ����թ������٧��٢������٥٨����������٦��٣١�v�������	�������������P����������������`�n�K�m�Q�R�f�P�����������������������T������������p�	�P�����C���G�B�E���������@�A���A�@�F���D�������������W�����C�M�N�F�X�H���S���I���������V���Q�O;�,�	�����������J�P�D���������R�����U���E�L�����T�G�K���Y���M�[�\�i�^�V�L�b�J�[�E�e�R��A�}}��������������������������B�l��	�����������������������X���������������������^�{��������������������������������	���D��������������B������S�K���Q�����~�W���A����G�E�B���C�O�L�T���@�F�G�����F�E������P�N�R�����`R S�S�T�U�VdW4X�X�Y�Z��(\�\�]�^�_d`0ab�b�c�dXe(fh��g$��i����l�l�m\n@op�p�q�r��Tt@u�u�v�wHxyz�z�{�|�}D~�̀d�|�X�T�(���.l��f�i�a��������	�����������g���x�����������y�������������������W�e���l�����������������A�^���_�G�b���_�`�a����C�x��Z�p�w�yޡ�����k	�����z��ޢ�����}���m�~�l���x��ޣ���q���|�o�v�r�n�������������u�~���N�{���s���������t�����������`�����l�	�m�z�k���j�i�{�����l�j�k�A���������������������D�����y�����������G���������R�����n���bǘL���	�������������^�����������Z��ҴҫҶ��ҮҹҺҬҸҵҳҷ�_�]���\ұ�tҭ�sҰһҲ�^���Z�\�F�d�x�m�k�h�l�N�s�e�t�p�{�u	��޷��޻��ޱ��޼�s�n�_޲޳	޽޺޸޹޵޴��޾����޶���������������q�����������z�������w���������������y���u��]���@�bK���A��|��	���������D���i�f�e�g�f�Z���c���X�\�[�d�h�Y�q�m���z�����j�h�k�n���l�g�^�B�E�u�@���o�Fâ�D�{�����A�C�G�v	�t��ã�s�j�n�����������������������nҼҽ�}޿�]ä�{�������o�`�������M��Ҿҿ�~����ګ����ϙ���q�p	��ͤ������������������������������������������������������������������������}	�������|�D�z���{���y�A����Z�����X�@�W�\�[�Y��I�H�c�D�����G�F���^�����_�[�]���ZS�`��\	����j�p���I�E�r�q�n�o���J�����`ª¨©�L��íì����������H�sͥ����ͦ�M�@���� ����Q�R«¬	�u���������L�A������V�M���W���������������G���X�E���M���v�����ͧ������ך��	�]���X���N�P���U�T�W���R�Q�h�����S���Y�[�V�O���i���a�Y�\���b���c���e��������������`�h	�d�f�g�v�����j���]�f�����t��x�������Q�y����w��{���z��������������O����n��d���N�[�D��Y�j	�`�d�\�X�W���v�b�Z�^�k�i�f�g�c�r�B���j�x�t���x���e�}�u�b�U�w�f�������v�p�������������c���q�����s����������X���l�(�D������\�$���ؓ�����������0������d�@������d�H�����p�X�$���X���������\�<������L� ���������|����L�4���.��	�g�Jߡ���N���K�����P���M�G���L�������|�}�~�w�u�{�sߢ�x�r�{���}�v�~�[�|�~�y�x�y�}���|�t�z�������Lߛ��_	��߳��߯��߮�`���m�q��������X����[��Y�������������������������Z����]����a�����U!����O	�m�B����߽�[�R�U�{�\�S�Q�N�����e�����`�h���x�|���W�k�o�T�y�����L���r�V�j�P�^�Y�����l�}�z�q���w���M���Ic������M�O�����Q�I���P�B����R�J�G��U��	����H���T�K������L��V��C�N����������~��������������������������	��ĪĬ�ĭī�����a�pĨ�h�~�����������������������������������J����P���K�I�G�H�L���������������t����K�L����	���Pײ�U���T���E��׸�R��׳�S׿׻׽׷׾���O׺�R׹׵�׼״׶�Q�����������������������������)�X���	����������������������������������������|��������~���������E�����������������������������k�0�Ū���X���W�Z�Y	�C���B�@�A���������@�M�N�g���m�������z������T�,��������X�4������p�<�8�����������l�l�P� �����H�����p�d�<�(�������p� ��������`�D��������������`�,����������`����T�.��	�P�E��J��C�B�U�M�L�K�I�N�}�D�F�H�����������������e�������R�C�A�S���D�B�Q�P���O�������E��������������������j�b�q�e�o�v�n�y�s�u�c	�i�w�u�h�x�z�k���r�s�w�u�t�f�r�v���t�s�d�g�p���c�����������a����W�Y�e����Z�\�f1�|�����	�����D��H�����A��������C���������K����E�M�������������a�f�O�h�N�I�d�j�N�J�K�`�g�M�e�L�_�c�b�O�^s�`���	��R�]��^�_��`�Q�N�K�P�S�L�R�O�M������������f�w�v��x�~��}�z��{�|�H�I�����S�n���Q�R�oŴŵ�q��D��[���E���G	�����F�W�����C�f�t�����Q�R���D���a����S�����Mܩ�Fܫܪ�Q�����u�v��������������� �	�E�J�F�I���^���H�G���D�B�E�C����F��@��A����Q�N�O�P�r�V���U���t�sŸ�j���I�`�X������9���	�s���e�������������t���������{���(�t������|�d�D�X�����������<�p�������l��xP�����x���	P
,�L4
$�4���L��P��P0$ �����x�������Z�����������y���t�������`�i��ù�����r�������O�_���T�d���Z������}�P����İ��þ��Y�����T	���N�����r�l�c��Ī�����S�|�O�L�S���w��.�	�I�����C�H�����]�^�����A���D�����������������������G�F�������H�I�������������������������������������������������������@���s��.�P~\h�t�������������Ȉԉ�������(�4�@�L�X�d�p�|�����������������P��������@�X����ܟ|�g�Ժ���8�P�p�������4$�X����h�P���� ���p������p�,�D}���������丗丢丬乕乢亊亰仫仭仼伜侊俿偂偐偸僘僞僴儖兊兑兤兪内冐冝冦冨冩凇凖凛凬凼刋刔刕删别刹剏剱劐劒劔劜劯劵勐匀匇匤卆卟厓厰叝吣呐呑咊咝咣咴哐唣唿啌啓啝啬喞喩嗬嗵嘣噐噼嚊嚔嚠嚯囘圀坙坥坿垅垉垡垬垴埀埈埓埯塄塬墒墚墲墸壥壻夂夋夐夘夛璌璍璙璛璤璴璹瓈瓌瓐瓓畂畕畮疍疞痜瘬癏癑癳癴皥盙眎眏睘睲睷睸睺睻瞘瞯瞾矃矅矋矝矦矴砞砽硂硄硋硑�d�唖壷頴葛焔艶襖鴬鴎躯恢晦蛎撹鎌噛潅諌煉巌蝉騨箪贋饗尭繋頚倦捲鹸砿麹麺賎讃蒋醤穣撰巽庖聡楕竪瀦梼祷涜迩祢嚢蝿剥禄溌醗箆頬桝侭薮篭蝋倶植殖慎具真値置直槙惣拶呟鞄噌僅嘘虞夲奛奝奣奬妛姗姫娚媪嫐嫱嬶寉寳尓尜尞屓岙岜岺岻峁峵峺崕崘崾嵓嵜嵭嵳嵴嶌嶐嶹巐巓幇幤廏廐廪廰弉弌弑弡弴彁彅彑彜彦徃忰恊恠悋悦惞愑愠愡愼愽憘憷懴戓戝戞户��幺氐収伫低吴囱壮夹妆尬决冲灾见角贝车亚来仑两协届冈底抵东争状籼纠卧轧邸长门侠侣兖则劲却奂帅柢汹为纣红纪纫纥约纡胝苎计订讣贞负军轨闩韦页风飞俩们伥个伦仓冻刚剥员娱孙峡岛岘师库径挟时晋书泾浃乌狭狈亩砥秪纺纱纹纯纽纰级纭纳纸纷胁脉刍记讦讨讧讪讯训讫岂财贡轩轫钉针钊钋闪阵陕陉饥马骨伪伟侦侧务动区参哑问衔国坚垩执够娄妇专将�d�屉峥岗带帐张强从徕凄怅扫挂扪抡挣败启斛斩昼勖弃条枭杀氢凉浅渊泪沦净牵狰现产毕异众绊统绍绋绌细绅组终绁绂钵习荚茎莒庄苋处术衮觅规访讶诀讷许设讼讹贩责贯货贪贫轭软这连迳钗钓钏钒闭陈陆阴顶顷鱼鸟卤麦备伧伞凯剀创劳勋丧单哟唤乔围尧场报埚壶娲寻岚帧帏厕厩恶闷惬恻恼拣挥换扬枣栋栈钦残壳氯氩涌凑湮涡汤测浑涣无犹苏画痉发盗砚秆窗��笔笋绞结绒绝丝络给绚绖绛肃肾胀华莱苌虚视评词证诂诏诅诈诋诉诊诃贮贴贰贻贲费贺贵买贬贸贷轲轴轶进邮乡钞钮钙钠钧钝钤钣闵闰开闲间闳队阶阳韧项顺须饪饭饨饮饬冯驭乱债传仅倾伤偬铲势积汇吗呜呛园圆涂块坞埘茔奥妈爱忾怆恺损抢捣构晖晕旸会业极杨桢枫岁沟灭湿滑沧烦炼炀焕爷狮猾珲当盏睐睁雎碌节笕粤经绢绑绥绦义羡圣肠脚肿脑荤苇叶莴虞�d虏号蜈蚬补装诧该详试诗诘诙诣诚话诛诡询诠诟贼资贾贿赀赁赂赅较载轼轾农运达违过邹钴钳钹钸钾铀铅钩铂铃铉铋钜铍钿铆闸陨隽电预顽顿顼颁颂饲饴饱饰驰驮驯鸠侥侨匮厌尝呕叹喽啧哔团图尘垫堑寿梦夺奁妪实寝对屡崭岖币帼彻态惯恸惭惨搂掴掺畅荣枪滚渍汉满滞渐涨涟沪渔渗涤荧尔荦狱琐玛疟疡疯痪尽监硕祯祸种称洼窝笺筝绽绾综绰绫绿紧缀纲绮绸��绵纶维绪缁绶罚闻莅盖荪苍蚀诵语诬认诫误说诰诲诱诳诮宾赈赊赵赶辅辄轻远逊递铰银铜铭铢铬铨铵铣阂闺闽阁阀际颇领飒饺饼饵饷驳肮骰鸣鸢凤齐亿仪价侬侩俭剧刘剑刽厉唠嘴哗嘘喷啸叽墟坟坠堕娴婵妩娇娆宽审写层嶔帜废厨庙厮广弹庆虑忧怂悯惮愤怃挚扑捞拨挠抚掸揿敌数暂昵样桩枢标楼桨乐枞欧殇殴浆泼洁浇溃润涧浔热奖莹疮皑皱盘确码窑穷缔练纬�d缄缅缉编缘线缎缓缍缂缈缇骂罢胶肤莲荫蒋虾蜗卫谊谅谈谆诞请诸课诿谄调谁论诤谇诽谀竖赔赏赋贱账赌贤卖赐质赓践辉辆辍辈辇轮辎辋辊适迁邻郑邓锌锑销铺铐锄铝锐锉锋钡锂闾阅巩颉颌养饿馁驼驻驷驶驽驾驹驸骷闹鱿鲁鸩鸦麸齿俦傧侪幂剂吨哝嗳垦坛奋袅学导宪凭惫懔忆战拥挡挞据掳择捡担挝历晓晔昙桦横树椭桥机桡淀浓泽浊沣澦渑炽烧灯烫焖独玑瓯��	瘘卢瞒砖碛积颖稣窥笃筛缢缣萦缚县缟缜缙绉腻兴舱荡萧芜蚂萤裤亲觎谛谚谏讳谋谍谐谘诺谒谓讽谕谙谌谖赖辐辑输辏办选迟辽遗邺锭锯锰错钱钢锡录铮锥锦锟锢锱阎随险静腼颊颈频颔头颓颐馆饯馄馅骇骈骆骸骼鲍鸵鸪鸯鸭鸳龙龟优偿储励咛吓压埙婴嫔嬷尴屦屿嵘帮弥应恳戏击挤拧拟搁敛毙暧档检桧栉樯殓毡泞滨济涛滥涩潍营灿烛烩墙狞获环瑷痨疗矫磺矶�d篓粪镆糁缩绩缪缕缧绷缝总纵缫纤缥繦缦声聪联耸脓胆脸脍临举艰蔷蓟亏蝼蝈亵褛觊谜谤谦讲谎谣谢誊谧赚赛购赙趋辖辗毂辕舆还迈酝镀镁锚键锲锅锤锺锹锻锾锷阔阕阑闱隐隶虽韩颗飓骋骏鲜鲛鲔鲑鸿鸽点斋丛噜圹垒婶懑扩掷扰撵摆擞撷断槟柜槛柠欤归殡泻渖滤渎溅浏烬焘犷猎瓮疠睑础礼穑秽窜窍箫簧箪篑简粮织缮绕缭绣缯翘职聂脐膑旧萨蓝荠蛲蝉觐觞谟��谨谬谪赘蹒迹跸躯转辙迩医酱镑锁钨镍镇镐镒镉阖闯阗阙杂双雏鸡额颜题颚颛馏馊馈骑髁鲨鲤鲫鲧鹃鹅鹄垄坜宠庞庐惩怀懒拢旷橱椟榈橹潇濑沥濒泸烁牍犊兽獭玺琼畴瘪碍祷稳签茧绎绳绘罗缴膻艺薮药蚁蝇裆袄谱识谭谲讥谯赠赞跷辚轿辞边镜镝镞链镗镘镖镙锵镂铿錾关陇难雾韬韵类颠飕馒馑骛骗鲸鲳鲭鲷鹑鹉鹊鹌鹏丽麴劝咙嘤严宝悬忏拦搀胧榇澜潋炉珑矿�d砺矾砾窦竞筹篮辫缤继罂胪舰蔼蔺芦苹蕴蚝褴觉触议译谵赢赡趸释钟铙锈阐飘饶饥骞腾骚鳃鳅党龃龄俪嗫啭嚣属惧慑摄携斓樱栏棂歼烂牺镶璎癞缠续兰藓蛎览谴护誉赃踌跃跻轰辩镰镭铁铛铎镯镌响顾颢飨驱骠蓦骡髅鳍鳏莺鹤鹞龇龈啮俨傥呓孪巅峦弯摊权欢滩猡叠瘾癣笼籁聋脏袭衬读赎赝踯踬辔郦铸鉴霁鞑繮颤骄骁鳖鲢鳔鳗鹧鸥鼹龉龊龚恋挛搅瓒窃缨臢萝蛊��变逦逻镳铄靥显餍惊驿验髓髑鳝鳞鳜鸶嘱坝揽瘫癫羁蚕让谗谶艳赣酿雳灵霭颦骤鬓魇鲎鹰鹭硷盐鳌龌龋厅榄湾篱箩蛮观蹑衅钥颅馋髋黉滦瞩镊鞯驴骥缆谠躏酽钻銮锣鳄鲈黩凿鹦骊鹳鸾钺仂虍殒垧坻戋俣刭厍呙卺纨茇钇钆呗弪祓纾郏钌剐匦囵垭娅岽崃涞渌烃眦绀绐胫钎钐钕钍闫妫嵛恽桠枨沩浈畲砗绗菝觇讵诎诒贶贳轺轵轸逯郓鄄钫钬钛钯钭钪闶陧顸饫黹伛偻�d佥唢垲巯徭炜茕狲玮绨绠绡羟荭蛱诓诖诩诔诜趑辂辁邬铊铈钰钲钶锍铌钽钼颃颀凫黾偾唛嵝帻悫悭怄戬戗抟抠掼桤杩荥浒沤炝皲砀绻绲绯绺莳觋诶赇铱铒铑铕铟铫铯铪铷铖铥飑刿劢哓呒崂峤庑愦挢椠毵颍涝潢涠滗琏璁瘗缃缗缌缏缑荜蒌茑苁诹诼谂赕郸锒铗铽锓锊铤锆锇锔阆阃靓颏饽驵骀鲂鸨哒哕哙嫒峄怿殚浍烨猃狯碜窭縗缛蒇荨蒉荞莸芗蛳诨谑谔谝郐锩锬��锖锗铼锛锕锞钔阏阈阉阊阌阍鸲鸱哜帱恹摈泶猕甓瘅痫硗箦筚糨缡耧荟莶蛰裢觏谡诌谥跄锸锴铡锶阒饧鲒鲕鸸鸹鸺龀怼摅撸泺疖缋聩荩蟥虮讴谩赜贽辘邝镓铠锼镏蓥韪饩骐骒骓阋鲩鲠鹈鹁鹆厣呖垆槠栎氇泷潆祢缲缳罴舣蛏虿裣觑觯谮镛镟镪镆铩韫颡馐髂鲵鲶鲻鲱鹎鸫黼喾撄栊枥栌缱聍茏苈蕲蛴蝾铴镦镨镡镣镄镫铧镤铹阚颟馔驺骝骟骘鹗鹚鹜龆龅傩岿痈撺�d榉滠砻粝纩缬蔹赆镱闼飙骢骖骜鲥鳎鳐鹣鹘鹾冁娈灕攒瘿箨籴舻觌跹跞轹镔镬骣骅鳕鲣鲦鹨鸷龛栾椤蓠雠轳鳟鲟鹩鹬鹪鹫鹇灏簖谰髌笾粜缵脔蹿镧鲚趱躜酾谳颞颧骧鸬戆阄鲡鹂禸拔跋珐宫拐毁减禄吕潜袜郧兹戸抛挧掻揞揺撑擀擡擶攅攵敎敫斈旙昞昻昿晄晗晩晳暃暼暿曁曵曺曻朎朖朷杤杦枦枧枩査柽栀栁栅栞桊桒桕桙梍梹棏傈锨鲗椢椦Üü椶楡���苅苊苘茘茚茣荆荛荢荬荮莜莟莵莼菷萪葈葜葢蒄蒈蓜蓣蔸蕚薗薫藁蘓蘖∋蜕蝰蝽螋螨蟇蟐蠇蠎蠧袮∈袵袿裥裵褜褝襷觧訷説諚譛譱谫谺豼貎貮贒赉赍赱踈踺蹰躙躰躱軅軆軎軣輌轱轷辧迯逎逹遥邉郞鄕釖釛釞釡釥釶釼鈩鈬'鉙鉷鋭錺爫冂冖丷八儿朩氺厂疒肀衤丆⺗勹匕‡㐄凵屮囗亠冫⺀槇╎◘◙♂▶◄↕‼¶∀↨↔⌂�\ 亜悪圧囲医壱逸隠栄営駅謁円縁応欧殴桜奥穏仮価画灰会悔海絵壊懐拡殻覚学楽喝渇巻陥勧寛漢関歓観気帰戯犠虐旧急拠挙虚峡挟狭郷響暁勤謹区駆勲径茎恵掲渓経蛍軽継鶏撃県倹剣険圏検権顕験厳呉娯誤広港鉱号国黒穀砕済斎歳剤雑参桟惨賛残歯児辞湿実写舎捨釈寿収衆従渋獣縦粛処将称渉焼奨条状乗浄剰畳縄壌嬢譲醸触嘱寝尽図粋酔穂随髄枢数据��"瀬声斉静窃摂絶専浅戦践銭潜遷選繊禅疎壮争荘捜挿巣窓装僧層総騒増憎蔵贈臓属続堕対帯滞滝択沢濯単嘆団断弾遅昼鋳庁徴聴懲塚逓鉄点転伝電灯当党盗稲闘徳毒独読届難弐悩脳拝廃売梅博薄麦縛発髪抜浜敏敷侮払仏辺変歩舗簿包宝抱泡胞砲豊飽墨毎満脈黙訳薬躍与誉摇様謡曜来頼乱覧竜隆旅両猟緑涙塁礼励戻霊齢暦歴恋練錬炉労楼録湾弥亀曽姉宍嶋��\%樫椛喰粂込榊咲鴫雫椙揃駄凧栂辻働峠栃凪匂硲畑畠噺鋲塀柾俣杢籾匁俤俥凩叺哘囎圦圷圸垈垳垪垰埖塰墹壗屶岼峅岾嵶弖怺掵杁杣枡梺椥椨橺椣椡楾榁槝樮橲欟毟渕熕瓧瓲瓰瓱瓸甅畩癪硴竍竏竕竓竡竰笂簓簗粐粭糀糘綛縅繧纃纐膤艝萢蓙蘰蚫蛯袰裃裄褄躾軈轌辷迚逧遖錵錻鎹閊閖靹鞆鞐颪鮖鮗鮴鯏鯑鯒鯲鯱鰰鱇鱚鳰鵆鵤鶫乄呏挘鮱鱩鵇鵥鰯麿冴呪枠鮎��'邨冲㘭担勅枱响恒叁烱堃啟鈎着琼煊滙叠献裏碍羣綫踪鑛捬徧尅耻峯㦸煑賍韮塲婣罸嵗慯榘綉粮綳澁嫺墻牕癎輭銹鵞麯罇鷄贘决虬咤厦刦朶両却廹効咏廸妬怱牀脗瘻弍晋暨慤捏烟洤粧糉叙敍坂珏胆㕑欵碁双猫猪珉畊姹燄甎緜駡覩濶㩗擪㯭没湼畧塩刄憇携臯况凑汹够迹飱攷脉袴㨪躭羗騐紥櫈册刧脚厠厢汚氷舘喆廻凉碱鉢卭凃葱覇靭讐隣廼隷兎鰐昰x�X*鉕砈鍅鉳鍩釟釚硔硦碈碶磇磒磗Å⇋磤磮磰磱磵礲礳礶祘〓祙祱祾禃禆禇禑禙禟禥秢秱秴稪稺穅穥窼竂竉竛竩竾笌笧笩筂筃筕筯箲槞槹酶腚苷呋脲肽萘酞酰醌腈䐶腙肟啉吡哚吲喹咔硒硅硌蒽萜苄葻謭坋坅蟎噠嗪噻肼碸樌哌篐篬篺簕簛簵籄籭粎粸糃糦糭糳糵糹糼綋綗綤綨緍緐緓緥緽樒樢樰樶橥橳橸橼檩檪��,⓪①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳鍄鎭鏆鏥鐚鐡鐾鑁鑓鑚钚钷铘铞铳锃锎锏锘锝锪锫锿镅镎镢镥镩镲閇閙閠閲陦隝隯隲霳霻靍靏靑靕靤靫靱鞒鞲韲頽顔颥飃飚飮餝餠饣馀馇馍馓馕馼駈駲骶髙髞鬏魉魲鮃鮟鮻鯣鯵鰀鰄鰛ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ®™�T/鱶➊➋➌➍➎➏➐➑➒➓鲅鲆鲇鲋鲐鲞鲮鲰鲲鲴鲺鲼鲽鳆鳇鳊鳋鳓鳘鳙鳢鳫鳬鴪鵈鵐鵺鷆鹋鹕鹛鹱麪麽黄黢黪鼈鼋鼍鼡齄齑龝﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩丄丯亁亇亣亷亼仸伨伩伷佂佅佋佲侢侰侽俈俌俰俲俹倃倈倴倻偘偦傁傐傼僐僟僡僼儍儫兠冮冸凒凢刅刴刼剙剨剹劤勌匧卂卝卽卾叅叐叒叾呭咅咓咞咹哣哯唍唘唥唨唫啇啹喐喴嗁嗗嗘嗻侴嘡∃噒☻��1噝⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂⒃⒄⒅⒆⒇噡嚉嚋嚞嚡嚱嚹嚿囖囯圕圝圲圽圿坃⇔坾垊垍垐垜垻垾埄埞埾堒堢塇塜塟塳墧墪墰墵墶壋壐壠夅夑妉妔妚妟妰妸姄姯姰姸娂娋娍娒娡娤娧娪娫娬娽婅婔婙婡婨婫婮婱婹婾媁媂媆媈媑媙媠媡媫嫃嫎嫏嫓嫤嫰嫾嬍嬑嬕嬟嬫孁孄孆孊孏孨孴孶孼宂宐⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵㈲㈱檫�T4宖⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛寕寗尣岅岞峂崐崬崯嵈嵖嵰嵻嶅嶤嶫嶶巁巗帉幈庒庽弎彲徱忂忛忟怣恾惗愇愌愙愢慐慠憁憕憹懀懏懓懚抐挱⊃挷捹掋揁揢揦揻揾搇搲搸搻摚摱摼撍撯撴撶擝擥攊攑攟敟敭斆斵斾旑旔旣旿昘昣晣晫晽暅暒暚暤暭暳暶曍曎朂朌朙杄杫枏枤枿柖柗⊂栍栐栛栶桇桖梄梈梽棃棅椂椃椉椘楃楆楤楧楲榅榟榢槑槕槖騡騦騯櫁��6妿槡樃樚樜樬樭樳橃橅橌橓橗橣橴檂檊檏檙檧檱檵檾櫉櫔櫘櫶歗歺毜氜氱汘汮汵汿沯泋泟泿洂洅洆洦浗浛浱涁涏涥涱淾渂渄渏渘渪湐湙溚溵溸滛滺漄漋漌漖漗漴漽潖潹澊澝澟澻澾濓濙濸瀃灋灍灐灔灜灧灷灹炋炏炠炣炥炦炧烄烌烐烖ɪɛæʌɑɔʊɝəɚɜɡṃṉŊḻɵðʃʒʧʤãɯɸʇÇœɒgˋˏabdefhijklmnoprstuvwz�T9烵㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩烾焅焝焩焫焬焳焵焻焾煀煏煫煵煷煼煾熌熎熑熖熢熣熭熴熷熺燑燝燫爀爉爎爏爖爗爤媤爮⊆牗牜犔猄猐獁獴玌玏玘玜玞玧玪珕珡珢珤珦珯珳⊇珹珻琂琑琒琔琕琗琙琜琞琟琷琸琹瑃瑅瑇瑈瑉瑓瑖瑥瑫瑬瑴瑺璂厂广丨幺冖宀卩⺇匃☒艹䒑⺌⺊丶匚⺕└乚辶廴冈亅丿乛厶车纟讠贝鸟门钅阝扌氵亻忄灬⺮口櫢騻騼驘驜驣��;☎→←↑↓⇨⇦⇧⇩☞☜☛☟〖〗○✕✓囻☽夝晍爥✩✡☺☹屸♬♪嫑宷峼✉✂峕杮瑡璝罓薓❏嵸弻━┃骲髠鬔鬴鬹魀魐魿☼綕☁霴☂✈℻℡曧湗煗秊№腬諹顖☠♤♠♧♣♢♦♡♥櫤℞㏂㏘㎡㎥☑鮁鮋鮍鯝鯩鯭鯴鰟鰠鰦鱓鱝鱻鴌鴖↲欅9�T>賩賲贃贑贜赺趩跀踁踎蹆蹨蹱蹾躀躶躹躼軃軤軭軲輰轁轊辥辳辸迊迏逈逳逷遤遬醩醶釄釺鈈鈓鈡鈨鈫鈵鈼鉁鉘鉝鉟鉫鉮銁銄銉銏銱銺銿鋔鋛鋣鋥鋫鋬鋴鋶鋽錃錇錰錱鍀鍂鍃鍟鍢鍦鍨鍳鍴鍸鍽鎁鎄鎆鎇鎐鎜鎠鎸鎻鎽鎿鏋鏓鏛鏠鏰鏱鏳鏴鐁鐄鐈鐗鐛鐝鐤鐥鐦鐭鑂鑃鑍鑔鑘鑥鑧鑬鑹鑻镸閅閦閪陖陻隥雴霛霶靀靁靗鞇鞉鞛鞱鞽韀韂韒韠頔頕頣頳顨颷颹飇飊飠飡飬飵��@鴡鴴鴹鵉鵎鵭∷鵮鵼鶃鶓鶥∬鶽殁殱鱏麐鷀☯☰☷☳☴☵☲☶☱鷉鷔鷼鸊鸌鸎鸘鹻麅麢麬麱黁黆黇黱黸鼧餎餙餜餷饝饢馛馤馪馸駠駦駵騟緾縇繛繥繬缷罀罁罉罒羏羓羴翝翧翺耂耈耮耯耼肧脌脪脴腂腖膄膥臤艔艥艻芇芿苢苮苸苼苿茋茝茽荗莑莬菍菭萅萔萖萡萮萾葊葓葕葘葤葲葿蒀蒒蒓蒖蒣蒾蓞蓡蓢蓤蓸蔃蔅蔐蔳‐蕂蕌蕒蕟蕯蕰蕳藖藠藮藼蘍蘏蘔蘨虂虅虲�DC袜孭脷餸啲啫㗎啱喺嗱㗒嗰嘅嘢嘭噃嘞嚒糍吚吓咗曱甴呍嚤嚟擓挮揸攞乸毪氲氽汢沲淸温湶溂溆溻滟滢漑漤潴澑澵濳濵炻烀焏∂煕煳煺刣㑑迌ÀÈÌÒÙÁÍÓÚāēīōūǖÄËÏÖÜÆÇÑÃÕáéíóúǘäëïöüæçñãõǎěǐǒǔǚÅÉ熈ØÐỲÞߪ¡àèìòùǜå熘燗øðỳþÿº¿âêîôû燵ÂÊÎÔÛ¸¤ƒ��EwxyzΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩ˙ˉˊˇˋ␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡€�DH讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲①②③④⑤⑥⑦⑧⑨⑩⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ丶丿亅亠冂冖冫勹匸卩厶夊宀巛幺广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじ��JЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя⇧↸↹㇏乚刂䒑龰冈龱゛゜ゔヷヸヹヺ・。「」、・ヲァィゥェォャュョッーアイウエ¬¦'"㈱№℡オカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚�DM爲爼牦犂犏犟犭犱犸犾狍狛猤猯猸猹玽珎珱瑶璢甁甙産甼畄畉畍畭疂疃疉疬痖痩癀癍癔癨皀皃皐皷皹眍眞睃砘砜砹砼硇硖硺碵碹磆磙礇礰礴礻禀禝秃秡稆税穃穐竃竒竢竧竸笶筢筬筺筻箚箞箟箢箧篶簒簔籏籖籘粫糺絈絋絷緔緕緖緤繍繝繿纉纎纒绔绱缒缰罱羂羮翆耠耢耥耱聟聨肬��O肷冚吖吔㓟䱽拃哋喼肶冧唓舦唞嗞掹梘唂啩疴揼麄鈪裇悞嘥煅嫲劏噏瞓螆踭膶㗾燶蠄鎅癦鱲拎麖䦉糓軚麫擧芪杧浲礆秄罎蟮莾蘯覥䘏飈饀饍騌髗麘鼦伃伹伲侫偖倮傦僙儎僭儁凴刟剠剗劚勑勠勡凓凟畆凾匲匬匳厫厪龎呩咜叚櫊啳㗖嘑噍噔㗳坆坺坧堺埦埝塀堦壜妷姙尠峑峩嵆嶎巵帋帒帮幞�DR彍穽寃窻徤徺徼恷悤悳惽愰憜慙慽慜捿懢烕戹扨抅抂抦拕捤挵撐㩜晈晧朞栃枬柹梶椬椁椀棊楳榀椾榲槀榊槺槩檲橒檝欝歒毺㳑泎湏涹潄濚炁秌焴㷌煶爕牐犇猬犲狢猂獈猨獏獱斅瑝瑨甞畓畺皡盌眤眫䁥硓磓磘鵾碯慂禩鰺秔稭稾穉竝竚痃瘇瘂癧癯嘠詧鼗笟箒箣篏篼籂籑籝籰籾粆粃粬糇糂糚絍絚緵縧繮麕剳耝聢聣聦聛肦脃麁臈��T辠臶舚蝱螩螌麞蟁鸜蟖蟵蠏蠘蠭衂衅鰵衮袪袠抝襃襍煲衞苽䒷苐莅鴂齩萠蓚蒭䓻蕋蘂蘐揑覉覊覔鱅覼詾詉謌譃讁譌貭賫賷贌趂趦跔踨蹏蹷蹵躧輙轜鵄郄酑酜酙酧酼醎醻麨遖遌釾鉢銾鍫鍮鎺鐧閗閧阸隃隖隁隽霃霡霱靟鞟鞴鞸鞺鞾韈麿頟頮龥顇顋顦顬颴齚飜飦饂餹餻齓饊齅䭾駚竈骺骽鼂鬪鬭髢鬂髿䰇鬉䰄䰻鮏鮝鮰鰌鰕鰊鯿鰮胨胩胬脎�DW氹乪陁売祢栢脇埗䓪搵蔴䃟椚鰂疱菓煱樋橺髴瞹攰涖嘷朥樫絝遡亘粦笹奵㛇灿溋靝鋐坔㻙憙瑠焿礮媖鍈暎俽鍁㙔嵵瀞敻炍廍悧窰彣珷瑨疴魩½⅓⅔¼¾⅕⅖⅗⅘⅙⅚蚒蚠蚭蚲螥螱⅛⅜⅝⅞蟚衏衠袇袏袐裦裿褀褤襇襔襥覀覑訜訩訫訸訽⌒誐誔誜誩誯誴諪謟‰謿譍譞譢譩讛豑貛貟賔賖脒脱脶腟腭腽膓膪膸臁舩舭舮舾艢艪芈��Y�\��\�\�	\�\�\�\�T �"T%�'P*�,L/�1L4�6L9�;L>�@<C�E<H��J	�����"�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[<M���O�eh�jm�or�tw�y|�~���������������������������������������������������������<R�T<W�Y<\�aD\	���������������X�����P��������������L^����������������������������������������������������������	������������������������������������������������������������������<��^	��������~��_	�����������_	��TT�_	������������������_	��������������������������D�,`	����������������p`	����������������ȥ�`�R,E	����~�`	����
��`P��`�`�`L�a	���V�X�����������L�K�E������������ a	�J���K���������R��Цpa	��������������������������������������������ƵƶƷƸƹƺƻƼƽƾ��a	�B�C�A�D�����������������w�xT�4b	�S�e�F�G�E�H��|b��	�y���k�_�A�������������������L�������Fا�b	�����r�����������c	����\�4c����������������������������������������������������������������	����Lc	�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�A�B�C�D�E�F�G�H�I�J�K�L�e�c�M�N�O�P�Q�R�S�T�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T������������������������������������������������������������������������.pd�������������������������������������������������������������������������������������@	�|e�w�}�x�~	�z�{���}�u�t�s�r�q"�8f	�������������������������������������������������������������~�������������Zd�|f	�b�c�d�e�f�g�h�i�p�o�n�m�l�k�j���v�y����������������$g	�������S������������������g	���������@�����O�N�M�P���U�V�]�[�X�Y�Z�\�W�^�]�����W*��g��	�������������������f�el�Ph	�l���k�U�T�\�[�����h	�wfN�h	�A�B�C�D�E�F�G�H�I�J��h��	������������2�ihaP����a,btb�b�b��,cDc�chdte0ftfg�g�gHh�h�h�hi0it�8i�@�B�C��	�������q�r�m�n�u�v�y�z�i�j�E�]�e�f�Q�R�������������������������i�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�zȳ	ȱȲ�����{�|�}�~ǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻ��@jǼǽǾǿ����������������������������������������������������������������������������������������������������ȴȵȶȷȸ������	.0k	�yfN<l	�A�B�C�D�E�F�G�H�I�J����:�Pl	�U�V�P�Q�R����|��l	���W�S�����O�����l	��4/�l	����l	�D�m	���$m	�H�L�����oB�8m	�B�\m	�}"�pm	�gbd�m	�^^M�m	���/�m	���a���m	����m	�|��m	��BZn	�q�&n8j\(k4l��P�Hl�l��l�l�lmm0mTmhm|m�m�m�m�m�m�mn nƭ(n	����n	�M��n	�� �n	���^��n	�J�gJ��n	��fNo	�}<Qo	���_0o	��������Do	�E�`o�@�B	�C�����E�V�T�W�U�F�����M�������B�A�@�@�C�������[�F�������A�U�����������X�B���P�����c��˱�Z�����Y���o�D�d���[��ήto	�@�D���[�G�\�������E�G�F���������C�������A�����A�E�^�]�t�p�D�����A�g�����a���K�hp������ܱܲ���F�����\�E���G�H�_�_	�����Q�����b���R���@���E���`�����������d���������F�G�F�]���bܳ�����H������R�q�����������������T�S����	���G���T���J�K�L�M�I�P�j�f���Q�a�h�N�O�H�e�g���G���H�T��ɰ����ɺɮ���������I�������qɱ��ɵ��ɹɶ	ɳ��������ɫ������ɻɸɯ���g���������J�~������ɷ���������������Cɭ�f�B�����g���D���������[�����`�h֯�r	�d�����������G�]��˽���D�������b�^�����Z���e�E�H���@�F���c�A�i�\���_�@�a��˿��������������˹��˸˼�������˳˵������s˶������˻˴��˷��˺�K��	����������������˾˲����������e�U���f�����������������}���J���������I�Q�]���������KZ��t�����Y�P�X��	�������T�������[�N�W�M�������U�R���Z�����O�\�S�L�H���_�`�������l�������������������������������{���L���uP��n�n�n�noo(o<oXolo`pq�q�r�s�t�u�vް�v��	�������������������������������[�������������������������������\������������������������������������������ ��v�c�W�M��	�\�b���U���Y�R���V�����N�g�Q�����f�����X���S�O�]�P�N�Z�`�a�����[�^�M�_�����d���L�T�e���������O�������e��b��w�����^�W	���_���U�X���Y�����]�S�R���������Q�\�Z�T���V��������������ܷ��ܽ�����ܺ��������ܿ����ܴ��ܵ���x	ܾܼܸ��ܶ��ܻ��ܹ��O������������������P�������Q������������Z�����������������R��������������������y������������������������������	�����������S�������v��w������u��������x�_�������������l�k����(��z�a��	���S�R���������T�J�I�K�����U�������g�^�Y�i�Z���\�[�`���]���^�V�J�������W�����������@���U�L��������������j�`{���T��	�X�L�N�X�T�U���A�j�Y�`�_�����������U���A�~�a�Z���a�������[�N�\�]�����V�����Bɼ�L�K�����M�N���k����������H|�`	���I�����^���[�������������h�������a�_���@�`��������L�Z�������L�a�R�c�a�����������������Y�W�X���b�������0}�M�N�}�b����������ɾ�Z�c�k���F	ɿ�D�Eɽ�d�e�G�C���h�����l���m���f�n�~�P�O�{���S�Q�R�g�����������������������h����������0�~�������c��	���h���d�g�f�e�b�i���������������������������������������v���������i�k�j�l�����j������������������������r��A�B�����Z	�@�A�B�D�����C�i�k���l���m�����������O�n���t�\�[�����H������U�V�T�W�o�p�o���i�����p����������������l���k	�D�i�j�������q�����n���U�����������������������~���h�C�D��E��������y���U���c���V��������r�^�S��	���^�s�I�q�����m�������c�b�����_�����l�`���K�J��X�t���������o�����E���������������K��������8����������d�����u�����c�b	�m���O�V�����������o�n�m���R�����v�e�d�A�r�����`���U�W���g�f�L�M�s�Y�j�Z���������o�������z���	�����m�������������t�u���w���������p�p�������������d���z�e���������F�����x�F�������X�h�O��|�	�H�������S�e�����Z���B�������������@�����q�y������O���j�y�t�o�n�u�s�l�z�m�i�x�w�v�k�r���A�q���b�{�p������D�	�S�Y�U�[���X�N�Q�T�P�W�Z�O�R�V�\���C���B���~�{�U�g�|�[�]�u�p���zʥ�}�_�a���h�x�t�v�\�m�Q�v�s���d�E�n�o�w�l�j�k�qʡ�^@�$��rʣ�f�c	�z�bʦ�e���i���Z�`���{�|�����y���������������������O�����������P�������������I�K�M�������L�E�A���D�I�R��������C����	�F���H�����}�Q�M���S���J���G�����B�@�W�����N�����~���H��K���y��x���t���}���r��C���O���F�y���E�B�w������J�|�L��ĵ��s�~�{�@���F�G�z���v	�J�����u��������������D���c�����O���N���D����������@��������������������B�C���A���C���	���Z�F�����B����@�Gԡ���E�D������R���@������f�U���A���������A���w����ԧ�����|��Ԣ���v�{�z����ԥԨ�s����H���ԩ��	�����~����Ԧ����Ԫ���tԤ���u�x�}���������������K���y����ԣ�����[���F���n���I�E���q�r�j���������u���x������q������	�����n�������v���{�o���f�s�m���y���������c�����z�l�r�t�h�w���g���������i���B���������p�I�����J���L������̶Ċ�������������������������������������������������������������V��	�������������_�������m�����M�K�����������U�Q���K�����T������N�P	�S�N�n�����I�����L�����J�O���H���������M�R�R�������O�����e�G�M�G�D�P�G�S�T�Q�J�B����R�]�F�I�H�H�C�E�KP����A���Q	�k���������O�j�����N���P����@�O���@�E���U���B�����A�����������C�������D�@�Q���F�����W�������������{���������}���~	�V���W����z���|�S����P�������X�\���Y�t�o�[�`�����V��������Q���Z��A�Y�@�X�W�[�Z�����\Է����������	�����m�o�n�������d�������]�����}�|�_�^���]�����o�yʩʨ�w�z��ʧ�^�x�F�C�����������T�V�������p����H�I�E�F	��Ԭ����ԫ���|�����������_�����I�H�G�`�k�g�Y�n���e�B�b�f���d�c���e�a�a�`���f�g�������b���cX�D��}ʪ���d	������ʭ�{��ʬ�~�������|ʯ�o���������o�R�������Y��[���Z���@�X�W��������������V�����\�A�f������	���U�n�����h���g���T�h�Z�i�����X�^�U�Y�[�]�W�j�V�Q�R���������S�\�������j���������k�B�i���P�S�R�W�N�k�Q�P�l�Tܸ����X�G�J�m	�O�U���I�J��Ժ�V�M���H�L�l�I������Ա���n�����ԯԽ��Կ�������ԴԼ������ԾԹԲئ԰��Է����ԭ��Ե�o��Գ�����J������ԻԶ�K��Ը������	�����pԮ��ءتة��آ�����qؤ��ب��أإ�}��زرخ�������Kث����ح�~ذد��س��ج`�ԓ�Y��	���rا�������������������������������y���s�����t���������������������m���b�u�]���c���_�f�W�����\�����U�[�d��	���Z�`�e�V���^�b�h�X�a�����g�^�Y�����Y�K�W���M�R�N�Q�\�v���[�w�J�P�Z�O�x�L���X�y�z���n�M�m�O�J���L���	���N���P���I�K�\�{�������|�������������o�S�R������a�b�}�c�B�[���������h���G���R�E�����_���A�����������i�S&�x�	���Z�z�~ʰ���������B�`�Y�L��������i�~�p���g�h���]�X�����������j�������[�����q�������i�j�H������h�`�ʱ���k	�a�C�_�`�^�Z�����������a�b�����M�N�O��������ش���������������j���]��������k���f�����l�o�����n������0����q�p�m�k���I��������	��ʶʹʸ��������ʵʳ������������ʴʻʷ������ʲʺ�����������g�o���O�H�p�S�D�K�����f�E�d�L�P�c�@���Q�J	�M���r�i�T�R���n�l�I�k�G�F�j�h�q�m�e�N���������o���g�c�s�b���l�������p�����V�v�d�����f�m�q�u�r�k�n�����h���j�i�t��.���e���������������U�\�b���[��	�`�P���U�_�\�a�Q�[���T�R�c�S�W���X���Z���Y�������]�^�������d�������������@����p���������������C�������D	�������������������������B���������������A�c���������������������������������@ػ��ظ��ؽ�����B���	�����������������������G���C��ض��x�����A�D����غط����ع�pؾؼ�E������ؿ�ص���B�@�C��D�@��F������������A���A����	�������B����E�������g�������n�������z�p�v�k�y�x�|�u���t�����m���{���o�r�w�q�l�����g�s�U�a�X�W�Z�\�l�_�V���T6�̝	�]�[�Y�_�^�c�^�`�b���`�W���V�U���X�Q�R�Z�S���\���[�T�������������Y�����������������������T����x�̞�\��	�]���C�������������������l�m�n�������r�s�����������s�U�u�t�V���������]�e�A���E�G���F�������}���������^�p�������r�����s�v	�t�u�w������ʼ����ʽ�W�X�@�v�x�z�w�{�y�������p�������������f�w�����h�g�c�_�`�b�d�a�h�f�e���Y�J���������I�C�H�G�K�F	�������I�����K���H�J���U�H�V�I�J�i�������~����������������f���g�e�d�]���������d�_�o���x�����f��>�l�	���G�i�g�[���N�M�L�L�M�������p�\���t�������y���|�������K���q�W������ʾʿ�J�Y���N�L�����r�����u����������\�������	�Y�~���Z�}�@�W���x�������j�h���k�i�j�^���P�Q�p�O������[�i���a���������������s�w�v�p�d�z����������½8�	�����X�����������������������������B�����������h�Y�b�]���e�c�\�i�l�g�`���f���a�d�[�_�k�����^�j���������q���s����	���Z���rΫΤΪΣΥ�}�{άΩ�y����ΧΨ�qΦ�|�z��΢�~Ρέ�P�����A���o���n�l�k�n�]�p�o�s���q�pή�r���m�i�l�mF���q�r����	�S�R����T��[�X�A�Z���V�^���[��U����C��W�B�\���]��Y�\���D�]�@�������Q�������������������������������	�����R�^���O���O���P���������_�e���������g�S�V�N�P�U�T�C���R���D�`�M�Q�����~�t��z���a����ʾ̦���	���b����������������e�g���h�c�b�l�j�j�m�d�i�k�f�c�a�f�`�e�d�^�h�d�i�c�_�g�j�b�e������������������f�r�	���D�E�`���S���������r���q�����g�����t�{�������_�W�u�����������t�C�W�v�w�x������ί�f�i�y�]N���	�������x�l�|���h�����������D�����n�����m���o����������γΰαβδ���C���t�s�v�u���g�o�P�b�F�a�c�`�h���U�E��\��V�����W���T	���i�Z�\�E�[�Y�X������������q�o���m�p�n�l�����m�k�l�n�����������n��z���~���}���F�@�������X��ҿ<��y�u�z���x	�������������������r���j�����Y�j������θ���q����ηιζκ���y�u�w�w�x�x�vε�G�J�K�H�g�f�d�e�I�k�h�$�	�Z�[���\�]�_�a�H�G�Y�`�^�������������������p�s��r�t�q�t�u�o�s�s�q�p�r�o���f�F�G�������U�����������������{��V���{���f�V����	λ�������|�����l�������I�}�����u�������������E���q�r�s�������p������μ���z�z�y���i�L�j�M���F�{�]�q����b��	�������u�v���t���A�s�����������t��ν�k���J���U�������������{�m�C�n�l�^����v�m�L���������������w�v���������u������ξ������������	�}�|�{���H�O�o�r�p�N�u�q�P�t�s�G���Z�a�_�`��K�D�L�c�n�w���v�x��w���H���u�����@�Ю�H�I�o��������	�{�������������������������p�N���x�q���������y��������������������������������������^����w�x�yxzX{@|(}~�܀����t�<������܉��������|�h�<�����̓����p�X�(������؜ĝĞ����d�T�0����Ħ����T�4������Ȯ����.���t�������k�J��	̢̯�~̮̩����̪̭��̬������̣�|̥��̰��̦����̨�r���t�{����������̧�z̫�����}̡̤��ο��v�K�t��������ѡ������������	�������������G��������~�}���|�������J���������~���������������������������K���Q���������s�v���ѤѦ	Ѩ�����SѬѣ�x�Q������Ѯ�Rѥ�Yѩ��ѫ��Ѫѭѧ�d���yѢ�w�L�����z���A�i���j���U�^�d�M�|���e�`����V�����~�T�b$�l��e�I	�c��������]��H�{��d��Y�b�W�X���t���[���_���\�����f�c����Z�}�q���s�����������k�o�@�Q�m�D�q�e�F�S�i�l�G�N�H�Nf�X��s�T	�J�O�C�^�u�U�r�A�P�v�]�p�N�M���t�E��j�B�K�w�M�R�g�L�P�����x�h�����\���p�h���l�n�O�k�[�j�_�������Z�@��P��q����	�X�i�m���O�f�g�A�W�Y���o�y�r�������}���G�R�F���T�|���E�z���C�D������z�n�������{�f�����������H�y�B�z�����S����0����{�~�y	���~���x���_���������|�x���t����Q�v���}�����w������������|�{����z��������}�~�������$��~�|����	�y�{�����������}�����]���u�����������������V�V�������������������������x���j�i�h�a�J�b�A�������t,������	�����������|��������������������̱�����m��ѯ���������u�r�`�a�t�v�u�I�����I���l����p�����W���������X����̲����n����������	Ѱ�����v�Q�����~���}���������������������������������������Y���M�K������������������������������������Թ�����[�����Z����������	�������������������������������W�j�n�o�N�������\��̷̾����̳̺̼̿��̴̻�Z̸���̽����̶������	���F������������̹������������̵�������]�������������������u�^�v���������������A�����@����ѱ���C�������������������B��4��������L��	����������������Ѳ�D�����������v�����������������O��������Ѿ����Ѵ���^�����f����_ѷ����Ѻ���}ѽ�����Vv�����ѿ��ѸѵѶ��������Ѽѻ������������	����ѳ��������U�����������^�g���������Y�y���rզ���]�w����ա�������{�j�U������գ�i����բ	�s�����h���xե�q���tդ���R���o�������x�n�l�~�������w�|�����������p���m�z�v�T�S�������w�����W�����p�k�d�����z���j�J�g�w�}�k�n�|�\�m�l�~�U�y���l���i	�_���p�h�q�����f�e���c�]������ѹ�V��ݷ�W�{���y�����X�o�x�`�[���a�^�_�������]�S����<�t�������	���p���|ݱݶݪ�lݻ�i�z�{�b�kݤ�n�oݥݲݸ�j�dݣ�}ݺݨݩ�~ݴݫݵݭ�e���h�fݹݰݬ��ݡ�Sݯ�mݧ��ݦ�t���g�c��~�x�ݳݮ�Eݢ�s�u�����R	�����������Q�����L�K�������������O���b�����R��������T�������������������N���P�U��������d�	��������J����������������������������Z��������M�����������������h��������������v�M������������H������������	����������������]�������������������������������������������������Y��X���^���\�]�����Z��D�0��k��	�������[�B�E���F�D�G�l�C���W�N�d�M�L�K�c�e�������`�����������u�������������������[�r�������������������F���	�����G������������������է���������������v�����������u�x���s�w�t���q��ݼ���V����������������������������H���������B	���y������ݽ�u�����������R���z�{�r��W����������S���H�����|���s��������_���������I����
���	����������������ը�����}���~ݾ���Y�X�������J�I�O���^�J������������������������������w������������L�����	�����������@��������������������������������������P�M�������S�K���N�Q���L��O���R���������������T�F������	�������������b���������Y����������������լ��իխ������ժծ����թ�K�c����٧��٢������٥٨����������٦��٣١��������٤�}�����y��ݿ�v�w�u������{�z	����������x�t�z�����\����Z�������������������������������������������������l����	��������������������������������n�K�m�Q�R�f���P�������������X�����������T����������������T�\���٩���|��	�������B���A����������������կ�������d�����z���^�a�g���������������{��������|�������������������0��Y�x�Y���������C��	�G�B�E���������@�A���A�@�F���D�������W�\�y���S�������r�W�����C�r�M�N�F�X�H���S���I���������V���Q�O�� �	�����������J�P�D���������R�����U���E�L�����T�G�K�������z���������������������f�X�[�\�i�E�V�L�b�J�[�E�e�R��A�����D��Q�a�`�F�X	��_�`�c�Z�K�S�f�Y�a�m�V�X�����C�j�c�]���l�g�I���m�P�H�d�\�T�^�b�G�Z�Y�O�_�U�W��h���]�N�M�B�g�^���W���Z�U\�������M�Q�H��	�����������������w���������������������������������E���������������������������������������������j�������������������������������������������������	���Q�|�����������q������������մյչ����վս�����հ����������������������������ձ������������	�ղ�������������X��ճ����������պ��������ռ��շջ��ն������տ������h���{�o��"�����	�x���������������l��ٽ������������٫����ٳ������٭��������ٻ��ٶ��������ٰٵٯ������ٱ��ٺ����ٷٴ������������d����k�j����٬����ټپ������٪����ٲٹ���ٸ����	�����I�O�A���y���������k�|���}ٮ�i�����������������������������o��������������������	�����������������������lո���������������������������������������������~����ٿ�����m�������������������b�������n�������n�������z�@�E	�J�H�^�F�X�}�_�B�]�g�G�U�d�]�[���@�Z���o�Q�a�m�I�^�K�Y�g�D�k�a�M�C��q�W�h�`��e�S�f�E�P�L�N*����r�`�_�n�O	�b����T�c�l�j�A�V�i���b�R�������������}�����A�������������u�����������������������~�t����������l����������B���������������T����	���������������������C���D���������������������������@�E�F�������v���G�����������������������t�����	�H���I����������J�����������w�K�������L���������������������M�������������������x�����N�����{�~�����E��t�����O�A���H	���P�I����Q���D�J����@�����R�G����x����������C��F�S�B�������c���h�i�T�v�b���U�����f�����e���V2�\�	���g�d���������W���Q�N�W�V�T�O�r�X�Y�P�q���S�p�X�R�M�������o�L�V�U�U�h�Y�Z�T�X�S�Z���W������t�P���	�������������v�������������V���������y�����������Y�������d����������������������������������	���������p�c�e�q�d�������z�l�������[���K�����j�Y�w�������B�Z�[���n��������������k���\���y���\�������N�e�o�f	�p���������������������������������������f�g�h�������������������L���l�Z�O���_���q�g�����_������:��������u�i�j���������������`�����C�H	�������e�h�s�i�������]�����j���B�A���C�@�b�@�A�����������A�B�@�{�����k�|�������������������M	���[�����A���]�a�~���n��I�J�^�^���t�k�l�Z�����D�����������B���������_�c�r����ɡ�����@��ɤ�d��ɣ���������Dɢ	��������@��������������`����������E�������e���[�Y�L�Q�S�L�M�U�a�R�O�Q�V�Z�X�b�Z�K�n�M�\�T�W�c����E�G�^�U�N�J�Y�V�H�I�C�O�P�[�]�P�N	�S���\�W�R�]�F�T�K�X�D�����k���u�~�_�������j�z��q�d�K�b�f�e�B����m�o��v�h�f�g�uB�t��G�p���n�s��J	�u�y�e�c�I�}�M��O�@�l���k�}�r���u�x�|�A���f�~���i�_�d��`�N�^��������{���t��a���T�����L�w���������g��l��|���hϤ�w�i�jϧϪϬ�t�v�{�I��ϥϭ�{�s	�d�~Ϣ�x�z���}�}�pϨϫ���z�k���m���x��ϩ�o���^�H�|�w�v�n����ϣ�����y���������rh�h�Ϧ�y�~�����\������	�������������t�����l�L���C�m���U�[�W�J�M�F�G�J���V�_�E���@�N�B�O�Y�n���D�h�H�Z���H�E�f�Z�g�a�S��`��b�o���e�c�I�T�����A�G�`���Q�C�p�i�P�K���K���\�X�]��	���q���������������q���������e�����R�P�r�G�����[���U����G�D����g�P���	��d�X�c�N�����O�I�E��@�Q�Y�B������D�^�F�\�������S�����H���F�J���h�b���_�]�f��a�R��`�A�E��W���V�g�T�L�K���C�sJ�L���	�t��u�M�d�����]���������v���������������w�A�Z������������I���������M�D�h�x����������J�C������U�V���H�������������H����	���D��������������B�~�y��S�K���Q�������z�W���A����G�E�B���C�O�L�T���@�F�G�����F�E����i�P�N�R���o����D���	�j�����k���@�j�x�a�`�F���_�I�J���h���^�{�C�����R�H�K�c���j�b���W�������i���U�L�Y�e���|���T�}�M���l���P�Z�d�(��G�Q���[�����N���E�S�g�����V�l�X�f���O�������D���]�P���~�\�i���m�A���n	�����{��������}����n���w�m����q����s���u��R���S���}�o��������u�~�������|	�o�|�v�t�������z�w�x����z��j���p�p��y�x�����{��t��������s�����r�����{����y�������	����P���|�����v�D�N���M�Y���K���O���F�����R�������T���^�����W�[�`�U�I���������L��q�H�_�������a���V��\������k�J	���E������A���Z�B�@���X�r��Q�P�]�G�����������I���@���A����C��O��B�����D�F���E�D�J�s�G��F��������������E�B���@��	������A�����N�C����}�����Q�����������S�Y�W�������Z�R���V�U�[�������T���l�����X�t�P�u������q����o��Z���|�d�P�H�(����ظ̹��������x�l�p�\�@�(����������x�d�T�(�������������������l�l�T�H������������l�d�`�X�H�D�@�<� ����������.������	������p���m��n�������s�r���x�_�e�y�\�v�s�g�w���t�^�a�b�c�f�n�]�u�d�h�`�@�]�j�`�k�h�_�\�^�b�e�d�g�[�i�c�����f�i�a��������	�������������v���x�����V�����y�������������������W�e���l�����������������W�A�^�_�_���b���_�`�a�M�����������X�Z�U�R�T	�������������V���S�P���W�Q���Y�E�vϯ��ϳ����������϶����������ϲϱ��ϴϵϮ�������v����ϰ�����w���z�����w�x�y�P	�L�n���v�{�Q���l�r�k�u�W���q�M�O�z���j�m�s���t�|�p�N���������������m�N�I�P�L�@�X�J�W�i�H�[�R�l�K�S ����V	�Z�O�L�T�j�k�Y�M�I�[�x�Q�U�D�����K���H�I�e�O�M�Y�b�X�L�`�^�_�J�c�N�O�P�\�Z�K�]�a�Q���R�M�d�S���T�vb����U�p�w�yޡ�f���k	�R�O�z��ޢ���V�}�_�m�~�l�z�����x��ޣ���q���|�o�v�r�n�������������u�W���N�{�S�s�{�X���Y�t�|��Z���[��h�����	������������\�]���^�������_�������g�d�p�j�l���f�n�`�a�m�k�q���h�o���b�c�e���b�r�c�i�d�J�Q�e�U�S�K�I��\��L�M�H�U���G�V�Q�O�L�P�N	�R�R�M�f�N�O�P�K���T�S�W�X�T�g�����\�b�`�������^�h�������a�]�_�����p�w��t�u��v�(�H��i��l�	�m�z�k�j�j�i�{�k�l�l�j�k���m�n�����������������o�Z�����y�����������q�����d���������R�����e�n���bj�,���Ϸ�}	��������ϸϹ�f�P��ޤ�������n���s�|���g���t���B���e�d�c�`�f�����[ϺϽ��ϻ��ϼ���aҢҡ�~�S�{�]�^�o�\�_����R�p�g	�Q�k�j���h�i���lަޥީ�hިާ�����u�������s�t���Y�Z�i�q�r�}�q�p�n�o���l�������jɥ��ɦ�k���C�D�]���l���f�b�m�a������e�g�c�f�g�d	���_Ͼ�]�d�n�����e�a�b�\���^���c�o�`������������Ͽ�����������������b���GҨҥҧ�X�W�UҤҩ�T�VҦ�g0��ңҪ�����v	�b�f�e�n�y���h�w�c�m�t�U�s�a�d�u�r�q�`�i�����p�w�p�T�v�s���V�������u�R�q�o�q�t�r�U�x�S���r�sޭެު����r��ޮ�xޫ������	��ްޯ�������������v���u�~�}�{�z�w�x�y�|����_�\�]�W�[�a�`�^���d�e�������c�y�y��x�~á�m�n�m��������z�����������Y�v�j��ɧ���z	�E�{���l�j�k�h�h�i�|���}�m�~���k�g�j�f���i�����������l�h�H���c��������������������ү�t����������	�����������������������u������ҴҫҶ��ҮҹҺҬҸҵҳҷ�_�]����ұ��ҭ��ҰһҲ�^���Z�\���v�����x�m�k���l���s���t�p�{�u8����r�o���y�n�w�z�q�y�[�x�w�v�|	�������������~����ڡ�`��ڧ����کڢ�Zڦڥ�[�a�bڨ�X�}�{ڣ�z�_�|ڤڪ�Y�^�\�]�������W����z���޷��޻��ޱ��޼������޲޳	޽޺޸޹޵޴��޾����޶���������������u�s���������������������������������������w��������@�b�����A������	�������������}�i�f�e�g�f�Z���c���X�t�\�[�d�h�x�Y���m���z�����j�h�k�n���l�g���B�E�u�@���o�Fâ�D�{�����A�C�G�v	�t��ã�s���n�������������������������nҼҽ�}޿�]ä�{�������o�`������������Ҿҿ�~����ګ����@�|����y��������	���i�^�_���r�o�p�q�V�H�|�w�����z��������������{�c�d�����F�j�i����ڬ���������Y�z�k�l�n�m���|���r�p��T�q	���}���������~�������������U���`���d�c��b�a���V���{�z���������f�eڮ����ڭ����������������������B��D�j	�����sæå���|���s���Q���������o�p�x���t�������������������������������������Q�h�i�\�����n�l�����k�j�e��������m�����f	�g������֢֡���|�~֤֣�}������ڶ�k�jڰ�h��ڳ�lڴ�mڱ�g�iڵڲگ�������X������������������������������������H���������	�W�������������������������������@�������E�C�H�I��F��G����D���T���l�k�s�m�r�o�`�q�a�b���p�n���X�����	���t���w�u�v�����o���M��¡�N���}�O�~�L�P�J�~ç�xè�o���K�p�v���������U�~���}���������������������n�o�����G������q�m����	������֦���o��֥����ڸ�qڷ�p���J�������x���Q�q�p�����u�p���w�r���������K�t�R�r����	���������������q���r�s���i����֧���I������ڹ���s�����������L�d�u�c�y���S�s���n�x�w���v���y��������������P��	�������������������������������������������������v������ְ�����w�t��ֲ֪֭֮֩֫֬������֨��ֱ��֯������M��	��ڼھںڻڿ���ڽ��t���������������������C���������F���D�����E���A���B�������������@��������������\������������	�N���Q�O��M��P�B�k�}����~�v�z�y�w�f�g�e�x�{�|�h�@��|���{���A������|����z�~�}�Z�U¤¥¢��£�8		�T���{��é�y�z���t�w�u�v��������������f�������������o���������x�����u�G�B��|�x������͡�z�|�~�}�{���A��X�$
�x������	�����A�����������������������C���������|��������������ֹ�z�����������������y�������}���~�{���@�B�����B�_����	����������ֳֵַ����ֶ��ֻ�������K�����Y���v�����������L���������w�����x�����T���h�������N���Q�������	�����������M�M�����H���O�P�������J�K�����D��������������������������������I�����������N�����T��X�V��	�������S���O�����U�R��������Y���P�����W�Q�����j���������T��l�i���k��U�F�V�W���E�X�C��������V`��
	�G��������Z�W¦�[�]�\�X�Y�ê�~��}���z�}�y�q�{�|�~�r�t�s���w�������Y�Z�����[�����������r��ͣ�������͢	���������������������������������\�^�����������������s�ּ��ֽ��־ֿ��������_�������p����R����`�S��l���T���a�w�P�b�c�A	���������C�d�B�����@��e���������f��������g�m�H����I��_�^§�ë�š���������������V���r&�X�q�p	����ͤ��������������������������������������h�������������������������i�j������������h�L�}	�������|���z���{���y���A����Z�����X�@�W�\�[�Y��G�I�H�k�D�����G�F�������^���l�_�[�]���Z����	������m�p�����E�r�q�n�o�S�������J�����`ª¨©�g�n��íì����������H�s��ͥ����ͦ�B�@��������	������������������������X���������~�������D�]�^�C�B�H�C�J�����K�L���a�`��������������s�D�o��K.�����p��«¬	�u���q���������A�������g������r�����D�������������������s�m�E���M�����v�������ͧ���t��p���B�C���I�@�B��	�D�G�E�A�u�F�C����H�A�@�����������������������������v���w�����������������������������d�������z�����	�x�y���������������������������������z�����[�J���a�P���S�G�L�F�c�J���H�b�{�O�N�K�M�I���R�_�Q�E��������p��	�]���X�z���N�P���U�T�W���R�Q�������S���Y�[���V�O�������i�������\�Z���Y�q�V�����b���c�|�e����������6�L�`�h	�d�f�g�v�����j���������@�����t��x�������Q�y����w��{���z��������F���p�������O�����������N�x�$�������	����L�������P�M�����u���������w���c���a�g°�e�d²�j±�k�h���i�b¯­��f�l���òð���ñî����ó�����x���	�����w�y��������������������������ţŢ�����������������X���Y�m���~���Zͨ�E�F�D���^���]�G����H�I�C���I�O��	�M���K���L�N�����J���������������{�C���������������c�����A���������V�d�T�e�U�f�����a�^�`�����_>�����C����	���������k�����T�a�������~���|�}�����W���S�X�T�V�R�U��³�\������z�{�A�����@�������������t��ͩ��������L���J���������K�������Z���S�Y���R�X�V�����U���T���������Q�P�W������	�����������������������������������������������������������������	���������������������������l���`����������������������������������[�F���h�]�_�a�e�[���Y�j	�`�d�\�X�W�h���b�Z�^�k�i�f�g�c���r�����d�����j�x�t���x���e���u�b���w�f�V�����v�p�������j�����c���q�����s������F�t�h�g�d	�l�i�m���y���n�o���k�\�����������������p�y�u�����r�v���l���t���������s�w���q���n�����z�r���������{���o���~��h	�M�������������~�����������������������������������������������������������_���Y�i���a�]���d�g���\���e�������`�Z�h��X ���c���^���b�[���f���O�Z����	�n�t¹�w´µ�o�v�qº·���m��¶�s�u¸�r�p���P���÷øô��õ�����ú�����ö���~�}����L!��ġ��	�����������������������B�������������@�B���A�l���_�v�q�p�N�t�u�����D�r�s���������������L�A�������������EN�L"���q�r���o�n�m���p�S�h�k�l�j���������D�C�����J�����H�I�K�G�E�B�i�J�K����	�����I�I�E�C�������{�����z���B�@�E�I���|�y����������<#���D�I���@�A���K�J�B	�y���H�F�������G���G�C���D�R�N���Q�J�P���]�K�L�H�O�Q�H���D�F�M�E�����������������|�������o��������@$�����J���j��	�t»����Ģ�����C��I���u���u���M�F�`�[�_�]���^�\�M����@�i�j�n�o�h�k�g���@���p�z���|���}�d���������������<%	�V���ù��D����������O�����N�b�������a������������L�B���A�U�s�m�l�n�r�q�������~�������y���xû�ýü��������P��V�8&�e���d�c	�����������������������D���o�p���~�C�A�B�{�|�}���������������������k����z�{¼��½�l�����,'��������`�T�@�$�����������������t�L<�����|T0	
�
���
�dPD���|hD�����l`P D!D"4#8$4%0&$'(.(ģ�������������Q��	�����A�R�S�@�B���T���f�������A�����@����q��������^�������������������sͪ�C�U�U�h�\�����g����()	���C���B�D���������F�G�E���T�t�u�E�����D���k�����������z�S���p�o�m�n�q�w�|¿¾��ťŤ���*��	��L�w���v�F��ɩ����ͫ�v�w�w�t�v�y�u�{�z�x�x��������ͭ�O��������������Ͱ�{�����|��ͯ�M�@ͮ�������M��^��*�N���[�G�H�]�W�W�Z�c�a	�I�g�L�d�\�Y�I�b�D�e�V�_�F�K�`�w���X�J�^�N�E�f�������K�������������j�����l�N���k�i�n�����H���+�o�m����	�����H���������Y�����������V�}�N�����E�G���H�P�L�J�M�Q�����F�O�������K�I���������������B�X���Q�O�����,	���Jߡ���N���K�����P���M�G���L�������������w�u�{���sߢ�x�r�{���}�v�~�����|�~�y�x�y�}���|�t�z�����T�����e�L$��-�H	�M������J��K����I�����A�D���C���������@����B����������������������������������n�������t�����x�z�wf�p.�v���u�s�����r�����y��	������}�~�b���þ�Ĥ����EŦ�C�D���������R�N�{���������S�������P�B�T�U�V�O�������h��X/���p��	�W���w�P���|������������R���Q��E�����C����ߣ�R��ͱ�i�Q���r�S���������������q�L�V�W�T�V�������S���U�[�X�Y���Z��@0ߦ	ߧߥߨ��ߤ�S�J�F�I�K�H�G�����������������������������ĥ�����F�������}�\�}���[�X�[�E�A�J�������K�M���N,�81�L	��ˢˣ�{����ˡ�����|�z�y�}�~�~�j��Ͷ��͵ͷ�Y��ͼ��Ͳ����������O͹Ϳ���ʹ����ͺ��������;͸��������ͽ��ͻ������n�$2ͳ���������@	�����A�y�Q�K�x���_�b�\�d�a�q�t�]�B�k�V�`�c�eТ�w���UС�Y�W�R�o�~�s�vХ���f�}�^�xФ�u�y�|�����PУ�{���]�l����3�p�_�Z�S�X�T�g��ӥ�[	���z�A�v�������FӨ���C�v�Dӣ�}��ӲӪ�~�Eө�x�|����ӭӤ��ӳ�tӬ�����s������ӫ�����r�\Ӧ���z��4���{ӡ���uӯ�FӮӶ����ӴӰӧӢ�����w��ӱ��	�y���T�u�G�����_���W�H�����s�������{�J�Q�I�M�J���^�`�e�y�����]�����h�o�u4�5	�b�i�H�@�w�r�����n�j�\���a�Y���w���f�c���s���d�z�l�K�k���L�����Z�_�p�v�A�[�g�m�����x�q�t�P�P�}���M�`���������N�����lv��5�`���}۪ۧ���hۣ�i�w���s�����t�]	ۤ�R��ۡ�u۬�p��ۯ�����z�����rۭ�k�d�o�c�a��ۥ�jۨ��۩���������~���v�f�O���^ۢ۫�e��۰�q���6	�m�������|���x�����������y�g�{�bۦ������ۮ�����c�����_�[���M�X�����P���U������ߵ�����������߿�������������ߪ���7߲	�������������Q��������߶����߱��������߫����߹߸�C�R߼߾�������S����߰��ߴ��������������������߻ߺ��߬����߭����߷����<��8��	���T߳���U���e��߯��߮�`��������������X����[��Y�����������������f�������Z����]����a�����U~��9�^��	�W���V���T�c�\��������b���_���������e���V�����^�l�����W�������s�t�g�f�b�����v�uߩ�_�c�]�p�a���w�Z�X�d�n�i�����:�O	�m������߽�[�R�U�{�\�S�Q�N�����e�����`�h���x�|���W�k�o�T�y�����L���r�V�j�P�^�Y�����l�}�z�q���L�`�]�X�F�N�M�M���I��;�@�C�����E��A�G�������h����L	�F����U�O��F����Y�J�T�����Q��D�H�B�V�S�P��������W���M�����K�����Q�N�S�@�E�R�D��A��D��<���M�O�����Q�I���P�B����R�J�G��U��	�v����H�Z�T�K������L��V��C�N����������~�[���~���������������������=��\���������	������������������������������������������������ÿ����������������������ħĩĦ���������>���j	��ĪĬ�ĭī�������kĨ�]���^�����������������������������������J����������K�I�G�H�L��������������
��?��	�������E�F�G���������@�r��Ӹӷ�@�B�|�{�R�����������~�X�Z�Y���W������x���}��������ЩЧЦ�i�k�jШ���S��L�|@�L���Z	���ӿ�A���FӼ����ӽ���C���Wӻ��������H�RӾ����ӹ�G�D����Ӻ�E�B���C���Lץ�K��ר׫�H�F�~שקפ׬׭ׯװ�}��\A�Eעס׮�Gף�I�Dצ�M���Jת���L����ۿ	۴����۽۱��۶��ۺ۸����۲۵��۳۾ۼ۷۹ۻ���r���a�N������������������������HB�����������������B������������	�������`�T�j�������e�������g�����h�������m�����������������i���l�����f�����d�4C��������	�����a�T���������������k���������������������������������a�E����������d���`�b���uT�D	�a�����k�g�l�e�`�o�c�G���\�h�i�_�^�l�b�]�c�n�[�m�j�������f�����d�F�Y���]�Z�a�g�\���p���j�_�k�f�m�^�����`�n�X�l��E���I�d�c�h�[���e���b�i���e	���f���������L��������������o�����������|���������������������M������������������F���������r�����g�������������h�N����	��Įį�����O���B�E�A��C����D�Q�O�i�N�@�P�F�M�P���������������������Z�n��������F��Ъ�Q�����u��	��G�����lЫ��ױ�N���������������[����������DЬ��ЮЭ�m�����|���I�����������J�N���M����\��G���K�L������	���Pײ�U���T������׸�R��׳�S׿׻׽׷׾���O׺�V׹׵�׼״׶�Q����j���������l�����������������m���H�����������E���c	������������S���������������������������b���\�n����t�B�A��v�@���n�p�o���r�q����s������I�����o	���������������������������������������u�c�p�q�p�|���w�y�����q�u�x�����{�s�t�z�r�v���r�S�q���w�����s���t"��J	�u�x�X�������������Y�������v�����F��������������������������İ�����I��K��H�JŨ�Rŧ�������r�H�I�K�J�P��H�K���n����	��������m�n���W���V�o���������`����C�F�E�D�������������������y�{�z���m������ı�q��T�Sd�tL�[�N�s	�~�}�S�����T�d�~�\�^�c�����OЯ�o�����������C������A�@�B�����U�s�I�G�H���������}�|�}�����IJ�L�Uũ���L��DM��	�q�rаб�p�T�R�Q�X�P�Y���V�S�W�U�O�_���Y���^�`�Z�[�����X�����]���\���D�F�t�����E���������I��0N����	�����C���s�����������B�����@���G�������A�����H�����������������������������P�M�E�J���Q�����r�GP�N	�O�K�N�L���F�����l�L�x�{�N�����M�}�����O���K�����y���|�z�����w���������J�u����������������������������*��O��	������������������Q�����������������������v��������~�������������������������������������������P���K��	����������t������������������������~���������������������������������������������������������l��Q����A�u	�O����������w��������@�B�����C�������w������ķ��������ĵ��������ĸĴ��Ķij�x����@�N�M�P�Q�A�V�[���RŪ�v�X�c�W�Z�Y	�C���B�@�A���������@�M�N�g���m�������y�z�{�P���������X�������V�����h�b�~�����������b���j������|S���V�W�^�T�Y��	�Z�\�]�[�e�U���X�W���O�R�I�P�J�K�L�N�P�S�O�Z�T�S�Q�R�M�c�G�H�F���Q�Q�O�N�X�R�T�V�U�W�S�M���[�\���g�����e�]�^2�dT�f�a���`�_�W�Y�d�X	�V�c�m�d�i�a�e���h�i���k�n�Y�f�l�`�_�e�������d�k�j�f�f�g�m�@���B�y�A�������x���������X�Z�����z���R�P����t�hU	�����D�D�����Z�a���S������������v�������b�������H���V�U�W�Q�R�����������������F�Eˤ�\�[���{����lV�����I	�Y�Z�X���������|����������������G�������s���t�]�^�������h�f�c�g�e�d�y�}�J�����L�Q���S�R�U�����O�K�M���T��@W�P�N��������	�������[�`�b�T���������S���U���������������������������������@���z��������A�����{�������������:�4X�	��B�����H�I�a�J���W�|ĺĹ�R�C�~�B�S�\ūŬ�v�E�B�D�P�|�}�������n�P�l���q�������h�p�_���a�k�c���`�f���j�i�d�e�b�U���W�X|�$Y�Y�Z�[���V�\�G���Z���[�j�m�����i�p	�r�h���o�C�q�n�o���������Z�Y�\���j�i�\�]�����������в�v�u�\�]�_�����E������$Z���X�}	���W���V�r�_�b�`�a�e�T�f�c�d���V����������������~����F�L�N�K�M���T���o���w�������[���l���k���[�G�������g��`���	���^���Y��l�]������������\�_��Z�^���h���o�n�����p���m���r�i�k���g�j�q���s�s���F�]�������[�a�YB��[�b�H�X�]�c�`�_�^���W�\	���Z�I������A�C�@���E�B��F��D�����������������������W�����m�����������������������������\�����	����J����������������t�D��E�������A�@��C�����B����������K�D�R���O�S���L���Q���������P���T���M�~���]�Nļľ	��Ľ������Ļ�C�E�V���U���aŭ�`Ů�^�]�b�c�F���_�����������\�Q�P�O�p�������n���`���I�������O�P���Q������^��	�U�R�������������y�x���c���a���b�������m�������n�����}���S�C�A�E�F�L�H�J�T�B��I�U�K�D�G��b�@��a�c�����uJ��_�w�v�{��	�x�t�y�z�����|���g�f�d�e���������M�N�I���J�����������K�L�H�@�������G�p�����V�������������������������`��W��������F�G�H���X�I�������X�Y�W�V�Z���������������X���Y�W�F�dů�e�H�G	�Q�a�������H���y�������k�n�l���m�����_���`�_�^�`�����a	�V�U�]�_�^�u�x�w�t�|�{�v�z�s�p�q�r���v�s�t���I�����d���@�A���Y���������G���|�G���d�A�Z�[�������[�����N�D�w�c˦��b	�~���������e�y˥�\���������]�b���������������x�����n�a�d���vжд�|г���~�{���r�}����е���z���j�����g�n�E�i�����l����R�|c*�*�+�,�-h.P/8001234�4�5�6�7�8�9�:�;�<�=�>�?t@TA@B,CDE�E�F�G�H�I�J�KlL<M(N�N�O�P�Q�RtS\T`UdV8W,XYZ[�[�\�]�^�_�`�a�btcld.td�h�e�}�k���m�f	�^�u�b�����p���z�v���c�z�~�w�|�r�o�q�}���u�x�t�y���{�s���A���M�e���g�i�_�N�f�j�`�F���B�G��O�~���e	�P�E��r�J��C�B���M�L�K�I�N�}�D�F�H���x���������������a�����a���R�C�A�S�b�D�B�Q�P���O�������M�N����������������hf������������������������	�����������U�o�R�S�Q�T��˪˧ˬ˨����˩��˫�@���W�o�����������������b�f�y��имй�Tg	������лнп��о������������к����������q������p�r�����������������������з�������l�{���V���W�T���n�SZ�4h�Y�X�k�\���[�P�Z�U�m	�������Q�����R�����n�q�i�m���l�j�p�k�h�o�Y�H�J�V�W�U�Q�G�Z�T�F�I�X�������������K�L�M�]�� i�\��	���[�\�Z�fŰ�������u�t�@�A����s�����������������z���_�a�]�`�o�^�p���s�U�T�S�����L�s�u�����������t�r�������]��j�a�^�_�M�`�[�\�J	�K�]�L�����������������y�����������������������f�O�P�N�c�R�����_���Q�^������Ŀ���d�����]�H���I���� �k�C�]���q�e�o�������V�\��������q����	���B���x�v�z�J���y�w���I���C����������B����@����C��������A���f���m���lb�l�j�b�q�e�o�v�n�y�g�u�c	�i�w�L�h�x�z�k�h�r�s�w�u�t�f�r�v�i�t�s�d�g�p�j���_�k�����������a�l��W�Y�e��m�Z�\�f���l�[�n	�{�d���b��^���c������`������@���X�o���g�]�p��q�������_����r���s��������C���x������z����������m���t���u������v����~��w	�����|���������y����{����w�v������}��R�K���x�Z�U���g�P�q�y�O�V���z(��n�e�T�q�c�d�N��X�t�y�s���o�w�u�h�b�}�W�~�{�x	�m�k�f�|�n�{�j�z��}�S�~�v�|�r�l�Q��������p�Y�i�X�t�������������D�����A�j��o�C�������	�������B�@��������@������C�E���E�������������B��������A�������������D�����������������������������p���|�����U�B�����y��������������������	�����������������������������������������D��������������������������������������
�q�����������s�����`�Y��	�N�c�[�����e�U���_�������a���W���X�]�b�������j�g�k�^�Z�h�j�\���V�������d�f���i�S�V���������������r�s	�c���q�W�a���l���h���r�b�e���t���m�p�������i�d�������`���������o���X�k�u��g�n�����������B���f����@�����0��s����	�����D��������A��������C��������������Y�������Z�����������a�f�O�h���I�d�j�N�J�K�`�g�M�e�L�_�c�b�[�^r��t�i�\����ű�m�p�l�n�o�i�j�g��	�k�hŲų�]���K�M���^�X�L�N���J�������������D�����S�R�T�_�U�^�V�r�u�t�h�s�����r�p�q�w��|u��������	�����������������������������F�����s�_���s�v�q�]�t�����x�w�v���u�O�n���������r���Z�~�[�h�g�s�\�`�j�i�����`�_�k�u��lv�l���o�p�D�m�v	�Y�q�X�r�^�t���������������a�^���f���b�����j�h�l�������j�������i�g�����d�����c���k�e���������B������8�lw���N���d���������_���������]�e�f�����������D�@�A�g�}�}�C	�h�E�������������������i�j���z�~�{�|�����i���k���h�����������kz�`x�{�|��	���l�B�Q�T�}���P�m���R�M�S���`���������������������n�����o�������p�����a�������H�q�C�|�����D�x��v�c��\y��	���{���E�r�F�����}�z�y���|�{�~�����{�����h�s���������t���k�������������������[���\�u�M�K���I�J�F�F�N�H�L��@z��	�������������������G��n�l�m��������w�x��E�G�F���P�m�l�k�d�����������V�z���|�~�}�y�����w���n�G�I�o��@�,{�q�p�m��������	�H�I�J���K�L���G�`���l�����U�W�X������ɪ���X���V�Y�Wˮ����˰��˯˭����������������������������|���B�@�����r������������������������	�������������E�����F�~�|�}���g�v���x�����I���H�K���J�������������������G���}��|ܣ��	ܢ�������|�~ܡ�������������������j�k�����i�������w��G��������G�H�O�I����x����y�o��������A���G�y���L��}����ܤܦ��������ܥ�n�o�m���l���[	������P�J���p�t��q���u��s�m�y������B�����H��ܨܧ���^�����s�p���r���������H��~��������]��^�_��`���Q	�N�K�P�S�L�R�O�M��������������w�v��x�~��}�z��{�|�`�H�I�����S�z���n���Q�R�o�{Ŵŵ�q��������E���G	�����F�W���|�}�~�C�����t�������Q�R�m�D���a������E�S�����M��ܩ��ܫܪ�������u�v���������������������������������������c	�b��d�������V�U�T�T�����A�@��������}���{�~�|�y�@�z�~������������J���K�����p�����ŷ��Ŷ�O�P�H�����i	���������������C�B�����������q�r�����������������a�W�D���������X�A���L�M�|P����Q�������N����ܬ��	�z�|�������w�x�{�y�����������[��g������e���[�����f�{�Y���Z�U�[���B�Y�X�V�Z�W������h�	�E�J�F�I�������H�G���D�B�E�C����F��������@��A����Q�N�O�P�r�V���U���t�sŸ�����I�`�X�������������������~�|���}�L��b�����a�{�w�t�s������	���������������F���_�`�a�^�]���������������a����ܭ��������������h����������G��B����D��u�R�S����	�t�����s���u�������u�����a�J�����������������H�O����������ܮ�������������~��������}����X�0���	������������i���G�p�\��k�j���������l�q�a�_�r���^�]���`�\�K�^�]�_�N�L�M�R�K�Q�T�S�P�O���s�D�������J�H�I���������	�C���D���X�W���U�T�����Y�vŹ�w�X�v�V�w���t�a�Y���u�����m�������������������������x�b�y�v�w����������	���������d�c�x���b���������������P�U���v�����`�W�V�w�L�����x�����������������������y�����������̈	�������K�J�������������������n�q�s�����r�������t���p���m�o�z���c�f�d�c�{�i�h�g�b�b�a�e�d���Z�|�^�[�]�\�Y�_�b�`�a�@`���	���X�c�����������M�����]�����E�F������}�����������U�`�^���]�c�a�����\�Z�[���_���b�x�~�����y�[�������Z�}�|�Y�{�X�z	�}���~�{Ż�x�|�����y�zź�R�����S���������J�v�j�����k���������z���������������z�����������������������I��������L	���c�����������J�����e�����L�����f���M���d�������K�b�b�������������|�������l�������j���m�����d�k&�����f��	�����f�d�e�y�y���\���Lż�K�����b����������I�������������������h�v�w�������W�n�q�p�o�g�h�f�e��h�h�	�g���O���P����������G�����g�i�h�c������������Ž�T�U�V�K�c�����x�i����������J�{���r�������������������@����������z�y���d�i�������S�R�Q���^��	�]�����L�������������������������|�������������{�}�x�v��w��� ��s���y��	�t�r�u����������|�j�{�z�~�����j�m���l���t�o�s�q�p�n�k�C�B�D�A�u��������������������.���X��	���������W�U�T�������������J�������K���������������������I�H���������������������l�o�V��p�����	�P���m�s�q�k�v���j�����r���n���u���t�����������������`�����������_������ſ�������S���������������������p��	���p������ž�Z�\�_�[�`�P�Y�W�����]�����X�^�������M�����������Z���\�[�y�x�x�w�z�@�s�t�����������`�	�����K�L�M���N���e�O���n���o���������P�p�������e�h�N�f�j�g���i���Q�R���S���T���������U���V�W6�4�	�g���h�X�Y�Z�[�j���O���P�\���d�����]�^�O�M�N�o�_��ܯ�������`�a������������������������������x�����	�a�������}�����~���H��o��k������p�����@��l��m�n��b�G�G��z�{�~�|�v�A�y��}�B�E���F��Ĕ��w����������c�C������	�D���d�Y���������������������Z�r���[�M�����x�����O���P�E�G�������N�������������e���H�����������������I�����������L������	���}�{�J�������|�x���~���z���w���������y�K�����������������a�������b�������d���������M����>����R���c���u���f�����^���������������������_����������������������	�i�n�d�g���k�r���e�o�s�j�c�m�l�q�p���h�b�f�N�O�a�`��������������������������	���a�]�b�^�c�`�_�b�a�|�{�����d���x�|�J���}�����\�~�}�������������������N�M�����P�h�p�q�r���������	�����k�m�l���u�������g���������h���R���i�����Q�������g�q�s�t�r�g�f�j�����^�����e�P�Q�S��t����������^�f������G�����	�Q���Q�S�����|�R�����������e�H�����c�g�������������k���h���s��i�����������`�a�����l����F4����j�t���m	�k�l��z�d�����H�u�������r���q����L�J�K�I���\�n�������������o�������f���m�v�w���d�}�u�n���������d��4�������	�x�R�p�e�~�q�r����������]�������g�����y�����s��������o���������^������������������|�{�z������M�(������}�t�����f�������N������~���u�����������������h�������������������i�j	�b���������������T�������S�g�j�i�h������s	�j�k�������������l�k�s���e���������������i�t�v���������ȡȣN�`fLg,hijk�k�l�m�n�o�p�q�r�s�ttudvdwXxTy8z${|�|�}�~�����|�`�D�<�(����Ĉ��������`�8�����|�X�,������������l�,�,� �����P�.���@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c	���	�G�H�I�K�O�P�Q�T�Y�`�a�b�@�	�h�q�t�u�w�y�{��������������	���������������@�EVĠ�F	�J�P�p�����	����������������	�����@�D�K�\�dH��i	�x��������^t�	���F�G���	�N�U�X�Y�e�i�k�l�p�r�s�����������	��	�S�b�	��������$(�	��������������������������������fH�	�����e���	��P"��	�� =Ȣ	���������E�F�ܢ�G�H	���	��������������������,�	��������������������nT�	�������	���������	���Z��	������4ԣ	������������������v�	�_�`�a�b�c�j�m�n�o�p�x�y�$��|	�����������������������������������������������������������d�	����������������<�	�S�T~�	�C�G�4�	�}��������L�	�� p�	�d���8�P�x�����@�l�������� �@�������Ԣ���L�������̣��\���,�D�h�|���D��	�z�|ȤȥȦȧȨȩȪȫȬȭȮȯȰ�0�	�����������������������������������������������������������|�	�J��w�x�y�z�{�|�}�~������������
	�	�I�����C�H�����]�^�����A���D�����������������������G�F�������H�I�������������������������������������������������������@�����P�	�����������������������������������������������A�B���a�U�b��ȹȺȻȼȽȾȿ����������������������������������������������L	X�������������������������������������������������������	�	\�	�F�G�������D�	�P�t���H�X���P�T���
��^�_�_�_�_$`P�h`�`�`$�X����h�a�i�n�v���� )xe��p�,�(�@������T
H�@�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_________________________________`_____________________________�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[����������	

 !"#$%&'(��	
����	

������	
��	��	

������	
��	

 !"#$%&��	

��	
������	

��	

��	

 !"#$%&����������	

 !"��	

��	

 !��	

 !"#$%&'()��	

 !"#$%��	

 !"#$%&'()*+,-./012345��	

 !"#$%&��	

 !"#$%&'()*��	��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()��	

��	

��	

 !"#$%��	

 !"#$%&'()��	

 !��	

 !"#$%&��	

 !"#$%��	

 !"#$%&��	

��	

 !"��	

 !"#$%&'()*+,-./0��	

 !"#$%&'(��	

 !"#$%&'()*+,-��	

 !"#$%&��	

 !"#$%&'(��	

 !"#$%��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*��				

																 !"#$%				&'(	��	

 !"#��	

 !"#$%��	

 !"#$��	

 ��	

 !"#$%&'()��	

 !"#$%&'()*+,-./0��	

 !"#$%&'(��	

 !"#$%&'()*��	

 !"#$%&'��	

 ��	

 !"#$%&'()*��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./0123��	

 !��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*��	

 !"#$%&'��	

 !"#$%&'()*+,-��	

 !"#$%��	

 !"#$%&'()*+��	

 !"#$%&'(��	

 !"#$%��	

 !"#$%&'()*+,-��	

 !"#$��	

 !"#$%&'()*+��	

 !"#$%&��	

 !"#$��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0��	

 !"#$%��	

 !"#$%&'(��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,��	
				
						 !"#$%&'	(												)��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./��	

 !"#$%&'()��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*+,-.��	

 !"#$%��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'()*��	

 !"#$%&'()��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,��	

 !"#$%&��	

 !"#$%&'()*+,-./0123456��	

 !��	

 !"#$��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0123��	

 !"��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-.��	

 !"#$%&'��	

 !"#$%&'()*+��	

 !"#$%&'��	

 !"#$%&'()*+,-��	

 !"#$%&��	

 !"#$%&'()*��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	
	
			 	!	"#$	%&'()*+,-	.			/						��	

 !"#$%&'()*+,-./0123456��	

 !"#$%��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*��	

 !"#��	

 !"#$%&��	

 !"��	

 !"#$%&'()*��	

 !"#$%&'()*+��	








 !"


#$%
&'(
)


*+
,-./0��	

 !"#$%&��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0��	














 !



"#$%&'()
*+
,-��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'(��	

 !"#$%&'()*+,-./��	

 ��	

 !"#$%��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-.��	

 !"#$%&'��	

 !"#$%&��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+��	

 !"#$%&'()��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+��	

 !"#$%&'(��	

 !��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-.��	

 !"#��	

 !"#$%&'(��	

 !"#$%&'(��	

 !"#$%&'()*+,��	

��	

 !"#$%&'()*��	

 !"#$%&'��	

 !"#$��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'��	

 !"#$%&��	

 !"#$%��	

 !"#$$$$$%&$'($)*+,-.$/0$12345678��		
			
							 !	"#$%&'(					)*+,-	.��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012��	

����	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+��	

 ��	

 !"#$%&��	

 !"#$%&'()*+,-./��	

 ��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'(��	

 !"#$%&'()*+,-��	

 !"��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*��	

 !"#$%&'()��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./��	

 !"#$%��	

 !"#$%&��	

 !"#$%&'(��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0��	

����	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0��	

��	

��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./012��	

 !"��	

��	

 !"#$%&'(��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./0��	











 



!"#$%&'(
)



*+,��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-��	
	
								 	!"#$%&'()*+,	-	./	012	��	

 !"#$%&'()*+,-.��	
	
														 	!"#$%	&'()*		+,-��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*��	

 !"#$%&'()*+������	

 !"#$%&'()*+,��	

��	

��	

 !"#$%&'()*��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&��	

 !"#$%&'(��	

 !"#$%&'(��	










 !
"
#
$%
&

'
()*
+



��	

 !"#$%&'(��	

��	

��	

 !"#$%&'()*+,-��	

��	

��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01��	

 !"#$%��	

��	

 !"#$%&'��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !��	

 !"#��	

 !"#$��	

 !"#$%&��	

��	

 !"#$%&'(��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	
			
																																				����	

 !"#$%&'(��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123��	
��	

 !"#$%&'()*+,-./0123456789:;<=����	

��	






















































����	

��	

 !"#$%&��	

 !"#$%&'()*+,-./0123456789:;��	

����	

�����	

				�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��	

��				







����	

��	

����������	

��	

��	

��	

 !��	

 !"#$%&'()*+,-./01222222222222222��	��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

 !"#$%&'()*+,-./01(23456789:;<=>?��	

 !��	

     !                           ��	

 !"##$%&'(###############)*##+,#-�	




@�	

 !"#$%&'()*+,-./0123456789:'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''𧉧𧲱𧳅𤊿𣘗𧍒𦺋𧃒𪍑𧱬𦬣𥩔𡩣𣸆𣽡𨮹𧯯𡵞𩺰𩥅@�	

 !"#$#%&'()*+,-./0123456789:;<=>?@#A#BCDEF####################################################################################𠄌𠃑𠃍𠃋𡿨𠃊𠄎@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������𪎩𡅅𧜵𠧧𩷶𧀎𪄳𨑬𡷊𠗐𢫦@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������𧶄𠱂𠴕𥄫𢳆𠍁𤶸𩓥𨂾𢰸𨅝𦧲𤷪𠵼𠾴𠳕𡃴𠺖𠰋𠽤𢲩𨉖𤓓𠵆𩩍𨃩𤺧𢳂𩗴𥋇𩟔𧣈𢵄𦂥𢵌𢯊𡁷𡁯𦛚𦜖𧦠𥁒𠱃𢆡𨭌𠜱𠆩𢶍𤗈𠓼𦂗𠽌𠶖𢩦𡂝𠶜𢝵𪘁𠸉𢫏𢳉𡃈𣧂𨊛𥹉𢃇𠼱𢲲𩜠𤸻𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜𡃏𢠃𢤹𥇣𠺌𠾍𠺪𠼰𠵇𡅏𠹌𠺫𠮩𠵈𡃀𡄽𢚖𠾭@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������𣏴𧘹𢯎𠵾𠵿𢱑𢱕𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊𩻃𧝞𢷮𦕲𨂽𠻺𠸏𠹷𠻻𤷫𠳖𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤𡀝𡀞𡃵𡃶𠸑𧚔𨋍𠾵𠹻𥅾𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼𥜽𥭴𣄽𡯁屮𠂆𤣩𦉪𦍋𦘒𦥑𧢲𨸏𩠐𠂇@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdEEEefghEijklmnopqrstuvwxyz{|}~E�������������������������𩱳𤅎𥇍𥴰𨨲𣊁𪄇𡦀𨜏𪊺𠩯𩥇𨫪𢁾𨧣𡶶𢜒𣏹𣱣𤔅𤨓𥲤𥚕𨶹𡐿𤥻𧄍𦵴𦬕𦾾𣉖𢞖𣬚𣕑𤃬𡸣𠆤𦱁𠈹𩣺𠮟𢇁𨥭𩁹𪆵𦱆𨚲𧏿𥒚𤬏𨧀𣽁𠌥𠻘@�	

 !"#$%&'()*+,-./*0123456789:;<=*>?@ABCDEFG*HIJKLMNO*PQRSTUVWXYZ[\]^_`abcdefg*hi*jklmnopqrstuvwxyz{|}~������������������������𣻗𦻓𥟠𨯩𥣡𩓙𥦬𦒍𥰁𥌎𥳾𥮴𦱿𥴠𥱥𥳁𤢂𤕸𦹄𦻖𤁗𦀩𡟹𨍭𦄡𦅚𦋐𦍑𡙡𠁨𣝦𨌺𦒉𪂇𦳃𢜔𦘦𣷣𦛨𨩈𢛶𦒘𤾸𡒊𡡞𤩥𤪕𠬍𦩒𣵾𡓽𦬊𤦧𣔰𡝳𣷸芳@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������𠸖𡞴𣅽𣕚𣺋𦶣𦬅𦮗𣗎𦶥𦻔𦹂𢻯𥯤𣲵𦮖𦹷𦹃𥲑𥳀𦺙𨘥𨘻𧂈𡖂𧃍䕫𡢢𧎚𪃸𢰧𧗠𣶹𧗤𧜏𨨥𧤤𧪽𧩙𧬺𣾏𧬸𥐰𥕥𤩺𡛟𧵔𧶏貫𧵓𧶘𧶽𡤐𤳉@�	

 !"#$%&'()*+,-./0123456789:.;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy.z{|}~��������������.�������������𨀂𡀔𤦊𨆼𧄌𨍥𨐒𪊟𠩐𨧞𨔽𣶻𣉢𪀔𨚼𨔁𢌥𦻗𨔼𧪾𨕬𨘋𨜓𨛦𨤳𡺉𥖹𨫆𣲛𨬌𥗛𠴱𨫡𨯫𨫢𨫥𨯬𨰹𨯿𢙺𨛘𡉼𣸮𦻕𨫠𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊𤫩𩇕𩇫𣂷𣂼𥑬𩐳𩐝𧥺𧅵𠘰𤅜𥜆𦴧𡛓𤨩𩡗𩤅𥜥𩂱𩯕𩬅𨘀𦦨𣁽𩴾𡡣𤉋𩹨𩾷𪆒𪆫𪃡𪄣𪇟𪄴𢅛𪆓𪈠𡤻𪈳𪂹𪊴𤍤𨰫𦶢𩂋𤥵𤦻𤧸𤍈𤩑𨯚𡣺𨥾𨸶𨩄𨥬𤒹𤑳𤏸𡟯𡢾𣖙𡢅𥐯𡟸𡛻𡠹𡝴𡣑𥽋𡛀𤨥𡏾𡊨@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������𡏆𡒶𣚦𤦔𧅥𣸱𥕜𣻻𧁒𣛮𩦝𦼦𡤢𣜿𤃡𤂋𤄏𦰡𦚱𠿟𠮨𠸍𨬓𤐶𠑥𠍿𥙑𠆫𠏋𠌊𠐔𠋀𨺳𠉵𠈌𤨎𣺊𣖕𣸹𣺿𡢄𣺉𠗠𠒣𠒒𠒑𨪜𠜎𠡳𤎌𠰠𤦬𡃤𠸝𤪼𤂍𤃉𠍅𠯆𨩆𡛺𡝯𡜐𥥆𡧳𡡡𤊕𥺃𨯗𠐓𡌃𨧻𡦖𡥼𣫮𡤃𡤄𡢠𡛾𨩇𡶺𣑲𨦨𡤧𡞫𡜻𧗽𢡠𢘫𢖯𢖾𩂈𦽳𠀾𠁆𢘛𢲛𢴇𤛔𩅍𤙥𢭪𢬢𣑐𩣪𢹸𪑛𤧣𢵧𢲡𣂎𣊭𤦉𣊫𣋠𡣙𩐿𣊉𣆳𥖄𨬢𥖏𡛼𥕛𥐥𣄃𡠪𣈴𣈏𣆂𤋉𦴤𧡰𡷫𣋒𣋡𥡲𣠺𣞼𣞢𣏾𤘪𣟕𤒇𡤒𣿀𣲚𨯪𨫋@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������𨀞𨧜𤧬𣽿𤀼𤌚𤉶𤞏𤜥𤪤𠗫𣻸𣙟𤩊𤤗𥿡𤫟𨰣𣼵𦷪𤳙𤴆𪗆𨫌𤦫𤦎𤩎𤧅𤣳𨫣𡡤𥈡𥇧𣈲𤚗𣞁𤣰𤪺𤫇𤪖𦆮𥖁𧝁𥛣𣻺𡛦𠵌𤦌𠊙𣶺𡝮𠇔𠰍𢛵𥪯𥪜𠉛𥯆𥮳𥺼𥺦𤧹𡞰𦉡𦅜𧭈𥺂𦭵𠤖𠁎𣗏𦐒𦏸𤥢𠠬𥫩𥵃𥸎𣐿𤧷𦖭𦖠𧄧𦳑𦞴𦩂𦩑𦶧𧈛𡡀𡢡𡣘蜨𣶏𧐢𥚃𧞅𧞄𨯵𨯙𨮜𨧹𩑈𤊄𡡅𧷜𤰉𢌡𡟚𤤯𨩋𨫼𨰝𨰻𨴴𤣿𤩂𤏪𣈥𨻧𨹦𨹥𤧭𤩸𣿮𩂰@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������𩂓𥟟𨦉𨰦𨬯𦎾𤈛𠼦𨯅𤪲𩓚𩗗𨭐𤩧𨭤𨩅𧬆𨭥𥣈𩣱𩥈𡌂𤦸𡓨𢜟𣶸𢞁𢥫𩸭𪇵𪃾𤄄𪆴𪃭𪃳𩤯𦸒𦿟𦮂𦶤𦺄𦷰𦸀𣟗𦁤𣖜𣙀𤧞𠊿𥕝𡝗𣇉𤥁𤆵𤆬𦱀𤾗𡞵𨩉𤒈𨧼𡣖𠼝𦳀𡐓𤋺𢰦𤏁𣶷𦝁𦅛𦂤𤦹𤦋𨧺𨭣𡢟𤪳𤨾𤪔𡟙𤩦𠎧𡐤𤧥𤤖𤥶𠓾𨫎𨨖𨯧𥗕𨪂𤥃𠳿𠘚𠯫𠲸𡟺𡛂𤩐𡡒𨫀𤦭𡢿𡢃𧒄𣵛𨪁𡡢𠪴𡎜𨈘𩃤𧹏𣿭𣸭𠏵𨰜𦯀𡑒𤍢𤩱𢿣𡊰𢎽𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟𣚭𦲷𦴦𦵑𦲂𦿞𧄉𡜺𦲀𧁓𡟛𡞳𡤅𤇼𡜼𤊥𤊓𣻹𧜶𤑛𤋊𤉙𨧡𦴨𤓎𧹍𤎽𤉖𡌄𤏩勇𤩏𤩝𡟟𣫺𣌀𠈔𠣕𠘙𡾞𪊶𩅛𨩙𩐠𧫴𥛶𧬘𤣲𤽜𥔵𠳏𧥧𡯂𠂔𠊷𠎠𠓗𠗕𠘕𠙶𡚺𠫂𠫍𠮿吆𠯋𠯻𠰻𠱓𠱥𠱼𠲍𠲵𠳝𠳭𠵯𠶲𠷈𠸄𠸎𠻗𠾐𠼭𠹳𠾼𡁜𡁏𡁶𡁻𡂈𡂖𡂿𡃓𡄯𡄻𡋣𡍵𡌶𡕷𡘙𡟃𡟇𡠭𡥪@�	

 !"#$%&'()*+,-./0123456"7"89":;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a"bcdefghijklmnopqrstuvwx"yz{|}~������"���������"��������𡨭𡩅𡰪𡱰𡲬𡻈𡻕𡼕𢁅𢉼𢏗𢏺𢜪𢡱𢥏𢥧𢦓𢫕𢫨𢬎𢬿𢱌𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞𧩹𣕧𣗳𤦺𣘚𣜖𠍆𣪧𧙗𥿢𣸑𣺹𧗾𢂚𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊𠘑𡺨𣳿𤐄𤓖𤙴𤜯𨗨𩧉𢇃𨭎𤠒𤣻𤨕𤫀𠱸𤺥𤾆𠝹𥀬𥊙𥐙𣽊𤪧𥑆𥑮𦭒𥔿𧘲𥕞𥕢𥕦𥟇𤤿𥡝𣏌𥤃𨥈𥪮𥮉𥰆𡶐𦄂𧰒𦆲𤾚𦐂𦑊@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������𦯷𦒄𡤜𤧶𦒈𣿯𦔒𦖿𦚵𢜛𥟡晉𤔡𦛼𤤴𦲽𦞙𦡮𦐑𦡞𦣇𩃀𠨑𦤦𦤹𦧺𦨭𦑩𠀡𦨴𦭛𣔙𦮝𦲤𦶮𢖍𧁋𧇍𧊀𧊅𢅺𧊋𧋦𤧐𧑐𠻸𢤦𨑳𡞱𤨪𡠠𩲭𩢤𧟌𧡘𡘊𣜯𨃨𡏅𧧝𩆨𧂯𨦫𧧽𧨊𧬋𧵦𤅺𨀉𪋟𨌘𦸇𨅯𨀣𦦵𡏭𣈯𨁈𨰰𨂃𨥉𤦈𤪥𣾁𨂐𨃴𨄮𡾡𨅏@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������𨆉𨆯𨈚𨌆𨌯𨎊𨑨𨚪𨥖𨦸𨧧𨧨𨭆𨯔𨰉𨿅𩃬𩄐𩄼𩅞𤫊𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛𩻸𩼣𪊓𪋿𪗋𠲜𢒰𤪓𨬬𧢝𡟵𨀤𨭬𨮙𧨾𦚯𧙕𣲷𥘵𥥖𥺁𦉘𠹭𣺈𤲞𡟶𡡻𥱊𥌑𩶘𥻘𣵀𠿪𠵉𣚺𠺝𨋢𠱁𠲖𥅈𠹶𢱢@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJHKLMNOPQRSTUVWXYZ[\]^_`aHbcdefghijklmnopqrstuvwxyz{|}~������������H����H��������H�𠺢𡁵𢭃𢺳𠶧𦢊𡃁𤜆𦢓𢛴𧴯𤆣𧵳𦻐𧊶𡇙𣳼𪚩𠺬𠻹𡲢𤿂𧿹𠿫𢶠𤟠𩵼𠿬𠸊𧖣𠿭𦁈𡆇𤘘𤭮𥪕𠥹𢑥𩺬𣳾𩼰𤾩𩖞𩿞𣶶𧊲𦞳𣜠𣻷𣸬𠒎𠺶𧼮𪐴𣃚𤏲𡊩𤥣𩸆𧂮@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������𡝬𩓐𦌵𧅤𠴨𦴢𤫢𠵱𡼏𡷑𤤾𡝭𨺗𦴣𠏼𥰡𣳽𤤙𠳔𠇲𪙊𨍽𤩷@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������𨩚𪊲咢𤪻𡠻𦸅𢔛𦅙𣏵𨯂𨸹𡵆𠼻𥼚𧒆𦟌𦻑𤀑𨬭𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭𦆭𨨏𣙷𠃮𦡆𤼎𦍌𦉫@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_______________________________________________________________@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqnrnsntuvwxynnz{|}~�������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghiDDDjklmnopqrs𠃌𠂊𧘇@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������@�	

 !"#$%& '()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ [\]^_`a bcdefghijklmnop qrstuvwxyz{|}~��������������������������𠕇𠗟𣿅𤥂𨧤𡧛𣳈𤤳𨦪𠊠𦮳𡌅𢓭𦴩𧪄𣘀𤪱𢔓𠍾𠎀𠍇𠐟𤦤𠒇𣎴𠯿𢃼𠋥𢔰𠖎𣈳𡦃𠖳𣲙𤪦𣜭𦬓𨫞𣾀𠥔𣿬𠯢𡜦𡛨𨚫𡖖𡘓𨪛𥝲𠮏𣿫𢶣𠱷𦭓𠵴𡜍𠻝𠵍@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUV	WXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������	�����	�����𨦼𢚘𡣗𤀺𤐵𡂴𣊊𨭦𡉏𤆥𦱾𡐖𡑔𤍣𤯵𡈼𪅐𤉸𡘾𡚒𠵎𦲁𦴪𡟜𡟻𡞲𦶦𡠨𡛕𦹅𤦩𦾡𢕔𡤑𡚸𧨎𠈄𡨴𥧌𠖥𡭄𡲥𦬨𡷹𡸷𡺤𤤁𢁉𢅳𤒼𠳓𡝱𨒂@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������𠇁弢𡌺𦢈𢏐𢑱𦹮𨨶𥉐𡽪𧃸𢙨𠊞𨨩𡡷𢞴𤦂𤦏𧩓慈𦻒𠙖𣾷𢡟𨮝𩥝𢦀𢣁𠄘𡝰𢸍𤧟𡎎𡟼𢸶𤂌𥜝𤨨𤨣𣁾𤥀𡠩𣐀𣇷𣇸𣆤𣆥𠹵𥇦𡸽𣈱𨗴𣇈𥌓𢣷𤎜𤨡𣟂𤇍𩃭𣏦𦶠@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVVWXVYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������V�������������𣑯𨫟𣗍𣘼𨩊𠏉𣙙𢄪𣜃𩆜𠤣𢟍𣫛𠎵𡥘𣭚𣻼𢒋𤣱𦭑𣶼𣶽𤆤𤤌𤤀𣳉𠴲𣇹𢒑𦴥𦶡𦷫𤥿𤂅𦹲𦽴𨬡𣸯𣾂𣁋𣸰𡒗𤀽𩅰𤅄𤂑𤅕𤀹𣿰𣾴𤄿𤅖𤅗𤅀𦇝𤉷𤍥𤋁𤑚𤨧𤨢𨯨@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������𥘅𤥴𣁄𤠣𨠫𨠄𠰺𦨮𤇢𡛧𤨤𤦷𤦍𤧻𤨦𠗃𢢭𨺲𤪌𤅟𤩹𨮏𨰃𡢞𡦈𨻙𡩋𨺬𤾂𤴓𦏵𦤑𦤎𦾟𥂝𥅽𡸜𥈠𣊬𨥤𨥨𡛁𡍶𤨒𥗠𧘌𨬫𦂃𢘜𥡗𧬹𧄦𩄍�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz����	

������	
��������	

 !"#$%&'()*+,-./012��	

����������	

��	
������	

��	

����	

��	
����	

��	

 ��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567888889:;8��	

������	��������	
����	

��	
����	
��	

��	

��������������������	
����	��������������	������������	
��	
��	

��������	

��������	��	

 !"#$%&'()*+,-./0123456789:;����	����������������������������������	��	

��	

��	

������������������������������	
������������������	������	������������	

 !"#$%&'()*+,-./��	

��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123456789��	
















 !"
#$%&'(
)*+
,
-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234567*89:;<=>?��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./01��	

 !"#$%��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+!,!!-./0!!123!456789:��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012345��	

							 !"	#$%&'(	)*+,-./	0		1234��	

 !"#$%&'()*��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0��		

				 !"#$%&'(	)*+,-.	/0	1	2				3��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*��	

 !"#$%&'(��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	
	
								 !"#$%&'(	)		*	+						,-��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./01234��	

	 !"#	$	%&'()*+,-./01	2			3					4��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,��	

		 !"#$%&'()*+	,	-./0	1234	56789	��	

 !"#$%&'()*+,-./01234567��	






 !"#$

%&'(
)*+
,-.
/0
12345��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-.��	

 !"#$%&'()��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./012��	

 !"#$$%$$&'$()$*+,-./$01$23456789��		
		
					 !"#$	%&'()*+					,-./0	1��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

����	
��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	






 !"
#$%
&
'()*
+,-./
0
12345��	

 !"#$%&��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012��	

 !"#$%&'��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./��	

 !"#$%&'()��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456��	

����	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345678��	

��	

��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01234��	
		
 !"#$%&'()*	+,	-.	/012	345	6789��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345��	

 !"#$%
&'





(
















��	

��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0123456��	









 
!


"#$%&'()*
+

,
-./��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

						 	!"#$%&'()*+,-./01	234567	��	
	
					 !"#$%&'()		*	+,-./012		345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��������	��	

 !"#$%&'()*+,-./012345��	

 ��	

��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01��	





 !
"#$%
&
'()*
+,-.
/01
2



��	

 !"#$%&'()*+,-./��	

��	

 !"#$%&'()��	

 !"#$%&'()*+,-./01234��	

 ��	

 !"��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()��	

��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

																																	����	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456789:;��	

 ����	

 !"#$%&'()*+,-./0123456789:;<=>?������������������������������������������������������������������������������	����	����	

������	
��	
��	
������������	

 !"#$%&'()*+,-./012345678����	����	
��������������������������������������������	

����	
����	

��	��	
��	
����	
����������������������������������������	

 !"#$%&'()*+,-./012345678��������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./012345����������������������	��������������������������������������	
����	
����������	��	

 !"#$%&'()*+,-./012������������	
����������������������������������������������	
��	
��	

��	

��	

��	

��	

��������������������������	

 !"#$%&'()*+,-./0123456789:��������������������������������������������������������������������������	

 !"#$%&'()*+,-./01234����������������������������������������������������������������������	
����	
����������	������	

 !"#$%&'()*+,-./0123456789����������������������������������������������������������	

 !"#$%&'()*+,-./012345����������������������������������������	����	

����	
����	

��	��	
����	

��	
������������	

 !"#$%&'()*+,-./��������������������������������������������������	

 !"#$%&'(������������������������	

������������	

�	

��				

 !"""#$%&'()*)��	

��	

 !"������	����������������	��	

��	

������	

 !"#$%&'()*+,-./0123456789:;<��������������������	
��	

��	������������	
����������������	
















 !"
#$
%&'
()*
+
,��	

 !"#$%&'()*+,-./012345*6*789:;<=>��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./��		

					 !"#$%&'	()*+,-	./	0	1				2��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234567��	

			 !"#$%&'()*	+	,-./	0123	45678	��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123456789��	


 
!"#$
%&'()*+,-./01234

56
789:��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+��	

 !"#$%&'(��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-.��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?3�	

 @�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkllmnopqrstuvwxyz{|}~�����������������������������@�		

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������	

��	

 !"#$%&'()*+,-./0123456789:;<=>?������	��	

����	������	

��	
��	

 !��	

����	

��	����	

 !"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!��	

 !"#$%&'()*+,,,,,,,,,,,,,,,,,,,,,��	

��	

 !"#$%&'��	

��	

��	

��	

��	��	
����	

��	

 !"#��	

 !"#$%&'()*+,-./0123456789��	

������������	

��������	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0123456��	






 !

"#$%&'(
)*+,-./01

234
5��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:��	





 
!"#$%&'()*+,
-./012
345
6
7��	

 !"#$%&'()*+,-./0123456789��	

��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-!!./012!345!6789:;<��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

			 !"#$%&	'()*+,	-./0123	4		5678��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

			 !"#$%&'()*	+,-./0	12	34567	89��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345678��	

							 !"#$%&'()*	+,	-./01234567��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !"#$%&'()*+,-./012345678��	









 !"
#$%&'()*+,-./012345
6��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:;��	

	 !"#	$	%&'()*+,-./01	23456789:;<��	






 !"#$%&
'()*+,-
./0123456789��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'$()$*+,-.$/0$123456789:;<��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01234��	

 !"#
$
%&'(
)*+
,-.
/0123456789:;��	

 !"#$%&'()*+,-./0123��	

	 !"#$%&'()*+,	-	./01	2345	6789:	��	

 !"#$%&'()*+,-./012345678��	




 
!"#$%

&'()
*+,
-./
01
23456��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:��	


 !"#$%
&'()*+,-./0123456
78
9:;<��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012345678��	



 !
"#$%&'()*+,
-./01
234567
89:��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$$%$&'($)*$+,-./0$12$3456789:��	




 !

"#$%&'
()*+,-.
/01
23456
7��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,%-./012345678%9:;<=>��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789��	




 
!"#$%&'
(
)*+,
-./0123
45678��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

			 !"#$%&		'(	)*+,-./0123456789:��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456789:;<=>��	


 !"#$%&'()*+,-./01234567
89:;<=>��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123��	



 !"#
$%&'()*
+,-./012
3456789:;��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*&+,-./0123456789:;<=>?��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345678��	







 !"#
$
%
&'()*+,-.
/012
345��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;��	

				 !"	#$%&'()*+,-./0123456789:	��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456789��	





 !"#$%&'()*+,-./0123
4567
89:��	

 !"#$%&'()*+,-./01234567��	




 !"#$
%
&'()*+
,-./
012345
678��	

 !"#$%&'()*+,-./0123456��	



 
!"
#$%&
'()*+,
-./0
123
456

��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./01234567��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'()*+,-./0123456789:;��	

 !"#$%&'!()!*+,-./!0123456789:;<=��	

	 !"#	$%	&'()*+	,	-./	012345		678��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-)./012)3456789:));<��	

 ��	

 !"#$%%%%%%%%%%%%%%%%%%%%%%%%%%%%��	

��	

��	
������������	

����	

������	
��	
��������	
��	

��	

��	��������	

 !"#��	

��	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!����	
�	

 ; �G��<H��d�H��|zRx�$�G��0FJw�?:*3$"D�G�� \`H���HwGNU�@

��(̪ �K@��D^ �K@��\� �K@��l� �K@���e �K@��X� �K@�� � �K@�� �3 �K@��&h� �K@��&� �K@��v�� 	
�
��(��(���o`��
��(0��h	���oh���o�oN���o+�(P	`	GA$3a1 	�
GA$3p1094P
�
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignbig5.so-2.7.8-141.el8.x86_64.debug���7zXZ�ִF!t/��]?�E�h=��ڊ�2N���> ��)�I���� �Q�{�H[4�r���Ittd�1Α7P��Lհ
�S-�L��� ��Rx�k�;UN{����Ê2X�2LJ{]�B�7X���fQ�-i�h�	Id*�݇����E�
�HAߞM���T!������jR��Ր�J�h��P	���� �H(	�'�<�&�:�d���1y�>��Ƶ�H �H�0I$�=!��soN�2��a+�}'0U?4﷌q���\�6ӲZ98�=��6�fv���c�Mcy�!��H��7��~�c-���LN�p�VI�ēV\�i����8Ɨ�Q����~�d��º6�
emh��(u�/����\_���^2u��"R�Z&0��/w���9�L���j��@�i�*n�^�i[�4�|�.+&�(�����ms]ek�k�����^ap��:;�H��i���
��S.���d�"��A7ר�Oe�E�T��r����`ơ���t�i]M���J�!aCtiu8��6�l��<���1}G�L��c�RbT��H�B��K쓋8v>�?l�K\�)KZ�����H�.�@oSF�*9��4a[�Ba� �
�
8F|�=��zt`����L�XeO�I�tn�(�;�g��X�cHR����G:����5Q��v"E�Y�J�w9,�]2d�楤�'+���蘞%N�Ĉ����P�1Q4��I묛�YŒ�{[@7���6���J��	���`T<�����)��S�2qT���<����9#��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oNNE���ohh T��h^B��0h 	 	c@	@	0np	p	 w�	�	D}�
�

�k� �l�l�$�����t��� ���(�����(�����(��` ��(�����(�� ��(�(�(�((��0�h(��
�(D�T��+PKLH[�-�����lib64/ruby/enc/trans/gb18030.sonuȯ��ELF>�@H�@8	@���� ����"��"�� ��"�"��888$$������  S�td������  P�tdx�x�x�DDQ�tdR�td����"��"ppGNU��kۡ�%0rRU�O����ϡ�@ @(	BE���|�qX�9� b , F"�(�"�0�"�(�"U
$__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_gb18030rb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	���"���"`��"��"��"`
Ȭ"f
ج"��"�
8�" X�"`	`�"f
h�"`
x�"���"�
ح"���"��"�"�"��"�" �"��H��H�Y�"H��t��H����5b�"�%c�"��h�������h���������%=�"D���%5�"DH�=1�"H�*�"H9�tH�֨"H��t	�����H�=�"H�5��"H)�H��H��H��?H�H�tH���"H��t��fD�����=��"u+UH�=��"H��tH�=�"�Y����d������"]������w��������V-���0i��i�81��V���{����P�F��������������?�ʀ�Q�ƒ�?���Ȁ��?�A��ʀ�QÐ����FA�����A�� �����%���	��F�v��?��	�	�����A��A���������A)�D�Ѓ�0�A��A���k�~)׺i�h��@�y��������������A���������)lj���0�@�y����p����H����V��tQ���B�Vk�~Ѝ��F�P)�-������A��ƒ�?���Ȁ��?A�@��ʀA�P�����)��]�f.�����VH����������	��V��?	��tg��n:������̉������r2���)���0��A�H�� ����k�~�J)Ɖ���A�p�������A�)����0A�H���	���f��fA�����H��H�=A�"���H�=��"H�������H��H���UTF-8GB18030€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“4”•–—˜™š›œhžŸ ¡¢£¥¦©ª�«¬­®¯²³´µ¶�¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊË8ÌÍÎÏÐÑÒÓÔÕlÖØÙÚÛÜÝÞßâ�ãäåæçëîïðñ�ôõöøûýþÿĀĂ㥹ĆćĈĉĊċČ<čĎďĐđĒĔĕĖėpĘęĚĜĝĞğĠġĢ�ģĤĥĦħĨĩĪĬĭ�ĮįİıIJijĴĵĶķĸĹĺĻļĽľĿŀŁ@łŃŅņŇʼnŊŋŌŎtŏŐőŒœŔŕŖŗŘ�řŚśŜŝŞşŠšŢ�ţŤťŦŧŨũŪŬŭŮůŰűŲųŴŵŶŷDŸŹźŻżŽžſƀƁxƂƃƄƅƆƇƈƉƊƋ�ƌƍƎƏƐƑƒƓƔƕ�ƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩHƪƫƬƭƮƯưƱƲƳ|ƴƵƶƷƸƹƺƻƼƽ�ƾƿǀǁǂǃDŽDždžLJ�LjljNJNjnjǍǏǑǓǕǗǙǛǝǞǟǠǡǢǣLǤǥǦǧǨǩǪǫǬǭ�ǮǯǰDZDzdzǴǵǶǷ�ǸǺǻǼǽǾǿȀȁȂ�ȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖPȗȘșȚțȜȝȞȟȠ�ȡȢȣȤȥȦȧȨȩȪ�ȫȬȭȮȯȰȱȲȳȴ�ȵȶȷȸȹȺȻȼȽȾ ȿɀɁɂɃɄɅɆɇɈTɉɊɋɌɍɎɏɐɒɓ�ɔɕɖɗɘəɚɛɜɝ�ɞɟɠɢɣɤɥɦɧɨ�ɩɪɫɬɭɮɯɰɱɲ$	ɳɴɵɶɷɸɹɺɻɼX	ɽɾɿʀʁʂʃʄʅʆ�	ʇʈʉʊʋʌʍʎʏʐ�	ʑʒʓʔʕʖʗʘʙʚ�	ʛʜʝʞʟʠʡʢʣʤ(
ʥʦʧʨʩʪʫʬʭʮ\
ʯʰʱʲʳʴʵʶʷʸ�
ʹʺʻʼʽʾʿˀˁ˂�
˃˄˅ˆˈˌˍˎˏː�
ˑ˒˓˔˕˖˗˘˚˛,˜˝˞˟ˠˡˢˣˤ˥`˦˧˨˩˪˫ˬ˭ˮ˯�˰˱˲˳˴˵˶˷˸˹�˺˻˼˽˾˿̀́̂̃�̄̅̆̇̈̉̊̋̌̍0̖̗̎̏̐̑̒̓̔̕d̡̛̘̙̜̝̞̟̠̚�̢̧̨̣̤̥̦̩̪̫�̴̵̬̭̮̯̰̱̲̳
̶̷̸̹̺̻̼̽̾̿4
͇͈͉̀́͂̓̈́͆ͅh
͍͎͊͋͌͏͓͐͑͒�
͔͕͖͙͚͗͛͘͜͝�
ͣͤͥͦͧͨͩͪͫͬͭͮͯ͟͢͞͠͡Ͱͱ8Ͳͳʹ͵Ͷͷ͸͹ͺͻlͼͽ;Ϳ΀΁΂΃΄΅�Ά·ΈΉΊ΋Ό΍ΎΏ�ΐ΢ΪΫάέήίΰςϊϋόύώϏϐϑϒϓ<ϔϕϖϗϘϙϚϛϜϝpϞϟϠϡϢϣϤϥϦϧ�ϨϩϪϫϬϭϮϯϰϱ�ϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿЀЂЃЄЅІ@ЇЈЉЊЋЌЍЎЏѐtђѓєѕіїјљњћ�ќѝўџѠѡѢѣѤѥ�ѦѧѨѩѪѫѬѭѮѯѰѱѲѳѴѵѶѷѸѹDѺѻѼѽѾѿҀҁ҂҃x҄҅҆҇҈҉ҊҋҌҍ�ҎҏҐґҒғҔҕҖҗ�ҘҙҚқҜҝҞҟҠҡҢңҤҥҦҧҨҩҪҫHҬҭҮүҰұҲҳҴҵ|ҶҷҸҹҺһҼҽҾҿ�ӀӁӂӃӄӅӆӇӈӉ�ӊӋӌӍӎӏӐӑӒӓӔӕӖӗӘәӚӛӜӝLӞӟӠӡӢӣӤӥӦӧ�ӨөӪӫӬӭӮӯӰӱ�ӲӳӴӵӶӷӸӹӺӻ�ӼӽӾӿԀԁԂԃԄԅԆԇԈԉԊԋԌԍԎԏPԐԑԒԓԔԕԖԗԘԙ�ԚԛԜԝԞԟԠԡԢԣ�ԤԥԦԧԨԩԪԫԬԭ�Ԯԯ԰ԱԲԳԴԵԶԷ ԸԹԺԻԼԽԾԿՀՁTՂՃՄՅՆՇՈՉՊՋ�ՌՍՎՏՐՑՒՓՔՕ�Ֆ՗՘ՙ՚՛՜՝՞՟�ՠաբգդեզէըթ$ժիլխծկհձղճXմյնշոչպջռս�վտրցւփքօֆև�ֈ։֊֋֌֍֎֏֐֑�֖֛֚֒֓֔֕֗֘֙(֢֣֤֥֜֝֞֟֠֡\֦֧֪֭֮֨֩֫֬֯�ְֱֲֳִֵֶַָֹ�ֺֻּֽ־ֿ׀ׁׂ׃�ׅׄ׆ׇ׈׉׊׋׌׍,׎׏אבגדהוזח`טיךכלםמןנס�עףפץצקרשת׫�׬׭׮ׯװױײ׳״׵�׶׷׸׹׺׻׼׽׾׿0؀؁؂؃؄؅؆؇؈؉d,`���0d��4h��8l��<p��@t��Dx��H|��L���	P	�	�	�	 
T
�
�
�
$X���(\���,
`
�
�
�
0d��4h��8l��<p��@t��Dx��H|��L���P��� T���$X���(\��؊؋،؍؎؏ؐؑؒؓ�ؘؙؚؔؕؖؗ؛؜؝�؞؟ؠءآأؤإئابةتثجحخدذر8زسشصضطظعغػlؼؽؾؿـفقكلم�نهوىيًٌٍَُ�ِّْٕٖٜٟٓٔٗ٘ٙٚٛٝٞ٠١٢٣<٤٥٦٧٨٩٪٫٬٭pٮٯٰٱٲٳٴٵٶٷ�ٸٹٺٻټٽپٿڀځ�ڂڃڄڅچڇڈډڊڋڌڍڎڏڐڑڒړڔڕ@ږڗژڙښڛڜڝڞڟtڠڡڢڣڤڥڦڧڨک�ڪګڬڭڮگڰڱڲڳ�ڴڵڶڷڸڹںڻڼڽھڿۀہۂۃۄۅۆۇDۈۉۊۋیۍێۏېۑxےۓ۔ەۖۗۘۙۚۛ�ۜ۝۞ۣ۟۠ۡۢۤۥ�ۦۧۨ۩۪ۭ۫۬ۮۯ ۰۱۲۳۴۵۶۷۸۹H ۺۻۼ۽۾ۿ܀܁܂܃| ܄܅܆܇܈܉܊܋܌܍� ܎܏ܐܑܒܓܔܕܖܗ� ܘܙܚܛܜܝܞܟܠܡ!ܢܣܤܥܦܧܨܩܪܫL!ܬܭܮܯܱܴܰܲܳܵ�!ܷܸܹܻܼܾܶܺܽܿ�!݂݄݆݈݀݁݃݅݇݉�!݊݋݌ݍݎݏݐݑݒݓ"ݔݕݖݗݘݙݚݛݜݝP"ݞݟݠݡݢݣݤݥݦݧ�"ݨݩݪݫݬݭݮݯݰݱ�"ݲݳݴݵݶݷݸݹݺݻ�"ݼݽݾݿހށނރބޅ #ކއވމފދތލގޏT#ސޑޒޓޔޕޖޗޘޙ�#ޚޛޜޝޞޟޠޡޢޣ�#ޤޥަާިީުޫެޭ�#ޮޯްޱ޲޳޴޵޶޷$$޸޹޺޻޼޽޾޿߀߁X$߂߃߄߅߆߇߈߉ߊߋ�$ߌߍߎߏߐߑߒߓߔߕ�$ߖߗߘߙߚߛߜߝߞߟ�$ߠߡߢߣߤߥߦߧߨߩ(%ߪ߲߫߬߭߮߯߰߱߳\%ߴߵ߶߷߸߹ߺ߻߼߽�%߾߿����%����%��0d��4h��8l��<p�� @ t � � !D!x!�!�!"H"|"�"�"#L#�#�#�#$P$�$�$�$ %T%�%�%�%�%��%�%$�&������������&������&���������'���('�����8'���L'�������\'�����t'�����'�~���'~���'~�r���'h���'h�d�`���'`���'`�_��(^�]�\�[�� (W�V�U�P�O�<(O�K�J�\(J�I�H�t(H�G���(G�E�A�(�(A�?�4�(?���(?�>�=�@�(=�<���(<��)<�;�L);��,);�:�X<):��P)�%�&' '0'D'T'l'�'�'�'�'�'�'�'((4(T(l(�(�(�(�(�(�())$)4)H)X)d`):�0���)0���*��*����$*���8*�������H*�����`*���t*������*��~���*~�}�{���*{���*{�w�L�*w���*w�u�t���*t��+t�s�r�� +r��8+X)�)**0*@*X*l*|*�*�*�*�*�*�*++0+@+H+r�q���+q�p�o�m���+@+�+�+��+m�l���+l���+l�k�j�i� ,h�f�e�@(,e�d��@,d��T,d�X�T�A�,d,A�?�6���,6���,6�5��8�,�޻��D�,��`���,`���,`�V�U�P�,U��-U�T��$-T��8-T�R��H-R�O��\-N��p-N�M���-M�L�J�I�\�-I���-H���-H�G�X�-G���-�+, ,8,L,\,x,�,�,�,�,�,�,--0-@-T-h-x-�-�-�-�-�-�-h�-��&�&�)�+�+`.5�4�,�*�&������������
�	��������������������ߐېՐѐϐΐ̐Ð����������������������������������������������������������������{�z�y�o�l�k�j�i�g�e�d�b�`�^�\�[�Z�Y�X�W�V�U�T�S��h.G�F�L0F��,0F�E��<0E�D�XP0D��d0D�C��t0C���0C�B�X�0B���0�-$040H0\0l0�0�0�0�0��0B�@���0@��1@�?�X1?��(1>��81>�=��H1=��\1=�<�4l1<���1<�;���1;���1�0�01 101@1T1d1x1�1�1�19�1;�:�X�1:��2:�9��29��(29�8��828��L2�1�12 202D2T2�\28�7�6�E�26���26�5�L�25���25�4���24���24�3���23��33�2��32��,32�1�4<30��P30�/��`3/�.��t3.���3T2�2�2�2�2�2�233$343H3X3l3�3�3Q�3.�-���3-���3-�,��4,�+�)�'��4'��84'�&�%�H4%��`4%�#�Lp4#���4#�"���4"���4"��X�4���4����4���4�3�34404@4X4h4|4�4�4�4�4�4�4�4�5���L5��`5�oiXp5oi��5�4X5h5|5�5]�5�5$�5�0�1|2�3D5�5�5������������������~�}�y�x�w�v�s�p�o�n�m�l�k�j�i�h�g�d�c�b�a�_�\�Y�X�W�V�U�S�R�P�O�N�M�L�K�I�H�E�D�C�B�A�@�=�<�;�9���5oiZ��6�Y�YL�6�YiYfY�	�6eYdY�7dYbY`Y�	$7`Y_YX<7^Y�P7^Y\Y�`7\Y�t7[Y��7�5�6�67747H7X7l7|7�7�	�7�7$�7�5�7�7z�y�x�w�u�r�q�p�o�m�n�l�k�h�d�b�a�`�_�\�[�Z�Y�X�W�S�Q�J�G�D�C�A�?�>�;�:�8�7�6�4�2�-�*�'�&�%�#�"� ���F
�7[YZY4�8ZY��8ZYYYL�8YY��8YYXY�9XY�9XYWY�,9WYVY�@9VY�T9VYRYQYOYNYd9NYKYIYFY#�9FY��9�7�8�8�899$989L9\9|9�9�9/�9FYDY2Y��92Y(Y$YYY�:Y�(:Y�X48:�X�L:�X�X�\:�X�p:	��:�9: :0:D:T:h:x:�:��:�:$�:�9�:�:_�^�]�[�Z�Y�X�V�U�S�M�H�E�D�B�@�:�9�8�7�5�4�2�1�0�*�)�$�#�!�����������������
�����������������������������;�:�:&�#�!� �������������	����������������������������ޏ܏ۏڏُ؏֏ЏϏΏʏɏǏÏ����������������������������������������������~�}�u�s�r�q�p�o�l�h�e�d�c�b�a�_�\�[�X�U�T�
�;�:���������������������{�q�p�n�j�d�b�`�_�]�\�[�Y�X�U�T�S�R�O�N�M�I�H�G�F�D�C�A�@�>�=�;�:�9�5�4�1�-�+�*�%� ���������������
��
����������������������
�=�:1�/�.�,�+�*�(�&�%�#�!� �����������
��
������������������������������>�:%�$�#�"�����������
����������������������������ߎގ܎ێَ؎֎ӎҎЎώΎ͎̎ɎȎǎƎĎÎŽ�������������������?�:������������������������ߎގݎ܎ڎَ؎׎֎ՎԎӎҎюЎ͎ˎʎɎǎƎÎ��������P�@�:�������������������ݎڎَ؎֎ԎӎҎώЎ̎ʎɎȎǎƎŎÎ��������������������������������������������������������������!�A�:֎ՎԎӎώΎ͎̎ʎɎȎǎƎŎÎŽ��������������������������������������B�:�����ݎێڎ؎׎֎ՎԎҎώ̎ʎɎȎǎ����������������������������������������������������������������������u�t�p�l�k�j�i�g�f�d�b�a�_�^�\�[�Y�W�V�O�M��<C�:�����������������������~�}�z�y�x�w�v�u�t�r�q�p�o�n�m�l�j�i�g�f�d�c�`�_�^�]�\�Z�Y�X�W�V�U��|D�:��������������������������}�{�z�y�v�s�m�k�i�h�f�c�b�`�_�]�\�[�Y�V�U�T�P�N�M�K�I�F�A�?�>�;�8�7�6�1�0�e@E�:q�o�l�k�j�i�h�g�e�d�]�\�Z�Y�X�W�V�T�S�Q�O�M�L�K�J�H�G�F�E�C�?�>�<�;�:�8�6�4�3�2�1�/�,�*�$�#�"�!������������
�	�������������������6F�LGTG$\GdG/�.�+�*�'�&�#�!�����������
��
����������������������������ߍލ܍ڍ؍׍֍ՍԍҍЍ̍ƍčÍ������������������������lGdG����������������ݍ܍ۍڍٍ؍֍ԍӍҍэЍύ΍ō����������������������������HdG�����ߍ׍֍ՍԍӍЍύ͍ʍƍč��������������������������������������������������������w�v�t�s�r�p�o�m�k�j�d�c�a�^�]�\�Z�Y�W�U�T�S�O�N�K�J�I�H�G�E�D�@�=�<�:�8�7�6�5��TIdGv�u�t�s�o�n�m�l�j�i�g�f�e�d�c�b�a�]�\�Z�X�V�T�S�Q�R�P�N�M�L�K�J�I�D�C�B�A�@�?�>�=�<�9�8�6�5�3�1�0�/�.�-�*�)�(�&�%�$�#�"�!�����z�JdG\�[�Z�Y�X�W�V�U�T�S�Q�N�L�K�I�H�F�E�D�C�A�@�?�=�;�:�8�7�6�5�4�3�1�/�.�-�,�*�)�(�&�%�$�#�"� �����������
�K�KdGE�C�B�A�?�>�=�<�:�7�6�5�3�2�0�/�.�-�*�)�(�'�&�$�#���������������
���	��������������������������LdG3�/�.�-�+�*�)�(�'�&�%�!� �������������
�	�������������������������������������ߌ݌׌ԌьЌόΌ͌̌ɌnjƌČÌ������������������������������������MdGیьЌό͌̌ˌɌȌnjƌŌŒ�����������������������������������������������������������������������������OdG֌ՌԌӌҌьΌ͌̌ˌʌƌŌÌŒ��������������������������������������������������������������������OdGیڌٌ،׌֌ՌԌӌьЌό͌Ȍnj`�PdG������������������������������ߌތ܌یڌٌ،ҌьЌό͌̌ˌʌɌȌŌČ������������������������������������1QdGތ׌֌ӌҌьЌόΌ̌ɌnjŌČŒ���������������������������������������������������������������~�{�z�y�x�v�u�r�q�p�l�k�j�f�d�a�]�[�Z�Y�X�W�V�T�R�Q�O�N�M�L�J�I�H�G�D�C�>�<�6�4�3�2�1�/�+�RdGj�i�h�f�d�b�a�`�^�]�\�[�Z�Y�W�V�U�R�P�O�M�L�K�I�F�E�D�C�B�A�@�?�=�;�9�8�7�6�5�4�3�1�0�.�-�+�*�)�(�'�&�%�$�#�!� �����������������SdGG�F�E�D�C�B�A�>�=�<�9�8�7�6�5�4�3�2�1�0�/�.�-�,�+�)�(�'�&�%�$�#�!��������������� �TdGQ�O�N�L�K�J�I�H�G�D�B�@�?�>�;�:�8�7�6�3�2�0�+�*�)�&�#�����u!�UdG[�Z�Y�U�R�Q�P�O�N�L�K�J�H�E�D�A�B�@�?�>�=�<�;�:�7�6�4�3�2�1�0�/�.�-�+�)�(�'�&�%�$�#�"�F"VdGa�`�_�^�]�\�[�Z�Y�X�V�Q�P�O�N�L�J�I�H�G�F�E�D�B�@�?�=�<�;�9�5�4�2�1�0�/�.�,�*�)�%�!� ������#�VdGqr��·ˉˇ¨������D~�����������±×÷�������������������������/�����j���������p�c�o�����������°�����¤��§���������#�%�K�M�;�=���_�b�a����#�WdG(�< �H�p�.�n��x����$�XdG�����%YdGQRW�y[&@YdG����q,'`YdG��ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ+αβγδεζηθικλμνξοπρστυφχψωC����O���TV�'�YdG12АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя:�(�ZdGˊˋ˙'�&���9�6���/�&�#����������������������x�n��āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ�ńňǹɡ����)�[dG�����������z�x�v�	kjm/� �oC�p[���]�V���			B���������p*�\dG[�Z�X�V�M�K�H�G�F�E�D�C�@�<�:�9�5�4�3�2�/�-�.�,�+�*�)�'�&��(A+H]dGŕĕÕ•������������������������������������������������������:),�]dG?�>�<�:�8�6�5�3�2�1�0�/�.�*�)�(�'�#�!� ����)�,`^dG������������������������������������~*�-�^dGD�C�A�@�?�>�=�<�;�8�7�6�5�3�0�+�*�(�&�%�$�#�"� ������������ +�.(_dG��������������������������������������������}�z�x�v�u�t�s�p�o�n�m�l�k�h�g�e�d�a�^�]�\�Y�X�W�T�S��+V/�_dG���������������ߗޗݗܗۗڗٗח֗՗ԗN�Zx׶s�ι��޹�T�e���%��t�xw�� ����������g������^�	�Ŏ3��T����q�l�Һ����W��а���Qw>���m��wj���Q��R���b�������E����f���Zv]�p��������E��?~��a�L�i���'�a��yb�̂������'0�`dGs�q�p�o�i�h�e�d�c�b�`�^�]�[�Z�Y�X�W�T�S�R�P�N�M�L�J�K�I�E�D�C�A�@�?�=�;���x��z�+v�����(�s��5���V���!�ގ��{�����Ů���_�Ō����������ŢU����p��~��F��������ȱC�ҙ�yp�İ
�1���Tyy(x�������~�5�4��ڧx�K�|�s[�����}�^���/���z�@�-��*�xvB��0�bdGژט՘ԘҘј͘˘ȘƘĘØ˜������������������������Ӛ#�ߜ������{��F�޽���{�v���q�������9vX�R���K�Ѹ����O�v����ҫ����k�o���R����~X�����w�1�<�ۯ�K�������'�����զک��@���0�L�����n�
��������-����P�����!��o��1���bwׄϑ�{J��zOx�ߝ�1�ddGQ�P�O�K�J�I�H�B�A�?�=�<�9�8�6�5�4�1�0�.�-�,�&�%�$�#�"�!� ��������^�|�b�|����A�[�p���� �}��u�:�dzu��F�>�
��5�)���Џ���N�Ʊ/�q{9�O�+�͗�f���y�j���۰A��H���>w�Ƚ؛̮��o����bw��UrM���s��4����*�r�״?�#�u�n�׃ė�m� ��d�����Ͽ�}�G�i��|#{2��{���2�fdG����������������������������������������������������������X��Ú��������´!�d���j��s����F���|��s�#�8��}.���s�,���¤�����ɓ������{ �w�ɝ�^���t���\�V�׻ÿ������6�C�Ȗ
�R��7�m���*�ёל ����������2�ή���}��(�������ù��s�J���ɴj����h�o�ǂk3�hdG*�)�(�'�&�#�"� ������������	����x�\�հb�G����ْ��s�\���åLJm�܌U���P�J�I���K�g����;�����z���d���#�7�P�N�C�v���/���v�Ѥ܃{����&����9���N�������ƒ��6{U��A�!�c��|2�������J�����$�&�]��}��b��Z�#���R�|����<4�jdG��������������������������������������������������������~�}�|�{��������&|�uq��������A�������>�����P���N~j���ڞ��Q��,�ˡ����A�o�`�}$����/�ә֜�����¼x��~Ҹ#���\�i�Q|�5�՝��N������>�(���������˼����v �H|-�ºr�e�n����n{�������޸~{çi�
5tldG�����������
�����������������h��@�L���N��ʨС����9��������g���Ĥ�؅�����C|֨h�����w��������~�ˑ`~^��|���Ɖ��'�����p��������p���S�I�����ֵ��-���ع/�َ�Ҁ}0����3�Ɩ'�������s�G�w�,�_���ҩ̚�����5|ndG���������������������������������}�|�{�y�x�w�u�t�s�r�q�n�m�j�*������r�����ń��t�S�	�V�3�9�#�_���'�����y�7�����p�.���'�B���Պ��:�$��6�N���|��ś(�P����g�g�C���+���4��:���s���J��{H�D��������������߲ٴ�x�K�s�}������W����������ݖ��Z�<��6TpdG��������������������������������������ߛכ֛՛ԛӛֿZ����a���1�x���6�������H�����8����
�Δפ
�,������� �)�����U���x���}���|�D������w��ǴȎu�����Ԯ\�8�1��2�N~���������[���l��������Bx�{��|�n����������b��!����V���-�-��7XrdGr�p�o�n�m�k�j�i�g�f�e�d�c�b�a�`�^�]�\�Z�Y�X�U��}0�#�u����~<������x��Ӽ���S����^����!���Y�h���F����(�M�ͬ܇=�����T�I�"�I�����8�p�����?�ǂ��a���jz����z��K��m���/���x���k���e��z��R�ʹA�[�6�����N�����o�����������~�#�*���Q8xtdG�������������ݜܜq�K�n���
��g����S�d�Ҫi�����ʍد�����]�����\�؉��P����ˣT�����?�i�p��zĠh���:���͸x���z�z���Y���B��k������=�k����o���ڟ�����(���z�г���~���������|�1�ӷ�ނŌu���������z����`�"9\vdGx�w�v�t�s�q�n�m�l�j�i�h�g�f�e�d�c�b�a��4���۪��||��������!�˱�X�������8�8�����������ӕ3�4�R���J�v��l�������ݴ�|�/�ܛ������U��*�q�B�������������V��Z��~�þ�����a�5�o�h�ݛ��#���4�o����i���������{�����1�ŅG����9 xdG���3�i�I�,�������������]�E���?�R�����:�_�d�����������m�1�������Ɇϣ���ܨ�E����C�j�O�F�C���2�ܷ%�E�ԡv�����%�O�~�c�]�j��֮���
�ɹ�8������<������B���Į��ĞƆ(�Ə�}���q�"��}��:�ydG������[���T�9���B�(����׻��՝�@�8� �P�'�?�P�)��Y�ѡӡ����˸@��"�̄u�C�_�k��n�ٶŚ��5���+�&������R����N����#�x��f��_�������������1�w����~������m��a���_�Q�����#�:�.����%�K�X������;�{dG<�=�;�:�����@���
���>�������,���=���}���[�������6�ΠT��������ѬV�@�ݚʵŴ�%���������w���"�Ǒ���"�V�y���R�}�z�(�0���o��%���7��a�F�����.�Ϻ�����j�9���'�������&��������8�_��1�L�}�����u�f<}dGٟ؟ןɟğ����������u�p�c�K�J�I�H�F�D��r��7���W�����7�ο�� �ۻ���]��C���F�V�ЙD���ʻâ��C������������֯��)�«�����X�e��c�Ş[���_��.���}�ׇb�R������B��K�\���|�$�D�5�]����'�Яު���C���`�����ն��e�>���k���k�i�%�7=�~dG�ߟޟݟ۟؟ן՟ԟӟҟџПϟΟ̟͟ɟȟǟƟğŸ����������������������Τ����������M��ŏ4�������N�r���a������0�D���/��9�
����q���&�����[�<�A�a��-�����'�����6�צ������������	�&���W����D��k�l�5�]����J�ޫ4�~�[�����ɩ������X���Z���6�>��dGS�Q�P�O�M�L�J�H�D�A�@�?�9�8�7�6�0�/�.�*�)�(�'�%�$� ����������T� �����̤��V���A�����D�Z�)�� �{���m�1�S�.�^�n���B���ۋ���V�[���m���5�:�ޱġ����\��S�X�*�f�+�_�����*������~�����/�8������W��W�%�F��a�x�c������y�D���$��\�]���ߛ����ʱ�>��dG��������������������������������������������������y�s�r�q�p�n�m�l�j�k�c�b�a�`�_�^�]�[�Z�Y�X�o��o�������t�����ǵȩތ6����k��r�c���)�9���M����"�t��)������!�ԋƋ����'��������g���.�h��ԑ����[�������
�������C������ע{��\�����K�L�՜z�׵*�+���=���P�̓���v�ȕ}��?��dG�����������������ڠ٠ؠנ֠ՠԠѠРϠΠ͠ˠǠƠŠĠ���y�����4�J��u�����˃������[���J�ں�K�������]���_���ȫQ�Q�s�����l�����
����M���}�o���
�������P�Ԍ��m�O�L���֡&�‹�������z���a�ג$����m�$�.�i�����h�Ʉ������o������k�I����t�{@ĆdGc�b�a�`�^�\�Z�Y�V�S�Q�P�O�N�L�J�G�F�B�?�8�7�6�5�4�3�2�1�0�/�.�����?�.�����L����.�����2��W�	���������������ܝ]�=��K�����������*�q�&�|�����j���ɬr�����v�,�
�����3�I���#�E���������p���s�B�'����9��U�w����k��A�߼����=��ݫ��x�G�k����LAȈdG͡ʡǡš¡�����������������������������������������������������~�}�|�s�r�p�o�m�l�i�g�d�c�b�^�[�Z�4�[���c�����^�4�ڨS�\�
�͋��ů@�"���������W�^�G�����A������i�X���4�v���z�Ԕ+�k�q�ɏ��?�e�ޠ�������^�g������������������ҵ�K�e����w�y���ѣ�������U�p�f������������۸,���u��I�e�BĊdG�������������ۡ١֡ԡӡҡСϡ̡͡ˡǡȡá������������������������������(�\�%�5��ؐ[�ޕ"���|�%�І��Z�L�F�e�w���a���f��V�^�'��~�|��q���H�7�W��j����)�������9���Ģ����H�&�������������U���]�����\�׷�j����j��]���n����7�������(�c���*���C�����շ�B�dGI�F�D�C�B�@�?�:�9�8�6�1�0�/�-�,�+�'�&�%�$�!� �������c����������\��ع:�ٰ����n�
�n��r�7�b���@��ם
�|��+��ұ������E�L����ҵ������ݎ��"���>��v���������m�D�>����?���P���ƞ��c�\�.�m���}���u�������ؑ��D����[�ܹǢ��.�������4��C0�dG����������������������������������������������������������z�6�I���u����4���B�0����������h�p������H�P�T�^��Ǥj�C���9�L�Αd���Z�	�9�i�x���/���}�u�y�����՞'�|����@���ُ������r����˥s�������T���!�����g���9����"���a�I�u�Ҳ/���ع�Ͳ������D$�dG4�3�2�1�0�/�.�-�+�$�#� �������������1���y���m�����"�˜k�3�d���������ˏ+�����Ͱ1�c�<�����{�������.���(���������T�����6���U�������%��������8�G���I�������X���5�%�O�H�H��˦
�P�z���r�D�5�T�
�u���ʉ������������m�=���ĹaE�dG������������������������������������C�b���G�,�t�����������f���q�E���z���0�����X������|��������<�2�����������L���B�����A�Ù:�
�ҝ��q�������h�������2�����%��
�T�`�=�C�^�Q�N����R�`�����=�������ݮ�=���êݵ̬������p�{���2F�dG>�=�<�;�:�9�8�7�6�5�1�0�/�.�-�+�{�O���Ωɧ������C�x���4�X�\�}�}���O�+���@�����J�¾ �����	�S�`������!���������#�ع5�*���Ħ��ǚ�V�%�w�V��S��I�%�����ƕ�A���_�����O�
�K��������z���˵|�ը�������������0���n���2�G��dGʤɤȤ����������������������������������������������������������������X���>�����c�W���P�3����ȖA���1�W�ˬе5��z������1���"���4�W�����f�n����+�@�����›��U����o�������]�P���)���������������;�n�������^�4�a����U�K�����O��L���������a�L�e���p������p����G��dG���������������
�	����������������������������)�����X���p���g�U���ݩ������~�k�������:�_��.�b�e�������F�L�����0�4����������Ӗ���ַ����&�+���)�d���J���s�(���q������:�0������u�H���������3��������}���G�J�����S�]�o��������ӗ{��H��dG�����������������������������~�}�|�{�z�y�w�v�t���*���������������R�#� ���y�G���
�ǘ��������"�3������.����˺�������=���w���%�����q���՗:�������c�����V�L�1�)�]����߶6�c�A�*�����}��{������9�l����������ĩ������M��j�>�.���vI��dG�����
��
�	������������������������������<�y��$���V�K��Z�T��U���l����������5����������b�
�������	�������x���Z�����N���9�c�$�{�6�Q�{���������׭��X��I�����8����љ�E���>���ߗ����g�S�,�!������Z�����~�n�����J�O�G�)�q�GJ��dG��������������������~�|�{�w�v�t�r�p�o�n�m�l�j�g�f�e�c�b�a�`���6�q���(��8�+���a��������ģ��9���!�P��������%�������t�����^���������$�	���������������� ���˥0���@����(�������b����L������v���*�ţT�^�������}�z�x�G�_����������t�����r���^��K|�dG������������������Q�r�5�
�y�������1� ���s�V�o�o�ٞ��J�5��������d���������y���ś���V�*���e�¶��ϯ/�?�&���g���E�����p����R�<���>�W��Y�
���Q�+�1���������<���2�פ��������}�	�3������������,�������e��Kx�dG������������������~�}�|�{�z�(���i�'�,�	�v��|�;�\�֡C�޺6��=�������J����������%���*��9�����>������������
����}�������y��ۥ�R�
���C��M�v���Я~�����^�������Y�W�������d�+�^���*�_�
�_�*�����3��O������B�l��L$�dG���$���ũ�1�0�k�����^���"�������P���k����Ѣݯp���O���
�*������������,�ס��X����O�g�p�њr����������O��R�C���!���R�w���ȱl�l������:���>�<�`�x�âb�o��ĥ����������O�`�������?��������M�dG����������r������Q���اI��� �k������0����ݼ����[�y���S���ܸ[�����ٸJ�����1��i������������*�����K��V�e�d���H���c�:����<�ѳ��������=���ھ���æZ�=�O�,���������3�����m���g���~������\Nt�dGS�R�q�Ҿɣڨ���o�n��������c�Z�ߵ[������D�p�)�n���N�������������ŲL�������D�ֺ����)����
�4������+�T�����������k�����
�2�d�A���I�+�D���;�����������פ��|�'�C���������H�2�ŧ����-O�dG�����ש̩ĩ����y�I���=� �	�s�������5���I�޹<�"��"������������W�P�������k���c�k�����n�w�|�A�t�F��}������i�����K���z����v�˚����:�ֶ����f������'���
�������&�`���[���|���s�������������I��M�O��dG����������������������������Z�����X������o�6�:�|��g���a�|�o�=�����ʵ���3���}����Z�N�%�1�_�O�����1�"����^�g�����������n�e�i���������������w�u�{�)�\�X�Z�L�J�\�����!������	����������������������������P8�dG����9�B�h�^�&�)�
����$�(������������������������g���������������@�|�k�y�t�W�I� ����������������������{�o��6���d�k����D�\�������ڭ��������F���5�{�F�6�ض�n����9�G�B�7�9��Q��dG)�&����������ܪ۪٪ת֪ժԪӪЪϪΪͪ˪ɪȪƪĪê����������������ڬ׬٬֬լԬҬЬͬʬƬŬì����������������������������������������n�^�����������������������}�y�t�s�`�\�S�;�U�R�Q�V�D�P�>�@�;�qRl�dGb�`�^�[�Y�X�U�T�S�R�M�L�K�I�H�G�F�C�A�?�>�<�;�:�8�7�5�4�/�-�,�+�*�(�&���˨֨ިͨڨب����Ǩʨ������������|��v�m�k���q��	������������������������
���k���{��(�L���������������y�����o�T�U�`�b�v�r�j�n�5�?�X�3��@�4�V�J������8��������BS�dGīë«���������������������������������������[���<�6�"���&�������1�.�-��$��,�#�!���
��������ط������'����%��·շ��ȷݷ��ڷƷ��ӷ������Q�������L���������������ķ����T�dGR�S�0�~�1�/�2��(������
�"�,���.������������з޷������ݷ���������������ͷ	���۷�q�}�u�w�^�K�Z�L�����p�d�O�N��������&��'�-��H�1�7�U����������ն���T��dG��٬άɬ�������������������������������������������������������������B�^�����C�U�6�;�'��`�2�*����!��1����(������޶�׶��������}�������|���j�f�i�����������{�^�*�������������������'���e�]�J�%�m�/�R�t�0�#�������� �����"�+�������������������o���_��U�dG�������
��
�	�����������������������������������ܬج׬����������������~�v���������J�����������������g�a�`�t���b�����;�*�H�O�]�(�@��������&���_�/�����
���1�8��������������������������^�9����������������V�dGu�s�r�q�m�l�k�h�f�c�b�a�`�_�^�\�[�Z�Y�W�V�U�T�S�a�C�%�j�n�����������*����0�����������������������������������1���������������x���{���s�}�����T�w�k�r�c�[�N�3��
�������������������������������WWܹdG�������߭ݭܭ׭ѭέ̭ͭ˭ȭŭí������������������a�U�F�@�>�<��%������
��������������������������������������h�������X�j�W�]�~���b�K�5�2�]��
�`�]�S�O�N�L�D�A�?�4�0�)�#�~���5�3�0�.�$�'�������������������(X|�dGQ�R�������z��������~�h�}�w�l�t�V�Z�Q�I�>�<�.�����ȧ����O�L�E�C�>�<�9�7�5�3�1�0�F�6�=�3�%�+�����}�������������������������������������������������������y�x�z����XL�	���TG���:�YľdGԾ�:��.��������
�������������������������������h�>��!����������ӫҫ̫ͫ˫ƫū��������������������������|���7�V�L�I�R�w�m�l�]�;���:������
������A� ���JZܾ�:������_�r���X�T���������v�U�u�o���W��<��
�P��R�7�Q�����������������������������W�x�\��j�D������� �:�����1�0���#��(��O��A����������������v�������e�b�d�y���w�z�$�[<��:-�,���������������������������l�q�X�J�)�&���������}�������o������ֳγٳճͳ����������������������~���j�{�r�z��c�[�W�R�X�Q�����������7�����t�����,�������x�����o�n�e�J�R��[���:˰ʰ�����������������������������y�x�����p�J�h�^�S�A�����C����������	�������������������������w�m�`�����t�b�a�`�\�_�]�Z�X�W�R�Q�O�N�L�K�J�I�H�Q�P�O�N�L��\��:i�h���������������������������������������������������������������X�T�����A�I�G�+�8�<�
��(�-�!�����j����1��������������������]\��:���������ȱ����������z�w�}��Y�?�E�H�(�3�#���$���
��������Ůf�`�V�m�M��1�O�G�#��H��!��6�K���������������������������������y���z���\�����|���}���������5�x�v�[���.���������_^l��:����������߱ұͱ̱˱t�������E�����.�g�A�`�F� �:�&��0�u���$���%�I�M�8�����
�	����������'���1���������_�������(�y�o���>�T���x�U�A�C�+�����X�T�K�R�F�A�9�y�x�u�t�s�r�p�o�m�j�0_���:k�g�U�N�C�?�=�;�:�8�7�6�0�-�+�*�$�!� �����������
����Ϲ�������������z���������������z�������B�������3�������������a�m���t�n�d�o�P�D�=�#�.���������������������������������y�I�����|�n�j�d�c�b�`�����E�`p��:������������������������������������������������������~�{�z�y�x�w�Y���������������������������������z�x�Y�D�c�_�\���R�����%����������	�������������������������������}�����������������l���r���|�j�{�����6�d�k�]��M�G�&���*�:��`0��:�������
���
�	����������������������v�d�c�Z�X�F�ϱα˱��g������Z������������������5��!�����������������������R�j�_���W���S�5���(�1�������������l���t�"�����������������������������}���t�j�f�W�K�@�#�%��a��:������������������������\�<�@�4�[�D�;�������E����������(�*������������������	��������������s�U�m���v�|�_�/�8�2�F�.�-������
���������������D�����������������������������������tb���:(�)�6�4�������������k�f�Y�]�a�O�9�3�*�V�N�Q�i�J�?�C�<�5�9�������6�3�5�4�0�.�1�-�'�!�#� �������������
���EcX��:ȴ�������������������������������������������������������������������������������������~�|�{�z�x�w�u�t����"�����������������d`��:/�.�-�,�+�*�)�������_�b�I�̯��-���
��������y�������{�}�y�x�z�v�t�s�r�q�p�n�k�j�h�g�c�a�]�b�?�>�=�4�8�*�%�"��+�-���
�������������������������������������dt��:����������}�]�x�{�\�p�n�`�k�^�d�W�G�R�K�>�;�����5�/�*�)��
��	��
��U�Q�I�?�>�<����
������������������������������q�]�N���)�(��������������������������������������o�{�t�r��e���:=�>��
��������X�R�;�:�*�0�/�1��!�$�����
�"�
���������������������������������������������������������������`���g�k���x�|�����r�������_�D�L�#��f@��:ݶ׶Ƕ¶������������������������������������������������������������������������������������������������z�x��t�s�������������������|���������������������w�v�]���u�h�\�g�i�K�6�&�3�C�9�H�;��(����������������Zg���:0�/�.�-�,�+�*�)�'�"������y�o�t�c�[�]���������_���z�y����s�q�l�h�g�d�Z�V�N�9�3�1�����^� �����G�{�4�)�+�*�'������	�
�����.�
����������������j�<�5���J�.�3�u�e�V�Z�;�����������������+hH��:����6�8�*�2�-� �,�(�����������������[�3�������\�M�����������������������������������������������������p�k�f�t�`�W�S�X�L�s�j�c�i�W�\�V������h���:[�\�������]�v�J���������������|�z�x�k�*�(�'�&���������������ܽ/������W���4���Z�G�E�C���B�@�?�>�:�8�7�6�5�4�2�,�*��i��:��������������ݸܸڸѸ͸ȸ������̸ʸɸǸƸĸ+�#�������������\�������������z�}�y�{�w�t�޼����t�v����ߺ�պٺ˺źº�������Y�U�S�M�
�D�C��������̶ö�����������j��:T�U�dtok���:���uok���:�����uok���:4�/�-�'�&�#������
���������������������Jv@l���:���������������������|�z�y�x�w�u�t�s�q�p�n�m�l�k�j�i�h�g�f��vmX��:����������������gbbb�a�a�w�m���:+b*b)b&b bbb�-2t�-�'(�-�&8&E&�-�-�"?#�"{"�!�"!���-�-2�-�-����(TO���-5������3t���|�0x�n<�0�6�8�;�=�>�?�@�A�B4CtD8EFDG�HLI�J�K�L�MO�O�PQR�S�T�UV�V�W�XY8YXYxY�Z�[�\@]�]X^�^ _�_�`|b�dxf�h�jlltnLpPrptTvx�yx{}�~x�|����������(������|�����|�t�p��إl����0��d���|�ص�Թt�D���4����T�d���h�(����P�X�l���8���@�����|�������P���4�<��oD������� ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P����`��p���������������� ��0��@������P��`��p�������������� ��0��@��P��`��p�pL������������� ��0��@��P��`��p������������ ��0��@��P��`��p�������������� ��0��@��P��`��p���������������� ��0��@��������P������`��p���������������� ����0������@����P��`��p�pX��������������� ��0��@��P��`��p������������ ��0��@��P����`��p������������ ����0��@��P��`��p������������ ��0��@��P��`��p�������������� ��0��@��P��`��p������������ ��0��@��P��`��p�pd��������������� ��0��@����P��`��p�������������� ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p�������������� ��0��@��P��`��p������������ ��0��@��P��`��p�pp������������� ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p�����������p|��� ��0��@��P��`��p������������ ��0��@��P����`����p���������������������� ����0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p�������������� ��0��@��P��`�p����p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p���������p������ ��0��@��P��`��p������������ ��0��@��P��`��p�������������� ��0��@��P��`��p������������ ����0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ �p����0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`�p����p������������ ��0����@���@�A��P��`��p������������ ��0��@��P��`��p�B������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P�p����`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p�€��p�������� ��0��@��P��`��p�À�Ð������ ��0��@��P��`��p�Ā�Đ������ ��0��@��P��`��p�ŀ�Ő������ ��0��@��P��`��p�ƀ�Ɛ������ ��0��@��P��`��p�ǀ�ǐ������ ��0��@��P��`��p�Ȁ�Ȑ������ ��0�p����@��P��`��p�ɀ�ɐ������ ��0��@��P��`��p�ʀ�ʐ������������������������������������������������������ ��0��@��P��`��p�ˀ�������������������������������p�������ː�������������������� ��0��@��P��`��p�̀�̐������ ��0��@��P��`��p�̀�͐������ ��0��@��P��`��p�΀�ΐ������ ��0��@��P��`��p�π�ϐ������ ��0��@��P��`��p�Ѐ�А������ ��0�p����@����P��`��p�р�ѐ������ ��0��@��P��`��p�Ҁ�������������������������������������������������������������������������������������������������p�����������������������������������Ґ�������� ��0��@��P��`��p�Ӏ�Ӑ������ ��0��@��P��`��p�Ԁ�Ԑ������ ��0��@��P��`��p�Հ�Ր������ ��0��@��P��`��p�ր�֐������ ��0��@��P�p���`��p�׀�א������ ��0��@��P��`��p�؀�ؐ������ ��0��@��P��`��p�ـ�ِ������ ��0��@��P��`��p�ڀ�ڐ������ ��0��@��P��`��p�ۀ�ې������ ��0��@��P��`��p�܀�ܐ������ ��0��@��P��`��p�݀�ݐ�p������� ��0��@��P��`��p�ހ�ސ������ ��0��@��P��`��p�߀�ߐ������ ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0�p���@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p�p$����������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������p0��� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p���������� ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P�p<���`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p������������ ��0��@��P��`��p�������pH������� ��0��@��P��`��p������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1�pT���A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q�p`�������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q�����������pl���!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q�px���a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q�������p��������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1�p����A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q�p��������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q������������!��1��A��Q��a��q�����������p���p�%�	q��p���C���'���&����������~������������������+q��p('��.���mq<�pL'������9���6������/�~��q\~���r�(�h��q�h�b�_�a�d���`�3r��p�'`���_���^���]�/�\���[�����&���W�#�V���U���������P���O���������K���J�ur�J���I���H���G�p�j�E�o���A�c�?��rx?���>�/�=��<����r��p,);���:�;s��pP):�p�0�H�}sH� ���s0�p*���pP��������t`������������M�K���=�;�������Ct|��%�#�~��}���{���w��t�w�����u��t��t���s���r�	u�p8+r��-q��-p�o��-�-m��-l��-k�j��-i��-h��-f�e�Ku@e��-d��u��pT,d���X��u�,4LT����p���(@HXt��08����v�����T���V�������x�������A�n�?��6�B�5�SvT5�W��v�W������޻���v�����[�]���w�����`�[w�p�,`���V� �U��w$�p-U���T��wL�p8-T���R���O���N�!xlN���M�z�L�x�J�v�I�cx��p�-I�(H��'G��x��p�-G��&F��x��p,0F�E&E�8&D�)y�pd0D�?#C�ky<C��"B��yT�p�0B��"�"@�{"?��yt�p(1?��!>�1z��p81>�!=�sz��p\1=��<��y��p�1<��;��z�p�1����<D\d�����,4Ldl���������z ;�:�9{��p2:�9�{{��p(29�28��{��pL28��7��6��{	6��5�A|,	�p�25��4�9{L	�p�24�(3�2��|l	�p,32�T1�O0��|�	0��/�}�	/��.�I}�	�p�3.�5-�,�+��}�	+��)��'��&��%���#��}
�p�4#�"��{X
"�����~p
�p�4�|�Q~�
�p�4����y�
�p`5����5���4�����������������,�����*���������&����������������������u�|��������������s�����}����b�g��������g��~�
��
�u�	�a�c����Z���Q���N�}��^�v�j���u���j�p���Z�_���J�G�}��z��N��y�X��m��%���~��<��W�g��.�i��C�_��,�
�%�H�����$��ߐ�F�L��ې���1�J�/��Ր9�����
�ѐ�5�ϐ6�ΐ�̐�����!����(��� �Ð��������������������������������	������������������������������������������������������YT
������������������������������������z�������������������~�����v�����h���������������������^����@������\���e�v�I���y�{���z�p�y�B�{�~�����������9�z�o�J���o�l���k�s�j�[�i�x�b�g�U�)�e�&�d�(�b�$�1��`��)�^�M��\�i�[�6�Z��Y�
�X��W��V��U��T��S�����=�0��9�������3�6�����������
� ������������%��������~���}�������y���x���w���v�������s�������p���o�n���m���l���k�a�������	$	<	D	\	d	�	�	�	�	�	�	
H
P
h
�
�
�
�
�
�
��L
8�|8��@k�l�����j���i���h���g�������d���c���b���a�����_�������\���Y�k�X�p�W���V���V�|�U���y�S�g�R�t�S�P�k�O���N�>�M�3�L�W�K�=�5�I�I�H�@��'�xu�E�'�D�k�C�b�B�J�A� �@����=�*�<��;����9�z�i��z��y���x���w�����u�����r���q���p���o���`o�����m�n�����l���k�����Z���h�^�������d�w���b�w�a���`�x�_�f�����\�P�[�P�Z�9�Y�}�X�:�W�W�6���k�S�C�8�Q�\�N�z�e�_�c�F�J�t�a�X�G�/��4�\�\�D�L�C�C�+�A�L�C�?��>�C��?�;��:�X��8�1�7���6�����4�G���2�3�@�B�*�:�-�8���$�*���9�7�'�q����&��%�����#���"��� ������_���^��]�����[��Z���Y���X�����V��U�����S������������M�������������H�������E���D�����B�����@�������������:�Ͽ9���8���7�����5���4�����2���1���0���b�n�p�����*���)�����T����v���$���#���Z�!�w�I�����k��{�w��u�����w��1����9��s��\��C�7�0�Z�X��k��L��J���
�
�E���*�G��'����H���%�	��>����������y����޽�����������������������������������������������X����ÿ�����������&�������#�����!��� ������������������c���y����������d��[��X�����������S�U��V���c�	�G���o��F��R��~�J�S�>�A�i�D���e�d���n���L���=�6�(�)���8�7�S��m�5��^��\�?�x���e�n�k��e��%�L�1���@�D��N��"����6�����ޏG��܏�ۏ
�ڏ��ُ���h؏4��֏���������Џ�Ϗ�Ώ������ʏ��ɏ���Ǐ��������Ï����������Һ���������������������������������Ä������Ƚ����������������������������������������������������������������������x�����z�����n�������u�����s���������������t���t�������y�����g�~�l�}�a�]�`�b�P�u�V�s�s�m�r�]�q�p�k�o�O�_�:�l�I�H�h�g�o�v�e�G��N�d�;�c�@�b�I�a��8�_�5�%�'�\�I�[�*� ��X�Z�(�U�T���/�8���&��1�7����������!��������������������޹���������-��{�
��ι�����������q���p�n�������j�����������d����b�����`���_�����]���˅l\���[�����Y���X�������U���T���S���R�����O�����N�n�M���p�n�p�I�j�H�a�G���F�����
�4D���C���w�A�}�@���N�>���=���C�;�:�^�9�4�H�C���5�K�4�O����1�%�$�-�0�_�+�*�*�O���%�.��9�%���[��� �^���������
�"����J�����?��9��'�����3�������� ����
������
��������������������������������������������������������ӆ4!�����1�����/���.�����,���+���*�����(���&���%���#���u�!��� �|������������!�����V�����{�x�}���s�w����:�x�r�T��k�
�B��c�
�W�|"
�[�T��(�O��N��M��3����������"�������
�������������	�����������������׻���������������ۇD#����������������%���$���#�y�"��������������������^���������#n��������h��{�X�[�]���y����
�~�O�y�m���p�P�X��7��J��v�o�G���r������n���j�@���b�`���_�l$����.� ��T�U��9�X��B�V��>��J�(�
���?��"�@����2��5�.��3��4�ߎ8�ގ��0%ގֿ׶܎�ێ��َ�؎���֎���ӎ�Ҏ
�ѸЎ�ώ��Ύ�͎��̎������Ɏ��Ȏ��%��ǎ��Ǝ¼��Ď��Î��Ž����˼�����������z�������}�������������%�t&��[����������������`�����<��z�6��L��g��&&�"��'��m����/������O�>����#������\'����ߎ��ގ�ݎ��܎����ڎ��َ�؎��׎��֎��Վ��'Վ��Ԏ��ӎ��Ҏ��ю��Ў������͎����ˎ��ʎ��Ɏ����ǎùƎ��x���Î|�������m���z�����������������-�0(��|�q���������}���������������_�j�R�w�i��f�����r��T��2�.��M��h�{��=��o��(�o�\�n�p�ݎ"�.�W�ڎ>�َe�؎/�/�֎^��ԎL�ӎ��ҎR���)�ώЎ�J���̎&���ʎ��Ɏ�Ȏ�ǎ��Ǝ���)Ǝ��Ŏ����Î
��������������������������������������������������`*��������������������������������������������º��������y���x���c�����5��*p���v�����h���^�������֎S�ՎJ�ԎD�ӎ'�A�u�C�ώΎn�w��+͎"�̎!��ʎ�Ɏ���Ȏ6�ǎ	�Ǝ��Ŏ���+Ŏ���Î�Ž���������������������������������������������@,������������������������=��,�����z������z�r��v�����w�_�i�<��g��t�R�U�m�8�ݎ0�\�ێ6�ڎr�t�؎`�׎w�֎c�Վo�Ԏ��,)�t�Ҏp�&��ώ^�G� �̎:�U�ʎR�Ɏ�Ȏ�ǎ:�8�D��L�&�����?�I�"�O�%�����)���������*�>���������'�/�����-��������,�
���������Ӽ�������������������������������Ҹ������������.��ع������������������������޸��þ������������|�������������r���������������k���������[�k���E�$/��^���u���t���������p�c�i���b�l�[�k���j���i�W�[�g���f�V���d�U�b�C�a�W�%�_�d����/^�`�f�\��[���Y���W�P�V��:�
��O��M� �����5������������������������1�ɍ�0�������������������~���}�������z���y��x���w��v���u��41u�v���t���״r���q���p���o���n���m���l�����j���i�����g���f�����d�M��1d���c���~�a�`�h�_�j�^�]�b�\�]�X�Z�W�Y�X���82X�K�W�5�V�2�U������ю�2��
�����������´������dz����������������������������а�������������2��ȱ����}�����{���z���y�������v�������s�������������m�ɴq�k�y���i���h�a�b�f���k�c�U�\3c���b�U���`�z�_�F�]�]�@�\�>�[�<�F�Y�N�A�m�V�#�U�Q�T�X�?�R�>�P�[���4F�N�"�M�]�C�K��=�I�Z��6�F�F�	�9�3�J�A�K�Z�?�	�>�,�'�+�;�%��I�8���7��6��=������1��0�ُ�40�q����o����οl��k���j���i���h���g�����e���d������X5����������]���\�İ��Z���Y���X���W���V���ʹT���S�����Q�����q�O�����M���L���K���J�m�|�H���G�]��5g�F���E���U�C�^�������?�g�>���c�<�A�;�v�:�X�x�8�}�w�6�J�6�4�`�3�]�2�Y�1�5�F�/����6p�m�S�,�)�o�*�O�K�N��5�L�$�S�#�"�"�D�!�#�&�A��?��O��4�����0����)����#����47����
��������
��%�#���	���������������������������������Ʊ�����������������ֵ#��7p�X����L(�P�p`���d,�x ,!�!t"�"<#�#d$(%�%l&�&T'�'((�(�)X*�*x+�+8,�,�,�-�./�/�0,1�102�2�2T34�4P5�5�6,7�7�8�p�8�������������/���.�������+���*�������'���&�������#�x���!����������������������\����e��9�[������a��z��}�����C�
�D�@��<�
�k�;����4�m���.�>�|�1��*�(���V���r���y�z�x�P����9���x:�����7�����!��
��=���������J�������I����G����=��������ߍ�ލ����܍�<;܍���ڍ׻�؍�׍
�֍��Սԍ����ҍ���Ѝ�����۰̍Ů��ۯ����ƍ����č͸Í������+�<�������������������������������������������r�������p�m��<���w��h��p��������_��E�����k�=��F��>��6����$=�[��`��!��������ݍ�܍�ۍ�ڍ��=ڍ�ٍ��؍���֍���ԍ��Ӎ�ҍ��э��3��=Ѝ��ύٴ΍����������������ɹō��ӷ�����������������������������z�������������g�������w�u�D>����������x�������{�o����q�l���v��o��T��o��5�D�ߍ7�^�4�z�.�p�>�L�׍f�֍w�Սx�ԍn�ӍK�H���?3�Ѝ �ύ_�>�͍<�H�	�ʍ���:�ƍ�3�č*�0�+����������9���G�����������������#���*����?��,�'�հ!���ۻ�����	���������������������������������������ʻ�����������������������������������������;�|@��̮Ǵ����������Ϻ������������������{���������������w�s�v����t���s���r���c�p���o�}�hAo�����m�c�W�k�k�j���q�^�|�����d�X�c�e���a���P�K�^���]�t�\�m�f�Z�e�Y�8�]�W�]�i�U���B=�T�U�S�N�I�b�R�O�1�N�J�5�e�K�*�J��I�Q�H�*�G���E�%�D�(��(�8�@�/�'�0�=�E�<��%�:���8�1�7�#�6�+�5���B5�v� �u�"�t��s�����o�
�n���m��l����j���i���˸g�ܷf���e���d���c���b���a���C��C�߲��]���\�����Z�����X�ή��V�����T���S�����Q�R�����P�����N�}�M�l�L���K�Y���HDJ���I�������Q���D�\�C���B�G�A�I�@���?�m�>�4�=���<�}���9�Ǖ�D9�A�8�o�a�6�"�5�+�[�3��_�1��0��/�
�.��-���2�*���)�.�(���&�%��$�	�hE��#��"���!��������������\���[���Z���Y�ҫX�K�F��W���V���U���T�~���S�v�o�Q�z�x���N�����L�a�K�~�����pFI�|�H�V�{�F�{�E���D�n�C�Y�^�A�j�@�N�?�p�A�=�g�6�;�i�:�D�?�8���7�H�6�~�5�s�4�ϖ�F4�4�3��^�1��E�/��.��-�-�,�V��*�=�)�)�(�B�4�&���%��$�	�#��"��	� �����������G�
�����������)������
������������ݴ����ٶ����
���������E�����C���B�S�4H��A�����?���>���=��<��г:�������7���6���5�����3���2�����0���/���.���-�����*���)���(����H(���'���&���y�$�t�#�^���m�p�n�o�����a��d�����o��N��^�8��j��(�P��D��9��ח�I�R��D��.�
�=��T����	�.��#�.�����������DJ�
�������������������������������ک����������[��J���3�������߼/��.���-�����+���*���)���(���'���&���%���u�����!��� �����������������(Kh����\��|��m�j��f����{�k����`��i��`�
�V���s���	�F��}�M�O��F��5�c��B�G��H���K���B�]�ߘ�K��!���,���1���e���6���]���O���6�#����V��!��5�:��������/����%����������!��L��ߌ�-�݌�ں����׌������Ԍ��ь�Ќ��ό��Ό��͌��̌ʵ����Ɍ���nj��ƌ��c�tM��Č��Ìڧ���������������������������ն������y������������������������������� N����������X�����g�������k�������P�I���\�~�����یy�z�I�W�|�}�?�<�ь��Ќx�ό1�v�͌��N͌0�̌\�ˌ)�a�ɌȌ[�nj�ƌ'�Ō�0�5�Œ=���%�����%���5���)�pO#���.���������!����������˱���������������������Ŵ����Ԯ������k��O��������������������������������t�������s���u���g���d���s����P��`���K���E�������F�|���A�֌M�ՌI�Ԍ:�ӌ��Ҍ.�ь,�0�8�Ό �͌�Q&�̌:�ˌ �ʌM�$�%�ƌ1�Ō)�'�Ì�Œ�L��������
���	������4�����������1��Q������������������د�����������������������զ����s�R��������������y���������������i��������������R������q���y���x�f���o�ی��ڌ_�ٌ}�،T�׌U�֌���R+�Ռ �Ԍ>�ӌC�A�ьЌ(�ό+��͌9�PS͌�p�S͌��������v�Ȍ��nj����d��c�������{��S�Z��X�Z��f�������F���N���^�O�u�w���n���s���<�Z����T�X�^��j�T��!�O�<��R��K����F��A��9��������3�ߌ&���tTތ���܌�ی�ڌ�ٌ�،�������Ҍ�ьǵЌ��ό��ͬ͌¾̌��ˌʌ��Ɍ��ȌA��TȌ������Ō��Č����׵����۸������������ҩ������������u�����������s�������z���q���������������UX�c�����������h�����R�����i���Y���ތP�|���H�E�o�q�׌S�֌w���ӌ4�Ҍ8�ьm�Ќl�όX�Όu�S�̌ŝXV̌U�?�J�ɌV�]�nja�/�ŌR�ČK�L�Œ�I������B���
������7����*�'���;������:�#���A��������
��������W���(���ع��������� ��ʨ������֨����
�����������������������������Ţ������������������I��W��֮��������������������ܹ���~�������{���z�Įy�r�x���v�v�u�u�ç��r�o�q�_�p�����\���l����Xl���k�X�j�e�]�m�T�f�t���d�U�l�W�a���L�]���@�[�Z�P�Y�R�X�Q�W�g�V�T�X�T�*�<�R�$�Q�#�}�O�7�N�͞tYN�4�M�k�L�j�T�J�*�I�:�H��G��K�D�*�C�.���
�&�>��&�<�D��������6���4���3��2��1����4Z$�/����.���+����j�
�i���h����f�����d���åb���a���`���^���]��\�¤[��Z��Y����W�Q��ZW�׷V���U�������R���P���O���عM���L���K�շ��I�������F���E���D���C���B�A���@�����?����[?�|���=�n�x�;�9���8���7�[�6�j�5�\�4�W�3�^�"�՟\\1��0��D�.�6�-�O��+�:�*�J�)�A�(�<�'�1�&�0�%���$�%�#� ��!�(� ��#��$�������\�2����������Ҫ������������������ޱ֯������G�ѤF���E�Y�l]E���D�ҵC���B���A�Я����>���=���<�����ʱ9���8���7�Ĺ6���5���4���3���^3�4���2���1�U�0�j�/�L�.�S�-��,�[�+�@�:�)���(�v�'�y�&�z�%�w�$�ݠ�^$�A�#�)�e�!�d�b�U����>��������������$_۪�������$�����������Q�����O�a��_p:4;�;�<=�=�=<>�>�?t@`AB�B�C@D�D`E�EhF�F|G,H�H�I<J�J K�K�LlMN�NhO�OxP�P|QR�R�RHS�S�S�SlT�T�UPVW�W�XlY,Z�Z�[T\�\d]^�^_�_�_�p�_O���N�����L���K�q�l�J����`J���I�X�H�J�G�|�l�z�D�N�Y�B�k�o�@�C�?�A�>�O�K�� a5�;�3�:��#�8�@�7��6���!�3�)�2���0��1�	�#��+��*�B�)����!�&�����#�'��a�����2�����������[��Z�ѬY�Ĥ����U�ع�ҵR���Q��P��O��N�i�,bN�����L���K���J�����H�������E���D�������A�B�|����bA���@���?�x�>���=�j�<�P�;�M�:�t�e�_�7�|�6�W�R�4�S�3�2�9�1��,c1��0�I�/��.�>�-�5�S�+�D�1�)�(�(�	�'��&��%�"�$�/��c$��#��"����a���`��_���^���]���\�q�d\���[�����Z�s�Y���X���t�V���y�o�����Q�o�P�f�O�����pdN�\���L�q�c�J�_�I�\�H�^�G�?�F���E�J�D�K�c�B���Q�@�}�?�y�|�=���<�%�;�V�{�9�n����d#�]�5�j�4�,�d�2�c�1�b�0�`�/�I�.���5�,��3�*�0�)���.�
�%�7��e%�'�&�$��!�� ����#����פ���[��Z��ܨX���V�ˡ˺������������M����K�����«H�y��eH���G�F���E���D���C���ߝ��@��������<�z�~�:�}�9�����t�w�5���4�t�3���2���l�h�/�d�k����f-�.�Z�V�,���+�Q�*�I�)�>�+�'�<�&�ŕ.�ĕ��lgĕq�Õ:�•_���a���I���G���"���F���<���8���4������+������&�-���(���1�ߜ��?��g!�������������
�С��������������������������?���dh?��>���ު<�ޫ��:���ݵ8��}�6���5�����3�2���1���0���/���.���������*���)�å�h)�Y�(�H�E�'�����?�#���B�!�3� �l���(����#����xi$���������������������
�����������G��i�����������������ů��ұ�����ַ����D���C���ɝA�����@j@�ھ?���>���=���<���;�����Ҳ8�˵7�6�Ͳ5���t�3�r�y���0�����������+���*�����(�k�i�&���%�˦�jf�$�[�#�a�"�]��� �Y�_��r����k�O����f�y��9��9��n��z�3��T�
�hk�*������N���P���/�?���>���=�&���K�+���8���	�4�G����<���+�*�����0�-�+��%����"�,��������O��k�����Ӛ��Ҿ��ٰ�����������
���ڞ��е�����������}������z�ˣx�����v�؛u�ҙt���s������l��לp���o���n�����m���l���k�����h�}�g���{�e�x�d�ɩ����a�����}�^�p�]�n�\���k�Y�r�X�]�W�d�`�ӧ�m\�T�^�S��T�W��R���K��G��6��>��;��n��C��Q�R���@n�b��7��E�:���J�ߗ�ޗ�ݗ
�ܗO�ۗ�ڗ���ٗ+�)�ח(�֗+�W��n՗�ԗs���q�޺p��o����ݼ�����i��h����e���d��c���b�ȫ��`�����^���]�߶��[�ɬZ�՝Y���@oY���X���W���T���S���R�����P�����N���M���L�r�q�J�K�����I���������E���D���C�ۨp|���A���@���?���=���B�;�ژE�6�Q�ט4�Q�՘��Ԙj�R�ҘA�ј�3����p�͘\�d�˘��"�Ș\�Ƙ�Ę�Ø�˜���C��������������������������_�$q�����Ú��ȩ���Ͱ�����Q��P��O�ϣ��֜��K���J���I���H��������q�����B���A����?���ݫ=���<�����9���8�6���5�4�������1���0�����.���-���,��������&���%��@rX�$���#���"�|�!�s� �v�����X�m�����_�~�=�U�@��o��k��%��r���F���]��� ��R������8���K�A���2�/���R���.���-��������=�4���-������$���g�xs������'���
����������������������������צ��Ġ���� t����������*���)���(���'���&�{�����#���"���t���� ���������������������=�����������{���@��J��}��;�u��t��-��tn�q�	�.�j��f������W���K���@���+��'�������o��u����������*���������������������������������ֺ�������͗��ԡ��¶��ڟ�����u����������������������~���}���|���{�����ė�������b��_��z����������v�s��I����
�-�+��@�n�5�R��!�5�Dw/�1��H� ��*��)��9���
�4����2�����7�+���7������L�
������	�
������6�w��w��Τ�����ܸ��ӡѡٸ���������������ә�����������ś��4x���}���|���{���ݮy���x���w�����u���t���s���r���q�����̚n���m�������j�����������������������x����|��v���������L�����W�����������w���v�T���u���h��i�g��]��j��m��\��"��=�tyi��]��)��K��`��C��H�C��2�ߛ6�9�/�;�3�G�כ*�֛՛&�ԛ�,zԛ(�ӛr�޹ڨp��o��n�̤m����k��j��i��g��f�âe��d��c���b���a����za�Ȗ`�����^�]���\�y�t���Z�o�Y�c�X�v��@{]�[�U��X��[�d��\�G�K��E��{��I�4���+��6���+�)�*�2��'���2��-������ݜ �ܜ��x����{x��w�
�v��	�t�*�s��q�����n���m��l���Πj���i���h���g���f�ɮd|f���e���̬d�Ğc���b���a����|�~���j�M�,}����<���5�����H}����<�ѯl}<�=�����}<�g�;���:�ٟU��}ٟ`�؟J�ןQ��P�A�O��N�
��L�������ɟ������
�ğ����������������}����"��ߵ��������՝���������������������ˬ����������ܛ������������ɓ���������������ֶ����ġٰ\~����ݛע������u���������p���������������������Ɩc���ϑv�ê�����������K���J�n�I��LI�t�H�s�F�����D���S��~�V�ߟ@�ޟQ�ݟN�j�۟J�d�|�؟L�ןC�u�՟?�ԟ<�ӟ9�ҟ]��ҟ5�џ_�П'�ϟ)�ΟD�͟D�̟ �8��ɟ1�ȟ
�ǟ�Ɵ�ğ�9�<�Ÿ,�*����������������������
�����������������S�����Q���P���O���ŎM���L����J�� �a�a$b�b$c�cdhd�dxe�e�fdg�g\h�hpi�i8j�j`k�k�lxm8n�n8o�o�pq�q8r�rpst�t�t�u�u�v<w�w,x�xly$z�z8{�{�{\|�|$}@}d}|}�}�}T~D�������p����ŞH�����ѳ��D������A���@���?���ݖ��������9���8���7���6���������0���/���.���o�����*���)�\�(�Z�#�Ȃ'�����%���$�q���[��� ����M��W�x����\�������*�e���(���T�Q���2�H���P���K����%������A���$�4��(����������G����5�����������B�����	���������/������������ْ��ގ��Ω����������������������ʵ������������y��ϯ�������s���r�׭q���p���֡n��܄n���m�ёl����j�k���ȱѣ����ضc���b���a���`���_���^�t�]�����[���Z�r�Y�[�X�+�������������]�d����V�S����^����������Z�����|��{������r��l��7�V�a�j�S�@�m�D�i�ڠk�٠d�ؠ�נH�֠]�ՠK�Ԡ!�����ѠM�Р��A�ϠG�Π	�͠�:�ˠ��������Ǡ
�Ơ*�Š&�Ġc�Џb���a��`�����^�Ų\��ŚZ���Y��t�����V�����ЯS�˥Q���P�˦O�ըN�����L�����J���G���F������z�B�y�i���?���q���s�j�8�q�7�6�3��7�l�6�W�5�h�4�g�3�d�2�q�1�Z�0�V�/�N�.�͡D�o�ʡ0�b�x�ǡ1�R�š.�%�-�u���¡O���,���1���$�_���@�#����!��������:�����'�����%�8�������
���������������������������8���������ݩ�������������ݯɧ��������ݚ���Δ�����ط����Ǥ��Ō�����ݷ~�շ}���ڷ|����|�������Ģ��ӷȷڷ·s�r�����p�Ʒo�m�طl���~�i�����g�o���ķd���c���b���������^�������[���Z���;�̊��������T��������������i�����q��������J��m�z�;�0�1�2�}�/�1�ۡI�(�١,�.�֡}���֡"�?�ԡ`�ӡ�ҡQ��С�ϡL�
�͡�̡�ˡ������ǡȡ�����á�1��������������8�	�������������%������������޷���ݷ��������з��ޠ��I�۷�ˑF�ͷD���C���C���B���Ħ@���?�����������:�9���8�����6�|���ĩǢ1���0���/�����-�C���-���,�}���+�w�u���q�'�e�&�A�%�p�$���l�!�V� �^��}�d���Z���������N���K�L����O���N���U���'���=���H���)������7���3�1�-���&���'�Ƕ�������!�������������������Йӕ�����������������������	�,���4��3�՜2�ߛ1���0���/�ն.���-�����+�~�������^�e���$�K���$�`�#�U�d��� �B�C���;��6��2��O��1�'�*��R����,�����(���!�����������������
�����5������������Ϸ��������������޶ܝ��׶���������>��=�����<���;���:���9���8�7�y�6�}�5�S�p�5�6�X�K�Z�W�m�1�R�0���/�v�.�R�-�r�;�ʤ:�ɤ3�Ȥe�0�1�/�^�3�*�����+�E�a���0�$�a�!���"���1��������<�����
�
����������������׸8�2�������*�������܌��������������������������������������������������������Ȓ���َ��������������������������������������������������������������������[�t��\���������T�
���	�h���������������|��x��~��|�k�r�g�����,���`������������D���_�����P����L�����������D������������������߹������������������#������������������~���}�����|�!�L�|��{���z���y�ƞ��w���v�����t�����z��x��c���a��_�x�
�{����q�
�v�	��x�~�V�U�K��|�Q��L�O���{���,���I���T���?�9�>������"�<���3�3���1��h��E�� ��E��;����F������������
�������������������������������ũ~���ם|���{�������w�v�����t�՞�r����p���o�n�)�H�n�Ȏm�����l����j�����g���f���e�����c���b���a�`���k������������^�����q���]���o���X��� ���o���#����������1���������#����������������������������~���}���|���{�1�Ę˥{�ڭz��]��s�X��i��0��������l�I���(�����������S�9�ęS���R�v�{�ܙR��@��4��������������"�����%����I����2�������(��	��,�-��ש
�'�!������.�ڨ����̩ا
��ڬ
��٬׬ĩ�֬��լ˜Ԭ��ҬʍLJЬ�ģ��ͬՊ����ʬ�������Ƭ��Ŭۥ�ì��ҝ������������ƉǑ��A����������������������פ�����������������ׄ��ţ����y�����y�̂��|���Əo���ȕ����������w�����������������j�������������[���}�����T���M�1��]��s�(�o��ž`��j��i��?�c����\��W�����Ԝ����I����)���æ��&�����ĥ������Ō����}�������ŧ��h�������������r�����������������0�����m���}���������_�o�����u�t���}�����V��W���I���n�g�w����Z�C�g�s��s����a�����f��u�3�V�P�p�ܪͿ̝ܪ9�۪e��٪*�c�תZ�֪V�ժ#�Ԫ��;�Ӫ'���Ъ��Ϫ�Ϊ��ͪ������˪���ɪ��Ȫ��#�ƪ��Ī�êb���`�����^������[�Y���X�������U���T���S���R������M�L�Q�$�L���K�����I�׃H���G���F�������C���A�����?���>���<���;���:�����8���7���ԟ����5���4�o�g���O�/���-�\�,�U�+�M�*�P�n�(�t�p�&�\�īëk�«f���R��h���`���`���i���W�X���S���M���L���9�����C���(������������ϹR�Y�d�R�S�����S��F���{����y�5�x�_�u�k�u�d�t�s�]�R�r�F����٬p�C�o��/�m�!�B�b�j�ά�_��ɬH�1�����<������ �1������5���4����.����������(�������ޕ
���,����-�$���֡���"����؅���؉����Ѣ��ŏ������ٳֳ��ճ܃Ԕ���γ������ͳ��ԑ���������a�������Ԅ��<��l����0��Ċ��0�܌�����$���$����h���0���l�$���D������@��P�����P�x�����ԙ������X�̜�(�ĝ���̟`��\�x���������p��›Ù��ǚ����ג����������������פ��ƒ�����������������������â��������ǂ������������
�������������
���	����������~�d��e�{��z���r�F���5���j���l�c���c�s���[���T��h�r��W�X��R��Q��>��/��A��U��V��R��Q��P�$���?~����D�����7��@�>��ܬ��;��جި׬'��׬*�u�ڨ֨s�بr��q��˨ͨɣm�l�k�ʨǨ܇h�����f���ס�c�b��a���`���_���^�����\�i�Ԧ\��[���Z��~Y�������W��V�|�U�v�T�����T�m�S��k��}�����n��������k�����p��g�C��8�6�<���h�߭2�_�ݭu�ܭ3�-�*�:�׭,�O�9�a�`�(�ѭ �h���Чέ�ͭ,�̭[�˭C���ȭ��6�ŭ.��í���������������������/������~���������ٞ������ń��Q�q��Q�R���h�R��{����|���/������7���������y�����-���,���ԩ,�-�W�˰���˰4�ʰ?��˰��ʰi�
�h���$�h�i�������H��Z���h��6�Z��5�3�4�����Z0�1���.���$�-�5�}+��{+�'��&�K�(��#�!��� ����{�&����G����0��{��ؐތȱ�����������Ȗۋ����ǘ
�������������Ɇś�{����������ɏ����������8��������|���љ��Ҁ����ؑƕ�������}����z���w�ӗ�����}��Ɔ���������qŅ�������������������������}t����������������~����y|��{��z�P�x�߱a�w�b�ұu�4�t�ͱc�̱|
���˱̱O�P�̱k�ԋӫΑҫg��yӖ�|��ͫ՗̫�˫Ƌ��Ԍ���ƫ�ūU���d���ǂ������N������������z����C�����?���=�����;��~:�����8���7���6������������0�������-�Zx��ԭ��+���*�p�|�n�T�q{��$�V�[�_�!��� ���d���yy���N~O���{�}�X�c�p��y��t��s�l�V�]������Y���`�
�Q���\���N�e���W���S�x���*���=���;���������������
���W�L�������������"����{��#{�����}��ܽ�������������������ׇ���x��������ߗ������������~�ނ����{�‹z���y���x���w��|��z��x��{���w���k����|����J�
�Y��P���|
�`~	�V�h�{��^��}�}�(��Qw�+�����#�����w��������)�����&���������(x������������_���������ݎ����Ů̄������њُ�������(���H�(�)�ȴ5�&|j�{�l�0�g�j�a�DQ|%�\�t�ZvA�r���]�4� ��B���
����*����+�����%�A����0�H|�6{���Ox������g�����}��ϱ��α��͋˱���|ˏ����ȧ޼����<���/���.��w-���,�����,�-�v�t�+�O�*�4�)�L�C|��,�U�+vL��E�~{E�C��E��xv>��n{-���<�O��9�L�N~7���5�bw��3���[�1�]�0�8��D�A�����������o�4�����=�����=�>���Ĵ>�ݶx�0�]�9�bw��׶9vB�b�<�a�R�`� �P�_�V�\�5�ش]�c�Ƕ1�Z�W�~X�¶W�>wT���
�R�U�Q���O�
�N����L��K�8�J�;�I���H�}�����������}��������w�8���������������������{��������������ߺ��ٺ��պ�������˚��0�˺/�ź.�º-���,���+���*�o�)����|'���l�'����~}�z�z�"�{�y��w��b��t��J����=�̶�����$���[���8�[�\����L�����^�G�E�d���)�E���C��B��s@��?��>��:�%��8�C�7�ݸ6�ܸ5�ڸ4��Ѹ2�͸����͸.�,�ȸ*�̸��ʸsɸ��Ǹ�Ƹ��ĸT����T�U��X�U��M�l�������������������4�Ʉ��||��̓/�����-�����'���&�}�{�k�#���y�z�x���xv��z�����t��~s��vr�b�q��p����n��k�
�j�\��h��g��c�jz�a�b���,�]�����3�1��(�����Y�U��S��M���D��C��D����3���.���%������U������z�������̯��z��І��˃��|��z�y�x��w���u���t��s��q���p���0�p�q������un���m��xl���k���j�ʉi�̶h�ög���f���������p������ĺ�������Z�����Ur�L�*���(�W�'��&��X�xD��Bx6��oi]�x��p�5`���̦x�ȧ���`�t�����̩���@�`�x�0����H�\�̭��D�دt������@�T���4�����,�����д0��d�Ķ�0�D�\�x��P�d�x����� ���(���D�p���Ļ�p̻Ļ�pؼ��ؼ�(�p��(:)���:)�)���)�p(��)~*E�8�~* +��L� +�p`� +�+��p��+dt���dt�p��dtuM���u�u�����u�pн�uJv���Jv�v���v�p��v�wU���w0x��,�0x�p@�0xq��P�qr�d���|��������Q���QR����R���о������������1���12<Znx�yq]�$�q+COTV:���T����Y�mop�Y��������MiY2tfYeYdYbY`Y_Y#���_Y2t^Y3t\Y[Ye���p�7��� �0�D�X�h�|�������Ƚؽ���$�8�H�\�t�������Ⱦܾ���L�|���������[YgbZYmq��ZYbYY���YYbXY+��XY�aWY�aVYm���VY+bRY*bQY)bOY&bNY bKYbIYbFY����p�9FY	�DY�������l���2Y	(Y	$Y	YY3����p(:Y��u���D�X�x��pL:�Xkj��X��������\�d��������0���8��pLG|��p����;����p��m���P�\�h�t��������������������������(�4�@�L�X�d�p�|����������L���9�`����м����t����������09	
��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0909��	

 !"#$%&'()*+,-./0123444444444444444444444444444444444444444444444444444444444444444444444444444��09090909090909090909090909090909��	

                     090909��	

0909��090909090909��	
























0�			



  !!!!!!"##########$$$$$$$%&'(()***+,---.////0001233455567889:::;<===>?@AAAAAAABBCCCCCDDEFGGHHHIJKLMNOOOOOPPQQQQQQRSTUUVWXXYYZZ[\\\\]^^^___`abcddeefffghhii��	


��	









09��09��	








09��	





































































��0�	



 !!!"##$%%%&'((((((((((()*++++,,,---./////0000122222222333333444444444555667777889999:::::::::::::::::::::;<==>>>>>???????@0909��	
0�				







  !!""##$$$$%%&'((()*+++++,,-...//0001234456666660909��	



































































































09��																																																																																										0�	

 !!""#$$###$%%&&&'())))**++++++++++,-.....///////00111111123333444555555555566677789::::;<<<=>>>>>>????@@@@@@@@@@@AAAAAAAABBBCCCCDEEEEF0�			










  !""#####""$%%&''()****+++++++,,,,---./////000112344455678999:;<=>???@ABBCDEFFGHIJJKKLMNNNNOPQQQQQRSTUUUUUUUUVWWXXYZ[\\\\]^_``abbbb0�	


 !"###$$$$%&'())*****++++,,,,,----..//0111111223455666788999::;<<<<<<<=========>?@ABCDDDDDEEEFFGGGHIIIIIJKLMNOOPPQRSSSSSTUUUU0�		




    !!!!!!!!!!!!!"""""""""##$$%&''''''())**+++,,---./00000000�		


 !"###$%%%&&&&&&&&&'''''''(())*++,,-...////////01111222334456667778999:::;;;<<<<=>>?????@@@@@AAAABBBBBBBB0�					

















 !!"""""#$$$$%%&''(((()*+,--../0�	

















  !!!!!!!"""####$$%&'''''())***++++++++++++,---./00111123333444556678889999999:;<<<<<===>>>>>??@@@@@@@@@@AAAABBBBBB0�							




















 !!""""""""#######0�			


         !""##$$$$$%&&&&&&&''())*++,,,,-../01222234555566667788899::;;<<<===>>>>?@ABBBBBBBCDDDDDDDEEEEFGGGGGHHHIIJJKLLLLLMMMMM0�	







     !!!!!!!!""""""""##$$$$$$$$$$$%%&'''''''''''())****+++++++++++++,,,,,,,,,,,,,,,,,,,,,,---...0�	






  !!!!!!!!!!!!!!!"#$%&&&'(()))*+,-..../////000001222233333330�	


    !!!"#$$%&&'((()*+++,-.../00122333344444456677777789999:::::;;<<=>>>???@@AABBCCDEEFFFGGHHIJ0�			




    !"###$%&&''())*+,---..////////000111112223345677777899:;;<<<<<====>???@@@@@AAAABBBBCCDEEEFFFFFFFFFFFFFFFFFFFGGGGGGG0�				




  !"""#$%%%%&'(((())*****+,,,-0�		




  !!"##$%&''''())))****++,,,,---.//01112233333344555567789999::::::::;<<<=>>>??@@@@AABBBBCDDDDEFGHHHIJJJJJJJKLMNOPPQQRSTUU0�	




 !""#$$$$$$$%&&&'''''(((((((()***++++++++++,,,,,,,-./////////00112222333334444556777789:;;;<==>>>>>>>?@AAAABB0�					








			





               !!!"""#$$$%&''())*+,-.////////001112333345566677777777899::0�	



 !!!!!"""#$$%%%&&&'(())))****++++,,,,,---------...../////0000111122222222222222222222222222344444444556666667889::;<<<0�	






 !"""""#$%%&&'())))****+,-.../01234456666666678888888888999:;<==>>>??@@ABBBBBBBBCDDDDEFGHIIJJJJJKKKLLLLLLLMMMMMMMNNNOOPQRSTUVVVVVV0�								





 !!!!"""#####$%&''''''''''''((())))))))**+++,,,,---.//0000000000000000011223340�			



    !!!!!!!!!!"##########$$$$$$$$$$$$%%%%%%&''''''())))*+++,,,,,,,-----..////////000000010�									







0�		

























  !"#####$$$$$$$$%%%&&&'((()))*******+++++,-.///0123334566777788999:;;;;;<<<=>0�		



 !!  "#$$%&&'()**++,,---.///000012233333345566778999:;;<=>?@AAAABCDEEFFGGHHHIIIIJJKKKLLLLLMMNNOOPQQRSSSSSTUVWWXXYYZZ[[[[[[\\\]]]0�				



  !!!!!!!!""""""""####$%&&'''((((((((((())***************+++,--.....///////0001122334556666789::;<<<====>>>???@ABCCDDDEFGGGGGG0�										



       !!!""#############$$$$%%%%%&&&&&&&&&&&''(())))))*++++++,,,,,,,-----------.////0�														












 0�			











     !!!!""""###$$$$$%%%%%%%&&&''''''()))*********++++++++++,,,,,0�	

  !!!!!"#$$%%%%%%%%%%%%&&&&&&&&&&&&'((()*******+++,,,,-.////0110�	

 !"#$%&'()*+,,--./012344567889:;<=>?@ABCDEFGHIIJK0�	












0�0�0�0�	

 !"#$%&'()*+,-./012345555555667788779999::;;<<=>==?????????0�	

 !"#$%%%%%%%%%%%%%%%&'()*+,-./0123456789:;<=>?@ABCDEFGGGGGGGGGGGGG0�	

 !"#$%&'()*+,-./0123456789:;<====>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>?????????????????????0�		

                                                                            !!!!!!!!!!!!!!!0�	






0�				









     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0�	

0�											






















0�	








   !!!!!"""##$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%0�	


 !!  !"""####$%&&&'())*++,,--.../00122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222220�			










 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_P`abcdefghijklmnopqrstuvw0�			





   !"""########$$$$$$$$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdFefghijjklmnopqrstuvwxyz{|}~��0�						



 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx0�						


  !!!""!!!!!!!!!!!!########$$$$%%%%%%%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����0�		

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh5ijklmnopqrstuvwxyz{0�				


 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuv0�		




  !!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0�	

























 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE6FGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijk7lmnopqrs0�		









 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0�	

    !!!"""###$$%%%&&&&&&&&'''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������0�			







 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuv0�			




 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn0�		









 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqr0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqr0�	











  !!!!!!""#$%&'()*+,-./0123456789:;<:=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\2]^_`abcdefghijklmnopqrstuvwxyz{|}~0�	




            !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0�	



    !!!""#$%&'((()))))))))))))**+,,,-...../0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu1vwxyz{|}~�������������0�				

       !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[?\;]^_`abcdefghijklmnopqrstuvwxyz{|0�	


 !!""##$$$$$%%&'(()**++++++++++,,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������0�	







    !"###$%%%&&&'''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������0�	













 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz0�				















 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^^_`abcdefghijklmnopqrstuvrwxyz0�									






















 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrs0�			












 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq0�														



















 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn0�					



   !!""""#$%&'()*+,-./01234*56789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��0�		



   !!!!!!!"""""#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{p|}~0�		











 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvw0�		

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{0�				







 !"#$%&'()*+,-./0123456789:;<=>?@A)BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|0�		



























 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh0�				








 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkl0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab0�	

 !"#$$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`0�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefffff0�							









 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMMNOPQRSTUVWXY3Z[\]^_`abcdecfghijklm0�	

	 !"#$%&'()*+,-./01232456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ0�	



 !"##$%%&''()*+++,--.//011234567889:;<=>>???@A>ABBBCDEEFFGGHHIJKLMNOPQRSTUVWXYZ[\]^_`abcdedf0�			







            !!""#$%&'()*+,*-./*0-123456789:;<=>??@ABCDEFGHIJKLMNOPQRSTUVWXYZ[WW\]^_`_abcdefghijklmnopqrstuvwxyz{0�							














 !"#$%&'()*+,-./012345(67889:;+.<=>?@AB@CD8E9FDG=HIJHHK2ALMMGNOPQRSTUVWLX5YZ[\LY0�	

 !"#$%&!'()*+,,"-./012345667859:;<=>?1@ABCDBEFGHIJKLHMNOPQRST0�				


  !"#$%&'()*+,-&./0123456789:;<=>?@ABCBDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��0�	






 !"""##$$$%&'())**+,,-,./0123456789:;<=>?@ABCDDDEFGHDIJKLMNOPPQNELRSTUVWPXXYZ[\]^[[_``abcdeVfghijjklmnopqrstuvwx0�			



 !"#$%&'()*++,-./012332'45*677889:;<=>?@A=:*BCDEFBGHIFJKLMNOPPQRSTUVWXYZ[\]^_`abcdee0�			



 !"#$%&'()((*+(,-./01(23.4567889:;<=>?@ABCDEFEGHIJDKLMNOPQRSTUVWXYZ[\]^_`abccdefghijklmnopoq0�	

 !"#$%&'(()))*+,-./0123456789:;<=>?@ABCDEEFGHIJKLMNOKPQRSSTUV��0�	

 !"#$%&'()*+,,-.//0122223455566789:;<=>?@ABCCDEFGHIJKKLMJNOPQRSTQU0�	

	 !"#!$%&'()*+,-./01--234567879:;<=>?@ABCDEEFGHIJKLMNOPQRSTUVW0�	

 !"#$%&'()(*(+,-./01233.4566789:;<=>?@ABCDEFGHIJKLMNOPQRSTMUVWXXY0�	

 !"#$%&'()*(*%+,-./0123456789::;<=>>?@ABCCDEFFFGGHHIJKLMNOO0�		

    !!!!!"#$%&'()*+,-.-/012.345637489:;<=>=?@A0�	


 !"#$$$%&'()*+,-./012345-6789:;<=>?@=ABCDEFGHHIIJKLKMNOPQRHSTUVWMXYZ[\]^__`0�	









































 !""#$%&'()*+,-./01234567889:;<=>?@AB6CDEFGHAHIJKKLKMMNOOPQRSTTTUUVTUUVWXXYZ[0�	


   !"#$%&'(')*+,-./012344456789:;<=>?>@ABCDEFGHIJKLMNOOPQRRSTUVWWXXYZ[\]^^^____`abcdeefghijklm0�		


     !""#$%&'(')*+,-.///0123456789:;<=>?@ABCDEFDGHHHHIJKLMNOLPQRSTTUVWTXYZ[\]^_`abbcdeffghijklmnopqrst0�		


 !"""#$$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJDKLMNOPQRSTUVWXYZ[\]]^_`abbcdefghijklmnopq0�																																															
























 !"#$%&''()*''+++,-./,0123345-6789:;:<=>?<@ABCDEDFGHIJKLLMNOPNNQRSTUVWXXYZ[\0�	

 !"#$%%%&'((&&)*+,,,--././..0122222334566666667778889:9;;;<==>>?0�																																						




 !!!"##$%&&'((()**+$+++,-..///000012202233333333345556789:;<=>?@AB0�	



 !"#$""%&&'(((())*+,-.../011111112324567897::;<=>?@ABCDEFDGHIJKLMNOPQRSTL0�	

 !"#$%&'()*+,-.,/01/23414567879:;:<=>?@ABCDEFGHIJJJKLMNOPQRSTUVWXY0�		


 !"#$%&''()*+,- ./0(102/3456789:;<=;>?@AABCD9E?FGHIJKLMNO0�	







 !"#$%&'()*+,-./0123456789:;<<=>?@AABCDEFGHIJKLMNJOPQRGSTQUVWRXYZ[[\]^_S_`^a]bcdefgghijkilm0�								




 !""#$%&'()*+,-./01233456789:;<==>?@@ABCD%E2FGHIJKLMNOPQRSTUVWXYZ[\]^_`aab0�		

 !"##$%&&' ())$*)#+*,-./0/1234567118829:;<9=>?@ABCDEFGHIJKL0�	


 !"#$%&'()*+,----./0111223344444455555677888888889999::::;;0�	




 !"#$%&'%()*+*,,-./.0123456789:;<=>=?@ABCDEEFGHHIJKLMNNNONOPQORSTUVWXYYZ0�0�	

0�	


                                                                                              0�						






0�	



	





 !"##
$%#&'()
*+,-./0122334567889:::;<=======>8??????????????????????????????????????????????????????????????????????????????????????????????�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��	

 !"#$%&'()*+,-./0123456789:;<=>?@������		















����										
������				

     !""��	







������������																


��																		



������										


������	

��	





����������������																																										��������������������	



            ����������������������																						
������	

 !"#$%&'()*++,-./0123456789:;��	

    !""#$$$$$$%&'())))))))))*+��	

 !"#$%&'((()*+,----.///0��	

 !"#$$%&'()***+,-./01233345678��	

 !"#$%&'()*+,-.//��	

 !""#$$%&''()*+,,,,-)./0��	

 !"!#$%&&&&&'((((((((()��	

 !"#$%&&&&'()***+,��	



 !"#$��	

 !"#$��	




��	

��	







��	




























��	

 !"#$%&'()*+,-./01233��		

 !!"#$%&'()*+++,-.//��	

 !!"#$%&'()*+,-.��	

 !"#$%&'(()**+,-./01234��	



 !!!!!!!!!!"#$��	







 ��				



��	

          !"#$$%&��	

 !"#$%&'()**+,-./0123456788889��	




    !"""""""#$$$$%&&&'��	


 !"#$%&'()*+,-./0123455��	

 !"##$%&'()*+,-./01234456789:;<��	

 !"#$$%&'((��	

  !"#$%&'()*+++,--./012��	

 !"##$%&&&'())))))*+,-./��	

 !!!"####$%&'��	




 !!"#$%&��	

 !"#$%&'())*��	
	

  !"#$%%%%%&"'��	

  !"#$$$%��	

��															







��	

  !"#��	








 !��	

 ! "#$%&&&'(()*+++,-...��	

   !"#$$$%&&&&&&&��		

 !"##$%%��	



��	



��			

��														

��	

 !"#$%%&''()*+,-...��	

 !"#$%&'''())��	

 !!"#$$%&&&&&&'()**+,��	

 ��		







 !!!!!"""��				

��	


��	


��	

��	

 !"#$%&&&&'(()**��	

 !"#$%%%&'(((()**+,-./01222345��	




 !""#��	




    !""""#$$%&&&'()*+,-.��	

 !"""""""#$%%%%&��		

 !"#$$$$%&'��						


��					




 ��		


��	







��	



 !"��	



 !!"#####$%&&''())��	


 ��	



 !!!!!"#####$%&'()*++++,-��		












��	

 !""#$%&'((((((()*+,---��	

   !"#$%&'''��	

  !"######$%&''''()**��	

 !"#$$%&&&'(()**+,-./��	


 !"#$$$%&&&&&'((((()*++,��		


 !"##$%%&'(()*+,-.��	




 !"#$%&'()))*++,-...��			

  !"#$%%&'(((((��	

��	


��	

��	

















��	

 !"#$$$$%&''()))))*+,��	


 !"#$$%&&'(()**+,-.��	

    !"""#$$$%&'()*+��	

 !"#$%&''()*+,-./012344445678��	


   !""#$$$$$$%&''())��	

  !""""#$%%&'((((��	

 !"#$%&''()**+,-./0123��	

 !"#$%%%%&'(��		

     !""#$%��	

��	

 !"###��	




��	

��	

 !"#$$%&&&&&&&&��	

 !"#$$$$$$$$%&&'())��	

   !""""#$%%&'''''��	

 !"#$$%&%'''''()*+��	


   !"#$%%&'''()��				

��	






��	


 !"#$$%&''''())*++��	


 !""#$%&'()*+,-,,,,)./0��	




 !"#$%&'(()*+,-.///////��	



 !"#$%%%%%%%%&'(��	

 !""#$%&��	

 !"########$%&'((((((((��			










��	




 !"""��	

��		

��	



 !!!"##!!��	






��						




��	

��					











��							



��	












��	




��	

 !!!"###$%%��	

   !"#$%&'())*++++,--��	





 !"#$%&''()))*+,��	


 !"#$%&'(()&*++++,-./0123��			

 !!" #$%&'()**+,-./01��	

 !"#$$$%&'()*+��	

	  !"###$%&&&&'(()*+++,---��	

 !"##$%&&'(()**+,,,,,,-��	




  !"#$$$%&'()*+++��	

 !"##$%&$$'&()))))��	

��	



 !"##$%&'((��	

      !!!!"####$%%%%%%��			










 !��	



��	













��											

��	
��	

��			

 !"#$%&&��													

 !!!"##��	

��													





��			

��	




��	





��			

  !"""#$%%%&&��	

��	

 !"#$%&&'()*+,---��	

 !!"##$%&''''()��								

��		




   !""#$%%%%��	



��				

 !"""""#$$$��	













��	

��	

��	

 !"#$%&'())*+��	

 ��	

 !"#$%&''())*+,,-./0��	




 !" ####$%&&'(((()**+,,-��	



 !""#$$!%&''()))*+,-��	
	
��		


��	

 !"#$%&&&'())*+,-��	

 !"#$%%%��								




��		

 !"��	

��			

  !"""#$$%&'''()*+��	

��	


 !"####$%%%%&'��				

��	





��	



 !"#####��	














��	



 !"#$$$$$$$%&&'()**��	

 !"#$��	


��	




   !"#####$%%%%%%%%%%%&��	

��	



 !"#$%%&'$(((()*+,-./0��	


 !!"#$%&'())*+��	

��				





 !"��			
						

��						


��	

 !��	

��	











������������	

 !!"#$��	


 !"#$%&'()*++,--./01234556789��		








     !"#$%&'(((((��	

    !""""#$��					


 ��	

 !!!!!!!"#$$$��	

 !""""""#$%&'()*++,-./0��	

��	






   !"#$%&'()*+),,-.."/0123��	

 !"#$%&'()*+,-.//��	


 !"#####$%��			

  !""""#$%&&'(��	

��	

��		

 !"#$%&'()**)+��			

 !��	

 !"#$%&'()*++,-.///012��	



    !"""#$%&&'(()*+*,----��	


 !"#$%&'()*+,-..��					

 !!!!!!!"#$$%&''��	


 !"#$%&'((��	




 !"#####$$%%%&''��	

	  ��	


��	

 ��	


��	


��	






��											

��	







��	














��	





��					






 !!!!!��	

 !!"#$$$%&&&&'(��	




    !""#$$%&&%'''())*+��				

 ��	



  !""��	




��	




��	








 !!!"#$��		




 !!!��	



 !""#$#%��					


��	






















����	




   !"""""""     ��������������		

 ��	

 !"#$$%&'()*+,-./0123456789:��	

 !"#$$%&''()**+,,-........��	








��	







����	

 !"#$��	

 !"#$%&&&'()**+,,-./0122222222��					











��	




   !"#$%%&'%(&))��	




  !" ��	





 ��	



������	

��	



    !!"#$$$$%&''''())*+++,-.��	





 !"#$%&'()**+,,,-./000122��	

 !"###$%%%%%%$&'((((())*+,,-./01��	


 !!!!!!!"#$��					

 !"#$%&'()(*+,-.//01��	





 !!!!"###$%%%%&'(��	

��	

 !"#$%&$'()*+,-...//0��	

��	










����������������������	

  !  "#$%&'''''())*+��							



 !"###$%&'()**+,��		

 !!"#$%&''() ***+,-./00��	

        !����	

��	




 !!"#$%&'(((()*+,-��	

 !"#$$$$$%&'()*++++++++��	



  !"��	


 !""""#$��			



 !!!!"#��	


��	





��					

����	

��	


 !""#$$$$$$$$$$$$$$$$$$$$$$$$��		







����	






��	

������	

��	


 !"""""""#$%%%%&'()'*+,,,��	





��	











��	



����������	

��	



��������	

��	

 !!!!!!!!!!"#��	









��	



 !"��	



����	

��������������������������������			��				��													











��				







����	

 !"##############################��������						




��	��	



















������	


�����	

 !"#$%&'()***+,-.///0;D(]��`X]���8^����^���h_����_����`���zRx�$�\��0FJw�?:*3$"D�\�� \�]��op�]�����^��v�_�����_��$HWGNU��`��"`
f
x��v��
�p `	f
`
D��v��
�p��y���
4
��"��"���o`��
��"0P��	���oh���o�oP���o�"��GA$3a1�A
GA$3p1094�4
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�GA+GLIBCXX_ASSERTIONSgb18030.so-2.7.8-141.el8.x86_64.debug�?��7zXZ�ִF!t/���A]?�E�h=��ڊ�2N�	�G��m�D������N>�J�q��+#��`��k��{�B��$���2n�g�߬�������Ȇ��>~b4�F����ւ�ӗ�ND��v�܏����T�������>զ��I��&f��%�b��bpRb(ޟ�H��E+B0���ʂ��_U	��§Yў�I��[�Hk��+���B�R|t<yN-���SY�
��e�[N��7�c��	��Diܳ��(�|�йk���\��>�BO�7V��K��зQf�w}��i5���`��⽇���ڦ��.�߄\����{`��
I>���q�*��㼻��ͅ`�xtLT�O��ώ�7Z���#����B��~���VT=�7�ȵ�!r��P�I\M��T,��
�����G*�"M�!�i'V�)����MECw��&�n��Il;
�̗D�'�8z�M.��W+��;<�̢s�[���������<š*����gOe�F>�)��!�Yk�yU�z��(s���Hw���b�6N5Ad �)�%W����2����-z)��}�H��]��w�A��dzw��~XSs/'#=
���Ȳ�r�5�-��y�%зQLq��_b�G:*]�v�N�/7�)o�6�	��9>Tq�m6���t7^�:�ߚ4���֟9�t=e������o4DU��-��i�=[3*�+Z�w�W	���c'�DJ��-���,8����RR���UP�O��̑�O}�[�~���6&Ueq��)�Tvb<�料����3�7jM
nYn�p�#�D���d��K�#�1�^���
h�|�����d��������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T���^BPP0h��c��0n�� w��D}4
4

�`
`
� �x�x�D����������� ���"�����"�����"��` ��"����"� ��"�(�(�"(��0�b(�D
l�,����+PKLH[?�7����lib64/ruby/enc/trans/gbk.sonuȯ��ELF>�@��@8	@���� ����"��"�� ��"�"��888$$p�p�p�  S�tdp�p�p�  P�td������$$Q�tdR�td����"��"ppGNU���7�•�-�·� [��P 	BE���|͸U��qX ^ , F"�(�"�0�"UP$�(�"__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_gbkrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	���"@��"��"��"��"���"���"`���"�`�"�h�"�x�"`���"���"��"��"��"�" �"��H��H���"H��t��H����5��"�%��"��h�������h���������%��"D���%��"DH�=��"H���"H9�tH�6�"H��t	�����H�=a�"H�5Z�"H)�H��H��H��?H�H�tH��"H��t��fD�����=�"u+UH�=��"H��tH�=~�"�Y����d������"]������w������H��H�=�"����H�=U�"H�������H��H���UTF-8GBK丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪乫乬乭乮乯乲乴乵乶乷乸乹乺乻乼乽乿亀亁亂亃亄亅亇亊亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂伃伄伅伆伇伈伋伌伒伓伔伕伖伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾伿佀佁佂佄佅佇佈佉佊佋佌佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢侤侫侭侰侱侲侳侴侶侷侸侹侺侻侼侽侾俀俁係俆俇俈俉俋俌俍俒俓俔俕俖俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿倀倁倂倃倄倅倆倇倈倉倊個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯倰倱倲倳倴倵倶倷倸倹倻倽倿偀偁偂偄偅偆偉偊偋偍偐偑偒偓偔偖偗偘偙偛偝偞偟偠偡偢偣偤偦偧偨偩偪偫偭偮偯偰偱偲偳側偵偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎傏傐傑傒傓傔傕傖傗傘備傚傛傜傝傞傟傠傡傢傤傦傪傫傭傮傯傰傱傳傴債傶傷傸傹傼傽傾傿僀僁僂僃僄僅僆僇僈僉僊僋僌働僎僐僑僒僓僔僕僗僘僙僛僜僝僞僟僠僡僢僣僤僥僨僩僪僫僯僰僱僲僴僶僷僸價僺僼僽僾僿儀儁儂儃億儅儈儉儊儌儍儎儏儐儑儓儔儕儖儗儘儙儚儛儜儝儞償儠儢儣儤儥儦儧儨儩優儫儬儭儮儯儰儱儲儳儴儵儶儷儸儹儺儻儼儽儾兂兇兊兌兎兏児兒兓兗兘兙兛兝兞兟兠兡兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦冧冨冩冪冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒凓凔凕凖凗凘凙凚凜凞凟凢凣凥処凧凨凩凪凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄剅剆則剈剉剋剎剏剒剓剕剗剘剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳剴創剶剷剸剹剺剻剼剾劀劃劄劅劆劇劉劊劋劌劍劎劏劑劒劔劕劖劗劘劙劚劜劤劥劦劧劮劯劰労劵劶劷劸効劺劻劼劽勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務勚勛勜勝勞勠勡勢勣勥勦勧勨勩勪勫勬勭勮勯勱勲勳勴勵勶勷勸勻勼勽匁匂匃匄匇匉匊匋匌匎	匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯匰匱匲匳匴匵匶匷匸匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏厐厑厒厓厔厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯厰厱厲厳厴厵厷厸厹厺厼厽厾叀參叄叅叆叇収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝呞呟呠呡呣呥呧呩呪呫呬呭呮呯呰呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠員哢哣哤哫哬哯哰哱哴哵哶哷哸哹哻哾唀唂唃唄唅唈唊唋唌唍唎唒唓唕唖唗唘唙唚唜唝唞唟唡唥唦唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋啌啍啎問啑啒啓啔啗啘啙啚啛啝啞啟啠啢啣啨啩啫啯啰啱啲啳啴啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠喡喢喣喤喥喦喨喩喪喫喬喭單喯喰喲喴営喸喺喼喿嗀嗁嗂嗃嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗嗘嗙嗚嗛嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸嗹嗺嗻嗼嗿嘂嘃嘄嘅嘆嘇嘊嘋嘍嘐嘑嘒嘓嘔嘕嘖嘗嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀噁噂噃噄噅噆噇噈噉噊噋噏噐噑噒噓噕噖噚噛噝噞噟噠噡噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽噾噿嚀嚁嚂嚃嚄嚇嚈嚉嚊嚋嚌嚍嚐嚑嚒嚔嚕嚖嚗嚘嚙嚚嚛嚜嚝嚞嚟嚠嚡嚢嚤嚥嚦嚧嚨嚩嚪嚫嚬嚭嚮嚰嚱嚲嚳嚴嚵嚶嚸嚹嚺嚻嚽嚾嚿囀囁囂囃囄囅囆囇囈囉囋囌囍囎囏囐囑囒囓囕囖囘囙囜団囥囦囧囨囩囪囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國圌圍圎圏圐圑園圓圔圕圖圗團圙圚圛圝圞圠圡圢圤圥圦圧圫圱圲圴圵圶圷圸圼圽圿坁坃坄坅坆坈坉坋坒坓坔坕坖坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀垁垇垈垉垊垍垎垏垐垑垔垕垖垗垘垙垚垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹垺垻垼垽垾垿埀埁埄埅埆埇埈埉埊埌埍埐埑埓埖埗埛埜埞埡埢埣埥埦埧埨埩埪埫埬埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥堦堧堨堩堫堬堭堮堯報堲堳場堶堷堸堹堺堻堼堽堾堿塀塁塂塃塅塆塇塈塉塊塋塎塏塐塒塓塕塖塗塙塚塛塜塝塟塠塡塢塣塤塦塧塨塩塪塭塮塯塰塱塲塳塴塵塶塷塸塹塺塻塼塽塿墂墄墆墇墈墊墋墌墍墎墏墐墑墔墕墖増墘墛墜墝墠墡墢墣墤墥墦墧墪墫墬墭墮墯墰墱墲墳墴墵墶墷墸墹墺墻墽墾墿壀壂壃壄壆壇壈壉壊壋壌壍壎壏壐壒壓壔壖壗壘壙壚壛壜壝壞壟壠壡壢壣壥壦壧壨壩壪壭壯壱売壴壵壷壸壺壻壼壽壾壿夀夁夃夅夆夈変夊夋夌夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻 夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛奜奝奞奟奡奣奤奦奧奨奩奪奫奬奭奮奯奰奱奲奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦妧妬妭妰妱妳妴妵妶妷妸妺妼妽妿姀姁姂姃姄姅姇姈姉姌姍姎姏姕姖姙姛姞姟姠姡姢姤姦姧姩姪姫姭姮姯姰姱姲姳姴姵姶姷姸姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪娫娬娭娮娯娰娳娵娷娸娹娺娻娽娾娿婁婂婃婄婅婇婈婋婌婍婎婏婐婑婒婓婔婖婗婘婙婛婜婝婞婟婠$婡婣婤婥婦婨婩婫婬婭婮婯婰婱婲婳婸婹婻婼婽婾媀媁媂媃媄媅媆媇媈媉媊媋媌媍媎媏媐媑媓媔媕媖媗媘媙媜媝媞媟媠媡媢媣媤媥媦媧媨媩媫媬媭媮媯媰媱媴媶媷媹媺媻媼媽媿嫀嫃嫄嫅嫆嫇嫈嫊嫋嫍嫎嫏嫐嫑嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬嫭嫮嫯嫰嫲嫳嫴嫵嫶嫷嫸嫹嫺嫻嫼嫽嫾嫿嬀嬁嬂嬃嬄嬅嬆嬇嬈嬊嬋嬌嬍嬎嬏嬐嬑嬒嬓嬔嬕嬘嬙嬚嬛嬜嬝嬞嬟嬠嬡嬢嬣嬤嬥嬦嬧嬨嬩嬪嬫嬬嬭嬮嬯嬰嬱嬳嬵嬶嬸嬹嬺嬻嬼嬽嬾嬿孁孂孃孄孅孆孇(孈孉孊孋孌孍孎孏孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏寑寔寕寖寗寘寙寚寛寜寠寢寣實寧審寪寫寬寭寯寱寲寳寴寵寶寷寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧屨屩屪屫屬屭屰屲屳屴屵屶屷屸屻屼屽屾岀岃岄岅岆岇岉岊岋岎岏岒岓岕岝岞岟岠岡岤岥岦岧岨,!岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅峆峇峈峉峊峌峍峎峏峐峑峓峔峕峖峗峘峚峛峜峝峞峟峠峢峣峧峩峫峬峮峯峱峲峳峴峵島峷峸峹峺峼峽峾峿崀崁崄崅崈崉崊崋崌崍崏崐崑崒崓崕崗崘崙崚崜崝崟崠崡崢崣崥崨崪崫崬崯崰崱崲崳崵崶崷崸崹崺崻崼崿嵀嵁嵂嵃嵄嵅嵆嵈嵉嵍嵎嵏嵐嵑嵒嵓嵔嵕嵖嵗嵙嵚嵜嵞嵟嵠嵡嵢嵣嵤嵥嵦嵧嵨嵪嵭嵮嵰嵱嵲嵳嵵嵶嵷嵸嵹嵺嵻嵼嵽嵾嵿嶀嶁嶃嶄嶅嶆嶇嶈嶉嶊嶋嶌嶍嶎嶏嶐嶑嶒嶓嶔嶕嶖嶗嶘嶚嶛嶜嶞嶟嶠0$嶡嶢嶣嶤嶥嶦嶧嶨嶩嶪嶫嶬嶭嶮嶯嶰嶱嶲嶳嶴嶵嶶嶸嶹嶺嶻嶼嶽嶾嶿巀巁巂巃巄巆巇巈巉巊巋巌巎巏巐巑巒巓巔巕巖巗巘巙巚巜巟巠巣巤巪巬巭巰巵巶巸巹巺巻巼巿帀帄帇帉帊帋帍帎帒帓帗帞帟帠帡帢帣帤帥帨帩帪師帬帯帰帲帳帴帵帶帹帺帾帿幀幁幃幆幇幈幉幊幋幍幎幏幐幑幒幓幖幗幘幙幚幜幝幟幠幣幤幥幦幧幨幩幪幫幬幭幮幯幰幱幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨庩庪庫庬庮庯庰庱庲庴庺庻庼庽庿廀廁廂廃廄廅4'廆廇廈廋廌廍廎廏廐廔廕廗廘廙廚廜廝廞廟廠廡廢廣廤廥廦廧廩廫廬廭廮廯廰廱廲廳廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤弨弫弬弮弰弲弳弴張弶強弸弻弽弾弿彁彂彃彄彅彆彇彈彉彊彋彌彍彎彏彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢徣徤徥徦徧復徫徬徯徰徱徲徳徴徶徸徹徺徻徾徿忀忁忂忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇8*怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰怱怲怳怴怶怷怸怹怺怽怾恀恄恅恆恇恈恉恊恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽悾悿惀惁惂惃惄惇惈惉惌惍惎惏惐惒惓惔惖惗惙惛惞惡惢惣惤惥惪惱惲惵惷惸惻惼惽惾惿愂愃愄愅愇愊愋愌愐愑愒愓愔愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬愭愮愯愰愱愲愳愴愵愶愷愸愹愺愻愼愽愾慀慁慂慃慄慅慆<-慇慉態慍慏慐慒慓慔慖慗慘慙慚慛慜慞慟慠慡慣慤慥慦慩慪慫慬慭慮慯慱慲慳慴慶慸慹慺慻慼慽慾慿憀憁憂憃憄憅憆憇憈憉憊憌憍憏憐憑憒憓憕憖憗憘憙憚憛憜憞憟憠憡憢憣憤憥憦憪憫憭憮憯憰憱憲憳憴憵憶憸憹憺憻憼憽憿懀懁懃懄懅懆懇應懌懍懎懏懐懓懕懖懗懘懙懚懛懜懝懞懟懠懡懢懣懤懥懧懨懩懪懫懬懭懮懯懰懱懲懳懴懶懷懸懹懺懻懼懽懾戀戁戂戃戄戅戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸戹戺戻戼扂扄扅扆扊@0扏扐払扖扗扙扚扜扝扞扟扠扡扢扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋抌抍抎抏抐抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳挴挵挶挷挸挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖捗捘捙捚捛捜捝捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙掚掛掜掝掞掟採掤掦掫掯掱掲掵掶掹掻掽掿揀D3揁揂揃揅揇揈揊揋揌揑揓揔揕揗揘揙揚換揜揝揟揢揤揥揦揧揨揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆搇搈搉搊損搎搑搒搕搖搗搘搙搚搝搟搢搣搤搥搧搨搩搫搮搯搰搱搲搳搵搶搷搸搹搻搼搾摀摂摃摉摋摌摍摎摏摐摑摓摕摖摗摙摚摛摜摝摟摠摡摢摣摤摥摦摨摪摫摬摮摯摰摱摲摳摴摵摶摷摻摼摽摾摿撀撁撃撆撈撉撊撋撌撍撎撏撐撓撔撗撘撚撛撜撝撟撠撡撢撣撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆擇擈擉擊擋擌擏擑擓擔擕擖擙據H6擛擜擝擟擠擡擣擥擧擨擩擪擫擬擭擮擯擰擱擲擳擴擵擶擷擸擹擺擻擼擽擾擿攁攂攃攄攅攆攇攈攊攋攌攍攎攏攐攑攓攔攕攖攗攙攚攛攜攝攞攟攠攡攢攣攤攦攧攨攩攪攬攭攰攱攲攳攷攺攼攽敀敁敂敃敄敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數敹敺敻敼敽敾敿斀斁斂斃斄斅斆斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱斲斳斴斵斶斷斸斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘旙旚旛旜旝旞旟旡旣旤旪旫L9旲旳旴旵旸旹旻旼旽旾旿昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷昸昹昺昻昽昿晀時晄晅晆晇晈晉晊晍晎晐晑晘晙晛晜晝晞晠晢晣晥晧晩晪晫晬晭晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘暙暚暛暜暞暟暠暡暢暣暤暥暦暩暪暫暬暭暯暰暱暲暳暵暶暷暸暺暻暼暽暿曀曁曂曃曄曅曆曇曈曉曊曋曌曍曎曏曐曑曒曓曔曕曖曗曘曚曞曟曠曡曢曣曤曥曧曨曪曫曬曭曮曯曱曵曶書曺曻曽朁朂會P<朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠朡朢朣朤朥朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗杘杙杚杛杝杢杣杤杦杧杫杬杮東杴杶杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹枺枻枼枽枾枿柀柂柅柆柇柈柉柊柋柌柍柎柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵柶柷柸柹柺査柼柾栁栂栃栄栆栍栐栒栔栕栘栙栚栛栜栞栟栠栢栣栤栥栦栧栨栫栬栭栮栯栰栱栴栵栶栺栻栿桇桋桍桏桒桖桗桘桙桚桛T?桜桝桞桟桪桬桭桮桯桰桱桲桳桵桸桹桺桻桼桽桾桿梀梂梄梇梈梉梊梋梌梍梎梐梑梒梔梕梖梘梙梚梛梜條梞梟梠梡梣梤梥梩梪梫梬梮梱梲梴梶梷梸梹梺梻梼梽梾梿棁棃棄棅棆棇棈棊棌棎棏棐棑棓棔棖棗棙棛棜棝棞棟棡棢棤棥棦棧棨棩棪棫棬棭棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆椇椈椉椊椌椏椑椓椔椕椖椗椘椙椚椛検椝椞椡椢椣椥椦椧椨椩椪椫椬椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃楄楅楆楇楈楉楊楋楌楍楎楏楐楑楒楓楕楖楘楙楛楜楟XB楡楢楤楥楧楨楩楪楬業楯楰楲楳楴極楶楺楻楽楾楿榁榃榅榊榋榌榎榏榐榑榒榓榖榗榙榚榝榞榟榠榡榢榣榤榥榦榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽榾榿槀槂槃槄槅槆槇槈槉構槍槏槑槒槓槕槖槗様槙槚槜槝槞槡槢槣槤槥槦槧槨槩槪槫槬槮槯槰槱槳槴槵槶槷槸槹槺槻槼槾樀樁樂樃樄樅樆樇樈樉樋樌樍樎樏樐樑樒樓樔樕樖標樚樛樜樝樞樠樢樣樤樥樦樧権樫樬樭樮樰樲樳樴樶樷樸樹樺樻樼樿橀橁橂橃橅橆橈橉橊橋橌橍橎橏橑橒橓橔橕橖橗橚\E橜橝橞機橠橢橣橤橦橧橨橩橪橫橬橭橮橯橰橲橳橴橵橶橷橸橺橻橽橾橿檁檂檃檅檆檇檈檉檊檋檌檍檏檒檓檔檕檖檘檙檚檛檜檝檞檟檡檢檣檤檥檦檧檨檪檭檮檯檰檱檲檳檴檵檶檷檸檹檺檻檼檽檾檿櫀櫁櫂櫃櫄櫅櫆櫇櫈櫉櫊櫋櫌櫍櫎櫏櫐櫑櫒櫓櫔櫕櫖櫗櫘櫙櫚櫛櫜櫝櫞櫟櫠櫡櫢櫣櫤櫥櫦櫧櫨櫩櫪櫫櫬櫭櫮櫯櫰櫱櫲櫳櫴櫵櫶櫷櫸櫹櫺櫻櫼櫽櫾櫿欀欁欂欃欄欅欆欇欈欉權欋欌欍欎欏欐欑欒欓欔欕欖欗欘欙欚欛欜欝欞欟欥欦欨欩欪欫欬欭欮`H欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍歎歏歐歑歒歓歔歕歖歗歘歚歛歜歝歞歟歠歡歨歩歫歬歭歮歯歰歱歲歳歴歵歶歷歸歺歽歾歿殀殅殈殌殎殏殐殑殔殕殗殘殙殜殝殞殟殠殢殣殤殥殦殧殨殩殫殬殭殮殯殰殱殲殶殸殹殺殻殼殽殾毀毃毄毆毇毈毉毊毌毎毐毑毘毚毜毝毞毟毠毢毣毤毥毦毧毨毩毬毭毮毰毱毲毴毶毷毸毺毻毼毾毿氀氁氂氃氄氈氉氊氋氌氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋汌汍汎汏汑汒汓汖汘dK汙汚汢汣汥汦汧汫汬汭汮汯汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟洠洡洢洣洤洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽浾浿涀涁涃涄涆涇涊涋涍涏涐涒涖涗涘涙涚涜涢涥涬涭涰涱涳涴涶涷涹涺涻涼涽涾淁淂淃淈淉淊hN淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽淾淿渀渁渂渃渄渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵渶渷渹渻渼渽渾渿湀湁湂湅湆湇湈湉湊湋湌湏湐湑湒湕湗湙湚湜湝湞湠湡湢湣湤湥湦湧湨湩湪湬湭湯湰湱湲湳湴湵湶湷湸湹湺湻湼湽満溁溂溄溇溈溊溋溌溍溎溑溒溓溔溕準溗溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪滫滬滭滮滯lQ滰滱滲滳滵滶滷滸滺滻滼滽滾滿漀漁漃漄漅漇漈漊漋漌漍漎漐漑漒漖漗漘漙漚漛漜漝漞漟漡漢漣漥漦漧漨漬漮漰漲漴漵漷漸漹漺漻漼漽漿潀潁潂潃潄潅潈潉潊潌潎潏潐潑潒潓潔潕潖潗潙潚潛潝潟潠潡潣潤潥潧潨潩潪潫潬潯潰潱潳潵潶潷潹潻潽潾潿澀澁澂澃澅澆澇澊澋澏澐澑澒澓澔澕澖澗澘澙澚澛澝澞澟澠澢澣澤澥澦澨澩澪澫澬澭澮澯澰澱澲澴澵澷澸澺澻澼澽澾澿濁濃濄濅濆濇濈濊濋濌濍濎濏濐濓濔濕濖濗濘濙濚濛濜濝濟濢濣濤濥pT濦濧濨濩濪濫濬濭濰濱濲濳濴濵濶濷濸濹濺濻濼濽濾濿瀀瀁瀂瀃瀄瀅瀆瀇瀈瀉瀊瀋瀌瀍瀎瀏瀐瀒瀓瀔瀕瀖瀗瀘瀙瀜瀝瀞瀟瀠瀡瀢瀤瀥瀦瀧瀨瀩瀪瀫瀬瀭瀮瀯瀰瀱瀲瀳瀴瀶瀷瀸瀺瀻瀼瀽瀾瀿灀灁灂灃灄灅灆灇灈灉灊灋灍灎灐灑灒灓灔灕灖灗灘灙灚灛灜灝灟灠灡灢灣灤灥灦灧灨灩灪灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞炟炠炡炢炣炤炥炦炧炨炩炪炰炲炴炵炶為炾炿烄烅烆烇烉烋烌烍烎烏烐烑烒烓烔烕烖烗烚tW烜烝烞烠烡烢烣烥烪烮烰烱烲烳烴烵烶烸烺烻烼烾烿焀焁焂焃焄焅焆焇焈焋焌焍焎焏焑焒焔焗焛焜焝焞焟焠無焢焣焤焥焧焨焩焪焫焬焭焮焲焳焴焵焷焸焹焺焻焼焽焾焿煀煁煂煃煄煆煇煈煉煋煍煏煐煑煒煓煔煕煖煗煘煙煚煛煝煟煠煡煢煣煥煩煪煫煬煭煯煰煱煴煵煶煷煹煻煼煾煿熀熁熂熃熅熆熇熈熉熋熌熍熎熐熑熒熓熕熖熗熚熛熜熝熞熡熢熣熤熥熦熧熩熪熫熭熮熯熰熱熲熴熶熷熸熺熻熼熽熾熿燀燁燂燄燅燆燇燈燉燊燋燌燍燏燐燑燒燓xZ燖燗燘燙燚燛燜燝燞營燡燢燣燤燦燨燩燪燫燬燭燯燰燱燲燳燴燵燶燷燸燺燻燼燽燾燿爀爁爂爃爄爅爇爈爉爊爋爌爍爎爏爐爑爒爓爔爕爖爗爘爙爚爛爜爞爟爠爡爢爣爤爥爦爧爩爫爭爮爯爲爳爴爺爼爾牀牁牂牃牄牅牆牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅犆犇犈犉犌犎犐犑犓犔犕犖犗犘犙犚犛犜犝犞犠犡犢犣犤犥犦犧犨犩犪犫犮犱犲犳犵犺犻犼犽犾犿狀狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛|]	 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈〉《》「」『』〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓��`	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂⒃⒄⒅⒆⒇①②③④⑤⑥⑦⑧⑨⑩㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ�b	!"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|} ̄�`c	ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをんC�d	ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶDf	ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω︵︶︹︺︿﹀︽︾﹁﹂﹃﹄︻︼︷︸︱︳︴��g	АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя��hˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═║╒╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡╢╣╤╥╦╧╨╩╪╫╬╭╮╯╰╱╲╳▁▂▃▄▅▆▇█▉▊▋▌▍▎▏▓▔▕▼▽◢◣◤◥☉⊕〒〝〞	āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑńňɡㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩG�i〡〢〣〤〥〦〧〨〩㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦	℡㈱‐ー゛゜ヽヾ〆ゝゞ﹉﹊﹋﹌﹍﹎﹏﹐﹑﹒﹔﹕﹖﹗﹙﹚﹛﹜﹝﹞﹟﹠﹡﹢﹣﹤﹥﹦﹨﹩﹪﹫〇─━│┃┄┅┆┇┈┉┊┋┌┍┎┏┐┑┒┓└┕┖┗┘┙┚┛├┝┞┟┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿╀╁╂╃╄╅╆╇╈╉╊╋Pl狜狝狟狢狣狤狥狦狧狪狫狵狶狹狽狾狿猀猂猄猅猆猇猈猉猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀獁獂獃獄獅獆獇獈獉獊獋獌獎獏獑獓獔獕獖獘獙獚獛獜獝獞獟獡獢獣獤獥獦獧獨獩獪獫獮獰獱	��n獲獳獴獵獶獷獸獹獺獻獼獽獿玀玁玂玃玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣玤玥玦玧玨玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃珄珅珆珇珋珌珎珒珓珔珕珖珗珘珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳珴珵珶珷	�0p珸珹珺珻珼珽現珿琀琁琂琄琇琈琋琌琍琎琑琒琓琔琕琖琗琘琙琜琝琞琟琠琡琣琤琧琩琫琭琯琱琲琷琸琹琺琻琽琾琿瑀瑂瑃瑄瑅瑆瑇瑈瑉瑊瑋瑌瑍瑎瑏瑐瑑瑒瑓瑔瑖瑘瑝瑠瑡瑢瑣瑤瑥瑦瑧瑨瑩瑪瑫瑬瑮瑯瑱瑲瑳瑴瑵瑸瑹瑺	��q瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑璒璓璔璕璖璗璘璙璚璛璝璟璠璡璢璣璤璥璦璪璫璬璭璮璯環璱璲璳璴璵璶璷璸璹璻璼璽璾璿瓀瓁瓂瓃瓄瓅瓆瓇瓈瓉瓊瓋瓌瓍瓎瓏瓐瓑瓓瓔瓕瓖瓗瓘瓙瓚瓛瓝瓟瓡瓥瓧瓨瓩瓪瓫瓬瓭瓰瓱瓲	�Ps瓳瓵瓸瓹瓺瓻瓼瓽瓾甀甁甂甃甅甆甇甈甉甊甋甌甎甐甒甔甕甖甗甛甝甞甠甡產産甤甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘畝畞畟畠畡畢畣畤畧畨畩畫畬畭畮畯異畱畳畵當畷畺畻畼畽畾疀疁疂疄疅疇	��t疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦疧疨疩疪疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄	�pv癅癆癇癈癉癊癋癎癏癐癑癒癓癕癗癘癙癚癛癝癟癠癡癢癤癥癦癧癨癩癪癬癭癮癰癱癲癳癴癵癶癷癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛皜皝皞皟皠皡皢皣皥皦皧皨皩皪皫皬皭皯皰皳皵皶皷皸皹皺皻皼皽皾盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥x盄盇盉盋盌盓盕盙盚盜盝盞盠盡盢監盤盦盧盨盩盪盫盬盭盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎眏眐眑眒眓眔眕眖眗眘眛眜眝眞眡眣眤眥眧眪眫眬眮眰眱眲眳眴眹眻眽眾眿睂睄睅睆睈睉睊睋睌睍睎睏睒睓睔睕睖睗睘睙睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳{睝睞睟睠睤睧睩睪睭睮睯睰睱睲睳睴睵睶睷睸睺睻睼瞁瞂瞃瞆瞇瞈瞉瞊瞋瞏瞐瞓瞔瞕瞖瞗瞘瞙瞚瞛瞜瞝瞞瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶瞷瞸瞹瞺瞼瞾矀矁矂矃矄矅矆矇矈矉矊矋矌矎矏矐矑矒矓矔矕矖矘矙矚矝矞矟矠矡矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖~矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃砄砅砆砇砈砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚硛硜硞硟硠硡硢硣硤硥硦硧硨硩硯硰硱硲硳硴硵硶硸硹硺硻硽硾硿碀碁碂碃场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚�碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨碩碪碫碬碭碮碯碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚磛磜磝磞磟磠磡磢磣磤磥磦磧磩磪磫磭磮磯磰磱磳磵磶磸磹磻磼磽磾磿礀礂礃礄礆礇礈礉礊礋礌础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮�礍礎礏礐礑礒礔礕礖礗礘礙礚礛礜礝礟礠礡礢礣礥礦礧礨礩礪礫礬礭礮礯礰礱礲礳礵礶礷礸礹礽礿祂祃祄祅祇祊祋祌祍祎祏祐祑祒祔祕祘祙祡祣祤祦祩祪祫祬祮祰祱祲祳祴祵祶祹祻祼祽祾祿禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠�禓禔禕禖禗禘禙禛禜禝禞禟禠禡禢禣禤禥禦禨禩禪禫禬禭禮禯禰禱禲禴禵禶禷禸禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙秚秛秜秝秞秠秡秢秥秨秪秬秮秱秲秳秴秵秶秷秹秺秼秾秿稁稄稅稇稈稉稊稌稏稐稑稒稓稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二�稝稟稡稢稤稥稦稧稨稩稪稫稬稭種稯稰稱稲稴稵稶稸稺稾穀穁穂穃穄穅穇穈穉穊穋穌積穎穏穐穒穓穔穕穖穘穙穚穛穜穝穞穟穠穡穢穣穤穥穦穧穨穩穪穫穬穭穮穯穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服�窣窤窧窩窪窫窮窯窰窱窲窴窵窶窷窸窹窺窻窼窽窾竀竁竂竃竄竅竆竇竈竉竊竌竍竎竏竐竑竒竓竔竕竗竘竚竛竜竝竡竢竤竧竨竩竪竫竬竮竰竱竲竳竴竵競竷竸竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹 �笯笰笲笴笵笶笷笹笻笽笿筀筁筂筃筄筆筈筊筍筎筓筕筗筙筜筞筟筡筣筤筥筦筧筨筩筪筫筬筭筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆箇箈箉箊箋箌箎箏箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹箺箻箼箽箾箿節篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈$�篅篈築篊篋篍篎篏篐篒篔篕篖篗篘篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲篳篴篵篶篸篹篺篻篽篿簀簁簂簃簄簅簆簈簉簊簍簎簐簑簒簓簔簕簗簘簙簚簛簜簝簞簠簡簢簣簤簥簨簩簫簬簭簮簯簰簱簲簳簴簵簶簷簹簺簻簼簽簾籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖(�籃籄籅籆籇籈籉籊籋籌籎籏籐籑籒籓籔籕籖籗籘籙籚籛籜籝籞籟籠籡籢籣籤籥籦籧籨籩籪籫籬籭籮籯籰籱籲籵籶籷籸籹籺籾籿粀粁粂粃粄粅粆粇粈粊粋粌粍粎粏粐粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴粵粶粷粸粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕,�粿糀糂糃糄糆糉糋糎糏糐糑糒糓糔糘糚糛糝糞糡糢糣糤糥糦糧糩糪糫糬糭糮糰糱糲糳糴糵糶糷糹糺糼糽糾糿紀紁紂紃約紅紆紇紈紉紋紌納紎紏紐紑紒紓純紕紖紗紘紙級紛紜紝紞紟紡紣紤紥紦紨紩紪紬紭紮細紱紲紳紴紵紶肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件0�紷紸紹紺紻紼紽紾紿絀絁終絃組絅絆絇絈絉絊絋経絍絎絏結絑絒絓絔絕絖絗絘絙絚絛絜絝絞絟絠絡絢絣絤絥給絧絨絩絪絫絬絭絯絰統絲絳絴絵絶絸絹絺絻絼絽絾絿綀綁綂綃綄綅綆綇綈綉綊綋綌綍綎綏綐綑綒經綔綕綖綗綘健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸4�継続綛綜綝綞綟綠綡綢綣綤綥綧綨綩綪綫綬維綯綰綱網綳綴綵綶綷綸綹綺綻綼綽綾綿緀緁緂緃緄緅緆緇緈緉緊緋緌緍緎総緐緑緒緓緔緕緖緗緘緙線緛緜緝緞緟締緡緢緣緤緥緦緧編緩緪緫緬緭緮緯緰緱緲緳練緵緶緷緸緹緺尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻8�緻緼緽緾緿縀縁縂縃縄縅縆縇縈縉縊縋縌縍縎縏縐縑縒縓縔縕縖縗縘縙縚縛縜縝縞縟縠縡縢縣縤縥縦縧縨縩縪縫縬縭縮縯縰縱縲縳縴縵縶縷縸縹縺縼總績縿繀繂繃繄繅繆繈繉繊繋繌繍繎繏繐繑繒繓織繕繖繗繘繙繚繛繜繝俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀<�繞繟繠繡繢繣繤繥繦繧繨繩繪繫繬繭繮繯繰繱繲繳繴繵繶繷繸繹繺繻繼繽繾繿纀纁纃纄纅纆纇纈纉纊纋續纍纎纏纐纑纒纓纔纕纖纗纘纙纚纜纝纞纮纴纻纼绖绤绬绹缊缐缞缷缹缻缼缽缾缿罀罁罃罆罇罈罉罊罋罌罍罎罏罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐@�罖罙罛罜罝罞罠罣罤罥罦罧罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂羃羄羅羆羇羈羉羋羍羏羐羑羒羓羕羖羗羘羙羛羜羠羢羣羥羦羨義羪羫羬羭羮羱羳羴羵羶羷羺羻羾翀翂翃翄翆翇翈翉翋翍翏翐翑習翓翖翗翙翚翛翜翝翞翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿D�翤翧翨翪翫翬翭翯翲翴翵翶翷翸翹翺翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫耬耭耮耯耰耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗聙聛聜聝聞聟聠聡聢聣聤聥聦聧聨聫聬聭聮聯聰聲聳聴聵聶職聸聹聺聻聼聽隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫H�聾肁肂肅肈肊肍肎肏肐肑肒肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇胈胉胊胋胏胐胑胒胓胔胕胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋脌脕脗脙脛脜脝脟脠脡脢脣脤脥脦脧脨脩脪脫脭脮脰脳脴脵脷脹脺脻脼脽脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸L�腀腁腂腃腄腅腇腉腍腎腏腒腖腗腘腛腜腝腞腟腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃膄膅膆膇膉膋膌膍膎膐膒膓膔膕膖膗膙膚膞膟膠膡膢膤膥膧膩膫膬膭膮膯膰膱膲膴膵膶膷膸膹膼膽膾膿臄臅臇臈臉臋臍臎臏臐臑臒臓摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁P�臔臕臖臗臘臙臚臛臜臝臞臟臠臡臢臤臥臦臨臩臫臮臯臰臱臲臵臶臷臸臹臺臽臿舃與興舉舊舋舎舏舑舓舕舖舗舘舙舚舝舠舤舥舦舧舩舮舲舺舼舽舿艀艁艂艃艅艆艈艊艌艍艎艐艑艒艓艔艕艖艗艙艛艜艝艞艠艡艢艣艤艥艦艧艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗T�艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸苺苼苽苾苿茀茊茋茍茐茒茓茖茘茙茝茞茟茠茡茢茣茤茥茦茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐X�茾茿荁荂荄荅荈荊荋荌荍荎荓荕荖荗荘荙荝荢荰荱荲荳荴荵荶荹荺荾荿莀莁莂莃莄莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡莢莣莤莥莦莧莬莭莮莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠\�菮華菳菴菵菶菷菺菻菼菾菿萀萂萅萇萈萉萊萐萒萓萔萕萖萗萙萚萛萞萟萠萡萢萣萩萪萫萬萭萮萯萰萲萳萴萵萶萷萹萺萻萾萿葀葁葂葃葄葅葇葈葉葊葋葌葍葎葏葐葒葓葔葕葖葘葝葞葟葠葢葤葥葦葧葨葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁`�葽葾葿蒀蒁蒃蒄蒅蒆蒊蒍蒏蒐蒑蒒蒓蒔蒕蒖蒘蒚蒛蒝蒞蒟蒠蒢蒣蒤蒥蒦蒧蒨蒩蒪蒫蒬蒭蒮蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗蓘蓙蓚蓛蓜蓞蓡蓢蓤蓧蓨蓩蓪蓫蓭蓮蓯蓱蓲蓳蓴蓵蓶蓷蓸蓹蓺蓻蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳d�蔃蔄蔅蔆蔇蔈蔉蔊蔋蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢蔣蔤蔥蔦蔧蔨蔩蔪蔭蔮蔯蔰蔱蔲蔳蔴蔵蔶蔾蔿蕀蕁蕂蕄蕅蕆蕇蕋蕌蕍蕎蕏蕐蕑蕒蕓蕔蕕蕗蕘蕚蕛蕜蕝蕟蕠蕡蕢蕣蕥蕦蕧蕩蕪蕫蕬蕭蕮蕯蕰蕱蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱h�薂薃薆薈薉薊薋薌薍薎薐薑薒薓薔薕薖薗薘薙薚薝薞薟薠薡薢薣薥薦薧薩薫薬薭薱薲薳薴薵薶薸薺薻薼薽薾薿藀藂藃藄藅藆藇藈藊藋藌藍藎藑藒藔藖藗藘藙藚藛藝藞藟藠藡藢藣藥藦藧藨藪藫藬藭藮藯藰藱藲藳藴藵藶藷藸恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔l�藹藺藼藽藾蘀蘁蘂蘃蘄蘆蘇蘈蘉蘊蘋蘌蘍蘎蘏蘐蘒蘓蘔蘕蘗蘘蘙蘚蘛蘜蘝蘞蘟蘠蘡蘢蘣蘤蘥蘦蘨蘪蘫蘬蘭蘮蘯蘰蘱蘲蘳蘴蘵蘶蘷蘹蘺蘻蘽蘾蘿虀虁虂虃虄虅虆虇虈虉虊虋虌虒虓處虖虗虘虙虛虜虝號虠虡虣虤虥虦虧虨虩虪獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃p�虭虯虰虲虳虴虵虶虷虸蚃蚄蚅蚆蚇蚈蚉蚎蚏蚐蚑蚒蚔蚖蚗蚘蚙蚚蚛蚞蚟蚠蚡蚢蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻蚼蚽蚾蚿蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威t�蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀蝁蝂蝃蝄蝅蝆蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚蝛蝜蝝蝞蝟蝡蝢蝦蝧蝨蝩蝪蝫蝬蝭蝯蝱蝲蝳蝵蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎螏螐螑螒螔螕螖螘螙螚螛螜螝螞螠螡螢螣螤巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺x�螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁蟂蟃蟄蟅蟇蟈蟉蟌蟍蟎蟏蟐蟔蟕蟖蟗蟘蟙蟚蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯蟰蟱蟲蟳蟴蟵蟶蟷蟸蟺蟻蟼蟽蟿蠀蠁蠂蠄蠅蠆蠇蠈蠉蠋蠌蠍蠎蠏蠐蠑蠒蠔蠗蠘蠙蠚蠜蠝蠞蠟蠠蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓|�蠤蠥蠦蠧蠨蠩蠪蠫蠬蠭蠮蠯蠰蠱蠳蠴蠵蠶蠷蠸蠺蠻蠽蠾蠿衁衂衃衆衇衈衉衊衋衎衏衐衑衒術衕衖衘衚衛衜衝衞衟衠衦衧衪衭衯衱衳衴衵衶衸衹衺衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗袘袙袚袛袝袞袟袠袡袣袥袦袧袨袩袪小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄��袬袮袯袰袲袳袴袵袶袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚裛補裝裞裠裡裦裧裩裪裫裬裭裮裯裲裵裶裷裺裻製裿褀褁褃褄褅褆複褈褉褋褌褍褎褏褑褔褕褖褗褘褜褝褞褟褠褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶��褸褹褺褻褼褽褾褿襀襂襃襅襆襇襈襉襊襋襌襍襎襏襐襑襒襓襔襕襖襗襘襙襚襛襜襝襠襡襢襣襤襥襧襨襩襪襫襬襭襮襯襰襱襲襳襴襵襶襷襸襹襺襼襽襾覀覂覄覅覇覈覉覊見覌覍覎規覐覑覒覓覔覕視覗覘覙覚覛覜覝覞覟覠覡摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐��覢覣覤覥覦覧覨覩親覫覬覭覮覯覰覱覲観覴覵覶覷覸覹覺覻覼覽覾覿觀觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴觵觶觷觸觹觺觻觼觽觾觿訁訂訃訄訅訆計訉訊訋訌訍討訏訐訑訒訓訔訕訖託記訙訚訛訜訝印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉��訞訟訠訡訢訣訤訥訦訧訨訩訪訫訬設訮訯訰許訲訳訴訵訶訷訸訹診註証訽訿詀詁詂詃詄詅詆詇詉詊詋詌詍詎詏詐詑詒詓詔評詖詗詘詙詚詛詜詝詞詟詠詡詢詣詤詥試詧詨詩詪詫詬詭詮詯詰話該詳詴詵詶詷詸詺詻詼詽詾詿誀浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧��誁誂誃誄誅誆誇誈誋誌認誎誏誐誑誒誔誕誖誗誘誙誚誛誜誝語誟誠誡誢誣誤誥誦誧誨誩說誫説読誮誯誰誱課誳誴誵誶誷誸誹誺誻誼誽誾調諀諁諂諃諄諅諆談諈諉諊請諌諍諎諏諐諑諒諓諔諕論諗諘諙諚諛諜諝諞諟諠諡諢諣铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政��諤諥諦諧諨諩諪諫諬諭諮諯諰諱諲諳諴諵諶諷諸諹諺諻諼諽諾諿謀謁謂謃謄謅謆謈謉謊謋謌謍謎謏謐謑謒謓謔謕謖謗謘謙謚講謜謝謞謟謠謡謢謣謤謥謧謨謩謪謫謬謭謮謯謰謱謲謳謴謵謶謷謸謹謺謻謼謽謾謿譀譁譂譃譄譅帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑��譆譇譈證譊譋譌譍譎譏譐譑譒譓譔譕譖譗識譙譚譛譜譝譞譟譠譡譢譣譤譥譧譨譩譪譫譭譮譯議譱譲譳譴譵譶護譸譹譺譻譼譽譾譿讀讁讂讃讄讅讆讇讈讉變讋讌讍讎讏讐讑讒讓讔讕讖讗讘讙讚讛讜讝讞讟讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座	���谸谹谺谻谼谽谾谿豀豂豃豄豅豈豊豋豍豎豏豐豑豒豓豔豖豗豘豙豛豜豝豞豟豠豣豤豥豦豧豨豩豬豭豮豯豰豱豲豴豵豶豷豻豼豽豾豿貀貁貃貄貆貇貈貋貍貎貏貐貑貒貓貕貖貗貙貚貛貜貝貞貟負財貢貣貤貥貦貧貨販貪貫責貭亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝��貮貯貰貱貲貳貴貵貶買貸貹貺費貼貽貾貿賀賁賂賃賄賅賆資賈賉賊賋賌賍賎賏賐賑賒賓賔賕賖賗賘賙賚賛賜賝賞賟賠賡賢賣賤賥賦賧賨賩質賫賬賭賮賯賰賱賲賳賴賵賶賷賸賹賺賻購賽賾賿贀贁贂贃贄贅贆贇贈贉贊贋贌贍佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼��贎贏贐贑贒贓贔贕贖贗贘贙贚贛贜贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸赹赺赻赼赽赾赿趀趂趃趆趇趈趉趌趍趎趏趐趒趓趕趖趗趘趙趚趛趜趝趞趠趡趢趤趥趦趧趨趩趪趫趬趭趮趯趰趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺��跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾跿踀踁踂踃踄踆踇踈踋踍踎踐踑踒踓踕踖踗踘踙踚踛踜踠踡踤踥踦踧踨踫踭踰踲踳踴踶踷踸踻踼踾踿蹃蹅蹆蹌蹍蹎蹏蹐蹓蹔蹕蹖蹗蹘蹚蹛蹜蹝蹞蹟蹠蹡蹢蹣蹤蹥蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝��蹳蹵蹷蹸蹹蹺蹻蹽蹾躀躂躃躄躆躈躉躊躋躌躍躎躑躒躓躕躖躗躘躙躚躛躝躟躠躡躢躣躤躥躦躧躨躩躪躭躮躰躱躳躴躵躶躷躸躹躻躼躽躾躿軀軁軂軃軄軅軆軇軈軉車軋軌軍軏軐軑軒軓軔軕軖軗軘軙軚軛軜軝軞軟軠軡転軣軤堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥��軥軦軧軨軩軪軫軬軭軮軯軰軱軲軳軴軵軶軷軸軹軺軻軼軽軾軿輀輁輂較輄輅輆輇輈載輊輋輌輍輎輏輐輑輒輓輔輕輖輗輘輙輚輛輜輝輞輟輠輡輢輣輤輥輦輧輨輩輪輫輬輭輮輯輰輱輲輳輴輵輶輷輸輹輺輻輼輽輾輿轀轁轂轃轄荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺��轅轆轇轈轉轊轋轌轍轎轏轐轑轒轓轔轕轖轗轘轙轚轛轜轝轞轟轠轡轢轣轤轥轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆迉迊迋迌迍迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖�這逜連逤逥逧逨逩逪逫逬逰週進逳逴逷逹逺逽逿遀遃遅遆遈遉遊運遌過達違遖遙遚遜遝遞遟遠遡遤遦遧適遪遫遬遯遰遱遲遳遶遷選遹遺遻遼遾邁還邅邆邇邉邊邌邍邎邏邐邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼�郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅鄆鄇鄈鄉鄊鄋鄌鄍鄎鄏鄐鄑鄒鄓鄔鄕鄖鄗鄘鄚鄛鄜鄝鄟鄠鄡鄤鄥鄦鄧鄨鄩鄪鄫鄬鄭鄮鄰鄲鄳鄴鄵鄶鄷鄸鄺鄻鄼鄽鄾鄿酀酁酂酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼�酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀醁醂醃醄醆醈醊醎醏醓醔醕醖醗醘醙醜醝醞醟醠醡醤醥醦醧醨醩醫醬醰醱醲醳醶醷醸醹醻醼醽醾醿釀釁釂釃釄釅釆釈釋釐釒釓釔釕釖釗釘釙釚釛針釞釟釠釡釢釣釤釥帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺�釦釧釨釩釪釫釬釭釮釯釰釱釲釳釴釵釶釷釸釹釺釻釼釽釾釿鈀鈁鈂鈃鈄鈅鈆鈇鈈鈉鈊鈋鈌鈍鈎鈏鈐鈑鈒鈓鈔鈕鈖鈗鈘鈙鈚鈛鈜鈝鈞鈟鈠鈡鈢鈣鈤鈥鈦鈧鈨鈩鈪鈫鈬鈭鈮鈯鈰鈱鈲鈳鈴鈵鈶鈷鈸鈹鈺鈻鈼鈽鈾鈿鉀鉁鉂鉃鉄鉅狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧饨饩饪饫饬饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂�鉆鉇鉈鉉鉊鉋鉌鉍鉎鉏鉐鉑鉒鉓鉔鉕鉖鉗鉘鉙鉚鉛鉜鉝鉞鉟鉠鉡鉢鉣鉤鉥鉦鉧鉨鉩鉪鉫鉬鉭鉮鉯鉰鉱鉲鉳鉵鉶鉷鉸鉹鉺鉻鉼鉽鉾鉿銀銁銂銃銄銅銆銇銈銉銊銋銌銍銏銐銑銒銓銔銕銖銗銘銙銚銛銜銝銞銟銠銡銢銣銤銥銦銧恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾�銨銩銪銫銬銭銯銰銱銲銳銴銵銶銷銸銹銺銻銼銽銾銿鋀鋁鋂鋃鋄鋅鋆鋇鋉鋊鋋鋌鋍鋎鋏鋐鋑鋒鋓鋔鋕鋖鋗鋘鋙鋚鋛鋜鋝鋞鋟鋠鋡鋢鋣鋤鋥鋦鋧鋨鋩鋪鋫鋬鋭鋮鋯鋰鋱鋲鋳鋴鋵鋶鋷鋸鋹鋺鋻鋼鋽鋾鋿錀錁錂錃錄錅錆錇錈錉洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑�錊錋錌錍錎錏錐錑錒錓錔錕錖錗錘錙錚錛錜錝錞錟錠錡錢錣錤錥錦錧錨錩錪錫錬錭錮錯錰錱録錳錴錵錶錷錸錹錺錻錼錽錿鍀鍁鍂鍃鍄鍅鍆鍇鍈鍉鍊鍋鍌鍍鍎鍏鍐鍑鍒鍓鍔鍕鍖鍗鍘鍙鍚鍛鍜鍝鍞鍟鍠鍡鍢鍣鍤鍥鍦鍧鍨鍩鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣�鍬鍭鍮鍯鍰鍱鍲鍳鍴鍵鍶鍷鍸鍹鍺鍻鍼鍽鍾鍿鎀鎁鎂鎃鎄鎅鎆鎇鎈鎉鎊鎋鎌鎍鎎鎐鎑鎒鎓鎔鎕鎖鎗鎘鎙鎚鎛鎜鎝鎞鎟鎠鎡鎢鎣鎤鎥鎦鎧鎨鎩鎪鎫鎬鎭鎮鎯鎰鎱鎲鎳鎴鎵鎶鎷鎸鎹鎺鎻鎼鎽鎾鎿鏀鏁鏂鏃鏄鏅鏆鏇鏈鏉鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩�鏎鏏鏐鏑鏒鏓鏔鏕鏗鏘鏙鏚鏛鏜鏝鏞鏟鏠鏡鏢鏣鏤鏥鏦鏧鏨鏩鏪鏫鏬鏭鏮鏯鏰鏱鏲鏳鏴鏵鏶鏷鏸鏹鏺鏻鏼鏽鏾鏿鐀鐁鐂鐃鐄鐅鐆鐇鐈鐉鐊鐋鐌鐍鐎鐏鐐鐑鐒鐓鐔鐕鐖鐗鐘鐙鐚鐛鐜鐝鐞鐟鐠鐡鐢鐣鐤鐥鐦鐧鐨鐩鐪鐫鐬鐭鐮纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡缢缣缤缥缦缧缪缫缬缭缯缰缱缲缳缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬�鐯鐰鐱鐲鐳鐴鐵鐶鐷鐸鐹鐺鐻鐼鐽鐿鑀鑁鑂鑃鑄鑅鑆鑇鑈鑉鑊鑋鑌鑍鑎鑏鑐鑑鑒鑓鑔鑕鑖鑗鑘鑙鑚鑛鑜鑝鑞鑟鑠鑡鑢鑣鑤鑥鑦鑧鑨鑩鑪鑬鑭鑮鑯鑰鑱鑲鑳鑴鑵鑶鑷鑸鑹鑺鑻鑼鑽鑾鑿钀钁钂钃钄钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹� 锧锳锽镃镈镋镕镚镠镮镴镵長镸镹镺镻镼镽镾門閁閂閃閄閅閆閇閈閉閊開閌閍閎閏閐閑閒間閔閕閖閗閘閙閚閛閜閝閞閟閠閡関閣閤閥閦閧閨閩閪閫閬閭閮閯閰閱閲閳閴閵閶閷閸閹閺閻閼閽閾閿闀闁闂闃闄闅闆闇闈闉闊闋椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋�#闌闍闎闏闐闑闒闓闔闕闖闗闘闙闚闛關闝闞闟闠闡闢闣闤闥闦闧闬闿阇阓阘阛阞阠阣阤阥阦阧阨阩阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗陘陙陚陜陝陞陠陣陥陦陫陭陮陯陰陱陳陸陹険陻陼陽陾陿隀隁隂隃隄隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰�&隌階隑隒隓隕隖隚際隝隞隟隠隡隢隣隤隥隦隨隩險隫隬隭隮隯隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖雗雘雙雚雛雜雝雞雟雡離難雤雥雦雧雫雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗霘霙霚霛霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻�)霡霢霣霤霥霦霧霨霩霫霬霮霯霱霳霴霵霶霷霺霻霼霽霿靀靁靂靃靄靅靆靇靈靉靊靋靌靍靎靏靐靑靔靕靗靘靚靜靝靟靣靤靦靧靨靪靫靬靭靮靯靰靱靲靵靷靸靹靺靻靽靾靿鞀鞁鞂鞃鞄鞆鞇鞈鞉鞊鞌鞎鞏鞐鞓鞕鞖鞗鞙鞚鞛鞜鞝臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐�,鞞鞟鞡鞢鞤鞥鞦鞧鞨鞩鞪鞬鞮鞰鞱鞳鞵鞶鞷鞸鞹鞺鞻鞼鞽鞾鞿韀韁韂韃韄韅韆韇韈韉韊韋韌韍韎韏韐韑韒韓韔韕韖韗韘韙韚韛韜韝韞韟韠韡韢韣韤韥韨韮韯韰韱韲韴韷韸韹韺韻韼韽韾響頀頁頂頃頄項順頇須頉頊頋頌頍頎怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨�/頏預頑頒頓頔頕頖頗領頙頚頛頜頝頞頟頠頡頢頣頤頥頦頧頨頩頪頫頬頭頮頯頰頱頲頳頴頵頶頷頸頹頺頻頼頽頾頿顀顁顂顃顄顅顆顇顈顉顊顋題額顎顏顐顑顒顓顔顕顖顗願顙顚顛顜顝類顟顠顡顢顣顤顥顦顧顨顩顪顫顬顭顮睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶钷钸钹钺钼钽钿铄铈铉铊铋铌铍铎铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪�2顯顰顱顲顳顴颋颎颒颕颙颣風颩颪颫颬颭颮颯颰颱颲颳颴颵颶颷颸颹颺颻颼颽颾颿飀飁飂飃飄飅飆飇飈飉飊飋飌飍飏飐飔飖飗飛飜飝飠飡飢飣飤飥飦飩飪飫飬飭飮飯飰飱飲飳飴飵飶飷飸飹飺飻飼飽飾飿餀餁餂餃餄餅餆餇铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒锓锔锕锖锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤镥镦镧镨镩镪镫镬镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔�5餈餉養餋餌餎餏餑餒餓餔餕餖餗餘餙餚餛餜餝餞餟餠餡餢餣餤餥餦餧館餩餪餫餬餭餯餰餱餲餳餴餵餶餷餸餹餺餻餼餽餾餿饀饁饂饃饄饅饆饇饈饉饊饋饌饍饎饏饐饑饒饓饖饗饘饙饚饛饜饝饞饟饠饡饢饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨鸩鸪鸫鸬鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦鹧鹨鹩鹪鹫鹬鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙�8馌馎馚馛馜馝馞馟馠馡馢馣馤馦馧馩馪馫馬馭馮馯馰馱馲馳馴馵馶馷馸馹馺馻馼馽馾馿駀駁駂駃駄駅駆駇駈駉駊駋駌駍駎駏駐駑駒駓駔駕駖駗駘駙駚駛駜駝駞駟駠駡駢駣駤駥駦駧駨駩駪駫駬駭駮駯駰駱駲駳駴駵駶駷駸駹瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃�;駺駻駼駽駾駿騀騁騂騃騄騅騆騇騈騉騊騋騌騍騎騏騐騑騒験騔騕騖騗騘騙騚騛騜騝騞騟騠騡騢騣騤騥騦騧騨騩騪騫騬騭騮騯騰騱騲騳騴騵騶騷騸騹騺騻騼騽騾騿驀驁驂驃驄驅驆驇驈驉驊驋驌驍驎驏驐驑驒驓驔驕驖驗驘驙颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒�>驚驛驜驝驞驟驠驡驢驣驤驥驦驧驨驩驪驫驲骃骉骍骎骔骕骙骦骩骪骫骬骭骮骯骲骳骴骵骹骻骽骾骿髃髄髆髇髈髉髊髍髎髏髐髒體髕髖髗髙髚髛髜髝髞髠髢髣髤髥髧髨髩髪髬髮髰髱髲髳髴髵髶髷髸髺髼髽髾髿鬀鬁鬂鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋�A鬇鬉鬊鬋鬌鬍鬎鬐鬑鬒鬔鬕鬖鬗鬘鬙鬚鬛鬜鬝鬞鬠鬡鬢鬤鬥鬦鬧鬨鬩鬪鬫鬬鬭鬮鬰鬱鬳鬴鬵鬶鬷鬸鬹鬺鬽鬾鬿魀魆魊魋魌魎魐魒魓魕魖魗魘魙魚魛魜魝魞魟魠魡魢魣魤魥魦魧魨魩魪魫魬魭魮魯魰魱魲魳魴魵魶魷魸魹魺魻簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤E魼魽魾魿鮀鮁鮂鮃鮄鮅鮆鮇鮈鮉鮊鮋鮌鮍鮎鮏鮐鮑鮒鮓鮔鮕鮖鮗鮘鮙鮚鮛鮜鮝鮞鮟鮠鮡鮢鮣鮤鮥鮦鮧鮨鮩鮪鮫鮬鮭鮮鮯鮰鮱鮲鮳鮴鮵鮶鮷鮸鮹鮺鮻鮼鮽鮾鮿鯀鯁鯂鯃鯄鯅鯆鯇鯈鯉鯊鯋鯌鯍鯎鯏鯐鯑鯒鯓鯔鯕鯖鯗鯘鯙鯚鯛酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜H鯜鯝鯞鯟鯠鯡鯢鯣鯤鯥鯦鯧鯨鯩鯪鯫鯬鯭鯮鯯鯰鯱鯲鯳鯴鯵鯶鯷鯸鯹鯺鯻鯼鯽鯾鯿鰀鰁鰂鰃鰄鰅鰆鰇鰈鰉鰊鰋鰌鰍鰎鰏鰐鰑鰒鰓鰔鰕鰖鰗鰘鰙鰚鰛鰜鰝鰞鰟鰠鰡鰢鰣鰤鰥鰦鰧鰨鰩鰪鰫鰬鰭鰮鰯鰰鰱鰲鰳鰴鰵鰶鰷鰸鰹鰺鰻觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅龆龇龈龉龊龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞鲟鲠鲡鲢鲣鲥鲦鲧鲨鲩鲫鲭鲮鲰鲱鲲鲳鲴鲵鲶鲷鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋K鰼鰽鰾鰿鱀鱁鱂鱃鱄鱅鱆鱇鱈鱉鱊鱋鱌鱍鱎鱏鱐鱑鱒鱓鱔鱕鱖鱗鱘鱙鱚鱛鱜鱝鱞鱟鱠鱡鱢鱣鱤鱥鱦鱧鱨鱩鱪鱫鱬鱭鱮鱯鱰鱱鱲鱳鱴鱵鱶鱷鱸鱹鱺鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾鲿鳀鳁鳂鳈鳉鳑鳒鳚鳛鳠鳡鳌鳍鳎鳏鳐鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄N鳣鳤鳥鳦鳧鳨鳩鳪鳫鳬鳭鳮鳯鳰鳱鳲鳳鳴鳵鳶鳷鳸鳹鳺鳻鳼鳽鳾鳿鴀鴁鴂鴃鴄鴅鴆鴇鴈鴉鴊鴋鴌鴍鴎鴏鴐鴑鴒鴓鴔鴕鴖鴗鴘鴙鴚鴛鴜鴝鴞鴟鴠鴡鴢鴣鴤鴥鴦鴧鴨鴩鴪鴫鴬鴭鴮鴯鴰鴱鴲鴳鴴鴵鴶鴷鴸鴹鴺鴻鴼鴽鴾鴿鵀鵁鵂	�Q鵃鵄鵅鵆鵇鵈鵉鵊鵋鵌鵍鵎鵏鵐鵑鵒鵓鵔鵕鵖鵗鵘鵙鵚鵛鵜鵝鵞鵟鵠鵡鵢鵣鵤鵥鵦鵧鵨鵩鵪鵫鵬鵭鵮鵯鵰鵱鵲鵳鵴鵵鵶鵷鵸鵹鵺鵻鵼鵽鵾鵿鶀鶁鶂鶃鶄鶅鶆鶇鶈鶉鶊鶋鶌鶍鶎鶏鶐鶑鶒鶓鶔鶕鶖鶗鶘鶙鶚鶛鶜鶝鶞鶟鶠鶡鶢	��R鶣鶤鶥鶦鶧鶨鶩鶪鶫鶬鶭鶮鶯鶰鶱鶲鶳鶴鶵鶶鶷鶸鶹鶺鶻鶼鶽鶾鶿鷀鷁鷂鷃鷄鷅鷆鷇鷈鷉鷊鷋鷌鷍鷎鷏鷐鷑鷒鷓鷔鷕鷖鷗鷘鷙鷚鷛鷜鷝鷞鷟鷠鷡鷢鷣鷤鷥鷦鷧鷨鷩鷪鷫鷬鷭鷮鷯鷰鷱鷲鷳鷴鷵鷶鷷鷸鷹鷺鷻鷼鷽鷾鷿鸀鸁鸂	�0T鸃鸄鸅鸆鸇鸈鸉鸊鸋鸌鸍鸎鸏鸐鸑鸒鸓鸔鸕鸖鸗鸘鸙鸚鸛鸜鸝鸞鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴鹵鹶鹷鹸鹹鹺鹻鹼鹽麀麁麃麄麅麆麉麊麌麍麎麏麐麑麔麕麖麗麘麙麚麛麜麞麠麡麢麣麤麥麧麨麩麪	��U麫麬麭麮麯麰麱麲麳麵麶麷麹麺麼麿黀黁黂黃黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰黱黲黳黴黵黶黷黸黺黽黿鼀鼁鼂鼃鼄鼅鼆鼇鼈鼉鼊鼌鼏鼑鼒鼔鼕鼖鼘鼚鼛鼜鼝鼞鼟鼡鼣鼤鼥鼦鼧鼨鼩鼪鼫鼭鼮鼰鼱	�PW鼲鼳鼴鼵鼶鼸鼺鼼鼿齀齁齂齃齅齆齇齈齉齊齋齌齍齎齏齒齓齔齕齖齗齘齙齚齛齜齝齞齟齠齡齢齣齤齥齦齧齨齩齪齫齬齭齮齯齰齱齲齳齴齵齶齷齸齹齺齻齼齽齾龁龂龍龎龏龐龑龒龓龔龕龖龗龘龜龝龞龡龢龣龤龥郎凉秊裏隣	��X兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩	KpZ€�	 $!($,'0*4-80<3@6D9H<L?PBTEXH\K`NdQhTlWpZt]x`bXc�d<f�g�h�iHl�n(p�qHs�thv�w�z~������� �$�(�,�0�4�8�<�@�D�H�L�P�T�X�\�`�d�h�l�p�t�x�|������������������������������������ �#�&�)�,�/�2�5�8�;�>�A�D�GKNQ�R(T�UHW�XhZ�Z	�Z	������������
�\	����������������������������O
�\	���������
<]	���������
\]	|]	����������������W�]	������]	�����@�A�B��]	�������������������������������������������������������������������������������]����	��������������_�^	����������������������������������������������������������������������������������������������������^��������������������������������	����_�]%
``	�\�C���D�����������E���������F��G
`	��
h`	���G�H���Y�
|`	��������������������������������������������
�`	���������I�J�K�LOa	�������M�������N���O�������������������������8a	�����P���������Q�R������a	�������S�a	��W�a	���������������������������������������������b��������������������������������������������������������	�xb���������������������������������������������������������������������������������������������������������������������������������b������������������������	�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w_d	�x�y�z�{�|�}�~������������������������������������d	�������������������De	������%xe��	��g�e``�]t`�`a0a�a�a�abpb�b�c�d<epe�e�e��e��������	���e���������������������������������������@�A�B�C�D�E�F�G�H�f	�������������������������������������������������������������������������������������������������������������������������������f����������������������������������������	�a�b�f�g��������������������������������������������������������������-�g��������������������������������������������������������������������������������������������������������������	�`�c�do�h	����������������������������������������������������������������������������i	���������������������Z�,j	�I5hj	�J�K�L�M�N�Ow|j	�P�Q�R�S�T��j�f�g�h�i$j�]`jtj�j�j��jһ���@���A�B�C���������آ�����Dؤ���Eר��ا��F����ҵ����˿ة�G�H�I���J�����Kɥح�L��Ѿ�����M�N���O���P���Qؼ�R����Ϊ��S����د�j�T�U�V���W���Xرô���Y֮��է�������Zƹ�����[���\�����]�^ؿ����Ҳϰ���_�`�a�b���c�d��e�f�g�h�i�j�����k���l�m�n�o�p�q�r�s�t�uǬ�vl�w�x�y�z�{�|���}����~����ء�������������������ب����Щ������ؽ�����������������Ķ������ͤ������������������������������������mʲ�����������������������������������������������������������Ǫ�������������������������������������������������������������� n����������������������������������������������������������ɡΰ������������������α�������������٣��������������������٤����,o��������������������������λ��ס��������������٢����������١������Ӷ�������������������������������٦��٥��������٬ٮ��٫ʹ8p������٩ֶ��������٨����������٪��٧����ٰ�����������������������������@����������٭�Aٯ�B�����C�D�E�F�G���H�I�J�K�L�M�N�O�P��Dq�Q�R�S����ٴ�T�U�V�W���X�Y�Z������ٸ�[�\�]�^�_�����`ٵ�aٷ����ٹ�b���cٶ�d�eٱ�fٲ��ٳ�g�h�������i���jٽ�k�l�m�nٺ�o���p�q�r���sPr�]lmn$o0p<qHrTs=\s�t�u�v�w�x�y�z�{�|�}�~��������ٿ��������������������������������������������������ٻ����پ������������������������ծ��ֵ�������s������������������������ټ����ƫ�����������������������ͣ��������������������������������������������������ż͵�����������������t����������������������������������������������������������������������������������������������������������������������ɵ���@�A�B�u�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q���R�S�T�U�V�W���X�Y�Z���[�\�]�^�_�`�a�b�c�d�e��ɮ�f�g�h�i�������j�k�l�m���n���o�p�q�r�sƧ�t�u�v�w�v�x�y�z�{�|�}�����~���������������������������������������������������������������������������������������������������������������wأ����Ԫ������������������������������������������������������������������������ȫ����������������������������������������������x������������������Ƚ����������������ð������ڢ����д����ũ����������ڣ��ԩڤ������������������������������ұ�����������������y������������׼ڡ���������������������������������@�A�B���C��D�E�����F�G���H�I�J�K�L�M���Nƾ�O�����P�Q���R�����S͹�����������T���z���������U�V�������W���X�Yۻ���Z�[�����\�]�^������������_���`�aɾ�b�c�d���e�f�g�����h���i�����j���k�l���m�n��ˢȯɲ�����o���p���{���������q�r�s�t�u�v��w��ǰ�x�y�����z�{���|���}�~��������������������������������ʣ���������������������������������������������|���������������������������������������������������������Ȱ��������۽�������������Ŭ��۾ۿ�����������������������������������~����������������������ѫ��������������������������������������ļ���������������������������������������������������������������������������������������������������@�A�B�Cذ�����D�����E�F���G�H�����Iϻ�J�K���L�M�N���O�P�Q���R�S�T�U�V�W�X�Y�Z�[ƥ�ҽ�\�]������^ʮ�_ǧ�`ئ�a��������b�c�d��Э�e����׿�f�������g�h���i���j��߲ռ��¬��±�k�����l���m��n�oشîӡΣ�p��ȴ���q��ж�r���s�t�u�v��(��w�x���y������z�{���|ѹ�����}�~������������������������������ԭ������������������������������������������������������ȥ��������4������������������������˫������������������ȡ����������������������������������߶ߵֻ����������̨߳ʷ������Ҷ��˾̾��߷��ߴ����@������������ߺ����������ͬ���������߸�����߹�������������������������������������������˱����֨���������������������������L�ѽ�������������������߻������������߼߽߾Ż߿��Ա����Ǻ����������������������������������������������ζ�����������������������X�����������������������զ������ӽ�������������������������������������@�����A������������ҧ���B���C���D�����E�F�G���H�I���J���K��d���Ʒ���L���M���������N�O���������������������P���Q�����R������Ӵ�S�T�U�V�W��Ŷ���������X�Y����Z�[�\�����]�^�_�`�a�b���c�����d�p��e���f�g�h�i�����j���k�l�m�n�o�������p�q���r�s�t�u�v�w���x�y�z�{���|�������}�~����������������Ψ���������������������������|�������������������������������������������������������������������ơɶ�������ž���������������������Х�����������������ι�������������������������������������������ϲ��������������������������������������������������������������������������������������������������ɤ������������������������������������������������������������������������������������������������@�A�����B�C���D�����E�F�G�H�I�J�K�L���M�N���O�P����Q�R�S�����T�U���V�W�X�Y�����Z�[�\����]���^˻�_�`���a��b�c�d�����e�f�g�h�i�j�k�l�m�n�o�p����ҭ�q�r�s�t�u���v�w�������x�y���z�{�|�}�~�������������ج�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������Ď��������������������������������������������������������������ض��������������������������԰������������Χ������������������ͼ��Џ������������Բ��Ȧ�����������������@�A�B�C�D�E�F�G�H�I��J�K��L�M�Nʥ�O�P�Q�R�������S�����������T�U���V�W�X�Y�Z�������[�\���]ܐַ�^���_�`�a�b���c�d���e��̮��������f�g�h�i�j���k�l��̳��������׹���m�n���o̹�p����ƺ���q���r��s�t�u���v�w�����x�y�z�����{�|�}��~������¢������������������������������������������������������������ԫ��������������������������������������������������������������������������������������������������������������������������������������������ܤ���������������������������ܣ�����ܥ�������������������ܡ��ܢ������ǵ��������������ܧ��������ܦ��ܩ�����������������������������������������������������������@�A��B�C�D�Eܨ�F�G�H�I�J�K�L����M�N�O���P�Q��R�S�T��U�V�W�X�Y��Z�[�\�]�^�_ܪ�`�a�b�c�d��ܫ�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u���v�ܯܬ�w���x��y�z�{ܭ�|�}�~������������Ĺ����������ǽܮ�������������������������ī����������������������������������������������$��������������������������������������������������������������������������������������ʿ����׳�������������������Ҽ������������0������������������������������������������Ϧ������������ҹ������������������������̫����ز������ʧ����ͷ�����������������@�A�B<��C��ۼ�D���E�F�������G���H�I�����J��K�L�����������M���N�O�P�Q�R���S���T�U���V�W�X�Y�Z�[�\�]�^�_�`�a�bŮū�c���d����e�f�g���h�iH��j������kױ�����l���m�n��o�p�q�r�����s�t���u���v�w�x�y��z�{�|�}�����~��������������������������������������������T�������������ķ�������ʼ���������������ί��������Ҧ����������������������������������������������������������������������`��������¦����������������������������������������������������������������������������������������Ȣ�����������������l�����������������������������������������������������������������@��A�B�C�D��E�F���G�H�I�J�K�L�M�N�OӤ������P�Q���R�S�T�U�x��V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�gý�h�i�j�k�l�m�n�����o�p�q�r�s�t�u�v�w�x�y�z�{�|��}�~������������ϱ������������������������������ɩ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�����H�������I������������Т�J���K�L��������ѧ�M�N�����Oث�P�Q�R�����S���T���U�V�W�X���Y�Z��[�\�����]��լ�^�������_�����`�a���b�c�d��e��f��������������ʵ�g�������������h�i�j�����k�l�m�n���o�p��������q����r�s�t���������u�v���w��������x�y�z�{���|�}�~������Ԣ��������������������į�����������������կ����������������������������������Ѱ����������������������������ξ����������С����������������������������������������������Ң��������������������������������ʬ���������β��̥��ƨ�����������������������ʺ���м������չ����������������������������������������������������ɽ���������������������������ئ�������������������������������������������������������������������������@�����A�B�C��D��E��F����G�H�I�J��K����L��M�N��O�P�Q�R�S�T��U�V�W�X�Y�Z��[�\�]�^�_�`���a�b�c�d�e�f�gϿ�h�i�����j���k��l�m���n�o���p�q�r�s�t�u�v�w�x�y���z�{�|�}��~��������������������������������������������������������������������������������������ո�������������������������������������������������������������Ƕ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U���V�W�X�Y�Z�[�\�]��^�_�`�a�b���c�d�e�f�g�h�iΡ�j�k�l�m�n�o�p�q�r�s�t�u�v���w�����x�yѲ���z�{�����������|���}�~������������������������������������ �����������˧����ʦ������ϣ����������������������������������������������֡����������ϯ��������������������������ñ����,�����������������������������������������Ļ�������������������������������������������������������ƽ������������������������8���������ׯ����������������������®������Ӧ�����������������������������������������������ͥ�������������������ӹ��������������D��������������@�A�B�����C�D�E�F�G�H�������I�J���K�L�M�N���O�P�Q�R�S�T�U�V�W�X�Y�Z���[���\�]�^�_�`�a�b�c�d���e��͢�f�g���h�i�j��إP��������Ū�k�l�m���n��߮�o�p�qʽ�r߱�s���t��u�����v�w���x�y�z�����{�|�}�~�����������������������������������������ǿ���������\������������������������������������������¼����������������������������ͮ������������������������Ӱ����������������������������h�����������������������������������ͽ���������������������������������������������ѭ������΢����������������������������������t�����������������������������������߯��������־�æ�������������������������������������������������������������������������������t�u�v�w�x�y�z�{�|�}� �,�8�D�P�\�h�t�������������ȏԐ�������(�4�@�L�X�d�p�|�����������ĥЦܧ�����$�0�<�H�T�`�l�x�������̬�������������@�A��B�C������D�Eŭ�F������G�H���I����˼�J�K����L�M�N������Թ�����O�P�Q���R�S�T�U�V���W�X�Y�Z�[����\�]����^�����_�`�a�b�c�d�e���f���g�h���i���j�kˡ�l�m�n���o�p��q�r�s�t������u�v�������������wϢǡ�x�y���z�{���|��������}����~���������������Ϥ�����������������������������������������������������������������������������������������������������������������������������������������������������ϧ���Ω������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ԸȻ���������������@���A��B���C��D�E���F�G�HĽ�I�J�K�L�M�N�O��P�Q�R�S��T�U�V�W�����X�Y�Z�[�\�]�^ο�_�`�a�b��c���d�e�f�g�h�i�j�kԼ�l�m�n�o�p�q�r�s�t�u�v���w�x��y�z�{�|�}��~������������������������������������������������������������������������������������������������и�������������������������������������������������������ų������������������������������������������������ܲ����������������������������Ϸ���������������ս�����������������������������������¾�����������������������������������������������������������������@�A���������B�C�D���E�F���G�H�I�J�K�L�M���N�OǤִ�P����ɨ��Ť�������Q�R���S�T���U�V��W�X���Y��������Z�[�\���]�^�_�`�����a�b�c�d�e�f����ץ�gͶ�������h�����i�j�k��������l�����m�n���o�p�̧�q�r�s�t���u�v�w���x�y�zĨ�{��Ѻ���|����}�~����������Ĵ����������������������������������׾����������������£����ӵ��š���������������������ȭ˩��������������ƴקʰ�����������������ָ�����������������������������������ֿ������̢Ю�������������������Ų�����������������������������ͦ����������(�����������ͱ������׽�����������������������������������������������������������������������������������������������������������4��������������������������������������������Ҵ����������������������̽�������������������������������°�����������������������@����@�A�B���C���D�E���F�G�H���������I���J�K�LҾ�M�N�O�P�Q�R�S���T�����U���V�W�X�Y�Z�����[�\���]�^�_�`���aԮ�b���c���d�e�f�g���h��L�����§�i�j���k�l�m�n�o���p�q�����r�s��ɦ�t�u�v�w�x�y����z���{���|�}�~����������������������������������������Я���������X���������������ҡ����̯������������������ˤ������ժ�������������������������������Ħ����������������������������ġߡ����������d��������������Ʋ�������������������������˺�����ߤ��������ײ����������������������������������׫������������ߢߣ��ߥ����������p�ߦ������������������������������ߧ������������ߨ������@�A�B���C�D�Eߪ�Fߩ�G���H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`|����a�b�c�d�e�f�g�h߫�i�j�k�l�m�n�o�p���q�r�s�t�u��v�w�x�y�z�{�|�}�~������߬����������������֧߭����������������������������������������������Ч���������������������������������������������������ɢ�����������������������������������������������������������������������������ի������������������������������б������������������������ն���������˹�������������������������ʩ������������������������������������������������������������������������������ּ������Ѯ��������@�A�B�Cʱ���D�E��F�G�H�I�J����K����L�M���N�O�P��Q���R����S�T�U������V�W�X��Y�Z�[���\��ӳ�]�^�_�`���a����b�c�d�e���f���g���h�i�������j�k�l�m�n���o���p���q���r���s�t�u�v�w�x�y�����z�{���|�}ɹ����������~���������������������������������������������������������������������������������������������Ͼ����������������������������ů����������������������������������������������ĺ������������������������������������������������������������������������������������������������������������������������������������Ի���ҷ���������������������������������@�A�B�C���������D���E�F���G�H�I˷���J���K�L�M��N���O���P�Q�R�S�T�U��Vľ�Wδĩ����X��Y���Z�[�����\�]�^�_���`�a���b�c��ɱ�d��Ȩ�e�f���g�ɼ�h�i��j���������k��l�m���n�o�p�q�r���s������t�u�v���w�x������y�z���{�����|����}���~���������������������������������������������������������������������ö����֦�����������������������ǹ���������������������������������������������������������������������������ij����Ⱦ�����������������������������������������������������������������������������������������������դ����ջ�������������������˨��������������������������У����������������������������������������������������������������������Φ�������������������ͩɣ���������������������@�A�B�C������������������׮�D��E�F�G�H�I�J�K�L��MͰ��N�O�P�Q�R�S�T�U$��V���W���X÷���Y�Z�[�\�]�^�_�`���a�b�c��d�e�f���g�h�i�j�k�l�m�n�o�p���q�r�s�������t�u�v�w���x��е�y�z���{���|�}�~��������������0�������������������������������������������������������������������������������������������ɭ�������������������������������<�������������������������ֲ׵��������������������������������������������������������������Ҭ����������������������������H����������������������������������������Ш����������������������@�A��B�C��D�E�F�G��H�I��J�K��L�M�N�O�P�����Q�R¥�S�T�UT���V���W��X������Y�Z�[���\�]�^�_�`�a�����b�c��d�e����f�g�h�i�j�k�l�m�n�o�ե�p�q��r��s�t�u��v�w���x�yȶ�z�{�|��}�~����`������������������������������������������������������������������������������������������������������������������������������l������������������������������������������������������������������ģ������������������������������ӣ����������������������������x���������������������������������������������������������@�A�B�C�D���E�F�G���H�I�J�K�L�M�N�O�P�Q�R���S�T�U�V�W�X�Y���Z�[���\�]�^��̴�_�`�aϭ�b�c�d�e�f�g�h�i�j���k�����l�m�n�o�p���q�r�s�t�u�v�w�x���y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Ƿ����������ŷ���������������@�A�B��C�D�E�F��G����H�I�J���K���L�M�N��O�P�Ъ�QǸ�R�S���T�U�V�W�X�Y�Z�[�\�]�^�_��`�a�b�c�d�e�f�gֹ����������h�i���j�k�l�m�n�o�p�q�r�s�t�u�v�w���x����y�z�{���|���������}�����~ѳ������������������������ֳ���������������������������������������������������������Ź�������������������������������������������������ĸ��ÿ������ع�������������ë����������ձ�������������������������̺����������������������������������������������������������ص����å�����������������������������������������������������ˮ�����������������������֭͡����������������������������ϫ�����������������@�AѴ�������������B�C��D�E�F�������G�H�I�J�K̭�L���M���N���O�P���Q�R�S����T���U�������V�����W�����X�Y���Z�[�����\�]����^�_�`�aɳ�b���c�d�e���fû�g��Ž�������h����ĭ�i�����j�k�����l�m�n�o�����p������մ�����q�r�s�tй��u�v�wȪ���x���y�z�{���|�}���������~����������Ţ����������������ע�����������̩����Ӿ������������к��������������������������������������������������ϴ������������������������������������������������������������������Ǣ��������������dz����������������������Ũ����������������������������������������������������������ԡ��������������������������Ϳ����������������ӿ���������������������������������������������������ɬ����������������Һ�������������������������� �������������������������@�A�B�C���D�E�F�G���H�����I�J�K����L�����M�N���O���P�Q�R�S����T���U�V���W���X�Y�Z���[���\����]�^�_,��`�a�b�c�d���e�f�g�hԨ�i�������j�����k�l���m����n�o��p�q���r�s����t������u�v�w���x���yμ�z���{�|���}���~��������������������8�������������������������������������������������������տ����������������������������������������������������������������������ʪD���������������������������������Դ��������������������������������������������������Ϫ������������������������������������������P���������������������������������������������������������������������������������̲�������������@�A�B�C���D�E�F�G���H�I�J�K�L�M\��N�OƯ�P�Q�R���S�T��U�V�W�X�Y©�Z�[�\�������]�^�_�`�a�b�c�d�e�fĮ�g�h�i���j�k�l�m�����n���o���p��q���r�s���t�u�v�w�x�y�z��{h��|�}�~��������������������Ϋ����������������������������DZ��º����������������������������̶��������������������������������t����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G���H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W����������̼ؽ������ �,�8�D�P�\�h�t��������������������������(�4�@�L�X�d�p�|������������������������$�0�<�H�T�`�l�x��������X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h���i�j�k�l�m�n�o�p���q�r�s�t�u�v�w��x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������¯��������������������Ȳ���������������������������������������������̿��������������������ը������������������˸����������������������������������������������������@�A�B���C�D�E�F���G���������H�������Iϩ�J�K�L�M�N�O�P���Q���R�S�T���U�V��W�X�Y�Z�[�\�]�^�_�����`�a�b�c�d���e�f���g�����h�������i�j�k�l�m�n�o�p�q�r�s���t�u�v�w�x�y�z�{�������|�}�~��Ȼ�������������������������������������������������������������������������������ɷ����������ú������������������������������������������������ɿ�������������Ϩ��������������������Ѭ������������������������������������������������������������������������������������������������������ȼ�������������������������������������@�A�B�C�D�E�F�G�H�I���J�K�L�M���N���O�P�Q�R�S�T���U�V�W�X�Y�Z�[�\�]�^���_�`�a�b�c�d��e�f�g�h�i�j���k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������צ����������������������ү������س��ˬ������������������Ƭ����������������������������������ţ������IJ��ĵ������������������������������������ǣ�����������������Ϭ���������������������������������������������������������������������������������Ȯ������������������״���������������������������������������������������������������������������@�A��B�����C�D�E�F�G�H���I�J���ʨ�������K�L����M�����N�O�P(�Q��R��S�T�U�V�W�X��Y�Z�[���\�]�^�_��`�����a�b�c�������d�e���f�g��h�i�j����è��k���l�m��n�o���p�q�����r�s�t�u��Գ4�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������̡��������@�A�B�C�D�E�F�G�H�I�J�K��L@	�M�N�O�P��Q�R���S���T��U�V���W�X���Y�Z�[�\���]�^�_�`���a�b�c���d�e���f�g�h�i�j�k���lõ�m�n�������o�����p�q�r���s�t�����u�v�w�xL
���y���z�{�|�}�~����ɺ������������������������������������������������������������������������������������������@�A�B�C�D�E�F�GX�H�I�J���K�����L�M�����N�O�P�Q���R�S�T�U�V�W�X�Y�Z���[�\�]�^�_�`��a�b���c��d��e��f��g��h�i��������j�k�l�m�n���o�p�qd�r��s�t�u�v�w�x�y�z�{�|�}�~�����������������������������ɪ����������������������������������������������������@�A�B��Cp
���D���E�F�G��H�I�J��K�L��M��N�O�P�Q�R�S�T�U�V�W�X��Y��Z�[�\�]�^�_�`�a����b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q��r�s�t�u�v|�w�x�y�z�{�|�}�~�������������������������������������������������ư��ȿ����������������������������@��Aƿ���B�C�D�E�F�G�H���I�J�K�L���M�N�O�P�Q�R�S�T��U��V��W��X�Y�Z�[��߰��\���]�^��_�`�a�b�c��d�e��˦�f������g����������h���i�����j����k�l���m���n�o�p�q���r�s��t�u����v�η�w�x�y�z���{�|�}�~��������������������������������������������������������������������������������������������@�A�B���C�D�E���F�����G���H�����I�����J�K���Lű�����M�������N�O�P�Q�R�����S��������ƣ�������T�U�����V�W�������X��Y�Z���������[֢Ӹ��Ȭ�\�]���^�_�`�a��b�������c���d�eʹ�f�gƦ�h�i�j�������k�������l�����m�n�o�p̵���q�r���s�t�u�v���w�x���y�z�������{���|��}�~����������������������������������������������������������̱��������������������ȳ���������������������@�A�B�C�D�E�F����G�H�I�J�K�L��M��N�O�P�Q�R��S��T�U�V�WѢ�X�Y�Z�[�\�]�^��_�`�a��b�c�d�e�f�g�h�i���j�k���l�����m��n�o���p���q������r�s���t�u��v�w���x��y�z���{�|��}�~�����������������������������������Ƥ��������������������������������������������@�����Aӯ�B���C�D���յ�������E���F�������G�Hʢ�I�J�K���L�M�N�O�P���Q�R�S�T�U�V�W�XĿ���Y��ä�Zֱ�[�\�]�����^�_���`���a��bʡ�c�d���e�f����ü�g���h���i�j�k�l�m�n�o�p�q�r�s�����t�u�v�w�����x���y�z�{��|գѣ�}�~������������������������������������������������������������������������������������������@�A�B�C˯����D���E��F�G�����H�I�J�K�L�M�N�O�P�Q�R�S���T�U�V�غ���W�X�Y�����Z�[�\�]�^�_��Ϲ�`�a���b�c�d�e�f�g�h�i�j�k�l�m���nޫ�o�pƳ�q���r����s˲�t�u�v��w�xͫ�y��z�{�|�}�~հ�������������������������������������������������������������ì������������ʸ����֪�@���A���B���������C�D�E�Fʯ�G�H��I��J�K�L�M��������ɰ�N�O�P�Q�R�S��T�U����V�W�X���Y���Zש���[���\���]���^�_�`���a�������b���c�d����e�f���g�h�i���j�k������������l���m$���n�o�p�q���r���s�t�u�v���w���x���y��z�{˶�����|�}�~���������������������������������Ӳ��ȷ����������������������������������0���������@�A�B���C���D�Eµ�����F�G���H���I�J�K�����L�������M�N���O���P���Q���R���S�T�U�V�W�X�Y�Z�����̼���[�\�]�^���_�`�a�b���c<�d���e�f�g���h�i�j�������k�l�m�n���o�p�q�����r�s�t���u�v�w�x�y�z�{�|�}�~��������ĥ����������������������������������������������H ���������������������������@�A�B�C�D�E���F�G�H�I�J�K�L�M�N�O���P�Q�R�S�T���U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c���d�e�f�g�hʾ�����i���jT!�����k�l�m�n���o�����p�q�r�s�t�u�v�w�x���y�z�����{�|������ף�������}���~�������Ʊ��������������������������������������������`"�������»���������������������������@�A�B�C�D�E�F��G�H�I�J�K�L�M�N�O�P�Q�R��S�T�U�V�W�X�Y�Z�[�\�]��^�_�`�a�b��خ���c�����dl#��˽�eͺ�f�g���h�i���j���k���l�m�n�����o�p��q�r���s�t�u�v�w�x���y�z�{����|�����}���~����������������������������������������x$ϡ�����������������������˰����������������������������@��A���B�C���D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R���S�T�U��V��W�������X���%�Y�Z�[�\�]�^���_�`�a�b�c�d�e�f�g�h��i�j�k�l�m���n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������Ѩ���������������������&�ͻ����խ����������������������Ҥ���������������������������������@�A����B��C�D�E���F�G�H�I�J��K�L�M�N�O�P�Q�R�S�T�U���'�V�W�X�Y�Z�[�\�]�^�_�`���a�b�c�d�e�f�g�h�i�j��k�lվ�m�n�o�p�������q�r���sͯ��t�u�v�w�x�y���z���{�|�}�~�������������������������(����������������������������������Ц�����������������������������������������������������������@�A���B���C�D�E�F���G���H���I���J�)�K�L�M�N�O���P���Q���R�����S�T�����Ͳ�U���V���W���X��ɸ�Y���Z�[���\���]�^�_�`�a�b�c�d�e�f�g���h�i�����j�k���l���m���n���o�pǩ�q�*���r�s�t�u���v�w�x�y�z�{�|���}�~�������������������������������������������������������������������������������������������������+�����������@׭ƪ�A�B�C�D���E�F�G�H���I¨�J�K�L�M�N����O�P���Q�R�S���T�U�V���W�X�Y��Z�[�\���]�^���_�`�a�b�c���d�e�f�g��h��i�,�j�k�l�m�n�o�p���q�r�s���t�u��v�w�x�y�z�{��|�}�~�������������������������������������������������������������������������-�����@�A�B�C�D�E�F�G�H�I���J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�����o�p�q�r�s�t�������u�v�.�w�x�y�z�{�|�}�~��������������������������������ճ����������������������������������������������������������������������������@�/�A���B�C�D���E�����F���G�����H�I�J�K�L�M�N�������O���P�Q���R�S�����T�U�V�W�X�Y�Z���[�\�]�^�_�`Ŵ�a�b�c�d�e�f�g�h���i�jϵ�k�l�m�n1�o�p�q�r�s�t�u�v�w�x���y�z�{�|�}�~����������������������������������������������������������������������������@�A�B�C�D�E�F�G�H2�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v��w�x�y�z�{�|�}�~������������������ 3���������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L���M�N�O�P�Q�R�S���T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d,4�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������@�A�B�C�D85�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������D6�������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�aP7�b�c���d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{���|�}�~����������Լ��������γ������ɴ������������ֽ��������Ŧ���\8���������ϸ֯������������������������������Ѥ�������ͳ�����������������������������ά�����������������h9׺��������������������������������������Ե������������������������������ӧ��������������������������������ȱ����������t:�����������������������������������������@����A���B�C�D�E��F����G�H�I�J�K������L�M�N���O�P����Q��R�S�T�U��V�W�X�Y��Z�;�[��\�]�^�_�`�a�b�c���dǼ�e��f�g�h�i�j���k�l�m�n�o���p�q�������r���s�tȺ�u�v���w�x�y�z�{�|�}�����~����������������������������<������������������������������������������������������������������������@�����A�B���C�D�E�F���G�����H���I�J�K�L�M�N�O�����P�Q�R�=����������� ,8	D
P\h
t�����������(4@ L!X"d#p$|%�&�'�(�)�*�+�,�-�.�/123$405<6H7T8`9l:x;�<�=�>�>ҫ���S��������T�U�V�W����ˣ�X�Y���Z���[�������������\�]���^�_�`���a���b�c�������������d�e�f�g�h�i���j���k��Ү�����l�m���n���o���?�p�q����r�s��t�u�v����ְ��w�x�y�z��{���|�}�~Ƹ€��‚ƒ„…†‡ˆ‰Š‹ŒŽ���‘’“”�•–—˜™š›œžŸ �@��@��A�B�����C����D���E�����F�G�H�I�J�K��L�MФ�N���O��������P�����֫�Q�����R�S�T�������U�������V����W���X�Y���Z�[���\��������A��в��θ���]���^�_�`�a�b����̥�c�d�e�f�g�h�i�����j������ʤ�����k�l���m�nط���o��������������p�������������q���r���s���t�����u�v�B�w�x֬�y�z�{���|�}����~À������������ŧ�Á��Â��Ã��ÄÅÆ��ÇÈÉÊËÌÍÎÏÐÑÒÓ��ÔÕ��Ö����רÙ��Ú��ÛÜÝÞßƢà�C�@�A�B�C�D�E���F���G��Ҹ���H�I�J�����K��ǻ���L�M�N�����O�P�Q�R�S���T�U�V�W���X���Y���Z�[�\����]����^�_���`�a�b�c���������������D���d��e�f�g�h�i��j���k�l�m�n���o��p�q�r�s�t�u���v�w��Ĥϥ�x�y�z�{�|��}�~�Ā��ā�Ă㥹ĆćĈĉ��ĊċČčĎď���ĐđĒē�E�����ӷĔĕ��ĖėĘ�ę�ĚěĜĝĞğĠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N���O�P�Q��R�S���T����U�V�W�X�Y����Z�[�\�]�^�_�����`��aGҨ���b������c�d�e�f�g�����h�i���j���k���l�m�n�o�p�q�˴�r�����s����t�u�v�w��x�������y������z������������{��|�}��~HŀŁłŃ�ńŅͧņ�Ň�ňʼnŊ�ŋŌōŎŏŐőŒ��œ�ŔŕŖŗ�ŘřŚśŜŝŞş�Š�@�A�B�C�������Dɫ����E�F�G�Hܳ���I�Jܴ��ܵI�K�L���Mܹ�N�O�P���Qܷ���R��ܺܶ�Sܻâ�T�U�V�Wܼ��ܽ�X�Y��֥�Z���[���\�]����«�^ܸ����ܾ������о����_�����`�a��ܿ���b�c�dѿ��e(J�f���g�h���i�jέ���k�������������lԷ����̦���m�����n�o�����p���������q���������r�s�t�uɻ�v�w�x���yӢ�z�{���|�}���~ƻƀ��ƁƂƃƄ4Kƅ��ï����é��������ƆƇ��ƈ����Ɖ��ƊƋ����ƌ�ƍƎ��ݢ��ƏƐƑƒƓƔƕƖƗƘ����ƙƚã���ƛ��Ɯ��Ɲ�������ƞ�����Ɵ��Ơ�@�A@L��B�C��D�E�����F���G�H�I�J�K���������L���M�N�O�P�Q�������R�������S������ӫݡݣݥ��ݤݦݧҩ�T�U�V�W�X�Y�Z��ݩ�[�\ݶݱݴ�]�^LM�_�`�a�b�cݰ���d�e���f�g�h�iɯ�j�k�l��ݮ�m�n�o�pݷ�q�r��ݯ�sݸ�tݬ�u�v�w�x�y�z�{ݹݳݭĪ�|�}�~ǀݨ����ݪݫǁݲ��ݵӨݺǂݻçǃDŽXN��ݼDždžLJ��Lj��ljNJ��Nj��njǍ��ǎǏǐǑ��ǒ��ǓݿǔǕǖ����Ǘ������ǘǙǚݾǛǜǝ����ǞǟǠ�@�A�������B�C�D�E�F�����G�H�I���J�KdO�Lݽ�M�����N���O�P�Q�R����Ƽή���S���T�U�V�W�X�Y��Z�[�\�����]�^�_�`�a�bөӪ������c�d�e�f�g�h�i�j���k�l�m�n�o�p���q�r�s�����t�upP�v�w�x�y�z�{���|�}�~ȀȁȂȃȄȅȆ��ȇȈȉȊȋ�Ȍ��������ȍȎȏȐ��ȑ��ȒȓȔȕȖ��ȗ������ȘșȚ��ț��Ȝ����ȝ��Ȟ��ȟȠ�@�A�B|Q�C�D���E�F�G�H�������I�����J���K�L�M�N�O�P�Q�R��S���T�U���V�W�X�Y���Z�[�\�]�^�_�`�a�b�c�d�e�f���g�h���i���j�k�l�������m�n���o���R�p���q�r���s�t�u�v�����w�x���y�z�����{���|�}���~ɀɁɂɃɄ��Ʌ����Ɇɇ�Ɉ���ɉɊɋɌɍ��Ɏɏɐ�ɑɒɓɔɕɖɗɘəɚɛޤɜɝޣ�Sɞɟɠ�@�A�B�C�D�E�F�G�H��I�J�K�L���M��N�O�P���Q�Rε�S�T�U�V��W���X�Y�Z�[�\�]�^�_�`�����a�b�c�d�e�f�g�h�i�jǾ���ޢ�����k�l�T�m�n�oެ�p�q�r�sަ�����t�u�v�w�x�y�z�{�|�}�~ޡʀʁޥʂʃʄʅީʆʇʈʉʊިʋʌʍާʎʏʐʑʒʓʔʕʖޭʗ��ʘʙʚʛ޳ުޮʜʝ��ʞ�Uʟʠ�@�A��޶�Bޱ�C�D�E�F�G�H�I޲�J�K�L�M�N�O�P�Q�R�S�TѦ޵�U�V�W�X�Y�Z�[ޯ�\�]�^ް�_н�`�a�b޴��޹�c�d�e�f�g�h޸�i޷�j�k�l�m�n�o�V�p޻�q�r�s�t�u�v�w���x�y�z�{�|�����}�~޺ˀźˁ˂˃˄˅ˆ޼ˇˈˉˊˋˌˍ��ˎˏːˑ��˒˓˔˕˖˗˘˙˚˛˜˝˞˟ˠ�@�A���B�C�D޽�W�E�F�G�H�I޿�J�K�L�M�N�O�P�Q�R�S�TĢ�U�V�W�X��Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h޾�i��j�k�l�m�n�o�p�q�r�s�t�u�v�wպ�x�y�z���{�|�}�X�~̀́̂̃̄̅̆̇̈̉̊̋���²Ű��̌̍�̎̏̐̑̒��̓̔̕��̖̗̘�̛̙̜̝̞̟̠̚����@��A�Bʭ�C�D�E�F�G�H�I�������Ϻ��Yʴ�����J�K�L�M�N�O�P�������Q�R�S�T�U��V���W�X�Y�Z�[�\���]�^�_�`�a����b�c�����d��e�f�������g�h������i�j�k���l�m�n�o�p�Z��q�r�s��t����u�������v�w���������x�y���z�{�|�����}���~̀����́͂̓̈́��͇͈͆ͅ��͉͊͋���͌����������͍͎͏��Ӽ͓͐͑͒��͔�[��͕����͖͗͘��������͙͚��͛͜͝͞����͟��͠��֩�@���A���B���C�D�������E���F�G�H���I�J�K�L���M�N���O�P���Q�R���S�T�U���V�W����]�X�Y�Z�[�\�]�^Ӭ�����_�`���aЫ�b�c�d�e��f�g�h���i��j�k�l�m�n�o���p�q����r�s�t�u�v�w�x�y���z���{�|�}���~��΀΁΂΃�������΄^΅Ά���·�ΈΉ�Ί΋��Ό��΍ΎΏΐΑ�ΒΓΔ�ΕΖΗΘΙΚΛ�ΜΝΞΟΠ�@�A�B��C�D����E��F�G�H��I��J�K�L�M���N�O��P�Q_��R�S�T�U�V��W�X�Y���Z�[�\�]�^����_�`�a�b�c�d�e��f�g�h�i��j�k�l�m��n�o�p�q��r�s�t��u�v�w�x�y�z�{�|�}�~зπρςσ�τ$`υφχ�ψωϊϋόύ�ώϏϐϑϒϓϔϕ�ϖ���ϗϘϙϚ�ϛϜϝϞϟ���Ϡ�@�A�B�C�D�E�F�G�H�I�J�K�L�M���N�O�P�Q�R�S��T�U��V�W�X0aѪ�Y�Z�[����\�]�^�_�`�a�����b�c�d�e�f�g���h�i���j���k�l�m�n�o�p�q�����������r�s�����t����u���v˥�w���x�y�z�{���|�}�~ЀЁ�����<bЂԬ��Ѓ���ЄЅ��ІЇ��Ј��ЉЊЋЌ̻ЍЎЏ��АБВГД��ЕЖЗИЙ��К��ЛМНОПР���@Ϯ�A�B�C���D�E�F�G�H���I�J�K�L���M�N�OHc�P�����Q�Rװ���S�T���U�V�W�X���Y�Z�[��\��ԣ�]�^��ȹ�_�`�a�b�c���d�e���������f�g���h�i�j�k�l�m�n�����o�����p�q�r�����s�t���u���vTd�w�x���y�z�{�|�}�~р��стуфх��ц����чшщъы������ьэюяѐ��ёђѓ��єѕії����јљњћ�ќѝў��џ��Ѡ�@�A�B�C�D�E�F�G`e�H���I�J���K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�����d�e�f�g�h�i���j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}���~Ҁҁ�lf҂Ҫ҃�҄҅��҆҇҈҉ҊҋҌҍҎҏҐґҒғҔҕҖҗҘҙҚқҜҝҞҟҠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]xg�^�����_�������������������`�����������a�b�c���d�e�f���g���h���i�j�k�l���m�����n�o�p�q���r�s�t���u�v�w��x�y�z�{�|�}�~ӀӁӂӃӄ�h��ӅӆӇӈӉӊ��ӋӌӍӎӏӐӑӒӓӔӕӖӗӘәӚӛӜӝӞӟӠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_���`�i�a�b�c�d�e�f�g�h��i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~ԀԁԂԃԄԅԆԇԈԉԊԋԌԍԎԏԐԑԒԓԔԕԖԗԘԙղԚԛԜԝԞԟ�jԠ�@�A�B�C�D�E�F�G����H�I�J�K�L�M�N�O���P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�k�|�}�~ՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՒՓՔՕՖ՗՘ՙ՚՛՜՝՞՟ՠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�l�\�]�^�_�`�a�b��c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~րց��ւփքօֆևֈ։֊֋֌֍֎֏֐֑֖֚֒֓֔֕֗֘֙�m֛֜֝֞֟֠�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_���`�a�b�c�dƩ�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�n�x�y�z�{�|�}�~׀ׁׂ׃ׅׄ׆ׇ׈׉׊׋׌׍׎׏אבגדהוזחטڥ����������ڦڧ����ڨ�יѵ��Ѷ��ך����کڪ��ګ������כ���������o��֤ڬڭ���ʶלթ����ڮ����ڰگם��ڱڲڳ��ڴʫڵڶ����ڷ����ڸڹ��ѯ��ں������ڻڼמ������ڽ��ھ����ڿ˵��������ŵ�����������p��˭��������׻��̸ן��ı��������г����ν��������������������נ������лҥ����ǫ����á�����̷������������Ǵ�������@�A�B�C�D�E�F�G�q�H���I�J�K�L����M��N�O���P�Q�R�S�T�U�V�W���X�Y�Z�[���\�]�^�_�`�a�����b�c�d�e�f�g�h��ԥ�i�j�k�l�m�n�o���p�q�r�s�������t�u�v�w�x�r�y�z���{�|���}�~؀����؁ò؂؃؄؅؆؇؈��؉؊؋��،؍؎؏ؘؙؚؐؑؒؓؔؕؖؗ؛؜؝؞؟ؠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Qt�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~ـفقكلمنهوىيًٌٍَُِّْuٕٖٜٟٓٔٗ٘ٙٚٛٝٞ٠�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�������O������������������̰ƶ����������������������ó�������������� v����¸�����������������������������P�Q���������R׸��׬��������S���Ӯ�����T����U�V�W���X��Y�Z���[�\�����������]�^�_�`�a�b�c�d,w�e���f�g�����h�i�j�kԽ��l�m�n�o�p���q�r���s�t�u�v�w�x�y�z�{�|���}�~ڀȤځڂڃڄڅچڇڈډڊڋڌڍ�ڎ��ſ��ڏڐ��ڑ��ڒ��ړֺ��8xڔڕږԾ��ڗ��ژڙښڛ����ڜ����ڝ��ڞڟڠ�@�����A�B�����C�������D�E�F�����G�H�I���J�������K�L·�M�N�O��P���Q�����������R���S�TDy�U�V�W�X�Y���Z�[�\��ӻ�]���^�_̤�`�a�b�c���d�e�f�g�h�i�j�k�������l�m�����n�o�p�q�r�����s���t�����u���v�w�x���y�z�{�����|�}���~ۀPz������ہ��ۂۃ�������̣ۄۅۆۇۈ����ۉۊۋیۍێ��ۏېۑےۓ۔ەۖۗۘۙۚ��ۛۜ��۝۞����۟����۠���@���A���B�C�D�E�F���G�H��\{�I���J�K�L���M���N�O�P�Q�R�S�T�����U�V�W���X�Y�Z�[�\�]�^���_���`�a�b�c�d�e�f�g�h�i�j�k�����l�m��n�o���p�q�r�s�t�u�v���w�x�y�z�{h|�|�}�~܀܁܂܃܄܅܆܇܈܉܊�܋܌܍܎܏ܐܑܒܓܔܕܖܗܘܙܚܛܜܝܞܟܠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Zt}�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~݂݄݆݈݀݁݃݅݇݉݊݋݌ݍݎݏݐݑݒݓݔݕݖݗݘݙݚݛ�~ݜݝݞݟݠ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�������a��ת�����������������������������������b������������������c��������d����ԯϽշ��������e�����f�g�h���i�j�k�l�����m���n�o�p�q�����r�s�t�u��v�w���x�y�z�����{���|Ǩ���}�Ѹ�~���ހށނރބӭޅ����ކ������އވ����މ��ԶΥ����ފދ�ތ������ލ��������ގ����ޏ�ސޑ��ޒޓޔ������ޕޖޗ׷ޘޙ���@�A�B�C�D�E�FHI J,K8LDMPN\OhPtQ�R�S�T�U�V�W�X�Y�Z�[�\^_`(a4b@cLdXedfpg|h�i�j�k�l�m�n�o�p�q�rtuv$w0x<yHzT{`|l}x~�����������������������ޚޛѡѷ��ޜ��ޝ͸������ޞ;ޟ����ޠ�@ͨ���A�������������B�C�D���E�F�G�H�I�J�������K�L�M�N�O�����P���Q�R�����S���T���U�����V���W�X��Y�Z�[�\�]���^�����������_�`�a�����b�c���d�e�f�g�h�i��Dz�jң�k�l���m�n�o�p�����q�r�s�t�u�����v�w�x�y�z�{�|���}��Ȅ��~����߀߁߂߃��߄߅��߆߇߈߉ߊ��ߋ��ߌ��ߍ�ߎ�ߏ�ߐ�ߑߒߓ�����ߔߕ��ߖߗߘаߙ�ߚ����ۢ��ߛ�����ߜۡ�����ߝߞۥߟԅߠ���@�Aۧۤ�Bۨ�C�D���E�F�G��ۣۦ֣�H۩�I�J�Kۭ�L�M�Nۮ۬���O�P�Q��۫�R�S�T۪�����U�Vۯ�W���X۰�Y�Z�[�\���]�^�_���`�a�b�c��۱�d��e�f���g۲�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{���|�}�~�۴���۳۵�����������۷�۶�������۸����������۹��@ۺ�A�B������������C���D�E�F�G���H�I���J�K��̪�L�M����������N�O�P�����Q���Rͪ���������S����ø�������T�U�V���������W�X�Y�Z�[���\���]���^�������_�`�������a�b�c�d�e�f�g��ȩ�h�i�j�k�l�m�����n�o�p�q�r�s���t�u�������v�w�x�y�����z�{�|�}���~������������������������Ұ���������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y��Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m���n�o�p�q�r�s�t�u�v�w�x(��y�z�{�|�}�~������������������������������������@�A�B�C�D�E���F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V4��W�X�Y�Z�[�\�]�^���_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������������������@������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s���tL��u�v�w�x�y�z�{�|�}�~������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�SX��T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b���c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������d�����������������@�A�B�C�D�E�F�G���H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�pp��q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N���O|��P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z���{�|�}�~�����������������������������������������ǥ�����������������������������������������Կ����������������ť����Ǯ��ǯ�����������������������������������Ǧí������������������������������������ͭ����ա�ϳ���������������ҿ�����������������������������������п�����������������ê������������׶���@����������������������A�������������������B��������þ���C���������D����E������������������F���������G�����������H���������������������������I�����������J�K���L�M�N�O�P�Q�R�S�����T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������Ě�������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[��������\����������������������բ������������]Л���������������^�����������������������_���������`�����a�����b���c�����d�e�f�g�h�i�j���k�l�m���n�o������������p�q�r�s�������t��ܜ���u���v����½¤�����wªİ���x�y���z�{�|�����}�~�������������Ժ������������������������������������������������¡��������@���A����B�C�D���E�F����϶�G�H���I�J�K�L�M�N�O�P�Q�R���S�T�U�V�W�X�Y�Z���[�\���]�^���_�`���a�b�������c�ȸ���d�e���������f���g�h��Ӻ�����i�j���k�l���m�n�o�p�q�r�s�t�u�v���w�x�y�z�{�|�}����ѩ�~�����������������������������������������ù�����������������������˪�ϼ���@�A�B�C�D�E�F�G�H���I�J���K�L���M¶�N�O�P�Q�R����S�T�U�V���W��X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�����j�k���l�m���n���o�p���q�������r�s���t�u�v���w�x�y�z�{�|�}�~���ѥ��������������������������Ь������������������������@�A���B�C���D�E�F�G�H�I�J���K���L���M�N���O���P�Q�R�S�T�U�V�W�X�Y�Z$��[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��Τ�������������������������������0�����������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p<��q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������@�A�B�C�D�Eҳ�������˳����������H�������Ԥ­����������F���G���Ƶ�H����Iӱ�����J�������������K����ȧ�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�cT��d�e�f�g�h�i�j�k�l�m�n�o�p�q���r�s����t��u�vƮ���w�x�y��ʳ�z�{�|�}�~����������������������������`����������@�A�B�C�D���E�F���G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c���d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�tl��u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������x�����������������������@���A���������������ظ�����B�C�D�E�F�G�H�I�J�K�L��M�Nܰ�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e���f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������@�A�B�C�D�E���F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q��Ԧ��ѱ����R��¿��ʻ��������פ�����������������S�����������T�������U�V�����������W�X��ƭ���Yɧ�������������������Z����[�\�]�^�_�`�a�����b�c�d�e�������f���g���h�i�j���������k�l���m�n�o�p�q�����r�s�t�u���v���w�x�y�z���{�|�}�~������������������������������������������������������@���A�B�C�D�E�F���G�H�I���J�K�L�M�N�O�P�Q�R�S�T���U�V�W���X�Y�Z�[�\�]�^�_�`�a�b���c�dت�e�f�g�h�i�j�k�l����m�n�o̱�p�����������q�������r�s�t���uκ�v���w�xħ�y�z�{�|�}�~����������������������������������@�A�B�Cز�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c��d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������@�A�B�C���D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������³���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\ ��]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������,��������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|8��}�~�������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\D��]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������P��������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[��������\Ÿѻ�]�����Ѽ�^���_��ԧ�`��������a�b�����\��c��������������ȵ�����d�����e���f�g�h���i�����j�������k���l�m�n�o�����p�����������������q�rӥ���s���t�u�v�w�x�y�z�{�|�}��¹h��~������������������������������������´�����������������������������������������������@�A�B�C�D�E�F�G�H���I�J�K���L�M���N�����Ot��P�Q�R�S���T�U�V�W���X�Y�Z������[���\�]ǭ�^�_�`Ĭ�a�b�������c�����d���e�f���g���h�����i�j�k�l���m�n�o�p�q�r�s�t�u���v�����w���x���y�z�{�|�}�~��������������������ؾ������������ػ��ܱ�������������������������������������������������@�A�B�C�D���E���F���G�����H���I�J�K�L���M�N�O�P�Q�R�S�T�U�V�W����X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������ȣ����������������������������������������������������	����̅؆������ �,�8�D�P�\�h�t�������������țԜ�������(�4�@�L�X�d�p�|�����������ıвܳ�����$�0�<�H�T�`�l�x�������D��]L��`	���
`�	���t�	��%��	����g��	�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O���	�U����������������������������������������	�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������-P�	����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	o�	�����V���W������]l���������H������������`5����g���\4]T]t]�]�]�]�]�^�^�_�_``�e�j�s�����?��P�X��������y�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCD@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABC@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVVVVVVVVVVVWXYZ[\]^_`abcdefghijklmnopqVrsVtVVVVuvwxyz{|}~��������������������������VVVVVVVVVVVVVVVVVVVVV@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������������������@�	

�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����	

��������	������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

������	

��	��	

��	
������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	




 !"#$%&'()*+,-./01











��	

��	
������	

��	

 !"#��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./01234567888889:;8��	

 !"#$%&��	
��������	
��	��	

 !"#$%&''''''''''''''''''''''''''����������	

��	

��	

 !"#$%&��	

                                 ����	
�����	

;$p��@���h����zRx�$(��0FJw�?:*3$"D0�� \���$HWGNU�@��"����`�p������\`�p���u�
t��"��"���o`��
��"0��h	���o`���o�oL���o�"P`GA$3a1�GA$3p1094PtGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realigngbk.so-2.7.8-141.el8.x86_64.debug+��r�7zXZ�ִF!t/��]?�E�h=��ڊ�2N����n ��)�I���� �Q�{�H[5�b�S�O�/D�5�g`]8��'5P<�9�����ě��ұ�
P��o��u�,iG�O�l�2=�<�1N(2���z��4W߶}��	y���kV�X��d�vzˉ�Z�O�%zG!k1jP��֐h�X�D���kM�%$�B<���x��
�uO��/w�k���,\�ۤ�u�SN
��+���=��}�ކ�3m�����o���s�Df
&�O,&V��_!=77��^�����'NNR��f�0��7�$�J��?���7����E�j�&��K������q�*y���~>�/�A�$��������RK�Uth�On]q��/���1���)J�p����E���5�\
�C�Ա�Ȧ����`VBI��ѣ�^��0�vo�*\�7�`699�rE���"_?=�]��q�N��,�y���̔�M��Шp]�I���
{o��]����ۼ�i�*��V_����k��,���D‡<��'(i����$�ڛ�
O)#A�C��8��ۛ�y��7�����ξ�<Q��)D/�_�5�瓒S)�.���[�v�dq���!%�8�P�D�m���w�8�c��YK���f�%�'�.g]}2����׏?��zn	d
��(����RB���<���Ƅ�b���P�>�h0R=����0�ah��\������0���ބh�u��4�1���&3�o�}|0
&�1�,�>��)�(Q������5��f��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oLLE���o`` T��h^B��0hc@@0npp w���}tt
���0� �����$�����t�p�p� ���"�����"�����"��` ��"�����"�� ��"�(�(�"(��0�b(��
�(D�H��+PKLH[���.�. lib64/ruby/enc/trans/utf8_mac.sonuȯ��ELF>p@@'@8	@ ��$�$�� $$��888$$���  S�td���  P�td���<<Q�tdR�td��$�$ppGNU���	��k����~��q�� �	BE���|·8��qX Ut , F"�0 $�8 $f$�0 $__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalize__stack_chk_failInit_utf8_macrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4�ui	�ii
��$ �$��$�$�$@�$I�$`8�$`$0$08$�@$@`$Ih$@x$`8�$`�$�$�$�$ $  $( $��H��H��$H��t��H����5$�%$��h�������h��������h��������%�$D���%�$D���%�$DH�=�$H��$H9�tH�V$H��t	�����H�=�$H�5�$H)�H��H��H��?H�H�tH�%$H��t��fD�����=E$u+UH�=$H��tH�=�$�Y����d����$]������w������H�G1�Ð���W1�;Wt2f�Hcʃ�H��D������ʃ�)ʉWD�D��W;Wu�Ð�ff.�@��AWAVAUATUSH��D�GD�OdH�%(H�D$1�H����H���"E9�u I�ɺ��A��OL��Ic�A��L�HD�D�����A�A��A)�D�GF�T	�D�GD;Gu�L�@H�xI�H�PH��D�E�D�NF�D�FD�9�v@�4H�\$dH3%(��H��[]A\A]A^A_�1�E9�tBf�Ic�A��H��D�D�����A�A��A)�D�GD�L�D�GD�OE9�u�L�^E��L��L9�r�fDI��A�qMcɉwE�S�F�A��A��A��F�A��E)�D�OI9�u�D��D)ƒ��������)��&���E��1�A��A��C�4��D)�A��+Hc��47����L�%�H�-�-L�mM�t$I��G��F�|A8�wC84+s|1��K�Ic�A��H��D�D�����A�A��A)�D�GD�L1�HcWI�������u	D�OE9�u�H��m���H�1�H9�����L�^����f���I�D)�Hc�E�3C�4���L�E��L��A��u+��9�t$B�4A��A��A��Dރ�D)�Hc��47��������t	������L��A�H���ΈL$L��H���L$��uI��A�D�T$H�L$H�G1�I��@�1Lc�H����B�4��I9�w�W�|����@����r����f����D���@��H��H�=Q$�<���H�=�$H���,�����H��H���UTF8-MACUTF-8ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïñòóôõöùúûüýÿBĀāĂ㥹ĆćĈĉĊċČčĎďĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĨĩĪīĬĭĮįİĴĵĶķĹĺĻļĽľ��ŃńŅņŇňŌōŎŏŐőŔŕŖŗŘřŚśŜŝŞşŠšŢţŤťŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽž��ƠơƯư�ǍǎǏǐǑǒǓǔc�df�gi�jl�mo�pr�suQvǦǧǨǩǪǫ�wy�z�{ǰǴǵǸǹ}�~�Q���уJ�ȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȞȟȦȧȨȩ������Ȯȯ���Ȳȳ�̀́̓�ʹ;z`��·Q������Q������Q�����������Q������Q�I��Q����Q����Q��Q� �!4�3�46Q7�8�9;Q<�=�>@QA�B�CEQF�G�HJQK�L�MOQP�Q�RTQU�V�WYQZ�[�\�h�n�oqQr�sxQ���ч�$��Q��$@Q��Ѳ��Q��ѹ��{\����Q���������Z�����Q���Q����+m>�?�A� �S
	<f�g�iQkmV	P�oQqs�tQ��шQ��	���Q��Ѣ��Q��ѩ��Q�4
���Q������Q���
�T����4Hl���/��Q\ḀḁḂḃḄḅḆḇ���ḊḋḌḍḎḏḐḑḒḓ������ḘḙḚḛ�ḞḟḠḡḢḣḤḥḦḧḨḩḪḫḬḭ�ḰḱḲḳḴḵḶḷ�ḺḻḼḽḾḿ�pṀṁṂṃṄṅṆṇṈṉṊṋ	�
�
��ṔṕṖṗṘṙṚṛ�ṞṟṠṡṢṣ���ṪṫṬṭṮṯṰṱṲṳṴṵṶṷ!�"$�%ṼṽṾṿ�|	ẀẁẂẃẄẅẆẇẈẉẊẋẌẍẎẏẐẑẒẓẔẕẖẗẘẙ�7ẠạẢả�8Q:�;Q=�>Q@�AQC�DQF�GQI�JQL�MQO�PQR�SQUẸẹẺẻẼẽ�VQX��
Qj�kQm�nQp�qQs�tỈỉỊịỌọỎỏQv�wQy�zQ|�}QрQ�уQ�цQ�щQ�ьQ�яQ�ђỤụỦủQ�ѕQ�јQ�ћQ�ўQ�ѡỲỳỴỵỶỷỸỹg
�ѳ�Q��ѹ��Q����Q������Q�����Q������Q�������Q�����Q������Q�����Q������Q����Q����Q�	Q
�
�Q�|Q%�&�'�)Q+-�.0Q13�4�6Q8�9�:�<Q>@�A�CQE�FQHJ�KMQNP�Q�SQUW�XZQ[]�^�`Qbd�egQh�i�jlQmS|
р��ф�Q���э�ё��ѕ�Q���ў�Ѣ��Ѧ�Q���ѯ�ѳ��ѷ�Q������������Q�������������Q������Q���Q���Q���Q������ι�H��	�
�
Q��Q�QQQ �!�"Q$�%Q'�(�)�+Q-�.�/1�24Q5�6�7`9�:<�=?�@BQC´�Hht	�
|tt
@@H�eQgi�j�lQnp�q�sQuw�x�zQ|~���Q��ц��Q��э��TXѡ��Q��Ѩ��Q��ѯ��Q��E�Q������Q������Q������Q������Q������Q���h�p��Q��Q�Q�
Q
�Q�Q�Q�Q!�#Q&�(Q+�-Q0�2Q5�7Q:�<Q?�A�CF�HK�MP�RU�WZ�\_�ad�fi�kn�ps�ux�z}�����шQ�эQ�ђQ�ї��Q�ќQ�ѡQ�ѦQ�ѫQ�ѰQ�ѵQ�ѺQ�ѿQ���Q���Q���������������������������������
��Q�Q�Q�Q"�$Q'�)Q,�.Q1�3Q6���8Q;�=Q@�BQE�GQJ�LQO�QQT�V�X[�]`�be�gj�lo�qt�vy�{~������������������ѝQ�ѢQ�ѧQ�ѬQ�ѱQ�ѶQ�ѻQ��Q���Q���Q���Q�����Q���Q���Q����������������������
����!$�&Q(�*Q-�/Q2�4Q7�9Q<�>QA�CQF�HQK�MQP�RQU�WQZ�\Q_�aQd�fQi�k�mp�r��u�wz�|������������������������������ѲQ�ѷQ�ѼQ��Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q�������	�		�			�		���		�		�	 	�"	%	�'	*	�,	/	�1	4	�6	9	�;	Q=	�?	QB	�D	QG	�I	QL	�N	QQ	�S	QV	�X	Q[	�]	Q`	�b	Qe	�g	Qj	�l	Qo	�q	Qt	�v	Qy	�{	Q~	р	��	�	��	�	��	�	��	�	��	�	��	�	��	�	��	�	��	�	��	���	��	�	��	�	��	�	��	�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	��	Q�	�	Q�	�	Q
�
Q
�
Q

�

�

�

�
!
�#
&
�(
+
�-
0
�2
5
�7
:
�<
?
�A
D
�F
I
�K
N
���P
QR
�T
QW
�Y
Q\
�^
Qa
�c
Qf
�h
Qk
�m
Qp
�r
Qu
�w
Qz
�|
Q
с
Q�
ц
Q�
ы
Q�
ѐ
Q�
ѕ
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
Q�
��
Q�
��
Q�
��
��Q�
��
Q�
�
Q�
�
Q�
�
Q�Q�	Q�Q�Q�Q�Q "�$'�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[^�`c�eQg�iQl�nQq�sQv�xQ{�}Q�тQ�чQ���ьQ�ёQ�іQ�ћQ�ѠQ�ѥQ�Ѫ��������������������������������������������Q��Q��Q��Q�Q�
Q
�Q�Q�Q�Q!�#Q&�(��Q+�-Q0�2Q57�9<�>A�CF�HK�MP�RU�WZ�\_�ad�fi�kn�ps�ux�zQ|�~Q�уQ�шQ�эQ�ђQ�їQ�ќQ�ѡQ�ѦQ�ѫQ�ѰQ�ѵQ�ѺQ�ѿ���������������������������������������
�

�
Q	
�
Q
�
Q
�
Q
�
Q
�
Q"
�$
Q'
�)
Q,
�.
Q1
�3
Q6
�8
Q;
�=
Q@
�B
QE
�G
QJ
L
�N
Q
�S
V
�X
[
�]
`
�b
e
��g
j
�l
o
�q
t
�v
y
�{
~
��
�
��
�
��
�
��
Q�
ѓ
Q�
ј
Q�
ѝ
Q�
Ѣ
Q�
ѧ
Q�
Ѭ
Q�
ѱ
Q�
Ѷ
Q�
ѻ
Q�
�
Q�
��
Q�
��
Q�
��
Q�
��
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
�
��
����
���Q� Q#�%Q(�*Q-�/Q2�4Q7�9Q<�>QA�CQF�HQK�MQP�RQU�WQZ�\Q_a�cf�hk�mp�ru�wz�|����������������������(��Q�ѨQ�ѭQ�ѲQ�ѷQ�ѼQ��Q���Q���Q���Q���Q���Q���Q���Q�������������������	���� �"%�'*�,/�0Q3�5Q8�:Q=�?�4 QB�DQG�IQL�NQQ�SQV�XQ[�]Q`�bQe�gQj�lQo�qQtv�x{�}������������������������������������Q�ѽQ���Q���Q���Q���Q���Q���Q��@!���������� , 8!D"�?L"Q���Q��Q��Q�Q�Q
�Q��� �"%�'*�,/�14�69�;>�@C�EH�JM�OR�TQV�XQ[�]Q`�bQe�gQj�lQo�qQt�vQy�{Q~рQ�хQ�ъQ���"яQ�єQ�љ��������������������������������������������Q���Q���Q���Q���Q��Q��Q�Q�Q�
Q�Q�Q�Q�!Q$&�(+��#�-0�25�7:�<?�AD�FI�KN�PS�UX�Z]�_b�dg�iQk�mQp�rQu�wQz�|QсQ�цQ�ыQ�ѐQ�ѕQ�њQ�џQ�ѤQ�ѩQ�Ѯ�������������������$��������������������������Q��Q��Q�Q�	Q�Q�Q�Q�Q �"Q%�'Q*�,Q/�1Q4�6Q9;�=@�BE�GJ�LO�QT�VY�[^�`c�eh��%�jm�or�tw�y|�~Q�тQ�чQ�ьQ�ёQ�іQ�ћQ�ѠQ�ѥQ�ѪQ�ѯQ�ѴQ�ѹQ�ѾQ�������������������������������������������&	�
Q
�Q�Q�Q�Q!�#Q&�(Q+�-Q0�2Q5�7Q:�<Q?�AQD�FQI�KQNP�RU�WZ�\_�ad�fi�kn�ps�ux�z}�������������Q�їQ�ќQ�ѡQ���'ѦQ�ѫQ�ѰQ�ѵQ�ѺQ�ѿQ���Q���Q���Q���Q����������������������������
�����Q"�$Q'�)Q,�.Q1�3Q6�8Q;�=Q@�B��(QE�GQJ�LQO�QQT�VQY�[Q^�`Qce�gj�lo�qt�vy�{~��������������������������Q�ѬQ�ѱQ�ѶQ�ѻQ��Q���Q���Q���Q���Q���Q���Q���)��Q���Q�����������������
����!$�&)�+.�03�4Q7�9Q<�>QA�CQF�HQK�MQP�RQU�WQZ�\Q_�aQd�fQi�kQn�pQs�uQxz�|��*��������������������������������������Q��Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q��Q��Q���	�����, �"%�'*�,/�14�69�;>�@C�EH�IQL�NQQ�SQV�XQ[�]Q`�bQe�gQj�lQo�qQt�vQy�{Q~рQ�хQ�ъQ������������������������������-��������������Q���Q���Q���Q���Q���Q���Q���Q��Q��Q�Q�Q�
Q�Q���!�#&�(+�-0�25�7:�<?�AD�FI�KN�PS�UX�Z� .]�^Qa�cQf�hQk�mQp�rQu�wQz�|QсQ�цQ�ыQ�ѐQ�ѕQ�њQ�џQ�������������������������������������������Q���Q���Q��Q��,/�Q��Q�Q�	Q�Q�Q�Q�Q �"Q%�'Q*�,�.1�36�8;�=@�BE�GJ�LO�QT�VY�[^�`c�eh�jm�or�sQv�xQ{�}Q�тQ�чQ�ьQ�ёQ�і�80Q�ћQ�ѠQ�ѥQ�ѪQ�ѯQ�ѴQ�������������������������������������������Q��Q�Q�
Q
�Q�Q�Q�Q!�#Q&�(Q+�-Q0�2Q5�D1�7Q:�<Q?�A�CF�HK�MP�RU�WZ�\_�ad�fi�kn�ps�ux�z}�����шQ�эQ�ђQ�їQ�ќQ�ѡQ�ѦQ�ѫQ�ѰQ�ѵQ�ѺQ�ѿQ���Q���Q������P2����������������������������
��Q�Q�Q�Q"�$Q'�)Q,�.Q1�3Q6�8Q;�=Q@�BQE�GQJ�LQO�QQT�V�X[�]`�be�gj�lo�q�\3t�vy�{~������������������ѝQ�ѢQ�ѧQ�ѬQ�ѱQ�ѶQ�ѻQ��Q���Q���Q���Q���Q���Q���Q����������������������
�h4����!$�&Q(�*Q-�/Q2�4Q7�9Q<�>QA�CQF�HQK�MQP�RQU�WQZ�\Q_�aQd�fQi�k�mp�ru�wz�|������������������������������t5�ѲQ�ѷQ�ѼQ��Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���������	���� �"%�'*�,/�14�69�;Q=�?QB�DQG�IQL��6�NQQ�SQV�XQ[�]Q`�bQe�gQj�lQo�qQt�vQy�{Q~р��������������������������������������������Q���Q���Q���Q���Q���Q���Q�����7Q���Q���Q��Q��Q�Q�Q
����!�#&�(+�-0�25�7:�<?�AD�FI�KN�PQR�TQW�YQ\�^Qa�cQf�hQk�mQp�rQu�wQz�|QсQ�цQ���8ыQ�ѐQ�ѕ��������������������������������������������Q���Q���Q���Q���Q��Q��Q��Q�Q�	Q�Q�Q�Q�Q "�$'��9�),�.1�36�8;�=@�BE�GJ�LO�QT�VY�[^�`c�eQg�iQl�nQq�sQv�xQ{�}Q�тQ�чQ�ьQ�ёQ�іQ�ћQ�ѠQ�ѥQ�Ѫ�������������������:���������������������������Q��Q��Q��Q�Q�
Q
�Q�Q�Q�Q!�#Q&�(Q+�-Q0�2Q57�9<�>A�CF�HK�MP�RU�WZ�\_�ad��;�fi�kn�ps�ux�zQ|�~Q�уQ�шQ�эQ�ђQ�їQ�ќQ�ѡQ�ѦQ�ѫQ�ѰQ�ѵQ�ѺQ�ѿ�������������������������������������� � ��< � Q	 � Q � Q � Q � Q � Q" �$ Q' �) Q, �. Q1 �3 Q6 �8 Q; �= Q@ �B QE �G QJ L �N Q �S V �X [ �] ` �b e �g j �l o �q t �v y �{ ~ �� � �� � �� � �� Q� ѓ Q� ј Q� ѝ Q� ��=Ѣ Q� ѧ Q� Ѭ Q� ѱ Q� Ѷ Q� ѻ Q� � Q� �� Q� �� Q� �� Q� �� �� � �� � �� � �� � �� � �� � �� � �� � �� !�!!�!!�
!!�!!�!!�!Q!� !Q#!�%!Q(!�*!Q-!�/!Q2!�4!Q7!�9!Q<!�>!��>QA!�C!QF!�H!QK!�M!QP!�R!QU!�W!QZ!�\!Q_!a!�c!f!�h!k!�m!p!�r!u!�w!z!�|!!��!�!��!�!��!�!��!�!��!�!��!�!��!�!��!Q�!Ѩ!Q�!ѭ!Q�!Ѳ!Q�!ѷ!Q�!Ѽ!Q�!�!Q�!��!Q�!��!Q�!��!Q�!��!Q�!��!Q�!��?��!Q�!��!Q�!��!��!�!��!�!��!�!��!�!��!"�""�	""�""�""�""�" "�""%"�'"*"�,"/"�0"Q3"�5"Q8"�:"Q="�?"QB"�D"QG"�I"QL"�N"QQ"�S"QV"�X"Q["�]"Q`"�b"Qe"�g"Qj"�l"Qo"�q"Qt"v"�x"{"��@�}"�"��"�"��"�"��"�"��"�"��"�"��"�"��"�"��"�"��"�"��"�"��"�"��"Q�"ѽ"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"��"Q�"�"Q�"�"�##�##�
#
#�##�##�#�B#�#!#�##&#�(#+#�-#0#�2#5#�7#:#�<#?#�A#D#�E#QH#�J#QM#�O#QR#�T#QW#�Y#Q\#�^#Qa#�c#Qf#�h#Qk#�m#Qp#�r#Qu#�w#Qz#�|#Q#с#Q�#ц#Q�#�#��#�#��#�#��#�#��#�#��#�#��#�#��#�#��#�#��#�#�C��#�#��#�#��#�#��#�#��#Q�#��#Q�#��#Q�#��#Q�#��#Q�#��#Q�#��#Q�#��#Q�#�#Q�#�#Q�#�#Q$�$Q$�	$Q$�$Q$�$�$$�$$�$"$�$$'$�)$,$�.$1$�3$6$�8$;$�=$@$�B$E$�G$J$�L$O$�Q$T$�V$�DY$�Z$Q]$�_$Qb$�d$Qg$�i$Ql$�n$Qq$�s$Qv$�x$Q{$�}$Q�$т$Q�$ч$Q�$ь$Q�$ё$Q�$і$Q�$ћ$Q�$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$�$��$Q�$��$Q�$��$Q�$��$Q�$�(E�$Q�$�$Q�$�%Q%�%Q%�
%Q
%�%Q%�%Q%�%Q%�%Q!%�#%Q&%�(%�*%-%�/%2%�4%7%�9%<%�>%A%�C%F%�H%K%�M%P%�R%U%�W%Z%�\%_%�a%d%�f%i%�k%n%�o%Qr%�t%Qw%�y%Q|%�~%Q�%у%Q�%ш%Q�%э%Q�%ђ%�4FQ�%ї%Q�%ќ%Q�%ѡ%Q�%Ѧ%Q�%ѫ%Q�%Ѱ%Q�%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%�%��%Q�%�%Q�%�&Q&�&Q	&�&Q&�&Q&�&Q&�&Q&�&Q"&�$&Q'&�)&Q,&�.&Q1&�@G�3&Q6&�8&Q;&�=&�?&B&�D&G&�I&L&�N&Q&�S&V&�X&[&�]&`&�b&e&�g&j&�l&o&�q&t&�v&y&�{&~&��&�&ф&Q�&щ&Q�&ю&Q�&ѓ&Q�&ј&Q�&ѝ&Q�&Ѣ&Q�&ѧ&Q�&Ѭ&Q�&ѱ&Q�&Ѷ&Q�&ѻ&Q�&�&Q�&��&Q�&�&��&�&�LH��&�&��&�&��&�&��&�&��&�&��&�&��&�&��&�&��&�&��&'�''�''�
'Q'�'Q'�'Q'�'Q'� 'Q#'�%'Q('�*'Q-'�/'Q2'�4'Q7'�9'Q<'�>'QA'�C'QF'�H'QK'�M'QP'�R'�T'W'�Y'\'�^'a'�c'f'�h'k'�m'�XIp'�r'u'�w'z'�|''��'�'��'�'��'�'��'�'��'�'љ'Q�'ў'Q�'ѣ'Q�'Ѩ'Q�'ѭ'Q�'Ѳ'Q�'ѷ'Q�'Ѽ'Q�'�'Q�'��'Q�'��'Q�'��'Q�'��'Q�'��'Q�'�'��'�'��'�'��'�'��'�'��'�'��'�'��'(�((�	((�dJ�((�((�((�( (�"(Q$(�&(Q)(�+(Q.(�0(Q3(�5(Q8(�:(Q=(�?(QB(�D(QG(�I(QL(�N(QQ(�S(QV(�X(Q[(�](Q`(�b(Qe(�g(�i(l(�n(q(�s(v(�x({(�}(�(��(�(��(�(��(�(��(�(��(�(��(�(��(�(��(�(��(�pK�(Ѯ(Q�(ѳ(Q�(Ѹ(Q�(ѽ(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(��(Q�(�(��(�(��(�(�))�))�
)
)�))�))�))�)!)�#)&)�()+)�-)0)�2)5)�7)Q9)�;)Q>)�@)QC)�E)QH)�|L�J)QM)�O)QR)�T)QW)�Y)Q\)�^)Qa)�c)Qf)�h)Qk)�m)Qp)�r)Qu)�w)Qz)�|)�~)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)�)��)Q�)��)Q�)��)Q�)��)Q�)��)Q�)��)Q�)��)Q�)��)��MQ�)��)Q�)��)Q�)�)Q�)�)Q�)�)Q*�*Q*	*�**�**�**�**�*"*�$*'*�)*,*�.*1*�3*6*�8*;*�=*@*�B*E*�G*J*�L*QN*�P*QS*�U*QX*�Z*Q]*�_*Qb*�d*Qg*�i*Ql*�n*Qq*�s*Qv*�x*Q{*�}*Q�*т*Q�*��Nч*Q�*ь*Q�*ё*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*�*��*Q�*��*Q�*��*Q�*��*Q�*��*Q�*��*Q�*�*Q�*�*Q�*�+Q+�+Q+�
+Q
+�+Q+�+Q+�+Q++� +#+��O�%+(+�*+-+�/+2+�4+7+�9+<+�>+A+�C+F+�H+K+�M+P+�R+U+�W+Z+�\+_+�a+Qc+�e+Qh+�j+Qm+�o+Qr+�t+Qw+�y+Q|+�~+Q�+у+Q�+ш+Q�+э+Q�+ђ+Q�+ї+Q�+ќ+Q�+ѡ+Q�+Ѧ+��+�+��+�+��+�+��+�+��+�+��+��P�+��+�+��+�+��+�+��+�+��+�+��+�+��+�+��+�+��+Q�+��+Q�+�+Q�+�+Q�+�,Q,�,Q	,�,Q,�,Q,�,Q,�,Q,�,Q",�$,Q',�),Q,,�.,Q1,3,�5,8,�:,=,�?,B,�D,G,�I,L,�N,Q,�S,V,�X,[,�],`,��Q�b,e,�g,j,�l,o,�q,t,�v,Qx,�z,Q},�,Q�,ф,Q�,щ,Q�,ю,Q�,ѓ,Q�,ј,Q�,ѝ,Q�,Ѣ,Q�,ѧ,Q�,Ѭ,Q�,ѱ,Q�,Ѷ,Q�,ѻ,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,�,��,��R-�-Q-�-Q
-�-Q-�-Q-�-Q-�-Q-� -Q#-�%-Q(-�*-Q--�/-Q2-�4-Q7-�9-Q<-�>-QA-�C-QF-H-�J-M-�O-R-�T-W-�Y-\-�^-a-�c-f-�h-k-�m-p-�r-u-�w-z-�|--��-�-��-�-��-Q�-я-Q�-є-Q�-љ-Q�-��Sў-Q�-ѣ-Q�-Ѩ-Q�-ѭ-Q�-Ѳ-Q�-ѷ-Q�-Ѽ-Q�-�-Q�-��-Q�-��-Q�-��-��-�-��-�-��-�-��-�-��-�-��-�-��-�-��-�-��-�-��-.�..�	..�..�..�.Q.�.Q.�!.Q$.�&.Q).�+.Q..�0.Q3.�5.Q8.�:.��TQ=.�?.QB.�D.QG.�I.QL.�N.QQ.�S.QV.�X.Q[.].�_.b.�d.g.�i.l.�n.q.�s.v.�x.{.�}.�.��.�.��.�.��.�.��.�.��.�.��.�.��.Q�.Ѥ.Q�.ѩ.Q�.Ѯ.Q�.ѳ.Q�.Ѹ.Q�.ѽ.Q�.��.Q�.��.Q�.��.Q�.��.Q�.��.Q�.��U��.Q�.��.Q�.��.��.�.��.�.��.�.��.�.��.�.�//�//�
/
/�//�//�//�/!/�#/&/�(/+/�,/Q//�1/Q4/�6/Q9/�;/Q>/�@/QC/�E/QH/�J/QM/�O/QR/�T/QW/�Y/Q\/�^/Qa/�c/Qf/�h/Qk/�m/Qp/r/�t/w/��V�y/|/�~/�/��/�/��/�/��/�/��/�/��/�/��/�/��/�/��/�/��/�/��/�/��/Q�/ѹ/Q�/Ѿ/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/��/Q�/�/Q�/�/��/�/�00�0	0�00�00�0�X0�00�0"0�$0'0�)0,0�.010�3060�80;0�=0@0�A0QD0�F0QI0�K0QN0�P0QS0�U0QX0�Z0Q]0�_0Qb0�d0Qg0�i0Ql0�n0Qq0�s0Qv0�x0Q{0�}0Q�0т0Q�0�0��0�0��0�0��0�0��0�0��0�0��0�0��0�0��0�0��0�0�Y��0�0��0�0��0�0��0�0��0Q�0��0Q�0��0Q�0��0Q�0��0Q�0��0Q�0��0Q�0��0Q�0��0Q�0�0Q�0�0Q�0�1Q1�1Q1�
1Q
1�1�11�11�11� 1#1�%1(1�*1-1�/121�4171�91<1�>1A1�C1F1�H1K1�M1P1�R1�ZU1�V1QY1�[1Q^1�`1Qc1�e1Qh1�j1Qm1�o1Qr1�t1Qw1�y1Q|1�~1Q�1у1Q�1ш1Q�1э1Q�1ђ1Q�1ї1Q�1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1�1��1Q�1��1Q�1��1Q�1��1Q�1�$[��1Q�1�1Q�1�1Q�1�2Q2�2Q	2�2Q2�2Q2�2Q2�2Q2�2Q"2�$2�&2)2�+2.2�0232�5282�:2=2�?2B2�D2G2�I2L2�N2Q2�S2V2�X2[2�]2`2�b2e2�g2j2�k2Qn2�p2Qs2�u2Qx2�z2Q}2�2Q�2ф2Q�2щ2Q�2ю2�0\Q�2ѓ2Q�2ј2Q�2ѝ2Q�2Ѣ2Q�2ѧ2Q�2Ѭ2Q�2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2�2��2Q�2�2Q�2�2Q3�3Q3�3Q
3�3Q3�3Q3�3Q3�3Q3� 3Q#3�%3Q(3�*3Q-3�<]�/3Q23�43Q73�93�;3>3�@3C3�E3H3�J3M3�O3R3�T3W3�Y3\3�^3a3�c3f3�h3k3�m3p3�r3u3�w3z3�|33р3Q�3х3Q�3ъ3Q�3я3Q�3є3Q�3љ3Q�3ў3Q�3ѣ3Q�3Ѩ3Q�3ѭ3Q�3Ѳ3Q�3ѷ3Q�3Ѽ3Q�3�3Q�3�3��3�3�H^��3�3��3�3��3�3��3�3��3�3��3�3��3�3��3�3��3�3��3�3��34�44�	4Q4�
4Q4�4Q4�4Q4�4Q4�!4Q$4�&4Q)4�+4Q.4�04Q34�54Q84�:4Q=4�?4QB4�D4QG4�I4QL4�N4�P4S4�U4X4�Z4]4�_4b4�d4g4�i4�T_l4�n4q4�s4v4�x4{4�}4�4��4�4��4�4��4�4��4�4ѕ4Q�4њ4Q�4џ4Q�4Ѥ4Q�4ѩ4Q�4Ѯ4Q�4ѳ4Q�4Ѹ4Q�4ѽ4Q�4��4Q�4��4Q�4��4Q�4��4Q�4��4Q�4�4��4�4��4�4��4�4��4�4��4�4��4�4��4�4�55�55�``�
5
5�55�55�55�5Q 5�"5Q%5�'5Q*5�,5Q/5�15Q45�65Q95�;5Q>5�@5QC5�E5QH5�J5QM5�O5QR5�T5QW5�Y5Q\5�^5Qa5�c5�e5h5�j5m5�o5r5�t5w5�y5|5�~5�5��5�5��5�5��5�5��5�5��5�5��5�5��5�5��5�la�5Ѫ5Q�5ѯ5Q�5Ѵ5Q�5ѹ5Q�5Ѿ5Q�5��5Q�5��5Q�5��5Q�5��5Q�5��5Q�5��5Q�5��5Q�5��5Q�5��5Q�5�5��5�5��5�5��5�5�66�6	6�66�66�66�66�6"6�$6'6�)6,6�.616�36Q56�76Q:6�<6Q?6�A6QD6�xb�F6QI6�K6QN6�P6QS6�U6QX6�Z6Q]6�_6Qb6�d6Qg6�i6Ql6�n6Qq6�s6Qv6�x6�z6}6�6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6��6�6ѿ6Q�6��6Q�6��6Q�6��6Q�6��6Q�6��6Q�6��6Q�6��6��cQ�6��6Q�6��6Q�6��6Q�6�6Q�6�6Q�6�7Q77�7
7�77�77�77�77� 7#7�%7(7�*7-7�/727�4777�97<7�>7A7�C7F7�H7QJ7�L7QO7�Q7QT7�V7QY7�[7Q^7�`7Qc7�e7Qh7�j7Qm7�o7Qr7�t7Qw7�y7Q|7�~7Q�7��d�#�$�%�&�'�(�)�*,-.$/00<1H2T3`4l5x6�7�8�9�:�;�<�=�>�?�@�ACD E,F8GDHPI\JhKtL�M�N�O�P�Q�R�S�T�U�V�WYZ[(\4]@^L_X`dapb|c�d�e��eу7Q�7ш7Q�7э7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7�7��7Q�7��7Q�7��7Q�7��7Q�7��7Q�7��7Q�7��7Q�7�7Q�7�7Q�7�8Q8�8Q	8�8Q8�8Q8�8Q88�88��f�!8$8�&8)8�+8.8�0838�5888�:8=8�?8B8�D8G8�I8L8�N8Q8�S8V8�X8[8�]8Q_8�a8Qd8�f8Qi8�k8Qn8�p8Qs8�u8Qx8�z8Q}8�8Q�8ф8Q�8щ8Q�8ю8Q�8ѓ8Q�8ј8Q�8ѝ8Q�8Ѣ8��8�8��8�8��8�8��8�8��8�8��8��g�8��8�8��8�8��8�8��8�8��8�8��8�8��8�8��8�8��8Q�8��8Q�8��8Q�8�8Q�8�8Q9�9Q9�9Q
9�9Q9�9Q9�9Q9�9Q9� 9Q#9�%9Q(9�*9Q-9/9�1949�6999�;9>9�@9C9�E9H9�J9M9�O9R9�T9W9�Y9\9��h�^9a9�c9f9�h9k9�m9p9�r9Qt9�v9Qy9�{9Q~9р9Q�9х9Q�9ъ9Q�9я9Q�9є9Q�9љ9Q�9ў9Q�9ѣ9Q�9Ѩ9Q�9ѭ9Q�9Ѳ9Q�9ѷ9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9�9��9��i�9�9Q:�:Q:�:Q:�
:Q:�:Q:�:Q:�:Q:�!:Q$:�&:Q):�+:Q.:�0:Q3:�5:Q8:�::Q=:�?:QB:D:�F:I:�K:N:�P:S:�U:X:�Z:]:�_:b:�d:g:�i:l:�n:q:�s:v:�x:{:�}:�:��:�:��:Q�:ы:Q�:ѐ:Q�:ѕ:Q�:��jњ:Q�:џ:Q�:Ѥ:Q�:ѩ:Q�:Ѯ:Q�:ѳ:Q�:Ѹ:Q�:ѽ:Q�:��:Q�:��:Q�:��:��:�:��:�:��:�:��:�:��:�:��:�:��:�:��:�:��:�:��:�:�;;�;;�
;
;�;;�;Q;�;Q;�;Q ;�";Q%;�';Q*;�,;Q/;�1;Q4;�6;��kQ9;�;;Q>;�@;QC;�E;QH;�J;QM;�O;QR;�T;QW;Y;�[;^;�`;c;�e;h;�j;m;�o;r;�t;w;�y;|;�~;�;��;�;��;�;��;�;��;�;��;�;��;Q�;Ѡ;Q�;ѥ;Q�;Ѫ;Q�;ѯ;Q�;Ѵ;Q�;ѹ;Q�;Ѿ;Q�;��;Q�;��;Q�;��;Q�;��;Q�;��l��;Q�;��;Q�;��;��;�;��;�;��;�;��;�;��;�;��;�;�<<�<	<�<<�<<�<<�<<�<"<�$<'<�(<Q+<�-<Q0<�2<Q5<�7<Q:<�<<Q?<�A<QD<�F<QI<�K<QN<�P<QS<�U<QX<�Z<Q]<�_<Qb<�d<Qg<�i<Ql<n<�p<s<��m�u<x<�z<}<�<�<��<�<��<�<��<�<��<�<��<�<��<�<��<�<��<�<��<�<��<Q�<ѵ<Q�<Ѻ<Q�<ѿ<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<��<Q�<�<��<�<��<=�==�=
=�==�=�o=�==�==� =#=�%=(=�*=-=�/=2=�4=7=�9=<=�==Q@=�B=QE=�G=QJ=�L=QO=�Q=QT=�V=QY=�[=Q^=�`=Qc=�e=Qh=�j=Qm=�o=Qr=�t=Qw=�y=Q|=�~=Q�=�=��=�=��=�=��=�=��=�=��=�=��=�=��=�=��=�=��=�=�p��=�=��=�=��=�=��=�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=��=Q�=�=Q�=�=Q�=�>Q>�>Q	>�>�
>>�>>�>>�>>�!>$>�&>)>�+>.>�0>3>�5>8>�:>=>�?>B>�D>G>�I>L>�N>� qQ>�R>QU>�W>QZ>�\>Q_>�a>Qd>�f>Qi>�k>Qn>�p>Qs>�u>Qx>�z>Q}>�>Q�>ф>Q�>щ>Q�>ю>Q�>ѓ>Q�>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>�>��>Q�>��>Q�>��>Q�>��>Q�>�,r��>Q�>��>Q�>�>Q�>�>Q?�?Q?�?Q
?�?Q?�?Q?�?Q?�?Q?� ?�"?%?�'?*?�,?/?�1?4?�6?9?�;?>?�@?C?�E?H?�J?M?�O?R?�T?W?�Y?\?�^?a?�c?f?�g?Qj?�l?Qo?�q?Qt?�v?Qy?�{?Q~?р?Q�?х?Q�?ъ?�8sQ�?я?Q�?є?Q�?љ?Q�?ў?Q�?ѣ?Q�?Ѩ?Q�?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?�?��?Q�?��?Q�?�?Q�?�?Q@�@Q@�@Q@�
@Q@�@Q@�@Q@�@Q@�!@Q$@�&@Q)@�Dt�+@Q.@�0@Q3@�5@�7@:@�<@?@�A@D@�F@I@�K@N@�P@S@�U@X@�Z@]@�_@b@�d@g@�i@l@�n@q@�s@v@�x@{@�|@Q@с@Q�@ц@Q�@ы@Q�@ѐ@Q�@ѕ@Q�@њ@Q�@џ@Q�@Ѥ@Q�@ѩ@Q�@Ѯ@Q�@ѳ@Q�@Ѹ@Q�@ѽ@Q�@�@��@�@�Pu��@�@��@�@��@�@��@�@��@�@��@�@��@�@��@�@��@�@��@�@��@�@�AA�AQA�	AQA�AQA�AQA�AQA�AQ A�"AQ%A�'AQ*A�,AQ/A�1AQ4A�6AQ9A�;AQ>A�@AQCA�EAQHA�JA�LAOA�QATA�VAYA�[A^A�`AcA�eA�\vhA�jAmA�oArA�tAwA�yA|A�~A�A��A�A��A�A��A�AёAQ�AіAQ�AћAQ�AѠAQ�AѥAQ�AѪAQ�AѯAQ�AѴAQ�AѹAQ�AѾAQ�A��AQ�A��AQ�A��AQ�A��AQ�A�A��A�A��A�A��A�A��A�A��A�A��A�A��A�A��A�A�BB�hw�B	B�BB�BB�BB�BQB�BQ!B�#BQ&B�(BQ+B�-BQ0B�2BQ5B�7BQ:B�<BQ?B�ABQDB�FBQIB�KBQNB�PBQSB�UBQXB�ZBQ]B�_B�aBdB�fBiB�kBnB�pBsB�uBxB�zB}B�B�B��B�B��B�B��B�B��B�B��B�B��B�B��B�tx�BѦBQ�BѫBQ�BѰBQ�BѵBQ�BѺBQ�BѿBQ�B��BQ�B��BQ�B��BQ�B��BQ�B��BQ�B��BQ�B��BQ�B��BQ�B�B��B�B��B�B��B�B��BC�CC�C
C�CC�CC�CC�CC� C#C�%C(C�*C-C�/CQ1C�3CQ6C�8CQ;C�=CQ@C��y�BCQEC�GCQJC�LCQOC�QCQTC�VCQYC�[CQ^C�`CQcC�eCQhC�jCQmC�oCQrC�tC�vCyC�{C~C��C�C��C�C��C�C��C�C��C�C��C�C��C�C��C�C��C�C��C�C��C�C��C�CѻCQ�C�CQ�C��CQ�C��CQ�C��CQ�C��CQ�C��CQ�C��C��zQ�C��CQ�C��CQ�C��CQ�C��CQ�C�CQ�C�CQ�CD�DD�DD�
DD�DD�DD�DD�!D$D�&D)D�+D.D�0D3D�5D8D�:D=D�?DBD�DDQFD�HDQKD�MDQPD�RDQUD�WDQZD�\DQ_D�aDQdD�fDQiD�kDQnD�pDQsD�uDQxD�zDQ}D��{�DQ�DфDQ�DщD��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��D�D��DQ�D��DQ�D��DQ�D��DQ�D��DQ�D��DQ�D��DQ�D��DQ�D�DQ�D�DQE�EQE�EQ
E�EQE�EQEE�EE��|�E E�"E%E�'E*E�,E/E�1E4E�6E9E�;E>E�@ECE�EEHE�JEME�OERE�TEWE�YEQ[E�]EQ`E�bEQeE�gEQjE�lEQoE�qEQtE�vEQyE�{EQ~EрEQ�EхEQ�EъEQ�EяEQ�EєEQ�EљEQ�EўE��E�E��E�E��E�E��E�E��E�E��E��}�E��E�E��E�E��E�E��E�E��E�E��E�E��E�E��E�E��EQ�E��EQ�E��EQ�E��EQ�E�EQ�E�EQF�FQF�FQF�
FQF�FQF�FQF�FQF�!FQ$F�&FQ)F+F�-F0F�2F5F�7F:F�<F?F�AFDF�FFIF�KFNF�PFSF�UFXF��~�ZF]F�_FbF�dFgF�iFlF�nFQpF�rFQuF�wFQzF�|FQFсFQ�FцFQ�FыFQ�FѐFQ�FѕFQ�FњFQ�FџFQ�FѤFQ�FѩFQ�FѮFQ�FѳF��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F�F��F���F�FQ�F�FQG�GQG�	GQG�GQG�GQG�GQG�GQ G�"GQ%G�'GQ*G�,GQ/G�1GQ4G�6GQ9G�;GQ>G@G�BGEG�GGJG�LGOG�QGTG�VGYG�[G^G�`GcG�eGhG�jGmG�oGrG�tGwG�yG|G�~G�G��GQ�GчGQ�GьGQ�GёGQ�G�ԀіGQ�GћGQ�GѠGQ�GѥGQ�GѪGQ�GѯGQ�GѴGQ�GѹGQ�GѾGQ�G��GQ�G��G��G�G��G�G��G�G��G�G��G�G��G�G��G�G��G�G��G�G��G�G��G�G�HH�H	H�HH�HQH�HQH�HQH�HQ!H�#HQ&H�(HQ+H�-HQ0H�2H��Q5H�7HQ:H�<HQ?H�AHQDH�FHQIH�KHQNH�PHQSHUH�WHZH�\H_H�aHdH�fHiH�kHnH�pHsH�uHxH�zH}H�H�H��H�H��H�H��H�H��H�H��HQ�HќHQ�HѡHQ�HѦHQ�HѫHQ�HѰHQ�HѵHQ�HѺHQ�HѿHQ�H��HQ�H��HQ�H��HQ�H����HQ�H��HQ�H��H��H�H��H�H��H�H��H�H��H�H��H�H��HI�II�I
I�II�II�II�II� I#I�$IQ'I�)IQ,I�.IQ1I�3IQ6I�8IQ;I�=IQ@I�BIQEI�GIQJI�LIQOI�QIQTI�VIQYI�[IQ^I�`IQcI�eIQhIjI�lIoI����qItI�vIyI�{I~I��I�I��I�I��I�I��I�I��I�I��I�I��I�I��I�I��I�I��IQ�IѱIQ�IѶIQ�IѻIQ�I�IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��IQ�I��I��I�I��I�I��IJ�JJ�JJ�
J��J�JJ�JJ�JJ�!J$J�&J)J�+J.J�0J3J�5J8J�9JQ<J�>JQAJ�CJQFJ�HJQKJ�MJQPJ�RJQUJ�WJQZJ�\JQ_J�aJQdJ�fJQiJ�kJQnJ�pJQsJ�uJQxJ�zJQ}JJ��J�J��J�J��J�J��J�J��J�J��J�J��J�J��J�J��J�J����J�J��J�J��J�J��J�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J��JQ�J�JQ�J�JQK�KQK�K�	KK�KK�KK�KK�K K�"K%K�'K*K�,K/K�1K4K�6K9K�;K>K�@KCK�EKHK�JK��MK�NKQQK�SKQVK�XKQ[K�]KQ`K�bKQeK�gKQjK�lKQoK�qKQtK�vKQyK�{KQ~KрKQ�KхKQ�KъKQ�KяKQ�K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��K�K��KQ�K��KQ�K��KQ�K��KQ�K�(���KQ�K��KQ�K��KQ�K�KQ�K�KQL�LQL�LQL�
LQL�LQL�LQL�L�L!L�#L&L�(L+L�-L0L�2L5L�7L:L�<L?L�ALDL�FLIL�KLNL�PLSL�ULXL�ZL]L�_LbL�cLQfL�hLQkL�mLQpL�rLQuL�wLQzL�|LQLсLQ�LцL�4�Q�LыLQ�LѐLQ�LѕLQ�LњLQ�LџLQ�LѤLQ�L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��L�L��LQ�L��LQ�L�LQ�L�LQ�L�LQM�MQM�	MQM�MQM�MQM�MQM�MQ M�"MQ%M�@��'MQ*M�,MQ/M�1M�3M6M�8M;M�=M@M�BMEM�GMJM�LMOM�QMTM�VMYM�[M^M�`McM�eMhM�jMmM�oMrM�tMwM�xMQ{M�}MQ�MтMQ�MчMQ�MьMQ�MёMQ�MіMQ�MћMQ�MѠMQ�MѥMQ�MѪMQ�MѯMQ�MѴMQ�MѹMQ�M�M��M�M�L���M�M��M�M��M�M��M�M��M�M��M�M��M�M��M�M��M�M��M�M��M�M��M�M�NQN�NQN�
NQ
N�NQN�NQN�NQN�NQ!N�#NQ&N�(NQ+N�-NQ0N�2NQ5N�7NQ:N�<NQ?N�ANQDN�FN�HNKN�MNPN�RNUN�WNZN�\N_N�aN�X�dN�fNiN�kNnN�pNsN�uNxN�zN}N�N�N��N�N��N�NэNQ�NђNQ�NїNQ�NќNQ�NѡNQ�NѦNQ�NѫNQ�NѰNQ�NѵNQ�NѺNQ�NѿNQ�N��NQ�N��NQ�N��NQ�N�N��N�N��N�N��N�N��N�N��N�N��N�N��N�N��N�N��NO�d��OO�O
O�OO�OO�OQO�OQO�OQ"O�$OQ'O�)OQ,O�.OQ1O�3OQ6O�8OQ;O�=OQ@O�BOQEO�GOQJO�LOQOO�QOQTO�VOQYO�[O�]O`O�bOeO�gOjO�lOoO�qOtO�vOyO�{O~O��O�O��O�O��O�O��O�O��O�O��O�O��O�p��OѢOQ�OѧOQ�OѬOQ�OѱOQ�OѶOQ�OѻOQ�O�OQ�O��OQ�O��OQ�O��OQ�O��OQ�O��OQ�O��OQ�O��OQ�O�O��O�O��O�O��O�O��O�O��OP�PP�PP�
PP�PP�PP�PP�!P$P�&P)P�+PQ-P�/PQ2P�4PQ7P�9PQ<P�|��>PQAP�CPQFP�HPQKP�MPQPP�RPQUP�WPQZP�\PQ_P�aPQdP�fPQiP�kPQnP�pP�rPuP�wPzP�|PP��P�P��P�P��P�P��P�P��P�P��P�P��P�P��P�P��P�P��P�P��P�PѷPQ�PѼPQ�P�PQ�P��PQ�P��PQ�P��PQ�P��PQ�P��P���Q�P��PQ�P��PQ�P��PQ�P��PQ�P��PQ�P�PQ�P�P��PQ�QQ�	QQ�QQ�QQ�QQ�Q Q�"Q%Q�'Q*Q�,Q/Q�1Q4Q�6Q9Q�;Q>Q�@QQBQ�DQQGQ�IQQLQ�NQQQQ�SQQVQ�XQQ[Q�]QQ`Q�bQQeQ�gQQjQ�lQQoQ�qQQtQ�vQQyQ����{QQ~QрQQ�QхQ��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��Q�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q��QQ�Q�QQ�Q�QQR�RQR�RQR�
RQRR�RR����RR�R!R�#R&R�(R+R�-R0R�2R5R�7R:R�<R?R�ARDR�FRIR�KRNR�PRSR�URQWR�YRQ\R�^RQaR�cRQfR�hRQkR�mRQpR�rRQuR�wRQzR�|RQRсRQ�RцRQ�RыRQ�RѐRQ�RѕRQ�RњR��R�R��R�R��R�R��R�R��R�R��R����R��R�R��R�R��R�R��R�R��R�R��R�R��R�R��R�R��RQ�R��RQ�R��RQ�R��RQ�R�RQ�R�RQ�R�RQS�SQS�	SQS�SQS�SQS�SQS�SQ S�"SQ%S'S�)S,S�.S1S�3S6S�8S;S�=S@S�BSES�GSJS�LSOS�QSTS����VSYS�[S^S�`ScS�eShS�jSQlS�nSQqS�sSQvS�xSQ{S�}SQ�SтSQ�SчSQ�SьSQ�SёSQ�SіSQ�SћSQ�SѠSQ�SѥSQ�SѪSQ�SѯS��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�S��S�ĕ�S�SQ�S�SQ�S�TQT�TQT�
TQ
T�TQT�TQT�TQT�TQ!T�#TQ&T�(TQ+T�-TQ0T�2TQ5T�7TQ:T<T�>TAT�CTFT�HTKT�MTPT�RTUT�WTZT�\T_T�aTdT�fTiT�kTnT�pTsT�uTxT�zT}T�TQ�TуTQ�TшTQ�TэTQ�T�ЖђTQ�TїTQ�TќTQ�TѡTQ�TѦTQ�TѫTQ�TѰTQ�TѵTQ�TѺTQ�TѿTQ�T��T��T�T��T�T��T�T��T�T��T�T��T�T��T�T��T�T��T�T��T�T��T�T��TU�UU�U
U�UQU�UQU�UQU�UQU�UQ"U�$UQ'U�)UQ,U�.U�ܗQ1U�3UQ6U�8UQ;U�=UQ@U�BUQEU�GUQJU�LUQOUQU�SUVU�XU[U�]U`U�bUeU�gUjU�lUoU�qUtU�vUyU�{U~U��U�U��U�U��U�U��U�U��UQ�UјUQ�UѝUQ�UѢUQ�UѧUQ�UѬUQ�UѱUQ�UѶUQ�UѻUQ�U�UQ�U��UQ�U��UQ�U����UQ�U��UQ�U��U��U�U��U�U��U�U��U�U��U�U��U�U��U�U��UV�VV�VV�
VV�VV�VV�VV� VQ#V�%VQ(V�*VQ-V�/VQ2V�4VQ7V�9VQ<V�>VQAV�CVQFV�HVQKV�MVQPV�RVQUV�WVQZV�\VQ_V�aVQdVfV�hVkV���mVpV�rVuV�wVzV�|VV��V�V��V�V��V�V��V�V��V�V��V�V��V�V��V�V��VQ�VѭVQ�VѲVQ�VѷVQ�VѼVQ�V�VQ�V��VQ�V��VQ�V��VQ�V��VQ�V��VQ�V��VQ�V��VQ�V��VQ�V��V��V�V��V�V��V�V��VW�WW�	W��W�WW�WW�WW�W W�"W%W�'W*W�,W/W�1W4W�5WQ8W�:WQ=W�?WQBW�DWQGW�IWQLW�NWQQW�SWQVW�XWQ[W�]WQ`W�bWQeW�gWQjW�lWQoW�qWQtW�vWQyW{W�}W�W��W�W��W�W��W�W��W�W��W�W��W�W��W�W��W�W����W�W��W�W��W�W��W�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W��WQ�W�WQ�W�WQX�X�XX�
X
X�XX�XX�XX�X!X�#X&X�(X+X�-X0X�2X5X�7X:X�<X?X�AXDX�FX��IX�JXQMX�OXQRX�TXQWX�YXQ\X�^XQaX�cXQfX�hXQkX�mXQpX�rXQuX�wXQzX�|XQXсXQ�XцXQ�XыXQ�X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��X�X��XQ�X��XQ�X��XQ�X��XQ�X�$���XQ�X��XQ�X��XQ�X�XQ�X�XQ�X�XQY�YQY�	YQY�YQY�YQY�Y�YY�Y"Y�$Y'Y�)Y,Y�.Y1Y�3Y6Y�8Y;Y�=Y@Y�BYEY�GYJY�LYOY�QYTY�VYYY�[Y^Y�_YQbY�dYQgY�iYQlY�nYQqY�sYQvY�xYQ{Y�}YQ�YтY�0�Q�YчYQ�YьYQ�YёYQ�YіYQ�YћYQ�YѠYQ�Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��Y�Y��YQ�Y��YQ�Y��YQ�Y�YQ�Y�YQ�Y�ZQZ�ZQZ�
ZQ
Z�ZQZ�ZQZ�ZQZ�ZQ!Z�<��#ZQ&Z�(ZQ+Z�-Z�/Z2Z�4Z7Z�9Z<Z�>ZAZ�CZFZ�HZKZ�MZPZ�RZUZ�WZZZ�\Z_Z�aZdZ�fZiZ�kZnZ�pZsZ�tZQwZ�yZQ|Z�~ZQ�ZуZQ�ZшZQ�ZэZQ�ZђZQ�ZїZQ�ZќZQ�ZѡZQ�ZѦZQ�ZѫZQ�ZѰZQ�ZѵZQ�Z�Z��Z�Z�H���Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��Z�Z��ZQ�Z�[Q[�[Q	[�[Q[�[Q[�[Q[�[Q[�[Q"[�$[Q'[�)[Q,[�.[Q1[�3[Q6[�8[Q;[�=[Q@[�B[�D[G[�I[L[�N[Q[�S[V[�X[[[�][�T�`[�b[e[�g[j[�l[o[�q[t[�v[y[�{[~[��[�[��[�[щ[Q�[ю[Q�[ѓ[Q�[ј[Q�[ѝ[Q�[Ѣ[Q�[ѧ[Q�[Ѭ[Q�[ѱ[Q�[Ѷ[Q�[ѻ[Q�[�[Q�[��[Q�[��[Q�[�[��[�[��[�[��[�[��[�[��[�[��[�[��[�[��[�[��[�[�`���[\�\\�\\�
\\�\Q\�\Q\�\Q\� \Q#\�%\Q(\�*\Q-\�/\Q2\�4\Q7\�9\Q<\�>\QA\�C\QF\�H\QK\�M\QP\�R\QU\�W\�Y\\\�^\a\�c\f\�h\k\�m\p\�r\u\�w\z\�|\\��\�\��\�\��\�\��\�\��\�\��\�l��\ў\Q�\ѣ\Q�\Ѩ\Q�\ѭ\Q�\Ѳ\Q�\ѷ\Q�\Ѽ\Q�\�\Q�\��\Q�\��\Q�\��\Q�\��\Q�\��\Q�\��\Q�\�\��\�\��\�\��\�\��\�\��\�\��\]�]]�	]]�]]�]]�]]�] ]�"]%]�']Q)]�+]Q.]�0]Q3]�5]Q8]�x��:]Q=]�?]QB]�D]QG]�I]QL]�N]QQ]�S]QV]�X]Q[]�]]Q`]�b]Qe]�g]Qj]�l]�n]q]�s]v]�x]{]�}]�]��]�]��]�]��]�]��]�]��]�]��]�]��]�]��]�]��]�]��]�]ѳ]Q�]Ѹ]Q�]ѽ]Q�]��]Q�]��]Q�]��]Q�]��]Q�]��]���Q�]��]Q�]��]Q�]��]Q�]��]Q�]��]Q�]��]Q�]�]��]�]�^^�^^�
^
^�^^�^^�^^�^!^�#^&^�(^+^�-^0^�2^5^�7^:^�<^Q>^�@^QC^�E^QH^�J^QM^�O^QR^�T^QW^�Y^Q\^�^^Qa^�c^Qf^�h^Qk^�m^Qp^�r^Qu^����w^Qz^�|^Q^с^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^�^��^Q�^��^Q�^��^Q�^��^Q�^��^Q�^��^Q�^��^Q�^��^Q�^��^Q�^�^Q�^�^Q�^�^Q_�_Q_�	_Q__�__����g�h�i�j�k�l�mopq$r0s<tHuTv`wlxxy�z�{�|�}�~�̀؁������ �,�8�D�P�\�h�t�������������Ȗԗ�������(�4�@�L�X�d�p�|�����������__�__�_"_�$_'_�)_,_�._1_�3_6_�8_;_�=_@_�B_E_�G_J_�L_O_�Q_QS_�U_QX_�Z_Q]_�__Qb_�d_Qg_�i_Ql_�n_Qq_�s_Qv_�x_Q{_�}_Q�_т_Q�_ч_Q�_ь_Q�_ё_Q�_і_��_�_��_�_��_�_��_�_��_�_��_����_��_�_��_�_��_�_��_�_��_�_��_�_��_�_��_�_��_Q�_��_Q�_��_Q�_��_Q�_��_Q�_�_Q�_�_Q�_�`Q`�`Q`�
`Q
`�`Q`�`Q`�`Q`�`Q!`#`�%`(`�*`-`�/`2`�4`7`�9`<`�>`A`�C`F`�H`K`�M`P`����R`U`�W`Z`�\`_`�a`d`�f`Qh`�j`Qm`�o`Qr`�t`Qw`�y`Q|`�~`Q�`у`Q�`ш`Q�`э`Q�`ђ`Q�`ї`Q�`ќ`Q�`ѡ`Q�`Ѧ`Q�`ѫ`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�`��`�̬�`��`Q�`�`Q�`�`Q�`�aQa�aQ	a�aQa�aQa�aQa�aQa�aQ"a�$aQ'a�)aQ,a�.aQ1a�3aQ6a8a�:a=a�?aBa�DaGa�IaLa�NaQa�SaVa�Xa[a�]a`a�baea�gaja�laoa�qata�vaya�{aQ}a�aQ�aфaQ�aщaQ�a�حюaQ�aѓaQ�aјaQ�aѝaQ�aѢaQ�aѧaQ�aѬaQ�aѱaQ�aѶaQ�aѻaQ�a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��a�a��ab�bb�bQ
b�bQb�bQb�bQb�bQb� bQ#b�%bQ(b�*b��Q-b�/bQ2b�4bQ7b�9bQ<b�>bQAb�CbQFb�HbQKbMb�ObRb�TbWb�Yb\b�^bab�cbfb�hbkb�mbpb�rbub�wbzb�|bb��b�b��b�b��b�b��bQ�bєbQ�bљbQ�bўbQ�bѣbQ�bѨbQ�bѭbQ�bѲbQ�bѷbQ�bѼbQ�b�bQ�b��bQ�b����bQ�b��bQ�b��b��b�b��b�b��b�b��b�b��b�b��b�b��b�b��b�b��bc�cc�	cc�cc�cc�cc�cQc�!cQ$c�&cQ)c�+cQ.c�0cQ3c�5cQ8c�:cQ=c�?cQBc�DcQGc�IcQLc�NcQQc�ScQVc�XcQ[c�]cQ`cbc�dcgc����iclc�ncqc�scvc�xc{c�}c�c��c�c��c�c��c�c��c�c��c�c��c�c��c�c��cQ�cѩcQ�cѮcQ�cѳcQ�cѸcQ�cѽcQ�c��cQ�c��cQ�c��cQ�c��cQ�c��cQ�c��cQ�c��cQ�c��cQ�c��c��c�c��c�c��c�c��c�c�dd�d��d�
d
d�dd�dd�dd�d!d�#d&d�(d+d�-d0d�1dQ4d�6dQ9d�;dQ>d�@dQCd�EdQHd�JdQMd�OdQRd�TdQWd�YdQ\d�^dQad�cdQfd�hdQkd�mdQpd�rdQudwd�yd|d�~d�d��d�d��d�d��d�d��d�d��d�d��d�d��d�d����d�d��d�d��d�d��d�d��dQ�dѾdQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d��dQ�d�dQ�d�dQ�d�d�ee�e	e�ee�ee�ee�ee�e"e�$e'e�)e,e�.e1e�3e6e�8e;e�=e@e�Be� �Ee�FeQIe�KeQNe�PeQSe�UeQXe�ZeQ]e�_eQbe�deQge�ieQle�neQqe�seQve�xeQ{e�}eQ�eтeQ�eчeQ�e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��e�e��eQ�e��eQ�e��eQ�e��eQ�e�,���eQ�e��eQ�e��eQ�e��eQ�e�eQ�e�eQ�e�fQf�fQf�
fQ
f�fQf�f�ff�ff� f#f�%f(f�*f-f�/f2f�4f7f�9f<f�>fAf�CfFf�HfKf�MfPf�RfUf�WfZf�[fQ^f�`fQcf�efQhf�jfQmf�ofQrf�tfQwf�yfQ|f�~f�8�Q�fуfQ�fшfQ�fэfQ�fђfQ�fїfQ�fќfQ�f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��f�f��fQ�f��fQ�f��fQ�f��fQ�f�fQ�f�fQ�f�gQg�gQ	g�gQg�gQg�gQg�gQg�D��gQ"g�$gQ'g�)g�+g.g�0g3g�5g8g�:g=g�?gBg�DgGg�IgLg�NgQg�SgVg�Xg[g�]g`g�bgeg�ggjg�lgog�pgQsg�ugQxg�zgQ}g�gQ�gфgQ�gщgQ�gюgQ�gѓgQ�gјgQ�gѝgQ�gѢgQ�gѧgQ�gѬgQ�gѱgQ�g�g��g�g�P���g�g��g�g��g�g��g�g��g�g��g�g��g�g��g�g��g�g��g�g��g�g��g�g��gQ�g�gQh�hQh�hQ
h�hQh�hQh�hQh�hQh� hQ#h�%hQ(h�*hQ-h�/hQ2h�4hQ7h�9hQ<h�>h�@hCh�EhHh�JhMh�OhRh�ThWh�Yh�\�\h�^hah�chfh�hhkh�mhph�rhuh�whzh�|hh��h�hхhQ�hъhQ�hяhQ�hєhQ�hљhQ�hўhQ�hѣhQ�hѨhQ�hѭhQ�hѲhQ�hѷhQ�hѼhQ�h�hQ�h��hQ�h�h��h�h��h�h��h�h��h�h��h�h��h�h��h�h��h�h��h�h�h���h�h��hi�ii�	ii�iQi�iQi�iQi�iQi�!iQ$i�&iQ)i�+iQ.i�0iQ3i�5iQ8i�:iQ=i�?iQBi�DiQGi�IiQLi�NiQQi�Si�UiXi�Zi]i�_ibi�digi�iili�niqi�sivi�xi{i�}i�i��i�i��i�i��i�i��i�i��i�t��iњiQ�iџiQ�iѤiQ�iѩiQ�iѮiQ�iѳiQ�iѸiQ�iѽiQ�i��iQ�i��iQ�i��iQ�i��iQ�i��iQ�i��iQ�i�i��i�i��i�i��i�i��i�i��i�i��i�i�jj�jj�
j
j�jj�jj�jj�j!j�#jQ%j�'jQ*j�,jQ/j�1jQ4j����6jQ9j�;jQ>j�@jQCj�EjQHj�JjQMj�OjQRj�TjQWj�YjQ\j�^jQaj�cjQfj�hj�jjmj�ojrj�tjwj�yj|j�~j�j��j�j��j�j��j�j��j�j��j�j��j�j��j�j��j�j��j�jѯjQ�jѴjQ�jѹjQ�jѾjQ�j��jQ�j��jQ�j��jQ�j��j���Q�j��jQ�j��jQ�j��jQ�j��jQ�j��jQ�j��jQ�j�j��j�j��j�j�kk�k	k�kk�kk�kk�kk�k"k�$k'k�)k,k�.k1k�3k6k�8kQ:k�<kQ?k�AkQDk�FkQIk�KkQNk�PkQSk�UkQXk�ZkQ]k�_kQbk�dkQgk�ikQlk�nkQqk����skQvk�xkQ{k�}k�k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��k�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k��kQ�k�kQ�k�kQ�k�lQl�lQl
l�ll����ll�ll�ll� l#l�%l(l�*l-l�/l2l�4l7l�9l<l�>lAl�ClFl�HlKl�MlQOl�QlQTl�VlQYl�[lQ^l�`lQcl�elQhl�jlQml�olQrl�tlQwl�ylQ|l�~lQ�lуlQ�lшlQ�lэlQ�lђl��l�l��l�l��l�l��l�l��l�l��l����l��l�l��l�l��l�l��l�l��l�l��l�l��l�l��l�l��lQ�l��lQ�l��lQ�l��lQ�l��lQ�l��lQ�l�lQ�l�lQ�l�mQm�mQ	m�mQm�mQm�mQm�mQmm�!m$m�&m)m�+m.m�0m3m�5m8m�:m=m�?mBm�DmGm�ImLm����NmQm�SmVm�Xm[m�]m`m�bmQdm�fmQim�kmQnm�pmQsm�umQxm�zmQ}m�mQ�mфmQ�mщmQ�mюmQ�mѓmQ�mјmQ�mѝmQ�mѢmQ�mѧm��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m�m��m����m��mQ�m��mQ�m�mQ�m�mQn�nQn�nQ
n�nQn�nQn�nQn�nQn� nQ#n�%nQ(n�*nQ-n�/nQ2n4n�6n9n�;n>n�@nCn�EnHn�JnMn�OnRn�TnWn�Yn\n�^nan�cnfn�hnkn�mnpn�rnun�wnQyn�{nQ~nрnQ�nхnQ�n���ъnQ�nяnQ�nєnQ�nљnQ�nўnQ�nѣnQ�nѨnQ�nѭnQ�nѲnQ�nѷnQ�nѼn��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��n�n��no�oQo�oQo�
oQo�oQo�oQo�oQo�!oQ$o�&o���Q)o�+oQ.o�0oQ3o�5oQ8o�:oQ=o�?oQBo�DoQGoIo�KoNo�PoSo�UoXo�Zo]o�_obo�dogo�iolo�noqo�sovo�xo{o�}o�o��o�o��o�o��oQ�oѐoQ�oѕoQ�oњoQ�oџoQ�oѤoQ�oѩoQ�oѮoQ�oѳoQ�oѸoQ�oѽoQ�o��oQ�o�����oQ�o��oQ�o��o��o�o��o�o��o�o��o�o��o�o��o�o��o�o��o�o��o�o�pp�pp�
p
p�pp�pp�pQp�pQ p�"pQ%p�'pQ*p�,pQ/p�1pQ4p�6pQ9p�;pQ>p�@pQCp�EpQHp�JpQMp�OpQRp�TpQWp�YpQ\p^p�`pcp����ephp�jpmp�oprp�tpwp�yp|p�~p�p��p�p��p�p��p�p��p�p��p�p��p�p��pQ�pѥpQ�pѪpQ�pѯpQ�pѴpQ�pѹpQ�pѾpQ�p��pQ�p��pQ�p��pQ�p��pQ�p��pQ�p��pQ�p��pQ�p��p��p�p��p�p��p�p��p�p��p�p�q��q�q	q�qq�qq�qq�qq�q"q�$q'q�)q,q�-qQ0q�2qQ5q�7qQ:q�<qQ?q�AqQDq�FqQIq�KqQNq�PqQSq�UqQXq�ZqQ]q�_qQbq�dqQgq�iqQlq�nqQqqsq�uqxq�zq}q�q�q��q�q��q�q��q�q��q�q��q�q��q�q���q��q�q��q�q��q�q��q�q��qQ�q��qQ�q��qQ�q��qQ�q��qQ�q��qQ�q��qQ�q��qQ�q��qQ�q�qQ�q�qQ�q�qQr�rQr�	r�����ĬЭܮ�����$�0�<�H�T�`�l�x���������������������������1���Q%r�&r�'r)rQ*r,r�-r/rQ0r�1r�2r4rQ5r�6r�7r9rQ:r�;r�<r>rQ?rS�H�QrQRr�Sr�TrVrQWr�Xr�Yr[rQ\r�]r�^r`r�����������P����	 �(�0�8���@������X���,`�8T@P��"�f��@����H��P����������$��������������������������F��ÀÁÂÃĀĂȦÄẢÅǍȀȂẠḀĄ=�H���h���ḂḄḆk�����h���ĆĈĊČÇ������h���ḊĎḌḐḒḎ�����h� �ÈÉÊẼĒĔĖËẺĚȄȆẸȨĘḘḚ��0�x�h���Ḟ!�����h���ǴĜḠĞĠǦĢ$�����h���ĤḢḦȞḤḨḪM����h��ÌÍÎĨĪĬİÏỈǏȈȊỊĮḬ|� �`�h�h�Ĵ��x���h���ḰǨḲĶḴ������h���ĹĽḶĻḼḺ������h���ḾṀṂ����h��ǸŃÑṄŇṆŅṊṈ=�$�L�h�T�ÒÓÔÕŌŎȮÖỎŐǑȌȎƠỌǪq�d���h���ṔṖ������h���ŔṘŘȐȒṚŖṞ�����h��ŚŜṠŠṢȘŞ�� �@�h�H�ṪŤṬȚŢṰṮ�X�x�h���ÙÚÛŨŪŬÜỦŮŰǓȔȖƯỤṲŲṶṴ.�����h���ṼṾa����h��ẀẂŴẆẄẈ���8�h�@�ẊẌ��P�\�h�d�ỲÝŶỸȲẎŸỶỴ��t���h���ŹẐŻŽẒẔ������h���àáâãāăȧäảåǎȁȃạḁą=���,�h�4�ḃḅḇk�D�T�h�\�ćĉċčç��l���h���ḋďḍḑḓḏ������h���èéêẽēĕėëẻěȅȇẹȩęḙḛ�����h� �ḟ!�0�8�h�@�ǵĝḡğġǧģ$�P�p�h�x�ĥḣḧȟḥḩḫẖ�����h���ìíîĩīĭïỉǐȉȋịįḭ9����h��ĵǰl��$�h�,�ḱǩḳķḵ��<�T�h�\�ĺľḷļḽḻ��l���h���ḿṁṃ�����h���ǹńñṅňṇņṋṉ=�����h���òóôõōŏȯöỏőǒȍȏơọǫq��L�h�T�ṕṗ��d�p�h�x�ŕṙřȑȓṛŗṟ������h���śŝṡšṣșş������h���ṫẗťṭțţṱṯy��� �h�(�ùúûũūŭüủůűǔȕȗưụṳųṷṵ.�8���h���ṽṿa�����h���ẁẃŵẇẅẘẉ������h���ẋẍ�����h��ỳýŷỹȳẏÿỷẙỵ�� �L�h�T�źẑżžẓẕ��d���h���῭΅����῁������������������ẦẤẪẨ������h���Ǟ	���h��Ǻ�,�4�h�<�ǼǢ�L�X�h�`�Ḉ�p�x�h���ỀẾỄỂ������h���Ḯ�����h���ỒỐỖỔ������h���ṌȬṎ���h� �Ȫ	�0�8�h�@�Ǿ�P�X�h�`�ǛǗǕǙ�p���h���ầấẫẩ������h���ǟ	�����h���ǻ�����h���ǽǣ���h��ḉ�,�4�h�<�ềếễể��L�`�h�h�ḯ�x���h���ồốỗổ������h���ṍȭṏ�����h���ȫ	�����h���ǿ���h��ǜǘǖǚ�,�@�h�H��$�D�h��������(�H�h��������$�D�p��������$�P�.�X�ẰẮẴẲ������h���ằắẵẳ�����h��ḔḖ���(�h�0�ḕḗ��@�L�h�T����8�\�k�d�ṐṒ������h���ṑṓ������h���Ṥ!�����h���ṥ!�����h���Ṧ!���h��ṧ!�(�0�h�8�Ṹ�H�P�h�X�ṹ�h�p�h�x�Ṻ�����h���ṻ�����h���ẛ!�����h���������� �@�`�������������ỜỚỠỞỢ�� �8�h�@�ờớỡởợ��P�h�h�p�ỪỨỮỬỰ������h���ừứữửự������h���Ǯ������h���H�x����������Ǭ	� �(�h�0�ǭ	�@�H�h�P�8�X���`�Ǡ	�t�|�h���ǡ	�����h���Ḝ������h���ḝ������h���Ȱ	�����h��ȱ	���h�$����������,��4�ǯ��X�`�h�h�p��x�ᾺΆᾹᾸἈἉ���ᾼ(�����������ῈΈἘἙ+�����h���ῊΉἨἩ+���ῌ(��� ���(�ῚΊῙῘΪἸἹB�<�\�h�d�ῸΌὈὉ+�t���h���ῬY�����h���ῪΎῩῨΫὙ\�����h���ῺΏὨὩ+���ῼ(������ �ᾴ(�4�<�s�D�ῄ(�T�\�s�d�ὰάᾱᾰἀἁ�t�ᾶᾳv�����������ὲέἐἑ+�����h���ὴήἠἡ+���ῆῃv�������ὶίῑῐϊἰἱB�0�ῖ��X�P�`���h�ὸόὀὁ+�|���h�������4�l�������,�L�l�����(�t���|���ῤῥ������h��ὺύῡῠϋὐὑB��ῦ��<�4�D���L�ὼώὠὡ+�`�ῶῳv�|�t�������ῒ����ῗ������������ῢ����ῧ������������ῴ(���s��ϓϔ��,�8�h�@��X������$�H���P�Ї�x���h���ӐӒ������h���Ѓ�����h���ЀӖЁ������h���ӁӜ����h��Ӟ�(�0�h�8�ЍӢЙӤ��H�\�h�d�Ќ�t�|�h���Ӧ�����h���ӮЎӰӲ������h���Ӵ�����h���Ӹ���h��Ӭ� �(�h�0�ӑӓ��@�L�h�T�ѓ�d�l�h�t�ѐӗё������h���ӂӝ������h���ӟ�����h���ѝӣйӥ�����h��ќ��$�h�,�ӧ�<�D�h�L��������� �@�l����������8�\�|��������4�T���\�ӯўӱӳ������h���ӵ�����h���ӹ���h��ӭ�(�0�h�8�ї�H�P�h�X�Ѷ2�h�p�h�x�ѷ2�����h������ �@�`�����5���Ӛ�����h���ӛ�����h��Ӫ���h� �ӫ�0�8�h�@����(�H�j�P�آأإ~�l�|�����������ؤY���������ئY�����������������ۂY�������ۓY�� ���(�ۀY�8�@���H��0�P���X�ऩ��p�x�����������ऱ����������������ऴ�������������������������ো���ৌ��(� �0���8�D���L�T�!�\�ୋ��l�ୈୌ��|�t���������������!���ஔ���������������������ொ���ௌ�������$�0���8�ோ��H�P���X�`���h�@�p���x�ై����������������������ೀ����������������������ೊೇೈ������$�,���4�ೋ��D�L���T�\���d�<�l��t�ൊ����ൌ��������	���������ോ������
�����������������ේොෞ�� �(�(�0���8�ෝ+�H�P�(�X�`���h�@�p�.�x��d���������������4���ဦ������������J�����M���가개갸걔거게겨계고과괘괴교구궈궤귀규그긔기P��X�(�`�h�J�p�까깨꺄꺠꺼께껴꼐꼬꽈꽤꾀꾜꾸꿔꿰뀌뀨끄끠끼P�����(�����J���나내냐냬너네녀녜노놔놰뇌뇨누눠눼뉘뉴느늬니P��X�(�`�h�J�p�다대댜댸더데뎌뎨도돠돼되됴두둬뒈뒤듀드듸디P�����(�����J���따때땨떄떠떼뗘뗴또똬뙈뙤뚀뚜뚸뛔뛰뜌뜨띄띠P��X�(�`�h�J�p�라래랴럐러레려례로롸뢔뢰료루뤄뤠뤼류르릐리P�����(�����J���마매먀먜머메며몌모뫄뫠뫼묘무뭐뭬뮈뮤므믜미P��X�(�`�h�J�p�바배뱌뱨버베벼볘보봐봬뵈뵤부붜붸뷔뷰브븨비P�����(�����J���빠빼뺘뺴뻐뻬뼈뼤뽀뽜뽸뾔뾰뿌뿨쀄쀠쀼쁘쁴삐P��X�(�`�h�J�p�사새샤섀서세셔셰소솨쇄쇠쇼수숴쉐쉬슈스싀시P����(���J��싸쌔쌰썌써쎄쎠쎼쏘쏴쐐쐬쑈쑤쒀쒜쒸쓔쓰씌씨P��X�(�`�h�J�p�아애야얘어에여예오와왜외요우워웨위유으의이P����(���J��자재쟈쟤저제져졔조좌좨죄죠주줘줴쥐쥬즈즤지P��X�(�`�h�J�p�짜째쨔쨰쩌쩨쪄쪠쪼쫘쫴쬐쬬쭈쭤쮀쮜쮸쯔쯰찌P����(���J��차채챠챼처체쳐쳬초촤쵀최쵸추춰췌취츄츠츼치P��X�(�`�h�J�p�카캐캬컈커케켜켸코콰쾌쾨쿄쿠쿼퀘퀴큐크킈키P����(���J��타태탸턔터테텨톄토톼퇘퇴툐투퉈퉤튀튜트틔티P��X�(�`�h�J�p�파패퍄퍠퍼페펴폐포퐈퐤푀표푸풔풰퓌퓨프픠피P����(���J��하해햐햬허헤혀혜호화홰회효후훠훼휘휴흐희히P��X�(�`�h�J�p�x���x���x���x���x���x���x���x���x���x�g���Ḹ	���h��ḹ	����h����|��Ṝ	�,�4�h�<�ṝ	�L�T�h�\�Ṩ!�l�t�h�|�ṩ!�����h���D�d���������ẬẶ����h��ậặ�����h��Ệ����h� �ệ��0�8�h�@���(�H���P�Ộ��l�t�h�|�ộ������h�����������ἂἄ����ἆᾀv�������ἃἅ����ἇᾁv������$�ᾂ(�8�@�s�H�ᾃ(�X�`�s�h�ᾄ(�x���s���ᾅ(�����s���ᾆ(�����s��ᾇ(���s��ἊἌ����Ἆᾈv������ �ἋἍ��4�Ἇᾉv�H�@�T���\�ᾊ(�p�x�s���ᾋ(�����s���ᾌ(�����s���ᾍ(���s��ᾎ(����s��ᾏ(���s� �ἒἔ��0�<�h�D�ἓἕ��T�`�h�h�ἚἜ��x���h���ἛἝ������h���ἢἤ����ἦᾐv�������ἣἥ����ἧᾑv���$ᾒ(�8@s�Hᾓ(�X`s�hᾔ(�x�s��ᾕ(���s��ᾖ(���s��ᾗ(���s��ἪἬ���Ἦᾘv��� ἫἭ��4Ἧᾙv�H@T��\ᾚ(�pxs��ᾛ(���s��ᾜ(���s��ᾝ(���s��ᾞ(���s�ᾟ(�s� ἲἴ��0ἶ��D<L��Tἳἵ��hἷ��|t����ἺἼ���Ἶ��������ἻἽ���Ἷ���������0�P�p�������,�h��������(�L�p������0Pp����,h����(`����ὂὄ����h��ὃὅ����h��ὊὌ��h�ὋὍ��(4h�<ὒὔ��Lὖ��`Xh��pὓὕ���ὗ��������ὛὝ���Ὗ��������ὢὤ���ὦᾠv���ὣὥ��0ὧᾡv�D<P��Xᾢ(�lts�|ᾣ(���s��ᾤ(���s��ᾥ(���s��ᾦ(���s��ᾧ(�s�ὪὬ��,Ὦᾨv�@8L��TὫὭ��hὯᾩv�|t����ᾪ(���s��ᾫ(���s��ᾬ(���s��ᾭ(�s�ᾮ(�$,s�4ᾯ(�DLs�Tᾲ(�dls�tῂ(���s��ῲ(���s���� D|��(d����$`����<\|�����ᾷ(�8@s�H῍῎��X῏��ldt��|P�.��ῇ(���s��ῷ(���s��῝῞���῟����	��	��	:�	���$���d����0�,	u�4	ゔ��h	p	��x	�	���	が���	�	���	�	���	ぎ���	�	���	�	���	ぐ���	
��

��
げ��(
0
��8
@
��H
ご��X
`
��h
p
��x
ざ���
�
���
�
���
じ���
�
���
�
���
ず���
�
���
��ぜ�� ��(0��8ぞ��HP��X`��hだ��x��������ぢ�����������づ�����������で���� ��(ど��8@��HP��Xばぱ��ht��|����びぴ�����������ぶぷ�����������べぺ��

��
 
��(
ぼぽ��8
D
��L
T
��\
�	�	�	 
P
�
�
�
@p��0`���0
d
��l
ゞ���
�
���
�
���
ヴ���
����ガ��,4��<D��Lギ��\d��lt��|グ�����������ゲ�����������ゴ���������ザ��$��,4��<ジ��LT��\d��lズ��|��������ゼ�����������ゾ�����������ダ����$��,�
$T���Dt��4��<ヂ��|��������ヅ�����������デ�����������ド����$��,バパ��<H��PX��`ビピ��p|�������ブプ�����������ベペ�����������ボポ���� (��0ヷ��@H��PX��`ヸ��px�������ヹ�����������ヺ�����������ヾ������ ��4h��8h���(�0�
tl]�t각갂갃간갅갆갇갈갉갊갋갌갍갎갏감갑값갓갔강갖갗갘b��같갚갛|�����J�$객갞갟갠갡갢갣갤갥갦갧갨갩갪갫갬갭갮갯갰갱갲갳갴b�4갵갶갷|��������J��갹갺갻갼갽갾갿걀걁걂걃걄걅걆걇걈걉걊걋걌걍걎걏걐b��걑걒걓|�H@X��`lJ�t,�|���걕걖걗걘걙걚걛걜걝걞걟걠걡걢걣걤걥걦걧걨걩걪걫걬b��걭걮걯|��� ,J�4걱걲걳건걵걶걷걸걹걺걻걼걽걾걿검겁겂것겄겅겆겇겈b�D겉겊겋|��������J��<����겍겎겏겐겑겒겓겔겕겖겗겘겙겚겛겜겝겞겟겠겡겢겣겤b�겥겦겧|�ld|����J��격겪겫견겭겮겯결겱겲겳겴겵겶겷겸겹겺겻겼경겾겿곀b��곁곂곃|�$��,8J�@�H��P곅곆곇곈곉곊곋곌곍곎곏곐곑곒곓곔곕곖곗곘곙곚곛곜b�d곝곞곟|��������J��곡곢곣곤곥곦곧골곩곪곫곬곭곮곯곰곱곲곳곴공곶곷곸b�곹곺곻|�xp�����J��곽곾곿관괁괂괃괄괅괆괇괈괉괊괋괌괍괎괏괐광괒괓괔b��괕괖괗|� 0��8DJ�L�T��\괙괚괛괜괝괞괟괠괡괢괣괤괥괦괧괨괩괪괫괬괭괮괯괰b�t괱괲괳|�������J�괵괶괷괸괹괺괻괼괽괾괿굀굁굂굃굄굅굆굇굈굉굊굋굌b�굍굎굏|��������J���5��굑굒굓굔굕굖굗굘굙굚굛굜굝굞굟굠굡굢굣굤굥굦굧굨b��굩굪굫|�D<T��\hJ�p국굮굯군굱굲굳굴굵굶굷굸굹굺굻굼굽굾굿궀궁궂궃궄b��궅궆궇|������J�x T�(궉궊궋권궍궎궏궐궑궒궓궔궕궖궗궘궙궚궛궜궝궞궟궠b�<궡궢궣|��������J��궥궦궧궨궩궪궫궬궭궮궯궰궱궲궳궴궵궶궷궸궹궺궻궼b��궽궾궿|�PH`��htJ�|��s��귁귂귃귄귅귆귇귈귉귊귋귌귍귎귏귐귑귒귓귔귕귖귗귘b��귙귚귛|���$0J�8귝귞귟균귡귢귣귤귥귦귧귨귩귪귫귬귭귮귯귰귱귲귳귴b�H귵귶귷|��������J��극귺귻근귽귾귿글긁긂긃긄긅긆긇금급긊긋긌긍긎긏긐b��긑긒긓|�\ T l ��t � J�� @�� ��� 긕긖긗긘긙긚긛긜긝긞긟긠긡긢긣긤긥긦긧긨긩긪긫긬b�� 긭긮긯|�!!,!��4!@!J�H!긱긲긳긴긵긶긷길긹긺긻긼긽긾긿김깁깂깃깄깅깆깇깈b�X!깉깊깋|��!�!�!���!�!J��!P!�!��"깍깎깏깐깑깒깓깔깕깖깗깘깙깚깛깜깝깞깟깠깡깢깣깤b�"깥깦깧|��"x"�"���"�"J��"깩깪깫깬깭깮깯깰깱깲깳깴깵깶깷깸깹깺깻깼깽깾깿꺀b��"꺁꺂꺃|�(# #8#��@#L#J�T#�"\#��d#꺅꺆꺇꺈꺉꺊꺋꺌꺍꺎꺏꺐꺑꺒꺓꺔꺕꺖꺗꺘꺙꺚꺛꺜b�x#꺝꺞꺟|��#�#�#���#$J�$꺡꺢꺣꺤꺥꺦꺧꺨꺩꺪꺫꺬꺭꺮꺯꺰꺱꺲꺳꺴꺵꺶꺷꺸b� $꺹꺺꺻|��$�$�$���$�$J��$꺽꺾꺿껀껁껂껃껄껅껆껇껈껉껊껋껌껍껎껏껐껑껒껓껔b��$껕껖껗|�4%,%D%��L%X%J�`%$�$h%��p%껙껚껛껜껝껞껟껠껡껢껣껤껥껦껧껨껩껪껫껬껭껮껯껰b��%껱껲껳|��%�%&��&&J� &껵껶껷껸껹껺껻껼껽껾껿꼀꼁꼂꼃꼄꼅꼆꼇꼈꼉꼊꼋꼌b�0&꼍꼎꼏|��&�&�&���&�&J��&(&�&5��&꼑꼒꼓꼔꼕꼖꼗꼘꼙꼚꼛꼜꼝꼞꼟꼠꼡꼢꼣꼤꼥꼦꼧꼨b��&꼩꼪꼫|�X'P'h'��p'|'J��'꼭꼮꼯꼰꼱꼲꼳꼴꼵꼶꼷꼸꼹꼺꼻꼼꼽꼾꼿꽀꽁꽂꽃꽄b��'꽅꽆꽇|�(�'(��($(J�,(�'4(T�<(꽉꽊꽋꽌꽍꽎꽏꽐꽑꽒꽓꽔꽕꽖꽗꽘꽙꽚꽛꽜꽝꽞꽟꽠b�P(꽡꽢꽣|��(�(�(���(�(J��(꽥꽦꽧꽨꽩꽪꽫꽬꽭꽮꽯꽰꽱꽲꽳꽴꽵꽶꽷꽸꽹꽺꽻꽼b��(꽽꽾꽿|�d)\)t)��|)�)J��)�(�)s��)꾁꾂꾃꾄꾅꾆꾇꾈꾉꾊꾋꾌꾍꾎꾏꾐꾑꾒꾓꾔꾕꾖꾗꾘b��)꾙꾚꾛|� **0*��8*D*J�L*꾝꾞꾟꾠꾡꾢꾣꾤꾥꾦꾧꾨꾩꾪꾫꾬꾭꾮꾯꾰꾱꾲꾳꾴b�\*꾵꾶꾷|��*�*�*���*�*J��*꾹꾺꾻꾼꾽꾾꾿꿀꿁꿂꿃꿄꿅꿆꿇꿈꿉꿊꿋꿌꿍꿎꿏꿐b�+꿑꿒꿓|�p+h+�+���+�+J��+T*�*�+���+꿕꿖꿗꿘꿙꿚꿛꿜꿝꿞꿟꿠꿡꿢꿣꿤꿥꿦꿧꿨꿩꿪꿫꿬b��+꿭꿮꿯|�0,(,@,��H,T,J�\,꿱꿲꿳꿴꿵꿶꿷꿸꿹꿺꿻꿼꿽꿾꿿뀀뀁뀂뀃뀄뀅뀆뀇뀈b�l,뀉뀊뀋|��,�,�,���,�,J�-d,-��-��\l�4�� "p#�%�&H(�)�+ -��(-뀍뀎뀏뀐뀑뀒뀓뀔뀕뀖뀗뀘뀙뀚뀛뀜뀝뀞뀟뀠뀡뀢뀣뀤b�t-뀥뀦뀧|��-�-�-���-.J�.뀩뀪뀫뀬뀭뀮뀯뀰뀱뀲뀳뀴뀵뀶뀷뀸뀹뀺뀻뀼뀽뀾뀿끀b�.끁끂끃|��.�.�.���.�.J��..�.���.끅끆끇끈끉끊끋끌끍끎끏끐끑끒끓끔끕끖끗끘끙끚끛끜b��.끝끞끟|�D/</T/��\/h/J�p/끡끢끣끤끥끦끧끨끩끪끫끬끭끮끯끰끱끲끳끴끵끶끷끸b��/끹끺끻|��/�/�/��00J�0끽끾끿낀낁낂낃낄낅낆낇낈낉낊낋낌낍낎낏낐낑낒낓낔b�(0낕낖낗|��0�0�0���0�0J��0x/ 0�0���0낙낚낛난낝낞낟날낡낢낣낤낥낦낧남납낪낫났낭낮낯낰b��0낱낲낳|�T1L1d1��l1x1J��1낵낶낷낸낹낺낻낼낽낾낿냀냁냂냃냄냅냆냇냈냉냊냋냌b��1냍냎냏|��1�12��2 2J�(2�1025�82냑냒냓냔냕냖냗냘냙냚냛냜냝냞냟냠냡냢냣냤냥냦냧냨b�L2냩냪냫|��2�2�2���2�2J��2냭냮냯냰냱냲냳냴냵냶냷냸냹냺냻냼냽냾냿넀넁넂넃넄b��2넅넆넇|�`3X3p3��x3�3J��3�2�3T��3넉넊넋넌넍넎넏널넑넒넓넔넕넖넗넘넙넚넛넜넝넞넟넠b��3넡넢넣|�44,4��44@4J�H4넥넦넧넨넩넪넫넬넭넮넯넰넱넲넳넴넵넶넷넸넹넺넻넼b�X4넽넾넿|��4�4�4���4�4J��4P4�4s�5녁녂녃년녅녆녇녈녉녊녋녌녍녎녏념녑녒녓녔녕녖녗녘b�5녙녚녛|��5x5�5���5�5J��5녝녞녟녠녡녢녣녤녥녦녧녨녩녪녫녬녭녮녯녰녱녲녳녴b��5녵녶녷|�(6 686��@6L6J�T6녹녺녻논녽녾녿놀놁놂놃놄놅놆놇놈놉놊놋놌농놎놏놐b�d6놑높놓|��6�6�6���6�6J��6�5\67��7놕놖놗놘놙놚놛놜놝놞놟놠놡놢놣놤놥놦놧놨놩놪놫놬b�$7놭놮놯|��7�7�7���7�7J��7놱놲놳놴놵놶놷놸놹놺놻놼놽놾놿뇀뇁뇂뇃뇄뇅뇆뇇뇈b��7뇉뇊뇋|�8808H8��P8\8J�d8�7l8��t8뇍뇎뇏뇐뇑뇒뇓뇔뇕뇖뇗뇘뇙뇚뇛뇜뇝뇞뇟뇠뇡뇢뇣뇤b��8뇥뇦뇧|��8�89��99J� 9뇩뇪뇫뇬뇭뇮뇯뇰뇱뇲뇳뇴뇵뇶뇷뇸뇹뇺뇻뇼뇽뇾뇿눀b�09눁눂눃|��9�9�9���9�9J��9(9�9���9눅눆눇눈눉눊눋눌눍눎눏눐눑눒눓눔눕눖눗눘눙눚눛눜b��9눝눞눟|�X:P:h:��p:|:J��:눡눢눣눤눥눦눧눨눩눪눫눬눭눮눯눰눱눲눳눴눵눶눷눸b��:눹눺눻|�;�:;��;$;J�,;눽눾눿뉀뉁뉂뉃뉄뉅뉆뉇뉈뉉뉊뉋뉌뉍뉎뉏뉐뉑뉒뉓뉔b�<;뉕뉖뉗|��;�;�;���;�;J��;�:4;�;���;뉙뉚뉛뉜뉝뉞뉟뉠뉡뉢뉣뉤뉥뉦뉧뉨뉩뉪뉫뉬뉭뉮뉯뉰b��;뉱뉲뉳|�h<`<x<���<�<J��<뉵뉶뉷뉸뉹뉺뉻뉼뉽뉾뉿늀늁늂늃늄늅늆늇늈늉늊늋늌b��<늍늎늏|�== =��(=4=J�<=�<D=5�L=늑늒늓는늕늖늗늘늙늚늛늜늝늞늟늠늡늢늣늤능늦늧늨b�`=늩늪늫|��=�=�=���=�=J��=늭늮늯늰늱늲늳늴늵늶늷늸늹늺늻늼늽늾늿닀닁닂닃닄b�>닅닆닇|�t>l>�>���>�>J��>>�>T��>닉닊닋닌닍닎닏닐닑닒닓닔닕닖닗님닙닚닛닜닝닞닟닠b��>닡닢닣|�0?(?@?��H?T?J�\?닥닦닧단닩닪닫달닭닮닯닰닱닲닳담답닶닷닸당닺닻닼b�l?닽닾닿|��?�?�?���?�?J�@d?@s�@댁댂댃댄댅댆댇댈댉댊댋댌댍댎댏댐댑댒댓댔댕댖댗댘b�(@댙댚댛|��@�@�@���@�@J��@댝댞댟댠댡댢댣댤댥댦댧댨댩댪댫댬댭댮댯댰댱댲댳댴b��@댵댶댷|�<A4ALA��TA`AJ�hA댹댺댻댼댽댾댿덀덁덂덃덄덅덆덇덈덉덊덋덌덍덎덏덐b�xA덑덒덓|��A�A�A���ABJ�B�@pAB�� B덕덖덗던덙덚덛덜덝덞덟덠덡덢덣덤덥덦덧덨덩덪덫덬b�8B덭덮덯|��B�B�B���B�BJ��B덱덲덳덴덵덶덷델덹덺덻덼덽덾덿뎀뎁뎂뎃뎄뎅뎆뎇뎈b��B뎉뎊뎋|�LCDC\C��dCpCJ�xC�B�C���C뎍뎎뎏뎐뎑뎒뎓뎔뎕뎖뎗뎘뎙뎚뎛뎜뎝뎞뎟뎠뎡뎢뎣뎤b��C뎥뎦뎧|�DDD�� D,DJ�4D뎩뎪뎫뎬뎭뎮뎯뎰뎱뎲뎳뎴뎵뎶뎷뎸뎹뎺뎻뎼뎽뎾뎿돀b�DD돁돂돃|��D�D�D���D�DJ��D<D�D���D독돆돇돈돉돊돋돌돍돎돏돐돑돒돓돔돕돖돗돘동돚돛돜b�E돝돞돟|�lEdE|E���E�EJ��E돡돢돣돤돥돦돧돨돩돪돫돬돭돮돯돰돱돲돳돴돵돶돷돸b��E돹돺돻|�FF$F��,F8FJ�@F돽돾돿됀됁됂됃됄됅됆됇됈됉됊됋됌됍됎됏됐됑됒됓됔b�PF됕됖됗|��F�F�F���F�FJ��F�EHF�F���F됙됚됛된됝됞됟될됡됢됣됤됥됦됧됨됩됪됫됬됭됮됯됰b�G됱됲됳|�|GtG�G���G�GJ��G됵됶됷됸됹됺됻됼됽됾됿둀둁둂둃둄둅둆둇둈둉둊둋둌b��G둍둎둏|�$HH4H��<HHHJ�PH�GXH5�`H둑둒둓둔둕둖둗둘둙둚둛둜둝둞둟둠둡둢둣둤둥둦둧둨b�tH둩둪둫|��H�H�H���HIJ�I둭둮둯둰둱둲둳둴둵둶둷둸둹둺둻둼둽둾둿뒀뒁뒂뒃뒄b�I뒅뒆뒇|��I�I�I���I�IJ��II�IT��I뒉뒊뒋뒌뒍뒎뒏뒐뒑뒒뒓뒔뒕뒖뒗뒘뒙뒚뒛뒜뒝뒞뒟뒠b��I뒡뒢뒣|�DJ<JTJ��\JhJJ�pJ뒥뒦뒧뒨뒩뒪뒫뒬뒭뒮뒯뒰뒱뒲뒳뒴뒵뒶뒷뒸뒹뒺뒻뒼b��J뒽뒾뒿|��J�J�J��KKJ�KxJ Ks�(K듁듂듃듄듅듆듇듈듉듊듋듌듍듎듏듐듑듒듓듔듕듖듗듘b�<K듙듚듛|��K�K�K���K�KJ��K득듞듟든듡듢듣들듥듦듧듨듩듪듫듬듭듮듯듰등듲듳듴b��K듵듶듷|�PLHL`L��hLtLJ�|L듹듺듻듼듽듾듿딀딁딂딃딄딅딆딇딈딉딊딋딌딍딎딏딐b��L딑딒딓|��L�LM��MMJ�$M�K�L,M��4M딕딖딗딘딙딚딛딜딝딞딟딠딡딢딣딤딥딦딧딨딩딪딫딬b�LM딭딮딯|��M�M�M���M�MJ��M딱딲딳딴딵딶딷딸딹딺딻딼딽딾딿땀땁땂땃땄땅땆땇땈b��M땉땊땋|�`NXNpN��xN�NJ��N�M�N���N땍땎땏땐땑땒땓땔땕땖땗땘땙땚땛땜땝땞땟땠땡땢땣땤b��N땥땦땧|�OO,O��4O@OJ�HO땩땪땫땬땭땮땯땰땱땲땳땴땵땶땷땸땹땺땻땼땽땾땿떀b�XO떁떂떃|��O�O�O���O�OJ��OPO�O��P떅떆떇떈떉떊떋떌떍떎떏떐떑떒떓떔떕떖떗떘떙떚떛떜b�P떝떞떟|��PxP�P���P�PJ��P떡떢떣떤떥떦떧떨떩떪떫떬떭떮떯떰떱떲떳떴떵떶떷떸b��P떹떺떻|�(Q Q8Q��@QLQJ�TQ떽떾떿뗀뗁뗂뗃뗄뗅뗆뗇뗈뗉뗊뗋뗌뗍뗎뗏뗐뗑뗒뗓뗔b�dQ뗕뗖뗗|��Q�Q�Q���Q�QJ��Q�P\QR��R뗙뗚뗛뗜뗝뗞뗟뗠뗡뗢뗣뗤뗥뗦뗧뗨뗩뗪뗫뗬뗭뗮뗯뗰b�$R뗱뗲뗳|��R�R�R���R�RJ��R뗵뗶뗷뗸뗹뗺뗻뗼뗽뗾뗿똀똁똂똃똄똅똆똇똈똉똊똋똌b��R똍똎똏|�8S0SHS��PS\SJ�dS�RlS5�tS똑똒똓똔똕똖똗똘똙똚똛똜똝똞똟똠똡똢똣똤똥똦똧똨b��S똩똪똫|��S�ST��TTJ� T똭똮똯똰똱똲똳똴똵똶똷똸똹똺똻똼똽똾똿뙀뙁뙂뙃뙄b�0T뙅뙆뙇|��T�T�T���T�TJ��T(T�TT��T뙉뙊뙋뙌뙍뙎뙏뙐뙑뙒뙓뙔뙕뙖뙗뙘뙙뙚뙛뙜뙝뙞뙟뙠b��T뙡뙢뙣|�XUPUhU��pU|UJ��U뙥뙦뙧뙨뙩뙪뙫뙬뙭뙮뙯뙰뙱뙲뙳뙴뙵뙶뙷뙸뙹뙺뙻뙼b��U뙽뙾뙿|�V�UV��V$VJ�,V�U4Vs�<V뚁뚂뚃뚄뚅뚆뚇뚈뚉뚊뚋뚌뚍뚎뚏뚐뚑뚒뚓뚔뚕뚖뚗뚘b�PV뚙뚚뚛|��V�V�V���V�VJ��V뚝뚞뚟뚠뚡뚢뚣뚤뚥뚦뚧뚨뚩뚪뚫뚬뚭뚮뚯뚰뚱뚲뚳뚴b��V뚵뚶뚷|�dW\WtW��|W�WJ��W뚹뚺뚻뚼뚽뚾뚿뛀뛁뛂뛃뛄뛅뛆뛇뛈뛉뛊뛋뛌뛍뛎뛏뛐b��W뛑뛒뛓|�XXX��$X0XJ�8X�V�W@X��HX뛕뛖뛗뛘뛙뛚뛛뛜뛝뛞뛟뛠뛡뛢뛣뛤뛥뛦뛧뛨뛩뛪뛫뛬b�`X뛭뛮뛯|��X�X�X���X�XJ��X뛱뛲뛳뛴뛵뛶뛷뛸뛹뛺뛻뛼뛽뛾뛿뜀뜁뜂뜃뜄뜅뜆뜇뜈b�Y뜉뜊뜋|�tYlY�Y���Y�YJ��YY�Y���Y뜍뜎뜏뜐뜑뜒뜓뜔뜕뜖뜗뜘뜙뜚뜛뜜뜝뜞뜟뜠뜡뜢뜣뜤b��Y뜥뜦뜧|�0Z(Z@Z��HZTZJ�\Z뜩뜪뜫뜬뜭뜮뜯뜰뜱뜲뜳뜴뜵뜶뜷뜸뜹뜺뜻뜼뜽뜾뜿띀b�lZ띁띂띃|��Z�Z�Z���Z�ZJ�[dZ[��[띅띆띇띈띉띊띋띌띍띎띏띐띑띒띓띔띕띖띗띘띙띚띛띜b�([띝띞띟|��[�[�[���[�[J��[띡띢띣띤띥띦띧띨띩띪띫띬띭띮띯띰띱띲띳띴띵띶띷띸b��[띹띺띻|�<\4\L\��T\`\J�h\락띾띿란랁랂랃랄랅랆랇랈랉랊랋람랍랎랏랐랑랒랓랔b�x\랕랖랗|��\�\�\���\]J�]�[p\]�� ]랙랚랛랜랝랞랟랠랡랢랣랤랥랦랧램랩랪랫랬랭랮랯랰b�8]랱랲랳|��]�]�]���]�]J��]략랶랷랸랹랺랻랼랽랾랿럀럁럂럃럄럅럆럇럈량럊럋럌b��]럍럎럏|�L^D^\^��d^p^J�x^�]�^5��^럑럒럓럔럕럖럗럘럙럚럛럜럝럞럟럠럡럢럣럤럥럦럧럨b��^럩럪럫|�___�� _,_J�4_럭럮럯런럱럲럳럴럵럶럷럸럹럺럻럼럽럾럿렀렁렂렃렄b�D_렅렆렇|��_�_�_���_�_J��_<_�_T��_렉렊렋렌렍렎렏렐렑렒렓렔렕렖렗렘렙렚렛렜렝렞렟렠b�`렡렢렣|�l`d`|`���`�`J��`력렦렧련렩렪렫렬렭렮렯렰렱렲렳렴렵렶렷렸령렺렻렼b��`렽렾렿|�aa$a��,a8aJ�@a�`Has�Pa롁롂롃롄롅롆롇롈롉롊롋롌롍롎롏롐롑롒롓롔롕롖롗롘b�da롙롚롛|��a�a�a���a�aJ��a록롞롟론롡롢롣롤롥롦롧롨롩롪롫롬롭롮롯롰롱롲롳롴b�b롵롶롷|�xbpb�b���b�bJ��b롹롺롻롼롽롾롿뢀뢁뢂뢃뢄뢅뢆뢇뢈뢉뢊뢋뢌뢍뢎뢏뢐b��b뢑뢒뢓|� cc0c��8cDcJ�Lcb�bTc��\c뢕뢖뢗뢘뢙뢚뢛뢜뢝뢞뢟뢠뢡뢢뢣뢤뢥뢦뢧뢨뢩뢪뢫뢬b�tc뢭뢮뢯|��c�c�c���cdJ�d뢱뢲뢳뢴뢵뢶뢷뢸뢹뢺뢻뢼뢽뢾뢿룀룁룂룃룄룅룆룇룈b�d룉룊룋|��d�d�d���d�dJ��dd�d���d룍룎룏룐룑룒룓룔룕룖룗룘룙룚룛룜룝룞룟룠룡룢룣룤b��d룥룦룧|�De<eTe��\eheJ�pe룩룪룫룬룭룮룯룰룱룲룳룴룵룶룷룸룹룺룻룼룽룾룿뤀b��e뤁뤂뤃|��e�e�e��ffJ�fxe f��(f뤅뤆뤇뤈뤉뤊뤋뤌뤍뤎뤏뤐뤑뤒뤓뤔뤕뤖뤗뤘뤙뤚뤛뤜b�<f뤝뤞뤟|��f�f�f���f�fJ��f뤡뤢뤣뤤뤥뤦뤧뤨뤩뤪뤫뤬뤭뤮뤯뤰뤱뤲뤳뤴뤵뤶뤷뤸b��f뤹뤺뤻|�PgHg`g��hgtgJ�|g뤽뤾뤿륀륁륂륃륄륅륆륇륈륉륊륋륌륍륎륏륐륑륒륓륔b��g륕륖륗|��g�gh��hhJ�$h�f�g,h��4h륙륚륛륜륝륞륟률륡륢륣륤륥륦륧륨륩륪륫륬륭륮륯륰b�Lh륱륲륳|��h�h�h���h�hJ��h륵륶륷른륹륺륻를륽륾륿릀릁릂릃름릅릆릇릈릉릊릋릌b��h릍릎릏|�`iXipi��xi�iJ��i�h�i5��i릑릒릓릔릕릖릗릘릙릚릛릜릝릞릟릠릡릢릣릤릥릦릧릨b��i릩릪릫|�jj,j��4j@jJ�Hj릭릮릯린릱릲릳릴릵릶릷릸릹릺릻림립릾릿맀링맂맃맄b�Xj맅맆맇|��j�j�j���j�jJ��jPj�jT�k막맊맋만맍많맏말맑맒맓맔맕맖맗맘맙맚맛맜망맞맟맠b�k맡맢맣|��kxk�k���k�kJ��k맥맦맧맨맩맪맫맬맭맮맯맰맱맲맳맴맵맶맷맸맹맺맻맼b��k맽맾맿|�(l l8l��@lLlJ�Tl�k\ls�dl먁먂먃먄먅먆먇먈먉먊먋먌먍먎먏먐먑먒먓먔먕먖먗먘b�xl먙먚먛|��l�l�l���lmJ�m먝먞먟먠먡먢먣먤먥먦먧먨먩먪먫먬먭먮먯먰먱먲먳먴b� m먵먶먷|��m�m�m���m�mJ��m먹먺먻먼먽먾먿멀멁멂멃멄멅멆멇멈멉멊멋멌멍멎멏멐b��m멑멒멓|�4n,nDn��LnXnJ�`nm�mhn��pn멕멖멗멘멙멚멛멜멝멞멟멠멡멢멣멤멥멦멧멨멩멪멫멬b��n멭멮멯|��n�no��ooJ� o멱멲멳면멵멶멷멸멹멺멻멼멽멾멿몀몁몂몃몄명몆몇몈b�0o몉몊몋|��o�o�o���o�oJ��o(o�o���o몍몎몏몐몑몒몓몔몕몖몗몘몙몚몛몜몝몞몟몠몡몢몣몤b��o몥몦몧|�XpPphp��pp|pJ��p목몪몫몬몭몮몯몰몱몲몳몴몵몶몷몸몹몺못몼몽몾몿뫀b��p뫁뫂뫃|�q�pq��q$qJ�,q�p4q��<q뫅뫆뫇뫈뫉뫊뫋뫌뫍뫎뫏뫐뫑뫒뫓뫔뫕뫖뫗뫘뫙뫚뫛뫜b�Pq뫝뫞뫟|��q�q�q���q�qJ��q뫡뫢뫣뫤뫥뫦뫧뫨뫩뫪뫫뫬뫭뫮뫯뫰뫱뫲뫳뫴뫵뫶뫷뫸b��q뫹뫺뫻|�dr\rtr��|r�rJ��r뫽뫾뫿묀묁묂묃묄묅묆묇묈묉묊묋묌묍묎묏묐묑묒묓묔b��r묕묖묗|�sss��$s0sJ�8s�q�r@s��Hs묙묚묛묜묝묞묟묠묡묢묣묤묥묦묧묨묩묪묫묬묭묮묯묰b�`s묱묲묳|��s�s�s���s�sJ��s묵묶묷문묹묺묻물묽묾묿뭀뭁뭂뭃뭄뭅뭆뭇뭈뭉뭊뭋뭌b�t뭍뭎뭏|�ttlt�t���t�tJ��tt�t5��t뭑뭒뭓뭔뭕뭖뭗뭘뭙뭚뭛뭜뭝뭞뭟뭠뭡뭢뭣뭤뭥뭦뭧뭨b��t뭩뭪뭫|�0u(u@u��HuTuJ�\u뭭뭮뭯뭰뭱뭲뭳뭴뭵뭶뭷뭸뭹뭺뭻뭼뭽뭾뭿뮀뮁뮂뮃뮄b�lu뮅뮆뮇|��u�u�u���u�uJ�vduvT�v뮉뮊뮋뮌뮍뮎뮏뮐뮑뮒뮓뮔뮕뮖뮗뮘뮙뮚뮛뮜뮝뮞뮟뮠b�(v뮡뮢뮣|��v�v�v���v�vJ��v뮥뮦뮧뮨뮩뮪뮫뮬뮭뮮뮯뮰뮱뮲뮳뮴뮵뮶뮷뮸뮹뮺뮻뮼b��v뮽뮾뮿|�<w4wLw��Tw`wJ�hw�vpws�xw믁믂믃믄믅믆믇믈믉믊믋믌믍믎믏믐믑믒믓믔믕믖믗믘b��w믙믚믛|��w�wx��xxJ�$x믝믞믟믠믡믢믣믤믥믦믧믨믩믪믫믬믭믮믯믰믱믲믳믴b�4x믵믶믷|��x�x�x���x�xJ��x믹믺믻민믽믾믿밀밁밂밃밄밅밆밇밈밉밊밋밌밍밎및밐b��x밑밒밓|�Hy@yXy��`ylyJ�ty,x�x|y���y박밖밗반밙밚받발밝밞밟밠밡밢밣밤밥밦밧밨방밪밫밬b��y밭밮밯|�zzz�� z,zJ�4z백밲밳밴밵밶밷밸밹밺밻밼밽밾밿뱀뱁뱂뱃뱄뱅뱆뱇뱈b�Dz뱉뱊뱋|��z�z�z���z�zJ��z<z�z���z뱍뱎뱏뱐뱑뱒뱓뱔뱕뱖뱗뱘뱙뱚뱛뱜뱝뱞뱟뱠뱡뱢뱣뱤b�{뱥뱦뱧|�l{d{|{���{�{J��{뱩뱪뱫뱬뱭뱮뱯뱰뱱뱲뱳뱴뱵뱶뱷뱸뱹뱺뱻뱼뱽뱾뱿벀b��{벁벂벃|�||$|��,|8|J�@|�{H|��P|벅벆벇번벉벊벋벌벍벎벏벐벑벒벓범법벖벗벘벙벚벛벜b�d|벝벞벟|��|�|�|���|�|J��|벡벢벣벤벥벦벧벨벩벪벫벬벭벮벯벰벱벲벳벴벵벶벷벸b�}벹벺벻|�x}p}�}���}�}J��}벽벾벿변볁볂볃별볅볆볇볈볉볊볋볌볍볎볏볐병볒볓볔b��}볕볖볗|� ~~0~��8~D~J�L~}�}T~��\~볙볚볛볜볝볞볟볠볡볢볣볤볥볦볧볨볩볪볫볬볭볮볯볰b�t~볱볲볳|��~�~�~���~J�복볶볷본볹볺볻볼볽볾볿봀봁봂봃봄봅봆봇봈봉봊봋봌b�봍봎봏|��������J���5��봑봒봓봔봕봖봗봘봙봚봛봜봝봞봟봠봡봢봣봤봥봦봧봨b��봩봪봫|�D�<�T���\�h�J�p�봭봮봯봰봱봲봳봴봵봶봷봸봹봺봻봼봽봾봿뵀뵁뵂뵃뵄b���뵅뵆뵇|���������J��x� �T�(�뵉뵊뵋뵌뵍뵎뵏뵐뵑뵒뵓뵔뵕뵖뵗뵘뵙뵚뵛뵜뵝뵞뵟뵠b�<�뵡뵢뵣|�����������́J�ԁ뵥뵦뵧뵨뵩뵪뵫뵬뵭뵮뵯뵰뵱뵲뵳뵴뵵뵶뵷뵸뵹뵺뵻뵼b��뵽뵾뵿|�P�H�`���h�t�J�|�܁��s���북붂붃분붅붆붇불붉붊붋붌붍붎붏붐붑붒붓붔붕붖붗붘b���붙붚붛|������$�0�J�8�붝붞붟붠붡붢붣붤붥붦붧붨붩붪붫붬붭붮붯붰붱붲붳붴b�H�붵붶붷|�����ă��̃؃J��붹붺붻붼붽붾붿뷀뷁뷂뷃뷄뷅뷆뷇뷈뷉뷊뷋뷌뷍뷎뷏뷐b��뷑뷒뷓|�\�T�l���t���J���@��������뷕뷖뷗뷘뷙뷚뷛뷜뷝뷞뷟뷠뷡뷢뷣뷤뷥뷦뷧뷨뷩뷪뷫뷬b���뷭뷮뷯|���,���4�@�J�H�뷱뷲뷳뷴뷵뷶뷷뷸뷹뷺뷻뷼뷽뷾뷿븀븁븂븃븄븅븆븇븈b�X�븉븊븋|�ą��ԅ��܅�J��P������븍븎븏븐븑븒븓블븕븖븗븘븙븚븛븜븝븞븟븠븡븢븣븤b��븥븦븧|���x���������J���븩븪븫븬븭븮븯븰븱븲븳븴븵븶븷븸븹븺븻븼븽븾븿빀b���빁빂빃|�(� �8���@�L�J�T���\���d�빅빆빇빈빉빊빋빌빍빎빏빐빑빒빓빔빕빖빗빘빙빚빛빜b�x�빝빞빟|��܇������J��빡빢빣빤빥빦빧빨빩빪빫빬빭빮빯빰빱빲빳빴빵빶빷빸b� �빹빺빻|�������������J���빽빾빿뺀뺁뺂뺃뺄뺅뺆뺇뺈뺉뺊뺋뺌뺍뺎뺏뺐뺑뺒뺓뺔b�Ȉ뺕뺖뺗|�4�,�D���L�X�J�`����h���p�뺙뺚뺛뺜뺝뺞뺟뺠뺡뺢뺣뺤뺥뺦뺧뺨뺩뺪뺫뺬뺭뺮뺯뺰b���뺱뺲뺳|��������J� �뺵뺶뺷뺸뺹뺺뺻뺼뺽뺾뺿뻀뻁뻂뻃뻄뻅뻆뻇뻈뻉뻊뻋뻌b�0�뻍뻎뻏|�������������J�Ȋ(�Њ5�؊뻑뻒뻓뻔뻕뻖뻗뻘뻙뻚뻛뻜뻝뻞뻟뻠뻡뻢뻣뻤뻥뻦뻧뻨b��뻩뻪뻫|�X�P�h���p�|�J���뻭뻮뻯뻰뻱뻲뻳뻴뻵뻶뻷뻸뻹뻺뻻뻼뻽뻾뻿뼀뼁뼂뼃뼄b���뼅뼆뼇|��������$�J�,���4�T�<�뼉뼊뼋뼌뼍뼎뼏뼐뼑뼒뼓뼔뼕뼖뼗뼘뼙뼚뼛뼜뼝뼞뼟뼠b�P�뼡뼢뼣|�����̌��Ԍ�J��뼥뼦뼧뼨뼩뼪뼫뼬뼭뼮뼯뼰뼱뼲뼳뼴뼵뼶뼷뼸뼹뼺뼻뼼b���뼽뼾뼿|�d�\�t���|���J������s���뽁뽂뽃뽄뽅뽆뽇뽈뽉뽊뽋뽌뽍뽎뽏뽐뽑뽒뽓뽔뽕뽖뽗뽘b���뽙뽚뽛|� ��0���8�D�J�L�뽝뽞뽟뽠뽡뽢뽣뽤뽥뽦뽧뽨뽩뽪뽫뽬뽭뽮뽯뽰뽱뽲뽳뽴b�\�뽵뽶뽷|�Ȏ��؎����J��뽹뽺뽻뽼뽽뽾뽿뾀뾁뾂뾃뾄뾅뾆뾇뾈뾉뾊뾋뾌뾍뾎뾏뾐b��뾑뾒뾓|�p�h���������J���T���������뾕뾖뾗뾘뾙뾚뾛뾜뾝뾞뾟뾠뾡뾢뾣뾤뾥뾦뾧뾨뾩뾪뾫뾬b�ď뾭뾮뾯|�0�(�@���H�T�J�\�뾱뾲뾳뾴뾵뾶뾷뾸뾹뾺뾻뾼뾽뾾뾿뿀뿁뿂뿃뿄뿅뿆뿇뿈b�l�뿉뿊뿋|�ؐА������J��d�����뿍뿎뿏뿐뿑뿒뿓뿔뿕뿖뿗뿘뿙뿚뿛뿜뿝뿞뿟뿠뿡뿢뿣뿤b�(�뿥뿦뿧|�������������J���뿩뿪뿫뿬뿭뿮뿯뿰뿱뿲뿳뿴뿵뿶뿷뿸뿹뿺뿻뿼뿽뿾뿿쀀b�Б쀁쀂쀃|�<�4�L���T�`�J�h�ȑp���x��.�0D2�357�8�9�;X=�> @0B�C�DGlH�I4KDM�NPR�S�THVXX�Y [0]�^�_\alc�d4fDh�ikpl�n�oHqXs�t v�w�y�z\|l~�4������p����H����� ������쀅쀆쀇쀈쀉쀊쀋쀌쀍쀎쀏쀐쀑쀒쀓쀔쀕쀖쀗쀘쀙쀚쀛쀜b���쀝쀞쀟|��������(�J�0�쀡쀢쀣쀤쀥쀦쀧쀨쀩쀪쀫쀬쀭쀮쀯쀰쀱쀲쀳쀴쀵쀶쀷쀸b�@�쀹쀺쀻|���������ĔДJ�ؔ쀽쀾쀿쁀쁁쁂쁃쁄쁅쁆쁇쁈쁉쁊쁋쁌쁍쁎쁏쁐쁑쁒쁓쁔b��쁕쁖쁗|�T�L�d���l�x�J���8��������쁙쁚쁛쁜쁝쁞쁟쁠쁡쁢쁣쁤쁥쁦쁧쁨쁩쁪쁫쁬쁭쁮쁯쁰b���쁱쁲쁳|���$���,�8�J�@�쁵쁶쁷쁸쁹쁺쁻쁼쁽쁾쁿삀삁삂삃삄삅삆삇삈삉삊삋삌b�P�삍삎삏|�����̖��Ԗ�J��H��5���삑삒삓삔삕삖삗삘삙삚삛삜삝삞삟삠삡삢삣삤삥삦삧삨b��삩삪삫|�x�p���������J���삭삮삯산삱삲삳살삵삶삷삸삹삺삻삼삽삾삿샀상샂샃샄b���샅샆샇|� ��0���8�D�J�L���T�T�\�색샊샋샌샍샎샏샐샑샒샓샔샕샖샗샘샙샚샛샜생샞샟샠b�p�샡샢샣|�ܘԘ�����J��샥샦샧샨샩샪샫샬샭샮샯샰샱샲샳샴샵샶샷샸샹샺샻샼b��샽샾샿|���|���������J������s���섁섂섃섄섅섆섇섈섉섊섋섌섍섎섏섐섑섒섓섔섕섖섗섘b�ԙ섙섚섛|�@�8�P���X�d�J�l�석섞섟선섡섢섣설섥섦섧섨섩섪섫섬섭섮섯섰성섲섳섴b�|�섵섶섷|���������J��섹섺섻센섽섾섿셀셁셂셃셄셅셆셇셈셉셊셋셌셍셎셏셐b�$�셑셒셓|�������������J���t��ě��̛셕셖셗션셙셚셛셜셝셞셟셠셡셢셣셤셥셦셧셨셩셪셫셬b��셭셮셯|�P�H�`���h�t�J�|�셱셲셳셴셵셶셷셸셹셺셻셼셽셾셿솀솁솂솃솄솅솆솇솈b���솉솊솋|���������J�$���,���4�속솎솏손솑솒솓솔솕솖솗솘솙솚솛솜솝솞솟솠송솢솣솤b�H�솥솦솧|�����ĝ��̝؝J��솩솪솫솬솭솮솯솰솱솲솳솴솵솶솷솸솹솺솻솼솽솾솿쇀b��쇁쇂쇃|�\�T�l���t���J����������쇅쇆쇇쇈쇉쇊쇋쇌쇍쇎쇏쇐쇑쇒쇓쇔쇕쇖쇗쇘쇙쇚쇛쇜b���쇝쇞쇟|���(���0�<�J�D�쇡쇢쇣쇤쇥쇦쇧쇨쇩쇪쇫쇬쇭쇮쇯쇰쇱쇲쇳쇴쇵쇶쇷쇸b�T�쇹쇺쇻|�����П��؟�J��쇽쇾쇿숀숁숂숃숄숅숆숇숈숉숊숋숌숍숎숏숐숑숒숓숔b���숕숖숗|�h�`�x�������J���L��������숙숚숛순숝숞숟술숡숢숣숤숥숦숧숨숩숪숫숬숭숮숯숰b���숱숲숳|�(� �8���@�L�J�T�숵숶숷숸숹숺숻숼숽숾숿쉀쉁쉂쉃쉄쉅쉆쉇쉈쉉쉊쉋쉌b�d�쉍쉎쉏|�Сȡ�����J���\��5��쉑쉒쉓쉔쉕쉖쉗쉘쉙쉚쉛쉜쉝쉞쉟쉠쉡쉢쉣쉤쉥쉦쉧쉨b� �쉩쉪쉫|�������������J���쉭쉮쉯쉰쉱쉲쉳쉴쉵쉶쉷쉸쉹쉺쉻쉼쉽쉾쉿슀슁슂슃슄b�Ȣ슅슆슇|�4�,�D���L�X�J�`���h�T�p�슉슊슋슌슍슎슏슐슑슒슓슔슕슖슗슘슙슚슛슜슝슞슟슠b���슡슢슣|��������J��슥슦슧슨슩슪슫슬슭슮슯슰슱슲슳슴습슶슷슸승슺슻슼b�,�슽슾슿|�������������J�Ĥ$�̤s�Ԥ싁싂싃싄싅싆싇싈싉싊싋싌싍싎싏싐싑싒싓싔싕싖싗싘b��싙싚싛|�T�L�d���l�x�J���식싞싟신싡싢싣실싥싦싧싨싩싪싫심십싮싯싰싱싲싳싴b���싵싶싷|�������� �J�(�싹싺싻싼싽싾싿쌀쌁쌂쌃쌄쌅쌆쌇쌈쌉쌊쌋쌌쌍쌎쌏쌐b�8�쌑쌒쌓|�����������ȦJ�Ц��0�ئ���쌕쌖쌗쌘쌙쌚쌛쌜쌝쌞쌟쌠쌡쌢쌣쌤쌥쌦쌧쌨쌩쌪쌫쌬b���쌭쌮쌯|�d�\�t���|���J���쌱쌲쌳쌴쌵쌶쌷쌸쌹쌺쌻쌼쌽쌾쌿썀썁썂썃썄썅썆썇썈b���썉썊썋|������$�0�J�8���@���H�썍썎썏썐썑썒썓썔썕썖썗썘썙썚썛썜썝썞썟썠썡썢썣썤b�\�썥썦썧|�Ȩ��ب����J��썩썪썫썬썭썮썯썰썱썲썳썴썵썶썷썸썹썺썻썼썽썾썿쎀b��쎁쎂쎃|�p�h���������J�����������쎅쎆쎇쎈쎉쎊쎋쎌쎍쎎쎏쎐쎑쎒쎓쎔쎕쎖쎗쎘쎙쎚쎛쎜b���쎝쎞쎟|�,�$�<���D�P�J�X�쎡쎢쎣쎤쎥쎦쎧쎨쎩쎪쎫쎬쎭쎮쎯쎰쎱쎲쎳쎴쎵쎶쎷쎸b�h�쎹쎺쎻|�Ԫ̪������J��쎽쎾쎿쏀쏁쏂쏃쏄쏅쏆쏇쏈쏉쏊쏋쏌쏍쏎쏏쏐쏑쏒쏓쏔b��쏕쏖쏗|�|�t���������J���`��������쏙쏚쏛쏜쏝쏞쏟쏠쏡쏢쏣쏤쏥쏦쏧쏨쏩쏪쏫쏬쏭쏮쏯쏰b�Ы쏱쏲쏳|�<�4�L���T�`�J�h�쏵쏶쏷쏸쏹쏺쏻쏼쏽쏾쏿쐀쐁쐂쐃쐄쐅쐆쐇쐈쐉쐊쐋쐌b�x�쐍쐎쐏|��ܬ������J��p��5� �쐑쐒쐓쐔쐕쐖쐗쐘쐙쐚쐛쐜쐝쐞쐟쐠쐡쐢쐣쐤쐥쐦쐧쐨b�4�쐩쐪쐫|�����������ĭJ�̭쐭쐮쐯쐰쐱쐲쐳쐴쐵쐶쐷쐸쐹쐺쐻쐼쐽쐾쐿쑀쑁쑂쑃쑄b�ܭ쑅쑆쑇|�H�@�X���`�l�J�t�ԭ|�T���쑉쑊쑋쑌쑍쑎쑏쑐쑑쑒쑓쑔쑕쑖쑗쑘쑙쑚쑛쑜쑝쑞쑟쑠b���쑡쑢쑣|��������(�J�0�쑥쑦쑧쑨쑩쑪쑫쑬쑭쑮쑯쑰쑱쑲쑳쑴쑵쑶쑷쑸쑹쑺쑻쑼b�@�쑽쑾쑿|���������įЯJ�د8��s��쒁쒂쒃쒄쒅쒆쒇쒈쒉쒊쒋쒌쒍쒎쒏쒐쒑쒒쒓쒔쒕쒖쒗쒘b���쒙쒚쒛|�h�`�x�������J���쒝쒞쒟쒠쒡쒢쒣쒤쒥쒦쒧쒨쒩쒪쒫쒬쒭쒮쒯쒰쒱쒲쒳쒴b���쒵쒶쒷|��� ���(�4�J�<�쒹쒺쒻쒼쒽쒾쒿쓀쓁쓂쓃쓄쓅쓆쓇쓈쓉쓊쓋쓌쓍쓎쓏쓐b�L�쓑쓒쓓|�����ȱ��бܱJ����D�����쓕쓖쓗쓘쓙쓚쓛쓜쓝쓞쓟쓠쓡쓢쓣쓤쓥쓦쓧쓨쓩쓪쓫쓬b��쓭쓮쓯|�x�p���������J���쓱쓲쓳쓴쓵쓶쓷쓸쓹쓺쓻쓼쓽쓾쓿씀씁씂씃씄씅씆씇씈b���씉씊씋|� ��0���8�D�J�L���T���\�씍씎씏씐씑씒씓씔씕씖씗씘씙씚씛씜씝씞씟씠씡씢씣씤b�p�씥씦씧|�ܳԳ�����J��씩씪씫씬씭씮씯씰씱씲씳씴씵씶씷씸씹씺씻씼씽씾씿앀b��앁앂앃|���|���������J����������악앆앇안앉않앋알앍앎앏앐앑앒앓암압앖앗았앙앚앛앜b�Դ앝앞앟|�@�8�P���X�d�J�l�액앢앣앤앥앦앧앨앩앪앫앬앭앮앯앰앱앲앳앴앵앶앷앸b�|�앹앺앻|���������J��약앾앿얀얁얂얃얄얅얆얇얈얉얊얋얌얍얎얏얐양얒얓얔b�$�얕얖얗|�������������J���t��Ķ��̶얙얚얛얜얝얞얟얠얡얢얣얤얥얦얧얨얩얪얫얬얭얮얯얰b��얱얲얳|�P�H�`���h�t�J�|�억얶얷언얹얺얻얼얽얾얿엀엁엂엃엄업없엇었엉엊엋엌b���엍엎엏|���������J�$���,�5�4�엑엒엓엔엕엖엗엘엙엚엛엜엝엞엟엠엡엢엣엤엥엦엧엨b�H�엩엪엫|�����ĸ��̸ظJ��역엮엯연엱엲엳열엵엶엷엸엹엺엻염엽엾엿였영옂옃옄b��옅옆옇|�\�T�l���t���J������T���옉옊옋옌옍옎옏옐옑옒옓옔옕옖옗옘옙옚옛옜옝옞옟옠b���옡옢옣|���(���0�<�J�D�옥옦옧온옩옪옫올옭옮옯옰옱옲옳옴옵옶옷옸옹옺옻옼b�T�옽옾옿|�����к��غ�J��L��s���왁왂왃완왅왆왇왈왉왊왋왌왍왎왏왐왑왒왓왔왕왖왗왘b��왙왚왛|�|�t���������J���왝왞왟왠왡왢왣왤왥왦왧왨왩왪왫왬왭왮왯왰왱왲왳왴b���왵왶왷|�$��4���<�H�J�P�왹왺왻왼왽왾왿욀욁욂욃욄욅욆욇욈욉욊욋욌욍욎욏욐b�`�욑욒욓|�̼ļܼ����J�����X�����욕욖욗욘욙욚욛욜욝욞욟욠욡욢욣욤욥욦욧욨용욪욫욬b� �욭욮욯|�������������J���욱욲욳운욵욶욷울욹욺욻욼욽욾욿움웁웂웃웄웅웆웇웈b�Ƚ웉웊웋|�4�,�D���L�X�J�`���h���p�웍웎웏원웑웒웓월웕웖웗웘웙웚웛웜웝웞웟웠웡웢웣웤b���웥웦웧|��������J��웩웪웫웬웭웮웯웰웱웲웳웴웵웶웷웸웹웺웻웼웽웾웿윀b�,�윁윂윃|�������������J�Ŀ$�̿��Կ윅윆윇윈윉윊윋윌윍윎윏윐윑윒윓윔윕윖윗윘윙윚윛윜b��윝윞윟|�T�L�d���l�x�J���육윢윣윤윥윦윧율윩윪윫윬윭윮윯윰윱윲윳윴융윶윷윸b���윹윺윻|�������� �J�(�윽윾윿은읁읂읃을읅읆읇읈읉읊읋음읍읎읏읐응읒읓읔b�8�읕읖읗|������������J����0�����읙읚읛읜읝읞읟읠읡읢읣읤읥읦읧읨읩읪읫읬읭읮읯읰b���읱읲읳|�d�\�t���|���J���익읶읷인읹읺읻일읽읾읿잀잁잂잃임입잆잇있잉잊잋잌b���잍잎잏|������$�0�J�8���@�5�H�작잒잓잔잕잖잗잘잙잚잛잜잝잞잟잠잡잢잣잤장잦잧잨b�\�잩잪잫|�������������J���잭잮잯잰잱잲잳잴잵잶잷잸잹잺잻잼잽잾잿쟀쟁쟂쟃쟄b��쟅쟆쟇|�p�h���������J�������T���쟉쟊쟋쟌쟍쟎쟏쟐쟑쟒쟓쟔쟕쟖쟗쟘쟙쟚쟛쟜쟝쟞쟟쟠b���쟡쟢쟣|�,�$�<���D�P�J�X�쟥쟦쟧쟨쟩쟪쟫쟬쟭쟮쟯쟰쟱쟲쟳쟴쟵쟶쟷쟸쟹쟺쟻쟼b�h�쟽쟾쟿|�������������J��`��s��적젂젃전젅젆젇절젉젊젋젌젍젎젏점접젒젓젔정젖젗젘b�$�젙젚젛|�������������J���젝젞젟젠젡젢젣젤젥젦젧젨젩젪젫젬젭젮젯젰젱젲젳젴b���젵젶젷|�8�0�H���P�\�J�d�젹젺젻젼젽젾젿졀졁졂졃졄졅졆졇졈졉졊졋졌졍졎졏졐b�t�졑졒졓|������������J����l�����졕졖졗졘졙졚졛졜졝졞졟졠졡졢졣졤졥졦졧졨졩졪졫졬b�4�졭졮졯|�������������J���족졲졳존졵졶졷졸졹졺졻졼졽졾졿좀좁좂좃좄종좆좇좈b���좉좊좋|�H�@�X���`�l�J�t���|�����좍좎좏좐좑좒좓좔좕좖좗좘좙좚좛좜좝좞좟좠좡좢좣좤b���좥좦좧|��������(�J�0�좩좪좫좬좭좮좯좰좱좲좳좴좵좶좷좸좹좺좻좼좽좾좿죀b�@�죁죂죃|�������������J���8�������죅죆죇죈죉죊죋죌죍죎죏죐죑죒죓죔죕죖죗죘죙죚죛죜b���죝죞죟|�h�`�x�������J���죡죢죣죤죥죦죧죨죩죪죫죬죭죮죯죰죱죲죳죴죵죶죷죸b���죹죺죻|��� ���(�4�J�<�죽죾죿준줁줂줃줄줅줆줇줈줉줊줋줌줍줎줏줐중줒줓줔b�L�줕줖줗|�������������J�����D�������줙줚줛줜줝줞줟줠줡줢줣줤줥줦줧줨줩줪줫줬줭줮줯줰b��줱줲줳|�x�p���������J���줵줶줷줸줹줺줻줼줽줾줿쥀쥁쥂쥃쥄쥅쥆쥇쥈쥉쥊쥋쥌b���쥍쥎쥏|� ��0���8�D�J�L���T�5�\�쥑쥒쥓쥔쥕쥖쥗쥘쥙쥚쥛쥜쥝쥞쥟쥠쥡쥢쥣쥤쥥쥦쥧쥨b�p�쥩쥪쥫|������������J��쥭쥮쥯쥰쥱쥲쥳쥴쥵쥶쥷쥸쥹쥺쥻쥼쥽쥾쥿즀즁즂즃즄b��즅즆즇|���|���������J������T���즉즊즋즌즍즎즏즐즑즒즓즔즕즖즗즘즙즚즛즜증즞즟즠b���즡즢즣|�@�8�P���X�d�J�l�즥즦즧즨즩즪즫즬즭즮즯즰즱즲즳즴즵즶즷즸즹즺즻즼b�|�즽즾즿|�����������J��t��s�$�직짂짃진짅짆짇질짉짊짋짌짍짎짏짐집짒짓짔징짖짗짘b�8�짙짚짛|�������������J���짝짞짟짠짡짢짣짤짥짦짧짨짩짪짫짬짭짮짯짰짱짲짳짴b���짵짶짷|�L�D�\���d�p�J�x�짹짺짻짼짽짾짿쨀쨁쨂쨃쨄쨅쨆쨇쨈쨉쨊쨋쨌쨍쨎쨏쨐b���쨑쨒쨓|����������J� �����(���0�쨕쨖쨗쨘쨙쨚쨛쨜쨝쨞쨟쨠쨡쨢쨣쨤쨥쨦쨧쨨쨩쨪쨫쨬b�H�쨭쨮쨯|�������������J���쨱쨲쨳쨴쨵쨶쨷쨸쨹쨺쨻쨼쨽쨾쨿쩀쩁쩂쩃쩄쩅쩆쩇쩈b���쩉쩊쩋|�\�T�l���t���J�����������쩍쩎쩏쩐쩑쩒쩓쩔쩕쩖쩗쩘쩙쩚쩛쩜쩝쩞쩟쩠쩡쩢쩣쩤b���쩥쩦쩧|���(���0�<�J�D�쩩쩪쩫쩬쩭쩮쩯쩰쩱쩲쩳쩴쩵쩶쩷쩸쩹쩺쩻쩼쩽쩾쩿쪀b�T�쪁쪂쪃|�������������J���L�������쪅쪆쪇쪈쪉쪊쪋쪌쪍쪎쪏쪐쪑쪒쪓쪔쪕쪖쪗쪘쪙쪚쪛쪜b��쪝쪞쪟|�|�t���������J���쪡쪢쪣쪤쪥쪦쪧쪨쪩쪪쪫쪬쪭쪮쪯쪰쪱쪲쪳쪴쪵쪶쪷쪸b���쪹쪺쪻|�$��4���<�H�J�P�쪽쪾쪿쫀쫁쫂쫃쫄쫅쫆쫇쫈쫉쫊쫋쫌쫍쫎쫏쫐쫑쫒쫓쫔b�`�쫕쫖쫗|�������������J�����X�����쫙쫚쫛쫜쫝쫞쫟쫠쫡쫢쫣쫤쫥쫦쫧쫨쫩쫪쫫쫬쫭쫮쫯쫰b� �쫱쫲쫳|�������������J���쫵쫶쫷쫸쫹쫺쫻쫼쫽쫾쫿쬀쬁쬂쬃쬄쬅쬆쬇쬈쬉쬊쬋쬌b���쬍쬎쬏|�4�,�D���L�X�J�`���h�5�p�쬑쬒쬓쬔쬕쬖쬗쬘쬙쬚쬛쬜쬝쬞쬟쬠쬡쬢쬣쬤쬥쬦쬧쬨b���쬩쬪쬫|����������J��쬭쬮쬯쬰쬱쬲쬳쬴쬵쬶쬷쬸쬹쬺쬻쬼쬽쬾쬿쭀쭁쭂쭃쭄b�,�쭅쭆쭇|�������������J���$���T���쭉쭊쭋쭌쭍쭎쭏쭐쭑쭒쭓쭔쭕쭖쭗쭘쭙쭚쭛쭜쭝쭞쭟쭠b���쭡쭢쭣|�T�L�d���l�x�J���쭥쭦쭧쭨쭩쭪쭫쭬쭭쭮쭯쭰쭱쭲쭳쭴쭵쭶쭷쭸쭹쭺쭻쭼b���쭽쭾쭿|��������� �J�(���0�s�8�쮁쮂쮃쮄쮅쮆쮇쮈쮉쮊쮋쮌쮍쮎쮏쮐쮑쮒쮓쮔쮕쮖쮗쮘b�L�쮙쮚쮛|�������������J���쮝쮞쮟쮠쮡쮢쮣쮤쮥쮦쮧쮨쮩쮪쮫쮬쮭쮮쮯쮰쮱쮲쮳쮴b���쮵쮶쮷|�`�X�p���x���J���쮹쮺쮻쮼쮽쮾쮿쯀쯁쯂쯃쯄쯅쯆쯇쯈쯉쯊쯋쯌쯍쯎쯏쯐b���쯑쯒쯓|������ �,�J�4�����<���D�쯕쯖쯗쯘쯙쯚쯛쯜쯝쯞쯟쯠쯡쯢쯣쯤쯥쯦쯧쯨쯩쯪쯫쯬b�\�쯭쯮쯯|�������������J���쯱쯲쯳쯴쯵쯶쯷쯸쯹쯺쯻쯼쯽쯾쯿찀찁찂찃찄찅찆찇찈b��찉찊찋|�p�h���������J�����������찍찎찏찐찑찒찓찔찕찖찗찘찙찚찛찜찝찞찟찠찡찢찣찤b���찥찦찧|�,�$�<���D�P�J�X�착찪찫찬찭찮찯찰찱찲찳찴찵찶찷참찹찺찻찼창찾찿챀b�h�챁챂챃|�������������J��`�����책챆챇챈챉챊챋챌챍챎챏챐챑챒챓챔챕챖챗챘챙챚챛챜b�$�챝챞챟|�������������J���챡챢챣챤챥챦챧챨챩챪챫챬챭챮챯챰챱챲챳챴챵챶챷챸b���챹챺챻|�8�0�H���P�\�J�d�챽챾챿첀첁첂첃첄첅첆첇첈첉첊첋첌첍첎첏첐첑첒첓첔b�t�첕첖첗|������������J����l�����척첚첛천첝첞첟철첡첢첣첤첥첦첧첨첩첪첫첬청첮첯첰b�4�첱첲첳|�������������J���첵첶첷첸첹첺첻첼첽첾첿쳀쳁쳂쳃쳄쳅쳆쳇쳈쳉쳊쳋쳌b���쳍쳎쳏|�H�@�X���`�l�J�t���|�5���쳑쳒쳓쳔쳕쳖쳗쳘쳙쳚쳛쳜쳝쳞쳟쳠쳡쳢쳣쳤쳥쳦쳧쳨b���쳩쳪쳫|��������(�J�0�쳭쳮쳯쳰쳱쳲쳳쳴쳵쳶쳷쳸쳹쳺쳻쳼쳽쳾쳿촀촁촂촃촄b�@�촅촆촇|�������������J���8���T���촉촊촋촌촍촎촏촐촑촒촓촔촕촖촗촘촙촚촛촜총촞촟촠b���촡촢촣|�h�`�x�������J���촥촦촧촨촩촪촫촬촭촮촯촰촱촲촳촴촵촶촷촸촹촺촻촼b���촽촾촿|��� ���(�4�J�<���D�s�L�쵁쵂쵃쵄쵅쵆쵇쵈쵉쵊쵋쵌쵍쵎쵏쵐쵑쵒쵓쵔쵕쵖쵗쵘b�`�쵙쵚쵛|�������������J���쵝쵞쵟쵠쵡쵢쵣쵤쵥쵦쵧쵨쵩쵪쵫쵬쵭쵮쵯쵰쵱쵲쵳쵴b��쵵쵶쵷|�t�l���������J���쵹쵺쵻쵼쵽쵾쵿춀춁춂춃춄춅춆춇춈춉춊춋춌춍춎춏춐b���춑춒춓|���,���4�@�J�H����P���X�축춖춗춘춙춚춛출춝춞춟춠춡춢춣춤춥춦춧춨충춪춫춬b�p�춭춮춯|������������J��춱춲춳춴춵춶춷춸춹춺춻춼춽춾춿췀췁췂췃췄췅췆췇췈b��췉췊췋|���|���������J����������췍췎췏췐췑췒췓췔췕췖췗췘췙췚췛췜췝췞췟췠췡췢췣췤b���췥췦췧|�@�8�P���X�d�J�l�췩췪췫췬췭췮췯췰췱췲췳췴췵췶췷췸췹췺췻췼췽췾췿츀b�|�츁츂츃|�����������J��t����$�츅츆츇츈츉츊츋츌츍츎츏츐츑츒츓츔츕츖츗츘츙츚츛츜b�8�츝츞츟|�������������J���측츢츣츤츥츦츧츨츩츪츫츬츭츮츯츰츱츲츳츴층츶츷츸b���츹츺츻|�L�D�\���d�p�J�x�츽츾츿칀칁칂칃칄칅칆칇칈칉칊칋칌칍칎칏칐칑칒칓칔b���칕칖칗|����������J� �����(���0�칙칚칛친칝칞칟칠칡칢칣칤칥칦칧침칩칪칫칬칭칮칯칰b�H�칱칲칳|�������������J���칵칶칷칸칹칺칻칼칽칾칿캀캁캂캃캄캅캆캇캈캉캊캋캌b���캍캎캏|�\�T�l���t���J�������5���캑캒캓캔캕캖캗캘캙캚캛캜캝캞캟캠캡캢캣캤캥캦캧캨b���캩캪캫|���(���0�<�J�D�캭캮캯캰캱캲캳캴캵캶캷캸캹캺캻캼캽캾캿컀컁컂컃컄b�T�컅컆컇|�������������J���L���T���컉컊컋컌컍컎컏컐컑컒컓컔컕컖컗컘컙컚컛컜컝컞컟컠b��컡컢컣|�|�t���������J���컥컦컧컨컩컪컫컬컭컮컯컰컱컲컳컴컵컶컷컸컹컺컻컼b���컽컾컿|�$��4���<�H�J�P���X�s�`�켁켂켃켄켅켆켇켈켉켊켋켌켍켎켏켐켑켒켓켔켕켖켗켘b�t�켙켚켛|������������J��켝켞켟켠켡켢켣켤켥켦켧켨켩켪켫켬켭켮켯켰켱켲켳켴b��켵켶켷|�������������J���켹켺켻켼켽켾켿콀콁콂콃콄콅콆콇콈콉콊콋콌콍콎콏콐b���콑콒콓|�0�(�@���H�T�J�\����d���l�콕콖콗콘콙콚콛콜콝콞콟콠콡콢콣콤콥콦콧콨콩콪콫콬b���콭콮콯|����������J��콱콲콳콴콵콶콷콸콹콺콻콼콽콾콿쾀쾁쾂쾃쾄쾅쾆쾇쾈b�,�쾉쾊쾋|�������������J��$�����쾍쾎쾏쾐쾑쾒쾓쾔쾕쾖쾗쾘쾙쾚쾛쾜쾝쾞쾟쾠쾡쾢쾣쾤b��쾥쾦쾧|�T�L�d���l�x�J���쾩쾪쾫쾬쾭쾮쾯쾰쾱쾲쾳쾴쾵쾶쾷쾸쾹쾺쾻쾼쾽쾾쾿쿀b���쿁쿂쿃|�������� �J�(���0���8�쿅쿆쿇쿈쿉쿊쿋쿌쿍쿎쿏쿐쿑쿒쿓쿔쿕쿖쿗쿘쿙쿚쿛쿜b�L�쿝쿞쿟|����������J��쿡쿢쿣쿤쿥쿦쿧쿨쿩쿪쿫쿬쿭쿮쿯쿰쿱쿲쿳쿴쿵쿶쿷쿸b��쿹쿺쿻|�`�X�p���x���J���쿽쿾쿿퀀퀁퀂퀃퀄퀅퀆퀇퀈퀉퀊퀋퀌퀍퀎퀏퀐퀑퀒퀓퀔b���퀕퀖퀗|������ �,�J�4����<���D����h�̙ܛ@������|���T���ȫ,�����h�̴ܶ@�����|���T����,������h���0�@�����|���D�T����,�����X�h���0�@����l�|��D�T��\�퀙퀚퀛퀜퀝퀞퀟퀠퀡퀢퀣퀤퀥퀦퀧퀨퀩퀪퀫퀬퀭퀮퀯퀰b�h�퀱퀲퀳|���������J��퀵퀶퀷퀸퀹퀺퀻퀼퀽퀾퀿큀큁큂큃큄큅큆큇큈큉큊큋큌b��큍큎큏|�|�t���������J������5���큑큒큓큔큕큖큗큘큙큚큛큜큝큞큟큠큡큢큣큤큥큦큧큨b��큩큪큫|�8�0�H���P�\�J�d�큭큮큯큰큱큲큳클큵큶큷큸큹큺큻큼큽큾큿킀킁킂킃킄b�t�킅킆킇|���������J��l��T��킉킊킋킌킍킎킏킐킑킒킓킔킕킖킗킘킙킚킛킜킝킞킟킠b�0�킡킢킣|�������������J��킥킦킧킨킩킪킫킬킭킮킯킰킱킲킳킴킵킶킷킸킹킺킻킼b��킽킾킿|�D�<�T���\�h�J�p��x�s���탁탂탃탄탅탆탇탈탉탊탋탌탍탎탏탐탑탒탓탔탕탖탗탘b���탙탚탛|��������$�J�,�택탞탟탠탡탢탣탤탥탦탧탨탩탪탫탬탭탮탯탰탱탲탳탴b�<�탵탶탷|������������J��탹탺탻탼탽탾탿턀턁턂턃턄턅턆턇턈턉턊턋턌턍턎턏턐b��턑턒턓|�PH`��htJ�|4������턕턖턗턘턙턚턛턜턝턞턟턠턡턢턣턤턥턦턧턨턩턪턫턬b��턭턮턯|� ��(4J�<턱턲턳턴턵턶턷털턹턺턻턼턽턾턿텀텁텂텃텄텅텆텇텈b�L텉텊텋|��������J��D����텍텎텏텐텑텒텓텔텕텖텗텘텙텚텛템텝텞텟텠텡텢텣텤b�텥텦텧|�tl�����J��텩텪텫텬텭텮텯텰텱텲텳텴텵텶텷텸텹텺텻텼텽텾텿톀b��톁톂톃|�,��4@J�H�P��X톅톆톇톈톉톊톋톌톍톎톏톐톑톒톓톔톕톖톗톘톙톚톛톜b�l톝톞톟|��������J�톡톢톣톤톥톦톧톨톩톪톫톬톭톮톯톰톱톲톳톴통톶톷톸b�톹톺톻|��x�����J��톽톾톿퇀퇁퇂퇃퇄퇅퇆퇇퇈퇉퇊퇋퇌퇍퇎퇏퇐퇑퇒퇓퇔b��퇕퇖퇗|�( 8��@LJ�T�\��d퇙퇚퇛퇜퇝퇞퇟퇠퇡퇢퇣퇤퇥퇦퇧퇨퇩퇪퇫퇬퇭퇮퇯퇰b�|퇱퇲퇳|������J�퇵퇶퇷퇸퇹퇺퇻퇼퇽퇾퇿툀툁툂툃툄툅툆툇툈툉툊툋툌b�$툍툎툏|��������J���5��툑툒툓툔툕툖툗툘툙툚툛툜툝툞툟툠툡툢툣툤툥툦툧툨b��툩툪툫|�LD\��dpJ�x툭툮툯툰툱툲툳툴툵툶툷툸툹툺툻툼툽툾툿퉀퉁퉂퉃퉄b��퉅퉆퉇|�����J� �(T�0퉉퉊퉋퉌퉍퉎퉏퉐퉑퉒퉓퉔퉕퉖퉗퉘퉙퉚퉛퉜퉝퉞퉟퉠b�D퉡퉢퉣|��������J��퉥퉦퉧퉨퉩퉪퉫퉬퉭퉮퉯퉰퉱퉲퉳퉴퉵퉶퉷퉸퉹퉺퉻퉼b��퉽퉾퉿|�X	P	h	��p	|	J��	��	s��	튁튂튃튄튅튆튇튈튉튊튋튌튍튎튏튐튑튒튓튔튕튖튗튘b��	튙튚튛|�

$
��,
8
J�@
튝튞튟튠튡튢튣튤튥튦튧튨튩튪튫튬튭튮튯튰튱튲튳튴b�P
튵튶튷|��
�
�
���
�
J��
특튺튻튼튽튾튿틀틁틂틃틄틅틆틇틈틉틊틋틌틍틎틏틐b��
틑틒틓|�d\t��|�J��H
�
����틕틖틗틘틙틚틛틜틝틞틟틠틡틢틣틤틥틦틧틨틩틪틫틬b��틭틮틯|�$4��<HJ�P틱틲틳틴틵틶틷틸틹틺틻틼틽틾틿팀팁팂팃팄팅팆팇팈b�`팉팊팋|��������J��X
��
팍팎팏판팑팒팓팔팕팖팗팘팙팚팛팜팝팞팟팠팡팢팣팤b�
팥팦팧|��
�
�
���
�
J��
팩팪팫팬팭팮팯팰팱팲팳팴팵팶팷팸팹팺팻팼팽팾팿퍀b��
퍁퍂퍃|�0(@��HTJ�\�
d��l퍅퍆퍇퍈퍉퍊퍋퍌퍍퍎퍏퍐퍑퍒퍓퍔퍕퍖퍗퍘퍙퍚퍛퍜b��퍝퍞퍟|������J�퍡퍢퍣퍤퍥퍦퍧퍨퍩퍪퍫퍬퍭퍮퍯퍰퍱퍲퍳퍴퍵퍶퍷퍸b�(퍹퍺퍻|��������J��퍽퍾퍿펀펁펂펃펄펅펆펇펈펉펊펋펌펍펎펏펐펑펒펓펔b��펕펖펗|�<4L��T`J�h �p��x펙펚펛펜펝펞펟펠펡펢펣펤펥펦펧펨펩펪펫펬펭펮펯펰b��펱펲펳|����� J�(펵펶펷편펹펺펻펼펽펾펿폀폁폂폃폄폅폆폇폈평폊폋폌b�8폍폎폏|��������J��0�5��폑폒폓폔폕폖폗폘폙폚폛폜폝폞폟폠폡폢폣폤폥폦폧폨b��폩폪폫|�`Xp��x�J��폭폮폯폰폱폲폳폴폵폶폷폸폹폺폻폼폽폾폿퐀퐁퐂퐃퐄b��퐅퐆퐇|��� ,J�4�<T�D퐉퐊퐋퐌퐍퐎퐏퐐퐑퐒퐓퐔퐕퐖퐗퐘퐙퐚퐛퐜퐝퐞퐟퐠b�X퐡퐢퐣|��������J��퐥퐦퐧퐨퐩퐪퐫퐬퐭퐮퐯퐰퐱퐲퐳퐴퐵퐶퐷퐸퐹퐺퐻퐼b�퐽퐾퐿|�ld|����J����s��푁푂푃푄푅푆푇푈푉푊푋푌푍푎푏푐푑푒푓푔푕푖푗푘b��푙푚푛|�( 8��@LJ�T푝푞푟푠푡푢푣푤푥푦푧푨푩푪푫푬푭푮푯푰푱푲푳푴b�d푵푶푷|��������J��푹푺푻푼푽푾푿풀풁풂풃풄풅풆풇품풉풊풋풌풍풎풏풐b�풑풒풓|�xp�����J��\����풕풖풗풘풙풚풛풜풝풞풟풠풡풢풣풤풥풦풧풨풩풪풫풬b��풭풮풯|�80H��P\J�d풱풲풳풴풵풶풷풸풹풺풻풼풽풾풿퓀퓁퓂퓃퓄퓅퓆퓇퓈b�t퓉퓊퓋|�������J�l��퓍퓎퓏퓐퓑퓒퓓퓔퓕퓖퓗퓘퓙퓚퓛퓜퓝퓞퓟퓠퓡퓢퓣퓤b�0퓥퓦퓧|��������J��퓩퓪퓫퓬퓭퓮퓯퓰퓱퓲퓳퓴퓵퓶퓷퓸퓹퓺퓻퓼퓽퓾퓿픀b��픁픂픃|�D<T��\hJ�p�x���픅픆픇픈픉픊픋플픍픎픏픐픑픒픓픔픕픖픗픘픙픚픛픜b��픝픞픟|����$J�,픡픢픣픤픥픦픧픨픩픪픫픬픭픮픯픰픱픲픳픴픵픶픷픸b�<픹픺픻|��������J��픽픾픿핀핁핂핃필핅핆핇핈핉핊핋핌핍핎핏핐핑핒핓핔b��핕핖핗|�PH`��htJ�|4�����학핚핛한핝핞핟할핡핢핣핤핥핦핧함합핪핫핬항핮핯핰b��핱핲핳|� ��(4J�<핵핶핷핸핹핺핻핼핽핾핿햀햁햂햃햄햅햆햇했행햊햋햌b�L햍햎햏|��������J��D�5��햑햒햓햔햕햖햗햘햙햚햛햜햝햞햟햠햡햢햣햤향햦햧햨b�햩햪햫|�tl�����J��햭햮햯햰햱햲햳햴햵햶햷햸햹햺햻햼햽햾햿헀헁헂헃헄b��헅헆헇|�,��4@J�H�PT�X헉헊헋헌헍헎헏헐헑헒헓헔헕헖헗험헙헚헛헜헝헞헟헠b�l헡헢헣|��������J�헥헦헧헨헩헪헫헬헭헮헯헰헱헲헳헴헵헶헷헸헹헺헻헼b�헽헾헿|��x�����J���s��혁혂혃현혅혆혇혈혉혊혋혌혍혎혏혐협혒혓혔형혖혗혘b��혙혚혛|�< 4 L ��T ` J�h 혝혞혟혠혡혢혣혤혥혦혧혨혩혪혫혬혭혮혯혰혱혲혳혴b�x 혵혶혷|�� � � ��� !J�!혹혺혻혼혽혾혿홀홁홂홃홄홅홆홇홈홉홊홋홌홍홎홏홐b� !홑홒홓|��!�!�!���!�!J��!p !�!���!확홖홗환홙홚홛활홝홞홟홠홡홢홣홤홥홦홧홨황홪홫홬b��!홭홮홯|�L"D"\"��d"p"J�x"홱홲홳홴홵홶홷홸홹홺홻홼홽홾홿횀횁횂횃횄횅횆횇횈b��"횉횊횋|��"�"#��##J� #�"(#��0#획횎횏횐횑횒횓횔횕횖횗횘횙횚횛횜횝횞횟횠횡횢횣횤b�D#횥횦횧|��#�#�#���#�#J��#횩횪횫횬횭횮횯횰횱횲횳횴횵횶횷횸횹횺횻횼횽횾횿훀b��#훁훂훃|�X$P$h$��p$|$J��$�#�$���$훅훆훇훈훉훊훋훌훍훎훏훐훑훒훓훔훕훖훗훘훙훚훛훜b��$훝훞훟|�%%$%��,%8%J�@%훡훢훣훤훥훦훧훨훩훪훫훬훭훮훯훰훱훲훳훴훵훶훷훸b�P%훹훺훻|��%�%�%���%�%J��%훽훾훿휀휁휂휃휄휅휆휇휈휉휊휋휌휍휎휏휐휑휒휓휔b��%휕휖휗|�d&\&t&��|&�&J��&H%�%�&���&휙휚휛휜휝휞휟휠휡휢휣휤휥휦휧휨휩휪휫휬휭휮휯휰b��&휱휲휳|�$''4'��<'H'J�P'휵휶휷휸휹휺휻휼휽휾휿흀흁흂흃흄흅흆흇흈흉흊흋흌b�`'흍흎흏|��'�'�'���'�'J��'X'(5�(흑흒흓흔흕흖흗흘흙흚흛흜흝흞흟흠흡흢흣흤흥흦흧흨b�(흩흪흫|��(�(�(���(�(J��(흭흮흯흰흱흲흳흴흵흶흷흸흹흺흻흼흽흾흿힀힁힂힃힄b��(힅힆힇|�0)()@)��H)T)J�\)�(d)T�l)힉힊힋힌힍힎힏힐힑힒힓힔힕힖힗힘힙힚힛힜힝힞힟힠b��)힡힢힣|��)�)�)��**J�* *�(*�(����dt�<�	�
x��P��(��d��!<#�$�&(x)0*��8*������(��������p��������\������P������H�l�����<�d�����(�H������4�d������\�������0��������\�������x���l�P�����p�����d�����h���`	�l-��`��*���*����	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456����	

 !"#$%&'()*+,ǕǖǗǘǙǚǛǜǞǟǠǡǢǣǬǭǮǯǺǻǼǽǾǿ��	

 !"#$%&'()*+,-ȪȫȬȭȰȱ��̈́��	

΅ΆΈΉΊΌΎΏΪΫάέήί��ϊϋόύώϓϔ��	
ЀЁЃЇЌЍЎЙй��	
ѐёѓїќѝўѶѷ��	

 !"#ӁӂӐӑӒӓӖӗӚӛӜӝӞӟӢӣӤӥӦӧӪӫӬӭӮӯӰӱӲӳӴӵӸӹ��آأؤإئ��ۀۂۓ��ऩऱऴ��	क़ख़ग़ज़ड़ढ़फ़य़��োৌড়ঢ়য়��ਲ਼ਸ਼��ਖ਼ਗ਼ਜ਼ਫ਼��ୈୋୌଡ଼ଢ଼��ஔ��ொோௌ��ై��ೀೇೈೊೋൊോൌ��ේොෝෞ��	
གྷཌྷདྷབྷཛྷཀྵཱཱིུྲྀླྀ��ཱྀྒྷྜྷྡྷྦྷྫྷྐྵ��	

��ဦ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ḈḉḔḕḖḗḜḝḮḯḸḹṌṍṎṏṐṑṒṓṜṝṤṥṦṧṨṩṸṹṺṻ��	

 !"#$%&'()*+,-./0123456789:;<ẛẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặẾế��	

 !"#$%&'()*+,-./0123456789:;;;;;;ỀềỂểỄễỆệỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợỨứỪừỬửỮữỰự��	

 !"#$%&'()*+,-./0123456789:;<=ἀἁἂἃἄἅἆἇἈἉἊἋἌἍἎἏἐἑἒἓἔἕἘἙἚἛἜἝἠἡἢἣἤἥἦἧἨἩἪἫἬἭἮἯἰἱἲἳἴἵἶἷἸἹἺἻἼἽἾἿ��	

 !"#$%&'()*+,-./0ὀὁὂὃὄὅὈὉὊὋὌὍὐὑὒὓὔὕὖὗὙὛὝὟὠὡὢὣὤὥὦὧὨὩὪὫὬὭὮὯὰὲὴὶὸὺὼ��	

 !"#$%&'()*+,-./0123456789:;6<6=6ᾀᾁᾂᾃᾄᾅᾆᾇᾈᾉᾊᾋᾌᾍᾎᾏᾐᾑᾒᾓᾔᾕᾖᾗᾘᾙᾚᾛᾜᾝᾞᾟᾠᾡᾢᾣᾤᾥᾦᾧᾨᾩᾪᾫᾬᾭᾮᾯᾰᾱᾲᾳᾴᾶᾷᾸᾹᾺᾼ��	

 !"#$%&'()*+,-./0῁ῂῃῄῆῇῈῊῌ῍῎῏ῐῑῒΐῖῗῘῙῚ῝῞῟ῠῡῢΰῤῥῦῧῨῩῪῬ῭ῲῳῴῶῷῸῺῼ��	
��	

がぎぐげござじずぜぞだぢづでどばぱびぴぶぷべぺぼぽ��	

ゔゞガギグゲゴザジズゼゾ��	

ダヂヅデドバパビピブプベペボポヴヷヸヹヺヾ��가각갂갃간갅갆갇갈갉갊갋갌갍갎갏감갑값갓갔강갖갗갘같갚갛개객갞갟갠갡갢갣갤갥갦갧갨갩갪갫갬갭갮갯갰갱갲갳갴갵갶갷갸갹갺갻갼갽갾갿걀걁걂걃걄걅걆걇걈걉걊걋걌걍걎걏걐걑걒걓걔걕걖걗걘걙걚걛걜걝걞걟걠걡걢걣걤걥걦걧걨걩걪걫걬걭걮걯거걱걲걳건걵걶걷걸걹걺걻걼걽걾걿검겁겂것겄겅겆겇겈겉겊겋게겍겎겏겐겑겒겓겔겕겖겗겘겙겚겛겜겝겞겟겠겡겢겣겤겥겦겧겨격겪겫견겭겮겯결겱겲겳겴겵겶겷겸겹겺겻겼경겾겿곀곁곂곃계곅곆곇곈곉곊곋곌곍곎곏곐곑곒곓곔곕곖곗곘곙곚곛곜곝곞곟고곡곢곣곤곥곦곧골곩곪곫곬곭곮곯곰곱곲곳곴공곶곷곸곹곺곻과곽곾곿관괁괂괃괄괅괆괇괈괉괊괋괌괍괎괏괐광괒괓괔괕괖괗괘괙괚괛괜괝괞괟괠괡괢괣괤괥괦괧괨괩괪괫괬괭괮괯괰괱괲괳괴괵괶괷괸괹괺괻괼괽괾괿굀굁굂굃굄굅굆굇굈굉굊굋굌굍굎굏교굑굒굓굔굕굖굗굘굙굚굛굜굝굞굟굠굡굢굣굤굥굦굧굨굩굪굫구국굮굯군굱굲굳굴굵굶굷굸굹굺굻굼굽굾굿궀궁궂궃궄궅궆궇궈궉궊궋권궍궎궏궐궑궒궓궔궕궖궗궘궙궚궛궜궝궞궟궠궡궢궣궤궥궦궧궨궩궪궫궬궭궮궯궰궱궲궳궴궵궶궷궸궹궺궻궼궽궾궿귀귁귂귃귄귅귆귇귈귉귊귋귌귍귎귏귐귑귒귓귔귕귖귗귘귙귚귛규귝귞귟균귡귢귣귤귥귦귧귨귩귪귫귬귭귮귯귰귱귲귳귴귵귶귷그극귺귻근귽귾귿글긁긂긃긄긅긆긇금급긊긋긌긍긎긏긐긑긒긓긔긕긖긗긘긙긚긛긜긝긞긟긠긡긢긣긤긥긦긧긨긩긪긫긬긭긮긯기긱긲긳긴긵긶긷길긹긺긻긼긽긾긿김깁깂깃깄깅깆깇깈깉깊깋까깍깎깏깐깑깒깓깔깕깖깗깘깙깚깛깜깝깞깟깠깡깢깣깤깥깦깧깨깩깪깫깬깭깮깯깰깱깲깳깴깵깶깷깸깹깺깻깼깽깾깿꺀꺁꺂꺃꺄꺅꺆꺇꺈꺉꺊꺋꺌꺍꺎꺏꺐꺑꺒꺓꺔꺕꺖꺗꺘꺙꺚꺛꺜꺝꺞꺟꺠꺡꺢꺣꺤꺥꺦꺧꺨꺩꺪꺫꺬꺭꺮꺯꺰꺱꺲꺳꺴꺵꺶꺷꺸꺹꺺꺻꺼꺽꺾꺿껀껁껂껃껄껅껆껇껈껉껊껋껌껍껎껏껐껑껒껓껔껕껖껗께껙껚껛껜껝껞껟껠껡껢껣껤껥껦껧껨껩껪껫껬껭껮껯껰껱껲껳껴껵껶껷껸껹껺껻껼껽껾껿꼀꼁꼂꼃꼄꼅꼆꼇꼈꼉꼊꼋꼌꼍꼎꼏꼐꼑꼒꼓꼔꼕꼖꼗꼘꼙꼚꼛꼜꼝꼞꼟꼠꼡꼢꼣꼤꼥꼦꼧꼨꼩꼪꼫꼬꼭꼮꼯꼰꼱꼲꼳꼴꼵꼶꼷꼸꼹꼺꼻꼼꼽꼾꼿꽀꽁꽂꽃꽄꽅꽆꽇꽈꽉꽊꽋꽌꽍꽎꽏꽐꽑꽒꽓꽔꽕꽖꽗꽘꽙꽚꽛꽜꽝꽞꽟꽠꽡꽢꽣꽤꽥꽦꽧꽨꽩꽪꽫꽬꽭꽮꽯꽰꽱꽲꽳꽴꽵꽶꽷꽸꽹꽺꽻꽼꽽꽾꽿꾀꾁꾂꾃꾄꾅꾆꾇꾈꾉꾊꾋꾌꾍꾎꾏꾐꾑꾒꾓꾔꾕꾖꾗꾘꾙꾚꾛꾜꾝꾞꾟꾠꾡꾢꾣꾤꾥꾦꾧꾨꾩꾪꾫꾬꾭꾮꾯꾰꾱꾲꾳꾴꾵꾶꾷꾸꾹꾺꾻꾼꾽꾾꾿꿀꿁꿂꿃꿄꿅꿆꿇꿈꿉꿊꿋꿌꿍꿎꿏꿐꿑꿒꿓꿔꿕꿖꿗꿘꿙꿚꿛꿜꿝꿞꿟꿠꿡꿢꿣꿤꿥꿦꿧꿨꿩꿪꿫꿬꿭꿮꿯꿰꿱꿲꿳꿴꿵꿶꿷꿸꿹꿺꿻꿼꿽꿾꿿��	

뀀뀁뀂뀃뀄뀅뀆뀇뀈뀉뀊뀋뀌뀍뀎뀏뀐뀑뀒뀓뀔뀕뀖뀗뀘뀙뀚뀛뀜뀝뀞뀟뀠뀡뀢뀣뀤뀥뀦뀧뀨뀩뀪뀫뀬뀭뀮뀯뀰뀱뀲뀳뀴뀵뀶뀷뀸뀹뀺뀻뀼뀽뀾뀿끀끁끂끃끄끅끆끇끈끉끊끋끌끍끎끏끐끑끒끓끔끕끖끗끘끙끚끛끜끝끞끟끠끡끢끣끤끥끦끧끨끩끪끫끬끭끮끯끰끱끲끳끴끵끶끷끸끹끺끻끼끽끾끿낀낁낂낃낄낅낆낇낈낉낊낋낌낍낎낏낐낑낒낓낔낕낖낗나낙낚낛난낝낞낟날낡낢낣낤낥낦낧남납낪낫났낭낮낯낰낱낲낳내낵낶낷낸낹낺낻낼낽낾낿냀냁냂냃냄냅냆냇냈냉냊냋냌냍냎냏냐냑냒냓냔냕냖냗냘냙냚냛냜냝냞냟냠냡냢냣냤냥냦냧냨냩냪냫냬냭냮냯냰냱냲냳냴냵냶냷냸냹냺냻냼냽냾냿넀넁넂넃넄넅넆넇너넉넊넋넌넍넎넏널넑넒넓넔넕넖넗넘넙넚넛넜넝넞넟넠넡넢넣네넥넦넧넨넩넪넫넬넭넮넯넰넱넲넳넴넵넶넷넸넹넺넻넼넽넾넿녀녁녂녃년녅녆녇녈녉녊녋녌녍녎녏념녑녒녓녔녕녖녗녘녙녚녛녜녝녞녟녠녡녢녣녤녥녦녧녨녩녪녫녬녭녮녯녰녱녲녳녴녵녶녷노녹녺녻논녽녾녿놀놁놂놃놄놅놆놇놈놉놊놋놌농놎놏놐놑높놓놔놕놖놗놘놙놚놛놜놝놞놟놠놡놢놣놤놥놦놧놨놩놪놫놬놭놮놯놰놱놲놳놴놵놶놷놸놹놺놻놼놽놾놿뇀뇁뇂뇃뇄뇅뇆뇇뇈뇉뇊뇋뇌뇍뇎뇏뇐뇑뇒뇓뇔뇕뇖뇗뇘뇙뇚뇛뇜뇝뇞뇟뇠뇡뇢뇣뇤뇥뇦뇧뇨뇩뇪뇫뇬뇭뇮뇯뇰뇱뇲뇳뇴뇵뇶뇷뇸뇹뇺뇻뇼뇽뇾뇿눀눁눂눃누눅눆눇눈눉눊눋눌눍눎눏눐눑눒눓눔눕눖눗눘눙눚눛눜눝눞눟눠눡눢눣눤눥눦눧눨눩눪눫눬눭눮눯눰눱눲눳눴눵눶눷눸눹눺눻눼눽눾눿뉀뉁뉂뉃뉄뉅뉆뉇뉈뉉뉊뉋뉌뉍뉎뉏뉐뉑뉒뉓뉔뉕뉖뉗뉘뉙뉚뉛뉜뉝뉞뉟뉠뉡뉢뉣뉤뉥뉦뉧뉨뉩뉪뉫뉬뉭뉮뉯뉰뉱뉲뉳뉴뉵뉶뉷뉸뉹뉺뉻뉼뉽뉾뉿늀늁늂늃늄늅늆늇늈늉늊늋늌늍늎늏느늑늒늓는늕늖늗늘늙늚늛늜늝늞늟늠늡늢늣늤능늦늧늨늩늪늫늬늭늮늯늰늱늲늳늴늵늶늷늸늹늺늻늼늽늾늿닀닁닂닃닄닅닆닇니닉닊닋닌닍닎닏닐닑닒닓닔닕닖닗님닙닚닛닜닝닞닟닠닡닢닣다닥닦닧단닩닪닫달닭닮닯닰닱닲닳담답닶닷닸당닺닻닼닽닾닿대댁댂댃댄댅댆댇댈댉댊댋댌댍댎댏댐댑댒댓댔댕댖댗댘댙댚댛댜댝댞댟댠댡댢댣댤댥댦댧댨댩댪댫댬댭댮댯댰댱댲댳댴댵댶댷댸댹댺댻댼댽댾댿덀덁덂덃덄덅덆덇덈덉덊덋덌덍덎덏덐덑덒덓더덕덖덗던덙덚덛덜덝덞덟덠덡덢덣덤덥덦덧덨덩덪덫덬덭덮덯데덱덲덳덴덵덶덷델덹덺덻덼덽덾덿뎀뎁뎂뎃뎄뎅뎆뎇뎈뎉뎊뎋뎌뎍뎎뎏뎐뎑뎒뎓뎔뎕뎖뎗뎘뎙뎚뎛뎜뎝뎞뎟뎠뎡뎢뎣뎤뎥뎦뎧뎨뎩뎪뎫뎬뎭뎮뎯뎰뎱뎲뎳뎴뎵뎶뎷뎸뎹뎺뎻뎼뎽뎾뎿돀돁돂돃도독돆돇돈돉돊돋돌돍돎돏돐돑돒돓돔돕돖돗돘동돚돛돜돝돞돟돠돡돢돣돤돥돦돧돨돩돪돫돬돭돮돯돰돱돲돳돴돵돶돷돸돹돺돻돼돽돾돿됀됁됂됃됄됅됆됇됈됉됊됋됌됍됎됏됐됑됒됓됔됕됖됗되됙됚됛된됝됞됟될됡됢됣됤됥됦됧됨됩됪됫됬됭됮됯됰됱됲됳됴됵됶됷됸됹됺됻됼됽됾됿둀둁둂둃둄둅둆둇둈둉둊둋둌둍둎둏두둑둒둓둔둕둖둗둘둙둚둛둜둝둞둟둠둡둢둣둤둥둦둧둨둩둪둫둬둭둮둯둰둱둲둳둴둵둶둷둸둹둺둻둼둽둾둿뒀뒁뒂뒃뒄뒅뒆뒇뒈뒉뒊뒋뒌뒍뒎뒏뒐뒑뒒뒓뒔뒕뒖뒗뒘뒙뒚뒛뒜뒝뒞뒟뒠뒡뒢뒣뒤뒥뒦뒧뒨뒩뒪뒫뒬뒭뒮뒯뒰뒱뒲뒳뒴뒵뒶뒷뒸뒹뒺뒻뒼뒽뒾뒿듀듁듂듃듄듅듆듇듈듉듊듋듌듍듎듏듐듑듒듓듔듕듖듗듘듙듚듛드득듞듟든듡듢듣들듥듦듧듨듩듪듫듬듭듮듯듰등듲듳듴듵듶듷듸듹듺듻듼듽듾듿딀딁딂딃딄딅딆딇딈딉딊딋딌딍딎딏딐딑딒딓디딕딖딗딘딙딚딛딜딝딞딟딠딡딢딣딤딥딦딧딨딩딪딫딬딭딮딯따딱딲딳딴딵딶딷딸딹딺딻딼딽딾딿땀땁땂땃땄땅땆땇땈땉땊땋때땍땎땏땐땑땒땓땔땕땖땗땘땙땚땛땜땝땞땟땠땡땢땣땤땥땦땧땨땩땪땫땬땭땮땯땰땱땲땳땴땵땶땷땸땹땺땻땼땽땾땿떀떁떂떃떄떅떆떇떈떉떊떋떌떍떎떏떐떑떒떓떔떕떖떗떘떙떚떛떜떝떞떟떠떡떢떣떤떥떦떧떨떩떪떫떬떭떮떯떰떱떲떳떴떵떶떷떸떹떺떻떼떽떾떿뗀뗁뗂뗃뗄뗅뗆뗇뗈뗉뗊뗋뗌뗍뗎뗏뗐뗑뗒뗓뗔뗕뗖뗗뗘뗙뗚뗛뗜뗝뗞뗟뗠뗡뗢뗣뗤뗥뗦뗧뗨뗩뗪뗫뗬뗭뗮뗯뗰뗱뗲뗳뗴뗵뗶뗷뗸뗹뗺뗻뗼뗽뗾뗿똀똁똂똃똄똅똆똇똈똉똊똋똌똍똎똏또똑똒똓똔똕똖똗똘똙똚똛똜똝똞똟똠똡똢똣똤똥똦똧똨똩똪똫똬똭똮똯똰똱똲똳똴똵똶똷똸똹똺똻똼똽똾똿뙀뙁뙂뙃뙄뙅뙆뙇뙈뙉뙊뙋뙌뙍뙎뙏뙐뙑뙒뙓뙔뙕뙖뙗뙘뙙뙚뙛뙜뙝뙞뙟뙠뙡뙢뙣뙤뙥뙦뙧뙨뙩뙪뙫뙬뙭뙮뙯뙰뙱뙲뙳뙴뙵뙶뙷뙸뙹뙺뙻뙼뙽뙾뙿뚀뚁뚂뚃뚄뚅뚆뚇뚈뚉뚊뚋뚌뚍뚎뚏뚐뚑뚒뚓뚔뚕뚖뚗뚘뚙뚚뚛뚜뚝뚞뚟뚠뚡뚢뚣뚤뚥뚦뚧뚨뚩뚪뚫뚬뚭뚮뚯뚰뚱뚲뚳뚴뚵뚶뚷뚸뚹뚺뚻뚼뚽뚾뚿뛀뛁뛂뛃뛄뛅뛆뛇뛈뛉뛊뛋뛌뛍뛎뛏뛐뛑뛒뛓뛔뛕뛖뛗뛘뛙뛚뛛뛜뛝뛞뛟뛠뛡뛢뛣뛤뛥뛦뛧뛨뛩뛪뛫뛬뛭뛮뛯뛰뛱뛲뛳뛴뛵뛶뛷뛸뛹뛺뛻뛼뛽뛾뛿뜀뜁뜂뜃뜄뜅뜆뜇뜈뜉뜊뜋뜌뜍뜎뜏뜐뜑뜒뜓뜔뜕뜖뜗뜘뜙뜚뜛뜜뜝뜞뜟뜠뜡뜢뜣뜤뜥뜦뜧뜨뜩뜪뜫뜬뜭뜮뜯뜰뜱뜲뜳뜴뜵뜶뜷뜸뜹뜺뜻뜼뜽뜾뜿띀띁띂띃띄띅띆띇띈띉띊띋띌띍띎띏띐띑띒띓띔띕띖띗띘띙띚띛띜띝띞띟띠띡띢띣띤띥띦띧띨띩띪띫띬띭띮띯띰띱띲띳띴띵띶띷띸띹띺띻라락띾띿란랁랂랃랄랅랆랇랈랉랊랋람랍랎랏랐랑랒랓랔랕랖랗래랙랚랛랜랝랞랟랠랡랢랣랤랥랦랧램랩랪랫랬랭랮랯랰랱랲랳랴략랶랷랸랹랺랻랼랽랾랿럀럁럂럃럄럅럆럇럈량럊럋럌럍럎럏럐럑럒럓럔럕럖럗럘럙럚럛럜럝럞럟럠럡럢럣럤럥럦럧럨럩럪럫러럭럮럯런럱럲럳럴럵럶럷럸럹럺럻럼럽럾럿렀렁렂렃렄렅렆렇레렉렊렋렌렍렎렏렐렑렒렓렔렕렖렗렘렙렚렛렜렝렞렟렠렡렢렣려력렦렧련렩렪렫렬렭렮렯렰렱렲렳렴렵렶렷렸령렺렻렼렽렾렿례롁롂롃롄롅롆롇롈롉롊롋롌롍롎롏롐롑롒롓롔롕롖롗롘롙롚롛로록롞롟론롡롢롣롤롥롦롧롨롩롪롫롬롭롮롯롰롱롲롳롴롵롶롷롸롹롺롻롼롽롾롿뢀뢁뢂뢃뢄뢅뢆뢇뢈뢉뢊뢋뢌뢍뢎뢏뢐뢑뢒뢓뢔뢕뢖뢗뢘뢙뢚뢛뢜뢝뢞뢟뢠뢡뢢뢣뢤뢥뢦뢧뢨뢩뢪뢫뢬뢭뢮뢯뢰뢱뢲뢳뢴뢵뢶뢷뢸뢹뢺뢻뢼뢽뢾뢿룀룁룂룃룄룅룆룇룈룉룊룋료룍룎룏룐룑룒룓룔룕룖룗룘룙룚룛룜룝룞룟룠룡룢룣룤룥룦룧루룩룪룫룬룭룮룯룰룱룲룳룴룵룶룷룸룹룺룻룼룽룾룿뤀뤁뤂뤃뤄뤅뤆뤇뤈뤉뤊뤋뤌뤍뤎뤏뤐뤑뤒뤓뤔뤕뤖뤗뤘뤙뤚뤛뤜뤝뤞뤟뤠뤡뤢뤣뤤뤥뤦뤧뤨뤩뤪뤫뤬뤭뤮뤯뤰뤱뤲뤳뤴뤵뤶뤷뤸뤹뤺뤻뤼뤽뤾뤿륀륁륂륃륄륅륆륇륈륉륊륋륌륍륎륏륐륑륒륓륔륕륖륗류륙륚륛륜륝륞륟률륡륢륣륤륥륦륧륨륩륪륫륬륭륮륯륰륱륲륳르륵륶륷른륹륺륻를륽륾륿릀릁릂릃름릅릆릇릈릉릊릋릌릍릎릏릐릑릒릓릔릕릖릗릘릙릚릛릜릝릞릟릠릡릢릣릤릥릦릧릨릩릪릫리릭릮릯린릱릲릳릴릵릶릷릸릹릺릻림립릾릿맀링맂맃맄맅맆맇마막맊맋만맍많맏말맑맒맓맔맕맖맗맘맙맚맛맜망맞맟맠맡맢맣매맥맦맧맨맩맪맫맬맭맮맯맰맱맲맳맴맵맶맷맸맹맺맻맼맽맾맿먀먁먂먃먄먅먆먇먈먉먊먋먌먍먎먏먐먑먒먓먔먕먖먗먘먙먚먛먜먝먞먟먠먡먢먣먤먥먦먧먨먩먪먫먬먭먮먯먰먱먲먳먴먵먶먷머먹먺먻먼먽먾먿멀멁멂멃멄멅멆멇멈멉멊멋멌멍멎멏멐멑멒멓메멕멖멗멘멙멚멛멜멝멞멟멠멡멢멣멤멥멦멧멨멩멪멫멬멭멮멯며멱멲멳면멵멶멷멸멹멺멻멼멽멾멿몀몁몂몃몄명몆몇몈몉몊몋몌몍몎몏몐몑몒몓몔몕몖몗몘몙몚몛몜몝몞몟몠몡몢몣몤몥몦몧모목몪몫몬몭몮몯몰몱몲몳몴몵몶몷몸몹몺못몼몽몾몿뫀뫁뫂뫃뫄뫅뫆뫇뫈뫉뫊뫋뫌뫍뫎뫏뫐뫑뫒뫓뫔뫕뫖뫗뫘뫙뫚뫛뫜뫝뫞뫟뫠뫡뫢뫣뫤뫥뫦뫧뫨뫩뫪뫫뫬뫭뫮뫯뫰뫱뫲뫳뫴뫵뫶뫷뫸뫹뫺뫻뫼뫽뫾뫿묀묁묂묃묄묅묆묇묈묉묊묋묌묍묎묏묐묑묒묓묔묕묖묗묘묙묚묛묜묝묞묟묠묡묢묣묤묥묦묧묨묩묪묫묬묭묮묯묰묱묲묳무묵묶묷문묹묺묻물묽묾묿뭀뭁뭂뭃뭄뭅뭆뭇뭈뭉뭊뭋뭌뭍뭎뭏뭐뭑뭒뭓뭔뭕뭖뭗뭘뭙뭚뭛뭜뭝뭞뭟뭠뭡뭢뭣뭤뭥뭦뭧뭨뭩뭪뭫뭬뭭뭮뭯뭰뭱뭲뭳뭴뭵뭶뭷뭸뭹뭺뭻뭼뭽뭾뭿뮀뮁뮂뮃뮄뮅뮆뮇뮈뮉뮊뮋뮌뮍뮎뮏뮐뮑뮒뮓뮔뮕뮖뮗뮘뮙뮚뮛뮜뮝뮞뮟뮠뮡뮢뮣뮤뮥뮦뮧뮨뮩뮪뮫뮬뮭뮮뮯뮰뮱뮲뮳뮴뮵뮶뮷뮸뮹뮺뮻뮼뮽뮾뮿므믁믂믃믄믅믆믇믈믉믊믋믌믍믎믏믐믑믒믓믔믕믖믗믘믙믚믛믜믝믞믟믠믡믢믣믤믥믦믧믨믩믪믫믬믭믮믯믰믱믲믳믴믵믶믷미믹믺믻민믽믾믿밀밁밂밃밄밅밆밇밈밉밊밋밌밍밎및밐밑밒밓바박밖밗반밙밚받발밝밞밟밠밡밢밣밤밥밦밧밨방밪밫밬밭밮밯배백밲밳밴밵밶밷밸밹밺밻밼밽밾밿뱀뱁뱂뱃뱄뱅뱆뱇뱈뱉뱊뱋뱌뱍뱎뱏뱐뱑뱒뱓뱔뱕뱖뱗뱘뱙뱚뱛뱜뱝뱞뱟뱠뱡뱢뱣뱤뱥뱦뱧뱨뱩뱪뱫뱬뱭뱮뱯뱰뱱뱲뱳뱴뱵뱶뱷뱸뱹뱺뱻뱼뱽뱾뱿벀벁벂벃버벅벆벇번벉벊벋벌벍벎벏벐벑벒벓범법벖벗벘벙벚벛벜벝벞벟베벡벢벣벤벥벦벧벨벩벪벫벬벭벮벯벰벱벲벳벴벵벶벷벸벹벺벻벼벽벾벿변볁볂볃별볅볆볇볈볉볊볋볌볍볎볏볐병볒볓볔볕볖볗볘볙볚볛볜볝볞볟볠볡볢볣볤볥볦볧볨볩볪볫볬볭볮볯볰볱볲볳보복볶볷본볹볺볻볼볽볾볿봀봁봂봃봄봅봆봇봈봉봊봋봌봍봎봏봐봑봒봓봔봕봖봗봘봙봚봛봜봝봞봟봠봡봢봣봤봥봦봧봨봩봪봫봬봭봮봯봰봱봲봳봴봵봶봷봸봹봺봻봼봽봾봿뵀뵁뵂뵃뵄뵅뵆뵇뵈뵉뵊뵋뵌뵍뵎뵏뵐뵑뵒뵓뵔뵕뵖뵗뵘뵙뵚뵛뵜뵝뵞뵟뵠뵡뵢뵣뵤뵥뵦뵧뵨뵩뵪뵫뵬뵭뵮뵯뵰뵱뵲뵳뵴뵵뵶뵷뵸뵹뵺뵻뵼뵽뵾뵿부북붂붃분붅붆붇불붉붊붋붌붍붎붏붐붑붒붓붔붕붖붗붘붙붚붛붜붝붞붟붠붡붢붣붤붥붦붧붨붩붪붫붬붭붮붯붰붱붲붳붴붵붶붷붸붹붺붻붼붽붾붿뷀뷁뷂뷃뷄뷅뷆뷇뷈뷉뷊뷋뷌뷍뷎뷏뷐뷑뷒뷓뷔뷕뷖뷗뷘뷙뷚뷛뷜뷝뷞뷟뷠뷡뷢뷣뷤뷥뷦뷧뷨뷩뷪뷫뷬뷭뷮뷯뷰뷱뷲뷳뷴뷵뷶뷷뷸뷹뷺뷻뷼뷽뷾뷿븀븁븂븃븄븅븆븇븈븉븊븋브븍븎븏븐븑븒븓블븕븖븗븘븙븚븛븜븝븞븟븠븡븢븣븤븥븦븧븨븩븪븫븬븭븮븯븰븱븲븳븴븵븶븷븸븹븺븻븼븽븾븿빀빁빂빃비빅빆빇빈빉빊빋빌빍빎빏빐빑빒빓빔빕빖빗빘빙빚빛빜빝빞빟빠빡빢빣빤빥빦빧빨빩빪빫빬빭빮빯빰빱빲빳빴빵빶빷빸빹빺빻빼빽빾빿뺀뺁뺂뺃뺄뺅뺆뺇뺈뺉뺊뺋뺌뺍뺎뺏뺐뺑뺒뺓뺔뺕뺖뺗뺘뺙뺚뺛뺜뺝뺞뺟뺠뺡뺢뺣뺤뺥뺦뺧뺨뺩뺪뺫뺬뺭뺮뺯뺰뺱뺲뺳뺴뺵뺶뺷뺸뺹뺺뺻뺼뺽뺾뺿뻀뻁뻂뻃뻄뻅뻆뻇뻈뻉뻊뻋뻌뻍뻎뻏뻐뻑뻒뻓뻔뻕뻖뻗뻘뻙뻚뻛뻜뻝뻞뻟뻠뻡뻢뻣뻤뻥뻦뻧뻨뻩뻪뻫뻬뻭뻮뻯뻰뻱뻲뻳뻴뻵뻶뻷뻸뻹뻺뻻뻼뻽뻾뻿뼀뼁뼂뼃뼄뼅뼆뼇뼈뼉뼊뼋뼌뼍뼎뼏뼐뼑뼒뼓뼔뼕뼖뼗뼘뼙뼚뼛뼜뼝뼞뼟뼠뼡뼢뼣뼤뼥뼦뼧뼨뼩뼪뼫뼬뼭뼮뼯뼰뼱뼲뼳뼴뼵뼶뼷뼸뼹뼺뼻뼼뼽뼾뼿뽀뽁뽂뽃뽄뽅뽆뽇뽈뽉뽊뽋뽌뽍뽎뽏뽐뽑뽒뽓뽔뽕뽖뽗뽘뽙뽚뽛뽜뽝뽞뽟뽠뽡뽢뽣뽤뽥뽦뽧뽨뽩뽪뽫뽬뽭뽮뽯뽰뽱뽲뽳뽴뽵뽶뽷뽸뽹뽺뽻뽼뽽뽾뽿뾀뾁뾂뾃뾄뾅뾆뾇뾈뾉뾊뾋뾌뾍뾎뾏뾐뾑뾒뾓뾔뾕뾖뾗뾘뾙뾚뾛뾜뾝뾞뾟뾠뾡뾢뾣뾤뾥뾦뾧뾨뾩뾪뾫뾬뾭뾮뾯뾰뾱뾲뾳뾴뾵뾶뾷뾸뾹뾺뾻뾼뾽뾾뾿뿀뿁뿂뿃뿄뿅뿆뿇뿈뿉뿊뿋뿌뿍뿎뿏뿐뿑뿒뿓뿔뿕뿖뿗뿘뿙뿚뿛뿜뿝뿞뿟뿠뿡뿢뿣뿤뿥뿦뿧뿨뿩뿪뿫뿬뿭뿮뿯뿰뿱뿲뿳뿴뿵뿶뿷뿸뿹뿺뿻뿼뿽뿾뿿쀀쀁쀂쀃쀄쀅쀆쀇쀈쀉쀊쀋쀌쀍쀎쀏쀐쀑쀒쀓쀔쀕쀖쀗쀘쀙쀚쀛쀜쀝쀞쀟쀠쀡쀢쀣쀤쀥쀦쀧쀨쀩쀪쀫쀬쀭쀮쀯쀰쀱쀲쀳쀴쀵쀶쀷쀸쀹쀺쀻쀼쀽쀾쀿쁀쁁쁂쁃쁄쁅쁆쁇쁈쁉쁊쁋쁌쁍쁎쁏쁐쁑쁒쁓쁔쁕쁖쁗쁘쁙쁚쁛쁜쁝쁞쁟쁠쁡쁢쁣쁤쁥쁦쁧쁨쁩쁪쁫쁬쁭쁮쁯쁰쁱쁲쁳쁴쁵쁶쁷쁸쁹쁺쁻쁼쁽쁾쁿삀삁삂삃삄삅삆삇삈삉삊삋삌삍삎삏삐삑삒삓삔삕삖삗삘삙삚삛삜삝삞삟삠삡삢삣삤삥삦삧삨삩삪삫사삭삮삯산삱삲삳살삵삶삷삸삹삺삻삼삽삾삿샀상샂샃샄샅샆샇새색샊샋샌샍샎샏샐샑샒샓샔샕샖샗샘샙샚샛샜생샞샟샠샡샢샣샤샥샦샧샨샩샪샫샬샭샮샯샰샱샲샳샴샵샶샷샸샹샺샻샼샽샾샿섀섁섂섃섄섅섆섇섈섉섊섋섌섍섎섏섐섑섒섓섔섕섖섗섘섙섚섛서석섞섟선섡섢섣설섥섦섧섨섩섪섫섬섭섮섯섰성섲섳섴섵섶섷세섹섺섻센섽섾섿셀셁셂셃셄셅셆셇셈셉셊셋셌셍셎셏셐셑셒셓셔셕셖셗션셙셚셛셜셝셞셟셠셡셢셣셤셥셦셧셨셩셪셫셬셭셮셯셰셱셲셳셴셵셶셷셸셹셺셻셼셽셾셿솀솁솂솃솄솅솆솇솈솉솊솋소속솎솏손솑솒솓솔솕솖솗솘솙솚솛솜솝솞솟솠송솢솣솤솥솦솧솨솩솪솫솬솭솮솯솰솱솲솳솴솵솶솷솸솹솺솻솼솽솾솿쇀쇁쇂쇃쇄쇅쇆쇇쇈쇉쇊쇋쇌쇍쇎쇏쇐쇑쇒쇓쇔쇕쇖쇗쇘쇙쇚쇛쇜쇝쇞쇟쇠쇡쇢쇣쇤쇥쇦쇧쇨쇩쇪쇫쇬쇭쇮쇯쇰쇱쇲쇳쇴쇵쇶쇷쇸쇹쇺쇻쇼쇽쇾쇿숀숁숂숃숄숅숆숇숈숉숊숋숌숍숎숏숐숑숒숓숔숕숖숗수숙숚숛순숝숞숟술숡숢숣숤숥숦숧숨숩숪숫숬숭숮숯숰숱숲숳숴숵숶숷숸숹숺숻숼숽숾숿쉀쉁쉂쉃쉄쉅쉆쉇쉈쉉쉊쉋쉌쉍쉎쉏쉐쉑쉒쉓쉔쉕쉖쉗쉘쉙쉚쉛쉜쉝쉞쉟쉠쉡쉢쉣쉤쉥쉦쉧쉨쉩쉪쉫쉬쉭쉮쉯쉰쉱쉲쉳쉴쉵쉶쉷쉸쉹쉺쉻쉼쉽쉾쉿슀슁슂슃슄슅슆슇슈슉슊슋슌슍슎슏슐슑슒슓슔슕슖슗슘슙슚슛슜슝슞슟슠슡슢슣스슥슦슧슨슩슪슫슬슭슮슯슰슱슲슳슴습슶슷슸승슺슻슼슽슾슿싀싁싂싃싄싅싆싇싈싉싊싋싌싍싎싏싐싑싒싓싔싕싖싗싘싙싚싛시식싞싟신싡싢싣실싥싦싧싨싩싪싫심십싮싯싰싱싲싳싴싵싶싷싸싹싺싻싼싽싾싿쌀쌁쌂쌃쌄쌅쌆쌇쌈쌉쌊쌋쌌쌍쌎쌏쌐쌑쌒쌓쌔쌕쌖쌗쌘쌙쌚쌛쌜쌝쌞쌟쌠쌡쌢쌣쌤쌥쌦쌧쌨쌩쌪쌫쌬쌭쌮쌯쌰쌱쌲쌳쌴쌵쌶쌷쌸쌹쌺쌻쌼쌽쌾쌿썀썁썂썃썄썅썆썇썈썉썊썋썌썍썎썏썐썑썒썓썔썕썖썗썘썙썚썛썜썝썞썟썠썡썢썣썤썥썦썧써썩썪썫썬썭썮썯썰썱썲썳썴썵썶썷썸썹썺썻썼썽썾썿쎀쎁쎂쎃쎄쎅쎆쎇쎈쎉쎊쎋쎌쎍쎎쎏쎐쎑쎒쎓쎔쎕쎖쎗쎘쎙쎚쎛쎜쎝쎞쎟쎠쎡쎢쎣쎤쎥쎦쎧쎨쎩쎪쎫쎬쎭쎮쎯쎰쎱쎲쎳쎴쎵쎶쎷쎸쎹쎺쎻쎼쎽쎾쎿쏀쏁쏂쏃쏄쏅쏆쏇쏈쏉쏊쏋쏌쏍쏎쏏쏐쏑쏒쏓쏔쏕쏖쏗쏘쏙쏚쏛쏜쏝쏞쏟쏠쏡쏢쏣쏤쏥쏦쏧쏨쏩쏪쏫쏬쏭쏮쏯쏰쏱쏲쏳쏴쏵쏶쏷쏸쏹쏺쏻쏼쏽쏾쏿쐀쐁쐂쐃쐄쐅쐆쐇쐈쐉쐊쐋쐌쐍쐎쐏쐐쐑쐒쐓쐔쐕쐖쐗쐘쐙쐚쐛쐜쐝쐞쐟쐠쐡쐢쐣쐤쐥쐦쐧쐨쐩쐪쐫쐬쐭쐮쐯쐰쐱쐲쐳쐴쐵쐶쐷쐸쐹쐺쐻쐼쐽쐾쐿쑀쑁쑂쑃쑄쑅쑆쑇쑈쑉쑊쑋쑌쑍쑎쑏쑐쑑쑒쑓쑔쑕쑖쑗쑘쑙쑚쑛쑜쑝쑞쑟쑠쑡쑢쑣쑤쑥쑦쑧쑨쑩쑪쑫쑬쑭쑮쑯쑰쑱쑲쑳쑴쑵쑶쑷쑸쑹쑺쑻쑼쑽쑾쑿쒀쒁쒂쒃쒄쒅쒆쒇쒈쒉쒊쒋쒌쒍쒎쒏쒐쒑쒒쒓쒔쒕쒖쒗쒘쒙쒚쒛쒜쒝쒞쒟쒠쒡쒢쒣쒤쒥쒦쒧쒨쒩쒪쒫쒬쒭쒮쒯쒰쒱쒲쒳쒴쒵쒶쒷쒸쒹쒺쒻쒼쒽쒾쒿쓀쓁쓂쓃쓄쓅쓆쓇쓈쓉쓊쓋쓌쓍쓎쓏쓐쓑쓒쓓쓔쓕쓖쓗쓘쓙쓚쓛쓜쓝쓞쓟쓠쓡쓢쓣쓤쓥쓦쓧쓨쓩쓪쓫쓬쓭쓮쓯쓰쓱쓲쓳쓴쓵쓶쓷쓸쓹쓺쓻쓼쓽쓾쓿씀씁씂씃씄씅씆씇씈씉씊씋씌씍씎씏씐씑씒씓씔씕씖씗씘씙씚씛씜씝씞씟씠씡씢씣씤씥씦씧씨씩씪씫씬씭씮씯씰씱씲씳씴씵씶씷씸씹씺씻씼씽씾씿앀앁앂앃아악앆앇안앉않앋알앍앎앏앐앑앒앓암압앖앗았앙앚앛앜앝앞앟애액앢앣앤앥앦앧앨앩앪앫앬앭앮앯앰앱앲앳앴앵앶앷앸앹앺앻야약앾앿얀얁얂얃얄얅얆얇얈얉얊얋얌얍얎얏얐양얒얓얔얕얖얗얘얙얚얛얜얝얞얟얠얡얢얣얤얥얦얧얨얩얪얫얬얭얮얯얰얱얲얳어억얶얷언얹얺얻얼얽얾얿엀엁엂엃엄업없엇었엉엊엋엌엍엎엏에엑엒엓엔엕엖엗엘엙엚엛엜엝엞엟엠엡엢엣엤엥엦엧엨엩엪엫여역엮엯연엱엲엳열엵엶엷엸엹엺엻염엽엾엿였영옂옃옄옅옆옇예옉옊옋옌옍옎옏옐옑옒옓옔옕옖옗옘옙옚옛옜옝옞옟옠옡옢옣오옥옦옧온옩옪옫올옭옮옯옰옱옲옳옴옵옶옷옸옹옺옻옼옽옾옿와왁왂왃완왅왆왇왈왉왊왋왌왍왎왏왐왑왒왓왔왕왖왗왘왙왚왛왜왝왞왟왠왡왢왣왤왥왦왧왨왩왪왫왬왭왮왯왰왱왲왳왴왵왶왷외왹왺왻왼왽왾왿욀욁욂욃욄욅욆욇욈욉욊욋욌욍욎욏욐욑욒욓요욕욖욗욘욙욚욛욜욝욞욟욠욡욢욣욤욥욦욧욨용욪욫욬욭욮욯우욱욲욳운욵욶욷울욹욺욻욼욽욾욿움웁웂웃웄웅웆웇웈웉웊웋워웍웎웏원웑웒웓월웕웖웗웘웙웚웛웜웝웞웟웠웡웢웣웤웥웦웧웨웩웪웫웬웭웮웯웰웱웲웳웴웵웶웷웸웹웺웻웼웽웾웿윀윁윂윃위윅윆윇윈윉윊윋윌윍윎윏윐윑윒윓윔윕윖윗윘윙윚윛윜윝윞윟유육윢윣윤윥윦윧율윩윪윫윬윭윮윯윰윱윲윳윴융윶윷윸윹윺윻으윽윾윿은읁읂읃을읅읆읇읈읉읊읋음읍읎읏읐응읒읓읔읕읖읗의읙읚읛읜읝읞읟읠읡읢읣읤읥읦읧읨읩읪읫읬읭읮읯읰읱읲읳이익읶읷인읹읺읻일읽읾읿잀잁잂잃임입잆잇있잉잊잋잌잍잎잏자작잒잓잔잕잖잗잘잙잚잛잜잝잞잟잠잡잢잣잤장잦잧잨잩잪잫재잭잮잯잰잱잲잳잴잵잶잷잸잹잺잻잼잽잾잿쟀쟁쟂쟃쟄쟅쟆쟇쟈쟉쟊쟋쟌쟍쟎쟏쟐쟑쟒쟓쟔쟕쟖쟗쟘쟙쟚쟛쟜쟝쟞쟟쟠쟡쟢쟣쟤쟥쟦쟧쟨쟩쟪쟫쟬쟭쟮쟯쟰쟱쟲쟳쟴쟵쟶쟷쟸쟹쟺쟻쟼쟽쟾쟿저적젂젃전젅젆젇절젉젊젋젌젍젎젏점접젒젓젔정젖젗젘젙젚젛제젝젞젟젠젡젢젣젤젥젦젧젨젩젪젫젬젭젮젯젰젱젲젳젴젵젶젷져젹젺젻젼젽젾젿졀졁졂졃졄졅졆졇졈졉졊졋졌졍졎졏졐졑졒졓졔졕졖졗졘졙졚졛졜졝졞졟졠졡졢졣졤졥졦졧졨졩졪졫졬졭졮졯조족졲졳존졵졶졷졸졹졺졻졼졽졾졿좀좁좂좃좄종좆좇좈좉좊좋좌좍좎좏좐좑좒좓좔좕좖좗좘좙좚좛좜좝좞좟좠좡좢좣좤좥좦좧좨좩좪좫좬좭좮좯좰좱좲좳좴좵좶좷좸좹좺좻좼좽좾좿죀죁죂죃죄죅죆죇죈죉죊죋죌죍죎죏죐죑죒죓죔죕죖죗죘죙죚죛죜죝죞죟죠죡죢죣죤죥죦죧죨죩죪죫죬죭죮죯죰죱죲죳죴죵죶죷죸죹죺죻주죽죾죿준줁줂줃줄줅줆줇줈줉줊줋줌줍줎줏줐중줒줓줔줕줖줗줘줙줚줛줜줝줞줟줠줡줢줣줤줥줦줧줨줩줪줫줬줭줮줯줰줱줲줳줴줵줶줷줸줹줺줻줼줽줾줿쥀쥁쥂쥃쥄쥅쥆쥇쥈쥉쥊쥋쥌쥍쥎쥏쥐쥑쥒쥓쥔쥕쥖쥗쥘쥙쥚쥛쥜쥝쥞쥟쥠쥡쥢쥣쥤쥥쥦쥧쥨쥩쥪쥫쥬쥭쥮쥯쥰쥱쥲쥳쥴쥵쥶쥷쥸쥹쥺쥻쥼쥽쥾쥿즀즁즂즃즄즅즆즇즈즉즊즋즌즍즎즏즐즑즒즓즔즕즖즗즘즙즚즛즜증즞즟즠즡즢즣즤즥즦즧즨즩즪즫즬즭즮즯즰즱즲즳즴즵즶즷즸즹즺즻즼즽즾즿지직짂짃진짅짆짇질짉짊짋짌짍짎짏짐집짒짓짔징짖짗짘짙짚짛짜짝짞짟짠짡짢짣짤짥짦짧짨짩짪짫짬짭짮짯짰짱짲짳짴짵짶짷째짹짺짻짼짽짾짿쨀쨁쨂쨃쨄쨅쨆쨇쨈쨉쨊쨋쨌쨍쨎쨏쨐쨑쨒쨓쨔쨕쨖쨗쨘쨙쨚쨛쨜쨝쨞쨟쨠쨡쨢쨣쨤쨥쨦쨧쨨쨩쨪쨫쨬쨭쨮쨯쨰쨱쨲쨳쨴쨵쨶쨷쨸쨹쨺쨻쨼쨽쨾쨿쩀쩁쩂쩃쩄쩅쩆쩇쩈쩉쩊쩋쩌쩍쩎쩏쩐쩑쩒쩓쩔쩕쩖쩗쩘쩙쩚쩛쩜쩝쩞쩟쩠쩡쩢쩣쩤쩥쩦쩧쩨쩩쩪쩫쩬쩭쩮쩯쩰쩱쩲쩳쩴쩵쩶쩷쩸쩹쩺쩻쩼쩽쩾쩿쪀쪁쪂쪃쪄쪅쪆쪇쪈쪉쪊쪋쪌쪍쪎쪏쪐쪑쪒쪓쪔쪕쪖쪗쪘쪙쪚쪛쪜쪝쪞쪟쪠쪡쪢쪣쪤쪥쪦쪧쪨쪩쪪쪫쪬쪭쪮쪯쪰쪱쪲쪳쪴쪵쪶쪷쪸쪹쪺쪻쪼쪽쪾쪿쫀쫁쫂쫃쫄쫅쫆쫇쫈쫉쫊쫋쫌쫍쫎쫏쫐쫑쫒쫓쫔쫕쫖쫗쫘쫙쫚쫛쫜쫝쫞쫟쫠쫡쫢쫣쫤쫥쫦쫧쫨쫩쫪쫫쫬쫭쫮쫯쫰쫱쫲쫳쫴쫵쫶쫷쫸쫹쫺쫻쫼쫽쫾쫿쬀쬁쬂쬃쬄쬅쬆쬇쬈쬉쬊쬋쬌쬍쬎쬏쬐쬑쬒쬓쬔쬕쬖쬗쬘쬙쬚쬛쬜쬝쬞쬟쬠쬡쬢쬣쬤쬥쬦쬧쬨쬩쬪쬫쬬쬭쬮쬯쬰쬱쬲쬳쬴쬵쬶쬷쬸쬹쬺쬻쬼쬽쬾쬿쭀쭁쭂쭃쭄쭅쭆쭇쭈쭉쭊쭋쭌쭍쭎쭏쭐쭑쭒쭓쭔쭕쭖쭗쭘쭙쭚쭛쭜쭝쭞쭟쭠쭡쭢쭣쭤쭥쭦쭧쭨쭩쭪쭫쭬쭭쭮쭯쭰쭱쭲쭳쭴쭵쭶쭷쭸쭹쭺쭻쭼쭽쭾쭿쮀쮁쮂쮃쮄쮅쮆쮇쮈쮉쮊쮋쮌쮍쮎쮏쮐쮑쮒쮓쮔쮕쮖쮗쮘쮙쮚쮛쮜쮝쮞쮟쮠쮡쮢쮣쮤쮥쮦쮧쮨쮩쮪쮫쮬쮭쮮쮯쮰쮱쮲쮳쮴쮵쮶쮷쮸쮹쮺쮻쮼쮽쮾쮿쯀쯁쯂쯃쯄쯅쯆쯇쯈쯉쯊쯋쯌쯍쯎쯏쯐쯑쯒쯓쯔쯕쯖쯗쯘쯙쯚쯛쯜쯝쯞쯟쯠쯡쯢쯣쯤쯥쯦쯧쯨쯩쯪쯫쯬쯭쯮쯯쯰쯱쯲쯳쯴쯵쯶쯷쯸쯹쯺쯻쯼쯽쯾쯿찀찁찂찃찄찅찆찇찈찉찊찋찌찍찎찏찐찑찒찓찔찕찖찗찘찙찚찛찜찝찞찟찠찡찢찣찤찥찦찧차착찪찫찬찭찮찯찰찱찲찳찴찵찶찷참찹찺찻찼창찾찿챀챁챂챃채책챆챇챈챉챊챋챌챍챎챏챐챑챒챓챔챕챖챗챘챙챚챛챜챝챞챟챠챡챢챣챤챥챦챧챨챩챪챫챬챭챮챯챰챱챲챳챴챵챶챷챸챹챺챻챼챽챾챿첀첁첂첃첄첅첆첇첈첉첊첋첌첍첎첏첐첑첒첓첔첕첖첗처척첚첛천첝첞첟철첡첢첣첤첥첦첧첨첩첪첫첬청첮첯첰첱첲첳체첵첶첷첸첹첺첻첼첽첾첿쳀쳁쳂쳃쳄쳅쳆쳇쳈쳉쳊쳋쳌쳍쳎쳏쳐쳑쳒쳓쳔쳕쳖쳗쳘쳙쳚쳛쳜쳝쳞쳟쳠쳡쳢쳣쳤쳥쳦쳧쳨쳩쳪쳫쳬쳭쳮쳯쳰쳱쳲쳳쳴쳵쳶쳷쳸쳹쳺쳻쳼쳽쳾쳿촀촁촂촃촄촅촆촇초촉촊촋촌촍촎촏촐촑촒촓촔촕촖촗촘촙촚촛촜총촞촟촠촡촢촣촤촥촦촧촨촩촪촫촬촭촮촯촰촱촲촳촴촵촶촷촸촹촺촻촼촽촾촿쵀쵁쵂쵃쵄쵅쵆쵇쵈쵉쵊쵋쵌쵍쵎쵏쵐쵑쵒쵓쵔쵕쵖쵗쵘쵙쵚쵛최쵝쵞쵟쵠쵡쵢쵣쵤쵥쵦쵧쵨쵩쵪쵫쵬쵭쵮쵯쵰쵱쵲쵳쵴쵵쵶쵷쵸쵹쵺쵻쵼쵽쵾쵿춀춁춂춃춄춅춆춇춈춉춊춋춌춍춎춏춐춑춒춓추축춖춗춘춙춚춛출춝춞춟춠춡춢춣춤춥춦춧춨충춪춫춬춭춮춯춰춱춲춳춴춵춶춷춸춹춺춻춼춽춾춿췀췁췂췃췄췅췆췇췈췉췊췋췌췍췎췏췐췑췒췓췔췕췖췗췘췙췚췛췜췝췞췟췠췡췢췣췤췥췦췧취췩췪췫췬췭췮췯췰췱췲췳췴췵췶췷췸췹췺췻췼췽췾췿츀츁츂츃츄츅츆츇츈츉츊츋츌츍츎츏츐츑츒츓츔츕츖츗츘츙츚츛츜츝츞츟츠측츢츣츤츥츦츧츨츩츪츫츬츭츮츯츰츱츲츳츴층츶츷츸츹츺츻츼츽츾츿칀칁칂칃칄칅칆칇칈칉칊칋칌칍칎칏칐칑칒칓칔칕칖칗치칙칚칛친칝칞칟칠칡칢칣칤칥칦칧침칩칪칫칬칭칮칯칰칱칲칳카칵칶칷칸칹칺칻칼칽칾칿캀캁캂캃캄캅캆캇캈캉캊캋캌캍캎캏캐캑캒캓캔캕캖캗캘캙캚캛캜캝캞캟캠캡캢캣캤캥캦캧캨캩캪캫캬캭캮캯캰캱캲캳캴캵캶캷캸캹캺캻캼캽캾캿컀컁컂컃컄컅컆컇컈컉컊컋컌컍컎컏컐컑컒컓컔컕컖컗컘컙컚컛컜컝컞컟컠컡컢컣커컥컦컧컨컩컪컫컬컭컮컯컰컱컲컳컴컵컶컷컸컹컺컻컼컽컾컿케켁켂켃켄켅켆켇켈켉켊켋켌켍켎켏켐켑켒켓켔켕켖켗켘켙켚켛켜켝켞켟켠켡켢켣켤켥켦켧켨켩켪켫켬켭켮켯켰켱켲켳켴켵켶켷켸켹켺켻켼켽켾켿콀콁콂콃콄콅콆콇콈콉콊콋콌콍콎콏콐콑콒콓코콕콖콗콘콙콚콛콜콝콞콟콠콡콢콣콤콥콦콧콨콩콪콫콬콭콮콯콰콱콲콳콴콵콶콷콸콹콺콻콼콽콾콿쾀쾁쾂쾃쾄쾅쾆쾇쾈쾉쾊쾋쾌쾍쾎쾏쾐쾑쾒쾓쾔쾕쾖쾗쾘쾙쾚쾛쾜쾝쾞쾟쾠쾡쾢쾣쾤쾥쾦쾧쾨쾩쾪쾫쾬쾭쾮쾯쾰쾱쾲쾳쾴쾵쾶쾷쾸쾹쾺쾻쾼쾽쾾쾿쿀쿁쿂쿃쿄쿅쿆쿇쿈쿉쿊쿋쿌쿍쿎쿏쿐쿑쿒쿓쿔쿕쿖쿗쿘쿙쿚쿛쿜쿝쿞쿟쿠쿡쿢쿣쿤쿥쿦쿧쿨쿩쿪쿫쿬쿭쿮쿯쿰쿱쿲쿳쿴쿵쿶쿷쿸쿹쿺쿻쿼쿽쿾쿿퀀퀁퀂퀃퀄퀅퀆퀇퀈퀉퀊퀋퀌퀍퀎퀏퀐퀑퀒퀓퀔퀕퀖퀗퀘퀙퀚퀛퀜퀝퀞퀟퀠퀡퀢퀣퀤퀥퀦퀧퀨퀩퀪퀫퀬퀭퀮퀯퀰퀱퀲퀳퀴퀵퀶퀷퀸퀹퀺퀻퀼퀽퀾퀿큀큁큂큃큄큅큆큇큈큉큊큋큌큍큎큏큐큑큒큓큔큕큖큗큘큙큚큛큜큝큞큟큠큡큢큣큤큥큦큧큨큩큪큫크큭큮큯큰큱큲큳클큵큶큷큸큹큺큻큼큽큾큿킀킁킂킃킄킅킆킇킈킉킊킋킌킍킎킏킐킑킒킓킔킕킖킗킘킙킚킛킜킝킞킟킠킡킢킣키킥킦킧킨킩킪킫킬킭킮킯킰킱킲킳킴킵킶킷킸킹킺킻킼킽킾킿타탁탂탃탄탅탆탇탈탉탊탋탌탍탎탏탐탑탒탓탔탕탖탗탘탙탚탛태택탞탟탠탡탢탣탤탥탦탧탨탩탪탫탬탭탮탯탰탱탲탳탴탵탶탷탸탹탺탻탼탽탾탿턀턁턂턃턄턅턆턇턈턉턊턋턌턍턎턏턐턑턒턓턔턕턖턗턘턙턚턛턜턝턞턟턠턡턢턣턤턥턦턧턨턩턪턫턬턭턮턯터턱턲턳턴턵턶턷털턹턺턻턼턽턾턿텀텁텂텃텄텅텆텇텈텉텊텋테텍텎텏텐텑텒텓텔텕텖텗텘텙텚텛템텝텞텟텠텡텢텣텤텥텦텧텨텩텪텫텬텭텮텯텰텱텲텳텴텵텶텷텸텹텺텻텼텽텾텿톀톁톂톃톄톅톆톇톈톉톊톋톌톍톎톏톐톑톒톓톔톕톖톗톘톙톚톛톜톝톞톟토톡톢톣톤톥톦톧톨톩톪톫톬톭톮톯톰톱톲톳톴통톶톷톸톹톺톻톼톽톾톿퇀퇁퇂퇃퇄퇅퇆퇇퇈퇉퇊퇋퇌퇍퇎퇏퇐퇑퇒퇓퇔퇕퇖퇗퇘퇙퇚퇛퇜퇝퇞퇟퇠퇡퇢퇣퇤퇥퇦퇧퇨퇩퇪퇫퇬퇭퇮퇯퇰퇱퇲퇳퇴퇵퇶퇷퇸퇹퇺퇻퇼퇽퇾퇿툀툁툂툃툄툅툆툇툈툉툊툋툌툍툎툏툐툑툒툓툔툕툖툗툘툙툚툛툜툝툞툟툠툡툢툣툤툥툦툧툨툩툪툫투툭툮툯툰툱툲툳툴툵툶툷툸툹툺툻툼툽툾툿퉀퉁퉂퉃퉄퉅퉆퉇퉈퉉퉊퉋퉌퉍퉎퉏퉐퉑퉒퉓퉔퉕퉖퉗퉘퉙퉚퉛퉜퉝퉞퉟퉠퉡퉢퉣퉤퉥퉦퉧퉨퉩퉪퉫퉬퉭퉮퉯퉰퉱퉲퉳퉴퉵퉶퉷퉸퉹퉺퉻퉼퉽퉾퉿튀튁튂튃튄튅튆튇튈튉튊튋튌튍튎튏튐튑튒튓튔튕튖튗튘튙튚튛튜튝튞튟튠튡튢튣튤튥튦튧튨튩튪튫튬튭튮튯튰튱튲튳튴튵튶튷트특튺튻튼튽튾튿틀틁틂틃틄틅틆틇틈틉틊틋틌틍틎틏틐틑틒틓틔틕틖틗틘틙틚틛틜틝틞틟틠틡틢틣틤틥틦틧틨틩틪틫틬틭틮틯티틱틲틳틴틵틶틷틸틹틺틻틼틽틾틿팀팁팂팃팄팅팆팇팈팉팊팋파팍팎팏판팑팒팓팔팕팖팗팘팙팚팛팜팝팞팟팠팡팢팣팤팥팦팧패팩팪팫팬팭팮팯팰팱팲팳팴팵팶팷팸팹팺팻팼팽팾팿퍀퍁퍂퍃퍄퍅퍆퍇퍈퍉퍊퍋퍌퍍퍎퍏퍐퍑퍒퍓퍔퍕퍖퍗퍘퍙퍚퍛퍜퍝퍞퍟퍠퍡퍢퍣퍤퍥퍦퍧퍨퍩퍪퍫퍬퍭퍮퍯퍰퍱퍲퍳퍴퍵퍶퍷퍸퍹퍺퍻퍼퍽퍾퍿펀펁펂펃펄펅펆펇펈펉펊펋펌펍펎펏펐펑펒펓펔펕펖펗페펙펚펛펜펝펞펟펠펡펢펣펤펥펦펧펨펩펪펫펬펭펮펯펰펱펲펳펴펵펶펷편펹펺펻펼펽펾펿폀폁폂폃폄폅폆폇폈평폊폋폌폍폎폏폐폑폒폓폔폕폖폗폘폙폚폛폜폝폞폟폠폡폢폣폤폥폦폧폨폩폪폫포폭폮폯폰폱폲폳폴폵폶폷폸폹폺폻폼폽폾폿퐀퐁퐂퐃퐄퐅퐆퐇퐈퐉퐊퐋퐌퐍퐎퐏퐐퐑퐒퐓퐔퐕퐖퐗퐘퐙퐚퐛퐜퐝퐞퐟퐠퐡퐢퐣퐤퐥퐦퐧퐨퐩퐪퐫퐬퐭퐮퐯퐰퐱퐲퐳퐴퐵퐶퐷퐸퐹퐺퐻퐼퐽퐾퐿푀푁푂푃푄푅푆푇푈푉푊푋푌푍푎푏푐푑푒푓푔푕푖푗푘푙푚푛표푝푞푟푠푡푢푣푤푥푦푧푨푩푪푫푬푭푮푯푰푱푲푳푴푵푶푷푸푹푺푻푼푽푾푿풀풁풂풃풄풅풆풇품풉풊풋풌풍풎풏풐풑풒풓풔풕풖풗풘풙풚풛풜풝풞풟풠풡풢풣풤풥풦풧풨풩풪풫풬풭풮풯풰풱풲풳풴풵풶풷풸풹풺풻풼풽풾풿퓀퓁퓂퓃퓄퓅퓆퓇퓈퓉퓊퓋퓌퓍퓎퓏퓐퓑퓒퓓퓔퓕퓖퓗퓘퓙퓚퓛퓜퓝퓞퓟퓠퓡퓢퓣퓤퓥퓦퓧퓨퓩퓪퓫퓬퓭퓮퓯퓰퓱퓲퓳퓴퓵퓶퓷퓸퓹퓺퓻퓼퓽퓾퓿픀픁픂픃프픅픆픇픈픉픊픋플픍픎픏픐픑픒픓픔픕픖픗픘픙픚픛픜픝픞픟픠픡픢픣픤픥픦픧픨픩픪픫픬픭픮픯픰픱픲픳픴픵픶픷픸픹픺픻피픽픾픿핀핁핂핃필핅핆핇핈핉핊핋핌핍핎핏핐핑핒핓핔핕핖핗하학핚핛한핝핞핟할핡핢핣핤핥핦핧함합핪핫핬항핮핯핰핱핲핳해핵핶핷핸핹핺핻핼핽핾핿햀햁햂햃햄햅햆햇했행햊햋햌햍햎햏햐햑햒햓햔햕햖햗햘햙햚햛햜햝햞햟햠햡햢햣햤향햦햧햨햩햪햫햬햭햮햯햰햱햲햳햴햵햶햷햸햹햺햻햼햽햾햿헀헁헂헃헄헅헆헇허헉헊헋헌헍헎헏헐헑헒헓헔헕헖헗험헙헚헛헜헝헞헟헠헡헢헣헤헥헦헧헨헩헪헫헬헭헮헯헰헱헲헳헴헵헶헷헸헹헺헻헼헽헾헿혀혁혂혃현혅혆혇혈혉혊혋혌혍혎혏혐협혒혓혔형혖혗혘혙혚혛혜혝혞혟혠혡혢혣혤혥혦혧혨혩혪혫혬혭혮혯혰혱혲혳혴혵혶혷호혹혺혻혼혽혾혿홀홁홂홃홄홅홆홇홈홉홊홋홌홍홎홏홐홑홒홓화확홖홗환홙홚홛활홝홞홟홠홡홢홣홤홥홦홧홨황홪홫홬홭홮홯홰홱홲홳홴홵홶홷홸홹홺홻홼홽홾홿횀횁횂횃횄횅횆횇횈횉횊횋회획횎횏횐횑횒횓횔횕횖횗횘횙횚횛횜횝횞횟횠횡횢횣횤횥횦횧효횩횪횫횬횭횮횯횰횱횲횳횴횵횶횷횸횹횺횻횼횽횾횿훀훁훂훃후훅훆훇훈훉훊훋훌훍훎훏훐훑훒훓훔훕훖훗훘훙훚훛훜훝훞훟훠훡훢훣훤훥훦훧훨훩훪훫훬훭훮훯훰훱훲훳훴훵훶훷훸훹훺훻훼훽훾훿휀휁휂휃휄휅휆휇휈휉휊휋휌휍휎휏휐휑휒휓휔휕휖휗휘휙휚휛휜휝휞휟휠휡휢휣휤휥휦휧휨휩휪휫휬휭휮휯휰휱휲휳휴휵휶휷휸휹휺휻휼휽휾휿흀흁흂흃흄흅흆흇흈흉흊흋흌흍흎흏흐흑흒흓흔흕흖흗흘흙흚흛흜흝흞흟흠흡흢흣흤흥흦흧흨흩흪흫희흭흮흯흰흱흲흳흴흵흶흷흸흹흺흻흼흽흾흿��	

 !"#$%%%%%%%%%%%%%%%%%%%%%%%%%%%%힀힁힂힃힄힅힆힇히힉힊힋힌힍힎힏힐힑힒힓힔힕힖힗힘힙힚힛힜힝힞힟힠힡힢힣��	

 ��	

יִײַשׁשׂשּׁשּׂאַאָאּבּגּדּהּוּזּטּיּךּכּלּמּ��	

נּסּףּפּצּקּרּשּתּוֹבֿכֿפֿ�������	

�������	

����������	

��������	

����������	��	

����������	

��������	������	

��������	
��������������������	

������	
��������������������������������	

������������������	

����������������������������������������������������������������������	
������	

��	

������������	

 !"#$%&'(��	

������	
��������	

��	

��	

����	

������������������	

��	

A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI;8,���Tl���|\����l���������,���zRx�$���@FJw�?:*3$"D��0\����p����AH�����lF�B�B �B(�A0�A8�DP�
8A0A(B BBBA����$HWGNU� ��$@I@�`8t�`��
00�@I@��`8t�`��	����
$�$�$���o`��
� $H���	���o����o�o����o$ 0GA$3a1�1GA$3p10940$GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY0?GA+GLIBCXX_ASSERTIONSutf8_mac.so-2.7.8-141.el8.x86_64.debug(�>�7zXZ�ִF!t/���4]?�E�h=��ڊ�2N�$���hP\��?�Fq��]�P�B��xo�����r)����s&� ��y���B&����f�R�:�*�'o3^K��-�z����y���r�Ğ}�H�^��?7��Ry��S����8��k��,��,:v�Ĩz�a��������^F�
�h_&z�z;��95��!��_�]�}��WnAdj���,_�xFޯ���8�+m�4`��{�����M৩�VAM�W�*�_�rf"�2�T^��lN)W����*΃�(0
/ɇ��Ȉ�Rjk���Q�f��’R�w��;@�ψ�; ے��=]R�
�CV�_�*��{
�����r��� �������~��<����]��.�x(z��BK3�����7�_`���vރf6vډq���Wʧ�l@�db�v�H~&�-氪��)�� (G�z1��*j�F��^$Չ�Z�G
�l�(,2Z6i�hnX�N��-���3����\	��@uu}y,:�=�zJ��I*GW��o�5�>�pC�}����yV�B1�S�7�f>�8�U8�'�
/�5�2L�K�u(zv���w�=!�RpVD��_��LH{�~KE�������}��/��x_�j2	�Q�9��bE"V�$����A�"��M�Jӂ勐�-jC!��u����3.?�"�h֕:[`��9�^����Q��LY��x����-Q$>0�J�><<��t
E��tY���R�a�U��^���=9�rT���	�T
�����Ϊ/0')��##�@s��]�PV:L�*b�lF=s_������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��0���8���o��E���o��0T���^B��Hh��c@n@@0wpp�}$$
�@@� ���<����� ��$���$���$�` �$���$� � $ 0�0 $0 �8 d0 D
t",�"t&+PKLH[�z����)lib64/ruby/enc/trans/emoji_sjis_docomo.sonuȯ��ELF>�@��@8	@нн ����!��!�� ��!�!��888$$������  S�td������  P�td���$$Q�tdR�td����!��!ppGNU�7mr�|����S��d�@!	BE���|�K>�qX l , F"�(�!�0�!U`$�(�!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_emoji_sjis_docomorb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	���!P��!��!��!��!���!���!�R��!�`�!�h�!�x�!�R��!���!��!��!��!�! �!��H��H���!H��t��H����5��!�%��!��h�������h���������%��!D���%��!DH�=��!H�z�!H9�tH�&�!H��t	�����H�=Q�!H�5J�!H)�H��H��H��?H�H�tH���!H��t��fD�����=
�!u+UH�=��!H��tH�=n�!�Y����d������!]������w������H��H�=��!����H�=E�!H�������H��H���UTF8-DOCOMOSJIS-DOCOMO 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯	0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん�\ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω~�АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂=�	�p①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ	㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪��	亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭z�	院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改9d魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄9`機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈9\掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向9X后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷9T察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周9P宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾9L拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線9H 繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只9D#叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓9@&邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入9<)如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美98,鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋94/法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒902諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯9,5蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕	弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲�(8僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨9|:咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩9x=奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏9t@廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛9pC戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼9lF曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣9hI檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌9dL漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱9`O瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬9\R磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆9XU紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋9TX隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈9P[蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞9L^襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊9Ha蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮9Dd錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰9@g顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈9<j鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙	�8m纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱9�n犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"v�q9�t9�w9�z9�}9��9��9��9��9��9��ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯9��涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙9��髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	5��T��hx�	\XTPLHD@ <#8&4)0,,/(2$5 8t:p=l@hCdF`I\LXO。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚TRPULXH[D^@a<d8g4j0m�n�q�t�w�z�}������������������Ԙ�ܘ	���N���}�L���	Ț	�~��5
�w
p	�������������������������������������������������������������������������������
�����	���������������
��	�F�@�A�B�C�D�E�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�p�q�r�s�t�u�w�x�y�z�{�|�}�~����=���������������������������������	�vĜ���w
�	�]�\�e�f�g�h�����d�c���������0�	��������%x�	�T�U�V�W�X�Y�Z�[�\�]����������������g��	�����������	��������	�����������������������a��������������������-
0�	��������������o
��	�������������
Ȟ	���
�	�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S5���������	����������������������������������������������������wd�	������	��������������	������������=,�	����T���	���������l�p������(��������\����$�L�d������@�A�B�V	�X�Y�Z�q�r�s�t�u�v�w�x�y�z�����k�l����E�	�������������������������������������������������������������������������������������������������������������������������������L�����������������������������������������	�J�K�T�U�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�X��_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������	�E�[�R�SD�	������M@�	�����������\�	�e�i�`�c�a�k�j�d�l�f�n���	�_�m�b�g�h�~��������	�r�s�o�p�q�uU�	�t����D�P�<�8��T�x�����(��0�����	�������O�����s�^���N���������u���������L�������������O������h�	���T�v�V�����R�h����������������������]���T	�������\�����������]�������j�i�����������S�������������������������l�T��Y�m��	�����w�����������e�d�����t���W�����M�������������������C�N���O��	�P�������������x�����`���������L�Q�f����#��	���A�������Z���C�����R���]���������C�����������������ge�	�������T���������S�V�����U���������D�������N�����d�	�W�����E�r�W���������������������M�������C���o�U���������Z�Ԩ��L��x��\�̨P�+X�	�����q���{�����|���������[�����Y���l���������������`����m���X	�^���\�����������������������]�����������U����	���T���_�P�������b���B�������X�p�	�C���@�A�������l�D�a���E�H�F�m�G�I�`�K�J��3���V�M�N	���L���Q�P�O���R���S�D���U�T�W�V�Xu$��Y��	���Z�[���������b���[���e���Z�\�}���]�c���S�_�`�����Z�a���������T������b	�c���~�f���e���g���h�`�i�j�k�����d���n�l���m�y�o�p�q�~�u�s�t�r���v�����w�e� �	���x�y�y���������z����{�}�����}���f�~���M���������o����;Ȭ��	�n���������������Y���g�����������������������������h��}H�	�������������O�����U���������������������������n�����ȭ	�c�����������������h�������i���w�������[���J�������N@��j��	�u���E���������������k�������������������M��������������C���l����	�����m�������������k�����x�������n�����������C�������@����\	���������������������������P���m�����T�����K�����o���p�����������į	�����p���������������~�X�}�����q������	\�	�Q�������y�F�o�����f���������r���b�p���������@�����������������j�E�����i��K��	���h�e���g���D�����@���f���N�����i���������������z�����������\���	�C����������������������������������������	�����u���a���������t���B�����v�@���]���P���D���CD����i�A	���������E���N�F�G�����L�K�N�M�J�wS��	�S���O�H���I���S�B���Y�X�O�����P	���U���R���[�V�W�T�Z�Q�`�e�a�`��\	�f�P�x�h�A�^���b�[�������c�_���i�g�r�i���d���c��	�m�k���p�j�n�l�k�o�r�w�u�t[�	�Q���q�s���R�v�������}�{�|�~�`�	�\�X�x�y�����������������������	���d���������X����������!���������	�����������d���l�����c�������}��������c0���	�������������������������y�������\�n�����������	�����V�������B�y�����z�R��������	�������^�����C�_�����{����)T���	�����}�|�������������W���u�������|����k���x	������������������������������g�����������	�����Y�����h�������������U�����o���m�T�	��������������n�����������������1��	�����d���������������������������m�p�s��������������������s�	������������[�O���g�������������V���v�������������������	�����������t���_��z������������������������D�������z�@�D��	�A�@�����D�J�W�d�����B�E����W�i�F�������9��	�G�o�n���������K�L�I�W���H���P�����p{�	�����Q�O���R�P�N�P�M�����V�W���L��S�K	�k�U���X�w�Y�T�����	�}�Z�Q�[�_�\A к	���^���]���k�d�a���`�b�c�e�f� ��	���h�g�i���l���d�j�m�n� @��q	�o�p�q�r�E�s������t�u�y�F���G���v�w�w���x���y�z�{�}!|��~	�����F�����v�����G���@���������X�����q�����G���{���Q���������e�hI!���	���������������x������������Q���@�����������J���R����������������������!��	�������������������q��������������������������A�������K���s���A�!0�����	�����������r�����������W���j���w���������R����"��	������������Z���������x�������������Q"4�	����������������������������s���"��	�������������R������������������"�	�������������������������#0�	������������������������������Y#x�	������������������B�����H���I�������������b���J���F���#ȿ	�s�z���������������������t�����A���������X�#D���	���������y�����������������������N�����K�������c�H����$��	���L�������������X�M�{���x�����������N�fa$(�	�����p�����L�����f�@�C�D�B�_���F�E�A�G�H�I�L�J�K�M�����N�����U�O���$��	���P�M�Q���T���������U�|�����V���O�o����������W�X�^��������Y�J�e�$�	�Z�K�[���\�]�_���`�a�b�S�R�c�`�F����V���j�d���e�e�f�����i'%�������h�g�a��	�m�k�j�������l�k�]���p�o�n�q���r���z�s��������O�t�Ji%4�	�S�K���E�u�u�Y�Z���z����w�����y�O�x�v���|�%���h����|����@���8���8���T���T�ܱ<����X����X����(�����L����L����������D���Ⱥ�8�t����(���,���ؾ(�p���<��� ������,��� ��(�	�������{���|�������v���}�}�������������������%4�	�����������������P����������~�������p�����������������b��/&��	�������������������������������I���x���Y�����{������������q& �	�������f�����������������y���S������z�������������&�����D	���������������������������������������������& �	�������������Q���T���������������������d�S�����������������c���|7'��	�J������������������������e��������������y'(�	���������������������������������������������'����	�����������^�����������������@���A���B�C�Y�D�E�F�������[�'�����G	����������H�������K�I�L�J�M�����}���N�Q��?(|��Z	�O�V���P�c�}�R�S�W���T�R���e����������������Z�����(��	�c�S�]�d�_�f�b�a���[���Y�����U�X�S�����`�q���g���@�h�m�i���n�A���E�\�(`�	���k�w�l���g�������j�����U�����p�})��	���J�q�s�o�����{�������~�����x�����PG)L��v	�|���{���u�z�r�t�@�|�|�����T�y���T�����[�w�d�f���}�~���)����	���������`�����K�g����������������h�)$�	�������������r�������������g��
*��	�����E�������������O*��	�����T�����Q����P�������d�B���o�h�����*�	�i������������^���������F���C���[�����������������*`���	�������������������x�������������U����+��	��������q�~�����s�����������U���h�������G�~��W+4�	�������|���k�������l�������������������a�f�z�V�������{�+��	���������������������������������U���|���{���������+��	�V��������������������������f��t����������G����������E,��	�����W�����W���N��������������A���������i��������q_,�	�����������������g�������������b����\�A��������,��	���@�����B���C�j���D�F�G�H���g�X�I�J�������J���]�\���,���	�����L�������K�����L�N�]���M���N�O�������{�D�Q���p�S�V�U�����R%-��	�T�W���������������Z�m�X���Y�����[�\�����a�Y�t�^�������n�f�`����g-�	�f���]�c�b�����������}�g�e���d�_���k�i���g�m�s���-������	���u�A�t���^�����_���M�p�o�q�n�v�l�j�r�h�������������`�-�	�������h�����I�x�Z���z�����}���j���i��-.���{���j����	�y���|�~���K�����j�������V���O����������o.��	�����~���������[���������������������B���������������.h�	�����H�����������_���������I�����������X���������.���o��	�����������A����������������������������������������5/P�	�k���������^�����������������������|�������������O�y��w/��	���T���|���P�����Y���������������������/L�	��������\�����������l���������������������������/��	�������������������W�����������������~���������������M=0�	�����������k���@������������������0���h	���������@�w�������K�G���F�E�B�0��	���D�C�I�E�L���H�J�������M�Q�N18�	���O���R�S�T�U���������~�W�V�Y�\����E1��	�\�[�]���V�^���`�_�a�b�c�~���������c�������d�e���f�1���g	�i�h�w�}���c�j�l�B�k�m�n�o�p�q�s�r�t���i�u�E�k�v�a�1P���	�B�w�x�������y���������z�|�{�~�}2��	�����������C���������X�i����M2����`��	�����������������]�r�����������������D���2d�	�������������������B���������v���������������������������2��	���������������@�����������A�g���D�����������j3P�	���m�����������������k�^���F�������������hU3��	�����������l�����Y�_�Q�\�������C�Z���3 �	�������O�����������������U�t�������3x���	�������������i�����������W���������������[���~�����������Y��4��	�����������a�k���������������n�������Q�������������`����������]4X�	�������������X�����N�����������p���4����	���������������a�������������n���M�����48�	�������������������������������H�B������#5��	���Y�����R���A�������������������Q�@��e5��	�������N�I�������R�K���H���k�E�D�M�5T��G�F�L	���C���O�P���U�T�V�Y�b�S���W�5�������Q�Z	�X�]�[�^�a�Z���G�����\�`���_�J����d�h+6���������� �����t���X���D����x�����X���,����������|���������`���H���D��������0�|���H����\���H����p���P���0�����L�����`��h�	�f�����b�c�g�e�m�m�j�i�l���n���������o�q�pm6t�	���r���s�����D�������6��	���F�����u�t���x�Y�{�v�z�y�_���F�6�	���}�G��~�|�w�B�37`�	���������������R��u7��	���������������������������7��	���F��o���n���M���7(�	��R������������z����W���C��������;8l�	���������������������u���}8���	�������v��������������S�q�����������84�����	����]������������@9��	������������_���������������K���T��C9��	���������������A�������L�������P�Q�����9L�	�����������b�������l���C�������9��	�������������������D	:����	�����E�X�����H�F�����G���]������J����K:,�	�������I�������K�M�L�N���������i�����:��	���������l���������O�����������������:��	���P���Q�������;@�	����Z�@�Z�A���B�C�D�F�G�E�r�I�HS;t�	�R�K�J�L�M�O�N���Q�P���r�[�R���Y���S�p���T��c�R�b�\�j�������U�;��	�V�[�Y�X���E�W���������\�Z�{�����L�^���l�_�]���`�a�S�����f�c���b�E�;T�	�i�d�e�h�g�D�a�`�^�j�k�l�n�m�u�v���p�r�t�]�u�s��<��	�o�q�a���x�w�y�������z���|���{������s���}�~[<X�	��������������<��	���������������������������o����S�<��	�T��I�F�c����H�����W�U�V�X���������M!=��	��u�~�m�v��������X����������������������c=��	���������������^�����������������=l���	�Z�������������r�����������=��	�������������u������������������)>�	�����������������m�����Z��������k>`�	�������������\�u���m�C�j�v�{�>��	���]���^���d�������_���>��	���������V�����O���q���������������m��1?4�	������������A�@������C�Bs?��	���D�b�F�E�G�����I�H�`�������?���J�V	�_�F���S�P�O�c�L�N�j�_�M�K�I���[�����Q�R�?(��h��	�\�T�S�������d�f�T���U�W�X�H�Y�Z�[������9@���G��	�\�H���b�]���d�`�a���`�^���_����{@���H	�b���c�����B�d�e�t���g�f���i���l�j���m�k�e�@P���	���m�s�o���n�����n�p�q���r�n�t�����u���v���@��	�������w�����y�{�x�z�A�|�E���q�~��M�AA �	������}������g����������������v����h�G�j��[����^�|�����A|�	�������������J��}�y�����������A�	��M������������}����������������B|�	�������������Z������k����\�������IB�����	������z��������������U�������BP���	�����������������������������������B����	��������������������������������C�	���H���������������e�S�l��������������������������������QC\���	�������W�������������f�����������n���C���I	�@���g��C���[�R���B���h�������A�f�a�������F�����G�a�I�����H�CD�	�I���g�D�J�m�E�o�M�Q���L�U�n�i�����R���O�P���N�K�G�����WD��	�T�V�S�p���X���e�p�a�[�_�����Z�b�f�j�����\�o�d�Y�]�^����YDP�	�]������������q�g���c�h�j���m�i���������l���k�D�	�����n�u�o�v�r�����t�q�w�p�c�D�k�s��{�~�|��z�`���D<�	���}�x�@�q�J�r�D�U������y������J�����E��	�[����@���Z�������aE$�	�����Ep�	��s����������������r�u�����l������E��	��������r��������t��Q�A�`�������H'F��	���������K���������������������|��iFp����X����� �d���,�����D�����$�����8�l���L���P����x���d����X�����,����� �����H����t��t���H����T���<���H��4����h�����h������s�V	�l���������������k�������������������^���F�	�����������������������������������E�����W���F<�	�����������]�������I���������������b�����m�n�����x/G��	�����_�w�������������E�������������E�\qG�	�������e������r�����E�]���B�Gx�	�A��t���D�C�o�r�T�H�I���G���F�J�����B���G��N	�O�K�L�M�p�U�Q�����G�P�S�R�c�V�W�V�X�Z�^�[�Y�^7H(��\	�]���d�_�`�a���c�b�e�f�g�b���h�����L���v�i�j�P�kyH��	�l�m�n�o�����p���q���r���s�����C�w���M�t�q�u����w�������v�D�H��x	���z�y�|�{�}��~�����������F������H��	����������H�����m�c���F�|�����?I��	����������c�����������������p������IP�	�v����������s��������������������I���	����t�`��r���w��������xJ(�	����������������������GJt�	�����y�e������������p����������H����z������J�	���������G��������������������������J8	���{�t���������������������������K��������
K�	�������N�����f���������|����������OK�	���~���u���W�������������D�H�@������KH��	�������������U��������������K���@	��������B���}�C����~����n������J�P�QL��D	���N�F�H�R�G�K�����L�O�E�E�I�F�d�O��������V�TWLX	�m�S���U�W�X�[�Y���Z���M���\�a���`�L�	�A�b�h�]�_�^�P�A�d�c����e�f�L	�g���s�i�|�������j�k���l����Md	���q�r�m�\�n�a�o�p�z�t�w�s_M�	�u�v���x�`�u�a�{�^��|����}�~�g����������M��	�I���������w����������MX	���X����I����������������%N�	��Z���������gN�	������������I�a��NH	�����������y����������N���	�����O�s�����p�X���q�����t�����\����������������-O�	�����U����������������������������������oOX	���������������T��������������������������������O�	�������������J���A�������������O(	��������������A�@�C�B�D�P�E�F�G��5P|	�v�H���e�I�J���K�K���`�L�o�M�O���N�e�P�Q�R���S�T�UwP��V	�p�W�X�Y���G�Z�[�\�PL��	���]�v�u�`���_��P�^���L�a�b�����c�K�������i�d��f�����P�	�e�h�i�����g���]�f���r�m�w�����l�l�k�F�l�b�Y����j=Q		�o�p�n���_���F�s���a�U�v�����r�w���t�u��q�����N�����b���Qx		�z�x�k�����y�z���_�{������������~�|�@����}���������Q�	�d�y��	��������������u����w����T����R�
	���������������x����c��������ER�
�	�]�����Q������R`	�J���R�	�����L����������������^��S�	�����e�����L�������v�n�����������������������M���������\���fMS�����G���d	���������G���o���^�����������������q�������w���S�	��������������������������S,
	�������q������������NTp
	�����z������������UT�
	�����������������������������H���H�����T�
	�����x��������H����T<	����@�D�A��B�C�J�E���G�I�F�L�R�K�MU|	�N�Q�P�O�S�R���U�T�V�W�Y�X�g�Z���[�]�^]U�	�_�\�`���a�O�R����b���]�c�f���e�d�y�g�U0	�r�i���h�q�k�m���j�l�p�n�P�o�r�y���S�s�A�u�t�x�`�U�	�w���v�{�z�y�Q�|�}�~���D���#V�	�h�������������C�J�_��������HeVH	�I���v�}���������������R��q���������V�4����p��� �������H��� �l��0��@��P�\��P�@��P� t�D|�p	�	|
�
X����$
h
�
�
4t�(��@������	����t�����������r�������������������A����T�i������N��V	�����x����V�^�����������B�����������k���y���K����������J�I�������+W�������	�����W���M�������@mW`	���x�Y���S�����s�X���s�W�	������A���W�	�����U���z�����������|���������V�����y���_3X,	�����������������X������������������uX�����	�������������d������������B������j����������t�������������X�	�����b����������n������������X��	�S�����������������������������z���g;Y���	�e���C�L����������������K��}Y<	���N������������s�e�����I���|��Y�	���K������@�B������A�C����d���B����^�E�D�FZ�	��B���t���K���b�G�H�L�J�����I��CZ`	���O���������Z�M�N���L�P�Z�	�V���Y�X�L�Q�R�U�W�����Z�T�S���Z�	�^�_�`�]�\�����[�d�b���c�a���e	[<	�f�h�������g���s�i�l�j�k�m�o�p�q�t�r�u�wK[�	�v�[�	���[���	�x�M�y���z�J�[�������{�|�}�~����t�}������{����\	���������������S\�	���������h�j���\���	������~����������@�w���������A�������������z�\	�����G���@��K���u������������B��������������������]�����	�Y���W���������G������������J�������_������d[]��	���k������������������������I���P���������]�	���������������������������������r���������v���x���C�������]	���������������������f�������������!^�	���������������B���������C��c^�	�����������{�����a�����������z�����j���o����p����^8	�����z�{����������^����������@�B�A�^�	���C�D�E�F)_	�H�G�I�����H�Q�J�K���Z���������O��k_0	�L���M�{�a�`�N���O�P�R�S�U�Q�T�����V�W�X�Y�_�	�Z�\�[�^�a�]�_�`�b���_�	���c�d�����e�]�n�f�g�y���h1` 	�����w�������m�����l�j�k�i�w�n�o�p�q�s�r�xs`d	�t�v�R�u�����x���y���z��`��}	�|�~�{����������������` 	�����[�9a\ �	���������������������E������{a� 	��������������T���S�a� 	�@����������������D������a@!	�����������������L���N������Ab�!�	��������������I�����������~���������b�!��	���������������k�����������������h�������������V���bH"	�����L��������������c�"	�������������P����Ic�"	�����������������������������������c,#	�����D�C�E�L�@�A�����B���Q�J���F�K�c�#	�H�G�{�L�M�N�I���O���S�T�Rd�#	�Q�W�P�U�V�Y�X�[�\�]�h�Z�����^Qd($	���_�`�a�dt$	�b���c�d���d�$	�e�f�g�h�k�i�[�j���l���m���n�p�q�o������������e�$	���s�o�t�u�v�����w�������x�z�y�{�|�}�~�������Ye$%	���C����l���@��e�%	��V��������������������e�%	�����s�f,&�X��$��x�4��X��4����������0�(|�\� T x � 8!�!�!@"�"�"$#�#�# $l$�$�$%�%�%$&H&afP&�f��@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��X'�����������������������������������������������������������������d(����������������������������������������������������������������������������������������������������������������@�A�B�C�p)�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������|*���������������������������������������������������������������������+���������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G��,�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������-�������������������������������������������������������������������������.�������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K��/�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������0�����������������������������������������������������������������������������1�����������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O��2�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������3���������������������������������������������������������������������������������4���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�6�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������7���������������������������������������������������������������������������������������������������������������������������������8���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�$9�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������������������������������������0:���������������������������������������������������������������������������������������������������������������������������������<;�������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�H<�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������������������������������������������������������T=���������������������������������������������������������������������������������������������������������������������������������`>�����������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�l?�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������x@����������������������������������������������������������������������������������������������������������������������������������A���������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c��B�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������C����������������������������������������������������������������������������������������������������������������������������������D������������������������������������������������	�f�E\(h)t*�+�,�-�.�/�0�1�2�3�4�5789(:4;@<L=X>d?p@|A�B�C�D�EF�g$F	��Ig�F	���g�F	�s�~���������B�Y�a�b�c�e�i�l�u���������������������g�F	�I�����������i�j���{�C�|�D�^�O�P�Q�R�S�T�U�V�W�X�F�G�������H���`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�m�_�n�O�Q�dG�M�����������������������������������������������������o�b�p�`	�������������������������������hpH��������������������������������	QhxI	������P����hJ��F�F\GhHpIJ(J�h0J(�i\Jw
\JIi\J��������� �(�ؠ`���,�l��H'P'�FTJdJlJtJ[i|J@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmmmmmmmmmmmnopqrstummmmmmmmvwxyz{|mmmmmmmmmmm}~������������mmmmmmm��������mmmm�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWWXYZ[\]^_`abcdefghijklmnoWWWWWWWWpqrstuvwxyz{|}~��������WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW@�	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""@�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	

 !"#$%&'()*+,-./0123444444444444444444444444444444444444444444456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	
















































































































































































�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx��������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

����	

������	

��������	

��	

������������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8������	
��	
������	
��	

 !��	

��	

 !"#$��	

 !��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'()��	

��	

��	��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	

��	

��	
��	

��	

 !��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

����	

 !"#$%&'()*+,-./0123456789:;<=����	

��	

������	

 !��	

  !"#$%&'()*+,-./0123456789:;<=>?��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!���������	




; <I��<lI��dLJ��|zRx�$�H��0FJw�?:*3$"DI�� \�I��$HWGNU�P��!���J�RRj��R�����RRj��R���(
���!��!���o`��
��!0��h	���op���o�oZ���o�!`pGA$3a1(�GA$3p1094`�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignemoji_sjis_docomo.so-2.7.8-141.el8.x86_64.debugS�?��7zXZ�ִF!t/��
��]?�E�h=��ڊ�2N�H7�n ���OY��)c�5���2���/��&_"N�ǂn�]�6��wUzl5���J�#�|��r��ɐ�8Y�;yʱzA;��eг�+���)X�H�s�Z�@H�Nfe9�ͺ�L��af��h>����f_~����eل7ĔwÌ7Lؚ��FI��AA}ip}+��X�Ӹ6�_��ґ'"(9��ϫ�����{N
B-j�GgXL�X�2&�?K}�v�I 
s���ҭ_�G���O��z`����"�R#�%$[Z���R\rD�L&���E1�nja�~,q�k��Ի+i{�����p&�
�2�t�i+��᜝��Ss�AN��qP�����)�&|Q��~�n�췘�P5�kp�#�N���+>����}$y�s�M}�D��x��᥹������Э�P��4�Q��jye��q��/��v&U�es[��W��A(��c9Nb�g/~	�0�p��e���F�S����i�w����Fd��-~װMr��*>�@w��oµ	���$�����N!�WV�4@��^۬ýX�&B7��9�q�泃�VHA5�	e��L #z��s:��|�fk�)�A:����3,���x�Z��k�檉OO�kP?��Djc��B V�0[�)>|���o�u���<f�PA/Ս)���F���Q:g���7�T�̕'5��dO=��㱑�%=�7&F�I�J�dL[�÷^���~�D0�Q�X�64r��� ���+���%��#&��F���e�5+��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oZZE���opp T��h^B��0h((cPP0n�� w���}��
���r� ���$�8�8�t����� ���!�����!�����!��` ��!�����!�� ��!�(�(�!(��0�a(��
�4P�<��+PKLH[N;�Wp.p. lib64/ruby/enc/trans/japanese.sonuȯ��ELF>�@0'@8	@�
�
 �� � ��   ��888$$�
�
�
  S�td�
�
�
  P�td���44Q�tdR�td�� � ppGNU�?����1C7�/��1�q�@ �BE���|�|��qX c , F"�(  �0  UP$�(  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_japaneserb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�� p� 0� � � �� �� `	� �8 �` �h �x `	� �� �� � � �      ��H��H�� H��t��H����5� �%� ��h�������h���������%m D���%e DH�=a H�Z H9�tH� H��t	�����H�=1 H�5* H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=N �Y����d����� ]������w��������~���t@����A�0������޺pAF�k������p�����~O�@�q�@�9�����H��tN��V=��p�Oƍra��x���@�9�@�q�f.��r`���~ލr�x���D����A��f���H��H�= �<���H�=U H���,�����H��H���Shift_JISEUC-JP		``$`4,<�D�4�`h�p�����@��;4����P����x���������p����zRx�$8���0FJw�?:*3$"D@��� \���YpT���g�����$HWGNU�p0� ���`	�#���X`	�#�z��P
t� � ���o`��
�  0 ��	���oh���o�oR���o
 ��GA$3a1P�GA$3p1094�tGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONSjapanese.so-2.7.8-141.el8.x86_64.debugm�I4�7zXZ�ִF!t/��g*]?�E�h=��ڊ�2N���n ��(	�c�xc��y8�3 \��lT�΢Oug�|�k8�Ql�#�^8wwoUȞ��KrB��|�4!������i�nu�E-�]��"���h�3�W=��z�
���آhۇZ�$E��7�s�j~f�7Y��ԓ {�Q��L�k"����<�l��'�I��a�95gV�2A��A�bx������ē@>J���Uך�t��ӡ��ؠ����t����b�c(F~��йc�	�ND�?��/ր�b%����my-W_G�v�,%�r_�?{#��p�ȍ<��M"N;��p�ПǂH�n�I�bN.�y)ཊd+��,6_{+�a;����,w�fE:���/f�՜ؤ��m�a�#6������7.Cq�+�n%W#'�E��,�9��
X)~j�?��?�Jc����;�H��D�|�,=�V,��Y�ue{�=��H��L�rw��C7wtOJ[w�\J�6�S���F�l��!����Gw(:"�j�.��Fӡ�ow��ӑo.C@����3�	'�L�C>��(�և�C#��O�?Y��S@��U���[s��f-�G���ٓr��tj���>����C�'�et��
����&��X9�8��<���JzP��X@�z�jde���abX���ĭ5
M���[$A2�Mu+�
�*�Q�
�I#��}����	�=`A|!�[13��|5�Tr��A脎y`�Ƴ�+ ؐ:sm��ղN~�o^A}�<)HaԸo���r�:���Ͼ�Z\JX���S���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oRRE���ohh T���^B  0hPPcpp0n�� w���}tt
���? ���4�

���
�
 �� ��� ��� �` � ��� � �   (�(  ( �0 `( D
l",�"l&+PKMH[�q0~~$lib64/ruby/enc/trans/japanese_euc.sonuȯ��ELF>�@�v@8	@0a0a �h�h%�h%X` nn%n%��888$$aaa  S�tdaaa  P�tdt`t`t`$$Q�tdR�td�h�h%�h%00GNU�ۮ�M��Yϧc�$j�끴��@ 	 BE���|Z�'��qX g , F"�(p%�0p%U�	l�(p%__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_japanese_eucrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��h%�	�h%P	�h%�h%i% 
i%&
i%`�(i%`
�i% 
�i%3
�i%`��i%`
@j% 
Hj%;
Xj%`�hj%`
�j% 
�j%D
�j%`�k%`
�k%&
�k% 
�k%`��k%`
 l%3
(l% 
8l%`�Hl%`
�l%;
�l% 
�l%`��l%`
`m%D
hm% 
xm%`��m%`
�o%�o%�o%�o%p% p%��H��H�qg%H��t��H����5rg%�%sg%��h�������h���������%Mg%D���%Eg%DH�=Ag%H�:g%H9�tH��f%H��t	�����H�=g%H�5
g%H)�H��H��H��?H�H�tH��f%H��t��fD�����=�f%u+UH�=�f%H��tH�=n_%�Y����d�����f%]������w������H��H�=�c%����H�=c%����H�=Yb%��H�=�a%���H�=a%����H�=U`%����H�=�_%����H�=�^%H�������H��H���UTF-8EUC-JIS-2004CP51932eucJP-msEUC-JP。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚		`	˘ˇ¸˙˝¯˛˚~΄΅¡¦¿ºª©®™¤№�	ΆΈΉΊΪΌΎΫΏάέήίϊΐόςύϋΰώ �	ЂЃЄЅІЇЈЉЊЋЌЎЏђѓєѕіїјљњћќўџ��ÆĐ	ĦIJŁĿŊØŒŦÞæđðħıijĸłŀʼnŋøœßŧþ�\ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ	ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ@�áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ	ġĥíìïîǐīįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż�@丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄�侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐(傒傓傔傖傛傜傞傟傠傡傢傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂�凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋0
匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿�咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒8
嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍嘎嘏嘐嘑嘒嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤囥囦囧囨囱囫园�囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭坮坯坰坱坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡@堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭�奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿H嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖寗寘寙寚寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩�屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤P巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪幫幬幭幮幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧�彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐忑忒忓忔忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷X悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐愑愒愓愔愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥�懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵`捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿�擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝h昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝� 杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮桯桰桱桲桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏p"棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲�#樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽x%歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖�&泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞�(湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊*濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔炕炖炗炘炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃焄焅焆焇焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠�+煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻-狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽�.珿琀琁琄琇琊琑琚琛琤琦琨琩琪琫琬琭琮琯琰琱琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆0甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹畺畻畼畽畾疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹�1瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢皣皤皥皦皧皨皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢3睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳�4碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞$6秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰�7笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙籚籛籜籝籞,9籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝�:綞綦綧綪綳綶綷綹緂緃緄緅緆緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭4<罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮�=胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆<?艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸�@荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓DB蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏蕐蕑蕒蕓蕖蕙蕜蕝蕞蕟蕠蕡蕢蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼�C藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠虡虢虣虤虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣LE蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃螄螅螆螇螈螉螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵�F蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊裋裌裍裎裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺TH襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔觕觖觗觘觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳�I誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂譃譄譅譆譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆\K貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢�L踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁dN轃轇轏轑轒轓轔轕轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃�O郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿lQ釂釃釅釓釔釗釙釚釞釤釥釩釪釬釭釮釯釰釱釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵鉶鉷鉸鉹鉻鉼鉽鉿銈銉銊銍銎銒銗�R銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿鋀鋁鋂鋃鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶tT鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉鏊鏋鏌鏍鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹�U镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂|W霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦Y頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱餲餳餴餵餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵�Z馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿鬀鬁鬂鬃\鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪魫魬魭魮魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸�]鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦鰧鰨鰩鰪鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻_鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵�`黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃齄齅齆齇齓齕齖齗齘齚齝齞齨齩齭齮齯齰齱齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥	`bx�T�8� �(
�0
�8�@�H�P�X�`� h"�#p%�&x(�)�+-�.0�13�46�7$9�:,<�=4?�@<B�CDE�FLH�ITK�L\N�OdQ�RlT�UtW�X|Z\�]_�`b,c�4c 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー—‐/\〜‖|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+−±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇Td◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯ �e	0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz��fぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん	��gァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	@ iΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ	αβγδεζηθικλμνξοπρστυφχψω��jАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюяXk─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂	`pl亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭m院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応�n押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改p魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱�q粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄s機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京�t供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈v掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲�w検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向 y后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込�z此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷(|察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時�}次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周0宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償��勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾8�拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾��澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線@�繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎Ć臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只H�叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵̉帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓P�邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到Ԍ董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入X�如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦܏函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美`�鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服�福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋h�法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満�漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒p�諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃�痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯x�蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕	���弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲؜僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨\�辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨�咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉d�圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩�奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓l�屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏�廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚t�悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛��戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼|�據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼�曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍��棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣�檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾��沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌�漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼��燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱�瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰��癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬 �磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐��筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆(�紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺��罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋0�隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙��茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈8�蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙��蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞@�襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫��譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊H�蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸��遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮P�錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞��陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰X�顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷��髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈`�鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠��堯槇遙瑤凜熙	 h�Ld�e�f�gi�jPkhl�l|np�qs�tv�wy�z |�}(��0���8���@�ĉH�̌P�ԏX�ܒ`��h��p��МT�؟\��d��l��t���|������������� ���(���0���8���@���H���P���X���`������	˘ˇ¸˙˝¯˛˚~΄΅¡¦¿ºª©®™¤№���	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡ�D�ⅢⅣⅤⅥⅦⅧⅨⅩ'"㈱№℡炻仼僴凬匇匤﨎咊坙﨏塚增寬峵嵓﨑德悅愠敎昻晥晴朗栁﨓﨔橫櫢淸淲瀨凞猪甁皂皞益礰礼神祥福竧靖精綠緖羽荢﨟薰蘒﨡蠇諸譿賴赶﨣﨤逸郞都鄕﨧﨨閒隆﨩霻靍靑飯飼館馞髙魲鶴黑����������� ���(���<��T�8� �(
�0
�8�@�H�P�X�`� h"�#p%�&x(�)�+-�.0�13�46�7$9�:,<�=4?�@<B�CDE�FLH�ITK�L\N�OdQ�RlT�UtW�X|Z\�]_�`b,c|������������� ���(��0� 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇��◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯ �①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ	㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪A	��D���L���T���\��d��x������gi�jPkhl�l<�|np�qs�tv�wy�z |�}(��0���8���@�ĉH�̌P�ԏX�ܒ`��h��p��МT�؟\��d��l��t���|������������� ���(���0���8���@���H���P���X���`�����D���L���T��\��d��	l�纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德�忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱l�犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚�釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"�
t�����gi�jPkhl�l<�|np�qs�tv�wy�z |�}(��0���8���@�ĉH�̌P�ԏX�ܒ`��h��p��МT�؟\��d��l��t���|������������� ���(���0���8���@���H���P���X���`���d��l���丂丏丒丩丫丮乀乇么乑㐆Q乚乩亝㐬㐮亹亻�亼仃仈仐仫仚仱仵伀伖佤伷伾佔佘�佷佸佺佽侂侅侒侚俦侲侾俅俋俏俒㑪俲倀倐倓倜倞倢㑨偂偆偎偓偗偣偦偪偰傣傈傒傓傕傖傜傪傱傺傻僄僇僳Q僎�	僔僙僡僩㒒T儈�
儗儛兠Q
关冃冋㒼冘冣冭㓇冼��凳凴刂划刖剕剜剬剷劄劂Q劘�劤劦劯劺劻勊㔟勑�勷匊匋匤匵匾卂Q卧卬卺厤厴�厷叀�㕝㕞叕叚㕣叴叵呕吤吨㕮呃呢呦呬咊咍咕咠咦咭咮咷咺咿哃哬哯哱哳唀唁唉�唼啁㖦啇啊㖨啠啡啤Q啽喂喈喑㗅嗒��喿嗉嗌嗑嗝㗚嗢 嗩嘨Q!嘇嘐嘰嘷㗴嘽嘿噀噇噞噠噭㘅嚈嚌嚕嚚嚝嚨嚭嚲囅囍囟囨囶囷�"圕圣�#圩%坅坆坌坍Q&坨坯坳坴坵坻�'�(垬垚垝垞垨埗*埌Q+�,埞埦埰㙊埸埻埽堄堞\堠堧堲堹�-塉塌塧墊墋墍墏墐墔墝墪墱/壃壍壢壳壴夅夆夋复夔夤Q0㚑夽㚙奆㚖�1奛奟�2奵奶奼妟妮妼姈姍姞姣姤姧姮4Q5㛏娌娍娗娧娭婕婥婺媋媜媟媠媢媱媳媵媺媿嫚嫜嫠嫥嫰嫮嫵嬀嬈嬗嬴嬭孌孒孨孯孼孿宁宄�6�宖宬㝡寀㝢寎寖㝬㝫寱寽㝵尃尩尰�7屟屣屧屨屩屰9Q:屼�;�<岈岊㟁>Q?岠岢岦岧�@岭岵�A峉CQD崆崐崫崝崠崤崦崱崹嵂㟨嵡嵪㟴嵰�E㟽嶈㠀嶒嶔嶗嶙嶰嶲嶴�F嶹巑巗巘巠H巤巩㠯帀㠶帒帕㡀帟帮帾幉㡜幖㡡幫幬幭d	幮QI庥庪庬庹庿廆廒廙�J廽弈弎弜�K弞彇彣彲彾徏徢徤徸忄㣺忇忋忒忓忔忢忮忯忳忼㤗怗怢怤㤚恌恿悊悕您M悰悱悾惈惙惛惮惲惵愐愒愓愙愞愺㥯慁慆慠慼QN憒憓憗憘憥憨憭�O懕懝懟懵�P戕戣戩扆扌扑扒扡扤扻扭扳�
抙抦拕R拽挃挍挐QS�T挲挵挻挼捁捄捎�U捙WQX捬掄掙�Y掔掽揷揔揕揜揠揫揬揲搉搞搥搩搯摚摛摝摳摽撇撑撝撟擋擌擕擗�Z擤擥擿攄㩮攏攔攖㩳攞攲敄敔敫敺斁斄斅斊斲斵斸斿旂旉旔㫖旲旹旼昄昈昡昪晅晑晎㫪\晗l晛晣Q]�^晪晫晬晭晻暀暐暒暙㬎暭暱暵㬚暿㬜曬㫗朁朅朒�_朙aQb杌杍杔杝�c�df杴杶Qg枒�h荣栐枰枲柃柈柒柙柛柰柷�ikQl栘栟栭�m栳栻栾桄桅桉桌桕桗㭷桫桮桺桼梂梐梖㭭梘梙梚梜梪梫梴梻棻�np﨓棃棅棌棏棖�
棙棤棥棬棷椃椇㮇㮈Qq椻㮍楆楩楬楲楺楿榒㮤榖榘榦榰榷榺榼槀槑槖�r�s樰uQv槣槮槯槳㯍槴槾樑樚樝�w樲樳樴樿橆橉橺橎橒橤�x橾檃檋㯰檑檟檡z檫檽櫆櫔櫐櫜櫝Q{�|櫬櫱櫲櫳櫽�}欋欏欐欑欗㰦欯歊歘歬歵歺殁t殛殮Q�殽殾毇毈毉毚毦毧毮毱氂氊氎氵氶氺��氿汍汛汭沄沉㳃沔沕沗沭泂泐㳒泖泚泜泩泬泭т洀洊洤洦洧汧洯洼浛浞浠浰涀涁涊涍涑涘�渗Q���ч涫涮涴淂洴淈淎淏淐淟淩淶渶渞渢渧㴑渲渼湈湉湋湌湏湑湓湔湗湣㴞�溓溧溴溿滃滊滙漵滫滹滻漊漌漘漥漶漼�潒潗潚潠潨澘潽澐澖澾澟澥澯㵤澵濈濉濚濞濩Q�濼瀀瀇瀊瀣��瀹瀺瀼灃灇灋㶚灔灥灩灬灮灶灾炁炆炕炗炻ь炟炱�烬烊烑烓烜焃焄焆焇焈焌㷀焯焱煐煊煓煞㷔熖熀熛熠熢熮熯|熳Q�燋燓燙燜爇㸅爫爫爴爸爹丬牂牓牗牣��牮牯牸牿犎ё犭犮犰犱狁㹠狌㹦㹨狳狺猇猒猘猙㺃猹猬猱猳猽獒㺔獫獬�獮獯獱獷玁玅玊玔玘玜玞玥玨玵玷玹玼玿珅珋珡珧珹琓珺琁琤琱琹瑓瑀瑃瑍瑒瑝瑱璁璅璈Q�璒璗璙璠璡璥璪璫璹璻璺瓖瓘瓞瓯瓫��瓺і甠甤甪㽗�甽甾畀畈畎畐畒畬畲畱畺畽畾疁Q�疌㽵疢㽷疰疷疿痀痆痏痓痝痟痠痧痬痮痱痹瘃瘘瘇瘏㾮��瘓瘛瘜ћ瘥瘨瘼瘳�㿉癁Q�癉癕㿗癮皕皜皡皠皧皨皯��盉Ѡ盨盬�眗眚眭眵�Q�䀹��ѥ睘睠睪�睲睼睽Q�䁘瞚瞟瞢瞤瞩矞矟矤矦矪矬䂓矰矴矻��砅砆砉砍砙砡砬硇硤硪Ѫ碊碔碤碝碞碟碻磈磌磎磕磠磡磦磹磺磻磾�礐礛礰礥礻祊祘祛䄅祧祲禔禕禖禛禡禩禴离秂秇秌种秖䅈Q���䅏稊稑稕稛稞䅣稭稸穇穌穖穙穜穟穠穧穪穵穸窂窊窐窣窬ѯ䆴窹窼窾䆿竌竑竧竨竴�Q�笇��笽笧笪笮笯笱䇦䇳筿筁䇮筕筹筤筦筩筳Ѵ䈇箐箑箛䈎箯箵箼篅篊�Q�篔篖篚篪篰簃簋簎簏簦籅籊籑籗籞籡籩籮籯籰��ѹ�粦Q�粶粷粿��糄Ѿ糈�糍�糗Q�糦糫��糵紃紉䋆紒紞���紽紾絀絇Q���䋖絙絚絪絰䋝絿��綆綈綌綗�綝綧綪綶綷緀緗緙緦緱緹䌂Q�縉縐縗縝縠縧縬繅繳繵繾纆纇䌫纑纘纚䍃缼缻缾罃罄罏㓁��罒��罡罣罤罭罽罾�羐养Q�羖羜羭��翃翏翣翥翯翲耂耊耈耎耑耖耤耬耰聃聦聱聵聻肙肜肤肧肸��胅胕胘胦�脍胵胻䏮脵脖脞䏰脤脧脬Q�脽䐈腩䐗膁䐜膄膅䐢膘膲臁臃臖臛��臤��臬�臽臿Q�舄��舙舡舢��舲舴舼艆艉艅�艋䑶艏䑺艗Q�艜艣��艹艹艹䒑艽艿芃芊芓芧芨�芲芴芺芼苢苨苷茇茈茌荔茛茝茰茼荄荗䒾荿䓔䒳莍莔莕莛莝菉菐菔菝菥菹萏萑萕��萗萹葊葏葑葒葙葚葜�葥葶葸葼蒁䔍蓜蒗蒦蒾䔈蓎蓏蓓Q�蓧蓪蓯蓰蓱蓺蓽蔌蔛蔤蔥蔫蔴蕏蕯䔥䕃蔾蕑蕓蕞蕡蕢��蕻蕽蕿薁薆薓薝薟���Q�薷薼藇藊藘藙藟藡藦藶蘀蘑蘞蘡蘤蘧��蘹蘼��虀蘒虓虖虯虷虺蚇蚉蚍蚑蚜蚝蚨﨡蚱蚳蛁蛃蛑蛕蛗蛣蛦䖸蜅蜇蜎蜐蜓蜙蜟蜡蜣蜱蜺蜾蝀蝃蝑蝘蝤蝥蝲蝼�Q�螧螉螋螓螠��䗥螾��蟁蟎蟵蟟�蟣蟥蟦蟪蟫蟭蠁蠃蠋蠓蠨�蠮蠲蠼䘏衊衘衟衤Q���衩�衯袠袼袽袾裀裒�裑裓裛裰裱䙁褁Q�褷��襂襅襉�䙥襢覀覉覐覟覰覷觖觘觫䚡觱觳觽觿䚯訑訔�訡訵訾詅詍詘誮誐誷誾諗諼Q�謊謅謍謜謟謭譃䜌譑譞譶譿讁讋讔讕讜讞谹��谽�豅豇豏豔  豗豩豭豳Q貓貒貙䝤貛貤賖賕賙�賰賱�贉贎赬趄趕趦跆跈跙跬踌䟽跽踆Q踔踖踡踢踧�䠖踶踹蹋蹔蹢蹬蹭蹯躘躞躮躳躵躶躻�	軑軔䡎軹輀輈輗輫轀轊轘Q辤辴辶辶�
迁迆﨤迊迍迓迕迠迱迵迻适逌逷�遃遄遝�!Q邅邌邐阝邡䢵邰邶郃郈�郜郟�郶郲鄀郫郾郿鄄鄆鄘鄜鄞鄷鄹鄺酆酇酗酙酡酤酴酹醅醎醨醮醳醶釃釄釚Q釬釮鈁鈊鈖鈗�鈳鉂鉇鉊鉎鉑鉖鉙鉠鉡鉥鉧鉨�鉼鉽鉿銉銍銗銙銟銧銫Q�銲銿鋀鋆鋎鋐鋗鋙鋥鋧錑�(#鋷鋹鋻錂錍錕錝錞錧錩Q �!鍇鍑鍗鍚鍫鍱鍳鎡�"$鎈鎋鎏鎞鏵Q%�&鏱鏁鏇鏜鏢鏧鐉鐏鐖鐗鏻鐲鐴鐻鑅�')鑭鑯镸镹閆閌閍Q*閫閴�+闈�,.阬阳阴Q/阼陁陡�0隂�1隚3䧧隩隯隳隺隽䧺Q4雘雚雝䨄霔霣䨩霶靁靇靕靗靛�$靪�5�6鞖鞚鞞鞢鞱鞲鞾韌韑韔韘韙韡韱頄頍頎頔頖䪼8頣頲頳頥顇顦颫颭颰Q9颷颸颻颼颿飂飇飋飠�:飡飣飥飪飰飱飳餈䬻�;餖餗=餚餛餜Q>餱餲餳餺餻餼饀饁饆饍饎饜饟饠馣馦馹馽馿駃駉駔駙駞�?駰駹駼騊騑騖騚騠0&騱騶驄驌驘䯂骯䯊骷䯒骹�@髆髐髒髕䯨髜髠髥髩鬃鬌鬐鬒鬖鬜鬫鬳鬽䰠魋魣魥魫魬魳魶魷鮦鮬鮱BQC鮲鮸鮾鯇鯳鯘鯝鯧鯪鯫鯯鯮�D鯺�E鯷G鰖鰘鰙鰚鰝鰢鰧鰩鰪QH鰱鰶鰷鱅鱜�I鱉鱊�J鱔鱘鱛鱝鱟鱩鱪鱫鱭鱮鱰鱲鱵鱺�'鳦鳲鴋鴂L鴑鴗鴘QM䳄�N鴲䳑鵂鵊鵟鵢�O鵩鵫Q鵳鵶鵷鵾鶄鶍鶙鶡鶿鶵鶹鶽鷃鷇鷉鷖鷚鷟鷠鷣鷴䴇鸊鸂鸍鸙鸜鸝鹻QR麀麅麛麨�S麽�T黟黧黮黿鼂䵷鼃鼗鼙鼯鼷鼺鼽齁齅齆齓齕齘V齝QW齩�X齭齰齵�Y	@8)�T�\	�
d�
l�t�|��� �! #�$(&�'0)�*l�*◆□■△▲▽▼※〒→←↑↓〓'"-~〳〴〵〻〼ヿゟ∈∋⊆⊇⊂⊃∪∩⊄⊅⊊⊋∉∅⌅⌆∧∨¬⇒⇔∀∃⊕⊖⊗∥∦⦅⦆〘〙〖〗∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬≢≃≅≈≶≷↔ʼn♯♭♪†‡¶♮♫♬♩◯+▷▶◁◀↗↘↖↙⇄⇨⇦⇧⇩⤴⤵0123456789⦿◉〽﹆﹅◦•ABCDEFGHIJKLMNOPQRSTUVWXYZ∓ℵℏ㏋ℓ℧abcdefghijklmnopqrstuvwxyz゠–⧺⧻�,ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをんゔゕゖ	@ .ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ♤♠♢♦♡♥♧♣αβγδεζηθικλμνξοπρστυφχψως⓵⓶⓷⓸⓹⓺⓻⓼⓽⓾☖☗〠☎☀☁☂☃♨▱ㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹ	ㇺㇻㇼㇽㇾㇿ�/АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ⎾⎿⏀⏁⏂⏃⏄⏅⏆⏇⏈⏉⏊⏋⏌абвгдеёжзийклмнопрстуфхцчшщъыьэюяヷヸヹヺ⋚⋛⅓⅔⅕✓⌘␣⏎1─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿	◐◑◒◓‼⁇⁈⁉ǍǎǐḾḿǸǹǑǒǔǖǘǚǜ��2€ ¡¤¦©ª«­®¯²³·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿĀĪŪĒŌāīūēō�3Ą˘ŁĽŚŠŞŤŹŽŻą˛łľśˇšşťź˝žżŔĂĹĆČĘĚĎŃŇŐŘŮŰŢŕăĺćčęěďđńňőřůűţ˙ĈĜĤĴŜŬĉĝĥĵŝŭɱʋɾʃʒɬɮɹʈɖɳɽʂʐɻɭɟɲʝʎɡŋɰʁħʕt5ʔɦʘǂɓɗʄɠƓœŒɨʉɘɵəɜɞɐɯʊɤʌɔɑɒʍɥʢʡɕʑɺɧɚ	ǽὰάὲέ͡ˈˌːˑ̆‿̋́̄̀̏̌̂˥˦˧˨˩̥̬̹̜̟̠̩̯̈̽˞̴̤̰̼̝̞̘̙̪̺̻̃̚,�6❶❷❸❹❺❻❼❽❾❿⓫⓬⓭⓮⓯⓰⓱⓲⓳⓴ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅺⅻⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ㋐㋑㋒㋓㋔㋕㋖㋗㋘㋙㋚㋛㋜㋝㋞㋟㋠㋡㋢㋣㋺㋩㋥㋭㋬	⁑⁂�T8①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪ㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡Ⅻ	㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼∮∟⊿❖☞��9俱�㐂丨丯丰亍仡份仿伃伋你佈佉佖佟佪佬佾侊侔侗侮俉俠倁倂倎倘倧倮偀倻偁傔僌僲僐僦僧儆儃儋儞儵兊免兕兗㒵冝凃凊凞凢凮刁㓛刓刕剉剗剡劓勈勉勌勐勖勛勤勰勻匀匇匜卑卡卣卽厓厝厲吒吧呍咜呫呴呿咈咖咡�:咩哆哿唎唫唵啐啞喁喆喎喝喭嗎嘆嘈嘎嘻噉噶噦器噯噱噲嚙嚞嚩嚬嚳囉囊圊Q�圡圯圳圴坰坷坼垜﨏��垸埇埈埏埤埭埵埶埿堉塚塡塤塀塼墉增墨墩��壒壎壔壚壠壩夌虁奝奭妋妒妤姃姒姝娓娣婧婭婷婾媄媞媧嫄�嬙嬥剝�<蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕Q�孁孖孽宓寘寬尒尞尣尫㞍屢層屮��屺岏岟岣岪岺峋峐峒峴��㟢崍崧﨑嵆嵇嵓嵊嵭嶁嶠嶤嶧嶸巋吞>堯槇遙瑤凜熙噓巢帔帘幘幞庾廊廋廹开异弇弝弣弴弶弽彀彅彔彘彤彧彽徉徜徧徯徵德忉忞忡忩怍怔怘怳怵恇悔悝悞惋惔惕惝惸愜愫愰愷慨憍憎憼憹懲戢戾扃扖扚扯抅拄拖拼挊挘挹捃捥捼揥揭揵搐搔搢摹摑摠摭擎撾撿�?擄擊擐擷擻攢攩敏敧斝既昀昉昕昞昺昢昤昫昰昱昳曻晈晌�晙晚晡晥晳晷晸暍暑暠暲暻曆曈㬢曛曨曺朓朗朳杦杇杈杻极枓枘枛枻柹柀柗柼栁桒栝栬栱桛桲桵梅梣梥梲棈棐棨棭棰棱棼椊楉Q�椵楂楗楣楤楨榀﨔榥榭槏㮶A㯃槢槩槪槵槶樏樕��樻樾橅橐橖橛橫橳��檉檔檝檞檥櫤櫧㰏欄欛欞欬欵歆歖歠步歧歷殂殩殭殺每毖毗毿氅氐氳汙汜沪汴汶沅沆沘沜泻泆泔泠泫泮�洄洎洮洱洹洿浘浥海涂涇涉涔涪涬涿淄淖淚淛淝淼渚渴湄湜湞溫溱滁�B滇滎漐漚漢漪漯漳潑潙潞潡潢潾澈澌澍澔澠澧澶澼濇濊濹濰濵瀅瀆瀨灊灝灞灎灤灵炅炤炫炷烔烘烤焏焫焞焠焮焰煆煇煑煮煒煜煠煨凞熅熇熒燁熺燄燾爀爕牕牖㸿犍犛犾狀狻Q�猧猨猪獐獦獼玕玟玠玢玦玫珉珏珖珙珣珩D琇琊琚琛琢琦琨琪琫琬琮琯琰瑄瑆瑇瑋瑗瑢瑫瑭璆璇璉璘璜璟璣璐璦璨璩璵璿瓈瓉瓚瓿甁甗甯畯畹疒㽲痎痤瘀瘂瘈瘕瘖瘙瘞瘭瘵癃癋癤癥癭癯癱皁皛皝皞皦皪皶盅盌盎盔盦盱盼眊眙眴眶睆睍睎睜睟睢睺瞀瞔瞪矠砭���E硃硎硏硑硨确碑碰��碭磤磲礀磷礜礮礱礴社祉祅祆祈祐祖祜祝神祥祹禍禎福禘禱禸秈秊�秔秞秫秭稃穀稹穝穭突窅窠Q�窳窻竎竫竽笒笭笻筇筎筠筭筯筲箞節篗篙簁簱簞簠簳簶䉤��籙籭籹粏粔粠粼糕糙糝紇紈紓紝紣紱G絁絈絓絜絺綃綋綠綦緂緌緖緣練縨縈縑縕繁繇繒繡纊纍罇署羑羗羿翎翛翟翬翮翺者耔耦耵耷耼胊胗胠胳脘腊腠腧腨腭膻臊臏臗臭䑓䑛艠艴��芎芡芣芤芩芮芷芾芿苆苕苽苾茀茁荢茢茭茺荃荇荑荕荽莆莒莘莧莩莿菀菇菏�H菑菡菪萁萆萊著葈葟葰葳蒅蒞蒯蒴蒺蓀蓂�蔲蔞蔣蔯蕙蕤﨟薭蕺薌薏薢薰藋藎藭蘒藿蘄蘅蘐Q�蘘蘩蘸虗虛虜虢䖝虬虵蚘蚸蛺蛼蛽蜋蝱螇螈螬螭螵䗪蟖蟬蠆蠊蠐蠔蠟袘袪裊裎��裵褜褐褘褙褚褧褰褲褹襀覔視觔觥觶訒訕$J訢訷詇詎詝詡詵詹誧諐諟諴諶諸謁謹譆譔譙譩讝豉豨賓賡賴賸賾贈贒贛趯跎跑跗踠踣踽蹰蹻��軀䡄軺輞輭輶轔�辦辵迤迨迮逈逭逸邈邕邗邙邛邢邳邾郄郅郇郗郝郞郯郴都鄔鄕鄖鄢鄣鄧鄯鄱鄴鄽酈酛醃醞醬醱醼釗釻釤�K釥釭釱鈇鈐鈸鈹鈺鈼鉀鉃鉏鉸銈鋂鋋鋌鋓鋠鋿錄錟錡錥鍈鍉鍊鍤鍥鍪鍰鎛鎣鎺鏆鏞鏟鐄鏽鐳鑊鑣鑫鑱鑲閎閟閦閩閬閶閽闋闐闓䦰闚闞陘隄隆隝隤隥雒雞難雩雯霳霻靍靎靏靚靮靳鞕鞮鞺韁韉韞韛韴響頊頞頫頰頻顒顓顖,M顗顙顚類顥顬颺飈飧饘馞騂騃騤騭騮騸驊驎驒骶髁髃髎髖髹鬂鬈鬠䰗鬭魞魹魦魲魵鮄鮊鮏鮞鮧鯁鯎鯥鯸鯽鰀鰣鱁鱏鱐鱓鱣鱥鱷鴝鴞鵃鵇鵒鵣鵰鵼鶊鶖鷀鶬鶼鷗Q�鷧鸇鸕鹼麞麤麬麯麴麵黃黑鼐鼹齗龐龔龗龢姸屛幷瘦繫�N+�e�,.�/�j1�2�3l5�6L8�9�:x<�=|np�qs�tv�wy�z |�}(��0���8���@�ĉH�̌P�ԏX�ܒ`��h��p���?T�؟\��d��l��t���|������������� ���(���0���8���@���H���P���X���`�A�BD�EG�HJ�K$M�N,P�4P	��������������������������������������������������Q������������������������������������������������	������������������������������������������������������������������������������������������������������������������������������������������� R������������������������������������������������������������	���������������������������������������������������������������������������������������������������������������������S,S������������������������������������������	����������������������������������������������������������������������������������������������������������������������������������������������(T�	���������������������������������������������������4U	������������������[�U	�����������������������������������������������������������������������������������������������������������������������������������U������������������������������������	��V	�����������������������������������������������������������������������������������������������������������������������������������������!�V��������������������������������	�����������������������������������������c�W,U�|X�|X	��������������������������������X	����������	�X	��������KY	����� Y��	���������������������������������������8Y	���������������Y	����������S�Y	����Y��������	������������������������������������������������������Y	�����Z	������������[�Z	��������������Z	������Z��	��������![�X,U�XY0Y�Y�Y�Y�Y|Z�Z�Z�Z�Z [c([��������	�������������������������������������p[	�������������������������������������������������������������������������������������������������������������������������������[����������������������������������������	������������������������������������������������������������������������\��������������������������������������������������������������������������������������������������������������	��������)�]�[�\�]�^,Uk�^��������������	��������������ͿТ�������У������ʺ�����ξ�����������Ф��������������Х�����Ц��ð��ЧШ��^������Щǵ�����	���Ƿ����˳�����Ъ��Ы��������������֦����������������������������_��	ЬЭλͽ��Я�������в�������������������������где˴ж��������������μ���зий�����1D`����о���м	н������лкʩ�������¾п��������������������������������������������������������Ǥ���������s�`�����������	������������������Ȳ�����������������������������������ȼ��������������������������a���	�����â����������������������ͤ������������������;��������դ�����������������������������ʻ���������������������������db	�����������������������������������������������������������������������������ե����������η��������������������98c��������¥��������	�������������������������������¯���������������������������������������ɶ�����������������{�c,U�_<`�`�a\b0c�c�d��d������	��������������������������������������������������������������������������������������������������������������������d�����������	��������������������������������������������������������������������������������¦�������A�e����	�������������˵��������������������������������������������������������������ѣ�����������������tf���	Ѥ�����������ѡѢ���Ư������������������ѥ���ν������Ѧ������ѩ���ѧ�����������ѨѪ���������Ѭ���ѫ���������$g��Ѯѯ�����	���������ѭ�����������������ѲѱѰ��������ѳ��������������Ѵ���������ͥ�����������������������Ѷ������ѵѸѷѹ �gѺ�����������������������Ѽ���������	ѻ���ѽ����������������Ѿ�����������Ȭ��ϻ����ʼ¶��ŵ�����I �h��	�������������������������������������������������������������̽������������������������������������������������� li	���������������ο������������������������������������������������������������������������������ȡ��� Dj���������������ʬ����	��������������������������������Ƚ���������������������������������������!k	�������§������������������˶���������������������������������������������������������������Q!�k���	�����������έ���������������������������������������������������������Ңң��������ϫҥ�����������������Ҥ������!hl���Ҧ	�����ļ���ͦ��������ҧ�����������ư���Ҩ��̳��������ҩ��ҭ�����Ҫ�����ҫ����������������������Ү���ү������Ұұ�������!4m���������	��Ҳҳ���������ҵҷҶ������Ҹ���������ҹ������������������Һ�����������������������һ���Ҽ���ҽ���Ҿɤ�������������ƿ"nҿ�������	��������Ⱦ����������´������ñ��������������������������������������������¨������������������Y"�n	���������������������������������������������������������������������������������������������֛"�o���	�������������ͧ��ȿ�������������������������������������������������������á�������������������������������"Tp	�����������������Ʊ̾���������������������������������������������������������������ʭ������#(q��	Ϥ����������������������������������������������������������������̣�������������̿���a#�q�����	������������������������������������������������ӣ��������������ӡ�������Ӿ��������������������ӥ��Ӥ����#|r����Ӣ	�����������������Ӧ�����ӯӧӨ����������ӭӬ���ů���Ӯ���ӫ�������#Ds������	������������������������ө��Ӫ�����������Ӵͣ�����Ӻ������ӹӰ�����������'$�sӱ���	��Ӷ�����������ӳ�������������ӷӸ���������ӵӻ���������Ӳ��������������i$\tӽ����������	����������ӿ������������������������Ӽ�������������������������������������������$�t	�������������ԧ������������������������������������������������������������������$�u	���ò�����������������������������������������������������������������������������������/% v��������������	���������������������������������������������������������������������ʮ�����ȸq%�v��	���������������������������������������������ǹ�������������������������������������������%Tw��������	�����������������������������������������������������������������������������������������������������%�w����������	���ԡ����Ԣ���ԣ�������Ԥ���Ԧԥ������Ԩ��������������������ԩ�����������������������������Ԫԫԭ���������7&�xԮ	����������˷������Ԭԯ�������Գ��������ó������԰�����������������������������������������������Դy&�y	��������ԲԵ�����Զ���������������������������Է�������Թ���������Ժ���ԻԸ������&,zԱ	ԼԽ����������������Կ�Ծ�����Ǹ��������������������������������������������������������������&�z��	Ʋ��������������������������������������������������������������������������������?'`{ʽ��	��������������������������������ȹ�����������������������Ŷ��������������������'�{������	������������������������������������������������������������������������ʯ��������������'�|	�������������������������������������������������������������������������������������������������������(4}	�������������������������������ͼ������¿����������̴�������������ŷ�������������������������������������G(�}	��������������������������������������������������������������å�������ʳ����������������ա������������(�~	բǡ����ǥ������ի����������������̯֬գ���զ��������˸��������������է�������������������(|	���������ը������������������������լխժ����������������������թ��ɱ������������������������
)������	�����ղ���������հ������̼ճձ���կ��������ծ�������������������շո��O)��մϬ	��������������ն��������������չ�����������պյ���������������̻�)H�	�����������������ջɲ������������������������������������������ռ�ս����)��	��տ�����������վ�������������������������������������������������*8�������	����������������������������������������������������W*�������	��������������������������¸��������������������������¹��������֣�������������������ƙ* ������	��������������������������������������������������������������������ͨ���������������������������������������������������*̃��������������̩��	������������������������������������������������������ǫ����������������������������������+��	���������������º�������Ƴ��������������������������������������������������������������������Ǣ_+�����	������������֢֡���Ÿ���������°����������������������֤���֥�������������֧֨�������������+D�	���������֩�����֪���֫���������������������������̨֭�������������ֱ֯�����ְֳ֮�+��	ֲִ������������ֵ���ƽ����ֶֹֻ����������������ָ��ַ%,��	��������ּ������������ֽ��־�����������������������������������������g,��	����������������������������������ֿ����������������������������������������������,��	��������������������ֺ����������������������������������������������������������������,�	��������������������������������������������������������������������̦��������������ç��--�����	��������������������������ġ������������������������������������Ģ���������˹���o-H���	����������������������������������������������Ȩ��ʾ�������������������������ʿǯ������������ͩ����-����ģ	�������������������Ź�������������������������������������������������������-��	���������ϭ�������������������������ספץ���ף������קצע���רש���ת׭׫׬׮����ׯ����Ƕװ�5.<�	�����ױϮ���������ײ�׵Сб������׶��Ĥ��׷ʦ������������������������������������׸������׹���׿��������ĥ�����׺���ɫ��������w.����׻	���������׼��׽���׾�������������������״׳�������������ɧ�����ɷĦ�������������������������������������������.�������������	���������Χ���������������������������������������������������������������������ħ���Ű�����.��	�����ɬ��������������Ǧ�������������������˺˻����������������������������������������ح��������ǰ�����������������=/|��elfg�g�hdi<j�j�k`l,mn�n�oLp q�qtr<s�sTt�t�uv�vLw�w�x|y$z�zX{�{�|,}�}�~t���@���0����ă��x�<�����x����@�܊��4���܍��t�8�@�	�����������������������������������������������������������������������������������/L���������	����������������������������������������������������������������������©���������������/�	�����ء�����������ا���������إ��������أؤ����آ��������ͪ�������������ئ���Ǻ������������جذ�����ة�����خ���0��	��������د����������������������ث������ر������������������تب�������������ؽ�����ظ���صض�����عؼ������E0t�ط�����غ	ش�����������ؾؿ�����������������س���������������������ػ�������������������������������������������04�	�������������������������ز������������������������������������θ����������������������������������0��������ͫ������	�����������������������������������������������ʰ���ƴ����������������������������������1�������������	�������������������������������������������������������������������Ĩ���������������M1l�����	����������������������������������������١�����٢��������������٣���٤��٥٦٧������������˼�1���٨���������	���������������٩��������������ʧ��������٬���٪٭٫���ٮ���ʱ���������������ٯ���ٲ���1ܗ��	ٰٷ��ٱ����������������ٳٴٸ��ٵ������ȴ����������ڭ����������������ٻ����������2��	�����ôپ��������������ټ��ٺ����ٶ������ٹ���������������������������������������������������ٽU24�	������������������������������ĩ���������������������������������������������������2�	���������������ª����������������������������Ľ�������������������������������������������������DZ����������2����	����������������������������������������������������Ϋ��õ��������������������������������������������3@������	·��������������������������������ͬ������������������������������������������������]3�	��������»�������������������������������������������������������������������������؟3��	���������������������Ŧ��������������������������������������������������34�	����������������������������Dz������Ƶ���������ű��������������������������ڥ����������#4��	��ڧ���ڣڤ�����������������������ڢٿ������ڦڡګڬŧڮ��������ک�����������گ���ڨڳڲ���ڱ���ڴ���ڶ�����e4X�ڵ���	���ڹ���������������������ڷ������ڸ�����������ڻں�������ڼڰ��������ڽھ�ڿ������������������4�	��������������������������������������������������������������������Ũ�����������4̟	����������ʸ�������������������������������������������������������������������������������������+5d�	���������ι���������������²������������������������������ö�������������������������������������m5����	�������������������������������������������������¡�����¢�£�¤�¥���¦�����§�¨�©�ª���«���¬�­�®�������°�¯��ۦ�5С�±���������²�³	���´���µ�·���¶���¸�¹�º�»�¼�������½�¾�����������������������������������������������������������5�������	��������������������������������������������������Ī������������������˽���ۢ���������36x�����������ۡ	������������������ۣ��ۤ���������ۥۧ���ۨ���������۩������۪۫��������¿��������u6(���	����������ͭ�����۬�����Ŀۭϯ���˾���īۮ�������ۯ۰��̤�����۲������۴۷۶������۳�6ؤ	۵��۸�������������¼��������ۻ����۹«ۺ����ۼ۽���á���â���ã��ۿ�������ä���å���æ������6��	�ç�è���۾�����é�ê���ë�ì���í���î�ï���ð����������������ñ�ò�ó�����ô���������õ�ö�÷;7L��ù���ú�û��ü��	�ý�þɢ����˿���ÿ����������ͮ�����������������������������������������������ø������}7��	�����������������������������������������������������������������������������׿7������������������	���������������������������������������������ɰ������������������������������������������8P�	���������������������������������������������������������������������������������������������C8�	����ܲ�������������ġ�Ģ��ģܡܣ�Ĥܧ��ĥê�Ħ�ħ��ܫ�ܨ�Ĩܢ�ĩ�Ī�ī�Ĭ�ĭ��ܬ�Į�į���İ�ıܪ���IJ�ij�Ĵ�8ĩ���	ܦ���ĵ��Ķ�ķ̺��������ĸ�Ĺܥ�ĺ�Ļ�ļ��ܯ����ܱ�ܰܩ�ܭܮܿ�Ľ�ľ���Ŀܤ��ܻ��ܽ���8��	���������������ܸ�����ܾ�����ܵ����������������������������ܷ�����ܺ�������������ܼ��ܴܶܳ������ϰ��ܹ���	9@��������	������������ϱ���������������������������������������������������������������K9�	�������������������������������������������������������������������������������������9�������������	���������������������ɸ����������������������������������š�����Ţ������ţî�Ť�ť�9<�	���Ŧ�ŧ����Ũ�ũ���Ū�ū�Ŭ�ŭ�Ů�ů�����Ű�������ű��Ų�ų�Ŵ���ŵ���Ŷ��:�����ŷ	�Ÿ��Ź�ź�Ż�ż�����Žݡ�ž���ſ����������ݬ���ݨ�����������ݧ���ݦݣ���������S:��	��ݥݤ���������������ݪϦ���������ݭ��������ݩݫ������ȧݮ������������ݲݯ�����ܕ:$�	��������ݰ��������������������ݳݴ�����������ݶ�������������������������������ݸݷݺ�������������:��	ݽ���ݼݾ��������÷ݿ����������������������������������������������������������ơ��;X���	�Ƣ�����ƣ���������������Ƥ���ƥ���Ʀ�Ƨ�ƨ�Ʃ���ƪ�ƫ�����Ƭ�ƭ�Ʈ���Ư�������������ư�Ʊ�������Ʋ�Ƴ��[;���	�ƴ�Ƶ�����ƶ���Ʒ�����������Ƹ��ƹ�����ƺ�ƻ�Ƽ�ƽ�����ƾ���ƿ��������;ȱ	�������������������������̱�����������������������������������������������ɹ��������������;T������	������������������������������������������������Ƕ���������������������������������������!<�	������������������������������������������������������������������������ʨ�ޡ��������c<��	���������������������������ˡ���ޤ�ǡޢ�Ǣ��ǣˢ����ť�Ǥ���ǥޥ�Ǧ�ǧ�Ǩޣ����ǩ���Ǫ�<H�	�ǫ�Ǭ�ǭ��ް�Ǯ�ǯ�ǰޯ�DZ��ެ�Dz��ƶަ���dz�Ǵ�ǵ����ީ�Ƿ�Ǹ�ǹ��ޮޭިޫ�Ǻ���ǻު���Ǽ�<��	ή�����ǽ޶޴���Ǿ�ǿ��ޱ޳���������ϲ����������������޵���)=��	���޺�����Ͱ޷������޲���޸����������������������������޾���������������k=���	�������޿�������������������������������������������ø�����������������������������������ʥ�����޻��ź���=�����	�����������޽����޼�����������������������������������¬����������������������������=`�	��������������̫����������������������ù���������ȡ�Ȣͯ�ȣ���������Ȥ���ȥ�Ȧ����1>��	��Ȯ�ȧ�����Ȩ�����ȩί�����Ȫ�����ȫ���Ȭ�ȭ���Ȯ���ȯ����Ů�Ȱ���ȱs>���Ȳ�ȳ���ȴ����	�ȵ�ȶ���ȷ����ȸ�ȹ�Ⱥ�������������Ȼ��ȼ�Ƚ��ũߣ��Ⱦ�ȿ������>0�	��ɺ������������������ϳ��ߢ�����������������������������̡���������������������������ߡ��>̹	���������������������߯������ߪ������������������߳������߬Ĭߩ����ߦߥ߮������9?t�ߨߧ߭�����	ߤ���������������߰���߱�����������������������߶ߵ߷������������ߺ��������ߴ����߸��{?����߲ǻ	��߹������߾߼߿�ɡ���ɢ߻��Ǩ޹�ɣ�ɤ��߽���ɥ�߫�ɦ���ɧ���ɨ�ɩ���?�����l�,����d��ԗ��,����8�����,���P��ğ\��ȡ��p� �Ф��D����H������8�����4��|����P����L����@�������X����(�Ĺl�����D�L��ɪ��	�ɫ�ɬ�ɭ�����ɮ�������ɯ�������������ɰ�ɱ������ɲ�����ɳ�ɴ�ɵ�ɶ���?X�	�ɷ�ɸ�ɹ�ɺ�ɻ�ɼ������ɽ�ɾ���ɿ�������������������������������������A@�	���������ϧ����������������������������������ú������������������������@d�	����������������������������������������ˣ������@�	������������������������������ʲ��������̵������������������������A@�	���������������������������������������������������ʡ�������ʢ��IA���ʣ	���ʤ�ʥ�����ʦ���ʧ������ʨ�ʩ���ʪ�ʫ�����ʬ�ʭǮ�ʮ�ʯ���ʰ��ʱ�A<��ʲ�ʳ	dz�ʴ���ʵ�ʶ�����ʷ����ʸ���ʹ�ʺ�ʻ���������������ʼ�����ʽ��A���ʾ	��ʿ������������������������������������������������������������BT�����������	��������������������ĭ�������������������������̶�����ϴ��������ʪ�����������������������������������QB�����	���������������������������������������������������B��	������������������������������������������������������ì������ϵ���ˡ�B(�	�ˢ�ˣ�ˤ�˥���˦�˧�˨�˩�����˪�˫�������ˬ���˭�ˮ���˯�˰���ǭ�˱�����˲�˳���˴ͱͲ�˵�˶�˷����C��	�˸�����˹�����˺�˻�˼���˽�˾�˿�������������������������������������������������������YCt�������	�����������Ψ��������������������������������������������������������������������������������C���	��������������������������������������������������������������������������������������̡�C���̢�̣	���̤����̥ΰ�̦�̧�̨�̩��̪���̫�̬�̭�̮�̯�̰�̱�̲�̳�̴�̵����������̶����D\��̷��	�̸�̹�̺�̻�̼�̽�̾�̿�������������������������������������������������������������aD��������	�������������������������������������������������������������������������������������������������D��	������������������������������������ɻ�����������������������������������DD�	�����������͡���͢�ͣ����ż����ͤ�ͥ���ͦ����ͧ���ͨ�ͩ����ͪ��ͳ�����ͫ��Ҵ�ͬĮ����ͭ�ͮ�ͯ'E���Ͱ	�ͱ���Ͳ�ͳ��������ʹ���͵Ȫ�Ͷ���ͷα�������͸�͹ȫ�ͺɭ�ά����������ͻ���ͼ�����������ͽ�;�Ϳ���������iE��	����������������ɥ��������������������������������������������������������������������ϫE����������������������	�����������������������������������������Ρ������������������������������������������E,���������������	�������������������������������������������������������������������������������������Ρ���΢/F���Τ�Υ���Φ�Χ�Ψ�������Ω�Σ�Ϊ��	��Ϋ����ά��έ���ή�ί������ΰ�α�β��γ��δ��ȯ�����ɴqF����ε	�Ū�ζ�������η�θ�����ι����κ�λ�μ�ν�ξ�ο�������������������������������������F`�	����������������������������������������ݹ��������������������������������ľ���������������F������	��������������������������������������������̲��������������������������������������į��������7G����	����������������������������������������������ϡ�����Ϣ���ϣ���Ϥ�ϥ�Ϧ�ϧ�Ϩ���ϩ�Ϫ����yG���ϫ	�Ϭ���ϭ�Ϯ�����ϯ�ϰ�ϱ�ϲ���ϳ���ϴ���ϵ�϶�����Ϸ�ϸ���ϹƷ�Ϻ�����������ϻ���G(�	�ϼ���Ͻ���Ͼ�Ͽ��������̷���������������������������������û������������������������G��	���������������������������������������������������������ˤ������������?HT�	�������������������������������������������������β�������ȣ����������H��	�������������������������������������������������������������������������С��Т��У�HL�	�����Ф�Х�Ц���Ч�Ш����Щ�Ъ��Ы�Ь��Ю�Я�а�б�Э�в����г����д�е��з�и�й�к��лI���ж��	�м��н���о����п����������������������������������������������������GI�����	������������������������ʹ���������������������������Ǫ�����ɼ���������������������������I0�����	Ͻ������������ʡ���������������������������������������������ǩ����������������������I���������	���������������������������������ѡ��Ѣ�����ѣ������Ѥ�ѥ��Ѧ���ѧ�Ѩ���ѩ
J����	�Ѫ�ѫ�Ѭ���ѭ�Ѯ��ѯ�����Ѱ̭�ѱɣ�������Ѳ���ѳ�����Ѵ�ѵ�Ѷ�ѷ���Ѹ�ѹ�����Ѻ�ѻ���Ѽ�ѽ�Ѿ����������OJ8���	�����ѿ�������������������������������������������������������������������������������������������J��������������������	���������������������������������������������������������������������������J��	������������������Ω��������������������������ε������������Ƹ��������è��������ü����������ѿ���������������KL�	��������������������ū�������������������������������ҡ��Ң�����ң�ҤWK��ҥ�Ҧ	�ɮ�ҧȦ������Ҩȵ������ҩ����Ҫ�ҫ��Ҭ��ҭ�Ү��ү��Ұ���ұ�Ҳ���ҳ��K��	�Ҵ�����ҵ���Ҷ��ҷ�Ҹ���̧�ҹ������Һ���һ��Ҽ���ҽý�Ҿ���ҿ��Ȣ���������Ȥ�������������Kd�������	�����������������������������������������������������϶������������������������������L���������������	�������������������������������������������������������������������������������������������_L����	�����������������������������������������������ӡ�Ӣ�����ӣ�Ӥ���ӥ�Ӧ�ӧ�Ө�����ө�Ӫ�ӫ���L|�	�������Ӭ�ӭʴ��̰�Ӯ��γ�ӯ����Ǵ���Ӱ���ӱ���������Ӳ�����������ӳ�������Ӵ�ӵ���Ӷ�ӷ�Ӹ�����ӹ�L,���	���Ӻ���ӻ�Ӽ�ӽ���Ӿ���ӿ������������������������ʵ������������������������������%M����	���������������������Ǽ���ɳ�����������������������ʶ�������������������������������������������������������gM����������������������	������������������������������������������������������������������������������Mh�	��������������������������������³������ԡ������Ԣ�ԣ�Ԥ���������������ԥ����Ԧ�ԧ���Ԩ�þ������M0�	�ԩ�Ԫ�ԫ�Ԭ�ԭ������Ԯ�ԯ�԰���������Ա���Բ������������Դ���Ե�Զ�����Է�Ը���Թ���Ժ����Ի�Լ�Խ�Ծ��-N���Գ��	�����Կ����������������������������������������������˥�������������������������������������oN��	���������������������������������������������������������������������������������������������������Np�	��������������������������Ż��������������������������N$�	�������������������5O��	�������������������������������������������������������ȳ�ա����������բ�գ�դwO���ե	����������զ��է��ը�թ�ժ��ի�լ��խ���ծ�կ����հ�����ձ�ղ����ճ����մ���յ�O���ն��	�շ�����ո�����չ�պ�������ջ�ռ�����ս�վ���տ������������������������������������O4�ܽ\�ܾ8���4���L���� ���l����T�����<�������$�����X����x� ���L���D�����(�����0�����D����\����t�$�����`�(�����h����,U��x�,�������Ϸ	���������������������������������������������������������������������������������������������������������������ÿ�����=P�����	���������������ʹ������������������������������İ�����������ϸ��P��	���������ȥ����Ͼȩ�������ɪ����������������������������������������������������P8�	����������������������������������˦��������������֡��֢�֣ƹ�֤���֥�֦�ǽ�֧Q��	���֨������̮����֩�֪�֫�֬����֭�֮�֯��ְ�ֱ��ֲ��ֳæǾ�ִı�ֵ�ֶ�EQ|�	�ַ��ָ�ֹ��ֺ������ֻ������ּ��ֽ�־���ֿ��������������������IJʢ�����Q����������������	����������������������������ɨ��������������������������������ǿ�Q���	���������������������������¡����������������������������������������������������������������������������������������RP�����������	������ڪ�������������а��������������������������������������������������������������MR$���	����������ס�ע�ף�פ�ץ�������צ�����ק���ר�����ש�������ת���������׫�������׬�׭���׮�R���ׯ�װ	�ױ�ײ�׳�״�׵�����׶�׷���׸�׹�׺���׻�׼�����׽�׾�׿������������������������������������˧���������������������������R��	������������������������������������������������������������������������������������Sd����������������������������	�����������������������������������������������������������������US��	���������������������������ؾ�����������������������ء�آ�S���أ	�ؤ�إ��ئ����ا��ب��ة�ت��ث�ج��ح�خ�د������ذ�ر��ز���س���������ش�ص�SL��ض��	���ط�ظ�������ع�غ�ػ���ؼ�������ؽ�����ؿ���������ɩ��������������������T��	�����ƺ����������˨�������������������������������������������]T��	�������������������Ϊ����������������������������������ơ�����������������������������Ǭ�������������������������T�	������������������������������������������������������������������������������T��������	����������������������̬���������١�٢�٣˩ϡ�٤�٥�٦�٧���٨�٪�٫��٬��#U`���	�٭�ٮ���ٯ�ٰ�ٱ�ٲ��̢��������ٳ�ٴ����ٵ�ٶ�ٷ�ٸ���ٹ�ٺ�ٻ����ټ�٩�ٽ�پ¢�ٿ����eU����	�����������������������������������������������������������������Ƣ�������������������������קU������	����������������������������������������������������������������������������������������������������UX�	��������������������������������ƣ�������������������������ڡ+V$��ڢ	��ڣ�ڤ�������ڥ�ڦ�ڧ�ڨ�ک�ݱݢ�ڪ�ګ���ڬ�ڭ�ڮ���گ�ڰ�����ڱ�ڲ�ڳ�ڴ�ڵ��mV���ڶ����ڷ	�ڸ�������ڹ�ں�����ڻ�ڼ�ڽ�ھ��κ�ڿ������������������������������������������������VP�	���������������������������������������������������������������������������������������V�������	�����������������������������������������������������Ⱥ��������������������������������3W����	˪��������������������������������������������̪�����������ۡ���ۢ�ۣ�ۤ�ۥ�����ۦ�ۧ���ۨ�۩�۪��uW4��۫	�۬�ۭ��Ϲ��ۮ������ۯ��۰���۱��۲�۳������۴�۵�۶�ij��۷���W�	��۸�۹�ۺ�ۻ�ۼ�۽�۾�ۿ��ͻ�����������������������������������������������������������W������	�������������������������������������������������������������������������������;X �	��������������������������������������������������������������������������������ܡ���ܢ}X����ܣ���ܤ���ܥ��	�ܦ�ܧ�ܨ�ܩ��ާ�ܪ�ܫ�����ܬ�ܭ���ܮ���ܯ���ܰ�����ܱ�ܲ�������ܳɽ�ܴ�����ܵ�������ܶ�ܷ�������Xt��ܸ����	��������µ���ܹ���ܺ�ܻ�ܼ���ܽ�ܾ�����ܿ��������������������������Y<�������������	���������������΢�����������͵����������������Σ������������������������������������CY�	����������ʣ���������������˫����������������������������������������������������������������Y|�����������������	��������������������������������������������������������ݡ�ݢ�ݣ����Y$�	���ʤ����ݤ����ݥ���ݦ��ݧ�ݨ�������ݩ�ݪ�ݫ�ݬ��ݭ��������ݮ����ݯ�ݰ�ݱ�ݲ��ݳ��	Z��	���ݴ�ݵ�ݶ�ݷ�ݸ������ݹ����ݺ�ݻ�ݼ�ݽ�ݾ��ݿ��������KZ���	����������������Ƥ�����������������������������������������������ˬ�����������������������������������֍Z�����	���������������������������������ɾ���������������������������������������������������������������������������������Z����	��������������������ǧ������������������Ͷ����������������������������������ï�����ޡ�ޢ���ޣ���ޤĴ[�	���ޥ���ަ���ާ�ި�ީ���������ު���ޫ�ެ�ޭ��ޮ����ĵ�ޯ���ް��������������ޱ͡���޲�����޳�޴�޵�������޶��޷S[h������	ƥ�޸�޹���޿�޺�������޻�������������޼���޽�޾���������ɵ�����������������[4	�������������������������������������������������������������������������������������[�����	�������������������������������������������\�	ë��������������[\�	����Ʀ�������˭�����������������������������������������������������Ю����������ɿ�������\	�����ߡ���ߢ�����ߣ�ߤ�ߥ����ߦ�ߧ�ߨ�����������ߩ��������������������������������ߪ�߫��Ž�����\�����Ϩ�����߬�߭�����߮±�߯	�����߰����߲�߱�߳�������ߴ�����ߵ���������߶���߷���߸�߹�ߺ�߻�߼�߽���������߾�߿!]�	����������£����������������������������c]d	����������������������������������ʥ]�	��������Ķ�����������������������������������������������­��������������������]	���	�������������������������������������������������������������������������ϩ���������ķ�����������)^�		�����������������Ƨ����������������������������������������k^<
�����	������������������������������������������������������������^�
	������������������������������������������������������������������������������^�������	��������������������������������������ž��������������������������������������1_(���	�������������������������������������������������������������������������������������������������͢���������s_�����������������	����Ų�����������������������������������ᬵ_�
	����������������������ҡ�������ä�������������������é�_������	������������������������������������������������ų���������������������������������9`���0���t����H������\����D��������X�����P����H����,��x����l�4��t�������`,�|�,U��\�	�	4
�
x ��
�HP�������ƨ�������	���������Ʃ�������������������������®¤���Ϣ���������������������������������������ɯ����{`\	���������������ͷ�������������ƻã��������½����������������������Ŭ���������������������������������`8����������	��������������������͸����������������������������ˮ����������������š����`	����������������Ϻ�����������������������������������͹����������Aa���	������������������������������������������������Ţ���������������������������������҃a\	����������������������������������������������������������������������������������������������a�	��������������������������������������������Ȱ�������������������������������������������������������������b���������	������������Τ������������������ţ����������������������������������������������������������Ibh����	���������������������������������������������������������������������������������������������������������b@���	������Ŵ��������������������������������������������������������ȭ������������������������������������������������������b���	��Ƽ��������������������������ĸ���������������������������������������c���������	�������������������˯�������������������������������������������������������������������������Qcp���	�������������������������������������������������������������������ϣ���Ͽ����������������c0	��������������������������������������������������������������������������������������c�������	�����������������������������������������������������������d�	���������������������������ŭ���������������������������������������������������Yd(	����������������������������������������ƪ������������������������������������������d�	������������������������������������������������������������������������������������dd	������e	Ĺ������ae ��	����������������������������������������������������ȶ���������������������������������泣e@	��������������������������������Ʈ���������������������������e	������������������������������������������������������������'f�������	����������������������������������������������������������ƫ�Φ����������������if�	��������������δ���������������������������������������������������������������������������������Ȼ�f�����	ͺ�������������������������������������Υ������������ʷ��������������f� ��	�������������������������������������������̸��������Ϫ��۱������/g,!	�����������������������������������������������������������������������������������������qg�!�����	������������������������������������������������������������������������������������������������׳g�"	�����������������������������������������������������������������������������ǣ�������������������������������gD#	��ĺ������������������������������������������������������������Ƭ������������������������7h�#	�����������������������������������ſ����������������������yh�$	��������������������������ûhX%	�������������������������������������������Ҭݻ��������������˰���h�%	��������������������������������������������������������������������������������������������������?i(&�������	�������������������������������������������������i�&	�������������������������������������������������i\'	�����������������������������������������������������������������������������j�'	�������������������������������������������������������ƭ����������������Gjx(��������������	����������������������������������������������������j)	�����������������������������������������������j�)�����	������������������������������������������������������������������ȱ����ɦ���������������������
k�)�������������	��������������������������������������������ݵ������������������Ok�*	������̥�������������������������������������������������������ϥ������������������ёkh+���	����������������������������������ʫ���������������������������������������������������������������������k,����	����������������������������������������������������������������������������������l�,��	����������������������������������������������������������������������������������������������Wl�-	������������í��������������������������������������������������������������������������������������ؙlP.	Ļ�����ȷ���������˱�����������l�.	�������ƾ�����������������������������������������������������������������������m@/	�������������������������������������̹�������������˲���������������_m�/	���������������������������������������������������������췡m�0	������������������������������������������������������������������������m1	����������������������������������������%n�1	�������������������gn2�����������������	�������������������ϼ���������������������������������������������������������������������n42	���������������������������������������������������������������������������������������n�2	����������Ť������������������������������������������������������ɡ��������-o�3	����������������������������������������������������������������������������������������������������ooP4	ζ�����������������������������������������o50�T��`8��h(�� �\�,U8����x $!�!�"<#�#�$P%�% &�&T'�'p()|)�)�*`+,�,x-H.�.8/�/x01�1�1,2�2�3H45X5�o`55p|X	������������������������������������������������������������������������������������������������������������������������Wph6������������������������������������������������������������	���������������������������������������������������������������ph7����������������������������������������������������������������	�pl8	����q�8,U`7d8�89_q9�X�q49�49�q49R$S T$U,U�U�U�V�V�WtX�X�Xh[�^�dD�P���TX6`6,9<9D9L9�qT9	����������������������������������������r�9	����������������������������s:	�����������`s`:	������������������������������������������s�:��	���������������������������������������������s�:	������������&tP;	����������������������������������������htx;X:,U|:�:Y0YH;�Yp;�Y�;|Z�Z�Z�Z�Z [�t�;��������	���������������������������������������t(<	������.u�<	����������pu�<	�����������������������u�<	�������������������u=	������������6vD=	����xvl=�<�\�]�^,U�<�<=<=d=|=�v�=����о���м	н������лкʩ�������¾п��������������������������������������������������������Ǥ�����������v�=,U�_<`�`|>\b0c�c�d��>���	Ѥ�����������ѡѢ���Ư������������������ѥ���ν������Ѧ������ѩ���ѧ�����������ѨѪ�����������Ѭ���ѫ��������>w�>	���������������ο��������������������������������������������������������������������������������ȡ���wt?���������	��Ҳ��ҳ���������ҵҷҶ������Ҹ���������ҹ������������������Һ�������������������������һ���Ҽ���ҽ���Ҿɤ�������������ƿ�w4@�����	��������������������������������������������������ӣ��������������ӡ�������Ӿ��������������������ӥ��Ӥ���xAԮ	����������˷������Ԭԯ���������Գ��������ó������԰�����������������������������������������������ԴFx�A������	��������������������������������������������������������������������������ʯ��������������x�B��������������̩��	������������������������������������������������������ǫ�������������������������������������x4C	ֲִ������������ֵ���ƽ����ֶֹֻ������������������ָ��ַyD	������������������������������������ֿ����������������������������������������������Ny|D������������	���������Χ���������������������������������������������������������������������ħ�����Ű�����yE�elfgl?�hdi<j,@�k`l,mnA�oLp q�qtr�A�sTt�t�uv�vLw�w�x|y�B�zX{�{�|,C�}�~t���@���0����ă��D<����tDx�E��@�܊��4���܍���E8��E	�����ء�������������ا���������إ��������أؤ����آ��������ͪ�������������ئ���Ǻ������������جذ�����ة�����خ����y�Fط�����غ	ش�����������ؾؿ�����������������س�����������������������ػ������������������������������������������z�G	����������������������������������������������������������������������Ũ����������Vz�H���	�������������������������������������������������¡�����¢�£�¤�¥���¦�����§�¨�©�ª���«���¬�­�®�������°�¯�����ۦ�zI�±���������²�³	���´���µ�·���¶���¸�¹�º�»�¼�������½�¾��������������������������������������������������������������z�I	���������������������������������������������������������������������������������{�J	���Ŧ�ŧ����Ũ�ũ���Ū�ū�Ŭ�ŭ�Ů�ů�����Ű�������ű��Ų�ų����Ŵ���ŵ���Ŷ��^{`K	��ݥݤ���������������ݪϦ���������ݭ��������ݩݫ���������ȧݮ������������ݲݯ�����ܠ{�K��	�������޿�������������������������������������������ø��������������������������������������ʥ��������޻��ź����{|L����G,�xH��d��ԗ��,����8�����,���P��ğI�ȡ�I�J �Ф��D����XK�����8�����4���K�tLP����L����@�������@M���(�Ĺl�����D�HM�ɪ��	�ɫ�ɬ�ɭ�����ɮ�������ɯ�������������ɰ�ɱ���������ɲ�����ɳ�ɴ�ɵ�ɶ��$|TN	���������ϧ����������������������������������ú�������������������������f|�N	��������������͡���͢�ͣ����ż����ͤ�ͥ���ͦ����ͧ���ͨ�ͩ����ͪ��ͳ�����ͫ��Ҵ�ͬĮ����ͭ�ͮ�ͯ�|hO��ε����Ū�ζ�����	��η�θ�����ι����κ�λ�μ����ν�ξ�ο�������������������������������������|0P�ж��	�м��н���о����п�������������������������������������������������������,}�P	������������������Ω��������������������������ε������������Ƹ�����������è��������ü����������ѿ���������������n}�Q	��������������������������������³������ԡ���������Ԣ�ԣ�Ԥ���������������ԥ����Ԧ�ԧ���Ԩ�þ������}PR	�ԩ�Ԫ�ԫ�Ԭ�ԭ������Ԯ�ԯ�԰������������Ա���Բ������������Դ���Ե�Զ�����Է�Ը���Թ���Ժ����Ի�Լ�Խ�Ծ���} S�N\�`O8���4���L���� ���l����T�����<���(P��$�����X��P��x� ���L���D�����xQ����0�����D�HR��\����t�$�����`�(�S�Sh����,U��x�,����S�	���������������������������ؾ��������������������������ء�آ4~�T����	������������������������������������������������������������������������������������������������������v~tU	�����������������������������������������������������������������������������������ܡ���ܢ�~DV	���������������������������������������������������������������������������������������~�V����Ϩ�����߬�߭�����߮±�߯	�����߰����߲�߱�߳�������ߴ�����ߵ���������߶���߷���߸�߹�ߺ����߻�߼�߽���������߾�߿<�W	��������������������������������������~|X��0���t����H������\����lU�������X�����P�<V��H����,��x�����V4��t�������`,��W�,U��tX��X�	4
�
x ��
�H�X	����������������Ϻ��������������������������������������͹�����������Y��	���������������������������������������������������Ţ�����������������������������������tZ��	�������������������������������������������������������ȶ����������������������������������D�[��	�������������������������������������������̸��������Ϫ��۱������������[	���������������������������������������������������������������������������������������������Ȁ�\	��������������������������������������������������
�T]�����	��������������������������������������������������������������������ȱ����ɦ���������������������L��]	������̥�������������������������������������������������������ϥ��������������������ю��^	����������������������������������������������������������������������������������������Ё@_0�lZ[�`8��h(�� �\�,U8�[���x $!�\L]<#�#�$P%�% &�&T'�]p()|)�)�^`+8_�,x-H.�.8/�/x01�1�1,2�2�_H45X5�o�_���������������������������������������������������������������������������������������������������������������������������������`��������������������������������������������������������������������������������������������������������������������������������b��������������������������������������������������������������������������������������������������������������������������������c��������������������������������������������������������������������������������������������������������������������������������d��������������������������������������������������������������������������������������������������������������������������������(e��������������������������������������������������������������������������������������������������������������������������������4f��������������������������������������������������������������������������������������������������������������������������������@g��������������������������������������������������������������������������������������������������������������������������������Lh��������������������������������������������������������������������������������������������������������������������������������Xi��������������������������������������������������������������������������������������������������������������������������������dj��������������������������������������������������������������������������������������������������������������������������������pk��������������������������������������������������������������������������������������������������������������������������������|l���������������������������������������������������������������������������������������������������������������������������������m���������������������������������������������������������������������������������������������������������������������������������n�����������������������������������������������������������������������������������������������������������������������������������������������������o�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������p�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������q�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������r�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������s�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������t�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������u�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������v������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������y������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������z������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������${������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0|������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<}������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������H~������������������������������������������������������������������������	�T�acd e,f8gDhPi\jhktl�m�n�o�p�q�r�s�t�u�v�wyz{(|4}@~L�,UT��	��Ŗ�L�	���؂`�	�����������������������������������������������������������������������������������������t�	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	��������������������������������������������������������������\��	����������������,UX�l������88��@�:$S T$U,U�U�U�V�V�WtX�X�X <�=�>�FLN�T�Y�``6D�d�<9D9L9"�l�	��������������	����[��	��������������������������������������������������������������������������������(�����	��������������߅Ԅ	��������������������������������������������������������������������������������������������������!����������������������������������	��c�܅	����������0�	�����������������������������������������sP�X:,UH���Y0YH;�Yp;�Y�;|Z�Z�Z�Z�Z [�t�����	�������������ͿТ����У������ʺ��ξ����Ф��Х��Ц��ð��ЧШ��	Щǵ��Ƿ����˳��Ъ��Ы��������֦�����)�����	ЬЭλͽ��Я����в����������������где˴ж��������������μзий��k������о	мн������лкʩ����¾п����������������������������Ǥ����������	�����������Ȳ�����������ȼ��������������	��â����������ͤ��������;��������դ��������ʻ��������1���	����������������������������������ե�������η��s���	��¥����������������¯������������������������ɶ������������l�,U������x��d����	��������������������������������������������������������� ���	����������������������������¦�������9����	�˵�������������ѣ�������{��	Ѥ��ѡѢƯ������ѥ��νѦѩѧ��ѨѪ��Ѭѫ����X���Ѯѯ	��ѭ��ѲѱѰ��ѳ��Ѵͥ��ѶѵѸѷѹ����Ѻ��	�����������������Ѽ������ѻѽ����Ѿ�������Ȭ��ϻ����ʼ¶��ŵ��A����	���������������������������������������̽������������������������������������	���������ο��������������������������������������ȡ��Ŋ`���	����ʬ��������������������Ƚ��������������������������	����§������������˶���������������������������I�`�	�����έ����������������������Ңң����ϫҥ��Ҥ����؏��Ҧ	��ļͦ��ҧ��ưҨ��̳����ҩ��ҭ��Ҫ��ҫ����ҮүҰұ������͋P������	��Ҳ��ҳҵҷҶҸ������ҹ������Һ����һҼҽҾɤ����ƿ�ؐҿ��	����������Ⱦ����´������ñ����������������������¨������������Q�\�	�����������������������������������������	����������ͧ��ȿ���������������������������á���������������������������ՌP�	��������������Ʊ̾���������������������������������ʭ����������	Ϥ����������������������̣����������̿Y�|���	�������������������ӣ����ӡ�Ӿ�����ӥ��Ӥ��ܓ����Ӣ	�����Ӧ��ӯӧӨ����ӭӬůӮӫ��ݍP�	������ө��Ӫ��Ӵͣ��ӺӹӰ�����ӱ	��Ӷ��ӳ����ӷӸӵӻӲ�����a���ӽ	����������ӿ���Ӽ�����������������������������D�	����ԧ�����������������������	ò��������������������������'���	��������������������ʮ��ȸi�@���	������������ǹ����������������������	��������������������������������Ȗ�	���ԡ�Ԣԣ����ԤԦԥԨ��ԩ��������Ԫԫԭ/�4�Ԯ	����˷Ԭԯ������Գ����ó԰��Դq���	��ԲԵ��ԶԷ����ԹԺ��ԻԸ���Ա	ԼԽ��������Կ�Ծ��Ǹ������������������0���	Ʋ��������������������������������7���ʽ��	��������������ȹ��������Ŷ����������y��	����������������������ʯ������������L�	��������������������������������������������������������������	������������ͼ������¿����̴����ŷ�������������������?�$�	�������������������������������������å�ʳ����ա������	բǡ����ǥի����̯֬գզ����˸��է��������Ò(�	ը������������լխժ����թ��ɱ���������	����ղհ̼ճձկ��ծ����շո��G��մϬ	��ն��չ��պյ̻��0�	��ջɲռ�ս˓h�	��տ��վ�������������������
���	����������������������O�؜��	����������������¸��������������������¹��֣�������������	�����������������������������������������ͨ��������������������Ӕ����	��������̩����������������������������������ǫ�������������������������$�	���������������º����Ƴ�������������������������������ǢW�Ȟ���	������������֢֡���Ÿ°�������֤֥����֧֨��X�	֩��֪֫��������̨֭����ֱ֯����ְֳ֮ە̟	ֲִֵƽ����ֶֹֻ������ָ��ַ�(�	��ּ������ֽ��־�������������_�x�	��������������ֿ��������������Ƞ	��������ֺ������������������������	����������������������������������������̦��������ç��%�`�	�����������ġ������������������Ģ������˹g�ܡ��	�������������������Ȩ��ʾ����ʿǯ������������ͩ�����@�	ģ�������������Ź������������������������	������ϭ����ספץף���קצערשת׭׫׬׮����ׯ����Ƕװ�-� �	��ױϮײ�׵Сб���׶��Ĥ��׷ʦ��������������׸׹׿����ĥ��׺ɫ��o���	׻��׼��׽׾�������״׳����ɧ����ɷĦ��������������������H�������������	������Χ������������������������������ħ��Ű�����̤	��ɬ��Ǧ����˺˻������������ح��ǰ��������5�\����P������X�؎X�ЏH�АT��H��t�ԓH����<����8�|���,����(����D������ ���ܛ(�`���М������P�ğ �p����X�ԡ8������@�ĤT�����	��������������������������������������������w�̦	��������������������������������������������©��������4�	��ء������ا���إ��أؤ�آ��ͪ����ئǺ������جذ��ة��خ����	��د����ث��ر��������تب�������ؽ����ظصض��عؼ=�@�ط��	غش��ؾؿ����س��������ػ����������������������	�������������ز���������������������������θ��������������������0�	ͫ�������������������ʰƴ�������������������	������������������������Ĩ���������������E�$��	������������������������١��٢��٣٤��٥٦٧������˼������٨	���������٩��ʧ��٬٪٭٫ٮʱ������ٯٲ��ɛ���	ٰٷ��ٱ����ٳٴٸ��ٵ������ȴ������ڭ����ٻ�������	��ôپ�����������ټ��ٺ����ٶٹ���������������������������������ٽM���	������������ĩ������������������������	ª����������Ľ�������������������DZќ���	����������������������Ϋ��õ���������������������������<���	·�����������ͬ��������������������U���	��»�����������������������������	���Ŧ������������ٝd�	�������Dz��Ƶű��������������ڥ����	��ڧڣڤ����ڢٿڦڡګڬŧڮ��ک��گڨڳڲڱڴڶ��]���ڵ	ڹڷڸ��ڻں�ڼڰ��ڽھ�ڿ����������l�	����������������������������������������Ũ�����̯	����ʸ����������������������������������������������#�8�	������ι������²���������������ö����������������e�����	���������������������������������������������������������ۦ��(�	���������������������������������������������������������	�����������������������Ī��������˽ۢ�����+�0�	�ۡ���ۣ��ۤ���ۥۧۨ۩������۪۫����������������m�����	����ͭ����۬��Ŀۭϯ˾īۮ��ۯ۰��̤�����۲����۴۷۶����۳���	۵۸�������¼����ۻ��۹«ۺ����ۼ۽����������ۿ������������������	���۾�����������������������������������������3�<�����	���ɢ����˿��������ͮ�������������������������������u���	����������������������������������������0�����������	����������������������������ɰ�������������	���������������������������������������������������;��	��ܲ�����������ܡܣܧ�ê��ܫ�ܨܢ��ܬ��ܪ��}�x����	ܦ���̺�������ܥ��ܯ����ܱ�ܰܩ�ܭܮܿ��ܤܻܽ�����	���ܸ��ܾ��ܵ������������ܷ��ܺ����ܼ��ܴܶܳϰ��ܹ�h�	����������ϱ��������������������������C��	�������������������������������������������������@�	�����������������ɸ������������������������������îǣ��	��������������������������������	�,���	�����ݡ�����ݬݨ��ݧݦݣK���	��ݥݤݪϦݭ��ݩݫ����ȧݮݲݯ��й	��ݰ��ݳݴ��ݶ����������ݸݷݺ������Ϥ�	ݽݼݾ��÷ݿ�������������������������������������t���	��������������������������������������������������S����	���������������������������������`�	����̱��������������ɹ������ץ�������	������������������������������������������	������������������������������������ʨ�ޡ��������[�h�	�����������ˡ�ޤ��ޢ�ˢ����ť��ޥޣ��������	����ްޯ��ެ��ƶަ������ީ��ޮޭިޫ��ު��ߦT�	ή����޶޴��ޱ޳����ϲ������������޵!���	޺����Ͱ޷޲޸��������������޾���c����	����޿������������������ø�������������������ʥ����޻��ź����d�	��������޽����޼����������������������������¬������������������	��̫��������ù����ͯ��������������)�|��	��Ȯ��������ί������������������Ů����k�п	��������������������������ũߣ������0�	��ɺ����ϳ��ߢ��������̡������ߡ����	������߯ߪ������߳߬Ĭߩ����ߦߥ߮1��ߨߧ߭	��ߤ��߰߱��߶ߵ߷ߺ��ߴ��߸s�@����߲ǻ	߹߾߼߿��߻��Ǩ޹��߽���߫������������,���8���(�������x����ܬ4����\����d�į0��� ���(������4���(�����p��`�ܷ8���$�x�ȹ�l��X����`��L����\��t�ȿ(����8������	��������������������������������������������	�������������������9�p�	��ϧ������������ú�������������{���	�������������ˣ������	����������ʲ��̵��������,�	�����������������������������������A�h�	�������������������Ǯ�������	��dz��������������������������������ū�	�������������������������t��	��������ĭ�������̶��ϴ��ʪ��������I�������	���������������������0�	�����������������������������ì��ϵ��ͬ��	���������������������ǭ������ͱͲ�������	������������������������������Q�@�	��Ψ����������������������	������������������������������������խ��	�������ΰ�������������������������$�	����������������������������������Y�|�	������������������	������ɻ�������������ݮ�	����������������ż�����������������ͳ������ҴĮ����`�	�����������Ȫ��α������ȫɭ�ά�������������������������a���	����������ɥ����������������������������������������	�������������������������Ρ�����������������������	��������������������������'�`�	��������������������������ȯ�����ɴi����	���Ū�����������������������������������	����������������ݹ��������������ľ��������	����������������̲�����������į��/����	��������������������������q�`�	������������������Ʒ����������������	��������̷������������û������������	��������������������ˤ������7�H�	��������β����ȣ������y���	����������������������������������������	���������������������,�	����������������������?�x����	������ʹ������������Ǫ��ɼ�������������	Ͻ������ʡ����������ǩ���������ó(�����	��������������������������������	�������̭ɣ������������������������������G�����	��������������������������������������������P�	��������������������������������������˴��	������������Ω����������������ε������������Ƹ����è����ü����ѿ������
��	��������������ū���������������O���	�ɮȦ�����ȵ��������������������	����������̧������������ý��Ȣ�Ȥӵ�����	��������������������϶�����������	����������������������������������W�D���	������������������������������������	������ʴ��̰��γ����Ǵ����������������������������������۶����	�������������ʵ�������������������t���	���������Ǽɳ�����������ʶ�������������������������_���	��������������������������������������������h�	�����³��������������������������������þ��������	�������������������������������������������%�h�	���������������������������˥�������������������g���	���������������������������������������������������H�	�������������Ż����������	����-��	����������������������ȳ���������o�$�	������������������������������������	��������������������������������������h�����$�`�����l���(�x���8������t����X���x���X��������X�����@�����$�p��� �����H�������x���<�����l���`���`���@����,U����X�`���Ϸ	������������������������������������ÿ��5�l�	������������ʹ���������������İ��������ϸ��w���	������ȥ�Ͼȩ����ɪ��������������������������������<�	�����������������˦��������ƹ���ǽ����	��������̮���������æǾı�=��	����������������������IJʢ�����`��	������������ɨ��������������ǿ�����	���������¡�����������������������������������0�	����������ڪ����������а�����������������������������������E�����	�����������������������������������������,�	��������������������������˧��������ɼ��	������������������������������������������	�������������������������������M�T��	���������������������������	���������������������ѽ�	�������������������������������ɩ������������d�	��ƺ����˨�������������������������U���	������Ϊ�������ơ��������������Ǭ���������(�	����������������������������������پ��	����������������̬��������˩ϡ����������	����̢���������������¢��]�8���	����������������������Ƣ������������	�����������������������������������	���������ƣ������������#�`�	��������ݱݢ����������e���	������������κ�����������������	���������������������������D�	�����������������������Ⱥ�����������������+�����	˪��������������������̪������������m���	��Ϲ����������������ij�����L�	�ͻ�������������	����������������3���	������������������������u�,���	��������ާ��������������������ɽ������������������|�	������������µ������������������������������	���������΢��͵����������Σ��������������������;�P�	����ʣ������˫���������������}���	���������������������������	���ʤ������������������������������p��	������������C�����	�������Ƥ�������������������ˬ��������������������	��������������ɾ��������������������������������������	�����������ǧ������Ͷ������������������������ï��������Ĵ	��	���������������������ĵ�����������������͡���������������K���������	ƥ�������������������������������ɵ���������	������������������������������������	����������������	ë��S�4�	�Ʀ�˭�����������Ю��ɿ����P�	������������������������������������������������������Ž������������Ϩ����	����±������������������������������������������@�	������£������������������[���	�������������������������	��Ķ��������­������D�	����������������������������ϩķ�����!�x�	������Ƨ��������c���	�����������������������	�����������������������l�	�������������������ž��������������)���	��������������������������������������͢�������k�$�	������������Ų��������������������	����������ҡ�������ä�����������é����	�����������������������ų���������������1�8���4����X���(���$�����L����\��� �����0�����X�����<�����D�����$�t���H����h��������������,�,UH���8����<�p����d��������0���������	ƨ�������Ʃ�������������������®¤���Ϣ������������ɯ�s���	���������ͷ����������ƻã�����½������������Ŭ����������������������H��������	�����͸��ˮ������š����	����Ϻ�����������͹����9�P�	�������Ţ����{���	���������������������������������������������	��������������Ȱ����������������������(�����	����������Τ��������������ţ������������������������������������A���	���������������������������������������	Ŵ�����������������������ȭ����������������l���	��Ƽ������������ĸ�����������	���˯����������������������������������I�$�	�����������������������������ϣ���Ͽ�������	������������������������������	��������������������H�	�����ŭ�������������Q���	�������ƪ�����������������	����������������������������������������� �	�����	ĹY�����	������������������������������������ȶ��������������������	����������������Ʈ����������(�	����������������l���	�����������������������������������ƫ�Φ����a���	��δ�������������������������������������������Ȼ��$�����	ͺ���������������������Υ��������ʷ���������������	�����������������������̸����Ϫ��۱��������'�4�	���������������������������������������������������������i���	��������������������������������������0�	��������������ǣ����������������	��ĺ������������������������������Ƭ����������/��	�����������������ſ������������q�D�	���������	�������������Ҭݻ��������˰�����	����������������������������7�	�������������y��	�����������������������������	��������������������������������������������	������������������ƭ����?�`��	�����������������������������������	���������������	����������������������ȱ�ɦ�������	�������������ݵ����G��	������̥���������ϥ��������	������ʫ�����������������������(�	������������������������������������
����	��������������������������������������������������O��	����í����������������X	Ļ��ȷ������˱�������	����ƾ����������������������������	�������������̹���˲�����W� 	������������������|	���������������������	�������	����������_�,	������������ϼ�������������������������������P	�������������������������������������������������������	����Ť����������ɡ��%�4	����������������������������g�l	ζ��������@���H����� �x��d������@�����x���,U�� �d������,���(����<�����x��X��|� |�P��t�$H�,d���o�	�����	��؂�	�����������������������������������������������������������������		�������������������������������������������������������������������������������������������������������������������������������		���������������
,U�	�	�
��8�
��
� �,Ū�ԅ(��X�X���=�Ħ�d����`6�
<9D9L9��	��������������������������������������������������������������h�����������������������������������������������������������������������������������������������������������������������������������������������������	������������������������������������������������$��	��������������������������������������������������������������������������������������f��
	����P	������������������������������d	����������������������������������������������������������������������,��	����������������������������������������n�H	�������������������������������������������	�������������������������������������������������������	��4����������������������	v��	�������	�����������,U��<�	��������������������������������������~�	������������x	����	����������������D��	���������������������������������������������������������	��������������������\	��������������
����	����������������������������������������������������L��	����������������������������8	����������������������������|	������	��������T��	���������������������������������	����	����X	���������������������������������������������������������������������������������������������l	������������������\�4����	��������������������������h��������	�����������������	����������������������������������"��	����@	����������������������d�T	�������	�����	����*��p��,U�T��0t���Pd�;,|Z�Z`��8L����l����������	����������������������������������������������������������������T����������������������������������������������	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	��������������������������������2��	������������������������������t�L	�������������������������������������������	�����������������������������������������������������	������:�l	�����������|��	�����־��	����������	��������B��	��Ȅ��	��������������	�������,	���������J�D	��ʌ�`	�����t	�����������	���R��	������������������	�����	�������������������	������Z����	��������0	�����L	������ �`	���b�x	�����ߤ��	������������	�����������(��	������j��	�����������������	����������	�����0�8	�����r�P	������h	����	���8�����	��z��	�������	���������	������@��	���������Ȃ�	�����,	�������@��\��,UD�<��d=<=d=�����$<Xl�����(DXp�����0H`x�����$8PH�X	���4 	����H 	���\ 	����p 	��������� 	����P�� 	��������Ȓ�� 	��������� 	����� 	�������!	������X�!	����4!	��������H!	�������������`!	����������`��!	������������!	������!	���������&��!	�����!	�����h�"	�������"	���R�0"	��������D"	������.�\"	���p�t"	������"	������"	�����"	�����6��"	���x��"	�����"	������#	������>�#	�����4#	����H#	�������������\#	�����F�|#	���������#	�����#	���Y��#��������	�����������Ϳ���Т�������У������ʺ��ξ�������Ф��������������Х��Ц��ð��ЧШ��#���	Щǵ��������Ƿ����˳�����Ъ��Ы�����������֦��������N��$��	ЬЭλͽ��Я������в�������������������где˴ж��������������μзий��������������$����о���м	н���������лкʩ�������¾п����������������������������������������Ǥ������%�����	�������������Ȳ��������������ȼ�����������������\&	��â��������������ͤ��������������;��������դ�������������������ʻ����������������������V��&	��������������������������������������������ե����������η��������'	��¥��������������������������¯����������������������������������ɶ���������(@ T h ,U| � � � � � !,!@!X!x!�!�!�!�!�!"("<"T"l"�"�"�"�"�"�"�"#,#@#T#t#�#�#�#�#�$�$�%T&�&|'(�(��(�������	����������������������������������������������������������������������������^�t)���������	��������������������������������������������¦��������� *�	����˵�������������������������������������ѣ���������������*	Ѥ��������ѡѢ��Ư��������������ѥ���νѦ���ѩѧ�������ѨѪ�����Ѭѫ��$� +��Ѯѯ����	�����ѭ����ѲѱѰ�����ѳ�������Ѵͥ����ѶѵѸѷѹf��+Ѻ��	�����������������Ѽ������ѻѽ�����������Ѿ�����Ȭ��ϻ�������ʼ¶��ŵ�������,,��	���������������������������������������������������̽��������������������������������������,	�������������ο������������������������������������������������ȡ��,��-�����������	ʬ����������������������������Ƚ������������������������n�,.	����§�����������������˶���������������������������������������������.	�����������έ�����������������������������Ңң�����ϫҥ��������Ҥ���X/	Ҧ��ļͦ���������ҧ�������ư��Ҩ��̳����ҩ��ҭ��Ҫ��ҫ������Үү���Ұұ��������4��/�����	��Ҳ��ҳ������ҵҷҶҸ������ҹ��������Һ�����һҼҽ���Ҿɤ�������ƿv��0ҿ�������	��������Ⱦ����´������ñ������������������������������¨�������������������(1	����������������������������������������������������1���	����������ͧ��ȿ�������������������������������á���������������������������������<�D2	��������������Ʊ̾��������������������������������������������ʭ������~��2��	Ϥ�����������������������������������������̣������������̿�����3��	�����������������������������������ӣ�������ӡ�������Ӿ�����������ӥ��Ӥ���4����Ӣ����	������Ӧ��ӯӧӨ�������ӭӬ������ů���Ӯӫ��D�4������	�����������ө��Ӫ����Ӵͣ��Ӻ��ӹӰ������45ӱ���	��Ӷ��������ӳ������ӷӸӵӻ��������Ӳ�������������5ӽ���������	���������ӿ��������Ӽ��������������������������������
6	����ԧ�������������������������������������������L�6	ò����������������������������������������������������Ď�6���	�������������������������������������������ʮ����ȸ�h7��	�������������������������������ǹ��������������������������7��������	�����������������������������������������������������TT8�	���ԡ���Ԣԣ����Ԥ���ԦԥԨ�������ԩ�����������������Ԫԫԭ��8Ԯ	����������˷������Ԭԯ����Գ��ó���԰�����������������������Դ�h9	��ԲԵ��Զ�����������Է����Թ���Ժ���ԻԸ���9Ա	ԼԽ�������������Կ�Ծ�����Ǹ��������������������������������������������\@:��	Ʋ������������������������������������������������������:ʽ��	��������������������ȹ���������������Ŷ�������������P;	���������������������������������������������������ʯ����������"�;	�������������������������������������������������������������������������������������dD<	���������������������������ͼ������¿����̴�������ŷ������������������������<	����������������������������������������å���ʳ����������ա�������=	բǡ����ǥ��ի������̯֬գ���զ����˸�����է���������*$>	��ը��������������������լխժ������������������թ��ɱ�����������l�>	����ղ������հ�����̼ճձկ����ծ����������շո���?մϬ	��ն�����չ�������պյ���������̻��?	�������ջɲ����������������������������ռ�ս���2�?	��տ����վ����������������������������������������t4@���	����������������������������������������@����	����������������������¸�����������������������¹�����֣������������������@�����	�������������������������������������������������ͨ�����������������������:�A���	��������̩����������������������������������������ǫ������������������������������|8B	������������������º����Ƴ�������������������������������������������Ǣ��B���	������������֢֡���Ÿ��°������������������������֤֥�������֧֨������C	������֩����֪֫������������������������̨֭����������ֱ֯����ְֳ֮B0D	ֲִ���������ֵƽ����ֶֹֻ������ָ��ַ��D	�����ּ�����������ֽ��־�����������������������������������E	�������������������ֿ��������������������	�E	������������ֺ����������������������������������������������J	�E	����������������������������������������������������������̦��������ç���	pF���	������������������ġ�������������������������Ģ������˹����	G��	���������������������������Ȩ��ʾ����������������ʿǯ��������������ͩ���
�G	�������������������������������������������������R
0H	���������ϭ��������ס���פץף���קצערשת׭׫׬׮����ׯ�����Ƕ���װ��
�H����ױϮ	����ײ�׵Сб������׶��Ĥ��׷ʦ��������������������׸׹׿���ĥ���׺ɫ����
TI�׻	����׼��׽׾���������״׳��������ɧ���ɷĦ�������������������������J������������	�������Χ��������������������������������������������ħ�������Ű����Z�J	�����ɬ����������Ǧ�������������˺˻�������������������������ح�����ǰ������������lK*�*+�+$,�,�-$.�.P/�/�0 1�1<2�2�34�4,5�56�6�6`7�7L8�8`9�98:�:H;�;<<�<�=>�>?|?�?,@�@�@�A0B�B�C(D�DE�E�EhFG�G(H�HLIJ�JdKLL	����������������������������������������������������������������M	�����������������������������������������������©��������� �M	��ء�����ا���إ�����أؤ�آ������ͪ����ئ���Ǻ������������جذ��ة��خ���b(N	��د���������ث����ر��������������تب����������ؽ�����ظ���صض����عؼ��Nط��	غش��ؾؿ�����������س��������������ػ�������������������������`O	�������������������ز������������������������������θ���������������������(
�O	ͫ�������������������������������ʰ���ƴ��������������������������j
�P	���������������������������������Ĩ�������������������
Q�	�������������������������١��٢����������٣٤��٥٦٧��������˼�
�Q��٨	�����������������٩��������ʧ������٬٪٭���٫���ٮ���ʱ��������������ٯٲ��0(R��	ٰٷ����ٱ����ٳٴٸ��ٵ���������ȴ�������ڭ����ٻ����r�R	����ôپ�����������ټ��ٺ����ٶ�����ٹ��������������������������������������ٽ�HS	�����������������������ĩ��������������������������������������S	��������ª�������������Ľ���������������������������DZ��8pT��	�������������������������������Ϋ��õ�����������������������������z�T��	·�����������������ͬ�������������������������������������������xU	�����»�������������������������������������������U	����Ŧ����������������������������@hV	�������������Dz���Ƶ���ű��������������ڥ�����V	��ڧ��ڣڤ�������������ڢٿ������ڦڡګڬŧڮ��������ک��گڨڳڲڱ��ڴ��ڶ������0Wڵ	���ڹ���������ڷڸ�������ڻں���ڼڰ�����ڽھ�ڿ���������W	�������������������������������������������������Ũ�������HTX	�������������ʸ����������������������������������������������������������������X	���������ι���������²������������������ö��������������������������pY��	���������������������������������������������������������������������������ۦ�Y	�������������������������������������������������������������������������������������������������P�Z�����	������������������������������Ī��������������˽���ۢ���������`[	�ۡ�������ۣ��ۤ�����ۥۧ��ۨ���۩������۪۫������������������[�����	�������ͭ��۬�������Ŀۭϯ���˾īۮ��ۯ۰��̤�����۲������۴۷۶����۳�\	۵۸�����������������¼�������ۻ�����۹«ۺ����ۼ۽����������ۿ�����������������������X$]	�����۾����������������������������������������������������������]����	���������ɢ����˿����������������ͮ���������������������������������������������d^	�����������������������������������������������������������������_����������������	����������������������������������������ɰ�������������������������`�_	�������������������������������������������������������������������������������������������8`	��������ܲ�����������������ܡܣ���ܧ����ê��ܫ�ܨ������ܢ���������ܬ���������ܪ���������`���	���ܦ��������̺�������ܥ��ܯ����ܱ�ܰܩ�ܭܮܿ����ܤܻ���ܽ��&�a	����������ܸ����ܾ��ܵ�������������������ܷ�����ܺ�������ܼ��ܴܶܳ���ϰ��ܹ���h,b������	���������ϱ���������������������������������������������������b�����	��������������������������������������������������������������������������������Xc	������������������������ɸ������������������������������������������������î�����.d	���������������������������������������������������������p�d��	������������������ݡ�����������������ݬ���ݨ��ݧݦݣ��� e	��ݥݤ������ݪϦ���ݭ��������ݩݫ����ȧݮ������������ݲݯ�����e	��ݰ��������������ݳݴ���������ݶ�����������������ݸݷݺ������6f	ݽ��ݼݾ�����÷ݿ����������������������������������������������������������x�f�����������	�����������������������������������������������������������4g��	�������������������������������������������������������g	��������������̱��������������������ɹ��������>Lh�����	������������������������������������������������������h	��������������������������������������������������������ʨ�ޡ���������<i	�������������������ˡ����ޤ���ޢ������ˢ����ť�����ޥ����������ޣ��������i���	�������ް��ޯ��ެ��ƶަ���������������ީ���������ޮ���ޭިޫ�������ު����F�j	ή������޶޴�����������ޱ޳������ϲ�������������޵�k��������	޺���������Ͱ���޷���޲��޸��������������������������޾�������k��	���������޿���������������������������������������ø��������������������ʥ�����޻��ź��l	��������޽����޼��������������������������������������¬�����������������������N�l	���������̫����������������������ù��������ͯ���������������dm�	��Ȯ����������ί��������������������������Ů������m	����������������������������������������ũߣ��������\n	��ɺ��������ϳ����ߢ����������������̡����������������ߡ�V�n	������������߯����ߪ��������������߳��߬Ĭߩ����ߦߥ߮�����loߨߧ߭	��ߤ������߰��߱������������߶ߵ߷����ߺ����ߴ����߸������o���߲ǻ	߹����������߾߼߿��������߻��Ǩ޹�����߽�����߫�������������|p�M N�NXO�O�PQ�Q R�R@S�ShT�TpU�U`V�V(W�WLX�XhY�Y�ZX[�[x\]�]\^_�_0`�`�a$b�bPc�c�de�ef�f,g�gDh�h4i�i|jk�kl�l\m�mTn�ndo�otpqq�����	���������������������������������������������������������^r	������������������������������������������������������������۠�r	��������ϧ�����������������������ú��������������������s	����������������������������������ˣ��$�s	��������������������������ʲ������̵������������������f�s	������������������������������������������������������Dt��	�������������������������������������Ǯ���������t	��dz������������������������������������������,0u��	������������������������������������n�u�	����������ĭ���������������̶��ϴ����ʪ����������������(v����	���������������������������������v��������	������������������������������ì�������ϵ��4w	�����������������������������������ǭ���������������ͱͲ����������v�w	��������������������������������������������������������x	��������Ψ���������������������������������������������������������������x��	��������������������������������������������������������< y	����������ΰ��������������������������������������������������~ �y�����	�������������������������������������������������������������� z	����������������������������������������������������������������!�z	������������������ɻ���������������������D!@{	������������������ż�����������������������ͳ������ҴĮ�������!�{��	�����������������Ȫ����α������ȫɭ�ά�����������������������������������������!`|	�������������ɥ�����������������������������������������������������
"$}���	���������������������������������������������Ρ�������������������������������������L"�}���������	����������������������������������������������������������������������"X~	����������������������������������������������������ȯ�����ɴ�"�~���	�Ū���������������������������������������������������������#�	��������������������������ݹ����������������������ľ�������T#,�	������������������������̲�������������������į���#Ȁ��	���������������������������������������������������#D���	��������������������������������Ʒ������������$��	��������̷��������������������������û��������������\$,�	�������������������������������������ˤ�������$��	�����������������������β������ȣ�����$�	�������������������������������������������������������������"%\�	����������������������������������������������������������d%�����	������������������������������������������%d����	�������������ʹ��������������������Ǫ�����ɼ�����������%Є����	Ͻ������ʡ��������������������������ǩ�������������������*&\��������	���������������������������������������������������l&���	�������������̭��ɣ�����������������������������������������&l���	���������������������������������������������������������������������&��	��������������������������������������������������������������2'��	������������Ω��������������������ε������������Ƹ������è����ü������ѿ��������t' �	������������������ū������������������������������������'Ј	����ɮ��Ȧ�������ȵ����������������������������������������������'\�	����������������̧���������������ý�����Ȣ����Ȥ���:(����	������������������������������������������϶���������|(������	������������������������������������������������������������(���	��������������������������������������������������������������������)��	������ʴ��̰����γ������Ǵ����������������������������������������������B)���	���������������������������ʵ�������������������������)����	�����������������Ǽɳ���������������ʶ��������������������������������������)@�����������������	����������������������������������������������*��	�����������������³�����������������������������������������������þ�����J*�����	�����������������������������������������������������������������*P�	��������������������������������������������������˥�����������������������*�	�������������������������������������������������������������������+|�	���������������������Ż����������������R+�	�������������+p�	����������������������������������������������ȳ����������������+��	���������������������������������������������,0�	�������������������������������������������������������������Z,���rs|s�s<t�t(u�u v�vw�wx�xy�yz�z8{�{X|}�}P~�~�$���<���$����T�؃\�ȄT��d�����ȈT���x��������8����H�؏t��h�,U��(���<�D���Ϸ�����������	��������������������������������������������������������������ÿ���,P�	���������������ʹ���������������������İ��������������ϸ���,�	������ȥ�Ͼȩ����ɪ��������������������������������������������� -l�	������������������������������˦���������������ƹ���������ǽb-�	��������̮�����������������������������æǾ���ı�����-|�	�����������������������������������IJʢ�����-�������������	�������������ɨ�������������������ǿ(.h���������	������������¡������������������������������������������������������j.�	�������������ڪ����������а�����������������������������������������������������.����	�����������������������������������������������������������������������������.4�	��������������������������������������������������������˧�����������������������0/̙	��������������������������������������������������������r/l��������������������	������������������������������������������/��	�����������������������������������������������/��	������������������������������������������������80������	����������������������������������������������������ɩ������������z0��	����ƺ��������˨�����������������������������������������0�	���������Ϊ���������������������������ơ�������������������Ǭ������������������0��	������������������������������������������������������@1(�������	��������������������̬������������������˩ϡ���������������������1����	�������̢��������������������������������������¢������1$���	����������������������������������������Ƣ�������������������2������	����������������������������������������������������������H20�	�������������������������������ƣ�����������������������2̠���	�������������������ݱݢ�����������������������������������2P������	����������������������κ����������������������������3ԡ	���������������������������������������������������������P3L�	�����������������������������������������Ⱥ���������������������������3����	˪����������������������������������������̪�������������������������������3L����	�����Ϲ���������������������������������ij������4ܣ	�����������ͻ���������������������������X4\�����	������������������������������������������������4��	���������������������������������������������������������4<���	�����������ާ�����������������������������ɽ����������������������5��	������������µ������������������������������������������`5H�������������	����΢�����������͵�������������Σ���������������������������5��	�������ʣ������˫���������������������������������5T�������������	��������������������������&6̧�����	�ʤ����������������������������������������������h6<��	��������������������������������������Ҫ6̨��	�������Ƥ��������������������������������ˬ������������������������6,�	������������������������ɾ�������������������������������������������.7ȩ	�����������ǧ���������Ͷ���������������������������ï������������Ĵp7\�	��������������������������ĵ�����������������͡���������������������7�������	ƥ����������������������������������������������ɵ����������7��	��������������������������������������������������68�����	������������������������������x8��	ë���������8�	����Ʀ������˭�������������������������Ю��������ɿ���8�	���������������������������������������������������������������������Ž����>9������Ϩ����	����±�������������������������������������������������������������9<�	������£���������������������������9ܮ	�����������������������:,�	�����Ķ����������������­����F:h�	����������������������������������������������ϩķ���������:��	������������Ƨ������������������������������������:(�	������������������������������������������;��	������������������������������������������N;���	�����������������������ž��������������������;�����	�����������������������������������������������������͢��������;����	���������������Ų���������������������<��	���������������ҡ�������ä�������������������éV<ܲ	������������������������������������������������ų���������������������������<H��d��t��`����,�ęd�����x���� ������(�ĠH�̡D���D�ԣT���4���@���L�ħ4�Ĩ$���T��|�����,U���4�Ԯ$�`��� �������x�Բ@�ܳ��������ƨ	������������Ʃ�������������������®¤���Ϣ�����������������ɯ��<�	���������������ͷ����������ƻã�����½�������������Ŭ��������������������=������������	�������������͸���������������ˮ��������������š��^=X�	����������������Ϻ�������������������������������͹��������������=����	������������������������������Ţ����������������������=l�	����������������������������������������������������������������������$>�	����������������������Ȱ����������������������������������������f>l�����	����������������Τ��������������ţ��������������������������������������������>�	��������������������������������������������������>����	�����Ŵ�������������������������������������������ȭ����������������������������,?���	��Ƽ������������������������ĸ����������������������n?�����	����������������˯��������������������������������������������?�	���������������������������������������������������ϣ���Ͽ����?��	�������������������������������������������������������4@�	��������������������������������������v@��	�����������ŭ����������������������������������@�	���������������������ƪ�����������������������@\�	������������������������������������������������������<AȽ	Ĺ������~A@���	�����������������������������������������������ȶ���������������������������������A\�	�������������������������Ʈ������������B�	������������������������������DBd�������	���������������������������������������ƫ�Φ�����B��	�������δ������������������������������������������������������������Ȼ����B<�����	ͺ����������������������������������Υ������������ʷ���������
C���	�����������������������������̸����Ϫ�����۱��������LC��	������������������������������������������������������������������������������C�	����������������������������������������������������������������C��	����������������������������������������ǣ�����������������D0�	��ĺ���������������������������������������������������������Ƭ������������������TD��	������������������������������ſ������������������DP�	��������������������������������D��	�����������������������������������������Ҭݻ�����������������˰��E�	��������������������������������������������������������������\E���������	��������������������������������E0�	������������������������������������������E��	�����������������������������������������������������������������"F��	�������������������������������������������ƭ������������dFh���	����������������������������������������������F��	����������������������FD�����	������������������������������������������������ȱ�ɦ��������*Gx�	������������������������������������������ݵ����������lG�	������̥����������������������������ϥ�����������������G��	����������ʫ����������������������������������������G����	�����������������������������������������������������������������������������2H����	����������������������������������������������������������������������������������������tH,�	���������í������������������������������������������������������������������������������H��	Ļ�����ȷ���������˱�����Ht�	�������ƾ���������������������������������������������:I��	����������������������������̹������������˲�������������������|I,�	�������������������������������������������������I����������	�������������������������������������������J4�	��������������������������BJ��	����������������J�������	�������������ϼ���������������������������������������������������J�	������������������������������������������������������������������K��	����������Ť�����������������������������ɡ�����JK<�	����������������������������������������������������������������K��	ζ��������������K$���P��d�طd���������������T���8���,UT��\���4�������(���H������(�����`���<�p�������$���l���$���,��������4����P��oX�	�������LX�	����x�	����RL��	���������������������������������������������������������������������L��������������������������������������������������������������������������������������������	�L4�	�������	����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,Up�����,�������89M �	��ZMX�	����������Ml�	����M��	��ƨ���	��� N��	���bN��	������	�������	������	����N�	����(�	����N<�	���R�P�	������(Od�	��ʊ�|�	��Ҁ���	���jO��	��٨���	���jO��	������	�������	���4��	�������O�	����O4�	�����H�d�,U��������������� �4�H�\�t���������������,�@�T�0P\�	�����rP��	��������޴P��	���������P�	�����8Q �	���zQ8�	���zQL�	������Q`�	����Qx�	������	��@R��	��ՂR��	����R��	������	�������	�����	���S�	���������HS,�	�����������ȊSH�	����Sh�	�����T|�	���PT��	���T��	�������,U�����0�D�X�p����������������$�@�`�t����������T��	����<�	�����P�	���PTd�	���Sx�	���U��	���XU��	��� N��	���R���	����U��	����������U��	���V�	������`V �	���4�8�,UH�\�p���������������0�D��VL�	����T��	���������V��	���&W��	���������������������hW��	�����������۪W�	����� �	���8�4�	�����H�	��zQ\�	����������Wp�	������	��������.X��	�����pX��	������X��	�������X��	�����	�����	��6Y,����	��xY@����	�YX�	���������Yl�	��6Y��,U���������,�@�T�h��������������$�8�P�d�����>Z��	�����	��͚��	������Z,�	��D�	�𳖂X�	���Zl�	��bN��	������	������	����[��	�����	�������	������F[��	���[�	���ZM(�,U�$�<�P�d�x�������������� �4��[<�	����\��	���M��	�򡖂��	����N\��	��PT��	��p���	�����	���\�	����\0�	���\D�	���]X�	��bNl�	����V]��	����]��	�������]��	���&W��	������^��	��4���	������	�������^^ �	������^<�	����X�	��؂l�	�������^��,U������������(�<�P�d�x�������������4�P�d�x���$_��	����f_�	����S$�	���S8�	���L�	���R`�p�`�	���R|�	���6Y��	�������	���jO��	�����ب_��	�������_��	���jO��	���PT�	�����$�	������,`8�	����P�	��Ė�d�	���Ux�	���jO����	���n`��	�������	����������`���0�,UD�X�l�t���������������0�H�\�p������������`��	��@RT�	������4ah�	���������va��	���a��	���N��	����������a��	�����<b��	������~b��	��•�	��֌�$�	���zQ8�	�������bL�	����d�	����Ux�	����S��	����a��	���Y���,U`�x�������������0�D�\�p���������c��	������Dc�	��Y�4�	����RH�	���U\�	����p�	���p���	����O��	��� N��	�������c��	�������c��	���������
d��	������������Ld�	�������d,�	�������dD�	����\\�	���������ep�	������Te��	��׸a��	���bN��	������	������e��	���N��	��� N�	���&W �	���U4�,U,�@�T�h�|������������$�<�T�h���������������,�@��eH�	������f��	����a��	���R���	�������	��ֺ��	����\$�	��ݸa8�	����RL�	���&W`�	���XUt�	������\f��	��ݤN��	�������	���������f��	����\��,U��������0�D�X�l��������������f��	������"gD�	����R\�	�����p�	���a��	���p���	���Y���	���bN��	������dg��	���&W��T�,Uh�|��������������g��X��4��������L����<�,��g4����
H\�,U@��x�̄�ԅ(��XL, l)MrH��P��X`6P�h�D9L9hp���	

 !"#$%&'()*+,-./0123456789:;<=>?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@����	

��	

��	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUV��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDDDDDDDDDDDDDDDDDDDDDDDDDDD��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTTTTTTTTTTT��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWW��	

 !"#$%&'()*+,-./01��	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!��	

 !"#$%&'()*+,-./01234444444444444444444444444444444444444444444���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOOPQRSTUVWXYZ[\]�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTU𠂉𠂢𠂤𠆢𠈓𠌫𠎁𠍱𠏹𠑊𠔉𠗖𠘨𠝏𠠇𠠺𠢹𠥼𠦝𠫓𠬝𠵅𠷡𠺕𠹭𠹤𠽟𡈁𡉕𡉻𡉴𡋤𡋗𡋽𡌶𡍄𡏄𡑭𡗗𦰩𡙇𡜆𡝂𡧃𡱖𡴭𡵅𡵸𡵢𡶡𡶜𡶒𡶷𡷠𡸳𡼞𡽶𡿺𢅻𢌞𢎭𢛳𢡛𢢫𢦏𢪸𢭏𢭐𢭆𢰝𢮦𢰤𢷡𣇃𣇵𣆶𣍲𣏓𣏒𣏐𣏤𣏕𣏚𣏟𣑊𣑑𣑋𣑥𣓤𣕚𣖔𣘹𣙇𣘸𣘺𣜜𣜌𣝤𣟿𣟧𣠤𣠽𣪘𣱿𣴀𣵀𣷺𣷹𣷓𣽾𤂖𤄃𤇆𤇾𤎼𤘩𤚥𤢖𤩍𤭖𤭯𤰖𤴔𤸎𤸷𤹪𤺋𥁊𥁕𥄢𥆩𥇥𥇍𥈞𥉌𥐮𥓙𥖧𥞩𥞴𥧔𥫤𥫣𥫱𥮲𥱋𥱤𥸮𥹖𥹥𥹢𥻘𥻂𥻨𥼣𥽜𥿠𥿔𦀌𥿻𦀗𦁠𦃭𦉰𦊆𦍌𣴎𦐂𦙾𦚰𦜝𦣝𦣪𦥑𦥯𦧝𦨞𦩘𦪌𦪷𦱳𦳝𦹥𦾔𦿸𦿶𦿷𧄍𧄹𧏛𧏚𧏾𧐐𧑉𧘕𧘔𧘱𧚓𧜎𧜣𧝒𧦅𧪄𧮳𧮾𧯇𧲸𧶠𧸐𧾷𨂊𨂻𨊂𨋳𨐌𨑕𨕫𨗈𨗉𨛗𨛺𨥉𨥆𨥫𨦇𨦈𨦺𨦻𨨞𨨩𨩱𨩃𨪙𨫍𨫤𨫝𨯁𨯯𨴐𨵱𨷻𨸟𨸶𨺉𨻫𨼲𨿸𩊠𩊱𩒐𩗏𩙿𩛰𩜙𩝐𩣆𩩲𩷛𩸽𩸕𩺊𩹉𩻄𩻩𩻛𩿎𪀯𪀚𪃹𪂂𢈘𪎌𪐷𪗱𪘂𪘚𪚲��	

��	

 !"#$%&'()*+,-./0123456789:;<=>????????@ABCDEFGHIJKLMNOPQRSTU??��	

 !"#$%&'$$$$$$$$()*+,-./0123456789:;<$$=>?@ABCDEFGHIJKLMNOPQRST��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTTTTTTTTTUV��	

 !"#$%&'()*+,-./0123456788888889:;<=>?@ABCDEFGHI888J8888KL888MN𠀋𡈽𡌛𡑮𡢽𠮟𡚴𡸴𣇄𣗄𣜿𣝣𣳾𤟱𥒎𥔎𥝱𥧄𥶡𦫿𦹀𧃴𧚄𨉷𨏍𪆐�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0123456789:;<=>����	

����	

 !"#$%&'()*+,-./0123456789��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

����	

��������	

��������	

������������	

��	

��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8����	

 !"#$%&'()*+,-.��	

 !"��	

 !"#$%&'()*��	

 !"#$%&'()*+,-.��	

 !"#$%&'��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-.��	��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*��	

 !"#$%&'()��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,��	


















 !"
#$%&'()*


��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./��	

 !"#$%&��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*��	

 !"#$%��	

 !"#$%&'()*+,-./��	

 ��	

 ��	

 ��	

 !"#$%&'(��	

 ��	

 !"#��	

 !"#$��	

 !"#$��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./0��	

 !"#$%&'��	

 ��	

 !"#$%&'��	

 !"#$��	

 !"#��	

 !"#$%��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./��	

 !"#$%��	

 !"#$%&��	

��	

��	

��	

��	

��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0123456��	
			
				 !"#	$		%&'(	)*+,	-	.		/01��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*��	

 !"��	

��	

��	

 ��	

 !"��	

 !"#$%&'��	

 !"#$��	

 !"#$%&'()*+,-��	

 !"#��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-.��	

 !"#$��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-��	

 !"#$%&'()*��	

 !"#$%&'()��	

 !"#$%&'()*+,-��	

 !"#$%&'()*��	

 !"#$%&��	

 !"#$%&'()*+,-��	

 !"��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-��	

 !"#$%��	

 !"��	

��	

 !"#$%&��	

 !"#$%&'()*+,-��	

 !"#$%&'()*��	

 !"#��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()��	

 !"#$%&'()��	

 !"#$%&'()*��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'()*+,-.��	

 !��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*��	

 !"#$%&'()*+,-.��	

 !"#��	

 !"#$%��	

 !"#$%&'()*+,-��	

��	

 !"#$%��	

 ��	

 !"#$%&'��	

 !"#$%&'()��	

 !"#$%&'()*+,-��	

 ��	

 !"#��	

 !"#$%&'(��	

 !"#$%&'()��	

 !"#$%&'()*��	

 !"#$%&��	

��	

��	

 !"#$%&'()*+,-.��	

 !"#$%&'��	

 !"#$%��	

��	

 !"#$��	

 !"#$%&'��	

 !��	

 !"#$%&'(��	

 !"#$��	

 ��	

��	

��	

��	

��	

��	

��	

 !"#��	

 !"��	

 !"#$%&'()*+,-./��	

��	

 !"#$��	

 !"#$%&'()��	

 !"#$��	

 !"#$%��	

 !"#$%&'(��	

 !"#��	

 !"#$%&'��	

 !"#$%&'��	

 !"#$%&��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./01234��	

 !"#$%&��		
	
											 	!"#$%&'				()	*	+,��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,��	

 !"#$%&'()*��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

 !"#$%&'��	

 !"��	

 !"#��	

��	

��	

 !"#$%&'(��	

 !"#$%&'��	

 !��	

 !"#$%&'()*��	

 !"#$%&'(��	

 !"#$%&'��	

 !"#$%&'()*+,��	

 !"#$%&'()*��	

 !"#$%&��	

 !"#$%&'()*+,-./0��	

 !"#$%&��	

 !"#$%&'��	

 !"#$%&'()*��	

 !"#$%&'(��	

 !"#$%&'()*+��	

 !"#$%&'()��	

 !"#$%&'()*+��	

 !"#$%&'(��	

 !"#$%&'()*+,-./0123��	









 !
"


#
$%&'
()
*+,-
.
/��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

��	��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

 !"#$%��	

 !"#$%&'()*+,-./01��	

��	

 !"#$��	

 !"#$%&'��	

 ��	

 !"#��	

 !"#$%&'()��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-��	

 !"#$%&'(��	

 !"#$%&'()*+,-./012��	

 !"#$%&'��	


















 !"#$%&'()*
+,

��	

��	

 !"#$%&'��	

 !"#$��	

��	

 !"#$%&'()*+,-.��	

 !��	

 !"#$��	

 !"#$%&��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./0��	

 !"��	

 !"#��	

 !"#$%&��	

 !"��	

 !"#$%&'(��	

 !"#$%&'()*+,��	

 !��	

 !"#$%��	

 !"#$%&��	

 !"#$%&'()��	

 !"#$%&'()*+,-./��	

 !��	

 !"#$%&'()��	

 !"#$%&'��	

 !"#$%&'()*+��	

 !"#$%&'()*��	

��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0��	

 !"#$%��	

 !"#$%&'()��	

����	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./��	








 
!
"
#$
%&
'

(
)*
+,-./0��	

��	

��	

��	

 !"#$%&'()��	

 !"��	

 !"#$%&'()��	

 !"#$%&'��	

 !"#$��	

 !"#$%&'()*+,-./01��	
		
																																��	

��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()��	

 !"#��	

 !"#$%��	

 !"#$%&'��	

 !"#$%&'()*+,-.��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,��	

 !"#$%&'()*+,-./0��	

 !"#$%&'��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'(��	

 !"#$��	

 !"#$%��	

 !"#$��	

 !"#$%������	

 !"#$%&'()*+,-.��	

��	

��	

 !"#$%&'()*+��	

 !"#$%&'()*+,-./01��	

 !"#$%&'(��	

 !"#$%&��	

 !"#$%&'()*+,-.��	

 !"#$%&'()��	

 !"#$%&'()*��	

 !"#$%&'()*+,-./��	

 !"#��	

��	

��	

 !"#$%&'()*+,-��	

��	

��	

 !"#$%&'(��	

 !��	

��	

��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-./��	

 !"#$%&'��	

 !"#$%&'()*+,-��	

 !"#$%&'()��	

 !"#$%&'()*+,-./01��	

 !"#$%&'(��	

��	

 !"#$��	

 !"#$%&��	

 !"#��	

 !"#$%��	

��	��	

 !"#$%&'()*+,-��	

 !"#$%&'()*��	

 !"#$%&'��	

 !"#$%&'()*+,��	

��	

 !"#$%&'()*+,-./0123456789:;<=����	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!���������	

��	

��	

����	

��	

����	

��	

��	

������	
��	
������	
��	

 !"#$%&'()*+,-./��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-��	

 !"#$%&'()*+,-./0123456��	

 !"#$%&'()*+,-./0��	

 !"#$%&'(��	

 !"#$%&��	
			
				 !"#	$%	&'()	*+,-	.	/		012��	

��	

 !��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./012��	

 !"#$%&'()*+,-./��	

 !"#$��	

 !"#$%&'()*+,-./0123��	

 !"#$%&'()*+,-./0123��	

 !"��	

 ��	

 !��	

 !"#$%&'()*+,-./0��	

 !��	

��	

 !"#$%&'()*+,-./��	









 !
"

#$
%


&

'()*

+
,��	

 !"��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*+,-��	

��	

 !"#$%&'()*+,-./01��	

 !"#$%&'()*��	

 !"#$%&'()*��	








 
!
"
#$
%&
'
()
*+
,-./01��	

��	

 !"#$��	

 !"#$%&��	

 !"#$%&'()*+,-./��	

 !"#$%&'��	

 !"#$%&'()*+,-./0��	

��	

 !"#$%&'()*+,-./0��	

 !"#$%&'(��	

 !"#$%&'()*+��	

��	

������	

 !��	

  !"#$%&'()*+,-./0123456789:;<=>?�����	

������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

 !��	

��	

 !"#$��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'()��	

��	

��	��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	

��	

��	
��	

��	

 !��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

���	





��	

��	

 !"#��	

 !"#$%&'()*+,����	

��	

 !"#$��	

��	

��	

 ����	
��������	

������	��	

��	
����	

��	

��	

������	

����	

 !"#$%&'()*+,-./��	
��	

��	
��	

��	
��������	

��	

 !"#$��	

 !"#$%&'()*+,-./0123456789:;<=��	

��	

��	

��	

��������������������������������������������������������������������������������	

 !"#$%&'()*+,-./01234��������������������������������������������������������������������	

 !"#$%&'()*��	

��	

 !"#$%&'()��	

 !"#$%&'()��	

��	

 !"#$%&'()*��	

��	

 !"#$��	

 !"#$%&'()*+,-./01��	

 !"#$%&'(��	

��	

��	

 ��	

��	

 !"#$%&'(��	

 !"#$%&'()*+,��	

 !"#��	

 !"��	

 !"#��	

 !��	

 !"#$%&'��	

 !"#��	

 !"#$%&'()��	

��	

 !"#$%&'()*��	

 !"#$��	

��	

 !"#$%&��	

��	

��	

��	

 ��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !"#��	

��	

��	

��	

 !"#$%&'()��	

 !"#��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

 !"#$%&'()*��	

 !"#$%&'��	

 !"#$��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

 !"#$%&'(��	

 !"#$%&'()*+,��	

 !"#$%&'��	

 !"#$%&'()*��	

 !"#$��	

��	

 ��	

 !"#$%��	

 !"#��	

 !��	

 !"#$%��	

��	

��	

 !"#��	

 !"#$%��	

��	

 !"#$%&'(��	

��	

��	

 !��	

��	

��	

��	

��	

 !"#$%&��	

��	

��	

 !"#$%��	

 ��	

 !"#$%&'��	

 !"#$%&'()*+,��	

 !"��	

 ��	

 !"#$%&��	

 !"#$%&'()*��	

 ��	

 !"#$%&'(��	

��	

 !"#$%&��	

 !"#$%&'()��	

 !"#$%&'()��	

 !"��	

 !"#$%&'��	

��	

 !"#$%&'��	

 !"#$%&'��	

��	

��	

��	

��	

 !"#$%��	

 !"#��	

��	

��	

��	

 !"#$%&'��	

 !"#$%��	

 !"#��	

��	

��	

 !"#$%&'()*��	

 !"#$%��	

��	

��	

��	

 ��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"#��	

��	

 !"#$%&��	

 !"#$%&'()*+,-.��	

 ��	

 !"#$%&'��	

 !"#��	

 !"#$%��	

 !"#$��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

 ��	

 !"#$��	

 ��	

 !"#$%&'()��	

 ��	

 !"#$%&��	

��	

��	

��	

��	

 !"#$%��	

 !��	

 !"#$%&'()*+,��	




















 !
"#

$%

&
'��	

 !"#$%&'(��	

 !��	

 !"#$��	

 !��	

����	

 !"#��	

 ��	

��	

 !"#$%��	

��	

��	

��	

��	

��	

��	

 !"#$%��	

 !"#$%&��	

 !"#��	

 !"#$%��	

��	

 !"#��	

��	

��	

 !"��	

��	

 !"#$��	

��	

��	

��	

 !��	

 !"#$��	

��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

 ��	

��	

 !"��	

��	

��	

 !��	

��	

 !"#$��	

 !"��	

 !��	

 !"#��	

��	

��	

����	

��	

 !"#$%&'(��	

 !"#$%��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

 !"#$��	

 !"#$%&'()��	

 !"#$%&'()*+��	

 !��	

��	

��	

 ��	

��	

 !"#$%&'��	

��	

 !"#��	

��	

��	

 ��	

��	

��	

��	

��	

����	

 !"#$%&'(��	

��	

��	

 !��	

 !"#$%&'()*��	

 !"#$��	

��	

 !"#$%��	

��	

��	

 !"#$%&'��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	
��	

 !"#��	

��	

��	

��	

 !"#$��	

 !"#$%&'(��	

 !"#$��	
��	

��	

 !"��	

��	

��	
����	

 !"#��	

 ��	

��	

��	
������	

 !��	

 !"#$%&'()*+,,,,,,,,,,,,,,,,,,,,,��	
������������������������	

������������������������������������	

��������������	

����������������������������	

������������	

��������������������������	

��������������	

����������������	

����������������������	

��������	

������	
��	
�	

   !; ���<L���d,���|zRx�$ا��0FJw�?:*3$"D�� \����lH_GNU��	P	�h% 
&
��`�i`
@� 
3
``�i`
@� 
;
�`�i`
@� 
D
�9`�i`
@�&
 
�Q`�i`
@�3
 
L`�i`
@�;
 
�`�i`
@�D
 
��`�i`
@�~��h

�h%�h%���o`��
�p%08��	���op���o�oV���o#n%��GA$3a1h
GA$3p1094�	
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignjapanese_euc.so-2.7.8-141.el8.x86_64.debug���7zXZ�ִF!t/��]?�E�h=��ڊ�2N������4v!͕�d<��Ss���!�0�e/�5�&Vd�lw&{��<�ْjė:�z��~����`�`Q�2��i.�,����Ə��""
�3��� ]tm�9WGlJ$�˲^��ki]�\��ݩ-�]�
ͳ&�JX�
�e�돆���{W�̍��ȓ�G�p��v�|��0�{h�S��*��u����ELTw�!LC��H���z���D@H����U���������cZ�?��j�Yxl���ҧ��Jf��o՟e��B��+�hK�5f7T�5���C�h�4��<�>Kn��r�p섅
'cG>���~n���.$��1��T>�������0b	ɢ6��&��%a,+A-��\��m5e=NA��z��s�`�~�wyBoP�de��5R���41;�'��
l�&�ж���`�ϏL����?Μ��0�N�C�Q�l��x1?#�dЂb0yM����j/�����"���ۓZ0`׬�k)0���Q��1���P�v�>���{�k\�Wb�5���:��'2`QZ�����5ϖ(�1,�m�}OKeHgL���.Շ��G^i"ɉ�(�#���!�	t��ru�,�.�F�q��W^��BE���\�O���թXg�ˁð;A9��mE�"���eSE~���f�o�»D��k��}�q"�'ȱ�׎(����q�?�
Jِ�W�fMa���K%�Y���o�6XD��QºL}��}rG�p��A���@)#�"#��#���mb����������_���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oVVE���opp T���^B880hhhc��0n�� w��,}


� 
 
QV �t`t`$��`�`t�aa ��h%�h��h%�h��h%�h  �n%n���o%�o �p%p(�(p%(p�0pe(p�
r0LrT�u+PKMH[�I�E>>lib64/ruby/enc/trans/transdb.sonuȯ��ELF>�@�6@8	@     �-�- �- @H .. . ��888$$     S�td     P�tdddd$$Q�tdR�td�-�- �- GNU@���� ��ǘ���i��3���@ 	BE���|�1n��qX b , F"�(0 �00 U��(0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_transdbrb_declare_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��- ��- @�- �- �/ �/ �/ �/ 0  0 ��H��H�y* H��t��H����5�* �%�* ��h�������h���������%]* D���%U* DH�=Q* H�J* H9�tH��) H��t	�����H�=!* H�5* H)�H��H��H��?H�H�tH��) H��t��fD�����=�) u+UH�=�) H��tH�=�' �Y����d�����) ]������w������H��H�H�5H�=���H��H�5�H�=����H��H�5�H�=�����H��H�5�H�=����H��H�5�H�=����H��H�5�H�=��|���H�rH�5pH�=��b���H�XH�5rH�=O�H���H�>H�5<H�=W�.���H�$H�5DH�=����H�:H�5H�=3���H� H�5 H�=����H�H�5�H�=����H��H�5�H�=����H��H�5�H�=����H��H�5�H�=�x���H��H�5�H�=��^���H��H�5�H�=��D���H��H�5�H�=��*���H��H�5�H�=�����H�tH�5H�=v���H�ZH�5cH�=R����H�@H�5UH�=8����H�&H�5�H�=���H�H�5H�=���H��H�5�H�=�t���H��H�5hH�=��Z���H��H�5�H�=G�@���H��H�5�H�=-�&���H��H�5�H�=����H��H�5oH�=���H��H�5�H�=N����H�fH�5rH�=u���H�LH�5bH�=Q���H�`H�5kH�=p���H�FH�5]H�=J�p���H�VH�5�H�=X�V���H�<H�5EH�=��<���H�<H�5�H�=B�"���H�"H�5/H�=�����H�.H�5#H�=����H�H�5H�=�����H��H�5
H�=����H��H�5H�=~���H�H�5�H�=����H��H�5�H�=s�l���H��H�5`H�=��R���H��H�5�H�=?�8���H��H�5�H�=�����H��H�5�H�=�����H��H�5�H�=z���H�fH�5gH�=v����H�LH�5jH�=k���H�2H�5PH�=Y���H�H�5FH�=G���H��H�5$H�=-�h���H�)H�5+H�=��N���H�H�5�H�=
�4���H�H�5(H�=�����H��H�5H�=�����H��H�5�
H�=����H��H�5�
H�=�����H��H�5_H�=�
���H��H�5�H�=�
���H�lH�5JH�=�
�~���H�RH�5aH�=k
�d���H�[H�5X
H�= �J���H�AH�5>
H�=A�0���H�'H�5�H�=
����H�
H�5H�=
���H�
H�5
H�=����H��H�5�H�=�����H��H�5�H�=����H��H�5�H�=����H��H�5�H�=X�z���H��H�5�H�=>�`���H��H�5�H�=$�F���H��H�5:H�=��,���H�{H�5�H�=����H�aH�5H�=h���H�GH�5UH�=�����H�-H�5�H�="����H�H�5H�=����H��
H�5�H�=���H��
H�5�
H�=}�v���H��
H�5jH�=�
�\���H��
H�5�
H�=I�B���H��
H�56H�=�
�(���H�w
H�5�
H�=����H�]
H�5H�=�
��H�C
H�5}
H�=�
����H�)
H�5�
H�=g
���H�
H�5T
H�=�
���H��H�5�
H�=>
���H��H�5+
H�=y
�r���H��H�5f
H�=
�X���H��H�5
H�=E
�>���H��H�52
H�=��$���H�sH�5�H�=
�
���H�YH�5�	H�=����H�?H�5�H�=�	���H�%H�5�	H�=���H�H�5�H�=�	��H��H�5�	H�=s��H��H�5`H�=u	�n�H��H�5b	H�=K�T�H��H�58H�=A	�:�H��H�5.	H�=#� �H�oH�5H�=
	��H�UH�5�H�=����H�;H�5�H�=����H�!H�5�H�=���H�H�5�H�=���H��
H�5�H�=���H��
H�5�H�=q�j�H��
H�5^H�=��P�H��
H�5qH�==�6�H��
H�5*H�=]��H�k
H�5JH�=	��H�Q
H�5�H�=6���H�7
H�5#H�=����H�
H�5�H�=��H�
H�5�
H�=���H��	H�5�H�=�
��H��	H�5�
H�=m�f�H��	H�5ZH�=�
�L�H��	H�5�
H�=9�2�H��	H�5&H�=�
��H�g	H�5�
H�=��H�M	H�5�H�=s
���H�3	H�5`
H�=����H�	H�5�H�=F
��H��H�53
H�=���H��H�5�H�=
�|�H��H�5
H�=i�b�H��H�5VH�=�	�H�H��H�5�	H�=5�.�H�}H�5"H�=�	��H�cH�5�	H�=��H�IH�5�H�=�	���H�/H�5	H�=����H�H�5�H�=e	��H��H�5R	H�=���H��H�5�H�=8	�x�H��H�5%	H�=e�^�H��H�5RH�=	�D�H��H�5�H�=1�*�H�yH�5H�=���H�_H�5�H�=���H�EH�5�H�=����H�+H�5�H�=����H�H�5�H�=���H��H�5qH�=���H��H�5�H�=W�t�H��H�5DH�=a�Z�H��H�5NH�=*�@�H��H�5H�=-�&�H�uH�5H�=��H�[H�5�H�=����H�AH�5�H�=����H�'H�5�H�=���H�
H�5�H�=���H��H�5�H�=���H��H�5~H�=��p�H��H�5sH�=]�V�H��H�5JH�=[�<�H��H�5HH�=)�"�H�qH�5H�=2��H�WH�5H�=����H�=H�5�H�=	���H�#H�5�H�=���H�	H�5�H�=���H��H�5�H�=���H��H�5zH�=��l�H��H�5�H�=Y�R�H��H�5FH�=��8�H��H�5sH�=%��H�mH�5H�=Z��H�SH�5GH�=����H�9H�5�H�=,���H�H�5H�=���H�H�5�H�=���H��H�5�H�=���H��H�5�H�=o�h�H��H�5\H�=��N�H��H�5BH�=��4�H��H�5�H�=!��H��H�5H�=���H�nH�5zH�=����H�TH�5�H�=b���H�:H�5OH�=���H� H�5�H�=7��H�H�5$H�=��~�H��H�5rH�=�d�H��H�5XH�=��J�H��H�5�H�=7�0�H��H�5�H��H�=����H��H���big5UTF-8Big5CP950Big5-HKSCSCP951Big5-UAOcesu_8CESU-8chineseGB2312GB12345ebcdicISO-8859-1IBM037emojiUTF8-KDDIUTF8-DoCoMoUTF8-SoftBankemoji_iso2022_kddistateless-ISO-2022-JP-KDDIemoji_sjis_docomoUTF8-DOCOMOSJIS-DOCOMOemoji_sjis_kddiSJIS-KDDIemoji_sjis_softbankSJIS-SoftBankamp_escapexml_text_escapexml_attr_content_escapexml_attr_quotegb18030GB18030gbkGBKiso2022stateless-ISO-2022-JPEUC-JPcp51932CP50220CP50221CP51932japaneseShift_JISjapanese_euceucJP-msEUC-JIS-2004japanese_sjisWindows-31JkoreanEUC-KRCP949universal_newlinecrlf_newlinecr_newlinesingle_byteUS-ASCIIASCII-8BITISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-8859-10ISO-8859-11ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16WINDOWS-874WINDOWS-1250WINDOWS-1251WINDOWS-1252WINDOWS-1253WINDOWS-1254WINDOWS-1255WINDOWS-1256WINDOWS-1257IBM437IBM775IBM737IBM852IBM855IBM857IBM860IBM861IBM862IBM863IBM865IBM866IBM869MACCROATIANMACCYRILLICMACGREEKMACICELANDMACROMANMACROMANIAMACTURKISHMACUKRAINEKOI8-UKOI8-RTIS-620CP850CP852CP855utf8_macUTF8-MACutf_16_32UTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF-16UTF-32; �<L�d,�|zRx�$��0FJw�?:*3$"D�� \��H�GNU��@�- x��`
��- �- ���o`��
�0 00��	���oh���o�oP���o. ��GA$3a1`�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realigntransdb.so-2.7.8-141.el8.x86_64.debug��ZN�7zXZ�ִF!t/��]?�E�h=��ڊ�2N�`N�~ ��)�I���� �f� ��V��Dto�H�"����R�ϓk��a��d���xf��6:��$&4��G�Ff�.�-峯\�}�7�9$7S��G����t�n�HI��Mo����2%�,�N�����j�Q�>�WZ]�	��pB�K�p�|gI|C��R�:9�i�H�|v��%��6$��$d�_�GA�ƃ�'ߥygO��.H��]�s?�x)�c
vL��>Q�~jHc�}�x02�C4�a.P��3ކh�ci�Q�p�T��< �Y��")�D����ʞ
R�Rȍ6�V����LU�3=(S!}6J[���!���X�q~���ŕ�̖]�'��}W<�GG��c�IK���TK��Y{K���LE��C��v��3�����
�ySJ.�p�?���8�N��X�6ꊜo�ϖ���0��.��#����;�6�O�m�`�Z����4(��p'-
��I~֮���0[���$�%l]*�^-�|Xg�^3���N�:�M�L�zBi&~e��M����)^8���a0����m ��K�����|}2��>ut���o�m�rQ�p�}��d��t1�lL#�>U���p���¸i3w���d��gו�O�����/����
�D�~���y�f�u�X��1�xh�%w��C�z�ο</Qx�!@L����
:��;��ɉ|.W���I� ֓\�DuP_!{�M8��z��N���t��(*����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T���^B000h``c��0n�� w���}��
�2����dd$���x�   ��- �-��- �-��- �-�. .���/ �/ �0 0(�(0 (0�00`(0�
2,H2H�5+PKMH[>�]�^^%lib64/ruby/enc/trans/japanese_sjis.sonuȯ��ELF>`@�V@8	@�;�; PKPK"PK"�� NN"N"��888$$h;h;h;  S�tdh;h;h;  P�td�:�:�:$$Q�tdR�tdPKPK"PK"��GNUr�'j1ND4�y�cG�����@"�	BE���|�qXwD"l h , F"�(P"�0P"�(P"U <__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_japanese_sjisrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�PK"XK"�`K"`K"�K"��K"��K"��K"� L"�(L"�8L"�HL"��L"��L"��L"��L"�`M"�hM"�xM"��M"��O"�O"�O"�O"P" P"��H��H��H"H��t��H����5�H"�%�H"��h�������h���������%�H"D���%�H"DH�=�H"H��H"H9�tH�fH"H��t	�����H�=�H"H�5�H"H)�H��H��H��?H�H�tH�5H"H��t��fD�����=MH"u+UH�=H"H��tH�=nC"�Y����d����%H"]������w������H��H�=1E"����H�=�D"����H�=�C"��H�=-C"H�������H��H���UTF-8Windows-31JShift_JIS 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー—‐/\〜‖|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+−±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯	0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん�\ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω~�АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂=�	�p	亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭��院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改z
魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄z
機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈z掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向z�后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷z�察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周z�宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾z�拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線z�繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只z�!叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓z�$邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入z�'如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美z�*鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋z�-法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒z�0諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯z�3蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕	弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲9�6僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨z 9咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩z<奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏z?廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛zB戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼zE曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣zH檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌zK漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱zN瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬zQ磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆z�S紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋z�V隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈z�Y蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞z�\襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊z�_蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮z�b錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰z�e顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈z�h鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙	��kT��hx
��������!�$�'�*�-�0�3�69<?BEHK�M。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚�P�S�V�Y�\�_�b�e�h�ktm�|m 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯(o①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ	㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪��q纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱z�r犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"u�uz�xz�{z�~zȁzĄz��z��z��z��z��ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯z��涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙z��髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	4	��|q��hx�r
��������!�$�'�*�-�0�3�69<?BEHK�M。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚�P�S�V�Y�\�_�b�e�h�ktm�u�x�{�~��������������������ܜ�	�	�������N�����}�L���
О	�~��4�vp	�������������������������������������������������������������������������������$�����	���������������П	�F�@�A�B�C�D�E�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�p�q�r�s�t�u�w�x�y�z�{�|�}�~����<���������������������������������	�v~ؠ��,�v,�	�]�\�a�e�f�g�h�����d�c���������D�	����$
��	��������f
��	�����
ȡ��	�����������|���������������������������
�	��������������,@�	����������nl�	�������������	�������������������������������������������������������	����4,�	������������vD�	�������������l�	���������	��������<���������ء8�d�����$�<�d�����ȣ~У�@�A�B�V	�X�Y�Z�q�r�s�t�u�v�w�x�y�z�����k�l�`��	������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�J�K�T�U�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^D���_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������	�E�[�R�S�x�x���p�l���t�����	�������O�����s�^���N���������u���������������������O������
��	���T�v�V�����R�h����������������������L ��T	�������\�����������]�������j�i�����������S�������������������������l�|��Y�m��	�����w�����������e�d�����t���W�����������������������C��	���������������x�����`���������L�f������	���A�������Z���C�������]���������C�����������������gT��	���������������������������D�������N�����t�	�W�����r���������������������M�������C���o�U���������Ԫ��t�����l�̪D�L�	�����q���{�����|���������������l���������������`����\|�	�����������������������������������U����	���T���P�������b���B�������X�L�	�C���@�A�������l�D���E�H�F�m�G�I�K�J��"���V�M�N	���L���Q�P�O���R���S�D���U�T�W�V�Xd��Y��	���Z�[�����������[���e���Z�\�}���]���S�_�`�����Z�a���������T���T��b	�c���~�f���e���g���h�`�i�j�k�������n�l���m�y�o�p�q�~�u�s�t�r���v�����w��	���x�y�y���������z����{�}�����}���~���M���������o����*����	�n���������������Y�������������������������������h��l�	�������������O�����U���������������������������n�������	�c�������������������������w���������J�������N���	���u���E���������������������������������M��������������2d�	���������������������k�����x�����������������C������t����\	���������������������������P���m�����T�����K�������p�����������\�	�������������������~�X�}������������	�Q�������y�F�o�����f�����������b�p���������@�����������������j�E�����i��:D�	���h�e���g���D�����@���f���N�����i���������������z����������|���	�C�������������������������������������l���	�������a�����������B�����@���]���P���D���C̳���i�A	���������E���N�F�G�����L�K�N�M�JB4�	�S���O�H���I���S�B���Y�X�O������P	���U���R���[�V�W�T�Z�Q�`�e�a�ش�\	�f�P�h�A�^���b�[�������c�_���i�g�r�i���d���c$�	�m�k���p�j�n�l�k�o�r�w�u�tJ��	�Q���q�s���R�v�������}�{�|�~�Ե	�\�X�x�y����������������������	���d���������X����������`���������	�����������d���l�����c�������}��������R����	�������������������������y�������\�n����������	�����V�������B�����R�������x�	�������^�����C�_������������	�����������������W���u�������|����Z��x	������������������������������g�����X�����	�����Y�����h�������������U�����o���m���	�������������n���������������� �	�����d���������������������������m�p�s��������������������b`�	�����������[�O���g�������������V���v������������������	�����������t���_�z���������������������D�������z�@�D�\�	�A�@�����D�J�W�d�����B�E���W�i�F������(Ժ	�G�o�n���������K�L�I�W���H���P�����pj0�	�����Q�O���R�P�N�P�M�����V�W������S�K	�k�U���X�w�Y�T���Ի	�}�Z�Q�[�_�\0�	���^���]���k�d�a���`�b�c�e�fr4�	���h�g�i���l���d�j�m�n�|��q	�o�p�q�r�E�s�����t�u�y�F���G���v�w�w���x���y�z�{�}����~	�����F�����v�����G���@���������X�����q�����G���{���Q���������e�h8 0�	���������������x�����������Q���@�����������J���R��������������������z Ľ	�������������������q�������������������������A�������K���s���A� \�����	�����������r�����������W���j���w���������R����� �	�����������Z���������x������������@!\�	���������������������������s���!��	�������������R�����������������!��	����������������������"H�	����������������������������H"��	�����������������B�����H���I�������������b���J���F���"�	�s�z���������������������t�����A���������X�"D���	���������y�����������������������N�����K�������c�H����#��	���L�������������X�M�{���x�����������N�fP#(�	�����p�����L�����f�@�C�D�B�_���F�E�A�G�H�I�L�J�K�M�����N�����U�O���#��	���P�M�Q���T���������U�|�����V���O�o���������W�X�^�������Y�J�e�#�	�Z�[���\�]�_���`�a�b�S�R�c�`�F���V���j�d���e�e�f�����i$�������h�g�a��	�m�k�j�������l�k�]���p�o�n�q���r���z�s�������O�t�JX$$�	�S�K���E�u�u�Y�Z���z���w�����y�O�x�v���|�$���D����L������x��\�ܰT��<�ܲd�ij,���д���̵�X����p�����P����X�ܹT�̺(���̻�,�t���(���T��T����@�|��<��� �����������	�������{���|�������v���}�}�������������������$�	�����������������P���������~�������p�����������������b��%��	�����������������������������I���x���Y�����{������������`%�	�������f���������������y���S�����z�������������%�����D	�����������������������������������������%��	�������������Q���T���������������������d�S�����������������c���|&&X�	�J�����������������������e��������������h&��	���������������������������������������������&H���	�����������^����������������@���A���B�C�Y�D�E�F�������[�&�����G	����������H�������K�I�L�J�M�����}���N�Q��.'4��Z	�O�V���P�c�}�R�S�W���T�R���e���������������Z����p'��	�c�S�]�d�_�f�b�a���[���Y�����U�X�S�����`�q���g���@�h�m�i���n�A���E�\�'�	���k�w�l���g�������j�����U�����p�}�'��	���J�q�s�o�����{�������~�����x�����P6(��v	�|���{���u�z�r�t�@�|�|�����T�y���T�����[�w�d�f���}�~��x(X���	���������`�����K�g���������������h�(��	�������������r�������������g���(0�	�����E������������>)|�	�����T�����Q���P�������d�B���o�h�����)��	�i�����������^���������F���C���[�����������������)���	�������������������x�������������U����*x�	�������q�~�����s�����������U���h�������G�~��F*��	�������|���k�������l�������������������a�f�z�V�������{�*@�	���������������������������������U���|���{���������*��	�V�����������������������f�t�����������������E+0�	�����W�����W���N�����������A���������i�������qN+��	�����������������g�����������b���\�A�������+�	���@�����B���C�j���D�F�G�H���g�X�I�J�������]�\���+l���	�����L�����K�����L�N�]���M���N�O�������{�D�Q���p�S�V�U�����R,��	�T�W���������������Z�m�X���Y�����[�\���a�Y�t�^�������n�f�`����V,h�	�f���]�c�b�����������}�g�e���d�_���k�i���g�m�s�,��	�����u�A�t���^�����_���M�p�o�q�n�v�l�j�r�h�������������`�,`�	�����h�����I�x�Z���z�����}���j���i��-���{���j��	�y���|�~���K���j�������V���O����������^-8�	�����~���������[���������������������B���������������-��	�������������_���������I�����������X���������-��o��	�����������A����������������������������������������$.��	�k���������^���������������������|�������������O�y��f.�	���T���|���P���Y���������������������.|�	��������\�����������l�������������������������.��	�������������������W�����������������~�������������M,/@�	���������k���@������������n/���h	���������@�w�������K�G���F�E�B�/��	���D�C�I�E�L���H�J���M�Q�N�/L�	���O���R�S�T�U���������~�W�V�Y�\����40��	�\�[�]���V�^���`�_�a�b�c�~���������c�������d�e���fv0���g	�i�h�w�}���c�j�l�B�k�m�n�o�p�q�s�r�t���i�u�E�k�v�a�0\���	�B�w�x�������y�������z�|�{�~�}�0��	�����������C���������X�i��<1$����`��	���������������]�r���������������D��~1h�	�����������������B���������v���������������������������1��	���������������@���������A�g���D�����������j2H�	�m�����������������k�^���F�������������hD2��	�����������l�����Y�_�Q�\�����C�Z���2�	�����O�������������U�t�������2d���	�����������i�����������W���������������[�~���������Y
3��	�����������a�k���������������n�������Q�����������`������L3(�	�������������X���N�����������p���3����	���������������a�������������n���M���3��	�������������������������������H�B������4T�	���Y�����R���A�������������������Q�@��T4��	�������N�I�������R�K���H���k�E�D�M�4��G�F�L	���C�O�P���U�T�V�Y�b�S�W�4d������Q�Z	�X�]�[�^�a�Z���G�����\�`���_�J��d�h5��|���|���P���@���,��������P���(�t����p���8���(����d���`���X���0����|���t���8�����D�����T����`���@����\��� �����L����\�����	�f�b�c�g�e�m�m�j�i�l���n�������o�q�p\5$�	���r���s�����D�������5|�	�F�����u�t�x�Y�{�v�z�y�_���5��	���}�G��~�|�w�B�"6��	������������R��d6,�	������������������������6`�	���F��o���n���M���6��	�R������������z����W���C�������*7��	���������������������u���l7X��	�������v��������������S�q�����������7������	����]�����������7�	������������_���������������K���T��28\�	���������������������L�������P�Q����t8��	�����������b�������l���������8�	�������������������8`���	�����X�����������]���������:9��	���������������������i����|9��	���������l�������������������������9$�	�����������:|�	����Z�@�Z�A���B�C�D�F�G�E�r�I�HB:��	�K�J�L�M�O�N���Q�P���r�[�R���Y���S�p���T�c�R�b�\�j�������U�:��	�V�[�Y�X���E�W���������\�Z�{�����L�^���l�_�]���`�a�����f�c���b�E�:��	�i�d�e�h�g�D�a�`�^�j�k�l�n�m�u�v���p�r�t�]�u�s��;�	�o�q�a���x�w�y�������z���|���{������s���}�~J;��	��������������;��	���������������������������o����S�;4��	��I�F�c����H�������������M<��	��u�~�m�v��������X����������������������R<�	���������������^�����������������<����	�������������r�����������<��	�������������u������������������= �	�����������������m�����Z��������Z=p�	�������������u���m�C�j�v�{�=��	�������d���������=�	���������V�����O���q���������������m�� >4�	������������A�@������C�Bb>��	���D�b�F�E�G�����I�H�������>���J�V	�_�F���S�P�O�c�L�N�j�_�M�K�I���[�����Q�R�>$��h��	�\�T�S�������T���U�W�X�H�Y�Z�[������(?���G��	�\�H���b�]���d�`�a���`�^���_����j?���H	�b���c�����B�d�e�t���g�f���i���l�j���m�k�e�?D���	���m�s�o���n�����n�p�q���r�n�t�����u���v���?��	�������w�����y�{�x�z�A�|�E���q�~��M�0@�	������}���������������������v����G��[����^�|����r@p�	�������������J��}�y�����������@�	��M������������}�����������������@d�	�������������Z���������\�������8A�����	������z��������������U������zA4���	�����������������������������������A����	���������������������������������A��	���H���������������e�S�l��������������������������������@B@���	�������W�������������f�����������n���B���I	�@���g��C���[�R���B���h�������A�f�a�������F�����G�a�I�����H�B(�	�I���g�D�J�E�o�M�Q���L�U�i�����R���O�P���N�K�G�����WC��	�T�V�S�p���X���e�a�[�_�����Z�b�f�j�����\�d�Y�]�^����HC,�	�]������������g���c�h�j���m�i���������l���k�C��	�����n�u�o�v�r�����t�q�w�p�c�D�k�s��{�~�|��z�`���C�	���}�x�@�q�J�D�U������y������J�����D��	�[������Z�������PD�	�����D8�	�����������������r�u�����l������DT�	��������r���������Q�A�`�������HE��	���������K���������������������|��XE0�t�����$�X�����P����T����X������t�����x��x���,����x����h�����,����������<����h���\���,�����8��� ���$����x��0��L���(������s�V	�l���������������k�������������������^���E��	�����������������������������������E�����W���E��	�����������]�������I���������������b�����m�n�����xFd�	�����_�w�������������E�������������E�\`F�	�������e������r�����E�]���B�F8�	�A��t���D�C�o�r�T�H�I���G���F�J�����B���F���N	�O�K�L�M�p�U�Q�����G�P�S�R�c�V�W�V�X�Z�^�[�Y�^&G��\	�]���d�_�`�a���c�b�e�f�g�b���h�����L���v�i�j�P�khGX�	�l�m�n�o�����p���q���r���s�����C�w���M�t�q�u����w�������v�D�G��x	���z�y�|�{�}��~�����������F������GT�	����������H�����m�c���F�|�����.H��	����������c�����������������p�����pH�	����������s��������������������H|��	����t�`��r����������H�	����������������������6I(�	�����e������������p����������H��������xI��	���������G��������������������������I�	���t���������������������������K���������I<�	�������N�����f������������������>J��	���~���u���W�������������H�@������J���	�������������U��������������J@��@	��������B���C�������n�����J�P�QK��D	���N�F�H�R�G�K�����L�O�E�E�I�F�d�O�������V�TFK�	�m�S���U�W�X�[�Y���Z���M���\�a���`�KX	�A�b�h�]�_�^�P�A�d�c����e�f�K�	�g���s�i�|�������j�k���l����L�	���q�r�m�\�n�a�o�p�z�t�w�sNL<	�u�v���x�`�u�a�{�^��|����}�~�g����������L��	�I���������w����������L�	���X����I����������������MD	��Z���������VM��	������������I�a��M�	����������y����������M$��	�����O�s�����p�X���q�����t�����\����������������Np	�����U����������������������������������^N�	���������������T�������������������������������ND	�������������J���������������N�	��������������A�@�C�B�D�P�E�F�G��$O	�v�H���e�I�J���K�K���`�L�o�M�O���N�e�P�Q�R���S�T�UfO\�V	�p�W�X�Y���G�Z�[�\�O���	���]�v�u�`���_�P�^���L�a�b�����c�K�������i�d�f�����O	�e�h�i�����g���]�f���r�m�w�����l�l�k�F�l�b�Y���j,P�	�o�p�n���_���F�s���a�U�v�����r�w���t�u�q�����N�����b��nP�	�z�x�k�����y�z���_�{�����������~�|�@����}��������Pl�d�y��	��������������u����w����T�����P�	��������������x����c�������4Q\	�	�]�����Q�����vQ�		�J���Q�		�����L����������������^���Q
	�����e�����L�������v�n�����������������������M���������\���f<Rp
�����G���d	���������G���o���^�����������������q�����w��~R	�������������������������R�	�������q�����������NS�	�����z������������DS�	�����������������������������H���H�����S0	�����x��������H����S�	����@�D�A��B�C�J�E���G�I�F�L�R�K�M
T�	�N�Q�P�O�S�R���U�T�V�W�Y�X�g�Z���[�]�^LT$
	�_�\�`���a�O�R���b���]�c�f���e�d�y�g�T�
	�r�i���h�q�k�m���j�l�p�n�P�o�r�y���S�s�A�u�t�x�`�T�
	�w���v�{�z�y�Q�|�}�~���D���UH	�h�������������C�J�_��������HTU�	�I���v�}���������������R��q���������U��\��0����P��L����t�� �x��4����8��P��4x�<��h�<��T�x�d�T	�	�	�
h
|��(��
x
�
@��LT����	����t�����������r�������������������A����T�i������N��U`	�����x����V�^�����������B�����������k���y��K����������J�I�������V�������	�����W���M�������@\V�	���x�Y��S�����s�X���s�V	����A���V@	�����U���z�����������|���������V�����y���_"Wh	�����������������X������������������dW�����	�������������d�����������B�����j�������t�����������W$	���b���������n���������W�	�S�������������������������z�g*X���	�e���L���������������K��lX(	��N������s�e������|�Xp	�K������@�B���A�C���d���B����^�E�D�F�X�	����t���K�b�G�H�L�J���I��2Y	���O�������Z�M�N���L�PtYL	�V�Y�X�L�Q�R�U�W���Z�T�S�Y�	�^�_�`�]�\�����[�d�b�c�a���e�Y�	�f�h���g���s�i�l�j�k�m�o�p�q�t�r�u�w:Z	�v|Zh	���Z|��	�x�M�y���z�J�[�����{�|�}�~����t�}������{����[�	���������������B[	���������h�j���[P��	������~����������@�w���������A�������������z�[�	�����G���@��K���u����������B������������������\����	�Y���W���������G������������J�������_������dJ\���	���k������������������������I�P�������\	�����������������������r���������v���x���C�������\�	���������������������f�������������]�	���������������B���������C��R]H	�����������{�����a�����������z�����j���o����p����]�	�����z�{��������^��������@�B�A�]	���C�D�E�F^\	�H�G�I�����H�Q�J�K���Z���������O��Z^�	�L���M�{�a�`�N���O�P�R�S�U�Q�T���V�W�X�Y�^�	�Z�\�[�^�a�]�_�`�b���^4	���c�d���e�]�n�f�g�y���h _l	�����w�������m�����l�j�k�i�w�n�o�p�q�s�r�xb_�	�t�v�R�u�����x���y���z��_�}	�|�~�{��������������_P	�����[�(`��	�����������������E������j`�	��������������T���S�`(	�@����������������D��`|	���������������L���N��0a��	��������������I�����������~��������ra	���������������k�����������������h�������������V���ap	�����L���������������a�	�������������P����8b 	����������������������������������zbP 	�����D�C�E�L�@�A�����B�Q�J�F�K�b� 	�H�G�{�L�M�N�I���O���S�T�R�b!	�Q�W�P�U�V�Y�X�[�\�]�h�Z�����^@cD!	�_�`�a�c�!	�b���c�d���c�!	�e�f�g�h�k�i�[�j���l���m���n�p�q�o������������d�!	���s�o�t�u�v���w�������x�z�y�{�|�}�~�������Hd<"	���C����l���@��d�"	��V��������������������d�"	�����s�e@#���8`��� h�D��`t��H|�x�@��Tx�,d�H�� t�h� H � � <!�!�!�!4"�"�"8#\#Ped#�e,�	�I���������i�j���{�C�D�^�O�P�Q�R�S�T�U�V�W�X�F�G�������H���`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�m�_�n�O�Q�el$�M�����������������������������������������������������o�b�p	��������������������������������el%��������������������������������	8fp&	�P��zf'�d%h&�&'�f'<��f8'v8'0g8'����ȟ��Р$�4�<����t�����X\$d$0'@'H'P'BgX'	���N���}�L��9h�'	�]�\�e�f�g�h�����d�c��������{h�'	���������h0(	�T�U�V�W�X�Y�Z�[�\�]�@�A�B�C�D�E�F�G�H�I�hP(��	�����������������������a��������������������Ai�(	�������������i)	�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�iD)((�H(�(��ء)d�<)���)$�<�d�����ȣj�)�@�A�B�V	�X�Y�Z�q�r�s�t�u�v�w�x�y�z�����k�l����Ij�)	�������j`*	�����������j|*	�e�i�`�c�a�k�j�d�l�f�nk�*	�_�m�b�g�h�~������Qk�*	�r�s�o�p�q�u�k+	�t���k8+X*��p�l��t*�*�*+0+H+lP+����	�������O�����s�^���N���������u���������h�������������O������Yl�+�Y�m��	�����w�����������e�d�����t���W�����i�������������������C�j�l,�k��	�l�������������x�����`���������L�m�f�����l�,	���A�������Z���C�����n���]���������C�����������������gm-	�������p���������o�r�����q���������D�������N����am�-	�W�����a�r�s���������������������M�������C���o�U���������v�m�-�,t���,-�-�-x.�.	�����q���{�����|���������w�����u���l���������������`�����m�.�t	�z���x�����������������������y�����������U'n0/��	���T���{�P�������b���B�������Xin�/	�C���@�A�������l�D�}���E�H�F�m�G�I�|�K�J���n�/�Y��	���Z�[���������~���[���e���Z�\�}���]�����S�_�`�����Z�a���������T���nL0�b	�c���~�f���e���g���h�`�i�j�k���������n�l���m�y�o�p�q�~�u�s�t�r���v�����w��/o�0	���x�y�y���������z����{�}�����}�����~���M���������o����qo�1��	�n���������������Y���������������������������������h���o2	�c�����������������������������w�������w���J�������N�o�2����	�u���E�����������������������������������M��������������7p3������	�������������������k�����x�������������������C������yp�3���\	���������������������������P���m�����T�����K���������p�����������p4	���������������������~�X�}�������������p�4	�Q�������y�F�o�����f�������������b�p���������@�����������������j�E�����i��?q5��	���������a�������������B�������@���]���P���D���C�q�5���i�A	���������E���N�F�G�����L�K�N�M�J���q 6�\	�f�P���h�A�^���b�[�������c�_���i�g�r�i���d���cr�6��	�����V�������B���������R������Gr�6	�������^�����C�_�����������r@7��	���������������������W���u�������|�����r�7	���������������n������������������
s�7	�������������[�O���g�������������V���v����������������Os88	�����������t���_���z���������������������������D�������z�@�D�s�8	�A�@�����D�J�W�d�����B�E�����W�i�F���������s<9�q	�o�p�q�r�E�s�������t�u�y�F���G���v�w�w���x���y�z�{�}t�9��	���������������x�������������Q���@�����������J���R����������������������Wt:	�������������������q���������������������������A�������K���s���A�t�:	�������������Z���������x���������������tP;	�����������������������������s��u�;	�������������R������������������_u�;	�����������������������������uL<	���������������������������������u�<	�������������������B�����H���I�������������b���J���F��%v�<	���P�M�Q���T���������U�|�����V���O�o�����������W�X�^���������Y�J�egv`=	�Z�g�[���\�]�_���`�a�b�S�R�c�`�F�����V���j�d���e�e�f�����i�v�=�����h�g�a��	�m�k�j�������l�k�]���p�o�n�q���r���z�s���������O�t�J�vx>	�S�K���E�u�u�Y�Z���z�����w�����y�O�x�v���|-w?(/�/�/D0L��0�12�2�3�34�45�5d�ij6x6д��6̵�X����p�87|7�7���08ܹ�849�9��̻�,�t���:���:H;T��;�;D<�<�<X=�� �����=p>?d?l?	�����������������P�����������~�������p�����������������b��owx@	���������������������������������I���x���Y�����{�������������w�@	�������f�������������������y���S�������z�������������w�A���D	������������������������������������������������5x�A	�J�������������������������e��������������wxtB��	�����������^������������������@���A���B�C�Y�D�E�F�������[�x�B�Z	�O�V���P�c�}�R�S�W���T�R���e�����������������Z�����x`C��	���������`�����K�g�����������������h=y�C	�����E��������������y4D	�����T�����Q�����P�������d�B���o�h�����ylD	�i�������������^���������F���C���[����������������z�D	���������q�~�����s�����������U���h�������G�~��Ez<E��	�V�����������������������������f���t�����������c�����������E�z�E	�����W�����W���N�����������������A���������i���������q�z4F	�����������������g���������������b�����\�A��������{�F	���@�����B���C�j���D�F�G�H���g�X�I�J�������f���]�\��M{$G��	�����L�������K�����L�N�]���M���N�O�������{�D�Q���p�S�V�U�����R�{�G	�T�W���������������Z�m�X���Y�����[�\�����a�Y�t�^�������n�f�`�����{,H	�f���]�c�b�����������}�g�e���d�_���k�i���g�m�s��|�H����	���u�A�t���^�����_���M�p�o�q�n�v�l�j�r�h�������������`U|,I	�������h�����I�x�Z���z�����}���j���i���|�I�{���j����	�y���|�~���K�����j�������V���O�����������|J	�����d�����������_���������I�����������X��������}�J	�k���������^�����������������������|�������������O�y��]}�J	���T���|���P�����Y���������������������}lK	��������\�����������l���������������������������}�K	�������������������W�����������������~���������������M#~8L	�����������k���@������������������e~�L	���D�C�I�E�L���H�J�������M�Q�N�~M��	�B�w�x�������y���������z�|�{�~�}�~TM	�����������C���������X�i����+�M���`��	�����������������]�r�����������������D��m�M	�������������������B���������v���������������������������\N	���������������@�����������A�g���D�����������j��N	���m�����������������k�^���F�������������h3�HO	�����������l�����Y�_�Q�\�������C�Z��u��O	�������O�������@�������A�U�t��������P��	�����������B�i�����������W���������������[�D�~�����C�����Y�E��XP	�����������a�k���������������n�������Q�H�����������`���F���I��;��P	�������������X�G���N�����������p��}�pQ��	���������������a�������������n���M���J���Q�G�F�L	���C�K�O�P���U�T�V�Y�b�S�L�W�$R�����Q�Z	�X�]�[�^�a�Z���G�����\�`���_�J�M��d�hC�xR|��@|A�AlB���B��XC���C����P���,Dt�dD�D4E���E��(�,F�FG�G$H�H$I�IJxJ��J��dK�K0L�LMD�LM��T����M�MTN�N@O�O�OPP�PhQ�QR���\�pR�R�R	�f�N�O�b�c�g�e�m�m�j�i�l���n�����P���o�q�p���S	�Q�F�����u�t�R�x�Y�{�v�z�y�_���bǂTT	�T��S�����������R��	��T	�V�W����������U��������������K��T	�Y�R������������z����W���C�������Z���8U����	����]�������[�����\σ�U	���������������]�������L�������P�Q������U	�����������b�������l���_������S�TV	�������������������`���V��	�����a�X�����d�b�����c���]������f����ׄ�V	�������e�������g�i�h�j���������i�����8W	���������l���������k����������������[��W	���l���m����������W	�n�K�J�L�M�O�N���Q�P���r�[�R���Y���S�p���T���c�R�b�\�j�������U߅ X	�V�[�Y�X���E�W���������\�Z�{�����L�^���l�_�]���`�a�o�����f�c���b�E!��X�	�p��I�F�c����H�����s�q�r�t���������Mc�@Y��	�v�������������r�������������Y	�������������x�u���m�C�j�v�{�Z	���y���z���d�������{��)�HZ	���D�b�F�E�G�����I�H�|������k��Z�h��	�\�T�S�����������T���U�W�X�H�Y�Z�[���������Z	������}�����������������������v������G����[����^�|�����4[	�������������Z�����������\�������1��[	�I���g�D�J���E�o�M�Q���L�U���i�����R���O�P���N�K�G�����Ws�8\	�T�V�S�p���X���e���a�[�_�����Z�b�f�j�����\���d�Y�]�^�������\	�]��������������g���c�h�j���m�i���������l���k��8]	���}�x�@�q�J���D�U������y������J�����9��]	�[����\���Z�������{�^	�������������������r�u�����l�������d^	��������r�����������Q�A�`�������H���^LT���T$��T0U���U����U��LV�V�V0W�W�WX���X8Yx���,����Yx����Yh���@Z|Z�����Z��,[<����h��[\���0\����8��� ����\0]�]x�^\^�L��^@_��H_	������������s�������������������A�T`�	����t�`��r����������������`	�������e������������p����������H����������Ŋa	�����t���������������������������K���������xa	�������N�����f��������������������I��a	���~���u���W�������������`�H�@�������0b��@	��������B�����C���������n�������J�P�Q͋�b�D	���N�F�H�R�G�K�����L�O�E�E�I�F�d�O���������V�T��b	������������y���������Q�`c	���������������T�����������������������������������c	�������������J���]������������Ռ d��	���]�v�u�`���_���P�^���L�a�b�����c�K�������i�d���f�����td	�e�h�i�����g���]�f���r�m�w�����l�l�k�F�l�b�Y�����jY��d	�o�p�n���_���F�s���a�U�v�����r�w���t�u���q�����N�����b������he	�z�x�k�����y�z���_�{�������������~�|�@����}���������ݍ�e	����������������x����c����������tf�����G���d	���������G���o���^�����������������q���������w��a��f	����������������������������dg	�������q�������������N��g	�_�\�`���a�O�R�����b���]�c�f���e�d�y�g'��g�\��0����P��L����t��`ax�pa4��a(b�b��bXc��4x�<���c�<dldT��d`e�elfT	�f�	�
h
\g�g�g(��
x
8h@��L@h	�����x����V�^�����������B�����������k���y����K����������J�I�������i�Li	���x�Y����S�����s�X���s���i	��������A���@j����	�������������d�������������B�������j�������������t��������������/�pj	�������b�����������n��������������q�k��	�S���������������������������������z�����g��\k��	�e���_�L�����������������K�����k	����N������������������s�e�����e����|��7�l	���K������@�B���������A�C�����d���B����^�E�D�Fy�xl	��^���t���K���b�G�H�L�J�����I�����l	���O���������Z�M�N���L�P��8m	�V���Y�X�L�Q�R�U�W�����Z�T�S��?�xm	�^�_�`�]�\�����[�d�b���c�a���e���m	�f�h�������g���s�i�l�j�k�m�o�p�q�t�r�u�wÒn��	�x�M�y���z�J�[�������{�|�}�~����t�}������{�����pn	�����G���@��K���u������������B��������������������G��n��	���k������������������������I���P�����������o	���������������������������������r���������v���x���C������˓�o	�����z�{����������^����������@�B�A
�|p	�L���M�{�a�`�N���O�P�R�S�U�Q�T�����V�W�X�YO��p	���c�d�����e�]�n�f�g�y���h��@q�}	�|�~�{���������������Ӕ�q�	�����������@���������E��������q	�@����������������D�B��AW�Dr	����C������������L���N�D���E���r�F	���������������k�����������������h�������������V��ە�r	�����D�C�E�L�@�A�����B�H�Q�J�G�F�K�hs	�J�_�`�a_��s	���s�o�t�u�v�K���w�������x�z�y�{�|�}�~����������s��i�8jhj�kTk�klpl�l0mpm�mnhnt���nH|xo�otp@���px�8qd|qH�q�<rt�r�rh`s H � �s<!�!�s�!4"Tt�"8#\#Pe\t�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�\u����������������������������������������������������������������hv����������������������������������������������������������������������������������������������������������������@�A�B�Ctw�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������x��������������������������������������������������������������������y���������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�z�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������{������������������������������������������������������������������������|�������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�}�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������~���������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O��P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S��T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W(��X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������4���������������������������������������������������������������������������������������������������������������������������������@��������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[L��\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������X���������������������������������������������������������������������������������������������������������������������������������d������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_p��`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������|��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c���d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	���`vlwxx�y�z�{�|�}�~�؀������ �,�8�D�P�\�h�t����������� ��%�(�	��g���	����Ĕ	���������������X�^�u�}�~���������������������������������������I�ؔ	�I�W���������V�i�j���{�C�|�D�^�O�P�Q�R�S�T�U�V�W�X�F�G�������H���`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�m�_�n�O�Qh��M�����������������������������������������������������o�b�p�`	�������������������������������-�t�	�������P�U��o�|����Д`�l�t��&�������'��ȟ��Р$�4�<��)�+�.p@�SL`DiTud$��ȗ@'H'P'�З@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmmmmmmmmmmmnopqrstummmmmmmmvwxyz{|mmmmmmmmmmm}~������������mmmmmmm��������mmmm�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWWXYZ[\]^_`abcdefghijklmnoWWWWWWWWpqrstuvwxyz{|}~��������WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW@�	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""@�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	

 !"#$%&'()*+,-./0123444444444444444444444444444444444444444444456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	
















































































































































































�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx��	
������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

��������	

��������	

������������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8����	

 ��	

��	

 !"#$��	

��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 !"��	

 !"#$%��	

��	

��	

��	

��	

��	

��	

 !"��	

��	

 !"#$%��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#��	

 ��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

 !"��	

 ��	

��	

 ��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

����	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'(��	

��	

����	

��	

��	

��	
��	

��	

��	
��	

��	

��	
��	

��	

��	

������	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

����	

 !"#$%&'()*+,-./0123456789:;<=����	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!���������	





����	

����	

��	

����	

��	

��	

������	
��	
������	
��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

 ��	

 !"��	

��	

��	

��	
��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

 !"#$%&'()��	

��	��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

����	

��	

��	

������	

 !��	

  !"#$%&'()*+,-./0123456789:;<=>?�����	




; D��<t��dT��|zRx�$��0FJw�?:*3$"D�� \���<HoGNU��`K"��4����f���'���f��Ȟ���f�� o���f���
\PK"XK"���o`��
�P"0��(	���op���o�oV���oN" 0GA$3a1�iGA$3p1094 \GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignjapanese_sjis.so-2.7.8-141.el8.x86_64.debug���7zXZ�ִF!t/��]?�E�h=��ڊ�2N��|�I��h��wA!�Bir�s��wR��[x��AYa���j�_����"F�	��?>�+��4�QV��;��͕�'��4�v7��"x&Đ�ً�A�B�-(�s��&���,�1��"����\r�>�A��<5�Š$f�G��~m֏>����p��W�s�W��;�:,|�~���uu��H�?c� �^QT!Dt䍿c�~�%�ιIY$^t��z�q��{�n�����$��̱!_�<y{����]@��b	�U=
*�<�m��u
��g��2W��JB��)<�ED���W���3P�T3-Z"�J��9�� 0�SN5�&t��B��S�d^<��+�V-�]"��pF;-Ό�5���5��$R�:?�,��}ZX��%��.��eV�D��ݡ�lE��*�:�OpV�
x�hw!��L“�+D������_�Z�͚�48�b�kҾ��I�"���QrH�?(!�
��c�k��}�9�iS�6��Y��O��*�I�����s&�eP�I�·��(z�L�S ��E�j[��͘��%�F~�qV��к�
�B���a
��W��9�bZ3ɰ�&[YH��*%�t,�!5� ������i/�N�ͯ��;�qX�;�FՏt���kc�Nɟ8�+��q�Y�w�.3ދa�:�q7���]nxB<�<&D�c��x#�>��Ywը�`+�X���d���3j�����y�>�"+�0�O�^?��&J�p9�n�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oVVE���opp T��(^B��0h��c0n@@ w``�}\\
���J2 ��:�:$��:�:t�h;h; �PK"PK�XK"XK�`K"`K� �N"N���O"�O �P"P(�(P"(P�0Pb(P�
R0LRT�U+PKMH[w�lc����'lib64/ruby/enc/trans/emoji_sjis_kddi.sonuȯ��ELF>�@��@8	@�� ����!��!�� ��!�!��888$$������  S�td������  P�tdX�X�X�$$Q�tdR�td����!��!ppGNUH>�x�jI���#*�� �@  �	BE���|�qX{�� j , F"�(�!�0�!�(�!U`$__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_emoji_sjis_kddirb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	���!P��!��!��!��!���!���!@b��!�`�!�h�!�x�!@b��!���!��!��!��!�! �!��H��H���!H��t��H����5��!�%��!��h�������h���������%��!D���%��!DH�=��!H�z�!H9�tH�&�!H��t	�����H�=Q�!H�5J�!H)�H��H��H��?H�H�tH���!H��t��fD�����=
�!u+UH�=��!H��tH�=n�!�Y����d������!]������w������H��H�=��!����H�=E�!H�������H��H���UTF8-KDDISJIS-KDDI 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯	0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん�\ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω~�АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂=�	�p①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ	㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪��	亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭z�	院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改9d魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄9`機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈9\掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向9X后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷9T察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周9P宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾9L拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線9H 繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只9D#叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓9@&邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入9<)如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美98,鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋94/法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒902諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯9,5蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕	弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲�(8僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨9|:咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩9x=奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏9t@廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛9pC戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼9lF曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣9hI檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌9dL漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱9`O瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬9\R磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆9XU紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋9TX隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈9P[蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞9L^襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊9Ha蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮9Dd錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰9@g顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈9<j鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙	�8m纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱9�n犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"v�q9�t9�w9�z9�}9��9��9��9��9��9��ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯9��涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙9��髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	5��T��hx�	\XTPLHD@ <#8&4)0,,/(2$5 8t:p=l@hCdF`I\LXO。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚TRPULXH[D^@a<d8g4j0m�n�q�t�w�z�}������������������Ԙ�ܘ	���N���}�L���	Ț	�~��5
�w
p	�������������������������������������������������������������������������������
�����	���������������
��	�F�@�A�B�C�D�E�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�p�q�r�s�t�u�w�x�y�z�{�|�}�~����=���������������������������������	�vĜ���w
�	�]�\�e�f�g�h�����d�c���������0�	��������%x�	�T�U�V�W�X�Y�Z�[�\�]����������������g��	�����������	��������	�����������������������a��������������������-
0�	��������������o
��	�������������
Ȟ	���
�	�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S5���������	����������������������������������������������������wd�	������	��������������	������������=,�	����T���	���������l�p������(��������\����$�L�d������@�A�B�V	�X�Y�Z�q�r�s�t�u�v�w�x�y�z�����k�l����E�	�������������������������������������������������������������������������������������������������������������������������������L�����������������������������������������	�J�K�T�U�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�X��_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������	�E�[�R�SD�	������M@�	�����������\�	�e�i�`�c�a�k�j�d�l�f�n���	�_�m�b�g�h�~��������	�r�s�o�p�q�uU�	�t����D�P�<�8��T�x�����(��0�����	�������O�����s�^���N���������u���������L�������������O������h�	���T�v�V�����R�h����������������������]���T	�������\�����������]�������j�i�����������S�������������������������l�T��Y�m��	�����w�����������e�d�����t���W�����M�������������������C�N���O��	�P�������������x�����`���������L�Q�f����#��	���A�������Z���C�����R���]���������C�����������������ge�	�������T���������S�V�����U���������D�������N�����d�	�W�����E�r�W���������������������M�������C���o�U���������Z�Ԩ��L��x��\�̨P�+X�	�����q���{�����|���������[�����Y���l���������������`����m���X	�^���\�����������������������]�����������U����	���T���_�P�������b���B�������X�p�	�C���@�A�������l�D�a���E�H�F�m�G�I�`�K�J��3���V�M�N	���L���Q�P�O���R���S�D���U�T�W�V�Xu$��Y��	���Z�[���������b���[���e���Z�\�}���]�c���S�_�`�����Z�a���������T������b	�c���~�f���e���g���h�`�i�j�k�����d���n�l���m�y�o�p�q�~�u�s�t�r���v�����w�e� �	���x�y�y���������z����{�}�����}���f�~���M���������o����;Ȭ��	�n���������������Y���g�����������������������������h��}H�	�������������O�����U���������������������������n�����ȭ	�c�����������������h�������i���w�������[���J�������N@��j��	�u���E���������������k�������������������M��������������C���l����	�����m�������������k�����x�������n�����������C�������@����\	���������������������������P���m�����T�����K�����o���p�����������į	�����p���������������~�X�}�����q������	\�	�Q�������y�F�o�����f���������r���b�p���������@�����������������j�E�����i��K��	���h�e���g���D�����@���f���N�����i���������������z�����������\���	�C����������������������������������������	�����u���a���������t���B�����v�@���]���P���D���CD����i�A	���������E���N�F�G�����L�K�N�M�J�wS��	�S���O�H���I���S�B���Y�X�O�����P	���U���R���[�V�W�T�Z�Q�`�e�a�`��\	�f�P�x�h�A�^���b�[�������c�_���i�g�r�i���d���c��	�m�k���p�j�n�l�k�o�r�w�u�t[�	�Q���q�s���R�v�������}�{�|�~�`�	�\�X�x�y�����������������������	���d���������X����������!���������	�����������d���l�����c�������}��������c0���	�������������������������y�������\�n�����������	�����V�������B�y�����z�R��������	�������^�����C�_�����{����)T���	�����}�|�������������W���u�������|����k���x	������������������������������g�����������	�����Y�����h�������������U�����o���m�T�	��������������n�����������������1��	�����d���������������������������m�p�s��������������������s�	������������[�O���g�������������V���v�������������������	�����������t���_��z������������������������D�������z�@�D��	�A�@�����D�J�W�d�����B�E����W�i�F�������9��	�G�o�n���������K�L�I�W���H���P�����p{�	�����Q�O���R�P�N�P�M�����V�W���L��S�K	�k�U���X�w�Y�T�����	�}�Z�Q�[�_�\A к	���^���]���k�d�a���`�b�c�e�f� ��	���h�g�i���l���d�j�m�n� @��q	�o�p�q�r�E�s������t�u�y�F���G���v�w�w���x���y�z�{�}!|��~	�����F�����v�����G���@���������X�����q�����G���{���Q���������e�hI!���	���������������x������������Q���@�����������J���R����������������������!��	�������������������q��������������������������A�������K���s���A�!0�����	�����������r�����������W���j���w���������R����"��	������������Z���������x�������������Q"4�	����������������������������s���"��	�������������R������������������"�	�������������������������#0�	������������������������������Y#x�	������������������B�����H���I�������������b���J���F���#ȿ	�s�z���������������������t�����A���������X�#D���	���������y�����������������������N�����K�������c�H����$��	���L�������������X�M�{���x�����������N�fa$(�	�����p�����L�����f�@�C�D�B�_���F�E�A�G�H�I�L�J�K�M�����N�����U�O���$��	���P�M�Q���T���������U�|�����V���O�o����������W�X�^��������Y�J�e�$�	�Z�K�[���\�]�_���`�a�b�S�R�c�`�F����V���j�d���e�e�f�����i'%�������h�g�a��	�m�k�j�������l�k�]���p�o�n�q���r���z�s��������O�t�Ji%4�	�S�K���E�u�u�Y�Z���z����w�����y�O�x�v���|�%���h����|����@���8���8���T���T�ܱ<����X����X����(�����L����L����������D���Ⱥ�8�t����(���,���ؾ(�p���<��� ������,��� ��(�	�������{���|�������v���}�}�������������������%4�	�����������������P����������~�������p�����������������b��/&��	�������������������������������I���x���Y�����{������������q& �	�������f�����������������y���S������z�������������&�����D	���������������������������������������������& �	�������������Q���T���������������������d�S�����������������c���|7'��	�J������������������������e��������������y'(�	���������������������������������������������'����	�����������^�����������������@���A���B�C�Y�D�E�F�������[�'�����G	����������H�������K�I�L�J�M�����}���N�Q��?(|��Z	�O�V���P�c�}�R�S�W���T�R���e����������������Z�����(��	�c�S�]�d�_�f�b�a���[���Y�����U�X�S�����`�q���g���@�h�m�i���n�A���E�\�(`�	���k�w�l���g�������j�����U�����p�})��	���J�q�s�o�����{�������~�����x�����PG)L��v	�|���{���u�z�r�t�@�|�|�����T�y���T�����[�w�d�f���}�~���)����	���������`�����K�g����������������h�)$�	�������������r�������������g��
*��	�����E�������������O*��	�����T�����Q����P�������d�B���o�h�����*�	�i������������^���������F���C���[�����������������*`���	�������������������x�������������U����+��	��������q�~�����s�����������U���h�������G�~��W+4�	�������|���k�������l�������������������a�f�z�V�������{�+��	���������������������������������U���|���{���������+��	�V��������������������������f��t����������G����������E,��	�����W�����W���N��������������A���������i��������q_,�	�����������������g�������������b����\�A��������,��	���@�����B���C�j���D�F�G�H���g�X�I�J�������J���]�\���,���	�����L�������K�����L�N�]���M���N�O�������{�D�Q���p�S�V�U�����R%-��	�T�W���������������Z�m�X���Y�����[�\�����a�Y�t�^�������n�f�`����g-�	�f���]�c�b�����������}�g�e���d�_���k�i���g�m�s���-������	���u�A�t���^�����_���M�p�o�q�n�v�l�j�r�h�������������`�-�	�������h�����I�x�Z���z�����}���j���i��-.���{���j����	�y���|�~���K�����j�������V���O����������o.��	�����~���������[���������������������B���������������.h�	�����H�����������_���������I�����������X���������.���o��	�����������A����������������������������������������5/P�	�k���������^�����������������������|�������������O�y��w/��	���T���|���P�����Y���������������������/L�	��������\�����������l���������������������������/��	�������������������W�����������������~���������������M=0�	�����������k���@������������������0���h	���������@�w�������K�G���F�E�B�0��	���D�C�I�E�L���H�J�������M�Q�N18�	���O���R�S�T�U���������~�W�V�Y�\����E1��	�\�[�]���V�^���`�_�a�b�c�~���������c�������d�e���f�1���g	�i�h�w�}���c�j�l�B�k�m�n�o�p�q�s�r�t���i�u�E�k�v�a�1P���	�B�w�x�������y���������z�|�{�~�}2��	�����������C���������X�i����M2����`��	�����������������]�r�����������������D���2d�	�������������������B���������v���������������������������2��	���������������@�����������A�g���D�����������j3P�	���m�����������������k�^���F�������������hU3��	�����������l�����Y�_�Q�\�������C�Z���3 �	�������O�����������������U�t�������3x���	�������������i�����������W���������������[���~�����������Y��4��	�����������a�k���������������n�������Q�������������`����������]4X�	�������������X�����N�����������p���4����	���������������a�������������n���M�����48�	�������������������������������H�B������#5��	���Y�����R���A�������������������Q�@��e5��	�������N�I�������R�K���H���k�E�D�M�5T��G�F�L	���C���O�P���U�T�V�Y�b�S���W�5�������Q�Z	�X�]�[�^�a�Z���G�����\�`���_�J����d�h+6���������� �����t���X���D����x�����X���,����������|���������`���H���D��������0�|���H����\���H����p���P���0�����L�����`��h�	�f�����b�c�g�e�m�m�j�i�l���n���������o�q�pm6t�	���r���s�����D�������6��	���F�����u�t���x�Y�{�v�z�y�_���F�6�	���}�G��~�|�w�B�37`�	���������������R��u7��	���������������������������7��	���F��o���n���M���7(�	��R������������z����W���C��������;8l�	���������������������u���}8���	�������v��������������S�q�����������84�����	����]������������@9��	������������_���������������K���T��C9��	���������������A�������L�������P�Q�����9L�	�����������b�������l���C�������9��	�������������������D	:����	�����E�X�����H�F�����G���]������J����K:,�	�������I�������K�M�L�N���������i�����:��	���������l���������O�����������������:��	���P���Q�������;@�	����Z�@�Z�A���B�C�D�F�G�E�r�I�HS;t�	�R�K�J�L�M�O�N���Q�P���r�[�R���Y���S�p���T��c�R�b�\�j�������U�;��	�V�[�Y�X���E�W���������\�Z�{�����L�^���l�_�]���`�a�S�����f�c���b�E�;T�	�i�d�e�h�g�D�a�`�^�j�k�l�n�m�u�v���p�r�t�]�u�s��<��	�o�q�a���x�w�y�������z���|���{������s���}�~[<X�	��������������<��	���������������������������o����S�<��	�T��I�F�c����H�����W�U�V�X���������M!=��	��u�~�m�v��������X����������������������c=��	���������������^�����������������=l���	�Z�������������r�����������=��	�������������u������������������)>�	�����������������m�����Z��������k>`�	�������������\�u���m�C�j�v�{�>��	���]���^���d�������_���>��	���������V�����O���q���������������m��1?4�	������������A�@������C�Bs?��	���D�b�F�E�G�����I�H�`�������?���J�V	�_�F���S�P�O�c�L�N�j�_�M�K�I���[�����Q�R�?(��h��	�\�T�S�������d�f�T���U�W�X�H�Y�Z�[������9@���G��	�\�H���b�]���d�`�a���`�^���_����{@���H	�b���c�����B�d�e�t���g�f���i���l�j���m�k�e�@P���	���m�s�o���n�����n�p�q���r�n�t�����u���v���@��	�������w�����y�{�x�z�A�|�E���q�~��M�AA �	������}������g����������������v����h�G�j��[����^�|�����A|�	�������������J��}�y�����������A�	��M������������}����������������B|�	�������������Z������k����\�������IB�����	������z��������������U�������BP���	�����������������������������������B����	��������������������������������C�	���H���������������e�S�l��������������������������������QC\���	�������W�������������f�����������n���C���I	�@���g��C���[�R���B���h�������A�f�a�������F�����G�a�I�����H�CD�	�I���g�D�J�m�E�o�M�Q���L�U�n�i�����R���O�P���N�K�G�����WD��	�T�V�S�p���X���e�p�a�[�_�����Z�b�f�j�����\�o�d�Y�]�^����YDP�	�]������������q�g���c�h�j���m�i���������l���k�D�	�����n�u�o�v�r�����t�q�w�p�c�D�k�s��{�~�|��z�`���D<�	���}�x�@�q�J�r�D�U������y������J�����E��	�[����@���Z�������aE$�	�����Ep�	��s����������������r�u�����l������E��	��������r��������t��Q�A�`�������H'F��	���������K���������������������|��iFp����X����� �d���,�����D�����$�����8�l���L���P����x���d����X�����,����� �����H����t��t���H����T���<���H��4����h�����h������s�V	�l���������������k�������������������^���F�	�����������������������������������E�����W���F<�	�����������]�������I���������������b�����m�n�����x/G��	�����_�w�������������E�������������E�\qG�	�������e������r�����E�]���B�Gx�	�A��t���D�C�o�r�T�H�I���G���F�J�����B���G��N	�O�K�L�M�p�U�Q�����G�P�S�R�c�V�W�V�X�Z�^�[�Y�^7H(��\	�]���d�_�`�a���c�b�e�f�g�b���h�����L���v�i�j�P�kyH��	�l�m�n�o�����p���q���r���s�����C�w���M�t�q�u����w�������v�D�H��x	���z�y�|�{�}��~�����������F������H��	����������H�����m�c���F�|�����?I��	����������c�����������������p������IP�	�v����������s��������������������I���	����t�`��r���w��������xJ(�	����������������������GJt�	�����y�e������������p����������H����z������J�	���������G��������������������������J8	���{�t���������������������������K��������
K�	�������N�����f���������|����������OK�	���~���u���W�������������D�H�@������KH��	�������������U��������������K���@	��������B���}�C����~����n������J�P�QL��D	���N�F�H�R�G�K�����L�O�E�E�I�F�d�O��������V�TWLX	�m�S���U�W�X�[�Y���Z���M���\�a���`�L�	�A�b�h�]�_�^�P�A�d�c����e�f�L	�g���s�i�|�������j�k���l����Md	���q�r�m�\�n�a�o�p�z�t�w�s_M�	�u�v���x�`�u�a�{�^��|����}�~�g����������M��	�I���������w����������MX	���X����I����������������%N�	��Z���������gN�	������������I�a��NH	�����������y����������N���	�����O�s�����p�X���q�����t�����\����������������-O�	�����U����������������������������������oOX	���������������T��������������������������������O�	�������������J���A�������������O(	��������������A�@�C�B�D�P�E�F�G��5P|	�v�H���e�I�J���K�K���`�L�o�M�O���N�e�P�Q�R���S�T�UwP��V	�p�W�X�Y���G�Z�[�\�PL��	���]�v�u�`���_��P�^���L�a�b�����c�K�������i�d��f�����P�	�e�h�i�����g���]�f���r�m�w�����l�l�k�F�l�b�Y����j=Q		�o�p�n���_���F�s���a�U�v�����r�w���t�u��q�����N�����b���Qx		�z�x�k�����y�z���_�{������������~�|�@����}���������Q�	�d�y��	��������������u����w����T����R�
	���������������x����c��������ER�
�	�]�����Q������R`	�J���R�	�����L����������������^��S�	�����e�����L�������v�n�����������������������M���������\���fMS�����G���d	���������G���o���^�����������������q�������w���S�	��������������������������S,
	�������q������������NTp
	�����z������������UT�
	�����������������������������H���H�����T�
	�����x��������H����T<	����@�D�A��B�C�J�E���G�I�F�L�R�K�MU|	�N�Q�P�O�S�R���U�T�V�W�Y�X�g�Z���[�]�^]U�	�_�\�`���a�O�R����b���]�c�f���e�d�y�g�U0	�r�i���h�q�k�m���j�l�p�n�P�o�r�y���S�s�A�u�t�x�`�U�	�w���v�{�z�y�Q�|�}�~���D���#V�	�h�������������C�J�_��������HeVH	�I���v�}���������������R��q���������V�4����p��� �������H��� �l��0��@��P�\��P�@��P� t�D|�p	�	|
�
X����$
h
�
�
4t�(��@������	����t�����������r�������������������A����T�i������N��V	�����x����V�^�����������B�����������k���y���K����������J�I�������+W�������	�����W���M�������@mW`	���x�Y���S�����s�X���s�W�	������A���W�	�����U���z�����������|���������V�����y���_3X,	�����������������X������������������uX�����	�������������d������������B������j����������t�������������X�	�����b����������n������������X��	�S�����������������������������z���g;Y���	�e���C�L����������������K��}Y<	���N������������s�e�����I���|��Y�	���K������@�B������A�C����d���B����^�E�D�FZ�	��B���t���K���b�G�H�L�J�����I��CZ`	���O���������Z�M�N���L�P�Z�	�V���Y�X�L�Q�R�U�W�����Z�T�S���Z�	�^�_�`�]�\�����[�d�b���c�a���e	[<	�f�h�������g���s�i�l�j�k�m�o�p�q�t�r�u�wK[�	�v�[�	���[���	�x�M�y���z�J�[�������{�|�}�~����t�}������{����\	���������������S\�	���������h�j���\���	������~����������@�w���������A�������������z�\	�����G���@��K���u������������B��������������������]�����	�Y���W���������G������������J�������_������d[]��	���k������������������������I���P���������]�	���������������������������������r���������v���x���C�������]	���������������������f�������������!^�	���������������B���������C��c^�	�����������{�����a�����������z�����j���o����p����^8	�����z�{����������^����������@�B�A�^�	���C�D�E�F)_	�H�G�I�����H�Q�J�K���Z���������O��k_0	�L���M�{�a�`�N���O�P�R�S�U�Q�T�����V�W�X�Y�_�	�Z�\�[�^�a�]�_�`�b���_�	���c�d�����e�]�n�f�g�y���h1` 	�����w�������m�����l�j�k�i�w�n�o�p�q�s�r�xs`d	�t�v�R�u�����x���y���z��`��}	�|�~�{����������������` 	�����[�9a\ �	���������������������E������{a� 	��������������T���S�a� 	�@����������������D������a@!	�����������������L���N������Ab�!�	��������������I�����������~���������b�!��	���������������k�����������������h�������������V���bH"	�����L��������������c�"	�������������P����Ic�"	�����������������������������������c,#	�����D�C�E�L�@�A�����B���Q�J���F�K�c�#	�H�G�{�L�M�N�I���O���S�T�Rd�#	�Q�W�P�U�V�Y�X�[�\�]�h�Z�����^Qd($	���_�`�a�dt$	�b���c�d���d�$	�e�f�g�h�k�i�[�j���l���m���n�p�q�o������������e�$	���s�o�t�u�v�����w�������x�z�y�{�|�}�~�������Ye$%	���C����l���@��e�%	��V��������������������e�%	�����s�f,&�X��$��x�4��X��4����������0�(|�\� T x � 8!�!�!@"�"�"$#�#�# $l$�$�$%�%�%$&H&afP&�f��@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~��X'�����������������������������������������������������������������d(����������������������������������������������������������������������������������������������������������������@�A�B�C�p)�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������|*���������������������������������������������������������������������+���������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G��,�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������-�������������������������������������������������������������������������.�������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K��/�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������0�����������������������������������������������������������������������������1�����������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O��2�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������3���������������������������������������������������������������������������������4���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�6�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������7���������������������������������������������������������������������������������������������������������������������������������8���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�$9�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������������������������������������0:���������������������������������������������������������������������������������������������������������������������������������<;�������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�H<�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������������������������������������������������������T=���������������������������������������������������������������������������������������������������������������������������������`>���������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�l?�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������x@����������������������������������������������������������������������������������������������������������������������������������A���������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c��B�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������C����������������������������������������������������������������������������������������������������������������������������������D������������������������������������������������	�f�E�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������$F�����������������������������������������������������������������������������������0G�����������������������������������������������������������������������������������������������������������������@�A�B�C�<H�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������HI���������������	gTJ�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~	��J������������������������������������������������������������������K����������������������������������������������������������������������������������������������������������������	Ig�L�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~	��M��������������������	�g�N�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~	�(O���������������������������������������������������������������������������������������������������������������������������������4P��������������������������������������������������������������������������������������������������������������������������	Ig@Q\(h)t*�+�,�-�.�/�0�1�2�3�4�5789(:4;@<L=X>d?p@|A�B�C�D�EF�(G4H@ILJ�J�K�L�M�N O,P8Q<R�gDR�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~	�S���������������������������������������������������������������������������������������������������������������������������������T��������������������������������������������������������������������������������������������������������������������������	IgU	��hV	��Qh0V	�s�~���������B�Y�a�b�c�e�i�l�u���������������������hDV	�I�����������i�j���{�C�|�D�^�O�P�Q�R�S�T�U�V�W�X�F�G�������H���`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�m�_�n�O�Q��V�M�����������������������������������������������������o�b�p�`	��������������������������������h�W��������������������������������	i�X	������P���YixY�TUV(V<V�V�W�XpY�Y�i�Y(��i�Yw
�Yj�Y��������� �(�ؠ`���,�l��H'P'�R�Y�Y�Y�Y!j�Y@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmmmmmmmmmmmnopqrstummmmmmmmvwxyz{|mmmmmmmmmmm}~������������mmmmmmm��������mmmm�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWWXYZ[\]^_`abcdefghijklmnoWWWWWWWWpqrstuvwxyz{|}~��������WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW@�	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""@�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	

 !"#$%&'()*+,-./0123444444444444444444444444444444444444444444456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	
















































































































































































�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx��������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

����	

������	

��������	

��	

������������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8������	
��	
������	
��	

 !��	

��	

 !"#$��	

 !��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'()��	

��	

��	��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	

��	

��	
��	

��	

 !��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

����	

 !"#$%&'()*+,-./0123456789:;<=����	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>>>��	

��	

 !"#$%&'()*+,������	

 !��	

  !"#$%&'()*+,-./0123456789:;<=>?��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!����	
�����	




;$�8��@(9��h:���zRx�$�8��0FJw�?:*3$"D�8�� \�9��$HWGNU�P��!��\Z@bk��V����@bk��V���(
���!��!���o`��
��!0��h	���op���o�oX���o�!`pGA$3a1(�GA$3p1094`�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignemoji_sjis_kddi.so-2.7.8-141.el8.x86_64.debug����7zXZ�ִF!t/��
��]?�E�h=��ڊ�2N�H7�n ���OY��)c�5���2����~�?ܖ�|���D|�J+�RZ@#npU @z�.4���4��d��Ȉѣ���(��P��kb��l�`��{B$	95��L�U�E<Da����d���b�K�T魢0H?�k�ݷ2%2V� p�)�q-���,6ZC^������{�B�"8eL��5�v�)�p1Zk�P�>��匭�h�C��<�R}f�(Ç|��<�s��.�[#LAjN0��g��-��:��8Q%��\u�4�_k-���p����L<|$&1�Azd�n2T@�Rj���W™Ԅ�zŒ_6�en)�ě���<\mZ��a��H�>Ul����j�B#lZ��,�v"<���́��O
�!V!�\LT�@�@,K4�t@_f�g%۶4"}c��\K�P�H7�*;;����ow��[�&x�B��Tb
pef��%�����%A�Rl<��wثC�s����7��R,�PU^�K�zRH�{�׺�	L��{�f�@�5π.��=3���1_�	��~42�n{���<:7������S�o�O
#a݃�1^z�{d�O?���f/�z��8LJ_����8U�_�R$j� ���օRx֖݌���8v��
k�۴�O)��`��%�s�i�]4���s�;��cHV��X��LZ�pC�e+����[���Fc�3(>�I���m�&I՜T�z�O��u޻�+Ꮃ
�I�|��܌���?��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oXXE���opp T��h^B��0h((cPP0n�� w���}��
����� �X�X�$�����t����� ���!�����!�����!��` ��!�����!�� ��!�(�(�!(��0�a(��
�4P�<��+PKMH[}�0㸾��*lib64/ruby/enc/trans/emoji_iso2022_kddi.sonuȯ��ELF>P@x�@8	@���� P�P�!P�!�� ��!�!��888$$������  S�td������  P�tdH�H�H�TTQ�tdR�tdP�P�!P�!��GNU����?'b�o���O��d��@�!	BE���|�qXWw�[ m , F"�(�!�0�!�(�!U�
<__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_emoji_iso2022_kddirb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P�!	X�!�`�!`�!��!��!
��!�5��!@Ы!	ث!	��! 	�!�
�!�	�!�
 �!
(�!8�!�5H�!@p�!	x�!	��!�	��!
��!Ȭ!ج!�5�!@`�!h�!x�!�5��!@�!�!�!��!�! �!��H��H��!H��t��H����5�!�%�!��h�������h���������%ݧ!D���%է!DH�=ѧ!H�ʧ!H9�tH�v�!H��t	�����H�=��!H�5��!H)�H��H��H��?H�H�tH�E�!H��t��fD�����=]�!u+UH�="�!H��tH�=~�!�Y����d����5�!]������w�������1��fD���H��tc�>�H��t;<tA�$�ABH�Q�fD���F����vH�BH)ȃ�@�r�f�<t޸$H�Q�A@f����DI�Ȅ�tA�(�ABL�AfD�	��I�@H)ȃ�A�����?��HD��f.����?�t���!<^H���9H���ff.�@���>t'�?���D����Ȁ�A�F�Ȁ�A��f��~(�T�t%��@t8��Bt1����1��f.���Bt1���Ju��1��fD�1��f���1��?t�(�FBf������H��H�=a�!�l���H�=��!�`���H�=��!�T���H�=ݡ!H���D�����H��H���stateless-ISO-2022-JP-KDDIUTF8-KDDI
$,��H�PXY`ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲�t夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯��涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰�|蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙�髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑N� 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇��◆□■△▲▽▼※〒→←↑↓〓∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯\D0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz�$	ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん	(
ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ^�ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω��АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя��
─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂C�①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪eP亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭��院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応�,押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改��魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱�4粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄��機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京�<供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈��掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲�D検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向��后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込�L此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷��察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時�T!次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周��"宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償�\$勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾��%拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾�d'澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線��(繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎�l*臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只��+叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵�t-帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓��.邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到�|0董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入�2如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦��3函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美�5鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服��6福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋�8法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満��9漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒�;諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃��<痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯� >蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕��?弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲�|@僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨�B辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨��C咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉�E圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩��F奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓�H屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏��I廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚�K悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛��L戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼� N據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼��O曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍�(Q棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣��R檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾�0T沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌��U漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼�8W燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱��X瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰�@Z癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬��[磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐�H]筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆��^紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺�P`罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋��a隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙�Xc茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈��d蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙�`f蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞��g襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫�hi譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊��j蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸�pl遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮��m錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞�xo陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰��p顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷��r髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈�t鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠��u堯槇遙瑤凜熙�w�0w��x�8z��{�@}��~赶﨣軏﨤逸遧郞都鄕鄧釚�H�釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"́�t�|�<	 
x��
�H�$�,�4�<�D�L!�"T$�%\'�(d*�+l-�.t0�1|35�68�9;�<>�?t@�A|CE�FH�IK�LN�O Q�R(T�U0W�X8Z�[@]�^H`�aPc�dXf�g`i�jhl�mpo�pxr�s�uw(w�x0z�{8}�~@�ā@�`H������	������������������aԄ	��������	��	���������������������������������������������������������������������������������������������������������������������'$�������	���������������������iЅ	����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	����؆�/,��,�	������������������������������������������QD�	��������������	���������������������������������������������������������������	������������	�	������Y	,����	������������������������������������������������������������������	D�	����������������������	��	������������������
܈	���a
�	�������������������������������������������������������������
�������������	�������������������������������������������������������������������������������
x�	������'�	������������������i�	�������������������@�	�������h����	������������/��������$�<���Ԉ���p����8�`�x���q��������������	����������������������������������������������������������	���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`�������������������������������������������������������������	���������������������������������������������������������������������������������������������������������7
l����������������������������������������������������������������������������������������������������������������������������������������������������������������������	������������y
X�	���������
T�	���������������
p�	���������������������������������?��	���������������������������Ў	��������������������	������,�X�d�P�L��h���Ȏ��$�<�GD������	���������������������Ϳ�Т�������У����������ʺ����ξ�������Ф����Х����Ц����ð����Ч�Ш�|�	�Щ�ǵ����Ƿ�������˳����Ъ����Ы�������������֦�������������	�Ь�Э�λ�ͽ����Я�������в�������������������������г�д�е�˴�ж����������������������μ�з�и�й���
h��������о	�м�н����������л�к�ʩ�������¾�п��������������������������������������������Ǥ���O�������	������������������Ȳ������������������ȼ���������������������	����â����������������ͤ�������������;�������������դ�������������ʻ���������������	����������������������������������������������������ե������������η���x�	����¥�������������������������¯�������������������������������������ɶ���������������W���`������p��d��l�	�����������������������������������������������������������������������������������������	���������������������������������������������¦��������������	���˵����������������������ѣ�����������_��	�Ѥ����ѡ�Ѣ�Ư����������ѥ����ν�Ѧ�ѩ�ѧ����Ѩ�Ѫ����Ѭ�ѫ��ȡԔ����Ѯ�ѯ	����ѭ����Ѳ�ѱ�Ѱ����ѳ����Ѵ�ͥ����Ѷ�ѵ�Ѹ�ѷ�ѹ�8��Ѻ���	���������������������������Ѽ����������ѻ�ѽ�������Ѿ�������������Ȭ����ϻ�������ʼ�¶����ŵ���%�����	������������������������������������������������������������̽������������������������������������������������g4�	���������������ο�����������������������������������������������������������ȡ���ܖ���	�������ʬ�������������������������������Ƚ��������������������������������������\�	�������§�������������������˶�������������������������������������������-ܗ	���������έ������������������������������������Ң�ң�������ϫ�ҥ����Ҥ���oT�����Ҧ	����ļ�ͦ����ҧ����ư�Ҩ����̳�������ҩ����ҭ����Ҫ����ҫ�������Ү�ү�Ұ�ұ��������ޱ̘��������	����Ҳ����ҳ�ҵ�ҷ�Ҷ�Ҹ����������ҹ����������Һ�������һ�Ҽ�ҽ�Ҿ�ɤ�������ƿ�T��ҿ���	�����������������Ⱦ�������´����������ñ����������������������������������¨������������������5ؙ	���������������������������������������������������������wp�	����������������ͧ����ȿ������������������������������������������á����������������������������������������ݹ̚	����������������������Ʊ�̾���������������������������������������������������ʭ���������p����	�Ϥ����������������������������������̣����������������̿=�����	�������������������������������ӣ��������ӡ���Ӿ���������ӥ����ӤX��������Ӣ	����������Ӧ����ӯ�ӧ�Ө�������ӭ�Ӭ�ů�Ӯ�ӫ���̜	����������ө����Ӫ����Ӵ�ͣ����Ӻ�ӹ�Ӱ���,��ӱ	����Ӷ����ӳ�������ӷ�Ӹ�ӵ�ӻ�Ӳ��������Et��ӽ	����������������ӿ������Ӽ����������������������������������������ć��	�������ԧ�������������������������������0�	�ò���������������������������������������t�	�������������������������������ʮ����ȸM�����	�������������������ǹ����������������������������	���������������������������������������������������D���	������ԡ���Ԣ�ԣ�������Ԥ�Ԧ�ԥ�Ԩ����ԩ�������������Ԫ�ԫ�ԭ���Ԯ	�������˷�Ԭ�ԯ����������Գ�������ó�԰����ԴU�	����Բ�Ե����Զ�Է�������Թ�Ժ����Ի�Ը�h��Ա	�Լ�Խ�������������Կ���Ծ����Ǹ������������������������������	�Ʋ���������������������������������������������������ʽ���	����������������������ȹ�������������Ŷ���������������]h�	����������������������������������ʯ����������������ȡ	�����������������������������������������������������������������������������������������	�������������������ͼ����������¿�������̴�������ŷ�����������������������������#��	�������������������������������������������������������������å���ʳ�������ա���e�	�բ�ǡ�������ǥ�ի�������̯�֬�գ�զ�������˸����է���������������	�ը�������������������լ�խ�ժ�������թ����ɱ�����������	�������ղ�հ�̼�ճ�ձ�կ����ծ�������շ�ո���+`��մ�Ϭ	����ն����չ����պ�յ�̻m��	����ջ�ɲ�ռ���ս��	����տ����վ�������������������������������	���������������������������������3T����	�������������������������¸�������������������������������¹����֣������������u�����	���������������������������������������������������������������ͨ�����������������������������ɷ����	�������������̩����������������������������������������������������ǫ����������������������������������������	������������������������º�������Ƴ���������������������������������������������������Ǣ;D������	��������������������֢�֡������Ÿ�°������������֤�֥�������֧�֨}ԧ	�֩����֪�֫�������������֭�̨�������֯�ֱ�������֮�ְ�ֳ�H�	�ֲ�ִ�ֵ�ƽ�������ֶ�ֻ�ֹ�����������ָ����ַ��	����ּ����������ֽ����־���������������������C�	����������������������ֿ�����������������΅D�	�������������ֺ������������������������������������	�������������������������������������������������������������̦�������������ç���	 ܩ	������������������ġ����������������������������Ģ����������˹K X����	������������������������������Ȩ����ʾ�������ʿ�ǯ��������������������ͩ������ ��	�ģ���������������������Ź��������������������������������� <�	������������ϭ��������ס�פ�ץ�ף������ק�צ�ע�ר�ש�ת�׭�׫�׬�׮�������ׯ�������Ƕ�װ��!��	����ױ�Ϯ�ײ���׵�С�б������׶����Ĥ����׷�ʦ����������������������׸�׹�׿�������ĥ����׺�ɫ���S!0�	�׻����׼����׽�׾�������������״�׳�������ɧ�������ɷ�Ħ��������������������������ʕ!Ĭ������������������	����������Χ������������������������������������������������ħ����Ű�������!H�	����ɬ����Ǧ�������˺�˻�������������������ح����ǰ������������"ح�|�̔0���,�ԖT�ԗL�ĘL�Йh�Ěh��P�Ĝ$�l���(�l�����<����`����`����������X���ܤ�L������<�̧@����<���ԩP���4���(���@�Э4��<�	������������������������������������������������������������������["H�	����������������������������������������������������������������������©���������"��	�����ء����������ا������إ����أ�ؤ���آ����ͪ�������ئ�Ǻ����������ج�ذ����ة����خ�"4�	����د�������ث����ر�������������ت�ب������������ؽ�������ظ�ص�ض����ع�ؼ!#���ط���	�غ�ش�����ؾ�ؿ�������س�������������ػ�����������������������������c#4�	���������������������ز������������������������������������������θ��������������������������ݥ#��	�ͫ������������������������������ʰ�ƴ�������������������������#<�	�������������������������������������Ĩ������������������������)$����	����������������������������������������١����٢����٣�٤����٥�٦�٧����������˼k$�����٨	���������������٩����ʧ����٬�٪�٭�٫�ٮ�ʱ����������ٯ�ٲ����$�����	�ٰ�ٷ����ٱ�������ٳ�ٴ�ٸ����ٵ����������ȴ����������ڭ��������ٻ�������$��	����ô�پ������������������ټ����ٺ�������ٶ�ٹ���������������������������������������������������ٽ1%t�	�������������������ĩ������������������������������s%�	�ª����������������Ľ������������������������������DZ�%`����	����������������������������������Ϋ����õ���������������������������������������%�����	�·������������������ͬ������������������������������9&8�	����»���������������������������������������{&��	������Ŧ��������������������&�	�������������Dz����Ƶ�ű�����������������������ڥ���&�	����ڧ�ڣ�ڤ�������ڢ�ٿ�ڦ�ڡ�ګ�ڬ�ŧ�ڮ����ک����گ�ڨ�ڳ�ڲ�ڱ�ڴ�ڶ���A't��ڵ	�ڹ�ڷ�ڸ����ڻ�ں���ڼ�ڰ����ڽ�ھ���ڿ��������������'�	�������������������������������������������������������������Ũ�������'H�	�������ʸ����������������������������������������������������������������������(��	����������ι����������²������������������������ö������������������������I(0����	���������������������������������������������������������������������������������������ۦ�(��	����������������������������������������������������������������������������������(0�	��������������������������������������Ī�������������˽�ۢ���������)��	���ۡ������ۣ����ۤ������ۥ�ۧ�ۨ�۩����������۪�۫������������������������Q) ����	�������ͭ��������۬����Ŀ�ۭ�ϯ�˾�ī�ۮ����ۯ�۰����̤���������۲�������۴�۷�۶�������۳�)��	�۵�۸������������¼�������ۻ����۹�«�ۺ�������ۼ�۽����������������ۿ������������������������)(�	������۾��������������������������������������������������������������*��������	������ɢ�������˿�������������ͮ�����������������������������������������������Y*(�	��������������������������������������������������������ϛ*�����������������	�������������������������������������������ɰ���������������*�	�����������������������������������������������������������������������������+|�	����ܲ�������������������ܡ�ܣ�ܧ���ê����ܫ���ܨ�ܢ����ܬ����ܪ���a+������	�ܦ������̺������������ܥ����ܯ�������ܱ���ܰ�ܩ���ܭ�ܮ�ܿ����ܤ�ܻ�ܽ��أ+d�	������ܸ����ܾ����ܵ��������������������ܷ����ܺ�������ܼ����ܴ�ܶ�ܳ�ϰ����ܹ�+�	����������������ϱ���������������������������������������',`�	�����������������������������������������������������������������������i,��	���������������������������ɸ�����������������������������������������������î�,,�	��������������������������������������������������,�����	����������ݡ����������ݬ�ݨ����ݧ�ݦ�ݣ/-��	����ݥ�ݤ�ݪ�Ϧ�ݭ����ݩ�ݫ�������ȧ�ݮ�ݲ�ݯq-L�	����ݰ����ݳ�ݴ����ݶ����������������ݸ�ݷ�ݺ����������-��	�ݽ�ݼ�ݾ����÷�ݿ�������������������������������������������������������-�����	���������������������������������������������������������������������������7.d����	�����������������������������������������������y.��	�������̱����������������������ɹ��������ۻ.0���������	�����������������������������������������������������������.x�	���������������������������������������������������������ʨ���ޡ�������������?/��	�������������������ˡ���ޤ����ޢ���ˢ�������ť����ޥ�ޣ�������ˁ/d�	�������ް�ޯ����ެ����ƶ�ަ����������ީ����ޮ�ޭ�ި�ޫ����ު����/��	�ή�������޶�޴����ޱ�޳�������ϲ�������������������޵04�	�޺�������Ͱ�޷�޲�޸����������������������޾�����G0�����	�������޿����������������������������ø������������������������������ʥ�������޻����ź���0��	�������������޽�������޼�������������������������������������������¬�������������������������0l�	����̫�������������ù�������ͯ���������������������
1����	����Ȯ�������������ί����������������������������Ů������O1L�	������������������������������������������ũ�ߣ�������1��	����ɺ�������ϳ����ߢ��������������̡�����������ߡ���1�	����������߯�ߪ����������߳�߬�Ĭ�ߩ�������ߦ�ߥ�߮2h��ߨ�ߧ�߭	����ߤ����߰�߱����߶�ߵ�߷�ߺ����ߴ����߸W2��������߲�ǻ	�߹�߾�߼�߿����߻����Ǩ�޹����߽�������߫�����������ə2���,���,���4�������l��X���0���ض�l��@���(���(������ ��� ����t��\�ܿX���$����D�����\���(�p���\���,�����d���D����`����t��|�	���������������������������������������������������������������2��	�����������������������������3��	����ϧ�������������������ú��������������������_3$�	���������������������ˣ���3t�	����������������ʲ����̵����������3��	�����������������������������������������������������%4��	������������������������������Ǯ�����g4<�	����dz�����������������������������������������������������ࢩ4��	�������������������������������������������4����	��������������ĭ������������̶����ϴ����ʪ�������������-5H��������	��������������������������������o5��	�����������������������������������������������ì����ϵ���5��	���������������������������������ǭ����������ͱ�Ͳ�������5`�	���������������������������������������������56��	����Ψ������������������������w6����	��������������������������������������������������������6@�	������������ΰ�������������������������������������6��	�����������������������������������������������������=7��	�����������������������7T�	������������ɻ������������������������7��	�����������������������������ż����������������������������ͳ����������Ҵ�Į�����8��	��������������������Ȫ����α�����������ȫ�ɭ���ά���������������������������������������E8h�	����������������ɥ�������������������������������������������������������8��	���������������������������������������Ρ�������������������������������8l�	���������������������������������������9��	�����������������������������������������������ȯ���������ɴM9 ���	������Ū�������������������������������������������������������9��	���������������������������ݹ�������������������������ľ���������9�	���������������������������̲������������������į���:�����	���������������������������������������U:��	����������������������������Ʒ�����������������ڗ:$�	�������������̷�������������������û�������������:t�	�������������������������������ˤ���������;��	�������������β�������ȣ���������];�	��������������������������������������������������������;H�	�����������������������������������;��	������������������������������������#<�������	����������ʹ����������������������Ǫ����ɼ���������e<<�������	�Ͻ�����������ʡ������������������ǩ��������������ŧ<��������	��������������������������������������������<����	������������̭�ɣ���������������������������������������������+=d����	���������������������������������������������������������������m=��	���������������������������������������������������������=4�	�������������������Ω�������������������������ε�������������������Ƹ�������è�������ü�������ѿ����������=��	�������������������������ū�������������������������3>,�	���ɮ�Ȧ����������ȵ��������������������������������u>��	������������������̧����������������������ý����Ȣ���Ȥ�>�������	����������������������������������϶���������>d����	����������������������������������������������������;?�����	������������������������������������������������}?�	����������ʴ����̰����γ�������Ǵ����������������������������������������������������?p����	����������������������ʵ������������������������������@�����	����������������Ǽ�ɳ������������������ʶ����������������������������������������C@X�	���������������������������������������������������������������������帅@��	����������³����������������������������������������������������þ���������@d�	������������������������������������������������������������������	A��	������������������������������������������˥�����������������������������KAP�	��������������������������������������������������������������������������A��	���������������������Ż���������������A8�	�������B��	�����������������������������������������ȳ��������������SB��	����������������������������������������������������������B�	�������������������������������������������������������B�����l�����4�x���@�����X����8�����L�����`���d�������x����l����@�����4����\���,���$�����\����h���P���\���H���0�|�����|����������Ϸ	�������������������������������������������������������ÿ���C��	�������������������ʹ������������������������İ�������������ϸ���[CP�	����������ȥ���Ͼ�ȩ�������ɪ��������������������������������������������ٝC��	����������������������������˦��������������ƹ������ǽ�C,�	�������������̮�����������������æ�Ǿ�ı��!D��	���������������������������������������IJ�ʢ������cD����	����������������������ɨ���������������������������ǿ�D<���	����������������¡����������������������������������������������������D��	����������������ڪ����������������а�����������������������������������������������������)E ����	�����������������������������������������������������������kE��	����������������������������������������˧������������E�	���������������������������������������������������������������Ed�	������������������������������������������������������1F����	�������������������������������������sF<�	��������������������������������������ϵF��	������������������������������������������������ɩ�����������������F��	����ƺ�������˨��������������������������������������9GL�	����������Ϊ������������ơ����������������������Ǭ�����������{G��	���������������������������������������������������G�	�������������������������̬�������������˩�ϡ��������G\����	�������̢��������������������������¢���AH������	�������������������������������������Ƣ�����������鲃H���	��������������������������������������������������������Hl�	������������������ƣ��������������������I��	���������������ݱ�ݢ����������������II0�	�������������������κ���������������������Ix�	����������������������������������������I��	������������������������������������Ⱥ��������������������������J����	�˪�������������������������������̪������������������QJl�	����Ϲ�������������������������������ij�����J��	���ͻ������������������J$���	������������������������������K\�	����������������������������������������YK�����	�������������ާ�������������������������������ɽ�����������������������ޛK��	�������������������µ����������������������������������������Kl�	���������������΢����͵����������������Σ������������������������������L��	�������ʣ����������˫�������������������������aL<�	��������������������������������������������L��	������ʤ����������������������������������������������������L����	���������������������'M`����	�������������Ƥ�������������������������������ˬ��������������������������iM��	����������������������ɾ��������������������������������������������������˫M�	������������������ǧ����������Ͷ�������������������������������������ï�������������Ĵ�M��	���������������������������������ĵ���������������������������͡�����������������������/N����������	�ƥ������������������������������������������������ɵ���������qN��	������������������������������������������������������N���	�����������������������Nt�	�ë����7O��	���Ʀ���˭��������������������Ю�����ɿ����yO�	��������������������������������������������������������������������������������������Ž�����ǻO$��������Ϩ������	�������±��������������������������������������������������������������O��	����������£���������������������������?P@�	����������������������������������P��	����Ķ�������������­�������P��	�������������������������������������������ϩ�ķ��������Q�	����������Ƨ����������������GQP�	��������������������������������������Q��	�����������������������������������������Q�	�������������������������������ž���������������������
RD�	����������������������������������������������������������͢�����������OR��	�������������������Ų������������������������R�	����������������ҡ������������ä������������������é�R\�	�������������������������������������ų�����������������������S��H���$�����4�������\���4�����D����T�����d���(�p�����d����T�����d���4�����X����������l��������8�|����H����<����T������������	�ƨ�������������Ʃ�������������������������������®�¤������Ϣ���������������������ɯ��WS(�	���������������ͷ������������������ƻ�ã����������½��������������������Ŭ��������������������������������S�������������	����������͸����ˮ������������š�St�	�������Ϻ�������������������͹������T�	�������������Ţ������_T�	����������������������������������������������������������������T@�	����������������������Ȱ�������������������������������T��������	����������������Τ����������������������ţ������������������������������������������������������%U��	���������������������������������������������������gU�����	�Ŵ������������������������������������ȭ��������������������ȩU����	����Ƽ�������������������ĸ����������������UP	������˯����������������������������������������������������-V�	�����������������������������������������������ϣ������Ͽ������oV	������������������������������������������Vt	��������������������������������V�	����������ŭ�����������������������5W	��������������ƪ����������������������wWP	����������������������������������������������������������عW�	���W�	�Ĺ=X���	�������������������������������������������������������ȶ������������������������X$	�������������������������Ʈ������������X�	������������������������Y����	�����������������������������������������������������������ƫ���Φ������EY	����δ�������������������������������������������������������������������������Ȼ�Y�������	�ͺ������������������������������������Υ�������������ʷ���������������Y0���	���������������������������������������̸�������Ϫ����۱������������Z�	��������������������������������������������������������������������������������������MZ(	������������������������������������������������������Z�	����������������������ǣ�������������������Z	����ĺ�����������������������������������������������Ƭ����������������[L	����������������������������ſ���������������������U[�	����������[ 	�����������������������Ҭ�ݻ�������������˰����[D	�������������������������������������������������\�	�����������������������]\�	��������������������������������������ɟ\4		���������������������������������������������������������������\x		����������������������������ƭ������#]�	���	������������������������������������������������e]
	���������������]p
���	������������������������������������ȱ���ɦ�������������]�
	���������������������������ݵ�������+^	�����������̥�����������������ϥ��������m^T	�����������ʫ�����������������������������������^���	�������������������������������������������������������^���	���������������������������������������������������������������������������3_\	�������í���������������������u_�	�Ļ����ȷ����������˱�����з_
	�������ƾ������������������������������������������_@
	�������������������������̹������˲���������;`�
	�����������������������������}`�
	���������������������������������`<	����������a�	���������������Ca�	�������������������ϼ����������������������������������������������a�	�������������������������������������������������������������������������������a8	�������Ť����������������ɡ���	b�	����������������������������������������������Kb�	�ζ���������b@��l���8�������H��l��H������(� ��D�<��,	p	�	
h
�
�
L��T�
8
�
�
4���0��8\�bdc,�	������������������������������������������������������������������������3cl������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	uc��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�c����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�$�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�c<���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�@������������������������������������������������������������	;dL ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�c�"����������(48D � �!�"�#}d�#���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�($�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������4%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	�c@&	��ƿdD'	���eX'	������������������������������������������������������������������������������������������������Cel'	�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������'���������������������������������������������������������������������������������������������	�e)	�������������������e�)�,%8&<'P'd'�')�)�)	f�)<�Kf�)��)}f�)���ȅ��І$�4�<��t���@����� �\d $�)�)**�f*@BBJ$(!~�����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^��	
��	

 !"#$%&'()*+,-./012345��	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUV��	

 !"#$%&'()*+,-./0��	

 !"#$%&'()*+,-./0123456789:;<=>?@AB��	

 ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS��	

 !"#$%&'()*+,-./0123����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[���������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

����	

������	

��������	

��	

������������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8������	
��	
������	
��	

 !��	

��	

 !"#$��	

 !��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'()��	

��	

��	��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	

��	

��	
��	

��	

 !��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

����	

 !"#$%&'()*+,-./0123456789:;<=����	

��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!��	

��	

 !"#$%&'()*+,-./0123456789:;<=>>>��	

��	

������	

 !��	

                                 ����	
�����	




;T	�j��p�j����k����k���xl����l����l��Hm��hm��(zRx�$@j��0FJw�?:*3$"DHj�� \k��
pk�����k����k��!��k��~�,l�� �8l��<HoGNU�	�`�!
l�5�g@�J		 	�
�	�

8�5�g@�J		�	
t*�5�g@�J̄�5�g@�J����
�
P�!X�!���o`��
��!0��	���op���o�o\���o�! GA$3a1��
GA$3p1094	�
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY		GA+GLIBCXX_ASSERTIONSemoji_iso2022_kddi.so-2.7.8-141.el8.x86_64.debug��7zXZ�ִF!t/��/b]?�E�h=��ڊ�2N�aEcӇ��
��mL,"i��[�Q1�У��������CPz/�!���·_��2����"4&��Z`���?��1L��!YU��m�f�6�@���M�;?V,P/�^&=s�g�����j�`�o�>M�1;?}bV�6E���U��J0.�A�۽ս|�?����U��Q��M+��zn�CL^�0+��9`j�oݶ/S��$�xbghukmG4�3dN�͛^���	<�[�h(znn��*6_�gb�M�GH���Mk�Gg�&�wm����&)5���r"���Eש8�i��=S`��~ �۞*���~����F�ØM�:�*W�j_a:�
v�&�ʆirG��ds���ɪ�b�B*`8����n�}�}��b��c�!�~���i&�/3��C�E���Nt�Q�*����88Q��;�:�(���Al��p���!��d7j7����Y��r����	e��^Y�C9qv98�J#���>(}�OO�\o��\�I@Lv�(�I
�[�3��7����h��τ^�~���tA97�):?�Mo2l���E,aTjl�\���,��o0�?	&y��b�����@;7�a�j�X��
�P� ۾�!�lҰ>�ކU���PTf+��Nd�V����'�]���Kz��Xd�k�3�+�؈�G�S7��%�d�����&�}�M���O�c��꿼���6�]����Ś&�*V������2�!E�%�y�&6�VU�CZ>�t�'�B�b��o@L� x�����?& ���cj/��#Cx���7����iY�'��6.>���vbs׍�u�(5C8g/
�dө?��m�;Wf�!vh�|���_}�п�����Gh��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���o\\E���opp T��^B��0h��c0n00 wPP�}�
�

�F� �H�H�T����������� �P�!P��X�!X��`�!`�� ��!����!� ��!�(�(�!(��0�a(�D
l�8���H�+PKMH[<��f��lib64/ruby/enc/trans/korean.sonuȯ��ELF>P@��@8	@�� P�P�#P�#�� ��#�#��888$$���  S�td���  P�tdD�D�D�$$Q�tdR�tdP�P�#P�#��GNU=���@���p�.��7��@ A	BE���|�qX�� a , F"�(�#�0�#�(�#U<__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_koreanrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P�#X�#�`�#`�#��#`��#f��#���#� �#f(�#`8�#�H�#���#lȬ#fج#��#�`�#fh�#lx�#���#��#�#�#��#�# �#��H��H���#H��t��H����5�#�%�#��h�������h���������%ݨ#D���%ը#DH�=Ѩ#H�ʨ#H9�tH�v�#H��t	�����H�=��#H�5��#H)�H��H��H��?H�H�tH�E�#H��t��fD�����=]�#u+UH�="�#H��tH�=~�#�Y����d����5�#]������w������H��H�=A�#����H�=��#����H�=�#��H�==�#H�������H��H���CP949UTF-8EUC-KR	������������������������������������������	����������������������Bd	������������������������	����������������		��������������J	�������������������������������������������������������������������������������D����	����������������	��������������������������������������������������������������������������������������������������$��������������������������������	��R��LL	���������������������������d	������	����������:�	����������������|�	�����������������������������������������������������	���������������������	����B���	������������������������������������������������	���������������L	������������x	��J�	��������������������������������������������������������������	�����������������������������������������������������0	�������������������������������������������������������������	��������������������������������������������������������������������������������������������������������R,������������������������	�	���������������������������������\����	�����������������	������������Z���	�������������������������	������Dp��(�$T��	H	�P	��������	�������������������������� �		������������������������������������������������������������������������������������������������������������������������������b
����������������������������������������	�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������	��	������������������������������(	���������������������������������������������������������������������������������������������������������������������������������b$
������������������������������	j	0����������������������������������������������������������	�	|	�����������������������������������������������������������	����������	����������������������������������������������������������������������������������������������������������������0
�����������������������	����������������r
��	��
(t�|���
�����	��ز��߲߾�����������ܰ������ӡ��
 	��Ҭ��޿��������������������߭��8�	կ�������������������������������������Ӣ��z����	�����˿���������������ֵ�����������X	���������������������ֶ������ʡ��	��ӣ������������������������ʢ��������@	�������������������������ٲ���������|	���������������������������������������|�P�t�8
@	ܱ����������������������ۧ�����������������H
p	��ʣ̧��������������������
���	�ۨ�ߡ�����������߿���
$	�������������������ʤ���h����	�������������������P����	�����������к������������Ү����������׿����ܲ�����������	���ٳ���ή٢�������֩��	�����������������������������������	������������֪���ܬ��ߢξ����������ʾX 	�����лշ����˧�����������������	��м�ױ�������ʥ֫���ҽ̤����	������������������������ٴ�������������в�ڨ0	��������������������ˡ�������`�ϡ�	���������س�������������ܦ�����������ʿհ��������	�������������������t	�����������������������ϢͯϣͰ�У���ʦ����������&�	�����������٣��������������������������������h$	����ͱ����Ͳګʧ����٤���	����Ϥ�������������������	������ʨ���������.	��������������������pT	������Ӻ��������	���������������������������Ӥ��	�����������������6	��ʩϥ�������xH	���������x	���ޭ��������	ҥ�������������ַͳ>�	��������������ӥ���Ф������	��г۩ӻ�����������������Ϧ���@	���������ϧ��	����������������������F���	��̱��˨����������������������	�������������������������������X	���������������������������	��Ӧ��������פ��������������������N�	����������������������������L	����ү��Х��������������������������ҳҿ������	����������������۪������� 	��ٵ���ʹ�������˩��������������VX 	������Ҧ���������ش������ 	ץ����������� 	��ڬ�� !	ʪ������������^@!	���������ޮ�p!��	����������ݡ������͵��������ݢ��������!	���������������������ί�������������������������ʫ�����$"��	��������Ϩݣ��������Ҽج���������һ�����ΰ�����������f�"	������������������������۫������Ͷ�ڭ���#��	�����������ܳ�צ��������ߣ����#	���˪���ˢ�����ھ��ֹ�,�#�	����������������n $	����������˫������X$	ڮ��չ������$	ϩ���������ֺ���4�$	��ص�����������������������������v�$	��������������������������ٶ���P%��	���۬��ح������������Ҵܴ�������������%	������������ݤ����ͷ������ˬ���<&	����֯��ϪΩ�����������������������~\&	ܧ��������������������������˭����&	��ˮگضӧ����������������ޯ�����ۭ�����'����	���������������������������������ڰ�������D|'	�����������������ҷ������'�`��|���(��l���L��@p���8���P��D� P � � !8!h!�!�!�"#|#�#$P$�$�$�$H%�%�%T&�&'t'�'((b0(	�����ֻ�����������̥�<)	�������������ο������������Ҹ������
|)	�����������������������������ڿ���L�)	����������������������������@*	�����������������������������������*	��������������ٷ��������طα�������������˯���*	���������޻�����������̨���������Ӽ��TX+	���������������������ϫ����+�	���������������н�������������ۮ�,���	���������������ݦ���� h,�	�̼������������������������\ �,	����ҹ������������������Ϭ���������������͸���� -	������������ظ��� |-	���������������������Һ��"!�-	���������������������������d!�-��	��Ц����������̩����ߺ�!H.	�������������������!�.	����ؤ�ٸٹ��*"�.	����߮�ҵ��������������ӵl"�.	������̪������ӽ�������պ�������������"@/��	����������ջ��͹������ۯ���"�/	ͺ��������ϭ�������ߤ������ͻ����ݧ��2#�/	ְ�����ް�����������������ݨ��������Ө۰���t#T0	۱�������ײ������ө���������������������#�0	���۲����٥����������ܵ������������������ܶ���#,1	������������������������������ع���������������:$�1	��ʬ���������������٦ͼ����ٺ������������|$ 2	��Ӿ���������������������������غ�����$�2��	������������������ѡѢ������ڱ����������������%�2	��ߴ�������������ѣ��������������������B%`3	����۳�����������ͽ���ʭʮϮ���%�3	ܷ��ٻ���������ϯ��ʯҰ�׳����������%4	�����������������̫�&|4�����	������������������J&�4	������������������������������ڲ�&5	ѥܸ�Ѥ�������о��������͡ߵ�ԡβ�&\5��	�������٧�����'�5	�������������������ڳ��������п�����R'�5	���۴�����״���'L6	;��ϰ������Ϊ��Ч�����'|6	������ק�������ټ�����������(�6	��������й��Ѧ����Z(7Ӫ	̬������������ޱ���(<7	Ԣ�����������(x7	ձ����ղռ������ѧ��γ )�7	����ʰ��ϱ��������������������b)�7	��������������ֱ޲��ӫ��߯����)<8	���ϲ��ٽ��Ը���������پ��ϳ�)�8	������Ѩ�޼���(*�8����ϴ	���ߥ������˰�����������ڡ̽ѩ��j*9	�Ѫ�����������������ک������������������Ϳ�����*p9	������������������������������������*�9	��֬����զ�����������������������0+L:	׵���޳����������ݩ���������r+�:	������������������������+�:��	�������ѫ�����ԣ�ר��ӿ�����������������������+8;	߶���������Ԥ����������������������ڴ���8,�;	��ڵ�Ӭ����������������������z,<	���׶ϵ٨��ݪ͢�������,p<	۵������������ԥ��������ػ�,�<	������ש������خ���ؼ��������@-=	��̾���������������������������-P=	߻������������������������Ӷ�-�=̭��ֲ��	��������Ԧ��ս����޴��.�=t)�)8*�*�*P+�+�+`,�,�,t-�-�-@.�.�.�.8/�/�/L0�0$1�12|2�2X3�34t4�4�4T5�5�5D6t6�6�647p7�7�748�8�89h9�9D:�:�:0;�;<h<�<�<H=�=�=H>bP>	����Թ���׷��޵��������������������ճH.\?	δ��������ؽ����϶����.�?	�����������������������ܹ������.�?	֭�����է���������/P@	�������������������P/�@	��֡������������߰����������������/�@	��������������������������/A	����������������������������ԧ�0`A��	����մ����������ݫ������X0�A��	����������Ժ���޶ٿ�����ڪ����̲�0B���	Ի��̳���0`B��	��������Ϸ�������������1�B	����������������������`1�B	��������Լ�����ִ�ӷ���1C	�����������ϸ��Ѭ������޷ּ�����1TC��	ʱ��ߦ�����������ը����������Ш���������&2�C	��Ϲ�����׸�����������ѭ��Ѯ�����ε������������h2D���	�����������������׹��������إ�����2�D	ѯ����֢������������Ѱ�����������������2�D	��������ζ�����������.3\E	̴ܺ��������ߧ�����������ˣ������p3�E	дͣ�������׺���������������������ѱ˱Ѳ�3F	˲�����������ߨ���������Ӹ���������3hF	ʲܻ������������������ئ����64�F��	����������׻�תx4G	���������������ͤ��ۡ�����4LG	���������������٩�4�G	���������������Ԩ����������������������>5�G	����ڶ����������������54H�	�����Խ����ԩ�����5tH	��٪ؾܭ��������̡Ϻ6�H	����������ϻӭ�����F6�H	�������������6$I	Щ����׼�������6TI	ѳ�������������ܡ�����ا7�I	�۶���ͥ��ب��Ѵ����N7�I	���������������7J��ѵ	Ѷѷ�����������������������Ѹ���70J	������������������Ԫ��������Ծ8�J���	ܼҶ��Ρ���������������V8�J��	���������������������������ԫʳͦ���8$K��	��������������������ϼ�������8�K	�������������������Ъ9�K	�Ы���ء����ܽ�����������Ӯ��������^9L	����������آݬ�ֽ��9xL	�������������������е������9�L	������ѹߩ���η�������$:M���	�����������Կ��f:DM	����ӯ����������ֳݭ�:|M	վ����������ڷ�:�M	���أ�����������������������,;�M	��������˳��ͧЬn;,NѺ	�����������ڢڣҡ���������������۷�������׫���������;\N	���������̿��թ�������������˴�̵Ͻ�;�N	������������˵�������ѻ�������4<<O	�����������Ӱ�������������֣��v<�O	���������������������׬�����<�O	�����������������̶ͨ���ͩ�<8P	������������տ<=�P	ݮ���~=�P	�θ�������������������=�P	�Ѽ��˶ڸ��־��������������>Q	�������ֿ��������������������D>`Q�?�?H@�@�@AXA�ABXB�B�BCLC�CD�D�DTE�E�E`F�FGDG�G�G,HlH�H�HILIxI�I�I(J�J�JK|K�KLpL�L�L<MtM�M�M$NTN�N4O�O�O0P�P�P�PQXQ�Qb�Q���	���ѽϾ�ұ�����Ѿ�������>�R	�����޽��ڤ֤��������������>S	����������ѿ����������̷۸���������
?XS	���������ˤ��������������L?�S	�������������������������ޡ�?T	���ݯݰ˷������������������?LT۹	̮����ݱد�������������������@�T��	ޢ�����������������������Ͽ�T@�T	�����������������˸��ۺ����������@@Uݲ	���������������������@�U	��������ݳ���߷���������������ۻ����������A�U	��������ʴ����������������\APV	�����ʵ����٫���������������A�V��	�����������������A�V	�������������ݴ�ذ��"B$W	��ι����ж΢�������������ޣ������dB`W	��Ԭ����������ؿ���ժ�B�W	���������������Э���B�W	�����ߪۼ��������*C,X��	٬��������������֥���lCdX	١����߸�׭���������������C�X	����������������������C�X	��ڹ�˹������߱������2D0Y	������������������������ΫtDtY	���������ܢ��յա�D�Y	��������������������D�Y	ڥ۽�������:E0Z	��ӱ�������������|EXZ��	������ޤ���E�Z	�����������������F�Z	����٭����բBF�Z	��������������F[	�������������FD[��	���������ʶ������������߹��Ҥ������Gp[	�ٱʷ����Ӳ���������JG�[	�֮��������������ޥ������գ��G\	����������������׮���G\\	˺���������H�\	�������̸Ю����̯ԭ��������RH�\κ	���������H]��	��ݵͪ���������������������۾������ʸ�����H0]	����������������������������������I�]	��Σ����������ͫ������������Τަ�����ZI�]	����������������������������������������I\^������	�ں������ۿ����˻�������׽�����I�^	��������������ާ��̹���� J$_�	ܨ����������bJl_	��ͬ�J�_	�������������������������J�_	���������ݶ��޸������λ�������������ި�����(K�_���������	�ʹ����޹�������������ݷ�Ԯ��ݸ����jKd`	��������������K�`	�������Яݹ���Ka	������������ݺ�0L0a	��ۢ�ʺ��������Υ��ԯrL`a	������������L�a	����԰�������������L�a	������������8Mb��	��������������ʻ��zM0b	�����������������������֦ܾ����������������Mlb	�������������M�b	����ո��ܩ�ܪ�����@Nc	��������ʼ������̦ڻ�����N@cSPS�S�SDT�T�T8U�U�UHV�V�VWXW�W�W$X\X�X�X(YlY�Y�Y(ZPZ�Z�Z�Z[<[h[�[\T\�\�\](]�]�]T^�^_d_�_�_�_\`�`�`(aXa�a�a�a(bdb�bc8c�cb�c�����Ա	���������������Բ������������������֧�����а������N�d	����������Φ����Գӹ�����������̺���������������ס����O e���������	��رܫդ����������������������HO�e	��������ݻά��Դ�Of	������ީ��ӳ�ODf	��������������ٮլ������߫Ppf	���������������ۣ����PP�f��	�����������������ݼ����������P�f	��̢��߼��з�����PTg˥	����������ۤ����Q�g��	���������ٯ����������XQ�g	����������˼�Qh	�������������������������Q,h	��֨ΧԵ��Ӵ�����Rxh	������������������`R�h	��������ׯ��R�h	�����������Ri	���������&S4i	�hS\iڦ	����������������˦������б��������Spi	����������μ��ܣ�S�i	ݽ����������.T�i��	��ݾװ��˽�����������������������Զ�����pT$j	����������̰ͭ������������������T�j����	��������������������������������ڧ�����������T�j��	���������������߬��ܤ�6Ulk	��������ުڼ�����������xU�k	��������������U�k	������Է��������U(l�������	���������������������������޺>VXl	Ψ���������׾��������V�l	��߽���V�l	����ޫ��������������������Wm	������������ܿνFW\m	����������������W�m	����������ة������������W�m	��������ʽݿ�����խ��Xn	޾�������������NXDn��	�����������������������Xxn	�����X�n	������ۥY�n	��ע���СVY�n	����ۦ������ت�����Yo	����������YPo	��������Zto	�������������^Z�o	˾ܮ��Z�o	�������ٰ���Z�o	���������$[p	̻��������f[(p	������[Pp	ͮ�����������[lp	�ն,\�p	�������n\�p	�������������ث���\�p	�������̣���������ڽ�\q	�ܯ����ެ4]@q	����������������v]hq	ף������]�qe�ef<fhf�f�fLg�g�g�g$hph�h�hi,iTihi�i�ij�j�jdk�k�k lPl�l�lmTm�m�mn<npn�n�n�noHolo�o�o�o�o pHpdp�p�p�p�p8q`q�q�q�]�q����	��������������������������������������������������������<^�r��	����������������������~^Ds����	�����������������������������������������������������^�s	������������������������������������������_t��	��������������������������������D_ht	�����������������������������������������_�t	���������������������_u����	������������������������
`Tu����	����������������������L`�u����	���������������������������������������������������`�u	�������������`\v��	������������������������������a�v	������������������������Ta�v	�����������������������aw��	�������������������aPw��	����������������������������b�w<s|s�s`t�tuLu�u�uTv|v�vwHw�w�w\b�w����	���������������b$x	�����������������������������bXx��	����������������������������������������������������"c�x	����������������������dcy	���������������������������������������������cXy����	�������������������������c�y��	����������������������*dz	��������������������������ldHz	�������������������������d�z	�����������������d�z	������������������������������������2e�z	��������������������������������������������������������teT{����	�����������������e�{	�������������������������������������e|����	��������������������:fd|	����������������������������������|f�|	�����������������f�|	������������������g(}��	����������������Bg\}��	�������������������������������g�}	�������������������������������g�}����	��������������������������h,~	����������������������������Jhx~��	�����������������h�~	���������������h�~	������i 	��������������Ri<	���������ih����	�������������������i�	����������������������������j���	������������������������������������������Zj�	�������������������jt�����	�������������������������������������j����	�������������������������� k�	����������bkP�����	���������������������������������kt�	�����������ḱ��	��������������������������������(l�	����������������������������jlD�	�����������������������������������������������������l������	�����������l���	����������������������������������������0m0�	������������������������������rm��	�����������m���	�����������������������������������m�	������������������������8n\�	����������������zn����	�����������������n̄��	�������������������������������������������������������n�����	����������������@o��	�����������������������������������������������o����	���������������������������o$�	����������������pl���	����������������Hp������	�������������������������������pІ	�����������������p$���	������������������qT�	������������������������������������������������Pq����	�������������������q��	���������������������q4�	����������������rl�����	����������Xr��	�����rȈ	�����������������r�Px�xyPy�yz@z�z�z�zL{�{|\|�|�| }T}�}�}$~p~�~�~4`���l����H�l�ā�<�����(���؃��T���Ą��x����d���Ȇ�L����,�d�����؈�b�	��s�	������������`s0�	���������������������������������������sX�����	�������������������������������������s����	��������������������������������������������&t���	����������������������������������ht��	�����������������������������������t؋	�����������������������������t,���	������������������������������������.ut�	����������������������������puЌ	���������������������������������u�	�������������������������������uh���	��������������������������6v��	��������������������xv��	�������v4���	�������������������������vP�	����������������>w��	�����������������wĎ��	���������w�	��������������x�����	������������������������FxD�	�������������������������������������������������������x����	�����������������������������������������x�	��������������������������������������������������������yl�����	����������������������������������������������Ny�����	���������������������������������y`���	�������������������������������������y������	����������������������������������z�	��������������������������������������Vzp���	�����������������������������������������������z̒	���������������������������������������������������������z<�����	��������������������{������	������������������������������������^{����	���������������������{\�����	�����������������������������{��	��������������������������$|���	��������������������f|,�	�����������������������|h�	�����������������|������	��������������¡¢£¤¥¦§¨©ª«¬­®¯°±²,}ԕ³	´µ¶·¸¹º»n}P�	¼½¾¿�������������}��	���������}����	����������������������4~�	������������v~ �	�����������������������~H�	�����~��	��������<��	������������������������áâã~��	äåæçèéêëìíîïðñò��	óôõö÷øùúûüýþÿ�h�	����������������D���	�����������������������������	����������������Ȁ$�	��������������������
�T�	��������������������L���	������������������ę	ġĢģĤĥĦħĨĩĪīĬĭĮЁ�	įİıIJijĴĵĶķĸĹĺĻļĽ�P�	ľĿ����������������T�������	��������������������������������ؚ	������������������������؂,���	�����������l�	�������������������\���(�P����x�Ћ$�l�Ȍ�`����,�H�������<����d��X����h�Ē4����T����$�`���̕H�|���ؖ�@�|������`���ؘ�L������H���К$�d���ěb̛�	����������؜	šŢţŤťŦŧŨũŪūŬŭŮ��	ůŰűŲųŴŵŶŷ"�T�ŸŹ	źŻżŽžſ����������������������d���	�������������������	������������������������������	������������������������*�`���	������l���	�����������������	���ơ���Ƣƣ	ƤƥƦƧƨƩƪƫƬƭƮƯưƱ2��Ʋ	ƳƴƵƶƷƸƹƺƻƼƽƾƿt�h���	��������������������������������������������������	����������$���	����������������������������������:�D�	���������������������|���	�ǡǢ���ǣ	ǤǥǦǧǨǩǪǫǬǭ��Ǯ	ǯǰDZDzdzǴǵB�@�	ǶǷǸǹǺǻǼǽǾǿ���p�	���������������ƈ����	�������������������������������������ܡ	��������������J�8�	������������������������������������d����	���������ȡȢȣȤȥΉ��Ȧ	ȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵ��	ȶȷȸȹȺȻȼȽȾȿ������R�X�	������������������������������������	����������������������������֊�	����������������������������������������8�	���������Z����L�����X�������`����<������8�h���ԡ0�\����P����0���Ĥ��̤����������έ�Ти�����������������������������������������������������ҢңҧҨҩҪҫҭҲҾ��������������������������������bX�����������������������������������������������������եիծָ����������ܥݥ������߳�����������������������������bd���������������������������������������������������������������������������������������������������bp������������������������������������������������������������������������������������������b|�������������������������	���	������������������������������������������������������������������������������������������������������������������������������bȩ��������������������������������������������������������������	��Ԫ	�������������`�\�h�t�����̪X���B���\����������\��<��DT\�	h4)T?�R�d�rx�МP�����ȫЫȌث 、。·‥…¨〃­―∥\∼‘’“”〔〕〈〉《》「」『』【】±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬��X�⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®	�ܭ!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[₩]^_`abcdefghijklmnopqrstuvwxyz{|} ̄���ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺㄻㄼㄽㄾㄿㅀㅁㅂㅃㅄㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟㅠㅡㅢㅣㅤㅥㅦㅧㅨㅩㅪㅫㅬㅭㅮㅯㅰㅱㅲㅳㅴㅵㅶㅷㅸㅹㅺㅻㅼㅽㅾㅿㆀㆁㆂㆃㆄㆅㆆㆇㆈㆉㆊㆋㆌㆍㆎ����ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ	ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω��─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃╄╅╆╇╈╉╊	ߎ0�㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙㎚㎛㎜㎝㎞㎟㎠㎡㎢㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰㎱㎲㎳㎴㎵㎶㎷㎸㎹㎀㎁㎂㎃㎄㎺㎻㎼㎽㎾㎿㎐㎑㎒㎓㎔Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆	?�P�ÆÐªĦ	IJĿŁØŒºÞŦŊ㉠㉡㉢㉣㉤㉥㉦㉧㉨㉩㉪㉫㉬㉭㉮㉯㉰㉱㉲㉳㉴㉵㉶㉷㉸㉹㉺㉻ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮½⅓⅔¼¾⅛⅜⅝⅞����æđðħıijĸŀłøœßþŧŋʼn㈀㈁㈂㈃㈄㈅㈆㈇㈈㈉㈊㈋㈌㈍㈎㈏㈐㈑㈒㈓㈔㈕㈖㈗㈘㈙㈚㈛⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂¹²³⁴ⁿ₁₂₃₄���ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん	����ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	_���АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя��`��가각간갇갈갉갊감갑값갓갔강갖갗같갚갛개객갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆����괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸���깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙����끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫났낭낮낯낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝���뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫달닭닮닯닳담답닷닸당닺닻닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥����덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸���땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗����래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩���륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많맏말맑맒맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼����묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바박밖밗반받발밝밞밟밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗��$�벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤����빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤��,�샥샨샬샴샵샷샹섀섄섈섐섕서석섞섟선섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭����숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰��4�쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄업없엇었엉엊엌엎����에엑엔엘엠엡엣엥여역엮연열엶엷염엽엾엿였영옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨��<�웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응읒읓읔읕읖읗의읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊����점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓��D�징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻����찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층��L�치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼����큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜��T�퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁����퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠��\�혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝����伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕��d�匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢����瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械��l�棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜����科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾��t�區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴����鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣��|�朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩羅蘿螺裸邏那樂洛烙珞落諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉���納臘蠟衲囊娘廊朗浪狼郎乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧老蘆虜路露駑魯鷺碌祿綠菉錄鹿論壟弄濃籠聾膿農惱牢磊腦賂雷尿壘屢樓淚漏累縷陋嫩訥杻紐勒肋凜凌稜綾能菱陵尼泥匿溺多茶����丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃���棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅����蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣���煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼����遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬���立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅����蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文�� �汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑����發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖��(�碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦����孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥��0�脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索���傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署��8胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬���聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁��@戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧���嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁��H沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額���	櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬��P旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒���簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳��X烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療���窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓��`運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜���濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼��h議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄���立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長��p障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱���煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖��x靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫���踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只���咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯��鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策��� 責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢��"椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃���#贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託��%鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑���&阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃��(品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航���)行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型��$+形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵���,禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆��,.爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰���/ԭ����(�H�������X�p�x�����������������$���,���4���<���D���L���T���\���d���l���t���|������������� ���(��0�8�@�	H�P�X�`�h�p�x�� "�#%�&(�)+�,$.�/,1�41�����A�B���C�D���������E�F�G�H�I�����������������J�����������K�L���M�N�O���P�Q�R�S�T�U�V�����W�������X�Y�Z�a�b�c�����d�e���f�g�hb�2���i�j�k�l�m�n�o�p�q�r���s���t�u�v�w�x�y���z������������������������������������������������������������������������������������b�3��������������������������������������������������������������������������������������������������������������������������������b�4��������������������������������������������������������������������������������������������������������������������������������b�5�����������������������������������������A�B�C�D���E�F�G���H�I�J���K�L�M�N�O�P�Q�R���S�T�����U�V�W�X�Y�Z�����a�b���c�d�e���f�g�hb�6�i�j�k�l�����m���n���o�p�q�r�s�t���u�v�w���x�y�z��������������������������������������������������������������������������������b�7��������������������������������������������������������������������������������������������������������������������������������b�8���������������������������������������������������������������������������������������������������������������������A�B���C�D��b:�����E�F�G�H�I�J�����K���L���M�N�O�P�Q�R���S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�����t�u���v�w�����x���y�z������b;��������������������������������������������������������������������������������������������������������������������������������b<��������������������������������������������������������������������������������������������������������������������������������b$=�����������������������������������������������������������������������������A�B���C�D���E���F�G�H�I�J�K���L�M�N���O�P�Q���R�S�Tb0>�U�V�W�X�Y�Z�a�����b�c�d�e���f�g���h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z��������������������������������������������������������b<?��������������������������������������������������������������������������������������������������������������������������������bH@�������������������������������������������������������������������������������������������������������������������������������AbTA���B�C�D�E�F�G�������H���I�����J�K�L�M�N���O�P�Q�R�S�T�U���V�W�X�Y�Z�a�b�c�d�e�f�����g�h�i�j�k�l�����m�n���o�p�q���r�s�t�u�v�w�xb`B�3�4�5�6�7�8�9;<=(>4?@@LAXBdC\blC�����y�z������������������������������������������������������������������������������������������������������������������������b�C��������������������������������������������������������������������������������������������������������������������������������b�D���������������������������������������������������������������������������A�B�C�����D�����������E���F�������G�H���I�J�K���L�M�Nb�E�O�P�Q�R�����S�������T�U�V�W�X�Y�����Z�a���b�c�d���e�f�g�h�i�j�k���l�m�n�o���p�q�r�s�t�u�v�w�x�y�z������������������������������b�F��������������������������������������������������������������������������������������������������������������������������������b�G��������������������������������������������������������������������������������������������������������������������������������b�H�������������������������������������������������������������A�B�C�D�E�F�G�H�I�J���K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�gbJ�h�i�j�k�l�m�n�o�p�q�r�s���t�u�v���w�x�y���z������������������������������������������������������������������������������������bK��������������������������������������������������������������������������������������������������������������������������������bL�����������������������������������������������������������������������������������������������A�B�C�D�E�����F�G�H�I�J�K���L�M�Nb(M�O�P�Q�R�����S�T�U���V�W�X�Y�Z�a�����b�c���d�e�f�������g�h�i�j�k�����l���m�����n�o�p���q���r�s�t���u�v�w���x�y�z����������������b4N��������������������������������������������������������������������������������������������������������������������������������b@O��������������������������������������������������������������������������������������������������������������������������������bLP�����������������������������������������������������������������������������A���B���C���D�E���F�����G�H���I�J�K���L�M�N�O�P�Q�RbXQ�����S�������T�U�V�W�X�Y���Z�a�b���c�d�e���f�g�h�i�j�k�l�m�n�o�p�����q�r�s�t�u�v���w�x�y���z������������������������������������bdR��������������������������������������������������������������������������������������������������������������������������������bpS��������������������������������������������������������������������������������������������������������������������������������b|T�����������A�B�C�D�E�F�G�H�I�J�K�����L�M���N�O�P���Q�R�S�T�U�V�W�����X���Y���Z�a�b�c�d�e���f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�xb�U���y�z��������������������������������������������������������������������������������������������������������������������������b�V��������������������������������������������������������������������������������������������������������������������������������b�W�������������������������������������������������������������A�B�C�D�E�F�����G���������H�I�J�K�L�����M�N���O�P�Q���R�S�T�U�V�W�Xb�X�����Y�������Z�a�b�c�d�������e�f���g�h�i���j�k�l�m�n�o�p�����q�������r�s�t�u�v�w�x�y�z������������������������������������������b�Y��������������������������������������������������������������������������������������������������������������������������������b�Z��������������������������������������������������������������������������������������������������������������������������������b�[�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�����Q�R���S�T�U���V�W�X�Y�Z�a�b�c�d�e�f�g���h�i�j�k�l�m���n�o�p�q�r�s�t���u�v�w�x�y�z����������b�\��������������������������������������������������������������������������������������������������������������������������������b�]��������������������������������������������������������������������������������������������������������������������������������b�^�������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q���R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r���s�t�u���v�w�x���y�z����������b`��������������������������������������������������������������������������������������������������������������������������������ba��������������������������������������������������������������������������������������������������������������������������������bb���������������������������������������������������������������A���B�C�D�E�F�G�H�����I�������J�K�L�M�N�O�����P�Q���R�S�T�U�V�W�Xb$c�Y�Z�a�b�c�d�e���f���g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z��������������������������������������������������������������������b0d��������������������������������������������������������������������������������������������������������������������������������b<e��������������������������������������������������������������������������������������������������������������������������������bHf�����������A�B�C�D�E�F�G�H���I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h���i�j�k�l�m�n�o���p�q�r���s�t�u���v�w�x�y�z����bTg��������������������������������������������������������������������������������������������������������������������������������b`h��������������������������������������������������������������������������������������������������������������������������������bli�����������������������������������������������������A�B���C�D�E���F�G�H�I�J�K�L�����M���N���O�P�Q�R�S�T�����U�V���W�X�Y���Z�a�bbxj�c�d�e�f�����g���h�����i�j�����k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z������������������������������������������������������������������b�k��������������������������������������������������������������������������������������������������������������������������������b�l��������������������������������������������������������������������������������������������������������������������������������b�m���������������A�����B���C�����D�E�F�G�������H�I���J�K�L���M�N�O�P�Q�R�S�����T�������U�V�W�X�Y�Z�����a�b���c�d�e���f�g�h�i�j�k�lb�n�m�n�o�������p���q�r�s�t���u�v�w�x�y�z������������������������������������������������������������������������������������������b�o��������������������������������������������������������������������������������������������������������������������������������b�p���������������������������������������������������������������������������������A���B���C�D�E�F�G�H�I�J�������K���L�M���������Nb�q�O�P�Q�R�����S���T���U�V�W���X�����Y�Z�a���b�c�d���e�f�g�h�i�j�k�l���m���n�o�p�q�r�s�t�u���v�w�x�y�z����������������������������b�r��������������������������������������������������������������������������������������������������������������������������������b�s��������������������������������������������������������������������������������������������������������������������������������b�t�������A�B�C�D�E�����F�������G���H���I�J�����������K�L�����������M�N�O�P�����Q���R���S�T�U���V�W�����X�Y���Z�a�b���c�d�e�f�g�h�ib�u�����j�������k�l�m���n�o�����p�q���r�s�t�u�v�w�x�y�z����������������������������������������������������������������������������bw��������������������������������������������������������������������������������������������������������������������������������bx�����������������������������������������������������������������������������������������������������������������������������A�Bb y�C�D�E�F�����G���H���I�J�K�L�M�N���O�P�Q���R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f���g�h�i�j�k�l�m���n�o�p�q�r�s�t�u�v�w�x�y�z������������b,z��������������������������������������������������������������������������������������������������������������������������������b8{��������������������������������������������������������������������������������������������������������������������������������bD|�������������������������������������A�B�����C�D���E�F�G���H�I�J�K�L�M�N�O�P�Q�R�S���T�U�V�W�X�Y���Z�a�b���c�d�e���f�g�h�i�j�k�lbP}���m�n���o���p�q�r�s�t�u�����v�w���x�y�z����������������������������������������������������������������������������������������b\~��������������������������������������������������������������������������������������������������������������������������������bh�����������������������������������������������������������������������������������������������������������������A�B�C�D�E�F�G�Hbt��I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�����Y�Z���a�b�����c�d�e�f�g�h�i���j�k�������l�m�n�o�p�q���r�s�t�u�v�w�x�y�z��������������������b����������������������������������������������������������������������������������������������������������������������������������b����������������������������������������������������������������������������������������������������������������������������������b���������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q���R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r���s�t�u�v�w�x�y�z��������������b����������������������������������������������������������������������������������������������������������������������������������b���D�E�F�G�H�IKL M,N8ODPPQ\RhStT�U�V�W�X�Y�Z�[�\�]�^�_abc(d4e@fLgXhdipj|k�l�m�n�o�p�q�r�s�t�uwxy$z0{<|H}T~`l�x�����������b����������������������������������������������������������������������������������������������������������������������������������bȇ�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q���R�S�T�U�V�W���X�Y�Z���a�b�c���d�e�f�g�h�i�j�����k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z������������bԈ��������������������������������������������������������������������������������������������������������������������������������b���������������������������������������������������������������������������������������������������������������������������������b������������������������������������������������������������������������������������������������������A�B�C�D���E�����F�G���H�I�Jb�����K�L�M�N�O�P�Q�����R�������S�T�U�V�W�X�����Y�Z���a�b�c���d�e�f�g�h�i�j�����k�������l�m�n�o�p�q���r�s�t���u�v�w���x�y�z��������b���������������������������������������������������������������������������������������������������������������������������������b���������������������������������������������������������������������������������������������������������������������������������b��������������������������������������������������������������������������A�B�C�D�����E���F���G���H�����I���J�K�L�M�N�O�P�Q�R�S�Tb(��U�V�W�X�Y�Z�a�b���c�d�e�f�g�h�i�����j�k���l�m�n���o�p�q�r�s�t�u���v�w�x�y���z��������������������������������������������������b4���������������������������������������������������������������������������������������������������������������������������������b@���������������������������������������������������������������������������������������������������������������������������������bL����������������������������������A�B�C�������D�E���F�G�H���I�J�K�L�M�N�O�����P�Q�����R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�mbX��n�o�p�q�r���s�t�u�v�w�x�y�z����������������������������������������������������������������������������������������������������bd���������������������������������������������������������������������������������������������������������������������������������bp��������������������������������������������������������A���B�C�����D���E�F�G�H�I�����J�K�L���M�N�O�P�Q�R�����S�T���U�V�W�X�Y�Z�ab|��b�c�d�e�f�g�h�i���j�k�l�m�n�o�p���q�r�s�t�u�v�w�x�y�z��������������������������������������������������������������������������b����������������������������������������������������������������������������������������������������������������������������������b���������������������������������������������������������������������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N���O�P�Q���R�S�Tb���U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z����������������������������������������������������������������b����������������������������������������������������������������������������������������������������������������������������������b����������������������������������������������������������������������������������������������������������������������������������bĝ���������������������������������������������A�����B�C�D���E�F�G���H�I�J�K�L�M�N�O���P�Q�R�S�T�U�V�W�X�Y�����Z�a�����b���������cbО�d�e�f�g���������������h���i���j�����k�l���m�n�o���p�q�r�s�t�u�v�����w���x���y�z������������������������������������������������bܟ��������������������������������������������������������������������������������������������������������������������������������b���������������������������������������������������������������������������������������������������������������������������������b����������������������������������������������������������������������������������A���B�C�D�E�F�G�����H�I���J�K�L�������M�N�O�P�Qb������R���S���T�U�V�W�X�Y�����Z�a���b�c�d���e�f�g�h�i�j�k�����l�m�����n�o�p�q�r�s�����t�u���v�w�x���y�z��������������������������b���������������������������������������������������������������������������������������������������������������������������������b���������������������������������������������������������������������������������������������������������������������������������b$������������������������������������������������������������������������������������������������������������������A�B�C�D�����E��b0������F�G�H�I�J�K�����L�M���N���O���P�Q�R�S�T�U�V���W�X�Y�Z���a�b�c�d�e�f���g�h�i���j�k�l���m�n�o�p�q�r�s�t�u�v�w�x�y�z����������b<���������������������������������������������������������������������������������������������������������������������������������bH���������������������������������������������������������������������������������������������������������������������������������bT����������������������������������������������������������������������������A�B�C���D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�����W�Xb`��Y�Z�a�b���c�d�e���f�g�h���i�j�k�l�m�n�o�����p���q���r�s�t�u�v�w�����x�y���z����������������������������������������������������bl����������������������������������A���B�C�D�E�F�G���H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z���a�b�c�d�e�f�g���h�i�j�k�l�m�n�o�p�q�rbx��s�t�u�v�w�x�y�z�����������������������������������������������������������������������������������A�B�C���D�E�F�G�H�I�J���K�L�Mb���N�O�P�Q�R�S�T�U�����V�W���X�Y�Z���a�b�c�d�e�f�g�����h���i���j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z����������������������������������b��������������������������������������������¡¢����£¤��¥¦�A�B§�C¨�D©�E�Fª�G�H�I�J«¬�K­®¯�L�M�N�O�P�Q°±�R�S²�T�U�Vb��³�W�X�Y�Z�a�b�c´µ�d¶·¸�e�f�g�h�i�j¹�k�l�mº�n�o�p�q�r�s�t�u�v�w�x�y�z������»��������������������������������������������b�����������������A�B�C�D�E¼½�F�G¾�H�I�J¿�K�L�M�N�O�P�Q���R�������S�T�U�V�W�X���Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r���s�tb���u�v�w�x���y�z�������������������������������������������������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�����U�Vb�����W�X�Y���Z�a�b�c�d�e�f�����g���h���i���j�k�l�m�����n�o�p�q�r�s���t�u�v�w�x�y�z������������������������������������������������b̴�����������������������A�B�C�D�E���F�G�H���I�J�K���L�M�N�O�P�Q�R�����S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�vbص�w���x�y�z���������������������������������������������������������������������������������A�B�C�D�E�F�G�H�I�J�K�����L�M�N�O�P�Qb��R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s���t�u�v�w�x�y�z��������������������������������������������������������b������������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O���P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d���e�f���g���h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z������b����������������������������������������������������������������������������A�B����C�D��E��F��G�H�I�J�K�L�M���N�áâã�Ob��P�Q�R�Säå�T�Uæ�V�W�Xç�Y�Z�a�b�c�d�eèé�fêëì�g�h�i�j�k�lí�m�n�oî�pï�qð�r�s�t�u�v�w�xñ�y�z����ò��������������������b������������������������������������������A�B�C�Dóô�E�Fõ�G�H�Iö�J�K�L�M�N�O�P÷ø�Qùúû�R�S�T�U�V�Wüý�X�Yþ�Z�a�bÿ�c�d�eb ��f�g�h�i���j���k���l�m�n�o�p�q���r�s�t���u�v�w�x�y�z�����������������������������������������������������������������������A�Bb,��C���D�E�F�G�H�I�����J�K���L�M�N���O�P�Q�R�S�T�U�����V���W���X�Y�Z�a�b�c���d�e�f���g�h�i���j�k�l�m�n�o�p�q�r�s�t�u���v�w�x�y�z��b8��������������������������������������������������������������������A�B�C���D�E�F�G�H�I�J�����K���L���M�N�O�P�Q�R���S�T�U�V�W�X�YbD��Z�a�b�c�d�e�f�g���h�i�j�k�l�m�n�o�p�q�r�����s�t���u�v�w���x�y�z����������������������������������������������������������������bP��������������A�B�C�D�E�F���G�H�I���J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f���g�h�i���j�k�l���m�n�o�p�q�r�s�����t���u���v�wb\��x�y�z�����������������������������������������������������������������������������A�B�C�D���E��F��G�H�I�J�K�L�M�N�O�Pbh��Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�nġĢ�o�pģ�q�rĤĥĦ�s�t�u�v�w�xħĨ�yĩ�zĪ������������īĬ����ĭ������Į������bt���������įİ��ı��IJ������������ijĴ����ĵ������Ķ���A�B�C�D�E�Fķĸ�GĹĺĻ�H�I�J�K�L�MļĽ�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�eb���fľ�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z����������������������������Ŀ����������������������������������������������������b�������A�B���C�D�E���F�G�H�I�J�K�L�����M���N���O�P�Q�R�S�T���U�V�W���X�Y�Z���a�b�c�d�e�f�g�����h�������i�j�k�l�m�n���o�p�q�r�s�t�ub���v�w�x�y�z���������������������������������������������������������������������������������A�B�C�����D�E���F�G�H���I�J�K�L�M�N�Ob�����P�Q�R�S���T�U�V�W�X�Y���Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s���t�u�v�w�x�y���z��������������������������������������������b���������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�����U�V���W�X�Y���Z�a�b�c�d�e�f�����g���h���i�j�k�l�m�n��o�p�qb��̈؉������ �,�8�D�P�\�h�t�������������Ȟԟ�������(�4�@�L�X�d�p�|�����������Ĵеܶ�����$�0�<�H�T�`�l�x�������������b����r�s�t��u�v�w�x�y�z��������������������������������������������������������������������A�B�C�D�E�F���G�H��I�J�K��L�M�Nb���O�P�Q�RšŢ�Sţ�TŤ�U�V�W�X�Y�Zť�a�b�cŦ�d�e�fŧ�g�h�i�j�k�l�mŨ�n�o�p�q�r�s�t�u�v�w�xũŪ�y�zū������Ŭ��������������ŭŮ����b����ů���������������������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N�OŰű�P�QŲ�R�S�Tų�U�V�W�X�Y�Z�aŴŵ�bŶ�cŷ�d�e�f�g�h�ib��ŸŹ�j�kź�l�m�nŻż�o�p�q�r�s�tŽž�uſ���v�w�x�y�z��������������������������������������������������������������������������b�������������A�B�C�D�E�F�G�H���I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�����q�r���s�t�u���v���w�x�y�z��b����������������������������������������������������������������������������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N���O�P�Qb��R�S�T�U���V�W�X���Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�����v�w���x�y�z������������������������������������������������b����������������������������������A�B�C�D�E�F�G�H���I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i���j�k�l���m�n�o�p�q�r�sb(��t�u�v�w�x�y�z�����������������������������������������������������������������������A�B���C�D��E�F�G��H�I�J�K�L�M�N���O�b4��P��Q�R�S�T�U�V��W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o��p�q�r�s�t�u�vơ�w�x�y�z����������������������������������������������b@�Ƣƣ����Ƥ������ƥ���������A�B�CƦƧ�D�E�Fƨ�G�H�I�J�K�LƩ�M�N�Oƪ�P�Q�Rƫ�S�T�U�V�W�X�YƬ�Z�a�b�cƭ�d�e�f�g�h�iƮƯ�j�kư�l�mƱbL�Ʋ�nƳ�o�p�q�r�sƴƵ�tƶ�u�v�w�x�y�z����Ʒ������Ƹ������ƹ��������������ƺƻ��������������������Ƽƽ����ƾ������ƿ�����A�B�C�D�EbX����F���G���H�I�J�K�L�M�������N���O�P�Q���R���S�T�U�V�W�����X�������Y�Z�a���b�c�����d�e���f�g�h���i�j�k�l�m�n�o�����p�������q�rbd��s�t�u�v�����w�x�y�z�����������������������������������������������������������������A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�����S�Tbp����U�V�W���X�Y�Z�a�b�c�d�����e�������f�g�h�i�j�k�����l�m���n�o�p���q�r�s�t�u�v�w�����x���y���z����������������������������������b|������������������������������������������������A���B�C�D�E�F�G�H�I��J��K�L�M�N�O�P�Q�R���S�T��U�V�W��X�Y�Z�a�b�c�d���e�b���f��g�h�i�j�k�lǡ�m�n�o�p�q�r�s�t�u�v�w�x�y�z������������Ǣ�����������������������������������������������������A�B�C�D�E�F�G�Hb��ǣ�I�J�KǤ�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�g�hǥ�i�j�kǦ�l�m�nǧ�o�p�q�r�s�t�u�vǨ�wǩ�x�y�z����������Ǫǫ����Ǭ����ǭb��Ǯ��ǯ����������ǰDZ��Dz��dz������������Ǵ�������������������A�B�C�D�E�F�G�H�I�J�Kǵ�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�a�b�c�d�e�f�gb���h�i�j�k�l�m�n�o�p�q�r�sǶ�t�u�vǷ�w�x�yǸ�z������������ǹ����Ǻ����������������ǻ������Ǽ������ǽ��������������Ǿ����ǿ����A�Bb���C�D�E�F��G�H�I���J�K�L���M�N�O�P�Q�R�S�����T���U�V�W�X�Y�Z�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z����������������b���������������������������������������������������������������������������A���B�C�����D���E���F�G�H�I�J�K�����L�M���N�O�P���Q�R�Sb���T�U�V�W�����X�������Y�Z�a�b�c�d���e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x���y�z������������������������������������������������b�����������������������A�B���C�D�E���F���G�H�I�J�K�����L���M���N�O�P�Q�R�S�����T�U���V�W�X���Y�Z�a�b�c�d�e�����f���g���h�i�j�k�l�mb������n�o��p�q�r��s�t�u�v�w�x�y���z���‚ƒ„…†�‡ˆ‰�Š‹ŒȡŽ‘’“”Ȣ•–—˜™š›œžȣȤŸ ȥ�A�B�Cb��Ȧ�D�E�F�Gȧ�H�IȨȩ�JȪ�Kȫ�L�M�NȬ�O�PȭȮ�Q�Rȯ�S�T�UȰ�V�W�X�Y�Z�a�b�c�d�eȱ�fȲ�g�h�i�j�k�lȳȴ�m�nȵ�o�p�q�r�s�t�u�v�w�x�yb��zÁÂȶÃȷÄÅÆÇÈÉȸȹÊËȺÌÍÎȻÏÐÑÒÓÔÕÖȼ×ȽØȾÙÚÛÜÝÞȿßà�A��B�C�D��E�F�G�H�I�J�K�L���M���N�O�P�Qb��R�S�T�U�����V�W���X�Y�Z���a�b�c�d���e�f���g�h���i���j�k�l�m�n�o���p�q�r���s�t�u���v�w�x�y�zāĂ��㥹Ć��ćĈĉĊċČ����čĎb���ďĐđ��ĒēĔĕĖėĘęĚěĜĝ��ĞğĠ�A�B�C�����D�E���F�G�H���I�J�K�L�M�N�O�����P���Q���R�S�T�U�V�W�����X�Y���Z�a�b���c�d�eb$��f�g�h�i���j�k���l���m�n�o�p�q�r�����s�t���u���������v�w�x�y�zŁ����ł��Ń��ńŅņ��Ňň��ʼnŊŋ��ŌōŎ��ŏŐőŒœŔŕ���Ŗŗb0�Ř�řŚśŜŝŞ��şŠ��A�B�C��D�E�F�G�H�I�J���K��L��M�N�O�P�Q�R	��<����������� �,�8�D�P�\�h�t��������������������������(�4�������\��<��DT\�	h4)T?�R�d�r�C����`�����ȫЫȌh�갂갃갅갆갋갌갍갎갏갘갞갟갡갢갣갥갦갧갨갩갪갫갮갲갳갴갵갶갷갺갻갽갾갿걁걂걃걄걅걆걇걈걉걊걌걎걏걐걑걒걓걕걖걗걙걚걛걝걞걟걠걡걢걣걤걥걦걧걨걩걪걫걬걭걮걯걲걳걵걶걹걻걼걽걾걿겂겇겈겍겎겏겑겒겓겕겖겗겘겙겚겛겞겢겣겤겥겦겧겫겭겮겱겲겳겴겵겶겷겺겾겿곀곂곃곅곆곇곉곊곋곍곎곏곐곑곒곓곔곖곘곙곚곛곜곝곞곟곢곣곥곦곩곫곭곮곲곴곷곸곹곺곻곾곿괁괂괃괅괇괈괉괊괋괎괐괒괓’��괔괕괖괗괙괚괛괝괞괟괡괢괣괤괥괦괧괨괪괫괮괯괰괱괲괳괶괷괹괺괻괽괾괿굀굁굂굃굆굈굊굋굌굍굎굏굑굒굓굕굖굗굙굚굛굜굝굞굟굠굢굤굥굦굧굨굩굪굫굮굯굱굲굷굸굹굺굾궀궃궄궅궆궇궊궋궍궎궏궑궒궓궔궕궖궗궘궙궚궛궞궟궠궡궢궣궥궦궧궨궩궪궫궬궭궮궯궰궱궲궳궴궵궶궸궹궺궻궼궽궾궿귂귃귅귆귇귉귊귋귌귍귎귏귒귔귕귖귗귘귙귚귛귝귞귟귡귢귣귥귦귧귨귩귪귫귬귭귮귯귰귱귲귳귴귵귶귷’��귺귻귽귾긂긃긄긅긆긇긊긌긎긏긐긑긒긓긕긖긗긘긙긚긛긜긝긞긟긠긡긢긣긤긥긦긧긨긩긪긫긬긭긮긯긲긳긵긶긹긻긼긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗깘깙깚깛깞깢깣깤깦깧깪깫깭깮깯깱깲깳깴깵깶깷깺깾깿꺀꺁꺂꺃꺆꺇꺈꺉꺊꺋꺍꺎꺏꺐꺑꺒꺓꺔꺕꺖꺗꺘꺙꺚꺛꺜꺝꺞꺟꺠꺡꺢꺣꺤꺥꺦꺧꺨꺩꺪꺫꺬꺭꺮꺯꺰꺱꺲꺳꺴꺵꺶꺷꺸꺹꺺꺻꺿껁껂껃껅껆껇껈껉껊껋껎껒껓껔껕껖껗껚껛껝껞껟껠껡껢껣껤껥’��껦껧껩껪껬껮껯껰껱껲껳껵껶껷껹껺껻껽껾껿꼀꼁꼂꼃꼄꼅꼆꼉꼊꼋꼌꼎꼏꼑꼒꼓꼔꼕꼖꼗꼘꼙꼚꼛꼜꼝꼞꼟꼠꼡꼢꼣꼤꼥꼦꼧꼨꼩꼪꼫꼮꼯꼱꼳꼵꼶꼷꼸꼹꼺꼻꼾꽀꽄꽅꽆꽇꽊꽋꽌꽍꽎꽏꽑꽒꽓꽔꽕꽖꽗꽘꽙꽚꽛꽞꽟꽠꽡꽢꽣꽦꽧꽨꽩꽪꽫꽬꽭꽮꽯꽰꽱꽲꽳꽴꽵꽶꽷꽸꽺꽻꽼꽽꽾꽿꾁꾂꾃꾅꾆꾇꾉꾊꾋꾌꾍꾎꾏꾒꾓꾔꾖꾗꾘꾙꾚꾛꾝꾞꾟꾠꾡꾢꾣꾤꾥꾦꾧꾨꾩꾪꾫꾬꾭꾮꾯꾰꾱꾲꾳꾴꾵꾶꾷꾺꾻꾽꾾’d�꾿꿁꿂꿃꿄꿅꿆꿊꿌꿏꿐꿑꿒꿓꿕꿖꿗꿘꿙꿚꿛꿝꿞꿟꿠꿡꿢꿣꿤꿥꿦꿧꿪꿫꿬꿭꿮꿯꿲꿳꿵꿶꿷꿹꿺꿻꿼꿽꿾꿿뀂뀃뀅뀆뀇뀈뀉뀊뀋뀍뀎뀏뀑뀒뀓뀕뀖뀗뀘뀙뀚뀛뀞뀟뀠뀡뀢뀣뀤뀥뀦뀧뀩뀪뀫뀬뀭뀮뀯뀰뀱뀲뀳뀴뀵뀶뀷뀸뀹뀺뀻뀼뀽뀾뀿끀끁끂끃끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞끟끠끡끢끣끤끥끦끧끨끩끪끫끬끭끮끯끰끱끲끳끴끵끶끷끸끹끺끻끾끿낁낂낃낅낆낇낈낉낊낋낎낐낒낓낔낕낖낗낛낝낞낣낤’8�낥낦낧낪낰낲낶낷낹낺낻낽낾낿냀냁냂냃냆냊냋냌냍냎냏냒냓냕냖냗냙냚냛냜냝냞냟냡냢냣냤냦냧냨냩냪냫냬냭냮냯냰냱냲냳냴냵냶냷냸냹냺냻냼냽냾냿넀넁넂넃넄넅넆넇넊넍넎넏넑넔넕넖넗넚넞넟넠넡넢넦넧넩넪넫넭넮넯넰넱넲넳넶넺넻넼넽넾넿녂녃녅녆녇녉녊녋녌녍녎녏녒녓녖녗녙녚녛녝녞녟녡녢녣녤녥녦녧녨녩녪녫녬녭녮녯녰녱녲녳녴녵녶녷녺녻녽녾녿놁놃놄놅놆놇놊놌놎놏놐놑놕놖놗놙놚놛놝’�놞놟놠놡놢놣놤놥놦놧놩놪놫놬놭놮놯놰놱놲놳놴놵놶놷놸놹놺놻놼놽놾놿뇀뇁뇂뇃뇄뇅뇆뇇뇈뇉뇊뇋뇍뇎뇏뇑뇒뇓뇕뇖뇗뇘뇙뇚뇛뇞뇠뇡뇢뇣뇤뇥뇦뇧뇪뇫뇭뇮뇯뇱뇲뇳뇴뇵뇶뇷뇸뇺뇼뇾뇿눀눁눂눃눆눇눉눊눍눎눏눐눑눒눓눖눘눚눛눜눝눞눟눡눢눣눤눥눦눧눨눩눪눫눬눭눮눯눰눱눲눳눵눶눷눸눹눺눻눽눾눿뉀뉁뉂뉃뉄뉅뉆뉇뉈뉉뉊뉋뉌뉍뉎뉏뉐뉑뉒뉓뉔뉕뉖뉗뉙뉚뉛뉝뉞뉟뉡뉢뉣뉤뉥뉦뉧뉪뉫뉬뉭뉮’�뉯뉰뉱뉲뉳뉶뉷뉸뉹뉺뉻뉽뉾뉿늀늁늂늃늆늇늈늊늋늌늍늎늏늒늓늕늖늗늛늜늝늞늟늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷늸늹늺늻늼늽늾늿닀닁닂닃닄닅닆닇닊닋닍닎닏닑닓닔닕닖닗닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉댊댋댌댍댎댏댒댖댗댘댙댚댛댝댞댟댠댡댢댣댤댥댦댧댨댩댪댫댬댭댮댯댰댱댲댳댴댵댶댷댸댹댺댻댼댽댾댿덀덁덂덃덄덅덆덇덈덉덊덋덌덍덎덏덐덑덒덓덗덙덚덝덠덡덢덣’�덦덨덪덬덭덯덲덳덵덶덷덹덺덻덼덽덾덿뎂뎆뎇뎈뎉뎊뎋뎍뎎뎏뎑뎒뎓뎕뎖뎗뎘뎙뎚뎛뎜뎝뎞뎟뎢뎣뎤뎥뎦뎧뎩뎪뎫뎭뎮뎯뎰뎱뎲뎳뎴뎵뎶뎷뎸뎹뎺뎻뎼뎽뎾뎿돀돁돂돃돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩돪돫돬돭돮돯돰돱돲돳돴돵돶돷돸돹돺돻돽돾돿됀됁됂됃됄됅됆됇됈됉됊됋됌됍됎됏됑됒됓됔됕됖됗됙됚됛됝됞됟됡됢됣됤됥됦됧됪됬됭됮됯됰됱됲됳됵됶됷됸됹됺됻됼됽됾됿둀둁둂둃둄’�둅둆둇둈둉둊둋둌둍둎둏둒둓둕둖둗둙둚둛둜둝둞둟둢둤둦둧둨둩둪둫둭둮둯둰둱둲둳둴둵둶둷둸둹둺둻둼둽둾둿뒁뒂뒃뒄뒅뒆뒇뒉뒊뒋뒌뒍뒎뒏뒐뒑뒒뒓뒔뒕뒖뒗뒘뒙뒚뒛뒜뒞뒟뒠뒡뒢뒣뒥뒦뒧뒩뒪뒫뒭뒮뒯뒰뒱뒲뒳뒴뒶뒸뒺뒻뒼뒽뒾뒿듁듂듃듅듆듇듉듊듋듌듍듎듏듑듒듓듔듖듗듘듙듚듛듞듟듡듢듥듧듨듩듪듫듮듰듲듳듴듵듶듷듹듺듻듼듽듾듿딀딁딂딃딄딅딆딇딈딉딊딋딌딍딎딏딐딑딒딓딖딗딙딚딝’\딞딟딠딡딢딣딦딫딬딭딮딯딲딳딵딶딷딹딺딻딼딽딾딿땂땆땇땈땉땊땎땏땑땒땓땕땖땗땘땙땚땛땞땢땣땤땥땦땧땨땩땪땫땬땭땮땯땰땱땲땳땴땵땶땷땸땹땺땻땼땽땾땿떀떁떂떃떄떅떆떇떈떉떊떋떌떍떎떏떐떑떒떓떔떕떖떗떘떙떚떛떜떝떞떟떢떣떥떦떧떩떬떭떮떯떲떶떷떸떹떺떾떿뗁뗂뗃뗅뗆뗇뗈뗉뗊뗋뗎뗒뗓뗔뗕뗖뗗뗙뗚뗛뗜뗝뗞뗟뗠뗡뗢뗣뗤뗥뗦뗧뗨뗩뗪뗫뗭뗮뗯뗰뗱뗲뗳뗴뗵뗶뗷뗸뗹뗺뗻뗼뗽뗾뗿’0	똀똁똂똃똄똅똆똇똈똉똊똋똌똍똎똏똒똓똕똖똗똙똚똛똜똝똞똟똠똡똢똣똤똦똧똨똩똪똫똭똮똯똰똱똲똳똵똶똷똸똹똺똻똼똽똾똿뙀뙁뙂뙃뙄뙅뙆뙇뙉뙊뙋뙌뙍뙎뙏뙐뙑뙒뙓뙔뙕뙖뙗뙘뙙뙚뙛뙜뙝뙞뙟뙠뙡뙢뙣뙥뙦뙧뙩뙪뙫뙬뙭뙮뙯뙰뙱뙲뙳뙴뙵뙶뙷뙸뙹뙺뙻뙼뙽뙾뙿뚀뚁뚂뚃뚄뚅뚆뚇뚈뚉뚊뚋뚌뚍뚎뚏뚐뚑뚒뚓뚔뚕뚖뚗뚘뚙뚚뚛뚞뚟뚡뚢뚣뚥뚦뚧뚨뚩뚪뚭뚮뚯뚰뚲뚳뚴뚵뚶뚷뚸뚹뚺뚻뚼뚽뚾뚿뛀뛁뛂’뛃뛄뛅뛆뛇뛈뛉뛊뛋뛌뛍뛎뛏뛐뛑뛒뛓뛕뛖뛗뛘뛙뛚뛛뛜뛝뛞뛟뛠뛡뛢뛣뛤뛥뛦뛧뛨뛩뛪뛫뛬뛭뛮뛯뛱뛲뛳뛵뛶뛷뛹뛺뛻뛼뛽뛾뛿뜂뜃뜄뜆뜇뜈뜉뜊뜋뜌뜍뜎뜏뜐뜑뜒뜓뜔뜕뜖뜗뜘뜙뜚뜛뜜뜝뜞뜟뜠뜡뜢뜣뜤뜥뜦뜧뜪뜫뜭뜮뜱뜲뜳뜴뜵뜶뜷뜺뜼뜽뜾뜿띀띁띂띃띅띆띇띉띊띋띍띎띏띐띑띒띓띖띗띘띙띚띛띜띝띞띟띡띢띣띥띦띧띩띪띫띬띭띮띯띲띴띶띷띸띹띺띻띾띿랁랂랃랅랆랇랈랉랊랋랎랓랔랕랚랛랝랞’�랟랡랢랣랤랥랦랧랪랮랯랰랱랲랳랶랷랹랺랻랼랽랾랿럀럁럂럃럄럅럆럈럊럋럌럍럎럏럐럑럒럓럔럕럖럗럘럙럚럛럜럝럞럟럠럡럢럣럤럥럦럧럨럩럪럫럮럯럱럲럳럵럶럷럸럹럺럻럾렂렃렄렅렆렊렋렍렎렏렑렒렓렔렕렖렗렚렜렞렟렠렡렢렣렦렧렩렪렫렭렮렯렰렱렲렳렶렺렻렼렽렾렿롁롂롃롅롆롇롈롉롊롋롌롍롎롏롐롒롔롕롖롗롘롙롚롛롞롟롡롢롣롥롦롧롨롩롪롫롮롰롲롳롴롵롶롷롹롺롻롽롾롿뢀뢁뢂뢃뢄’�뢅뢆뢇뢈뢉뢊뢋뢌뢎뢏뢐뢑뢒뢓뢔뢕뢖뢗뢘뢙뢚뢛뢜뢝뢞뢟뢠뢡뢢뢣뢤뢥뢦뢧뢩뢪뢫뢬뢭뢮뢯뢱뢲뢳뢵뢶뢷뢹뢺뢻뢼뢽뢾뢿룂룄룆룇룈룉룊룋룍룎룏룑룒룓룕룖룗룘룙룚룛룜룞룠룢룣룤룥룦룧룪룫룭룮룯룱룲룳룴룵룶룷룺룼룾룿뤀뤁뤂뤃뤅뤆뤇뤈뤉뤊뤋뤌뤍뤎뤏뤐뤑뤒뤓뤔뤕뤖뤗뤙뤚뤛뤜뤝뤞뤟뤡뤢뤣뤤뤥뤦뤧뤨뤩뤪뤫뤬뤭뤮뤯뤰뤱뤲뤳뤴뤵뤶뤷뤸뤹뤺뤻뤾뤿륁륂륃륅륆륇륈륉륊륋륍륎륐륒륓륔륕륖륗’�륚륛륝륞륟륡륢륣륤륥륦륧륪륬륮륯륰륱륲륳륶륷륹륺륻륽륾륿릀릁릂릃릆릈릋릌릏릐릑릒릓릔릕릖릗릘릙릚릛릜릝릞릟릠릡릢릣릤릥릦릧릨릩릪릫릮릯릱릲릳릵릶릷릸릹릺릻릾맀맂맃맄맅맆맇맊맋맍맓맔맕맖맗맚맜맟맠맢맦맧맩맪맫맭맮맯맰맱맲맳맶맻맼맽맾맿먂먃먄먅먆먇먉먊먋먌먍먎먏먐먑먒먓먔먖먗먘먙먚먛먜먝먞먟먠먡먢먣먤먥먦먧먨먩먪먫먬먭먮먯먰먱먲먳먴먵먶먷먺먻먽먾먿멁멃멄멅멆’T멇멊멌멏멐멑멒멖멗멙멚멛멝멞멟멠멡멢멣멦멪멫멬멭멮멯멲멳멵멶멷멹멺멻멼멽멾멿몀몁몂몆몈몉몊몋몍몎몏몐몑몒몓몔몕몖몗몘몙몚몛몜몝몞몟몠몡몢몣몤몥몦몧몪몭몮몯몱몳몴몵몶몷몺몼몾몿뫀뫁뫂뫃뫅뫆뫇뫉뫊뫋뫌뫍뫎뫏뫐뫑뫒뫓뫔뫕뫖뫗뫚뫛뫜뫝뫞뫟뫠뫡뫢뫣뫤뫥뫦뫧뫨뫩뫪뫫뫬뫭뫮뫯뫰뫱뫲뫳뫴뫵뫶뫷뫸뫹뫺뫻뫽뫾뫿묁묂묃묅묆묇묈묉묊묋묌묎묐묒묓묔묕묖묗묙묚묛묝묞묟묡묢묣묤묥묦묧’(묨묪묬묭묮묯묰묱묲묳묷묹묺묿뭀뭁뭂뭃뭆뭈뭊뭋뭌뭎뭑뭒뭓뭕뭖뭗뭙뭚뭛뭜뭝뭞뭟뭠뭢뭤뭥뭦뭧뭨뭩뭪뭫뭭뭮뭯뭰뭱뭲뭳뭴뭵뭶뭷뭸뭹뭺뭻뭼뭽뭾뭿뮀뮁뮂뮃뮄뮅뮆뮇뮉뮊뮋뮍뮎뮏뮑뮒뮓뮔뮕뮖뮗뮘뮙뮚뮛뮜뮝뮞뮟뮠뮡뮢뮣뮥뮦뮧뮩뮪뮫뮭뮮뮯뮰뮱뮲뮳뮵뮶뮸뮹뮺뮻뮼뮽뮾뮿믁믂믃믅믆믇믉믊믋믌믍믎믏믑믒믔믕믖믗믘믙믚믛믜믝믞믟믠믡믢믣믤믥믦믧믨믩믪믫믬믭믮믯믰믱믲믳믴믵믶믷믺믻믽믾밁’�밃밄밅밆밇밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵밶밷밹밺밻밼밽밾밿뱂뱆뱇뱈뱊뱋뱎뱏뱑뱒뱓뱔뱕뱖뱗뱘뱙뱚뱛뱜뱞뱟뱠뱡뱢뱣뱤뱥뱦뱧뱨뱩뱪뱫뱬뱭뱮뱯뱰뱱뱲뱳뱴뱵뱶뱷뱸뱹뱺뱻뱼뱽뱾뱿벀벁벂벃벆벇벉벊벍벏벐벑벒벓벖벘벛벜벝벞벟벢벣벥벦벩벪벫벬벭벮벯벲벶벷벸벹벺벻벾벿볁볂볃볅볆볇볈볉볊볋볌볎볒볓볔볖볗볙볚볛볝볞볟볠볡볢볣볤볥볦볧볨볩볪볫볬볭볮볯볰볱볲볳볷볹볺볻볽’�볾볿봀봁봂봃봆봈봊봋봌봍봎봏봑봒봓봕봖봗봘봙봚봛봜봝봞봟봠봡봢봣봥봦봧봨봩봪봫봭봮봯봰봱봲봳봴봵봶봷봸봹봺봻봼봽봾봿뵁뵂뵃뵄뵅뵆뵇뵊뵋뵍뵎뵏뵑뵒뵓뵔뵕뵖뵗뵚뵛뵜뵝뵞뵟뵠뵡뵢뵣뵥뵦뵧뵩뵪뵫뵬뵭뵮뵯뵰뵱뵲뵳뵴뵵뵶뵷뵸뵹뵺뵻뵼뵽뵾뵿붂붃붅붆붋붌붍붎붏붒붔붖붗붘붛붝붞붟붠붡붢붣붥붦붧붨붩붪붫붬붭붮붯붱붲붳붴붵붶붷붹붺붻붼붽붾붿뷀뷁뷂뷃뷄뷅뷆뷇뷈뷉뷊뷋뷌뷍뷎뷏뷐뷑’�"뷒뷓뷖뷗뷙뷚뷛뷝뷞뷟뷠뷡뷢뷣뷤뷥뷦뷧뷨뷪뷫뷬뷭뷮뷯뷱뷲뷳뷵뷶뷷뷹뷺뷻뷼뷽뷾뷿븁븂븄븆븇븈븉븊븋븎븏븑븒븓븕븖븗븘븙븚븛븞븠븡븢븣븤븥븦븧븨븩븪븫븬븭븮븯븰븱븲븳븴븵븶븷븸븹븺븻븼븽븾븿빀빁빂빃빆빇빉빊빋빍빏빐빑빒빓빖빘빜빝빞빟빢빣빥빦빧빩빫빬빭빮빯빲빶빷빸빹빺빾빿뺁뺂뺃뺅뺆뺇뺈뺉뺊뺋뺎뺒뺓뺔뺕뺖뺗뺚뺛뺜뺝뺞뺟뺠뺡뺢뺣뺤뺥뺦뺧뺩뺪뺫뺬뺭뺮뺯뺰뺱뺲뺳뺴뺵뺶뺷’x%뺸뺹뺺뺻뺼뺽뺾뺿뻀뻁뻂뻃뻄뻅뻆뻇뻈뻉뻊뻋뻌뻍뻎뻏뻒뻓뻕뻖뻙뻚뻛뻜뻝뻞뻟뻡뻢뻦뻧뻨뻩뻪뻫뻭뻮뻯뻰뻱뻲뻳뻴뻵뻶뻷뻸뻹뻺뻻뻼뻽뻾뻿뼀뼂뼃뼄뼅뼆뼇뼊뼋뼌뼍뼎뼏뼐뼑뼒뼓뼔뼕뼖뼗뼚뼞뼟뼠뼡뼢뼣뼤뼥뼦뼧뼨뼩뼪뼫뼬뼭뼮뼯뼰뼱뼲뼳뼴뼵뼶뼷뼸뼹뼺뼻뼼뼽뼾뼿뽂뽃뽅뽆뽇뽉뽊뽋뽌뽍뽎뽏뽒뽓뽔뽖뽗뽘뽙뽚뽛뽜뽝뽞뽟뽠뽡뽢뽣뽤뽥뽦뽧뽨뽩뽪뽫뽬뽭뽮뽯뽰뽱뽲뽳뽴뽵뽶뽷뽸뽹뽺뽻뽼뽽뽾뽿뾀뾁뾂’L(뾃뾄뾅뾆뾇뾈뾉뾊뾋뾌뾍뾎뾏뾐뾑뾒뾓뾕뾖뾗뾘뾙뾚뾛뾜뾝뾞뾟뾠뾡뾢뾣뾤뾥뾦뾧뾨뾩뾪뾫뾬뾭뾮뾯뾱뾲뾳뾴뾵뾶뾷뾸뾹뾺뾻뾼뾽뾾뾿뿀뿁뿂뿃뿄뿆뿇뿈뿉뿊뿋뿎뿏뿑뿒뿓뿕뿖뿗뿘뿙뿚뿛뿝뿞뿠뿢뿣뿤뿥뿦뿧뿨뿩뿪뿫뿬뿭뿮뿯뿰뿱뿲뿳뿴뿵뿶뿷뿸뿹뿺뿻뿼뿽뿾뿿쀀쀁쀂쀃쀄쀅쀆쀇쀈쀉쀊쀋쀌쀍쀎쀏쀐쀑쀒쀓쀔쀕쀖쀗쀘쀙쀚쀛쀜쀝쀞쀟쀠쀡쀢쀣쀤쀥쀦쀧쀨쀩쀪쀫쀬쀭쀮쀯쀰쀱쀲쀳쀴쀵쀶쀷쀸쀹쀺쀻쀽쀾쀿’ +쁀쁁쁂쁃쁄쁅쁆쁇쁈쁉쁊쁋쁌쁍쁎쁏쁐쁒쁓쁔쁕쁖쁗쁙쁚쁛쁝쁞쁟쁡쁢쁣쁤쁥쁦쁧쁪쁫쁬쁭쁮쁯쁰쁱쁲쁳쁴쁵쁶쁷쁸쁹쁺쁻쁼쁽쁾쁿삀삁삂삃삄삅삆삇삈삉삊삋삌삍삎삏삒삓삕삖삗삙삚삛삜삝삞삟삢삤삦삧삨삩삪삫삮삱삲삷삸삹삺삻삾샂샃샄샆샇샊샋샍샎샏샑샒샓샔샕샖샗샚샞샟샠샡샢샣샦샧샩샪샫샭샮샯샰샱샲샳샶샸샺샻샼샽샾샿섁섂섃섅섆섇섉섊섋섌섍섎섏섑섒섓섔섖섗섘섙섚섛섡섢섥섨섩섪섫섮’�-섲섳섴섵섷섺섻섽섾섿셁셂셃셄셅셆셇셊셎셏셐셑셒셓셖셗셙셚셛셝셞셟셠셡셢셣셦셪셫셬셭셮셯셱셲셳셵셶셷셹셺셻셼셽셾셿솀솁솂솃솄솆솇솈솉솊솋솏솑솒솓솕솗솘솙솚솛솞솠솢솣솤솦솧솪솫솭솮솯솱솲솳솴솵솶솷솸솹솺솻솼솾솿쇀쇁쇂쇃쇅쇆쇇쇉쇊쇋쇍쇎쇏쇐쇑쇒쇓쇕쇖쇙쇚쇛쇜쇝쇞쇟쇡쇢쇣쇥쇦쇧쇩쇪쇫쇬쇭쇮쇯쇲쇴쇵쇶쇷쇸쇹쇺쇻쇾쇿숁숂숃숅숆숇숈숉숊숋숎숐숒숓숔숕숖숗숚숛숝숞숡숢숣’�0숤숥숦숧숪숬숮숰숳숵숶숷숸숹숺숻숼숽숾숿쉀쉁쉂쉃쉄쉅쉆쉇쉉쉊쉋쉌쉍쉎쉏쉒쉓쉕쉖쉗쉙쉚쉛쉜쉝쉞쉟쉡쉢쉣쉤쉦쉧쉨쉩쉪쉫쉮쉯쉱쉲쉳쉵쉶쉷쉸쉹쉺쉻쉾슀슂슃슄슅슆슇슊슋슌슍슎슏슑슒슓슔슕슖슗슙슚슜슞슟슠슡슢슣슦슧슩슪슫슮슯슰슱슲슳슶슸슺슻슼슽슾슿싀싁싂싃싄싅싆싇싈싉싊싋싌싍싎싏싐싑싒싓싔싕싖싗싘싙싚싛싞싟싡싢싥싦싧싨싩싪싮싰싲싳싴싵싷싺싽싾싿쌁쌂쌃쌄쌅쌆쌇쌊쌋쌎쌏’�3쌐쌑쌒쌖쌗쌙쌚쌛쌝쌞쌟쌠쌡쌢쌣쌦쌧쌪쌫쌬쌭쌮쌯쌰쌱쌲쌳쌴쌵쌶쌷쌸쌹쌺쌻쌼쌽쌾쌿썀썁썂썃썄썆썇썈썉썊썋썌썍썎썏썐썑썒썓썔썕썖썗썘썙썚썛썜썝썞썟썠썡썢썣썤썥썦썧썪썫썭썮썯썱썳썴썵썶썷썺썻썾썿쎀쎁쎂쎃쎅쎆쎇쎉쎊쎋쎍쎎쎏쎐쎑쎒쎓쎔쎕쎖쎗쎘쎙쎚쎛쎜쎝쎞쎟쎠쎡쎢쎣쎤쎥쎦쎧쎨쎩쎪쎫쎬쎭쎮쎯쎰쎱쎲쎳쎴쎵쎶쎷쎸쎹쎺쎻쎼쎽쎾쎿쏁쏂쏃쏄쏅쏆쏇쏈쏉쏊쏋쏌쏍쏎쏏쏐쏑쏒쏓쏔쏕쏖쏗쏚’p6쏛쏝쏞쏡쏣쏤쏥쏦쏧쏪쏫쏬쏮쏯쏰쏱쏲쏳쏶쏷쏹쏺쏻쏼쏽쏾쏿쐀쐁쐂쐃쐄쐅쐆쐇쐉쐊쐋쐌쐍쐎쐏쐑쐒쐓쐔쐕쐖쐗쐘쐙쐚쐛쐜쐝쐞쐟쐠쐡쐢쐣쐥쐦쐧쐨쐩쐪쐫쐭쐮쐯쐱쐲쐳쐵쐶쐷쐸쐹쐺쐻쐾쐿쑀쑁쑂쑃쑄쑅쑆쑇쑉쑊쑋쑌쑍쑎쑏쑐쑑쑒쑓쑔쑕쑖쑗쑘쑙쑚쑛쑜쑝쑞쑟쑠쑡쑢쑣쑦쑧쑩쑪쑫쑭쑮쑯쑰쑱쑲쑳쑶쑷쑸쑺쑻쑼쑽쑾쑿쒁쒂쒃쒄쒅쒆쒇쒈쒉쒊쒋쒌쒍쒎쒏쒐쒑쒒쒓쒕쒖쒗쒘쒙쒚쒛쒝쒞쒟쒠쒡쒢쒣쒤쒥쒦쒧쒨쒩’D9쒪쒫쒬쒭쒮쒯쒰쒱쒲쒳쒴쒵쒶쒷쒹쒺쒻쒽쒾쒿쓀쓁쓂쓃쓄쓅쓆쓇쓈쓉쓊쓋쓌쓍쓎쓏쓐쓑쓒쓓쓔쓕쓖쓗쓘쓙쓚쓛쓜쓝쓞쓟쓠쓡쓢쓣쓤쓥쓦쓧쓨쓪쓫쓬쓭쓮쓯쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂씃씄씅씆씇씈씉씊씋씍씎씏씑씒씓씕씖씗씘씙씚씛씝씞씟씠씡씢씣씤씥씦씧씪씫씭씮씯씱씲씳씴씵씶씷씺씼씾씿앀앁앂앃앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩앪앫앬앭앮앯앲앶앷앸앹앺앻앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔’<얖얙얚얛얝얞얟얡얢얣얤얥얦얧얨얪얫얬얭얮얯얰얱얲얳얶얷얺얿엀엁엂엃엋엍엏엒엓엕엖엗엙엚엛엜엝엞엟엢엤엦엧엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑옒옓옔옕옖옗옚옝옞옟옠옡옢옣옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉왊왋왌왍왎왏왒왖왗왘왙왚왛왞왟왡왢왣왤왥왦왧왨왩왪왫왭왮왰왲왳왴왵왶왷왺왻왽왾왿욁욂욃욄욅욆욇욊욌욎욏욐욑욒욓욖욗욙욚욛욝욞욟욠욡욢욣욦’�>욨욪욫욬욭욮욯욲욳욵욶욷욻욼욽욾욿웂웄웆웇웈웉웊웋웎웏웑웒웓웕웖웗웘웙웚웛웞웟웢웣웤웥웦웧웪웫웭웮웯웱웲웳웴웵웶웷웺웻웼웾웿윀윁윂윃윆윇윉윊윋윍윎윏윐윑윒윓윖윘윚윛윜윝윞윟윢윣윥윦윧윩윪윫윬윭윮윯윲윴윶윸윹윺윻윾윿읁읂읃읅읆읇읈읉읋읎읐읙읚읛읝읞읟읡읢읣읤읥읦읧읩읪읬읭읮읯읰읱읲읳읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛잜잝잞잟잢잧잨잩잪잫잮잯잱잲잳잵잶잷’�A잸잹잺잻잾쟂쟃쟄쟅쟆쟇쟊쟋쟍쟏쟑쟒쟓쟔쟕쟖쟗쟙쟚쟛쟜쟞쟟쟠쟡쟢쟣쟥쟦쟧쟩쟪쟫쟭쟮쟯쟰쟱쟲쟳쟴쟵쟶쟷쟸쟹쟺쟻쟼쟽쟾쟿젂젃젅젆젇젉젋젌젍젎젏젒젔젗젘젙젚젛젞젟젡젢젣젥젦젧젨젩젪젫젮젰젲젳젴젵젶젷젹젺젻젽젾젿졁졂졃졄졅졆졇졊졋졎졏졐졑졒졓졕졖졗졘졙졚졛졜졝졞졟졠졡졢졣졤졥졦졧졨졩졪졫졬졭졮졯졲졳졵졶졷졹졻졼졽졾졿좂좄좈좉좊좎좏좐좑좒좓좕좖좗좘좙좚좛좜좞좠좢좣좤’�D좥좦좧좩좪좫좬좭좮좯좰좱좲좳좴좵좶좷좸좹좺좻좾좿죀죁죂죃죅죆죇죉죊죋죍죎죏죐죑죒죓죖죘죚죛죜죝죞죟죢죣죥죦죧죨죩죪죫죬죭죮죯죰죱죲죳죴죶죷죸죹죺죻죾죿줁줂줃줇줈줉줊줋줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈〉《》「」『』【】±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬’hG줐줒줓줔줕줖줗줙줚줛줜줝줞줟줠줡줢줣줤줥줦줧줨줩줪줫줭줮줯줰줱줲줳줵줶줷줸줹줺줻줼줽줾줿쥀쥁쥂쥃쥄쥅쥆쥇쥈쥉쥊쥋쥌쥍쥎쥏쥒쥓쥕쥖쥗쥙쥚쥛쥜쥝쥞쥟쥢쥤쥥쥦쥧쥨쥩쥪쥫쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®	��<J쥱쥲쥳쥵쥶쥷쥸쥹쥺쥻쥽쥾쥿즀즁즂즃즄즅즆즇즊즋즍즎즏즑즒즓즔즕즖즗즚즜즞즟즠즡즢즣즤즥즦즧즨즩즪즫즬즭즮즯즰즱즲즳즴즵즶즷즸즹즺즻즼즽즾즿짂짃짅짆짉짋짌짍짎짏짒짔짗짘짛!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[₩]^_`abcdefghijklmnopqrstuvwxyz{|} ̄’�L짞짟짡짣짥짦짨짩짪짫짮짲짳짴짵짶짷짺짻짽짾짿쨁쨂쨃쨄쨅쨆쨇쨊쨎쨏쨐쨑쨒쨓쨕쨖쨗쨙쨚쨛쨜쨝쨞쨟쨠쨡쨢쨣쨤쨥쨦쨧쨨쨪쨫쨬쨭쨮쨯쨰쨱쨲쨳쨴쨵쨶쨷쨸쨹쨺쨻쨼쨽쨾쨿쩀쩁쩂쩃쩄쩅쩆ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺㄻㄼㄽㄾㄿㅀㅁㅂㅃㅄㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟㅠㅡㅢㅣㅤㅥㅦㅧㅨㅩㅪㅫㅬㅭㅮㅯㅰㅱㅲㅳㅴㅵㅶㅷㅸㅹㅺㅻㅼㅽㅾㅿㆀㆁㆂㆃㆄㆅㆆㆇㆈㆉㆊㆋㆌㆍㆎ’�O쩇쩈쩉쩊쩋쩎쩏쩑쩒쩓쩕쩖쩗쩘쩙쩚쩛쩞쩢쩣쩤쩥쩦쩧쩩쩪쩫쩬쩭쩮쩯쩰쩱쩲쩳쩴쩵쩶쩷쩸쩹쩺쩻쩼쩾쩿쪀쪁쪂쪃쪅쪆쪇쪈쪉쪊쪋쪌쪍쪎쪏쪐쪑쪒쪓쪔쪕쪖쪗쪙쪚쪛쪜쪝쪞쪟쪠쪡쪢쪣쪤쪥쪦쪧ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ	ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψωB�`R쪨쪩쪪쪫쪬쪭쪮쪯쪰쪱쪲쪳쪴쪵쪶쪷쪸쪹쪺쪻쪾쪿쫁쫂쫃쫅쫆쫇쫈쫉쫊쫋쫎쫐쫒쫔쫕쫖쫗쫚쫛쫜쫝쫞쫟쫡쫢쫣쫤쫥쫦쫧쫨쫩쫪쫫쫭쫮쫯쫰쫱쫲쫳쫵쫶쫷쫸쫹쫺쫻쫼쫽쫾쫿쬀쬁쬂쬃쬄쬅쬆쬇쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃╄╅╆╇╈╉╊	��T쬋쬌쬍쬎쬏쬑쬒쬓쬕쬖쬗쬙쬚쬛쬜쬝쬞쬟쬢쬣쬤쬥쬦쬧쬨쬩쬪쬫쬬쬭쬮쬯쬰쬱쬲쬳쬴쬵쬶쬷쬸쬹쬺쬻쬼쬽쬾쬿쭀쭂쭃쭄쭅쭆쭇쭊쭋쭍쭎쭏쭑쭒쭓쭔쭕쭖쭗쭚쭛쭜쭞쭟쭠쭡쭢쭣쭥쭦쭧쭨쭩쭪쭫쭬㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙㎚㎛㎜㎝㎞㎟㎠㎡㎢㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰㎱㎲㎳㎴㎵㎶㎷㎸㎹㎀㎁㎂㎃㎄㎺㎻㎼㎽㎾㎿㎐㎑㎒㎓㎔Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆	•@W쭭쭮쭯쭰쭱쭲쭳쭴쭵쭶쭷쭺쭻쭼쭽쭾쭿쮀쮁쮂쮃쮄쮅쮆쮇쮈쮉쮊쮋쮌쮍쮎쮏쮐쮑쮒쮓쮔쮕쮖쮗쮘쮙쮚쮛쮝쮞쮟쮠쮡쮢쮣쮤쮥쮦쮧쮨쮩쮪쮫쮬쮭쮮쮯쮰쮱쮲쮳쮴쮵쮶쮷쮹쮺쮻쮼쮽쮾쮿쯀쯁쯂쯃쯄ÆÐªĦ	IJĿŁØŒºÞŦŊ㉠㉡㉢㉣㉤㉥㉦㉧㉨㉩㉪㉫㉬㉭㉮㉯㉰㉱㉲㉳㉴㉵㉶㉷㉸㉹㉺㉻ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮½⅓⅔¼¾⅛⅜⅝⅞���Y쯅쯆쯇쯈쯉쯊쯋쯌쯍쯎쯏쯐쯑쯒쯓쯕쯖쯗쯘쯙쯚쯛쯜쯝쯞쯟쯠쯡쯢쯣쯥쯦쯨쯪쯫쯬쯭쯮쯯쯰쯱쯲쯳쯴쯵쯶쯷쯸쯹쯺쯻쯼쯽쯾쯿찀찁찂찃찄찅찆찇찈찉찊찋찎찏찑찒찓찕찖찗찘찙찚찛찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀㈁㈂㈃㈄㈅㈆㈇㈈㈉㈊㈋㈌㈍㈎㈏㈐㈑㈒㈓㈔㈕㈖㈗㈘㈙㈚㈛⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂¹²³⁴ⁿ₁₂₃₄’�\찥찦찪찫찭찯찱찲찳찴찵찶찷찺찿챀챁챂챃챆챇챉챊챋챍챎챏챐챑챒챓챖챚챛챜챝챞챟챡챢챣챥챧챩챪챫챬챭챮챯챱챲챳챴챶챷챸챹챺챻챼챽챾챿첀첁첂첃첄첅첆첇첈첉첊첋첌첍첎첏첐첑첒첓ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん	B�|_첔첕첖첗첚첛첝첞첟첡첢첣첤첥첦첧첪첮첯첰첱첲첳첶첷첹첺첻첽첾첿쳀쳁쳂쳃쳆쳈쳊쳋쳌쳍쳎쳏쳑쳒쳓쳕쳖쳗쳘쳙쳚쳛쳜쳝쳞쳟쳠쳡쳢쳣쳥쳦쳧쳨쳩쳪쳫쳭쳮쳯쳱쳲쳳쳴쳵쳶쳷쳸쳹쳺쳻쳼쳽ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	�(b쳾쳿촀촂촃촄촅촆촇촊촋촍촎촏촑촒촓촔촕촖촗촚촜촞촟촠촡촢촣촥촦촧촩촪촫촭촮촯촰촱촲촳촴촵촶촷촸촺촻촼촽촾촿쵀쵁쵂쵃쵄쵅쵆쵇쵈쵉쵊쵋쵌쵍쵎쵏쵐쵑쵒쵓쵔쵕쵖쵗쵘쵙쵚쵛쵝쵞쵟АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя˜�d쵡쵢쵣쵥쵦쵧쵨쵩쵪쵫쵮쵰쵲쵳쵴쵵쵶쵷쵹쵺쵻쵼쵽쵾쵿춀춁춂춃춄춅춆춇춉춊춋춌춍춎춏춐춑춒춓춖춗춙춚춛춝춞춟춠춡춢춣춦춨춪춫춬춭춮춯춱춲춳춴춵춶춷춸춹춺춻춼춽춾춿췀췁췂췃췅	��Hg췆췇췈췉췊췋췍췎췏췑췒췓췔췕췖췗췘췙췚췛췜췝췞췟췠췡췢췣췤췥췦췧췩췪췫췭췮췯췱췲췳췴췵췶췷췺췼췾췿츀츁츂츃츅츆츇츉츊츋츍츎츏츐츑츒츓츕츖츗츘츚츛츜츝츞츟츢츣츥츦츧츩츪츫	���h츬츭츮츯츲츴츶츷츸츹츺츻츼츽츾츿칀칁칂칃칄칅칆칇칈칉칊칋칌칍칎칏칐칑칒칓칔칕칖칗칚칛칝칞칢칣칤칥칦칧칪칬칮칯칰칱칲칳칶칷칹칺칻칽칾칿캀캁캂캃캆캈캊캋캌캍캎캏캒캓캕캖캗캙	��j캚캛캜캝캞캟캢캦캧캨캩캪캫캮캯캰캱캲캳캴캵캶캷캸캹캺캻캼캽캾캿컀컂컃컄컅컆컇컈컉컊컋컌컍컎컏컐컑컒컓컔컕컖컗컘컙컚컛컜컝컞컟컠컡컢컣컦컧컩컪컭컮컯컰컱컲컳컶컺컻컼컽컾컿가각간갇갈갉갊감갑값갓갔강갖갗같갚갛개객갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆’hk켂켃켅켆켇켉켊켋켌켍켎켏켒켔켖켗켘켙켚켛켝켞켟켡켢켣켥켦켧켨켩켪켫켮켲켳켴켵켶켷켹켺켻켼켽켾켿콀콁콂콃콄콅콆콇콈콉콊콋콌콍콎콏콐콑콒콓콖콗콙콚콛콝콞콟콠콡콢콣콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸’<n콭콮콯콲콳콵콶콷콹콺콻콼콽콾콿쾁쾂쾃쾄쾆쾇쾈쾉쾊쾋쾍쾎쾏쾐쾑쾒쾓쾔쾕쾖쾗쾘쾙쾚쾛쾜쾝쾞쾟쾠쾢쾣쾤쾥쾦쾧쾩쾪쾫쾬쾭쾮쾯쾱쾲쾳쾴쾵쾶쾷쾸쾹쾺쾻쾼쾽쾾쾿쿀쿁쿂쿃쿅쿆쿇쿈쿉쿊쿋깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙’q쿌쿍쿎쿏쿐쿑쿒쿓쿔쿕쿖쿗쿘쿙쿚쿛쿜쿝쿞쿟쿢쿣쿥쿦쿧쿩쿪쿫쿬쿭쿮쿯쿲쿴쿶쿷쿸쿹쿺쿻쿽쿾쿿퀁퀂퀃퀅퀆퀇퀈퀉퀊퀋퀌퀍퀎퀏퀐퀒퀓퀔퀕퀖퀗퀙퀚퀛퀜퀝퀞퀟퀠퀡퀢퀣퀤퀥퀦퀧퀨퀩퀪퀫퀬끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫났낭낮낯낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝’�s퀮퀯퀰퀱퀲퀳퀶퀷퀹퀺퀻퀽퀾퀿큀큁큂큃큆큈큊큋큌큍큎큏큑큒큓큕큖큗큙큚큛큜큝큞큟큡큢큣큤큥큦큧큨큩큪큫큮큯큱큲큳큵큶큷큸큹큺큻큾큿킀킂킃킄킅킆킇킈킉킊킋킌킍킎킏킐킑킒킓킔뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫달닭닮닯닳담답닷닸당닺닻닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥’�v킕킖킗킘킙킚킛킜킝킞킟킠킡킢킣킦킧킩킪킫킭킮킯킰킱킲킳킶킸킺킻킼킽킾킿탂탃탅탆탇탊탋탌탍탎탏탒탖탗탘탙탚탛탞탟탡탢탣탥탦탧탨탩탪탫탮탲탳탴탵탶탷탹탺탻탼탽탾탿턀턁턂턃턄덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸’�y턅턆턇턈턉턊턋턌턎턏턐턑턒턓턔턕턖턗턘턙턚턛턜턝턞턟턠턡턢턣턤턥턦턧턨턩턪턫턬턭턮턯턲턳턵턶턷턹턻턼턽턾턿텂텆텇텈텉텊텋텎텏텑텒텓텕텖텗텘텙텚텛텞텠텢텣텤텥텦텧텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗’`|텮텯텰텱텲텳텴텵텶텷텸텹텺텻텽텾텿톀톁톂톃톅톆톇톉톊톋톌톍톎톏톐톑톒톓톔톕톖톗톘톙톚톛톜톝톞톟톢톣톥톦톧톩톪톫톬톭톮톯톲톴톶톷톸톹톻톽톾톿퇁퇂퇃퇄퇅퇆퇇퇈퇉퇊퇋퇌퇍퇎퇏래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩’4퇐퇑퇒퇓퇔퇕퇖퇗퇙퇚퇛퇜퇝퇞퇟퇠퇡퇢퇣퇤퇥퇦퇧퇨퇩퇪퇫퇬퇭퇮퇯퇰퇱퇲퇳퇵퇶퇷퇹퇺퇻퇼퇽퇾퇿툀툁툂툃툄툅툆툈툊툋툌툍툎툏툑툒툓툔툕툖툗툘툙툚툛툜툝툞툟툠툡툢툣툤툥툦툧툨툩륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많맏말맑맒맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼’�툪툫툮툯툱툲툳툵툶툷툸툹툺툻툾퉀퉂퉃퉄퉅퉆퉇퉉퉊퉋퉌퉍퉎퉏퉐퉑퉒퉓퉔퉕퉖퉗퉘퉙퉚퉛퉝퉞퉟퉠퉡퉢퉣퉥퉦퉧퉨퉩퉪퉫퉬퉭퉮퉯퉰퉱퉲퉳퉴퉵퉶퉷퉸퉹퉺퉻퉼퉽퉾퉿튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바박밖밗반받발밝밞밟밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗’܄튍튎튏튒튓튔튖튗튘튙튚튛튝튞튟튡튢튣튥튦튧튨튩튪튫튭튮튯튰튲튳튴튵튶튷튺튻튽튾틁틃틄틅틆틇틊틌틍틎틏틐틑틒틓틕틖틗틙틚틛틝틞틟틠틡틢틣틦틧틨틩틪틫틬틭틮틯틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤’��틻틼틽틾틿팂팄팆팇팈팉팊팋팏팑팒팓팕팗팘팙팚팛팞팢팣팤팦팧팪팫팭팮팯팱팲팳팴팵팶팷팺팾팿퍀퍁퍂퍃퍆퍇퍈퍉퍊퍋퍌퍍퍎퍏퍐퍑퍒퍓퍔퍕퍖퍗퍘퍙퍚퍛퍜퍝퍞퍟퍠퍡퍢퍣퍤퍥퍦퍧퍨퍩빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤’��퍪퍫퍬퍭퍮퍯퍰퍱퍲퍳퍴퍵퍶퍷퍸퍹퍺퍻퍾퍿펁펂펃펅펆펇펈펉펊펋펎펒펓펔펕펖펗펚펛펝펞펟펡펢펣펤펥펦펧펪펬펮펯펰펱펲펳펵펶펷펹펺펻펽펾펿폀폁폂폃폆폇폊폋폌폍폎폏폑폒폓폔폕폖샥샨샬샴샵샷샹섀섄섈섐섕서석섞섟선섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭’X�폗폙폚폛폜폝폞폟폠폢폤폥폦폧폨폩폪폫폮폯폱폲폳폵폶폷폸폹폺폻폾퐀퐂퐃퐄퐅퐆퐇퐉퐊퐋퐌퐍퐎퐏퐐퐑퐒퐓퐔퐕퐖퐗퐘퐙퐚퐛퐜퐞퐟퐠퐡퐢퐣퐤퐥퐦퐧퐨퐩퐪퐫퐬퐭퐮퐯퐰퐱퐲퐳퐴퐵퐶퐷숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰’,�퐸퐹퐺퐻퐼퐽퐾퐿푁푂푃푅푆푇푈푉푊푋푌푍푎푏푐푑푒푓푔푕푖푗푘푙푚푛푝푞푟푡푢푣푥푦푧푨푩푪푫푬푮푰푱푲푳푴푵푶푷푺푻푽푾풁풃풄풅풆풇풊풌풎풏풐풑풒풓풕풖풗풘풙풚풛풜풝쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄업없엇었엉엊엌엎’�풞풟풠풡풢풣풤풥풦풧풨풪풫풬풭풮풯풰풱풲풳풴풵풶풷풸풹풺풻풼풽풾풿퓀퓁퓂퓃퓄퓅퓆퓇퓈퓉퓊퓋퓍퓎퓏퓑퓒퓓퓕퓖퓗퓘퓙퓚퓛퓝퓞퓠퓡퓢퓣퓤퓥퓦퓧퓩퓪퓫퓭퓮퓯퓱퓲퓳퓴퓵퓶퓷퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염엽엾엿였영옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨’ԕ퓾퓿픀픁픂픃픅픆픇픉픊픋픍픎픏픐픑픒픓픖픘픙픚픛픜픝픞픟픠픡픢픣픤픥픦픧픨픩픪픫픬픭픮픯픰픱픲픳픴픵픶픷픸픹픺픻픾픿핁핂핃핅핆핇핈핉핊핋핎핐핒핓핔핕핖핗핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응읒읓읔읕읖읗의읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊’��핤핦핧핪핬핮핯핰핱핲핳핶핷핹핺핻핽핾핿햀햁햂햃햆햊햋햌햍햎햏햑햒햓햔햕햖햗햘햙햚햛햜햝햞햟햠햡햢햣햤햦햧햨햩햪햫햬햭햮햯햰햱햲햳햴햵햶햷햸햹햺햻햼햽햾햿헀헁헂헃헄헅헆헇점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓’|�헊헋헍헎헏헑헓헔헕헖헗헚헜헞헟헠헡헢헣헦헧헩헪헫헭헮헯헰헱헲헳헶헸헺헻헼헽헾헿혂혃혅혆혇혉혊혋혌혍혎혏혒혖혗혘혙혚혛혝혞혟혡혢혣혥혦혧혨혩혪혫혬혮혯혰혱혲혳혴혵혶혷혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻’P�혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝홞홟홠홡홢홣홤홥홦홨홪홫홬홭홮홯홲홳홵홶홷홸홹홺홻홼홽홾홿횀횁횂횄횆횇횈횉횊횋횎횏횑횒횓횕횖횗횘횙횚횛횜횞횠횢횣횤횥횦횧횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층’$�횫횭횮횯횱횲횳횴횵횶횷횸횺횼횽횾횿훀훁훂훃훆훇훉훊훋훍훎훏훐훒훓훕훖훘훚훛훜훝훞훟훡훢훣훥훦훧훩훪훫훬훭훮훯훱훲훳훴훶훷훸훹훺훻훾훿휁휂휃휅휆휇휈휉휊휋휌휍휎휏휐휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼’��휕휖휗휚휛휝휞휟휡휢휣휤휥휦휧휪휬휮휯휰휱휲휳휶휷휹휺휻휽휾휿흀흁흂흃흅흆흈흊흋흌흍흎흏흒흓흕흚흛흜흝흞흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵흶흷흸흹흺흻흾흿힀힂힃힄힅힆힇힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜’̦힍힎힏힑힒힓힔힕힖힗힚힜힞힟힠힡힢힣	퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁B���	퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠�p�	혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝���›	伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕���	匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢��	瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械���	棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜� �	科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾���	區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴�0�	鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣���	朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩羅蘿螺裸邏那樂洛烙珞落諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉�@�	納臘蠟衲囊娘廊朗浪狼郎乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧老蘆虜路露駑魯鷺碌祿綠菉錄鹿論壟弄濃籠聾膿農惱牢磊腦賂雷尿壘屢樓淚漏累縷陋嫩訥杻紐勒肋凜凌稜綾能菱陵尼泥匿溺多茶�Ⱥ	丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃�P�	棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅�ؽ	蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣�`�	煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼��	遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬�p�	立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅���	蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文���	汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑��	發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖���	碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦��	孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥���	脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索�(�	傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署���	胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬�8�	聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁���	戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧�H�	嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁���	沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額�X�	櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬���	旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒�h�	簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳���	烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療�x�	窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓��	運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜���	濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼��	議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄���	立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長� �	障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱���	煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖�0�	靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫���	踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只�@�	咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯���	鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策�P�	責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢���	椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃�`�	贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託���	鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑�p�	阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃���	品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航���	行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型��	形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵���	禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆��	爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰�������\�0�����T(	���xL ���"p%D(+�-�0�3h6<9<�>�A�D`G4J�L�OXR�T8W�Y�\t_ b�d@g�hj`k4nq�s�v�yX|,�Ԅ��|�P�$���̕��t�H���Ħ��h��x���������(���8���H�нX��h���x������� ���0���@���P���`���p�����������(���8���H���X���h���x������� ���(���	

��	
��	��	
������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

������	��	

��	
����	

��������	

��	

��	

��	

 !"#$%&'()*+,-./0123456789��	




















































��	

��	
����	

��	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./01234567888888888��	

��	

��	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	
��	��	

��	
��	������	
��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	����	

��	

 ��	

 ��	

��	

��	

��	
��	
����	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	��	
��	

��	
��	
����	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	

��	

��	
��	
��	
��	����	

��	
��	��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	
��	
����	

��	��	

��	

��	

��	

��	

��	

��	����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	
��	

��	
��	
��	
��	

��	

��	
��	

��	

��	
��	
����	
����	
����	����	

��	
��	

��	
����	

����	

��	

��	

��	

��	

��	

������	

��	

��	

��	����	��	
����	
����	
��	

��	��	
��	

��	

 ��	

 ��	

��	����	

��	

��	

��	
��	
��	

����	

��	
��	
����������	

��	����	

��	

��	

��	

��	

����	��	

��	

����	

��	
��	
��	

��	
��	
��	

��������	
������������������������	
��	
����	
����	

 !"#$%&'()*+,-./0123456789:;<��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

����	

��	

��	
��	
��	

��	

��	
��	

��	

��	
��	

��	

��	

��	

��	

��	��	

��	

��	
��	

��	

��	

��	��	
��	
��	

��	

��	

��	

��	
����������	
��	

��	

��	
��	

��	

����	

����	

��	

��	

����	

��	

����	

��	

��	��	
��	

��	
��	

��	

��	��	
��	

��	��	
��	

��	
��	
��	������	������	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	��	������	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	
��	
��	��	

��	
��	
����	

����	
������	

��	

��	

��	
��	

��	��	
��	
��	

��	

��	

��	
��	

��	

����	
��	
��	

��	
��	

����	

��	

����	
����	

��	

��	

����	

��	

����	
��	��	
��	��	

����	

��	

��	

��	

��	

��	

��	

��	
��	

 ��	

                                 ����	�����	


��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHHHHHHHHHHHHHHHHHHHHHHH��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDE��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEEEEEEEEEEEEEEEEEEEEEEEEEE��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPPPPPPPPPPPPPPP��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTTTTTTTTTTT��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWW��	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[��	

 !"#$%%%%%%%%%%%%%%%%%%%%%%%%%%%%A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_____`abcdefghi_______jklmnopqrstuvwxyz{|}~��________������������������������______A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZY[\]^_`abYcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������A�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvvvvvvvvvvvvvvvwxyz{|}~������������������������vvvvvvvvvvvvvA�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUA�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqA�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_A��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~J; �`��<�`��d�a��|zRx�$x`��0FJw�?:*3$"D�`�� \Ha��<HoGNU��`�#`f$�����f`�������lf�2�����flP������x���
LP�#X�#���o`��
��#0��(	���oh���o�oP���o�# GA$3a1�YGA$3p1094LGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignkorean.so-2.7.8-141.el8.x86_64.debug|��7zXZ�ִF!t/��]?�E�h=��ڊ�2N�a�nj��r�p�R�֩:��_2��ʮ>��C���c��K��� 	O ����N'���[n�v�b�l�”B�AW�=x�:��w�!�c��]1[�p��13xZ9���� A%�4��>�>��I_��$+�4�J���a�����^\��-./mpͱ�#Ѝ�����L���r����	���́�ׯ��2BV/�bg�:��q�
O��nH��&���U}�{���?oB��!�B4~H������)�8��d]����,`����F]fN�p�g��8P��r�$^��Y�F���J��B��萜es�$�q4ƀ��}�(��(�>ڵ�t~�F�7�����v�^5�l:�a�g�Q���v���_U�DCj���"x�2>,�B4ݷ�z5�wn�_�L�7^!GQ���*�"�ަu�Ku�M�
�;�>�6�x�~�]��%���D6����VѭN]̕�.���J��wvb~�v�<r��'D$���*���q��z�(� 8�	�k�<e������/в*:��&Y���	�K�=��-M�������I!T��NѪ��G�Ԙ��A��7�v�5�:V�^d�
x�Ɲd�A��h������wL���a�F�g��L�F���`9<��>u�����jg�����f�׹��b4���}��[f-G�z�B@uϱ{�F�yt�(Tc�Wѽ�W�&ã��>��̿�GZ5�Q�/��)e:���(*����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T��(^B��0h��c0n00 wPP�}LL
�``� �D�D�$�h�h�t��� �P�#P��X�#X��`�#`�� ��#����#� ��#�(�(�#(��0�c(��
�,H�H��+PKMH[�R����lib64/ruby/enc/trans/emoji.sonuȯ��ELF>P
@��@8	@���� P�P� P� �	�	 �� � ��888$$������  S�td������  P�td���$$Q�tdR�tdP�P� P� �	�	GNU3�ol�
�\�O*���{�ns�Q BE���|�qX
� ` , F"�(� �0� �(� U�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_emojirb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P� X� �
`� `� �� ��� ���  j��  � �(� �8�  jH� �� �ȷ �ط  j� `� �h� �x�  j�� � �� ��  j(� �� ��� ���  jȹ @� �H� �X�  jh� � �� ���  j� �� ��� ���  j��  � �(� �8�  jH� �� �ȼ �ؼ  j� `� �h� �x�  j�� � � � �� �  � ��H��H��� H��t��H����5� �%� ��h�������h���������%ݵ D���%յ DH�=ѵ H�ʵ H9�tH�v� H��t	�����H�=�� H�5�� H)�H��H��H��?H�H�tH�E� H��t��fD�����=]� u+UH�="� H��tH�=~� �Y����d����5� ]������w������H��H�=A� ����H�=�� ����H�=� ��H�==� ���H�=�� ����H�=� ����H�=9� ����H�=�� ���H�=� ���H�=5� ���H�=�� ���H�=ݪ H�������H��H���UTF-8UTF8-SoftBankUTF8-KDDIUTF8-DoCoMoBd�0	�H	
L	L	t����@D��� ( [PP�P (HX`h�p��	��	��	X	�'Q)\�	����P�� (4X`h�<☀☁�l☔⛄⚡	♈♉♊♋♌♍♎♏♐♑♒♓⚾⛳⚽Ⓜ✈⛽���☕✂↗��	☎♥♠♦♣✌↘↖♿⛵↙✒0�	✉↩mQn�o�prQs�t�uwQx�y❤⤴♨r8	⤵	❢⁉‼〰✏⌚©™㊙♻®⚠↔↕��		-�	|�0	�	�	�	�	 (
X`h�
	o@
	Ѽ��
	��	<	~�	�
	�
	D	2�l	��		@	S	�	�	�	�	H	2
�	[
	�
�	Ѽ�
�	!�	c`�
x�
�
d�8��@����X��	�`	)�	kD�<��� (XX`h�	�
<	��(�	q�	�x	�H	7�	y`	��	��	?�	�'��	�$	X	�`	Gl 	�'�<!	��!	��
�!	O�"	��#��p@�X����PXd 4!�!�!�"�#�$��$	�%	�%	W&�%�%�&��& (%�&X`h��&	❇✴♿�'	⚠❢⛔⛄⚡☀❄⭐☔☁⛅♈♉♊♋♌♍♎♏♐♑♒♓✏���⚓✈⛵⚽⚾♨�4'	�㊙☝☺�'	✂✉Qn�o�prQs�t�uwQx◀▶▫▪ℹ◽◾◻◼⚪⚫✳⬆h�'⬇	⬜⬛↖↘™✖➡⬅↗↙✔©®↪↩⛽;⌚⌛�P(	   ❤☎☕⛳♠♦♣✌�y⛪��(	⛲⛺���Q^�`7�(	���㊗♥⭕�)	у�<)	☑✒��ј�Q���⤴⤵⁉‼P)	♻↔↕��)	m��)	⛲⛺���Q^�`���㊗♥�)	⭕M�)	у��ј�Q���⤴⤵⁉‼�*	♻↔�D*↕	m`*	❇✴♿⚠❢⛔⛄⚡☀❄⭐☔☁⛅♈♉♊♋♌♍♎♏♐♑♒♓✏���U|*	⚓✈⛵⚽⚾♨��+	㊙☝☺✂✉Qn�o�,+,'�'�'H(�(�()4)H)�)�)�)�)*<*X*t*�*$+T+�\+�prQs�t�uwQx	◀▶▫▪ℹ◽◾◻◼⚪⚫✳⬆⬇⬜⬛↖↘™✖➡⬅↗↙✔©®↪↩�+	⛽;⌚⌛   ❤☎☕⛳♠♦]`,♣	✌�y☑✒⛪��,X,�,�,��, (�+�,X`h��,	� -	#�-	e4.	��.	�/	+�/	m�/	�t0	��0	3412	uT1�-,.�./�/�/l0�0,1L1�1��1 (�1X`h��1��1	;�2	}H3	�D4	�4	C�5�6�7		P7	KX8	��8�2@3<4�4�5�57H7P8�8p9�x9 (�9X`h��9	☎☝✌⛳⚾⚽⛵✈❢❤⛪⛽��9	☕⛄☁☀☔ (:	⛲⛺♨〽���⚡S P:	���� |:	✴✳♿♥♦♠♣m���Qn�o�prQs�t�uwQx�y���⬆⬇➡⬅↗↖↘↙▶◀♈� �:♉♊♋♌♍♎♏♐♑♒♓	©®⚠!$;	㊗✂㊙⭐⭕[!p;�!�		☺�!�;!"�		�;у��ј�Q^�`Q���™c"�; :H:t:�:;h;�;�;�;�;�;�< (4<X`h�<<�"l<	�"�<)#�<	k#�<	�#�<�#�<	1$=s$,=	�$@=�$�		9%\={%�=�%�=Ѽ	�%>	A&8>	�&t>	�&�>'�>I'@=	�'�>�<�<�<�<=$=8=L=T=�=�=>0>l>�>�>�>�>�>�'�>	(D?	Q(\?T?l?�(t?�(@=)@=	Y)�?	�)�?�)@=	*�?a*@=	�*@	�*d@	'+�@	2i+ A	�+pA	�+�A	/,B	q,�B	�,�B�,C	7-0C	y-HC	�-�C�-D�?�?�?�?�?@@\@�@AhA�AB|B�BC(C@C�CD$D?.,D �D�.�D|< <?�?(�D`h�.�D�"�D�/�D)#Ek#(E�#@E�#pE�/�Es$�E.0�Ep0�E�0F{%4F�0�F61�Fx1�F�1<G	�1hG'�G>2�G�'�GE E8EhE�E�E�E�E�E,F�F�F�F4G`G�G�G�G�G�'�G�2@=Q(HH@HXH�(`H�(xH)�H�2�H	3�H	F3�H�3(I	�3@I4�I	N4�J�4�K	�4L	5�L	V5�M�5�N	�5xO�,4P	6HPt^6lP	�6LQ�-�Q�H�H�H�H�? I8I�I�J�KL�L�M�NpO,P@PdPDQ�Q�Q?.�Q 4R�.<R�D 8HpH(HR`h�.PR�"�R�6@=)#@=	k#�R	$7�Rf7@=	�7�Rs$S.0(S�7DS	�0`S	{%�S�%�S��61T	,8LT	n8�T	�8�T'�T>2�T�'U�R�R�R�R�RS S<SXS�S�STDT�T�T�T�TU$U�',U	(�UQ(�U�U�U�(�U�(�U�2�U	�8V	494V	�3tV	v9�V	�9�V	�9�W	<:8X	~:�X	�:<Y�'	;Z	D;�Z	�;P[�;�[	
<�[Q)	L<\	�<�\�-@]�U�?�U,V�?lV�V�V�W0X�X4YZ�ZH[�[�[\�\8]L]?.T] �]�.�]�R �U�U(�]`h�.�]����������	

 !"#$%&'()*+,-./0123456789:;<=>��	

 !"#$%&!!!!!!'!()!!!*!!!!!!+!!!!!��	

 !"#$%&'()*+,-.��	




 !"#$%&'()*+
,-./0123
4
56789��	

�������	��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&��	

 !"#$%&��	

 !"#$%&'()*��	

��	

��	

��	

#⃣1⃣2⃣3⃣4⃣5⃣6⃣7⃣8⃣9⃣0⃣��	

����	

��	

 !"#$%&'()*+,-./0123456��	

 !"""#��	

 !""#��	



��	

 !"#$%&'()*+��	

��	





��	

��	

��	


����	

��	

��	

��		

��	
��	

 !"#$%&'()*+,-,./01234��	

 !"#$%&'()*)+,-��	

 !"#$%%%��	

��	




��	

��	

 !"#$%&'''���			
��	

��	



 !"#$%&'()*+,-./01234
56789:;��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-.-.---.//01��			

��	

 !"#$%&'()��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./0123456789:;*<***��	

 !"#$%&'()��	


��	
















































��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

 !"#$%&'()*+,-./0.............111��	

��	
��	

 !"#$%&'()*+,-./01232456789��	

 !"#$%&'()*+,-./01234356789��	

 !"#$%&'()*+,-./01234555��	








��	

��	

 !"#$%&'()*+,---����	

 ��🇯🇵��	

��	

🇺🇸��	

��🇪🇸🇷🇺����🇫🇷��	
🇩🇪🇮🇹🇺🇰🇨🇳🇰🇷������	
����	
������	

����			��	

 !"#$%&��	

����	


 !!!!!!!!!!!!"#
$%%&
'
()*+,-��	
	
��		
		
																								 !��	

��	

 !��	

��	

����	
















 !
"



#
$
����	
��	
��	

 !"############$%&'(()*+,-./012��	

��	

 !"#$%&''()*+ ,-./0123456  789:;<��	

��	

 !"#$%&'()*+,-./0123456789:��	









��	

 !"#$%&'(()*+,-./01234/56789:;<=>��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?��	

��	

 ! "#$%&'()*+,-./01234��	

��������	

 !��	

����������	

����������	��������������	

������	
������������	

����������������������	


��	


��	


��	

��	

��	

��	







��	



��	




������		




��	

����	

���	


����������	����	
��	

������������	
������	

 !��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./012��	

��	

 !"#$%&#'()*��	

  !"#$#$%&'()*+,-./01234567��	


 !"#$%&'()*+,-./01**2345678��	

 !"##$%&'()*+,,*,-./01,23,4567,,,��	

  !"##$#%&'()*+,����	


 !!!!!"#$%&'()*+,-./012345!��	

������������	

��	����	��	

��	


��	


 !"""#$



��	

 !"#$%&'$()��	


��	


 !"#��	

 !"#$%&'()*+,-./0123��	

 !"##$%&'()*))((+,-.//0��	


��	

��	

����	

	 !!!!!	
	"#$%%%&'(!��	

;$c��@@c��h d���zRx�$�b��0FJw�?:*3$"D�b�� \�c���H�GNU��
`� ���] j�<����R j�<����D j�<���d< j�<����9 j�<����1 j�<���- j�<���' j�<���4 j�<���8
 j�<���d j�<���� j�<�w���	
�P� X� ���o`��
�� 0�	�(	���oh���o�oN���o3� 
 
GA$3a1�	�GA$3p1094�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignemoji.so-2.7.8-141.el8.x86_64.debug֯h�7zXZ�ִF!t/��]?�E�h=��ڊ�2N�a�Ӈ�����Fl�J!����H����M:r����(H܋.`:m�w�cʰ�M��6��t;�D���C�/�{�neOp)X�c��]��EGsnQk���V��F��5��z�.�.����!���U~��|<Ի�p��͘���:+'�eP����==MLG4#'�{r#���=Q?�9P��G*x�[?gY
?ι^�V�MH���[~�E�;�b�����B�����k��G���-��p�8�ᤪ��\K��ᩉ1�V��8»���w�Դ�>�7����	&s�ٰ��s��",���{����#iG�~�(�K[vۤ��'�cy��ΐ+y��d
qt:(���p
m�~W�x�;#|'�}���z�?����{4����8�V^Y0��G{9����memYz�C�j��慯��u ���0@�_��D���(gYH�n�J�*���vg��'��C}:��M�d�c"��{�bc�Xz�ZJ�y��fpy�4�Qom�R�V'YL����j+���������+`)�����bh]r���gX�P
��)���|��o���Z��w9��k�H�0Oñ�!k�����G����3��P!A�m5EN��L��G���8�vBy4C�,��stb!��Q�F�9J�����=��WJT���2$wG�X]	�Xo�;!���N��.�������ꃝ�B4X�_gD�r+�
�{���5p$�[j�-�cNC�C��&��(*����g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oNNE���ohh T��(^B�	�	0h�	�	c

0n0
0
 wP
P
\}��
���0� ���$���t����� �P� P��X� X��`� `�� �� ���� � �� �(�(� (��0�`(��
�(D�H��+PKMH[�
���lib64/ruby/enc/trans/chinese.sonuȯ��ELF>P@��@8	@x�x� P�P�"P�"�� ��"�"��888$$X�X�X�  S�tdX�X�X�  P�td������$$Q�tdR�tdP�P�"P�"��GNU���Z����=F5��:5y��@�	BE���|�qX
x b , F"�(�"�0�"�(�"U<__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_chineserb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P�"X�"�`�"`�"��"`��"f��"���"� �"`(�"n8�"�H�"���"f��"`��"���"�`�"nh�"`x�"���"���"��"��"��"�" �"��H��H���"H��t��H����5�"�%�"��h�������h���������%��"D���%��"DH�=��"H���"H9�tH�v�"H��t	�����H�=��"H�5��"H)�H��H��H��?H�H�tH�E�"H��t��fD�����=]�"u+UH�="�"H��tH�=~�"�Y����d����5�"]������w������H��H�=A�"����H�=��"����H�=��"��H�==�"H�������H��H���UTF-8GB12345GB2312 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈〉《》「」『』〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓	⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀⒁⒂⒃⒄⒅⒆⒇①②③④⑤⑥⑦⑧⑨⑩㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫ`�!"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|} ̄�ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん	�8ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	 �ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ	αβγδεζηθικλμνξοπρστυφχψω��АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя��āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüê	ㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜㄝㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩ@�	─━│┃┄┅┆┇┈┉┊┋┌┍┎┏┐┑┒┓└┕┖┗┘┙┚┛├┝┞┟┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿╀╁╂╃╄╅╆╇╈╉╊╋��		0啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥@薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳�病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖H场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚�础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮P怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠�丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二X贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服�浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹`埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈�骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖h弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕�肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件p健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸�尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻x 俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀�!馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐�#痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿%隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫�&谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸(摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁�)拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗+啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐�,恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠.取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁�/伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳$1省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱�2恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔,4獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃�5汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威47巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺�8稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓<:小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄�;选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶D=摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐�>印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉L@浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧�A铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政TC帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑�D住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座	`\F亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝�G佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼TI凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺�J邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝\L堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥�M荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺dO蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖�P摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼lR唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼�S帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺tU狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧饨饩饪饫饬饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂�V恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾|X洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑Z濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣�[妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩]纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡缢缣缤缥缦缧缪缫缬缭缯缰缱缲缳缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬�^琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹`椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋�a辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰c搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻�d臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐 f怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨�g睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶钷钸钹钺钼钽钿铄铈铉铊铋铌铍铎铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪(i铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒锓锔锕锖锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤镥镦镧镨镩镪镫镬镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔�j稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨鸩鸪鸫鸬鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦鹧鹨鹩鹪鹫鹬鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙0l瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃�m颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒8o蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋�p簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤@r酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜�s觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅龆龇龈龉龊龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞鲟鲠鲡鲢鲣鲥鲦鲧鲨鲩鲫鲭鲮鲰鲱鲲鲳鲴鲵鲶鲷鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋Hu鳌鳍鳎鳏鳐鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄�v|�0�����	(8�@�H�P�X�`�h�p �!x#�$�&(�)+�,.�/1�2$4�5,7�84:�;<=�>D@�ALC�DTF�GLI�JTL�M\O�PdR�SlU�VtX�Y|[]�^`�ac�df�g i�j(l�m0o�p8r�s@u�vHx�Px啊阿埃挨哎唉哀皚癌藹矮艾礙愛隘鞍氨安俺按暗岸胺案骯昂盎凹敖熬翱襖傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙壩霸罷爸白柏百擺佰敗拜稗斑班搬扳般頒板版扮拌伴瓣半辦絆邦幫梆榜膀綁棒磅蚌鎊傍謗苞胞包褒剥�y薄雹保堡飽寶抱報暴豹鮑爆杯碑悲卑北輩背貝鋇倍狽備憊焙被奔苯本笨崩綳甭泵蹦迸逼鼻比鄙筆彼碧蓖蔽畢斃毖幣庇痹閉敝弊必辟壁臂避陛鞭邊編貶扁便變卞辨辯辮遍標彪膘表鱉憋别癟彬斌瀕濱賓擯兵冰柄丙秉餅炳,{病并玻菠播撥鉢波博勃搏鉑箔伯帛舶脖膊渤泊駁捕卜哺補埠不布步簿部怖擦猜裁材才財睬踩采彩菜蔡餐參蠶殘慚慘燦蒼艙倉滄藏操糙槽曹草厠策側册測層蹭插叉茬茶查碴搽察岔差詫拆柴豺攙摻蟬饞讒纏鏟産闡顫昌猖�|場嘗常長償腸廠敞暢唱倡超抄鈔朝嘲潮巢吵炒車扯撤掣徹澈郴臣辰塵晨忱沉陳趁襯撑稱城橙成呈乘程懲澄誠承逞騁秤吃痴持匙池遲弛馳耻齒侈尺赤翅斥熾充衝蟲崇寵抽酬疇躊稠愁籌仇綢瞅醜臭初出橱厨躇鋤雛滁除楚4~礎儲矗搐觸處揣川穿椽傳船喘串瘡窗幢床闖創吹炊捶錘垂春椿醇唇淳純蠢戳綽疵茨磁雌辭慈瓷詞此刺賜次聰葱囱匆從叢凑粗醋簇促躥篡竄摧崔催脆瘁粹淬翠村存寸磋撮搓措挫錯搭達答瘩打大呆歹傣戴帶殆代貸袋待逮�怠耽擔丹單鄲撣膽旦氮但憚淡誕彈蛋當擋黨蕩檔刀搗蹈倒島禱導到稻悼道盗德得的蹬燈登等瞪凳鄧堤低滴迪敵笛狄滌翟嫡抵底地蒂第帝弟遞締顛掂滇碘點典靛墊電佃甸店惦奠澱殿碉叼雕凋刁掉吊釣調跌爹碟蝶迭諜疊<�丁盯叮釘頂鼎錠定訂丢東冬董懂動棟侗恫凍洞兜抖鬥陡豆逗痘都督毒犢獨讀堵睹賭杜鍍肚度渡妒端短鍛段斷緞堆兑隊對墩噸蹲敦頓囤鈍盾遁掇哆多奪垛躲朵跺舵剁惰墮蛾峨鵝俄額訛娥惡厄扼遏鄂餓恩而兒耳爾餌洱二��貳發罰筏伐乏閥法珐藩帆番翻樊礬釩繁凡煩反返範販犯飯泛坊芳方肪房防妨仿訪紡放菲非啡飛肥匪誹吠肺廢沸費芬酚吩氛分紛墳焚汾粉奮份忿憤糞豐封楓蜂峰鋒風瘋烽逢馮縫諷奉鳳佛否夫敷膚孵扶拂輻幅氟符伏俘服D�浮涪福袱弗甫撫輔俯釜斧脯腑府腐赴副覆賦復傅付阜父腹負富訃附婦縛咐噶嘎該改概鈣蓋溉幹甘杆柑竿肝趕感秆敢贛岡剛鋼缸肛綱崗港杠篙皋高膏羔糕搞鎬稿告哥歌擱戈鴿胳疙割革葛格蛤閣隔鉻個各給根跟耕更庚羹ȅ埂耿梗工攻功恭龔供躬公宫弓鞏汞拱貢共鈎勾溝苟狗垢構購够辜菇咕箍估沽孤姑鼓古蠱骨谷股故顧固雇刮瓜剮寡挂褂乖拐怪棺關官冠觀管館罐慣灌貫光廣逛瑰規圭硅歸龜閨軌鬼詭癸桂櫃跪貴劊輥滚棍鍋郭國果裹過哈L�骸孩海氦亥害駭酣憨邯韓含涵寒函喊罕翰撼捍旱憾悍焊汗漢夯杭航壕嚎豪毫郝好耗號浩呵喝荷菏核禾和何合盒貉閡河涸赫褐鶴賀嘿黑痕很狠恨哼亨横衡恒轟哄烘虹鴻洪宏弘紅喉侯猴吼厚候後呼乎忽瑚壺葫胡蝴狐糊湖Ј弧虎唬護互滬户花嘩華猾滑畫劃化話槐徊懷淮壞歡環桓還緩換患喚瘓豢煥渙宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍謊灰揮輝徽恢蛔回毁悔慧卉惠晦賄穢會燴匯諱誨繪葷昏婚魂渾混豁活伙火獲或惑霍貨禍擊圾基機畸稽積箕T�肌饑迹激譏鷄姬績緝吉極棘輯籍集及急疾汲即嫉級擠幾脊己薊技冀季伎祭劑悸濟寄寂計記既忌際妓繼紀嘉枷夾佳家加莢頰賈甲鉀假稼價架駕嫁殲監堅尖箋間煎兼肩艱奸緘繭檢柬碱鹼揀撿簡儉剪减薦檻鑒踐賤見鍵箭件؋健艦劍餞漸濺澗建僵姜將漿江疆蔣槳奬講匠醬降蕉椒礁焦膠交郊澆驕嬌嚼攪鉸矯僥脚狡角餃繳絞剿教酵轎較叫窖揭接皆秸街階截劫節桔杰捷睫竭潔結解姐戒藉芥界借介疥誡届巾筋斤金今津襟緊錦僅謹進靳晉禁近燼浸\�盡勁荆兢莖睛晶鯨京驚精粳經井警景頸靜境敬鏡徑痙靖竟競凈炯窘揪究糾玖韭久灸九酒厩救舊臼舅咎就疚鞠拘狙疽居駒菊局咀矩舉沮聚拒據巨具距踞鋸俱句懼炬劇捐鵑娟倦眷卷絹撅攫抉掘倔爵覺决訣絶均菌鈞軍君峻�俊竣浚郡駿喀咖卡咯開揩楷凱慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕顆科殻咳可渴克刻客課肯啃墾懇坑吭空恐孔控摳口扣寇枯哭窟苦酷庫褲誇垮挎跨胯塊筷儈快寬款匡筐狂框礦眶曠况虧盔巋窺葵奎魁傀d�饋愧潰坤昆捆困括擴廓闊垃拉喇蠟臘辣啦萊來賴藍婪欄攔籃闌蘭瀾讕攬覽懶纜爛濫琅榔狼廊郎朗浪撈勞牢老佬姥酪烙澇勒樂雷鐳蕾磊累儡壘擂肋類泪棱楞冷厘梨犁黎籬狸離灕理李裏鯉禮莉荔吏栗麗厲勵礫歷利傈例俐�痢立粒瀝隸力璃哩倆聯蓮連鐮廉憐漣簾斂臉鏈戀煉練糧凉梁粱良兩輛量晾亮諒撩聊僚療燎寥遼潦了撂鐐廖料列裂烈劣獵琳林磷霖臨鄰鱗淋凛賃吝拎玲菱零齡鈴伶羚凌靈陵嶺領另令溜琉榴硫餾留劉瘤流柳六龍聾嚨籠窿l�隆壟攏隴樓婁摟簍漏陋蘆盧顱廬爐擄滷虜魯麓碌露路賂鹿潞禄録陸戮驢吕鋁侣旅履屢縷慮氯律率濾緑巒攣孿灤卵亂掠略掄輪倫侖淪綸論蘿螺羅邏鑼籮騾裸落洛駱絡媽麻瑪碼螞馬駡嘛嗎埋買麥賣邁脉瞞饅蠻滿蔓曼慢漫�謾芒茫盲氓忙莽猫茅錨毛矛鉚卯茂冒帽貌貿麽玫枚梅酶霉煤没眉媒鎂每美昧寐妹媚門悶們萌蒙檬盟錳猛夢孟眯醚靡糜迷謎彌米秘覓泌蜜密幂棉眠綿冕免勉娩緬面苗描瞄藐秒渺廟妙蔑滅民抿皿敏憫閩明螟鳴銘名命謬摸t�摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌謀牟某拇牡畝姆母墓暮幕募慕木目睦牧穆拿哪呐鈉那娜納氖乃奶耐奈南男難囊撓腦惱鬧淖呢餒内嫩能妮霓倪泥尼擬你匿膩逆溺蔫拈年碾攆捻念娘釀鳥尿捏聶孽嚙鑷鎳涅您檸獰凝寧��擰濘牛扭鈕紐膿濃農弄奴努怒女暖虐瘧挪懦糯諾哦歐鷗毆藕嘔偶漚啪趴爬帕怕琶拍排牌徘湃派攀潘盤磐盼畔判叛乓龐旁耪胖抛咆刨炮袍跑泡呸胚培裴賠陪配佩沛噴盆砰抨烹澎彭蓬棚硼篷膨朋鵬捧碰坯砒霹批披劈琵毗|�啤脾疲皮匹痞僻屁譬篇偏片騙飄漂瓢票撇瞥拼頻貧品聘乒坪蘋萍平憑瓶評屏坡潑頗婆破魄迫粕剖撲鋪僕莆葡菩蒲埔樸圃普浦譜曝瀑期欺棲戚妻七凄漆柒沏其棋奇歧畦崎臍齊旗祈祁騎起豈乞企啓契砌器氣迄棄汽泣訖掐�恰洽牽扦釺鉛千遷簽仟謙乾黔錢鉗前潛遣淺譴塹嵌欠歉槍嗆腔羌墻薔强搶橇鍬敲悄橋瞧喬僑巧鞘撬翹峭俏竅切茄且怯竊欽侵親秦琴勤芹擒禽寢沁青輕氫傾卿清擎晴氰情頃請慶瓊窮秋丘邱球求囚酋泅趨區蛆曲軀屈驅渠��取娶齲趣去圈顴權醛泉全痊拳犬券勸缺炔瘸却鵲榷確雀裙群然燃冉染瓤壤攘嚷讓饒擾繞惹熱壬仁人忍韌任認刃妊紉扔仍日戎茸蓉榮融熔溶容絨冗揉柔肉茹蠕儒孺如辱乳汝入褥軟阮蕊瑞鋭閏潤若弱撒灑薩腮鰓塞賽三叁�傘散桑嗓喪搔騷掃嫂瑟色澀森僧莎砂殺刹沙紗傻啥煞篩曬珊苫杉山删煽衫閃陝擅贍膳善汕扇繕墒傷商賞晌上尚裳梢捎稍燒芍勺韶少哨邵紹奢賒蛇舌捨赦攝射懾涉社設砷申呻伸身深娠紳神沈審嬸甚腎慎滲聲生甥牲升繩��省盛剩勝聖師失獅施濕詩尸虱十石拾時什食蝕實識史矢使屎駛始式示士世柿事拭誓逝勢是嗜噬適仕侍釋飾氏市恃室視試收手首守壽授售受瘦獸蔬樞梳殊抒輸叔舒淑疏書贖孰熟薯暑曙署蜀黍鼠屬術述樹束戍竪墅庶數漱�恕刷耍摔衰甩帥栓拴霜雙爽誰水睡税吮瞬順舜説碩朔爍斯撕嘶思私司絲死肆寺嗣四伺似飼巳鬆聳慫頌送宋訟誦搜艘擻嗽蘇酥俗素速粟僳塑溯宿訴肅酸蒜算雖隋隨綏髓碎歲穗遂隧祟孫損笋蓑梭唆縮瑣索鎖所塌他它她塔��獺撻蹋踏胎苔抬臺泰酞太態汰坍攤貪癱灘壇檀痰潭譚談坦毯袒碳探嘆炭湯塘搪堂棠膛唐糖倘躺淌趟燙掏濤滔縧萄桃逃淘陶討套特藤騰疼謄梯剔踢銻提題蹄啼體替嚏惕涕剃屉天添填田甜恬舔腆挑條迢眺跳貼鐵帖廳聽烴�汀廷停亭庭挺艇通桐酮瞳同銅彤童桶捅筒統痛偷投頭透凸秃突圖徒途塗屠土吐兔湍團推頽腿蜕褪退吞屯臀拖托脱鴕陀馱駝橢妥拓唾挖哇蛙窪娃瓦襪歪外豌彎灣玩頑丸烷完碗挽晚皖惋宛婉萬腕汪王亡枉網往旺望忘妄威��巍微危韋違桅圍唯惟爲濰維葦萎委偉僞尾緯未蔚味畏胃喂魏位渭謂尉慰衛瘟温蚊文聞紋吻穩紊問嗡翁瓮撾蝸渦窩我斡卧握沃巫嗚鎢烏污誣屋無蕪梧吾吴毋武五捂午舞伍侮塢戊霧晤物勿務悟誤昔熙析西硒矽晰嘻吸錫犧 �稀息希悉膝夕惜熄烯溪汐犀檄襲席習媳喜銑洗系隙戲細瞎蝦匣霞轄暇峽俠狹下厦夏嚇掀鍁先仙鮮纖咸賢銜舷閑涎弦嫌顯險現獻縣腺餡羡憲陷限綫相厢鑲香箱襄湘鄉翔祥詳想響享項巷橡像向象蕭硝霄削哮囂銷消宵淆曉��小孝校肖嘯笑效楔些歇蝎鞋協挾携邪斜脅諧寫械卸蟹懈泄瀉謝屑薪芯鋅欣辛新忻心信釁星腥猩惺興刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅銹秀袖綉墟戌需虚嘘須徐許蓄酗叙旭序畜恤絮婿緒續軒喧宣懸旋玄(�選癬眩絢靴薛學穴雪血勛熏循旬詢尋馴巡殉汛訓訊遜迅壓押鴉鴨呀丫芽牙蚜崖衙涯雅啞亞訝焉咽閹烟淹鹽嚴研蜒岩延言顔閻炎沿奄掩眼衍演艷堰燕厭硯雁唁彦焰宴諺驗殃央鴦秧楊揚佯瘍羊洋陽氧仰癢養樣漾邀腰妖瑶��摇堯遥窑謡姚咬舀藥要耀椰噎耶爺野冶也頁掖業葉曳腋夜液一壹醫揖銥依伊衣頤夷遺移儀胰疑沂宜姨彝椅蟻倚已乙矣以藝抑易邑屹億役臆逸肄疫亦裔意毅憶義益溢詣議誼譯异翼翌繹茵蔭因殷音陰姻吟銀淫寅飲尹引隱0�印英櫻嬰鷹應纓瑩螢營熒蠅迎贏盈影穎硬映喲擁傭臃癰庸雍踴蛹咏泳涌永恿勇用幽優悠憂尤由郵鈾猶油游酉有友右佑釉誘又幼迂淤于盂榆虞愚輿餘俞逾魚愉渝漁隅予娱雨與嶼禹宇語羽玉域芋鬱吁遇喻峪御愈欲獄育譽��浴寓裕預豫馭鴛淵冤元垣袁原援轅園員圓猿源緣遠苑願怨院曰約越躍鑰岳粤月悦閲耘雲鄖匀隕允運藴醖暈韵孕匝砸雜栽哉灾宰載再在咱攢暫贊贜臟葬遭糟鑿藻棗早澡蚤躁噪造皂竈燥責擇則澤賊怎增憎曾贈扎喳渣札軋8�鍘閘眨栅榨咋乍炸詐摘齋宅窄債寨瞻氈詹粘沾盞斬輾嶄展蘸棧占戰站湛綻樟章彰漳張掌漲杖丈帳賬仗脹瘴障招昭找沼趙照罩兆肇召遮折哲蟄轍者鍺蔗這浙珍斟真甄砧臻貞針偵枕疹診震振鎮陣蒸掙睜征猙爭怔整拯正政��幀癥鄭證芝枝支吱蜘知肢脂汁之織職直植殖執值侄址指止趾衹旨紙志摯擲至致置幟峙制智秩稚質炙痔滯治窒中盅忠鐘衷終種腫重仲衆舟周州洲謅粥軸肘帚咒皺宙晝驟珠株蛛朱猪諸誅逐竹燭煮拄矚囑主著柱助蛀貯鑄築@�住注祝駐抓爪拽專磚轉撰賺篆樁莊裝妝撞壯狀椎錐追贅墜綴諄準捉拙卓桌琢茁酌啄着灼濁兹咨資姿滋淄孜紫仔籽滓子自漬字鬃棕踪宗綜總縱鄒走奏揍租足卒族祖詛阻組鑽纂嘴醉最罪尊遵昨左佐柞做作坐座	`Ĵ亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛嗇嘏仄厙厝厴厥厮靨贋匚叵匭匱匾賾卦卣刂刈刎剄刳劌剴剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞傴仳伢佤仵倀傖伉佇佞佧攸佚佝8�佟佗伲伽佶佴侑侉侃侏佾佻儕佼儂侔儔儼儷俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨僨偃偕偈偎偬僂儻儐儺傺僖儆僭僬僦僮儇儋仝氽佘僉俎龠汆糴兮巽黌馘囅夔勹匍訇匐鳬夙兕亠兖亳衮袤褻臠裒禀嬴蠃羸冫冱冽冼��凇冖冢冥訁訐訌訕謳詎訥詁訶詆詔詘詒誆誄詿詰詼詵詬詮諍諢詡誚誥誑誒諏諑諉諛諗諂誶諶諫謔謁諤諭諼諳諦諮諞謨讜謖謚謐謫謭譖譙譎讞譫讖卩卺阝阢阡阱阪阽阼陂陘陔陟隉陬陲陴隈隍隗隰邗邛鄺邙鄔邡邴邳邶鄴@�邸邰郟郅邾鄶郄郇鄆酈郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆芻奐勱劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巰坌堊垡塾墼壅壑圩圬圪圳壙圮圯壢圻坂坩壠坫壚坼坻坨坭坶坳埡垤垌塏埏垧堖垓垠埕塒堝塤埒垸埴埯埸埤埝ĺ堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑薌芙芫蕓芾芰藶苊苣芘芷芮莧萇蓯芩芴芡芪芟苄苧芤苡茉苷苤蘢茇苜苴苒苘茌苻苓蔦茚茆塋煢苠苕茜荑蕘蓽茈莒茼茴茱莛蕎茯荏荇荃薈荀茗薺茭茺茳犖滎H�蕁茛藎蕒蓀葒葤莰荸蒔萵莠莪莓莜莅荼薟莩荽蕕荻莘莞莨鶯蒓菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀縈菰菡葜葑葚葙葳蕆蒈葺蕢葸萼葆葩葶蔞蒎萱葭蓁蓍蓐驀蒽蓓蓊蒿蒺蘺蒡蒹蒴蒗鎣蕷蔌甍蔸蓰蘞蔟藺̽蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蘄蕻薤薨薇薏蕹藪薜薅薹薷薰蘚藁藜藿蘧蘅蘩蘖蘼廾弈夼奩耷奕奚奘匏尢尥尬尷扌捫摶抻拊拚拗拮撟拶挹捋捃掭揶捱捺掎摑捭掬掊捩掮摜揲揸揠撳揄揞揎摒揆掾攄摁搋搛搠搌搦搡摞攖摭撖P�摺擷擼撙攛擀擐擗擤擢攉攥攮弋忒甙弑卟叱嘰叩叨叻吒吖吆呋嘸囈呔嚦呃吡唄咼吣吲咂咔呷呱呤咚嚀咄呶呦噝哐咭哂咴噠咧咦嘵嗶呲咣噦咻咿哌噲哚嚌咩咪咤噥哏哞嘜哧嘮哽唔哳嗩唣唏唑唧唪嘖喏喵啉囀啁啕唿啐唼�唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟嘍嚳喔喙嗪嗷嗉嘟嗑囁嗬嗔嗦嗝嗄嗯嗥嗲噯嗌嗍嗨嗵嗤轡嘞嘈嘌嘁嚶嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙嚕噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡圇囫囹囿圄圊圉圜幃帙帔帑幬幘幗X�帷幄幔幛幞幡岌屺岍岐嶇岈峴岙岑嵐岜岵岢崬岬岫岱岣峁岷嶧峒嶠峋崢嶗崍崧崦崮崤崞崆崛嶸崾崴崽嵬嵛嵯嶁嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巔彳彷徂徇徉后徠徙徜徨徭徵徼衢彡犭犰犴獷獁狃狁狎狍狒狨獪狩猻狴狷猁狳獫狺��狻猗猓玀猊猞猝獼猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂飠餳飩餼飪飫飭飴餉餑余餛餷餿饃饈饉饊饌饢庀廡庋庖庥庠庹庵庾庳賡廒廑廛廨廪膺忄忉忖懺憮忮慪忡忤愾悵愴忪忭忸怙怵怦怛怏怍怩怫怊懌怡慟懨惻愷恂`�恪惲悖悚慳悝悃悒悌悛愜悻悱惝惘惆惚悴愠憒愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳閂閆闈閎閔閌闥閭閫鬮閬閾閶鬩閿閽閼闃闋闔闐闕闞丬爿戕氵汔汜汊灃沅沐沔沌汨汩汴汶沆潙泐泔沭瀧瀘泱泗沲泠泖濼泫泮沱泓泯涇��洹洧洌浹湞洇洄洙洎洫澮洮洵洚瀏滸潯洳涑浯淶潿浞涓涔浜浠浼浣渚淇淅淞瀆涿淠澠淦淝淙瀋涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄灧溱溘灄漭瀅溥溧溽溻溷潷溴滏溏滂溟潢瀠瀟漤漕滹漯漶瀲潴漪漉漩澉澍澌潸潲潼潺瀨h�濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灝灞宀宄宕宓宥宸甯騫搴寤寮褰寰蹇謇辶迓迕迥迮迤邇迦逕迨逅逄逋邐逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屨羼弳弩弭艴弼鬻屮妁妃妍嫵嫗妣��妗姊嬀妞妤姒妲妯姗妾婭嬈姝孌姣姘姹娌娉媧嫻娑娣娓婀婧婊婕娼婢嬋胬媪媛婷婺媾嫫媲嬡嬪媸嫠嫣嬙嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢駔駟駙騶驛駑駘驍驊駢驪騏騍騅驂騭騖驁騮騸驃驄驏驥驤糹紆紂紇紈纊p�紜紕紓紺紲紱縐紼絀紿絝絎絳綆綃綈綾綺緋緔緄綞綬綹綣綰緇緙緗緹緲繢緦緶緱縋緡縉縝縟縞縭縊縑繽縹縵縲繆繅纈繚繒繮繾繰繯纘幺畿巛甾邕玎璣瑋玢玟珏珂瓏玷玳珀珉珈珥珙頊琊珩珧珞璽琿璉琪瑛琦琥琨琰琮琬��琛琚瑁瑜瑗瑕瑙璦瑭瑾璜瓔璀璁璇璋璞璨璩璐璧瓚璺韙韞韜杌杓杞杈榪櫪枇杪杳枘梘杵棖樅梟枋杷杼柰櫛柘櫳柩枰櫨柙枵柚枳柝栀柃枸柢櫟柁檉栲栳椏橈桎楨桄榿梃栝桕樺桁檜桀欒桊桉栩梵梏桴桷梓桫欞楮棼櫝槧棹x�欏棰椋椁楗棣椐楱椹楠楂楝欖楫榀榘楸椴槌櫬櫚槎櫸楦楣楹榛榧榻榫榭槔榱槁槊檳榕櫧榍槿檣槭樗樘橥槲橄樾檠橐橛樵檎櫓樽樨橘櫞檑檐檩檗檫猷獒殁殂殤殄殞殮殍殫殛殯殪軔軛軲軻轤軹軼軫軤轢軺軾輊輇輅輒輦輞��輟輜輳轆轔軎戔戧戛戟戢戡戥戤戩臧甌瓴瓿甏甑甓攴旮旯旰昊曇杲昃昕昀炅曷昝昴昱昶昵耆晟曄晁晏暉晡晗晷暄暌曖暝暾曛曜曦曩賁貰貺貽贄貲賅贐賑賚賕賫賧賻覘覬覡覿覦覯覲覷牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰��搿擘耄毪毳毽毿毹氅氌氆氍氕氘氙氚氡氬氤氪氲攵敕敫牘牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷朧腖胩臚胛胂胄胙胍胗朐胝脛胱胴胭膾脎胲胼朕脒豚腡脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂臏滕膣膪臌朦臊膻�臁膦歟欷欹歃歆歙颮颯颶颼飆飈殳彀轂觳斐齏斕於旆旄旃旌旎旒旖煬煒炖熗炻烀炷炫炱燁烊焐焓燜焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬燾煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚禰祗祠禎祧祺禪禊禚禧禳忑忐��懟恝恚恧恁恙恣慤愆愍慝憩憝懋懣戇肀聿沓澩淼磯矸碭砉硨砘砑斫砭碸砝砹礪礱砟砼砥砬砣砩硎硭硤磽砦硐硇硌硪磧碓碚碇磣碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龕黹黻黼盱眄瞘盹眇眈眚眢眙眭眦眵眸睞瞼睇睃睚睨�睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨羆罱罹羈罾盍盥蠲釒釓釔釙釗釕釷釧釤鍆釵釹鈈鈦鉅鈑鈐鈁鈧鈄鈥鈀鈺鉦鈷鈳鉕鈽鈸鉞鉬鉭鈿鑠鈰鉉鉈鉍鈮鈹鐸銬銠鉺銪鋮鋏鐃鋣鐺銱銦鎧銖鋌銩鏵銓鉿��鎩銚錚銫銃鐋銨銣鐒錸鋱鏗鋥鋰鋯鋨銼鋝鋶鐦鐧鋃鋟鋦錒錆鍩錛鍀錁錕錮鍃錇錈錟錙鍥鍇鍶鍔鍤鎪鍰鎄鏤鏘鐨鎇鏌鎘鎸鎿鎦鎰鎵鑌鏢鏜鏝鏍鏞鏃鏇鏑鐔鐝鏷鑥鐓鑭鐠鑹鏹鐙鑊鐲鐿鑔鑣鍾矧矬雉秕秭秣秫稆嵇稃稂稞稔�稹稷穡黏馥穰皈皎皓皙皤瓞瓠甬鳩鳶鴇鴆鴣鶇鸕鴝鴟鷥鴯鷙鴰鵂鸞鵓鸝鵠鵒鷳鵜鵡鶓鵪鵯鶉鶘鶚鷀鶥鶩鷂鶼鸚鷓鷚鷯鷦鷲鷸鸌鷺鸛疒疔癤癘疝癧疣疳疴疸痄疱疰痃痂瘂痍痣癆痦痤癇痧瘃痱痼痿瘐瘀癉瘌瘞瘊瘥瘻瘕瘙��瘛瘼瘢瘠癀瘭瘰癭瘵癃癮瘳癍癩癔癜癖癲癯翊竦穸穹窀窆窈窕竇窠窬窨窶窳衤衩衲衽衿袂袢襠袷袼裉褳裎襝襇裱褚裼裨裾裰褡褙褓褸褊襤褫褶襁襦襻疋胥皸皴矜耒耔耖耜耠耮耥耦耬耩耨耱耋耵聃聆聹聒聵聱覃頇頎頏�頡頜潁頦頷顎顓顳顢顙顥顬顰虍虔虬蟣蠆虺虼虻蚨蚍蚋蜆蚝蚧蚣蚪蚓蚩蚶蛄蚵蠣蚰蚺蚱蚯蛉蟶蚴蛩蛺蟯蛭螄蛐蜓蛞蠐蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蟈蜴蜱蜩蜷蜿螂蜢蝽蠑蝻蝠蝰蝌蝮螋蝓蝣螻蝤蝙蝥螓螯蟎蟒��蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罌罄罅舐竺竽笈篤笄筧笊笫笏筇笸笪笙笮笱笠笥笤笳籩笞筘篳筅筵筌箏筠筮筻筢筲筱箐簀篋箸箬箝籜箅簞箜箢簫箴簣篁篌篝篚篥篦篪簌篾篼簏籪簋$�簟簪簦簸籟籀臾舁舂舄臬衄舡舢艤舭舯舨舫舸艫舳舴舾艄艉艋艏艚艟艨衾裊袈裘裟襞羝羥羧羯羰羲籼敉粑糲糶粞粢粲粼粽糝糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸縶綦綮繇纛麩麴赳趄趔趑趲赧赭豇豉酊酐酎酏酤��酢酡酰酩酯釅釃酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹺躉跫踅蹙蹩趵趿趼趺蹌跖跗跚躒跎跏跛跆跬蹺蹕跣躚躋跤踉跽踔踝踟躓踮踣躑踺蹀踹踵踽踱蹉蹁蹂躡蹣蹊蹰蹶蹼蹯蹴躅躪躔躐躦躞豸貂貊貅貘貔斛觖觴觚觜,�觥觫觶訾謦靚雩靂雯霆霽霈霏霎霪靄霰霾齔齟齙齠齜齦齬齪齷黽黿鼉隹隼隽雎雒瞿讎銎鑾鋈鏨鍪鏊鎏鐾鑫魷魴鮁鮃鮎鱸穌鮒鱟鮐鮭鮚鮪鮞鱭鮫鮝鱘鯁鱺鰱鰹鰣鰷鯀鯊鯇鯽鯖鯪鯫鯡鯤鯧鯝鯢鯰鯛鯴鯔鱝鰈鰐鰍鰒鰉鯿鰠��鰲鰭鰨鰥鰩鰳鰾鱈鰻鰵鱅鱖鱔鱒鱧靼鞅韃鞽鞔韉鞫鞣鞲鞴骱骰骷鶻骶骺骼髁髀髏髂髖髕髑魅魃魘魎魈魍魑饗饜餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬢鬟鬣么麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黷黧黥黲黯鼢鼬鼯鼹鼷鼽鼾齄4�襬闆錶彆蔔纔厂冲丑齣噹党淀鼕斗噁髮范丰複干穀颳广閤鬍划迴彙穫飢几傢价荐薑儘据捲剋夸睏蜡腊纍里曆帘瞭鹵囉黴濛懞矇瀰麵衊闢苹凭扑仆朴韆籤縴鞦麯确舍术松囌台颱檯罎涂糰万係繫鹹嚮鬚葯叶郁禦籲愿云髒��症隻只緻製种硃筑准	�<�|�0�����	(8${�|,~�4���<���D�ȈL�ЋT�؎\��d��l��t���|������������� ���(���0���8���0���8���@�ĽH��P���X���`���h���p���x�����������������$���,���4�h�!p�	������������"��	����������������������������d��	���������@�	�����`�*0	����������������l��	�������	�������������������������������������������������������������������������������������	��������������2t�	��������������������������������������������������������������������������������������������������t����������������������������������	���|�x����*��	����������������������	��	����\	$�	�������������������������	<�	���������	|�	��������������������������������������"
��	����������������d
��	�����
(�	���
@�	��������������������������������������������*T���������������������������������������������������������	l�����������������������������������������������������������������������������������������������������������������������������������<�������������������������	�H�	��������2��	����������t��	���������	������x�4�t����� �8�L���4�@�����������:
����������	��������������������������������|
L�	�������������������������������������������������������������������������������������������������������������������������������������������������������������������������	���������������������������������������������������������������
����������������������������������������������������������������������������������������������������������������	����	��������������������������������������������������������������������������B��	���������������������(�������|� �x�X��`�һ��	�����������آ����ؤ��ר��ا�����ҵ����˿ة������ɥح��Ѿ����������ؼ����Ϊ�����د��	����رô��֮��է������ƹ����������ؿ����Ҳϰ�����������ǬJH�	���������ء�������������ب��Щؽ���������������Ķ����ͤ����������������ʲ��������������	�����������������������������Ǫ���������������������������������l�	������������������������ɡΰ����������α�����٣����������٤ �	����λ��ס��������٢����������١��Ӷ���������������٦٥٬ٮ٫ʹR��	٩ֶ��٨����٪٧ٰ������������������٭ٯ���������H�	����ٴ��������ٸ����ٵٷ����ٹ��ٶٱٲ��ٳ��������ٽٺ�������x�@��d����@���8�@�	����ٿ����������������������ٻ��پ��ծֵ��Zp�	������ټ��ƫ���ͣ����ż͵����������	����������������������ɵ�(�	��������ɮ����������Ƨ l�	������������b��أ��	Ԫ������������������������������ȫ���������������������������������������	����Ƚ����ð��ڢ��д��ũ��ڣԩڤ��������������ұ�������l���	��׼ڡ���������������������ƾ����������͹������������(����������	��������ۻ�������������������ɾ������������������ˢȯɲ��������j|���������	���ǰ������������������ʣ������������	�����������Ȱ��������۽�����Ŭ��۾ۿ������������	������ѫ��������ļ������������0���	������������ذ��������������ϻ������ƥ�ҽ����r@�	ʮǧئ���������Э����׿������������߲ռ��¬��±�������شîӡΣ��ȴ����ж�������	���������ѹ������������ԭ����������������ȥ���\	�����������˫������ȡ��������������������߶ߵֻ����������̨߳ʷ����Ҷ��˾̾߷��ߴ8�	�����ߺ������ͬ���������߸���߹���������������������������˱��֨���������������z|ѽ	�������߻��߼߽߾Ż߿��Ա��Ǻ��������������ζ��������������8��	������զ����ӽ����������������������������������ҧ����������������������Ʒ��	������������������������������������������Ӵ��Ŷ����������������������@`	����������������������������������Ψ����������	����������������ơɶ���ž�������Х���������ι���	��������������ϲ��������������	�����������ɤ�����������������������������������Ht����	��������������������������������˻�������	����ҭ���������������ج���������������d	������������������	��������������ض����������԰����Χ��������ͼ��P�	����ԲȦ����ʥ���������������������������`ַ	��������̮�����������̳��������׹����̹����ƺ�����������������	����¢��������������������ԫ�������������������X	������������������������ܤ�������ܣX�ܥ	�����ܡܢǵ��ܧܦܩ�����������0		ܨ��������ܪ��ܫ����	ܯܬ	���ܭ��Ĺǽܮ���ī�����		���������ʿ��׳�����Ҽ`
	�����������Ϧ������ҹ��������̫��ز����ʧͷ�����������D
	��ۼ���������������������������������Ůū���������
	�����ױ����������������������������������&8	ķ�ʼ�������ί��Ҧ��������������h�	���¦��������������������������Ȣ���	������������Ӥ����������	ý�������ϱ������.�	��ɩ����������������������������p
	������������T
��	����������������������Т����������ѧ����ث������������|
��	��լ����������������������������ʵ����������������������������������6�
	���������������Ԣ��į�������կ��������Ѱ����x�	������ξ��С����������������������Ң������ʬ���������β�����ƨ��	���������ʺ���мչ����������������ɽ�������	�������������������������������������>	������Ͽ���������������	������������������������ո����������	�����Ƕ����������������8	��������Fx	��Ρ������Ѳ����������������������������������	������˧��ʦϣ��������������������֡ϯ��������ñ�	��������Ļ�������ƽ���������������� ���	ׯ����������®����Ӧ�����������������������ͥ�������ӹ����N �	����������������������͢����إ� p�������Ū	����߮ʽ߱������������������������������ǿ�� ��	������¼������������ͮ������������Ӱ����������!<����	������������������ͽ�������������ѭ��΢��������V!�	������������������߯��־�æ���������������������������������!(� �d����d��t��|��8���T�t0�Xx�l�\��X�P�(	x	�	�	<
�
0�|��L
t
�
����0p��|�h�4� �����̬����������	������ŭ�����������˼���������Թ�������������!�	������������ˡ��������������������Ϣǡ������������"T	���Ϥ��������������������������������^"�	�������������ϧ�Ω�������������������������������"\���	���������������������Ը�"�	��������Ľ������ο���$#0	�������������f#t	��и�������ų��ܲ�#�	�����������Ϸ�����������ս�����������¾�������������#����	�����������������������������Ǥִ����ɨ��Ť�����������������,$p��	����������ץͶ������������������������̧����Ĩ��Ѻ����n$	��������Ĵ��������������������������׾��������£��ӵ��š�������������ȭ˩����ƴקʰ���$�	����ָ���������ֿ����̢Ю�������������Ų�������ͦ���$D	����ͱ��׽�����������������������������������������4%���	�������������������Ҵ����̽�������������������°�����������v%8	����������������Ҿ����������������Ԯ���������%�����§	����������ɦ���������������Я����%0	��������ҡ��̯��ˤժ���Ħ��ġߡ<&�	�����Ʋ���˺�ߤײ����������׫��ߢߣߥ��~&�ߦ	��������ߧ��ߨ���ߪߩ���&T��	߫���߬��֧߭������������'�	��Ч���������������������ɢ�����������D'�	��ի������������б����������ն���˹�����ʩ�'L 	��������������������������ּ��Ѯ�������ʱ����'� �	���������������������ӳ���������������������
(8!	����������ɹ������������������������������������L(�!	����Ͼ����ů��������ĺ�������($"	������������Ի�ҷ�����������(l"��	������������˷����������ľδĩ��������������)�"ɱ	��Ȩ���ɼ���������������������������������������������T),#	���������������ö��֦�����������ǹ�������������������)�#	��������ij����Ⱦ�����������������������������������)<$��	դ��ջ�������������˨������У�������������������*�$����������Φ��	���������ͩɣ������������������������׮��Ͱ�\*0%	����÷�������������������е�����*�%��	������������������ɭ����������*&	����ֲ׵��������Ҭ������"+d&	�Ш����������������¥d+�&�	�������������������ե�����ȶ��+'	������������������������+h'	�������ģ������ӣ������*,�'	���������������������l,�'̴	ϭ�����������������,((	Ƿ������ŷ��������,`(	��ЪǸ���ֹ����������������2-�(	������������ѳ����������ֳ���������Ź������t-�(	�������ĸÿ��ع���������ëձ���̺�����-T)	������ص��å�����������������������������ˮ������-�)֭͡��	��������ϫ������Ѵ�������������������̭�����������:.L*	�����������������������ɳ����û��Ž����������ĭ������������������մ��|.�*	й�Ȫ����������������Ţ��������ע�����̩��Ӿ��������к������.p+	���������ϴ������������������������Ǣ��/,	���dz����������������Ũ������������������ԡ�����B/�,	Ϳ����ӿ���������������������������ɬ��������Һ�������/-��	���������������������������������������������/�-	��Ԩ������������������������������μ����������0.	����������������տ��������ʪJ0�.	����������Դ������������Ϫ�������������������0�.	��������������������������������������̲�����00/	Ư���©������Į����������������1�/	������Ϋ��DZº����̶��������R1�/	�������������������1D0��	�����������1�0L�T�(l��h��<�0�(��L��D � 0!�!"d"�"$#�#4$�$(%�%&\&�&�&`'�'�' (X(x��(�(L)�)D*�*h+,|,-�-.x.�.(/�/�/<0|0�0��0	�������2�1	��������������������������Z2�1�	�¯������Ȳ�����������̿����������ը���������282��˸���	����������������������������ϩ�������2�2	��������������������������Ȼ 33	����������ɷú����������������ɿb3\3	Ϩ��Ѭ��������������������3�3	ȼ�����������������3�3	������צ��������ү����سˬ��(4$4	Ƭ��������ţ��IJĵ������������ǣ�����j4p4Ϭ��	���������Ȯ��������״�������4�4	��������������������������������ʨ��������������445	�����������������������è������������Գ05�5	�������̡��r586	��������������������õ�����������������5l6��	������ɺ������������������������5�6	�������������������������������86 7	����������ɪ������z6�7��	�������������6�7	�����ư��ȿ������ƿ����68	��������߰�������˦�������������������������@7\8�	�������η������������������������7�8	�����������������������ű����������������������ƣ�����������������789	��������֢Ӹ��Ȭ�����������ʹƦ����������������̵����������8�9���	�����������������������̱������ȳ���H8T:�	��������Ѣ�����������8�:	�������������������Ƥ���������8(;	������ӯ�����յ��������������ʢ����Ŀ����äֱ��������9|;	ʡ������ü���������������գѣ������������P9�;���	�������˯�������������غ��9d<�	������Ϲ����ޫƳ�����˲�ͫ�հ����9�<	����ì��ʸ��֪������������ʯ�������:,=���ɰ	��������ש��������������������������������������X:�=��	�����������˶���������Ӳ��ȷ�����:>	����µ���������������������������������̼�������:p>	������������������ĥ����������;�>	������������ʾ������`;,?����	������������������ף�����������Ʊ���������;d?���	»���������خ�������;�?��˽	ͺ��������������������������������������&<@ϡ	�������˰����������������������h<�@	������Ѩ�����������<�@�ͻ	��խ����Ҥ��������������������������<(A	���վ��������ͯ�������������.=�A	��������������Ц����������������������������������������p=�A	���������������Ͳ��������ɸ��������������������ǩ�=dB��	�������������������������������������������=�B	��׭ƪ����¨������������������6>@C	��������������x>�C��	�������������>�C	����������ճ��������������������������������>D	������������������������������Ŵ��ϵ>?lD	������������?�D	����?�D	����@E	��F@E	�����@0E	��������������Լ��������γ����ɴ����������ֽ����Ŧ����@HE���������ϸ֯�����������������������	�����Ѥ�������ͳ�������������������������ά���������������A�E׺�������������	���������������������Ե����������������������������ӧ����������������������������ȱNA�F	���������������������������������A�G	���Ǽ�������������Ⱥ������������������A$H	���������������������������������������B�H�102�23T3�3�34h4�4,5�506d6�67�7�78T8�809�9L:�: ;t;�;\<�<$=�=>h>�>$?\?�?@�@�@ A�A�A\B�B8C�C�C�CdD�D�D�DEx�(E@E�E�F�GH|H�H��Hҫ��	�����������ˣ����������������������������������������Ү����������VB�I	��������ְ����Ƹ��������B�J�	��������������Ф��������������֫���������������������������������B�J��в��θ��	������̥����������ʤ������ط�������������������������������������CxK	֬�����������������ŧ���������������������Ƣ^C L	������Ҹ��������ǻ�������������������������������������C�L��	�����������Ĥϥ�����������CM�����ӷ	��������������������$D`MҨ��	����������������˴��������������������������������fD�M	�ͧ��������������ɫ���ܳ��ܴ��ܵ�DPN	��ܹ��ܷ����ܻܺܶâܼ��ܽ��֥��������«ܸ����ܾ������о���������ܿ��ѿ��D�N	����έ��������������Է����̦��������������������������ɻ��Ӣ����ƻ��,ETO	��ï����é�����������������������ݢ������ã���������������������nE�O�	�����������������������������������ӫݡݣݥ��ݤݦݧҩ��ݩݶݱݴ�E�P	ݰ����ɯ��ݮݷ��ݯݸݬݹݳݭĪݨ����ݪݫݲ��ݵӨݺݻç�E Q��ݼ	��������������ݿ����������ݾ����������������4F�Q	ݽ����������Ƽή���������өӪ�������������vFR	��������������������������������������FtR	��������������������������������������F�R	�������������������������������ޤޣ<G,S	������ε�������Ǿ���ޢ����~G�S	ެަ����ޡޥީިާޭ��޳ުޮ���G�S	��޶ޱ޲Ѧ޵ޯްн޴��޹޸޷H$T	޻������޺ź޼������޽DHlT	޿Ģ�޾�պ���H�T	���²Ű������������ʭ�������Ϻ��H�Tʴ����	��������������������������������
I4U�	�������������������������������������������������Ӽ��LI�U��	����������������������֩�������������������������������I,V	Ӭ������Ы�������������������������I�V	����������������������JW�	�����������з�TJdW	���������������J�WѪ	��������������������������������˥����������J�W	Ԭ�����������̻����������Ϯ������KXX	����װ���������ԣ��ȹ����������������������������\K�X	������������������������������K Y	��������������KlY	Ҫ���"L�Y	���������������������������������������������������dL�Y��	�����L,Z	�ղ�LHZ	�����*M`Z	���lM|Z	��Ʃ�M�Z	ڥ����������ڦڧ����ڨ�ѵ��Ѷ������کڪ��ګ���������������M�Z��֤ڬڭ���ʶ	թ����ڮ����ڰگ��ڱڲڳ��ڴʫڵڶ����ڷ����ڸڹ��ѯ��ں������ڻڼ������ڽ��ھ����ڿ˵��������ŵ����������2N0[��˭��������׻��̸	��ı��������г����ν��������������������������лҥ����ǫ����á�����̷������������Ǵ������tN4\	������������������ԥ���������N]	��������ò�����Nh]	������������������������̰ƶ����������������������ó��������������:O�]����¸����������������������������	��������׸��׬����������Ӯ����������������������|O,^	������Խ�������Ȥ���ſ��������ֺ���O�^	Ծ����������������������������������������·���������������P@_	����ӻ��̤��������������������������������BP�_������	���������̣�����������������������������P,`	��������������������������P�`	�Q�`	��������ת���������������������������������JQ�`	����������������������������ԯϽշ�������������������������������Qda	Ǩ���Ѹ���ӭ����������������ԶΥ��������������������������������׷�Qb�J�JpKL�LMXM�MHN�NLO�O|PQ�QRlR�R$S�S�STdT�T�T,U�U$V�VW\W�W�WPX�XYdY�Y�Y$Z@ZXZtZx��Z�Z([,\]`]�]$^�^8_�_$`�`�`�`\ab�bR�b��������������	ѡѷ����͸������;����ͨ����������������������������������RR�c	���������������������������Dzң���������������RLd�	�������������������������а�����ۢ�������ۡ�����ۥ�R�d	��ۧۤۨ����ۣۦ֣۩ۭۮ۬����۪۫����ۯ��۰������۱SDe	��۲��۴۳۵۷۶۸ZS�e	۹ۺ�������������������̪���������������ͪ������������ø�������������S�e	��������������������ȩ�������������������S�f	����������Ұ������ T�f	��bT(g	�����T<g	���TTg	��(Uhg	��jU|g	���U�g	�����U�g	��(U�g	��0V�g	������������������ǥ��������������������������������������Կ����������������ť����Ǯ��ǯ������������������������rV�g���������Ǧí	�������������������������������ͭ����ա�ϳ��������������ҿ�����������������V�h����������������п�����������������ê�	���������׶����������������������������������������������V�i��þ��	��������������������������������������������������������������������������������������8W�j	�����������������������������բ�����������zW�k��������������	��������������������������������������������������������������������W�k��	������½¤����ªİ��������������Ժ�����������������������W�l	��¡���������������϶������������������@X0mȸ��	������������Ӻ��������������ѩ�������������X�m����	�������ù����������˪ϼ������¶������X�m	������������������������ѥ����Y`n	��Ь������������������������HY�n	Τ����������������Y�n	ҳ�������˳�����������Y,o������Ԥ­���������	�����Ƶ���ӱ��������������������ȧZho	������Ʈ����ʳ���PZp	�������Z@p	�����������������������������������������Z\p����	�������������������������������ظ�����ܰ[�p	��Ԧ��ѱ�����¿��ʻ��������פ��������X[8q������	����������������������������ƭ��ɧ������������������������������������[�q������	�����������������������������[Dr	��������������ت���\�r	������������������κ��ħ`\�r	�����\s	³�����������������������������������������������������������������������������������������\(s	�����������������������������������������������&]�s	�������Ÿѻ�����Ѽ����ԧ������������h]\t	��������������ȵ��������������������������������������������ӥ������¹�]�t	����������´�����������������]xu	�����������ǭĬ������������������������������.^�u	������ؾ��ػܱ������������������p^,v	��������^|v��	����������������ȣ�������������^�vDd�d<e�e�e�f�f gx�4gLg`gtg�g�g�g�g�g�h�i�j�k�k�l(m�m�mXn�n�n$o`o�o8pTp�p0q�q<r�r�rs s�sTt�tpu�u$vtv�v�v6_�vx_��	��������������������������������������������������������������������������������������������������������������������������������w��������������������������������������������������������������	�_�x	���������_hyx��x`y�y`�y��``�y*�y�`�y��8�X�p�x�����l���t�������D���h���1�I�c�w�w�y�y�y�y�`�yһ��	�����������آ��ؤ����ا�����ة��حѾ��������ؼ�����د�a<z	����ر��֮է����ƹ��������ؿ����Ҳ���Ǭ�a�z	����������ء�����������بЩ��ؽ�����������������ͤ��������b${ʲ��������	���������������������������Ǫ����������������������������ab�{	����������������������٣����������٤�bH|	�����λ��ס������٢����������١���������������٦٥٬ٮ٫ʹ�b�|	٩ֶ����٨����٪٧ٰ�����������������'c4}	������ٴ��������ٸ����ٵٷ����ٹ���ٶ������ٽٺ����ic�}x��z{�{@|�|,}�}~~�	����������ٿ������������������������ٻ����پ��ֵ�c8~	������ΰټ��ƫ���ͣ��������ż͵�c�~��	�������ɡ��������Ӷ������ծ����ɵ��/d	����������������α����ɮ��������������Ƨqd\��	ٯ����������������ٱ٭����������ٳ����ٲ�d�أ��	Ԫ��������������������������������ȫ�������������������������d ���	����Ƚ����ð��ڢ����ڣԩڤ������������ұ����7e��	����ڡ���������������������������������͹��������ye$���������	�������������������ɾ����������������ˢȯɲ�����e��	�������������ǰ��������������ʣ�����������������e�	��������������������������������Ŭ��۾ۿ�?f��	��������������������ѫʤ��ļ������۽��Ȱ���������f���	������������ذ��������������ϻ��������ƥ�����f`��ʮ	ǧئ�����������׿Э��������߲ռ����������شîӡΣ��ȴ����ж����g̃	������������ԭ����������������������ȥGgd�	���������������ȡ������������������߶ߵ��������������߳ʷ������˾߷���g��	�����ߺ������ͬ���������߸�߹����������������������˱֨����������������g\�ѽ	�������߻��߾������������ζ�������������
h���	������զ����ӽ����������������������������ҧ��������������������Ohl���Ʒ��	����������������������Ա��Ŷ�����������������������h�	����������������������������Ψ����������h��	����������������������ơɶ��ž�������i����ι���	����������������ϲ����ɥ�����Ӵ����Wi\�	����Ǻ�����������ɤ���������������������������������������i�����	̾�����������Ż������������������������Хߴ������˻߼������it�	������ҭ���������������������ج������������������������j���	�����������������߿���������������_j�����	��߽�������������������ض�������������������j�	������Ȧ����Χ԰Բͼ���������������������������jX�ַ	��������̮���������̹����ƺ���������������%k̋	������������������ԫ�������gk8�	�����������������������ܤ��ִ�����ܣ�k��ܥ	���������ܡܢ��ܧ�ܦܩ������Ң���������k�	ܨ�������������Ϳ�����ܪ��ܫ��ǵ��-lH�ܯܬ	���ܭ����Ĺܮ׹���ī������ǽ����ol��	����̳��ѹ����������¢�������ʿ��׳Ҽ�����l�	�����Ϧ������ҹ����������̫��ز����ʧ���������lh�	������������ۼ�������������������������Ůū�������5m؎	����������������ױ����������������wmP�	����������������������Ȣ��m���¦	���������������������m�	ý��������ϱ��������=nX�	��ɩ�������������������������n���	����������������Ӥ��������n���	���������������������Т��������������ث��������ѧ�����o0��	��լ��������������������������������������������������Eo��	���������������Ԣį���������ʵ�կ��д�������������oD�	������רξ��Ѱ����С����������������������ʬ�������β���o����ƨ	���������ʺ���мչ������������������ɽ���p@�	�����������������������Mp��	�����������������Ͽ�p�	������������������������������������pP�	�����Ƕ�������������q��	����ո����������������Uq�	��Ρ����������Ѳ�������������������������������q,�	������ϣ�������������˧ʦϯ�������ñ�q��֡	���������Ļ����������������ƽ��������������������r����	���������������������������ͥ�������ӹ����]r��	����������������������������®�����͢����إ�r�	����Ū����߮ʽ߱������������������������ǿ��rX��	������������������������ͮ������������Ӱ��������#sė����	������������������ͽ�����������������ѭ��΢����������es8�	��������������߯��־�æ�����������������������������s���~�~T�����������X�ă\���T���d���|��T�؈l����܊P�ċ0�x�܌@�����`�ЎH����P���ܐ(���<���8����H����$����|��P���0���4��<�	������ŭ���������˼���������Թ���������sH�	����������ˡ��������������������Ϣǡ�+t��	���Ϥ��������������������������������mt�	�����������ϧ�Ω����������������������t�����	�����������������������������t�	���̬���Ľ��������������������ο������3uX�	���������ƾ����������������������uuĜ	����иӦ���������ų����������������ܲ�u(���	���������������������������������¾սϷ�������������u�����	�����������������������������ǤŤ���������������;v ���	����������ץͶ�����������̧����Ĩ��Ѻ����}v��	������Ĵ��������������������������׾���������������ȭ˩����ƴקʰ���v�	����ָ�����������Ų�������ͦ��Юw��	����ͱ��׽�������������������������������������Cw���	��ɨ�������������������Ҵ�����̽����������������������w`���	����������������Ҿ����������������������Ԯ�����w�	����������ɦ������������������Я���	xT�	��ҡ����ˤժ���§��Ħ�ֿ�����ġߡ��Kx��	����Ʋ�������˺�ߤײ������������������׫����̢�������x�ߦӵ��	°������������ߧ����ߨ�����ߪߩ������š�����ߢ����ߣ���x����	����߫£������ߥ������̯߬������֧߭������������y �	��Ч�������������������ɢ�������������Sy��	������������������б�����������ն˹�������ʩ�y�	����������������������ּ��Ѯ���������yt��	��������������������ӳ�����������������z�	��ʱ���������������������������������������[zP�	��Ͼ��������ů����������ĺ�������z��	����������������������ɹԻ�ҷ�������������z���	��������������˷������������ľδĩ�������������!{t�	���ɼ�����������������������������������������c{�	�����������ö��֦���������������{d�	��������ij����Ⱦ������������������������������{����	դ˨����У����������������)|(�����������Φ��	���������ͩɣ��������Ͱ�k|p�	����÷����������������������е�����|Ԩ	������������������������ջɭ������������|,�	����ֲ׵�����Ҭ������1}��	�����Ш������������ҵ��������s}ة�	���������������ե��������ȶ����}8�	�������ǹ����������������}��	׮������¥���������ģ����������������9~�	�������������������������{~@�̴	ϭ����������������������������������~��	���������������������ӣ�~�	��Ȩ�����Ƿ������������A(�	��ЪǸ��ŷ����ֹ���������������������t�	����������ѳ����ֳ�����������������������ɱ�����ج	����Ź��ĸÿ��ع�����ë���̺�����H�	��ձ����ص��å�����������������������������ˮ�����I���֭͡��	����ϫ������Ѵ������������������̭�������������8�	�����������������������ɳ��ûĭ������������������մ��̀��	й�Ȫ������������������������ע�����̩��Ӿ���0�	������ϴ����������������������Ǣ��Q���	�������������������ԡ���������	�������ӿ���������������Һ������Ձh���	���������������������������������������Ԩ�����dz����İ	�������������������������μ������������Y�L�	����������������տ������������	������Դ׼��������������Ϫ������������������݂��	���������������������������������±�����`�	��Ư���©����ŽĮ����������������������������a�Ȳ	���������DZº������̶����������������<�ɬ	��������������������������������������Ũ	�ʪŢ�������������Ϋ�������'��������P��� �����������X�ܠL�����������l�ܤH����l��\��� �h�̨$���Щ0���ت8�|�ث �l�Ь@���0���(����`���D����X���4�����\��d�	����к�����������������������������i�p�	���������̲����������������������Ե	�������Ȳ���������̿����������ը���(���	��������������ϩ�������/���	����������������������Ȼq�Ķ	�������������ɷ��ú���������������������ɿ���	Ϩ��Ѭӫ��������������������������l�	��ȼ��������������Ӫ��������������������7���	��˸¯������צ���Ϊ��������үسˬ����y� �	Ƭ��������ţ��IJĵ��������������ǣ������Ϭ��	�����������Ȯ�����������״��������	������������������������������?�8�	�������������������è�������������Գ����	���ʨ���������������������̡����Ç��	����������������õ�������������	������ɺ����������������������G�к	������������������������������ �	������������ɪ�Ө�������ˈ����	�������������������
�Ի	����������ư��ȿ�����ƿ���O�(�	���������߰���������˦�����������������������x��	�����η���������Ķ������������������Ӊ�	�����������������������������������ƣ�����������������\�	����������Ȭ����������ʹƦ����������̵����������W�ؽ�������	�����������������������ű��������ȳ����H��	���������������������֢���Ѣ���Ӹ̱�����������ۊԾ	�������������������Ƥ���������\�	������ӯ�����������ʢյ����������¬Ŀ����äֱ��������_���	ʡ������ü�������������գѣ��������������,���	���������˯�������������غ�����	������Ϲ������ޫƳ����˲���ͫ�հ����%��	�������ì��ʸ��֪������������ʯ��g�d�	ɰ����������������������������������������	���������������������Ӳ���������(�	����µ����������������������˶������̼�����ȷ����-�|�	������������������ש����ĥ�������������o���	��������������������������ʾ������T�����	������������������ף���������Ʊ���������	»��������������������خ����5����˽	ͺ��������������������������������w�`�ϡ	�������˰����������������������������	������ӱ����������Ѩ����������$��ͻ	խ��Ҥ��������������������������=�x�	�����������վ������ͯ�������������������	������������Ц��������������������������������@�	������������������Ͳ���������������������������	����������������������������������E������	��׭ƪ����������������ɸ���������d���	����¨���������������ǩ����ɐ���	����������������������������� �	����������ճ�����������������������M�p�	����������������������������������Ŵ�����������ϵ��������	�Լ�������������Ŧ����ɴֽ��������������ϸ���������ё@��	��������������Ѥ�����ͳ˿��������	����������������������ά��������׺����������U�,�	���������������������Ե�������γ��������������	������������������������������������������������ْ$�	����������֯���������������������������������	����������ӧ����������]��	���ȱ��@�	�������������������������������\�	������Ǽ�����������Ⱥ���������������������#���	���������ϰ������������������������������e�(�̵ �x�����d����x��0����|�Ⱥ�x�̻ �p��T�н@�̾T���$����\��� �t���L�����X����p���8����\����h���8���$��������8�x�T��� ������ҫ��	�����������ˣ����������������������������������������Ү������������	�����ʥƸ���������������ְ������0��	��������������Ф������������֫�������������������������+���	��θ������̥����������������ط���������������������������m��	֬в�����������������������������Ƣ����	������Ҹ���������ǻ�����������������������������������������������	������������Ĥϥ������������������ŧ3��������ӷ	�����������������������������̨�����u���Ҩ��	����������������������˴����������������������������h�	�ͧ��������������������ɫ���ܴܳ��ܵ���	ܹ��ܷ����ܻܺܶâ��֥ܽ��������ܸ����ܾ������о�����������ۻѿ�;�l�	����Է����̦����������������������������ɻ��Ӣ��������}��	��ï����é�������������ݢ����ã�����������������������|��	�������������������ݩݶݱݴ���	ݰ����ׯɯ��ݮ��ݷ��ݯݸݬ����ݹݳݭĪݨçC�H���ݼ	��������������ݿ����������ݾ����������������������	ݽ��������������Ƽή�����������ݫ������ǘ �	��Ҷ��ݦ�������������ݧέ������������������������	���	������ݻݪ�������������������������K���ݥ��	�������������������������ޤ��ޣ��L�	��������ε����������������ޢ��ϙ��	ݡެ��ަ������ݤܿݵޡ��ޥީ��ިާ�������޳ުޮ�����	��޶ޱ���ܼ޲��ǾѦ޵ݲޯ��ް�н��޹޸޷�S�l�	޻����ݣ����ź޼����ҩ��޴���������޽����	ޭ޿«��ƻĢ�޺���޾���պ������ך0�	���Ű�����²��������ʭ��������	�����������������������������[����	��������������������������������Ӽ������8���	���������������������֩������������������������������ߛ��	��Ы�ʴ��������Ϻ��������������!��	����������������ө����������c�t��	�������������������������з�������	�Ӭ����������������������������D�Ѫ	��������������������������������˥����ֻ�����)���	Ԭ��������̻��������������k��	��������������ԣ��ȹ��װ������������������������`�	��������������������������������������	��������������������������Ϯ���1�(�	Ҫ���������������������������������s�x���	���������������������������ڥ����	����Ѷڧ��ڦѵڨ�����������ګ��������ڭ�������	ڬڮ�ڪթڱگ�ڰ����ڼѯ����ʫ��ڸ��ڹڵ������ڷղڶڴ9���	ڳ��ڲ����ڿ�������ڽ����������ھ����˵˭����������{��	��׻̸����ں���������������ڻ����г��������������������ŵ����ı��ν	�����������������ǫ����лҥ���������ک��á���	֤������ʶ��̷������Ʃ����Ǵ���A�x���	��������������������	��Š��	����������������������ԥ����������	��������ò��������������ƶ����̰��������������������������óI�d�����¸������	��������������������������������������������׬�����������	��׸�������Ӯ��������͡��	�������������������	������Խ����������Ȥ����ſ������ֺ��Q���	������������������������������������·�������P�	����̤����������������������ӻ��������բ��������	���������̣��������������������������������	������������Ծ������������������������������Y����	����������������������������������	���������������������������������շ��ݣH�	�Ͻԯ�ת���������������	���������������������ũ�a���	���Ѹӭ����������������������������������׷��8�(������������`���d���t���@����x���D�����d���(�|���0����l���<����X��� �p�������x���p�����x��\���|�����H����|���@�����0����������	������������͸����;��������ͨ�������������������������������������	�������������������������Υ����ѷ��Զ��Dzң��������������Ǩѡ��������'�H���������	��������������������������а��ۢ�������ۡۥi���	��ۧۤۨ����ۭۮ۬��ۣ��۫��ۯ��۰������۱��l�	��۲۩���������۴۳۵��֣۷��۶���ۦ۸����	۹ۺ۪�����������������̪���������������ͪ����������ø������/�4�	����������������������ȩ��������ҽ��������������q�������	��������������Ұ������������������������������������ǥ��8�����	����������������ť��������������������������������������	������������ǯíǦ�����������������7�8��	�ͭ��ϳ���������ҿ���������������y���	��п�����������������������������������	������׶������������Ǯ��ê����¼�������t����	�����������ա���������������������?���	þ�����������������������������������@�	����������������������������������������è��	��������������������������������������	�������������������Կ�������������G�h�	��Š����	���������������������բ�������������������������������������	������������������������������˩\�	������������������������
�����	����ªİ����������������Ժ���������������������½��O���	��¡��������������������϶���������������¤������������d�ȸ��	������������Ӻ��������˫������������ѩ������������Ӫ����	�������ù����������˪ϼ������¶��������\�	������������������������������ѥ����W���	��Ь���������������������������	������Τ�����������������۫`�	ҳ������˳���������Ԥ���������������ͷ�����Ƶ�����	����������Ը���������������­�ȧ_�$�	��������������	Ʈ����ʳ����������������������	�������������������������������������%��	�����������������������������g�h�	��ظ�����ܰ��Ԧ������ѱ����	��פ������������ʻ����������������	������������ƭ���������ɧ����-�D�����������	���������������¿����o���	���������������������������	������������������������������������	������������������������������ت���5�|�	����������������κ��ħ����³����w��	����������������������������$�����	��������������������������������������h�	���������������������������������������=��	�����������������������������(�	�����������p�	��ѻ��ԧ�����Ѽ���������	������������������ȵE��	�������������ݺ�������� ���	������Ÿ��������������ӥ��ɱ\�	������������	����������¹M��	����������´������������������ô������	�����������ǭĬ��������������������������������������ѲL�	����ؾ����ػܱ��������������������	����ի�����������������������ȣ��U��	��������������l�@���d���,���0���0�����l���8�����`���x���T�����\���T����X����|����`����<�����t���`��� �h�����T�����D����d���ٳ����8�X�p�x�����l���t�������D���0~@�h��������w�y�y�y�y�`����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTTTTTTTTTTT��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWW��	

 !"#$%&'()*+,-./01��	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLM����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZZZZZ�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS��	




















































































�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTU����	

��������	����	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	
����	

����	

��	������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	




















































����������	

��	

��	

 !"#$%&'()*+,-./01234��	

 !"#$%&'()*+,-./01234567888898888��	

 !"#$%&��	
����	

 !"#$%&'()*+,-��	

��	

 !"#$%��	
	
											 !			"	#$	%&'			(	)	*��	

 !��	

 !"#��	

��	

��	��	

��	

��	

��	
����	

 !"#$��	

 !��	

��	

 !"#$%��	

��	

��	

��	

��	

 !"#$%&'(��	

��	

 !"#$%&'()*��	

 !"#$%&'()*+,��	

 ��	

 !"#$��	

 !"#$%&'(��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

 !��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

����	

��	

 !"#$%&'()��	

��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

 ��	

��	

��	

��	

��	

 ��	

 !"��	

 !��	

��	

��	

��	

��	
��	
��	

 ��	

 !"��	

��	

 !"#$%&'()*+,��	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

��	

��	
��	
��	
��	

��	

��	

��	

 !��	

��	

 !"#$%��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	
��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
��	��	

��	

������������	

 ��	

 !"#$%&'()*+,-./0123456789:;<=��	

 !"#$%&'()*+,-./01234567��	

��	

��	

��	

 !"#$��	

��	

 !"#$%��	

 !"#$%&'��	

��	

��	

��	

��	

 !"#$��	

��	

 !"#$%&��	

 !"#��	

 !"#��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

������	

������������	

��	

 !"#$%&'()*+,-./0123456789:;<=>��	


 !"#$%&'()*+,-./01234567







��	

����	

 !"#��	

 !"#$%&'()*+,��	

��	

��	

��	

��	

����	

��	

 !"#$%&'��	

 !"#$��	

 !"#$%&'()*+,-./0123,456789:;,<=>��	

 !"#$%��	

��	

 ��	

��	
��	

 !"#$%&��	

��	
������������������	

 !"#$%&'()*+,-./0123456789��	

 !"#$%&'()*+,-./0123456789:��	

 !"#$%&'()*+,-./0123456789:;<��	

 !"#$%&'()*+,-./0��	

��	

 !"#$%&'()*��	

��	

��	

��	

��	

��	

��	
��	
��	

 !"#��	

����	

��	

��	

��	

 !"#$%&'()��	

��	
��	

����	

 !"#$%&'()*+,-.��	

��	

��	

 !"#$%&��	

��	

��	

����	

��	

		 !"#$%		&'()*			+,-				./01234	����	

                                 ���������	

��	

��	

��	

��	

 !"#$��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$��	

 !"#$%&'��	

��	

 !"��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

 !"#��	

��	

 ��	

��	

��	

 !��	

��	

��	

 !"#��	

��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	

 ��	

 !"��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#��	

 !"#$��	

��	

��	

��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

������	

��	

��	

��	

����	

 !"#$%&'()*+,-./0123456789:;<; DK��<tK��dTL��|zRx�$K��0FJw�?:*3$"DK�� \�K��<HoGNU��`�"`f�����`n4z����f`������n`�y����y���
LP�"X�"���o`��
��"0��(	���oh���o�oP���o�" GA$3a1�YGA$3p1094LGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignchinese.so-2.7.8-141.el8.x86_64.debug̸|�7zXZ�ִF!t/��]?�E�h=��ڊ�2N�a�nj��r�p�R�֩:��_2���l+�ү��mwGĮT_�m�0y�f�\�§D��-�HS����?k�g!��ɗ�l�-��X��Ut2!�n+�Vĝ�7�����y��{پ��
��q[m�77c�`&���.���;�_qՓJ��H\�
�G��G�	L�e̼;Uy���j�*��l��`T���*	�����ݼ�>�Sr4�܇o!2�>t�@�w�0^��A�t�{�',$����t����|a�Fc�����R��M����i@��ŗ�1��t�XXA�Ӳ�Of�_��?_�$�n�d��a<PBr���)�[lѲ���}��R�|.f/��|S���P2����n�*�iP{'_8tDXњ#
_W��e���%��@��ə'1E����{��4ˉ6n_xDkh22����z��tr?�LS[垏)�6��K"�$�[wU��̡%���3�\�F��|KHSj��	��K6�t��N����1�"rp�=ǎ	 �R� �IQ�-�G�;�_�;���C�>&v��L�T���[~M��m�z�F:O�=��]���HN�_����������zw�A��؞E�0��P�D�
��ݩ�oL�~���r~6
#qoc�[�Uj�Vh�Hk臭�������#
��w
��~��*cW*��|��Kgt�k�rX����D�D:"~��4�S�����X�s�̛�ɖ�*��{ϲ6� �Wš�{v��c��0?�����N	&��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T��(^B��0h��c0n00 wPP�}LL
�``[� �����$���t�X�X� �P�"P��X�"X��`�"`�� ��"�����"�� ��"�(�(�"(��0�b(��
�,H�L��+PKMH[�����>�>!lib64/ruby/enc/trans/utf_16_32.sonuȯ��ELF>@�7@8	@(!(! P&P& P& �	�	 .. . ��888$$!!!  S�td!!!  P�td�����Q�tdR�tdP&P& P& �	�	GNU>��J�@����NA`G��S���@ 	BE���|�qX��� d , F"�(0 �00 �(0 U�__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_utf_16_32rb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�P& �X& p`& `& �& ��& ��& ��& �& ��& � ' �(' �8' �H' p' ��' ��' ��' ��' ��' ( �(( 8( �`( �h( �x( ��( �( ��( �( �) �) �) �() x) ��) ��) ��) ��) * �@* �H* �X* �h* �* ��* ��* ��* �+ X+ �+ ��+ ��+ ��+ �+ � , �(, �8, �H, �, ��, ��, ��, ��, 8- �
`- �h- �x- ��- �- ��/ �/ �/ �/ 0  0 ��H��H�I$ H��t��H����5R$ �%S$ ��h�������h���������%-$ D���%%$ DH�=!$ H�$ H9�tH��# H��t	�����H�=�# H�5�# H)�H��H��H��?H�H�tH��# H��t��fD�����=�# u+UH�=r# H��tH�=� �Y����d�����# ]������w���������u-�V��ym����	Ѓ���F��?�Ȁ�A��D<���ƒ���tF�������V����<��	ЃȀ�A�F��?�Ȁ�A�������V��������	Ѓ��������0����V����	ЃȀ�A�F�V������0��	��V��	ЃȀ�A�F��?�Ȁ�A���V���������������Ѓ��@���������~<�����@������	����������؈�F�~��@����<��	�	ˆQ�F������܈A�F�����F��	ЈA��f.����A�Ð�����������F��?	ЈA��fD@������ 	���F�V���ǍB�	��A��ff.�@���F��u,���ym����	Ѓ�����?�Ȁ�A��fD<���ƒ���tF������F�����<��	ЃȀ�A���?�Ȁ�A��@�������������	Ѓ��������0��������	ЃȀ�A��V������0��	��V��	ЃȀ�A�F��?�Ȁ�A�������ff.������������Ѓ��@���������~<�����@������	����������؈A�F�~��@����<��	�	ˆ�F������܈A�F�����F��	ЈA��f.��A���Ð�����A������F��?	Ј��fD@������ 	��Q�F�V���ǍB�	����ff.�@���F��ut�F��u,�V��������	Ѓ���F��?�Ȁ�A��<��������F�V����<��	ЃȀ�A�F��?�Ȁ�A��@������F�V������0	ЃȀ�A�F�V����<��	ЃȀ�A�F��?�Ȁ�A�������V�7����������x1�f�A��A�Ƀ������ƒ���tH�V��������	ЈA�F�V������	ЈA�F�����F��?	ЈA��f��A�F������� 	ЈA�F�V���ǍB�	��A�g���D�A������A������F��?	ЈA��ff.����F��ut�F��u,���������	Ѓ�����?�Ȁ�A��f�<��������F�����<��	ЃȀ�A���?�Ȁ�A��fD������F�V������0	ЃȀ�A�F�����<��	ЃȀ�A���?�Ȁ�A��D������7�������A���x1�f�A���Ƀ������ƒ���tH�V��������	ЈA�F�V������	ЈA�F�����F��?	Ј���A�F������� 	ЈA�F�V���ǍB�	���h���fD�A������A������F��?	Ј��ff.�@���1��fD���<t
<t1��fD�������ff.����<tu��tI<�u8�~u.�V��J���v���u�F��(<H�H��H���������uL�~u�~�u܀~�u���
�>�u��V��J���v����u��F�fD���u��~�u��~u��~u���
����<t
<t1��fD�������ff.����<t]��t1<u%�V��J(��w
���H���
H���fD��f������tC���u߀~�u���
�����J(��w����H�%�H�����~�u���
���?t�"���f������H��f�A������H���fD���?t����f����H������H���f���H��H�=Q ���H�=� ��H�=� ��H�=M ��H�=� ��H�=� ��H�=I ��H�=� �x�H�=� �l�H�=� �`�H�=9 �T�H�=� H���D���H��H���UTF-8UTF-32UTF-16UTF-32LEUTF-32BEUTF-16LEUTF-16BE(0
<D
LD \Td2lt|���������2�����4��
�
 (G4�<G<�<L�\G\�\4DLTdlt|����������������;����������� (�48�H(�\�p�������������8��������8�����������8���$zRx�$(�0FJw�?:*3$"D0� \��p���������������������|���X�
T�%$p��8,���%LH����`���*t�'�����H�GNU��p`& ����j������j����,�j�����j������j�����j�����j�����j����j���4�j�����j�
����j�{���
�P& X& ���o`��
�0 0`��	���oh���o�oR���oE. ��GA$3a1��GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��
GA+GLIBCXX_ASSERTIONSutf_16_32.so-2.7.8-141.el8.x86_64.debug���M�7zXZ�ִF!t/����]?�E�h=��ڊ�2N�ss(�ٕ��Q/��%�7r=��W�5�^�:���t�y��&��x�)e�
��i3��x�.�R�V$��[�x����5תT���֑i����^R����2��_h�V/-��EcyIHNɱ�j�+.�
�[��v��<=�6�	o��O~����W����ql�;���\�i�T��BPd!Ab��c& ���`�H̻x��1!�=�v�8�_�$k��ڟ����‰}`�Y���|�i��n$Ԯ�.5�9|�Z
H ��Q��v~�_e9�?�\�[��A��U�!N�����zC�t�DZ
��Կ��A�Žk�I3_tf���P�k$&��ߧF�Psy'��J�3�u7�\���ۭ�S�wҴ
�:.�b֦ă��QC�G�k5��Ц�$�&Ӛj:J\��	�W����i�&�"v/V��]�����O��|-�����Us8�p/_&��)��\S/�9h���)P]��?��~>@BN���9�HS�A�=׿Ke9��|������mH�M����DB0�п��5��.f*��bϔ@ݬ��ct�k��$�k��#�|?HF�s�t�C�D��H(��3�8͡'{�>tK�$adX����3Ӣ�*��jX�,We��)��d..��ħ�?�W��Y��XIj9�U3e�e��hT�xc�!0�Ţ���1=,S&�)�6���j�r���D˭��Ot0r��T@���qOֺ��/��*�l�+1ZRH�Q�ty����+�ӍOpt��*Wݛj�C�y _"R��L�Hz
�mc@����H?׾���%���9�"4�~:ԸA�&�s�@^�U0S��D�/[d�w�H�P~j?%{�_�w��SAm�Iә�}T?�%Q���!�$a���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oRRE���ohh T���^B``0h��c��0n�� w�}��
��� �����hh��!! �P& P&�X& X&�`& `&� �. .���/ �/ �0 0(�(0 (0�00`(0D
l2,�2�h6+PKMH[���@��+lib64/ruby/enc/trans/emoji_sjis_softbank.sonuȯ��ELF>�@��@8	@нн ����!��!�� ��!�!��888$$������  S�td������  P�td���$$Q�tdR�td����!��!ppGNU��/""��g؛�'2:7��@  	BE���|{-��qX n , F"�(�!�0�!U`$�(�!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_emoji_sjis_softbankrb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	���!P��!��!��!��!���!���!�R��!�`�!�h�!�x�!�R��!���!��!��!��!�! �!��H��H���!H��t��H����5��!�%��!��h�������h���������%��!D���%��!DH�=��!H�z�!H9�tH�&�!H��t	�����H�=Q�!H�5J�!H)�H��H��H��?H�H�tH���!H��t��fD�����=
�!u+UH�=��!H��tH�=n�!�Y����d������!]������w������H��H�=��!����H�=E�!H�������H��H���UTF8-SoftBankSJIS-SoftBank 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈〉《》「」『』【】+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓	∈∋⊆⊇⊂⊃∪∩∧∨¬⇒⇔∀∃∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬ʼn♯♭♪†‡¶◯	0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをん�\ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ	ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω~�АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ	абвгдеёжзийклмнопрстуфхцчшщъыьэюя─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂=�	�p①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ	㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡㍻〝〟№㏍℡㊤㊥㊦㊧㊨㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪��	亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭z�	院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改9d魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄9`機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈9\掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向9X后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷9T察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周9P宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾9L拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線9H 繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只9D#叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓9@&邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入9<)如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美98,鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋94/法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒902諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯9,5蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕	弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲�(8僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨9|:咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩9x=奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏9t@廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛9pC戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼9lF曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣9hI檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌9dL漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱9`O瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬9\R磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆9XU紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋9TX隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈9P[蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞9L^襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊9Ha蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮9Dd錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰9@g顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈9<j鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙	�8m纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱9�n犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ¬¦'"v�q9�t9�w9�z9�}9��9��9��9��9��9��ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯9��涖緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙9��髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑	5��T��hx�	\XTPLHD@ <#8&4)0,,/(2$5 8t:p=l@hCdF`I\LXO。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン゙゚TRPULXH[D^@a<d8g4j0m�n�q�t�w�z�}������������������Ԙ�ܘ	���N���}�L���	Ț	�~��5
�w
p	�������������������������������������������������������������������������������
�����	���������������
��	�F�@�A�B�C�D�E�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�p�q�r�s�t�u�w�x�y�z�{�|�}�~����=���������������������������������	�vĜ���w
�	�]�\�e�f�g�h�����d�c���������0�	��������%x�	�T�U�V�W�X�Y�Z�[�\�]����������������g��	�����������	��������	�����������������������a��������������������-
0�	��������������o
��	�������������
Ȟ	���
�	�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S5���������	����������������������������������������������������wd�	������	��������������	������������=,�	����T���	���������l�p������(��������\����$�L�d������@�A�B�V	�X�Y�Z�q�r�s�t�u�v�w�x�y�z�����k�l����E�	�������������������������������������������������������������������������������������������������������������������������������L�����������������������������������������	�J�K�T�U�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�X��_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������	�E�[�R�SD�	������M@�	�����������\�	�e�i�`�c�a�k�j�d�l�f�n���	�_�m�b�g�h�~��������	�r�s�o�p�q�uU�	�t����D�P�<�8��T�x�����(��0�����	�������O�����s�^���N���������u���������L�������������O������h�	���T�v�V�����R�h����������������������]���T	�������\�����������]�������j�i�����������S�������������������������l�T��Y�m��	�����w�����������e�d�����t���W�����M�������������������C�N���O��	�P�������������x�����`���������L�Q�f����#��	���A�������Z���C�����R���]���������C�����������������ge�	�������T���������S�V�����U���������D�������N�����d�	�W�����E�r�W���������������������M�������C���o�U���������Z�Ԩ��L��x��\�̨P�+X�	�����q���{�����|���������[�����Y���l���������������`����m���X	�^���\�����������������������]�����������U����	���T���_�P�������b���B�������X�p�	�C���@�A�������l�D�a���E�H�F�m�G�I�`�K�J��3���V�M�N	���L���Q�P�O���R���S�D���U�T�W�V�Xu$��Y��	���Z�[���������b���[���e���Z�\�}���]�c���S�_�`�����Z�a���������T������b	�c���~�f���e���g���h�`�i�j�k�����d���n�l���m�y�o�p�q�~�u�s�t�r���v�����w�e� �	���x�y�y���������z����{�}�����}���f�~���M���������o����;Ȭ��	�n���������������Y���g�����������������������������h��}H�	�������������O�����U���������������������������n�����ȭ	�c�����������������h�������i���w�������[���J�������N@��j��	�u���E���������������k�������������������M��������������C���l����	�����m�������������k�����x�������n�����������C�������@����\	���������������������������P���m�����T�����K�����o���p�����������į	�����p���������������~�X�}�����q������	\�	�Q�������y�F�o�����f���������r���b�p���������@�����������������j�E�����i��K��	���h�e���g���D�����@���f���N�����i���������������z�����������\���	�C����������������������������������������	�����u���a���������t���B�����v�@���]���P���D���CD����i�A	���������E���N�F�G�����L�K�N�M�J�wS��	�S���O�H���I���S�B���Y�X�O�����P	���U���R���[�V�W�T�Z�Q�`�e�a�`��\	�f�P�x�h�A�^���b�[�������c�_���i�g�r�i���d���c��	�m�k���p�j�n�l�k�o�r�w�u�t[�	�Q���q�s���R�v�������}�{�|�~�`�	�\�X�x�y�����������������������	���d���������X����������!���������	�����������d���l�����c�������}��������c0���	�������������������������y�������\�n�����������	�����V�������B�y�����z�R��������	�������^�����C�_�����{����)T���	�����}�|�������������W���u�������|����k���x	������������������������������g�����������	�����Y�����h�������������U�����o���m�T�	��������������n�����������������1��	�����d���������������������������m�p�s��������������������s�	������������[�O���g�������������V���v�������������������	�����������t���_��z������������������������D�������z�@�D��	�A�@�����D�J�W�d�����B�E����W�i�F�������9��	�G�o�n���������K�L�I�W���H���P�����p{�	�����Q�O���R�P�N�P�M�����V�W���L��S�K	�k�U���X�w�Y�T�����	�}�Z�Q�[�_�\A к	���^���]���k�d�a���`�b�c�e�f� ��	���h�g�i���l���d�j�m�n� @��q	�o�p�q�r�E�s������t�u�y�F���G���v�w�w���x���y�z�{�}!|��~	�����F�����v�����G���@���������X�����q�����G���{���Q���������e�hI!���	���������������x������������Q���@�����������J���R����������������������!��	�������������������q��������������������������A�������K���s���A�!0�����	�����������r�����������W���j���w���������R����"��	������������Z���������x�������������Q"4�	����������������������������s���"��	�������������R������������������"�	�������������������������#0�	������������������������������Y#x�	������������������B�����H���I�������������b���J���F���#ȿ	�s�z���������������������t�����A���������X�#D���	���������y�����������������������N�����K�������c�H����$��	���L�������������X�M�{���x�����������N�fa$(�	�����p�����L�����f�@�C�D�B�_���F�E�A�G�H�I�L�J�K�M�����N�����U�O���$��	���P�M�Q���T���������U�|�����V���O�o����������W�X�^��������Y�J�e�$�	�Z�K�[���\�]�_���`�a�b�S�R�c�`�F����V���j�d���e�e�f�����i'%�������h�g�a��	�m�k�j�������l�k�]���p�o�n�q���r���z�s��������O�t�Ji%4�	�S�K���E�u�u�Y�Z���z����w�����y�O�x�v���|�%���h����|����@���8���8���T���T�ܱ<����X����X����(�����L����L����������D���Ⱥ�8�t����(���,���ؾ(�p���<��� ������,��� ��(�	�������{���|�������v���}�}�������������������%4�	�����������������P����������~�������p�����������������b��/&��	�������������������������������I���x���Y�����{������������q& �	�������f�����������������y���S������z�������������&�����D	���������������������������������������������& �	�������������Q���T���������������������d�S�����������������c���|7'��	�J������������������������e��������������y'(�	���������������������������������������������'����	�����������^�����������������@���A���B�C�Y�D�E�F�������[�'�����G	����������H�������K�I�L�J�M�����}���N�Q��?(|��Z	�O�V���P�c�}�R�S�W���T�R���e����������������Z�����(��	�c�S�]�d�_�f�b�a���[���Y�����U�X�S�����`�q���g���@�h�m�i���n�A���E�\�(`�	���k�w�l���g�������j�����U�����p�})��	���J�q�s�o�����{�������~�����x�����PG)L��v	�|���{���u�z�r�t�@�|�|�����T�y���T�����[�w�d�f���}�~���)����	���������`�����K�g����������������h�)$�	�������������r�������������g��
*��	�����E�������������O*��	�����T�����Q����P�������d�B���o�h�����*�	�i������������^���������F���C���[�����������������*`���	�������������������x�������������U����+��	��������q�~�����s�����������U���h�������G�~��W+4�	�������|���k�������l�������������������a�f�z�V�������{�+��	���������������������������������U���|���{���������+��	�V��������������������������f��t����������G����������E,��	�����W�����W���N��������������A���������i��������q_,�	�����������������g�������������b����\�A��������,��	���@�����B���C�j���D�F�G�H���g�X�I�J�������J���]�\���,���	�����L�������K�����L�N�]���M���N�O�������{�D�Q���p�S�V�U�����R%-��	�T�W���������������Z�m�X���Y�����[�\�����a�Y�t�^�������n�f�`����g-�	�f���]�c�b�����������}�g�e���d�_���k�i���g�m�s���-������	���u�A�t���^�����_���M�p�o�q�n�v�l�j�r�h�������������`�-�	�������h�����I�x�Z���z�����}���j���i��-.���{���j����	�y���|�~���K�����j�������V���O����������o.��	�����~���������[���������������������B���������������.h�	�����H�����������_���������I�����������X���������.���o��	�����������A����������������������������������������5/P�	�k���������^�����������������������|�������������O�y��w/��	���T���|���P�����Y���������������������/L�	��������\�����������l���������������������������/��	�������������������W�����������������~���������������M=0�	�����������k���@������������������0���h	���������@�w�������K�G���F�E�B�0��	���D�C�I�E�L���H�J�������M�Q�N18�	���O���R�S�T�U���������~�W�V�Y�\����E1��	�\�[�]���V�^���`�_�a�b�c�~���������c�������d�e���f�1���g	�i�h�w�}���c�j�l�B�k�m�n�o�p�q�s�r�t���i�u�E�k�v�a�1P���	�B�w�x�������y���������z�|�{�~�}2��	�����������C���������X�i����M2����`��	�����������������]�r�����������������D���2d�	�������������������B���������v���������������������������2��	���������������@�����������A�g���D�����������j3P�	���m�����������������k�^���F�������������hU3��	�����������l�����Y�_�Q�\�������C�Z���3 �	�������O�����������������U�t�������3x���	�������������i�����������W���������������[���~�����������Y��4��	�����������a�k���������������n�������Q�������������`����������]4X�	�������������X�����N�����������p���4����	���������������a�������������n���M�����48�	�������������������������������H�B������#5��	���Y�����R���A�������������������Q�@��e5��	�������N�I�������R�K���H���k�E�D�M�5T��G�F�L	���C���O�P���U�T�V�Y�b�S���W�5�������Q�Z	�X�]�[�^�a�Z���G�����\�`���_�J����d�h+6���������� �����t���X���D����x�����X���,����������|���������`���H���D��������0�|���H����\���H����p���P���0�����L�����`��h�	�f�����b�c�g�e�m�m�j�i�l���n���������o�q�pm6t�	���r���s�����D�������6��	���F�����u�t���x�Y�{�v�z�y�_���F�6�	���}�G��~�|�w�B�37`�	���������������R��u7��	���������������������������7��	���F��o���n���M���7(�	��R������������z����W���C��������;8l�	���������������������u���}8���	�������v��������������S�q�����������84�����	����]������������@9��	������������_���������������K���T��C9��	���������������A�������L�������P�Q�����9L�	�����������b�������l���C�������9��	�������������������D	:����	�����E�X�����H�F�����G���]������J����K:,�	�������I�������K�M�L�N���������i�����:��	���������l���������O�����������������:��	���P���Q�������;@�	����Z�@�Z�A���B�C�D�F�G�E�r�I�HS;t�	�R�K�J�L�M�O�N���Q�P���r�[�R���Y���S�p���T��c�R�b�\�j�������U�;��	�V�[�Y�X���E�W���������\�Z�{�����L�^���l�_�]���`�a�S�����f�c���b�E�;T�	�i�d�e�h�g�D�a�`�^�j�k�l�n�m�u�v���p�r�t�]�u�s��<��	�o�q�a���x�w�y�������z���|���{������s���}�~[<X�	��������������<��	���������������������������o����S�<��	�T��I�F�c����H�����W�U�V�X���������M!=��	��u�~�m�v��������X����������������������c=��	���������������^�����������������=l���	�Z�������������r�����������=��	�������������u������������������)>�	�����������������m�����Z��������k>`�	�������������\�u���m�C�j�v�{�>��	���]���^���d�������_���>��	���������V�����O���q���������������m��1?4�	������������A�@������C�Bs?��	���D�b�F�E�G�����I�H�`�������?���J�V	�_�F���S�P�O�c�L�N�j�_�M�K�I���[�����Q�R�?(��h��	�\�T�S�������d�f�T���U�W�X�H�Y�Z�[������9@���G��	�\�H���b�]���d�`�a���`�^���_����{@���H	�b���c�����B�d�e�t���g�f���i���l�j���m�k�e�@P���	���m�s�o���n�����n�p�q���r�n�t�����u���v���@��	�������w�����y�{�x�z�A�|�E���q�~��M�AA �	������}������g����������������v����h�G�j��[����^�|�����A|�	�������������J��}�y�����������A�	��M������������}����������������B|�	�������������Z������k����\�������IB�����	������z��������������U�������BP���	�����������������������������������B����	��������������������������������C�	���H���������������e�S�l��������������������������������QC\���	�������W�������������f�����������n���C���I	�@���g��C���[�R���B���h�������A�f�a�������F�����G�a�I�����H�CD�	�I���g�D�J�m�E�o�M�Q���L�U�n�i�����R���O�P���N�K�G�����WD��	�T�V�S�p���X���e�p�a�[�_�����Z�b�f�j�����\�o�d�Y�]�^����YDP�	�]������������q�g���c�h�j���m�i���������l���k�D�	�����n�u�o�v�r�����t�q�w�p�c�D�k�s��{�~�|��z�`���D<�	���}�x�@�q�J�r�D�U������y������J�����E��	�[����@���Z�������aE$�	�����Ep�	��s����������������r�u�����l������E��	��������r��������t��Q�A�`�������H'F��	���������K���������������������|��iFp����X����� �d���,�����D�����$�����8�l���L���P����x���d����X�����,����� �����H����t��t���H����T���<���H��4����h�����h������s�V	�l���������������k�������������������^���F�	�����������������������������������E�����W���F<�	�����������]�������I���������������b�����m�n�����x/G��	�����_�w�������������E�������������E�\qG�	�������e������r�����E�]���B�Gx�	�A��t���D�C�o�r�T�H�I���G���F�J�����B���G��N	�O�K�L�M�p�U�Q�����G�P�S�R�c�V�W�V�X�Z�^�[�Y�^7H(��\	�]���d�_�`�a���c�b�e�f�g�b���h�����L���v�i�j�P�kyH��	�l�m�n�o�����p���q���r���s�����C�w���M�t�q�u����w�������v�D�H��x	���z�y�|�{�}��~�����������F������H��	����������H�����m�c���F�|�����?I��	����������c�����������������p������IP�	�v����������s��������������������I���	����t�`��r���w��������xJ(�	����������������������GJt�	�����y�e������������p����������H����z������J�	���������G��������������������������J8	���{�t���������������������������K��������
K�	�������N�����f���������|����������OK�	���~���u���W�������������D�H�@������KH��	�������������U��������������K���@	��������B���}�C����~����n������J�P�QL��D	���N�F�H�R�G�K�����L�O�E�E�I�F�d�O��������V�TWLX	�m�S���U�W�X�[�Y���Z���M���\�a���`�L�	�A�b�h�]�_�^�P�A�d�c����e�f�L	�g���s�i�|�������j�k���l����Md	���q�r�m�\�n�a�o�p�z�t�w�s_M�	�u�v���x�`�u�a�{�^��|����}�~�g����������M��	�I���������w����������MX	���X����I����������������%N�	��Z���������gN�	������������I�a��NH	�����������y����������N���	�����O�s�����p�X���q�����t�����\����������������-O�	�����U����������������������������������oOX	���������������T��������������������������������O�	�������������J���A�������������O(	��������������A�@�C�B�D�P�E�F�G��5P|	�v�H���e�I�J���K�K���`�L�o�M�O���N�e�P�Q�R���S�T�UwP��V	�p�W�X�Y���G�Z�[�\�PL��	���]�v�u�`���_��P�^���L�a�b�����c�K�������i�d��f�����P�	�e�h�i�����g���]�f���r�m�w�����l�l�k�F�l�b�Y����j=Q		�o�p�n���_���F�s���a�U�v�����r�w���t�u��q�����N�����b���Qx		�z�x�k�����y�z���_�{������������~�|�@����}���������Q�	�d�y��	��������������u����w����T����R�
	���������������x����c��������ER�
�	�]�����Q������R`	�J���R�	�����L����������������^��S�	�����e�����L�������v�n�����������������������M���������\���fMS�����G���d	���������G���o���^�����������������q�������w���S�	��������������������������S,
	�������q������������NTp
	�����z������������UT�
	�����������������������������H���H�����T�
	�����x��������H����T<	����@�D�A��B�C�J�E���G�I�F�L�R�K�MU|	�N�Q�P�O�S�R���U�T�V�W�Y�X�g�Z���[�]�^]U�	�_�\�`���a�O�R����b���]�c�f���e�d�y�g�U0	�r�i���h�q�k�m���j�l�p�n�P�o�r�y���S�s�A�u�t�x�`�U�	�w���v�{�z�y�Q�|�}�~���D���#V�	�h�������������C�J�_��������HeVH	�I���v�}���������������R��q���������V�4����p��� �������H��� �l��0��@��P�\��P�@��P� t�D|�p	�	|
�
X����$
h
�
�
4t�(��@������	����t�����������r�������������������A����T�i������N��V	�����x����V�^�����������B�����������k���y���K����������J�I�������+W�������	�����W���M�������@mW`	���x�Y���S�����s�X���s�W�	������A���W�	�����U���z�����������|���������V�����y���_3X,	�����������������X������������������uX�����	�������������d������������B������j����������t�������������X�	�����b����������n������������X��	�S�����������������������������z���g;Y���	�e���C�L����������������K��}Y<	���N������������s�e�����I���|��Y�	���K������@�B������A�C����d���B����^�E�D�FZ�	��B���t���K���b�G�H�L�J�����I��CZ`	���O���������Z�M�N���L�P�Z�	�V���Y�X�L�Q�R�U�W�����Z�T�S���Z�	�^�_�`�]�\�����[�d�b���c�a���e	[<	�f�h�������g���s�i�l�j�k�m�o�p�q�t�r�u�wK[�	�v�[�	���[���	�x�M�y���z�J�[�������{�|�}�~����t�}������{����\	���������������S\�	���������h�j���\���	������~����������@�w���������A�������������z�\	�����G���@��K���u������������B��������������������]�����	�Y���W���������G������������J�������_������d[]��	���k������������������������I���P���������]�	���������������������������������r���������v���x���C�������]	���������������������f�������������!^�	���������������B���������C��c^�	�����������{�����a�����������z�����j���o����p����^8	�����z�{����������^����������@�B�A�^�	���C�D�E�F)_	�H�G�I�����H�Q�J�K���Z���������O��k_0	�L���M�{�a�`�N���O�P�R�S�U�Q�T�����V�W�X�Y�_�	�Z�\�[�^�a�]�_�`�b���_�	���c�d�����e�]�n�f�g�y���h1` 	�����w�������m�����l�j�k�i�w�n�o�p�q�s�r�xs`d	�t�v�R�u�����x���y���z��`��}	�|�~�{����������������` 	�����[�9a\ �	���������������������E������{a� 	��������������T���S�a� 	�@����������������D������a@!	�����������������L���N������Ab�!�	��������������I�����������~���������b�!��	���������������k�����������������h�������������V���bH"	�����L��������������c�"	�������������P����Ic�"	�����������������������������������c,#	�����D�C�E�L�@�A�����B���Q�J���F�K�c�#	�H�G�{�L�M�N�I���O���S�T�Rd�#	�Q�W�P�U�V�Y�X�[�\�]�h�Z�����^Qd($	���_�`�a�dt$	�b���c�d���d�$	�e�f�g�h�k�i�[�j���l���m���n�p�q�o������������e�$	���s�o�t�u�v�����w�������x�z�y�{�|�}�~�������Ye$%	���C����l���@��e�%	��V��������������������e�%	�����s�f,&�X��$��x�4��X��4����������0�(|�\� T x � 8!�!�!@"�"�"$#�#�# $l$�$�$%�%�%$&H&afP&�f��@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���X'��������������������������������������������������������������������������������������������d(����������������������������������������������������������������������������������������������������������������@�A�B�C�p)�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������|*��A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����+���������������������������������������������������������������������������������������������������������@�A�B�C�D�E�F�G��,�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������-�������������������������������������������������������������������������.����������������������������������������������������������������������������������������������������������������������������������/�������������������������������������������������������g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������0�����������������������������������������������������������������������������1�����������������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O��2�P��������������������������������������������������������������������������������������������������������������������������������3�����������������������������������������������������������������������������������������������4���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�6�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������7���A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���8���������������������������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�$9�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~���������������������������������������������������0:���������������������������������������������������������������������������������������������������������������������������������<;�������������������������������������������������������������������������������������������������������������������������������[�H<�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�����������������������������������������������������������T=���������������������������������������������������������������������������������������������������������������������������������`>�����������������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�l?�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~�������������������������������������������������������������������x@����������������������������������������������������������������������������������������������������������������������������������A���������������������������������������������������������@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c��B�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~����������������������������������������������������������������������������C����������������������������������������������������������������������������������������������������������������������������������D������������������������������������������������	�f�E\(h)t*�+�,�-�.�/�0�1�2�3�4�5789(:4;@<L=X>d?p@|A�B�C�D�EF�g$F	��Ig�F	���g�F	�s�~���������B�Y�a�b�c�e�i�l�u���������������������g�F	�I�����������i�j���{�C�|�D�^�O�P�Q�R�S�T�U�V�W�X�F�G�������H���`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�m�_�n�O�Q�dG�M�����������������������������������������������������o�b�p�`	�������������������������������hpH��������������������������������	QhxI	������P����hJ��F�F\GhHpIJ(J�h0J(�i\Jw
\JIi\J��������� �(�ؠ`���,�l��H'P'�FTJdJlJtJ[i|J@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmmmmmmmmmmmnopqrstummmmmmmmvwxyz{|mmmmmmmmmmm}~������������mmmmmmm��������mmmm�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWWWWWWWWXYZ[\]^_`abcdefghijklmnoWWWWWWWWpqrstuvwxyz{|}~��������WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW@�	

 !"""""""""""""""#$%&'()*+,-./0123456789:;<=>?@ABC"""""""""""""DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""@�@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	

 !"#$%&'()*+,-./0123444444444444444444444444444444444444444444456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee@�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������@�	
















































































































































































�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx��������	

 !"#$%&'(��	
��	

 !"#$%&'()*+,-./012��	

����	

����	

������	

��������	

��	

������������	

��	

��	

 !"#$%&'()*+,-./0123456789:;<=>?@��	

 !"#$%&'()*+,-./012345678��	

 !"#$%&'()*+,-./0123456788889:;<8������	
��	
������	
��	

 !��	

��	

 !"#$��	

 !��	

��	

��	

��	

��	��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'��	

��	

��	

��	

��	

��	

��	

 !"#��	

��	

 !"#$%&��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
����	

��	
��	

��	

 !"��	

 !"#$%&��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"��	

 !"��	

��	

 !��	

��	

��	

��	

��	

��	

��	

 !��	

��	

��	

��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

 !��	

 !��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

 ��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	
��	

��	

 ��	

 !"��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

��	

��	

��	

��	

��	

��	

��	

��	

 ��	

��	

��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	

��	

��	
��	

��	

��	

��	

��	

��	

��	
����	

��	

 !"#��	

��	

��	
��	
��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

 !"#$��	

 !"#$%&'()��	

��	

��	��	

��	

��	

 !"#��	

��	

��	

��	

��	

��	

��	

��	

��	

��	

������	

��	

��	
��	

��	

 !��	

��	

��	

��	

��	

��	

��	

����	

��	

��	
��	

��	

��	

��	

����	

��	

��	

��	

��	

��	

��	
��	
��	

��	

��	

��	

������	

��	

��	
��	

����	

 !"#$%&'()*+,-./0123456789:;<=����	

��	

������	

 !��	

  !"#$%&'()*+,-./0123456789:;<=>?��	

 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!���������	




; <I��<lI��dLJ��|zRx�$�H��0FJw�?:*3$"DI�� \�I��$HWGNU�P��!���J�RRj��R�����RRj��R���(
���!��!���o`��
��!0��h	���op���o�o\���o�!`pGA$3a1(�GA$3p1094`�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignemoji_sjis_softbank.so-2.7.8-141.el8.x86_64.debug3e��7zXZ�ִF!t/��
��]?�E�h=��ڊ�2N�H7�n ���OY��)c�5���2���/��&_"N�ǂn�]�6��wUzl5���J�#�|��r��ɐ�8Y�;yʱzA;��eг�+���)X�H�s�Z�@H�Nfe9�ͺ�L��af��h>���А�T��%��慤*�|&�_��U�mN=pЕ�e��v�3�>q�
�4qO[�nk���:��p����&Y��n��a�Z�gڙ`���?1�^�2�]��?����B>Eq��wA��f����oO�mVNCwӒn,�͘��>��{�F�78����Il����GBYAC�
��޷o��L
,���ˍv�)�֘3Fl��
j1*�L��
��GQb�I�n�D|��x�ߪ���x�0��H?Y�fL?�A�c��^�(�zj��t2�d��ۜ^�q�k��(�X����Ou�����I��>5����È*6��n
ViQ\�H�v;A�����C5��Q9�ӛ�Ŀ�f��*9I�����cy��*-��[��S&=]�s���|���)�4x!��.�2�jX܌Q�p<�BJ�;��s��]U���[#�{�I����ǥ|����%��
�g(�!�!�Ą&Ck5��1v�JNͬF���s]�=7���V,)/Cw8�}a��e�֨{*�zT\����H�����.v�~�Al��n�AP<Ngi�i�Ib���ƔNx���
A�N<�/�m�\<g�	���>V�NӮNԘ+�
�]���Y ��nN�f��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���o\\E���opp T��h^B��0h((cPP0n�� w���}��
���r� ���$�8�8�t����� ���!�����!�����!��` ��!�����!�� ��!�(�(�!(��0�a(��
�8T�@��+PKMH[V���>�>lib64/ruby/enc/trans/iso2022.sonuȯ��ELF>�@�7@8	@�� �(�( �( X` .. . ��888$$���  S�td���  P�td�����Q�tdR�td�(�( �( 00GNU׏!�m��L3m=oͱ�C�w��B 	BE���
�_��|�qX b , F"�(0 UPl�00 �(0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_iso2022rb_register_transcoderlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��( ��( @�( �( ) `) h) �() �P) �X) �x) `�) ��) P
�) ��) `�) p�) ��) ��) ��) �* �
 * �(* P
0* �@* pH* xX* �h* ��* ��* ��* ��* ��* h�* x�* �+ �0+ �8+ �H+ �X+ ��+ ��+ ��+ ��+ ��+ �
 , �(, �8, �H, ��, p
�, ��, ��, ��, �- �- �8- �@- �H- P
P- �`- �h- �x- ��- ��- ��- ��-  �- P�/ �/ �/ �/ 0  0 ��H��H�y$ H��t��H����5�$ �%�$ ��h�������h���������%]$ D���%U$ DH�=Q$ H�J$ H9�tH��# H��t	�����H�=!$ H�5$ H)�H��H��H��?H�H�tH��# H��t��fD�����=�# u+UH�=�# H��tH�=~ �Y����d�����# ]������w�������1��fD���H��tk�>�t><tZ�AB�$L�Af����F��A��VI�@H)ȃ�A�P�fD<t�$L�A�A@�f��DI���I�Ȅ�tA�(�ABL�AfD�	��I�@H)ȃ�A��ff.����?��HD��f.����F��F�A��f�������A�F�A��fD��D�H��tb�<�t;A�����$�ABL�Af�����A��VI�@H)ȃ�A�P�f�H��A��tF�(�AIL�Af����E��t+A�(�ABL�AfD�	��I�@H)ȃ�A��DI����I������?SI��t#H��u�>�tpI��L���-���[I�L��L)��f�D�_L�
DA��C�D�H�LȀI��tA�$�ABL�IfD�D��@�E�M�QH��tsA�A�D�F�7�P_��>��I����I��s}@��t�$A�BBI��fA�R��������H��I��H��fA�B�L��[H)��@�>�u��^���t<����v���A��JA���h�����A�AL��[H)��@�GL��[H)�@�w�Ã�A�AL��[H)������1���tH��t�(�@BH��f�P�H)����GH����T�H��Hc�H€tA�$�FBH�NfD��H�Af�릐���?�t���!<^H���9H���ff.�@���>t'�?���D����Ȁ�A�F�Ȁ�A��f��~(�T�t%��@t8��Bt1����1��f.���Bt1���Ju��1��fD�1��f���1��?t�(�FBf�������<t5���}<tI<u�����!��?H���H���fD��f���P߀�v]�Pи��DvP����B�<v>��-t9�Jи@��Dv܃�y��H���9H������_<?H���H���D�@�f����<ta<tA<t-���t
�x_@��>wl��uh����Ȁ�A��fD�1��f.��~(�T�u��It�Jt1���Bu8�1��fD��@t+��Bu)�1����Ȁ��F�Ȁ�A���1��f���H��H�= �L���H�=U �@���H�=� �4���H�=� �(���H�=Q ����H�=� ����H�=Y ����H�=� H������H��H���!#!V!W!"!&%r%!%#%%%'%)%c%e%g%C!<%"%$%&%(%*%+%-%/%1%3%5%7%9%;%=%?%A%D%F%H%J%K%L%M%N%O%R%U%X%[%^%_%`%a%b%d%f%h%i%j%k%l%m%o%s!+!,CP51932CP50220CP50221cp51932EUC-JPstateless-ISO-2022-JP
$,��H�PXY`XYt	�����	��H�����
���	H��@BBJ$(!~����BJ��;�������������$��8�L��`��������������0����P������������zRx�$0�0FJw�?:*3$"D8� \�
p��������������0�X�IH�\
L�
Hp
HG
KKt�o��!0��~DX��� Xd����l���������lH_GNU��@�( `h���E��`�P
�`p���E���
�P
�px����E����hx����E����������E�
������Ep
��l���E����P
���8���E�� Py��`
��( �( ���o`��
�0 00��	���oh���o�oP���oC. ��GA$3a1`�GA$3p1094��GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY��GA+GLIBCXX_ASSERTIONSiso2022.so-2.7.8-141.el8.x86_64.debugp���7zXZ�ִF!t/����]?�E�h=��ڊ�2N�``v ��C��t�'�'�	��A�A"���?M<�'�T�AQ��*a#/N��S&/\�D�A�PW�7�a��&�k�>�b�H���]Z<c�{��S/��[��u>un'CO�����:����>vS�hBq
�ҠO�Ώ	����!Y,���푔��ޒM�DW�����2;`��h́g��ܚtkR�]B��|�d�D�Q��4B�{d%���
�X�&Ԫ�ft��9����8EfQ���6�1ŝ�g��z֭�'�eNO$D��6��<6�'K��e��>�J�NV�� ��i-��'q�R�hh�-m3��o���Ӈ����o��%�
�87��@
T1�NXa=����౑S�Sl���q~f+y������ݕ�M��}M-X����U�(��A�9a��t��Ԟ��� ��4ބ���v�u����ePlL�EQ���,��MBg��'~��-V�J3�-�R�G�E�6��	;����o�q:Cܴ�3["�zF�K�XtnNzά_�+�?,�.CX�5��1�*���p��%�/�a� �zQS�yaW�X�
���6�	��m�k���I6e`�J��:���=3��yc�Kr�VXʳ_��$^!����6}��µ��Ynk��1��?��)�v�wN�*�xQ�<�E����kyx�F�]Ǿ�{<�.�޿�)������9��&�0dm�KS% ���.��9J;M1(��i-])�^ݠ�/��HJA�w
kG�y8��,�r}�˜�yc���9L�6�O��, ã�����6j��*�$���̠4�,��K���1i�S���ӆq��a�Ŀ]ꟳ���n2@�D@n�`�,C���d����)whO�s]N�v�u{
@�*Hx%b��{W��2%&�*:_��"�R]�����	�a�6�~�|.m��X
���!~�0"��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0���8���oPPE���ohh T���^B000h``c��0n�� w���}��
���� �����00���� ��( �(��( �(��( �(  �. .���/ �/ �0 0(�(0 (0�00`(0D
l2,�2��6+PKMH[�����.�.lib64/ruby/enc/windows_1257.sonuȯ��ELF>`
@�'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td@@@LLQ�tdR�td00 0 ��GNU�.��Vu�$N�H�jR�B-.��@ BE���|�qX��� $U���� �Gg��, F""8  5@  )8  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1257rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h � �� P�  �  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�	���x����ff.�f���AWD�H��AVAUATL�%�UH�-�SfDL�I9���L9���M�YH�XL�E�	E��A�����A����GE��F�lufA����A��@��E��E��A��A���A��I��I��G�4H��E��L��fDD�E���\���L�A���I9��U���[H)�]D�A\A]A^A_�A�� ��E���SL�XA��A������@sE��L���f�A��@tZA�� tQE��E��A��A���A��i��A����FA��A���I��A��H��E��L���0���I��E��H��A���L�������I��E��H��A�����A���L����f�A��u7I��E��H��A����A���L������f��@SE��L�������E���sA�sH��A���A�����DI��A��H��E��L��A������i���A�I�^���fDI��A��H��E��L��A�i�9���A������.���fDI��A�� H��E��L������I��E��H��A�IL�����f���H��I��I�ѺQH�5����!����H���@����I��I�ѿ!�H�5�����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�I�����H��H���Windows-1257������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@���������4��4�����4������0���0��0�����0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L����h��������������� @���4����HzRx�$ ���PFJw�?:*3$"DH���@\0���#DpL����F�H�B �B(�H0�H8��
0D(E BBBA����,HL W���"����B�@���GNU��
@ �P  PF�	
�0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSwindows_1257.so-2.7.8-141.el8.x86_64.debugՏ,��7zXZ�ִF!t/���d]?�E�h=��ڊ�2N��J��]�Z4�5�ܹE�2��B^k���w+ ʧ���F��T�qi!�n��[z�D��+�"�c�i9���OK�W���q�I#Ԕ,V�/�;aѽ�W˗�t�S�Sd(W�D��:f\���8�mT�n��%�K=4#��"�mzL\�
���ri�����\i1P�(눠���`�J=@-+���b��Z�]��|�@��Utfޕ�E��Y�͂���m�P�N��z�t
�ϹU��*v��0_�\�$��USE5�b�
y��ik�=o�Y2o�y�Eeڳ��~�1c�|a��~��"���^d^`]*�@g�����^��O#V�9�@���I�g-���Mmb�[��
j3I���;��˟E
�Ig=�M����%�Z�p;��7�<����o
D��]�p(��De�?؃A�3>�\^��HP��Hڄ9���Zy��왩���A��&/놃�g���5l��A��T�s��������`�%b��:�7�@�(!��
z~�vc;����%�M�n\��&(�"�o:N�gE=A�y)��M���1�o�"���{�U�[+�4�0\����<X	/a���\��t+a�E[*��/�\U��)�S*���p�=Mn��3�F[�������/��cz(�f0�����Q��U�Z�H�t�B%��,M����
ga)�YM�VN����V����)�!SS��
~>ڨ����/$e�ma�X/	�|�$�9��,i�I1o�h�kp?7�=�^B���OL� 
�6��1��vc���!
���:=<'�%^Q��8�������#��v0��X&�VH�Y�u@~�&k�͡@�ߞ���MfX2��c���E�h��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}��
�@ �@@L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�P&+PKMH[����H?H?lib64/ruby/enc/euc_jp.sonuȯ��ELF>P@8@8	@� �  �,�, �, `h �-�- �- ��888$$� � �   S�td� � �   P�td�����Q�tdR�td�,�, �, GNU�/v�����:&�.t�����:�@(BE���|�T5	�qXU gN^ +����, zF"�P0 �X0 B�P0 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeOnigEncodingASCIIonigenc_with_ascii_strnicmponigenc_minimum_property_name_to_ctypeonigenc_apply_all_case_fold_with_mapOnigEncAsciiToLowerCaseTableonigenc_ascii_get_case_fold_codes_by_stronig_is_in_code_rangeOnigEncAsciiCtypeTableInit_euc_jprb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	��, �, �- -  - (- �0- �8- �@- PH- 0`- h- @�- ��- ��- 
�- p�- ��- ��- �
�- `�- �
�- �- p
x- �- �/ �/ �/ �/ �/ 	�/ 
�/ 0  0 (0 00 
80 @0 H0 ��H��H��% H��t��H����5�% �%�% ��h�������h��������h�������h�������h�������h�������h��������%-% D���%%% D���%% D���%% D���%
% D���%% D���%�$ DH�=�$ H��$ H9�tH�f$ H��t	�����H�=�$ H�5�$ H)�H��H��H��?H�H�tH�E$ H��t��fD�����=�$ u+UH�="$ H��tH�=! �Y����d����]$ ]������w�������H��
H�
��xIL�GL9�t`D�GH��H�J���x;L�GL9�tRH���OH�1��<
����������fD��������D��f���������D@��f�H�)
�����H�
���������I��I���Q���H�A�
��~/H9�v*H���f.�I9�vH���r����r)�9����f���I��L�NH����t�����L��L�N���t���(L��I��@�8L��L������M)�H�L9�u	D���DI�p�����ff.�@����Br<����~��	����D����v7������wH�r H��H�1���������f.�������f.���I��AWI��AVI)�AUE��I��ATI�F�UH��SH��H�����6�EH�
@��1H���D���wkL�
���M�$YE��xXH��I�A2$���uBH�=c! J�T5L��H���{�����u'C�<4u L�
YA�DYH��[]A\A]A^A_�@H��L��H��L��[]A\A]A^A_�T���@����I��I�ѿS1�H�5F�A���������v7�����w0��%����=���t�瀀���p��������E��f��øo����@��?\����v%��_Y����v��_X���G0��!C��f.��G �ff.����H�>���xH�c  ���H��UH��I��L��SH��L��H��������x���H��H����;���Hc�=p���t	I[]�����ff.����AUI��A��ATL��I��UL��SH��L��H��H���������H��L��H��A������D�ω���A��\����v5A��?Y����v)A��/X���� ��A9�uH��1�[]A\A]��A�Q�A9�tGA�D$�A�$A�D$H��[]A\A]�DH��I��L��H��D��[L��]A\A]�b���f�A�$�A�D$A�T$H��[]A\A]�fDA�Q��f���I��H��M��I9�vEA���_<]v��L9�sI��A���_<]v�H��L������H�L�I9�rM��I)�I��N�L���D����w��v2����t@1���t9Ã���wXH�� H��H���C���H�9 �����x���������w6��%����=���t"�瀀��1�������ø�����f.���1�����H�5U H�=.�����H��H���EUC-JP













































































































������
�"hanlatingreekhiraganakatakanacyrillic����ѧ�������ئAZaz��ڣ��������������������������ݎ����������£�ã�ģ�ţ�ƣ�ǣ�ȣ�ɣ�ʣ�ˣ�̣�ͣ�Σ�ϣ�У�ѣ�ң�ӣ�ԣ�գ��֣��ף��أ��٣��ڣ��������¦��æ��Ħ��Ŧ��Ʀ��Ǧ��Ȧ��ɦ��ʦ��˦��̦��ͦ��Φ��Ϧ��Ц��Ѧ��Ҧ��Ӧ��Ԧ��զ��֦��צ��ئ��ѧ��ҧ��ӧ��ԧ��է��֧��ק��ا��٧��ڧ��ۧ��ܧ��ݧ��ާ��ߧ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;���� ��P�����@���$��8 �L� �p�����0�@���@�zRx�$���FJw�?:*3$"DH�p\`��p��N�(�a������F\����I�E�E �H(�E0�D8�D@�
8A0A(B BBBED8J0A(B BBB L�4X�LH��4 \��ti�J�p
ADp��F�H�G �D(�M0Z
(C ABBHd
(A ABBFD
(M DBBG[
(A ABBG���[���GNU��- ���P0@��
p���
`�
p
���8

�, �, ���o`x�
�0 ��	��	���o����o�o^���o�- p
�
�
�
�
�
�
GA$3a18
%GA$3p1094GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�GA+GLIBCXX_ASSERTIONSeuc_jp.so-2.7.8-141.el8.x86_64.debugB���7zXZ�ִF!t/��/�]?�E�h=��ڊ�2N�a�Ӈ�sዋ?R�+�8�x�·����`���A��4E4�h�5��:0�#���$H �'Z�z�"��,�ҋ�:0d-���꡿Zf��@��"�4ظ8��1_���$'���aq˸��Ҟ�;<U�'A��E��I>
Z�d�1�
E8ͳ�,VΕE��ϤB�<����.osM���n�Jkc0���CyV�ڎ�YJ���l��V�ߴJ��wXZ����C��R����>���G�@-�t�hXd�W�^��NԵ&�*m<lO������]��[�� �봍��	��j�=��w��1�x�n�4��P5��� �.u+Ũ���]���`�yB
b�g���=��m�x�����zg(-,�쀵���5g)LR��i\ECcM��Yʸ|/#7���5��kT�(z�=�y��q�\�5B5��:�>ЄT4`b�;<,O-�+|~�ؤz.���g=1y��X��Ic9�6�k��M��#�
��C-�/؎!3��ZKqH'�͓S��q[9������,�o��,}�����=ƾ�&&Dmj/�x\J���7��p9��˦� �J�1��鹈�5�P�e��ۇ��ߤ��"
?��/=Ƹdv���]!���9T��
1�G7����z�A�|�e�M��_�^�yU���;�˝2�K�@�J�T�D7i���+��2I����q��"P)�H���t;��u2k_�񷠡�B/X�H7���G���X���9l���qb�NES:��U�o)�F󰂓�Z�������k�ƚ�>��0aS�f-s����	�9~�X�q�6�(�s;"2���Sm�ݧ�Ɵ�O�S�r�F.�
�hx� �Q���#M�h#%�d
M�|���7H
�hL�;��i�^��l�auI"/7��w����q�.u�t��Mp��^nܪ̉#��2�9dp�*Eul�h�Z��[����X����� kLDZ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0xx�8���o^^(E���o�� T���^B�	�	�h8
8
c`
`
�n�
�
pwPP�}
�@@� �����PP0�� �  ��, �,��, �,�- -� ��- �-���/ �/8�0 0P�P0 P0�X0`P0D
�2,�2�6+PKMH[��.�.lib64/ruby/enc/windows_1253.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td@@@LLQ�tdR�td00 0 ��GNUFO��S��![�OLRmU�"��@  BE���|����qX $U���� �Gg��, F""8  5@  ��
)8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_windows_1253rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	:0 8 �
@ @ h �  � �
� �
� P� �` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������H�H�����H��ff.�@��1����w��H�����x����ff.�f���H��D�L�AUATUH�-�SH��L9���fDI9���M�ZL�E�E��A�����A�����E��A���A���t:A����5E��F�$kfA��tUA��@tLF�T-A���H��D�P�E��A���A���EE�L�L9��_���[H)�]D�A\A]�f�A��@t�A�� t�A��A�����E��#���A����A��%�fDA�� t7A��A�����m���DA�� t?A��A�����M���DA��A���5���A��A���#���A�����A���
���A��A������A��������A��������A���tA��E�b�A�� A��EF����A��������f.���H��I��I��1�QH�5����"�|���H��������I��I�ѿ"1�H�5V�q������H�5� H�=�I�����H��H���Windows-1253��������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@���4���������������0�4��4�4�4��4��4�4�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������������ܣ������������������ܷ��߻��������������������������������������������������������������;L����h����������@����@���p���$����8zRx�$ ���PFJw�?:*3$"DH���@\0���!pL���#4�h����O�B�A �H(��
 DEBC�0���)HI W�D����P���GNU��
@  �
�
P�F�	
�
0 8 ���o`��
]  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�
GA$3p1094 �
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY AGA+GLIBCXX_ASSERTIONSwindows_1253.so-2.7.8-141.el8.x86_64.debug�RSl�7zXZ�ִF!t/���\]?�E�h=��ڊ�2N��J��]�Z4�5�ܹE�2��B^k���'��Ĩ䡘������Ȇ zn�}��2kЄV`���� �e���yc��R���$��}�5V�0��R��U�:�L��q��F��F���|��c�M�7
�kx��O�jI׿��m��	/D/��'w�O��㪔f	C�>0�i��$�7�
T[�x���מH&]Љ�p�m�Z��$�|j�kCvDd�d=pTq1e|
�P��V�	��χ��fs��̦���!a%i)/�^�Q
����6�b��ZZ֞�4���1L���4�2��,�:�b�c0B�!�+�O0��j��I'�et8X$'Tb����o�E��k��;CD��S��0��\?Q���M{��k%D�U��hI�x���[�O_|�G_����u�
	�x_,F$ɘ͒�5T�f�^i���;~���շ�jjI�p�˚�I��C�-]����6�n�'D���z�7�C�=����p��¼�eRA��dBI��:��c@�*y�#˵s�rpB��nBr��T�g�X�<L�I��5�ݕ��'��k�F�α'�n�x�];8�#R�b
*��2T����JY�a�D+�еd����	!:�HP&
�x��+�*G��{�݀��#��]@����a�g2��K�l^�[w�� W�!��
)_	��,Qy��&�J�´)�>p�U����'X�`,�t��S뻸P&K$����9	g�[Z��y�� ��MH� ���гK�pՓC&l�?}���z8��:j-J�[���Yw�/5g��+|ޱ4|-��>�,YP/og��mPx��O��m��SX�l@�����Ჱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��]8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}�
�

�@ �@@L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�H&+PKMH[Gw��h.h.lib64/ruby/enc/iso_8859_11.sonuȯ��ELF>`
@('@8	@xx 00 0 � �� � ��888$$XXX  S�tdXXX  P�td�
�
�
,,Q�tdR�td00 0 ��GNUyS"�7�i�.b�_� ��)u�B BE���|�qXa���#� ���f� v�|1S�, F"_(  r0  f(  UP__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_iso_8859_11rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_ascii_mbc_case_foldonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_single_byte_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5Uui	w0 8 �
@ @ h ��  ` 
x � � � � � � � 
� � � � � � 	� �      ��H��H�� H��t��H����5� �%� ��h�������h���������%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=M u+UH�=� H��tH�=N �Y����d����% ]������w������1����w��H�i���x����ff.�f���H�5 H�=������H��H���ISO-8859-11@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0;,p���H����p����������zRx�$ ���0FJw�?:*3$"D(��� \�#p���GNU��
@ � KU��	
h0 8 ���o`��
�  0�	�	���o����o�oZ���o�  
0
GA$3a1�	uGA$3p1094 gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_11.so-2.7.8-141.el8.x86_64.debug��̠�7zXZ�ִF!t/��?]?�E�h=��ڊ�2N��J��m.�󜕲Y��q��#&?ǰU�#�=���
i:(�,�O�̆��y�,ÞMeVS�����';��~,l��5}�"8�7[�NC�MZ>�8|_��Gfa��ZwˎE��n��p*``��Z4}��>��N�C��h�c�ە��̫�����ԡ�E���}�\�!���Z�*|S)\W>���&D�<މ$�:'��_�[������J��?�� �"��� 3
�GNԀE����;S��H�V�������'��\�J= �C���q���lbVH�gXc��%�$�9<�g[�'�&������`��$��߂GQC'��%�ob����7�\��Q]�
G�5	��˅�;8:%����4
�b��#y���Q	c�i��|�m#�k�+�Y��p����l��΋�$��s���Ղμ21�X�����ώ��������o�ޣ(�[��ZzY@ca"ߔܲ��eϚ�ϠuŸ�ܨ�ۓRTt�/�c��k
�,a����],��]�!����u~�I�����È?�c��b���i|y��-�4��.�����μ��ST�=����p���6Y��-\��T�>�B�@�?��fṚ�`���j��.�PW�c�0�<,��z@DH#��KU��n�n%�o��x;̥	�9C�В69��@:
�Բ6�Ѿ���n��Ia
�/F�cq���@�����氓�ip���'ʧm)��"�&;����Z<7�3J��ԏ��j����w�ٱ�g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0���8���oZZ.E���o�� T��^B�	�	0h�	�	c

0n@
@
 w`
`
}hh
���  ��
�
,��
�
��XX �0 0�8 8�@ @� �� ���� � �   (�(  ( �0 `( D
l"0�"\�%+PKMH[��oO�.�.lib64/ruby/enc/utf_16be.sonuȯ��ELF>�	@�'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td


ddQ�tdR�td00 0 ��GNUv����捑c/�lo��!��@ BE��4 ੻�|�qX ��� h���B, $F"U�8  ���@  �8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_unicode_get_case_fold_codes_by_stronigenc_unicode_mbc_case_foldOnigEncAsciiToLowerCaseTableInit_utf_16berb_enc_registeronigenc_unicode_apply_all_case_foldonigenc_unicode_property_name_to_ctypeonigenc_unicode_is_code_ctypeonigenc_utf16_32_get_ctype_code_rangeonigenc_always_false_is_allowed_reverse_matchonigenc_unicode_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 �
8 P
@ @ ` �h 
x � �
� �
� @� 0� � �� � 	� � 
� � � � � � � 
     (  
0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%m D���%e D���%] D���%U DH�=Q H�J H9�tH�� H��t	�����H�=! H�5 H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=� �I����d����� ]������w��������O�����Ȁ��t�D�W�O��
%���ʁ�	��ff.�f����������ff.�f�����L��I��H��H���������H�M���xx�8tI��H��H��L���H�����H�n �@��A�H�Ð����ƒ���tH)�1�H�������������<�u9H)������H��t0H��t5�����H��t"�G��<������D���fD������f����G��<��������D��H�W1�H9�v�
t�f.�1��?����������v4������
�����f��f��f�~f���f�f���f�>���H��H9�v.H��H)�H��H��?Hʃ�H)�H������H)������t�DH��H�P�H9�HG����H�5u H�=�����H��H���UTF-16BE;d@��������������������� ����p������$0���8����L���`zRx�$����PFJw�?:*3$"D��@\���Cp�����������O�X��������)��M�,���P�h���GNU��
P
@ �
�
�
@0����0	
�0 8 ���o``�
�  `��(	���o����o�o^���o� `	p	�	�	GA$3a10	
GA$3p1094�
�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS�
�

GA*FORTIFYutf_16be.so-2.7.8-141.el8.x86_64.debug�*�7zXZ�ִF!t/����]?�E�h=��ڊ�2N������!�eoة��!�3;�zA"���7�}G��g�`���9�m7f�uz�ʫ���0V���GPnp%;@�x	T�9�߶�f�t�Cu�w���&ɣ�el�0{�s�VSM�h�ڂ��@���s)�b#X�{��i4r��to�V�HL����R<p�M�@��W+���p*YjHaӴUM.����r���zq��j���+"�xɡ�
��\+|:�b=#��.��{p���80@���V�'#z�+��矲L`�ɫgU��l75�ѨO#$°.	�̿zً��NU�Hs�8H�c.����X��<"��i�pM�}�fo"���Ae7��z�v����ɛyS?�XW�z����v��1X���� ��ܶ�qm0 �8���������EC���t�SS\��)���Ҕ�Y�C�%�BK���0o��5>���Y�Z7fo`3!�p�`�}^��)lD}{�l�H��t�ӎɸ[��L����d��?�T:�=���g���F���ʳ]����x��}��x����4�ൡ{tc]��G�BW:S�i��iU�*u����"�C~�L�(�3�gHLNg�s[a�h7>9h)���J�I:�����\�’�_����O���S�w�"�uA��"��b=S{��4!!,A�=?�!՗~?fs�y	c%إzJ�6�Dpc�;���8f�q2�"˪�Nu����ف�zk����v'���1Y�.�B��#�5��b��>Y����ͫ�}Am�&r�
�L@���w�6X���§�CRT�b�S��"�n��� 8�A+$Xf[S���:)�>��e�MDr��dQFP�ΣU�K��n��/�<^۷WO��������3���w�IP�$���E�L��&8
�6N�zR/�	���t�E�Yju�/O7T/%������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``�8���o^^&E���o�� T��(^B��`h0	0	cP	P	Pn�	�	@w�	�	}��
�2

	�

d�x
x
��� �0 0�8 8�@ @� �� ���� �(�   8�8  8 �@ `8 D
|",�"�t&+PKMH[Cd�W�.�.lib64/ruby/enc/iso_8859_15.sonuȯ��ELF>`
@�'@8	@XX 00 0  �� � ��888$$888  S�td888  P�td���LLQ�tdR�td00 0 ��GNU�+�ķ�Ͼ2_�Gfr�('+c@�B  BE��d��߻�|�qX #U���� �Ff��, F"!8  �p4@  (8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_15rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	90 8 �
@ @ h ��  � �
� �
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�����x����ff.�f���AVD�H��AUL�-{ATL�%rUSL�L9���I9���M�YL�A�L�XA�ف�����݃��@���tB�����A��C�,tf��t
A��@���@tA�� �(�L��D��I�Á��H��E����c���A���L�L9��\���[H)�]D�A\A]A^ÐA�� t'E���SL�XA��A���t]�@sE��L��뮐A��uWM��D��I�Á��L��A�����|���f.�M��D��I�Á��L��A������U����@SE��L������D���sA�sH�����A��� ���fDD��L��G�L5I�Á��A��H�����@E��A���A��D�Ձ��tD���t%���tK���tZL��A�� I��E��H�����M��E��I��L��A��������M��E��I��L��A������{���M��E��I��L��A������d���M��E��I��L��A������M���ff.���H��I��I�ѺQH�5����"�9���H���@����I��I�ѿ"�H�5��.���ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=�����H��H���ISO-8859-15��������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�������4��0��0����������4�0���0��0��4�0�4��4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L�h@����@����p����������@���,����@zRx�$����PFJw�?:*3$"D����@\����#<p����eF�H�I �H(�A0��
(D EBBB����,HL W��"����B�H���GNU��
@ � �
�
 P
E�	
�0 8 ���o`��
\  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_15.so-2.7.8-141.el8.x86_64.debug��v�7zXZ�ִF!t/���c]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k�����).������n�0���s��|����ql�{t�~�\`w4(�V&8�������S�L��U>�
�t?�Ȕ.���=���X�o�?��� ��O���hMk���z�6�7䶶���A|�� )�ʼnØ�d{���)�����uua�"��{�$���Il�ӵ�F�Ļ��`�*�U�Aۏb�g���ٺA*��pI�x<>d�ʥ��q�A�?α�ߚ�=�0T��0H�]1�O?Bw.��|A`���+�|bmveo�6�����|�t?�Q؃ ��y�!
L! ���o�9je��PƁ\�I�P6���6L��v�~�ŒkK���.�u��WLp8��7quh�D��ɶ�r�K��J��{���"O�T��I���O<N��\6�w���JԀ�uȸ��D�_�Z=���c6���۹������dvE��=�*�:��*&u���4�/�v���h���f�M�ӊb�n�����dYcgv0V4�ՖԖ��Bc�/�9Q���n�B����CL6��:��F��o�5{b��'�
�� �X�/�k=��!���Kգ��c��k+���T%PᏧh`�`[IbCm�c�<[4E�z�k:�z����4��,Jt�_��տ@��H(T̓k�@+���Z���UJ�7?�j6��^3��[m��Z��#n?FD\�K�.�26eDA�Vl�ס�����fO��
�ae�	�a�55��;"e
�ډ�M@���B�ݮ�葂���O6C��n��?,��GQ9R<N�J0��bH��e��k�S�:�Q��w��Oi�%t:�ˏ2����%��
�����Pj��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��\8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
'}��
���@ ���L�00�88 �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�P&+PKMH[�M^h.h.lib64/ruby/enc/iso_8859_8.sonuȯ��ELF>`
@('@8	@xx 00 0 � �� � ��888$$XXX  S�tdXXX  P�td�
�
�
,,Q�tdR�td00 0 ��GNU07!Çu�|ν���F��@ �BE���|6,\�qX"� ���e� u�{0R�, F"^(  q0  UPe(  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeInit_iso_8859_8rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_ascii_mbc_case_foldonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchonigenc_single_byte_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5Tui	v0 8 �
@ @ h ��  ` 
x � � � � � � � 
� � � � � � 	� �      ��H��H�� H��t��H����5� �%� ��h�������h���������%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=M u+UH�=� H��tH�=N �Y����d����% ]������w������1����w��H�i���x����ff.�f���H�5 H�=������H��H���ISO-8859-8@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@���������������������0�����������0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0;,p���H����p����������zRx�$ ���0FJw�?:*3$"D(��� \�#p���GNU��
@ � JT��	
h0 8 ���o`��
�  0�	�	���o����o�oZ���o�  
0
GA$3a1�	uGA$3p1094 gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_8.so-2.7.8-141.el8.x86_64.debug
y;O�7zXZ�ִF!t/��?]?�E�h=��ڊ�2N��J��m.�󜕲Y��q��#&?ǰU�#�=���
i:(�,�O�̆��y�,ÞMeVS�����';��~,l��5}�"8�7[�NC�MZ>�8|_��Gfa��ZwˎE��n��p*``
r*�p��3�!��9TG�0r�����W�;�
d�R�&8l�����W���7��-�'B�-�,�l�z����C�J�~aAd�x�6VV����#�<�
Oe�a���!jO��u��u~�%KZ0�8'�.Bh�2Յ�.��k����`�f]�jN�0�W=)�o+P��&&gݮ���N�2@��(3��/w�������H����9��&��UV�X��r��Pp
�6��e��<�Z�2�Y0��d��8��2M��{��;�$Թ��ݐ
���S�B ������x*�YLO��Ӯ������*ѓ�b��^����F*�y-��+�<,������{LGa ���Z�~fr7<y]-Ѣ����$$(���c$_���6�R��tFm�z�ڔ
������٥�Ya�Ϗ���*�C�QYn�p
�� ���Gw�e���H�y|{�u]�����jp�ģ�]/>��	��n5w�w�Uϫ�~��2J~�"��{Ԭ�u� �0�f�Ջ4��f��$�eh�uo���˓�=��|iK���g�ت�S�$y:Ŭ�H$��tlǟTKt[�o�-K�WY�+�x�K?&�l�m�j��3�'��H	n���I4�tl�i�~l�fTq�N�㗵���7�u���ce��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(��(0���8���oZZ.E���o�� T��^B�	�	0h�	�	c

0n@
@
 w`
`
}hh
���  ��
�
,��
�
��XX �0 0�8 8�@ @� �� ���� � �   (�(  ( �0 `( D
l"0�"\�%+PKMH[KH�.�.lib64/ruby/enc/utf_32le.sonuȯ��ELF>�	@�'@8	@(( 00 0  �� � ��888$$  S�td  P�td���ddQ�tdR�td00 0 ��GNU:�:��f����E�G��x���@ BE��<)᩻�|�qX ��� h���B, $F"U�8  �`�@  �8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_unicode_get_case_fold_codes_by_stronigenc_unicode_mbc_case_foldOnigEncAsciiToLowerCaseTableInit_utf_32lerb_enc_registeronigenc_unicode_apply_all_case_foldonigenc_unicode_property_name_to_ctypeonigenc_unicode_is_code_ctypeonigenc_utf16_32_get_ctype_code_rangeonigenc_always_false_is_allowed_reverse_matchonigenc_unicode_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 �
8 P
@ @ ` �h �x �� �
� �
� �
� @�  � �
� � 	� � 
� � � � � � � 
     (  
0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%m D���%e D���%] D���%U DH�=Q H�J H9�tH�� H��t	�����H�=! H�5 H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=� �I����d����� ]������w�������G�W����W��������ff.�f�����fD���>��@��H��H9�vH��H)�H��H��?H��>Hʃ�H)�H)��fD����L��I��H��H���������H�A��L��D�E��x�xu�xu�xtI��H��H��D���'����H�Q �AB��1�f�A�H��ff.���H�W1�H9�v�?
t��u��u�1�����f���H9�rWH)�H��~^�W�G����G���������(����� ��1���������D���f�������f.��F��ff.����H�5� H�=�9�����H��H���UTF-32LE;d�������������@����P����`������������$ ���8P���L���`zRx�$8���PFJw�?:*3$"D`���@\H���#pd���
�`����\���*�x��������b���.�����t�h���GNU��
P
@ ����
�
�
@ �
���0	
x0 8 ���o``�
�  `��(	���o����o�o^���o� `	p	�	�	GA$3a10	�GA$3p1094�
wGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS�
�

GA*FORTIFYutf_32le.so-2.7.8-141.el8.x86_64.debugY}��7zXZ�ִF!t/����]?�E�h=��ڊ�2N������!�eoة��!�3;�zA"���#���aF�U�``bF��K�R�G�M`��h+�em��(evL߈���(���6��ȋ��|�q&Aj�&��w��V�(�\�;���Ot��
�X�j�
�c��(f���!^���_
:ʊyo�mc��h�S]��!ɣ�S/�F	|qM�(eڙ��#3y��y��������A+��xWƣ-N.aie��0��p��kN6J!z�r9�df����U�J��d��P��*	]g���W&��T�����#Y��\��}�i2OH��L�o�c
`�Mdg�&���n3ޜ(t�[ADB�1,�ƪ}�$2
�|����x�A�{�}i�Nիu�y}C�N!"�bf�2�^�T���M-�&'���;��vI��9(��G��x
4���sf�	��d�!�o,���C2����gX3wⲒ�wE�1<��Ǚ���V���v��M���}��K���U�y�	����>i���0p�%h�,��KZ26�6p�&v�Χ�=�u�+�/k%>nVQ�A�-�.Ѷ�x�T�㱥~�r1�����q?;��H�/c3�f�Y���,]n{d���(�X�,���C �/M�du�In�P^�
����Cx#�z�]�k����|�ʏ_&��7Mn}�E%`�OYk�FQZ�$Lz��ʃ-8QvSRs�ᓺg��w8L2Ves�$rt\'��e��L��
EB�hH��vd��jN�d9ɇeO)�w��OV%_��V��^!r�,tk�C��K電/6B-�V�4�7f�i�a{u���c��/��t�������E�S�iP�LQ������ܘ��r^
j�~���M\�,8��%4���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``�8���o^^&E���o�� T��(^B��`h0	0	cP	P	Pn�	�	@w�	�	�}xx
�2��	���d���� �0 0�8 8�@ @� �� ���� �(�   8�8  8 �@ `8 D
|",�"�l&+PKMH[�^^5�.�.lib64/ruby/enc/iso_8859_10.sonuȯ��ELF>`
@�'@8	@ 00 0  �� � ��888$$���  S�td���  P�td���LLQ�tdR�td00 0 ��GNU�1�|���PA�B�E��B BE���|�qXa��� #U���� �Ff��, F"!8  4@  (8  ��
__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_10rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	90 8 �
@ @ h  � �
� p
� @
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�i���x����ff.�f���AVD�H��AUATL�%9UH�-1SL�L9���I9���M�YL�E�	L�XD��A�����A����A���tvE��F�lufA����A��@��E��M��C�4I��A���A��L��DA�E���d���A���L�L9��]���[H)�]D�A\A]A^�f�M��E��I��A���L���A�� twE���SL�XA��A������@sE��L���DA��@t�A�� t�E��A��A���A��E��A��wxM�ك�I��E��L���<���@A��u/M��E��I�û���A���L������f��@SE��L���q����E���s�sH��A���A������fDM�ك� I��E��L������@��H��I��I�ѺQH�5����,���H���@����I��I�ѿ,�H�5����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5e H�=�)�����H��H���ISO-8859-10����������������������������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@��4�4�4�4�4�4��4�4�4�4�4��4�4��0�0�0�0�0�0��0�0�0�0�0��0�0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;L0���h��������������������������,P���@zRx�$����PFJw�?:*3$"D��@\���#<p���F�H�B �H(�H0��
(D EBBC�����,HL W�����"����B����GNU��
@  �
p
@
 P
E�	
0 8 ���o`��
\  `H	8	���o���o�o����o	� �	�	

GA$3a1�	GA$3p1094 GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_10.so-2.7.8-141.el8.x86_64.debug��D�7zXZ�ִF!t/���a]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k��
��f[>�/<F�=ǫ7{�,?p�t�%G�_��6�9��qth�Ӏ�Cz}3-�K�rJ�]���<G�@s�l�I7�a�<��>d(���.a'��X�x�9a��`�l$p�]�*
�^ށ�bW�㉆/0t�p��[��IP��pk�Lg���/��U�2�7_��z��ǡd�h��_,i���^g�W1�۠���P�N\gc�e����܍�\n�1I��A�D��O;uG�<yc�(%2a��m����׃���q
�d�������F?�8��*Z�a��?*R�kr�5�I:���c�-�hd%t�P����C���6�8��M�{zx}x��MZ�b
�:-/�2�nBazL��;�}�Jl 1	�~��{�ќ���o����8h�F7����*���M���)�ؐ{��/{���K��a�S����'R�g�D�n��0\viOtY�:y��[ӭ
�C��<�>7xky�Ec�A¬)�{�$�3;J��d)JEk���W��cp�6�# 1�Wվ��l偆X��/�#qfǾ��R������p�DƗJO	�򁱞��ΦPc�Х=��L���F�y�����Y����
��Z��@��&tl��b)´XZ�SUza�B��#L�JZ4�����ñ=D�����4�u�3�D,�v�ɯ9�q”��]�ǧ*"�{���IEn�%�ڶ0�'�+�S��ݒ� l�F����v��s���o��1����>@�*W
��P�nU��k$Ϲq����Y���1�q�B��A[�����v�ʣׯ�Rp@J��|��������Z�'��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��\8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}
�  � ���L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�P&+PKMH[����.�.lib64/ruby/enc/iso_8859_1.sonuȯ��ELF>0
@p'@8	@hh 00 0  �� � ��888$$HHH  S�tdHHH  P�tdLLQ�tdR�td00 0 ��GNU�$�<�xzNpD�s�Q������@ BE���|1,\�qX� ���� z�<\U�, F"0  *8  ��0  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_apply_all_case_fold_with_mapOnigEncISO_8859_1_ToLowerCaseTableInit_iso_8859_1rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5
ui	/0 �
8 �
@ @ h �� `� 0� �
� `� �` 
x � � � � � � � � � � 	� �      
(  ��H��H�! H��t��H����5B �%C ��h�������h��������h��������%
 D���% D���%� DH�=� H�� H9�tH�~ H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH�U H��t��fD�����=� u+UH�=2 H��tH�=~ �Y����d����] ]������w��������x�@��w8H�H���� �A�>SuH�FH9�v�F���<Stq���x�@��w'H�H���� �A�>st���fD�P@��v�P0��wH<���<�tLH�H���� �A��H��A�H�A��D�P ��v�P��v1��D<�t�H�H���� �A���H�ssH�H�yH�SSH�H�AH�yH�� H�A(H�A<H�SsH�AD�H�y0�ff.�@��1����w��H�����x����ff.�f���AUD�H��ATL�%[USf�L�L9�smI9�shM�YL�A�L�XA�ف������A�,lf��tOA��@tFA�� D��L��A��I�Á��H��E���t�A���L�L9�r�[H)�]D�A\A]�fDE��A���A���t+���t#���t��@tA�� t
A�� ��L��D��I�Á��H���@A�� t/E���SL�XA��A���tE�@sE��L���\���fDA��u7M��D��I�Á��L��A�����)���f.��@SE��L������D���sA�sH�����A�����ff.�����I��I�ѿ�H�5����ff.���H��<�tH�c ���H����@t޸ssf��H��ff.���H�5� H�=�9�����H��H���ISO-8859-1������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�����������0�����������0�����0������4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0;L����h������`���������0���`�������0zRx�$P���@FJw�?:*3$"Dh���0\@���ap����#4������F�H�H �A(�
 DEBG� ���"�<���B�x���GNU��
�
@ �`0�
`�
;�	
�0 8 ���o`��
R  HX	0(	���o���o�o����o	� �	�	�	GA$3a1�	�GA$3p1094�
�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�
QGA+GLIBCXX_ASSERTIONSiso_8859_1.so-2.7.8-141.el8.x86_64.debug��
�7zXZ�ִF!t/���[]?�E�h=��ڊ�2N�����$�<O�K>��� z��qb�A&��@�I�[����S�:"�Y/����+B˪Um��u��/%�^������4���y�i��]<�L�簠��ȱ�k�n�/.3�U����������s�Ęg��ȳ�t�����)b�l]}C�sj��������Q��O���@��҇y����#�/�\b��4�4\��i:�j9^D��T���1BOl��p�]��a���m����)ݙ��$f�C�?t�㼘��L�����vaL�,�g���H]4"6��UC��j�����S� S��u��ȹ�ڱ�<�M!ט�m���O�@�	}�ylX���2i��%^_���a-�3/`?�&ףּޒƊq�{"�yN�p�''az�b^�*�����Q�1X�`�q}n7�4����hX��9��}5f=ZӇ���9,��x��.�&�n�bb#�
ő�rhz�B�d^�&����v_�g��͚F�cm0`p:�M(o�҅-NT�G`Sw���Ϲ�븩i�W�,U܆�q47�x��Y����(�	��z���|>���8��)��׉/�5�gSN�{X}xy��E��=�q�A;�®
��b�X\;��:�Wf�β>!�_
�a��X.�\ħ����1/�$r�N�FIb���Y����q��cE�=�o8��U���]7[6�,+6�,�,�xE�B��$��еYAG�?��U���&k��7;a�Œ��H��7�������	N��aj�on4�jW�[��YRs!�r:�:�mn8D�÷3���'��&(�ϰ�o!�w�ɾKQ.���ܐ�i����`T��'qJ,����y���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��R8���o��*E���o T00(^BX	X	Hh�	�	c�	�	@n

0w0
0
�}��
���  �L�PP��HH �0 0�8 8�@ @� �� ���� �(�   0�0  0 �8 `0 D
t"0�"�@&+PKMH[<y�.�.lib64/ruby/enc/emacs_mule.sonuȯ��ELF>�	@�'@8	@ 00 0  �� � ��888$$���  S�td���  P�td```\\Q�tdR�td00 0 ��GNUgĸ���>i�
�L�L���C�@ (BE��r_�e��|�qX R{�� �Ur+�, �F"�0  ��8  �0  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeOnigEncAsciiToLowerCaseTableonigenc_mbclen_approximateOnigEncAsciiCtypeTableInit_emacs_mulerb_enc_registeronigenc_is_mbc_newline_0x0aonigenc_ascii_apply_all_case_foldonigenc_ascii_get_case_fold_codes_by_stronigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_always_true_is_allowed_reverse_matchonigenc_ascii_only_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 �
8 `
@ @ ` �
h @� ��  
�  � �� �
� p
x � � � 
� � � � � � � � 
�      	(  ��H��H�a H��t��H����5� �%� ��h�������h��������h��������%M D���%E D���%= DH�=9 H�2 H9�tH�� H��t	�����H�=	 H�5 H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=z H��tH�=� �Y����d����� ]������w�������H��H�
��xiL�GL9��|D�GH��H�J���xWL�GL9���D�GH��H�J���xUL�GL9�t|H���OH�1��<
����D�����������D��f���������D@��f�H�	
��������������������H��	��������H��	���������L�E�
E��x H�) B���H���SH��H��L��H��L��I��������~%�H�1��DE�LH��E�H�zH9�u�L�Hc�I�L�[�@��UH��H��SH�^H�����t�����H��H�^���t�����H��H�����t���(H��H��@�8�B9BtH��H���G���Hc�H��H)�H9�u	H��[]�f�H�p��������UH��SH��H���r9rt
H��������H�}�E��~,H9�v'H����H9�vH���J���ȍJ)�9��H��[]�ff.������v7��x.����������w�������%n������f���f.���H��H9�v�>�w�DH9�s	H���8�w��f�����wH�( �����x����f���x,����������w���1�������D��f.���H�5U H�=.�����H��H���Emacs-Mule������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;\
 �x`�P�@�����P���<�P@�d��xzRx�$��@FJw�?:*3$"D��0\���pl�|q�J(���E�G�H g
AAC$�4�bE�D�G OAA�|�F���'��V �GNU��
`
@ �
@� 
 ��
p
���`	
0 8 ���o`x�
  H	�@	���o����o�o����o� �	�	�	GA$3a1`	%GA$3p1094�
GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�
�GA+GLIBCXX_ASSERTIONSemacs_mule.so-2.7.8-141.el8.x86_64.debug�^��7zXZ�ִF!t/��n]?�E�h=��ڊ�2N�	�w��_>i���`7�GFy�#�D�$�]��43�����IM��ܖ�p�[־z%�tɇ^H9%��G��\��l��m��_}��c��W(!���=y��e�N6M�2�:<-�0����Qde�z�(kڣ�+"f�C:;��%Vv�9O�QJK��n1�:�w[�y��|��Z���#�Ȗ��1QȤ��-�G��T�H�n�����`2mM��M�J���Q႖4�6Lڊ��X��3�)c��>�
�ش��t8�Z�F�:��0t��;�~��;�`�<�յo�ڰPn͋u�j9���	v�\m���iC��i���֧�ѫ4��';3��Ӄ��ѯ��Dus���|<��B׻|�?Jv~'p-]JOא�;�Di�f��M1�� ��j͖��5t0�&5Q���b�:L{3}
zQD��I���
�C'�l���`��F���]5�:��L��ͱL��-�������*q����h9�^�v
�M�w����d'G4�CV2�t��Q�w����pHJ�2��#��S���	-
��L}���	�n����o]]m��Ϙ�f-��U�A�w��G ��L�zGZ?W�]ʸ>�X����놽��Un�dmD����KB�M�
�լ�_�Qz�Es��
�`�y�D����?ج�D���w������c�!(8�������q�K֩�P�7�
W1��F
��OË�9���Y���D�D�@iY&^W'*���B��Z�IF@S�J��o��{W����k���޷!�r�@,��^Ż��ӀTK�pq�e�KZ�����4
�FJ��[
�G#�t`�
k�<k7`(|����:�{"��5�Af�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0xx8���o��(E���o�� T��@^B		Hh`	`	c�	�	@n�	�	0w�	�	'}
�@@  �``\���0��� �0 0�8 8�@ @� �� ���� �0�   0�0  0 �8 `0 D
t"0�"�T&+PKMH[B
�K�.�.lib64/ruby/enc/utf_16le.sonuȯ��ELF>�	@�'@8	@hh 00 0  �� � ��888$$HHH  S�tdHHH  P�td���ddQ�tdR�td00 0 ��GNU�'����(��n]�߼�[�@ HBE���|!��qX ��� h���B, $F"U�8  �@  ���8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_unicode_get_case_fold_codes_by_stronigenc_unicode_mbc_case_foldOnigEncAsciiToLowerCaseTableInit_utf_16lerb_enc_registeronigenc_unicode_apply_all_case_foldonigenc_unicode_property_name_to_ctypeonigenc_unicode_is_code_ctypeonigenc_utf16_32_get_ctype_code_rangeonigenc_always_false_is_allowed_reverse_matchonigenc_unicode_case_maplibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5�ui	�0 �
8 P
@ @ ` �h �x �� �
� �
� � 0� � P� � 	� � 
� � � � � � � 
     (  
0  ��H��H�� H��t��H����5� �%� ��h�������h��������h�������h��������%m D���%e D���%] D���%U DH�=Q H�J H9�tH�� H��t	�����H�=! H�5 H)�H��H��H��?H�H�tH�� H��t��fD�����=� u+UH�=� H��tH�=� �I����d����� ]������w�������G������Ȁ��t�D�W�O��
%���ʁ�	��ff.�f����������ff.�f�����L��I��H��H���������M��L�A���xA�xtI��H��H��L���D���@H�q �A���H��D��H)���~H�W��у���u&����u��~$�G��<������D��ø�����f.��F�ø�����fD��H�W1�H9�v�?
t�1�����ff.�������v$������
�����f�~f��Ðf�>�����H��H9�v/H��H)�H��H��?Hʃ�H)�H������H)��P����t�@H��H�P�H9�HG����H�5� H�=�����H��H���UTF-16LE;d������������� ����@����`�����������$@���8����L���`zRx�$����PFJw�?:*3$"D ���@\���CpD����P����\���K�����Z���"����9�,���P�h���GNU��
P
@ ����
�
0P���0	
�0 8 ���o``�
�  `��(	���o����o�o^���o� `	p	�	�	GA$3a10	�GA$3p1094�
�GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONS�
�

GA*FORTIFYutf_16le.so-2.7.8-141.el8.x86_64.debug�my��7zXZ�ִF!t/����]?�E�h=��ڊ�2N������!�eoة��!�3;�zA"���.�G�6�'�p�\�2 p;}�~� �ĒVI�	���;��� �]�:�v-�O��Y�@I1�������m������MeFA�A�Ce�e�G��hQS$e]�T<�*�J?�p~���ߪ��j{��j������X����#��ˠ�)�l�9P*aD͹Q@�N{�P90�J�A���Br~�FZ1� OPZ��_p5l��?*H��%��$���ZS~n�nq�ߵ��z9�GsK��2����%��~�ȋ8�>��< ����+�o�J+��N�u(rQ��^Jw�s�>�؇ϡ#"H�,���ly�:@� ;%�y�</Ksn��9�ɀBNC�lఖA����ܛ�]{r��r����=��c��O4��16���!��!QM�F�;z��= p,c��[,de���Ӈ��(rX���ƭ�_c��K�%
�8r�Q&? @Lb��ONP#I㳷�#腠��\`�5���ƫ�,sq���h�Q[�e�(?Tw1m�W?瑕K�sX��>x�2�3�G�U^��^0�n_����k/�V�nkB٥,��m�Ȯ�+�-+�Q�"���78�V��7&h˨���"�V�$�ٛ7bSM9p
Yp� ~S��c�aR*>YL2p{�(xܤyhW���a6��#�9�#���������Z&u��c��Y�.O��%9���7P���ѫxk���``��,�����R�<�6k����҂Pբ��'�!�}�.{E�b׫��J�j�9����Z���������:9����(M��J��d�dޕ��\��UY���}�'�G��$ʪ�����bB<��#�w�1#@�.�ں&ן�L���~"v���5����*W��g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0``�8���o^^&E���o�� T��(^B��`h0	0	cP	P	Pn�	�	@w�	�	�}��
�2��	���d�8
8
�HH �0 0�8 8�@ @� �� ���� �(�   8�8  8 �@ `8 D
|",�"�t&+PKMH[�S���.�.lib64/ruby/enc/iso_8859_9.sonuȯ��ELF>`
@�'@8	@`` 00 0  �� � ��888$$@@@  S�td@@@  P�td���LLQ�tdR�td00 0 ��GNU٢�+�
�(ё�).�p�_�@ 	BE���|�qX9,\ "U���� �Ee��, F" 8  3@  '8  ��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_9rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	80 8 �
@ @ h �� 0� � �
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�����x����ff.�f���AWD�H��AVAUL�-yATL�%pUSfDL�I9�svL9�sqM�YL�A�L�XA�ف�����݃��@�������������uJM��D��I�Á��L��A�����f�E���t�L�A���I9�r�[H)�]D�A\A]A^A_�f�A��C�,tf��t
A��@����@tA�� ��f�L��D��I�Á��H���@A�� t/E���SL�XA��A���tE�@sE��L���]���fDA��u7M��D��I�Á��L��A�����*���f.��@SE��L������D���sA�sH�����A�����fDE��D��A�������I�|L��G�L5I��E��H�����DE��D��A�������it���tjL��A�� I��E��H���{���M��A��I��E��L��A�����\���A�I�Q����M��A��I��E��L��A�i�1���A������&���M��E��I��L������H��I��I�ѺQH�5�����)���H���@����I��I�ѿ�H�5�����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5� H�=.�����H��H���ISO-8859-9����������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@�����������0�����������0�����0������4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�0	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~������������������������������������������������������������������������������������������i�������������������������������;L�h@����@����p����� ��� P���4����HzRx�$����PFJw�?:*3$"D����@\����#Dp����xF�H�B �I(�H0�A8��
0D(E BBBJ���,HL W�����"����B�P���GNU��
@ �0�
 PD�	
�0 8 ���o`��
[  `H	8	���o���o�o����o	� �	�	

GA$3a1�	�GA$3p1094 �GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_9.so-2.7.8-141.el8.x86_64.debug��w^�7zXZ�ִF!t/���b]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k���.���M��b~��k)qo�@-�+���h1B�6{��/���X�Fm9՟�Z�^xh\�D���(ƿ[&Zp
k@P�y�c��*�=�qn��X�N�Yp	�+�B�o+Jb�*��FД���p����|�Y^#G�f�MZxW�LD�4�O�F��y|&��s4j�/��H����������~�ƉH�j�u���t�#{�m�^�W8:���b1,�0G�X�:v$����U𪑗�T�QNpD����eXt��7<��~����%�=�l��؞�W�#]��`P����u��CB$�?�xy�#�$��/[Ų�}u�������_����-?����hL�f\R2���)��Y���ePުhy���v�y��iTj�}��QF���֕��!z}'�
�$���)���l�y��3��<��gf��%��Zh#�Z�����s�6v�ģ
YK�͗o�{��+�W�6���߀�����~�P��F������}*�9K���w��fj�į�
��,Af>��g�֞=����Q����Ǐ�y”W���Dv��� E���5���Tfn6*���ފ�2�������N|��P'��D'��O�	��8��٫J����C�͑�ҋ}��$f4�eP:!l�^�2�h�eX��c鲅S&T9����)zY>�jܙ��K U��ܡ���8�8z&�4���!�&�bPG_��A[���=�}��$�'�=ᆕ��ͱ��u�,�>kg�~��J��2X|�*n[���W��Ԑ�4ξ�a�uK{,1���������(���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��[8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
7}��
���  ���L�00�@@ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�P&+PKMH[���.�.lib64/ruby/enc/iso_8859_13.sonuȯ��ELF>`
@x'@8	@�� 00 0  �� � ��888$$���  S�td���  P�td���LLQ�tdR�td00 0 ��GNU��6��_#P
�$��}
�k�B BE���|b����qX #U���� �Ff��, F"!8  4@  �(8  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeonigenc_get_case_fold_codes_by_str_with_maponigenc_apply_all_case_fold_with_mapInit_iso_8859_13rb_enc_registeronigenc_single_byte_mbc_enc_lenonigenc_is_mbc_newline_0x0aonigenc_single_byte_mbc_to_codeonigenc_single_byte_code_to_mbclenonigenc_single_byte_code_to_mbconigenc_minimum_property_name_to_ctypeonigenc_not_support_get_ctype_code_rangeonigenc_single_byte_left_adjust_char_headonigenc_always_true_is_allowed_reverse_matchlibm.so.6libc.so.6_edata__bss_start_endGLIBC_2.2.5ui	90 8 �
@ @ h @� �
� �
� `
�  � P` 
x � � � � � � � � � 	� �      (  
0  ��H��H� H��t��H����52 �%3 ��h�������h��������h�������h��������%� D���%� D���%� D���%� DH�=� H�� H9�tH�N H��t	�����H�=� H�5� H)�H��H��H��?H�H�tH� H��t��fD�����=] u+UH�=� H��tH�=N �Y����d����5 ]������w������1����w��H�I���x����ff.�f���AVD�H��AUL�-ATL�%USL�L9�svI9�sqM�ZL�A�L�XA�ځ����A��C�,tf��tVA��@tMD��L��G�T5I�Á��A��H��fDE���t�A���L�L9�r�[H)�]D�A\A]A^��������@��A�� ��E��A���D��E��A��A��A���������L��A�� I��E��H���p����A�� tGE���SL�XA��A���t}�@sE��L���=���fDL��D��I�Á��H�������A��uWM��D��I�Á��L��A������f.�M��D��I�Á��L��A����������@SE��L���Q����D���sA�sH�����A�����fDL��A��I��E��H���{�����H��I��I�ѺQH�5����!���H���@����I��I�ѿ!�H�5����ff.���H��<�tH�����H����@t޸ssf��H��ff.���H�5E H�=�	�����H��H���ISO-8859-13������������������������������������������������������������������@@@@@@@@@B	BBBB@@@@@@@@@@@@@@@@@@�B�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�x�x�x�x�x�x�x�x�x�x�A�A�A�A�A�A�A�|�|�|�|�|�|�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�A�A�A�A�Q�A�x�x�x�x�x�x�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�p�A�A�A�A@���������4��4�����4������0���0��0�����0�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4��4�4�4�4�4�4�4�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0��0�0�0�0�0�0�0�	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������;LP���h��������������������@���,����@zRx�$��PFJw�?:*3$"D���@\�#<p���
F�H�I �H(�A0�
(D EBBD����,HL W��"����B�H���GNU��
@ @�
�
`
 P
E�	
(0 8 ���o`��
\  `H	8	���o���o�o����o	� �	�	

GA$3a1�	5GA$3p1094 'GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY CGA+GLIBCXX_ASSERTIONSiso_8859_13.so-2.7.8-141.el8.x86_64.debug�˥�7zXZ�ִF!t/���_]?�E�h=��ڊ�2N��J��]"2�]�ܹE�2��B^k������
\�s��7��Ynt8I��v��苔U$�bB+jP܇��?�/��47���Gc��*��Egۮ(U�f��X>*W�.}�sM�R$��nޣXiڎ��(,1�0���Ks�ހ��	�-�9���߬
8�^�#~ew��0A$�ý����L��T����K�?<k;�1[�͡y���eӠT�����1�79y���A�$��N/��Q	�P&8�t�Y�Cn/_u�K�P��7��P��Lrlዶ�m�R+�7
�����{�����f��ߴ���R�z��ئ|Re����%dC���e�G$�j*��;���O)e�����̣2���6��Pq�v{(��#����_��#WP������>��L	�r����򵜉�Dq)���6�E�,��cu���x��`�7��>9{�a�Y;��)��$���i ?�.��?�'f�I�����,�g�����)w{�=b�Cw$0���!:CHF����U&pĹ
搴�'j���q>Tΰ�m[�Ѵ�)���.yh�N�N��Tb�9��Ѳ=Kc�p� �/�?_��3ΊH5��tLA�4km
����+* ?皱/�A�L�VX���%y�o�0��D�~�N#�������ԗ<=HE��c�p����_���D(�]֦�b
k��
�C1̂m2i?�rt��'�)��b\��)"�^�>���e��&)Ė�o{v9ZYfE#�C�ƊY7L�huJ}ߐx�`��x2K�v�
�@T�'4�qe��6zJⴻa~rG��Y��8�q�������g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``4(���0��\8���o��*E���o T88^BH	H	`h�	�	c�	�	Pn 
 
@w`
`
�}((
�@@@ ���L������ �0 0�8 8�@ @� �� ���� � �   8�8  8 �@ `8 D
|"0�"�L&+PKMH["����O�Olib64/ruby/cgi/escape.sonuȯ��ELF>@@H@8	@�.�. �=�= �= x� �=�= �= ��888$$�.�.�.  S�td�.�.�.  P�td`,`,`,TTQ�tdR�td�=�= �= ppGNU�DQ�]Y�)0;���N�*�R 0*,-BE���|�qXL��U	-	��� C_e�G�����U~ �x�"1�i���u��^, SF"�p�<N�A �0A �A 5`!��`")__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizerb_string_valuerb_enc_getrb_call_superrb_enc_dummy_prb_to_encodingrb_enc_to_indexrb_str_catruby_digit36_to_number_tablerb_str_buf_newrb_enc_associaterb_enc_get_indexrb_enc_associate_indexrb_enc_str_coderangerb_str_duprb_cSymbolrb_cvar_getrb_cIntegerrb_cFloatrb_cFalseClassrb_cTrueClassrb_cNilClassrb_error_arity__stack_chk_failruby_hexdigitsstrcasecmpruby_scan_digitsrb_str_newrb_free_tmp_bufferrb_alloc_tmp_buffer_with_countruby_malloc_size_overflowInitVM_escaperb_cObjectrb_define_classrb_define_module_underrb_prepend_modulerb_extend_objectInit_escaperb_intern2rb_define_methodlibruby.so.2.7libm.so.6libc.so.6_edata__bss_start_endGLIBC_2.4GLIBC_2.2.5/opt/alt/ruby27/lib64�ii
�ui	�= ��= p�= �= �? �? �? �? �? �? 
�? �? �? �? "�? #�? $�? (@  @ (@ -0@ 8@ @@ 	H@ 
P@ X@ `@ h@ p@ x@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@  �@ !�@ $�@ %�@ &�@ 'A )��H��H��0 H��t��H����5�0 �%�0 ��h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h	��Q������h
��A������h��1������h��!������h
��������h��������h������h�������h��������h�������h�������h�������h�������h�������h��q������h��a������h��Q������h��A������h��1������h��!������h���������%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%�. D���%}. D���%u. D���%m. D���%e. D���%]. D���%U. D���%M. D���%E. D���%=. D���%5. D���%-. D���%%. D���%. D���%. D���%
. D���%. DH�=. H��- H9�tH��, H��t	�����H�=�- H�5�- H)�H��H��H��?H�H�tH��, H��t��fD�����=�- u+UH�=j, H��tH�=* �����d����e- ]������w������AWAVAUATUS��H��HdH�%(H�D$81��G����<H�H�|$(H��I��H�D$(���H�|$(�>����xt8H������I��H�L$8dH3%(L����H��H[]A\A]A^A_�DH������D$��u����H�}H�\$(H�\$����H������H�+�D$�� ��H��L�c��H����H�D$7E1�E1�1�H�D$�N�<+���D$7 I��M����L)�K�44L��H��I�]���H�t$L��I�޺���H9���A�<%u�L�kI9�}~A�T�Ѓ�0��	v
�ƒ�߃�A��wTA�|����0��	v�׃�߃�A@��w6H�=7* �������
�D$7M���[���H���j���I���K���f�H��H9��p���M����H��K�44L��L)����H�|$���L��H������H�|$����ËD$9��@�����L���a���L���y������1�������L���=����L$������I�Lc�H%���I	�M�7���f.�H�\$H������I��H�H�D$�D$%0�D$�c���fDH�D$H�hL�`� ���fDH�5�* A��t+A��uUD�����tVI��thA��u"H�?) H�8�f�I�����uI��tQM��t4I�|$���H�����f.�H��( H�8��H��( H�8��H��( H�8��H��( H�8�H��( H�8뭺�����`�����AWAVAUATUSH��HH�t$(H�\$(H��dH�%(H�D$81��L���H�|$(�����xt<H�޿�?���I��H�L$8dH3%(L����H��H[]A\A]A^A_�fDH��������u�H�D$(�D$4�D$4%H�H�D$ �� �IH��L�`��H���H�D$41�E1�1�H�D$H�-�
DE�,L�rA�E�<Qw��HcD�H�>��M����H)�L��L��Y���A�� t{D��H�Q' M��L����A��H�t$���D�D$5A�D��D$6����L��L��I9��x���M��tsH)�L��L����H�|$ ���L��H��������H�5�	�L������L����H��H�t$H�T$���H�t$H�T$I���-���@H�|$ ���I���b���fDH�D$ H�XL�`����Q������AWAVAUATUSH��xH�t$HH�\$HH��dH�%(H�D$h1��<���H�|$H�����xt<H�޿�/���I��H�L$hdH3%(L���RH��x[]A\A]A^A_�fDH��������u�L�l$HA���L���a���H�5�H�XH�D$0H��������t H�5�H��������M�A��I��I�m�� �H��M�}��H����H�L$SH�t$XE1�E1�H�L$H�L$b1�H�L$8H�L$TH�L$H�t$ L�l$L�t$(I��L�ՐA�H�X�T$S��&unI��I)�L9�}oA��T$S��g�����#�2��au=H�PL��H)�L�H���v�:pos;�zf�:mp���H�X@H��L9��t���L�l$I��M���L��K�4L��L)��q���L���	���L��H���>����M���f���l����qu�H�PL��H)�H��~�A�|uot;�{����D$S"H�XM����I�4/L��L������H�t$�L����H�CH���G���@H�PL��H)�H���$���fA�|t;H�X�����D$S>�H�XL��I�<H)��H��~�ʃ�0��	�z���H�X��X����L��H)�H���II�<��ʃ�0��	�%H�L$ L�D$�����H��H�D$X�T$TH�H�X�������H;L$(�{���A�<;�p���M���JI�4/L��L��H�L$@���H�L$@H�|$(�H�l$8H�D$0��H��H��P0H��L��Hc���H������@H�PL��H)�H����fA�|t;H�X����D$S<�f���L����I���_���L�����I���T���I�mM�}���H�����������H�X�D$S'����f���߃�A������H�X�x����H�L$ L�D$�
��H�����@�z;�>���H�X�D$S&���H�t$�L��L$S�������L��H�L$@���H�L$@I�������ff.�UH��AUATI��SH��H�dH�%(H�E�1�H�ʁ� �gH��H�E�H����H�@H�H��H��H��H%�H)�H���H��H9�tH��H��$�H9�u���H�D$H�]�H���H����H��I�T$E1�I��A��I�L9��=I��L�w�DA�	I��L9�sOH���r�H��A�4�@��t�D��I�t�A����A����E��t�A�	A����M�L9�r�I�$I)��� ��I�L$L9���L��H����L��I�����L��H����H����L��H�]�dH3%(�KH�e�[A\A]]�DH�H�����H�H�E�H����H�I�	D��H�|�I�|	�I�yL��H��H)�H)�D����H��1���fDH����L9��A���L�����I���R����I�T$I�L$L�
L9������E1������H���������H��H9��H�rjH�pH�]�H��H��H��H���F�I�$H�ʁ� ����@H)�H�L4����f��A�	D���t�A�t	��m���D���t�fA�t	��Z������������SH��H�\$H�t$H����H�|$�+�xtH�޿��H��[�f�H�����u�H�|$����H��[�@��H��H�9 H�=AH�0�r�H�56H��H�� ��H�=� H�5 H�o ���H�=c �H�?���H�5H�Q �,�H�== �H�i���H�5��
�H�= �H�:���H�5����H�=� �����H���H�5����H�5� H�=� �,�H�5� H�=� H�����D��H���H�=i�G�H�� H������H��H���+UTF-8ISO-8859-1mp;CGIEscapeUtilunescapeHTMLunescape@@accept_charset��������@�������������������������������������������@���@���@���@���@���@���@�����������������������������������������������������������������������������������������������������������@���@���@���@�������@�����������������������������������������������������������������������������������������������������������@���@���@�������&quot;&amp;&#39;&lt;&gt;;T	��p���`�������H�����������zRx�$X��FJw�?:*3$"D ��H\���F�B�B �B(�A0�A8�F�l
8A0A(B BBBFH���F�B�B �B(�A0�A8�D�]
8A0A(B BBBGH����F�B�B �B(�A0�A8�D�]
8A0A(B BBBG(@$��A�C
D��H��
F$l��\E�D s
ACZA��H����)H\GNU��p�= ���
�"�= �= ���o`�
'@ �8�
�	���o�
���o�o(
���o�= @P`p�������� 0@P`p��������GA$3a1�"GA$3p1094��"GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: annobinGA$running gcc 8.5.0 20210514GA*GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GOW*�GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign
GA*FORTIFY�@GA+GLIBCXX_ASSERTIONSescape.so-2.7.8-141.el8.x86_64.debug ���7zXZ�ִF!t/��Y]?�E�h=��ڊ�2N�s�d�6oz�8�^aq�Q�w���ˊ�8�ӧ��F��9V-fD��$�{���U3$6K�4d��� ����'�����p����U[��2�j]7��j��-RH�^ƨV�_Ѩ4��C���|����;�b��MP~�-�Ԓ�~�i#�⺞2�À��{E`#
Zqv�`�I���Y��_�
�9D�R������'��N����
���!a~-���Q����\�zL�X(�0C�綱A��
���a#qڴBy�c����5:CO,XP��1�u1���><��/a��Bڎ��o︂�e/�?�M��G7�?�#CO6�=�d"RJ���i>/W�r6/Y���ӭ�%��E�`�vz���SR�#�e��F�cYC�tg΋v�f��ϻ*l�����3�c��H���֣ͫ*�ωaO�U�5*h�(�I��yN����������4Y����U)?�zk��{���kX$<%7�,��Pur/R���/k�!;�.|EE����\��#��Խ���66�#|%��,�8}���f�����Q�s��_��ֲ4��^��q�e��n�q��=�(x�X�'�U��3��g=+]����W�w�ҳ�o,����3��#h� QFrmgs��p�=%7�Pu�D�G�m�E��q2p�*�Ow�?����j��	�d@5i*��A�C�ݹU็߉s�c��Uq
�|m�NM���]��f����UIa���[w�aSV�;����h���K�TjJ�T3ϣ�|�E����k���h)����UY�
�Q[�۶��(�cW��P�7����fi�a'�wa��	Ʋ���g�YZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata88$���o``8(��h0'8���o(
(
^E���o�
�
0T�
�
�^B88�hc00�n  �w�}�"�"
��"�"�	 �`,`,T��,�,���.�. ��= �=��= �=��= �=��= �=���? �?h�@ @�A A(�0A`AD
LC,xC�G+PKMH[g�^blib64/pkgconfig/ruby.pcnu�[���arch=x86_64-linux
sitearch=${arch}
prefix=/opt/alt/ruby27
exec_prefix=/opt/alt/ruby27
bindir=${exec_prefix}/bin
libdir=${exec_prefix}/lib64
includedir=/opt/alt/ruby27/include
MAJOR=2
MINOR=7
TEENY=8
ruby_version=2.7.0
ruby_version_dir_name=
RUBY_API_VERSION=${MAJOR}.${MINOR}
RUBY_PROGRAM_VERSION=${MAJOR}.${MINOR}.${TEENY}
RUBY_BASE_NAME=ruby
RUBY_VERSION_NAME=${RUBY_BASE_NAME}-${ruby_version_dir_name}
RUBY_SO_NAME=${RUBY_BASE_NAME}
RUBY_INSTALL_NAME=${RUBY_BASE_NAME}
DEFFILE=
archlibdir=/opt/alt/ruby27/lib64
sitearchlibdir=${libdir}/${sitearch}
archincludedir=${includedir}/${arch}
sitearchincludedir=${includedir}/${sitearch}
ruby=${bindir}/${RUBY_INSTALL_NAME}
rubylibprefix=${exec_prefix}/share/ruby
rubyarchprefix=/opt/alt/ruby27/lib64/ruby
rubysitearchprefix=${sitearchlibdir}/${RUBY_BASE_NAME}
rubylibdir=${rubylibprefix}
vendordir=/opt/alt/ruby27/share/ruby/vendor_ruby
sitedir=/opt/alt/ruby27/share/ruby/site_ruby
vendorlibdir=${vendordir}
sitelibdir=${sitedir}
rubyarchdir=${rubyarchprefix}
vendorarchdir=/opt/alt/ruby27/lib64/ruby/vendor_ruby
sitearchdir=/opt/alt/ruby27/lib64/ruby/site_ruby
rubyhdrdir=/opt/alt/ruby27/include
vendorhdrdir=${rubyhdrdir}/vendor_ruby
sitehdrdir=${rubyhdrdir}/site_ruby
rubyarchhdrdir=/opt/alt/ruby27/include
vendorarchhdrdir=${sitearchincludedir}/${RUBY_VERSION_NAME}/vendor_ruby
sitearchhdrdir=${sitearchincludedir}/${RUBY_VERSION_NAME}/site_ruby
MAINLIBS=-lpthread -lrt -lrt -lgmp -ldl -lcrypt -lm 
SOEXT=so
LIBPATH=
LIBRUBY_A=lib${RUBY_SO_NAME}-static.a
LIBRUBY_SO=lib${RUBY_SO_NAME}.${SOEXT}.${RUBY_PROGRAM_VERSION}
LIBRUBY=${LIBRUBY_SO}
LIBRUBYARG_SHARED=-Wl,-rpath,${archlibdir} -L${archlibdir} -l${RUBY_SO_NAME}
LIBRUBYARG_STATIC=-Wl,-rpath,${archlibdir} -L${archlibdir} -l${RUBY_SO_NAME}-static ${MAINLIBS}
LIBRUBYARG=${LIBRUBYARG_SHARED}
LIBS=-lm 
DLDFLAGS= -L/opt/alt/ruby27/lib64 -Wl,-rpath=/opt/alt/ruby27/lib64

Name: Ruby
Description: Object Oriented Script Language
Version: 2.7.8
URL: https://www.ruby-lang.org
Cflags: -I${rubyarchhdrdir} -I${rubyhdrdir}
Libs: ${DLDFLAGS} ${LIBRUBYARG_SHARED} ${LIBS}
Requires:
PK7H[�`[�		bin/rakenuȯ��PK7H[/���RRAbin/raccnuȯ��PK7H[�
�bin/rackupnuȯ��PK7H[[SB7bin/rinuȯ��PK7H[��P		U	bin/rdocnuȯ��PK7H[K��))�bin/gemnuȯ��PK7H[������
bin/erbnuȯ��PK7H[\�&/
�!bin/bundlenuȯ��PK7H[�/MJO$bin/irbnuȯ��PK7H[�vp��&bin/bundlernuȯ��PK7H[4>�  �(bin/rubynuȯ��PK7H[��'��!�!)'Ishare/systemtap/tapset/libruby.so.2.7.stpnu�[���PK7H[�6��gg#Vkshare/doc/alt-ruby27-libs/README.mdnu�[���PK7H[F��u`u`�share/doc/alt-ruby27-libs/NEWSnu�[���PK7H[~�/5ĘĘ��share/rubygems/rubygems.rbnu�[���PK7H[�íM)?)?"�~share/rubygems/rubygems/command.rbnu�[���PK7H[��T��!\�share/rubygems/rubygems/errors.rbnu�[���PK7H[���!!(;�share/rubygems/rubygems/specification.rbnu�[���PK7H[l���#��share/rubygems/rubygems/defaults.rbnu�[���PK7H[xy�"00/share/rubygems/rubygems/dependency_installer.rbnu�[���PK7H[��T�T#y0share/rubygems/rubygems/security.rbnu�[���PK7H[$(:ه�!Åshare/rubygems/rubygems/source.rbnu�[���PK7H[�E%��share/rubygems/rubygems/psych_tree.rbnu�[���PK7H[���))*�share/rubygems/rubygems/dependency_list.rbnu�[���PK7H[���1��share/rubygems/rubygems/install_update_options.rbnu�[���PK7H[M��0��share/rubygems/rubygems/ext/configure_builder.rbnu�[���PK7H[)|� ��/^�share/rubygems/rubygems/ext/ext_conf_builder.rbnu�[���PK7H["�׾�,J�share/rubygems/rubygems/ext/cmake_builder.rbnu�[���PK7H[j����&d�share/rubygems/rubygems/ext/builder.rbnu�[���PK7H[�JB\\+<�share/rubygems/rubygems/ext/rake_builder.rbnu�[���PK7H[�C�֐�*�share/rubygems/rubygems/ext/build_error.rbnu�[���PK7H[n����%�%)�share/rubygems/rubygems/remote_fetcher.rbnu�[���PK7H[X`���0#"share/rubygems/rubygems/commands/list_command.rbnu�[���PK7H[�����:.&share/rubygems/rubygems/commands/generate_index_command.rbnu�[���PK7H[��3=2share/rubygems/rubygems/commands/sources_command.rbnu�[���PK7H[E����2�Hshare/rubygems/rubygems/commands/unpack_command.rbnu�[���PK7H[��%���3�Zshare/rubygems/rubygems/commands/cleanup_command.rbnu�[���PK7H[|r�P$$0$mshare/rubygems/rubygems/commands/cert_command.rbnu�[���PK7H[�"e��5��share/rubygems/rubygems/commands/uninstall_command.rbnu�[���PK7H[1����0��share/rubygems/rubygems/commands/info_command.rbnu�[���PK7H[�[�h1ǫshare/rubygems/rubygems/commands/fetch_command.rbnu�[���PK7H[�'�H�H1<�share/rubygems/rubygems/commands/setup_command.rbnu�[���PK7H[&��
�
1>�share/rubygems/rubygems/commands/owner_command.rbnu�[���PK7H[��}��0�share/rubygems/rubygems/commands/open_command.rbnu�[���PK7H[|���3�share/rubygems/rubygems/commands/signout_command.rbnu�[���PK7H[E�Id�	�	2�share/rubygems/rubygems/commands/server_command.rbnu�[���PK7H[��*UU4}share/rubygems/rubygems/commands/outdated_command.rbnu�[���PK7H[�vM�	�	06!share/rubygems/rubygems/commands/yank_command.rbnu�[���PK7H[��a.ll0B+share/rubygems/rubygems/commands/push_command.rbnu�[���PK7H[;.֕(�(0:share/rubygems/rubygems/commands/help_command.rbnu�[���PK7H[!�����1cshare/rubygems/rubygems/commands/check_command.rbnu�[���PK7H[InB��
�
0Nlshare/rubygems/rubygems/commands/lock_command.rbnu�[���PK7H[F��992rwshare/rubygems/rubygems/commands/update_command.rbnu�[���PK7H[��=���6
�share/rubygems/rubygems/commands/dependency_command.rbnu�[���PK8H[���tt2�share/rubygems/rubygems/commands/search_command.rbnu�[���PK8H[�Z�Q%Q%1جshare/rubygems/rubygems/commands/query_command.rbnu�[���PK8H[p��

9��share/rubygems/rubygems/commands/specification_command.rbnu�[���PK8H[�R�)��4
�share/rubygems/rubygems/commands/pristine_command.rbnu�[���PK8H['Laaa1��share/rubygems/rubygems/commands/which_command.rbnu�[���PK8H[,���{{2��share/rubygems/rubygems/commands/signin_command.rbnu�[���PK8H[#*M�++7�share/rubygems/rubygems/commands/environment_command.rbnu�[���PK8H[B��Z884(share/rubygems/rubygems/commands/contents_command.rbnu�[���PK8H[y�HG��3�'share/rubygems/rubygems/commands/install_command.rbnu�[���PK8H[Q����1�Eshare/rubygems/rubygems/commands/stale_command.rbnu�[���PK8H[��$�
�
1�Ishare/rubygems/rubygems/commands/build_command.rbnu�[���PK8H[�����	�	0�Tshare/rubygems/rubygems/commands/rdoc_command.rbnu�[���PK8H[X��3qq2-_share/rubygems/rubygems/commands/mirror_command.rbnu�[���PK8H[��^#^#)bshare/rubygems/rubygems/test_utilities.rbnu�[���PK8H[�Q�?PP2��share/rubygems/rubygems/install_default_message.rbnu�[���PK8H[.[���&i�share/rubygems/rubygems/requirement.rbnu�[���PK8H[�V��KK$Z�share/rubygems/rubygems/util/list.rbnu�[���PK8H[`�A���(��share/rubygems/rubygems/util/licenses.rbnu�[���PK8H[��+��share/rubygems/rubygems/rdoc.rbnu�[���PK8H[8�ʠffx�share/rubygems/rubygems/text.rbnu�[���PK8H[���x��.-�share/rubygems/rubygems/gemcutter_utilities.rbnu�[���PK8H[�a���%/�share/rubygems/rubygems/exceptions.rbnu�[���PK8H[8=�22'z�share/rubygems/rubygems/spec_fetcher.rbnu�[���PK8H[&��ȸ�%share/rubygems/rubygems/gem_runner.rbnu�[���PK8H[��(��.�./share/rubygems/rubygems/specification_policy.rbnu�[���PK8H[p��)4Mshare/rubygems/rubygems/defaults/operating_system.rbnu�[���PK8H[}'M,,*�^share/rubygems/rubygems/psych_additions.rbnu�[���PK8H[!�v\��(
`share/rubygems/rubygems/s3_uri_signer.rbnu�[���PK8H[�J6�#xshare/rubygems/rubygems/platform.rbnu�[���PK8H[�A�/��'l�share/rubygems/rubygems/path_support.rbnu�[���PK8H[}�E  *K�share/rubygems/rubygems/security_option.rbnu�[���PK8H[�cl)ŝshare/rubygems/rubygems/version_option.rbnu�[���PK8H[\��,0�share/rubygems/rubygems/package/io_source.rbnu�[���PK8H[	3�~.
.
3��share/rubygems/rubygems/package/tar_reader/entry.rbnu�[���PK8H[�&-GG)�share/rubygems/rubygems/package/source.rbnu�[���PK8H[�~͚��-��share/rubygems/rubygems/package/tar_header.rbnu�[���PK8H[�jބ	�	-��share/rubygems/rubygems/package/tar_reader.rbnu�[���PK8H[�m�UU,��share/rubygems/rubygems/package/digest_io.rbnu�[���PK8H[���<cc.R�share/rubygems/rubygems/package/file_source.rbnu�[���PK8H[�?f�((-�share/rubygems/rubygems/package/tar_writer.rbnu�[���PK8H[�����&��share/rubygems/rubygems/package/old.rbnu�[���PK8H[	繤��0rshare/rubygems/rubygems/package/tar_test_case.rbnu�[���PK8H[�.
�00'jshare/rubygems/rubygems/package_task.rbnu�[���PK8H[��DD&�*share/rubygems/rubygems/uri_parsing.rbnu�[���PK8H[HM��"�""�,share/rubygems/rubygems/request.rbnu�[���PK8H[.���1�1"�Oshare/rubygems/rubygems/version.rbnu�[���PK8H[�z5��Z�Z!āshare/rubygems/rubygems/server.rbnu�[���PK8H[����/��share/rubygems/rubygems/request_set/lockfile.rbnu�[���PK8H[���9r�share/rubygems/rubygems/request_set/lockfile/tokenizer.rbnu�[���PK8H[c�eL$$6�share/rubygems/rubygems/request_set/lockfile/parser.rbnu�[���PK8H[���vDZDZ9~	share/rubygems/rubygems/request_set/gem_dependency_api.rbnu�[���PK8H[q����1+w	share/rubygems/rubygems/bundler_version_finder.rbnu�[���PK8H[h��~j~j$p�	share/rubygems/rubygems/installer.rbnu�[���PK8H[?G=�	�	%B�	share/rubygems/rubygems/name_tuple.rbnu�[���PK8H[_�
�$G�	share/rubygems/rubygems/deprecate.rbnu�[���PK8H[����/�/&��	share/rubygems/rubygems/request_set.rbnu�[���PK8H[p�l�"�"%�/
share/rubygems/rubygems/dependency.rbnu�[���PK8H[��W����R
share/rubygems/rubygems/ext.rbnu�[���PK8H[�#�r

-�T
share/rubygems/rubygems/security/trust_dir.rbnu�[���PK8H[\m�Q��*_
share/rubygems/rubygems/security/signer.rbnu�[���PK8H[�Q�ۜ�*`v
share/rubygems/rubygems/security/policy.rbnu�[���PK8H[,�)bY
Y
,V�
share/rubygems/rubygems/security/policies.rbnu�[���PK8H[�_�@@!�
share/rubygems/rubygems/doctor.rbnu�[���PK8H[�77$��
share/rubygems/rubygems/safe_yaml.rbnu�[���PK8H[ ���2�2&'�
share/rubygems/rubygems/config_file.rbnu�[���PK8H[�k���G�G"C�
share/rubygems/rubygems/package.rbnu�[���PK8H[xp�f��*�2share/rubygems/rubygems/command_manager.rbnu�[���PK8H[�O)66*�Fshare/rubygems/rubygems/install_message.rbnu�[���PK8H[]g5X��$hHshare/rubygems/rubygems/validator.rbnu�[���PK8H[}-"�S#S#&WWshare/rubygems/rubygems/uninstaller.rbnu�[���PK8H[��VN��-{share/rubygems/rubygems/stub_specification.rbnu�[���PK8H[\��%�%#V�share/rubygems/rubygems/resolver.rbnu�[���PK8H[q+>��({�share/rubygems/rubygems/compatibility.rbnu�[���PK8H[z�+�����$Ѹshare/rubygems/rubygems/test_case.rbnu�[���PK8H[c/�_/�Xshare/rubygems/rubygems/source_specific_file.rbnu�[���PK8H[��%,DZshare/rubygems/rubygems/request/http_pool.rbnu�[���PK8H[����	�	3�^share/rubygems/rubygems/request/connection_pools.rbnu�[���PK9H[��M���-�hshare/rubygems/rubygems/request/https_pool.rbnu�[���PK9H[W�t��&�ishare/rubygems/rubygems/source/lock.rbnu�[���PK9H[]]a�EE%�mshare/rubygems/rubygems/source/git.rbnu�[���PK9H[�'�M33'l�share/rubygems/rubygems/source/local.rbnu�[���PK9H[�r2���(��share/rubygems/rubygems/source/vendor.rbnu�[���PK9H[�n��+#�share/rubygems/rubygems/source/installed.rbnu�[���PK9H[�`I>��/�share/rubygems/rubygems/source/specific_file.rbnu�[���PK9H[�.-��5^�share/rubygems/rubygems/resolver/api_specification.rbnu�[���PK9H[a��(X	X	1��share/rubygems/rubygems/resolver/specification.rbnu�[���PK9H[�ڠ'��->�share/rubygems/rubygems/resolver/index_set.rbnu�[���PK9H[J��{$	$	6C�share/rubygems/rubygems/resolver/dependency_request.rbnu�[���PK9H[�Gbk��.ͼshare/rubygems/rubygems/resolver/vendor_set.rbnu�[���PK9H[8犍��)��share/rubygems/rubygems/resolver/stats.rbnu�[���PK9H[<%t��,��share/rubygems/rubygems/resolver/lock_set.rbnu�[���PK9H[������.��share/rubygems/rubygems/resolver/source_set.rbnu�[���PK9H[I�y��0��share/rubygems/rubygems/resolver/composed_set.rbnu�[���PK9H[���B��share/rubygems/rubygems/resolver/molinillo/lib/molinillo/errors.rbnu�[���PK9H[#X�nnAq�share/rubygems/rubygems/resolver/molinillo/lib/molinillo/state.rbnu�[���PK9H[��M��J�JFP�share/rubygems/rubygems/resolver/molinillo/lib/molinillo/resolution.rbnu�[���PK9H[�*���\U6
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rbnu�[���PK9H[?"ۛ��V~B
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rbnu�[���PK9H[�ŋ:��H�I
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rbnu�[���PK9H[�k��ffD�J
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/resolver.rbnu�[���PK9H[m>���F�Q
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rbnu�[���PK9H[ftd���Z�X
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rbnu�[���PK9H[�E�h��Xh
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rbnu�[���PK9H[vHhȡ�Sm
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rbnu�[���PK9H[��``S:q
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rbnu�[���PK9H[��%>��W�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rbnu�[���PK9H[Vbd��P>�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rbnu�[���PK9H[�ڢ�YYX��
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rbnu�[���PK9H[�[�PPP{�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rbnu�[���PK9H[�8�55`K�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rbnu�[���PK9H[������a�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rbnu�[���PK9H[`�kLG�
share/rubygems/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rbnu�[���PK9H[I=+��;��
share/rubygems/rubygems/resolver/molinillo/lib/molinillo.rbnu�[���PK9H[�iZ��;	�
share/rubygems/rubygems/resolver/installed_specification.rbnu�[���PK9H[4�2�YY4R�
share/rubygems/rubygems/resolver/requirement_list.rbnu�[���PK9H[*6�D��+�
share/rubygems/rubygems/resolver/git_set.rbnu�[���PK9H[�M�DD6��
share/rubygems/rubygems/resolver/lock_specification.rbnu�[���PK9H[��E��'��
share/rubygems/rubygems/resolver/set.rbnu�[���PK9H[��I�

,�
share/rubygems/rubygems/resolver/conflict.rbnu�[���PK9H[�����	�	+Lshare/rubygems/rubygems/resolver/api_set.rbnu�[���PK9H[�w<1�
share/rubygems/rubygems/resolver/installer_set.rbnu�[���PK9H[ۄ�U;;6�!share/rubygems/rubygems/resolver/spec_specification.rbnu�[���PK9H[]�Sm''7�&share/rubygems/rubygems/resolver/local_specification.rbnu�[���PK9H[z��2tt,#*share/rubygems/rubygems/resolver/best_set.rbnu�[���PK9H[_��kk6�0share/rubygems/rubygems/resolver/activation_request.rbnu�[���PK9H[D���RR-�<share/rubygems/rubygems/resolver/molinillo.rbnu�[���PK9H[�3�$EE8s=share/rubygems/rubygems/resolver/vendor_specification.rbnu�[���PK9H[e���5 @share/rubygems/rubygems/resolver/git_specification.rbnu�[���PK9H[�eL��7�Eshare/rubygems/rubygems/resolver/index_specification.rbnu�[���PK9H[nE#/�Kshare/rubygems/rubygems/resolver/current_set.rbnu�[���PK9H[��4�	�	cMshare/rubygems/rubygems/util.rbnu�[���PK9H[.[�'SWshare/rubygems/rubygems/source_local.rbnu�[���PK9H[&��*-*-"�Xshare/rubygems/rubygems/indexer.rbnu�[���PK9H[;���	�	.8�share/rubygems/rubygems/core_ext/kernel_gem.rbnu�[���PK9H[�� &��/a�share/rubygems/rubygems/core_ext/kernel_warn.rbnu�[���PK9H[D��nn2`�share/rubygems/rubygems/core_ext/kernel_require.rbnu�[���PK9H[P��2
2
&0�share/rubygems/rubygems/source_list.rbnu�[���PK9H[@L///.��share/rubygems/rubygems/installer_test_case.rbnu�[���PK9H[=��W8585+E�share/rubygems/rubygems/user_interaction.rbnu�[���PK9H[���##/�share/rubygems/rubygems/local_remote_options.rbnu�[���PK9H[3k݃��&Zshare/rubygems/rubygems/mock_gem_ui.rbnu�[���PK9H[T�a%:share/rubygems/rubygems/uri_parser.rbnu�[���PK9H[�$�(�share/rubygems/rubygems/available_set.rbnu�[���PK9H[og�

("share/rubygems/rubygems/uri_formatter.rbnu�[���PK9H[N]�zz$p%share/rubygems/rubygems/syck_hack.rbnu�[���PK9H[_~Zyy.>.share/rubygems/rubygems/basic_specification.rbnu�[���PK9H[P�Y��U�UMshare/man/man5/gemfile.5nu�[���PK9H[߃71��ޢshare/man/man1/bundle-doctor.1nu�[���PK9H[��#ii��share/man/man1/bundle-exec.1nu�[���PK9H[ڵ����m�share/man/man1/bundle-info.1nu�[���PK9H[L�r4646y�share/man/man1/bundle-update.1nu�[���PK9H[�������share/man/man1/bundle-package.1nu�[���PK9H[�v�aDDIshare/man/man1/bundle-open.1nu�[���PK9H[��"���
share/man/man1/bundle-show.1nu�[���PK9H[������
share/man/man1/rake.1nu�[���PK9H[j�����share/man/man1/bundle-gem.1nu�[���PK9H[��\

�)share/man/man1/bundle.1nu�[���PK9H[��@|�J�J�7share/man/man1/ruby.1nu�[���PK:H[_D��;; ��share/man/man1/bundle-platform.1nu�[���PK:H[Y*yPPE�share/man/man1/bundle-remove.1nu�[���PK:H[0����share/man/man1/erb.1nu�[���PK:H[��}��%�share/man/man1/bundle-inject.1nu�[���PK:H[�K��� T�share/man/man1/bundle-pristine.1nu�[���PK:H[���� 1�share/man/man1/bundle-binstubs.1nu�[���PK:H[��H`��B�share/man/man1/bundle-check.1nu�[���PK:H[�C�#TTT�share/man/man1/bundle-config.1nu�[���PK:H[������share/man/man1/bundle-cache.1nu�[���PK:H[`��"ff�share/man/man1/bundle-list.1nu�[���PK:H[&��66�share/man/man1/bundle-init.1nu�[���PK:H[J4�MPPshare/man/man1/bundle-viz.1nu�[���PK:H[�
[[�share/man/man1/bundle-clean.1nu�[���PK:H[�<�M��Eshare/man/man1/irb.1nu�[���PK:H[3�8:��$/share/man/man1/ri.1nu�[���PK:H[<=��qBqBJDshare/man/man1/bundle-install.1nu�[���PK:H[�� 
�share/man/man1/bundle-outdated.1nu�[���PK:H[Ԕ�Zvv?�share/man/man1/bundle-lock.1nu�[���PK:H[-������share/man/man1/bundle-add.1nu�[���PK:H[I��>>!�share/gems/cache/rackup-2.1.0.gemnu�[���PK:H[�c����#n�share/gems/cache/ruby-lsapi-5.6.gemnu�[���PK:H[�"������share/gems/cache/rack-3.0.8.gemnu�[���PK:H[v��-��.\share/gems/specifications/rackup-2.1.0.gemspecnu�[���PK:H[]!���2`cshare/gems/specifications/io-console-0.5.6.gemspecnu�[���PK:H[�ʂ?ii8�gshare/gems/specifications/default/stringio-0.1.0.gemspecnu�[���PK:H[��@F��<�lshare/gems/specifications/default/did_you_mean-1.4.0.gemspecnu�[���PK:H[�N;oo6�tshare/gems/specifications/default/logger-1.4.2.gemspecnu�[���PK:H[��E3�{share/gems/specifications/default/etc-1.1.0.gemspecnu�[���PK:H['1O;��9�share/gems/specifications/default/fileutils-1.4.1.gemspecnu�[���PK:H[vTH���7�share/gems/specifications/default/mutex_m-0.1.0.gemspecnu�[���PK:H[��e..7+�share/gems/specifications/default/strscan-1.0.3.gemspecnu�[���PK:H[��0yy:��share/gems/specifications/default/getoptlong-0.1.0.gemspecnu�[���PK:H[��KE9
9
7��share/gems/specifications/default/rexml-3.2.3.1.gemspecnu�[���PK:H[�~V6��5C�share/gems/specifications/default/prime-0.1.1.gemspecnu�[���PK:H[8�o��8S�share/gems/specifications/default/net-smtp-0.1.0.gemspecnu�[���PK:H['ei��5l�share/gems/specifications/default/fcntl-1.0.0.gemspecnu�[���PK:H[�V����9f�share/gems/specifications/default/benchmark-0.1.0.gemspecnu�[���PK:H[7}����8_�share/gems/specifications/default/observer-0.1.0.gemspecnu�[���PK:H[R��3��share/gems/specifications/default/dbm-1.1.0.gemspecnu�[���PK:H[�Y�((4��share/gems/specifications/default/sdbm-1.0.0.gemspecnu�[���PK:H[��V��4��share/gems/specifications/default/zlib-1.1.0.gemspecnu�[���PK:H[�+�Q��9��share/gems/specifications/default/singleton-0.1.0.gemspecnu�[���PK:H[����	�	8��share/gems/specifications/default/readline-0.0.2.gemspecnu�[���PK:H[��Rn	n	3�share/gems/specifications/default/rss-0.2.8.gemspecnu�[���PK:H[/���6��share/gems/specifications/default/pstore-0.1.0.gemspecnu�[���PK:H[,�5{{6��share/gems/specifications/default/reline-0.1.5.gemspecnu�[���PK:H[�i�>5��share/gems/specifications/default/cgi-0.1.0.2.gemspecnu�[���PK:H[&k�ff5'�share/gems/specifications/default/open3-0.1.0.gemspecnu�[���PK:H[�N��3��share/gems/specifications/default/csv-3.1.2.gemspecnu�[���PK:H[n��SS;F�share/gems/specifications/default/forwardable-1.3.1.gemspecnu�[���PK:H[��+|006�share/gems/specifications/default/ipaddr-1.2.2.gemspecnu�[���PK:H[���4�share/gems/specifications/default/yaml-0.1.0.gemspecnu�[���PK:H[.iAzz4�share/gems/specifications/default/date-3.0.3.gemspecnu�[���PK:H[�^\�^^4�share/gems/specifications/default/gdbm-2.1.0.gemspecnu�[���PK:H[���6Kshare/gems/specifications/default/tracer-0.1.0.gemspecnu�[���PK:H[��z�..<�share/gems/specifications/default/readline-ext-0.1.0.gemspecnu�[���PK:H[]��K��6Yshare/gems/specifications/default/matrix-0.2.0.gemspecnu�[���PK:H[9�b_6�share/gems/specifications/default/fiddle-1.0.0.gemspecnu�[���PK:H[��N��6�%share/gems/specifications/default/uri-0.10.0.2.gemspecnu�[���PK:H[��2��7&+share/gems/specifications/default/ostruct-0.2.0.gemspecnu�[���PK:H[�D��	�	70share/gems/specifications/default/webrick-1.6.1.gemspecnu�[���PK:H[�C���8`:share/gems/specifications/default/delegate-0.1.0.gemspecnu�[���PK:H[~�����7�>share/gems/specifications/default/timeout-0.1.0.gemspecnu�[���PK:H[����xx7�Bshare/gems/specifications/default/net-pop-0.1.0.gemspecnu�[���PK:H[��24885�Fshare/gems/specifications/default/racc-1.4.16.gemspecnu�[���PK:H[43g:\\-"Rshare/gems/specifications/rake-13.0.1.gemspecnu�[���PK:H[��lй�0�Yshare/gems/specifications/ruby-lsapi-5.6.gemspecnu�[���PK:H[�K'�)�)0�]share/gems/specifications/bundler-2.2.24.gemspecnu�[���PK:H[� ��2"�share/gems/specifications/bigdecimal-2.0.0.gemspecnu�[���PK:H[���Ք�,��share/gems/specifications/json-2.3.0.gemspecnu�[���PK:H[`C#�	�	+p�share/gems/specifications/irb-1.2.6.gemspecnu�[���PK:H[�ׂii/g�share/gems/specifications/openssl-2.1.4.gemspecnu�[���PK:H[ş�߽�./�share/gems/specifications/rdoc-6.2.1.1.gemspecnu�[���PK:H[&��߻	�	-J�share/gems/specifications/psych-3.1.0.gemspecnu�[���PK:H[l�zz,b�share/gems/specifications/rack-3.0.8.gemspecnu�[���PK:H[�ʏM��-8�share/gems/gems/bundler-2.2.24/libexec/bundlenuȯ��PK:H[�D�\\.p�share/gems/gems/bundler-2.2.24/libexec/bundlernuȯ��PK:H[^�
�^�^-*�share/gems/gems/bundler-2.2.24/lib/bundler.rbnu�[���PK:H[+���3;8share/gems/gems/bundler-2.2.24/lib/bundler/index.rbnu�[���PK:H[|��YY:sMshare/gems/gems/bundler-2.2.24/lib/bundler/vendored_uri.rbnu�[���PK:H[��F��=6Nshare/gems/gems/bundler-2.2.24/lib/bundler/lockfile_parser.rbnu�[���PK:H[ی�YYB}kshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client.rbnu�[���PK:H[�oJ��4Hzshare/gems/gems/bundler-2.2.24/lib/bundler/errors.rbnu�[���PK:H[��!6n	n	=Y�share/gems/gems/bundler-2.2.24/lib/bundler/yaml_serializer.rbnu�[���PK:H[<��,,@4�share/gems/gems/bundler-2.2.24/lib/bundler/settings/validator.rbnu�[���PK:H[aXe�XX=Уshare/gems/gems/bundler-2.2.24/lib/bundler/friendly_errors.rbnu�[���PK:H[i�	*1��share/gems/gems/bundler-2.2.24/lib/bundler/env.rbnu�[���PK:H[?�z��8�share/gems/gems/bundler-2.2.24/lib/bundler/gem_helper.rbnu�[���PK:H[h�c��C��share/gems/gems/bundler-2.2.24/lib/bundler/environment_preserver.rbnu�[���PK:H[����--<�share/gems/gems/bundler-2.2.24/lib/bundler/shared_helpers.rbnu�[���PK:H[ƣZ���6�share/gems/gems/bundler-2.2.24/lib/bundler/spec_set.rbnu�[���PK:H[N��˾�:�3share/gems/gems/bundler-2.2.24/lib/bundler/process_lock.rbnu�[���PK:H[�q �ccJ7share/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/updater.rbnu�[���PK:H[h����
�
H�Eshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/cache.rbnu�[���PK:H[CX�j��M4Qshare/gems/gems/bundler-2.2.24/lib/bundler/compact_index_client/gem_parser.rbnu�[���PK:H[���^cc9LUshare/gems/gems/bundler-2.2.24/lib/bundler/gem_helpers.rbnu�[���PK:H[t�J�TT4eshare/gems/gems/bundler-2.2.24/lib/bundler/source.rbnu�[���PK:H[j�[�]
]
4�qshare/gems/gems/bundler-2.2.24/lib/bundler/worker.rbnu�[���PK:H[)PY�\\A�|share/gems/gems/bundler-2.2.24/lib/bundler/similarity_detector.rbnu�[���PK:H[Oɧ�5^�share/gems/gems/bundler-2.2.24/lib/bundler/gemdeps.rbnu�[���PK:H[R�L��5j�share/gems/gems/bundler-2.2.24/lib/bundler/cli/add.rbnu�[���PK:H[�`K��6��share/gems/gems/bundler-2.2.24/lib/bundler/cli/lock.rbnu�[���PK:H[��889��share/gems/gems/bundler-2.2.24/lib/bundler/cli/console.rbnu�[���PK:H["�G���:/�share/gems/gems/bundler-2.2.24/lib/bundler/cli/binstubs.rbnu�[���PK:H[l���ww8��share/gems/gems/bundler-2.2.24/lib/bundler/cli/remove.rbnu�[���PK:H[Ʊ�e}}8l�share/gems/gems/bundler-2.2.24/lib/bundler/cli/config.rbnu�[���PK:H[��RR6Q�share/gems/gems/bundler-2.2.24/lib/bundler/cli/list.rbnu�[���PK;H[�2�25	�share/gems/gems/bundler-2.2.24/lib/bundler/cli/gem.rbnu�[���PK;H[lqOww8�share/gems/gems/bundler-2.2.24/lib/bundler/cli/inject.rbnu�[���PK;H[%4����:�share/gems/gems/bundler-2.2.24/lib/bundler/cli/platform.rbnu�[���PK;H[��)``7�share/gems/gems/bundler-2.2.24/lib/bundler/cli/clean.rbnu�[���PK;H[��,���8�share/gems/gems/bundler-2.2.24/lib/bundler/cli/update.rbnu�[���PK;H[��w#w#9�share/gems/gems/bundler-2.2.24/lib/bundler/cli/install.rbnu�[���PK;H[�=��"$"$:�:share/gems/gems/bundler-2.2.24/lib/bundler/cli/outdated.rbnu�[���PK;H[��W�{
{
6Z_share/gems/gems/bundler-2.2.24/lib/bundler/cli/info.rbnu�[���PK;H[j�����6;jshare/gems/gems/bundler-2.2.24/lib/bundler/cli/show.rbnu�[���PK;H[�|�jj7�sshare/gems/gems/bundler-2.2.24/lib/bundler/cli/cache.rbnu�[���PK;H[V�9��6Zxshare/gems/gems/bundler-2.2.24/lib/bundler/cli/fund.rbnu�[���PK;H[�;�.>>5D|share/gems/gems/bundler-2.2.24/lib/bundler/cli/viz.rbnu�[���PK;H[3�LT��:�share/gems/gems/bundler-2.2.24/lib/bundler/cli/pristine.rbnu�[���PK;H[�����8އshare/gems/gems/bundler-2.2.24/lib/bundler/cli/doctor.rbnu�[���PK;H[��N�

6�share/gems/gems/bundler-2.2.24/lib/bundler/cli/exec.rbnu�[���PK;H[�u)7��share/gems/gems/bundler-2.2.24/lib/bundler/cli/issue.rbnu�[���PK;H[Ak���8�share/gems/gems/bundler-2.2.24/lib/bundler/cli/plugin.rbnu�[���PK;H[������6K�share/gems/gems/bundler-2.2.24/lib/bundler/cli/open.rbnu�[���PK;H[m�/Ċ�6��share/gems/gems/bundler-2.2.24/lib/bundler/cli/init.rbnu�[���PK;H[��8r�share/gems/gems/bundler-2.2.24/lib/bundler/cli/common.rbnu�[���PK;H[���7��share/gems/gems/bundler-2.2.24/lib/bundler/cli/check.rbnu�[���PK;H[B$h�HH4s�share/gems/gems/bundler-2.2.24/lib/bundler/mirror.rbnu�[���PK;H[�'��:�share/gems/gems/bundler-2.2.24/lib/bundler/feature_flag.rbnu�[���PK;H[��,dd;O�share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/index.rbnu�[���PK;H[�Vw��C�share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/compact_index.rbnu�[���PK;H[�����:hshare/gems/gems/bundler-2.2.24/lib/bundler/fetcher/base.rbnu�[���PK;H[�]�YY@�share/gems/gems/bundler-2.2.24/lib/bundler/fetcher/downloader.rbnu�[���PK;H[L�;8�
�
@vshare/gems/gems/bundler-2.2.24/lib/bundler/fetcher/dependency.rbnu�[���PK;H[\�����2|'share/gems/gems/bundler-2.2.24/lib/bundler/vlad.rbnu�[���PK;H[�0���:�)share/gems/gems/bundler-2.2.24/lib/bundler/rubygems_ext.rbnu�[���PK;H[e��o}O}O1�Cshare/gems/gems/bundler-2.2.24/lib/bundler/dsl.rbnu�[���PK;H[_l�__=��share/gems/gems/bundler-2.2.24/lib/bundler/vendored_tmpdir.rbnu�[���PK;H[�z�r�r�1X�share/gems/gems/bundler-2.2.24/lib/bundler/cli.rbnu�[���PK;H[�-L00<+-share/gems/gems/bundler-2.2.24/lib/bundler/version_ranges.rbnu�[���PK;H[9r�Q''4�<share/gems/gems/bundler-2.2.24/lib/bundler/inline.rbnu�[���PK;H[�wj5��<RHshare/gems/gems/bundler-2.2.24/lib/bundler/build_metadata.rbnu�[���PK;H[��xD�Mshare/gems/gems/bundler-2.2.24/lib/bundler/uri_credentials_filter.rbnu�[���PK;H[3��,��3.Sshare/gems/gems/bundler-2.2.24/lib/bundler/graph.rbnu�[���PK;H[�wz��,�,5�gshare/gems/gems/bundler-2.2.24/lib/bundler/fetcher.rbnu�[���PK;H[�z�]EEBєshare/gems/gems/bundler-2.2.24/lib/bundler/rubygems_integration.rbnu�[���PK;H[��$��>`�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-doctor.1nu�[���PK;H[>�^gHH<W�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle.1.ronnnu�[���PK;H[�ߕ}}E�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-platform.1.ronnnu�[���PK;H[9IG���A��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-lock.1.ronnnu�[���PK;H[�^	;ff<K�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-exec.1nu�[���PK<H[w,w��1�1Cshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-update.1.ronnnu�[���PK<H[n��½�<qJshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-info.1nu�[���PK<H[;��7676>�Lshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-update.1nu�[���PK<H['uw^��@?�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-add.1.ronnnu�[���PK<H[B��5UUC��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-inject.1.ronnnu�[���PK<H[�P~�||AT�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-exec.1.ronnnu�[���PK<H[�?�OAA<A�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-open.1nu�[���PK<H[��#s��E�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-pristine.1.ronnnu�[���PK<H[Iߚ�
�
E6�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-outdated.1.ronnnu�[���PK<H[�V�#A��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-list.1.ronnnu�[���PK<H[��H��<�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-show.1nu�[���PK<H[^�-;!�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-gem.1nu�[���PK<H[N��-7��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle.1nu�[���PK<H[�C��..@��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-gem.1.ronnnu�[���PK<H[˱[y��C��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-remove.1.ronnnu�[���PK<H[Ag��88@��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-platform.1nu�[���PK<H[3�dMM>��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-remove.1nu�[���PK<H[�5���AM�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-open.1.ronnnu�[���PK<H[�|=��>x�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-inject.1nu�[���PK<H[��+B+BD�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-install.1.ronnnu�[���PK<H[�j����@cEshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-pristine.1nu�[���PK<H[�Y|LL@]Lshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-binstubs.1nu�[���PK<H[m�����=Sshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-check.1nu�[���PK<H["&Yx�S�S>HWshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-config.1nu�[���PK<H[l�4��B`�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-clean.1.ronnnu�[���PK<H[�U�M��=��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-cache.1nu�[���PK<H[1�~��E�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-binstubs.1.ronnnu�[���PK<H[��,��<�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-list.1nu�[���PK<H[��h���A�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-init.1.ronnnu�[���PK<H[�2P33<+�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-init.1nu�[���PK<H[��MM;��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-viz.1nu�[���PK<H[�8��XX=��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-clean.1nu�[���PK<H[��(V��@G�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-viz.1.ronnnu�[���PK<H[6�H��Cu�share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-doctor.1.ronnnu�[���PK<H[�)&LYYB��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-check.1.ronnnu�[���PK<H[����-N-N=��share/gems/gems/bundler-2.2.24/lib/bundler/man/gemfile.5.ronnnu�[���PK<H[�8EDFDF?0share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-install.1nu�[���PK<H[�Q�d�U�U8�vshare/gems/gems/bundler-2.2.24/lib/bundler/man/gemfile.5nu�[���PK<H[�|)$J$JC��share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-config.1.ronnnu�[���PK<H[���qqAhshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-info.1.ronnnu�[���PK<H[��k�BJshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-cache.1.ronnnu�[���PK<H[\'i�TTA;%share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-show.1.ronnnu�[���PK<H[����@(share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-outdated.1nu�[���PK<H[���mss<R7share/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-lock.1nu�[���PK<H[��&��;1Dshare/gems/gems/bundler-2.2.24/lib/bundler/man/bundle-add.1nu�[���PK<H[�X6��5jJshare/gems/gems/bundler-2.2.24/lib/bundler/version.rbnu�[���PK<H[�6��@�Kshare/gems/gems/bundler-2.2.24/lib/bundler/lockfile_generator.rbnu�[���PK<H[�eA�ss8�Tshare/gems/gems/bundler-2.2.24/lib/bundler/capistrano.rbnu�[���PK<H[��[

7�Xshare/gems/gems/bundler-2.2.24/lib/bundler/ui/silent.rbnu�[���PK<H[X�ȷr
r
6�\share/gems/gems/bundler-2.2.24/lib/bundler/ui/shell.rbnu�[���PK<H[��K669�jshare/gems/gems/bundler-2.2.24/lib/bundler/ui/rg_proxy.rbnu�[���PK<H[ؤ�-""8rlshare/gems/gems/bundler-2.2.24/lib/bundler/source_map.rbnu�[���PK<H[�y<22d�sshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rbnu�[���PK<H[�\?�66`…share/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rbnu�[���PK<H[�q�.YYg��share/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rbnu�[���PK<H[��e��
�
Xx�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/connection_pool/lib/connection_pool.rbnu�[���PK<H[6�lffr��share/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rbnu�[���PK<H[hO8��e��share/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rbnu�[���PK<H[�(ц��k�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rbnu�[���PK<H[C�}�m�m`{�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rbnu�[���PK<H[�	IIF�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/tmpdir/lib/tmpdir.rbnu�[���PK<H[U�#�||S�,share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/errors.rbnu�[���PK<H[c�Ou((R�Dshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/state.rbnu�[���PK<H[��=����W7Lshare/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rbnu�[���PK=H[�ۦ���mO�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rbnu�[���PK=H[9DD�??gz�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rbnu�[���PK=H[.��"YP�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rbnu�[���PK=H[~��UX�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rbnu�[���PK=H[+��4��W��share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rbnu�[���PK=H[!gpt[[kN�share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rbnu�[���PK=H[�	?=WWiD share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rbnu�[���PK=H[@G�{��d4
 share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rbnu�[���PK=H[Ի�HHdd share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rbnu�[���PK=H[�X�Acch@& share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rbnu�[���PK=H[�.mV��a;- share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rbnu�[���PK=H[���D""io0 share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rbnu�[���PK=H[5	�a*8 share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rbnu�[���PK=H[:ʘ!��q�F share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rbnu�[���PK=H[D�NjooryM share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rbnu�[���PK=H[���� � ]�U share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rbnu�[���PK=H[l��HYYL�v share/gems/gems/bundler-2.2.24/lib/bundler/vendor/molinillo/lib/molinillo.rbnu�[���PK=H[�wL{{Eqx share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ldap.rbnu�[���PK=H[��IFa� share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ldaps.rbnu�[���PK=H[]�F֖֖H�� share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/generic.rbnu�[���PK=H[#TΉQQOC*!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rbnu�[���PK=H[�="�__FD!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/https.rbnu�[���PK=H[���3��H�F!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/version.rbnu�[���PK=H[��
%%D�G!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/ftp.rbnu�[���PK=H[�ٍ�2G2GO�e!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rbnu�[���PK=H[���M0 0 GI�!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/mailto.rbnu�[���PK=H[M}����E��!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/file.rbnu�[���PK=H[�*@�Q�QG
�!share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/common.rbnu�[���PK=H[����	�	E.)"share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri/http.rbnu�[���PK=H[O�U0�
�
@�3"share/gems/gems/bundler-2.2.24/lib/bundler/vendor/uri/lib/uri.rbnu�[���PK=H[���t/�/�L�A"share/gems/gems/bundler-2.2.24/lib/bundler/vendor/fileutils/lib/fileutils.rbnu�[���PK=H[���q@q@B0#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor.rbnu�[���PK=H[�;��JH#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/command.rbnu�[���PK=H[#I`i#i#H[#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/group.rbnu�[���PK=H[(��_b'b'I�~#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/runner.rbnu�[���PK=H[����Iͦ#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser.rbnu�[���PK=H[�dq=77WЧ#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rbnu�[���PK=H[Y�t}}T��#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rbnu�[���PK=H[�ᡇ++Q��#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/nested_context.rbnu�[���PK=H[��)�)J;�#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions.rbnu�[���PK@H[��llSo�#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/arguments.rbnu�[���PK@H[�aq���P^�#share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/option.rbnu�[���PK@H[�$IJ;;Qy$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/options.rbnu�[���PK@H[i�R5$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/parser/argument.rbnu�[���PK@H[I���q3q3\�%$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rbnu�[���PK@H[,;��		T�Y$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/directory.rbnu�[���PK@H[O�&��ZEi$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rbnu�[���PK@H[s	��mmV�z$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/create_link.rbnu�[���PK@H[te�))V��$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/create_file.rbnu�[���PK@H[V�]�[m�$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rbnu�[���PK@H[����`�`G��$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/base.rbnu�[���PK@H[��홇�N&�$share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/line_editor.rbnu�[���PK@H[5�,,J+%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/version.rbnu�[���PK@H[��P?%	%	H�%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell.rbnu�[���PK@H[.����Mn%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/html.rbnu�[���PK@H[1�UyXXN�%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/color.rbnu�[���PK@H[�6���9�9NX1%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/shell/basic.rbnu�[���PK@H[ɗc���H�k%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/error.rbnu�[���PK@H[��LuvvN�x%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/rake_compat.rbnu�[���PK@H[��j�U#U#G�%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/util.rbnu�[���PK@H[8��h��%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rbnu�[���PK@H[_-[�IIMǮ%share/gems/gems/bundler-2.2.24/lib/bundler/vendor/thor/lib/thor/invocation.rbnu�[���PK@H[�u��w-w-7��%share/gems/gems/bundler-2.2.24/lib/bundler/installer.rbnu�[���PK@H[W�|��0k�%share/gems/gems/bundler-2.2.24/lib/bundler/ui.rbnu�[���PK@H[�h&(��B�%share/gems/gems/bundler-2.2.24/lib/bundler/remote_specification.rbnu�[���PK@H[١�"2)2)5�&share/gems/gems/bundler-2.2.24/lib/bundler/runtime.rbnu�[���PK@H[6�e$ll7f/&share/gems/gems/bundler-2.2.24/lib/bundler/deprecate.rbnu�[���PK@H[�ω~%%893&share/gems/gems/bundler-2.2.24/lib/bundler/dependency.rbnu�[���PK@H[��Ǵ�;�F&share/gems/gems/bundler-2.2.24/lib/bundler/vendored_thor.rbnu�[���PK@H[un�uu3�G&share/gems/gems/bundler-2.2.24/lib/bundler/retry.rbnu�[���PK@H[PCm��:�N&share/gems/gems/bundler-2.2.24/lib/bundler/ruby_version.rbnu�[���PK@H[��[5��A�`&share/gems/gems/bundler-2.2.24/lib/bundler/vendored_persistent.rbnu�[���PK@H[��(|{{@&g&share/gems/gems/bundler-2.2.24/lib/bundler/stub_specification.rbnu�[���PK@H[�`f�<�<6s&share/gems/gems/bundler-2.2.24/lib/bundler/resolver.rbnu�[���PK@H[	G���7
�&share/gems/gems/bundler-2.2.24/lib/bundler/dep_proxy.rbnu�[���PK@H[Hu��""35�&share/gems/gems/bundler-2.2.24/lib/bundler/setup.rbnu�[���PK@H[0�ee@��&share/gems/gems/bundler-2.2.24/lib/bundler/vendored_fileutils.rbnu�[���PK@H[P����@��&share/gems/gems/bundler-2.2.24/lib/bundler/lazy_specification.rbnu�[���PK@H[�xsn}*}*4��&share/gems/gems/bundler-2.2.24/lib/bundler/plugin.rbnu�[���PK@H[-)����6c�&share/gems/gems/bundler-2.2.24/lib/bundler/ruby_dsl.rbnu�[���PK@H[h����8�&share/gems/gems/bundler-2.2.24/lib/bundler/deployment.rbnu�[���PK@H[.��۬�=�'share/gems/gems/bundler-2.2.24/lib/bundler/source/metadata.rbnu�[���PK@H[g�Y�G�G='share/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems.rbnu�[���PK@H[Ƌ�}(}(8�S'share/gems/gems/bundler-2.2.24/lib/bundler/source/git.rbnu�[���PK@H[�
E�//G�|'share/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems_aggregate.rbnu�[���PK@H[�:U''D��'share/gems/gems/bundler-2.2.24/lib/bundler/source/rubygems/remote.rbnu�[���PK@H[�ƨ'<$�'share/gems/gems/bundler-2.2.24/lib/bundler/source/gemspec.rbnu�[���PK@H[)�g@�#�#B��'share/gems/gems/bundler-2.2.24/lib/bundler/source/git/git_proxy.rbnu�[���PK@H[u�R!xxC�'share/gems/gems/bundler-2.2.24/lib/bundler/source/path/installer.rbnu�[���PK@H[�D�##9ٻ'share/gems/gems/bundler-2.2.24/lib/bundler/source/path.rbnu�[���PK@H[p2Ǥ��7e�'share/gems/gems/bundler-2.2.24/lib/bundler/constants.rbnu�[���PK@H[��{���J��'share/gems/gems/bundler-2.2.24/lib/bundler/templates/Executable.standalonenu�[���PK@H[�I~]��G��'share/gems/gems/bundler-2.2.24/lib/bundler/templates/Executable.bundlernu�[���PK@H[�lq55DY�'share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/rspec.ttnu�[���PK@H[���_ccQ�'share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.ttnu�[���PK@H[���QQJ�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/LICENSE.txt.ttnu�[���PK@H[e�ە��J�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/bin/console.ttnu�[���PK@H[����H�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/bin/setup.ttnu�[���PK@H[7��##M�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/newgem.gemspec.ttnu�[���PK@H[^6)g&&RR(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/circleci/config.yml.ttnu�[���PK@H[g2����H�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/gitignore.ttnu�[���PK@H[�?����RV(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/newgem.h.ttnu�[���PK@H[��M��R�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/newgem.c.ttnu�[���PK@H[9��5ffT(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/ext/newgem/extconf.rb.ttnu�[���PK@H[�+���G�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/Rakefile.ttnu�[���PK@H[!5��PPKA(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/CHANGELOG.md.ttnu�[���PK@H[v��@@X(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/github/workflows/main.yml.ttnu�[���PK@H[��~~I�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/travis.yml.ttnu�[���PK@H[/���++J�(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/rubocop.yml.ttnu�[���PK@H[z��??Ip (share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/exe/newgem.ttnu�[���PK@H[��T(!(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/lib/newgem/version.rb.ttnu�[���PK@H[��Br==L�"(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/lib/newgem.rb.ttnu�[���PK@H[Ҧ+���R~%(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/spec/spec_helper.rb.ttnu�[���PK@H[32
���R�'(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/spec/newgem_spec.rb.ttnu�[���PK@H[�M-n��[
)(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/minitest/test_helper.rb.ttnu�[���PK@H[-��[1*(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/minitest/newgem_test.rb.ttnu�[���PK@H[G�>J��\�+(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.ttnu�[���PK@H[q��{33\�,(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.ttnu�[���PK@H[�!5c|	|	H�.(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/README.md.ttnu�[���PK@H[�rə��F�8(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/Gemfile.ttnu�[���PK@H[�44.��L�:(share/gems/gems/bundler-2.2.24/lib/bundler/templates/newgem/gitlab-ci.yml.ttnu�[���PK@H[”}Ñ�?�;(share/gems/gems/bundler-2.2.24/lib/bundler/templates/Executablenu�[���PK@H[Ba7��<�?(share/gems/gems/bundler-2.2.24/lib/bundler/templates/gems.rbnu�[���PK@H[�t���<�@(share/gems/gems/bundler-2.2.24/lib/bundler/templates/Gemfilenu�[���PK@H[Piy�@
@
A�A(share/gems/gems/bundler-2.2.24/lib/bundler/resolver/spec_group.rbnu�[���PK@H[H�T���D�O(share/gems/gems/bundler-2.2.24/lib/bundler/rubygems_gem_installer.rbnu�[���PK@H[�4��%�%6�a(share/gems/gems/bundler-2.2.24/lib/bundler/injector.rbnu�[���PK@H[�V����<Ӈ(share/gems/gems/bundler-2.2.24/lib/bundler/match_platform.rbnu�[���PK@H[#���:ӊ(share/gems/gems/bundler-2.2.24/lib/bundler/current_ruby.rbnu�[���PK@H[��hFF:ȓ(share/gems/gems/bundler-2.2.24/lib/bundler/psyched_yaml.rbnu�[���PKAH[��y��Jx�(share/gems/gems/bundler-2.2.24/lib/bundler/installer/parallel_installer.rbnu�[���PKAH[��a!��E۳(share/gems/gems/bundler-2.2.24/lib/bundler/installer/gem_installer.rbnu�[���PKAH[{�sEjjBB�(share/gems/gems/bundler-2.2.24/lib/bundler/installer/standalone.rbnu�[���PKAH[•�n��9�(share/gems/gems/bundler-2.2.24/lib/bundler/source_list.rbnu�[���PKAH[�T�ee@A�(share/gems/gems/bundler-2.2.24/lib/bundler/vendored_molinillo.rbnu�[���PKAH[}X���7�(share/gems/gems/bundler-2.2.24/lib/bundler/gem_tasks.rbnu�[���PKAH[.���:�(share/gems/gems/bundler-2.2.24/lib/bundler/plugin/index.rbnu�[���PKAH[Ӄ�nDD;�(share/gems/gems/bundler-2.2.24/lib/bundler/plugin/events.rbnu�[���PKAH[��g�.�.?�)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/api/source.rbnu�[���PKAH["�x��84)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/dsl.rbnu�[���PKAH[{׳��
�
>F;)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer.rbnu�[���PKAH[A���G@I)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer/rubygems.rbnu�[���PKAH[ߛ"MaaB�K)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/installer/git.rbnu�[���PKAH[Φ��AA@yO)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/source_list.rbnu�[���PKAH[�6�PP8*S)share/gems/gems/bundler-2.2.24/lib/bundler/plugin/api.rbnu�[���PKAH[�
.�X�X�8�^)share/gems/gems/bundler-2.2.24/lib/bundler/definition.rbnu�[���PKAH[�4f�++B��)share/gems/gems/bundler-2.2.24/lib/bundler/gem_version_promoter.rbnu�[���PKAH[�X�3�36?�)share/gems/gems/bundler-2.2.24/lib/bundler/settings.rbnu�[���PKAH[$��{��DS/*share/gems/gems/bundler-2.2.24/lib/bundler/endpoint_specification.rbnu�[���PKAH[m�ǯ� � $k?*share/gems/gems/racc-1.4.16/bin/raccnuȯ��PKAH[�>�)��,�`*share/gems/gems/openssl-2.1.4/lib/openssl.rbnu�[���PKAH[d�
Ҽ&�&6�b*share/gems/gems/openssl-2.1.4/lib/openssl/buffering.rbnu�[���PKAH[S�:_CC1�*share/gems/gems/openssl-2.1.4/lib/openssl/x509.rbnu�[���PKAH[B��^��/��*share/gems/gems/openssl-2.1.4/lib/openssl/bn.rbnu�[���PKAH[M��ff2��*share/gems/gems/openssl-2.1.4/lib/openssl/pkcs5.rbnu�[���PKAH[ӡv852523t�*share/gems/gems/openssl-2.1.4/lib/openssl/config.rbnu�[���PKAH[I�1��1�*share/gems/gems/openssl-2.1.4/lib/openssl/pkey.rbnu�[���PKAH[̒O��?�?0�*share/gems/gems/openssl-2.1.4/lib/openssl/ssl.rbnu�[���PKAH[������3O+share/gems/gems/openssl-2.1.4/lib/openssl/digest.rbnu�[���PKAH[w+D��3�$+share/gems/gems/openssl-2.1.4/lib/openssl/cipher.rbnu�[���PKAH[�L���7�++share/gems/gems/io-console-0.5.6/lib/io/console/size.rbnu�[���PKAH[�$(Q�T�T(�-+share/gems/gems/psych-3.1.0/lib/psych.rbnu�[���PKAH[��'K��*�+share/gems/gems/psych-3.1.0/lib/psych/y.rbnu�[���PKAH[���2�+share/gems/gems/psych-3.1.0/lib/psych/exception.rbnu�[���PKAH[��H���7��+share/gems/gems/psych-3.1.0/lib/psych/scalar_scanner.rbnu�[���PKAH[u�>22.x�+share/gems/gems/psych-3.1.0/lib/psych/coder.rbnu�[���PKAH[�`�[��0�+share/gems/gems/psych-3.1.0/lib/psych/handler.rbnu�[���PKAH[��[��/0�+share/gems/gems/psych-3.1.0/lib/psych/parser.rbnu�[���PKAH[ӻ���1>�+share/gems/gems/psych-3.1.0/lib/psych/visitors.rbnu�[���PKAH[�y2K��2��+share/gems/gems/psych-3.1.0/lib/psych/streaming.rbnu�[���PKAH[r���/��+share/gems/gems/psych-3.1.0/lib/psych/stream.rbnu�[���PKAH[�����5��+share/gems/gems/psych-3.1.0/lib/psych/tree_builder.rbnu�[���PKAH[�|��uu:��+share/gems/gems/psych-3.1.0/lib/psych/handlers/recorder.rbnu�[���PKAH[}���A��+share/gems/gems/psych-3.1.0/lib/psych/handlers/document_stream.rbnu�[���PKAH[&�3*II5,�+share/gems/gems/psych-3.1.0/lib/psych/syntax_error.rbnu�[���PKAH[��%��1��+share/gems/gems/psych-3.1.0/lib/psych/versions.rbnu�[���PKAH[f�k	k	.�+share/gems/gems/psych-3.1.0/lib/psych/nodes.rbnu�[���PKAH[�����9��+share/gems/gems/psych-3.1.0/lib/psych/json/ruby_events.rbnu�[���PKAH[��93�+share/gems/gems/psych-3.1.0/lib/psych/json/yaml_events.rbnu�[���PKAH[�Ej��4��+share/gems/gems/psych-3.1.0/lib/psych/json/stream.rbnu�[���PKAH[(�C�ee:��+share/gems/gems/psych-3.1.0/lib/psych/json/tree_builder.rbnu�[���PKAH[*JJ,p�+share/gems/gems/psych-3.1.0/lib/psych/set.rbnu�[���PKAH[���KK-�+share/gems/gems/psych-3.1.0/lib/psych/omap.rbnu�[���PKAH[oe
��5��+share/gems/gems/psych-3.1.0/lib/psych/class_loader.rbnu�[���PKAH[�믍!!7�+share/gems/gems/psych-3.1.0/lib/psych/nodes/sequence.rbnu�[���PKAH[)��))6N,share/gems/gems/psych-3.1.0/lib/psych/nodes/mapping.rbnu�[���PKAH[�ɉ4�
,share/gems/gems/psych-3.1.0/lib/psych/nodes/alias.rbnu�[���PKAH[Ϧ[5L,share/gems/gems/psych-3.1.0/lib/psych/nodes/stream.rbnu�[���PKAH[��AA7�,share/gems/gems/psych-3.1.0/lib/psych/nodes/document.rbnu�[���PKAH[(�%��5Z,share/gems/gems/psych-3.1.0/lib/psych/nodes/scalar.rbnu�[���PKAH["+��

3B#,share/gems/gems/psych-3.1.0/lib/psych/nodes/node.rbnu�[���PKAH[���Z��9�*,share/gems/gems/psych-3.1.0/lib/psych/visitors/emitter.rbnu�[���PKAH[R��(rr=�0,share/gems/gems/psych-3.1.0/lib/psych/visitors/depth_first.rbnu�[���PKAH[�PKK;�3,share/gems/gems/psych-3.1.0/lib/psych/visitors/json_tree.rbnu�[���PKAH[��#<#<;z6,share/gems/gems/psych-3.1.0/lib/psych/visitors/yaml_tree.rbnu�[���PKAH[6�*4gg9s,share/gems/gems/psych-3.1.0/lib/psych/visitors/visitor.rbnu�[���PKAH[�S�ܶ.�.9�t,share/gems/gems/psych-3.1.0/lib/psych/visitors/to_ruby.rbnu�[���PKAH[�R�zgg1��,share/gems/gems/psych-3.1.0/lib/psych/core_ext.rbnu�[���PKAH[;<]];��,share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/jacobian.rbnu�[���PKAH[�,���7��,share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/math.rbnu�[���PKAH[ь��9��,share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/ludcmp.rbnu�[���PKAH[h"A�ZZ9q�,share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/newton.rbnu�[���PKAH[<���74�,share/gems/gems/bigdecimal-2.0.0/lib/bigdecimal/util.rbnu�[���PKAH[ֳs���#Q�,share/gems/gems/rdoc-6.2.1.1/exe/rinuȯ��PKAH[YE[h��%\�,share/gems/gems/rdoc-6.2.1.1/exe/rdocnuȯ��PKAH[{u���(W�,share/gems/gems/rdoc-6.2.1.1/lib/rdoc.rbnu�[���PKAH[e�3��57�,share/gems/gems/rdoc-6.2.1.1/lib/rdoc/token_stream.rbnu�[���PKAH[�M<��}�}9<-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/inline_parser.rbnu�[���PKAH[k����X�X8L�-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/block_parser.rbnu�[���PKAH[�]��2z�-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd/inline.rbnu�[���PKAH[|y����5g�-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/single_class.rbnu�[���PKAH[�H"--2d�-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/top_level.rbnu�[���PKAH[�-�%%4�-share/gems/gems/rdoc-6.2.1.1/lib/rdoc/code_object.rbnu�[���PKAH[W�nYY+b#.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri.rbnu�[���PKAH[u���`x`x0%.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/context.rbnu�[���PKAH[����.֝.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/mixin.rbnu�[���PKAH[o�c��.6�.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/erbio.rbnu�[���PKAH[
[>		-:�.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/attr.rbnu�[���PKAH[epC0��4��.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/meta_method.rbnu�[���PKAH[�at��)�).��.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats.rbnu�[���PKAH[��#�SpSp/��.share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup.rbnu�[���PKAH[�Ԣ�&&3~X/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/any_method.rbnu�[���PKAH[�5�33/u/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser.rbnu�[���PKAH[S�2��2��/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n/text.rbnu�[���PKAH[KzVf	f	4}�/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n/locale.rbnu�[���PKAH[󈗢��6G�/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/normal_module.rbnu�[���PKAH[��tUU1h�/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/store.rbnu�[���PKBH[�L�!660�/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/task.rbnu�[���PKBH[
qh�1��/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/paths.rbnu�[���PKBH[V�nrr5�/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/formatter.rbnu�[���PKBH[��y�y�2��/share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ri/driver.rbnu�[���PKBH[��V*6*6-�Z0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rdoc.rbnu�[���PKBH[�m|`��-N�0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/i18n.rbnu�[���PKBH[�&“��0U�0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/require.rbnu�[���PKBH[��>��-z�0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/text.rbnu�[���PKBH[s���8p�0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/context/section.rbnu�[���PKBH[�/��0x�0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/include.rbnu�[���PKBH[� ������4��0share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ruby.rbnu�[���PKBH[�7��334��1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/text.rbnu�[���PKBH[��9G�G�1P�1share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/c.rbnu�[���PKBH[�4QՆ
�
:�C2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ruby_tools.rbnu�[���PKBH[/��>�>@�N2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/ripper_state_lex.rbnu�[���PKBH[:�ܶ�2)�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/rd.rbnu�[���PKBH[���U��6A�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/simple.rbnu�[���PKBH[O�g��9R�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/changelog.rbnu�[���PKBH[�_A��8s�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/parser/markdown.rbnu�[���PKBH[HLf*q0q00��2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/servlet.rbnu�[���PKBH[����/��2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/extend.rbnu�[���PKBH[p��-}}.��2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/alias.rbnu�[���PKBH[��VU}
}
6j�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/known_classes.rbnu�[���PKBH[+�Z�q{q{0M�2share/gems/gems/rdoc-6.2.1.1/lib/rdoc/options.rbnu�[���PKBH[g�*���5n3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/code_objects.rbnu�[���PKBH[Ȅ���3o3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/anon_class.rbnu�[���PKBH[�v}��6)p3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rubygems_hook.rbnu�[���PKBH[
��=MM0 �3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/version.rbnu�[���PKBH[��cV8ͅ3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/cross_reference.rbnu�[���PKBH[ʥ9e��0K�3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/tom_doc.rbnu�[���PKBH[v�T�DODO5��3share/gems/gems/rdoc-6.2.1.1/lib/rdoc/class_module.rbnu�[���PKBH[�R5���5*
4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/ghost_method.rbnu�[���PKBH[F�v�EE+4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/rd.rbnu�[���PKBH[�I��#$#$4�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/method_attr.rbnu�[���PKBH[�5�8��4F>4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/erb_partial.rbnu�[���PKBH[FM���Y�Y.:@4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/store.rbnu�[���PKBH[�刊--2X�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator.rbnu�[���PKBH[x�����-�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/task.rbnu�[���PKBH[bb�]]1�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/constant.rbnu�[���PKBH[#��@@4��4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/quiet.rbnu�[���PKBH[�
����6V�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/verbose.rbnu�[���PKBH[9)-$005��4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/stats/normal.rbnu�[���PKBH[���$$@E�4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html_crossref.rbnu�[���PKBH[�e�M��?��4share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html_snippet.rbnu�[���PKBH[ʘw�		:!5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_tt_only.rbnu�[���PKBH[�F�VV8�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_label.rbnu�[���PKBH[	7>?��Dg5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_table_of_contents.rbnu�[���PKBH[��<��8�86�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/parser.rbnu�[���PKBH[���;;4�X5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/rule.rbnu�[���PKBH[��p��7$Z5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/heading.rbnu�[���PKBH[��ԄEE4{`5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/list.rbnu�[���PKBH[u�a1��5$h5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_bs.rbnu�[���PKBH[�C�"==7o5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/include.rbnu�[���PKBH[|����?�r5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/regexp_handling.rbnu�[���PKBH[�Q���7�u5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_rdoc.rbnu�[���PKBH[�<���9�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attr_span.rbnu�[���PKBH[�Т���BD�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/indented_paragraph.rbnu�[���PKBH[�fcr��9@�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/list_item.rbnu�[���PKBH[N�_���;��5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/block_quote.rbnu�[���PKBH[WY���8�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/document.rbnu�[���PKBH[V���7�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_test.rbnu�[���PKBH[�6WG!G!;߯5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/pre_process.rbnu�[���PKBH[f�!r r A��5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attribute_manager.rbnu�[���PKBH[-Ǘ��9t�5share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/formatter.rbnu�[���PKBH[���|�"�"7�6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_html.rbnu�[���PKBH[�M����3�+6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/raw.rbnu�[���PKBH[d����9�/6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/paragraph.rbnu�[���PKBH[6%�VeeCO26share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_joined_paragraph.rbnu�[���PKBH[ߦo��<'76share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attr_changer.rbnu�[���PKBH[�t�ԇ�:;96share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/blank_line.rbnu�[���PKBH[f�Q`667,;6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_ansi.rbnu�[���PKBH[�ھ��:�C6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/attributes.rbnu�[���PKBH[� t{ll;0I6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/to_markdown.rbnu�[���PKBH[�y ��:X6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/hard_break.rbnu�[���PKBH[[n�A##8/Z6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markup/verbatim.rbnu�[���PKBH[mh
fE�E�1�_6share/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown.rbnu�[���PKBH[�W,���5`D<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/normal_class.rbnu�[���PKBH[f�=w��5LM<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/ri.rbnu�[���PKBH[ДU�



9�O<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/markup.rbnu�[���PKBH[��C�..M�\<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/class.rhtmlnu�[���PKBH[�3�^^O�r<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_footer.rhtmlnu�[���PKBH[J��i��X|t<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtmlnu�[���PKBH[
y����M�v<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_head.rhtmlnu�[���PKBH[�޹�[�z<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtmlnu�[���PKBH[
N��NNY&}<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/servlet_not_found.rhtmlnu�[���PKBH[A-����Y�~<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtmlnu�[���PKBH[�Z�mmW2�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_green.pngnu�[���PKBH[Os~���P&�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/add.pngnu�[���PKBH[��U�ttU��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/arrow_up.pngnu�[���PKBH[��bbS|�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/wrench.pngnu�[���PKBH[#۸�PPQa�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/ruby.pngnu�[���PKBH[�=V��`2�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.pngnu�[���PKBH[0���R��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/brick.pngnu�[���PKBH[(?�Y��Yב<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_black.pngnu�[���PKBH[
�OOS3�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/plugin.pngnu�[���PKBH["�55]�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_white_width.pngnu�[���PKBH[=k��_Ǘ<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.pngnu�[���PKBH[h˟�eeV'�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/tag_green.pngnu�[���PKBH[���(VV\�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/page_white_text.pngnu�[���PKBH[��AaaX�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/transparent.pngnu�[���PKBH[��Q��]ݞ<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gifnu�[���PKBH[�P��Sh�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/delete.pngnu�[���PKBH[�ErrQ��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/date.pngnu�[���PKBH[���<XXU��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/tag_blue.pngnu�[���PKCH[7��Q��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/zoom.pngnu�[���PKCH[J���Q��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/find.pngnu�[���PKCH[�CCJUUT��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/package.pngnu�[���PKCH[R�7���W��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/brick_link.pngnu�[���PKCH[>�)oHHZ+�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/wrench_orange.pngnu�[���PKCH[$V���X��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/macFFBgHack.pngnu�[���PKCH[�S�PT�<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/images/bug.pngnu�[���PKCH[���V�&�&N��<share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/css/rdoc.cssnu�[���PKCH[;9Iv��O�=share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/css/fonts.cssnu�[���PKCH[��׫aT=share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttfnu�[���PKCH[�՞�w�wX�2>share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttfnu�[���PKCH[��>�q�qV1�?share/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttfnu�[���PKCH[5�  ^�Ashare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttfnu�[���PKCH[䍒�TtTt^14Bshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttfnu�[���PKCH[Z��o�o\�Cshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttfnu�[���PKCH[.u�

X�Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtmlnu�[���PKCH[�B�5��Y(Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtmlnu�[���PKCH[`	e��LgEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/page.rhtmlnu�[���PKCH[�<E��T�Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/servlet_root.rhtmlnu�[���PKCH[�̸QQZ�&Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtmlnu�[���PKCH[��13	3	P�(Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/js/darkfish.jsnu�[���PKCH[��N�2Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/js/search.jsnu�[���PKCH[�qqW ?Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtmlnu�[���PKCH[���-��bAEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtmlnu�[���PKCH[�����Y�CEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/table_of_contents.rhtmlnu�[���PKCH[~3�FFVJEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtmlnu�[���PKCH[���X�KEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtmlnu�[���PKCH[*�f���W�MEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtmlnu�[���PKCH[+<ߐ<<Y
QEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtmlnu�[���PKCH[=���Y�REshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtmlnu�[���PKCH[� [::MUEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/darkfish/index.rhtmlnu�[���PKCH[P�^���R�WEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/json_index/js/searcher.jsnu�[���PKCH[��r�
�
TrEshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/template/json_index/js/navigation.jsnu�[���PKCH[����QQ;3}Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/darkfish.rbnu�[���PKCH[��9��Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/po.rbnu�[���PKCH[n��H��Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/message_extractor.rbnu�[���PKCH[�jl{��?=�Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot/po_entry.rbnu�[���PKCH[�q���=��Eshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/json_index.rbnu�[���PKCH[b�G		6�Fshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/generator/pot.rbnu�[���PKCH[��y��1Fshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/encoding.rbnu�[���PKCH[��LRh$h$:m!Fshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown/literals.rbnu�[���PKCH[OG�!�!�:?FFshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/markdown/entities.rbnu�[���PKCH[c��7��0�Gshare/gems/gems/rdoc-6.2.1.1/lib/rdoc/comment.rbnu�[���PKCH[��MM76Gshare/gems/gems/ruby-lsapi-5.6/scripts/lsruby_runner.rbnuȯ��PKCH[j����3�31�:Gshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapi.sonuȯ��PKCH[
3O8a�a�3�nHshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.cnu�[���PKCH[�W	q,,3�@Jshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapidef.hnu�[���PKCH[:DSJshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/.sitearchdir.timenu�[���PKCH[�Ҧd�(�(3�SJshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.onu�[���PKCH[d�C�R[R[1�|Oshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsruby.cnu�[���PKCH[��Y�/�/3��Oshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsapilib.hnu�[���PKCH[�7Zw��3�Pshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/extconf.rbnu�[���PKCH[��Լ#�#1K
Pshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/Makefilenu�[���PKCH[4�����1h.Pshare/gems/gems/ruby-lsapi-5.6/ext/lsapi/lsruby.onu�[���PKCH[������9�	Rshare/gems/gems/ruby-lsapi-5.6/examples/lsapi_with_cgi.rbnuȯ��PKCH[�*��4Rshare/gems/gems/ruby-lsapi-5.6/examples/testlsapi.rbnuȯ��PKCH[�^wͱ�%�Rshare/gems/gems/ruby-lsapi-5.6/READMEnu�[���PKCH[j2��3�"Rshare/gems/gems/ruby-lsapi-5.6/rails/dispatch.lsapinuȯ��PKCH[�##B�B�'�$Rshare/gems/gems/ruby-lsapi-5.6/setup.rbnu�[���PKCH[whf:��,��Rshare/gems/gems/ruby-lsapi-5.6/lsapi.gemspecnu�[���PKCH[ǻ��ii'g�Rshare/gems/gems/rackup-2.1.0/bin/rackupnuȯ��PKCH[e
�ee('�Rshare/gems/gems/rackup-2.1.0/security.mdnu�[���PKCH[z����'�Rshare/gems/gems/rackup-2.1.0/license.mdnu�[���PKCH[�F��;;2��Rshare/gems/gems/rackup-2.1.0/lib/rackup/handler.rbnu�[���PKCH[���|��:{�Rshare/gems/gems/rackup-2.1.0/lib/rackup/handler/webrick.rbnu�[���PKCH[���HH6��Rshare/gems/gems/rackup-2.1.0/lib/rackup/handler/cgi.rbnu�[���PKCH[lo|	��1��Rshare/gems/gems/rackup-2.1.0/lib/rackup/stream.rbnu�[���PKCH[�����2x�Rshare/gems/gems/rackup-2.1.0/lib/rackup/lobster.rbnu�[���PKCH[�cϛ��2�Sshare/gems/gems/rackup-2.1.0/lib/rackup/version.rbnu�[���PKCH[/�:�4�41�Sshare/gems/gems/rackup-2.1.0/lib/rackup/server.rbnu�[���PKCH[��9�$$*�;Sshare/gems/gems/rackup-2.1.0/lib/rackup.rbnu�[���PKCH[<�d��&K=Sshare/gems/gems/rackup-2.1.0/readme.mdnu�[���PKCH[�Y�$�@Sshare/gems/gems/rake-13.0.1/bin/rakenu�[���PKCH[r�
WUU'�CSshare/gems/gems/rake-13.0.1/bin/consolenu�[���PKCH[�t/;JJ%�DSshare/gems/gems/rake-13.0.1/bin/setupnu�[���PKCH[��X�$HESshare/gems/gems/rake-13.0.1/bin/rdocnu�[���PKCH[>�h&�HSshare/gems/gems/rake-13.0.1/bin/bundlenu�[���PKCH[�|u%'TSshare/gems/gems/rake-13.0.1/bin/rubocopnu�[���PKCH[��@u,u,(�WSshare/gems/gems/rake-13.0.1/doc/jamis.rbnu�[���PKCH[�)��	�	/^�Sshare/gems/gems/rake-13.0.1/doc/proto_rake.rdocnu�[���PKCH[�'S{��-��Sshare/gems/gems/rake-13.0.1/doc/glossary.rdocnu�[���PKCH[v3�HH-ՕSshare/gems/gems/rake-13.0.1/doc/rational.rdocnu�[���PKCH[����P�P-z�Sshare/gems/gems/rake-13.0.1/doc/rakefile.rdocnu�[���PKCH[�_�bgg.��Sshare/gems/gems/rake-13.0.1/doc/example/main.cnu�[���PKCH[۸	���1~Tshare/gems/gems/rake-13.0.1/doc/example/Rakefile1nu�[���PKCH[��AA+}Tshare/gems/gems/rake-13.0.1/doc/example/b.cnu�[���PKCH["�;WW1Tshare/gems/gems/rake-13.0.1/doc/example/Rakefile2nu�[���PKCH[Oq�AA+�Tshare/gems/gems/rake-13.0.1/doc/example/a.cnu�[���PKCH[�?qFF7mTshare/gems/gems/rake-13.0.1/doc/command_line_usage.rdocnu�[���PKCH[��U&��-Tshare/gems/gems/rake-13.0.1/CONTRIBUTING.rdocnu�[���PKCH[o����'.$Tshare/gems/gems/rake-13.0.1/README.rdocnu�[���PKCH[�v���(J8Tshare/gems/gems/rake-13.0.1/rake.gemspecnu�[���PKCH[A u���(�HTshare/gems/gems/rake-13.0.1/History.rdocnu�[���PKCH[I���$�`Ushare/gems/gems/rake-13.0.1/exe/rakenuȯ��PKCH[/�I��#oeUshare/gems/gems/rake-13.0.1/Gemfilenu�[���PKCH[��K\��8GfUshare/gems/gems/rake-13.0.1/lib/rake/invocation_chain.rbnu�[���PKCH[�2��bb8mkUshare/gems/gems/rake-13.0.1/lib/rake/loaders/makefile.rbnu�[���PKCH[?�{Hrr27qUshare/gems/gems/rake-13.0.1/lib/rake/early_time.rbnu�[���PKCH[E��.��/sUshare/gems/gems/rake-13.0.1/lib/rake/tasklib.rbnu�[���PKCH[Ӭ�s~~EtUshare/gems/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rbnu�[���PKCH[F-�
��6vUshare/gems/gems/rake-13.0.1/lib/rake/dsl_definition.rbnu�[���PKCH[n�#��;U�Ushare/gems/gems/rake-13.0.1/lib/rake/task_argument_error.rbnu�[���PKCH[u����0U�Ushare/gems/gems/rake-13.0.1/lib/rake/ext/core.rbnu�[���PKCH[yOu�rr2Q�Ushare/gems/gems/rake-13.0.1/lib/rake/ext/string.rbnu�[���PKCH[���^		/%�Ushare/gems/gems/rake-13.0.1/lib/rake/promise.rbnu�[���PKCH[��m��>��Ushare/gems/gems/rake-13.0.1/lib/rake/thread_history_display.rbnu�[���PKCH[;Y�II2��Ushare/gems/gems/rake-13.0.1/lib/rake/file_utils.rbnu�[���PKCH[�d���1�11@�Ushare/gems/gems/rake-13.0.1/lib/rake/file_list.rbnu�[���PKCH[���''1q�Ushare/gems/gems/rake-13.0.1/lib/rake/late_time.rbnu�[���PKCH[H��bb3��Ushare/gems/gems/rake-13.0.1/lib/rake/application.rbnu�[���PKCH[�R��3w\Vshare/gems/gems/rake-13.0.1/lib/rake/linked_list.rbnu�[���PKCH[~�y�	�	6�gVshare/gems/gems/rake-13.0.1/lib/rake/task_arguments.rbnu�[���PKCH[���YY2�qVshare/gems/gems/rake-13.0.1/lib/rake/multi_task.rbnu�[���PKCH[QG�-�sVshare/gems/gems/rake-13.0.1/lib/rake/clean.rbnu�[���PKCH[��l��:-|Vshare/gems/gems/rake-13.0.1/lib/rake/file_creation_task.rbnu�[���PKCH[�.*C}}-RVshare/gems/gems/rake-13.0.1/lib/rake/phony.rbnu�[���PKCH[�l�??4,�Vshare/gems/gems/rake-13.0.1/lib/rake/trace_output.rbnu�[���PKCH[p,۞��0σVshare/gems/gems/rake-13.0.1/lib/rake/testtask.rbnu�[���PKCH[�n���/-�Vshare/gems/gems/rake-13.0.1/lib/rake/version.rbnu�[���PKCH[�-x=((4\�Vshare/gems/gems/rake-13.0.1/lib/rake/task_manager.rbnu�[���PKCH[��M	M	3��Vshare/gems/gems/rake-13.0.1/lib/rake/cpu_counter.rbnu�[���PKCH[�I����1|�Vshare/gems/gems/rake-13.0.1/lib/rake/file_task.rbnu�[���PKCH[��i		6��Vshare/gems/gems/rake-13.0.1/lib/rake/default_loader.rbnu�[���PKCH[Jሀ�1K�Vshare/gems/gems/rake-13.0.1/lib/rake/backtrace.rbnu�[���PKCH[�R��2�2,,�Vshare/gems/gems/rake-13.0.1/lib/rake/task.rbnu�[���PKCH[�lD��2Wshare/gems/gems/rake-13.0.1/lib/rake/name_space.rbnu�[���PKCH[����B�Wshare/gems/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rbnu�[���PKCH[)lq(3�Wshare/gems/gems/rake-13.0.1/lib/rake/packagetask.rbnu�[���PKCH[4T�c��3R,Wshare/gems/gems/rake-13.0.1/lib/rake/thread_pool.rbnu�[���PKCH[�j��-d?Wshare/gems/gems/rake-13.0.1/lib/rake/win32.rbnu�[���PKCH[�����-�EWshare/gems/gems/rake-13.0.1/lib/rake/scope.rbnu�[���PKCH[����8�IWshare/gems/gems/rake-13.0.1/lib/rake/rake_test_loader.rbnu�[���PKCH[�����1LWshare/gems/gems/rake-13.0.1/lib/rake/cloneable.rbnu�[���PKCH[0Z�R��62NWshare/gems/gems/rake-13.0.1/lib/rake/private_reader.rbnu�[���PKCH[��s�ZZ6"PWshare/gems/gems/rake-13.0.1/lib/rake/file_utils_ext.rbnu�[���PKCH[��K��5�_Wshare/gems/gems/rake-13.0.1/lib/rake/pseudo_status.rbnu�[���PKCH[���Q��3�aWshare/gems/gems/rake-13.0.1/lib/rake/rake_module.rbnu�[���PKCH[Q��=rr'7hWshare/gems/gems/rake-13.0.1/lib/rake.rbnu�[���PKCH[VQO���$qWshare/gems/gems/rake-13.0.1/Rakefilenu�[���PKCH[W��'uWshare/gems/gems/rake-13.0.1/MIT-LICENSEnu�[���PKCH[�tz��,�,$�yWshare/gems/gems/rack-3.0.8/README.mdnu�[���PKCH[���==$i�Wshare/gems/gems/rack-3.0.8/SPEC.rdocnu�[���PKCH[��_***��Wshare/gems/gems/rack-3.0.8/CONTRIBUTING.mdnu�[���PKCH[�um�	�	&D�Wshare/gems/gems/rack-3.0.8/lib/rack.rbnu�[���PKCH[�ʆ��6�66l�Wshare/gems/gems/rack-3.0.8/lib/rack/show_exceptions.rbnu�[���PKCH[�d�P��-�0Xshare/gems/gems/rack-3.0.8/lib/rack/logger.rbnu�[���PKCH[K�bx/�2Xshare/gems/gems/rack-3.0.8/lib/rack/reloader.rbnu�[���PKCH[��||��63?Xshare/gems/gems/rack-3.0.8/lib/rack/conditional_get.rbnu�[���PKCH[>�==+�KXshare/gems/gems/rack-3.0.8/lib/rack/lock.rbnu�[���PKCH[��44-&NXshare/gems/gems/rack-3.0.8/lib/rack/events.rbnu�[���PKCH[��;�~~7�aXshare/gems/gems/rack-3.0.8/lib/rack/rewindable_input.rbnu�[���PKCH[�ю	��-�nXshare/gems/gems/rack-3.0.8/lib/rack/static.rbnu�[���PKCH[$����*�*/��Xshare/gems/gems/rack-3.0.8/lib/rack/response.rbnu�[���PKCH[_��l��2<�Xshare/gems/gems/rack-3.0.8/lib/rack/null_logger.rbnu�[���PKCH[VM�Vww+[�Xshare/gems/gems/rack-3.0.8/lib/rack/etag.rbnu�[���PKCH[[�J/-�Xshare/gems/gems/rack-3.0.8/lib/rack/deflater.rbnu�[���PKCH[�i\��-��Xshare/gems/gems/rack-3.0.8/lib/rack/config.rbnu�[���PKCH[:�}==-��Xshare/gems/gems/rack-3.0.8/lib/rack/urlmap.rbnu�[���PKCH[?�6/����+#�Xshare/gems/gems/rack-3.0.8/lib/rack/mime.rbnu�[���PKCH[����9?fYshare/gems/gems/rack-3.0.8/lib/rack/auth/digest/params.rbnu�[���PKCH[����6�fYshare/gems/gems/rack-3.0.8/lib/rack/auth/digest/md5.rbnu�[���PKCH[����:HgYshare/gems/gems/rack-3.0.8/lib/rack/auth/digest/request.rbnu�[���PKCH[����8�gYshare/gems/gems/rack-3.0.8/lib/rack/auth/digest/nonce.rbnu�[���PKCH[l��GRR<ThYshare/gems/gems/rack-3.0.8/lib/rack/auth/abstract/handler.rbnu�[���PKCH[,��UU<lYshare/gems/gems/rack-3.0.8/lib/rack/auth/abstract/request.rbnu�[���PKCH[���

2�oYshare/gems/gems/rack-3.0.8/lib/rack/auth/digest.rbnu�[���PKCH[�����1?�Yshare/gems/gems/rack-3.0.8/lib/rack/auth/basic.rbnu�[���PKCH[�N�$$>Q�Yshare/gems/gems/rack-3.0.8/lib/rack/multipart/uploaded_file.rbnu�[���PKCH[��&�4�47�Yshare/gems/gems/rack-3.0.8/lib/rack/multipart/parser.rbnu�[���PKCH[��l�	�	:�Yshare/gems/gems/rack-3.0.8/lib/rack/multipart/generator.rbnu�[���PKCH[N4q���3C�Yshare/gems/gems/rack-3.0.8/lib/rack/content_type.rbnu�[���PKCH[��՝[�[�+]�Yshare/gems/gems/rack-3.0.8/lib/rack/lint.rbnuȯ��PKCH[�ӎ cTcT,fZshare/gems/gems/rack-3.0.8/lib/rack/utils.rbnu�[���PKCH[>Sf?"?".ҺZshare/gems/gems/rack-3.0.8/lib/rack/builder.rbnu�[���PKCH[��A�0o�Zshare/gems/gems/rack-3.0.8/lib/rack/directory.rbnu�[���PKCH[�
C�xx4�Zshare/gems/gems/rack-3.0.8/lib/rack/common_logger.rbnu�[���PKCH[ѝo�+�[share/gems/gems/rack-3.0.8/lib/rack/head.rbnu�[���PKCH[K?��331*[share/gems/gems/rack-3.0.8/lib/rack/body_proxy.rbnu�[���PKCH[H��SGbGb.�
[share/gems/gems/rack-3.0.8/lib/rack/request.rbnu�[���PKCH[ɸHO��.cm[share/gems/gems/rack-3.0.8/lib/rack/version.rbnu�[���PKCH[O�i���.q[share/gems/gems/rack-3.0.8/lib/rack/headers.rbnu�[���PKCH[�|�Х�,�}[share/gems/gems/rack-3.0.8/lib/rack/files.rbnu�[���PKCH[�&�{!{!3��[share/gems/gems/rack-3.0.8/lib/rack/query_parser.rbnu�[���PKCH[�/�{{3��[share/gems/gems/rack-3.0.8/lib/rack/mock_request.rbnu�[���PKCH[;�`�ff.n�[share/gems/gems/rack-3.0.8/lib/rack/runtime.rbnu�[���PKCH[iZ�&&52�[share/gems/gems/rack-3.0.8/lib/rack/content_length.rbnu�[���PKCH[�R�

4��[share/gems/gems/rack-3.0.8/lib/rack/mock_response.rbnu�[���PKCH[�gG��1<�[share/gems/gems/rack-3.0.8/lib/rack/media_type.rbnu�[���PKCH[��Y		.6�[share/gems/gems/rack-3.0.8/lib/rack/cascade.rbnu�[���PKDH[Y4��88/��[share/gems/gems/rack-3.0.8/lib/rack/sendfile.rbnu�[���PKDH[M�}Y??+,\share/gems/gems/rack-3.0.8/lib/rack/mock.rbnu�[���PKDH[YY�d

6�\share/gems/gems/rack-3.0.8/lib/rack/tempfile_reaper.rbnu�[���PKDH[@�j�	�	06\share/gems/gems/rack-3.0.8/lib/rack/constants.rbnu�[���PKDH[U``"��0{\share/gems/gems/rack-3.0.8/lib/rack/multipart.rbnu�[���PKDH[��3���6�\share/gems/gems/rack-3.0.8/lib/rack/method_override.rbnu�[���PKDH[М}���+� \share/gems/gems/rack-3.0.8/lib/rack/file.rbnu�[���PKDH[O�~�0�!\share/gems/gems/rack-3.0.8/lib/rack/recursive.rbnu�[���PKDH[���4
4
.3)\share/gems/gems/rack-3.0.8/lib/rack/chunked.rbnu�[���PKDH[d�NN2�6\share/gems/gems/rack-3.0.8/lib/rack/show_status.rbnu�[���PKDH[G�	TT&uE\share/gems/gems/rack-3.0.8/MIT-LICENSEnu�[���PKDH[t2�����'J\share/gems/gems/rack-3.0.8/CHANGELOG.mdnu�[���PKDH[1+Ǔ004g]share/gems/gems/json-2.3.0/lib/json/add/date_time.rbnu�[���PKDH[@9%1�]share/gems/gems/json-2.3.0/lib/json/add/regexp.rbnu�[���PKDH[�%��1_]share/gems/gems/json-2.3.0/lib/json/add/struct.rbnu�[���PKDH[�k�4�]share/gems/gems/json-2.3.0/lib/json/add/exception.rbnu�[���PKDH[�m��qq/U!]share/gems/gems/json-2.3.0/lib/json/add/date.rbnu�[���PKDH[J��/%%]share/gems/gems/json-2.3.0/lib/json/add/time.rbnu�[���PKDH[��&a\\/|)]share/gems/gems/json-2.3.0/lib/json/add/core.rbnu�[���PKDH[��a07+]share/gems/gems/json-2.3.0/lib/json/add/range.rbnu�[���PKDH[o���aa5�.]share/gems/gems/json-2.3.0/lib/json/add/bigdecimal.rbnu�[���PKDH[V��3o1]share/gems/gems/json-2.3.0/lib/json/add/rational.rbnu�[���PKDH[���!!.�4]share/gems/gems/json-2.3.0/lib/json/add/set.rbnu�[���PKDH[�&��2h7]share/gems/gems/json-2.3.0/lib/json/add/complex.rbnu�[���PKDH[��m�2�:]share/gems/gems/json-2.3.0/lib/json/add/ostruct.rbnu�[���PKDH[��ff1A>]share/gems/gems/json-2.3.0/lib/json/add/symbol.rbnu�[���PKDH[E��”�5A]share/gems/gems/json-2.3.0/lib/json/generic_object.rbnu�[���PKDH[�Ht�...G]share/gems/gems/json-2.3.0/lib/json/version.rbnu�[���PKDH[1z���*�H]share/gems/gems/json-2.3.0/lib/json/ext.rbnu�[���PKDH[��;�;-nJ]share/gems/gems/json-2.3.0/lib/json/common.rbnu�[���PKDH[����&dž]share/gems/gems/json-2.3.0/lib/json.rbnu�[���PKDH[�=w��!.�]share/gems/gems/irb-1.2.6/exe/irbnuȯ��PKDH[���S�k�k$1�]share/gems/gems/irb-1.2.6/lib/irb.rbnu�[���PKDH[��*\��)X�]share/gems/gems/irb-1.2.6/lib/irb/help.rbnu�[���PKDH[��c��1n�]share/gems/gems/irb-1.2.6/lib/irb/src_encoding.rbnu�[���PKDH[)���C=C=,b�]share/gems/gems/irb-1.2.6/lib/irb/context.rbnu�[���PKDH[t��(=^share/gems/gems/irb-1.2.6/lib/irb/xmp.rbnu�[���PKDH[��O��-sM^share/gems/gems/irb-1.2.6/lib/irb/cmd/help.rbnu�[���PKDH[I]]��/UQ^share/gems/gems/irb-1.2.6/lib/irb/cmd/subirb.rbnu�[���PKDH[�j$�-IT^share/gems/gems/irb-1.2.6/lib/irb/cmd/chws.rbnu�[���PKDH[�{A5//-�V^share/gems/gems/irb-1.2.6/lib/irb/cmd/info.rbnu�[���PKDH[��z���/KY^share/gems/gems/irb-1.2.6/lib/irb/cmd/pushws.rbnu�[���PKDH[#�o���-O\^share/gems/gems/irb-1.2.6/lib/irb/cmd/load.rbnu�[���PKDH[Q��~~-za^share/gems/gems/irb-1.2.6/lib/irb/cmd/fork.rbnu�[���PKDH[�)ڏ!!,Ud^share/gems/gems/irb-1.2.6/lib/irb/cmd/nop.rbnu�[���PKDH[��ǀ��*�f^share/gems/gems/irb-1.2.6/lib/irb/frame.rbnu�[���PKDH[����
�
5o^share/gems/gems/irb-1.2.6/lib/irb/ext/save-history.rbnu�[���PKDH[](
		2}^share/gems/gems/irb-1.2.6/lib/irb/ext/change-ws.rbnu�[���PKDH[u��I��2n�^share/gems/gems/irb-1.2.6/lib/irb/ext/multi-irb.rbnu�[���PKDH[C5vl��/��^share/gems/gems/irb-1.2.6/lib/irb/ext/tracer.rbnu�[���PKDH[�ɼ�0ѣ^share/gems/gems/irb-1.2.6/lib/irb/ext/history.rbnu�[���PKDH[y�r�||/�^share/gems/gems/irb-1.2.6/lib/irb/ext/loader.rbnu�[���PKDH[�fcI��3ȿ^share/gems/gems/irb-1.2.6/lib/irb/ext/workspaces.rbnu�[���PKDH[�N9���3�^share/gems/gems/irb-1.2.6/lib/irb/ext/use-loader.rbnu�[���PKDH[�[��2:�^share/gems/gems/irb-1.2.6/lib/irb/ws-for-case-2.rbnu�[���PKDH[c�p.��-v�^share/gems/gems/irb-1.2.6/lib/irb/notifier.rbnu�[���PKDH[yk/AA+��^share/gems/gems/irb-1.2.6/lib/irb/locale.rbnu�[���PKDH[q����.`_share/gems/gems/irb-1.2.6/lib/irb/inspector.rbnu�[���PKDH[Ɨ]�%�%/g_share/gems/gems/irb-1.2.6/lib/irb/completion.rbnu�[���PKDH[��pp/�6_share/gems/gems/irb-1.2.6/lib/irb/easter-egg.rbnu�[���PKDH[���h((,nE_share/gems/gems/irb-1.2.6/lib/irb/version.rbnu�[���PKDH[��[��/�F_share/gems/gems/irb-1.2.6/lib/irb/magic-file.rbnu�[���PKDH[w���*�J_share/gems/gems/irb-1.2.6/lib/irb/color.rbnu�[���PKDH[o�]���1@j_share/gems/gems/irb-1.2.6/lib/irb/lc/help-messagenu�[���PKDH[,9Yk-Yr_share/gems/gems/irb-1.2.6/lib/irb/lc/error.rbnu�[���PKDH[Ȇ@Dj
j
4�x_share/gems/gems/irb-1.2.6/lib/irb/lc/ja/help-messagenu�[���PKDH[�.���0��_share/gems/gems/irb-1.2.6/lib/irb/lc/ja/error.rbnu�[���PKDH[\`9���;�_share/gems/gems/irb-1.2.6/lib/irb/lc/ja/encoding_aliases.rbnu�[���PKDH[ᣟ�#�#1 �_share/gems/gems/irb-1.2.6/lib/irb/input-method.rbnu�[���PKDH[�&/��(�(3Y�_share/gems/gems/irb-1.2.6/lib/irb/extend-command.rbnu�[���PKDH[�V2�	�	2=�_share/gems/gems/irb-1.2.6/lib/irb/output-method.rbnu�[���PKDH[fɁ�c"c")`�_share/gems/gems/irb-1.2.6/lib/irb/init.rbnu�[���PKDH[DKC���.`share/gems/gems/irb-1.2.6/lib/irb/workspace.rbnu�[���PKDH[���I	I	.X`share/gems/gems/irb-1.2.6/lib/irb/ruby_logo.aanu�[���PKDH[:?�cBcB-�$`share/gems/gems/irb-1.2.6/lib/irb/ruby-lex.rbnu�[���PKDH[DM�..�g`share/ruby/tmpdir.rbnu�[���PKDH[s�{��A�A1x`share/ruby/logger.rbnu�[���PKDH[�n��((
�`share/ruby/observer/version.rbnu�[���PKDH[�?��66��`share/ruby/racc/exception.rbnu�[���PKDH[��8I���`share/ruby/racc/sourcetext.rbnu�[���PKDH[v�*�_O_Oھ`share/ruby/racc/state.rbnu�[���PKDH[?�ﱉ��ashare/ruby/racc/static.rbnu�[���PKDH[��t�I�ISashare/ruby/racc/parser-text.rbnu�[���PKDH[�l�`I`IFYashare/ruby/racc/parser.rbnu�[���PKDH[�	#��;�;$�ashare/ruby/racc/grammarfileparser.rbnu�[���PKDH[nf�ҏ���ashare/ruby/racc/compat.rbnu�[���PKDH[`��0��#��ashare/ruby/racc/logfilegenerator.rbnu�[���PKDH[��L�.�.&��ashare/ruby/racc/parserfilegenerator.rbnu�[���PKDH[ӗ���%bshare/ruby/racc/debugflags.rbnu�[���PKDH[ K�PP�+bshare/ruby/racc/info.rbnu�[���PKDH[ydAz�X�X2-bshare/ruby/racc/grammar.rbnu�[���PKDH[nxqii�bshare/ruby/racc/iset.rbnu�[���PKDH[�t=�  '��bshare/ruby/racc/statetransitiontable.rbnu�[���PKDH[ז�ii�bshare/ruby/racc/pre-setupnu�[���PKDH[�y���˭bshare/ruby/timeout.rbnu�[���PKDH[�E&))��bshare/ruby/yaml/dbm.rbnu�[���PKDH[�H2�LLj�bshare/ruby/yaml/store.rbnu�[���PKDH[��Wqq��bshare/ruby/readline.rbnu�[���PKDH[�(��ee��bshare/ruby/fiddle/struct.rbnu�[���PKDH[�vH�CCe�bshare/ruby/fiddle/function.rbnu�[���PKDH[�������bshare/ruby/fiddle/types.rbnu�[���PKDH[64ʓ���cshare/ruby/fiddle/pack.rbnu�[���PKDH[;#����cshare/ruby/fiddle/closure.rbnu�[���PKDH[nO�88�cshare/ruby/fiddle/cparser.rbnu�[���PKDH[�c��xxN/cshare/ruby/fiddle/value.rbnu�[���PKDH[�3��A#A#;cshare/ruby/fiddle/import.rbnu�[���PKDH[ڮ�R���^cshare/ruby/ripper/core.rbnu�[���PKDH[��Cpp�ecshare/ruby/ripper/filter.rbnu�[���PKDH[d�%)))Kncshare/ruby/ripper/lexer.rbnu�[���PKDH[�'C:����cshare/ruby/ripper/sexp.rbnu�[���PKDH[�w��ppҜcshare/ruby/coverage.rbnu�[���PKDH[L��;;��cshare/ruby/optionparser.rbnu�[���PKDH[AC.K����
�cshare/ruby/socket.rbnu�[���PKDH[~*�kk!�Mdshare/ruby/forwardable/version.rbnu�[���PKDH[�_�s--�Ndshare/ruby/forwardable/impl.rbnu�[���PKDH[a��&Pdshare/ruby/monitor.rbnu�[���PKDH[h
&�=�=skdshare/ruby/getoptlong.rbnu�[���PKDH[P�:((f�dshare/ruby/delegate/version.rbnu�[���PKDH[��v"))ܩdshare/ruby/singleton/version.rbnu�[���PKDH[{`�,**T�dshare/ruby/date.rbnu�[���PKDH[���%%��dshare/ruby/open3/version.rbnu�[���PKDH[�y��0�dshare/ruby/shellwords.rbnu�[���PKDH[����:�:�dshare/ruby/pstore.rbnu�[���PKDH[`Ҧ�3eshare/ruby/mutex_m.rbnu�[���PKDH[�T��eshare/ruby/webrick.rbnu�[���PKDH[y'9E>&>&M)eshare/ruby/resolv.rbnu�[���PKDH[�T�``�Ofshare/ruby/time.rbnu�[���PKDH[%�fshare/gems/gems/psych-3.1.0/lib/psychnuȯ��PKDH[)iT���t�fshare/ruby/expect.rbnu�[���PKDH[	B�@��#a�fshare/ruby/rexml/dtd/attlistdecl.rbnu�[���PKDH[������"��fshare/ruby/rexml/dtd/entitydecl.rbnu�[���PKDH[+yHH$��fshare/ruby/rexml/dtd/notationdecl.rbnu�[���PKDH[T/����#2�fshare/ruby/rexml/dtd/elementdecl.rbnu�[���PKDH[��_��M�fshare/ruby/rexml/dtd/dtd.rbnu�[���PKDH[�f�O��n�fshare/ruby/rexml/element.rbnu�[���PKDH[}��00)�gshare/ruby/rexml/validation/validation.rbnu�[���PKDH[���sl5l5&`�gshare/ruby/rexml/validation/relaxng.rbnu�[���PKDH[�Q���2"�gshare/ruby/rexml/validation/validationexception.rbnu�[���PKDH[9dj̏�4�gshare/ruby/rexml/instruction.rbnu�[���PKDH[N��88�gshare/ruby/rexml/security.rbnu�[���PKDH[n�R�����gshare/ruby/rexml/source.rbnu�[���PKDH[h�kA))��gshare/ruby/rexml/output.rbnu�[���PKDH[��u�0�gshare/ruby/rexml/light/node.rbnu�[���PKDH[Tߑs���hshare/ruby/rexml/doctype.rbnu�[���PKDH[��71���&hshare/ruby/rexml/attlistdecl.rbnu�[���PKDH[)�s�7�7�.hshare/ruby/rexml/text.rbnu�[���PKDH[Po�L	L	�fhshare/ruby/rexml/xmltokens.rbnu�[���PKDH[n�����-phshare/ruby/rexml/namespace.rbnu�[���PKDH[�E���vhshare/ruby/rexml/attribute.rbnu�[���PKDH[%��3��H�hshare/ruby/rexml/entity.rbnu�[���PKDH[3OK5"-�hshare/ruby/rexml/parseexception.rbnu�[���PKDH[)�bdbd&��hshare/ruby/rexml/parsers/baseparser.rbnu�[���PKDH[u�I�I':ishare/ruby/rexml/parsers/xpathparser.rbnu�[���PKDH[��+�
�
&dXishare/ruby/rexml/parsers/treeparser.rbnu�[���PKDH[\�r��,�fishare/ruby/rexml/parsers/ultralightparser.rbnu�[���PKDH[�"�4++'�lishare/ruby/rexml/parsers/lightparser.rbnu�[���PKDH[�3���(Ysishare/ruby/rexml/parsers/streamparser.rbnu�[���PKDH[��]�R$R$&`{ishare/ruby/rexml/parsers/sax2parser.rbnu�[���PKDH[�"�#||&�ishare/ruby/rexml/parsers/pullparser.rbnu�[���PKDH[Ӆ��3&3&ڴishare/ruby/rexml/document.rbnu�[���PKDH[v�u3hh&Y�ishare/ruby/rexml/formatters/default.rbnu�[���PKDH[B*\<<)�ishare/ruby/rexml/formatters/transitive.rbnu�[���PKDH[���OO%��ishare/ruby/rexml/formatters/pretty.rbnu�[���PKDH[đCPjshare/ruby/rexml/parent.rbnu�[���PKDH[Uꦭ
�
�jshare/ruby/rexml/xpath.rbnu�[���PKDH[3��Mmm �jshare/ruby/rexml/sax2listener.rbnu�[���PKDH[�:v�11d.jshare/ruby/rexml/functions.rbnu�[���PKDH[�p�v�v �_jshare/ruby/rexml/xpath_parser.rbnu�[���PKDH[�dQ��/��jshare/ruby/rexml/undefinednamespaceexception.rbnu�[���PKDH[vo������jshare/ruby/rexml/node.rbnu�[���PKDH[��J�
�
��jshare/ruby/rexml/child.rbnu�[���PKDH[�}]XX��jshare/ruby/rexml/cdata.rbnu�[���PKDH[Mʌ�\\"��jshare/ruby/rexml/streamlistener.rbnu�[���PKDH[��f��6kshare/ruby/rexml/encoding.rbnu�[���PKDH[�͉''!kshare/ruby/rexml/rexml.rbnu�[���PKEH[α��zz�kshare/ruby/rexml/comment.rbnu�[���PKEH[�5����Vkshare/ruby/rexml/xmldecl.rbnu�[���PKEH[5�h}$}$l!kshare/ruby/rexml/quickpath.rbnu�[���PKEH[4;�@s@s6Fkshare/ruby/erb.rbnu�[���PKEH[���NN��kshare/ruby/ipaddr.rbnu�[���PKEH[�eB�Y�Ylshare/ruby/mkmf.rbnu�[���PKEH[��vb�2�2-bmshare/ruby/csv/table.rbnu�[���PKEH[�#vvB�mshare/ruby/csv/delete_suffix.rbnu�[���PKEH[�jH��{�{�mshare/ruby/csv/parser.rbnu�[���PKEH[�W�ރ,�,Anshare/ruby/csv/row.rbnu�[���PKEH[{IW�kk	@nshare/ruby/csv/version.rbnu�[���PKEH[ΑQl	l	"�@nshare/ruby/csv/fields_converter.rbnu�[���PKEH[����yy{Jnshare/ruby/csv/match_p.rbnu�[���PKEH[P���=Lnshare/ruby/csv/writer.rbnu�[���PKEH[�����!T^nshare/ruby/csv/core_ext/string.rbnu�[���PKEH[��z�� q_nshare/ruby/csv/core_ext/array.rbnu�[���PKEH[��g&�`nshare/ruby/matrix/lup_decomposition.rbnu�[���PKEH[��xVxV-cvnshare/ruby/matrix/eigenvalue_decomposition.rbnu�[���PKEH[3��DD8�nshare/ruby/matrix/version.rbnu�[���PKEH[P\_;%%��nshare/ruby/pstore/version.rbnu�[���PKEH[�����+�+9�nshare/ruby/tempfile.rbnu�[���PKEH[Ճ�5'5'L�nshare/ruby/cgi.rbnu�[���PKEH[e�8Aaa�!oshare/ruby/rss/maker.rbnu�[���PKEH[�y���j)oshare/ruby/rss/converter.rbnu�[���PKFH[BD�4(4(Q9oshare/ruby/rss/maker/1.0.rbnu�[���PKFH[t�kk!�aoshare/ruby/rss/maker/trackback.rbnu�[���PKFH[�b��hoshare/ruby/rss/maker/slash.rbnu�[���PKFH[A����� �koshare/ruby/rss/maker/taxonomy.rbnu�[���PKFH[�g��c`c`�xoshare/ruby/rss/maker/base.rbnu�[���PKFH[�����n�oshare/ruby/rss/maker/2.0.rbnu�[���PKFH[�o?�����oshare/ruby/rss/maker/image.rbnu�[���PKFH[i^
ZCC~�oshare/ruby/rss/maker/itunes.rbnu�[���PKFH[|����pshare/ruby/rss/maker/entry.rbnu�[���PKFH[%~I�"L-pshare/ruby/rss/maker/dublincore.rbnu�[���PKFH[�(����<pshare/ruby/rss/maker/content.rbnu�[���PKFH[�:��%%�>pshare/ruby/rss/maker/atom.rbnu�[���PKFH[AcIw22Qpshare/ruby/rss/maker/feed.rbnu�[���PKFH[&"��#m�pshare/ruby/rss/maker/syndication.rbnu�[���PKFH[�PP�3/3/C�pshare/ruby/rss/maker/0.9.rbnu�[���PKFH["v݈����pshare/ruby/rss/xmlparser.rbnu�[���PKFH[u/�i����pshare/ruby/rss/xmlscanner.rbnu�[���PKFH[�$�9�@�@{�pshare/ruby/rss/parser.rbnu�[���PKFH[�
N��&�&�qshare/ruby/rss/1.0.rbnu�[���PKFH[�(��X,qshare/ruby/rss/trackback.rbnu�[���PKFH[�����Gqshare/ruby/rss/rexmlparser.rbnu�[���PKFH[IOaɉ��Kqshare/ruby/rss/utils.rbnu�[���PKFH[<��APP�`qshare/ruby/rss/slash.rbnu�[���PKFH[�!
���fqshare/ruby/rss/taxonomy.rbnu�[���PKFH[;�u	BB-sqshare/ruby/rss/version.rbnu�[���PKFH[CW5�sqshare/ruby/rss/xml.rbnu�[���PKFH[+��55 zqshare/ruby/rss/dublincore/1.0.rbnu�[���PKFH[�ö�� �{qshare/ruby/rss/dublincore/2.0.rbnu�[���PKFH[�s��""!�|qshare/ruby/rss/dublincore/atom.rbnu�[���PKFH[b��
�
'~qshare/ruby/rss/2.0.rbnu�[���PKFH[�b��11"�qshare/ruby/rss/image.rbnu�[���PKFH[8ٞ��)�)��qshare/ruby/rss/itunes.rbnu�[���PKFH[k�Wi����qshare/ruby/rss/content/1.0.rbnu�[���PKFH[s�}d����qshare/ruby/rss/content/2.0.rbnu�[���PKFH[��h�AA��qshare/ruby/rss/dublincore.rbnu�[���PKFH[�L�k�qshare/ruby/rss/content.rbnu�[���PKFH[]���s�s3�qshare/ruby/rss/atom.rbnu�[���PKFH[083l��Urshare/ruby/rss/syndication.rbnu�[���PKFH[Ot�(�(��\rshare/ruby/rss/rss.rbnu�[���PKFH[?i��� \�rshare/ruby/rss/xml-stylesheet.rbnu�[���PKFH[��v*v*S�rshare/ruby/rss/0.9.rbnu�[���PKFH[m�i?�?�?sshare/ruby/prettyprint.rbnu�[���PKFH[�*`�[sshare/ruby/bigdecimal.rbnu�[���PKFH[R���_�_�K\sshare/ruby/net/imap.rbnu�[���PKFH[[wYY�ushare/ruby/net/smtp/version.rbnu�[���PKFH[���ȸ@�@�ushare/ruby/net/http/header.rbnu�[���PKFH[O'��
&
&&�Zushare/ruby/net/http/generic_request.rbnu�[���PKFH[�tBD*D*��ushare/ruby/net/http/response.rbnu�[���PKFH[�6�Q����ushare/ruby/net/http/requests.rbnu�[���PKFH[��8'8' ��ushare/ruby/net/http/responses.rbnu�[���PKFH[���"�ushare/ruby/net/http/proxy_delta.rbnu�[���PKFH[+!�ii!m�ushare/ruby/net/http/exceptions.rbnu�[���PKFH[{���'�ushare/ruby/net/http/status.rbnu�[���PKFH[w����6�ushare/ruby/net/http/request.rbnu�[���PKFH[��~�aan�ushare/ruby/net/http/backward.rbnu�[���PKFH[D=��*�*�ushare/ruby/net/protocol.rbnu�[���PKFH[�RKvijij1vshare/ruby/net/pop.rbnu�[���PKFH[2i��w�w߈vshare/ruby/net/smtp.rbnu�[���PKFH[�dܱ!wshare/ruby/net/https.rbnu�[���PKFH[t�B�K�K�|wshare/ruby/net/ftp.rbnu�[���PKFH[��LlYY�wshare/ruby/net/pop/version.rbnu�[���PKFH[��l�����wshare/ruby/net/http.rbnu�[���PKFH[����	�	~xshare/ruby/ripper.rbnu�[���PKFH[`~l֪#�#�xshare/ruby/forwardable.rbnu�[���PKFH[n�Y~�'�'��xshare/ruby/un.rbnu�[���PKFH[��3
3
�xshare/ruby/base64.rbnu�[���PKFH[f����3�3��xshare/ruby/reline.rbnu�[���PKFH[�+���yshare/ruby/drb/gw.rbnu�[���PKFH[U���!yshare/ruby/drb/unix.rbnu�[���PKFH[D[���?-yshare/ruby/drb/timeridconv.rbnu�[���PKFH[��,�}}16yshare/ruby/drb/weakidconv.rbnu�[���PKFH[Ew|���:yshare/ruby/drb/extservm.rbnu�[���PKFH[���^DD?Byshare/ruby/drb/extserv.rbnu�[���PKFH[��4�Eyshare/ruby/drb/eq.rbnu�[���PKFH[ы>�qq#Gyshare/ruby/drb/acl.rbnu�[���PKFH[�@��%.%.�Yyshare/ruby/drb/ssl.rbnu�[���PKFH[a����C�yshare/ruby/drb/observer.rbnu�[���PKFH[*Y)		(�yshare/ruby/drb/invokemethod.rbnu�[���PKFH[��Y�����yshare/ruby/drb/drb.rbnu�[���PKFH[MU�y--Tuzshare/ruby/uri/ldap.rbnu�[���PKFH[`���njzshare/ruby/uri/ldaps.rbnu�[���PKFH[�q�
�
��zshare/ruby/uri/generic.rbnu�[���PKFH[�bUb�� [ {share/ruby/uri/rfc3986_parser.rbnu�[���PKFH[e��;;�9{share/ruby/uri/https.rbnu�[���PKFH[�����'<{share/ruby/uri/version.rbnu�[���PKFH[K���((={share/ruby/uri/ftp.rbnu�[���PKFH[F2)�E�E uY{share/ruby/uri/rfc2396_parser.rbnu�[���PKFH[��p�WWb�{share/ruby/uri/mailto.rbnu�[���PKFH[�ЫB�{share/ruby/uri/file.rbnu�[���PKFH[�>�zNzNW�{share/ruby/uri/common.rbnu�[���PKFH[`��i	i	|share/ruby/uri/http.rbnu�[���PKFH[(	����|share/ruby/kconv.rbnu�[���PKFH[6�c`�
�
�6|share/ruby/abbrev.rbnu�[���PKFH[
��!)) �D|share/ruby/getoptlong/version.rbnu�[���PKFH[=�ˮ@�@vE|share/ruby/pathname.rbnu�[���PKFH[��A�	�	j�|share/ruby/find.rbnu�[���PKFH[�v��~1~1��|share/ruby/prime.rbnu�[���PKGH[?pF�SSK�|share/ruby/rinda/rinda.rbnu�[���PKGH[0��T�7�7��|share/ruby/rinda/tuplespace.rbnu�[���PKGH[]@��1212�}share/ruby/rinda/ring.rbnu�[���PKGH[nW~8%8%6G}share/ruby/securerandom.rbnu�[���PKGH[#�l}share/gems/gems/json-2.3.0/lib/jsonnuȯ��PKGH[W�_�,m}share/ruby/webrick/httpauth/authenticator.rbnu�[���PKGH[����
�
'�y}share/ruby/webrick/httpauth/htdigest.rbnu�[���PKGH[S1
�

(��}share/ruby/webrick/httpauth/basicauth.rbnu�[���PKGH[x˨�/3/3)�}share/ruby/webrick/httpauth/digestauth.rbnu�[���PKGH[Xp][[['v�}share/ruby/webrick/httpauth/htpasswd.rbnu�[���PKGH[`MWBB%(�}share/ruby/webrick/httpauth/userdb.rbnu�[���PKGH[�E)M�	�	&��}share/ruby/webrick/httpauth/htgroup.rbnu�[���PKGH[�O�)�4�4"��}share/ruby/webrick/httpresponse.rbnu�[���PKGH[��3�3 ~share/ruby/webrick/httputils.rbnu�[���PKGH[�b�� �S~share/ruby/webrick/httpstatus.rbnu�[���PKGH[�(��))4i~share/ruby/webrick/httpproxy.rbnu�[���PKGH[
[�jj!��~share/ruby/webrick/httpversion.rbnu�[���PKGH[���%��V�~share/ruby/webrick/config.rbnu�[���PKGH[�[����!l�~share/ruby/webrick/httpservlet.rbnu�[���PKGH[�3	��~�~share/ruby/webrick/compat.rbnu�[���PKGH[��M{TTy�~share/ruby/webrick/accesslog.rbnu�[���PKGH[P���  �~share/ruby/webrick/cgi.rbnu�[���PKGH[�����{�~share/ruby/webrick/utils.rbnu�[���PKGH[v��MM�share/ruby/webrick/https.rbnu�[���PKGH[�{����$share/ruby/webrick/version.rbnu�[���PKGH[���0(0(share/ruby/webrick/server.rbnu�[���PKGH[�>肾>�>!�<share/ruby/webrick/httprequest.rbnu�[���PKGH[��/B���{share/ruby/webrick/ssl.rbnu�[���PKGH[�:���Ԙshare/ruby/webrick/htmlutils.rbnu�[���PKGH[������share/ruby/webrick/log.rbnu�[���PKGH[��c}� �  +�share/ruby/webrick/httpserver.rbnu�[���PKGH[Z�=-*�share/ruby/webrick/httpservlet/prochandler.rbnu�[���PKGH[Ͻ�			,��share/ruby/webrick/httpservlet/erbhandler.rbnu�[���PKGH[�����,�share/ruby/webrick/httpservlet/cgi_runner.rbnu�[���PKGH[�%f��C�C-k�share/ruby/webrick/httpservlet/filehandler.rbnu�[���PKGH[�x�NN,�#�share/ruby/webrick/httpservlet/cgihandler.rbnu�[���PKGH[~҆���*a3�share/ruby/webrick/httpservlet/abstract.rbnu�[���PKGH[�g�+���D�share/ruby/webrick/cookie.rbnu�[���PKGH[G�Vs
s
uT�share/ruby/webrick/httpauth.rbnu�[���PKGH[�f����6b�share/ruby/tracer.rbnu�[���PKGH[c�}���j|�share/ruby/racc.rbnu�[���PKGH[Q�:%��5}�share/ruby/uri.rbnu�[���PKGH[_��HHU��share/ruby/benchmark.rbnu�[���PKGH[��+DD�рshare/ruby/tracer/version.rbnu�[���PKGH[@�.`.`AҀshare/ruby/set.rbnu�[���PKGH[���D[�[��2�share/ruby/csv.rbnu�[���PKGH[���K2929L�share/ruby/tsort.rbnu�[���PKGH[�o��E�share/ruby/digest/sha2.rbnu�[���PKGH[�w��''U�share/ruby/timeout/version.rbnu�[���PKHH[aɣ�))'�U�share/ruby/did_you_mean/jaro_winkler.rbnu�[���PKHH[KvI���(]�share/ruby/did_you_mean/spell_checker.rbnu�[���PKHH[+*�77=b�share/ruby/did_you_mean/spell_checkers/name_error_checkers.rbnu�[���PKHH[	���hh6�d�share/ruby/did_you_mean/spell_checkers/null_checker.rbnu�[���PKHH[	��S�e�share/ruby/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rbnu�[���PKHH[�l'��P�m�share/ruby/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rbnu�[���PKHH[|;iԑ�=s�share/ruby/did_you_mean/spell_checkers/method_name_checker.rbnu�[���PKHH[T��)��;
z�share/ruby/did_you_mean/spell_checkers/key_error_checker.rbnu�[���PKHH[��a��CR|�share/ruby/did_you_mean/experimental/initializer_name_correction.rbnu�[���PKHH[H�``<�~�share/ruby/did_you_mean/experimental/ivar_name_correction.rbnu�[���PKHH[LA�
�
-d��share/ruby/did_you_mean/tree_spell_checker.rbnu�[���PKHH[�7�I**"F��share/ruby/did_you_mean/version.rbnu�[���PKHH[����5•�share/ruby/did_you_mean/formatters/plain_formatter.rbnu�[���PKHH[��Ӱ�7��share/ruby/did_you_mean/formatters/verbose_formatter.rbnu�[���PKHH[\Ն0��'(��share/ruby/did_you_mean/experimental.rbnu�[���PKHH[z=���.
��share/ruby/did_you_mean/core_ext/name_error.rbnu�[���PKHH[7m���"B��share/ruby/did_you_mean/verbose.rbnu�[���PKHH[U1i__& ��share/ruby/did_you_mean/levenshtein.rbnu�[���PKHH[	/V55ը�share/ruby/yaml.rbnu�[���PKHH[c�EP;�;�L��share/ruby/fileutils.rbnu�[���PKHH[��+���p�share/ruby/weakref.rbnu�[���PKHH[�ݧ�O,O,�v�share/ruby/delegate.rbnu�[���PKIH[=�rri��share/ruby/English.rbnu�[���PKIH[�~䢌X�X& ��share/ruby/unicode_normalize/tables.rbnu�[���PKIH[�.
��)�share/ruby/unicode_normalize/normalize.rbnu�[���PKIH[}KYtSSS-�share/ruby/observer.rbnu�[���PKIH[/�D�share/gems/gems/bigdecimal-2.0.0/lib/bigdecimalnuȯ��PKIH[�^(���KE�share/ruby/fiddle.rbnu�[���PKIH[9�ܒ!*!*IL�share/ruby/ostruct.rbnu�[���PKIH[`�T�

�v�share/ruby/resolv-replace.rbnu�[���PKIH[�I
�"")~�share/ruby/reline/key_actor/vi_command.rbnu�[���PKIH[V�����(r��share/ruby/reline/key_actor/vi_insert.rbnu�[���PKIH[��vv#���share/ruby/reline/key_actor/base.rbnu�[���PKJH[d�9�j j $z��share/ruby/reline/key_actor/emacs.rbnu�[���PKJH[9!��8�share/ruby/reline/ansi.rbnu�[���PKJH[�cUeHkHk-q��share/ruby/reline/unicode/east_asian_width.rbnu�[���PKJH[��b"b"a�share/ruby/reline/config.rbnu�[���PKJH[��BÃ�share/ruby/reline/general_io.rbnu�[���PKJH[;Ȝ9+J+J!��share/ruby/reline/unicode.rbnu�[���PKJH[	6��"�" �҈share/ruby/reline/line_editor.rbnu�[���PKJH[�>�&&��share/ruby/reline/version.rbnu�[���PKJH[�(����<��share/ruby/reline/kill_ring.rbnu�[���PKJH[o]#zzU��share/ruby/reline/history.rbnu�[���PKJH[μ�����share/ruby/reline/key_stroke.rbnu�[���PKJH[.x�p��N�share/ruby/reline/key_actor.rbnu�[���PKJH[~=.%$%$E
�share/ruby/reline/windows.rbnu�[���PKJH[q7�@W@W�1�share/ruby/open3.rbnu�[���PKJH[)�Ȗ�9��share/ruby/optparse/kwargs.rbnu�[���PKJH[*Ivh��share/ruby/optparse/ac.rbnu�[���PKJH[��/dds��share/ruby/optparse/date.rbnu�[���PKJH[>1M��!"��share/ruby/optparse/shellwords.rbnu�[���PKJH[�������share/ruby/optparse/time.rbnu�[���PKJH[9"�Q

1��share/ruby/optparse/version.rbnu�[���PKJH[�oBσ����share/ruby/optparse/uri.rbnu�[���PKJH["���w�wY��share/ruby/debug.rbnu�[���PKJH[Ż|@����<�share/ruby/optparse.rbnu�[���PKJH[[82lj>j>y�share/ruby/pp.rbnu�[���PKJH[�+x6��#C�share/ruby/did_you_mean.rbnu�[���PKJH[(:���e�eKR�share/ruby/open-uri.rbnu�[���PKJH[&a���y��share/ruby/rss.rbnu�[���PKJH[`?�UNNMČshare/ruby/digest.rbnu�[���PKJH[t#\�HH�όshare/ruby/ostruct/version.rbnu�[���PKJH[�6g  tЌshare/ruby/syslog/logger.rbnu�[���PKJH[�S|�����share/ruby/logger/errors.rbnu�[���PKJH[^��DD��share/ruby/logger/version.rbnu�[���PKJH[6�E^��n�share/ruby/logger/severity.rbnu�[���PKJH[������share/ruby/logger/formatter.rbnu�[���PKJH[%��::��share/ruby/logger/log_device.rbnu�[���PKJH[�{��K�share/ruby/logger/period.rbnu�[���PKJH[':�share/gems/gems/io-console-0.5.6/lib/ionuȯ��PKJH[�+DF>>��share/ruby/singleton.rbnu�[���PKJH[�"�22�share/ruby/drb.rbnu�[���PKJH[\��	������share/ruby/cgi/html.rbnu�[���PKJH[�mK�H�H^��share/ruby/cgi/session.rbnu�[���PKJH[@��%u%u��share/ruby/cgi/core.rbnu�[���PKJH[��|�� �c�share/ruby/cgi/session/pstore.rbnu�[���PKJH[r�U*$$�o�share/ruby/cgi/version.rbnu�[���PKJH[�%C��Vp�share/ruby/cgi/util.rbnu�[���PKJH[(F�EE���share/ruby/cgi/cookie.rbnu�[���PKJH[�j"�))��share/ruby/benchmark/version.rbnu�[���PKJH[���^�����share/ruby/matrix.rbnu�[���PKJH[�qo$Ԙ�share/licenses/alt-ruby27-devel/BSDLnu�[���PKJH[!�V()�)�%*��share/licenses/alt-ruby27-devel/LEGALnu�[���PKJH[��FN�F�F#�7�share/licenses/alt-ruby27-devel/GPLnu�[���PKJH[Q�{	{	'�~�share/licenses/alt-ruby27-devel/COPYINGnu�[���PKJH[z]��	�	*y��share/licenses/alt-ruby27-devel/COPYING.janu�[���PKJH[�qoђ�share/licenses/alt-ruby27/BSDLnu�[���PKJH[!�V()�)�!��share/licenses/alt-ruby27/LEGALnu�[���PKJH[��FN�F�F�1�share/licenses/alt-ruby27/GPLnu�[���PKJH[Q�{	{	!�x�share/licenses/alt-ruby27/COPYINGnu�[���PKJH[z]��	�	$^��share/licenses/alt-ruby27/COPYING.janu�[���PKJH[!�V()�)�$���share/licenses/alt-ruby27-libs/LEGALnu�[���PKJH[��FN�F�F"-&�share/licenses/alt-ruby27-libs/GPLnu�[���PKJH[Q�{	{	&+m�share/licenses/alt-ruby27-libs/COPYINGnu�[���PKJH[z]��	�	)�v�share/licenses/alt-ruby27-libs/COPYING.janu�[���PKJH[;���ddS��include/ruby.hnu�[���PKJH[��b�OO"���include/rb_mjit_min_header-2.7.8.hnu�[���PKJH[��

����)���include/rb_mjit_min_header-2.7.8-x86_64.hnu�[���PKJH[�C_����u�include/ruby/re.hnu�[���PKJH[��r�r��{�include/ruby/onigmo.hnu�[���PKJH[�ͱ�==<*�include/ruby/version.hnu�[���PKJH[�XF���1�include/ruby/st.hnu�[���PKJH[�;g2##�O�include/ruby/missing.hnu�[���PKJH[H��������d�include/ruby/ruby.hnu�[���PKJH[�I;		��include/ruby/backward.hnu�[���PKJH[/�U;vv1�include/ruby/subst.hnu�[���PKJH[���CC��include/ruby/thread.hnu�[���PKKH[�����s��include/ruby/digest.hnu�[���PKKH[�
jM		��include/ruby/regex.hnu�[���PKKH[�n�N�3�3��include/ruby/defines.hnu�[���PKKH[��Ky G G�7�include/ruby/encoding.hnu�[���PKKH[�y�``]�include/ruby/util.hnu�[���PKKH[C������include/ruby/config.hnu�[���PKKH['��������include/ruby/intern.hnu�[���PKKH[��(LL$q�include/ruby/debug.hnu�[���PKKH[іɠ���include/ruby/backward/rubysig.hnu�[���PKKH[������include/ruby/backward/st.hnu�[���PKKH[3*S�?�?$���include/ruby/backward/cxxanyargs.hppnu�[���PKKH[���t�� �Ǧinclude/ruby/backward/classext.hnu�[���PKKH[�q�V��ʦinclude/ruby/backward/rubyio.hnu�[���PKKH[8�b{��˦include/ruby/backward/util.hnu�[���PKKH[*�3̦include/ruby/vm.hnu�[���PKKH[㲓<���Ҧinclude/ruby/io.hnu�[���PKKH[�5�255��include/ruby/thread_native.hnu�[���PKKH[-�����include/ruby/assert.hnu�[���PKKH[)sSB�3�33�include/ruby/config-x86_64.hnu�[���PKKH[���x'�include/ruby/oniguruma.hnu�[���PKKH[C�c=33�(�etc/locked_extensions.ininu�[���PKKH[��t ��4��4BF�lib64/libruby.so.2.7.8nuȯ��PKKH[��Q�/�/(��lib64/gems/ruby/openssl-2.1.4/openssl.sonuȯ��PKKH[/��ss.�*�lib64/gems/ruby/io-console-0.5.6/io/console.sonuȯ��PKKH[_HJ�����$^��lib64/gems/ruby/psych-3.1.0/psych.sonuȯ��PKKH[}�X{HVHV.b#�lib64/gems/ruby/bigdecimal-2.0.0/bigdecimal.sonuȯ��PKKH[2��/�3�3'z�lib64/gems/ruby/ruby-lsapi-5.6/lsapi.sonuȯ��PKKH[h���11+��lib64/gems/ruby/ruby-lsapi-5.6/gem_make.outnu�[���PKKH[1���lib64/gems/ruby/ruby-lsapi-5.6/gem.build_completenu�[���PKKH[@z�K<<'��lib64/gems/ruby/ruby-lsapi-5.6/mkmf.lognu�[���PKKH[ó��@�@�0���lib64/gems/ruby/json-2.3.0/json/ext/generator.sonuȯ��PKKH[`u{�@q@q-?M�lib64/gems/ruby/json-2.3.0/json/ext/parser.sonuȯ��PKKH[ш�-HPHPܾ�lib64/ruby/racc/cparse.sonuȯ��PKKH[	z7 @ @m�lib64/ruby/rbconfig/sizeof.sonuȯ��PKKH[a�prpr�O�lib64/ruby/gdbm.sonuȯ��PKLH[�
~/�/�/���lib64/ruby/monitor.sonuȯ��PKLH[���ВВ���lib64/ruby/pathname.sonuȯ��PKLH[�ta�@�@���lib64/ruby/syslog.sonuȯ��PKLH[�k!h�������lib64/ruby/date_core.sonuȯ��PKLH[v�=���Y�lib64/ruby/fiber.sonuȯ��PKLH[�e���@�@Uw�lib64/ruby/pty.sonuȯ��PKLH[�YKV��^��lib64/ruby/socket.sonuȯ��PKLH[|���@�@R��lib64/ruby/rbconfig.rbnu�[���PKLH[�B
�QQb��lib64/ruby/digest.sonuȯ��PKLH[�G��q�q�N�lib64/ruby/etc.sonuȯ��PKLH[o�� �������lib64/ruby/objspace.sonuȯ��PKLH[��P@P@���lib64/ruby/coverage.sonuȯ��PKLH[���0H�H�K��lib64/ruby/stringio.sonuȯ��PKLH[~����r�r�m�lib64/ruby/strscan.sonuȯ��PKLH[1��0�0���lib64/ruby/fiddle.sonuȯ��PKLH[��z�((���lib64/ruby/continuation.sonuȯ��PKLH[��������lib64/ruby/ripper.sonuȯ��PKLH[�6k6�����~�lib64/ruby/readline.sonuȯ��PKLH[��lib64/gems/ruby/json-2.3.0/jsonnuȯ��PKLH[�G�����lib64/ruby/sdbm.sonuȯ��PKLH[��_6��ϖ�lib64/ruby/digest/rmd160.sonuȯ��PKLH[�����.�.���lib64/ruby/digest/sha2.sonuȯ��PKLH[-�����lib64/ruby/digest/md5.sonuȯ��PKLH[�@Lb��{�lib64/ruby/digest/sha1.sonuȯ��PKLH[E�)��.�.!T"�lib64/ruby/digest/bubblebabble.sonuȯ��PKLH[p"�M(�(�}Q�lib64/ruby/nkf.sonuȯ��PKLH[Ge���a�a�/�lib64/ruby/dbm.sonuȯ��PKLH[��~���lib64/ruby/fcntl.sonuȯ��PKLH[�C���"��lib64/ruby/zlib.sonuȯ��PKLH[)܍�.�.D�lib64/ruby/io/nonblock.sonuȯ��PKLH[�\< / /}��lib64/ruby/io/wait.sonuȯ��PKLH[k�$�.�.�)lib64/ruby/enc/iso_8859_5.sonuȯ��PKLH[�S	�>�>�Xlib64/ruby/enc/cesu_8.sonuȯ��PKLH[R�!��.�.�lib64/ruby/enc/utf_32be.sonuȯ��PKLH[K���.�.@�lib64/ruby/enc/iso_8859_16.sonuȯ��PKLH[��H�.�.E�lib64/ruby/enc/iso_8859_2.sonuȯ��PKLH[��8n�.�.I%lib64/ruby/enc/iso_8859_4.sonuȯ��PKLH[p_
L�.�.MTlib64/ruby/enc/windows_1251.sonuȯ��PKLH[�'I0P?P?[�lib64/ruby/enc/windows_31j.sonuȯ��PKLH[�&�h.h.��lib64/ruby/enc/iso_8859_6.sonuȯ��PKLH['�)ߠ.�.��lib64/ruby/enc/koi8_r.sonuȯ��PKLH[tN�ø.�.� lib64/ruby/enc/windows_1254.sonuȯ��PKLH[u�o40.0.�Olib64/ruby/enc/encdb.sonuȯ��PKLH[�	Tp�.�.~lib64/ruby/enc/cp949.sonuȯ��PKLH[�nT̨.�.H�lib64/ruby/enc/koi8_u.sonuȯ��PKLH[R�
��.�.8�lib64/ruby/enc/euc_tw.sonuȯ��PKLH[)��??plib64/ruby/enc/big5.sonuȯ��PKLH[��I�.�.�Jlib64/ruby/enc/euc_kr.sonuȯ��PKLH[
?�*�.�.�ylib64/ruby/enc/gb18030.sonuȯ��PKLH[�+KI�.�.7�lib64/ruby/enc/gbk.sonuȯ��PKLH[P���.�.d�lib64/ruby/enc/windows_1250.sonuȯ��PKLH[�&�.�.rlib64/ruby/enc/windows_1252.sonuȯ��PKLH[9��z�.�.�6lib64/ruby/enc/iso_8859_14.sonuȯ��PKLH[bҕ��.�.�elib64/ruby/enc/iso_8859_3.sonuȯ��PKLH[��(!����lib64/ruby/enc/gb2312.sonuȯ��PKLH[<	�X�.�.i�lib64/ruby/enc/iso_8859_7.sonuȯ��PKLH[ک�H?H?m�lib64/ruby/enc/shift_jis.sonuȯ��PKLH[\n�\h.h.!lib64/ruby/enc/trans/cesu_8.sonuȯ��PKLH[��#�-�-�Olib64/ruby/enc/trans/ebcdic.sonuȯ��PKLH[pq��.�.�}lib64/ruby/enc/trans/escape.sonuȯ��PKLH[E�q��#ʬlib64/ruby/enc/trans/single_byte.sonuȯ��PKLH[��Ŭ��-klib64/ruby/enc/trans/big5.sonuȯ��PKLH[�-������Ilib64/ruby/enc/trans/gb18030.sonuȯ��PKLH[?�7����Xlib64/ruby/enc/trans/gbk.sonuȯ��PKLH[���.�. �lib64/ruby/enc/trans/utf8_mac.sonuȯ��PKLH[�z����)k5lib64/ruby/enc/trans/emoji_sjis_docomo.sonuȯ��PKLH[N;�Wp.p. �lib64/ruby/enc/trans/japanese.sonuȯ��PKMH[�q0~~$|Blib64/ruby/enc/trans/japanese_euc.sonuȯ��PKMH[�I�E>>�!lib64/ruby/enc/trans/transdb.sonuȯ��PKMH[>�]�^^%/�!lib64/ruby/enc/trans/japanese_sjis.sonuȯ��PKMH[w�lc����'�]$lib64/ruby/enc/trans/emoji_sjis_kddi.sonuȯ��PKMH[}�0㸾��*�K&lib64/ruby/enc/trans/emoji_iso2022_kddi.sonuȯ��PKMH[<��f���
(lib64/ruby/enc/trans/korean.sonuȯ��PKMH[�R����C�+lib64/ruby/enc/trans/emoji.sonuȯ��PKMH[�
�����,lib64/ruby/enc/trans/chinese.sonuȯ��PKMH[�����>�>!�u/lib64/ruby/enc/trans/utf_16_32.sonuȯ��PKMH[���@��+�/lib64/ruby/enc/trans/emoji_sjis_softbank.sonuȯ��PKMH[V���>�>[�1lib64/ruby/enc/trans/iso2022.sonuȯ��PKMH[�����.�.��1lib64/ruby/enc/windows_1257.sonuȯ��PKMH[����H?H?�2lib64/ruby/enc/euc_jp.sonuȯ��PKMH[��.�.@A2lib64/ruby/enc/windows_1253.sonuȯ��PKMH[Gw��h.h.Fp2lib64/ruby/enc/iso_8859_11.sonuȯ��PKMH[��oO�.�.��2lib64/ruby/enc/utf_16be.sonuȯ��PKMH[Cd�W�.�.%�2lib64/ruby/enc/iso_8859_15.sonuȯ��PKMH[�M^h.h.2�2lib64/ruby/enc/iso_8859_8.sonuȯ��PKMH[KH�.�.�+3lib64/ruby/enc/utf_32le.sonuȯ��PKMH[�^^5�.�.[3lib64/ruby/enc/iso_8859_10.sonuȯ��PKMH[����.�.�3lib64/ruby/enc/iso_8859_1.sonuȯ��PKMH[<y�.�.�3lib64/ruby/enc/emacs_mule.sonuȯ��PKMH[B
�K�.�.�3lib64/ruby/enc/utf_16le.sonuȯ��PKMH[�S���.�.G4lib64/ruby/enc/iso_8859_9.sonuȯ��PKMH[���.�.SF4lib64/ruby/enc/iso_8859_13.sonuȯ��PKMH["����O�OXu4lib64/ruby/cgi/escape.sonuȯ��PKMH[g�^b �4lib64/pkgconfig/ruby.pcnu�[���PK��~���4